diff --git a/demo/install/base.py b/demo/install/base.py index 4e5b9da999..24869ac382 100644 --- a/demo/install/base.py +++ b/demo/install/base.py @@ -13,7 +13,9 @@ LIBRARY_ONE = os.path.join(RESOURCES, "library_without_checkouts.sql") LIBRARY_TWO = os.path.join(RESOURCES, "library_add_checkouts.sql") DEVCON_DATASET = os.path.join(RESOURCES, "devcon_dataset.sql") -MOVIES_SQL_BZ2 = os.path.join(RESOURCES, "movie_collection.sql.bz2") +MOVIES_SQL_TABLES = os.path.join(RESOURCES, "movie_collection_tables.sql") +MOVIES_SQL_FKS = os.path.join(RESOURCES, "movie_collection_fks.sql") +MOVIES_CSV = os.path.join(RESOURCES, 'movies_csv') ARXIV_SETUP_SQL = os.path.join(RESOURCES, 'arxiv_dataset_setup.sql') ARXIV_PAPERS_PICKLE = os.path.join(RESOURCES, 'arxiv_papers.pickle') LIBRARY_MANAGEMENT = 'Library Management' diff --git a/demo/install/dumpcsvs.py b/demo/install/dumpcsvs.py new file mode 100644 index 0000000000..23feb3daee --- /dev/null +++ b/demo/install/dumpcsvs.py @@ -0,0 +1,40 @@ +""" +Dump data for all the tables of a provided schema to separate {table_name}.csv files +with header as column names. + +Usage: python dumpcsvs.py +""" +import psycopg +import csv + +DB_NAME = "mathesar" +DB_USER = "mathesar" +DB_PASSWORD = "mathesar" +DB_HOST = "mathesar_dev_db" +SCHEMA_NAME = "Movie Collection" + +conn = psycopg.connect( + dbname=DB_NAME, + user=DB_USER, + password=DB_PASSWORD, + host=DB_HOST, + port=5432 +) + +# get names of tables. +tables = conn.execute( + f"SELECT table_name FROM information_schema.tables WHERE table_schema = '{SCHEMA_NAME}'" +).fetchall() + +for table in tables: + table_name = table[0] + with open(f'{table_name}.csv', 'w', newline="") as csv_file: + csv_writer = csv.writer(csv_file) + columns = conn.execute( + f"""SELECT column_name FROM information_schema.columns WHERE + table_schema = '{SCHEMA_NAME}' AND table_name = '{table_name}';""" + ).fetchall() + columns = [column[0] for column in columns] + csv_writer.writerow(columns) + with conn.cursor().copy(f"""COPY "{SCHEMA_NAME}"."{table_name}" TO STDOUT""") as copy: + csv_writer.writerows(copy.rows()) diff --git a/demo/install/movies_dataset.py b/demo/install/movies_dataset.py index d5cb2a7e7e..b45c1dbeaa 100644 --- a/demo/install/movies_dataset.py +++ b/demo/install/movies_dataset.py @@ -1,9 +1,8 @@ """This module contains functions to load the Movie Collection dataset.""" -import bz2 - +import os from sqlalchemy import text -from demo.install.base import MOVIE_COLLECTION, MOVIES_SQL_BZ2 +from demo.install.base import MOVIE_COLLECTION, MOVIES_SQL_TABLES, MOVIES_CSV, MOVIES_SQL_FKS def load_movies_dataset(engine, safe_mode=False): @@ -16,11 +15,15 @@ def load_movies_dataset(engine, safe_mode=False): schema already exists instead of dropping it. """ drop_schema_query = text(f"""DROP SCHEMA IF EXISTS "{MOVIE_COLLECTION}" CASCADE;""") - create_schema_query = text(f"""CREATE SCHEMA "{MOVIE_COLLECTION}";""") - set_search_path = text(f"""SET search_path="{MOVIE_COLLECTION}";""") - with engine.begin() as conn, bz2.open(MOVIES_SQL_BZ2, 'rt') as f: + with engine.begin() as conn, open(MOVIES_SQL_TABLES) as f, open(MOVIES_SQL_FKS) as f2: if safe_mode is False: conn.execute(drop_schema_query) - conn.execute(create_schema_query) - conn.execute(set_search_path) conn.execute(text(f.read())) + for file in os.scandir(MOVIES_CSV): + table_name = file.name.split('.csv')[0] + with open(file, 'r') as csv_file: + conn.connection.cursor().copy_expert( + f"""COPY "{MOVIE_COLLECTION}"."{table_name}" FROM STDIN DELIMITER ',' CSV HEADER""", + csv_file + ) + conn.execute(text(f2.read())) diff --git a/demo/install/resources/movie_collection.sql.bz2 b/demo/install/resources/movie_collection.sql.bz2 deleted file mode 100644 index 1d93bc3155..0000000000 Binary files a/demo/install/resources/movie_collection.sql.bz2 and /dev/null differ diff --git a/demo/install/resources/movie_collection_fks.sql b/demo/install/resources/movie_collection_fks.sql new file mode 100644 index 0000000000..df8d4c91f9 --- /dev/null +++ b/demo/install/resources/movie_collection_fks.sql @@ -0,0 +1,105 @@ +SELECT pg_catalog.setval('"Departments_id_seq"', 12, true); +SELECT pg_catalog.setval('"Genres_id_seq"', 10770, true); +SELECT pg_catalog.setval('"Jobs_id_seq"', 419, true); +SELECT pg_catalog.setval('"Movie Cast Map_id_seq"', 159012, true); +SELECT pg_catalog.setval('"Movie Crew Map_id_seq"', 130711, true); +SELECT pg_catalog.setval('"Movie Genre Map_id_seq"', 25886, true); +SELECT pg_catalog.setval('"Movie Production Company Map_id_seq"', 19959, true); +SELECT pg_catalog.setval('"Movie Production Country Map_id_seq"', 14087, true); +SELECT pg_catalog.setval('"Movie Spoken Language Map_id_seq"', 14951, true); +SELECT pg_catalog.setval('"Movies_id_seq"', 469172, true); +SELECT pg_catalog.setval('"People_id_seq"', 1908262, true); +SELECT pg_catalog.setval('"Production Companies_id_seq"', 95940, true); +SELECT pg_catalog.setval('"Production Countries_id_seq"', 122, true); +SELECT pg_catalog.setval('"Spoken Languages_id_seq"', 107, true); +SELECT pg_catalog.setval('"Sub-Collections_id_seq"', 479971, true); + +ALTER TABLE ONLY "Departments" + ADD CONSTRAINT "Departments_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Genres" + ADD CONSTRAINT "Genres_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Jobs" + ADD CONSTRAINT "Jobs_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Cast Map" + ADD CONSTRAINT "Movie Cast Map_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Crew Map" + ADD CONSTRAINT "Movie Crew Map_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Genre Map" + ADD CONSTRAINT "Movie Genre Map_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Production Company Map" + ADD CONSTRAINT "Movie Production Company Map_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Production Country Map" + ADD CONSTRAINT "Movie Production Country Map_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Spoken Language Map" + ADD CONSTRAINT "Movie Spoken Language Map_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movies" + ADD CONSTRAINT "Movies_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "People" + ADD CONSTRAINT "People_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Production Companies" + ADD CONSTRAINT "Production Companies_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Production Countries" + ADD CONSTRAINT "Production Countries_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Spoken Languages" + ADD CONSTRAINT "Spoken Languages_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Sub-Collections" + ADD CONSTRAINT "Sub-Collections_pkey" PRIMARY KEY (id); + +ALTER TABLE ONLY "Movie Cast Map" + ADD CONSTRAINT "Movie Cast Map_Cast Member_fkey" FOREIGN KEY ("Cast Member") REFERENCES "People"(id); + +ALTER TABLE ONLY "Movie Cast Map" + ADD CONSTRAINT "Movie Cast Map_Movie_fkey" FOREIGN KEY ("Movie") REFERENCES "Movies"(id); + +ALTER TABLE ONLY "Movie Crew Map" + ADD CONSTRAINT "Movie Crew Map_Crew Member_fkey" FOREIGN KEY ("Crew Member") REFERENCES "People"(id); + +ALTER TABLE ONLY "Movie Crew Map" + ADD CONSTRAINT "Movie Crew Map_Department_fkey" FOREIGN KEY ("Department") REFERENCES "Departments"(id); + +ALTER TABLE ONLY "Movie Crew Map" + ADD CONSTRAINT "Movie Crew Map_Job_fkey" FOREIGN KEY ("Job") REFERENCES "Jobs"(id); + +ALTER TABLE ONLY "Movie Crew Map" + ADD CONSTRAINT "Movie Crew Map_Movie_fkey" FOREIGN KEY ("Movie") REFERENCES "Movies"(id); + +ALTER TABLE ONLY "Movie Genre Map" + ADD CONSTRAINT "Movie Genre Map_Genre_fkey" FOREIGN KEY ("Genre") REFERENCES "Genres"(id); + +ALTER TABLE ONLY "Movie Genre Map" + ADD CONSTRAINT "Movie Genre Map_Movie_fkey" FOREIGN KEY ("Movie") REFERENCES "Movies"(id); + +ALTER TABLE ONLY "Movie Production Company Map" + ADD CONSTRAINT "Movie Production Company Map_Movie_fkey" FOREIGN KEY ("Movie") REFERENCES "Movies"(id); + +ALTER TABLE ONLY "Movie Production Company Map" + ADD CONSTRAINT "Movie Production Company Map_Production Company_fkey" FOREIGN KEY ("Production Company") REFERENCES "Production Companies"(id); + +ALTER TABLE ONLY "Movie Production Country Map" + ADD CONSTRAINT "Movie Production Country Map_Movie_fkey" FOREIGN KEY ("Movie") REFERENCES "Movies"(id); + +ALTER TABLE ONLY "Movie Production Country Map" + ADD CONSTRAINT "Movie Production Country Map_Production Country_fkey" FOREIGN KEY ("Production Country") REFERENCES "Production Countries"(id); + +ALTER TABLE ONLY "Movie Spoken Language Map" + ADD CONSTRAINT "Movie Spoken Language Map_Movie_fkey" FOREIGN KEY ("Movie") REFERENCES "Movies"(id); + +ALTER TABLE ONLY "Movie Spoken Language Map" + ADD CONSTRAINT "Movie Spoken Language Map_Spoken Language_fkey" FOREIGN KEY ("Spoken Language") REFERENCES "Spoken Languages"(id); + +ALTER TABLE ONLY "Movies" + ADD CONSTRAINT "Movies_Sub-Collection_fkey" FOREIGN KEY ("Sub-Collection") REFERENCES "Sub-Collections"(id); \ No newline at end of file diff --git a/demo/install/resources/movie_collection_tables.sql b/demo/install/resources/movie_collection_tables.sql new file mode 100644 index 0000000000..95e1b35a2d --- /dev/null +++ b/demo/install/resources/movie_collection_tables.sql @@ -0,0 +1,339 @@ +CREATE SCHEMA "Movie Collection"; +SET search_path="Movie Collection"; +-- Departments + +CREATE TABLE "Departments" ( + id integer NOT NULL, + "Name" text +); + +CREATE SEQUENCE "Departments_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Departments_id_seq" OWNED BY "Departments".id; + +ALTER TABLE ONLY "Departments" + ALTER COLUMN id SET DEFAULT nextval('"Departments_id_seq"'::regclass); + + +-- Genres + +CREATE TABLE "Genres" ( + id integer NOT NULL, + "Name" text +); + + +CREATE SEQUENCE "Genres_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Genres_id_seq" OWNED BY "Genres".id; + +ALTER TABLE ONLY "Genres" + ALTER COLUMN id SET DEFAULT nextval('"Genres_id_seq"'::regclass); + + +-- Jobs + +CREATE TABLE "Jobs" ( + id integer NOT NULL, + "Name" text +); + +CREATE SEQUENCE "Jobs_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Jobs_id_seq" OWNED BY "Jobs".id; + +ALTER TABLE ONLY "Jobs" + ALTER COLUMN id SET DEFAULT nextval('"Jobs_id_seq"'::regclass); + + +-- Movie Cast Map + +CREATE TABLE "Movie Cast Map" ( + id integer NOT NULL, + "Character" text, + "Movie" integer NOT NULL, + "Cast Member" integer NOT NULL, + "Credit Order" integer +); + +CREATE SEQUENCE "Movie Cast Map_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movie Cast Map_id_seq" OWNED BY "Movie Cast Map".id; + +ALTER TABLE ONLY "Movie Cast Map" + ALTER COLUMN id SET DEFAULT nextval('"Movie Cast Map_id_seq"'::regclass); + + +-- Movie Crew Map + +CREATE TABLE "Movie Crew Map" ( + id integer NOT NULL, + "Job" integer, + "Department" integer, + "Movie" integer NOT NULL, + "Crew Member" integer NOT NULL +); + +CREATE SEQUENCE "Movie Crew Map_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movie Crew Map_id_seq" OWNED BY "Movie Crew Map".id; + +ALTER TABLE ONLY "Movie Crew Map" + ALTER COLUMN id SET DEFAULT nextval('"Movie Crew Map_id_seq"'::regclass); + + +-- Movie Genre Map + +CREATE TABLE "Movie Genre Map" ( + id integer NOT NULL, + "Movie" integer, + "Genre" integer +); + +CREATE SEQUENCE "Movie Genre Map_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movie Genre Map_id_seq" OWNED BY "Movie Genre Map".id; + +ALTER TABLE ONLY "Movie Genre Map" + ALTER COLUMN id SET DEFAULT nextval('"Movie Genre Map_id_seq"'::regclass); + + +-- Movie Production Company Map + +CREATE TABLE "Movie Production Company Map" ( + id integer NOT NULL, + "Movie" integer, + "Production Company" integer +); + +CREATE SEQUENCE "Movie Production Company Map_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movie Production Company Map_id_seq" OWNED BY "Movie Production Company Map".id; + +ALTER TABLE ONLY "Movie Production Company Map" + ALTER COLUMN id SET DEFAULT nextval('"Movie Production Company Map_id_seq"'::regclass); + + +-- Movie Production Country Map + +CREATE TABLE "Movie Production Country Map" ( + id integer NOT NULL, + "Movie" integer NOT NULL, + "Production Country" integer NOT NULL +); + +CREATE SEQUENCE "Movie Production Country Map_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movie Production Country Map_id_seq" OWNED BY "Movie Production Country Map".id; + +ALTER TABLE ONLY "Movie Production Country Map" + ALTER COLUMN id SET DEFAULT nextval('"Movie Production Country Map_id_seq"'::regclass); + + +-- Movie Spoken Language Map + +CREATE TABLE "Movie Spoken Language Map" ( + id integer NOT NULL, + "Movie" integer NOT NULL, + "Spoken Language" integer NOT NULL +); + +CREATE SEQUENCE "Movie Spoken Language Map_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movie Spoken Language Map_id_seq" OWNED BY "Movie Spoken Language Map".id; + +ALTER TABLE ONLY "Movie Spoken Language Map" + ALTER COLUMN id SET DEFAULT nextval('"Movie Spoken Language Map_id_seq"'::regclass); + + +-- Movies + +CREATE TABLE "Movies" ( + id integer NOT NULL, + "Title" text, + "Release Date" date, + "Runtime" numeric, + "Homepage" mathesar_types.uri, + "Sub-Collection" integer, + "Imdb ID" text, + "Tagline" text, + "Overview" text, + "Budget" mathesar_types.mathesar_money, + "Revenue" mathesar_types.mathesar_money, + "Original Title" text, + "Original Language" text +); + +CREATE SEQUENCE "Movies_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Movies_id_seq" OWNED BY "Movies".id; + +ALTER TABLE ONLY "Movies" + ALTER COLUMN id SET DEFAULT nextval('"Movies_id_seq"'::regclass); + + +-- People + +CREATE TABLE "People" ( + id integer NOT NULL, + "Name" text +); + +CREATE SEQUENCE "People_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "People_id_seq" OWNED BY "People".id; + +ALTER TABLE ONLY "People" + ALTER COLUMN id SET DEFAULT nextval('"People_id_seq"'::regclass); + + +-- Production Companies + +CREATE TABLE "Production Companies" ( + id integer NOT NULL, + "Name" text +); + +CREATE SEQUENCE "Production Companies_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Production Companies_id_seq" OWNED BY "Production Companies".id; + +ALTER TABLE ONLY "Production Companies" + ALTER COLUMN id SET DEFAULT nextval('"Production Companies_id_seq"'::regclass); + + +-- Production Countries + +CREATE TABLE "Production Countries" ( + id integer NOT NULL, + "Name" text NOT NULL, + "ISO 3166-1" character(2) NOT NULL +); + +CREATE SEQUENCE "Production Countries_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Production Countries_id_seq" OWNED BY "Production Countries".id; + +ALTER TABLE ONLY "Production Countries" + ALTER COLUMN id SET DEFAULT nextval('"Production Countries_id_seq"'::regclass); + + +-- Spoken Languages + +CREATE TABLE "Spoken Languages" ( + id integer NOT NULL, + "Name" text, + "ISO 639-1" character(2) NOT NULL +); + +CREATE SEQUENCE "Spoken Languages_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Spoken Languages_id_seq" OWNED BY "Spoken Languages".id; + +ALTER TABLE ONLY "Spoken Languages" + ALTER COLUMN id SET DEFAULT nextval('"Spoken Languages_id_seq"'::regclass); + + +-- Sub-Collections + +CREATE TABLE "Sub-Collections" ( + id integer NOT NULL, + "Name" text +); + +CREATE SEQUENCE "Sub-Collections_id_seq" + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + +ALTER SEQUENCE "Sub-Collections_id_seq" OWNED BY "Sub-Collections".id; + +ALTER TABLE ONLY "Sub-Collections" + ALTER COLUMN id SET DEFAULT nextval('"Sub-Collections_id_seq"'::regclass); diff --git a/demo/install/resources/movies_csv/Departments.csv b/demo/install/resources/movies_csv/Departments.csv new file mode 100644 index 0000000000..a961ee6ba6 --- /dev/null +++ b/demo/install/resources/movies_csv/Departments.csv @@ -0,0 +1,13 @@ +id,Name +1,Directing +2,Costume & Make-Up +3,Crew +4,Actors +5,Camera +6,Visual Effects +7,Sound +8,Lighting +9,Art +10,Writing +11,Editing +12,Production diff --git a/demo/install/resources/movies_csv/Genres.csv b/demo/install/resources/movies_csv/Genres.csv new file mode 100644 index 0000000000..47334b490e --- /dev/null +++ b/demo/install/resources/movies_csv/Genres.csv @@ -0,0 +1,21 @@ +id,Name +12,Adventure +14,Fantasy +16,Animation +18,Drama +27,Horror +28,Action +35,Comedy +36,History +37,Western +53,Thriller +80,Crime +99,Documentary +878,Science Fiction +9648,Mystery +10402,Music +10749,Romance +10751,Family +10752,War +10769,Foreign +10770,TV Movie diff --git a/demo/install/resources/movies_csv/Jobs.csv b/demo/install/resources/movies_csv/Jobs.csv new file mode 100644 index 0000000000..02fba160a5 --- /dev/null +++ b/demo/install/resources/movies_csv/Jobs.csv @@ -0,0 +1,420 @@ +id,Name +1,Additional Soundtrack +2,24 Frame Playback +3,Director of Photography +4,Matchmove Supervisor +5,Novel +6,Supervising Technical Director +7,Set Production Assistant +8,Casting Consultant +9,Mix Technician +10,Additional Music +11,Animation Director +12,Characters +13,Other +14,Music Score Producer +15,Animation Supervisor +16,Production Artist +17,Post Production Consulting +18,Set Dressing Artist +19,Manager of Operations +20,Assistant Costume Designer +21,Additional Dialogue +22,Set Dresser +23,Set Decoration Buyer +24,Camera Technician +25,Makeup Designer +26,Executive In Charge Of Post Production +27,Chef +28,Standby Painter +29,Temp Music Editor +30,Aerial Director of Photography +31,Conceptual Illustrator +32,Lighting Technician +33,Script Editor +34,Rigging Gaffer +35,Comic Book +36,Finance +37,Compositors +38,Creative Producer +39,Stand In +40,First Assistant Director +41,Machinist +42,Pyrotechnician +43,Hair Setup +44,Visual Effects Designer +45,Art Department Coordinator +46,Grip +47,Chief Lighting Technician +48,Animation Fix Coordinator +49,Supervising Dialogue Editor +50,Systems Administrators & Support +51,Production Illustrator +52,Story +53,Costume Design +54,Musical +55,Camera Intern +56,Comic-Zeichner +57,Wigmaker +58,Wardrobe Supervisor +59,Production Controller +60,Assistant Director +61,First Assistant Sound Editor +62,Digital Effects Supervisor +63,Theme Song Performance +64,Visual Effects +65,Utility Stunts +66,Assistant Editor +67,Storyboard +68,Production Director +69,Opera +70,Associate Producer +71,Aerial Camera (suggest in addition to Helicopter Camera) +72,First Assistant Editor +73,Recording Supervision +74,Key Grip +75,Camera Operator +76,Hair Designer +77,Author +78,Aerial Coordinator +79,Songs +80,Legal Services +81,Projection +82,Digital Effects Producer +83,Key Makeup Artist +84,Supervising ADR Editor +85,Book +86,Special Sound Effects +87,Music Supervisor +88,Imaging Science +89,Russian Arm Operator +90,Animatronics Designer +91,Animal Coordinator +92,Sound Engineer +93,Local Casting +94,Underwater Director of Photography +95,Lighting Director +96,Ager/Dyer +97,Foley +98,Digital Producer +99,Second Unit +100,Armory Coordinator +101,Photoscience Manager +102,Video Assist Operator +103,VFX Supervisor +104,Production Sound Mixer +105,Music +106,Post-Production Manager +107,Casting Assistant +108,Theatre Play +109,Lead Character Designer +110,Co-Director +111,Assistant Sound Editor +112,Mixing Engineer +113,Assistant Art Director +114,Steadycam +115,Sign Painter +116,Mechanical & Creature Designer +117,Camera Department Manager +118,Executive Consultant +119,Conductor +120,Visual Effects Technical Director +121,Set Dressing Production Assistant +122,Rigging Grip +123,Creator +124,Techno Crane Operator +125,Prosthetic Makeup Artist +126,Ultimate Arm Operator +127,Stunts +128,Lighting Production Assistant +129,Supervising Film Editor +130,Fix Animator +131,Music Programmer +132,Hair Department Head +133,Poem +134,Creative Consultant +135,Craft Service +136,Script Coordinator +137,treatment +138,Visual Effects Design Consultant +139,Presenter +140,Conceptual Design +141,Orchestrator +142,Development Manager +143,Sound Designer +144,Unit Manager +145,Epk Camera Operator +146,Aerial Camera Technician +147,Second Assistant Director +148,Set Decoration +149,Animation Manager +150,Opening/Ending Animation +151,Documentation & Support +152,Makeup Supervisor +153,VFX Production Coordinator +154,Title Graphics +155,Thanks +156,Department Administrator +157,Additional Writing +158,Set Costumer +159,Archival Footage Coordinator +160,Stunt Coordinator +161,Digital Compositors +162,Creature Design +163,Co-Producer +164,Armorer +165,Construction Foreman +166,Construction Coordinator +167,Picture Car Coordinator +168,Pilot +169,Special Effects Coordinator +170,Camera Supervisor +171,Drone Operator +172,Studio Teachers +173,Sound Effects +174,3D Supervisor +175,Still Photographer +176,Scenic Artist +177,I/O Supervisor +178,Story Editor +179,Costume Supervisor +180,Sound +181,Sound mixer +182,Gaffer +183,Aerial Camera +184,Sound Effects Designer +185,Negative Cutter +186,Modeling +187,Dialogue Editor +188,Electrician +189,Transportation Coordinator +190,Boom Operator +191,Pre-Visualization Supervisor +192,Underwater Camera +193,Consulting Producer +194,Interior Designer +195,2D Supervisor +196,Sound Effects Editor +197,Dolly Grip +198,Visual Effects Coordinator +199,Graphic Novel Illustrator +200,Visual Effects Editor +201,Stereoscopic Coordinator +202,Playback Singer +203,Script Supervisor +204,Art Direction +205,Script Consultant +206,Marine Coordinator +207,Dialect Coach +208,Makeup Department Head +209,Music Editor +210,Location Scout +211,Prop Maker +212,Quality Control Supervisor +213,Scenario Writer +214,Producer +215,Lighting Coordinator +216,Script Researcher +217,Technical Supervisor +218,Continuity +219,Color Timer +220,Music Director +221,Transportation Captain +222,Animation Department Coordinator +223,Gun Wrangler +224,Sets & Props Supervisor +225,Foley Editor +226,Hairstylist +227,Assistant Production Coordinator +228,Costume Coordinator +229,VFX Editor +230,Fight Choreographer +231,Co-Executive Producer +232,Adaptation +233,Master Lighting Artist +234,Director +235,Additional Camera +236,Best Boy Electric +237,Supervising Sound Effects Editor +238,ADR Editor +239,First Assistant Camera +240,Utility Sound +241,Associate Choreographer +242,Settings +243,CGI Supervisor +244,Post Production Supervisor +245,Choreographer +246,Creature Technical Director +247,Administration +248,Costume Illustrator +249,Dolby Consultant +250,Digital Intermediate +251,I/O Manager +252,Security +253,3D Generalist +254,Short Story +255,Stunt Double +256,Software Engineer +257,Set Medic +258,Art Department Manager +259,Post Production Assistant +260,Prosthetic Designer +261,Hair Supervisor +262,Visual Effects Supervisor +263,Editorial Services +264,Series Writer +265,Executive Producer +266,Animatronic and Prosthetic Effects +267,Underwater Gaffer +268,ADR & Dubbing +269,Production Design +270,Sculptor +271,Production Manager +272,Executive Visual Effects Producer +273,Original Music Composer +274,Sequence Leads +275,Storyboard Designer +276,Chief Technician / Stop-Motion Expert +277,Sound Recordist +278,3D Animator +279,Co-Art Director +280,Co-Costume Designer +281,Roto Supervisor +282,Animal Wrangler +283,Casting +284,Publicist +285,Camera Loader +286,Cinematography +287,Makeup Effects +288,Stunts Coordinator +289,Animation +290,Special Guest Director +291,Special Effects Supervisor +292,Driver +293,Seamstress +294,Public Relations +295,Vocal Coach +296,Carpenter +297,Actor +298,Helicopter Camera +299,Researcher +300,Unit Production Manager +301,Steadicam Operator +302,Art Department Assistant +303,Second Unit Cinematographer +304,Dialogue +305,Title Designer +306,Sound Mixer +307,Animation Production Assistant +308,Sound Design Assistant +309,Production Office Coordinator +310,Lighting Camera +311,Assistant Property Master +312,Executive in Charge of Finance +313,Mechanical Designer +314,Key Hair Stylist +315,Production Supervisor +316,Dramaturgy +317,Writer +318,Production Coordinator +319,Third Assistant Director +320,Production Intern +321,Editorial Production Assistant +322,Location Manager +323,Co-Writer +324,Script +325,Additional Photography +326,In Memory Of +327,Sound Editor +328,Visual Effects Producer +329,Score Engineer +330,Translator +331,Propmaker +332,Lighting Artist +333,Makeup Artist +334,Additional Sound Re-Recording Mixer +335,Lead Animator +336,Set Dressing Supervisor +337,Prosthetic Supervisor +338,Shading +339,Makeup Effects Designer +340,Key Costumer +341,Tailor +342,Supervisor of Production Resources +343,Martial Arts Choreographer +344,Lead Painter +345,ADR Supervisor +346,Unit Publicist +347,Temp Sound Editor +348,Assistant Production Manager +349,Layout +350,3D Artist +351,Radio Play +352,Transportation Co-Captain +353,Supervising Music Editor +354,Tattooist +355,Editorial Coordinator +356,Key Set Costumer +357,CG Supervisor +358,Executive In Charge Of Production +359,Key Animation +360,Property Master +361,Actor's Assistant +362,Cableman +363,Motion Capture Artist +364,Supervising Producer +365,Color Designer +366,Sequence Supervisor +367,Editorial Manager +368,Scoring Mixer +369,CG Painter +370,Commissioning Editor +371,Production Office Assistant +372,Line Producer +373,Sound Re-Recording Mixer +374,Best Boy Electrician +375,Co-Editor +376,Screenstory +377,Loader +378,Editorial Staff +379,Set Dressing Manager +380,Second Film Editor +381,Leadman +382,Set Decorating Coordinator +383,Executive Music Producer +384,Additional Still Photographer +385,Pyrotechnic Supervisor +386,Second Unit Director of Photography +387,Screenplay +388,Greensman +389,Production Accountant +390,Character Designer +391,Draughtsman +392,Rigging Supervisor +393,Casting Associate +394,Supervising Sound Editor +395,Supervising Animator +396,Visual Effects Art Director +397,Sound Director +398,Set Designer +399,Background Designer +400,CG Animator +401,Visual Development +402,Additional Editing +403,Original Story +404,3D Modeller +405,Lighting Supervisor +406,VFX Artist +407,3D Coordinator +408,Lighting Manager +409,Musician +410,ADR Voice Casting +411,Supervising Art Director +412,Painter +413,Editor +414,Assistant Set Dresser +415,Special Effects +416,Idea +417,Telecine Colorist +418,Associate Editor +419,Teleplay diff --git a/demo/install/resources/movies_csv/Movie Cast Map.csv b/demo/install/resources/movies_csv/Movie Cast Map.csv new file mode 100644 index 0000000000..99239199ee --- /dev/null +++ b/demo/install/resources/movies_csv/Movie Cast Map.csv @@ -0,0 +1,159013 @@ +id,Character,Movie,Cast Member,Credit Order +1,Chick Gandil - 1B,2323,44792,15 +2,Patty,33689,1331572,9 +3,General George C. Marshall,857,3907,9 +4,Himself (archive footage),8672,1101333,8 +5,Senator,25430,31265,13 +6,Mel Feynman,2033,20899,2 +7,Donna,27265,27011,4 +8,Gen. Varus,2428,14505,53 +9,Boy in School,79593,1772252,25 +10,Bullwinkle / Narrator / Cartoon Boris Badenov / Cartoon Fearless Leader,17711,94979,7 +11,Colleen,1903,92857,12 +12,Alexander Leek,2637,27554,8 +13,Nancy No Pants,41160,3303,24 +14,Chaplain - Vietnam,2604,49832,45 +15,Claudia Wilson Gator,334,4766,8 +16,Fred / Marco,11983,1454453,8 +17,Clemens Metternich,13701,22,6 +18,Man with Purse,1058,119713,15 +19,Lt. Dick Craig,36489,1313952,1 +20,Lillybelle,11654,29258,13 +21,Mayor / Narrator / Ka-Ching Ka-Ching (voice),59387,78798,4 +22,Osborne (as Luis Fonoll),21380,937468,5 +23,Commissioner,9563,10017,18 +24,Danila Bagrov,20992,71871,0 +25,"Chicha, Pacha's Wife (voice)",11688,61980,8 +26,CHP Officer,11950,27726,14 +27,"Adam, age 11",26761,87824,9 +28,Subway Gang,169,589956,21 +29,Policeman #3,10866,552473,26 +30,McManus,9438,27112,12 +31,Dusty Rhodes,245268,37448,8 +32,Spud Jones,10860,9880,7 +33,Jane,838,42174,15 +34,Ramalao Makhene,34615,123834,6 +35,John Gustafson,15602,3151,1 +36,Aunt,18079,1148662,5 +37,Janice,12618,36190,22 +38,McCoy,12311,22606,27 +39,Lillian Sawyer,21468,85941,20 +40,Enrique,29263,228441,3 +41,Beryl Peoples,11593,5698,3 +42,Adrien,36047,15010,1 +43,Paul Byrd,29376,100918,6 +44,Ike Turner,15765,2975,1 +45,Neal Kelso,54287,157436,11 +46,Stepanian,13005,63214,10 +47,Ray,49792,129723,5 +48,Cmdr. Pavel Chekov,172,1754,5 +49,Extra (uncredited),2897,1271657,149 +50,Beetlejuice,4011,2232,3 +51,Boethius,2750,2040,26 +52,Gulley Jimson,43139,12248,0 +53,Herself,33015,1364095,4 +54,Father Louis Roulland,9289,25155,3 +55,The Boy,977,14582,0 +56,Estuary Victim,578,8591,15 +57,Dancer,10603,1748113,34 +58,Cop,16938,1724911,25 +59,Rafael Menendez,13369,14331,6 +60,Governor,9028,56729,6 +61,Annabelle's Father (as Charles Smith),961,14422,5 +62,Lt. Harris,26593,78386,13 +63,Golden Dragon Club member,9404,1277941,12 +64,Marius,17350,24891,2 +65,Rich man at Yacht party,34774,93967,13 +66,Cop,105,99725,31 +67,Anne Corbeck,39176,103727,2 +68,Steve,12186,58019,17 +69,Molly,11397,1239773,75 +70,Harriet Sims (bookstore clerk),123047,17477,7 +71,Carol,838,12408,6 +72,Frank Madras,20242,15903,5 +73,Candy Bliss,30943,2395,2 +74,Curtis,525,7173,3 +75,Naked Girl at Party,11397,550247,57 +76,Muk and Luk (voice),21032,110001,4 +77,Prosperous Tourist (uncredited,289,995920,100 +78,Margaret Calgrove,10950,18284,5 +79,Wendy Pfister,29444,368,1 +80,Brigit,27834,1105030,11 +81,Andrew McNee,38006,1428673,6 +82,Mr. Rosen,3784,29706,5 +83,Molly,9343,4959,4 +84,Fast Food Clown,24405,105176,13 +85,Tall Monk,11231,1217015,8 +86,Disco Cabbie,15256,4169,2 +87,Dead Head Gill Chavez,4806,75604,11 +88,Tank Captain,11202,87473,30 +89,Dale,17708,160707,14 +90,Telephone Operator #1 (uncredited),18646,29814,9 +91,Dart,5917,1894148,25 +92,,281085,3085,4 +93,Teenage Thug,1497,1456493,36 +94,Jack Dawn,10889,7795,3 +95,Father Carlin,5332,20282,9 +96,Tennis Match Commentator #1 (voice) (uncredited),9428,5655,11 +97,Bartender at Green Mill,11524,86499,23 +98,Dentist (voice),12,23,18 +99,David,12112,40939,2 +100,Policeman (uncredited),1480,29645,24 +101,Carnival Manager,13555,44656,12 +102,Backstage guest,18646,121323,8 +103,Maggionari,11876,23961,7 +104,Mackie,29698,135047,16 +105,Samurai,11712,99247,13 +106,Danny Zuko,621,8891,0 +107,Rocky Holzeck,161495,2314,1 +108,Johnny,14293,91389,4 +109,"Folk Singer - Syracuse, NY",2604,1231796,58 +110,Amelia Minchin,19101,34407,3 +111,First Judge (uncredited),3063,952657,26 +112,Toren,2135,21049,18 +113,Count Lippe,660,9923,5 +114,Little Starla Grady (uncredited),23967,61555,14 +115,Mark 'Dags' D'Agastino,27993,17604,14 +116,Rotten Ronnie,10796,1235093,15 +117,Victoria Peyton,30690,74276,4 +118,Dan De Mora,25796,1117,0 +119,Detective Lorenz,79593,106531,35 +120,Macci,29263,122693,9 +121,Nick,77283,2441,1 +122,Fathom Harvill,43915,21462,1 +123,Shooting Range Master,117,1802887,18 +124,Sin Sister #2,10396,22072,12 +125,Drunk (uncredited),34106,120446,133 +126,Girl at Restaurant,32049,1477803,37 +127,Tony Toponi,4978,35349,7 +128,Victoria Grant / Count Victor Grezhinski,12614,5823,0 +129,Papa Mueller,18642,118310,22 +130,Ricky Hawthorne,24634,30181,0 +131,Dr. Emmett Brown,105,1062,1 +132,Quizmaster,11521,12438,10 +133,Extra (uncredited),2897,1276748,131 +134,Hilary,2750,1229181,50 +135,Paterson Judge,10400,7576,21 +136,Nicole Harris,10869,39762,2 +137,Italian Sports Announcer,11535,1132170,60 +138,Laura Brandston,15489,5376,2 +139,Dixie,62463,1780580,18 +140,Agnes Browne,15506,5657,0 +141,Ornamentalist,11639,219193,5 +142,Travis Henderson,655,5048,0 +143,Brian,2637,27551,5 +144,Gino,145925,1189964,6 +145,Sonny's Bodyguard (uncredited),238,1503036,45 +146,Match,165,1954,7 +147,Raymond T.K,108365,4289,8 +148,Cheap Trick,10708,1038347,15 +149,Don Ward,524,99906,20 +150,Sigrun,9301,1414190,9 +151,Starlighter,105,1200791,37 +152,Sanchez,9028,50782,10 +153,Rafael - Purser with the Scar,43832,34334,18 +154,Christina's Advisor,9563,3095,22 +155,Betty Dawkan (Nick's Mom),32872,650,3 +156,Chango,19176,40481,6 +157,Partonov,8665,27659,6 +158,Beth,19797,121757,5 +159,Alex,28774,43773,3 +160,'Dearest' Erroll,23114,14515,1 +161,Multi-Lingual Party Guest,1813,1089395,38 +162,Detective Rita Veder,12158,9780,1 +163,(uncredited),269,1513486,23 +164,Don Tommasino,238,24604,35 +165,Kirby,28176,6067,13 +166,Mrs. Bracken,21060,87051,7 +167,Zack,60994,72638,7 +168,Miss Wright,10950,64857,18 +169,Maurice,60083,35899,5 +170,Rex Reed,1924,1227454,48 +171,Clell Miller,13496,184834,12 +172,Ma Kennywick,11120,11500,12 +173,Carl Weldon (as Brent Van Hoffman),80350,57358,10 +174,Shay Stanley,13962,76131,1 +175,Man Singing at Inquirer Party (uncredited),15,1331758,47 +176,Duffy,2100,21532,6 +177,Michael DeMarco,121940,18687,4 +178,Minor Role (uncredited),2897,1666966,276 +179,Villager,229,1486718,29 +180,The mother,46592,557008,4 +181,,34899,555181,11 +182,RAdm. Janjard,9289,14242,63 +183,Major,1924,6840,73 +184,Mr. Brown,11517,32287,6 +185,Bu Montgomery,2115,21731,3 +186,Fils de Préfet,2110,130452,17 +187,Ad Executive Phil,11232,159869,9 +188,TGRI Worker,1497,1456486,33 +189,Bar Dancer,755,68430,25 +190,Quentin 'Q' Morewood,11004,9626,4 +191,Steele the Sled Dog (voice),21032,12077,3 +192,M,691,9874,7 +193,Víctor Bolarich,7305,1235633,28 +194,Gordie Lachance,235,3033,0 +195,Mechanic #2,11524,4943,21 +196,Tzeitel,14811,975522,5 +197,Sûpâ no shachô,11830,551776,23 +198,Elevator Passenger #2,1637,1223848,50 +199,Gen. Von Brock,15873,2567,4 +200,Master Kane,37108,8784,3 +201,Pierre Bezukhov,11706,4958,1 +202,Wonder Palm Monk Hin Hung,12780,239091,4 +203,Colin Proudfoot,21828,1347359,9 +204,Katie Barrett,24816,151503,11 +205,The Legendary Red Dog,786,12714,31 +206,John,10326,82433,6 +207,Baleto,10603,559485,12 +208,Mourner,20645,108026,23 +209,Augusta 'Gussie' Sawyer,215875,5606,0 +210,La Signorita,11570,69810,11 +211,Sandy Brozinsky,20242,73931,1 +212,Agent Kate Russo,17708,5025,1 +213,Woman Listening to Speech,25430,1388799,54 +214,Evan,9902,7431,4 +215,Plainclothes Policeman (uncredited),34106,120734,25 +216,Vern Tessio,235,3035,3 +217,James J. Jamison III,26299,19138,3 +218,Larry Mendoza,26173,83851,7 +219,Secrétaire Ishibashi,2110,1677032,25 +220,Lex Luthor,1924,193,3 +221,Munro's Captain,18,1202628,25 +222,Dr. Bill Lintz,15170,1923,1 +223,Officer Husselbeck,2666,27754,9 +224,Martin,9314,193340,7 +225,Man at Jail (uncredited),34106,1381975,101 +226,Lieutenant,10863,67566,2 +227,Clay Boone,11694,30928,4 +228,Guard,5917,1546560,54 +229,Jim Olmeyer,14,2154,6 +230,Greta's daughter,46986,1535178,27 +231,Nick,18621,4941,1 +232,Additional Voice (voice),9016,70615,16 +233,Policeman,26378,1422173,40 +234,Roy Turner - Automobile Mechanic (uncredited),220,95598,31 +235,Bill Harding,664,2053,1 +236,Elaine Christian,9296,2229,2 +237,Cheryl Henderson,27265,64826,6 +238,Musician,6068,1609267,50 +239,Friend of Lilly Belle,43828,1365320,35 +240,Debby Utley,8470,56567,13 +241,Ronnie,10344,160111,8 +242,M.A.A.,14886,10224,3 +243,Actor Boy Friend,703,5589,18 +244,Cmdr. Carter,691,10657,26 +245,Grete,2262,23345,5 +246,Ross,9102,1445745,10 +247,Denis Doyle,29911,75778,9 +248,Pound Worker,47955,1295297,9 +249,Enrique,76397,116137,5 +250,Dancer,46986,1535185,43 +251,Young Pilot,78802,156330,6 +252,Joe Maretto,577,6486,6 +253,Mangalor alien,18,1551797,113 +254,Spanish Voice,18079,1084274,15 +255,Swimming Chrissie - First Victim (uncredited),578,97751,19 +256,Vera (uncredited),11593,10776,32 +257,First Mrs. Rhodes,21849,89841,12 +258,Grandmother at Dock,11236,1542814,15 +259,Man on Cell Phone,18079,1059956,8 +260,Gilbert,12101,40551,7 +261,Brown's Hole Rustlers,5917,1247932,35 +262,The Hanging Man (uncredited),4011,148130,26 +263,Dr. Henry Devlin,6171,11155,1 +264,Del Piero,10775,236116,10 +265,Kate,24077,7056,1 +266,Julia Pendleton,70801,1368769,6 +267,Darill Miller,3172,31713,5 +268,Baker,524,122124,34 +269,Weldon,20242,16293,6 +270,Jennifer Haines,4916,28412,0 +271,Carlo Paiva,107693,234486,1 +272,Sean from the Bakery,2898,119866,14 +273,Jeanette,11374,12134,2 +274,,20645,1200403,16 +275,Assunta Guaspari,26149,9599,2 +276,Dr. Rochelle Mutation,19142,1720933,12 +277,Alien,29938,79592,12 +278,Mr. Buckley,91217,10380,7 +279,Bo Hess,2675,17140,3 +280,Chief,9507,27237,5 +281,Young Hilary,46992,1394981,9 +282,Girl in Library #3,37410,54126,12 +283,Cawley - Jack's Handler,26378,1045090,58 +284,Fred,91217,1006136,10 +285,Orchestra Leader (uncredited),15,1086333,119 +286,Helen Swanson,8467,8437,3 +287,Detective Inspector McCall,9905,25136,3 +288,Hallie Stoddard,11697,7303,2 +289,Robert Neary,43340,35322,7 +290,Gorgoni,9835,47774,11 +291,Agent Cooper,9087,78494,11 +292,Pisciotta,31945,1241,3 +293,Chief Phillips,28,8354,6 +294,The Minister (as Rev. Francis B. Creamer Jr.),17590,1616205,8 +295,Parade Onlooker (uncredited),2897,1506440,294 +296,,36047,37043,8 +297,Food Vendor (uncredited),31805,97999,6 +298,Bartender,11374,152718,43 +299,,12112,67902,3 +300,Ragnar - Dour,1911,43299,9 +301,Father,43978,1890328,3 +302,Marie Fröhlich,13701,1645,13 +303,Lao,12764,1708458,8 +304,Norseman,1911,1216568,17 +305,Ross Carpenter,15734,21457,0 +306,Tony,15940,20508,2 +307,Fiddler,14811,1231662,21 +308,Young Marty,33344,88830,6 +309,Technician,11535,1674976,80 +310,Agatha,50512,1352513,20 +311,Bank Manager (uncredited),34106,34508,104 +312,Bobby,8467,1074689,14 +313,Man at Falls,10400,1393330,23 +314,"Topi, the Ex-Student Revolutionary Trafficker",47144,1043211,1 +315,Television Anchor (voice),55420,1799818,26 +316,"Mutsuta, the Chamberlain",11712,128023,7 +317,Rockets,549,6401,15 +318,Lila Crane,539,7303,1 +319,Charlie Clark,524,18262,12 +320,Professor,34106,133099,16 +321,John Dillinger,39771,129317,1 +322,Wing Kong Hatchet Man,6978,1677322,34 +323,Extra (uncredited),2897,1518743,94 +324,Ballroom Dancer,22213,157022,24 +325,Floyd,8869,1154284,12 +326,Ntsiki Biko,12506,1629826,9 +327,Phil,32043,23974,1 +328,Chief of Emergency Headquarters,1678,552168,21 +329,Freddie Harris,11442,6485,2 +330,Football Thug,2750,1785144,51 +331,Genzô Tsugawa,3780,96800,6 +332,Misty (voice),12599,67832,1 +333,Babe Ruth,19140,88960,2 +334,Mrs. Solana,7305,1872759,36 +335,Extra (uncredited),2897,1331759,92 +336,Huck Hanley,95627,15864,25 +337,Betty,11622,1178622,10 +338,Dr. Blackstock,15764,240772,12 +339,Liz Hamilton,2990,29384,10 +340,Man in Range Rover,79593,155967,33 +341,Police Sergeant,17889,129549,6 +342,(Young) David Helfgott,7863,1284,2 +343,Harry,28120,6102,12 +344,Gen. Sternwood,910,13976,6 +345,Debbie Dunham,838,12407,5 +346,Bob,11959,11659,3 +347,Yente,14811,129551,3 +348,Preston's Father,11397,56456,53 +349,Dr. Du Jia-zhen,77825,126735,0 +350,Panther,11134,57609,4 +351,Frank Zito,27346,16525,0 +352,Hugo Snyder,16314,80282,4 +353,Paula,15489,115857,19 +354,Great Owl (voice),11704,8516,9 +355,'I' as a young child,12516,1484328,6 +356,Satan,9946,5168,1 +357,,10568,1463007,20 +358,Pilot Jack,8358,1007561,12 +359,Assault Team Leader,1995,20509,9 +360,Dancing Hooker (uncredited),85837,52615,12 +361,Dutton Peabody,11697,8254,4 +362,Statehood Audience Member (uncredited),11697,32573,61 +363,John,2428,74763,35 +364,The Djinn,10351,36218,0 +365,Maggie Abbott Baldwin,858,10679,10 +366,Fantasy Girl,49410,69597,19 +367,Sergeant Gonzales,32093,104806,8 +368,Funeral Director,11593,1183440,22 +369,Fhloston Commander,18,192895,78 +370,Chamberlain,16176,67676,6 +371,Jim Bob,37917,68180,11 +372,Becca Ramsey,48287,31031,10 +373,Officer David Caporizo,3597,33262,8 +374,Hunter Morlock,2135,1586648,21 +375,Aide #1,2637,27708,25 +376,Moving Man,22023,1577170,34 +377,Noah,116904,98950,3 +378,Townsman (uncredited),11697,1421080,26 +379,Trustee (uncredited),34106,47001,124 +380,George Blanchard,415072,32218,3 +381,Gnatty (voice),28032,114423,14 +382,Orchestra Leader,29376,106102,8 +383,Preston's Wife,7299,52402,13 +384,Nicola,153141,1770538,16 +385,Airport Bystander,8467,1853184,42 +386,Fleegle,53617,167926,13 +387,Dr. William Wilson,20424,34726,24 +388,Hunt Weller,79783,6804,4 +389,Mullet Cop,12079,53,16 +390,Rain,6978,97695,8 +391,Sgt. Raimi,15762,161310,6 +392,Mary Boone,549,7489,7 +393,John MacKenzie,11862,20906,7 +394,Ida Corwin,3309,860,3 +524,Dave Morgan,10406,1328,0 +395,"Nina Ivanovna Yakushova, a.k.a. Ninotchka",1859,19549,0 +396,Drunk Next to Grandma,26378,9094,45 +397,Dorrie,11337,44079,1 +398,Pvt. Elliot 'Mac' McDaniel,10652,126837,8 +399,Byron Williams,75,4774,14 +400,Sheila,14295,12930,8 +401,Mother,7514,52820,7 +402,Michael Brinn,43997,71450,8 +403,Bouncer at Rick's (uncredited),289,120046,77 +404,Sheriff of Crockett County,11576,14966,24 +405,Mr. Schultz,10671,165524,36 +406,Man in Passenger Seat (uncredited),238,1290895,53 +407,Leona's Friend,169,1778745,37 +408,,32872,163597,4 +409,Jo's Boys 4,54405,95808,20 +410,George Kraft,34084,119381,3 +411,First Fight Referee,26378,8782,59 +412,Himself,17496,1193569,10 +413,Lecture-Hall Nurse,9540,1238088,16 +414,Lou,11374,548090,51 +415,George Henderson,8989,12074,0 +416,Aunt Elizabeth,11415,16200,8 +417,Agent George Stone/Giuseppe Petri,117,1271,3 +418,Leading Seaman - HMS Bedford,714,74056,33 +419,Little Red,38772,6451,6 +420,Hunter at Hermit's Cottage,229,8516,22 +421,Francois,11001,1525030,39 +422,Suzanne Pincus' Publicist,125548,171652,9 +423,Maddy Nagle,10013,11148,5 +424,Agha Mohmoud,47161,135907,2 +425,Capitaine,36943,591,6 +426,Det. Jimmy Shaker,3595,33,1 +427,Cardinal Vinci,124963,9920,4 +428,Joe,29825,8654,0 +429,Sam Kraus,31618,20163,10 +430,Ruth Jamison,1633,18248,2 +431,Narrator (voice),10238,6648,7 +432,Extra (uncredited),2897,141070,54 +433,Himself,47715,5676,0 +434,Jennifer Williams,29492,95479,0 +435,Older Woman,11472,998895,11 +436,Coach Olga,11535,106460,10 +437,Announcer,28165,1073196,5 +438,"Bob, News Anchor",2107,1591225,14 +439,Entertainer (uncredited),15,148006,152 +440,Patrick 'Madman' Kelly,9563,52366,12 +441,Army Wife (uncredited),10590,1345177,49 +442,Paul Whittier,39176,182092,4 +443,Charley Lau,1793,19132,2 +444,Il-Sang Lee,13440,121148,5 +445,Farmer,2750,83548,35 +446,Neighbor (uncredited),34106,121306,59 +447,Logan,10543,144129,7 +448,Bleek Gilliam,41823,5292,0 +449,Arnaud de Lacanau,17350,84433,9 +450,Jimmy Olsen,1924,1067,15 +451,Sol Roth,12101,13566,1 +452,Madam in Whorehouse,22023,28779,40 +453,Robert Kraft,34084,16420,0 +454,Emma,1903,29930,11 +455,,10874,64181,4 +456,Daughter,11159,1247601,43 +457,Extra (uncredited),2897,1537729,215 +458,President Karpov,10003,19301,6 +459,Alan Sloane,60994,162754,5 +460,The Interviewer,549,4690,10 +461,Dominique,108,1146,9 +462,Helicopter Skid Marine (uncredited),28,1604873,34 +463,Murota samurai,11712,134320,10 +464,Smokey,26889,13315,7 +465,Bartender Who Bets,11873,1265404,36 +466,Dingbat,1811,18979,7 +467,Veteran (uncredited),2604,95805,94 +468,Sexy Pedestrian (uncredited),522,1375144,62 +469,Henson,4248,1534,9 +470,Tadatsugu Sakai,11953,1484298,29 +471,Nurse (uncredited),3309,106554,51 +472,Titty Twister Guitarist & Vocalist,755,53763,16 +473,Joe Lucky,6978,159078,13 +474,Crematory Technician,7299,62892,18 +475,Tommy's Gang,26378,95294,1 +476,Ferula Trueba,2259,515,1 +477,Nikki (voice),21032,19545,6 +478,Albert Pierce,3309,30303,5 +479,Teenager at World of Donuts,37410,1212270,14 +480,Young Jimmy Gator,334,11155,24 +481,Himself (uncredited),2757,3036,25 +482,Baw,2565,78729,11 +483,Don Braulio,31665,29273,3 +484,Private Richard Reiben,857,12833,10 +485,Pang Ruyi (child),47694,554857,12 +486,The Denny's Waitress,9464,1733431,19 +487,Brad Seldon,14429,171871,11 +488,Woman in Car,552,7547,8 +489,Dolores,19324,84476,3 +490,Fletcher Christian,2669,2461,0 +491,Tiffany,12236,56933,1 +492,Max,15745,2314,4 +493,Hotel Receptionist,2984,184980,24 +494,Hollywood,744,11089,11 +495,Caixa Baixa - Runts,598,1245030,17 +496,Eddie Darko,141,1578,6 +497,Tahli,11535,198707,50 +498,"Mr. Sparks, the Tennis Pro",28134,9188,5 +499,Aunt Jack Hillard,788,11719,10 +500,Lt. Clayborne,34084,89661,5 +501,Yasu Wade,17170,12224,10 +502,Party babe,9059,97780,16 +503,Alice Connor,11511,18316,2 +504,Kathy Worthington,61563,21197,15 +505,Janet Odgers,21828,3489,12 +506,Delia,46989,3713,3 +507,Mr. Dinckler,11576,2437,34 +508,Various Voices,14683,33482,3 +509,Seneschal,30584,5,6 +510,Young Ruth - age 8,152023,1132209,9 +511,Ch`u Sing,2085,39829,13 +512,Jim Kelly,10162,147054,4 +513,George Aaronow,9504,1903,3 +514,General Director Preysing,33680,29260,3 +515,Sean Fletcher,11472,4785,4 +516,Snapple Girl,11374,42145,44 +517,Bellhop,9475,1800170,28 +518,Cyril the Barman,17203,7318,19 +519,Maxine Richter,17691,9871,3 +520,Amy,266022,1574277,4 +521,Vera,11812,52697,9 +522,William Shakespeare (voice),45772,2387,4 +523,Frau von Kalteneck,25037,222281,7 +525,Pinetop Purvis,16249,40390,13 +526,Josie Dawes,25934,133030,11 +527,Red,17692,1296388,36 +528,Stephen Dallas,47329,1756,3 +529,Pat Holroyd (uncredited),28430,153196,12 +530,Georgina,43775,72644,6 +531,Priest at Baptism (uncredited),238,1503035,52 +532,Mary,23114,2929,8 +533,Honeymoon Man,43089,67127,15 +534,Faust,18919,83882,0 +535,Meyer's Aide (uncredited),9289,19574,24 +536,Panansky,20242,1217505,8 +537,Fausto,349394,1499582,2 +538,Jack Burton,6978,6856,0 +539,TV News Announcer (voice),16550,1480047,21 +540,Flirty Blonde Salesgirl (uncredited),73969,2491,18 +541,Jane,10897,951813,24 +542,Berkeley Cole,606,10648,3 +543,Patagonian prisoner,34774,21607,17 +544,Stan Gable,14052,18982,9 +545,Wendy,99826,1178527,4 +546,Millie Jackson,108365,80866,4 +547,The Lover,499,590099,5 +548,Dr. Henderson,53714,66884,2 +549,Lieutenant Colonel Frank Slade,9475,1158,0 +550,Mary Bland,28940,100552,1 +551,Waiter,96238,163687,9 +552,Susan Abbott,17889,82407,1 +553,Steffi Dandridge,9716,18892,5 +554,Billy Meehan,33851,6970,4 +555,Mrs. Diana Barzoon,1813,1207046,12 +556,First Lord of the Navy,16176,91663,17 +557,Dunker (uncredited),25898,30194,19 +558,Final Wedding Pastor,4806,80874,10 +559,Janice,10937,53931,7 +560,Horse Breaking Sequence,5917,982374,67 +561,Debbie,41760,465117,9 +562,Lt. Pattison,15873,56015,6 +563,Todd,9425,6856,0 +564,Christina Robertson,17203,38581,3 +565,Connie Russo,2321,2167,5 +566,Maj. Gen. Robert Haines,9289,3754,19 +567,Dr. Yen Lo,982,14734,8 +568,Captain Holly,11837,47547,3 +569,Lord Birkenhead,9443,13327,11 +570,Woman in Bar,32049,1502516,35 +571,KGB Chairman Andropov,10724,659,30 +572,Phil,49410,4942,7 +573,Garrison Gaylord,32227,40173,3 +574,Mavis,9555,228704,8 +575,Brig. Gen. Hobart Carver,11202,15650,3 +576,Prostitute,3780,1482639,43 +577,Cigar Face,28169,1708242,17 +578,Ann Raftis,52744,27725,3 +579,Robert Mariell,18801,26659,2 +580,Leveret,10491,20425,6 +581,Fred,24254,21315,1 +582,Senator John Lerman,27993,36173,2 +583,Capt. Robert Edwards,10590,21043,16 +584,Jacko,13965,76188,9 +585,Reporter #1,10539,177175,11 +586,Sgt. Nick Lassard,11895,42206,5 +587,Holden's Parent,9716,28010,32 +588,Dede Tate,11521,1038,0 +589,Herod Antipas,2428,12515,7 +590,10th Elder,1924,30709,24 +591,Leroy,15239,32286,13 +592,Angie's First Customer!,2321,21366,24 +593,Jill,696,5064,4 +594,Hick Backer,522,938149,38 +595,Kelly Ann Bukowski,17692,1063,5 +596,Steven's Secretary,9894,26046,12 +597,Gabe Law / Gabriel Yulaw / Lawless,10796,1336,0 +598,Sasha La Fleur (voice),19042,109988,10 +599,Willa Martinez,170430,173264,4 +600,American Doctor,12104,172953,13 +601,Inez,13685,74940,2 +602,Dr. Harvey Mandrake,9563,4512,3 +603,Gunman in Leo's House,379,142160,22 +604,Donatello / Foot Messenger,1498,77153,4 +605,Lee Plenty,51955,93133,0 +606,Meeker,11361,42308,3 +607,Sean Brody,578,8612,10 +608,Arnold McCardle,10354,6110,17 +609,Jane Banning,29239,2934,8 +610,Reporter,2984,1887367,36 +611,Coach Beck,11545,71555,12 +612,Robert's mother,78657,24462,3 +613,Arthur Bishop,19403,4960,0 +614,Eddie Moscone,9013,532,5 +615,"Marvin ""Shake"" Tiller",4988,10823,1 +616,Mama Corleone,238,933716,16 +617,David Felton,786,11678,12 +618,Shorty,29649,59568,1 +619,Dr. Berlin,53150,11793,13 +620,Policeman Outside Irwin & Ray's Garage,11576,19400,43 +621,Shemiah,2428,3160,18 +622,Kit Austin,28295,153754,3 +623,Fusco Cornelio,29743,27647,1 +624,Dr. Jochen Schuster,287305,8196,1 +625,Capt. Colin Maud,9289,67676,52 +626,Servant,125520,116130,6 +627,Capt. Lochner,17057,81180,3 +628,Cop,169,102710,26 +629,Gina,13531,9137,5 +630,Dale Porthouse,10354,2169,8 +631,Blaylak - Green Team,17971,123016,17 +632,Mrs. Restes,299,139926,17 +633,Kaminski,15267,1280,4 +634,Paul Lowell,33250,110378,3 +635,Extra (uncredited),2897,1406724,50 +636,Philip Christian,20213,27914,1 +637,Michael Darling (voice),10693,1079611,6 +638,Jose,23668,59743,9 +639,Chickie,1375,16666,12 +640,Capt. Herman J. Kohler,61934,4303,4 +641,Coach Sanders,20443,55271,4 +642,Airline Agent,469,6400,6 +643,Kamal,409,1606902,33 +644,Lambert,78285,121012,2 +645,Sgt. Hawthorne,10142,95796,9 +646,Caine 'Kaydee' Lawson,9516,57773,0 +647,Les,11397,67850,26 +648,Man in suit,11159,26854,51 +649,Captain Diehard,16417,147823,2 +650,Mr. Ray (voice),12,10,14 +651,Amrik,14587,1616920,9 +652,Woman at Awards Ceremony,705,121323,21 +653,Comedian,28973,1393340,20 +654,Bonnie (as Elva Leff),41760,136853,7 +655,"Reading, PA. TV Announcer",10400,31581,45 +656,Hank Mitchell,31947,50464,2 +657,,282919,26911,7 +658,Len Files,11313,19453,6 +659,Russian Commander,1995,69471,23 +660,Elspeth,5,3125,3 +661,Malik,11397,35596,15 +662,Juma,606,10656,12 +663,Translator,18317,17249,8 +664,Felicia,11374,1075005,14 +665,Olivia Lawrence,41963,39117,1 +666,Le Dancaïre,21193,1429989,7 +667,Lee Cooper,43997,3052,1 +668,Carol Brady,12606,56881,0 +669,Man (uncredited),34106,1422194,100 +670,Grover's Dad,28387,827,15 +671,Fifth Brother,53879,20904,11 +672,Care Worker,12454,145694,27 +673,Harris / Featured Player,31044,8591,21 +674,Commander Lyle Tiberius Rourke (voice),10865,16896,3 +675,Blossom (voice),59387,64948,0 +676,Billy,10611,98298,10 +677,Bobbi Campbell,2887,10825,20 +678,Leo Corrigan,17708,10430,5 +679,Danforth 'Buster' Keeton III,10657,22131,4 +680,Basketball Player,9894,134772,14 +681,Eric Stark,10391,17328,3 +682,Resident,3780,7456,38 +683,Norman,8869,1239281,17 +684,Vater Ripper,2640,13243,6 +685,Lou,49410,6451,12 +686,Sybil Wakely,52782,1064081,6 +687,Cop #5,3595,37205,27 +688,Mandingo,159727,1141557,5 +689,Chas Tenenbaum,9428,7399,2 +690,Roderick Craven,29056,29645,6 +691,Chobo,3780,110299,18 +692,Rafael,10696,1001769,7 +693,Mike Parker,8869,56153,2 +694,Man at bar (uncredited),6068,1609275,57 +695,Kevin Branson - TV Announcer #2,9563,1741408,45 +696,Corinne Maloney,9032,41087,5 +697,Jim,95627,1006136,12 +698,Colonel Tripp (uncredited),29376,34277,15 +699,Laura - Yellow Team,17971,200535,5 +700,Louis Skolnick,14052,62036,0 +701,Father Adam Guiteau,9945,40275,5 +702,Jeeter,18642,46418,7 +703,Smith or Jones,43089,129268,3 +704,Victor Anderson,35569,154830,12 +705,Party Guest (uncredited),15849,121257,12 +706,Chet,10207,1390847,11 +707,Cerulo,29355,13657,17 +708,John Lee Hooker,525,7207,18 +709,Stan Starkey,2608,19178,4 +710,Captain Burke,262,1555143,10 +711,Hortense Derry,887,14450,8 +712,Yeti,38006,1580388,11 +713,Whispering Wendy,38554,54800,8 +714,Isaak,2525,25792,21 +715,The Amazon,32628,140817,5 +716,Keithy George,9519,57795,2 +717,Union Cane,1375,1347338,16 +718,Airport Manager,11576,29579,36 +719,Marty,11397,1171948,49 +720,Clergyman,11202,120676,24 +721,The Prowler / Phone Voice,16938,49877,27 +722,Donna Nelson,31586,62054,14 +723,Godzilla,1678,1185640,23 +724,Mitsuo Katagiri,10643,66155,3 +725,Hinton,43002,26512,3 +726,Preservation Partier,8467,1853214,55 +727,Funeral Director,16235,80151,18 +728,Pilot,2140,15738,10 +729,Thug,1498,22108,16 +730,Cybill Shepherd,37718,1036,4 +731,(uncredited),70801,8494,15 +732,Wink Wilkinson,10776,7180,5 +733,Mary Lisbon,1443,17236,7 +734,Ota,25538,143037,2 +735,Horn's Capturer,5917,151370,57 +736,Mark Evans,9272,109,1 +737,Rygog / Lord Zedd,6499,27803,14 +738,Younger Gangster,10394,6162,0 +739,Mac,36489,34890,9 +740,Ballroom Dancer (uncredited),21734,1468755,20 +741,Francis Lungley,11120,216444,8 +742,Louise,10696,105881,6 +743,Ginecólogo,99,36283,16 +744,Schneider,22317,12888,9 +745,Sloan,9425,6945,15 +746,3rd Chance: Shredder of 'Will You Marry Me' Note (uncredited),32600,1429298,18 +747,Old Cowboy (uncredited),11536,974922,8 +748,Trick-or-Treat Child,9716,76241,36 +749,Harwent,46797,123209,4 +750,Nicole Maris,14429,78501,0 +751,Slater,655,6394,6 +752,Interrogation Cop,23730,1042,12 +753,New Dawn Kid,10391,141459,14 +754,'Jackie-O' Pascal,33344,7489,0 +755,Vegas Girl,1058,1426110,16 +756,Warden Barrot,5924,16030,10 +757,Lucinnius,46924,1241,10 +758,Jane,33135,25834,3 +759,Fruit Vendor (uncredited),238,1234848,60 +760,Mildred,17691,85846,17 +761,Barry,9427,1335635,10 +762,Polly Cronin,10379,19131,2 +763,Nobushige Oyamada,11953,1484287,15 +764,Bartender (uncredited),14,8215,41 +765,Rob Douglas,47816,55637,0 +766,Kate,25872,1232135,6 +767,Doug Rosselli,2034,1166,4 +768,,73642,585009,7 +769,Marie,38715,1004061,9 +770,Judge Buckle,31586,1903,5 +771,Debutante,6038,41547,9 +772,Paul - Waiter at Rick's (uncredited),289,931793,72 +773,Police Chief James Mitchell (uncredited),539,116135,20 +774,Woman at Party,22023,1577171,35 +775,Crispin,10708,52868,22 +776,Cynthia (voice),11704,1554694,7 +777,Italian Beauty,9462,99536,9 +778,Frank,15239,555073,14 +779,McKenna,9563,1741392,27 +780,Lynn Marie Faulkner,61563,2233,9 +781,Rhonda,17464,81897,4 +782,Priest,18,47547,115 +783,Gawayne,32872,16861,42 +784,Man (uncredited),34106,113491,98 +785,Mr. Favaloro,33364,110540,10 +786,Valentine Dussaut,110,1350,0 +787,Ruby Rhod Assistant,18,1600365,59 +788,Earl Pilcher Jr.,41852,3087,0 +789,Waiter at Inquirer Party (uncredited),15,1290863,118 +790,Norman Bates,539,7301,0 +791,Pete Jerzyck,10657,61167,13 +792,Dr. Comito,18736,89551,13 +793,Sidney Cochran,26686,3895,3 +794,Nora Shepherd,8844,10739,5 +795,Bernard,2750,42604,6 +796,David,2033,20903,6 +797,Older Cop,14295,1516291,20 +798,Detective Matt Burke,28466,90339,5 +799,Georgette Starke,2608,26483,3 +800,Crackhead,47816,51944,12 +801,Josh Martin,37718,11365,9 +802,Mr. Shackleford,4478,5950,3 +803,Fidel Vaillar,29076,10963,3 +804,Coco,3537,32385,1 +805,Commandant,5924,122007,19 +806,Kiklidze,8665,32204,18 +807,Clute Dumfries (uncredited),11697,89938,72 +808,Mr. Dalton,108312,13728,7 +809,Cesar Marzoni,9835,15183,8 +810,Kelly,11259,17782,7 +811,Mary Riggs,47886,100633,1 +812,Mary Foster,1959,20240,5 +813,Commentator #2 in Las Vegas,1374,1877407,17 +814,Platon Karataev,11706,11859,10 +815,Miss Poinsettia,19142,44995,6 +816,Disco Boy,27346,11161,5 +817,Adam,153141,155532,8 +818,Foot Soldier,1497,1456525,48 +819,Carol Gerber,11313,21027,3 +820,Monk,9296,53597,54 +821,Mutt Cutts Boss,8467,1853183,41 +822,Evangeline Chutney,21801,6473,6 +823,2nd Soldier,124963,138643,12 +824,Bonnie Beechum,10354,64908,2 +825,Recepcionista do Motel,598,54998,23 +826,Club VIP,11535,1674908,37 +827,Capt. Gregori Orloff,31527,2927,5 +828,Fallon,6,5724,2 +829,Villager of Tullymore,10162,1609654,30 +830,Caiaphas,2428,2641,10 +831,Jamie,10708,18050,18 +832,Mr. Skeffington,11899,41220,11 +833,Fugui's mother,31439,1789269,12 +834,Hardware Store Customer (uncredited),539,114962,28 +835,Gabriel,78568,8789,0 +836,Gen. Francini,30379,22383,5 +837,Antoine Tyler,36807,66554,1 +838,Marie Grady,10276,159118,16 +839,Maurice O'Toole,10162,1609637,9 +840,Col. Downey,217802,98001,4 +841,Richard Ian Blaney,573,8223,0 +842,Elk Woman,35200,25173,1 +843,Conspirator (uncredited),289,120702,76 +844,Dart Player,814,939,6 +845,Captain James T. Kirk,172,1748,0 +846,Grady Kilgore,1633,96228,10 +847,Kevin,24584,1781140,6 +848,Jöns,490,6649,1 +849,Nelson,30308,88778,11 +850,Mrs. Eleanor Little,10137,16935,1 +851,,422,1485030,17 +852,Pilot / Strapping Young Man,522,188377,60 +853,Harry,47943,16972,1 +854,Capt. Stewart,45827,3798,2 +855,Female Tourist,9438,126223,13 +856,Ho Chu,38955,552084,10 +857,Fancy Bates,23805,117081,4 +858,"Garbage Man #2 (segment ""Epilogue"")",16281,11161,18 +859,Secretaire Banque de la Trinité,2110,42718,20 +860,Ray Gun Geek #2,15144,1717649,23 +861,Fitzie,19760,5170,8 +862,Bob Steegerson,14295,4602,3 +863,Jocko Wilson,245268,10921,0 +864,Mr Slaughter,88818,45587,8 +865,Police Officer,12158,6951,7 +866,Red Team #39 - Toba Maheota,11535,1674892,20 +867,2nd Phone Booth Youth,11654,5293,15 +868,Vivian Hedgeworth,19731,75355,6 +869,CSP Y K Chan,11134,70591,15 +870,Mrs. Burden,25430,89659,8 +871,Magneto's Mother,36657,115855,12 +872,Mr. Sleep Filming Double,2666,1860582,16 +873,The Electrician,549,5293,11 +874,Marksman,11008,1214427,19 +875,Ring Announcer,30547,1507185,44 +876,Pa Peabody,105,97718,19 +877,Matthew,2428,7505,15 +878,Dickie Moore,29343,97955,10 +879,CPR Kid,165,1214023,48 +880,Alexander Andrews,3078,30156,2 +881,Backer's Wife,522,58354,37 +882,William Cole,2669,1369,5 +883,Ad'har Ru'afo,200,1164,8 +884,Line Groberg,34582,63763,1 +885,Rental House Manager,522,3218,51 +886,Man in Front of Grandma,26378,139179,67 +887,Mrs. Musgrove,17015,45455,8 +888,Le brigadier qui vient arrêter Joseph,36245,37114,20 +889,Lord Lovat,9289,4353,46 +890,Mahina,10586,143476,8 +891,Joachim Krippo,339428,45275,1 +892,Isabelle Alvarado (as Sophia Adella Hernandez),121940,1075385,0 +893,Townsman (uncredited),11697,1547827,38 +894,Mangalore Kino,18,33186,65 +895,Dewhurst,43143,954853,9 +896,Gent Shelton,43832,103671,8 +897,Trooper,24831,38162,9 +898,Monsieur Duke,23967,21731,10 +899,Mother,525,122116,34 +900,Maitre D',31044,1729782,28 +901,Theresa,23668,76064,6 +902,Linda Pratman,92769,4761,0 +903,Dr. John Banning,29239,33230,2 +904,VIP,3682,10584,21 +905,Porter,39176,8399,16 +906,Chief Engineer,8072,38899,7 +907,Cheryl,764,11462,1 +908,Bicycle Messenger,40952,1880602,27 +909,Idris Abraham,38554,24368,6 +910,Mrs. McCress,14612,1234110,10 +911,Thumbelina (voice),28032,63978,0 +912,Baron Ullmann,29471,1092610,10 +913,Father Dineen,21468,82835,9 +914,Front Office Clerk,966,83453,24 +915,A Drunk (uncredited),269,1513484,18 +916,Tom Hagen,238,3087,4 +917,Josef 'Uncle Joe' Stalin,9977,1164,2 +918,Townsman (uncredited),11697,1208018,24 +919,Car Salesman,838,1804407,14 +920,Aubrey Hale Clayton,85837,160411,7 +921,Dr. Hill,805,28164,11 +922,"Philippe Sinclair, Resort Manager",6068,1060194,9 +923,Aben,2428,24826,29 +924,Teacher,31586,102200,47 +925,Red Team #16 - U Chow,11535,1224673,18 +926,Milk Maid,16176,146706,27 +927,Margaret,5,3141,4 +928,Russell Hammond,786,8289,1 +929,Freedonia's Secretary. of War #1 (uncredited),3063,13361,29 +930,Dominique Bredoteau jeune,194,585017,30 +931,Reporter,9532,1247384,27 +932,Villager of Tullymore,10162,1609673,50 +933,Miss Poole,11257,1858658,20 +934,Samurai,11712,30469,11 +935,Mother,20213,37870,4 +936,Man at First Fight with Tophat,26378,133277,51 +937,The King,30584,12726,2 +938,Janie,10379,4,4 +939,Officer Thomas Burke,9358,57428,2 +940,Moody,9585,658,1 +941,Liz,13555,127993,7 +942,Alan,9427,20246,11 +943,Frank Barnes,954,3211,8 +944,Gen. Omar N. Bradley,11202,9857,1 +945,Dr. Green,2144,21986,5 +946,Sir Walter Elliot,17015,13328,14 +947,Dean Sara Gaskell,11004,3910,2 +948,Tiffany Whitfield,17770,104998,6 +949,(uncredited),80713,84773,14 +950,Agent Oscar Wallace,117,1270,2 +951,Flo Healy,11077,1219,5 +952,Mark's Brother,14242,1502567,5 +953,Hard-Faced Man,14522,1229244,18 +954,pošťák Mládek,18939,133558,7 +955,Billy Kramer,12102,71241,3 +956,Don Vincent 'Vinnie' Mancini-Corleone,242,1271,2 +957,Homeless Man #1,9602,1208,10 +958,Stavros Niotes,31921,1004549,8 +959,Ellen,19157,936813,3 +960,Podling (voice),11639,153174,19 +961,Irwin,54845,10000,4 +962,Dancer,26299,8437,11 +963,Ruth,9819,54122,5 +964,Dancaire,43455,55821,4 +965,"Jordy Verrill (segment ""The Lonesome Death Of Jordy Verrill"")",16281,3027,9 +966,Doctor,109479,1379424,4 +967,Vorb (voice),18890,14991,1 +968,Lisa,11234,43976,2 +969,Head Laborer,1995,1013950,13 +970,Night Porter,88818,90768,16 +971,Jane,11618,12519,5 +972,Jean-Luc,60608,48576,1 +973,Cafe Patron,76,1265419,20 +974,Waitress,12186,62595,12 +975,Louis,24086,2223,1 +976,Lenny Koufax,9032,46946,12 +977,Minister,580,158134,22 +978,Stella's Secretary,40866,1192920,11 +979,Japanese Hostess,18,1467173,108 +980,Billy,18,8395,5 +981,Davey Elk,15263,12295,10 +982,Marine,10866,19487,23 +983,Lieutenant Meyerson,11859,4443,3 +984,Laura,220976,159970,13 +985,Coffman,38766,9208,6 +986,Gerry,1956,1892,1 +987,Scott Fuller,755,11158,4 +988,Trish O`Day,2085,21352,1 +989,Chess Player,814,14468,8 +990,Mehmet Salih,52556,96975,2 +991,Lux Lisbon,1443,205,2 +992,Sylk,10696,58780,4 +993,Team Manager,1924,1681413,31 +994,,56235,223823,14 +995,Cop in Gem Store Elevator,11001,1088201,12 +996,Jessica,24584,1618572,3 +997,Scott (uncredited),578,1584544,28 +998,Carl,27265,11885,5 +999,Transvestite,24739,74273,12 +1000,Zach,11234,104907,4 +1001,Sydney,17711,166896,15 +1002,Prince,16176,28906,14 +1003,Agent Hawthorne,9827,12410,15 +1004,Commando,11902,1600361,30 +1005,Adam Maitland,4011,7447,1 +1006,Russian Official,14811,649,18 +1007,Susan,53685,64733,5 +1008,Don Victor Stracci (uncredited),238,1209294,40 +1009,Kristen Barrett,53685,56356,6 +1010,D.I. O'Fetiger,2084,28477,10 +1011,Takashi Mochizuki,17962,82540,0 +1012,Bridget's Mum,634,9138,3 +1013,Maritza Petrovich,17339,10458,2 +1014,Oak Room Waiter,9475,1800172,29 +1015,Wilson,24739,34,4 +1016,Juggler at the fair,31618,16327,16 +1017,Gideon 'Gid' Ferguson,21801,52,1 +1018,Samantha,12454,39658,4 +1019,Pvt. Martin Bienstock,10652,12965,11 +1020,Mifundo,46094,134769,7 +1021,Mike,44414,24435,8 +1022,,24005,126997,25 +1023,Amanda 'Mandy' Baker,278939,23764,1 +1024,Ann Darrow,244,3242,1 +1025,Minister,2613,1800119,11 +1026,Sergeant Major Reg Drummond,83562,1821,2 +1027,Jim Gordon,29372,4165,0 +1028,Girl #1,10173,166956,19 +1029,"Bergougnas, le brocanteur",12716,35881,10 +1030,Darryl Witherspoon,12538,9562,0 +1031,Great Ahmed Kahn,10774,66713,9 +1032,N'Dugo,10603,61307,10 +1033,Stefan,47493,228,1 +1034,Niania/Sąsiadka/Dziwna kobieta,1396,8480,8 +1035,Dee Dee Taylor,29825,3391,6 +1036,Jenny,124057,41743,2 +1037,Sgt. Major Tambul,18783,1276503,4 +1038,Extra (uncredited),2897,117035,151 +1039,Fernie,42136,53720,4 +1040,Robert McKee,2757,1248,6 +1041,Black John,22267,8767,5 +1042,Elliot Carver,714,378,1 +1043,Carmine,44233,16505,3 +1044,The Moyle,278621,7420,8 +1045,Sorority Girl with Hairbrush,15762,101873,15 +1046,Spanish Townsman (uncredited),2897,1331770,305 +1047,Roy's Ski Buddy #1,13667,1073811,14 +1048,Mannes farfar,8816,1778141,14 +1049,Pickpocketed Englishman (uncredited),289,1039630,82 +1050,James Moreland,11777,11275,4 +1051,Private Herbert Hatcher,10142,4764,3 +1052,Takebayashi,11712,96552,5 +1053,Dr. Noboru Yasumoto,3780,33764,1 +1054,Grace Miller,21060,87046,1 +1055,Extra (uncredited),2897,975597,102 +1056,Joe Dice,29444,22133,6 +1057,Street Stranger,703,3665,22 +1058,Strongarm Man (uncredited),34106,96724,137 +1059,Abdul (uncredited),289,85943,79 +1060,FBI Dep. Asst. Dir. Otis Brown,10750,59945,7 +1061,Lance,11103,4138,3 +1062,"Grank, Demon Leader",10622,1426137,8 +1063,Mexican Waiter (uncredited),678,1204286,20 +1064,Bernard Cooper,9776,65827,8 +1065,Hernán,26165,969847,11 +1066,Samantha Thomas,11361,1414791,6 +1067,Raven,35200,19448,6 +1068,Jimmy,13369,1983,3 +1069,Maitre d',17170,73513,18 +1070,Donald Patterson,11517,9287,3 +1071,Ed Munn,47329,1230,1 +1072,Kitty,10162,1609640,14 +1073,Takayama's son,13889,111691,8 +1074,Bob Morgan,9438,18461,3 +1075,Anna Trejo,949,181343,25 +1076,Symposium Speaker,55420,549355,9 +1077,,124633,18850,7 +1078,General's Chauffeur,2721,36022,17 +1079,Judge Tompkins,4916,13314,2 +1080,Desk Clerk,13005,112253,11 +1081,Coyote Maria's Group,22023,1577178,41 +1082,Alan,1647,28868,32 +1083,Mr. Faber,33364,4119,6 +1084,Lloyd Barnes,17057,81182,8 +1085,Buffalo Cow Head,14676,3362,1 +1086,Screaming Maid,3035,1486718,11 +1087,Dupont,7299,2464,3 +1088,Dylan Pickles (voice),14444,15762,3 +1089,Lt. Joe Clemons,37305,8487,0 +1090,Pizza Shop Boy,43997,1088195,11 +1091,Felicia,1817,45245,5 +1092,Bikini Girl,8467,1596619,32 +1093,Alumna,28893,75349,1 +1094,Himself,9403,13604,45 +1095,Pepper Lewis,19176,57755,0 +1096,Bartender,4338,96922,26 +1097,Caleb Trask,220,2749,0 +1098,Party Guest #3,9296,1332245,73 +1099,Waiter,1859,1176507,37 +1100,Keoni,36943,214613,2 +1101,Soldier (uncredited),220,1234847,52 +1102,Hollingshead,12684,102889,6 +1103,Jeffrey Smith,31586,7089,32 +1104,Tim 'Beltzer' Lewis,664,5010,9 +1105,DJ,7514,52830,17 +1106,Sarah 'Sally' Dedham,15875,78898,7 +1107,Marino's Gang Member,20307,3714,16 +1108,Comtesse Hochberg,12632,10257,3 +1109,Moritz,11235,116123,4 +1110,Thronfolger,29471,12647,2 +1111,Lady in the Radiator,985,14798,5 +1112,Opa Krippo,339428,1465293,3 +1113,Statehood Audience Member (uncredited),11697,34187,53 +1114,Dr. James Kennedy,1959,1327,2 +1115,Le rédacteur en chef du journal (uncredited),2721,1125195,26 +1116,Lloyd Chasseur,10872,1979,2 +1117,NORAD Colonel,817,25711,13 +1118,Guard,12764,85921,11 +1119,(uncredited),29263,1077530,20 +1120,Bielke,14811,948428,11 +1121,Dude,76411,55271,11 +1122,Vittorio,145925,1481099,22 +1123,Arnie Grady,23967,36637,4 +1124,Mate,1924,1049237,88 +1125,Nicolai,8358,55436,7 +1126,Reverend George,12122,2,5 +1127,,78231,197126,5 +1128,George,217802,80625,0 +1129,Himself (also archive footage),8672,1101332,7 +1130,Lucie Aubrac,52366,10500,0 +1131,Tiny Guzman,19348,52957,4 +1132,Mr. Chris (uncredited),3309,30272,52 +1133,Blonde Girl,46989,236054,12 +1134,Janeway,10518,21416,3 +1135,Plane passenger,39462,134264,16 +1136,Charles Parker,43997,16662,4 +1137,Deloris,8336,38581,2 +1138,North Compton Cheerleader,11397,235848,64 +1139,Toby,10543,65590,6 +1140,Avi,4012,1192378,14 +1141,Eddie,11521,18688,3 +1142,Major General Colt,11589,26512,3 +1143,John Austin,28295,78793,7 +1144,Auntie Em,630,9073,8 +1145,John Morgan,14676,194,0 +1146,Nanny (uncredited),28430,1296248,18 +1147,Donnie Darko,141,131,0 +1148,Dr. Mnesyne,39875,4093,4 +1149,Audrey Rocio Ramirez (voice),10865,49818,8 +1150,W.E. Simmons,13681,78789,9 +1151,Drunk (uncredited),238,1237372,54 +1152,Phil Deedle,40688,8167,0 +1153,Montgomery,3537,32393,9 +1154,Jock,15144,243036,29 +1155,Sheriff Henault,30352,16166,0 +1156,Bubbles (voice),59387,15762,1 +1157,Clarissa,6,105988,12 +1158,Danny,28387,5656,13 +1159,Matt MacDonald,6644,39770,14 +1160,Duke Guerera,27380,14731,5 +1161,Marvin,9819,7668,4 +1162,Charlene Tutt,17692,1296394,44 +1163,Patcha (voice),11688,1230,2 +1164,Large Man,9613,176198,15 +1165,Alexei Vostrikov,8665,3,0 +1166,Jock Blair,21828,1347353,4 +1167,Winston Briggers,80350,14852,4 +1168,Cécile,12454,72309,6 +1169,Sally Mercer,22213,169769,12 +1170,France Robert,78281,81821,0 +1171,Mia,27526,56152,10 +1172,Don José,21193,77886,3 +1173,Howard's Boss,215373,155547,12 +1174,Paul Grahame,43438,67616,1 +1175,Himself (voice),55420,1301641,3 +1176,Audrey James,2608,26482,6 +1177,Mrs. Bookman,9540,1432458,9 +1178,Valerie Lewton,9532,58392,5 +1179,Daniel Cleaver,634,3291,2 +1180,Jessica,2105,10871,9 +1181,Gladys,573,40966,10 +1182,Pamela Finklestein,11959,53122,4 +1183,Danny,14293,19975,3 +1184,Mr. Weaver (uncredited),3092,119748,20 +1185,Hideto Ogata,1678,18615,0 +1186,Father Francisco,124963,21708,6 +1187,Vince,1637,43010,29 +1188,Logan / Wolverine,36657,6968,1 +1189,Archie Sigmond,4133,34849,25 +1190,Vera Marcal,3063,30015,5 +1191,Donna,11442,159336,9 +1192,Willie Beamen,9563,134,4 +1193,Louise Cockersham,10400,168638,19 +1194,Russian Pilot,1369,1814427,18 +1195,Marci Greenbaum,796,1234,11 +1196,Colonel General Alfred Jodl,11202,18964,15 +1197,Science Teacher,601,9983,10 +1198,Helen Grosvenor / Princess Anck-es-en-Amon,15849,78828,1 +1199,Porter,215373,163646,20 +1200,Restaurant Patron (uncredited),3309,121323,34 +1201,Aniyaku (voice),129,544088,12 +1202,Teller,11185,80148,24 +1203,,12481,1624473,10 +1204,Albert Parkis,78256,11859,2 +1205,Lance Boyle - 'See You Next Wednesday' Cast,814,101918,40 +1206,Lady in Waiting to the Queen,16176,1733575,19 +1207,Louis Bamberger,11777,1466,9 +1208,Megan Halsey,1694,27995,2 +1209,Bowers' Handler #2,30547,151630,42 +1210,Danny Mitchell,43079,86044,0 +1211,Drunk,73116,8399,10 +1212,Thug #4,31044,91241,53 +1213,N.J.,25538,143036,0 +1214,Janet,703,1547026,36 +1215,Jay,13369,96322,8 +1216,Boxing Fan (uncredited),1578,1095035,38 +1217,Student on street,24254,91461,49 +1218,Himself,26149,166002,15 +1219,John Pierce,15592,11512,2 +1220,Spaceman (as Terrence DaShon Howard),29649,18288,3 +1221,Candy Kirkendall,21118,6885,1 +1222,Annie,93350,40980,17 +1223,Véra,78568,222686,6 +1224,,10643,20333,14 +1225,Leo Silver,31044,13286,9 +1226,Lidia Joanne Simmons,19855,78717,3 +1227,General Munro,18,591,6 +1228,Kindley,37305,170567,16 +1229,Molly,54405,1597387,9 +1230,Mark,123757,57880,1 +1231,Mike Engelberg,19050,1416109,13 +1232,Alec Stewart,12236,40009,2 +1233,Old Bill,4011,34537,16 +1234,Older Cop,11298,103069,19 +1235,Chicolini,3063,10799,2 +1236,Admiral Hammond,17889,20368,8 +1237,Guido Anselmi,422,5676,0 +1238,Man in Projection Room (uncredited),15,109724,89 +1239,Police Chief,16235,80148,16 +1240,Ruby the Waitress,4147,56563,18 +1241,Peter,28345,30219,8 +1242,Vic Munoz,786,449,13 +1243,Loco,49688,1655281,4 +1244,Man #1,26958,62019,10 +1245,"Apocalypse, Inc. Executive",28169,64856,12 +1246,Police Doctor,12506,91663,14 +1247,Juniper,29048,14016,4 +1248,Aurora (voice),11535,337009,100 +1249,Caroline,15556,93015,8 +1250,Otto,623,8945,2 +1251,Cynthia Kruger,549,68890,9 +1252,Patient - VA Hospital,2604,52794,49 +1253,Trigger (voice),11886,141693,5 +1254,Mother (voice),28032,148115,2 +1255,Chuza,2428,2649,36 +1256,Ursula,39939,56595,8 +1257,Ah Shan,12481,1361023,8 +1258,Police Commissioner Frank Starkey,32059,1037,3 +1259,Bank Robber Senbayashi,39462,108026,2 +1260,Vi,16550,11826,1 +1261,Paterson Policeman,10400,65808,32 +1262,Cullen Chandler,12618,9979,9 +1263,Barnes,14794,198900,9 +1264,Galadriel,120,112,2 +1265,Harrison,13965,6197,2 +1266,Official at Parade (uncredited),220,1216356,61 +1267,Adrian LeDuc,5333,5472,1 +1268,Russian Government Official,1374,16647,11 +1269,VIP,3682,33663,22 +1270,Capt. Nelson,12311,592406,8 +1271,Nathalie Lake,75,520,6 +1272,Katie Jordan,12220,1160,1 +1273,Charles Musgrove,17015,57461,9 +1274,Talley,27681,31818,10 +1275,Gordon Lachance (Adult),235,3037,5 +1276,Gus Cantrell,9771,2154,0 +1277,Ben Stevens,36797,25544,5 +1278,Gregor,99008,8727,6 +1279,Laughing Woman,11159,53367,54 +1280,Convict Football Player,20704,1215054,9 +1281,Burt,28047,9659,17 +1282,Amish Dad,31586,7674,12 +1283,Ebby Calvin 'Nuke' LaLoosh,287,504,2 +1284,Druggist,476,1391035,8 +1285,Werner,46986,1535176,24 +1286,Chief Troutman,10783,5176,9 +1287,Jack R. Ramsay,9507,15112,0 +1288,Meowrice (voice),32328,16417,3 +1289,Marsha Quist,11298,98610,7 +1290,Federal Team,169,42141,23 +1291,Website Fan,8870,1281449,6 +1292,Leo McCarthy,16820,6197,1 +1293,Talbot,10047,2355,14 +1294,Cop Cousin,117,1886575,19 +1295,Chessy,9820,4494,4 +1296,Hold-up Man,28940,1851410,20 +1297,George Little,10137,67778,3 +1298,Claire,28165,1073042,2 +1299,Martha Mears,2984,6929,2 +1300,Ed,20438,33659,2 +1301,Minouche,269,1513483,14 +1302,Mr. White,9591,31,2 +1303,Hips,44800,7004,1 +1304,Grandfather,11902,226302,8 +1305,Beef,22023,123016,9 +1306,"Aughra, A Keeper Of Secrets / Chamberlain",11639,7908,2 +1307,Rufus,11593,1183437,20 +1308,Woman in Bookstore,11415,13924,13 +1309,Noreen,26889,20835,9 +1310,Aogaeru (voice),129,19592,8 +1311,Waitress,621,8905,15 +1312,Hunter,9028,1086949,30 +1313,Nathanael,2428,3384,46 +1314,Extra (uncredited),2897,337275,100 +1315,Yuri Kotlev,11535,28871,8 +1316,Camille Shafer,18133,56128,4 +1317,Ishibashi,2110,554597,12 +1318,(uncredited),5998,47305,26 +1319,Cindy,23069,1172555,3 +1320,Kate McCallister,772,11514,2 +1321,Persefina,47889,1607816,6 +1322,Conservative Man,522,162074,35 +1323,Belinda,36094,155890,10 +1324,Annie O'Shea,10162,58068,2 +1325,Richard 'Richie' Wickham,114719,33533,6 +1326,Man #2 - Arthur's Bar,2604,42308,60 +1327,Piper Castleton,41469,11318,2 +1328,Mr. Jones,2625,1205,0 +1329,Concierge,2140,1175146,15 +1330,Ed,32059,4566,6 +1331,Keith Harding (voice),55420,187189,14 +1332,Egg/Polly,1811,33677,8 +1333,Eric Lensherr / Magneto,36658,1327,2 +1334,Minister,14295,133047,17 +1335,Frank,2291,23628,7 +1336,John Herod,12106,193,1 +1337,One of the bad monks,12780,1346927,10 +1338,Rachel Kessler,814,1660000,18 +1339,David McGowan,12122,34199,10 +1340,Simon Peter,2428,24819,22 +1341,Nurse St. Cloud,18935,136105,1 +1342,Michael Patrick 'Guns' Donovan,15875,4165,0 +1343,Lewis Dover,2662,1581375,25 +1344,Tin Market Musician,2613,1800121,13 +1345,Construction Clerk,949,4790,45 +1346,Chauffeur,262,1402314,23 +1347,Marshall,12106,33,10 +1348,Himself,4478,15193,40 +1349,Jo Anne Baker,16249,8231,2 +1350,Paul Sycamore,34106,17756,7 +1351,Madame Zena,13555,19335,16 +1352,Fitzsimmons,11415,1391496,10 +1353,Jimmy,28176,10134,4 +1354,Leon,28732,9045,2 +1355,The Chain-Smoking Taxi Driver,47144,36651,6 +1356,Dorothy,15940,42571,1 +1357,Mrs. Baskin,2280,2167,7 +1358,Doorman (uncredited),678,101882,24 +1359,Phillip Green,524,7166,6 +1360,Addison DeWitt,705,3361,2 +1361,Avigdor,10269,25503,1 +1362,Tunnel Guide,17692,1296372,12 +1363,Brenda,21118,955,5 +1364,God,172,2081,12 +1365,Ling (singing voice),10674,129889,10 +1366,Captain Frederick Wentworth,17015,8785,1 +1367,Jim Willer,10862,3977,2 +1368,Mountie Captain,117,3217,14 +1369,Steer Roping Sequence,5917,1894178,65 +1370,Commissaire Ledru,26030,1656,5 +1371,Mattson,11186,19974,8 +1372,Boris the Goose (voice),21032,382,1 +1373,Elevator Passenger #6,1637,1397393,55 +1374,Student (uncredited),220,2783,37 +1375,Dawn Wiener,11446,33656,0 +1376,Mrs. Hazel Johnson,623,1897695,24 +1377,Maurice,9602,44795,6 +1378,Klench,95627,64825,7 +1379,Archbishop,229,2941,16 +1380,Buckley,108312,33533,11 +1381,Tragedian,18971,58760,14 +1382,Jo's Boys 5,54405,1752861,21 +1383,Barry 'Virus' Kremmer,27993,99354,13 +1384,Fintan O'Donnell,54405,34715,6 +1385,Vice President,31586,1179087,41 +1386,3rd Man - Gangster,10889,233121,7 +1387,Judge,623,10746,8 +1388,The Publisher,26422,21663,1 +1389,Patricia Franchini,269,3830,1 +1390,Acting Lieutenant Sylvia Morgan,83562,30427,3 +1391,Sam Paryas,25862,79247,7 +1392,Silvio Coya,12618,101418,16 +1393,Ellie Graham,4806,12931,3 +1394,Dylan Hall,24936,1458758,7 +1395,,14550,118937,6 +1396,Clint,11374,38572,19 +1397,Anna,11216,1014911,7 +1398,D.C. Reporter,31586,162817,53 +1399,Leonora Clyde,24452,114529,12 +1400,Hunter,9028,1757595,34 +1401,Captain Nately,10364,64928,3 +1402,Mitch Gilliam,9776,1897,1 +1403,Mrs. Wilkinson,9613,29791,3 +1404,Jogging Victim,5425,1206770,5 +1405,Rudy,15144,55554,26 +1406,Louise Draper,753,11143,7 +1407,Camper,11880,1094092,8 +1408,King's Advisor,197,26094,33 +1409,Mrs. Chavez,32275,125483,10 +1410,Mantou,31439,1789274,15 +1411,Mia Morgan,16162,32646,6 +1412,Bob Younger,13496,78500,8 +1413,Men's Store Salesman,2898,19208,26 +1414,Detective Landis,15762,6771,4 +1415,Removal Man 1,16235,27513,11 +1416,Tanya Mousekewitz,4978,40350,4 +1417,Alisha,61563,141384,6 +1418,Valdez,21242,13784,0 +1419,Exterminator,8844,51551,10 +1420,Nikki,70489,10824,2 +1421,la patiente,60608,582012,9 +1422,Sir Edmund William Godfrey / Young Pharmacy Kid,334,60846,23 +1423,Col. Glass,10890,119776,9 +1424,Konstantin,8665,55581,8 +1425,Moodoo der Fährtensucher,9555,53023,4 +1426,Student (uncredited),220,1234573,36 +1427,Bugs Bunny/Elmer Fudd (voice),2300,23679,2 +1428,Matt,21626,12978,1 +1429,The Choreographer,2887,1205,4 +1430,Greg,11374,16183,33 +1431,"Dr. Kyojio Niide (""Red Beard"")",3780,7450,0 +1432,Miss Nimvel,11521,1989,8 +1433,Raleigh St. Clair,9428,1532,6 +1434,Bob Stuart,415072,121238,6 +1435,Suburban Family,88224,1380393,5 +1436,Skeet Mecklenburger,32227,1420746,9 +1437,Charlene,24086,7673,2 +1438,Phil Vittimizzare,2075,149214,8 +1439,Avery Hodge,152023,21163,8 +1440,Judge Slade,43828,17756,10 +1441,Kevin Donaldson,13766,15455,5 +1442,Kaltag (voice),21032,52699,7 +1443,Kirby's Office Aide (uncredited),34106,34086,47 +1444,Jessie,11524,4514,1 +1445,Agent,10724,1794711,45 +1446,Sammy Bodeen,41164,1056194,3 +1447,Rory Blanes,24405,1219226,4 +1448,Don Remigio,5155,42410,5 +1449,Dr. Meredith,14370,99829,14 +1450,Rocco Lampone (uncredited),238,1213795,55 +1451,Customer at Department Store,10603,106243,48 +1452,Sandra Waters,13962,18261,3 +1453,Carter,17133,5587,1 +1454,Mr. Fredrick Little,10137,41419,2 +1455,Weird Janitor,9877,2320,8 +1456,Additional ADR Voice,6038,1525270,46 +1457,Paints His Shirt Red,11943,84240,4 +1458,Luisa Anselmi,422,5682,2 +1459,Dr. Muller,15849,1550,4 +1460,Georgia Elkans,20443,139,2 +1461,Commune Guitarist,58985,158020,26 +1462,Luther 'Shark' Lavay,9563,185731,8 +1463,Sam Wallace,33660,156432,1 +1464,Will,52735,11486,8 +1465,Andre Krimm,20704,57119,4 +1466,Informer,5922,1241038,13 +1467,Haskell - Reporter at First Fight,26378,1030251,34 +1468,Jake,765,11750,2 +1469,Portuguese Laborer (uncredited),15,1469574,148 +1470,Extra (uncredited),2897,1600501,74 +1471,Karlův kolega,18939,1391518,20 +1472,Grandma,4806,1345474,15 +1473,Michael,601,9978,2 +1474,Victor Gaddes,9079,55152,1 +1475,Jesse Lujack,1058,1205,0 +1476,Professor Spatz,15170,5129,4 +1477,Mrs. Gerber,11313,77013,8 +1478,Wing Kong Hatchet Man,6978,6954,35 +1479,Martin Hannett,2750,1333,5 +1480,Gurganov - Neighbor Spy,1859,116307,41 +1481,Mom Jones,31586,1179089,43 +1482,Vulcan High Priestess,157,3362,15 +1483,Ollie Dee,25898,78057,1 +1484,observatören,29224,1092640,13 +1485,Boy in town,8816,96935,8 +1486,,20645,1201024,24 +1487,Cody,10391,65362,2 +1488,Terl,5491,8891,0 +1489,Princess Charlotte,10735,15736,10 +1490,Snowbell (voice),10137,78729,4 +1491,Al,493,6775,9 +1492,Morgue Attendant,11298,102445,17 +1493,Scorpion (Voice),9312,57256,10 +1494,Fender Tremolo,10134,63934,2 +1495,Bill Dayton,638,2048,19 +1496,Sara,15239,555065,1 +1497,"Mary, elevator victim",47886,1040018,12 +1498,Sales Girl,525,122105,26 +1499,Madalen (als Clara Badiola),2441,24978,4 +1500,Himself,12237,1304260,5 +1501,TV Boss,788,548090,24 +1502,Samuel Alan Parrish / Van Pelt,8844,8537,1 +1503,Mike Adams,39435,9866,10 +1504,Bayonet Melville,6440,19511,10 +1505,Lisa Coleman,91217,8534,4 +1506,Man in Feed Store,5917,1894157,42 +1507,Edgar Emigholz,11101,554449,8 +1508,Mr. Hammond,14429,31712,7 +1509,Juice,32284,1352286,5 +1510,Spencer,41166,8399,8 +1511,Dr. Nichols,13685,42006,7 +1512,Red Cloud,35200,1032546,11 +1513,Sandra Carpenter,30308,40174,1 +1514,Oncle Jules,12716,38389,4 +1515,,18919,1320287,13 +1516,Young Sammy Prescott,14295,1257389,15 +1517,Woman Buying Coffee,32331,1377052,9 +1518,Ericson,1369,56117,10 +1519,Larry,13505,26457,4 +1520,Indian Healer,11980,1206614,7 +1521,Dancer,11397,29216,70 +1522,Lomper's Mum,9427,1356539,19 +1523,Shauna,9079,88186,8 +1524,1st Elder,1924,12726,7 +1525,George Jung,4133,85,0 +1526,Laundromat Gossip,1377,7210,14 +1527,Robert Marsh,10534,153862,6 +1528,Kitty Baxter,1574,140,16 +1529,Makihara Masakichi,34326,99247,2 +1530,Valet,522,545,40 +1531,Harold,2033,20901,4 +1532,First Gravedigger,10549,7904,16 +1533,Stannie Dum,25898,89670,0 +1534,Joe Stephanos,678,10164,7 +1535,Extra (uncredited),539,117673,16 +1536,Blanket,178,1073837,10 +1537,Mr. Purcell,12311,1322001,17 +1538,Dancer (uncredited),15,1468846,102 +1539,Patsy,482,16647,13 +1540,Major Colin Thorn,9099,14104,2 +1541,Marshal Dana,4993,19111,5 +1542,Arab FBI Agent,16314,72446,17 +1543,Young Pilot #2,5551,65717,13 +1544,Charlie Anderson,21027,854,0 +1545,Tyler,30946,5694,2 +1546,Orson Welles,32274,2464,11 +1547,Parsons,9314,7053,4 +1548,Tonto,13346,112301,8 +1549,Sparring Partner,30547,1507181,38 +1550,Mary,601,62001,3 +1551,Gavin Blair as Young Man,99351,13998,18 +1552,Turley (prosecutor),45928,385,2 +1553,Senator Bob Rumson,9087,3037,8 +1554,Charlie,93350,12833,1 +1555,Princess Sarah,37108,204,4 +1556,Tommy,15310,161159,12 +1557,Jo's Boys 1,54405,188452,17 +1558,Bez,2750,194863,19 +1559,Policeman (uncredited),34106,100945,41 +1560,Jack Traven,1637,6384,0 +1561,Detective Downie,9519,57799,3 +1562,Wolf (voice),9325,24826,11 +1563,Man in Barber Shop (uncredited),33015,10530,6 +1564,Marguerite Duras,284096,14812,1 +1565,Grace Moosup,6440,122231,9 +1566,Jessie Chadwick,17465,47882,1 +1567,Dixie,30924,107314,12 +1568,,201724,1004,1 +1569,Stefan,11859,106066,11 +1570,Stella Roche,42149,34535,2 +1571,Stewardess,18,1588721,22 +1572,Ernest Dalby,21148,10560,9 +1573,Mr. Whitaker,11374,3026,6 +1574,Amelia,49963,2229,0 +1575,Ziggy,38509,3072,4 +1576,Goldie Wilson III (uncredited),165,84494,53 +1577,Estelle Whittier,9079,10559,3 +1578,Wart (voice),9078,1287646,9 +1579,Tionne,12888,104780,4 +1580,Buddy Amaral,10862,880,0 +1581,Bradley Brinkman,32227,78384,1 +1582,Charlie Ohnhouse,5917,1894160,45 +1583,Cemetery Caretaker,4338,2372,2 +1584,Rory Schultebrand,21629,14065,2 +1585,Pink's Wife,12104,71249,2 +1586,Sir Allan Miles,9977,58100,15 +1587,Waitress (uncredited),3309,89725,18 +1588,Saga,8816,231318,4 +1589,Brigadier Maugin,11876,146720,18 +1590,Rabbit,39939,56252,7 +1591,Fritz,17691,13821,18 +1592,Danny Vermin,16806,80868,4 +1593,Gilbert of Glockenspur,8840,4935,2 +1594,Inspector's Assistant (uncredited),15849,96060,13 +1595,Dee,70489,1717081,6 +1596,Eugene Kittridge,954,15319,3 +1597,Betty Butterworth,11236,1542810,10 +1598,Aunt Millie,152023,17488,2 +1599,Hathaway,26299,105998,9 +1600,Seaman (uncredited),2897,1208018,287 +1601,Swimmer (uncredited),6068,1609278,59 +1602,Susan,23114,120769,25 +1603,Jackson Two-Bears,11694,1236895,12 +1604,Schoolgirl,25934,1221596,18 +1605,"Naomi, Miho's friend",46986,1535186,45 +1606,,102,1186843,10 +1607,Hubert Howes,3028,7074,9 +1608,Italian Waiter,117,1886576,20 +1609,Neighbor (uncredited),33364,120070,14 +1610,Zantoro (as Frank Garfield),21380,99195,1 +1611,Red Elvis,24746,104005,6 +1612,The Hooker,11307,12967,6 +1613,Commissioner,1637,42308,27 +1614,Assistant Purser,43832,939842,28 +1615,Claudia's Dad,8494,84328,8 +1616,Reporter,9272,1075088,12 +1617,Dorothy (uncredited),3309,1468726,22 +1618,Hugo,9905,20056,4 +1619,Osric,10549,2157,8 +1620,Sue Baxter,32140,8631,9 +1621,Bicyclist,11472,1344737,13 +1622,Colonel John T. Hall,9099,707,1 +1623,Sloan,21060,87049,5 +1624,Cafe 24 Manager,2898,1108,34 +1625,Eugene Simonet,10647,1979,0 +1626,Princess Schcherbatksy,50512,43543,11 +1627,Brian Rusk,10657,130935,8 +1628,Political Backer (uncredited),2897,32573,307 +1629,Stan,1647,74608,19 +1630,Sheriff Cole,21142,117027,2 +1631,Clark Barnes,3595,23626,6 +1632,Extra (uncredited),2897,119486,153 +1633,Teen Mogie,50123,60722,6 +1634,Chan Parker,24679,6200,1 +1635,Waitress #1,8869,1583088,19 +1636,Heffernan,23668,2979,14 +1637,piketchauffören,29224,1026115,17 +1638,Ugarte,289,2094,6 +1639,Tony,7863,1192652,4 +1640,Sundown,744,51581,15 +1641,Mr. Leuchtag (uncredited),289,31209,85 +1642,Ralph,11593,227986,19 +1643,Mrs. Whitweather,261246,11135,5 +1644,Batist,36915,107009,6 +1645,Kleinman,19200,1243,0 +1646,Aorn,3173,31043,2 +1647,Al Sanders,31618,8354,7 +1648,Dr. Brandon,11591,123722,8 +1649,Donna,12454,72311,9 +1650,Kenkichi 'Tack' Miki (Ichiro's Father),39462,18613,4 +1651,Mr. Brenner,17771,48371,14 +1652,Ship's Crew #2,3036,1211929,14 +1653,Cpl. Thomas E. Clark,10142,1280,2 +1654,Cholo,9343,57380,2 +1655,Waitress,32872,99097,53 +1656,James Leer,11004,2219,1 +1657,Minor Role (uncredited),2897,1467013,258 +1658,Grace Cardiff,805,91197,12 +1659,Toby Walters,9611,20187,6 +1660,Confederate Recruiter (uncredited),961,34168,16 +1661,Horse's Mum,9427,1356547,27 +1662,Police Woman (uncredited),949,1504112,58 +1663,Maria Pia,61939,234571,3 +1664,Milkman Ralph,38772,1468322,9 +1665,Marina Cintra,598,54996,24 +1666,Diner (uncredited),34106,1284767,126 +1667,Millie Miles,10671,113655,19 +1668,Chairman,32872,149671,50 +1669,Le vieux moissonneur,11876,23985,17 +1670,Dean Gordon Pritchard,11635,12799,6 +1671,Carla,22910,89568,2 +1672,Reporter (uncredited),3309,1262852,49 +1673,Tahitian Priest at Funeral,6068,1609202,19 +1674,Hana,409,1137,1 +1675,Lil,16806,21619,3 +1676,Arnie,638,9309,31 +1677,Bellevue Nurse,24679,156651,12 +1678,Rita Harrison Williams,10950,1160,1 +1679,The Ogre,79593,1193473,31 +1680,1st SIS Detective in the hallway (uncredited),949,1457709,41 +1681,Heather Johnson,210092,67575,3 +1682,Peter Keyes,169,2048,2 +1683,John Van Gelder,11607,16758,9 +1684,Black Lodge Boy,50123,1380163,16 +1685,Wilde,43143,189847,8 +1686,Ambassador from England,18971,79747,18 +1687,Gun Salesman,28466,1170,15 +1688,Jose Rodriguez (uncredited),678,1112109,34 +1689,Goanna (voice),13225,31004,4 +1690,Serbo-Croatian Sports Announcer,11535,84248,63 +1691,Kermit Aldy,11975,1857325,23 +1692,Extra (uncredited),2897,1671472,204 +1693,Al,31586,33492,27 +1694,Abner Easley,21052,12263,5 +1695,Elizabeth Cole,109614,26467,1 +1696,Rolf,9589,1728637,10 +1697,Drummer (uncredited),11697,1600511,76 +1698,Hortense's Brother,11159,1228665,11 +1699,KKK Man,1633,131561,18 +1700,Man with Flyer,32872,1720984,47 +1701,Angie,9425,60072,11 +1702,Man with Eunice (uncredited),678,120308,31 +1703,George,11003,19578,8 +1704,Prof. Heregard,37936,1081829,18 +1705,Orderly,2637,27683,11 +1706,Gabriel,11980,4690,0 +1707,Helen,10326,64826,3 +1708,Xu Fengxia (adult),31439,1789263,8 +1709,Bernadette 'Bernie' Walsh,9529,51864,3 +1710,Geno Scarlatti,49365,103829,4 +1711,Billy,469,6398,4 +1712,John,11374,6163,9 +1713,Lainey Christian Taransky,9296,38940,3 +1714,Townsman (uncredited),11697,1077251,21 +1715,Calvin Webber,11622,4690,2 +1716,Charles 'Chuck' Dotson,61934,45291,6 +1717,Young Mother,62463,1198661,8 +1718,Gripweed,29048,10592,1 +1719,Jaws,691,10460,3 +1720,Tim Wakely,52782,146660,5 +1721,Himself,26149,1248659,12 +1722,Customer in Pete's,11899,15110,22 +1723,Brigadier General Jack D. Ripper,935,3088,2 +1724,T.J. Lambert,4988,6197,7 +1725,Dr. Sarah Roberts,11654,4038,2 +1726,Debater #2 - White Team,17971,1081816,16 +1727,Vernon,22279,2629,4 +1728,Mrs. Farnsworth,1377,16765,10 +1729,Terrified Woman,11001,1672661,37 +1730,Captain Alexi,9423,27037,8 +1731,Alyssa Callaway / Amanda Lemmon,33689,67848,2 +1732,Mr. Wrightson,11899,1673569,26 +1733,Kesuke Miyagi,8856,23915,1 +1734,Entertainer,6068,94511,35 +1735,Greg,858,8536,6 +1736,Train Engineer (uncredited),2897,34448,310 +1737,Senator Tal'aura,201,2525,9 +1738,Carla,422,5683,3 +1739,Sister Barbara Bennett,18694,129590,6 +1740,Mendenhour,5917,12298,8 +1741,Dr. Emmett Brown,165,1062,1 +1742,Dr. Whitman,10219,6752,22 +1743,Mrs. Tarantino,525,122110,30 +1744,Otto,2637,27685,13 +1745,Russell,20242,161285,9 +1746,Kip,10603,953505,11 +1747,Daniel Christie,11259,10360,3 +1748,Medical Examiner,50123,1695029,17 +1749,Caspar Goodwood,36758,110,10 +1750,Small Role,43828,1078453,34 +1751,Johnny,38922,33492,7 +1752,Chamlee,966,13786,21 +1753,Pvt. Jonesey,11589,78090,20 +1754,Woman,3050,5151,10 +1755,Fourth Customer,10776,1330820,14 +1756,Gomez Addams,2758,27888,0 +1757,Man in Front of Tommy,26378,1198701,65 +1758,Peggy,10708,6751,5 +1759,Shinpei Inami,39462,227622,1 +1760,Akron Doctor,30709,97953,14 +1761,Timothy Walker,10696,18288,2 +1762,POW #1,1369,16587,13 +1763,District Commissioner,983,14755,5 +1764,Gary Jackson,5955,119232,11 +1765,Russ Richards,10783,8891,0 +1766,Beppo,91076,976644,18 +1767,Seth,795,2963,0 +1768,Policeman,10440,59281,20 +1769,George Cobb,10657,21258,21 +1770,Tuxedo Salesman,25969,156413,0 +1771,Grant,30994,1230262,8 +1772,Luis,10691,67070,3 +1773,Campbell,197,2467,7 +1774,Buffalo,41160,3197,7 +1775,Preston,154,87066,12 +1776,Jenny,42136,147514,8 +1777,,64310,17882,2 +1778,Dennis Nolan,53685,6066,3 +1779,Harry Bundage,14612,7192,3 +1780,Margie,36489,99126,7 +1781,Direktor,1396,1190992,3 +1782,,64310,19363,4 +1783,Lord John Brindale,18646,4353,2 +1784,Dr. Ballard,27834,923,10 +1785,Aubin,5967,18767,6 +1786,Rachel,949,161939,35 +1787,Gwen,320011,65471,14 +1788,Mrs. Brill,433,5828,5 +1789,Robert Rusk,573,8225,2 +1790,Rockwell (as Edmund Macdonald),43828,85995,14 +1791,Joe Hurley,4993,152654,9 +1792,Girl at Eva's school,742,1154224,18 +1793,Walt Jergens,3089,30300,13 +1794,Jason's Girlfriend,5551,1590757,15 +1795,Men's Room Man #1,46986,6195,7 +1796,Corbett's Bodyguard,5917,1391048,20 +1797,Franz / Actor playing Franz,11902,129215,4 +1798,John Bender,2108,21624,2 +1799,Cappy von Trapment,17711,1811,3 +1800,Ash Ketchum,10991,67830,0 +1801,King Louis XIII,11370,3593,6 +1802,Dr. Ivor Jones,26593,1232,8 +1803,Camp Director's Wife,9403,75926,37 +1804,Walla Walla (voice),31044,1729789,56 +1805,Tom Stewart,30175,13028,3 +1806,Jacopo,11362,40481,6 +1807,Eema,24254,55980,26 +1808,Big Guy #1,1813,1983,42 +1809,Coach Motlow,21801,1199750,12 +1810,Lem Smoot,32275,30212,8 +1811,Pete Bell,19819,1733,0 +1812,Cafe Europa patron,18642,121323,15 +1813,(uncredited),70801,120542,10 +1814,Underground Mechanic,9659,172747,9 +1815,Amanda Buckman,2758,123149,13 +1816,Busty Nurse,3028,44810,8 +1817,Old Con,5924,198320,18 +1818,Madame Rontru,26661,3340,2 +1819,Referee #2,11873,1265402,30 +1820,Mary,10775,86318,5 +1821,Wendy's Mother,12506,47478,27 +1822,Court Policeman (uncredited),34106,1434259,131 +1823,Freya Neilson,71701,22137,2 +1824,Pilot,13005,91371,14 +1825,Tall Customs Dog / Angel Dog #1 (voice),19042,198,5 +1826,Eddie Barzoon,1813,4004,3 +1827,Charlie O'Donnell,40555,25711,4 +1828,Rose Stiller,73462,57418,6 +1829,Carol,21142,1507121,6 +1830,Boss Printer (uncredited),15,1307855,75 +1831,Reporter #2 - Democratic Conventon,2604,96223,81 +1832,Scarface,10003,2478,13 +1833,Gwen's College Date,32872,1720979,25 +1834,Michael Sullivan,4147,31,0 +1835,Ho,9462,143190,3 +1836,Patrick O'Leary,38558,8693,3 +1837,Sammy Desoto,10860,18916,9 +1838,Copy Desk (uncredited),28430,26703,21 +1839,6th Victim,77010,104256,4 +1840,Major v. Eggersdorff,43596,48039,7 +1841,Dancer,10603,1748052,36 +1842,Stoker (uncredited),2897,108236,300 +1843,Casey Bugge,10663,124016,9 +1844,Lt. Commander Worf,200,2391,4 +1845,Bartender,10866,19567,16 +1846,,18939,133566,15 +1847,Tucker McElroy,525,16119,50 +1848,Gay Erin,21242,40168,1 +1849,Harold,165,1434986,31 +1850,Tommy Oliver / Red Ranger,6499,50098,2 +1851,"Pierre, a lawyer",2721,1168415,20 +1852,Frank Jewett,10657,158356,11 +1853,Margaret Anne,29698,135037,5 +1854,Simone 'Sissi' Schmidt,9301,679,0 +1855,Newscaster (uncredited),14,1503027,37 +1856,Romero,9425,1179681,8 +1857,Colonel Walter E. Kurtz,28,3084,1 +1858,,10643,1060572,13 +1859,Pfc. Mickey Zimmerman,9099,19505,6 +1860,Danny Madigan,9593,58119,8 +1861,Gomez Addams,2907,27888,0 +1862,Dad Johnson,31586,154745,44 +1863,Cornerman (uncredited),1578,1265389,40 +1864,Ned,43316,114957,6 +1865,Dave Lyons,11185,3460,1 +1866,,30946,1771,12 +1867,Father Devers,28577,3142,9 +1868,Carter Hayes,2990,2232,2 +1869,Roy Stalin,13667,1073810,13 +1870,Patrolman Mooney,1924,1681435,58 +1871,Minor Role (uncredited),2897,1415345,255 +1872,Field Marshal Erwin Rommel,9289,20863,39 +1873,Go-Go Club Owner #2,38772,16525,10 +1874,Rascal,10897,60229,21 +1875,Mutant Carrying David to 'Intelligence',20424,12284,20 +1876,Blonde,27145,581118,7 +1877,President Jordan Lyman,23518,13576,2 +1878,Willy,11202,1089966,29 +1879,Clarice,31682,1048024,2 +1880,Whitey,165,58319,10 +1881,Wu Ying's Stepbrother,45861,150158,5 +1882,Detective,28577,165082,19 +1883,Emcee,12079,814,19 +1884,Nora Manning,2898,28779,7 +1885,Reform Club Member (uncredited),2897,127024,291 +1886,Whit,11593,1183443,24 +1887,News Vendor,1924,1681426,53 +1888,Sonny Yellow Lodge,50123,84225,13 +1889,Apollonia Vitelli-Corleone,238,3145,23 +1890,Ben Healy,28597,27772,0 +1891,Linda Wyatt,6,55964,11 +1892,Reporter,11374,168588,34 +1893,Walter Riemer,9301,1084,2 +1894,Window Cleaner,1924,1681418,47 +1895,Richard,36094,35547,9 +1896,Curtis Jackson,25682,55271,1 +1897,Mr. Cale,10373,575818,9 +1898,Meg,39938,95117,5 +1899,Clunk,9659,1125224,8 +1900,Miss Lippy,11017,954122,9 +1901,Dr. Beverly Crusher,201,2392,5 +1902,Perfume Lady,10603,1748109,27 +1903,Lemick,12506,65885,11 +1904,Sylvia Grantham,16281,175087,4 +1905,Girl,705,109407,11 +1906,Gynecologist,9426,224,7 +1907,"Captain Scanlon, Police Chief",15944,103672,13 +1908,Bus Conductor,3092,299082,14 +1909,Kris,38509,120584,6 +1910,Frank Martin,6068,14409,2 +1911,Handsome Stranger,634,1567503,16 +1912,Federal Prosecutor,38554,5176,12 +1913,Paralegal,9032,1225349,18 +1914,Det. Frank Stoolie,24452,114528,11 +1915,Monty (voice),10137,18324,12 +1916,Marcia Jeffries,21849,1934,1 +1917,Jazz Combo Member,28577,238746,23 +1918,Eddie Wilson,21721,60650,1 +1919,Dr. Monk,45964,82495,10 +1920,Copy Boy Delivering Message in Chicago Hotel Room (uncredited),15,1472526,78 +1921,Steve Walker,16249,40393,1 +1922,The Tap Teacher,9464,1733433,21 +1923,Landlord,896,13760,6 +1924,Cafe 24 Waitress,2898,1294,36 +1925,Press Secretary Jerry Ross,75,519,5 +1926,Poquelin,35292,54278,20 +1927,Townsman (uncredited),25898,137404,13 +1928,Zorg's Man,18,1857458,102 +1929,The Mayor,9593,1459,13 +1930,Matron: Staff,14794,89895,13 +1931,Nemo,40688,5139,7 +1932,Girl Friend,27145,97082,6 +1933,Sergeant,46592,544623,6 +1934,Christopher Todd,23518,14564,10 +1935,Public Relations Man,25430,34625,55 +1936,Petey - Taxi Driver (uncredited),678,592941,35 +1937,Katrina,9889,78837,8 +1938,Father Giovanni,9945,18914,7 +1939,Additional Voices (voice),9504,16584,16 +1940,Bear,13408,8396,6 +1941,"Suzanne, la femme de Jean",26030,111304,8 +1942,Ray,26180,4690,2 +1943,'Spoon' Witherspoon,11880,107378,5 +1944,Franziska Herr-Gross,10801,23524,0 +1945,Zabit,20123,15266,5 +1946,Big Mama (voice),10948,20157,2 +1947,Kelly Leak,19050,17183,2 +1948,Golub,11902,85643,9 +1949,Greta,35694,4514,6 +1950,Gustavo Zerbino,7305,52418,5 +1951,Policeman 'Abbott',43089,129269,4 +1952,Bird,29475,68752,9 +1953,Lodger,33851,43138,12 +1954,Maria - Stewardess,10671,1412558,31 +1955,Theresa,45069,108635,4 +1956,John Wolfe,11307,20906,7 +1957,Indian Singer,47889,1607817,7 +1958,Scoutmaster,44932,151644,8 +1959,Morris Fink,15764,33489,6 +1960,La Fleck model,24254,91436,22 +1961,Second Vietnamese Businessman,15379,136425,14 +1962,Leonard Baptiste,14587,164904,16 +1963,Akasha,11979,21352,1 +1964,Larry Fellows,786,11667,15 +1965,Vincent Cappadora - Age 16,30943,23495,3 +1966,,281085,827,6 +1967,Colonel Hendricks,42569,2549,4 +1968,Captain Phillip Laidlaw,11607,70003,0 +1969,"Viktor Bagrov, ""Tatar""",20992,86940,10 +1970,Thomas 'Big Tom' Callahan,11381,6197,2 +1971,Woman in shop,27526,12543,19 +1972,Kaspar Hauser,12632,14631,0 +1973,le directeur des ressources humaines,35651,583595,6 +1974,Travis,6,102710,7 +1975,Weaver,17339,1101,5 +1976,Latifa,327,4996,10 +1977,Luke,10862,1569166,14 +1978,Mr. Bennett,17464,81899,6 +1979,Barry,11524,26485,3 +1980,The Great Solvani,31498,30228,4 +1981,2nd Crewman,1924,1681445,68 +1982,Denied Area Security Guard,954,26782,23 +1983,Mrs. Sherman,24086,10559,3 +1984,Young Girl,2984,37306,32 +1985,Lisa Peters,10400,13549,2 +1986,Ada Quonsett,10671,47439,5 +1987,British briefing officer,11202,1047752,31 +1988,Walter C. Amundsen,10774,192660,11 +1989,Ruby Lee Gissing,47889,15852,0 +1990,Colonel Sidney Huff,31037,13731,3 +1991,Emily Carson,6951,51544,1 +1992,Uncle Morty,31044,23708,8 +1993,Mrs. Chang,2625,83788,13 +1994,Sommelier,46029,3418,9 +1995,Sara Crewe,19101,84093,0 +1996,Strongarm Man (uncredited),34106,153638,75 +1997,Lt. Moretti,18694,68812,4 +1998,Bus Passenger #1,1637,1872781,14 +1999,Henry Louis 'Lou' Gehrig,19140,4068,0 +2000,Alice Tripp,25673,7632,2 +2001,Eugenia Parrado,7305,46901,32 +2002,Annie Reed,858,5344,1 +2003,Schoolboy,25934,1847232,23 +2004,Fackler,11895,57356,8 +2005,Ticket Clerk,9532,1235586,26 +2006,Angel Dominguez,22023,148306,26 +2007,Lisa Preston,7299,52403,14 +2008,Eliot,49792,6949,3 +2009,Ronnie McMinn,15940,54,5 +2010,Weath - Musician,1911,2220,12 +2011,Rafe Garrett,505,2714,5 +2012,Linda,60994,77353,6 +2013,College Girl,11374,69399,42 +2014,Detective Ray,2898,66749,46 +2015,Peggy Flemming,4806,3234,2 +2016,Anne Pilgrim,43143,83129,2 +2017,Artie,13567,1270526,12 +2018,Ashley,11397,1216483,39 +2019,Trekkler,80350,56853,8 +2020,Helene Weigel,35263,16782,1 +2021,Lennie Pike,11576,13593,12 +2022,Sheriff,5955,43933,12 +2023,Dr. Tom Halman,27150,21399,1 +2024,Officer,11902,1393883,24 +2025,Terry Chaney,9532,19275,7 +2026,Huma,99,954,1 +2027,Judge,117,83197,35 +2028,Friedrich,28387,76989,12 +2029,Bertolt Brecht,35263,11610,0 +2030,Palace Guard with Rifle,6038,1580032,37 +2031,Rooney's Business Associate,4147,1226707,23 +2032,Ben,9717,92280,6 +2033,Elsa,7514,52814,1 +2034,Ron Graham,13852,75895,11 +2035,Nicole Walker,10543,368,1 +2036,Herbert Cadbury,11011,8537,8 +2037,Beatrice Stanhope,10603,11318,6 +2038,Englishman Questioning Casino's Honesty (uncredited),289,121095,43 +2039,Billy Bailey,41160,2467,4 +2040,Radio Cop,17889,3262,14 +2041,Jenny Fields,11307,515,2 +2042,Henry Clerval,3036,3999,2 +2043,Babu,983,14758,7 +2044,James,9405,1105263,6 +2045,Chief Detective,9296,1473,58 +2046,Mrs. Quinn,29698,135038,7 +2047,Lisa Weil,11601,7796,2 +2048,Bobby,68545,3292,3 +2049,"Bobby R. - ""Very Bad Boy""",28940,154905,28 +2050,Dennis Fitzgerald,10162,1609638,11 +2051,Teddy Roosevelt (uncredited),15,1090856,74 +2052,Kazuo Miyamoto,10219,10883,4 +2053,Tim,14819,116805,6 +2054,Danny Young,42136,75467,13 +2055,"Peter MacIntosh, Dershowitz's Student Staff",38718,77023,6 +2056,Diego Rivera,32274,2049,1 +2057,Harold 'Harry' Temple,1637,8447,4 +2058,Dean Burbage,29787,17401,5 +2059,Chic Lady,525,40092,53 +2060,White Girl,11397,1773779,38 +2061,U-boat Commander,10491,997860,19 +2062,Extra (uncredited),2897,34443,83 +2063,Roach,11374,81918,15 +2064,Lakisha,9816,59582,19 +2065,Tiffany,6552,177522,14 +2066,Hatcheck Girl (uncredited),32600,1364105,8 +2067,Ghost Dancer,9716,1661623,80 +2068,Postbote,10801,1083,8 +2069,Francine Pefko,12479,21104,4 +2070,Plaza Doctor,786,60018,36 +2071,Starlighter,105,1200794,40 +2072,Meg Halsey,18111,82688,9 +2073,Captain Benjamin L. Willard,28,8349,0 +2074,Miss Evans (uncredited),28430,106628,13 +2075,Jeremy,4478,17485,4 +2076,Payton,9403,101781,16 +2077,Catherine Wyler,11397,18658,4 +2078,Captain of the 'Mongolia' (uncredited),2897,33033,302 +2079,Estrella Starr,786,11671,18 +2080,Jean Grey / Phoenix,36657,10696,4 +2081,,10867,1799895,39 +2082,Bailiff,2978,69129,20 +2083,Bus Stop Beauty,8467,115989,24 +2084,Mike Windgren,18692,21457,0 +2085,Anna D'Antoni,27346,10461,1 +2086,Laurel Sommersby,1049,1038,0 +2087,Extra (uncredited),2897,121323,106 +2088,Willie 'Too Big' Hall,525,7179,9 +2089,John Yaya,11379,1777973,35 +2090,Vincent,26180,1121,1 +2091,Marilyn,10440,166772,8 +2092,Mr. Mort,15321,585958,4 +2093,Fashion Plate,31005,129662,11 +2094,Robert Gant,10550,2518,2 +2095,Customs Officer,1480,94897,21 +2096,Mr. Kelso,39833,89162,10 +2097,Sale House Woman #3,14,1397945,16 +2098,Satoru Kawashima,17962,4990,2 +2099,Face on Cutting Room Floor,9602,12936,13 +2100,Carl,2108,55554,6 +2101,Floyd,26603,21125,8 +2102,Player's Wife,9563,51706,20 +2103,Butler Serving Dinner (uncredited),73969,80546,11 +2104,Boris,50512,53013,21 +2105,Guy Robaire / TV Preacher,30924,1641170,14 +2106,Lopez,12639,24827,9 +2107,Chook,10050,62527,18 +2108,Go Go,53617,83130,0 +2109,Danya Yashin,8665,1399074,20 +2110,Paco,10663,15661,10 +2111,Shadowgraph Man (uncredited),15,1612202,124 +2112,Father Michael Da Costa,33851,382,1 +2113,Head Scientist,18,1857410,32 +2114,Rebecca Hodge,152023,41249,7 +2115,Female Executive in Train,954,1324518,28 +2116,Connie,696,10449,6 +2117,Prof. Strowski,36489,291778,5 +2118,Anne Marie's Friend,29698,135061,30 +2119,Tap Dance Kid,9464,1733447,25 +2120,Fred 'Sarge' Dobbs,44932,2641,1 +2121,Jim Berkley,14,8213,9 +2122,Man with Expired Papers (uncredited),289,29124,93 +2123,Thomas Janes,13526,2228,0 +2124,Man (uncredited),539,938901,29 +2125,Rebecca Dearborn,1903,3063,7 +2126,German Guest,11535,1003550,40 +2127,Doc Goldman,25501,11792,6 +2128,Charlie Arneg,33668,93664,6 +2129,Mrs. Trivers,43915,1008884,7 +2130,Stage Manager,1574,17638,6 +2131,Jem Trehearne - Sir Humphrey's Gang,31995,29520,21 +2132,Mrs. Meyerson,31005,23967,9 +2133,Ronald Fisher,141,156011,24 +2134,Marcia Drucker,949,116153,50 +2135,Jasper Arnold,13539,2299,2 +2136,Detective (uncredited),21734,117037,28 +2137,Mr. Darcy,634,19331,22 +2138,Reverend Billy,30924,12409,4 +2139,Yael,99,3655,15 +2140,Lanie,638,9305,25 +2141,Faisal,32074,2980,7 +2142,Timmy,15310,1189173,9 +2143,Shozo Hirono,34326,119243,0 +2144,Agent Drome,24254,91426,10 +2145,Major Lanyev,10724,5475,10 +2146,Aunt Elizabeth Almond,45019,19239,4 +2147,Juror (uncredited),11593,36193,31 +2148,Realtor,4478,72421,9 +2149,Frenchy,621,8895,4 +2150,Executive #1,522,1845156,30 +2151,Lewis Rothschild,9087,521,2 +2152,Phyllis,37718,31714,11 +2153,Brad Mollen,12309,95455,11 +2154,Mission Control,11379,189592,26 +2155,S.W.A.T. Team Member,11001,1672679,46 +2156,Police Captain,25682,1120190,10 +2157,Wiseguy Jerry,524,233121,40 +2158,Maurice,60608,11989,0 +2159,Extra (uncredited),15,1142371,23 +2160,Catherine Valmont,77010,102104,1 +2161,Ray Preston,33660,21030,2 +2162,Woman (uncredited),34106,145717,88 +2163,Bulldog (voice),32328,33923,4 +2164,Bloomingdale's Stock Girl,9778,59165,5 +2165,Susan Matthews-Loomis,19736,586,1 +2166,Oswald,30584,653,7 +2167,Mad Dog,59181,12980,15 +2168,Moscowitz,24679,8213,11 +2169,Dewey,28940,1851411,21 +2170,Wilson,1995,10655,8 +2171,Old Man McCoy,522,22250,45 +2172,Esteves,24679,51551,7 +2173,Bartender,12079,1757534,20 +2174,Mietek Breslauer,349394,24381,1 +2175,Djomeh,47161,1891585,5 +2176,Mother Widow Peep,25898,94332,5 +2177,Prince John (voice),11886,14501,2 +2178,Attorney to Kirby at Arraignment (uncredited),34106,34505,45 +2179,Nina,124680,1345951,1 +2180,Third Judge (uncredited),3063,148419,28 +2181,Harold Cara,79783,7868,3 +2182,Nick,11511,69671,3 +2183,Antonius Block,490,2201,0 +2184,Stasi-Offizier,35263,1256926,8 +2185,Hammer,16314,1200456,11 +2186,Herr Hauser,75641,3160,12 +2187,Johnny Fontane,242,3144,21 +2188,Burger Jungle Guy,6552,22297,18 +2189,David Caravaggio,409,5293,2 +2190,Susan Clark,8970,22126,4 +2191,Taffy Dale,75,524,10 +2192,Mike Raftis,52744,146589,8 +2193,Sheriff Samantha Parker,8869,56152,1 +2194,Al Schwartz - District Attorney's Assistant,1480,45525,9 +2195,Margaret Larsen,5955,1276,9 +2196,George Cooper,23730,11512,0 +2197,Dark's Mother,1811,821,17 +2198,Eric Roberts,9894,21315,7 +2199,Root (voice),13225,63208,10 +2200,,64310,55805,5 +2201,Guy on Bridge,76,574,5 +2202,,10466,2169,21 +2203,Mexican Waiter (uncredited),678,1543340,21 +2204,Phyllis Bonaparte,12618,71266,11 +2205,Lydia Hillard,788,8987,5 +2206,Saul,17203,72315,13 +2207,Inspector Thompson,5279,11275,15 +2208,Wally Shawn,25468,12900,0 +2209,Journalist,11535,1674979,82 +2210,Lucy Moore Hadley,69605,7570,1 +2211,Gerald Bringsley,814,199055,34 +2212,Ramon Miguel Vargas,1480,10017,0 +2213,Laurence,60083,1161730,4 +2214,Regina Lambert,13440,9030,1 +2215,Female Armed Guard,10208,3138,8 +2216,Eddie,10691,121453,4 +2217,Spaccafico,11216,52657,6 +2218,Ferret Man,17170,21282,11 +2219,Drunk Woman,9296,1744160,45 +2220,Judy,14052,2885,8 +2221,Chris Chambers,235,741,1 +2222,Mendoza,49688,127252,7 +2223,Mrs. Gilmore,805,85838,15 +2224,Walter,170430,68527,1 +2225,Jack Falk,15556,20760,11 +2226,Medical Student,3035,1269196,26 +2227,Carl,2898,1080069,29 +2228,Pvt. Maurice Ferol,975,2758,7 +2229,Dr. Green,2898,8844,8 +2230,Stephanie,59181,1651878,11 +2231,Bernard,35569,111214,10 +2232,Principal Gowan,2640,44052,17 +2233,Captain Howdy / Carleton Hendricks,27791,60434,8 +2234,Calo,242,44860,16 +2235,Miss Scott,935,126354,7 +2236,Steven's Father,24584,137950,11 +2237,Ring Doctor,30547,1507184,43 +2238,Tourist,43832,981271,20 +2239,Amaki,13889,78348,3 +2240,Tom Donaldson,10354,77338,23 +2241,Frank Bois,73067,567972,1 +2242,Clara,17170,36926,6 +2243,Miss Kansas / Liz,19157,1665712,15 +2244,Robin / Statler / Ubergonzo,10208,68455,4 +2245,Davies,482,55672,15 +2246,Veronica Lang,170430,1472580,6 +2247,Sandman,10803,161764,16 +2248,King Herod,2428,4113,21 +2249,Mr. Campbell,9816,59579,16 +2250,Jackie,17770,38334,7 +2251,Joe Donnelly,10774,554628,12 +2252,Mrs. Martin - Landlady (uncredited),21734,1056412,25 +2253,Captain Aarfy Aardvark,10364,28164,13 +2254,Lucy Muir,22292,20124,0 +2255,Second Cab Driver,11576,98571,15 +2256,Siegfried,5608,44345,0 +2257,Carl G.G. Palmberg,28577,6609,3 +2258,Annabel Lee,30946,10690,5 +2259,Katadreuffe,17139,45754,1 +2260,Blanche Finley,10326,33491,15 +2261,Alien,29938,99745,11 +2262,Bobby O'Grady,21132,5724,0 +2263,Philip,16351,36171,7 +2264,"He Zhiwu, Cop 223",11104,43661,3 +2265,Extra (uncredited),2897,1132779,240 +2266,President James Dale / Art Land,75,514,0 +2267,Briggers' Man,80350,1297931,12 +2268,Hector,46924,2157,0 +2269,Jean Wahl,10400,40385,18 +2270,Statehood Audience Member (uncredited),11697,121068,63 +2271,Fran,10409,65010,1 +2272,Tina,10925,536499,8 +2273,Skyla Sisco,21801,20387,2 +2274,John,9613,166529,5 +2275,English Lady Getting Visa,1859,977271,27 +2276,Butcher,62463,1780599,6 +2277,Volker von Alzey,5608,44349,5 +2278,Mercédès,21193,1684213,5 +2279,fru Lundberg,29224,575500,10 +2280,Oberleutnant Theo Kaiser,43596,87546,5 +2281,Poolside Provocateur,786,1656023,42 +2282,David,24831,1755001,22 +2283,Eumenes,11654,24738,17 +2284,Big Bob,38043,81624,12 +2285,Jesse,10805,32392,3 +2286,Clown / Violator,10336,5723,2 +2287,Alan Davenport,110972,1230,3 +2288,Raoul's Friend,28940,1505069,30 +2289,Colonel Geofferey Brydon,10714,4783,3 +2290,Basketball Player,153141,108584,23 +2291,Carla,11876,1316259,11 +2292,Thunder,6978,238896,7 +2293,Aisha Campbell / Yellow Ranger,9070,536099,5 +2294,Madam Mim / Old Lady Squirrel,9078,71780,6 +2295,Camille Stout (voice),10137,7906,14 +2296,Front Doorman,32049,1502509,22 +2297,Samuels,28120,14574,5 +2298,Gene Lundy,26173,87475,5 +2299,Missy McCloud,31503,64062,1 +2300,Marchand,8342,54623,3 +2301,Lou Sipher,28169,7466,10 +2302,Silk,2085,21355,4 +2303,Barbara Brecht,35263,8800,4 +2304,Bowman,14372,779,6 +2305,Ana,29263,543805,2 +2306,Woman in Room 204,9827,97619,22 +2307,Newscaster,24254,91449,41 +2308,Pianist,8844,1483452,25 +2309,Tommy,26378,95296,6 +2310,Captain of lancers,2428,24827,30 +2311,Alexander Rance,4147,19152,14 +2312,Santino 'Sonny' Corleone,238,3085,2 +2313,Sen. Jackson McCanles,32275,17753,3 +2314,Warlock,24126,6104,0 +2315,Red Team Player,11535,1274904,24 +2316,Ludwig,229,2936,15 +2317,Doc Williams,29787,77027,9 +2318,"Staff Sergeant ""Crapgame""",11589,7167,2 +2319,,22267,103,11 +2320,Hal (uncredited),46986,91343,56 +2321,Florida Bailiff,1813,1089392,22 +2322,Max Reede,1624,18190,11 +2323,Leslie,10173,36059,4 +2324,Clare,30994,1878507,7 +2325,Partygoer's Escort,1678,1478366,27 +2326,Swana's Restaurant Guest,1859,1331754,14 +2327,Cynthia,334,7427,14 +2328,Princess Daisy,9607,20767,3 +2329,Billie,44800,27964,2 +2330,Alf,814,12693,30 +2331,Bernadette O'Hara,37936,563092,13 +2332,Performer,34113,162751,1 +2333,Father Gerritty,39867,1437605,6 +2334,Igor,47493,9191,4 +2335,Costantino's Mother,552,7556,15 +2336,Young Amelia,49963,143150,4 +2337,Penny Sycamore,34106,20369,6 +2338,Elsa (voice),18890,200632,6 +2339,Cop - Delahanty,379,27513,18 +2340,Martin Geller,9776,19152,2 +2341,Policeman at Old Bailey,623,298767,23 +2342,George Warren,43316,78778,12 +2343,Marqués de Villena,26165,225022,8 +2344,Ron,11654,60990,8 +2345,Vera McLoughlin,5332,42836,10 +2346,Jamaican Waiter,2613,1800124,20 +2347,Young Mike 'The Brick' Donatelli,19150,44205,12 +2348,Henry 'Hank' Pekurny,11374,2778,7 +2349,John Preston,7299,3894,0 +2350,Hardy Jenns,15143,4138,4 +2351,Cop at Ramparts,41478,1217939,11 +2352,Mister Big,2140,11397,4 +2353,Beth,44932,103573,9 +2354,Older Mae Rose Abernathy,6522,77028,14 +2355,Woman in Street,39867,1459030,8 +2356,Capt. Campion (voice),11837,15788,14 +2357,,56235,223810,1 +2358,Casey,10925,106669,6 +2359,Roth,22213,2144,13 +2360,Maj. Carnagle,14370,168320,7 +2361,Tom Smith / Skaggs,40952,171225,7 +2362,Annina Nosei,549,17257,16 +2363,Laura Dickinson,24831,102448,7 +2364,Ariel Gustafson,15602,13567,2 +2365,Scott Evil,817,13922,5 +2366,Gaby,58886,221652,6 +2367,Melissa Margaret Marr,11377,20751,6 +2368,Sarah Altman,4547,37917,1 +2369,Bar Maid (Uncredited),11104,208316,11 +2370,Ethan,10466,118946,10 +2371,Driver,2758,11764,22 +2372,Dr. Jewell,53150,55431,7 +2373,Cathryn,29449,13326,0 +2374,Michael's Teacher,4147,122678,27 +2375,Ethel,17692,1296369,9 +2376,Lacey Party Guest,703,4785,23 +2377,Foot Soldier,1497,1456535,55 +2378,King Shahdov,28973,13848,0 +2379,Howard Finster,24405,1064,3 +2380,Boy with O'Reilly,966,131055,14 +2381,Train Guard,15940,97887,3 +2382,Angus McTeague,24767,1248,2 +2383,Ballet Dancer (uncredited),2898,1199002,53 +2384,Cal Zombach,269,3836,9 +2385,Hooker,12764,136517,15 +2386,Gavin D'Amato,249,518,2 +2387,Carmen,10173,25313,14 +2388,DJ's Venice Date,9716,156294,29 +2389,Dr. Fish,3050,4175,7 +2390,Lee,966,14060,4 +2391,Micky la légende,17350,74110,8 +2392,Albino Folk Singer,11397,81955,44 +2393,Masked Breton,5924,152701,22 +2394,Townswoman (uncredited),25898,133971,16 +2395,Sam,26689,588,5 +2396,Frau Muller,15849,1497889,7 +2397,Priest,46924,7132,20 +2398,Able Bodied Seaman (uncredited),12311,33233,38 +2399,Mad John,10394,201667,8 +2400,Gressen,12102,260967,7 +2401,Kiva,5,3128,13 +2402,Night Maid,9475,1800178,34 +2403,Michael Brody,580,16213,1 +2404,George Eastman,25673,12151,0 +2405,Marie D'Ancanto / Rogue,36657,10690,6 +2406,Thumper,2100,21535,8 +2407,Juan #2,9771,1525313,14 +2408,Igor d'Hossegor,17350,77928,1 +2409,De la Guardia,11655,39008,2 +2410,Trent Potter,9475,3230,12 +2411,Ursula's Friend,10603,168326,16 +2412,Frank,35694,7132,2 +2413,Ah Kun,12481,1134726,6 +2414,Mollie Malloy,3085,30241,8 +2415,Rossa,125945,231034,3 +2416,Lizzy,178,2266,5 +2417,Roland Cassard,5967,46936,4 +2418,Curly,24266,3070,10 +2419,Soho Woman,1497,56910,16 +2420,,77079,24614,4 +2421,Reginald Stout (voice),10137,9257,13 +2422,Mr. DeMarco,16550,3982,14 +2423,Mary,11630,1225785,4 +2424,Little Wolf,11385,3244,5 +2425,Aziz,18,1857413,35 +2426,Lenny,215373,160082,9 +2427,Lt. Gen. Richard K. Sutherland,31037,103733,1 +2428,Rio Lobo Deputy,26593,30846,10 +2429,Mrs. Proudfoot,120,1201328,22 +2430,Secretary (uncredited),15,1176510,132 +2431,"Jeb, age 11",26761,96163,8 +2432,Radio Sports Commentator (voice),26378,1163193,47 +2433,Ichikawa,524,7425,16 +2434,Bill Humphries,15677,3547,9 +2435,Leo Knie,278978,544084,1 +2436,Jaguar Owner,1637,2683,6 +2437,Ben Gardner,578,8615,13 +2438,Fester,16314,114876,18 +2439,Billy Jessup,8844,1076551,14 +2440,Mastiff(voice),10992,10017,8 +2441,Slug,15239,555068,4 +2442,Walter,60994,15900,4 +2443,Pyotr Ivanovich Grushenko,32074,79952,1 +2444,Metro Driver,9406,58384,15 +2445,Professor William Wexler,9877,5139,9 +2446,Boy on Bike,29698,135057,26 +2447,Waiter,9462,554623,10 +2448,JLo,85052,107249,8 +2449,Gabe (uncredited),2291,11510,15 +2450,Hot Señorita,8388,928,14 +2451,Frodo Baggins,120,109,0 +2452,Karate Professor,47886,270182,15 +2453,Greg,10847,1077730,9 +2454,Jean Tatlock,27461,20162,7 +2455,Bernice,36094,162605,8 +2456,Stella Winston,2608,821,1 +2457,Adrian,1374,3094,1 +2458,Chicago,28047,119232,10 +2459,Mrs. Quaife,16938,81058,12 +2460,Second Nurse's Boyfriend,27346,90387,11 +2461,Co-Worker Elaine,10708,46074,41 +2462,Mr. Fulford,10373,84927,14 +2463,Sam Baldwin,858,31,0 +2464,Ward Heeler (uncredited),15,265594,90 +2465,Extra in Furniture-Moving Scene (uncredited),238,178006,37 +2466,Frankie 'Hot' Salvino,134368,925,9 +2467,Advisor,9776,53963,11 +2468,Store Owner,16314,1200457,15 +2469,Sam,31921,1035934,2 +2470,J.T.,29475,12974,2 +2471,Helicopter Pilot (uncredited),6068,175895,61 +2472,Extra (uncredited),2897,1574696,219 +2473,A Journalist (uncredited),269,18558,26 +2474,Sharon,9427,1335636,14 +2475,Paulie,1375,4521,2 +2476,Joy,39875,100613,3 +2477,"Cléo Victoire, Florence",499,7565,0 +2478,Vet #1 - Democratic Convention,2604,24516,25 +2479,Samurai,11712,17540,12 +2480,Sgt. Waller,45827,34130,4 +2481,John Hatcher,10173,23880,0 +2482,'Stacchi' Stacciaro,50001,14658,5 +2483,Karaga Pasha,10568,955618,16 +2484,Coffee Shop Proprietor,34223,1240847,14 +2485,Henderson,34106,29579,20 +2486,Ernie,167,1985,8 +2487,Jack Holden,12154,12836,2 +2488,Nikolai Sestrin,24918,2172,3 +2489,Barbara Chaffee,12122,1006368,9 +2490,Man at Madison Square Garden (uncredited),15,121127,135 +2491,Priscilla Powers,19731,132710,2 +2492,Mrs. Wilson,70489,1717088,13 +2493,Tom Baxter / Gil Shepherd,10849,8447,1 +2494,Harry Doyle,9771,147486,15 +2495,Rae Lindley,1634,15309,1 +2496,Buddy,4248,35769,5 +2497,Bernie Bernbaum,379,1241,0 +2498,Anna Held,43277,125482,2 +2499,Mazlansky,31947,1292202,8 +2500,Charles,8494,55270,5 +2501,Lt. Suki Ohashi,37305,117393,8 +2502,X-Ray Room Doctor,9716,188728,23 +2503,Stoned Man,2021,16792,18 +2504,Priest,11953,1484302,33 +2505,Pascal,493,6774,8 +2506,Ira,19348,138236,8 +2507,Sergeant Jesse Williams,85837,98797,2 +2508,Carolyn Burnham,14,516,1 +2509,,18919,1320290,17 +2510,FBI Agent Lewis,10154,78576,12 +2511,Martha,12101,157439,6 +2512,Wong Kei-Ying,11230,990778,4 +2513,Bianca,11570,136151,6 +2514,Lama Norbu,1689,11394,3 +2515,Zack,1647,16856,3 +2516,Drago,15263,14001,5 +2517,Cribbs,12528,15411,4 +2518,Claus von Bülow,38718,16940,1 +2519,Dink Jenkins,17908,36422,3 +2520,John Robert Sommersby/Horace Townsend,1049,1205,1 +2521,Truman Capote Look-Alike (uncredited),703,1930,45 +2522,Large Detective in Suit,11524,1417454,16 +2523,Shooter #1,30352,106125,22 +2524,Emil,31665,96137,8 +2525,SWAT Cop,4547,157707,14 +2526,Sailor (uncredited),17889,1029127,20 +2527,Cully,18691,4073,2 +2528,Extra (uncredited),2897,1047407,71 +2529,Kevin,178,161254,12 +2530,Michael Francis Rizzi,238,1769,25 +2531,Chinese Girl in White Tiger,6978,1677316,17 +2532,Artie,29698,135060,29 +2533,Kusang,38006,73982,7 +2534,Girl in Bar #3,93350,86308,16 +2535,Tommy Spahn,53685,1418566,10 +2536,Robyn Sweeney,10406,64999,3 +2537,Harry Winston Dancer (uncredited),9716,1661658,116 +2538,Drug Pusher,62463,1231810,22 +2539,Sohachiro Tsuchiya,11953,70133,2 +2540,Mrs. Steffen,210092,1031778,15 +2541,Amos Reed,6951,53010,4 +2542,Roy Hendersen,29739,73586,6 +2543,Skunk Ape Husband,2662,1581372,23 +2544,General Hentz,11101,23664,5 +2545,Marie-Pierre Chénu,78281,6022,6 +2546,Hooker,22023,69056,11 +2547,Grampy,40562,22767,5 +2548,Mary,27526,5657,2 +2549,Sgt. Hayley,1924,159013,74 +2550,Richie La Cassa,134368,69298,2 +2551,Rene Mosier,2293,19144,2 +2552,Redbeard,8840,82410,11 +2553,Rosemary,19101,1506286,8 +2554,Ilegorri/Lucas,2441,24977,3 +2555,Old Crone,43455,78791,7 +2556,Beach Scene,10208,11866,15 +2557,Adolph 'Grandfather' Kramer,28345,32138,1 +2558,Frognose,39771,1062,6 +2559,Townsman (uncredited),11697,1600059,33 +2560,Politician (uncredited),3063,30211,11 +2561,Carlo,5491,8335,3 +2562,Dr. Ellison,2565,2493,6 +2563,The Thief,4338,1954,0 +2564,Opera Spectator (uncredited),15,106585,134 +2565,Lulu,37917,1212032,15 +2566,Knuckles,15239,555071,11 +2567,Dick Mead,1049,8655,10 +2568,Graeme - Student,5257,42388,16 +2569,Cowboy,9611,15009,5 +2570,Man in Black,26889,102445,17 +2571,Breakfast waiter,8072,1653,8 +2572,Bobby Seale,41478,24047,2 +2573,Nikki,9776,59156,10 +2574,Alex M. Kintner,578,8614,12 +2575,Saloon Pianist,2897,4347,8 +2576,Marshall Seymour,26603,777,0 +2577,Piotr Rasputin / Colossus,36658,84222,21 +2578,Carla Moebius,4012,34543,1 +2579,Evan Kurlander,4547,15865,6 +2580,Jack,108312,10182,12 +2581,Young Joey 'Bats' Pistella,19150,84163,10 +2582,Peter,10373,27323,13 +2583,Brad,26603,1218282,9 +2584,Theresa Cassidy / Siryn,36658,941988,17 +2585,Mike,91217,18472,9 +2586,Warden Henry Sampson,21629,13731,9 +2587,,18919,551678,9 +2588,,36773,1226313,5 +2589,Minor Role,26378,1465452,71 +2590,Adeline Palmer-Jones,53879,95263,3 +2591,Ian Wickham,114719,59222,2 +2592,Michelle Langford,35696,2535,1 +2593,Orphan,21866,33525,15 +2594,A.J. MacInerney,9087,8349,3 +2595,Knappe man,58886,228604,8 +2596,Dr. Tucker,10208,15234,11 +2597,Nick,3784,1210,2 +2598,Juanita,8388,104382,13 +2599,(uncredited),10568,133872,26 +2600,American Admiral at Peace Conference,37305,81180,6 +2601,Bob Garland,141,1598,13 +2602,Detective Bridger,10395,28633,5 +2603,Annie's Date Outside Theatre,703,6835,25 +2604,Cardinal Santoni,124963,14821,2 +2605,Anna Muir as a Child,22292,2769,7 +2606,Teresa,22398,4784,3 +2607,"Jill, Lamborghini Babe",11950,110866,8 +2608,Milo James Thatch (voice),10865,521,0 +2609,Eddie,20242,1785713,21 +2610,Gene,46029,1004,3 +2611,Richter,2669,14755,24 +2612,Loretta King,522,7137,12 +2613,Child,34615,123833,5 +2614,Oldsen,11235,12982,5 +2615,Stub Ear,11570,119359,14 +2616,Percussionist,76,3739,11 +2617,Woodrow 'Woody' Jason,29372,103671,1 +2618,Marge,21468,5740,10 +2619,Garage Band Member,2105,234801,36 +2620,Charles Simon,91217,3229,1 +2621,SWAT Cop,4547,1056131,12 +2622,Prison Officer,22213,25544,17 +2623,Bingo Chuck,129542,27747,3 +2624,Captain Penelli,11001,28413,17 +2625,Ghost Dancer,9716,1661626,83 +2626,Hotel Recepcionist,691,95099,16 +2627,Micaëla,21193,87270,2 +2628,Ray Kendall,1715,18999,11 +2629,Jackie Brown,3595,6486,13 +2630,Monster,755,555328,30 +2631,Cheerleader in Front of School,11397,1240066,33 +2632,Officer,983,1761392,10 +2633,Mrs. Dell,249,1556884,14 +2634,Body Builder,20075,87152,5 +2635,Stella,11235,116125,9 +2636,Dark Smith,1811,1582,0 +2637,Dominic Abbandando,242,161860,14 +2638,Biker Leader,27150,1282703,9 +2639,Sir Arthur Conan Doyle,29911,11390,2 +2640,Beach Woman #1,4133,1588721,29 +2641,Connie Evans,9272,57099,8 +2642,Mother Firefly,2662,8963,3 +2643,Perry,1634,58744,8 +2644,Julie Vignon,108,1137,0 +2645,Anita Miller,786,11664,5 +2646,Crooked sailor,34774,24336,20 +2647,,47596,1695109,1 +2648,Boy in Orphanage,10003,1079979,19 +2649,Jack - Bartender (uncredited),11697,975692,68 +2650,Baker (voice),10020,1615298,19 +2651,Beth,39938,81798,4 +2652,De Veyre,26165,15139,3 +2653,Dad Smith,31586,1179088,42 +2654,Lady Emily,118098,3672,1 +2655,Trooper,26689,54859,7 +2656,Joseph Manasse,75641,378,6 +2657,Bambino,46924,137781,2 +2658,Castrito (uncredited),18079,1526989,16 +2659,Dr. Richard Benjamin Vannacutt,11377,27993,8 +2660,Second Tiffany,9889,162924,9 +2661,Ritchie Blumenthal,5922,3265,1 +2662,Bertram Kraler,17889,13968,11 +2663,Jim Baker,15144,15900,6 +2664,Prisoner,43002,94894,10 +2665,Station Master,9659,1230289,14 +2666,Farmer Listing to Speech,25430,30515,47 +2667,Helena Patterson,10586,1246,4 +2668,Ray Bolger,43277,9068,7 +2669,Fa Li (voice),10674,51754,17 +2670,Mrs. Lewis (1940's),66597,121354,2 +2671,Jimmy,9462,122530,8 +2672,Uncle Fester,2907,1062,2 +2673,Extra (uncredited),2897,198065,208 +2674,Alison the Fact Checker,786,11679,27 +2675,Erica,11635,164945,8 +2676,Cos Erickson,77915,4960,3 +2677,Roger Bronson,965,14364,6 +2678,Starlighter,165,1200791,45 +2679,Soldier #1 in U.S.O. Club,10400,23874,33 +2680,Highway Patrolman,11379,778,27 +2681,Woman in Cemetery Crypt,11234,96914,8 +2682,Archbishop Homunculus,229,2941,25 +2683,Comanche Tom,13496,60722,11 +2684,Cheryl,1890,1873994,9 +2685,Mrs. Charlie Inchcliff (landlady),123047,96408,5 +2686,Conventioneer Leader,37936,242414,20 +2687,Gollum,120,1333,13 +2688,Zulu Mashabela,16417,77681,1 +2689,Rose Valdez,47942,73234,10 +2690,Dr. Nero,11561,133774,6 +2691,Lucie,1628,18222,7 +2692,Leah,201581,146056,5 +2693,Dr. Egon Spengler,2978,1524,3 +2694,Ernest,40220,1778956,6 +2695,Magi Evans,151489,1895633,2 +2696,Staatsanwalt von Wenk,5998,29141,4 +2697,Torch,11517,2955,4 +2698,Claudia's Mom,93350,10401,3 +2699,Bob Gerson,5551,2505,4 +2700,Himself,21024,35824,2 +2701,Scientist Yamaguchi,9827,119875,8 +2702,John Burroughs,55420,15338,0 +2703,King Einon,8840,11207,1 +2704,Harry Whitney,21352,30613,1 +2705,Lt. Wiseman,11008,117491,16 +2706,Micheline,47119,38351,4 +2707,Paul House,10440,24292,2 +2708,"Moreal, Spaceship Crew",35139,131487,13 +2709,Schoolgirl (voice),14317,52404,16 +2710,Milton Angland,2978,14721,15 +2711,Luigi Primo,78281,2166,1 +2712,Dr. Edwin Thompson,10973,13786,5 +2713,Train engineer,39462,134320,10 +2714,Sheriff Darryl,14295,61607,10 +2715,Jeffrey Vandermost,9716,1661596,56 +2716,Meredith Potter,22279,3291,1 +2717,Judge Crenshaw,43368,19400,6 +2718,Alexandra Isles,38718,14415,9 +2719,Anij,200,2517,10 +2720,Nyaga,46094,134766,4 +2721,Detective Jack Kay,28902,925,4 +2722,Sheriff Alan J. Pangborn,10657,228,1 +2723,Dr. Pasteur,11591,134092,4 +2724,Hans,114719,3223,4 +2725,Bailiff,117,1504098,31 +2726,Taieb,12652,38891,8 +2727,Margie,36489,1586292,11 +2728,John Nance,524,1574239,24 +2729,Dr. Clint,46986,135162,11 +2730,David (Aged 10),39428,3272,1 +2731,Martha Harnish,24645,41249,4 +2732,Frank Wyatt,6,2880,0 +2733,Cliff,33172,44150,9 +2734,Lou in Child World,11873,1277,10 +2735,Nathan Quellen,61578,65,1 +2736,Judge Morrissey - Cincinnati Court,1630,92565,8 +2737,Carmine,44800,4521,5 +2738,Betty Willis,30666,106742,8 +2739,Ronnie,13567,931643,6 +2740,Simon Grim,37410,58528,1 +2741,Samantha Hughes,32855,18017,1 +2742,Extra (uncredited),522,1551605,67 +2743,Tina Little,10137,35517,6 +2744,Earl,78373,8692,7 +2745,Maureen,11889,69465,12 +2746,Thalice Whitney,21352,27008,2 +2747,"Blink Willie, Informant",14931,52057,6 +2748,Joanne Simpson,11186,14464,1 +2749,Reverend Larrabee,46029,568531,8 +2750,Matt Montini,11521,84844,7 +2751,Apotheker Michael,314352,70888,7 +2752,Detective Ray Jones,7514,52819,6 +2753,Barry Corman,42580,38582,4 +2754,Alderman Marty Swayzak,2924,22131,8 +2755,Mr. Dudley,11618,6905,4 +2756,Senior Customs Officer,73067,17024,5 +2757,Vicar,623,1234167,22 +2758,Clock Repairman,3028,44792,15 +2759,Helen,40220,1778955,5 +2760,Gift Shop Clerk,12154,1219901,7 +2761,Frank T.J. Mackey,334,500,3 +2762,Philippe,104103,72666,4 +2763,Andy,638,9289,6 +2764,Humble Bellows,11570,10925,3 +2765,Additional Voice (voice),9016,214701,21 +2766,Second Tank Commander,11589,106726,31 +2767,Bill McKay,21711,4135,0 +2768,Himself,8869,1583089,22 +2769,Dr. Desmond Forrest Oates,10050,519,10 +2770,Joe Berlin,9716,1243,4 +2771,Dan Kubitz,10708,96072,7 +2772,Erin Jordan at ten,12220,21058,3 +2773,Havilland Savage,51955,93129,1 +2774,Clifford Anderson,17590,20006,1 +2775,Ayden (voice),18937,15831,11 +2776,Psychiatrist,28165,1387709,11 +2777,Rabbi Birnbaum,15310,153539,10 +2778,James O'Banion,4476,37431,7 +2779,Capt. Helmuth Lang,9289,5800,44 +2780,Reporter,1374,543390,18 +2781,Helen Miles Singer,9716,215752,42 +2782,Sigurd,42453,587708,12 +2783,Gate Attendant (uncredited),10862,1628344,17 +2784,Rev. Hollis,81001,46099,7 +2785,Toots Sweet,635,9171,5 +2786,Cindy Bakersfeld,10671,69810,9 +2787,Party Politician,242,196286,28 +2788,Policeman,10440,28008,18 +2789,Doctor,16938,81060,14 +2790,Adele Ekstrom,299,4356,7 +2791,Prostituierte,19200,10437,12 +2792,Carter Doc McCoy,2087,7447,0 +2793,Dominic's Mother,70489,1717079,3 +2794,Jane Butterfield,4011,34535,14 +2795,Oliver,409,5479,14 +2796,Capt. Jones,43139,93164,7 +2797,Man in Toy Store,525,122106,27 +2798,Quinn,12129,20752,7 +2799,Haffinger,9095,7030,10 +2800,Javier Methol,7305,172496,7 +2801,Joshep Blake,3172,62,0 +2802,James Ashmond,18646,83783,6 +2803,Homer Lanza,46786,26485,0 +2804,Pvt. Martini,9289,2770,50 +2805,Boris Volkoff,47504,925,5 +2806,[Singing voice],10674,18897,25 +2807,Officer Bruce,949,9258,31 +2808,Wrestling Commentator,1850,543521,16 +2809,Wanda,24254,91442,31 +2810,Steve Bolander,838,6159,1 +2811,April O'Neil,1497,74932,0 +2812,Uncle Frank Hillard,788,7420,3 +2813,Dr. Karl Weigand,26946,102746,3 +2814,Nell Potter,40952,170986,5 +2815,Sgt. Randolph Johnson,38766,14029,7 +2816,Richard Kennington,41645,80365,3 +2817,Jim Harrison,12704,28164,3 +2818,Q,709,9906,11 +2819,Natalie Strout,1999,3141,3 +2820,Donovan,12101,12298,10 +2821,Lady Lorridaile,23114,17660,6 +2822,Mr. Strickland,105,1072,10 +2823,Nora,10406,16850,6 +2824,Raval,490,6663,9 +2825,Jean,5967,46939,8 +2826,Delores,59199,650,5 +2827,Brian's Sister,2108,1073864,10 +2828,Background Dancer,18736,143336,44 +2829,Groucho Party Dancer,9716,33240,41 +2830,Stoker (uncredited),2897,151463,299 +2831,Questor,2428,11033,25 +2832,Felicca,691,10464,14 +2833,Hinshaw,2897,12000,20 +2834,Adele Anderson,23223,27566,10 +2835,CIA Agent,12704,40009,9 +2836,Man (uncredited),3309,171111,45 +2837,Red Team Player,11535,1674894,22 +2838,Ravelli,2662,13592,15 +2839,Ned Dodd,24767,18260,7 +2840,,102,1119436,13 +2841,Jubilee,36658,115857,15 +2842,Wu Chow,6038,1341,5 +2843,Patriarch,11535,1674960,77 +2844,Bilal,16096,78029,0 +2845,Janet,1578,38159,22 +2846,Helicopter Pilot,73247,7210,8 +2847,Hank,638,9301,21 +2848,Ruth Zinga,159727,975135,1 +2849,Bernard,634,1117371,23 +2850,"Second Mutant Guarding the ""Intelligence""",20424,931942,21 +2851,Sheriff,33016,25711,10 +2852,The invalid's wife,46592,559934,5 +2853,,34899,555182,12 +2854,Kevin Gerrity,9032,12219,4 +2855,Spartanette #6,14,1503023,30 +2856,Heather,2105,8211,10 +2857,Peterson's Assistant (uncredited),3309,1317036,14 +2858,Ted Chenoweth,10632,9277,4 +2859,Dave McFly,105,1067,6 +2860,"Donald W. Blackburn, M.D.",11377,8212,3 +2861,Sophie Zawistowski,15764,5064,0 +2862,Alonzo's Son,2034,1449364,12 +2863,Another Man,49410,180830,6 +2864,KGB Agent,10724,28871,31 +2865,Katherine 'Kitty' Brydon,10714,17286,2 +2866,Admiral Canaris,75641,656,9 +2867,Bartender,11879,555084,10 +2868,Jimmy Fingers,10173,138116,11 +2869,KGB Agent (uncredited),10724,37108,52 +2870,Nick at 17,26149,12790,7 +2871,Snake Man,10351,555329,20 +2872,Mulvaney,983,14760,9 +2873,Cap. Peretz,2100,21530,3 +2874,Lulu,29143,4761,5 +2875,Taxifahrer,314352,564791,5 +2876,Ivy - Age 9,18222,553984,7 +2877,Regina Miller,29263,74905,16 +2878,Miss Lewis,28120,99755,13 +2879,Madame Yuvline Sousatzka,118098,4090,0 +2880,Snake Lady / Apprentice Bad Girl,28169,1420384,9 +2881,Henry Hayter,17015,1840473,23 +2882,Ainsley,33851,42600,15 +2883,Lance (as Jeff Weston),26954,93922,5 +2884,Candace Dayton,638,9300,20 +2885,Kurt,29649,101257,9 +2886,One of the bad monks,12780,1346928,12 +2887,Website Fan,8870,1470030,7 +2888,Corine,35337,18067,2 +2889,Injured Man,3028,66606,12 +2890,Arthur Nagle,10013,151232,14 +2891,Jake Dingle,26761,8729,4 +2892,Brewster,24679,29713,6 +2893,Don Alejandro Vega,32093,92907,6 +2894,Lisa,3537,32387,3 +2895,Leading Man,705,31350,12 +2896,Himself,92381,35549,5 +2897,,171857,176628,1 +2898,Waiter,9314,81024,9 +2899,Anderson,2124,23628,9 +2900,Ben,11235,68686,2 +2901,Birdy,11593,452,17 +2902,Adele,552,7546,7 +2903,Doctor Fowler,635,2979,6 +2904,Nora,9613,85064,12 +2905,Teacher,2135,35517,12 +2906,Kana Yoshino,17962,145913,8 +2907,Supageti sensei,11830,108018,15 +2908,Rita,31911,18248,2 +2909,Eric,141210,1114468,1 +2910,Billie Sue Culpepper (voice),11576,127642,30 +2911,Neighbor,229,975120,43 +2912,Yuck Mouth,41478,2632,8 +2913,8th Elder,1924,32041,91 +2914,Doctor Bangs,39938,33005,14 +2915,Patient,12309,141418,24 +2916,Karsten,5998,28130,9 +2917,Burger Assistant,18,1596096,104 +2918,Lorraine Running Water,21866,170074,7 +2919,Idella,403,5700,4 +2920,Farther Nuncio,11449,95564,5 +2921,Jimmy James,10611,11868,3 +2922,Additional Voices (voice),8916,18863,15 +2923,Robin,703,10558,6 +2924,Joe Galloway,10590,12834,6 +2925,Daniel Connelly,22314,4177,5 +2926,Bob,19797,19578,0 +2927,Rita Repulsa,6499,1432192,13 +2928,Larry,10849,37446,9 +2929,Babe the Gallant Pig (voice),9598,58136,0 +2930,Head Bongo Player,38775,121344,8 +2931,John,11517,10814,0 +2932,Rick,124821,1397903,4 +2933,Tennel,30946,16851,8 +2934,Bartender,46986,7497,5 +2935,Warren Jensen,544,6951,9 +2936,Joe Dubin,50463,1211,5 +2937,Eddie,84735,10460,3 +2938,J.J.,22023,78084,7 +2939,Ghost Dancer,9716,1661622,79 +2940,Mr. Lyle,13852,75898,14 +2941,Leo,44932,9112,5 +2942,Michael 'Mike' Carnes,31618,11512,2 +2943,William Stryker,36658,1248,7 +2944,Old Man at Wagon Wheel,49410,183856,4 +2945,Gringo (voice),28032,34979,12 +2946,Johnny Valentine,10351,19384,8 +2947,Charles,10379,21561,3 +2948,Claire Cooper,10326,8944,1 +2949,Tony,17203,2268,6 +2950,Maj. Keith Mallory,17339,8606,1 +2951,Test Instructor,1647,543298,33 +2952,Hunk Golden,32227,80246,0 +2953,,77825,228915,3 +2954,Simon Canton,9457,16293,2 +2955,Dr. Charles Luther,9507,57756,2 +2956,Tommy Finnelli,2604,26468,6 +2957,Baby Bug (voice),28032,134713,13 +2958,Karol Karol,108,1145,10 +2959,Katie,261246,65145,8 +2960,Blake Dreyer,9532,153818,14 +2961,Monica,47112,125486,4 +2962,Iza,13853,14699,1 +2963,Buckwheat's Mom,10897,2395,3 +2964,Man Singing at Inquirer Party (uncredited),15,1422381,54 +2965,Isam,5917,161794,27 +2966,Beano Callahan,19760,5897,10 +2967,Sheila Landreaux,16096,2124,8 +2968,Extra (uncredited),2897,947709,52 +2969,"Agnes, Gordon's Secretary (uncredited)",3078,121323,15 +2970,Betty,4307,36278,2 +2971,(uncredited),269,1513490,28 +2972,The Girl,19403,15753,2 +2973,Dr. Barkin,40952,83336,16 +2974,"Reading, PA. Referee",10400,1551263,80 +2975,Derek Sutton,17465,723,2 +2976,Miller Wilson,2046,1286022,15 +2977,Virgil's Father,15556,18328,6 +2978,Queen Victoria,6038,9138,13 +2979,Ruthie,11524,1435021,25 +2980,,10400,1393355,61 +2981,Mrs. Riley,30547,1507163,17 +2982,Aunt Martha,13567,1270525,11 +2983,Jesus,580,1673213,20 +2984,Captain Amelia (voice),9016,7056,3 +2985,Bunky,482,84878,16 +2986,Doc,108312,56183,8 +2987,Jake,18935,2886,3 +2988,Laurie Tuttle,43340,8237,0 +2989,Chaplain Capt. A.T. Tappman,10364,7301,7 +2990,Unteroffizier Pflüger,11101,234004,12 +2991,Halga - Wise,1911,1378405,11 +2992,Gladys Hocheiser,42569,170348,6 +2993,Samurai,11712,1482619,18 +2994,Eugene Dred,12106,27116,6 +2995,Solly (uncredited),15,160707,94 +2996,Sam,26603,74954,2 +2997,Harold,9529,115786,9 +2998,Leader of London Revivalist Group,2897,1221907,45 +2999,Villager,229,135394,41 +3000,Cantina Bartender (uncredited),11697,152706,67 +3001,Church Member (uncredited),539,1550460,14 +3002,The Reaper,48787,12248,5 +3003,Zaltar,9651,11390,2 +3004,Herself,4248,62521,13 +3005,Beatrice,46924,27391,21 +3006,Extra (uncredited),2897,1031916,120 +3007,Struna,22257,107635,4 +3008,Assistant,46986,1535177,26 +3009,Parson Staffer,5491,742,7 +3010,Undetermined Role,31995,1065258,28 +3011,Tennis Girl,32331,1577506,8 +3012,Louise Taylor,40555,8437,1 +3013,Scott the Body Piercer (uncredited),12499,2461,17 +3014,Benno,9659,187073,16 +3015,Driving Evaluator,33250,3388,7 +3016,Dr. Carl Hill,1694,27996,3 +3017,Disc Jockey,18282,146138,11 +3018,David McCall,10543,13240,0 +3019,,10867,1332230,33 +3020,Supply Sergeant,11589,1878353,29 +3021,Himself,2300,1211812,9 +3022,Kyle,154,1214565,14 +3023,Ángel,4307,36277,1 +3024,Suri (voice),10567,17265,4 +3025,Aunt Sponge / Glowworm (voice),10539,6199,1 +3026,Dancer at Ball (uncredited),2760,14029,5 +3027,Career Counselor,55420,1232567,15 +3028,Dollabella,12652,2369,4 +3029,Pugsley Addams,2907,119866,6 +3030,Foster,2897,11857,24 +3031,Student Jack,19200,3036,2 +3032,Quarterback Coach,9563,1741409,47 +3033,Großvater,3036,29859,6 +3034,Dominic McAllister,167,33832,15 +3035,Sir Humphrey Pengallan,31995,10921,0 +3036,Freddie Bisco,9475,16540,18 +3037,Ani,16351,7708,3 +3038,Harry Luck,966,14529,5 +3039,Sam Creedmore,5917,14253,5 +3040,General Luft,10208,3798,16 +3041,Alan Marciano,949,5587,13 +3042,Layla,9464,6886,1 +3043,Jeannie Rapp,753,4800,0 +3044,Mingori Mining Company Clerk,46094,77681,12 +3045,Raven,5,3127,10 +3046,Yvonne / Mrs. Cleg,9613,8436,1 +3047,Lucy Mancini,242,167363,29 +3048,Warship Technician,18,1857451,94 +3049,Mr. George MacLean,20424,9865,3 +3050,Sheila - Mr. Clayton's Secretary,3092,1538451,13 +3051,Fay Anderson,25501,36042,2 +3052,Carlo,32274,13242,18 +3053,Stella Claire,47329,73931,0 +3054,Japanese Announcer,11535,1675033,99 +3055,Dorthy Baker,15144,140778,10 +3056,Toothless Flower Girl,6038,1580033,38 +3057,David Deyo,9945,11398,8 +3058,Carol Miller,12476,7401,12 +3059,Archer,38618,105364,7 +3060,Scuba Diver,24831,7727,17 +3061,von Roden,29471,23694,1 +3062,Gideon,9495,4253,12 +3063,Siri Darma,12704,153912,8 +3064,Bedouin Doctor,409,1159594,31 +3065,"David, Robert's friend",78657,131982,8 +3066,Rick Scott,22314,1737,8 +3067,Uncle Charlie Oakley,21734,7664,1 +3068,Ingham,25934,1250670,17 +3069,Detective (uncredited),3078,14453,11 +3070,Melvin Dummar,38772,12406,1 +3071,Vickey,13408,944140,8 +3072,Mrs. X,985,14796,3 +3073,Greg,44932,175883,3 +3074,Barber,9475,1800179,35 +3075,Jeremy (uncredited),12311,37875,33 +3076,Director,32227,152727,11 +3077,Rayanne,26689,81287,2 +3078,Mrs. Walker,11630,133581,10 +3079,Policeman #3,45964,159032,13 +3080,Jim Levenstein,2105,21593,0 +3081,One Big Happy Family Member,32872,1720976,20 +3082,Blue,2034,19767,6 +3083,Red Crow,20307,7862,7 +3084,Curtis,6552,108438,13 +3085,Capt. Stillman,10890,14101,6 +3086,New tenant,109472,1046577,5 +3087,Christiane,9589,58105,0 +3088,Highpockets (uncredited),11697,8245,80 +3089,Ray Bronson,3597,33260,3 +3090,Katie Nanna,433,2926,8 +3091,Polonius,141489,7668,1 +3092,Henry 'Pop' Gehrig,19140,31209,6 +3093,Midget Nut,20075,19754,12 +3094,Emilia,35284,232893,14 +3095,Juliana (voice),18937,10223,5 +3096,Student / Officer,32093,127520,20 +3097,Dawn Schafer,48287,40978,3 +3098,Scars,12106,534,11 +3099,Jimmy,13408,83108,7 +3100,Violet Downey,217802,1055340,3 +3101,Norma Cassady,12614,21818,3 +3102,Captain Eaglehorn,244,3245,3 +3103,Hector,20287,48136,12 +3104,Kalen,2135,1470328,17 +3105,Politician (uncredited),15,121253,117 +3106,Bat Mac Pherson,43832,13789,2 +3107,Cmdr. Kruge,157,1062,8 +3108,Himself,10663,166029,14 +3109,Godzilla,1678,235722,18 +3110,Jason 143,36658,174037,18 +3111,L'aveugle,194,1379561,28 +3112,Puma,15263,50303,15 +3113,Prem,14587,135927,24 +3114,Father McFeely,4248,4512,10 +3115,Agent Weine,9532,43774,9 +3116,Beverly Hills Chick #1,24739,3981,15 +3117,Newsreel Man (uncredited),15,1423323,29 +3118,Stacy,9066,102313,22 +3119,Candy,278621,1189231,7 +3120,Helicopter Pilot #1,10207,1685460,15 +3121,Mr. D / Mephisto (voice),58904,6008,2 +3122,Anna Marvin,10276,49824,4 +3123,Mrs. Patterson,9591,67805,19 +3124,Beria,9977,61351,19 +3125,Mrs. Alfonsín,7305,1230529,31 +3126,Ruby,153141,11110,1 +3127,Tommy Kelly,16806,2171,2 +3128,Teen Party Guy,11442,39353,24 +3129,Cindy,60994,25540,8 +3130,Divatox,6499,106487,10 +3131,Michelle,33689,1331573,10 +3132,Ambassador Trentino of Sylvania,3063,4343,6 +3133,Laverne,205054,161358,13 +3134,Burly man,12584,16071,12 +3135,nattvakten,29224,1027813,11 +3136,Marsh,19855,1527167,13 +3137,Robert 'Rabbit' Nurick,664,2394,6 +3138,Eva Santana,95627,10767,1 +3139,Miss Caswell,705,3149,8 +3140,Susan Decker,14370,79741,22 +3141,Reporter,2984,185044,42 +3142,Parade Father,38554,1531882,27 +3143,Father Alek,47493,38559,0 +3144,Stan,12220,3026,2 +3145,Terry,10543,1328752,9 +3146,Politician (uncredited),15,1023934,116 +3147,Duck,29475,68750,0 +3148,Chief Cicatrice (Scar),3114,30553,7 +3149,"Paul, le rendez-vous de Sally",28384,188728,8 +3150,Alla Shustervich,47504,20005,2 +3151,Dr. Handayû Mori,3780,17540,10 +3152,Eddie,31503,108098,2 +3153,Ed,31598,1869985,11 +3154,Carl Schecter,11377,7268,7 +3155,Chastised Gambler,524,1644894,45 +3156,Dr. Horniker,1443,518,6 +3157,Marcel Pagnol à 5 ans,12716,1729936,14 +3158,Dead Eye,41160,480,13 +3159,Nick,9593,10360,9 +3160,Jay,2293,19302,7 +3161,Meredith,21629,10080,3 +3162,Moving Man #2,4011,1073806,19 +3163,Jessica Chandler,12618,51072,14 +3164,Priory,14612,14261,0 +3165,Maurice,28134,17485,0 +3166,The clergyman,32600,14921,5 +3167,Baylene (voice),10567,23709,8 +3168,Col. Murdock,23518,12312,11 +3169,Dr. Holger,25682,1120189,9 +3170,Edwards' Radio Operator,10590,65709,43 +3171,Adm. Skeet Kelso,2102,10017,1 +3172,Stillman's Aid,10890,95140,7 +3173,Silver Melville,6440,2842,11 +3174,Bully,16314,951568,12 +3175,Princess,12230,39802,13 +3176,Sampston,43277,5832,6 +3177,Bailif,117,1886582,30 +3178,Duke Santos,299,4355,6 +3179,Harold Reed,858,75201,18 +3180,Mona,22213,26483,8 +3181,,37532,1520857,3 +3182,Isabel Bradley,24453,2022,2 +3183,Garage Owner,12129,190781,11 +3184,Hermie,41357,119796,1 +3185,Bevalaqua,91076,4690,1 +3186,Ram,2640,114876,10 +3187,Fievel Mousekewitz,4978,40348,0 +3188,Mr. Brit,17692,1077032,29 +3189,Dolores Fuller,522,520,2 +3190,Margot Tenenbaum,9428,12052,3 +3191,Seth,24254,91458,47 +3192,Mrs. Moritz,3036,9139,10 +3193,Beth Macauley,91217,4431,0 +3194,Jamie's Mom,10708,981323,28 +3195,Walt Cook,27052,96844,2 +3196,Patrick Cornell,16938,1803238,28 +3197,Tony Francis,11692,12217,4 +3198,Himself - Wilbur (archive footage),8672,1428,4 +3199,Biwi Leer,278978,49851,3 +3200,Orphan Boy (uncredited),70801,153738,13 +3201,Danny,755,139997,23 +3202,Jazz Combo Member,28577,227548,22 +3203,Helen Miles Singer,9716,1661645,103 +3204,Stepmother,45861,134038,2 +3205,Jamie Collins,27332,39117,2 +3206,Dixon,105,18708,25 +3207,K-9 Cop,11001,188707,23 +3208,Constable Anna Welch,9977,3052,4 +3209,Mr. Ages (voice),11704,13392,2 +3210,Billy Hitchcock,9532,57599,4 +3211,Louise Cooper,10890,586,4 +3212,Scroop (voice),9016,7486,4 +3213,Steve Christian,27791,18235,2 +3214,Cockney Moll (uncredited),12311,21878,56 +3215,Beatrice Boulain,66634,20081,4 +3216,Jim Fields,10708,17421,36 +3217,Waitress (uncredited),3309,1518741,17 +3218,Vocal Jazz Teacher,2105,184340,24 +3219,Ty,18282,12799,4 +3220,Shirley,24452,114525,8 +3221,Mrs. Nearing,11450,167718,27 +3222,King Kaiser,31044,46946,3 +3223,Brig. Gen. James M. Gavin,9289,8253,59 +3224,Policeman,10735,1417042,13 +3225,Roberto Canessa,7305,52419,2 +3226,Henderson,31671,103036,12 +3227,Mrs. Hunsaker,9475,35515,7 +3228,Shirley Perro-Hasek,11091,4810,10 +3229,Senator Homer Ferguson,28176,2177,10 +3230,Junior Bevil,864,12976,2 +3231,Radar Blazer,11379,51186,24 +3232,Reedy,10354,9277,13 +3233,Gray Thorn,35200,16406,13 +3234,Ted Barton,17057,81183,9 +3235,Professor Donald Kessler,75,517,3 +3236,Earl Lyon,24831,80206,11 +3237,Passenger on Train,29376,44998,9 +3238,Himself,55420,1799812,16 +3239,Taenzerin im Frack (uncredited),5998,101365,14 +3240,Dean Wheaton,16249,80206,4 +3241,Taxi Driver,29067,1208202,10 +3242,Chief Justice/Executioner,197,21431,25 +3243,,48787,47434,6 +3244,Nick,29825,884,9 +3245,Interviewer,28466,1677001,22 +3246,Brady Livingston,16550,166944,18 +3247,Helen McCaffrey,2924,28412,6 +3248,(uncredited),269,1513488,25 +3249,Nigel (voice),12,118,10 +3250,Carl,11524,1117,6 +3251,Sergeant,5924,14069,13 +3252,Eddie,21148,27515,6 +3253,American Sailor,2984,186411,29 +3254,Martha Schmidt,33016,70011,0 +3255,Coroner,11442,1672961,29 +3256,Miami,28387,7489,6 +3257,Bert,13105,14853,12 +3258,Ruben,38558,977444,7 +3259,Billy Hughes,48787,545828,0 +3260,The Toxic Avenger,15239,78020,0 +3261,General Noriega,19157,4521,7 +3262,Connie Corleone Rizzi,238,3094,11 +3263,Angelo,3537,32384,0 +3264,Hala,38509,6194,0 +3265,Dr. Schuller,10724,74506,32 +3266,Nell Puddick,159727,1141559,9 +3267,Tony,13346,112305,12 +3268,Carol Connelly,2898,9994,1 +3269,Roger,864,12979,7 +3270,Conner Rhodes,10950,156706,19 +3271,Caballero,32093,131544,41 +3272,Prison Security Officer (uncredited),36658,9032,24 +3273,Roneth,1911,156000,8 +3274,Sammy,5491,43613,6 +3275,Margo,6978,20879,5 +3276,Michael Corleone,238,1158,1 +3277,Ed Reynolds,522,7138,13 +3278,Howard Hyde,6951,8977,2 +3279,Helen Kunen,124821,59662,0 +3280,Jesus,2428,2201,0 +3281,Diamondback,11879,3981,4 +3282,Dallas Quarterback,9563,171960,34 +3283,Ambassador Jaume,28973,29308,3 +3284,Charlie,77283,1219786,3 +3285,Kitty Ryan,54405,1053297,10 +3286,Sarah,10269,6199,5 +3287,Lacey and Willy's Mother,40220,1662225,8 +3288,Costas Demitriadis,18683,71010,1 +3289,Frost,755,9811,9 +3290,Rose 'Rosie' Cotton,120,965278,18 +3291,Waldo Magoo,9438,35598,2 +3292,Seargent Tuscarora Phillips,26593,37251,4 +3293,Ray Cochran,6,12799,3 +3294,'Backa' Bourke,21828,1311060,5 +3295,Reno Jail Cop,12499,127738,16 +3296,Pinky,3063,10800,1 +3297,Larry Lefferts,10436,20766,10 +3298,Ilio Manzetti,4012,30458,31 +3299,Blo-Edin,5608,44351,10 +3300,J. Robert Oppenheimer,27461,28248,1 +3301,Susannah,29449,136835,4 +3302,Cardinal,9946,53490,12 +3303,TV Commentator,16249,11168,10 +3304,Vivienne Haigh-Wood,46797,8436,1 +3305,Harry Damon,11601,119521,4 +3306,Mike Gavin,39833,9112,5 +3307,Lane Dandrige,9716,12930,10 +3308,Dan Starkey,43997,11207,0 +3309,Twitchy Suspect,11001,65831,28 +3310,Murphy / Railroad Foreman (voice),9023,56659,4 +3311,Running Bull,35200,47886,3 +3312,Maggie McKeown,24831,92691,1 +3313,Emilio Gabriel Fernandez y Figueroa,3114,30555,10 +3314,"Lieutenant, Division Public Relations",37305,32894,15 +3315,FBI Agent Jack Hatch,9294,4943,11 +3316,Barmaid,7514,52828,15 +3317,Capt. Mark McCluskey,238,3088,5 +3318,Amber,19855,1527165,11 +3319,Lady of Lyonesse,30584,45523,8 +3320,Charles Foster Kane III,15,1198371,16 +3321,Karen Hughes,48787,102754,1 +3322,Woman in Carriage,433,1787560,19 +3323,Barney Satin,40866,51962,1 +3324,Dr. Wells,210092,195111,9 +3325,Motel,14811,112253,2 +3326,Bobby,11601,1060579,7 +3327,Pickpocket,289,2313,13 +3328,Additional Player,9563,1741404,39 +3329,Spalding,409,93177,40 +3330,Doper Coyote,22023,1577163,27 +3331,Liberty Valance,11697,18391,3 +3332,Det. Meyer Meyer,4986,726,2 +3333,Spanish Sports Announcer,11535,185165,64 +3334,Dr. Joan Tallis,55420,1518678,24 +3335,Ted Stroehmann,544,7399,1 +3336,Hal Wright,61548,11867,4 +3337,Lily,46989,236049,5 +3338,Don The Horse (Voice),30690,7180,1 +3339,Jack 'Cap' Rooney,9563,6065,2 +3340,Gordon's Friend,9079,1089421,11 +3341,Inmate,29492,1038757,13 +3342,Bunny Breckinridge,522,1532,7 +3343,Allia,35569,550564,2 +3344,Blonde Nurse,400,35597,13 +3345,Cooper's Groupie,18414,5888,6 +3346,Mäster,8816,1778142,15 +3347,Leutnant Hans von Witzland,11101,3491,1 +3348,Vinh,15379,136420,5 +3349,"Binder, Cellist",43596,39044,8 +3350,Alastair Davies,45928,17202,4 +3351,Elderly Man (Right outside the Police Office),22328,33178,16 +3352,Carol,24750,129222,14 +3353,Himself (voice),18890,44127,8 +3354,Lord Glenarvan,34774,15387,3 +3355,Guildenstern,141489,7072,4 +3356,Wullie Smith,41160,66587,0 +3357,Australian Navy Lieutenant (uncredited),15875,30560,19 +3358,Garrett Blake,10207,1269,0 +3359,Lisa McDowell,9602,155783,4 +3360,Al,11374,2641,4 +3361,Dylan,10708,1786648,21 +3362,Nelson,3595,52861,19 +3363,Guest at Rick's (uncredited),289,1331770,73 +3364,Singer,15556,137386,10 +3365,Partygoer,2898,1080070,31 +3366,Biff Miley,69605,109406,5 +3367,Grod,13853,168627,7 +3368,Hard Hat,34223,1668100,17 +3369,Lucky Mann,26941,1733,0 +3370,Coroner,229,1206587,45 +3371,Pat,46989,60460,4 +3372,Plain Clothes Policeman,3092,1538453,18 +3373,Filé-com-Fritas,598,8605,11 +3374,Leon Sprague,10724,175871,38 +3375,Dean Edward Parker,10750,20959,9 +3376,Schiller,38618,231649,6 +3377,KGB Driver,1374,1877402,15 +3378,Knobby,10543,15032,10 +3379,Mrs. Wurtzel,16229,4431,5 +3380,Marketing Girl,10708,1786657,45 +3381,Grocery Store Man,9516,156963,6 +3382,Chairman of Devil's Council,40866,15972,9 +3383,"Shad, Allysa's Brother",1811,11864,12 +3384,Guard,12506,17203,15 +3385,Mr. Kastran,46989,236056,14 +3386,Baroness,2984,1887359,17 +3387,Bridget Rossiter,10354,4003,20 +3388,Maggie Pistone,9366,8256,5 +3389,Guido,145925,119950,0 +3390,Musician on Boat,76,1265424,25 +3391,Lisa,15762,20363,16 +3392,Lt. Jesse Ryan,40688,157904,10 +3393,Mr. Shulman,215373,18999,8 +3394,Ryko,12309,21259,10 +3395,News Anchor #2,2637,27711,28 +3396,McMacy,6552,9996,8 +3397,Willard Stiles,10929,1064,0 +3398,Visitor,9905,480,7 +3399,Ralph Yarby,24816,80206,3 +3400,Man at Wagon Wheel,49410,104342,5 +3401,Nick's Sister,2721,5963,9 +3402,Connie,178,1073838,13 +3403,Col Barney White,36554,10925,6 +3404,Bob Morrison,47329,126667,9 +3405,Timo,32872,8979,31 +3406,Bugs Watson,43828,74876,6 +3407,Claudia,422,4959,1 +3408,Production Manager,30363,140062,10 +3409,The Hunter,150211,212938,2 +3410,Airport Tourist (uncredited),6068,1609276,58 +3411,Death,9593,1327,10 +3412,Man (uncredited),490,244278,22 +3413,Daria,49788,83665,3 +3414,Margaret Ladelle,92769,1087584,7 +3415,Bully,16314,168938,13 +3416,Blanche,621,8903,13 +3417,Needles,6978,169628,12 +3418,Seaman Ron Fellows,26946,102795,6 +3419,Spartanette #3,14,1503020,27 +3420,Meta Carson,678,10160,3 +3421,Terrence Mann,2323,15152,5 +3422,Terrell Lee Lusk,78373,56857,1 +3423,Coach Passenger,31995,1196060,24 +3424,Roger Corneal,299,14731,10 +3425,Roy Amundsen,34582,63765,0 +3426,Waitress (uncredited),3309,83988,16 +3427,Keg Guy,11397,1773791,55 +3428,Marcia Linnekar's Attorney (uncredited),1480,29626,29 +3429,Cadet Wuliger,11008,26999,5 +3430,Gen. Starkey,35284,2264,11 +3431,Mark Montelli,16235,80139,9 +3432,Silent Bob,2293,19303,8 +3433,Andy McDermott,9406,16857,0 +3434,Skelly,161795,13333,2 +3435,Marko Dren,11902,48791,0 +3436,Jo's Boys 3,54405,1752857,19 +3437,Mandy Murphy,9563,19189,17 +3438,Katalin,29471,37343,3 +3439,Paolo,26030,39093,1 +3440,Diego Delgado,4133,31384,7 +3441,Ben,13567,98927,13 +3442,One-Eye,9902,106469,8 +3443,Robin Gantner,15734,7631,1 +3444,Dowd,47112,9029,1 +3445,"Jana, Lucifer's Sister",1811,9205,18 +3446,Detective Outside Chinese Laundromat,11576,34286,20 +3447,Balthazar,2428,1820,43 +3448,"Jacob ""Jake"" the Tiger",3050,13,12 +3449,Brian's Mom,2108,1073866,11 +3450,Policeman,10440,17859,19 +3451,Chevy Chase,9593,54812,20 +3452,Mondo Naganuma,11645,52211,12 +3453,Parks Employee,10708,1786659,49 +3454,Ronnie Winslow,28519,1320100,7 +3455,Norma Bates (voice) (uncredited),539,19110,22 +3456,Tommy,10394,26258,5 +3457,Melchisidek,1911,5004,14 +3458,Saloon Patron (uncredited),2897,1624216,281 +3459,Long Hair Yuppy Scum,5,2545,11 +3460,Spectator at Second Fight,26378,1271642,48 +3461,Pam,17496,66079,3 +3462,,281085,24362,3 +3463,Anthony Vito Corleone/Turiddu,242,3269,10 +3464,Man in Projection Room (uncredited),15,1230787,88 +3465,Schoolteacher,12104,994272,4 +3466,Clara,43828,399224,15 +3467,Don Michael Corleone,242,1158,0 +3468,Reardon,29372,85993,9 +3469,Candy,9609,4093,2 +3470,Erhard,10518,3140,7 +3471,Debbie,30924,107310,6 +3472,Roscoe Devine,22256,26457,4 +3473,Lisa,104103,40938,3 +3474,Linda,11983,66913,5 +3475,Mayor Grundy,235,3044,12 +3476,David,2453,20761,14 +3477,Robot Barman,18,1857450,93 +3478,Patsy Dwyer,11472,571982,10 +3479,Photographer,27681,984930,14 +3480,Dr. Louis Flellis,15902,1196242,0 +3481,Tristan Ludlow,4476,287,0 +3482,Rusty,10847,1077742,23 +3483,His partner Billy Meekin,32600,99377,1 +3484,Passerby on Sidewalk (uncredited),539,1469587,27 +3485,Mrs. Caspar,379,1126347,15 +3486,Monty,159727,106991,3 +3487,Inspector Hsu,9717,168247,14 +3488,Kanbara Seiichi,34326,21499,4 +3489,Jim Garrity 'The Loot',61813,52288,5 +3490,Liparus Captain,691,109865,13 +3491,Bus Driver,29698,135056,25 +3492,Eunice Leonard,678,97042,13 +3493,Carla Brody,580,16215,4 +3494,Pel,2750,749886,39 +3495,Steve Kerrigan,13852,26056,3 +3496,Murphy,10652,21733,3 +3497,Lizzie Lansdale,42149,150212,6 +3498,Blaine Hammersmith,3050,13242,13 +3499,Salt Vendor,11953,1484294,26 +3500,Lorraine,165,1063,2 +3501,Cliff,11622,51797,4 +3502,Buster Baxley,2757,15439,12 +3503,Sub-Zero,9312,57254,8 +3504,Concierge (uncredited),289,120778,33 +3505,Meter Maid,796,1049208,16 +3506,J.J. (as De'Aundre Bonds),47816,93538,10 +3507,Dominic,18002,82804,8 +3508,Lady Belfield,606,10653,9 +3509,Ygal,125945,1888570,14 +3510,Naina Catherine Kapur Patel,4254,35745,1 +3511,Gen. Carson,35284,8253,2 +3512,Baby,4986,1270,14 +3513,Molly Sheridan,32043,65017,5 +3514,Dick Forrest,415072,90369,9 +3515,George Henderson Sr.,8989,588,8 +3516,Veronica,18683,1889106,24 +3517,Mrs. Sims,27150,1048852,8 +3518,Shakespearean Actress,696,4432,14 +3519,Larry,277726,6355,1 +3520,Executive #2,522,1408508,31 +3521,Lo Spagnolo,5155,42409,3 +3522,Corner Man,153141,17201,24 +3523,Andy Wilson,31586,162985,33 +3524,Grocer,12102,1180131,17 +3525,High School Girl,55420,1799815,19 +3526,Mr. Paulsen,19200,6541,13 +3527,Abuela,29263,1095017,13 +3528,Tec,13411,59229,15 +3529,Baldy,43832,30243,27 +3530,Concierge,8467,1853175,37 +3531,Dr. Archer Scobee,1073,15253,7 +3532,Lilly,10937,155457,8 +3533,Kirgo,11185,1979,3 +3534,Lady Montague (voice),45772,477,3 +3535,Mooney,39578,107336,8 +3536,Dr. Mary Guinan,2887,21104,15 +3537,Young Man In Cinema No. 2,73067,72466,6 +3538,Raychel,41209,66586,1 +3539,Actor,11337,11511,5 +3540,Groom,11159,143181,21 +3541,Joan Wilder,10303,3391,1 +3542,Ray Gun Geek #1,15144,1717647,17 +3543,Expressman (uncredited),34106,122979,82 +3544,Dr. Jaslow,10950,12226,15 +3545,Man (uncredited),34106,100800,97 +3546,Edmond des Papillons dit Mond des Parpaillouns,12716,35003,8 +3547,Riley,11517,4887,5 +3548,Kira (voice),11639,174420,7 +3549,Steve,37410,1231352,17 +3550,Leroy,28120,99754,11 +3551,Prison Guard,10400,1393350,64 +3552,Broken Ivory Bartender,215373,944895,17 +3553,Third Uncle,12481,1624474,13 +3554,Mary Klein,2637,23959,4 +3555,Hoverboard Girl #2,165,1434980,24 +3556,Ross,11458,4451,8 +3557,Handyman,5425,1644869,7 +3558,Phil,24254,91305,27 +3559,Howard's Agent,9403,31032,35 +3560,Det. Sgt. Joe Fink / Narrator,24452,102727,5 +3561,Coral,9819,76096,10 +3562,Lizardo Hospital Guard,11379,783,22 +3563,Liz Holt,10409,14226,5 +3564,Diane,46989,8985,0 +3565,Shu Kai Kim,31863,56120,3 +3566,Reporter,2984,106628,35 +3567,Mayor,24645,92111,6 +3568,Neera (voice),10567,25654,6 +3569,Park Ranger,22398,1200994,12 +3570,Lester Burnham,14,1979,0 +3571,Mr. Dawes Junior,433,13392,13 +3572,(uncredited),29263,1523920,22 +3573,Mr Bell,25934,79359,16 +3574,Arshile Gorky,16351,10917,0 +3575,Sarah Michaels,54287,41264,6 +3576,Bobby,3784,33836,12 +3577,Blane Youngblood,17465,1021440,5 +3578,Tomislav,11902,1462021,15 +3579,Lucy Barnard,30308,106031,10 +3580,Valérie Duroc,42726,39199,3 +3581,Gossip,1859,1471655,18 +3582,Lieutenant Edwards,76397,84325,9 +3583,Woman in U.S.O. Club,10400,62129,35 +3584,,25538,150165,13 +3585,Assistant Bartender,43828,1472495,63 +3586,Anthony,9516,170159,9 +3587,Drunk,12454,122589,22 +3588,Doc Brunder,9294,3087,3 +3589,Victor Frankenstein,3036,11181,1 +3590,Judy Abbott,70801,100047,0 +3591,Omar,11011,218589,5 +3592,Himself,9563,1901242,68 +3593,Pat Derry,887,95315,9 +3594,Guy in Bar (uncredited),93350,1857011,27 +3595,Bugler,9820,1106822,8 +3596,William Helms,80350,1219474,6 +3597,Lieutenant Young (uncredited),11202,153085,33 +3598,Trudy Osborne,41038,97574,3 +3599,Cloakroom Girl,2750,128742,38 +3600,Drone,811,12124,4 +3601,Gustave Sors,17771,12642,7 +3602,Liesel Jurgensen,10219,87208,21 +3603,2nd Seductress Third Class,8072,1326576,5 +3604,Crilly,9717,61167,13 +3605,Conspirator (uncredited),289,1331760,46 +3606,Waiter,10603,1748125,45 +3607,Aakhri Pasta,85052,81983,12 +3608,Wedding guest,1377,121323,12 +3609,Woman in Front of Chronicle Building (uncredited),15,1422376,139 +3610,Tango Hirayama,11645,19049,9 +3611,Mikell,49788,1015461,11 +3612,Waitress,38965,40625,8 +3613,Fireman,28774,85869,6 +3614,"Mann, der die Pistole bekommt (uncredited)",5998,48048,15 +3615,Ronnie Blum,118098,26257,4 +3616,Samantha Cole,1624,7906,3 +3617,Sfc. Carl Palmer,10590,1212551,27 +3618,Joanna - Marek's mother,79782,591258,1 +3619,Bertie Knox,31005,9280,4 +3620,Jake Briggs,11800,7036,0 +3621,Ensign Quinlan,26946,89040,8 +3622,Jim O'Connor,12102,14102,5 +3623,Amy,37410,1511375,7 +3624,Dave,24584,1781141,7 +3625,First Gravedigger,141489,87027,5 +3626,Gus Sinski,10390,4764,2 +3627,Officer H.R. Barrett,30308,30417,7 +3628,Mama Mousekewitz,4978,40349,3 +3629,James Nilsson 'Red' Sundstrom,61934,91708,7 +3630,Klara Herzog,282919,48775,1 +3631,Chinese Man,1813,8400,29 +3632,Diana Looran,30202,1220981,4 +3633,Juan,22023,1577155,6 +3634,Diane Szalinski,9354,57418,1 +3635,Vox,2135,18270,13 +3636,"Mrs. Vyse, Cecil's mother",11257,948582,11 +3637,Merlin,124057,56890,1 +3638,Turk (uncredited),39771,5694,14 +3639,Dr. Keisling,29318,9899,5 +3640,Eli,12479,61981,11 +3641,Denetra Washington,31978,108669,3 +3642,Thug,11001,1235963,47 +3643,Edward,16351,10268,1 +3644,Charles VII,10047,6949,3 +3645,Colonel,10568,967735,10 +3646,Eliseo,552,7553,14 +3647,Dr. Brown,17770,7133,8 +3648,Arlis Sweeney,18551,6065,1 +3649,Morris Goodman,2892,27753,2 +3650,Sophie,47119,19888,1 +3651,S.W.A.T. Driver,1637,204749,23 +3652,Tim,3784,78729,4 +3653,Announcer,28169,1073196,6 +3654,Marshall Pear,29739,104793,4 +3655,Josh Burnbalm,14819,147499,7 +3656,Andy,49410,83187,11 +3657,Girl in Market,39867,1459031,9 +3658,Duvall,10173,118130,9 +3659,Scarpaio,10867,1850977,38 +3660,Guard Ivory,638,9293,11 +3661,James Bond,709,10669,0 +3662,Dr. Carol Marcus,154,1794,8 +3663,First Man at Bar,262,1006721,24 +3664,Fourth Gunman,26593,95741,12 +3665,Dzamila,20123,85647,7 +3666,Prosecutor,3063,30017,9 +3667,Aman's Mother,4254,35750,5 +3668,Gyp Watson,43828,30005,5 +3669,Lady with the Cat,23069,12283,5 +3670,Vicky's Mom,2105,1394788,31 +3671,Lauren Kelly,59930,9575,7 +3672,Friar Vosper,30584,134667,13 +3673,Kessis Mutter,9589,1728634,9 +3674,McCalister,19324,83037,4 +3675,Referee,19157,134074,14 +3676,Anton Gogoladze,105763,20918,3 +3677,Medical Examiner,2124,1638394,13 +3678,Tanner Boyle,19050,31468,4 +3679,Dippy,26378,33024,9 +3680,Francine,9902,51936,5 +3681,Amandine Poulain,194,2409,9 +3682,Elevator Passenger (uncredited),3085,121098,28 +3683,Deputy Cortez,20287,73132,14 +3684,Howard's Daughter,9403,91351,42 +3685,Miss Jessop,9555,1040111,10 +3686,Marc the Doorman,3682,3072,7 +3687,Shirley MacLaine,12186,4090,11 +3688,Cheryl,31005,129658,3 +3689,Martha the Masseuse (uncredited),17057,112365,13 +3690,Villager of Tullymore,10162,1609672,49 +3691,Dr. Pemberton,13550,101851,5 +3692,Mrs. Frankel,4012,1192385,23 +3693,Michael Myers / Man In Black,11361,33299,4 +3694,Pinky Carruthers,11379,1217124,19 +3695,Jeremy,49792,11067,11 +3696,Isobel Banning / Princess Ananka,18990,5962,2 +3697,Willie,469,6394,0 +3698,Charlie Hogan,235,3038,10 +3699,,2087,5605,8 +3700,Amelita,26593,34695,7 +3701,Foreign Visitor in Car,795,14740,12 +3702,Knowledge,12888,1107016,5 +3703,Roy O'Bannon,8584,887,1 +3704,Becky,10692,157914,1 +3705,James Ellswirth,57575,12308,2 +3706,A.W. Alabaster,43139,985305,8 +3707,,9289,32162,34 +3708,Paul,10873,554271,7 +3709,Norton Baskin,115332,9979,2 +3710,Teramoto Tadashi,28273,18615,13 +3711,Griff McReynolds,9308,327,3 +3712,Skip Donahue,21629,3460,0 +3713,Co-Pilot,7305,21091,29 +3714,Rock Singer,11535,77271,30 +3715,Proskovia,30175,156669,8 +3716,Man in Shoe Store,1793,44894,12 +3717,Male Page,9591,3492,24 +3718,Dolores Benedict,11591,3391,1 +3719,Col. Benjamin Vandervoort,9289,4165,71 +3720,Wallace,8584,27740,6 +3721,Campbell,25934,1847231,22 +3722,Maax,16441,9626,2 +3723,The Girl (voice),9325,102860,13 +3724,John Ingram,10493,4783,1 +3725,Jamal,47507,5418,2 +3726,Davidson,623,189430,17 +3727,Steve Banning,31498,81168,0 +3728,Nehemiah Jackson,31306,38571,7 +3729,Guest (uncredited),15,1281296,107 +3730,Jack Sturgess (Squatting Dog),40490,54812,1 +3731,Wolf Woman,32595,1089441,3 +3732,Romeo,10622,1426135,5 +3733,,33356,146755,1 +3734,Sean Smith,141,20094,22 +3735,Amy's Classmate (uncredited),39938,121220,17 +3736,Max Schreck,10873,5293,1 +3737,Claire's Father,2108,987357,12 +3738,Felicia,9877,196707,14 +3739,Mondoshawan / Mangalore Aknot / Airport Guard,18,240745,36 +3740,Deputy Sheriff Gutierrez,43002,12950,6 +3741,Woman Customer (uncredited),289,1331774,81 +3742,Glynnis Payne,10735,10731,6 +3743,Jack,15256,12217,6 +3744,Bill Miner,42136,5605,0 +3745,Smith,28597,15099,7 +3746,Kowalski,11517,33658,7 +3747,Jerome's Mother,26422,127267,8 +3748,Arturo,9343,1758317,19 +3749,Locksmith,623,1549646,16 +3750,,47596,67913,5 +3751,Officer - El Taj,409,109874,41 +3752,Truck Stop Manager,10866,87404,18 +3753,Conchita,59181,228962,6 +3754,Renee,12684,102886,4 +3755,Pemsel's adjutant (uncredited),9289,36992,69 +3756,Studio Executive #1,9296,60568,14 +3757,Beaufield Nutbeem,6440,7026,6 +3758,Spider,10373,1491043,12 +3759,"Dick Croner, Trudy's Assistant",15170,10697,2 +3760,Alberto,9716,1661620,77 +3761,Art Corwin,23518,32328,12 +3762,Himself,2300,23678,0 +3763,Townsman at Carnival (uncredited),220,1090894,22 +3764,Yukie,8856,29381,11 +3765,"Alois Sträubleder, Unternehmer",4762,39306,11 +3766,Gina,278621,1257982,4 +3767,Prof. Jerry Hathaway,14370,7676,3 +3768,David,8463,55145,4 +3769,Karen,2144,69303,12 +3770,"Hank Blaine (segment ""Father's Day"")",16281,228,7 +3771,Madwoman's father,3780,134312,17 +3772,Artie,9889,22297,10 +3773,Marcelle Ichak,105763,34595,1 +3774,Elwood Blues (as Elwood),525,707,0 +3775,Noah,16229,1244,4 +3776,Al Sims,42136,16562,7 +3777,Brian Ralph Johnson,2108,1904,1 +3778,Willie Lopez,251,3432,7 +3779,TV Host,3682,33660,16 +3780,Larry Pesch / Vito / Lorenzo Franconi,31598,68186,10 +3781,Nicola Anders,9296,1920,5 +3782,Mugger,18,2406,14 +3783,The Cheese Whiz,525,122108,29 +3784,Merwyn,29067,100790,4 +3785,Military Technician,18,1857441,85 +3786,,124633,171352,14 +3787,Mourner,20645,7456,11 +3788,Okoto,3780,1198505,39 +3789,Chairman of the Joint Chiefs,9087,43978,16 +3790,Barkus sparring partner (uncredited),32049,127478,53 +3791,Ti-Guy,42832,142995,2 +3792,Kevin 'kid' Collins,25501,12261,0 +3793,Extra (uncredited),2897,1422376,188 +3794,Ellie Mannering,28295,103719,6 +3795,Hamid,39176,96993,10 +3796,Irene,2110,21665,6 +3797,Deirdre,46924,192940,14 +3798,Musician,43828,1472493,60 +3799,Coroner,25673,2673,13 +3800,Mrs. Wilson,20424,98160,12 +3801,Woman,46797,10731,10 +3802,Dr. Patrick Shaye,2625,27544,3 +3803,Lettuce Truck Worker (uncredited),220,1214919,53 +3804,Dr. Susan Drake,29343,98608,1 +3805,Pablo Escobar,4133,7248,8 +3806,Lajjo Kapur,4254,35749,14 +3807,Freddy,1497,85424,30 +3808,Jester,744,11086,5 +3809,Juliet Ash,18801,192822,7 +3810,Himself,9403,1234655,34 +3811,Boy in Street (uncredited),29698,135062,32 +3812,Girlfriend #3,15037,63470,8 +3813,Éliane,166,1976,14 +3814,Quoyle,6440,1979,0 +3815,Townsman (uncredited),11697,170562,31 +3816,Man (uncredited),34106,1204349,92 +3817,Coleen,62463,235362,2 +3818,Erica Geerson,11531,57514,2 +3819,Billy,9529,11769,7 +3820,Harold Williams,49365,1720476,9 +3821,Whitt,9609,19578,7 +3822,Lt. Cmdr. Peter Hume - HMS Devonshire,714,1423898,24 +3823,Henry's Secretary,10735,1221046,17 +3824,Lt. Bill Butterfield,38766,933830,10 +3825,Cindy Robberson,26261,65409,6 +3826,Jerk,11185,7471,27 +3827,Marlene,70489,990489,18 +3828,Undetermined Role,31995,153165,33 +3829,Karen,2084,9144,6 +3830,Daniel Fernández,7305,12055,17 +3831,Rudy Tyler,13766,67893,3 +3832,Thomas Ayerton,34774,3361,2 +3833,Claire Standish,2108,21625,3 +3834,Blonde Saloon girl,9028,132263,8 +3835,Zalmie Belinksy (voice),29204,583796,2 +3836,Dr. Richards,43266,14509,12 +3837,Detective Gordon,30308,6933,9 +3838,The Mother,43143,1193047,14 +3839,Boss (as Xian Xie),47694,70439,7 +3840,HMS Ranger Crewman,691,2449,20 +3841,Monica Purley,11159,127164,3 +3842,Stiva,50512,6413,6 +3843,Teola Graves,71067,1302584,2 +3844,Boss Mi,12481,72432,4 +3845,Suburban Family,88224,1018643,4 +3846,Cox Twin,35292,159173,36 +3847,Frankie,9358,65772,13 +3848,Video Store Employee,28169,1271528,14 +3849,Bob,29825,101908,13 +3850,Insp. Chan Ka Kui [Cameo],38955,18897,3 +3851,Newsreel Man (uncredited),15,1369283,24 +3852,Bass Player,15037,1242281,11 +3853,Soldier,32093,1422325,28 +3854,Thug,549,6807,12 +3855,Frank Renda,26173,3091,1 +3856,Cary,9540,57881,2 +3857,Moroccan (uncredited),289,1263504,40 +3858,Cook,11236,1542809,9 +3859,Jewel,38982,21625,0 +3860,Lexi at 15,26149,18793,6 +3861,Ron Wachter,10862,67579,10 +3862,Old Musician,54405,1752863,32 +3863,Minister Tang,2140,1257821,14 +3864,Ronnie Gibson,1647,28869,6 +3865,Rudy Sr.'s Girlfriend,14295,1516290,13 +3866,Meslar,24883,4963,5 +3867,Priest,19157,32593,13 +3868,Pinè,10867,553186,18 +3869,Jack Strager,299,3152,12 +3870,Elizabeth,3035,29814,1 +3871,Beulah Gasnick,2323,23975,16 +3872,Ah Quen,9462,1178956,15 +3873,Kate Dove,178,2179,2 +3874,,90762,1500635,14 +3875,Bama,178,2277,9 +3876,Waldorf Guest,9475,1800181,37 +3877,-,28940,52140,15 +3878,Harrison,1574,10132,9 +3879,Joan Parker,24828,65020,6 +3880,Sofía,1902,955,1 +3881,Tony Perkis,14819,7399,0 +3882,Sal Kerrigan,13852,75890,1 +3883,Nerve Nordlinger,40866,41253,6 +3884,Russian Leader,30379,235858,10 +3885,Kyoami,11645,17538,8 +3886,Count László de Almásy,409,5469,0 +3887,Fabrizio,238,27647,34 +3888,Shayne,15143,58045,8 +3889,Truman-Lodge,709,10682,9 +3890,Frank Fowler,1999,6408,2 +3891,Man in Chair,249,198,4 +3892,Iturbi's Assistant,17889,30280,17 +3893,Anthony Franklin,178,2178,4 +3894,Clarice Kensington,33689,92255,4 +3895,William,2021,1327,9 +3896,Girl in Old Gold Cigarette Pack,31044,52144,57 +3897,Bill - Anna's Fiance (uncredited),22292,124091,16 +3898,Gwen,16643,47058,5 +3899,Charles Deetz,4011,4004,5 +3900,Roz,19760,18277,0 +3901,Dina Lake,11692,5916,2 +3902,Benjamin Rasnick,2115,21736,9 +3903,Drug Store Owner,4147,1571861,26 +3904,Teenaged Carl Panzram,59569,1491922,6 +3905,Angelica - Mother-in-law,22292,95263,8 +3906,Jeff,9087,92808,17 +3907,Michael 'Mike' Brody,17692,6065,0 +3908,Charlie Seymour,26603,2223,1 +3909,Christabella Andreoli,1813,935,5 +3910,Ms. Cummings,12606,78589,11 +3911,Kevin Robberson,26261,18259,5 +3912,General Rogers,10724,107549,16 +3913,Harry Winston Salesman,9716,84249,19 +3914,Janine Elson,25087,1384703,4 +3915,Dr. Anton Arcane,19142,10508,0 +3916,Policeman (uncredited),289,32195,63 +3917,Syd,20438,99592,11 +3918,Denham,25934,134234,2 +3919,Hays,23730,149214,10 +3920,Adam Park / Green Ranger,6499,50096,0 +3921,Janiece,11001,59154,10 +3922,Malak Al Rahim,23599,57756,2 +3923,Mandrake' aide (uncredited),935,184980,19 +3924,Sgt. Strode,19108,1789028,3 +3925,Jane,18477,1029004,3 +3926,John Stoner,161795,140167,7 +3927,Людмила Свиридова (Люда),21028,86999,1 +3928,Photographer #1,522,1683090,57 +3929,Bystander,10518,14551,12 +3930,Extra (uncredited),2897,1597814,231 +3931,His trainer,51371,96061,6 +3932,Professor Strowski,522,554248,46 +3933,Big Thai Man,10222,1076566,8 +3934,Olivier,2110,21666,7 +3935,Bürgermeister,229,2930,8 +3936,Lola,29572,112,6 +3937,Barbara Brownig,9532,64897,15 +3938,Sid Lidz,52856,1241,1 +3939,"Sam, Movie Director",39578,38761,3 +3940,Sophie,37820,106820,2 +3941,Barkus sparring partner (uncredited),32049,1502544,50 +3942,Native Indian,32049,1502519,38 +3943,1st Sgt. Mulligan (artillerly unit),11589,78091,21 +3944,Player's Wife,9563,1741430,59 +3945,Priest,36915,37255,14 +3946,Simone,9296,35198,1 +3947,Captain Smalls,11120,77027,14 +3948,Mark Anderson,21060,87047,2 +3949,Party Guest (uncredited),3309,120044,13 +3950,Daisy Werthan,403,5698,1 +3951,,83562,79875,15 +3952,Jack Evans,9272,52,3 +3953,Vance or Towers,7340,52473,22 +3954,Copy Boy (uncredited),15,1422117,77 +3955,English Judge,10047,3548,11 +3956,SEC Agent Cohler,29076,1319273,8 +3957,Little Mermaid,229,2944,19 +3958,Librarian,16307,83739,4 +3959,Sonia Rostova,11706,78181,8 +3960,Mrs. Elizabeth Grey,13550,1219190,7 +3961,Alex,13105,76513,2 +3962,Selim,33367,2282,1 +3963,Store Clerk,6951,1648605,17 +3964,Walter Carpenter,4806,15900,6 +3965,Catherine,21734,87827,12 +3966,Extra (uncredited),2897,89522,96 +3967,The Girl,32628,144005,1 +3968,Grinning Husband,11159,1231626,38 +3969,Newspaper Boy,6038,1216067,30 +3970,Policeman (uncredited),289,120545,22 +3971,Eli Wurman,11458,1158,0 +3972,Pat Robbins,47329,18687,8 +3973,Rachael,11980,99,6 +3974,Barman,54405,47778,22 +3975,Salon Model / Chorine in Girl Hunt Ballet (uncredited),29376,15973,17 +3976,Max,10708,81083,13 +3977,Randall Tyson,12538,9626,3 +3978,Daniel Hillard / Mrs. Doubtfire,788,2157,0 +3979,Wilson Crockett,262,14929,11 +3980,Hillary,33135,23647,1 +3981,Father Tom,16235,15668,4 +3982,Grace,96238,20362,1 +3983,Hsiu Chien,12481,62427,2 +3984,Rapper,9716,121294,84 +3985,Rosemary Hume,24266,91492,14 +3986,Zed's Wife,16441,64371,13 +3987,Tony Dio,22213,15183,7 +3988,Chief Gus Monroe,8470,11477,11 +3989,Joel Glicker,2758,38582,21 +3990,Kevin Costello,1793,19134,7 +3991,Eric,19797,8695,3 +3992,Dr. Susan Hiller,2160,3360,1 +3993,Insurance Doctor (uncredited),3085,948509,21 +3994,Loretta,116904,1064876,0 +3995,Mrs. Toad (voice),28032,29314,4 +3996,Josefa,2262,4537,3 +3997,Iris Estelle King,36094,6352,0 +3998,Sue Ann Norris,75,1912,18 +3999,Sem,2525,25781,13 +4000,Dr. Wolfenstein,2662,986334,22 +4001,Correspondent Dickerman,38766,8634,5 +4002,Frank Swan,2107,7166,8 +4003,Himself,2300,1315403,24 +4004,Reverend Lindquist,11943,41243,8 +4005,Beth Holzeck,161495,1231,3 +4006,Younger Woman,42987,121727,11 +4007,Charlie Simms,9475,5577,1 +4008,Nikki,9816,36068,5 +4009,Wendy Torrance,694,10409,1 +4010,Dr. Joseph Danvers,30666,106738,4 +4011,Stabbed Gambler,524,583419,33 +4012,Extra (uncredited),2897,120214,212 +4013,Gov. Rob McCallum,2637,7178,24 +4014,Eve Teschmacher,1924,26483,9 +4015,Grandma Walker,20678,71266,7 +4016,Joshua Shapira,47504,3129,1 +4017,Wally,276635,1212883,9 +4018,Script,11902,1698900,22 +4019,Paul,30202,105825,8 +4020,Jules Deveroux,26946,30647,4 +4021,Pierre,52366,146212,17 +4022,Marcus Rathbone,10671,105308,21 +4023,Mario Mario,9607,382,0 +4024,Doctor,10364,62590,18 +4025,Annalise Hansen,5955,13333,4 +4026,Alice Nelson,12606,1224522,9 +4027,Warden,10400,36172,13 +4028,Aman Mathur,4254,35742,0 +4029,Mrs. Clay,17015,42645,10 +4030,Neighbor Man,476,51339,10 +4031,Phyllis,2321,1912,9 +4032,The Lawyer,30363,102429,14 +4033,Sydney,18683,1705491,10 +4034,Dr. Leo Marvin,10276,3037,1 +4035,Anthony P. Kirby,34106,30211,3 +4036,Charley,11442,62916,18 +4037,Wing Kong Security Guard,6978,1677327,41 +4038,Rob,46989,236050,7 +4039,Jamie Latrobe,27461,32592,8 +4040,Man in Car in Desert (uncredited),11576,2492,45 +4041,Doctor Eric Kiviat,19736,2463,2 +4042,Spencer,44800,133855,12 +4043,Bruno Hansen,73462,21520,3 +4044,Giuseppe,11876,96974,10 +4045,Old Trustee,5924,152711,25 +4046,Billy,10394,1241030,11 +4047,Prof. Oldman,4248,13472,7 +4048,Rev. Hoskins (prison inmate),43002,12158,7 +4049,Lars Hammond,9778,38405,18 +4050,Monica Crump,11576,4098,13 +4051,Warden Clements,638,9295,14 +4052,Ippolit Vorobyaninov,24918,41236,0 +4053,Young Kayley (voice),18937,12903,12 +4054,Dorothy (as Becky Gelke),40555,59206,7 +4055,Annie Kinsella,2323,23882,1 +4056,Kate Trask,220,2752,4 +4057,Neighbor (uncredited),34106,1420624,58 +4058,Henry Stallard,9443,73933,8 +4059,Dr. Aron,11622,15899,13 +4060,Joseph,194,2413,6 +4061,Sallie Chisum,38765,161823,11 +4062,Cocktail Waitress,525,55247,47 +4063,Reading Room Proprietor,7299,213904,17 +4064,Senator Kelly,36658,52374,9 +4065,Adam Webber,11622,18269,0 +4066,Karen White,11298,62001,21 +4067,Lee,12499,15440,10 +4068,Diana Stiles,13571,20769,3 +4069,Darnell Jefferson,18133,4987,2 +4070,Terence Donahue,21468,82129,3 +4071,Union General,961,14425,8 +4072,Claude,9406,2086,5 +4073,le peintre,77056,275014,9 +4074,Harley McCabe,6951,116778,13 +4075,John Williamson,9504,1979,5 +4076,Gordy Forbes,15050,200728,6 +4077,Innkeeper's Wife,10873,554275,12 +4078,Dr. Marcia Fieldstone,858,1910,20 +4079,Samantha Kozac,11601,41421,10 +4080,Mrs. Hall,703,10559,7 +4081,Cocktail Waitress,525,122114,31 +4082,Extra (uncredited),2897,1465347,168 +4083,Dancer,46986,1535184,42 +4084,Nicole Kunstler,6187,4274,0 +4085,Club Secretary (Werewolf),39578,42593,12 +4086,Milkman George,38772,63214,8 +4087,Sue,16124,79395,3 +4088,Vet - Villa Dulce,2604,3197,21 +4089,Danny Bradley,5332,42565,7 +4090,Dr. Hunter S. Thompson,13005,1532,0 +4091,Susan,28940,3202,14 +4092,Duncan,34223,16183,4 +4093,La cuisinière des Monteil,36245,38649,11 +4094,Maria,10873,554273,10 +4095,Janet,92381,1385305,4 +4096,Grandma Rafferty,26378,13816,4 +4097,Woman On Bus,27526,14544,29 +4098,Michael Jones,38558,106753,2 +4099,Madame Romanovitch,38775,117714,4 +4100,Young Man in Hospital,21629,44796,12 +4101,Farmer,25430,117647,36 +4102,Shingen Takeda / Kagemusha,11953,70131,0 +4103,Mrs McGlinchy,54405,975564,23 +4104,Mowgli (voice),14873,9640,1 +4105,Italy Dinner Guest (uncredited),9716,203400,44 +4106,Detective #1,4338,7134,23 +4107,Terry Klout,73067,2876,0 +4108,Stu,21148,223622,2 +4109,Highway Patrolman,37917,29712,8 +4110,Handyman,2898,1535,16 +4111,Jim,1628,18217,2 +4112,Officer Kelly,38558,15419,4 +4113,Severo del Valle,2259,12647,5 +4114,,44081,1371119,7 +4115,Buddhist Monk,11231,1382045,10 +4116,Mahotin,50512,1352514,23 +4117,Zhao,45861,131514,0 +4118,DeDe/Angelica Graynamore/Patricia Graynamore,2565,5344,1 +4119,Loan Office Cop,4338,37043,9 +4120,Himself,786,43464,37 +4121,Aide,79593,1772241,17 +4122,Pops Douglas,47816,552139,5 +4123,Ellen Prestwick,24212,101499,2 +4124,"Melville Crump, DDS",11576,8902,2 +4125,Steven Carter,24584,68014,0 +4126,Leo Milev,118098,11841,7 +4127,Christine Starkey,32059,4038,1 +4128,Sylvia Nicolai,17057,14576,5 +4129,Lucian,42517,94129,8 +4130,Alex Grady,32049,21315,0 +4131,Uncle Geoffrey,634,9140,11 +4132,Tanya,1480,2896,16 +4133,Government Official,11236,27164,8 +4134,Prostitute,3780,1482637,41 +4135,Carleton,4012,122250,11 +4136,Chris Brace,15050,69345,4 +4137,Mother of 'I',12516,72605,1 +4138,Television Presenter,15321,36083,6 +4139,Ick's Girl at Party,14370,549482,20 +4140,Blue Shirt,25538,555384,17 +4141,Baby in Toy Store,11472,1507605,21 +4142,Dete,28345,14357,5 +4143,Sec. of Defense Robert McNamara (uncredited),10590,1488336,45 +4144,Ginny Wyatt,32331,7571,6 +4145,Umpire,31586,4892,46 +4146,Brown,16314,156136,8 +4147,Doña Sol,75892,4430,0 +4148,Mr. Rupert Elloitt,21828,227099,14 +4149,Robert,102,1026,9 +4150,Castilian Woman (uncredited),949,941147,43 +4151,Captain Churchill Robbins,27791,92777,5 +4152,Jenny,30994,1878511,13 +4153,Hector Soto,19348,59743,1 +4154,Viktor Lange,10801,7830,9 +4155,Francisco,10549,56650,14 +4156,Glenfiddish,11001,20625,7 +4157,Steven's Boss,9894,28101,10 +4158,Julian Wilde,30308,99461,4 +4159,Alan Kligman Esq.,334,4776,21 +4160,Corinne Jeffries,3064,1036,0 +4161,Paramedic,11397,1217941,77 +4162,Fanny Fink,11907,22686,0 +4163,Myra,10657,170142,15 +4164,Kit Aldridge,170430,128631,10 +4165,Wedding Party Guest (uncredited),238,78336,59 +4166,Townsman (uncredited),11697,1600055,22 +4167,La mère Tarte,26252,94953,20 +4168,Chris Dale,53714,107432,4 +4169,Model #2,18736,96555,23 +4170,"Maurice ""Momo""",2110,21659,2 +4171,Bert Puddick,159727,940100,7 +4172,Prof. Arthur Brown,47886,8927,6 +4173,Police Inspector Vital,269,3573,2 +4174,Tina Sparkle,10409,543656,10 +4175,Keller Coleman,78373,33654,0 +4176,Melvin Purvis,39771,33059,9 +4177,Woman Prompter,11902,1050869,23 +4178,News Stand Guy,10647,235346,15 +4179,Carlo Christopher,2107,54812,9 +4180,Player King,10549,10017,20 +4181,Frank Beaumont,10534,23958,4 +4182,Lt. Commander Geordi La Forge,200,2390,3 +4183,General Patton's driver,11202,15186,9 +4184,Jimmy,1375,16526,8 +4185,Alistair Patton,13965,76182,3 +4186,Don Miguel,32093,103493,16 +4187,Fifi,9659,94809,5 +4188,Estelle Stone,32058,40175,4 +4189,Detective,9504,8693,8 +4190,Bank Doorman,433,157411,14 +4191,Dr. Nelson Guggenheim,11545,1248,5 +4192,Moselle's Opponent,11873,1039590,27 +4193,Groucho Party Dancer,9716,1661636,94 +4194,Merritt's Guard,10351,62596,7 +4195,Jack Barry,11450,4443,6 +4196,Kara,8840,2133,3 +4197,Old Mrs. Ryan,857,99905,21 +4198,Orlando,251,3425,11 +4199,Gang Leader,20307,85921,11 +4200,Marco Venier,8583,17328,1 +4201,Governor Cuthbert H. Humphrey,15263,34117,13 +4202,Foot #2,1497,1456484,29 +4203,Bellboy,6068,1609238,29 +4204,Gut Gut,21148,60074,13 +4205,Gloria Chaney,788,11715,4 +4206,Debbie Kozac,11601,55546,11 +4207,Agent Grimes,10750,20166,15 +4208,Hacker,10543,3038,8 +4209,Jacob Hotscever,13701,8445,16 +4210,Kay Lawrence,10973,31169,1 +4211,Red Team Player,11535,119483,25 +4212,Extra (uncredited),2897,1488718,235 +4213,Marius de Romanus,11979,20239,3 +4214,Runner,10803,61838,17 +4215,Doc Wallace,12106,66288,5 +4216,Frankie (as Marya Small),29204,133774,5 +4217,Fetuffo,29743,120633,3 +4218,Penny,12454,72305,3 +4219,Lt. Danny Romano,2160,22092,6 +4220,Ofuku,3780,552646,29 +4221,Club Bartender,11535,1674906,36 +4222,,36047,22111,7 +4223,Carson,38043,16171,0 +4224,John,30265,16940,0 +4225,Hotel Security Officer,22213,1080222,20 +4226,The President,1687,8499,5 +4227,Judge Keith Hayes,38772,12850,11 +4228,Cookie,2160,1019332,15 +4229,Mirek,47493,219902,9 +4230,Winston Blue,5922,58649,8 +4231,Jazz Combo Member,28577,238745,20 +4232,Frank Nitti,4147,2283,11 +4233,Patrolman Farwell,22023,77487,46 +4234,Kibitzer in Blue Sky Club (uncredited),678,1420903,17 +4235,Barbarosa,31665,8261,0 +4236,Air Marshal Kutuzov,10724,12828,17 +4237,John MacGhee,41160,517,15 +4238,Sheena,15940,9017,6 +4239,Sheila McCarthy,11601,19293,5 +4240,Toni Gage,27791,7430,1 +4241,Spike,165,1955,8 +4242,Brittany Fairchild,9403,104647,19 +4243,Gallery Owner,123757,1904842,5 +4244,Heart Recipient,99,4368,20 +4245,Mrs. Wyler,11397,1328797,51 +4246,Ricky McKinney,10647,32362,5 +4247,Sandy Bates,11337,1243,0 +4248,Molly Rex,36259,10556,3 +4249,Singing Actress,2750,53487,34 +4250,Arthur Brodsky,31921,101654,5 +4251,"Selina, Age 5",33364,110538,8 +4252,Cab Driver,165,1434981,27 +4253,Danseuse,2110,1677019,22 +4254,Gregory,32872,129723,27 +4255,,44081,1345985,2 +4256,Mother MacClannough,197,2469,9 +4257,Annie,30547,6450,1 +4258,Student (uncredited),220,1299741,40 +4259,Grifin (voice),18937,4689,7 +4260,Dandelion,11837,113697,8 +4261,Anne Elliott,17015,30318,0 +4262,Moishe Rosenblum,15764,54345,8 +4263,Gonzo / Chester - Rat / Bill - Frog / Zoot / Beauregard / Dog / Dr. Bunsen Honeydew / Penguin (voice),11899,64181,2 +4264,Caesar Cregeen,20213,553224,3 +4265,Titus,50512,1352524,34 +4266,Larry Murnau,9532,118007,13 +4267,Hebzinski,9438,1234935,11 +4268,Winifred Krelboin,24452,102652,4 +4269,Shane O'Shea,3682,11864,0 +4270,Secretary Schwartz,11576,127646,42 +4271,Young Dar,16441,84164,8 +4272,Susie Bates,141,20091,18 +4273,Montgomery,28120,8253,2 +4274,William McCordle,5279,5658,7 +4275,Psychiatrist (as Mike Kopcha),205054,1143091,10 +4276,Brian,15677,73933,7 +4277,Severen,11879,2053,3 +4278,Lemmy Caution,8072,19794,0 +4279,Sommelier,525,122120,38 +4280,Noah,10208,1164,6 +4281,Jimmy Flynt,1630,18235,3 +4282,Lloyd,525,122107,28 +4283,Vin,12639,38129,1 +4284,Arizona Doctor,9272,1075085,9 +4285,Polygraph Technician,1647,1362948,26 +4286,Guildenstern,18971,3129,1 +4287,Guard at Dockyard Gate,34774,51881,9 +4288,Pete Quilliam,20213,115155,0 +4289,Beth Taylor,53685,27739,4 +4290,Mother,9746,58857,1 +4291,Inspector B,10775,83820,11 +4292,(uncredited),70801,1158634,14 +4293,Mike Baker,15144,71241,1 +4294,Peg,28577,101768,2 +4295,'Booger' Dawson,14052,87003,4 +4296,Ned Slinker,19731,22250,4 +4297,Armoured Guard,949,81687,26 +4298,Dr. Miller,6644,8496,4 +4299,Picture Editor (uncredited),28430,1218554,20 +4300,General,2721,27441,7 +4301,Ben,11077,27772,0 +4302,Coreen Bradford,42218,151423,5 +4303,Mrs. Steinmetz,10869,47439,0 +4304,Delivery Boy / Featured Player,31044,93670,24 +4305,Gas Station Attendant,35139,131482,8 +4306,Villager of Tullymore,10162,1609669,46 +4307,Playground Girl #1,14,1503026,35 +4308,Linda,11003,15276,6 +4309,Susana Parrado,7305,33834,22 +4310,Joe the Bartender,24005,83149,9 +4311,Minister of Defence,714,10747,13 +4312,Mai-Lee,796,167166,14 +4313,Ursula's Friend,10603,1448921,17 +4314,Man in City Bar,25430,121126,41 +4315,Fake Shemp,764,1116943,8 +4316,Teddy Duchamp,235,3034,2 +4317,Gwen's Prom Date,32872,1720980,26 +4318,Tina,26603,12967,3 +4319,Policewoman,11232,19492,15 +4320,Politician,25430,1216356,59 +4321,Pittsburgh TV Announcer,10400,1218566,42 +4322,His Friend,31995,27942,12 +4323,Betsy,49963,17488,6 +4324,Cecil Parkes,7863,11857,10 +4325,Freddie Mays,10394,11207,2 +4326,L'adjoint,64567,77929,28 +4327,Misty / Jessie / Wigglytuff,10991,67832,2 +4328,Hugh Albert Priest,10657,14595,6 +4329,Danny,11145,153619,6 +4330,Hooker In Bar,20307,57881,13 +4331,Stathis Borans,10344,20211,3 +4332,Deke Jensen,29343,94653,9 +4333,Butch McRae,19819,1236761,9 +4334,Man at Xanadu Great Hall (uncredited),15,1291801,33 +4335,Tina Barbieri,10400,941550,25 +4336,Bonnie,10647,42335,11 +4337,Pvt. Movie,35284,14784,6 +4338,Vicky,21468,3149,1 +4339,Helen Durbin,85837,119424,3 +4340,American Sailor,2984,4599,31 +4341,Richard Grantham,16281,190119,10 +4342,Sonny Koufax,9032,19292,0 +4343,Charlie,73247,1811,2 +4344,Iris,5425,43235,2 +4345,Chet,753,5950,3 +4346,Bit Part (uncredited),28,107322,33 +4347,Connie,70489,189128,17 +4348,Jolly 3 / Jai,85052,53974,7 +4349,Ulysses Simpson 'U.S.' Bates,23805,14882,1 +4350,Tia,11380,27136,4 +4351,Troy Chesterfield,9591,42363,14 +4352,Harry Lime,772,4517,1 +4353,Torelli,9593,3172,19 +4354,Becca's Mom,10708,42324,30 +4355,Mr. Kerber,13667,3418,15 +4356,Shelby Overman,17692,1296370,10 +4357,Woman on Bus,37247,5687,12 +4358,Ashley Lopez,23967,76456,7 +4359,Cloe Miller,3172,31714,6 +4360,Thomas,28940,1343369,18 +4361,Monkey,44800,133854,9 +4362,General Tudor,18,10208,18 +4363,Comm. Lucius Emery,2160,2094,3 +4364,Jose,9396,40481,5 +4365,Murdstone,32872,65748,35 +4366,Cap. Robert Walton,3036,18992,4 +4367,Dr. Matos,10973,1033086,8 +4368,Tourist,43832,1295853,34 +4369,Stick,26180,32897,6 +4370,Lifeguard,32227,182095,13 +4371,Lt. Cochran (uncredited),10590,945810,44 +4372,Boy at Wedding (uncredited),238,106187,50 +4373,Chuck Clarke,12704,4483,1 +4374,Mr. York,14522,24498,6 +4375,,44081,1345984,6 +4376,Darwin (voice),14317,71535,1 +4377,Mariachi,24746,104007,8 +4378,Ayerton's Assistant,34774,90625,11 +4379,Billy's Mama,6522,160872,12 +4380,Jim Kane,15,4077,15 +4381,School Superintendent,28973,93948,12 +4382,Mayor Eamon Flynn,32059,522,5 +4383,Leonard Parker,24828,51962,0 +4384,Journalist,11535,1674980,83 +4385,10 year old Martin,10344,35547,9 +4386,Leontine,35337,10981,5 +4519,Harpsichord Player,76,1265425,26 +4387,Restaurant Patron (uncredited),678,1596347,27 +4388,Curley's Wife,9609,6681,4 +4389,Bar Patron (uncredited),289,121320,15 +4390,Van Eyck,2110,185395,13 +4391,Andrew Morenski / Max Hauser,26156,69718,0 +4392,Hunter Morlock,2135,126841,22 +4393,Herself; suicide victim shown jumping out of a window,12237,72171,2 +4394,April,24254,8263,37 +4395,Falfa's Girl,838,57354,16 +4396,Red Elvis,24746,104008,9 +4397,Philip,2428,10226,41 +4398,Sam the Bellhop,5,3140,23 +4399,Commandant Dominique,13440,91573,3 +4400,"Samuel Douglas Sr., FBI",16314,80283,5 +4401,Sheriff Buchanan,6552,102567,21 +4402,Cushie,11307,64056,8 +4403,Kurt Wagner / Nightcrawler,36658,10697,8 +4404,Ms. Leach,10929,67519,4 +4405,Nat Cooper,10326,109,2 +4406,Kit Califano,54845,4687,1 +4407,Barfly (uncredited),11697,1471682,73 +4408,Marine Major - Vietnam,2604,20211,35 +4409,Sheriff Ferguson,124057,1569328,3 +4410,Annie McHugh,36220,8434,0 +4411,Harlem Club Headwaiter (uncredited),678,1063466,22 +4412,The Sarge Stedanko,20075,825,2 +4413,Young 'Jackie-O',33344,38581,5 +4414,Porter at Railroad Station (uncredited),1859,120701,11 +4415,Male Doctor,11185,1540104,16 +4416,Skynner,10491,47643,12 +4417,Cruiser Cop #3,4338,97824,21 +4418,Scratchface,10003,1079977,14 +4419,Uncle Seven,9404,976070,8 +4420,Lt. Walter Russel,37305,9626,2 +4421,Coach Johnson,29786,1466,2 +4422,Larry Wilson,8494,37041,0 +4423,Felix Woods,10050,3492,3 +4424,Escaped Convict,9716,1089394,35 +4425,Daumer,12632,6264,1 +4426,Dead Woman / Dead Prostitute / Hooker,10692,67161,4 +4427,Extra (uncredited),2897,1220332,205 +4428,Dean of Medicine,9540,1470160,11 +4429,Anthony,14369,109686,8 +4430,Cookie,6522,18471,6 +4431,Johnnie 'O',33668,27747,7 +4432,Princess Johanna Elizabeth,31527,1070625,6 +4433,Diane,201581,21129,1 +4434,Sgt. Yushin,1369,16583,8 +4435,Julie Sawyer,47955,42195,0 +4436,Saruman,120,113,9 +4437,Donny,22023,987465,19 +4438,Floyd Gaylen,32332,18352,6 +4439,Chief retainer,3780,25462,20 +4440,Himself,1813,65607,31 +4441,Sage,30584,154971,14 +4442,Pamela Dare,25934,41234,3 +4443,Father Fyodor,24918,6844,2 +4444,Catherine Winslow,28519,27267,0 +4445,Monica,15256,17495,8 +4446,Narrator,93115,1075512,0 +4447,Caesar,11950,3093,22 +4448,Cliff Reed,858,77022,15 +4449,Princess,79593,1772258,30 +4450,Pugsley Addams,2758,119866,10 +4451,Mr.Creasy,24645,52420,8 +4452,Clerk of the court,34615,1073473,11 +4453,Mr. McDougal,4147,35518,29 +4454,Yellow Hand,14676,49882,3 +4455,Cafe 24 Waitress,2898,78596,38 +4456,Doctor Goldberg (as Edward Burrows),28169,99156,15 +4457,lui-même,64567,234346,7 +4458,Hospital Patient (uncredited),167,1263449,25 +4459,Franz,10801,1053732,11 +4460,Dr. Rupert Brooks,11888,62520,4 +4461,Buddy Kane,14,8212,7 +4462,Playmate,28,1664821,16 +4463,Dickon,11236,55468,2 +4464,Jones,15263,95082,17 +4465,Policeman Outside Clayton's,3092,153148,9 +4466,Eugène Koler,194,1145445,21 +4467,Dr. Friedman,28774,91369,13 +4468,Buster,1715,18793,8 +4469,Nurse Floyd,28902,452,10 +4470,Able Bodied Seaman (uncredited),12311,1214919,43 +4471,Scientist Shane,9827,157460,11 +4472,Pete Moore,6171,18082,4 +4473,Whitney,24831,16186,21 +4474,Eddie Tesoro,44233,4992,1 +4475,Big George Drakoulious,922,879,17 +4476,Narrator,1282,2228,0 +4477,Monte Rapid,12479,887,13 +4478,Hank Murphy,24795,8258,5 +4479,Rain's mother,28384,10401,10 +4480,Alexander,26180,12536,3 +4481,Nathan R. Conrad,12103,3392,0 +4482,Raunchy woman,11159,1749201,32 +4483,Judy Barton,10671,161441,22 +4484,John Shaft,482,6487,0 +4485,Garbage Man,11593,1183444,25 +4486,Jean-Michel,35651,114481,2 +4487,Sara Thomas,9778,3967,1 +4488,State Senator,1924,33032,81 +4489,,11216,1878431,20 +4490,Catherine Greer,18222,160423,8 +4491,Fugui's father,31439,1417404,5 +4492,Silence as a boy,9028,7196,22 +4493,Judge Wexler,2978,1166,8 +4494,Villager of Tullymore,10162,1609664,41 +4495,,92384,32646,2 +4496,Supervisor,12454,1222237,24 +4497,Peter Jones,24005,2771,7 +4498,Earlene Bullis,31306,14702,3 +4499,Luke,30875,101331,6 +4500,Cmdr. Minoru Genda,11422,122154,17 +4501,Orthodox Student,4012,1192383,20 +4502,Shark Coach,9563,1741410,48 +4503,Danker,3078,8729,5 +4504,Rowan,4993,97478,12 +4505,Mary Wilson,245268,17752,3 +4506,Elaine,2978,43476,14 +4507,Bando Zé Pequeno - Li'l Zé's Gang,598,403249,18 +4508,Helen Miles Singer,9716,1661647,105 +4509,The Whistler,10162,1609645,20 +4510,Devon (voice),18937,10713,13 +4511,Virgil Adamson,15556,5576,0 +4512,Berit,8816,74712,6 +4513,Ginger McKenna,524,4430,1 +4514,Leta,66894,75696,2 +4515,Jack Benyon,2087,4512,3 +4516,Boo Man,29649,828,10 +4517,Thor,35139,131478,2 +4518,Drunk Swinger,28940,4203,6 +4520,Marty Pascal,33344,52419,1 +4521,"General ""Buck"" Turgidson",935,862,1 +4522,Kain,2525,194,2 +4523,Prince Akeem / Clarence / Randy Watson / Saul,9602,776,0 +4524,Mrs. Taylor,14370,59846,11 +4525,Pirate,6068,92495,15 +4526,Sacco's Daughter,16441,1073798,14 +4527,Young Maren Christenson,13526,139988,15 +4528,Cynthia Benson,2280,1073814,10 +4529,Minister,16176,214999,23 +4530,Woman on Plane,10003,1246,10 +4531,Dr. Alfred Necessiter,11591,2076,2 +4532,Young Kara,8840,1074681,15 +4533,Alvin Horn / Featured Player,31044,1729784,32 +4534,Kevin Quinn (Chief of Homicide),31598,54123,5 +4535,Additional Voice (voice),9016,78317,15 +4536,Rowena,25796,26009,4 +4537,Boolie Werthan,403,707,2 +4538,Officer,11442,1672954,19 +4539,Mr. Richard Phillips,109614,2222,2 +4540,Jack,11017,188694,6 +4541,Bus Driver,51802,133342,16 +4542,Raven Darkholme / Mystique,36657,11008,7 +4543,Robert Krohn,2262,23342,1 +4544,Mrs. Greenberg,28774,114631,7 +4545,Toby Whitewood,19050,90175,12 +4546,Paul,13567,114058,3 +4547,Dr. Quinn Burchenal,8870,3197,3 +4548,Ismail,606,1154526,15 +4549,Jason,12454,1670,8 +4550,Villager of Tullymore,10162,1609648,24 +4551,Jacob Goldman,15602,7166,6 +4552,Major Holland,71701,6610,5 +4553,Steve Johnson,31586,197960,34 +4554,Kat,9358,42710,6 +4555,Countess Nordston,50512,42705,22 +4556,Myles Barton,11442,177219,11 +4557,Göran,742,11040,4 +4558,Neighbor (uncredited),34106,1018011,48 +4559,The Snitch,269,3776,7 +4560,Justine,24825,92680,1 +4561,Himself,17889,129512,3 +4562,Barbara Reed,858,557850,14 +4563,Gentleman #2 at Party (uncredited),15849,30136,16 +4564,Rabbi,124625,48371,5 +4565,Rev. Kameyama,13889,1484347,7 +4566,Jimmy Doyle,18783,64212,6 +4567,Beauty Shop Lady,9819,53937,15 +4568,Townswoman at Carnival (uncredited),220,103909,26 +4569,Hap Smith,29372,82348,3 +4570,Vincent,124475,93592,3 +4571,Priscilla,11397,56824,2 +4572,Ned Devine,10162,188452,16 +4573,Shirley,580,1673752,26 +4574,Madre autobus,80713,508384,10 +4575,Justin (voice),11704,21368,10 +4576,Tour Guide,11397,144009,31 +4577,Slaodel,5608,44357,16 +4578,Helen Miles Singer,9716,1351005,43 +4579,Webster,38554,10825,11 +4580,Esteban García,2259,22461,9 +4581,Dallas,27380,36409,1 +4582,Puerto Rican Kid,20242,60785,22 +4583,John Houseman,32274,2130,8 +4584,Sgt. Adam Frantz,10652,32597,4 +4585,Green,9425,5417,16 +4586,Twin Boy,27526,98098,26 +4587,Dr. Jo Harding,664,9994,0 +4588,Paola Menard,7219,50744,3 +4589,Laurel Springs,32227,1232353,8 +4590,Cornwall (voice),18937,7167,4 +4591,Stuart,4012,1192377,13 +4592,Nipples,15239,555072,12 +4593,Jenna,10391,32799,1 +4594,Doris Shelley,58985,91850,6 +4595,Nathan,9425,1646987,13 +4596,Samuel Decker,4476,1048574,9 +4597,Lord Bottoms,197,2479,20 +4598,Febre the Man in Black,11370,3129,3 +4599,Prison Guard,10400,1393353,68 +4600,Watson Pritchett,11377,58317,4 +4601,Truck Driver,25501,15105,12 +4602,Cop,18,1857429,58 +4603,Sonny Red,9366,62715,11 +4604,Airport Security #2,6068,1609242,33 +4605,Randolph Johnson,1634,18260,2 +4606,Le client du café,194,117115,41 +4607,Homeless Guy,9032,884,9 +4608,Martin Fallon,33851,2295,0 +4609,TV News Reporter,544,1580198,18 +4610,President's Aide,18,963257,30 +4611,Vincent,17203,73283,10 +4612,Front Desk Clerk,6038,933883,22 +4613,,43143,956358,17 +4614,Cornerman (uncredited),1578,1214919,41 +4615,Teacher,1793,44896,14 +4616,Mary Anne Spier,48287,38581,2 +4617,Capt. Daniel McCormick,10326,2461,0 +4618,Mark,30994,1878509,11 +4619,His lawyer,32600,14488,2 +4620,Evan Evans,151489,1360814,5 +4621,Captain DeWitt,13550,15765,4 +4622,Waiter,525,5129,32 +4623,,43771,1806057,4 +4624,Brunette at Blue Ridge,1647,87573,10 +4625,Pierce,29067,12693,8 +4626,David,10238,38127,4 +4627,Werewolf,11880,1094093,10 +4628,Enfermo,80713,1077947,9 +4629,Iggy,9821,7470,5 +4630,Additional Voices (voice),8916,60741,14 +4631,Ruth,169,122239,17 +4632,Majordomo,38006,1211876,8 +4633,Guitar Player in Club,76,3737,9 +4634,"Jeffrey ""Jeff"" Patterson",11531,52886,1 +4635,Margit,742,11049,14 +4636,Mrs. Winifred Banks,433,5826,3 +4637,Ally,11535,1674923,45 +4638,Agent Jack Sickler,3595,33241,10 +4639,Sergeant Heinz,949,58535,34 +4640,Randall Simpson O'Connell,42787,3085,1 +4641,Abe Steiner,21849,233454,14 +4642,Deputy Sheriff,11576,110654,29 +4643,Robert Lee Anderson / The Marlboro Man,2453,25129,1 +4644,Stroller,73116,27393,5 +4645,Starlighter,105,1200792,38 +4646,Rubber baron,9343,229254,10 +4647,Klas,742,11044,8 +4648,Art Evaluator,88818,36666,12 +4649,Madam,20242,157986,12 +4650,Ronnie,24254,9565,11 +4651,Mrs. Roberts,141210,1289890,3 +4652,Ace Merrill,235,2628,4 +4653,Mario,42832,234117,10 +4654,Einstein,165,2459,49 +4655,Young Hitchhiker,43089,129274,11 +4656,Himself,2300,1315450,27 +4657,Cinny Hawkins,53862,54429,3 +4658,Happy Feet,41160,63141,14 +4659,José Estedes,75641,40,7 +4660,Man in Bookshop,123047,26157,10 +4661,Mr. Kovic,2604,10361,1 +4662,Danny,54845,196767,2 +4663,Larry Deane,217802,1191427,2 +4664,Reporter,26378,119548,60 +4665,Cathy,47119,144780,3 +4666,Extra (uncredited),2897,1729246,239 +4667,Nikki,47942,42176,9 +4668,Carmencita Rodriguez,16026,1316033,14 +4669,Naghadar,28171,99945,0 +4670,Lisa Luder,9611,55422,7 +4671,The Deaf Man,4986,14528,4 +4672,Don Masino Croce,31945,14324,2 +4673,Playmate of the Year,28,550106,15 +4674,Dead Couple - Wife,10692,67172,6 +4675,Hireling (uncredited),15,109778,145 +4676,Short Customs Dog (voice),19042,89451,4 +4677,Nulfin,890,10627,10 +4678,Extra (uncredited),2897,1472990,218 +4679,Elephant (voice),9325,67290,7 +4680,John's Mother,24584,1225741,18 +4681,Dr. Henry Jekyll / Edward Hyde,9095,6949,1 +4682,Twin Bodyguard Armand,242,982212,23 +4683,Newscaster,40095,140236,6 +4684,Dodge Blake,10207,3636,2 +4685,Cook Show Audience [cameo],10622,131835,13 +4686,Madeline Labelle,125548,17352,1 +4687,Mercenary,10603,20761,21 +4688,Carlos Nuñez,10691,19487,1 +4689,Lester Bangs,786,1233,10 +4690,Elliot Sharansky,11458,31028,5 +4691,Gino Costa,5155,18340,1 +4692,Major Cobb,15497,78305,7 +4693,Neurotic Woman,12454,976738,20 +4694,NCAA Investigator,20443,59874,9 +4695,Sgt. Zelenko,38766,9112,12 +4696,Additional Voice (voice),9016,84493,23 +4697,Thug,3780,552179,57 +4698,Mrs. Hunter,37969,1533602,3 +4699,Henry Anderson,21027,39998,8 +4700,Harlen Maguire,4147,9642,10 +4701,Little Girl,985,14800,7 +4702,'Pompadoure' (Young Harry Lewis) (1940s),66597,97705,4 +4703,Carmen,8388,54813,3 +4704,Pete,16643,12833,1 +4705,Detective,169,13657,30 +4706,Rolf,742,6283,1 +4707,Gus (uncredited),3085,30530,19 +4708,Hotel Manager,12104,1080265,14 +4709,Interrogator,10724,1882504,36 +4710,T.J.,15037,6862,21 +4711,Tom O'Folliard,38765,37251,15 +4712,Michael 'Mike' Brody,578,8611,9 +4713,Preston Wasserstein,11397,52937,54 +4714,Buscapé Criança,598,8604,10 +4715,Kev,23239,77335,0 +4716,Jeepers,99008,1019846,2 +4717,Gilles Sentain,14626,136170,2 +4718,Mrs. Thomas the Realtor,8844,56522,11 +4719,11th Elder,1924,1681406,25 +4720,One of Rabbi's students (uncredited),14811,52699,37 +4721,Victoria Cecilia Essex,15592,145615,9 +4722,Sonny,124821,1397904,5 +4723,Herbie Yellow Lodge,50123,945312,3 +4724,Train Messenger,11694,1231325,11 +4725,Willy,40220,15866,3 +4726,"Nick, Age 12",32872,1665568,7 +4727,Ernest 'Ernie' Hemingway,26949,5577,1 +4728,Steven Buchner,11215,1524,2 +4729,Mrs. Tony Waters,70282,1897169,2 +4730,Tienkie Labuschagne,16417,80530,4 +4731,Showgirl Victim (uncredited),2760,125514,6 +4732,Savannah,22023,95469,5 +4733,Marta Solvani,31498,102363,1 +4734,Waiter,12220,1044,17 +4735,Tex,10847,35687,21 +4736,Chauffeur,33680,99375,11 +4737,Bo Dietl,134368,9045,0 +4738,Connie,31044,100619,14 +4739,Preston D'Ambrosio,22314,2283,3 +4740,The sheriff Of Nottingham (voice),11886,21460,3 +4741,La journaliste,108,1141,4 +4742,Jack,1554,6394,1 +4743,Trentino's Blonde Secretary (uncredited),3063,120525,24 +4744,Bowers,30547,5177,14 +4745,Amish Mom,31586,11084,13 +4746,Gloria,109479,8925,0 +4747,Stark Strong-Arm Man,25430,34168,27 +4748,Moscow Railway Worker,50512,1352527,37 +4749,Actress,11397,1773757,28 +4750,Buxom Beauty,39578,123208,11 +4751,Alan,19209,1328,1 +4752,Lenny,11601,946311,9 +4753,Mrs. Kinter,580,8613,17 +4754,Captain B. Pilgrim,169,2062,8 +4755,"Walter Fielding, Sr.",10466,124934,14 +4756,Mrs. Litke,1793,8903,6 +4757,Moselle,11873,4943,47 +4758,Eleanor Twitchell,19140,7663,1 +4759,Maharet,11979,5313,5 +4760,Kate,10173,1212032,6 +4761,Mr. Turner,10950,31028,4 +4762,Catholic priest,210092,1193683,24 +4763,John Kirby,27150,6580,5 +4764,Fredrik,10238,572207,6 +4765,Man in the Crowd,24126,54564,15 +4766,Oak Room Maitre D',9475,98654,22 +4767,Vanessa Damon,11601,191611,8 +4768,Doctor,39176,152281,13 +4769,Dr. Jamieson,2160,22093,7 +4770,Sofia Serrano,1903,955,1 +4771,"Walter Fielding, Jr.",10466,31,0 +4772,Katsumo - Seikura's Aide,24825,87520,10 +4773,Edward Young,2669,26854,6 +4774,Platoon - Vietnam,2604,92279,40 +4775,Gertrude,18971,106765,5 +4776,Oregon Train Crew - Engineer,42136,16561,14 +4777,Aunt Dorothy,2613,10386,9 +4778,Clerk,22213,111510,22 +4779,Police Captain,17889,30018,10 +4780,Nervous Motorist,11576,27726,35 +4781,Musician,6068,1609268,51 +4782,Violet,28519,195286,3 +4783,Chief Inspector Bernie Ohls,910,22093,7 +4784,Marie Helene,170430,66500,9 +4785,Andre Toulon / Eriquee Chaneé,26954,157968,2 +4786,Nancy,552,7550,11 +4787,Phillip / Lillian / Betty DeVille (voices),14444,60739,5 +4788,Tuna,4133,824,2 +4789,,10466,17859,18 +4790,Dienstmagd,56934,224153,11 +4791,Baccarat Player at Rick's (uncredited),289,590709,94 +4792,Guinan,193,2395,12 +4793,4th Elder,1924,27165,19 +4794,Neighbor (uncredited),34106,1197566,61 +4795,Sheriff Tynert,4476,6074,13 +4796,Spencer Phillips,59930,114674,3 +4797,Baxter,10491,16792,8 +4798,Ken Railings,10409,543654,8 +4799,Standing Bear,35200,129460,9 +4800,Tracy Flick,9451,368,1 +4801,Rüdiger von Bechlarn,5608,26245,8 +4802,Chester,1630,3418,7 +4803,Joyce,16550,84922,8 +4804,6th Reporter,1924,1681415,39 +4805,Arab Nurse,409,1074501,23 +4806,One-Legged Sailor (uncredited),2897,1600506,298 +4807,Mark's Mom,14242,1502565,3 +4808,Prof. C.W. 'Wilf' Wilke,9977,61341,7 +4809,Mrs. Hagerman,18642,95053,13 +4810,Girl Scout,2907,123149,14 +4811,Mondoshawan,18,179771,38 +4812,Martha Reno,39833,68642,6 +4813,The Girl,30994,107469,3 +4814,Peon,32093,1294709,34 +4815,Oskar,890,14635,5 +4816,Herself,99008,1019847,7 +4817,Christina 'Mom' Gehrig,19140,99750,5 +4818,Tracey,62463,1780603,10 +4819,Maturette,5924,49356,5 +4820,Fenton,14370,56120,18 +4821,Dr. Herbert West,18111,27993,0 +4822,Herod's commander,2428,16074,31 +4823,Deputy Porter,33172,158400,10 +4824,Extra (uncredited),2897,1422112,176 +4825,Herself,262,119781,16 +4826,Prof. Gabriel 'Gabe' Roth,28384,1243,0 +4827,Mike Lafebb,69828,1953,1 +4828,Rachel/Ruby,18477,99062,5 +4829,McKay,24750,88170,12 +4830,Norma Bates,73116,23709,2 +4831,Wonk,9816,59580,17 +4832,Man Singing at Inquirer Party (uncredited),15,1329660,53 +4833,Dancer,6068,1609265,48 +4834,Dr. Scarabus,29056,2922,2 +4835,Kid,25969,3908,4 +4836,Laurie Jorgensen,3114,7303,2 +4837,Wilma Cameron,887,10023,5 +4838,Park Girl,9396,4996,8 +4839,Walter,28902,170392,8 +4840,Claudia,93350,34485,0 +4841,Flight Sergeant Kevin Cartwright,83562,27422,7 +4842,Jingoro Hara,11953,1484292,23 +4843,Monica Dice,29444,16484,3 +4844,Sergei,8665,29878,17 +4845,Ann,201581,66221,0 +4846,Himself,85472,6542,2 +4847,Jasper Hadley,69605,46711,4 +4848,Third Latin Guy,11873,992589,28 +4849,Leon Minghella,4133,34839,10 +4850,Girl at Temple (uncredited),403,569901,15 +4851,Henrik Galeen,10873,162587,6 +4852,"William W. Darrow, PhD",2887,15416,21 +4853,Walkie-Talkie Cop,11185,134529,29 +4854,The Matchmaker (voice),10674,6199,16 +4855,Cop #2,8869,929134,21 +4856,Juez,2441,24987,14 +4857,Woman in Bathrobe,10539,12555,13 +4858,King Arthur (voice) (uncredited),8840,11857,6 +4859,Cecily Farr,15677,71249,5 +4860,Mrs. B,18222,59369,4 +4861,Woman at Bar,46986,22686,33 +4862,Floyd Cerf,28176,3044,16 +4863,,17044,978,4 +4864,Nathan,2750,176,20 +4865,Kiyo Nishimura,17962,134289,11 +4866,Black Eyed Pea,10874,1220350,10 +4867,le speaker radio,42726,578327,9 +4868,Jerzy,9260,1461,5 +4869,Colonel Mekum,9425,11355,2 +4870,Reporter (uncredited),15,1317082,62 +4871,,28171,1875121,8 +4872,Trooper Mount,525,51579,25 +4873,Elizabeth 'Lizzie' Cronin,10379,16171,0 +4874,Michael Kellam,11630,26472,1 +4875,Thomas Daggett,11980,13550,1 +4876,Dr. Dale Lawrence,2887,41517,8 +4877,Amir,23599,109676,8 +4878,Loan Officer,24936,1578,9 +4879,Gil Lawrence,41164,11067,5 +4880,Nipper Wilson,245268,67685,2 +4881,Jan Brandel (uncredited),289,4122,35 +4882,Lucy,14698,948582,9 +4883,Harry Plummer,9034,118,2 +4884,Board Member (uncredited),34106,120708,36 +4885,Harold,12454,3548,12 +4886,Ching (uncredited),15263,1501993,25 +4887,Patrick Danahy,23599,73349,11 +4888,Slim,13408,65134,2 +4889,Greg Brady,9066,31468,3 +4890,NYPD Computer Operator,19176,19,11 +4891,Vector,1634,1075075,10 +4892,Lloyd Gettys,1813,4445,14 +4893,Billy Bones (voice),9016,2463,8 +4894,Mrs. Buckley,91217,152863,6 +4895,Farmer,28273,33135,16 +4896,Lots Tochter # 1,2525,25790,19 +4897,Agent #1,32595,44839,5 +4898,Commentator #1,1374,16543,16 +4899,se stesso,25403,3111,10 +4900,Richie,11234,47020,6 +4901,,87481,1749231,2 +4902,Armand Dorleac,11362,7486,5 +4903,Sam Bennett,79593,44621,5 +4904,Prune (Plum),47943,67902,3 +4905,Mr. Edwards,11446,163671,13 +4906,Robert Forrest,4338,27772,18 +4907,Prince Thomas,11975,234795,15 +4908,Col. Dent,15873,78894,15 +4909,Kathy Lutz,11449,20011,1 +4910,Faudron,197,1231412,42 +4911,Communications Officer,9457,168436,14 +4912,Paul Finch,2105,52480,6 +4913,Mrs. Pritchard,261246,31940,10 +4914,Dr. Lilian Thurman,141,9594,11 +4915,The Brother-In-Law,90762,1496469,9 +4916,Lieutenant Kenneth Fuller,16938,11163,3 +4917,Jake,580,16214,2 +4918,Trevor Browne,15506,78291,8 +4919,Rudi Stein,19050,90173,10 +4920,Curley,9609,1953,3 +4921,Edna,29492,103962,2 +4922,Joe,14676,6463,5 +4923,Rodriguez,4476,184106,15 +4924,Stephanie,22477,1902,1 +4925,Brunhild,5608,10073,1 +4926,Chrissy,5491,43611,4 +4927,Joey / Jose Torres,76397,162235,6 +4928,Josie,278621,171661,3 +4929,Skateboarder,9946,1570367,10 +4930,The Husband,26422,120351,7 +4931,Lycanthrope,9406,86441,12 +4932,Kohayagawa Banpei,28273,96551,0 +4933,Extra (uncredited),2897,1468354,98 +4934,Uncle Chu,6978,995587,11 +4935,Staatsanwalt Hach,4762,16243,6 +4936,,11830,551749,12 +4937,Skylar (singing voice) (uncredited),9716,67101,45 +4938,Parks,10671,1171678,41 +4939,Borges,11535,1233146,46 +4940,Customer (uncredited),289,97981,51 +4941,Reporter (uncredited),15,34101,66 +4942,Jake,12103,36189,9 +4943,Mahtob,9585,58078,2 +4944,Sgt. Buck Atwater,20287,4520,6 +4945,Madeline Roth,27791,101778,14 +4946,Hannah Rourke,11296,16215,6 +4947,Tin Market Musician,2613,66094,12 +4948,Krugman,47867,37825,1 +4949,Conductor,9343,1758314,16 +4950,English Announcer's Assistant,11535,1674961,78 +4951,Murphy,3085,14975,9 +4952,Kenny,29698,27948,6 +4953,Guy with Monkey,2105,1517843,38 +4954,Monte's Houseboy (uncredited),3309,1317063,42 +4955,Rasi,52907,238576,2 +4956,Gangster 55,10394,56890,1 +4957,Daffy,1907,18023,7 +4958,Peggy Sue,10013,3391,2 +4959,Mazilli,12764,73584,4 +4960,Jackie,10622,18897,0 +4961,Bum,34223,104944,20 +4962,The Man,19403,50574,5 +4963,Uncle Frank McCallister,772,11517,7 +4964,Janet Frobisher,53714,3380,0 +4965,Dr. Robert Hoak,24831,34597,2 +4966,Tom Ward,28295,103108,11 +4967,Army Capt. Roth,20424,86356,8 +4968,Skinny (uncredited),3085,30219,34 +4969,Grizzly Bear (voice),21032,15831,10 +4970,Freddie,35569,8699,1 +4971,Dr. Chauncey Gump,26686,9309,8 +4972,Big Ben,11415,13591,2 +4973,Benjamin 'Lefty' Ruggiero,9366,1158,1 +4974,"Mr. Blane, the Pianist",159727,955167,6 +4975,Student,34223,1569888,11 +4976,Peg,838,8183,12 +4977,Senate Investigator (uncredited),15,120476,147 +4978,Del Davis,25862,19411,3 +4979,Praying Mantis Girl,28774,73036,10 +4980,a bellboy,24005,104631,14 +4981,Nicely-Nicely Johnson,4825,12827,5 +4982,Treasurer (voice),11639,158673,16 +4983,"Sgt. Angelo (""Angel"")",15873,856,1 +4984,Tunnel Boy,9827,33521,21 +4985,Engineer of the S.S. Henrietta,2897,99749,33 +4986,Arabic Sports Announcer,11535,209539,55 +4987,Ray Zalinsky,11381,707,5 +4988,Old Ewe (voice),9598,1080206,7 +4989,Proprietor of Cafe,975,117671,9 +4990,Sara Monday,43139,39393,2 +4991,Urizzi,11524,1218533,26 +4992,Leibesh (uncredited),14811,55908,32 +4993,Aron Trask,220,2751,3 +4994,Power Lifter,24739,2719,17 +4995,Miss Cartwright,2021,135420,12 +4996,Stanislav Korzenowski,20242,10360,3 +4997,Newsboy (uncredited),15,1467054,122 +4998,Mutsuta's wife,11712,134351,8 +4999,Johnny Gasparini,13667,87562,3 +5000,Walter Robinson,77915,13995,6 +5001,Crew member,2160,39057,11 +5002,Imperial Guard,8584,554279,18 +5003,Pete (voice),9023,149775,8 +5004,David Maclean,20424,87751,0 +5005,Mr. Parrish,887,85990,12 +5006,Zorg's Secretary,18,1857439,81 +5007,King Jaffe Joffer,9602,15152,2 +5008,Snookie,9816,59569,6 +5009,TGRI Assistant #1,1497,1456485,32 +5010,Pianist,705,1948,17 +5011,Burson Fouch,24452,102441,7 +5012,Frank the Doorman,2978,1170,19 +5013,Junkie Girl,638,9308,30 +5014,Waiter,17168,115432,15 +5015,Craig,42424,128126,10 +5016,Wiley,26173,41246,3 +5017,Tuck,15379,588,1 +5018,Leigh Darling,51955,55258,3 +5019,Alex Monday,4248,19149,12 +5020,Donald Baumgart (voice) (uncredited),805,3150,20 +5021,Porn Store Patron,11298,27805,15 +5022,Wallace Gibson,20443,5950,6 +5023,Comic,703,151695,43 +5024,Black Belt Candidate (uncredited),32049,1502546,52 +5025,Sal,1907,3063,2 +5026,Hospital Dancer,9716,1661619,76 +5027,O.L.,4012,88550,10 +5028,Aziz Fekkesh,691,2980,17 +5029,Leonardo / News Room Staff,1497,78214,5 +5030,Lucy's Mother,10863,27281,7 +5031,Seymour Krelborn,10776,8872,0 +5032,Craps Woman,4478,1804068,17 +5033,Extra (uncredited),2897,151630,95 +5034,Bonifacio,9835,18914,14 +5035,"Captain Benson, the Pilot",10847,29368,26 +5036,Bunny,26686,60291,7 +5037,Slipknot Band Member,11535,92311,90 +5038,Muffy (voice),8916,58184,5 +5039,The Judge,9464,1733425,13 +5040,Doctor Génessier,31417,24476,0 +5041,1st Soldier,124963,1229807,15 +5042,Tom Stark,25430,39608,3 +5043,Yvan,14651,2245,1 +5044,Sal,109479,59369,1 +5045,Premiere Audience Member,9296,92843,23 +5046,Mitzie,11185,15100,5 +5047,Brian Ferguson,42149,14888,3 +5048,Mayor,3085,30237,5 +5049,Trucker,26180,1235532,19 +5050,Lawanda Dumore,28597,35159,3 +5051,Jake Wyler,11397,16828,1 +5052,Turbo,17464,57392,2 +5053,,186705,142443,4 +5054,His girl Mary Jones,32600,144011,3 +5055,Mr. Carruthers,32140,14671,7 +5056,'Possum' Piper,21828,1347363,11 +5057,Ambassador Sarek,157,1820,10 +5058,Alexander von Zemlinsky,56934,23750,8 +5059,Arthur Stanhope,10603,20361,7 +5060,Old Man,43771,1806055,2 +5061,Lucy,16550,84921,7 +5062,Mujer Centro Social,80713,15591,13 +5063,Luis,12639,103469,8 +5064,Nancy Everett,14295,104039,12 +5065,,75892,586412,5 +5066,Glenn Guglia,11003,1219226,11 +5067,Bass Player,43828,121068,51 +5068,lui-même,64567,24366,1 +5069,Boy Tristan,4476,78105,17 +5070,Cousin It,2907,66986,12 +5071,Dr. Charlotte,9819,452,8 +5072,Chester Rush,5,138,6 +5073,Angela,13567,74673,0 +5074,Lt. Wally Worthington,1715,22226,3 +5075,The Cafe Owner,9464,1733430,18 +5076,Prostitute,4147,1571853,20 +5077,Miss Scover,39428,4432,8 +5078,Fat Republican - Miami Convention,2604,37827,78 +5079,Rudy,19324,11159,0 +5080,Gov. Santini,12101,13786,12 +5081,PR Lady,714,1238610,16 +5082,Lady Customer,28940,1851409,19 +5083,Union Soldier,26593,1786487,19 +5084,Steve Walker,10543,52267,2 +5085,Windmill Man,5917,1894156,38 +5086,Colonel Waxman,24831,34728,8 +5087,Foot Soldier,1497,112731,58 +5088,Able Bodied Seaman (uncredited),12311,152713,40 +5089,Bruce,11397,58507,21 +5090,Denise Kreisler,75641,6450,1 +5091,Kevin Walters,10862,1066358,18 +5092,Bishop Walkman,124963,10360,7 +5093,Jimmy Foster,299,4353,3 +5094,Dolores Martin,31921,114921,4 +5095,Joey Zasa,242,3266,6 +5096,Michael Chapman,42580,521,0 +5097,Van Tuyl,19140,31702,9 +5098,Roger,9294,31006,10 +5099,Pablo,34838,147016,2 +5100,Lurleen,12236,24967,8 +5101,Edith Hunter,25037,20141,1 +5102,Veronica Quaife,9426,16935,1 +5103,Gill (voice),12,5293,3 +5104,Rokusuke,3780,96552,16 +5105,Sanchez,31671,83851,10 +5106,Alice / Cisco / Grivo / Worm pill scientist / Cop #2 / Cancer boy / White-trash man,18414,73499,1 +5107,"Lt. Ray Silak, NYPD",16820,6541,7 +5108,(uncredited),5998,1145693,24 +5109,Bombardier (uncredited),15497,78309,13 +5110,John Majors,14369,18589,1 +5111,Esther Lesser,59569,20047,2 +5112,Narrator (voice),10351,79584,14 +5113,John Neville,29143,2176,1 +5114,Colonel,47493,14324,2 +5115,Gil Ivy,42087,9880,1 +5116,Roach,11589,1878361,33 +5117,Irene,9059,30485,4 +5118,Kanta Bhen,4254,35765,18 +5119,Newscaster Voice (voice),32872,79238,57 +5120,Sara,2525,25787,7 +5121,Dr. Zira,1687,10539,1 +5122,Vivo,9457,938,11 +5123,Ida Rendino,38922,1553094,6 +5124,Soldier,10890,2053,15 +5125,Oscar Goodman,524,7424,11 +5126,Chiquita,43199,24321,3 +5127,Ahmad Ibn Fadlān,1911,3131,0 +5128,Lauren,26958,43433,3 +5129,Cal,19348,28025,7 +5130,Old Man,10724,1270888,26 +5131,Eugene 'Skull' Skullovitch,9070,1215855,7 +5132,Hog Ellis,9771,22113,9 +5133,Debbie Whitman,47329,53602,6 +5134,Chris,9406,154072,4 +5135,Tony 'Mouth' Donato,19150,5950,3 +5136,Bernice,26889,1318654,13 +5137,Molly McGrath,29355,18892,0 +5138,Jo Ann,24081,20,0 +5139,Toby a Turtle (voice),11886,68130,14 +5140,Egg Shen,6978,11395,4 +5141,Thug #1,1497,19717,49 +5142,Police Sgt. Mack Finlay,20424,94293,6 +5143,Member of Atomic Commission,28973,1393333,15 +5144,Frazier,17465,1226313,7 +5145,Sub Radio Operator,10724,1823372,28 +5146,Consuelo,11570,69935,2 +5147,The Collector,9059,1954,0 +5148,Frank,11001,1216752,18 +5149,Captain Sherick,22328,15693,11 +5150,Marian Sheeta,16249,39762,6 +5151,Miss McDonald,29698,135048,17 +5152,'Uncle' Bill Wong,11134,44922,5 +5153,Mutter Breitbart,68569,48613,6 +5154,Janine,9819,138240,13 +5155,Leanne,30994,1878508,9 +5156,Captain of Waiters,705,30847,20 +5157,Mamen (uncredited),99,43337,22 +5158,Dr. Patrick J. Cory,43342,2007,0 +5159,Nurse with Telegram,3028,7401,16 +5160,Juan Gallardo,75892,111702,1 +5161,T.S. Quint,2293,23646,1 +5162,General's bodyguard,11134,1346930,11 +5163,Cadet Alex Stone,11008,204411,4 +5164,Mom Tobias,6552,35517,12 +5165,Miss Neap (Flora),123047,45453,6 +5166,General,1924,117410,78 +5167,Barbara,314352,23524,1 +5168,paní správcová,18939,83955,5 +5169,Jean MacArthur,31037,16047,4 +5170,Susie,13567,1270527,14 +5171,Phil,638,6718,36 +5172,Heckler,38509,120599,23 +5173,Will Stoneman,24767,60060,0 +5174,Kron (voice),10567,67392,5 +5175,Extra (uncredited),2897,1658841,80 +5176,April Fox,11120,27506,9 +5177,Secretary #1,522,27546,25 +5178,Junior,4547,7499,4 +5179,Wanda Wilcox,10937,6450,1 +5180,Elaine,88224,5960,0 +5181,Groucho Party Dancer,9716,1661638,96 +5182,Peaches,1715,18795,10 +5183,Hunchback Attendant,49410,13592,21 +5184,Logan / Wolverine,36658,6968,1 +5185,(uncredited),5998,29120,31 +5186,Police Officer 1,16235,80153,20 +5187,King,71701,936,4 +5188,Extra (uncredited),2897,120738,81 +5189,Officer David Carrey,79593,51582,7 +5190,Bonnie MacMahon,12479,2138,10 +5191,B. A. Strothers,29786,1269763,8 +5192,"Gwen, Age 7",32872,37252,10 +5193,TV Reporter,10603,1748108,26 +5194,Uncle Fester Addams,2758,1062,2 +5195,Nellie,277726,17184,9 +5196,Asian Man,27526,98095,23 +5197,Brig. Gen. Norman Cota,9289,10158,51 +5198,Mickie,22910,89570,4 +5199,Whit,37917,33525,1 +5200,Pierre Lindien,78281,6304,9 +5201,,124633,1753359,10 +5202,Chief Bastokovich,30943,9285,14 +5203,Landlady,23114,95631,22 +5204,Mullay Kasim,31805,5401,3 +5205,Sterling Scott,19797,157942,1 +5206,Hacker,19200,28010,18 +5207,Brutalized Woman (uncredited),6068,213957,60 +5208,Curator,31586,131667,28 +5209,Roger Culver,32059,6074,8 +5210,Little Girl #2 in Ballet Class,11472,1581386,19 +5211,Ernie,9613,193365,13 +5212,Bogus,3587,16927,1 +5213,Barfly (uncredited),11697,138461,74 +5214,Chad,9591,1771,8 +5215,,78285,583568,5 +5216,Goldie,93350,95519,8 +5217,Kinogänger,2262,2725,7 +5218,Cooper,9441,552526,7 +5219,Reporter (uncredited),15,1468186,65 +5220,Feliks,47493,3129,3 +5221,Swana's Restaurant Guest,1859,120703,44 +5222,Juvenile Delinquent,22398,1283909,10 +5223,Cesar,29572,85,1 +5224,Cindy Pomerantz,4012,64237,30 +5225,George Swilling,4806,129759,12 +5226,First Waiter,4012,21042,33 +5227,Policeman,2084,34552,19 +5228,Howard DeVoto,2750,28158,12 +5229,Waldo Aloysius Johnston III,10897,67385,17 +5230,Yamoto,19403,84656,3 +5231,La commère,36245,24778,15 +5232,"Gladys, la reine du kiss",17350,62536,11 +5233,Richard Webber,90414,98950,2 +5234,Drinker #2,197,188452,47 +5235,Mrs. Monroe,23730,156591,13 +5236,Dr. Martha 'Marti' Hunter,26946,34560,1 +5237,Nick Evers,4993,7505,3 +5238,Seymour Starger,17590,98477,5 +5239,Detective #2,26378,120734,35 +5240,Captain Schroeder,75641,2201,0 +5241,Mrs. Myandowski,15592,1234940,13 +5242,Sal Amato,21721,164723,4 +5243,Patty / Carol,28732,6726,4 +5244,Mickey Burke,320011,64517,6 +5245,Ferdy,85837,58265,5 +5246,Paco,10173,1144361,17 +5247,Johnny the Boy,9659,1125220,4 +5248,Myra Shumway,45671,2233,0 +5249,,28134,54887,8 +5250,Hilda,9827,109900,23 +5251,TV Sportscaster,9464,73234,8 +5252,Benjy Benjamin,11576,67393,3 +5253,Assistant Couch,17465,185090,9 +5254,Félix L'Herbier,194,1469823,46 +5255,Soldier (uncredited),961,1160676,20 +5256,Gene Bodine,2115,21733,6 +5257,Lady M,78285,14812,0 +5258,Old Man,10803,14501,5 +5259,Harkwright Jr.,43832,34241,12 +5260,Miss Moneypenny,691,9878,12 +5261,Soldier (uncredited),11202,1022040,32 +5262,Alonzo P Hawk,10869,4966,4 +5263,Silent Passenger,12454,1221056,25 +5264,Casey Heinz,2124,18916,7 +5265,FBI Agent Kurl,16314,58924,16 +5266,Tony,482,32384,17 +5267,Slim,9609,8659,5 +5268,Amy,2021,20767,1 +5269,Herman Blume,11545,1532,2 +5270,Nathan Landau,15764,8945,1 +5271,Policeman,10440,1701137,24 +5272,Måne,742,11051,16 +5273,Russell,167,42316,16 +5274,Pulaski,17691,135066,23 +5275,Captain Jackson,949,6580,36 +5276,Cop at police station,19200,4764,19 +5277,Car Guy,24746,104013,14 +5278,The Alien,44932,1109,12 +5279,Gurgle (voice),12,6168,6 +5280,Maudy,11979,199315,11 +5281,,73642,10985,0 +5282,Whit,4012,172017,15 +5283,Coma Queen,18414,190888,10 +5284,George Knox,24795,2047,0 +5285,Parul,85052,96329,9 +5286,George Holly,14698,24819,5 +5287,Bartender (uncredited),2897,1128247,288 +5288,Rosemary Woodhouse,805,12021,0 +5289,Jack Kelly,73067,5168,2 +5290,Bagheera (voice),14873,179702,4 +5291,Extra (uncredited),2897,170562,128 +5292,Finch,20307,17200,4 +5293,Raul Hernandez,11959,146798,8 +5294,Purdeep,55420,8690,21 +5295,Meredith,261246,17780,14 +5296,Horse's Sister,9427,1356550,30 +5297,Tommy Pickles (voice),14444,15274,2 +5298,War Department Clerk,857,1653085,33 +5299,Toad,9607,939703,7 +5300,Stanley Sharkey,35292,3547,9 +5301,Rocky Balboa,1374,16483,0 +5302,Boris,46924,3905,34 +5303,William,15037,13389,2 +5304,Mitchell,28120,99753,8 +5305,Mark Laughlin,16643,83777,9 +5306,Twin Boy,27526,38948,25 +5307,Watts,15143,31140,1 +5308,Parole Officer,10909,1381096,8 +5309,Martin,12186,1426205,15 +5310,Cheryl Lang,1073,3234,2 +5311,Waitress,10866,552470,19 +5312,,62463,83674,25 +5313,Elderly Man in Church,16235,80152,19 +5314,,102,6140,16 +5315,Linet,30584,18561,5 +5316,Corleone Family Member (uncredited),238,100503,51 +5317,Nurse Wilkins,621,18251,20 +5318,Stacey McGill,48287,131934,1 +5319,Dr. Jones,11591,27993,13 +5320,Samantha Darko,141,1580,7 +5321,Anna Marie Erdödy,13701,6588,2 +5322,Governor's advisor,12780,1191173,14 +5323,Steve,15762,106853,13 +5324,Arthur Winslow,28519,15788,2 +5325,EMS Doctor,10440,28029,12 +5326,Karen Lawson,9516,19265,8 +5327,Stewardess' new boyfriend,11104,1591060,9 +5328,Ann Newton,21734,87823,7 +5329,le maire,9317,145103,6 +5330,Alice,10326,76031,10 +5331,Band Member,6068,59457,42 +5332,Debbie,58886,45749,3 +5333,Saddle Rock Sheriff,8584,52703,13 +5334,Pips (voice),13225,2224,2 +5335,Sirach,9059,1108092,14 +5336,Paul,1058,15214,4 +5337,Caballero,32093,120703,37 +5338,President Bru,75641,14821,8 +5339,Ray Mitchell,24795,102690,15 +5340,"Katrin Apelgren, ""Plommonet""",29224,227855,4 +5341,Cutbush,2100,21533,7 +5342,John LaPointe,10657,58058,17 +5343,Mr. Simms,11003,58478,13 +5344,Pauline Fleming,2640,27566,5 +5345,,275096,1353684,2 +5346,Paula,11524,174860,18 +5347,Hooker in Distress,8584,123972,9 +5348,Pete,210092,1193682,21 +5349,Dermot Browne,15506,78289,6 +5350,Henry,13962,1538,9 +5351,Johnny Handsome,505,2295,0 +5352,Milly Stephenson,887,13577,1 +5353,Linda,42424,128124,7 +5354,West Indian Woman,26889,96536,1 +5355,Marky,9426,105298,5 +5356,a banquet guest,24005,171111,28 +5357,Josh Howard,299,20156,9 +5358,Aicha,409,68024,24 +5359,Bradley Morton,38765,13875,14 +5360,Martin,9028,16318,5 +5361,U.S. Ambassador Howard,5257,13728,7 +5362,The Cop (uncredited),73969,148416,17 +5363,Alvy's Psychiatrist,703,437104,34 +5364,Carly,9902,59192,2 +5365,Zumi / Rebel #2,63105,94656,4 +5366,Leonard Donofrio,11091,4512,7 +5367,Steve Becker,167,1990,14 +5368,Mother,1793,44897,16 +5369,Inspector Harrigan,50001,89813,3 +5370,Jason - Age 8,11091,33235,4 +5371,Journalist,91076,1006136,17 +5372,Frank Morrison,11456,8891,0 +5373,Bruce King,28577,151907,17 +5374,Louise Warren,15263,41240,6 +5375,Janelle,11873,4160,3 +5376,Elliot Jaffe,32074,2115,2 +5377,Daniel McMann,18417,1771,3 +5378,Sheldon,46029,3265,5 +5379,Additional Voice (voice),9016,61959,26 +5380,T.K. Law / Massie Walsh,10796,17832,2 +5381,Bank Colleague,2084,34545,15 +5382,Happy,19819,22131,3 +5383,Andre Toulon,26958,44883,4 +5384,U.S. Reporter,10222,64681,13 +5385,Dr. Compagno,10671,78309,23 +5386,Townsman (uncredited),220,27164,12 +5387,Mahdi Interpreter,10568,552408,23 +5388,Housewife,7514,52822,9 +5389,Pete Mancini,17691,58423,8 +5390,Tony Hunter,29376,30181,0 +5391,Ed,14676,16433,6 +5392,Mr. Tsaldouris,43438,115062,5 +5393,Nadine,38043,77018,11 +5394,Sheriff,51802,1432396,18 +5395,Merry-Go-Round Operator,38775,121364,5 +5396,Principal McGee,621,860,10 +5397,Herself,47715,5961,5 +5398,Bermann,409,5478,13 +5399,Audrey II (Voice),10776,218028,16 +5400,Joey O'Hara,134368,11150,3 +5401,Boy,77079,1199334,8 +5402,Zach,28387,64057,14 +5403,Seymour Krelboyne,24452,98452,15 +5404,Rhino Labuschagne,16417,80524,0 +5405,Deputy Harold Richie,26173,78385,8 +5406,Skinny Player on the Road,11873,13604,33 +5407,Bartender,39462,97204,12 +5408,Grandmother,11159,109390,25 +5409,Sherman,49788,176362,6 +5410,Jed Towers,24005,12149,0 +5411,Boomer (voice),10948,77548,10 +5412,Henry Denton,5279,11864,13 +5413,Rosa,99,955,2 +5414,Heckler,15310,8874,15 +5415,Chelsea,32872,94554,44 +5416,Ballroom Woman,4338,37045,15 +5417,Concierge,27145,29513,10 +5418,Nicky,29492,103966,7 +5419,Himself,115810,1062037,0 +5420,Alan Erasmus,2750,1120,3 +5421,Susie Waggoner,14931,10431,1 +5422,Rublevich,691,104940,19 +5423,Allan-a-Dale - The Rooster (voice),11886,1226099,16 +5424,Wing Kong Hatchet Man,6978,87564,36 +5425,Mark's Dad,14242,1502571,9 +5426,Ed Carmichael,34106,6463,11 +5427,Simon,76411,21757,7 +5428,Bob Collins,27332,38709,11 +5429,Nurse / The Helen Miles Singers,9716,1661609,68 +5430,Cigarette Girl,26299,124852,15 +5431,Commander William T. Riker,200,2388,1 +5432,Taro Takatora Ichimonji,11645,70132,0 +5433,Additional Player,9563,1741407,42 +5434,Gang Member (uncredited),1480,39925,26 +5435,Leather Coat Guy,11812,51670,10 +5436,Lawrence Hammill,13852,11132,6 +5437,Jonathan Eatenton,10860,184498,13 +5438,Bud,39875,14738,8 +5439,Max Dugan,1793,4765,1 +5440,General Bukharin,714,10748,14 +5441,Leonardo / Gang Member,1498,77154,6 +5442,Peg Coughlin,37291,36190,4 +5443,Ted,17692,1296392,41 +5444,Carmen,482,1127147,14 +5445,Faye Barringer,334,6199,20 +5446,Michael Powell - Age 21,167,84497,22 +5447,Nurse,46986,94430,3 +5448,Ollie Quinn,11593,55459,14 +5449,Dr. Watson,38558,96539,6 +5450,Fujiko Imada,10219,1113467,14 +5451,Bull Jones,22910,89569,3 +5452,Jerry O`Neill,5551,55636,2 +5453,Benjamin,814,1660002,16 +5454,Helen Miles Singer,9716,1661650,108 +5455,Vincent LaMarca,13536,380,0 +5456,Mrs. Kessler,814,1220068,21 +5457,Crispin's Mom,10708,41420,8 +5458,Todd,19760,17243,9 +5459,Roberto,1554,4818,2 +5460,,201724,14702,2 +5461,Cousin Matt,215373,8540,4 +5462,Helicopter Pilot,32049,91936,26 +5463,Sandy Sue,11397,99206,20 +5464,Dr. Bob Moore,2124,2154,4 +5465,Meriadoc 'Merry' Brandybuck,120,1330,11 +5466,Martin Taylor,73116,982,0 +5467,Police Captain (as Sig Rumann),28345,2497,14 +5468,Washington Post Reporter,2637,27681,9 +5469,La Donna,16094,63046,7 +5470,Jack Rose,9563,11885,11 +5471,Peeing Man,8467,1853185,43 +5472,Cristina,2441,24974,0 +5473,"Aimée, la patronne de l'hôtel de France",9317,585664,8 +5474,Blonde,69605,556837,15 +5475,Angus James,37410,171574,10 +5476,Launch Director,13766,12646,7 +5477,Terry,165,12826,12 +5478,Roxanne,983,981554,11 +5479,Marty Dwyer,11472,74036,2 +5480,Jeb,26761,10158,1 +5481,Robert's father,78657,584846,4 +5482,Agent #2 - Miami Convention,2604,998535,75 +5483,Liam 'Leo' O'Bannon,379,3926,4 +5484,Morrow Streeter,29444,28410,2 +5485,Father McKim,415072,78193,5 +5486,Tight End,9563,1741397,33 +5487,Carly Lumpkin,201445,1075130,1 +5488,Mr. Semper,11120,90186,13 +5489,Narrator (voice),10162,1609635,6 +5490,May Welland,10436,1920,2 +5491,(uncredited),99,93,27 +5492,Mercenary,10603,1748102,19 +5493,Pop Heinrich,217802,940214,5 +5494,Dr. Lawrence J. Hockstader,14698,2755,3 +5495,Tristen Ryler,11531,69748,3 +5496,Randall,15379,136421,10 +5497,Primo's Ex-Wife,78281,53905,4 +5498,Barfly,43828,1291360,38 +5499,Judy,77283,1228995,5 +5500,Lucy,11888,1449399,8 +5501,Mark,11635,60951,10 +5502,Showgirl (uncredited),21468,1234545,12 +5503,Calvino,4147,35024,9 +5504,Rudi,37936,1190319,9 +5505,Mr Mundy,88818,1230708,13 +5506,Boy in Suit,18551,1286734,8 +5507,Symposium Speaker,55420,1301642,6 +5508,Schoolboy (uncredited),25898,125847,9 +5509,Chief Elkans,20443,3041,7 +5510,Felix,47507,2406,3 +5511,Nelson Chaney,10774,66712,4 +5512,Douglas Benoit,24081,5049,1 +5513,Shirl,16124,79394,2 +5514,Stanley,17464,81903,12 +5515,Pamela,2021,20771,7 +5516,Alice Bushkin,14819,32394,4 +5517,Da Kuai-Dai,11230,134684,6 +5518,Swedish Bikini Team Member (uncredited),8467,1733375,72 +5519,Dr. Satan,2662,115244,28 +5520,Maria,10238,11916,3 +5521,Griff,31978,108665,0 +5522,Young Evan Christenson,13526,82054,16 +5523,Indian Musician,522,1813575,48 +5524,König Gunther,5608,44347,3 +5525,Pete Schroeder,4986,4974,12 +5526,Gen. Korrd,172,2078,9 +5527,Mrs. Sokol,2613,5630,25 +5528,Extra (uncredited),2897,1471372,230 +5529,Maggie Carpenter,4806,1204,0 +5530,Kyle Harding,27681,98530,2 +5531,Shelley,10724,164707,47 +5532,Florence Peters,2990,6929,9 +5533,Poodle Woman,35292,121478,5 +5534,Proofreader,1396,1836807,10 +5535,,56235,223819,10 +5536,Miller,29263,1531888,8 +5537,Charlotta,24739,63046,5 +5538,Dr. Ziegfeld,43277,34758,9 +5539,Sara Johnson,9816,12041,0 +5540,Rubrick,9425,15443,14 +5541,Bladebeak (voice),18937,87079,8 +5542,Leutnant Fritz Lobheimer,43596,48330,6 +5543,Horseman in Parade (uncredited),2897,1543341,309 +5544,Wes Man,28466,1676999,18 +5545,Lil,31044,127640,12 +5546,Jack,25501,94968,8 +5547,Sophie alias Nadia,2084,2227,0 +5548,Servant (uncredited),15,1468812,59 +5549,Dixon 'Dix' Steele,17057,4110,0 +5550,Ben Jordan,12220,62,0 +5551,Miyagi's Father,8856,56118,3 +5552,La marchande de journaux,194,17618,39 +5553,Steve Donahue,21468,111852,5 +5554,Salvation Watkins - Sir Humphrey's Gang,31995,3676,16 +5555,Mama Threadgoode,1633,2207,11 +5556,Mrs. Semple (as Carrie Clark Warde),70801,1392579,11 +5557,Gary Chasseur,10872,61607,8 +5558,Kris Anderson,61813,14326,0 +5559,Amelie Poulangeard,9317,11217,3 +5560,Rocky Balboa Jr.,1375,16660,3 +5561,Eddie Diaz,125548,80376,6 +5562,Barbara Greenspace,56162,1049234,6 +5563,The Gas Station Clerk,9464,134064,22 +5564,Cherry,118991,59662,3 +5565,Col. Fielding,20424,81182,5 +5566,Adrienne Mark,108365,14812,0 +5567,Carl Harding,2144,781,4 +5568,Charly,9840,59830,2 +5569,Passerby #1 - Democratic Convention,2604,1219410,84 +5570,Molly Gilmore,52744,5064,1 +5571,Carmine Cuneo,238,3143,14 +5572,Cuban Girl,30547,79073,16 +5573,Schoolboy,601,9982,9 +5574,Merrill Hess,2675,73421,1 +5575,Puff Smokey Smoke,35696,88059,3 +5576,Sentry,32093,30203,32 +5577,Amanda,3092,31526,3 +5578,Maggie Rice,795,5344,1 +5579,Geek Girl #1,15144,3234,19 +5580,Himself,15506,523,12 +5581,Dan,16980,11154,7 +5582,Dr. Milo,1687,2770,6 +5583,Marian Almond,45019,9278,5 +5584,Fred Bishop - Simon's Dad on Phone (voice) (uncredited),2898,34521,55 +5585,Cigarette Girl,1859,178336,46 +5586,Dr. Frank Schratt,43342,89582,1 +5587,Franz Krieger,954,1003,4 +5588,Federal Court judge,13852,75893,9 +5589,Barkley,23805,15387,5 +5590,General Cartwright,4825,163340,10 +5591,Realtor,11591,2505,6 +5592,Mona,24254,91441,30 +5593,Brian Daniels,15943,167384,6 +5594,Maureen,18683,1889107,25 +5595,Dr. Thatcher,11472,1232039,15 +5596,Mark Brandon 'Chopper' Read,9519,8783,0 +5597,Honey Shayne,59181,200298,0 +5598,Himself,85472,107616,5 +5599,Sweater Friend,8467,1273849,69 +5600,Rory,9358,51937,7 +5601,Prince Charles,10735,1267471,12 +5602,Frances Alda,56934,269139,9 +5603,Girl #1,105,175060,35 +5604,Nicole Oakley,10691,205,0 +5605,Mary Magdalene,2428,24812,6 +5606,Nurse Washington - VA Hospital,2604,170948,54 +5607,Elsa,2291,3978,11 +5608,Roger Brand,4012,1192390,29 +5609,Mikhail Polenin,8665,3896,1 +5610,Brian Hull,7219,52063,4 +5611,Gabriella Francini,30379,6200,2 +5612,Ricky Slade,15745,4937,0 +5613,Moe Henry,19855,4943,18 +5614,John Silver (voice),9016,56618,1 +5615,Golden Dragon Club member,9404,1277942,14 +5616,Von Sidell,9716,1204,7 +5617,B.J.,32284,1352287,6 +5618,Sonny Boy Williamson,95743,15567,7 +5619,Spartanette #2,14,1503019,26 +5620,Seaman Larry Meadows,14886,1811,2 +5621,Newspaper Reporter Hagiwara,1678,108026,5 +5622,,102,1405550,18 +5623,Tito,9294,166606,8 +5624,Choir Mistress,15765,80990,4 +5625,Cop,10395,14409,14 +5626,Lord Nelson Rathbone,6038,49735,4 +5627,Oscar,403,5702,6 +5628,Extra (uncredited),2897,1581072,140 +5629,"Saul, Age 25",32872,1194903,8 +5630,"Huerequeque, the Cook",9343,1101308,5 +5631,Mike Mulcahey,31005,12850,14 +5632,Newspaper Salesman,6068,1609273,56 +5633,Poitiers' Inquisitor,10047,1668026,31 +5634,Rhino,9308,100461,10 +5635,Timid Girl,10803,197371,15 +5636,Athos,11370,17545,10 +5637,Chrissy Thomkins,9591,93055,26 +5638,H. Clay Murchison,13685,1117324,9 +5639,The Publisher,123047,15788,3 +5640,Peter West,7219,45473,1 +5641,Tina,9589,1728660,20 +5642,Audrey,35694,5916,4 +5643,Statehood Audience Member (uncredited),11697,119542,57 +5644,Mikey Chalmette,505,6914,6 +5645,Nubian (uncredited),15849,1208039,18 +5646,North's Dad,31586,1206,1 +5647,"Solenko, Restaurant Manager (uncredited)",949,4971,42 +5648,Charles Townsend,580,1673751,25 +5649,Lazlo Hollyfeld,14370,9629,4 +5650,Little Girl,3035,150947,17 +5651,Yuri,8358,55437,8 +5652,Sun Bather,47955,102437,7 +5653,Diana Coupland,24918,94370,4 +5654,Spencer Connelly,2898,10135,18 +5655,Tiny Ted,18551,2848,9 +5656,Kim,9776,59153,5 +5657,Margaret Yang,11545,239981,6 +5658,Party Girl,11397,173990,89 +5659,Mr. Harold Wilkes,11231,1568433,11 +5660,Scott Chavez,32275,2435,4 +5661,"""Hickory"" / The Tin Man",630,9070,4 +5662,Peter Pan (voice),10693,50997,0 +5663,Adm. Randolph,935,1236452,10 +5664,Waiter,16249,99828,18 +5665,Emmett Wilder,152023,19977,0 +5666,Marta Farra,68569,282349,3 +5667,Major Iceborg,18,28897,17 +5668,Tap Dance Kid,9464,129793,24 +5669,Extra (uncredited),2897,1198584,84 +5670,Boston Yenta,2323,1651566,24 +5671,Larry Maretto,577,2876,1 +5672,Idgie Threadgoode,1633,31140,5 +5673,Howard Beale,10774,29903,2 +5674,Melissa Lefevre,25969,4788,11 +5675,Jim the Gas Station Attendant,20424,17754,22 +5676,Judge Philip McNeily,10950,38570,17 +5677,Michelle,10647,1229915,12 +5678,Eugene Carmichael,13550,210420,13 +5679,Hare Krishna,9532,1366417,19 +5680,Band Member,6068,1609257,41 +5681,Abhay,4254,35763,13 +5682,Smiley / Ismael Torres,76397,73132,13 +5683,Mactilburgh's Assistant,18,1402694,41 +5684,Black Jack-Groupier,524,7444,18 +5685,Tom Alcock,19958,70755,9 +5686,Ray 'Liebling' Greenspace,56162,69010,1 +5687,Nancy,178,193318,11 +5688,Police Sergeant,11008,9521,13 +5689,Channel 3 Cameraman,11377,47297,12 +5690,Ogilvie,19050,1416107,8 +5691,Mrs. Baldridge,95743,168797,8 +5692,Captain Esteban Pasquale,32093,8727,2 +5693,Townsman (uncredited),11697,1624551,85 +5694,Alfred Butler,51371,8635,0 +5695,Serokin,11535,58805,7 +5696,Second Driver,25501,109758,5 +5697,Johnny from Malibu / Mike from San Diego,28,1391387,23 +5698,Maj. Gen. Jack Lesley,35284,11128,5 +5699,Sue MacCauley,32049,41229,5 +5700,Usher in Bridal Party (uncredited),238,1235937,43 +5701,Young Ben,13549,140293,8 +5702,Masae,3780,85308,27 +5703,Jimmie Feldman,19050,90172,9 +5704,Larry (Florida Reporter),1813,4199,21 +5705,"Albertus Pictor, church painter",490,6666,12 +5706,Man at Webster Hall Table (uncredited),1578,1241,7 +5707,Plump Man,18551,1179344,11 +5708,Actress in Rob's TV Show,703,821,13 +5709,Young Einon,8840,59075,7 +5710,Trick-or-Treat Child,9716,1661634,92 +5711,Additional Voice (voice),9016,86006,20 +5712,Kaede's lady in waiting,11645,134319,24 +5713,Lenore Craven,29056,101499,3 +5714,Eve Harrington,705,10606,1 +5715,Cowboy,5917,1894174,61 +5716,Joan Marshall,125548,5699,2 +5717,Gascone,95627,2372,22 +5718,Miss Sandra Beecher,55731,4587,0 +5719,Louise Schumacher,10774,10083,6 +5720,Mystery Man,638,9287,4 +5721,Extra (uncredited),2897,1147313,155 +5722,Club Galore Twin,11535,1674950,66 +5723,Chet Parker,11415,1080265,6 +5724,Lani,23239,544968,5 +5725,Mrs. Croft,17015,10981,3 +5726,"John W. ""Jack"" Burns",43002,2090,0 +5727,Warren,13531,2839,8 +5728,Guinan,201,2395,13 +5729,Ron Kirby,43316,18735,1 +5730,Geena Briganti,42580,87255,5 +5731,Man on Bridge,2637,27714,31 +5732,Andy,25969,16666,3 +5733,Martha Edwards,3114,30558,14 +5734,Dad Li,60855,158567,1 +5735,Villager,229,1125676,26 +5736,Jack Daniels,2453,927779,10 +5737,Saleh,46094,134763,1 +5738,Berle - Red Team,17971,215900,12 +5739,Connolly,23668,68812,3 +5740,Fred Tate,11521,46530,2 +5741,Cmdr. Hikaru Sulu,172,1752,4 +5742,Rosie's granddaughter,21032,1592266,12 +5743,Barbara Rose,249,3391,0 +5744,Dancer,6068,1609262,45 +5745,Katie Kessler,278621,66199,6 +5746,Tim,30946,6861,3 +5747,Coach Warren,14534,38571,18 +5748,Young Richie,11011,28042,7 +5749,Gabby Powell - Age 9,167,1992,21 +5750,Harry Winston Dancer,9716,17640,21 +5751,Doctor,43832,131544,26 +5752,Exam Procter,1647,1517885,25 +5753,Party Guest (uncredited),3309,103347,12 +5754,Anxious Tunnel Person,17692,93424,39 +5755,Henry,10849,52995,5 +5756,Riley,23069,198415,8 +5757,Karin,41969,39117,0 +5758,Belly Dancer,76,3736,10 +5759,Janie,79593,1236832,4 +5760,Silver Bullet,17692,1296371,11 +5761,Attacker,47955,1295296,6 +5762,Herself,262,66776,17 +5763,Theresa Osborne,10207,32,1 +5764,Charlie,9028,33819,17 +5765,Coach,13346,19752,6 +5766,Extra (uncredited),2897,1281295,116 +5767,Crash Driver,12454,1221066,23 +5768,Jim O'Carberry (uncredited),61934,14573,18 +5769,Jerome,26422,3061,4 +5770,Mariammo,606,2124,16 +5771,Flying Cop,18,45438,47 +5772,Harry,2892,28743,0 +5773,Priest,20438,1215378,4 +5774,Dr. Hank McCoy,36658,33355,31 +5775,Registration Official,864,118462,14 +5776,Chang,30265,105940,3 +5777,Psych Patient #4,11618,183057,19 +5778,Roughrider (uncredited),11697,190776,83 +5779,Gräfin Dusy Told,5998,47169,2 +5780,Irate Driver,15310,1231235,18 +5781,Bit Part (uncredited),31527,30719,12 +5782,Irene Moffitt,8989,53647,6 +5783,Bruno,52366,146214,20 +5784,Laughing man,11159,1492479,42 +5785,Reporter,9296,1023439,67 +5786,High School Girl,55420,1799814,18 +5787,Larry,32274,22297,17 +5788,Egyptian Starting Fight,31498,126014,16 +5789,Woman at Hospital,41852,1855240,7 +5790,Dr. Feldman,13411,4175,8 +5791,Joey Simmons,31618,1603935,12 +5792,Sale House Man #2,14,1658382,12 +5793,Photojournalist,28,2778,8 +5794,Skinhead,10003,34515,12 +5795,Mrs. Taft,580,16224,14 +5796,Prison Guard,10400,1393354,69 +5797,Josh Jordan at two and a half,12220,71726,5 +5798,Station Master,21734,30530,9 +5799,Max Schumacher,10774,8252,1 +5800,Abbot,11231,1080062,5 +5801,Robban Söderberg,16026,79059,3 +5802,Eugene Teagarden,129628,65827,6 +5803,Malachi,9079,2701,7 +5804,Shuji Yano,34326,72455,14 +5805,Orderly #1,44414,7268,9 +5806,Norman,9717,15416,4 +5807,Superintendent,9540,190772,10 +5808,Frederic,25872,42740,1 +5809,Woman Gambler at Rick's Next to Croupier (uncredited),289,1269196,89 +5810,Washington,49688,1306050,5 +5811,Otis,10692,27736,2 +5812,The Poet,52782,553492,8 +5813,Le Garçu,47119,1866973,6 +5814,Janice Tyndall,43828,111581,7 +5815,The Wise Janitor,11397,16619,14 +5816,Mrs. Potts (voice),10020,14730,5 +5817,Rachel,58372,12021,0 +5818,Mrs. Orton,33851,1464109,13 +5819,Fryer,12311,138219,21 +5820,Superintendent Talbot,12684,102888,5 +5821,Grace Bird,22279,17026,14 +5822,Caitlin Sheinbaum,27681,1176968,7 +5823,Mall Guard,16820,200598,11 +5824,Patricia Bates,73116,10652,3 +5825,Red,21132,11315,9 +5826,Caterer with Tray,10603,1748124,44 +5827,Neighbor (uncredited),34106,1064924,57 +5828,,124633,111067,9 +5829,Additional Voice (voice),9016,111466,22 +5830,Ray Reno,39833,123524,8 +5831,FBI Agent,755,11163,12 +5832,Flower Store Customer (uncredited),2898,1086875,51 +5833,Daniel Graham,41590,5168,2 +5834,Taylor,11133,68301,5 +5835,Rudy,11442,11868,7 +5836,David,2625,27545,5 +5837,Max Kessler,814,1319052,19 +5838,Pockets,11385,7503,3 +5839,Murray Ryerson,41805,6067,1 +5840,Yetta,15764,135170,3 +5841,Porter Milgrim,17590,5732,4 +5842,Ethan Larson,24126,15414,6 +5843,Kenny Kane,9821,4691,7 +5844,Sgt. Luther Fry,20287,85868,9 +5845,Haitian Man,26889,96537,3 +5846,Ole Bramserud,16026,79057,1 +5847,2nd Copy Boy,1924,81816,43 +5848,Nell Forbes,24005,3149,1 +5849,Michael,3537,32389,5 +5850,Dancer (uncredited),15,1413586,103 +5851,Lily,195,2433,0 +5852,1st Copy Boy,1924,131083,42 +5853,Mrs. Cameron,887,3346,14 +5854,"Hisao, Fumiko's husband",28273,70324,4 +5855,LAPD Officer Bobby Aldrich / 'A' World Inmate #1,10796,62003,4 +5856,Digger,21132,4942,6 +5857,Sean,13408,2041,0 +5858,Al Neri,242,3174,12 +5859,Shouter - Sunrise Kid,11694,70261,2 +5860,TV Anchor,22398,1472882,13 +5861,Mortician,12506,42644,18 +5862,Robyn,26603,27725,4 +5863,Officer,11442,62824,20 +5864,Wanda,47889,1607818,8 +5865,Sarah,245268,95631,11 +5866,Woman on Platform,11517,106791,8 +5867,Mr. Lisbon,1443,4512,0 +5868,Daboo Kapoor,85052,142627,6 +5869,The Journalist,269,3833,5 +5870,Dr. Rochelle,19142,101874,5 +5871,John Kelly (aka Johnny Dangerously),16806,2232,0 +5872,Vito,38922,19136,5 +5873,Commissaire Japonais,2110,1677033,26 +5874,Captain Bosch,23730,90519,2 +5875,Michelle,13536,3910,2 +5876,Vashti,32275,11500,11 +5877,Macey,21849,120715,6 +5878,Adrian Mercato,30875,78714,5 +5879,El Pachuco,76397,587,1 +5880,Moll (uncredited),12311,1409154,51 +5881,Cherise,12154,1222277,5 +5882,Tillotson,9314,26861,6 +5883,Doug,29825,5724,7 +5884,Keith Lennox,15310,122884,5 +5885,FBI Agent - Radish,17711,156980,16 +5886,McIver #2,22784,999860,6 +5887,Arliss Lipnicki,19855,1527161,6 +5888,Merchant at the inn (uncredited),490,550014,17 +5889,Taxi Driver,43997,33399,6 +5890,Maddy,10691,343,9 +5891,Elevator Passenger (uncredited),3085,32221,22 +5892,Hon Sam,10775,26724,3 +5893,Chase Buell,1443,17240,13 +5894,Carroll 'Toddy' Todd,12614,40202,2 +5895,Fiddle Player,43828,121242,29 +5896,Pushcart Boy,7514,52821,8 +5897,Woman at Press Confrence,982,1191818,16 +5898,Michaelangelo / Soho Man,1497,77152,2 +5899,Henriette,2262,1857,8 +5900,,102,32728,11 +5901,Young Ben Sage,15263,78386,21 +5902,Dr. Betsy Reisz,2887,5657,3 +5903,Mr. Dingle,31503,52995,3 +5904,Wendy,24584,1633400,4 +5905,farbror Sandberg,8816,1778139,11 +5906,Shiv Kapur,4254,35757,15 +5907,Porno Star #1,638,9315,39 +5908,Nea,12618,3978,23 +5909,,17691,6777,16 +5910,Dr. Zucco,2160,10924,10 +5911,Gaz,9427,18023,0 +5912,Grinner,9659,1466392,17 +5913,Marie's Step-Father,28974,132320,1 +5914,John Coble,5917,5605,2 +5915,Veda Pierce Forrester,3309,31844,4 +5916,Frances,25994,7056,0 +5917,Ben Letts,71067,32138,5 +5918,Danny,33542,44921,6 +5919,Marla,18642,83805,5 +5920,Extra (uncredited),2897,1624660,148 +5921,Det. Drooler,20075,6916,6 +5922,John Allerdyce / Pyro,36658,11022,13 +5923,Long Duk Dong,15144,16183,4 +5924,Frank Jarrett,11853,1162,6 +5925,James as a young boy,50225,76650,8 +5926,Nanny,9716,1661585,47 +5927,Janey Briggs,11397,69210,0 +5928,The Blonde (voice),29204,100603,9 +5929,Laurence Berger,35292,1806674,10 +5930,Agnes von Kurowsky,26949,18277,0 +5931,Zini (voice),10567,7133,3 +5932,Kenny Moore,22256,21029,6 +5933,Marv / Psychiatrist / New guy / Raymond Hurdicure,18414,21290,0 +5934,Sergeant,31947,41745,12 +5935,Fon,3173,31042,1 +5936,Syme,9314,208920,5 +5937,Mr. Jonas,43266,113759,9 +5938,Narrator (voice),10436,109410,21 +5939,Anxious Man at Phone,8467,1223828,28 +5940,Madre di Renato,10867,67614,3 +5941,Williams,25934,65334,20 +5942,German Officer (uncredited),289,45164,98 +5943,German Woman at Railroad Station,1859,1471658,36 +5944,Virgil,37917,2454,5 +5945,Street Person (uncredited),117,182287,53 +5946,Sasha Thomas,9877,1234,5 +5947,Leslie,11185,170906,8 +5948,Marjorie Oelrichs Duchin,43199,5729,0 +5949,Deputy Norris Ridgewick,10657,1472,5 +5950,Kessi,9589,1728658,18 +5951,Trudy,49929,30435,1 +5952,Shelly Webster,9495,42649,5 +5953,Joanna Kramer,12102,5064,1 +5954,Pedro,6644,50974,12 +5955,Pa,20735,1039,3 +5956,Woman with Baby,19200,6395,20 +5957,John Smith,2669,26860,14 +5958,Agloof,124625,1368070,9 +5959,Vendor on Bus (uncredited),3078,1172948,13 +5960,Chemist,5332,42839,13 +5961,Bob,476,2876,0 +5962,Zoe,1811,8211,16 +5963,Young Richard,2033,20900,3 +5964,Maitre D',2898,77338,27 +5965,John Portland,80350,128191,1 +5966,Susie,26958,54634,1 +5967,Cop in Pete's,11899,827,13 +5968,Ueda,34326,1029339,5 +5969,Nakahara Shigeto,34326,1269426,15 +5970,Vincent Lopiano,2898,22108,4 +5971,Gordon,10972,3064,0 +5972,Yolanda,11302,68935,3 +5973,Nurse Rooke,17015,1246598,19 +5974,Yanek Faber,33364,110537,7 +5975,Her father,51371,97996,2 +5976,Isabel Two Decker Ludlow,4476,11068,5 +5977,Hylene,57351,165275,3 +5978,Firing Range Attendant,14,177623,22 +5979,Maria Carmen,26593,95739,6 +5980,John Clifford,45964,1466,1 +5981,Woody Wetherby,99008,1019845,0 +5982,Lesly,33344,19149,2 +5983,Georges Thomason,623,8947,5 +5984,British Colonel,817,93035,10 +5985,Andy,22023,95598,10 +5986,Dr. Mandrakis,45964,28413,5 +5987,Robbie Hart,11003,19292,0 +5988,Uncle Henry,630,8517,7 +5989,Ragnar Vanheden,29224,114142,1 +5990,Young Jim (voice),9016,1398839,12 +5991,Mrs. Flint,20735,40403,5 +5992,Dooley,11517,15029,10 +5993,Tragedy Mask on Theater Wall,11800,2395,6 +5994,Leo,49688,1106155,6 +5995,Insp. Richard,2140,10698,2 +5996,Whitfield,17770,6564,10 +5997,Emerson Cole,38732,11128,1 +5998,Kathryn Corleone,242,1169888,31 +5999,Jolly 2 / Max,85052,52971,1 +6000,Red Team Player,11535,1237738,29 +6001,Sauron,120,1366,17 +6002,Mauatua,2669,26856,9 +6003,Michael Byrne,2669,26866,22 +6004,The Godi,42453,1075152,6 +6005,Smudge (uncredited),28430,27944,16 +6006,Robert,30363,134514,3 +6007,Journalist,11535,1674982,84 +6008,Mother in Train Station,2613,1641228,19 +6009,Assistant Keeper,123047,12982,9 +6010,Paul the Headwaiter,17057,30847,10 +6011,Donald Rimgale,2924,380,2 +6012,Judy Webb,11812,7489,5 +6013,Mr. Quick,2666,933024,17 +6014,Diego's Manservant,32093,34334,39 +6015,Matron (uncredited),34106,140817,127 +6016,,10643,1060570,9 +6017,Rathbone Guard #2,6038,1580027,32 +6018,Adam,31586,181081,31 +6019,The Emperor / Cave Man / Roman Thug,32628,144007,6 +6020,Suzette,9034,18892,0 +6021,Mary Parker,44414,2022,10 +6022,Charlie,38922,13938,4 +6023,King,11950,1793,15 +6024,Allison,703,10556,3 +6025,White Guy,11397,72986,36 +6026,Airline Representative,8970,149486,10 +6027,Young Avi,4012,1192381,18 +6028,Bartender / Indrid Cold (voice),2637,11676,23 +6029,The Girl,977,14583,1 +6030,,11450,7796,29 +6031,Count Leon d'Algout,1859,19550,1 +6032,Vincent Granec,12652,7037,2 +6033,Solus,46924,1233183,22 +6034,Swede Risberg - C,2323,152780,14 +6035,Dr. John Harvey Kellogg,10467,4173,0 +6036,McCarn,24825,4078,2 +6037,Night Watchman,5991,29129,6 +6038,Fritz Arno Wagner,10873,2130,3 +6039,Georgia's Mom,46989,236053,11 +6040,Mary Neubauer,50225,2462,2 +6041,Stacey,9529,101286,10 +6042,Inspector Teal,10003,2629,4 +6043,Morgan,30946,33,9 +6044,,796,94561,19 +6045,Magician,19200,9601,9 +6046,Patrice,11232,6281,10 +6047,Katou Shige,28273,131013,9 +6048,Detective Olivia Neal,19150,530,4 +6049,Johnny,9425,67602,10 +6050,Emile - Waiter (uncredited),289,29274,99 +6051,Benmont Tench,922,15440,11 +6052,Co-Worker Steve,10708,60603,42 +6053,Mrs. R.H. Broache,21629,14551,10 +6054,Lily,10950,74073,16 +6055,Governor's Assistant,9028,1491992,27 +6056,Janet Lawton,36489,115446,3 +6057,Captain Harvile,17015,25665,16 +6058,Party Guest,10436,1190705,15 +6059,Guard (uncredited),34106,1016691,40 +6060,Pavel,8665,122029,26 +6061,Linda McFly,105,1068,7 +6062,Denny,327,4987,1 +6063,Mr. Tringle,20758,8730,7 +6064,Extra (uncredited),2897,1550942,97 +6065,Member #1 / Featured Player,31044,1219275,20 +6066,(uncredited),70801,1476426,17 +6067,Lilian House,10440,8792,5 +6068,Mobutu,10400,107009,11 +6069,Ranch Hand,51802,1472514,14 +6070,Beautiful Girl Hit by Car,11591,112917,14 +6071,Cajun Heavy,635,97922,16 +6072,Cat,22023,1037,1 +6073,Artemis,3784,33834,10 +6074,Reporter,17692,1296391,40 +6075,Father,525,90163,33 +6076,Papai,10801,2341,5 +6077,Overlord,2085,1228374,15 +6078,2nd Sanctuary Man,10803,179204,7 +6079,Ethan,9651,7678,3 +6080,Candy,51802,95315,4 +6081,Angus Bethune,25969,175630,10 +6082,"Farmworker Singing ""Mocking Bird"" (uncredited)",8467,1853261,71 +6083,Lord John Whorfin,11379,12074,1 +6084,Trick-or-Treat Child,9716,1661630,88 +6085,Susan,795,11911,7 +6086,Photographer,46986,1535175,23 +6087,Rose Stravelli,27791,46929,6 +6088,Emily Hodge,152023,18657,5 +6089,Sidney McLoughlin,43079,1248,2 +6090,Gram,9821,4800,3 +6091,Trudy,524,553774,37 +6092,Cop (uncredited),3085,43836,23 +6093,Sgt. Murchison,4986,30621,8 +6094,Librarian,15764,60205,11 +6095,Huck Finn,34723,109,0 +6096,Ned,37410,19977,6 +6097,Extra (uncredited),2897,1683451,118 +6098,Sgt. Kesuke Miyagi,11231,23915,0 +6099,Joanna Camden,11145,162263,14 +6100,David (Aged 15),39428,93396,0 +6101,Pavel Chekov,193,1754,9 +6102,Sarah Dean,4011,114604,11 +6103,Antoine,499,7566,1 +6104,Sir Pellinore (voice),9078,6933,7 +6105,Old Gardener / Gravedigger,16307,2278,8 +6106,James Pepper,38765,8258,3 +6107,Rick Davis,278939,18687,2 +6108,Mrs. Finsecker,3537,32391,7 +6109,Emily,50463,4513,1 +6110,Richard Finch,634,174982,20 +6111,Father John,242,1169886,27 +6112,Lucy,965,10606,2 +6113,Bearded Man - Eiffel Tower Tourist,1859,1317199,40 +6114,Sock Salesman,34223,1668098,13 +6115,Pedro Tercero Gareia,2259,3131,4 +6116,Hawk Hawkins,31671,1811,3 +6117,Woman at Opera (uncredited),15,1467852,130 +6118,Chase Phillips,109614,15735,0 +6119,Inspecteur Morin,26030,111306,10 +6120,Valerie Sors,17771,18998,12 +6121,Dicey Riley,10162,1609644,19 +6122,Rebecca's Father,140519,1112609,10 +6123,Vriendin van Marva's moeder,58886,228606,13 +6124,Bodyguard,117,17921,41 +6125,Jana,15037,20387,18 +6126,Girl in Schoolyard,79593,1772270,34 +6127,Patsy Kennedy,41160,218015,16 +6128,Allan Quatermain,43860,99461,1 +6129,Cathleen Doyle,54405,83909,4 +6130,Mrs. Forrester,11091,21620,5 +6131,Mrs. Leuchtag - Carl's Immigrating Friend (uncredited),289,100898,50 +6132,Grandfather,12144,26044,6 +6133,Mark,10805,6174,9 +6134,,56235,223821,12 +6135,Harris' Boss,2107,57755,10 +6136,Himself (Zephyr skate team),1282,29900,1 +6137,Ted's Mate,62463,1780617,16 +6138,Matt Neely,16820,18916,9 +6139,Charlie Chaplin,6038,27428,3 +6140,Frank the Bouncer,4147,34395,8 +6141,Vulture (voice),9325,193778,9 +6142,National Enquirer Photographer,11000,31511,4 +6143,Tommy Ballenger,15850,10867,1 +6144,Shyla Mumford,12618,1511013,15 +6145,Judge Cameo,17711,2395,19 +6146,Dancer (uncredited),14811,982313,39 +6147,George Mancuso,61813,12055,7 +6148,Dick Roswell,786,1284,9 +6149,radiologo,25403,1854982,20 +6150,Assistant Planetship / Psychlo Guard,5491,7009,11 +6151,Tourist,43832,1331750,19 +6152,Miles Roberts,3595,3212,8 +6153,Leroy,8869,1583061,16 +6154,Able Bodied Seaman (uncredited),12311,111827,39 +6155,Angelica Bullock,13562,125841,2 +6156,Spoerri,5998,47171,6 +6157,Elderly Woman on Tram,12186,1363827,13 +6158,Edna Spalding,13681,35,0 +6159,Placebo Patient,18414,18269,11 +6160,Wiley,28466,1282690,10 +6161,Nancy,24825,100608,6 +6162,T-Medic Irwin Wade,857,1771,12 +6163,Party Guest,9296,1707732,64 +6164,Screaming Woman,12309,106802,22 +6165,Extra (uncredited),539,1422376,18 +6166,Nick Reve,9071,884,0 +6167,Jasper,24816,1231331,13 +6168,Angélique,12112,2405,0 +6169,Ludwig (archive footage),229,30163,20 +6170,Stephen Banning,18990,85345,4 +6171,Pruitt,41478,40377,7 +6172,The hired hand,32600,29267,6 +6173,Tanya,6552,50401,7 +6174,VIP,3682,33665,24 +6175,Tony Moore,26261,94974,4 +6176,Paul Bondi,43002,72659,4 +6177,Plainclothesman,262,207297,30 +6178,Donatello (Voice),1498,3034,15 +6179,Geoff Carter,43832,2638,0 +6180,Chamberlain / Podling (voice),11639,72742,10 +6181,Cornerman #1 - Cerdan Fight,1578,175002,19 +6182,Pfc. Simms,12528,72658,3 +6183,Margaret,43997,42279,3 +6184,Pasqual,13333,1071306,9 +6185,Collins,13965,76192,14 +6186,Sheldon (voice),12,17190,22 +6187,Undetermined Role (unconfirmed),32628,29817,9 +6188,Cheerleader in Front of School,11397,1752319,34 +6189,New Jersey Policeman,10400,1393359,73 +6190,Butterbean Jones,41823,15535,8 +6191,Lauren Daniels,23730,387,3 +6192,un pilote de rallye,42726,578329,11 +6193,Neighbor Helping with Move (uncredited),34106,13791,42 +6194,Nurse,2898,1678186,50 +6195,Prostitute,3780,1482640,44 +6196,Giovanna Bragana,5155,42407,0 +6197,Geri,21148,75195,7 +6198,Agis,35337,231273,3 +6199,Rio Lobo Sheriff 'Blue Tom' Hendricks,26593,235365,18 +6200,Jim Abbott,54405,24813,5 +6201,"Student Organizer - Syracuse, NY",2604,7531,59 +6202,Nite Spot Cabbie,10400,944895,26 +6203,Old Indian,11133,68296,8 +6204,Lady Vendor,44308,1269910,4 +6205,l'architecte,77915,153486,10 +6206,William Bludworth,9532,19384,3 +6207,Dr. Joseph Lewis,70199,37422,2 +6208,Jack,84735,5251,1 +6209,Allison Rowe,30690,12519,3 +6210,Bernadette Flynn,32059,1161,2 +6211,Secretary,22023,1577159,21 +6212,Paramedic,17692,1296378,21 +6213,Bruce,12506,93518,21 +6214,Ranch Hand,51802,1344747,20 +6215,Lupovich,11380,42722,2 +6216,,90762,1866071,13 +6217,Gustave Sonnenschein,17771,22063,8 +6218,Andre Gregory,25468,109470,1 +6219,"Louise, Steve McKenna's Girlfriend",19403,84652,6 +6220,French Girl,23967,1557513,12 +6221,Cpl. Guthrie,9827,1005056,20 +6222,Fred,9462,131170,5 +6223,Howard Weinstein,11862,14592,6 +6224,T.J.,30547,76546,2 +6225,Admiral Bratyeev,8665,940,4 +6226,Helen,30946,11148,0 +6227,Dr. Stuart Kelston,20424,85940,1 +6228,Jessica,10803,14464,2 +6229,Tim,2034,18461,9 +6230,Martin,8391,15319,2 +6231,Ms. Adams,28940,102425,10 +6232,Jackie,11449,87007,12 +6233,Pat,1793,1212040,17 +6234,Comedian,12186,45602,14 +6235,News Reporter,6552,1089116,17 +6236,Sarah,278621,1415876,2 +6237,Evelyn Couch,1633,8534,0 +6238,Scrappy,35569,114000,11 +6239,Dumas aka The Russian,2721,32093,22 +6240,Kazaam,11511,35806,0 +6241,Saleswoman,2984,40946,13 +6242,2nd Controller,1924,12828,80 +6243,"Salvatore ""Sally"" Tessio",238,3093,10 +6244,Fernando Osorio,107693,130715,6 +6245,Amos Carruthers,11697,6462,13 +6246,Richard,70489,101752,16 +6247,Connor Rooney,4147,8784,5 +6248,Reverend Cleophus James,525,7172,2 +6249,"Dr. Blorna, Anwalt",4762,10263,4 +6250,5th Chance: Country Club Girl (uncredited),32600,136528,11 +6251,Rory Browne,15506,78290,7 +6252,Cynthia Boudreau,118991,21277,5 +6253,Susie,21148,152353,4 +6254,Harry Winston Dancer,9716,1661598,58 +6255,Lucille Vinson,31306,29369,0 +6256,Sheriff Hank Pearson,20287,9626,4 +6257,Holstein,838,200523,20 +6258,Dawn Allenby,22279,145875,13 +6259,Baggio,10622,150536,6 +6260,Marge,18417,83053,10 +6261,Banes,9294,33836,9 +6262,Susie Hacker,30875,107206,2 +6263,Mrs. Corry - Old Woman in Park,433,403760,16 +6264,Mitch Weaver,1813,61216,10 +6265,Aladar (voice),10567,61962,0 +6266,Detective Barnaby,26180,2221,9 +6267,Nurse (uncredited),220,30610,14 +6268,Major Peete,31947,15442,9 +6269,John 'Axe' Adcox,2924,349,5 +6270,Holly,9066,27727,18 +6271,Charlotte 'Charlie' Newton,21734,7663,0 +6272,Bodyguard,117,1228768,40 +6273,Shakespearean Actor,696,95975,13 +6274,King Homunculus,229,1081944,30 +6275,Carmen,11873,1161,2 +6276,George Banks,11862,67773,0 +6277,Franz Sanchez,709,2055,2 +6278,Josh at 17,249,1328,5 +6279,Dentist Nurse #1,334,98365,27 +6280,Barbara,61813,1743,3 +6281,Janitor,48787,586221,7 +6282,Oscar Shapeley,3078,30157,3 +6283,Sasà,10867,553188,20 +6284,Sarah,27824,1213613,4 +6285,Roger,42832,79615,4 +6286,Factory Worker,469,4811,7 +6287,Cheri Post,10391,6886,4 +6288,Milo Pressman,235,3043,15 +6289,William Lightbody,10467,4756,2 +6290,Johnny Porter,573,33108,9 +6291,Extra (uncredited),2897,1671997,56 +6292,Hildy Johnson,3085,30233,1 +6293,Wellington Cadet Captain,11008,149012,14 +6294,,21430,2561,6 +6295,Nigel Jenkins,19736,10747,3 +6296,Keetje Tippel,42258,21445,0 +6297,Wanda,9071,82220,5 +6298,Nelse McLeod,6644,29312,9 +6299,Ninny Threadgoode,1633,5698,3 +6300,Dumah,2428,105062,51 +6301,Suzanne,32872,1175530,41 +6302,herr Appelgren,29224,403150,8 +6303,Hands (voice),9016,8316,11 +6304,Loti,709,200581,22 +6305,Henchman (uncredited),11697,976857,45 +6306,Ota,13889,1247296,11 +6307,Buckley Dunstan,20758,9108,3 +6308,L'instituteur,194,1117146,35 +6309,Hank Hanneman,19140,64212,4 +6310,Alfred Redl,29471,10647,0 +6311,Prisoner,12476,11160,20 +6312,Proprietor,30352,106119,15 +6313,Fen,3089,3336,4 +6314,Horatio,141489,6443,19 +6315,Young Steve,24584,1781142,8 +6316,Myrna,29076,156875,9 +6317,Cmdr. Zach Bergstrom,13766,4139,6 +6318,Horace / Inspector Craven,12230,14509,7 +6319,Admiral Isoroku Yamamoto,11422,7450,6 +6320,Sergeant Binnie,15940,1462382,9 +6321,Foot #1,1497,154668,28 +6322,Colonel Gaston Bell,11202,15625,12 +6323,Sandy,52772,650,2 +6324,Walter Stoll,5917,18071,10 +6325,Val,35694,4451,8 +6326,Jerry Bondi,43002,4800,1 +6327,Groucho Party Dancer,9716,1367680,40 +6328,O'Brien,32227,39574,5 +6329,Jason Cane,29076,56979,7 +6330,Le médecin,108,17894,6 +6331,J.R.,116904,166550,2 +6332,Lariot,5924,49357,7 +6333,Judge,1633,1448920,15 +6334,Kyle,13505,16828,0 +6335,Frank Ruettiger,14534,76987,4 +6336,Emily Stowecroft,16249,2926,3 +6337,Crypt Keeper,9059,31365,5 +6338,Franchise,400,4520,2 +6339,Mike Peterson,6,9777,1 +6340,Merle LeFevre,30709,62846,10 +6341,Ogre's Wife,79593,1772254,29 +6342,Laura,49963,8256,1 +6343,'El Diablo' Orlowsky,77079,234297,1 +6344,Narrator,15560,18260,0 +6345,Sir Robert Morton,28519,18325,5 +6346,DJ,2750,1203689,45 +6347,Chris Adams,12639,14528,0 +6348,Alice Warren,15263,1397873,23 +6349,Bus Passenger #3,1637,1872782,16 +6350,Fa Zhou (voice),10674,10345,13 +6351,Jesus Gris,11655,17094,0 +6352,Gwen Meighen,10671,14061,3 +6353,Dale Kerrigan,13852,49360,2 +6354,Beverly Donofrio,11091,69597,0 +6355,Candidate,2924,1213105,17 +6356,SFC Cunningham,2675,28043,7 +6357,Girl at Mellon Publicity Event,28176,1769,17 +6358,Javier,19324,55259,1 +6359,Charlie Smith,22023,514,0 +6360,Man in Feed Store,5917,1894158,43 +6361,,78231,49813,3 +6362,Patient B,3780,134294,34 +6363,The Girl's Mother,32628,144006,4 +6364,Old man,966,14533,9 +6365,Mrs. Neugeboren,8467,7401,20 +6366,Hymie Kaplan,11950,10169,5 +6367,Colt,13333,51576,2 +6368,Bellows,35292,195416,22 +6369,Wesley Crusher,201,3033,12 +6370,Sam Winters,18133,3085,0 +6371,Dignitary at Reception (uncredited),3063,89729,20 +6372,Paterson Detective,10400,209380,29 +6373,Lab Assistant,11428,4600,12 +6374,Frank,2892,28747,5 +6375,Pal,278939,4250,3 +6376,Wally Thorpe,17971,5247,19 +6377,Molly,30709,76465,2 +6378,Ortega Peru,9438,15860,8 +6379,Christine York,9946,17346,3 +6380,Russian Captain,10724,160605,46 +6381,le brigadier-chef,9317,54376,5 +6382,The Sinkiller,32275,19020,6 +6383,The Soldier (as Yulun Ke),25538,150609,15 +6384,Der alte Weyring - Kammermusiker,43596,14120,0 +6385,Opera singer (uncredited),9343,13687,15 +6386,Farmer,30352,106121,17 +6387,Harry Dune,8467,8447,1 +6388,Col Tom Llewellyn,30202,58339,0 +6389,Jeep Owner,12186,19151,9 +6390,Teenage Alan Appleby,32331,55265,3 +6391,Officer Crespi,23730,5176,9 +6392,Everard Proudfoot,120,585902,21 +6393,Khalid,40879,342,4 +6394,Townsman at Carnival (uncredited),220,1277557,27 +6395,Curate,42987,10587,12 +6396,Young Man from Disco,11654,557337,10 +6397,Mrs. Wilcox,1959,20245,10 +6398,Gordon (uncredited),29698,3075,31 +6399,Woman at Second Seance,3092,1538452,17 +6400,Runway Traffic,6068,1609244,34 +6401,Kiri,16441,10660,1 +6402,Jovan Popara,11902,15265,5 +6403,Woman (uncredited),34106,1198893,87 +6404,Donna,14886,77485,6 +6405,The Bludgeoned French Soldier,10047,1077834,18 +6406,Napoleon,11706,14503,4 +6407,Mother (voice),12477,72415,2 +6408,Det. Lt. Bobby Mallory,41805,1466,2 +6409,Barbara Jane ('Babs') Milligan,573,8227,4 +6410,Barfly,43828,1331760,36 +6411,Louise Keeley,11000,1902,3 +6412,Robert,12122,186614,12 +6413,Townswoman (uncredited),11697,141070,41 +6414,Toni Whitney,21352,53930,0 +6415,Fred,17692,1296374,16 +6416,Randy,15144,157054,13 +6417,Newsreel Man (uncredited),15,1543340,31 +6418,Bill,28120,93623,9 +6419,Sophie Claggett,43828,2780,13 +6420,Carl Bruner,251,3417,3 +6421,Eeyore,81310,148822,6 +6422,Pinstripe Lawyer,6978,89141,18 +6423,Deutscher Offizier (uncredited),9289,18546,64 +6424,Randy,8869,67850,9 +6425,Swinger,28940,1851419,26 +6426,Bobby,85052,95505,14 +6427,Dr. Mabuse,5998,77,0 +6428,Jensen,17339,81247,9 +6429,Jeweler,1578,14795,29 +6430,Manfred Powell,1995,20508,2 +6431,Miss Piggy / Fozzie / Animal / Bert / Cookie Monster / Ocean Breeze Soap Board Member / Sam the Eagle (voice),11899,7908,1 +6432,Kenji Yamamoto,17962,237324,10 +6433,Subway Gang,169,1583678,20 +6434,Claire,9716,1661595,55 +6435,Jacques Vernon,31417,128484,3 +6436,Tanya Livingston,10671,3830,2 +6437,News Cameraman,1637,1228624,33 +6438,Chong,20075,63208,1 +6439,Minnie,229,2929,7 +6440,Sylvester's Girlfriend,11576,127638,21 +6441,Joanie James,141,1599,14 +6442,Maid Marian (voice),11886,143770,7 +6443,Judge,10862,1598,13 +6444,Broome,16307,156387,11 +6445,Lifeguard (uncredited),578,1081816,26 +6446,Craps Woman,4478,1804072,18 +6447,Morse,35696,193304,7 +6448,Eva Galli / Alma Mobley,24634,2506,6 +6449,Louie (uncredited),9366,1584544,12 +6450,Zsa Zsa Gabor,12606,44715,12 +6451,Mary Swanson,8467,34485,2 +6452,Charlie Hasbrouck - Reporter for 'The Star',11697,117477,20 +6453,Jimmy Daugherty,30943,157015,7 +6454,Naughty Nina,814,1660014,24 +6455,Ricky Danforth,141,19274,26 +6456,Bruton (voice),10567,154693,7 +6457,Giancarlo,10622,66055,1 +6458,Simi,14587,6218,6 +6459,Val,73247,164653,0 +6460,Court Bailiff (uncredited),34106,1208035,135 +6461,"Kazuko, Jailbird #1",46986,551824,55 +6462,Hotel Maid,10440,155544,21 +6463,Harbour Master,16307,114837,6 +6464,Linda,24584,92025,2 +6465,Interrogation Officer,2259,1159170,12 +6466,"Paulie, Vito's Hit Man",8491,41262,4 +6467,David Talbot,11979,47654,4 +6468,Male Teacher,18683,563898,23 +6469,Haku (voice),129,19588,1 +6470,James Belushi,9593,26485,21 +6471,Queen Weilew,1911,6200,7 +6472,Secrétaire,105763,1359877,11 +6473,Model #1,18736,67978,22 +6474,2nd Hood,1924,1681438,60 +6475,Sam Wyatt,32331,78439,5 +6476,Rupert,33851,34257,11 +6477,Timothy (voice),11704,16621,8 +6478,Clara,261246,8436,3 +6479,Video Game Stripper,28047,32291,16 +6480,Jim Younger,13496,20814,4 +6481,Catherine,1628,14812,0 +6482,Turk,18642,78690,10 +6483,Lampião,598,50362,12 +6484,Bullfighter,2897,1538212,42 +6485,Doc Lynch,21866,7077,3 +6486,Rollo the Janitor,11017,1073822,13 +6487,Rochelle,4986,21923,15 +6488,Amy Lee,24825,160409,19 +6489,Dorothy,5279,32990,28 +6490,Miao Yin,6978,943369,10 +6491,Ben Buford,482,6562,3 +6492,Police Pathologist,15940,63141,8 +6493,Holly,10803,28768,4 +6494,Villager of Tullymore,10162,1609668,45 +6495,Man in Donut Shop,9504,4199,12 +6496,Reporter,11185,1214056,20 +6497,Gossipy Woman,20438,1514694,5 +6498,Patient,56934,106615,13 +6499,Cigar Face,15239,1708242,10 +6500,Mrs. Cochran - Librarian (uncredited),21734,95631,22 +6501,Smiley,2034,7248,5 +6502,Pharmacist,10351,97939,15 +6503,Dennis Rausch,26149,6181,8 +6504,Richard Moore,170430,117358,3 +6505,Gail Beechum,10354,1219097,11 +6506,David Gordon,18736,143330,1 +6507,Bryce,18621,16851,2 +6508,Adad,41516,131005,1 +6509,Mike (uncredited),3085,120818,20 +6510,Passerby #2,1634,1075077,12 +6511,Singing Frenchman (uncredited),289,121331,44 +6512,Moses,12506,1212803,24 +6513,Nurse / The Helen Miles Singers,9716,1661610,69 +6514,Allison's Mom,2108,1073865,9 +6515,Himself,2300,1230823,18 +6516,Sex Shop Salesman,28940,44809,13 +6517,Extra (uncredited),2897,100800,178 +6518,Chef (Uncredited),14819,36602,10 +6519,Van,16980,58552,9 +6520,Howard Seigel,9532,963962,12 +6521,Adam Larson - Yellow Team Leader,17971,14463,1 +6522,Kip,6068,7248,6 +6523,Victoria,71701,1130480,13 +6524,Harry Hunter,10774,51549,7 +6525,Tracy,15144,193597,34 +6526,Penny,12230,1080054,18 +6527,Jimmy,11855,65166,3 +6528,Pulu,896,13756,3 +6529,JoEllen Roberts,38951,1133445,7 +6530,Petra,24254,14415,2 +6531,William Gluntz,33016,7073,6 +6532,Drunken Male IMF Agent,954,10849,13 +6533,Thug,3780,119002,55 +6534,Voltimand,141489,2649,8 +6535,Richie Rich,11011,11510,0 +6536,Juanita,31665,162169,5 +6537,Colonel Cutter (voice),8916,4690,12 +6538,Reporter,9296,170315,29 +6539,,18919,1320292,20 +6540,Newscaster,1924,1229301,71 +6541,Joe Louis - Cerdan Fight,1578,940212,18 +6542,Wednesday Addams,2758,6886,3 +6543,Female Wing Kong Guard,6978,1677329,44 +6544,Extra,1377,5685,13 +6545,The Colonel (voice),9023,2505,1 +6546,Court Attendant (uncredited),34106,975306,34 +6547,Gerard,47119,16927,0 +6548,Rail Guard,2750,1174223,28 +6549,Azteca (voice),8916,16866,6 +6550,Ed Getley,765,11754,5 +6551,Baker (voice),10020,1889421,16 +6552,Black Beauty (voice),14522,10697,0 +6553,Steve Marak,28295,14502,1 +6554,Doctor,10493,148899,3 +6555,Drinker #1,197,199755,46 +6556,Bud,26689,19752,8 +6557,Ortiz,1637,33712,10 +6558,Reporter Slade,125413,31210,6 +6559,John Darling (voice),10693,143574,5 +6560,Det. Lt. McAllen,26173,94777,6 +6561,Calvin Bouchard,17692,20959,3 +6562,Townie,10663,60949,12 +6563,Delmer Darion,334,10872,17 +6564,Counselor Deanna Troi,193,2393,6 +6565,Klaudyna - Joannas sister,79782,1095650,5 +6566,Max,47507,1925,0 +6567,Chuck,26593,95742,15 +6568,Manek Sen,118098,81267,8 +6569,Capt. Rousseau,975,1077970,15 +6570,Tommy,24212,101502,8 +6571,Veteran,197,3064,24 +6572,Laura Reynolds,77915,3635,0 +6573,Steve Biko,12506,5292,0 +6574,lui-même,64567,21171,10 +6575,Adaline Gunne,13526,13918,2 +6576,Bill Herron,10774,81481,15 +6577,Dewey 'Ox' Oxberger,10890,7180,5 +6578,Officer Wright,79593,9436,37 +6579,Sergeant Farmer,29911,3064,5 +6580,Messenger,141489,1114923,22 +6581,Stanley Mislinski,38509,120593,17 +6582,Barney Alvorg,10013,13994,15 +6583,Vincent Cappadora - Age 7,30943,156606,4 +6584,Band Member,2105,37936,21 +6585,Laura,37410,26719,8 +6586,Dud,11873,1265398,22 +6587,Handy Paige,73067,140230,4 +6588,Police officer (uncredited),1578,135402,33 +6589,Beulah,403,5705,9 +6590,Professor Henry Higgins,11113,35321,1 +6591,Ben Sereno,129628,20914,3 +6592,Mehemet Bey,29239,45380,1 +6593,Matt,11855,2839,7 +6594,Otho,4011,13243,6 +6595,Federal Officer,4476,105791,23 +6596,Frugal Son,43089,129276,13 +6597,Rosalie Greenspace,56162,32645,0 +6598,Piano,115810,1062038,2 +6599,Gary Hackman,36797,21490,6 +6600,Cleopatra Model,6038,1580036,40 +6601,Bud Nesbitt,36797,2222,3 +6602,Mrs. Gibbons,9358,86530,30 +6603,George,19209,1328167,3 +6604,Felton,415072,932309,13 +6605,Denson,14794,37984,7 +6606,Paramedic,12104,1257821,15 +6607,Dr. Leonard McCoy,157,1750,2 +6608,Benitez,29263,71408,6 +6609,Dick (uncredited),28430,153039,14 +6610,SWAT Cop,4547,99022,11 +6611,Sergeant First Class Kelly,11589,190,0 +6612,Girl in Tunnel,17692,1296386,33 +6613,Agent Lonnie Hawkins,3595,18792,2 +6614,Highway Patrol Officer,539,45525,11 +6615,Aqua,73247,40389,1 +6616,Zeke,3078,29263,6 +6617,Gino (uncredited),15,9096,22 +6618,Mrs. Favaloro,33364,110539,9 +6619,Dr. Alice Sheldon,10534,6692,1 +6620,Debbie Jellinsky,2758,3234,4 +6621,Richard,1907,6193,0 +6622,Maurice's Crew,2085,1597842,14 +6623,Press Photographer (uncredited),244,1509,11 +6624,Billy Wyatt,32331,19728,1 +6625,Leslie Lapidus,15764,1648653,5 +6626,Brett Reno,39833,15699,4 +6627,Carol,22213,39113,6 +6628,Ernie,4011,34536,17 +6629,Strickende Schwäbin,10801,38753,16 +6630,Mimmo Barletta,552,7542,3 +6631,,120077,91612,4 +6632,Rupert Standish,5279,6366,25 +6633,Mike,9032,58477,14 +6634,U.S. Army Ranger,9289,77260,1 +6635,John Murray,58985,52374,9 +6636,Manuel,32093,1422155,21 +6637,Honorable Ernest 'Ernie' Wolley,53761,90333,2 +6638,Mrs. Hall,9099,15453,9 +6639,Johnny Drake,38775,2778,0 +6640,Evidentiary Storage Officer,7299,52399,10 +6641,Nurse,55420,1799820,29 +6642,The High Priest,31498,16761,7 +6643,Chemin De Fer,35200,39008,5 +6644,Henderson Dores,129628,11856,0 +6645,Ah Hong,60855,86766,3 +6646,Fifi,28974,132323,6 +6647,A.J. 'The Reverend' Shepherd,23730,11511,1 +6648,Raider,46924,20522,7 +6649,Party Guest,73247,101377,10 +6650,Extra (uncredited),2897,1325395,68 +6651,Marc Stevens,28466,104545,25 +6652,Dr. Robert Gallo,2887,21278,1 +6653,Professor Philip Purcell,9529,8445,11 +6654,Second Nurse,27346,99606,9 +6655,Soldier #1,2135,42200,14 +6656,Rod McCallister,772,11522,8 +6657,Derice Bannock,864,12974,0 +6658,Brian,47942,41218,5 +6659,Houseman,580,1673753,27 +6660,Annalees,61548,9030,1 +6661,Child,9028,1757592,31 +6662,Doctor,5955,15735,2 +6663,Irene,32855,11148,2 +6664,Hai,34899,113391,3 +6665,Charlotte Elkman,11215,27862,8 +6666,Maynard Smith,1850,3418,8 +6667,Dr. Peter Murphy,10727,187494,6 +6668,Dr. Harrod,1694,37028,5 +6669,Mike Norris,10585,14541,1 +6670,Spartanette #8,14,1503030,32 +6671,Agemt John Travis,10391,33181,5 +6672,Fred,11450,23881,17 +6673,Ella Lane (uncredited),1924,243805,90 +6674,Street Scum,262,58296,27 +6675,Mario,99,3650,10 +6676,Woman in Cafe,161795,135885,8 +6677,Antonio,4307,36279,6 +6678,Jenny,14369,17236,6 +6679,Mark,2034,5874,10 +6680,Can't Get Right,6522,71913,9 +6681,Kelvin Morse,13539,21594,1 +6682,Mr. Guttman,10276,49835,5 +6683,Father Moody,1443,349,5 +6684,Kelly,29825,589,2 +6685,Rosalie Testa,10013,5148,13 +6686,Charley,6,1226696,15 +6687,Annie Porter,1637,18277,2 +6688,Cmdr. Jessop,11422,19153,7 +6689,Pearl Chavez,32275,39554,0 +6690,Kajal,896,13755,2 +6691,Ross 'Mitch' Mitchell - Maneuvers,5257,85620,2 +6692,Longfoot,14676,161418,9 +6693,Boetticher,20735,10477,6 +6694,Bandai-gaeru (voice),129,40450,9 +6695,The Mother,58904,228627,1 +6696,Johnny Kelly,493,6771,5 +6697,Emanda Maine,38554,128012,19 +6698,Pvt. Dixon,45827,45308,8 +6699,Hilda,31665,160527,7 +6700,Bill,17691,103107,21 +6701,5th Elder,1924,1230579,20 +6702,Chief (voice),10948,21460,6 +6703,The Alien Leader,35139,131486,12 +6704,Margherita Sarfatti,32274,4038,13 +6705,Wedding Guest (uncredited),14,1503028,38 +6706,Jason 'Preacher' Rowe,664,9997,8 +6707,Sue,10862,19455,11 +6708,Mrs. Cornelia Hilyard,42787,8725,0 +6709,Peggy Stephenson,887,7663,3 +6710,Auction Bidder,4478,152587,36 +6711,Anita,12230,140821,8 +6712,Clerk,30946,139929,6 +6713,John Adams,2669,26857,10 +6714,The Fox,79593,19307,32 +6715,Bartender Serving Double Scotch (uncredited),17889,117036,22 +6716,Waiter (uncredited),3309,931793,48 +6717,Marian,159727,1141558,8 +6718,Wilfredo,49788,884,13 +6719,Rosie Washington,76411,54800,6 +6720,Edge,36259,230,8 +6721,Calvin the Trucker,12499,83362,6 +6722,Mrs. Eynsford- Hill,11113,95263,8 +6723,Dutch,11234,68681,3 +6724,John Allerdyce / Pyro,36657,1446555,18 +6725,Nick Parker,121091,9976,0 +6726,Diane,30709,14254,4 +6727,Woman (uncredited),34106,1459371,86 +6728,Cappy,9079,91420,6 +6729,George 'Bunny' Hoover,12479,526,5 +6730,The Hoggetts' granddaughter,9598,210276,16 +6731,Giuseppe,18783,30686,2 +6732,Mr. Joe Bowman,15170,103833,5 +6733,Hooker,12309,58808,23 +6734,Peyton Van Den Broeck,12618,62547,8 +6735,Greta,52735,21657,0 +6736,Harley Davidson,2453,2295,0 +6737,Terry,10400,10727,4 +6738,Sister Irene Hawkins,18694,83824,2 +6739,Iris Murdoch,11889,5309,0 +6740,Nicolette,197,2471,11 +6741,Reverend,15144,1535,20 +6742,Croupier (uncredited),678,1331770,30 +6743,Buddy,27526,98090,16 +6744,Stegman,18783,96260,10 +6745,Cop in Gem Store Elevator (as Billy Williams),11001,1088201,30 +6746,Pesch,5998,29129,8 +6747,Townsman,43828,188722,49 +6748,Minor Role (uncredited),2897,1601648,256 +6749,Judge,34106,11502,21 +6750,Chon Wang's Father,6038,8400,12 +6751,Essie Carmichael,34106,15008,5 +6752,Corp. Grebs,15873,12410,7 +6753,Officer Leung,10775,1000109,12 +6754,Jay Le Soto,30175,7675,2 +6755,Madeleine Wallace,194,2415,8 +6756,Dermody,11259,938160,8 +6757,Captain Grant,34774,13331,8 +6758,Jo Cavanaugh,13539,1734,6 +6759,Jack Carpenter,31618,15412,8 +6760,Homer,9059,956719,11 +6761,Shohei,11830,552542,17 +6762,Prince Hamlet,10549,11181,0 +6763,Swanson Maid,8467,136222,27 +6764,Super Man,13005,16540,12 +6765,Doctor on Train (uncredited),21734,3370,17 +6766,Cabeleira,598,8599,4 +6767,,21028,236849,9 +6768,Charles Gibbs,21468,39753,7 +6769,Mr. Crudd,20678,1224519,10 +6770,Townsman at Carnival (uncredited),220,1289627,63 +6771,Tanya Robertson,11428,6714,1 +6772,Melinda,634,24241,19 +6773,Tommy Fawkes,35292,17485,1 +6774,Gunned Head,117,20625,46 +6775,Duncan Flynn,167,15415,28 +6776,Locker Room Girl,11397,133628,87 +6777,Andy McKee,34084,6609,1 +6778,Dave Moss,9504,228,4 +6779,Pinkerton Detective Graves,11853,29862,8 +6780,Anne Fisher,141,10383,21 +6781,XERB Disc Jockey,838,12409,7 +6782,Honest John,4978,64951,11 +6783,Hanbei Muroto,11712,70131,1 +6784,Parvathi Resh,1813,20807,36 +6785,R.L. Davis,21242,12518,4 +6786,Zukie Limmer,10747,4974,18 +6787,Charles 'Chips' Maurey,11385,24298,4 +6788,Politician,25430,1239954,44 +6789,Stuart Dunmeyer,788,517,2 +6790,Kenny Hopkins,21721,43152,6 +6791,Waitress,34223,1774045,19 +6792,Turnkey,5924,154432,24 +6793,Moze,13681,2047,3 +6794,Frieda,9716,28034,16 +6795,Alexi Petrovich,11535,1003,4 +6796,Henry,23069,234297,9 +6797,Mały Aleksei,1396,55516,7 +6798,Codebreaker,11859,20562,16 +6799,Maruyama Rokutarou,28273,144797,15 +6800,Augusta Weissberger,32274,1591178,19 +6801,Jerry Warren,11298,101781,11 +6802,Aspen Police Officer,8467,1853187,45 +6803,Cameron,10326,3977,5 +6804,Housekeeper,11591,1778206,12 +6805,Bronco Billy,21866,190,0 +6806,Capt. Robert 'Doc' Carrera,10590,154680,29 +6807,Bowers' Handler #1,30547,1507183,41 +6808,Singing Girl in Wagon,43828,106625,52 +6809,"Treville, Head of the Musketeers",11370,742,12 +6810,Henrietta Stiles,10929,61185,3 +6811,Jackie,2021,78329,11 +6812,Billy Tessio,235,1953,7 +6813,Wally Enfield,9059,12826,10 +6814,Carl,37820,4783,0 +6815,Sarah Pilgrim,43143,106996,1 +6816,Roscoe,66894,56902,3 +6817,Wallbanger,8467,60661,70 +6818,Rob Stevens,1647,44103,14 +6819,Steve,88818,63003,6 +6820,"Manne, the boy with green hair",8816,1778135,10 +6821,Additional Player,9563,1741405,40 +6822,Johnson,9507,15824,7 +6823,Slow Clapper,11397,40981,11 +6824,Cinzia Zaccardi,1377,16757,1 +6825,Nora Christie,11259,15746,4 +6826,Orvis,11873,8854,5 +6827,Kwang,709,11398,18 +6828,Dr. Malcolm Keogh,11618,101172,6 +6829,Willi Cicci (uncredited),238,16525,58 +6830,,45861,1751003,6 +6831,Sister Verna,124963,44104,9 +6832,Little Crrek's Friend (voice),9023,42376,12 +6833,Chan Wing Yan,10775,1337,1 +6834,Librarian,78285,12813,10 +6835,Lucy,42739,11110,5 +6836,Mr. Larry Dittmeyer,9066,21731,15 +6837,Rifka,14811,933564,25 +6838,Crippled Pencil Peddler (uncredited),73969,34047,14 +6839,Col. Dax,975,2090,0 +6840,Peter McCallister,772,11512,4 +6841,First Orderly,38965,176415,7 +6842,Big Jule,4825,1049305,14 +6843,Gourmand (voice),11639,215334,13 +6844,Norris Volpe,11458,1986,9 +6845,Assistant Camera,9071,18472,8 +6846,Jackie Rogers,9507,1796,3 +6847,Phil,2021,20300,3 +6848,Grandma Tzeitel,14811,40163,20 +6849,Highway Patrolman,70199,180878,7 +6850,Candace Williams,92381,1385303,2 +6851,Guy Danielsen,4012,22225,6 +6852,David,9087,131642,13 +6853,Miguel Alvares,2160,16074,5 +6854,Alexander Bullock,13562,8728,4 +6855,Edith,25872,1748825,5 +6856,Divine' Admirer at Rehearsal (uncredited),12614,58658,11 +6857,Howard Howard,17464,81905,13 +6858,King Neptune,19157,1954,6 +6859,Beth Truss,13667,13656,12 +6860,Bob Findley,10354,5724,4 +6861,Susan Sloane,60994,6108,10 +6862,John Klein,2637,1205,0 +6863,Border Guard,10890,154237,14 +6864,Mourner,3035,581350,16 +6865,Melissa,129628,12133,9 +6866,Auntie Glutz,229,29603,47 +6867,Anna,742,11042,6 +6868,Garrett,30175,1184011,9 +6869,Jarvis Pendleton,70801,1196934,4 +6870,Lester Lucket,19855,1527163,8 +6871,Investor (uncredited),29376,569144,16 +6872,Detective,949,1576553,54 +6873,Dr. Huffeyer,46029,6168,7 +6874,Eva,194,119199,16 +6875,Chief Inspector Stromboli,2666,40046,11 +6876,Kid Deputy,5917,1894164,52 +6877,Montoya,9945,24516,1 +6878,Officer's Wife,409,1606904,35 +6879,Boots,245268,85897,6 +6880,Victor,10622,1155485,9 +6881,Gary,24086,19143,6 +6882,Andrew's Mom,49963,8792,9 +6883,"Paul Baker, Juror",41590,68527,11 +6884,Nicola,10867,553187,19 +6885,Esteban Trueba,2259,16940,2 +6886,Jonnie Goodboy Tyler,5491,12834,1 +6887,Platoon - Vietnam,2604,15338,42 +6888,Capt. Spock/Elevator Voice,157,1749,1 +6889,Kit,21142,1507114,5 +6890,Skunk Ape Wife,2662,109900,21 +6891,Daughter #2,525,122118,36 +6892,Angel,26378,89990,7 +6893,The Slasher,141210,1289891,4 +6894,The Pope,16806,6844,6 +6895,Anita Crown,11853,31140,1 +6896,Sofia,2110,10500,3 +6897,Boy Basketball Player,32049,1502525,41 +6898,Junior Optician,11159,1251463,16 +6899,Brian Sweeney Fitzgerald - 'Fitzcarraldo',9343,14277,0 +6900,Captain,77079,1754323,6 +6901,Boxer,379,1281542,40 +6902,Vito Graziosi,10154,4521,3 +6903,Fitz,7514,52827,14 +6904,Power Co. Driver,1924,1681457,87 +6905,(uncredited),70801,1051750,16 +6906,Hermit,229,2932,10 +6907,Amy Tuttle,43340,86346,6 +6908,Wölk,11101,554452,11 +6909,Himself,8672,20553,6 +6910,Dr. Kosevich,11472,2157,5 +6911,Fernando Girasoli,552,2310,1 +6912,Almirante,26165,942471,4 +6913,,76996,186977,5 +6914,Perfomer,34113,1197944,2 +6915,Fran Carvey,2087,7906,5 +6916,Nathan Van Cleef,8584,3982,3 +6917,The Beak,7340,52464,12 +6918,Lily Bart,25520,12214,0 +6919,High Roller #2,11873,1265409,42 +6920,Vet #3 - Miami Convention,2604,163254,77 +6921,Katya,11535,30436,15 +6922,Maureen,12454,53367,2 +6923,Prison Guard,178,10956,14 +6924,Tim,1999,20545,10 +6925,French Officer Insulting Yvonne (uncredited),289,70939,67 +6926,Lukas,890,14637,8 +6927,Newspaperman at Trenton Town Hall (uncredited),15,1357958,83 +6928,Natalie Simon,9877,3128,0 +6929,Old Gypsy Woman,10708,54648,38 +6930,Acting High Comissioner,12506,8224,23 +6931,Theresa,2321,157459,8 +6932,Sheriff,11950,6463,23 +6933,Horace,11428,44616,10 +6934,Polish Professor,15764,28871,10 +6935,Mr Pearce,35292,1873563,31 +6936,Dr. Siegler,12220,32390,16 +6937,Dr. Kellaway,53150,20128,14 +6938,Parking Attendant,11185,1391363,19 +6939,Woman at Prison,10400,1214060,31 +6940,Duck Hunter Burt,11379,1537819,28 +6941,Sen. Thomas Jordan,982,1943,7 +6942,Melendez,10518,90441,9 +6943,Killer,70199,200598,10 +6944,David's Father,4478,1786577,14 +6945,Lydia Deetz,4011,1920,2 +6946,Native Introducing Ferrari (uncredited),289,115770,95 +6947,President Hector Lopez,709,7372,12 +6948,Car Salesman,10866,16754,5 +6949,Previous Rabbi (uncredited),14811,1217114,38 +6950,Officer Blaine,20424,86402,11 +6951,Pontius Pilate,2428,10169,23 +6952,GeGe Müller,11101,22184,3 +6953,Hilary Lewis (Present day),66597,1613708,8 +6954,Jose,287,4047,10 +6955,Mr. Strickland,165,1072,4 +6956,Bernardo,141489,1114921,20 +6957,Mr. Touchett,36758,11857,9 +6958,Sarah Brown,4825,14500,1 +6959,Kevin,11374,1178193,37 +6960,Johnny Land,10207,47879,3 +6961,Dirk Moran,36355,783,2 +6962,Horn's Capturer,5917,1894166,58 +6963,Boy at Museum,24750,3034,7 +6964,Francesca Bonacieux,11370,8211,1 +6965,Insp. Chan Ka Kui,9404,18897,0 +6966,Pedro Cerrano,9771,352,2 +6967,Taxi Driver 1,54405,188468,29 +6968,épicier d'Amandine,194,144955,23 +6969,Extra (uncredited),2897,30898,173 +6970,Himself,35292,103934,24 +6971,Police Announcer (voice),26378,1397273,63 +6972,Neighbor,10440,122239,11 +6973,Lt. Wiecker,21866,62033,11 +6974,Wing Kong Hatchet Man,6978,1677323,37 +6975,Lenora Castonmeyer (voice) (uncredited),16281,103819,20 +6976,Focus Group Kid,10708,1786661,50 +6977,Basil,9260,52708,8 +6978,Kutze,660,30142,16 +6979,Richard 'Richie' Gazzo,9366,65765,8 +6980,Bernice,13685,148593,5 +6981,Miles Monroe,11561,1243,0 +6982,Restaurant Doorman (uncredited),1578,1394703,32 +6983,Francine,9317,269638,4 +6984,Gwen Dillon,9821,4430,0 +6985,Bernd,9589,1728633,6 +6986,Elliott,29076,31028,5 +6987,Young Tommy,2604,207992,66 +6988,"Mademoiselle Guimard, l'institutrice",12716,1183006,16 +6989,Timmons,949,160970,28 +6990,Male Nurse,11377,69157,9 +6991,Lucky,12230,16762,17 +6992,Wolf,9071,20212,2 +6993,Maxime,26252,94942,7 +6994,Rapper,29355,36424,10 +6995,Gaston (voice),10020,108055,2 +6996,Wolf (voice),9325,71781,12 +6997,Gaston,1859,19553,10 +6998,David Moore,10590,84482,39 +6999,Little Creek's Friend (voice),9023,175468,13 +7000,Hannah Williams,954,14593,11 +7001,Herodias,2428,41293,48 +7002,Ian Curtis,2750,16702,2 +7003,Aragorn,120,110,5 +7004,Tommy 'Machine' Gunn,1375,16661,5 +7005,Kazumasa Ishikawa,11953,1484299,30 +7006,Girl Nut,20075,3664,4 +7007,Lelani Dedham,15875,78897,6 +7008,Rocky Balboa,1375,16483,0 +7009,Grim,9821,5048,4 +7010,Devo,21801,1199751,13 +7011,Manuel,2441,24979,6 +7012,Yara,32595,975417,11 +7013,Judge Harris,2625,54800,10 +7014,Cop,25501,109761,11 +7015,Extra (uncredited),2897,1193340,195 +7016,Jill,9889,65239,6 +7017,Flight Attendant,786,1497311,44 +7018,(uncredited),29263,52131,26 +7019,Uncle,14587,42644,23 +7020,Sgt. Siegel,10796,14329,11 +7021,Music Hall Compere,11035,1041222,8 +7022,Emissary,2428,1054308,34 +7023,College Girl,11374,1848718,40 +7024,Fritz the Cat (voice),12593,73029,0 +7025,Mandarin Translator,11535,1674934,53 +7026,Family Member,11234,29645,10 +7027,Aixa-Beatriz,26165,1007522,5 +7028,riflessologo,25403,1854985,23 +7029,Detective Sims,26180,37432,8 +7030,"Col. Douglas Campbell, Chief of HADES",43915,51881,2 +7031,Monster,13411,89857,11 +7032,"Summit Team, USA",21736,86557,2 +7033,Slave Master (voice),11639,16381,15 +7034,Sam,26889,55270,11 +7035,uniformed cop at end,24005,143544,21 +7036,Phaedra (voice),14317,34985,2 +7037,Little Boy at Miami Airport,14931,93665,4 +7038,Mortimer Toynbee / Toad,36657,11007,8 +7039,Mr. Binnacle - Admiral's Servant,433,30144,15 +7040,Train Passenger,29376,121323,12 +7041,Agent Norton,80350,66055,2 +7042,Bodine,42517,164966,5 +7043,Paul Reisner,261246,2296,2 +7044,Washington,18079,74912,10 +7045,Football Announcer,11397,1218308,60 +7046,Sharon,36094,12967,2 +7047,Captain John H. Miller,857,31,0 +7048,Mrs. Newman,81001,176272,8 +7049,Foreign Secretary,660,9926,11 +7050,Orlean Dinner Guest,2757,1236853,20 +7051,Man on TV,21380,1052200,6 +7052,Brakus,32049,942,4 +7053,Eddie,12476,62032,15 +7054,Thin Dog,35200,954104,10 +7055,Espectador (uncredited),99,138244,23 +7056,John O'Connor,11379,3418,14 +7057,Villager,229,981642,32 +7058,Barbara,17170,42324,19 +7059,Nurse,9426,1030612,8 +7060,PTA Heckler,2323,92119,18 +7061,Scott,11415,82580,11 +7062,Radio Operator,1678,1112466,15 +7063,Concert Technician #1,9296,1218705,50 +7064,David,14651,20056,6 +7065,Maggie Foley,21721,6913,3 +7066,Baby Beth Barton - Singer (uncredited),25862,930174,12 +7067,Whitley Strieber,28774,4690,0 +7068,Hermione,77056,581114,5 +7069,Reporter,35292,40643,32 +7070,Mover #2,32872,26678,46 +7071,Romeo,3682,33668,27 +7072,Henry Evans,9272,11510,0 +7073,Artie,36658,172793,16 +7074,Andrea 'Fish' Eldridge,29492,103967,8 +7075,Jackie O'Hara,21132,17782,14 +7076,David Ednasi,14429,4451,10 +7077,Hang Sing,2085,1336,0 +7078,Townsman (uncredited),11697,1422281,36 +7079,Groucho Party Dancer,9716,1661641,99 +7080,French Police Officer (uncredited),289,1228104,32 +7081,Thorn Rose,14676,544596,10 +7082,Nancy,33542,10875,2 +7083,Rojas,13005,129492,6 +7084,Dwight,3033,29794,6 +7085,Thomas Parker,35292,1554107,7 +7086,Farmer Father / Tex Hayward,9428,71555,12 +7087,Terry,30924,27241,3 +7088,Alex,55420,1114903,2 +7089,Professor Jim Hunter,37969,1236153,2 +7090,Himself,9403,1372421,28 +7091,T-Bo,40562,103,10 +7092,Aunt Fern,10860,83145,11 +7093,Adam,14181,6213,8 +7094,Elizabeth 'Liz' Garfield,11313,15250,2 +7095,Reform Club Member,2897,111664,40 +7096,la mère de Vincent,35651,583593,4 +7097,Rooney's Henchman,4147,1402117,24 +7098,Townswoman (uncredited),11697,1196077,44 +7099,Bob Bantling,36758,20243,12 +7100,Betty,14534,76988,5 +7101,Clyde,60082,54423,3 +7102,Woman,16938,939916,18 +7103,Himself,10663,185731,13 +7104,Gallatin,200,2518,7 +7105,Dr. Luc Montagnier,2887,5274,2 +7106,Bobby Boucher,10663,19292,0 +7107,Shannon Amberson,10351,153916,4 +7108,Horace,12106,3798,9 +7109,Porter,13005,111383,5 +7110,Dr. Greenbaum,796,12967,12 +7111,Ring Announcer - Janiro Fight,1578,42290,15 +7112,Doorman,705,1024546,13 +7113,Lara Croft,1995,11701,0 +7114,Charlene Towne,17168,6450,6 +7115,Hélène,77010,239337,0 +7116,Rabbi Greenwalt,4012,1192389,28 +7117,Barbara Simon,77010,581063,3 +7118,Stromberg One Captain,691,110319,28 +7119,Astrid Weinstein,15764,1388506,7 +7120,The Mother,26422,555631,6 +7121,Hustle Guy,10611,11827,5 +7122,Maria Vaughan,1448,17258,4 +7123,Lt. Cathy Conners,2160,22090,2 +7124,Kevin Lomax,1813,6384,0 +7125,Mrs. Darcy,634,9141,12 +7126,Jack,13852,75896,12 +7127,Health Visitor,2021,1633863,16 +7128,Marco the Magnificent,13555,97561,5 +7129,Lurtz,120,1365,16 +7130,Cmdr. Joseph Rochefort,11422,11066,4 +7131,Captain Lucas,10973,56924,4 +7132,Grandma,9066,75343,11 +7133,TV Host's Assistant,522,218506,34 +7134,le muet,78281,35077,8 +7135,'Mouse' Spouse,8989,207722,13 +7136,Left Arm,18,1776773,29 +7137,Detective Suby,9358,2250,24 +7138,Lt. Vincent Hanna,949,1158,0 +7139,Old Daughter,2441,24986,13 +7140,Rob,2021,1219440,17 +7141,Sgt. Raines,45827,13869,3 +7142,Twin,2140,1847200,8 +7143,Cab Driver,9716,1291666,30 +7144,Spider,10925,74354,7 +7145,Zack,70489,4688,0 +7146,Gorelov,8665,55584,11 +7147,Pompey,11697,4963,12 +7148,Cliff Willis,12476,8658,5 +7149,Ruby Harris,85837,6780,1 +7150,Master at Arms,6038,19903,11 +7151,Irenka,31083,68109,2 +7152,Judge Trimmings,19108,2081,0 +7153,Mickey Bunce,10379,12260,6 +7154,,68545,477,0 +7155,Tilly Baker,278939,26483,6 +7156,Billy Lo,13333,73662,6 +7157,Swinger,28940,1851415,23 +7158,Albert Brooks,33250,13,0 +7159,Quint,578,8606,1 +7160,Mildred Pierce,3309,31550,0 +7161,Dick Metzler,9451,1578,12 +7162,Donald 'Duck' Dunn,525,7177,7 +7163,Dr. Gavril,8665,55595,24 +7164,Jean Coughlin,37291,188510,2 +7165,Schroeder,17339,742,8 +7166,Aunt T.,41852,43853,3 +7167,The mountain girl,51371,144019,1 +7168,Susan,2625,27546,7 +7169,Natalia Katkov,52654,1639,1 +7170,'Groot' Nadine,3089,4302,3 +7171,John Kinsella,2323,23974,8 +7172,Sven,42453,992862,10 +7173,Gang Member,1448,17261,7 +7174,Mickey,36943,154520,1 +7175,Solly,30709,104291,6 +7176,Cruiser,10890,4942,8 +7177,Maria Di Vita giovane,11216,70083,5 +7178,Captain Gregory,71701,39066,6 +7179,Paul,9301,231837,11 +7180,Boston Pump Jockey,2323,212797,21 +7181,Elsa,10518,25282,4 +7182,Musician,6068,1609269,52 +7183,Model,24126,112467,17 +7184,Madame Woo Woo,3028,103231,13 +7185,U.S. Announcer,10222,43670,12 +7186,Sarah Whittle (young),8844,56523,9 +7187,Wheel of Fortune Hostess,2750,1220338,29 +7188,Dee Coker,43139,67615,1 +7189,Villager of Tullymore,10162,1609653,29 +7190,Papa Leckie,99351,7668,2 +7191,Mrs. Higgins,19855,1134774,21 +7192,Pammy,40866,1225471,13 +7193,Gardener,16235,80159,25 +7194,Fairy Godmother,16176,55688,5 +7195,"Doc ""Moonlight"" Graham",2323,13784,6 +7196,Child (uncredited),71067,1796669,12 +7197,Premiere Audience Member,9296,1517019,24 +7198,Flip,40879,124909,0 +7199,Attendant,1859,121331,20 +7200,Sydney Simon,12103,2561,7 +7201,Taguchi Gyobu,11953,7453,3 +7202,Defense Minister,30202,40160,5 +7203,Mr. Leech,28940,7795,9 +7204,Angelo Donatello,1377,14785,3 +7205,Trejo,949,11160,16 +7206,Sir Frederick Gray,691,10462,6 +7207,The Bosnian Serb Mother,47144,38004,2 +7208,Jason,11456,69502,5 +7209,Alice Bowman,11983,5344,0 +7210,Guy in Truck (uncredited),13505,62909,5 +7211,Hospital Dancer,9716,1225809,26 +7212,Jo,3173,31044,3 +7213,Missy,93350,93620,9 +7214,Politician at Harrison's Headquarters,25430,385470,46 +7215,Drummer,30924,7907,8 +7216,Capt. Klaa,172,2080,11 +7217,Osgood,25934,1188868,21 +7218,Johnny Walker,20443,1904,0 +7219,Ayah,11236,1542813,14 +7220,Barabbas,2428,3090,5 +7221,Leonard James,21866,8350,5 +7222,Marmee,39938,20369,9 +7223,Cafe Patron,76,1265417,17 +7224,Gambler,32049,74420,27 +7225,His Groom,31995,552408,3 +7226,Kelly Riker,11975,6194,3 +7227,Jason Tully - Conductor,11697,83149,10 +7228,The Boy,32628,8635,0 +7229,Dave,9427,13633,1 +7230,Leonid,8665,55589,16 +7231,Judge Kits Van Heynigan,38554,12957,13 +7232,Bentley 'Striker' Scrumfeld,10050,81295,8 +7233,Bartender,21866,66606,16 +7234,Ranch Hand,51802,1472516,21 +7235,Butter (as James Harris),29649,104501,6 +7236,Peter,3784,2683,8 +7237,Carolyn Crain,11618,176436,14 +7238,Saw-Tooth,9902,1239447,7 +7239,Francis A. 'Pops' Romano,17708,2314,2 +7240,Social Worker,9427,1356544,25 +7241,Waiter,1634,1075079,14 +7242,Danny Hemmerling,24795,3490,9 +7243,Warden Luther Plunkitt,10354,1369,5 +7244,Mrs. Berger,9717,1185438,16 +7245,Joe Heff,400,5251,5 +7246,Emily Walburn,11008,80987,3 +7247,Sidney Parker,10647,116774,7 +7248,Jacuzzi Girl #1,165,1434987,33 +7249,Joe,36094,2977,4 +7250,I,12516,70132,0 +7251,"Minnie, Dershowitz's Student Staff",38718,7427,8 +7252,General Bradley's driver,11202,12431,4 +7253,Reporter,5257,42394,20 +7254,Woman on Dais,10671,1191818,20 +7255,,422,1485029,16 +7256,"Kris, S&M Girl",1811,20710,3 +7257,Teen Rudy,50123,84219,7 +7258,Dai Rees,15321,67215,7 +7259,Cornelius,10549,41742,19 +7260,Muddy,1715,143328,14 +7261,Jocelyn Dashwood,10735,20300,5 +7262,Florian,25934,82547,10 +7263,Dr. Weil,403,1403815,10 +7264,Slipknot Band Member,11535,92315,93 +7265,Jericho Cane,9946,1100,0 +7266,Additional Voices (voice),9504,175037,13 +7267,Ted the Bellhop,5,3129,0 +7268,Tony Wilson,2750,4581,0 +7269,Eduardo Strauch,7305,87708,16 +7270,Julius Jones,12158,66554,3 +7271,fru Sandberg,8816,1265160,12 +7272,Postman,11889,40665,9 +7273,Medevac CO,10590,43774,35 +7274,Monsieur Besson,12716,1823369,17 +7275,Chris,11800,2877,2 +7276,Cop #1,26378,1029864,30 +7277,Sam Loomis,539,7304,2 +7278,Tvättande Kvinna,8816,1089593,13 +7279,Townsman (uncredited),11697,1600058,25 +7280,Minister,32049,1502521,39 +7281,Jérôme Gerber,11915,24629,1 +7282,General Denson: Staff,14794,25643,11 +7283,Lt. Sheen,9289,38761,72 +7284,Henry Dashwood,10735,5472,1 +7285,Nurse,9716,1661586,48 +7286,Bobby Brady,12606,1011102,6 +7287,Iolani,47942,10938,7 +7288,Dock Supervisor,2978,11159,21 +7289,Yale,696,4776,2 +7290,Truckdriver,24825,1139456,17 +7291,Teen Girl #2,11442,58909,22 +7292,Extra in Newspaper Office (uncredited),2760,2636,7 +7293,Townswoman (uncredited),11697,109777,43 +7294,Susan,2280,20,1 +7295,Florida Lawyer,1813,582202,23 +7296,Father Larson,21626,87740,9 +7297,Agnes 'Aggie' Mundy,5332,42601,2 +7298,Prison Guard,525,122096,21 +7299,Dr. Mervyn Silverman,2887,29792,12 +7300,Jean-Louis Duroc,42726,1352,0 +7301,Morris Bernstein,29649,104503,11 +7302,Tailor,43342,81975,11 +7303,Skycap,9475,1800173,30 +7304,Monica,9529,170662,8 +7305,Mr. Rain,2666,15340,14 +7306,Rav Zingesser,4012,1192379,16 +7307,William,580,16220,10 +7308,Sawamura,13889,70132,5 +7309,Billy,9457,217472,12 +7310,Kilgore's Gunner,28,1739,12 +7311,Kathy,17170,183517,12 +7312,Fred Waters,13962,8986,2 +7313,Werewolf,11880,1094094,11 +7314,Fairy (voice),13225,21063,18 +7315,Arnold (Metro Assistant District Attorney),1813,164463,28 +7316,Louise Goodman,2892,28745,3 +7317,Glendolene Kimmel,5917,20928,1 +7318,Kevin MacDonald,6644,1107,7 +7319,kriminalassistent Gren,29224,76383,7 +7320,Motorcyle Man,2625,37043,19 +7321,Heckler,10390,3714,6 +7322,Man (uncredited),490,1194873,25 +7323,Ace Face,10373,982,5 +7324,Laurel Dodge,15734,78692,3 +7325,Emily's Father,11004,6541,10 +7326,Father Jimmy,2144,28633,7 +7327,Carl,59199,90180,2 +7328,January Man,32059,1788201,13 +7329,Tony Gateworth,41963,5589,4 +7330,Cadet Kevin 'Tiger' Dunne,11008,149010,1 +7331,Teddy,21132,8289,13 +7332,Veronica,2428,14701,2 +7333,Rahzar / Tokka (voice),1497,15831,24 +7334,Nurse,9716,1661608,67 +7335,Sveta,20992,119209,2 +7336,Nora McPhae,1793,19131,0 +7337,,46986,36189,12 +7338,Jamie Lee,30875,38592,4 +7339,Karen,205054,72157,1 +7340,Montgomery Scott,154,1751,3 +7341,Woman Bankrobber,39771,100552,11 +7342,Jenner (voice),11704,1165,11 +7343,Harry Donovan,45928,12261,0 +7344,Chintu Kapoor,85052,35791,5 +7345,Mr. Fields,11307,7668,4 +7346,Philadelphia TV Announcer,10400,166489,44 +7347,Pluto,18477,7073,4 +7348,Waitress #2,8467,1853171,29 +7349,Chris Varick,14181,12835,1 +7350,Starlighter,165,1200792,47 +7351,NJ's Mother,25538,555380,10 +7352,Clarence,580,16219,9 +7353,Mozart,13567,1270524,10 +7354,Extra (uncredited),2897,122067,236 +7355,Agent in jungle,24254,91427,13 +7356,Della Churchill Leiter,709,23648,15 +7357,Dr. Feinblum,37936,1474736,17 +7358,David Winters,1377,16763,7 +7359,Estuvio Clavo,29076,52422,4 +7360,Detective,27472,18262,2 +7361,Rita,6,22621,13 +7362,Karenin,50512,1292,4 +7363,Miss Pritchard (as Miss Percy Haswell),70801,1368766,2 +7364,George,2291,10182,8 +7365,Cabbie,9889,1229514,18 +7366,Tod Johnstone,10534,9296,13 +7367,Marlena,37917,558311,3 +7368,The Aunt / The Maid,26422,95346,3 +7369,George Lowery,539,3641,9 +7370,Restaurant Patron (uncredited),949,1137847,57 +7371,Mrs. Kessler,31044,157617,39 +7372,Mabel Nesbitt,5279,36663,20 +7373,Gambler,35118,4610,10 +7374,French Commando (uncredited),9289,24422,25 +7375,Julio Tomas,26173,45261,9 +7376,1st Secretary,1924,172695,44 +7377,Andy Leonard,10396,72028,7 +7378,Carol,19797,141610,4 +7379,Soviet Lawyer,1859,33705,45 +7380,Mrs. Godfrey,334,1591432,22 +7381,Collier,42517,112404,0 +7382,Gideon,13380,5048,1 +7383,Pimp,23668,90444,11 +7384,Dr. Childs,24254,73513,5 +7385,Simone,95627,5578,2 +7386,Michele,85160,99612,10 +7387,Mildred Atkinson,17057,81181,6 +7388,Brian,169,109693,36 +7389,Girl Holding Out,2105,1217828,43 +7390,Elli,16550,11515,6 +7391,Extra (uncredited),2897,1679263,225 +7392,Customer in Diner,40952,1880599,24 +7393,Carl Denham,244,3243,0 +7394,Salvy Batts,1578,7164,3 +7395,Tully,16993,825,0 +7396,Mary,14534,76986,3 +7397,Super Shredder,1497,135352,14 +7398,Jimmy - The Pilot,10691,1607162,12 +7399,Policeman on Pier (uncredited),3309,117772,31 +7400,Gus,26180,2234,7 +7401,Col. Betteridge,25037,9926,3 +7402,Bystander #1,105,77874,32 +7403,"Bert/Mr. Dawes, Sr.",433,61303,1 +7404,Roddy,2293,20503,15 +7405,KGB Agent,10724,129346,48 +7406,Young Josh,2280,62123,5 +7407,Mrs. Gwyneth Harridan,10708,5657,11 +7408,Caires,107693,234489,7 +7409,Cecilia's Sister,10849,67199,4 +7410,Petrovich's Bodyguard,11535,1046057,72 +7411,Romeo,35696,155808,4 +7412,Tom Friend,38006,41214,0 +7413,Bongo Drummer at Dance Studio,10603,127614,30 +7414,Pierre Deley,78802,58406,3 +7415,Agent Hal McGuire,10396,22131,2 +7416,Roger Johnson,14819,1462,8 +7417,Mary Ann Lomax,1813,6885,2 +7418,Yusuke Iseya,17962,70209,7 +7419,Anthony Golikov,15267,9045,3 +7420,Sharane,16094,88186,5 +7421,Celine,24126,148196,11 +7422,Second Fight Referee,26378,1173157,53 +7423,Player's Wife,9563,572076,54 +7424,Anthony Meredith,5279,2441,6 +7425,John,14651,28641,2 +7426,Robert March,10534,153862,7 +7427,Max Waxman,22213,783,5 +7428,Sam,1637,12056,9 +7429,Sgt. Monk Menkowicz,15875,84229,4 +7430,Young Number Two,817,2879,4 +7431,Hot Walker,30547,1507170,25 +7432,Fritz Schuster,287305,66894,10 +7433,Jimmie Moore,11003,16165,4 +7434,Alvy - Age 9,703,10564,29 +7435,Beetlejuice,4248,58516,15 +7436,Joan Fraser Welch,9977,351,0 +7437,Jack Graham,21734,7665,2 +7438,The Exchange Leader,12101,15942,13 +7439,Chuck,10925,103011,4 +7440,Wife Mrs. Habib,11862,24358,11 +7441,Mary Jensen,544,6941,0 +7442,Colonel Izzi,9602,2067,7 +7443,Leah,77283,211897,6 +7444,Rocky DeSantos,6499,56897,5 +7445,Mole Person,41516,34103,9 +7446,Fred Madison,638,8984,0 +7447,Miriam,261246,17286,6 +7448,Howard,2625,18792,4 +7449,Judge Louis Mead,31306,522,5 +7450,Reporter,11145,1898726,16 +7451,Man with money,469,6399,5 +7452,Doo-Wop Street Singer,10776,115787,11 +7453,Swana's Restaurant Guest,1859,1144689,15 +7454,Mrs. Connoly,29355,8535,20 +7455,Captain Tammy MacRoberts,36554,5341,0 +7456,Vicky,17170,177443,7 +7457,Benjamin,8844,1000304,12 +7458,Ernst,29825,1062,5 +7459,Pvt. Michael Duffy,10652,28101,9 +7460,Spartanette #7,14,1503024,31 +7461,Cimmaron,34223,1227123,8 +7462,Toussaint,5924,2516,4 +7463,Eleanor 'Nell' Vance,11618,3127,3 +7464,English Commander,197,1227996,50 +7465,Young Employee,11830,554574,9 +7466,Anthony,37291,120674,5 +7467,Second Officer of Shona,488,6612,7 +7468,Durrel Jackson,92381,55637,6 +7469,English Teacher,10708,55253,46 +7470,Jacqueline,12652,73264,3 +7471,Dragon Girl,34223,1668099,16 +7472,Bob Falfa,838,3,11 +7473,Mike,62463,1170886,17 +7474,St.Ives,22279,1220073,8 +7475,Cortez,178,1073836,8 +7476,Frenchy,43828,2896,1 +7477,Mitchell Beck,13531,144165,9 +7478,Ted Reilly,11381,7471,8 +7479,Mr. Perdue,2107,2387,7 +7480,Buddy Threadgoode,1633,5577,6 +7481,Coroner,11449,1072,16 +7482,John Hemphill,78373,87018,2 +7483,Velma Kelly,1574,1922,0 +7484,Flight Attendant #2,11003,87332,14 +7485,Drunken Female IMF Agent,954,15322,12 +7486,Lt. A.Z. Drones,505,192,2 +7487,SS Officer,15873,3617,14 +7488,Stewardess,14931,129330,3 +7489,Guy in Diner #2,93350,1218119,11 +7490,Greg,8970,56867,3 +7491,Stewardess,12236,15110,6 +7492,Louise,11485,10558,1 +7493,Butler,11591,41243,3 +7494,Elyse,9403,164040,36 +7495,Tante Rose,12716,20796,5 +7496,Capt. Benson - Pilot,10671,78306,24 +7497,Mark Van Doren,11450,13324,3 +7498,Kevin Janey,320011,8345,7 +7499,Ruby,16229,1812,3 +7500,Eddie Roschak,15943,14069,7 +7501,Greek,24825,1139455,15 +7502,Deputy Steve Shanning,9827,18070,5 +7503,Betsy Reed,858,1648581,16 +7504,Herald Cohen,11561,30050,4 +7505,Narrator (voice),9016,65598,13 +7506,Samurai,11712,1482621,19 +7507,John,59181,152705,13 +7508,Henry Fool,37410,130840,0 +7509,,44081,1371117,5 +7510,Hewlett,9296,1744158,43 +7511,Bully,15239,98330,24 +7512,Doctor Ulmer,655,9894,5 +7513,Karen,22910,102642,5 +7514,Grant,266022,57082,1 +7515,Hotel Clerk,6068,1609233,25 +7516,Rear Admiral Raymond A. Spruance,11422,3381,3 +7517,Io Shinoda,10643,66154,2 +7518,Blitzstein - 'Joe Worker' Singer,32274,187565,7 +7519,Debbie,59181,228963,7 +7520,Mercenary,10603,1748103,20 +7521,Doctor,43828,88653,48 +7522,Charles Wills,57575,37446,1 +7523,Jim Young,14181,880,4 +7524,Steven's Mother,9894,6930,5 +7525,Instructor #2,1647,8355,13 +7526,Saddle Rock Deputy,8584,180467,14 +7527,Sue Charlton,9396,57166,1 +7528,Able Bodied Seaman (uncredited),12311,1421810,37 +7529,Union Railroad Fireman (uncredited),961,126014,15 +7530,Anne Bowles,7219,43203,0 +7531,Limo Driver,11450,60796,28 +7532,,18919,80325,15 +7533,"Henri ""Papillon"" Charriere",5924,13565,0 +7534,Statehood Audience Member (uncredited),11697,85778,60 +7535,Sir Danvers Carew,9095,8785,9 +7536,Extra (uncredited),2897,120746,121 +7537,Lajjo Kapur's Sister,4254,35761,17 +7538,Nurse Morse,35139,131480,6 +7539,Wilma Watson - age 10,152023,1024779,4 +7540,Connie,53617,82777,1 +7541,Nigel Ravens,38618,27764,2 +7542,Teresa Donofrio,11091,11478,6 +7543,Mom Turner,38554,41689,15 +7544,Jeffrey 'Colt' Douglas,16314,8187,2 +7545,Helfdane the Fat,1911,19901,4 +7546,Fred,15239,156240,17 +7547,Vronskaya,50512,17787,7 +7548,Reporter,10400,1196490,75 +7549,Will,121091,2482,2 +7550,Malcolm,205054,92838,5 +7551,Betty,28466,38691,7 +7552,Jump Coordinator (uncredited),10590,1226026,47 +7553,Dr. Thomas Wheedon,12538,1370,5 +7554,Farmer Arthur Hoggett,9598,2505,5 +7555,Art Esparza,31863,44794,10 +7556,Wedding Guest (uncredited),15,1369418,60 +7557,Debi LeCure,6552,2535,4 +7558,Susan Sloan,9087,61980,10 +7559,Annie Knowby,765,11749,1 +7560,Gate Guard,7299,52400,11 +7561,Anne,124475,17882,0 +7562,Freddy Eynsford-Hill,11113,140914,5 +7563,Mr. Berger,9717,101901,10 +7564,Tennis Attendant,11472,38025,16 +7565,Major Hoess,857,1648656,27 +7566,Michaelangelo / Pizza Man,1498,77152,5 +7567,Young Jane,14,1448568,23 +7568,Tom Bowen,18646,30181,0 +7569,Agent #1 - Miami Convention,2604,133452,95 +7570,Hannah Warren,26686,6352,0 +7571,WDKK Floor Director,334,9048,26 +7572,Robin Monroe,6068,8256,1 +7573,Virgil,16249,1675496,11 +7574,Neighbor (uncredited),34106,129544,51 +7575,,77825,582560,9 +7576,Lt. Jerome Stone,6499,1115332,11 +7577,Jeune banquier,2110,1622946,21 +7578,'I' as a boy,12516,40449,4 +7579,Guardia,1902,3682,10 +7580,Cafe 24 Customer,2898,188526,35 +7581,Jerry,2291,7134,10 +7582,Dimples Appleby,32484,95624,0 +7583,James Lingk,9504,378,6 +7584,Soundman,30363,140063,11 +7585,Mac (uncredited),34106,33362,132 +7586,Titus,18317,116126,4 +7587,Marissa Jones,11635,68495,9 +7588,"Vereshagin, Tretiak's Aide",10003,742,5 +7589,Senator Crocker Jarmon,21711,94294,3 +7590,Sandrino's mother,145925,1123327,13 +7591,Chet,19855,1527166,12 +7592,Uncle Glutz,229,120457,34 +7593,Himself,2300,1315449,26 +7594,Dennis Hope,786,11669,11 +7595,Jack Bull Chiles,22267,22108,1 +7596,Extra (uncredited),2897,1671167,213 +7597,The Sheik,11950,55432,6 +7598,Kwame,10603,6487,4 +7599,Ken Arrenberg,11215,13548,5 +7600,Titty Twister Saxophonist,755,1089505,17 +7601,Frank James Renda,40490,147493,10 +7602,Christa Marsh,9532,81802,11 +7603,Lorraine Taylor,15765,1218219,10 +7604,Gordon,30363,922,13 +7605,Tiny Duffy,25430,83801,6 +7606,Secrétaire à la tête rasée,105763,1359876,10 +7607,Zita,1480,55997,14 +7608,Miss Teresa Alan,11257,944610,9 +7609,Helen's Dancing Partner (uncredited),15849,120462,17 +7610,Judge Sarokin,10400,522,10 +7611,"Missy, the Babysitter",10871,67805,3 +7612,Chris Adams,966,14528,0 +7613,Daffy Duck/Tazmanian Devil/Bull (voice),2300,23680,3 +7614,Osric,18971,1520708,9 +7615,Anthony Adams,13685,36422,0 +7616,Gerardo,25403,35104,1 +7617,Matron Mama Morton,1574,15758,2 +7618,IBM Girl,12309,105358,25 +7619,Commando,28466,1230,6 +7620,Alchemist,11655,148189,5 +7621,Spy Morlock,2135,17005,24 +7622,"Additional Voices (voice, uncredited)",8916,184330,16 +7623,Radioman,3595,1116907,31 +7624,Grandma,2907,119864,9 +7625,Anatol Kuragin,11706,12259,3 +7626,Lili Rosen,75641,30123,3 +7627,Guy Who Calls Dud,11873,2989,34 +7628,Widow Douglas,34723,13314,5 +7629,TV Director,262,1032,18 +7630,Aged Actor,705,50833,10 +7631,Trick-or-Treat Child,9716,1661631,89 +7632,Long'er,31439,17382,7 +7633,Neighbor (uncredited),34106,139183,50 +7634,Laurette,1554,6913,4 +7635,Dre,6,1077264,8 +7636,Old Soldier,50123,1292677,10 +7637,Frank McGowan,12122,60650,3 +7638,Wan Erxi,31439,15170,3 +7639,Grant,26761,29313,3 +7640,"Doc Mimms, Zee's Dad",13496,780,9 +7641,Student (uncredited),220,39925,38 +7642,Barber (uncredited),34106,1195240,74 +7643,Jake's Daughter (uncredited),1578,169362,45 +7644,Peanuts,14794,1730639,18 +7645,Mogan,11692,532,3 +7646,"""Bones"" Malone",525,76150,10 +7647,Janitor,18736,143333,24 +7648,Jack Budd,42136,58406,2 +7649,Waiter,11830,554573,7 +7650,Lenny,580,1673749,21 +7651,Mary Wilkie,696,3092,1 +7652,Cook,9613,59199,17 +7653,Doo-Wop Street Singer,10776,102757,12 +7654,Crew Chief,31947,136906,11 +7655,Betty the Waitress,4147,150204,19 +7656,Brad Kovitsky,9441,1047726,5 +7657,Extra (uncredited),2897,1469588,200 +7658,Deputy Stuart 'Stu' Wargle,9827,23626,4 +7659,Johnny Cage,9312,57251,2 +7660,Gustaw Kramer,22257,88536,1 +7661,Phil Hawkes,79593,28413,14 +7662,Alley Pimp,12309,937883,17 +7663,Maria,278621,1415877,5 +7664,Walter Getz,10013,206,1 +7665,Girl on street,3780,72454,45 +7666,Jacqueline - Swana's Maid,1859,3346,12 +7667,La femme dans le coma,194,1457125,24 +7668,Collin,10950,1836336,33 +7669,One,44800,14069,7 +7670,Assorted Police,814,161030,43 +7671,Trooper La Fong,525,4610,45 +7672,Dog Kelly,12106,2144,4 +7673,Tyler,601,2878,7 +7674,Isabelle 'Isa' Tostin,9840,59807,0 +7675,Herself,9403,176012,6 +7676,Little Pink,12104,980076,8 +7677,Tod (voice),10948,1937,0 +7678,Lewis Thomas,10866,8167,1 +7679,Sheik Hosein,691,10465,15 +7680,Federal Court Assistant Prosecutor,10400,1393360,74 +7681,Philippe,35651,583594,5 +7682,Roland Grale,47955,47441,3 +7683,Jean-Charles,42832,90477,7 +7684,Blonde in Shoe Store,1793,44895,13 +7685,Townsman at Carnival (uncredited),220,975597,21 +7686,Simms Reeves,3089,30299,11 +7687,Central Park Carriage Driver,2135,1470325,8 +7688,Elaine,36094,79731,6 +7689,Jimmy Mattingly,9591,51670,1 +7690,American (uncredited),289,120066,27 +7691,Villager,3035,2936,10 +7692,Sister Hobbs,814,1328287,29 +7693,Sentry,32093,14979,19 +7694,Dorky Guy,9877,957076,22 +7695,Le Vétérinaire,110,27983,5 +7696,Ann's Father (uncredited),7219,41153,7 +7697,Pnub,6552,20220,10 +7698,Le client humilié,194,1086615,26 +7699,"Maj. Kenji Matsuoda (aka ""Nomura"")",38766,95014,14 +7700,Susan Witley,29067,81246,3 +7701,Red (voice),10137,58563,15 +7702,Prostitute,10276,106791,15 +7703,,41638,1499720,2 +7704,Sandow,43277,32430,10 +7705,Maraquilla Esparza,31863,123459,8 +7706,Local Anchor,9776,1790660,27 +7707,Doris Dunstan,20758,9071,4 +7708,Newspaper Editor (uncredited),7219,29433,9 +7709,Betty,11950,21619,7 +7710,Lionel (voice),18937,5168,9 +7711,Charlie,482,6565,6 +7712,Julien's Slave,46924,1542935,16 +7713,Andrews,28345,5831,4 +7714,Elderly Mourner,249,7074,8 +7715,Wardrobe (voice),10020,166994,10 +7716,Kapitonich,50512,1117996,13 +7717,Performer,34113,1884305,4 +7718,Justin Jones,14372,8874,3 +7719,Sweater Friend,8467,1546585,66 +7720,Bud,35694,10823,3 +7721,Cop #4,3595,217510,26 +7722,Spencer Little,10137,14833,10 +7723,Granny,31083,45523,4 +7724,CPO Gleason,2160,115772,13 +7725,Peter Saville,2750,91494,14 +7726,Nathaniel Fuller,43342,33661,7 +7727,Joseph Whemple,18990,87071,5 +7728,Crabbe,40688,3205,6 +7729,Doctor 1,99,3652,12 +7730,Edith Olson,30924,107309,5 +7731,Pirate,10303,1076203,14 +7732,Magi Lune (voice),13225,6465,6 +7733,Factory Worker,9272,1075087,11 +7734,Groucho Party Dancer,9716,1661637,95 +7735,Elliot,18551,6914,12 +7736,Mays Gilliam,9776,2632,0 +7737,Street Preacher,6038,25678,24 +7738,Rodzinski,36220,26283,3 +7739,Kate Leckie,99351,5698,6 +7740,Vincent Smith,30924,19181,0 +7741,Ashley 'Ash' J. Williams,765,11357,0 +7742,Doctor,26378,265594,39 +7743,Young Kristina Jung,4133,34847,14 +7744,Uschi,339428,1465294,4 +7745,Frank Grimes,8470,3087,1 +7746,Dalai Lama (Age 12),9746,58859,3 +7747,Luna Schlosser,11561,3092,1 +7748,Al,10747,14786,19 +7749,J.D.,2640,2224,1 +7750,Nesta,10173,1147893,10 +7751,Peggy - Red Team,17971,1081813,13 +7752,Madison - the Editor,25430,99217,50 +7753,Jazz Combo Member,28577,238749,26 +7754,FBI Agent Whit Carver,1073,15251,4 +7755,Rudy,5955,1585738,14 +7756,POW #2,1369,16588,14 +7757,Lenihan,26378,4303,18 +7758,Barbara Maitland,4011,16935,0 +7759,Oshirasama (voice),129,1039220,14 +7760,Freddy Gale,27526,514,0 +7761,Woman who is healed,2428,7632,27 +7762,Arthur P. Loudermilk,40095,1905,4 +7763,Colin Webster,30202,105823,3 +7764,Sidney,16094,141823,4 +7765,Izzy's Wife,635,109900,13 +7766,Thiago - Tiago,598,1372457,14 +7767,Pablo Montero,7305,110472,19 +7768,Bertha Anderson,15,105021,14 +7769,Soldier (uncredited),961,1374536,19 +7770,L'Agente di Polizia,5155,32676,4 +7771,Mildred Kronenberg,3172,31716,8 +7772,Neighbor,50123,1379976,9 +7773,3-D,105,1953,14 +7774,Janie Harkins,18692,567752,3 +7775,Pete,28387,21967,7 +7776,Wilma Watson,152023,21215,11 +7777,Edna,46786,49944,2 +7778,Morgan,112991,6408,2 +7779,Det. Sgt. Melkowitz,12154,6541,6 +7780,,56235,223814,6 +7781,Stage Door Guard,262,1402313,22 +7782,Punk Rocker (voice),29204,80745,10 +7783,Andy,11129,52890,7 +7784,Lightning Jack Kane,22317,57147,0 +7785,Porky Sullivan,210092,1193676,4 +7786,John L. Sullivan IV,26798,16475,1 +7787,Guy,9427,2251,6 +7788,Ruth Carter Stapleton,1630,18236,4 +7789,Titty Twister Drummer,755,1089510,18 +7790,Gordon Cain,54287,14060,1 +7791,Group Leader,2291,85566,13 +7792,uomo prima coppia,25403,93727,6 +7793,'The Clown',2321,6591,22 +7794,Alex Summers,36259,62597,10 +7795,Guest at Rick's (uncredited),289,1331750,14 +7796,Maggie Johnson,73969,100047,0 +7797,Beebee Moss,32872,4003,11 +7798,Mr. Massoula,20758,2642,5 +7799,,47144,32358,10 +7800,Medicine Man,14676,544598,14 +7801,Horse Breaking Sequence,5917,1085689,68 +7802,Slick dude,19324,84480,10 +7803,Richie Marks,38558,16431,1 +7804,Newspaperman at Trenton Town Hall (uncredited),15,1108831,82 +7805,Grandson Ryan,54405,65733,13 +7806,Brendan,49929,73283,2 +7807,Susan's Mother,795,11913,8 +7808,Danny's Father,4012,47085,7 +7809,Prison Guard #37,11001,32287,22 +7810,Lt. Carl Anderson,38766,12149,0 +7811,Sarah,38718,18750,3 +7812,Dee Vine,14429,77803,5 +7813,Marketing Guy,10708,155825,43 +7814,Toland,11145,91369,9 +7815,Busboy (uncredited),28940,4600,35 +7816,Sam Baines,105,1069,8 +7817,Porter,2084,34546,11 +7818,Eye Doctor,11873,1222016,31 +7819,Mac,18642,83804,11 +7820,Al,49792,3266,4 +7821,John Laury,13571,925,7 +7822,Douglas Ramsey / Cypher,36658,232596,20 +7823,Stock Truck Driver,30352,106120,16 +7824,Alan Monteiro,41469,126583,3 +7825,Nurse,10647,2842,13 +7826,Uncle Bill,33542,44922,3 +7827,Mr. Bomman / Roger's Dad,24795,20212,10 +7828,Spider,9613,5469,0 +7829,Deputy Bill Nash,29959,40577,6 +7830,The Child,43143,1801762,15 +7831,Fausto Squiriniszu,11933,37043,5 +7832,Guard #1,11001,1504123,24 +7833,Tom McMullen,42087,2454,3 +7834,Cal Grainger,13380,145526,8 +7835,Long John Silver,10874,13472,0 +7836,Distinguished man,21430,6394,5 +7837,the bell captain,24005,97175,16 +7838,Voice (voice) (uncredited),11202,16417,35 +7839,Additional Bus Passenger #2,1637,1872788,42 +7840,Montgomery Scott,193,1751,8 +7841,Czech Wehrmacht Soldier,857,1054325,34 +7842,John,2105,68842,15 +7843,Flying Cop,18,1857422,49 +7844,Edward Gardner,29911,2440,3 +7845,Patricia Montelli,16235,80137,5 +7846,Stripper Sitting at Bar,1480,44714,31 +7847,Bukowski,11524,1417453,14 +7848,Mewsette (voice),32328,9066,0 +7849,Jogger,2135,156875,11 +7850,Gallivan,21132,87132,5 +7851,Abbot,1689,379722,8 +7852,,32093,1210383,23 +7853,Thandiwe Adjewa,21828,9030,1 +7854,Joe Snead,415072,940141,15 +7855,King Louie of the Apes (voice),9325,57330,3 +7856,Tom Cassidy,578,5286,8 +7857,Julia,30363,140057,4 +7858,Mr. Norris,47574,1381,3 +7859,Riley,14550,11478,4 +7860,Annie Savoy,287,4038,1 +7861,Neighbor (uncredited),34106,121308,60 +7862,Servant,125520,7061,3 +7863,Guard,11517,15372,13 +7864,Barber,8467,1853174,36 +7865,Mrs. Koehler,61934,93698,13 +7866,Passenger on Train in Tunnel (uncredited),954,1401796,29 +7867,Terry Fisher,11298,16173,3 +7868,Robinson,38950,55271,2 +7869,Waitress,11873,1265407,40 +7870,Man who bought the land,13889,233693,14 +7871,Alfred Bello,10400,47774,12 +7872,Judy,838,1231581,21 +7873,Marco Kito,55731,20303,7 +7874,Interviewer,12102,150213,11 +7875,Moncho Sabella,7305,153783,20 +7876,Natacha Von Braun,8072,18197,1 +7877,Female Wing Kong Guard,6978,1677330,45 +7878,Howard,278621,37041,9 +7879,The Applewoman,23114,13965,10 +7880,Colonel John Welkin,11202,183207,22 +7881,Cashier,10400,219407,51 +7882,,76996,38784,2 +7883,Mitch,11524,1417447,8 +7884,Smather (uncredited),15,117029,143 +7885,Christine Graham,42218,160589,8 +7886,"Mochi, Policeman",46986,1015002,52 +7887,Little John (voice),11886,57329,1 +7888,Pang An,47694,554851,5 +7889,Marvin - VA Hospital,2604,1447263,46 +7890,Howard Hughes,38772,4765,0 +7891,"The Reverend Mr. Eager, Chaplain of the Anglican Church in Florence",11257,3568,5 +7892,Bus Depot Counterman,38772,147078,5 +7893,"George Willis, Jr.",9475,1233,4 +7894,Christophe,12652,1356,7 +7895,Baby Boy,25006,93008,1 +7896,Mother Goose,25898,94333,6 +7897,Mr. Gwillym Morgan,43266,8841,3 +7898,Det. Steve Menteer,19150,12799,8 +7899,Myca,9495,39126,4 +7900,Laertes,10549,17483,6 +7901,Motown,10652,66101,1 +7902,Whoppa chopper pilot / Ohio cop with bullhorn / Old Jeb,17711,13593,5 +7903,Det. Eddie Walenski,2666,27753,7 +7904,Dolores - Young Prostitute,11035,67880,1 +7905,Maid,9289,543813,12 +7906,Marty,93350,1857006,23 +7907,Wing Kong Hatchet Man,6978,1677324,39 +7908,Jay Wagner,31671,3087,1 +7909,elle-même,64567,64913,2 +7910,Thompson,59401,32494,3 +7911,Audrey Reede,1624,16307,1 +7912,Lots Tochter # 2,2525,25791,20 +7913,Church Member (uncredited),28345,927616,16 +7914,Mike Shannon,61934,1287489,14 +7915,Red Team Player,11535,1674898,26 +7916,Airport Cop,18,64102,66 +7917,Frankie Browne,15506,65032,3 +7918,Ned,11231,112150,6 +7919,Monica Poiccard,1058,15211,1 +7920,Ma James,13496,8534,5 +7921,Tommy Boyle,2321,138988,15 +7922,Henry Gupta,714,10743,4 +7923,Easy Pete,10874,121112,9 +7924,Reporter,2984,1537218,41 +7925,Midget,31682,102426,9 +7926,Lester,3784,33835,11 +7927,"Chigusa, Masae's sister",3780,144796,24 +7928,Dr. Dean,11561,123722,7 +7929,Dr. Marianne Katz,2262,23344,2 +7930,The General,40555,16523,2 +7931,Bob,11622,1349629,12 +7932,Mrs. Moore,215373,16047,6 +7933,(uncredited),15,569144,125 +7934,Veronica Vaughn,11017,20751,2 +7935,Christian,27145,36925,3 +7936,Julie,15239,555067,3 +7937,Man in Phone Booth,11298,102429,18 +7938,Child at Cafe 24,2898,1678179,43 +7939,Irishman,62463,1780601,7 +7940,Teresa Hagen,242,982089,32 +7941,Elke,10873,554272,9 +7942,Girl in London House,11654,31921,16 +7943,Amanda Chang,2625,15100,6 +7944,,73642,585008,6 +7945,Miss Nolan - Teacher,5257,3054,14 +7946,Ora Haley's Bodyguard,5917,1375070,24 +7947,Sofia Mellinger,21052,205,3 +7948,Father Meehan,10657,938390,9 +7949,Huge Village Man #1,10222,551872,9 +7950,Horse Breaking Sequence,5917,999716,69 +7951,Le grand-père,105763,276598,16 +7952,Eleanor,49788,40389,0 +7953,Alison Keith,99351,199128,13 +7954,Prof. Marieke van den Broeck,45928,1350,1 +7955,Maj. Gen. Dr. Hans Speidel,9289,32554,8 +7956,King Colbert (voice),28032,9601,9 +7957,Rose,10747,40381,9 +7958,Pittsburgh Ring Announcer,10400,1393342,40 +7959,Königin von Sodom,2525,1019113,24 +7960,Moses Helper,1811,27772,22 +7961,"Ricco, Pathologist",2924,15661,16 +7962,Barker,24126,147397,12 +7963,Drunk Monkey (uncredited),3050,1428580,11 +7964,Narrator (voice),9428,7447,8 +7965,Vivian,78373,69399,8 +7966,Reporter Guest,3595,1811948,18 +7967,Orfeo de Altamar,11907,70887,1 +7968,"Masao, thier son",28273,135135,5 +7969,Chris Anderson,23223,8395,1 +7970,Petra,8391,54819,1 +7971,T.B.,26378,89750,10 +7972,Tom-Tom Piper,25898,94331,3 +7973,Dr. Jean-Claude Chermann,2887,47085,14 +7974,Carl,1999,20544,9 +7975,Officer Clayton Williams,12618,1181562,21 +7976,Emma,2135,7055,3 +7977,Lillian Reynolds,15050,7071,2 +7978,Henry Royce,47867,86812,0 +7979,Terry Barnett,42424,26472,0 +7980,Kid,38509,120591,13 +7981,Kenny Tyler,36807,9562,0 +7982,Billy Caufield,14550,2232,0 +7983,Crystal,10783,14406,1 +7984,Spike,9607,6396,5 +7985,Mick,23239,75544,1 +7986,Officer Karen Thompson,9507,724,1 +7987,Baron Frankenstein,3036,65,5 +7988,Young Kevin,20678,87822,6 +7989,One of Duffy's Goons,25430,1045763,56 +7990,Jim Craig,13965,73489,0 +7991,Joseph Brady,17889,13294,2 +7992,Yubaba / Zeniba (voice),129,19589,2 +7993,Giannini,10774,99036,17 +7994,Lisa Pailey,9827,16850,2 +7995,Himself,9403,193926,32 +7996,Edmund Ventura,1903,1284,5 +7997,Television Announcer / Labrador,12230,1080053,12 +7998,Mrs. Brown - Sgt. Brown's wife,10568,1420332,25 +7999,Voice of the Ring (voice),120,1367,20 +8000,Sally,34838,57206,0 +8001,Extra (uncredited),2897,545513,141 +8002,Stan the Con (1940's),66597,16838,7 +8003,Coach Marshall,2105,6564,19 +8004,Burke,5917,127738,11 +8005,Chinese Delivery Man,11001,1672684,50 +8006,Sue Lewis (Present day),66597,13326,1 +8007,J.J. Camden,11232,11367,5 +8008,Temple Priest,31498,30200,14 +8009,Karen,26689,96043,1 +8010,Raphael (voice) / Passenger In Cab,1498,6181,2 +8011,Wilson Daniels,15944,4091,0 +8012,Chairman Lincoln,84735,56266,4 +8013,Senator Clatterbuck,38043,32480,8 +8014,Older Maurice,11889,35257,6 +8015,Sammy the Blade,20678,152582,8 +8016,Preservation Partier,8467,1853191,49 +8017,Herself,29376,25787,10 +8018,Guard,2453,33713,15 +8019,Doctor,2604,4029,15 +8020,Co-Pilot,9532,1233161,21 +8021,Prentice,26761,4316,6 +8022,Felix Leiter,709,10226,6 +8023,Attorney to Kirby (uncredited),34106,96060,123 +8024,Michael,31083,18352,0 +8025,Dr. Richter,39176,27762,7 +8026,Dai,276635,1484410,10 +8027,Skull Island Native Chief,244,3247,7 +8028,Harry the Pedlar - Sir Humphrey's Gang,31995,66884,5 +8029,Aide,1687,588,10 +8030,Mrs. Leach (uncredited),34106,1318795,130 +8031,Charlie,21801,210774,15 +8032,Himself,85472,932225,7 +8033,Joe,10568,588260,13 +8034,Prison Guard,10400,41658,66 +8035,Cusamano (uncredited),949,20625,60 +8036,Laughing Detective,16938,81059,13 +8037,Eve,11185,18891,2 +8038,Belle Starr's Band,65134,1453028,7 +8039,Becker,9102,56977,1 +8040,Melinda,16550,25884,11 +8041,Maid,28940,1851421,27 +8042,Carl Smith,37247,30050,5 +8043,One Stab,4476,37430,6 +8044,Diane Steen,9835,18979,2 +8045,Bartender (uncredited),11697,1543341,69 +8046,Steven Lidz,52856,1238944,3 +8047,Lhama,38006,101939,2 +8048,Kelly Woods,10050,205,0 +8049,Alicia DeGasario,14429,40980,3 +8050,Mrs. Beth Morgan,43266,7381,6 +8051,Mrs. Sherwood,3537,32394,10 +8052,Lieutenant Allegrezza,11654,6486,5 +8053,NVA Officer (uncredited),10590,16580,46 +8054,Henry's Boss,10692,1265139,3 +8055,Mrs. Coady,623,12658,7 +8056,Lucy Diamond Dawson,10950,501,3 +8057,Cora,3784,18794,3 +8058,Tom,46986,1535173,20 +8059,Drunk in Barbary Coast Saloon,2897,105636,31 +8060,,201724,1037,4 +8061,Butler,11113,126656,9 +8062,Lab Technician,11428,4610,11 +8063,Assistant,9079,1170975,12 +8064,Husky Miller,51044,1594319,7 +8065,Public Works Official,2978,131667,18 +8066,Aunt (voice),12477,72416,3 +8067,Victor 'Boss Vic Koss' Kosslovich,9591,7166,16 +8068,Negoziante,10867,553184,16 +8069,Bartender,4806,1211,17 +8070,Young Sherry,14534,76990,9 +8071,Plainclothes policeman,18939,133565,14 +8072,Melvin the Re-Animated,1694,37029,6 +8073,Dr. Austin Sloper,45019,3926,1 +8074,Kovolov,15267,102403,10 +8075,Ayla,13853,589,0 +8076,Harry Winston Dancer,9716,60022,20 +8077,Rufus,24816,5833,6 +8078,Diana,47574,11084,1 +8079,Lightning,6978,53024,9 +8080,Hazel (voice),11837,5049,0 +8081,Dave,19157,879,11 +8082,Capt. Ryan,11880,15498,3 +8083,Mr. Swaffer,1959,14324,4 +8084,Reform Club Member (uncredited),2897,1042265,289 +8085,Jessie Conrad,12103,20815,3 +8086,First Officer,41516,87518,7 +8087,Valet,215373,1203320,16 +8088,Travis,1049,15153,6 +8089,Ranch Hand,51802,144406,12 +8090,Reception Guest (uncredited),3063,1015322,18 +8091,Clark,36929,87003,5 +8092,Marliano,26165,1879230,9 +8093,Herself,99008,1019852,11 +8094,Abby,167,96554,18 +8095,George McFly,165,1952,5 +8096,Con Petropoulous,13852,8783,8 +8097,Detective Cortez,16235,80146,15 +8098,Britton,108312,65019,13 +8099,Bo,66894,5726,5 +8100,Bar Waiter,2898,60259,48 +8101,Grandmother Fa (voice),10674,15098,6 +8102,Dr. Lewis Dixon,1687,18647,2 +8103,Dominick,949,1090465,47 +8104,Montague,16176,92697,12 +8105,Preservation Partier,8467,1853189,47 +8106,Stable Hand,5917,3339,7 +8107,Marvin Mamoulian,9403,21154,18 +8108,Anna,47493,12656,7 +8109,Schnucki Greenspace,56162,16861,5 +8110,Casino Clerk,11873,112045,44 +8111,Wedding Musician,5991,591199,8 +8112,Shaleen McKussic,10396,37042,14 +8113,Technician,11535,1674975,79 +8114,Henry,14886,77486,9 +8115,Phil,10708,60074,1 +8116,Cleve Gregg,43368,98052,8 +8117,Felix Ungar,27472,3151,0 +8118,Officer 3,1924,1068099,52 +8119,Dan,17692,1296367,7 +8120,Cass,11593,80542,15 +8121,Prof. Barrett's assistant,21380,107191,8 +8122,Extra (uncredited),2897,135134,181 +8123,Eric McGowen,11231,227199,4 +8124,Ed Vallencourt,786,11666,14 +8125,Christian Szell,10518,3359,1 +8126,Catering Boss,14,12223,19 +8127,Sidney Hocheiser,42569,5372,2 +8128,Jackie Harrison,9441,4038,1 +8129,Pvt. Duane Doberman,9099,115786,7 +8130,Miguel,9028,32072,18 +8131,Lucy Rose,10863,18794,1 +8132,Ami,16550,59257,5 +8133,Aunt Lavinia Penniman,45019,10978,2 +8134,Val Goldman,11000,5346,6 +8135,Stepan,8665,55593,21 +8136,Chaperone,6552,1004159,22 +8137,Lena Foster,12186,30123,3 +8138,David Shrader,32284,60060,2 +8139,Lawyer,28973,112363,10 +8140,Coat Check Girl,9504,171743,11 +8141,Dick Sanderson,28430,89208,10 +8142,Leonard Winesop,11899,4610,16 +8143,Orphan,525,1263449,52 +8144,Billy,29698,135043,11 +8145,April Cavanaugh,24645,12214,0 +8146,Meat Man,9776,56903,9 +8147,Red Team #9,11535,451,11 +8148,Marilyn Lee,28176,42133,6 +8149,Old Leather,3089,121238,14 +8150,Nicole,11635,9280,3 +8151,Dorothy,41357,26662,0 +8152,Carlson,11001,36422,1 +8153,Preservation Partier,8467,1853195,52 +8154,Ursula's Friend,10603,1224308,18 +8155,Teamster,9776,116515,26 +8156,Sheriff Beaumont,19142,1180942,9 +8157,Priest,14811,98770,29 +8158,Marjorie,17350,118357,7 +8159,Himself (uncredited),7514,52836,23 +8160,Pub Landlord,153141,101919,22 +8161,Col. Gregor Yegorov,9404,90358,5 +8162,Judge,41478,66554,0 +8163,Rose Gator,334,4778,12 +8164,Merlin (voice),18937,11857,10 +8165,Rudy's niece,19324,84478,7 +8166,Rathbone Guard,6038,985423,31 +8167,Young Bobby Bartellemeo,19150,1953,9 +8168,Bree,13536,2266,7 +8169,2nd Chess Player,814,14469,9 +8170,Extra in Blackjack Scene (uncredited),11536,6593,9 +8171,Maxwell 'Max' Connor,11511,17918,1 +8172,Orlean's Husband,2757,323,17 +8173,Regina,9028,20887,7 +8174,,64310,4885,0 +8175,Jim Collier,21849,183289,9 +8176,Danny Quintz,23599,829,15 +8177,Matt Fowler,1999,207,0 +8178,Husband,11374,124603,22 +8179,Norman,5,3137,18 +8180,Girl from the Tunnel,11902,1666743,21 +8181,Don Forrester,9354,78003,9 +8182,Federico Aranda,7305,52421,10 +8183,James' Father,10539,63544,9 +8184,Jenny Fox,33851,26071,7 +8185,Himself - Director in Trailer,1859,2428,33 +8186,Boris Podolsky,11777,69300,6 +8187,Maggie,13346,57372,1 +8188,,33356,146754,0 +8189,Aunt Wendy,53617,2926,2 +8190,Dr. Travis,10727,186939,7 +8191,Ritchie,11618,552094,13 +8192,Man at Impeachment Hearing,25430,135827,49 +8193,Wally Jr.,18414,32204,8 +8194,Father,7299,28848,7 +8195,Mrs. Armstrong,10491,97170,20 +8196,District Attorney,76397,15515,10 +8197,Devon,29825,1473,17 +8198,Himself,9563,214729,67 +8199,Witchwoman #2,16441,165994,10 +8200,Corporal #1,22328,58495,14 +8201,MacMillan,2280,1162,2 +8202,Mr. Swackhammer (voice),2300,518,5 +8203,Isabel Kelly,9441,1204,0 +8204,Budy Travis,2087,147,2 +8205,Tommy,29698,135046,15 +8206,Bill Sampson,705,10608,4 +8207,Kyle,4012,34544,4 +8208,Malcolm Arnold,13539,12132,3 +8209,Antoine,47119,1866972,5 +8210,Young Beaver,6171,48463,8 +8211,Look Out,10047,24564,7 +8212,Police Officer (uncredited),289,22099,38 +8213,"""Two Brothers/Stranger"" Player",11873,170941,14 +8214,John Cleveland,5917,52616,22 +8215,Captain Luneau,638,9297,16 +8216,Henry 'Hank' Giles III,10750,521717,10 +8217,Immigration Aide,19324,58651,12 +8218,Soviet Lawyer,1859,3245,38 +8219,Jeff Williams,55420,59262,13 +8220,Kermit the Frog / Rizzo the Rat / Beaker (voice),10874,64180,6 +8221,Parvulesco the Writer,269,3831,3 +8222,Dancer (uncredited),21468,24880,14 +8223,Vincenzo Cortino,9835,2177,5 +8224,Woman in Zoo,814,201499,35 +8225,Patch,12230,179313,15 +8226,Helmsman of the S.S. Henrietta,2897,30495,34 +8227,Las Vegas gambler,44800,588,10 +8228,Minor Role (uncredited),2897,153688,263 +8229,Jack the Ripper - John Leslie Stevenson,24750,2076,1 +8230,Yuri Nikolayev,9977,61345,13 +8231,Maureen Peak,80350,1541696,9 +8232,The Sister,90762,1315419,5 +8233,,11017,884,16 +8234,Mr. Morgan,10406,15416,14 +8235,Female Executive,1637,104059,22 +8236,elle-même,64567,28781,5 +8237,Hostage Gloria Hill,755,11162,11 +8238,Billie,60994,11150,3 +8239,Jonathan Lundy,788,10360,8 +8240,Dr. Fisher,141,1583,10 +8241,Gloria,49688,963016,2 +8242,Chato,10747,117028,13 +8243,Gaby Gould,26252,94949,16 +8244,Jim Richardson,11607,42206,5 +8245,Caroline Schumacher,10774,1026534,19 +8246,Col. Hathi (voice),9325,22602,6 +8247,Delbert Grady,694,694,5 +8248,Reporter,19760,1183958,6 +8249,Soldier in Trench,28,14320,17 +8250,Sgt 'Blue' Smith,36554,69248,4 +8251,Mitri,28893,102337,10 +8252,U.S. Army Ranger major,9289,544753,17 +8253,Captain,10047,1077835,22 +8254,Interested Mom,10708,1786658,47 +8255,Rick Blaine,289,4110,0 +8256,Insurance Man,29698,135050,19 +8257,Mitch,46286,14886,4 +8258,Interrogator,261246,1184909,16 +8259,Barkus sparring partner (uncredited),32049,1502543,49 +8260,Cheryl Steed,58985,14326,23 +8261,English Officer (uncredited),220,1080053,49 +8262,Fhloston Hostess,18,1857437,76 +8263,Burpelson AFB Defense Team Member,935,1332532,16 +8264,(uncredited),71067,1158634,11 +8265,Viv,3682,33653,5 +8266,Linda Aikman,29787,51580,8 +8267,Colonel Keith Davenport,15497,10608,2 +8268,Inez Quintero,32093,25173,3 +8269,Lia Rousseau,21380,588158,0 +8270,Detective Leanne,23239,96460,4 +8271,Prof. Arnold Hennessy,24212,101501,5 +8272,Felix Leiter,660,9922,4 +8273,Sebastian Valmont,796,11864,1 +8274,Peter Smythe,16938,245,1 +8275,Felicity,606,10652,8 +8276,Kamaji (voice),129,119243,3 +8277,Brides Mother,16176,153107,26 +8278,Jimmy Serrano,9013,1117,4 +8279,Bartender,117,1886571,15 +8280,Daniel Holt,22267,2954,2 +8281,General Corman,28,3173,9 +8282,Mrs. Ferguson,580,1673212,19 +8283,Heather Lee,59930,88186,5 +8284,Guard,5917,1894165,53 +8285,Reporter,169,1583695,28 +8286,Madame Rulenska,25969,13299,8 +8287,Foot Soldier,1497,1456544,65 +8288,Roamer,11589,1022217,36 +8289,Child Dancer (uncredited),34106,1422296,116 +8290,Third Gunman,26593,95743,16 +8291,Teen,53150,1536858,15 +8292,Mr. Hand,2666,13474,4 +8293,,28134,13314,13 +8294,Maitre D',32872,42731,40 +8295,Monsieur Gasse,2897,29519,4 +8296,Mrs. Dresland,41969,151439,3 +8297,Steve Freeling,11133,8977,0 +8298,Dr. Leuter,29825,7795,15 +8299,Phil Parma,334,1233,5 +8300,"Bulankova, the social worker",18939,133560,9 +8301,Royal Tenenbaum,9428,193,0 +8302,Norma Bates (voice) (uncredited),539,7520,23 +8303,Roberta Muldoon,11307,12074,3 +8304,Bonsor,11589,71347,35 +8305,Umberto,41209,1187,4 +8306,Lodge Tourist,11185,1720889,31 +8307,The Lieutenant,59401,17661,2 +8308,Pretty Girl on train,11337,4430,9 +8309,Judge Alvin 'J.P' Valkenheiser / Bobo,11933,707,1 +8310,,11216,553184,18 +8311,Barber,117,1886590,36 +8312,Additional Voices (voice),580,20220,29 +8313,Father Polycarp,245268,22603,5 +8314,Dove Bullis,31306,52,1 +8315,Gym Teacher,2280,123728,9 +8316,Eddie Cicotte - P,2323,9276,13 +8317,David Patel,167,101847,29 +8318,Extra (uncredited),2897,1487467,60 +8319,Lupo,20287,85870,11 +8320,Lisa,153141,1238442,5 +8321,Lieutenant General Harry Buford,11202,93949,13 +8322,Cafe Manager,17889,5464,7 +8323,Billings,43277,9067,3 +8324,Ellen Sands,38775,77485,3 +8325,Lieutenant Birdwell,15497,31705,10 +8326,Tight End,9563,1269562,32 +8327,Sister Michelle Gallagher,18694,21277,1 +8328,Groucho Party Dancer,9716,1661643,101 +8329,Sonny,2637,27692,21 +8330,Jerry Lambert,169,2053,5 +8331,Beth Logan,10344,14668,1 +8332,Frenchman,705,120545,18 +8333,Pablo,14931,109145,13 +8334,Wednesday Addams,2907,6886,3 +8335,Lieutenant Richard M. Colby,28,349,11 +8336,Miss Gaulswallow,2984,11127,6 +8337,Himself,21024,22868,5 +8338,Ethan,18222,553985,12 +8339,Trick-or-Treat Child,9716,1661633,91 +8340,Dr. Leonard McCoy,154,1750,2 +8341,,124633,1753361,12 +8342,General Brown,10724,124435,9 +8343,Nathan,153141,109383,15 +8344,Tic-Tac,379,5171,8 +8345,Man in Street,24266,91487,4 +8346,Corpus C. Redfish,21024,40176,1 +8347,Kelton,36489,103080,6 +8348,Man #1,13005,55206,7 +8349,Diana,10622,60464,3 +8350,moglie di Gino,145925,92095,7 +8351,Dr. Huber,76411,38253,4 +8352,"Major ""Doc"" Kaiser (flight surgeon)",15497,11033,6 +8353,Anneliese Dingler,278978,1325073,4 +8354,Dianne Carter,26299,83433,1 +8355,Priest Brian Norris,4806,10825,7 +8356,Dan Latimer,3089,4316,8 +8357,Wife of Heart Transplant Patient,8470,1220746,14 +8358,Sophie McLoughlin,5332,42837,11 +8359,Mrs. Braddock,37247,10776,8 +8360,Rolf Stutz,282919,26396,5 +8361,Dick Hallorann,694,7077,3 +8362,Shell-Shocked Soldier,975,1077968,14 +8363,Simms,167,33501,17 +8364,Doreen,276635,1484405,3 +8365,Alfred Ludlow,4476,18992,2 +8366,Blonde,25862,89725,8 +8367,Beisa,46094,134773,11 +8368,Mike,43832,125842,11 +8369,Tuccio,91076,1241,0 +8370,Franklin,11442,65811,15 +8371,Harry Thurmont,249,1269763,7 +8372,Murray Chadwick,17465,21523,3 +8373,Lapinsh,8665,55588,15 +8374,Packhorse driver,13889,1484348,15 +8375,Journalist,2750,11108,16 +8376,Player's Wife,9563,1741415,53 +8377,Schoolboy,25934,559710,25 +8378,Extra (uncredited),2897,1176933,104 +8379,Jane Porter,38618,21817,1 +8380,Mrs. Bailey,24266,91489,9 +8381,Janet Stone,11889,1249,4 +8382,Alex Morales,7305,943323,24 +8383,Mr. Smiley's Manager,14,1441804,21 +8384,Ruth Jones,24005,19781,5 +8385,Gabrielle Gerard (singing voice) (uncredited),29376,1445466,13 +8386,Charlie,129628,11064,12 +8387,Salgado,46924,20425,32 +8388,Mr. Wilson,2625,9284,8 +8389,Jocko Dundee,16806,1039,1 +8390,Extra (uncredited),2897,1662013,222 +8391,Dr. K,12079,16476,14 +8392,Cindy,29938,99237,0 +8393,Jimmy Montrose,15144,173192,18 +8394,Lew Price,54287,14848,3 +8395,Mrs. Smith,13667,182416,9 +8396,Elliot Price,11800,10669,5 +8397,Attorney,26958,83462,7 +8398,Pete Clemenza,238,3086,3 +8399,Reverend Larson,9889,14888,4 +8400,Street Poet,76,3735,7 +8401,,47144,48791,8 +8402,Mr. Lachance,235,3041,9 +8403,Dr. Roger Waters,10354,194571,25 +8404,Montgomery Scott,157,1751,3 +8405,Howard,29076,85142,10 +8406,Tor Johnson,522,7136,11 +8407,Herb Lee,31044,91369,7 +8408,Marcus,28736,101785,8 +8409,Avram,14811,949253,15 +8410,Splinter,1497,77156,6 +8411,Frasquita,21193,1378394,4 +8412,Ramelle Paratrooper,857,1063140,28 +8413,Dr. Scoggins,24816,29579,8 +8414,Pete 'Maverick' Mitchell,744,500,0 +8415,Sailor Discussing Lola (uncredited),17889,120199,21 +8416,Gabbeh,43771,998513,0 +8417,Raunchy woman,11159,1221007,30 +8418,Annie's Granny,2046,18998,7 +8419,Keys,47955,1818,1 +8420,Tenement Murderer,4147,35025,12 +8421,Sara Holland,5551,4726,5 +8422,Deputy Greg,30352,106116,9 +8423,Agent Dean Blandford FBI,9366,19468,10 +8424,Co-Worker Marty,10708,1786656,40 +8425,Ginger Booth,49788,54782,2 +8426,McIntosh (as James Dodd),29372,95968,13 +8427,George Dorset,25520,11067,3 +8428,Leslie,786,11668,16 +8429,Salad Cook on Olvera Street (uncredited),17889,30117,19 +8430,Booboo,52366,146211,15 +8431,Item Number,85052,85693,13 +8432,Jof,490,6658,3 +8433,Casino Bar Band Member,11873,1265411,46 +8434,Leo Lemke,20096,10477,2 +8435,Paris Carver,714,10742,3 +8436,Omar,18,1857412,34 +8437,Marine Petty Officer,10847,975188,25 +8438,Andy,10207,97943,10 +8439,Senator Holt,12476,160335,10 +8440,Le mari de la concierge (voice),194,1195532,48 +8441,High School Boy (uncredited),3309,78304,15 +8442,Dancer,10735,1226857,16 +8443,John Keenan,811,12121,1 +8444,Mark Collins,46094,134771,9 +8445,Woman in a Smock,284096,1347013,3 +8446,Tanya,11415,147290,4 +8447,Duke,1374,16504,5 +8448,Hauptmann Carl Schmidt,15873,23694,9 +8449,Tonto,415072,124555,0 +8450,Bud-Lite Kaminski,18133,21132,5 +8451,Adult Bobby Garfield,11313,52,4 +8452,Old man at the inn (uncredited),490,1194872,24 +8453,Officer Dan,31342,76764,7 +8454,Girl in Church (uncredited),71067,97250,13 +8455,Finlay,28120,14868,0 +8456,Jack the Ripper,6038,24627,20 +8457,Policeman,261246,2983,15 +8458,Morgan,12311,132536,22 +8459,Mr. Quidacioluo,235,3042,14 +8460,Mrs. Ridgefield (uncredited),43340,97257,10 +8461,Admiral Jack Fletcher,11422,5255,9 +8462,Sarge,29475,103934,6 +8463,British Consul - Suez,2897,8240,29 +8464,Older Man,11472,1495928,12 +8465,Dweeb (voice),18890,12826,7 +8466,Storekeeper (as Joseph Passerelli),19209,1365510,7 +8467,Duty Sergeant,9427,1356541,21 +8468,Hank Chapman,26946,12355,2 +8469,Big Chuck,31503,15900,9 +8470,Lacey,40220,980279,0 +8471,The Guy at the Piano,2321,27098,13 +8472,Doc Ansell,45671,388,2 +8473,Jerry Seville,8989,161673,14 +8474,Twin,2140,21946,7 +8475,Dr. Bob Niedorf,9294,1213786,13 +8476,Inspector Gregson,24750,93310,15 +8477,Sen. Frederick Prentice,23518,13786,8 +8478,Akron Referee,30709,106812,16 +8479,Birger,742,6004,12 +8480,Father Sexton (voice),11886,5247,13 +8481,Barbara Bowerman,22256,19239,8 +8482,Willoughby Whitfield,10869,35031,1 +8483,Michael Jordan (at 10),2300,23681,6 +8484,George,22023,1577158,18 +8485,Baron Bror Blixen/Baron Hans Blixen,606,10647,2 +8486,Jerry Lovett,8358,38026,2 +8487,Edward Hutchins,805,12023,4 +8488,Cameraman Bill,522,7139,14 +8489,Detective #2,79593,43010,11 +8490,Clint Braden,18691,30687,7 +8491,Cave,10491,15576,7 +8492,,64310,48576,1 +8493,Laertes,141489,53085,10 +8494,Sheila,10708,61409,9 +8495,,52907,54036,4 +8496,Madame Lacross,11370,24942,14 +8497,Woody Harrelson,817,57755,17 +8498,"Chaca, Pacha's Daughter (voice)",11688,1381716,9 +8499,Steward,2897,2094,11 +8500,Russian Prostitute,10003,955006,11 +8501,12-year-old Howard,9403,952664,24 +8502,Reporter,9296,1215608,32 +8503,Star Surgeon,11379,1211987,33 +8504,Symposium Speaker,55420,1301644,10 +8505,General Andreas,25682,39784,4 +8506,Cabbie,11185,156136,30 +8507,Duvernois,1902,24404,5 +8508,Jay Rose,46286,7399,9 +8509,Legislator,25430,1130451,33 +8510,Young Woman from Disco,11654,37042,9 +8511,Telephone Operator,28295,84330,17 +8512,Anthony 'Tony' Cortino,9835,12217,0 +8513,Blaine Bingham,26798,20006,2 +8514,Lajjo Kapur's Sister,4254,35762,11 +8515,,47596,40389,2 +8516,Hala's Baby,38509,120601,25 +8517,Betty Mahmoody,9585,35,0 +8518,Ray,1637,1192358,13 +8519,Sanka Coffie,864,12975,1 +8520,cyklisten,29224,1092642,18 +8521,proiezionista,11216,65314,19 +8522,Enright,1058,15215,5 +8523,White,16281,15074,15 +8524,Suzie - Locker Room Victim,47886,1693338,9 +8525,Man in Hotel Lobby (uncredited),9475,1235841,24 +8526,Minor Role (uncredited),2897,141129,271 +8527,Adm. Norman,29959,105366,4 +8528,Fatty,25538,555379,8 +8529,Himself,2300,180625,22 +8530,Le commissaire de police de Manosque,11876,16927,4 +8531,Mr. Ramsey,34106,33278,9 +8532,The Kid,24746,104000,1 +8533,Rudi Kellerman - Safeguard,5257,1236171,5 +8534,Lance,24254,91445,35 +8535,Girl Entering Locker Room,26378,1437095,64 +8536,Esme Hoggett,9598,45586,12 +8537,Ann Craig,34084,111840,2 +8538,Anton Gogoladze,105763,48665,5 +8539,Ophelia,141489,160737,18 +8540,Stefan,314352,52105,6 +8541,Hospital Dancer,9716,1661617,74 +8542,Martinez - Vietnam,2604,48012,37 +8543,Kay,10491,37058,18 +8544,Hamish Campbell,197,2039,5 +8545,Myrna L'Hatsky,95627,4452,0 +8546,Ermine,13681,91726,10 +8547,Donovan's Washington Advisor,43342,14978,4 +8548,Horse Owner,30547,1507167,21 +8549,Col. Kern,37305,88649,5 +8550,(uncredited),269,1513491,29 +8551,Cop in Precinct,11001,1672657,31 +8552,Masae's mother,3780,1032664,40 +8553,John Stark,19176,32597,2 +8554,Luigi Vampa,11362,136152,8 +8555,,62463,1220202,24 +8556,Lady Kong,31947,207309,7 +8557,Evy,18620,1804392,3 +8558,Temple,13685,1117325,11 +8559,Grebs / Drunk Scout / Additional Voices (voice),8916,4251,7 +8560,Boyd,20242,160598,10 +8561,Emer Trueba,2259,123208,11 +8562,Esposito,11302,941548,4 +8563,Catalina,2441,24976,2 +8564,Roebling,11232,240629,12 +8565,The Manager,38043,45839,7 +8566,Pvt. Cellini,35284,3753,9 +8567,Helene Hanff,15677,10774,0 +8568,Oliver Rose,249,3392,1 +8569,Lou,638,9302,22 +8570,Heikichi,3780,96804,19 +8571,Lord Byron,229,2927,5 +8572,Ranger Tony,2757,29862,9 +8573,Anna Smith,41160,1698438,23 +8574,Suzie,17692,1296376,18 +8575,Annie,10207,56358,16 +8576,Mona Plash,43316,105571,9 +8577,Le Chirurgien du Vol,36797,27530,7 +8578,Dr. Bettes,2898,1524,9 +8579,Rachel Powell,167,1980,2 +8580,Slaughter House Man,5917,160598,37 +8581,Smokey (voice),10137,9046,11 +8582,Frank,9593,40176,2 +8583,Queen (voice),8916,10774,2 +8584,O'Doole,379,5173,10 +8585,Louis,2291,1004,2 +8586,Georgia (uncredited),15,128873,58 +8587,Herr Leer,278978,3934,9 +8588,Shorty,31618,4251,4 +8589,Aunt Ruby,35696,15899,11 +8590,Major Muller,409,920,8 +8591,Young Duddits,6171,48465,11 +8592,Huddelston,11185,171242,14 +8593,Salesman,22023,1577162,25 +8594,Carl Miller,13333,131170,8 +8595,Thylo,32595,187073,6 +8596,April Thomas,25969,3711,12 +8597,Graf Told,5998,73,3 +8598,Man Ordered Out of Train Compartment by Captain (uncredited),22292,119542,10 +8599,Robber,9602,2231,8 +8600,Richard Judd,12618,19152,10 +8601,Extra (uncredited),2897,1422434,87 +8602,Shopkeeper,4338,4971,8 +8603,Charlie,9396,57593,3 +8604,Mr. Mohan,29698,135049,18 +8605,Chi Fu (voice),10674,20904,12 +8606,Tigger,81310,77548,3 +8607,Adolf Hitler (uncredited),15,1431719,96 +8608,Dreverhaven,17139,13514,0 +8609,Boy in Restaurant,79593,1224995,19 +8610,Little Tree,62394,24525,0 +8611,Albert Freedman,11450,5587,5 +8612,Dr. Francis B. Gröss,12237,70075,0 +8613,Niels,102,1019,2 +8614,Moll (uncredited),12311,80648,52 +8615,Victorian Girl,12186,1219380,10 +8616,Dr. Corey (uncredited),15,1235592,128 +8617,Ortisha,251,3419,8 +8618,Dan Stokely,42218,16035,1 +8619,Ah-Di,25538,555375,5 +8620,Marjorie Kinnan Rawlings,115332,2453,0 +8621,Gen. Diefenbach,23518,86347,16 +8622,Nurse,635,42335,11 +8623,Sparks,2160,32494,16 +8624,Otto Meyer,11576,40178,10 +8625,Skunk,21132,87131,3 +8626,Deputy Nate Booker,10871,15854,9 +8627,Molly,13562,80238,5 +8628,Barfly,43828,1276434,33 +8629,Bank Guard,949,166543,38 +8630,Rick Sandford,25969,19210,7 +8631,Bridesmaid #1,2613,164077,14 +8632,Bathroom Girl,2105,61219,32 +8633,Sanders,10534,6752,12 +8634,Movie Theater Patron,9296,94561,68 +8635,Hillary Whitney Essex,15592,10767,1 +8636,Governor Jessman,39939,44935,13 +8637,Cop #2,3595,1811958,24 +8638,Prue (Prudence),17044,58016,2 +8639,Raider,46924,2220,8 +8640,Zinka,20992,119214,7 +8641,Sesemann,28345,12022,9 +8642,Darlene Carruthers,11361,1107034,15 +8643,Princess Domitilla,11035,67881,2 +8644,Fundraiser Demo-Tape Man,9776,61011,25 +8645,Real Topeka Kid,786,1656019,41 +8646,Chisolm Newspaper Publisher,2323,40233,22 +8647,Ana Alonzo,253632,25256,0 +8648,Arlene Russell,32043,4604,8 +8649,Joe Harrison,25430,139610,20 +8650,Inspector Marvin,623,27334,11 +8651,Himself (uncredited),2757,6949,23 +8652,Scientist,18,213392,83 +8653,Chet,28387,7036,3 +8654,Stryker Soldier #1,36658,77222,28 +8655,Student at school,24254,91448,40 +8656,Smythe,78256,78940,4 +8657,,21736,239171,4 +8658,Marsha,25673,1696429,15 +8659,Caitlin Greene,10727,66745,1 +8660,Priest,9296,1193099,55 +8661,Simon,11980,7036,3 +8662,Shepard,10344,61167,4 +8663,Waitress,14295,169263,18 +8664,Mike Anderson,23223,108717,3 +8665,An Old Steward,2984,13848,4 +8666,Cheri,3172,31715,7 +8667,Freddy,9613,76417,9 +8668,Le curé de la Treille,12716,24383,11 +8669,Party Guest,25430,179327,45 +8670,Wayne Burns,10409,214979,12 +8671,Jessica Yang Jian Wa,38955,1620,0 +8672,Loretta,858,1212453,21 +8673,Mrs. Dare,25934,106995,5 +8674,Michael J. 'Crocodile' Dundee,9396,57147,0 +8675,Stephen Altman,4547,5274,7 +8676,Dewayne,13408,75638,4 +8677,Jean's Father,28974,132322,4 +8678,Rob,703,10555,2 +8679,Robidoux,11943,4974,9 +8680,Buzz,85160,1432461,3 +8681,First Bride,11159,993240,18 +8682,Himself,115810,165818,1 +8683,Valerie Sonnenschein,17771,49971,11 +8684,Joe Kane,18133,4138,3 +8685,Denise,220976,8900,2 +8686,Driver run off highway,11576,388960,48 +8687,Toshio Watanabe,2990,10134,3 +8688,Shirley Hastings,10409,65011,4 +8689,PJ,13411,18471,2 +8690,Martin J. Daylor,33668,2646,8 +8691,Kruger,12506,137924,6 +8692,Linda's Brother,24584,1621641,12 +8693,,124633,1753360,11 +8694,Jonathan Cross,11535,21594,0 +8695,Clear Rivers,9358,17303,0 +8696,Roger,2034,349,2 +8697,General Vladimirov,10724,9927,6 +8698,Alžbětka,18939,83954,4 +8699,Quartet,6038,1580043,45 +8700,Jill McGowan,12122,57166,2 +8701,Raymond,15943,14671,5 +8702,Stella,17044,2462,0 +8703,Rear Admiral Tamon Yamaguchi,11422,10133,12 +8704,Detective,60082,56902,2 +8705,Captain Buckholz,10724,66811,2 +8706,A Journalist (uncredited),269,34613,16 +8707,Fritz' Old Lady,14683,1374479,2 +8708,Heckler #2,38509,120600,24 +8709,Lilliana Methol,7305,7796,8 +8710,Jack Kelcher,10013,18666,10 +8711,Miss Jamaica / Chickie,19157,1665708,17 +8712,Amanda Sloan,24126,174680,9 +8713,Bobby Kopas,26173,68681,4 +8714,Hauptmann Otto Baumann,15873,32019,12 +8715,Platoon,105763,1164500,7 +8716,Reporter,117,987357,29 +8717,Mrs. Mellon,23114,87699,14 +8718,Walt Clayton,32031,2454,6 +8719,Burglar,1924,38651,57 +8720,Desmond Fairchild,22279,5475,9 +8721,James Clayton,1647,72466,1 +8722,Auntie Wu,146,1268919,7 +8723,Spiro,18683,1889111,30 +8724,Joe (voice),9023,175511,7 +8725,Big John Stanley,30709,79742,8 +8726,,20645,554883,25 +8727,Dennis Denuto,13852,75892,7 +8728,Bobby,14612,1163673,7 +8729,Mr. Sandor (the slob),123047,1924,8 +8730,Prather / Pirate / Bandit,10134,1812178,12 +8731,Barry,11374,1539,29 +8732,Scavenger,29698,135054,23 +8733,Cairo Child,26954,554045,13 +8734,Camilla / Lew Zealand / Floyd / Bear / Chicken / Crazy Harry / Dog / Dr. Julias Strangepork / Granny / Penguin / Pops / The Count (voice),11899,68455,5 +8735,Lloyd the Bartender,694,592,6 +8736,Morticia Addams,2758,5657,1 +8737,Extra (uncredited),2897,1317628,150 +8738,The Boy - Sir Humphrey's Gang,31995,552413,20 +8739,Garrity,857,141358,20 +8740,Reverend Spellgood,11120,109470,5 +8741,"Lt. Griff, USN",29959,105367,5 +8742,Carol Brady,9066,56881,0 +8743,Nora Evers,4993,40445,4 +8744,Pa Tex,31586,707,6 +8745,Maa the Very Old Ewe (voice),9598,35109,4 +8746,(uncredited),99,1115494,25 +8747,Amy,11449,106054,6 +8748,Police Officer 5,16235,80158,24 +8749,Suicide,10925,179625,10 +8750,Steven's father,9894,18364,4 +8751,Dr. Hamilton,10796,67519,16 +8752,Tammy Metzler,9451,58032,3 +8753,Daisy,11337,69055,2 +8754,Claude Matine,57575,97279,6 +8755,Adrien,78568,33161,2 +8756,Taxi Driver,15321,585959,5 +8757,Robert Bruce Sr.,197,2481,22 +8758,Houdini's Assistant,29911,72100,4 +8759,David,114719,8540,0 +8760,Jodi Kirkpatrick,11859,170954,5 +8761,"Steve ""V""",638,1771,26 +8762,Mrs. Williamson,26378,21878,20 +8763,Jacques Lafleur,8989,20277,5 +8764,Jazz Combo Member,28577,153697,21 +8765,Kelly,31342,2205,10 +8766,Wedding Musician,5991,591198,9 +8767,Diana,5,3123,8 +8768,Detective,10400,174952,48 +8769,la femme de ménage,78256,583455,9 +8770,Ursa,1924,31364,16 +8771,Tina,15489,2230,4 +8772,Anne Marie (as Lynne Ramsay Jnr.),29698,135036,4 +8773,Aura,24825,161641,4 +8774,Secretary (uncredited),15,1271205,131 +8775,Marvin - Yellow Team,17971,194597,6 +8776,Osugi,3780,131203,3 +8777,,76996,8329,4 +8778,Amy,28387,68495,18 +8779,Sarah,28774,103874,4 +8780,Nurse Benson,14698,153230,7 +8781,Editor,25430,535498,29 +8782,Tante Élise,5967,46935,3 +8783,Chachka,32227,45392,7 +8784,Extra (uncredited),2897,1142516,123 +8785,Miss Wuman (as Malalene),12481,1084494,3 +8786,Professor Tanabe,1678,235382,4 +8787,Daddy Topps,12144,109761,7 +8788,,186705,364611,6 +8789,Sahara,29825,20751,4 +8790,Ralph,2897,6599,3 +8791,Gun Salesman,8844,1379424,19 +8792,Girl,51802,1472515,17 +8793,Usher (uncredited),703,1407717,47 +8794,Cpl. Lonnie Reece,12528,10430,2 +8795,Cheerleader in Front of School,11397,1773770,32 +8796,Liz Pickering,60285,20604,2 +8797,Gentry,476,1736,6 +8798,La Colombiana,13369,6588,4 +8799,Bud Davis,17496,8891,0 +8800,Monk,10849,1004,2 +8801,Chang Sing #6,6978,16580,24 +8802,Katherine Gilhooley McLintock,15263,70035,1 +8803,Meg Smith,27993,5888,9 +8804,Racki,17465,1350874,11 +8805,Elena adulta,11216,1959,15 +8806,Alice the Waitress,2757,20750,13 +8807,Xu Youqing,31439,1789268,11 +8808,Rebecca,12154,8985,4 +8809,Earthworm (voice),10539,11207,7 +8810,Shorty,38732,4073,8 +8811,Kamante,606,10650,5 +8812,Mimi Prager,10862,57395,3 +8813,Easy Gary,320011,7268,2 +8814,Professor A.F. Chatman,12684,102891,7 +8815,Elmer - Bartender (uncredited),15263,34168,19 +8816,"Mario, le serveur",17350,1158103,10 +8817,Jack Schnittman,10466,33489,7 +8818,Pianist,9716,1661594,54 +8819,Col. Tom Rossiter,60285,12149,1 +8820,Alec Ramsay's Mother,24883,8437,4 +8821,Bucky the Squirrel,11688,78317,13 +8822,Chen Ching Hua,9462,57723,1 +8823,Dr. Mona Zimmer,11692,7796,10 +8824,Eddie Keats,36915,130129,11 +8825,Anjan,109472,128709,1 +8826,Maerose Prizzi,2075,5657,4 +8827,District Attorney (uncredited),117,10224,49 +8828,Pharmacist's wife / Cinema spectator,11035,44421,5 +8829,Al,10154,47774,10 +8830,Science Teacher,25969,167146,5 +8831,Brad Montroe,17168,6106,4 +8832,"Dick Ennis (war correspondent, International Press)",35284,10158,0 +8833,Helen Miles Singer,9716,1661654,112 +8834,Friend / Musician,14242,84924,1 +8835,Hospital Dancer,9716,1661612,70 +8836,Ciel,3682,33655,8 +8837,Night Manager,10866,552466,11 +8838,Partygoer,12102,51546,16 +8839,Michael Simmons,51955,57686,9 +8840,Professor Egon Kreisler,75641,18216,2 +8841,Scientist Lockland,9827,1217809,7 +8842,Goheiji,3780,106165,11 +8843,Paulie Romano,17708,36602,3 +8844,"Dimitri, the Crippled Ex-Cop from the Local Cafe",47144,54187,3 +8845,Bernardo O'Reilly,966,4960,3 +8846,Lamar Latrell,14052,67893,5 +8847,Ronnie,11899,729,7 +8848,Townsman (uncredited),11697,975598,40 +8849,Tiger,4978,6844,1 +8850,Bess,167,1987,11 +8851,Seiji Ayabe,11645,30470,16 +8852,Mike,153141,1669,2 +8853,Jane Burnham,14,2155,2 +8854,Herself,11458,1215492,11 +8855,Dolores Gomez,18692,233128,2 +8856,Claire,55420,1168285,22 +8857,Roadblock Cop,12476,1195675,19 +8858,The Pharaoh,15849,1313120,9 +8859,Freddy,49688,590992,3 +8860,Patti Steffen,210092,230946,2 +8861,Gambler (uncredited),11697,32434,50 +8862,Mustafa's Girl,11902,1049337,32 +8863,"McCrea, Albatross Crewman",10534,47879,2 +8864,Dr. Phillips (uncredited),21734,247639,18 +8865,Johnny,15239,218520,18 +8866,Brian McCaffrey,2924,13021,1 +8867,Bartender (uncredited),2898,182194,52 +8868,Marvin,9819,380,3 +8869,Angèle,499,7568,2 +8870,Bob Spangler,47942,18643,3 +8871,Irene Reed,858,4432,17 +8872,Chris Flynn,9902,6365,0 +8873,Per,34582,1560202,5 +8874,Ivan Dren,11902,70876,3 +8875,E-1,1687,12692,7 +8876,Extra (uncredited),2897,1400041,202 +8877,Sweater Friend,8467,1853221,65 +8878,Michael,9475,80991,19 +8879,Doreen Gilmore,23967,93928,9 +8880,Colonel Lucas,28,3,7 +8881,Lumsden,9905,1739324,9 +8882,Bob Andrews,12499,21089,5 +8883,Tim Whalen,41963,2879,0 +8884,Bert Rogers,415072,30303,7 +8885,Gloria,26299,98241,10 +8886,Bill,1793,2628,9 +8887,Conrad Hunter,29786,44998,6 +8888,Nick Colton,31671,4960,0 +8889,Jiro Masatora Ichimonji,11645,70133,1 +8890,Barry Neiman,6171,114894,16 +8891,Kennedy,11873,1265392,7 +8892,Tatsu (voice),1498,81381,13 +8893,Janez,11902,1052312,14 +8894,Armoured Guard,949,237923,51 +8895,John Manly,14522,20070,3 +8896,Amanda Becker,11397,22082,5 +8897,Journalist at Orly,269,1117359,13 +8898,Jeanette,18683,68046,8 +8899,Benjie,41357,937333,3 +8900,Chief Steward,12129,13821,9 +8901,Mr. Garter,10929,67520,5 +8902,Gas Station Manager,10866,7473,14 +8903,Patient - VA Hospital,2604,159948,51 +8904,Captain Fred Hamill,857,12836,13 +8905,Cole Thornton,6644,4165,0 +8906,Walter Harris,15239,555070,9 +8907,Doctor,39176,59759,14 +8908,Lupo,2140,21942,3 +8909,Luke Harrison,9441,228,2 +8910,Suzanne Kovic,2604,140234,19 +8911,Dr. J. S. Hirsch,814,14465,3 +8912,Professor George Hacker,30875,234297,0 +8913,George Shearer,76397,61150,2 +8914,Jean,16938,1724909,19 +8915,Allie Fox,11120,3,0 +8916,Soldier Who Gets Slapped,11202,163280,28 +8917,Manuel,43316,56924,13 +8918,,28171,1875120,7 +8919,Vallesecca,9403,14784,17 +8920,Nazi,525,122125,42 +8921,Himself,2300,193304,17 +8922,Dr. Zymansky,76411,8875,5 +8923,"Tom Marlowe, Helicopter Pilot",6068,144165,10 +8924,Frank Vitale,10154,3085,1 +8925,Pandora,11979,26054,6 +8926,Tommy Hacker,30875,102013,3 +8927,Morales,32093,144395,40 +8928,Hooker,12764,136519,17 +8929,Joan Jellico,805,12027,10 +8930,Concert Technician #2,9296,1744174,51 +8931,Rita,27346,101609,2 +8932,Burton Mercer,525,7180,16 +8933,Julie,11635,1244362,12 +8934,Ole Pa,33364,35849,3 +8935,Theater Manager,38950,7178,6 +8936,Cyprion's Man,46924,17290,30 +8937,Craig,12454,72315,15 +8938,FBI SWAT Team #3,3595,1372092,36 +8939,Nurse Bibs,655,1482976,8 +8940,Geoffrey Fisher,29787,59872,1 +8941,Mr. Thorsen,10647,1087649,8 +8942,Stef,29698,135044,12 +8943,Spota,5922,88748,5 +8944,Princess 'Kida' Kidagakash (voice),10865,34985,12 +8945,Annie's Mother,2323,44850,10 +8946,Sean,197,1333583,31 +8947,Sam Tate,54287,52043,12 +8948,Amy Finch,9406,31171,3 +8949,Lord Summerisle,16307,113,1 +8950,Dellwo,2100,3137,5 +8951,Gatlin,11185,168320,12 +8952,Man in White Suit's Mistress,11830,554576,13 +8953,Petrovich's Heavy,11535,129419,69 +8954,Lucinda,400,826,7 +8955,Female D.J.,15144,1598393,21 +8956,Fishmonger's daughter,13889,1484349,18 +8957,Peterson,10863,1203248,10 +8958,Comedian,1578,1498313,12 +8959,Maj-Britt 'Majsan' Lindberg,16026,79060,4 +8960,Don Wanderley / David Wanderley,24634,62893,4 +8961,Mrs. Fields,11307,5698,5 +8962,Professor Matthew Norman,29239,3245,11 +8963,TV station manager,28466,134528,8 +8964,Newsboy,36489,1263061,12 +8965,Bowtie Driver,117,1277,10 +8966,Brock / James / Squirtle,10991,67833,3 +8967,Belle Starr,65134,1204882,2 +8968,Gambler (uncredited),289,40519,96 +8969,'Blue Lou' Marini,525,7208,11 +8970,Jailor,91076,1069,7 +8971,Sara Moyer,11442,69616,3 +8972,Audience Man,1497,64856,25 +8973,Peeing Man's Friend,8467,1853186,44 +8974,Barbara - Joannas sister,79782,105562,3 +8975,Philip Tattaglia,238,3413,22 +8976,Tricia Jones,2293,23647,10 +8977,Klaus,9589,1728632,5 +8978,"George Willis, Sr.",9475,170921,20 +8979,Katie Grinnel,1999,1989,7 +8980,Guy #1,105,3038,34 +8981,CIA Agent,12704,747,10 +8982,Julian,46924,2440,11 +8983,Rémi,102461,5442,1 +8984,Arnold Beckoff,8463,7420,0 +8985,Moving Man #1,4011,152727,18 +8986,Storyteller,415072,90333,4 +8987,Jesse,1634,18259,0 +8988,Lester Stempel,11450,67786,21 +8989,Brett,13411,17305,12 +8990,Group Capt. Lionel Mandrake / President Merkin Muffley / Dr. Strangelove,935,12446,0 +8991,Nick Snyderburn,24828,10671,2 +8992,Raaz,24453,11852,8 +8993,Ted,10440,21278,3 +8994,Rene Crain,11618,552095,15 +8995,Dr. Lanyon,3028,29712,4 +8996,Widow Tweed (voice),10948,7520,5 +8997,Dean Phillip Elias,20704,1211,3 +8998,Col. William Ludlow,4476,4173,1 +8999,Aron Burger,28597,22053,8 +9000,Baseball Fan at Fenway Park (uncredited),2323,1892,27 +9001,Mrs. Bennett,17464,81898,5 +9002,Gordon Hocheiser,42569,18364,0 +9003,Raffi,16351,60089,4 +9004,Sunny Ventura,27526,21544,30 +9005,Bridegroom at Firefly's Reception (uncredited),3063,88462,30 +9006,Lady Mary Lasenby,53761,8629,4 +9007,,47596,119864,6 +9008,Takaori Osumi,1813,77155,35 +9009,Orn 'Daddy' Skinner,71067,1262680,4 +9010,Jenny (age 8),47329,30367,11 +9011,Charlotte,23668,2230,5 +9012,Wilson,857,1342659,24 +9013,Stain,18282,64120,12 +9014,First Bride's Father,11159,25656,19 +9015,Police Officer,6951,207667,9 +9016,Woman at audition,70199,558098,9 +9017,Second Officer,488,6610,5 +9018,Layla Maloney,9032,16484,1 +9019,Joe Russo,2321,99825,16 +9020,Vivian Sinott,24645,92110,5 +9021,Snuffy,37917,89141,7 +9022,Hotel Desk Clerk,11622,166617,11 +9023,Luanne LeSeur / Prunella Pegula,9438,6473,1 +9024,Goon,46029,84605,10 +9025,Al Stephenson,887,13576,0 +9026,Club Member,2897,52220,47 +9027,Fulvio Nesstra,29076,17485,2 +9028,Frank McCarthy,11601,14721,3 +9029,Mrs. Partridge,3587,33614,8 +9030,Victor Swayle,88818,104795,5 +9031,Doctor Hamilton,17203,31923,15 +9032,Townswoman (uncredited),11697,135394,42 +9033,Motorist,2135,21882,5 +9034,Policeman,9427,1198660,22 +9035,Ebb,19855,155,9 +9036,Emilio Largo,660,9920,2 +9037,Humanoid,29343,101608,17 +9038,Chowler,11535,55437,47 +9039,David Lewis,3033,29792,4 +9040,Mark,2323,23881,4 +9041,Wart (voice),9078,159552,4 +9042,Regina Rich,11011,4003,3 +9043,Young Instructor,1647,201733,17 +9044,Roy,10395,11076,7 +9045,Conway Twill,922,7486,4 +9046,Countess,2984,1887360,18 +9047,Virgil Leach,22213,5950,4 +9048,Mr. Randall,36797,2886,9 +9049,Ken,327,1091315,2 +9050,Aughra (voice),11639,8226,8 +9051,Ninja Instructor,24825,105047,18 +9052,Gordon,54405,994,8 +9053,Ahmad,4986,40464,10 +9054,Foot soldier,11645,4990,23 +9055,Tony,11011,952664,4 +9056,Ginny Baker,15144,21525,8 +9057,Bear Claw,11943,70990,1 +9058,Babe Jenson,31498,35849,2 +9059,NASA Engineer (uncredited),5551,1584544,16 +9060,Chuck Farrell,30379,56348,9 +9061,Mike,4478,159382,23 +9062,Party Guest,25430,1208020,18 +9063,Messenger,19403,84655,9 +9064,Maj. Gen. Henry Kinnard,10590,41745,26 +9065,Major Clary,20424,1482896,17 +9066,Francis,109479,49735,2 +9067,Country Club Keith,2640,151335,15 +9068,Dr. Philip Spires,27150,76019,2 +9069,Mrs Butterworth,11257,1222036,18 +9070,Virgil 'Der Türke' Sollozzo,238,3091,8 +9071,Choji's Mother,3780,110300,31 +9072,Ieyasu Tokugawa,11953,19049,8 +9073,Vice-Principal Ron Bell,9451,19208,10 +9074,Major Motion Picture Director,9591,16294,21 +9075,Roger,27526,72861,8 +9076,Carol,21626,1513189,4 +9077,Bus Driver,15144,1717652,33 +9078,Additional Bus Passenger #7,1637,168881,47 +9079,Vanessa,5333,43629,6 +9080,Diner Gawker,8467,1824208,38 +9081,Stash,161495,69415,6 +9082,6th Elder,1924,1231170,21 +9083,Michael 'Mike' Mundy,5332,42835,8 +9084,Barbara,1813,33656,17 +9085,Vivian Orkin,11337,82487,7 +9086,Dr. Ernest McNab,40095,7333,3 +9087,Bella (voice),29204,9259,1 +9088,Weather Lady,9877,1176955,19 +9089,Bruno,13346,112300,5 +9090,The Warrior,90762,225707,7 +9091,Cowgirl,9827,44149,24 +9092,Phyllis Saroka,29649,24203,0 +9093,Pvt. Mitchell,11589,78088,17 +9094,Troy,11622,21290,5 +9095,Man On Boat,33172,184400,6 +9096,Janice Cory,43342,117722,2 +9097,Boy in Class,46989,236052,10 +9098,Leo Wiggins,20443,3223,1 +9099,Nady Simmons,10134,63933,1 +9100,James Nutter,28047,24516,3 +9101,Baseball Fan at Fenway Park (uncredited),2323,880,26 +9102,"Tony, Renda Goon",40490,1005,8 +9103,Seth Devlin,141,20095,23 +9104,Captain Soames,11428,2372,5 +9105,Christy Miller,31921,13023,6 +9106,Danny,9059,166406,13 +9107,George,5279,20766,12 +9108,Natasha Grimaud,32074,37607,6 +9109,Young Pete,6171,48464,10 +9110,Extra (uncredited),539,183856,17 +9111,Congratulating Spectator,11873,1265397,19 +9112,Sonny,41852,18181,6 +9113,Statehood Council Member (uncredited),11697,1353645,64 +9114,Lt. Lothar Zogg,935,15152,6 +9115,Huong,34899,113393,7 +9116,Naughty nurse,9404,1366125,11 +9117,Tricard,11915,39143,3 +9118,Quint,95627,10985,8 +9119,Bandleader,1574,17637,5 +9120,Lester Wallace,10611,65827,8 +9121,Peter Pratman,92769,53596,2 +9122,Una Alconbury,634,9139,10 +9123,Cafe Patron,76,1265413,13 +9124,Monique,26180,1576540,15 +9125,Cafe Patron,76,1265422,23 +9126,Mr. Carrott,10708,214108,35 +9127,Amy,524,7423,17 +9128,Eddy,11361,63484,17 +9129,Mrs. Honeychurch,11257,96408,12 +9130,Robin Hood (voice),11886,70843,0 +9131,Adam Stanton,25430,82676,5 +9132,Car-Driver (uncredited),15,1466158,95 +9133,'I's Sister,12516,550559,12 +9134,Judy,33367,84870,6 +9135,Judge,638,7140,10 +9136,Ed Finney,10351,11769,13 +9137,Joseph,814,1660159,32 +9138,Peggy,26378,95295,5 +9139,Patient with Checkers,24679,175871,14 +9140,Old Priest,10047,140452,17 +9141,Senator,25430,103911,35 +9142,Mahood,70581,83769,4 +9143,Maria,6644,50973,10 +9144,Sherman Krader,18935,17580,2 +9145,Villager of Tullymore,10162,1609646,22 +9146,Jessie Burlingame,9902,13446,1 +9147,Chinese Barber,31586,16580,21 +9148,Gloria,10303,11318,11 +9149,Mrs. Taft (uncredited),578,16224,20 +9150,Deputy Proctor,5917,114232,46 +9151,Peregrin 'Pippin' Took,120,1329,10 +9152,Mullens,709,40598,21 +9153,3rd Hood,1924,1681440,61 +9154,Jimmy,678,10161,4 +9155,Young Arlis,18551,19870,6 +9156,Bill Keeshan,33172,27145,8 +9157,Valet Manager,9296,1600113,35 +9158,Blumentritt's Adjutant (uncredited),9289,51173,13 +9159,Magistrate,623,1439728,20 +9160,Huw Morgan,43266,7505,2 +9161,Arty,27224,1215346,4 +9162,Frank / Cornall Crawford,29739,1811,2 +9163,Alexandra Amberson,10351,64932,1 +9164,Diva's Manager,18,1768180,57 +9165,Beth Wade,9087,42133,9 +9166,Kitamura,13889,1200399,20 +9167,Timmy,2604,11805,12 +9168,Howard Baker,15144,29719,9 +9169,Organizer,31306,1484155,13 +9170,Philip Truscott,43143,105369,3 +9171,Car Wash Patron,22023,1465721,45 +9172,Maggie,10050,8691,4 +9173,,68545,11278,1 +9174,Kate,44233,36216,4 +9175,Debra,13531,17346,4 +9176,Extra (uncredited),2897,1315621,114 +9177,Bryce,1995,1284,3 +9178,Headwaiter at Rick's (uncredited),289,94401,47 +9179,Ben Doyle,22317,9777,3 +9180,Semmi / Extremely Ugly Girl / Morris / Reverend Brown,9602,44994,1 +9181,Billie Burke,43277,13577,1 +9182,Florista #1,18736,226385,46 +9183,Grusinskaya,33680,19549,0 +9184,Doctor Sanderson,11385,94070,8 +9185,Sararîman,11830,554577,16 +9186,John Schmidt,33016,53088,3 +9187,Woman at Jazz Club,38775,121347,15 +9188,Mario,287305,4922,9 +9189,Mario Rodrigues,121940,9211,1 +9190,Hesh,30547,84978,45 +9191,Kevin,53150,147592,1 +9192,Andrea,16643,65756,4 +9193,Ben Weatherstaff,11236,141521,7 +9194,Brandy de la Court,11385,26166,6 +9195,Cole Younger,13496,1894,1 +9196,Nurse,39176,591880,12 +9197,,90762,1345466,12 +9198,Man in Crowd,17692,139360,30 +9199,Gen. Decker,11008,8354,17 +9200,Nurse Patsey,11361,161408,10 +9201,Natalia,10724,1220923,12 +9202,the toastmaster,24005,34008,11 +9203,"Jonny, Age 8",32872,1720978,22 +9204,Maggs,12311,2782,20 +9205,Colleen 'Miss Birdie' Birdsong,11975,7663,13 +9206,"Woman ""Unwrapped"" at Party",28974,121323,8 +9207,Cynthia Topping,11374,14,5 +9208,David Kessler,814,14463,0 +9209,Nancy Stewart,30175,29791,4 +9210,Jackie Curtie,1578,1422613,24 +9211,Alice Angel,50001,85900,8 +9212,Mocha,13411,32907,10 +9213,elle-même,64567,44233,13 +9214,Donald Ross,42453,158837,4 +9215,Soldier,11415,152977,18 +9216,Countess Rostov,11706,752320,14 +9217,,47596,19511,4 +9218,Navigator,11859,6908,12 +9219,Carl Alphonse,11017,11519,7 +9220,Monsieur D'Arque (voice),10020,65598,14 +9221,Sanders,3085,22093,14 +9222,Bus Driver,12129,1008513,14 +9223,Mistress Moira,10050,28639,11 +9224,Father Vito Cornelius,18,65,2 +9225,Rosco Bigger - Fang,36929,74036,1 +9226,Minister (uncredited),3063,98047,22 +9227,Tarzan / John Clayton,38618,27763,0 +9228,Minerva,32332,14702,5 +9229,Dougie,18683,82712,7 +9230,Camille McCloud,31503,2857,6 +9231,Little Girl,134368,1098670,7 +9232,Fred Bush,21118,10486,7 +9233,Pedro Algorta,7305,1872744,27 +9234,Firing Range Instructor,1647,27586,41 +9235,Japhets Frau,2525,25786,17 +9236,Cindy Johnson,55731,13446,3 +9237,Nickie Haroyen,25862,2746,6 +9238,Minor Role (uncredited),2897,1159361,260 +9239,Wendy Balsam,9464,2165,4 +9240,Commander,201,1341996,17 +9241,Delbert Birdsong,11975,37823,24 +9242,Reporter (uncredited),15,1178520,63 +9243,Nat Griffin,2637,27687,15 +9244,Duane Gage,129628,883,10 +9245,Jiazhen,31439,643,1 +9246,Ducky,1811,1894,14 +9247,Ben,90414,19505,1 +9248,Claire Norman,13550,74636,1 +9249,Harriet,32872,17488,5 +9250,Kharis,31498,14970,6 +9251,Rawhide,11379,6574,11 +9252,Hendy,26958,36821,5 +9253,Amanda Lemmon / Alyssa Callaway,33689,67849,3 +9254,Russian Dancer,14811,134308,30 +9255,Loni Packwood,13496,177905,13 +9256,Copper (voice),10948,6856,1 +9257,"Jimmy, Anesthesiologist",795,111454,14 +9258,Hunter,12528,33017,10 +9259,Bill Dudley,30709,58423,7 +9260,Littlefoot's Mother,12144,4160,5 +9261,Anne,37718,157673,8 +9262,Roger Callaway,33689,26472,1 +9263,Man Singing at Inquirer Party (uncredited),15,231219,55 +9264,Tiny Alice,39771,91842,8 +9265,Mrs. Gladys Dalton,10440,19783,13 +9266,Cindy Campbell,4248,1772,0 +9267,Smiler Grogan,11576,34745,44 +9268,Cop in Diner,23730,21105,17 +9269,Mucama,26165,1036782,12 +9270,Lloyd,22477,5251,4 +9271,Dave,44932,14562,7 +9272,King Claudius,10549,937,1 +9273,Father Ted,14534,19468,16 +9274,Wanda,15239,555066,2 +9275,Sunny Boyd,505,6913,1 +9276,Woman with cat,11159,7320,47 +9277,Kevin 'O-Dog',9516,18291,1 +9278,Sarah Renell,9717,1796,2 +9279,Kornilov,8665,55583,10 +9280,Lily Langford,4993,40056,2 +9281,Frank Ridgeway,21721,13022,0 +9282,Raymond Alden,10395,290,1 +9283,Man #2,26958,102640,9 +9284,General (voice),11639,184970,11 +9285,Linda,125548,2111,8 +9286,Thieving Waitress (uncredited),3309,91655,24 +9287,Waitress at Diner,26180,1235524,17 +9288,Katy's Date (uncredited),21468,40001,16 +9289,Iori Izaka,11712,33764,3 +9290,Mr. Corman,9358,41436,14 +9291,Colonel James Braddock,12764,51576,0 +9292,Principal Walker,29355,14669,18 +9293,Duke,1375,16504,7 +9294,Jen Yu (Mandarin) / Jiao Long (English),146,1339,2 +9295,Emma Russell,10003,1951,1 +9296,Ash / Voice Dispatch (voice),13225,52699,16 +9297,Ellen Brody,580,8607,0 +9298,Natasha,634,6368,8 +9299,Jack Hanaway,215373,5724,0 +9300,Cop with Bullhorn,379,1281539,37 +9301,Second Gambler,30547,1507175,32 +9302,Carl Fisher,11800,3150,3 +9303,Fermo,552,7544,5 +9304,Cable Boy's Mother,9894,3138,15 +9305,Frank Rittenhauer,11381,17646,7 +9306,Tom,23114,103622,9 +9307,Mercillat,27145,28255,11 +9308,Crystal,125548,1765924,11 +9309,Milton Baines,105,94500,23 +9310,Emily Hacker,30875,107205,1 +9311,Prison Guard,1369,61232,17 +9312,"Beverly Barish, aka Beverly Burns",11381,37995,3 +9313,Elderly Lady,8467,116727,19 +9314,Gang Member,1448,17260,6 +9315,Townsman at Carnival (uncredited),220,97999,25 +9316,Man (uncredited),34106,137405,95 +9317,Lupetta,10867,553181,12 +9318,Felix Perlman,29572,5048,8 +9319,Dancer,10603,1748112,31 +9320,"Erik, Ingemar's brother",8816,1778132,9 +9321,Narrator,12144,3798,4 +9322,Rob Gretton,2750,14887,1 +9323,Alderman,117,119230,16 +9324,Mrs Sidey,64398,347630,5 +9325,Lolita La Verne,50001,120783,6 +9326,Riley,9260,3905,0 +9327,Hans,229,2933,12 +9328,Byron Leibowitz,482,240772,11 +9329,Mr. Fabulous,525,122115,13 +9330,Pat Cappadora,30943,4515,1 +9331,Robin,15144,9995,24 +9332,Mabel,25872,42195,0 +9333,Pvt. Homer Lyle,11950,84399,17 +9334,Stanley Everett Cox,36094,380,1 +9335,Carpenter's Aide,31618,963962,15 +9336,Raman,14587,1840071,27 +9337,(uncredited),165,1435062,54 +9338,,21028,86711,10 +9339,Mystery Man (uncredited),678,954389,33 +9340,Richard Grahame,43438,97243,4 +9341,Dr. John Carpenter,18694,21457,0 +9342,Enzo's Mistress,27834,1769,12 +9343,Ginder,14587,158632,0 +9344,Newsreel Man (uncredited),15,1099216,25 +9345,Anne Stanton,25430,30296,2 +9346,Laurel Gray,17057,77081,1 +9347,Cathryn,10929,15007,2 +9348,Herbie Stempel,11450,1241,0 +9349,Dominic,70489,18472,1 +9350,M. Henry,52366,18558,16 +9351,Zee,29825,4169,10 +9352,Dutch Van Den Broeck,12618,3,0 +9353,Von Morton,22784,10939,3 +9354,Search Party,16938,126565,16 +9355,Harold McPherson,23518,10609,7 +9356,Homeless Lady,2625,162605,15 +9357,RAF Briefing Officer (uncredited),9289,10507,37 +9358,,10643,19048,7 +9359,Bargirl (uncredited),18642,148606,20 +9360,Steven Beck,14372,27811,0 +9361,Allison,32284,4491,1 +9362,Kyle,11186,39113,3 +9363,Bob Corby,36056,8731,2 +9364,Oomiak,42453,10134,3 +9365,Sushila Sen,118098,85672,3 +9366,Pam,15762,1485643,10 +9367,Wavey Prowse,6440,1231,1 +9368,Monsieur Rabour,36245,37137,4 +9369,Perfume saleswoman,11899,14670,20 +9370,Patrice,108,38170,7 +9371,Nurse Receptionist,2898,1400380,47 +9372,,38982,7399,5 +9373,Doctor,50512,40043,14 +9374,Jimmy,44800,133853,6 +9375,Ron Regent,121940,1818,3 +9376,Repelled Passerby,11001,1672683,49 +9377,Lord Andrew Lindsay,9443,53517,4 +9378,Shaina,9358,56825,11 +9379,Floyd Turner,115332,66645,6 +9380,Soldier (uncredited),18642,120048,19 +9381,Mr. McNish,43342,14455,12 +9382,Richard Geddes,9079,56930,4 +9383,Sam Watkins,30666,53552,9 +9384,Calico Jerry,10874,1705493,8 +9385,Sleeper terrorist,9882,109670,12 +9386,David,9102,1229549,6 +9387,Sara Wolfe,11377,17303,5 +9388,Orderly,11442,1500398,28 +9389,Dolly's Trainer,30547,1507166,20 +9390,,21866,1536857,13 +9391,Family Member,11234,1495418,13 +9392,Morris Fenderbaum,11950,20156,3 +9393,Father in Restaurant,79593,10488,38 +9394,Joe Bradshaw,18683,1369,6 +9395,Mulvaney,16124,64091,4 +9396,Billy Jack,21142,129482,0 +9397,Schiller,3036,19923,13 +9398,Judge,61563,65748,14 +9399,Minister,31618,158377,14 +9400,Anita Randazzo,3682,3136,1 +9401,Professor Marvel / The Wizard of Oz,630,9067,1 +9402,Barbara (uncredited),85837,123529,11 +9403,OutLoud Receptionist,15850,40680,7 +9404,Male Opera Singer,10436,1190702,7 +9405,Nobody,922,15439,1 +9406,Dulcie,14429,17303,4 +9407,Stumpy,14369,28638,4 +9408,Young Terry Prescott,14295,1516288,16 +9409,Aunt Loretta,220976,149447,6 +9410,,201724,725,6 +9411,Alice,788,1077865,22 +9412,Howard Swine - Swingers Party Host,28940,16168,31 +9413,Mississippi,6644,3085,2 +9414,Moses,12584,7077,11 +9415,Principal Janet Williams,26149,9780,1 +9416,Young Canadian Soldier,409,5940,38 +9417,Ratcliff,9593,13023,15 +9418,Jack Watson / David Watson,38965,80625,0 +9419,Howie,44800,76019,8 +9420,Sam,59181,228959,3 +9421,Médico Jefe,1902,25901,8 +9422,Waitress,26299,16047,8 +9423,,10400,1393349,54 +9424,Abigail,18691,40381,8 +9425,Lili,11472,149209,6 +9426,Tad Allagash,17170,2628,1 +9427,One Big Happy Family Member,32872,1720974,19 +9428,Nieuwslezer,58886,228609,18 +9429,Billy,13346,112306,13 +9430,Mr. Harkwright - Mine Operator,43832,141067,16 +9431,Strip Show MC,13555,1048530,17 +9432,,34899,128490,10 +9433,Football Player,1924,1681412,30 +9434,Judge Sklar,1813,79735,26 +9435,,9405,24591,4 +9436,Larry,88818,20899,7 +9437,"Рудольф (Родион) Петрович Рачков, телеоператор из Останкино, отец Александры",21028,87002,4 +9438,Chihuahua (voice),19042,101606,3 +9439,Kim Brandon,16820,10768,2 +9440,Prostitute,19200,8534,1 +9441,Balliol,197,10174,29 +9442,Michael Holzeck,161495,61962,2 +9443,Faith,9296,11008,8 +9444,Vet #2 - Democratic Convention,2604,555159,87 +9445,Cyprion's Man,46924,18616,29 +9446,Charles,2750,7321,10 +9447,Materson the Rat / Beth Bear (voice),11899,1856722,23 +9448,April O'Neal,1498,45041,0 +9449,Lothar Sticker,11907,70888,2 +9450,Dwayne Hoover,12479,62,0 +9451,Carmelo/Juan,2441,24980,7 +9452,Donna,9475,5503,3 +9453,Det. Roger Mortis,40095,4515,0 +9454,Wong Fei-Hung,11230,18897,0 +9455,Kat,20992,119210,3 +9456,Bates,18783,95943,8 +9457,Mr. Haddy,11120,33688,3 +9458,Wilbur (uncredited),105,1208039,50 +9459,Frances,112991,14061,0 +9460,Man at Madison Square Garden (uncredited),15,1208035,137 +9461,Captain Sholto Savory,83562,11282,5 +9462,Gertrude,10549,1666,2 +9463,Naomi Freed,44800,119113,4 +9464,Det. Arthur Brown,4986,37714,5 +9465,Lillian MacFarquhar,31342,10401,1 +9466,Miss Smith - Country Club Receptionist (uncredited),32600,30210,7 +9467,May Morrison,16307,206590,9 +9468,Sheriff,42149,52883,7 +9469,Jennie Adamson,15556,11084,2 +9470,Norman Thompson,51763,28248,2 +9471,Earl Barton Dancer,18691,1895804,11 +9472,L'inspecteur,64567,550110,24 +9473,Daphne Lang,1073,950877,14 +9474,Dr. Feldman,17168,43364,8 +9475,Billy Dawes,19108,1789031,6 +9476,Jaune-Tom (voice),32328,128621,1 +9477,Shere Khan (voice),14873,65598,5 +9478,Jay,40562,1893,1 +9479,Flamenco Dancer,12639,1126362,11 +9480,Mrs. Marshall,249,1219796,11 +9481,Karen Christence Dinesen Blixen,606,5064,0 +9482,Joseph Pagnol,12716,73713,1 +9483,Grace,47886,100817,10 +9484,Master Fox,12780,65976,6 +9485,Jean Dennison,310431,1427759,3 +9486,Jack,125021,5342,0 +9487,Glen,1890,25189,7 +9488,Hyder Khan,31805,14533,4 +9489,Nivea del Valle,2259,13333,6 +9490,Darla (voice),12,981049,19 +9491,Dr. Geller,11374,30697,27 +9492,Chinese Mom,31586,74073,20 +9493,Bartender - Villa Dulce,2604,103572,69 +9494,Nick Randall,23599,585,0 +9495,First Officer,488,6609,4 +9496,Professor Alan Dershowitz,38718,21399,2 +9497,Kyle Walsh,10727,66744,0 +9498,Blacksmith,35200,31321,4 +9499,Patty,60994,7465,9 +9500,Grace Le Sabre,12479,14723,12 +9501,Jan,108312,2876,1 +9502,Sister Katherine Grace,10671,153556,38 +9503,Policeman in Hallway Opening Door (uncredited),539,71146,25 +9504,The king's favorite,53761,30000,6 +9505,Officer with Flashlight,9406,1117049,20 +9506,Student,11397,1773877,93 +9507,Jonathan,29076,66653,13 +9508,Driver,10909,1569422,7 +9509,Dr. Kaufman,714,3418,7 +9510,Pfc. Sam Fender,9099,154838,13 +9511,Pavel Evgrafovich,20992,1601776,12 +9512,Matt Macauley,91217,13389,5 +9513,Tahitian Native (uncredited),12311,100768,48 +9514,Lt. Casselle (uncredited),289,1331757,37 +9515,KGB Official,10724,21431,24 +9516,Rita (as Anne Marie Lafferty),29698,135051,20 +9517,Diner Customer (uncredited),3309,179327,50 +9518,Doctor Otternschlag,33680,29259,5 +9519,Ulysses / Dr. Jeff Peters,32058,6949,0 +9520,Hertz Clerk,24831,21371,16 +9521,Dr. John Huggan,2669,26858,12 +9522,Denis Fallentin,2897,12726,19 +9523,Q,691,9906,10 +9524,Townsman,43828,978055,64 +9525,Antoine Duroc,42726,244518,5 +9526,Brunhilde - Elya Carlson's Maid,17691,101481,12 +9527,Air Warfare Officer - HMS Bedford,714,19923,31 +9528,Jimmy Jameson,9475,1800168,27 +9529,"Liz Kennedy, Assistant DA",16820,20747,8 +9530,Pet,4476,7863,10 +9531,José Malpica,31598,938832,9 +9532,Navarro,167,1983,5 +9533,Chen,2140,554599,11 +9534,Stern Judge,9816,59581,18 +9535,Vera,42987,15197,1 +9536,Debutante #3,6038,33936,18 +9537,Star (voice),21032,77157,8 +9538,Nightclub Visitor,9406,99934,17 +9539,Alise,13346,55277,4 +9540,Lady,141489,1114922,21 +9541,Tomachoff,1058,27543,9 +9542,Inez,4133,34846,22 +9543,Joe Welch at 8 Years,9977,61342,9 +9544,Flight Attendant,6068,1609239,30 +9545,Mary Ellison,12311,1271202,24 +9546,Tom Schmidt,33016,1071729,14 +9547,Edie,22160,12967,7 +9548,Kid Dabb,43832,3383,4 +9549,Athena,5,3124,9 +9550,Frank - Policeman (uncredited),3085,125842,27 +9551,Mr. Glicker,2758,5174,9 +9552,Truck Driver #2,11879,157618,13 +9553,Mary Corleone,242,1769,4 +9554,Louisa Pierce,11231,20276,3 +9555,Rash,5917,1100323,26 +9556,Grandpa Hugo Firefly,2662,27742,12 +9557,Suitor in Christina's Box,9563,1741390,25 +9558,Tony Russo,2321,923,4 +9559,Alcott,42517,74352,4 +9560,Teri,11959,30366,1 +9561,Gordon A. Peacock,36797,72863,12 +9562,Ruby,41852,6465,4 +9563,The Black Knight,30584,89065,12 +9564,Young pregnant woman (uncredited),490,32729,23 +9565,Congratulating Spectator,11873,1265406,39 +9566,Emeline Marcus-Finch,11576,29717,14 +9567,Farmer Bill,4147,43544,31 +9568,Shorty,34223,156475,18 +9569,Lord Delamere,606,3796,7 +9570,Louis Wagner,13526,8785,5 +9571,Redls Mutter,29471,1352759,12 +9572,Betty Daniels,15943,8231,1 +9573,Vivian Sternwood Rutledge,910,7570,1 +9574,Jeremiah,696,12900,8 +9575,A. J.,24825,41256,3 +9576,Larry Durkin,694,16504,8 +9577,Gary Granger,2758,12688,11 +9578,Mrs. Lucy Stark,25430,40233,7 +9579,Roddy,11235,116130,14 +9580,McCue,3085,30157,12 +9581,Stewardess,18,1857425,54 +9582,Legal Secretary,32331,1577513,12 +9583,Peter Donahue,11812,11155,2 +9584,Lem Claggett,43828,83623,12 +9585,Myrtle Keeton,10657,56522,14 +9586,Harlan Griffith,8869,12975,4 +9587,Verloc - Sylvia's Husband,12684,29661,1 +9588,Mr. Wees (uncredited),805,85990,19 +9589,Shauna,29938,105290,3 +9590,Carlitos Páez,7305,7039,3 +9591,Chairman of Diet Committee,1678,125016,9 +9592,K.C. Downing,31044,69055,2 +9593,Defense Attorney,2757,6916,15 +9594,Jordan Armstrong,16162,9781,0 +9595,"Matt, as a boy",3089,10545,12 +9596,Major Albert Stedman,60285,54123,3 +9597,Curly Locks (uncredited),25898,949499,12 +9598,Todd,15762,137421,18 +9599,Lin (voice),129,19594,4 +9600,Dr. Cukrowicz,14698,12151,2 +9601,Aunt Helen,50123,933686,4 +9602,Perlin,11915,24652,6 +9603,Salvatore adulto,11216,20030,1 +9604,U.S. Reporter,10222,1076568,14 +9605,Basketball coach,27332,14320,9 +9606,Boy at Wagon Wheel,49410,1080640,2 +9607,Eddie,29475,2248,1 +9608,Food Critic,28165,550612,13 +9609,Iron Head Rat,11230,1178815,14 +9610,Anne,27145,26101,1 +9611,Ermine Jung,4133,3052,5 +9612,Gorky's Mother,16351,1881246,12 +9613,Preacher,4338,883,17 +9614,Nichiren Shoshu Member,14886,46949,11 +9615,,10867,1872724,34 +9616,,15256,22226,10 +9617,Robert Fleming,30308,3361,0 +9618,Weronika - Joannas sister,79782,92652,4 +9619,Arab Guest with Fez (uncredited),289,1331768,64 +9620,Cindy Anderson,23223,61114,8 +9621,Owen,43266,1152418,15 +9622,Aged Buddhist Monk,1995,1227314,15 +9623,Amy Harper,13555,4000,0 +9624,Capt. Orr,10364,12438,12 +9625,Hot-Dog Vendor,31586,150651,37 +9626,Maya Dolittle,3050,31031,6 +9627,Himself,85472,1196309,6 +9628,Lucien,194,2408,3 +9629,Rascal,10897,83209,22 +9630,Bill Porter,59401,50971,4 +9631,Sen. Joseph Carmichael,13550,19550,2 +9632,Felix,1647,205104,31 +9633,Det. Frank Bugatti,10391,33241,6 +9634,Party Member at Convention (uncredited),11697,1041747,78 +9635,Theresa Hagen,238,982089,31 +9636,Loco (Tigrero),9028,14277,1 +9637,Michel Poiccard / Laszlo Kovacs,269,3829,0 +9638,First deputy arraigning Burns,43002,137389,8 +9639,Harry Washello,24739,11085,0 +9640,Girl at Dance,2984,400,22 +9641,Federal Team,169,1128238,25 +9642,Guard,5924,140345,14 +9643,Jack Tate,17692,989,6 +9644,Bookstore Customer,11298,44762,14 +9645,Brad,9406,58381,2 +9646,Ifty,10950,6806,11 +9647,Elisabeth,742,6003,0 +9648,Kyle Fuller,23967,55547,8 +9649,Spc. Tony Morales,9099,34841,12 +9650,Man at Bank,28940,4610,16 +9651,,171857,32897,0 +9652,Frog,24679,19384,16 +9653,Jerry Lawler,1850,238321,15 +9654,Siobhan Donovan,33851,739,9 +9655,Ben Gunn,77079,9221,5 +9656,Man in High Hat Bar,10173,77806,22 +9657,Logan Bruno,48287,58119,9 +9658,Le chef de gare,36245,1448493,14 +9659,Heckler in Bar (uncredited),1578,1243306,34 +9660,Onlooker at Mansion,9396,1219901,9 +9661,Charlotte Randall,10395,18794,4 +9662,"Apocalypse, Inc. Chairman / The Devil",28169,98330,2 +9663,Albert Milo,549,64,3 +9664,Margo Lynn,125548,76131,5 +9665,Military Technician,18,1857442,86 +9666,Agrado,99,961,4 +9667,Francesca Lanfield,32872,520,0 +9668,Surveillance Van Cop,26180,20471,13 +9669,Donnie Thornberry (voice),14317,1237,7 +9670,Pfc. Spencer,12528,30613,0 +9671,4th Reporter,1924,172962,37 +9672,Scott Hayward / Tom Wilson,26299,21457,0 +9673,principe dei dermatologi,25403,1128108,24 +9674,Lescovar,17339,22383,4 +9675,Capt. Ed 'Too Tall' Freeman,10590,65720,18 +9676,Janet,29938,32544,10 +9677,Truck Driver,26689,51707,6 +9678,Bartender,43828,1313186,54 +9679,Julian's Friend in Green Room,11873,1242130,21 +9680,Chantal Vereecken,58886,228603,5 +9681,Mrs. Devlin,205054,153315,9 +9682,Ilm Zamsky,215373,65765,10 +9683,Emma Murdoch,2666,6161,3 +9684,Plainclothes Cop,76411,42547,10 +9685,,25538,551671,14 +9686,Prof. Eustace Appleby,32484,9067,1 +9687,Dan Komenko,22398,33835,8 +9688,James Bond,714,517,0 +9689,Mace Lover,28466,91372,13 +9690,Gloria Travalian,41760,4514,2 +9691,Edith Wadsworth,43199,82383,6 +9692,Louise Eastman,25673,163340,10 +9693,Dr. Priya,4254,35754,4 +9694,Woman in Department Store (uncredited),33015,141346,8 +9695,,41638,1499721,3 +9696,John T. Coles,22317,47096,7 +9697,Spc. Abraham 'Doc' Johnson,10652,24047,7 +9698,Jangle Leg,6522,1897,4 +9699,Marys Vater,9095,5658,3 +9700,Death,490,6656,2 +9701,Tiny,39310,49002,3 +9702,Scott Andrews,12499,12790,4 +9703,Marie,52366,3731,14 +9704,Slaughter House Man,5917,1894155,36 +9705,Noodle-making master,11830,123854,11 +9706,Billy Porter,11975,55725,8 +9707,Ellen James,11307,99,10 +9708,Frank Needham,29355,408,15 +9709,The Guardian,30379,1646,4 +9710,Gordon,123757,163670,6 +9711,Hildegunt,5608,44353,12 +9712,Foot Soldier,1497,1456536,56 +9713,Mona,1574,17643,14 +9714,Receptionist,31586,1179086,40 +9715,Richard 'Little Dick' Wick,2662,44825,19 +9716,Nanette (voice),45772,55398,7 +9717,Kate McKay,11232,5344,0 +9718,Extra (uncredited),2897,121208,57 +9719,Lday Beeder,43139,136897,6 +9720,Male Opera Singer,10436,1190704,9 +9721,Officer Keeney,10866,154838,6 +9722,Jackie Du Pré,46992,1639,0 +9723,Asian Man #1,84735,20904,11 +9724,Old Indian 'Chief St. Cloud',18935,127032,6 +9725,Frisbee,12079,11663,5 +9726,Pauline,9028,6780,4 +9727,Inspector Healey,1448,9191,2 +9728,Dan Paxton,26149,6067,9 +9729,Daisy Bunting,2760,27913,1 +9730,Jim Craig,24266,73489,0 +9731,First Officer of Shona,488,6611,6 +9732,Scimitar Computer (voice),201,2523,14 +9733,Hetsut,26661,94296,7 +9734,Lesra Martin,10400,25868,1 +9735,John David 'J.D.' Dawes,19108,51576,1 +9736,Lieutenant Mike Harrigan,169,2047,1 +9737,The Devil Malebolgia,10336,15831,9 +9738,Des,16980,78190,2 +9739,Cable Anchorwoman,9776,1129795,20 +9740,Townsman at Carnival (uncredited),220,1406724,11 +9741,Assistant Coach,31586,1179092,51 +9742,Elevator Passenger #7,1637,1385665,56 +9743,Tybalt (voice),45772,976,6 +9744,Accomplice,42136,196780,10 +9745,Dectective,26958,55841,12 +9746,Man in City Bar,25430,29626,52 +9747,Stuart,11159,5319,9 +9748,John Anderson,21027,42978,7 +9749,Cattle Baron,5917,88622,17 +9750,Bill (voice),9023,80416,6 +9751,Scott's Doctor,9716,164511,38 +9752,White Guy,11397,74722,37 +9753,Arrow,41160,1736676,19 +9754,Isobella,16176,29796,9 +9755,Kermit the Frog,10208,64180,0 +9756,Herself,4478,109988,39 +9757,Man in White Suit,11830,18056,3 +9758,Johnny,35569,20812,7 +9759,Courtney Rockcliffe,11812,18979,1 +9760,Madame Boitier,660,990420,14 +9761,Tosh Guaneri,9877,21320,10 +9762,Joe,11259,140230,11 +9763,Maj. Paul Hackett,20287,11086,2 +9764,Alva,10207,156774,9 +9765,Cardinal Ottaviani,11035,67883,4 +9766,Lord Redbrick (voice),45772,3895,1 +9767,Extra (uncredited),2897,185001,53 +9768,Hallie Flanagan,32274,1956,10 +9769,Dr. Mark Powell,167,1229,0 +9770,Waiter,1859,1471657,28 +9771,Douglas MacArthur,31037,8487,0 +9772,News Manager,1497,59649,35 +9773,Tina,29825,19189,3 +9774,Grocer,11145,1468322,8 +9775,Luana Kanahele,55731,239980,10 +9776,Jerry,11980,6163,4 +9777,Officer,32093,1198882,33 +9778,Officer Barret,30308,92908,8 +9779,Billy,40952,181299,12 +9780,Johnny,3784,1158,1 +9781,Jessica Kamen,2140,2233,1 +9782,Anna,123757,239348,0 +9783,Murdoch Leckie,99351,1312737,10 +9784,Richard Strout,1999,15338,4 +9785,Dark Leader,24126,48965,14 +9786,Girl in Opticians (as Keeley Flanders),11159,1394981,17 +9787,Narrator (voice),15559,1749,0 +9788,Mr. Fromm,7340,7085,9 +9789,Dr. Cooper,4993,13786,10 +9790,Kotzebue,129542,108988,1 +9791,McIntosh Waiter,9889,1580198,15 +9792,Ace,11895,26283,10 +9793,Amy Benic,15556,23931,1 +9794,Professor Kasuda,11185,1454094,21 +9795,Bingo Vendor Woman,2144,53931,8 +9796,Juliet Beck,12476,552162,16 +9797,Zishe Breitbart,68569,34514,1 +9798,Christy Colleran,26798,3391,0 +9799,Jane Woods,12506,20771,3 +9800,Havisham,23114,81934,4 +9801,Tourist,522,1174939,55 +9802,Martha,12454,72316,13 +9803,Amaretto,34223,91332,3 +9804,Curt Duncan,45964,14816,3 +9805,Candido,43775,225031,2 +9806,Agent Atkins,20242,24046,4 +9807,Mark Thackeray,25934,16897,0 +9808,Lance B. Johnson,28,8350,4 +9809,A Friend,27145,38647,4 +9810,Artie / Featured Player,31044,77588,31 +9811,Billy Fish,983,11852,3 +9812,Marisol,19348,84521,6 +9813,Sid,32274,70851,16 +9814,Jimmy,320011,1216462,11 +9815,Bill,49963,18472,8 +9816,Clapper,29048,3463,2 +9817,Journalist at Orly,269,18199,12 +9818,Maurice,52366,70168,3 +9819,Paul Bland,28940,101377,0 +9820,Dr. Jennings,47886,14014,7 +9821,Minister (uncredited),16307,80261,7 +9822,Man in Court Room (uncredited),73969,1188616,19 +9823,Larry Lipton,10440,1243,0 +9824,Louis-Dominique Bourguignon alias Cartouche,26866,3829,0 +9825,Sillerton Jackson,10436,8224,11 +9826,Cop,19760,66131,4 +9827,Mrs. Carry Fisher,25520,4513,7 +9828,Coroner,15762,149214,7 +9829,Robby Gallagher,8870,5576,0 +9830,Henry Craig,24266,75394,1 +9831,Roger Van Zant,949,886,18 +9832,TV Interviewer,954,559766,18 +9833,Woog (voice),18890,1129381,5 +9834,Extra (uncredited),2897,64860,82 +9835,Minor Role (uncredited),2897,11031,278 +9836,Isabelle Steers,11536,7684,3 +9837,Bobbie,41164,11478,1 +9838,Patricia,49792,43476,8 +9839,Patrick,11380,79538,8 +9840,Stuart,10391,28871,9 +9841,Maj. T.P. Gaskill,22328,4073,7 +9842,Baron Frankenstein,3035,29816,5 +9843,Bobby Phillips,14794,1040442,5 +9844,Major Giles Flack,83562,8930,0 +9845,Laura,9540,12452,4 +9846,Mickey,9495,7576,13 +9847,Villager of Tullymore,10162,1609647,23 +9848,Dr. Heath,24679,118130,10 +9849,Demons (voice),16235,80165,30 +9850,Swingo's Desk Clerk,786,181791,45 +9851,Clarence Doolittle,17889,4347,0 +9852,Catherine 'Cat' Ballou,11694,6352,0 +9853,Fashion Narrator,11145,100794,15 +9854,lui-même,64567,3556,22 +9855,John Murdoch,2666,17328,0 +9856,Edler (voice),13225,7210,13 +9857,Extra (uncredited),2897,34469,249 +9858,Louise,11145,1898731,12 +9859,Phyllis 'Phyl' Carlson,16938,8263,5 +9860,Kathryn Fairly,13766,1063,1 +9861,Wayne Collins,2046,17141,4 +9862,La Taupe,26866,24421,4 +9863,Jen (voice),11639,202729,6 +9864,Don Flip Crew #1,40879,2041,2 +9865,Stuart 'Stu' Pickles (voice),14444,62590,8 +9866,Man on Hospital Roof (uncredited),15,1492450,110 +9867,Gordon Smallwood,2637,883,2 +9868,Camarero,1902,16441,11 +9869,Pedro Dossem,107693,1159168,9 +9870,Joe,10937,3201,6 +9871,J.V.,31671,8259,7 +9872,Terrorist with Mustache,19157,1539278,10 +9873,Old Woman in Processing Room,22023,1577164,28 +9874,Dijon,10047,550110,26 +9875,J.D.,10611,18471,1 +9876,General Sir Harold Alexander,11202,13331,20 +9877,Doctress,42149,22137,4 +9878,Joey McKinney,38554,1542806,21 +9879,Dolores,262,1555141,6 +9880,Myra Bruhl,17590,40403,2 +9881,Carl Heine Jr.,10219,53574,10 +9882,The Priest,56162,777,2 +9883,Alcoholic Patient,24679,1043608,13 +9884,Jack,9028,1121926,19 +9885,(uncredited),29263,93648,23 +9886,Nick Parker,9820,6065,1 +9887,Gang Member (uncredited),1480,1199438,27 +9888,Walter Grady,32049,134340,3 +9889,George,51802,16523,0 +9890,Bill Bowerman,22256,55636,1 +9891,Raymond Dufayel,194,2410,10 +9892,Bit (uncredited),117,236495,52 +9893,Irene Bullock,13562,2491,1 +9894,Director,47955,84233,13 +9895,Matthew Quintal,2669,26862,16 +9896,1st Chance: Girl in Big Hat Who Laughs at James' Proposal (uncredited),32600,1092787,15 +9897,Student (uncredited),220,1170486,35 +9898,Bruno,9406,1633263,14 +9899,Chris Knight,14370,5576,0 +9900,Jim Cunningham,141,723,2 +9901,(uncredited),14811,1214111,40 +9902,El Segundo,21242,79732,5 +9903,Little Richard Phillips,109614,1217850,3 +9904,Jimmy Valentine,38043,47878,6 +9905,Factory Boss,62463,1780622,21 +9906,Angélica,598,8602,8 +9907,April,56162,1049235,7 +9908,Pluto,2140,1847202,13 +9909,Gunman at Boot Hill,966,30846,25 +9910,Nathaniel,2021,1229223,10 +9911,Himself,2300,1532,8 +9912,Patrick Bramwell,26954,194599,3 +9913,Margaret Lomax,13681,32225,1 +9914,Football Coach,25430,153238,53 +9915,FBI Agent Mike Johanssen,9882,136530,5 +9916,Thug,788,1077866,23 +9917,"Tina, Vito's Girl",8491,55268,5 +9918,Steve Maxwell,37936,13525,7 +9919,Gurdell,19142,97598,10 +9920,Bobby,10783,66749,13 +9921,Fuller,23730,51963,7 +9922,Nagahide Niwa,11953,143901,20 +9923,Jordan,795,10132,4 +9924,Tommy Butcher,11091,56857,13 +9925,Buddy Wilson,46094,134772,10 +9926,"Bob, the Pianist",499,10934,4 +9927,Bikini Girl,8467,1512826,33 +9928,Princess Katey,37108,24618,5 +9929,Freddie Benson,2280,1073816,11 +9930,Tom Eliot,46797,5293,0 +9931,Rich Janes,13526,6164,4 +9932,Liz Johnson,73969,538924,4 +9933,Albert,3587,9640,2 +9934,Mary Grant,34774,36819,1 +9935,Tourist,2897,29523,21 +9936,Bob Stone,3595,33243,14 +9937,Floyd aka Studebaker,21801,1006136,4 +9938,Eduardo,31665,74273,4 +9939,Judge,5917,49938,14 +9940,Dad,46989,236051,8 +9941,Horn's Capturer,5917,9311,55 +9942,Masha,262,3664,3 +9943,Max,26252,94945,11 +9944,Adam,26761,96162,5 +9945,Earl Barton Dancer,18691,1787560,10 +9946,Tatsu,1497,953728,9 +9947,Heckler - Fox Fight,1578,948553,17 +9948,Mr. Douglas,17464,30785,11 +9949,Eddie Cervi,46786,2395,1 +9950,Marcia Brady,12606,15286,3 +9951,Chris Shiherlis,949,5576,2 +9952,Lola,99,963,6 +9953,Mrs. Maggie Biederhof,3309,5740,6 +9954,Jojo Floss,31005,4038,2 +9955,Salesgirl,1058,9259,7 +9956,Bridesmaid,3035,939913,13 +9957,Pere Mathieu - Cafe Owner,1859,96053,31 +9958,Charles Ossining,10467,3036,3 +9959,First Lady Marsha Dale,75,515,1 +9960,Irina Shapira,47504,13333,3 +9961,Cpl. Bruce Campbell,11880,17202,4 +9962,Bartender,8467,162924,10 +9963,Rick,45069,20746,3 +9964,Ray,99826,569,2 +9965,Vincent,35651,15482,0 +9966,News Vendor,814,1186201,38 +9967,Croupier (uncredited),289,1278060,74 +9968,Child at orphange,21866,389,14 +9969,Joey Walsh,2604,176976,20 +9970,Pedro,7514,52816,3 +9971,Matthias,11234,2516,1 +9972,Rhodes,6,121667,6 +9973,Jeri Dawn,10889,27584,1 +9974,Charles Brady,11428,69405,0 +9975,Billy,26954,192234,9 +9976,Pilar,22317,84476,10 +9977,King Arthur,37108,14324,1 +9978,Isabella Hudson,9358,95517,9 +9979,Girl Vendor,31498,1055869,11 +9980,Sadie,33364,86346,5 +9981,Bar Dancer,755,41691,27 +9982,Sorak,2428,24811,4 +9983,Dancing Woman,2613,86565,22 +9984,John,18002,138038,11 +9985,Mr. Fitzherbert,634,9142,13 +9986,Betty,47260,2051,1 +9987,Irish claimant,34774,112977,18 +9988,Vikki,53617,148604,12 +9989,Swimming Woman,9877,38562,24 +9990,Russian Doctor,10003,166258,26 +9991,Childress,11450,6437,16 +9992,Laura Belle McCanles,32275,8828,5 +9993,Mackenzie,10344,294790,13 +9994,TV Stewardess,18,234685,95 +9995,Skippy - a Rabbit (voice),11886,143800,11 +9996,Don Luis Quintero,32093,89999,5 +9997,Himself (Football Player),30709,103711,13 +9998,Rorey Wheeler,11855,3127,6 +9999,Ziggy & Sofie's Baby,38509,120586,8 +10000,Gunfighter,5917,1470325,39 +10001,Kenny,7340,52470,18 +10002,Nic,552,7548,9 +10003,Lavada McRae,19819,1981,5 +10004,Dr. Pomeranz,1903,19851,8 +10005,Cindy,21142,1507109,8 +10006,Tug Kowalski - TV Announcer #1,9563,1152,44 +10007,Dwayne Gittens / God,22314,36424,1 +10008,Capt. Crewe / Prince Rama,19101,15498,2 +10009,Attendant,141489,66095,24 +10010,Professor Pacoli,18,8398,13 +10011,Dr. Leo Bain,40952,9221,1 +10012,Bartender (voice),8916,129297,17 +10013,Jessica,9102,56978,2 +10014,Mrs Meakin,54795,7320,2 +10015,Lt. John Masterson,12476,72408,3 +10016,Running Buffalo (uncredited),15263,1501999,28 +10017,F. Franklin Donaldson,11975,20545,19 +10018,Pinhead,105,1200796,42 +10019,Tomas,21060,61565,3 +10020,Sara Fratelli,11397,36137,9 +10021,Guard #2,11001,1645509,25 +10022,Echo Photographer,9296,23791,36 +10023,Mother,229,1046807,39 +10024,,76996,3068,0 +10025,Waitress,140519,1112610,12 +10026,Tom Jericho,10491,15336,0 +10027,Elvira,145925,27411,14 +10028,Gareth,276635,166221,13 +10029,Reporter #2,10539,1011424,8 +10030,Miss Edwards,50512,1352511,19 +10031,Frieda Jason,7340,52466,14 +10032,Organ Grinder,28345,106091,13 +10033,Sports Announcer,1374,16645,8 +10034,Psychiatrist #2,1647,186500,23 +10035,Andrew Lloyd Webber,8970,60018,6 +10036,John Blakely,34106,89102,15 +10037,Extra (uncredited),2897,1368758,187 +10038,Barbara,85160,1122214,8 +10039,Horse,2750,5319,24 +10040,Johnny,266022,155282,5 +10041,Gaby,29263,1531889,10 +10042,Winston Zeddemore,2978,8874,5 +10043,Jeff,10972,2839,4 +10044,Bailiff,1574,17645,17 +10045,Townsman (uncredited),11697,120178,39 +10046,Heinrich Himmler,68569,37481,7 +10047,Ticket Taker,2280,994134,14 +10048,Doody,621,8896,5 +10049,Sharkey,24825,40429,20 +10050,Tiny,33689,1331571,8 +10051,Pudge,38043,49425,14 +10052,"Captain John Yossarian, (Bombardier)",10364,1903,0 +10053,Harry Dieter,949,95796,37 +10054,Sergeant Len Bonny,83562,1234177,8 +10055,Rose Haigh-Wood,46797,18998,2 +10056,Sarse,9659,252659,11 +10057,Stewart Swinton,10395,13548,2 +10058,Archbishop Gilday,242,168632,11 +10059,O'Brien,9314,5341,1 +10060,Kenny,13105,37713,3 +10061,Mercer,17168,55548,11 +10062,Jay O'Neill,12309,36039,2 +10063,Young Cop,14295,1516292,21 +10064,Pamela 'Hitch' Rushworth,43089,8944,1 +10065,Reverend Markham,85837,7077,4 +10066,Maurice Stubbs,125764,34657,1 +10067,Nitti's Henchman,4147,86583,16 +10068,Mad Max Rockatansky,9659,2461,0 +10069,SS-Offizier,124625,8198,3 +10070,Doc Willoughby,11697,176543,5 +10071,Waiter (uncredited),61934,955691,20 +10072,Charlie Carey,31682,97145,3 +10073,Vecino,80713,590262,2 +10074,Carolyn Gibson,1377,16759,2 +10075,Pvt. Hutchinson (uncredited),9289,8545,23 +10076,Freshman,15144,1405696,25 +10077,Masseuse,8467,1853182,40 +10078,Billy Parkin,10863,26857,4 +10079,Truckdriver,24825,592904,16 +10080,Edward S. 'Ed' Montgomery,28577,14063,1 +10081,Berger,289,4119,11 +10082,Mac,9296,52797,40 +10083,Mickey Torelli,10351,54855,16 +10084,Joe Nast,31005,131,0 +10085,Ricky,11235,97884,15 +10086,Factory manager,12481,1591622,9 +10087,Dr Ramphele,12506,174708,8 +10088,Humphries,13105,36927,10 +10089,Maggie Nelson,24795,18345,1 +10090,Pavlov,46592,1038575,7 +10091,Timon,11591,9597,7 +10092,Hospital Dancer,9716,164235,25 +10093,Jeff Peters,31805,24937,0 +10094,Pablo,10847,1077735,15 +10095,Dot Black,11975,5960,4 +10096,Andy's Father,2108,57597,7 +10097,School Master,16307,1119550,10 +10098,Gillian Blanchard,25934,93476,1 +10099,"Virgil ""Gus"" Grissom",9591,17419,23 +10100,Drunk,36489,152706,13 +10101,Job Cain,65134,1453024,4 +10102,Jackson Tsui,9404,120418,2 +10103,,124633,171351,8 +10104,Wilson,9507,17355,9 +10105,Grace Santiago,11517,16866,2 +10106,Rodney,2640,193390,11 +10107,"Сергей Гурин, известный хоккеист, муж Людмилы",21028,87004,5 +10108,Lord Drummond / Featured Player,31044,1640575,16 +10109,the doorman,24005,2784,22 +10110,Carmella,13555,1081823,15 +10111,Victoria,278621,1415875,1 +10112,Frank Mallin,43079,75977,1 +10113,Tully Sorenson,10937,2506,2 +10114,Jordy's Dad / Cameos,16281,104046,13 +10115,Louise,30709,45463,15 +10116,Mme Kollontai,105763,1359875,9 +10117,Kate,42136,61185,1 +10118,Student,34223,1163072,12 +10119,X Man,95627,171574,19 +10120,Bill,11442,21403,5 +10121,,64310,230401,8 +10122,Wally Fay,3309,2672,1 +10123,Hal Larson,9889,70851,1 +10124,Charlie,24077,130947,4 +10125,John Netherwood,79593,30613,1 +10126,Kehaar (voice),11837,18861,11 +10127,Eliza Thornberry (voice),14317,22082,0 +10128,Ishihara,327,4994,8 +10129,Nick,14293,522,2 +10130,Harry,172868,10727,1 +10131,Mason McCormick,27332,79740,1 +10132,elle-même,64567,10500,4 +10133,Jake Birnbaum,15263,4094,4 +10134,Enraged Mom,10708,148632,33 +10135,Jean,125520,3064,1 +10136,Guest at Rick's (uncredited),289,1543340,102 +10137,Ciki,8342,54620,0 +10138,Parkie Denton,1443,1239453,12 +10139,Mrs. Jackie Heath,1813,42694,7 +10140,Frances' Father (uncredited),29911,2461,0 +10141,Matt,2721,24422,5 +10142,Shirley Valentine-Bradshaw,18683,83437,0 +10143,"Георгий Иванович (Гоша,Гога), слесарь из НИИ, возлюбленный Катерины",21028,87001,3 +10144,Extra (uncredited),2897,1242437,199 +10145,Orton Brown,22267,207,8 +10146,Clayton Boone,3033,18269,1 +10147,Riga Fire Control Chief,10724,166204,51 +10148,Lt. Bob Roland,3063,30014,3 +10149,Hoke Colburn,403,192,0 +10150,Pierre Gauthier,42726,70179,2 +10151,Travis W. Redfish,21024,7470,0 +10152,Mia,15143,77940,3 +10153,Brady Lang,1073,15252,5 +10154,Minor Role (uncredited),2897,129428,264 +10155,Bud Nelson,31586,93688,24 +10156,Grace Santos,125548,4810,0 +10157,Grimsworthy,14612,19616,9 +10158,Spock...Age 13,157,1830,12 +10159,Player Queen,141489,1114916,9 +10160,Mr. Cimino,70489,61323,4 +10161,Strom,5955,46814,10 +10162,Wrestling Opponent,522,1845370,52 +10163,Juel,10708,59786,26 +10164,Merle's Wife,30709,104059,19 +10165,Mark Harnish,24645,10361,2 +10166,Joey,664,9998,10 +10167,Ernie,6951,41253,5 +10168,Kate,30363,54754,8 +10169,Bartender,95627,1552813,17 +10170,The Reman Viceroy,201,2372,8 +10171,Woman,43828,30263,27 +10172,Gravère,26252,94946,12 +10173,Danny,277726,4890,7 +10174,Roberty Sparrow / Grandma Death,141,1585,12 +10175,Tony the Pizza Guy,93350,87707,13 +10176,Khan,32049,1502500,15 +10177,Patton's Croney,13965,76190,11 +10178,Dr. Bechmann,691,24722,23 +10179,Claire Bennett,858,13314,12 +10180,News Reporter,3595,18236,21 +10181,General Borov,10724,30142,42 +10182,Barnes,5279,40311,18 +10183,Adolphe J. Giron,195,2438,5 +10184,Barry,18621,94553,5 +10185,Sean Brody,17692,21475,4 +10186,Kris Bolin,17168,6684,1 +10187,Butch Engle,887,11439,6 +10188,,16806,3418,9 +10189,"Voltri, First Mate",28134,4252,2 +10190,Jamie Nigg,99351,35849,12 +10191,Charles van Druten,30308,2922,3 +10192,Marty's Buddy,11397,1473327,94 +10193,Chuck Neiderman,20704,60949,5 +10194,Underground Guide,11035,67882,3 +10195,Akela (Cheetah Mother) (voice),14317,1981,10 +10196,Sailor,46924,1586423,13 +10197,Natasha,17711,14343,0 +10198,Caspar's Cousin,379,1281532,27 +10199,Jonah,23239,15337,2 +10200,Matthias,954,231246,20 +10201,Politician at Harrison's Headquarters,25430,1467013,19 +10202,Voice of Beheaded Climber Jim,43143,8927,16 +10203,Annelle Dupuy,10860,589,4 +10204,Wesley - White Team Leader,17971,42362,4 +10205,Jamie Conway,17170,521,0 +10206,Charles Churchill,2669,3896,7 +10207,Frau Kosemund,278978,10258,6 +10208,Zoraima,5924,993183,9 +10209,Mary Kane,15,11025,5 +10210,Wing Kong Hatchet Man,6978,105047,31 +10211,Jill Adams,28295,1653784,14 +10212,Tragedian,18971,134249,11 +10213,Pvt. Joe Beletsky,10652,155921,10 +10214,Leonard Winesop's Receptionist,11899,105307,9 +10215,Mrs. Higgins,11113,3366,4 +10216,Himself (archive footage),8672,49497,11 +10217,Hipolito,194,2414,7 +10218,Charles 'Chuck' Gieg,10534,24965,3 +10219,Mrs. Johnson,11379,17769,20 +10220,Yaz,9405,21397,1 +10221,Woman at Table,2898,41420,23 +10222,Hugh,29449,9807,1 +10223,Matt Douglas,15263,103672,12 +10224,Liu Jian,2140,1336,0 +10225,Carlos,838,12411,9 +10226,Maurice Purley,11159,9191,0 +10227,Xaintrailles,10047,61623,25 +10228,Agent Schreck,9532,40377,10 +10229,Townsman (uncredited),11697,1547818,29 +10230,Mr. Braddock,37247,10775,7 +10231,Kristou,33851,1220370,16 +10232,Rayne Gant,10550,10680,4 +10233,Chan Wing Yan (young),10775,78869,7 +10234,Tom,25994,11179,6 +10235,Neighbor,13889,110299,9 +10236,Quartet,6038,1580042,44 +10237,Gen. George S. Patton Jr.,11202,862,0 +10238,Rudy,134368,108890,8 +10239,Otsuyanokata,11953,19857,9 +10240,Elise Dunstan,805,12026,9 +10241,Extra (uncredited),2897,1176510,186 +10242,Richard,47112,2039,2 +10243,Ruby Rhod Assistant,18,1364322,61 +10244,Zeke,20735,12975,1 +10245,Katherine 'Kay' Banks,20758,3635,2 +10246,Lars Jorgensen,3114,4119,5 +10247,K-9 Cop,92769,977522,9 +10248,Charlie Chambliss,29492,103963,1 +10249,Dad,42739,5538,0 +10250,Uncle Bok,16417,80525,5 +10251,Town Chief,31439,146044,2 +10252,Mr. Poppins,34106,14968,8 +10253,,48144,1139069,3 +10254,Ogden Mears,2984,3084,0 +10255,Elmo Freech,80350,44240,0 +10256,Sale House Man #1,14,68842,11 +10257,Caroline Cunningham,2757,1579,7 +10258,König Tynahs Berater,2669,26870,27 +10259,Mercedes,11655,70364,3 +10260,Tommy Breen,47112,2468,6 +10261,Hywel,276635,295849,16 +10262,Alan Simon,8463,4756,2 +10263,Ernest Nichols,43340,95598,8 +10264,Dora,29263,74906,14 +10265,Barker,31586,32396,19 +10266,Kingcome,10491,55340,10 +10267,Non,1924,41224,8 +10268,Woman (uncredited),3309,1073274,43 +10269,Performer,34113,1220190,8 +10270,Second Major Dorno,16176,47480,22 +10271,Nite Spot Woman,10400,1393332,28 +10272,Jerome's Girlfriend,30709,106813,18 +10273,Queen,16176,93326,13 +10274,Teen,53150,1539277,16 +10275,Gambler,11517,47774,9 +10276,Anna's Friend,9441,235507,6 +10277,Dr. Peter Fox,38006,85935,4 +10278,Charles Mayeaux,29076,3896,1 +10279,Bellhop,2637,27713,30 +10280,Young George,4133,10135,12 +10281,Veronica,28047,328,7 +10282,Buckaroo Banzai,11379,27811,0 +10283,Dolen,12103,828,4 +10284,Indian Wife,8584,554278,16 +10285,Inspector Parot,31417,36212,5 +10286,"Yuriko, her daughter",28273,131203,8 +10287,Matka/Natalya,1396,55512,0 +10288,Harold Messner,1377,12152,9 +10289,Bill Cleg,9613,5168,2 +10290,City Room Employee (uncredited),15,1550460,41 +10291,Rada,4133,34845,13 +10292,Minor Role (uncredited),2897,120718,259 +10293,Dr. Carew,3028,29713,5 +10294,Tony McCoy,522,7143,19 +10295,Strip Show Dancer,13555,1081821,13 +10296,Hooker,2604,2535,9 +10297,Carla,220976,149447,7 +10298,Street Hustler,2898,117568,45 +10299,Helga,210092,1193677,8 +10300,Alexander,2453,24516,3 +10301,,83562,6104,11 +10302,Grace Julia Stepney,25520,57449,6 +10303,Heather,2758,38024,19 +10304,Danny,9079,107368,9 +10305,The Promoter,36056,3371,3 +10306,Riley,9425,106911,6 +10307,Lulu,11129,68284,2 +10308,,68545,1221810,2 +10309,Psychiatrist,9716,1661597,57 +10310,Social Worker,11186,66194,9 +10311,Salvo,552,7549,10 +10312,Marion Ellswirth,57575,17752,3 +10313,Gollie,2087,133952,9 +10314,Yann Andréa,284096,1150544,2 +10315,Helen Miles Singer,9716,1661653,111 +10316,Gomel,982,15972,17 +10317,Buzz Miller,15944,163280,4 +10318,Joan,21148,157672,5 +10319,Foot Recruiter,1497,167676,37 +10320,Carol,12704,10556,6 +10321,Manjit,14587,2981,3 +10322,Withered Chuck,19142,1808566,14 +10323,Sgt. Oddball (tank commander),11589,55636,4 +10324,Mr. Henry Morton,7340,52463,10 +10325,Joanna Russell,13550,12657,3 +10326,Singer (as Odette),57575,30281,12 +10327,Extra (uncredited),2897,1551605,177 +10328,Flight Attendant,11397,1773887,95 +10329,(uncredited),5998,100899,27 +10330,Blanca,4307,36280,7 +10331,Second Fight Ticket Seller,26378,119549,73 +10332,Pinball City Proprietor,17971,5129,20 +10333,Tracy,45964,10559,2 +10334,Mrs. Bernice Gettys,1813,1089390,15 +10335,German soldier (uncredited),9289,6610,31 +10336,Gnomeo (voice),45772,5530,0 +10337,Walter Sawyer,30690,12850,2 +10338,Warship Captain,18,36901,56 +10339,Mrs. DeWitt,43828,102002,58 +10340,Hunter,9028,1757597,37 +10341,Jesse Hooker,11879,2714,2 +10342,Lucy Cartwright,15321,1120606,8 +10343,Bob / Schecky's Mother,19157,112300,2 +10344,Peru as a child,2441,24981,8 +10345,Young Danny,4012,1192380,17 +10346,Jenny Claire,47329,17187,2 +10347,Harry Agensky,35118,2090,0 +10348,The Showman,36056,553228,5 +10349,Patricia,10950,65760,6 +10350,The Slapper,11950,50967,20 +10351,Hermocrates,35337,2282,1 +10352,Hank Chandler,32331,28633,7 +10353,Jimmy,11415,147292,7 +10354,Quentin,16162,18288,2 +10355,Head Waiter,2984,1887364,27 +10356,Premiere Audience Member,9296,183404,20 +10357,Miss Julie,125520,9825,0 +10358,Della,76397,162381,12 +10359,Chief of Police (uncredited),25898,31771,10 +10360,Digit,4978,40352,9 +10361,Lot,2525,4961,12 +10362,Jailer (uncredited),34106,3262,107 +10363,Tina,88818,1533,1 +10364,Woman (uncredited),34106,1078453,84 +10365,Jimmy,9294,154295,15 +10366,Mink,379,884,3 +10367,Amanda,88224,1245,1 +10368,Elderly Lady,11159,1347968,41 +10369,Vitelli,238,119431,24 +10370,Mugambe,38618,75790,3 +10371,Warren,9776,543256,22 +10372,Radio Reporter #1 (voice),55420,1799817,25 +10373,Yves,104103,2245,7 +10374,Kia,18620,1804391,2 +10375,The tormentor,2428,50574,38 +10376,Platoon - Vietnam,2604,92756,38 +10377,the phone operator,24005,1384548,24 +10378,Elwin Worrel,61563,42746,3 +10379,Field HQ Aide,857,1648658,31 +10380,Jenna (voice),21032,2233,2 +10381,Pvt. Alyosha Skvortsov,46592,557006,0 +10382,Doug,59181,18281,14 +10383,Miriam Thompson,51763,5606,0 +10384,Dr. Roger Bentley,41516,103071,0 +10385,Woman in English Class,15764,1457479,14 +10386,Billy Cross,66634,15393,1 +10387,Staedert's Technician,18,1857449,92 +10388,Marilyn Fryser,42218,13637,0 +10389,Propietor,32093,89691,14 +10390,Lana,10466,238615,5 +10391,,80351,73022,3 +10392,Masami,28165,1387708,8 +10393,Calvera,966,3265,1 +10394,Mr. Polski,11120,14835,6 +10395,Cafe Patron,76,1265416,16 +10396,Monk,11953,135021,22 +10397,Secretary of Defense,11379,2454,10 +10398,Otto Schiendick,75641,32059,13 +10399,Abel,43139,3796,5 +10400,Extra (uncredited),2897,1226742,143 +10401,Sam Franklin,9066,57353,10 +10402,John Beaurider,60285,1568902,10 +10403,Brice de Nice,17350,56024,0 +10404,Aurora,11655,70365,4 +10405,Miss Emmaline,17691,97257,11 +10406,Donald Duncan,26941,27493,4 +10407,Hugh Crain,11618,71659,12 +10408,Harry,46986,1535179,32 +10409,Peppers,11635,57599,13 +10410,Foot Soldier,1497,1456529,50 +10411,Sea Bass,8467,184180,9 +10412,Lady in Car,11879,4604,14 +10413,Howie Clemmings,15943,5247,13 +10414,Teddy,41645,31388,4 +10415,Annette,14886,42166,7 +10416,Helen Chambers,10219,26466,19 +10417,Boy on Street Who Attended Funeral (uncredited),238,38803,39 +10418,Olsen,11591,100650,10 +10419,Daisy,17203,18998,7 +10420,Rafael Cano,7305,52422,12 +10421,Cliff Riker,11975,90749,12 +10422,Lamarr,9591,52057,9 +10423,David Edgar Greenhill,4916,25129,1 +10424,Captain - HMS Chester,714,1184909,21 +10425,Al Simmons,10336,64856,0 +10426,Swiss Professor,1694,34986,7 +10427,Stu Simmons,19855,109,0 +10428,Moroccan Boy (uncredited),289,2783,97 +10429,Rug Daniels,379,1281529,23 +10430,Levin,50512,658,2 +10431,Himself (also archive footage),8672,1101331,3 +10432,Mora,38775,103714,1 +10433,Shark Trainer,9563,1901258,70 +10434,Mrs. Russel,10354,1212688,10 +10435,Harlan,24739,82684,10 +10436,Matthew,26954,54564,8 +10437,Uncle,43771,998514,1 +10438,Lester,28387,54474,10 +10439,Preacher,4011,19754,21 +10440,Grocery Store Employee (uncredited),949,1504568,59 +10441,Agnes Lowzier (uncredited),910,130377,12 +10442,Father in family group,11159,17476,44 +10443,Huey Hewitt,17465,1021442,8 +10444,Brendy O'Toole,10162,58503,10 +10445,Laura Nelson,15143,121757,7 +10446,Fritz,14683,73029,1 +10447,Bar Dancer,755,1265433,28 +10448,Nando Parrado,7305,569,0 +10449,Cera,8342,54622,2 +10450,Mona Mars,910,13978,5 +10451,Val-Chick 2,1811,19144,20 +10452,Scene Break Dancer,817,58953,15 +10453,Cappie,13346,6952,2 +10454,Robin 'Stormy' Weathers,24081,21624,3 +10455,Trailhand Bitten by Rattlesnake,39435,8260,13 +10456,Mr. Snade,23114,33033,21 +10457,David Nelson,2669,16273,11 +10458,Officer Sam 'Mad Dog' Shaw,19176,8874,3 +10459,Brian Kessler,10909,12640,1 +10460,Ida Stubbs,125764,4154,0 +10461,Bridget Jones,634,9137,0 +10462,Luther Stickell,954,10182,5 +10463,Mary Mitchell,28120,99752,6 +10464,Weaver (voice),8916,16483,10 +10465,Samwise 'Sam' Gamgee,120,1328,12 +10466,Pepper Gianini,9835,59789,3 +10467,Partisan,11902,1056298,28 +10468,Joe Patroni,10671,12950,4 +10469,Dr. Faber,8970,33489,8 +10470,Buela Douglas,47816,22122,8 +10471,Rabbi,31005,129659,5 +10472,George Lutz,11449,9274,0 +10473,Gerstead,24739,29685,6 +10474,Hawaiian,2984,1211876,14 +10475,Minor Role (uncredited),2897,1596347,262 +10476,Fake Sheriff in Flashback,9028,52999,12 +10477,Additional Voices (voice),10865,12077,14 +10478,Roxanne,36773,8256,1 +10479,Waiter,15943,117029,18 +10480,Amy Wilson,10354,27727,19 +10481,Kayley (voice),18937,7523,0 +10482,NBC Tour Guide,9403,57451,4 +10483,Rocky DeSantos / Red Ranger,9070,56897,4 +10484,Hannah Kingsley,9034,21711,3 +10485,Mr. Watson,27681,38701,13 +10486,Young Rowena,16417,1320524,10 +10487,The Old Warrior,977,14585,3 +10488,José,32093,1096850,38 +10489,Twin # 2,24254,91424,9 +10490,Coach Williams,42569,14830,5 +10491,Slipknot Band Member,11535,92314,92 +10492,RAF Officer Mac,9289,10655,55 +10493,(uncredited),5998,28071,30 +10494,Raphael,27824,99093,2 +10495,Benny (voice),45772,26209,9 +10496,Demon,25087,118263,6 +10497,Bill,39771,160627,12 +10498,Andy Warhol,3682,2456,17 +10499,Raina,29825,104998,16 +10500,Elevator Passenger #8,1637,1872824,57 +10501,Desmond Curry,28519,23608,4 +10502,The Cobra,25682,88163,2 +10503,Herbie Yocum,43342,10162,3 +10504,Doubting Thomas Minister,38554,18271,18 +10505,Young Mark,24584,1781143,9 +10506,Businessman,3780,1060036,35 +10507,Henry Geldzahler,549,101377,17 +10508,Young Hamish Campbell,197,2475,15 +10509,Christopher Laidlaw,21828,9384,7 +10510,Basketball Kid #3,165,1434991,37 +10511,Mme. Collignon,194,231607,15 +10512,Hotel Manager,1859,19552,8 +10513,Dolly Baxter,50001,95295,7 +10514,Helene Kuragina,11706,5961,6 +10515,Man by Pay Phone (uncredited),805,12011,17 +10516,Liz,17692,1296368,8 +10517,Wong Kei-ying,12780,1341,1 +10518,Vicky Rivas,215373,37946,2 +10519,Mrs. Waggner,9532,59241,17 +10520,Ripper / Tommy Noonan,9593,119232,5 +10521,Hammond (uncredited),34106,30280,73 +10522,SanDeE,2107,520,1 +10523,Sue McSween,38765,100633,9 +10524,"Captain Twombley, group chaplain (uncredited)",15497,15625,12 +10525,Tara,14293,389,5 +10526,Suzette,33680,103490,10 +10527,Harley,38043,102392,5 +10528,Halliday,18783,1606242,5 +10529,Teddy Cullinane,287,4049,12 +10530,Genpaku Amano,3780,134321,22 +10531,Detective Jenkins,47816,58563,6 +10532,Ted,62463,1780616,15 +10533,Longley,4476,118462,14 +10534,Pestov,50512,649,16 +10535,Sgt. Boulanger,975,31503,12 +10536,Shang (voice),10674,14592,3 +10537,Ethne Burroughs,10568,39800,3 +10538,Little Moonlight,10747,1173474,7 +10539,Nikki,12079,328,2 +10540,Hawker,13965,76184,5 +10541,Camille Baker,8391,54818,0 +10542,Ann Russell,41038,125312,1 +10543,Cyclist [cameo],10622,62410,11 +10544,Mary Reilly,9095,1204,0 +10545,Old Russian Lady,10003,238702,21 +10546,Captain David Nester,12764,51579,2 +10547,Kelly Foster,9423,8944,0 +10548,Martin Price,11899,12850,12 +10549,A.D.R. Director Lou,788,162323,13 +10550,Brady,22213,6486,15 +10551,Un fugitif,11876,1316264,25 +10552,Jack Williams (reporter),69605,15992,13 +10553,Parlor Assistant,1497,1456197,26 +10554,Thomas Gerard Prescott,14295,121939,14 +10555,Princess Kitana,9312,10680,5 +10556,Mrs. Deegan,786,11672,26 +10557,Carmen,33689,1331570,6 +10558,Trainer,11397,185773,65 +10559,Glum woman,11159,37052,52 +10560,Red Team #7,11535,1470303,16 +10561,Eric Liddell,9443,11854,1 +10562,Dr. Andrew Ingersoll,31947,20906,4 +10563,Foot Soldier,1497,1456533,53 +10564,Friendless,33015,8635,0 +10565,Customer in Jeweler's Shop,623,1157036,9 +10566,Tony,16351,110550,8 +10567,"Brian, Age 7",2924,1107987,15 +10568,Himself,47715,232877,3 +10569,Lopez,27380,1605353,12 +10570,Shouter - Sam the Shade,11694,12827,3 +10571,Coalman at Lettuce Fields / Man at Exercise Class (uncredited),220,94337,54 +10572,Moralès,21193,1563179,9 +10573,Eddie Warburton,10657,1187262,19 +10574,Sgt. Hulka,10890,8255,2 +10575,Rose Shimkus,39771,161357,4 +10576,Bluey,9519,3062,4 +10577,Charlie Cunningham,29787,1115118,7 +10578,Benny Southstreet,4825,41749,15 +10579,Bimbette (voice),10020,30695,11 +10580,Gary Wheeler,10390,1248,5 +10581,Anna,30363,140054,0 +10582,Marie,13346,112302,9 +10583,Yung June,32049,1070666,12 +10584,Abel,2525,22383,3 +10585,Mr. Bluster,17692,1296390,38 +10586,FBI Agent (uncredited),8467,1084840,74 +10587,Greg Czarnicki,61563,33654,12 +10588,L.T. Bonham,10632,2176,0 +10589,College Girl,11374,112052,41 +10590,Mr. Wall,2666,27752,6 +10591,Premiere Audience Member,9296,51753,11 +10592,Pardee Fleming,39833,8262,12 +10593,Jeffrey Byron,26941,9012,3 +10594,Nurse Phillips,11442,175719,14 +10595,English General (uncredited),197,549342,54 +10596,Church lady collecting money in bar,11536,47504,7 +10597,Firing Officer - HMS Chester,714,153208,22 +10598,Cornerman (uncredited),1578,25579,37 +10599,Counselor Deanna Troi,200,2393,6 +10600,Betsy,38950,1275249,7 +10601,David Aames,1903,500,0 +10602,la prostituée,60608,367116,8 +10603,Bimbette (voice),10020,60739,12 +10604,Ma,29698,110953,2 +10605,Barbizon Stagehand,1578,1032,30 +10606,Rene Sandre,104103,24299,10 +10607,Alder MacGreagor,16307,119942,5 +10608,Surgeon,36658,11013,23 +10609,Alan Appleby,32331,1524,2 +10610,Board Captain (uncredited),12311,34128,62 +10611,Extra,2897,1859762,313 +10612,Death,24746,81192,3 +10613,Natasha,96238,88947,4 +10614,Dr. Adolphus Bedlo,29056,2094,1 +10615,Eric Sloane,10222,64655,1 +10616,Danny Devlin,205054,132704,0 +10617,Tina Williams,11361,1762963,9 +10618,Dr. Enno Winkel,10801,1084,2 +10619,Isabella,23668,10768,4 +10620,Police Inspector (uncredited),15849,1497890,14 +10621,College Boy 3,39939,5375,5 +10622,Sam Harmon,299,4299,1 +10623,Kinanjui,606,10651,6 +10624,Dancer,46986,1535188,49 +10625,Reporter,117,10486,28 +10626,Arnold Teague,2102,1039,2 +10627,Joseph of Arimathaea,2428,135066,52 +10628,D.C. Reporter,31586,1179093,54 +10629,British Reporter,36797,129996,13 +10630,Roger Ames,2750,20056,21 +10631,Gunn,19142,589761,4 +10632,Burpelson AFB Defense Team Member,935,186212,14 +10633,Maj. Gouderc (uncredited),975,49435,17 +10634,Simms,10344,21091,15 +10635,Marty McFly Sr. / Marty McFly Jr. / Marlene McFly,165,521,0 +10636,Maude,9555,1461107,6 +10637,Dr. Bob,949,12799,23 +10638,Harvey,43316,141600,3 +10639,Bellman,8467,1853265,75 +10640,Righty,41160,1218549,21 +10641,Wu Ying,45861,12676,1 +10642,Teen,53150,936826,19 +10643,Alma Martin,10400,171079,17 +10644,The Man with the Plan,400,4690,9 +10645,Mrs. Harris,14429,70830,8 +10646,Fearless Leader,17711,380,4 +10647,Extra (uncredited),2897,1422183,144 +10648,Urquhart,11235,47698,3 +10649,Cook County Assessor's Office Clerk,525,488,51 +10650,Father Richard Bolen,11449,69494,3 +10651,Girl in Car (uncredited),32600,1167757,9 +10652,X,21430,5293,1 +10653,Party Guest,10436,1190706,16 +10654,Col. Tim Brown,10590,156616,30 +10655,Diane at Bar,11873,54887,9 +10656,Hugo Díaz,7305,8540,14 +10657,Feed Store Farmer,2323,111594,9 +10658,Secretary of Defense,982,89834,12 +10659,Cowboy on Pinto Pony (uncredited),11697,168043,81 +10660,Ed Mitchell,23967,42626,2 +10661,Alida,43316,19967,4 +10662,John Wallace,197,2473,13 +10663,Kumiko,8856,3134,10 +10664,Linda,314352,36653,2 +10665,Priam,10549,11857,23 +10666,Reporter,10590,216490,42 +10667,Admiral Kelly - HMS Bedford,714,742,29 +10668,Dr. Lomas,117026,22603,2 +10669,primo dermatologo,25403,1854983,21 +10670,Choir Soloist,525,122099,23 +10671,The Queen,11370,50,0 +10672,Mandy,50001,1238725,15 +10673,Kathy,18002,37759,9 +10674,Lt. Col. Moodus,10364,6168,15 +10675,Alonzo Harris,2034,5292,0 +10676,Goines,9425,16500,7 +10677,The landlord (uncredited),490,1194870,19 +10678,Probert,5279,937,19 +10679,Chef Inspecteur Louvain,26252,94944,10 +10680,Statehood Audience Member (uncredited),11697,1600501,52 +10681,Mayor Larry Vaughn,578,8608,4 +10682,,20645,1201020,17 +10683,Barker,31682,227977,6 +10684,Adolfo,43775,225028,0 +10685,Barfly,43828,1002189,25 +10686,Elvadine,19855,85278,4 +10687,Bobby Flynn,31618,12645,6 +10688,(uncredited),2721,73446,31 +10689,Paul,2034,2041,7 +10690,Linda,482,1127146,10 +10691,Corporal,197,20244,39 +10692,Mother,17170,1902,4 +10693,Keaton McCarthy,114719,97315,3 +10694,Best Man,11159,176201,23 +10695,Moglie farmacista,10867,7545,14 +10696,Vice Cop,10950,98092,34 +10697,Paula Dare,24126,36059,3 +10698,Jake Ryan,15144,140777,2 +10699,Red-headed Hostage,755,982183,20 +10700,Rachel,12454,72306,5 +10701,Demons (voice),16235,80164,29 +10702,Al's Deputy,9028,129968,29 +10703,Woman in Bakery,38509,120596,20 +10704,,28134,55152,12 +10705,Joey Giardello,10400,59674,37 +10706,Prince Cornelius (voice),28032,148116,3 +10707,Lt. Herzog,40095,16180,5 +10708,Reverend Rose,10657,15863,10 +10709,Lorraine Franklin,3587,18331,5 +10710,Peter Shepherd,8844,145151,3 +10711,Lord Belfield,606,10654,10 +10712,Don Shanks,9464,1733423,11 +10713,Nurse,10950,1836328,25 +10714,Jackie Cristofuoro,22398,6172,9 +10715,Randy Smith,26378,13979,17 +10716,Narrator (voice) (uncredited),289,1331765,60 +10717,Dr. Charles Aaron,15556,52374,4 +10718,Lara,46286,20751,3 +10719,"Lee, Younger Marshal",922,15443,14 +10720,James Valentine,2669,26867,23 +10721,Kate Cregeen,20213,7380,2 +10722,Shoula,2721,55621,15 +10723,'Uncle' Bill Wong,9404,44922,1 +10724,Philip FitzRoyce,17692,24743,2 +10725,Yuki Ichinose,10643,66153,1 +10726,Hospital Dancer,9716,1661616,73 +10727,Corbett's Bodyguard,5917,1894146,18 +10728,Wayne Lomax,13681,228,4 +10729,Police Office (uncredited),299,30005,20 +10730,Catherine Ness,117,1276,9 +10731,Priscilla,31044,1729780,26 +10732,Harold,11442,1672921,12 +10733,Wallace,14794,138563,2 +10734,Leo,15310,50762,7 +10735,Gerry Ober,2662,1581369,20 +10736,Chang Sing #5,6978,1677317,23 +10737,Club Steward,2897,104302,48 +10738,Ghost Dancer,9716,1276203,33 +10739,The Toxic Avenger,28169,103861,1 +10740,Coach Harris,14052,1230,14 +10741,Thorny,39939,52049,1 +10742,Fly,26889,96539,5 +10743,Steven M. Kovacs,9894,4756,1 +10744,Angel,17691,2757,7 +10745,Tina,9591,6885,6 +10746,Mourning Hare Krishna,14931,129331,8 +10747,Phil,12454,9191,1 +10748,The Shredder / Oroko Saki,1498,77155,9 +10749,Ring Announcer,522,16643,32 +10750,Bunny,22279,22109,5 +10751,German Speaking Boy,10708,74616,16 +10752,Alan,27824,57910,3 +10753,Robert Neville,11234,10017,0 +10754,Hooker,10849,21104,13 +10755,Virginia Palmer - 1st Victim,47886,103972,17 +10756,,73642,2468,1 +10757,Molly Dwyer,11472,57674,9 +10758,First patient in base hospital (uncredited),15497,14062,16 +10759,Dana Barrett,2978,10205,2 +10760,Keetje's moeder,42258,210966,2 +10761,Veronica,11950,4090,4 +10762,Processing Clerk,5491,1288583,9 +10763,Lou Pennino,242,156431,22 +10764,Alan Isaacman,1630,819,2 +10765,Gatekeeper,37936,558312,15 +10766,Bob Evans,151489,1895634,3 +10767,Amy,12079,6281,11 +10768,Leonard Red Crow,40490,147492,9 +10769,Priest,19200,14792,17 +10770,Police Lieutenant,20242,113922,11 +10771,Haircombing Neighbor,3784,134701,13 +10772,Matt 'Guitar' Murphy,525,7209,12 +10773,Scooter Kid #1,105,21065,28 +10774,Fenelon-Barnes,409,5475,10 +10775,Farmacista,10867,553182,13 +10776,Child World Customer #1,11873,1178314,8 +10777,Little Cambodian Girl,1995,1371450,14 +10778,Joe Young,838,12410,8 +10779,Roadie Mick,786,11675,25 +10780,Rita Keane,262,1041,2 +10781,Ken,17203,116975,18 +10782,Lucia,17464,81901,8 +10783,Mrs. Taswell,41969,127165,5 +10784,Lord Orwood,10735,20243,15 +10785,Yvette Livesay,2750,71282,11 +10786,Claudius Mansard,269,3834,6 +10787,Ronald Thompson,9354,57422,7 +10788,Rock and Roll Manager,12104,382,7 +10789,Church's Peer,10047,1077836,24 +10790,Extra (uncredited),2897,107540,244 +10791,Television Actor #3,696,33533,12 +10792,Jack,10783,66750,14 +10793,Eddie,13380,13550,7 +10794,Gast im Hotel,5991,47031,4 +10795,Janie Basdin,9087,20767,6 +10796,Officer O'Clancy,15239,199664,8 +10797,Angela de Marco,2321,1160,0 +10798,Siddharta,1689,6384,0 +10799,Mowgli,10714,58319,0 +10800,Townswoman at Tom-Tom's Trial (uncredited),25898,5738,11 +10801,,47144,38123,9 +10802,Forensic Tech,11428,31211,14 +10803,Auctioneer,5917,1894150,29 +10804,Swinger,28940,1851413,22 +10805,Extra (uncredited),2897,1183967,146 +10806,Cow Pat Keegan,43997,11355,2 +10807,Colbee,12639,8255,3 +10808,Ernest Peterson,7340,52469,17 +10809,Corporal Timothy Upham,857,4654,5 +10810,Film Director,11902,38123,13 +10811,The First Customer,10776,13524,10 +10812,Richard Vernon,11397,7675,24 +10813,Claudia,949,167501,32 +10814,,18919,1320291,19 +10815,Melissa Drake,12129,71392,3 +10816,Lucille Barnett,38554,54800,7 +10817,Claudette Rocque,36915,10742,3 +10818,German Woman,39939,1544178,15 +10819,Mrs. Miller (uncredited),678,1271047,28 +10820,Mrs. Medlock,11236,10978,3 +10821,British Ambassador,11302,1396843,12 +10822,Dr. Betty Shabazz,41478,9780,3 +10823,Statehood Audience Member (uncredited),11697,1364421,62 +10824,Haas,2102,68681,9 +10825,Captain Phil Heinemann,169,2055,7 +10826,Sunshine,21142,1507117,9 +10827,Idiota del villaggio,11216,39618,12 +10828,Phoebe,705,10611,9 +10829,Felix,261246,175919,7 +10830,Manuel,2721,17028,4 +10831,Policeman,24584,40643,16 +10832,Tim Curley,9366,6752,6 +10833,AFRS Announcer,28,103853,20 +10834,Courtroom Spectator (uncredited),73969,1106625,15 +10835,Twitchy Girl,2750,1215237,30 +10836,Celia Hoover,12479,10767,3 +10837,The artist,8816,92422,5 +10838,Harry Appleton,96238,22970,11 +10839,General,36554,33484,3 +10840,Mort Ginsberg,19157,36602,5 +10841,Taxi Driver 2,54405,175368,30 +10842,British Leader,30379,9298,7 +10843,Himself,73482,1234628,0 +10844,Robin Spitz Swallows,817,14226,9 +10845,Mira Watanabe,2990,29381,4 +10846,Dee Dee,9403,19,5 +10847,Jude,18002,9642,1 +10848,Jeanne,47943,1336109,7 +10849,Punter,2750,112231,31 +10850,Frank,141,1582,9 +10851,"""Waco"" Hoyt",18783,30303,1 +10852,Prince Vasili Kuragin,11706,12002,12 +10853,Father O'Reilly,28169,1708249,16 +10854,Sten,1907,19873,11 +10855,Jack Burns,1850,25336,2 +10856,Dick Peterson,8358,55435,6 +10857,Cliff Buxton - Dish Master,5257,4783,0 +10858,Freddie,7514,52831,18 +10859,Nun on Phone,9819,160261,17 +10860,Referee,30547,1507182,40 +10861,Sgt. McGraw,18642,83806,6 +10862,Dale,26603,1982,10 +10863,Prof. Waldman,3036,8930,7 +10864,Field Marshal Albert Kesselring,35284,14121,18 +10865,Little Steve,10050,44176,20 +10866,Guido,104103,2166,8 +10867,Deb / Flo (voice),12,14723,8 +10868,Billy 'The Kid' Bonney,38765,161314,10 +10869,Neighbor (uncredited),34106,955388,64 +10870,Kenny 'Pig Vomit' Rushton,9403,13242,3 +10871,Roddy Berwick,52782,27915,0 +10872,Infirmary Orderly,6068,1223812,20 +10873,Commissioner,35696,74587,13 +10874,Jack's Wife,28466,1282688,9 +10875,Man Turning Propeller at Airport (uncredited),289,1331777,87 +10876,Hanover,9457,15853,5 +10877,Police Chief,18,987,77 +10878,Lester,29938,98132,9 +10879,Julie Bird,8470,55317,9 +10880,Irmeli Katariina Pihlaja,2,54769,1 +10881,Tony,42987,1292,3 +10882,Lt. Blair,20424,1766032,18 +10883,Pablo,43455,118257,8 +10884,"Sandy, Girl at Party",18222,65239,13 +10885,Plainclothes Cop,11185,1769157,32 +10886,Jan,27052,96847,5 +10887,Raider (uncredited),961,1421097,13 +10888,Teenage Billy Wyatt,32331,18687,4 +10889,Lana Castel,22317,821,2 +10890,The Godfather of Soul,1374,7172,13 +10891,Mod (uncredited),10373,93848,17 +10892,Audrey Fulquard,24452,16182,0 +10893,Jitterbug (uncredited),25862,85740,9 +10894,Ketty,552,7545,6 +10895,Persian King,10351,149507,21 +10896,Connie,635,9172,7 +10897,Cecilie,102,1017,0 +10898,Maximillian,99008,4072,4 +10899,Louisa Stohler,33016,89043,5 +10900,Miriam Ellis,3309,22948,8 +10901,Sofia,9475,1137641,17 +10902,Li Niangjiu,47694,228914,4 +10903,Old Man,12516,33135,10 +10904,Bob Peters,22256,15338,9 +10905,Psycho,24746,104002,4 +10906,Hospital Dancer,9716,1093168,27 +10907,Cobb,12584,16555,6 +10908,Julot,5924,14062,3 +10909,Attorney to Kirby at Arraignment (uncredited),34106,1186832,122 +10910,Dr. Paul Vaughn,27150,97561,4 +10911,Amanda Jones,15143,1063,2 +10912,The Priest,90762,4640,3 +10913,Le Juge,36245,41624,10 +10914,Duffy,24825,158939,11 +10915,Lucy's Father,10863,139690,6 +10916,Ray Pekurny,11374,57755,1 +10917,Adam Leckie,99351,2698,9 +10918,,87481,1081132,3 +10919,Grindle,2924,156598,10 +10920,Limo Driver,1813,164419,40 +10921,Aaron Hallam,10632,1121,1 +10922,Field Marshal Sir Bernard Law Montgomery,11202,2267,17 +10923,Xu Fengxia (youth),31439,1789267,10 +10924,Valda,9598,75934,17 +10925,Ichirô no okâsan,39462,1177243,5 +10926,Henry Chinaski,10937,2295,0 +10927,Scott Summers / Cyclops,36657,11006,5 +10928,Keaty,1907,19868,5 +10929,Tito Barco,10173,1171,8 +10930,John Banning,18990,5,0 +10931,Ray Joshua,37532,1985,0 +10932,Mary Oakley,15850,10190,2 +10933,Bata,11902,85642,10 +10934,"Ricky, Helicopter Crewman",6068,76539,11 +10935,Running Deer,14676,178765,4 +10936,D.J. Mulrooney,24816,4302,0 +10937,Speaker (uncredited),15,1466740,150 +10938,Businessman,73116,84927,4 +10939,Guard,7299,27406,15 +10940,Ferrari Salesman,12476,106806,13 +10941,Gregory Reed,53862,35596,0 +10942,Vixey (voice),10948,88947,4 +10943,Alison Halman,27150,3006,3 +10944,Casino Patron (uncredited),678,1596342,26 +10945,Allan Mann,29787,37203,0 +10946,Congratulating Spectator,11873,1265400,25 +10947,Lola,47507,35075,1 +10948,Terry,9427,201013,13 +10949,Awful Truth Woman,32872,100480,39 +10950,German Sniper (uncredited),857,25753,37 +10951,Railway Official,2897,29522,18 +10952,Carmen Alvarado,121940,2051,5 +10953,4th Hood,1924,1550252,62 +10954,Nathalie,14651,49168,3 +10955,Alcee,12618,17764,2 +10956,Samantha Prescott,14295,350,0 +10957,Lee,9819,5064,1 +10958,Lace Pennamin,9294,26467,1 +10959,Amanda,17170,16171,2 +10960,Alcaide,39435,50574,12 +10961,Voice of Houston (voice),8870,72637,8 +10962,Ortega,9945,43010,9 +10963,Faye Stone,577,4158,11 +10964,Noreen Braxton,32825,4514,2 +10965,Carlos Sanchez-Verne,5333,121732,7 +10966,Whitey,30547,51518,10 +10967,GRU Officer,10724,1882506,41 +10968,Pépé le Moko,26252,11544,0 +10969,Nightclub patron,4825,121323,12 +10970,Meike,9301,58105,6 +10971,Cal,11235,116128,12 +10972,Chemist,7299,49486,9 +10973,Studio Executive #2,9296,161932,15 +10974,Lara,634,9146,9 +10975,Maria,32093,153437,44 +10976,Kathy Jordan,39867,1437604,5 +10977,Marty,11800,64908,9 +10978,Golf Course Family,88224,1015616,6 +10979,Hector,10691,90448,6 +10980,Rocco Mason,5922,3801,6 +10981,Bertha Dorset,25520,350,5 +10982,Miss Rose,16307,45467,3 +10983,Giggles,12079,84521,8 +10984,Freddy DeLois,7340,16557,11 +10985,Grandfather at Dock,11236,1542815,16 +10986,Melanie Parker,29787,104873,2 +10987,Tony,215875,5170,3 +10988,Sheriff Strong,5922,8258,4 +10989,"Gabe, the Newsstand Vendor",16806,4093,10 +10990,Marianne Dunlap,52772,92086,6 +10991,Gilberte,1628,18220,5 +10992,Quinine,24825,8874,21 +10993,Neville,12454,72312,14 +10994,Old Woman in Bath,694,1413940,11 +10995,Cookie,11446,69483,2 +10996,Biker's Girlfriend,9358,1244171,20 +10997,Artie,11933,24516,4 +10998,Nina,11129,68286,4 +10999,Barbara Schlesinger,10774,1909,10 +11000,June,37820,96460,8 +11001,Union General,961,14426,9 +11002,Kay,81001,35,0 +11003,Party Guy,2105,42288,22 +11004,L'inconnu des photomatons,194,1336073,19 +11005,Okubo Kenichi,34326,138445,10 +11006,Preservation Partier,8467,7412,60 +11007,Emmy,37917,55192,4 +11008,K store clerk,11104,1618664,7 +11009,Velma Thompson,42218,98963,10 +11010,,18692,83851,4 +11011,Number Two,817,9208,3 +11012,Prison Guard,525,122095,20 +11013,Vic,19819,85189,6 +11014,Brittany,36047,65239,0 +11015,Berko,13531,552457,7 +11016,Dr. Johnson,18417,29706,11 +11017,Mr. Smee (voice),10693,67230,3 +11018,Earl Eastman,25673,119081,4 +11019,The Bird Woman,433,8515,12 +11020,Cigarette Girl,6038,211847,14 +11021,Ian,24254,3197,29 +11022,Mr. Judson,10869,53010,3 +11023,Ms. Keane (voice),59387,81667,6 +11024,Dr. David Hawthorne,10586,1369,5 +11025,Humphrey Palmer-Jones,53879,10925,2 +11026,Minister Frank,9977,61349,18 +11027,Travis Lindsey,27993,58955,6 +11028,Perchik,14811,12988,8 +11029,Debbie Edwards (younger),3114,10191,17 +11030,Alex,400,199303,12 +11031,Chip,38043,9306,1 +11032,Maureen,249,131834,10 +11033,Pierre,15506,78292,10 +11034,Yeoman - HMS Devonshire,714,7031,26 +11035,State Judge,38554,1211,14 +11036,Mike,15037,56857,4 +11037,Queen Homunculus,229,89746,54 +11038,Bakey,26156,34691,4 +11039,James Gladstone,11591,55155,11 +11040,Cop #1,8869,61115,20 +11041,General Anatol Gogol,691,6610,5 +11042,His Friend,31995,14303,13 +11043,Architecture Student,4478,18296,34 +11044,Policeman,23114,10806,24 +11045,Milan,80350,77150,7 +11046,Melody Ragmore,59181,105078,9 +11047,Becca,10708,56538,20 +11048,Street Scum,262,157459,28 +11049,Little Pel,2750,1619526,47 +11050,Neil,40562,5725,3 +11051,Dolores,76397,28779,8 +11052,Tomás Alonso,7305,10633,34 +11053,Frayn,24828,14011,1 +11054,Lord George,14522,54445,10 +11055,Queen Tabitha (voice),28032,15098,8 +11056,Wade,1634,18262,6 +11057,Bank Manager,3595,121939,28 +11058,Howlin' Wolf,95743,17764,6 +11059,Afro Scott,18,1857463,114 +11060,Shirase,327,4989,5 +11061,Female Employee #1,788,1006368,14 +11062,Lucky Day,8388,67773,1 +11063,Lord Melville (uncredited),34106,30262,31 +11064,Mr. Thron,28597,1072,10 +11065,Dr. Marc Conant,2887,28633,18 +11066,Anne Uumellmahaye (voice) (uncredited),11591,5606,15 +11067,Coolidge,864,52819,11 +11068,Doctor,11953,96552,32 +11069,Head Waiter,6038,141493,15 +11070,Clair Riley,38951,1135967,8 +11071,Orchestra Leader,31044,1729786,35 +11072,von Braun's Assistant,8072,38903,9 +11073,"Riley ""Pretty Boy"" Duncanon",38766,16017,9 +11074,Woman (uncredited),34106,145711,89 +11075,Jedediah Leland,15,7664,1 +11076,Resort Greeter,6068,1609232,24 +11077,Cafe Patron,76,1265414,14 +11078,Rail Guard,2750,1228956,27 +11079,Milk Bottle Concessionaire at Carnival (uncredited),220,385470,57 +11080,Head Laborer,1995,1371452,12 +11081,(uncredited),12311,5788,34 +11082,Sam Schlotzman,84735,50762,5 +11083,Omroepster,58886,228605,10 +11084,Ron,12454,72308,7 +11085,Tee Tot Hightower,13681,30621,8 +11086,Encargado L.E.,1902,553868,6 +11087,Saloon Patron (uncredited),2897,1543059,282 +11088,MVA Agent Harry Roedecker / Gas Station Attendant,10796,18792,3 +11089,Pieces,400,1062,1 +11090,Lola Gump,26686,92587,10 +11091,Une religieuse,11876,1316265,28 +11092,Momma Coffie,864,1074166,13 +11093,Nick Milev,146341,1124018,0 +11094,Receptionist,20242,1212530,14 +11095,Verna Bales,29372,29814,5 +11096,Police Sergeant,12506,1213708,28 +11097,Sergeant Pierce,19958,85354,10 +11098,Michael McPhae,1793,4756,3 +11099,Seita (voice),12477,72413,0 +11100,T.V. Interviewer,15943,145174,12 +11101,Officer in Charge,7299,43454,6 +11102,Lady St. Edmund,14612,47439,2 +11103,Dr. Phoebus Farb,24452,102650,13 +11104,,28134,884,9 +11105,Dorothée,499,1151713,3 +11106,Michael Felgate,10154,3291,0 +11107,1st Controller,1924,7907,79 +11108,Kid Tacoma,26378,96061,72 +11109,Stymie's Girlfriend,10897,66896,8 +11110,Bartender,14886,77487,10 +11111,Brawler (uncredited),15263,160598,26 +11112,Betty Finn,2640,42935,14 +11113,Lurlene Haskell,23967,169293,13 +11114,Reporter,8467,1853168,21 +11115,Det. Luis Valentin,31598,40481,3 +11116,Jill Dunlap,52772,156774,5 +11117,Mr. Samaddar (Ria's grandfather),109472,1046575,4 +11118,Katherine Hillard / Pink Ranger,6499,56513,3 +11119,John,10847,1077736,16 +11120,Principal Warfare Officer - HMS Bedford,714,63608,32 +11121,Sp4 Galen Bungum,10590,57127,13 +11122,Belle Carroca,31044,53647,5 +11123,,56235,223813,5 +11124,Anatoly,8665,55582,9 +11125,Giovanna Ferra,31945,556855,6 +11126,The Reverend Lyle Blunt,11458,5502,6 +11127,Belle,37917,164719,12 +11128,Foot Soldier,1497,99871,60 +11129,Jan,21626,1513190,5 +11130,Psychiatrist #1,1647,20174,22 +11131,Maj. Jo-May Soon (KGB),43915,129842,4 +11132,Captain of Louisa,488,6600,3 +11133,Christine,314352,185225,3 +11134,Soldier with Colby (uncredited),28,43524,24 +11135,Mrs. Lusk,78373,33487,5 +11136,Earl Partridge,334,4765,6 +11137,Ruth Clark,3587,33613,7 +11138,Bruce,10950,1452110,24 +11139,Pancho (uncredited),3309,127671,32 +11140,Gen. Dwight D. Eisenhower (uncredited),9289,3648,32 +11141,Mr. Dumont,24831,101377,10 +11142,Dean,31618,3217,9 +11143,Teresa Messinger,795,11903,6 +11144,Cafe 24 Waitress,2898,21474,39 +11145,Vicki,15037,78501,13 +11146,Extra (uncredited),2897,1371322,174 +11147,Erle Kenton,11298,8516,5 +11148,Frank Marino,524,7164,10 +11149,Max,18620,32030,0 +11150,Guitar Player in Final Paris Scene (uncredited),9532,59312,29 +11151,Lily Belle,43828,13963,8 +11152,Karl Swanson,8467,153459,12 +11153,Bus Driver,788,27447,11 +11154,Saloon Floozie,43828,1080619,41 +11155,Jeff Reed,18417,26066,7 +11156,Marianne,36245,37464,9 +11157,Ahmad Abdul Rahim,19050,90164,5 +11158,Bondage Queen,95627,946477,20 +11159,Dr. Françoise Barre,2887,136761,7 +11160,(uncredited),194,236132,52 +11161,Preston Waters,13962,76130,0 +11162,Cowboy,524,1738942,27 +11163,Douanier 1,2110,1677014,15 +11164,Old man addressed by the monk (uncredited),490,1194876,30 +11165,Miss Louisiana / Bunny Miller,19157,1665707,16 +11166,Mr. Gruffydd,43266,12308,0 +11167,Right Arm,18,183500,11 +11168,Paul Girl,153141,1105084,7 +11169,GRU Officer,10724,94624,39 +11170,Santini,5924,161405,15 +11171,The Father,26422,95345,2 +11172,Pancho Delgado,7305,158423,26 +11173,Alan White,28597,1666903,11 +11174,Boisvert,42832,123933,11 +11175,Janice Maretto,577,7796,4 +11176,Suzie Grogan,24831,1754973,20 +11177,Barnaby's Minion (uncredited),25898,97999,20 +11178,Leo Reisman,43199,113654,8 +11179,Garry,9475,60018,10 +11180,Brothel owner,3780,1128053,32 +11181,Carmen Ronzonni,19050,123898,3 +11182,Himself,2300,1315451,28 +11183,Sararîman,11830,123859,20 +11184,Reporter,5917,1894161,48 +11185,2a Donna linciaggio,10867,129571,30 +11186,Milt,12309,1242423,15 +11187,Ishmael Chambers,10219,569,0 +11188,Lt. Saavik,157,1819,9 +11189,Pvt. Penn,11589,78089,19 +11190,Michelle,12454,72318,19 +11191,Jack,2021,20766,0 +11192,Doctor Brown,125413,2645,3 +11193,Cop,50123,1232592,15 +11194,Narrator,17908,18688,5 +11195,Gus,49410,975731,0 +11196,il padre di Peppino,11216,134215,14 +11197,McEnroy,11333,1441043,5 +11198,Family Member,11234,161149,12 +11199,Professor Pearson,15849,101742,8 +11200,Anethe Christenson,13526,5025,12 +11201,Jackie O'Shea,10162,2481,0 +11202,Det. David Sutton,6951,7672,6 +11203,Antoine de Saint-Exupery,78802,3999,2 +11204,Klaus Barbie,52366,1086,22 +11205,Agostino,10867,553185,17 +11206,Fred P. Chaney,30690,95024,0 +11207,Molly De Mora,25796,59449,1 +11208,Katherine Henley,11980,12519,2 +11209,Diane,33367,2630,0 +11210,Winnie the Maid,18417,44404,8 +11211,Col. Braggart,11008,67784,12 +11212,Sincere,12888,104779,1 +11213,Jack,28736,81693,9 +11214,Infantry Colonel,2604,3211,27 +11215,Jake,40220,167495,1 +11216,Khayman,11979,27752,7 +11217,Hannele (voice),29204,172280,6 +11218,Jack Lawrence,12499,7904,1 +11219,Farva,39939,56251,3 +11220,Bill Kraus,2887,1327,23 +11221,Ed,19819,18977,4 +11222,Matron,22023,1577167,31 +11223,President Widmark,11379,653,9 +11224,Kirby's Attorney (uncredited),34106,13969,35 +11225,"Sarah, George's Wife",12122,169077,6 +11226,Francis Beaumont,10534,56930,10 +11227,Parade Veteran (uncredited),2604,26471,90 +11228,Cigar Girl (uncredited),9716,1661657,115 +11229,Beth,20438,1514686,1 +11230,Helene Hale,25430,38236,48 +11231,Young NVA Lieutenant (uncredited),10590,127451,53 +11232,Ingemars Mutter,8816,56393,2 +11233,American GI Cook (uncredited),11202,116645,40 +11234,Sarah,39428,2958,3 +11235,Pete Bradley,31978,108668,2 +11236,Harry Winston Dancer,9716,1661601,61 +11237,Stanley Spector,334,4779,10 +11238,Giulietta Guicciardi,13701,3124,8 +11239,Miss Moneypenny,660,9878,10 +11240,Perez,709,109623,19 +11241,Stove (voice),10020,81842,15 +11242,Dave Garroway,11450,8246,23 +11243,Magician,45671,9601,4 +11244,Leading Seaman - HMS Devonshire,714,17276,27 +11245,Head Saleslady,53617,83400,11 +11246,Scott Woods,9464,1733424,12 +11247,Miss Piggy / Fozzie Bear / Sam the Eagle / Animal (voice),10874,7908,5 +11248,Andy,11812,81685,6 +11249,Bobby Drake / Iceman,36657,11023,16 +11250,General Faversham,10568,95027,4 +11251,Stuart Besser,11232,23626,2 +11252,Cherry Valance,3089,14502,6 +11253,Jack Underhall,11975,1332339,18 +11254,Margaret McKinney,5333,43626,2 +11255,Murray,10379,64944,5 +11256,Scott,26958,11804,8 +11257,Althea Leasure,1630,7621,1 +11258,Rudy's mother,19324,28779,5 +11259,Jessica,15745,10696,3 +11260,Manny,46029,23215,6 +11261,Col. Heinz - Strasser's Aide (uncredited),289,33074,78 +11262,College Student,13526,10130,17 +11263,Konstantine,161795,649,5 +11264,Mechanic,43832,1434259,33 +11265,Petula,15940,3293,0 +11266,Kibitzer in Blue Sky Club (uncredited),678,115995,16 +11267,Billy,29343,103576,11 +11268,Kid,16094,79320,0 +11269,Shane,36943,1114601,0 +11270,Rizzo,11001,6110,6 +11271,Brigadier General Dreedle,10364,40,9 +11272,Barfly,43828,1287871,39 +11273,Sgt. Hoke Moseley,14931,10430,2 +11274,Congratulating Spectator,11873,1265394,15 +11275,Hostage Girl,949,37252,40 +11276,London Bobby,24750,22132,18 +11277,Vin,16643,10960,8 +11278,Fay Grim,37410,7489,2 +11279,Tanh,2731,27616,6 +11280,Dr. Elizabeth 'Libbie' Bowen,2625,5313,1 +11281,Rock (voice),13225,1107519,19 +11282,Extra (uncredited),2897,1422179,115 +11283,Restaurant Patron (uncredited),34106,164809,69 +11284,Bunge,339428,1465295,7 +11285,Lieutenant Colonel Barnsby,17339,3,0 +11286,Barbara,41969,72708,4 +11287,Harry Lewis (Present day),66597,827,0 +11288,Boy in Field,8840,1074682,16 +11289,Sarah,12618,31649,17 +11290,Tom Destry Jr.,43828,854,0 +11291,Lacey Party Guest,703,100614,20 +11292,Rosalie's Father,56162,3763,4 +11293,Oskar Kokoschka,56934,20239,2 +11294,Tomas,966,14530,13 +11295,Max,28387,78190,4 +11296,Beat Poet (voice),29204,13591,8 +11297,Bill Lonigan,30352,43774,24 +11298,Member of Atomic Commission,28973,1393334,16 +11299,Le secrétaire du commissaire,36245,37140,19 +11300,Daniel's Attorney,788,156192,20 +11301,Hank Alano,9296,13550,7 +11302,Jerry Stiller,73462,6914,4 +11303,Lieutenant Zimmerman,15497,78307,9 +11304,Mikey,11361,1762960,7 +11305,Gilbert Lowell,14052,11085,1 +11306,Philip,17044,6162,3 +11307,Spider Boy,9613,1527825,8 +11308,Alan Oakley,15850,117087,0 +11309,Molly Roll,12618,39730,12 +11310,Marty,19819,4040,8 +11311,Evans,43266,14691,17 +11312,Joe Green,14522,55468,13 +11313,Guard Johnny Mack,638,1240,12 +11314,Marianne Thornberry (voice),14317,1212225,15 +11315,Vince Massler,299,152682,14 +11316,Dr. Savran,8665,20425,5 +11317,Masatoyo Naito,11953,1484285,13 +11318,Walter Paisley - Bookstore Owner,11298,102441,20 +11319,Father Barry,62463,107729,4 +11320,Raider (uncredited),961,1123098,11 +11321,Housekeeper in Room 174 (uncredited),33680,977583,23 +11322,Alec,47588,1640,0 +11323,Bystander #2,105,160343,33 +11324,Millie Michaels,26686,58251,5 +11325,Skier,17692,1296385,31 +11326,Ashland,2124,9596,10 +11327,Orderly,1073,945486,9 +11328,Jack Abel,11337,60205,8 +11329,Brendan,19797,217510,6 +11330,Jennifer,140519,3123,2 +11331,George,117,1274,7 +11332,Morgan,36047,15012,9 +11333,Stathis Borans,9426,20211,2 +11334,Kitty Farmer,141,5151,5 +11335,Ray (Raymond) Robertson,17203,2440,5 +11336,Eddie Lee,6978,168246,6 +11337,Dr. Paul Stuart,41516,153443,5 +11338,German Banker Refused by Rick (uncredited),289,19551,48 +11339,Sam,47942,23915,14 +11340,Butcher,40095,1708458,13 +11341,"Pilot ""Chili Bean"" Ramos",11422,102209,15 +11342,Minor Role (uncredited),2897,115608,275 +11343,Pope,9946,1173,9 +11344,Ramiro,18079,1313069,13 +11345,Melissa,36094,10449,11 +11346,Mrs. Bunting,53714,148743,6 +11347,Extra (uncredited),2897,1623341,62 +11348,Kurat Benzer,890,14634,4 +11349,Miles Logan,11001,78029,0 +11350,Bill,29224,1092639,9 +11351,Corbett's Bodyguard,5917,116424,21 +11352,First Cab Driver,11576,89989,31 +11353,Tomas,4307,36283,10 +11354,Animal Control Man,6951,156666,10 +11355,Isaac (uncredited),14811,38068,36 +11356,Aunt Ethel,215373,169086,14 +11357,Miss Millie Gaskill,22328,71392,4 +11358,Kasia,38509,120589,11 +11359,Grandpa Fred,15144,85409,12 +11360,Kirby's Assistant (uncredited),34106,96722,108 +11361,The Hoggetts' son-in-Law,9598,9380,14 +11362,Killer,9877,72117,25 +11363,Mary Drake,38715,97993,3 +11364,Rose 'Rosie' Mundy,5332,32990,4 +11365,Anthony Montelli,16235,4521,1 +11366,Hustler,1907,19874,12 +11367,Moira Joseph,25934,117549,9 +11368,Babette,3587,29408,3 +11369,Debra Lusanne,61563,11150,1 +11370,Doctor,19200,9221,11 +11371,Sammy,415072,121288,12 +11372,Lupo's Assistant,2140,1847201,12 +11373,Rebecca,112991,17495,1 +11374,Young Marjorie,18683,1335880,14 +11375,Reynaldo,10549,16927,9 +11376,General Savitsky - Duchess' Consort,1859,13343,25 +11377,Audition Record Producer,58985,31028,7 +11378,Dwight Mercer,1634,34,7 +11379,Mantenuta del Barone,10867,553177,8 +11380,Frank McGraw,11415,7909,9 +11381,Scooter Kid #2,105,158713,29 +11382,Richter Paul Z. Graff,17770,6168,4 +11383,Piano Teacher (uncredited),3309,133459,55 +11384,Rafe,16229,21593,1 +11385,S.W.A.T. Team Member,11001,1568541,44 +11386,Doctor Beverly Crusher,200,2392,5 +11387,Owen Jenkins,10860,26486,10 +11388,Prot,167,1979,1 +11389,Barney,57575,115330,10 +11390,Steve Nisser,27993,54193,10 +11391,Nurse (uncredited),578,124243,25 +11392,Bernard Shaw,9977,57904,8 +11393,Mr. Ian Johnson,623,158293,12 +11394,Julian Washington,9563,36424,5 +11395,Silone,29743,128075,11 +11396,Badger (voice),10948,53010,8 +11397,Dr. Hackler,10796,1752557,19 +11398,Roy Sweeney,18551,3085,2 +11399,Tony,9462,240168,16 +11400,Eric Dittmeyer,9066,22133,12 +11401,Palm Reader,76,146859,6 +11402,Detektiv,68569,1846,9 +11403,Sweater Friend,8467,1853259,67 +11404,Emily,696,10448,5 +11405,Ronald 'Fatty' Elster,40952,3013,4 +11406,Mrs. Duchin,43199,100779,7 +11407,Valerie Alston,41590,12656,1 +11408,Wilhelmina Bertha Packard (voice),10865,84323,9 +11409,Lavinia,9034,4038,1 +11410,Young Honeymooner Mrs. Hoffman (uncredited),33680,103498,18 +11411,Potter,29067,123900,7 +11412,Brucey Madison,27472,55265,3 +11413,Constance Trentham,5279,10978,2 +11414,James Neubauer,50225,4940,3 +11415,Crew Member,1497,65171,31 +11416,Amelia Kavan,2757,2617,4 +11417,Willis Grinnel,1999,20542,5 +11418,Captain Trantor,28893,6465,8 +11419,Secret Service Agent - Miami Convention,2604,118757,73 +11420,Lem Axelrod,21801,1199748,9 +11421,Alica Detroit,41760,40403,1 +11422,Elizabeth,24816,5829,2 +11423,Punk,32043,1329280,7 +11424,German Man,39939,49201,12 +11425,Rapper,9716,1661628,86 +11426,Extra (uncredited),2897,25579,137 +11427,Rosencrantz,10549,9191,10 +11428,Planchet,11370,20800,13 +11429,Friar Felipe,32093,8728,4 +11430,Julian,24254,91439,25 +11431,Carla Pelf,4988,9898,5 +11432,Mr. Milton Clark,2984,29308,10 +11433,La Saraghina,422,5687,8 +11434,Natalie Powell - Age 6,167,1991,20 +11435,Eva,469,6395,1 +11436,Praetor Hiren,201,52760,15 +11437,Reporter (uncredited),15,857,64 +11438,Agnes,10238,7569,0 +11439,the bespectacled desk clerk,24005,114961,31 +11440,Eliezer,2525,11841,23 +11441,Officer Waters,9776,38951,21 +11442,Gunman in Leo's House,379,1281528,21 +11443,Julie James,3597,33259,0 +11444,Alice Bloomfield,76397,66221,3 +11445,Magistrate,197,166258,26 +11446,TV News Anchor,9532,1576976,22 +11447,Boy at the Beach,4338,53283,27 +11448,Eastman,76411,94998,8 +11449,Fred,10326,155996,12 +11450,Copa Waiter,1578,2554,23 +11451,Nigel Thornberry (voice),14317,13472,3 +11452,Hotel Manager (uncredited),33680,120738,19 +11453,Gnessi (uncredited),14811,1135860,34 +11454,Donny Ray Black,11975,73589,11 +11455,Nurse Susan Gallagher,814,14472,11 +11456,Mr Sidey,64398,577669,4 +11457,Hunk,59181,1317732,18 +11458,"Emma, Lintz's Maid",15170,43853,3 +11459,Grace,10647,4301,6 +11460,Butch (as Oscar Kawagley),129542,61967,0 +11461,Maurice (voice),10020,170970,6 +11462,Semelovsky,10724,653,4 +11463,Ruth,99826,8792,3 +11464,Vera,215373,20005,19 +11465,Bus Passenger #2,1637,1734769,15 +11466,Nathan Grantham,16281,15721,12 +11467,John Gage,4478,4135,0 +11468,Gwen Turner,2293,16484,5 +11469,Professor Andoheb,31498,30417,3 +11470,Waitress,9032,60959,20 +11471,David 'Davey' Rolf,13549,44691,5 +11472,Cheech,20075,11159,0 +11473,Rudy Yellow Lodge,50123,57448,1 +11474,Mrs. Buxton,210092,92959,5 +11475,Mary Phillips,37718,183407,7 +11476,Tootsie Schäufele,10801,31444,6 +11477,Drummer,15037,49002,10 +11478,Chaplain,45827,15668,10 +11479,Voice on Jetsons (voice),9079,27517,17 +11480,Kent,9296,82821,17 +11481,Boy in Shantytown,22023,1577165,29 +11482,Buster,310431,2277,5 +11483,Antonio Berrutti,269,3832,4 +11484,Frank,11635,23659,1 +11485,Bryan MacKenzie,11862,59222,4 +11486,Anna Sage,39771,7071,2 +11487,Jackie,267188,69122,3 +11488,Vasquez,8584,96322,19 +11489,,10466,14331,20 +11490,Helga,53617,1033087,7 +11491,Colonel,2897,29521,13 +11492,Mr. Siringo,39833,29363,3 +11493,Tony Belinksy / Pete Belinksy (voice),29204,161383,0 +11494,Extra (uncredited),2897,1421032,171 +11495,Sgt. Harry G. Wells,11880,28848,0 +11496,Reggie Ray,11397,77174,17 +11497,Cantor,31005,129660,6 +11498,Vincenzo 'Vinny' Santorini (voice),10865,161860,7 +11499,M. Collignon,194,32092,14 +11500,Sergei Barsov,691,10463,9 +11501,Lydia,1890,25187,4 +11502,Dr. Septimus Pretorius,229,2925,2 +11503,Mini-Me,817,10987,7 +11504,Leonard Huff,9771,18982,7 +11505,Legion Commander,2604,21523,24 +11506,Jim,10937,21757,4 +11507,Beta Zombie,15762,106968,20 +11508,Khalifa,10568,3673,0 +11509,Hannah Unger,27472,1224165,4 +11510,Emma Newton,21734,7667,4 +11511,Guard Mike,638,9291,8 +11512,Ticket Agent,20242,84323,7 +11513,Tom the Priest,476,6471,9 +11514,Hashida's Mother,14587,142572,21 +11515,Bozo,15239,104593,5 +11516,Tibor,24825,144604,7 +11517,Secretary,69605,556838,16 +11518,Mr. Witherspoon,580,135650,15 +11519,Trevor McKinney,10647,9640,2 +11520,Giuseppe Bragana,5155,42411,6 +11521,Shelley Snipes,10208,1533,12 +11522,Usher,814,1660178,33 +11523,Don Vito Appolini,124963,21736,3 +11524,Taxi Driver 3,54405,1748941,31 +11525,Farm Instructor #3,1647,5941,34 +11526,Lady Melville (uncredited),34106,1221283,129 +11527,Sir Andrew Charleson,41166,1327,4 +11528,Fog,18,7400,9 +11529,Flight Attendant,954,1220107,24 +11530,Villager of Tullymore,10162,1609671,48 +11531,Father Adelfio,11216,14151,10 +11532,Ranger Margaret (voice),14444,2395,0 +11533,Dr. Sandy Napier,11458,26715,7 +11534,Justin,2105,88507,16 +11535,Herself,9593,44051,12 +11536,Bob,9819,6486,7 +11537,Mrs. Pearce,11113,89895,7 +11538,Villager of Tullymore,10162,1609655,31 +11539,The Youth,59401,50962,0 +11540,Councilman Harris,33250,152713,8 +11541,Angel de la Guardia,11655,2372,1 +11542,Joseph (uncredited),15,1422389,109 +11543,Claire Niveau,9540,35341,1 +11544,Mrs. Harper,13555,1012479,2 +11545,Policeman Nel,12506,1492650,13 +11546,Clergyman,2897,1447025,49 +11547,Freeborn Gage,129628,7868,4 +11548,Billy Baker,21352,87957,3 +11549,,47144,1043275,12 +11550,Commissioner Lynch,36259,6487,2 +11551,Computer Store Manager,11859,1434041,13 +11552,Officer Paski,2675,1956,4 +11553,Damien - Student,5257,42387,15 +11554,John,36220,57110,1 +11555,The Info Booth Clerk,9464,1733432,20 +11556,Priest,16806,6718,15 +11557,Warden Zappa,22910,102645,8 +11558,IRS Agent,3682,28033,14 +11559,Big Boy Waitress,10950,33676,29 +11560,Mrs. Calloway,11545,935,7 +11561,elle-même,64567,1972,11 +11562,Villager,229,13791,46 +11563,Elke,249,1583757,16 +11564,Geary,2291,1206,5 +11565,Sniper,8470,52650,15 +11566,Minnie Castevet,805,4970,2 +11567,Miss Arkansas / Pammy,19157,1665711,19 +11568,George Denver,30352,18977,23 +11569,Prof. Gruber,30202,105824,7 +11570,Doi,34326,239506,12 +11571,Attaglia,11524,71347,5 +11572,Hagar,2525,25788,18 +11573,Juana,26165,98357,0 +11574,Nobukado Takeda,11953,70626,1 +11575,Le client aux endives,194,240388,29 +11576,Lucy Peters,24739,11756,3 +11577,Petra,966,14534,10 +11578,Extra (uncredited),2897,152706,112 +11579,Victor Romero,36915,12056,10 +11580,Abe,10747,78087,15 +11581,Achmed Abdullah's Henchman,2897,4355,28 +11582,Karak,10303,1076197,7 +11583,Additional Voice (voice),9016,61968,24 +11584,Fernand Mondego,11362,529,1 +11585,Sacha,125945,1888568,12 +11586,Kronk (voice),11688,9657,6 +11587,Raoul,4547,20309,3 +11588,Gwen Saunders,8491,55266,2 +11589,Leo Bloomenfeld,31598,21283,6 +11590,Helen Rosemond,796,7071,4 +11591,Dr. German Stone,17770,3211,9 +11592,Bill Gluckman,13411,31070,6 +11593,Flight Lt. Timothy Webb,43915,29859,3 +11594,Tommy Kovic,2604,1044946,14 +11595,Dr. Canterbury,21866,13263,9 +11596,Dr. Cabot,30175,9806,6 +11597,Joe Grant (as Charles Rogers),73969,102500,1 +11598,Marion Crane,539,7302,3 +11599,Japhet,2525,25783,15 +11600,Hoagie Newcombe,580,3895,3 +11601,Ben,10937,13661,10 +11602,Jimmy Brown,9464,856,2 +11603,Pilot Julio César Ferradas,7305,1872755,30 +11604,Lt. Dietrich,935,1332529,9 +11605,Sandra,11980,1525535,8 +11606,Jim's Mother,2105,54586,14 +11607,Lots Frau,2525,25789,11 +11608,Ben Blum,12122,6916,7 +11609,Toecutter,9659,26060,2 +11610,Babe's Father,10518,14795,8 +11611,Melissa,33016,1029004,7 +11612,El Scorcho,22023,1577169,33 +11613,Michael Kellam,12154,26472,1 +11614,Captain Jean-Luc Picard,201,2387,0 +11615,Dr. Graves,18111,82685,6 +11616,Sir Te,146,1623,5 +11617,,21028,1190398,11 +11618,Latique,22314,91508,9 +11619,Sondra Dorio,2124,21818,3 +11620,Emir Yousef,12704,25808,7 +11621,Hooker,27346,101611,4 +11622,Jose,7514,52815,2 +11623,Alex West,1995,8784,4 +11624,Neighbor Lady,403,1403817,11 +11625,Bobbie Joe,765,11751,3 +11626,Captain Christopher 'Skipper' Sheldon,10534,1229,0 +11627,Josy,2110,21668,9 +11628,Joey,13536,17051,1 +11629,"Garrett ""Uncle Bud"" Stoker",25501,6905,3 +11630,President Richard Benson,30379,8655,3 +11631,Mrs. Morgan,10406,16131,13 +11632,Ginger 'Character' Powell,25862,2670,0 +11633,Sheila,638,3270,28 +11634,Jeffrey Cordova,29376,589000,4 +11635,Leah Blier,2613,8534,3 +11636,Bounty Fisherman #1,36355,135571,4 +11637,Tennessee Steinmetz,14136,67393,3 +11638,John,11236,1542812,12 +11639,Sarah Hawkins (voice),9016,12133,6 +11640,Officer Swift,23223,182372,5 +11641,Nicoli Koloff,1374,15993,6 +11642,Johnny Fontane,238,3144,15 +11643,Kevin,220976,127098,10 +11644,Peter,14612,1163671,5 +11645,Cop #3,3595,1456742,25 +11646,Donna,201581,54124,2 +11647,Karl,10518,3174,6 +11648,Minor Role (uncredited),2897,1613413,267 +11649,Marcia Linnekar,1480,94889,5 +11650,Lillian,949,17358,44 +11651,May,62463,1780602,9 +11652,Champa,1689,261320,11 +11653,Mrs. Hortense Feuchtwanger,24452,114527,10 +11654,La femme du fermier,11876,18557,22 +11655,Knight (uncredited),490,403150,14 +11656,Policeman,15902,1196243,1 +11657,Preservation Partier,8467,1853190,48 +11658,Vito,39867,1437603,4 +11659,Anti-Abortionist,28047,12797,15 +11660,Extra (uncredited),2897,1421810,93 +11661,Reporter,117,92119,27 +11662,Matt,11449,98233,8 +11663,Eddie Mars,910,2673,2 +11664,Kaa (voice),9325,34759,5 +11665,Liz Borden (as Sherry Bendorf),85160,45375,2 +11666,Zombie Go-Go Girl,40095,97619,12 +11667,Sara,2034,8170,8 +11668,Paul Grogan,24831,18647,19 +11669,Thoreau,62488,6474,2 +11670,Bobby Tuttle,39867,150652,1 +11671,Mrs. Wintry,3092,31525,2 +11672,Hotel Guest,18692,8437,5 +11673,Gary,22398,50217,5 +11674,Dr. Eggelhoffer,3085,13361,18 +11675,Jay,858,3026,9 +11676,Malcolm / Robert Stockman,17133,12074,7 +11677,Melissa Anne Montgomery,49365,1660633,8 +11678,Yuri,2084,2406,3 +11679,Head Nurse,17464,42751,9 +11680,Sadie,18002,41381,5 +11681,Alfred Gordon,14522,1538900,11 +11682,Coach Ed Gennero,20704,1210,1 +11683,Lord Rayden,9312,38559,0 +11684,Plainclothesman (uncredited),3085,124882,25 +11685,Ambassador's Wife,50512,1352505,12 +11686,Alice Nelson,9066,1224522,9 +11687,Shari,11374,40279,3 +11688,Miss Dietrich,42517,45285,7 +11689,Irene,15144,119228,27 +11690,M.C. Cinderella Club,15310,56902,13 +11691,Caterer,10603,1748119,43 +11692,Burpelson AFB Defense Team Member,935,1063405,17 +11693,Scientist,18,1857440,82 +11694,Lady in Waiting to the Queen,16176,1860665,18 +11695,Hawkins,709,14333,14 +11696,Lulu - Red Team,17971,1081814,14 +11697,Mountain Climber,21736,136283,3 +11698,Cheng Chiu On,12481,19429,0 +11699,Frank Romano,242,1209294,34 +11700,Karol Karol,110,1145,8 +11701,Selena,9651,6450,0 +11702,Colonel Bat Guano,935,4966,3 +11703,Jack's Trainer,36056,114808,4 +11704,Farmer,25430,102069,57 +11705,Amy Schraff,1443,110548,17 +11706,Euphemia Phillips,25934,1847227,15 +11707,Krushinski,29355,57755,2 +11708,Pussy Man,10354,154759,16 +11709,TV Producer,10208,60949,7 +11710,Irma,580,1673754,28 +11711,Track star,23668,90443,10 +11712,Bonnie,33135,3128,0 +11713,Miss Swaffer,1959,8534,3 +11714,Beach Interrogation Officer,409,47486,39 +11715,Corrections Officer,525,7908,44 +11716,Furman Vux / Pirate / Bandit,10134,1812173,6 +11717,Mary Ellen,13346,112303,10 +11718,Cowboy on the Set at Woltz's Studio (uncredited),238,2870,42 +11719,,33356,146756,2 +11720,Executive Type,18683,1430526,19 +11721,Fred Clarkson,18783,2177,3 +11722,Capt. Vinton Maddox,11422,5563,2 +11723,The Balladeer (voice) (uncredited),4011,33162,25 +11724,Charles Keating,1630,2505,5 +11725,Corner Man,153141,1770539,25 +11726,KGB Guard,10724,105209,22 +11727,Strange Hitchhiker,32332,2228,3 +11728,Alter Fixer,9589,1728635,11 +11729,Agent Brick Davis,17708,1219226,12 +11730,Nate Pope,9294,2178,2 +11731,George of the Jungle,10603,18269,0 +11732,Kafu Selim,983,14756,6 +11733,Seikura,24825,566939,5 +11734,Martha Oliveras,4133,65421,24 +11735,Jennings,16938,1422741,22 +11736,Sgt. Coleman,37305,14064,9 +11737,Party Goer,11374,75755,39 +11738,Proctor,11895,141429,7 +11739,"Miss Cardell, Sophia's Nurse (uncredited)",31527,8515,10 +11740,Extra (uncredited),2897,1417927,169 +11741,Bus Driver,11017,58198,15 +11742,Flick,41969,1049406,6 +11743,Tess,31044,97418,46 +11744,Historian (voice),11639,214813,14 +11745,Robert Merrill,73969,29536,5 +11746,Walt,15762,102441,8 +11747,Canavan,35292,1452763,21 +11748,Assistant Salt Lake City Police Desk Clerk,10866,552465,8 +11749,Rachel,44308,25654,1 +11750,Goldie Wilson,105,84494,15 +11751,Margaret,10805,1651542,11 +11752,African Mom,31586,42933,23 +11753,Cop - Brian,379,16459,17 +11754,His Butler,31995,552407,1 +11755,Danira,20123,85646,6 +11756,Ms. Davis,10950,158719,21 +11757,Lady Klucky (voice),11886,58770,8 +11758,Bob,9613,17638,11 +11759,Highway Patrolman,9945,156605,11 +11760,Frenchie,18783,120700,9 +11761,Melissa Egan,3597,8256,7 +11762,Bernie Lomax,8491,55267,3 +11763,Governor,11570,127020,9 +11764,Kuzco (voice),11688,60950,0 +11765,Maximillian | Pauly | Guido,12158,776,0 +11766,Little Inuit Girl,1995,1371454,17 +11767,Villager,966,19448,17 +11768,Hammy Alien,522,55959,61 +11769,James Bond,691,10222,0 +11770,Expressman (uncredited),34106,30243,140 +11771,Leopold von Baden,12632,11071,5 +11772,St. John Talbot,172,2076,7 +11773,Dell Rep (Bill Rudolph),1647,44248,8 +11774,Himself,85472,70146,3 +11775,"Lüding, Konzernherr",4762,36253,14 +11776,Sharks Center,9563,1741403,37 +11777,Missionary,10303,1076202,13 +11778,"Dale ""Mac"" McKussic",10396,2461,0 +11779,Zoe,31586,1179091,49 +11780,Jeremiah Peet,11380,58924,3 +11781,Extra (uncredited),2897,75355,209 +11782,Guard,1647,124365,15 +11783,Mr. Harper,13555,74641,3 +11784,Robert Shannon,99351,13995,1 +11785,Jack Merridew,10847,61029,1 +11786,zia Lola,145925,1897663,8 +11787,Policeman 'Costello',43089,129270,5 +11788,Lt. Commander Data,200,1213786,2 +11789,Vincenzo,33689,6541,5 +11790,Andor Knorr,17771,227,1 +11791,Grocery Store Cop (uncredited),949,1502517,61 +11792,Filippo,145925,1123326,20 +11793,Reporter at Wedding (uncredited),15,117036,71 +11794,Sergeant,169,14328,31 +11795,Cougar,744,57082,6 +11796,Sato,8856,56123,8 +11797,Daniel Webster,55731,1893,2 +11798,Anne Olson,19958,75710,4 +11799,Mr. Christenson,13526,6795,18 +11800,Dr. McElroy,2637,27682,10 +11801,Mrs. Pine,6951,203022,8 +11802,Admiral Roebuck,714,10746,12 +11803,Paul Baldino,1443,17242,15 +11804,Herself (uncredited),2757,2229,24 +11805,Harry Winston Dancer / Hospital Dancer / Ghost Dancer / Groucho Party Dancer,9716,1661605,65 +11806,Martin (voice),11704,3033,6 +11807,Gwen Moss,32872,10478,1 +11808,Vadim Radtchinko,8665,133,2 +11809,Stewardess,24739,43859,14 +11810,Senator,25430,32221,15 +11811,Augie Santana,95627,1552812,16 +11812,Willa,12704,41249,5 +11813,Herbert Carruthers,11697,8520,17 +11814,Stepmother,16176,14298,1 +11815,Mrs. Archer,10436,12522,18 +11816,Dream Sequence Hooker,8584,87739,15 +11817,Sgt. Slaughter (chief soldier),22328,120105,10 +11818,Radio officer (uncredited),15497,40577,14 +11819,Accuser,11694,151522,10 +11820,Doctor Arthur Bramson,31682,15992,5 +11821,Jonathan Knox,9717,13022,1 +11822,Vondo / Pirate / Bandit,10134,1812179,13 +11823,Cliff Spab,29444,10822,0 +11824,Mr. Stuart,71701,216255,11 +11825,Fortinbras,10549,17328,7 +11826,Phileas Fogg,2897,14261,0 +11827,Rick McCarthy,6171,2250,15 +11828,High School Girl,55420,1799813,17 +11829,Mem,27052,96846,4 +11830,Fredo Corleone,238,3096,13 +11831,Amy,29343,103579,16 +11832,Lugia (voice),12599,134948,7 +11833,Stephen Reinhart,29067,2787,1 +11834,Ann Kay - TV Specialist,28973,72717,4 +11835,Minnie Huxley,13550,1091873,9 +11836,Brasilianischer Geburtstags Junge,2675,28047,14 +11837,Bob Summerfield (uncredited),539,117602,24 +11838,Maria Bolkonskaya,11706,553896,15 +11839,Motel Clerk,114719,1317808,5 +11840,,76996,79105,1 +11841,Amity Point Lifestation Worker (voice) (uncredited),578,488,18 +11842,Dr. Raymond Stantz,2978,707,1 +11843,One Big Happy Family Member,32872,1720973,18 +11844,Barone,2721,15402,18 +11845,Abbé Faria,11362,194,2 +11846,Silas,27526,78084,15 +11847,Baptism Preacher,635,1262960,15 +11848,Chief's Sidekick,8584,162690,21 +11849,Whitney,33542,1235524,8 +11850,Lance,17168,9306,7 +11851,Father,9746,58858,2 +11852,Ronnie,9516,9575,3 +11853,Stig-Helmer Olsson,16026,79056,0 +11854,Tommy Eatenton,10860,1193343,12 +11855,Julie Moore,10590,289,2 +11856,Hitman at Verna's,379,71659,29 +11857,Pink's Mother,12104,71247,0 +11858,Serapkin,43915,20128,10 +11859,Lt. Anderson,117,1279,12 +11860,Science Officer,193,3981,15 +11861,Mi Ling,30202,105826,9 +11862,Willie Stein,10774,13938,20 +11863,Senior Inspector Cheung,10775,1139045,13 +11864,Mrs. Keeper,10137,11806,17 +11865,"William ""Buckwheat"" Thomas",10897,67382,13 +11866,Joe Banks,2565,31,0 +11867,3-D,165,1953,6 +11868,Midori,70581,16145,1 +11869,Roman,125945,1888566,9 +11870,Extra (uncredited),32049,25934,46 +11871,Little Creek (voice),9023,56658,2 +11872,Alan Brooks,43143,41214,0 +11873,Woman in Hotel Lobby,39435,1191818,14 +11874,Doggo,24825,161500,8 +11875,Col. Samuel Trautman,1369,16554,1 +11876,Bligh,12311,10921,0 +11877,"Farkas ""Bulk"" Bulkmeier",9070,200201,6 +11878,Hashida's Father,14587,1616311,20 +11879,Captain - HMS Bedford,714,36666,30 +11880,Little Michael Kaufman,1850,19470,6 +11881,3rd Crewman,1924,10779,69 +11882,Leo,5,62,5 +11883,Trevor Leishman,19958,77335,2 +11884,Winchell,31586,112088,25 +11885,Alaskan Mom,31586,8534,9 +11886,Reality (voice),11129,117352,6 +11887,Abe,28176,2641,2 +11888,Chief Rabbit,11837,12689,5 +11889,Soldier (uncredited),28,1073850,26 +11890,Extra (uncredited),2897,1152705,88 +11891,Paco Rodriguez,9308,8695,7 +11892,Tourist,43832,1468088,37 +11893,Demon (voice),11888,26485,0 +11894,13-Year-Old Rudy,14534,76994,13 +11895,Dr. Glen Thompson,14372,16554,1 +11896,Rose,41478,93279,5 +11897,VIP Lounge Worker,18,1857462,111 +11898,Stewardess,18,1857424,53 +11899,George,10950,98089,12 +11900,Brig. Gen. Shinner,15873,5249,8 +11901,Laurie Henderson,838,8434,4 +11902,Walter Burns,3085,2638,0 +11903,Cowslip,11837,656,9 +11904,Jean Millet,28974,63378,2 +11905,Charisse Dolittle,3050,66896,9 +11906,Flying Cop,18,1162833,51 +11907,Allison Reynolds,2108,12851,4 +11908,Raven Darkholme / Mystique,36658,11008,6 +11909,,281085,62032,7 +11910,Steini,9301,1087,3 +11911,Gia Kapur,4254,35758,16 +11912,Himself (archive footage),8672,1101336,14 +11913,Geek 'Farmer Ted',15144,1904,5 +11914,Rocky,524,4692,42 +11915,Homer Wells,1715,2219,0 +11916,Guard #8,21629,100230,14 +11917,Veronica,40866,36888,10 +11918,Zozimov,954,15321,10 +11919,Marcos,18079,69310,0 +11920,Jack,16643,4252,2 +11921,Dolph Pillsbury,25430,34279,11 +11922,Tony Lacey,703,10557,4 +11923,Frank Brayker,9059,6573,1 +11924,Porno Star #2,638,9316,40 +11925,Berenice,598,8603,9 +11926,Catherine Land Blake,10207,1461219,14 +11927,Sgt 'Dynamite' Bixby (uncredited),18642,105732,21 +11928,Father O'Hara,46094,134768,6 +11929,Red Mitchell,403,43992,13 +11930,Quigley,13962,15860,6 +11931,Ramon Vega,169,2069,11 +11932,'Mouse' Woman,8989,163002,9 +11933,John Harbour,22279,22063,12 +11934,Dr. Kobayashi,13889,82969,6 +11935,Nurse Rosco,28902,188049,9 +11936,Harlequin,35337,81512,4 +11937,Agitator (uncredited),3063,1313186,31 +11938,Mrs. Clayton,3092,71733,12 +11939,Henk,27052,96848,6 +11940,Trip,88863,171293,3 +11941,Iowa's finest,22256,56895,10 +11942,Beach,154,157612,15 +11943,Sheriff,26378,248225,28 +11944,Thug,3780,552183,48 +11945,Men in suits,11159,1749203,36 +11946,Steamship Company Hong Kong Clerk,2897,11169,30 +11947,Tony Pope,169,2064,9 +11948,Inquirer Reporter (uncredited),15,43836,61 +11949,(uncredited),36245,145074,23 +11950,Elton Deedle,40688,8544,5 +11951,Le photographe anglais (uncredited),2721,930809,28 +11952,One of the bad monks,12780,116352,11 +11953,Man Singing at Inquirer Party (uncredited),15,1468172,46 +11954,Hezekiah Beckum,12584,8516,8 +11955,Siberian Peasant,32595,1089439,1 +11956,"Jim Goose, Main Force Patrol Officer",9659,45211,3 +11957,Phil,10276,9806,7 +11958,Jessie Wyler,22160,36042,1 +11959,Peggy,108312,41283,3 +11960,Xu Fengxia (child),31439,1789265,9 +11961,Nobuko Amano,17962,1087690,9 +11962,Horrace,15745,62066,5 +11963,Soldier #2 in U.S.O. Club,10400,5304,34 +11964,Leutnant Schorm,29471,125270,9 +11965,Sutherland,11185,2516,9 +11966,Capt. Tom Metsker,10590,9048,7 +11967,Jake,88818,6949,0 +11968,L'homme dans la photo,194,13689,18 +11969,Hajo Heiermann,10801,1844,1 +11970,Capt. Maitland,11589,78083,6 +11971,Townsman at Carnival (uncredited),220,1389140,23 +11972,Professor Barrett,21380,1587928,10 +11973,Gurney,2102,106726,10 +11974,Silver,11837,10748,6 +11975,Himself,1282,9290,2 +11976,Lester,43089,44842,18 +11977,J.R.,1578,174657,26 +11978,Men's Room Man #3,46986,170935,0 +11979,Max Gunter,75641,56890,5 +11980,Red (voice),19042,38337,11 +11981,Seth,10862,16478,6 +11982,Glynn,9816,59574,11 +11983,Meg Bethune,25969,8534,1 +11984,Spikes,29938,105293,6 +11985,,9264,6193,4 +11986,Willie,30547,1507180,37 +11987,Dolly's Guest,30547,1507169,24 +11988,Cardinal Lamberto,242,3268,9 +11989,"Senor Vidal, Maria's Father",39435,24556,9 +11990,Boy at Auction,5917,1894153,31 +11991,Capt. Vallo (The Crimson Pirate),11570,13784,0 +11992,Rebecca Taylor,11472,1231,1 +11993,Trevor Lyle,9529,3982,2 +11994,David Letterman,9403,136487,41 +11995,Richard Norvik,10013,62014,6 +11996,Benny Dalmau,549,1121,4 +11997,Chico,12639,29904,2 +11998,Lord Archibald Craven,11236,28743,6 +11999,Truman Trainor,12618,28633,6 +12000,Dooley,13005,55194,8 +12001,Second Testifier,39428,196902,6 +12002,Oma,16993,59369,2 +12003,Girl in Puzzle,47886,100566,14 +12004,Reporter,5917,82632,49 +12005,Keith,34223,112158,0 +12006,Carmen,99,1144566,18 +12007,Rex Pester (voice),14444,13472,7 +12008,Stephanie,28387,162607,19 +12009,Cesar,10796,87794,14 +12010,Old Martin,61934,8841,3 +12011,Crazy Woman,11943,76382,5 +12012,Tom Myers (uncredited),2105,1893,42 +12013,Mom,40952,1880600,25 +12014,Harris K. Telemacher,2107,67773,0 +12015,Minna,23114,128494,12 +12016,Dale,29372,67288,8 +12017,Correspondent,11202,106726,25 +12018,Clyde Yamashito,30709,2249,12 +12019,Art Student,11397,1300857,85 +12020,Babe,16993,136334,5 +12021,Senator Kelly,36657,52374,10 +12022,Elaine,33542,44917,1 +12023,Esther MacInerney,9087,42003,12 +12024,Drunk Man in Diner,24739,2716,13 +12025,Gracie Fields,9555,57953,2 +12026,Taylor,18282,37043,10 +12027,L'homme à la vespasienne,194,1377960,22 +12028,Kathleen 'Kathy' O'Brien,43860,88460,2 +12029,Admiral Curtin,10724,15772,20 +12030,Stacy Lancaster,310431,174880,1 +12031,Bank Officer,24750,1064477,17 +12032,Handsome Actor,17590,1616204,7 +12033,Eddie,124680,7244,2 +12034,Michael Myers,11442,69614,1 +12035,Joss Merlyn,31995,20502,14 +12036,Donna,20075,25578,3 +12037,Crooked sailor,34774,39817,16 +12038,Mooney Wright,61548,8975,3 +12039,Gail,9475,1800161,26 +12040,The Elevator Killer,11591,97128,16 +12041,Joakim,10238,4456,5 +12042,Hemophiliac Representative,2887,454973,27 +12043,Lishman,11450,925,12 +12044,Russian Sports Announcer,11535,122268,61 +12045,Ginny Hanks Grainger,13380,2453,0 +12046,Elvis,1811,33674,15 +12047,Barfly,43828,94897,61 +12048,Leona Bloom,15592,53647,4 +12049,Whiskers (Voice),9593,518,16 +12050,Maggie,93350,1857002,20 +12051,Tom Reagan,379,5168,1 +12052,Eddie Detreville,10333,15903,6 +12053,Herbert Jones,27993,99353,7 +12054,Nurse,2984,10733,15 +12055,Cynthia Rose Purley,11159,4154,1 +12056,KMPC DJ,9591,116805,22 +12057,Pa Kent,1924,3381,6 +12058,Christine Hargenson,7340,44038,5 +12059,Michele Weinberger,9611,14406,1 +12060,Simona,107693,1808424,5 +12061,Arlene Trimmings,19108,1653779,2 +12062,,120077,13514,3 +12063,Roberta Guaspari,26149,5064,0 +12064,Raymond Taber,11536,34597,6 +12065,,30265,78429,6 +12066,Toni Potter,40952,104448,6 +12067,Joyce Collins,11607,64778,1 +12068,Stagehand #1,31044,13413,54 +12069,Jacques,15379,33153,6 +12070,Estelle Wainwright,37936,131274,3 +12071,Frank Lafferty,54287,121144,5 +12072,Boothby's Auctioneer,1995,1371446,11 +12073,Sadie Burke,25430,18737,4 +12074,Victoria Chapell,9308,13445,1 +12075,,18919,1320281,4 +12076,Officer Akins,10866,552467,12 +12077,Beryl,4011,1041787,24 +12078,Denise,15037,54470,3 +12079,Juror,43828,975598,62 +12080,Head Official,16249,2081,15 +12081,Alex,63105,230665,0 +12082,Young Ishmael Chambers,10219,64710,2 +12083,Murphy,23730,21757,14 +12084,Batook Patel,85052,35779,10 +12085,Danny,12230,100975,11 +12086,Simon Templar,10003,5576,0 +12087,Surgeon,36658,11012,22 +12088,2a Prostituta,10867,35107,26 +12089,Tyrone,41478,71913,1 +12090,Ianto,43266,29127,5 +12091,Lewton 'Lewt' MacCanles,32275,8487,2 +12092,Head Starter,30547,1507171,26 +12093,Musician (uncredited),18642,1609028,17 +12094,Groom,30547,1507164,18 +12095,Nicholas's Girl,8467,1853172,30 +12096,Laura Nelson,31586,1245,16 +12097,Buddy,24746,103999,0 +12098,13-Year-Old Pete,14534,76995,14 +12099,Club Steward,62463,1780618,20 +12100,Lord Hood,12311,32139,16 +12101,Sen. John Yerkes Iselin,982,14732,5 +12102,Lisa Flanagan,9451,1015780,9 +12103,Mr. Collins / Miss Piggy,814,7908,12 +12104,Cole Collins,27332,8258,4 +12105,Philmore Walker,23599,8294,12 +12106,Hero / Reverend Rat (voice),28032,40352,7 +12107,(uncredited),2604,107322,93 +12108,Boy Dope Smuggler,22023,1577179,42 +12109,Sherry,25538,1316890,9 +12110,Jenkins,14612,1171862,8 +12111,Pastor Bjoerling,21027,6462,11 +12112,Lab Guard,18,1857443,88 +12113,Prostitute,11902,1047266,31 +12114,Tom Haver,11654,44301,3 +12115,Robin Harris,9894,41087,2 +12116,Cora Gage,129628,21104,8 +12117,Chief Detective (uncredited),34106,14453,24 +12118,Kim Diamond,11531,4889,0 +12119,Grace,35694,139,0 +12120,Mr. Murray,70199,7505,1 +12121,Bob's Mother,476,6465,4 +12122,Man in Church,38509,120594,18 +12123,Pretty Woman in Bar,4806,6068,8 +12124,Leather Lady,17170,4158,22 +12125,Villager of Tullymore,10162,1609656,32 +12126,Josh - Age 10,167,75323,19 +12127,Dr. Sonnenschein,29471,16241,6 +12128,Mike,29372,96259,12 +12129,Ned Nederlander,8388,519,2 +12130,Sally,16806,59962,8 +12131,Hawasch,5998,2911,11 +12132,Mrs. Wellington (1940's),66597,109696,6 +12133,Rich Vanier,17170,8213,13 +12134,Laundryman,11576,1237005,50 +12135,Nathan Derns,17168,81376,12 +12136,Voyager,40952,1679452,17 +12137,Little Baby,229,12659,21 +12138,Old Man,43002,94401,9 +12139,Steve-Dave Pulasti,2293,572591,17 +12140,Sgt. Abe Foreman,61813,63791,6 +12141,Pvt. Babra,11589,78086,14 +12142,Patty,125548,1765922,10 +12143,Okla,11524,8261,2 +12144,SWAT Officer at Embassy Siege (uncredited),21380,45672,12 +12145,Darko,124680,20982,3 +12146,Psych Patient #2,11618,175678,17 +12147,Dennis,11777,108098,10 +12148,Panel Member,11374,1236861,47 +12149,Del Paxton,9591,8854,7 +12150,Jack,28384,2226,3 +12151,Hyatt Singer,786,1656014,33 +12152,Charlotte,14651,4273,0 +12153,Toothless Jack,9613,212658,16 +12154,Mrs. Murphy,525,7175,5 +12155,Frank,10925,14852,1 +12156,Brian,18683,1889100,12 +12157,Big Ed,10400,1217610,30 +12158,Paul Johann Anselm von Feuerbach,12632,688,8 +12159,Miles Evans,21052,192,1 +12160,Medical Examiner,30308,88906,12 +12161,Matthew Corbeck,39176,10017,0 +12162,Texan,32049,101755,29 +12163,Doc Tuley,21118,1578,6 +12164,Dancer,11397,1773689,69 +12165,(uncredited),5998,1090738,23 +12166,Dr. B. A:son Levander,16026,74736,7 +12167,Doc Ward (Johnnie's manager),26378,95299,12 +12168,Gas Attendant,24816,99828,10 +12169,Elector Max Friedrich,13701,57851,14 +12170,"John, the VW Driver",47144,4641,4 +12171,Sheriff Art Kincade,42218,12692,3 +12172,Running Buffalo (uncredited),15263,1501998,27 +12173,Elizabeth Thomas Brewer,48287,69054,6 +12174,Effie the Cleaning Lady (uncredited),17057,1221753,15 +12175,Himself,40879,19767,10 +12176,,78285,52346,9 +12177,Officer Varelli,38558,160554,5 +12178,Wade,8869,15374,6 +12179,Extra (uncredited),2897,43857,110 +12180,Don Card,12506,740,19 +12181,Sir Francis Cromarty,2897,99461,22 +12182,Mr. Shepherd,17015,1227492,20 +12183,Yardena,125945,983412,4 +12184,Dale's Man #1,8467,60672,16 +12185,Guest at Rick's (uncredited),289,1047407,28 +12186,Allan Pinkerton,13496,10669,6 +12187,Search Party,16938,563094,17 +12188,Detective,32043,3982,9 +12189,Reynaldo / Osric / Fortinbras's Captain,141489,950091,12 +12190,Protesting War Widow (uncredited),2604,16663,91 +12191,Bartender,5491,26093,12 +12192,Stagehand (uncredited),15,1265589,141 +12193,Polly Chalmers,10657,7673,2 +12194,Marcia Fox,10440,5657,4 +12195,German Tourist,18683,1889104,21 +12196,Mackenzie,24453,386,5 +12197,Stone Alexander,30379,13919,0 +12198,Miss Lark - Old Woman in Park,433,97257,18 +12199,Obnoxious Mom,10950,1836332,31 +12200,Rude Boss,522,1916,22 +12201,Joe Rasnick,2115,521,0 +12202,Donald,49365,57422,5 +12203,Agent #2,32595,1089447,7 +12204,Capt./Maj. Bennett Marco,982,4347,0 +12205,Thug,3780,552170,47 +12206,Busboy,49410,1237,13 +12207,Jo McGuire,18736,82625,2 +12208,Motel Manager,4147,1018310,15 +12209,Nurse,31682,190778,7 +12210,Perfect Tommy,11379,36041,5 +12211,Red Team #12,11535,113208,17 +12212,Young Scientist,15762,19839,12 +12213,Polizist,17133,777,5 +12214,Karen Christenson,13526,1641,11 +12215,Dr. Daniel P. Schreber,2666,2628,2 +12216,Sandra,9425,935,3 +12217,Bobby Collins,18133,82719,7 +12218,Frank,11777,11805,8 +12219,Dog Walkby,11873,1265412,48 +12220,Juvenal / Charlie Lawson,61563,22108,5 +12221,Chief Two-Tongues Lebeaux,11943,122007,7 +12222,Brian,11933,1535,9 +12223,Deputy Joe,30352,14329,12 +12224,Joe Hill Conley,1443,17244,16 +12225,Jerry,33689,1331574,11 +12226,Slain,281289,1376291,1 +12227,Sloan Blackburn (voice),14317,4757,18 +12228,Elizabeth Darko,141,1579,3 +12229,Beverly/Elliot Mantle,9540,16940,0 +12230,Jean-Marc,102461,19383,3 +12231,Indian Chief,34774,112973,5 +12232,Zana,63105,1263308,5 +12233,Laurie,39938,118802,7 +12234,Sean,161795,8435,0 +12235,Albert,2105,53116,13 +12236,Man (uncredited),15,1176932,138 +12237,Sidney,16096,141823,4 +12238,Trumaine,29355,10814,3 +12239,Grandpa Mori Tanaka,16314,11395,0 +12240,,75892,262444,6 +12241,The Three Angels,2525,11390,5 +12242,La femme près du manège,194,64592,42 +12243,"Stage Singer in ""Pretty Girl"" Number",43277,33022,11 +12244,Zilkov,982,14736,11 +12245,Louie Jeffries,3064,4443,4 +12246,Peter Coakley,10671,200507,13 +12247,Dotty Blundell,22279,30427,7 +12248,Plainclothes Officer,11879,31006,8 +12249,Cindy Brady,9066,116437,7 +12250,Little Brother (voice),10674,66193,20 +12251,Pirate King,25872,94288,2 +12252,Davy,43266,100074,13 +12253,Zoltan Karpathy,11113,6609,6 +12254,"Raul Ventana, Drug Lord",19150,30488,7 +12255,Tom,58372,3417,1 +12256,Harry,8816,114580,7 +12257,Fatoumata,60083,230467,2 +12258,Teenager at World of Donuts,37410,1213541,15 +12259,Shoe Seller (uncredited),12101,122154,16 +12260,Oval Office Agent Cartwright,36658,25877,29 +12261,Unhygienix,1907,19875,13 +12262,Julie,9403,42715,21 +12263,Millie,287,4051,14 +12264,Jack Quinn,9405,15111,0 +12265,Sierra Kahan,17133,8944,8 +12266,Mr. Chicken Lickin',2321,3801,21 +12267,Shirley,24750,38160,6 +12268,Signor Matiste,15,14979,11 +12269,Police Captain Hank Quinlan,1480,40,2 +12270,Charly Riley,38951,229565,0 +12271,Kurt Muller,11385,37777,1 +12272,Jack Morris,17908,4724,2 +12273,Mr. Will,13681,6949,2 +12274,"Will, Matt's Thug #2",10406,65400,10 +12275,Linda,27265,14406,3 +12276,'Crazy' Tsui Wai Keung,10775,118742,9 +12277,,52556,571440,6 +12278,Sonny,9464,83037,6 +12279,Capt. Matt Dillon,10590,65717,15 +12280,Tom Chisum,621,11366,21 +12281,Himself,772,33663,16 +12282,Lydia Lynch,4547,37042,5 +12283,Zewil,9301,232331,10 +12284,Flynch - Yellow Team,17971,1081812,10 +12285,Cameron,5257,1762314,22 +12286,Clara Blanca,4133,168881,23 +12287,Sam,69605,151864,11 +12288,(uncredited),5998,3005,21 +12289,Randy,2144,2876,0 +12290,Major General Francis de Guingand,11202,89065,26 +12291,Man with Hooks,9358,80344,28 +12292,Robert,9462,554626,13 +12293,Beth,1647,1353801,30 +12294,Domremy's Priest,10047,9142,19 +12295,Powerbroker,45671,1080265,6 +12296,Andy,10847,1077728,7 +12297,Mel,13567,50762,4 +12298,Etienne,2731,27806,7 +12299,Annie Wilson,2046,112,0 +12300,Ben Rolf,13549,936,1 +12301,Ranmaru Mori,11953,1484290,18 +12302,Nanni,25403,69488,0 +12303,Didi,11593,999904,21 +12304,Steve Bancroft,54287,152666,2 +12305,"Leo, Scorpions member",621,8907,17 +12306,Kathy Whiting,50463,27106,0 +12307,Female Employee #2,788,1077864,15 +12308,Becky,19101,4938,4 +12309,French Officer (uncredited),10590,583457,48 +12310,Cameron,9905,149359,5 +12311,Jamal Jefferies / Juwanna Mann,35696,74354,0 +12312,Karl,1907,2063,10 +12313,Nikki Trainor,12499,1215878,7 +12314,Girlfriend #2,15037,59154,7 +12315,Phyllis Bernard,12102,10080,6 +12316,Reporter,2984,160888,38 +12317,Jeb Hrmthmg,11561,107304,8 +12318,Townsman (uncredited),11697,1289627,37 +12319,Angelica,6068,49818,3 +12320,Charlie McKay,11232,33654,3 +12321,May,2666,27755,10 +12322,Tailor,16176,1225334,20 +12323,Sy,10440,12122,9 +12324,Shere Khan (voice),9325,3361,4 +12325,Josh Jordan at twelve,12220,71725,4 +12326,,17962,1402854,12 +12327,lui,77056,29516,8 +12328,Barbara Keeley,11000,49148,7 +12329,Stage Manager / Featured Player,31044,134092,19 +12330,Donnie,140519,15371,3 +12331,Arwen Evenstar,120,882,7 +12332,Nachum,14811,30676,16 +12333,Coleman,12311,87547,15 +12334,Sniper,2034,58650,13 +12335,High Roller,4478,96901,21 +12336,George,18317,27822,5 +12337,Minor Role (uncredited),2897,89263,270 +12338,John Piersall,125413,9857,1 +12339,Gettys' Son,1813,1089391,16 +12340,Courtney Oakley,10691,5148,8 +12341,Mulan (voice),10674,72730,22 +12342,Aggressive Rocker (uncredited),10373,137952,16 +12343,Elsa Friend,7514,52833,20 +12344,Mrs. Savage,9977,61350,17 +12345,Jason Lee Scott,6499,388114,6 +12346,Ororo Munroe / Storm,36658,4587,3 +12347,Sherry,14534,3127,7 +12348,Cap'n Mello,38732,55701,6 +12349,M,714,5309,8 +12350,Basketball Kid #4,165,1434992,38 +12351,Col. Mayberry,20424,34084,26 +12352,Gordon Ralfe,33364,16897,0 +12353,Mary Evans,151489,1895635,4 +12354,Joy,10805,1651544,13 +12355,Colonel Ilya Kazak,11859,782,2 +12356,Junior,28176,2224,5 +12357,Baloo (voice),9325,57329,1 +12358,Photographer (uncredited),269,2356,15 +12359,Mrs. Schultz,10671,19967,16 +12360,Teresa (voice),11704,19144,5 +12361,The Prosecutor,2978,10558,11 +12362,Jennie Liddell,9443,47536,2 +12363,Anna,30994,107467,1 +12364,Buzz McCallister,772,11516,5 +12365,Richie Walker,59181,75315,12 +12366,Grady Seasons,11873,1264489,20 +12367,Jason Wynn,10336,8349,1 +12368,Mother,28774,114632,8 +12369,Patty,15144,1717651,31 +12370,Pluto Nash,11692,776,0 +12371,Santa Claus,90762,70874,0 +12372,Maria Francisca,61939,115172,1 +12373,Susannah Fincannon Ludlow,4476,15887,3 +12374,Lawn Jockey #1,3028,19754,18 +12375,Adrian Sturges,19348,84519,3 +12376,Player King,141489,5254,6 +12377,Chinese Guard,6978,1677319,27 +12378,Inspector LeDuc,9406,24454,7 +12379,Omar,10303,6783,3 +12380,Dana Coles,11800,3391,7 +12381,Nadine,476,69122,3 +12382,Rodney,24816,5830,1 +12383,McGuire,11259,26094,12 +12384,Cameraman,58886,148764,11 +12385,Warden Walter Beatty,21629,12852,6 +12386,Schwartz,949,86602,21 +12387,,92384,77072,5 +12388,la maîtresse de Jean-Louis,42726,278332,8 +12389,Dr. Newald,14550,47137,8 +12390,David Duncan,2046,21163,6 +12391,Rudy,76397,41737,11 +12392,Kelly Youngblood,17465,3009,4 +12393,Doctor,703,1228161,40 +12394,Rosalind,9260,1276,6 +12395,Rosa,11859,3981,8 +12396,Man in Line,11397,1744177,71 +12397,Pavel Upenskoy,10724,2268,3 +12398,Zorg's Man,18,1857457,101 +12399,Nobleman,10047,1077832,12 +12400,Tulsa McLean,18642,21457,0 +12401,Mike Gage,27791,34839,0 +12402,Officer McDowell (voice),19042,52883,14 +12403,Uncle Leo,32284,5950,4 +12404,Train Conductor,2897,8635,9 +12405,Julie Pierce,11231,448,1 +12406,Trading Post Missionary,922,658,16 +12407,Prisoner,9882,1343275,13 +12408,Carl Roebuck,11593,62,1 +12409,Limpiadora,80713,4372,6 +12410,Mrs. Kirke,39938,1280709,12 +12411,Brun,13853,172725,4 +12412,,22279,26865,18 +12413,Mark's Girlfriend / Associate Producer,14242,1502573,11 +12414,Power Operator,18,1857452,96 +12415,Paulie,9366,785,4 +12416,Dr. David Menard,7219,20510,2 +12417,Don Alejandro's Servant,32093,33253,43 +12418,Kurt Gödel,11777,23708,3 +12419,Mama Malone,4993,1091873,6 +12420,"Carter, Rebel Soldier",21027,40185,13 +12421,Rene Ricard,549,7486,6 +12422,The Twins,10847,939743,5 +12423,Greta,17771,3293,2 +12424,Buliwyf,1911,19898,1 +12425,Mayor Inada,1678,1478367,28 +12426,,11859,6486,15 +12427,Tangina Barrons,11133,10091,4 +12428,Buck,3682,33670,29 +12429,Major Flower,40688,22132,8 +12430,Madame Emery (Mutter),5967,28608,2 +12431,Kevin,40220,1778954,4 +12432,TV Newscaster (uncredited),105,100600,46 +12433,,73642,17026,3 +12434,Lady Caroline,16176,93324,11 +12435,Francis Chérasse (Le Bombé),9317,24540,1 +12436,Carol Anne Chalmers-Perez,27791,184459,13 +12437,Louis Trager,9778,59173,14 +12438,Larry,10783,51381,10 +12439,Mr. Aherne,15506,43131,11 +12440,Assistant,14651,21347,7 +12441,Labisse,12614,14955,8 +12442,Phillip Hooper,4988,15416,9 +12443,Nora,277726,3019,2 +12444,Marie St. Clair,28974,21301,0 +12445,Walter 'Yukon' Burns,43368,30512,3 +12446,Helen,31342,689,0 +12447,Neil McCauley,949,380,1 +12448,MVA Supervisor,10796,10137,7 +12449,Three Finger,9902,2320,6 +12450,Jean Baptiste 1,2110,62452,19 +12451,Myrt,51044,20158,6 +12452,Dana Appleton,1624,12967,4 +12453,Sergeant (uncredited),10590,1310385,51 +12454,Jim's Father,2105,26510,8 +12455,Frankenstein's Monster,229,2922,0 +12456,Jesse,76,569,0 +12457,Officer Comes Running,50123,1379978,12 +12458,Riku,2,54770,3 +12459,Ella,10406,17346,4 +12460,Sir Frederick Lamb,46797,184881,7 +12461,Gambler,30547,1507174,30 +12462,Spectator (uncredited),32049,1177915,45 +12463,Manuela,99,953,0 +12464,Kirby's Dining Guest (uncredited),34106,139182,136 +12465,Kim Williams,55420,149550,11 +12466,Cloak Room Attendant,11215,1220746,9 +12467,Roman Castevet,805,12022,3 +12468,Billy Man,35292,10748,15 +12469,Minor Role,1859,236567,19 +12470,Darlene,15765,19265,5 +12471,Indignant Woman,1859,1471660,51 +12472,F. W. Murnau,10873,6949,0 +12473,Mrs. Jerry Copeland - Passenger,10671,1226675,43 +12474,Christopher Hillard,788,11716,6 +12475,Second Latin Guy,11873,148306,35 +12476,Extra (uncredited),2897,148852,183 +12477,Pitt Mackeson,22267,1244,4 +12478,Madame Barrault,9289,25154,2 +12479,Soldier #1 on Train (as Jimmy Van Patten),22328,106644,15 +12480,Acting Student,11800,49148,8 +12481,Messager,105763,1359879,13 +12482,Connie Chasseur,10872,11870,7 +12483,Jerry Black,5955,514,0 +12484,Box,10803,24368,3 +12485,Velocchio,29471,56300,7 +12486,Peter Rheimer,299,14064,13 +12487,Arnold Poindexter,14052,23881,2 +12488,Z-4195 aka Z (voice),8916,1243,0 +12489,(uncredited),194,1270534,51 +12490,Mastrangelo,38558,233121,9 +12491,Maj. Amberson,965,14519,7 +12492,Palazzi,660,125908,13 +12493,Thug #2,31044,1680739,51 +12494,(uncredited),2721,1186226,30 +12495,"Master Sergeant ""Big Joe""",11589,10169,1 +12496,Lieutenant Bishop,15497,78306,8 +12497,Robert Justin / Albert Simpson,24212,101500,3 +12498,Maître Rigoard,11876,2197,14 +12499,National Security Advisor,11379,159755,30 +12500,Detective Justice,12158,32486,2 +12501,Ivan,276635,142744,8 +12502,,20645,1200402,10 +12503,Ada,104103,1283,1 +12504,Garber,169,2059,6 +12505,Elizabeth Alvorg,10013,41516,9 +12506,Marcia Brady,9066,15286,2 +12507,Seven-Year-Old Howard,9403,1507100,23 +12508,Bessie,9819,3092,0 +12509,Glory Pennamin,9294,106976,7 +12510,La Fleck model,24254,91437,23 +12511,Professor Plumcutt,15944,30228,6 +12512,Brenda Margaret Blaney,573,8228,5 +12513,Villager of Tullymore,10162,1609651,27 +12514,Sam Mussabini,9443,65,5 +12515,Bunny Dull,15263,30512,8 +12516,Don Flip Crew #2,40879,59785,3 +12517,Anne-Marie McCoy,9529,543193,4 +12518,Coach Rivers,35696,6907,12 +12519,Liz Vangelder,3682,27964,13 +12520,Ancestors (voice),10674,30695,21 +12521,Gerber - Green Team,17971,1788896,21 +12522,Susan,12618,91461,19 +12523,le docteur Collingwood,78256,127024,8 +12524,Home Band Keyboarder,11535,554013,89 +12525,Wirf Wirfley,11593,69300,6 +12526,Real Estate Lady,11307,54348,13 +12527,Children's Hospital Doctor,949,1090464,46 +12528,Vergil Sweet,41164,587,0 +12529,Torvald,42453,199198,8 +12530,Corbett's Bodyguard,5917,119887,19 +12531,The Emperor (voice),10674,23915,14 +12532,Brunning,14794,1730644,20 +12533,Car Showroom Receptionist,26180,123972,5 +12534,Voice on telephone (uncredited),29449,30610,6 +12535,Mr. Vogel,17170,11783,8 +12536,Malvin,26378,34036,24 +12537,Minister,25673,16417,14 +12538,Francis,10803,12518,1 +12539,Mark,24584,1781139,5 +12540,Vance Dooly,24405,14333,5 +12541,Zé Pequeno,598,8596,1 +12542,Fred Casely,1574,17287,7 +12543,Nurse,9716,227537,24 +12544,Melvin Junko,15239,98329,7 +12545,Michael Fitzsimmons,10013,18916,11 +12546,Jay,27224,1416981,3 +12547,John Practice,9593,1164,1 +12548,Lt. Colonel Voskov,10724,42146,11 +12549,Musician (uncredited),11697,1404180,51 +12550,Play,16094,79321,2 +12551,Tino,3784,33832,7 +12552,Ranch Wilder,24795,6067,6 +12553,Ethan Glance,5551,11628,7 +12554,Sybok,172,2077,8 +12555,Danny O'Brien,38950,51576,0 +12556,Extra (uncredited),2897,1120620,238 +12557,Freddy the Bomb (voice),2102,35040,14 +12558,Detective Glass,121091,1103,3 +12559,Biff Tannen / Griff,165,1065,18 +12560,A Palace Guard (uncredited),3063,34094,32 +12561,Veronica,133575,46423,3 +12562,Grace,220976,2167,1 +12563,Auntie Shrew (voice),11704,5827,4 +12564,Dr. William Dedham,15875,5251,5 +12565,Gertie - Switchboard Operator,11576,34746,40 +12566,Voicephone,2107,16180,12 +12567,Joey Donna,25796,8540,2 +12568,Carl - Plainclothesman (uncredited),3085,1097503,29 +12569,Lucifer,11980,110,5 +12570,Honk,22023,68180,16 +12571,Xu Fugui,31439,76913,0 +12572,London Carriage Driver,2897,11859,35 +12573,Anesthesiologist,9358,52457,16 +12574,Performer,34113,89799,6 +12575,"Dee, Mark's Wife",2323,944116,11 +12576,Commanding Officer,32093,34505,18 +12577,le garçon de café,77056,376760,6 +12578,Hawkins,32484,1046805,10 +12579,Patrick,60608,235613,4 +12580,Myra,22314,9781,2 +12581,Wendy,623,8946,4 +12582,Party Guest,10395,19,13 +12583,T.V. Director,15943,88821,11 +12584,Jean Bennett,79593,31391,6 +12585,Pvt. Petuko,11589,12295,10 +12586,Nanny / Queenie / Lucy,12230,71780,3 +12587,Gold Coach,11535,19902,39 +12588,Virginia Block,19209,38226,5 +12589,Randolph Duke / Homeless Man #1,9602,1208,11 +12590,Woman in Dog Food Commercial (uncredited),28940,1755638,34 +12591,Woman Voyager,40952,171425,20 +12592,,33356,146757,3 +12593,Charlie Jensen,544,65827,8 +12594,Dina Greene,482,1127145,9 +12595,Sam,8388,14104,10 +12596,Violet,24816,1131109,12 +12597,Mrs. Borusewicz,1574,4568,19 +12598,Nick's Mother,2721,39882,23 +12599,Meg,40562,34543,9 +12600,Sp4 Russell Adams,10590,65719,17 +12601,Mike Henshaw,28047,57829,1 +12602,Gen. Wolfgang Hager,9289,30936,42 +12603,Bagwell,1637,33713,18 +12604,Philadelphia Ring Announcer,10400,1393344,43 +12605,Roger Bomman,24795,24045,2 +12606,Tourist,43832,1468087,36 +12607,Baloo (voice),14873,1230,0 +12608,George,22279,43131,11 +12609,Frank Landers,10050,42157,7 +12610,Baccarat Dealer at Rick's (uncredited),289,1044381,24 +12611,Decoy Cop,11517,1811956,14 +12612,Maria,10391,13029,10 +12613,McIntyre,60285,12159,11 +12614,Allen Drew,32484,26029,2 +12615,Street Scum,262,96767,29 +12616,Delores Dodge,10013,9259,12 +12617,Referee - Third Robinson Fight,1578,4130,20 +12618,Pauline de Théus,11876,1137,0 +12619,Kate,18801,10988,6 +12620,Louis - the Headwaiter,1859,128160,32 +12621,Sister Blackburn,43368,5738,9 +12622,Kuryshev,8665,55587,14 +12623,"Thor, age 10",26761,96164,10 +12624,Sergeant Hatcher,60285,102267,6 +12625,Onus (voice),9016,35219,10 +12626,Master Sergeant 3,714,10208,18 +12627,Mark,12888,91508,2 +12628,Anton,27380,1465268,13 +12629,Player's Wife,9563,1653104,63 +12630,Bubba Rocque,36915,21315,2 +12631,Preacher,46786,52145,8 +12632,T.S. Garp,11307,2157,0 +12633,Gustav von Wangenhein,10873,1926,5 +12634,Gus Mascola,493,6769,3 +12635,Susan's Maid (uncredited),15,1176362,105 +12636,County Sheriff (uncredited),539,120736,21 +12637,Mr. Briggs,11397,1811,25 +12638,Sergeant Brown,51044,2112,4 +12639,Helen Ellswirth,57575,3635,0 +12640,Shashinarayan's wife,896,13759,5 +12641,Mitch Martin,11635,36422,0 +12642,Spencer,21060,87050,6 +12643,Abbie Grainger,13380,78197,3 +12644,Dancer,10603,1741701,38 +12645,Phillips,26593,4965,3 +12646,Gambler (uncredited),33680,148419,21 +12647,Schuldirektorin Evelyn Doyle,9308,7071,2 +12648,Himself,2300,1232432,12 +12649,Daisy Craig,9555,57952,1 +12650,Hilton,7514,52818,5 +12651,Laticia,29938,105291,4 +12652,Tessibel 'Tess' Skinner,71067,100047,0 +12653,Carolyn Bramwell / Elsa,26954,554043,0 +12654,George Milton,9609,33,1 +12655,Townsboy Telling Wash of Destry's Arrival,43828,248579,28 +12656,American Commentator #1,1374,1244143,9 +12657,Buscapé,598,8595,0 +12658,Hôtesse de l'air,2110,1632523,11 +12659,Floyd,11697,8260,14 +12660,Abner 'Cherub' Overton,61934,30560,9 +12661,Bernard Woodruff,10333,21064,7 +12662,Cooper's Groupie,18414,43257,7 +12663,Myron Fein,31044,14669,11 +12664,Poupette,166,1969,3 +12665,Himself,99008,1019851,10 +12666,Bank Teller,2990,33500,16 +12667,DJ Arte,11397,1773865,82 +12668,Dr. Tolian Soran,193,56890,10 +12669,Robert McDonough,10774,65019,18 +12670,Minor Role (uncredited),2897,1601649,280 +12671,Model,46986,1295160,17 +12672,Conspiracy Theorist,55420,105581,30 +12673,Neighbor,2604,1271929,33 +12674,Junkie in Harlem,1813,90444,24 +12675,Chuen,38955,62424,9 +12676,Buck Weaver - 3B,2323,154295,12 +12677,Haley,10134,1812174,7 +12678,Eddie Quist,11298,16180,8 +12679,Lou Sipher,28165,7466,14 +12680,Billy Mae,753,11144,8 +12681,Woman Ghost,251,3434,13 +12682,Elevator Passenger #9,1637,1872825,59 +12683,Dr. Harraz,10568,47396,15 +12684,Australian Navy Officer Sean O'Brien,15875,81168,11 +12685,Mrs. Parrish,887,32431,11 +12686,Liliane / Minouche,269,331806,10 +12687,Joe,153141,155531,9 +12688,Carpetbagger,10747,13263,8 +12689,Selby,29372,50236,15 +12690,Larry Hockett,287,4040,4 +12691,Comedian,28973,1336772,19 +12692,Man #1 - Arthur's Bar,2604,5170,23 +12693,Elderly Man,27791,554477,12 +12694,Judy MacPherson,43832,33741,3 +12695,Rafferty (uncredited),678,103367,36 +12696,Toni Edelman,47500,18248,0 +12697,Professor Raymond Knowby,765,11755,6 +12698,Don Willis,2662,51931,14 +12699,Himself,41516,121217,8 +12700,Young Laura,49963,143151,5 +12701,Pierre,6187,48579,5 +12702,Betty,5,3138,17 +12703,Grandpa Angelo,30943,20564,10 +12704,John Glenarvan,34774,24808,4 +12705,Carl Panzram,59569,4512,0 +12706,Moe Greene,238,20752,20 +12707,Fed. Marshal Holt / Featured Player,31044,31117,23 +12708,Faith Stohler,33016,176333,9 +12709,Dr. John Dolittle,3050,776,0 +12710,Foot Soldier,1497,1456534,54 +12711,Cop Outside Hospital (uncredited),238,1233541,46 +12712,Elaine,42787,40388,2 +12713,Delivery Room Doctor,2758,11076,16 +12714,Nacho Salazar,19176,84240,8 +12715,Waitress,6068,1609235,27 +12716,Old Man's Mistress,11830,554578,18 +12717,Gary Simmons,31618,13022,1 +12718,Benny,10466,1105814,11 +12719,Shotgun (uncredited),11697,1187947,71 +12720,Cicero,32484,120772,4 +12721,Helen Holm,11307,54782,1 +12722,Barsac,26252,11548,15 +12723,Menard's Nurse,7219,100411,6 +12724,Spyros Acebos,299,30719,15 +12725,Cop #2,27526,98093,22 +12726,Mr. Santalino,41209,28033,3 +12727,Jefferey,27526,4994,20 +12728,Arline Greenbaum,2033,4687,1 +12729,Robin,16162,5411,3 +12730,Woman's Awareness Teacher,1633,71561,12 +12731,Civic Leader (uncredited),15,1718303,127 +12732,Kid,14181,4451,11 +12733,Nurse,9659,1125222,6 +12734,Robert Winters,1377,16764,8 +12735,Maj. Paul Krueger,15873,14060,2 +12736,Young Murron MacClannough,197,2470,10 +12737,Jackie Marsh,83718,135162,0 +12738,Mrs. Fairley,22292,88460,5 +12739,Yee Sook Ree,13667,56120,7 +12740,Reb Alter Vishkower,10269,21521,4 +12741,Peter Mitchell,12154,15112,0 +12742,Phil Dawn,10889,67346,2 +12743,Molly,6552,56731,3 +12744,Bartender in Acapulco (uncredited),678,1208020,25 +12745,Fake Shemp,764,1116942,7 +12746,"Sarah, the Sophomore Chick",2105,217524,23 +12747,Martin Pawley,3114,30551,1 +12748,Choji's Father,3780,1200247,49 +12749,Zachary Welch,9977,118,5 +12750,Sam,289,4117,9 +12751,Jasprit Kapoor,4254,35752,6 +12752,Aunt Lotte,469,6397,3 +12753,Sugar,35118,35597,6 +12754,Alfie Bumbacelli,31044,138116,10 +12755,Sen. James Stiles,13571,12149,4 +12756,Fellini as a Child,11035,1889600,7 +12757,Sporting Lady's Companion,2897,5826,36 +12758,,48144,1366128,2 +12759,Julian 'Frankenstien' McGrath,9032,56730,3 +12760,Robert Beaumont,10586,207,2 +12761,Kathy Wilson,20424,115852,13 +12762,Samuel Harvey Graynamore,2565,2177,2 +12763,Woman at inn (uncredited),490,58305,15 +12764,Margaret Ellis,42218,40186,4 +12765,Liam,47112,38339,9 +12766,Sleazy Horse Dealer,14522,9831,16 +12767,Hank Land,10207,49835,8 +12768,Eugene Dix,9358,233191,8 +12769,Prime Minister,5257,42393,6 +12770,Able Bodied Seaman (uncredited),12311,1372684,44 +12771,Jim McAllister,9451,4756,0 +12772,Norman Bronski,40490,147494,12 +12773,Aïe's father,78657,134757,6 +12774,Angela Stravelli,27791,20189,7 +12775,Goldmouth,6522,87360,5 +12776,Lyle,857,183930,25 +12777,Grazia,552,7543,4 +12778,Libby Reynolds,10735,11164,2 +12779,Roy Carter,69605,95564,9 +12780,Mikey,10847,1077733,13 +12781,Jean Doyle,29911,105229,7 +12782,Paul,11159,93177,5 +12783,Filmmaker,14242,87794,0 +12784,Signe,742,11047,11 +12785,Felix Forsythe,573,40943,6 +12786,Milton Krest,709,2516,4 +12787,Stine,102,1021,4 +12788,Dr. Mika Popovic,2887,106284,11 +12789,Extra (uncredited),2897,1429399,90 +12790,Donna McCarty,505,4513,4 +12791,Ray Forgy,30352,38560,5 +12792,David's Girlfriend,4478,1803856,10 +12793,Chriss,9840,136170,3 +12794,Flora Amor,2907,1888071,17 +12795,The banker,78281,20442,7 +12796,Jane (voice),14317,59057,14 +12797,Adam Ginesberg,53685,26457,2 +12798,Lennox,12888,75838,6 +12799,Mojo Jojo (voice),59387,51957,5 +12800,Sarah,18646,1013946,7 +12801,Possessed Henrietta,765,11769,8 +12802,Rattlesnake,28736,4965,3 +12803,Ben Hinton,10708,87056,12 +12804,Lip,9816,59573,10 +12805,Rupert,81001,1229,2 +12806,"Fred ""The Ogre"" Palowakski",14052,70254,11 +12807,Dist. Atty. R. Frank Marlowe,25673,7685,6 +12808,Blake,9504,7447,2 +12809,Denekin,11535,77351,6 +12810,Big Ben,11077,5251,1 +12811,Chava,14811,163645,7 +12812,Billy Chapel,10390,1269,0 +12813,Conan O'Brien,16550,81200,20 +12814,Annas,2428,988795,56 +12815,Coche Inciarte,7305,51539,21 +12816,Lumiere (voice),10020,725,3 +12817,,92384,64856,1 +12818,Roger,12230,71781,4 +12819,Tad (voice),12,1211731,20 +12820,Marilla Brown Hagen,33668,7570,1 +12821,Dick,23114,1937,5 +12822,Denisov,11706,1701741,17 +12823,Carmen,40562,18920,4 +12824,Lord Hidetora Ichimonji,11645,70131,3 +12825,King Henry,8583,4177,5 +12826,Guy at Beach with Drink,32227,287,14 +12827,Bruce Wilson,32074,88946,9 +12828,David Pearl,76411,1221574,3 +12829,Bobbie,11472,1410494,17 +12830,Sotero,966,14531,11 +12831,Judge Fielding,10219,2505,7 +12832,Paulie,238,99724,18 +12833,Happy Franks,28134,884,3 +12834,First Fight Radio Announcer,26378,43845,42 +12835,Possum Spalding,13681,137951,14 +12836,Extra (uncredited),2897,1569740,193 +12837,Chorus Master (uncredited),15,1023709,149 +12838,Bead Necklace Vendor,772,953505,15 +12839,Wallace,3595,925,15 +12840,Noahs Frau,2525,25780,9 +12841,Robyn's Grandfather Captain Blackbeard,16249,14501,0 +12842,Bienenstich,9589,1728656,17 +12843,Sandra,17203,3052,4 +12844,Transito Soto,2259,2051,7 +12845,Petrie,12144,40352,3 +12846,Ouiser Boudreaux,10860,4090,2 +12847,Nutsy (voice),11886,30554,4 +12848,Ortega,31863,40481,6 +12849,Duke,10466,21199,22 +12850,Society Max,4825,3163,9 +12851,Horace - White House Physician,23518,115460,14 +12852,Vet #1 - Miami Convention,2604,1226885,76 +12853,John Macauley,91217,80874,11 +12854,Kibitzer in Blue Sky Club (uncredited),678,1487177,19 +12855,Saddler Boag,99351,138148,8 +12856,Jeff McCallister,772,945734,13 +12857,Angus Starling,10586,18280,6 +12858,Cowboy,5917,1894175,62 +12859,Hotel Clerk,117,1886589,48 +12860,Larry,864,12980,8 +12861,Constable Riggs,9555,76512,5 +12862,D'Agostino,409,5476,11 +12863,Coreen,39310,927666,11 +12864,Victoria,12499,154826,13 +12865,John Gomez,11379,6486,15 +12866,Convenience Store Manager,18079,113018,4 +12867,Skull Island Witch Doctor,244,3261,8 +12868,Patti,20735,6886,0 +12869,Stagehand #2,31044,9975,55 +12870,Palatine,16176,79897,7 +12871,Miss Reed,703,142244,37 +12872,Bruce (voice),12,22,15 +12873,Muezzini (uncredited),289,1331762,53 +12874,Yu Zhongliang,47694,69637,0 +12875,Construction Site Foreman,2625,8984,18 +12876,Angry Gunman,17708,9289,9 +12877,Pound Operator,47955,166671,8 +12878,Chien-Po (voice),10674,71858,11 +12879,Colonel Loring,32484,14969,8 +12880,Peter Burroughs,10568,78744,6 +12881,Shoe Saleman,10950,1213786,27 +12882,Harry Doolin,11313,1328126,9 +12883,"Rubin ""Hurricane"" Carter",10400,5292,0 +12884,Hetty Porter,573,8226,3 +12885,"Sandy, Demon",10622,29478,10 +12886,François,27145,97079,0 +12887,Mr. Sokol,2613,1173804,24 +12888,Ladybug (voice),10539,52951,6 +12889,The Dark Hermit - Satan,2428,9221,19 +12890,Col. Wilberforce,11576,127641,28 +12891,Old Man with Cane,6038,1580029,34 +12892,Jack Fisher,678,10162,5 +12893,Pat Webb,524,8262,8 +12894,Gen. Erich Marcks,9289,18964,53 +12895,Ben,39867,1707730,3 +12896,Patron,11415,1262961,20 +12897,Nightclub Singer,17057,129681,11 +12898,Aunt Bedelia,16281,22137,6 +12899,Club Girl (uncredited),15745,18285,13 +12900,Fred Frugal,43089,129275,12 +12901,Diego,805,109086,14 +12902,Soldier 1,2259,1055133,14 +12903,Batty Koda (voice),13225,2157,3 +12904,Shop Owner,10603,1609276,46 +12905,Margueritte,9591,12931,15 +12906,Leland's Nurse (uncredited),15,17662,97 +12907,Boy On Bike,33172,1086324,14 +12908,Cha Cha DiGregorio,621,8906,16 +12909,Chris Chandler,10647,12217,3 +12910,1955 Radio Announcer (voice) (uncredited),105,9971,45 +12911,Shower Double (as Paula Elser),15144,1717648,22 +12912,Johnny 'The Kid' Pickett,922,342,6 +12913,Jersey Kid,95627,31531,5 +12914,Sgt. Adams (voice),9023,7222,3 +12915,Sexy Woman,8467,1242525,63 +12916,Cecilia Lisbon,1443,204997,8 +12917,Joey,52735,10556,7 +12918,Rohit Patel,4254,35747,2 +12919,Anna,14612,1163672,6 +12920,Guard Henry,638,9290,7 +12921,Tommy Ross,7340,45415,3 +12922,Caravan Leader,1911,18917,15 +12923,Cellist in cello concert scene,25538,555383,16 +12924,Andre,42258,1009979,5 +12925,Diane Barrows,33689,1796,0 +12926,Federico,18079,101690,9 +12927,Chip (voice),10020,145151,8 +12928,Roger,11979,75892,10 +12929,Julie Ford,36797,83196,1 +12930,Sheriff Art Moran,10219,28633,8 +12931,Tribal Chief,63105,1263309,6 +12932,Robbie Preston,7299,52401,12 +12933,Mr. Green - Bank President (uncredited),21734,33705,29 +12934,Mr. Lipnicki,19855,21082,17 +12935,Ronald Bartel,2924,55636,3 +12936,Frank de Marco,2321,7447,3 +12937,Kay Adams,238,3092,9 +12938,Pit Boss,4478,15998,20 +12939,Steve,6187,48580,7 +12940,Inspector Peterson,3309,18586,7 +12941,Maxwell Scott,11697,2098,11 +12942,Patty Valentine,10400,169077,47 +12943,la Suédoise,77056,352112,11 +12944,Kirby's Secretary (uncredited),34106,2782,43 +12945,"Gerald ""Gerry"" Garner",14819,77337,1 +12946,Amelia Brooks,11888,1753,5 +12947,Major General,25872,70753,3 +12948,Flying Cop,18,33403,20 +12949,Third Tank Commander,11589,13413,27 +12950,Purser (uncredited),18646,97284,5 +12951,Anne Briscoe,41963,65002,5 +12952,Townsman,43828,121254,55 +12953,Biff Brannigan,50001,124851,1 +12954,Luis,11302,87743,5 +12955,The Veiled Queen,28134,6588,4 +12956,Chinese Sports Announcer,11535,133957,56 +12957,Priest,11415,141418,15 +12958,Chrissy,11446,69484,4 +12959,Mona Cromwell - Hostess,28973,1010507,6 +12960,The Man,12079,21315,7 +12961,Andy Clutterbuck,10657,1235532,18 +12962,Elisabeth Burrows,12103,328,2 +12963,Roger,42569,3026,10 +12964,The Mayor,11576,34497,22 +12965,Seaman Kowski,2160,155299,14 +12966,Headmistress,18683,15736,5 +12967,Car Vandal (uncredited),522,149216,66 +12968,Proprietor (uncredited),299,3163,21 +12969,TV Reporter,10003,7032,20 +12970,Medical Student,10351,51996,17 +12971,Reporter (uncredited),15944,3461,15 +12972,Egg Stork,18282,95024,2 +12973,The Predator,169,1109,0 +12974,Debbie,32872,4491,6 +12975,Dr. Dodd,14370,44823,12 +12976,Family Member,11234,548085,9 +12977,Beth Cappadora,30943,1160,0 +12978,Diane,70489,4160,19 +12979,Bruno,9819,1217553,12 +12980,Counterman at Deli,549,1010,19 +12981,Reporter (uncredited),1578,42090,46 +12982,Market Woman,7514,52823,10 +12983,Boromir,120,48,4 +12984,Amanda,49365,381,3 +12985,Maria,21142,1507118,10 +12986,Trousinski,476,7269,7 +12987,Dean,32872,1720982,29 +12988,Ray 'Tiny' Jackson,25087,70254,2 +12989,Pollicut,9028,5814,3 +12990,Jailer,10603,1748104,22 +12991,Rita,41478,15899,6 +12992,1a Prostituta,10867,553192,25 +12993,Ellie (as Amanda Harley),26299,1839025,14 +12994,Office Boy,2021,1788856,19 +12995,Coach Bob Kelly,4806,22227,5 +12996,Claire,78657,19117,2 +12997,Foot Soldier,1497,1456538,59 +12998,Sara Meinhold,17168,81375,5 +12999,Sue,16550,40060,12 +13000,Don Juan Manuel,26165,990961,7 +13001,Natalija Zovkov,11902,70875,2 +13002,Freddie Draper,753,11141,4 +13003,Maddy Bennett,50225,13333,0 +13004,Alan Swann,31044,11390,0 +13005,The Re-Animated: Skinny Corpse,18111,100555,10 +13006,Gus,31911,2876,0 +13007,,10801,36014,17 +13008,Secretary #2,522,4766,26 +13009,Donna,10862,1910,7 +13010,Mary Ann Gifford,10774,949374,13 +13011,Dead Couple - Husband,10692,1265135,7 +13012,Newspaperman (uncredited),15,997751,86 +13013,Salvatore adolescente,11216,27643,2 +13014,Father Cluzeot,15875,4121,10 +13015,Dr. John Jaffrey,24634,19550,1 +13016,Mr. Book,2666,385,5 +13017,Lupe Lamora,709,10680,3 +13018,Patient - VA Hospital,2604,155576,50 +13019,Mr. Thresher,14612,12693,12 +13020,Patton Snr.,13965,76185,6 +13021,Villager of Tullymore,10162,1609678,55 +13022,Cassandra,18282,3416,1 +13023,Mr. Norton - Traffic Cop (uncredited),21734,139610,15 +13024,Starlighter,105,1200793,39 +13025,Rob,32284,57428,3 +13026,Jason,29067,2273,6 +13027,Jackson,51802,80569,7 +13028,Black Guy at Party,11397,11868,92 +13029,Nurse Carvalho,24828,3711,8 +13030,Host,2758,9111,18 +13031,Charlie Fox,11120,741,2 +13032,Pretty Boy,1480,94895,12 +13033,Jane,19101,38670,6 +13034,Romeo,580,1673750,24 +13035,Jason,26958,13310,6 +13036,Policeman (uncredited),32600,1262199,21 +13037,Maria anziana,11216,25780,9 +13038,Dobie,17691,4965,14 +13039,Reg,786,562708,20 +13040,Allison D'Allessio,15944,82777,3 +13041,Cynthia,11380,36068,7 +13042,Suburban Family,88224,21275,3 +13043,Villager (uncredited),229,97999,40 +13044,Tyler,53150,14064,12 +13045,Gate Guard,10208,11477,10 +13046,Reese Wilson,9877,18284,4 +13047,Mike 'The Brick' Donatelli,19150,6486,2 +13048,Fertile Mother,11159,90762,48 +13049,Kien,34899,35055,5 +13050,Bozzini (uncredited),2721,35214,29 +13051,Jerry,1624,2130,2 +13052,Detective Burnett,40952,1081798,10 +13053,Tanya Sloan / Yellow Ranger,6499,50097,1 +13054,Party Guest,696,43203,9 +13055,Jennie Anderson,21027,49958,4 +13056,Sheila Jensen,544,7402,7 +13057,Emily Spellgood,11120,17495,4 +13058,Pat Garrett,38765,15968,4 +13059,Elizabeth Wiatt,11215,68631,3 +13060,Prince Andrei Bolkonsky,11706,3754,2 +13061,Ratsy,12106,21082,14 +13062,Pianist in 'El Rancho' (uncredited),15,70261,21 +13063,Bud,53150,26283,4 +13064,Himself,99008,214900,9 +13065,Franks,24126,1107,5 +13066,Capt. Robbins,36489,131479,4 +13067,Raymond Kingsley,9034,41465,4 +13068,Le curé,36245,9747,8 +13069,Connie,22213,17895,11 +13070,Donald Breedan,949,352,15 +13071,Gertrude,117500,35254,0 +13072,Tetsuya Sakai,34326,228560,1 +13073,Leo F. Drummond,11975,10127,2 +13074,Elspeth,25994,17787,1 +13075,W.R. Slade,9475,88748,6 +13076,Mariette Colet,195,2434,1 +13077,Man in Ring After First Fight,26378,133230,46 +13078,Officer Lyle,28732,240086,0 +13079,FBI Agent Alonzo Mosely,9013,5050,2 +13080,Rooney's Henchman,4147,181514,25 +13081,Dr. Parsons,13526,21021,14 +13082,Prostitute,80350,104609,11 +13083,Mr. Cordle,118098,123209,5 +13084,,22279,931885,19 +13085,Adam,21148,124783,1 +13086,Nikki,12158,172200,8 +13087,Public Prosecutor,2721,27440,6 +13088,Croupier,16249,153537,14 +13089,Extra (uncredited),2897,1191019,134 +13090,Dr. Gell-Mann,2033,20906,9 +13091,Kelli,10708,65240,10 +13092,Mr. Parry,43266,22603,10 +13093,Gen. Wheeler,2100,18792,4 +13094,Wanda,41590,8183,4 +13095,Nate's girl,9776,59159,15 +13096,Dr. Dan Potter,40952,28248,3 +13097,Dr. Leonard McCoy,172,1750,2 +13098,Bank officer,44800,4512,11 +13099,Boston Attorney Francis X. O'Brien,15875,30512,12 +13100,Singing Kangaroo,9032,56728,15 +13101,Bar Patron,31498,1556271,15 +13102,Darryl Walker,20678,22675,0 +13103,Witch-king,120,1590835,25 +13104,Union Official,11576,3156,18 +13105,Paco,12129,71393,4 +13106,Station Mechanic,21866,30299,12 +13107,"Andrew ""Andy"" Clark",2108,2880,0 +13108,Rosie Wu,53879,1821347,13 +13109,Lilly Leonard,25796,73931,3 +13110,Rupa,109472,1013093,2 +13111,Father,10373,1821,8 +13112,Barnard Ralston IV,44414,7471,5 +13113,Camille,26954,83436,6 +13114,Tami,20645,554318,4 +13115,Cafe Patron,76,3727,19 +13116,Greta Schröder,10873,2462,4 +13117,Drake Goodman,2990,8654,1 +13118,Policeman,10440,171747,16 +13119,Tiffany,32872,64731,48 +13120,R. William 'Bill' Neill,11298,65404,2 +13121,Dr. Bay,4133,8897,20 +13122,Yvonne,26030,111305,9 +13123,Katz & Jammer Bartender,11524,52267,24 +13124,Dorsett,41478,588,10 +13125,Harry Michaels,26686,14832,6 +13126,Bobby François,7305,22133,9 +13127,Helen,276635,1484412,11 +13128,Don Aquilino,9343,57379,1 +13129,Chris Nagle,2750,1651693,49 +13130,Det. Sgt. Brub Nicolai,17057,81179,2 +13131,Doris the Dominatrix,28940,102422,2 +13132,Will Randall,10395,514,0 +13133,Russ Colfax,21801,1183913,7 +13134,Kendall,81001,15900,5 +13135,Rock,5491,7014,13 +13136,Irwin,11576,127643,33 +13137,SWAT Cop,4547,1077957,13 +13138,Judith Mark,108365,258942,7 +13139,Bud Broderick,11145,91371,13 +13140,Richard Hale,25430,16055,28 +13141,Rudy's nephew,19324,84479,8 +13142,Gee Grenouille,10663,20819,7 +13143,Dr. Ellen Klein,8470,55316,5 +13144,Roxanne,10696,68430,5 +13145,Tom Wrightson,15239,555076,20 +13146,Extra (uncredited),2897,128179,152 +13147,Kelli,2625,95468,11 +13148,Vocal Jazz Group,2105,1656607,28 +13149,Mickey McFee,287,4046,9 +13150,Rain's father,28384,28023,11 +13151,Spectator,17908,1375346,4 +13152,Constable,10863,83078,9 +13153,Rudolph 'Red' Diamond,22213,2778,1 +13154,Arturo Zaccardi,1377,16761,4 +13155,Mariya Peronskaya,11706,153363,19 +13156,Doc Wax,95627,13617,18 +13157,Dancer,10603,1748115,40 +13158,Bill Korn,15489,168788,14 +13159,Julie the Newscaster,1811,1214186,25 +13160,Jean de Dunois,10047,10698,5 +13161,Diabando,9659,91491,15 +13162,Janine Boitard (as Irina Demich),9289,35586,16 +13163,Sam Roberts,38951,1070523,1 +13164,Travel Agent,9905,2220,10 +13165,,78231,67207,1 +13166,Hunter Henderson,655,9892,3 +13167,Sentry,32093,1263504,27 +13168,Man tearing down poster,25430,1468172,17 +13169,Matthew Gluntz,33016,1213151,16 +13170,U.S. Army Ranger,9289,18364,62 +13171,Ed Lasky,52744,1037,2 +13172,Crash Train Motorman,11517,5502,11 +13173,Photographer,17203,1115,17 +13174,Beth Davidson,714,1247020,34 +13175,Elevator Passenger #5,1637,1872823,54 +13176,Tom Witzky,11601,4724,0 +13177,Truck Driver,814,14467,5 +13178,Sophia Monroe,32872,13026,33 +13179,,78231,25448,2 +13180,Mr. Columbato,11296,68898,3 +13181,Kane,24266,45207,8 +13182,Drunk,7514,52835,22 +13183,Mustafa,37820,1027146,4 +13184,Old Hand,51802,121299,11 +13185,Stella Hansen,10890,15500,3 +13186,Harold Lee,59930,9779,6 +13187,Fujimaki's General,11645,1484313,22 +13188,Mr. Waggner,9532,12980,18 +13189,Garrett (voice),18937,2130,1 +13190,Betty Childs,14052,92810,7 +13191,Jay Augustine,84735,13938,9 +13192,Ruck,6552,50402,9 +13193,Vince Fontaine,621,8901,11 +13194,Zenas,35200,18071,2 +13195,Job Counselor,10708,1223828,37 +13196,Mr. Davidson,10671,13786,15 +13197,Chip Carlson,118991,21368,7 +13198,Girl,7514,52832,19 +13199,Doris's Admirer at Swingers Party,28940,1851425,32 +13200,Francois Lafete,3537,32392,8 +13201,"Bob Younger, Jack's Boss",40490,85170,11 +13202,Lana Lang,1924,1246209,28 +13203,Frank P. Doel,15677,4173,1 +13204,Carlson,51802,102066,8 +13205,Man in Feed Store,5917,1155668,41 +13206,Bradshaw,9095,3968,6 +13207,Dr. Greg,11812,366,8 +13208,,28134,15250,14 +13209,Sheryl,205054,1333852,12 +13210,Minor Role (uncredited),2897,153661,268 +13211,William McCoy,2669,26861,15 +13212,Running Instructor,1647,1393352,43 +13213,Cowboy,1811,8695,9 +13214,Kelemen,124625,37070,4 +13215,Gregory Tuttle,43340,46711,5 +13216,Chambermaid,18683,1889105,22 +13217,"Official #1 - Democratic Convention, Pushing Wheelchair",2604,11885,82 +13218,Lydia,3537,32395,11 +13219,Rory,46286,178452,6 +13220,Paul Rossini,15310,15857,8 +13221,Cheerleader on Football Field,11397,1773796,62 +13222,Sandra Goodwin,11450,23931,10 +13223,la domestica,145925,33928,9 +13224,Owner of the Diamond Bar Ranch,33015,144016,1 +13225,Narrator,1443,1771,18 +13226,Second Gravedigger,10549,57461,17 +13227,Screwface,10173,16754,1 +13228,Freddy,210092,16559,22 +13229,Leonides Cox,36094,2371,5 +13230,Burkitt,12311,8841,6 +13231,Bongo player,38775,121367,9 +13232,Jackson Roth,27791,5139,3 +13233,Dale,10783,4688,4 +13234,Siegfried,5,2555,14 +13235,Det. Sam 'Chappie' Chapman,31598,17764,4 +13236,Wide Receiver,9563,1741394,30 +13237,The Floorwalker (uncredited),73969,1209839,22 +13238,Steve Stifler,2105,57599,7 +13239,Mrs. Sieji,1678,136386,20 +13240,Carmen,24077,11855,3 +13241,Townsman (uncredited),25898,141133,15 +13242,Groucho Party Dancer,9716,1661640,98 +13243,Anna,14369,31383,7 +13244,Lillian Frank,10696,31138,3 +13245,Officer Roberts,47816,14329,7 +13246,Carla,9835,84457,12 +13247,Manuel,12639,200728,10 +13248,Samurai,11712,30568,14 +13249,Pound Driver,47955,159327,10 +13250,Choirmaster,525,122098,22 +13251,Makeup Man Harry,522,7140,15 +13252,Emperor Kodar Japhet,18,1230490,72 +13253,Fairley Maid (uncredited),22292,149081,18 +13254,Debbie Thompson,12309,72055,1 +13255,Sticks Varona,8336,2169,1 +13256,Rose,2321,3234,6 +13257,moster Ulla,8816,56394,3 +13258,Luke,14369,58225,2 +13259,Meg Kennedy,41209,23931,0 +13260,"Old Tough Kate, aka 'Granny'",22328,22556,8 +13261,Annabel,9079,65846,18 +13262,Alice Davenport,9272,119113,7 +13263,Mme Peyrolle,11876,1316257,8 +13264,Lady Bluebury (voice),45772,10978,2 +13265,Jessica ‚Jesse‘ Reeves,11979,22223,2 +13266,Office Porter,11001,639148,42 +13267,Mizzi Schlager,43596,590751,2 +13268,Monk Hin Hung's disciple,12780,1346925,7 +13269,Sissis Mutter,9301,28453,7 +13270,Otoku,3780,1198457,26 +13271,Szell's Brother,10518,935831,10 +13272,Townsman (uncredited),220,1364421,13 +13273,Dae Han,32049,158825,9 +13274,Large man,954,1181189,16 +13275,Girl,8844,1483450,23 +13276,Ali's Father,21334,87388,0 +13277,Lisa,2034,6281,11 +13278,Newsreel Man (uncredited),15,975503,32 +13279,Reporter,11576,116679,39 +13280,Eric,47943,4395,6 +13281,Frank,49963,5010,7 +13282,Defense Attorney,117,1226696,37 +13283,Murdoch,25037,3673,8 +13284,Masaji Sieji,1678,931393,6 +13285,Ralph,9889,60672,7 +13286,Urzah (voice),11639,201459,17 +13287,Young Lara,1995,20512,10 +13288,Little Girl,1924,1390808,64 +13289,Reporter #2,1637,149545,35 +13290,Native Girl (uncredited),15875,1397873,18 +13291,Blakely's Inquisitive Office Worker (uncredited),34106,33034,27 +13292,Father Harris,4248,28637,11 +13293,Potential Suitor,11159,58776,28 +13294,Charlie Barton,11298,31005,10 +13295,News Anchor #2,1637,1213044,32 +13296,CIA agent,9404,1366126,16 +13297,Buck,6,154124,10 +13298,Knotty (voice),13225,35035,11 +13299,Dick Montoya,12618,925,7 +13300,Diana Christensen,10774,6450,0 +13301,Prostitute,6038,195562,6 +13302,Topless Swimmer (uncredited),578,1946,24 +13303,Mrs. Forrester's lawyer (uncredited),3309,96721,53 +13304,Iain,11235,151797,17 +13305,Himself,9403,170468,29 +13306,Hannah Eastman,25673,7641,3 +13307,Dr. John Keith,53879,138179,4 +13308,Emily,16314,80285,7 +13309,Dr. Mengers,24831,5685,5 +13310,Albert,1628,18221,6 +13311,Frank Spalding,13681,1902899,13 +13312,Highway Patrolman,1058,1426109,10 +13313,Mr. Oliver,11313,130719,12 +13314,Narrator,9607,198,9 +13315,Scott Spab,29444,94974,5 +13316,Rick Rambis,14369,52474,0 +13317,Sheftel,14811,25808,27 +13318,Andre Cassell,12614,655,5 +13319,Fern Livingston,16550,14415,16 +13320,Max Devlin,40866,827,0 +13321,Régis,26252,94939,3 +13322,Oda Mae Brown,251,2395,2 +13323,Dr. Catherine Holland,2625,10774,2 +13324,Gang Leader,1448,17259,5 +13325,Sally,31306,18251,12 +13326,Audrey,10776,13420,1 +13327,Party Goer,11374,1044042,38 +13328,Dancer,6068,1609261,44 +13329,Takanawa,2110,21663,4 +13330,Theresa,11456,69504,7 +13331,Plastic Cup Smasher,35292,1543495,39 +13332,Dance Extra (uncredited),165,1435060,51 +13333,Barbara Graham,28577,30124,0 +13334,Paul,2280,11512,3 +13335,Ricky Roma,9504,1158,0 +13336,Marvin Berry,105,1074,11 +13337,Mosca,242,103060,17 +13338,Sherman Peabody,105,184030,21 +13339,Sal Lombardo,53685,1216752,7 +13340,Beatrice Henderson,27265,8857,1 +13341,Banner,22213,149466,21 +13342,Reporter at Xanadu (uncredited),15,94293,69 +13343,Father Don,38509,24048,16 +13344,Tarzan,3682,33671,30 +13345,Bank Guard (uncredited),949,1576562,63 +13346,Eddie Forbes,24005,3339,6 +13347,Leader,46924,1229174,9 +13348,Dr. Snodburger,15239,555077,21 +13349,John Trainer,52744,2701,4 +13350,Arnie Jordan,12220,7503,10 +13351,Monsieur Monteil,36245,3784,2 +13352,Todd Grayland,30666,27773,3 +13353,Assistant Coach,9563,1286269,16 +13354,Mrs. Nathan,2675,28046,9 +13355,Elizabeth,90414,74366,7 +13356,Mama Boucher,10663,8534,1 +13357,Hiroshi's wife,21430,15370,3 +13358,Chelsey,9425,1646992,17 +13359,Orderly,10586,541462,14 +13360,Dr. Tryon,11561,104630,5 +13361,Susan Barrett,7219,52064,5 +13362,Heather Aubrey,10390,20089,3 +13363,Arlo Chance,5917,1709862,9 +13364,Wilby Daniels,15944,83130,2 +13365,Tony - Stablehand,238,55672,28 +13366,Kelston's Secretary,20424,117723,15 +13367,"Николай, рабочий на стройке, муж Антонины",21028,87005,6 +13368,Mary Louise McKinney,5333,7320,3 +13369,Water Witch,38775,121366,7 +13370,Cowboy,80350,62312,5 +13371,Caleb Colton,11879,17304,0 +13372,Vincent Pick,118098,24699,6 +13373,Ed Fleischman,2637,27552,6 +13374,Gustav Mahler,56934,378,1 +13375,Diner at Ronnie's,24254,91433,19 +13376,Patsy Brand,64398,532628,0 +13377,Coach Humes,18133,82720,9 +13378,Woman in Car,795,66499,11 +13379,Alexandre Petit,11876,44234,24 +13380,Man in the Boat,580,1673211,18 +13381,Benson,11374,101378,28 +13382,Surgeon,37936,175302,22 +13383,Z,2721,2565,0 +13384,Le père de Michel Blanc,64567,39179,32 +13385,Bounty Fisherman #3,36355,70118,5 +13386,Thurm,15944,8260,10 +13387,Fifth Avenue Carriage Driver,2135,1470323,6 +13388,(uncredited),269,1513485,22 +13389,Capt. Dewey,12158,593,6 +13390,Helen Miles Singer,9716,1661656,114 +13391,Sally Jenkins,30666,106740,6 +13392,Daniel's Father,12186,60257,7 +13393,Ariel (as Laurel Kiefer),123757,1904841,4 +13394,English Teacher,2105,2249,20 +13395,Valerie Barksdale,2046,448,5 +13396,Slipknot Band Member,11535,92319,96 +13397,Reggie Barry,27993,99352,5 +13398,,34899,53962,9 +13399,,14683,25626,4 +13400,Meg Greene,664,2207,5 +13401,Rolly,12230,178787,16 +13402,Man Singing at Inquirer Party (uncredited),15,1132357,57 +13403,Zeph,1907,19869,6 +13404,Adm. Chester W. Nimitz,11422,4958,1 +13405,Sandor,691,83133,22 +13406,Shirra Assel,12704,6553,2 +13407,Lillian Anderson Munnsen,44414,5729,3 +13408,Beverly Connelly,2898,28778,5 +13409,Carlo Rizzi,238,3095,12 +13410,Mother carrying child,12516,72606,2 +13411,Candy Kendall,1715,6885,1 +13412,la sirène,17350,113617,4 +13413,Alvy's Dad,703,10562,27 +13414,Prof. Crevett,43143,94713,4 +13415,Announcer,26299,1839024,13 +13416,Yamamori,34326,34376,8 +13417,Handsome,38554,288,5 +13418,Mrs. Kline,12102,370042,14 +13419,Dr. Lionel Badger,10467,17782,5 +13420,Peter Randall,20735,21731,4 +13421,Keung,33542,18897,0 +13422,Minor Role (uncredited),2897,34187,265 +13423,Gojira,39462,235722,13 +13424,Kermit's doctor,11899,113223,17 +13425,Charlie 'Bird' Parker,24679,2178,0 +13426,Rose,22279,55643,6 +13427,Pam Bouvier,709,10679,1 +13428,U.S. Announcer,10222,1076567,11 +13429,Sam Wheat,251,723,0 +13430,Seyit Ali,52556,142766,1 +13431,Waitress,24452,114530,14 +13432,Nora Dunhill,42424,128122,5 +13433,Cora,9071,171672,7 +13434,Mr. Lewis (1940's),66597,166066,5 +13435,Bob Diamond,12186,9626,2 +13436,Leroy,11145,83411,10 +13437,Theatre Manager,33016,1071728,11 +13438,Narratore,145925,109143,23 +13439,Armando,1687,1793,11 +13440,Chris Macauley,91217,5577,3 +13441,"Charles-Ingvar ""Sickan"" Jönsson",29224,66790,0 +13442,Casey Pear,29739,58150,3 +13443,Herbert Carter,15,14364,8 +13444,Simone,91076,95789,10 +13445,Brian Shelby,1903,11662,4 +13446,Messenger,4011,154073,13 +13447,Megan McCallister,772,11518,6 +13448,Himself (uncredited),19157,69951,21 +13449,Bailiff (uncredited),34106,121066,128 +13450,Harriet Franklin,3587,2395,0 +13451,John Ray Wilkens,19855,12538,20 +13452,Mrs. Kennedy,10162,1609636,8 +13453,Dr. Parker,44414,9284,6 +13454,First Night Diner (uncredited),3309,121127,47 +13455,Roadhouse Proprietor,43089,119140,19 +13456,Admirer at Party,22023,1577175,38 +13457,Crazy Venezuelan,267188,45042,2 +13458,Johnny (voice),58904,228625,0 +13459,Francesca Danelli,18111,13923,3 +13460,Rose,36245,38902,7 +13461,Bank Clerk (uncredited),34106,148391,110 +13462,Vi,621,13568,18 +13463,Tabari,24883,170306,6 +13464,,120077,1186532,2 +13465,Alexander Cullen,1813,8977,6 +13466,Newsreel Man (uncredited),15,1506412,30 +13467,Town Guard,42453,70425,13 +13468,Cabbie,11185,91453,23 +13469,Col. Thompson,9289,11998,0 +13470,,422,39019,15 +13471,'One-Round' Jack Sander,36056,115155,0 +13472,Leeloo,18,63,3 +13473,Noah,17203,11180,12 +13474,Emily,30175,156774,1 +13475,Cmdr. Philippe Kieffer (commando leader),9289,38914,48 +13476,Spc. Dino Paparelli,9099,7133,10 +13477,August King,61548,12261,0 +13478,"Donna's Boyfriend - Syracuse, NY",2604,4177,56 +13479,Choir,525,56271,48 +13480,Ethan,16550,84923,9 +13481,Walker,13549,6463,6 +13482,Michael,2291,13525,3 +13483,Superintendent Wong Chi Shing,10775,66717,2 +13484,Sidney,9013,4492,7 +13485,Sergeant Dillard,6522,11151,3 +13486,Mildred Chambers,47889,19488,3 +13487,Brady Livingston,16550,57286,19 +13488,Mustafa,11902,213382,12 +13489,Jean Janes,13526,2462,1 +13490,Charlie Anderson,9066,12711,19 +13491,Hunt Sears,11145,11163,4 +13492,Detroit Promoter,1578,120303,25 +13493,Alonso,124633,71010,0 +13494,Security Guard,13550,97944,14 +13495,Gas Jock,70199,138877,8 +13496,Cadet Fox,11008,1789579,11 +13497,Barney Callahan,15310,14852,16 +13498,Camilla,4254,35755,8 +13499,Grandpa,9716,58513,14 +13500,The Lover,32275,12022,14 +13501,Vera,28176,11148,1 +13502,Jessica Harrison,24266,76181,6 +13503,Charles Rawlings,115332,6067,8 +13504,English Judge,10047,1229040,30 +13505,Fabrizio,27834,148251,5 +13506,Frau Maria Rommel (uncredited),9289,36358,36 +13507,Triage Medic,26949,174382,6 +13508,Tad,379,53573,12 +13509,Bart Jason,6644,68812,8 +13510,Daughter as a child,2441,24984,11 +13511,Dolores,220976,12539,4 +13512,Moussa,125945,1066798,5 +13513,Sascha,289,4120,12 +13514,Father,28774,114633,9 +13515,Estelle Dawson,10950,12543,14 +13516,Trevor,10394,208460,12 +13517,,10400,1393350,55 +13518,Newborn Baby (singing voice),14444,13604,12 +13519,Lead Boxer Liu,6038,67212,17 +13520,Old King Norway,10549,11859,25 +13521,Natascha,2984,16757,1 +13522,Charlotte,10866,67538,3 +13523,Emile Devries,2731,27807,8 +13524,Vocal Jazz Group,2105,1656608,29 +13525,Ben Fong-Torres,786,11677,28 +13526,Pink's Father,12104,71248,1 +13527,Citizenship Student,4478,157488,27 +13528,Newscaster,1924,1430038,70 +13529,Jimmy Wolf,45827,1229431,9 +13530,Michelle,9260,17773,9 +13531,Terry Fitzgerald,10336,61962,5 +13532,Officer Gore,9475,12260,14 +13533,Joan,13105,113905,6 +13534,Dean Larry Chase,59181,81902,19 +13535,Janitor,4011,104944,23 +13536,Charley Partanna,2075,514,0 +13537,New Charlotte,11257,17479,16 +13538,Mrs. Reilly,81001,12969,4 +13539,Donatello (voice),1497,179566,21 +13540,Det. Angela Wilson,22314,2230,6 +13541,Theo Weston,25934,123209,6 +13542,Mrs. Wilson,5279,15735,0 +13543,Mr. Lowry,49365,7085,10 +13544,Stephen J. Anderson,11688,16842,12 +13545,(uncredited),5998,1290139,18 +13546,Edward George Ruddy,10774,46099,8 +13547,Cpl. Rudolph Heinz,61934,9111,11 +13548,La concierge du mort,194,333422,33 +13549,Sterne,635,9173,8 +13550,Annette Hargrove,796,368,2 +13551,Dolly Hopkins,35292,936,6 +13552,Reporter,17692,1296380,23 +13553,Russian Ship Captain,14372,28871,9 +13554,Rosa,10691,1607161,11 +13555,le docteur Lherminier,31417,173841,9 +13556,Extra (uncredited),2897,1536284,165 +13557,Audience Member at Operation,14698,11626,12 +13558,Pete Stone,10173,6916,16 +13559,"Marvin, Older Marshal",922,15442,13 +13560,,102,1441485,17 +13561,Utah / Elmo,2144,57906,9 +13562,Louisa Bradley,24453,27281,9 +13563,Danny,1890,1873995,10 +13564,Phil Garson,4916,32747,3 +13565,Extra (uncredited),2897,1673513,64 +13566,"Tracey Abernathy, die Apothekerin",2675,28044,8 +13567,Interpreter In Square,409,1606900,27 +13568,Darryl Jenks,9602,23628,9 +13569,Extra (uncredited),2897,1209184,85 +13570,Marta,10173,438650,15 +13571,Lt. Commander Worf,201,2391,4 +13572,Eric Gordon,11017,11367,3 +13573,Minelli,9717,140176,9 +13574,Extra (uncredited),2897,100798,247 +13575,"Taffy, Age 7",32872,1720970,14 +13576,Himself,11003,80117,7 +13577,Ricky Chambers,47889,127544,2 +13578,David's Mother,4478,79736,15 +13579,Apurba Roy,896,13752,0 +13580,Ziggy & Sofie's Baby,38509,120585,7 +13581,Judge F.W. Charles,76397,19111,4 +13582,Winston Buckley,91217,94968,8 +13583,"Mikael, Jof and Maria's son (uncredited)",490,1194871,20 +13584,Lt. Commander Geordi La Forge,201,2390,3 +13585,Morris Townsend,45019,21343,3 +13586,Dr. Caulfield,24679,8854,15 +13587,Schmatt,9301,10923,5 +13588,Steven Phillips,37718,13,0 +13589,Wolleck / Anders Wolleck,9540,57880,5 +13590,Blaine Tuttle,796,11866,5 +13591,Mr Pinkus (Uncredited),25934,24722,26 +13592,Charlie Pearson,42218,1476390,7 +13593,Benjy Stone,31044,95975,1 +13594,Genevieve Gage,27791,1817,4 +13595,Mr. McCleery,37247,14064,9 +13596,Lady Eleanor,31044,105987,17 +13597,General,46592,543873,3 +13598,Negotiator,1817,1188456,7 +13599,"Vera, Natalia's Mother",52654,11855,2 +13600,Jon,26180,60719,11 +13601,Joannie,39875,109767,9 +13602,French Mayor,11589,1498332,26 +13603,Becker,320011,236,8 +13604,Antonio,5924,18914,12 +13605,Jimmy Sanderson,9563,77896,9 +13606,Fung's man in hospital,38955,1002925,7 +13607,Tight End,9563,166534,31 +13608,Man in Crowd,32049,1216157,33 +13609,Herbie Hawkins,21734,7668,5 +13610,Man at Xanadu Great Hall (uncredited),15,122984,35 +13611,Frankie,32284,3126,0 +13612,Professor Hikita,11379,122154,7 +13613,Brenda,544,7404,10 +13614,U.S. Army Ranger,9289,39757,18 +13615,Minor Role (uncredited),2897,997465,269 +13616,Detective,39462,30475,8 +13617,Dr. Dieter Brinkhoff,287305,26602,7 +13618,Gambler in Phone Booth,524,58535,35 +13619,Serge Ravanel,52366,146207,4 +13620,J.P. Shay,8467,76131,5 +13621,Mrs. Gloria Teasdale,3063,10804,4 +13622,Booker,11589,112722,25 +13623,Grace O'Shea,3682,33656,9 +13624,Miss Ivannah,2293,23648,9 +13625,Official at Briefing,1687,1208039,12 +13626,Russian General in Jail (uncredited),34106,1472495,142 +13627,Crosswalk Child,11517,203801,12 +13628,Band Member,6068,1609256,40 +13629,Extra (uncredited),28,45581,29 +13630,Larry Wilson,8491,37041,0 +13631,Louie,3085,30239,6 +13632,Young missionary,9343,1101312,12 +13633,Katrina,9945,6726,2 +13634,Hospital Dancer,9716,1661615,72 +13635,Undetermined Role,31995,1463137,30 +13636,First Officer,157,15860,16 +13637,Gianelli,14550,1736,5 +13638,Tevye,14811,10501,0 +13639,Goldwyn Girl,4825,1787560,13 +13640,Helga,38509,120595,19 +13641,Zigmund Gogladze,105763,1359873,4 +13642,"François, père de Lili",12716,36915,7 +13643,Girl in Library #1,37410,71819,11 +13644,Bandleader,9079,1170980,19 +13645,Trick-or-Treat Child,9716,1661629,87 +13646,Orson Welles,522,7132,6 +13647,Nosey,43139,145271,3 +13648,Arney,19108,1789029,4 +13649,Bené,598,8597,2 +13650,Nancy Henderson,8989,4778,1 +13651,Nikolaus Johann van Beethoven,13701,56101,9 +13652,Axel,9589,58107,2 +13653,Girl on Sinking Boat,10207,17265,18 +13654,Schoolgirl (uncredited),25898,1526343,17 +13655,Velma,53150,80486,6 +13656,Alicia Chadwick,43368,83622,1 +13657,Hams Frau,2525,25785,16 +13658,Marty Barker,811,12122,2 +13659,Family Council Member (uncredited),15875,8829,15 +13660,High School Band Audition Judge (uncredited),105,168702,48 +13661,Young William,786,11665,6 +13662,Lord Belasco,37108,10672,2 +13663,Martin,17711,59645,12 +13664,Cathy Browne,15506,78287,4 +13665,Isabelle,12652,35962,6 +13666,Charlie Toschi,10207,1923,5 +13667,Vicky Michaels Stover,118991,13549,2 +13668,Airport Firemen #3,11576,105723,7 +13669,Robert,6187,19383,6 +13670,Viper,744,4139,4 +13671,Shotgun,6038,33050,25 +13672,Julien's Slave,46924,134141,23 +13673,Policeman,601,9984,11 +13674,Grosch,10724,1882503,35 +13675,Cliff Nelson,15143,778,5 +13676,Extra (uncredited),2897,1546041,158 +13677,"Eleanor Lavish, a novelist",11257,5309,6 +13678,Foreman,40879,1102477,8 +13679,Eskimo,11535,216224,34 +13680,Gen. George C. Marshall,31037,107549,2 +13681,Petrovich's Girlfriend,11535,1674952,68 +13682,Diner at Ronnie's,24254,91431,17 +13683,Terry,11950,18298,16 +13684,Additional Bus Passenger #8,1637,1378721,48 +13685,Jones,9314,1406997,11 +13686,Extra (uncredited),2897,148853,182 +13687,Victoria,858,12932,8 +13688,Narrator - Resorts International,11873,1265401,26 +13689,Gen. Raymond D. Barton,9289,8254,54 +13690,Jack Fryman,55731,17770,4 +13691,Anna Harrison,9441,20089,3 +13692,Mrs. Randall,36797,10409,8 +13693,Sam,7863,3070,6 +13694,"Suchen, Suyin's sister",53879,94991,10 +13695,Bridesmaid,3035,120759,20 +13696,Leo,11524,10360,4 +13697,DJ,3682,33661,18 +13698,Mr. Ozu,46986,90348,40 +13699,Priest No. 1,197,17788,32 +13700,"Eugene ""Porky"" Lee",10897,67381,12 +13701,Neighbor,12079,102,13 +13702,Soldier #2,2135,1586641,15 +13703,Arthur,5279,3555,22 +13704,Vincent Roth,2085,21359,9 +13705,Extra (uncredited),2897,78744,125 +13706,Dean Ulich,14052,92811,13 +13707,(uncredited),5998,9846,20 +13708,Inspector Mulrooney,18990,69249,3 +13709,Penny Priddy,11379,6913,2 +13710,Frank Martin,10929,8655,1 +13711,Theodore Rex,36259,59222,1 +13712,Cheung Ken,38955,1277939,13 +13713,Amanda,9059,101170,17 +13714,Detective Ertagian,2144,1498511,11 +13715,Valérie's mother,102461,274746,2 +13716,Kardinal Alba,9945,12150,4 +13717,Rita,493,6770,4 +13718,Policeman,210092,58475,18 +13719,Woman in blonde wig,11104,56830,0 +13720,Ruth Berlau,35263,1557946,5 +13721,Paolo Valisari,18736,130936,8 +13722,Willard,19855,1527168,14 +13723,Big Tam,41160,65,5 +13724,Secretary,30946,11872,11 +13725,Anna Völkl & Elena Völkl,5425,31780,1 +13726,Goon,46029,84599,11 +13727,William Saltonstall,10724,55155,19 +13728,Mother Superior,9289,236906,58 +13729,Store Owner,30352,106124,21 +13730,Jay 'Chef' Hicks,28,8351,3 +13731,Psychiatric Patient,2898,2208,10 +13732,Paul Entamen,110972,12438,8 +13733,Mrs. Prentiss,38732,12283,10 +13734,'Pup' Pierdon,21828,1347365,16 +13735,Doctor,25430,569144,40 +13736,Ray Tanton,79593,1542,22 +13737,Ginny Hurdicure,18414,162747,5 +13738,Shepard,12129,58423,6 +13739,Tragedian,18971,1273958,17 +13740,Marian Rolf,13549,8963,0 +13741,Josh Flatbush,41823,32897,7 +13742,Noda Castle Soldier,11953,1484297,28 +13743,Old Woman,9716,1661587,49 +13744,Dan Devine,14534,10486,23 +13745,May Dalby,21148,158664,10 +13746,Raoul Mendoza,28940,50880,17 +13747,Cecilia Nussbaum,10354,3713,18 +13748,Brassac,166,20800,11 +13749,Carol Heath,10013,2022,4 +13750,Lorna Doone,35694,999736,7 +13751,Pam Garrety,1813,10386,9 +13752,Le policier,36245,13697,21 +13753,Leonard Eels,678,10166,9 +13754,Malichot,26866,4121,3 +13755,Gabrielle Gerard,29376,41226,1 +13756,Soldier (uncredited),15379,15111,15 +13757,Don Licio Lucchesi,242,122022,19 +13758,Donna,2604,26467,4 +13759,Mr. Manning,19050,3015,14 +13760,Connie Peters,27332,554192,8 +13761,Boom-Boom Bangs,59181,45463,5 +13762,Baker,11859,63214,14 +13763,Frank Louis Beechum,10354,21353,1 +13764,Swana's Restaurant Patron,1859,1468209,17 +13765,Mrs. Klupner,12309,45463,21 +13766,2nd Lt. Henry Herrick,10590,46772,8 +13767,Tillotson's Friend,9314,1406994,10 +13768,Church Soldier,9827,23324,17 +13769,Coach Passenger,31995,27911,23 +13770,Hunter,12528,1105,11 +13771,,77314,3234,1 +13772,moglie dell'evaso,145925,652000,2 +13773,Prince,91076,65765,14 +13774,Otis,42087,11065,2 +13775,Fernand,42832,553516,5 +13776,(uncredited),5998,20533,22 +13777,Stefano,15944,84559,14 +13778,Bambi,19157,84211,8 +13779,Chuck Wheeler,15489,33293,15 +13780,Bronk Stinson,18935,142106,5 +13781,Raphael,1497,105174,4 +13782,Salvatore 'Sally' Jenko,922,13604,9 +13783,Robin McCall,9087,63279,4 +13784,Sheila Bailey,41160,749,3 +13785,Eddie Iovine,52735,17941,1 +13786,Marcy,482,6566,7 +13787,Harry Winston Dancer,9716,1661602,62 +13788,Frank Hansen,2087,1233,7 +13789,May,11134,1338,2 +13790,Mr. Emerson,11257,656,2 +13791,Mr. Miller,678,103068,12 +13792,Salesman,30666,1832363,11 +13793,Dr. Franklin,10796,155978,17 +13794,The Dentist,30690,15832,6 +13795,Dr. Lana Zurrell,19142,31364,2 +13796,Extra (uncredited),2897,1112109,210 +13797,Caleb,8844,188949,13 +13798,Street Vendor (uncredited),38509,120604,29 +13799,Gary,133575,11155,2 +13800,"""Shoeless"" Joe Jackson",2323,11477,3 +13801,L'ami de ZIgmund,105763,1359878,12 +13802,J.P.,24795,1546030,12 +13803,Wesley Johnson,15734,78690,2 +13804,Reporter,2984,184906,37 +13805,Mr. Thule,40095,16103,7 +13806,Angelo,33542,21264,5 +13807,Fei-Hung's Aunt,11230,142601,5 +13808,Waitress Louise Finch,21734,87826,11 +13809,Alvy's Date Outside Theatre,703,10205,15 +13810,Eve,13105,42970,11 +13811,Gloria Pazinski,11011,2266,9 +13812,Investigator,11902,1698903,26 +13813,a bellboy,24005,109211,15 +13814,English Sports Announcer,11535,567257,12 +13815,Captured X-Kid,36658,82819,30 +13816,Karl,229,1549,11 +13817,Monk,11231,129463,9 +13818,Young Kida (voice),10865,182258,11 +13819,Security Guard,5922,160598,9 +13820,Anton,78231,1780918,8 +13821,Nobuhiro Fujimaki,11645,1085249,17 +13822,Kurt Hemphill,864,10361,5 +13823,Naked Girl in Locker Room,11397,1773787,46 +13824,Quinn Harris,6068,3,0 +13825,Michaelangelo (Voice),1498,77157,7 +13826,Schwimmer,26378,2762,33 +13827,Mr. Skolnick,14052,2505,12 +13828,Widow,17691,5738,13 +13829,Yago,2721,27442,11 +13830,Waiter (uncredited),10440,91043,22 +13831,Mrs. Mingott,10436,6199,17 +13832,Sick Humor,32049,100461,18 +13833,Charlie's Hooker - Villa Dulce,2604,181343,67 +13834,Smythe,197,742,38 +13835,Harry Dickens,13380,5897,5 +13836,Loretta,165,1434984,29 +13837,Society Woman,42987,17161,7 +13838,Sarah,9495,57701,1 +13839,Bina,14587,1241522,12 +13840,Band Member #3,1647,1582114,40 +13841,Lindsay Wilson,2750,1834,4 +13842,Fisher,4806,1210,4 +13843,Mr. Kim,18,8400,16 +13844,Rebecca Frazen,38554,12133,1 +13845,Ross,12079,17881,0 +13846,Eddie,27224,1352682,7 +13847,Player's Wife,9563,1741419,55 +13848,Shatov,10466,159755,8 +13849,Bernardo,5922,43010,7 +13850,,64310,37920,7 +13851,White Private (uncredited),10590,1223006,55 +13852,Mrs. Ho,31586,15100,18 +13853,Fritz,11485,50835,2 +13854,HGM,11101,33511,9 +13855,Toll,11535,170173,43 +13856,Shauna's Boyfriend,9079,1170981,20 +13857,Young Sandra,21626,1193401,3 +13858,Joseph,2428,1162,44 +13859,Detlev,9589,58106,1 +13860,Woman in Toy Store,11472,1581388,22 +13861,Bruiser Stone,11975,2295,7 +13862,Minister (uncredited),3063,1353671,21 +13863,Nurse (uncredited),21468,3346,19 +13864,Cliff,15144,1717645,15 +13865,Amélie Poulain,194,2405,0 +13866,Neemo,38765,106678,13 +13867,Secretary,31586,1179084,35 +13868,Cop on Stand,13005,8977,16 +13869,Cheryl,39875,63046,2 +13870,Tom,11873,1265403,32 +13871,,201724,1183822,7 +13872,Man outside Office,539,2636,13 +13873,Man in Black,10208,16620,13 +13874,Co Pilot,1924,1173817,66 +13875,Taxi Driver,814,1116,39 +13876,Professor Bonsignore,10867,15134,4 +13877,Cmdr. Talbot,691,76184,27 +13878,Nick Powell,73969,1196909,9 +13879,Arnold 'Arnie' Watson,38965,10555,2 +13880,Henri Guillaumet,78802,4138,0 +13881,2nd Reporter,1924,1681414,35 +13882,Lieutenant Commander - HMS Devonshire,714,1423899,25 +13883,Un voyageur,11876,49487,16 +13884,Stuart Little (voice),10137,521,0 +13885,Woman at first Seance,3092,1002235,6 +13886,VIP Stewardess,18,232174,21 +13887,Fross,15765,8687,7 +13888,Tom Harris,4338,29368,4 +13889,Joey La Motta,1578,4517,1 +13890,Miss Spider (voice),10539,4038,4 +13891,David Barker,1443,17241,14 +13892,Jonny Jalouse,49788,1283200,9 +13893,Dr. Wallace Wrightwood,8989,18156,7 +13894,Gold Tooth,169,2074,14 +13895,Johnny LaGuardia,76411,13472,0 +13896,Mamie,39938,85847,13 +13897,Job Horse Boss,14522,15358,15 +13898,Detective,9296,1237599,59 +13899,Schoolboy (uncredited),25898,67371,14 +13900,Moishe,14811,117300,24 +13901,Monk,490,6664,10 +13902,Stab,16094,10863,6 +13903,Harlan Dykstra,17133,11864,4 +13904,Opera manager,9343,18405,7 +13905,Simon Wells,71701,7665,0 +13906,Native Leader,159727,1141556,4 +13907,Det. Sgt. Holden,47886,72888,2 +13908,Endymion Hart-Jones,10467,12642,7 +13909,Bud,10871,27740,8 +13910,American (uncredited),289,90074,21 +13911,Arlo,1630,1064,6 +13912,Little Boy's Mother,814,1660164,37 +13913,Claudia Villars,167,1981,3 +13914,Helen,11800,71266,12 +13915,Lisa Dolittle,3050,31029,5 +13916,Chalky,10373,26854,2 +13917,Cora Rusk (uncredited),10657,27539,27 +13918,Juan #1,9771,1525312,13 +13919,l'Oxien (La Denrée),9317,35323,2 +13920,Sleepy Neighbor,4547,12047,9 +13921,Ballroom Waiter,9475,1800174,31 +13922,Gianni Saletzzo,17133,12836,6 +13923,The Butler (uncredited),73969,29266,21 +13924,Raunchy woman,11159,1749200,31 +13925,Tahitian Native (uncredited),12311,1061730,49 +13926,Nightclub Patron,21721,1345870,11 +13927,Graduate,11159,1749204,37 +13928,,45565,6194,0 +13929,Vic(toire) Berreton,166,1957,2 +13930,Roland McGovern,70199,85547,6 +13931,Lila Wingo Newbury,10333,18794,3 +13932,Max,10603,58090,8 +13933,Jim Kurring,334,4764,2 +13934,Putzie,621,8898,7 +13935,Nurse #1,44414,164015,7 +13936,Doctor,39176,591881,15 +13937,Martin Gruber,282919,77881,6 +13938,Karl Westover,31665,2048,1 +13939,Police Sgt.,251,17401,6 +13940,Walters,10724,9914,13 +13941,O'Malley,14550,6541,7 +13942,Barbara Buckley,4133,679,4 +13943,Locksmith,28047,154073,18 +13944,Peter,10847,166602,11 +13945,P.G. Biggershot,17711,1895,9 +13946,Mr. X,985,14795,2 +13947,Russian Visa Official,1859,30272,47 +13948,Sir Henry Curtis,43860,29127,4 +13949,Robert Hoffman,75641,3617,14 +13950,Extra (uncredited),2897,1506410,127 +13951,,92384,223263,4 +13952,Jose,2453,64351,9 +13953,"Upson Pratt (segment ""They're Creeping Up On You"")",16281,5249,5 +13954,Diva's Assistant,18,1427818,62 +13955,"Emily, Jennifer's Assistant",4916,271933,6 +13956,Jeff Conaway - 'Taxi' Actor,1850,8894,11 +13957,Extra (uncredited),2897,178888,69 +13958,Bugs,1907,19871,9 +13959,Jan Brown,9464,5657,5 +13960,"Else Woltersheim, Patentante Katharinas",4762,39304,9 +13961,Musician,6068,1609266,49 +13962,Christo,1907,19867,4 +13963,Sam Newfield,11298,14253,6 +13964,Trip Fontaine,1443,2299,3 +13965,Apocalypse Inc. Executive,28165,64856,12 +13966,David McAree,9877,1591894,12 +13967,Dr. Blake,10950,2453,13 +13968,Girlfriend #1,15037,56824,6 +13969,Mozo (voice),28032,52699,11 +13970,Melissa,10173,154716,5 +13971,John Simpson Chisum,38765,4165,0 +13972,Matt,5917,1894149,28 +13973,Lily,22279,47754,3 +13974,Bank Clerk (uncredited),34106,1420542,113 +13975,Ed,638,9286,3 +13976,Extra (uncredited),2897,1578504,214 +13977,Lucy Shepherd,9087,112080,5 +13978,,77825,554984,1 +13979,Lady Kaede,11645,72607,5 +13980,Hait,27052,96845,3 +13981,DMV Clerk,8989,1075120,12 +13982,Charles De Mar,13667,87003,6 +13983,Pénélope Fontanet,166,1970,7 +13984,Matty Crimmins,30666,86923,2 +13985,Berta,18079,1348332,12 +13986,Eddie Devane,24405,18687,1 +13987,(uncredited),36245,28676,22 +13988,William,30265,15440,5 +13989,Mr. Littlejeans,11545,8690,10 +13990,Polly Franklin,39771,7634,0 +13991,Carl Moll,56934,225233,6 +13992,Whist Partner,2897,10027,2 +13993,Inspector Harley Temple,30308,11169,2 +13994,Parent #3,18736,61264,30 +13995,Have a Nice Day Stewardess,786,1221086,43 +13996,Ken,11374,15661,11 +13997,Sam 'Ace' Rothstein,524,380,0 +13998,Cave Nug,10406,59642,15 +13999,The Guy in the Bathroom,9464,1733427,15 +14000,Deputy,41478,1214402,12 +14001,Red Stovall,37917,190,0 +14002,Agent Barker,10208,2694,9 +14003,Ghost of Hamlet's Father,10549,8318,15 +14004,Col. John Henry Patterson,10586,5576,1 +14005,Fencing Teacher,20242,29714,17 +14006,Mr. Clemens,72086,74689,4 +14007,Rupert Douglas,409,5482,16 +14008,François Beretton,166,1958,0 +14009,Jonas Skat,490,6667,13 +14010,Radio Reporter #2 (voice),55420,1799819,28 +14011,Klara Sesemann,28345,95627,3 +14012,Königin Ute,5608,44352,11 +14013,Nurse,42739,80369,9 +14014,Jack Goodman,814,2171,2 +14015,Felipe,26165,91541,1 +14016,Her brother (as Bud Fine),51371,141139,3 +14017,Lt. Jimmy Williams,10400,6574,7 +14018,Rude Gambler,75,518,4 +14019,Blaine,1480,1234558,23 +14020,Society Lady at Mayor's Party,9563,1741414,51 +14021,Harry Radman,11000,77338,9 +14022,Eddie Cisco,30709,4521,3 +14023,Penny Hart,40866,95788,2 +14024,Isabelle,47119,1866974,7 +14025,Christine,125520,33394,2 +14026,Confused Student,11397,1773874,90 +14027,Himself,21024,86995,6 +14028,Linda,764,11464,3 +14029,Charlotte Caulder,29786,63936,3 +14030,Mr. Habib,11862,26510,10 +14031,Teacher,9593,23709,11 +14032,General Fenton,30175,45921,7 +14033,Otto Kringelein,33680,17753,4 +14034,Kitagawa Yanosuke,28273,7457,10 +14035,,18919,1320288,14 +14036,"""Gentleman"" Jim Corbett",5917,45094,12 +14037,Jimmy Mercer,22213,10814,0 +14038,Andy Stone,524,7169,5 +14039,"Gil Hicks, Suitor #3",2293,23629,13 +14040,Montel,60082,141825,4 +14041,Colleen Hess,2675,23627,6 +14042,So Fine Dancer,84735,103582,16 +14043,Claude,60083,96416,6 +14044,Alan Jones,1890,1873997,13 +14045,Kate,28387,20047,17 +14046,Ivan Ooze,9070,652,8 +14047,Francis 'Frank' O'Brien,19760,5724,1 +14048,Dr. Veronica Shade,36259,7137,5 +14049,Channel 3 Reporter,11377,98879,11 +14050,Mr. Jones,245268,4353,9 +14051,Luau Lady,4806,95469,18 +14052,Major Major,10364,64930,6 +14053,Blonde,1647,1111852,37 +14054,Count Rodrigo Torriani,38715,116367,0 +14055,Buddy Cole,2046,1771,1 +14056,Major von Falken,18783,12157,12 +14057,War Room Aide (uncredited),935,1556340,20 +14058,Cy Jordan,10671,152666,12 +14059,Rick,476,6474,2 +14060,White House Tour Guide,36658,33053,26 +14061,Extra (uncredited),2897,18585,175 +14062,Nick,140519,38667,4 +14063,Organist,15144,10091,32 +14064,Angie Sullivan,11003,94978,9 +14065,VIP Booth Judge (as Tom Karle),11535,1674958,76 +14066,,10466,77054,17 +14067,Ronald Ellinghouse,10866,12548,10 +14068,Roy O’Bannon,6038,887,1 +14069,Coyner,35696,1234204,6 +14070,Sarah,21142,1507115,7 +14071,Oriental at Rick's (uncredited),289,1331756,29 +14072,Dr. Joshua Strongbear Sweet (voice),10865,56853,5 +14073,Michel Blanc / Patrick Olivier,64567,21175,0 +14074,The Toxic Avenger / Apocalypse Inc. Executive,28165,99039,0 +14075,Dolokhov,11706,4122,11 +14076,Maj. John Howard,9289,20393,66 +14077,Twin #2,10897,67849,7 +14078,Becky,29938,105289,2 +14079,Clinty Clintridge,25934,190391,7 +14080,Bertrand,6187,48581,8 +14081,Mara,2135,97049,16 +14082,Francisco,46924,8537,18 +14083,Juanita Jordan,2300,4604,4 +14084,Cynthia 'Cindy' Cronenberg,15762,83096,2 +14085,Mary Claire Clark,12618,25869,20 +14086,Bit Part (uncredited),961,1269187,17 +14087,Manager of Jeweler's Shop,623,49968,10 +14088,Lawrence Berger,35292,1806674,12 +14089,Englishwoman (uncredited),289,977271,52 +14090,Le Grand Père,26252,94938,2 +14091,Alvaro,18222,176978,9 +14092,Nick Bartkowski,30352,829,7 +14093,Booby Rupp,278978,1181865,5 +14094,Peter Ericson,11697,4119,9 +14095,Ronnie,22213,110,3 +14096,American Groupie,12104,64056,5 +14097,Janet,90414,151384,3 +14098,Roswitha,129542,23340,2 +14099,Narrator,11516,69681,0 +14100,Warning Cop,2990,19752,12 +14101,Petrovich's Bodyguard,11535,1674955,73 +14102,Senator,25430,162061,25 +14103,Kelly,93350,86310,4 +14104,Don Kardong,22256,106435,7 +14105,Col. Gen. Alfred Jodl (uncredited),9289,16310,47 +14106,Max Fabian,705,10610,6 +14107,Bank Colleague,2084,34548,18 +14108,Russell Thompson Jr.,9354,57421,6 +14109,Lance Agensky,35118,707,3 +14110,Jean Mermoz,78802,5576,5 +14111,direktörsassistenten,29224,76392,16 +14112,Bookie,524,58474,43 +14113,Jacques Paganel,34774,112972,0 +14114,Polly,580,16223,13 +14115,First Minister of Finance (uncredited),3063,981096,33 +14116,Dalton,15379,72546,9 +14117,Joyce Trexler,167,1984,6 +14118,Catherine Sloper,45019,10431,0 +14119,Dr. Strasse,11902,1865,16 +14120,Comrade Buljanoff,1859,2494,5 +14121,Milek,125945,20044,7 +14122,John Bernard Books,12584,4165,0 +14123,Angie,13346,112304,11 +14124,Hong Kong Citizen (uncredited),2897,95014,285 +14125,Miriam,4012,53755,12 +14126,CHP Officer,11950,83414,11 +14127,Stan,42832,38526,1 +14128,Saloon Patron (uncredited),2897,1596342,283 +14129,Melio - Blue Team,17971,17167,8 +14130,Violet,18222,56824,0 +14131,Orphan Boy (uncredited),70801,1004150,12 +14132,Rachid,10303,1076200,10 +14133,Wendy,10783,60278,11 +14134,Alex Finch,3064,3223,1 +14135,Miss Herbert,23114,83477,15 +14136,Bumpy Jonas,482,6561,1 +14137,Gail Dwyer,11472,3234,3 +14138,Milton A. Donovan,45928,522,3 +14139,Naval Officer (uncredited),15875,161766,16 +14140,State Trooper,8467,16846,22 +14141,Parent #1,18736,65811,28 +14142,Adina,60082,45245,1 +14143,Alison Keith,99351,119979,11 +14144,Josépha Cruchot,11915,11217,7 +14145,Sunshine,17971,58711,18 +14146,Pvt. Soprano (uncredited),10590,1381493,52 +14147,Old Flavio,91076,856,5 +14148,Arab Guest with Fez (uncredited),289,1331758,39 +14149,Caroline Mulford,15144,16181,3 +14150,Artie Doyle,6038,27678,21 +14151,Himself,3028,24880,17 +14152,Betty Loring (as Delma Byron),32484,1046803,6 +14153,James,261246,1364322,11 +14154,Dr. Gustav Zoomer,26661,113511,6 +14155,Richter Tyrone Kipler,11975,2047,14 +14156,CHP #2,20075,106747,11 +14157,Paul,23069,1152492,2 +14158,Andre Marais,32049,1502512,30 +14159,Ellie,15256,21197,4 +14160,Apollo Creed,1374,1101,3 +14161,News Vendor (uncredited),289,1331759,41 +14162,Waiter (uncredited),2897,1468481,308 +14163,Mr. Savage,51955,932202,8 +14164,Franc Cinatra,54405,1748939,28 +14165,Reporter,21380,1401184,7 +14166,Heihachiro Honda,11953,1484301,31 +14167,Martello,11524,1417452,13 +14168,Jake,36489,1383190,10 +14169,Charlie,13440,8435,7 +14170,Andy Wolf,811,12123,3 +14171,le lieutenant Schlöndorff,52366,2829,8 +14172,Maffio Venier,8583,17485,3 +14173,Pete,11899,73210,8 +14174,Norman Robberson,26261,54812,0 +14175,Zand,54845,85142,5 +14176,Pearl Prophet,10134,63936,5 +14177,"Charlie, Trailhand",39435,19877,4 +14178,Reporter #3,1637,1872805,36 +14179,B. Bobby Hall,11975,172677,20 +14180,Walt Henderson,655,923,2 +14181,'Big' Ben Healy,28597,5251,2 +14182,Marshall Murdock,1369,16119,2 +14183,Shirley,11800,20362,4 +14184,Marta Rychlinska,22257,140223,3 +14185,Nigel,9651,18266,7 +14186,Sir William Beeder,43139,92908,4 +14187,Aide to Capt. Cyril Simard,11422,15112,16 +14188,Senior Optician (as June Mitchell),11159,1749196,15 +14189,Mr. Ried,11800,24368,13 +14190,Risto - Grandi's Nephew,1480,94894,11 +14191,Jacob,117026,29645,3 +14192,Jaswinder Kapoor,4254,6498,7 +14193,Roland,10394,12801,9 +14194,Jack Kelly,4147,35022,7 +14195,Laura Werpachowsky,5333,43628,5 +14196,Rachel,141210,1067761,0 +14197,Cameraman,32227,112570,12 +14198,Tehani,12311,939707,10 +14199,Customs Official,10351,11750,22 +14200,Ray,11576,7332,52 +14201,Nick,32872,32597,2 +14202,Judith Dunhill,42424,35552,11 +14203,Guy Painting Billboard,39462,1185642,11 +14204,Helen O’Regan,36773,23378,6 +14205,Dale Putley,12499,2157,0 +14206,Ted Ellison,24126,10194,7 +14207,Ellen,38982,58045,4 +14208,Sandra Corleone,238,160728,32 +14209,Sarah,5279,1739314,29 +14210,Winston F. Buckner,11521,95741,9 +14211,Mona,29649,10556,2 +14212,Nanny,9716,1661583,46 +14213,Deputy,6038,27120,16 +14214,Gen. Tennyson,9099,13732,11 +14215,Policeman (uncredited),289,1331764,58 +14216,Clarisse,29471,123943,8 +14217,Jackie,15765,100653,2 +14218,Debrah Ann,47889,1607815,5 +14219,Laura Fawkes,35292,10929,16 +14220,Elsie,5279,1639,10 +14221,Carla Tate,18417,3196,0 +14222,Sailor,34774,112978,19 +14223,Brown,10142,154759,7 +14224,Frederick Graves,71067,29261,1 +14225,Russell Clifton,79593,147119,3 +14226,CC (age 11),15592,167640,10 +14227,Raji,10406,18917,7 +14228,Young Janet Stone,11889,18066,8 +14229,Ellis (uncredited),949,1584544,64 +14230,Alfredo,11216,24366,0 +14231,,59199,8289,1 +14232,Dr. Boyle,2613,13726,2 +14233,Fashion Designer,34838,1090538,5 +14234,Harry Faversham,10568,65851,1 +14235,Henry,1999,20543,8 +14236,Hans' Wife,229,2934,13 +14237,Jacques Martens - his son,117500,18559,3 +14238,Bert,25501,109755,1 +14239,Chief of thieves' gang,12780,1346931,16 +14240,Travis Brickley,32049,2969,2 +14241,Wife of Pickpocketed Englishman (uncredited),289,10926,90 +14242,Vet,47955,119782,5 +14243,Thurston Howell,334,19439,19 +14244,Mr. Sighvatssohn,1811,136228,23 +14245,Sandman,10803,161724,12 +14246,Chief Hatcher,12101,2112,5 +14247,Ronnie,125764,502,3 +14248,Don Tonay,2750,7318,9 +14249,Blossom,22910,2230,0 +14250,Library Attendant,9877,83024,17 +14251,Willie - VA Hospital,2604,27448,47 +14252,The Motel Clerk,9464,1733426,14 +14253,Prince Romanoff (uncredited),17057,135169,14 +14254,Matty Matthews,13505,23821,1 +14255,Monica Pear,29739,18292,1 +14256,Simon Moon,38950,41224,3 +14257,,18939,1391518,19 +14258,Ann Miller,678,10163,6 +14259,Student on street,24254,91462,50 +14260,Mo,327,4992,7 +14261,Yates,2100,103,2 +14262,Jeremiah Johnson,11943,4135,0 +14263,Lottie,19101,155864,7 +14264,Ed Galt,39833,91260,9 +14265,Sugar Boy,25430,120447,10 +14266,,46286,23659,8 +14267,Junger Gast,5991,82,10 +14268,Ida Muntz,10467,6684,6 +14269,Cheesy Stud,11415,162091,14 +14270,Elizabeth,3036,1283,3 +14271,Immigration Officer,2984,1458297,19 +14272,Dwight,38950,8609,4 +14273,Jimmy,19324,11511,2 +14274,Matsudaira,3780,1482627,21 +14275,Michael,15850,19578,5 +14276,Maggie,13536,5699,5 +14277,HMS Ranger Crewman,691,35063,21 +14278,Ipson Fallari,33356,124237,4 +14279,Margaret,2021,5309,2 +14280,Young Hugh,10657,59613,24 +14281,Fitzgerald,33851,39186,10 +14282,President,32595,50303,10 +14283,Dude,11397,80224,42 +14284,Reporter,17692,1296379,22 +14285,Lazarre's Tough,379,1281537,33 +14286,Peter Baxter,15850,12889,3 +14287,Villiers,10491,984,14 +14288,Villager of Tullymore,10162,1609658,35 +14289,Anne Lansdale,42149,18859,1 +14290,Model,6068,84785,22 +14291,Double L. Dingman,32140,141693,6 +14292,Wallace 'Wally' Karue,11185,9309,0 +14293,Sharona,75,18979,19 +14294,Amos Slade (voice),10948,3461,3 +14295,,83562,174982,10 +14296,Miss Kettlewell,11186,5151,7 +14297,Dancer (uncredited),2897,153573,159 +14298,Father,47943,39436,5 +14299,Carol Stone,577,11318,10 +14300,Andy,24126,1176338,8 +14301,Roz Allardyce,13549,40618,4 +14302,Jane Burns,11812,11826,3 +14303,Ancell,11524,1417451,12 +14304,Grandmother,985,14802,9 +14305,,210307,21200,0 +14306,Officer Raymer,11593,1233,8 +14307,Alma,19200,199,7 +14308,Finch,32049,32286,16 +14309,Jingyun,47694,1191929,16 +14310,Lorne's Secretary,35696,218605,14 +14311,Dr. Chapman,23069,35189,4 +14312,TV Photographer (uncredited),28,7202,31 +14313,Reporter,35292,233513,33 +14314,Tim Gerrity,13571,13548,1 +14315,Sara,40879,15555,1 +14316,Busboy,522,58474,42 +14317,George Bates,53714,10608,1 +14318,Female #1,1813,1089396,39 +14319,Lieutenant Tracy,37936,136045,14 +14320,Neighbor A,4307,25221,11 +14321,Little George,4993,5050,7 +14322,Hampton's Waiter,215373,175311,15 +14323,Toy Store Girl,10354,140,26 +14324,John Bigboote,11379,1062,4 +14325,Mrs. Kent,9095,1229735,5 +14326,Brenda Ryan,54405,557128,12 +14327,Parker,857,20471,17 +14328,Stacy Sinclair,13685,955807,10 +14329,Stucky,2662,6451,16 +14330,Jimmy Gator,334,4492,4 +14331,Lieutenant Colonel Bill Kilgore,28,3087,2 +14332,William 'Deke' Parsons,27461,97786,9 +14333,Basketball Coach,1793,44893,11 +14334,Gunman Popi,134368,40481,6 +14335,Arthur Hummel,8494,13473,4 +14336,Frankie,18691,83457,1 +14337,Julia,12186,5064,1 +14338,Uriah,2428,2770,17 +14339,Boy,29698,135059,28 +14340,Michael Carter,24212,91361,0 +14341,Criswell,522,4004,4 +14342,Realtor,2990,6199,14 +14343,Dancer,46986,1535190,53 +14344,Kurr,24883,922,2 +14345,Cheerleader on Football Field,11397,203263,63 +14346,Docent,24750,3665,8 +14347,Gunnar,8816,56392,1 +14348,Mané Galinha,598,5659,6 +14349,Le Cirque Waiter,9716,162568,22 +14350,Massoumeh,43978,1890326,1 +14351,Babs,105,97708,16 +14352,,10643,1029276,11 +14353,Harold Gorton,11415,66606,1 +14354,Marie,19200,3125,8 +14355,Will,10847,61043,17 +14356,Debbie Edwards (older),3114,2769,3 +14357,Lyla Potter,40952,1081797,8 +14358,One of the bad monks,12780,1346926,9 +14359,Dr. Lee Sum Yee,10775,72730,4 +14360,Will Bonner,310431,1269,2 +14361,Dr. Zeko,12158,47458,5 +14362,Rhonda Wilson,7340,52468,16 +14363,Igor,41760,74829,6 +14364,Delivery Man (uncredited),3309,587264,54 +14365,Capt. C. G. Culpepper,11576,12147,0 +14366,Cursing Voyager,40952,11767,18 +14367,Dana Howard,161795,990400,1 +14368,Tolmatchoff,269,3835,8 +14369,Harry Hall,31306,9208,8 +14370,Hudson,2984,29309,5 +14371,Minor Role (uncredited),2897,1264978,277 +14372,Personnel Man (uncredited),3309,139178,40 +14373,Arthur Belt,31586,16165,3 +14374,Emilio Juantorena,11859,30488,4 +14375,Platoon Sgt. Bellamy (42nd Engineers),11589,78087,15 +14376,Chief Rotten Eagle,53617,8635,6 +14377,Pvt. Little Joe,11589,41406,7 +14378,Pyotr Baranovich,10724,15788,7 +14379,Mr. Scott,16550,21505,2 +14380,"Nolan, Greenhill's Doorman",4916,17646,7 +14381,John Slade,15943,4966,3 +14382,Scott Dandrige,9716,526,13 +14383,Himself,10050,35549,12 +14384,Diane Lightson,11933,3416,3 +14385,Derek Foreal,4133,5129,6 +14386,Peter Hackmann,287305,1875,4 +14387,Lama Dorje,1689,582126,9 +14388,"Mr. Booth, the Lawyer",16235,57357,7 +14389,Mrs. Wilson,2604,181312,18 +14390,Sarah Little,37718,4430,1 +14391,Starkey's Brother,43997,150175,10 +14392,Rohit's Mother,4254,35767,12 +14393,Maj. Gen. Max Pemsel,9289,14121,56 +14394,Small Role (uncredited),5991,38244,11 +14395,Security Guard,32049,1502536,43 +14396,Bonnie,31044,74954,15 +14397,Pikachu (voice),12599,73044,3 +14398,Owner of Gus & Grace's Home,42569,7004,7 +14399,Toynbe,857,52476,15 +14400,Freddie Reynalde,22279,107729,17 +14401,Resident,9613,1238424,18 +14402,Frank Machi,55731,26485,1 +14403,Laverne,4825,22948,11 +14404,Frankie,33689,1329538,7 +14405,Mr. E,27834,1954,7 +14406,Oliver,14587,108462,4 +14407,Dan Dobkins,12584,158152,10 +14408,Mario,1578,17653,6 +14409,Additional Voice (voice),9016,86007,27 +14410,Tommy Dearly,46786,3801,5 +14411,Azra,20123,85645,4 +14412,Fred the Cook,24739,30615,8 +14413,Rafael,966,103565,26 +14414,Man (uncredited),490,34774,21 +14415,Mrs. Kallender,17692,40394,14 +14416,Sean,814,1660018,27 +14417,Larry Fouch,9451,37059,13 +14418,Hal Sinclair,9296,12217,4 +14419,Camilla,32043,36820,0 +14420,Kenny Travis,24126,27504,1 +14421,Cliff Wyatt,45671,87956,3 +14422,Joe,10950,1407026,9 +14423,Danuta,9540,5942,3 +14424,Doctor,16643,63563,11 +14425,,73642,174745,2 +14426,"Lintom Busotsky, Film Producer",39578,33547,10 +14427,"Katie, Waitress",24405,21619,11 +14428,Prostitute (uncredited),39771,41711,15 +14429,Mr. Talbot,71701,30675,12 +14430,Hero,1715,188049,17 +14431,Professor Utonium (voice),59387,71535,3 +14432,Donald Woods,12506,8945,1 +14433,Tyrone 'Clean' Miller,28,2975,5 +14434,Admiral James T. Kirk,157,1748,0 +14435,Eleanor,31342,8535,6 +14436,Grandpa Lou Pickles (voice),14444,86434,11 +14437,Winston Smith,9314,5049,0 +14438,Guildenstern,10549,81598,11 +14439,Etienne Vercures,37936,1147575,11 +14440,Brad,10950,1235193,8 +14441,Maggie Sand,50463,11318,6 +14442,Mr. Bonet,505,6916,8 +14443,English Harry,41160,25456,25 +14444,Det. Phil Allen / Lucky (voice),10137,1219157,16 +14445,Hans,3035,30496,15 +14446,Workman (uncredited),220,120178,60 +14447,Mr. Cantor,31044,109071,41 +14448,Eugene Davis,5551,21416,6 +14449,French Maid,2984,1887361,20 +14450,Chief Jack McGinnis,10871,886,11 +14451,Bumped First Night Diner (uncredited),3309,103499,37 +14452,Charles Robinson,714,5414,11 +14453,Luke Sanderson,11618,887,2 +14454,Anna Sofie Schindler-Moll,56934,35259,5 +14455,Police Sgt.,28577,27734,14 +14456,Indian Sports Announcer,11535,128154,59 +14457,English Teacher,15764,92811,13 +14458,Donald Phelps,29143,9807,3 +14459,Mrs. McMurdock,24005,14030,23 +14460,Townsman at Carnival (uncredited),220,32221,18 +14461,Pat,16806,72680,12 +14462,Paul Curtis,39435,58423,6 +14463,Tommy Hill,29343,103575,8 +14464,Radar Blazer,11379,161541,25 +14465,Nicky,9366,9257,3 +14466,Father Dawkins,19819,20959,7 +14467,Det. Lt. Bracken,47886,29312,0 +14468,Military Man,10643,50659,12 +14469,Will Sullivan,11593,40271,11 +14470,Marguerita Dauphin,18692,9871,1 +14471,Tuerto,62488,26485,4 +14472,John J. Rambo,1369,16483,0 +14473,Himself,2300,1315446,21 +14474,Joline,40562,69122,0 +14475,Townsman (uncredited),220,1600506,64 +14476,Ruby,11593,1106256,18 +14477,Woman at Harlem Club (uncredited),678,120750,23 +14478,Azizeh,43978,1890329,4 +14479,9th Elder,1924,1613400,23 +14480,Scuz,10925,93149,9 +14481,John Durrance,10568,12689,2 +14482,Mark Wiener,11446,80541,7 +14483,Mel - Hoodlum Stealing $50,26378,115329,70 +14484,Minnie Mogul,17711,21197,8 +14485,Elias Graves,71067,32139,3 +14486,Millard (uncredited),12311,1291266,54 +14487,Laurie,28774,152703,15 +14488,"Антонина Буянова (Тося,Тоня)",21028,87000,2 +14489,Princess Sophia Frederica / Catherine II,31527,2896,0 +14490,"Stadtrat Holzgang, Kreisleiter der NSDAP",15873,38053,10 +14491,Nurse Alex Price,814,14464,1 +14492,Ludwig I. von Bayern,12632,23721,6 +14493,Willie Morris,17908,51391,0 +14494,Ghost Dancer,9716,1661625,82 +14495,Ragnar,742,11048,13 +14496,Wally's lawyer (uncredited),3309,589217,25 +14497,Milt,6644,13875,11 +14498,abitante a Panarea,25403,7700,18 +14499,Man at Xanadu Great Hall (uncredited),15,1034935,34 +14500,Member of climbing team,12516,19049,11 +14501,Newspaperman at Trenton Town Hall (uncredited),15,83822,85 +14502,Jen,13411,93663,14 +14503,Machino,20645,554566,3 +14504,Dr. Trimble,10344,67520,14 +14505,Agent Frank Haddad,9882,4252,3 +14506,Ned Runcie,32043,70743,3 +14507,Male Guest at Party,10603,49275,14 +14508,Rick Myers,26958,51539,0 +14509,Nobleman (uncredited),25898,33382,18 +14510,Waitress,10692,67162,5 +14511,Deputy Warden,5924,7636,23 +14512,Extra (uncredited),2897,572525,246 +14513,Ted's Secretary,12102,322506,13 +14514,Doctor Doyle,18801,11857,3 +14515,Bartender,36797,124087,18 +14516,Leah Harmon,13550,92959,8 +14517,Sue Wellington (1940's),66597,1160,3 +14518,Emile Griffith,10400,1393338,36 +14519,Julie Rubels,9308,3270,4 +14520,Dutchy,43832,2497,6 +14521,Man (uncredited),34106,1109646,96 +14522,Ron Kovic,2604,500,0 +14523,Lt. Terry Eden,10652,56785,12 +14524,Spartanette #4,14,1503021,28 +14525,Helicopter Pilot,4478,1278542,37 +14526,Wanda,26954,147396,4 +14527,Freddie,15943,12299,9 +14528,Aïe's mother,78657,26170,5 +14529,Chief Yarboro,24405,41745,14 +14530,Legolas,120,114,3 +14531,Beedle,3092,91663,15 +14532,Prompter (uncredited),15,120474,121 +14533,Keith Livingston,21721,57082,9 +14534,Dip,15943,19440,10 +14535,Nazi,525,122124,41 +14536,Mr. Waturi,2565,6486,10 +14537,Tokubei Izumiya,3780,7453,12 +14538,Erzbischof Werner,36773,12647,2 +14539,Carlos Barrios,30352,2049,2 +14540,Dagmar,2565,99,7 +14541,Gail,28387,10130,8 +14542,War Department Colonel,857,17419,23 +14543,Marvin Berry,165,1074,42 +14544,David's Mother,10863,1203246,8 +14545,Waitress,11688,91024,14 +14546,Defense Attorney,16820,84248,12 +14547,Maj. Gen. Luke Howard,35284,85940,12 +14548,Mila Hauser,75641,932474,11 +14549,Jewel,1375,16667,13 +14550,Joseph 'Joey' Trotta,10750,3033,1 +14551,Rex Manning,13531,101908,2 +14552,Pink,12104,47991,3 +14553,Brenda Baker,15144,203731,7 +14554,Dancer (uncredited),15,1445496,100 +14555,Vigo (voice),2978,2201,17 +14556,Lame Wolf,35200,940876,8 +14557,Capt. Douglas Pine,40688,778,3 +14558,Woman at first Seance,3092,228813,4 +14559,Oak Room Patron (uncredited),9475,86313,25 +14560,Isomura Eiichirou,28273,20340,6 +14561,Buzz 'Sixpack' Parrish,14372,11511,4 +14562,Paulette Mérodon,31417,37129,6 +14563,Franklin Pou - age 8,152023,1132211,12 +14564,The Coach,11397,21523,23 +14565,Lt. Kivel,935,948173,11 +14566,John Wyatt,6,10822,14 +14567,Atze,9589,1728638,12 +14568,Nicholas Andre,8467,7867,6 +14569,Head Nazi,525,19439,15 +14570,Tab Fielding,12101,27747,3 +14571,Russel Hines,577,1893,3 +14572,Miss Antonia 'Tony' Sloviak,11004,1188782,7 +14573,Charles Montgomery,2608,4139,5 +14574,Dr. Lees,9358,158374,26 +14575,,56235,223817,8 +14576,Scruffy Staff Worker,61563,90659,7 +14577,Nahum Witley,29067,2922,0 +14578,Travis Moore,170430,156707,8 +14579,Jim Piersall,125413,7301,0 +14580,Commander Bruno Forestier,14626,24365,1 +14581,Mark,30363,140056,2 +14582,Mr. Rope,14429,55194,6 +14583,Kirby's Dining Guest (uncredited),34106,14455,33 +14584,Bob,1637,31007,28 +14585,Wife,11374,3422,13 +14586,Lab Guard,18,1857444,89 +14587,Moglie Dott. Cusimano,10867,553179,10 +14588,Chang Sing #4,6978,1613833,22 +14589,Harry Collins,28047,11477,0 +14590,Casino Bar Band Member,11873,1265410,43 +14591,Harada,327,137029,12 +14592,Photographer,34838,207309,6 +14593,Janine,50001,96300,13 +14594,Bernie,16980,76526,10 +14595,Marissa Hall,40952,156917,13 +14596,Truvy Jones,10860,67274,1 +14597,Ship's Crew #4,3036,62498,15 +14598,Sue,18477,1218219,7 +14599,April Love,12079,71335,4 +14600,Kid,11397,1773766,30 +14601,Captain Ho,12764,73583,3 +14602,Roland Hesketh-Baggott,2897,12718,23 +14603,Tommy Pervis,9354,1829,10 +14604,Alvy's Mom (as Joan Newman),703,10563,28 +14605,Elliot Crane (as Larry Casey),205054,1425467,2 +14606,Nimrod,2525,10020,10 +14607,Policeman at station,18939,140438,18 +14608,Thorsen's Daughter,10647,1450290,14 +14609,Ameilia Sarah Dedham,15875,78896,1 +14610,Bartender/Girl at the Beach,4338,34543,25 +14611,Babs Coleman,1813,1089398,44 +14612,Stella,9589,1728654,14 +14613,Dr. Max Hart,11361,1107848,16 +14614,Curley,51802,88649,5 +14615,John Dickinson,922,10158,8 +14616,First Student Climber,43143,101526,12 +14617,Le contrôleur du train,194,1129857,40 +14618,Elza,14534,162607,15 +14619,Policeman (uncredited),3309,95274,28 +14620,Ice Truck Man,10866,552468,15 +14621,Gerald Nyes,28295,1231324,10 +14622,Virginia Slim,2453,27008,2 +14623,Eugene,965,7664,0 +14624,Mr. Wilson,2604,1218890,17 +14625,Narrator / Urskeks (voice),11639,88894,20 +14626,Waitress,28047,100961,13 +14627,Nurse Sheila,28940,102424,5 +14628,Man in Trilby,3092,229645,16 +14629,The Virgin Mary,2428,24815,16 +14630,Dutchess the Cat (voice),9598,6035,6 +14631,Glen Greenwood,1634,147,3 +14632,Elder Qi,47694,554852,6 +14633,Willy Harrison,10950,1836327,23 +14634,Elephant Driver-Guide,2897,155252,43 +14635,Uncle Leo,37291,1748666,8 +14636,Roger Erlick,9403,4776,15 +14637,Clamato's Wife,9835,1212530,13 +14638,Extra (uncredited),2897,930167,89 +14639,Brok,8840,2719,8 +14640,Radio Announcer at Movie Premiere,16806,180738,14 +14641,The Inspector,72086,12726,1 +14642,Brick Bardo,10134,942,4 +14643,German Captain,11589,1878354,30 +14644,Yvonne,13962,32395,10 +14645,Dana Clifton,79593,20005,2 +14646,T.V. Reporter,9529,1408064,14 +14647,Prince Charles,16417,1267471,6 +14648,Brenda Bates,9877,59967,2 +14649,Dr. David Marcus,154,1795,9 +14650,Joe,62463,86044,11 +14651,Maria Forst,753,11140,2 +14652,Webster's Assistant,47942,51188,16 +14653,Ghost Dancer,9716,1661624,81 +14654,"Jim, the Caretaker",29239,96302,10 +14655,TV Reporter,27346,101615,10 +14656,Charles Foster Kane,15,40,0 +14657,Fauna Amor,2907,1888072,18 +14658,Morris Weissman,5279,12438,21 +14659,Kuang,2085,11677,12 +14660,Aunt Tillie,15310,116772,11 +14661,Prologue Narrator,2897,1225821,38 +14662,Antoine,166,15185,12 +14663,Shelley Levene,9504,3151,1 +14664,Nanny,9716,58731,1 +14665,Max Beissart,10466,7674,2 +14666,A Journalist (uncredited),269,87071,20 +14667,Mr. Mushnik,10776,14830,2 +14668,Rae Ingram,10493,2227,0 +14669,,47144,226302,11 +14670,Hal,29376,12504,5 +14671,Angela Vickers,25673,3635,1 +14672,Kenneth King,2046,10486,9 +14673,Waiter,25468,143806,2 +14674,Officer 2,1924,1250671,51 +14675,Henry L. Graham,28577,101877,4 +14676,Miss Persimmon - Old Woman in Park,433,117714,17 +14677,Canon Van Stone,1959,20243,8 +14678,Rum Daniels,51044,151864,5 +14679,Albert Torena,949,158452,22 +14680,Brooke Elliott,29372,88460,2 +14681,George Emerson,11257,6104,3 +14682,Georgette,194,2412,5 +14683,George,20242,4443,13 +14684,Josh Aickman,10351,167261,5 +14685,Margarette,19176,19838,4 +14686,Young Bird,24679,39597,3 +14687,Himself - Movietone News Narrator (voice) (uncredited),11202,589823,39 +14688,Tourist,27145,67527,8 +14689,Phone Technician,1073,941607,12 +14690,Phyllis Mann,26941,1666,1 +14691,Jacuzzi Girl #2,165,37623,34 +14692,Reporter (uncredited),34106,1199590,77 +14693,The Twins,10847,152273,4 +14694,Tom Hendricks,38732,148742,9 +14695,Lorna Te George,17139,143010,3 +14696,Danny Balint,4012,30614,0 +14697,Mr. Rawlston,15,11031,13 +14698,Knight Commander (uncredited),490,131579,28 +14699,Karen,15762,1485644,11 +14700,Susan Traherne,41166,5064,0 +14701,Master of Ceremonies,68569,47237,4 +14702,Scientist,18,202759,84 +14703,Chris' Girl at Party,14370,100603,19 +14704,Nazi,28940,568531,29 +14705,(uncredited),269,1513489,27 +14706,Hillebrandt (uncredited),12311,120461,58 +14707,Beach Boy,27346,101613,7 +14708,Doctor,42149,104174,9 +14709,Mitch Briggs,11397,154038,18 +14710,Capt. Frank,9289,33722,11 +14711,Mr. Chang,2625,16584,14 +14712,Prison Guard,10400,82647,52 +14713,Dr. Dave Greenwalt,714,23608,17 +14714,Laura Phillips,37718,1533,2 +14715,Max O'Bannon,178,2177,3 +14716,Herr Kosemund,278978,68324,7 +14717,Scientist's Aide,18,15740,31 +14718,Rowan,2892,28746,4 +14719,The Mark's Girl,19403,15954,10 +14720,Mel Clark,24795,18298,4 +14721,Thel Russell,922,15441,12 +14722,Géraldine,14651,4390,4 +14723,Innkeeper,10873,554274,11 +14724,Charles Bovin,12614,955645,10 +14725,Alexia Wheaton,27681,25541,0 +14726,Performer,34113,126534,7 +14727,Army Sgt. Rinaldi,20424,120178,7 +14728,German Singer,975,1019259,8 +14729,Dinner Party Guest,28384,1910,12 +14730,Terry Crabtree,11004,3223,5 +14731,John Anderson,66634,27753,0 +14732,Stockbroker #2 / Featured Player,31044,81899,44 +14733,Policeman in Park (uncredited),34106,1092484,125 +14734,Carol McGhee,41160,1626719,17 +14735,J.W. Woods Jr.,9423,3041,4 +14736,Charles Rutledge,31921,27772,3 +14737,King Zed,16441,558152,5 +14738,Father Reilly,40220,1778957,7 +14739,Father O'Reilly,28165,1708249,17 +14740,Ellen Morris,17908,2882,1 +14741,Mr. Trask,9475,8986,2 +14742,Dave,37820,77136,1 +14743,Marco,91076,58549,8 +14744,,43596,47301,10 +14745,Biscuit,6522,74354,8 +14746,Princess Aouda,2897,4090,15 +14747,Junior,38554,82415,20 +14748,Mrs. Walker,20443,160292,8 +14749,Mr. St. Clair,32484,120816,9 +14750,Accident Detective,1073,942976,15 +14751,Claire Cooper,28902,516,0 +14752,Gossip,1859,1349731,35 +14753,Chris,19209,92623,4 +14754,Police Chief,2897,3364,17 +14755,Villager of Tullymore,10162,1609657,33 +14756,'Boss' Dame,25006,60545,3 +14757,Amalia Prizzi,2075,21284,7 +14758,English Ambassador,10549,4786,22 +14759,Chief John Fitzgerald,2924,83197,9 +14760,Young Jimmy Kovic,2604,3210,31 +14761,(uncredited),29263,990661,21 +14762,Vronsky,50512,48,1 +14763,Arzt,2604,11889,8 +14764,German tank commander,11589,78094,24 +14765,Lillian Grossman,15764,11902,9 +14766,Dusty Bottoms,8388,54812,0 +14767,Cmdr. Uhura,154,1753,6 +14768,Harry Bancroft,108365,8975,2 +14769,Nurse,46986,17257,29 +14770,Young Howard,215373,1203318,11 +14771,Didi Giancano,36915,60023,8 +14772,Doctor Major Weiss,11296,68897,2 +14773,Dr. Thierry Pigot,9406,21177,6 +14774,Police Sgt. Harris,28295,98458,18 +14775,"Camilla, Duchess of Crotone",31945,23378,5 +14776,Santa Croce Guide,11257,1858659,21 +14777,Lisa Sahadi,1647,101258,20 +14778,Member of Wedding Party,229,121323,23 +14779,Steve McKenna,19403,83037,1 +14780,Big Mike,35569,1906,13 +14781,Mary,10395,20300,6 +14782,Peter Derns,17168,16327,0 +14783,Biderman,13962,4250,8 +14784,Servant,32093,1623506,25 +14785,Second Man,46797,1214091,11 +14786,Mr. Meyerson,31005,65748,10 +14787,Ruber (voice),18937,64,2 +14788,Katie Parker,35292,5320,3 +14789,Hughie Warriner,10493,1954,2 +14790,African Dad,31586,1179083,22 +14791,Michael Jensen,58886,1241993,4 +14792,Rittenhouse,17170,4254,9 +14793,David Rose,10863,67567,3 +14794,Jimmy Nolt,5917,1324478,40 +14795,Harold Carvey,2087,21376,6 +14796,Lien,34899,113388,0 +14797,Co Bao,1369,16578,4 +14798,Trish / Vanessa,88863,87117,2 +14799,Lira,84735,25810,2 +14800,Extra (uncredited),2897,1216356,133 +14801,Rod,2291,166890,14 +14802,Plantation Overseer on Trolley,43832,1198882,44 +14803,Frank James,13496,16856,3 +14804,Marva Vereecken,58886,228589,1 +14805,Joba,17139,79448,2 +14806,Transom,29048,24699,3 +14807,Yu Shu Lien,146,1620,1 +14808,Lois Simmons,19855,51544,2 +14809,Lefou (voice),10020,75599,7 +14810,Lottie,5279,29235,24 +14811,Raphael,54845,217551,3 +14812,Lucifer,1811,33676,5 +14813,Waitress (uncredited),3309,1080619,19 +14814,Indian Chief,1924,1123038,84 +14815,Dr. Fred Richman,539,14063,6 +14816,Ellie Moore,482,6563,4 +14817,Hippie Guy,9877,55593,21 +14818,"Peter, Laborer #2",46986,1087,31 +14819,TV Anchorwoman,11379,1385868,32 +14820,Waitress,39939,1544181,17 +14821,Blade - Blue Team,17971,8666,11 +14822,DC Mitchell,9905,8999,11 +14823,Keyes,45827,16896,0 +14824,"Johnnie Bradfield, aka Jack Dorney",26378,81970,0 +14825,Walter Burke,1647,1158,0 +14826,Statehood Audience Member (uncredited),11697,1507184,55 +14827,Sonny Paluso,28466,6837,1 +14828,Major General Lucian K. Truscott,11202,34130,27 +14829,Kelly Porter,58985,2233,4 +14830,The Hoggetts' daughter,9598,1080208,13 +14831,Tony,33542,44919,4 +14832,Karen Pomeroy,141,69597,4 +14833,Tada,13889,135377,10 +14834,Dr. Bennett,11185,52307,18 +14835,Musette,77056,581116,13 +14836,Eggy,41823,17840,6 +14837,Pompilius,78285,12270,1 +14838,Journalist,11535,1674985,85 +14839,Ed Chapman,42580,78729,2 +14840,Helga Katrina Sinclair (voice),10865,52300,2 +14841,Asgaard,4476,44208,16 +14842,Mayor,580,1673210,16 +14843,Brad Dupree,14,8214,10 +14844,Birdy's Father,11296,4048,5 +14845,Lt. Hector Martinez,2124,2049,2 +14846,Douglas 'Duddits' Cavell,6171,2680,6 +14847,Estelle Craven,29056,102722,4 +14848,Lori,22398,88745,2 +14849,American Commentator #2,1374,16646,10 +14850,Mr Floyd,11257,1858657,19 +14851,Jeannie,12606,22090,15 +14852,Cashier,8467,1853164,15 +14853,Tanner Jennings,23967,42374,6 +14854,Dave Robicheaux,36915,7447,0 +14855,Man #3 - Arthur's Bar,2604,1150570,61 +14856,Mrs. Fitzgerald (Carl's mother),37820,1357277,3 +14857,Arthur Lidz,52856,7868,4 +14858,Luca,48287,114034,13 +14859,Kate,41209,4766,2 +14860,Woman on Bridge,10647,81375,9 +14861,Brooke Morrison,41963,2109,2 +14862,Madeleine 'Frita' Day,43089,129267,2 +14863,Sheila Embling,19958,85353,6 +14864,Sandii,21430,18514,2 +14865,Glamorous Japanese Girl,18,1857460,109 +14866,Leo Lipnicki,19855,1527162,7 +14867,John Hontvedt,13526,4455,7 +14868,Uneasy woman,11159,1565425,40 +14869,Nellie Bly,18691,69763,4 +14870,Extra (uncredited),2897,1404180,65 +14871,Al,35292,663,14 +14872,Jose,19324,1801730,14 +14873,Barker,13555,27116,4 +14874,Dr. Singani,2892,28748,6 +14875,Subway Ghost,251,3418,4 +14876,Gail Krasno,32043,942839,6 +14877,Guy,5967,5476,1 +14878,Mary Deare,22279,201648,15 +14879,Edith Niedelmeyer,2124,28778,12 +14880,Donny Rossi,9475,149995,16 +14881,Pap Finn,34723,2372,4 +14882,Lenny Taylor,10394,3543,3 +14883,Le facteur de Poulain,194,1176105,45 +14884,Rose - Townswoman at Carnival (uncredited),220,954129,28 +14885,San Quentin Capt.,28577,6805,13 +14886,madre di Guido,145925,1127849,4 +14887,Jasmine,17203,10584,9 +14888,George Waggner,9532,72440,8 +14889,Bob Tanner,9396,118937,7 +14890,Pam,703,10409,5 +14891,Eddie Wilson / Joe West,25005,60650,0 +14892,Inspector Lau Kin Ming,10775,25246,0 +14893,Geek (as D. Lee Carson),13555,2380,9 +14894,Owner of eatery,11104,1618663,5 +14895,Grigori,8665,54414,22 +14896,Juliet (voice),45772,5081,13 +14897,Ma Johnson,73969,1092715,2 +14898,Lieutenant - Vietnam,2604,37204,36 +14899,Jack Parker,35292,7400,2 +14900,"Александра Александровна Тихомирова (Сашка), дочь Катерины и Рачкова",21028,87006,7 +14901,Minos P. Dautrieve,36915,6198,5 +14902,Jim,11442,7002,10 +14903,Caine 607,9425,58319,1 +14904,Gramma-Jess,11133,30226,7 +14905,Felix DeMarco,27834,17881,6 +14906,"Stephen, Irish Fighter",197,2482,23 +14907,Mrs. Guttman,10276,97267,6 +14908,Dr. David Faraday,37936,3381,1 +14909,Major Boshoff,12506,1212897,22 +14910,HRT Commander,10750,932823,14 +14911,Mae Thelma,10400,88161,6 +14912,Constable Jones,433,5831,9 +14913,Hillary Whitney Essex,15592,106706,7 +14914,Forensic Tech,11428,10051,15 +14915,Lt. Col. Hal Moore,10590,2461,0 +14916,"Sandy, Miss Salmon",29343,97753,13 +14917,Herself,17496,82270,7 +14918,Sen. Raymond Clark,23518,8254,4 +14919,Herself,82865,11806,0 +14920,Dance Student,3682,10692,31 +14921,Extra (uncredited),2897,1422180,117 +14922,Sue Snell,7340,27563,2 +14923,King Marchand,12614,16896,1 +14924,Sheila Ratcliff,10657,27115,16 +14925,Menachem,125945,1888565,6 +14926,Angelina,70801,1368767,3 +14927,Mr. Hawkins,9776,59162,18 +14928,Paula Caplan,660,9925,7 +14929,Wallace,966,2096,19 +14930,Reno Nevada,11379,1169,8 +14931,Miriam Blaylock,11654,50,0 +14932,Thor,26761,7663,0 +14933,Serena,36943,1114602,4 +14934,Pedro Luminares,107693,1268954,4 +14935,Nulf,890,8802,9 +14936,Minnie Beebe,11257,534537,15 +14937,Mary,28902,951387,6 +14938,Seamus,21132,8541,2 +14939,Frank,39428,5724,4 +14940,Dr. Robert Gould - Headmaster,10750,656,8 +14941,Hsiung,11134,119454,7 +14942,Librarian,54405,97170,16 +14943,Chedda,13369,62817,7 +14944,Judge Atkins,12102,96137,8 +14945,Man on Roof (uncredited),15,1490125,112 +14946,Roy (voice),9023,16119,10 +14947,Red Team #28,11535,1674890,19 +14948,Melanie Roberts,12122,18706,4 +14949,Isaac Davis,696,1243,0 +14950,Scientist Walker,9827,173133,14 +14951,Therese Lisbon,1443,17238,9 +14952,Olivier,108,1138,1 +14953,IRS Agent,3682,33659,15 +14954,Larsen,48787,1090481,12 +14955,Sadie,31044,1729788,38 +14956,Joseph Mansourian,41645,78018,2 +14957,Phil Beckoff,8463,14739,5 +14958,Sally - Stewardess,10671,1412560,32 +14959,James as Infant,50225,1104724,7 +14960,Betty Trout,4806,12133,16 +14961,Major General Clive Wynne-Candy,25037,83907,0 +14962,Extra (uncredited),2897,153260,66 +14963,Sheriff Walt Gaines,33172,14595,4 +14964,Candy,53617,1836715,14 +14965,A.J. Ferguson,10897,21986,19 +14966,Phil,10972,16560,1 +14967,Guy on Bridge,76,573,4 +14968,Skeleton Man,10351,555328,19 +14969,Tiffany,35118,133456,7 +14970,Adrien Peyrolle,11876,1316258,9 +14971,Undercover Vet - Miami Convention,2604,30487,70 +14972,Madame - Villa Dulce,2604,132300,68 +14973,Extra (uncredited),2897,1064925,179 +14974,Pastor da Igreja,598,8560,22 +14975,Stan Podolak,2300,4201,1 +14976,Debbie Thornberry (voice),14317,21320,6 +14977,Imperious Woman,1995,90764,19 +14978,Homeless Man,10351,54564,11 +14979,Raymond Shaw,982,14729,1 +14980,Dadinho,598,8598,3 +14981,Minor Role (uncredited),2897,33776,273 +14982,Lily Laronette,11853,69597,3 +14983,The Landlord,39462,931389,6 +14984,Elizabeth Daily,13667,15274,17 +14985,Bernard,4011,10565,9 +14986,Angel,12079,61852,10 +14987,Extra (uncredited),28,6952,30 +14988,Ariel,2107,21620,5 +14989,City Official at Parade (uncredited),220,1432701,45 +14990,Susan - Maid #2,53761,130494,7 +14991,Lock,63105,1041315,8 +14992,Easy Wind,400,5502,3 +14993,Bobbie,838,1232417,18 +14994,Harvey Crothers,2984,29304,3 +14995,Train Engineer,954,2065,27 +14996,Alain,2021,20772,8 +14997,Sebastian,11570,127024,8 +14998,Charlie Allnut,488,4110,0 +14999,Inn Priest,50512,1352522,30 +15000,Dr. Greta Goerre,287305,43451,2 +15001,Le vieux monsieur,11876,26371,21 +15002,Mactilburgh's Technician,18,1211876,43 +15003,Policewoman,9529,34407,13 +15004,Donna Stanley,33250,110379,4 +15005,Aaron,1903,335,10 +15006,Bell Hop,21118,28638,4 +15007,Mara Chaffee,12122,78229,11 +15008,Julian Murch,16162,6195,2 +15009,Janie the café photographer,24005,148812,13 +15010,Miranda's Mother,788,153546,21 +15011,Vincent Lopez,79783,13550,2 +15012,Rosa Minardi,38715,1357126,5 +15013,Dennis / Eldona,11933,7180,2 +15014,Ruth - Stewardess,10671,91261,30 +15015,Marcie,26603,92587,7 +15016,Marty Freed,12704,726,4 +15017,,2259,937206,15 +15018,Stella Keefover,20096,2453,3 +15019,Oliphant,10863,982412,11 +15020,Marine Recruiter (uncredited),2604,170153,89 +15021,Andrew,2428,30074,33 +15022,,18919,1320283,7 +15023,Thug,11001,1672682,48 +15024,Beverly,15850,48163,4 +15025,Democratic Conventioner (uncredited),2604,1328812,88 +15026,Chinese Gambler,6978,1677320,29 +15027,Jack Marsden,17133,879,0 +15028,Tarak,10303,1076195,5 +15029,Hitchhiker,544,16846,17 +15030,Lt. Col. R.T. Nevitt,31947,778,3 +15031,Ludovico 'Lodo' Varese,124963,830,14 +15032,abitante di Alicudi,25403,68162,8 +15033,Lisa Perkins,27993,55153,11 +15034,Neighbor (uncredited),34106,1468089,62 +15035,"Richard Vickers (segment ""Something To Tide You Over"")",16281,7633,3 +15036,Helper at Boxcar (uncredited),220,45164,56 +15037,Cary Scott,43316,20391,0 +15038,Parmental,1058,15213,3 +15039,Joe,220,2758,10 +15040,Arnold Allardyce,13549,16523,2 +15041,Bit Role (uncredited),71067,69951,10 +15042,Mrs. Sighvatssohn,1811,1212485,24 +15043,Statehood Audience Member (uncredited),11697,1014834,59 +15044,Cousin It,2758,66986,20 +15045,Marko,17339,113900,12 +15046,Nora,11442,77897,6 +15047,Brown Dove,35200,1129450,12 +15048,Howell,12479,64856,9 +15049,Savannah Wingo,10333,975134,8 +15050,Lt. Owen Underhill,6171,3197,5 +15051,Fish School (voice),12,7907,33 +15052,Harris Wagner,31671,6593,5 +15053,Mama San,10652,143432,13 +15054,Television Actor #2,696,650,11 +15055,Ryan Gaerity,178,2176,1 +15056,Grandma Briggs,11397,58929,29 +15057,Nathan,9427,57628,2 +15058,Aniki Yamamoto,327,3317,0 +15059,Leon Kodak,9087,19839,7 +15060,Judge Advocate (uncredited),12311,233117,59 +15061,Iggy,9607,26473,4 +15062,Jamie,18317,4566,1 +15063,Bonnie Lee,43832,30210,1 +15064,Villager of Tullymore,10162,1609676,53 +15065,Extra (uncredited),2897,1186930,107 +15066,Sharon-Louise,18683,1889102,18 +15067,Bartender,1859,97225,29 +15068,Ralph,949,3982,24 +15069,Principal Cole,141,20090,16 +15070,Sonny,621,8897,6 +15071,Waiter at Rick's (uncredited),289,9096,31 +15072,Pullman Porter,21734,87825,10 +15073,Rahzar,1497,149731,12 +15074,Crying Demon,12516,1190344,9 +15075,Labrador MC (voice),19042,12900,9 +15076,Dale's man #2,8467,1853166,17 +15077,Fortunato,107693,1159101,8 +15078,Sergeant Joe Gunn,18783,4110,0 +15079,"Joe Capper, Trailhand",39435,69811,7 +15080,Billy Glenn Norris,75,70851,16 +15081,Horatio,18971,1015378,8 +15082,Don Zaluchi,238,20973,26 +15083,Detective Cristofuoro,22398,934,0 +15084,Louisa Musgrove,17015,1487246,15 +15085,Jezebel,5,3122,7 +15086,Warren Yeager,33250,28164,1 +15087,Ben Cappadora - Age 3,30943,159435,9 +15088,Jack Citron,32595,10025,12 +15089,Party House Owner,73247,100552,9 +15090,Mr. Earl,9776,8693,12 +15091,Laracco,35569,107303,4 +15092,Georgie Weiss,522,5170,8 +15093,Fritz,3035,1549,6 +15094,Coed #1,22256,15012,11 +15095,Dixie Daisy,50001,14974,0 +15096,John Adams,28295,100076,13 +15097,Mrs. Haskell,15239,555074,16 +15098,Principal,10950,95046,28 +15099,Aunt Helena,11449,179383,10 +15100,Maggie Hass,79593,129872,18 +15101,Bill Warren,26686,21278,1 +15102,Kermit the Frog (archive footage),814,55983,17 +15103,Susie,51802,1196710,10 +15104,Clean-Shaven Umpire,2323,1077893,23 +15105,Sylvie Cooper,9264,3282,0 +15106,Motel Manager,2637,97593,32 +15107,Byron,17464,18894,3 +15108,Mrs. Dalton,108312,14701,6 +15109,Acting Captain Terri Dennis,83562,26663,1 +15110,Gretchen Two Dogs,21801,1173474,10 +15111,Monkey,10373,126534,7 +15112,Jake Hoyt,2034,569,1 +15113,,18919,1320294,22 +15114,Art Lundstrum,36929,4175,4 +15115,John Lipton,23599,89141,13 +15116,Savage,78256,115062,6 +15117,Chichiyaku (voice),129,20334,11 +15118,Derek,35139,131476,0 +15119,Ema (young),107693,1808423,3 +15120,Rogan,36259,29915,7 +15121,Comrade,10047,39678,6 +15122,Frenchy LeCroix,43368,78793,4 +15123,Kelly Shephard,1817,8329,3 +15124,Jack,9609,120257,10 +15125,Assistant Gold Coach,11535,142159,9 +15126,,78231,995,4 +15127,Paige Wilson Grafalk,41805,172568,4 +15128,Frankie,12764,73586,6 +15129,Maid Maggie (as Mollie McCard),117026,108729,4 +15130,Baby Kal-El,1924,1681410,26 +15131,Jess Bradford,16938,24695,0 +15132,The Dean,47886,26155,3 +15133,TV Dad,32872,155031,16 +15134,Liftboy,28973,535977,11 +15135,Clara del Valle Trueba - as a Child,2259,504787,10 +15136,Elsa Friend,7514,52834,21 +15137,Wild-Looking Young Man,14522,42276,19 +15138,Becky Vickers,16281,15072,11 +15139,Ruiz,15745,16450,2 +15140,Petrovitch,17339,39065,7 +15141,Leader of Flesh Eating Cult (uncredited),12237,72172,3 +15142,Emil Roscoe,39310,1187,10 +15143,Ketcham,26593,83453,5 +15144,Betty,13380,2885,9 +15145,Raymond,15,11033,6 +15146,Olive Worthington,1715,18794,9 +15147,Abby Durrell,10632,935,2 +15148,Nathan's Corpse,16281,15057,14 +15149,"Eddie Dugan, Vicky's Agent",21468,74875,8 +15150,Marcher in Parade (uncredited),2897,1547818,295 +15151,Tom Doniphon,11697,4165,0 +15152,Dale,2124,65704,8 +15153,Dan Enright,11450,19839,4 +15154,Jason Osborne,10207,10135,6 +15155,Tat Lawson,9516,2231,4 +15156,Charlie - Ship's Cook,244,1128885,4 +15157,,28171,1875119,6 +15158,William Bludworth,9358,19384,10 +15159,Gambler,299,105636,11 +15160,Extra (uncredited),2897,1468553,196 +15161,Nels Gudmundsson,10219,2201,5 +15162,Mehemet Bey,18990,9900,6 +15163,Sex Machine's Buddy,755,59287,22 +15164,Extra (uncredited),2897,1074154,248 +15165,Vinnie,70489,288,14 +15166,Man,73116,109201,9 +15167,Freeda Daniels,15944,13296,1 +15168,Ackerman,12102,218432,10 +15169,Eady,949,15851,6 +15170,Val-Chick 3,1811,16850,21 +15171,Groom,32093,1623505,22 +15172,René Hardy,52366,16923,6 +15173,Bubbles (voice),12,17401,7 +15174,Willie's Agent,9563,84077,23 +15175,Onaka,3780,213483,4 +15176,Loomis,11361,9221,0 +15177,Eric Bates,23805,12710,3 +15178,Inmate,29492,103968,11 +15179,Antoinette Lily,21866,66223,1 +15180,Extra (uncredited),2897,230884,157 +15181,Dana's Father,161795,1218306,6 +15182,Verger,37936,198642,21 +15183,Ethel Benegui,86369,39195,1 +15184,Mrs. Thomas,108312,13309,4 +15185,Sweaty Man,267188,12538,7 +15186,Uh-Huh's Girlfriend,10897,114020,26 +15187,Charlie Bodell,10013,2963,0 +15188,Bernie,21620,87729,3 +15189,Caleb Grainger,13380,65505,4 +15190,Barfly,43828,34811,26 +15191,Edmond Dantes,11362,8767,0 +15192,Le photographe,110,49025,4 +15193,Gossip,1859,121323,22 +15194,Jerry Potter,29343,103574,7 +15195,Himself,2293,7624,12 +15196,Carla - Aerobics Instructor,47886,1825824,18 +15197,Mrs. Boyle,2613,27446,4 +15198,,20704,23532,10 +15199,Darryl Cooper,9264,4139,2 +15200,Husky Man,1647,28871,5 +15201,Sales Manager,9894,212,11 +15202,R.T. Lindsay,29372,97007,6 +15203,Sandy McGrath,9443,137927,16 +15204,"Lisa, Plog's wife",490,6659,5 +15205,Carmen,13369,86041,5 +15206,Blonde on Bus,11855,212824,8 +15207,Male Guest at Party,10603,82719,15 +15208,Nyah,24212,101497,1 +15209,Mr. Nicklas,805,3339,8 +15210,Elliot,1647,1469496,18 +15211,Korunsky,50512,79954,18 +15212,Joe,47260,587,0 +15213,Janice Kaufman,1850,19469,5 +15214,Marine Officer,10847,4789,24 +15215,Extra (uncredited),2897,1060036,190 +15216,Captain of the 'S. S. Henrietta',2897,14028,44 +15217,Medieval Times Waitress,9894,21197,8 +15218,Otoyo,3780,551578,7 +15219,Diva Plavalaguna,18,64210,19 +15220,Shimonaka Ryuji,34326,239391,17 +15221,Ma Peabody,105,129319,20 +15222,Eddy,469,6396,2 +15223,Colonel Cord McNally,26593,4165,0 +15224,Ranch Hand,51802,75006,15 +15225,Deputy Bowles,19108,1789030,5 +15226,Larry Fleishman,10727,66746,3 +15227,Orin,1890,25190,8 +15228,Priest,12639,14821,6 +15229,Elisabeth Hauptmann,35263,48179,3 +15230,Janet,16351,1233076,9 +15231,Rose Sonnenschein,17771,6199,3 +15232,Michaela Ritter,282919,70999,2 +15233,Todd Exner,10862,8213,12 +15234,Zander,3063,30016,7 +15235,Servant,125520,53999,5 +15236,Jacko Jackson the Night Editor,28430,78940,3 +15237,Janey Archer,10436,1033159,19 +15238,Charles,12101,3467,11 +15239,Lt. Goldberg,935,185044,15 +15240,,11302,1473301,16 +15241,,48787,1165647,9 +15242,Walter Parks Thatcher,15,11028,4 +15243,Calloway,3050,1039,3 +15244,Victor,10691,111081,5 +15245,Larry Spannel,9504,27545,7 +15246,Tony's Brother,10708,61408,32 +15247,Kriemhild,5608,44346,2 +15248,Mary Ward,28295,153389,12 +15249,Don Tommasino,242,32676,18 +15250,Man Singing at Inquirer Party (uncredited),15,988794,56 +15251,Motorcycle Officer,16249,81735,12 +15252,Maria Coughlin,37291,66496,0 +15253,Roger Newton,21734,87824,8 +15254,Neighbor Woman,2898,161439,28 +15255,Tea Cake,12121,2888,3 +15256,Lucianus,141489,1114919,14 +15257,Charlie Waterman,17057,33007,7 +15258,Tai,11134,1196099,13 +15259,Nikolai Rostov,11706,140914,9 +15260,North,31586,109,0 +15261,Uncle Millard,11232,129996,6 +15262,Spock at age 25,157,1832,14 +15263,Annie,58985,156633,8 +15264,New Jersey,11379,4785,3 +15265,Albert Volpe,242,133853,33 +15266,Pom Pom Girl #3,11397,1609292,79 +15267,Horse,9427,29698,5 +15268,Professor Jordon Perry,1497,2076,1 +15269,Khan / Cri-Kee (voice),10674,15831,19 +15270,,10867,1581614,32 +15271,Assistant Chancellor,16235,80150,17 +15272,Nut,70489,182691,15 +15273,Exercise Rider,30547,1507179,36 +15274,Shumenosuke Ogura,11645,1484298,11 +15275,Charles 'Charlie' Tuttle,17770,8447,0 +15276,Doctor,5425,1644870,8 +15277,Warrior #2 (uncredited),197,1084940,52 +15278,Jules,1628,18216,1 +15279,Ron,13105,80742,5 +15280,Nurse,96238,1389389,12 +15281,Uninterested Guy,11397,90609,59 +15282,Robert Walker,52735,82771,3 +15283,Mary Maceachran,5279,9015,8 +15284,Anthony 'Tony' Vickers,25673,82676,8 +15285,Maj. Gen. Walter Bedell Smith,9289,40529,45 +15286,Lou,105,7139,30 +15287,Jimmy,11415,147291,5 +15288,Huey Newton,41478,9372,4 +15289,Mr. Silas Hobbs,23114,30002,3 +15290,Neri,238,3174,29 +15291,Orgasm Woman,9403,185529,20 +15292,Mr. Bernstein,15,11027,10 +15293,Josef Locke,54405,13726,0 +15294,Sir Keith Joseph,2750,1517240,48 +15295,Mary Piersall,125413,944229,2 +15296,Eileen Spenser,11853,1533,2 +15297,Hira,11830,554575,10 +15298,Cairo Child,26954,212196,14 +15299,"Johnny Caspar, Jr.",379,1281525,16 +15300,Joey Cortino,9835,21029,1 +15301,Starter,11535,17630,31 +15302,Landan Marks,15050,14854,7 +15303,Commanding Officer,9827,7138,19 +15304,George Newman,11959,71041,0 +15305,Rob,858,60018,13 +15306,Sipsey,1633,18249,4 +15307,,422,1485027,10 +15308,,47329,7399,12 +15309,Bull Harris,6644,50971,5 +15310,Sgt. Charles Biddle,20287,67893,8 +15311,Ron Anderson,24077,10730,2 +15312,An Ape Named 'Ape' (voice),10603,8930,3 +15313,Sears James,24634,11783,3 +15314,Major General Walter Bedell Smith,11202,2651,21 +15315,Shotgun,11380,10874,6 +15316,Arthur Jensen,10774,13726,5 +15317,Kate Wheeler,3172,112,2 +15318,Frank Crump,13380,36927,11 +15319,Party Girl,638,9288,5 +15320,Charles Van Doren,11450,5469,2 +15321,LaFours,2293,20761,14 +15322,Chairman,11450,2701,11 +15323,Lash Canino,910,88649,11 +15324,"Clarence ""Drop"" Johnson",379,176958,11 +15325,Hank Sully,22160,73234,3 +15326,Fran Tuttle,43340,10487,4 +15327,FBI Agent Floyd Rose,9882,129101,8 +15328,,124633,130735,5 +15329,Party Dancer (uncredited),1578,1235718,44 +15330,Janitor on Train,8970,62846,5 +15331,Sanchez,4133,34842,18 +15332,Marcia Linnekar's Attorney,1480,4966,22 +15333,Gil Chandler,79593,4943,16 +15334,Harry Hopkins,32274,12438,15 +15335,Kerry Cappadora,30943,57674,6 +15336,Friend of Executive,1637,52801,20 +15337,Gabbe,16026,1316031,13 +15338,Sergeant,210092,1193679,13 +15339,Doyle,35284,22035,7 +15340,Friedrich Bismarck,4988,40401,4 +15341,Golde,14811,129550,1 +15342,Blair,29825,104997,14 +15343,SWAT Leader (uncredited),21380,102096,13 +15344,Segretario politico,10867,232886,7 +15345,Hillbilly,75,1786577,21 +15346,Jérémie,78568,13609,4 +15347,Mulher do Neguinho,598,444956,21 +15348,Girl in Studebaker,838,1804429,25 +15349,Sheriff Royce Spalding,13681,12889,5 +15350,Eve,19200,18794,10 +15351,Ricko,3682,103,12 +15352,Doctor's Wife on Train (uncredited),21734,85957,16 +15353,Mrs. Smith,1959,20242,7 +15354,Sir John Kelly,28430,47662,9 +15355,Thelma,18683,66802,11 +15356,bailiff,43438,133871,7 +15357,Kelly,17464,81895,0 +15358,Paul Pullman,32872,102580,49 +15359,Drew Evanson,18417,83052,6 +15360,Haldir,120,1332,15 +15361,Sue Lloyd,24936,1190369,8 +15362,Mary Carmen,133575,3136,1 +15363,Poppa,66894,12977,1 +15364,Maudie,6644,50970,3 +15365,Helga ten Dorp,17590,97337,3 +15366,,10643,1060569,8 +15367,Cop #1,27526,98092,21 +15368,Toby Stempel,11450,170954,7 +15369,Peasant,50512,1352525,35 +15370,Extra (uncredited),2897,1204286,63 +15371,,422,1064720,13 +15372,"Eddie, Truck Driver",9651,40009,8 +15373,Franz Legendre,108365,18766,5 +15374,Geraldo,41760,1723834,10 +15375,Melanie - Student,5257,42389,17 +15376,Brad,2640,106356,21 +15377,Edward Shelley,38006,10513,5 +15378,Man in street (uncredited),25994,4566,7 +15379,Boy Anderson,21027,8489,5 +15380,Taxi Driver,2984,554284,28 +15381,Spirit (voice),9023,1892,0 +15382,Bartender,1637,53931,39 +15383,Barbara Everett,10354,6200,6 +15384,Noodles MacIntosh,11959,12659,7 +15385,Hermas,46924,16358,28 +15386,Winesnap,635,9175,10 +15387,Hireling (uncredited),15,81975,144 +15388,Maj. Cassius Starbuckle,11697,8516,6 +15389,The Man,28120,82348,4 +15390,Sir Hiss,16249,29427,8 +15391,Quuhod,28893,5695,7 +15392,Sheriff Al Chambers,539,53010,5 +15393,Accordion Player,43828,1472490,42 +15394,Cos,28893,102336,9 +15395,Kirby's Attorney (uncredited),34106,13361,38 +15396,Extra (uncredited),2897,1538074,207 +15397,Col. Abraham Curtis,6171,192,0 +15398,Lloyd Gallagher,12476,6677,0 +15399,David,2640,165289,20 +15400,Kathy,15762,107780,17 +15401,Williams,18783,141522,7 +15402,Steve Everett,10354,190,0 +15403,Madeleine,11907,9931,3 +15404,Race Track Announcer,10657,1223643,26 +15405,Alice Woodward,35139,131483,9 +15406,Technical Sergeant Michael Horvath,857,3197,3 +15407,Barman,691,14759,25 +15408,Lt. Commander Fleischer,10724,29385,15 +15409,"Jennifer Pailery, M.D.",9827,59662,3 +15410,Greg Brady,12606,31468,2 +15411,Midwife,50512,1352517,27 +15412,Ted Oakley,15850,41256,6 +15413,Instructor #1,1647,180933,7 +15414,,422,1485028,12 +15415,Elevator Passenger #3,1637,173194,51 +15416,Ozone,17464,81896,1 +15417,Courtney Kansky,9778,59172,12 +15418,Louise Reed,53862,49551,4 +15419,French Farmer,41166,93951,10 +15420,Mike (as E40),47816,108542,3 +15421,Miriam,41357,132621,5 +15422,The Captain,2984,29306,9 +15423,Dr Sutton,10568,940864,8 +15424,El Scorpio,169,24969,15 +15425,Cult Leader,4338,70243,20 +15426,Construction Site Foreman,1480,85737,19 +15427,Johnny,1890,25188,5 +15428,Winston,864,12981,9 +15429,The Old Fisherman,1678,108028,12 +15430,Jason Petty,39310,122712,0 +15431,Pirate,6068,1609106,17 +15432,Mrs. Violet Venable,14698,6598,1 +15433,Priest,229,1487415,53 +15434,Mark English,29318,247,1 +15435,Waitress,79593,1229806,20 +15436,Electrician,2984,1202743,26 +15437,Blythe Steffen,210092,1193680,16 +15438,Wacker Sullivan,11593,977543,12 +15439,Nathan Liebknecht,11777,20626,5 +15440,Delia Deetz,4011,11514,4 +15441,Wife on Train,76,571,2 +15442,Sgt. Tibs,12230,16063,6 +15443,Officer Jackson,20424,95734,10 +15444,"""The Blonde"" in T-Bird",838,161912,13 +15445,Ed Winston,28370,29792,3 +15446,Arak,10303,1076198,8 +15447,Yorick,10549,202520,26 +15448,Franceska Andrassy,15944,153720,8 +15449,Drake,4012,10694,5 +15450,Jonathan Miller,12476,1216592,18 +15451,Mr. Olafsen,922,15444,15 +15452,Paige Hall,24936,36810,6 +15453,Deadwyler,24825,6580,13 +15454,Boxer,11159,72312,45 +15455,Corp. Jellicoe,15873,2454,5 +15456,Jake,9529,154095,5 +15457,Barmaid,9613,183191,14 +15458,Mickey,5491,43612,5 +15459,Khun Chaibat,11134,10885,3 +15460,Lewis Bartholamew,13440,13240,0 +15461,Billy,13567,1270521,8 +15462,Michael Agensky,35118,63492,2 +15463,Colin 'Col' Slansky,9977,61346,12 +15464,Ida Smith,30924,91842,2 +15465,Armand,11979,26061,9 +15466,Herbert West,1694,27993,0 +15467,Cop at Park,10950,49832,36 +15468,Harry,15592,134701,16 +15469,King Freyne,8840,1074680,14 +15470,Jackson Latcherie,10860,32597,8 +15471,Tuan,34899,113392,6 +15472,Fizzgig (voice),11639,193526,9 +15473,Walt Hendricks,9451,58741,5 +15474,'Squash' Bernstein,12614,73234,4 +15475,Joy Bannock,864,1074165,12 +15476,Burge,18317,137936,7 +15477,Anna,169,1102,12 +15478,Gina,11521,5578,5 +15479,Mrs. Ryan,93350,39114,7 +15480,Uncle Albert,433,5833,11 +15481,Minor Role (uncredited),2897,27164,252 +15482,Dominic Palazzolo,1443,81098,19 +15483,Butch,10897,67383,15 +15484,Tweeny - the scullery maid,53761,98002,5 +15485,Daria,18620,1804393,4 +15486,Medico,80713,6535,4 +15487,Zachariah,65134,44261,1 +15488,Masakage Yamagata,11953,237157,6 +15489,Preston,15037,58019,1 +15490,Hank Aleno,9296,13550,71 +15491,Otis,28387,52930,2 +15492,Herr Corcoran,42580,1232,6 +15493,Katharine Susannah Prichard,7863,14306,9 +15494,Chief Josh Jarrett,2637,21152,16 +15495,Ali / Jevdet Bay,16351,13550,6 +15496,Raider,46924,967,6 +15497,Isabelle,52744,1902,6 +15498,Embassy Counsellor,25037,97568,5 +15499,Raider,46924,1524853,27 +15500,Alison Hawkins,32059,70830,7 +15501,"McKimmie, le commanditaire",26030,13696,7 +15502,Woman with Children,1678,1200402,25 +15503,Player's Wife,9563,1741428,57 +15504,Asian Director,11535,1674986,86 +15505,l'autre pilote,42726,327203,7 +15506,Auditioner,11800,38026,11 +15507,Ororo Munroe / Storm,36657,4587,3 +15508,Fay Marvin,10276,14415,2 +15509,Fuzzy,1715,17190,12 +15510,Harpist,6038,1580038,41 +15511,Roberto,29263,59136,1 +15512,Tracey,12309,44995,18 +15513,Sal Fusco,524,17921,31 +15514,Dr. Anne Caruthers,5551,7571,11 +15515,Jesse,26689,58647,4 +15516,Grocery Store Woman,9516,156015,5 +15517,Duster Heyward,26299,14732,5 +15518,Cpl. Jack Rabinoff,35284,2314,1 +15519,Bertha,5279,3550,27 +15520,Cadet Dotson (uncredited),61934,347770,17 +15521,Earl at Chalkies,11873,947670,6 +15522,Mr. Usher - Solicitor in Pub,573,91663,11 +15523,Bruno,11692,1811,1 +15524,The Priest,12101,104907,9 +15525,German's Friend,8388,6701,11 +15526,Tang Lung (a.k.a. Dragon),9462,19429,0 +15527,Detective #3,26378,1271053,37 +15528,Quizmaster / Collie,12230,48962,9 +15529,,77825,582559,7 +15530,Alessandra Cullen,1813,18315,45 +15531,Speaker of Capernaum,2428,30844,45 +15532,Pokerface,6522,8689,7 +15533,Officer Matt Henry,10727,38664,4 +15534,The Cook,12079,2295,1 +15535,Amanda,15037,33259,0 +15536,Spit,26378,89989,8 +15537,Collucci,26378,34448,27 +15538,Ambrose Waddington,14587,44419,15 +15539,Al Santana,95627,1923,4 +15540,Maj. Ebersole,9099,6168,8 +15541,Dr. Janosz Poha,2978,12688,7 +15542,Aníbal,18079,122708,6 +15543,Mike,10972,46395,2 +15544,Ben Stern,9403,4255,11 +15545,Princess Pei Pei,8584,140,2 +15546,"Barbara, San Quentin Nurse",28577,161819,18 +15547,Extra (uncredited),2897,1471681,113 +15548,Whit,51802,30297,6 +15549,College Girl,2105,61111,18 +15550,Joan,88818,12139,2 +15551,Pig Pen,14369,100372,9 +15552,Jenny,118098,40092,2 +15553,Amos Burroughs,55420,1114905,5 +15554,The Aunt,10047,1077839,28 +15555,June,35118,1211892,11 +15556,David Murphy,4478,57755,2 +15557,Molly Kay,11259,163619,6 +15558,Tony,1890,1873996,11 +15559,Moon Star,35200,55132,14 +15560,Miguel,966,1153,16 +15561,Monte Man,11313,21088,5 +15562,Himself,41160,1225217,27 +15563,sindaco di Stromboli,25403,93730,2 +15564,Student,34223,141793,10 +15565,The Flash / Tony,10708,6860,23 +15566,Jess Jessup,34084,43823,4 +15567,Older Boy (uncredited),32049,1436317,55 +15568,Bootsie Grady,23967,24305,3 +15569,Larry 'Lonesome' Rhodes,21849,65562,0 +15570,Scooby Livingston,16550,4451,15 +15571,Carrie White,7340,5606,0 +15572,Rev. Mordaunt,23114,132536,11 +15573,Mrs. Welland,10436,400,4 +15574,Masucci,15379,58813,7 +15575,Kay Adams Michelson,242,3092,1 +15576,Kent,11103,1954,2 +15577,Ingemar,8816,56391,0 +15578,Jack,277726,52995,3 +15579,Petya Rostov,11706,201459,18 +15580,Cass,18477,1029003,0 +15581,Yevgeny Borzenkov,8665,55596,25 +15582,Bob Green,11442,4095,26 +15583,Aunt Alice,19797,187678,2 +15584,Chico,966,5789,7 +15585,Convenience Store Employee 2,18079,1372517,3 +15586,Cam,70581,34657,3 +15587,Michael,46986,11486,4 +15588,Lazarus,2428,161650,55 +15589,Sergeant Louw,12506,1230439,29 +15590,Extra (uncredited),2897,1262288,86 +15591,Adolph,379,2169,13 +15592,,77314,8212,2 +15593,Cathy,36355,27008,6 +15594,Black Eagle,14676,165590,8 +15595,Minister of Interior,25682,1120188,8 +15596,Joe Gags,11524,1417456,19 +15597,Mickey,49788,82787,14 +15598,Cafe Patron,76,1265415,15 +15599,Xian Chow,10222,64662,2 +15600,Melina Bianco,18736,58899,10 +15601,Sanjûrô Tsubaki / The ronin,11712,7450,0 +15602,Narrator of Opening Sequence,975,3476,10 +15603,Dr. Berger,9366,7471,9 +15604,Teacher's Wife,12104,213222,12 +15605,Freddie Nesbitt,5279,42627,23 +15606,Col. Winter,2100,4691,1 +15607,Dr. Mark Weller,3050,17485,2 +15608,Lori Shannon,33668,39602,2 +15609,Sean,210092,126564,23 +15610,Lawrence III (voice),12599,1438919,6 +15611,District Attorney Adair,1480,14518,6 +15612,Mrs. Glicker,2758,57552,7 +15613,Marshall Walter Thibido,12584,4073,7 +15614,Stinger,744,1072,14 +15615,Nadine,70489,188642,21 +15616,Angela,28430,20055,7 +15617,Dante Dominio,29572,1241,7 +15618,Lt. Mitchell,24750,6354,3 +15619,Katie Chandler,32331,1038,0 +15620,Linda,28295,1653785,15 +15621,Schuyler Schultz,10671,13262,37 +15622,Tony Manero,10805,8891,0 +15623,Peach (voice),12,19,5 +15624,"Ray, Security Guard",11185,4048,25 +15625,Stavros,32049,1363425,14 +15626,Cat (voice),11837,1220072,10 +15627,Leann Netherwood,79593,589,0 +15628,Fletcher,10747,17580,4 +15629,Mrs. Harriet DuBarry Mossman,10671,2640,14 +15630,Wyatt,1817,17941,6 +15631,Megan,11880,70815,2 +15632,Marshal Woolly Bill Hitchcock,22328,9601,3 +15633,Benny Rose,54405,937153,15 +15634,"Debbie, Age 13",32872,133401,23 +15635,Young Clark Kent,1924,53088,14 +15636,Detective Casey (uncredited),1480,126017,30 +15637,Bishop of Oxford,46797,88894,6 +15638,Marty Lewis,13005,9257,2 +15639,Pat Finlay,14819,77338,5 +15640,Robert 'Bobby' Garfield,11313,21028,1 +15641,Hayat,28171,99959,4 +15642,Mrs. Garden,10863,940044,12 +15643,U.S. Marshal Dan Kurtz,22317,3798,4 +15644,Mary Ellen Moriarty,11446,171300,12 +15645,Driver,2087,98991,10 +15646,Jolly 1 / Sunny,85052,35070,0 +15647,Baxter / Mrs. Hurdicure / Wally Terzinsky / Malek / Big Stummies scientist / The Queen / Raj / Clemptor,18414,78576,4 +15648,Bela Lugosi,522,2641,1 +15649,Carmelita,655,1245394,9 +15650,King Edward,197,2463,3 +15651,Bonacieux,11370,43680,5 +15652,Disco Dottie,3682,85171,32 +15653,Extra (uncredited),2897,1422177,99 +15654,Ted Fellner,11983,16293,6 +15655,Khanh,34899,113390,2 +15656,Professor McCarthy,84735,1217143,6 +15657,Vanessa Kensington,817,13918,8 +15658,Capt Vinh,1369,16580,5 +15659,Match,105,1954,12 +15660,Peter Sullivan,4147,19977,3 +15661,Lord Talmadge,197,1333582,27 +15662,Mike Hagen,33668,8487,0 +15663,Michel,47943,18178,0 +15664,The Coroner,16235,80167,31 +15665,Leo Powell,25862,2672,4 +15666,Mickey,47574,37260,2 +15667,Doorman (as Hal Peary),26299,34559,7 +15668,Norma Watson,7340,15500,7 +15669,Johnny Collins,27332,2880,3 +15670,Vicki,57575,153493,8 +15671,Alilo,60083,51100,0 +15672,Vicar,11159,390184,22 +15673,Young Suzanne Kovic,2604,265863,32 +15674,Officer in Battle Sequence (uncredited),3063,999884,14 +15675,Ship's Visitor at Portsmouth (uncredited),12311,1271204,53 +15676,Brian Spiro,42580,8536,3 +15677,Sioux Chief,8584,222559,20 +15678,Raphaël Poulain,194,2407,2 +15679,Colombian Girl,169,97725,32 +15680,Private Daniel Jackson,857,12834,4 +15681,Michael Essex,15592,56456,5 +15682,Cubby Barnes,3595,2680,7 +15683,Midwife,3036,992504,16 +15684,Newspaperman at Trenton Town Hall (uncredited),15,33971,81 +15685,Club Member,2897,1473409,46 +15686,Hal's assistant,46986,68973,48 +15687,Jennifer Vaitkus,2924,10431,4 +15688,Tinkler,12311,165524,29 +15689,Greg,26180,18688,4 +15690,Patricia Starkey,43997,150174,5 +15691,Bloomingdale's Salesman,9778,26510,4 +15692,Madame Wong,99008,101592,5 +15693,Nick,47260,91612,2 +15694,Henry,966,3014,20 +15695,Heaviside,10491,3545,17 +15696,Sam Baker,9717,1219890,12 +15697,Langley Gate Guard,1647,1582115,42 +15698,Cornelius Tabori,124625,36494,7 +15699,Božena,18939,83951,0 +15700,Megan Wells,15677,47417,8 +15701,Granny,2758,10556,8 +15702,Police Chief Mike Dorsett,117,1272,5 +15703,Mrs. Noonan,13380,185091,15 +15704,Sin Sister #1,10396,554618,11 +15705,Peg,18691,83566,6 +15706,Boris,145925,1223409,19 +15707,White Tiger,6978,1115618,15 +15708,Nick,11524,1417446,7 +15709,Rufus 'Earl' Firefly Sr.,2662,555328,13 +15710,Bobby Drake / Iceman,36658,11023,12 +15711,Customer at Bloomingdale's,9778,59166,6 +15712,Ian Wallace,10735,78730,4 +15713,Irene Edwards,169,2072,13 +15714,Pecker,11855,820,0 +15715,Angela Niotes,31921,1932,0 +15716,Biology Teacher,21626,1235368,6 +15717,Fatima,3595,26721,16 +15718,Dr. Simon Griffith,12454,72313,18 +15719,Ken Minami,2102,21564,5 +15720,Mary - His Niece,31995,70035,2 +15721,Singer,28973,129437,17 +15722,Vigilante,80713,1331588,8 +15723,Whitney,38766,14573,13 +15724,Cpl. Allen Melvin,982,3342,9 +15725,Johnson - TV Advertiser,28973,40952,5 +15726,Head Thug,1498,6807,11 +15727,Izzy,635,4048,12 +15728,Esther Townsend,23518,90230,9 +15729,Fiver (voice),11837,29859,1 +15730,Dinky (voice),10948,12299,9 +15731,Sandy Sands,4338,3664,3 +15732,Mr. Wiener,11446,76764,10 +15733,Amy Robbins,24750,2453,2 +15734,Governor of York,197,16792,30 +15735,"Mike Brandon, NYPD",16820,80874,6 +15736,Sugar Hills,59066,61905,2 +15737,Trendy Girl,9877,180939,23 +15738,Wilson,3085,30238,13 +15739,Katie Shuster,28047,56152,8 +15740,Hatidža,20123,15269,2 +15741,Mrs. Nicholas,43266,8232,18 +15742,Captain Seerbacker,10724,66200,14 +15743,Kenge Obe,19736,31925,5 +15744,Resident,3780,97204,37 +15745,Hector Adonis,31945,938161,4 +15746,Schoolmistress,39428,146025,9 +15747,Carl Broman,12618,2226,5 +15748,Ma Kent,1924,85042,12 +15749,(uncredited),5998,225290,28 +15750,Todd Bentley,31978,58113,1 +15751,Detective at Hospital,10400,115856,39 +15752,Chuck Sherman,2105,26999,12 +15753,Sin-Dee,35118,7570,4 +15754,Mr. Stoff,25969,10930,9 +15755,Meg,59199,54817,3 +15756,The Lawspeaker,42453,118055,9 +15757,"Joe Gordon, Editor",3078,30160,8 +15758,Luke,10847,1077740,20 +15759,Master of Trinity,9443,11857,9 +15760,Charlie Goodman,30547,52463,9 +15761,Young Caitlin Greene,10727,70456,5 +15762,Bosko's Date,949,95145,33 +15763,Morty,8388,16165,8 +15764,Big-Fat-Ugly-Bug-Faced-Baby-Eating O'Brien,10874,1314585,11 +15765,Marta,91076,106791,9 +15766,Nino Quincampoix,194,2406,1 +15767,'Cheddar' Fedderson,21828,1347361,10 +15768,Workman,17692,1296383,27 +15769,Major Danby (Flight Operations Officer),10364,24318,2 +15770,,186705,534168,5 +15771,Michael Sanders,20242,9979,2 +15772,Lord Wexmire,14522,18266,8 +15773,Cookie,12079,8211,6 +15774,Swamp Thing,19142,82507,3 +15775,Ramon,38554,1542805,10 +15776,Mrs. Louis Trager,9778,40385,15 +15777,Toby Hart,40866,75353,3 +15778,Window server at Burger Jungle,6552,84546,25 +15779,Girl at Bar (uncredited),93350,1857007,26 +15780,Father Dupree,975,14579,11 +15781,Gretchen Ross,141,20089,1 +15782,Boxing Referee,25501,109759,7 +15783,Himself,12888,151361,9 +15784,Robert 'Bob' Montagné,26030,94603,2 +15785,Extra (uncredited),2897,106571,61 +15786,Constable,14811,73210,14 +15787,Master Chief Bogg,24405,5950,9 +15788,Wilbur Force,24452,514,2 +15789,Mac,2085,21353,2 +15790,Samad,15267,18917,6 +15791,Antique Store Saleswoman,165,1379150,25 +15792,Classification Officer,5924,119226,20 +15793,Gary,12309,86930,9 +15794,Democratic Delegate - Democratic Convention,2604,10489,79 +15795,Luchio,30994,1878506,4 +15796,The Brother,2887,67773,5 +15797,Mrs. Potter (uncredited),21734,325881,14 +15798,Bartender,49410,59369,3 +15799,Martha,26954,1232170,7 +15800,Physician Wang,31439,1789285,16 +15801,Donny Martin,32595,1089443,4 +15802,Teen Angel,621,22092,22 +15803,"Bobby Erbeter, the Boy on the Bike",7340,52471,20 +15804,Sam Haywood,10774,1230012,22 +15805,Briefing Room Detective,11001,1672662,38 +15806,Glamorous Alien Diva at Event,18,1748085,106 +15807,Grand Duke Peter,31527,10024,2 +15808,Man on Sidewalk (uncredited),2897,1014834,306 +15809,Station master,9343,271982,6 +15810,Andrew Stewart,35696,1232432,8 +15811,Pornclerk,12079,235434,15 +15812,Yuuko Ogino (voice),129,19591,7 +15813,'Gilby' Fryer,21828,1347351,3 +15814,Mike McGill,41963,14737,3 +15815,Dancing Man,2613,1800126,23 +15816,Additional Bus Passenger #1,1637,153941,41 +15817,Ladhu,14587,1229068,10 +15818,11-Year-Old Mark,14534,76993,12 +15819,Rev Macpherson,11235,116127,11 +15820,Hortense Cumberbatch,11159,17352,2 +15821,Mayor Tyrone Smalls,9563,155465,24 +15822,Himself,85472,23310,0 +15823,Django,77079,22383,0 +15824,Kathryn Morgan,17692,29710,1 +15825,Holly,16980,61111,8 +15826,M,709,10513,13 +15827,Mark's Uncle / Executive Producer,14242,1502570,8 +15828,Gentleman #1 at Party (uncredited),15849,33698,15 +15829,Dean,1689,6591,2 +15830,Wounded Chang Sing,6978,1677318,25 +15831,TV Cameraman,1924,196456,56 +15832,Henrietta Musgrove,17015,55645,13 +15833,,201724,3391,0 +15834,Merlin,24254,91422,7 +15835,Doctor,10395,12122,9 +15836,Hunter,9028,1757596,35 +15837,Clerk,11001,1576419,26 +15838,Base / Pirate / Bandit,10134,91832,11 +15839,Dainty Girl,11397,1773788,48 +15840,Dominique,2731,27615,5 +15841,Nina Banks,11862,3092,1 +15842,"Kevin ""Freak"" Dillon",9821,18793,2 +15843,Farm Instructor #4,1647,597293,35 +15844,Siskel,10872,18999,9 +15845,Capt. John Harriman,193,2394,11 +15846,Danny Morrison,11456,71467,3 +15847,Jan,49788,140777,12 +15848,Dr. Chris Cooper / Doreen / Chris' dad / Lacey,18414,58955,2 +15849,Rosalba Barletta,552,7540,0 +15850,Shan-Yu (voice),10674,15860,5 +15851,Joey Cooper,10400,1393339,38 +15852,Jr. Phillips,59930,84077,8 +15853,Bartender,522,97824,27 +15854,Mrs. Townsend,11449,172280,14 +15855,,2021,140348,13 +15856,Pooty,58372,18248,3 +15857,Cowboy,43828,30197,19 +15858,Pang Ruyi,47694,643,1 +15859,Diego,45671,55259,5 +15860,Mary's Mother,9095,8443,8 +15861,Aron,11442,105864,17 +15862,Franz Mazur,32332,3223,4 +15863,Groucho Party Dancer,9716,1661639,97 +15864,Biff Tannen Museum Narrator (voice),165,64951,16 +15865,Virginia Miller,45069,4800,1 +15866,,56235,223809,0 +15867,Paul Pagnol,12716,73716,3 +15868,Nicky,10708,62563,14 +15869,Papa Mousekewitz,4978,3160,2 +15870,Countess Isabelle,77079,127816,2 +15871,Attorney Richard G. Tibrow,28577,114329,7 +15872,Principal Ken Weaver,15489,109144,12 +15873,Pajama Girl,53617,8437,8 +15874,Zhukov,11859,53573,10 +15875,Toby,39875,106247,6 +15876,Captain Ed Ramey,1817,2178,2 +15877,Harry Sears,30709,2314,0 +15878,Bill Hill,61563,4690,4 +15879,Marty Bowen,2757,17402,5 +15880,Father Andrew Hagen,242,47879,15 +15881,Psych Patient #1,11618,552096,16 +15882,Union Station Bodyguard (uncredited),117,1591739,55 +15883,Dancer,43828,101772,31 +15884,Mama Assunta,49365,110539,6 +15885,Tommy,62463,29699,3 +15886,Bent,14676,101975,7 +15887,Woman at Party,22023,1577172,36 +15888,Roger,10847,1077727,6 +15889,Edward Rosier,36758,3894,4 +15890,1st Crewman,1924,184752,67 +15891,Admiral Pearson,10724,1850440,50 +15892,Linda,765,11753,4 +15893,uomo seconda coppia,25403,93729,4 +15894,Billings,4012,39520,8 +15895,Cafe Europa patron,18642,1191818,16 +15896,Pirate Girl,17692,1296387,34 +15897,Kimmy Sue Sprinkle,23967,58354,11 +15898,Jonathan Griffith,146341,28906,5 +15899,Swan,11943,70991,2 +15900,Trooper #1,403,1472,14 +15901,Vet - Villa Dulce,2604,7486,22 +15902,Scooter / Statler / Janice / Beaker / Dog (voice),11899,68456,4 +15903,Maxim,8665,55591,19 +15904,George Washington Duke,1375,16662,6 +15905,Victor Okrent,49788,14541,1 +15906,Al Auf,409,1606903,34 +15907,Quartet,6038,1580041,43 +15908,Mr. Zellweger,15489,13604,3 +15909,Myra Savage,3092,31440,0 +15910,Matt,15037,41088,19 +15911,Bob Woodbury,17692,194357,13 +15912,Extra (uncredited),2897,1474802,109 +15913,Mike Brady,9066,21163,1 +15914,Young Sean,25682,1120193,13 +15915,Wanda Blake,10336,4604,3 +15916,Bartender,11449,129663,15 +15917,Young Girl,2984,1887365,33 +15918,Lawrence,24254,27552,46 +15919,Leslie Devlin,205054,100634,3 +15920,Bertha,69605,103087,12 +15921,Bagpipe Playing Dwarf,35292,252527,34 +15922,Mary Poppins,433,5823,0 +15923,Katie,90414,1000950,0 +15924,Willam Black,2293,824,11 +15925,Frau Hauser,75641,40954,10 +15926,Deputy Leonard 'Lenny' Hendricks,578,8609,6 +15927,Camera Operator,30363,106157,12 +15928,John Mills,2669,26863,17 +15929,The President,36797,77859,17 +15930,Cabby (uncredited),18646,131386,10 +15931,Stefan,742,11039,3 +15932,Sala,57351,225969,4 +15933,Dave Speed,11333,15140,0 +15934,Calvera Henchman (uncredited),966,151630,28 +15935,Dr. Timothy Flyte,9827,11390,1 +15936,Herman Dooly,38554,83414,3 +15937,Alexander Hartdegen,2135,529,0 +15938,Eve,2525,25779,1 +15939,Elsa Lanchester,3033,29796,8 +15940,Adele Easley,21052,18686,2 +15941,Church,9425,2048,5 +15942,Shameek,12888,5384,8 +15943,Steve 'The Colonel' Cropper,525,7176,6 +15944,Man driving jeep - 1985 (uncredited),105,16474,44 +15945,Callie Blum,12122,61149,8 +15946,Mrs. Longman,71067,1381587,9 +15947,Yar (voice),10567,15531,2 +15948,Giorgio Francozzi,24828,6561,3 +15949,Pat Kerrigan,16643,16433,10 +15950,Charles Paddock,9443,27770,12 +15951,Herbert Cotter,51763,10182,3 +15952,Teresa,93350,18285,6 +15953,Jazz Flutist,38775,121345,14 +15954,Vivian / Featured Player,31044,194774,25 +15955,Embassy Secretary,25037,104943,10 +15956,Annushka,50512,567812,24 +15957,Siddie Shiva,24452,102726,3 +15958,Angelica Pickles (voice),14444,80719,6 +15959,Radio Sportscaster (voice),165,176053,41 +15960,Ilegorri/Lucas as a child,2441,24985,12 +15961,Calo,238,44860,36 +15962,Lord Buckingham,11370,73172,11 +15963,Dr. Heller,29318,38050,4 +15964,Vera,11902,4635,6 +15965,Bum,165,54564,32 +15966,Samuel Ludlow,4476,9976,4 +15967,Cantor Rabinovitch,15310,3359,1 +15968,Tony,43775,94914,4 +15969,Young Woman in Bath,694,1413939,10 +15970,Jack Crow,9945,4512,0 +15971,Gordon,9079,7132,2 +15972,Kay Chandler,12618,5470,1 +15973,Frank Corvin,5551,190,0 +15974,Himself,2300,1315448,25 +15975,Miranda Jeffries,3064,31140,3 +15976,Researcher,11450,171004,26 +15977,Roman - Marek's father,79782,140221,2 +15978,Shoe Store Cop,1793,52,15 +15979,Kimiko,2453,13445,8 +15980,(uncredited),29263,1084324,17 +15981,Stella Summers,40866,124877,4 +15982,Nick,52735,5090,6 +15983,TV Reporter,32049,235346,40 +15984,,201724,94138,3 +15985,Gambler at Rick's (uncredited),289,148852,70 +15986,Tyler Cherubini,9563,1741391,26 +15987,Father Steven Lonigan,10671,14791,28 +15988,Harry Winston Dancer,9716,1661604,64 +15989,Mrs. Croft,5279,20300,9 +15990,Sp5 Charlie 'Doc' Lose,10590,1170994,28 +15991,Thomas Heywood,2669,26859,13 +15992,Jim Slaughter,37291,170991,3 +15993,Salesman,28466,1676998,17 +15994,Butler,10805,1651546,16 +15995,Terry,153141,86480,4 +15996,Optician,30875,39163,7 +15997,Jimmy,4986,1217505,13 +15998,Stephen H. Price,11377,118,0 +15999,Mary Brady,11428,2506,2 +16000,Jay Leno,11374,14991,49 +16001,Frank Shore,36773,228,0 +16002,Carl Bentley,8844,58563,6 +16003,,62463,1780624,23 +16004,sirena,29743,102120,16 +16005,Marshal Link Appleyard,11697,14966,8 +16006,Eric Poole,22398,20132,1 +16007,,10867,1850977,37 +16008,Newspaperman at Trenton Town Hall (uncredited),15,34818,84 +16009,Christianes Mutter,9589,1728642,8 +16010,Policeman in Alley,4338,6106,24 +16011,Hillary,1995,20511,6 +16012,Sunny,32227,109043,2 +16013,Jack Woltz,238,3142,6 +16014,Extra (uncredited),2897,1170325,234 +16015,Actor in Rob's TV Show,703,3801,14 +16016,,48144,1118783,1 +16017,Miss Jones - Blakely's Secretary (uncredited),34106,141304,26 +16018,Isaac Rosenberg,10611,31711,6 +16019,Tom Oakley,10691,52374,2 +16020,"""Zeke"" / The Cowardly Lion",630,9069,3 +16021,Martha,11236,1215193,5 +16022,Earl Stone,577,2115,9 +16023,Colonel Grigori Golitsin,32074,37715,5 +16024,Barre,35292,71777,19 +16025,Zack Thomas,17691,4347,0 +16026,Disc Jockey,1497,1456501,42 +16027,Gunboat captain II,1369,16585,11 +16028,Paparazzo #2,18736,77222,39 +16029,Hecuba,10549,5309,24 +16030,Villager of Tullymore,10162,1609670,47 +16031,Yu Xiuyi (Zhongliang's Sister),47694,64987,3 +16032,Check-in Attendant,18,1857427,55 +16033,Felicity,123757,167718,3 +16034,Carface (voice),19042,7502,0 +16035,Mechanic,43832,1000660,21 +16036,Young Charles Foster Kane,15,11032,17 +16037,Judy Roth,28384,12021,1 +16038,Andrada,29263,970399,15 +16039,"Niki, the Prosecutor's Daughter",2721,1130613,24 +16040,Stephanie Needham,29355,129332,8 +16041,Morgan Oakley,10691,1116374,13 +16042,Mr. Langford,32275,4071,13 +16043,Barbara,29649,74077,4 +16044,,45565,9642,1 +16045,Vickie Thailer,1578,14702,2 +16046,"Dave, Ben's literary agent",12220,781,9 +16047,El gordo,80713,1042749,5 +16048,Player's Wife,9563,1616016,61 +16049,Jimmy the Crook,11576,8635,47 +16050,Principal,2323,9628,17 +16051,la jeune femme,77056,85626,10 +16052,Maurice,2085,18471,10 +16053,Hodel,14811,161806,6 +16054,Statehood Audience Member (uncredited),11697,1581072,58 +16055,Jane March,10354,20493,15 +16056,Alma,41478,1591266,9 +16057,Elise Van Zile,38715,29582,1 +16058,Air Hostess,11104,119875,4 +16059,Himself,11899,138570,21 +16060,Garrett,42569,83187,11 +16061,Julie Black,3682,9206,4 +16062,Illya Coste,2721,11550,14 +16063,Baseball Fan (uncredited),2323,592897,28 +16064,June Nelson,53862,49002,1 +16065,President's Aide,10003,79954,25 +16066,Tec's Crew,13411,150194,16 +16067,Grange,9495,19384,11 +16068,Narrator,73482,4173,2 +16069,Rico,15239,142162,15 +16070,Police Chief A.C. Barrows,20424,31503,9 +16071,Rain,28384,3196,4 +16072,Taxi Driver,11889,994,11 +16073,Planetship,5491,181010,10 +16074,Auster,46989,11064,2 +16075,Miss Piggy,10208,7908,3 +16076,Mailman,13667,37043,16 +16077,Wai Lin,714,1620,2 +16078,Betty Morgan,35139,131477,15 +16079,Morrison,197,2478,19 +16080,Henry Clark,8970,67773,0 +16081,Luis Francisco Garcia Lopez,11385,94892,7 +16082,Miss Tree,11232,109869,14 +16083,Narrator,56235,31,3 +16084,Dennis Buggit,6440,20386,8 +16085,Sondra,31306,118545,11 +16086,Lord,141489,173303,23 +16087,"Capt. Richard Schoenfield, MD",27461,11885,6 +16088,Young Whore,14886,10556,4 +16089,Mr. Wilcox,1959,20244,9 +16090,Sheriff,217802,19553,6 +16091,Kidnapping Wife,49410,100552,15 +16092,William Blake,922,85,0 +16093,"Edward, Prince of Wales",197,2476,17 +16094,Ma Beckoff,8463,10774,1 +16095,Guy In Gas Station,11361,59287,18 +16096,Rebecca,18222,42687,10 +16097,Subway Gang Leader,169,1877153,33 +16098,Dr. Morse's Nurse (uncredited),25862,89528,10 +16099,Dr. Edel,2262,3756,4 +16100,Paul Girard,23518,1936,5 +16101,Production Assistant,9296,76759,13 +16102,FBI Agent,3595,1811953,22 +16103,Anthony 'Tony' Bergdorf,299,3090,5 +16104,Theodore,22328,27726,1 +16105,Larry,15764,135171,4 +16106,Scott,9902,23958,3 +16107,Demichev,8665,55578,7 +16108,,78285,583570,7 +16109,Marion,58985,5148,24 +16110,Mark Darcy,634,5472,1 +16111,Dr. David Neville,30202,39065,1 +16112,Beans,25006,92940,0 +16113,Mr. Langford,4478,37438,7 +16114,May,11104,119877,6 +16115,Grandpa Gustafson,15602,16523,5 +16116,,83562,1257821,13 +16117,Terrorist Van Driver,105,1020340,27 +16118,Thomas Lawson,42218,111994,12 +16119,Banpei's brother,28273,83205,17 +16120,Mme Rigoard,11876,2415,13 +16121,Alfred,17691,40212,25 +16122,Martin Beck,11077,50807,4 +16123,Doctor,795,11915,9 +16124,General Thatcher,961,14420,3 +16125,Coach Bauer,10691,129124,10 +16126,Bartender,30547,1507176,33 +16127,Andy Clarke,48787,88519,2 +16128,Marie,186705,4273,0 +16129,Western Union Man,165,59196,15 +16130,Lt. Charlie Garber,45964,55841,8 +16131,Margaret Pagniacci,9563,13567,14 +16132,Ivy(voice),10992,4038,7 +16133,Jeremy (voice),11704,6844,3 +16134,Yumi Yoshimido,2110,21658,1 +16135,Coroner,29239,34008,12 +16136,Alex,161795,222894,3 +16137,Prison Guard,10400,1393355,70 +16138,Worker,2625,27737,12 +16139,Sue's lady in waiting,11645,1201023,21 +16140,Nathaniel Messinger,795,11901,3 +16141,Cutie,11397,90719,12 +16142,Greg,77010,19613,2 +16143,Shawna,11001,6944,19 +16144,Morgan Sewart,30175,69718,0 +16145,Mme Cécilia Gerber,11915,236974,8 +16146,Isobel,11337,24393,3 +16147,Red Sweeney (Silver Fox),40490,44792,5 +16148,Cigar Face,28165,1708242,16 +16149,Fuller Thomas,10866,18324,0 +16150,Anita,10890,105361,10 +16151,Allison Parker,24828,92685,4 +16152,attrice,25403,93720,11 +16153,Detective (uncredited),3078,89729,12 +16154,Birdy's Mother,11296,999089,4 +16155,Dr. Geisler,11232,8978,7 +16156,Spencer,31671,12298,11 +16157,Jack Benteen,20287,1733,0 +16158,Gwenie,1634,21320,9 +16159,Woman Listening to Wireless (uncredited),2760,3681,8 +16160,Spitz,11361,1228823,8 +16161,Hank,838,161318,27 +16162,Jerry Goldsmith,2662,27738,5 +16163,Mr. Kale,5425,43234,3 +16164,Hospital Doctor,2898,1678170,49 +16165,Karl Herzog,282919,37887,4 +16166,Virginia Wilder,152023,3713,1 +16167,Flying Cop / Military Technician,18,126316,48 +16168,Halley,9902,1253667,9 +16169,Bud's Dad,17496,981812,14 +16170,Paris Tart,2897,11494,26 +16171,Former Governor Stanton,25430,121327,37 +16172,Dr. Henry Frankenstein,3035,2923,0 +16173,Hakim,13333,14414,1 +16174,Helicopter Pilot,11001,141400,34 +16175,Claude Banks,6522,78029,1 +16176,Dr. Kalarjian,9358,79152,25 +16177,Piette Casteran,117500,239363,4 +16178,2nd Man in Bar,9426,180878,6 +16179,Young mother,11159,132992,27 +16180,Wes Huntley,28466,93800,3 +16181,Mr. Ballew,24005,30539,10 +16182,Marvin,12618,8854,13 +16183,Sale House Woman #1,14,64189,14 +16184,Clergyman,73116,113360,7 +16185,Detective Chambers,10783,15028,5 +16186,Red Rodney,24679,27813,4 +16187,Cynthia,41638,150212,4 +16188,Jonathan,88818,151819,14 +16189,Wing Kong Hatchet Man,6978,1039054,33 +16190,Stella,50123,87126,5 +16191,Reilly,13965,76191,12 +16192,Celeborn,120,20982,19 +16193,Goro,11830,70626,0 +16194,Lieutenant,1924,199802,75 +16195,Maria,22023,1102,4 +16196,Katrina,34223,10661,5 +16197,Katy,21132,10696,10 +16198,Irving 'Irv' Blitzer,864,7180,4 +16199,Richie Tenenbaum,9428,36422,4 +16200,Plio (voice),10567,1981,1 +16201,Margaret White,7340,6721,1 +16202,Paramedic #2,10925,155907,14 +16203,Vernon,1715,1281445,16 +16204,"""Hunk"" / The Scarecrow",630,9068,2 +16205,Children's Hospital Nurse,949,57347,53 +16206,Stage Driver,43828,121305,45 +16207,Cub,10803,1013882,18 +16208,Stu Shepard,1817,72466,0 +16209,Sidney the Agent,20075,140079,13 +16210,Reptar Wagon (voice),14444,6485,9 +16211,Albert Goldman,11000,78729,2 +16212,Floating Woman,10692,1265136,8 +16213,Craig McManus,10972,31268,6 +16214,Jezebel,2291,7430,1 +16215,Cyfartha,43266,13820,7 +16216,"Julian ""Dice"" Black",10696,66587,1 +16217,Jill Johnson,45964,10556,0 +16218,Kintner's Secretary,11450,10386,24 +16219,Loomis Gage,129628,5048,1 +16220,Featured Player (uncredited),2897,1186930,108 +16221,,20645,552641,19 +16222,Francis,320011,105902,13 +16223,P.O.W. #4,1369,1814425,15 +16224,Premiere Audience Member,9296,1744152,19 +16225,Bilbo Baggins,120,65,14 +16226,Buck Gardner,24831,102441,3 +16227,Smith,12311,72060,3 +16228,Motel Manager,26180,540,16 +16229,High Priest / Dying Emperor (voice),11639,68455,12 +16230,Dr. Beverly Crusher,193,2392,5 +16231,Elderly Lady,29698,135052,21 +16232,Preservation Partier,8467,1853216,56 +16233,"Michael Sullivan, Jr.",4147,78198,1 +16234,C. W. Lomax,11593,1183445,26 +16235,Paola Franco,8583,14061,2 +16236,Room Clerk,37247,7795,4 +16237,Al Capone,117,380,4 +16238,Joe Brody,910,13979,10 +16239,Bouncer,9406,185296,10 +16240,Karl Rojeck,31044,44728,13 +16241,John Boyle,41590,21523,6 +16242,Lillas Pastia,21193,11216,10 +16243,Jessica Douglas,16314,80284,6 +16244,Harry Gould,11458,1771533,15 +16245,Extra (uncredited),2897,1471682,145 +16246,Truck Driver,13555,1081820,11 +16247,Johnny Eagle,29343,103572,4 +16248,High School Girl (uncredited),105,1200797,47 +16249,Witch,490,6660,6 +16250,Dmitri Priabin,10724,24627,18 +16251,Leon,8869,20812,13 +16252,Pastor Schultz,28345,120761,6 +16253,Peter Dawson,2640,197537,9 +16254,Deborah,201581,12851,3 +16255,Lady Wexmire,14522,45453,7 +16256,Kevin Dulli,4133,7268,11 +16257,Jess Evans,38765,58423,8 +16258,Pasty Face,41160,1819847,26 +16259,Hotel Desk Clerk,1859,1015446,48 +16260,Mechanic #1,11524,119230,20 +16261,Matthew,18002,7026,4 +16262,Young Blonde Interne,14698,212261,11 +16263,Student,9475,1800185,42 +16264,Waitress,2084,21347,8 +16265,Moreno,32093,1420993,36 +16266,Dorothea,10801,17725,14 +16267,Carmela,9260,18285,7 +16268,Maid,3035,90075,23 +16269,Alex Noffe,2102,21562,3 +16270,Essie,42787,129492,3 +16271,Junger SS-Mann,124625,18161,8 +16272,Archimedes the Owl (voice),9078,57313,2 +16273,The Gill Man (in water),10973,104021,11 +16274,Max Rehbein,2262,12647,6 +16275,Whitney/Meredith,9593,20751,18 +16276,Dr. Hines,37917,152943,9 +16277,Hugo,10796,141491,13 +16278,Himself,2300,1315402,20 +16279,Hanna,3033,29791,2 +16280,Bodyguard,117,1886585,43 +16281,Sergeant McIllhenny,15497,78304,5 +16282,Robespierre (voice),32328,7503,2 +16283,Sarah Hughes,2675,28049,11 +16284,Mama,57575,15942,9 +16285,Nancy Doyle,54405,47615,2 +16286,Young Jackie,267188,1314585,4 +16287,Bloomingdale's Saleswoman #2,9778,59169,11 +16288,Sally Wingo,10333,10401,2 +16289,Photographer (uncredited),1578,222831,36 +16290,Daphne Reynolds,10735,29220,0 +16291,Emil Ingerbretson,13526,1240172,13 +16292,Dreamer Tatum,4988,1101,8 +16293,Extra (uncredited),2897,1443706,164 +16294,Alex Law,9905,3061,2 +16295,Jack,11374,172339,32 +16296,Ignazio,11216,119992,8 +16297,Johnny,27224,11064,5 +16298,Berkoff Actor,24077,1778070,5 +16299,Peter,49963,36631,3 +16300,Female Opera Singer,10436,1190701,6 +16301,Mechanic,43832,100945,22 +16302,Student,9475,1800183,40 +16303,Lydia,38922,9283,3 +16304,Heather,11397,1773780,40 +16305,Fae,10871,6007,12 +16306,Extra (uncredited),2897,131057,122 +16307,Rick Jenkin,21711,91371,6 +16308,Young Frank,5551,10881,14 +16309,Kevin Meyers,2105,21403,2 +16310,Anne,26030,55778,0 +16311,Television Actor #1,696,118071,10 +16312,Southern Tourist,38554,47884,25 +16313,Cecile Moore,10590,1232581,23 +16314,Charrington,9314,4973,3 +16315,Chad Palomino,9071,6474,3 +16316,Bartender,32049,1502514,32 +16317,Corrine,77283,109516,4 +16318,Prison Guard,10400,27586,53 +16319,Klansman's Son - Bobby,817,65167,12 +16320,Zorg's Man,18,1857456,100 +16321,Pearl Diver (uncredited),11830,1248524,28 +16322,Carol,18683,1889108,27 +16323,Printer (uncredited),28430,3548,19 +16324,Additional Voice (voice),9016,81843,19 +16325,Rick Barnes,11456,4937,1 +16326,Ennis,26378,95729,15 +16327,Party Guest (uncredited),3309,1123566,11 +16328,M,660,9874,8 +16329,Jacob Fuller,755,1037,2 +16330,Pepe the Prawn,10208,64182,2 +16331,Slipknot Band Member,11535,92313,91 +16332,Perry White,1924,55278,5 +16333,A Journalist (uncredited),269,260837,19 +16334,Mechanic,6068,1044,18 +16335,Vernon,11593,1183446,27 +16336,Barbara's Father,1813,155547,18 +16337,Sheriff Bryce Hammond,9827,880,0 +16338,Man (uncredited),3309,217757,44 +16339,Phil Horace,9591,8191,13 +16340,Henry Lesser,59569,2692,1 +16341,Sir John,623,1221507,18 +16342,Helen Miles Singer,9716,1661655,113 +16343,Nema,20307,43259,10 +16344,Lt. Col. Gilfillan,38766,16420,4 +16345,Biplane Pilot,11576,104034,17 +16346,Annie Banks-MacKenzie,11862,70696,3 +16347,Lucille - Blue Team,17971,193866,7 +16348,Parlor Owner,1497,1356291,15 +16349,Colt,9462,51576,2 +16350,Connie Mills,2637,350,1 +16351,Moss,24266,91490,11 +16352,Pittsburgh Referee,10400,1393343,41 +16353,Pvt. Grace,11589,1109703,18 +16354,Doris,24212,2265,4 +16355,Morph (voice),9016,9349,9 +16356,Thaddaeus,2428,55432,40 +16357,Ellen,29698,135035,3 +16358,"C.E. ""Doc"" Jones",38766,9857,3 +16359,Joan - Stewardess,10671,1412549,29 +16360,Austin,11397,29020,3 +16361,Julie Rose / Katie McGovern / Evelyn,70199,2453,0 +16362,Band Member,6068,1609255,39 +16363,Steve Williams,53150,53177,0 +16364,Patient - VA Hospital,2604,11892,53 +16365,Border Guard,31671,239944,13 +16366,Noreen's Client,26889,53937,10 +16367,König Tynah,2669,26855,8 +16368,Caterer,2898,239061,30 +16369,Eddie Dodd,31863,4512,0 +16370,Rodney the Guinea Pig,3050,2632,15 +16371,Marika,10466,1218005,16 +16372,Croupier,4478,1229725,11 +16373,"Teddy, the Kid",6,52422,5 +16374,Bingo Caller,2144,21985,2 +16375,Le souffleur de rue,194,230076,43 +16376,Carl,40562,36422,2 +16377,David Leary,36929,8872,0 +16378,Kenny,14819,20818,11 +16379,Aramis,11370,975,8 +16380,Factory Boss,73247,27515,6 +16381,Mabuses Dienerin Fine,5998,47173,10 +16382,John Adair,32274,2977,14 +16383,Waitress,28466,170658,26 +16384,Seaman Jack Sommers,26946,102830,7 +16385,Jenny Bell,19819,1581,2 +16386,Peter,22477,8975,2 +16387,Jean LaFleur,11001,53573,8 +16388,Carla,29649,104506,14 +16389,Mrs. Kumalo,34615,89307,8 +16390,Renalda Squiriniszu,11933,143171,8 +16391,Young Shirley,18683,121464,13 +16392,Jack Vincent,1959,20246,11 +16393,Mendel,14811,72742,17 +16394,Joey,215373,21382,5 +16395,Damon Wells,11521,1011342,6 +16396,Bunnie,10671,1412669,35 +16397,Sir Harry Lorridaile,23114,2930,7 +16398,Bookseller (voice),10020,170898,13 +16399,Ranjit,14587,218402,1 +16400,FBI SWAT Team #2,3595,1513690,35 +16401,Dr. Gale (uncredited),3309,130486,41 +16402,Meredith Blake,9820,55422,3 +16403,Mr. Jamieson,24212,3673,6 +16404,Mrs. Robinson,37247,10774,1 +16405,"Glinda, the Good Witch of the North",630,9071,5 +16406,Mrs. Kintner,578,8613,11 +16407,Rev. Samuel Sayer,488,6599,2 +16408,Barry,11446,2131,8 +16409,Warder,623,124314,15 +16410,John Finnegan,9457,4515,0 +16411,Rookie,9593,11315,14 +16412,Mae Morgan,39428,4800,2 +16413,Darren,23223,1005056,4 +16414,Torres,9495,73132,14 +16415,Jim Shepherd,8844,27110,17 +16416,Tracy Lapchick,10534,58019,14 +16417,Roadie Scully,786,11673,23 +16418,Himself,9403,32600,26 +16419,Gussie Mausheimer,4978,29803,8 +16420,Maurice Haigh-Wood,46797,49965,3 +16421,Fred Kelman,9070,135228,10 +16422,Robin,32872,51751,28 +16423,Eddie,10611,5726,2 +16424,Martin Kunkle,52735,884,4 +16425,Miss Bailey,29067,2276,11 +16426,Jeopardy Contestant,9079,6870,15 +16427,Joan,71701,83909,1 +16428,Bootblack,9475,103205,23 +16429,General Decker,75,522,8 +16430,Aspiring Singer,2750,1221980,37 +16431,Gen. Trau,15379,20904,4 +16432,Farnsworth,23599,83362,9 +16433,Greta Holzgang,15873,117787,11 +16434,Lt. Ned Ordway,10671,1243622,33 +16435,Billy Brown,9464,22461,0 +16436,Lomper,9427,57629,3 +16437,Student,11545,6279,11 +16438,Sourpuss F.B.I. Man,2321,16298,23 +16439,Friend #1 - Arthur's Bar,2604,1418951,62 +16440,Pvt. Jeff Reed aka Capt. Phillips,22328,21561,2 +16441,Olive Stanton,32274,1639,6 +16442,Rose Chasseur,10872,5826,3 +16443,,281085,1894,1 +16444,Steve Baker,9423,13021,1 +16445,Nancy,45964,1081854,6 +16446,Airport Firemen #2,11576,89613,6 +16447,Agent Bob Cox,17708,263229,7 +16448,Fawn (voice),45772,12208,12 +16449,Preservation Partier,8467,1853218,58 +16450,Jonathan 'Snuffy' Bradberry,10750,56145,4 +16451,Mandy,9427,33679,8 +16452,Lady,141489,1114928,26 +16453,Mrs. Byam,12311,20369,9 +16454,Benedict,9593,4391,3 +16455,Hank Slattery,29343,83810,2 +16456,Maggie,20438,1514698,8 +16457,Egyptian Thug,31498,1234564,17 +16458,Huge Biker,11008,1087342,18 +16459,Exhibitor,11379,99725,34 +16460,Celia,19797,65421,8 +16461,Annabelle's Brother,961,14424,6 +16462,Grear,42517,2230,2 +16463,Bob Goodall,10871,2047,1 +16464,Nick,31083,583428,3 +16465,un inspecteur,31417,1958,8 +16466,Le patron du bistrot,194,1326530,36 +16467,Fritz Curtis,11215,21520,4 +16468,,20645,1201022,20 +16469,Dr. Bill Capa,2124,62,0 +16470,May,146,1629,11 +16471,Luke MacDonald,6644,50975,13 +16472,Outlaw,9028,144613,21 +16473,Grandma Sarah,10747,734,5 +16474,Mike,13567,1270520,7 +16475,Giulia De Lezze,8583,3489,4 +16476,Buzz,38043,52306,15 +16477,Jason Stone,75,521,7 +16478,,10568,1463006,19 +16479,Kim,24679,153942,9 +16480,Fight Fan,1813,1089394,32 +16481,Andrés,43455,115308,2 +16482,Nina,104103,39689,5 +16483,Captain Spock,154,1749,1 +16484,Arvidsson,8816,1778143,16 +16485,Mrs. MacCurdy (uncredited),21734,179451,21 +16486,Mary Ann Jackson,10897,67386,18 +16487,,4248,5047,14 +16488,,10400,1239597,58 +16489,Jingoro Hara,11953,548004,24 +16490,John Palmeri,13571,25503,2 +16491,Norseman,1911,1237724,16 +16492,Siv Åman,16026,79061,5 +16493,Marcel Pagnol à 11 ans,12716,73715,0 +16494,Mover #1,32872,17413,45 +16495,(uncredited),269,1513487,24 +16496,Hawaiian,2984,1887362,21 +16497,Herself,8672,10627,5 +16498,Dancer,46986,1535189,51 +16499,Andrew Shepherd,9087,3392,0 +16500,Nagiko,26422,69033,0 +16501,,10466,13936,19 +16502,Caballero,32093,144402,42 +16503,Lydia,50512,10981,5 +16504,Rocky / Cartoon Natasha Fatale / Narrator's Mother,17711,15098,6 +16505,Laurie Strode,11442,8944,0 +16506,Maggie O'Toole,10162,42571,3 +16507,Prof. Biesenthal,10518,6839,5 +16508,Customer (uncredited),289,388490,84 +16509,Evelyn,11333,100277,4 +16510,Hamlet,18971,20508,3 +16511,Lou(voice),10992,2219,5 +16512,Yukio,70581,558906,2 +16513,Himself,35569,218577,9 +16514,Helicopter Pilot,14372,26761,10 +16515,Marla,15489,27136,17 +16516,Sgt. Kaffekanne,9289,9908,26 +16517,Le brigadier sur le quai de la gare,36245,544283,12 +16518,Linda,9427,186025,9 +16519,Socum,53617,22092,9 +16520,Geronimo,66894,59568,4 +16521,Mr. March,39938,17756,10 +16522,Rupert's Mom,262,11483,5 +16523,Spartanette #9,14,568656,33 +16524,Servant,50512,1480988,39 +16525,Judith Browns,814,1587192,26 +16526,Harry C. Devening,152023,94429,10 +16527,Pvt. Flanagan,9289,738,10 +16528,Extra (uncredited),2897,1374381,136 +16529,Mattie Silk,12106,65409,13 +16530,Simon / Don Roritor / Cabbie / Gunther / Cop #1 / Nina Bedford / Melanie / Drill sergeant / White-trash woman,18414,56867,3 +16531,Peter,10696,1035445,8 +16532,Extra (uncredited),2897,1466134,224 +16533,Zinnowitz (as Purnell B. Pratt),33680,13358,8 +16534,Pigeon Lane,38766,3785,1 +16535,Patty Palmer,2990,29369,0 +16536,Argyle Wallace,197,1248,16 +16537,"Saul, Spaceship Crew",35139,131488,14 +16538,Lawyer,9717,1044,15 +16539,Nun #2,11077,559324,7 +16540,Teresa Salazar,19176,20047,10 +16541,Doctor,46986,27782,46 +16542,Japanese Fighter,9462,554622,6 +16543,Setareh,47161,1891584,4 +16544,Mark,9404,69588,7 +16545,Panel Member,11374,163555,21 +16546,Klapka,124625,18509,6 +16547,Le Remendado,21193,1684215,8 +16548,Jesse McCord,32140,4073,1 +16549,Walter,10663,20818,11 +16550,Sean,13411,17637,1 +16551,Rosemary Bailey,41160,42279,2 +16552,Tower Controller at Rancho Conejo,11576,1895,41 +16553,,25538,555381,11 +16554,Girl #1,638,9307,29 +16555,Vance or Towers,7340,52472,21 +16556,Peachy Carnehan,983,3895,1 +16557,Friedrich Munro,30363,5274,6 +16558,Detective,14136,198065,11 +16559,Sararîman,11830,554580,22 +16560,Rascal,10897,24525,23 +16561,Janine Kellerman - The Girl,5257,159297,4 +16562,Denys George Finch Hatton,606,4135,1 +16563,Charlie Moonlight,12106,4963,15 +16564,Flower Store Worker,2135,21874,10 +16565,Lucas,13531,51792,10 +16566,Big Q,1817,11107,8 +16567,Simon,27681,1176969,8 +16568,Timmy Lupus,19050,90174,11 +16569,Lt. Harrold,37305,61150,14 +16570,Centipede (voice),10539,3037,5 +16571,Bill,45964,790,11 +16572,Alphonse,104103,48791,9 +16573,The Great Zamboni,110989,2282,0 +16574,Percival,623,115283,19 +16575,Tawdry Girl,18,937052,67 +16576,Hooker,9507,100460,11 +16577,Scooter Lindley,11379,14316,18 +16578,Jim,14534,66571,22 +16579,Sarah Wellington (voice),14317,80223,12 +16580,Lawyer,37410,171744,13 +16581,Accosted Old Lady,28466,1676886,14 +16582,"Manuel, Ignacio and Peru Irigibel",2441,24975,1 +16583,Mr. Neal,9555,12211,9 +16584,Detective Dale,8467,44042,13 +16585,Skeld the Superstitious,1911,19903,6 +16586,Espen,34582,85151,6 +16587,,124633,1753362,13 +16588,Annie,99826,17832,1 +16589,Monsieur Raoul,33367,32092,4 +16590,Postal Clerk,31342,17488,8 +16591,Husband on Train,76,572,3 +16592,Queen Aislinn,8840,1666,4 +16593,Dr. Sterling,16229,8256,2 +16594,Philip Marlowe,910,4110,0 +16595,"Jan, hitchhiker",5425,43236,4 +16596,Levett,64398,19329,2 +16597,Komo,11535,559897,42 +16598,"Scott, Boy at Party",18222,146837,14 +16599,,20645,1201019,15 +16600,Anna,35284,1333124,17 +16601,Lem Johnson,33172,11086,1 +16602,Howie,167,1737,10 +16603,Jebidiah Allardyce 'Cookie' Farnsworth (voice),10865,12899,13 +16604,Terry Lee Collins,3172,879,1 +16605,Jesuíno Cruz,61939,52583,5 +16606,Rev. Graham Hess,2675,2461,0 +16607,Security Officer #1,1647,1582111,21 +16608,Papa Muntz,14369,75465,10 +16609,William,1890,25186,6 +16610,Walter,10783,17087,8 +16611,The Gill Man (on land),10973,111174,12 +16612,Richard Baxter,32140,141692,3 +16613,Nut #5,20075,157269,14 +16614,Gladys Simmons,31618,78934,3 +16615,Mother Bird (voice),18890,24203,4 +16616,Randy,9475,11367,5 +16617,Man in Elevator,9358,1216570,27 +16618,Parker Riley,9877,19975,3 +16619,Willy Van Outreve,58886,92710,2 +16620,Thug,3780,1482645,53 +16621,Vicar Hewitt,11630,21217,8 +16622,Marcellus / Priest,141489,2549,17 +16623,Porcupine (voice),10948,5247,7 +16624,Prof. Sharp,32595,97331,9 +16625,Deputy Abel Martinson,10219,6212,16 +16626,Flav Santana,95627,15009,24 +16627,Tall Boy,28774,93151,12 +16628,Tomas,10973,12295,9 +16629,Michelle Flaherty,2105,21595,3 +16630,Mayor's secretary (uncredited),379,3910,42 +16631,Philippe Leclerc,95743,23797,1 +16632,Sgt. Sacker (as Bill Boyett),45964,1216592,12 +16633,Ock (voice),13225,81842,12 +16634,Dr. Han Suyin,53879,39554,1 +16635,Steve Rodgers,11446,11867,11 +16636,Alek Spera,24936,5725,1 +16637,New Yorker (uncredited),1578,104601,31 +16638,Phil Allen,17203,4566,0 +16639,Steamboat Willie,857,12838,8 +16640,Annie,85160,101707,4 +16641,Keating,14794,97171,17 +16642,Bensinger,3085,34419,10 +16643,Adm. Burns,29959,84230,3 +16644,Prof. John Ringold,9294,12645,4 +16645,"Ellen ""The Lady“",12106,4430,0 +16646,Libby Bakersfeld,10671,153545,18 +16647,Porter,2084,34551,12 +16648,Netitia 'Nettie' Cobb,10657,99,3 +16649,Singer,28973,1393336,18 +16650,Solomon Solomon,334,658,7 +16651,Russell Rogers,50001,135356,9 +16652,Father Callaway,4147,35026,13 +16653,Mark,45827,78399,6 +16654,Captain Johnson,31995,7383,31 +16655,Poacher,18990,24340,7 +16656,Rudi Fährenberg,10801,3934,13 +16657,Doctor,10972,188049,8 +16658,Jerome's sister,26422,68560,9 +16659,Major,195,2436,3 +16660,Drunk in Hong Kong Dive,2897,84229,39 +16661,Brian Gibbons,9358,80352,21 +16662,Greyo,15321,585957,3 +16663,Young Henry,6171,48462,7 +16664,Fire Chief,11576,34759,32 +16665,The Man with Green Hair,90762,585468,6 +16666,Receptionist,84735,9782,12 +16667,Goth,9905,1075038,14 +16668,Geoffrey,22279,70881,10 +16669,Joan's Father,10047,25675,20 +16670,Man,5,3131,1 +16671,Frank Shorter,22256,23958,3 +16672,First Night Diner With Cane (uncredited),3309,1144743,36 +16673,First Mate on the Ship's Bridge,43832,141139,39 +16674,Sandy Archer,40490,28768,0 +16675,Judith Marak,28295,131049,9 +16676,Mr. Dell,249,1583756,15 +16677,Officer of the Day,32093,120545,15 +16678,Stanley Spadowski,11959,50807,2 +16679,Claggett Girl,43828,935345,18 +16680,Robert Parks,5279,2296,1 +16681,Host of Jeopardy,9079,158208,13 +16682,Karl Holz,13701,110315,17 +16683,Lumberjack (as Deborah Pollack),15144,1717646,16 +16684,Anna Scott,524,1892328,38 +16685,Ernest P. Worrell,18935,12899,0 +16686,Nita,25994,94502,4 +16687,Count Jean de Satigny,2259,37068,8 +16688,Frank Raftis,52744,380,0 +16689,Little Feather,8584,211568,12 +16690,Mrs. Oxford,573,35314,8 +16691,Leiche,9589,58108,3 +16692,Gloria McKinney,38554,3208,2 +16693,Motel Owner,755,3140,13 +16694,Kay,38950,1216971,1 +16695,Soldier,12764,102576,9 +16696,Disco Girl,5425,1644871,9 +16697,Zachary Wilde,33668,5731,4 +16698,Sid,12454,72310,10 +16699,Lloyd Small (Silent Thunder),40490,147491,4 +16700,Reception Guest (uncredited),3063,1329662,17 +16701,Cameraman,10603,1748107,25 +16702,Daniel Dravot,983,738,0 +16703,Lolita,11446,69482,1 +16704,Ryan Campbell,26156,49425,2 +16705,Soldier (uncredited),28,57925,27 +16706,,56235,223812,4 +16707,Young Jonesy,6171,33049,9 +16708,Simon of Cyrene,2428,16897,20 +16709,"Sam, amie de Jack",28384,12812,6 +16710,Monte,49792,2887,7 +16711,Bridesmaid #2,2613,53918,15 +16712,Vince Majestyk,26173,4960,0 +16713,Sherini,15267,1076155,8 +16714,Rabbi,379,1281540,38 +16715,"Mina, Keetje's zus",42258,1072309,3 +16716,Simone,31083,1171593,7 +16717,Eric,24086,27493,0 +16718,Extra (uncredited),2897,1469580,229 +16719,Mrs. Junkos,28169,1073040,5 +16720,Kimberly Hart,6499,56895,4 +16721,General Li (voice),10674,4995,18 +16722,Ben,23114,1016571,13 +16723,Lunch Lady,11017,127037,17 +16724,Wasja,46592,1020723,2 +16725,Allen,9404,1277939,4 +16726,Preservation Partier,8467,1748864,61 +16727,Koyota Hatakeyama,11645,72540,15 +16728,Hotel Guest / Gambler (uncredited),33680,1173173,22 +16729,Ranjan (voice),14873,945115,3 +16730,Doc Robbins,21721,532,2 +16731,Bert Fischer,11545,5950,3 +16732,Mike Pickering,2750,1558686,44 +16733,Jonathan Mardukas,9013,28164,1 +16734,J.J. McClure,11950,16475,0 +16735,Lizzie McGuire,18736,5958,0 +16736,Caspar Goodwood,36758,10409,8 +16737,Model Shelby,4806,32291,9 +16738,Bodyguard,117,1178011,42 +16739,Ben Caxton,22160,12149,5 +16740,William 'Billy' Tepper,10750,1328,0 +16741,Woman (uncredited),17889,1191208,23 +16742,Pimp,1924,202983,55 +16743,Man Singing at Inquirer Party (uncredited),15,1731500,45 +16744,Mrs. Mandrakis,45964,80135,4 +16745,Rachel,141210,1114469,2 +16746,Layla Moore,1647,18354,2 +16747,Girl in Car,39867,194493,10 +16748,Mabel (as Lilian Hall Davis),36056,114807,1 +16749,Nina,30202,105827,10 +16750,Detective at Grogan's Crash Site,11576,14064,27 +16751,Nancy Clark,8970,18892,1 +16752,Craps Woman,4478,21249,16 +16753,Car Driver,25403,93723,14 +16754,Bit Part,10568,40529,21 +16755,Lt. Greenhill,3114,30560,16 +16756,Iris,47943,1336112,9 +16757,Pa Johnson,73969,34574,3 +16758,Doc Evans,1049,9633,12 +16759,Tom Toomey,10162,1609642,17 +16760,Sam Karras / Ben Cappadora - Age 12,30943,57136,5 +16761,Marla Higgins,17168,81377,13 +16762,Cop,16938,1724910,23 +16763,"Lord Haw-Haw, German radio commentator (voice) (uncredited)",15497,48959,15 +16764,1st Phone Booth Youth,11654,59872,14 +16765,Polonius,18971,385,7 +16766,Victor Rosa,13369,5723,0 +16767,Gerry Evans,5332,7026,6 +16768,Brodie Bruce,2293,11662,0 +16769,Deborah Sloane,60994,5376,2 +16770,(voice),12593,73031,2 +16771,Doctor (uncredited),20213,553227,7 +16772,Rev. A.I. Galsworthy,20758,34320,9 +16773,Jason Larrabee,249,14849,9 +16774,Narrator/Burt Ramsey,334,10743,16 +16775,Martha Huggins,22292,88569,3 +16776,,83562,1459258,12 +16777,Frank Galikanokus,39939,109764,11 +16778,Uncle Mike,14293,4690,6 +16779,Matthew 'Matt' Garth,3089,12151,1 +16780,Jeff Henderson,27265,52602,2 +16781,Betty Lou Fleckum,21849,855,3 +16782,Det. Monty Phelan,26378,4113,2 +16783,Martha Osten,22328,19413,9 +16784,Extra (uncredited),2897,1511945,203 +16785,Interviewer,578,8554,16 +16786,Maid,45019,200999,7 +16787,Paul,14587,1616923,18 +16788,Grand Duchess Swana,1859,116185,2 +16789,Reginald (voice),19042,65598,7 +16790,Detective George Beaufort,12618,352,4 +16791,Deputy Tom Farrah,11361,160374,13 +16792,Reese,11697,4078,15 +16793,Joyce Rensaleer,1813,27264,34 +16794,Faithful George,13562,125843,9 +16795,Dahlia,47816,60561,9 +16796,Election Council President (uncredited),11697,12426,84 +16797,Vlada Kostov,4988,21399,6 +16798,Cafe 24 Waitress,2898,61111,37 +16799,Lord Felton,8840,11355,9 +16800,Stationmaster,13889,1117087,13 +16801,Interrogation Officer,15497,78308,11 +16802,Jo's Boys 2,54405,1752856,18 +16803,Tanya,27526,98087,12 +16804,Alma Mahler,56934,41819,0 +16805,Myriem,60608,20577,3 +16806,Louis Simms,16560,80623,3 +16807,Letitia Witley,29067,39002,2 +16808,Ginger,38950,100613,10 +16809,Earl Cavanaugh,13539,21089,5 +16810,Lolita Quintero,32093,30289,1 +16811,Alfred's valet,51371,14488,8 +16812,Casino Patron (uncredited),379,1182678,43 +16813,Lew Elson,21721,67951,8 +16814,Bruce,10708,58478,4 +16815,Meg,400,5601,11 +16816,Aunt Tessie,703,940121,33 +16817,Teen,53150,1539278,18 +16818,David Montagne,24795,37043,8 +16819,Mrs. Dena Dittmeyer,9066,5376,14 +16820,Yuppie,24254,74043,44 +16821,Lycanthrope,9406,587137,13 +16822,Lt. Saavik,154,1796,10 +16823,Bouncer,2124,1546232,14 +16824,,20645,1201018,12 +16825,Mireille,78281,20710,3 +16826,Jenny,24750,1383789,13 +16827,Drone 2/Huey,811,12125,5 +16828,Babs,165,97708,40 +16829,Player Queen,10549,18998,21 +16830,Dale Drewer,26946,102828,0 +16831,Christina Walters,11812,6941,0 +16832,Hot Dog Vendor,36657,7624,15 +16833,Geechee,115332,1981,4 +16834,Tim's Wife,115332,91726,7 +16835,Cul,482,131832,12 +16836,Inmate Wearing Black Cap (uncredited),34106,1181275,32 +16837,Mirtha Jung,4133,955,1 +16838,Elizar Kane,36259,12647,4 +16839,Mulan (singing voice),10674,15838,1 +16840,Alex Burke,43340,70985,2 +16841,Clive,92769,179270,6 +16842,Herself,11458,1778211,12 +16843,Mr. DeMarco,9308,73132,8 +16844,Gee Gee Graham,50001,34509,2 +16845,Henryk Kwinto,22257,55971,0 +16846,Additional Bus Passenger #3,1637,173177,43 +16847,Benny,11001,56691,9 +16848,Khalil Saleh,9882,20644,9 +16849,Justin,23730,90530,6 +16850,Rebecca Payne,8470,8256,2 +16851,Polish Man,4012,1192386,24 +16852,Sergeant Albrecht,9495,8874,2 +16853,Cora Wilson,7340,52467,15 +16854,Karl Stromberg,691,10459,2 +16855,Etheline Tenenbaum,9428,5657,1 +16856,Mrs. Franklin,9441,115767,8 +16857,Security Guard,88863,27993,4 +16858,Nazar,41516,102328,6 +16859,Gaspar Rutchek,26378,1385803,19 +16860,Marsha,22398,33432,7 +16861,Amy Szalinski,9354,57420,4 +16862,Michelle,2124,42335,11 +16863,Rexford Bedlo,29056,514,5 +16864,Esteban,99,964,8 +16865,Gwilym,43266,1709751,14 +16866,le père de Vincent,35651,583592,3 +16867,The Policeman,977,14584,2 +16868,Bourke,11259,52145,10 +16869,O.T.,21148,940950,3 +16870,Clara del Valle Trueba,2259,5064,0 +16871,Mrs. Norman,1890,6721,2 +16872,Del Gue,11943,52463,6 +16873,Growler,41160,16632,22 +16874,Soldier,19855,1381096,15 +16875,Reenie,9403,1178981,40 +16876,Tiffany Clark,28466,98373,24 +16877,Jorge Armas,7305,1462675,38 +16878,Anna - Moscow Roommate,1859,85486,42 +16879,Captain Spaulding,2662,5695,0 +16880,Bartender,949,1576419,48 +16881,Dennis Wallace,10050,62520,9 +16882,Officer Callagher (uncredited),11202,35958,41 +16883,Atlanta,3682,33669,28 +16884,Ox,11397,53492,19 +16885,Vincent,21380,588160,2 +16886,Marianne Byron,26941,6684,2 +16887,Joanne White,11800,18248,1 +16888,Dr. James Carson,26946,102829,5 +16889,Twisted Nurse,11377,562314,10 +16890,Edgtho the Silent,1911,19900,3 +16891,Jute: Juniors,14794,35063,15 +16892,Gang Banger #1,134368,1098669,4 +16893,Michelle,18417,8189,9 +16894,Fraternity Leader,34223,1668097,9 +16895,Max,13766,73421,4 +16896,Mouffetard,77056,581115,12 +16897,Father Ryan,11449,8608,4 +16898,Kaa / Colonel Hathi / M.C. Monkey (voice),14873,12077,8 +16899,Gig,1554,6401,5 +16900,Willie,26889,92840,15 +16901,Mavis,276635,1484404,2 +16902,Angel,28370,4885,2 +16903,Cantoni,145925,101556,21 +16904,Federico,55420,1664446,27 +16905,Ransom Stoddard,11697,854,1 +16906,Pete Davis (uncredited),3085,88652,26 +16907,Carrie Laughlin,10909,41820,3 +16908,Jean's Daughter,857,234586,35 +16909,Hunyak,1574,17644,15 +16910,Agent Terrence Darnell,17708,35701,8 +16911,Shepherdess,229,2935,14 +16912,Walter Hollenbach (uncredited),11859,6486,17 +16913,John Bayley,11889,388,1 +16914,Ben Braddock,37247,4483,0 +16915,"Joey Renda, Frank's Son",40490,4255,6 +16916,1st Lt. Dobbs,10364,8349,11 +16917,Karin Kinsella,2323,12930,2 +16918,Joe Earley,11959,216837,9 +16919,Pvt. Cowboy,11589,78084,8 +16920,Pvt. Lejeune,975,94031,13 +16921,Lord Brockelhurst,53761,148788,3 +16922,Himself,11302,153575,15 +16923,Sarah,47943,1336110,8 +16924,Tipsy Girl,299,4090,16 +16925,Barbara,21142,129486,4 +16926,"Taffy, Age 12",32872,1720971,15 +16927,Al Meyer,13667,28010,1 +16928,Cute Girl #1,18736,88082,17 +16929,Samantha Ellison,24126,59449,2 +16930,Jesus Ramirez,21629,87743,4 +16931,Jerry Li,11230,1166104,13 +16932,Jessica,858,12930,5 +16933,Roy,18477,64721,1 +16934,Nino Scordia,10867,147156,5 +16935,Bunny Caldwell,796,11870,8 +16936,Cornelia Bullock,13562,98574,3 +16937,Dancer (uncredited),15,1464780,101 +16938,Major / Lieutenant Colonel Harvey Stovall,15497,29313,4 +16939,Wide Receiver,9563,1741393,29 +16940,Ray Reddy,2675,11614,5 +16941,Bird's Girl,29355,42296,9 +16942,(uncredited),11830,134383,27 +16943,George,11103,1037,0 +16944,Vittorio Vallenari,10396,554617,9 +16945,Big Mean's Sidekick,21629,14333,13 +16946,Mr. Cray,28940,44161,3 +16947,Homer Parrish,887,13580,7 +16948,Costantino,552,7541,2 +16949,Sir Joseph Banks,12311,81934,7 +16950,Thomas Tipp,1903,9191,6 +16951,Employée de banque,17350,549323,12 +16952,Guard,5924,78087,21 +16953,Lt. Mike London (as Robert O'Neil),21380,136503,3 +16954,Spacecraft Captain,35139,111382,5 +16955,Tex Norton,29372,137004,14 +16956,Jamie Blake,11950,4299,2 +16957,Megan,13105,54219,4 +16958,Diggy,9816,59571,8 +16959,Dinah Groshardt,201445,1183536,0 +16960,Andy Simpson,11428,95796,7 +16961,Miranda's Attorney,788,178148,19 +16962,Ballerina,229,2943,18 +16963,Armed Little Lady,28466,555074,16 +16964,Frank LaCrosse,10871,6065,0 +16965,Katie,12106,27261,12 +16966,Dolores Montelli,16235,80135,2 +16967,Vance,31947,1007561,10 +16968,Jimmy,40555,13550,3 +16969,Drop Dead Fred,10379,14469,1 +16970,Shannon Hamilton,2293,880,4 +16971,Second Player,10549,207549,28 +16972,Joy Greer,18222,73733,1 +16973,Extra (uncredited),2897,1353645,161 +16974,Dancer,10603,1748053,33 +16975,Bikini Girl (uncredited),8467,1795599,73 +16976,Maria,167,1988,12 +16977,Tytus / Pirate / Bandit,10134,1812176,9 +16978,Bando Zé Pequeno - Li'l Zé's Gang,598,1206910,19 +16979,Archie Walsh,9529,57851,12 +16980,Himself,73482,1234629,1 +16981,Chief of Maritime Safety Agency,1678,1481118,16 +16982,Pinhead,105,180468,43 +16983,Retirement Home Director,9819,38024,9 +16984,State Trooper,28295,15693,8 +16985,,76996,1518,3 +16986,,78285,583567,4 +16987,,36773,69791,4 +16988,Busotsky's Mother,39578,10341,4 +16989,Stockboy,281289,1376292,2 +16990,Fifth Customer,10776,1353187,13 +16991,Leland Gaunt,10657,2201,0 +16992,Tommy Gray,13562,8240,6 +16993,Caretaker,30875,101335,9 +16994,Princess Shalmar,31805,83400,2 +16995,Reynolds,10671,152719,26 +16996,Konrad Beiters,4762,39305,10 +16997,Man Behind Grandma,26378,2501,41 +16998,Otto Roedel,22267,1226707,9 +16999,Fireboat Captain,10603,1748110,28 +17000,One Big Happy Family Member,32872,1720972,17 +17001,Nora Cornell,33172,35340,3 +17002,Watt,11235,2451,7 +17003,Marjorie,6068,19,5 +17004,Ena Riley,38951,1133443,6 +17005,Security Guard,34223,592129,22 +17006,James from the Valley,28940,43304,7 +17007,Nick Crozier,9563,6383,10 +17008,General Burroughs,10568,2438,7 +17009,Midget,39310,18272,7 +17010,Judge,788,3044,18 +17011,Hyatt Singer,786,1455810,34 +17012,Reporter Smoking Pipe at End (uncredited),15,30510,73 +17013,Citizenship Student,4478,156404,30 +17014,Tragedian,18971,134251,13 +17015,Man (uncredited),33364,1504118,11 +17016,Henry Spencer,985,6718,0 +17017,Mr. D'Arc,31083,109470,6 +17018,Vince Desjardins,235,3040,13 +17019,Riley,30547,8260,5 +17020,Kurt,32031,2717,7 +17021,Big Mac,22328,4965,5 +17022,Vorg,10134,1812177,10 +17023,Tae-Kwon-Do Instructor / Judge (uncredited),32049,84901,51 +17024,Pierre,11134,224918,10 +17025,Josselyn,28387,55207,11 +17026,Elder (voice),13225,64951,17 +17027,Loy Colton,11879,29712,6 +17028,Legislator,25430,82837,32 +17029,Ramon Garcia,44308,32486,3 +17030,Mr. Peabody,28597,15832,6 +17031,Himself (archive footage),8672,129456,10 +17032,Red Team Player,11535,1296930,27 +17033,Narrator (voice),965,40,8 +17034,Trevor,40879,4451,6 +17035,Hotel Attendant,30666,106743,10 +17036,nurse,1633,1448835,14 +17037,Farmer's Wife,30352,106122,18 +17038,Dr. Radley Tate,18417,4139,2 +17039,Art Shirk,10466,3266,4 +17040,Lenore,1578,17652,5 +17041,Mrs. Farmer,33135,130986,4 +17042,Amy Franklin,31947,2713,1 +17043,3a Prostituta,10867,553193,27 +17044,Jimmy Bones,11380,19767,0 +17045,Palace Guard,6038,1266017,19 +17046,Fake Shemp,764,1116941,6 +17047,Carter,15379,90339,8 +17048,Agent Kimba Welch,3595,33240,9 +17049,William R. Simonson,12101,7664,4 +17050,Eddie Farnham (uncredited),1480,33743,28 +17051,Dolly Amati,220976,9599,0 +17052,Mona Camp,31005,18686,12 +17053,Gun,11830,3899,2 +17054,Mr. Aung,41166,21944,6 +17055,Passerby #3,1634,1075078,13 +17056,Private James Francis Ryan,857,1892,1 +17057,One Big Happy Family Member,32872,1720977,21 +17058,Elizabeth James,9820,20162,2 +17059,"Fizzgig, A Friendly Monster",11639,64181,3 +17060,Sanchez,12476,106753,7 +17061,Semblano,107693,234488,11 +17062,Oscar Madison,27472,6837,1 +17063,Linda,9589,1728655,15 +17064,Marie Patroni,10671,194646,34 +17065,Woman in Department Store (uncredited),33015,89602,5 +17066,Guest at Birthday Party,16235,80160,26 +17067,Fred Saunders,21734,35849,6 +17068,Die Russin,5998,48063,12 +17069,Sam Dawson,10950,2228,0 +17070,Private Davey (uncredited),10590,200900,50 +17071,Enthralled Girl,2105,1570015,33 +17072,Maurice Bendrix,78256,37446,1 +17073,Hooker at Bar,9507,9986,8 +17074,Lotus,9296,67020,39 +17075,Lena,742,11041,5 +17076,Little Girl,11234,1495416,7 +17077,Jim,30265,2049,4 +17078,Jamie,10747,8350,6 +17079,Potter,25934,1231666,12 +17080,"Jansen, defense attorney",25673,94293,11 +17081,Father Dedice,220976,19136,12 +17082,Roxie Hart,1574,9137,1 +17083,Eddie,664,7471,13 +17084,The Green Knight,30584,738,3 +17085,Additional Voices (voice),8916,12077,13 +17086,Homeowner,23223,976444,7 +17087,Silence's Mother in Flashback,9028,1135474,20 +17088,Chuck Alvarado,121940,41737,2 +17089,Nun,84735,101609,15 +17090,Minor Role (uncredited),2897,1069916,251 +17091,Natasha Rostova,11706,1932,0 +17092,Office Manager (uncredited),34106,995920,121 +17093,Sheriff Raymond,31306,11315,9 +17094,Lt. Col. Stone,11008,11086,2 +17095,Col. Martin 'Jiggs' Casey,23518,2090,1 +17096,Sabine Heyer,282919,36486,3 +17097,Jeff Bebe,786,11662,3 +17098,Fletcher Reede,1624,206,0 +17099,,3780,1167543,58 +17100,Jack Carney,5333,7678,0 +17101,Elizabeth Wyatt,59569,13420,3 +17102,"Moey, the Candy Butcher",50001,120554,14 +17103,Newspaper Seller (uncredited),73969,97999,23 +17104,Nurse Angela,1715,1907,6 +17105,Louisa,580,16217,6 +17106,Distinguished Gentleman,1995,20510,5 +17107,Schecky Moskowitz,19157,19292,0 +17108,Ricky,13567,74674,1 +17109,John Parker,11379,29382,13 +17110,Steve,601,9981,6 +17111,Paul,57575,10222,7 +17112,Police Officer 2,16235,80155,21 +17113,Waitress,52744,4432,10 +17114,Herself,9403,12021,44 +17115,Doug Simpson,9066,1224363,17 +17116,Prison Guard,10400,1239597,67 +17117,Gossipy Woman,20438,1514697,7 +17118,Reception Guest (uncredited),3063,13344,16 +17119,Tillie Hansen,73462,2165,1 +17120,Bryce,15144,3036,14 +17121,McIlvaine,11374,34457,18 +17122,Deputy Bob Martel,9059,15439,9 +17123,George Martin,15677,39952,4 +17124,Russell Thompson Sr.,9354,40009,2 +17125,Reporter At Party,17692,236986,26 +17126,Dole Clerk,9427,229605,18 +17127,Room Service Waiter,12499,122807,14 +17128,Mrs. Larson,3028,1211997,11 +17129,Waitress,277726,20318,8 +17130,Bert Weatherby,10671,117027,25 +17131,Claire Bonner,15489,59192,5 +17132,Frugal Daughter,43089,129277,14 +17133,Norris,910,13977,8 +17134,Albert Mondego,11362,73968,9 +17135,La mère,108,267962,8 +17136,Kenny,9816,59570,7 +17137,Chris,30946,14409,7 +17138,"R.Chetwynd-Hayes, Writer",39578,8516,2 +17139,Brown's Hole Rustlers,5917,1289391,34 +17140,Frenisio il somaro,29743,1398940,7 +17141,Adam,38732,120772,7 +17142,Hernando,23668,90442,8 +17143,Zombie (uncredited),7219,119370,8 +17144,Devlin Warren,15263,30560,2 +17145,Koop,11129,30316,3 +17146,Tenutaria bordello,10867,20589,24 +17147,François,42832,81422,3 +17148,Hulk,9308,41125,9 +17149,Lt. Huff,10872,10361,5 +17150,Cilli Schuster-Braun,287305,37477,3 +17151,Richard Vernon,2108,7675,5 +17152,Patricia Fearing,660,9924,6 +17153,Prof. Grady Tripp,11004,3392,0 +17154,Dolly Kenyon,30547,13568,6 +17155,Roger the Snowplowman,15489,1534,1 +17156,Additional Bus Passenger #5,1637,1872797,45 +17157,Annie,276635,1229062,1 +17158,Richard Forst,753,3142,1 +17159,Grande,598,558258,20 +17160,Gustav Albrecht,220,2756,8 +17161,Lello,552,7551,12 +17162,Lennie Small,9609,6949,0 +17163,Galoup,14626,27978,0 +17164,Poker player,9028,1757590,16 +17165,Court Clerk,61563,77027,10 +17166,Sweeper Driver,47955,15850,11 +17167,J. J. Dunczyk,22257,54074,2 +17168,Truck Stop Waitress,10866,552469,17 +17169,Station Porter (uncredited),28974,13848,9 +17170,Ginger Kingsley,9034,56757,5 +17171,Local in Nebraska Bar,10866,1188456,27 +17172,William Miller,786,11663,4 +17173,Laura Mars,29143,6450,0 +17174,Villager of Tullymore,10162,1609674,51 +17175,Cop,18,53246,23 +17176,Tong Po,10222,222508,3 +17177,Jolly 4 / Jwala,85052,84957,2 +17178,Nadia,2105,21596,4 +17179,Featherstone (voice),45772,12077,5 +17180,Miranda,1624,18191,7 +17181,Yun-Yun,25538,555382,12 +17182,Cost-Conscious Survivalist,28466,160947,19 +17183,Museum Official,11001,42000,36 +17184,Lawrence Selden,25520,7036,8 +17185,Sal Amato,25005,164723,3 +17186,Max Fischer,11545,17881,0 +17187,French Maid,11442,21430,23 +17188,"Pickering, Chief of the B-Squad",39578,9221,1 +17189,Young Copper (voice),10948,3034,12 +17190,Billy Lo,13333,19429,0 +17191,Tomas,966,168083,12 +17192,Little Boy,11397,1773853,74 +17193,Jean-Marc,12652,267603,11 +17194,Sister Mary Francis,12309,174871,14 +17195,Board Member,32872,162052,56 +17196,Bartender,5917,1124634,47 +17197,Foster,39939,56253,4 +17198,La signora misteriosa,422,5686,7 +17199,Lauren Madden,8358,51537,13 +17200,3rd Elder,1924,101919,18 +17201,J.B. Jeffries,21849,119381,11 +17202,Evan Lewis,9358,33293,3 +17203,Newsboy (uncredited),34106,34241,70 +17204,Doctor,9905,1739314,8 +17205,Teenage Girl,1497,1229231,27 +17206,Dignan,13685,887,1 +17207,Aline,64310,222686,9 +17208,Reporter,9296,1341053,9 +17209,Sgt. Ernie Savage,10590,43858,21 +17210,Disco Hostess,76411,7430,9 +17211,Referee - Fox Fight,1578,122269,16 +17212,Maria,1689,25215,10 +17213,Ethel (uncredited),15,935629,129 +17214,Prof. Lesley Joyce,29959,85740,1 +17215,Coach Wally Rig,20704,1162,2 +17216,Thing,2907,50400,11 +17217,Sean Mercer,11385,4165,0 +17218,,87481,944143,1 +17219,Passepartout,2897,29518,1 +17220,Man in Theatre Line,703,1462345,10 +17221,Mr. Musgrove,17015,27660,11 +17222,Male Nurse,24816,116749,9 +17223,Alexander,2428,15693,37 +17224,Man in Locker Room After First Fight,26378,980330,55 +17225,Roberta Cavell,6171,44275,13 +17226,le pompiste,42726,24477,12 +17227,Mrs. Manero,10805,20972,4 +17228,Charlotte Parker,121091,10742,1 +17229,Young Lover on Ship,1678,18613,17 +17230,Wes Hardin (Bank-robber),22328,14834,12 +17231,Psychologist (voice),8916,47773,8 +17232,Leon Friedman,10400,1166,9 +17233,Bugsy,93350,1857001,19 +17234,Shinjiro,20645,40449,5 +17235,Ash Ketchum (voice),12599,67830,0 +17236,Val-Chick 1,1811,10826,19 +17237,Major Lennox,11236,24596,13 +17238,,10568,1463005,18 +17239,Concierge,2084,18025,9 +17240,Henry van der Luyden,10436,3796,20 +17241,Max,73247,12521,3 +17242,Chief Justice Tournament,11873,1265408,41 +17243,Country Club Courtney,2640,1137039,19 +17244,Barman,9028,225190,28 +17245,Paramedic,8844,1235504,20 +17246,Quintal,12311,1285041,14 +17247,Monk Hin Hung's disciple,12780,246385,8 +17248,Dexter Helvenshaw,29076,12644,11 +17249,Gloria,18111,69130,5 +17250,Reporter at Boat Deck (uncredited),15,1468198,72 +17251,Iestyn Evans,43266,939983,19 +17252,Office Worker,10708,1786662,51 +17253,Perry's Secretary,1924,1681417,46 +17254,General Vostov,5551,1118,10 +17255,Expressman (uncredited),15,148401,104 +17256,Liza (Pavlov's wife) (as V. Markova),46592,1881923,10 +17257,Meisel,1813,14669,13 +17258,Suzanne,194,1654,4 +17259,Mr. Piscora (uncredited),220,87369,58 +17260,Captain Vincent Alcoa,32059,1004,4 +17261,Mrs. Thompson,12309,153692,4 +17262,Narrator (voice),9598,24368,11 +17263,Anne,62463,1373457,1 +17264,Heather McNamara,2640,4801,3 +17265,Alicate,598,8601,7 +17266,Robert,78657,18177,0 +17267,David Alexander,30379,2712,1 +17268,Old Man at Yokohama Travel Office (uncredited),2897,16103,303 +17269,Jack Grainger,13380,96228,2 +17270,"Major ""King"" Kong",935,14253,4 +17271,Peter Yellowbear,11888,6804,6 +17272,Percy,10735,1266585,8 +17273,Comedian at Rally,703,1726176,41 +17274,Det. Magelli,36915,925,13 +17275,Nitti's Henchman,4147,1313093,17 +17276,Réverend Shillerman,10354,21731,7 +17277,Bridal Shower Hooker,12309,84870,20 +17278,Mr. Callen,5257,1838428,23 +17279,Patsy,1578,4692,9 +17280,un pilote de rallye,42726,578328,10 +17281,La bonne,12716,1823370,18 +17282,Young Joan,2033,20905,8 +17283,Starlighter,165,1200794,46 +17284,Charles B. 'Charlie' Barkin (voice),19042,6952,2 +17285,R.J. Courtney,69605,19218,10 +17286,The Princess,35337,23931,0 +17287,Otis B. Driftwood,2662,27737,1 +17288,General Kramer,10750,8655,6 +17289,Blade,21629,87744,7 +17290,Kool Kitty Kat (as Snoop Doggy Dogg),88863,19767,5 +17291,Casino Bar Band Singer/Julian's Flirt,11873,1265399,23 +17292,Hotel Manager / Vendor,2666,1040112,12 +17293,Kay Kirby,47942,14061,1 +17294,Mini Mart Clerk,26180,268113,14 +17295,Makeup Man,31044,1180885,49 +17296,Insp. Lee Ming,38955,931174,2 +17297,Artie Duncan,11379,16540,31 +17298,Nurse Wells,11442,80348,13 +17299,Partick Martin,10776,26485,9 +17300,Telephone Service Man (uncredited),9504,1282690,19 +17301,Small Role (uncredited),5991,1543164,12 +17302,Colonel Pierce Grissom,32074,12646,3 +17303,Howard Hughes,28176,923,9 +17304,Susan,21629,41246,15 +17305,Mrs. Lachance,235,1070,11 +17306,Barbara 'Barb' Coard,16938,20011,2 +17307,Mr. Coombe,22292,92908,6 +17308,Charles Eastman,25673,82836,7 +17309,Subway Thug (uncredited),11302,16483,14 +17310,Maid in Xanadu Hall (uncredited),15,939834,36 +17311,Major,124963,156657,13 +17312,Billy Tatton,2115,21734,7 +17313,C.J.,2637,27688,17 +17314,Louis Colquhoun,42136,16564,6 +17315,Larry Johnson,39939,84407,10 +17316,Rachel,12220,12931,8 +17317,Brubaker,24254,44301,51 +17318,Mayor Ragsdale,28736,7333,4 +17319,Lassard,11895,57351,9 +17320,Headmaster,14794,82549,10 +17321,Sheriff,167,131725,23 +17322,Busotsky's Father,39578,20510,5 +17323,Mrs. Addison,9821,15899,6 +17324,Sean Mullen,3595,33239,5 +17325,Captain Mauger,36245,34679,5 +17326,Vin,966,13565,2 +17327,Lifer,1369,16586,12 +17328,Clerk,705,1196184,16 +17329,Tim Weiner,1443,17243,11 +17330,Mr. Berkowitz,31044,157444,40 +17331,Razor Charlie,755,11160,7 +17332,Machine-Gunner on Plane That Kills Kong (uncredited),244,3239,13 +17333,Richard Clark,9308,16165,0 +17334,Vocal Jazz Group,2105,1656606,27 +17335,Lawrence Murphy,38765,41214,1 +17336,Arresting Officer,9296,1744175,57 +17337,Anna,2021,20768,4 +17338,Major Zara,27380,1757,2 +17339,Bank Robber Okuda,39462,121191,3 +17340,Reporter,1374,1877409,19 +17341,Duty sergeant,2084,28485,14 +17342,"Farkas ""Bulk"" Bulkmeier",6499,200201,8 +17343,Duke,11873,1264490,24 +17344,Aunt Corene,17496,182574,9 +17345,Men's Room Man #2,46986,31512,1 +17346,"Kozy, S&M Girl",1811,5578,4 +17347,Admiral Croft,17015,14465,4 +17348,Motel Clerk,6951,59184,11 +17349,"Gwen, Switchboard Operator",10276,1838641,13 +17350,Sully,544,4175,6 +17351,Mingott Maid,10436,35515,23 +17352,Pat the hotel detective,24005,15949,30 +17353,Woman on Sinking Boat,10207,1559637,17 +17354,Billy Lipnicki,19855,1527160,5 +17355,Teller,16249,18870,17 +17356,Extra (uncredited),2897,1466161,189 +17357,Fake Shemp,764,1116944,9 +17358,Levander 'Bird' Williams,29355,34,6 +17359,Capt. Daniel Gregg,22292,35321,1 +17360,Detective at Lafayette Bar,10400,1393348,49 +17361,Fight Announcer,26378,126549,29 +17362,Girl #2,10173,979987,20 +17363,Band Member,6068,1609251,37 +17364,Loupgerou,43828,5464,9 +17365,Veronica's Mom,2640,27568,8 +17366,Bank Clerk (uncredited),34106,1421014,109 +17367,Studio Executive #3,9296,125024,16 +17368,Capt. Nichols,975,1077971,16 +17369,Tina Parker,35696,57553,5 +17370,Clay Stork,18282,106247,3 +17371,Male Choristor,49929,33452,0 +17372,Christina's Advisor,9563,14852,21 +17373,Ginger Gaffney,245268,13557,7 +17374,Sid,32275,127631,12 +17375,Kaz,38509,120588,10 +17376,Quoc,34899,20965,4 +17377,Marv Merchants,772,11511,3 +17378,Band Member,6068,1609248,36 +17379,Micky O'Neill,54405,42566,1 +17380,Tanker,11589,1878350,28 +17381,Dano,9358,90132,12 +17382,Amelia Martens - his wife,117500,94950,2 +17383,Extra in Wedding Scene (uncredited),238,1209678,57 +17384,Butch Scarsdale,124057,11086,4 +17385,Trish,13369,9205,2 +17386,Arnie,12103,129101,10 +17387,"Dr. ""Doc"" Daneeka",10364,64929,4 +17388,Doctor,46986,17546,22 +17389,Moriarty (tank crewman),11589,54450,5 +17390,Miss May,28,13023,14 +17391,Sara Warren,43316,11025,2 +17392,Marylee Hadley,69605,10487,3 +17393,Cook,49410,15099,16 +17394,Himself (archive footage) (uncredited),12237,10279,4 +17395,Phillip Finch,29355,1276381,7 +17396,Davy Johns,12129,1270,1 +17397,Extra (uncredited),2897,952815,167 +17398,Dr. Mirkovic,11902,119947,17 +17399,Player Prologue,141489,1114920,16 +17400,Nicodemus,2428,24820,24 +17401,Jo-Ann,43316,140302,10 +17402,Leo Solomon,9087,4251,15 +17403,Laura Dandrige,9716,524,9 +17404,Friendly Officer,11001,1672668,43 +17405,"Margaret, Farmer's Wife",17203,14153,14 +17406,First Ancestor (voice),10674,1752,15 +17407,Georgia,46989,168906,6 +17408,Curious Guy,11397,1517843,58 +17409,Zombie Priest,21380,32830,9 +17410,Demons (voice),16235,80163,28 +17411,Ivan Travalian,41760,1158,0 +17412,First Sweeper,22023,1577160,22 +17413,Xavier Cugat (uncredited),43199,579763,10 +17414,Chon Wang,8584,18897,0 +17415,Barkus sparring partner (uncredited),32049,1502542,48 +17416,Piano Player in Montage (uncredited),238,2872,38 +17417,Nancy McKay,21711,92680,5 +17418,Doris,45827,7303,1 +17419,Willie Long,6522,52057,2 +17420,White Tiger,33542,1426138,7 +17421,Matthew Osceola,2757,29861,8 +17422,Gunsmith,42136,1556266,12 +17423,Flying Cop,18,1857423,52 +17424,Marcy,22023,26483,2 +17425,Sergei Pavlov's Father,46592,1557706,9 +17426,Herself,11899,66776,19 +17427,Sanctuary Woman,10803,39776,13 +17428,Mrs. Mary MacLean,20424,8241,4 +17429,James Leeds,1890,227,0 +17430,Air Traffic Controller,795,78789,13 +17431,Sheriff Maledon,11694,3244,9 +17432,(uncredited),29263,1028551,24 +17433,Booton 'Little Maca' MacAvoy,80351,7635,2 +17434,Ernie Mullins,69828,16475,0 +17435,Man Singing at Inquirer Party (uncredited),15,1419570,49 +17436,Sandro Guzman,19348,3137,2 +17437,pastore,29743,91545,17 +17438,Elvira,26165,125486,2 +17439,Diner at Ronnie's,24254,91432,18 +17440,Sale House Man #3,14,9634,13 +17441,Harlan O'Shea,3682,33658,11 +17442,A.J. Ross,10550,11007,3 +17443,Charlie,25501,109760,10 +17444,Roller skater,11899,66804,14 +17445,Halbert 'Hal' Jackson,12121,12836,1 +17446,"Rosario Filargi "" Finlay """,2075,13938,6 +17447,Billy Vorsovich,2604,9045,7 +17448,Maria bambina,26165,1878750,14 +17449,Gillian,2750,1651692,46 +17450,Scott,764,11463,2 +17451,Private Adrian Caparzo,857,12835,2 +17452,Tadao,20645,96637,2 +17453,Aunt Elizabeth,13549,3380,3 +17454,Roland Dalton,38558,27811,0 +17455,Norman the Chauffeur,31306,31028,6 +17456,Baron Jose Gruda,11570,102746,5 +17457,Mrs. Kamino,1637,157048,12 +17458,Alice Wisdom,786,11680,19 +17459,Clark Taylor,38772,147077,4 +17460,Yolande of Aragon,10047,6450,2 +17461,High School Girl,55420,1799816,20 +17462,Starla Grady,23967,69855,1 +17463,Mary Lee Ochs,1890,1218055,12 +17464,Giorgio,18736,33339,12 +17465,Best Man,15745,78299,12 +17466,Capt. Matthew Garth,11422,10017,0 +17467,Fiancee,11159,1749206,55 +17468,Helen Rollason,38006,119369,3 +17469,Carter (uncredited),15263,67767,20 +17470,Simon Bishop,2898,17141,2 +17471,Miss Lomax,11630,10981,7 +17472,Anton Felix Schindler,13701,1924,1 +17473,Greg,2990,29383,8 +17474,Tania,26252,94951,18 +17475,Allison's Father,2108,1073863,8 +17476,(uncredited),966,168101,18 +17477,Indian Woman,28466,1677002,23 +17478,Cal Cate,95743,171960,2 +17479,Rosa's Mother,99,962,5 +17480,Janice Tyson,12538,39464,4 +17481,Suslov,8665,41742,27 +17482,Barfly,43828,1106954,24 +17483,Housekeeper,88818,217906,15 +17484,Vet #2 - Miami Convention,2604,4890,26 +17485,Man in Bar,5917,1894163,51 +17486,Dr. Catherine Tomsky,10276,24293,10 +17487,Commisario,1902,25222,7 +17488,Virginia Kelly,108365,586,1 +17489,Himself,56235,223820,11 +17490,Robin's Secretary,6068,12110,12 +17491,Jonno,262,8400,26 +17492,Lady in the Theatre Box,11902,1698905,27 +17493,Richter Joseph Kern,110,1352,1 +17494,Train Conductor,42453,11764,15 +17495,Girl in Backseat,49410,154454,10 +17496,Gilles de Rais,10047,1925,4 +17497,Nurse (uncredited),15849,1367759,10 +17498,Sir Leonard Darwin,41166,11857,2 +17499,Dmitri,8665,55585,12 +17500,Mary O'Brien,7299,1639,2 +17501,Dennis,2640,33490,13 +17502,Rufus T. Firefly,3063,10798,0 +17503,Sister Felicity,14698,83758,8 +17504,Lt. Col. Wilcox USAF,10326,24535,7 +17505,Sheriff Barlow,54287,14834,10 +17506,Dr. Henderson,29067,2264,5 +17507,Billy Travers,11379,149995,21 +17508,Alice Park,41166,30364,1 +17509,Jen,11442,51798,4 +17510,Eddie Gibbs,15310,14545,6 +17511,Coroner's Deputy,22213,1080223,23 +17512,Detective Hardcastle,11001,4520,5 +17513,Matt Larkin,38982,37041,1 +17514,Cop,28047,154917,14 +17515,Nancy,14886,44038,8 +17516,Carl,10805,39780,15 +17517,School Teacher,12584,117426,15 +17518,Old Man Longman,71067,1348634,8 +17519,Red,22023,8255,3 +17520,Daniel,201581,1183659,4 +17521,Sykes,6,11803,4 +17522,Extra (uncredited),32049,1502539,47 +17523,Lily 'Lil',28134,3127,6 +17524,Stan,47574,1762314,4 +17525,Dexter King,24077,4785,0 +17526,Girl at Bar,93350,1457452,24 +17527,Dickie Diamond,19157,84212,1 +17528,,18919,136797,1 +17529,City Editor (uncredited),15,940329,42 +17530,Cadet Bryan,11008,67786,6 +17531,Dr. Solana,7305,1475768,35 +17532,Hsiao Yen,25538,555377,6 +17533,Bus Driver #1 (uncredited),3078,4303,9 +17534,Salesman Stig,24405,923,6 +17535,,28134,19,10 +17536,3rd Reporter,1924,176093,36 +17537,Ann Wagner,31671,15753,2 +17538,Mayor Klein,43143,189827,6 +17539,Shelly,764,11465,4 +17540,Don Altobello,242,3265,5 +17541,Det. Deimos,635,3201,14 +17542,Purvis,23114,95757,19 +17543,Katie,53150,147593,2 +17544,LA Banker,524,1183497,44 +17545,Police Sergeant,12506,186070,17 +17546,"Ralph ""Papa"" Thorson",5922,13565,0 +17547,Ruth Fowler,1999,5606,1 +17548,Ralph,9717,28416,7 +17549,Restaurant Owner,9032,171986,17 +17550,Sandra Lopez,121940,57197,6 +17551,Lisa Clark,9776,59154,6 +17552,Girl on Streetcar,12584,102448,14 +17553,Handy Strong,11697,106506,16 +17554,Detective,21626,1235485,7 +17555,Dr. Highwater,38950,1275,9 +17556,Dancer in Haiti Number (uncredited),18646,149018,11 +17557,TV Journalist,2637,27684,12 +17558,Yu Zhongliang (child),47694,554856,11 +17559,Dispatcher,20242,1191434,20 +17560,Rapper,10847,1077738,19 +17561,(uncredited),5998,69,25 +17562,Cop,16938,1228171,26 +17563,Dick,46986,8197,25 +17564,Michael 'Flash' Turner,29475,99360,7 +17565,Sheriff John Doggett,31306,7470,4 +17566,Villager,3035,954129,24 +17567,Eli Cash,9428,887,5 +17568,Detective,169,87401,29 +17569,John Longridge,37969,178884,1 +17570,Grandma Rosy,21032,6199,11 +17571,Red Model,34838,147015,1 +17572,Count Helldorf,68569,1646,2 +17573,English Judge,10047,1715,9 +17574,Buck Langhorn (uncredited),11697,347770,70 +17575,Winnie the Mackerel,15506,78294,14 +17576,Male,9296,133357,12 +17577,Prof. Etienne Lafarge,41516,56924,4 +17578,Kelly,12764,19902,14 +17579,Triscuitt Messmer,24795,13644,13 +17580,Old Aram,2428,5833,28 +17581,Orlandini,91076,76526,11 +17582,Fish Driver (uncredited),15,1187947,114 +17583,le père Crompton,78256,38999,5 +17584,Josie Hemphill,78373,34486,4 +17585,Jip,11129,42604,0 +17586,Legal Secretary,32331,1514927,13 +17587,lui-même,64567,1006139,8 +17588,Morgan La Fey,30584,106564,4 +17589,Selma Lidz,52856,1533,0 +17590,Natalie Brandston,15489,62760,9 +17591,Alfred Battling Butler,51371,102327,4 +17592,Liz,18683,1680226,26 +17593,Piggy,10847,61030,2 +17594,Crysta (voice),13225,20767,1 +17595,elle-même,64567,35137,6 +17596,Man in Restaurant,1859,148402,39 +17597,Stamper,714,10744,5 +17598,Stephen Ryan Parker,11531,69750,4 +17599,Uniformed Cop at Bar,2144,77597,10 +17600,Claire Phelps,954,4885,2 +17601,Mr. Frauenfleder,27681,1176972,12 +17602,(uncredited),299,97999,22 +17603,Larry,277726,83721,4 +17604,Middle Ayla,13853,44711,8 +17605,Jim Hawkins (voice),9016,24045,0 +17606,Capt. 'Ace' Owens,935,10657,13 +17607,Jacob Anderson,21027,15968,2 +17608,Reporter 1,10873,549499,13 +17609,Little Indian Girl (voice),9023,1057324,11 +17610,Lt. Commander Geordi La Forge,193,2390,3 +17611,Lt. Ned Forsythe,26593,6916,14 +17612,Colonel Yin,12764,10345,1 +17613,Hattie,11593,17488,16 +17614,Willie Shearman,11313,544059,11 +17615,Worker,10586,1556203,10 +17616,Nurse,1073,941147,8 +17617,Customer Dante,10611,216140,11 +17618,Sailor,38509,120583,5 +17619,Ronnie Stover,118991,13548,1 +17620,Diner Waitress,18621,944614,8 +17621,Psychiatrist #3,1647,126652,24 +17622,Benny Balls,43089,129271,7 +17623,Lt. Commander Data,193,1213786,2 +17624,Bikini Girl,8467,1073208,34 +17625,Hawker,22023,124131,14 +17626,Baronin v. Eggersdorff,43596,13897,4 +17627,Screaming Skier,17692,1296382,25 +17628,Frank,12639,4307,4 +17629,The Toxic Avenger (voice),15239,555078,22 +17630,"Stella, the receptionist",12614,17479,12 +17631,Harry Thompson,42218,19782,11 +17632,Junior Healy,28597,68209,1 +17633,Henrietta Knowby,765,11756,7 +17634,Gina,194,2411,11 +17635,Marcie,19324,42556,9 +17636,Mrs. Singleman,37247,8495,10 +17637,Narrator (voice),11516,20030,1 +17638,Leonora,31911,18750,1 +17639,Dr. Bud Chantilas,8870,28641,5 +17640,Sewer Monster,6978,553750,26 +17641,Tony Lacey's Girlfriend,703,97352,16 +17642,"Bellows, defense attorney",25673,8632,5 +17643,Druggist,41357,160969,6 +17644,The Sergeant,26761,95735,7 +17645,Dancer #1,1497,1456505,43 +17646,Maria Rosa,61939,55029,2 +17647,M.C.,3537,32396,12 +17648,Vittorio Minardi,38715,592841,4 +17649,Hank Chilton,23223,1053980,6 +17650,Frank,28176,3041,12 +17651,Herr Vogel,3035,29817,7 +17652,David (voice),19042,21402,12 +17653,Signaller,524,96901,25 +17654,Aguilla Beckersted,18282,55194,8 +17655,Harold Abrahams,9443,29068,0 +17656,Coroner,47886,100820,13 +17657,Medusa Johnson,24828,9364,5 +17658,Thomas,2428,96165,47 +17659,Charles Lee Ray/Chucky,10585,1370,3 +17660,Richie,9423,92309,5 +17661,Reporter (uncredited),34106,121122,78 +17662,Employee of Nankai Salvage Company,1678,1482288,14 +17663,Cynthia,11446,61904,3 +17664,Referee,11307,18776,9 +17665,Francesca Corleone,242,1169887,30 +17666,the bellboy,24005,104631,12 +17667,Minor Role (uncredited),2897,114835,266 +17668,Teen on Midway,38775,121369,11 +17669,Mr. Fix,2897,29520,5 +17670,Politician,25430,1234560,31 +17671,Police Officer 4,16235,80157,23 +17672,Pub Man,153141,1221064,20 +17673,Donnie Smith,334,3905,1 +17674,Barbara Randolph,24831,102449,12 +17675,Mayor Dale Levander,379,5172,9 +17676,"Walter, Security Guard",9296,1264610,28 +17677,Antonio Vizintín,7305,52420,4 +17678,Pete,14534,76989,8 +17679,Rosalie's Mother,56162,558990,3 +17680,Stella,753,11146,10 +17681,Fallon,709,58860,23 +17682,News Anchor #1,2637,27691,20 +17683,Police Chief Aloysius,11576,21510,23 +17684,Terrence,9613,12642,4 +17685,Nonno,62394,2505,1 +17686,Mrs. Ella Evans,29239,2780,6 +17687,Gravedigger,2107,8872,11 +17688,Mother Joseph,18694,76980,3 +17689,Catholic Priest,10003,188468,17 +17690,Janet Streeter,29444,59789,4 +17691,Cindy,15256,11661,3 +17692,Sir Anthony Ross,42453,39954,0 +17693,Colonel,2721,11216,13 +17694,Coroner,20242,122090,15 +17695,Sorella Renato,10867,553194,28 +17696,City Official at Parade (uncredited),220,138092,44 +17697,Rivière,10436,378,5 +17698,Peter Bowman,11983,52,2 +17699,Rita Robbins,9099,21104,3 +17700,Ben Wilmer,278939,21523,5 +17701,Hodges,11607,130581,8 +17702,Girl with scar,11159,1239068,12 +17703,Ike Graham,4806,1205,1 +17704,Fred Moore,215373,28641,1 +17705,Danny Ocean,299,4347,0 +17706,Tim,15943,83414,2 +17707,Hans,43143,1219992,7 +17708,Beast (voice),10020,15048,1 +17709,Nemo (voice),12,12,2 +17710,Uraia,29743,104807,2 +17711,Bleeding Soldier,11008,15537,7 +17712,Henry David ‚Doc‘ Levy,10518,6355,2 +17713,Nathan,4825,4347,2 +17714,Southern Backer,522,39430,39 +17715,Steve Whitney,21352,130935,5 +17716,Daskal,15267,10477,0 +17717,Background Dancer,18736,143335,41 +17718,Rinaldi,29938,105292,5 +17719,Milan,9589,1728659,19 +17720,Mitzi,18691,21459,9 +17721,Phil Terragarossa,49365,41247,1 +17722,Tarek,118098,4031,9 +17723,Steer Roping Sequence,5917,1894177,64 +17724,Man Listening to Speech,25430,126836,51 +17725,Giant,41823,5281,1 +17726,Ellie Banks,20758,7639,1 +17727,,10400,1393353,59 +17728,Abraham,2525,862,4 +17729,Bill Watson,694,72742,9 +17730,Thomsen,102,1024,7 +17731,Wally,24795,1212249,11 +17732,pan Žlábek,18939,83956,6 +17733,Police Sergeant,11576,105804,19 +17734,Boris,43828,39801,2 +17735,Burnham,4547,2178,2 +17736,Cafeteria Worker,10950,1836338,35 +17737,Maria,22398,4433,6 +17738,Mrs. Yamamori,34326,228549,6 +17739,Wade,53150,62590,9 +17740,Headmaster Hargrove,796,52188,18 +17741,Paraplegic #3 - Miami Convention,2604,159056,72 +17742,Detective Sandra Cassidy,12103,18285,5 +17743,Alice's Father,10326,44792,11 +17744,Dr. Jeff Cooper,11215,9880,1 +17745,Man at Party,3595,142261,33 +17746,Waldman's Secretary,3035,30198,25 +17747,Baronin Kubinyi,29471,1875080,14 +17748,Le Vasseur,10303,1076201,12 +17749,Cal Cooper,16643,71198,3 +17750,Madame Yu,146,1627,9 +17751,Cathy Long,262,3665,4 +17752,DeJesus,14372,96442,7 +17753,Seth Gecko,755,1461,0 +17754,Marie,102,4458,3 +17755,le flirt,77056,33997,2 +17756,Osborn,26261,2055,3 +17757,Larry Flynt,1630,57755,0 +17758,Agard,15263,8260,11 +17759,Mitchell Gant,10724,190,0 +17760,Sally,28384,351,2 +17761,Gorgeous Gus,41160,20766,1 +17762,Capt Yang Chien Hua,11134,1620,1 +17763,Gigi,26299,1381136,12 +17764,"Gwen, Age 12",32872,84613,24 +17765,Stretch,655,1482975,7 +17766,Jean Moulin,52366,23724,2 +17767,Ange,12454,72317,17 +17768,Governor Leach (uncredited),34106,590550,138 +17769,(uncredited),5998,28059,19 +17770,Staedert's Technician,18,1857446,91 +17771,Stewart's Mom,31586,203898,29 +17772,Young Simon Templar,10003,1810376,15 +17773,Donald Martin,17889,923,4 +17774,Henry,8494,55271,6 +17775,Lt. Commander Data,201,1213786,2 +17776,Innkeeper (uncredited),12311,29817,32 +17777,MacClannough,197,2468,8 +17778,Mark,18317,17483,2 +17779,Don Corrado Prizzi,2075,21282,3 +17780,Randall,17464,81902,10 +17781,Denise Willis,2662,18662,4 +17782,Waiter,12614,14107,6 +17783,Mission Controller,36797,1466402,10 +17784,(uncredited),29263,1409195,19 +17785,Darla,10897,148996,2 +17786,Cab Driver,1647,285269,11 +17787,Server #2,31005,101776,8 +17788,Ellen,30943,101396,8 +17789,Man at Health Food Restaurant,703,136220,24 +17790,Marty,49792,27813,9 +17791,Lara,1924,13326,13 +17792,"Hank, the hotel desk clerk",26593,30299,20 +17793,Captain Neweyes (voice),18890,83786,2 +17794,Edgar Hull,5998,47170,5 +17795,Hardware Store Clerk,11576,89735,51 +17796,Albert Ianuzzi,14550,52304,3 +17797,Wagner,12101,134613,15 +17798,Porter Ricks,36355,57147,1 +17799,Aunt Spiker,10539,34901,2 +17800,Isot Kilian,35263,1557959,9 +17801,Raider,46924,175154,26 +17802,Kelly,36094,17495,3 +17803,Puppet Camille / Elsa,26954,554044,12 +17804,Sheriff Dix,21866,33544,8 +17805,Greg Janello,10862,3417,4 +17806,Clear Rivers,9532,17303,1 +17807,Fred Gable,44233,190483,6 +17808,Birdy,11296,8654,0 +17809,Middle Age Woman,13105,14551,15 +17810,Sue's lady in waiting,11645,1484310,18 +17811,Vasily,8665,55586,13 +17812,Manager,49410,1080641,17 +17813,Mugger,1924,1681421,49 +17814,Clem Willets,18551,157994,5 +17815,Jack Pulford,12584,39753,5 +17816,Andrea,31044,1729783,30 +17817,Dr. Forrester,30875,29433,8 +17818,Jane Aubrey,10390,11164,1 +17819,Danny Pennington,1498,1356289,14 +17820,Rosa's Father,99,965,9 +17821,Gordon,11259,32656,13 +17822,Magneto's Father,36657,115856,13 +17823,Star,47715,232879,4 +17824,Fred Shuster,28047,12799,4 +17825,Flying Cop,18,62498,46 +17826,Randy,44932,129668,11 +17827,Theatre Owner (voice),29204,3418,7 +17828,John R. 'Jack' Santo,28577,101878,16 +17829,Mr. DePinna,34106,29601,10 +17830,Eramus,39578,1905,0 +17831,Megan,17170,12967,5 +17832,Sammy,24254,62036,3 +17833,Man at Railroad Station,1859,123573,30 +17834,Bernie,44800,568531,13 +17835,Bill Griggs,10972,925,5 +17836,Viola Kelsey,13681,23882,6 +17837,Pongo,12230,8229,0 +17838,Jamie,11361,21320,1 +17839,Dave Novotny,9451,88949,4 +17840,Gary,13411,88702,13 +17841,Charles-Henri,52366,32514,5 +17842,Tourist,27145,1752378,9 +17843,Gypsy's Wife,229,34213,37 +17844,Mary,23069,186336,1 +17845,Karen,10394,9825,4 +17846,Romy White,9611,23931,0 +17847,Goffman,20992,119211,4 +17848,Momma Dean,9816,59575,12 +17849,Customs Officer,16351,1881244,10 +17850,Fatima,10805,54434,8 +17851,Detective Diaz,11001,17413,15 +17852,Governor's favourite mistress,12780,1346929,13 +17853,Himself,9403,1049208,7 +17854,Featherduster (voice),10020,6727,17 +17855,Fransson,8816,1778145,18 +17856,Jake,17133,131,11 +17857,Corpse,5,3133,20 +17858,,36047,149563,6 +17859,Bruno Bischofberger,549,2778,2 +17860,Mel,1811,19222,1 +17861,Carol the Photographer,10154,121757,7 +17862,Male Opera Singer,10436,1190703,8 +17863,,20645,1201023,22 +17864,Sæther,34582,76612,4 +17865,Alessandro,4133,34840,16 +17866,Emily,63105,94648,2 +17867,Count Alexis Rakonin,1859,19551,7 +17868,George Wydell,2662,27736,27 +17869,Miss Orchid,12780,73472,2 +17870,Townsman at Carnival (uncredited),220,166335,19 +17871,J.F. Villefort,11362,22063,3 +17872,Cop (uncredited),17889,10806,24 +17873,Soldier,2259,147101,13 +17874,Greg,9716,17343,12 +17875,Mr. Pimms,1995,7031,7 +17876,Darryl,786,1011253,30 +17877,Prof. John Ivarsson,42453,132982,1 +17878,Georg,5998,47172,7 +17879,Drummer (uncredited),11697,1064925,77 +17880,Laurie,11428,99914,9 +17881,Frank Roberts,38951,1133440,3 +17882,Roger,88863,36424,7 +17883,Obergefreiter Fritz Reiser,11101,39251,0 +17884,Ray Kreed,18002,5538,2 +17885,Bill Hughes (uncredited),34106,589217,72 +17886,Old gentleman,11830,30772,14 +17887,nannie,43438,565350,6 +17888,Officer Pat Kelly,50001,1052815,12 +17889,Hospital Director,2721,3833,21 +17890,Gold Team Thug,11535,930329,35 +17891,Slipknot Band Member,11535,92316,94 +17892,Rock Reilly,24405,13022,0 +17893,Young Maurice,11889,54447,5 +17894,Prisoner with Camera,10400,1399075,62 +17895,Tony's Mom,10708,58354,31 +17896,Susan Orlean,2757,5064,1 +17897,Ten Bears,10747,68301,14 +17898,Captain Atherton,9457,14325,6 +17899,"François, Claire's boyfriend",78657,54281,9 +17900,Tonie,349394,37923,3 +17901,Prince Borsa,31945,28641,1 +17902,Dr. Don Francis,2887,8654,0 +17903,Sgt. Parker,23730,13936,15 +17904,Wendy Judd,12618,5149,3 +17905,Karen Barclay,10585,2022,0 +17906,Lt. Martinez,4916,40481,8 +17907,Nurse Shelley,18111,9226,7 +17908,Jerry,10647,8767,4 +17909,Horse (voice),9598,1080207,8 +17910,"Dr. Edward Bliss, jr",8336,4688,0 +17911,Wanda Gershwitz,623,8944,1 +17912,Randy,2757,1635972,14 +17913,Howard,215373,58544,7 +17914,Sheriff Borden,85160,1770649,12 +17915,Rossi,327,5063,11 +17916,Mr. Speedy,96238,1069802,6 +17917,Cleo Marsh,32484,119898,5 +17918,,32093,103051,35 +17919,Mayor Marvin Harris,20678,7223,3 +17920,Elk Woman,14676,544597,11 +17921,Petrovich's Bodyguard,11535,1197789,70 +17922,Screaming Man,655,32461,12 +17923,Slider,744,2717,8 +17924,Minister,25430,1184115,38 +17925,Elevator Passenger #1,1637,1872803,49 +17926,Louis Cyphre,635,380,1 +17927,Det. Ray Cameron,15762,11784,3 +17928,Prof. Tababe's Assistant,1678,235386,13 +17929,Stephens,1637,2394,5 +17930,Mannequin,9716,1661591,51 +17931,Burton,19108,6718,7 +17932,Wordfest Party Guest,11004,104046,13 +17933,Darryl Kerrigan,13852,75889,0 +17934,,83562,1430048,14 +17935,Martin Brundle,10344,7036,0 +17936,Fournier,9717,116046,8 +17937,Young woman kneeling for the flagellants (uncredited),490,1186207,26 +17938,Moustache Cop,12079,19578,17 +17939,Ballerina Homunculus,229,2943,35 +17940,Aide #3,2637,27710,27 +17941,,20645,1117087,13 +17942,Tom Donovan,43342,110274,8 +17943,Clark (Kane's Nephew),20645,1205,0 +17944,Actor in Italian Film,25403,93722,13 +17945,Keshon Banks,35569,1039124,3 +17946,Police Inspector #2,269,11202,11 +17947,Wanda Baker,27993,94691,12 +17948,Fitzie,21132,87133,7 +17949,Theatre Usher (uncredited),244,96243,9 +17950,Russian Translator,11535,1239345,52 +17951,Grant Faraday,1073,4012,6 +17952,Tommy,22160,8656,6 +17953,Kate,11003,170306,10 +17954,Sheriff Jeff Lord,15263,50310,22 +17955,Joe,27526,60023,18 +17956,Michelle,14181,6751,10 +17957,Blizz,25006,92941,2 +17958,Ben Wheaton,27681,1176163,4 +17959,Neighbor,229,4302,28 +17960,Additional Voices (voice),9504,1229807,18 +17961,Yeti,38006,1471663,10 +17962,Tad,11374,129466,30 +17963,Sender Horowitz,44308,2040,2 +17964,Cigarette Girl,11535,1674978,81 +17965,Union General Who Gives Command to Cross Bridge (uncredited),961,10522,21 +17966,Waiter,522,156741,41 +17967,Edward Riley,38951,1133442,5 +17968,Elisabeth,46986,41773,35 +17969,Dr. John Carver,29959,35847,2 +17970,Bar Dancer,755,1830654,26 +17971,Teenage Girl,24452,114526,9 +17972,Chris McCormick,8869,15234,0 +17973,Zelma Bullock,15765,15899,6 +17974,Charles Xavier / Professor X,36658,2387,0 +17975,Himself,35569,177425,8 +17976,Anna Mae Bullock / Tina Turner,15765,9780,0 +17977,Shiori Satonaka,17962,82541,1 +17978,Mitch,19209,184498,2 +17979,Police Officer at Motel,11879,91039,11 +17980,Maj. Benson Payne,11008,22675,0 +17981,(uncredited),966,1221453,15 +17982,Inga,14369,72689,3 +17983,Lucas,43455,94339,9 +17984,Sharks Linebacker,9563,1023487,38 +17985,Mr. Luffler,21849,82782,10 +17986,Captain Dooley,38618,1035098,10 +17987,Turk,26603,2555,5 +17988,Semple,11302,124007,11 +17989,Townsman (uncredited),11697,1469572,28 +17990,Little Friend,11001,75323,13 +17991,Father Adamsky,16235,65508,0 +17992,"Yamaguchi, chief clerk",28273,213469,14 +17993,Receptionist,41645,588053,5 +17994,Groucho Party Dancer,9716,65142,39 +17995,Bartender,15256,880,0 +17996,Richard Rich,11011,52995,2 +17997,Lt. Jennings,11428,2,16 +17998,Admiral's Aide,17889,13994,12 +17999,Angenelle,32872,51864,30 +18000,Dot,12220,19415,12 +18001,,20645,1088028,21 +18002,Gen. Edward Byrne-White,27380,30125,7 +18003,Cpl. Peterson,60285,4316,9 +18004,Grocer,1058,20904,8 +18005,Angela's Hairdresser,2321,16119,12 +18006,Alex Tremulis,28176,13550,7 +18007,Commissaire Avion,2110,1677031,24 +18008,Empress Elizabeth Petrovna,31527,146141,3 +18009,Albert Harmon,13550,4976,10 +18010,Dex,20438,10825,0 +18011,Jon,114719,9045,1 +18012,Gus,108312,13310,10 +18013,Valéria,18079,96918,2 +18014,Tourist Dad,17692,33952,32 +18015,Beverly Wilson,26149,20318,16 +18016,Hortense's Brother,11159,1216607,10 +18017,Mike,43915,23910,5 +18018,Bass Player,43832,61676,14 +18019,Samantha Cavanaugh,13539,22290,0 +18020,,73642,3071,4 +18021,Rushmore,16314,13006,9 +18022,Woman Companion (uncredited),289,1276330,26 +18023,Chuck the Bartender,11873,1265395,16 +18024,Bret,8869,55547,7 +18025,Mrs. Schuster,38509,120598,22 +18026,Eddie,27526,98091,17 +18027,Inspecteur Meunier,26252,94943,9 +18028,Panhandler,31586,28008,36 +18029,Jonathan,12103,307982,14 +18030,Angela,39578,69777,6 +18031,,102,1170690,15 +18032,Halawi,46094,134770,8 +18033,Ted Archer,10436,2692,22 +18034,Producer,29376,30539,7 +18035,Sp4 Bill Beck,10590,6365,19 +18036,Captain Carefu,43089,129272,8 +18037,Narrated by (voice),13853,86343,9 +18038,Mr. Wyler,11397,90198,50 +18039,Eugene Felnic,621,42362,19 +18040,Woman on Train,167,1592619,24 +18041,Vargas,660,27321,15 +18042,Drano,29649,93602,7 +18043,Sergeant Steven Flowers,83562,177596,4 +18044,Major Davies,25037,1015081,9 +18045,John Laroche,2757,2955,2 +18046,Paula Whitney,21352,198700,6 +18047,,201724,141610,5 +18048,Yoyita,43775,1676701,7 +18049,Natalie Thompson,9308,74612,6 +18050,Man By Stream,33172,1086323,11 +18051,Mrs. Horn,31044,8535,33 +18052,Rosa Santiago,251,3424,10 +18053,FBI Waiter #4,4133,1588704,28 +18054,Fredrik,742,11050,15 +18055,Pancho,1480,94892,8 +18056,Dino Piza,245268,30264,10 +18057,Becky,29343,103577,14 +18058,Mark's Brother,14242,1502566,4 +18059,Harry Berman,814,1226747,25 +18060,Claire/Pink Boots,3172,31717,9 +18061,Minister of Finance #2 (uncredited),3063,1075172,15 +18062,Courtroom Spectator (uncredited),28577,97999,27 +18063,Betty Lee Parsons,32825,26142,3 +18064,Miss Adelaide,4825,41748,3 +18065,Purser,2984,105310,25 +18066,Hairdresser,2565,10556,12 +18067,His Tenant,31995,37870,7 +18068,Deputy Nick Ross,11361,1762965,12 +18069,Man on the stairs,38775,98164,17 +18070,Christopher,96238,4175,0 +18071,Texas Ranger,755,2536,10 +18072,Art Dodge,46029,3131,0 +18073,Wall-Enberg,29224,134376,12 +18074,Counselor Deanna Troi,201,2393,6 +18075,Jennifer Santoro,524,105623,23 +18076,Debutante,6038,172790,8 +18077,Susan,2021,140348,14 +18078,Rebecca Cooper,28902,57676,5 +18079,Nazi,525,122122,40 +18080,Drosophila,21620,87728,2 +18081,Rowland,11692,1039,6 +18082,Escort,12079,92866,9 +18083,Scientist,11639,64180,4 +18084,Silence's Father in Flashback,9028,1127104,25 +18085,Sabrina,27681,1176970,11 +18086,"""Round"" [Krugli]",20992,119215,8 +18087,Mooshka,49788,27570,10 +18088,,10867,1883265,36 +18089,Ömer,52556,1047658,5 +18090,Patient Ronnie,38772,45480,7 +18091,Evans,34615,1035098,10 +18092,Sean Davidson,25682,94330,0 +18093,Kenny,11446,109102,9 +18094,Sofie,38509,15441,3 +18095,Student (uncredited),105,553735,49 +18096,Hugh Fielding,64398,30709,3 +18097,Media Person,38950,81689,12 +18098,Frank Slater,40688,2778,4 +18099,Louise Purdon,46797,47742,5 +18100,Young Man,12454,29237,28 +18101,Krankenschwester,26958,230464,11 +18102,Mansfield,28736,5182,5 +18103,Archer Dolittle,3050,15531,1 +18104,Photographer,6068,1609210,21 +18105,Kitty,50512,18658,3 +18106,Ginger Culpepper (voice),11576,127640,25 +18107,Auguste Bruner,110,1356,2 +18108,Miguel Agilar,19050,90169,6 +18109,Vigo,2978,27585,12 +18110,Silas Green,12158,56902,4 +18111,Mr. T,4133,95024,19 +18112,Dr. Gilbert McKenna,41038,30453,0 +18113,Ian Jarvis,34615,123831,3 +18114,Lieutenant,124963,574029,10 +18115,Ezra Longman,71067,1381584,6 +18116,Mrs. 'Mac' MacHenry,16938,81055,4 +18117,Betsy Arnold,13539,6907,4 +18118,Tom Turner,38554,17141,0 +18119,Pagliacci,117,1886588,47 +18120,Photographer (uncredited),15,217770,92 +18121,Jules,9034,17040,6 +18122,Prison Warden,10796,92777,8 +18123,Dynamit-Harry,29224,139089,3 +18124,,43143,1801763,18 +18125,Paul Ryder,2750,311811,22 +18126,Becky,858,12929,4 +18127,García,43455,15666,3 +18128,Dave Edgerton,124821,54789,2 +18129,Gravis Mushnick,24452,30647,1 +18130,Ray Murdock,41852,15152,1 +18131,Paco,47112,145414,7 +18132,Fawn,15489,43903,18 +18133,Motel Clerk,49410,6718,9 +18134,Jack Buggit,6440,349,5 +18135,Prof. Kenneth Monnitoff,141,13526,17 +18136,Freda Lopez,79783,2233,1 +18137,Scott Janello,10862,15789,8 +18138,Steve Prefontaine,22256,8289,0 +18139,Schmidt,34106,985275,18 +18140,Family Member,11234,88907,11 +18141,Trask,857,59085,18 +18142,Officer Reese (uncredited),165,23967,55 +18143,Doctor Silverman,28902,9029,2 +18144,Schmitt,9438,172843,9 +18145,Extra (uncredited),2897,1208039,243 +18146,A Colleague,27145,97081,5 +18147,Andoheb,29239,30417,9 +18148,Doni,2608,4604,7 +18149,fornaia di Saturnia,29743,592529,13 +18150,The Dude,65134,14671,5 +18151,Judge,39310,90776,9 +18152,Hadji Amerislani,13411,53493,9 +18153,Debby Miller,45069,139,0 +18154,Jewel,10303,943150,4 +18155,Melissa Black,1813,17769,11 +18156,Dr. Sam Litvack,3050,31032,8 +18157,Jessica,10050,62525,16 +18158,Milly,24086,171213,5 +18159,Preservation Partier,8467,1853220,62 +18160,Reynolds,17339,58475,10 +18161,Sarah Bakersfeld Demerest,10671,109701,11 +18162,Nurse (uncredited),15,1221258,106 +18163,Nathan,21027,1146141,14 +18164,Sergeant Eric Young-Love,83562,37891,9 +18165,Col. Proctor Stamp,2897,8516,10 +18166,Express Agent with Box of Rabbits,43828,121247,40 +18167,Tess,96238,4888,10 +18168,Mrs Doughty,88818,185198,9 +18169,Piscora's Son (uncredited),220,98452,48 +18170,Landlord,9602,13936,5 +18171,Tina,39875,1077313,10 +18172,Reuben Smith,14522,2629,5 +18173,Warren T. Rat,4978,40351,5 +18174,Dealer at Rick's (uncredited),289,95054,18 +18175,Colleague Bob,11232,21882,8 +18176,Felipe Restano,7305,6164,23 +18177,Hashida,14587,550127,2 +18178,Lefty,41160,1231415,20 +18179,Lieutenant Commander C. Wade McClusky,11422,29312,14 +18180,Detective Pat Lakewood,10783,8984,6 +18181,Arvel,9816,59572,9 +18182,Dwan (uncredited),31947,4431,13 +18183,T-Bird,9495,1737,7 +18184,James Jarvis,34615,194,7 +18185,Q,714,9906,9 +18186,Prosecutor,2757,21142,16 +18187,Agnis Hamm,6440,5309,3 +18188,Resident,9613,124315,20 +18189,Pierce,6068,11160,7 +18190,Trixie Young,28597,101277,5 +18191,"Peterson, FBI",11001,97944,40 +18192,Hairdresser,22023,1577176,39 +18193,Capt. Hobart,18642,83807,8 +18194,Mum,23239,544969,6 +18195,Serge,166,19647,13 +18196,Sullivan,11186,152647,6 +18197,Toshio,8856,56121,6 +18198,Cowgirl,15310,1720929,17 +18199,Simon the Zealot,2428,9287,32 +18200,Glenn Latham - Electronics,5257,1352179,3 +18201,1st Lt. Charlie Hastings,10590,65715,12 +18202,Ben,15037,11868,20 +18203,Miss Tracy Milford,27993,99351,1 +18204,Giallo,29743,240665,4 +18205,Ethel,28902,161769,11 +18206,Dennis Reed,858,11076,11 +18207,Customs Guy,11001,19978,32 +18208,Policeman (uncredited),3309,121364,29 +18209,Commuter,169,1188761,16 +18210,Vanessa,166,1972,4 +18211,Madre,80713,132441,0 +18212,Lt. Nathanson,10351,10212,9 +18213,Stand-off Player,17692,364835,35 +18214,Shantz,11298,101784,13 +18215,Dora Lynn Tisdale,10050,62523,15 +18216,Vincent 'Alphabet' Languilli,10652,58819,0 +18217,Farmer,11145,11065,5 +18218,Sam,26299,10608,4 +18219,Jake Witzky,11601,69979,6 +18220,Extra (uncredited),2897,1467881,245 +18221,Buddy Black,11975,60508,10 +18222,Doug Hastings,10409,150536,3 +18223,Michelle Brock,11381,63681,4 +18224,Barry Rogers,9977,61340,6 +18225,Whitley,35696,1781337,9 +18226,Sparks,43832,14666,7 +18227,Sgt. Eugene Tackleberry,11895,57353,1 +18228,The Narrator (voice),10603,94979,13 +18229,Musician on Boat,76,1265423,24 +18230,Maggie,39875,100870,0 +18231,Havershaw,14136,23586,4 +18232,Louis Tully,2978,8872,4 +18233,Hispanic Man,26889,74839,2 +18234,Townsman at Carnival (uncredited),220,147492,24 +18235,Mark Williams,10973,54681,2 +18236,Airport Security #1,6068,1609241,32 +18237,Minor Role (uncredited),2897,983505,272 +18238,Young Tony 'Mouth' Donato,19150,84164,11 +18239,Alice Miller,31044,49422,6 +18240,Dott. Cusimano,10867,553178,9 +18241,Chunsheng,31439,548608,6 +18242,Spartanette #10,14,1503025,34 +18243,Max's Companion,954,10673,21 +18244,Laurent de Théus,11876,652,12 +18245,Visitor,9905,1739330,13 +18246,Esther,1049,15155,8 +18247,Restaurant Customer (uncredited),2757,1263449,22 +18248,Jack,32031,2048,3 +18249,Raymond Brock,41166,4391,7 +18250,Yussef,39176,591879,8 +18251,Captain of the Riga,10724,156586,44 +18252,Stifler's Mom,2105,38334,11 +18253,Le colonel,11915,34584,4 +18254,Bodyguard,117,1758644,39 +18255,Smokey Lonesome,1633,83411,9 +18256,Millicent Rogers,73969,1105177,7 +18257,Ralph,10303,518,2 +18258,Vulture (voice),9325,951459,10 +18259,Russian Sports Announcer,11535,1348733,62 +18260,Kay Grant,25862,13785,1 +18261,Liza,12220,14415,7 +18262,Mr. Laloosh,287,4048,11 +18263,John Winger,10890,1532,0 +18264,Maj. Barnes,15873,18647,3 +18265,Bartender,43828,1173173,47 +18266,Lillian Jordan,12220,71727,11 +18267,Sgt. Bill Henderson,14931,16119,7 +18268,Colonel's Wife,10925,153422,12 +18269,Uncle Tai,2140,21944,5 +18270,Tom Wilson / 'Scott Heyward',26299,34660,2 +18271,Baker,28345,985275,12 +18272,Ticket Agent,31586,9999,39 +18273,Goldwyn Girl,4825,34577,17 +18274,Union Station Woman,117,1886587,45 +18275,Bernadette,73067,57298,3 +18276,Jenny,78568,77191,3 +18277,Mrs. Hocheiser,42569,4970,1 +18278,Teenage Girl (uncredited),38509,40462,26 +18279,Wylie,13681,7677,11 +18280,Phil Simpson,11186,26283,2 +18281,Djuna 'D.J.' Berlin,9716,10871,2 +18282,Barmaid,5922,159030,11 +18283,Zako,10973,131057,6 +18284,Hugh Benny,949,9290,17 +18285,Roger Cobb,11415,45415,0 +18286,Young Dar's Father,16441,96913,6 +18287,Elizabeth 'Willie' Williams,14372,26666,2 +18288,Betty,3033,12139,3 +18289,Ben Harrison,9441,19977,4 +18290,Nick Szalinski,9354,1908,5 +18291,Commander William T. Riker,193,2388,1 +18292,Squirrel,78373,58019,3 +18293,Irene Kravitz,10632,21474,3 +18294,Miguel's Mother,9028,239658,32 +18295,Gloria Morin,422,5685,5 +18296,Victor,11235,116126,10 +18297,Bobby (uncredited),34106,1292673,44 +18298,Gunman in Desert,32049,1502517,36 +18299,Morgan Hess,2675,28042,2 +18300,Copy Boy (uncredited),15,31707,151 +18301,Judge Marshall Stevens,1624,18192,8 +18302,Saburo Naotora Ichimonji,11645,70134,2 +18303,Harry Kingsley,24767,1979,1 +18304,Paulie,1374,4521,2 +18305,Jim Piersall as a Boy,125413,115459,5 +18306,Tommy Ludlow,29143,1370,2 +18307,Lincoln Costain,80351,16896,0 +18308,Deputy Whitey Carter,26593,13875,11 +18309,Shredder,1497,60851,8 +18310,Cop in Elevator,11001,101266,29 +18311,Monsieur Arnaud,12716,145200,13 +18312,2nd Senator,1924,1536293,82 +18313,Helen Thomas Webber,11622,5606,3 +18314,Don Biderman,11313,61607,10 +18315,Ding 'Dingy' Bell,11576,1937,4 +18316,Paul Bannister,54287,76019,8 +18317,Prince Bolkonsky (as Wilfred Lawson),11706,106154,16 +18318,Steven,10326,49424,9 +18319,"Mrs. Sellner, The Social Worker",788,11718,9 +18320,Young Wanderley,24634,104349,9 +18321,Photographer,7514,52826,13 +18322,Dr. Jud Bellamin,41516,38232,2 +18323,Douanier 2,2110,1677015,16 +18324,Casino La Fantastique Sally,39939,644,14 +18325,Joey Janello,10862,26292,9 +18326,Reporter,117,1886581,26 +18327,Alistair Payne,10735,378,3 +18328,Capt. Alan Wilson,1377,8608,5 +18329,Research Assistant (uncredited),578,197925,21 +18330,Nikki,30547,1507177,34 +18331,Leo Ross,12236,26510,7 +18332,Alura,9651,12021,4 +18333,Waiter with Tray,32872,103957,52 +18334,Mayor's Aide,9563,1667819,49 +18335,Charles 'Chaz' Finster Sr (voice),14444,19546,10 +18336,Blanca Trueba,2259,1920,3 +18337,Al the Boss Angel,24795,1062,3 +18338,Dean Adams,9877,12642,6 +18339,Himself,1282,110393,3 +18340,Rita,10849,44830,8 +18341,Jane Turner,39176,13326,1 +18342,Bob's Doctor,9716,1661635,93 +18343,Lili des Bellons,12716,1729931,6 +18344,Dad,165,73337,17 +18345,Eric Kessler,11983,3757,7 +18346,Herself,8672,1101335,13 +18347,Dr. Bleeb (voice),18890,149275,9 +18348,Yuriko Oyama / Lady Deathstrike,36658,11024,10 +18349,Fat Annie,15506,78293,13 +18350,Cogsworth (voice),10020,28010,4 +18351,Gabe,11231,29977,13 +18352,Mother,47943,36513,4 +18353,Patient - VA Hospital,2604,4042,52 +18354,Train Engineer,15263,88649,18 +18355,Woman in Hotel Lobby,4338,106171,19 +18356,Himself,99008,201417,8 +18357,Ker,5491,2178,2 +18358,Alvin Gomsky,2075,81549,9 +18359,Rosemary Cross,11545,11616,1 +18360,Uni Kakamura,55731,239981,11 +18361,Ludmilla Vobet Drago,1374,921,4 +18362,Sam Boyd,32074,193,0 +18363,Eesh,21148,57598,8 +18364,matka Alžbětky,18939,83953,2 +18365,Nurse Edna,1715,13724,5 +18366,Bishop,10047,214644,8 +18367,Samurai,11712,96800,16 +18368,Capt. Blythe,12129,13640,5 +18369,Chancelor Alexei Bestuchef,31527,589728,9 +18370,Frank,935,1332531,12 +18371,Zuniga,21193,1684214,6 +18372,Trude Blorna,4762,39303,5 +18373,Jonah Baldwin,858,12928,3 +18374,Catherine,16550,53441,10 +18375,Dr. Suzanne Carter,20704,27106,8 +18376,Major General Patrick Pritchard,15497,13297,3 +18377,Libby,1903,3128,9 +18378,Murron MacClannough,197,2462,1 +18379,Gen. Paul Mireau,975,14564,3 +18380,Calvin,73247,13524,5 +18381,Boy in Hospital (uncredited),12102,16490,18 +18382,"Mary Wollstonecraft Shelley, also the monster's mate",229,2926,3 +18383,Little Boy Blue,25898,131442,8 +18384,Professor Yarnell,84735,1712343,7 +18385,Master Li Mu Bai,146,1619,0 +18386,Johnny Graziosi,10154,87707,13 +18387,Her mother Mrs Jones (as Frankie Raymond),32600,144012,4 +18388,Hikaru Sulu,157,1752,4 +18389,Elena Silva - Geoff's Lady Friend,43832,1468085,38 +18390,Lord Raymond Stockbridge,5279,4391,16 +18391,Donna - Red Team Leader,17971,6007,3 +18392,Examining Magistrate,2721,1352,2 +18393,Claudia,29492,103965,6 +18394,King of Sticks Hsu Ching Tien,11230,119457,15 +18395,Patrice Legendre,108365,191111,9 +18396,Inspector / Uncle Bill,38955,44922,8 +18397,Carl Heine Sr.,10219,1473,12 +18398,Rick Gassko,12309,31,0 +18399,Blonde Sales Clerk (uncredited),73969,1482612,20 +18400,Gas Station Attendant,26378,30530,21 +18401,Malakai,9816,59568,3 +18402,Irene Lily,21866,1218873,10 +18403,College Audience (uncredited),703,1434006,46 +18404,Devil,229,2942,17 +18405,Holly Sullivan,11003,15286,2 +18406,One of Mi's men,12481,1173757,14 +18407,Mrs. Callum,26761,3362,2 +18408,Coroner,1480,7664,18 +18409,Yuji Shinoda,10643,66152,0 +18410,(uncredited),29263,1610635,25 +18411,Dr. Cornfeld,11185,183653,15 +18412,Rudy's sister,19324,84477,6 +18413,Bob,32872,129759,34 +18414,Sandro Cenoura,598,8600,5 +18415,Kenneth Aubrey,10724,12517,1 +18416,Fireman,11442,1672959,27 +18417,Vanessa,9032,56128,2 +18418,History Master: Staff,14794,10654,21 +18419,Field Marshal Kutuzov,11706,29661,5 +18420,Minor Role (uncredited),2897,1420897,261 +18421,Dancer (uncredited),38715,1353811,10 +18422,Belle (voice),10020,62050,0 +18423,Singer,9659,1125225,10 +18424,Trixie (uncredited),28430,101510,17 +18425,Countess Elizabeth 'Lizzie',31527,1082774,7 +18426,Eudes l'avocat,17350,82187,6 +18427,Cook,11017,185154,11 +18428,Third Uncle,53879,95014,8 +18429,Ventura,38772,16119,13 +18430,Captain Jean-Luc Picard,200,2387,0 +18431,Stewart,12311,2928,18 +18432,Leo Carson,170430,17418,5 +18433,Sherrie,17692,1296375,17 +18434,Danny,17133,32362,3 +18435,Beach Girl,10208,3897,14 +18436,Budda,838,152572,19 +18437,Raj,24883,147119,1 +18438,Thug,3780,553430,46 +18439,Will,11236,1542811,11 +18440,Ned Hammerstein,33668,14574,3 +18441,TV Host,11654,178411,12 +18442,Andy,14587,2251,19 +18443,(uncredited),36245,1376923,24 +18444,,92384,1212639,3 +18445,Reporter,9296,154540,30 +18446,Jenny,9877,1815542,16 +18447,Richter Boudreau,118991,7036,0 +18448,Gossip,1859,1062837,16 +18449,First Latin Guy,11873,59399,29 +18450,Everett Lufkin,11975,177175,17 +18451,Hugo Dugay,32332,24967,0 +18452,Antonio,253632,3131,1 +18453,News Reporter,36658,80353,27 +18454,Anchor (voice),12,8783,16 +18455,Captain,10047,44509,10 +18456,Derelict,10805,1651541,7 +18457,John Shaft,493,6487,0 +18458,Graves,53150,94304,5 +18459,Officer 1,1924,14328,50 +18460,Amos Tucker,22328,83414,0 +18461,Joann Carlino,21721,1042911,5 +18462,Grandma Ryan,54405,1748940,11 +18463,Young Anna,50512,1352529,38 +18464,Dancer,11397,1773850,68 +18465,Warden Sutter,29492,29541,3 +18466,Girl Mike Hits On #1,15037,11826,17 +18467,Pvt. Noguchi,12516,110299,7 +18468,Jared,9032,60961,19 +18469,Receptionist at Haven,40952,7401,14 +18470,Father Donahue,61563,2516,8 +18471,Don Manuel Arriega,39435,130346,11 +18472,Male College Go-Go Boy,96238,1069803,7 +18473,Marlin (voice),12,13,0 +18474,Boar & Bristle Waiter,210092,58475,19 +18475,Joseph,36245,19632,1 +18476,,171857,177692,2 +18477,Tai Ling,15734,78696,5 +18478,Thompson,12311,131612,28 +18479,Himself; Cryogenics patient,12237,72170,1 +18480,Redl als Kind,29471,1805491,11 +18481,Cpl. Charles Hardin,12528,6280,1 +18482,Handjob,1811,33675,10 +18483,Richard Cunningham,10724,29714,27 +18484,Vampira's Friend (uncredited),522,1116140,65 +18485,Alice Lomax,1813,19239,4 +18486,,10400,41658,57 +18487,Sosa,31671,151908,6 +18488,,76996,75193,6 +18489,Premiere Audience Member,9296,1219648,22 +18490,Jane,18683,47699,3 +18491,Sarah Davies,954,5470,6 +18492,Brig. Gen. Theodore Roosevelt jr.,9289,4958,21 +18493,Dr. David Marcus,157,1795,7 +18494,Leland,10396,101658,10 +18495,Student,9475,1800180,36 +18496,Woman in Line,11397,1228788,72 +18497,Curly,10466,6541,6 +18498,Philip Train,3064,31070,7 +18499,Matson,17691,4960,4 +18500,Marty Parisi,242,46418,36 +18501,Villager of Tullymore,10162,1609665,42 +18502,Fiona Volpe,660,9921,3 +18503,Woman (uncredited),34106,141010,83 +18504,,124633,1049503,3 +18505,Carol's date,2898,36631,19 +18506,Nanny,25501,106068,9 +18507,'Uncle' Joe Grandi,1480,30719,4 +18508,Fireman in Parade (uncredited),2897,1019293,297 +18509,Paul,11374,90659,20 +18510,Scavenger,29698,135055,24 +18511,Hitman #2,379,1281535,30 +18512,Mrs. Ann Vickers,25673,82383,9 +18513,The Reverend Mr Beebe,11257,4001,4 +18514,Preservation Partier,8467,1853192,50 +18515,Cogan,16938,1504833,21 +18516,Alan Parrish,8844,2157,0 +18517,Pvt. Dutch Schultz,9289,6679,4 +18518,Jenny,40562,21165,7 +18519,Lazarre's Messenger,379,35022,31 +18520,Extra (uncredited),2897,557533,232 +18521,Theo,261246,1364323,12 +18522,Mrs. D'Arc,31083,83259,5 +18523,Rachel Louise Prescott,14295,39388,9 +18524,Matthew,65134,25129,3 +18525,Annie Robicheaux,36915,6473,1 +18526,Rachel,12112,4166,1 +18527,Cowboy (uncredited),11697,1003623,82 +18528,Nadia Vinogradiya,9423,36059,3 +18529,Dr. Ross,13549,140296,10 +18530,Passerby #1,1634,1075076,11 +18531,Aisha,25006,93009,4 +18532,Member of Ship's Crew (uncredited),244,153638,10 +18533,Marcellus,10549,3151,12 +18534,Avvocato Centorbi,10867,120657,6 +18535,Walsh,3092,2264,19 +18536,Warren Stantin,9717,16897,0 +18537,Bessie,108312,13308,5 +18538,Arlo Pear,29739,9309,0 +18539,Brian Everett,14295,4756,2 +18540,Author Displaced by Lucy (uncredited),22292,120440,12 +18541,Andrew,49963,23626,2 +18542,Bellman (uncredited),8467,1853265,77 +18543,Danny,47112,1234615,8 +18544,Laurence,12652,66031,10 +18545,Personnel Man (uncredited),3309,32221,38 +18546,Bronwyn,43266,88460,4 +18547,Red Elvis,24746,104004,5 +18548,Caroline Gooden,51955,932191,2 +18549,Daisy's father,2760,27912,3 +18550,Russian Hit Man,9404,24898,15 +18551,Jumper / Detective,23668,90441,7 +18552,Eduardo Prizzi,2075,1162,2 +18553,Knowles,38618,1246691,11 +18554,Lion (uncredited),2897,1647153,311 +18555,Josie,30547,80634,7 +18556,Florence,28732,2295,3 +18557,The Player,18971,3037,2 +18558,Ferris 'aka Maureen' Lowenstein,19150,7906,5 +18559,Villager of Tullymore,10162,1609662,39 +18560,Montgomery,1811,19223,2 +18561,Dominick Santoro,524,14332,22 +18562,Gangster (uncredited),117,1591740,51 +18563,Pastor John Martens,117500,239396,1 +18564,,52907,131449,3 +18565,Heidi,11635,3196,7 +18566,Sarah Willets,18551,120672,4 +18567,Christine,11472,1581387,20 +18568,Alluring Woman,267188,107048,6 +18569,Malena Scordia,10867,28782,0 +18570,Mrs. Henderson - Clerk at Telegraph Office (uncredited),21734,102002,30 +18571,elle,77056,251065,7 +18572,Professor,28387,1052883,9 +18573,The Guide,21193,1303569,11 +18574,Sweater Friend,8467,1832377,64 +18575,Maggie O'Connor,10391,326,0 +18576,Terri Jones,10611,230176,4 +18577,Rheba,34106,399224,13 +18578,Haggling Arab Monkey Seller (uncredited),289,120061,57 +18579,Braddock,11185,53584,4 +18580,Leutnant von Lensky,43596,590754,9 +18581,Leesha Mitchell,10354,175787,22 +18582,Big Indian,2453,106730,13 +18583,Comedian,215373,159810,18 +18584,Ida Wright,61548,233294,5 +18585,Porter,26949,55477,4 +18586,Narrator (uncredited),7305,6949,39 +18587,Dennis,2990,8656,7 +18588,Parliamentarian Oyama,1678,1113864,10 +18589,Buster Franklin,24679,65827,2 +18590,Tommy Banks,20758,6725,11 +18591,The Vicar,41969,183785,2 +18592,James,10539,1652305,15 +18593,Amelia,37936,28246,10 +18594,Beatrice Little,10137,94008,7 +18595,Robert's Rejected Girlfriend (uncredited),30308,83988,13 +18596,Doorman,95627,1552811,10 +18597,La Tante Josette,194,1376239,34 +18598,John's Father,24584,133033,17 +18599,Dancer,10603,1748068,39 +18600,Jim Clark,415072,19401,10 +18601,Chief NY Cop,18,17072,44 +18602,Signor Ferrari,289,4114,5 +18603,Dr. Jennings,26958,51755,2 +18604,Mick Travis,14794,56890,0 +18605,Dr. Harry Merton,40952,19511,23 +18606,McCurdy,29372,1083422,10 +18607,Lawrence Van Dough,11011,14101,1 +18608,Arkadi,48787,550752,3 +18609,Jason,11091,28472,2 +18610,,36047,19223,3 +18611,King Kashekim Nedakh (voice),10865,1749,6 +18612,Woman Passer By,73116,201499,8 +18613,Bill Graham,16938,12716,11 +18614,Phil Webster,15556,78729,5 +18615,Jean-Toussaint,60608,5418,6 +18616,Father Donnelly,10849,47137,11 +18617,Reg,9427,235361,12 +18618,Man Singing at Inquirer Party (uncredited),15,1295853,43 +18619,Fingerprint Expert,9882,82167,11 +18620,Lorraine Baines,105,1063,2 +18621,Doug,2291,4890,9 +18622,Michael,93350,32362,2 +18623,Martial Artist,8467,1662256,31 +18624,French Sports Announcer,11535,171946,57 +18625,Julie,20438,1514699,10 +18626,Christine 'Chrissie' Watkins,578,8610,7 +18627,Virgil,40555,124086,5 +18628,Jewell Ivy,42087,4431,0 +18629,Jenny,28736,101779,1 +18630,Pierre,8342,54626,6 +18631,Stick's Driver,8336,3911,4 +18632,S.W.A.T. Cop,1637,271738,24 +18633,Van Driver,22023,7070,43 +18634,Alex McSween,38765,15668,5 +18635,Alex Stratton,21060,87045,0 +18636,Undetermined Role,31995,1398493,34 +18637,Connie Fitzpatrick,60994,9029,1 +18638,Rochelle,24005,30274,4 +18639,Lord Chancellor,6038,162250,27 +18640,Superman / Clark Kent,1924,20006,0 +18641,First Werewolf,814,14471,10 +18642,Katie Crom,9296,1555351,72 +18643,Roy Labelle,125548,17859,4 +18644,Valentino,133575,7132,0 +18645,Darby Reese,24936,6164,3 +18646,New Yorker (uncredited),1578,177205,35 +18647,Zip,95627,5723,9 +18648,Usher #1,12101,14671,14 +18649,Will Hamilton,220,2755,6 +18650,Juanita,11017,77226,8 +18651,Gaetan 'The Mole' Moliere (voice),10865,35219,1 +18652,Suzy,858,12931,7 +18653,"Jenny, pool victim",47886,1683932,16 +18654,First Sgt. Towser,10364,14064,14 +18655,Peter,27526,98084,7 +18656,Andrew Strieber,28774,114630,5 +18657,Man at Bar,6068,1609272,55 +18658,Ed Grant,577,4201,7 +18659,Local Chairman,25430,108275,39 +18660,Keith Nelson,15143,7036,0 +18661,Rennie,10162,1609643,18 +18662,Howard Hoffer,43316,35847,11 +18663,Annie Greenwood,1634,18261,4 +18664,Skinhead,105,11673,13 +18665,The Earl of Dorincourt,23114,2438,2 +18666,Charles,30994,1878510,12 +18667,Boss Mi's son,12481,240168,5 +18668,Francesca Curtis,13505,1245,2 +18669,Laetitia,60608,150901,7 +18670,Stash,49788,112740,4 +18671,Extra (uncredited),2897,1178611,73 +18672,Diaz,11302,237034,6 +18673,Abby Arcane,19142,58691,1 +18674,Camp Counselor,9820,152796,9 +18675,,18919,1320286,11 +18676,Ian's Gran,2750,1651690,43 +18677,Nathalie,11103,6941,1 +18678,Max,108312,30048,9 +18679,Extra (uncredited),2897,1231235,192 +18680,Sal,167,1986,9 +18681,Medieval Times Host,9894,43120,9 +18682,Rogue's Boyfriend,36657,81097,14 +18683,Young Rubin Carter,10400,1393328,20 +18684,Crewman,210092,185111,14 +18685,Moe Flatbush,41823,1241,4 +18686,Sante,10154,1701137,14 +18687,Stella Baines,105,1070,9 +18688,Brig. Gen. Edwin P. Parker Jr.,9289,29655,29 +18689,Hector,13369,58565,10 +18690,Zahra,21334,110696,2 +18691,T. Ray,9457,57252,10 +18692,Stacy,12121,7906,4 +18693,Krishna Ravindra at Miami Airport,14931,16297,5 +18694,Becky Martin-Granger,2758,11870,12 +18695,Darlene Dodd,21118,20162,0 +18696,James 'Thunder Jack' Johnson,11888,5563,2 +18697,lui-même,64567,951580,31 +18698,Lily,25994,47404,2 +18699,Captain William Boone,10714,2130,1 +18700,Hone,14811,1601895,23 +18701,Marta Land,10207,153694,7 +18702,Theatre Manager,522,97856,53 +18703,Vocalist,22213,1080224,25 +18704,Malcolm Wallace,197,2472,12 +18705,Himself,75,523,9 +18706,Alex Chance Browning,9532,50398,0 +18707,Zack Gregory,6951,48810,3 +18708,Jo Bob Priddy,29786,30044,4 +18709,Artie Piscano,524,7168,15 +18710,Diane Barnett,1850,5378,13 +18711,Molly Craig,9555,57951,0 +18712,Iris Myandowski,15592,1779785,14 +18713,Michelle Ziegler,10354,1980,9 +18714,Ray Stern,9403,728,2 +18715,Field Marshal Erwin Rommel,11202,32021,8 +18716,Officer Hanson,15944,9866,9 +18717,Hugo Barrett,42987,21605,0 +18718,Flo,95627,1006135,11 +18719,Sara McDowel,2107,21618,2 +18720,Major-Domo,16176,75781,8 +18721,Dr. Himmel,99008,8516,3 +18722,Phil Fazzulo,53685,56857,1 +18723,Colin,70581,934,0 +18724,Fat Lady,11902,1698899,20 +18725,Carlos,26252,94937,1 +18726,Verdell Weasel Tail,50123,15439,2 +18727,Jim Phelps,954,10127,1 +18728,Rachel,116904,1064877,1 +18729,Nathan Starkey,10409,220837,11 +18730,Promoter,1497,1221149,46 +18731,Teen at Crosswalk (uncredited),21734,83621,23 +18732,Hanne,102,4459,5 +18733,The Prophet,90762,225704,2 +18734,Lieutenant Willoughby,10568,108093,5 +18735,Very Dumb Football Player,4011,62032,22 +18736,Rene Valdez,47942,16523,11 +18737,Matt,29938,105288,1 +18738,Agent,28,65553,22 +18739,Catherine Boyd,11777,5344,1 +18740,Mason,5491,559971,14 +18741,Boris,17711,1206,1 +18742,Prospective Bride Who Operates Crane (uncredited),32600,987830,12 +18743,Himself,61563,36424,0 +18744,Man with Bucket of Greens,11230,18899,10 +18745,Bartender,37936,58169,19 +18746,H. G. Wells,24750,56890,0 +18747,Gary's Nurse,36797,180527,16 +18748,Sheriff Ritter,10866,29862,13 +18749,Margo Channing,705,3380,0 +18750,Käthe Reichel,35263,49018,2 +18751,Wes,16938,180822,20 +18752,Robert Aziz,23599,78111,7 +18753,Physics Professor,11521,33489,11 +18754,Rik De Visser,58886,222922,14 +18755,Vlad,34223,1413411,7 +18756,Frank Perry,10390,18999,4 +18757,Striking Bear,14676,19567,15 +18758,George,14370,78494,9 +18759,Jeremy Lewis,15321,7026,0 +18760,Police Sergeant,15310,129663,14 +18761,Reverend Watkins,39428,19489,10 +18762,Gert,25934,106628,14 +18763,Harry Havemeyer,9475,50402,11 +18764,BYD,24936,63471,11 +18765,Little Billy,9464,1733421,9 +18766,Woman Selling Her Diamonds (uncredited),289,94325,71 +18767,Crunch Gwiazda,95627,5170,3 +18768,Teller,32049,1502511,28 +18769,Claire,47943,48577,2 +18770,Governor Cheng Pak Fong,12780,65959,5 +18771,Miss Catharine Alan,11257,940412,7 +18772,Larry,17168,12123,14 +18773,Valérie Sergent,102461,19163,0 +18774,Carole Bennett,14136,46944,1 +18775,Timmy,22023,1577161,24 +18776,Hoodlum (uncredited),117,203907,50 +18777,Oda Mae's Sister,251,3422,5 +18778,Katrinka Muggelberg,15943,166994,4 +18779,Jim Minty,35292,10983,4 +18780,"Mike, Laborer #3",46986,1535172,18 +18781,Manny Huerta,19176,21708,9 +18782,Principal Todd Moss,27993,40009,0 +18783,Claire,161795,1222446,4 +18784,Alec Ramsay,24883,81544,0 +18785,Richter,68569,1865,8 +18786,Joseph,1049,13936,9 +18787,Vivian Thompson,28902,3223,3 +18788,,9343,1101317,14 +18789,Meg Altman,4547,1038,0 +18790,BB,88863,61981,6 +18791,George McFly,105,1064,3 +18792,Baron v. Eggersdorff,43596,12325,3 +18793,Lieutenant Dekker,9593,1735,4 +18794,Peter Romano,17708,2969,4 +18795,Ellen Brody,578,8607,3 +18796,The Pigeon Lady,772,18345,17 +18797,Greigori,3036,151797,12 +18798,Tor Johnson,522,1568976,59 +18799,Dom Paulo,46924,1210,31 +18800,Florine Werthan,403,5699,3 +18801,,422,550266,14 +18802,Dennis,49792,4724,0 +18803,Christy Masters,9611,19455,4 +18804,Shirley (uncredited),21734,567800,24 +18805,Nick 'Goose' Bradshaw,744,11085,3 +18806,Willow John,62394,6804,3 +18807,Young Vincenzo Cortino,9835,131947,6 +18808,Morgan,23668,1004,2 +18809,Louis Dega,5924,4483,1 +18810,2nd Secretary,1924,66613,45 +18811,Claire,28169,1073042,3 +18812,Arnie,11472,176340,14 +18813,14-Year-Old Girl,10657,1232205,22 +18814,Peter Burton,13571,3036,0 +18815,Co-Ed #1,1647,62525,9 +18816,Mary's Mother / Lilias Craven,11236,1350,4 +18817,Beta Zombie,15762,11419,21 +18818,Scotto,11185,31007,6 +18819,Alvarez,46924,3061,12 +18820,Mrs. Michalak,796,11872,10 +18821,Marie,78657,19370,7 +18822,Nurse Tanya Peeler,9889,87039,11 +18823,Video Game Boy,165,109,9 +18824,Glenn Tyler,32825,21457,0 +18825,Mercedès Iguanada,11362,52776,4 +18826,Carlson,9609,18262,6 +18827,Manfred Rommel (uncredited),9289,36028,38 +18828,Rachel,91076,171379,6 +18829,Captain Ivan Drago,1374,16644,7 +18830,Bruno,15144,1717650,30 +18831,Van Buren,4478,37439,8 +18832,Hunter at Hermit's Cottage,229,148384,50 +18833,Drunken Writer/Mr. Hardy,17170,4765,3 +18834,Landlord,215373,1203319,13 +18835,Lady in Elevator,1624,21858,10 +18836,Vic Dumask,505,6915,7 +18837,Dr. Hockstader's Secretary,14698,988612,10 +18838,Shuttle Pilot,14370,4319,6 +18839,Eva Lingstrom,13550,10362,11 +18840,Cliff Scully,887,78792,13 +18841,Michael Stenning,28430,189862,11 +18842,"Phil, Matt's Thug #1",10406,64715,9 +18843,Ruth Schmidt,33016,39775,15 +18844,Trillian St. James,9457,10696,1 +18845,Store Owner's Wife,12129,1172830,13 +18846,Mr. Scroggins (uncredited),22292,132701,17 +18847,Megan,12499,82988,15 +18848,Townsman at Carnival (uncredited),220,1511232,30 +18849,Jack Colton,10303,3392,0 +18850,Ed Thompson,12309,72056,3 +18851,Jean-Baptiste Emmanuel Zorg,18,64,1 +18852,Border Guard/Chet Pussy/Carlos,755,11159,6 +18853,Monday,20287,8396,13 +18854,Maureen McGill,48287,13023,11 +18855,Student,11397,1773872,88 +18856,Susan Lowenstein,10333,10400,1 +18857,Projectionist,10373,9191,4 +18858,Hunter Morlock,2135,12371,19 +18859,Guest at Rick's (uncredited),289,1072437,101 +18860,le frère d'Amélie Poulangeard,9317,585663,7 +18861,Paul Lardanchet,52366,39953,13 +18862,,44081,1371121,8 +18863,Freddy,786,11676,21 +18864,Aldarico/Attila,29743,55912,0 +18865,Ice Man,9272,955406,6 +18866,Extra (uncredited),2897,1550460,55 +18867,John J. McKay,21711,19550,2 +18868,Ginny,42218,1476392,14 +18869,Jake Lingle,39771,152648,3 +18870,Hank Storm,20307,38560,1 +18871,Hotel Manager,18,1857438,80 +18872,Ray,525,7174,4 +18873,Philip Cromwell,10154,1292,4 +18874,Le facteur,36245,36914,13 +18875,"Johann Strauss, the Elder",52907,22600,0 +18876,,11876,1316261,19 +18877,Jack Walsh,9013,380,0 +18878,Barmaid,814,14466,4 +18879,Jimmy Dolan,46094,4724,0 +18880,Diana Barrie,26686,10978,2 +18881,Lieutenant Colonel Ben Gately,15497,10609,1 +18882,Chuck Noland,8358,31,0 +18883,Maurice,29355,1481,11 +18884,Jack Locke,28466,67764,2 +18885,Mrs. Sylvia Verloc,12684,528,0 +18886,Capt. Chester B. Hansen,11202,40551,2 +18887,Bernard Crawford,11899,40176,10 +18888,Grandma Helen,15144,41730,11 +18889,Peter,10909,151335,9 +18890,Karin,110,1354,3 +18891,Walter Payne,117,1273,6 +18892,Del Rio,2110,1620857,14 +18893,Cmdr. Korda,9404,1277938,9 +18894,Cassiel,795,6861,2 +18895,Tatsu,1498,953728,12 +18896,la mère de Raymond,52366,146210,12 +18897,Charlie Dickinson,922,5168,10 +18898,Toddler,9659,1466390,12 +18899,Mangalore Akanit,18,1857431,64 +18900,Vincent Van Gogh,12516,1032,5 +18901,Chipper,744,17304,12 +18902,Shooting Gallery Concessionaire (uncredited),220,89938,50 +18903,Sam the Sheriff,220,2753,5 +18904,Donna Elvira,9343,1758318,20 +18905,TV Sportscaster,9464,7166,7 +18906,Orderly,32093,1228104,24 +18907,Valerie Thomas,2757,3063,3 +18908,sarta,145925,1039476,16 +18909,Kathie Moffat,678,10159,1 +18910,John Felix,2984,29307,8 +18911,Uncle Willy,9059,102441,6 +18912,Cyan,10336,1072036,8 +18913,Seb,13965,76183,4 +18914,Sheraton,10847,1077731,10 +18915,Steve Kirsch,22160,3712,8 +18916,Jacquimo (voice),28032,74492,1 +18917,Big Emilio,755,931730,21 +18918,Cajun Truck Driver,11879,44054,9 +18919,Caithlin Dar,172,2079,10 +18920,Train Announcer (uncredited),117,6852,54 +18921,Gerry Austin,16124,79393,1 +18922,István Sors,17771,2983,13 +18923,Policeman #1,10866,552472,24 +18924,Beefy Tourist,11185,164416,11 +18925,Henry Villard,26949,60060,2 +18926,Murphy 'Murph' Dunne,525,7178,8 +18927,Bud's Mom,17496,571249,15 +18928,Man at Door,10866,154195,21 +18929,Ivy,3028,29711,3 +18930,Casey,14612,1038,1 +18931,Eddi Papasano,2887,110001,6 +18932,Lottie (uncredited),3309,11500,10 +18933,Toto,630,1179846,11 +18934,Doorman,9296,1744183,70 +18935,Linda,10805,91724,10 +18936,Grammy Hall,703,10561,30 +18937,Indian in Saloon,43828,113710,21 +18938,Campus Cop,210092,114946,20 +18939,Taro,8856,56122,7 +18940,Delphine the Hooker,69828,81726,3 +18941,Harry,9977,61348,16 +18942,Nebula,63105,40644,1 +18943,,281085,53646,5 +18944,Ace Hunter,27380,13473,0 +18945,Boy in Harlem,1813,303197,25 +18946,Doctor's Doorman,50512,741278,31 +18947,Alexander Gow,99351,11169,0 +18948,Lou Sherwood,43199,6577,2 +18949,Corbett's Bodyguard,5917,16659,15 +18950,Himself,262,3666,12 +18951,Jane,30363,140058,5 +18952,George Matthias,31342,15112,5 +18953,Catherine Holly,14698,3635,0 +18954,Mr. Musgrave,10909,101432,5 +18955,Private Stanley Mellish,857,6163,11 +18956,Lucy Edwards,3114,30559,15 +18957,Miss Crabtree,10897,589,4 +18958,Third Cab Driver,11576,2314,26 +18959,Ludovic Cruchot,11915,11187,0 +18960,La Tremoille,10047,45849,29 +18961,Dr. John Wiseman,29787,2283,6 +18962,Veronica,19348,1233888,9 +18963,George,22267,33299,10 +18964,,28171,1875122,9 +18965,Sandy Frink,9611,10697,3 +18966,Urudu,46094,75790,13 +18967,Chon Wang,6038,18897,0 +18968,Scrapper,41160,54014,6 +18969,Lt. Col. Podovsky,1369,782,3 +18970,Cmdr. Hikaru Sulu,154,1752,4 +18971,"Jacques, Mariette's Butler",195,30262,6 +18972,Ranch Hand,51802,1082452,13 +18973,Teri Lynn,59181,228958,2 +18974,Desk Sergeant,11001,93846,27 +18975,Psych Patient #5,11618,552097,20 +18976,Mary,29825,2229,1 +18977,Wally Richardson,35284,6890,4 +18978,Doctor,10364,3042,17 +18979,Charlie Cronan,12236,7180,0 +18980,Kato,17771,23937,6 +18981,Chiao Mei,12481,70332,1 +18982,Dr. Brent Cheevers,9426,12716,4 +18983,Shay Jennings,10534,61983,9 +18984,Det. Eileen McHenry,4986,21462,3 +18985,Horse's Sister,9427,1356549,29 +18986,Assistent #2,638,9311,34 +18987,Judy,125021,8436,1 +18988,Frankie,379,5170,7 +18989,Radio Mother,15489,80348,20 +18990,Annie Tsui,9404,120419,3 +18991,Le facteur de la concierge,194,1319824,44 +18992,Det. Doug Bigelow,40095,80868,1 +18993,Sheila,36047,60953,10 +18994,"Wilma Northrup (segment ""The Crate"")",16281,11782,1 +18995,Doctor Doppler (voice),9016,11076,2 +18996,Boy On Bike,33172,27120,13 +18997,Harold Wormser,14052,92809,3 +18998,Young Rhino,16417,1320522,8 +18999,Timothy,8391,20173,3 +19000,SSgt. Declan Patrick Coker,20287,85867,7 +19001,Mrs. Chatham,29355,2772,19 +19002,Trapper,12528,591,9 +19003,Nuclear Plant Worker,12516,96637,8 +19004,Cone,32059,4890,10 +19005,Marianne,12652,268997,9 +19006,Travis Cobb,10747,4080,10 +19007,Percy Shelley,229,2928,6 +19008,The Cockney Signora,11257,108620,8 +19009,Kazumi,27681,114930,9 +19010,Grandpa Martin Vanderhof,34106,17753,1 +19011,Steward,2984,1887358,16 +19012,Dick Cavett,703,10565,11 +19013,Inez Guerrero,10671,21151,7 +19014,Stage Manager (uncredited),21468,34130,15 +19015,Anna,10238,67521,2 +19016,Vaucouleurs' Priest,10047,40651,21 +19017,Corey Mason,13531,882,3 +19018,Seth Brundle,9426,4785,0 +19019,Charlie Humphries,11654,164276,6 +19020,Rizzo the Rat / Gill - Frog / Baby Kermit / Chicken / College Student in Audience / Dog / Lew Zealand (voice),11899,64180,3 +19021,Londoner's Wife,18683,1889101,16 +19022,Judd Travers,33660,6914,3 +19023,Beverly Landers,10050,12967,5 +19024,Rebecca,140519,3126,0 +19025,Bolek,38509,5168,2 +19026,Al Burnett - From NASA,5257,9657,1 +19027,Jennifer Kapur,4254,35743,3 +19028,Kai,2085,21354,3 +19029,Marvin Lucas,21711,1039,1 +19030,Waitress #1,8467,1853169,23 +19031,Ensign Kellogg,193,1368723,14 +19032,Lurch,2758,9631,5 +19033,Betsy Ernst,15556,21881,7 +19034,Sandy,31044,111907,47 +19035,Sir Harry Percival,11694,3364,7 +19036,Elias,890,14631,0 +19037,Breezy T.,22314,57686,4 +19038,Pagoda,9428,8690,10 +19039,Denied Area Security Guard,954,10212,22 +19040,Heather Duke,2640,19144,2 +19041,Marshall,17496,156653,5 +19042,Doctor Nikolas Van Helsing,11950,4965,12 +19043,Seaman Jimmy 'Red' Smith,2160,153427,12 +19044,Bouncer (uncredited),220,98052,33 +19045,Editor,25430,996704,22 +19046,Coast Guard Officer,13526,49832,20 +19047,Aunt Spendora,220976,30123,5 +19048,Janice Morrison,47329,19131,4 +19049,Kevin Williams,6951,2249,16 +19050,Françoise Beretton,166,1959,1 +19051,Italian VIP,11535,1674957,75 +19052,'Slag' Green,21828,75931,6 +19053,Toto,9260,2169,3 +19054,District Attorney,2990,29385,15 +19055,Man in Suit,9296,1234147,18 +19056,Caspar's Driver,379,1010,25 +19057,Miss Black,31995,47681,27 +19058,Puck,10491,12795,4 +19059,Mrs. Robertson,11428,74276,4 +19060,Mr. Harrison,16938,81056,6 +19061,Missy Wiener,11446,974425,6 +19062,Don José,43455,3381,1 +19063,Casals' Date,949,106714,49 +19064,Freddie Franklin,26661,29642,1 +19065,Moosh,524,1888773,41 +19066,Horseshoe Player,49410,102441,22 +19067,Luggage Salesman,2565,26094,5 +19068,Captain Hook / Mr. Darling (voice),10693,16421,2 +19069,Man Getting Off Elevator (uncredited),32600,10518,17 +19070,Josh,16980,35598,4 +19071,Lydia Mertz,577,2841,5 +19072,Corporal Dade,409,5483,17 +19073,Agnes,10003,1079978,18 +19074,John,33135,68527,2 +19075,"Maria, Sunny's Personal Maid",38718,93051,4 +19076,Coach,31586,62055,50 +19077,Guy in Crowd,11873,57597,11 +19078,Elena Mendola /figlia di Elena,11216,120152,4 +19079,The Toxic Avenger,28165,103861,1 +19080,John,11654,7487,1 +19081,Waitress,2565,22072,8 +19082,Gas Station Attendant,11298,42171,16 +19083,Thor,10603,21132,5 +19084,Dutch Banker at Cafe Table (uncredited),289,12153,66 +19085,Thérèse,1628,18218,3 +19086,Police Sergeant Pete Menzies,1480,33747,3 +19087,English General,197,104758,45 +19088,Marla Keyes,1999,650,6 +19089,Capt. Tony Nadal,10590,13657,9 +19090,"Old woman, pressing Camembert cheese",11830,227079,6 +19091,Lew Harris,21468,18678,6 +19092,Martha of Bethany,2428,24809,3 +19093,Sophie Binner,38715,1155601,6 +19094,Air Vice-Marshal Sir Arthur Coningham,11202,558445,14 +19095,Spock...Age 9,157,1829,11 +19096,Ed,37291,19208,6 +19097,Maggie Witzky,11601,49824,1 +19098,Detective Sergeant Ted Spencer,12684,29127,3 +19099,Terrorist,105,238572,26 +19100,Herself,8672,4959,2 +19101,Congressman Phil Burton,2887,43364,22 +19102,Diver,9296,1744176,60 +19103,Grandma Moses,10937,154901,9 +19104,Alison Stern,9403,1980,1 +19105,Taxi Driver,1859,29124,53 +19106,Nick Frescia,10396,6856,1 +19107,U.S. Army Ranger,9289,9208,70 +19108,Extra (uncredited),2897,1728594,198 +19109,Werner Dürr,9301,1088,4 +19110,Hosaka Executive,21430,11382,7 +19111,Gordon,88818,1423898,11 +19112,Extra (uncredited),2897,120217,72 +19113,Director,11535,163669,49 +19114,Brenda,125548,106791,7 +19115,Jessi Ramsey,48287,112037,4 +19116,Miss Collins,7340,52462,4 +19117,Chuckie Finster (voice),14444,58136,4 +19118,Olivier,110,1138,11 +19119,Yussel (uncredited),14811,130481,31 +19120,Jelena,11902,110981,7 +19121,Detective Wade,10395,28004,11 +19122,Harry the Horse,4825,41750,6 +19123,Spara,242,982447,20 +19124,Henry Miles,78256,5,3 +19125,Villager,229,1367613,51 +19126,Carlton 'Doc' Windgate,9771,62597,12 +19127,Longa,7514,52824,11 +19128,Max Kalba,691,649,11 +19129,Gaffer,9071,105309,9 +19130,Silence,9028,1352,0 +19131,Narrator,81310,21877,7 +19132,Marie McIntyre - The Teenager,5257,1501358,11 +19133,Keith Harding's Secretary (voice),55420,1799821,32 +19134,Villager of Tullymore,10162,1609650,26 +19135,Frigga,5608,44355,14 +19136,Dreedle's WAC,10364,40000,19 +19137,Female Doctor,11185,1879781,17 +19138,Sea Bass Friend,8467,1853170,25 +19139,Eliane Devries,2731,50,0 +19140,l'homme de la fourrière,31417,133190,7 +19141,Fred Varley,33851,970634,14 +19142,Nina,99,958,3 +19143,Gojira,10643,1135826,15 +19144,Concubine #1,91076,92276,13 +19145,Hotel Clerk,476,5222,12 +19146,Chucky,11186,1370,4 +19147,Mike McCaslin,47889,5010,1 +19148,Casper,12528,119856,6 +19149,Woman in Dream Sequence,982,121323,15 +19150,Hitchhiking Fisherman,764,7623,5 +19151,Quinn,19760,1010,11 +19152,Officer,169,154713,27 +19153,Father Jack Mundy,5332,5658,5 +19154,Indigo,41823,13602,9 +19155,Frank Hawkes,40952,3785,0 +19156,Preservation Partier,8467,1853217,57 +19157,Peggy Larson,29343,103573,6 +19158,Fenton Q. Harcourt (voice),10865,28010,10 +19159,Street Urchin,379,1281530,24 +19160,Heather Mooney,9611,21197,2 +19161,Tatsu (voice),1497,81381,23 +19162,uniformed cop at end,24005,126997,26 +19163,Tish Ambrosei,13766,11164,2 +19164,Customs Officer,10724,42568,25 +19165,Hot Mary,38554,1542804,9 +19166,Keys,601,9979,4 +19167,Jo Harding age 6,664,57674,15 +19168,Mr. George W. Banks,433,5825,2 +19169,Kent,43828,41755,4 +19170,Deputy Larry,30352,64447,11 +19171,Bride's Father,124963,16525,16 +19172,Young Harry Faversham,10568,1463002,9 +19173,Isobel McCordle,5279,38809,17 +19174,Tante Louise Trends,12129,9599,0 +19175,'The Priest',2321,57116,20 +19176,Extra (uncredited),2897,1420348,139 +19177,Suzanne Stone Maretto,577,2227,0 +19178,Newspaperman at Trenton Town Hall (uncredited),15,227974,80 +19179,Little Melvin,28169,1420383,8 +19180,Mark,8869,1172430,15 +19181,Buck,2124,2714,6 +19182,Woman in Bathroom,32872,42324,54 +19183,Corner Man,153141,1770540,26 +19184,Nick at 7,26149,11665,4 +19185,Band Member,6068,1609253,38 +19186,Drug lord #3 bodyguard,11134,954000,14 +19187,,36047,41249,4 +19188,Lyle Maxwell,30308,8240,6 +19189,Mrs. Harville,17015,1241523,25 +19190,Rose,2124,21817,1 +19191,Gwenovier,334,10691,13 +19192,Gertie,601,69597,1 +19193,Ghost (voice),141489,11857,15 +19194,Nancy Chavez,26173,94776,2 +19195,Christy Kane,14,42715,18 +19196,One-Eyed Old Man,1911,1351408,18 +19197,Balli (as Karen Montero),14587,1840070,26 +19198,Mike Wilson,2046,71888,14 +19199,Power Station Engineer,1678,1201022,22 +19200,James,11692,8930,9 +19201,Claude Carver,42424,16743,2 +19202,Musician,43828,1179586,43 +19203,Monster,755,1042415,32 +19204,Kevin,10373,5538,6 +19205,William Snow,123047,2282,1 +19206,Coach Red Beaulieu,10663,67764,4 +19207,Cheltham,197,43131,28 +19208,Gordon Comstock,54795,20766,4 +19209,Marine O.D.,14886,21030,5 +19210,Capt. Anson Harris,10671,10411,8 +19211,Executioner (uncredited),3036,20070,18 +19212,Dr. Curtis McCabe,1903,6856,3 +19213,John Shaunessy,12102,44846,4 +19214,Harry Houdini,29911,1037,1 +19215,Norton Baskin,115332,9626,1 +19216,Captain Clark Terrell,154,1818,11 +19217,Nurse,47955,246358,4 +19218,Personnel Man (uncredited),3309,1188829,39 +19219,Deputy Steve Naish,2662,27740,9 +19220,Homicide Detective,2321,1219901,7 +19221,,124633,3204,6 +19222,Lieutenant Parker,10568,47014,12 +19223,Pearl Li,60855,231844,4 +19224,Paulette,28974,132324,7 +19225,Dr. Khalid,39176,72328,5 +19226,Piano Tuner (uncredited),43199,3461,9 +19227,Samantha,49788,2167,8 +19228,Jane Grierson,11521,1902,1 +19229,Horace Burke,320011,7004,3 +19230,Mrs. Anthony P. Kirby,34106,81941,12 +19231,Shang Tsung,9312,11398,3 +19232,Train Fireman,922,1064,2 +19233,Anne Richards,53879,19110,5 +19234,Cole Whittier,12309,38086,5 +19235,Andrews,8584,25527,7 +19236,Trustee (uncredited),34106,946334,76 +19237,Coalman at Lettuce Field (uncredited),220,133738,15 +19238,Lia,11216,1077256,13 +19239,Ring Announcer - Reeves Fight,1578,16643,13 +19240,Biffen,29224,79059,5 +19241,"Reporter, himself",47715,15915,1 +19242,Joe Reaves,13531,57829,0 +19243,Jennifer,31342,86034,3 +19244,Towser,12230,106101,10 +19245,Senior Yacht Guard,34774,16275,10 +19246,Steven Grlscz,1448,9642,0 +19247,Burger Assistant,18,84440,103 +19248,Lucy Draper,20704,58277,7 +19249,Winthrop Trowbridge,17691,66712,10 +19250,Server #1,31005,129661,7 +19251,,44081,1061525,3 +19252,Ralph Hess,32043,15860,4 +19253,Walter,9028,1076582,11 +19254,Charlie,32049,92903,13 +19255,Duke of Sutherland,9443,16480,15 +19256,Sarah Miles,78256,20141,0 +19257,Bride,16176,167441,24 +19258,Margaret Phelps,12102,13724,2 +19259,Walter Tyler,17170,1462345,20 +19260,Sporting Lady,2897,20603,37 +19261,Dad Tobias,6552,20753,11 +19262,Glass Woman,10351,167999,23 +19263,Lester Marton,29376,27966,2 +19264,"Katherine ""Kitty"" Pryde / Shadowcat",36658,64470,14 +19265,Himself,262,214904,15 +19266,Ludwig Götten,4762,920,3 +19267,Justine,3036,29860,11 +19268,Molly Bell,15310,61880,2 +19269,Conservative Wife,522,1225788,36 +19270,Newsreel Man (uncredited),15,198219,28 +19271,Mr. Henry,13685,3085,6 +19272,Gertrude,141489,232127,3 +19273,Rose-Ann D'Arcey,33364,7632,1 +19274,Rosie O'Donnell,12606,12929,13 +19275,Bobby Montgomery,51955,175594,5 +19276,Comrade Gen. Kope,17771,42996,16 +19277,Karen 'Knox' Charmin,29492,82956,9 +19278,Agent Parker,23223,4943,2 +19279,Squash Player,153141,1221067,13 +19280,Frau Farbissina,817,13924,6 +19281,Fig Lady,11374,102794,26 +19282,Les Kendall,10409,127137,7 +19283,L'agent immobilier,108,1142,5 +19284,Danny Sussman,9882,2555,7 +19285,(voice),12593,73032,3 +19286,Ray Fox,46094,17646,5 +19287,D'Artagnan,11370,20746,4 +19288,Fanny,965,11025,4 +19289,Bernard,5967,46938,7 +19290,Mary Jane Wilks,34723,8256,6 +19291,Oklahoma Cop,17711,1230,10 +19292,Armistead Stuart,10735,1517174,9 +19293,Jo Metzler,9451,152355,11 +19294,Mister Shhh,400,884,6 +19295,Bank Colleague,2084,34549,17 +19296,Jimmy,18621,18288,4 +19297,Flora Bosch,23730,90528,4 +19298,,47144,4635,7 +19299,Anchorwoman,9358,1749245,17 +19300,American Sailor,2984,1230601,30 +19301,Allison McAllister,10050,41555,2 +19302,Fight Fan,1813,984489,33 +19303,Admiral Janeway,201,35317,11 +19304,Reporter #1,1637,83782,34 +19305,Faith Moore,170430,12812,2 +19306,Jack Meehan,33851,27554,2 +19307,Alexis Cash,32227,106487,10 +19308,Damian Waters,13962,76133,5 +19309,Cpl. Payne (radio operator),37305,117395,12 +19310,Principal Max Anderson,11017,33489,4 +19311,Gladys,8869,12543,8 +19312,Botschafter De Sadesky,935,6600,5 +19313,Bar Couple (uncredited),949,1491009,56 +19314,Guy in Diner #1,93350,56251,10 +19315,Thug,3780,1482647,56 +19316,Himself,11950,4347,18 +19317,Mechanic,43832,1448139,32 +19318,Steve,10847,1077734,14 +19319,Officer at Warehouse,10326,936397,16 +19320,Loostgarten,10869,88450,5 +19321,Oskie L'Hatsky,95627,1552814,21 +19322,Prof. Prudence,11570,30769,4 +19323,Claire Romilly,10491,9825,2 +19324,,28134,658,7 +19325,Montezuma Monroe,9563,4774,7 +19326,Esther Fry,29787,1232929,10 +19327,Spud Wilson,25037,146551,4 +19328,Gwen's Daughter,32872,20092,55 +19329,Woman on TV,655,54754,11 +19330,Ferdinand the Duck (voice),9598,52699,2 +19331,Teenage Girl,10909,1569421,6 +19332,Ten Spot,10747,19968,11 +19333,Hank,9819,6193,2 +19334,Greg,601,9980,8 +19335,Joe,14293,9046,1 +19336,Le maire de Colleville,9289,37131,6 +19337,Lou,11618,27544,11 +19338,The young monk (uncredited),490,231921,16 +19339,Mother Superior,5924,94994,16 +19340,Donatello / Foot #3,1497,77153,3 +19341,Fifi,8584,119757,10 +19342,Gillian,18683,83438,2 +19343,Webb,1049,1472,11 +19344,Human Aknot,18,1857430,63 +19345,Lord Chief Justice,23114,13343,20 +19346,King Willie,169,2067,10 +19347,Karl Harris,2666,8398,8 +19348,Bruno Parker,35292,1232032,8 +19349,Spinner,36259,4971,6 +19350,Elevator Passenger #4,1637,1872821,53 +19351,Young Starkey,43997,134688,9 +19352,Sally,11185,1217685,7 +19353,Gracie Law,6978,2109,1 +19354,Dispatcher,30352,106118,14 +19355,Beaufort Guest,10436,28028,14 +19356,"Tipo, Pacha's Son (voice)",11688,102320,10 +19357,Proctor,7299,15196,16 +19358,Anne Labels,1448,17257,1 +19359,Clusiot,5924,13263,6 +19360,Miss Lafleur,15875,83400,9 +19361,Gangster,772,1244120,14 +19362,Henchman (uncredited),11697,114232,46 +19363,Sekretärin,5257,62745,21 +19364,Alicia,4307,36282,9 +19365,Mike - the Detective (uncredited),34106,4303,23 +19366,Elliott Fowler,50463,287,3 +19367,,18919,551677,18 +19368,Francis Fendly,47942,7503,6 +19369,Negoziante dischi,10867,553191,23 +19370,Harrad,42517,121356,3 +19371,Sybil Gordon,9443,2506,3 +19372,Anna,33851,3122,3 +19373,Frank 'Pops' Morgan,9771,8175,11 +19374,Marcy Kellerher,19760,1362948,7 +19375,Party Attendant,10603,1748126,47 +19376,Flynn,966,15998,23 +19377,Bank Clerk (uncredited),34106,1433425,114 +19378,Lady Hampton,409,108620,36 +19379,Kurt Sloane,10222,15111,0 +19380,Rita's Colleague,10950,1411151,30 +19381,Deb Freidman,53685,33259,0 +19382,Men in suits,11159,214521,35 +19383,"David 'Dave' Hoyle, aka Agent 'Nine'",9977,4783,1 +19384,Hausmeisterin,278978,36490,8 +19385,Little Girl (uncredited),3309,1435080,35 +19386,Preservation Partier,8467,1853188,46 +19387,Biker,9358,1441268,19 +19388,Billie Auster,3682,6068,6 +19389,Marvin,10708,18324,2 +19390,Agent Jeremiah Ecks,10550,3131,0 +19391,Landa,24739,1743,7 +19392,Captain,11902,1043263,18 +19393,Nicoletta,1554,9235,3 +19394,Mrs. Norman,13550,3639,6 +19395,Cleo McDowell,9602,22384,3 +19396,Cafe Patron,76,1265420,21 +19397,Dr. Benson Hughes,31947,1659314,6 +19398,Victor,38950,106730,11 +19399,Ken,140519,8214,6 +19400,Mabel,52782,1341128,1 +19401,Vic,34223,68898,1 +19402,Kurt's Dad,2640,94557,22 +19403,Chico,10973,131058,7 +19404,Dirk Calloway,11545,15252,4 +19405,Pvt. Forstman,37305,14785,1 +19406,Young Zulu,16417,1320523,9 +19407,The Martian Intelligence,20424,1766033,19 +19408,Roger Jasser,17168,28248,2 +19409,Private Antonio Diaz,10142,5723,4 +19410,Sherry Dunlap,52772,69344,4 +19411,Big Ed Bookman,4988,40202,3 +19412,Bernard,71701,40529,3 +19413,Steve Moore,10590,127725,38 +19414,Jimmy,11449,98596,13 +19415,Pony Tail Girl,17170,3208,21 +19416,Gang Leader,1480,18737,20 +19417,Judy Sheperd,8844,205,2 +19418,Bobby Chicago,9946,7166,2 +19419,Kursann bhai Patel,4254,35759,10 +19420,Sam Freeman,19731,6159,0 +19421,Ness' Daughter,117,1886579,24 +19422,Mutter,10801,66873,18 +19423,Man Singing at Inquirer Party (uncredited),15,1404180,44 +19424,Surgeon,9406,1619468,11 +19425,Ed Couch,1633,2886,8 +19426,Murray,10872,3174,6 +19427,Dagney,400,5503,8 +19428,Patrick Morenski,26156,56145,1 +19429,Accomplice,42136,994453,11 +19430,Carla Morgan,27993,15762,8 +19431,Hideota's concubine,11645,1484312,20 +19432,Madox,409,5473,6 +19433,The Kid,678,10165,8 +19434,Willy Dunlop,11333,7502,1 +19435,Laurie,11456,69503,6 +19436,Cubby Brown,31044,12816,18 +19437,Monsieur Peyrolle,11876,24816,2 +19438,Stephens,14794,1730638,16 +19439,Melanie Gustafson,15602,589,4 +19440,Cpl. Jurgens,37305,3342,4 +19441,Bridget,15256,74615,7 +19442,Liu Kang,9312,57250,1 +19443,Beckman Gage,129628,94434,5 +19444,RuPaul,11374,78589,16 +19445,Margaret 'Maggie' Mundy,5332,37759,3 +19446,Giorgio,9343,1758316,18 +19447,Amelia age 8,11091,20815,16 +19448,,10775,586484,14 +19449,Tabib Sahid,28171,99956,2 +19450,Phone Call flirt,11091,59882,14 +19451,Monsieur Barthelemy,11876,23505,23 +19452,Man at Boxcar (uncredited),220,2784,41 +19453,Heaver,17465,6384,10 +19454,Police Officer,18736,19034,45 +19455,J. Russell Finch,11576,69951,1 +19456,Senf,33680,32138,6 +19457,Frankie,88818,81024,10 +19458,Senior Class President,27681,1176973,15 +19459,Roger Hines,5551,24047,8 +19460,Eric Pollack,5955,9880,5 +19461,Irene Stein,129628,3234,2 +19462,Bajo,124633,48791,1 +19463,Police Inspector Tsai,146,1628,10 +19464,Gorilla/King Kong,11230,1166565,12 +19465,Marilli Kosemund,278978,681,2 +19466,Hilary Du Pré,46992,3052,1 +19467,Evan Christenson,13526,1184,8 +19468,Bartender,19157,20818,12 +19469,Conjuror,11159,1749199,29 +19470,Extra (uncredited),2897,120200,201 +19471,Eebeedee,623,37893,21 +19472,Sergeant Drucker,949,34,8 +19473,Milton,9296,17881,6 +19474,Mobu,8494,55272,7 +19475,Boris Karloff,3033,20581,9 +19476,Second Contact Man at Rick's (uncredited),289,95967,42 +19477,Additional Ballplayer,2323,1890720,25 +19478,Extra (uncredited),2897,1181275,126 +19479,Preservation Partier,8467,1853212,54 +19480,Ship's Captain,43832,122979,15 +19481,"Éric Lehman, le prof. d'allemand",166,1973,5 +19482,"Belknap, farm manager",606,10657,13 +19483,Mum,42739,3063,1 +19484,"Yuki, Ozu's wife",46986,1535183,41 +19485,Jilli Hopper,11458,4939,3 +19486,Security Guard #1,79593,8191,27 +19487,Broker,14181,55861,9 +19488,Annie Cassell,10950,1902,2 +19489,R.J. Fletcher,11959,34597,5 +19490,Itchy Itchiford (voice),19042,6844,6 +19491,Marek,79782,587975,0 +19492,Johnny McKenna,146341,15799,6 +19493,Monte Beragon,3309,31551,2 +19494,Liam Docherty,33851,3896,5 +19495,Will Sly,210092,91600,1 +19496,Brett,43143,14823,5 +19497,Doctor,694,10412,7 +19498,Dr. D,32227,41220,6 +19499,The Boss,9609,31005,9 +19500,Large Man,11618,22132,7 +19501,Detective Ben Bou,9406,1117048,9 +19502,Ignatz/Adam/Ivan Sors,17771,5469,0 +19503,Lupe (as Alma Rosa Martínez),76397,162169,7 +19504,Stock Clerk (uncredited),73969,1269185,12 +19505,Elaine Cheritto,949,4158,20 +19506,Second Sweeper,22023,967961,23 +19507,Noel,4476,1077330,24 +19508,Scoop,117,1278,11 +19509,Sorokina,50512,1352515,25 +19510,Miss False Eyelashes,21142,108155,12 +19511,Himself,2300,1225517,13 +19512,a maid,24005,140796,27 +19513,Vinnie 'The Slug',2321,142159,17 +19514,Tony Dogs,524,42824,28 +19515,Omar,19142,84209,7 +19516,Prison Guard,10400,1393352,65 +19517,Mustafa,817,23659,14 +19518,Promoter's Aide,1497,102757,47 +19519,Shannon Christie,11259,2227,1 +19520,Mute girl,490,6662,8 +19521,Lainie,10691,1226611,14 +19522,Thug #3,31044,1461983,52 +19523,Austin Powers / Dr. Evil / Fat Bastard,817,12073,0 +19524,L'anglais,105763,579743,14 +19525,8th Reporter,1924,61940,41 +19526,Argonian Citizen,9651,192940,9 +19527,Mary Evans,151489,1895636,6 +19528,Marketing Guy,10708,1323219,44 +19529,Dr. Pierre Dubois,19736,3545,4 +19530,Rosemary's Girl Friend,805,103457,16 +19531,Franck Eggelhoffer,11862,519,2 +19532,Defense Attorney,13526,1626527,10 +19533,Brownstone Mother,2978,23967,13 +19534,Third Army chaplain,11202,141494,23 +19535,Col. William 'Mutt' Henderson,23518,86368,6 +19536,Colonel Dugan,11231,11086,2 +19537,Billy Clyde Puckett,4988,16475,0 +19538,A.J.,13531,73589,11 +19539,Pierre Revel,28974,14563,5 +19540,Billy McIntyre - The Kid,5257,1501359,10 +19541,Mike from San Diego,28,1402117,13 +19542,Craighton,30175,1218024,10 +19543,Minister's Secretary,25682,136298,6 +19544,Dave Henderson,23599,41739,14 +19545,His Friend,31995,123903,11 +19546,John Russo,31921,856,1 +19547,Rick Spector,334,2234,9 +19548,Haynes,664,9999,11 +19549,,77314,79952,0 +19550,Jimbo,22023,829,15 +19551,Himself,1282,83981,5 +19552,Étienne,1907,19866,1 +19553,Sidney,43277,100588,8 +19554,Jack Tyndall,43828,2672,11 +19555,Captain Styles,157,65568,17 +19556,Marlène,27834,59807,2 +19557,Tecla,145925,259040,18 +19558,Paddy,11259,15440,14 +19559,J.C. Wiatt,11215,3092,0 +19560,Victoria 'V.I.' Warshawski,41805,3391,0 +19561,Fagin #2,6038,1580026,28 +19562,Son employée,194,231608,37 +19563,Nakanishi Takako,28273,128665,12 +19564,Betty,2110,21667,8 +19565,Janet Hall,31342,14,2 +19566,Reb 'Papa' Mendel,10269,3160,3 +19567,Production Manager,14242,1502572,10 +19568,Marvin,36355,131947,3 +19569,Kitten Girl,29698,135053,22 +19570,Kid Shelleen & Tim Strawn,11694,18391,1 +19571,Empty V Interviewer,29825,21294,11 +19572,Mrs. Grace Holly,14698,18737,4 +19573,Foster,18477,13310,6 +19574,,11216,228148,17 +19575,Albert Hawkins,2046,38571,13 +19576,Pig Finn,10162,34715,5 +19577,Eleanor Lyons,41590,80759,8 +19578,Laura,140519,74940,1 +19579,Russel Maddox,12103,25878,6 +19580,John the Baptist,2428,10017,9 +19581,Extra (uncredited),2897,1550447,180 +19582,Comic's Agent,703,1726179,44 +19583,Peddler (uncredited),12311,2934,47 +19584,HK police officer,9404,70690,10 +19585,John Milton,1813,1158,1 +19586,Dustin Davis,664,1233,4 +19587,Judge,4012,155236,27 +19588,Detective Reilly,32059,8854,12 +19589,Day Tripper,4478,879,5 +19590,Wiseguy Eddie,524,1888770,39 +19591,Q,660,9906,9 +19592,Bryant,129628,17495,11 +19593,Gambler at Rick's (uncredited),289,121322,45 +19594,Lucy McLoughlin,43079,41292,3 +19595,Kageyu Ikoma,11645,552194,10 +19596,John Artis,10400,59570,15 +19597,Mae Thompson,9354,57419,3 +19598,Winnie the Pooh,81310,34759,1 +19599,David Decker,14370,21523,8 +19600,Vice-Adm. Farley C. Barnswell,23518,11783,13 +19601,Francisco / Fortinbras,141489,160537,11 +19602,TV Weatherman,10603,1748105,23 +19603,Jerry Langford,262,3663,1 +19604,Paco Gonzalez,32074,9286,10 +19605,Katharine Clifton,409,5470,3 +19606,Dizzy Gillespie,24679,67392,5 +19607,Gossipy Woman,20438,1514695,6 +19608,Antonio,1902,19849,2 +19609,Roy,11077,12876,6 +19610,Pam Short,10409,543655,9 +19611,Carl,638,9304,24 +19612,Bodyguard,117,1886586,44 +19613,Eugenie Rose Chaney,982,7302,3 +19614,Extra (uncredited),2897,1159355,59 +19615,Cort,12106,934,2 +19616,Michael,18222,102729,3 +19617,Taxi Driver (uncredited),34106,1086622,68 +19618,Sun,25087,20904,3 +19619,Vampira,522,4452,20 +19620,Wes,31618,15854,5 +19621,Peter Sullivan,11593,21043,4 +19622,Elaine,17170,6473,17 +19623,Magician's Assistant (uncredited),28774,1321748,16 +19624,Konstantin Koverchenko,15267,12261,1 +19625,Bob,62463,235361,0 +19626,Foreman (voice),8916,96595,9 +19627,Tracy,11374,1557453,36 +19628,Party Girl,9563,16663,19 +19629,Nadezha,1396,8471,5 +19630,J. Algernon Hawthorne,11576,29427,11 +19631,Diana Guzman,19348,17647,0 +19632,Ken,9716,8289,11 +19633,Bridesmaid #3,2613,172073,16 +19634,Holborn Gaines,982,34497,13 +19635,Left Hand Lacey (Piano),41823,4808,3 +19636,Anne Strieber,28774,32225,1 +19637,Machine Gunner,28,159948,19 +19638,Georges Pirou,2721,2168,19 +19639,Alice,78281,9893,2 +19640,Jeannie,10708,1786652,25 +19641,Seth Davis,14181,1771,0 +19642,Larry,13105,1062,8 +19643,Symposium Speaker,55420,1301643,8 +19644,Moti,9403,7030,12 +19645,Police Sergeant (uncredited),34106,14420,105 +19646,Premiere Audience Member,9296,1224351,25 +19647,John Kreese,8856,56117,2 +19648,Craps Box Man,4478,120875,19 +19649,Jean-Marie Kunstler,6187,48576,1 +19650,Extra (uncredited),2897,1676504,91 +19651,Lily,48287,1780225,14 +19652,Betsy,50512,170880,10 +19653,Ricky Smith,13667,70804,10 +19654,Mrs. Sugarman,796,136482,13 +19655,Extra (uncredited),2897,30515,233 +19656,Stanley Kaufman,1850,19468,4 +19657,Claire,124475,13688,2 +19658,Sergeant Al Columbato,11296,2963,1 +19659,Pap Finn,34723,4765,3 +19660,Maj. Werner Pluskat,9289,23694,5 +19661,Chief Gould,1480,4077,15 +19662,Otis,1924,13726,4 +19663,The Woman of Zephyr Lane,47694,554854,9 +19664,Band Member,6068,1609260,43 +19665,Bassett,43438,11859,3 +19666,Eduardo Braz,55731,171522,5 +19667,Rita,11859,3136,6 +19668,J. Douglas Williamson,26378,102721,16 +19669,Frank Hackett,10774,3087,3 +19670,7th Elder,1924,1220359,22 +19671,Susan,249,32645,3 +19672,Dr. Henry Frankenstein,229,2923,1 +19673,New Lucy,11257,105164,17 +19674,Bank Manager,2084,21345,5 +19675,Mr. Turner,20424,96701,14 +19676,Georg Rheinhardsen,34582,112598,2 +19677,Classics Master: Staff,14794,93172,22 +19678,,28134,28633,11 +19679,Karl van Beethoven,13701,23797,4 +19680,Alice Cavender,11654,70377,4 +19681,Rijkswachter,58886,44366,15 +19682,Hospital Dancer,9716,1661618,75 +19683,Soldier (uncredited),28,107323,25 +19684,Carol Anne Parrish,8844,1276,7 +19685,Boy,91076,977672,16 +19686,Christiane Génessier,31417,27980,2 +19687,Kimberly Corman,9358,17236,1 +19688,Sgt. Hardy,409,5474,9 +19689,Kelly,10747,2454,12 +19690,Chief Peck,10724,7907,43 +19691,Additional Bus Passenger #6,1637,167069,46 +19692,Dickerman,28047,22251,12 +19693,Hester Grahame,43438,2924,0 +19694,Butler at Swingers Party,28940,157502,33 +19695,Samir Nazhde,9882,20667,4 +19696,Carol Anne Freeling,11133,10086,2 +19697,Salesman (uncredited),805,16527,18 +19698,Marshal Zelentsov,8665,14324,3 +19699,Josh Jordan at Three,12220,181553,14 +19700,Martin Ridgeway,32140,4966,2 +19701,Frankie,3784,1160,0 +19702,Leona Cantrell,169,2051,4 +19703,Monica Barling,573,12657,7 +19704,Frank Salazar,30352,21246,1 +19705,Pvt. Harris (uncredited),9289,6890,14 +19706,Sam McGuire,18736,62036,3 +19707,Jim McCarthy,753,3014,5 +19708,Marcus,16314,157951,10 +19709,Frank Brand,9296,15253,48 +19710,Babysitter,16314,153640,14 +19711,Colonel Hugh Pickering,11113,15387,3 +19712,Franz Josef Guicciardi,13701,27432,11 +19713,Dulcea,9070,60464,9 +19714,Dancer,11397,1773848,67 +19715,Alyssa,1811,20492,6 +19716,Bruno Tattaglia,238,3414,21 +19717,George Dunlap,52772,3926,0 +19718,Johnny,31503,65704,0 +19719,Sam Traxler,11004,21088,9 +19720,Sandra Larson,21626,27125,0 +19721,,102,1441374,14 +19722,Man at Lake,577,224,8 +19723,Meat,24825,101660,14 +19724,Kathleen Robinson,27461,4784,4 +19725,Skipper,35292,216971,40 +19726,Preservation Partier,8467,1188495,53 +19727,Frank Henderson,52772,27811,3 +19728,Howard Shuster,17708,6487,6 +19729,Ernie Kaltenbrunner,10925,41262,2 +19730,Gravedigger,33016,91963,13 +19731,Über-Morlock,2135,16940,9 +19732,Ricardo Montoya,10750,156756,2 +19733,Ted Kramer,12102,4483,0 +19734,Gen. Olson James,9776,59161,17 +19735,James Michael 'Jimmy' Cooper,10373,65301,0 +19736,Mordcha,14811,81975,12 +19737,Cossette,42832,1045686,12 +19738,Debbie,10326,13024,14 +19739,Angry Woman,10611,1631215,9 +19740,Tokka,1497,180830,13 +19741,rapper,17464,21411,15 +19742,T.B. Player,9591,58019,4 +19743,Abu Ben Ishak,24883,26557,3 +19744,Iskandar,15267,1076156,9 +19745,William Purcell,2669,24605,19 +19746,Vincent Lauria,11873,500,1 +19747,Saloon Hostess,2897,2896,7 +19748,Himself,26149,1237213,14 +19749,Immigration Officer,39771,157467,13 +19750,Cabren,28893,41218,0 +19751,Leila,9457,154644,4 +19752,"Daisy's mother, the landlady",2760,27911,2 +19753,Nick Lipton,10440,5367,7 +19754,Oscar Hamilton,64398,577670,6 +19755,Dave,140519,1112607,5 +19756,Socio de Juan,80713,1027740,7 +19757,Oliver Lang,1073,504,1 +19758,St. Joseph's Doctor,10400,1393362,77 +19759,Busty Woman in Red [Cameo],38955,26724,4 +19760,Field Marshal Gerd von Rundstedt,9289,12373,35 +19761,Comrade Iranoff (as Sig Rumann),1859,2497,4 +19762,Brad Shirk,10466,133853,9 +19763,Alan,25796,33533,5 +19764,lui-même,64567,21177,12 +19765,Auditioner,11800,2171,10 +19766,Early Grayce,10909,287,0 +19767,George Washington McLintock,15263,4165,0 +19768,Steve Lattimer,18133,52366,8 +19769,George Malley,9294,8891,0 +19770,Byam,12311,72059,2 +19771,Wilby Daniels,15943,40393,0 +19772,Herr Wagner (uncredited),31527,1550,11 +19773,Greek Bailiff,38554,33832,22 +19774,Shinkichi Sieji,1678,1478363,7 +19775,,64310,24539,6 +19776,Waitress (uncredited),3309,1099139,20 +19777,Troopmaster,1073,97391,10 +19778,Dr. John Rollason,38006,5,1 +19779,Bob Zmuda,1850,13242,9 +19780,Oola,11004,209,6 +19781,Desk Sergeant,2758,78729,15 +19782,Red-Haired Saloon Girl in Flashback,9028,995741,13 +19783,Angelo Pardi,11876,15533,1 +19784,Barman,42739,1214500,8 +19785,Silent Movie Actress,8388,97621,15 +19786,Randi James,40095,26294,2 +19787,Dresser,29475,9464,3 +19788,Narrator,13794,15152,0 +19789,Roger Montalvo,31598,3137,8 +19790,Lt. Barton,29372,95623,11 +19791,Nodding 1st Grader,11017,112600,14 +19792,Concert Goer,9296,1663613,63 +19793,David Marriott,38718,26473,5 +19794,Douglas,24126,16170,10 +19795,Leroy Brown,9396,17764,4 +19796,Mr. Santiago,29649,104505,13 +19797,Jürgen,7299,886,8 +19798,Hawk Hawkins,5551,2176,1 +19799,Dancer (uncredited),1578,134013,43 +19800,Reporter (uncredited),34106,145828,81 +19801,Mr. Cavanaugh,24645,66297,7 +19802,Worried Neighbor (uncredited),34106,133100,106 +19803,Akio Ogino (voice),129,19590,6 +19804,Extra (uncredited),2897,1009324,51 +19805,Fake policeman,48787,1254711,10 +19806,Kevin,29739,49327,7 +19807,Nurse,6552,52925,20 +19808,Ludwig,3035,30163,9 +19809,Salvatore Giuliano,31945,38559,0 +19810,Lily's Aunt,43832,13360,42 +19811,Toni Johnson,24405,23764,2 +19812,Lisa,29825,51384,12 +19813,Chan Ka-Kui/Lin Fu Sheng,11134,18897,0 +19814,Assistant Prosecutor,5917,151699,6 +19815,Pierre,24825,1139454,12 +19816,Minister of Justice,17771,104795,15 +19817,Ellen,433,5827,4 +19818,Colin O`Day,2085,21356,6 +19819,Mr. Steffen,210092,44153,11 +19820,Juan Martino,7305,158812,18 +19821,Lt. Ted Santen,8870,4589,2 +19822,Gustav,102,1025,8 +19823,John Arlington,21866,18071,2 +19824,Prof. Whatley,15943,16421,14 +19825,Receptionist,4011,54813,8 +19826,Mr. Watanabe,9066,91387,21 +19827,Dorothy Gale,630,9066,0 +19828,Adm. Brenner,15943,108172,8 +19829,Caballero (uncredited),32093,9096,9 +19830,Extra (uncredited),2897,171111,172 +19831,Player's Wife,9563,1741422,56 +19832,Woman Behind Railings (uncredited),2428,15942,58 +19833,"Apocalypse, Inc. Executive",28169,97825,11 +19834,Mr. Herlihy,9032,111679,16 +19835,Child (uncredited),15875,1466406,14 +19836,Monsieur Vincent,12716,1250517,12 +19837,Rachel,11307,171379,12 +19838,Ticket Girl,4338,33676,14 +19839,Jack,1715,3493,15 +19840,Dwight,46986,20283,21 +19841,Woman in Restroom,32331,1577512,11 +19842,Villager of Tullymore,10162,1609675,52 +19843,Officer Huntley,70199,5897,5 +19844,Fran,11591,91303,5 +19845,Professor der an Columbia Universität,2675,28048,13 +19846,Kristina Jung,4133,5915,15 +19847,Boy at the Falls,10400,1393331,24 +19848,Hunter,44932,44728,4 +19849,Lord Mounset,42987,47000,5 +19850,Spiro's Follower,19200,19976,14 +19851,Bartlett,623,24271,14 +19852,Stagehand (uncredited),15,1062654,140 +19853,Slattery,38766,31503,11 +19854,Woman on Train,9816,59577,14 +19855,Jean Baptiste 2,2110,185355,18 +19856,Reporter at First Fight,26378,199891,31 +19857,Himself,46697,1305317,1 +19858,McBride,11607,70004,2 +19859,Extra (uncredited),2897,1271642,160 +19860,Martin,266022,167543,3 +19861,L'opéré des cloisons nasales,194,935429,38 +19862,Gertrude,26156,166772,5 +19863,Pablo Murphy,11570,33090,7 +19864,Godmar,29743,138650,10 +19865,Zenhichi Miyamoto,10219,11398,15 +19866,Caterer,11635,112464,11 +19867,Simon Browne,15506,78288,5 +19868,Conkilin,19142,1545466,15 +19869,Daughter as a child,2441,24983,10 +19870,Jordan Barnett,42424,8186,12 +19871,VIP,11535,1674956,74 +19872,Johnny,18691,21457,0 +19873,Big Mean,21629,1238392,11 +19874,Christian,12311,11492,1 +19875,Flight Personnel (uncredited),8467,1533696,76 +19876,Mabel,9946,6199,7 +19877,Rocky,29224,114143,2 +19878,"Courtney, the Random Cute Girl",2105,83585,30 +19879,Merlin (voice),9078,12158,1 +19880,The Pope,124963,12514,5 +19881,Ted Muntz,14369,1542,5 +19882,Lt. Danny Bassett,85837,20752,0 +19883,Capt. Burns,35284,22312,16 +19884,Qualen's daughter,11943,193654,12 +19885,Bonnie Dummar,38772,14699,12 +19886,Cecile Caldwell,796,11826,3 +19887,Dr. Steven Fisher,505,2178,3 +19888,Prospective Bride at Church (uncredited),32600,1075194,16 +19889,Patience - His Wife,31995,125512,15 +19890,Bartender,22213,101850,19 +19891,Tillotson,678,114402,11 +19892,Governor's Assistant,9028,30667,33 +19893,Mrs. Eleanor Snell,7340,11793,8 +19894,Crash Davis,287,1269,0 +19895,Magda,544,7401,5 +19896,Colin Craven,11236,68689,1 +19897,Hooker,5,37336,22 +19898,Londoner,18683,95254,15 +19899,Ticket Taker,26378,136895,22 +19900,Extra (uncredited),2897,1145704,154 +19901,Mrs. Mellish,11302,66071,7 +19902,Christine,220976,586,3 +19903,donna prima coppia,25403,93726,5 +19904,Susan Eliot,30202,87420,2 +19905,Investigator,11902,1526094,25 +19906,Sue Lee Shelley,22267,51860,3 +19907,Mel Miller,21849,6837,2 +19908,"Paco Mendoza, Ramrod",39435,50763,5 +19909,Isabel Archer,36758,2227,0 +19910,Mrs. Greer,16235,80141,13 +19911,Will Gross,10801,35264,4 +19912,Young Darryl,20678,88768,5 +19913,Sherry Nugil,14370,38160,5 +19914,Mapetla,12506,77681,4 +19915,Orin Meecham,1049,8984,2 +19916,Tom,16980,2692,5 +19917,Eric Lensherr / Magneto,36657,1327,2 +19918,Le chirurgien anglais (uncredited),2721,3540,27 +19919,Gen. George Broulard,975,14563,2 +19920,Foot Soldier,1497,1456541,63 +19921,Cook,22213,1080221,18 +19922,Chad,17691,84229,9 +19923,Fannie Brice,43277,129432,4 +19924,Willi,10801,70838,10 +19925,Josephine MacDonald,6644,50972,6 +19926,Jake La Motta,1578,380,0 +19927,Sophia,9835,3019,4 +19928,Dr. Dean Franklin,210092,12485,10 +19929,Morticia Addams,2907,5657,1 +19930,Bess Gluckman,13411,37995,7 +19931,City Official at Parade (uncredited),220,121122,34 +19932,Thom,2453,27012,6 +19933,Mrs. Brown,26889,133586,12 +19934,Rethel the Archer,1911,19902,5 +19935,Vinny Forlano,524,39599,29 +19936,Brenda Lee Van Buren,12476,52300,2 +19937,Bitchy Girl,9877,166481,18 +19938,Leonard Glass,17692,1296373,15 +19939,Charles Ferry,9716,3129,8 +19940,Mr. Wallis,21626,63791,2 +19941,Billy Robberson,26261,8186,7 +19942,Chloe,15745,2139,10 +19943,Shondra,13411,35705,3 +19944,Staatsanwalt Van Horn,61813,29446,4 +19945,Butch(vcoice),10992,7447,6 +19946,Snickering Gunman,379,7623,36 +19947,Eddie Baker,11377,17637,2 +19948,Emil Zadapec,13440,15854,6 +19949,Moses Agensky,35118,29685,5 +19950,Shenge,549,7488,13 +19951,Mr. William Farnsworth,1377,16766,11 +19952,Ichirō Miki,39462,122925,0 +19953,Mouse,21132,10985,1 +19954,Mr. Wolfe,838,162323,17 +19955,Trustee,22023,1577168,32 +19956,Kid,35694,8695,1 +19957,Clyde,9516,154096,7 +19958,His Daughter,33015,144017,2 +19959,Gudger Larkin,16249,1374832,16 +19960,Charlie - Waiter,43832,1067843,41 +19961,Keetje's vader,42258,1009982,4 +19962,Kenneth Falk,1624,18193,12 +19963,Dr. Anton Jenks,72086,3855,3 +19964,Musician,6068,1609270,53 +19965,Himself,262,40206,14 +19966,Taka Tanaka,9771,147489,3 +19967,Jimmy Loughnan,9519,57794,1 +19968,Armando Moccia,12129,82779,10 +19969,Matthew,2102,7073,15 +19970,Burciaga,11607,2368,7 +19971,Danny Embling,19958,1284,0 +19972,Henchman (uncredited),11697,209585,48 +19973,Worker,10586,1556204,11 +19974,Vic DeRubis,12236,59196,3 +19975,Landlord,2021,42568,15 +19976,Grapple,29048,39741,5 +19977,Laurie,30943,5148,13 +19978,Skippy,28387,81373,5 +19979,Tony,10847,60451,18 +19980,Young Haley,10134,1812180,15 +19981,Assistant Detective,39462,30474,9 +19982,Arna Asby,493,6773,7 +19983,Queen Irene,28973,30141,1 +19984,Valentine,27834,42158,1 +19985,Porthos,11370,25441,9 +19986,Patrolman,40095,1108,10 +19987,Ralph Norton,15849,1234783,5 +19988,Gernot,5608,44358,6 +19989,Carlos Liston,9771,48071,10 +19990,"Weninger, Journalist „Die Zeitung“",4762,22531,8 +19991,Ruby Rhod,18,66,4 +19992,Sully,93350,1857003,21 +19993,Jennifer,27526,91850,11 +19994,Rosemary,54795,1283,1 +19995,Novotna,41645,8326,6 +19996,Female Student,3028,1239218,10 +19997,Pharmacist,9540,538687,14 +19998,General Sklarov,10003,90356,8 +19999,Lionel Prichard,2675,22215,10 +20000,Captain Murray,31995,120456,22 +20001,Dan Cain,1694,27994,1 +20002,Lord Richard Croft,1995,10127,1 +20003,Woman at Boat Dock (uncredited),15,1234546,40 +20004,Brad Ames (as Wally Ford),25862,35849,5 +20005,Harry Le Sabre,12479,1733,2 +20006,Boyd Osborne,30690,79740,5 +20007,Jazz Combo Member,28577,238747,24 +20008,Bishop,42987,2264,9 +20009,Eddie,28176,8351,3 +20010,,10867,1346237,35 +20011,Craig,197,20282,34 +20012,Lt.Cmdr. Blake,11422,9208,8 +20013,UPS Guy,1995,1371455,20 +20014,Ziggy,9659,1354808,13 +20015,Coach Calhoun,621,8902,12 +20016,Jeopardy Contestant,9079,1170979,16 +20017,Ben Sanders,28370,100592,4 +20018,Sergeant William Hill,857,13242,14 +20019,Plantation Overseer,43832,1290486,46 +20020,Steve Campbell,35292,134114,13 +20021,Merlin Sheets,1375,16664,10 +20022,Agee,30946,71913,4 +20023,Masatane Hara,11953,1484286,14 +20024,Confederate Soldier,39833,41250,13 +20025,Henrietta Stackpole,36758,18248,3 +20026,Shanti (voice),14873,52404,2 +20027,Russell,2757,69302,10 +20028,Doctor,21142,59302,3 +20029,Godfrey,13562,32428,0 +20030,Lem Peters,27332,159129,7 +20031,Mr. Yasumoto,3780,33135,14 +20032,Leonardo (Voice),1498,16060,3 +20033,Charlie,169,1275523,18 +20034,Harry Flugleman,8388,3266,9 +20035,Ellie Andrews,3078,30155,1 +20036,Older Julian Threadgoode,1633,163029,17 +20037,Toby Roebuck,11593,29369,2 +20038,Vic.Adm. Crawford,2160,16766,8 +20039,Ray,14587,1616929,22 +20040,Squire Gordon,14522,47513,4 +20041,Ray Cortez,19348,84520,5 +20042,Rayford Gibson,6522,776,0 +20043,Ms. Roberts,10897,1063,20 +20044,Policeman 663,11104,1337,1 +20045,Michael Brantley,14181,16857,3 +20046,House Mother,15762,1485645,14 +20047,Drunk at Football Game,25430,1027429,43 +20048,Trish,32058,21104,2 +20049,Tarkanian,580,1566081,23 +20050,Hexxus (voice),13225,13472,0 +20051,Willie,11442,61264,16 +20052,German lieutenant,11589,78092,22 +20053,General Haynesworth,21849,87547,5 +20054,Sophie MacDonald,24453,9207,1 +20055,Margery,13536,58643,6 +20056,Ernie,11888,1535,7 +20057,Tunnel Reporter - Game 3,9563,1901440,72 +20058,Heller,709,69494,16 +20059,Reporter at Banquet,10400,63859,50 +20060,Ernie,18417,1210,12 +20061,Barfly,43828,1003897,44 +20062,Milton,14370,8676,17 +20063,Carriagemaker,14522,27822,14 +20064,Hooker,12764,136518,16 +20065,Claw Paw,11570,93165,13 +20066,Mrs. Tarnell,110972,39568,7 +20067,Miko Kobayashi,2110,1677020,23 +20068,Keno,1497,58210,7 +20069,Barfly,43828,121299,20 +20070,"Johann Strauss, the Younger",52907,56875,1 +20071,Spock...Age 17,157,1831,13 +20072,Kaonashi (voice),129,554612,13 +20073,Vice Adm. William F. 'Bull' Halsey Jr.,11422,10158,5 +20074,Mr. Kemp: Staff,14794,39024,12 +20075,Cary Launer,11458,31070,2 +20076,Yvette,6187,48578,4 +20077,Bartender,76,3738,8 +20078,Jean's Mother,28974,132321,3 +20079,Man In Black,26889,11064,16 +20080,Captain Spock,172,1749,1 +20081,Helen Lyle,9529,12519,0 +20082,Robert Shannon,99351,923,4 +20083,Pat Mulligan,10162,101023,12 +20084,Chairman Mao,9746,1525270,4 +20085,The Duke,34723,1923,2 +20086,Mr. Quincy Magoo,9438,7633,0 +20087,The Welshman,15745,2482,6 +20088,Ghost Dancer,9716,1661621,78 +20089,Vocal Jazz Girl,2105,76031,25 +20090,Victor Moritz,3035,29815,2 +20091,German Officer with Yvonne (uncredited),289,3007,91 +20092,Muriel,35651,13688,1 +20093,centurione della frontiera,29743,120027,15 +20094,Hal Brandston,15489,4451,8 +20095,Officer Foley,165,169769,26 +20096,Hoki,26422,1153049,5 +20097,Gambler (uncredited),289,1132779,86 +20098,Manuel,314352,1876,4 +20099,Vini Reilly,2750,584994,25 +20100,Miss Shields,9507,1224257,10 +20101,Deckhand Who Cries 'Man Overboard' (uncredited),15875,4119,17 +20102,Carlo,13562,39801,7 +20103,Beach Woman #3,4133,5378,31 +20104,Wild Goose Flying in the Night Sky (Look),3114,30556,12 +20105,Vice Admiral Chuichi Nagumo,11422,4995,10 +20106,Bou (voice),129,225730,5 +20107,Lucy,17133,6473,2 +20108,Victor Rawlins,52744,2561,7 +20109,Politician,25430,120746,24 +20110,Woman with dog,11159,47699,46 +20111,Barbara Jane Bookman,4988,20362,2 +20112,Jerry Block,19209,104058,6 +20113,Serpuliovskoy,50512,192846,15 +20114,George Karras,30943,55554,12 +20115,Nurse,79593,156744,36 +20116,Rob,21620,1372,1 +20117,Sylvia,84735,80542,8 +20118,Foot Soldier,1497,1131169,51 +20119,Murayama,13889,1270596,16 +20120,Himself,9403,1220726,8 +20121,Burr,16806,518,7 +20122,Mrs. Morrison,197,1774123,36 +20123,Louis - Expedition Foreman,10973,102328,10 +20124,Lucy (2 Years Old),10950,18050,37 +20125,Neighbor (uncredited),34106,89012,55 +20126,Willins,13005,5063,9 +20127,Renee Madison,638,4687,1 +20128,DEA Eastham,4133,4728,32 +20129,Brenda,29475,4604,10 +20130,Barbara Fitts,14,19,8 +20131,Grandmother Fa (singing voice),10674,187678,7 +20132,Mary,37410,189458,3 +20133,"Arturo, Bartender at Vallenari's",10396,12054,8 +20134,Tito,9071,22970,4 +20135,"Madwoman (""The Mantis"")",3780,34374,5 +20136,Maya Burroughs,55420,1114904,4 +20137,Police Matron (uncredited),3309,121208,21 +20138,La préceptrice,11876,4166,6 +20139,Man on Train Playing Cards (uncredited),21734,2636,19 +20140,Joey 'Bats' Pistella,19150,16475,1 +20141,Grace,46286,15851,7 +20142,Carla Carr,146341,21818,4 +20143,Miss Minchin,19101,45453,1 +20144,Marco Sperelli,23637,27433,0 +20145,Woman on Steps,79593,1509452,39 +20146,Vicky Anderson,33016,8904,2 +20147,Wild Bill Overbeck,36797,6573,2 +20148,Dominique Bretodeau,194,2417,13 +20149,Hal Wainwright,37936,36173,2 +20150,Shura,46592,237501,1 +20151,Madame Pearl,15379,136423,11 +20152,Rex Jennings,95743,113927,5 +20153,Another Backer,522,141052,44 +20154,Young Granny,31083,1303226,8 +20155,Juno,4011,528,7 +20156,'Joliet' Jake Blues (as Jake),525,7171,1 +20157,Oda Mae's Sister,251,3420,9 +20158,Fauntleroy Sage,15263,1501992,24 +20159,,120077,1186533,1 +20160,,18919,133564,12 +20161,Chambermaid in Room 174 (uncredited),33680,34749,25 +20162,Matt Douglas Jr.,15263,153410,7 +20163,Danny Burke,14052,76234,10 +20164,Wherryman (uncredited),12311,1090669,31 +20165,Cindy,18551,44033,10 +20166,Judith,161495,9560,4 +20167,Herzen,11535,1674910,41 +20168,Sidney Bruhl,17590,3895,0 +20169,Player's Wife,9563,1741435,64 +20170,Katsusuke Atobe,11953,554019,12 +20171,'Blackie' Bales,29372,85995,7 +20172,Tony Darvo,9013,47771,6 +20173,Isa,60608,59826,2 +20174,Resort Owner,5955,46815,15 +20175,,77010,581064,5 +20176,"George ""Spanky"" McFarland",10897,67378,1 +20177,Elder Bixby,43368,130423,7 +20178,Mechanic #3,11524,55554,22 +20179,Police Lt.,28577,54450,15 +20180,Doctor,49410,3337,18 +20181,Myles Barton,11442,57136,8 +20182,Willow,16307,10341,2 +20183,Cornell's Girl at Party,14370,45356,21 +20184,Scorby,10344,26089,6 +20185,Madhu,14587,1616921,11 +20186,Talk Show Host #2,9296,162708,53 +20187,Amy Foster,1959,3293,0 +20188,Mr. Deng,37410,77155,4 +20189,Aïe,78657,32513,1 +20190,Scott Turner,6951,31,0 +20191,Jaffra,125945,1888569,13 +20192,Jen,11639,55983,0 +20193,Jesse Conrad,1689,540487,4 +20194,Lili,18642,83389,1 +20195,Ting-Ting,25538,143038,3 +20196,Crooks,51802,130217,9 +20197,Dr Dugoujon,52366,44560,19 +20198,Der Butler Mr. Poole,9095,47722,2 +20199,Maxie King,10394,7062,7 +20200,Miss Ungermeyer,18736,24357,7 +20201,Prison Official #2,638,9299,18 +20202,George Calamari,18282,155649,13 +20203,Able Bodied Seaman (uncredited),12311,1585518,41 +20204,(uncredited),99,1651930,26 +20205,König Tynahs Frau,2669,26868,25 +20206,Student,11397,1773859,76 +20207,Grace,49792,8944,1 +20208,Ivor,43266,8726,8 +20209,Britt,966,5563,6 +20210,Bank Employee,17691,13968,24 +20211,Church Attendant (uncredited),38509,120603,28 +20212,Actor,2750,1651678,33 +20213,Priest,13526,1626528,19 +20214,Julia,52782,100781,2 +20215,Security Officer Brown,20242,1752730,16 +20216,Ellen Bowen,18646,82405,1 +20217,Himself (voice),194,123827,50 +20218,Dr. Jamieson,210092,1193684,25 +20219,Avery,26603,46099,6 +20220,William Wallace,197,2461,0 +20221,Dwight Hartman,4248,212,4 +20222,Ruby,110972,77133,4 +20223,Albino,9946,215304,11 +20224,Abby Janello,10862,12052,1 +20225,Frank,153141,49735,0 +20226,Himself,85472,932227,9 +20227,Venna,10866,22290,2 +20228,Sentry,32093,22099,26 +20229,Harry Monroe,21629,9309,1 +20230,Capt. Towers,60285,85940,7 +20231,Molly's Grandmother,9555,1485712,7 +20232,Jigger Pine,25862,30270,2 +20233,Old Russian Man,10003,1079980,22 +20234,Cop,16938,1195865,24 +20235,Chen Ree,13667,87564,8 +20236,Doreen,28466,34535,11 +20237,Natalie Hillard,788,11717,7 +20238,Pengelly,2924,152718,14 +20239,Friend / Associate Producer,14242,1502568,6 +20240,Mountain Man,11361,157616,14 +20241,Justin Gregory,788,80742,12 +20242,Neighbour,18,16792,27 +20243,Bill Dellinger,22256,14329,5 +20244,Birchall,9540,84248,8 +20245,Maggie,37936,158360,8 +20246,Mr. Kessler,814,185033,20 +20247,Ann Morris,13333,13023,3 +20248,Beach Girl,27346,101614,8 +20249,Stab,16096,10863,3 +20250,Ben Edwards,29355,92899,16 +20251,Police Chief Spiro T. Edsel,12236,1039,5 +20252,Porter (uncredited),22292,148868,15 +20253,William Tucker,11853,6474,5 +20254,Johann,46986,1253879,16 +20255,Archie Leach,623,8930,0 +20256,Television Reporter (voice),55420,562340,23 +20257,Mr. Brush,10406,1538,11 +20258,,43978,1890330,5 +20259,MSgt. Larry McRose,20287,6574,5 +20260,Boxcar Bertha,22784,10767,0 +20261,Bank Colleague,2084,34547,16 +20262,Nurse Kate,2033,86474,10 +20263,David,524,107020,19 +20264,Rake Brown,22784,73194,2 +20265,Deputy Jim,30352,106117,13 +20266,Fuller McCallister,772,18793,9 +20267,Chen Kuo-Wei,11230,65976,8 +20268,Murray,8463,95758,6 +20269,Nightclub girl (uncredited),47694,71057,14 +20270,Jeroen Boman,27052,96843,0 +20271,Admiral Trowbridge,10491,13328,13 +20272,Marvin,9507,16936,4 +20273,Greg Weinstein,14181,18070,5 +20274,Blackmer Girl,117,1886580,25 +20275,High Roller #1,11873,1006721,38 +20276,Mary X,985,14794,1 +20277,Gramps Morgan,35139,131479,3 +20278,Rokusuke.,3780,96552,23 +20279,Prosecutor,39310,11870,6 +20280,Klibanov,125945,562949,1 +20281,Henry,10692,12132,0 +20282,Greg Gilmore,21828,130310,8 +20283,Charlene Shiherlis,949,15852,7 +20284,Nurse Besson,10796,538,9 +20285,Herb,85160,1432462,7 +20286,Kate,2892,28744,1 +20287,Americo Capelli,524,1204013,30 +20288,Tom Wingo,10333,1733,0 +20289,DJ at Dance,7514,52825,12 +20290,Michael Cheritto,949,3197,4 +20291,Molly Monaghan,13380,98,10 +20292,Businessman,11185,1879783,22 +20293,June,24254,8434,33 +20294,Pavel Chekov,157,1754,5 +20295,Emily Haberman,48287,9560,8 +20296,Hisao Imada,10219,1333696,13 +20297,Duty Clerk,10491,1636055,21 +20298,Lester,19324,32384,13 +20299,Peter Wong,10050,62522,13 +20300,Jim Douglas,14136,40393,0 +20301,Spy Morlock,2135,62735,23 +20302,Denver Kid,28736,27726,2 +20303,Jerjynski,38618,554584,8 +20304,Matthew Slaughter,37291,42993,1 +20305,Laila,18002,113523,14 +20306,First Lieutenant Alexander Stiller,11202,198025,10 +20307,Andy,9905,3064,6 +20308,Scott James,24825,51576,0 +20309,Edward,11630,67567,5 +20310,Policeman,977,14586,4 +20311,Dr. Vijay Alezais,10395,11851,8 +20312,Agent Hargraves,40866,40002,12 +20313,U.S. Lieutenant,11589,99725,34 +20314,Father Patrick,10162,1609641,15 +20315,Shuttle Pilot,18,1857432,68 +20316,Rohna,33680,14658,13 +20317,Rina,22910,279078,10 +20318,Woman in Elevator,117,59574,33 +20319,Townsman (uncredited),11697,1467232,23 +20320,Gang Banger #2,134368,162582,5 +20321,Miss Moneypenny,714,10699,10 +20322,Alexandria Beaumont,51955,932201,7 +20323,The King,9607,2714,8 +20324,Minister,9532,189684,23 +20325,Mike Warden,577,33835,13 +20326,Worker,10586,1556205,12 +20327,Charity Warwick,60285,24321,4 +20328,Terry Walsh,15321,15336,2 +20329,Bodyguard,18,138401,112 +20330,Portsmouth Joe (uncredited),12311,148868,60 +20331,Susan,153141,1770536,6 +20332,Dr. Peter Flynn,11545,36422,8 +20333,Habib,47161,1891581,1 +20334,Johnny,14794,146896,3 +20335,Andrezej,27834,16927,3 +20336,Sheriff Morey Johnson,43002,6837,2 +20337,Jennifer (voice),10750,75775,13 +20338,Cheerleader in Front of School,11397,1773776,35 +20339,Radar Man,9457,140258,13 +20340,Patient A,3780,34377,33 +20341,Freyja,42453,106682,5 +20342,Voyager,40952,1880597,15 +20343,Charlie - Townsman at Carnival (uncredited),220,120215,17 +20344,Mayor,38950,55841,5 +20345,Sacco,16441,66201,7 +20346,Young Tod (voice),10948,56145,11 +20347,Officer at Plane,10724,1882505,37 +20348,Ching Wing-xi,11134,1069676,8 +20349,Ozawa-san,1678,110300,11 +20350,Enthusiastic Guy,2105,35768,34 +20351,JD aka Jagga Daaku,85052,85450,11 +20352,Jerry Thompson/Narrator,15,11030,9 +20353,Lt. Henderson,38775,121365,6 +20354,Maurice,11362,64102,7 +20355,George Fairbairn (turtle keeper),123047,5658,2 +20356,Malik Bishop,57351,62817,0 +20357,Elsie 'Mac' MacDonald,26949,1194461,5 +20358,Bella,9889,60953,13 +20359,Lieutenant Colonel Walter Anderson,857,1117,6 +20360,Capt. Angus Ferguson,60285,122004,5 +20361,Alma Winkel,10801,5793,3 +20362,Alex,38718,1336664,10 +20363,Stewart Thomas,44233,1215803,5 +20364,Fhloston Captain,18,36900,79 +20365,Michael Niotes,31921,162313,7 +20366,Man (uncredited),20213,553228,8 +20367,Aggie,41357,1276259,4 +20368,Owner of Puppet Show,18642,31209,12 +20369,Teddy Parnell,41590,159850,9 +20370,Kara / Supergirl / Linda Lee,9651,33488,1 +20371,Beau Hall,24936,17243,2 +20372,Carl Nurmi,37969,37422,4 +20373,Howard Stern,9403,58098,0 +20374,Brandt,7299,17637,1 +20375,Carol Hill,29343,103571,3 +20376,Spike,13346,12799,7 +20377,Marcel,42832,554829,6 +20378,Dithy,124821,1772,3 +20379,Dickie Winslow,28519,1231399,8 +20380,Madre de Leo,4307,3482,4 +20381,Dennis,696,10450,7 +20382,Little Girl Squirrel (voice),9078,955923,5 +20383,Needles,165,1237,14 +20384,Wong Fei-Hung,12780,130517,3 +20385,Floyd Cage,5955,5048,8 +20386,Mark,11933,10361,6 +20387,Fred Jung,4133,11477,3 +20388,Tommy,4248,35768,2 +20389,Mrs. Wyler,22160,10159,4 +20390,Lucy,15256,7621,5 +20391,Grace Winslow,28519,9138,1 +20392,Susan,73247,83313,4 +20393,Adam,10647,112600,10 +20394,Professor,11442,33341,25 +20395,King Arthur (voice),18937,517,6 +20396,Male Police Officer,79593,156869,9 +20397,Isha,125945,1182444,11 +20398,Emily,33689,1331575,12 +20399,Girl,10047,1075355,32 +20400,Carolyn,11449,4160,11 +20401,Cadet Dotson,11008,173964,8 +20402,Sapphire,786,826,8 +20403,Uncle Lou,11001,21544,14 +20404,The Father,1396,1090481,1 +20405,Gil Martin,10534,11864,5 +20406,Shawn Grainger - Call Girl,28384,5130,7 +20407,Tito Severe,13369,59785,9 +20408,Paul Kessler,44414,8984,2 +20409,Basin,10050,18973,6 +20410,Pfc. Wally Holbrook,9099,15028,4 +20411,Carmen,43455,33741,0 +20412,Therese Obermeyer,13701,230909,15 +20413,Rob,1049,15154,7 +20414,Reporter,2984,1768212,39 +20415,Hal,37718,11367,10 +20416,Barbara Geoghegan,10590,41292,5 +20417,Second Villager,43143,951246,11 +20418,Judge Womack,2907,41243,10 +20419,Liquor Store Perp,3595,1811959,32 +20420,Carol,42739,42607,6 +20421,Man at Table,2898,31514,17 +20422,Imperial Guard,8584,114697,17 +20423,Mondoshawan,18,1857415,39 +20424,Jonathan Trager,9778,3036,0 +20425,Hong Kong Saloon Manager (uncredited),2897,10344,286 +20426,Sydney Ellen Wade,9087,516,1 +20427,Henderson,22213,128404,16 +20428,The Old Cowboy,90762,1372191,11 +20429,Jack Holden,11630,12836,2 +20430,Pippo,27834,87010,9 +20431,Shuttle Co-Pilot,18,1857433,69 +20432,Victoria Tucker,36929,105962,2 +20433,Polonius,10549,29859,3 +20434,Alice 'Hallie' Martin,11145,6352,1 +20435,Duck Hunter Bubba,11379,1739,29 +20436,Mr. X,54405,663,3 +20437,Nata,29263,1087157,7 +20438,Nicky,35292,83548,11 +20439,Mayor Winder,11697,98450,19 +20440,"Colonel Cathcart (CO, 256th Squadron)",10364,1936,1 +20441,Dancer,10603,1748117,42 +20442,Jimmy,62463,1780597,5 +20443,Mr. Wigram,10491,18325,3 +20444,Mrs. Gwynn,9816,59578,15 +20445,Hoffmaster,30547,37712,13 +20446,3-Fingered Typist,4011,52467,20 +20447,polis,29224,1092643,20 +20448,Gravedigger,3035,1349137,14 +20449,Gina,13536,13446,3 +20450,Jack Hartsell,17168,17485,3 +20451,Jean Vereecken,58886,222942,0 +20452,Odessa Cotter,51763,2395,1 +20453,Herself,2750,1231930,23 +20454,Lt. Phil Hartman,15873,18364,0 +20455,Detective,28120,65500,10 +20456,Eloi,2135,1669267,26 +20457,Nancy,11899,2392,25 +20458,Mrs. Brisby (voice),11704,70286,1 +20459,Bazaar Owner,31498,30163,10 +20460,Henry Axle,37917,21522,10 +20461,Becky,42424,128120,3 +20462,Brian Turner,26149,18992,3 +20463,Captain,10724,56192,34 +20464,"The lodger, Jonathan Drew",2760,27915,0 +20465,unknown,3173,31046,5 +20466,Straight Weatherman,2107,95741,13 +20467,Peter Thorndyke,14136,5825,7 +20468,Pianist in cello concert scene,25538,143035,18 +20469,Matt Stifler,2105,116027,17 +20470,Judas Iskarioth,2428,24813,14 +20471,Grace Sanders,28370,1794,5 +20472,Woo,10796,59293,18 +20473,"Michael ""The Suit"" Minelli",20678,4253,11 +20474,Squeaky,9423,17413,7 +20475,Greta,46986,575906,28 +20476,Lester Diamond,524,4512,3 +20477,Spokesman for Impeachment,25430,127641,23 +20478,Young Sarek,172,1444735,13 +20479,Alma,32059,181312,9 +20480,Prof. Harry Beckmeyer,32595,150536,0 +20481,Bagheera (voice),9325,21877,2 +20482,North's Mom,31586,15886,2 +20483,Vera,11630,93839,6 +20484,Mimi,40562,20387,8 +20485,Dr. Kadira,39176,6199,9 +20486,Dr. Jeff Bleckner,29076,91030,14 +20487,Cesar,35569,1039125,5 +20488,Mr. Webster,43342,131270,9 +20489,Sheriff,678,34625,14 +20490,Tante,5991,47032,5 +20491,Poker player,469,6402,9 +20492,Delivery Man,1073,2277,11 +20493,AJ,34223,52306,2 +20494,Todd,32872,94852,38 +20495,Darcie,11635,25837,5 +20496,Sonia,42832,29880,14 +20497,Richie O'Flaherty,14181,1894,6 +20498,Tin Tin,9495,65141,9 +20499,Vicki Sanchez,35696,1781340,15 +20500,Lane Meyer,13667,3036,0 +20501,Outlaw,9028,144612,14 +20502,Lloyd Christmas,8467,206,0 +20503,Lenny,786,60633,35 +20504,Joe,20758,30240,10 +20505,la directrice de la pension,42726,111305,4 +20506,Chief Bonnet,9406,39061,8 +20507,NASA Lab Tech,36797,1230690,14 +20508,Jennifer (uncredited),167,1542405,27 +20509,Gimli,120,655,8 +20510,Melchior,2428,88906,39 +20511,Kibitzer in Blue Sky Club (uncredited),678,198219,18 +20512,Aunt Sarah,4147,181964,28 +20513,Jones,90414,157405,5 +20514,Elderly Admirer (uncredited),289,1144743,54 +20515,Prison Doctor,16235,80162,27 +20516,Billy Pretty,6440,13950,7 +20517,Tom Beck,12476,8699,1 +20518,Karen Lutnick,2321,18331,10 +20519,Jim Malone,117,738,1 +20520,Mrs. Buxton,58985,94978,5 +20521,Ellen Olenska,10436,1160,1 +20522,Randy Pear,29739,104794,5 +20523,Scalfoni,31044,1330739,42 +20524,Workman (uncredited),805,78091,22 +20525,Woman at first Seance,3092,101855,5 +20526,A. R. Lowenthal,44800,31977,3 +20527,Dan Nodeen,38765,29312,2 +20528,Stevie,17170,1048569,14 +20529,Cogliostro,10336,51812,4 +20530,Harassing Man,29825,28002,8 +20531,Jesse Chasseur,10872,76995,4 +20532,Agent Mel Lippman,17057,14359,4 +20533,Sardi's customer,11899,70773,18 +20534,Jerome,30709,106811,9 +20535,Kid Jarrett,11853,785,4 +20536,Fortinbras,14794,1040443,8 +20537,Morris Frost,2107,5176,6 +20538,Mrs. Dingle,31503,54782,4 +20539,Tommy,8816,1778144,17 +20540,Deputy District Attorney Alan Deats (uncredited),539,124848,15 +20541,Novice,9819,1232502,14 +20542,Darcy Dummar,38772,118487,2 +20543,Prof. Markovitz,691,39817,24 +20544,"Narumi, Jailbird #3",46986,1535187,47 +20545,"Kat Grafalk, Bernard's Daughter",41805,11515,3 +20546,Trudy,118991,6941,8 +20547,Billy Flynn,1574,1205,3 +20548,Julie Vignon (de Courcy),110,1137,9 +20549,Colonel Dixon,205054,16556,7 +20550,Bill Hudley,2662,11678,6 +20551,Jo Ann,10396,1160,3 +20552,Sergeant Howie,16307,39188,0 +20553,,20645,1200401,14 +20554,P.O.W. #5,1369,278617,16 +20555,Teen Alfred,4476,95825,19 +20556,Sy Benson,31044,17695,4 +20557,2nd Dart Player,814,14470,7 +20558,Extra,30709,97621,21 +20559,Baggage Master,22328,56183,17 +20560,Da,29698,2478,1 +20561,Billy,2280,57422,4 +20562,Dietrich,11145,65568,11 +20563,Joseph,11524,1417455,17 +20564,Bambina,46924,137780,1 +20565,Julie Gianni,1903,6941,2 +20566,Jazz Band Leader (uncredited),42987,132879,10 +20567,Fydor (uncredited),289,1331769,68 +20568,Collignon,194,2416,12 +20569,Laura Lee,10747,66223,2 +20570,JJ,20307,47640,15 +20571,Antonio (as Simon Andreu),75892,24496,7 +20572,Mme Piscano,524,11483,14 +20573,Sharon,210092,1230446,26 +20574,Mr. Melville,3089,30212,5 +20575,Vern,49410,7470,20 +20576,Street Hustler,2898,6213,15 +20577,Priest,46924,18023,3 +20578,Moe The Truck Driver,12479,883,8 +20579,Holden's Parent,9716,171102,31 +20580,Fletcher's grandfather,11536,98465,5 +20581,Thomas Ellison,2669,974,18 +20582,Danny Van Boy,41160,30437,10 +20583,Millie,28176,182102,15 +20584,Lennie,51802,4072,2 +20585,Grandma Florence Norris,75,528,12 +20586,Captain von Schletow,18783,78901,11 +20587,Laura,10395,1160,3 +20588,Kane (The Grandmother),20645,86396,1 +20589,LaKid,12888,176824,7 +20590,Nazi,525,3909,46 +20591,Charlotte Sullivan,11593,65797,10 +20592,Corel,9296,1215995,41 +20593,Mourner,3035,931793,22 +20594,Le voisin,60083,230469,7 +20595,Clairee Belcher,10860,3019,5 +20596,Kilgore Trout,12479,3926,1 +20597,Pamela McFadden,1817,3897,4 +20598,Court Reynolds,796,129122,15 +20599,Ronald Clifford,796,11868,7 +20600,Carmen Jones,51044,20155,0 +20601,Neighbor (uncredited),34106,927616,65 +20602,Candi,59181,101967,8 +20603,Agent,1924,184980,83 +20604,Ma Kelly,16806,21151,5 +20605,Jack Hardemeyer,2978,29685,10 +20606,Wendell Newton,21721,1345868,7 +20607,Jann Wenner,786,7498,22 +20608,"Murray, Renda Goon",40490,47771,7 +20609,Video Game Boy,165,1024268,22 +20610,Steve Rubell,3682,12073,3 +20611,Ying's Student,11230,1168315,7 +20612,Angel,10154,11482,8 +20613,Karen Rossi,9475,164077,15 +20614,Bert,210092,108890,6 +20615,Lloyd,24254,7795,38 +20616,Noreen,9066,10402,16 +20617,Marion Monks,15506,78285,1 +20618,James T. Kirk,193,1748,7 +20619,Splash,26378,213830,23 +20620,Choirboy,29475,103933,4 +20621,Officer Preseuski,117,1280,13 +20622,Remendado,43455,987050,6 +20623,Robert Lamb,2669,26865,21 +20624,Pipkin,11837,3463,7 +20625,Irina,11101,14632,4 +20626,Lou Candela,90414,10489,4 +20627,Slimy,19157,1665704,20 +20628,Chet Bronski (Chief Running Horse),40490,66606,3 +20629,Captain Benwick,17015,7025,17 +20630,Michael Greene,10727,38660,2 +20631,Legionnaire,14626,240050,3 +20632,Slutty Girl-New Student,11397,1773875,91 +20633,Miss Purdah,11933,113906,10 +20634,Warner,20758,11172,8 +20635,Reporter (uncredited),34106,121098,79 +20636,Tony,9516,91525,11 +20637,Pierre (as Gaby Renom),21380,937467,4 +20638,Dennis,16643,21142,7 +20639,Greek Daughter,38554,1542807,23 +20640,Extra (uncredited),2897,1462194,211 +20641,Tess Millay,3089,30296,2 +20642,Dr. Albert,24254,91421,6 +20643,Soldier (voice),9023,35095,5 +20644,Jane Banks,433,5829,6 +20645,Miller Huggins,19140,34098,8 +20646,Juke Joint Waitress,6522,1216556,15 +20647,Boreksco,11524,1417450,11 +20648,Mark Elliott,53879,8252,0 +20649,Gretchen,9475,571251,9 +20650,Will Bacon,152023,4451,6 +20651,Bobby,11091,6365,11 +20652,Fat Charlie,10394,62498,15 +20653,Jim Hawkins,10874,19996,1 +20654,Werner Tötges,4762,23721,2 +20655,Prof. Sinclair,16096,14065,6 +20656,Homeless,11830,1683650,30 +20657,Maj. Gen. Gunther Blumentritt,9289,10459,43 +20658,Jim Sterling,84735,57082,13 +20659,Jerry Falgout,36915,130744,9 +20660,General in Hallway,10590,117437,33 +20661,James Whale,3033,1327,0 +20662,Landlord,13889,143901,19 +20663,Capt. De Wet,12506,35257,10 +20664,Navy Officer,703,1820,17 +20665,Burt Wilson,10925,62019,0 +20666,Mr. Arrow (voice),9016,24368,7 +20667,Harper Sloane,60994,98,0 +20668,Lizzy Quinn,10162,1609639,13 +20669,Robert Reynard,31863,2115,4 +20670,Guard Max Conlin,8470,824,7 +20671,Tal,16441,1073795,4 +20672,Model,24126,101905,16 +20673,Esther Kahn,61578,34543,0 +20674,Stan (uncredited),16281,11784,19 +20675,Macho Man,59181,1317731,16 +20676,Marty McFly,105,521,0 +20677,Bill Richamn,42149,150213,8 +20678,Mission Controller,36797,1885589,11 +20679,Isaak O`Day,2085,18792,5 +20680,Gene,11450,27545,19 +20681,Baby Carriage Woman #1,1637,1872804,25 +20682,Dr. Jonas Miller,664,2130,2 +20683,Heather,9894,198878,16 +20684,Jingles (voice),19042,12077,8 +20685,Madame Yasumoto,3780,24551,15 +20686,Debater #1 - White Team,17971,1081815,15 +20687,Alice,16980,2838,0 +20688,Lone Watie,10747,66670,1 +20689,Penny,3587,8263,4 +20690,Melissa,53150,1183565,10 +20691,1st Lt. Milo Minderbinder,10364,10127,10 +20692,Brunette,69605,96700,14 +20693,Dr. Stan Gassko,12309,15214,6 +20694,Comrade Kopalski,1859,9842,6 +20695,Dr. Klompus,11855,29710,2 +20696,Jerry Barker,14522,11207,2 +20697,Crenshaw Little,10137,4004,5 +20698,"Dr. Pat Blake, MD",20424,82834,2 +20699,Pascal,52366,5082,21 +20700,Dalby's Henchman,21148,1116654,12 +20701,Isabel Ludlow,4476,94978,12 +20702,Alex Terson,15050,19153,3 +20703,Jack Harmen,954,2880,15 +20704,Reporter at Xanadu (uncredited),15,233143,70 +20705,Reporter,705,112355,19 +20706,Sister Felice,10671,84631,39 +20707,Ted Brooks,11888,9777,1 +20708,Mario,145925,4819,5 +20709,Police Officer,141,1584,27 +20710,Drum Eatenton,10860,4139,6 +20711,,56235,223815,7 +20712,Angie Vega,42580,61904,1 +20713,François Filiba,195,2437,4 +20714,Davis,32825,40598,4 +20715,Randy Carpenter,10950,4784,7 +20716,Mrs. Nuñez,10691,119666,7 +20717,Lou,22023,58927,12 +20718,Doorman,9716,163650,15 +20719,Cornelius,1687,7505,0 +20720,Dixie / Sylvie (voice),21032,176254,9 +20721,Himself,1282,401433,6 +20722,Jerry Blier,2613,18262,5 +20723,ami de Yumi,2110,58611,10 +20724,Clive Peoples Jr.,11593,14792,7 +20725,Tory Pherris,2637,27712,29 +20726,The Arab Man,125945,103006,2 +20727,"Albert, the Butler",229,2931,9 +20728,S.B. Foss,50001,89999,4 +20729,Moustafa,15267,59350,7 +20730,Arthur,28134,2283,1 +20731,Norfolk Captain,9423,28240,12 +20732,Mrs. Gormley,40866,157269,8 +20733,Bartender,31498,30145,12 +20734,John,153141,10920,3 +20735,Camper,11880,94956,9 +20736,Jesse James,13496,72466,0 +20737,Himself,2300,1234833,14 +20738,Jill the Frog (voice),11899,70772,24 +20739,Alan Parrish (young),8844,46530,8 +20740,Ray Curtis,40952,84685,9 +20741,Lauren Gustafson,949,524,9 +20742,,20645,1201021,18 +20743,Dominick Clamato,9835,60023,7 +20744,Pete Bottoms / Liquor Store Clerk,755,16861,15 +20745,Photographer,3682,1123417,33 +20746,Captain Richard N. Jenson,11202,58495,7 +20747,Daughter Peabody,105,1200788,22 +20748,Francisco Lorca,12639,8259,7 +20749,Mechanic,10400,1393357,71 +20750,Diner Guy,37291,188721,7 +20751,Soldier in Train (uncredited),220,1551605,62 +20752,Madeleine,287305,46163,6 +20753,Rowan,10142,159850,8 +20754,Matilde Basquiat,549,7622,14 +20755,Dr. Willis Panama,26686,51962,9 +20756,Minako,20645,550559,9 +20757,Marty Livingston,16550,1230,0 +20758,Constantine Constapopolis,32227,100624,4 +20759,Joseph Donnelly,11259,500,0 +20760,Paul Marco,522,7133,9 +20761,,77825,582558,6 +20762,Willy Kunst,108365,6168,6 +20763,Extra (uncredited),2897,119542,138 +20764,Donna,11298,101780,9 +20765,Stewart,197,110315,41 +20766,Linda / Woman at Zoo (voice),59387,15761,7 +20767,Aunt Claire,44233,28778,2 +20768,Harry Finley,10326,66606,4 +20769,Maria,37820,1310813,7 +20770,Prostitute,3780,1482638,42 +20771,Gen. Faceman,935,117301,18 +20772,Captain Pierre Cordona (Frenchy),26593,95738,1 +20773,Earl Martin,10400,4892,16 +20774,Lord Cadogan,9443,2264,14 +20775,Benny,17770,9626,5 +20776,Fay Forrester,11091,328,3 +20777,Cara Carozza,5998,28988,1 +20778,George McFly (archive footage),165,1064,50 +20779,Guitar Player,15037,1314583,9 +20780,W.I. Janes,46797,24598,8 +20781,Christopher 'Chris' Romero,15762,69345,0 +20782,Phyliss,70489,19958,20 +20783,FBI Agent Bob Connell,10154,19468,6 +20784,Centurion at crucifixion,2428,4165,26 +20785,Chozen,8856,56120,5 +20786,Manelo Sanchez,1480,94893,10 +20787,Merlin,744,504,9 +20788,Partygoer,11397,10438,86 +20789,Vet - Villa Dulce,2604,11891,65 +20790,Police Chief Martin Brody,578,6355,0 +20791,Ulla,43915,247622,6 +20792,Toot,36915,1075123,12 +20793,Elizabeth Frankenstein,229,2924,4 +20794,Reporter (uncredited),34106,157335,80 +20795,Sir Hiss (voice),11886,29427,10 +20796,Jonas Ansel,17691,2101,20 +20797,Geneva,35569,161408,6 +20798,Rochelle Bridges,47889,167736,4 +20799,Yanush,125945,1157606,0 +20800,Security Guard,10972,1265046,7 +20801,Isabel Vasquez,26149,94759,10 +20802,Male Employee,788,167122,16 +20803,Dean Alan Halsey,1694,22048,4 +20804,Louis,17203,19923,8 +20805,Deputy Steve,9358,77222,23 +20806,Jonathan Lansdale,42149,3895,0 +20807,Goov,13853,87003,5 +20808,Emma,104103,39195,6 +20809,Shaun Ryder,2750,1667,8 +20810,Townsman in Parade / Townsman at Carnival (uncredited),220,572525,59 +20811,Kong,3173,1250057,6 +20812,Ann,41852,21848,5 +20813,Ethan Krusemark,635,9170,4 +20814,John Peck,28940,101606,8 +20815,Lieutenant Colonel Henry Davenport,11202,13733,6 +20816,Joseph (attache),11570,113,12 +20817,Marc,26030,27443,4 +20818,Man in Car,795,21475,10 +20819,Gino,11692,4521,7 +20820,Sue Ann,78373,83459,9 +20821,Model,6068,1609220,23 +20822,Maxine Stuart,15677,78518,3 +20823,Elaine,96238,1910,2 +20824,Lester Matthews,8470,62842,12 +20825,California Charlie,539,19111,12 +20826,(uncredited),29263,1331878,18 +20827,Escaped Convict,9716,21385,34 +20828,Herself,10050,62521,14 +20829,Studio Cop,17889,14453,15 +20830,Man at Madison Square Garden (uncredited),15,119547,136 +20831,Snow,34223,1275,6 +20832,Clerk,2613,86562,18 +20833,Woman in Crowd,32049,1502515,34 +20834,Whitby Bevil - Sr.,864,940039,10 +20835,Mrs. Meredith,14370,53931,13 +20836,"Joshua ""Josh"" Baskin",2280,31,0 +20837,Soft Voice,32049,1502507,19 +20838,The Conscience,10047,4483,1 +20839,Reverend Lemon,522,3173,5 +20840,Army Intelligence Officer,10590,99235,32 +20841,Leon,9260,21353,1 +20842,Security Guard,11397,1707350,73 +20843,Dr. Chakaraborty,167,1982,4 +20844,TV Horror Show Director,522,100592,47 +20845,Caroline Butler,13105,8437,1 +20846,Professor Martin,9406,25103,16 +20847,Captain (Orinoco Paul),9343,57381,3 +20848,Sean's Mom,10708,59227,29 +20849,Tikon,24918,14639,6 +20850,Witchwoman #1,16441,174857,9 +20851,Mrs. Kemp: Staff,14794,97170,14 +20852,Foreman #2,43832,1412902,40 +20853,Juice,13962,31004,7 +20854,Ivan,27380,1176592,8 +20855,Tom Bates,73116,656,1 +20856,Cornelius / Second Gravedigger / English Ambassador,141489,1114915,7 +20857,Nora Ericson,11697,7520,7 +20858,Nate,949,10127,3 +20859,Doctor - Vietnam,2604,137264,44 +20860,Angela Hayes,14,8211,4 +20861,Weldon,32049,10681,7 +20862,Bruce Baldwin,3085,1208,2 +20863,Rock-Skipping Grandfather,12236,4078,4 +20864,Johnny Verona,41590,6774,12 +20865,Mr. Robertson,11428,90198,6 +20866,Soldier,245268,2782,12 +20867,Reuben Shapira,47504,820,0 +20868,Brooke,39938,133470,8 +20869,Andie Bergstrom,13766,689,0 +20870,Axel Freed,44800,3085,0 +20871,Head Waiter,15592,1779786,15 +20872,Richardson,24750,1633842,11 +20873,Felix Harper,11235,13784,0 +20874,Caligiuri,145925,7542,1 +20875,Field Marshal Erwin von Rommel,36554,2091,1 +20876,Lieutenant George Wydell,2662,27736,8 +20877,Billy,6522,61289,13 +20878,Ruben,16993,17651,4 +20879,Sergeant Tom Hannon,482,6564,5 +20880,Dr. Shand,805,3433,13 +20881,Max Kirkpatrick,11859,13021,0 +20882,Young Hal,9889,203407,12 +20883,First Villager,43143,1453670,10 +20884,Mr. Fowler,32140,141694,8 +20885,Aricie,77056,308636,3 +20886,Adam,2525,2536,0 +20887,Billy,10803,1217505,9 +20888,Eddy Duchin,43199,10922,1 +20889,Jaimie,18222,175604,11 +20890,Union Officer (uncredited),961,975306,18 +20891,Elsa Shivers,3597,20751,4 +20892,Security Guard,30547,1507178,35 +20893,Min-Min,25538,103598,1 +20894,German's Other Friend,8388,2719,12 +20895,Josef Grool,864,12978,6 +20896,Woman at Party,22023,1577173,37 +20897,Tom Winters,1377,2638,0 +20898,Veronica Franco,8583,2462,0 +20899,Marshall,2565,15531,4 +20900,Lily,43832,131543,25 +20901,Monique Junot,13667,80137,5 +20902,Esther,28047,106935,11 +20903,Ice Cream Vendor [cameo],10622,931174,12 +20904,Margaret Corbeck,39176,127488,3 +20905,,10867,1381616,31 +20906,elle-même,64567,32105,23 +20907,Dr. Mellish,11302,1396841,8 +20908,Sheila,21132,87135,11 +20909,Nils Olson,19958,85351,3 +20910,Hunter,9028,1757591,24 +20911,Dr. Alex Tremor,20096,8447,1 +20912,Lurch,2907,9631,4 +20913,Teen Tristan,4476,33337,18 +20914,Amy,47260,138240,3 +20915,Катерина Александровна Тихомирова (Катя),21028,86998,0 +20916,Streetcar Conductress - Moscow Roommate,1859,34472,24 +20917,Grandma Martucci,54845,84323,7 +20918,Carmen Espinosa,75892,24976,2 +20919,Nelson Rockefeller,32274,3036,3 +20920,Paul,2291,3201,4 +20921,a man in the elevator,24005,51720,18 +20922,Beer Belly on Beach,17692,1296393,43 +20923,Pinker,10491,578082,9 +20924,Lady Sue,11645,237362,6 +20925,Glyn McLyntock,38732,854,0 +20926,South American Guide,34774,112976,15 +20927,Pierre,186705,48576,2 +20928,Perce Howland,11536,12151,2 +20929,Jefferson,24828,6465,7 +20930,Fabbro,11216,103627,11 +20931,Otis,11232,6541,11 +20932,Professor Kai-Hsien,11230,26727,3 +20933,Police,13889,552542,17 +20934,Foreign Guest,11535,181010,33 +20935,Jessica Priest,10336,89251,6 +20936,Sweet,169,95797,34 +20937,Cedric 'Ceddie' Erroll,23114,80567,0 +20938,Vance Reno,39833,93105,0 +20939,Naomi,691,10461,4 +20940,Willie Stark,25430,85895,0 +20941,"Kharis, the Mummy",29239,4072,0 +20942,Martha Dunnstock,2640,1003566,12 +20943,Zeke's wife,3078,30159,7 +20944,Seth,16441,22384,3 +20945,Captain Greetham,2669,9126,3 +20946,Raymond Aubrac,52366,6012,1 +20947,Additional Voices (voice),9504,78620,20 +20948,Harrison,95743,108774,9 +20949,Paulino Cardeano,107693,1168435,2 +20950,Al (Hotel Manager),27346,44765,12 +20951,Robin Morrison,38965,101652,5 +20952,Michael,83718,119232,1 +20953,Basketball Kid #1,165,1434988,35 +20954,Fortune,14534,17764,6 +20955,Paramedic,8844,25389,21 +20956,Boy Squire,46924,1357760,15 +20957,Barber (uncredited),32600,161702,20 +20958,Marc Blitzsetin,32274,5587,0 +20959,Ernie,16993,1229,1 +20960,Norman Shrike,32031,3087,2 +20961,Policeman,35292,1227493,27 +20962,Buster McHenry,20307,2628,0 +20963,Lisa-Marie Chandler,79593,87117,15 +20964,Houssein,9585,693,3 +20965,Scotty Brennen,2280,16165,6 +20966,Tabitha Raymond,16281,100507,17 +20967,Gunboat captain,1369,16584,9 +20968,Bill Savage,3092,4786,1 +20969,Little Fu,45861,150153,3 +20970,Cairo Merchant,26954,174426,10 +20971,Nazorine,238,82779,30 +20972,Carson J. Dyle,13440,504,2 +20973,Ted,742,11043,7 +20974,Head Pin Pal,24746,104009,10 +20975,Logie,10491,2441,5 +20976,Hooks,11895,186816,6 +20977,Prologue Dog,3050,14,14 +20978,Nathan Neubauer,50225,11477,1 +20979,Mitch Taylor,14370,92808,1 +20980,Mrs. Wilkerson,47329,39015,5 +20981,Janette Rasnick,2115,4800,1 +20982,Cameraman,47955,101377,14 +20983,Gen. Van MacKensen,35284,88463,13 +20984,Sister Rosa,10391,74940,7 +20985,Second Fight Trainer,26378,126836,69 +20986,Howard Payne,1637,2778,1 +20987,Dante,29263,1531890,11 +20988,Fagin #1,6038,554276,23 +20989,Home Band Keyboarder,11535,64186,88 +20990,Coffee Shop Cashier,2637,27694,22 +20991,Agnes Brinn,43997,105164,7 +20992,Barfly (uncredited),2897,47001,304 +20993,Donald 'Donny' Kohler,39867,150651,0 +20994,Chinese Florist,10776,1257821,15 +20995,Julian,11873,1241,4 +20996,Robert Grant,34774,1425502,21 +20997,Panicked Student,11397,1212244,52 +20998,Maid,1995,129840,22 +20999,Digit Addams,2907,119867,13 +21000,7-Year-Old Mark,14534,76991,10 +21001,Animal Trainer,47955,102441,15 +21002,Uncle Bob,9591,6591,11 +21003,Alafair,36915,132433,7 +21004,Admiral James T. Kirk,154,1748,0 +21005,Zenjiro Amemiya,11953,929300,21 +21006,Zachary 'Zach' Gilmore,95743,52995,4 +21007,Investigating patrolman (uncredited),805,19444,21 +21008,Bobbie Lee Taylor,39428,30151,5 +21009,Seff,890,11260,7 +21010,Trey Wilson,38732,18735,2 +21011,Bloat (voice),12,18,4 +21012,Colin Clive,3033,29797,10 +21013,Lillian Neubauer,50225,60026,6 +21014,Ria (as Konkona Sensharma),109472,85666,0 +21015,Terry Gionoffrio,805,12024,6 +21016,Anne Henderson,655,9893,4 +21017,Ranger Frank (voice),14444,60950,1 +21018,Preacher,39771,101896,10 +21019,Mrs. Watchett,2135,17787,2 +21020,Member of Atomic Commission,28973,104305,14 +21021,Joe Pettibone,3085,5464,16 +21022,Anna Karenina,50512,1957,0 +21023,Ramon,43775,225032,3 +21024,Parade Onlooker (uncredited),2897,121322,293 +21025,Society Girl,2984,10171,7 +21026,Mr. Fallows,11428,13243,8 +21027,The Boss,985,14799,6 +21028,Little Girl Beggar,17889,127808,13 +21029,Dr. Selma Dritz,2887,10437,25 +21030,"Ignat, Alyosha",1396,55514,6 +21031,Scientist Talbot,9827,1390442,10 +21032,Broud,13853,15419,3 +21033,Ms. Fieldmouse (voice),28032,97832,6 +21034,Alex,25994,94503,5 +21035,Himself,54405,1232003,14 +21036,Sonny Liston,21828,1347338,15 +21037,Mowgli (voice),9325,57331,0 +21038,Clancy,24266,12536,7 +21039,Mr. Davis,39875,10555,5 +21040,Top Dollar,9495,7486,3 +21041,Jimmy Emmett,577,73421,2 +21042,Coach Roy,1793,19136,10 +21043,Marian Needham,29355,1242279,14 +21044,Dick Goodwin,11450,52602,1 +21045,Molly,210092,5942,7 +21046,Terry Prescott,14295,103,1 +21047,Virginia Wainwright,37936,131273,0 +21048,Vivian,30265,643,1 +21049,Gypsy,229,101890,27 +21050,Homeless,11830,554579,21 +21051,Henchman,77079,128672,7 +21052,Thomas Babington ‚Babe‘ Levy,10518,4483,0 +21053,Agent Blandish,24254,91440,28 +21054,Baby Carriage Woman #2,1637,1392883,26 +21055,Allison Fazio,53685,6281,9 +21056,Jess Robin,15310,69669,0 +21057,Candy,17692,1296395,45 +21058,Jack Hall,24936,14849,4 +21059,Harry,43002,15992,5 +21060,Fyedka,14811,105337,9 +21061,Screenwriter,4478,108098,12 +21062,Steph,10373,65302,1 +21063,Jerry Nadler,40866,14905,7 +21064,Pirard,35292,1479870,23 +21065,Kily Griffith,146341,7906,1 +21066,Ann Thomerson,37936,972893,5 +21067,John,15,33743,12 +21068,Antoinette,38922,10774,1 +21069,Prof. Heregood,37936,1081829,16 +21070,Verna Bernbaum,379,4726,2 +21071,Barney Sloan,43340,4347,1 +21072,Gisuke Shoda,17962,1029304,6 +21073,Ryan as Old Man,857,51931,36 +21074,Staedert's Technician,18,1857445,90 +21075,Miss Foxhill,14698,97250,6 +21076,Ajax Market Manager,18694,2758,5 +21077,Matthias (uncredited),7219,33820,10 +21078,Allen King,415072,1003892,8 +21079,George Shapiro,1850,518,3 +21080,Lt. Commander Worf,193,2391,4 +21081,Tom Cavanaugh,61813,21089,1 +21082,Miner,11576,84229,37 +21083,Serafine Pigot,9406,1146,1 +21084,Augustus 'Gus' Trenor,25520,707,1 +21085,Archie,52782,8731,3 +21086,Marny,678,115366,10 +21087,Walt 'Smitty' Smith,30666,106741,7 +21088,Goldman,320011,10825,1 +21089,Lt. Farrow,60285,103789,8 +21090,Casper Lindley,11379,80746,17 +21091,Melinda,14534,134082,21 +21092,Frank Tanner,21242,44188,3 +21093,Steve Fryman,55731,33192,13 +21094,Heroic Bricklayer,2721,239398,16 +21095,Tommy,41160,104795,12 +21096,Agent Wilson,9827,17343,16 +21097,Guy in Restaurant (uncredited),8467,1020736,79 +21098,Ellison,12311,8521,4 +21099,Shop Assistant,62463,1740170,13 +21100,Larry Darrell,24453,1532,0 +21101,Katherine Mullen,3595,14343,3 +21102,Laura,10805,66881,2 +21103,President Davis,27993,553478,15 +21104,Babe' Hanson,29239,35849,5 +21105,Man (uncredited),34106,1420903,90 +21106,Eliza Doolittle,11113,1932,0 +21107,Dona Gabriela,77079,1754329,10 +21108,Second Girl at Dance,2984,1887363,23 +21109,Richard Parker,8494,55265,1 +21110,Kuo Shao Long,38955,130598,6 +21111,Janet Donofrio,11091,142293,8 +21112,Subway Gang,169,20582,22 +21113,Mrs Burnham,25934,566324,13 +21114,Tank Sullivan,5551,16896,3 +21115,Uncle Jim Douglas,47816,84878,11 +21116,Tim Kirzminski,2924,48012,7 +21117,Swinger,28940,1851417,24 +21118,José's mother,16026,1007624,15 +21119,Foot Soldier,1497,1456543,64 +21120,Man at Seances,3092,1002218,7 +21121,Admiral Boom,433,5832,10 +21122,Surgeon,9540,42526,15 +21123,Wolfgang Harich,35263,3841,6 +21124,Ted Brautigan,11313,4173,0 +21125,Maxie Dean,4011,128621,10 +21126,Witchwoman #3,16441,19257,11 +21127,Mrs. O'Toole,6978,1217404,16 +21128,Nick Starkey,32059,8945,0 +21129,Dancer #2,1497,1456507,44 +21130,Baby Alice,42739,1406696,7 +21131,Lady Berwick,52782,1064082,7 +21132,Det. Milton Arbogast,539,1936,4 +21133,Hayward,12311,25174,23 +21134,Oscar Cresswell,43438,111664,2 +21135,Jake Wise,22160,4512,2 +21136,Sophie the Castle Maid,10992,6199,3 +21137,Girl,15037,1212123,16 +21138,mercante genovese,29743,100937,14 +21139,Bit Part (uncredited),9289,579413,27 +21140,Jessica Gordon,14522,1702788,9 +21141,Col. Milt,982,14735,10 +21142,Gary 'Jonesy' Jones,6171,20186,3 +21143,elle-même,64567,4273,3 +21144,Roy Ridnitz,26798,13726,3 +21145,Dr. Jainway,10344,64874,5 +21146,Himself,8672,14277,1 +21147,Mrs. Musgrave,10909,170074,4 +21148,General Zod,1924,28641,11 +21149,Pancho,43832,131545,23 +21150,Gloria Swenson,10889,4800,0 +21151,Barbara Land,75,516,2 +21152,Neaera Duncan,123047,115573,0 +21153,Cody McKussic,10396,44055,5 +21154,Bathing Suit Girl,6068,1215588,13 +21155,Seamus,7299,10862,5 +21156,Sir Bertilak,30584,24732,11 +21157,Myagkaya,50512,570530,33 +21158,General Mandible (voice),8916,193,4 +21159,Big Bill Shelly,22784,141,1 +21160,Female Police Officer,79593,195762,8 +21161,Filomena,61939,138327,0 +21162,Plog the smith,490,6665,11 +21163,Man at Boat Dock (uncredited),15,1283209,39 +21164,Sigmund 'Siggy' Marvin,10276,13389,3 +21165,Female Reporter,2887,170074,28 +21166,James Carpenter 'J.C.' Hooper,15762,83095,1 +21167,Keith,11374,148122,12 +21168,Eugene 'Skull' Skullovitch,6499,1215855,7 +21169,Ellita Sanchez,14931,4496,10 +21170,Airport Traveler,9475,1800184,41 +21171,Kermit the Frog / Rowlf / Dr. Teeth / Waldorf / Swedish Chef / Ernie / Granny / Horse & Carriage Rider / Link Hogthrob / The Newsman (voice),11899,55983,0 +21172,Landlord,23114,1210694,23 +21173,Roulette Croupier,4478,1804148,22 +21174,Eva Tanguay (voice),29204,165381,4 +21175,Fredo,9840,14610,4 +21176,Military trainer,1396,13710,4 +21177,Mrs. Cummings,9066,78589,20 +21178,Jakob Hotscevar,13701,8445,12 +21179,Col. Josef 'Pips' Priller,9289,38053,57 +21180,Elliott Templeton,24453,656,3 +21181,Elmo,10890,777,12 +21182,Susan Alexander Kane,15,11029,2 +21183,Monsieur Antoine,3587,33157,6 +21184,Mr. Dingle,71701,40964,9 +21185,Cmdr. Richard Day - HMS Devonshire,714,25688,23 +21186,Reporter,9296,1744155,31 +21187,Dr. Peter Venkman,2978,1532,0 +21188,Marge Hills,59066,36042,0 +21189,Victoria (voice),14317,146182,13 +21190,Heep,32872,74228,36 +21191,Roy Johnson,9816,11067,4 +21192,Girl on Wires,11377,98871,14 +21193,Nicky Santoro,524,4517,2 +21194,Prince George,17691,1069932,6 +21195,Harold - Blue Team Leader,17971,52304,2 +21196,Governor Ho,31586,91387,17 +21197,Adele Corners,10909,3196,2 +21198,Mary Marckx,22256,2140,2 +21199,Corey,32031,140777,1 +21200,Doug Clegg,10351,84400,10 +21201,Zelide,33367,1563035,5 +21202,Nymphomaniac (uncredited),194,98195,54 +21203,Theo,4248,33676,8 +21204,Eddie Dane,379,5169,6 +21205,Natalie,18414,1226913,9 +21206,Biff Tannen,105,1065,4 +21207,Marianne - Swana's Phone Friend,1859,955108,43 +21208,Col. Dunkhepf,11589,16106,16 +21209,Chon Lin,6038,49734,2 +21210,Party Guest at Central Park Casino (uncredited),43199,121323,11 +21211,Tim Donahue,21468,13295,4 +21212,Customer at Bloomingdale's,9778,59167,7 +21213,Ora Haley,5917,39774,13 +21214,Erik,42453,1075153,7 +21215,Stingo,15764,12688,2 +21216,Eric Boyett,6951,20220,18 +21217,Foot Soldier,1497,1456540,62 +21218,Reporter #3,10539,215904,12 +21219,Sfc. Dennis Worcester,10652,6106,6 +21220,Villager of Tullymore,10162,1609661,38 +21221,Anchorman,9358,1576976,18 +21222,Horatio Quaxton,24816,30501,5 +21223,Frederick J. Frenger Jr.,14931,7447,0 +21224,The Reaper,18477,1242423,8 +21225,Man in Inquirer City Room (uncredited),15,144549,146 +21226,Pedro,32093,106010,13 +21227,Le clochard,194,583312,27 +21228,Man Singing at Inquirer Party (uncredited),15,1331768,52 +21229,Jesse McCanles,32275,7664,1 +21230,Paraplegic #2 - Miami Convention,2604,928480,71 +21231,Dr. Julien Plumford,10714,8930,4 +21232,Jamie O'Hara,14534,4937,20 +21233,Young John Bayley,11889,19923,3 +21234,Minira / Minya,39462,1185644,14 +21235,Kate Mundy,5332,5064,0 +21236,Ed,17692,187608,46 +21237,A. O. Neville,9555,11181,3 +21238,Ivan,124680,1118,0 +21239,Captain Michael Brennan,31598,1733,0 +21240,Sergeant McManus,814,199977,15 +21241,Amelia,11091,1579,9 +21242,Neighbor (uncredited),34106,1275116,56 +21243,Badger Meyer,13667,87563,4 +21244,Harry Winston Dancer,9716,1661603,63 +21245,Mulan (voice),10674,78879,24 +21246,Mr. Wu,14136,91254,5 +21247,John Sullivan,11313,149484,13 +21248,Nikolai,50512,939,8 +21249,Sandrino's father,145925,1123328,12 +21250,Elstan Martin,10400,1393361,76 +21251,Joey Schneider,28047,1771,9 +21252,Additional Voice (voice),9016,19545,14 +21253,Bellboy,6068,1609236,28 +21254,Pvt. Pierre Arnaud,975,592,6 +21255,T.C.,2102,106702,11 +21256,Slim,22023,1072733,17 +21257,Gonzo,10208,64181,1 +21258,Power Operator,18,1857453,97 +21259,Filomina Francis,11692,1589963,12 +21260,Doctor,12079,64809,18 +21261,Jeff Markham (aka Jeff Bailey),678,10158,0 +21262,Jack Burden,25430,14502,1 +21263,l'attorney,52366,35002,10 +21264,Uncle Peyton,21801,1199749,11 +21265,Edwards,24750,1338541,9 +21266,Jimmy O'Brien,99826,11805,0 +21267,Tom,44932,16560,10 +21268,"Sfc. Bob White, Mortar Sergeant",10590,1479429,34 +21269,Major Dorian von Haarenwege (uncredited),11202,32526,37 +21270,Shooter at Drive-in,949,175600,29 +21271,Geddes,11235,105964,16 +21272,Elaine Robinson,37247,9594,2 +21273,Supply Sergeant,28,80874,18 +21274,Takuro Sugie,17962,19590,3 +21275,Dubois,8342,21446,8 +21276,Victor Prinzim,11950,6844,1 +21277,Girl at Dock,11236,1542817,17 +21278,Elizabeth Gardner,17770,42707,3 +21279,Mike the Cameraman,16550,84924,13 +21280,Lige,10747,62033,16 +21281,VIP,3682,33664,23 +21282,Mr. Reisner,261246,41957,4 +21283,Nacional,75892,256326,4 +21284,Tracey,10173,21320,7 +21285,Mechanic,41160,2482,9 +21286,Jimmy 'The Saint' Tosnia,400,1271,0 +21287,Man at Bar,12454,77638,26 +21288,Silas Barnaby,25898,30553,4 +21289,Platoon - Vietnam,2604,6474,41 +21290,Della Pesca,10400,6486,5 +21291,Mitch Wayne,69605,18735,0 +21292,Billie Frank,10696,66586,0 +21293,"Henry ""Uh-Huh"" Rogers",10897,55961,14 +21294,Federal Team,169,6326,24 +21295,Restaurant Patron (uncredited),34106,569144,39 +21296,Carol McCoy,2087,326,1 +21297,Actor in 'Coven',14242,545831,2 +21298,Narrator,21741,6577,0 +21299,4th Chance: The Refuser (uncredited),32600,1269082,14 +21300,Tanner,31005,26008,13 +21301,Sam Russell,42218,83623,9 +21302,Boy On Bike,33172,19143,12 +21303,"Petra, Chico's Wife",12639,44424,5 +21304,Man at Boat Dock (uncredited),15,1199823,38 +21305,Alexander Golitsyn,954,15320,9 +21306,Manny,9475,21382,13 +21307,Matsunaga Takeshi,34326,567246,16 +21308,Old Woman,1497,1456495,38 +21309,Pvt. Washburn,10652,1896,2 +21310,Admiral,1924,1607159,77 +21311,Pinhead,105,964124,41 +21312,Neighbor (uncredited),34106,1271045,52 +21313,Helen Moss,10440,371587,6 +21314,Jocko,11593,78789,13 +21315,Dr. Bradford,79593,156768,24 +21316,Vieja del carro,80713,954664,11 +21317,Pvt. Coke (uncredited),9289,6637,20 +21318,Tragedian,18971,1308727,16 +21319,Barmaid,753,179149,11 +21320,Pisuken,11830,136879,4 +21321,Pirate,6068,111185,14 +21322,Clifford 'Cliff' Harnish,24645,21733,3 +21323,Grocery Boy,11415,1217476,12 +21324,Dr. Wilbur Larch,1715,3895,4 +21325,Ricky Fitts,14,8210,3 +21326,French DeVoe,52772,2081,8 +21327,Monster,755,1027008,29 +21328,Lotto Observer,10162,52829,7 +21329,Jerry the Policeman,49410,16180,8 +21330,,56235,223811,2 +21331,Sally Baines,105,139044,24 +21332,Reporter,36797,1354257,15 +21333,Kenny,15037,13922,5 +21334,Martin,36489,100350,8 +21335,Head of Military,18,1857411,33 +21336,Roberto 'Bobby Tex' Texador,31598,23346,2 +21337,Uncle Sam Teacher - Tech School,18417,83056,14 +21338,Newland Archer,10436,11856,0 +21339,Marie Derry,887,13579,4 +21340,Foot Soldier,1497,1456545,66 +21341,Job Club Manager,9427,1356542,23 +21342,James Bond,660,738,0 +21343,Frew,24266,44843,12 +21344,Maria,3035,1146154,8 +21345,Le Squale,2110,21664,5 +21346,Janine Melnitz,2978,8873,6 +21347,Korean Shopkeeper,26889,96538,4 +21348,Gang Member,1448,17262,8 +21349,Newspaper Office Worker (uncredited),25430,1595378,60 +21350,Kate Everett,10354,1274513,12 +21351,Emma,10849,1902,12 +21352,Eric Von Zipper,53617,9109,3 +21353,Rachel - Tech School,18417,83055,13 +21354,Passerby #2 - Democratic Convention,2604,5148,85 +21355,Ilya Tretiak,10003,128719,28 +21356,Coach Yonto,14534,57597,19 +21357,Paparazzi Photographer,9296,4992,37 +21358,Boxer,379,1281541,39 +21359,Jane,28387,46423,1 +21360,Dahnya,10391,1220923,8 +21361,Picard's Kid,193,34199,13 +21362,Colonel Glover,10925,97953,11 +21363,Manfred Wekwerth,35263,1168171,7 +21364,Julia,9314,10652,2 +21365,Roland 'Rollie' Tyler,16820,29092,0 +21366,Harvey Bushkin,14819,26042,3 +21367,Radio presenter (voice),18939,222830,16 +21368,Gabara,39462,1482691,15 +21369,Wally Henderson,21711,160947,7 +21370,Girl in Music Store (uncredited),578,51550,17 +21371,Freddy Fredrickson,9591,74933,17 +21372,attore,25403,93721,12 +21373,Caroline Tate,18417,77028,4 +21374,Jenny Meyer,13667,15655,2 +21375,zia Delia,145925,1897666,17 +21376,Jennings,5279,27554,11 +21377,Maid,229,927616,52 +21378,Knustford Welcome Club Dignitary (uncredited),11202,1089967,36 +21379,Isabel,253632,2744,2 +21380,Ottoline Morrell,46797,1252726,9 +21381,St. Bernard / Officer Andrews (voice),19042,24362,13 +21382,Dr. Yang (''Iron Monkey''),12780,120725,0 +21383,Jazz Combo Member,28577,238748,25 +21384,New York Policeman (uncredited),61934,115077,19 +21385,Anita,5155,42408,2 +21386,Oscar,19324,53763,11 +21387,polis,29224,1024803,19 +21388,Dominique,91076,17328,3 +21389,Christine,2625,5148,17 +21390,Darryl Small,40490,147496,14 +21391,,18919,1320285,10 +21392,Arvide Abernathy,4825,22093,7 +21393,Train Pull Foreman (voice),9023,84494,14 +21394,Melaina,38043,2233,2 +21395,Winston Taylor,10222,169702,4 +21396,Mina Tannenbaum,86369,40938,0 +21397,Cop #1,3595,1811956,23 +21398,Agent on street,24254,23420,52 +21399,Doorman at Party,11458,1289296,4 +21400,Karen Richards,705,10607,3 +21401,Partygoer,1678,1478365,26 +21402,Veterinarian,2898,1212632,22 +21403,Cafe 24 Busboy,2898,65829,41 +21404,Capt. Vinh,1369,16582,7 +21405,se stessa,25403,3130,9 +21406,Woman (uncredited),33364,567219,12 +21407,James 'Jimmie' Shannon,32600,8635,0 +21408,Elrond,120,1331,6 +21409,Society Man,42987,26157,6 +21410,Arresting Deputy #2,1578,104578,28 +21411,Logan,10803,13919,0 +21412,Chief of Campa Indians,9343,1101309,8 +21413,Daryl,88863,71913,1 +21414,Man at Party in Everglades (uncredited),15,945285,20 +21415,Dr. Stephanie 'Stevie' Branton,1687,18648,3 +21416,Lloyd Richards,705,10609,5 +21417,Witch,11415,545855,21 +21418,Books' Victim in Flashback,12584,50975,16 +21419,Sylvia Bennington,12154,18331,3 +21420,Brotha X,66894,1277051,6 +21421,Plainclothes policeman,18939,133564,13 +21422,Receptionist,38965,1213951,10 +21423,Malfaire,28169,98317,4 +21424,Don,46989,194335,9 +21425,Sugimoto,327,4995,9 +21426,Little Boy with Balloons,814,1660163,36 +21427,Bloomingdale's Saleswoman #1,9778,59168,10 +21428,TV Reporter,30547,1507165,19 +21429,Zak Young (voice),13225,184498,5 +21430,Neighbor (uncredited),34106,1072363,53 +21431,gynekolog,18939,133559,8 +21432,Oleg,8665,55594,23 +21433,Klansman,817,17348,11 +21434,Albert Einstein,11777,6837,2 +21435,Kreplich,41760,7169,11 +21436,Nurse Lauren,10727,60004,8 +21437,Faye,11104,12671,2 +21438,Emerson,12764,19427,10 +21439,UB,95627,1320440,14 +21440,Mr. McCress,14612,18763,11 +21441,Epiphany Proudfoot,635,3232,2 +21442,Wendy,15745,591368,9 +21443,Blue Collar Guy,1850,10872,12 +21444,Masanobu Kosaka,11953,1484288,16 +21445,John Dixon,24584,92024,1 +21446,Farmer at the inn (uncredited),490,321845,18 +21447,2nd Editor,1924,228973,33 +21448,Sissy,17496,26513,1 +21449,George Loomis,19736,45415,0 +21450,Coachman,9028,27412,26 +21451,The Princess Nirvena,50001,106553,10 +21452,Uniform Outside Station,11001,1672645,21 +21453,Associate of Mr. Eddie,84735,21385,10 +21454,All Voices (voice),18919,47851,3 +21455,Judge,16235,80143,14 +21456,Girl Entering Locker Room,26378,87826,66 +21457,Mary,10134,1812175,8 +21458,Toby Jay Wadenah,5955,1121,6 +21459,Teddy,638,9306,27 +21460,"Mr. Duffy, Foreman",41590,36927,10 +21461,Craig,205054,100158,6 +21462,Greg,11449,1328167,7 +21463,Mulan (voice),10674,1398807,23 +21464,Apocalypse Inc. Executive,28165,97825,15 +21465,Major Anya Amasova,691,10458,1 +21466,"Andrea Reynolds, Claus' Girlfriend",38718,11870,7 +21467,Asha,14587,1031118,5 +21468,Donald Quinelle,28466,2157,0 +21469,Dorothy Mann,29787,14108,3 +21470,Angelo 'Al' Scarlatti,49365,20752,2 +21471,Det Insp Hepburn,15940,2451,7 +21472,Student (uncredited),220,108273,39 +21473,Letter Sweater Guy,11442,116834,21 +21474,Lt. Clyde Webber,28047,3982,5 +21475,Su Hua Chi,11230,68676,1 +21476,Cristina as a child,2441,24982,9 +21477,Luki Dedham,15875,78899,8 +21478,Adm. Hariman Nelson,2160,12308,0 +21479,Lieutenant Mulvey,11943,19139,10 +21480,"Petar ""Blacky"" Popara",11902,70874,1 +21481,Albert Trotta,10750,725,16 +21482,Dotty,5922,21519,2 +21483,Brian,26689,11805,3 +21484,Butterfly Trader,5924,152681,17 +21485,Rollin H. Parker - Rains' Gopher,13496,12646,10 +21486,2nd Elder,1924,19463,17 +21487,Ophelia,18971,1235292,6 +21488,Capt. Stacy,29959,105368,7 +21489,Bobby (uncredited),1817,7499,9 +21490,Rita Boyle,2613,5344,0 +21491,Villager of Tullymore,10162,1609659,36 +21492,Rickey,26889,71943,14 +21493,le colonel Lacaze,52366,133836,9 +21494,Sgt. Frank Lackley,14931,7675,12 +21495,Hidetora's concubine,11645,1484311,19 +21496,Gambler (uncredited),11697,27164,49 +21497,Dowager Queen,16176,45465,3 +21498,Derek Du Pré,46992,4391,4 +21499,Helen Shyres,7340,3202,19 +21500,Ducky,12144,16216,2 +21501,Mose Harper,3114,30299,11 +21502,Dr. Hennessy,43316,40623,8 +21503,Running man,11830,96637,8 +21504,Aïcha,26252,94952,19 +21505,Stuart Ullman,694,10411,4 +21506,Queen,3028,29714,6 +21507,Aislinn's Chess Partner,8840,1074683,17 +21508,Elsa Tabori,124625,83437,2 +21509,Man in Front of Spit,26378,1422893,49 +21510,Rhoda Williams,55420,222330,1 +21511,Chad Symmonz,15489,55779,6 +21512,Frank Morrison,54287,94764,4 +21513,French FedEx Loader,8358,1177850,11 +21514,Party Guest,29787,11768,11 +21515,Neville Gifford,59066,4783,3 +21516,Linda Cervi,46786,32774,4 +21517,Maxie Stultz,33668,3442,5 +21518,Tina,18642,45283,4 +21519,Camilla Powell,35292,115618,29 +21520,Jordan Cochran,14370,2885,2 +21521,Ah Pei,12481,562290,11 +21522,Captain Brieux,42453,26890,2 +21523,Luis Cali,10750,36218,5 +21524,Man at Party in Everglades (uncredited),15,1468521,108 +21525,Bee,9427,1335637,15 +21526,Kulozik,12101,235365,8 +21527,Dr. Mandrake's Girlfriend,9563,1741438,66 +21528,Lisa,1689,2233,1 +21529,Himself,9403,545850,9 +21530,Chopper pilot,11008,91042,21 +21531,Citizenship Student,4478,154182,29 +21532,Violet - Age 8,18222,553982,5 +21533,Lt. Matthews,11576,8233,38 +21534,The Great Vorelli,29318,31295,0 +21535,Takayama,13889,96637,2 +21536,Woman at Phone Booth,46986,189128,6 +21537,Fhloston Hostess,18,1857436,75 +21538,Richie,13555,104418,8 +21539,Katie Bell,403,937317,12 +21540,Phillip,197,2477,18 +21541,Shelby Gilmore,47942,8252,2 +21542,Sean Brody,580,16218,7 +21543,Jérôme,12652,48576,13 +21544,Soldier,1678,1167993,19 +21545,Party babe,9059,544069,15 +21546,Mr. Plaisted,13526,189636,6 +21547,Capt. Vernon Demerest,10671,4299,1 +21548,Darryl Hallenbeck,19142,1180940,8 +21549,Paul,26689,1652960,9 +21550,"Tom, Surgical Fellow",795,28004,15 +21551,Roger Donahue,11812,23532,4 +21552,Brown's Hole Rustlers,5917,97978,32 +21553,Seffin,890,14636,6 +21554,Sheriff Tupper,9059,24046,8 +21555,Félix,77056,262738,4 +21556,Extra (uncredited),2897,997985,103 +21557,Alana Files,11313,1989,7 +21558,Conspirator (uncredited),289,120700,65 +21559,"Speaker - Syracuse, NY",2604,38951,57 +21560,Cap. Lee Crane,2160,22091,4 +21561,Cub,10803,33832,14 +21562,Mabel 'Rosie' Rose,26949,163951,3 +21563,Billy,30547,10127,0 +21564,Female Wing Kong Guard,6978,1677328,43 +21565,Tom Cassidy,539,78902,7 +21566,Villager of Tullymore,10162,1609649,25 +21567,Shôchikuyama,28165,1200505,9 +21568,Transaction Man,22213,7675,10 +21569,Gideon,125945,52688,8 +21570,Manicurist,8467,1853181,39 +21571,James the Younger,2428,24808,1 +21572,Clark,2124,1370,5 +21573,Le facteur,12716,39142,9 +21574,,25538,1411319,20 +21575,Captain,10047,1077833,13 +21576,Liquor Store Clerk,10937,107982,11 +21577,Dancer,10603,1748116,41 +21578,Antonio Balbi,7305,147119,1 +21579,Zahra,43978,1890327,2 +21580,Hendricks,26378,29987,62 +21581,Account Guy,11450,2171,13 +21582,Croaker / Miss Spain,19157,50583,4 +21583,Warren,37410,18472,5 +21584,Kid,9776,59163,19 +21585,Dennis Slayne,1647,28870,4 +21586,Halloran,11535,52366,14 +21587,The Singer,43832,131542,24 +21588,Otto Kerner,28176,14849,14 +21589,GM1 'Mule' Mulhall,14886,77483,1 +21590,,49688,1365100,8 +21591,Oberst Ruzitska,29471,1132942,5 +21592,Flying Cop,18,1338974,50 +21593,Sergeant Vince Banger,24405,2048,8 +21594,Gypsy's Mother,229,34331,36 +21595,Lobo,36489,100796,2 +21596,"Orin Scrivello, DDS",10776,67773,3 +21597,Screenwriter,4478,57869,13 +21598,Undetermined Role,31995,553494,25 +21599,Bouncer (uncredited),93350,159870,25 +21600,Dave,2085,21360,11 +21601,Gillian,7863,29791,8 +21602,Cecilia 'CC' Carol Bloom,15592,167640,6 +21603,Natasha,9404,86866,6 +21604,Sister Luke,505,6917,9 +21605,Procession Leader,229,129329,31 +21606,Nick,2721,19632,8 +21607,Adele,11185,939792,10 +21608,Dodge,19855,96228,19 +21609,B.J. Harrison,242,3267,7 +21610,Tert Card,6440,4935,4 +21611,Teen on Midway Gawking at Mermaid,38775,121370,12 +21612,Ruth Squires,215875,7673,2 +21613,Ryan,12103,37204,15 +21614,Kenshin Uesugi,11953,1484296,27 +21615,Strip-Club Owner,1480,44715,17 +21616,Berl,14811,134667,22 +21617,Gudrun,5608,44354,13 +21618,Sheriff Pete Ricker,44414,6110,4 +21619,Footstool (voice),10020,15831,18 +21620,Desk Sergeant,16820,199842,10 +21621,Eyeball Chambers,235,3039,8 +21622,Hannah,39938,949160,11 +21623,Ahmed,20123,85643,1 +21624,Hector,10173,11160,13 +21625,Golden Dragon Club member,9404,1277940,13 +21626,Mrs. Chambers,539,19781,10 +21627,Taylor,2613,2283,6 +21628,Rebecca Smythers,40095,1680009,8 +21629,Harmon Shaw,118991,5563,6 +21630,Maj. Bruce 'Snake' Crandall,10590,17141,1 +21631,Platoon Sgt. Abe Stimmler,35284,12313,3 +21632,Setsuko (voice),12477,72414,1 +21633,Pierrot,26252,94941,5 +21634,Carole Kovacs,17771,13549,10 +21635,Jailor,197,188433,49 +21636,Sandy Grimes,287,16506,15 +21637,Bikini Girl,8467,1853173,35 +21638,Digital Underground Member,11933,54422,7 +21639,Receptionist,54405,1236748,24 +21640,Taxista,99,952,21 +21641,Sheriff,3597,33269,9 +21642,"Elinu, the High Priest",41516,6933,3 +21643,Mr. Owens,30924,107312,9 +21644,Robbie Bakersfeld,10671,1412543,27 +21645,Simon Carr,19200,12900,15 +21646,Salvatore bambino,11216,68635,3 +21647,The Spy,11712,70324,2 +21648,Dr. Rosen,2625,12876,9 +21649,Deputy Pete Willis,8869,1539,5 +21650,Jerry,11622,172734,9 +21651,Mother of Underage Girl (uncredited),32600,1361156,10 +21652,Amos,24254,91444,34 +21653,Jerome,169,1877156,35 +21654,Mary Dalton,108312,4513,2 +21655,Bank Guard (uncredited),34106,932310,111 +21656,District Attorney Milton,28577,129995,6 +21657,Club Galore Twin,11535,1674951,67 +21658,Gas Station Attendant (uncredited),3078,30530,10 +21659,Samuel,10586,51878,3 +21660,Linda,23069,148603,10 +21661,Charlie McCorry,3114,30554,8 +21662,Howard,22477,656,5 +21663,Tiffany,1813,79581,46 +21664,Steward,30547,100279,28 +21665,Roadie,11397,1215262,56 +21666,Esther,77056,27637,0 +21667,Maren Hontvedt,13526,98,3 +21668,Mehmed,43915,1231662,8 +21669,2nd Lt. Jack Geoghegan,10590,21594,4 +21670,Laurie,12618,1215689,18 +21671,Maga Columbia,29743,41342,12 +21672,Grace,10950,154625,26 +21673,"Bob, the Driving Instructor",24584,80371,15 +21674,Miss Gulch / The Wicked Witch of the West,630,9072,6 +21675,Cab Driver,10590,428,36 +21676,Kicker,9563,1741401,35 +21677,Man (uncredited),34106,116307,99 +21678,Jeffrey,4478,105701,24 +21679,Pianist,43828,31771,22 +21680,King Kong,31947,93166,5 +21681,Tom Sullivan,210092,35350,0 +21682,Mr. Baker,28940,102423,4 +21683,Richard Gecko,755,138,1 +21684,Hayley Wheaton,27681,21320,1 +21685,Kanuthia,606,10658,14 +21686,Menage A Trois Woman,1813,154698,30 +21687,Khan Noonien Singh,154,1793,7 +21688,Papa Charlie,49365,1660632,7 +21689,Notary,9343,1081415,13 +21690,Extra (uncredited),2897,1221198,191 +21691,Mai Ling,15734,78695,4 +21692,Chenille Reynolds,9816,11703,2 +21693,G.I.,15379,136422,12 +21694,(uncredited),5998,225288,32 +21695,Jerboa,32595,79364,2 +21696,Kim Hinton,10708,9788,3 +21697,Hunter,9028,1020326,23 +21698,Mom,90414,1219831,6 +21699,Mia,490,6657,4 +21700,Henchman (uncredited),11697,50310,47 +21701,Harvey,9717,14782,5 +21702,Nurse,11159,1229178,26 +21703,Lewis,4986,21925,17 +21704,Funboy,9495,9289,10 +21705,Henri,4978,290,10 +21706,"Peter Duchin, Age 12",43199,80574,4 +21707,Peter Patterson,26661,30111,0 +21708,Big Bang The Martian,53617,7167,10 +21709,Dr. Megan Eisenberg,11862,209,9 +21710,Julian Lewis,15321,147877,1 +21711,Martha Shepherd,8844,53715,18 +21712,Sharkey,709,1735,5 +21713,Helen Miles Singer,9716,1661646,104 +21714,Sonia Horowitz,44308,9137,0 +21715,Zack,10336,8186,7 +21716,Soldier Velazquez,9827,52422,12 +21717,Bernie Lomax,8494,55267,2 +21718,Prosecuting Attorney Mandel (uncredited),10862,19839,16 +21719,Professor Mandry,261246,4391,1 +21720,Charles Wheeler,3172,31712,4 +21721,Splinter (Voice),1498,77156,8 +21722,Lochlan,197,1073161,43 +21723,,85837,1211994,10 +21724,Kaya,38618,13098,4 +21725,Bert,29143,56695,6 +21726,Dr. Petrie,31498,96721,5 +21727,Charles Remington,10586,3392,0 +21728,Harry McKenna ['Big Harry'],19403,4966,4 +21729,Henry Beaufort,10657,172757,12 +21730,Lasse,742,11045,9 +21731,Man (uncredited),34106,1290486,102 +21732,Mr. Burmeister,2144,3392,3 +21733,Sylvia Bennington,11630,18331,3 +21734,Charlie - Man with Como,1578,1006721,10 +21735,Cordelia,9059,32290,3 +21736,,78231,1360193,7 +21737,Council Officer,13852,75901,17 +21738,Maggie Peterson,10585,8900,4 +21739,Akbar,15267,10510,5 +21740,Dr. George Waggner,11298,10662,0 +21741,Annina Brandel,289,4118,10 +21742,Wayne Kerrigan,13852,75891,5 +21743,Tony Vivaldi,9593,5401,6 +21744,Marjie Baile,38732,78859,5 +21745,Lt. Col. List (uncredited),10590,102567,54 +21746,Linda Beale,29343,60291,5 +21747,Minor Role (uncredited),2897,1559631,253 +21748,Sir Joseph,606,10655,11 +21749,Sgt. Cantrell,12106,65827,7 +21750,Police Sgt.,14136,89834,9 +21751,Rose Valdez,47942,24499,8 +21752,Miranda Hillard,788,35,1 +21753,Rex (voice),18890,1230,0 +21754,Engineer Bruns,24918,78619,5 +21755,Louie,28047,4808,6 +21756,Kelly,93350,1857005,22 +21757,Psych Patient #3,11618,166652,18 +21758,Marco's mother,91076,11484,15 +21759,Mary Agnes,1715,59882,13 +21760,Collins Hedgeworth,19731,107308,5 +21761,Roy von Bacon,18,1857435,74 +21762,Spike,41760,1597482,8 +21763,Josh McCoy,11853,20212,7 +21764,Cmdr. Kate Bowman,8870,530,1 +21765,Paraíba - Shorty,598,55105,13 +21766,Kato,327,4990,4 +21767,Speaker,24005,935073,17 +21768,Derek Wallace,10663,37947,5 +21769,Himself,20075,91431,7 +21770,John T. O'Banion,4476,37432,8 +21771,Jennifer Tilly,37718,7906,5 +21772,Eric Parker,146341,62036,3 +21773,Bobby Brady,9066,1011102,8 +21774,Civic Leader (uncredited),15,1269188,126 +21775,Lt. Colonel Korn (XO / Roman policeman),10364,7795,5 +21776,Athletic Beauty,8467,65020,7 +21777,Cecil Vyse,11257,11856,10 +21778,Richard Lucas,320011,10000,5 +21779,Xylo / Pirate / Bandit,10134,1363425,14 +21780,George Dawson,7340,52465,13 +21781,Jim W. Gettys,15,14518,3 +21782,Grasshopper (voice),10539,4001,14 +21783,Beryl,9427,1356548,28 +21784,Sister Joseph,10391,160261,12 +21785,Julian 'Frankenstien' McGrath,9032,95686,10 +21786,Lily Marvin,10276,164131,8 +21787,Dameia,28893,102335,6 +21788,Billy,10847,1077741,22 +21789,Arthur Chambers,10219,9880,18 +21790,Dirty Harry Officer,8989,1075119,11 +21791,Jewel Valentino,2144,882,1 +21792,Men in suits,11159,94219,34 +21793,Madame Serena Merle,36758,10767,2 +21794,Jackie Lemancyzk,11975,12519,6 +21795,Bongo Drummer at Dance Studio,10603,1748111,29 +21796,Whitt Bass,24795,2203,14 +21797,Bonnie Lisbon,1443,17239,10 +21798,Harry Winston Dancer,9716,1661607,66 +21799,"Jerry, Civilian",28,8346,10 +21800,Old Man,1497,1456497,39 +21801,Ray Kinsella,2323,1269,0 +21802,Buck,1049,3204,4 +21803,Det. Andy Parker,4986,16101,6 +21804,Ronnie,85160,1432459,6 +21805,Bobby,27526,47879,9 +21806,Marcel,29449,146714,3 +21807,Louis Aragon,11859,60118,7 +21808,Mr. Baskin,2280,143205,8 +21809,Kevin,32872,42745,32 +21810,Judge Larner,10400,130724,22 +21811,Kay,15677,2167,6 +21812,Big Boy,59181,1081815,17 +21813,Mrs. Posner (uncredited),578,592894,22 +21814,Michael Reisler,29143,27888,4 +21815,Johnny,49688,974798,1 +21816,Cafe Patron,76,1265421,22 +21817,The Donut Clerk,9464,1733422,10 +21818,Workman,17692,1296381,24 +21819,Minor Role (uncredited),2897,1601650,254 +21820,Catherine Weaver,31618,26513,0 +21821,Ginny,28120,77081,3 +21822,Mr. Sleep,2666,1121516,15 +21823,Jen,9889,61409,16 +21824,Exec. #2,13105,1080265,14 +21825,Chang Sing #2,6978,165827,20 +21826,Jefe,8388,41737,6 +21827,Mr. Almond,45019,1487532,8 +21828,Men in suits,11159,1230708,33 +21829,Roxanne Sarrault,28,9893,35 +21830,Juggler,43828,1471400,32 +21831,Soda Jerk,11622,9998,6 +21832,Ruth Roberts,10657,1840843,20 +21833,Man Singing at Inquirer Party (uncredited),15,1420567,50 +21834,General Catburd,11379,124602,12 +21835,Anna (archive footage),25403,12520,17 +21836,Richards,32484,8516,11 +21837,Bob Wills,37917,1123104,13 +21838,Factory Watchman,73247,102441,7 +21839,Kiev Room Agent,954,69471,26 +21840,Detc. Dehling,2144,1230,6 +21841,Kitty Greer,31863,8985,2 +21842,Alaskan Grandpa,31586,3093,11 +21843,Hadass,10269,27563,2 +21844,Lau Kin Ming (young),10775,20372,6 +21845,Virgil Starkwell,11485,1243,0 +21846,David Stephens,9905,2040,1 +21847,Detective Geddles,20307,85922,14 +21848,Interrogation Room Soldier,409,3702,21 +21849,Lara Campbell,11635,15050,4 +21850,Cafe 24 Waitress,2898,181434,40 +21851,Dorothea von Haeften,26149,52951,11 +21852,Sandy Allen,125413,98451,8 +21853,Hargis,10344,190204,12 +21854,Fruma Sarah,14811,185830,19 +21855,Henry - the Head Waiter (uncredited),34106,30530,22 +21856,Campbell,57575,34130,11 +21857,Narrator (voice),10693,48962,8 +21858,Qualen,11943,2454,11 +21859,Captain Anderson,961,14419,2 +21860,Eagle Thrust Seven Helicopter Pilot (uncredited),28,8655,28 +21861,Wayne Hisler,20443,7675,3 +21862,Lou Baker,2990,29382,6 +21863,Rooster (voice),9598,61351,10 +21864,Louise,31417,15385,1 +21865,Mrs. Pendleton,70801,29954,5 +21866,Patty Simcox,621,8904,14 +21867,Thea Brody,580,16216,5 +21868,Russian (uncredited),14811,202402,33 +21869,Benji Rasnick,2115,21735,8 +21870,Villager of Tullymore,10162,1609666,43 +21871,Rollings,10671,1221564,40 +21872,Schweimann,33680,120537,14 +21873,Walter Gaskell,11004,19576,8 +21874,Ali,21334,87389,1 +21875,Bottom Hammer,41823,5502,12 +21876,Dr. Otto Hasslein,1687,8544,4 +21877,Erno Windt,11561,41269,2 +21878,Lev,8358,55438,9 +21879,Debbie,22398,232743,4 +21880,Nancy,11302,9565,1 +21881,Shuttle Mechanic,18,1435006,70 +21882,Mac the Bartender,46986,1535180,34 +21883,Frank Wyler,5425,43233,0 +21884,PTA Heckler,2323,1890719,19 +21885,Newsboy,26378,1090887,32 +21886,Mountain Man,24266,91486,3 +21887,Carl Maia,10973,30555,3 +21888,Dr. Wellin,9294,26660,5 +21889,Roberto,3595,40543,17 +21890,Erin Castleton,41469,15250,0 +21891,New Jersey Policeman,10400,1393358,72 +21892,Sheriff Ira,11428,10380,3 +21893,Hilary,3537,32388,4 +21894,Ben Williams,24795,10297,7 +21895,Man (uncredited),34106,120437,94 +21896,Girl from Brooklyn,17889,34516,5 +21897,Dinah,12454,72314,16 +21898,Bob,112991,5950,5 +21899,Halley Buchanan,9778,18354,3 +21900,Capcom,5551,1188456,12 +21901,Bartender,79593,58950,23 +21902,Abbazi (uncredited),983,1584544,12 +21903,Gerald Parsley,29444,4255,7 +21904,Billy 'Downtown' Anderson,9771,27740,6 +21905,Edna Gruber,31417,24300,4 +21906,Tina Barr,11091,3282,12 +21907,Grandma,18282,140778,5 +21908,"Danny, Lewis' Roommate",10866,156011,4 +21909,John Norton,2669,26864,20 +21910,Wanda Brem,30352,106115,8 +21911,Moamar,9079,1170974,10 +21912,Tom Andrews,50463,3002,4 +21913,Mr. Escobar,18736,143331,11 +21914,His Agent,31995,3679,4 +21915,Styopa,20992,562719,11 +21916,Gnoc Deng,37410,189721,16 +21917,Frank Anderson,23223,27736,9 +21918,Kirtle,12764,136514,12 +21919,Clara,9529,980863,6 +21920,Gösta Angerud,16026,79062,6 +21921,War Department Captain,857,92811,32 +21922,Mrs. Owens,30924,107313,10 +21923,Daisy,6522,5411,11 +21924,Joanna MacKenzie,11862,54348,8 +21925,Mike,24739,3008,11 +21926,7th Reporter,1924,1681416,40 +21927,Jay,327,4991,6 +21928,Franz Werfel,56934,225232,4 +21929,Peter Hoskins,2613,7447,1 +21930,Andy Warhol,549,7487,1 +21931,Aunt Eloise,140519,8963,9 +21932,Alexander,25969,233298,2 +21933,Judge D. Greenwalt,30352,43950,19 +21934,Watson Brewer,48287,52374,7 +21935,Deke,287,4043,7 +21936,Portia,623,8948,6 +21937,Crystal,10776,83600,7 +21938,Lt. Jim Ravencroft,22328,74573,6 +21939,Odell,26889,55271,6 +21940,Cody Zamora,11853,289,0 +21941,Max Neurick,3597,16478,5 +21942,Price's Secretary,11377,218907,13 +21943,Sandy Olsson,621,8892,1 +21944,Woim,10897,67384,16 +21945,Mae,51802,13785,1 +21946,Petty Officer,1924,141087,76 +21947,Sully Sullivan,11593,3636,0 +21948,Paula Powers,19731,68445,1 +21949,Jerry Green,10783,31028,7 +21950,TV Anchor,10603,1748106,24 +21951,Italian Officer Tonnelli (uncredited),289,125808,56 +21952,Girl at Funeral,12506,264968,20 +21953,Gloria,46029,3234,4 +21954,Eagles Road Manager,786,59255,29 +21955,Sarah Whittle,8844,5149,4 +21956,Extra (uncredited),539,1574696,19 +21957,D.A. Mackie,31306,85142,10 +21958,'Ronald Reagan' Video Waiter,165,1434976,20 +21959,,78285,583571,8 +21960,Soldier,46924,71084,25 +21961,Starlighter,165,1200793,43 +21962,Angela,5,3130,2 +21963,,10643,1060571,10 +21964,Loan Officer,2990,6486,13 +21965,Mrs. Ballew,24005,67290,8 +21966,Vampira's Friend (uncredited),522,1116141,64 +21967,Perdita,12230,71782,5 +21968,Sexy Girl #2,10173,97725,21 +21969,Kitagawa Teruko,28273,134319,11 +21970,"Chad, Seduce & Destroy",334,1219029,28 +21971,Washington Dimsdale,43828,83474,3 +21972,Father Mulligan,10162,1557582,21 +21973,Elizabeth Tate,18417,3092,1 +21974,Hospital Porter,814,14759,13 +21975,Mr. Laurence,39938,81934,6 +21976,Cynthia,59181,1709423,10 +21977,Guard at Shower,10724,1472601,33 +21978,Lady Lavenham - Indignant Woman in Doorway,1859,81941,23 +21979,Kenny Tate,59930,3977,1 +21980,Murdered Youth,11257,1495216,24 +21981,Brenda Meeks,4248,35705,6 +21982,Jennifer Parker / Jennifer McFly,165,1951,3 +21983,Father Cavanaugh,14534,10360,17 +21984,Madame Monteil,36245,31819,3 +21985,Karel,18939,83952,1 +21986,Reverend Grissom,10391,65,11 +21987,The hitchhiker,27332,6752,10 +21988,Cop,1637,90339,38 +21989,Frith (voice),11837,39741,12 +21990,Joey Harper,13555,74642,1 +21991,Tattooed Sailor (uncredited),21468,161766,17 +21992,Alex,99,311,17 +21993,Rory,12454,55466,0 +21994,Léopold,42832,234197,9 +21995,Vet - Villa Dulce,2604,56979,64 +21996,Stephanie MacDonald,2990,12133,5 +21997,The Snow Fairy,12516,72607,3 +21998,Sen. Porter,15379,78183,2 +21999,Reporter,9296,239021,33 +22000,Jack Slater,9593,1100,0 +22001,Paco,4307,36281,8 +22002,Guard at Hospital,549,1218174,18 +22003,African Leader,30379,61307,8 +22004,D' Agostino,18079,944066,11 +22005,Defense Attorney,31586,105626,10 +22006,Paul Wick,36797,12645,4 +22007,Frank,26689,26485,0 +22008,Admiral Harry Pearson,11422,89040,13 +22009,Mother,1678,1478368,29 +22010,Korben Dallas,18,62,0 +22011,Gio Esposito,41209,47770,5 +22012,Actor,11397,55115,27 +22013,PTA Heckler,2323,77635,20 +22014,Col. Hendricks,35284,76238,15 +22015,Anthony,30994,1216431,6 +22016,Waiter at the Blue Parrot (uncredited),289,114402,20 +22017,Archie Graham,2323,11805,7 +22018,Kendall James,47886,100811,4 +22019,Curt / Featured Player,31044,97701,29 +22020,Peter Joseph 'Peejoe' Bullis,31306,155,2 +22021,Vinnie D'Agostino,10154,60023,5 +22022,Hauptmann Haller,11101,554451,10 +22023,Chairman,27834,29426,8 +22024,Compiegne's Mayor,10047,62441,23 +22025,Heather Tate,18417,34490,5 +22026,Colonel Hendricksson,9102,27811,0 +22027,Slow Clapper's Instructor,11397,78501,84 +22028,Suzue Kunihiro,34326,997708,3 +22029,Colonel Kominski,9423,1389605,9 +22030,Maude,10395,55643,10 +22031,Michael 'Tum Tum' Douglas,16314,80281,3 +22032,Sheriff McCloud,31503,6067,5 +22033,Dancer,6068,1609264,47 +22034,Barbara Beck,12476,160267,9 +22035,Big Pink,549,7621,8 +22036,The Hoggets' grandson,9598,1080209,15 +22037,"Pace, il produttore",422,5688,9 +22038,Cigarette Girl,1859,1280469,26 +22039,Dr. Paul Cochrane,69605,2646,7 +22040,Renato Amoroso,10867,67612,1 +22041,Willard,47886,39782,5 +22042,Sergeant Roche,1448,1709,3 +22043,Extra (uncredited),2897,1359743,194 +22044,Thomas Aquinas,9946,14325,6 +22045,Man in Nightclub Cloakroom (uncredited),678,179327,32 +22046,Bobby Fine,84735,31070,0 +22047,Entertainment Reporter,9296,164039,27 +22048,Eva,742,11038,2 +22049,Pvt. Cooper,11880,9013,1 +22050,Harry,12220,71728,13 +22051,Female Officer,11001,184436,35 +22052,Maman qui apprend à faire du vélo à son petit garçon,12716,1823374,19 +22053,,102,121519,19 +22054,Mary Lennox,11236,13010,0 +22055,Adult Trip Fontaine,1443,60650,4 +22056,River God (voice),129,554423,10 +22057,Rosemary,17168,7401,10 +22058,Staatsanwalt Dr. Korten,4762,39308,13 +22059,Asst. Dist. Atty. Aloysius 'Al' Francis Reilly,31598,16327,1 +22060,Anne Gauthier,42726,5682,1 +22061,Cárdenas,18079,638709,14 +22062,Bert Thomas,262,43816,8 +22063,Member of climbing team,12516,19048,14 +22064,Arthur Brooks,9032,33489,11 +22065,Curt Henderson,838,3037,0 +22066,Dude,11397,1228313,43 +22067,,15904,72170,0 +22068,Peter Stenning,28430,38070,2 +22069,Dean,62463,240450,19 +22070,Diller,10671,1412679,42 +22071,Clerk,9426,1030869,9 +22072,Ginnie,29938,100545,7 +22073,Sklaroff,31863,6110,7 +22074,Li,45861,143358,4 +22075,Salt Lake City Police Desk Clerk,10866,154996,7 +22076,Stephen Simmons,19855,1269,1 +22077,Simon,10847,18473,3 +22078,Amy's Classmate (uncredited),39938,14870,15 +22079,Sydney Morehouse,23805,13726,2 +22080,Lo 'Dark Cloud' / Luo Xiao Hu,146,1622,3 +22081,Erin,10708,1786653,27 +22082,Advertising Executive (uncredited),14,1503029,39 +22083,Sir George,573,1075445,12 +22084,Chicago Referee,30709,84229,20 +22085,Blondie Group #1,20075,45480,9 +22086,Johnny Gray,961,8635,0 +22087,Panel Member,11374,95741,45 +22088,Elya Carlson,17691,5961,2 +22089,Wally Perkins,32140,103322,4 +22090,Anton,6552,50398,0 +22091,Bearded man in street watching plane in flight to Lisbon. (uncredited),289,21877,25 +22092,Lisa,90414,87033,8 +22093,Auction Deputy,5917,1894152,30 +22094,Big Red,29475,12056,8 +22095,Miner,11535,1674914,44 +22096,Untouchable J,25006,84932,5 +22097,Sen. Kevin Keeley,11000,193,1 +22098,Drazak,17339,10460,6 +22099,Sami,552,7552,13 +22100,Garage Band Member,2105,84546,37 +22101,Extra (uncredited),2897,1180927,216 +22102,Lew Landers,11298,100614,12 +22103,Science Fair Coordinator,3595,6180,29 +22104,Adam Park / Black Ranger,9070,50096,3 +22105,Joey Nichols (as Hy Ansel),703,1217974,26 +22106,La voyageuse,36245,145075,18 +22107,Policeman,35292,1793092,26 +22108,Lanie Kerrigan,16643,11701,0 +22109,Clarke Bentancourt,41823,87117,10 +22110,Cmdr. Uhura,172,1753,6 +22111,Barf - Blue Team,17971,160452,9 +22112,Doorman,10805,61232,14 +22113,Christopher Lloyd - 'Taxi' Actor,1850,1062,10 +22114,Stella,22279,95789,2 +22115,Lt. Byrnes,4986,40463,7 +22116,Commander William T. Riker,201,2388,1 +22117,Simone Lookalike,9296,1216504,46 +22118,Administrator,9358,158587,15 +22119,Padre,5917,1894167,59 +22120,Gas Station Guy,9819,93703,16 +22121,Dick Simmons,10783,18977,3 +22122,Captain Jean-Luc Picard,193,2387,0 +22123,Daniel Barenboim,46992,22063,2 +22124,Yzma (voice),11688,70243,4 +22125,Doctor 2,99,3653,13 +22126,Woman at Rescue,9272,1075089,14 +22127,David Alexander - Age 16,30379,62747,6 +22128,Blackie,18691,7347,5 +22129,Samuel Faulkner,11472,3291,0 +22130,Last Boy,11234,1495419,14 +22131,Dennis Seeley,2887,24535,13 +22132,Jade Fox,146,1624,4 +22133,Leonard 'Tiptoes' Mazzilli,2321,16525,11 +22134,Dugan,23668,14545,13 +22135,Mr. Trivers,43915,199918,9 +22136,Priest,5425,1644867,6 +22137,Alberich,5608,44350,9 +22138,Boss Snead,28736,101782,6 +22139,El Paso Doctor,15765,8689,9 +22140,Doctor (uncredited),43340,89658,11 +22141,Daniel LaRusso,8856,2877,0 +22142,Landowska,9102,25689,4 +22143,NVA Officer,10590,85921,41 +22144,Gendarme (uncredited),289,1331754,19 +22145,Alex Cardo,25087,9452,0 +22146,Regina Beaufort,10436,54782,12 +22147,Stuart Conroy,38766,124185,8 +22148,Premiere Audience Member,9296,1219502,10 +22149,Bubba,15310,44796,4 +22150,Mary O'Donnell,61934,70035,1 +22151,Chaperone,6552,55653,23 +22152,Turnkey,32093,120705,10 +22153,Lexi at 5,26149,1453102,5 +22154,TV Pitchman,24831,72542,13 +22155,Crisco (voice),29204,50574,3 +22156,Principal,5922,1897190,10 +22157,Hoverboard Girl #1,165,1434979,23 +22158,Charlie,11231,27740,7 +22159,Mary Musgrave,17015,32990,7 +22160,New Security Guard,1647,322261,29 +22161,Female Newscaster,31586,167160,52 +22162,Bowden,12528,75022,8 +22163,Dexter Addams,2907,119868,15 +22164,Red Fighter [cameo],38955,81670,11 +22165,"Duane, Mechanic",24405,8351,10 +22166,Lieutenant,193,55538,16 +22167,Mrs. Fowler,29698,135040,9 +22168,Maria Vidal / Arriega,39435,129427,2 +22169,Barfly,43828,1422281,57 +22170,Matt,20307,64517,8 +22171,Muspratt,12311,29762,25 +22172,Illegal Alien,28466,1643278,21 +22173,Whit Sterling,678,2090,2 +22174,Finn McGovern,4147,8785,6 +22175,Tina,11855,17495,4 +22176,Basketball Player,949,4047,52 +22177,Mr. Billy,15506,5538,9 +22178,Old Man,29449,940060,5 +22179,Jake - Convict,11485,95598,4 +22180,Julia Sullivan,11003,69597,1 +22181,Noboru,20645,1200125,8 +22182,Sheriff Saunders,49365,19453,11 +22183,Jose Agilar,19050,90166,7 +22184,Brosnihan,21132,87136,12 +22185,Brides Father,16176,10029,25 +22186,Secretary of Labor (uncredited),3063,30202,25 +22187,Lisa,1396,55513,2 +22188,Dolly,50512,1220115,9 +22189,Pernell,9516,2683,2 +22190,Bartender,5922,1897196,12 +22191,Derek,10394,32300,10 +22192,Pam Anderson,23223,15852,0 +22193,Mother in family group,11159,217906,24 +22194,Calvin Fuller,37108,21403,0 +22195,Mr. Mermagen,10491,1215275,16 +22196,Woody,18551,236486,13 +22197,Slade,9425,13925,18 +22198,"Tomo, younger policeman",46986,237359,44 +22199,Felicity Shagwell,817,69122,1 +22200,"Karin, Block's wife",490,6661,7 +22201,Charlotte 'Charlie' Blackwood,744,11084,1 +22202,Stewart,31586,184375,26 +22203,Porter,30584,10595,10 +22204,Robert,17203,73288,11 +22205,Forensic doctor,1396,8475,9 +22206,Capt. Colpoys (uncredited),12311,1419560,45 +22207,Geschäftsführer des Hotels,5991,47030,3 +22208,Log Cabin Girl,691,104279,18 +22209,,56235,223818,9 +22210,Schrader,45827,10194,7 +22211,Tucker/Norman Phipps,544,7400,3 +22212,Upjohn,10491,27678,11 +22213,Lo Fong,8584,2974,4 +22214,Future Man,13685,71555,3 +22215,Dr. Tom Witherspoon,21027,8496,10 +22216,Colonel,11570,106626,10 +22217,Irene Boskovich,170430,42296,7 +22218,Mike Leak,19050,21416,0 +22219,Carhop,14136,34509,10 +22220,Ken Browning,9532,37432,16 +22221,Tex,43832,103789,9 +22222,Peter Pan,29911,10731,6 +22223,Keith Morrison - The Soldier,5257,1198284,12 +22224,Interrogation Room Soldier,409,1606898,22 +22225,Kittridge Technician,954,15323,14 +22226,Detective,10937,6718,3 +22227,Mr. Clayton,3092,14017,11 +22228,Stan Gursky,2034,13022,3 +22229,Mary 2,10803,166120,10 +22230,Rebecca's Boyfriend,112991,15009,6 +22231,Shecky Poole,310431,1217730,4 +22232,Paul Burns (uncredited),11381,2879,6 +22233,Hate Counselor,4012,1192388,26 +22234,Judy,13567,1270519,2 +22235,Hank,27526,89838,28 +22236,Kore,28893,4093,2 +22237,Lt. Brannigan,4825,46711,4 +22238,Air Force One Pilot,1924,1681444,65 +22239,Twin Bodyguard Francesco,242,1754681,25 +22240,Noelle,10735,72003,11 +22241,Annie Young,28597,1219,4 +22242,Abbie Halpert,14181,9781,2 +22243,Smittie,2115,15419,4 +22244,Young Executive,1637,161897,19 +22245,Victor Creed / Sabretooth,36657,9832,9 +22246,Mrs. Kovic,2604,26466,2 +22247,Black Rabbit (voice),11837,14324,13 +22248,Extra (uncredited),2897,1468449,241 +22249,Mrs. Reston,47886,100816,8 +22250,Little Person,28940,102426,12 +22251,Mrs. Huntington Palmer,38715,29954,7 +22252,Cop,9716,17490,18 +22253,Stan,8358,12538,10 +22254,Ed Walters,11777,504,0 +22255,Partygoer,2898,1080072,33 +22256,Adam Pratman,92769,995601,5 +22257,Asistente social,80713,132447,12 +22258,Tommy Oliver / White Ranger,9070,50098,1 +22259,Antoinette,13408,93615,3 +22260,Rick,17692,1296384,28 +22261,Estelle,10466,21151,3 +22262,Annie Sullivan,4147,10431,2 +22263,Jeannette Yeager,33250,1070,2 +22264,Tanino,10867,553189,21 +22265,Ole Jurgensen,10219,37422,20 +22266,Truman,11472,112085,7 +22267,Officer Sanderson,23730,90531,8 +22268,Prof. David Ash,18801,18992,1 +22269,Fly the Female Sheepdog (voice),9598,6199,1 +22270,Johanna Reiss,13701,55851,3 +22271,Sam the Cook,43832,1237005,43 +22272,Interviewer,15,8504,19 +22273,Floyd McEvoy,25430,82749,12 +22274,B.E.N. (voice),9016,519,5 +22275,Bruno,3537,32386,2 +22276,Overcoat Hood,117,141417,22 +22277,Motorcycle,27380,16659,14 +22278,Cindy Brady,12606,116437,7 +22279,Jean Grey / Phoenix,36658,10696,4 +22280,Billy,81001,1080265,6 +22281,Stanley Berry,334,43776,18 +22282,Becky McLintock,15263,39762,3 +22283,Russell Schuster,38509,27858,14 +22284,Coldface,54845,879,6 +22285,Dr. Eric Vornoff,36489,1547,0 +22286,Decker,4476,174943,11 +22287,Emil - Croupier at Rick's (uncredited),289,4121,34 +22288,Young Girl (Gina),30352,106123,20 +22289,Jean-Claude Van Damme,9593,15111,17 +22290,Old Fortune Teller,32628,1106625,8 +22291,Gil-galad,120,1217771,24 +22292,Black-Haired Saloon Girl,9028,1518352,9 +22293,Sonny Montelli,16235,80136,3 +22294,Drunken Soldier - Herod Antipas' Court (uncredited),2428,3338,57 +22295,Daniel Ruettiger,14534,13726,2 +22296,Myrna,31671,41251,4 +22297,Elliott's Wife,29076,30369,15 +22298,Judge Monte Stanton,25430,20145,9 +22299,Lt. Sam,21027,50967,1 +22300,Bobby Bartellemeo / Narrator,19150,3037,0 +22301,Firmino Santos Guerra,61939,234572,4 +22302,Suzi,30924,84870,13 +22303,Vidal Gandolfo,18079,138696,7 +22304,Tom Horn,5917,13565,0 +22305,Littlefoot,12144,44055,0 +22306,Jojo,27526,32,3 +22307,Lester Pratt,10657,32494,23 +22308,Johnny Lawrence,8856,56124,9 +22309,Joey Pantucci,9457,18916,3 +22310,Lt. Young (uncredited),12311,103773,55 +22311,Alfred Landwehr,68569,36688,5 +22312,2nd Soldier at USO (uncredited),17889,117772,25 +22313,Coke Fiend,703,28006,39 +22314,Barry Fife,10409,23,2 +22315,Girl with Telescope,10539,1011436,10 +22316,Polexia Aphrodisia,786,10690,7 +22317,Raven (the Shadmock),39578,71248,13 +22318,Street Stranger,703,734,21 +22319,Himself,1282,401445,7 +22320,Frankie - VA Hospital,2604,44682,55 +22321,Bob Rosetti,11777,4252,7 +22322,Vikki Dunbar,22213,12139,2 +22323,Phaeton,11257,1858660,22 +22324,Nancy Bender,15556,1079544,9 +22325,Pool Zombie,40095,106867,11 +22326,Haltaf - Boy,1911,1378404,10 +22327,Gilbert Osmond,36758,6949,1 +22328,Officer Kelly,15944,151875,11 +22329,François,12764,136516,13 +22330,Performer,34113,982,3 +22331,Himself,9716,166002,17 +22332,Die Hand,6552,50400,5 +22333,Merv,20287,85869,10 +22334,Drunk Reporter (uncredited),3078,122978,16 +22335,,121036,114317,1 +22336,Man on Porch,10871,7134,4 +22337,"Walt ""Fanboy"" Grover",2293,23633,16 +22338,Sheriff J.P. Harrah,6644,10158,1 +22339,Henry Tunstall,38765,8726,7 +22340,Palace Guard,6038,1580028,33 +22341,Oscy,41357,51517,2 +22342,Police Inspector Tortyev,10724,67028,23 +22343,Lizaveta,50512,1352521,29 +22344,Cello Teacher,46992,104795,7 +22345,Borg Guillarson,24767,128404,5 +22346,Passerby #4 - Democratic Convention,2604,34535,86 +22347,Jomo (voice),14317,2112,11 +22348,Jack Thorpe,10750,790,12 +22349,Phil Grayland,30666,106739,5 +22350,Squirt (voice),12,981048,13 +22351,Mr. Staines,935,12485,8 +22352,Iggy Schmurtz,95627,18461,13 +22353,Townsman at Carnival (uncredited),220,1221260,16 +22354,Jake,9034,56758,7 +22355,Shark's Security Guard,9563,58925,52 +22356,Ricky Lipman,11397,37005,16 +22357,Kevin O'Roarke,26156,155921,3 +22358,Prospective Bride at Church (uncredited),32600,121416,19 +22359,Chuck Dade Dolger,49788,68897,7 +22360,Claggett Boy,43828,67371,17 +22361,Lance,9819,160332,11 +22362,Bank Teller,49410,140236,1 +22363,Coral (voice),12,20,12 +22364,Pee Wee,11011,974420,6 +22365,"Mike Michaels, Radio Announcer",29343,9312,12 +22366,Paul Corliss,21711,4250,8 +22367,Macumba Lady,10466,1105816,15 +22368,Betty McAllister,167,1909,7 +22369,Andy Barclay,11186,65683,0 +22370,Jean-René Lefèbvre,78802,554094,4 +22371,Benjamin Willis,3597,17348,6 +22372,George Tabori,124625,105793,1 +22373,Brandy,60082,141823,0 +22374,John,25087,702,5 +22375,Sallie McBride,70801,1368770,7 +22376,Detective Stabler,544,162924,14 +22377,Sheriff Pearl Johnson,2046,18999,8 +22378,Blackthorne Sheriff Pat Cronin,26593,96243,17 +22379,Josey Wales,10747,190,0 +22380,Hospital Dancer,9716,20318,28 +22381,Cindy Lou,51044,1594318,2 +22382,Beastman,9563,1505009,28 +22383,Emmett Smith,32855,62,0 +22384,Photographer,11535,1674904,32 +22385,Li-Li,25538,555378,7 +22386,Otoku,3780,85308,25 +22387,Brian Allen,17203,2299,1 +22388,Jason Phillips,109614,1385936,4 +22389,Barbara,20307,9995,2 +22390,Vond-Ah,1924,40954,10 +22391,Himself,2300,1315447,23 +22392,Antonio,145925,16240,3 +22393,Mr. Williamson,26378,30136,43 +22394,Walter,46986,42993,2 +22395,Gina Francis,11692,1589970,13 +22396,Arabic Man,11535,1674990,87 +22397,'21 Club' Staff,10440,1158427,14 +22398,Jude,634,1834,7 +22399,Rodrigo,32093,34117,11 +22400,Joe,14587,30087,17 +22401,Russian Doctor,11535,1674949,65 +22402,Hazel Huffman,32274,3234,2 +22403,David Chang Fung,38955,120725,1 +22404,Danny Lidz,52856,50807,2 +22405,Lawyer Secretary,18621,1313808,6 +22406,Felix Darling,51955,932198,4 +22407,Ojo,11570,69934,1 +22408,Marcia,11374,156774,10 +22409,Alfred Morris,37936,123323,6 +22410,Day Care Lady,10708,85097,17 +22411,Old Timer,77079,1754328,9 +22412,Camilla Cara,79783,5698,0 +22413,Douglas Michelson,242,31896,38 +22414,Vicki Vallencourt,10663,826,2 +22415,Takemaru,11953,1484289,17 +22416,Chowler's Assistant,11535,1674924,48 +22417,Stevie - Sylvia's Young Brother,12684,102885,2 +22418,Bill Iripino,170430,1297931,11 +22419,Bess (uncredited),14811,1077929,35 +22420,Rosenbaum,10518,19215,11 +22421,Deputy (uncredited),299,14454,18 +22422,Ralph Touchett,36758,42993,11 +22423,Cadet Deak Williams,11008,59229,9 +22424,Potential Backer,522,41279,43 +22425,Dean Kansky,9778,12799,2 +22426,Iku,43775,1676702,8 +22427,Buster McGee,3089,30297,7 +22428,Mr. Morris Cutts,21828,147138,13 +22429,Mrs. Phillips (uncredited),21734,2780,13 +22430,Lissa,18621,368,0 +22431,Chucky Stunt Double,10585,1471,5 +22432,John,2084,21343,1 +22433,Stanley T. Banks,20758,12147,0 +22434,Irene Madigan,9593,2167,7 +22435,Doc,10803,24808,6 +22436,Ostap Bender,24918,8924,1 +22437,Irmy,19200,12021,3 +22438,Julien,42832,96596,8 +22439,Elderly Woman,2613,44850,17 +22440,Waiter,195,106091,8 +22441,Cmdr. Pavel Chekov,154,1754,5 +22442,Chang Sing #1,6978,94089,19 +22443,Horace Yaney,11593,1183442,23 +22444,Tragedian,18971,134250,12 +22445,First Secretary,10724,87457,8 +22446,"Pang, Duanwu (child)",47694,554858,13 +22447,Det. Sgt. Tom Conti,47942,7502,4 +22448,Houseboy,45964,1081855,9 +22449,Lt. Cummins,45827,74573,5 +22450,Mayhew,29355,157582,21 +22451,Superintendant Miller,33851,114556,8 +22452,Cable Guy,9894,206,0 +22453,Coach Klein,10663,31903,3 +22454,Paysanne,105763,1359880,15 +22455,Madman's Wife,9563,1741437,65 +22456,Spotlight Operator,32049,6939,20 +22457,Franklin Pou - age 12,152023,15252,13 +22458,Woman in Lobby,2898,75528,21 +22459,Kofi,9405,27401,5 +22460,Dr. Sam Jenkins,50225,14102,5 +22461,Chief Assassin,197,1234613,48 +22462,Short Man,24266,91491,13 +22463,"The Toxic Avenger / Apocalypse, Inc. Executive",28169,99039,0 +22464,James (voice),12599,67833,4 +22465,Saul Moss,32872,56695,13 +22466,Tony,11337,10555,4 +22467,le père de Brice,17350,62444,5 +22468,B-Rad,13411,6213,0 +22469,Marian,638,9313,37 +22470,Marie Thomas,9840,59826,1 +22471,Hunter,9028,1281109,36 +22472,Rekha,14587,261927,13 +22473,Band Leader,262,3667,13 +22474,Chain Gang Warden,11485,8498,6 +22475,Hippie,28940,42157,11 +22476,Barfly (uncredited),11697,1264978,75 +22477,Julie Phillips,37718,156755,6 +22478,Laureen Hobbs,10774,156603,14 +22479,Connie Corleone-Rizzi,242,3094,3 +22480,Princess Isabelle,197,1957,2 +22481,Draft Board Member (uncredited),220,43826,32 +22482,Jean,153141,1770537,11 +22483,Schoolgirl,25934,1576631,24 +22484,Parker,2160,19786,9 +22485,Toby Oxman,16550,13242,3 +22486,Bellman,772,60949,12 +22487,DJ,3682,33662,19 +22488,Ceinwen,43266,935345,11 +22489,Craig Duncan,24081,7333,2 +22490,Dr. Williams,2637,27690,19 +22491,Sheriff Cardigan,11694,3338,8 +22492,Warden (uncredited),12311,120456,30 +22493,Seaman Tate,26946,1581701,10 +22494,Landlady,379,1281527,20 +22495,Photographer,11232,205583,13 +22496,Sharpling,10783,1910,12 +22497,Comedian,35292,1184910,28 +22498,Flo Mattson,54287,1178811,13 +22499,Shang (singing voice),10674,140567,4 +22500,,18919,1320293,21 +22501,Claudia,8494,42974,3 +22502,Tim,9905,1739329,12 +22503,Mrs. Turner,24750,196288,5 +22504,John the Postman,2750,28160,13 +22505,Enquiries at Sproule's (uncredited),22292,1422446,14 +22506,Lulu Daniels,2453,27011,5 +22507,MacGregor,5917,1894147,23 +22508,Bo,146,1626,8 +22509,Michelle Mancini,9877,3270,11 +22510,Photojournalist,2721,20030,3 +22511,Christina,17133,1579,10 +22512,Clare Harrison,16938,34917,9 +22513,Katie Coltrane,36259,2395,0 +22514,Sheriff Dan Stevens,27150,51576,0 +22515,Bill,46986,32029,9 +22516,1st Reporter,1924,136039,34 +22517,Terry,10013,2881,16 +22518,General Emilio M. Vargas,11302,68934,2 +22519,Mr. Johnson (Neaera's neighbor),123047,20510,4 +22520,Debbie Claukinski,28597,21862,9 +22521,Po / Juna,63105,94663,3 +22522,Brad Jorgensen,3114,4316,9 +22523,Jeff Cole / J. Reid,22314,4987,0 +22524,Kisha,12888,17919,3 +22525,Cow (voice),9598,1229258,9 +22526,Goldie West,26378,80994,3 +22527,Jan Brady,9066,112052,5 +22528,Steve,2750,1651683,40 +22529,Gruppenführer,525,74840,39 +22530,Halina,47493,20768,6 +22531,Extra (uncredited),2897,1144394,162 +22532,Brian Lewis,9776,12538,3 +22533,"Actor ""Doctor""",99,3651,11 +22534,Moe,4916,5251,4 +22535,Patterson,10847,1077732,12 +22536,Helen Miles Singer,9716,1661648,106 +22537,Cmdr. John Good,43860,14685,3 +22538,Reporter,25430,69811,21 +22539,Man at Boat Dock (uncredited),15,590519,37 +22540,Donna Leonard,9066,64999,13 +22541,Newspaper Employee (uncredited),598,8579,25 +22542,Margaret Hall,24936,3063,0 +22543,Deck Shifflet,11975,518,1 +22544,Man in Cheap Bar,25430,345529,26 +22545,Mom Dunlap,110972,4003,5 +22546,Adrian Doyle,29911,105230,8 +22547,Karen Brace,15050,2769,1 +22548,Henri Dickson,8072,30719,2 +22549,Jeroen Boman (adult),27052,1924,1 +22550,Robert,966,123720,22 +22551,Bräutigam der Nichte,5991,47029,2 +22552,Trudi,2107,21619,4 +22553,,275096,1353683,1 +22554,General Raymond,18282,59196,7 +22555,Editor,7514,52829,16 +22556,Grace,20096,3910,4 +22557,Ruth,25872,94289,4 +22558,Vera,153141,1150926,18 +22559,Doctor Carl Hill,18111,27996,4 +22560,Mabel,14295,52475,6 +22561,Kenickie,621,8894,3 +22562,Catrevagem,61939,55009,6 +22563,Delivery Guy,9032,60949,7 +22564,Charlie/Donald Kaufman,2757,2963,0 +22565,Chaplain (uncredited),12311,108105,50 +22566,Okuni,3780,95579,8 +22567,Tim LaFlour,12538,26457,2 +22568,Theo,11618,1922,1 +22569,Cowboy,43828,1349872,53 +22570,SM1 Billy 'Bad Ass' Buddusky,14886,514,0 +22571,Tom Schuyler,1890,1873998,14 +22572,Ann Miller,2990,821,11 +22573,Jason Reid,99351,29283,7 +22574,Trick-or-Treat Child,9716,1661632,90 +22575,"Mark 'Dags"" D'Agastino",27993,17604,4 +22576,Selina D'Arcey,33364,70286,2 +22577,Gate MP,10326,27740,13 +22578,Kenpo Tenzin,1689,379723,7 +22579,Samurai,11712,108026,17 +22580,Warden,1924,36118,89 +22581,William Crichton - The butler,53761,98970,0 +22582,Herself,85472,932224,1 +22583,Daniel Miller,12186,13,0 +22584,Alaskan Dad,31586,6804,8 +22585,Dr. Alan Chaffee,12122,20006,0 +22586,Rilke,95627,176628,15 +22587,Dennis McCaffrey,2924,6856,0 +22588,Realtor,18621,13451,7 +22589,The Bus Station Woman,9464,1733444,23 +22590,"Martínez, the Navigator",7305,113204,37 +22591,Johnny,15762,1485642,9 +22592,Measures,17711,58563,13 +22593,Nicole Springer,9071,2229,1 +22594,Eddie Miller,10394,1665,6 +22595,Farouk,13852,75894,10 +22596,Tiffany,580,16222,12 +22597,Maid,13571,1194429,8 +22598,News Reporter,1678,1478364,24 +22599,Shredder (voice),1497,952996,22 +22600,Ship's Captain,30547,1507172,27 +22601,Grace Poole,11186,6465,5 +22602,Merdzan,20123,85644,3 +22603,Clerk,13526,1626529,21 +22604,Elizabeth Elliot,17015,3930,5 +22605,Jack Dorning,38715,1352432,2 +22606,Flight Attendant,6068,1609240,31 +22607,Eli / Wild Billy / Jasper Bloodshy,28736,40945,0 +22608,Yacht Owner,6068,1402117,8 +22609,Nick,30994,1041313,10 +22610,Falling Gypsy,11902,15259,11 +22611,Officer Henderson,9882,65829,10 +22612,kollega,29224,150836,14 +22613,Specialist Doctor,50512,1352523,32 +22614,Tom Gibbsons,13411,56871,4 +22615,Chris Baxter,32140,137111,5 +22616,Charles,10173,55270,3 +22617,Mogie Yellow Lodge,50123,6804,0 +22618,Salesman,522,15800,28 +22619,Pvt. Joe Musso,124963,532,8 +22620,Major Heinrich Strasser,289,3001,4 +22621,Vic,109479,534,3 +22622,Tally (Cheetah Cub) (voice),14317,54427,9 +22623,Ruthie,13005,135061,15 +22624,Store Owner,12129,179096,12 +22625,Wesley,22314,106753,7 +22626,Young Sean Brody,580,8612,8 +22627,"Dr. C.R. Brandt, MD",35139,131481,7 +22628,Himself,9589,7487,4 +22629,Lady at Wedding (uncredited),197,1209257,53 +22630,President René Jean D'Astier,9087,43115,14 +22631,Extra (uncredited),2897,137260,130 +22632,Jane,11159,42998,7 +22633,Terry,23599,25306,10 +22634,Prime Minister Voudel,28973,102514,2 +22635,Roslyn Taber,11536,3149,1 +22636,Police Sergeant,25682,1120191,11 +22637,Leo,9540,147522,6 +22638,Jane Kessler,44414,59789,1 +22639,Tracy Kerrigan,13852,3053,4 +22640,Branca,107693,1808425,13 +22641,Dr. David Marrow,11618,3896,0 +22642,Buddy Bacon,85160,935841,0 +22643,Ferdy,10373,1216607,11 +22644,Maris,3595,3127,4 +22645,Dr. Ollie Powers,9563,8654,6 +22646,"Shoko, Jailbird #2",46986,1535182,38 +22647,Herself,21024,102,4 +22648,,10003,116126,27 +22649,Vizinha do Paraíba - Shorty's Neighbor,598,560263,16 +22650,Carrie aka Fontaine,69828,68109,2 +22651,Villager (uncredited),966,103795,29 +22652,French Coachman,2897,69958,25 +22653,Leone,9102,30617,7 +22654,Pvt. Andy,35284,55844,8 +22655,James N. Sundstrom Jr.,61934,64113,2 +22656,Rear Admiral Ryunosuke Kusaka,11422,23915,11 +22657,Mother at Table,2898,9178,44 +22658,Gita,1689,582125,6 +22659,Stoney Brown,10406,64998,2 +22660,Claudius,18971,20425,4 +22661,Big Mac Bunko,28165,136879,4 +22662,Reporter #1 - Democratic Conventon,2604,44059,80 +22663,Brown's Hole Rustler,5917,100230,16 +22664,Peter,153141,107405,17 +22665,Extra (uncredited),2897,154432,142 +22666,Whip Lady,4338,8963,16 +22667,Pub Man,153141,2060,21 +22668,4 year old Martin,10344,198472,10 +22669,Kane,11133,130723,6 +22670,Lady Mounset,42987,101723,4 +22671,Katy Donahue,21468,99662,2 +22672,Jack,49792,50707,12 +22673,Assistant Undertaker,4338,7268,10 +22674,Peter,66634,164583,3 +22675,Palace Video (voice),194,578093,47 +22676,Amos,8869,117564,11 +22677,Mr. Godfrey,17691,111191,19 +22678,Collette Andrews,12499,2630,3 +22679,Little Mo,16560,20156,1 +22680,Bree Blackburn (voice),14317,3141,17 +22681,Boy Michael Fights,4147,1132472,22 +22682,Duncan Rhodes,10950,48810,20 +22683,Extra (uncredited),2897,1421080,67 +22684,Matt McGuire,18736,9641,4 +22685,Doctor Dan,524,120303,32 +22686,Hughes Larrabee,11215,3798,6 +22687,Coach,1924,1681411,29 +22688,Thomas (as Alexis Daniel),261246,1364324,13 +22689,Desipio,11374,84212,24 +22690,Link,10406,18269,1 +22691,Mother Fox,11120,15735,1 +22692,Rutherford,9314,201587,8 +22693,Club Owner,35292,1226679,30 +22694,Tiana Moore,27791,554475,9 +22695,Ross Buckingham,9403,170953,14 +22696,Senor Aguilar,21052,588034,4 +22697,Black Taggart,415072,215709,14 +22698,Trooper Daniel,525,122101,24 +22699,Achmed Abdullah,2897,29273,6 +22700,Cluny,14612,1144679,4 +22701,Michael Kenney,26954,43753,1 +22702,Florence,17708,1219313,11 +22703,Jessie,42739,24239,2 +22704,Abdullah,10586,11851,7 +22705,Coroner,8467,1853167,18 +22706,Jane,13531,5578,1 +22707,Himself,9563,1901431,69 +22708,Bailiff,5917,1894162,50 +22709,Lisa,29492,56054,5 +22710,Paulina,2441,3812,5 +22711,Ginnie,18551,12052,3 +22712,Kay Davies,18551,5344,0 +22713,Carlos,10466,24554,13 +22714,Sergeant Brown,10568,89899,14 +22715,CIA Analyst William Donloe,954,151438,30 +22716,Grace,11259,17225,9 +22717,Charlie,38965,7503,4 +22718,Jack Hardy,524,1219275,36 +22719,,28134,1243,15 +22720,Donnie Brasco / Joseph D. 'Joe' Pistone,9366,85,0 +22721,Lawyer from Albany,11593,1183447,28 +22722,Driver Who Runs Over Hat (uncredited),11576,3663,46 +22723,Lily Marton,29376,160239,3 +22724,Daniel's Judge,12186,22516,6 +22725,Dr. Suzanne Pincus,125548,6832,3 +22726,Dad Wilson,31586,1179090,45 +22727,Airport Firemen #1,11576,6777,5 +22728,First Fight Ringsider,26378,34818,61 +22729,Doogal (uncredited),197,1394475,51 +22730,Ace Hanlon,12106,2714,8 +22731,Larry Stevens,53714,33547,3 +22732,Lou,678,78305,15 +22733,Jade Li,60855,25540,0 +22734,S.W.A.T. Team Member,11001,1672671,45 +22735,Detective Frank Mercer,79593,1640575,10 +22736,Scotty Brody,10992,67817,2 +22737,Po Sing,2085,21358,8 +22738,Jeremy Baile,38732,3338,3 +22739,Police Inspector,9427,1356540,20 +22740,Tom,42136,147514,9 +22741,Eleanor Holbrook,23518,25787,3 +22742,Dr. Kipper,17708,161783,13 +22743,The Duke of Rock,9403,50235,39 +22744,Roadie Gregg,786,11674,24 +22745,Jim Poppe,58886,91718,16 +22746,Stuckey,12528,36041,5 +22747,Dad Hall,703,10560,9 +22748,Mael,11979,1451740,8 +22749,Mr. Nik,10590,95852,40 +22750,Rick,9894,70851,3 +22751,Alan,41969,62231,1 +22752,Flura Nash,11692,2230,8 +22753,Frankie Totino,9835,14332,10 +22754,Tony Kirby,34106,854,2 +22755,Dominique,110,1146,10 +22756,Police Inspector,11902,110980,19 +22757,Cashier at Rick's (uncredited),289,1331761,49 +22758,Marvin Michaels,26686,6837,4 +22759,Diplomatic Spook,10590,87957,31 +22760,Man in Feed Store,5917,1894159,44 +22761,L'agent de Michel Blanc,64567,21680,30 +22762,Ward Hendricks,77915,5255,4 +22763,Keith Michaels,118991,12132,4 +22764,His wife,51371,144020,5 +22765,Borkh,10724,144865,40 +22766,Jay Phillips,58985,2876,3 +22767,Mrs. Bosomley,99351,10926,17 +22768,Don Buckman,2758,5176,14 +22769,Pamela Pearl,76411,17187,1 +22770,One Ear,6978,156058,14 +22771,Gondorian Archivist,120,1590834,23 +22772,David,18,8397,10 +22773,Baseball Announcer,10657,1244681,25 +22774,Nicole,9585,58079,4 +22775,Hector,10890,4204,13 +22776,Carlie Nagel,24936,10361,5 +22777,Turk (tank crewman),11589,78093,23 +22778,Pascal,5924,3014,11 +22779,Helen Shivers,3597,11863,1 +22780,Danny,10493,1698604,5 +22781,ultimo dermatologo,25403,115609,19 +22782,Meg,13567,1178530,5 +22783,le juge Thompson,77915,10925,8 +22784,Ted,814,299082,31 +22785,Charles Xavier / Professor X,36657,2387,0 +22786,Roy Harley,7305,54711,6 +22787,Harry Dugan,19142,1460999,13 +22788,Louise Carey,31682,109407,1 +22789,Young Gorky,16351,1559344,11 +22790,Ben Sage,15263,3244,9 +22791,Books' Victim in Flashback,12584,95082,17 +22792,Harry,28430,93164,5 +22793,Fitzcarraldo (archive footage),8672,4765,9 +22794,Heidi Kramer,28345,95624,0 +22795,Cmdr. Pete Mathews,29959,103069,0 +22796,Audrey,24679,3711,17 +22797,Danty Duff,11259,4973,5 +22798,Thug,3780,1282392,51 +22799,Marino,20307,17343,3 +22800,"Ivanhoe ""Ivan"" Martin",7514,52813,0 +22801,Diener Tolds (uncredited),5998,225291,16 +22802,Maj. Thomas,61934,83149,15 +22803,Takemaru's Nurse,11953,1201023,19 +22804,Friar Tuck (voice),11886,14966,9 +22805,College Boy 2,39939,84763,9 +22806,Young Isabel Two,4476,222556,21 +22807,Mary (uncredited),34106,103922,67 +22808,Roger Dorn,9771,21246,1 +22809,Ed 'Eddie' Pekurny,11374,10297,0 +22810,Alex Cole,124057,198643,0 +22811,Agatha,4825,165111,16 +22812,Hooker's Mother,949,91756,27 +22813,Phil Lucas,210092,76417,12 +22814,Hugo,42258,585,1 +22815,Adams,24750,20626,16 +22816,,11876,4817,26 +22817,Quo,3089,30298,9 +22818,Kennosuke Nakamura,17962,82542,4 +22819,Jennifer Parker,105,1066,5 +22820,Rudy,229,117696,38 +22821,Lehrer Meyer,12632,23750,4 +22822,Patrick 'Pat' Quid,43089,825,0 +22823,Technical Director,31044,138563,48 +22824,Father John Flaherty,124963,20006,0 +22825,"Enzo, the baker",238,138211,27 +22826,Deputy Jack Driscoll,13681,2850,12 +22827,Susan,42987,132877,2 +22828,Rodman,5491,75200,15 +22829,"Flo, Waitress",24405,138240,7 +22830,Joe Jackson,753,11145,9 +22831,Hortense's Nephew,11159,1749195,14 +22832,Sam Chaiton,10400,23626,3 +22833,Petal,6440,112,2 +22834,The Prison Guard,9464,1733429,17 +22835,Peter Warne,3078,11492,0 +22836,Katherine Archer,11000,11870,8 +22837,Elliott,601,9976,0 +22838,Juanita Johnson,47816,10824,1 +22839,Mr. Noonan,13380,145527,14 +22840,Helen Miles Singer,9716,1661651,109 +22841,"Chidori, Mutsuta's daughter",11712,131203,9 +22842,Lucy Griffin,2637,27686,14 +22843,Reporter Interviewing Fellini,11035,1740212,6 +22844,Gracie,53150,13997,11 +22845,Mulligan,9457,973,7 +22846,Polygraph Interrogator,1647,1582110,12 +22847,Jessica King,2046,3897,3 +22848,Guest,9079,187841,21 +22849,Newsman (uncredited),3085,569144,31 +22850,Henry Faber,10863,55636,0 +22851,Tracey Sketchit (voice),12599,1567580,2 +22852,David Helfgott,7863,79703,7 +22853,Ginnie (uncredited),1480,1230785,25 +22854,Byron 'Preacher' Sutcliff,40952,2641,2 +22855,Joel Millner,58985,1241,1 +22856,"Madeleine, l'attrice francese",422,4116,6 +22857,Peter,50463,8984,2 +22858,Nosy Neighbor (as Randy Godwin),38509,120592,15 +22859,Autumn Haley,18133,4587,1 +22860,Dr. Tom Mason,522,2141,16 +22861,Foot Soldier,1497,1456537,57 +22862,Mr. Stone,20678,1206,4 +22863,Sean,18002,28848,3 +22864,Rosie Wilder,48287,130104,5 +22865,,64310,48405,3 +22866,Mr. Beedy,24825,3801,22 +22867,Pvt. Morris,9289,7505,49 +22868,Poker player,469,6401,8 +22869,Miss Moneypenny,709,10675,17 +22870,Mr. Cornish,11397,14669,41 +22871,Warren Harding,30946,8447,1 +22872,Tommy Price,5922,2390,3 +22873,Judge Harvey Hale,11975,923,5 +22874,Terry Thorne,11983,934,1 +22875,Pitch Lady,30547,1507173,29 +22876,Amos Patton,38765,103071,12 +22877,Rossella,422,5684,4 +22878,General Store Owner (uncredited),33015,148408,7 +22879,Rapper,9716,1661627,85 +22880,Sylvester Marcus,11576,19178,9 +22881,Fito Strauch,7305,155282,15 +22882,Maria do Loreto,107693,1079278,10 +22883,Lucie,78568,7708,5 +22884,Sally,26299,1098447,6 +22885,Bigby Powers,19731,132711,3 +22886,Libby Mannering,28295,165549,4 +22887,Ellie Turner,115332,69344,3 +22888,Shasta Delaney,26593,26662,2 +22889,Walter Reilly,9396,42841,2 +22890,Louie Kurnitz,27224,3037,0 +22891,Berra Ohlsson,16026,79058,2 +22892,Bit Role,43832,22091,17 +22893,L.A. Policeman,703,85869,19 +22894,Bidder at Auction,249,197073,13 +22895,Philo,11959,92684,6 +22896,Desiree,12309,100969,19 +22897,Hunter Morlock,2135,92490,20 +22898,Gail Feinberger,38558,21525,8 +22899,Dancer,6068,1609263,46 +22900,Hatsue Imada Miyamoto,10219,16145,1 +22901,Felice Torras - Geoff's Lady Friend,43832,136831,13 +22902,Townsman (uncredited),11697,1333746,34 +22903,Lenny Haise,9591,18324,3 +22904,Dr. Melik,11561,69884,3 +22905,Crying Woman,2625,34535,16 +22906,Catherine Metsker,10590,87280,24 +22907,Lucinda,21620,66577,0 +22908,Sgt. Larvelle Jones,11895,14672,2 +22909,Sandy Sinclair,11415,42174,3 +22910,Bridget's Dad,634,388,4 +22911,KGB Guard (uncredited),10724,1494522,53 +22912,Hutchison,623,11275,13 +22913,Colonel / Jasper,12230,22602,1 +22914,Preservation Partier,8467,1853193,51 +22915,Margo Masse,10543,24967,4 +22916,Teacher,1633,18251,13 +22917,Armoured Truck Driver,949,43010,39 +22918,Undetermined Role,31995,1109813,29 +22919,Cleaning Lady,43089,129279,17 +22920,Cantina owner,24746,104012,13 +22921,Hollywood Harry (as Robert Guy Miranda),27224,20625,6 +22922,Townsman,43828,1198883,46 +22923,Jack Warrick,37718,1229,3 +22924,Jimmy,287,4041,5 +22925,Willie,664,10000,14 +22926,Fallon,857,592618,26 +22927,Ed Wood,522,85,0 +22928,Stottermaxe,9589,1578547,16 +22929,Virgil,41852,87118,2 +22930,Old missionary,9343,1101311,11 +22931,Yvonne (as Madeleine LeBeau),289,4116,8 +22932,Jack the Lad,10394,34549,13 +22933,Salem,72086,2201,0 +22934,M'Lynn Eatenton,10860,35,0 +22935,Young William Wallace,197,2465,6 +22936,Marcus Ridley,11535,36424,1 +22937,Alvy's Uncle,703,1726165,32 +22938,Senator Worthington Fuller,21849,559559,8 +22939,Hotelportier,5991,2895,0 +22940,Zachary Taylor,27380,83610,9 +22941,Patrick Koster,12103,48,1 +22942,John Morgan / Horse,35200,194,0 +22943,Emine,52556,31759,4 +22944,Tim,30994,107468,2 +22945,Niu Bao,159185,1019795,1 +22946,Private in the Attack (uncredited),975,3349,18 +22947,Girl,8844,1483449,22 +22948,Mrs. O'Neil,9079,9560,5 +22949,Caspar's Cousin,379,1281533,28 +22950,Janvier,26252,94948,14 +22951,Mace,9425,28848,4 +22952,Sheriff,22317,8262,8 +22953,Juan,18551,236486,14 +22954,Dr. Richard Milstein,15592,8978,3 +22955,Sneezy Rider,43089,81466,9 +22956,Françoise Gauthier,42726,146628,6 +22957,Audience Man,1497,134529,40 +22958,Duncan,10708,1786649,24 +22959,Iris Du Pré,46992,9139,5 +22960,David Osborne,10207,163537,13 +22961,Musician,6068,1609271,54 +22962,Patrick Dicker,41760,178232,4 +22963,Glory Lawson,24645,650,1 +22964,Thunderleg,11230,68677,2 +22965,Berke Landers,10050,11107,1 +22966,Band Lead Singer,6552,574878,24 +22967,Thug,3780,142455,50 +22968,FBI SWAT Sniper,3595,1393447,37 +22969,Cynda Griffie,57351,225968,1 +22970,Mark Browne,15506,78286,2 +22971,Tony Berrutti,1058,4203,6 +22972,Baron Felix von Gaigern,33680,29578,1 +22973,Destiny,62488,138,3 +22974,Mrs. Archer,167,1989,13 +22975,Thomas,78568,24465,8 +22976,Crawford,2984,29305,12 +22977,Sylvia McCordle,5279,5470,5 +22978,Stationmaster,2897,3156,14 +22979,Orderly (uncredited),289,588565,36 +22980,Nurse,27346,101610,3 +22981,Johnny Caspar,379,4253,5 +22982,Rex the Male Sheepdog (voice),9598,1331,3 +22983,Roman,38509,1118,30 +22984,The Judge,73969,14435,8 +22985,Dr. Cyriax,46797,1266585,12 +22986,Air Traffic Controller,11576,93664,49 +22987,Dallas Announcer,9563,1231488,46 +22988,the girl,14794,1040441,4 +22989,Smith,26378,13979,25 +22990,John Scholfield,922,5049,7 +22991,Reverend Powell,1049,8499,5 +22992,Betty,105,1116544,17 +22993,Mr. Kelman,9070,164556,11 +22994,Pulat Fallari,33356,124238,5 +22995,Man,10568,1463004,17 +22996,Meierheim (as Robert Mc Wade),33680,30007,7 +22997,Fat Boy,12079,15760,12 +22998,Vocal Jazz Girl,2105,1225809,26 +22999,Francis Phillips,59930,100653,4 +23000,Ismael,2525,25793,22 +23001,Christoph,29471,37068,4 +23002,Tom 'Iceman' Kazanski,744,5576,2 +23003,Resident,9613,1205726,19 +23004,Van Morgan,4993,4299,0 +23005,Inspector Villiers,814,178097,14 +23006,Jean-Michel Basquiat,549,2954,0 +23007,M. Pierre Arnaud,12652,12270,1 +23008,Detective Robert Thorn,12101,10017,0 +23009,Miss Israel / Bluebell,19157,1665709,18 +23010,Verna,27526,23648,6 +23011,Clarissa Payne,10735,47625,7 +23012,Grace Evans,25934,27281,8 +23013,Paula,276635,82414,4 +23014,Kiriyama,13889,19049,4 +23015,Old Crusty Man,522,154073,24 +23016,Dress Shop Proprieter,16176,16275,15 +23017,Max,10173,65827,2 +23018,Todd Hackett,11618,5010,10 +23019,Isabel,965,14515,1 +23020,Philippe (voice),10020,25627,9 +23021,Leon Edward Croft,12103,237,13 +23022,Lawyer,18621,152993,3 +23023,Sargeant Nash,16938,62033,7 +23024,,10643,82972,5 +23025,Rocco,22910,102644,7 +23026,Peter Brady,12606,1231709,4 +23027,Repossession Man,9427,1356546,26 +23028,Joan Blanchard,415072,82677,1 +23029,Nurse,796,11871,9 +23030,Augusto Oliveras,4133,30488,9 +23031,Françoise,1907,19163,3 +23032,Agent Sam,3595,1811949,20 +23033,Calvera Henchman (uncredited),966,94892,27 +23034,Giancarlo's Man,10622,61792,14 +23035,Bobby,287,4042,6 +23036,Commander,30202,67917,6 +23037,Shorty,42136,5897,3 +23038,Adrian,1375,3094,1 +23039,Parent #2,18736,64672,29 +23040,Ryan,29698,132934,14 +23041,Dexter,25682,991317,7 +23042,Agent Sever,10550,140,1 +23043,Mark,60855,540,5 +23044,Yang-Yang,25538,143039,4 +23045,Sylvanian Agitator,3063,4120,8 +23046,Harry Angel,635,2295,0 +23047,Twin #1,10897,67848,6 +23048,Kuzman,90762,980147,1 +23049,Steve Kelso,2102,21561,0 +23050,Kiss Me Soldier,409,173666,18 +23051,Uniformed policeman,18939,133563,12 +23052,Big Stop Williams,41823,1911,13 +23053,Gentleman,141489,1114926,25 +23054,Charles 'Charlie' Magee (reporter),26378,2673,13 +23055,City Official at Parade (uncredited),220,88680,43 +23056,Montgomery Scott,172,1751,3 +23057,Chainsaw man,30994,3070,5 +23058,Charles Weston,244,3246,6 +23059,Kathy O'Hara,522,4687,3 +23060,Patty Winston,28370,16171,1 +23061,Woman at Red's Party,22023,1577166,30 +23062,Chip (voice),8916,707,1 +23063,Waitress at Knotty Pines,26180,1576549,18 +23064,Bud,278939,4971,4 +23065,Nelson,21148,41253,0 +23066,Michael Faraday,1073,1229,0 +23067,Pickpocketed Prosperous Man (uncredited),289,32192,55 +23068,Rutchek's Handler,26378,1008912,56 +23069,Omar,3064,4887,6 +23070,Murphy,23668,3636,0 +23071,Tony,17708,47774,10 +23072,Beaupied,11915,18779,2 +23073,Pfc. Jimmy Nakayama,10590,116278,22 +23074,Servant,32093,1623507,30 +23075,,24005,43827,19 +23076,Harry Jones,910,3339,9 +23077,Gina Cardinale,549,4174,5 +23078,Pretore,10867,553183,15 +23079,(uncredited),194,133747,53 +23080,Baby Doll,29475,42974,11 +23081,Photographer #2,522,157121,58 +23082,Maryanne Hodges,29787,100507,4 +23083,Chief O'Brien,23730,8692,11 +23084,Le psychiatre,64567,18558,29 +23085,Stealth Boat Captain,714,176228,20 +23086,Carlton,12122,54564,13 +23087,Lieutenant Carlsen,28,1532851,21 +23088,Harry,8989,1109,4 +23089,Robert,10950,4171,10 +23090,Shprintze,14811,258715,10 +23091,Horatio,10549,32357,5 +23092,Joe Rogers,35139,131474,4 +23093,Assistant,1924,199104,86 +23094,Candice Paluso,28466,100869,4 +23095,David Helfgott,7863,118,0 +23096,Billy's Mother,16281,945445,16 +23097,Hunky,15321,143892,9 +23098,Karin,10238,8742,1 +23099,Janice Evans,9272,155492,5 +23100,Ellen Walker,52735,50877,2 +23101,Eldon Bates,4993,2097,11 +23102,Principal Kokelar,36929,27726,6 +23103,Elizabeth Winters,1377,16762,6 +23104,Michael,11812,120679,7 +23105,Agent CIA Gus Anders,9438,230765,5 +23106,Dr. Stark,36220,10662,4 +23107,Kyohei Yamane-hakase,1678,7453,3 +23108,Nonna,62394,7863,2 +23109,Otto,11101,41965,6 +23110,Art Wallis,1647,158459,16 +23111,Dancer #3,1497,1456508,45 +23112,Cpl. Philippe Paris,975,14562,1 +23113,Sonja,1907,19876,14 +23114,Latisha Jansen,35696,95189,10 +23115,Howard,320011,1434369,12 +23116,,11035,1706157,10 +23117,Nicky Marotta,76411,214666,2 +23118,News Anchor #1,1637,110122,31 +23119,Mary Carew,3028,29710,2 +23120,Jacques (voice),12,7911,9 +23121,Terry,379,3204,14 +23122,Madame Rosa,21430,18750,4 +23123,1st Editor,1924,55911,32 +23124,Extra (uncredited),2897,1432661,227 +23125,Pero,9260,6807,2 +23126,Pearl - Age 14,37410,76241,9 +23127,La Fleck model,24254,91438,24 +23128,Tom Gryce,35200,131725,7 +23129,Howard Cazsatt,58985,7036,2 +23130,Celia,16351,8791,5 +23131,Sae Jin Kwon,32049,1066278,10 +23132,Carole,744,5344,10 +23133,Newscaster Kelly Houge,755,11164,14 +23134,Marjorie,47588,44079,1 +23135,Narrator (voice),10020,28010,20 +23136,Robert the Fox,5491,14700,8 +23137,Impatient Movie Patron,41823,146253,11 +23138,Jon Haas,32872,14886,51 +23139,Detective Margie Francis,9946,30485,4 +23140,,47596,1853467,3 +23141,Cafe Patron,76,1265418,18 +23142,Pearl,11380,2230,1 +23143,Paul,985,105624,10 +23144,Assistant,24750,12854,4 +23145,'Alabama' Smith,29372,103672,4 +23146,Dar,16441,35350,0 +23147,"Fellini, Age 18",11035,67879,0 +23148,English Teacher,24584,1539232,13 +23149,Mickey Goldmill,1375,16523,4 +23150,Tom,42739,128598,4 +23151,Flight Attendant,9475,118043,21 +23152,Pvt. Franklin,37305,4963,7 +23153,First Mate of the S.S. Henrietta,2897,14966,32 +23154,Dancer at Dantes (uncredited),4011,1583609,27 +23155,Kevin,772,11510,0 +23156,Grandma Leckie,99351,3366,3 +23157,Statehood Council Member (uncredited),11697,1371322,65 +23158,Terrill,10747,16555,3 +23159,Player's Wife,9563,1741429,58 +23160,TV Show Host,522,53601,33 +23161,Margarita Vargas,10889,233119,4 +23162,Denise Archibald,8470,55314,3 +23163,Kikui,11712,131194,6 +23164,Sylvia,7863,1192653,5 +23165,Sahachi,3780,70626,2 +23166,Fat Man,117,1886583,32 +23167,Christine Downes,9475,4432,8 +23168,Pimenov,33680,89744,9 +23169,His manager,51371,144021,7 +23170,Fouad,409,5477,12 +23171,"Mrs. Julia Peniston, Lily's Aunt",25520,45453,2 +23172,Ma Tex,31586,21986,7 +23173,CNN Reporter,954,17356,25 +23174,Doorman (uncredited),34106,1439914,120 +23175,Acme Bookstore proprietress,910,10487,4 +23176,Mike,276635,1484407,6 +23177,"Kharis, the Mummy",18990,113,1 +23178,Bill Kunen,124821,21043,1 +23179,Himself,2300,1231141,11 +23180,Pete Dayton,638,9296,15 +23181,Scout Master (uncredited),578,39039,27 +23182,1st Seductress Third Class,8072,246358,4 +23183,Concessionaire,17692,1216331,42 +23184,Soda Fountain Clerk,1578,1010,21 +23185,The Mayor,6038,27425,7 +23186,Man Listening to Speech,25430,1208018,14 +23187,H. Buckram Sartoris,22784,8516,4 +23188,Louisa van der Luyden,10436,65284,3 +23189,Harry Talbot,54845,147,0 +23190,Henry Lowenstein,10354,2516,21 +23191,San Quentin Sgt.,28577,136129,12 +23192,Caspar's Butler,379,1281531,26 +23193,Professor Mills,54287,15992,9 +23194,Mrs.Jamieson,24212,33272,7 +23195,Kate Fuller,755,3196,3 +23196,Passerby at Fairley Residence (uncredited),22292,99217,11 +23197,Lady at the Rail,30547,1507168,23 +23198,Tracy,696,10447,3 +23199,Krempitsch,22257,1137819,5 +23200,Nipper Wilson (child),245268,1110553,4 +23201,Dr. Willy Rozenbaum,2887,10698,17 +23202,Pvt. Fisher,11589,78085,13 +23203,Witek,38509,120587,9 +23204,Vladimir - With Letter from Leon,1859,14035,50 +23205,Louisa Stockbridge,5279,10988,3 +23206,Cop in Diner,23730,1230,16 +23207,The Zany Reporter,2321,66605,14 +23208,Hoppy,25037,30674,6 +23209,Cash Bailey,20287,6280,1 +23210,Dr. Gene Clifford / Jerry Blake,30666,12646,0 +23211,Mrs. McMahon,1637,1872814,40 +23212,Woney,634,178614,18 +23213,Boy Russell,79593,1640576,13 +23214,Detective Seavey,42136,76417,5 +23215,Gray Maturin,24453,408,4 +23216,Himself,1282,1160018,8 +23217,Katharina Blum,4762,10255,0 +23218,Scientist Borman,9827,1678298,13 +23219,Mystery Woman,525,4,14 +23220,Helen Miles Singer,9716,1661649,107 +23221,Betsy,19101,26293,5 +23222,Mark Reynolds,38951,107793,4 +23223,Mick,6552,13922,1 +23224,Lizzy,58886,145589,7 +23225,,45565,14812,2 +23226,Lucie,12652,20118,5 +23227,Woman Candidate,11307,49834,11 +23228,Bobby,15745,15277,1 +23229,Paul,27834,4654,0 +23230,Pete,12129,71391,2 +23231,Hank Sweeney,40490,147495,13 +23232,Play,16096,79321,1 +23233,Samantha Fontanet,166,2193,8 +23234,Curly,1715,1658701,18 +23235,Mr. Van Landel,11975,1563216,22 +23236,Peter Brady,9066,1231709,6 +23237,Second Man at Bar,262,2554,25 +23238,Robert,37291,1195367,9 +23239,Gen. James Mattoon Scott,23518,13784,0 +23240,Robert Mosley,2084,1250,7 +23241,Wolfman,744,11088,7 +23242,Sherman Wadsworth,43199,82676,5 +23243,Zorg's Man,18,1857454,98 +23244,Doctor A,4307,31384,12 +23245,Cosimo,9260,40481,4 +23246,Willy,493,6768,2 +23247,,78231,1225417,6 +23248,Spastic Bella,9889,1580200,17 +23249,Darla's Friend,10897,1132182,25 +23250,Blind Anna,28345,108986,7 +23251,Gossip,1859,1420615,13 +23252,Bodo Riemer,9301,11953,1 +23253,Arlene,9540,123305,7 +23254,Flämmchen,33680,31550,2 +23255,Man With Leather Jacket,46986,20614,30 +23256,"Old Couple, Woman",6038,1580031,36 +23257,Car Rental Clerk,655,1482977,10 +23258,Babsi,9589,1728653,13 +23259,Sarah,2291,23627,6 +23260,Perhan,20123,85642,0 +23261,President McKenna,36658,115858,25 +23262,Barbie,15239,555079,23 +23263,Charlie,41160,1243493,18 +23264,Matty Banks,11862,18793,5 +23265,Minor Role (uncredited),2897,105389,257 +23266,Bettina Peterson,8358,55433,4 +23267,,124633,25156,2 +23268,Horace Whaley,10219,106772,17 +23269,César,1902,17093,0 +23270,Gilbert Tutu,55731,239978,8 +23271,Madeleine,5967,46937,5 +23272,Henry Dugay,32332,56890,2 +23273,Cornerman (uncredited),1578,1317197,39 +23274,Gavin Blair,99351,130003,14 +23275,Lord Warburton,36758,20766,6 +23276,Grundel (voice),28032,214700,10 +23277,Carlos,17889,1061273,9 +23278,Sergeant - Desert Train,409,218356,19 +23279,Christina Pagniacci,9563,6941,1 +23280,Eddie,10937,39780,5 +23281,Tommy Kane,28295,136419,16 +23282,Francine the Landlady,23730,90529,5 +23283,Fujitsu,165,1217015,28 +23284,Al Pennamin,9294,59451,6 +23285,Television Interviewer (voice),55420,1553974,31 +23286,Massapequa Mom,2604,944229,28 +23287,Flight Attendant,8467,62833,26 +23288,Extra (uncredited),2897,1525716,101 +23289,Mrs. Caroline Drew,32484,108986,3 +23290,Abacus Adder,2033,20904,7 +23291,Claire Beeson,2102,32290,13 +23292,Chum (voice),12,27752,17 +23293,Waitress,24739,1912,9 +23294,Merchant (uncredited),289,1666966,104 +23295,Kay Pierce,3309,21682,9 +23296,Nightclub Patron,21721,1209900,10 +23297,Marshall Strat,10134,63935,3 +23298,Resident,3780,134320,36 +23299,Miss DeWitte,37247,12501,11 +23300,General,16176,996744,16 +23301,Senora Isabella Vega,32093,30261,7 +23302,Caroline Beaufort Frankenstein,3036,20768,9 +23303,Transit Cop,1647,1225403,28 +23304,Cruiser Cop #4,4338,2883,22 +23305,Rico,140519,143381,11 +23306,Juan,80713,1284938,3 +23307,Jenny,35292,1844804,17 +23308,Roger Davidson,38955,1365930,14 +23309,Malcolm,24453,103592,7 +23310,Pin Up Housewife,11159,183799,50 +23311,Patty,31005,9658,15 +23312,Miss Carteret,17015,1840472,22 +23313,Chris Hayden,16938,41256,8 +23314,Kid,16096,79320,2 +23315,Carl (as S.K. Sakall),289,94110,7 +23316,Hélène,2721,18847,1 +23317,Levitt,22213,1072,9 +23318,Auctioneer (uncredited),29376,13298,14 +23319,Hesus,24254,11159,0 +23320,Cooking Teacher,18683,1889112,31 +23321,Lt. Col. Ocker (as Peter Van Eyck),9289,2567,68 +23322,Charm Leachman,10409,110008,6 +23323,Helen - Hatcheck Girl,21468,83622,11 +23324,Piotrus,38509,64873,12 +23325,Young soldier,197,16908,44 +23326,Man in Dodd's office,31863,57755,9 +23327,Eema (voice),10567,56950,9 +23328,Madbaker / Flagman,197,151305,40 +23329,Ootah,983,14754,4 +23330,Stage Door Fan,262,3670,21 +23331,David Filby,2135,13633,1 +23332,Pelayo,1902,1602,3 +23333,Shirl,12101,71240,2 +23334,Gaines,9776,59160,16 +23335,Studio Executive,9296,1744171,47 +23336,Kira,11639,70772,1 +23337,Thug,3780,1482646,54 +23338,Elon Dershowitz,38718,170977,11 +23339,Ritinha,107693,937210,12 +23340,Newscaster,1924,1080265,72 +23341,Master Sergeant Ernest G. Bilko,9099,67773,0 +23342,Mr. Johnstone,2887,15412,9 +23343,Gunnar,42453,1671,11 +23344,Checkpoint Policeman (uncredited),28430,3895,23 +23345,Billy Nolan,7340,8891,6 +23346,Mathieu,166,1960,6 +23347,L,104103,40938,2 +23348,Saloon Bouncer,2897,3152,12 +23349,Dingus,41160,175154,11 +23350,Marina,11235,36820,8 +23351,Marley,49788,13657,5 +23352,Aunt March,39938,82412,3 +23353,Betsy,24831,16173,6 +23354,Harvey Burden,17691,24811,5 +23355,Old Woman,43771,1806056,3 +23356,Sammy,1907,19870,8 +23357,Young woman kneeling for the flagellants (uncredited),490,1194874,27 +23358,Auction M.C.,4478,9188,6 +23359,Ground Crew,18,1818315,26 +23360,Stephen's Girlfriend on the Phone (voice),4547,2227,15 +23361,Torpedo,11333,3140,3 +23362,Aubrey Montague,9443,32357,6 +23363,Trick Rider,5917,1894176,63 +23364,Anchorwoman,40952,1880598,21 +23365,Field HQ Major,857,1648657,30 +23366,Additional Voice (voice),9016,61969,25 +23367,Joan Dawn,10889,233120,5 +23368,Arnspriger,37917,12852,6 +23369,Maggie Reynolds,9771,64733,4 +23370,Evan Marsh,19760,8435,3 +23371,Michael Merriman,27461,3036,3 +23372,Billy Sherbert,524,7167,4 +23373,Sgt. Bauer,17339,70417,11 +23374,Khak,28171,99958,3 +23375,Vladek Vidov,38554,1210,4 +23376,Cpl. Job,11589,6466,11 +23377,Moff's Father,11129,1412369,5 +23378,Doggie,24405,2778,12 +23379,Iris,30709,19256,1 +23380,Anthony 'The Ant' Squigliaro,242,1169885,26 +23381,"Marva Kulp, Sr.",9820,11715,6 +23382,Thin Neighbor,5991,48222,7 +23383,Actress,48787,1158865,11 +23384,Villager of Tullymore,10162,1609652,28 +23385,Debbies buurvrouw,58886,73382,12 +23386,"Carswell Fensterwald, M.D.",10276,1469,9 +23387,Wayne Alworth,15489,15760,10 +23388,Bailiff,61563,79651,13 +23389,Laurie,11630,156925,9 +23390,Gosha,9438,1618607,10 +23391,Stump (voice),13225,11159,9 +23392,Scribe,2428,12355,42 +23393,"Summit Team Leader, USA",21736,135673,1 +23394,Akiko,28273,95504,1 +23395,Driver picking up Thor,35139,131484,10 +23396,Red Team Player,11535,1237062,23 +23397,Ludwig von Baden,12632,682,7 +23398,... La Douceur,26866,33723,2 +23399,Charlotte,81001,14965,3 +23400,Club Manager,40952,160849,19 +23401,Pvt. Joe Kirkley,11880,172917,6 +23402,Elise Kraft / Sharon Bridger,9882,516,1 +23403,Mrs. Haffen,25520,97170,12 +23404,Duane Hall,703,4690,8 +23405,Doctor,522,12889,50 +23406,The Foreman,33015,144018,3 +23407,Complaining Customer (Uncredited),11104,68560,10 +23408,Executive (uncredited),34106,33705,134 +23409,Man on Pay Phone,26180,168456,12 +23410,Prof. Eggstrum,27380,9597,5 +23411,Concert Promoter,9296,1744172,49 +23412,Sgt. Harker,9827,160361,18 +23413,Miss McGill,17465,58068,6 +23414,Wiley,10344,1084740,11 +23415,Skylar Dandridge,9716,69597,0 +23416,Mulan (voice),10674,21702,0 +23417,Tasha King,92381,1385304,3 +23418,Rosie,11003,85171,5 +23419,Lemonade Vendor,3063,30018,10 +23420,Lola Bouilliabase,21024,86994,3 +23421,Extra (uncredited),2897,1468520,119 +23422,Podling (voice),11639,199876,18 +23423,Nin,276635,189433,12 +23424,Helen Booth,27526,6721,4 +23425,Schmidt,2924,10489,13 +23426,Himself,8672,1101334,12 +23427,Emilio Ochoa,4133,143331,33 +23428,David 'Dave' Veltri,11003,884,12 +23429,Damon Brooks,9877,11866,7 +23430,donna seconda coppia,25403,93728,3 +23431,VBC Anchor,9296,1744177,62 +23432,Prof. Krempe,3036,23076,8 +23433,Mrs. Forrester (uncredited),3309,91654,23 +23434,Donald,34106,98571,14 +23435,Amanda Leer,11004,728,11 +23436,Roscoe,9495,545576,15 +23437,Monster,755,115244,31 +23438,Michael Banks,433,5830,7 +23439,Foot Soldier,1497,1456539,61 +23440,Lindsay Johnson,9816,59576,13 +23441,Victoria 'Vicky' Lathum,2105,1234,5 +23442,Mike Downey,2321,8654,1 +23443,Rudyard Kipling,983,290,2 +23444,Kitty Oppenheimer,27461,7673,2 +23445,Architecture Student,4478,545,32 +23446,Dominique Bredoteau femme,194,51099,32 +23447,Lucas,13346,17444,0 +23448,Edmond enfant,11876,1316263,20 +23449,Dr. Lev Botvin,10003,7030,3 +23450,Max,954,13333,7 +23451,Ezekial,14811,1186440,26 +23452,Ancient Arab,409,1356023,32 +23453,Jack (uncredited),3309,980330,46 +23454,Cmdr. Uhura,157,1753,6 +23455,Al - Bank Robber,11485,104625,5 +23456,Hiko,9423,7248,6 +23457,Sonny Black,9366,147,2 +23458,Bartell,43340,30115,9 +23459,Dankwart,5608,44356,15 +23460,Jimmie Mc Bride (as Marshall A. Neilan),70801,559559,9 +23461,Wing Kong Hatchet Man,6978,1677321,32 +23462,Bowers' Manager,30547,165973,39 +23463,,73642,83278,5 +23464,Dr. Mikhail Andrassy,15944,96284,7 +23465,Chief of the Waponis,2565,3093,9 +23466,an elevator operator,24005,15949,29 +23467,"Rochefort, Richelieu Henchman",11370,939,7 +23468,Grendan,10050,62526,19 +23469,Lou Gehrig's Man (uncredited),9532,134707,28 +23470,Wife,5,3134,16 +23471,Red,38732,103054,11 +23472,A Southern General,961,14421,4 +23473,Billy,8467,77547,8 +23474,Jor-El,1924,3084,1 +23475,Tommy 'Buns' Bundy,12888,21355,0 +23476,Derek Reynolds,9816,11868,1 +23477,Tommy Crickshaw,32274,1532,4 +23478,Scott Larson,17971,521,0 +23479,Sarah,31586,81395,48 +23480,Reporter (uncredited),15,96159,67 +23481,Martin Rittenhome,11450,1032,20 +23482,Captain Benson,691,10173,8 +23483,Kelly Frears,8358,9994,1 +23484,Optikerin,287305,557955,11 +23485,Earl Ladelle,92769,588,4 +23486,Girard Pascal,10534,17413,11 +23487,Mary Sunshine,1574,11870,4 +23488,Flight Attendant,11397,21625,7 +23489,Richard,59199,18181,4 +23490,Ann,15379,78184,3 +23491,Harding,24750,161989,10 +23492,Chloe Donovan,43342,131269,5 +23493,Henry Sikorsky,14550,1062,1 +23494,Lt. Steve Milford,10872,506,11 +23495,Ula Lipnicki,19855,1527164,10 +23496,La Fleck model,24254,91434,20 +23497,Singing Contestant,58985,150202,28 +23498,Waitress,10708,155625,39 +23499,Deputy Ward Wilson,21629,8977,5 +23500,Publisher,2898,1394788,20 +23501,Jesse,29698,135058,27 +23502,TV Dancing Girl,5,3136,19 +23503,Maggie O'Neill,34106,2772,17 +23504,Man on Sidewalk (uncredited),10440,1500999,23 +23505,Sheena,8970,38024,7 +23506,Wyatt,36943,980328,3 +23507,Beatrice Ocean,299,4301,4 +23508,Bowen,8840,6065,0 +23509,Worm,334,18270,15 +23510,Mr. Lusk,78373,21710,6 +23511,Sir Thomas Berwick,52782,1068089,4 +23512,Molly Donahue,21468,109897,0 +23513,Persephone,11257,567074,23 +23514,Tommy Como,1578,17651,4 +23515,Nora Carpenter,9358,20188,5 +23516,Mr. Davis,39833,16199,11 +23517,Owl,81310,25627,4 +23518,Berkeley Beetle (voice),28032,15832,5 +23519,Dr. E.W. Hostetler,12584,854,3 +23520,African Sports Announcer,11535,1674935,54 +23521,Mrs. Ann Anderson,21027,9594,6 +23522,Mr. Elliot,17015,54447,6 +23523,Wart (voice),9078,1287645,8 +23524,Waiter,9462,554625,12 +23525,Sig Evers,4993,6462,8 +23526,Sea Lawyer Sydney - Sir Humphrey's Gang,31995,552412,17 +23527,Donnie Barksdale,2046,6384,2 +23528,Lonnie,32855,51805,3 +23529,Sim,10871,1675163,10 +23530,Pilot of Plane That Kills Kong (uncredited),244,3238,12 +23531,Maj. Saint-Auban,975,12312,5 +23532,David Watson / Jack Watson,38965,77293,1 +23533,Sandy,44932,936084,2 +23534,Mauricio Wilson,9889,1206,2 +23535,Nervous Sikh Orderly,10586,1156168,13 +23536,Lane,22477,12021,0 +23537,Chuck,4012,1217575,21 +23538,Oscar,85837,114509,9 +23539,Stewardess,18,1857461,110 +23540,Johnny Baxter,32140,40393,0 +23541,Host at Serendipity,9778,59170,8 +23542,Charlie,26661,16074,3 +23543,Walter,858,8984,2 +23544,Tragedian,18971,1206335,15 +23545,Admiral Hood,2669,3359,2 +23546,Grandma Moore,51955,932200,6 +23547,Refugee at Rick's (uncredited),289,1224787,16 +23548,Mr. Davis (uncredited),39938,34209,16 +23549,Suzie,29572,6886,0 +23550,Chris,11298,17494,1 +23551,,18919,1174347,2 +23552,Wendell Hickson,11145,8261,3 +23553,Annie,1574,17641,12 +23554,Walter,15037,33654,14 +23555,"Jane Lyle, Juror",41590,60700,5 +23556,Steve,22213,29775,14 +23557,Agador Spartacus,11000,5587,5 +23558,The Munchkins,630,1468722,9 +23559,Obese Promoter,30709,101755,11 +23560,Mary of Anjou's Lady's Companion,10047,549323,27 +23561,Richard,10622,1426136,7 +23562,Judge Barry Conrad Issacs,1049,15152,3 +23563,Köhler Michel,890,4936,3 +23564,Damien Wiles,57351,177205,2 +23565,Marjorie Majors,18683,34901,4 +23566,Boca,19176,84239,7 +23567,Policeman,19403,84654,8 +23568,Mary,409,5480,7 +23569,Nurse Irene Graves,10467,64062,8 +23570,Theodore 'Ted' Ellison Forrester (uncredited),3309,1181119,27 +23571,Batise,14676,544595,2 +23572,Bob Wythe,16560,22672,4 +23573,Robert Williams,55420,185766,12 +23574,Hyglak - Quarrelsome,1911,53353,13 +23575,Statehood Audience Member (uncredited),11697,1600506,56 +23576,Jimmy Zoole,44233,26472,0 +23577,Maria,49792,728,10 +23578,Bride's Father,10735,25074,14 +23579,Reptile,9312,57255,9 +23580,Felix Laranga,11692,40481,5 +23581,Boris Kolenkhov,34106,39801,4 +23582,Tony,70282,52057,1 +23583,David,2757,17449,19 +23584,Zack,1554,2887,0 +23585,Baron Kubinyi,29471,1092611,13 +23586,Bride's Father,197,2451,37 +23587,Rocky Jr.'s Friend,1374,16648,12 +23588,Leamon Heath,1813,31839,8 +23589,Bruno,9366,4890,7 +23590,Daniel's Judge,12186,1273694,16 +23591,Waving Girl,786,1656017,38 +23592,Affaf,33367,35783,2 +23593,Julian,62488,32597,0 +23594,Extra (uncredited),2897,122058,184 +23595,Laurence,664,4654,12 +23596,Farmer Fran,10663,21485,6 +23597,Wheel of Fortune Director,2750,1241692,15 +23598,Flight Officer David Campbell,9289,5341,7 +23599,Roman's Business Partner (uncredited),38509,120602,27 +23600,Corporal Henderson,857,94864,7 +23601,Richard,12614,1568365,7 +23602,Rudy Prescott,14295,28042,4 +23603,Judge Flatt,11593,6541,9 +23604,Debutante #4,6038,1580035,39 +23605,The Hunter,150211,48312,3 +23606,Mary Lambetta,11618,14707,9 +23607,Evelyn Kelcher,10013,30618,7 +23608,Brenda Bristols - 'See You Next Wednesday' Cast,814,104129,41 +23609,Private - Desert Train,409,116976,20 +23610,Baker,8844,1483451,24 +23611,Irma,499,1423674,6 +23612,Little Bo-Peep,25898,94105,2 +23613,Sarita Cisneros,20287,2051,3 +23614,Brown's Hole Rustlers,5917,1894154,33 +23615,Burger Jungle Manager,6552,9998,16 +23616,"Thaddeus Rains, President Rock Northern Rail Road",13496,1166,7 +23617,Captain,12230,150739,19 +23618,Additional Voice (voice),9016,167295,18 +23619,Child in Supermarket,3028,29508,14 +23620,Pushpa,14587,35783,7 +23621,Josef,26661,85943,4 +23622,Camille,2731,19115,2 +23623,Swamp Village Chief,8840,1074679,13 +23624,Minister (uncredited),3063,1119769,23 +23625,Neighbor,229,557480,49 +23626,Dr. Chatal,5924,11028,8 +23627,Young Anna Mae Bullock,15765,18346,3 +23628,Tim,77283,35862,2 +23629,Barnardo,10549,43138,13 +23630,Schatzi Greenspace,56162,18355,8 +23631,Blonde Hostage,755,35545,19 +23632,Sheriff Keogh,43828,84640,16 +23633,Judge,42569,982731,8 +23634,Lady Russell,17015,87415,2 +23635,Dr. Janet Duffy,28774,36926,2 +23636,Alex,79593,1772250,21 +23637,Blue,8584,43933,8 +23638,Car Salesman,11450,69415,22 +23639,Tail Gate Driver,638,9312,35 +23640,Michaelangelo (voice),1497,77157,18 +23641,Mr. Smith,1959,20241,6 +23642,Mr. Peabody,11077,15832,3 +23643,,48787,223412,8 +23644,Scarpelli,11607,19456,4 +23645,Peter Brown,1903,16478,13 +23646,Gas Station Mechanic,10866,149526,9 +23647,Finn,102,1023,6 +23648,Austin Morgan,5332,42838,12 +23649,"Seaman Mac, wears sunglasses",26946,52140,9 +23650,Man with Pipe Bomb,379,1190852,34 +23651,Chiffon,10776,141823,4 +23652,unknown,3173,31045,4 +23653,Miles Fairley,22292,3361,2 +23654,Mystery Woman,141,85097,25 +23655,Daughter Julie Moore,10590,20480,37 +23656,Moff,11129,41042,1 +23657,Beanie,21849,1098537,7 +23658,Dou Chou,12764,99848,7 +23659,The Girl's Father,32628,10525,3 +23660,Lyle van de Groot,10603,19159,2 +23661,Elephant Cleaner at Chester Zoo,2750,130,36 +23662,Russell Bellows,10493,75397,4 +23663,Jackie's Mother,267188,6465,8 +23664,Laurel,88224,935917,2 +23665,Slipknot Band Member,11535,92318,95 +23666,Curly Fletcher,15263,30299,14 +23667,Daughter #1,525,122117,35 +23668,Michael O'Sullivan,10162,1282,1 +23669,Petrovich's Bodyguard,11535,1674954,71 +23670,Citizenship Student,4478,1804183,28 +23671,"Fumiko, eldest daughter",28273,85307,3 +23672,Vera Birdsong,11975,1857326,25 +23673,Woman on street,24254,91451,43 +23674,Jack Brown,23805,9309,0 +23675,Mrs. Pascal,33344,35341,4 +23676,Alma Givens,10590,172200,25 +23677,Gandalf the Grey,120,1327,1 +23678,O'Hara,59181,60152,1 +23679,Yanko,1959,20239,1 +23680,Girl,229,1146154,42 +23681,New Cadet,11008,149013,15 +23682,Party girl,12454,76944,21 +23683,Man Singing at Inquirer Party (uncredited),15,1147860,51 +23684,Kid,1058,1075017,12 +23685,Dancer (uncredited),15,1437242,99 +23686,Leasing Office Temp,9778,57387,17 +23687,Hewe,8840,260536,10 +23688,Punk with Gun,2453,157579,12 +23689,Himself,11458,151657,10 +23690,Aide #2,2637,27709,26 +23691,Midvale Protestor,9651,113879,10 +23692,Boris,29938,31155,8 +23693,Gloria,9403,52087,10 +23694,Policeman (uncredited),3309,117648,30 +23695,Leo Cuneo,242,37254,35 +23696,Django,22910,5695,9 +23697,Wendy Darling (voice),10693,67228,1 +23698,Sasaki Tsune,28273,134344,7 +23699,Tom,15256,1893,1 +23700,Ivan,30175,1190224,5 +23701,Vic Androzzi,482,6354,2 +23702,Gore Vidal,11035,11626,11 +23703,Denny Lachance,235,3036,6 +23704,Shelley,11337,87007,6 +23705,Doctor Stevens,28902,118937,7 +23706,Nafas,28171,99946,1 +23707,Bunny Jones,24005,105387,3 +23708,Sunny von Bülow / Narrator,38718,515,0 +23709,Neighbor (uncredited),34106,1467394,66 +23710,Mrs. Jorgensen,3114,30552,6 +23711,Medicine Man,14676,127032,13 +23712,Mirador Motel Night Manager,1480,12422,7 +23713,Joe Riggins,287,4039,3 +23714,Wanda,9059,43068,12 +23715,Khan Taj,15267,1159,2 +23716,Gus,10872,5724,0 +23717,Lo Pan,6978,20904,3 +23718,Paradise Alley,11333,49458,6 +23719,Prison Official #1,638,9298,17 +23720,Sammy Pinkers,15592,3433,12 +23721,Steve Strange,17496,16433,6 +23722,Goldsmythe,9405,652,3 +23723,Étienne,166,1974,9 +23724,Mark,39875,939692,7 +23725,Lewis,17711,77330,11 +23726,Susan 'Susie' Vargas,1480,7302,1 +23727,Tony (voice),13225,7866,8 +23728,Alberto Artuna,7305,1872737,11 +23729,Puppet Toulon,26954,98544,11 +23730,Custodian,23637,72786,1 +23731,Dario,709,1121,8 +23732,Chief Inspector Oxford,573,8224,1 +23733,Architecture Student,4478,1244810,35 +23734,Mayor Robert 'Bob' McIntyre,5257,94793,8 +23735,"Moeding, Polizist",4762,24630,7 +23736,Chance Wilder,2453,3197,7 +23737,Rick's Friend (uncredited),289,99330,62 +23738,John Matthews,39176,73981,11 +23739,Tansey,62463,1780606,14 +23740,Villager of Tullymore,10162,1609663,40 +23741,Dave,10373,65303,3 +23742,Miss Bernie Wells,9308,1433893,11 +23743,Betsy,34582,224566,3 +23744,Ferraday,6951,789,15 +23745,Elizabeth 'Sue Ann' Baldridge,95743,82622,3 +23746,Amusement Park Mom,22398,1283911,11 +23747,Sally,18683,1484405,28 +23748,Happy Singer,24254,938977,53 +23749,Candy,16162,35705,5 +23750,Man (uncredited),34106,240805,91 +23751,Karen,1375,16663,9 +23752,Lucio,25403,936480,7 +23753,Tony the Match,20678,1219534,9 +23754,(uncredited),269,579831,21 +23755,Jake Stone,26261,3785,1 +23756,Young Instructor #2,1647,124315,36 +23757,Joan,30363,140055,1 +23758,Neighbor,10440,28006,10 +23759,Jason,10849,8937,6 +23760,Bar Patron,11535,1536858,13 +23761,Duffy,3085,30240,15 +23762,Himself,9403,92706,31 +23763,Benoît,186705,2245,1 +23764,Tunnel Reporter - Game 3,9563,1237604,71 +23765,Co-Worker,1647,1393529,27 +23766,Bosko,949,15854,10 +23767,Sgt. Baker,20424,99754,25 +23768,Mike Brady,12606,21163,1 +23769,Alpha,80350,19257,13 +23770,La paysanne,36245,39882,16 +23771,Merrill Grant,10774,41350,16 +23772,Mrs. Monaghan,13380,138874,13 +23773,Gage's Maid,4478,6329,26 +23774,General von Stürmer,15873,18964,13 +23775,Maria Elena,2604,126096,16 +23776,Beach Woman #2,4133,34848,30 +23777,Sheriff Burnett,9028,4968,2 +23778,Matt Myers,27791,65831,10 +23779,,44081,1345983,1 +23780,Kevin,85160,1020221,9 +23781,Extra (uncredited),2897,1420892,197 +23782,His Friend,31995,552411,10 +23783,Renaulto,29743,37125,9 +23784,Slim,51802,30527,3 +23785,Narrator,21736,3896,0 +23786,Punk at N.Y. Bagel Cafe,25538,1554173,21 +23787,Ariella,10351,119884,12 +23788,Norwood,1637,3205,7 +23789,Bill Maguire,28430,7192,1 +23790,Ling (voice),10674,16183,9 +23791,Amos Hart,1574,4764,8 +23792,Faith Bigger,36929,10556,3 +23793,Woman from Apartment,28774,99841,11 +23794,Noémie,78285,37607,3 +23795,Reporter at Xanadu (uncredited),15,34085,68 +23796,Richie's Dad,75,10671,17 +23797,Kyle Hadley,69605,2493,2 +23798,Theater Owner,9296,124086,26 +23799,Farmer,16938,184054,15 +23800,Jedda,154,104505,13 +23801,Kristy Thomas,48287,70852,0 +23802,Dr. Raymond Turner,8470,4512,6 +23803,Yeshiva Student,10269,26685,6 +23804,Rowntree,14794,157799,6 +23805,Mr. Besserman,1850,19471,7 +23806,Second Judge (uncredited),3063,1157004,27 +23807,Extra (uncredited),2897,1467074,79 +23808,Fred Darius,9882,159850,6 +23809,Alex The Transvestite,96238,21731,5 +23810,Lavinia Meredith,5279,11277,26 +23811,Doorman,26603,1244120,12 +23812,Roadblock Deputy (uncredited),299,538370,19 +23813,Judge Fenwick,3064,14792,5 +23814,Student Singer,9532,1895803,24 +23815,Anna Magnani,11035,4421,9 +23816,Destroyer Commander,9289,522,65 +23817,VIP,3682,33666,25 +23818,Lyn Lesley,24005,10774,2 +23819,Max Sayer,9296,3201,34 +23820,Billie Tyler,17770,6885,1 +23821,Roman Troy Moroni,16806,138427,13 +23822,Herbie Conklin,13380,53720,12 +23823,Boots Malone,99008,55997,1 +23824,Captain Flint,10874,133876,7 +23825,Leo Greco,41590,4255,7 +23826,K. Edgar Singer,10208,4175,5 +23827,"Anabelle, the Dog Goddess (voice)",19042,10739,1 +23828,Abigail Craven/Dr. Greta Pinder-Schloss,2907,10776,7 +23829,Mayor Lenny,2978,8875,9 +23830,Jane Henderson,655,2630,1 +23831,Elsbeth,890,14632,1 +23832,le colonel allemand,52366,146209,7 +23833,Mr. Keller,11397,87019,47 +23834,Jim,34723,24047,1 +23835,Lance 'The Dance' Pere,9771,42191,8 +23836,Ludwig van Beethoven,13701,64,0 +23837,Jeannot,47119,1138971,2 +23838,Orson Welles (voice) (uncredited),522,34521,63 +23839,Himself,9889,283444,5 +23840,Chihiro Ogino (voice),129,19587,0 +23841,Kyo - Seikura's Enforcer / Long Legs,24825,66055,9 +23842,Sonya Blade,9312,20751,4 +23843,Kelly (uncredited),201,9032,16 +23844,Server,6038,161030,10 +23845,D. O. Guerrero,10671,18803,6 +23846,Woman,39428,196843,7 +23847,Security Guard #2,79593,1501939,28 +23848,Sheriff Hardesty,24634,1274,8 +23849,Billy Madison,11017,19292,0 +23850,Commisar Przygoda,22257,1480848,6 +23851,Little Kid,9296,1744180,66 +23852,Trish,46986,1172860,13 +23853,Herbert Dunstan,20758,18586,6 +23854,Vinny,49792,151286,6 +23855,Lina Moebius,4012,9207,2 +23856,Rantani,220,2757,9 +23857,Isobel Evans,29239,123121,3 +23858,Killer Karl,2662,44824,17 +23859,Policeman,11415,174248,19 +23860,Nick McGuire,2608,6678,2 +23861,Terry 'The Toad' Fields,838,1270,3 +23862,Psychiatrist,2978,1535,16 +23863,Anthony La Bresca,4986,14062,11 +23864,Shorty Meeks,4248,9562,1 +23865,Bigger Thomas,108312,121276,0 +23866,Singer with Guitar (uncredited),289,82803,69 +23867,Ilene,12309,100600,12 +23868,Terry Brogan,22160,1229,0 +23869,Hotel Guest (uncredited),33680,122984,24 +23870,Dr. Blumenthal,56934,1274470,10 +23871,Tina (uncredited),39938,1033448,18 +23872,Narrator / Récitant (voice),194,18177,20 +23873,Prof. Leonard Nosferatu aka von Braun,8072,13696,3 +23874,Cyrus Bills,2637,27550,3 +23875,Assistant Movie Director (uncredited),17889,93624,26 +23876,Dianne,476,6473,1 +23877,Sean,41469,1233,1 +23878,Sarah Henderson,8989,56509,2 +23879,Luanne,38043,107370,3 +23880,Platoon - Vietnam,2604,92658,43 +23881,Nobody's Girlfriend,922,87126,18 +23882,John,16124,76188,0 +23883,Darla,9495,3711,6 +23884,Zoroaster,10351,184325,18 +23885,Cheetah Cubs (voice),14317,113918,8 +23886,Evie Van Osburgh,25520,72311,11 +23887,Nicholas,5257,42390,18 +23888,Removal Man 2,16235,80140,12 +23889,Angry Kid,522,193063,54 +23890,(uncredited),269,1513492,30 +23891,Victoria Gray,11458,326,1 +23892,Pie Face,1813,1089393,27 +23893,Stranger,75,1583720,20 +23894,Praetor Shinzon,201,2524,7 +23895,Ward Heeler (uncredited),15,97996,91 +23896,Mel Bakersfeld,10671,13784,0 +23897,Extra (uncredited),2897,1419570,129 +23898,Kim,10406,690,12 +23899,Sister Susan,46094,134764,2 +23900,Mutineer (uncredited),12311,1468748,46 +23901,Mr. Maris,14429,1756,1 +23902,Cecilia,10849,12021,0 +23903,Giardello,262,1555142,9 +23904,Rusty Charlie,4825,7141,8 +23905,Hermann Goring (uncredited),15,1467392,98 +23906,Marilyn,6187,48577,3 +23907,Bolek Krupa,161495,37422,5 +23908,Colonel,43455,15676,5 +23909,Sasha,47504,37205,6 +23910,Angharad Morgan,43266,70035,1 +23911,Clocktower Lady,105,172280,18 +23912,Commander Hammerbeck,10491,58475,15 +23913,Maylinda Austed,4338,6929,1 +23914,Player's Wife,9563,211602,60 +23915,Nick,42739,72466,3 +23916,Trick-or-Treat Child,9716,1494713,37 +23917,Tone,47816,62066,2 +23918,,12479,4987,6 +23919,Stan,28176,161860,8 +23920,Angels Coach,41164,1056193,2 +23921,Club VIP,11535,1583695,38 +23922,Nerdy Guy,9877,20179,20 +23923,Ron,14295,30711,11 +23924,Grandma Rosie,30943,140355,11 +23925,Bob Danridge,9716,21278,6 +23926,Uneasy Man,11159,47944,53 +23927,Eleanor Lightbody,10467,2233,1 +23928,Zora,16096,15758,5 +23929,Terry,22910,89567,1 +23930,Baelon,28893,42113,4 +23931,Duncan Allanbrook,15556,6106,3 +23932,The Angel,15037,40279,12 +23933,Deputy Monroe,30352,4891,10 +23934,Guard (uncredited),34106,34187,117 +23935,Samurai,11712,33763,15 +23936,Gasper Dias,46924,25136,19 +23937,Vénus,26866,4959,1 +23938,Francesco,35292,1857410,25 +23939,Winner,524,7531,26 +23940,Kay,43316,47080,5 +23941,Banana Foreman,43832,1420479,45 +23942,E.T. (voice),601,9985,12 +23943,MVA Agent Evan Funsch,10796,976,1 +23944,Robin Gaddis,36915,31140,4 +23945,Kano,9312,57252,6 +23946,Eloi (as Malaea Chona Jason),2135,1337714,25 +23947,Rene,29449,15184,2 +23948,Luther,3784,33833,9 +23949,Barber,12584,127536,13 +23950,Joy - Age 9,18222,553983,6 +23951,Kaspar Anton Carl van Beethoven,13701,6970,10 +23952,Vogel's Follower,19200,2115,16 +23953,Victim Bob,27791,554476,11 +23954,Terrafirminator V.O. (voice),45772,16620,10 +23955,Moravia,73462,5251,2 +23956,Donald Addams,2907,67569,16 +23957,Butch,11975,60765,16 +23958,Andrew,140519,77029,7 +23959,Dinny Maher,61934,30501,10 +23960,Agency Man,10373,158293,15 +23961,Alvy Singer,703,1243,0 +23962,Mittermonster,27681,10475,6 +23963,Armand Goldman,11000,2157,0 +23964,Tracy Two Dogs,21801,117432,5 +23965,Hamburger Man,17889,95725,16 +23966,Edward Hewitt,77915,5341,1 +23967,Oni Nagano,55731,239979,9 +23968,David,141,20093,20 +23969,Announcer,17692,1532627,20 +23970,Brad,15762,193860,5 +23971,Colonel Masters,53150,14060,3 +23972,Waiter in Restaurant,9406,1660267,18 +23973,Senator,9776,1387766,23 +23974,Lt. Leslie Chapham,18111,82684,2 +23975,Gen. Marsh,35284,33547,10 +23976,Ashley 'Ash' J. Williams,764,11357,0 +23977,Christina 'Chrissy' Mundy,5332,2462,1 +23978,Earl,96238,1103,3 +23979,School Clerk,11231,1568434,12 +23980,Ace Jefferson,9102,56979,3 +23981,Peter Helfgott,7863,12647,3 +23982,Martin 'Marty' Maher,61934,10922,0 +23983,Long Tom,38732,19968,12 +23984,Psycho,10890,61671,11 +23985,May,10775,236115,8 +23986,Guy at Janelle's,11873,1265396,18 +23987,Margaret Alford/Margaret Addams,2907,13314,8 +23988,Street Urchin (uncredited),14698,90516,13 +23989,Joanie,544,19265,12 +23990,Jim Fallon,43368,2090,0 +23991,Alvy's Aunt,703,1726163,31 +23992,Opelka,12764,73585,5 +23993,Himself,9403,60434,33 +23994,Remo Gaggi,524,7165,7 +23995,Barrett,38965,64998,6 +23996,Tree Lot Owner,114719,1317809,7 +23997,Cowboy,5917,1894173,60 +23998,Molly Gordon,14522,1792987,12 +23999,Anne,220,2207,7 +24000,John Milner,838,12406,2 +24001,Sexy Sister,17496,3800,8 +24002,Garth Emmerick,11521,11076,4 +24003,Mae,11879,64056,1 +24004,Klein,21711,922,4 +24005,Gina Vitale,10154,10478,2 +24006,Ross Christian (uncredited),20213,553225,5 +24007,Nancy Kelcher,10013,1769,8 +24008,Homeless Man,9716,1661590,50 +24009,Rivka Rabinovitch,15310,52030,3 +24010,Baron Fortinbras,30584,655,9 +24011,Hooky,2750,96280,7 +24012,Col. James Braddock,15379,51576,0 +24013,Hefty Man,18,8445,24 +24014,Mrs. Junko,28169,1073040,7 +24015,Alvarez Kelly,60285,8252,0 +24016,Sabine,1628,18219,4 +24017,Mona,47942,6865,13 +24018,Dalai Lama (Adult),9746,58856,0 +24019,Tim (uncredited),3085,100945,32 +24020,Mrs. John Piersall,125413,1282698,4 +24021,TV Newscaster,33172,19427,5 +24022,Mr. Robinson,37247,8608,3 +24023,Sadie Agatha Johnson,11397,62845,22 +24024,Newspaper Office Worker (uncredited),3085,2772,24 +24025,One-Eyed Man,24126,26557,13 +24026,Young Hatsue Imada,10219,43662,3 +24027,George,965,14517,3 +24028,Bartender at Fashion Show,17170,11076,23 +24029,Greg McConnell,796,11867,6 +24030,Jackie,30547,5251,3 +24031,Matt Hooper,578,3037,2 +24032,1st Lt. Oster,9099,2632,5 +24033,Neighbor (uncredited),34106,1108832,54 +24034,Emilio Barzini,238,3090,7 +24035,Det. Bert Kling,4986,4139,1 +24036,Dancer,10603,1748114,35 +24037,Linda,1578,1227157,27 +24038,Carmen,21193,87268,0 +24039,Bob,42832,86618,0 +24040,Big Billy Hunniker,40866,37823,5 +24041,Freeman Lowell,811,6905,0 +24042,Ernie Henderson,8989,56510,3 +24043,Lilith,1811,69122,13 +24044,Swinger,28940,1851418,25 +24045,Man with Pipe,1058,16506,14 +24046,Rudy Baylor,11975,1892,0 +24047,Macabee Senior,28973,115068,8 +24048,Teen Idol,1811,31633,11 +24049,Connie Hisler,20443,7906,5 +24050,Le Président,105763,124268,6 +24051,Budgie Massey,26378,95301,14 +24052,Clover Fox,11120,27507,10 +24053,Miss Sweet,11622,1226231,8 +24054,Young postman,18939,133561,10 +24055,Major Dietz,10724,1729761,21 +24056,Ryan Letts,2750,47632,17 +24057,Madlock,41823,2231,5 +24058,Wilkins,10714,973,5 +24059,,104931,3776,1 +24060,Cynical Wounded Soldier (uncredited),11202,1089968,38 +24061,Mrs. Iselin,982,14730,2 +24062,Young Pink,12104,980082,6 +24063,Extra (uncredited),2897,1072437,58 +24064,August Murray,61563,74036,11 +24065,Tulley,11001,4169,2 +24066,Nanette Streicherová,13701,6199,5 +24067,German Sports Announcer,11535,1674936,58 +24068,Nate's girl,9776,59158,14 +24069,Pete,11017,44155,10 +24070,Tim Carpenter,9358,58374,4 +24071,Lt Harry Carstairs,36554,11132,5 +24072,Cemetery Cop,4338,37041,6 +24073,Claude Ratinier (Le Glaude),9317,11187,0 +24074,Lab Technician,28774,158737,14 +24075,The Brother,26889,3977,0 +24076,Robert Jenkins,15050,124131,5 +24077,Mme Bertram,78256,88895,7 +24078,Sgt. (later Lt.) John H. Fuller,9289,30551,41 +24079,Casino Bar Band Member,11873,1265405,37 +24080,Williamson,117,1886577,21 +24081,Angela,38554,51992,28 +24082,Painted Face Villain,28169,99251,13 +24083,Christine Weyring - seine Tochter,43596,6252,1 +24084,Village Woman (uncredited),28345,9090,15 +24085,Anthony 'Hub' Hubbard,9882,5292,0 +24086,"Noriko, second daughter",28273,70811,2 +24087,Thaddeus Clark,9308,12642,5 +24088,Joe Belle,5917,35090,3 +24089,Pentagon Chief of Staff,20424,34625,23 +24090,Thomas Aloysius 'Boats' Gilhooley,15875,18391,2 +24091,Commissar Razinin,1859,1547,3 +24092,Isaiah Schmidt,33016,7502,4 +24093,Mike Archibald,8470,55315,4 +24094,Canon Roche,99351,20368,15 +24095,Vago,2721,15184,10 +24096,Gustav Klimt,56934,45694,7 +24097,Pamela Porterfield,41645,6238,0 +24098,Russ Trainor,12499,7867,8 +24099,Three children (voice),28171,1169737,5 +24100,Roxanne Purley,11159,68384,4 +24101,Old Timer,77079,102101,3 +24102,Courtesan,8583,1871254,6 +24103,Child Dancer (uncredited),34106,1141147,71 +24104,Bertha,36094,18284,7 +24105,Samantha 'Sam' Baker,15144,21625,0 +24106,Nedda,3784,13451,6 +24107,Sarah,5,3132,15 +24108,Mimsy,9540,50877,17 +24109,Bartender,20242,1033154,19 +24110,Nurse,9294,1178376,14 +24111,Helen Miles Singer,9716,1661652,110 +24112,Jenny,11899,138568,6 +24113,Bag Lady,13555,1081819,10 +24114,Science Fair Judge,3595,129466,30 +24115,Otávio,598,1853689,26 +24116,Sheila,17692,1296377,19 +24117,Cpl. Chuck Fedderson,37305,1933,3 +24118,"George, Angela's Boyfriend",39578,29540,7 +24119,Russell Ziskey,10890,1524,1 +24120,Architecture Student,4478,554095,33 +24121,Horse Dealer,14522,134116,17 +24122,Bobby,9507,63871,6 +24123,Green,38982,110,3 +24124,Lena,9607,10981,6 +24125,"Leonide ""the Hacker"" Volkov",11859,13925,9 +24126,Pin Pal III,24746,104011,12 +24127,Raider,46924,137783,5 +24128,British Soldier (uncredited),9289,1208202,30 +24129,Groucho Party Dancer,9716,1661642,100 +24130,Nose Biter,28466,1677000,20 +24131,Man at Tea Dance,34838,572135,7 +24132,Mrs. Farraday,9095,515,4 +24133,Mrs. Darling (voice),10693,93897,4 +24134,Chopper Pilot,11008,1765317,20 +24135,Faith Dunlap,52772,3092,1 +24136,Kid At Airport,31586,109693,55 +24137,Ticket Taker,11374,1549747,50 +24138,Kara Fratelli,11397,19664,8 +24139,Bank manager hostage [cameo],38955,1365929,12 +24140,Max Washington,16560,66804,0 +24141,Tom Reese,39435,3381,0 +24142,Chip Pettengill,8870,1284159,4 +24143,Chuck Bronski,31503,1233,8 +24144,Ted Rhome,9294,61216,12 +24145,Lazarre's Tough,379,1281536,32 +24146,Diego,21242,19217,2 +24147,Extra (uncredited),2897,1364421,221 +24148,Capt. John Pershing,61934,86356,12 +24149,Guido,11524,1417449,9 +24150,Clorissa,796,1395911,17 +24151,Jay,24254,91443,32 +24152,Guy Asselin,2731,24381,3 +24153,Richard Feynman,2033,4756,0 +24154,Grandma,32049,161408,8 +24155,May McIntyre - The Mom,5257,217991,9 +24156,Dr. Land,13333,29313,4 +24157,Native Officer (uncredited),289,981271,23 +24158,Jimmy,16980,60060,3 +24159,Townswoman at Carnival (uncredited),220,85738,29 +24160,Wedding Guest (uncredited),238,61241,49 +24161,Piero,91076,159869,12 +24162,Ants,838,12412,10 +24163,Official #2 - Democratic Convention,2604,4201,83 +24164,Barmaid - Arthur's Bar,2604,180533,63 +24165,Agent in jungle,24254,91428,14 +24166,Brooke Wolfe,1073,15250,3 +24167,Kidnapping Husband,49410,68898,14 +24168,Fish,53862,828,2 +24169,Gerald,9427,207,4 +24170,Cecilia 'CC' Carol Bloom,15592,73931,0 +24171,Pvt. John Steele,9289,7503,9 +24172,Ted,9977,61347,14 +24173,Eddie,11001,16861,11 +24174,Kim Bliss,8336,33432,3 +24175,June,30709,106810,5 +24176,Gillom Rogers,12584,6159,2 +24177,Sgt. Mancini,8989,1075118,10 +24178,Steve,4012,294586,32 +24179,Doris,13105,113906,13 +24180,Daniel E. 'Rudy' Ruettiger,14534,1328,0 +24181,Piglet,81310,5247,2 +24182,Dr. Michael Hfuhruhurr,11591,67773,0 +24183,Extra (uncredited),2897,1624551,75 +24184,Hotel Meat Packer (uncredited),33680,30005,20 +24185,First Vietnamese Businessman,15379,136424,13 +24186,SWAT Officer at Embassy Siege (uncredited),21380,45577,11 +24187,Rusty Pirone,41590,23346,3 +24188,Additional Player,9563,1447585,43 +24189,Osvaldo,29743,129065,5 +24190,"Katherine ""Kitty"" Pryde / Shadowcat",36657,233,17 +24191,Hilary O'Neil,9079,1204,0 +24192,Mrs. Dibble,23114,29603,18 +24193,Prindle,12129,17580,8 +24194,Brian McMinn,15940,147482,4 +24195,Homeless Trumpeter,38554,1223624,16 +24196,Inmate,29492,97698,10 +24197,Frederick Keinszig,242,32058,13 +24198,Dr. Zit Face / High School Pal,544,1542,15 +24199,Louis,28387,1219214,20 +24200,Aunt Vesta,15592,178173,8 +24201,Silky Seymour,16249,83435,9 +24202,British Soldier (uncredited),9289,96623,15 +24203,Angela Maretto,577,1185405,12 +24204,Coach Clayton,18133,82721,10 +24205,Jimmy Olsen,9651,1067,6 +24206,Brandon McCarthy,11446,2839,5 +24207,Raider (uncredited),961,1422951,14 +24208,Jim Deer Jackson,2087,52,4 +24209,Mok,60083,230466,1 +24210,Eric,10909,107020,10 +24211,Diana Murphy,4478,3416,1 +24212,Jackson Scholz,9443,69010,13 +24213,Eva,5,3126,12 +24214,Ken Pile,623,383,3 +24215,Himself,17496,1176722,11 +24216,Nora Hung,53879,124936,7 +24217,Hacker's Follower,19200,56266,5 +24218,Suzie,2453,11024,11 +24219,Evangeline (uncredited),3085,85900,30 +24220,Egyptian Thug,31498,1313120,18 +24221,Passport Official,2084,34550,13 +24222,Townsman (uncredited),11697,1543059,27 +24223,Sid,71701,106992,8 +24224,Carrie Lawrence,12499,15886,2 +24225,Fat Alan,18002,59076,6 +24226,Max,2140,61584,9 +24227,'Jeff' Jefferson - Editor,28430,1387513,8 +24228,Jolly,81001,3085,1 +24229,Prisoner (uncredited),220,161702,55 +24230,Student on street,24254,91459,48 +24231,Stuart Booth,27526,1272,5 +24232,American Media Mogul,11535,1198964,51 +24233,Quartet,6038,1580039,42 +24234,Det. Steve Carella,4986,16475,0 +24235,Officer Tuttle,23069,94128,6 +24236,Prince Mikhail Andreevich Rostov,11706,48959,7 +24237,Young Buddhist Monk,1995,1371453,16 +24238,Columnist,26378,562908,38 +24239,Prince August,31527,2438,4 +24240,Preston's Mother,11397,1226913,13 +24241,Oyunokata,11953,72605,10 +24242,,2110,1201020,27 +24243,U.S. Marshal,28973,189826,13 +24244,Tao Liu,10222,126051,7 +24245,Jeopardy Contestant,9079,4137,14 +24246,Deb,3597,33271,10 +24247,Nelly,12652,4885,0 +24248,Professor Inga Bergstrom,714,1423897,19 +24249,Warden Cooley,3085,30243,17 +24250,Tipsy Cop,11001,1672667,41 +24251,Conrad Brooks,522,7134,10 +24252,Max Goldman,15602,6837,0 +24253,Unteroffizier Manfred 'Rollo' Rohleder,11101,4936,2 +24254,Casey Jones,1498,13550,1 +24255,Pvt. Elliott 'Mac' McDaniel,10652,74843,5 +24256,Malcolm Hilyard,42787,153301,4 +24257,Sheriff Frank Huston,2662,83978,18 +24258,Jake Potter,29343,103578,15 +24259,The Lady on the Bus with the Hat and Fox Stole,47144,110976,5 +24260,Harry Forbes,54287,7333,0 +24261,Cruising Man,24584,1781144,14 +24262,Magnus Buchan,11545,71770,9 +24263,Gerard,38554,35549,17 +24264,Sonny's Killer #1 (uncredited),238,1068099,48 +24265,Herschel Steinschneider / Erik Jan Hanussen,68569,3129,0 +24266,Hotel Concierge,9296,137750,44 +24267,Reform Club Member,2897,50998,41 +24268,Dan Willis,69605,2096,6 +24269,Le médecin,11876,33161,3 +24270,David Reed,10973,67685,0 +24271,Matthew Lewis,58985,6591,27 +24272,Buddy Kelsey,13681,12646,7 +24273,Lasse Laengsfeld,11907,34297,5 +24274,"Bernard, Lawyer",9296,104196,61 +24275,Man Talking at Bar,38775,121368,10 +24276,Denny Ransom,20307,229,6 +24277,Himself,2300,1197748,15 +24278,Fyodor,8358,55434,5 +24279,,9816,97802,20 +24280,Jackie,10805,724,1 +24281,Waiter on Train,9406,1660278,19 +24282,Sussmeit,339428,44441,6 +24283,Bill Maher,11374,74086,48 +24284,Mactilburgh,18,8399,15 +24285,Hubert Fiorentini,2110,1003,0 +24286,Lance Sullivan,16162,9779,1 +24287,Mourner,3035,1064924,19 +24288,Murena,145925,1200393,15 +24289,Judge,25673,2097,12 +24290,Thomas 'Tommy' Callahan III,11381,58198,0 +24291,Baby Clark Kent,1924,180137,27 +24292,Frankie,51044,20157,3 +24293,Sarak,10303,1076199,9 +24294,Dr. Tina Gassko,12309,1068,7 +24295,Luftwaffe major,9289,37793,60 +24296,Lover,12104,135101,10 +24297,Ely,18620,1638928,1 +24298,Rachel,11361,62589,2 +24299,Jan Brady,12606,112052,5 +24300,Gabriel Donozetti,159727,47668,2 +24301,George Clyde,22267,1284159,6 +24302,Mike Sweeney,12584,16420,4 +24303,Extra (uncredited),2897,1072934,185 +24304,Jody,91217,3234,2 +24305,Extra (uncredited),2897,1505860,147 +24306,Bob Leishman,19958,75263,7 +24307,Jack,24831,4966,4 +24308,Workman,1637,97446,30 +24309,L'Arbi,26252,4121,6 +24310,Barbara,30994,1878512,14 +24311,Susan Marie Heine,10219,33432,9 +24312,Mason,9457,58924,9 +24313,Randy Brandston,15489,1213527,13 +24314,Child (uncredited),73969,589812,10 +24315,Audience Woman,1497,1335583,41 +24316,Marshall McLuhan,703,10566,12 +24317,Maharishi,703,1726177,42 +24318,Patricia Findley,10354,27260,14 +24319,Policewoman and Marilyn,11185,77100,13 +24320,Katherine,47588,13549,2 +24321,Jager,6068,7242,4 +24322,Ralph (voice),13225,148122,7 +24323,English Judge,10047,1236882,16 +24324,Extra (uncredited),2897,569144,170 +24325,Phil,42424,78885,8 +24326,Man in Party,10396,1804166,15 +24327,VIP,3682,33667,26 +24328,Wilkes,38618,152522,5 +24329,Steve Marcus,32058,173172,3 +24330,Olaf Singletary,61548,16476,2 +24331,John Booth,27526,52,1 +24332,,21028,107667,12 +24333,The Villain,32628,29260,2 +24334,Left-Wing Student,17711,40036,18 +24335,Arkady Shapira,47504,12150,4 +24336,"Mrs. Johnson, the school vice-principal",27332,1070,6 +24337,Prosecutor DiAngelo,4916,1242148,5 +24338,Renos,18683,158670,17 +24339,Mike,9609,130744,11 +24340,RBTV Lackey,17711,93015,14 +24341,Mr. Devlin,205054,10161,8 +24342,Minor Role,1859,1471656,21 +24343,Yao (voice),10674,7420,8 +24344,Ditko,63105,975563,9 +24345,1st Fundraiser Issue Guy,9776,164036,24 +24346,Cheryl Tangeray,53685,175604,8 +24347,Battiston,35292,13689,18 +24348,Ritchie Vitale,10154,138988,9 +24349,un patient,60608,7693,5 +24350,Pop,16094,15535,3 +24351,Man at Liquor Store,838,161279,26 +24352,Leona Threadgoode,1633,1448921,16 +24353,James Anderson,21027,30560,3 +24354,Deacon,11001,11803,3 +24355,Locker Student,11397,1205131,80 +24356,Rookie Carroca / Featured Player,31044,994110,37 +24357,Crime Scene Policeman,4147,191637,21 +24358,Le S.D.F.,194,238388,31 +24359,Li Wan-Hao,11230,119449,9 +24360,,43828,1085896,59 +24361,Dalby's Henchman,21148,981410,11 +24362,Dr. Boudreaux,1058,11558,11 +24363,Fat rich patient,12780,1346930,15 +24364,Ben's Father,13549,140291,7 +24365,Val,15256,6886,9 +24366,Richard,28384,12122,9 +24367,Detective (uncredited),3309,3262,33 +24368,Steward,7305,159647,33 +24369,FBI Chief E.P. Hackett,15944,151676,12 +24370,Additional Bus Passenger #4,1637,1872794,44 +24371,Critical Bill,400,4515,4 +24372,Laura Baile,38732,31169,4 +24373,Cop,8844,1480246,15 +24374,Anna Ross,13505,21711,3 +24375,Edgar Little,10137,1535,8 +24376,Orlando Leone,35569,114378,0 +24377,Lucy Lane,9651,56753,11 +24378,Sugar Ray Band,12499,35753,11 +24379,Captain Louis Renault,289,4113,3 +24380,Autograph Seeker,705,247325,14 +24381,Barkeeper,46986,1535181,36 +24382,Voice of fish,24254,18165,12 +24383,Harry Winston Dancer,9716,1661599,59 +24384,Hunter in Woods,229,120456,24 +24385,Jean-Baptiste Le Guen,2731,20239,1 +24386,The Loud Soldier,59401,229288,1 +24387,Jun Leader,16441,161285,12 +24388,Prof. Shiro Miyasaka,10643,73139,4 +24389,Manager,26378,89728,26 +24390,otec Alžbětky,18939,83880,3 +24391,Wrong Kid in Alley,12499,52443,12 +24392,Kitty Carter,61934,37469,5 +24393,Fraga,7305,10963,13 +24394,Carlito,1058,90442,13 +24395,Myra Tinsley,19140,132493,7 +24396,Piedmont,24453,1535,6 +24397,Rock,15144,13644,28 +24398,Claudia,2428,14730,11 +24399,Fitzgerald,11145,13731,7 +24400,Additional Voices (voice),9504,7178,15 +24401,Maria Sophia Coletta Ragetti,15602,16757,3 +24402,Ray Hasek,11091,18324,1 +24403,Singer,2898,1216966,24 +24404,Lucy Honeychurch,11257,1283,1 +24405,Crush (voice),12,7,11 +24406,,48144,1396646,4 +24407,Santino,54845,5950,8 +24408,Fast Eddie Felson,11873,3636,0 +24409,Mornay,197,2629,35 +24410,Mr. Witherspoon,580,16214,11 +24411,Himself,2300,23682,7 +24412,Himself,11458,1480047,14 +24413,Director,9427,1217103,24 +24414,Rob Sweeney,70199,829,3 +24415,Nonie,403,5703,7 +24416,Partisan,11902,204749,29 +24417,,2100,1604344,10 +24418,Zora Mathews,12121,9781,2 +24419,(uncredited),99,43328,24 +24420,Mr. Welling,10897,14639,5 +24421,Tommy,11234,16060,5 +24422,Rube Baker,9771,132729,5 +24423,Association President,14136,118924,6 +24424,Brandi Svenning,2293,4174,3 +24425,Jack Torrance,694,514,0 +24426,Robbie Freeling,11133,10085,3 +24427,Bumpy Jonas,493,6561,1 +24428,Rider / Roper,43828,1464600,37 +24429,Simon Mariell,18801,1231909,5 +24430,kriminalkommissarie Persson,29224,139088,6 +24431,Lauren Ames,20242,56881,0 +24432,Ethel,85837,1023353,8 +24433,Annie,9095,33399,7 +24434,Kelly,47942,95598,15 +24435,Penny Lane,786,11661,0 +24436,Prince William,16417,1320521,7 +24437,Cop Outside Bar,20307,42526,12 +24438,"Sir Harry Otway, a Landlord",11257,44419,14 +24439,Trash,10925,97619,5 +24440,Nick,12309,148195,16 +24441,Sheriff Bruce Smith,30924,107308,1 +24442,Donaldson,11235,116129,13 +24443,Ray,18002,82805,7 +24444,Tio Sam - Uncle Sam,598,1181464,15 +24445,Policeman #2,10866,99231,25 +24446,Yvette,2731,19068,4 +24447,Ben Archer (Little Wing),40490,53283,2 +24448,Ag (Agapanthus),17044,3293,1 +24449,Duke Finnerly,134368,2969,1 +24450,Barak,10303,1076196,6 +24451,Kiffer Finzi,46992,18616,3 +24452,Yul Brenner,864,12977,3 +24453,Mrs. Lippett,70801,1167813,1 +24454,Jerry Fox,11120,553420,7 +24455,elle-même (Estelle Hallyday),64567,77192,9 +24456,Prince John,16249,14501,5 +24457,Grace Hamilton,242,2233,8 +24458,Andy LaCrosse,10871,1875778,6 +24459,Shazza,634,9144,6 +24460,Clifford,23805,55672,6 +24461,Himself,85472,932226,8 +24462,Bonati,33851,7140,6 +24463,,37532,104789,2 +24464,Maria,4133,34844,21 +24465,Fatso Paulie Orsatti,9835,1318826,9 +24466,National Enquirer Reporter,1850,28638,14 +24467,Herbie,21132,87134,8 +24468,Lt. Moses Hightower,11895,57349,0 +24469,John Fryer,2669,11856,4 +24470,Officer on Horseback (uncredited),961,89609,10 +24471,Pearl (voice),12,1372790,21 +24472,Leonardo (voice),1497,16060,19 +24473,Mudguts,9659,1125223,7 +24474,Morrison,12311,589217,12 +24475,Valerie Holdsworth,73116,97170,6 +24476,Bond Rogers,12584,7570,1 +24477,Maven,34223,184796,15 +24478,Drinking Buddy,2105,1659340,41 +24479,2nd Chance: Girl Proposed to on Golf Course (uncredited),32600,1263235,13 +24480,John Rooney,4147,3636,4 +24481,Helen Robberson,26261,1902,2 +24482,'Uncle' Wang,9462,143191,4 +24483,Extra (uncredited),2897,988134,105 +24484,Mr. Nathan,2675,3204,12 +24485,Corelli,23668,3002,1 +24486,First TV Reporter,33172,1086322,7 +24487,June,1574,17642,13 +24488,Churchill,12311,125842,13 +24489,Jessica,13965,76181,1 +24490,New Dawn Kid at Van,10391,201736,13 +24491,U.S. Soldier with BAR (Browning Automatic Rifle) (uncredited),37305,5048,18 +24492,Joe Souther,43832,30297,10 +24493,Dr. Dan Cain,18111,27994,1 +24494,Re Fernando di Aragona,26165,34020,13 +24495,Alice Sycamore,34106,30210,0 +24496,Nurse Duckett,10364,33644,8 +24497,Villager of Tullymore,10162,1609667,44 +24498,Cadet Sgt. Johnson,11008,149011,10 +24499,Ah Yen,12481,62423,12 +24500,Blondie Group #2,20075,97619,10 +24501,Bashir Toabal,1813,233547,37 +24502,Cop,525,122126,43 +24503,Sound Technician,10805,1651540,6 +24504,Alfalfa,10897,69395,0 +24505,Maggie,112991,23882,3 +24506,Phil D'Amato,9032,20818,6 +24507,Jan Valek,9945,60705,3 +24508,Bald Girl,17170,1535802,15 +24509,Mrs. Clatterbuck,38043,83909,9 +24510,Inspector Godliman,10863,2481,5 +24511,Cordelia Thornberry (voice),14317,29791,4 +24512,Audrey Junior (voice) / Burglar,24452,52140,6 +24513,Mrs. 'Fat Man',2321,98374,25 +24514,'Ayatollah Khomeini' Video Waiter,165,1434978,21 +24515,Attacker's Friend,10394,85073,14 +24516,Verna McGrath,29355,12967,1 +24517,Himself,17496,1217513,12 +24518,TGRI Assistant #2,1497,163431,34 +24519,Tamara Steel,714,58778,15 +24520,Theophilus,2428,130403,54 +24521,Cab Driver,46986,10963,14 +24522,Dr. Erasmus Craven,29056,1905,0 +24523,Ivan Peters,24739,103071,2 +24524,David Torres,3595,10963,12 +24525,Beth,45069,3196,2 +24526,Jan Montelli,16235,80138,8 +24527,James the Elder,2428,51348,49 +24528,Brian Costello,1793,55636,5 +24529,Receptionist,12506,45455,25 +24530,Neighbor (uncredited),34106,1295853,49 +24531,Umbopa,43860,98568,0 +24532,Seth Maxwell,29786,104872,1 +24533,Dumpling / Featured Player,31044,117081,22 +24534,Gabriella,31083,6161,1 +24535,Caroline,539,12500,8 +24536,russischer Soldat,56934,17817,12 +24537,Paul Blake,20704,2154,0 +24538,Creepy Little Girl,814,1660013,23 +24539,Sylvia Costa,47886,100818,11 +24540,"Miss Barnes, Beacon Reporter",28519,3902,6 +24541,Information Booth Clerk,38554,1531882,26 +24542,Cera,12144,71447,1 +24543,Recluso paranoico,1902,553869,9 +24544,Manager,1859,956444,52 +24545,Forewoman,638,9292,9 +24546,Caspar,2428,19217,50 +24547,Dr. Warren,40220,8516,2 +24548,Ms. Townsend (uncredited),15,134819,120 +24549,Uncle Hugo,24086,56266,4 +24550,Cop,788,197036,17 +24551,Policeman,9504,21384,9 +24552,Darci,11232,10871,4 +24553,Cruella De Vil / Miss Birdwell,12230,71779,2 +24554,Maurice,57575,40620,5 +24555,Frankie Scarlatti,49365,526,0 +24556,Récitant / Narrator (voix),1628,24365,8 +24557,Etta Heine,10219,1989,11 +24558,Sharks Fullback,9563,1741402,36 +24559,Emily,26180,5588,0 +24560,Gregg Lindroff,10396,3229,6 +24561,Extra (uncredited),2897,1208035,237 +24562,Jamie Wilson,2604,3127,10 +24563,Baron Margitta,17771,169,5 +24564,Puppi,9589,1728636,7 +24565,Young Donna's Friend,2604,171300,29 +24566,Carruthers,47955,2753,2 +24567,Drug Counselor,476,32774,11 +24568,Pizza Boy #1,20443,16861,10 +24569,Samon Shirane,11645,552198,13 +24570,Joe 'Beaver' Clarenden,6171,11662,2 +24571,Second Student Climber,43143,1238683,13 +24572,Lucille,108,1140,3 +24573,Gracie Downey,217802,109896,1 +24574,Pat Healy,544,2876,2 +24575,Aldo Silvano,32274,1241,5 +24576,Mister Eu,15875,1095793,13 +24577,Philomène,194,77736,17 +24578,Gambler Watching Kay Throw Dice (uncredited),25862,133277,11 +24579,Lyle Rogers,12704,6449,0 +24580,Marina,107693,937200,14 +24581,Surgeon,12102,1671975,15 +24582,Morris Finestein,41760,19889,3 +24583,Duchess,12230,97257,14 +24584,Inspector Rabineau,10003,87416,9 +24585,Student,11397,1773867,83 +24586,Pvt. Gutowski,11589,2751,9 +24587,Elaine Miller,786,3910,2 +24588,"Old Couple, Man",6038,1580030,35 +24589,Prof. Bhaer,39938,2092,2 +24590,Daphne,140519,61111,8 +24591,Red,27993,63208,3 +24592,Arlene,276635,1484406,5 +24593,Leila,28047,5657,2 +24594,E.F. Duncan,772,115457,11 +24595,Balbir,14587,1616922,14 +24596,medico cinese,25403,1854984,22 +24597,Extra (uncredited),2897,161764,77 +24598,Carol Lipton,10440,3092,1 +24599,Mr. Jared Svenning,2293,12132,6 +24600,Minira,39462,1185641,7 +24601,Press Representative,32059,1779454,15 +24602,Rice,857,218321,19 +24603,Dr. Edwards (uncredited),220,10542,42 +24604,Steve Boyer,2604,26470,11 +24605,Diane,22477,36802,3 +24606,Lenny,9296,167261,65 +24607,Wedding Guest (uncredited),11456,571504,8 +24608,Hooker,12764,136520,18 +24609,Alice,11374,34407,31 +24610,Director of TV Crew (uncredited),28,1776,32 +24611,Blue Model,34838,1390470,4 +24612,Drunk Reporter (uncredited),3078,117036,14 +24613,Priest,50512,1352516,26 +24614,Cathy,220976,49422,11 +24615,Lorraine Quarl,57575,44714,4 +24616,Gendron,26252,94947,13 +24617,Girl at the Country Club,11593,1183449,29 +24618,Chris,13408,325,5 +24619,Coachman,31995,85937,32 +24620,Guard,12506,189431,16 +24621,Sal,10173,14721,12 +24622,NY Cop,18,1395429,45 +24623,Assistant Undertaker,4338,37044,11 +24624,Sy Orlansky,19050,10224,1 +24625,"Harry Wentworth (segment ""Something To Tide You Over"")",16281,12836,8 +24626,"Claire, Dr. Marvin's Secretary",10276,164258,14 +24627,The Porter (uncredited),678,1023934,29 +24628,Weller,857,75071,16 +24629,"Sergio, the hair stylist",12606,60950,14 +24630,The Foot,93350,94435,18 +24631,Christina Mariell,18801,3967,0 +24632,Sam,53150,44819,8 +24633,Restaurant Owner,11830,55663,19 +24634,Fighting Soldier - Reeves Fight,1578,26874,14 +24635,Herself,15765,1459,8 +24636,Stacey Sampanahoditra,9438,9278,6 +24637,Dom Woganowski,544,1534,4 +24638,Jim Hill,29343,50967,0 +24639,Evelyn Stiller,73462,66221,5 +24640,Cashier,46786,3201,7 +24641,Semu,26661,80206,5 +24642,Roy Kirkendall,21118,723,3 +24643,Janice Taylor,30946,31717,10 +24644,Train Fireman (uncredited),2897,1238648,166 +24645,Frank,22023,79646,13 +24646,Horace,77056,35965,1 +24647,Ema Cardeano Paiva,107693,213290,0 +24648,Judge,1574,17646,18 +24649,Karate Mom (uncredited),32049,1502549,54 +24650,Malfaire,28165,98317,6 +24651,Dominique 'Domino' Derval,660,9919,1 +24652,Giselher,5608,15140,7 +24653,House Maid (uncredited),15,1704987,79 +24654,Bianca,9651,30585,5 +24655,Newsreel Man (uncredited),15,1422325,26 +24656,Audrey Dane,43277,95314,5 +24657,Kirby's Secretary (uncredited),34106,988794,141 +24658,Virginia Worrel,61563,1909,2 +24659,Catlin,9945,534,6 +24660,President Lindberg,18,8396,7 +24661,Elephant (voice),9325,15661,8 +24662,Shelley Allen,17203,20162,2 +24663,Mrs. Goodman,38922,1224660,8 +24664,Mom Li,60855,158522,2 +24665,Helicopter Pilot,4478,1106260,38 +24666,Pvt. Velie,37305,9287,11 +24667,Extra (uncredited),2897,1507184,135 +24668,Rick,18642,58558,3 +24669,Tateo,20645,111691,7 +24670,Al Matthews,28577,95012,8 +24671,Man in a White Car (uncredited),269,38078,17 +24672,Slimy Man,32049,1502508,21 +24673,Ed Reese,8463,50464,3 +24674,Ralph,10847,9296,0 +24675,Veronica Sawyer,2640,1920,0 +24676,Herger the Joyous,1911,19899,2 +24677,Nobunaga Oda,11953,70134,7 +24678,Extra,3035,1307855,12 +24679,Manuela,4307,16975,5 +24680,Linda,4012,52996,9 +24681,Nurse,201581,1183660,6 +24682,Ellen Buckman,2758,538,6 +24683,Joe Mentaliano,8467,5170,4 +24684,Joseph Newton,21734,7666,3 +24685,Roach,9059,19159,7 +24686,Native Officer (uncredited),289,120703,83 +24687,Tsurumaru,11645,149405,14 +24688,Ramelle Paratrooper,857,1230574,29 +24689,Ack Ack Raymond,18282,87003,6 +24690,The Chauffeur,13549,3715,11 +24691,Teenage Cowboy,11879,6474,7 +24692,Karen Sympathy,17711,15555,2 +24693,Rapunzel,9441,1834100,9 +24694,Plumber,14295,1516289,19 +24695,The Monster,13555,1081822,14 +24696,Sam Sweet / Stan Sweet,9894,7399,6 +24697,Jeremy Blond,5279,42626,14 +24698,Cinderella,16176,93327,0 +24699,Larry Graham,42218,74573,6 +24700,Bob,32031,1065,5 +24701,Joe,30363,26959,9 +24702,The Factor,42453,103956,14 +24703,Politician (uncredited),15,1421016,115 +24704,Brandy Alexander,2887,57093,26 +24705,Count Alexei,31527,133470,1 +24706,Vasily,20242,545582,18 +24707,Nora Doel,15677,5309,2 +24708,Food Fantasy Girl,15050,52144,8 +24709,Raju,1689,357312,5 +24710,Henry Squires,215875,8945,1 +24711,Telegraphist,31671,52590,8 +24712,George,11888,588,3 +24713,"Barbara ""Babs"" Pegg",25934,1220662,4 +24714,Mondoshawan / Ground Crew,18,1857416,40 +24715,Simon,46986,50314,15 +24716,Kathryn Merteuil,796,11863,0 +24717,Albin Grau,10873,1646,2 +24718,Ria's mother,109472,1046574,3 +24719,Steve,9717,6574,3 +24720,Disc Jockey,85160,1432460,11 +24721,Clown,19200,6949,6 +24722,Massoud,33367,1563034,3 +24723,Billy,49410,85949,23 +24724,Sean,10708,53211,19 +24725,Dobeny,38950,138116,8 +24726,Eve Rustikoff,11622,5588,1 +24727,Mr. Quinn,29698,135039,8 +24728,Arthur Townsend,45019,53963,6 +24729,Sandy,18317,104795,3 +24730,Magistrate,10373,24705,10 +24731,Woman in Police Station,261246,10731,17 +24732,Mrs. Touchett,36758,7632,5 +24733,Trailer Narrator (voice) (uncredited),220,1331765,51 +24734,Stage Manager (uncredited),21468,34119,13 +24735,Berlicot,11915,39142,5 +24736,Doctor in Blackport,9272,1075086,10 +24737,Recruiting Gunnery Sgt. Hayes,2604,13022,5 +24738,Rose Rose,1715,4237,7 +24739,Gale,266022,21197,2 +24740,Basil Exposition,817,13919,2 +24741,Victor Laszlo,289,4112,2 +24742,Saloon Girl (uncredited),2897,1413586,312 +24743,Himself,9776,59157,13 +24744,Pilot,1924,1600363,54 +24745,Waiter,210092,1193681,17 +24746,Jose,29263,1119355,4 +24747,D-Bob,14534,15277,1 +24748,Blakely,99351,81934,16 +24749,German Tourist,18683,1831896,20 +24750,Innkeeper (Luna's Father),39578,2264,9 +24751,'Mushy' O'Connors,299,4361,8 +24752,Red Thomas - The Bum,105,54564,36 +24753,Kevin Walker,20678,58563,1 +24754,Josef,47493,4935,5 +24755,Santanico Pandemonium,755,3136,5 +24756,The Blind Man,47161,1891583,3 +24757,Scott,47112,3201,5 +24758,Hotwire Consultant,10866,117564,20 +24759,Policeman,32049,1502510,24 +24760,Ibrahim Jafari,287305,35263,8 +24761,Don Vito Corleone,238,3084,0 +24762,Detective Turner,16235,6561,6 +24763,Guest,11589,1878356,32 +24764,Southern Tourist,38554,1224152,24 +24765,Méo,42832,224816,13 +24766,Connie Madison,92769,1743,3 +24767,Ice Man (uncredited),34106,1204352,119 +24768,Twin # 1,24254,91423,8 +24769,Office Woman,14181,1218215,12 +24770,Henry Reyna,76397,14850,14 +24771,Freddy,10925,64198,3 +24772,"Beebee, Age 25",32872,80966,9 +24773,"Marcie, Lamborghini Babe",11950,40431,9 +24774,Chase Hammond,14429,5090,2 +24775,Engel,339428,4922,5 +24776,Jean,30265,1338,2 +24777,Dacey,23668,28048,12 +24778,Countess Constance La Grave,32274,13333,12 +24779,Piss Off,41160,26862,8 +24780,Inés,26165,95608,10 +24781,Judy Tipp,29076,18277,0 +24782,Specialty Dancer (uncredited),2897,1468755,301 +24783,Florenz Ziegfeld Jr.,43277,32428,0 +24784,Linda Partridge,334,1231,0 +24785,Charlie,9819,69301,6 +24786,Daisuke Serizawa-hakase,1678,30568,2 +24787,Thug #1,31044,26737,50 +24788,Hammer,32049,1502513,31 +24789,Sixkiller,27380,103572,11 +24790,Rabbi,9296,94661,56 +24791,Helen at the B&B,10207,8492,12 +24792,Suki,27380,66225,10 +24793,Waldo's Dad,10897,33663,9 +24794,Kurofuji,11712,7453,4 +24795,Himself,1282,16832,4 +24796,Michael,41166,41419,9 +24797,Jill Fitzpatrick,47574,51671,0 +24798,Doctor,201581,163671,7 +24799,May,28430,131779,6 +24800,Al,29444,2219,8 +24801,Jake,13965,76186,7 +24802,April,95743,59153,0 +24803,Edward Charles Wanderley,24634,51762,2 +24804,Backdoor Man,32049,62596,23 +24805,Tourist,43832,1468086,35 +24806,Herman Pahmeyer,31665,5254,6 +24807,Myron Bedlock,10400,19839,8 +24808,Beta Zombie,15762,107372,22 +24809,"Kin, the madam",3780,131013,13 +24810,Mr. Doyle,22317,1735,6 +24811,Harve,31671,33059,9 +24812,Eric Draven,9495,57700,0 +24813,J.W. Harper,24767,28010,3 +24814,Dwight Eisenhower,61934,4316,8 +24815,Tawny,9426,57626,3 +24816,Frankie's Curator,10003,27172,24 +24817,Clyde,17692,1296389,37 +24818,Playground Father,12104,249810,11 +24819,Diane Armani,25005,84584,1 +24820,Barbatus (voice),8916,2047,3 +24821,Babs Osbourne,22279,1244810,16 +24822,Beanie,11635,4937,2 +24823,Dan,277726,28040,5 +24824,Arne Storch,16026,1105509,8 +24825,Travis,2102,3785,7 +24826,Travis Cornell,33172,17444,0 +24827,Jimmy Dupree,112991,13936,4 +24828,"Arnold, Mitsubishi Driver",11950,10460,13 +24829,Rupert Macabee,28973,147981,7 +24830,Judge,108312,1273694,14 +24831,Betsy,10603,1229698,9 +24832,Zorg's Man,18,1857455,99 +24833,RAF Pilot,9289,38358,40 +24834,,18919,1320282,6 +24835,Mikkonen,2,4826,2 +24836,Photographer,2984,1887366,34 +24837,Endicott,3085,30236,11 +24838,Ethan Hunt,954,500,0 +24839,Mondoshawan,18,1857414,37 +24840,Neon,19819,35806,1 +24841,Nurse Alexandra,10727,187133,9 +24842,Lee Foo,53879,16103,12 +24843,Jackie,9820,159962,7 +24844,Jan,409,5481,15 +24845,San Quentin Matron,28577,153363,11 +24846,Anna,46924,11478,33 +24847,Michel,8342,54625,5 +24848,Traitor,40879,1102478,9 +24849,Gibson Rickenbacker,10134,15111,0 +24850,Lola Jansco,13440,64908,4 +24851,Imperial Guard,8584,120725,5 +24852,Ed Killifer,709,5616,10 +24853,Judge Simpson,13005,1107,4 +24854,Mr. Milton,887,14518,10 +24855,Peter,890,14633,2 +24856,Aurora,11535,11008,2 +24857,Stage Shotgun Rider,43828,955691,56 +24858,Mr. Katz,32872,4094,43 +24859,Old Lady (uncredited),17889,89019,18 +24860,,1907,1328285,15 +24861,Iris,95627,1552815,23 +24862,Wardress (uncredited),20213,553226,6 +24863,Patek,39771,102441,7 +24864,Caleb,11943,70992,3 +24865,Ted,71701,133123,7 +24866,Suette,38043,10485,16 +24867,Jake Roedel,22267,2219,0 +24868,Elderly Lady,26378,1286627,36 +24869,Newsreel Man (uncredited),15,1596347,27 +24870,Henry Gyrich,36657,115854,11 +24871,Stephen Chase,11259,13638,2 +24872,Captain Lonya Rostov,9423,174106,10 +24873,Master of Caius,9443,78157,10 +24874,Boatman,32093,14666,31 +24875,Extra (uncredited),2897,1244482,206 +24876,Spartanette #5,14,1503022,29 +24877,Ewald,79783,7668,5 +24878,Ester Jenks,72086,11916,2 +24879,Miss Blair,11485,69570,3 +24880,Holden Spence,9716,819,3 +24881,Vincent Borelli,524,13605,21 +24882,Minor Role (uncredited),2897,88614,279 +24883,Extra (uncredited),2897,1595381,226 +24884,Attorney to Kirby (uncredited),34106,30216,139 +24885,,186705,19361,3 +24886,Chistopher Robin,81310,1225463,5 +24887,Chief Sterns,1497,191557,10 +24888,Grandma Kurnitz,27224,97337,2 +24889,Milly,24634,119113,7 +24890,Sheriff,29239,89728,7 +24891,Sproule - London Publisher (uncredited),22292,239022,13 +24892,Stockbroker #1 / Featured Player,31044,1407918,43 +24893,Older Woman,42987,80234,8 +24894,Ivan Greer,18222,65334,2 +24895,Buttercup (voice),59387,15274,2 +24896,Cab Driver,9475,1800177,33 +24897,Archimandrite Simeon Todorsky / Arch-Episcope,31527,1075172,8 +24898,Mike Flaherty,13562,125842,8 +24899,Brad,14293,76546,0 +24900,Sergeant Kravits,205054,84978,11 +24901,Paul Cooper,28902,18992,1 +24902,Pool Supply Man,32332,534,1 +24903,George Hastings,117026,103071,0 +24904,Justin Stewart / Blue Ranger,6499,52048,9 +24905,Juancho,5,3135,21 +24906,Jane Livingstone,8342,1641,7 +24907,Dr. Stein,10173,2716,18 +24908,Brian,220976,5176,8 +24909,Jack Stoneman,24767,8659,6 +24910,Mr. Melman,15592,1708724,11 +24911,"Betty, Switchboard Operator",10276,59845,12 +24912,Sgt. Keller,15497,103069,17 +24913,Paramedic,169,1088201,19 +24914,Wilma Jerzyck,10657,113906,7 +24915,Uncle Bob,17496,12852,4 +24916,Erik,742,11046,10 +24917,Lynne Margulies,1850,7621,1 +24918,Mrs. Smith,17015,1229181,18 +24919,Eddie,39771,2881,5 +24920,Party Guest (uncredited),15849,1091420,11 +24921,Preston B. Whitmore (voice),10865,4251,4 +24922,Borg,2102,8656,8 +24923,Slipknot Band Member,11535,92320,97 +24924,Refugee (uncredited),289,975881,80 +24925,Mr. Jones (uncredited),3309,30280,26 +24926,Soundman,522,7141,17 +24927,Ancient High Priest,1995,127166,18 +24928,Mac,11235,20899,1 +24929,Tod Waggner,9532,86397,6 +24930,Emergency Room Ghost,251,3433,12 +24931,Molly Jensen,251,3416,1 +24932,Dr. Waitz,33680,13361,15 +24933,Korney,50512,1352518,28 +24934,Nightwatchman,24739,6939,16 +24935,Ronnie (uncredited),28430,113543,15 +24936,Imperial Guard,6038,1699694,47 +24937,Doctor Thomas Silver,31682,5737,4 +24938,Cop #2,26378,1270997,54 +24939,,18919,1320289,16 +24940,Dancer,10603,14390,37 +24941,Fielding Mellish,11302,1243,0 +24942,Sheldon,15943,103322,15 +24943,Sir Joseph Whemple,15849,78829,3 +24944,Judith R. Flick,9451,13023,8 +24945,Network Lawyer at Khan's Place (uncredited),10774,2714,21 +24946,Loïc,12112,49025,1 +24947,Dalia,125945,1888567,10 +24948,Lonnie Earl Dodd,21118,879,2 +24949,Able Bodied Seaman (uncredited),12311,14261,42 +24950,Bodie,14370,12965,16 +24951,Kimberly Jonz,20678,59153,2 +24952,Nicole,123757,1904840,2 +24953,Darrick,36943,4323,5 +24954,Isaac Foster,1959,22169,12 +24955,President of Company,1678,134406,8 +24956,Extra (uncredited),2897,1559270,70 +24957,Jacques Grosjean (voice),194,553215,49 +24958,Knight (uncredited),490,1194875,29 +24959,Gig,10783,3129,2 +24960,Buddha,35569,1039126,14 +24961,Sarah,2021,20769,5 +24962,Arthur Denton,10776,1532,6 +24963,Dean Youngblood,17465,2879,0 +24964,Waitress (uncredited),949,114625,62 +24965,Man Smoking at Nassau Casino (uncredited),660,9951,18 +24966,Peter Merriwether,43915,106179,0 +24967,Cp. Ramov Aguilar,2100,5365,9 +24968,Honeymoon Woman,43089,129278,16 +24969,Pinder,660,2246,12 +24970,The Denny's Host,9464,1733428,16 +24971,Capt. Debbie Callahan,11895,22252,3 +24972,Rudy (Kolinski) Sr.,14295,6164,7 +24973,Lieutenant William Bligh,2669,4173,1 +24974,"Jackie Chan, Mitsubishi Engineer",11950,18897,10 +24975,Detective Krevoy,544,14700,13 +24976,Skeptical Father,10708,89708,48 +24977,Cashpoint Woman,153141,1215734,14 +24978,Creepy - Lends Tom Guns,43828,98052,30 +24979,Sems Frau,2525,25784,6 +24980,Jimmy Jiles,2453,4808,4 +24981,Genevieve Le Plouff,23967,15555,0 +24982,Michael 'The Assassin',11535,64674,28 +24983,Dad Dunlap,110972,20899,6 +24984,Det. Hal Willis,4986,15635,9 +24985,Soldier,46592,543724,8 +24986,Receptionist,2898,35551,13 +24987,Roger,26030,111303,3 +24988,Mr. Bigley,53714,93164,5 +24989,Additional Voices (voice),9504,16580,14 +24990,Margaret Krusemark,635,44079,3 +24991,Henry Sherman,9428,2047,7 +24992,Hank Anderson,47942,3636,0 +24993,Aja,2140,21945,6 +24994,Regina Isabel,26165,101401,6 +24995,Mama Leckie,99351,95271,5 +24996,Capt. Hill,10142,3211,10 +24997,Little Girl,3035,1486720,18 +24998,Anton Bartok,10344,21283,2 +24999,Richard Skinner (uncredited),12311,1371322,57 +25000,Shelley,11855,6886,1 +25001,Bouncer,28387,97600,16 +25002,Michael Buckley,12476,155080,14 +25003,Matt Wilson,10406,55557,5 +25004,Tyler Fitzgerald,11576,2771,16 +25005,Train Driver,1637,31028,37 +25006,Paul Gardener,9877,7499,1 +25007,1st Hood,1924,1681437,59 +25008,Floor Manager,32049,82443,25 +25009,The Brother,90762,1364580,4 +25010,Teen on Midway with Glasses,38775,121371,13 +25011,Sale House Woman #4,14,152796,17 +25012,Mother,24746,104001,2 +25013,Claris,9296,1744157,42 +25014,Pascal Ichak,105763,24501,0 +25015,Colonel Frank Fitts,14,2955,5 +25016,Margaret Green (uncredited),21734,153505,26 +25017,Mrs. Burden,17691,1118131,15 +25018,Gaton Monescu,195,2435,2 +25019,Student,9475,1557954,39 +25020,Mrs. Rice,42424,128123,6 +25021,Dr. John Webster,47942,74763,12 +25022,Big Governess (uncredited),15,1408657,142 +25023,Lieutenant William Blighs Frau,2669,26869,26 +25024,Shuri Kurogane,11645,96637,7 +25025,Voice (voice),379,565196,41 +25026,Angel at the Tomb,2428,24810,12 +25027,Panhandler,50123,1379975,8 +25028,Charlie,27150,52304,6 +25029,Ray Neelay,14429,942055,9 +25030,Michael Brace,15050,4690,0 +25031,Jeffie,30547,1507162,12 +25032,(uncredited),80713,588821,15 +25033,Snyder,11607,15860,3 +25034,David Kulovic,47500,42993,2 +25035,Big Lunk,53617,148602,5 +25036,Scott Hastings,10409,24589,0 +25037,Crowd (uncredited),238,1394703,41 +25038,E-2,1687,16089,8 +25039,Old Man,2613,27447,7 +25040,Enzo,27834,3753,4 +25041,Gloria Forrester,9354,6727,8 +25042,Mr. Schuster,38509,120597,21 +25043,Man on Bus,2898,66605,25 +25044,Gen. Leland Copperfield,9827,58924,6 +25045,Rocko,13667,105060,11 +25046,Loïc,6187,37919,2 +25047,Lieutenant Colonel Charles R. Codman,11202,160494,18 +25048,Mother Rabbit / Little Sister Mouse (voice),11886,64871,6 +25049,Vic,19209,4724,0 +25050,Burton,314352,682,8 +25051,Mona,15489,391533,16 +25052,Nicola,21828,2227,2 +25053,Baby Ray,18,1857434,71 +25054,Annie Hall,703,3092,1 +25055,Mechanic,43832,126014,30 +25056,Meowth (voice),12599,73043,5 +25057,Kathleen,10406,1214165,8 +25058,Sheldon the Desk Clerk,786,156962,46 +25059,Carla,49792,9625,2 +25060,Dorrie,703,1237366,38 +25061,Charlotte Bartlett,11257,10978,0 +25062,Child at Party and School,1624,60072,5 +25063,Wes,17496,349,2 +25064,Leopold,11232,6968,1 +25065,VIP,3682,10750,20 +25066,Maid,17691,103087,22 +25067,Harry Burck Jr.,32031,19728,4 +25068,Mary Margaret Catherine Dineen,16806,174639,11 +25069,David Leung,25087,23915,1 +25070,Chad,96238,155236,8 +25071,Undertaker,4338,9631,12 +25072,Jed,11694,70260,5 +25073,Paul,115332,87066,5 +25074,Pencil Machine Operator,985,14801,8 +25075,Guido,1578,1888773,8 +25076,Specialty (uncredited),61934,30554,16 +25077,Iceman,35292,1873566,37 +25078,The General,11134,70673,6 +25079,Fred Francis,11298,34597,4 +25080,Emily Bates,141,20092,19 +25081,Theater Manager,10849,12857,3 +25082,Nightingale,2924,987107,12 +25083,Blackman At Opera House,9343,1101310,9 +25084,Michael Gates,28384,3896,5 +25085,Jack,13369,133,1 +25086,Additional Player,9563,1741406,41 +25087,Scott Thorpe,12538,60950,1 +25088,Sonja Sonne,10801,45820,7 +25089,Wendy's Father,12506,29306,26 +25090,The Social Worker,11159,72305,6 +25091,Ellis Evans (Hedd Wyn),151489,1836812,1 +25092,Music Awards Technician,9403,1217571,25 +25093,Kaintuck (uncredited),11697,114564,66 +25094,Diane Freeling,11133,10080,1 +25095,Dispatcher,11185,1194430,28 +25096,l'éditeur d'Adrien,78568,131982,9 +25097,Capt. Jamieson,36220,7633,2 +25098,New Year's Eve reveler,70199,558099,11 +25099,Cindy Montgomery,2115,1956,10 +25100,Lina Paul,10207,7796,4 +25101,Big George,1633,16936,7 +25102,Jeryline,9059,9575,2 +25103,Bella Kurnitz,27224,2167,1 +25104,Simon in Marketing,634,1567504,17 +25105,Danny Torrance,694,10410,2 +25106,,25538,1407086,19 +25107,Céline,76,1146,1 +25108,Neil the Bartender,10354,8499,24 +25109,Paul Metzler,9451,21594,2 +25110,Corporal - El Taj,409,214794,30 +25111,Tom,634,9145,5 +25112,General Staedert,18,12642,12 +25113,Extra (uncredited),2897,1600059,156 +25114,Drunken Man,634,1227733,21 +25115,Louise Callan,42569,74636,3 +25116,Chick Chicalini,32332,6105,7 +25117,Wing Kong Hatchet Man,6978,1071306,38 +25118,Able Bodied Seaman (uncredited),12311,52178,36 +25119,Charlie Hinton,10708,776,0 +25120,Duffin,31618,1816899,17 +25121,Conferenciere,10801,1221648,12 +25122,Geneviève Emery,5967,50,0 +25123,Rudy,12309,1226328,8 +25124,Eugene's Father,267188,1240,5 +25125,Professor Hyakken Uchida,13889,110310,0 +25126,Cynthia's Friend,2280,80138,12 +25127,Brett Favre,544,7419,11 +25128,Mellisa Green,11001,74615,4 +25129,María,80713,3625,1 +25130,Herbert Woodruff,10333,1924,4 +25131,Professor Joe Butcher,709,10681,7 +25132,Sean,62463,1780604,12 +25133,Sade,42787,87685,6 +25134,Lt. Ed Flynn,12476,62019,4 +25135,Charlie,11517,57755,1 +25136,Robert Hung,53879,10344,6 +25137,Keeley,28120,10158,1 +25138,General Matheson,6171,21710,14 +25139,Father Delaney,11449,522,2 +25140,Agency Head,12186,20628,4 +25141,Aggie,44932,21459,6 +25142,Lt. Edwards,12311,940628,26 +25143,Captain Smith / Colonel Jeffries,415072,34505,2 +25144,Harry Winston Dancer,9716,1661600,60 +25145,Geoffrey Clifton,409,5472,5 +25146,Mom,165,1434985,30 +25147,RAF Operator,10724,1882508,49 +25148,"Billy ""Froggy"" Laughlin",10897,67380,11 +25149,Elizabeth Wurtzel,16229,6886,0 +25150,Lefty LeBow,21866,16555,4 +25151,Military Technician,18,554284,87 +25152,Nick Kaminsky,44414,51805,0 +25153,Helen Miles Singer,9716,1661644,102 +25154,Lasse Lundberg,16026,84278,9 +25155,Inmate (uncredited),34106,179384,37 +25156,Chet Felker,15489,59011,11 +25157,Wolfgang Müller,10873,20523,8 +25158,Kelso,949,119232,11 +25159,Brigadier General Frank Savage,15497,8487,0 +25160,Mr. Howard,276635,1484416,15 +25161,Roller Rink Announcer,15943,111464,17 +25162,Sale House Woman #2,14,166961,15 +25163,Ben's Dream Date,90414,1291648,9 +25164,Sheriff Arnett,9717,119856,11 +25165,Mrs. Dudley,11618,41293,8 +25166,Burt - the Bartender,17590,138116,6 +25167,Florence,753,11142,6 +25168,Dan Darwell,29355,14888,13 +25169,Dental Receptionist,9358,75532,22 +25170,Akiko Shinjo,34326,1200211,9 +25171,Mary Beth Dunhill,42424,8183,1 +25172,Treasury Agent Brooke,43342,93899,10 +25173,"Henry Northrup (segment ""The Crate"")",16281,11066,0 +25174,Amy Nelson,28295,31550,0 +25175,Rosy Labouche,11333,30296,2 +25176,Reporter at Bar,10400,51532,27 +25177,Mr. Flint,20735,40393,2 +25178,Lane Dixon,10871,7499,5 +25179,Farmer Grey,14522,48,1 +25180,Army Sentry,24831,102445,18 +25181,Desk Sergeant,15943,118484,16 +25182,Hortense's Sister in Law,11159,1147904,13 +25183,Nina,16980,3130,6 +25184,Joe Jarrett,17691,4299,1 +25185,Alfred P. Doolittle,11113,12727,2 +25186,Extra (uncredited),2897,1422281,242 +25187,The Man on the Bus Who Thinks He's Tough,47144,1009300,0 +25188,Liz,46029,589,2 +25189,Teen with Drink at Party,11397,1773864,81 +25190,Râmen no sensei,11830,230532,29 +25191,Talk Show Host #1,9296,1213318,52 +25192,Basketball Kid #5,165,1434994,39 +25193,Screaming Lady,379,1281526,19 +25194,Garth Jones,9443,2369,17 +25195,Father Kani,12506,47458,5 +25196,R.G. Greiser,59569,31512,4 +25197,Performer,34113,1884306,5 +25198,Captain Mayberry,40095,82685,9 +25199,Ranger,28893,5139,5 +25200,Rosencrantz,18971,64,0 +25201,Frankie Santalino,41209,217510,6 +25202,Archbishop,16176,123209,21 +25203,Otto,9301,1282003,8 +25204,Extra (uncredited),2897,30956,111 +25205,Teenage Hooker,4338,6886,5 +25206,Sweater Friend,8467,1853260,68 +25207,Dionne,11159,145694,8 +25208,Judge Nizetitch,10396,18574,13 +25209,Private Eriksson,10142,521,0 +25210,Best Man at Wedding (uncredited),15,1205434,113 +25211,Tom,31911,227,3 +25212,Inspector Frank Bumstead,2666,227,1 +25213,Small Child #2,18736,143334,32 +25214,superstite smemorato,29743,1192187,8 +25215,Assistent #1,638,9310,33 +25216,Georges,14651,7278,5 +25217,Tracey Keeshan,33172,22072,2 +25218,Mannequin,9716,1661593,53 +25219,Fern Stoner,161795,8227,9 +25220,Lieutenant,11415,23974,17 +25221,Ashley Parker,8869,1245,3 +25222,Hannah Wippler,17771,27125,9 +25223,CEO,1637,91427,21 +25224,Rose Sayer,488,6598,1 +25225,Dr. Abraham Sapirstein,805,1208,5 +25226,2nd Man - Gangster,10889,119232,6 +25227,Gabriel,21027,86997,9 +25228,il morto,145925,1735270,10 +25229,Playground Girl #2,14,1219143,36 +25230,Woman,9296,1744182,69 +25231,Dancer,10603,29214,32 +25232,Cleaner,2750,1651676,32 +25233,Bob Mapplethorpe,13685,52797,4 +25234,Sgt. Tony Meserve,10142,2228,1 +25235,Rollie,482,6567,8 +25236,Bachelor,15745,55265,11 +25237,Bartender,11185,2247,26 +25238,Ens. Thomas Garth,11422,41218,18 +25239,Dr. Gudgeon,11889,7058,7 +25240,"Marcel Pagnol âgé, narrateur (voice)",12716,70173,15 +25241,Robert the Bruce,197,2464,4 +25242,,282919,27595,8 +25243,Dan,77283,2440,0 +25244,Laroche's Mom,2757,1472602,18 +25245,Evonne,13852,75897,13 +25246,Tom Brandston,15489,54812,0 +25247,Man at newsstand,24254,91453,45 +25248,Grandpa Ivan,25969,862,6 +25249,Abraham Lincoln,415072,134868,16 +25250,Mayor's P.R. Woman,9563,1741412,50 +25251,Miho,46986,189721,50 +25252,Le sacristain,36245,25976,6 +25253,Hester Wallace,10491,204,1 +25254,Clare,2084,21344,4 +25255,Extra (uncredited),2897,1662018,78 +25256,Mrs. Rose Darko,141,1581,8 +25257,Jeannie Craig,28430,83129,0 +25258,Reverend Jonathan Rudd,4993,10158,1 +25259,Rick,20438,60195,9 +25260,Kester,415072,32206,11 +25261,Shirley Trainor,12499,38160,9 +25262,Basketball Kid #2,165,1434990,36 +25263,Boy Doffing Cap at Parade,10568,10655,24 +25264,Mary Lawson,42218,1476391,13 +25265,Whitey Sherrard,287,4050,13 +25266,Mr. Mercer,88818,14324,4 +25267,Dr. Curtis Franklin,1890,6541,3 +25268,Bonasera,238,1195877,19 +25269,Nurse,46986,553431,39 +25270,Deputy Charlie,11361,31006,11 +25271,Slipknot Band Member,11535,92312,98 +25272,Pvt. Boven,37305,41719,13 +25273,Willoughby,16176,24720,10 +25274,J. Edgar Hoover,11302,1396842,9 +25275,John Russell,13550,862,0 +25276,Tom Mullen,3595,2461,0 +25277,Capt. Bollin,493,6772,6 +25278,Janice Guerrero,10862,722,5 +25279,Precinct Captain,11855,9292,5 +25280,Richard 'Ricky' Rietti,17770,50807,2 +25281,,78285,583569,6 +25282,Beautiful Girl Across the Hall,985,14797,4 +25283,,77825,69830,8 +25284,Sol Siler,9591,20752,10 +25285,Indian Chief,5924,15666,2 +25286,Jack,110972,3033,9 +25287,Neighbor (uncredited),34106,144012,63 +25288,Terry,11374,77331,25 +25289,Diane McAllister,9451,58045,6 +25290,Larry,8869,1583060,14 +25291,Dr. Jekyll/Mr. Heyde,3028,29709,0 +25292,Dino,11983,16560,4 +25293,Ron Gilmore,11381,165369,9 +25294,Jenny,2604,26469,3 +25295,Luke Coslow,33668,40001,9 +25296,Guy Woodhouse,805,11147,1 +25297,Street Extra (uncredited),238,11480,56 +25298,Taxi Driver,2666,152463,13 +25299,Sexton,14811,81024,28 +25300,Corso,20307,60121,9 +25301,Tiny,4986,141365,16 +25302,Red Team #68 - Rabbit,11535,1282744,21 +25303,Leo Macías,4307,954,0 +25304,Emily Hodge - age 10,152023,1132202,3 +25305,Mrs. Brody,10992,20,1 +25306,Ricky Nash,10611,8177,7 +25307,Farmacéutico,99,1034627,19 +25308,Blackberry,11837,175910,4 +25309,The Nubian Servant,15849,3247,6 +25310,Raphael (voice),1497,1214184,20 +25311,Premiere Audience Member,9296,180141,21 +25312,McIver #1,22784,2561,5 +25313,Narrator,31586,62,4 +25314,George L. Brady Jr. aka Repent,42787,9596,5 +25315,Joseph 'Joe' Welch,9977,12206,3 +25316,Charlie,2604,5293,13 +25317,Judge,13526,152844,9 +25318,The Monster,3035,2922,3 +25319,Jennifer Cavanaugh,13539,55422,7 +25320,Jack Driscoll,244,3244,2 +25321,Sara,29263,1531887,5 +25322,Carter Horton,9532,43442,2 +25323,Pilot,11950,83975,19 +25324,Ham,2525,25782,14 +25325,Luis,334,40481,25 +25326,Dr. El Sadek,39176,2980,6 +25327,Mrs. Schmidt,34106,9090,19 +25328,Larry,10847,1077729,8 +25329,Nanny Tess Webb,18801,8227,4 +25330,Undetermined Role,31995,1290389,26 +25331,Extra (uncredited),2897,179327,217 +25332,Ben Floss,31005,4483,1 +25333,Indian Chief (voice),10693,61676,7 +25334,Piers Du Pré,46992,42276,6 +25335,La grand-mère,11876,38354,27 +25336,Fernman,25934,1847230,19 +25337,Dr. Binibon,24254,91420,4 +25338,Jack Butler,13105,2232,0 +25339,Joey DePalma,21849,106179,4 +25340,Mme Bertrand,6187,48582,9 +25341,Serge,11458,58543,13 +25342,Anna Crowley Beissart,10466,56881,1 +25343,Student,11004,78597,15 +25344,Andre (as Anthony Hall),29649,104502,8 +25345,Teen Samuel,4476,1077328,20 +25346,Jadzia,38509,5313,1 +25347,Freddy Li,10222,1076565,6 +25348,Dr. Susan Verner,12122,1796,1 +25349,Austin Cloquet,9438,56890,7 +25350,Emily Norton Kane,15,11026,7 +25351,Young Jackie,46992,1394980,8 +25352,Office Employee,2613,1771191,26 +25353,Guibert,166,1977,10 +25354,Pierre,124475,6012,1 +25355,Pvt. Willard,11589,5048,12 +25356,,10643,80131,6 +25357,Ann Marie,38922,106054,9 +25358,Villager of Tullymore,10162,1609677,54 +25359,Woman Customer,10803,101893,11 +25360,Daughter #3,525,122119,37 +25361,Wayne Szalinski,9354,8872,0 +25362,"Mr. Fowler, Chicago Hotel Manager",39435,3641,8 +25363,Symposium Speaker,55420,5873,7 +25364,5th Reporter,1924,127461,38 +25365,Marcher in Parade (uncredited),2897,97999,296 +25366,Child World Customer #2,11873,1051092,12 +25367,,18919,544286,5 +25368,Manual Jordan,21052,879,0 +25369,"Jean, le croupier",26030,40976,6 +25370,Elliott Spencer,108365,67567,3 +25371,Aggie Conrad,12103,10696,11 +25372,Cesar Toban,4133,34841,17 +25373,Phil Cameron,54287,19485,7 +25374,Sheriff Hartwell,3085,30234,3 +25375,Tim Weaver,41164,2977,4 +25376,Jeff Foster,6951,92280,14 +25377,Lt. Marshall,37305,2641,17 +25378,Female Wing Kong Guard,6978,1096095,42 +25379,Officer Morales,4547,59675,10 +25380,Paul,11302,32384,10 +25381,Ramon,8358,11892,3 +25382,Grace,13685,1117323,8 +25383,Greg Hellman,37936,467077,12 +25384,Amy,39938,7639,1 +25385,DEA Agent,9396,17401,6 +25386,Davis the News Editor,28430,116644,4 +25387,Ilsa Lund,289,4111,1 +25388,Tony,287,4045,8 +25389,Earth Girl,15037,10131,15 +25390,Hoak Wayne,69605,4077,8 +25391,Harry,3033,18916,11 +25392,,36047,80289,5 +25393,Vendor (uncredited),289,30163,103 +25394,Maid at Clayton's,3092,1002183,10 +25395,Jack DeVries,12476,15824,11 +25396,Bookmacher,9464,2295,3 +25397,Capt. Samuel Murdock,38775,42574,2 +25398,Marty Maraschino,621,8900,9 +25399,Steven's Mother,24584,1773971,10 +25400,Jinx,13105,4175,7 +25401,Lucy,320011,142736,10 +25402,Sheriff Big Jeff Bess,21849,1098538,13 +25403,Heather Chandler,2640,27565,4 +25404,Air Vice Marshall,660,89208,17 +25405,Amy,110972,8256,2 +25406,Santa Claus,13380,37422,6 +25407,Tom Bartlett,36554,29520,2 +25408,Pirate,6068,1312451,16 +25409,Annabelle Lee,961,14417,1 +25410,Nurse,31682,121046,9 +25411,Nurse Helping Old Lady Into Elevator (uncredited),33680,9090,16 +25412,Izumo,25682,105312,5 +25413,King,16176,39741,2 +25414,Patrolman with Searchlight,15762,55648,19 +25415,Sam Blake,19140,4302,3 +25416,Staedert's Captain,18,1857418,42 +25417,Robin,1637,1872784,17 +25418,Taisto Olavi Kasurinen,2,54768,0 +25419,Pepper Lowenstein,19150,53647,6 +25420,Tex McCormick,27332,2876,0 +25421,Johnny,31342,16857,4 +25422,Ackerman,10671,3640,17 +25423,Hospital Receptionist,2291,11484,12 +25424,Suzanne,53879,170599,9 +25425,Robber #1,46786,10367,6 +25426,Young Victor,3036,1231914,19 +25427,Sharon Derns,17168,16307,9 +25428,Player's Wife,9563,1741432,62 +25429,Kylie's Dance Partner,10409,543657,13 +25430,Jack Wade,714,10671,6 +25431,Professor,16096,2395,7 +25432,Anatomy Class Supervisor,9540,1187218,12 +25433,Mr. Feldman,522,4171,21 +25434,Herself,85472,218810,4 +25435,Mitch Quigley,8470,52647,8 +25436,Dr. Jacob Hoffman,41038,1054351,5 +25437,Cardinal Richelieu,11370,9029,2 +25438,Ivy,9264,69597,1 +25439,Wolfram Braun,287305,5266,5 +25440,Stan,13105,95652,9 +25441,Himself,8672,6818,0 +25442,Roy Martin / Trevor Thomas,12606,21561,10 +25443,Stew Deedle,40688,108438,9 +25444,Norman 'Sonny' Steele,11145,4135,0 +25445,Danny,47260,15371,4 +25446,Frank,11524,3085,0 +25447,Barnard,8467,181486,11 +25448,Wallace Evans,9272,22111,4 +25449,Noah,2525,6593,8 +25450,Luca Brasi,238,106811,17 +25451,Charming Trooper,525,938558,49 +25452,Nikko,630,1318970,10 +25453,Dominick DiNapoli,38922,6844,0 +25454,Eleanor Potter,29475,20158,5 +25455,Lyle Robideaux,10663,58477,8 +25456,Mr. McGuire,37247,94402,6 +25457,Kimberly Hart / Pink Ranger,9070,56895,0 +25458,Professor's Wife,13889,34374,1 +25459,Will Travis,24126,14328,4 +25460,Le colporteur,11876,24381,5 +25461,Billy Bones,10874,9188,3 +25462,Preservation Partier (uncredited),8467,1853269,78 +25463,Denise Waverly / Edna Buxton,58985,7796,0 +25464,Sandrine,108,1139,2 +25465,Mrs. Lisbon,1443,3391,1 +25466,George,10395,1986,12 +25467,Assorted Police,814,1218998,42 +25468,"Chairman, Maxine Gray Cosmetics",32074,10657,14 +25469,Eugene,20096,7268,6 +25470,Garabato,75892,35351,3 +25471,Yentl,10269,10400,0 +25472,Student,9475,1800182,38 +25473,Amy Simms,16560,80622,2 +25474,Winch Operator,14372,1832336,12 +25475,Hilario,966,14532,8 +25476,Sim Rosedale,25520,57829,4 +25477,Eugene,267188,126837,1 +25478,Max Perkins,115332,56890,9 +25479,Counselor Paul Hyde,2640,163578,18 +25480,Arthur Rose,1715,18792,2 +25481,Billy Lo,13333,62414,7 +25482,Joachim,102,1018,1 +25483,Jakofalvy,17771,5266,4 +25484,Girl in Bar #2,93350,116691,15 +25485,Zînê,52556,96976,3 +25486,Police Guard (uncredited),539,151550,26 +25487,Emma Stone,11889,40656,10 +25488,Girl in Bikini (uncredited),205054,105072,14 +25489,Hallie Parker / Annie James,9820,49265,0 +25490,Seattle Maitre D',858,1792779,22 +25491,Blues Singer,37917,178776,14 +25492,Cindy Rooney,9563,34485,13 +25493,Ben Wilson,2046,21164,10 +25494,Jim Sanders,28370,100591,0 +25495,Claire Hewitt,77915,2639,2 +25496,Rev. Stephen Kumalo,34615,15152,0 +25497,Sheriff Buck Olmstead,10871,8655,2 +25498,Mr. Patterson,9591,1578,12 +25499,Head Priest,9946,1646,8 +25500,Felix,11129,7062,8 +25501,Carol,12454,72307,11 +25502,Policeman,31044,138570,45 +25503,Dr. Waldman,3035,1550,4 +25504,Alison's Friend,9403,36190,43 +25505,Toshio Arita,34326,82963,18 +25506,Stavros,9405,2295,2 +25507,Percy Gryce,25520,119415,10 +25508,Bank Clerk (uncredited),34106,1420879,112 +25509,Club Dancer,31044,1729785,34 +25510,Benny King,92381,79539,1 +25511,Linda Novotny,9451,996758,7 +25512,Nichte des Portiers,5991,35420,1 +25513,Roman Guard Knocked Down,32628,120701,7 +25514,Thug,3780,118998,52 +25515,NTO directeur,58886,76286,9 +25516,Thug Leader - Marty,320011,51041,15 +25517,Bishop,47493,20277,8 +25518,Ranjan's Father (voice),14873,655,7 +25519,Beth Bodell,10013,9994,3 +25520,Screaming Man (uncredited),167,1479,26 +25521,,10400,1393354,60 +25522,David,16351,290,2 +25523,Second Girl,51802,95301,19 +25524,Freya Olsen,19958,85350,1 +25525,King Koopa,9607,2778,2 +25526,Dandy - Sir Humphrey's Gang,31995,27934,18 +25527,Preservation Partier,8467,1853219,59 +25528,The Riptides' Engineer,58985,1059867,25 +25529,King Westley,3078,30158,4 +25530,Rina,13346,1920,3 +25531,Mylee,10222,190185,5 +25532,Arlene McKinney,10647,9994,1 +25533,Nick Merritt,10351,64933,3 +25534,The Narrator/Sir Ector (voice),9078,21877,0 +25535,Marvin Dorfler,9013,778,3 +25536,Cecilia Abachidze,105763,48664,2 +25537,Patron at Nightclub (uncredited),1578,61241,42 +25538,Susan Evans,9272,19957,2 +25539,Randy Sue Carter,26889,1910,18 +25540,Eddie Bianco,215373,1010,3 +25541,Ray Wilkins,4248,35690,3 +25542,Alex Ross,45671,934,1 +25543,Mrs. Darcy,13965,76187,8 +25544,Bob 'Bobby' Wiley,10276,1532,0 +25545,Crystal,320011,64915,9 +25546,Nicodemus (voice),11704,937,0 +25547,Greta,1624,11718,6 +25548,Tara,6978,239303,28 +25549,Professor Brody,10992,4785,0 +25550,1a Donna linciaggio,10867,553195,29 +25551,Governor Yu,146,1625,6 +25552,Georgie,30547,3339,8 +25553,Dave Mannering,28295,9865,2 +25554,"James ""Jimmy"" Dove",178,1229,0 +25555,Tully Alford,2907,6486,5 +25556,Dr. Felix Conrad,11591,2716,9 +25557,Villager of Tullymore,10162,1609660,37 +25558,Poole,12528,9979,7 +25559,David,28732,15234,1 +25560,FBI SWAT Team #1,3595,122260,34 +25561,Rita,178,2275,7 +25562,Skank,9495,37207,8 +25563,Frank,11017,77075,5 +25564,Ernest,18111,82687,8 +25565,Irene Walker,2075,3391,1 +25566,Jeanne,17350,59807,3 +25567,Tom Sanford,85160,1155467,5 +25568,Mr. Smiley's Counter Girl (Janine),14,76742,20 +25569,Psychiatric Patient,2898,1678187,11 +25570,Emmett Perkins,28577,2649,5 +25571,Shorofsky,3537,32390,6 +25572,Sarah,19797,67838,7 +25573,Fat Short Order Cook,11397,1213137,66 +25574,Terrorist Without Shirt,19157,1212003,9 +25575,Extra (uncredited),32049,80280,56 +25576,Flamenco Dancer,2897,1093250,27 +25577,Superchief Driver,1924,1681455,85 +25578,Detective Casals,949,15853,14 +25579,Eve,9778,28640,16 +25580,"Dexter Stanley (segment ""The Crate"")",16281,6839,2 +25581,Kurt Kelly,2640,27567,7 +25582,,44081,1371116,4 +25583,Mick Anderson,43316,15978,7 +25584,Tony's Son,70282,1897170,3 +25585,Drew Tate,59930,18291,0 +25586,Mrs. Junko,28165,1073040,7 +25587,Luis,1793,19135,8 +25588,Lester Bacon,85160,935842,1 +25589,Judith,52366,146213,18 +25590,Mortimer Duke / Homeless Man #2,9602,18156,12 +25591,Jean,9427,80366,7 +25592,Villager of Tullymore,10162,152491,34 +25593,Balto (voice),21032,4724,0 +25594,Lemonade girl,12481,57723,7 +25595,Platoon - Vietnam,2604,13021,39 +25596,Butler,117,1886584,34 +25597,John,16176,93325,4 +25598,John Henderson,27265,13,0 +25599,Commuter at Train Station (uncredited),289,1062527,30 +25600,Steve Shanahan,9889,60023,3 +25601,Nancy Halman,27150,156831,7 +25602,Miss McClatchey,403,5701,5 +25603,Old Man Beckersted,18282,21282,9 +25604,Waiter (uncredited),289,119549,92 +25605,"Doc Bender, Trailhand",39435,41755,3 +25606,Policewoman,2898,52792,12 +25607,Linda,2046,21165,12 +25608,Cai Chunzhi,159185,998494,0 +25609,Seriozha,50512,1352508,17 +25610,Code Operator,10724,178576,29 +25611,Rachel Simmons,31618,1603933,11 +25612,Data,165,68851,11 +25613,Capt. Fred Roarke,178,9277,6 +25614,Bennett,29076,105002,12 +25615,McIntosh (uncredited),12311,132701,61 +25616,Waitress #2,8869,1583087,18 +25617,Eva - Sister-in-law,22292,130063,9 +25618,Dean Preston,10534,83051,8 +25619,Anne Ashmond,18646,176852,3 +25620,Mrs. Baldwin,3085,30242,4 +25621,Matt Monroe,29698,135041,10 +25622,Jonah,19958,27752,8 +25623,Mr. Martin,11812,548090,11 +25624,Lisa Bolkonskaya,11706,94314,13 +25625,Sénateur,524,166789,9 +25626,Cobb,14372,1210,5 +25627,Photographer,46986,1535174,19 +25628,Alice,93350,28003,12 +25629,Roy,14819,77330,2 +25630,Gen. Hans von Salmuth (uncredited),9289,30934,61 +25631,David,476,7268,5 +25632,Bilal,16094,78029,1 +25633,Casting Director,14242,1502569,7 +25634,Mickey Pat,21132,4728,4 +25635,Don Jose,32093,1021756,17 +25636,Gene (uncredited),3085,145828,33 +25637,Child Dancer (uncredited),34106,1271351,115 +25638,Harry,42517,5695,6 +25639,George Fawkes,35292,3663,0 +25640,Davis,9945,1324478,10 +25641,Irving Klinger / Edgar Klinger,18646,4966,4 +25642,Banjo Paterson,24266,91488,5 +25643,Johnny Barlotta,220976,35521,9 +25644,Raymond Wirtz,262,156741,7 +25645,Max Green,30352,56266,3 +25646,Minor Role (uncredited),2897,1061730,274 +25647,Betty Rizzo,621,8893,2 +25648,Schwester Mary Stigmata ('Die Pinguin-Tante'),525,7210,17 +25649,Receptioniste,2110,1677034,28 +25650,Young Lord,10549,90546,27 +25651,Der Anrufer,1817,2628,1 +25652,Mary Jarvis,34615,111179,9 +25653,Commander Ilvar,28893,55155,3 +25654,Veronica's Dad,2640,81905,16 +25655,Biles,14794,97165,19 +25656,The Dog,638,9303,23 +25657,Child Dancer (uncredited),34106,1183712,103 +25658,Mrs. Johnstone,2887,12967,19 +25659,French Maid (uncredited),15,1433378,93 +25660,Flight Attendant,9532,21069,20 +25661,Billy Cranston / Blue Ranger,9070,56896,2 +25662,Dienerin,31805,41240,5 +25663,Ralph Waters,13962,76132,4 +25664,UFO Mania Announcer (voice),10208,157602,17 +25665,Newick,23114,2933,16 +25666,Joe Morrison,42218,42162,2 +25667,Now,276635,1403235,14 +25668,Felix,10326,84598,8 +25669,Frankie Stone,32058,37042,1 +25670,Anna Maria 'Dallas' D'Allesandro,11385,29428,2 +25671,Mary Quite Contrary,25898,131441,7 +25672,Carolyn at 17,249,169210,6 +25673,Bo-Kane,39310,18795,8 +25674,Curtis Zampf,4012,1954,3 +25675,Policeman,20992,119216,9 +25676,Ghulam,983,14759,8 +25677,Lauro,10801,70887,15 +25678,Border Guard,35118,6906,8 +25679,Jim Marshall,13333,70985,5 +25680,Skelly's Mother,161795,10653,10 +25681,Robert,2033,20902,5 +25682,Flint,172868,1369,0 +25683,Patti Rasnick,2115,21730,2 +25684,Álvaro Mangino,7305,1872742,25 +25685,Katsuyori Takeda,11953,71027,5 +25686,Stephen Banning,29239,81168,4 +25687,Grossberger,21629,3013,8 +25688,Jenny (age 3),47329,82630,10 +25689,Nurse at Laundrette (uncredited),28430,1135040,22 +25690,Woman (uncredited),34106,1112944,85 +25691,Captain Robert Everton,9423,55636,2 +25692,Oanh,10142,939767,6 +25693,Alicia,29263,46853,0 +25694,Escamillo,21193,87269,1 +25695,Security Guard,522,1218174,23 +25696,Richard Torena,949,31004,12 +25697,Drill Team Member #1,50123,1379979,14 +25698,Sheriff Brady,38765,3244,6 +25699,Tommy Lee,32049,82442,1 +25700,Jake (voice),9023,214516,9 +25701,Judy Trenor,25520,108579,9 +25702,Liz,1574,17640,11 +25703,Preston Tucker,28176,1229,0 +25704,Greg Randazzo,3682,33654,2 +25705,Extra (uncredited),2897,1549831,223 +25706,Prostitute's Mother,10003,70883,23 +25707,FBI Agent O'Malley,19760,5050,2 +25708,Swimming Double,24831,8544,14 +25709,Stranger,2666,75712,18 +25710,Pretty Girl,601,23764,5 +25711,Laura Walker,10543,15851,5 +25712,State Trooper,25430,196258,58 +25713,Marcus,16550,57387,4 +25714,Maid,1374,16649,14 +25715,Jack Prescott (uncredited),31947,1229,0 +25716,Marcus,22317,18262,5 +25717,Deputy Sheriff,24936,158126,10 +25718,Rodrigo,8388,54814,4 +25719,Teen,53150,170185,17 +25720,Adjutant,10568,1075214,11 +25721,Auctioneer's Assistant,249,108635,12 +25722,Sam Pierce,32275,30527,7 +25723,Nobufusa Baba,11953,120348,11 +25724,Blake,9877,90341,15 +25725,Rita,11374,9999,23 +25726,Man - Pecker,817,163580,16 +25727,Samuel 'Rocky' Douglas Jr.,16314,80280,1 +25728,Newspaperman (uncredited),15,30012,87 +25729,Agent FBI Chuck Stupak,9438,537,4 +25730,le père de Raymond,52366,56837,11 +25731,Doreen,21801,9273,3 +25732,Areola,11397,52365,6 +25733,Mrs. Pressman,4806,13451,13 +25734,Shinkai Uichi,34326,213481,11 +25735,Andy Barclay,10585,65683,2 +25736,Himself,1497,17338,17 +25737,Fiance,11159,1323612,39 +25738,Frau Pletzer,4762,39307,12 +25739,Adam Trask,220,2669,2 +25740,Gertie,10950,1984,22 +25741,Tina,79593,1772253,26 +25742,Jean Roberts,21142,129485,1 +25743,Karen Wagner,42149,8492,5 +25744,Josh,9778,59171,13 +25745,Yellow Model,34838,1145352,3 +25746,Semi Driver,15310,160133,19 +25747,Sandrino,145925,1123325,11 +25748,Jane,9296,1365681,38 +25749,Paul Porterfield,41645,19996,1 +25750,Rufus 'RJ' Firefly Jr.,2662,27741,11 +25751,Moor Buying Diamonds (uncredited),289,121330,59 +25752,Okatsu,3780,110311,28 +25753,Leechman,19142,1418031,11 +25754,Fanny,104103,48577,11 +25755,The Creature,3036,380,0 +25756,The Candyman / Daniel Robitaille,9529,19384,1 +25757,Additional Voice (voice),9016,42000,17 +25758,Jemima,17015,1840474,26 +25759,Marie D'Ancanto / Rogue,36658,10690,11 +25760,Mamet,320011,540,4 +25761,Panel Member,11374,17087,46 +25762,Mrs. Gertrude 'Trudy' Lintz,15170,14343,0 +25763,Little Asian Girl,27526,98096,24 +25764,José's father,16026,1316029,11 +25765,Emiko Yamane,1678,33768,1 +25766,Barry William Cox,3597,11864,2 +25767,Beverly age 11,11091,21027,15 +25768,Kay (voice),9078,7139,3 +25769,Mondoshawan #3,18,19375,107 +25770,Molly Dunlap,52772,1217195,7 +25771,"Maxwell ""Max"" Kane",9821,20220,1 +25772,Gladys,9613,24241,10 +25773,Sandy Ricks,36355,109,0 +25774,Frank Sachs,2898,9777,3 +25775,Soldier (uncredited),2604,107323,92 +25776,Berns-direktören,29224,1092641,15 +25777,Bloody Bill Anderson,10747,4304,17 +25778,Dominic Prizzi,2075,21283,5 +25779,Woman with Baby In Square,409,230275,28 +25780,Drama Teacher,21142,35516,13 +25781,Union General,961,10530,7 +25782,Marianne Horn,29318,84285,2 +25783,Nan Wheaton,27681,98700,5 +25784,The Manager,60608,74113,10 +25785,Phillip Elliott,29786,1733,0 +25786,Specialist Doctor,10493,117365,6 +25787,Lt. Roget/Singing man,975,14565,4 +25788,State Trooper,11879,1644474,12 +25789,Brainard (bit),20424,7074,27 +25790,Police Guard at Courtroom Entrance (uncredited),34106,125842,29 +25791,Perpetua,634,9143,14 +25792,Megan Denning (Meg),46989,51536,1 +25793,Tarzan,35118,107068,9 +25794,Arthur Jelinek,11654,10657,11 +25795,U.N. Jefferson,14052,10939,15 +25796,Harry Standish,10671,19411,10 +25797,Henry Madison,38715,1357127,8 +25798,Brem,12476,94304,8 +25799,O. W. Shaddock,29786,64120,7 +25800,Passerby,11450,57551,25 +25801,Lady Bowler,6552,13924,19 +25802,Judge Marty Davis,14181,12122,7 +25803,Mary of Bethany,2428,10558,13 +25804,Alexei,2084,1925,2 +25805,Emily,46986,7489,8 +25806,Reception Guest (uncredited),3063,1269827,19 +25807,Raider (uncredited),961,141139,12 +25808,(uncredited),5998,1468974,29 +25809,Hoops McCann,18282,3036,0 +25810,Indrid Cold,2637,27553,7 +25811,Puckett,25430,229957,16 +25812,Aparna,896,13753,1 +25813,Cop in Alley,11001,1672644,20 +25814,Citizenship Student,4478,172280,31 +25815,Neighbor,2604,1338670,34 +25816,Dr. Nicholas Moryani,30308,33747,5 +25817,Mr. Gibbons,9358,16559,29 +25818,Otake,3780,1175880,30 +25819,Bill Gaye,34774,10595,7 +25820,Jonny,18002,9012,0 +25821,Lady Dairympie,17015,217100,21 +25822,Bartender,25468,1757529,4 +25823,Nun,84735,101612,14 +25824,Prof. Robert Lingstrom,13550,55155,12 +25825,Lestat de Lioncourt,11979,56778,0 +25826,His Friend,31995,552410,9 +25827,Police Officer,11103,42290,4 +25828,Nino,8342,54621,1 +25829,Computer Girl,2105,1223965,39 +25830,Wing Kong Security Guard,6978,1677325,40 +25831,Aggie Dawlins,245268,80237,1 +25832,Scotty Willets,18551,948411,7 +25833,Moomaw,11450,941524,15 +25834,Núria,1902,16442,4 +25835,Ms. Seaver,11374,1214164,17 +25836,Axe Man,9272,91906,13 +25837,Anesthetist,29787,15074,12 +25838,Hospital Dancer,9716,1661613,71 +25839,Edmund Kay,3033,29795,7 +25840,Woman at Bar,46986,189160,10 +25841,Stella Hawthorne,24634,1934,5 +25842,Bill - Plainclothes Policeman (uncredited),34106,1240252,28 +25843,Floyd,28120,10162,7 +25844,MRI Technician,10796,141489,10 +25845,Jenny,10708,22082,6 +25846,Felton's Minx,8840,544311,12 +25847,Holly,2637,27689,18 +25848,Agent Paul Rhodes,3595,33242,11 +25849,Horn's Capturer,5917,16163,56 +25850,Reporter,2984,1231674,40 +25851,German Guard on Traintreck (uncredited),9289,211314,28 +25852,Fireman (uncredited),954,15318,17 +25853,Jacob Singer,2291,504,0 +25854,Sammy,11003,20818,3 +25855,Commander Donatra,201,2133,10 +25856,Kate,32043,10679,2 +25857,Eddie,18935,142104,4 +25858,Spencer,12102,120293,9 +25859,critico cinematografico,25403,93725,16 +25860,Det. Atwater,92769,9274,1 +25861,Tom,2613,27448,8 +25862,Skinhead,165,11673,13 +25863,Bruce Embling,19958,85352,5 +25864,Capt. Harding,9289,44998,22 +25865,Man (uncredited),33364,103385,13 +25866,Sadie,2750,1651685,41 +25867,Swimmer (uncredited),578,1360008,23 +25868,Nosh Van Girl,2750,1651688,42 +25869,Skinhead,15143,13550,6 +25870,Voltimand,10549,49813,18 +25871,Doctor,9889,42199,14 +25872,Gerstenkorn,33680,13359,12 +25873,Alvin Hooks,10219,8986,6 +25874,Jury Foreman,10400,1240845,79 +25875,Fred,10805,1422800,12 +25876,Josephina,31665,70984,2 +25877,Mother Larson,21626,53715,8 +25878,Thomas - Sir Humphrey's Gang,31995,90643,19 +25879,Darlene Patterson,9591,166935,20 +25880,Augustus Margary,2757,17005,11 +25881,Charlie,11593,213,30 +25882,Ruby Rhod Assistant,18,1735717,60 +25883,Sergeant Charles Bishop,83562,26657,6 +25884,Mrs. Patterson,37936,1219190,4 +25885,Crooked sailor,34774,58699,14 +25886,Cafe Singer,26661,215386,8 +25887,Townsman (uncredited),11697,1244482,35 +25888,Banks,1369,16581,6 +25889,Cafe Patron,76,3722,12 +25890,Bird,21024,63214,7 +25891,Lois Lane,1924,20011,2 +25892,Restaurant Patron (uncredited),2898,1678185,54 +25893,Walter,26889,8854,8 +25894,Mark Ralfe,33364,95224,4 +25895,College Student,1058,1725924,17 +25896,Maryelle,78568,6019,7 +25897,Would be Writer,11415,192350,16 +25898,Man (uncredited),34106,1422389,93 +25899,Veronika Voss,2262,23340,0 +25900,Prostitute,949,218094,55 +25901,Rick Diesel,25005,67523,2 +25902,MacGregor,197,2480,21 +25903,Jeff,11449,41278,9 +25904,Derek,54405,1348858,7 +25905,Debra Lassiter,9776,16217,4 +25906,Paris (voice),45772,39189,11 +25907,John 'Johnny' Zinga,159727,98568,0 +25908,Camille Reedbottom,15263,39552,16 +25909,"Carl Lazlo, Esq.",13005,1039,1 +25910,Anne,795,11902,5 +25911,Desk Sergeant,1924,170970,63 +25912,Céléstine,36245,14812,0 +25913,Ludovico Mazzullo,23637,4819,2 +25914,King Neptune (uncredited),165,1435061,52 +25915,,124633,66027,4 +25916,Anne,78568,19163,1 +25917,Marina Lemke,20096,3416,0 +25918,Jessie Rockatansky,9659,58401,1 +25919,Waiter,27265,1341053,7 +25920,Maimiti,12311,33232,11 +25921,Chairman,13852,75900,16 +25922,Ali,31498,95054,9 +25923,FBI Agent Gray,11001,10137,16 +25924,Frank Nitti,117,1275,8 +25925,Farmer Virginia,4147,36093,30 +25926,Child at Cafe 24,2898,1678178,42 +25927,Commissioner Hawkes,55731,23,12 +25928,Serepta,12584,41251,9 +25929,Laura-Louise McBirney,805,12025,7 +25930,Frankie,38922,72680,2 +25931,Milt (as Bernard Punsley),26378,95298,11 +25932,Derek,2280,166788,13 +25933,Prom Queen,4338,1234,13 +25934,Inn Keeper,28345,89727,11 +25935,Sonny,30547,1212639,15 +25936,Wilma Francis,10354,219174,27 +25937,Mr. Talley,2897,8730,16 +25938,Opera Spectator (uncredited),15,1271643,133 +25939,Dusty,9428,5950,9 +25940,Uncle Charlie,50225,17402,4 +25941,Dory (voice),12,14,1 +25942,Liz,12476,213932,17 +25943,Professor Simpson,35139,131485,11 +25944,Joe Raftis,52744,17772,9 +25945,Officer In Square,409,22184,26 +25946,Wendy Derleth,10351,4734,6 +25947,Carl Rosen,75641,21520,4 +25948,Mayor Peter Belgoody,15239,555069,6 +25949,Charlotte,16980,3967,1 +25950,Clara,124963,35341,1 +25951,Slim,11950,14731,21 +25952,Lt. (j.g.) Dorsey Grayson,23518,95681,15 +25953,Chloe,25994,1645,3 +25954,Gerald Weems,2046,2169,11 +25955,Griff,9403,122245,13 +25956,Kelly O'Shea,3682,33657,10 +25957,Jane Anderson,66634,57424,2 +25958,Cole Wilson,922,2714,3 +25959,Maj. Kincaid,39833,30303,7 +25960,Ethan Edwards,3114,4165,0 +25961,Mavis Craig,9977,61344,11 +25962,Mrs. Clayton's Chauffeur,3092,108642,8 +25963,Sanjay,11535,5471,3 +25964,Rosemary Shanahan,9889,12052,0 +25965,Belle,46786,8963,3 +25966,Brenda Tate,59930,80622,2 +25967,,77825,435731,5 +25968,Lt. Reilly,10142,10182,5 +25969,Old Man,11688,5247,15 +25970,The Countess,10849,937681,10 +25971,Danny,46286,148100,5 +25972,El Guapo,8388,22767,5 +25973,Zerelda 'Zee' Mimms,13496,17303,2 +25974,Roger (singing voice),12230,1224636,21 +25975,Disco Girl,27346,101612,6 +25976,Jack,965,14518,5 +25977,Uncle Fred,2613,170975,10 +25978,Shelby Eatenton Latcherie,10860,1204,3 +25979,Captain Oskar Steiger,11202,35826,16 +25980,Dr. Norton,29492,103964,4 +25981,Grover,28387,52419,0 +25982,Patrick Thomas,48287,44990,12 +25983,Rory,41469,32224,4 +25984,"Mr. Hector, Hotel Concierge",772,13472,10 +25985,Waitress,93350,119227,5 +25986,Guard,3036,1252814,17 +25987,Girl at Science Fair,14370,158739,10 +25988,Lord Loam,53761,148787,1 +25989,Cafe Owner,14587,1840069,25 +25990,Katie,6951,53011,7 +25991,Madeline,38965,159753,9 +25992,Robber,2135,10960,7 +25993,Hammy,29698,135045,13 +25994,Player in Casino Bar,11873,58535,17 +25995,Bum,8844,25024,16 +25996,Julius Beaufort,10436,14344,13 +25997,Apocalypse Inc. Chairman,28165,98330,3 +25998,Fox,21430,4690,0 +25999,Annie's Psychiatrist,703,930719,35 +26000,Eliot Ness,117,1269,0 +26001,Wing Kong Hatchet Man,6978,61704,30 +26002,Dental Nurse,10776,6199,8 +26003,Minnesota Ryan,857,51797,22 +26004,Scott Carey,31682,109406,0 +26005,Harris,13005,9807,3 +26006,Mr. Allan,1624,14312,9 +26007,Young Rosy (voice),21032,67386,5 +26008,Richard Parker,8491,55265,1 +26009,Daisy Fisher / Dora Figg,43368,4356,2 +26010,Reporter (uncredited),34106,1273898,46 +26011,Air Chief Marshal Sir Arthur Tedder,11202,200911,19 +26012,Kevin,22023,107371,20 +26013,Mr. Gordon,838,3044,22 +26014,News Reporter,2604,1152,30 +26015,Dancer with John Artis,10400,1293297,78 +26016,Lord Stanhope,12632,73172,2 +26017,,11216,1479493,16 +26018,Mick,41166,982,3 +26019,Peón Selling Cocks,32093,95967,29 +26020,Statehood Audience Member (uncredited),11697,1216356,54 +26021,Villager,3035,13360,21 +26022,Sir Henry Willoughby,17015,1073272,24 +26023,Reno Timekeeper,30709,67369,17 +26024,Alan Mann,10354,4512,3 +26025,Yates,10796,52476,5 +26026,Doc Wallace,33660,522,4 +26027,Gay Langland,11536,11492,0 +26028,Jenny,88818,936535,3 +26029,Richie Norris,75,526,11 +26030,Celimene,91076,4038,2 +26031,Billy Hill,11361,1762957,5 +26032,Reverend T.J. Cardew,129628,8978,7 +26033,Peter Palitzsch,35263,1557960,10 +26034,,18919,1320284,8 +26035,Earl Williams,3085,4119,7 +26036,Sam,30994,30097,0 +26037,Aphrodite,25872,1800932,7 +26038,Man in Saloon,9028,240908,15 +26039,Antique shop owner,2887,4971,10 +26040,John Clifton,13852,75899,15 +26041,Guy Patterson,9591,16857,0 +26042,Julie Peters,24739,51544,1 +26043,Ernie,6499,450609,12 +26044,Cowboy,24254,91446,36 +26045,James Gillespie,29698,110950,0 +26046,Terry Olsen,35694,2692,5 +26047,Inès,26252,94950,17 +26048,Col. Fairchild,21027,12950,12 +26049,Crooks,9609,3977,8 +26050,Rip,32059,155576,11 +26051,Chickie's Pal,1375,16668,14 +26052,La Fleck model,24254,91435,21 +26053,The Who Road Manager,786,1656012,32 +26054,Race Track Announcer,30547,16527,22 +26055,Yanni Voulgaris,37820,1532966,5 +26056,Millandra,18683,1215189,9 +26057,Tenente Cadel,10867,553180,11 +26058,Tiny,43368,35322,5 +26059,Irene Sperry,32825,3382,1 +26060,Mace Jones,4993,12298,13 +26061,'Michael Jackson' Video Waiter,165,1434975,19 +26062,Pennebaker,11450,91030,14 +26063,Gen. Leslie R. Groves,27461,3636,0 +26064,Officer Keeney,4547,36189,8 +26065,Doctor Smordin,638,9294,13 +26066,Prison Guard,10400,1393349,63 +26067,Ben Meadows,578,8555,5 +26068,David Mander,61813,37041,2 +26069,Chris Thorne,11933,54812,0 +26070,Justine Hanna,949,6200,5 +26071,Fairy (voice),13225,1107517,14 +26072,David Evans,9877,106711,13 +26073,Tampopo,11830,70627,1 +26074,Little Girl #3 in Ballet Class,11472,84617,18 +26075,Foot Soldier,1497,1456532,52 +26076,Jute,21801,1199752,14 +26077,Frankie,10003,146399,7 +26078,Lyosha,48787,1281840,4 +26079,Yeti (face),38006,89898,9 +26080,Dr. Rifkin,12220,51662,15 +26081,Carmen Sternwood,910,13975,3 +26082,Jimmy Pig,9425,19654,9 +26083,Tiny Firefly,2662,8295,10 +26084,Dorothy Van Doren,11450,10776,8 +26085,Suong,34899,20201,8 +26086,Une villageoise,11876,1316260,15 +26087,Elsa,28345,120759,10 +26088,Tawny,8491,55269,6 +26089,Lucie,27145,97080,2 +26090,Corky Romano,17708,58317,0 +26091,Sylvia,6522,55274,10 +26092,Rub Squeers,11593,3201,5 +26093,General,29263,52129,12 +26094,Jack McDermott,14550,1039,2 +26095,Burga,890,14638,11 +26096,Joey Dinardo,2144,67524,13 +26097,Al,638,9285,2 +26098,Cherita Chen,141,20088,15 +26099,Ward Nelson,31586,27772,15 +26100,Big Guy #2,1813,155540,43 +26101,Drone 1/Dewey,811,12126,6 +26102,Mike Flinn,32074,1473,4 +26103,Tommy Grayton,9032,20819,8 +26104,Partygoer,2613,1800125,21 +26105,Ursula Stanhope,10603,41087,1 +26106,Sp4 Robert Ouellette,10590,65716,14 +26107,"Nick, Age 7",32872,1720969,12 +26108,Martin,14372,41229,8 +26109,Waiter,6038,155902,26 +26110,Cheerleader on Football Field,11397,1773793,61 +26111,Dolly Gnome (voice),45772,67274,8 +26112,Simmons,13965,44842,13 +26113,(voice),12593,73030,1 +26114,Dr. Melissa Reeves,664,9995,3 +26115,Mark,13531,58019,6 +26116,Raquel,638,9314,38 +26117,Rosa,4307,25258,3 +26118,Estelle Little,10137,59956,9 +26119,Hannah Green,11004,3897,3 +26120,Pang Zhengda,47694,554855,10 +26121,Old Man's Band,65134,1453029,8 +26122,Billy Kramer,13005,1758307,13 +26123,Arab Vendor (uncredited),289,89691,75 +26124,Jan,621,8899,8 +26125,Manuel,22023,162235,8 +26126,Mr. Eddy / Dick Lauren,638,1162,32 +26127,Kugutsushi,11953,1183818,25 +26128,Lori,5955,32,3 +26129,Botanica Woman,1813,55272,41 +26130,Olga Gorki,32595,25717,8 +26131,Chief Big Eagle,21866,37723,6 +26132,Ray,31342,71824,9 +26133,Mr. Schulman,92769,58169,8 +26134,Clint Reno,39833,21457,2 +26135,Inmate,29492,103969,12 +26136,Lynda Dummar,38772,2453,3 +26137,Jocelyn Jordan,982,14733,6 +26138,Camera Assistant,522,7142,18 +26139,Malena,99,3654,14 +26140,Jo,39938,6598,0 +26141,Claudius,141489,940155,2 +26142,Ike Roscoe,26798,19439,4 +26143,Peter Mitchell,11630,15112,0 +26144,Hannah Lang,1073,955762,13 +26145,Guido,11536,3265,4 +26146,Captain J.S. McWatt,10364,14987,16 +26147,Todd -- Age 11,9425,986808,12 +26148,Old Man,10539,4935,3 +26149,Caroline Chasseur,10872,351,1 +26150,Townsman at Carnival (uncredited),220,930167,20 +26151,D'Antoni,10796,129124,6 +26152,Sky Masterson,4825,3084,0 +26153,Rosencrantz,141489,75212,13 +26154,Mrs. Marcus,11576,109897,8 +26155,Frank Waturi,2565,6486,3 +26156,Danny Reynolds,77915,274912,5 +26157,Police Officer 3,16235,80156,22 +26158,Margaret (as Thelma Bernstein),33250,1437229,6 +26159,Danny Archuleta,169,2049,3 +26160,Mariano,43775,64846,5 +26161,Wendy Woods,12506,1249,2 +26162,Waiter,31586,83056,38 +26163,Hans Kooiman,55731,18324,6 +26164,Père de Raoul,166,1975,15 +26165,Wilfred Keeley,11975,6355,9 +26166,,281085,1339926,2 +26167,Janis Goodman,11983,14699,3 +26168,Hunter,229,1307855,33 +26169,Pete,28736,101786,10 +26170,Princess Achen,18,1563988,73 +26171,Reform Club Member (uncredited),2897,1151549,290 +26172,Lucky (voice),14873,110001,6 +26173,Baytch,40555,124087,6 +26174,Overseer (uncredited),289,1331753,17 +26175,Hippy Singer,24254,91430,16 +26176,Speaker of the House,25430,171111,42 +26177,Hagen,5608,44348,4 +26178,Lana Pico,32059,171388,14 +26179,Farah,606,10649,4 +26180,George Kellogg,10467,56159,4 +26181,Frenchman (uncredited),289,1015446,88 +26182,"Fee Herod ""The Kid“",12106,6193,3 +26183,Ancient Jew,4012,1192387,25 +26184,Newsman (uncredited),15,1420879,123 +26185,Yacht Seaman,34774,14324,22 +26186,Grannie Hawkins,10747,1424766,20 +26187,Josh's Dad,9778,36816,9 +26188,Tulio,47112,658,3 +26189,British Padre,9289,90624,33 +26190,Second Bride,11159,1055559,20 +26191,Marty,33660,57127,0 +26192,English Doctor,12104,201569,9 +26193,Buzz Dawson,13555,156653,6 +26194,Beautiful Woman,19760,191140,5 +26195,Miki Kelso,2102,21563,4 +26196,Gina,20096,6199,7 +26197,Lt. Col. Nguyen Huu An,10590,35053,20 +26198,Matt,36047,33286,2 +26199,Mechanic,43832,1468089,31 +26200,Sarah Norman,1890,19797,1 +26201,Hauptmann Hermann Musk,11101,228136,7 +26202,Brian Madison,11017,7333,1 +26203,Mannequin / Harry Winston Dancer,9716,1661592,52 +26204,Juliet Miller,9905,17258,0 +26205,9-Year-Old Bernie,14534,76992,11 +26206,Hotel Porter (uncredited),33680,29274,17 +26207,Intern,19403,84653,7 +26208,Counterman,25501,109756,4 +26209,Hotel Manager,9428,52021,13 +26210,,186705,54324,7 +26211,Man on Hospital Roof (uncredited),15,1681528,111 +26212,Moroccan minister,11202,1089965,5 +26213,Walter Winchell (voice) (uncredited),21468,167927,18 +26214,Rev. MacCurdy (uncredited),21734,82749,27 +26215,Helen Langford,32275,114287,9 +26216,Desk Clerk,34223,107074,21 +26217,Raymond Beaumont,10351,5139,2 +26218,Magda Gardinas,29318,103483,3 +26219,Robin's Date,9894,887,13 +26220,Enthusiastic Volunteer at Magic Show (uncredited),5998,89678,17 +26221,Vanessa Struthers,9563,51359,15 +26222,Junior,11077,68209,2 +26223,Principal Tidwell,6552,28168,15 +26224,Cate,46286,33259,2 +26225,Dr. Louis Sachs,12103,17485,12 +26226,Sex Machine,755,11161,8 +26227,Cosmonaut,9423,1389606,11 +26228,MP,20424,80206,16 +26229,Elder #2 (voice),13225,1107518,15 +26230,Aunt Jessie Tuttle,43340,97777,3 +26231,Roy Chutney,21801,30614,0 +26232,Reform Club Member (uncredited),2897,106152,292 +26233,Luc,12652,578100,12 +26234,Extra (uncredited),2897,1617619,132 +26235,Sikh Kip,409,5471,4 +26236,Security Guard,32049,41655,42 +26237,Scientist Burke,9827,4732,9 +26238,Faye,16993,12407,3 +26239,Louise,26180,12134,10 +26240,Jackie Dicker,41760,178233,5 +26241,Mrs. Prescott - Widow in Stage Holdup (uncredited),11697,88460,79 +26242,Captain O'Hagan,39939,1248,6 +26243,John Quincy Archibald,8470,5292,0 +26244,Reporter 2,10873,18956,14 +26245,Mark Baker,21352,11866,4 +26246,Spider Simpson,635,9174,9 +26247,Mrs. Blackmer,117,1886574,17 +26248,Jill Cheyne,64398,538924,1 +26249,Harrison / Spur,24266,2090,2 +26250,Father Kovak,9946,522,5 +26251,Harper Stewart,16162,17637,4 +26252,Birdie Coonan,705,7684,7 +26253,Prostitute,19200,1038,4 +26254,"George, Jounalist 1",17203,77638,16 +26255,Moms Douglas,47816,44822,4 +26256,P.L. O'Hara,22279,4566,0 +26257,Stage Door Fan,262,3668,19 +26258,Fraulein Rottenmeier,28345,14686,2 +26259,Alice Needham,29355,15905,5 +26260,Affe,16026,1316030,12 +26261,,32825,246,6 +26262,Woman in Speakeasy (uncredited),59569,3127,5 +26263,,47144,66027,13 +26264,Carlos / Comandante Xavier Escalante,10396,27888,4 +26265,Kommissar Beizmenne,4762,10254,1 +26266,Psychiatrist,544,28633,16 +26267,J. Sinister Hulk,53617,93664,4 +26268,Homer,11879,93151,5 +26269,Robert Kintner,11450,568531,9 +26270,Tony D'Amato,9563,1158,0 +26271,Chang Sing #3,6978,1576419,21 +26272,Hank,10972,6164,3 +26273,Soldier (uncredited),11202,43800,34 +26274,The Communist,195,4120,7 +26275,Lane Leonard,15489,70852,7 +26276,Doorman,9475,1800176,32 +26277,John Emdall,11379,43976,6 +26278,Bigwig (voice),11837,16380,2 +26279,Melvin's Mom,15239,555075,19 +26280,Toshiro Takashi,14052,16060,6 +26281,Fred Z. Randall,36797,16846,0 +26282,Walter Boyett,6951,21757,12 +26283,Minister,13549,140295,9 +26284,Wang Chi,6978,11392,2 +26285,Braun,709,109634,20 +26286,Dennis,30363,140059,7 +26287,Rowena Labuschagne,16417,103582,3 +26288,Abra Bacon,220,2750,1 +26289,,21028,99282,8 +26290,Himself,2300,1215304,19 +26291,Huge Village Man #2,10222,126732,10 +26292,Lana Marcus,33016,4430,1 +26293,Martha,45827,1038,11 +26294,Elder Stewart,197,2474,14 +26295,Mrs. Bluveridge,10874,12094,2 +26296,Morgan,11231,30067,14 +26297,Mr. Daniel 'Dan' Jordan,71067,1381585,7 +26298,Dial,1634,11086,5 +26299,Janet Smith,117026,47080,1 +26300,Lt. Gen. Eugene Irwin,2100,4135,0 +26301,Aide #3 - VA Hospital,2604,11890,48 +26302,Dr. Ramsey,24816,14452,7 +26303,Howie Hamburger,20075,5129,8 +26304,Woman in Taverna,18683,1889110,29 +26305,Marta,229,1487414,48 +26306,Max,123757,1904843,7 +26307,Astergourd,91076,821,4 +26308,Sgt. Maj. Basil Plumley,10590,16431,3 +26309,Pin Pal II,24746,104010,11 +26310,Antonella,47715,103121,2 +26311,Dr. Dennis Donohue,2887,38570,16 +26312,Walton,9343,1758315,17 +26313,Miriam,403,5704,8 +26314,Miss Lamont,71701,74622,10 +26315,Extra (uncredited),2897,1536134,228 +26316,Flight Director,54287,19435,14 +26317,Padre di Renato,10867,67613,2 +26318,Kate McQueen,11859,33665,1 +26319,Jessie Montgomery,2608,12851,0 +26320,State Prosecutor,12506,385,12 +26321,Kaneko Shoichi,34326,1160797,13 +26322,Frankie Ballou,11694,3142,6 +26323,Rev. Capt. Samuel Johnston Clayton,3114,4303,4 +26324,Scorpion,9312,57253,7 +26325,Lakisha,10622,1426133,4 +26326,Joe,51044,33162,1 +26327,Royal Interpreter,8584,39829,11 +26328,Gus,32049,86499,17 +26329,Thomas Dunson,3089,4165,0 +26330,Bacchus,12311,100243,5 +26331,Cookie,18642,78772,2 +26332,Female Berezovo,982,387961,14 +26333,"Dick Stanley, Daniel's substitute attorney",12186,7795,8 +26334,Townsman (uncredited),11697,1317628,32 +26335,Amy,14295,928396,5 +26336,Suzanne,39875,62001,1 +26337,Deborah Connors,16643,8893,6 +26338,Georgie Cooper,9264,36169,3 +26339,Lazar,41166,4783,5 +26340,Mushu (voice),10674,776,2 +26341,Amos,11873,2178,45 +26342,Nina,18317,6238,0 +26343,Imhotep / Ardath Bey,15849,2922,0 +26344,Shadow Henderson (Sax),41823,10814,2 +26345,Harvey Pollard,3172,31711,3 +26346,Jack,11450,77023,18 +26347,Martin,9820,10701,5 +26348,Ed Benitez,2321,17485,2 +26349,Alvin Mack,18133,62032,6 +26350,,37532,203683,1 +26351,Emmett Hunter,29786,12850,9 +26352,Flower Seller,2135,21881,4 +26353,Health Club Girl,15239,3141,25 +26354,Busy-Bee,29649,93538,5 +26355,Teeler Yacey,3089,8496,10 +26356,Jill,11374,13918,8 +26357,Horst,339428,36691,2 +26358,Lazar Wolf,14811,1075028,4 +26359,Harvard,2102,2550,12 +26360,Louise Williams,75,2230,15 +26361,Businessman,4478,1804166,25 +26362,Captain Chalmers,85837,121481,6 +26363,Winch Operator,14372,102170,11 +26364,Frank Whemple,15849,2125,2 +26365,Luigi Mario,9607,5723,1 +26366,Erskine,54795,20070,3 +26367,Uncle Milton,858,1260945,19 +26368,Anna,52735,5916,5 +26369,Stank,11380,541733,5 +26370,The Beggar-Henchman,31498,48064,8 +26371,Townsman (uncredited),11697,78894,30 +26372,Barbara Corvin,5551,15746,9 +26373,Maury Garner,14819,4175,9 +26374,Tough Boy,522,1063614,56 +26375,Milite fascista,10867,553190,22 +26376,Dr. Reginald Miller,46797,16358,13 +26377,Extra (uncredited),2897,1598135,124 +26378,Draco (voice),8840,738,5 +26379,Psychiatrist,39578,123209,14 +26380,Miki,10622,66056,2 +26381,Little Boy's Mother,11159,174700,49 +26382,Freddy Honeychurch,11257,11278,13 +26383,Joe Taylor,44932,3785,0 +26384,Claire,18317,135420,6 +26385,Capt. McMahon,1637,3977,3 +26386,Charlotta Steele,11145,26483,2 +26387,First Cigarette Girl,1859,102363,34 +26388,John Kumalo,34615,17764,1 +26389,Spectator,25430,133230,34 +26390,Scott Summers / Cyclops,36658,11006,5 +26391,Shashinarayan,896,13757,4 +26392,Beth from Denver,786,11670,17 +26393,Mary Knowles,2662,27739,7 +26394,Loretta Lee,9821,12214,8 +26395,Annie May Lee,38955,87942,5 +26396,Nieuwslezeres,58886,228608,17 +26397,Sir Ronald Hampton,409,1606905,37 +26398,Himself,2300,1251369,16 +26399,Paramedic #1,10925,949636,13 +26400,Kico Govantes,2887,14592,24 +26401,Professor Jeckell,8072,548814,6 +26402,Scott,32872,34457,37 +26403,Boy in Car Assisting Jimmy Up Stairway,125413,8901,9 +26404,Grippo,29743,31429,6 +26405,Chancellor,16235,12514,10 +26406,Angela,21142,1507119,11 +26407,Terry,1637,52418,11 +26408,Bedford Shaw,118991,994259,9 +26409,U.S. Court Prosecutor,10400,80991,14 +26410,Goodbody,29048,19610,0 +26411,Jim Gable,40952,28416,22 +26412,Extra (uncredited),2897,589228,220 +26413,Mrs. Teasdale's Butler (uncredited),3063,80546,13 +26414,Scuba Diver,24831,4600,15 +26415,Allan Sanders,664,9996,7 +26416,Richard Hayden,11381,60950,1 +26417,Li'l Bee (voice),28032,1582315,15 +26418,Miller,17339,9126,3 +26419,German,8388,42146,7 +26420,Woman on Street,43828,1472491,50 +26421,Mike,30547,65505,4 +26422,His Tenant,31995,231088,6 +26423,Sarah Mathews,12121,2395,0 +26424,Ray Santos,2924,148306,11 +26425,Gerry,1956,1893,0 +26426,Victim in flashback,229,12153,44 +26427,Burger Assistant,18,1857459,105 +26428,Frank Harris,39435,3151,1 +26429,Extra (uncredited),2897,1672199,76 +26430,Senator Cunningham,11379,79736,16 +26431,(uncredited),5998,82,33 +26432,Heather,11622,1028072,7 +26433,Lucille,62488,18331,1 +26434,Kane's daughter,20645,72606,6 +26435,Nickie,1574,17639,10 +26436,Clutz,59181,228960,4 +26437,Woman in Bathroom,8970,11718,9 +26438,Betty Watson,38965,35109,3 +26439,Mac,39939,52051,2 +26440,Gossip,1859,1269196,49 +26441,Phil Sutcliff,77915,14735,9 +26442,Buster (voice),18890,175553,3 +26443,Theresa,17170,83196,16 +26444,Floyd,40555,193,0 +26445,Derek 'Yogurt',10750,186769,11 +26446,Chief Tuttle,43342,8498,6 +26447,Officer Mullavy,70199,58406,4 +26448,His Tenant,31995,552409,8 +26449,Sen. Frank Steubens,13571,6541,5 +26450,Edgar Anscombe,73462,20006,0 +26451,Henna,85052,81092,3 +26452,Jim Olstad,5955,2295,7 +26453,Andy Kaufman/Tony Clifton,1850,206,0 +26454,Officer at Battle Headquarters (uncredited),3063,120818,12 +26455,Hotel Day Clerk,10440,106791,15 +26456,Humphrey,30584,26257,1 +26457,Detective D. Simpson,11524,16474,15 +26458,"Kyoko Watanabe, Ichiro's Wife",17962,34374,5 +26459,Anna,153141,108565,12 +26460,Shorty - Mechanic,43832,1199590,29 +26461,Lao Quan,31439,1789270,13 +26462,Pvt. Terry Milburn,11880,944315,7 +26463,Reg Duffy,13536,10477,4 +26464,Daisy,59066,126339,4 +26465,Jackie Simpson,2898,5586,6 +26466,Grandpa,37917,53010,2 +26467,Sonny Hills,59066,29092,1 +26468,Britta - Redhead (uncredited),18642,10341,18 +26469,Creepy Little Girl,814,1660009,22 +26470,Cristina,10950,1836333,32 +26471,The Man with the Helmet,90762,1177693,8 +26472,Hamlet,141489,5341,0 +26473,Lily Talbott,21060,87048,4 +26474,Aaron Edwards,3114,30557,13 +26475,Waylon Walks Along,21801,945312,8 +26476,Ken,12506,2449,7 +26477,FBI Tech,11001,1202981,33 +26478,Strobe,17464,81900,7 +26479,The Nameless,90762,1868620,10 +26480,Captain Thaddeus Harris,11895,27237,4 +26481,Boss,9462,52906,14 +26482,Dancer,46986,1535191,54 +26483,Stage Door Fan,262,3669,20 +26484,Cecil Skell,31863,19453,5 +26485,Baby Firefly,2662,21319,2 +26486,Noëlle Guillaumet,78802,4513,1 +26487,Roger Baron,31863,3223,1 +26488,Dai Bando,43266,82835,16 +26489,Dr. Gene Reiss,3050,31028,4 +26490,Duane Larsen,5955,38085,13 +26491,Augustine Pagnol,12716,73714,2 +26492,Jeanne d’Arc,10047,63,0 +26493,Michael,2021,20770,6 +26494,Dixon,334,4777,11 +26495,Minor Role (uncredited),2897,29309,250 +26496,Buck Van Patten,31503,28657,7 +26497,Larry Brant,77915,3342,7 +26498,Prison Guard,525,122094,19 +26499,Manny,755,100260,24 +26500,Chan Lee,25682,94082,3 +26501,Murray Jacob,125764,12206,2 +26502,Robyn Graves,20096,8985,5 +26503,Brian Gilmore,52744,15412,5 +26504,James,32049,1105,6 +26505,Guru,4254,35756,9 +26506,Emil Schramm,5998,590711,13 +26507,Belle Marmillion,10860,1794,14 +26508,Garson Deeds (Florida Judge),1813,260967,20 +26509,Henry,29067,248772,9 +26510,Laertes,18971,1015385,10 +26511,Walter Gropius,56934,18161,3 +26512,Sheryl,9427,1335638,16 +26513,Bartender (uncredited),289,1331767,61 +26514,The Shredder / Oroku Saki (voice),1498,952996,10 +26515,Partygoer,2898,1080071,32 +26516,Bernard,400,5504,10 +26517,Driver at Drive-in,949,12879,30 +26518,Loan Secretary,4338,37042,7 +26519,Stage Guard,522,136236,29 +26520,Jim Schmidt,33016,131785,8 +26521,Tess Mannering,28295,105999,5 +26522,Princess Bala (voice),8916,4430,11 +26523,Rabbi,14811,974329,13 +26524,Marquis Andre de Lage,15875,4355,3 +26525,Regional Director Franklin,2321,4039,18 +26526,Ray Coleman,11456,884,4 +26527,Dominic,29649,104504,12 +26528,Resutoran no shachô,11830,554572,5 +26529,Bar Amand,2428,18803,8 +26530,Stewart's Dad,31586,68446,30 +26531,Gossip Columnist,31044,1729781,27 +26532,J. Michael Floquet,11975,167122,21 +26533,Edwin,261246,54444,9 +26534,Savannah Wingo,10333,4778,5 +26535,Coop,27526,98089,14 +26536,Pub Man,153141,136040,19 +26537,Noble Tucker,28176,21563,11 +26538,"Matthew ""Stymie"" Beard",10897,67379,10 +26539,Chris 'Oz' Ostreicher,2105,21594,1 +26540,Ophelia,10549,204,4 +26541,(voice),2721,37460,25 +26542,Mask #2,242,2234,37 +26543,The Creep,38043,119475,13 +26544,Dr. Diane Norris,11607,74276,6 +26545,Colonel Kontarsky,10724,10734,5 +26546,Ivor Novello,5279,18325,4 +26547,,77825,582557,4 +26548,Sen. Bill Arnot,9776,8986,7 +26549,Rich Old Man,11830,237157,24 +26550,Melvin Udall,2898,514,0 +26551,"Don Diego Vega, aka Zorro",32093,10922,0 +26552,Army Lawyer,42569,29713,9 +26553,Cemetery Caretaker,11428,3027,13 +26554,The Woman Runner,10803,136872,8 +26555,Sergeant William George Meeks,11202,3342,11 +26556,Sir Gawain,30584,45039,0 +26557,Esther Merrill,73969,1284334,6 +26558,Waingro,949,34839,19 +26559,Indian Victim,10586,667748,9 +26560,Lorenzo Lamas,37718,11366,12 +26561,Mandy,9403,26223,22 +26562,Errol Partridge,7299,48,4 +26563,Son of Erin,379,1281538,35 +26564,Traveling Salesman,10866,552471,22 +26565,Calvin Palmer,10611,9778,0 +26566,Young Iris Murdoch,11889,204,2 +26567,"Boris, Laborer #1",46986,2315,37 +26568,Jimmy,15745,47774,8 +26569,Pop McCormick,27332,16555,5 +26570,Solomon,153141,7060,10 +26571,James,40879,6066,5 +26572,Roland Mackey,2107,20766,3 +26573,Replacement for Cop 663,11104,1407506,8 +26574,Les Peters,43832,87698,5 +26575,Cathy Reno,39833,48958,1 +26576,Kenny,13567,1270523,9 +26577,Le voyageur,36245,37309,17 +26578,Maori Chief,34774,112975,12 +26579,Dr. Frederick Buckell,41038,151895,4 +26580,Lloyd,58372,349,2 +26581,Evelyn Stockard-Price,11377,10696,1 +26582,Priest,13965,76189,10 +26583,Pedlar,46924,3916,17 +26584,Juggler,43828,1472489,23 +26585,Old lady holding a cat,13889,7456,12 +26586,Fred Leer,11004,72056,12 +26587,Referee #1,11873,1265393,13 +26588,Night Court Spectator (uncredited),73969,139240,13 +26589,Fight Promoter,1375,16669,15 +26590,Mr. Mersault,8970,8930,2 +26591,Bill,23069,30512,7 +26592,Major-General William Devereaux,9882,62,2 +26593,Stan Krolak,5955,6383,1 +26594,Diner Cook,11397,78435,78 +26595,Mamooli,9457,7248,8 +26596,Gray Mathers,32274,4492,9 +26597,Anton,11907,1084,4 +26598,Aleksandr Ivanovich 'Sascha' Luzhin,52654,1241,0 +26599,Committee Chairman,1687,18649,9 +26600,Horse Breaking Sequence,5917,1894179,66 +26601,Sean's Wife,814,1641515,28 +26602,Spartanette #1,14,101687,25 +26603,Ness' Clerk,117,1886578,23 +26604,Rocky Balboa (uncredited),41852,16483,8 +26605,Juan,18079,119671,1 +26606,,59199,1231,0 +26607,Medical Examiner,578,8616,14 +26608,Higgins,23114,29817,17 +26609,FBI Agent - Potato,17711,44818,17 +26610,Inspecteur Slimane,26252,94940,4 +26611,Betty,46029,29369,1 +26612,Teacher,12102,171264,12 +26613,Charlie Dunlap,110972,2694,1 +26614,Susan,11456,10399,2 +26615,Jimmy,26252,11543,8 +26616,Joan Stiles,13571,58414,6 +26617,Emma,8869,156980,10 +26618,Dee Loc,13408,19767,1 +26619,Phyllis,11654,162413,7 +26620,Eric Pacard,78281,49025,5 +26621,Lorne Daniels,35696,7166,2 +26622,Orville Jackson,31805,82388,1 +26623,Sailor,46924,1233174,24 +26624,Helen,1637,5151,8 +26625,Moochie (Montgomery) Daniels,15944,83131,5 +26626,Max Dunlevy,12103,135353,8 +26627,Fred Derry,887,13578,2 +26628,Detective Eric,23239,85351,3 +26629,Band Member #1,1647,1582112,38 +26630,Bodyguard,117,1512293,38 +26631,Himself,9403,146253,27 +26632,Bunky,40952,239557,11 +26633,FBI Waiter #3,4133,1588715,27 +26634,Chuck Elbarak,9102,1242148,9 +26635,Creb,13853,1736,2 +26636,Doggydou,35292,1462134,38 +26637,,102,76392,12 +26638,Lt. Wilson,9289,30778,67 +26639,Theo Kretschmar-Schuldorff,25037,88935,2 +26640,,77825,71172,2 +26641,Narrator (voice),11215,192772,7 +26642,Chunjin,982,14731,4 +26643,Tommy Vesey,41590,227,0 +26644,Charlie Felton,47955,26959,12 +26645,Priest,46989,236055,13 +26646,Carol Grayland,30666,41229,1 +26647,Isabel Three,4476,1077329,22 +26648,Preacher,7514,52817,4 +26649,Pang Duanwu,47694,554850,2 +26650,Extra (uncredited),2897,1319966,163 +26651,Vice-Adm. Dougherty,200,2516,9 +26652,Captain Malcolm,13496,11088,14 +26653,Walt Coes,29355,588,12 +26654,Bobbi,12309,173136,13 +26655,Peter de Silva,27461,97785,5 +26656,Henrietta MacAvoy,80351,7303,1 +26657,Berit Storch,16026,1316028,10 +26658,Sigvard,742,11052,17 +26659,FBI Waiter #1,4133,1215378,26 +26660,Ivan Tretiak,10003,1118,2 +26661,Rupert Pupkin,262,380,0 +26662,SAT Teacher,10708,142608,34 +26663,Viktor Taransky,9296,1158,0 +26664,Hardware Clerk,11120,1206,11 +26665,Cox Twin,35292,1081921,35 +26666,Girl in Bar #1,93350,1856998,14 +26667,Mrs. Kohler,39867,150653,2 +26668,Hottie,11397,1773781,45 +26669,Birnbaum,1058,15212,2 +26670,Little Jane Butterfield,4011,34538,15 +26671,Soldier (uncredited),12311,98052,35 +26672,Danny Embling,21828,1284,0 +26673,"Joe Chandler, the detective",2760,27914,4 +26674,Sean's Father,25682,1120192,12 +26675,Spider Mike,12079,5723,3 +26676,Nurse,522,1196132,49 +26677,Roxanne,28736,101783,7 +26678,Miss Strapford,19855,11870,16 +26679,Raffaella,9540,114943,13 +26680,U.N. Chief,63105,91897,7 +26681,Florida Prosecutor,1813,30151,19 +26682,Anna Muir as an Adult,22292,88570,4 +26683,Tommy,11692,833,11 +26684,Mercier,1859,13361,9 +26685,Member of climbing team,12516,550560,13 +26686,"Dr. Wong, Marriage Counselor",10872,14592,10 +26687,Emma - Miss 48's,1578,559279,11 +26688,Man Singing at Inquirer Party (uncredited),15,1170356,48 +26689,Elizabeth,277726,170986,6 +26690,Martian Girl,75,4452,13 +26691,Anton,8665,557840,28 +26692,Computer Nerd,2105,1656609,35 +26693,Reporter,11374,93846,35 +26694,Second Fight Timekeeper,26378,119542,44 +26695,Headmaster,28973,33032,9 +26696,Anthony Pascal,33344,33260,3 +26697,Five Year Old Caine,9516,23681,10 +26698,Temple Priest,31498,111991,13 +26699,Red Elvis,24746,104006,7 +26700,Father O'Flannagan,11397,1080265,10 +26701,Grace,4011,27264,12 +26702,Bar Patron,30547,1422112,31 +26703,Himself,9403,12208,30 +26704,Le voisin d'Amélie,194,28462,25 +26705,Randy,6552,22133,6 +26706,Hotel Front Desk Clerk,6068,1609234,26 +26707,Band Member #2,1647,1582113,39 +26708,Faye Dolan,9591,882,5 +26709,Shannon Dwyer,11472,34486,8 +26710,Phil Macy,32825,14502,5 +26711,Mate Briggs,244,3262,5 +26712,Kent,14370,38086,15 +26713,Gloria Minetti Nesstra,29076,1980,6 +26714,Young Stuart,4012,1192382,19 +26715,Greta,32049,42524,11 +26716,Nancy Bosch / Mrs. Bobby Texador,31598,938831,7 +26717,Himself (as The Honorable Edward I. Koch),11899,1145892,15 +26718,Jim - Assistant Ticket Taker,26378,931793,57 +26719,,56235,223822,13 +26720,Floyd,42424,128125,9 +26721,San Quentin Warden,28577,5737,10 +26722,Jorge,2758,4252,17 +26723,Sonny Gilstrap,19176,2628,1 +26724,Vera,64483,150730,1 +26725,Doorman at Speakeasy (uncredited),13912,181949,18 +26726,Board Member,29510,67369,15 +26727,Balthazar,235260,74415,23 +26728,Sefton,49391,230680,21 +26729,Black,118677,17490,3 +26730,Sheriff Barney,147829,95299,8 +26731,JonBenet Ramsey / JonBenet Ramsey Auditionee / Herself,430826,1801190,1 +26732,Guard,48180,140023,18 +26733,Sheriff,21955,86345,10 +26734,C.C. Tarpley,277388,11065,5 +26735,Wolf,317182,1251197,6 +26736,"Onewa, Matau",21379,74364,10 +26737,Malcolm X,69903,15152,16 +26738,Chernobyl Chief Engineer,319092,1890102,5 +26739,Rev. Henry Clegg,32634,83812,18 +26740,Himself,333103,500427,6 +26741,Motorcycle Cop (uncredited),17136,111827,39 +26742,Feroze Khan,314389,14596,2 +26743,State Trooper,14589,1147303,32 +26744,The Antichrist (voice),354133,1496063,3 +26745,Alex's mother,269173,120888,9 +26746,Diner Patron (uncredited),15022,1303212,39 +26747,Orwell - McGee's Guide,26881,152977,12 +26748,Bob,170689,17859,12 +26749,Cortez,7837,17652,2 +26750,María Luisa,82265,954,3 +26751,Mrs. Kakkad,14134,623417,14 +26752,Arthur / Prince Arthur / Troubador,18698,83470,4 +26753,Miguel,153561,50994,0 +26754,Mr. Woolrich,37254,2278,6 +26755,Mr. Otto (as Ludwig Stossel),28115,31209,6 +26756,Le passeur,15712,1869367,19 +26757,Brett,78522,128800,7 +26758,Agent Nick Cooper,302699,1419122,6 +26759,Sridar & Shiva's Father,69404,544978,13 +26760,Eve Bendibuckle,280495,41978,1 +26761,Policeman,8988,1261901,61 +26762,Bellden's Receptionist,31899,102002,42 +26763,Golfer (cameo),9080,82388,12 +26764,Arun Bhonsle,20623,142335,17 +26765,Zhou San,187022,71051,1 +26766,,23289,1443324,21 +26767,Jane,76084,128201,1 +26768,Lynn Belvedere,77012,20125,0 +26769,Bo Barrett,13996,62064,1 +26770,Harry,40028,170778,5 +26771,Lisa,84348,1039534,7 +26772,Annie,393659,208143,6 +26773,Johnny Doyle,46494,18643,2 +26774,Darbois,246422,28675,4 +26775,Charlie How-Come,28438,30239,6 +26776,Bohdan Chmielnicki,31273,82513,4 +26777,Eddie Delaney,53864,32437,6 +26778,Rebecca 'Becky' Evans,42703,83442,3 +26779,Harry Corbett,43522,125842,11 +26780,Robin / The Flash / Damian Wayne (voice),177271,77293,7 +26781,Bert,3061,29987,2 +26782,Bertie,447758,1782024,26 +26783,Leia,51285,143741,1 +26784,Katja,308671,36906,2 +26785,Shohreh,37181,240243,8 +26786,David,13802,1386408,43 +26787,"Paul Liski, le chef du réseau de drogue",44256,4121,7 +26788,Helen Pettigrew,104211,93897,1 +26789,Lt. Dave Santini,26204,3090,2 +26790,Poor Man,11832,1116665,13 +26791,Shireen,43464,70035,1 +26792,Contractor Paul Williams,312831,18993,4 +26793,Leland,19898,79419,5 +26794,,115427,1086297,13 +26795,Company Sergeant Major,41312,10462,6 +26796,Max,399894,1658147,16 +26797,,393079,1364649,3 +26798,Joe,339362,1394379,13 +26799,Greg,200727,116263,3 +26800,Bryce,179154,1108059,5 +26801,Akif Dikman,277237,112429,14 +26802,Herzogin Ludovika,457,6252,2 +26803,Court Clerk,43821,89662,34 +26804,Jagdish Tyagi (Jolly),177358,85889,0 +26805,Dimitris,52784,92897,5 +26806,Bobby Barker,69917,557448,1 +26807,Padre Tobías,59117,228880,13 +26808,Priest,245891,1503861,12 +26809,Mr. Dabney,97024,2438,2 +26810,Parkhill - Abilene Cattle Buyer,75315,33856,30 +26811,Tuma,22259,60279,8 +26812,Senator (uncredited),73430,569144,20 +26813,Wayne,228970,1371109,49 +26814,Padre,73984,24604,5 +26815,Zack,429238,1733971,14 +26816,Elfter Geschworener,269165,1802002,10 +26817,Mickey,336004,1467026,22 +26818,Jeune policier,10795,270080,35 +26819,Jai,80539,237048,0 +26820,Kathy Williams,791,11829,6 +26821,Dowager (uncredited),80941,14287,28 +26822,Cyclist (uncredited),88005,210849,35 +26823,Professor Donald West,28820,102101,3 +26824,Reuven Wolf,74666,562949,1 +26825,Dave,21431,45415,9 +26826,Carol Hargrave,36960,13567,5 +26827,Merenkahre,181533,2282,7 +26828,Girl in Bar,71120,106966,7 +26829,Real Estate Agent (uncredited),253235,1205623,29 +26830,Martha Jones,419786,1182929,4 +26831,Duty Patrol Marine,424488,1504764,30 +26832,Oliver,126927,1083359,5 +26833,Leslie Reynolds,86186,181538,4 +26834,Duenna,58905,1013177,22 +26835,Wick,186759,206485,23 +26836,Kie,34019,111690,1 +26837,Kathrine,7972,33432,11 +26838,Builder 3 / Ghost,206574,1339117,7 +26839,Ragnfrid,57438,116378,31 +26840,Kenny's Brother,41402,64213,15 +26841,Turner Lucas,4982,4238,22 +26842,American Base Sergeant,19996,1764136,32 +26843,Lison,382598,1884493,2 +26844,Philip,111239,570296,1 +26845,El Caribe Party Patron #2,2001,1329415,54 +26846,Sergeant,5638,81523,30 +26847,Fighter,257447,1698765,28 +26848,Himself,33315,110350,0 +26849,Tina,170603,52315,9 +26850,Briton Biker,240745,1660701,30 +26851,David Dailey,47540,6575,0 +26852,Tamiko's Mother,112244,1197734,5 +26853,Laura Aliprandi,58060,131657,2 +26854,Jimmy,412209,163731,5 +26855,Basil,43049,291,7 +26856,Det. Lt. Reynolds,72847,14508,6 +26857,Arturo Rossi,99095,31898,3 +26858,Boleslaw Barlog,11440,41965,7 +26859,Sawan,61203,1011802,4 +26860,,342011,1181228,6 +26861,Focus Group Woman #3,173153,1287323,9 +26862,Barkeep,315837,1848070,27 +26863,Officer Maya,169298,1168178,20 +26864,,405325,1652455,1 +26865,Marco bambino,57918,1180357,3 +26866,Amalia,127521,1084848,2 +26867,Bob the Mechanic,43935,215887,7 +26868,,93891,134263,4 +26869,Old Woman at Market,42057,1031118,6 +26870,Mom Zombie,24927,1230871,15 +26871,Bill Massey,85648,4299,1 +26872,Joey Neary,360784,1512709,5 +26873,William Landis,30554,106531,3 +26874,Dr. Wright,3024,29656,5 +26875,,327237,228327,4 +26876,Alter Mann,54524,506931,6 +26877,un valet de chambre,76703,579800,11 +26878,Mukesh Mehra,8079,52263,2 +26879,Cool Cat,325712,1340322,4 +26880,Lady Anne Plantagenet,46758,1605322,8 +26881,Captain at Court Martial (uncredited),28000,562199,86 +26882,Shane,55534,117432,14 +26883,Judy,18238,141533,6 +26884,George Morton,70151,44846,0 +26885,Abdullah Omar,14531,129014,6 +26886,Klasse 3c,61035,1446105,31 +26887,Yassin,81435,1357163,8 +26888,Josefine,86980,931785,6 +26889,Michael Hillyard,109251,1756,1 +26890,Baruti,339530,1465473,3 +26891,Stefan Brand,946,10508,1 +26892,Dr. Murdock,68684,188758,26 +26893,Emily Hobbs (voice),312100,81668,7 +26894,Yūsei Fudō (voice),72013,1247772,4 +26895,Rosi,54548,150898,5 +26896,Griffin Jones,266433,90684,9 +26897,Cookie - the Drinker,14589,29987,75 +26898,Grocer,23397,1893431,16 +26899,Bergonzoni,48805,120107,6 +26900,security guard,189151,1151842,6 +26901,Livia Saint,7220,15007,4 +26902,Captain Iwasaki,1251,552266,12 +26903,Gerlóczy,447236,1265182,5 +26904,Mailbox (voice),9928,111875,19 +26905,Osamu Hattori,18148,134346,10 +26906,Himself,2577,1192715,10 +26907,Ciccio Magrì / Gringo,121329,53462,1 +26908,DI French,18072,480,12 +26909,,273096,464228,7 +26910,Boy Dancer,10299,41157,19 +26911,Valya,83475,544512,1 +26912,Da Lisi Guard,217923,1436274,33 +26913,Agent Smith,88794,21662,10 +26914,Kindall,56491,201862,11 +26915,Nancy Grace,245703,1514160,30 +26916,John Dillinger,28115,6937,8 +26917,Pa Logan,39982,1072159,10 +26918,Ranger,26223,1202398,5 +26919,Georges Duroy,118536,3361,0 +26920,Agito (voice),14945,96477,0 +26921,10th-Floor Nurse,40060,1002270,11 +26922,The Beautiful Lady,81110,2491,3 +26923,Yukio Okumura (voice),201223,131563,1 +26924,Nurse,377428,1498026,17 +26925,Kim,340224,1172695,3 +26926,Dragan,345489,228763,3 +26927,Urshu,205584,17328,13 +26928,Harold Zimmer,24756,1175134,10 +26929,Fisherman (uncredited),80771,18586,20 +26930,Nuclear Tech #1,52454,1630311,37 +26931,David Mills,358895,2130,3 +26932,,292062,46460,6 +26933,Sarah,36968,116572,7 +26934,,162877,83357,2 +26935,Thibault,9736,581207,9 +26936,Chief,394645,223971,7 +26937,Marion,48601,25340,1 +26938,Verteidiger Herr Biegler,421958,111420,2 +26939,John Hull Double,378441,1362636,24 +26940,Lefeld (uncredited),15794,126014,29 +26941,Marilyn - Pole Dancer,88042,128207,12 +26942,Barney Glasgow,93313,30211,0 +26943,General Montgomery,65035,13328,21 +26944,Poggle,53573,30236,2 +26945,,409903,544513,7 +26946,"Luigi Giulti, restaurant owner",39979,38597,24 +26947,,375199,1179627,2 +26948,Gerry,45013,64147,15 +26949,Conal Doherty,44129,58333,8 +26950,Ma Verbeek,14019,76287,5 +26951,Stephen Sullivan,115290,1074888,5 +26952,Dyla,286789,946144,9 +26953,Antonio Villalta,127864,1603,2 +26954,Gus,128215,1202910,9 +26955,Shadow,109466,63934,5 +26956,Reporter,47882,119548,25 +26957,Il padre di Lucia,98025,556454,9 +26958,Priscilla Kinberg,340684,21143,6 +26959,Kate Ryan,13022,8329,0 +26960,Nelse Lansing,104083,4077,9 +26961,,295273,39831,9 +26962,Irene,52251,56699,0 +26963,Driver,268920,1454299,92 +26964,German Officer,257081,1346977,36 +26965,Niima Scavenger (voice),140607,1451088,78 +26966,Margarete Simon,130233,22917,1 +26967,Rachel,241254,1363621,9 +26968,Frieda,47914,128201,15 +26969,Julie MacDonald,39519,88617,4 +26970,Parent Chaperone,239562,1158062,13 +26971,Jane McFarlane,337549,134698,9 +26972,Theatre Actor,245700,1798369,54 +26973,Steve,355890,1461038,5 +26974,Mary,237584,1375948,13 +26975,Nikolai,323370,1246803,4 +26976,Duke,14869,38673,1 +26977,Mr. Berry,32021,100019,4 +26978,Dimitris,301491,1119908,4 +26979,Marc Antony,43252,4122,15 +26980,May Nelson,25551,99755,7 +26981,Not for Pot Driver,8457,59841,12 +26982,Silvia,378087,1423493,3 +26983,Woman on Street,86820,59882,6 +26984,Le ministre,19548,12272,5 +26985,Niju the Evil Wolf (voice),25913,2,4 +26986,Jordan,159667,216409,9 +26987,Serge,20411,86044,3 +26988,Race Spectator,96987,109793,8 +26989,Dong-beom,214910,1024396,6 +26990,Lionel Benmore,51303,34508,2 +26991,Billy,57326,191443,11 +26992,Reporter,1726,204606,49 +26993,Ibrahim,81708,46066,3 +26994,King Abdullah,157843,1907177,39 +26995,Miss Holloway,16373,80467,4 +26996,,164013,235981,2 +26997,Thierry,50350,21177,20 +26998,Stormtrooper,330459,1235786,85 +26999,Melda,139519,1296198,6 +27000,Leslie Stephens (uncredited),52360,5,22 +27001,Charlie,32088,3092,0 +27002,Sheriff Hicks,197737,1109652,15 +27003,Scotty Hyslip,28304,35849,9 +27004,Pickle Bixby,78734,14966,4 +27005,Elderly General,289720,1585297,14 +27006,Wally Davis,94182,14966,3 +27007,Mordred,18978,15196,3 +27008,Edith,277355,19812,8 +27009,Aphrodite Girl,32657,1507597,26 +27010,Blanca Champion,14862,53862,1 +27011,Jory 7Yrs Old,267793,1315949,22 +27012,Bruce Komiske,254918,16327,2 +27013,Dock Policeman,52859,951965,43 +27014,Dylan,429238,133814,11 +27015,S'more,21044,87055,5 +27016,Ray Mott,24655,12298,8 +27017,Waylon,166221,108210,19 +27018,Jenny the Ticket Agent,256962,1819138,69 +27019,Jimmy Noble,27105,29313,2 +27020,Martin,15689,78550,3 +27021,Ryan,118957,558466,5 +27022,Macao Park,124157,75912,0 +27023,Troupe,19995,1207257,38 +27024,Theater Patron 5,866,10920,18 +27025,Nightclub Owner (as Al Wai),58570,25253,7 +27026,Mayor Sam Pelley,176670,30539,6 +27027,Doctor (uncredited),156700,1543867,56 +27028,"Kusakabe, Husband of Keiko",104776,1200241,1 +27029,Natsuko,99188,120689,4 +27030,,266568,1313439,10 +27031,Veronica,40817,1173034,8 +27032,Mick O'Shea,59726,1185473,7 +27033,Shirley,277847,1834,5 +27034,Jude Katz,253484,1295542,7 +27035,Rodeo Director,105528,57282,13 +27036,Harriet,377290,997649,13 +27037,Male Host,80545,221857,13 +27038,scommettitore,52913,120027,10 +27039,Dick Baldwin,99545,94294,1 +27040,Le trompettiste,343702,1508644,18 +27041,Rollerskating Waitress #2,11247,1776500,34 +27042,Gopi,134474,1199055,10 +27043,Francesco Capuano,94809,11163,1 +27044,Maria Enders,246860,1137,0 +27045,Rafa,236737,1271600,1 +27046,,69401,584241,8 +27047,Cop,35656,1463961,13 +27048,Motel Hooker,76785,543030,9 +27049,Gérard,60824,24395,2 +27050,Trunk Hostage,213681,1402117,18 +27051,Captain Cold / Black Manta (voice),300424,24362,10 +27052,,126250,558626,18 +27053,Blind Man's Daughter (Young Emma),300669,1669338,9 +27054,Gerd von Rundstedt,139862,169,6 +27055,Stepan Kazanets,143073,1042917,6 +27056,,262785,105868,1 +27057,Sheriff Thomas,335970,1718136,40 +27058,Captain Macintosh,186584,107549,3 +27059,Civilian (uncredited),22584,131545,29 +27060,,412103,176823,5 +27061,Chief Constable Sir Ronnie Flanagan,5413,42565,17 +27062,Diller,186759,11885,13 +27063,News Reporter,270654,103219,33 +27064,Davis,16197,102603,4 +27065,Elias Hart,252853,2549,3 +27066,Williamson (voice),30060,16697,13 +27067,,38359,240824,2 +27068,Hortense Hathaway,72096,3125,4 +27069,Third Victim,58411,159694,9 +27070,Jacob,270654,1424765,16 +27071,Nádio,12811,1827449,5 +27072,Raya,107705,276094,3 +27073,Gaffer,340101,1865838,27 +27074,Bob Wilson,44801,27772,1 +27075,Mr. Halverson,158015,15824,9 +27076,,172008,1182600,17 +27077,Headmaster,24709,81238,5 +27078,Breen,37686,1078613,22 +27079,Pepe,78318,1467850,20 +27080,Isabel,31472,1394144,12 +27081,Nat the Cop,2001,1781693,21 +27082,Delta (voice),14405,18284,7 +27083,Kitty,297702,131739,7 +27084,Umpire,18722,181067,34 +27085,Chief Insp. Charles Kane,4931,6577,6 +27086,Rose Creek Townsfolk (uncredited),333484,1658199,43 +27087,The Doctor,315855,6304,36 +27088,Frank Stoller,27230,1119771,5 +27089,Schenkman,23964,46898,18 +27090,,117212,1181047,7 +27091,Carrie McLaughlin,37932,94792,1 +27092,Alphonse of Monte Carlo / Alfred Askett,14387,40956,0 +27093,lääkäri Grotenfelt,60678,92428,1 +27094,Gabriella,11247,1722548,8 +27095,Mrs. Walsh-Mellman,13358,61696,9 +27096,Leslie,41301,472602,5 +27097,Ray,135686,947462,0 +27098,Tarafa,43778,1349324,9 +27099,Jin,13807,78429,6 +27100,House Party DJ,222388,1326241,9 +27101,Amelia,80280,1361984,13 +27102,Himself,15258,83414,102 +27103,Conductor,69065,2289,5 +27104,Sterling,365339,95001,2 +27105,Irene Costello,18899,4529,5 +27106,Chadwick (voice),312100,61110,6 +27107,Sonia Dodyk,128140,1161085,9 +27108,Beran,18352,1404470,27 +27109,Garfield,2966,53591,12 +27110,Officer West,30921,160959,13 +27111,Al,86838,159879,11 +27112,Room Service Waiter / Extremis Soldier,68721,1735551,53 +27113,Valérie Fisher,82495,28626,5 +27114,Steven,17306,1042648,7 +27115,,325385,1451679,12 +27116,Nathanael Greene,208434,82863,7 +27117,rádce,160106,222820,6 +27118,Theseus,37958,73968,3 +27119,Traffic cop,3405,10254,8 +27120,Pop Chaney,41857,70990,5 +27121,,414827,1676369,1 +27122,Bertil Wadensjö,33613,81212,17 +27123,Old Man,28068,99564,14 +27124,12-Step Receptionist,14976,1465486,16 +27125,Country Band Member,228205,1549539,17 +27126,Gregoroff,140418,15666,2 +27127,Tour Guide,31890,108565,8 +27128,Aurelia,12575,37411,2 +27129,John Bishop,84905,4165,0 +27130,Waiter,339403,1635151,36 +27131,Man at Funeral (uncredited),1421,1650,51 +27132,Billy New,61908,133436,3 +27133,Cmdr. Blair,75162,1563601,9 +27134,Sweeney,390777,1639352,7 +27135,Priest,328589,17484,8 +27136,Walter (voice),64328,360193,24 +27137,,12206,1048920,26 +27138,Frankie Flaherty,128598,1088194,8 +27139,Glader,198663,1415403,15 +27140,Otoyo,77057,55666,12 +27141,Mr. Stiemer,133183,26532,10 +27142,Cousin,19482,1334720,12 +27143,Sorrell,440508,1846448,14 +27144,Billy,25655,1356198,12 +27145,Trevor,84333,1058027,8 +27146,Faleiva,75162,1563605,14 +27147,Pescadero,86126,1306115,4 +27148,Ethel Hoss,10011,62001,18 +27149,Man on Street,49712,1885607,28 +27150,Palm Club Owner,12637,102441,4 +27151,Presentador de TV,76333,1157471,4 +27152,Bill Garrett,45512,8260,2 +27153,Sophie,16151,79707,19 +27154,Criança na escola1,117534,1902459,32 +27155,Persian (uncredited),1271,1330783,85 +27156,Florence,102362,155134,30 +27157,Bia,34588,1307798,12 +27158,Duke,41380,124002,16 +27159,Duval,395767,33161,1 +27160,Anja Hopia,186292,124288,3 +27161,Ebony,98557,93820,1 +27162,Marcus Daly,20126,15196,0 +27163,Marsh,281215,40159,4 +27164,Will Atkins,56533,13294,1 +27165,The Pope,336004,380,1 +27166,,199887,31383,1 +27167,Jovan (as Mark Roberts),27409,97685,2 +27168,Le joli garçon,118293,35968,6 +27169,l'inspecteur Leroux,44256,584303,6 +27170,Young Sarah,49815,2453,7 +27171,Goldie,17614,657997,5 +27172,Dr. David Brinkman,18998,1219181,6 +27173,Secretary (uncredited),80771,1080619,16 +27174,Sanda,36063,227088,4 +27175,Teniente guardia civil,100270,1106899,12 +27176,Shelby,59296,130782,2 +27177,Young Yasmin,202214,1184329,8 +27178,Clemente,20414,128470,12 +27179,Eragon,2486,25438,0 +27180,Storekeeper,110598,101953,8 +27181,Helicopter Pilot,1164,1681201,41 +27182,Terence Aloysius 'Slip' Mahoney,70313,89989,0 +27183,Michael,78028,974,3 +27184,Michel Legrand,85735,10934,15 +27185,Emily,29694,40949,4 +27186,Bartender,426230,1514243,23 +27187,Monty,60759,51879,4 +27188,B.P. Morrow - Bank President,198600,20145,7 +27189,Rahim,27621,1247091,7 +27190,Lord Stanley,104211,32139,12 +27191,. Demi Armendez,43395,1793,1 +27192,"""Babcia""",382155,144972,7 +27193,Jesus H. Christ,13173,15009,13 +27194,Gangu,103236,593144,7 +27195,Marna Lewis,172445,1167757,1 +27196,Cyclist,214756,1502955,50 +27197,Richie,52894,174653,1 +27198,Glader,198663,1415417,23 +27199,Peters far,24821,111543,16 +27200,Mada,125700,87424,5 +27201,Aleksey,97672,1024948,2 +27202,Walt,14147,11833,7 +27203,,390376,1626464,3 +27204,Barnabas Collins,62213,85,0 +27205,The Minister,45875,134071,10 +27206,Adrian (Dusty),85564,21315,1 +27207,Timmy's Dad / Cosmo (voice),146712,31162,3 +27208,Heinrich,226693,36709,12 +27209,Rev. Phillip Moss,192990,123209,4 +27210,Shelle,359870,220587,10 +27211,Richard Bell,10008,61943,11 +27212,Male Blonde Stella,341689,1688076,12 +27213,,27904,69758,2 +27214,Alikersantti Tane Sulonen,55754,108853,6 +27215,Linda,68184,550489,6 +27216,(uncredited),61035,1371392,50 +27217,Kotori,223485,1451506,7 +27218,Jonas,40785,90605,3 +27219,James,359870,570296,3 +27220,Sebi,167424,1822708,26 +27221,Melanie,64605,13637,2 +27222,Bürgermeister,119820,45694,4 +27223,Lushin,43891,30234,7 +27224,Costales,359105,1354665,19 +27225,Fat Tony (voice),35,3266,10 +27226,Felícia,49974,1203062,14 +27227,,124080,9880,0 +27228,Watcher,84336,109327,13 +27229,Amy North,34623,7570,1 +27230,Vivian,320588,210877,11 +27231,Jack Roth,253310,21088,3 +27232,Riggs,14435,6908,10 +27233,Saloon Patron,43821,148419,38 +27234,Mandarin Guard,68721,1735554,55 +27235,Alice Dunne,200727,70685,9 +27236,Camper Mary,41574,1583288,9 +27237,Jess,270654,1424764,15 +27238,Czar,129553,47030,11 +27239,Gatekeeper #2,295723,1418224,11 +27240,Construction Site Foreman,16164,82140,13 +27241,Max Dembo,23397,4483,0 +27242,Shan,45303,224030,6 +27243,Rachel Bornholdt,244786,10691,26 +27244,-Lt. David Pallard,6163,48312,1 +27245,Jane Buck,283384,1362948,15 +27246,,236007,85041,2 +27247,Gem Whitman,75204,208079,0 +27248,Clergyman,43441,105810,15 +27249,Chip Williams,67693,6487,3 +27250,Dr. Barker,6972,27752,19 +27251,Daisy,245891,85121,13 +27252,Truck Radio Operator (uncredited),25953,1196702,16 +27253,Jill Merrill,26805,96300,1 +27254,PC Biran Andrews,14076,27429,8 +27255,Lao Ma,17467,1413335,8 +27256,Lyka,22579,1503648,15 +27257,soukeník Dobromil,84030,1436646,16 +27258,General Theopholus Bogardus,1976,20368,7 +27259,Mikas Grossmutter,233639,1857,1 +27260,Alex,336691,1469806,10 +27261,Toni,59046,15915,0 +27262,Power Plant Security,177677,1562105,59 +27263,,84348,107766,29 +27264,Cheol-heon,387886,1530733,6 +27265,,56095,1631758,9 +27266,Count Luigi Ravelli,27507,29036,3 +27267,Samantha,16996,109046,10 +27268,Arnold Soames,82696,2176,2 +27269,,25801,35767,4 +27270,Ling,41714,39126,2 +27271,John Mason,341201,18643,1 +27272,Older Witch,225728,1544739,16 +27273,Edmund's school headmaster,18763,567303,19 +27274,Gillette Factory Worker (uncredited),259695,1542697,26 +27275,Finger Girl,10070,62823,18 +27276,Mambo,5393,43120,2 +27277,Charlotte,153,1245,1 +27278,Rossi,4982,4253,34 +27279,Kanninen,117499,1762397,3 +27280,Gefreiter Asch,19430,16818,0 +27281,Eric Vincke,44751,82420,0 +27282,Bobby,25111,1144896,10 +27283,Largo Winch,14400,25089,0 +27284,Aïchouch,166883,1457970,14 +27285,Dr. Michael Barkstane,17136,81291,3 +27286,David Hawkins,47003,24340,6 +27287,Prinzessin Lotte,268712,50293,1 +27288,Duke Barnum,186585,97037,0 +27289,Thomas Gruber,314635,1080995,2 +27290,Steve Smith,103850,30612,10 +27291,Luder #1,11328,1348443,11 +27292,Turkish Policeman,383064,1182758,4 +27293,Alan - Age 6,12483,1185258,6 +27294,Rita,318553,108213,3 +27295,Michelle Chambers,213681,139309,6 +27296,Roland Dupuis,68822,24754,15 +27297,Tog,103433,86206,5 +27298,Barbara,55735,280312,3 +27299,Lady in Market,6964,116727,10 +27300,,56942,210166,14 +27301,Aubrey,407448,1711166,14 +27302,Female Subject,28437,100798,10 +27303,,376716,86872,16 +27304,Barry Davis,19294,1646,4 +27305,Blue Back,73194,113710,18 +27306,Chief Jeon,346646,1044800,8 +27307,киберстранник,88491,985073,3 +27308,Junior Broker,60784,102516,4 +27309,Kelly,335869,1452762,6 +27310,Robin Turner,41923,178154,2 +27311,Chiara,23619,149258,17 +27312,Sean Devine,322,4724,2 +27313,The Entrepreneur,443007,1763918,8 +27314,,153196,46312,0 +27315,Melvin Dismukes,407448,236695,0 +27316,Assassin,14539,1183808,10 +27317,Srujan,402672,1139872,11 +27318,Mike's team member,25536,25242,9 +27319,,29568,133092,2 +27320,Elena Neves,337339,73269,10 +27321,Detective Sergeant Bradden,60759,1484587,7 +27322,Col. Erhardt,22998,1466,3 +27323,Himself,124071,325,4 +27324,хозяин,63449,128298,0 +27325,Martha--Governor's Wife,42325,2780,12 +27326,Arlene's Maid,31445,1221753,18 +27327,Pär,31304,589208,1 +27328,Rose,158990,555698,7 +27329,,80276,1486677,10 +27330,Abner,2734,27633,5 +27331,Ray Templeton,11358,9656,1 +27332,Ed Grimes,28280,63813,3 +27333,Sokovian Woman,99861,1760892,58 +27334,Wendy,41932,119119,2 +27335,Oharu,43364,24551,0 +27336,Pearl,45935,12672,2 +27337,Irene,210913,1179062,9 +27338,Kirikou adulte,21348,1576714,8 +27339,Paul,11056,1418163,5 +27340,Michel,64357,538398,11 +27341,Maharajah Ali Kahn,184267,592832,5 +27342,Yvan Attal,382589,2245,9 +27343,Alice Kinian,29136,95468,1 +27344,Matango,52302,235722,13 +27345,Frank Clemmons,74753,21605,0 +27346,Ada Helminen,40660,124259,0 +27347,Danny,74430,1821543,13 +27348,Ralph,51247,1722584,13 +27349,Young Maidservant,205584,1244796,17 +27350,Mujer dueño bar,100270,1403193,9 +27351,Jerry Robin Jr.,8325,58563,7 +27352,Toni,226693,1322947,10 +27353,Frau Heinrich,203833,49766,11 +27354,Joseph,15761,35756,7 +27355,Older Geek,52736,62596,16 +27356,Polyperchon,1966,20291,24 +27357,Party Guest,128669,144388,33 +27358,Jimmy,222388,1326237,5 +27359,Pvt. Gaines,294690,1390543,20 +27360,Grimm,62764,13645,8 +27361,Ugo Persichetti,84056,52329,6 +27362,The Archbishop,70734,1618650,15 +27363,Nurse Butcher,172785,128195,5 +27364,Manuel,4983,24827,4 +27365,Hunden Pusser,356326,1874742,32 +27366,,79781,52057,3 +27367,Swope,19350,25389,8 +27368,College Girl,356752,1841517,40 +27369,Annie Rose,196359,58356,1 +27370,"Peola Johnson, Age 4 (uncredited)",47921,1360460,10 +27371,Daraboa (voice),59297,126693,5 +27372,Johnny Weissmuller,139718,94936,18 +27373,Kelvin,50161,142289,9 +27374,,406449,1650376,8 +27375,Paramedic,85414,1333164,9 +27376,Billy Fisher,42473,1405824,23 +27377,Kennedy Lorenze,161482,168925,7 +27378,Zelda,287483,1326712,8 +27379,BBW Member,167810,146414,27 +27380,Perm,43967,555154,6 +27381,Boris Pavlovsky,9987,1173,3 +27382,Marlenus,31131,1120059,7 +27383,Jong-geun Kim,108972,551171,2 +27384,Gavin Malechie,26119,113639,9 +27385,Village Girl,1579,42010,16 +27386,Lolly,44389,10130,16 +27387,Le premier responsable de Barney & Johnson,53404,149915,8 +27388,"Joe, Índio",42473,1405829,30 +27389,Anna,214093,64210,1 +27390,Little Li,309820,1112331,7 +27391,Man On Mattress,20766,1297777,13 +27392,Sabine (Binerl) Bockerer,24140,26452,5 +27393,Ufficiale dei Carabinieri,41610,120117,8 +27394,Jake Shell,60505,585,0 +27395,Sex Crimes Cop,11248,87097,9 +27396,Additional Voices (voice),82703,84086,34 +27397,Silky,147575,27412,3 +27398,Tarek,187028,1324340,4 +27399,Madame Silicone,358511,1869464,9 +27400,Gregg,9893,60077,14 +27401,U.S. President Leslie McCloud,212713,40175,1 +27402,Don Carmine Lopresti,56853,1011306,9 +27403,National Guard Captain / Family Member,340275,1531619,65 +27404,Michelle,19719,85101,8 +27405,Department of Defense Official,279096,1380098,14 +27406,Brandy,27091,96923,3 +27407,Farmer,51357,10530,3 +27408,Mini,266082,1646378,11 +27409,Joan Brennan,291351,3489,3 +27410,Winnie the Pooh / Tigger (voice),13682,12077,0 +27411,Uplifter,3059,8832,18 +27412,Big Man,151509,1709644,7 +27413,Captain Ariel,1381,7248,13 +27414,Chloroform,51036,1879470,23 +27415,Claire Wellington,9890,515,3 +27416,Evelyn Sawtelle,45714,99905,5 +27417,Herself,394668,520832,10 +27418,The Medium One,286372,1682235,14 +27419,,53407,1543158,20 +27420,Walter Colby,65211,31551,1 +27421,Sean Rogan,84352,22169,0 +27422,Wyatt,13842,58963,14 +27423,Madre histérica,8329,138697,11 +27424,,140509,1342693,10 +27425,Le docteur Marcaurel,12169,76858,13 +27426,Luther Shaw,8842,4987,4 +27427,,131366,1550884,3 +27428,,169343,1151392,0 +27429,Sgt. Krug,25385,95082,9 +27430,Herr Busse,11869,13379,9 +27431,The Prince Regent,41996,115376,8 +27432,James Smith,169355,34285,5 +27433,"Koukol, the Servant",3053,199072,7 +27434,Irving Cohen,28000,11027,2 +27435,Sonia,301334,30430,3 +27436,Kit,51249,231241,4 +27437,nudista,43548,1871604,29 +27438,Submarine Crew,198600,97128,10 +27439,Sandra Markwell,239498,938770,8 +27440,Papa,61113,101606,5 +27441,Logan's Brother in Law,77877,143264,10 +27442,Riley Morris,258193,113780,2 +27443,Dunyasha,53172,1376597,11 +27444,Claire Scrub Nurse (uncredited),284052,1785911,42 +27445,Ed Guyac,60853,93696,4 +27446,Mr. Calhoun,67375,80649,24 +27447,Officer Bryant,15213,1075012,3 +27448,Yip Chun,182127,1086250,44 +27449,Himself,142161,1121623,0 +27450,Count Duerckhaim,3478,32059,5 +27451,Young Adam,15316,207228,6 +27452,Victim 83 (uncredited),52454,1630352,69 +27453,Match Fung,49514,74192,3 +27454,William,70586,1736,3 +27455,Eduardo,325173,1900168,18 +27456,Lawyer,62143,11131,24 +27457,Mrs. Brady,167073,1544910,27 +27458,Mauricette Barberot,37454,11535,6 +27459,,74481,85668,11 +27460,Ariane Nassar,65002,3734,1 +27461,Señor Gomez,272693,1459830,12 +27462,Dyomin,64268,224284,4 +27463,Ruggero De Ceglie / Patrick / Serghey,152100,128015,0 +27464,Abraham,49833,142839,0 +27465,Pierre,175035,30264,6 +27466,Sarah,96936,568714,12 +27467,Himself,324173,135855,12 +27468,Clara Roscoe (uncredited),156360,233114,16 +27469,Nakayama Yasubei,125229,80704,1 +27470,Aaron,60505,783,3 +27471,Wilda,54099,85178,0 +27472,Henry at Six,24420,59243,10 +27473,Adele,109610,12139,2 +27474,Receptionist,32610,106584,35 +27475,Sharon Tate (uncredited),381737,1510821,29 +27476,Himself,15258,545854,59 +27477,Aileen Donovan,266373,88975,3 +27478,Ollie Atkins,301348,1465724,16 +27479,Mary,156,1835,3 +27480,Fairy Tale King,300769,100803,8 +27481,Julie Lawry,13519,2138,16 +27482,Cassandra Austen,2977,29236,9 +27483,P.J.,110588,80732,3 +27484,Roy,360592,1512180,4 +27485,Chief Sp Kwan,11636,1173005,19 +27486,Julian,31421,83407,3 +27487,Ivan Rummel,147876,128401,7 +27488,Kyle Kerns,55728,37822,10 +27489,Caju,7343,52539,10 +27490,Emperor Zombie (voice),213110,11076,1 +27491,Vincent Dawson,301876,14416,0 +27492,Julie Riley,333354,1118081,0 +27493,Taia,24973,7686,7 +27494,Officer #1,45875,134073,12 +27495,Deborah Aldrich,109441,44714,6 +27496,Himself (as Shaq),64972,35806,9 +27497,Mustappa,18098,31925,11 +27498,Milo's Wife,242835,85847,15 +27499,Hasidic Jew (uncredited),187596,1580574,18 +27500,Dr. Myers,188102,1845740,19 +27501,Madeleine,366566,1571491,11 +27502,Kalki,352025,146957,16 +27503,Brunette in Saloon (uncredited),43419,932458,19 +27504,Florian Lederer,290911,1315035,2 +27505,Schroeder,123961,77548,9 +27506,Himself,23319,15903,3 +27507,Procurador,264525,127825,8 +27508,Jone Bang Fai,14818,64358,0 +27509,June Waters,281124,109701,2 +27510,Martin Lynn,36375,12497,1 +27511,Secretary to Mr. Swain,340101,1865910,49 +27512,Nick Scarsi,27777,2010,1 +27513,Josh (kidnapped boy),87293,1209471,12 +27514,,313676,96477,3 +27515,Dr. Clive Riordan,35852,29520,0 +27516,Bobby,13763,1425531,9 +27517,Eric Russell (as Horace McNally),42325,37448,9 +27518,God,45156,2395,5 +27519,Joe Strummer,394822,1244,1 +27520,Lars,60935,47177,8 +27521,Mona,15068,16807,1 +27522,Kissing Guy,246655,1796414,64 +27523,Papá,121929,954261,2 +27524,Penn,15261,78036,8 +27525,Chikako Arai (singing voice),43113,1484029,20 +27526,Alberto,106944,9762,2 +27527,Hold Me-Touch Me,9899,52313,3 +27528,La marquise de Flers,2002,11490,3 +27529,,31275,1853879,11 +27530,Cop,72545,223021,7 +27531,Vesa,51276,86940,2 +27532,Henchman,19336,1200237,12 +27533,Angie,27470,22092,2 +27534,Axe Gang Vice General,9470,25251,13 +27535,Meng Wei,64304,240156,8 +27536,Benjamin Abrahão,232739,1267912,0 +27537,John,285860,1519247,5 +27538,,391757,135347,12 +27539,Lou Kazarian,46421,136126,5 +27540,Kevin,356482,135483,1 +27541,Do Jae-Hyun,367882,573794,2 +27542,Party Goer #4 / James' Double,199575,1438817,12 +27543,Docteur Alexandre Arnaud Beck,10795,33161,0 +27544,Car driver (uncredited),2288,1220476,6 +27545,Storyteller,98644,9979,2 +27546,Pistolník,65904,227727,4 +27547,Yi Gwak,32158,17120,1 +27548,Lois Lane,49521,9273,1 +27549,Steve Talbot,97910,18802,1 +27550,Daisy Jane,384450,970104,2 +27551,Gaston Rieux,139176,1110364,2 +27552,Un jeune,98277,1849107,26 +27553,Hailey,25330,15274,5 +27554,scagnozzo di Spinetti,58611,1891735,6 +27555,Kenney,128081,1827243,13 +27556,Horn,142712,1326320,17 +27557,No. 14,28656,101475,6 +27558,Bulger - Ounce's Bodyguard,43903,34761,6 +27559,Le maire,55836,223234,5 +27560,Emily Turner,347127,1483781,4 +27561,Bud Frump,22682,1161040,5 +27562,Ryan Fox,256969,19197,6 +27563,Maurício,34588,1086110,10 +27564,Jong-Sae Hong,26955,86325,3 +27565,Tiger Lily,120672,13341,0 +27566,Lila Miller,182035,103500,1 +27567,Martin Schrammell,42537,940168,4 +27568,Metulskie,1655,18408,9 +27569,Javier,264729,1849922,19 +27570,Miss Mac Daid,115109,14686,7 +27571,Frank - Lockup Keeper (uncredited),14615,29267,33 +27572,Rachida,57816,226956,4 +27573,Gus,181533,1937,9 +27574,Marine at Airbase,227306,1394428,29 +27575,The Cheater (uncredited),47653,30194,11 +27576,Yoon Hong-ryeol,346646,1418580,13 +27577,Mao,53168,70437,3 +27578,,260094,67320,1 +27579,Newsreel Narrator (voice),256962,1314357,40 +27580,,188180,1034492,10 +27581,Paul,287587,452205,6 +27582,Detective,122677,103793,10 +27583,Dingle Dave Elf (voice),146712,1004890,8 +27584,Clay,335450,1154422,9 +27585,Alice Rickles,42532,3161,9 +27586,Sergej,260030,1424439,10 +27587,Todd Jordan,396152,1615806,2 +27588,Andrea Sakedaris,290365,232139,1 +27589,Mama Gibbs,22029,133586,5 +27590,Aasha,20507,86241,1 +27591,Keegan,70074,117642,4 +27592,Albie,6976,10505,8 +27593,James,335778,24607,8 +27594,Tina Travanti,336775,25884,7 +27595,Peggy O'Shea,59726,17026,6 +27596,Jason,28366,64436,8 +27597,Blush (voice),15906,2321,14 +27598,Town Hall Clerk,19971,436781,5 +27599,Himself,26486,23915,42 +27600,Andrei Khabarov,49009,2983,6 +27601,Elizabeth Spaulding,176867,81018,2 +27602,Brittany Berkowitz,369524,139310,12 +27603,Margie Carsen,14207,3019,7 +27604,Scientist,10176,64095,4 +27605,Makoto Konno (voice),14069,122468,0 +27606,Maureen O'Sullivan,139718,41516,3 +27607,Susanna Spagnolo,142320,88710,3 +27608,Frank Tasker,45679,10542,15 +27609,Ben Cortman,21159,22479,3 +27610,Mailroom Worker,38356,1318952,28 +27611,Jeremy,97630,182287,19 +27612,Sophia,89921,933330,4 +27613,Publican 5,107985,1278131,41 +27614,Princess Beloved (Attarea) (Babylonian Story),3059,29960,16 +27615,Officer,73943,209537,9 +27616,Edera,41054,25785,3 +27617,Henry Popopolis,66668,15234,1 +27618,,15776,1565328,23 +27619,Jack Bristow,120497,14868,2 +27620,Aunt Martha,24777,12430,1 +27621,U.S. Marshall,23823,58794,9 +27622,Parker,76203,1002306,35 +27623,,172004,70273,2 +27624,Bourgeois,128900,31200,31 +27625,David,5767,24483,2 +27626,Go-Kart Driver,160160,1158760,10 +27627,Grandpa,24554,9601,2 +27628,,122368,1298642,3 +27629,Savcı Nusret,74879,46065,2 +27630,Tommy,20718,28002,9 +27631,Tommy O'Toole,94811,5788,0 +27632,,51285,143739,9 +27633,Taylor,255160,1898240,26 +27634,Janusz Wieszczek,49009,38941,4 +27635,Toad Hop Director,205798,1183966,11 +27636,Michal's Mother,412363,583496,3 +27637,Carole,71732,59826,3 +27638,Freundin in New York,2204,22613,3 +27639,CPO Mervin Longnecker,156603,30005,2 +27640,Nyhedsoplæser,356326,1874721,13 +27641,Carol,74753,30141,5 +27642,Faik Bey,236041,1271296,2 +27643,Arjun's Friend,362150,1336997,19 +27644,Stormtrooper,330459,1728966,82 +27645,Maurizio Fiorello,167073,80661,16 +27646,Security Guard,133523,1901234,3 +27647,Georghiu,12089,24932,9 +27648,(voice),107811,1002409,12 +27649,Grandpa Cyrus Tatum Storr,120657,17753,0 +27650,Darlene,1599,21005,7 +27651,Ed Ramirez,59115,139868,4 +27652,Sergeant Milton,10915,40568,4 +27653,Capt. Charles 'Chuck' Baker (voice),16866,18918,0 +27654,John Randolph,112284,19550,4 +27655,Alan,35626,931642,1 +27656,Governor,42325,30279,11 +27657,Kapek,110525,985275,9 +27658,Norman,38389,76379,0 +27659,Madame Walter,118536,106109,10 +27660,Fernando / Odnanref,254435,1014926,0 +27661,Guy,197696,54041,5 +27662,Albert,89086,34008,42 +27663,Louis Farley,18273,12261,2 +27664,Roadblock Officer (uncredited),166221,2628,18 +27665,Minxie Hayes,11351,1340627,5 +27666,Daisuke Shima,61984,553939,6 +27667,Stormtrooper,330459,1728958,95 +27668,Bar Fly,197737,955691,39 +27669,Lexi Archer,264560,50401,2 +27670,Airport Girl 2 (uncredited),329440,1777437,29 +27671,Bass player in Lewis's band (uncredited),69,1485107,34 +27672,Himself,13956,106843,10 +27673,Moe Howard,85411,85142,0 +27674,Catrin's Landlady,340101,1228995,43 +27675,,3549,64124,12 +27676,Trish,109213,121809,6 +27677,JC,311764,591529,9 +27678,Captain Moisson,44631,122008,11 +27679,,337012,1267243,14 +27680,'Spike' McManus,33792,37446,2 +27681,Ted Lyons,43440,105018,5 +27682,,276123,1330013,8 +27683,Peggy Carter,211387,39459,0 +27684,Edna Ferguson,11643,87516,19 +27685,Joey,21141,101246,15 +27686,Himself,332827,1658600,19 +27687,Colorado Carson,28484,13579,1 +27688,Ray,344147,27763,0 +27689,Pi Patel (Adult),87827,76793,1 +27690,Johan van Ophuijsen,48231,1012903,20 +27691,Dr. Cal Meacham,831,12353,2 +27692,Dr. Morino,23628,15306,3 +27693,Himself,84318,74886,6 +27694,Bit Role,176867,980330,28 +27695,Citizen,24973,1671997,18 +27696,MP Officer #1 (uncredited),4820,98102,17 +27697,,36246,115659,7 +27698,Nick,28592,101242,5 +27699,Supervisor,156,3847,13 +27700,Teacher,14088,81852,11 +27701,Brad,35320,1457246,17 +27702,Dr. Robert Verne,31915,2962,1 +27703,Amerigo Ulderisi,43548,1871601,23 +27704,"Capt. Rankin, Hidden City forces",23331,33776,4 +27705,Boy,43984,1351405,6 +27706,Josh,339148,23821,1 +27707,Carol Lambert,90461,11495,1 +27708,Kim,66881,549056,9 +27709,Referee,307081,1502324,18 +27710,Helmut de Meringue,35016,1416110,11 +27711,Geraldine 'Jerry' Lane,116232,1209491,6 +27712,Bodhidharma,277968,1270705,31 +27713,María,329718,962249,6 +27714,,177564,39674,3 +27715,,38681,99520,11 +27716,Skender,25450,43299,6 +27717,Angela Yearwood,253310,965770,4 +27718,College Principal,55376,86019,8 +27719,Lady Caroline Ayrton,169726,3674,6 +27720,Alvise,82817,928935,8 +27721,Darla,301876,140527,2 +27722,"Anders Ellius, Cecilias man",60899,38127,4 +27723,Uncle Nick,367732,20405,1 +27724,Nurse,44754,59693,20 +27725,Glorf (voice),27042,97004,7 +27726,Rokan,62630,24607,14 +27727,Andrea Glenn,171308,7303,3 +27728,Laurent,82501,134514,6 +27729,Catherine Wood,28533,54941,3 +27730,Jan de Hoop,90231,1070388,2 +27731,Al Saïd,146216,219506,23 +27732,Detective,9885,1326332,5 +27733,Fergus Lamb,69035,3896,1 +27734,catcher,35016,1416137,35 +27735,Lydia Ots,46931,72484,4 +27736,,31418,584045,6 +27737,First Class Flight Attendant,258509,1456705,15 +27738,Adam,19103,29859,9 +27739,Borgmann,52475,146065,15 +27740,Dinossaura Cor-de-rosa,373397,1033632,2 +27741,,72733,1091275,9 +27742,Dr. Bennett,390059,96223,9 +27743,Dr. Na,116488,141548,5 +27744,To Chung-Chau,26005,74193,0 +27745,Firing Squad Leader,2080,59792,18 +27746,Angela,59249,229080,5 +27747,Galev,125521,83930,11 +27748,Police Inspector,1773,10806,6 +27749,Dr. Waylans,65650,52602,3 +27750,Christine,394645,552692,8 +27751,Capt. Walton,3057,55636,4 +27752,Chelsea,15261,78033,3 +27753,Gohan,39324,90496,2 +27754,Angus - 5 Years,14868,77716,6 +27755,Jane Harper,48333,45404,3 +27756,Joe Piper,343795,1488909,4 +27757,Räihänen,366249,226031,4 +27758,Petty Officer Anastasia Dualla,69315,52507,14 +27759,Kubilay,332534,1397249,11 +27760,Lilian Forrester,228034,9599,10 +27761,Hollis Bane,31773,8517,5 +27762,Paterson,370755,1023139,0 +27763,Paul Wilson,12637,73194,3 +27764,Velma,45752,86314,3 +27765,Sam Blake,338518,47652,0 +27766,The Fox (Voice),81684,207,2 +27767,,53688,929657,3 +27768,Himself - Newsreel Commentator,43346,142386,8 +27769,'Prune' Parsons,44087,5825,17 +27770,Gurkin,10760,35550,4 +27771,Hammer,183015,1166089,5 +27772,(singing voice),18843,151253,30 +27773,Inspector Fong,18725,44917,1 +27774,Man in Bath-House (uncredited),31411,32437,11 +27775,Un producteur d'ABC,332794,1860374,17 +27776,Martin Engler,133183,11803,4 +27777,Nude Girl,27349,1110579,17 +27778,Buzz Aldrin,38356,106843,33 +27779,Critterina / Marina (voice),44283,586496,6 +27780,Salvatore Giuliano,27523,98454,0 +27781,Minor Role,43833,104299,24 +27782,Gentleman in English pub,369885,1651430,68 +27783,Joanne La Marre,42298,14655,1 +27784,Bartender,214086,1714883,11 +27785,Lt. Francis Xavier Pope,117426,143280,1 +27786,Woman in Carriage,50761,32129,11 +27787,Inspektor Barth,6591,16818,2 +27788,Bartender,18472,19301,8 +27789,Kim,9056,119454,8 +27790,Sergeant,27635,8233,6 +27791,Elder Gutknecht (voice),3933,3796,9 +27792,Mrs. Tannenbaum,92285,1004885,6 +27793,Blaze Tracy,84772,931238,0 +27794,Reporter,43811,34818,73 +27795,Monsieur Victor,168031,14563,2 +27796,Capt. Tony Saitta,84425,38761,0 +27797,Paulo,387399,1849536,13 +27798,Aphrodite Girl,32657,209196,14 +27799,Mendoza,54523,50748,6 +27800,Mrs. O'Banyan,246917,1528491,11 +27801,D.H. Sligby,250332,133342,13 +27802,Pedestrian,68174,550471,8 +27803,Kuramori,282070,58604,6 +27804,MacRae,272663,96260,11 +27805,Centauri 7,41360,150194,2 +27806,Shigemasa Kodai Jr,391642,9717,6 +27807,Saitô,11838,552518,25 +27808,Toast the Knowing,76341,37153,6 +27809,Fräulein Rottenmeier,58757,228348,9 +27810,Chicken,69727,1134729,3 +27811,Hobbit Lover,2295,149670,13 +27812,Dama,268920,1754445,54 +27813,Head of Chernobyl Investigation Committee,319092,1637173,14 +27814,,46658,98489,4 +27815,Buddy Thornton,10917,56695,2 +27816,Well Wisher (uncredited),214756,1745921,80 +27817,Stacey Moore,288281,1878323,12 +27818,Skurge / The Executioner,284053,1372,6 +27819,Ruth's Cowboy Client,188161,1240490,38 +27820,Nebosja,11373,28392,4 +27821,President Obama,354287,1763044,26 +27822,Walter Pringle,76011,14831,2 +27823,Fei,338421,1626695,17 +27824,Pete,176627,194173,8 +27825,,262987,224208,3 +27826,Hamilton,76203,1213573,13 +27827,Herb Lee,63096,29719,2 +27828,Fratta,335051,1398324,9 +27829,Lene,12696,22687,0 +27830,Mr. Smiles,258255,56890,2 +27831,Prison Guard,354979,1636802,31 +27832,Dolorès Bougon,430058,79608,3 +27833,Corlie,27873,34535,1 +27834,Master Gau,67342,62423,0 +27835,Seo Jae-kyung,49190,141857,4 +27836,Danny Rowe,38920,70755,4 +27837,John Dillon - 1938,118889,18586,5 +27838,Herself,329690,43775,2 +27839,Aunt Phoebe - Mrs. Smiley,115109,8515,8 +27840,Jean-Claude Moulineau,42216,24366,4 +27841,Mr. Howes - Collector,87060,47009,14 +27842,Bishop,172475,151685,7 +27843,Caroline,47444,1068137,1 +27844,Lafe Gordon (as James Farley),61985,14420,3 +27845,Mandy Meyers,250275,137424,1 +27846,Dov,1991,16847,10 +27847,Young Stanfield,49500,26854,1 +27848,Bikini Beach Girl (uncredited),323675,1754140,56 +27849,Edward G. Robinson,294016,72873,6 +27850,Ella,5393,11863,3 +27851,Angèle Barbaroux,43900,564273,1 +27852,Marge Hawks,82929,27264,4 +27853,Mrs. Gerald Hayden,73348,3380,1 +27854,Young Clay,13483,2966,13 +27855,Blind Pew,26612,113,3 +27856,"Carla Hayes (segment 2 ""Terror Over Hollywood"")",41035,127353,2 +27857,Teacher,188598,1776757,13 +27858,Jim Chapman,27414,97721,13 +27859,Jodie,6973,101045,21 +27860,Lady Critics,245700,42998,61 +27861,Horse Auctioneer,186227,100763,19 +27862,Barbara Lamont,57103,16759,3 +27863,Round Woman,26810,124986,12 +27864,Rusty,11358,1432102,14 +27865,Strip Please Cop #1,15092,1895599,37 +27866,Sean,9953,60878,12 +27867,Crissy Lynn,8617,115126,16 +27868,Mannlig doktor,75229,135120,6 +27869,Mike Grogan,42683,1054532,7 +27870,Vena Ray,154371,197147,1 +27871,Monsieur Nadeau,41277,1091239,32 +27872,la nonna di Samantha,43211,1885522,8 +27873,,294640,131215,3 +27874,Greg,40807,124649,32 +27875,Mary's Mother,116232,2934,14 +27876,Spanky Ham (voice),36736,76245,0 +27877,Glenn Riordan,4938,40201,1 +27878,Hair Stylist,9968,61165,10 +27879,Brian,124470,1377399,6 +27880,Femme de Zacchia,37645,1615713,32 +27881,Lyla,92635,108700,8 +27882,Officer Ko (as Tin Chi Wai),45505,1173203,10 +27883,Emily,313922,1642952,16 +27884,Shing,31027,43661,2 +27885,Dave's Crony,294652,1883817,19 +27886,Harrison,242131,120708,9 +27887,Michael,155341,1136479,0 +27888,Mrs. Emily Pules,16378,46949,11 +27889,Race Announcer (voice),401164,145881,6 +27890,Kathy Jeemy,20825,32905,9 +27891,Matti,58391,89504,1 +27892,Mr. B,200511,10823,3 +27893,Reindeer shepherd,84944,1629875,4 +27894,,61904,1687632,9 +27895,Peppino,58074,94418,1 +27896,Siddharth's friend,158780,6500,3 +27897,Harry Berlin,163376,3151,0 +27898,Nacho,43114,136779,12 +27899,Tolly,49391,46300,4 +27900,Vicki,18072,36219,9 +27901,"Roger Wendling, Sarah's nephew",38769,103366,1 +27902,Leo,88375,10344,6 +27903,Nick Adams,48775,1266991,0 +27904,Bobby Charlton,62441,85065,1 +27905,Jenny,156326,35879,0 +27906,Dagda (voice),116711,521564,9 +27907,Kenny,15356,1128103,10 +27908,Armando Nieto,33273,1473729,14 +27909,Pete Solomon,72207,19839,7 +27910,Le Samourai,35110,113740,7 +27911,,277631,131725,4 +27912,,87204,558217,7 +27913,Vittorio Castanza,3577,5496,6 +27914,Tsumugi Miyamae,101752,146550,0 +27915,Debra Moynihan,13025,81095,0 +27916,Terri,12759,73618,3 +27917,Mr. Valentine,382951,10182,4 +27918,Inspector Hennessey,127812,84640,34 +27919,Erica,286521,143715,15 +27920,Dale Varney,283384,1232769,11 +27921,Himself,15258,87281,70 +27922,Manbok,25597,94000,1 +27923,Spanish Buzz (voice),77887,1117790,19 +27924,Young German Guard,24559,73978,9 +27925,Maria,77165,225392,2 +27926,Bernard,63681,33543,3 +27927,Sir Charles Eastlake,114155,1292,9 +27928,Catesby Jones,109475,747,1 +27929,Billy Pilgrim,24559,41278,0 +27930,Josefa Iturbide,78318,1467852,38 +27931,Old Marco,264397,1324062,9 +27932,Thomas Watson,67375,4958,2 +27933,Train Passenger,56154,88733,49 +27934,Detective (uncredited),6973,1114295,41 +27935,Chloe (voice),14405,69597,0 +27936,Anna Mauth,11204,57362,0 +27937,Serge,51971,145085,2 +27938,Kella,20941,10839,2 +27939,Haldane,85442,121360,10 +27940,Mr. Graham,200331,8975,0 +27941,,52360,1667949,38 +27942,Eve,239018,1212697,12 +27943,Stanley,14669,4250,3 +27944,Ravindran 'Rotlu',14467,126497,11 +27945,Richards Mutter,175339,37889,6 +27946,Psychic Woman,16083,79214,10 +27947,Gregory Deakin,77292,1318861,4 +27948,Tim,52859,1404180,26 +27949,Maks' Father,511,7115,9 +27950,Carlos Rojo,264525,220496,2 +27951,Mrs. Ashton-Ashley,87123,30214,6 +27952,Gingerbread Man / Rumplestiltskin / Headless Horseman (voice),810,12080,22 +27953,Carla,19294,15100,2 +27954,Petrie / Digger,339526,34982,3 +27955,Connor,345069,1286552,2 +27956,Miss Helen,340275,9780,2 +27957,Wally Becker,44087,1889634,13 +27958,Downtown Home Infant,10596,65809,19 +27959,Officer Paul Crain,220820,1168178,11 +27960,Infirmary p.o.w,227306,1394471,71 +27961,Rosemary McNally,107593,20624,7 +27962,Elderly man from brigade,49577,590127,2 +27963,Evelyn Braxton,379297,88161,2 +27964,The Grandmaster,284053,4785,4 +27965,Lighting Man,222220,1468578,10 +27966,Helen Donavan,43009,96498,2 +27967,Mr. Hardcastle,81120,590274,2 +27968,Augusta Hayes,41556,11850,8 +27969,Gracie Thompson,70476,40462,0 +27970,Deputy Dawg (uncredited),354979,1385641,78 +27971,Marco,64944,572237,2 +27972,Buttercup (voice),10193,60074,23 +27973,Captain Paul Stevens,24971,24363,0 +27974,Blake,10066,52037,6 +27975,Grace Williams,61168,6684,0 +27976,Woman Viewing House (uncredited),76543,579300,17 +27977,Julie,131689,1093517,6 +27978,Lissome Girl,69,53266,30 +27979,Jacky Ho Wing Kit,25655,586486,13 +27980,George Schaefer,50008,6355,5 +27981,Lai,377691,1439699,5 +27982,Gianni Viviani,58080,41063,2 +27983,Clementine Churchill,399790,8436,1 +27984,Lydia Koffin,101669,212154,3 +27985,Smoky,334557,80374,2 +27986,Wojciech Winkler,36402,6643,0 +27987,U.S. Attorney Sinclair,27381,9780,11 +27988,Inspector Flynn,26503,100427,6 +27989,Strabus,205939,1188323,1 +27990,Bernard Pons,76609,538398,4 +27991,Mark E. Desade,86643,1206206,7 +27992,Frederique,156015,18228,1 +27993,Ali G / Borat,9298,6730,0 +27994,Çarli Cevat,452606,97276,5 +27995,Charlie Goodrich,128669,144061,4 +27996,Schlepper,130233,13812,5 +27997,Angel,103201,36218,4 +27998,Kate Bosworth / Patricia Bosworth,43470,3380,0 +27999,Aurora Zamboni,43548,1033002,24 +28000,Jimmy White,377516,1398558,5 +28001,Adela,31299,73696,6 +28002,Gigola,82708,1828320,12 +28003,Agent Stipe,301729,230601,3 +28004,Buford Pusser,107262,6197,0 +28005,Lee Allen,2998,8229,6 +28006,Tarik,5494,61981,3 +28007,,38010,50659,15 +28008,Simons,55846,62501,17 +28009,Boots,251421,8255,0 +28010,Inspector Kamlesh,75745,494552,4 +28011,Sarah Noble,87293,10399,1 +28012,Lanar,121848,111991,11 +28013,Dvořák,18352,11720,0 +28014,T.J.,2830,147,4 +28015,Hideyuki Sonobe,168295,24548,1 +28016,Evita (as Rosana Soto),19827,2111,11 +28017,"Himself, Cameo Appearance (uncredited)",32552,4109,24 +28018,Kenichi Yamane,12561,72819,2 +28019,'Red' Giddings,183827,14001,7 +28020,Commodore Meta,140607,1728992,44 +28021,Kenneth 'Kenny' Taylor,42734,39757,1 +28022,Kristin,360249,1384976,8 +28023,Álmos,66926,125435,1 +28024,Sporty Lewis,921,14902,12 +28025,Jiri,61552,36730,2 +28026,JaQuandae,193893,1370799,25 +28027,Shane Gray,13655,85757,1 +28028,Bar Patron,411741,1862553,17 +28029,,229702,1314891,3 +28030,Prof. Elliot,50153,535270,2 +28031,Running Man,75162,1184819,16 +28032,"Elle, Susanne",8071,6352,1 +28033,Viuda (uncredited),122019,1026995,15 +28034,Mary,369567,256947,2 +28035,Shaggy (voice),12903,16418,1 +28036,Doug Henkel,175924,55199,10 +28037,Wife of rice shop owner,67342,592328,11 +28038,Seu Altamiro,180371,228023,7 +28039,Cemal,332534,145733,9 +28040,Shane,341077,15336,4 +28041,Secretary,9461,125128,15 +28042,Teklel Hafouli,76714,11195,9 +28043,Mária,436343,1750194,0 +28044,Oil Man at Meeting,55604,1005347,54 +28045,Nicole,43938,17188,6 +28046,Alyce Parker,159128,1121786,9 +28047,,402612,1637680,11 +28048,Afredo,62036,3281,6 +28049,Dr. Ashley Kafka,102382,20982,11 +28050,It,16791,1926,8 +28051,Roger McCall (as Meat Loaf Aday),156597,7470,1 +28052,Yan Shikun,264264,43661,1 +28053,Laura,116312,37841,6 +28054,High School Student (uncredited),345922,1635160,20 +28055,Heather,336004,1717271,32 +28056,Mac,104859,19767,0 +28057,On Camera Musician,198277,1424213,42 +28058,Douglas Madsen,40465,1297931,0 +28059,The Deev,54415,109670,1 +28060,Lebrun,13652,2970,16 +28061,Frank Devereaux,39048,108076,1 +28062,Pa Stockdale,19968,30849,13 +28063,Mary Cadillac,244316,1714270,12 +28064,Nicholas Carter,403570,1292552,11 +28065,Salubrious Gat (voice),86828,10713,17 +28066,Miller,369883,969332,7 +28067,Marcus,97618,54865,4 +28068,Parker Blackman,58467,80289,11 +28069,,28746,1326030,10 +28070,Jane Lagrange,5511,43814,2 +28071,Robert,390526,87954,4 +28072,Mrs. Martha Kildare,153162,14033,7 +28073,Road worker,88922,35452,19 +28074,Oskar Bergman,315362,74713,5 +28075,Charlotte Morris,17175,1920,0 +28076,Client #5/Trick,47186,552221,25 +28077,Capt. Gail R. Plush,37468,117742,7 +28078,Kalauz,33611,111058,1 +28079,Rabbi Marshak,12573,36546,14 +28080,Wilkie,74942,8655,5 +28081,Kuldeep,56901,130589,3 +28082,,53042,147101,2 +28083,Pappi,86829,7133,5 +28084,,452606,1740398,25 +28085,Gena Almada,370741,1314862,6 +28086,Burrell,169800,130768,8 +28087,Tina,71670,932095,29 +28088,Maggie,322443,33394,8 +28089,,77673,1664058,20 +28090,Mrs. Bailey,43526,99329,6 +28091,,324572,14469,4 +28092,Mrs. Silver,1599,3094,12 +28093,"Angel, acrobat",72032,103613,10 +28094,Vexi Salmi,32099,16778,1 +28095,Donny,34729,1213283,15 +28096,La nonna del bingo,53486,1029590,5 +28097,Quentin,241742,51965,0 +28098,Sarah Keller,47959,23709,2 +28099,Lisa Kristal,111479,45827,5 +28100,Horse Owner (uncredited),45800,1170357,15 +28101,Po,338421,236194,14 +28102,Ma Hatfield,268350,1317071,13 +28103,Terrified Woman,19989,212154,10 +28104,Anselmo,20221,590990,0 +28105,,265934,117654,9 +28106,Greg Trent,40633,47760,10 +28107,John Prentice,53864,32428,0 +28108,Purse Snatching Victim in Police Station,20444,32394,3 +28109,Marta,342684,566544,1 +28110,Eraser 1,339116,1347952,12 +28111,Griselda Vaughn,95874,89731,2 +28112,Roy McLean,39982,12950,0 +28113,Lola,152653,59807,0 +28114,Jet,428687,1776844,22 +28115,Johnnie,21955,62036,0 +28116,Le colonel psychiatre,72279,565404,11 +28117,Sean Ackerthwaite,224204,1270453,6 +28118,Young Woman,35113,63271,15 +28119,Hairdresser,20,2319,6 +28120,Theatre Patron,5123,1781329,42 +28121,Sketch - Corny Collins Council,2976,1752324,47 +28122,Motel Manager,101325,1560969,22 +28123,Bergmann Hassl,79362,586676,12 +28124,Ulderico,419522,9241,17 +28125,Mrs Renata,48145,246347,3 +28126,Policeman on witness stand,46421,136128,8 +28127,Man in Bombay (uncredited),110887,21510,18 +28128,Gardini,39413,76858,5 +28129,Viridiana,4497,37505,0 +28130,,180162,55265,5 +28131,Clarence,147815,585374,13 +28132,Grandmaster VIP,284053,1795311,15 +28133,Assistant to Kutuzov,63304,1190346,9 +28134,don Diego,338438,33543,1 +28135,Marité,39415,1625133,10 +28136,Soldier,68737,583052,18 +28137,,25626,1094209,54 +28138,Pilon,79372,12147,0 +28139,Yajirobe,39102,65510,5 +28140,David Fielding,44001,20501,0 +28141,Lili Oblonsky,96724,1795828,42 +28142,Tara,30680,85143,7 +28143,Jimmy Olsen (voice),13640,21402,9 +28144,Ester Hershagen,80059,32729,0 +28145,Harry,213755,1578280,6 +28146,Randy Jensen,17258,21625,0 +28147,Soo-Jin,362974,125076,1 +28148,Tiffany,30780,944353,8 +28149,Gabe's Friend,17483,81960,14 +28150,Stewardess,47959,1426037,32 +28151,Dean,329289,1436124,8 +28152,Shamira,22182,1895080,11 +28153,Gabriel Hartwicke,24341,44883,3 +28154,Jenny Balsam,140489,1493117,7 +28155,Roy Teler,62768,61660,9 +28156,Himself,47426,141672,0 +28157,Detective Kelly,22307,3015,7 +28158,Dora,40252,115591,5 +28159,Giuseppe,65718,45036,3 +28160,Landlady,25983,62001,8 +28161,Press Agent,153,1773,5 +28162,Soldier,1724,76973,25 +28163,Student #2,244786,1503848,39 +28164,Trixi,98612,1317694,3 +28165,Deputy Brewer,53949,111986,29 +28166,Le conteur fou,52555,544569,2 +28167,Raphaël Sieg,121793,23388,6 +28168,Viktor Konstantinov / Muukalainen / Viljo Ronkainen / Henri Lillqvist / Apollo,100594,232287,1 +28169,Mamma di Marta,42892,73866,6 +28170,Dealer,71120,1872242,16 +28171,Taco Boy,170279,1152396,15 +28172,Jaisingh (Drifter),161179,35742,3 +28173,Disciple of Pak Hok Pai,182127,1440327,24 +28174,Irwin Owett,36361,14835,4 +28175,Leopard Deliveryman,40258,1123089,4 +28176,Stripper (uncredited),293660,104458,37 +28177,Sitki,271954,1380696,5 +28178,Town Gossip,10299,126912,22 +28179,Himself,376391,57756,6 +28180,Venezuelan Military,329865,1810153,69 +28181,Zafron's Wife,107146,1156765,9 +28182,Armenian Protest Leader,332286,165422,11 +28183,Mr. Pinky / Principal / Harriman F. Spritzer,409447,52601,10 +28184,Assistant Commissioner (uncredited),28000,93742,62 +28185,Old Shirtless Man,16131,79428,20 +28186,Bert,11547,35768,2 +28187,Deirdre,16083,15555,1 +28188,Miami Hotel Waiter,98349,1017357,7 +28189,Himself,211411,1788312,5 +28190,Angie,290764,1522168,11 +28191,Maurizio,160844,141114,0 +28192,Posse,165718,1276789,1 +28193,BOPE Officer,1724,1366372,56 +28194,Encargado gasolinera,123359,1102265,6 +28195,Rebecca,3962,34390,3 +28196,Tackaberry,22682,164785,12 +28197,Agent Brandt,74561,930223,4 +28198,Papà di Romolo,46128,71140,7 +28199,Runjuan,26687,96011,0 +28200,Jeannette,64968,72590,0 +28201,Group Captain,49609,82488,9 +28202,Tang Fung's girlfriend,49199,130645,8 +28203,Chief of Police,37368,78850,4 +28204,Miss Jenkins,227717,1390016,11 +28205,Wong,14830,80122,1 +28206,Mick Jagger,239566,212768,9 +28207,Logger,335970,1717910,25 +28208,Le chanteur,1818,32323,12 +28209,Red Queen Girl,45522,1436025,17 +28210,Featured 'Carmen' Dancer,47959,1426036,29 +28211,Susie,103332,105831,10 +28212,Toni,90120,97621,4 +28213,Herself,13649,76594,16 +28214,Louise,10041,62362,3 +28215,Empleado fábrica (uncredited),42502,1026994,16 +28216,Felice,317114,55635,3 +28217,Bill Denny,32044,18364,0 +28218,Simon,339408,1344361,25 +28219,Ann (uncredited),80168,1073274,15 +28220,Juror,18569,1108688,42 +28221,Jack Hanson,23964,90475,15 +28222,Sally,354832,851784,3 +28223,,53128,1031166,5 +28224,Zofia,356191,1137860,8 +28225,Harry's Mother,27230,119227,7 +28226,Emily Taylor,335145,3130,2 +28227,"Bob, Bell Captain",15788,78779,3 +28228,Brian,16455,388,5 +28229,Nicolas,2861,16923,5 +28230,Pierre,445,6018,4 +28231,Angel (uncredited),339408,1622096,39 +28232,Himself,284296,21355,18 +28233,Mario,253235,1795363,25 +28234,Herr Schloder,8948,36688,4 +28235,Pro Owner (as David Stiers),57215,28010,14 +28236,Claire Keen,4960,1812,3 +28237,Nanboku Tsuruya IV,45384,58449,4 +28238,Herself,336691,1547691,6 +28239,Cleo,118889,669208,40 +28240,Sarah,5040,40617,2 +28241,,286789,17844,14 +28242,,342163,96429,1 +28243,Dr. Gunst,400552,39908,9 +28244,Mape,32099,108861,14 +28245,Younger Doolittle,18569,1466148,14 +28246,Girl #2,104391,52365,2 +28247,Bob Cisco,128270,1054304,44 +28248,Margit,82501,5470,1 +28249,Dirk,75880,119542,7 +28250,Lady Divine,25625,10369,0 +28251,Irène,78340,35137,0 +28252,Paul,312669,1385043,8 +28253,Pioneer Woman,73194,8829,29 +28254,Clara Dreyer,67509,9824,0 +28255,Finn,262958,1401545,18 +28256,Roger,256347,27030,5 +28257,Dance Judge,157343,98972,11 +28258,Christine Martin,10484,24475,2 +28259,Ramu,81477,1087785,7 +28260,Otto - 3d hurt worker,47404,29142,8 +28261,"Kanzo, the uncle",88271,1423501,5 +28262,,141635,83858,6 +28263,The Duke of Buckingham,41609,100589,10 +28264,Eddie Ryan,92389,3087,0 +28265,Rozalin Focker,693,10400,4 +28266,Pig Patron (voice),9502,57741,18 +28267,Hollywood Runt (voice),9982,61414,23 +28268,Yugi Moto (voice),366170,1124535,2 +28269,Ted Mulligan,102949,1086994,1 +28270,Letaillec,286512,28787,4 +28271,Tommy Cooper,265934,59081,1 +28272,Yaichirô Hazama,34019,584143,3 +28273,Billy Stone,171759,116446,0 +28274,Uncle Dave,66881,1399611,19 +28275,Soldier,39276,119000,8 +28276,Petulia Danner,42634,1666,0 +28277,Wikus van der Merwe,17654,82191,0 +28278,Richard Pryor,139718,9309,5 +28279,German soldier,8429,54944,17 +28280,Vince Everett,15697,21457,0 +28281,Giovanni,3870,5567,10 +28282,Zindrowski,19996,85421,11 +28283,,31412,1623584,11 +28284,The Vixen,79054,1298296,1 +28285,Doctor,22404,31209,5 +28286,Black Cat,204994,83915,2 +28287,Detective Daniel Myerson,108282,39753,9 +28288,Joe,118490,1541358,3 +28289,Jack O'Keefe (uncredited),72638,11496,20 +28290,Judge,339994,171948,12 +28291,Walter Gropius,83209,113999,3 +28292,Álvaro Silvestre,167707,1079280,1 +28293,Spanish Eva,55604,32431,9 +28294,JoAnn,23966,85144,3 +28295,Kali Pratap Singh,20132,42803,0 +28296,Ville Herman Lauttala,117499,1206937,1 +28297,King Kong,293167,236696,12 +28298,Ashfaq,314389,1510557,9 +28299,Sandro,12605,16809,3 +28300,Alex,13734,47336,3 +28301,Sæðari,72596,1114538,23 +28302,Catherine,4516,37628,2 +28303,(uncredited),30637,44350,16 +28304,Waleed Ahmed,172008,814200,5 +28305,Ozawa Taicho,17895,25466,1 +28306,Broker's Man,80596,12727,17 +28307,,12206,591497,24 +28308,Sheriff,44936,1384918,4 +28309,Blenda Bergman,41764,11917,29 +28310,Sidney,14976,94476,9 +28311,Seamus,84352,930764,17 +28312,Nicole Chang,28270,4090,1 +28313,Young Gladys,337751,56757,4 +28314,Jack Finney,16175,2250,13 +28315,,96106,239666,17 +28316,,4580,36513,7 +28317,His Father,51358,10530,3 +28318,Emily,77067,937372,7 +28319,Hilary,84340,139310,2 +28320,,73144,277105,0 +28321,Marcus,161073,586191,1 +28322,,64499,239948,6 +28323,Larsen,11912,580191,4 +28324,Harry James,175171,1227384,5 +28325,Giulio Gatti-Casazza,98328,94070,6 +28326,Carolyn Bell,53999,156875,12 +28327,Carmelita Rodriguez,48202,150945,8 +28328,Rand City Bartender,144471,14786,10 +28329,Andrew,186606,1750938,25 +28330,Grandmother,199615,125382,2 +28331,Don Haskins,9918,6164,0 +28332,Bucksy,198993,85286,6 +28333,Mulgrew,25528,15857,2 +28334,Ian Martin,24874,92775,2 +28335,Donna Hawthorne,87516,577478,18 +28336,Hu Zongxian,455043,1195945,10 +28337,Russell,157898,32137,4 +28338,Khan Sahab,22241,6497,0 +28339,Philippe à 7 ans,22618,1294171,6 +28340,John Hull,378441,588550,5 +28341,Ana,390357,1684814,8 +28342,Billy,167810,110014,0 +28343,,43548,100941,26 +28344,M. Delacre,78789,25854,4 +28345,Bardha,82624,1127913,4 +28346,Dr. Riordan,262528,101878,12 +28347,Ma Teng,62071,88351,0 +28348,,140509,124402,3 +28349,Waiter,32489,117029,14 +28350,Suor Daniela,161545,1496182,21 +28351,Flemming,293863,9560,3 +28352,Sir Edward Markham,55152,82554,5 +28353,,140231,85450,1 +28354,Mad Dog,42182,54694,7 +28355,Azura / Purple Merfairy,13285,74361,9 +28356,Amaury Jr,70666,1863880,5 +28357,Michał,153781,489961,0 +28358,Lucius Cornelius Sulla,34469,194,1 +28359,Allison - Sasha's Mom (as Tami-Adrian Greorge),14123,153940,19 +28360,Hot Girl (uncredited),245891,1417533,33 +28361,Receptionist,78177,176986,22 +28362,,257831,549110,18 +28363,Himself,63144,1466531,38 +28364,Lieutenant Te,63081,1007656,3 +28365,Link Larkin,409447,1031685,4 +28366,Gazda Rajko,255647,38000,12 +28367,Georges Randal,55370,3829,0 +28368,Cannon,117509,1686803,6 +28369,Victor Hoodlum,8292,1239341,14 +28370,Alberto,167935,548835,1 +28371,Squires,29542,167208,8 +28372,Hogarth,41073,85345,5 +28373,Synth,90120,938198,2 +28374,Belinha's Friend (uncredited),28293,148621,21 +28375,Jack Hill,120212,656,5 +28376,Teacher,29161,1760083,18 +28377,Buzz Chambers,73933,21290,0 +28378,Groupie 2,170759,52635,8 +28379,Anna,10740,2227,0 +28380,Ayperi,332534,1419822,1 +28381,Herself,320589,82270,13 +28382,Sir Christopher Hatton,43327,33484,6 +28383,Giles,18405,78150,2 +28384,Jack (co-pilot),45726,12311,4 +28385,Jiang,45452,1192984,6 +28386,Kwatak (voice),233423,38565,6 +28387,Vince Penn,200505,5724,9 +28388,Jesse,352164,86653,1 +28389,Bowling Alley Employee #3,179826,1404698,32 +28390,Nelly Schneider,142712,132181,6 +28391,Monsieur Larroque,110323,147043,5 +28392,Officer Kaplan,193893,172156,62 +28393,Servant,76757,1394347,44 +28394,Miss Dorothy Brown,32489,21277,2 +28395,Zwillinge Lea und Mia,308174,1888499,36 +28396,,62741,235923,0 +28397,,256930,9192,3 +28398,"Tigress, Thai druglord",127329,112985,10 +28399,Gohan,126963,571225,26 +28400,Nelsinho,21752,130048,5 +28401,Cherish (as Emily Everhard),14123,116442,12 +28402,Cordell Hull,16442,96721,12 +28403,Sanitäter,308174,1888489,22 +28404,Mrs. Dowd,281291,4160,3 +28405,Neville Landless,84718,118802,1 +28406,Ethel Montague,75564,171561,4 +28407,Поленька,409082,929562,8 +28408,Sister Charity,56533,6865,8 +28409,Dr. Monae (voice),172385,1005852,20 +28410,Amy Wally,360284,1511236,14 +28411,Kirk,540,1826586,24 +28412,Olavo,154441,1135308,10 +28413,Cleo Sertori,65256,145247,1 +28414,Camryn Barnes / Apolla,21481,87570,1 +28415,Burlington Potluck Musician,356752,1841549,72 +28416,Der alte Bief,73775,16943,6 +28417,Don Calò,403450,1278815,6 +28418,Muru (voice),25913,12688,6 +28419,Immigration Officer (uncredited),4688,1671499,25 +28420,Ingbjørg,57438,226170,1 +28421,Virgil Weaver,266425,1313141,14 +28422,Warehouse guard,125257,1559756,11 +28423,Perez,17306,1567841,12 +28424,Apartment Tenant,45013,1818030,44 +28425,Blonde (uncredited),147876,40174,11 +28426,Old Teethless Man,49853,1648775,18 +28427,Angela,297265,221981,1 +28428,Magic Show Audience Volunteer,228647,1144349,34 +28429,Justine,14765,48406,1 +28430,Stormtrooper,330459,1728971,97 +28431,Balthazar (voice),44896,5048,10 +28432,Adam Szalinski,11425,69395,2 +28433,Henriette,43878,556944,0 +28434,Sidney Talmadge,259997,1539,7 +28435,Klavdiya Matveevna,65142,240595,5 +28436,Shirley Pianatowski,118900,104411,5 +28437,Mère enfants gare,98277,1849115,38 +28438,Newscaster,10710,79086,40 +28439,Hitka,126090,559493,4 +28440,Kunta Kinte,400174,1628680,1 +28441,Hyppolite,45184,4073,9 +28442,Jed James,267931,76543,9 +28443,Luke Fargo,70192,18803,0 +28444,2nd Detective,72460,101453,6 +28445,Laura,255869,4771,2 +28446,Union Soldier,109491,1495344,22 +28447,Mike,4953,4239,1 +28448,Waitress (as Alexis Sterling),336004,969630,34 +28449,Pascal Montambault,271826,38529,8 +28450,,74674,1445133,34 +28451,Lieut. P T. Moran,15807,1193376,18 +28452,Bridesmaid (uncredited),44115,233922,28 +28453,,313646,1241085,1 +28454,Lipstick-Face Demon,49018,73417,13 +28455,Delegate,285181,1029800,12 +28456,Psychologe,130739,144346,7 +28457,,110001,1382977,19 +28458,Inghean,286873,1356630,11 +28459,Thomas,27937,99294,6 +28460,young Ip Man,182127,1140044,18 +28461,Monica Teasdale,43882,2896,2 +28462,Rachel,164331,85178,1 +28463,Paul,63578,311811,4 +28464,Max,431093,33294,5 +28465,Dad,30155,1240490,7 +28466,Coretta Scott King,205361,37158,3 +28467,Luke,50875,21042,12 +28468,Plainclothesman,28421,120445,40 +28469,Simón,82265,240202,7 +28470,Billy's Wife,76163,934869,13 +28471,-,29128,104219,10 +28472,Olivia Farmer (voice),9948,60735,9 +28473,in Paris,54898,213561,2 +28474,Patrick Machado,13733,24891,0 +28475,Raffart,10484,38499,9 +28476,Soldier #4,57201,307885,54 +28477,Prison Doctor,20806,83827,9 +28478,Frank,281418,1159,8 +28479,Himself,244001,115128,0 +28480,Dr. Stephen Kildare,153162,17756,5 +28481,Batou,315837,90060,2 +28482,Mrs. Baildon,56942,225241,2 +28483,Canon Owens,28533,25816,6 +28484,Lydia Connors - Ch 14 News Anchor,37686,13024,18 +28485,Nina,48937,141558,3 +28486,Wesley Rush,272693,1223726,1 +28487,Tinhorn Burgess,60547,18391,8 +28488,Mrs. Merdle,47084,70633,10 +28489,French Canadian Babe,26123,1004839,18 +28490,John Alexander,291413,15424,0 +28491,Ethel Ann,13957,4090,0 +28492,,221732,127891,9 +28493,Detective,40087,1232023,11 +28494,Marco,41171,10582,9 +28495,Cybil's Drummer,58467,1704733,34 +28496,Tomato Thrower (uncredited),43688,31771,12 +28497,,206574,1339114,3 +28498,Sally Cameron,125673,8829,4 +28499,"Zhao Di, Young",12276,1339,0 +28500,Receptionist,371181,1498652,17 +28501,Driver,323675,24969,38 +28502,Gina,440597,1517252,5 +28503,Linda,20196,182416,9 +28504,Angelo,13162,559660,9 +28505,Mousqueton (uncredited),41609,164974,15 +28506,French Girl in Paris,109716,1078453,38 +28507,Sean,13802,47703,19 +28508,Himself,9951,117261,9 +28509,Reverend Mueller,45324,1532567,13 +28510,Alison,16412,59183,4 +28511,Wei Ling Soo's Assistant,229297,1278555,10 +28512,Dientes,254869,1423086,40 +28513,General Munson,2080,75720,33 +28514,Mack,183412,57286,4 +28515,Fred Durst,4551,29783,17 +28516,Property Man,222220,554381,4 +28517,Jill the Wigmaker,290762,47468,8 +28518,Rita,31111,72737,0 +28519,George Staub,12483,15234,1 +28520,Sir Paul Deverill,169726,40159,1 +28521,Ben Stride,26502,1009,0 +28522,Uncle Adam,27629,2782,13 +28523,Older Woman 1,370755,1650111,20 +28524,Howie the Deaf Guy,408272,77090,11 +28525,Steve Emerson,127812,76974,2 +28526,Man Shopping for a Dress,42623,84325,13 +28527,Ozzy (voice),411221,1700952,5 +28528,Louis Galt,87936,67449,2 +28529,Protection One Operator,145135,1393312,17 +28530,Ivy,19116,83218,4 +28531,Sparks (voice),10193,157626,27 +28532,Mr. Brand,218778,39659,10 +28533,Deputy Jackson,10011,62008,15 +28534,Barbara Beaurevel,106016,25787,1 +28535,A Father,14589,1422458,59 +28536,Kate,28320,3196,2 +28537,Artie Getz,156597,1427089,5 +28538,Ronaldo,356191,1345428,4 +28539,Maggie,345922,99206,8 +28540,Colin,17223,1286340,1 +28541,Chen,344906,1808610,19 +28542,Father Roger,254193,119232,6 +28543,Laura,63326,965770,6 +28544,Jack Murphy,86920,15693,4 +28545,Edwards,96702,33007,10 +28546,Tchude Strongman,2172,110104,8 +28547,Traci,262522,1225488,3 +28548,Mack Fanning,44545,141400,8 +28549,Debby,50318,15917,9 +28550,Pedestrian (uncredited),284052,1768738,58 +28551,Dancer,11172,1781167,33 +28552,Sherry,16839,67207,4 +28553,Micheal,374618,1554763,8 +28554,Prentiss,2989,29375,5 +28555,,211561,57490,3 +28556,Mürsit,126560,1381273,4 +28557,Pepper Brooks,9472,23532,5 +28558,Mayor,2001,1145892,29 +28559,Glorf (voice),27042,96999,2 +28560,,248747,582512,4 +28561,,33611,1043254,13 +28562,Ship Captain (voice),810,19274,13 +28563,Jason,19719,41088,5 +28564,Willard,183825,1000083,38 +28565,Gregors Nachbarin,37405,48179,4 +28566,Hetal B. Patel,58051,55063,3 +28567,Dragon,33338,66717,1 +28568,Ed Olson,188468,74875,4 +28569,Achamma's Advocate,134474,585112,12 +28570,Bobby Smith,82237,14874,7 +28571,Mom on Picnic Table,154537,1199482,16 +28572,Stormtrooper,330459,52938,64 +28573,Matron,267935,143307,6 +28574,First Cop at House,53407,1633799,8 +28575,Aleksi Koskela,41142,125627,5 +28576,Lieutenant,89086,1469281,39 +28577,Nick Perez,24801,64888,9 +28578,Detective Sergeant Charlie Bancroft,27045,15968,1 +28579,Lucy Benton,144475,96141,6 +28580,Prostituta asesinada,210653,1721484,8 +28581,,133783,1476851,13 +28582,Backwoodsman (uncredited),52360,95666,23 +28583,Obi-Wan,214756,570785,45 +28584,Allen,120657,30215,6 +28585,Barshee,43829,41755,7 +28586,le sans-abri,64357,13689,7 +28587,Becky Fayden,127521,1084851,8 +28588,"Gerda Weiss, Lenzis Frau",167424,1817266,9 +28589,Ben,226701,65561,1 +28590,Himself,53380,120941,7 +28591,Himself,128625,1087514,0 +28592,Marladot,242683,13819,6 +28593,Harry - coroner chairing inquest,30014,7074,7 +28594,Mary Jane,66881,549054,6 +28595,Trancoso,216369,560281,7 +28596,Mr. Calloway,37311,93624,8 +28597,Russo,24094,97449,6 +28598,Zeus' BMX Gang Member,310135,1716347,44 +28599,Herself,140554,1707831,23 +28600,Dr. Blasco,8088,102226,21 +28601,Mike Fink,110123,41214,1 +28602,Mickey Mouse,67130,2106,2 +28603,American P.O.W.,227306,1394455,55 +28604,Camilla,241258,5887,2 +28605,Mrs. Whack,27970,8232,8 +28606,Maggie,80596,554132,13 +28607,Marty,285,4030,17 +28608,Rosalie,28455,39709,3 +28609,Mike Tobacco,16296,80245,0 +28610,Herbert Pocket,121674,89823,13 +28611,Franca,58011,224944,3 +28612,Yukio,76170,1179243,5 +28613,Viktor,95140,27810,11 +28614,Carla,384682,1180099,19 +28615,Bertram,78028,1189039,17 +28616,Carrie Dreyer,9286,33336,6 +28617,Frederick 'Robbie' Robbins,29705,20502,1 +28618,Cop,21036,109746,3 +28619,Dr. Mittal,264644,59214,8 +28620,Bruno - cook from Turin (as Claudio Volontè),155597,44987,6 +28621,Librarian,76681,102951,7 +28622,Kenny,30361,39115,13 +28623,Professor Paul Evans,28847,31896,0 +28624,el Vasco,26864,96479,3 +28625,,105352,1448274,3 +28626,Advogado de Vitória,117534,1902446,19 +28627,Minions (voice),38055,15033,17 +28628,Julie,330947,1486488,14 +28629,Travis,316042,76103,4 +28630,,23452,1248335,5 +28631,Henry Gray,42476,92355,12 +28632,Don Pasquale,57996,148590,2 +28633,Meg,38027,1762432,23 +28634,Yeong Gook,396535,1255881,3 +28635,Aaron age 15,44115,60467,9 +28636,Martín,140,1284938,17 +28637,Natwar Shah,96147,42208,13 +28638,Charlene,10744,13241,5 +28639,James,69346,123318,1 +28640,Philharmonic Audience Member,5123,26290,56 +28641,Himself - Model,97724,1388657,8 +28642,Peri,123601,1078376,1 +28643,Barbara Olson,35558,79024,8 +28644,Le ramoneur (voice),22504,1458873,4 +28645,Kamnan Dua,2805,134731,9 +28646,Maxine,28894,102325,5 +28647,Natalia,43231,40954,0 +28648,Marco Ravicchio,186630,12259,0 +28649,Jacob Goodnight,226140,61903,3 +28650,Neil,13022,65731,2 +28651,Waitress,17956,1170986,28 +28652,Tommy,108812,164973,9 +28653,Young Hazel,222935,1672068,21 +28654,Ticket Taker,108282,1542578,24 +28655,Cab Driver (uncredited),31773,978055,64 +28656,Man with Michelle,7547,24529,18 +28657,Bully Kid Tubby,15213,175834,12 +28658,Sheriff Sanchez,31390,52416,3 +28659,Herself,149883,109869,0 +28660,Nancy,82519,10130,4 +28661,Brianne,262841,1372369,11 +28662,Daddy Derek,325712,1084537,3 +28663,Mortal Atmos,205584,1535057,31 +28664,Mallesh Goud,80276,141695,3 +28665,Министр-администратор,27935,1190345,3 +28666,Le voisin d'Isabelle,53404,1664180,13 +28667,Bibble / Fungus 1 & 2,13285,74359,1 +28668,Kempai Officer,127560,83283,24 +28669,Agent Banner,34729,155577,10 +28670,Faust,114242,1005461,0 +28671,,1421,1723434,19 +28672,Kamal,21567,101860,8 +28673,Doctor Alain,331962,1706137,28 +28674,Speed Talker 2,414977,1149880,19 +28675,Milly,76940,128039,0 +28676,Dwyer,84352,601407,16 +28677,Rix,16839,5294,3 +28678,Pen,33253,110390,1 +28679,Narrator,288193,13726,1 +28680,Debbie,209263,357551,5 +28681,Adam Paris,186227,29259,4 +28682,Tony Derrick,157152,42747,0 +28683,,16017,1421102,5 +28684,Tom Higgins,425774,1707934,42 +28685,Orlando Watt,5060,40941,1 +28686,,430985,18794,2 +28687,DJ Jazzles,10521,459980,26 +28688,Cutter,183258,6104,6 +28689,서연 (Seonyeon),267466,1296075,3 +28690,Stripper 2,280617,1851688,22 +28691,Capt. Peter Carlin,267497,184953,4 +28692,Manager of the Beavers,90465,121364,12 +28693,Lukashka's mother,207636,8832,6 +28694,Françoise,64357,82119,2 +28695,Fergus,17622,2282,0 +28696,commissario Tozzi,52913,544725,6 +28697,Direttore Carcere,60014,1502726,14 +28698,Evil Edmonds - The BeeLzeeBOPS,48967,14324,5 +28699,Committee Counselor,1723,20749,8 +28700,Shyam,56901,88440,7 +28701,Thomas Carlson,9756,58913,2 +28702,Rhoga (voice),35177,3138,2 +28703,,92989,1719829,10 +28704,,88953,235642,18 +28705,Sarah Kopek,30921,167999,8 +28706,Mr. Bast,13374,1045630,5 +28707,Will,10694,15310,7 +28708,Rudolf Kask,321303,137447,17 +28709,Audrey Aldrich,18495,19957,4 +28710,Barmaid,14452,100373,9 +28711,Ngai Kwun,11647,1002925,9 +28712,Miriam,16151,79705,17 +28713,Léon,44522,114347,10 +28714,,273096,1328328,8 +28715,Tosia,72421,2343,1 +28716,Motel Clerk,226630,21091,4 +28717,Astronaut Howard Sherman,36530,589742,16 +28718,Gabriel 'Gobby' Broome,43385,3754,4 +28719,Alex Brenner,280092,1465699,5 +28720,Spider,84348,81577,12 +28721,Taoist priest,67342,83560,8 +28722,Soul Winters,72710,1273232,12 +28723,Stefania,30535,27271,1 +28724,Don Pepe,42502,180286,4 +28725,Barbara White,70247,52312,2 +28726,Dracula,37211,101606,2 +28727,Ghoul,58664,1418266,16 +28728,Marion Whittaker,16899,74158,5 +28729,Du Huai,107891,1420036,12 +28730,Laura,173499,969570,3 +28731,Brooke Duncan,78403,162541,1 +28732,Carolyn Stoddard,62213,56734,7 +28733,,46567,49458,10 +28734,Lena Powell,267483,1066415,10 +28735,Gretchen,257176,175658,0 +28736,Alfredo,35554,120129,2 +28737,Ismere,93492,101118,12 +28738,,81463,1295822,8 +28739,Vicki,28681,101622,3 +28740,Priest,173456,129329,17 +28741,Racetrack spectator,17820,121323,8 +28742,Carey Fuller,14164,53185,8 +28743,Åse Seierland,14078,76333,5 +28744,Le copilote de Philippe Cousteau,332794,1271727,23 +28745,Ski Chinski,16214,83037,3 +28746,Sailor,76203,60881,31 +28747,Gangsteri,62900,1498235,18 +28748,Kolyan/Dimon,57809,143623,4 +28749,L'arrogante,2002,6548,13 +28750,Convict in Yard,26376,96061,77 +28751,Susanna's father,211879,1342808,4 +28752,Holbrook,107028,10427,1 +28753,Surgical Nurse,52520,75532,16 +28754,Ruth,62694,30214,11 +28755,Dante (as Stephen Cyrus Sepher),336004,74513,15 +28756,Ernesto,435707,234532,4 +28757,Dad,28710,69310,0 +28758,,210079,1337985,3 +28759,British Soldier,1116,1612444,65 +28760,Ellis,331588,141034,7 +28761,Narrator,10946,15152,2 +28762,Sheriff Jasper Calloway,325173,18461,1 +28763,Raymond Parfitt,340101,52888,17 +28764,High Strung Chicken,21250,215961,14 +28765,Robber,58251,39104,6 +28766,Zombie (uncredited),82654,1676101,35 +28767,Adam,392660,55614,1 +28768,Tierpfleger,302118,11953,1 +28769,Jean Deyo,80941,120306,1 +28770,Femme parking,35025,1670734,21 +28771,Alisa,13058,78063,15 +28772,Pedro,330171,1604,6 +28773,John Bennett,72105,13240,0 +28774,Himself,85910,53396,5 +28775,Mrs. Delgado,266285,1459353,15 +28776,Himself,97724,1014881,2 +28777,Martha Fairon,131898,24815,2 +28778,Jennings,273481,8536,3 +28779,Dance Instructor,14072,1033172,7 +28780,Young Charles Stoker,86825,1271787,14 +28781,... Мороз,428398,80999,0 +28782,Narrator (voice),662,9960,0 +28783,Jacqueline,268174,76181,10 +28784,News Reporter #2,62046,1330723,21 +28785,Doctor Santano,40978,38914,7 +28786,Shari Rabinowitz,6557,993689,15 +28787,"Lt. Morris, Rocket Pilot",29290,21814,8 +28788,Anita Garcia,80592,589727,4 +28789,Gothic Villains,18093,1738908,14 +28790,Dr. Christopher Lundgren,40218,5,1 +28791,Sven Norson,36634,3338,7 +28792,,220005,1204941,0 +28793,Oliver,79935,138324,10 +28794,"Mr. Nomizo, employee at rival supermarket of Morita's",111398,144797,6 +28795,Marco,49712,238068,21 +28796,Giant Man,14611,19508,6 +28797,Club Dancer,45013,1818043,56 +28798,Cherry,332936,77313,7 +28799,Alacrán,289198,1663354,5 +28800,Zev Gutman,302528,290,1 +28801,Dan,45610,203421,29 +28802,Gloria Soloway,91607,140355,6 +28803,Maria Selka,98328,125554,3 +28804,Brisbane Goon #1,13777,75258,11 +28805,Dorothy Drew Burton,23107,89528,0 +28806,,318359,1490334,5 +28807,Sadie,343173,583600,3 +28808,Detective Walker,383140,21798,4 +28809,Himself / Dub Voice / Projectionist,21449,1243,10 +28810,Professor Piers Olsen,267852,1388523,2 +28811,Bandit,31899,119546,33 +28812,Yutaka Miura,50759,142405,4 +28813,Mayor Thomas Sapsea,84718,2930,8 +28814,Hamza,44099,130221,6 +28815,Museum Guard,17258,1869985,30 +28816,Turnkey,99909,984870,21 +28817,CIA Analyst,59961,936402,9 +28818,General Joe Greller,1724,68278,7 +28819,Mary,156981,64237,4 +28820,Yvon,445,6020,9 +28821,Knut,11930,46216,2 +28822,Stookey,47312,123900,14 +28823,Sid (voice),16460,34737,6 +28824,Captain,76203,6908,29 +28825,"Dr. Andres Contreras, Jr.",283686,169625,4 +28826,The Doof Warrior,76341,1272941,13 +28827,Margaret Barnell,9968,18686,1 +28828,Western Union Clerk in Kansas City,43812,1128944,61 +28829,Aunt Etta,124115,13816,7 +28830,James Rogers,14613,141530,0 +28831,Detective Jenkins,51250,3137,9 +28832,Ryan Banks,82134,19143,0 +28833,the Lonedale operator,130450,89521,0 +28834,George,229297,155222,9 +28835,Zhanlin Ma,16074,79165,4 +28836,Emma Miller,343369,135532,2 +28837,Fighter,71120,1872251,30 +28838,Danny,373541,1551692,4 +28839,Harris,25918,85361,6 +28840,Soccer Player,90616,1692090,25 +28841,'Pappy' Cole,207178,30849,7 +28842,Gigan,19336,82879,16 +28843,Brenda,16186,1470068,9 +28844,Pippa McGee,24123,69122,0 +28845,Ned Land,2965,29077,10 +28846,1st Soldier,74879,1001791,22 +28847,Colonel Pflueger,12412,27627,15 +28848,Mary,83015,1834954,30 +28849,Brown Hen / Fluffy Hen (voice),18843,145345,21 +28850,Brianna,74830,17442,1 +28851,,59147,55915,7 +28852,Belinha's Friend (uncredited),28293,139603,17 +28853,Joni,117120,57576,4 +28854,Sonia's Mother,37926,119123,9 +28855,Agent Lori Romano,29695,98174,10 +28856,Karcsi Szabó,13616,125444,1 +28857,UK Additional Muppet Performer (voice),145220,1504915,55 +28858,Ugo,107035,5676,0 +28859,Mrs. Mitchell,107593,85997,14 +28860,Daniel Cane,98289,132720,12 +28861,Jason,24050,4451,0 +28862,Can-can dancer,3023,1580380,8 +28863,Ranger Earp,132859,1003892,9 +28864,Finansministeren,56858,578953,10 +28865,Father Patrick Dunn,146233,41247,11 +28866,Larry King,76211,103927,9 +28867,Celsa,42402,176873,1 +28868,Madam v masérském salonu,18352,1182688,16 +28869,Chuck Malarek,16082,663,8 +28870,Kid (Intermission),125344,1556158,7 +28871,Special Ed Teacher,64720,1117505,10 +28872,Don Hilarión,122525,1028289,0 +28873,,295273,1174366,14 +28874,Prete,61314,52657,2 +28875,Chuck,252916,120211,9 +28876,Young Michael,13072,106814,1 +28877,Neil,43923,1719598,26 +28878,Himself,201419,1536690,9 +28879,Alina,57809,107727,13 +28880,Tommy Trainor,33117,16002,2 +28881,Peralta,59117,228874,1 +28882,Julia Weigert,332759,587208,6 +28883,Lieutenant Lewis,92809,1338403,2 +28884,Patty,60422,3416,3 +28885,Officer Clayton,352372,88547,4 +28886,Jennifer,31216,1184853,16 +28887,Carol McCain,18638,88834,2 +28888,,410634,1685979,3 +28889,Reetta Geisha,414547,1678516,2 +28890,Poker Buddy,32657,1432102,53 +28891,Neil McCormick,54093,25130,0 +28892,Keith,23516,239579,0 +28893,Spectator (uncredited),4982,1368458,75 +28894,J.K.,268174,55148,3 +28895,,63215,81969,40 +28896,Luk,40346,1395247,5 +28897,Momma Cat (voice),325712,1879680,7 +28898,Francesca,66700,128224,3 +28899,Reporter,206197,144211,34 +28900,,283711,112563,1 +28901,Office building security guard,2463,1172955,9 +28902,Vinnie Bradshaw,46885,108890,5 +28903,Margaret,414977,1197512,10 +28904,Sophie Nordh,24023,1199647,3 +28905,George,38546,21624,2 +28906,"Himself, others",282268,8930,1 +28907,Jacki,28026,11150,0 +28908,Marianne,92251,992822,2 +28909,Geoff,84336,93209,12 +28910,Rami,317214,1412400,2 +28911,Zozo's brother Dani,49220,590856,7 +28912,Carol,301334,105494,11 +28913,Signora Nardi,99261,24300,4 +28914,Jennifer,277558,1461486,6 +28915,Sun Goddess,31821,158077,12 +28916,Nili,6391,6704,5 +28917,Randall Morgan,87428,166029,5 +28918,Judi Fielding,118716,940175,3 +28919,Dr. Barden,97051,37947,4 +28920,Survivor,57597,8954,6 +28921,Martin Santiago,243683,1397768,15 +28922,Shaggy,12902,16418,1 +28923,Daniela,44933,1170260,5 +28924,Angelo Pappas,257088,5538,4 +28925,Gas Station Attendant,137528,1518470,10 +28926,Dr.Hamm,64454,23340,5 +28927,Georgina Decrais,70192,104412,4 +28928,Nurse Kline,41171,115597,49 +28929,Blaze,13807,66717,0 +28930,Lesley,73565,57278,6 +28931,Vivi,70666,1397417,40 +28932,András,352917,125684,1 +28933,Carney Manservant,6972,1673453,34 +28934,Kovalski,14765,52346,3 +28935,The Guy,12279,109,22 +28936,President Woodrow Wilson,49007,4029,13 +28937,Giraud's Cousin Clarissa,61109,89732,15 +28938,Katherine McKay,40807,84223,2 +28939,Himself,40873,1403241,6 +28940,Howarth,83995,123906,15 +28941,French Porter (uncredited),28571,1176507,18 +28942,Tommy,187596,1597992,20 +28943,Marie,370755,1650121,5 +28944,Sir Charles Warren,24486,67028,11 +28945,Nurse,260947,1304141,11 +28946,Another Young Man,328589,55585,34 +28947,,65048,25780,5 +28948,Thaba,339530,1151469,7 +28949,,258384,1367886,24 +28950,Griggs,60935,948533,16 +28951,Jean-Paul,14419,78479,3 +28952,Stewart Goodman,11321,72864,11 +28953,Son Gokû / Son Gohan (voice),303857,90496,0 +28954,Pascal Al Fariq,257088,54024,10 +28955,Edward Fazio,40983,95785,2 +28956,Radio Announcer,285400,45582,16 +28957,Texan Driver,268920,1159596,62 +28958,The Rat Queen / Frau Eva,49852,47468,3 +28959,"Miguel, le père de Marco / Marco's father",64944,77195,3 +28960,Wong Tai Kwong,46114,1164789,3 +28961,Arsen,78464,1063493,0 +28962,Webb,104427,980450,5 +28963,Mac,34729,76512,5 +28964,Dr Kim Yip,220724,1135194,8 +28965,Eva (voice),32202,109010,2 +28966,Mom,131027,935725,3 +28967,Xiao Ly,88922,240169,2 +28968,German Cop,145220,1844,31 +28969,Floyd,15068,77880,3 +28970,Harry 'Big Fella' Johnson,4932,151529,13 +28971,Sandra,2196,22969,6 +28972,Cheung Wing-Sing,182127,64895,1 +28973,Brown,76203,59233,7 +28974,Marianne,10311,2728,2 +28975,Irma,59704,229664,6 +28976,Deputy Smalls,294272,1669340,13 +28977,Liliana Corsi,82080,105326,5 +28978,Peter Wetzler,11012,53,4 +28979,Mother Superior,147815,545011,10 +28980,Mme. Garadoux,66897,224429,6 +28981,Waif (uncredited),31773,199468,22 +28982,Banshee (uncredited),19995,236696,70 +28983,полицейский,330878,236758,13 +28984,dresseur,35016,1416139,36 +28985,Lucciani,59118,5445,7 +28986,Monks,64928,134614,12 +28987,Peggy / Piggy / Constable Ho Ka Po,37984,131256,0 +28988,Darnell,13280,74354,2 +28989,Cop with Baton,50775,89615,6 +28990,,79025,146793,5 +28991,Alice Hill,26849,96300,1 +28992,Sam Murdock,44000,3796,1 +28993,Arina Rodionovna,63584,237525,2 +28994,Capt. Danny De Mortimer,4820,20510,11 +28995,Inspector Atul,75745,85683,3 +28996,Ángela,47211,583707,0 +28997,Okada,101929,1200874,7 +28998,,19812,40300,20 +28999,Mike,17825,82304,0 +29000,Wing Fat,21449,129509,5 +29001,The Witch,23378,40389,0 +29002,Gaya Singh,28805,86022,6 +29003,Valerie Cruz,233490,97470,1 +29004,Liz,78177,583275,16 +29005,Vincent,344120,469462,3 +29006,Benny,265208,225479,10 +29007,Bob Pearson,82684,76314,6 +29008,Margot Weiss Goldman,221135,199,3 +29009,Gaspare Pisciotta,27523,4968,2 +29010,"Un client chic de ""L'ange Gabriel""",68822,114972,22 +29011,Des,30934,97171,12 +29012,The Junkie,344120,1497333,11 +29013,Ashley Harvest,122662,111373,5 +29014,Homely Girl,31899,1120315,39 +29015,Dave,110146,40477,0 +29016,General Shanker (voice),68179,1748,15 +29017,Beth,50725,116277,15 +29018,Dr. Robert Knox,52203,5,0 +29019,,51285,143740,10 +29020,Young Tucker (uncredited),105981,30219,9 +29021,"Otto, Shuuichi",46492,134629,2 +29022,Albert White,259695,25665,11 +29023,Himself,374460,7657,17 +29024,Bunker Soldier,209112,1289444,88 +29025,Foot Soldier Rivera,1381,1066472,12 +29026,Reed Callum,24801,113927,2 +29027,Second Cop,53406,143578,6 +29028,Mac Macauley,94874,27996,2 +29029,Mr. Banks,297265,4581,0 +29030,Émile,13652,34616,14 +29031,Anthony,343934,1094568,10 +29032,Jay Follet,358199,227,2 +29033,Captain of the Whaler,51367,10525,1 +29034,Warden (as Ed Stanley),26801,33705,9 +29035,Himself,157117,236082,6 +29036,András,128043,1086316,0 +29037,Molly LaRochelle,69784,48958,2 +29038,Lubotas Mutter / Lubota's Mother (as Frieda Richard),28480,48062,10 +29039,Dad at Carwash,11247,1453555,65 +29040,Danielle,54093,42705,5 +29041,Judge Stanton,250332,89729,9 +29042,Yakuza Henchman,4291,552607,14 +29043,Beach Girl 1 (uncredited),44943,1110282,38 +29044,Burrai,48805,1898626,14 +29045,Deacon,4982,1454066,65 +29046,Tadpole,38415,57593,3 +29047,Norma Jean (voice),9836,2227,4 +29048,Forest Nymph,315855,1592932,46 +29049,spacciatore in moto,11048,1008488,15 +29050,Helen's Third Admirer at Party,157898,1190897,43 +29051,Sheriff Frank Wilson,42619,8233,7 +29052,Young Bill Lauder,321039,90744,8 +29053,Lamp,153272,1873605,9 +29054,Young Max,15316,1127977,5 +29055,Faucuius,49398,24807,6 +29056,Office Girl,49524,112266,13 +29057,Miss Ohio,28325,100435,8 +29058,čárkovaná,6079,136806,13 +29059,Drouyn de Lhuys,78318,1088566,36 +29060,Albert Rua,11056,3753,3 +29061,Chilango,102629,61861,14 +29062,Lonnie,137093,71530,6 +29063,Simon Donnadieu,52713,16927,0 +29064,Joaco,43432,1024017,4 +29065,Howard Hughes - 9 Years Old,2567,84518,24 +29066,Choi Kyung-suk,24822,120901,5 +29067,Annie,429200,1879646,9 +29068,Mrs. Ruth Judlow,48156,94032,3 +29069,Hutch Bessy,41608,18841,1 +29070,Silvana,50531,1321064,4 +29071,Baby,265208,2283,9 +29072,Babu,102632,1666878,10 +29073,Mrs. Harris,73430,2929,8 +29074,Regina Domizia,222517,1144300,7 +29075,Tim,32298,149921,6 +29076,Santiago,1164,258,2 +29077,Shirley Temple,16135,79510,15 +29078,Dimas,12811,8600,4 +29079,Sonny Silverton,19809,81846,2 +29080,Trinity,27561,60972,10 +29081,Mr. Ahn,321191,138336,12 +29082,Bit Part,75363,115606,17 +29083,Monsieur Denissovitch,26152,146500,24 +29084,General Keith,115109,33698,14 +29085,Babysitter,377362,1355834,5 +29086,Kevin,5915,58225,12 +29087,Prosecutor Oh,408620,1607301,10 +29088,Margaret Rogers - First Victim,55784,1146713,10 +29089,Randall,89591,47944,6 +29090,,69310,77303,24 +29091,Nick,41234,86356,11 +29092,Fred/Scooby Doo,45752,15831,0 +29093,Nursing Home Administrator,284293,1465486,10 +29094,Solveig,330171,93564,7 +29095,Nathaniel Farmer,14047,1392592,9 +29096,Col. Hewson,131351,91420,9 +29097,Detective Kang,54555,123820,4 +29098,Janet,47906,21525,7 +29099,Sheila Philips,56809,148135,2 +29100,Herbert von Krolock,3053,30120,6 +29101,,41121,125527,0 +29102,Flashback Dancer (uncredited),222872,99759,9 +29103,Harry Jellenik,9987,61508,6 +29104,Nora Trinell,56558,30155,0 +29105,Plata,1721,15140,2 +29106,Padre Clara,80280,225127,23 +29107,Horace Femm,31592,2925,4 +29108,Martha,16791,20240,6 +29109,Louisa Creed,42066,97039,4 +29110,Frici,338312,587301,13 +29111,Martha Kroner,29113,103175,4 +29112,Peebles,86920,4973,2 +29113,Edouart,31993,14691,39 +29114,Santacana,481,6540,7 +29115,Ed Weihenmayer,96011,11357,4 +29116,Grim Knight Dancer,243683,1398114,57 +29117,Mrs Rawlings,18072,137471,15 +29118,Abuzer Yayladali,49834,145331,0 +29119,Vietnamese Man,2080,1353657,55 +29120,Detective in 'A Thief's Fate' (uncredited),22943,89603,36 +29121,Anne Terry,33112,95622,0 +29122,Communications Officer,52454,1630274,26 +29123,Martin,11376,1334077,6 +29124,Higgins - Paul's Valet,169355,34416,10 +29125,,338079,1269623,1 +29126,le commandant,286512,20285,8 +29127,Shamus McCann,121052,2264,1 +29128,Oliver,29136,1128320,9 +29129,Winston,17317,1194995,12 +29130,Max,119816,44651,1 +29131,Teacher,242224,79718,13 +29132,Dancer #3,13442,202061,10 +29133,Ramón (voice),63498,127245,0 +29134,La prof de signes,152989,1179881,13 +29135,Grace,62694,10607,3 +29136,Karl,226672,1102423,13 +29137,Une invitée,55853,551797,16 +29138,Michael Perry,82631,25072,10 +29139,Policewoman,53459,100753,7 +29140,Himself,407806,102649,4 +29141,Chow Mo-Wan,844,1337,0 +29142,Insp. Ho Sheung Sang,2463,940339,0 +29143,Alev El Quamar,226693,585494,1 +29144,Janitor,121636,198203,13 +29145,Giuseppe,10659,59333,7 +29146,Melinda,27739,98871,2 +29147,Hampton,74527,82863,6 +29148,Arresting Police Officer,59678,127005,6 +29149,Admiral Monti,112885,5832,4 +29150,Roland Cain,47186,17782,2 +29151,Kai Koss' mor,24821,111535,3 +29152,Edna Wallace,242631,85362,9 +29153,Emma Woodhouse,244182,1228264,0 +29154,Dr. Rank,42457,12689,2 +29155,Herself,120729,87513,1 +29156,Mike's Gang Member,90616,1740111,41 +29157,Russian Ambassador Gregory,53860,81934,6 +29158,Cafe Owner,13058,1589702,38 +29159,Clerk (uncredited),264644,88933,22 +29160,Kabal,1877,2719,1 +29161,(voice),28090,199147,50 +29162,Petit Omar,17295,1077248,7 +29163,Father O'Shaughnessy,198652,214700,6 +29164,Beth Sladen,58903,37600,1 +29165,Minister,457,6262,12 +29166,,430985,70441,5 +29167,Olick,31221,1717,4 +29168,Preacher's Wife,414910,1334014,3 +29169,Inspector Wong,18763,26786,4 +29170,Chummy,342213,1380840,6 +29171,Hysterical Passenger,45726,8829,16 +29172,Le photographe Olah !,32390,150792,9 +29173,Mr. Groin (voice),213110,10872,2 +29174,Maurice Conchis,33228,5401,1 +29175,Jeff,333385,1674309,14 +29176,Deputy Harris McAllister,18616,71673,5 +29177,Binbasi,49834,145415,6 +29178,Faith Henley,84772,397765,1 +29179,Meta,113743,148669,5 +29180,Peter,13849,34551,1 +29181,Barby,74525,85358,3 +29182,Leche,63066,131867,0 +29183,K.T.,43114,83440,11 +29184,Roy's Friend,356752,1841502,23 +29185,Henry Williams,108224,121018,0 +29186,Flamingo Diner Patron,356752,1841551,75 +29187,Lieutenant John Guild,14589,32430,6 +29188,Marvin,184866,179958,1 +29189,Otis Wilhelm,10011,61996,2 +29190,Miyori,24154,84028,5 +29191,Toilet Paper Prisoner (voice),83201,150869,5 +29192,Ethan,22476,6719,5 +29193,Mrs. Godfrey,27629,32431,19 +29194,Drug Dealer,11338,16178,8 +29195,Johnny Vohden,21948,2176,1 +29196,"The Boy (segment ""The Reluctant Dragon"") (voice)",22752,1050724,6 +29197,photographer,75262,1190398,15 +29198,Cuco,17893,967162,10 +29199,Angela,296225,97674,1 +29200,Joe Brown,239566,1120,4 +29201,"Jim, the scrap dealer",46436,191009,12 +29202,Cameo,396643,130991,7 +29203,Sidhwani,52696,1040951,5 +29204,Jeff Jimson ('Texas'),43319,15699,3 +29205,Ash,23964,89025,10 +29206,Courgette's Mother (voice),393559,72286,10 +29207,Colin,156015,1653,2 +29208,Snake Ink,1579,17690,15 +29209,Piero,116236,97684,2 +29210,,210079,1337984,2 +29211,Captain Hammer,14301,51797,1 +29212,Mutter,1561,17591,2 +29213,Gabbi,24963,203751,5 +29214,The Count,20650,86400,0 +29215,Jack,14457,54455,0 +29216,Waxey Armitage,52864,34036,5 +29217,Schlomo (teenager),1986,20436,0 +29218,TV Spokesman,387399,159280,9 +29219,Twitch,198600,16002,2 +29220,Master Mutaito,14164,8874,7 +29221,Commissaire,42825,105007,8 +29222,Sonia,19623,77234,1 +29223,Alan Berger,32124,108923,13 +29224,Minor Role,43806,1031424,47 +29225,Mrs. O'Finlay,30411,106246,6 +29226,Lena,24392,142253,5 +29227,Felipe Guadalupe Constacio Delgado Santa Cruz de la Verranca,80592,30264,2 +29228,,20934,86793,7 +29229,Mitch,290714,1328,1 +29230,Peter,209263,18271,8 +29231,Morgan,33280,76611,3 +29232,Jim Hall,336775,71198,11 +29233,Villager,266285,1459819,46 +29234,Matti Takkunen,20164,89507,1 +29235,Vito,232731,227199,0 +29236,Manuel Da Costa,268212,30832,8 +29237,Mr. Fellows,48207,1211858,21 +29238,Aunt Carmen,140814,1099009,4 +29239,Five and Dime Manager,69,51456,25 +29240,Secretary,32577,1763856,14 +29241,,58611,228156,23 +29242,,57458,1581032,4 +29243,Cassandra Barber,134201,158011,3 +29244,Officer Parker,264644,1232769,6 +29245,Lois Schwartz,301368,2859,11 +29246,Drunk Cell Mate,345922,1815372,44 +29247,Lisa Burnley,38157,123660,1 +29248,Klara,342765,1447195,3 +29249,Gen,87952,45400,0 +29250,Nissel Stermer,128140,1161084,8 +29251,Susan Pierce,11058,133252,4 +29252,Chauffeur Nikola,98277,1849127,50 +29253,Shirley Yang,364324,482101,2 +29254,Maria,8882,72780,2 +29255,Officer Chris Stanley,43228,175608,15 +29256,"Riccardo, figlio di Lo Turco",56068,1326410,11 +29257,Paul Nathan,37517,64162,3 +29258,Massive Man,147106,14834,7 +29259,Warrior,424661,1706743,12 +29260,Mitchell,14881,41279,7 +29261,Mr. Gordon,53950,1002848,8 +29262,Chet,28340,100488,4 +29263,Red Sox Fan (uncredited),49524,1593122,32 +29264,Brunhilde,42512,1093537,4 +29265,Nicolas,10268,64545,8 +29266,Mr. Wolcott,41903,1087345,8 +29267,MajWilliam Spence,257377,42840,7 +29268,Kevin,84333,5375,4 +29269,Undertaker,223655,120151,11 +29270,Peter,39995,93518,0 +29271,Linda,46695,1185413,3 +29272,Lee Chan,90956,16103,1 +29273,Geronimo Jr. / Cyborg 005 (voice),127544,122654,0 +29274,Jacko O'Finlay,30411,106247,8 +29275,Carrie,1807,19200,5 +29276,Trey,18722,91839,23 +29277,Dr. Peters,28155,193849,7 +29278,"Leandro (segment ""Dona Fulana"")",211166,1095901,3 +29279,RUC Officer,84336,96522,18 +29280,Robert,334538,540,3 +29281,Marguerite Collins,36519,143560,3 +29282,Narrator,15916,111965,0 +29283,Detective,16175,79913,19 +29284,Deacon,14423,87118,4 +29285,,12412,39390,23 +29286,Sune,35304,93239,5 +29287,Insp. Tarr,27450,20243,16 +29288,Sota (voice),146381,4757,8 +29289,Isabel,54396,938750,9 +29290,Himself - Interviewee,76142,10017,6 +29291,Translator,83599,7708,0 +29292,Stolen Car Man,27381,44762,20 +29293,Gisèle,779,11588,2 +29294,Leïla Al Bezaaz,125623,976274,6 +29295,Elizabeth,35895,2769,2 +29296,Florian,49850,556732,15 +29297,Ives,96089,5247,4 +29298,Grace Bridges,86608,7663,3 +29299,Jhon,136752,1208796,9 +29300,Masseuse,146238,1611780,16 +29301,Boy,24973,6008,53 +29302,Young Butler / Cop,50775,21305,4 +29303,Anthony - baby,52034,237180,13 +29304,Kazaf,17457,20372,5 +29305,Anna,431244,34408,2 +29306,Aurelia,34469,176358,5 +29307,Andrea,343934,1386113,12 +29308,Mom,28969,10223,1 +29309,Philippe d'Aunay,79892,24759,3 +29310,Frankie Bonner,31118,44766,8 +29311,Amy,32893,170880,2 +29312,Earl Sykes,31146,1841262,17 +29313,Commander Chan,11636,120725,18 +29314,Himself,43065,63550,6 +29315,Bárbara,85543,932377,2 +29316,Tatiana,60281,1164595,4 +29317,Bit Part,18651,1014834,69 +29318,Barman,16659,127142,14 +29319,Sanne,15776,937651,2 +29320,Ondine,38448,5203,1 +29321,Dee La Duke,13655,40680,7 +29322,Paramedic,27381,4955,22 +29323,Dance Partner of 'Sweetheart' in Nightclub,26376,1329667,28 +29324,Bradley,246917,80054,8 +29325,Algernon Montcrieff,241302,62231,1 +29326,Piano's Owner,27925,240596,6 +29327,Sergeant Condell,425774,1707874,17 +29328,Patrik,70874,1846377,5 +29329,Col. McLane (uncredited),43522,84640,62 +29330,Mitsuo Yoshimura,134350,235241,10 +29331,2nd Officer,23750,1115,16 +29332,"Howard Webb, Chief of Wonder Pictures",104556,980450,4 +29333,Emma,298751,54716,5 +29334,Herself,27637,1724704,49 +29335,Militia General,339408,1502998,20 +29336,Antonio Scannagatti,63178,132190,0 +29337,Jose Paco Bell,17287,98334,7 +29338,Janice Long,10274,10875,7 +29339,Reeves,22404,121095,12 +29340,Mor,199374,1455078,11 +29341,Abigale,33642,151604,3 +29342,Dennis Hully,103432,167367,17 +29343,Vina Leaf,42734,5826,2 +29344,Reporter,339994,1593377,33 +29345,,84774,86752,3 +29346,Emily,29798,104913,7 +29347,Waitress,25919,1503715,4 +29348,W. Somerset Maugham,56135,2435,5 +29349,John Masefield,30374,133086,6 +29350,l’assistant-réalisateur,42021,64524,5 +29351,Himself,84827,1211888,2 +29352,Lee,48838,138161,14 +29353,Boneyard Sims,194722,20899,6 +29354,Ted Blue (uncredited),10004,61839,17 +29355,Caleb,253235,1496672,17 +29356,Gen. Van Buskirk,36089,34726,5 +29357,Jim Lancaster,20806,25536,2 +29358,,409903,86663,2 +29359,Lawrence,257450,1701867,12 +29360,Betty Braley,229221,1081270,2 +29361,Herself,27637,1724703,48 +29362,,106155,1278726,9 +29363,Trudy Joplin,82,2038,4 +29364,Marcia,38303,1902796,15 +29365,Teng Bochang,14539,1174455,4 +29366,Juliano,227932,592370,2 +29367,Ed,319396,1210787,5 +29368,Luc,82495,94067,1 +29369,Prisoner,108017,122600,7 +29370,Roland,346443,1482160,6 +29371,Gennie,7459,16718,13 +29372,Tucker,128437,2646,6 +29373,Miles,387399,138771,2 +29374,Péclet,4443,37308,6 +29375,Sam Farmer,256969,11512,4 +29376,Bors,42664,16420,3 +29377,Naim,41187,1004821,3 +29378,Lucy Blake,377170,144403,2 +29379,Shiver / Queen / Rayla The Cloud Queen / Troll / Wife #1 / Eric (voice),15906,246007,1 +29380,Nurse,119694,2395,7 +29381,Ron Decline,16378,7171,6 +29382,Wesley,128081,1094133,8 +29383,Tommy,381015,1588873,10 +29384,,274131,3754,1 +29385,Amy Wheeler,80468,76414,4 +29386,Leung Yuen Ting,2463,25248,2 +29387,Chuck,186869,1067,6 +29388,David Hobbscap (voice),49013,571731,16 +29389,,347835,16644,4 +29390,Nurse Rita,29101,1515475,10 +29391,,92060,50726,12 +29392,Gisela Wegmeyer,290911,23180,1 +29393,Prime minister's wife,189151,35643,14 +29394,Puja,146270,1123855,3 +29395,Oscar Dumasi,13542,204210,15 +29396,Eliza Millward,30496,1254650,12 +29397,Ethan Brand,73700,4941,1 +29398,Francis,40252,110498,3 +29399,Brown,424488,1257573,42 +29400,Olga,170689,1080195,14 +29401,Christian,8332,55172,6 +29402,Sumida's mother,98631,20707,6 +29403,Voodoo Dancer,243683,1398062,40 +29404,Historielærer,23289,4457,6 +29405,Dr. Samson,340027,1829370,13 +29406,Peggy Pauline,71825,63914,9 +29407,Brenda,36992,1485182,8 +29408,Palmberg,23964,540,1 +29409,Vinnie Botts,297853,1530360,35 +29410,Draven Nogais,140472,89691,5 +29411,Carmen Luisa,80717,590878,2 +29412,"Peter, the majordomo",27003,12153,8 +29413,Scrubwoman with ladder,74753,84404,11 +29414,Paramedic,78403,935287,8 +29415,Teen / Beach Party (uncredited),156700,1842183,33 +29416,Chief Wan Gong Wu,107891,1178947,8 +29417,Eve,227094,1289925,7 +29418,Adam,77930,61363,2 +29419,Cole,126889,1384511,12 +29420,Primary School Teacher,52850,1241137,8 +29421,Steve Miller,90406,40380,1 +29422,Norman Taylor,245168,6969,8 +29423,Gelsomina,265226,1524906,0 +29424,Edie Cohen,13972,23959,4 +29425,,38269,1818055,27 +29426,Tante Berthe,44522,48999,9 +29427,Jerry Bingham,30941,125650,18 +29428,,29299,420943,4 +29429,Shaniqua Johnson,1640,18284,24 +29430,Cliff,145668,1686423,8 +29431,russell brand,312149,59919,1 +29432,John Franklin,77949,202360,19 +29433,Charmaine Van Sant,9890,60019,16 +29434,Ann Goode,86241,9805,1 +29435,Isabelle,344039,17696,4 +29436,Leonidas at 7 / 8 yrs,1271,963118,13 +29437,Bluey May,42989,94838,6 +29438,Ammunition Factory Clerk (uncredited),103938,14419,9 +29439,Tikva,6391,55051,6 +29440,Chico,7210,5646,2 +29441,Encarnation,86472,30664,9 +29442,Mammy,72856,1194427,4 +29443,Dick Dennis,375082,6951,2 +29444,Young Jessica,84228,1082351,7 +29445,Teacher at the computer room,292625,1758609,21 +29446,Screaming Teacher,23367,18342,47 +29447,James Whyte Wragg,62143,1213672,16 +29448,"Sung, Oriental Cafe Manager (uncredited)",413232,16103,13 +29449,Ivy Walker,6947,18997,0 +29450,Harlan,28480,100899,9 +29451,Rocco,28366,64896,4 +29452,Roman / King Webster,62670,19654,4 +29453,Shimi,412363,1165003,1 +29454,Benedikte,126250,4458,4 +29455,Andie,172785,11705,1 +29456,Marie,946,14360,5 +29457,Desk Cop,4413,1371296,34 +29458,Chuck Woodruff,365942,1015340,39 +29459,Cindy,33789,176776,3 +29460,Steven Tyler,69560,19184,8 +29461,Mrs. McCarthy,304372,41249,15 +29462,Beth (voice),28275,52404,5 +29463,Istvan,14558,140652,5 +29464,Mr. Haskell,30022,2437,6 +29465,Carlota,107287,1808858,9 +29466,Local Girl (uncredited),108812,1468833,13 +29467,Kathir,66224,237989,0 +29468,Miss Viola (voice),65759,45586,16 +29469,Pub Regular,32904,1157295,9 +29470,Sheriff,332079,83623,19 +29471,Nick Dunbar,55728,3229,0 +29472,Karl,210052,1630633,6 +29473,Sheba’s Mother,1259,37053,12 +29474,The American Client,1690,1216133,11 +29475,Colin,32577,18025,2 +29476,Phaen,14818,592538,7 +29477,Ossi,23619,1167895,11 +29478,Caroline,339994,454973,6 +29479,Bettleheim,18352,235668,8 +29480,The General (uncredited),157843,27287,41 +29481,Yard Sale Attendee,91679,1782580,19 +29482,Dee,49199,1615008,14 +29483,,163077,1144914,4 +29484,J.J. Slattery,90932,8729,4 +29485,Alexander Cooper,218778,1198286,2 +29486,Duval,285908,207823,6 +29487,Erik - Age 3,96011,1013929,2 +29488,Attorney,52122,27733,2 +29489,Arm,287170,1353679,4 +29490,Sister Williams,88036,37158,4 +29491,Bond Trader #3,30361,1083128,11 +29492,Police Sergeant at Jail (uncredited),33025,33362,15 +29493,"Doña Beatriz, madre de Lucía",366860,175481,6 +29494,Man in Pawnshop (uncredited),46026,137404,13 +29495,Ele mesmo,448763,1848651,15 +29496,Painter,93858,1051816,9 +29497,Holmes,116554,1892773,12 +29498,Inspector Liu Ting-Kuang,42120,1174635,2 +29499,,51267,143627,3 +29500,Holt,19116,74633,1 +29501,Herself,430156,1182653,3 +29502,Patrick Henry,52360,14976,13 +29503,Virginia,227306,1394466,66 +29504,Apprentice Chef,51999,239568,6 +29505,Jimmy,426230,1833229,20 +29506,,57458,1581031,3 +29507,,63215,238392,42 +29508,Vendor,214756,1759634,72 +29509,Mingh,9993,61639,14 +29510,CWO Butowski,52454,222882,5 +29511,Ruedas,18120,82698,3 +29512,Laura O'Neil,23692,940312,8 +29513,Mr. Teller,369883,115974,5 +29514,,145244,4819,11 +29515,Liam West,423377,1251572,8 +29516,Charlie Campion,13519,1472,21 +29517,Party Guest / Cop (uncredited),22943,1373133,6 +29518,Church Old Man,921,1378909,44 +29519,Lehrer Döngen,379019,1088,3 +29520,Abdel,44155,35076,10 +29521,,37340,85345,7 +29522,Sammie,403119,1769594,7 +29523,Patty,214129,1269278,12 +29524,Jim,376292,131252,2 +29525,Little John,113175,51383,3 +29526,Sheriff,207178,90369,10 +29527,,12432,90317,11 +29528,1970's Detective,49524,1674426,33 +29529,Cricket,22584,11439,4 +29530,Mr. Banks,77060,24373,1 +29531,Greg,314065,176227,6 +29532,Babyface,319096,76667,6 +29533,Paperboy,9968,61166,14 +29534,,325892,1192050,3 +29535,Grandma Sally,425591,1753243,13 +29536,Joe Logan,106135,17271,0 +29537,John Long,371446,1181328,5 +29538,Дэйви,211928,1211383,0 +29539,Mattia Volpe,85038,233334,1 +29540,Hasmukh,90634,222767,7 +29541,Laura,283726,151180,4 +29542,Showgirl,72096,1139755,51 +29543,Joey Sadano,4982,13939,20 +29544,Attila,325039,224489,1 +29545,Harri,101838,212814,5 +29546,KC,41479,27964,4 +29547,David,246355,2128,0 +29548,Robot Servant,76757,1394348,47 +29549,Penny Hunter,14782,27008,1 +29550,,2143,132931,53 +29551,Kim Possible (voice),51786,76241,0 +29552,Luciano,103758,1034714,0 +29553,La madre (come Marisa Borini),197089,49169,4 +29554,Professor Abronsius,3053,14016,0 +29555,Waldo Peck,43114,113709,8 +29556,Paolo,166262,932809,4 +29557,Goodwin henchman guarding Jonathan,42764,50739,14 +29558,Harriett Underwood (uncredited),108224,96740,17 +29559,Philip Kaufman,43026,223283,3 +29560,Willie,15213,155610,14 +29561,Gwupigrubynudny-landians,16171,55251,6 +29562,Shantha,69404,582184,7 +29563,Bauer Brückner,73262,1086277,6 +29564,Stephen Montgomery,13173,11702,1 +29565,Agent James McBradden,319910,51670,11 +29566,Virginia O'Brien,80941,129548,16 +29567,Narrator (voice),17935,87409,10 +29568,Marty,9993,1224391,22 +29569,Tomás,37206,126667,3 +29570,Aisa,108726,1412633,8 +29571,Mailman,3563,53684,30 +29572,Yamcha,38594,40327,11 +29573,Toby T.,68684,1095608,14 +29574,Hit 'N' Run,51036,1868269,45 +29575,Marisol,264729,96428,3 +29576,,195544,1853724,22 +29577,Russian Soldier,19996,1764167,53 +29578,Richard Bogard,103938,4068,1 +29579,William Brandt,177677,17604,3 +29580,Jerry Doyle,112558,215695,5 +29581,Returning Amputee Soldier (uncredited),297762,1651385,73 +29582,Walter Prichard,53950,7664,1 +29583,Policewoman (uncredited),59678,1672713,31 +29584,Dr. Collins,153161,103789,14 +29585,Jesse Syms,26131,109100,5 +29586,Radiator child,16171,79869,18 +29587,Maria,222932,1538779,6 +29588,Detective at Killing (uncredited),27973,98972,24 +29589,Sam Brownstein,156597,1225546,6 +29590,Priest,47794,1600350,10 +29591,Mr. Yates,120837,1210669,3 +29592,The Polo Player,28209,22312,12 +29593,Conchita Izquierdo,8329,54523,2 +29594,Richard Tassell: Staff of Nutbourne,83015,133870,6 +29595,Coy,21447,24975,0 +29596,Susanna,65142,235422,1 +29597,Doc Cole,47638,6197,2 +29598,Mrs. Kaznyk,37686,156689,11 +29599,Mr. Webb,82781,12645,10 +29600,Roger Peyton,52360,78854,3 +29601,Algernon Leary,335450,89602,1 +29602,Venture Star Crew Chief,19995,42317,14 +29603,Juan Cortez,270015,130346,6 +29604,Riggs,207178,134003,9 +29605,NY Traveler,5123,118641,57 +29606,Noah's Mother,57680,150080,4 +29607,Little Casino,134238,99468,9 +29608,Himself,453053,56578,2 +29609,Deco,224233,559716,0 +29610,Frau (voice),9551,1642148,6 +29611,Okazaki,135335,1093448,6 +29612,Meryl Lee,16151,79692,1 +29613,Shobha,25499,593020,5 +29614,Alan,47459,31546,9 +29615,Officer,203833,51651,30 +29616,,154442,25461,2 +29617,Morticia Addams/Ophelia Frump,107596,19109,1 +29618,,33611,1056288,16 +29619,Young Lydia,109453,1317159,11 +29620,Other Mother in Store,27414,1206240,30 +29621,Smitty,120615,4078,7 +29622,Helena,21752,87835,1 +29623,Marco,80343,1646010,11 +29624,German Sergeant (uncredited),42641,141069,13 +29625,Sir Lionel Barton,3484,13343,6 +29626,Nasty Father,116979,1189586,13 +29627,Marek,158947,1784279,2 +29628,Alex,393172,60077,1 +29629,Yano,402455,1364768,25 +29630,Costea,112675,556458,1 +29631,Bobby Joe Hill,9918,15543,1 +29632,,254689,209871,9 +29633,,88285,53548,11 +29634,Himself,207021,1100,4 +29635,Davies,42345,6637,3 +29636,Sorority Girl #2,25450,208230,15 +29637,Hotel Desk Clerk in Burkburnett,55604,116494,23 +29638,fotografo,75336,1680529,14 +29639,The Eternal Flame,17796,1710,11 +29640,Eliza,316268,11464,3 +29641,Mr. Kelmeckis,84892,32597,11 +29642,,43967,235337,16 +29643,Club Goer (uncredited),263115,1821486,94 +29644,Alec D'Urberville,101915,37168,3 +29645,Captain,10915,5565,6 +29646,Alcoholic,5123,1553379,37 +29647,Dwight,189,16851,2 +29648,,53693,73214,7 +29649,Savina's Step-father,1481,27851,17 +29650,SAVAK,11338,4610,6 +29651,FBI Agent,44945,123086,25 +29652,Dona Hermínia,203217,1185618,0 +29653,Momčilo Đokić 'Gusar',57419,1050846,17 +29654,Tom Sawyer,42473,141692,9 +29655,Party Girl,18387,21862,10 +29656,Alison Courtland,74525,30155,0 +29657,Sven,150056,1106520,8 +29658,Aurelia Black,64685,1209879,17 +29659,Captain Williams,86254,60650,1 +29660,Chico,158870,91671,4 +29661,Welcome to the 60's Dancer,2976,1752773,122 +29662,,63414,585404,9 +29663,Willie Grimes,25241,93423,8 +29664,Moustafa,12594,1352311,22 +29665,Aesculapius,9503,1220073,4 +29666,Lucy,139571,172037,3 +29667,Lawson,10999,52188,8 +29668,Samantha McCall,79316,17270,0 +29669,Dr. Jack Woodford,39311,1009,3 +29670,SSP Ajay Kumar,33460,85889,0 +29671,Edog,12279,90553,27 +29672,Vivian Petunia,142106,2155,0 +29673,Lt. General Wood,31042,34365,6 +29674,Victor Napoli,353686,11077,7 +29675,Geoffrey,413998,1657460,21 +29676,Maurice,56435,131306,7 +29677,Audience Member (uncredited),244786,79051,46 +29678,Persian General Slaughtered,1271,1330752,47 +29679,Train Conductor,26376,1466779,24 +29680,Himself,9951,1692549,22 +29681,Howie,405388,1647207,9 +29682,President Abraham Lincoln / Demon / Professor Faust (voice),213110,35219,3 +29683,Nelly,64983,3536,2 +29684,Michel-René Labelle,28746,1147575,1 +29685,,78318,120755,46 +29686,Travis (voice),378236,1258699,18 +29687,Aunt Clara Ewing,74437,124558,2 +29688,Fisherman,43113,1342305,41 +29689,Bridget,22387,87749,16 +29690,Viveca (voice),23566,92076,2 +29691,Alexandra,4955,40993,6 +29692,Fran,116385,96498,8 +29693,Samantha Hobbs,337339,1533850,18 +29694,Doc Johnson,67328,1583643,9 +29695,Dr. Bruner,284052,357551,17 +29696,Rosemary Horton,34151,47699,5 +29697,Magd Maria,79362,42930,8 +29698,Roosevelt,336549,1119000,3 +29699,Leopard Woman,36737,80036,6 +29700,Louis-Jean Knipper,338189,16790,0 +29701,Father Father Joseph,228034,6719,5 +29702,Dr. Lorca,81477,484542,2 +29703,Phineas Stark,315664,25074,13 +29704,Duke of Anjou,11788,1420366,8 +29705,David,259694,87822,4 +29706,Mr Dubois,11912,39098,9 +29707,Pickaxe,364410,110902,6 +29708,,11196,1024,10 +29709,Ike Dimick,46830,2059,3 +29710,Frank Petty / Mr. Nobody,337339,6856,7 +29711,Edna's Father,50775,143578,2 +29712,Freek Groenevelt,94674,211010,0 +29713,Etchinson,8852,130581,13 +29714,Un mafioso,33436,28613,22 +29715,,105860,24689,7 +29716,Satomi Tiger,13777,75257,10 +29717,Indian,105059,165590,37 +29718,Jordan Fields,14510,100654,6 +29719,Trudy,274479,6588,7 +29720,Tom,61644,1168999,5 +29721,Manfred's Wife,9483,57657,4 +29722,Dr Logan,66925,130581,12 +29723,Dodge,59006,5694,5 +29724,Peggy,8383,130912,0 +29725,barista,301272,1879745,14 +29726,Himself,306199,91609,1 +29727,Dan Erickson,11917,6576,4 +29728,Cesarina,325645,584175,9 +29729,Herself,245226,36190,2 +29730,Patrolman Mullins,30036,93624,14 +29731,TV Reporter,383538,1851866,13 +29732,Johnson,78734,103068,18 +29733,Garrett Kellison,302042,1098451,8 +29734,Narrator,5206,42,10 +29735,Murray (voice),159824,298410,6 +29736,Sofia Martinez,286567,1061053,2 +29737,Lieut. Brannigan,94811,3155,1 +29738,Sara,78705,1348332,4 +29739,Arban,48180,52131,13 +29740,Stig,70670,589188,8 +29741,Lord Godolphin,131764,3363,3 +29742,Fletcher,127493,136530,5 +29743,,1838,88145,11 +29744,Saloon Girl,35026,929931,25 +29745,Sgt. Clyde,118283,8608,5 +29746,Pirjo Suutari,20164,148349,7 +29747,Seamstress (uncredited),17820,8638,13 +29748,Open Mic Host,2179,1219029,8 +29749,Bishop Maxwell,33112,30002,3 +29750,Olivia,250376,973497,6 +29751,Natasha,277396,47404,7 +29752,Lucas,37340,38037,1 +29753,Producer (guest appearance),341420,585374,9 +29754,Queen Elizabeth,65035,18066,2 +29755,Diao Erbao,14539,1174457,7 +29756,Rodimtsev,156141,124757,2 +29757,Uncle Lige (uncredited),16442,13359,78 +29758,rakasteleva nainen,442752,1761840,33 +29759,Poliziotta Bionda (uncredited),60014,1283519,18 +29760,Gil Stewart,11939,10802,3 +29761,Granny,245739,83438,1 +29762,Dr. Shelby,41234,1208,1 +29763,Voice,217057,15274,15 +29764,Cruikshank (barber),44631,218364,13 +29765,Wade,8457,55097,4 +29766,Birdie,219247,589,0 +29767,Johannesburg Cop,99861,1029031,33 +29768,Son,180050,1011111,1 +29769,Finnon 'Arkie' Burke,149232,16861,1 +29770,Detective Lee Gil-Woo,13855,240082,4 +29771,Sia,157829,292214,11 +29772,Seal,19342,147,1 +29773,assistente di Monicelli,75336,120027,24 +29774,Boyfriend,359255,1508190,10 +29775,Natasha Adasova,83491,86668,1 +29776,Brady Sacks,13477,72095,11 +29777,Moça no Bar,117534,1475255,11 +29778,Alf Hargrave,42683,1091307,8 +29779,,32764,40526,8 +29780,,76651,1508083,18 +29781,son,28527,1648,5 +29782,Gordon,266400,141551,7 +29783,Emma,345922,1783266,38 +29784,Theatre Audience,118943,1189625,8 +29785,Tracy Laughlin,104146,1207046,5 +29786,Julio Iglesias,130457,162072,0 +29787,Prezentator loto,403429,1640625,7 +29788,,154442,1722915,11 +29789,Giugitta,43645,232888,7 +29790,Himself,144680,1416469,20 +29791,Gabriel,407,5496,0 +29792,Court Attendant,27622,78193,19 +29793,Dikke Patrick,138502,1108978,9 +29794,S-2 Major,272878,1371000,20 +29795,avventore,77000,23961,8 +29796,Mr. Weathers,262841,2047,4 +29797,Himself,164558,1052106,3 +29798,Lloyd Rogers,77964,8731,3 +29799,,414827,1676372,4 +29800,Xoan Feijóo,332872,233947,2 +29801,Dr. Martinez,6964,10768,7 +29802,Kenny,41283,143208,12 +29803,Ellen,369894,1366547,8 +29804,Doorman,31993,145872,25 +29805,Seal,257344,1024492,28 +29806,Dr. Castle,27138,167259,14 +29807,Darryl,28739,928235,13 +29808,Professor Charles Xavier,246655,5530,0 +29809,Chew Kiat Kun,195763,225061,3 +29810,Jumper,10201,40481,5 +29811,Ricardo,73624,322458,3 +29812,Allen,39800,39390,4 +29813,Club stoner#2,336011,1560247,16 +29814,Funeral Attendent,379959,1604100,13 +29815,First Taxi Driver,228647,105454,47 +29816,Jiro,219233,50656,4 +29817,Vince,35626,47774,0 +29818,Medico Scommettitore,110447,1328364,13 +29819,Richard Evans,128311,42289,7 +29820,Leo Reilly,19587,60898,4 +29821,Ebe Hatice,452606,97274,2 +29822,T-Rex (voice),1267,1077830,22 +29823,Henry Twite,52362,13820,2 +29824,Boy's Mother,286521,220038,10 +29825,Madeleine,76198,112198,6 +29826,Quartermaster - Edinburgh,58,25441,25 +29827,Avi,245891,68763,5 +29828,Jesse MacNamara,75595,59219,2 +29829,Bob M'bussi,237,3074,9 +29830,Tony,157384,1180098,12 +29831,John English,82519,3911,8 +29832,Benjamin,403119,1629275,4 +29833,Chris,37497,117811,2 +29834,Sally Levinson,253310,1308068,8 +29835,Clawd Wolf (voice),227257,174466,1 +29836,Wryn,5494,33453,6 +29837,Mrs. McKlennar,73194,82412,2 +29838,Vance Chandler's Attorney,103432,105085,26 +29839,Tie Mei,248376,112985,4 +29840,Girl from the Hospital,46930,137814,2 +29841,,337012,1458055,8 +29842,Interpreter (uncredited),41131,4065,10 +29843,Giuseppe,61799,5968,2 +29844,La commerciale des pompes funèbres,34013,1522607,7 +29845,Jack Atlas (voice),72013,1247770,11 +29846,Operator,3580,1569710,14 +29847,Jair,70666,1863888,21 +29848,Anita James,128644,1087651,5 +29849,Ten Grand Jackson,34127,78792,7 +29850,Claus Volter,16014,1018,1 +29851,Karl,60935,571346,12 +29852,Eve,321160,230176,3 +29853,DC Protestor,209112,1696019,95 +29854,Morales,56800,224986,3 +29855,Vendor,134201,1212993,11 +29856,Sloane,359245,60715,1 +29857,Geoffrey Thwaites,10748,5472,3 +29858,Sir Gregory,130881,584081,6 +29859,Константин «Самсон» Котиков,83461,86689,3 +29860,,437253,1074096,3 +29861,Lydia,390059,11150,4 +29862,Lewis,7555,95047,9 +29863,Lt. Castleton,104485,89733,4 +29864,Jeanette Chung/Mother/Cow (voice),5559,34983,19 +29865,Karpenko,40709,238105,7 +29866,Referee #1,15810,1004717,11 +29867,Shaggy,11024,26457,2 +29868,Market Vendor,1724,1366364,41 +29869,Hoochie 2,9298,57198,9 +29870,Biology Professor (uncredited),13912,30262,12 +29871,Pathfinder Fan,287281,1353908,9 +29872,Tal Aziz,146926,94656,10 +29873,Jay,13162,87817,5 +29874,Hammerhead,48333,94697,7 +29875,Liu Renjing,69310,1376106,27 +29876,Roger Lyle,77877,582656,9 +29877,"Frau Gast, Antons Mutter",798,11934,7 +29878,Don Nacio,1810,15676,4 +29879,Detective Do,269494,1375944,6 +29880,Le crieur de journaux,258384,308779,21 +29881,Leon / Thug (voice),40662,35172,7 +29882,Dead Man,95177,1163133,4 +29883,Vice Admiral Resdox,140607,1728991,43 +29884,Priscilla Beaulieu Presley,23178,51751,1 +29885,Xiao Mei,9550,1339,2 +29886,School Band Member,10748,118033,29 +29887,Joanna Rushworth,223655,543940,2 +29888,Papa Bridges,43473,1433914,6 +29889,Ela,35652,114483,1 +29890,Kapteeni Yrjö-Ylermi-Armas Kuortti,55763,53509,1 +29891,Stiva,70881,5832,6 +29892,Lisa,104954,36932,9 +29893,Stephanie,414977,1676775,18 +29894,G-Man,27966,43845,30 +29895,Gitte,86980,76925,3 +29896,Ron,89445,937175,0 +29897,Rayna's Friend #3,356752,1841494,11 +29898,Rachel Reese,131689,1093521,11 +29899,Megumi Yoshikawa,116303,1063266,3 +29900,Policeman,54146,224658,3 +29901,Marcy,340275,1531584,9 +29902,Cholena,31473,108099,6 +29903,Worker,182127,1440200,15 +29904,(voice),408220,23680,14 +29905,Antoine,326874,93532,1 +29906,Bram Stoker,46513,17024,10 +29907,,335837,10256,5 +29908,Benny Flowers,75752,254500,2 +29909,Mrs. Agatha Brown,49844,142938,8 +29910,Malburry,121793,15738,7 +29911,Detective Ogawa,43113,1112075,7 +29912,The Trapper,142145,98927,4 +29913,,248747,86957,3 +29914,Fraser C. Robinson,310888,1226695,3 +29915,Capo dei carcerati,56853,32563,20 +29916,Vasseur,127812,89727,18 +29917,Himself,15725,209603,8 +29918,Himself,157117,1144915,24 +29919,,254689,1296084,11 +29920,"Taira no Tokiko (segment ""Miminashi Hôichi no hanashi"")",30959,552650,29 +29921,Camilla,310126,129445,5 +29922,Jonas,5552,44082,5 +29923,Himself,63144,1624613,7 +29924,Ogorodnikov,279543,1190350,7 +29925,Cop 1,10694,167691,15 +29926,Durkin's Friend (uncredited),14615,30237,60 +29927,Sapna,61203,223167,6 +29928,Special Agent in Car (uncredited),2503,1411061,39 +29929,Siddharth,158780,35793,0 +29930,Joe Moss,31118,1066932,1 +29931,,295748,59752,6 +29932,Miranda Powell,99312,128195,3 +29933,Screenwriter in Love,310593,995198,9 +29934,French Cab Driver,18651,121330,53 +29935,Spall,37420,36821,7 +29936,Hot Servant,156711,1349745,40 +29937,Comedian,75880,80649,13 +29938,Vernon Hicks,98339,1024492,10 +29939,Kemal,74171,97272,0 +29940,Stormtrooper,140607,8784,49 +29941,Fellow Officer,13534,1089144,6 +29942,Victoria Korovyansky,75262,1008339,11 +29943,Agnieszka,13614,591258,5 +29944,Judith Felton,36786,116563,13 +29945,Nick,193610,76526,8 +29946,General McKraken,97632,1101,1 +29947,Becky,21431,74230,12 +29948,Eddie 'Hudson Hawk' Hawkins,9292,62,0 +29949,Reporter Two,64328,1193098,33 +29950,Dr. Henry Jekyll,3023,2922,2 +29951,General Childs,339408,80619,17 +29952,Monet,369885,1698114,30 +29953,SWAT Team,356326,1874730,20 +29954,Lord Hurley,105548,121095,6 +29955,Dolly 'Gallagher' Levi,43141,113284,2 +29956,Verna Jarrett,15794,13579,1 +29957,John E. 'Johnny' Merrick,45679,81179,0 +29958,Katie Papadopoulos,173294,73355,3 +29959,Bob the Tomato / Archibald Asparagus / Scallion #1 / Frankencelery / Mad Scientist / Villager (voice),268893,78297,6 +29960,-,6417,49678,8 +29961,,42501,222257,11 +29962,Herbert Ames,287636,83968,15 +29963,Akemi,31372,108018,2 +29964,Fiel,7343,52538,9 +29965,Aday Walker,380124,1700631,2 +29966,Moreau,206647,578512,24 +29967,Karina,15476,169476,1 +29968,Issac Sr.,337104,6774,8 +29969,Lisbeth Salander,33613,87722,1 +29970,Jeffrey,43158,129296,7 +29971,Trot,48627,1082716,10 +29972,"Слава, диктор",25936,86861,3 +29973,O'Flaherty - a Student,43812,1447952,32 +29974,Katie,250066,1165616,5 +29975,Eddie,115626,84666,3 +29976,Mr. Brown,167073,63360,29 +29977,Nyona's Mother,85126,21009,4 +29978,Norman Oppenheimer,369697,1205,0 +29979,Valet,260947,1304140,6 +29980,Clermont Boudreau,69765,32886,1 +29981,Rua,341559,1345536,12 +29982,Lise Gudayec,168496,24364,1 +29983,Robert Nkomo Morel,70074,31164,3 +29984,Howard Anderson,22894,4602,9 +29985,Ayak,35002,113545,6 +29986,Mentor Graham,43806,13979,10 +29987,Woman,128917,1088204,12 +29988,May Harness Blake,73430,19327,2 +29989,Party Girl (uncredited),323675,145553,64 +29990,Restaurant Waiter (uncredited),312669,1378547,20 +29991,Max Kane,39130,33003,5 +29992,H. R. Pufnstuf / Henrich Rat / Living Island Boat / Orville Pelican / Polka-Dotted Horse / Stupid Bat / West Wind (voice) (as Al Melvin),63859,153360,12 +29993,Abraham Gentry,28170,99936,0 +29994,Charlie,433244,226334,9 +29995,Ollie / Bert Hardy,46026,78057,1 +29996,Dr. Richard Gaunght,225499,17753,1 +29997,Dani (13 Jahre),311301,1109605,7 +29998,Sergio,58518,15918,3 +29999,Feige,412363,1769113,4 +30000,Dr. April Sommers,17306,543193,2 +30001,Avvocato di Vito,167583,98774,7 +30002,Joe Gimpus,43172,105804,5 +30003,Additional Voice (voice),16866,155530,12 +30004,Ricci Blum,11440,220675,6 +30005,Cheeks / Ray Ray (voice),13676,24362,12 +30006,Soldier,1724,1366371,55 +30007,Jarvis,203186,1198311,6 +30008,Bridget Cardigan,12085,3092,0 +30009,Tommy,27973,95296,7 +30010,Inspecteur Endo,35110,113741,8 +30011,Smalls,434873,85613,2 +30012,Dr. Lanyon,3016,1292226,1 +30013,Tim,26882,96531,4 +30014,Anchor Carla,142061,15761,5 +30015,Harrison,310133,1397784,2 +30016,Lenny,17985,1019,1 +30017,State Trooper Shermer,283445,1237299,16 +30018,Maria Hellström,75969,1017193,29 +30019,,362154,1562571,15 +30020,Industrial Party Girl,352890,1561249,17 +30021,Accountant,14552,569545,9 +30022,Dtectivr Rodriguez,226701,1215388,8 +30023,Farm Boss,1163,16591,5 +30024,Sue,157847,1302856,10 +30025,Smoking Cop (uncredited),53392,150167,10 +30026,Christian,65771,223684,0 +30027,Elaine Mason,266856,76944,6 +30028,Melissa Giacobetti,75001,573779,2 +30029,Hoss (The Dog),27916,168077,11 +30030,Glumov 1,47703,1001918,3 +30031,konduktööri,442752,1016054,29 +30032,Kane,218582,34294,12 +30033,Waiter,310133,1653000,7 +30034,Suki,51828,73462,27 +30035,Herself,181533,59860,18 +30036,Gonidec,341490,1886274,9 +30037,Peterson,28482,72888,5 +30038,Witch / Fairy,44389,74288,3 +30039,Young Deputy,157847,1122389,14 +30040,Malathi,86718,580683,5 +30041,Jacques Guddebuer,286545,1853,1 +30042,Ellen,257450,1482526,7 +30043,Kondo,16231,80131,7 +30044,Mickey,297853,1790454,31 +30045,Kai,105077,112644,19 +30046,Bartender,360592,1512188,14 +30047,Grandpa Johnny Tsunami,62527,11398,2 +30048,Mac,315841,1119732,3 +30049,Un coinvolto nella rissa,43231,240913,6 +30050,Shona,115905,96346,1 +30051,Virgil,339419,1650189,15 +30052,Mero,62349,2166,2 +30053,Reverend Hutton,64047,15739,7 +30054,Rachel,76203,1344350,39 +30055,Old Nick,264644,144160,3 +30056,Cowboy at Fair,188161,3061,22 +30057,,12622,555210,35 +30058,,2143,132926,48 +30059,Tara,7288,52792,11 +30060,Documentary Voice Over,59678,155532,12 +30061,Training Agent Dipego,85414,1333163,8 +30062,Reporter at Pillory,99909,2673,43 +30063,L'homme du village,21348,1838960,24 +30064,Paramedic,22447,1687934,30 +30065,Wolf (voice),48466,12106,8 +30066,In Alley (uncredited),42553,1482904,22 +30067,Billy Ray,187010,1569544,4 +30068,Tadashi Yamao,21057,122726,9 +30069,Richard Ramirez,345924,38560,2 +30070,Crawford Gordon,19665,707,27 +30071,Maj. Willoughby,38389,102514,2 +30072,Gretchens Nachbarin Marthe Schwerdtlein,114242,20884,2 +30073,Berti,9010,15121,1 +30074,Ghost in the Restaurant,10389,551611,23 +30075,Guy,126323,119586,3 +30076,Chitoro,84089,618344,3 +30077,Napping Cowpoke with Rake,33541,1095107,17 +30078,Lena Zeitz,215740,1316629,6 +30079,Bürgermeister Potuzak,314635,1630506,4 +30080,Dr. Clarke,4459,24556,5 +30081,Actrice,382589,1859511,17 +30082,Tambrey 'Tammy' Tyree,68720,89808,0 +30083,Carla,30127,100662,8 +30084,Mr. Pinky's Customer,2976,1273501,107 +30085,Saleslady (uncredited),32552,120799,7 +30086,Dani,273511,22082,0 +30087,Hippolyta,182129,8926,1 +30088,Gerry,6023,17276,1 +30089,Auste's Friend,310568,1588821,10 +30090,Larry,2611,1226702,14 +30091,Tashi,48180,140009,1 +30092,Lieutenant Jim Rushing,203351,62817,3 +30093,Mrs. Benet,242042,1082521,10 +30094,Colin,398137,29298,2 +30095,Ted Hanks,43117,141596,4 +30096,John Serragoth,19350,84522,1 +30097,Apache Helicopter Pilot,1724,1366362,37 +30098,Sergente Quaglia,58701,132474,2 +30099,Dylan Smith,237756,216986,4 +30100,Valentina's mother,142757,236830,2 +30101,Jerry Schue,23397,5048,3 +30102,Elegant Lady,112708,100493,10 +30103,Ed,130507,30217,15 +30104,,264264,39831,11 +30105,Agnès Le Roux,270899,68816,3 +30106,Halloran,450530,13633,9 +30107,Eric,67314,47797,5 +30108,Sam,414977,1593199,1 +30109,US Officer P.O.W,227306,1394459,59 +30110,Rachid,138502,24042,3 +30111,Tony 'Piggy' Locarno,89145,56924,6 +30112,James J. Corbett,43522,8724,0 +30113,Paavo,88059,56273,6 +30114,Grace,142507,1117470,2 +30115,Forati,420743,1446498,4 +30116,Buster Lane,84450,83037,0 +30117,Himself / En personne,13713,1318852,10 +30118,Ms Rossi,18238,141538,12 +30119,Erin,209244,1372291,14 +30120,Blackie as a Boy,28564,1937,13 +30121,Cary,42252,8351,4 +30122,Simone,129518,1089970,4 +30123,Beth,65055,77088,5 +30124,Captain Lofting,91390,151819,5 +30125,Mr Pratchett,216156,1235008,3 +30126,Texas State Trooper,245703,1609625,28 +30127,Jørgen,433082,1013156,7 +30128,,264036,94375,6 +30129,Father,330947,111002,20 +30130,Alarmed Townsman,55604,975597,40 +30131,Welcome to the 60's Dancer,2976,1752767,117 +30132,Captain of the Archers,37958,80019,14 +30133,,332872,1651930,38 +30134,Des,320588,208059,15 +30135,Dutch Captain,38340,9908,3 +30136,Heroine,10070,43778,2 +30137,Asakura Kenichi,45441,58596,0 +30138,Assistant Coach,23628,90410,17 +30139,OJ's dad,17082,131731,14 +30140,Student,107430,99744,16 +30141,Lady Anne of Mackworth,24442,7302,1 +30142,Sydney Whitcombe Sykes,62143,39066,10 +30143,Sick Boy in Aachen,109716,1342200,19 +30144,Baseball Fan,367732,1537762,21 +30145,Fridge,126442,20176,0 +30146,Alexandra Medford,6069,38225,1 +30147,Attendant,38437,120457,15 +30148,Rusty - The Red-Headed Hooker,47878,69056,6 +30149,Mrs. Forrest,6976,7632,0 +30150,Mr. Yates - Assistant Hotel Manager,188468,14969,12 +30151,Erik Lehnsherr / Magneto (Old),127585,1327,8 +30152,Alice Meyers,365942,1529183,9 +30153,,347465,121590,1 +30154,Cop 2,10694,994259,14 +30155,Summer / Cheyenne,196255,1493242,4 +30156,Domino,9639,43386,9 +30157,Gnomad,49852,1323612,8 +30158,Tabrez Alam,28805,84956,1 +30159,Edith Mintz,10780,381,3 +30160,Horowitz,351065,20173,5 +30161,Band Leader,403119,1639308,6 +30162,Himself,407806,1700948,8 +30163,Schricker Sen.,58166,4621,6 +30164,Alison Morgan,205076,87934,0 +30165,Lucía Garza,264525,545346,5 +30166,Freddie,2001,72988,10 +30167,Madame Hortense,10604,45523,3 +30168,Cort Chambers,213681,1696148,8 +30169,Christoph,72419,7805,1 +30170,Siegal,45326,3034,3 +30171,Governor Wilkes,138372,55269,9 +30172,Mort Rainey,1586,85,0 +30173,Liza,132426,59620,3 +30174,Himself,15258,37221,60 +30175,William Rice,8247,12132,4 +30176,Cole Frankel,15577,11477,1 +30177,,38164,1091591,7 +30178,Vecchia gitana,325645,564591,3 +30179,Murph Sinitsky,38743,2368,2 +30180,Dominic Vizakna,8316,6268,5 +30181,Szymon Kosowski,329550,1436886,26 +30182,Mr. Trench,508,23429,34 +30183,Danny,42476,44691,0 +30184,Adleman,92496,196446,15 +30185,Loma Morales,37329,17755,3 +30186,Maid,128900,1086476,20 +30187,Mother,338767,1463027,5 +30188,Mary Meehan,212756,1296188,9 +30189,Isti,158942,1140299,2 +30190,George Calvin,161620,15668,2 +30191,Mallorca's Casino Manager,98586,28513,8 +30192,Bob,334890,1695145,10 +30193,quartet,72640,1487397,3 +30194,Guard (uncredited),213681,1771573,47 +30195,Himself,17073,1145892,2 +30196,Paul,2577,93291,19 +30197,Ricardo,53042,147106,9 +30198,,289679,1358892,7 +30199,Martin McGuinness,408616,17782,1 +30200,Obese Patient,242042,1686927,28 +30201,,43751,234653,4 +30202,John Curtis,5289,1597842,23 +30203,Cass,281215,7673,5 +30204,"Seu Jorge, o garçom",117534,5659,4 +30205,Hausmeister Hochstätter,85469,35448,6 +30206,Mr. Springtime,55604,1021841,61 +30207,Kroenig,189,1062,12 +30208,,342011,1509713,9 +30209,Josiah,376501,36422,5 +30210,Peggy Bartlett,4641,38710,8 +30211,Carleton Towne,107593,14452,6 +30212,Hotel Manager,26486,42724,30 +30213,Goat,77534,582221,13 +30214,Fumiyo Kikuchi,315846,43663,9 +30215,Tony,43268,95725,9 +30216,,408550,1658131,3 +30217,Tony Anderson,53209,550698,1 +30218,Michael,20304,8177,1 +30219,James,43131,34745,1 +30220,Old Angus,54318,1248,6 +30221,Mr. Gregory,87894,29600,5 +30222,Martial Arts Guy,381691,1787693,11 +30223,Robbie O'Hare,41857,30501,10 +30224,Steward from S.S. Queen Ann on Dock (uncredited),31773,195086,48 +30225,Brian,364690,1198994,9 +30226,"Beryl, Marianne's sister",86497,1170930,4 +30227,Nux,76341,3292,2 +30228,,153196,1283555,2 +30229,Pascal Quéméner,292387,1363528,4 +30230,Grace Walsh,108723,1196974,5 +30231,Jennifer Barrett Allieghieri,13437,289,1 +30232,Editor (uncredited),16442,33705,91 +30233,Eva Rose,196359,29545,3 +30234,Devin,40208,100964,12 +30235,Captain Sheldon,48333,1090198,11 +30236,Şaban / Fake Tosun Paşa,38794,97272,0 +30237,Maria Teresa,43200,129303,6 +30238,Ernest,241374,592393,10 +30239,Dokter Snor,115929,228327,6 +30240,Moe Iba,9918,333,4 +30241,Eric,12594,1884984,6 +30242,Dominic (voice),411221,1093279,11 +30243,Joan,16240,205082,24 +30244,Grüttel,226693,1327315,9 +30245,Greg,433244,59672,7 +30246,Ruben Santiago Sr.,133382,33181,9 +30247,Ring Girl (uncredited),312221,1746969,72 +30248,Jane Hudson,50363,6598,0 +30249,Kate,49950,1128314,7 +30250,"Margery, dit « le boiteux »",82098,2168,1 +30251,Le beau père,252773,38871,4 +30252,Seiler,248633,1954,1 +30253,Goat Boy,193756,1283048,25 +30254,Marie Deville,152989,1021684,1 +30255,,11328,1348451,22 +30256,Vikram Sinha,32740,55066,4 +30257,Father Benedictus,38415,118,1 +30258,Cheol Jung,52418,1233094,0 +30259,Herself (uncredited),70086,136974,2 +30260,Il Corvo (voice),136619,1888077,10 +30261,Fingy Moscovitz,94009,14425,14 +30262,Brännström,19181,1097796,9 +30263,Addie Dade,165567,164945,0 +30264,Himself,63144,1624617,12 +30265,Dr. Lynn Harper,99545,111581,2 +30266,Albert Hall,131737,9831,0 +30267,Amie de Philippe,77338,1349054,11 +30268,The Organic Mechanic,76341,59117,14 +30269,Harmony,21030,777,3 +30270,Pierre Martel / Pierre Muller,166883,992827,2 +30271,George,127803,105728,6 +30272,Leif (3 Yrs Old),228970,1495089,41 +30273,Madame Dupuis,45184,3366,7 +30274,Le détenu à l'infirmerie (uncredited),29259,131380,14 +30275,Sadie Longo,245706,1458840,6 +30276,Carmine Romano,29695,150651,14 +30277,Himself,14923,34517,39 +30278,Rocky,53767,629439,3 +30279,,202984,352,2 +30280,Soloist,13610,1368801,6 +30281,Nightclub Dancer / Chorine at Rehearsal,43809,1413586,56 +30282,Allison,111017,7504,0 +30283,King Herod,102428,1030579,2 +30284,Signor Andreani,99261,41094,8 +30285,,149868,89513,10 +30286,Leonardo (voice),1273,19506,8 +30287,Mr. Arnold,28044,120810,11 +30288,Herself,385379,1561289,6 +30289,Michela Bacci,42436,41340,1 +30290,Party Cop #1,258509,1559688,22 +30291,Vlado,1253,34515,14 +30292,Elvīra Baumane,144331,1192362,1 +30293,Pete Ross,209112,1636956,43 +30294,Felix,172386,1155660,5 +30295,Jake Sherman,184741,13819,4 +30296,Sister Bernarda,101342,536709,5 +30297,Domnu' Bebe,2009,39959,2 +30298,"Simeon Peake, Gambler",98536,33007,8 +30299,Ben Madiera,50942,103833,9 +30300,,400610,1241993,5 +30301,Maine Mirabeau,4592,21027,3 +30302,Leiku,19338,1579265,24 +30303,Herb Copperbottom (voice),9928,2283,18 +30304,Camper (uncredited),251227,1286546,30 +30305,Mallory,399790,28477,8 +30306,SGT. Bracken,463800,102750,5 +30307,Hildemaro,136752,1208790,3 +30308,Truck Driver,113148,119776,2 +30309,Эмилия,27935,99289,7 +30310,Himself,257116,1076689,1 +30311,Simon,20986,90134,0 +30312,Gemma,301334,1723623,19 +30313,Teacher,60965,232052,25 +30314,Bradley,172828,145998,14 +30315,Muhamer,407,1856,5 +30316,Ms. Kimberley,4953,12021,3 +30317,Croupier,308174,1888496,33 +30318,Ramon,44754,1003,5 +30319,Karl Tillmann,42260,6251,3 +30320,Albert Einstein,79833,83405,11 +30321,Slave Dealer,204040,30017,16 +30322,Margaret,331313,1561639,18 +30323,The Neanderthal,55663,103385,10 +30324,President George Richmond,32195,12850,0 +30325,Konrad,20372,1270296,9 +30326,Lauri Salpakari,103751,124285,3 +30327,Leonid,269173,122648,13 +30328,Devlin,33134,109546,15 +30329,Jewels,297633,999445,4 +30330,Melissa,12247,71892,7 +30331,Club Patron,149793,122984,38 +30332,Zart,198663,970561,9 +30333,Baravki,2397,24523,8 +30334,McGee,1724,1234315,46 +30335,Leningrad Cowboy,30366,69554,8 +30336,Georges (voice),126319,46475,3 +30337,Morgan,193603,14700,0 +30338,Nurse,42188,229606,18 +30339,Narvi Sutoraizu,55435,90135,8 +30340,The Creature,109122,1585694,6 +30341,Kay,73027,27281,9 +30342,"Dr. Cooper Whitehead, Ph.D.",259997,58528,5 +30343,"Underwood, a Lawyer",43808,141510,10 +30344,Deputy National Security Advisor,97630,207304,17 +30345,,18908,1566,14 +30346,Monica Gray,25977,26057,1 +30347,Flower peddler,53865,19327,8 +30348,Romanello,11813,70561,2 +30349,Cynthia,414977,98664,7 +30350,Doctor Applecheek,22582,19439,5 +30351,voice,86700,933512,6 +30352,Nurse Thompson,370234,986143,16 +30353,Sir Francis Knollys,43875,33007,22 +30354,Othello,44006,3359,0 +30355,François,361571,125839,2 +30356,Mnemosyne,297762,174708,23 +30357,Jenna's Father,311093,155977,6 +30358,Priest,28367,32120,9 +30359,Clothilde als Kind,153717,1134593,9 +30360,Dan,78362,929110,13 +30361,Te Min's defense attorney,88922,1152471,14 +30362,,199615,1179789,1 +30363,Maurice Leheurt aka Mo,64437,35323,0 +30364,Nexdhet,172475,14833,3 +30365,La femme maigre,21348,1200620,11 +30366,The Teenage Girl,331161,1238763,11 +30367,Priester,2734,27657,35 +30368,Heimdall,99861,17605,15 +30369,Moses (The Donkey) (voice),33065,110037,8 +30370,Bud Graziano,11614,18841,0 +30371,Herbie Haseler,322460,10169,1 +30372,Marco,57918,119991,0 +30373,Bathing Beauty,43812,1287805,63 +30374,Henry Murdoch,63858,67685,1 +30375,Dennis Dunne,200727,42565,8 +30376,Michele,303542,1385640,0 +30377,Gerda (voice),292014,98285,8 +30378,Jacky,101352,1071380,2 +30379,Military Doctor,318781,1469688,32 +30380,Stella,117098,3019,0 +30381,Standesbeamter Wagner,613,1130286,43 +30382,Devil,51939,64,1 +30383,Aunt Betty,30082,174254,5 +30384,Indian,105059,1683126,19 +30385,Dwight,445916,929393,5 +30386,Silk,284296,65920,2 +30387,Bri Terry,141643,1115143,3 +30388,Danny,54099,1465852,8 +30389,Backwoodsman,52360,120462,50 +30390,Laura,370755,229932,1 +30391,Tom,130507,33856,19 +30392,Gwen,341174,1770250,21 +30393,Aleksandr Aleksandrovich Sokolov,63291,236822,7 +30394,Max Gunther,28063,80692,2 +30395,1.Animierdame,122487,37345,11 +30396,נינווה,43083,82099,8 +30397,Contessina Zosima,146596,620108,3 +30398,Youssef,54155,1158463,6 +30399,Tick,17978,86370,4 +30400,Detective Nicks,289723,1153347,14 +30401,Maj. Fornari,67377,31989,5 +30402,Dan Peggotty,141640,13327,9 +30403,George,401060,61323,4 +30404,Raka,396643,24898,3 +30405,Rachel,171213,1153630,5 +30406,Pat Wade,26036,39555,8 +30407,Dan,308,4445,14 +30408,Detective Orloff,24797,146402,2 +30409,Mint,292625,1504184,3 +30410,Cass,32038,102703,4 +30411,Ada,62397,29545,1 +30412,Home Plate Umpire,352498,1562962,17 +30413,Julie,40252,944283,2 +30414,Suzie,49787,37292,0 +30415,Simone,8882,72776,12 +30416,Female Shopper,213681,1532924,36 +30417,Anders,75229,574201,2 +30418,Maggie,16083,61185,15 +30419,Mean Marvin (as James Evermore),335970,1435244,28 +30420,Albert Pontefreece,10918,134893,12 +30421,Master of Ceremonies,51759,29602,6 +30422,Millionaire Chan,10044,58123,11 +30423,Dr. Matthew Baron,41171,4735,4 +30424,Dervis Aga,197297,20728,4 +30425,Tom Nash,84104,1158134,5 +30426,Ottway's Father,75174,574092,9 +30427,Josmar,131932,1482623,12 +30428,Deputy Inspector Caputo,11048,52657,5 +30429,Ah Ping,844,12674,6 +30430,1982 Championship MC,257344,707,10 +30431,Kao,88811,1174366,1 +30432,Ollie,22999,78057,1 +30433,,75578,575726,16 +30434,Michael Alig,1415,11510,1 +30435,Kristjan,341490,79828,5 +30436,War Widows Collector,340101,1370595,36 +30437,Edith Ellyn,245168,1283,1 +30438,Rahne,2197,23301,0 +30439,Mr. Stifler,8277,4443,2 +30440,Filin,143005,47423,0 +30441,Banker at Demo,67375,950014,29 +30442,Acadia,1807,19203,8 +30443,,44716,1807468,20 +30444,Karsten,15177,77979,6 +30445,Mick,294652,61340,25 +30446,Runaway,14695,77346,11 +30447,Signalman Andrew 'Canada' Brown,44536,30551,0 +30448,Swetlana,85699,63420,12 +30449,Lieutenant Renee Montoya,15805,34977,11 +30450,Florence / Irma,166883,239232,1 +30451,Fox,90034,1083851,0 +30452,,376934,1366234,2 +30453,Jeff Andrews,66175,14847,0 +30454,Fatou,77338,1411815,9 +30455,Orlando,15092,117187,6 +30456,Blinker #2,25132,1112458,23 +30457,Saleem Sinai,121598,88903,0 +30458,Freda,42501,42400,5 +30459,Angeber,11930,48895,8 +30460,Errol Flynn,2567,9642,7 +30461,Jane,64786,239852,0 +30462,Claudine Bodin,44937,78073,2 +30463,Dealer 1,43459,557983,3 +30464,Baby Dumpling Bumstead,3937,30223,2 +30465,Anne Tremblay,30174,223278,6 +30466,Colonel's Associate,157343,124554,23 +30467,,59572,128159,5 +30468,"Jack Taggart, Sr.",11351,6719,0 +30469,Antoine Morin,59349,229237,1 +30470,Crony,72574,99857,16 +30471,Newsreel Cameraman (uncredited),14615,1040564,78 +30472,Kyle Broflovski / Kenny McCormick / Jesus (voice),16487,34518,2 +30473,Sanna Rajala,173865,110760,2 +30474,Minor Role (uncredited),43850,12282,11 +30475,Mrs. Colson,8988,12133,32 +30476,empregado do retiro,49961,143115,10 +30477,Robbie (uncredited),397717,1722996,45 +30478,Chiqui,254869,1291602,6 +30479,National Anchorman,5172,1668476,50 +30480,Vasyl,363841,1709,3 +30481,The Flash (voice),30061,20903,9 +30482,Prete,160844,288230,6 +30483,Sutro (uncredited),43522,103499,61 +30484,Christina,26688,73410,35 +30485,Eunuch Lao,217923,1436154,18 +30486,Concentration Camp Physician,41597,12157,33 +30487,Ingeborg,13318,85153,3 +30488,Kathe Batts,10008,13483,3 +30489,Aels,97088,55762,3 +30490,Young Father,8398,1356750,6 +30491,,414827,1676374,6 +30492,,204007,31347,2 +30493,Dee,332839,26467,2 +30494,Flores,312221,131423,5 +30495,Vecina de Macario (uncredited),122019,1464669,13 +30496,Josh,92496,553752,0 +30497,Young Wendy Walker,50875,1188195,7 +30498,Himself,24235,6939,6 +30499,Lisa's Friend,84348,1090695,26 +30500,Prisoner of War (uncredited),256962,1789157,59 +30501,Beefqoe,269173,1164005,22 +30502,Paul Brunner,32764,6264,4 +30503,Julia,115173,1061040,1 +30504,Mr. Hershfeld,233490,18982,5 +30505,Gong-ju Han,26955,83122,1 +30506,Poliisi,101838,1029086,19 +30507,Charly,76312,231064,1 +30508,Andrew,313628,1469148,6 +30509,Laura,25973,8256,4 +30510,Sean,65367,101545,2 +30511,Rob,18392,551512,11 +30512,Reporter,52437,119544,17 +30513,Tatuzinho,70666,1863889,22 +30514,,406449,591428,12 +30515,Susana San Juan,198795,236238,3 +30516,Maggie O'Donnell,16996,49961,6 +30517,The Man In Nightgown,13802,32327,39 +30518,Clotilde de Marelle,118536,14730,1 +30519,Agent Marcel,348320,1197738,13 +30520,Martita,118195,940522,3 +30521,Nigel,33511,1798884,17 +30522,Paul Stidham,266314,1208,10 +30523,Jeweler,147722,120810,21 +30524,Dick Deyo,80941,30238,19 +30525,Albert,77338,581729,7 +30526,Norman Anderson,149232,40275,4 +30527,Guest (uncredited),147722,115771,31 +30528,Constable at Coal Train,28421,121127,47 +30529,Mike,30624,82837,5 +30530,Port Commissioner Nuñez,323675,97844,16 +30531,Asobi nakama (Friend),28268,1063897,9 +30532,Huang Huo-tu,57100,56861,0 +30533,Le médecin,51971,28857,7 +30534,l'échographiste,4974,579269,11 +30535,Red Parker,112130,7004,6 +30536,Pam Wallace,134201,199483,2 +30537,Max,13058,1193572,14 +30538,Sgt. Rafferty (Sheriff's Dept.),177043,83453,5 +30539,Shad Kern,25921,20982,7 +30540,Doctor,328589,55467,10 +30541,John Randolph,126550,12353,4 +30542,Susie,32166,150972,1 +30543,Patricia,251555,1401555,2 +30544,John Wepner,373546,4688,5 +30545,"Bryce, Blacksmith",96089,161672,12 +30546,Matilda Frazier,29117,94097,0 +30547,Vivian,1599,10437,2 +30548,Dennis Crosby,285400,1238834,10 +30549,Philip,26331,2091,4 +30550,Het Kohler (uncredited),15794,46418,35 +30551,Dale,71139,47296,3 +30552,,162056,7547,16 +30553,Martha Cox,11887,964908,11 +30554,Warden,3580,53778,24 +30555,Donnie,131903,1093933,4 +30556,La Gemala Ana,264525,1857670,23 +30557,Il questore,94809,5688,9 +30558,Saddam Insane,31146,1197732,25 +30559,Jess Hayes,70404,157095,2 +30560,,92285,103871,11 +30561,Adam Hitchens,312831,119783,0 +30562,Sgt. Caesar Gardella,28290,4966,6 +30563,Genscher,82598,23753,6 +30564,Katherine,104644,67916,4 +30565,Woman at Admission Gate,21451,111585,17 +30566,Helmut,10311,6251,0 +30567,Butler,72096,6471,35 +30568,Snow White,59075,70882,2 +30569,Salesgirl,351065,1450809,18 +30570,Dennis Moore,175027,99330,5 +30571,Admiral Calvin,52454,16180,3 +30572,Diemis,2172,110108,12 +30573,Madame Pauline,59434,100033,6 +30574,Nazi Guard,168676,1297030,14 +30575,Sergeant,38808,175608,6 +30576,Evan Asher,146243,127281,3 +30577,Alex,81522,5676,0 +30578,Military Police Sergeant (uncredited),73430,74876,18 +30579,,27102,1380133,10 +30580,Forestier,106155,98489,10 +30581,Clarence Runyon,40957,14256,14 +30582,Yaşar,332534,1259586,10 +30583,Otello,20414,128467,9 +30584,Grandmother Portuguese,145191,1122430,6 +30585,Burke Ramsey / Burke Ramsey Auditionee / Himself,430826,1891545,54 +30586,Countess Marie D'Agoult,129553,9763,2 +30587,Announcer - Lasky,921,94833,26 +30588,North Korean Army Master Gunnery Sergeant,387845,1294906,13 +30589,Willard Woodward / James Peyton / Everett Peyton / Julius Peyton / Capt. Eddie Peyton / Skylock Peyton / 'Bugs' Peyton,52122,3663,0 +30590,Troupe,19995,1158600,41 +30591,Counterman,23397,1893429,14 +30592,,196469,15441,1 +30593,Wexel,47638,139237,3 +30594,Rosa Martínez,210653,1520751,3 +30595,,182843,15915,5 +30596,Tony McDowall,127808,3267,3 +30597,General C.O. Furlong,53865,29601,4 +30598,Captain McCormack,24409,13591,7 +30599,Daniella,133458,104978,3 +30600,Elio's Wife,49712,1810604,16 +30601,Edward Morriss,425774,107474,2 +30602,Herself,16800,938997,8 +30603,Vovchik,395914,1614740,2 +30604,Zach,304372,1540131,19 +30605,Kid on Beach #1,52454,1630309,35 +30606,Argin,8340,54609,1 +30607,Nestor Petrovich Severov,75262,13713,0 +30608,Historiador,415255,1677215,7 +30609,Samantha,364690,209650,11 +30610,Bijlee,139521,81928,0 +30611,Himself (as Dr. Shuntaro Hida),33588,556715,1 +30612,Gloria,82806,145326,1 +30613,Kainene,209401,15563,2 +30614,Chuck Wepner,373546,23626,0 +30615,Johnny Martin,59828,46418,7 +30616,Superintendent Winch,60269,50303,5 +30617,Joyce,18665,66762,5 +30618,Felicia,406052,1073804,13 +30619,Javier “Spider” Socorro,76600,1895760,14 +30620,Willard Samson,120588,537884,3 +30621,Billings - Ounce's Secretary,43903,34086,9 +30622,Melle Millerand,75066,48998,2 +30623,Gabriella,135536,36385,1 +30624,Mechmershausen,82708,2341,4 +30625,Flaccus,93492,31748,6 +30626,Bilton,38770,97425,21 +30627,Bartender,297853,1634770,27 +30628,Jerry Kellogg,29805,65146,41 +30629,ACP Raghavan Singh,393562,1469935,1 +30630,Ramiro Cuadrado,254869,99812,4 +30631,Adam Sabre - Host,41505,127064,12 +30632,Ajay's father,13986,88139,5 +30633,Sherriff Wyner,5516,552139,7 +30634,konstaapeli,442752,234256,4 +30635,Specialist Gordon Bonner,6973,51683,9 +30636,Georgette's Girl Friend,22999,1472971,11 +30637,Ashley,295588,57674,4 +30638,Hanging Moss,1579,42015,21 +30639,Prisoner (uncredited),28000,1199438,82 +30640,Rose Lady (Sonia's Mother),12273,35777,6 +30641,DJ,32893,63107,4 +30642,Karen Herdberger,10011,61999,9 +30643,Ottilie / Kate,42934,11110,1 +30644,W.L. Slogan,31263,1576627,12 +30645,Morning Shift Concierge,367147,1183917,10 +30646,Indianergutt,24821,111534,2 +30647,Liebhaber,61552,1151734,12 +30648,Edward Stuart Godfrey,239091,50300,2 +30649,"Brando, giovane gondoliere nella sala da ballo",48937,15139,5 +30650,Narrator,24926,93310,0 +30651,Chuck,186268,120211,7 +30652,Fireman (voice),159304,1052648,2 +30653,Peggy Roche,14555,77191,3 +30654,Marie,77728,47644,4 +30655,Guard,310135,1419725,26 +30656,Kenny Kozlowski,55448,4688,4 +30657,John Darling,273106,1519550,7 +30658,Boy (uncredited),134475,1619494,14 +30659,Rhonda Truitt,11351,63465,6 +30660,George McAlpine,63762,16327,1 +30661,Go Go Dancer,43935,568046,9 +30662,Dr. Screwwala's wife,22429,35762,5 +30663,Jailor,22999,131386,7 +30664,"Maxime Exbrayat, le garçon de café",84875,931403,8 +30665,Leanne Rease-Jones,58428,11084,2 +30666,La caissière,12446,1356421,18 +30667,Rex,41574,1583287,7 +30668,Rooney,10201,18972,6 +30669,Bail Organa,330459,33181,9 +30670,Tourist (uncredited),337339,1563273,60 +30671,Himself,71381,80999,5 +30672,Roberto Baggio,226163,1211584,0 +30673,Tommy McCoy / Killer McCoy,59828,1937,0 +30674,Manny Heffley,82650,1769435,9 +30675,Sasha Franklin,417870,15758,1 +30676,Perry White,49521,2975,6 +30677,Hot Girl (uncredited),15092,1781991,82 +30678,Louie Bracado,125666,13298,5 +30679,Henry Opdyke,28299,83801,7 +30680,Ben Epps,359471,1717,10 +30681,,47324,1620566,5 +30682,Elaine Wyatt,4441,37287,4 +30683,Dorian,14019,76297,6 +30684,Kadife,37570,150456,2 +30685,Claude,55853,24558,3 +30686,Federico Cioffa,42436,1874309,8 +30687,Peg DeForrest,54570,100581,11 +30688,Lizzie,18908,83849,2 +30689,Lindsay Carr,45714,14263,4 +30690,Peregus Mallister,370687,52141,8 +30691,Placido P. Placeedo,21605,23429,9 +30692,Megan Lawrence,77625,77940,2 +30693,Herself,47748,146697,1 +30694,,303966,618699,10 +30695,Karl-Heinz,153397,31663,5 +30696,Mess Waiter,41312,92011,20 +30697,Party Trucker,73775,99861,15 +30698,Crazy Woman,17577,1102966,15 +30699,Moray,43875,84230,7 +30700,Rose Peterson,353686,1699503,13 +30701,Tourist,371645,1570329,14 +30702,Joss,13600,82144,11 +30703,Cotton Calloway,277388,1892,9 +30704,Stoner,540,59233,12 +30705,,69310,146098,36 +30706,Father Stratton,9956,15864,5 +30707,Deputy Sheriff Ron,16022,30488,11 +30708,,72733,1285647,5 +30709,Narrator (voice),63194,95568,2 +30710,Colin (as Kristen Holden-Ried),63045,557840,4 +30711,Lynn,92496,157685,14 +30712,Mabel,204040,32431,7 +30713,Paul Brennan,27259,26259,9 +30714,Lou Berger,37038,116644,6 +30715,Cousin Carol,128270,1203952,26 +30716,Radio Announcer,16444,119365,21 +30717,CJ,38048,135532,3 +30718,Benny,284296,71530,4 +30719,Dr. Linda Jenkins,8669,2676,24 +30720,Kenji,55615,1126293,3 +30721,,162899,177473,0 +30722,Himself,13480,17835,0 +30723,Queen,1579,1331673,37 +30724,Valentin Bulgakov,36811,5530,0 +30725,Mickey Mouse,32428,2106,1 +30726,Joshua Henry,29212,47722,5 +30727,Fortune Teller,103590,935007,0 +30728,MNU Mercenary,17654,1156032,33 +30729,,321779,1387200,7 +30730,Zeebad,16455,44865,4 +30731,Anton Chigurh,6977,3810,1 +30732,,49961,143127,20 +30733,Himself,83079,1222968,12 +30734,Bakar,402672,1637845,6 +30735,Dilhoefer,19740,31117,6 +30736,Cynthia's Husband (voice),142115,1123823,6 +30737,Ruth Lait,148031,6465,7 +30738,Liddy,59075,228791,8 +30739,La grande fille,21348,1838902,12 +30740,Friar Tuck,115972,93163,5 +30741,William Walker,28448,228,0 +30742,Gov. Pat Neff,63773,1372356,7 +30743,Maqbool ‘Mak’ Haider,35907,229264,4 +30744,Thomas Schell,64685,31,1 +30745,Madame Wilson,52270,2929,10 +30746,Major King Kong,340275,1737,13 +30747,Gilliam,256962,1465820,38 +30748,Dragon Gunship Gunner,19995,1207236,21 +30749,,3549,1441480,18 +30750,High School Kid,41402,8553,9 +30751,Martha Mae,166221,160239,13 +30752,L'oste (voice),136619,69785,7 +30753,Police Commissioner,17082,1196106,13 +30754,John Washington,227700,2983,0 +30755,Little red-haired girl (voice),227973,1256036,7 +30756,Himself,67367,584487,1 +30757,Will,24059,98586,5 +30758,Elaine Corelli (as Valli),88075,15385,1 +30759,German Politician,354287,3063,36 +30760,Big Biz,256474,11160,3 +30761,Shakky,20507,86253,8 +30762,Sacajawea,181533,17841,12 +30763,David Tipton,218582,85897,11 +30764,Kid #2,40990,1567897,19 +30765,Hal,72574,230,2 +30766,Zia Dora,363757,78674,5 +30767,Phil Nasseros,36288,19183,2 +30768,Quino,115665,1061848,5 +30769,Vanessa Paris,186227,47439,1 +30770,Oh Jong-hak,435821,1607570,7 +30771,Hayo,87022,91353,2 +30772,Dan Beaumonte,30036,3152,2 +30773,King Tutankhamun,353462,212934,2 +30774,Jeanette Rawley,58462,7571,4 +30775,Shigematsu Shizuma,185987,63707,1 +30776,Nikki,23966,1559945,9 +30777,Marcus Ridgeway,15935,78957,11 +30778,Saya,10265,64501,9 +30779,Doctor,137776,1176972,5 +30780,Francis aka Butch,43808,1287720,12 +30781,Telephone Tree,10139,54697,12 +30782,Ahmet,31408,1052884,4 +30783,Herself (uncredited),322400,1050881,3 +30784,Grandma Lilly,9900,45863,6 +30785,Rita,3102,30404,5 +30786,Girl #3 at Play (Flower),10710,1778257,33 +30787,,320299,117884,4 +30788,Count Oga,30126,44883,6 +30789,Papa Bo,67499,934917,11 +30790,Antonio Esteban,95807,84760,8 +30791,Salvim,33495,130874,13 +30792,Warren Haggerty,31773,12147,3 +30793,Andrew MacBean,229757,923,6 +30794,Portiere,195544,228158,9 +30795,Wedding guest,43117,121323,15 +30796,"Joe, Arnold's Henchman",147829,975306,29 +30797,Cara Harding,41505,1231,0 +30798,Earl Mahler,27573,11803,13 +30799,General McClaren,86254,41269,7 +30800,Bernadette,3638,4888,7 +30801,Paul Massigny,8070,3516,7 +30802,Himself,335031,147333,4 +30803,Hayabusa,146679,1124595,4 +30804,,73835,228150,14 +30805,Naked / Spurious Actor,307931,1040966,11 +30806,Han Moon-ho's friend,108972,573792,6 +30807,Mr. Bondy,92285,1203931,8 +30808,Boy in Alley,300667,1790366,18 +30809,Lockwood,179154,77522,12 +30810,Govind / Javed / Krrish,120942,78245,0 +30811,Mimi,274479,6587,8 +30812,Sugar,250066,214839,3 +30813,calciatore ItalianAttori,302802,1197816,20 +30814,Raoul Dubois,41131,125559,9 +30815,Motoko's mother,315837,19857,11 +30816,Detective,70057,15170,10 +30817,Sang Hwa,396535,1024395,1 +30818,Madison,409502,1071346,9 +30819,Lily,13196,74537,8 +30820,Jenny,18763,69638,2 +30821,Rossi,72279,120187,8 +30822,Jack,15036,72254,1 +30823,Padre de bebe abandonado (uncredited),45191,1461676,18 +30824,Policeman - detective room,43113,1481137,72 +30825,Mitchell,172847,19536,0 +30826,Nikah Memuru,452606,1325421,20 +30827,Lona McLane,31555,5729,2 +30828,Marty,348389,78198,4 +30829,Patty Farrell,60307,84468,11 +30830,Phil Bennett / Charlie Bennett,144471,116845,7 +30831,Jenny,375794,1310915,6 +30832,La femme du vigile,334317,1449636,2 +30833,Crime unit officer,117506,1555922,12 +30834,-,1655,18983,14 +30835,Doug McConnell,226672,19775,4 +30836,,92285,981718,12 +30837,Stewardess,46891,980197,9 +30838,Manager,198062,54728,9 +30839,Scott,84184,109,2 +30840,,69471,101,2 +30841,Govind Suryavanshi,139582,11851,4 +30842,Pop Walters,184741,145987,9 +30843,Sophia,25646,51040,4 +30844,Dan Thomas,75315,8252,0 +30845,Ellamae Downs,90461,126679,4 +30846,Sage-Femme,46738,1644520,21 +30847,Bozo,10070,9296,0 +30848,Jenna,347258,1244796,2 +30849,Claire,63401,38341,0 +30850,Nia,301875,37917,1 +30851,Torvald Helmer,42457,4173,0 +30852,Rattenjan,75578,591976,19 +30853,Ellen Bascomb / Millicent Weems,4960,1902,9 +30854,Motorista do ônibos,361146,1169804,15 +30855,Felipe,251555,228880,13 +30856,Toki,84626,1154133,6 +30857,Meike Pelzer,83729,19910,0 +30858,Dickie Wanley (uncredited),17136,9287,9 +30859,Shelly,50725,66446,8 +30860,Post Modern Review Staff,13092,6973,23 +30861,Lucia,1164,1376187,17 +30862,Jonathan,26768,96183,10 +30863,Mrs. Hurley,55735,157627,12 +30864,Paige,29798,63207,4 +30865,,235092,97679,12 +30866,Roberts's wife,257534,1297702,12 +30867,Himself,384682,149132,25 +30868,Miguel Santiago,70863,1717282,13 +30869,Chacha,21566,86228,11 +30870,"Neuza, Guiga's girlfriend",108712,1491370,8 +30871,Chief of comanches,45227,86640,9 +30872,German Soldier (uncredited),16442,1471396,53 +30873,Ellen,22585,44149,0 +30874,Fulvia,92586,29428,2 +30875,Tsai / Joe,42120,1138762,13 +30876,King Saul,42040,39188,1 +30877,Patient Krankenhaus,269258,46216,16 +30878,Yang Yi-sam,293670,1793046,10 +30879,Anne,67794,1666,10 +30880,Young Ignacio,140,1608,6 +30881,Lucas,299780,225611,7 +30882,Joey Gazelle,7304,8167,0 +30883,Himself,144680,1745373,17 +30884,Francis 'Mac' McNamara,227306,168877,4 +30885,Emelin,70351,41240,1 +30886,Mia,23512,62754,4 +30887,Krikor,98644,1029120,3 +30888,Bram,19398,210992,7 +30889,Nauczyciel,155325,66464,17 +30890,Anitha,24448,91632,1 +30891,J.P.,9900,59231,4 +30892,Sister Maria,128089,114252,1 +30893,Punjab,21780,195330,10 +30894,,279096,1378238,7 +30895,Tim Dingman,10710,7399,0 +30896,Carpenter,91679,1782612,52 +30897,Maitre D' of The Tropical Isle (uncredited),43049,82779,11 +30898,Burt Simpson,24731,12850,0 +30899,Todd McLemore,72753,52037,1 +30900,Vince,336265,1159650,8 +30901,,343809,1541183,6 +30902,Filmy girlfriend,303281,37233,6 +30903,Father Lyle Dey,16080,59222,1 +30904,Talia,202337,1116544,3 +30905,Frau Thälmann,42260,20017,2 +30906,,267483,1315174,14 +30907,Samantha,59861,204588,8 +30908,Colleague Up Top #2,58244,115594,35 +30909,"Михаил Натанович, программный директор «Как бы радио»",20963,86878,15 +30910,The Vaquero,384450,82604,5 +30911,Garda Michael,18595,63360,14 +30912,Rabinovitch,175822,24336,12 +30913,Devon,402582,1637555,11 +30914,Pilot #3,59197,1110005,11 +30915,Jaka,39061,1202416,3 +30916,Singing Men of OHIO,381008,1784726,35 +30917,The Hulk,14609,60279,9 +30918,Snoop Dogg's Head (voice),15060,19767,9 +30919,Jorge,4497,9768,1 +30920,Jérémie,145191,1122431,7 +30921,Marmaduke Gump,43688,99373,6 +30922,First Class Lady (uncredited),209112,1574911,142 +30923,Finn,8886,146462,3 +30924,Himself,14688,234346,9 +30925,Anke,18238,141534,7 +30926,Stranger,10053,2478,2 +30927,Eddie,348315,1233325,2 +30928,Kim as a Child,31548,121220,11 +30929,Pueblerina (uncredited),198795,1514445,27 +30930,Robot Courtesan,283995,1404450,42 +30931,Zafron,107146,25809,4 +30932,Airport Patron,351242,1569910,13 +30933,Insinööri Sörsselssön,55776,116161,3 +30934,Judge Henley,96936,1207490,19 +30935,Nemo age 16,31011,116606,6 +30936,Therapist,424488,1631707,51 +30937,Arlette Poumaillac,51945,2412,1 +30938,Kenny,137683,965205,5 +30939,Herself,14108,225931,7 +30940,Linda Murray,86241,5606,6 +30941,Laurie Faber,146315,138956,4 +30942,Himself,173467,1230,17 +30943,,96106,1281098,15 +30944,Paige,260001,94098,1 +30945,un chasseur,76703,579799,10 +30946,Marianne,147360,72871,0 +30947,Edward Walker,6947,227,3 +30948,Luisa,14804,1409925,5 +30949,Dr. Bascomb,75162,2201,2 +30950,Girl Lab Partner,7326,85144,17 +30951,DS McColl,215999,44930,6 +30952,Monsieur Meignant,53179,35210,1 +30953,Le flic,98277,1849111,30 +30954,Distinguished Man,24619,1850009,27 +30955,,137504,1530412,19 +30956,Hoppie Gruenewald,13823,1035098,4 +30957,Anne Thorpe,18093,96787,20 +30958,Mrs. Van Dyke's Child,174594,1321408,10 +30959,,348315,78302,4 +30960,Receptionist,92496,1209676,22 +30961,Betty,413232,148520,9 +30962,Joe,65066,80625,0 +30963,Ernest,91548,58623,2 +30964,Chris McCandless - age 4,5915,1141723,15 +30965,Norville,55563,54564,7 +30966,Hunter,49950,1128309,8 +30967,Senator Hartmann,18826,43775,10 +30968,Doctor (uncredited),365942,1409492,48 +30969,Berliner #1,145220,997569,12 +30970,Professor Winter,20907,125381,1 +30971,Ankor,126889,1527210,10 +30972,Nicky Flippers (voice),57089,28010,5 +30973,Arturo,226936,130869,5 +30974,"Sir Horace, the Minister",14387,87071,4 +30975,"Gaetano, Stefano's Friend",52808,68330,13 +30976,Mario La Torre,66893,50780,5 +30977,Count Von Tolheim,118245,29816,5 +30978,Paz 'Pacita',69060,1013068,4 +30979,,68715,1607448,11 +30980,Laura Barton,99861,1817,16 +30981,Hank,2742,14902,6 +30982,Sgt. Diaz,359105,468565,18 +30983,Pussy Cat,37929,91488,14 +30984,Gus's Leg Double,222935,1672072,26 +30985,Irma Peterson,96433,131441,0 +30986,Carla Jean Moss,6977,9015,4 +30987,Kollega,572,7760,5 +30988,Lon,186759,212290,20 +30989,Narrator,125249,1040012,5 +30990,Rocky Graziano,228034,785,8 +30991,Douglas Freeman,145247,1122545,11 +30992,Nick's Avatar / Jerry Chen,49524,20904,7 +30993,Barbara,363890,21320,1 +30994,Dr. Margaret Tanaka,90616,1692068,11 +30995,Man at Accident,132328,78087,10 +30996,Marlene,218728,166,1 +30997,Harmony Schiltz,369524,41087,2 +30998,Elderly Lady,109391,1204705,38 +30999,Layko,19398,1830870,3 +31000,Henry,158015,458286,5 +31001,La finlandaise bavarde,12249,71939,10 +31002,Pavel Vlasov - the Son,98914,29198,1 +31003,Roberto (voice),172385,969218,5 +31004,Martinson Radio,142402,979639,28 +31005,Poetry (voice),41252,88140,10 +31006,Professor Turner,13596,7447,2 +31007,Professor Douglas,85350,32241,39 +31008,Jennifer Reston,49314,8944,2 +31009,Reg,22447,10655,8 +31010,Devers,45219,30686,2 +31011,Naruto Uzumaki,16907,82055,0 +31012,Anzor Yugorsky,7304,10841,4 +31013,Germain,39413,16927,0 +31014,8. Zwerg,9803,48694,14 +31015,Dr. Oliver West,70498,21066,4 +31016,Carlo's father,20126,1091328,9 +31017,Commander of Colonial Troops,73194,27164,26 +31018,Reporter (uncredited),14615,121322,41 +31019,1er Policier de la visite nocturne,5511,1664786,17 +31020,Tanya,61966,29847,1 +31021,Hanks,43809,1556460,24 +31022,Mr. Danner,42634,7664,11 +31023,Cowboy Lap Dance Girl,77930,1784609,26 +31024,Drive Thru Worker #1,402582,1789506,25 +31025,Varðstjór,26880,96525,2 +31026,Dan Frost,174751,33192,1 +31027,Sokovian SUV Passenger,99861,1760899,62 +31028,Maj. John Corcoran,109122,89165,4 +31029,Reporter,87343,64511,7 +31030,Woman #1,327389,203227,16 +31031,Stand in of the Actress,15086,5079,5 +31032,Sarah,236395,932646,3 +31033,Joyce,26405,131511,8 +31034,Judy Kane,43497,34314,2 +31035,Giacomo's father,120922,27433,2 +31036,Mr. Abernathy,31150,107023,13 +31037,Maggiordomo,43648,120117,7 +31038,Armed Robber,102382,1054326,48 +31039,Dr. Nilsson,51144,557052,5 +31040,Luca Maria,31542,1757145,27 +31041,Jules,369883,16858,1 +31042,Jennifer Corvino,29161,6161,0 +31043,Malek,262338,1396620,20 +31044,Janet,289232,7055,1 +31045,King Arthur,18978,194,0 +31046,Police Officer,365942,43596,25 +31047,Li Yi,16687,223536,3 +31048,Club Hopper #1,443007,206450,6 +31049,Gloria,105528,204896,8 +31050,Clayton,71668,2048,9 +31051,Jenn Jones,41479,55085,2 +31052,Mr. Sulzer,29161,98774,13 +31053,Harry Herman,92285,136104,1 +31054,Paco,104297,22767,1 +31055,Hannas Kollegin,197175,45195,6 +31056,Sheriff Pruitt,37686,29934,20 +31057,Nishiyama,43113,1483785,22 +31058,Mel Clark,323674,527313,1 +31059,Helena Cain,69315,41820,0 +31060,Lester Brackman,3081,31503,3 +31061,Rindy Aird,258480,1545498,11 +31062,Maria Domenichini,43548,103157,5 +31063,Barbara Steiner,203833,52637,34 +31064,Monique,74561,102515,1 +31065,Trucker 1,11496,9567,9 +31066,Jonathan / Kang Cheng-hsing,57005,239999,0 +31067,Ed,120932,121766,10 +31068,,51334,150437,1 +31069,,116857,99464,2 +31070,Peter Edwards,159701,56385,4 +31071,Metal Voice,36299,114631,11 +31072,Bartender,431093,228618,10 +31073,Stormtrooper,330459,1231950,62 +31074,Himself,15258,9188,11 +31075,Troy Bolton (singing voice),10947,92619,13 +31076,Conspirator Guard,246655,1796384,22 +31077,Sam Stanton,36251,67848,1 +31078,Samson Gaul,127521,15111,0 +31079,Nigel Slater,52850,1281,0 +31080,Myshtsy,269173,1388924,29 +31081,Girl in Bed at Motel,10999,114696,16 +31082,Dale,244610,228702,12 +31083,Mohit Shetty,347807,1060555,11 +31084,Hospital Receptionist,2577,150469,11 +31085,Dokugakuji (voice),155765,1222053,8 +31086,Brady Turner,40466,99930,0 +31087,Felix,9639,1113724,4 +31088,le chef des gangsters,2786,21772,4 +31089,Peter,235260,1070749,3 +31090,,47200,1510926,3 +31091,Elevator Operator (uncredited),17136,569144,43 +31092,Spanish Sex Girl,9870,1290175,23 +31093,Rachel,359870,1665011,15 +31094,,62616,99312,10 +31095,Vickie Darwell,186268,995471,14 +31096,,100791,235916,0 +31097,Chet,71668,28638,4 +31098,Carter Doleman,4613,55174,8 +31099,Tulle McKenzie (as Paul Burns),45215,96302,12 +31100,Jutta Heckmann,9690,48702,14 +31101,Masha,56212,223801,4 +31102,Harry En Hai,118139,95771,3 +31103,Ninian Edwards,43806,114097,6 +31104,Cheerleader (1989),16996,1261980,47 +31105,,96147,140763,16 +31106,Maurizio Marquez,75969,47779,3 +31107,Oliver,239563,1274508,3 +31108,Jung-Ho,13855,75912,0 +31109,гардеробщик,20871,86675,12 +31110,le médecin,14644,581123,7 +31111,,131478,1285567,0 +31112,Donovan,236324,1264667,9 +31113,Sergei,148347,582484,1 +31114,Police Lt. Burke,118953,85996,2 +31115,Veronika Harlan / Mellitta (as Lya de Putti),28480,48057,3 +31116,Tom Jackson,19203,84300,3 +31117,,228407,1265705,2 +31118,Andrzej,94527,7116,3 +31119,Lee Jin-seok,11658,70336,26 +31120,Ref,39213,37156,1 +31121,Nurse,300187,177579,6 +31122,Actor in Show,132928,43823,12 +31123,Helicopter Pilot,2080,213087,60 +31124,Judy,71139,1212483,9 +31125,Marshal Len Merrick,43562,2090,0 +31126,Chris,186606,1750936,23 +31127,Himself,36325,1096496,2 +31128,Singer at the Party,111470,1811851,40 +31129,Mrs. Lotty Wilkins,196789,103441,0 +31130,New Year's Eve Partygoer #3,10362,1741834,28 +31131,Jack Damson,218329,18269,0 +31132,Elias,1807,19198,3 +31133,Pentonville Governor,48838,20425,12 +31134,Henry Freemont,8669,963433,12 +31135,Taxi londonien,382591,1049226,33 +31136,Older Woman,166666,1175687,12 +31137,Chito,67693,146798,11 +31138,Uncle Eddie,184098,352,5 +31139,Boxer,8882,72777,8 +31140,Richard Nixon,132363,3036,12 +31141,poliisi,442752,1761846,38 +31142,Verne Coolan,34651,4343,1 +31143,Ramon,55720,35231,8 +31144,Robert Barrett,33801,80503,1 +31145,"Molly, Their Daughter",82696,164094,4 +31146,Sean,3638,31713,6 +31147,Hathor,205584,78147,4 +31148,Minelli,128644,42547,1 +31149,Police Lieutenant at Killing (uncredited),27973,81292,25 +31150,George,381032,141433,4 +31151,Wolf (voice),10192,12106,21 +31152,Victor Costa,52264,35899,2 +31153,Zelda,277688,1172108,16 +31154,Nigel,29907,1087561,9 +31155,Uncle Beto,20941,72128,3 +31156,Victor Von Frankenstein,228066,5530,0 +31157,primo cittadino appestato,338438,1082124,11 +31158,Eleanor Coyle,55448,54887,10 +31159,one of Thenmozhi's grooms to be,300983,1391951,9 +31160,Female Doctor,4964,168380,22 +31161,Sonia Mehra,69346,85732,2 +31162,,63260,49892,12 +31163,,125229,551748,3 +31164,Laura Sandner,28938,28111,10 +31165,Eric Carlson,17940,1293717,9 +31166,Lychee,39998,1391533,1 +31167,Lizzie Bannerman,295656,32202,4 +31168,Wingate,66741,198878,3 +31169,Shukichi Mamiya,50247,134263,4 +31170,Saunders,70586,62731,19 +31171,Van Driver,345925,54193,7 +31172,Annette Marshall,85610,116257,2 +31173,Bob,237584,51533,6 +31174,Edward Patterson,109258,30279,8 +31175,Jane Gilbreth - as a Child,50549,186357,10 +31176,gäst på partyt,76846,5306,11 +31177,sa maitresse,1568,17618,2 +31178,Gil Wright,173662,113654,8 +31179,Rosen,17306,1567840,11 +31180,Fiona McLure,277968,1399567,25 +31181,Phil,291871,17051,1 +31182,Woman on Bus,13058,26071,28 +31183,,27276,551859,50 +31184,Miss Greene,62694,130098,22 +31185,Jang's Man,240832,1426893,40 +31186,Mr. Thomas,200447,105810,13 +31187,E-sao,14818,592535,4 +31188,Shermy (voice),227973,1393187,15 +31189,Player - New York,18722,553436,33 +31190,,60813,1307989,1 +31191,,9528,13014,8 +31192,Lewis Jackman,111017,50570,1 +31193,School Director,72875,2047,4 +31194,Joona Linna,133458,1069783,0 +31195,Arthur,74836,30613,3 +31196,James Fitchmueller,28001,99375,7 +31197,Warden,28712,30215,7 +31198,Cha'an,10004,61834,13 +31199,Eli Lopez,395763,1802432,8 +31200,John McCain,18638,52647,0 +31201,Captain Tillman (uncredited),16442,96257,47 +31202,,150208,232286,6 +31203,Himself,399811,1506865,1 +31204,Mara Simone,371003,1460924,6 +31205,Shozo,98631,20335,2 +31206,Nick Turner,396392,21213,1 +31207,Glader,198663,1415446,36 +31208,,44449,11523,1 +31209,Black Child,118889,589812,29 +31210,Strip Club Girl,28090,1719901,48 +31211,Josh,13596,1213573,11 +31212,Tom Kovack,171308,1749,0 +31213,Egyptian Spectator / Italian Peasant #1 (voice),82703,59413,50 +31214,Bank clerk,16171,79877,26 +31215,Mimi,78233,215837,2 +31216,Juan Miguel,131932,1482620,10 +31217,Reporter,52437,1388103,18 +31218,Spiro,44746,41379,5 +31219,Love Doll Worker,351065,131498,13 +31220,Mike,193893,558899,39 +31221,Lila Barton,99861,1405571,46 +31222,Wednesday Addams Sr,107596,193734,7 +31223,"Pace, Bruhn's Gang",37481,12354,9 +31224,"Wo, IB cop",37984,1172955,6 +31225,Tony,189,60674,29 +31226,Communications Operator #2,329865,1486761,43 +31227,Mrs. Guimond,371003,1531611,8 +31228,Davanna Girl,40028,106802,6 +31229,Alexander Corvinus,834,937,4 +31230,David,49712,4517,2 +31231,,412202,109976,14 +31232,Nightclub Manager,26376,96060,44 +31233,Dänischer Grenzbeamter,73775,1167393,20 +31234,Nicky Fingers Bonnatto,10744,28033,8 +31235,Mike Brady,28452,100849,0 +31236,"(segment ""Miminashi Hôichi no hanashi"")",30959,552648,27 +31237,Sidekick (uncredited),28000,1422446,89 +31238,Otis Kent,35689,65827,4 +31239,Moretti,39436,2201,0 +31240,Peter,127901,1109320,3 +31241,Eeva,107525,124261,3 +31242,Portera (Concierge),8088,3482,7 +31243,Faat Kiné,125700,1838442,1 +31244,sosia di Sylvester Stallone,44933,1853763,12 +31245,William of Beaujeu,17669,113894,12 +31246,Catherine,78789,9893,1 +31247,Detective Razatos,188102,175206,11 +31248,Yolo Ziff,140607,1636658,47 +31249,John Risca - also spelled John Riska,70753,131232,3 +31250,Skating Boy,88075,537962,11 +31251,Daphne,10201,1511384,17 +31252,David / Walter,126889,17288,0 +31253,Giuditta,43645,4818,1 +31254,War Pup,76341,1734188,44 +31255,Clara,49974,1202679,10 +31256,Dick Cutler,44693,30453,0 +31257,Mrs. Byrd,239566,1457273,47 +31258,The Monitor of Metaluna,831,12356,5 +31259,Himself - Bartender / Student,97724,1388660,11 +31260,Mortician,1595,1524603,12 +31261,Emma Nash,102630,54499,1 +31262,Pelikán,18352,1070303,26 +31263,,96106,1281107,23 +31264,Shigeko,45987,134384,6 +31265,Deputy,27740,103855,10 +31266,Le veillard,21348,1838954,17 +31267,Felix,361571,1515360,0 +31268,Zykov,14979,15320,6 +31269,elle-même,90930,36318,9 +31270,,340961,572166,13 +31271,Ji-young,128111,1638474,2 +31272,Tom Howard,354287,93111,37 +31273,Mrs. Weldon,42752,78791,3 +31274,Pablo,251555,1401554,3 +31275,Steve,198277,55466,5 +31276,Fred / Scooby-Doo (voice),13354,15831,9 +31277,Dr. Adrian King,91551,1333,0 +31278,Photo Model (uncredited),90120,97619,10 +31279,Christine Miroux,300,4274,2 +31280,Lt. Grimsley,48852,1069,25 +31281,Peyton Grey,375355,1326056,7 +31282,,392832,130359,3 +31283,"Jenny Dorr, l'artiste chorégraphie",84035,5963,3 +31284,Jared (uncredited),72105,10859,28 +31285,Lukas,45013,77448,12 +31286,Alicia,14874,49551,7 +31287,Chad Danforth,11887,67602,4 +31288,Morales,27381,40481,12 +31289,,256916,37946,2 +31290,Pierre,62978,38898,2 +31291,,218772,1125591,6 +31292,Concierge,13739,1525267,10 +31293,Sékou,290316,1360310,6 +31294,Himself,245226,884,3 +31295,Jason Anderson,296524,824,7 +31296,Viglieri,8063,128677,10 +31297,Little boy (uncredited),65035,212285,22 +31298,Kraglin Obfonteri / On Set Rocket,283995,51663,10 +31299,Young Uma/Durga,208637,1191768,2 +31300,,392882,1736224,5 +31301,Tiger,19528,100585,14 +31302,Chinese Translator,127585,1784732,64 +31303,Crazy Ron,17287,42545,14 +31304,Timo,72054,98065,2 +31305,,231009,132197,9 +31306,Aunt Thora,94551,153347,1 +31307,Harelip,199615,144495,5 +31308,Fred,384682,79082,11 +31309,Gobernador Carmelo Vargas,264525,7370,1 +31310,Shark,34459,1175102,4 +31311,Roland de Smoke,54563,150918,4 +31312,,37055,1371497,11 +31313,Commissaire Paoli,35008,114677,5 +31314,William Graham,242131,117419,1 +31315,Ajimura,117212,73427,21 +31316,Katherine,246741,1780263,13 +31317,Blackie,47876,3150,2 +31318,Ghost Rider (voice),60120,1188435,1 +31319,Thomas Rutherford,77860,14300,1 +31320,Erik,253794,18906,4 +31321,Correctional Officer (uncredited),213681,1747278,70 +31322,Amin Jaafari,121791,762,0 +31323,Funeral Mourner (uncredited),4982,1645155,105 +31324,Stepsister,92349,992881,3 +31325,Giulio,112885,72059,1 +31326,Master Servant Robinson,26808,26854,2 +31327,Troupe,19995,1207254,37 +31328,Waldemar,88059,53509,5 +31329,Nicky Nuker,47342,162323,29 +31330,Father Antonio,46193,40620,4 +31331,King Herod,43902,24820,3 +31332,Brian O'Conner (uncredited),168259,1795034,50 +31333,,336549,70548,9 +31334,,25998,1178903,3 +31335,Steve Hart,38978,1619135,13 +31336,,105991,1265887,0 +31337,le second faux aveugle,31522,23480,6 +31338,Harris McElroy,64678,54856,14 +31339,Lee Donley,94182,80994,1 +31340,Nurse Fine,106747,1569851,19 +31341,Japanese Tourist #1,402582,1278789,17 +31342,Jeanne Meyer,336199,17882,2 +31343,Varlia Lloyd,29705,99349,3 +31344,Frank James,43829,4958,1 +31345,Alistair Manning-Tutthorn,29368,47665,5 +31346,Sergeant Pike,158908,31164,6 +31347,The Girl (uncredited),130457,589146,11 +31348,Nabil,35110,113742,9 +31349,Captain Kirigin,16082,79954,7 +31350,Jiang Xin,117506,116636,2 +31351,"Reggie, a space ranger",154371,95017,10 +31352,Concert Radio Announcer,124115,126550,28 +31353,DJ,268920,1754423,24 +31354,Juhan,257534,137700,10 +31355,Maggie,358353,94792,0 +31356,Herself,413782,70811,16 +31357,Lycan Underling,346672,1883799,20 +31358,Duncan Lloyd,390357,1684813,7 +31359,Barney,84993,45210,1 +31360,Millie Opdyke,28299,7643,6 +31361,Desert Scavenger (voice),140607,1728984,79 +31362,Amy,253286,1155510,4 +31363,Kurt Lorant,10565,44428,11 +31364,Taxi driver,95504,34286,12 +31365,Astrid Daniels,216374,83285,2 +31366,Tommy Erskine,81110,30231,9 +31367,Nathan,321497,11064,1 +31368,Ty,39982,50762,1 +31369,Young Ely,306952,1511958,12 +31370,Alean,133382,37158,12 +31371,,202984,1185275,5 +31372,Susan Britz,59115,1714644,6 +31373,Jackie,52936,54887,6 +31374,Dona Amalia,20941,1723688,20 +31375,Roby,23619,1741924,10 +31376,Casey,130881,1024405,5 +31377,Twitch (voice),27653,35158,10 +31378,Noelle,3520,19270,3 +31379,Heather,318553,1555123,11 +31380,death / doctor / dog,62967,236341,0 +31381,,57983,55732,5 +31382,Mark,7511,559280,15 +31383,Lex Luthor (voice),13640,47297,2 +31384,George Leach,33931,81970,2 +31385,Maurenn Johnson,1833,19394,5 +31386,Charlotte's Teacher,89492,305993,17 +31387,,44716,1180793,33 +31388,Moeder Ramakers,277190,1060228,4 +31389,Jeff,128437,153371,8 +31390,Ephraim Squier,28448,15416,1 +31391,Trish,82134,74370,5 +31392,Pharmacy Customer,7288,3801,22 +31393,Travel Agent,311291,1561080,6 +31394,Hauser,2742,145527,14 +31395,Hanif Qureshi,135718,11851,3 +31396,Niña Medeiros,80280,111090,1 +31397,Iron Knife,42472,1080234,8 +31398,Billy Bush (Himself),9870,287341,22 +31399,Sam,136368,1105681,1 +31400,Philippe de Montfaucon,3051,14261,1 +31401,,292062,72971,1 +31402,Carlo Santi,98328,88673,4 +31403,Blanche,258251,228969,2 +31404,Adam,358895,90498,4 +31405,Megan McBride,44115,20354,2 +31406,Kevin Tarpley,107250,1230996,13 +31407,Rabbi Gerry,52221,70233,6 +31408,Prvt. Hendricks,57597,64726,8 +31409,Josephina,387399,18466,8 +31410,Isaiah Morrison,17317,1676730,16 +31411,Cathy (as Leshay Tomlinson),100450,1026225,3 +31412,Charlie,242631,14455,15 +31413,Telecronista,162056,1475629,14 +31414,Bora Çatak,77241,1598080,5 +31415,Porter at Railroad Station,108222,1067843,44 +31416,Marcy,11547,52365,3 +31417,Katriina Sirkkunen,61070,1069886,3 +31418,Coronary Patient,153161,238180,20 +31419,Dr. Gordon Hauser,42251,127610,3 +31420,Nightclub Patron (uncredited),43049,121323,9 +31421,"Liliane, la Karateka",1421,1723428,13 +31422,Mansukh Desai,147767,88593,2 +31423,Gerlof,196027,91454,3 +31424,Dave the Intern,47863,62836,4 +31425,Jerry,71139,97600,4 +31426,Lily Lamont,268350,148397,3 +31427,Morita,72592,70209,2 +31428,Lt. Cdr. Vexille Serra,13391,571229,15 +31429,Tess Durbeyfield,101915,59620,0 +31430,,33340,232400,2 +31431,Captain Sharp,83666,62,0 +31432,Lisa Wilcox,39195,122467,1 +31433,Billy,298751,1128397,3 +31434,MacHardie - Darwin Player (uncredited),13912,32430,16 +31435,Marie,25903,1231,0 +31436,Awed Ninja (voice),9502,61409,15 +31437,Actor,10425,65124,13 +31438,Sir Peter Teazle,12783,1227575,7 +31439,Shug,10476,40036,3 +31440,Child (Crying daughter),43751,1475681,14 +31441,Harada,76170,10884,3 +31442,,261871,1257179,5 +31443,Mr. McBee,42703,4316,9 +31444,Dr. Simpson,30934,107336,4 +31445,Linda,28063,83461,3 +31446,Margaret Hobart,75595,41087,4 +31447,Chad,156711,1349719,10 +31448,Curtis,2080,1353646,38 +31449,Freddie Svale,1838,1184,1 +31450,Herself - National Geographic Explorer (as Sylvia Earle Ph.D.),84185,39654,5 +31451,dottor Piedimonte,82080,133755,15 +31452,,341689,33450,7 +31453,The Counselor,42678,14690,12 +31454,Karl,11677,677,4 +31455,Cadaever Demon,362439,1523667,12 +31456,Lycan 1,52520,12371,13 +31457,ER Nurse - Huntsville,343795,145320,16 +31458,Akronas,31264,7198,3 +31459,Amy Bradford Dillard,1976,20365,3 +31460,Blake,345925,23534,12 +31461,Senator,340027,158396,8 +31462,,284343,1619455,4 +31463,Lou,84178,25703,1 +31464,Mister Keyes,63340,82832,2 +31465,Kevin,80545,147468,12 +31466,(voice),63486,239459,14 +31467,Tanorexic,10521,1281301,23 +31468,Gillian Stranger,69717,1190276,9 +31469,Opleukha-paren,150223,1870834,21 +31470,Elisabeth,33091,64974,6 +31471,Country Girl Mae,424600,1704653,4 +31472,Michelle,29111,102947,1 +31473,Hiemer,178446,41965,9 +31474,Rodger Mitchell,427673,78412,5 +31475,Undetermined Role,50775,148033,8 +31476,Aram,101325,122844,11 +31477,Milou,15457,24891,1 +31478,Foreign Secretary James Willett,333352,20508,3 +31479,Gus,4938,6577,4 +31480,Наталья Сергеевна,63300,236850,1 +31481,Doris,256962,1152042,37 +31482,Paramedic,250066,990136,9 +31483,Himself,83587,928106,3 +31484,Brittany Cunningham,43931,137446,5 +31485,Kelly,11798,225612,15 +31486,Tori,227871,1263324,2 +31487,Girl in Line,77930,1784579,16 +31488,Assistant,280495,1338083,6 +31489,Norman's Friend,122271,1735908,5 +31490,Ele,52247,87341,0 +31491,Counterman at Gym (uncredited),28000,47001,64 +31492,Noakes,14387,14263,10 +31493,Apa Kügelgen,82708,1828323,16 +31494,Woman at Deli,193610,1577506,14 +31495,Lily Liang,5552,1513401,9 +31496,Tabitha Walker,6947,18261,10 +31497,,110001,1696399,42 +31498,Shawn Colfax,17927,37059,0 +31499,Himself - Comedian,98438,1018042,3 +31500,Dean Lawton,10594,41247,4 +31501,La detenuta bionda,66893,351074,14 +31502,Lida,279543,109119,2 +31503,Joy,39800,1834,2 +31504,Pilgrim #1,27549,7073,10 +31505,,299780,1268582,15 +31506,Lt. Clayton,69165,166141,2 +31507,,85844,1547563,6 +31508,,265351,1432027,12 +31509,Gabriella,54662,210877,3 +31510,Rob,76543,530327,13 +31511,,41187,1888575,11 +31512,Col. Doug Masterson (uncredited),5172,62,59 +31513,Discotheque Girl,11610,99888,8 +31514,John James,37534,1269,0 +31515,The Femme Fatale,47310,93731,6 +31516,"Wolf, an orderly",40060,193031,12 +31517,Moby Dick,33495,130868,4 +31518,Courthouse Clerk Abidin,74879,1001778,9 +31519,Elaine,19957,85346,6 +31520,Dojo Ninja,98566,51300,15 +31521,Harvey Pekar,2771,13242,0 +31522,Lafayette Hightower,278316,1333665,4 +31523,Il farmacista,315319,1835093,29 +31524,Sepideh,37181,229932,0 +31525,Anka,309879,1621486,8 +31526,Ulysses Ferragut,183932,30555,6 +31527,Twin Cousin 1,85350,1467992,66 +31528,Mutter Yevdokya,14482,87000,0 +31529,Dominique,70989,16923,1 +31530,Morgan Pålsson,14078,76328,0 +31531,Leonard Doc Blach,197583,21416,2 +31532,,91261,99301,2 +31533,Dad,20312,55378,9 +31534,Polizeipräsident,104172,1384102,8 +31535,Captain Paul La Roche,140276,29999,1 +31536,Betty,79221,586159,4 +31537,il capo dei rematori ammutinati,103216,55914,12 +31538,Police Officer,271677,584887,15 +31539,,9550,1620877,13 +31540,Jane Gardner,48281,119368,1 +31541,Lamppost / Toilet Bot / Bass Drum / Microphone,9928,9224,12 +31542,Gisela,279179,43163,4 +31543,,430973,1343579,4 +31544,Human Walter,64328,5374,6 +31545,L'organisateur du concert,12169,1164967,20 +31546,Ole Strom,26805,96302,5 +31547,Hartman Fong / Ming,17082,64496,0 +31548,NASA Executive,365942,223395,22 +31549,TV Reporter,51249,861986,10 +31550,Duke Wade,285946,89010,3 +31551,Youth,13058,1169781,32 +31552,Gabriel,405882,1015667,19 +31553,Jackie Flannery,1662,64,1 +31554,"Special appearance in song ""Kaal Dhamaal""",20132,35742,11 +31555,Dr. Jung,64882,118976,8 +31556,Indian (uncredited),41468,1229431,16 +31557,Miner at Radcliffe Colliery,28421,83397,43 +31558,Minero,198795,1044447,22 +31559,Sky,49199,21909,0 +31560,Jackie's Assistant,160160,1158758,8 +31561,Bobby D,393659,1649835,7 +31562,,391778,932503,5 +31563,Kane,9900,51997,10 +31564,Abbas' mother,420743,1693043,7 +31565,Annie,1404,16910,11 +31566,Grégoire Piaggi,348025,54291,2 +31567,Hella,12135,1129760,5 +31568,Birthday Woman,14923,61409,49 +31569,Mrs Bennett / Aunty Betty (voice),413770,11213,8 +31570,Yonkel (voice),32202,109071,9 +31571,Honey,87302,1544968,11 +31572,Young Merlin,7096,6367,11 +31573,Kelly,8460,51936,3 +31574,Jill Trevers,26503,36938,1 +31575,Jonas,204384,1207244,9 +31576,Marc,65646,37143,3 +31577,Carl Greig,15090,11357,0 +31578,Randy,35626,931645,9 +31579,Jennie Hagen,147618,8629,0 +31580,Petra,52251,8800,1 +31581,Phone Man,16890,22214,7 +31582,Del Giudice - Producer,75336,24629,4 +31583,Young Julia's Mother,84228,1082358,16 +31584,Rimma,65614,1067188,3 +31585,Dr. Marlow,49853,1648791,34 +31586,Borma,315837,1291958,17 +31587,Lui Yat Siu,18731,232940,2 +31588,The Jock,335970,1502296,85 +31589,Adam Zarrow,277710,1462,1 +31590,,61217,1173627,30 +31591,Stadium Soldier,82654,1141258,16 +31592,Viola,106944,24423,5 +31593,Evil Queen (voice),810,89042,15 +31594,Vanessa,146313,966053,5 +31595,La Dodi,85038,1293960,9 +31596,,52323,228,0 +31597,Fru Blomgren,27599,544706,6 +31598,Shane,45725,134083,1 +31599,,49522,151949,11 +31600,Judas,319396,1169322,1 +31601,Bonnie Roman,64972,101396,7 +31602,Michael,302036,1034704,3 +31603,Mary Weston,17332,2229,2 +31604,Emma,19794,85176,4 +31605,Metz,244786,1451545,16 +31606,Bent / Minister of the Interior,315855,40304,59 +31607,Ben Marshall,11404,10989,1 +31608,Colleen Calloway,79778,119219,1 +31609,W. Daingerfield Phelps III,102384,130491,1 +31610,Mrs. Walters,30307,7641,3 +31611,Earl Mills,54982,1213786,1 +31612,,170998,86060,4 +31613,Kharlamov,184155,562730,0 +31614,Policía,69060,1506427,17 +31615,,104945,25333,11 +31616,Felicia Petunia,142106,77133,3 +31617,Lisa,242310,1165616,6 +31618,Minister,9968,61171,17 +31619,Cinzia,297288,36322,3 +31620,Tim,279690,63857,7 +31621,Dr. Abe Anderson,401222,55148,2 +31622,Mrs. Kohan,60307,51800,17 +31623,,77673,1664062,26 +31624,Tereza,34588,1184846,13 +31625,Haley,17927,180408,17 +31626,Maria la prostituta,62713,138210,2 +31627,Moe's Father,25053,1059930,9 +31628,Mike White,54105,204509,0 +31629,First Director (uncredited),1976,74877,27 +31630,Ty,213681,1696152,14 +31631,Pauline,53865,931213,10 +31632,Mui Age 20,19552,113388,0 +31633,,376934,1555291,16 +31634,Major O'Neill,29805,4973,46 +31635,,286595,1198539,9 +31636,,135286,3582,4 +31637,,121530,1518859,13 +31638,Evelyn 'Evie' Stoker,86825,2227,1 +31639,Kate Preston,50506,70175,5 +31640,Mason (voice),82703,111923,7 +31641,Police Chief,103620,77150,13 +31642,Harry Browning,71503,108890,7 +31643,Captain,153102,655,3 +31644,Robin Jones,74465,11663,7 +31645,himself,190940,35780,8 +31646,Mimi,62297,235082,5 +31647,Dr. Robert Blane,50153,932263,6 +31648,Vater,2241,6093,4 +31649,Cheddar (voice),28275,81662,7 +31650,Woody Guthrie,5638,81551,12 +31651,Isai,2734,27173,24 +31652,Thermostat Girl,39053,14390,6 +31653,Shopping Cart,18387,30299,9 +31654,Leonard,5804,61510,4 +31655,Philip Herriton,59704,11278,0 +31656,Himself,85984,93328,3 +31657,The Bride,84944,1629876,5 +31658,Jazz Musician,229297,1418992,19 +31659,Mrs. Manners,36786,8829,11 +31660,Sylvia Fowler,13972,516,2 +31661,Father,338767,89558,6 +31662,Joey,414977,17928,9 +31663,l'américain,4974,390839,7 +31664,Deok-soo's mother,313108,93996,5 +31665,Shawna,318553,550596,4 +31666,Narrator / Cera's Dad,24554,44052,0 +31667,snipe,18977,104714,3 +31668,Harry's Friend,23512,1657148,11 +31669,Monica,339148,1338074,3 +31670,Lt. Edwards,193756,1283047,23 +31671,Himself,38931,6968,0 +31672,Kabar,194393,119985,9 +31673,Dr. Carla Kreisler,85699,31444,17 +31674,Nancy Messenger,153163,133340,3 +31675,,299165,1697802,23 +31676,David Locking,85435,109438,1 +31677,Elsa,62492,1816954,13 +31678,Amy,13805,20404,1 +31679,Paul Salerno,71996,101752,2 +31680,,146521,1124181,6 +31681,Det. Lt. Andy Doyle,59895,121257,0 +31682,Marilyn Lovell,44578,944113,3 +31683,Cody Wesson,46729,62910,1 +31684,BBC Weather Presenter/Herself,17725,1827934,27 +31685,,166393,1216607,8 +31686,Herself,241170,12214,3 +31687,,255160,1898244,31 +31688,Arsène Lupin,91380,91484,1 +31689,Tuxedo Man,196469,1241,4 +31690,Niomi,109391,156004,7 +31691,Ida,192133,17018,4 +31692,Un centurion,49398,218678,9 +31693,Ms. McGarricle,87428,56757,2 +31694,Truman,68684,1849984,18 +31695,Paul E. Cosick,54139,46711,5 +31696,,38099,119605,7 +31697,Claire,53861,87460,9 +31698,Stevie,390059,25908,6 +31699,Wardrobe Man at Benefit,18651,329782,35 +31700,Ri Tai,16074,79154,0 +31701,Vasco,19887,1054496,6 +31702,Lord Castleberry,29694,104662,8 +31703,Bodie,38579,1413795,16 +31704,Cheryl Stratton,24777,124243,0 +31705,Maggie,10025,19664,1 +31706,Yael Frankel,278632,1419649,11 +31707,,12622,555203,26 +31708,Additional voices,24432,17697,11 +31709,"Charles, Waiter (uncredited)",242631,2015,24 +31710,Gail,16175,79910,16 +31711,Young Hal Moffet,84720,179098,6 +31712,Waiter,10362,1660981,7 +31713,Sarah Becker,53792,1324779,19 +31714,Man in checkered jacket and top hat,118943,89518,0 +31715,Rhona Nack,340027,530,3 +31716,Himself,13516,559376,13 +31717,"Cutie Cuticle, manicurist",45838,133971,3 +31718,Mama Limbo,213755,160573,7 +31719,Young Michelle McNally,31977,85602,2 +31720,Commander Peter Harrigan,30921,11765,2 +31721,Funeral Home Associate (uncredited),43155,29974,14 +31722,le père de la promise,38787,10530,3 +31723,Pappass,24363,2157,0 +31724,Chi Chi / Thug #1 / Baton (voice),40662,59784,6 +31725,Herself,422878,27102,1 +31726,Eve Mancini,54523,10476,1 +31727,Detective Wayne,6973,18305,19 +31728,Doctor (uncredited),174925,128324,16 +31729,Young Man 1,244539,1508817,11 +31730,Cécile,55853,6019,6 +31731,,88491,985072,2 +31732,Running Wolf,41604,8496,7 +31733,Robert Latour,61109,3244,1 +31734,Newman Hicks,67328,95748,8 +31735,Haru Okuno,99188,124402,1 +31736,Teacher Umemiya,108634,33134,2 +31737,Vanita,121598,1173622,18 +31738,Bonesman,1247,928532,16 +31739,Rachel Jansen,9870,18973,2 +31740,Militia Man,380731,1643341,16 +31741,Young Jacob 'Jake' Heckum,319910,1528094,13 +31742,Nurse,30941,734,23 +31743,Undetermined Role (uncredited),105548,1086710,18 +31744,Casey,6557,20750,3 +31745,Tianna,14423,74612,7 +31746,Iris,49689,19943,4 +31747,Sargento,82767,1211012,2 +31748,Rob,54022,76526,9 +31749,Prosecuting Attorney,150712,34008,46 +31750,Yuanjia's Mother,7549,1035980,4 +31751,General Hurst Romodi,330459,1231968,32 +31752,Joe Albany,244580,16861,0 +31753,Mother,13763,50744,3 +31754,Javier,26736,1636951,8 +31755,,38010,1082700,20 +31756,Elsie,128900,3884,9 +31757,Margaret Northup,76203,1055235,17 +31758,Xavier,43281,129434,3 +31759,Dying Soldier,1966,1256162,39 +31760,Magd Gertrud,226001,1313066,7 +31761,Dan,348631,1667483,20 +31762,April Brenner,211144,18331,3 +31763,Satin,88036,51944,3 +31764,Chicken Fish (voice),127380,8066,18 +31765,Manish Pandey,118809,86245,3 +31766,Kevin,56809,1833805,14 +31767,Kent McFuller,397837,116088,2 +31768,Sergeant Sam Taliaferro,59735,115858,0 +31769,Lt. Max Mohnfeld,25385,93655,3 +31770,TV News Anchor,32526,1176955,19 +31771,Roger Jackson,295723,1418164,7 +31772,Pete,4964,22226,3 +31773,Nien Nunb,140607,1249957,35 +31774,Ben Hall,425774,1707748,0 +31775,ragazza solarium,379873,1464599,17 +31776,John Gilbert,425774,1707746,6 +31777,Slava,142757,87002,9 +31778,Henry,11547,91612,5 +31779,Rose Perl,19338,1579259,17 +31780,Funeral Attendent,379959,1604104,17 +31781,Burwell,9966,38405,3 +31782,Guard,323675,1386325,35 +31783,Man with Cigar (uncredited),32552,1421138,44 +31784,Older man (uncredited),369524,1151320,52 +31785,Suzy Ponchabert,61765,39148,4 +31786,Rahul,160261,1581785,7 +31787,Waiter,91259,52616,8 +31788,Smell,11798,1252524,9 +31789,Bluto,12447,95061,11 +31790,Droid,76757,1278780,45 +31791,Pooja Malhotra,39839,35781,1 +31792,Hedi,30929,95512,3 +31793,Harry,28090,98927,8 +31794,Iusuf Pasa,112675,1092494,5 +31795,Olly,1922,19999,6 +31796,Eric Hillridge,70821,450366,5 +31797,Joseph Conlon,23590,90369,2 +31798,"""Coward""",65713,86670,8 +31799,Jenna Allen,9893,60079,17 +31800,Bob,76203,1344358,45 +31801,66,54715,54044,2 +31802,Claire Fielding,118716,3340,1 +31803,Gozen-sama,253232,33135,3 +31804,Laura,9993,61633,8 +31805,Bellboy,60199,230726,0 +31806,Cop #1,9914,60424,19 +31807,Eve,13668,57992,6 +31808,Russian Soldier (uncredited),337339,1718171,41 +31809,Zhou Chongguang / Lu Shao,270842,1193310,5 +31810,Rodger,236324,1896152,17 +31811,Bouncer,81475,200598,12 +31812,Seo Geum-ok (young),77117,561199,8 +31813,König Jacob,268712,1150071,2 +31814,Ishi - Samukawa,36917,555155,4 +31815,Slim,329805,1650409,12 +31816,Coyote,55534,237532,16 +31817,Woodsman (Twin A),44257,123517,2 +31818,Alex Conroy,267793,1254586,12 +31819,Anne,320588,60632,14 +31820,Charles M. Lawton,111582,80236,9 +31821,Princess Fiona (voice),810,6941,2 +31822,Proprietor,283995,51456,35 +31823,Au Ru Kwai,41380,548617,7 +31824,Crab,91333,78890,8 +31825,Police sergeant,25074,119454,19 +31826,Professor Meyer,98349,21154,13 +31827,Arnold Mosk,30492,41686,7 +31828,Madame Fessier,40985,67761,7 +31829,Hector Duncan,10087,63137,11 +31830,Dick,26405,12536,5 +31831,Darryl,41733,134,3 +31832,Yau Ling,107682,109301,10 +31833,Johnathan Drummer,296523,1637129,6 +31834,Principal (voice),27300,119232,8 +31835,Thickset Townsman at Webb's Cafe,28775,151886,16 +31836,Count Alexander Volsky,81030,2437,10 +31837,Michael,22894,6162,0 +31838,Garota da Piscina,70666,1863900,41 +31839,Theatregoer,43809,1205434,39 +31840,Josh,244801,1280064,4 +31841,Yoga Instructor (uncredited),15092,1009255,91 +31842,Military Family Member,424488,1642637,19 +31843,,353879,60611,9 +31844,Harry Brown,25941,3895,0 +31845,Violet's Victim,101998,20696,19 +31846,Mrs. Lopez,63139,65421,6 +31847,Kit Beverly,43855,1195993,15 +31848,The bureaucrat,173494,1522409,1 +31849,Anne,253794,523979,5 +31850,Peter,345054,233298,8 +31851,Freddy Tomb,4983,40380,5 +31852,Violet,358353,1910,4 +31853,Politiassistent Holm,11391,73925,5 +31854,Mary Nolan,43441,99329,6 +31855,Woody,130925,31,0 +31856,History Teacher,22881,968305,15 +31857,Kama,5040,22590,1 +31858,Maria,49712,128410,18 +31859,J.J. 'Big Joe' Helton,13911,126749,4 +31860,Skip,102961,56117,3 +31861,,347835,1074242,1 +31862,Skeeter,244610,130768,6 +31863,Aleksandra Nikolaevna,17479,150017,0 +31864,Police head in charge of the jurisdiction,346646,1294772,17 +31865,Holly Jones,146233,6832,4 +31866,Lt. Dawson,3556,10169,5 +31867,Shining Water,86543,152823,10 +31868,Dad,327528,230,3 +31869,Prospero,5048,11857,0 +31870,Francis à 20 ans,372640,930288,8 +31871,The Judge,120497,14968,4 +31872,George,65123,240556,2 +31873,Police Inspector,40130,39151,3 +31874,Sgt. Nickerson,78461,16841,5 +31875,Mellet,77922,1196407,5 +31876,John Greer,152736,568321,10 +31877,Joan Rivers,274479,173065,20 +31878,Harry Grant,31167,18805,0 +31879,Red Bikini Babe,52454,1630346,46 +31880,Phil,87428,62831,9 +31881,Marc,341745,44641,3 +31882,Shopkeeper,375170,1649295,5 +31883,Old Ramon Estado,44869,105007,8 +31884,George Harrison,33511,118166,12 +31885,Extra (uncredited),44943,1205905,58 +31886,Countess Korotkova,47190,1261778,2 +31887,Ann Stanley,42456,11916,0 +31888,Smudge,239845,1274945,6 +31889,Larry Belmont,4111,19406,2 +31890,Football Urchin,203833,1445749,13 +31891,L'americano,58773,103607,6 +31892,"Frederica Charlotte, Duchess of York",144613,14871,4 +31893,Gothic Librarian,14432,76878,7 +31894,François,162458,51112,2 +31895,Dr. Tod/Frau Neumann,3539,32421,4 +31896,Tammy,406992,50948,9 +31897,"Patouilloux, le maire de Jaligny",78377,19647,3 +31898,Other Mother in Store,27414,1105000,29 +31899,Sgt. Treskow,212530,74,2 +31900,Magician,42494,4203,4 +31901,Mike Allison,142145,58423,0 +31902,Agent Colantoni,52808,98774,10 +31903,Miyako's mother,32690,131193,7 +31904,Bruce Carlton,104720,35320,1 +31905,Milosz,246655,1796395,40 +31906,,19621,1054297,23 +31907,Sputnik,12631,1872452,12 +31908,Potin,129553,23708,6 +31909,Terencio,198795,30307,19 +31910,Crawford,67794,740,2 +31911,Pool Player,443053,1763224,1 +31912,Diana Newley,83079,100816,5 +31913,Joan,42542,1195966,10 +31914,Elder in Norway,43812,131045,21 +31915,Toni Kurz,16436,11953,0 +31916,David Higgins,40217,184470,3 +31917,Divine,340275,1531603,41 +31918,Denise Laville,64362,35611,1 +31919,Dr. Evans,14262,76500,9 +31920,Calvin,88641,936397,7 +31921,Kidnapper,49712,146997,25 +31922,Liam's Father,362180,1790584,15 +31923,Beth Stein,20107,57854,2 +31924,,2516,199883,13 +31925,God's Voice,39347,35780,6 +31926,"""Soczek""",382155,1636700,30 +31927,Bellboy,36612,40212,18 +31928,Justine,43045,104412,1 +31929,Omi,60392,110200,2 +31930,Himself,103215,33684,1 +31931,Grover Girl,32657,1507602,42 +31932,,33340,232471,5 +31933,Doctor,228496,57598,3 +31934,(uncredited),43522,101996,17 +31935,Secco,41427,126444,6 +31936,Morag McPherson,9756,3069,7 +31937,Tim,260001,11702,2 +31938,Léone,779,11587,1 +31939,Soldier (uncredited),297762,1461309,89 +31940,The Pigman,6976,10021,4 +31941,Dwayne,218778,66525,26 +31942,Grandma,237584,1084581,23 +31943,Girl at the Treatment Home,33340,1310711,8 +31944,Himself,9951,117264,10 +31945,Headmaster,51144,550143,3 +31946,Hank,348389,970216,3 +31947,Umberto,53399,236080,6 +31948,Sikorski,128081,1094124,6 +31949,the older Casanova,122023,11390,2 +31950,Mick Brazil,194101,11285,4 +31951,Yukon Bar Patron,76170,132639,19 +31952,Maradona's wife,310593,557004,23 +31953,Achim Delvental,3962,1852,1 +31954,Evangelist,276401,155222,8 +31955,Tense,38027,1762434,25 +31956,Ophelia,125705,64908,3 +31957,Kennedy,44022,31551,3 +31958,Schmitt,87759,586216,3 +31959,Francis Gascoyne,24442,31350,8 +31960,Monteray Tavern Hotel Clerk,31899,1055686,27 +31961,Cyrus Anderson,120497,4091,1 +31962,Baldy,90406,55701,9 +31963,Andy,338767,1463026,3 +31964,H.B.,43753,129805,11 +31965,Arabella,70122,1435542,0 +31966,Himself,42093,1776538,4 +31967,Markov,30374,1236357,9 +31968,Diana Monti / Marie Verdier,56800,146195,1 +31969,Keith,7326,1582008,25 +31970,Juliette,15713,469759,4 +31971,Hot Mama,20210,75337,8 +31972,Corporal Cutting (uncredited),16442,975692,39 +31973,Talaat Pasha,354859,204802,25 +31974,Judy (uncredited),18826,145245,15 +31975,Sue Leonard,34977,80650,6 +31976,Charlene,254188,172056,7 +31977,Shookie Rose,110160,59616,21 +31978,Wolf,12128,1241192,4 +31979,Cinema owner,10834,558892,6 +31980,Map Genie,59861,54645,7 +31981,Sergio,120922,141115,10 +31982,Denton Smith,10139,467645,10 +31983,Boy-Robin,306952,512749,5 +31984,Wilberforce Drone 2,32932,235023,6 +31985,Coffin Salesman,24731,1187261,10 +31986,Tondie,13960,962185,11 +31987,Jesse Crawford,337789,23091,0 +31988,Thomas,294254,527393,0 +31989,Herself - Make-up Artist,97724,1388681,31 +31990,Michael James (as Darren Burrows),30082,16428,2 +31991,L.A. Peterson,90406,84935,7 +31992,Peter,2764,27962,6 +31993,Shahrzad's Father,238204,1261530,1 +31994,Roy Campanella,132328,1818,0 +31995,Sailor,42242,92757,19 +31996,K-2SO,330459,21088,5 +31997,,11643,29428,10 +31998,Nubian Prince,24973,976235,20 +31999,Yoshio Motoyama,21966,2542,10 +32000,Ocinski,239563,995205,9 +32001,Johnny Cadillac,244316,33527,6 +32002,Cafe Lounger,14554,1060265,10 +32003,Frank,87123,74875,5 +32004,Marni Wallace,14353,76696,8 +32005,Himself,85984,7167,7 +32006,Tom Thumb,62670,109,1 +32007,Pipino,110447,1076595,8 +32008,Pratap Ravi,49028,85668,0 +32009,Lithuanian Backpacker,6687,231869,14 +32010,Waiter,11404,1824595,11 +32011,Jack 'Legs' Diamond,43046,33722,0 +32012,Scared Man,102668,1031789,20 +32013,Reverend Price,10918,134907,27 +32014,Dean Foster,43023,47662,6 +32015,Nishi Goro,45441,137029,18 +32016,Dr Simon Chase,50942,8977,0 +32017,Cana Wedding Guest,3059,32427,34 +32018,Whitey,79500,154299,7 +32019,Ken Crowley,49508,10161,4 +32020,Soo-Jung Bae,376252,1248204,1 +32021,Roland Järverup / Micke / Lasse Kongo,16076,74699,0 +32022,Lin Biao,25626,1335021,56 +32023,Pätkä,148435,232310,2 +32024,Wonder Woman / Lois Lane (voice),300424,15761,4 +32025,Earl of Radcliffe,104720,29283,5 +32026,Narrator - Ethiopia (voice),173205,5064,6 +32027,обходчик,49653,142505,3 +32028,Joanie,94204,57451,0 +32029,Himself - Co-Host / Narrator / Clip from 'The Band Wagon',33740,30181,0 +32030,First Teamster,147829,1090894,26 +32031,Osric,48209,5797,8 +32032,Mutant Child,263115,1435479,73 +32033,Charlie,11172,1024027,15 +32034,Journalist,47959,1099402,22 +32035,Jayne,16320,2059,4 +32036,,41261,125941,0 +32037,Matt Walker,281215,64811,2 +32038,Jerry,82080,238041,13 +32039,Julian Assange,326723,150882,2 +32040,Shige,55197,213497,9 +32041,Father Frank,297853,126583,4 +32042,Orco,74645,30901,5 +32043,Gwen (voice),108048,931533,2 +32044,Himself,253263,550297,1 +32045,Jaskari,286267,1352110,9 +32046,Alice Gayner,164504,120525,1 +32047,Guia,38328,1135593,12 +32048,May,4923,22370,2 +32049,Mike,322548,1650301,6 +32050,Darnetta,14923,1386347,21 +32051,Caesar's Blackjack Dealer,332979,96095,20 +32052,Faradel,51945,24832,6 +32053,Stepmother,104193,552315,1 +32054,Sara,314283,83218,0 +32055,Eva,63612,98357,1 +32056,Corrupt Police Officer,362150,1055740,18 +32057,Ms. Wittenberg,23367,95363,12 +32058,Man with Nitroglycerine,55604,10527,31 +32059,The Director,43976,120226,2 +32060,Neighbour on the Right,51406,1058278,0 +32061,,53693,19356,9 +32062,,97088,1605451,9 +32063,Red,268920,84407,19 +32064,Ballet Dancer,18548,1795293,11 +32065,Padre de Luis,54236,118127,5 +32066,,277631,83145,3 +32067,Sidney,34729,44838,6 +32068,Arnold Rothstein,43022,51377,0 +32069,Tom Norton,52360,30530,6 +32070,Irene,49950,81164,5 +32071,Detective Lippenholtz,18530,82647,18 +32072,Bernie Garces,23853,5139,9 +32073,Kirby,773,17421,8 +32074,Kari,25335,93565,3 +32075,Theresa,27629,98467,6 +32076,Madam,13802,9907,8 +32077,Amir,461955,1198931,2 +32078,Alvin Lee,31596,104321,2 +32079,Luanna Baxter,85023,975832,2 +32080,Suspect #1,335778,1582159,30 +32081,Belgian Dignitary,10204,955709,20 +32082,Manager,13279,74578,14 +32083,Kotharala Thevar,66340,150197,3 +32084,Professor,60086,79496,12 +32085,Survivor,278706,1334330,4 +32086,Additional Voices (voice),24238,77562,8 +32087,Angie,209406,1073006,10 +32088,Sajith,341420,1478683,3 +32089,Caterer,46261,210653,5 +32090,James Suh,193756,1278776,8 +32091,Sicilius Leonatus,240745,8984,6 +32092,Additional Voices (voice),328111,12077,19 +32093,Germaine Beardsley,27983,60698,7 +32094,Colaboración Especial,347666,225017,7 +32095,,81463,1380773,3 +32096,Fabio,203539,20262,4 +32097,Allyson Miller,26267,90033,0 +32098,Doctor Who,26581,5,0 +32099,Yale,125300,1081120,2 +32100,Secretary,339419,1650169,38 +32101,Alexa,15671,88620,4 +32102,Karl Speckenbach,130739,5646,3 +32103,Killer,34459,1038143,9 +32104,Helena,73624,569891,1 +32105,Randi Bash,69898,557435,13 +32106,The Prince,345915,65829,7 +32107,Dr. Benjamin Cisco,298695,20277,1 +32108,Chief of police,115531,6931,3 +32109,Barbara,75622,38024,11 +32110,Cristy 5 Years Old,274479,1496292,27 +32111,,56095,1475022,16 +32112,Outgoing Watchman (uncredited),14615,1059460,34 +32113,Sgt. Toll,324670,59671,1 +32114,Eitaro,25659,81281,4 +32115,"Jiang Qingxia, 3rd Sister",64304,1073193,7 +32116,Inspector 'Flatfoot' Rizzo,11048,18841,0 +32117,Air Force Colonel,365942,106746,44 +32118,Roberto,306555,73867,4 +32119,Georgette,312669,1231,2 +32120,Mrs. Wetham,49500,40942,7 +32121,Opa Gerrit,67499,1248644,1 +32122,State Senator Sills,94248,15993,2 +32123,Reverend Green,107985,17078,20 +32124,,54858,937849,9 +32125,Vinny,26390,1056523,19 +32126,David Reich,72421,1084,3 +32127,Driving Instructor,70772,559660,12 +32128,Beth Ann,63877,43903,7 +32129,Callipyge,292387,1363529,6 +32130,senator Wencel,18575,1405,3 +32131,Miketov otac,259690,569973,4 +32132,Bride,31273,107874,21 +32133,,94696,1190224,10 +32134,,267506,108277,1 +32135,John Watson,191820,28478,4 +32136,Elderly Levite,30973,107412,17 +32137,Nick Gleason,308269,1225377,11 +32138,Burt Stennis,84496,22048,12 +32139,Mr Li,45452,1414273,9 +32140,Roberta Pollard,407448,1863673,40 +32141,Véronique Simard,270886,1321963,1 +32142,German Malingerer,19996,1764147,44 +32143,,359807,1264129,9 +32144,Velma,27543,34437,5 +32145,Tina,397717,1273248,8 +32146,Woman at Bus Stop,114377,1058613,3 +32147,Shirley Randolph,29424,103819,2 +32148,Nabil Mashrawi (as Jameel Khoury),128154,544186,2 +32149,Account Executive,42231,1359433,10 +32150,Alan,85431,1323225,8 +32151,Max,252028,1287320,7 +32152,,210068,140745,10 +32153,Nikolaj,72054,82106,1 +32154,Willie Ramos,297853,1790433,21 +32155,Doctor Bethel,333354,1459066,10 +32156,Rille,14357,76749,0 +32157,Padmasri,80276,113810,5 +32158,Dorothy,42542,1015796,7 +32159,Laughing Psychiatrist,47057,137999,3 +32160,Jim Warrilow,172908,39952,2 +32161,Tammy,116463,1691469,15 +32162,,188640,1238167,17 +32163,Sam Salt,875,8728,4 +32164,Party Guest,16175,79906,12 +32165,Daniel Lerhmann,16092,79290,2 +32166,,78323,583738,7 +32167,Leo Poplar,55725,4521,6 +32168,Team Manager,67531,32437,7 +32169,Rocco,263873,104509,4 +32170,Johann Friedrich Struensee,88273,1019,0 +32171,,28746,110554,4 +32172,Mrs. McCormick,11171,1951,4 +32173,Staff Girl,360606,1406026,6 +32174,Jim Harris,84496,3467,13 +32175,College Girl,16005,58356,3 +32176,Maersk Alabama Crew,109424,203541,14 +32177,Michelle,13468,40060,3 +32178,Vagrant,141733,26093,10 +32179,,458428,1820243,7 +32180,Basiel,76059,91715,2 +32181,,79216,1587599,4 +32182,,38099,119652,19 +32183,Gildo,162056,271664,11 +32184,Arrietty (voice),51739,36592,14 +32185,Cain,45273,980,1 +32186,Julian,8886,6268,7 +32187,Mr. Bigelow,21950,101755,6 +32188,Jim Wade,28564,32428,1 +32189,Jake,59965,1011103,12 +32190,"Head priest (segment ""Miminashi Hôichi no hanashi"")",30959,7453,21 +32191,Papa Max,15414,17353,16 +32192,Karemaru,15067,141546,9 +32193,Patrol Witch / Wagon Witch #2 (voice),10192,25703,10 +32194,Mary McGinnis,16234,8437,16 +32195,Sadazo Morikawa,133160,133886,2 +32196,Stuart Nicklin,72094,97430,8 +32197,Himself,173467,10952,11 +32198,David,31074,21475,2 +32199,,21181,93119,0 +32200,Stevie Lucas,4982,76126,23 +32201,Spider,240745,1660683,18 +32202,Ed Bass,40852,27993,3 +32203,Extremis Candidate,68721,1215021,52 +32204,Cute Guy with Dreads,40807,1366786,26 +32205,Lord Dearsley,181876,15387,8 +32206,Milo,64204,1646170,4 +32207,Soccer Pal Olivia,9779,1225909,23 +32208,Bartender,255160,1898247,34 +32209,Blair,43811,1005423,62 +32210,Hugh Sainsbury,181876,941781,10 +32211,Delphine,102362,1272979,24 +32212,Tammy,82687,46814,9 +32213,Sumitra Devi,254420,35810,1 +32214,Reese,76101,39660,2 +32215,Piffen,49717,1089959,8 +32216,Harlen,205798,53088,4 +32217,Banky,50725,417,27 +32218,Salgari,63304,1680203,14 +32219,Thurgood,244539,1508824,14 +32220,"Herself, others",282268,10733,6 +32221,Yoo-kyung,214910,939137,8 +32222,Geneviève,44155,1319820,14 +32223,Hélène,8282,27980,3 +32224,Bewaker,74661,572286,7 +32225,Katy Rigby,157829,76999,7 +32226,Doug,192623,53280,8 +32227,Müjgan,48763,147848,3 +32228,Marshal Fred Woodruff,144471,12356,4 +32229,Jessie,174925,130494,8 +32230,Amy Morgan,11137,19958,5 +32231,Mrs. Drago,95136,54122,12 +32232,Memo Rojas (voice),49013,1443757,46 +32233,Judge Benby,42619,61150,6 +32234,Bell Captain,54570,14664,13 +32235,Jesse James,40852,82629,0 +32236,Jake Bannion,134238,1017631,4 +32237,Minoru Wakita,391642,1151842,9 +32238,Gendarmeriemajor Boeckl,457,6256,6 +32239,,362617,1285394,5 +32240,Anders Darre,57438,213419,18 +32241,"Frédéric, le père de Yuki",52637,23388,3 +32242,Amazonian Warrior,297762,1830144,40 +32243,,85317,87409,3 +32244,Orłyk Libera,406449,1650395,30 +32245,Cochise,188161,15853,8 +32246,Jonish Kukoc,158750,17837,7 +32247,Graciela - newly-married wife,36971,556471,4 +32248,,42944,52937,5 +32249,Rachel,13596,59263,4 +32250,Andrea,301334,47615,4 +32251,Jacques Riboudeaux,52847,14261,2 +32252,Lucien,8071,149008,5 +32253,,264454,1309623,5 +32254,Mrs. Cheung,9030,3134,9 +32255,Steve Collier,207178,209585,12 +32256,Bearded Man,9828,534,10 +32257,Beverly Dumont,71825,33613,7 +32258,(voice) (uncredited),10193,214701,42 +32259,Maya,203780,146399,2 +32260,Emma Bovary,45184,39554,0 +32261,John,29638,101183,8 +32262,SAC Colonel,20674,169293,22 +32263,Bike Kid,272878,1683792,31 +32264,Football Player #1,41402,1112415,20 +32265,Fattore Rocco,146596,586396,7 +32266,Inmate,172520,1398257,12 +32267,Dr. Henry A. Heckel,50073,25176,5 +32268,Friend of Dean on Podium,26323,589217,15 +32269,Mr. McGowan,243683,63791,20 +32270,Bar Companion (uncredited),1976,120700,42 +32271,Radio station director,65787,34119,10 +32272,Mulher 1 Boate,296288,1839927,30 +32273,Miss Bagstock,10748,10731,7 +32274,Chambers,13954,76540,9 +32275,Jack Caper,11338,5605,12 +32276,Lana,104973,38591,1 +32277,Jackie,55735,22090,6 +32278,Reggie,257447,2712,1 +32279,Rebecca,169881,1078568,4 +32280,Businessman's Wife,18548,1252521,8 +32281,Kader,44246,40024,4 +32282,Reveller,53403,13848,0 +32283,Trailer Park Resident,186869,1862903,30 +32284,Clerk,8988,1108830,26 +32285,Camille,241930,1188048,8 +32286,Martha Tinsdale,32790,31187,2 +32287,Vicky Edwards,3023,29644,5 +32288,Himself,400668,1821655,2 +32289,Le facteur,103597,950125,9 +32290,,8939,454589,1 +32291,Junior,214138,1198777,2 +32292,Mr. Zoric,41402,13939,10 +32293,Pinche Mariano,25376,968353,7 +32294,Explorer's wife / Aurora's friend,93858,150514,10 +32295,Dominican Monk,1381,20196,11 +32296,Finnbogi,115712,1061942,0 +32297,,18729,84678,10 +32298,Cherep,40709,124423,2 +32299,Heather,251232,1603267,10 +32300,,105760,237832,11 +32301,Soldier,178446,5214,35 +32302,Rita,63281,568728,3 +32303,Beksa,293982,136575,23 +32304,Himself,85910,1430,4 +32305,Pedestrian (uncredited),339403,1635140,47 +32306,Chaplain,38303,16506,14 +32307,Verna,21753,130794,7 +32308,Lori Collins,72105,18973,1 +32309,"Lieutenant, Radar Officer",36089,98451,8 +32310,Eddie Mars / Tom,68629,27176,0 +32311,Inspector,51276,1638436,10 +32312,Japanese Announcer,7459,112832,22 +32313,Herself,13196,21197,9 +32314,Wallis Simpson,65035,59864,11 +32315,Patrick O' Malley,19606,15112,0 +32316,Barnaby,156711,1203293,28 +32317,Monk Wu Li,66756,1415251,5 +32318,Regent Hotel Concierge #1,240832,1123732,46 +32319,Andy Riley,333354,1652853,7 +32320,Rosemary,14029,1041366,8 +32321,Sergeant Smit,18927,1012401,7 +32322,Dylan Klebold,409502,1661269,14 +32323,Boomer,15043,266618,6 +32324,Ned,412202,1118363,2 +32325,Hospital Visitor,31445,30299,20 +32326,Mimura,79382,87637,15 +32327,Man,146243,1123882,9 +32328,Man at Port Authority,12182,18472,14 +32329,Peter Madly,353728,56262,1 +32330,Grim Reaper,12483,182931,12 +32331,Talia (voice),146381,36592,0 +32332,Heidi,58757,228344,0 +32333,,327225,1139665,9 +32334,Melissa (uncredited),19286,105000,13 +32335,Fabrice Chapelier,157787,54274,2 +32336,Tate,456101,1265154,2 +32337,Ulisse Cecconato,142979,15135,0 +32338,大雄,265712,1521132,17 +32339,Fratty Guy,369033,1647314,18 +32340,Sugar Torch,27045,1239950,7 +32341,Wetherby,42852,106633,6 +32342,Robin,259694,221581,1 +32343,Samantha 'Sammy' Woods,63924,5480,1 +32344,Carmichael,32921,113759,14 +32345,Sam,285869,584542,1 +32346,'Dawn' Aviva,13073,80543,3 +32347,Alexa,336011,1102331,4 +32348,Man at Cousin's house,19482,64454,5 +32349,Brancifiore,62349,235207,4 +32350,Vern Cote,35320,53119,9 +32351,Enfant homme cambriolé,305455,1843661,12 +32352,Arzt,12575,34383,8 +32353,Recon Guy #2,424488,932073,39 +32354,Carson,15261,78030,0 +32355,Lu Wenhu,64304,1042681,10 +32356,Slim,157847,1765440,19 +32357,Bartender,3059,928233,30 +32358,Uncle Joe,15020,230,9 +32359,Mother,332567,1644278,8 +32360,David,403130,67151,6 +32361,Ethan Rawlings,10594,65772,11 +32362,Governor of Gibralter,77794,39741,6 +32363,Elvis Kelly,1125,107939,14 +32364,Giovana,72660,566883,1 +32365,Larry White,2267,11678,4 +32366,Lord Splayven,19350,37698,10 +32367,Interviewee,32694,82270,23 +32368,Julián,122525,131954,1 +32369,Dr. Sam Jorgenson,90030,2648,0 +32370,Stan,50916,89670,0 +32371,Tat Ming,17457,118350,10 +32372,Ashley,405388,1470818,6 +32373,Anjali Thapar,20623,6520,9 +32374,Gracie's Sister (uncredited),16442,1468686,73 +32375,Sgt. Dick Sheen,55681,1086563,2 +32376,General Xu Gui,11653,80374,6 +32377,Lambert,44190,96722,14 +32378,Alex (6 yrs),200727,1734969,22 +32379,Sheriff Ike Vallon,31548,30017,14 +32380,Record Shop Girl,177677,1345419,14 +32381,Jordan,283686,9029,3 +32382,Christian,74674,1184,1 +32383,Deputy Halik,31462,408,2 +32384,Cabaret Singer,229297,29408,17 +32385,HBO 24/7 Narrator (voice),312221,23626,15 +32386,Sam Kramer,39195,1370,0 +32387,Thane of Cawdor,225728,1563381,20 +32388,Brance,140607,228968,25 +32389,Mme de Rochereuil,99579,19363,8 +32390,Dr. Mandrakis,10053,9128,5 +32391,Kasumi,87296,548038,6 +32392,Clown,406052,1676158,18 +32393,Lt. Hilary,67377,140167,4 +32394,Lanie Drachev,18472,79343,9 +32395,Reginald,181533,8854,13 +32396,Mercedes,35032,1508012,9 +32397,Lakshmi,337876,1246781,6 +32398,Saïddou,37779,118511,4 +32399,David Howard,86241,30601,10 +32400,Eduardo,70863,78320,6 +32401,Obesandjo,17654,1198931,26 +32402,Carlos,71114,19803,2 +32403,(voice),63486,239457,12 +32404,Man Singing,114444,1115628,10 +32405,Himself,24235,5576,5 +32406,Hugh 'Cup' Cuppernell,227306,224181,5 +32407,Winns,20842,161310,8 +32408,Gloria,374614,20188,5 +32409,Arrietty (voice),51739,227611,0 +32410,Autograph Seeker #1,8414,122549,15 +32411,King Twala (as Baziga of the Watussi Tribe),43388,1712381,8 +32412,First Officer Bowns,40765,85899,3 +32413,Mr. Steuben,229610,85736,5 +32414,Bourgeois,151068,1540569,14 +32415,Himself,15258,83350,9 +32416,Lionel Carpenter,102841,7904,0 +32417,Kainan,10529,8767,0 +32418,TV Reporter 2,64450,1084990,20 +32419,Rainer,1912,677,0 +32420,Alice (voice),32202,109073,10 +32421,Lemonadie Sadie,257344,1202534,30 +32422,Helmut,139170,196275,3 +32423,Creature,1450,65640,15 +32424,Le patron du café,10268,64546,10 +32425,Rhonda,369033,1647316,21 +32426,Simpkins,99909,34036,22 +32427,Shank,25919,1196143,2 +32428,Mrs. Morita,16240,80188,19 +32429,Frank Wiley,358982,224361,9 +32430,Arthur Brickman,9541,21593,9 +32431,Maresciallo di Monte dell'olmo,64526,226029,5 +32432,Lt. Col. James Edwards,321039,1507141,19 +32433,Rafnar,458335,1431773,4 +32434,Anna Murge,120972,1350330,6 +32435,,288977,107561,9 +32436,Tommy Gun,394822,1475232,8 +32437,But! Boy (uncredited),16442,14454,20 +32438,El Zurdo,195522,1175908,3 +32439,Rajeshwari / 'Rajjo',192675,35068,3 +32440,Elishama Levinsky,84636,592634,2 +32441,Günni,27637,48694,4 +32442,"Rouquemoute dit ""Le Rouquin""",74878,19632,10 +32443,Taylor Moss,15148,9208,3 +32444,Party Girl,77930,1784679,78 +32445,Lewellen Howland,11577,49353,14 +32446,Blind Chan,182127,126807,12 +32447,Amos Kyne,36786,33007,10 +32448,Mailler,34944,113511,7 +32449,Emma MacGillicuddy Wilton,44208,223052,7 +32450,Table Surfing Student,246655,1796423,75 +32451,Mr. Johnson,40028,98437,2 +32452,Brad,284296,521563,6 +32453,Hunting Zombie (uncredited),82654,1547887,32 +32454,Nate,321160,55205,6 +32455,Fighter,71120,1872249,28 +32456,Pride,33495,130873,12 +32457,Himself,253337,1788334,22 +32458,"Berengaria, Princess of Navarre",58905,85848,0 +32459,Dee Dee,170517,83436,6 +32460,Ingrid,4529,28146,2 +32461,Aaron,258947,1050631,1 +32462,Russell,89325,28633,4 +32463,Charles Mason,43117,141599,14 +32464,Jet Chow,15640,556728,18 +32465,Mrs. Scott,242382,91654,4 +32466,"Jinan, Kousaku (as Hideo Mitsui)",135335,96804,4 +32467,Board Member #2,62213,1184168,20 +32468,Piero,187737,25815,4 +32469,Le commissaire Séléna,61361,37758,1 +32470,Delilah Johnson,47921,89101,4 +32471,Kris Miller,26042,56551,1 +32472,Doctor,94525,1165731,3 +32473,Raoul the Maitre D',83802,37438,5 +32474,Vicky,63376,237045,0 +32475,Mr. Blanton,43792,48962,8 +32476,Background,408508,1707551,14 +32477,Tom (uncredited),16442,105759,94 +32478,Bumpo,7220,82415,10 +32479,Jack Forrest,28090,11357,3 +32480,Sam,370234,18262,5 +32481,Nam-hee,284135,1142181,6 +32482,Various,18809,149980,6 +32483,Himself,376394,1559492,13 +32484,M. Delaunay,77776,266665,10 +32485,Hoppy - Billy (as Bradley Mora),29835,105020,4 +32486,Vidyadhar Verma,33556,227849,4 +32487,Tonn,17111,81255,3 +32488,Maria,331354,45060,0 +32489,Ethan Hunt,56292,500,0 +32490,The Biker,328589,1529373,32 +32491,,298522,1217563,2 +32492,Luz,268735,62976,14 +32493,Himself,157117,3186,0 +32494,E.R. Nurse,89492,1242819,23 +32495,Jim Norton,369524,135855,13 +32496,Omar's Sister,187028,1728946,10 +32497,Dylan Dog,43935,17271,0 +32498,Krista Macmichael,79329,586526,2 +32499,Billy 'Pet' Petricoff,146238,6183,6 +32500,The Theologist,186971,27978,4 +32501,Isaac,222935,232006,2 +32502,,20646,43664,6 +32503,Juka Ogadowa,93828,206919,6 +32504,,289278,225636,5 +32505,Stephanie,86131,99208,4 +32506,Abe Fortas,63505,12515,1 +32507,Mr. Lowry,9664,11276,10 +32508,,412202,5312,7 +32509,Penny Kalisto,179826,1404645,13 +32510,Jennie,29094,21878,7 +32511,King Crab,212996,83358,7 +32512,Bus Stop Girl,130278,21711,6 +32513,Agent,222517,240920,15 +32514,Biffer,22387,5832,5 +32515,Drunken Neighbor,31899,30144,15 +32516,Small Hallow,312831,1532259,6 +32517,Track Official,118889,34208,16 +32518,Mrs. Ann Morton (Fred's mother),26801,2934,4 +32519,,140231,86213,5 +32520,Princesse Jeanne,79892,588202,7 +32521,Nancy,42552,128192,6 +32522,Leo,38546,72028,5 +32523,The Cook,310135,141673,33 +32524,Priest (Father Dino),13477,39213,10 +32525,Keith Drummond,120478,1072874,5 +32526,Mina,77338,1411817,10 +32527,Judy,78522,1680476,8 +32528,Julie,293625,97621,4 +32529,Detective Pope,418437,21505,8 +32530,Casey Jones (voice),1273,16828,0 +32531,Alex Townsend,25977,63471,8 +32532,Roberta Goldstein,192133,966264,9 +32533,John,89659,1167893,1 +32534,Major of Air-force,49322,16775,8 +32535,Mark Kar,34766,112960,6 +32536,Audun,360249,1287263,13 +32537,Day Bank Manager,8247,1184028,13 +32538,Tech-Stylz Dancer,243683,1398205,92 +32539,Hilary,13596,453,6 +32540,Mick Foot,22615,17259,7 +32541,Mourner,332806,1663952,5 +32542,Craig,44936,1432692,5 +32543,Jang's Man,240832,1426883,37 +32544,Chet Alexander (voice),62211,452205,14 +32545,Dr. Anton Keller,55922,40009,12 +32546,,25626,77301,44 +32547,Megan,26688,81015,11 +32548,Lexi,13058,113971,3 +32549,Guri,102913,579468,1 +32550,Mina,403605,1829918,12 +32551,Junkie,252888,50235,7 +32552,Alison's Friend,4964,52271,19 +32553,Prince Potopienko,31993,939656,16 +32554,Jordi Solé,1896,19827,13 +32555,Don Mimì,52238,142134,7 +32556,Zena,19765,138833,5 +32557,Mrs. Kane,3115,125723,16 +32558,Elisa,58013,129445,5 +32559,Eric Levkowitch,10795,7693,3 +32560,Bentley Drummle,121674,1173230,16 +32561,Dr. Brenner,20907,4455,0 +32562,Slick Man,31428,1412167,14 +32563,Lawson,31942,21259,1 +32564,Miss Octavia Pole,64047,11356,2 +32565,April,8617,92856,18 +32566,Daphne,28437,100795,4 +32567,Sen. Hornby,187219,40529,7 +32568,Franko,73313,148742,8 +32569,Tanigawa Hiroshi,31254,552641,1 +32570,Audrey Baxter,72313,30978,4 +32571,Mr. Fung,10753,1346979,15 +32572,God's Messenger,101342,234486,6 +32573,Alex Raphaelson,136582,146287,0 +32574,"Chapelin-Tourvel, der Vater",124013,1270377,8 +32575,Estrild,29903,102634,1 +32576,Edie,37686,46814,21 +32577,Vicente Cortez,268920,76857,18 +32578,John Ryder,9542,585,1 +32579,Stuart Hedron,259997,77073,10 +32580,Agbekoya,325803,1428024,10 +32581,Rebel Sentry,294254,1505457,35 +32582,Himself,146730,123192,4 +32583,Revolutionary Guard,146216,570010,11 +32584,,14804,1901804,25 +32585,Crewman (as Clark),49837,142896,10 +32586,Singers - 'Begin the Beguine',43809,1209603,53 +32587,Anna Veig,21794,22290,0 +32588,Town Gossip,10299,5738,21 +32589,Amigo de Pedro (uncredited),42502,103565,21 +32590,Le Père Noël,305455,81051,1 +32591,Kate Elgar,408616,2462,5 +32592,Troy's #2,323675,1648749,23 +32593,Joshua 'Josh' Whitney,48706,93396,0 +32594,Cha Dae-eun,209764,1293080,1 +32595,Cecilia,57438,226179,13 +32596,Douce,15457,453272,3 +32597,XO,10005,61861,18 +32598,Helen Brown,32044,30621,6 +32599,Roux,116463,60884,10 +32600,Erpidio,38285,1398940,9 +32601,Anita Hastings,99934,98012,2 +32602,Christmas Father,283445,1720588,18 +32603,Television Reporter,256092,1338707,14 +32604,Stephan Nuslauer,48118,30431,6 +32605,Mr. Clure,277968,1543764,24 +32606,2nd Wife,99329,1200620,1 +32607,Mister Tawky Tawny (voice),43641,24362,5 +32608,Liz,28739,101807,18 +32609,,104343,134401,3 +32610,Stalin,336549,1253309,15 +32611,André,127614,1095238,2 +32612,Eddie,291336,1362168,6 +32613,Dr. Suman Asthana (Chinki),19625,85240,3 +32614,Officer Andy,371645,89843,5 +32615,Patricio Allen,369567,557145,4 +32616,Leo Gillette,14527,20277,3 +32617,Vincent,8382,79079,7 +32618,Samantha Marris,14432,52442,1 +32619,Snow White,16652,563379,4 +32620,Susan,17956,154695,12 +32621,Hazel,115616,47627,2 +32622,Juan Villegas,29952,1292403,0 +32623,Verne Troyer,13991,10987,16 +32624,Natasha,304613,1234,1 +32625,Larry Noble,31984,108680,4 +32626,Gearhead,425591,1001968,12 +32627,Ruth Wood,79521,20391,0 +32628,Dick Ritchie,17911,87597,5 +32629,Himself,407806,1700943,0 +32630,Himself,27637,216299,17 +32631,Barney,108723,103870,14 +32632,Giovanna,99095,70119,1 +32633,Mother Martinelli,16551,80599,6 +32634,Dr. Lo,10389,125767,5 +32635,Chantel,30680,59217,3 +32636,Court Attendant at Door,67375,1075172,26 +32637,Ben Carter,159667,209673,1 +32638,Levi,88036,41556,7 +32639,"Alex, the Director",340101,1052256,21 +32640,,393939,9144,4 +32641,Sophia,102272,39298,3 +32642,Nonomiya Taicho,17895,82972,10 +32643,Aid 1,43459,31879,4 +32644,Start Mom (voice),8355,1215072,25 +32645,,45441,58613,10 +32646,Cheung Da Lung,62762,109093,5 +32647,Prete,43200,1851641,10 +32648,Boy watching TV,42420,128114,7 +32649,Stage Manager,82781,3636,0 +32650,Elise,32298,13920,23 +32651,,235092,540282,21 +32652,Roadbuster/Amp (voice),38356,60602,21 +32653,Private Talbert,128612,171293,9 +32654,Mrs. Ferrars,315010,12657,17 +32655,MCPO Scott Boytano,10005,65827,3 +32656,Police Officer,268920,1754453,64 +32657,Hector's Wife (uncredited),14615,96067,102 +32658,Randy,107811,95137,4 +32659,vicina di casa,142320,1779016,26 +32660,Deborah,49073,1013640,7 +32661,Giant Spider (voice) (uncredited),132714,78077,2 +32662,Mark,54893,44735,0 +32663,"Małgorzata Bojke ""Drabina""",425961,5203,4 +32664,Secretary (uncredited),31773,153266,47 +32665,Kristiina's Mother,55167,1303598,7 +32666,Dusan,17985,1348805,9 +32667,Namorada de Beto,248543,1040906,9 +32668,Alfons,212530,36941,14 +32669,Sheriff,29467,94293,11 +32670,Selene,100661,1481213,4 +32671,Mr. Wetherby,43256,105810,6 +32672,Lisková,18352,1391524,21 +32673,Himself,27637,124692,18 +32674,Channel 7 News Reporter,340275,1531612,54 +32675,Ishihara,27843,146785,2 +32676,Prof. Boileau,55370,25966,19 +32677,Private (uncredited),16442,1159355,24 +32678,Foley,98339,2231,0 +32679,Young Bob,183825,118213,32 +32680,le joaillier de Bulgarie,50350,119377,17 +32681,Klaus Flodder,11084,68182,2 +32682,BAK,128081,1094135,10 +32683,Mrs. Codleyn,43369,11135,7 +32684,La mère de Lucie,12449,37644,11 +32685,Sir Anthony of Italy,26643,1183965,14 +32686,David Trask,76229,10608,0 +32687,Faruk Pasha,354859,39660,12 +32688,Jacinta,273481,1151637,19 +32689,Carl,408381,1300275,2 +32690,Himself,207021,64856,1 +32691,Barbara Barish,45013,13023,10 +32692,Clip from 'Small Town Girl' (archive footage),33740,15008,52 +32693,Wei Wei (Pequeño),362178,1549533,4 +32694,Tessa Jaye,60665,1056290,6 +32695,John Newell Jordan,76349,1223149,14 +32696,Scottsdale Dad,34231,112176,8 +32697,G.I. at Base,19996,1764156,50 +32698,Jerzy Burski,224,1413,3 +32699,John Rodman,138308,3143,5 +32700,Selby,266373,9110,5 +32701,Pryce-Evans,83995,10174,20 +32702,Nina,416256,1448937,14 +32703,Suited Man,383538,1336371,10 +32704,Leutnant Hochbauer,45398,90765,10 +32705,Onlooker at Gallery (uncredited),17136,1046806,26 +32706,Esther Harris,322,4734,14 +32707,Ellis,217341,20495,0 +32708,Triad mahjong player,222216,994641,8 +32709,Dancer,285840,1842598,21 +32710,Ben Stuart,36968,57167,1 +32711,Esaul,31273,107895,43 +32712,Apprentice to Wang Pu,217923,1436297,51 +32713,Curly Howard,85411,19654,3 +32714,Admiral McCutcheon,2966,29096,5 +32715,"Anita, Chameli's Friend",96159,141703,16 +32716,Señora de Andía,369567,234637,5 +32717,Tom Read,371504,17483,7 +32718,Amy,301334,1228965,12 +32719,Ed,12912,164618,4 +32720,Mike Buckner,108222,128641,26 +32721,Rajkumari Jodhaa Bai,14073,87773,1 +32722,Elaine,18190,29710,3 +32723,Samara (archive footage),10320,1580,10 +32724,,227964,114482,4 +32725,Elizaveta Nikolaevna,60189,107667,4 +32726,Sheriff Elmore Leonard,290370,87766,6 +32727,Santa Maria,8366,5012,2 +32728,Janice Baildon,56942,183159,0 +32729,,441881,1307516,7 +32730,Ruairí,262958,1401534,13 +32731,Toni - the Mate (as Fredrick Mariotti),183932,930452,10 +32732,Tailgater,325133,1568703,28 +32733,Slinky Dog (voice),10193,21485,15 +32734,Andrada,32635,109468,4 +32735,Angela,68750,148112,1 +32736,Sgt. Chip Deal,18512,4299,1 +32737,Dolores,188858,2759,1 +32738,Ingrid Formanek,28730,1283,1 +32739,Mr. Barton,43155,95728,12 +32740,Himself,91679,55680,6 +32741,John Mark Karr Auditionee / Himself,430826,557600,69 +32742,Karina,79221,224484,2 +32743,Mom-Elephant (voice),273202,86762,3 +32744,Shiang-chyi,36253,71395,1 +32745,Minister of War,51759,8728,4 +32746,Whittaker,44773,543784,6 +32747,Brigitta,19757,544209,3 +32748,North Kaiou,39101,619,6 +32749,,452606,1653582,24 +32750,Mad Maynard,9352,980,4 +32751,Dwayne Hoover,773,17142,3 +32752,Maude Salinger,42094,27563,1 +32753,Earl C. Conrad,28668,88671,0 +32754,Bobby Bird (voice),153518,558928,24 +32755,General Blazier,43499,14656,8 +32756,Alex Summers / Havok,246655,429,10 +32757,Alyosha,83444,13713,1 +32758,"Harry Peters, Flugschüler",11869,48942,8 +32759,,73144,161976,3 +32760,Peggy Monks,425774,1623284,8 +32761,Unicorn,19274,1139707,4 +32762,Jeanette,29101,1515476,13 +32763,Sean Donnelly,314065,1466263,8 +32764,Panda,448763,1783088,6 +32765,Sally Ann,38850,83002,4 +32766,Andrea,315319,1880535,18 +32767,,47851,627993,6 +32768,,10754,66475,12 +32769,Carina Freitag,133183,58707,3 +32770,Isidoro Gómez,25376,93649,3 +32771,Mrs Potter,52850,1283,4 +32772,Ume,45205,94188,0 +32773,Sully,19618,84937,10 +32774,Ian Sommers,248633,1283947,7 +32775,Winston,27941,146677,7 +32776,Camden Terry,182899,41516,1 +32777,Wedding Guest,42139,931322,5 +32778,Kristy,257447,1375340,15 +32779,,104343,1697254,12 +32780,Subaltern,28263,1886629,10 +32781,Mrs. Wilson,149910,158644,26 +32782,un truand en fuite,33360,236144,8 +32783,Jessy,44943,450660,26 +32784,Ambassador Swanbeck,616,6914,10 +32785,"Christine Morane, Bertrand's Mother",1421,18482,8 +32786,Somboon,13436,1548150,17 +32787,,289679,28185,4 +32788,Orville the Scraggly Guy,20210,20405,12 +32789,Jackie Blair,54198,19426,0 +32790,Nino de Guevara,270470,589787,5 +32791,Luz,106747,17647,3 +32792,Peter Bronec,61430,178920,9 +32793,Moving Man,74314,932310,16 +32794,Nick,359471,1347952,13 +32795,Prince Charming (voice),810,4757,6 +32796,Lily Thereoux,120370,203096,4 +32797,Various Characters,18809,29493,1 +32798,Dr. Walters,28297,14359,19 +32799,PJ,15653,43125,3 +32800,Danny Davis,71120,84769,2 +32801,Weiss,6163,1589285,10 +32802,Costanza,419522,1857784,6 +32803,Himself,226632,1226513,3 +32804,Tracy,38157,132556,5 +32805,Gen. Connally,173456,18586,8 +32806,Shadow 5,270759,1330449,7 +32807,Femme en Colére #1,46738,1320183,11 +32808,Ozawa,1251,1190728,15 +32809,The True Spirit of Adventure / Narrator,19715,16417,1 +32810,Celia,71859,1074512,6 +32811,Jay's Son,18803,83599,4 +32812,Knut,102913,935784,2 +32813,Crilly,40850,34715,3 +32814,Beauty Parlor Manager,61644,170680,11 +32815,Other Apache,188161,1112417,28 +32816,un operaio navale,43548,14150,21 +32817,,104945,1121927,3 +32818,Laura,51736,1178310,13 +32819,Sir Oliver Tressilian,50329,932400,4 +32820,Greg (as John Collander),68387,62917,26 +32821,la donna incinta,103216,231728,10 +32822,Uchiyama,18722,73427,1 +32823,Sen. Walsh,212713,29719,4 +32824,Bill Wood,296456,18181,8 +32825,Gretchen Buff,52475,1881181,24 +32826,The Butler,193899,128166,2 +32827,Lt. Maddox,68387,46906,10 +32828,Special Delivery Boy,64928,1132786,29 +32829,The Ghost of Christmas Specials Present,172413,532536,1 +32830,Frau Übelmann,798,11936,9 +32831,Kristjan Põder,321303,1418975,11 +32832,Raffaele,85715,31811,2 +32833,SSGT. Kyle Vogel,105945,76996,0 +32834,Miner at Radcliffe Colliery,28421,123015,41 +32835,Jenny,376579,1661770,0 +32836,Suleta,28263,1200099,3 +32837,Steve Porter,97829,13555,3 +32838,Beth,20034,75070,1 +32839,Charisma Beauty,32021,164777,8 +32840,TV show host,67272,74736,12 +32841,Renato,43649,119991,1 +32842,Dream Girl (uncredited),80941,25787,27 +32843,Saw Gerrera,330459,2178,8 +32844,Rounder,52736,140898,3 +32845,Pedro Fleminckx,298396,1376479,6 +32846,Ben Maxwell,298158,16554,1 +32847,Geoffrey Leigh,116973,32128,1 +32848,Sergio,75336,143362,6 +32849,Bäuerin Elisabeth,73262,10255,4 +32850,Tom Proctor,224204,1270457,0 +32851,,40709,96264,12 +32852,La niña pobre (as Lupita),13383,1400903,4 +32853,Juror,43821,119547,48 +32854,Josef Stalin,204802,557270,6 +32855,,11328,1444493,41 +32856,Kimio Hiraki,93891,89177,2 +32857,Himself,329243,1224942,6 +32858,Sheriff Mallick,266285,35862,5 +32859,May Tolliver,43497,3367,9 +32860,Crystal,429200,1823853,5 +32861,Ray Macklin,96089,81182,9 +32862,Turtle girl,54111,1769719,9 +32863,Fritz Schitz (uncredited),175027,1420891,15 +32864,Angel of Death,31276,80579,3 +32865,Mary,405473,1007679,1 +32866,Momma Cat Mascot,325712,1647558,9 +32867,Reporter,5172,1668299,29 +32868,Henry 'Hal' Marlett,99767,29259,2 +32869,Uncle Albert,49852,78729,1 +32870,Walt Reynolds,325173,52409,3 +32871,Isabella Thorpe,18093,36662,3 +32872,Tómas,72596,1114527,0 +32873,Deepa's client's Son,332827,1574334,13 +32874,Kayra Su,16157,1238595,11 +32875,Female Custom Officer,285181,543366,10 +32876,Cammioneur,96132,1195191,14 +32877,Sygita,77600,107874,1 +32878,Ursel,318781,1080195,4 +32879,Armando Lopez,93511,66525,11 +32880,John Ericsson,109475,6839,5 +32881,Hospital Supervisor,239563,1212964,19 +32882,,67177,9893,3 +32883,Eric Matthews,107250,43426,2 +32884,Ernest Volpinex,39978,16350,3 +32885,Regine,2974,29247,3 +32886,John J. 'Johnny' Brady (as Edward Begley),104083,39816,6 +32887,Megan,48836,1811119,9 +32888,Tom Wilkinson,188102,51539,9 +32889,Sherriff,257214,9291,5 +32890,Eldest Daughter,1579,42012,18 +32891,Sänger,296225,48869,8 +32892,Himself - at Banquet (archive footage) (uncredited),33740,18803,81 +32893,Metcalf,83015,1834955,31 +32894,Patti,41496,188244,6 +32895,Hemant Patel,39839,85033,2 +32896,Eli's boss,77583,95691,4 +32897,Henrique Durán,365709,1528379,10 +32898,Quint,91419,40620,7 +32899,Terrence Lubinecki,10760,15034,3 +32900,Extremis Soldier,68721,149731,91 +32901,Railroad Ticket Taker (uncredited),36612,133277,10 +32902,Claudia,113178,152963,4 +32903,Peter Mc Gray,20106,4275,10 +32904,Astrologer,347979,583453,4 +32905,,78450,1559775,7 +32906,Philipp,1912,24440,3 +32907,John Donelson,438643,1224687,2 +32908,Mršavi lopov,11373,590244,10 +32909,Lt. Breach,27036,89834,5 +32910,Virginia Brush,180635,3242,1 +32911,R.J. Mitchell,16444,11493,0 +32912,Lydia,179154,1169342,14 +32913,,133783,1476858,21 +32914,Maddog,258251,12044,8 +32915,Ethel Janowski,89659,998895,0 +32916,Pozzo,40373,15888,2 +32917,French Captain,8619,1077824,25 +32918,Rebecca,7483,524,0 +32919,Dr. Philip Hecht,43045,190752,5 +32920,Constable Sgt. Abraham Azulai,78233,583400,0 +32921,Anya,360924,1670909,4 +32922,Conductor,147829,1171424,39 +32923,Couch,413998,57461,16 +32924,Midge Mercer,111582,121019,2 +32925,Jennifer Crawford,6145,6368,4 +32926,Matt Brown,1773,3155,1 +32927,Basher Tarr,163,1896,9 +32928,Uniformed Officer,74777,1513992,8 +32929,Li Hui,16687,62410,0 +32930,Himself,8079,35780,14 +32931,Hank Scott,44591,54681,0 +32932,Sanáa,332872,1359213,17 +32933,Gen. Czernitscheff,212530,29123,5 +32934,Bedienung in der Bar,308174,1888487,19 +32935,Kim Gardener,48677,192204,3 +32936,Grandpa Ulysses Mulvain,109018,4343,5 +32937,Gloucester,46915,7192,6 +32938,Security Guard,195796,51039,0 +32939,Admiral Brooks,40804,106627,8 +32940,,31412,1319997,14 +32941,"Sgt. Price, State Police",144471,133832,8 +32942,Bilbo Baggins,122,65,11 +32943,Frankie,39286,20089,3 +32944,Rita,142757,86896,7 +32945,Miss Reba,27986,116259,6 +32946,Agastya Sen,317720,86212,1 +32947,Oscar,336885,592530,2 +32948,Fru Fru (voice),269149,1502450,29 +32949,Russell 'Russ' Ward,121234,11492,0 +32950,Smitty,47962,1071372,3 +32951,Piera adulta,81787,56654,13 +32952,Huko,171759,122844,5 +32953,Truck Driver,36236,45982,5 +32954,Teller #23,239563,1260481,15 +32955,Senator Pardew,47906,2979,6 +32956,Antoine Méliot,9736,14606,0 +32957,Judith Wilson,53864,33277,4 +32958,Loretta Channing - une fille des beaux quartiers,47489,2630,1 +32959,Gulmira Villager (uncredited),1726,1209716,66 +32960,Pop Greer,125736,30002,4 +32961,Clark Kent / Superman,95414,214193,1 +32962,Sally Baxter,55152,95131,4 +32963,Michael Moore,13516,17087,0 +32964,Oren,331313,1137588,14 +32965,Thomas Caine,20361,85982,2 +32966,Piccolo,126963,85286,1 +32967,Flashback Killer,14452,1566395,13 +32968,Scheherezade,18098,15441,0 +32969,Young Victoria,62213,1803327,15 +32970,,413644,1552818,7 +32971,Arthur Weldon,42752,30270,6 +32972,Boss,94352,1001709,4 +32973,Abigail Sponder,298,6913,13 +32974,Chefin,239619,1244897,5 +32975,Jeannie,104108,1684737,7 +32976,Norah Kerr,53865,88569,1 +32977,Missouri Breslin,241574,111988,5 +32978,Italo,8882,1882932,11 +32979,Harge Aird,258480,3497,2 +32980,Barbara Wells,42796,165176,2 +32981,"Akim, il segretario dello Sceicco",43548,114477,11 +32982,Vilma Rodriguez,50126,134365,5 +32983,Leah,7326,52442,7 +32984,Momma Cat Mascot,325712,1879673,8 +32985,Himself,140554,1051347,8 +32986,,16015,564610,13 +32987,Sarah,345438,927675,5 +32988,John Fletcher,175027,32428,1 +32989,Sarita,37308,21462,1 +32990,,32694,2157,29 +32991,Bertie Spangler,186268,168083,9 +32992,HM Queen Elizabeth II,1165,15735,0 +32993,Tina,253077,65925,2 +32994,Floyd (voice),322487,129097,9 +32995,Sergeant Jim Vasquez,11600,100707,4 +32996,Bellman #2,243683,1398051,29 +32997,Kelly,391375,1267185,14 +32998,Deke Sommers,19017,39770,2 +32999,Conan il culturista,82080,1050338,24 +33000,Member of Parliament,53851,80546,13 +33001,Cannavacciuolo,43989,35104,3 +33002,Caroline Frankenstein,3057,1146,2 +33003,Amanda McCanless,104297,50972,2 +33004,,79382,1062342,6 +33005,Minor Role,87060,1534295,23 +33006,Maybelle's Store Dancer,2976,1752716,77 +33007,Middle Sidney,339419,1650205,25 +33008,Katia,33704,237573,6 +33009,Zia Ritella,231176,1467352,11 +33010,Jack Sylvester,29260,103413,3 +33011,Himself,15258,151644,85 +33012,Himself,145154,1122374,1 +33013,Ellen,240913,1220757,18 +33014,,329216,3039,3 +33015,Helen Grace,8204,18248,1 +33016,Minor Role,43806,981096,76 +33017,Eve Merrick,49508,86168,1 +33018,Charles Doughty-Wylie,157843,20186,3 +33019,Policeman,30624,93624,9 +33020,Budderball (voice),149910,1185800,3 +33021,Daniel Levine,295723,1369205,3 +33022,Ted,434873,1448885,4 +33023,Talent Agent,2976,70233,33 +33024,Henrietta Winslow,29286,601048,8 +33025,Ed Okin,11338,4785,0 +33026,Coach Burley,295588,25711,10 +33027,Manta,51800,1317368,7 +33028,Matthew Paul,31380,1337236,3 +33029,madre di Ange,210615,24883,4 +33030,Sgt. Butcher,263855,81683,9 +33031,Daniel,250376,1181353,0 +33032,Torch Bearer,227306,1394438,41 +33033,Frida,11656,58305,9 +33034,Hank Sebanek,22396,71140,6 +33035,Connor Rhodes,337339,571418,11 +33036,Tchude Interpreter,2172,110101,7 +33037,Harriet - the Sexy One,508,21596,26 +33038,Prospective Buyer #1,16164,82138,11 +33039,Mr. Tanucci,218778,59297,20 +33040,Karlson (voice),72203,1082610,0 +33041,Erin Rose,172520,1155126,5 +33042,Conny,229254,1530273,7 +33043,Dr. Field,345003,1307664,10 +33044,Sam,27941,477741,3 +33045,TV Director<,1165,107405,21 +33046,Ship's Steward,48231,1089483,17 +33047,O`Bannion,5721,45105,6 +33048,Charlie Ford,42706,19578,11 +33049,Kari Lampikallio,300487,93004,0 +33050,German Soldier in Boat,297762,1820151,51 +33051,Jane Walsh,60662,560301,4 +33052,Anna,159474,36909,10 +33053,Louis Trebor,47143,24365,0 +33054,Singer Songwriter 1,198277,1424207,37 +33055,Warren,88005,52997,4 +33056,Police Inspector Karan Joglekar,46403,35070,0 +33057,Wendy Walker,50875,971329,5 +33058,William Keane,13468,20186,0 +33059,Borracho 1,25376,1331807,21 +33060,Jean-Luc,86980,1104462,11 +33061,,185987,142455,12 +33062,Restaurant Owener,10389,551610,22 +33063,Danny,405882,1783652,10 +33064,Glader,198663,1415405,16 +33065,Linda Wayne,214909,98574,2 +33066,Maureen Hatcher / Agnes,206183,14326,1 +33067,Laura,127728,1085661,9 +33068,Jim Sherwood,111470,41755,1 +33069,Popie,124157,73249,2 +33070,Fabiana,64526,129744,6 +33071,Billiken,41495,120749,13 +33072,Madison,82650,208143,17 +33073,,254689,221161,3 +33074,Bouncer,300090,1187061,9 +33075,Eddie Stewart,337789,81387,2 +33076,Big Eddie,52661,18647,2 +33077,Rufus (voice),51786,200,2 +33078,o.A.,5646,44584,9 +33079,Karen,29345,103583,6 +33080,Flugzeugmechaniker,14804,1482389,21 +33081,Niles Foster,65488,40203,11 +33082,Receptionist,30941,126547,28 +33083,Himself,18893,938985,18 +33084,Pippin,195068,1145556,12 +33085,The Husband,47310,138394,7 +33086,,132957,1496155,4 +33087,Doris,10744,13420,10 +33088,Father Donovan O'Malley,373541,2714,1 +33089,Dan Walton,15613,132,10 +33090,Roman the Architect,25450,100233,3 +33091,Marie,51828,512079,13 +33092,Herself,4140,34958,1 +33093,Ms. Stevens,98557,22122,11 +33094,Police Officer,56816,1158490,7 +33095,,217923,1436408,56 +33096,Bridesmaid,84184,131723,20 +33097,Buga Jóska,63625,102505,10 +33098,Tisha,397717,1722989,33 +33099,Mr. Lyle,27338,11153,6 +33100,Balmashov,63304,1417509,13 +33101,Detective Sergeant Mason,153397,27635,13 +33102,Mr. Flak,2976,1528765,26 +33103,Jinhee's father,48508,85008,3 +33104,Jimmy Smith,33117,82387,1 +33105,Megan,359870,1531926,14 +33106,Mary Beth,244403,1680859,10 +33107,Truck Driver,90616,1692085,21 +33108,Francis,34496,83769,11 +33109,Admiral Winters,56491,54492,8 +33110,Broker (uncredited),43522,1284767,75 +33111,Himself,70027,128021,12 +33112,Leonard Knight,5915,1034534,20 +33113,Prinzessin Maleen,374319,1555463,8 +33114,moglie del marito geloso,43646,234418,7 +33115,Extra (uncredited),206197,1506500,48 +33116,Mike,345922,1783267,40 +33117,Harold Bridges,86608,76519,2 +33118,Le père,103597,24397,5 +33119,Woo-Jin,338729,573792,9 +33120,Paul Wong,286709,232499,3 +33121,,27053,239379,25 +33122,Officer Nash,9667,1226921,20 +33123,Yata Kane,3115,30567,5 +33124,Max,120399,3062,0 +33125,Legionnaire,22999,1181275,17 +33126,,92968,995514,0 +33127,Gaëlle,24170,4166,5 +33128,L'évêque,65898,1810229,14 +33129,Karaoke Girl,49853,1648790,33 +33130,"President, Board of Directors",153161,239420,25 +33131,Rory Adams,395992,10859,2 +33132,Police Sgt. Kelly,230182,121207,5 +33133,Domestic Abuse Victim,8988,1043972,56 +33134,Himself,329286,84834,1 +33135,Himself,157117,235996,16 +33136,Taki,254679,533325,3 +33137,Nun,16135,79522,27 +33138,Torsten Bage,140554,28596,1 +33139,Narrator,16900,976,0 +33140,Ichizo,315841,227616,4 +33141,Mrs. Smith,22881,112562,9 +33142,,292062,1229049,3 +33143,Tommy Williams,43790,1937,0 +33144,"Mr. X, the Safecracker",43855,34209,19 +33145,Alice Gorman,407531,1079805,0 +33146,PJ No. 1,193756,1283064,44 +33147,Club Dancer,45013,1818028,41 +33148,Riff,98096,92704,0 +33149,Auguste Masson,76200,577830,7 +33150,Addetta stampa teatro,379873,1879762,18 +33151,Classroom Scout Girl,257344,1683833,40 +33152,Mrs. Schnaible,32029,1755,13 +33153,Julian,246741,1233372,8 +33154,Abdi,85743,1273012,4 +33155,Dulcie Landis,31078,11825,1 +33156,La commissaire,54155,22163,14 +33157,Rufio,31561,50998,5 +33158,Giovanni Zorro,38743,121144,10 +33159,Evan Barrows,140470,117696,9 +33160,Stephen Undershaft,38770,85936,8 +33161,Machiniste / Stagehand,38531,8635,1 +33162,(voice),63486,239456,11 +33163,Sheriff Greg Sabin,65055,10825,6 +33164,Idrissa,73532,569369,2 +33165,Joe,32067,9188,0 +33166,"Bogardus, Postville J.P.",20153,85737,6 +33167,Simon,215928,213202,4 +33168,Higashi,363579,58665,3 +33169,Peasant Girl,31472,185019,18 +33170,Lotta,32497,109285,6 +33171,"Minokichi's mother (segment ""Yuki-Onna"")",30959,213497,13 +33172,Capt. Stephen Jameson,51601,3155,0 +33173,Merkel (voice),123025,62389,30 +33174,Ben,301228,1382198,7 +33175,Agnes Wood,79521,2643,5 +33176,Robert James Lees,24486,91662,4 +33177,Audrey Anderson,22894,1223171,15 +33178,King Carlos IV of Spain,96935,37191,3 +33179,Dolores Bolaño,333663,929937,5 +33180,Stella Van Johnson,43473,1433910,3 +33181,Josch,9274,37246,1 +33182,Bhau,304274,42802,5 +33183,Himself,55027,225221,4 +33184,Chan Sei-Mui,182127,64433,2 +33185,,11196,73925,9 +33186,Dan McCorn,130717,81292,4 +33187,Buffalo,356483,6804,4 +33188,Harlan Ogilvy,74,504,4 +33189,Cochise,377853,14606,1 +33190,Cousin Leora,50549,67290,8 +33191,Vera Saxton,224885,3237,3 +33192,Furnace (voice),160046,1693656,5 +33193,Viktor,23289,40419,1 +33194,Spinster In Boardinghouse (uncredited),52440,97988,9 +33195,Detective Benneson,34672,126239,23 +33196,Drunk #1,351065,1667160,15 +33197,,22701,229226,6 +33198,Reporter (uncredited),43522,141606,48 +33199,Jamie,24709,194066,0 +33200,Irene,223551,1263645,13 +33201,Security Guard #1,52520,43612,25 +33202,Pierrot,39415,1167885,4 +33203,Vibeke,336882,1198672,9 +33204,Margot Durrell,44746,36672,6 +33205,Fruit Fly (Young) (voice),116711,1185985,23 +33206,Winifred Coxy,47914,38761,5 +33207,Ranjit Parmar,196852,86022,5 +33208,Det. Joe Rosales,45431,56853,2 +33209,Harold (Soldier),294254,1094319,30 +33210,Eb (uncredited),16442,8498,22 +33211,White House Junior Aide Jared,257344,60961,20 +33212,basement dad,31850,240082,9 +33213,Louie Dumbrowsky,185273,14034,5 +33214,Matéo,14765,77284,4 +33215,L'adjoint de Gérard,53404,1401954,10 +33216,Frederick's Brother,310135,1501946,16 +33217,L'infirmière,336199,5077,4 +33218,Piastun,35021,7107,1 +33219,Katsuyoshi,20530,131014,4 +33220,,337012,1362814,5 +33221,Music Video Dancer,4551,1680764,57 +33222,Enrico Giannini,15472,544030,37 +33223,Wim Cassiers,44751,51484,4 +33224,Richie,40034,2295,10 +33225,Indigo,340275,1531583,8 +33226,Adrian,1877,19717,2 +33227,Jeremiah,33201,18352,0 +33228,Woman of Venus,36530,115539,12 +33229,Isabel Lefrançois,23857,142996,4 +33230,Bonnie Skiles Rockne,43812,81018,2 +33231,Monika Krauss,11677,1874,0 +33232,Peter,335778,25095,9 +33233,Charlie Rawlins,6643,12692,13 +33234,Alice Scott,43046,15644,1 +33235,Militaire,59118,228882,10 +33236,Musudan,387845,1591374,12 +33237,Guadalajaran Nurse (uncredited),293660,1683954,36 +33238,Florian,156954,1138158,3 +33239,Eva,172004,10627,10 +33240,Yomiko Readman,37789,555955,0 +33241,Jalan,8014,53620,1 +33242,Ramon,137614,28514,1 +33243,Grandpaw Bridges,43753,6463,1 +33244,Peg Leg,183825,33179,19 +33245,Joey (archive footage),262988,26660,9 +33246,Jake Baker,11007,9829,7 +33247,Monsieur André,76115,577643,5 +33248,Stroszek,172004,70273,7 +33249,,41970,31431,7 +33250,Jack,58404,14785,3 +33251,Ivan's Mother,31442,13708,4 +33252,Sasquatch,124470,12359,2 +33253,Lenny,13185,28847,7 +33254,Carol,296626,62595,12 +33255,Tai Kuang's opponent,46114,118745,2 +33256,Amber,405882,1783651,7 +33257,Baby 'D,92309,931356,2 +33258,Julio,287636,181884,18 +33259,Christopher Newborn,5460,43448,6 +33260,Anna,169758,167441,7 +33261,Maria,336882,98060,10 +33262,Father,16659,44842,8 +33263,Mrs. Vigen,108017,1264223,1 +33264,Kimberly Lyles,48852,7571,20 +33265,Emma,120497,103425,8 +33266,Ulla,76846,512266,4 +33267,Billy at 5,27414,1186497,16 +33268,Christopher Leigh,116973,14261,3 +33269,Cherokee Kid,40719,8496,8 +33270,Misty,48836,56732,6 +33271,Nightclub Patron (uncredited),174925,135827,23 +33272,Walter Audisio,61212,22383,1 +33273,Tony,74629,6396,13 +33274,"Billy ""Eye"" Harper/John Harper",84994,1223320,0 +33275,Judy Lin,58570,25252,1 +33276,Bethany,403330,1747764,6 +33277,Stenographer (uncredited),369524,1796091,46 +33278,Reisender,43000,38244,8 +33279,Sophie,63876,6352,0 +33280,,254689,1090945,4 +33281,Jacknife/Mad Wing,9056,119456,12 +33282,Alexandre's Ex,57307,146492,11 +33283,Herself - Model,327083,1231144,9 +33284,Jack Armstrong,43806,79247,7 +33285,Francis,82817,18177,0 +33286,Nikki,407531,1505505,6 +33287,Melody Carpenter,47540,119368,1 +33288,Stu Hopps (voice),269149,27530,9 +33289,,128237,559510,0 +33290,Ms. Hawker,28739,1334174,12 +33291,Shunderson,23152,10027,2 +33292,Admiral Junius Boatwright,109441,119381,11 +33293,Reverand Gary Knowles,41301,83029,12 +33294,Lucy Rahlston,10274,64672,13 +33295,Arthur Coddish,21627,591,1 +33296,Lower Class Pedestrian (uncredited),76203,1438303,68 +33297,David's Wife,259694,1784330,19 +33298,Naoetsu Guard 2,227306,1394451,50 +33299,CDC No 1,59115,550954,13 +33300,Chizuru,48341,27788,3 +33301,Dona St. Columb,131764,3360,0 +33302,Chris Pitts,86825,429,5 +33303,,145244,2601,14 +33304,Dumpy,55663,222889,5 +33305,Henry Ross,348631,79149,1 +33306,Ramo,76084,4963,3 +33307,Landale,104720,6933,17 +33308,Montana Wildhack,24559,26483,4 +33309,Linda,29345,103582,3 +33310,Stanley Crawford,229297,5472,0 +33311,Alex,41733,1288867,10 +33312,Scotty Pelk,38908,121609,0 +33313,PC Nixon,128241,1367572,7 +33314,Urmi's Father,66292,140683,6 +33315,The Misfits,30492,82858,6 +33316,Anne Halsey,174278,30296,1 +33317,Baseball fan,367732,1537761,20 +33318,Easter Island Head (voice),181533,18,24 +33319,Kenny,112161,1021227,8 +33320,Tony,128917,1088202,5 +33321,Chanticleer / The King (voice),20421,86110,0 +33322,Manny Heffley,60307,1769435,6 +33323,Alin,3716,42070,29 +33324,JP,405388,1719585,10 +33325,Nate,356483,66585,10 +33326,Miss Cottontail girl,58159,227461,1 +33327,Preacher,7555,76489,13 +33328,Mr. Second,45227,24373,10 +33329,Jake Ryan,32540,16700,1 +33330,Landlady,67375,68653,18 +33331,P.C.,21570,140683,5 +33332,Jed Williams,156335,975306,11 +33333,Dr. Matsushita,22899,134263,7 +33334,Türke,170759,48510,14 +33335,Dolores de Muro,111759,13992,1 +33336,John,235260,115176,14 +33337,Police Constable,181876,115606,9 +33338,Steve,25625,76516,9 +33339,Comtesse de Baynes,126958,1083440,4 +33340,SS-Untersturmführer Max Jäger,11248,10648,3 +33341,,276846,284463,16 +33342,Nelly,92269,1469162,4 +33343,Bridesmaid,150117,1586256,27 +33344,Fehime,49833,142854,4 +33345,Jim Blandon,49508,100945,3 +33346,Burton Colt,31605,21523,6 +33347,Pedro,391618,24977,7 +33348,Siham jaafari,121791,1074967,2 +33349,Ron,208529,4169,5 +33350,Alan Johnson,2355,1896,1 +33351,General Spence,88320,26665,5 +33352,,15934,84519,10 +33353,President White,67693,113,5 +33354,Peters,235662,233298,4 +33355,Boat Captain,1724,5897,34 +33356,Clip from 'Idiot's Delight' (archive footage),33740,120542,49 +33357,Blockwart,11204,38486,7 +33358,Gertie,16659,127139,11 +33359,Mary Jo Buttafuoco,19754,182878,4 +33360,Eastern Suburbs Mum 2,242224,1413438,9 +33361,Frank,121923,52032,8 +33362,Marge Negroni,73612,1392467,6 +33363,Dominique,39415,1625131,6 +33364,Tom,88359,19183,0 +33365,Blonde Lady,86838,113676,15 +33366,Brad,64191,1224846,4 +33367,Conductor,282268,8933,10 +33368,Junsa,18148,552007,17 +33369,,105584,1666943,5 +33370,Kishiria Zabi,39230,1680,10 +33371,Mr. Eldridge,59189,93948,3 +33372,Ryan,21138,58402,5 +33373,Gestapo Officer,19996,85419,10 +33374,Bill Benson,46007,24937,0 +33375,Wai Bok Si / Chow Si Kit,31027,1336,0 +33376,Gustav,110525,12153,10 +33377,Doris,97614,198708,14 +33378,Ove,70670,77981,4 +33379,John,68123,1660682,11 +33380,Vanessa,33789,500269,2 +33381,,84823,1620087,7 +33382,Alice,158908,224842,3 +33383,Townie,71866,1103657,5 +33384,Himself (archive footage),184363,1903782,12 +33385,Detective C,30941,1208431,39 +33386,Fred Gilbreth,50549,87751,13 +33387,Soekie,868,13105,10 +33388,Dr. Geldstein,217412,1543396,10 +33389,Daniel 'Danny' Collins,95037,83452,0 +33390,Lord Enma,39107,122191,7 +33391,"Huntsman #2 (segment ""Miminashi Hôichi no hanashi"")",30959,552167,34 +33392,Bernard,56669,21065,9 +33393,Maxine Mortogo / Ghoul No. 2,38134,1774043,6 +33394,George O'Hanrahan,32790,229,3 +33395,Danceteria Queen,397717,999389,28 +33396,Gina DeJesus,336845,1411601,3 +33397,Juror,339994,1536926,29 +33398,The Man,32323,8635,0 +33399,Various,22471,95566,3 +33400,Fight Club Spectator (uncredited),293660,1683957,40 +33401,La fée marraine,114108,28964,5 +33402,Herself (Archive Footage) (uncredited),448449,13309,11 +33403,Prof. Kleinschmidt,178341,9084,13 +33404,Agent Adam,4529,7505,4 +33405,Marita,8368,10916,4 +33406,Finanziere,73872,76339,2 +33407,Valet,118953,955809,13 +33408,John Harkness,4459,38232,6 +33409,Raffaele,297288,126986,2 +33410,Bobbo,229254,1263878,2 +33411,Gottlieb (as Siegfried Rumann),37719,2497,5 +33412,,117023,59776,5 +33413,Rudy Steiner,203833,1153024,3 +33414,Andre,25388,32675,12 +33415,,124597,1675547,23 +33416,Professor Quentin (uncredited),50012,143281,1 +33417,Student (uncredited),300667,1790378,23 +33418,Dancer (uncredited),28293,8259,16 +33419,Nina,246655,1796393,38 +33420,Col. Almeida,11854,35819,11 +33421,,38099,1114203,24 +33422,Katie Armstrong,9639,41292,0 +33423,Doctor,384682,170820,15 +33424,Marita,150223,1870823,1 +33425,Rita Vivaldo,30993,1798340,6 +33426,News Anchor #2 / Superman's Ship (voice),166076,34945,12 +33427,Fender - Corny Collins Council,2976,1752327,51 +33428,Sheetar & Bitsy,62132,1774045,15 +33429,Doctor,43817,589755,5 +33430,Glenn Garvin,112503,131637,0 +33431,Announcer,108222,139179,25 +33432,Moon (The Dealer),30995,1207033,11 +33433,Pierre,11925,72687,2 +33434,Popsy Pop,284013,4959,1 +33435,FBI Agent,5172,79211,37 +33436,Pat McKinnon,354287,2394,9 +33437,Banquet Chairman,57866,95725,14 +33438,Joe Spinelli,210739,20495,0 +33439,Léon (voice),126319,1505892,13 +33440,Федор,365544,146913,4 +33441,,189472,110129,1 +33442,Dr. Bilderberg,16177,45751,8 +33443,Sheriff Ned Meade,44626,14361,4 +33444,Jimmy Burns,26491,1670,6 +33445,Joe - American Tourist,106573,89099,7 +33446,poliziotto,98025,144612,13 +33447,Zoé de la Tresmondière,77776,559677,5 +33448,Masayuki Kameda,56232,228072,0 +33449,George Bruckner,180305,215056,0 +33450,David Newman,24150,27738,14 +33451,Tom Lansing,37329,117449,6 +33452,Andy Carroll,354287,1548222,27 +33453,Marigold Girl (voice),116711,1252801,16 +33454,Charlie,46660,22970,3 +33455,Eva,86497,77707,1 +33456,Keith Nolan,27196,1415568,17 +33457,Kamal Singh,21566,140674,5 +33458,Pavel (Russian Ship Passenger),44658,236836,4 +33459,Himself,15258,60275,31 +33460,"Kochek, the Storekeeper",90030,1048390,3 +33461,Seth Rydell,141267,92429,3 +33462,Sexy Lady,116463,1691471,17 +33463,Gabriel Lidman,34181,229176,7 +33464,Old Nun,328589,3308,21 +33465,Gold,9655,212,4 +33466,Dr. Ernest Bishop,50942,76417,11 +33467,Santa / Floyd,36427,63214,5 +33468,Henry Lowe,14047,77277,1 +33469,Kanabun,53064,1107773,6 +33470,Videl,126963,90569,22 +33471,Carmine,96333,3266,6 +33472,Major,259728,256725,4 +33473,Lt. Victor O'Leary,274060,14565,3 +33474,Stretcher Attendant,26376,125842,30 +33475,Paquita,560,7644,5 +33476,Village Priest,9503,20508,3 +33477,Policeman / Waiter in Movie (uncredited),22943,13856,31 +33478,Henchman (uncredited),91961,955691,14 +33479,Fernando Portacarrero,17258,4029,15 +33480,TV Assistant,39517,77823,6 +33481,Dancing Boy,49018,1293174,18 +33482,Police Dispatcher,336004,1717270,28 +33483,Ronnie,310137,1541160,3 +33484,Polonius,28238,31923,3 +33485,Rebecca Rebatet,284620,1348291,5 +33486,Tom Cullen,13519,34398,15 +33487,Hobo Joe,64328,58225,4 +33488,Tina,55376,222267,2 +33489,Karimu,371942,1547211,1 +33490,General,174645,545503,14 +33491,Pancho,14430,57380,5 +33492,Mike Taggart,35381,32286,7 +33493,Straniero tatuato,315319,130872,21 +33494,Auste,310568,1398230,1 +33495,Sally - Telephone Operator,153163,1274103,13 +33496,M.C.,10433,32396,7 +33497,,16015,1441819,16 +33498,Harry Sickles,107146,21520,3 +33499,Additional Voice Talent (voice),145316,157626,5 +33500,Alex Higgins,377516,103351,1 +33501,Doctor Volker,42734,4094,8 +33502,Attorney,219345,100552,7 +33503,Ugo,77137,120135,6 +33504,"Gasparre, the sacristan",99261,1089649,6 +33505,Black Ben,30637,9899,5 +33506,Mary Malone,105768,1224027,10 +33507,Tina,31919,134242,1 +33508,Koldo,236737,24977,2 +33509,Steve Randall,99934,150177,1 +33510,Mino,82481,932855,23 +33511,Coach Elwood,337073,62596,1 +33512,Lamarr Simms,14881,69494,3 +33513,Stuart Korman,307081,152780,20 +33514,Vampire #3 (uncredited),42941,1200416,26 +33515,Narr,410774,10236,5 +33516,Detective John Rogan,78383,80758,4 +33517,Bill,18530,1068995,13 +33518,Steve,156547,1371261,14 +33519,Davis,22681,1384401,6 +33520,Carlo Marx / Allen Ginsberg,83770,90451,4 +33521,Houston Brooks,293167,1154054,8 +33522,Stretch,23096,141240,8 +33523,"Robert, le père de Laura",283726,37650,6 +33524,Santa Claus Auditionee / Himself,430826,1891553,62 +33525,,15830,1439647,9 +33526,Cowboy,73984,1745802,13 +33527,,253533,1163230,8 +33528,Inspector Vishal Sharma,102632,86022,6 +33529,Sheriff Bob Wells,108224,1092477,4 +33530,Delfa,234815,553131,2 +33531,A Staff Sergeant,95169,1346977,11 +33532,Jim Cameron,92298,10823,0 +33533,Husky Thug at Party (uncredited),120497,34324,11 +33534,The Game Announcer,61644,556927,15 +33535,Keiko Ubukata,51549,1178881,10 +33536,Woman reading at bar,8270,54223,26 +33537,Sheriff Sam Eberly,37865,16166,3 +33538,,167330,1831168,25 +33539,Madman,282086,72792,1 +33540,Stinger,107319,107321,1 +33541,Vic Pardo,15794,8254,2 +33542,Herself - Singer,327083,84933,7 +33543,Broker,43811,34508,43 +33544,Raphaël (young),12169,234526,18 +33545,Lucas,374698,30317,1 +33546,Vincent,85429,55922,3 +33547,Kid #3,72105,1502854,33 +33548,Adjoua,203715,1186090,3 +33549,Arsène,153541,45152,0 +33550,,84420,1039423,8 +33551,Fighter,71120,1872252,31 +33552,Barkis,141640,12517,8 +33553,Charles Ambrose,339527,72466,3 +33554,Vadim,142746,1117911,7 +33555,The President,53619,21460,9 +33556,Tuni,31542,1037920,3 +33557,Judy Ogle,426670,1548297,6 +33558,Olga,56448,23709,4 +33559,"Анна Суздалева, инкассатор",46010,1190205,3 +33560,Cejnar,88953,544229,5 +33561,Libba (9 Years Old),68387,551473,7 +33562,Roibin,192990,6972,1 +33563,Gambler (uncredited),37628,1536725,30 +33564,Molly Carr,86360,9088,0 +33565,Donnie Rose,15020,58014,1 +33566,Mrs. Garner,26323,1053099,10 +33567,Léa,13652,76967,5 +33568,Greeley Clegg,32634,30554,11 +33569,Math Teacher,119738,946356,9 +33570,Brady Logan,26119,96675,13 +33571,Fay,96132,157439,3 +33572,Dahlia,129530,1089690,2 +33573,Woman at Smith Home,413232,103938,22 +33574,Bodhi Rook,330459,53240,6 +33575,Otto Flanders,27999,95564,5 +33576,Frederick Lannington,20153,4113,2 +33577,Old Man,125344,130997,4 +33578,Sgt. Hanna,118283,2771,3 +33579,Robert,228108,418,1 +33580,Zdenkina majka,382873,1581228,14 +33581,Movie Actor,52122,51717,17 +33582,"Yaffitz, Bridge Player",179066,4969,17 +33583,Judge Crandall,35564,34597,4 +33584,The General,38770,20399,4 +33585,Natalie,3291,24357,2 +33586,Hedda,31880,937750,10 +33587,Annabelle,12449,72255,4 +33588,The Mother (voice),309809,53714,1 +33589,Hugh Deverill,76714,6599,3 +33590,El Camaleon,106747,3131,12 +33591,William Schuyler,167882,15417,4 +33592,Tom,204965,1187352,10 +33593,Dr. Rosshilde,295964,7056,5 +33594,Helen,136386,141534,8 +33595,Lee,26331,18588,3 +33596,Cossack,31273,107878,25 +33597,Noah Barclay,89921,9811,1 +33598,Mrs. Poppits,65123,86796,7 +33599,Ricky Fung,10044,62414,2 +33600,Onion Dance Player,26469,1510794,8 +33601,J.C. Dithers,3941,12502,6 +33602,Boy (voice),38060,567111,3 +33603,Policeman,264309,1016691,17 +33604,Kelly,7515,52850,9 +33605,Marcellina,39407,38231,5 +33606,Soldier,13834,42711,9 +33607,Renato,330275,78479,3 +33608,Jāzeps,116432,1189528,8 +33609,General,57781,125855,5 +33610,Katharina Vorweg,295782,28395,1 +33611,Duchess,57438,226182,20 +33612,Takako Numata,55192,95504,0 +33613,Baketamon,24973,20124,2 +33614,Troy Nelson,86829,33532,11 +33615,Short Man,25126,1122014,7 +33616,Rita Walachowski,242042,29932,8 +33617,Giuseppe (voice),38579,54691,3 +33618,"Sgt. Manuel ""Manny"" Rodriguez",189197,19498,5 +33619,Himself (Archive Footage) (uncredited),448449,141028,8 +33620,Grandfather,280583,554814,4 +33621,,127468,1059956,4 +33622,Casting Teilnehmer,27637,1724684,14 +33623,Genesis Shareholder (uncredited),365942,1670761,67 +33624,Young Castiza,23750,1856169,26 +33625,Mrs. Fairfax,38684,5309,3 +33626,Charlotte,20357,8211,1 +33627,Naagraj,160261,14596,4 +33628,Happy Singh,12273,35070,0 +33629,Hero (archive footage),76784,27957,7 +33630,Promoter,921,1214322,39 +33631,Jacob Nicolas Moreau,99579,32092,10 +33632,Singer,47745,139340,7 +33633,,275060,1181353,10 +33634,Justine,287587,9827,2 +33635,Paro,102632,130958,1 +33636,Charlotte Posche,121936,1957,1 +33637,American POW,227306,1394470,70 +33638,Police Station Reporter,146233,1689983,27 +33639,Teacher with Paddle,93511,1211946,13 +33640,Football Jock (uncredited),345922,1511250,51 +33641,,155605,552007,5 +33642,Biggs,344906,223050,7 +33643,Boland,33224,104631,9 +33644,Raymond Crowe,66193,36055,2 +33645,Prince Daniel,15016,59311,1 +33646,John Ripley,205798,21089,0 +33647,Un Conseiller,117550,32046,6 +33648,Hooker,166221,71425,15 +33649,Serge,366548,1336030,8 +33650,Rene Galgano,3513,32359,8 +33651,Lazar / Johnson / Elijah,30366,20853,12 +33652,Joanie / Woman with Hot Dog (voice),123025,64948,13 +33653,Cevat,44105,1004806,2 +33654,Johnny Viscardi,37083,116847,2 +33655,Detective Kelly,19618,84936,9 +33656,Mr. Fletcher,104427,102066,7 +33657,Cornish Car Driver,43833,588260,39 +33658,Matty,347945,141958,4 +33659,Jennifer Randall,86603,119245,1 +33660,Shopgirl,44754,78080,12 +33661,Hugh,5413,34717,12 +33662,Chinese Fashion Designer,359413,1508584,14 +33663,Uncle Leo,36817,69951,2 +33664,Zycho,13561,1212192,4 +33665,Rebecca Jordan,396152,1615805,1 +33666,Col. Elmer Ellsworth,161187,62500,11 +33667,Game Show Producer,35826,1334990,14 +33668,Soldier,128866,1665448,16 +33669,Rato,206563,1372463,2 +33670,Jeff LaHaye,20583,23497,4 +33671,Kelly,105768,1038625,2 +33672,Jeremy,384682,52997,7 +33673,Damrod,122,186469,27 +33674,Nolan,90231,1506921,7 +33675,John Douglas Cheever,99767,19406,0 +33676,Himself,21671,185773,8 +33677,Martin,35113,4941,1 +33678,Alice,222858,82956,8 +33679,David Long,43497,95943,13 +33680,Thresher,120657,3341,16 +33681,,248211,1288009,2 +33682,Mr. Satan,39107,122191,6 +33683,,276846,237611,18 +33684,Olivia Harwood,49502,100784,1 +33685,Jim,89551,550778,1 +33686,Le monsieur du 5ème,33436,54382,19 +33687,Jennifer,8329,111091,12 +33688,Hoxie,44545,153387,12 +33689,Father Richard,149232,151263,2 +33690,Fernando,119409,132450,6 +33691,Benoit,61217,32563,20 +33692,Corrections Officer,97614,207881,11 +33693,Herself,329243,105788,8 +33694,Charlot,99313,55920,6 +33695,Bodhidharma's wife,86718,580659,3 +33696,Rudolf Hartmann,42460,27339,5 +33697,Koboyshika,18722,553444,44 +33698,Dr. Sam Bonnert,55922,3712,13 +33699,Woman In SUV,1726,939869,38 +33700,Jack,4964,21088,11 +33701,Sarah Malloy,195269,111920,2 +33702,Juan,29638,41062,2 +33703,Orville Wright,10204,36422,25 +33704,Seaman (uncredited),38654,1709266,22 +33705,Eric Sinclair,98125,10802,2 +33706,Jim,408508,45407,1 +33707,Dean Arbagast,15805,40393,9 +33708,Gabrielle,39213,54817,0 +33709,Hye-Young,25597,1073874,7 +33710,Yee (young),10389,551603,14 +33711,Duncan / Doctor,133448,189403,5 +33712,Srinivasa Ramanujan,353326,76788,1 +33713,Additional Voices (voice),14885,81082,8 +33714,,76202,27405,5 +33715,Stephen,7511,207,10 +33716,Gustav Simon,215740,1200392,2 +33717,Himself,366696,1753489,15 +33718,Marci,78362,843374,4 +33719,Brian Bringham,22803,45566,15 +33720,Frédéric,8282,48576,1 +33721,"Léa, la toxicomane",44256,45523,5 +33722,Tommi,171873,36863,0 +33723,Billy Pratt,10780,15105,4 +33724,Richard,72875,104040,8 +33725,Blanche Ingram,38684,17606,26 +33726,"Bruce, Henry's Partner",11364,27545,4 +33727,Amanda's Mother,2001,1781705,40 +33728,Investigator Gene Blake,26801,94293,12 +33729,Junger Mann,2734,27288,46 +33730,Kahara,27711,1192163,8 +33731,1st Lt. Gerald Arons,37468,117746,11 +33732,Hal (Massage Client),209263,579064,10 +33733,,335897,1454623,3 +33734,Baylis,60269,93518,7 +33735,TV Sales Person,24420,44246,25 +33736,Mom Asparagus / Penelope / Narrator (voice) (as Gail Freeman),268893,1788513,2 +33737,Peter Pyke,257454,996744,3 +33738,John,128215,3720,4 +33739,Bumblebee,460135,42915,4 +33740,Iris,73700,29221,3 +33741,Petya Kopeykin,256520,86870,0 +33742,Kat,10754,66464,2 +33743,J.T.,176124,1217939,7 +33744,Betz,73313,115994,16 +33745,Mr. Jones,58467,103011,14 +33746,Kurt,308024,17881,3 +33747,Ludovic,204771,1187200,0 +33748,Fire Dancer,75162,1563599,17 +33749,Mrs. Connolly,1259,37057,16 +33750,Mme. Sylvestre,21070,590241,9 +33751,Gwendolyn,100450,1026224,1 +33752,,69310,134029,37 +33753,Janitor / Bailiff,5559,31531,18 +33754,Tea lady,16171,79882,32 +33755,Jimmy,43228,1042711,3 +33756,курортник-ветеринар,63300,86840,7 +33757,Nicki,85580,932338,2 +33758,Anne Blair,30307,229632,2 +33759,Radio Announcer,53851,120810,8 +33760,Sandra,87148,100572,1 +33761,Alex,122843,17477,6 +33762,R.B. Pulsifer Sr.,84397,14361,4 +33763,Tourist Information Manager,55433,222370,2 +33764,Gudmund Erlandsson,206390,121001,6 +33765,Leolo,11139,68312,1 +33766,Germain enfant,39413,145165,17 +33767,Coach Ford,379441,22132,5 +33768,Bob Boruchowitz,58244,9191,2 +33769,Dame à la veste,15036,24475,3 +33770,Weifang,63441,1114835,12 +33771,First Butler,106635,2930,10 +33772,Mrs. Corrigan,29805,80234,36 +33773,Boy at St. Mary's,61225,1860437,24 +33774,Himself,24235,2778,1 +33775,Bob,213443,144381,5 +33776,Caesar Xavier Serpi,41552,3140,3 +33777,Bradley,11509,10380,35 +33778,Marwan,8932,931682,2 +33779,Bridesmaid,335970,1718451,84 +33780,Natalie,79316,1285382,12 +33781,Ned Kelly,38978,1428,0 +33782,Don Enzo,108664,128227,1 +33783,Toni,29483,81331,4 +33784,,293516,15915,2 +33785,Guard,1726,54809,20 +33786,,285685,41237,1 +33787,Detective Sykes,195269,169747,3 +33788,Preast,198890,1119986,2 +33789,Welcome to the 60's Dancer,2976,1752803,150 +33790,Adele,40817,5077,9 +33791,Guy Lab Partner,7326,230868,16 +33792,Factory Worker,290714,1361065,9 +33793,Soldier,150712,89704,35 +33794,Jace Taylor,31445,101882,12 +33795,Doctor,14159,52974,18 +33796,Beauty Pageant Audience Member,428687,1776845,23 +33797,Anjooran,134474,1099269,0 +33798,The Gothic Sham,52369,73381,4 +33799,Daisy Kiu,283995,1082706,36 +33800,Danny Nicoletta,10139,67601,11 +33801,Tom Morelane,16083,36801,14 +33802,Himself,18893,938987,21 +33803,Maggie Kelly,38978,189231,11 +33804,,284467,3798,4 +33805,Donna,19794,38333,28 +33806,Blackie,227306,1374534,11 +33807,Jed,345924,93228,5 +33808,Lt. Hanes,32080,161793,11 +33809,Alberto,40817,72050,5 +33810,Uriah Heep,141640,945707,6 +33811,Vivian Delwyn,29236,860,4 +33812,Missy,9352,1249959,13 +33813,,1416,1485087,6 +33814,Ali (as Fred De Silva),50329,1381533,16 +33815,Bill Roberts,31150,11750,2 +33816,Eddie Kearney,72638,16531,50 +33817,BullDog,267931,172254,10 +33818,Himself (archive footage),14286,46432,4 +33819,Hauptmann Eichholz,12412,7803,13 +33820,,256907,53107,4 +33821,"Gauckler Joachim ""Teufel""",75578,282916,2 +33822,Tennesse,306952,977993,54 +33823,Lord Byron,144613,8839,7 +33824,Stunning Woman,10204,203194,19 +33825,Photographer,24625,1309423,11 +33826,Col. Hallock,43241,89703,4 +33827,Ann Terry,37992,34184,5 +33828,Woman Jogging,55725,54124,16 +33829,Doctor Benway,2742,6355,4 +33830,Girl in Dressing Room,52736,1690413,18 +33831,Val Brookston,185564,167825,5 +33832,,57458,1581033,5 +33833,Bookshop Owner,203321,1342224,10 +33834,Connie,40221,154582,7 +33835,Roth,43142,4361,8 +33836,Clara,61267,37628,1 +33837,Petrakis,301491,1260072,1 +33838,Sally Phillips,20174,85760,8 +33839,Driving Instructor,2976,1551522,38 +33840,Mr. Carver,186268,144549,4 +33841,Deunan (motion actor),11633,1120475,5 +33842,Bill Decker,131351,96228,8 +33843,IQ - Corny Collins Council / Welcome to the 60's Dancer,2976,1752331,54 +33844,Fox Cub,90034,1197884,9 +33845,Rose Mignon,66812,1121589,11 +33846,Horace (voice),13654,34521,6 +33847,Jennifer,109074,1606821,1 +33848,Sam Hendrix,11206,34981,3 +33849,Maestro elementare,80374,45982,1 +33850,"Joy Hampton, Party Girl",25633,94033,12 +33851,Elrod,167262,124783,8 +33852,Jara,267579,1512431,6 +33853,Female Soldier,8988,1742437,86 +33854,Jordan Mains,307081,62644,4 +33855,Joe,8010,53594,12 +33856,3rd Caller,44012,130035,4 +33857,Chotu,80539,589654,7 +33858,El Kadur,140887,121097,6 +33859,Major Newman,121154,26681,12 +33860,Santa Claus / Santa Claus Auditionee / Himself,430826,1891558,64 +33861,Pimp,8935,1133858,3 +33862,Melissa Thompson,35381,106765,17 +33863,Marlowe Hammer,47342,21259,1 +33864,,63899,99311,0 +33865,Aunt Emma,244786,1212459,10 +33866,David Garrick,134480,32923,0 +33867,Lee Hackett,42871,18803,0 +33868,Bob Regan,29113,8254,1 +33869,Lt. Tremaine,151310,143534,13 +33870,M'Rai,31915,1008314,5 +33871,Himself,324181,1424222,16 +33872,Milly (voice),71689,567616,7 +33873,Policeman,49712,1227664,35 +33874,Ivan Gregory,405388,57191,1 +33875,Adrian,18045,44176,4 +33876,,23289,584142,11 +33877,Michael Harrison,1450,15498,4 +33878,Paul / Cop / Ensemble,15199,208710,13 +33879,Douglas MacArthur,407887,3896,1 +33880,Steve Addington,13827,10297,0 +33881,Colin,406052,1334653,7 +33882,Liana,139998,53936,3 +33883,Bittercreek Newcombe,167262,47879,5 +33884,,311417,1399673,2 +33885,Carmela Krailes,144580,52628,3 +33886,Violet Stanton,60086,18475,4 +33887,Boy,63340,21246,7 +33888,Max,54156,1461324,7 +33889,Anna,98364,217765,7 +33890,Woman in Airport,413232,102002,45 +33891,Walter Bliss,26491,95536,4 +33892,Rappi,43379,4962,2 +33893,Bahula,332662,1570539,3 +33894,Green (voice),217057,84495,9 +33895,,32234,120435,2 +33896,Bekir,402455,930674,7 +33897,Himself,8847,56088,8 +33898,Nurse,291866,155625,9 +33899,Candy,21950,102452,9 +33900,Maggie Moreno,19294,81106,1 +33901,Mediator,345915,183907,36 +33902,Ni Hagadorn,188826,3309,3 +33903,,28280,61671,4 +33904,Le fonctionnaire israélien 2,1986,20434,15 +33905,Jacob,50387,46461,1 +33906,Mia,260001,549775,8 +33907,Jacobo,167956,1169323,2 +33908,Adam,14008,200666,6 +33909,Mandy,6076,47781,13 +33910,Alev,220002,1246607,8 +33911,Giulia,40817,53422,1 +33912,Dr. Shamban,32395,28031,10 +33913,Victoria Champagne,160160,7011,0 +33914,Slim - Reporter (uncredited),33112,34423,30 +33915,Iggy,339116,1225901,8 +33916,Walter,370234,583456,10 +33917,Kong (motion capture),293167,236696,34 +33918,Al Dunbar,214753,47513,1 +33919,Tuppen,51141,575501,8 +33920,Sakazuki,176983,77934,14 +33921,Breakfast,155341,1869476,11 +33922,Thierry,47959,1185235,12 +33923,Gloria Jennings,13173,15370,21 +33924,,342163,16971,2 +33925,,45441,233523,7 +33926,Joe Kidd,15616,52940,13 +33927,Barkeeper Gustav,42260,21997,6 +33928,Cooper,71140,560299,5 +33929,Jodie,5172,93927,21 +33930,Munan Bårdsson,57438,226174,6 +33931,Cliff Banks,46184,83253,1 +33932,Full,61581,51741,9 +33933,,25626,116636,42 +33934,Jen Dunham,286971,1355719,5 +33935,Nurse Dunne,32082,13934,11 +33936,Laverna,13285,45923,3 +33937,Joe Fogel,242835,79246,6 +33938,Zhang Yun,12289,1623408,26 +33939,Yoko,27843,146250,1 +33940,Paula,72847,860,3 +33941,Tara's Mother,413882,53374,5 +33942,Rick,318359,1557116,2 +33943,Oribe Furuta,244956,70131,2 +33944,Young Wade,24810,1818101,14 +33945,Thomas,336691,94226,3 +33946,Model #1,243683,1397794,26 +33947,Zuchthausdirektor,10626,51055,13 +33948,Jericho,41360,112720,1 +33949,Floyd,39013,180805,15 +33950,Bolo,9461,58123,11 +33951,Christopher Craig,64167,83553,1 +33952,Himself,266782,552242,1 +33953,Boardinghouse Landlady,153161,2780,19 +33954,Elma,85265,1494966,25 +33955,"Señora de la Cruz, Archibaldo's mother",37628,987346,8 +33956,Vanessa,305932,1396860,4 +33957,Anubis,205584,61784,10 +33958,Arzt,330588,1439738,7 +33959,Singer,43868,1009621,7 +33960,beachguy,30149,1150148,9 +33961,"Gutierrez, Mexican Policeman",133328,3091,2 +33962,Karl Moore,333352,1584779,27 +33963,Judge,18569,34238,12 +33964,Kohei Kishimoto,391642,1470127,7 +33965,Celeste Dunbar,17745,20623,5 +33966,Hip Office Worker,336011,1264251,14 +33967,Herself,13516,176027,24 +33968,Dr. Ravic,40985,29519,1 +33969,Brad Fittler,116979,4177,6 +33970,Snappy Downer,180635,30157,3 +33971,,88273,1036401,24 +33972,Menighedsrådsformand,56858,1095801,5 +33973,Starman,22701,78496,0 +33974,Tall Servant (uncredited),22943,1090216,25 +33975,"Isé, the maid",132332,39005,11 +33976,Marina,56232,228077,9 +33977,Lemora,31596,108208,0 +33978,Cyprien Dufour,43878,535167,4 +33979,Ambassador,53230,144050,6 +33980,Hooters Girl,3563,1569484,21 +33981,,57438,226186,24 +33982,Cotton,285,1715,16 +33983,Mrs. Garrity,357130,102002,8 +33984,Monsignor Francis Hurley,94468,118484,4 +33985,Dancer,59738,1082921,26 +33986,,301671,1903917,7 +33987,Mexican Man in Lift,206647,87265,13 +33988,Pidro Vicario,163706,1754681,13 +33989,Driver,123109,114019,0 +33990,Marshal Bill Graves,134238,34091,10 +33991,M. Henri,56589,26889,13 +33992,Homme cinéma,283726,4387,17 +33993,Cris,7343,52535,6 +33994,Paulus,49398,24381,2 +33995,Adoption Agent,214756,74070,26 +33996,Teacher Hagiwara,121725,13256,11 +33997,Hilde,54769,48239,4 +33998,Pete,26376,119255,11 +33999,Chiara,153854,1140131,3 +34000,Soldier,39276,235386,16 +34001,Miss Jenks,62392,19967,3 +34002,la directrice de l'orphelinat,14650,35908,5 +34003,Flory,121598,1880902,21 +34004,Japonesa,8329,1367762,15 +34005,Leonhard Talu,321303,1337365,22 +34006,Hammond,25918,112009,9 +34007,Joey,38546,120679,0 +34008,Friend,94659,33135,6 +34009,Sky Copter Reporter,5172,85954,35 +34010,Paul's Chauffeur,169355,1716676,17 +34011,Jim,43155,11492,0 +34012,Dan Moroboshi,39123,13256,10 +34013,Jack Weaver,39219,96850,3 +34014,Irwin,1420,17019,3 +34015,Mrs. Nora Taylor,64928,240073,5 +34016,Rusty,361025,1513563,1 +34017,President Quivering,121598,1880903,23 +34018,Chettiyar,368006,544888,12 +34019,"""Pisciasotto""",82083,129968,15 +34020,Patricia,99367,52119,2 +34021,Woo-Jin,338729,1238592,12 +34022,Police Constable,299780,1379269,16 +34023,Troy (voice),132601,10825,6 +34024,"Dave, Angela's Brother",47312,118427,10 +34025,Mother Superior,27414,2072,0 +34026,,438597,1442736,8 +34027,Carlos,35025,1452608,15 +34028,,22701,1187647,16 +34029,Himself,15177,77988,17 +34030,Hat Shop Clerk (uncredited),44869,121323,16 +34031,Rita,56669,95857,5 +34032,Else Bongers,11440,16782,1 +34033,V.I.P. Girl,123103,77948,6 +34034,Whisler Boy,266285,1459357,20 +34035,Calliopist,27349,81841,14 +34036,Ship's Officer (uncredited),43419,144127,24 +34037,Karin,5638,81547,8 +34038,Agent Wally (uncredited),302699,1358087,14 +34039,Lord Bernard Clark,54406,41419,1 +34040,Rev. Mr. Septimus Crisparkle,84718,93900,4 +34041,Mother,91527,125204,1 +34042,Amaia,236737,224731,0 +34043,Hélène,101183,19092,2 +34044,Sibylle,49853,1335466,10 +34045,Sheriff Pat Garrett,11577,5563,0 +34046,The Horror Host,27417,119232,4 +34047,Larry Gray,2288,2296,3 +34048,Bruce Berger,75969,5646,4 +34049,Alfredo,130900,16421,9 +34050,Guard,310135,1716348,45 +34051,Stretch,25941,16702,5 +34052,Brath / Fjellmannen,56937,107740,6 +34053,The Bandleader,133382,4239,2 +34054,Dr. Theodora Cushing,74629,3713,1 +34055,Luana,92341,31876,0 +34056,Waiter at Reception (uncredited),147722,9096,36 +34057,Salome,293380,30765,8 +34058,Dutch Schulth,3556,14830,6 +34059,Detective Lt. George Conover,29467,98503,7 +34060,Steph,374475,28749,2 +34061,Jean Pierre Napoleon,145220,15232,1 +34062,Reporter,5172,208060,32 +34063,Doña Trinidad,353713,1495157,7 +34064,Deputy Clark,258353,208389,4 +34065,Olivier Rey,5511,54403,8 +34066,Jimmy Olsen,126712,930166,2 +34067,Ian Donnelly,329865,17604,1 +34068,,211561,224312,2 +34069,Dr. Boycott (voice),30060,15788,3 +34070,"Kudo, the drygoods merchant",74581,122430,3 +34071,Himself,14761,1308770,5 +34072,Blue Duck,259975,54864,11 +34073,Inès,378446,1578026,5 +34074,Marilyn Montgomery,242631,3340,11 +34075,Professor Maroncelli,33495,55912,0 +34076,Rosy Mol,332827,1658594,10 +34077,Trisha Goddard,747,1215808,20 +34078,Hermance,26152,146496,20 +34079,Maria Mahazannik,71336,562601,2 +34080,Night Watch Captain (as Priya Ragaratnam),188927,1502989,37 +34081,PC Mitchall,20034,86479,8 +34082,Koistinen,25335,93566,4 +34083,,31011,190098,21 +34084,Konekomaru Miwa (voice),201223,149894,5 +34085,,293122,1132702,4 +34086,The New Girl,352372,1090687,6 +34087,,63568,237502,1 +34088,Henri Sarrou,42825,8727,3 +34089,Sergeant Alan Baker,176867,81168,0 +34090,Achilles,81409,30898,0 +34091,Marguerite,26152,146491,14 +34092,Porter,31993,120545,12 +34093,Xiao Yue,88922,240181,1 +34094,Dr. Alex Dubroc,42825,2497,6 +34095,,176321,590711,5 +34096,Mrs. Morton,57684,7381,6 +34097,Dr. Graham,99567,1196060,5 +34098,Franck,330770,1616031,5 +34099,Esposa,105059,1172830,41 +34100,Eddie Larson,374461,1193606,5 +34101,Sherman,1595,4521,3 +34102,Vince Marlow / Pop,85420,3265,3 +34103,Clarke,84283,1001729,1 +34104,Liz Hunter,9885,60003,1 +34105,Shirley the Old Lady Bird (voice),153518,1374727,31 +34106,,252845,236751,8 +34107,Club Patron (uncredited),330947,1378058,60 +34108,Louise Pope,403431,113224,6 +34109,Jesse Woodson James,43829,10922,0 +34110,Herself,105583,1095408,3 +34111,Miller,337339,1814863,20 +34112,Mabel Lovesay,16444,119343,8 +34113,Ronnie,97614,564389,12 +34114,Bill Talbot,334074,5694,4 +34115,Sgt. Walkingstick,94468,123631,8 +34116,,63215,1520921,44 +34117,Min-soo,169022,1346848,2 +34118,Ping,177677,1562082,31 +34119,Sally Brown (voice),31718,124038,4 +34120,Jamie,5753,45365,5 +34121,Jason,385750,986808,2 +34122,Police Dispatcher,214756,130836,62 +34123,Lillemor Hershagen,80059,93485,7 +34124,Rachel,14983,63207,6 +34125,Minister,179066,96721,58 +34126,Officer Wai King Ho,19528,64435,2 +34127,Vicki,83770,237041,11 +34128,Sandhya 'Bombs',14467,126499,6 +34129,Piano / Ginger Girl (uncredited),214756,1569519,85 +34130,Steward in Restaurant,21570,562225,4 +34131,Bill,32577,1763864,27 +34132,Adam,84226,11023,0 +34133,Theo Carter,403570,1286655,10 +34134,Gino,53486,121732,1 +34135,Braja,35790,1661203,5 +34136,Sibylle,62684,235805,3 +34137,Толян,46187,86151,0 +34138,Compeyson,16075,20425,11 +34139,Cover Girl,14869,215317,18 +34140,Cheerleader,16996,970084,49 +34141,Gunn Oddny,171648,1783169,8 +34142,Ren Xing,241639,1276629,3 +34143,Buddy,14882,77518,3 +34144,Captain Jacop,134475,29978,4 +34145,Marvin Goldblum,9568,2716,9 +34146,Nutter,54804,991,14 +34147,Rigaud,47084,1333,8 +34148,Chirurgo di Luigi IX,61217,1189964,19 +34149,Wolf Grimm,212503,38312,6 +34150,Moose Jones,25507,96258,6 +34151,Lionel,9993,1331,2 +34152,Anna,97365,1033671,4 +34153,Boogeyman,70772,78311,3 +34154,Rosamma,398786,1629009,7 +34155,Ambulance Attendant,28090,1719888,31 +34156,Totan,336890,1903974,26 +34157,André Vanderbiest,21581,583729,4 +34158,Portland Announcer,23964,80353,21 +34159,Gangster in Court,150712,242238,34 +34160,Travis Walton,15613,61962,0 +34161,Molly,301325,1102331,8 +34162,,227552,66497,8 +34163,American Native Indian,240832,1587633,56 +34164,East Texas Tech (uncredited),365942,1670753,50 +34165,Bar Fight Girl,157829,1791287,18 +34166,Jake,921,14903,13 +34167,Young Policeman 2,242224,1413771,16 +34168,Stuart,22447,1687929,18 +34169,Violent Man - Ko's Inner Personality (as Cheung Siu Fai),14016,72732,7 +34170,Fat Faced Goalie,203833,1277223,15 +34171,Dick Jensen,37315,34597,9 +34172,Bob Stafford,250332,1289475,17 +34173,Rajnikant,21566,85454,6 +34174,Cristina di Belgiojoso da giovane,56853,119366,3 +34175,Spike Forgan,75510,120537,5 +34176,Cab Driver (uncredited),54139,9109,21 +34177,Teresa Gazelle,7304,21657,2 +34178,Reporter,222220,117326,9 +34179,Ginger,300669,1635844,7 +34180,Ricky,424488,1837299,54 +34181,Takumi Nakamura,291351,3899,2 +34182,Beverly,378018,20180,6 +34183,Funcionária,373397,1348991,12 +34184,Mrs. Brevoort,24363,17488,5 +34185,Samon Shimada,34019,111691,2 +34186,Saloon Girl,151062,14707,9 +34187,Nicky Yue,28366,74192,1 +34188,Sam,5721,4679,8 +34189,Marie,19053,551908,24 +34190,Mystic,55694,3418,8 +34191,Vanessa Redman,137776,84698,0 +34192,Edmond (as Harald Ramond),131764,50090,6 +34193,Chuck Raven,18711,3037,1 +34194,,15830,1433094,13 +34195,Music Director of Aasan Nahin Yahan song,192558,1414454,5 +34196,Francine Suskind,152532,1078610,13 +34197,Erzebet Zslondos,448847,20810,1 +34198,Ohnaka,20481,56560,14 +34199,,60199,5048,2 +34200,Tracy,270654,1046537,11 +34201,Receptionist,51036,1862893,19 +34202,,77057,1621639,8 +34203,Club Bouncer (uncredited),15092,74231,65 +34204,Prisoner,61908,103107,20 +34205,Sister Doris,14423,18284,3 +34206,Sgt. Trinoski,14878,26853,3 +34207,Amanda,323679,1213572,4 +34208,Jo Jordan,34623,8237,2 +34209,Helene Castle,122221,1103790,4 +34210,Rose,193387,14702,4 +34211,Mary Moore,59249,36851,3 +34212,Neil Clarke,86828,11108,0 +34213,Beverly Clark,4380,4038,2 +34214,,77564,579743,7 +34215,Bill Tower,56558,992587,17 +34216,Brave Cop,1724,76528,51 +34217,Emily Ann Faulkner (Rita Shawn),3081,31440,0 +34218,Nurse (uncredited),94551,106897,12 +34219,Floris,19398,107204,9 +34220,The Sheriff,45627,90074,5 +34221,Phyllis Baxter,59895,83987,2 +34222,Sean,85446,932091,1 +34223,Abu Saiyed,98203,1053935,8 +34224,Moss' Mother,27230,134178,8 +34225,Rennard,3051,139910,10 +34226,Hotel Dining Patron (uncredited),76203,1011212,72 +34227,Petter,145547,119251,3 +34228,Major John Masters,86254,44222,0 +34229,Donna,59744,557530,6 +34230,Baapji's Brother-in-Law,102632,32335,11 +34231,Metal Kjell,382125,73548,15 +34232,Janice,199373,1633405,16 +34233,Marine Sergeant (uncredited),96107,17759,15 +34234,Principal Walsh,7233,52119,6 +34235,,238925,544831,1 +34236,Officer Hunt,340215,1630268,11 +34237,Uto,64961,55134,5 +34238,,49961,143124,19 +34239,Kellner Venedig,269258,3841,11 +34240,Glenn Killing,38789,79172,3 +34241,Pretzel Person,14123,148212,31 +34242,Abner Lait,148031,10823,2 +34243,elle-même,64357,446627,6 +34244,Doctor,2143,132892,14 +34245,Jade,109439,69122,8 +34246,Celestial O'Brien,42191,11439,4 +34247,Kevin,252680,235548,9 +34248,Prison Guard,3059,980418,26 +34249,Balfour,8915,1329372,10 +34250,Vito,87302,1544966,8 +34251,Hamm,130925,7907,10 +34252,la grand-mère,43878,37147,6 +34253,Gussie,44463,1027314,7 +34254,Professor Winnup,107973,183587,6 +34255,Schwiegermutter,10129,558787,5 +34256,Dr. Alexi Gierach,22076,112342,3 +34257,Lucia 'Lally' Marlett,99767,88867,1 +34258,,229134,1263763,16 +34259,Country Groomsman,405473,1800042,38 +34260,Nancy,104041,176544,7 +34261,Michael,26142,28004,15 +34262,Peter Forente,241239,4941,5 +34263,Attendant,57326,42533,13 +34264,Herself,130993,74257,9 +34265,Cooper,294690,1390549,26 +34266,Art Model,109391,1204706,41 +34267,Young NASA Secretary,365942,1670752,28 +34268,Pirate Leader,7555,1816645,16 +34269,Mr. Wu / Wu's Grandfather,87894,14481,0 +34270,,88273,1547788,30 +34271,Voix de Brigitte,41277,111439,30 +34272,Dwayne,99367,21163,5 +34273,Gengo Kotaka,19336,237079,0 +34274,Shim Eun-ha,85959,1066218,6 +34275,,124597,1675544,19 +34276,Camper (uncredited),251227,1286528,24 +34277,Jeune femme cabine,98277,1849121,44 +34278,Profesor Jan Moll,298040,17889,8 +34279,Kanjar Ro (voice),17445,2115,5 +34280,Stoned Kid,141733,1251914,11 +34281,Detective,21208,59602,11 +34282,Cowboy,8988,983604,24 +34283,Catherine Dennison,111042,83237,5 +34284,Laurent,67509,1114607,11 +34285,Headwaiter,52437,1468400,31 +34286,Ellen Gayley,61151,7331,1 +34287,Samuel G. Henshaw,43157,240072,4 +34288,Welcome to the 60's Dancer,2976,1752770,120 +34289,Booker,168027,177214,9 +34290,Nikolai Levin,96724,73287,18 +34291,Himself,73241,1082853,2 +34292,Harry Vargas,63706,2137,2 +34293,Sister Theresa,42066,14033,6 +34294,SS-Hauptsturmführer Otto Günsche,613,10744,16 +34295,Claude Harbrough,14750,12646,8 +34296,Colonel Jack Tomlinson,72431,6906,7 +34297,Mary Hargrove,47003,153185,3 +34298,presentatore del programma tv che legge la Costituzione,142320,229571,10 +34299,The Sennett Dog (uncredited),70753,1663165,7 +34300,Surgeon,315855,20853,24 +34301,Claire Thompson,45729,43928,1 +34302,Iris (voice),269650,936275,10 +34303,Queen Victoria (uncredited),43499,564871,11 +34304,,158598,1139977,4 +34305,Saturnina,83430,101400,1 +34306,Johnny Mutton (as Joseph Turkel),186268,592,8 +34307,Clark,43811,96721,77 +34308,Flammarions' Party Guest / Stephanie's Party Guest,31993,135827,46 +34309,Rafael,18082,224319,8 +34310,Clayton,7343,52540,11 +34311,Dolores Castanares,80592,126753,1 +34312,George Latimer,97829,14563,0 +34313,Conner's Girl,5289,1224878,22 +34314,Himself,15258,77920,44 +34315,Tom Powers,17687,5788,0 +34316,Son Goku (voice),155765,89879,3 +34317,Kuhn,31890,45587,15 +34318,Malin,336806,1457429,2 +34319,"Eileen, Kay's Friend",82696,5376,3 +34320,Simon Duroc,34280,17028,2 +34321,Padre Koldo,80280,1602324,24 +34322,Digvijay Patil,337876,91557,2 +34323,Bieke,12135,73382,2 +34324,Trevor Graydon,32489,7304,4 +34325,Editor (uncredited),2567,1330755,63 +34326,Boss,73943,429275,7 +34327,Ballard Henchman (uncredited),61985,939717,14 +34328,Yale Professor,22683,1329297,4 +34329,"Walter, room service waiter",54139,17759,10 +34330,amico di Luciano,82083,120636,19 +34331,Paul Boulat,61935,220990,1 +34332,Mike,392818,512749,4 +34333,Delgado (voice),14405,1271,2 +34334,Abby,13993,2207,3 +34335,Himself,173465,1266239,4 +34336,Ginko,2994,3784,2 +34337,Interviewee #3,28090,1719893,40 +34338,Kenan,74879,564271,4 +34339,Padrone,31542,1757142,24 +34340,A Piócás,63625,1037725,9 +34341,Marie-Claire,91690,72590,7 +34342,Chief of Police,27966,33856,29 +34343,Lel,157409,1138745,3 +34344,Pat Corbett,43522,8729,3 +34345,El Greco Patron (uncredited),105551,105505,11 +34346,WW2 Nazi Vampire Extra,246741,1780279,37 +34347,Mike Deerfield,6973,17243,5 +34348,Davis,83,1420204,3 +34349,Brother in Law,21948,122455,7 +34350,Hearing Specatator (uncredited),28000,1598134,17 +34351,Jukebox Girl (uncredited),323675,1769817,61 +34352,Sgt. Triand,25388,2407,6 +34353,Nana Mama,94348,18249,6 +34354,Patriot Scout,52360,116494,53 +34355,Geetha,49074,237637,9 +34356,Julie Hudson,43441,115990,3 +34357,Mustafa (15 years old),139272,1110447,3 +34358,Shagal,3053,30119,2 +34359,Ryokichi,94659,145252,5 +34360,"Uvinous ""U-Boat"" Botango",302960,24362,11 +34361,Artist,18651,4120,8 +34362,Fighter,71120,1872250,29 +34363,Rıza,332534,1254540,2 +34364,Vika,123949,143657,1 +34365,Makarov,388862,583061,5 +34366,,50028,68890,2 +34367,Mayor,3478,32068,15 +34368,Pete Perkins,16563,148742,15 +34369,Sailor Mercury / Ami Mizuno,37100,124478,3 +34370,Phelps,450530,1563431,13 +34371,Hospital Nurse,326285,1279375,13 +34372,Mr. Lawrence Nevins,109258,70990,4 +34373,Anthony,81182,1926,0 +34374,Murugan,372226,503842,10 +34375,Chiara,43544,56844,1 +34376,le pasteur,4279,649,15 +34377,Cameo Appearance,66526,584411,11 +34378,Mr. Harry J. Wringle,32634,83149,7 +34379,,153196,1283559,8 +34380,Anna,74674,4458,0 +34381,Scott Summers / Cyclops,127585,11006,21 +34382,Albert Stockwell,18273,17328,1 +34383,Robin Archer,214753,80112,4 +34384,Medic,12601,53152,6 +34385,Irvine,259830,1333092,5 +34386,Coral,4191,11989,1 +34387,Professor Newton,154371,120810,4 +34388,,166262,20592,9 +34389,Mourner,272878,1370997,18 +34390,Nachtschwester Anna Himmel,217412,1080991,29 +34391,,392832,72786,5 +34392,Gena the Crocodile (voice),79701,1082610,0 +34393,Woman on Train,244201,1198250,12 +34394,Hertha,4955,41001,14 +34395,Dommeren,5177,41905,3 +34396,Romain,313074,1050631,6 +34397,Whitney Drummond,8669,55615,7 +34398,"Augustin, le vieil agriculteur ami de Beaufort",75066,12269,9 +34399,Unruly Detainee,256969,1283040,10 +34400,Samantha 'Sam' Parkes,132422,6281,2 +34401,Bit Part,18651,1045604,63 +34402,Gen. Watkins,253250,30279,6 +34403,Antonina 'Tosia' Kozlowska,143240,1118735,2 +34404,Carol,33510,74018,6 +34405,Little James Brown,239566,1457249,37 +34406,Otávio,73624,569892,4 +34407,Raymond Starkey,8080,15318,5 +34408,Chiba,92496,105047,1 +34409,Michelle,314283,45391,1 +34410,Annelise Ackermann,50849,46780,1 +34411,Damon (voice),88557,936990,8 +34412,Young Rick,71503,563096,13 +34413,Detective Gill,253154,1181331,4 +34414,Ray Mercer,38162,27811,0 +34415,Kurt Fellner,11122,68889,1 +34416,Dan Vaughn,103201,349,1 +34417,Bibi,24258,55758,1 +34418,Baby,339403,1159982,0 +34419,Marino Spada,59040,89193,0 +34420,Invitata Matrimonio,59040,1861166,24 +34421,Inspector Yadav,33460,110713,9 +34422,Paul Marchand,10299,15699,8 +34423,Bruno,33095,180892,3 +34424,Sheriff,129851,33818,7 +34425,Ashley,18826,20354,3 +34426,Woman (uncredited),44869,71780,20 +34427,Sir Brockhurst,11839,6933,12 +34428,Jimmy,63859,140029,1 +34429,Prof. Flaherty,40804,95614,5 +34430,Aunt,25695,94106,0 +34431,Dead Girl,81660,206811,8 +34432,Police Commissioner,75745,71090,2 +34433,Karley Terry,30155,105785,5 +34434,Synth,76757,1394337,36 +34435,Palumbo the Pianist,193435,1238851,7 +34436,Girl with Roosevelt,147722,229608,23 +34437,Ryan,19238,17772,0 +34438,Sal Mercado,38202,54865,2 +34439,Dr. Jeff Cameron,20153,10158,0 +34440,Replicant / Garrotte,10596,15111,1 +34441,Tor-An,49521,12371,16 +34442,"Therese, a seamstress",151068,128297,9 +34443,Dentist,55167,222504,8 +34444,Miner at Colliery,28421,1420479,44 +34445,Felix Lehman,43849,9067,2 +34446,Kureo Mado,433945,40450,4 +34447,Valerie,18682,83433,1 +34448,Omar,47226,1564563,11 +34449,Giudice,42674,1205233,20 +34450,,11330,1444475,17 +34451,Pawel Gorin,63538,107864,2 +34452,Bar Patron (uncredited),354979,1636797,84 +34453,Raquel,397717,1722985,27 +34454,,8088,102227,22 +34455,Mr. George Peters,178341,34574,6 +34456,Okhrannik (voice),292014,1165836,5 +34457,Jack O'Callahan,14292,84342,7 +34458,Kyle the Photographer,351065,168788,11 +34459,Pool Cleaner,239566,62784,12 +34460,Lucretia,27507,98018,5 +34461,Stephanie Carver,36427,115343,0 +34462,Paul Duncan,11058,17141,0 +34463,Eloise,84295,925500,2 +34464,Captain Richard Warrington,43894,78847,1 +34465,小安,128842,543159,1 +34466,Brena,31542,1757135,17 +34467,Ruslan,440508,1846434,2 +34468,prete in carcere,52913,1862469,11 +34469,Bellboy,31993,590520,48 +34470,Mercenary 8,359471,1509233,25 +34471,Stripper,23628,90409,16 +34472,Homer Wallace,28484,2782,9 +34473,Konstantin's Interpretor,122843,990278,7 +34474,Interview Girl #1,9779,82791,21 +34475,Inga,87229,110899,7 +34476,Maklerin,308174,1888501,42 +34477,Mary Ellen,13022,216802,4 +34478,Karen Stephanson,30036,7302,1 +34479,Cpl. Carey Simms,294690,1239467,1 +34480,,14210,1600895,13 +34481,Dr. Jonas Gilcrist,44545,151887,7 +34482,Theresia Kneißl,12523,44328,3 +34483,Floozy at Level Louie's Place,41591,34509,21 +34484,Neville Flynn,326,2231,0 +34485,Yo-yo seller,45489,80901,14 +34486,Surgeon,2080,1353639,27 +34487,Young Mother,46891,980194,7 +34488,Ma Yuan,377447,18897,0 +34489,The Mother,199463,70276,3 +34490,Jeep Hanson,22894,155,5 +34491,Le professeur de physique de Marion,13713,82288,2 +34492,Mortuary Nurse,340101,26670,34 +34493,Stormtrooper,330459,186605,63 +34494,Greek Following Kay,179066,116307,56 +34495,"Dorothy Endicott (segment 3 ""Mr. Steinway"")",41035,940044,6 +34496,Connie,77875,727467,10 +34497,Munro,75138,79648,2 +34498,Doug,48281,64612,4 +34499,John F. Kennedy,132363,11006,14 +34500,Ms. Leung,47647,94076,8 +34501,Keyboard Player,2143,132889,10 +34502,Fat C,49199,1172981,9 +34503,Thadeus,24357,24362,1 +34504,Oficer Terroru,382155,1636704,32 +34505,,211233,221682,7 +34506,Jacob's Friend #4,289712,211484,7 +34507,Himself,15725,1006758,6 +34508,Bank Teller,111479,1797581,39 +34509,Molly Poole,29979,25702,1 +34510,Lal,81182,195545,5 +34511,Boyd Mitchler,286532,74949,3 +34512,Uncle Mike,254188,9289,10 +34513,Young Carter Farrell,11247,1776546,64 +34514,Mother,21955,1713204,13 +34515,Himself,322785,14639,1 +34516,Charlie Kaufman,101669,1375349,17 +34517,John Hammett,49500,42643,16 +34518,Minister,378441,1797408,21 +34519,Chip,20296,85889,2 +34520,Himself,208968,466505,0 +34521,Melina,14400,864082,12 +34522,Racetrack Announcer (voice),55604,1395871,47 +34523,Deputy Dan,134394,183016,4 +34524,Gloria,54093,78080,3 +34525,Colonel's Aide (uncredited),18651,13823,19 +34526,Tourist (uncredited),337339,1807062,73 +34527,Joji Akiyama,124597,50656,1 +34528,John Franklin,65603,14854,7 +34529,Tailor,11338,21217,20 +34530,Coach Dwayne Barnes,11351,945612,11 +34531,Oscar Culpotter,31263,1576625,9 +34532,Hillary Wilson,37420,4788,1 +34533,Alinka,200796,589234,1 +34534,1935 Fan,921,199849,35 +34535,Stormtrooper,214756,60286,46 +34536,Mike,22681,16839,2 +34537,Gioia Desideri,48805,87679,3 +34538,Bibbly (voice),136799,82666,34 +34539,Michele,56068,31991,4 +34540,Jefferson Duane,377170,121257,3 +34541,,257081,2930,29 +34542,Cameron’s Girlfriend,8270,54219,23 +34543,Michel Moukharbel,43434,67345,2 +34544,Walsh's Girl,108723,1446342,26 +34545,Karim,169881,25409,5 +34546,Jake,86274,146750,4 +34547,Scat,52437,128643,37 +34548,"Harry, a German soldier",8429,54933,4 +34549,Billy,26514,95599,4 +34550,Madeleine,31031,107755,5 +34551,,54858,1136765,6 +34552,Charles 'Lucky' Luciano,59230,14276,0 +34553,Leung Yee-Tai,41380,62423,1 +34554,Taylor Kwon,70074,61697,1 +34555,Bonnie Rockwaller (voice),51786,90772,12 +34556,Receptionist,320588,1492415,29 +34557,Angie,17258,1852419,22 +34558,SDF Adm. Taizô Tachibana,36243,554315,1 +34559,Charles Williams,238972,17764,0 +34560,Rutherford,1984,1193048,9 +34561,Chuck,30411,7036,9 +34562,Ekin,336804,1656065,14 +34563,Karin Vergerus,105254,6657,1 +34564,Nasenmann,1659,18983,3 +34565,Mrs. Marcy,30307,3346,5 +34566,Yang Chang-gu,24822,528339,4 +34567,Erick,10529,1059892,8 +34568,Asbjørn Søvold,55612,76555,5 +34569,Master Tetsu,25684,23915,3 +34570,Pizza Guy,33586,1426642,8 +34571,Semyon Budyonny,41979,237434,9 +34572,Warren,84450,1329900,5 +34573,Narrator (voice),62320,77860,2 +34574,,296750,9671,5 +34575,Namsan,65881,1257899,9 +34576,Daramus Holiday,94348,4808,4 +34577,Ben Kendall,71140,61962,1 +34578,Johnny Red,20439,47879,6 +34579,Captain Jekel,179105,54789,3 +34580,Squirrel / Turtle / Alligator / Rabbit (voice),89606,33923,3 +34581,Herself,15177,77990,19 +34582,Ah Yo,388764,1183233,2 +34583,"Chichi, Kajiwara-shi",135335,1102161,0 +34584,O'Conell,330711,1383013,8 +34585,Vicki Anderson,239566,53923,18 +34586,Hank O'Reilly,427045,239021,7 +34587,Daryl,46883,1887378,8 +34588,Mohnke's Adjutant im Bunker (uncredited),613,1394311,63 +34589,Elektra,50318,128090,24 +34590,Photographer (uncredited),31773,1040564,42 +34591,Enrico,109979,4961,4 +34592,Wai Cheung-Dee,58414,25246,0 +34593,Uncle Ben,13946,97939,7 +34594,Shemeikka,124979,1531735,3 +34595,Edith's Mother / Lady Sharpe,201085,17005,10 +34596,Lyalya (as F.G. Ranevskaya),83435,128301,1 +34597,Gwen,277558,1274513,8 +34598,Aella,297762,1831280,16 +34599,Orderly,138544,1392647,11 +34600,Tent City Soldier,53870,77222,22 +34601,Helicopter Medic,424488,1837295,46 +34602,Professor John Cavendish,120212,9221,3 +34603,Zachary Kane,86603,109625,0 +34604,Tom Engel,287903,36801,0 +34605,Glenn S. 'Pop' Warner,60853,30527,1 +34606,Dr. Chandler,370234,1186714,13 +34607,Max Gregory,250332,103951,18 +34608,Beth,52894,100870,2 +34609,,177564,1160011,4 +34610,Trevor Logan,132422,58019,3 +34611,,69619,25251,8 +34612,Sir John Hamilton,1116,11279,6 +34613,,85844,1538867,10 +34614,,73835,52657,9 +34615,Leon 'Foggy' Poole,27999,7683,2 +34616,Commissioner of Police,52864,89729,6 +34617,Himself,1819,19279,9 +34618,Gustav Åkerblom,41764,93381,17 +34619,Mr. Skolnick,21029,2505,8 +34620,Jane Hawking,266856,72855,1 +34621,Sven,350060,82537,5 +34622,Ujino,105210,79458,15 +34623,Kindly Stripper,13596,886142,23 +34624,The Kid,310135,1228341,1 +34625,Ryan,101325,928572,6 +34626,Prison Warden,97767,14455,12 +34627,Anthony Stanwick,214753,80112,2 +34628,Peep Olga (voice),13517,1571367,7 +34629,Vitay Georgina,41689,127102,0 +34630,Allison,419459,1550581,9 +34631,Sir William Collyer,51994,57461,2 +34632,Il Magnifico,62713,27279,3 +34633,Frank Custor,75564,549028,8 +34634,Dr. Krickstein,73527,12826,2 +34635,Grófnõ,86732,1619024,9 +34636,Onlooker,10077,62936,13 +34637,Himself,307931,1489791,8 +34638,"Hösch, alias Nowak",88176,30936,1 +34639,"Edgar Curtain (""You Killed Elizabeth"" segment)",45577,90624,1 +34640,Cop,41283,879,1 +34641,Kwon Myung-joo,293670,1793045,9 +34642,Bob Ford,43821,8516,4 +34643,Clayton Price,34995,349,0 +34644,Police Officer,283384,1384518,13 +34645,Joachim Holzapfel,308174,4796,1 +34646,,83195,929322,0 +34647,Ratchet (voice),38356,2962,15 +34648,Elizabeth,122928,52776,2 +34649,Padre Henrique,34588,87838,7 +34650,Mazaud,50181,11595,1 +34651,The Mercenary,3059,1313506,35 +34652,Miss Julie,230266,83002,0 +34653,Dawn,77875,1133600,16 +34654,Harvey,8988,1741941,13 +34655,Sheriff Boudreaux,8988,77859,28 +34656,Prince Husan,422906,16199,2 +34657,Aunt Vee,38743,6199,8 +34658,Deputy Police Chief Higuchi,12622,555192,9 +34659,Himself,320589,1111443,17 +34660,Tendero,282983,1373478,6 +34661,Joe Ryan,387957,223349,1 +34662,Male Laundry Worker,245168,1090034,22 +34663,George,445602,1379493,10 +34664,Ryan Walker,70476,558556,5 +34665,Young Boy,27966,10545,35 +34666,Sister Mary Perpetua,95136,53647,13 +34667,Nazi Sergeant,30174,1153066,9 +34668,DC Aplin,215999,124686,7 +34669,Himself,9815,59537,16 +34670,Tanyu,21959,84028,2 +34671,,430973,278923,5 +34672,Biscoton,61765,24807,7 +34673,Staff Member,369033,1215981,22 +34674,Malta,73160,930138,5 +34675,Moose,10760,66546,19 +34676,Sinister Man in Theatre Box,228647,1331770,38 +34677,Catcall (uncredited),58,1584544,33 +34678,Ethel Chichester,162862,140515,3 +34679,Gen. Robert Howe,208434,53010,5 +34680,Gus,28363,2775,8 +34681,Bethany Bevins,142106,1179852,13 +34682,Harvey,256962,97446,16 +34683,Derwood,21780,3548,16 +34684,Guard #2,56816,225016,4 +34685,Romolo,46128,5412,2 +34686,Captain Per Vallgren,264061,17756,3 +34687,Himself (archive footage) (uncredited),31411,122983,5 +34688,Anna,24578,37058,0 +34689,,77057,581144,26 +34690,le brigadier Théo Dumas,33336,15397,1 +34691,Additional Voices (voice),24238,218254,7 +34692,Arklon,27549,61153,3 +34693,Ronald,10500,135075,6 +34694,,88273,1547783,18 +34695,Benoît,48601,224505,2 +34696,Kevin Goss,179826,223395,11 +34697,Judge,1938,20146,7 +34698,Pete,246299,30236,6 +34699,Kristiina Koivu,55167,1384986,2 +34700,Peter,22897,233298,14 +34701,Wendy Savage,8272,350,0 +34702,Himself,69903,6768,11 +34703,Laura,364690,81321,4 +34704,Gründgens,1912,35542,15 +34705,Max,49852,52931,5 +34706,Fru Angerd,57438,226180,16 +34707,,25626,83635,43 +34708,Rachid,13507,67145,4 +34709,Ben,88558,75395,11 +34710,George Samsa,91138,14069,4 +34711,Param,77875,154182,4 +34712,Maud Ericson,42456,80237,3 +34713,Himself,201419,1536683,1 +34714,Officer Schultz,43117,141598,13 +34715,Maidservant,225728,1600616,26 +34716,Zoe,53999,74687,4 +34717,Matina majka,259728,1301978,19 +34718,Navigator,22076,112347,12 +34719,Chamberlain,166393,1147896,4 +34720,Karaoke Bar Host,73306,148471,10 +34721,Pierre Cotteret,348025,18177,6 +34722,Pete's Mom,294272,1587891,17 +34723,Nicolas,271826,1329703,4 +34724,Ned Leeds,91961,10165,7 +34725,Radio Tech,18015,1291804,6 +34726,Perry Foley (as Thomas Guiry),26899,4729,1 +34727,Scooter,13493,67601,9 +34728,Stephanie Lee,87516,1181326,13 +34729,Hu Lung,56095,1109778,6 +34730,Himself,39827,47096,0 +34731,Margie Hooks,84450,7634,2 +34732,Rex,213121,12900,4 +34733,Thomas 'Tommy' Farrell,25633,82216,0 +34734,Cat Lady,42448,157269,13 +34735,,271185,8349,3 +34736,Ed Hoffman,12113,934,1 +34737,Hélène,54156,4885,1 +34738,Señor delegado,41298,31882,5 +34739,PC Metcalf (uncredited),13802,24627,47 +34740,Vern,13058,1388878,27 +34741,Auctioneer,37311,82750,16 +34742,Ava Strauss,27122,109513,5 +34743,Joan Confrey,75622,10205,17 +34744,,218772,1203506,8 +34745,Cesarina,262786,1882003,12 +34746,Markus,82622,94264,4 +34747,"Yasutaro Kurokawa, un collègue du père",27372,213484,2 +34748,Zach,45649,205177,13 +34749,Bailiff (uncredited),14615,93500,64 +34750,Lady in Waiting,78318,1176930,13 +34751,,376047,1831442,6 +34752,Cayden Richards,290555,429,2 +34753,Turbo (voice),77950,10859,0 +34754,Villian director,16687,1184081,10 +34755,Jan Åström,15179,221034,6 +34756,Weaver,14164,78326,11 +34757,Laurie Brinkman,18998,77624,3 +34758,Actress Playing Frances,4960,17488,11 +34759,Max Lichtenstein,36960,2778,2 +34760,Kelner - the Fink,26376,34098,17 +34761,Sophie,267935,1425420,0 +34762,Isaac,31890,43554,0 +34763,Barker,29610,85170,12 +34764,Suzy,83666,929905,3 +34765,Richie,10482,14469,0 +34766,Willy Grogan,18684,70985,1 +34767,Hazel,2001,20566,7 +34768,Chan Siu Ling,18899,235000,13 +34769,Ishani,362703,1558069,8 +34770,The Rock Rider Chief / The Winchman,76341,1492293,27 +34771,Cuisinière Nganda,436340,1744825,12 +34772,Eliseo,273481,1554977,15 +34773,король,27935,86664,2 +34774,"Irmeli, Miss Suomi",62900,1498234,17 +34775,Witch / Pedestrian (voice) (uncredited),10192,1784324,33 +34776,Miller,107811,996701,0 +34777,Thomas,62012,9140,6 +34778,Linda Douglas,30993,229708,1 +34779,Midde-aged Woman of Jelly Shop,14525,105818,15 +34780,Singer at the Party,111470,1811850,39 +34781,Antonio Pope,323675,4589,7 +34782,German,81522,1118191,8 +34783,Christian Klucker,29043,102675,5 +34784,Cindy,360284,1230655,9 +34785,Uncle Dornik,43868,89673,3 +34786,"La bambina, la figlia di Cosa",56339,1891142,8 +34787,Child,1272,1414389,11 +34788,Un Conseiller,117550,1075550,9 +34789,Schuster,75363,38037,3 +34790,Rick Dayner,97593,171225,1 +34791,Helena Landless,84718,2924,5 +34792,Al Marchione,6081,1162,7 +34793,Charlotte,4279,35000,1 +34794,,662,24854,7 +34795,The Hitchhiker,40139,93247,9 +34796,Jody Burrows,74527,30540,3 +34797,Zeba,95015,89942,8 +34798,Burlington Potluck Guest,356752,1841534,58 +34799,Madame de Bossé (voice),23566,92079,6 +34800,George Kavanagh,369885,107733,24 +34801,Neal Cassady,156277,6164,1 +34802,Himself,27637,1724697,40 +34803,"Bud Bugman, le conducteur de locomotive (voix)",50166,68371,5 +34804,Witness for Peace,2143,132921,43 +34805,Pete Peterson,90590,178940,6 +34806,Tommy Athens,4551,4512,14 +34807,Claudia,95136,238320,6 +34808,Arthur,157351,22125,4 +34809,Adjutant von Dessau,212530,48228,7 +34810,Carla Benson,55638,42160,1 +34811,Sgt. Strang,75162,408,6 +34812,Nazareno Cruz,127424,1084474,0 +34813,Car Driver,82485,148995,13 +34814,"Martha, Sonja pike",87654,1348351,8 +34815,Keiko,17467,554120,1 +34816,Juliette,32720,1137,6 +34817,,96106,1281092,8 +34818,Vandy,34128,76999,1 +34819,Sportsman,36236,18340,2 +34820,Madre di Marina,106256,15385,3 +34821,Kit,107682,940339,0 +34822,Mathilde Obermüller,10626,46039,2 +34823,Captain Davis (uncredited),52440,544585,53 +34824,Michael,28178,557932,7 +34825,Princess Ailée,153272,23937,3 +34826,Flavia,8886,105685,2 +34827,Burt Gummer,339530,67015,0 +34828,Presentatore,42674,1666839,18 +34829,Hefty Guard,211387,963109,8 +34830,Susan Loughlin,15356,209506,15 +34831,Airline Manager,41030,1076621,13 +34832,Akhil (Cameo),253533,1544304,19 +34833,Antoine,8049,26282,0 +34834,Lt. Col. Glenn Manning,43241,94202,0 +34835,Kwong Chi Hung,56329,236076,2 +34836,,238436,1155729,2 +34837,Senior Race Official,7459,40640,21 +34838,Joe Codd,108222,3339,9 +34839,Glenda,176627,29315,2 +34840,Joey,77246,4133,5 +34841,Chief,54491,14672,15 +34842,Soldado,54236,1117119,6 +34843,Principal Invincible,290825,1395348,21 +34844,Velvet Vale,33343,1188794,26 +34845,Cléopâtre,49398,142224,5 +34846,Clark,50318,532598,34 +34847,Alan Newell,51054,16897,0 +34848,Ben (voice),110416,1326568,2 +34849,Jackson,338312,1462234,8 +34850,Menyasszony,327909,1433827,1 +34851,Freud,73257,15789,3 +34852,Sean,16058,79107,9 +34853,Baba Yaga (voice),19594,8263,3 +34854,Charlotte,299715,1379184,3 +34855,Louis 'Skinny' Skinner (CapCom),328429,36422,1 +34856,Maggie Conner,204839,74276,4 +34857,Ann Ferguson,14400,5470,1 +34858,Alex McDonough,3563,10860,2 +34859,Lynx,34766,112961,10 +34860,Cecil Mature,137321,1698872,18 +34861,Pi,285181,28675,2 +34862,Lucille (voice),77459,65007,0 +34863,Xian,19545,121191,14 +34864,Widow,344147,1355738,7 +34865,Gilbert Gottfried,369524,15832,19 +34866,Claudio Narea.,291577,1362516,3 +34867,Richmond Claremont,23964,2048,3 +34868,"Kathleen 'Kathy' Allen, nee Alanborg",37462,44881,0 +34869,Schwester Erika,227262,38371,6 +34870,Blueprint Dancer,243683,1398170,74 +34871,"Colonel James "" Rhodey"" Rhodes",68721,1896,2 +34872,Santiago,55720,1031791,5 +34873,John,129530,1576530,5 +34874,Dr. Eric Hassler,68720,26847,7 +34875,John,444193,54789,2 +34876,Virgil Fox,22371,38707,0 +34877,,10484,1676557,25 +34878,Mike,284296,1099717,19 +34879,Al Molin,25738,2698,7 +34880,Emoto,12622,35642,15 +34881,Helen Perl,19338,1579260,18 +34882,Budeny adjutant,41979,1042917,10 +34883,Céline Dion,298,16303,17 +34884,Statesman,1271,1089930,33 +34885,Gina Selway,284537,1817,4 +34886,"Emin, Muzzafer's father (as M. Emin Ceylan)",52072,1397411,1 +34887,Madison Bauer,54107,1219,1 +34888,Pasquale Maggi,43469,71140,0 +34889,Mélanie,14688,76820,2 +34890,Junnu,284306,1493356,1 +34891,Teacher at Terry's Lecture,179066,33025,38 +34892,Michael Miller,279332,119807,4 +34893,Marty,27621,1811912,9 +34894,Susan Peters,32044,30622,3 +34895,Le directeur,334317,78421,6 +34896,John Sculley,115782,8654,5 +34897,Bud,82520,21134,2 +34898,Mr. Temple,12763,40543,4 +34899,Janet Ling,29695,98159,11 +34900,Harper (voice),136799,1055235,21 +34901,Maria,13391,127892,3 +34902,Maresciallo Denti (uncredited),56068,132194,14 +34903,Commander from Planet X,19545,1059890,9 +34904,Sharon,86975,198980,2 +34905,Security Guard,137093,1320732,14 +34906,Samuel Taylor Coleridge,332283,5312,9 +34907,Rob,14527,76973,2 +34908,Cressus,81409,98789,11 +34909,Keith Knox,35977,62596,16 +34910,Young FBI Agent,146216,229557,27 +34911,Chenier,1427,17071,11 +34912,Gus,11403,70303,2 +34913,Briggs,399790,1633867,11 +34914,Nestor (voice),9836,59784,10 +34915,Lap Dancer,11358,1773101,33 +34916,Conrad Coltrane,26293,84215,4 +34917,Skjervald,360249,76555,1 +34918,Carl Cody,9846,1241,4 +34919,Kryptonian #1 (voice),166076,45924,16 +34920,Insp. Martin,181456,35524,11 +34921,Luis,415255,1677211,3 +34922,Himself,13798,75597,0 +34923,Himself,16800,29875,5 +34924,Cowboy Curtis,60977,31549,1 +34925,Chettiyar's staff,368006,544893,14 +34926,Stephanie,339342,1478375,7 +34927,Mr. Cope,51828,71248,17 +34928,Berger,65002,38038,5 +34929,Classroom Kid,375366,1886319,13 +34930,Herself,374460,34902,21 +34931,Pekka Streng (voice),112072,88854,1 +34932,Lotus Land Waitress,32657,1507599,32 +34933,Lydia,193610,968660,6 +34934,Gustav Merfeld,58166,3934,1 +34935,,11196,1443149,16 +34936,,199887,83874,6 +34937,Mittwoch,130233,5201,6 +34938,Rival Gang Member (as Spike Robinson),42553,128165,9 +34939,Tommy,11376,1334078,14 +34940,Bob's Dad,116979,181041,10 +34941,Essential Services Woman,6972,1673434,31 +34942,Lt. Gheorghe Manoiu,32594,1846539,2 +34943,Juan Carlos,172457,1533666,7 +34944,Barbara,747,1249,7 +34945,Queen Victoria,62143,79356,15 +34946,Darren,318922,104561,1 +34947,Lynne Evans,42298,2780,5 +34948,Nadezhda Orlova,29299,1276655,9 +34949,Antia Feijóo (2 yrs old),332872,1651935,40 +34950,Detective Tanchuck,407448,164242,32 +34951,Caleb Baker,402446,1477961,3 +34952,,359807,10057,7 +34953,Paraszt asszony,86732,1619020,7 +34954,Tassista Pinerolo,169069,1848600,11 +34955,Chris,177112,1465614,1 +34956,Jaylah,188927,568657,8 +34957,Ray,27381,8335,8 +34958,Pamela,272878,16858,2 +34959,The Boy,110227,190652,8 +34960,Vogel,206647,1093974,25 +34961,Esther,345916,23975,10 +34962,Chuck (as Gilbert Winfield),37462,600727,7 +34963,Banã,70666,559177,18 +34964,Pancho Villa,1810,1944,5 +34965,Nancy Mercer,2071,21247,5 +34966,Professor,142757,240544,12 +34967,Stanley,13338,89845,2 +34968,Adriana,317168,940996,4 +34969,Mario,62036,27442,4 +34970,The Vuvalini,76341,1734172,22 +34971,Sailor Moon / Usagi Tsukino,37100,77931,0 +34972,Grace,383140,1225170,12 +34973,Yang,37451,130335,10 +34974,Arms dealer,220488,127431,14 +34975,Robin,202337,158739,2 +34976,Lion Tamer,3520,32378,5 +34977,Himself,53380,10367,0 +34978,Mlle. Molee,134480,1021799,8 +34979,Fussy Older Maidservant,205584,1535052,25 +34980,Officer,87293,1102495,7 +34981,Mehta,56901,76789,4 +34982,Himself,157117,928545,5 +34983,Walter,8852,11392,4 +34984,Pepe Abellard Duvalle,52847,232024,1 +34985,Feldy,51167,6163,3 +34986,Mrs. Marshall,85610,82412,4 +34987,Michael Russo,24094,58950,1 +34988,Himself,9951,56584,4 +34989,Strýc,15387,30737,4 +34990,Scot,16240,80179,2 +34991,David Hewson,62033,6102,0 +34992,Puddu,72279,129635,7 +34993,Melissa Harlow,125673,8828,0 +34994,Maschinist Hentschel,613,28114,59 +34995,Himself,58923,33162,4 +34996,,330381,49673,2 +34997,The Mackerel,197737,90380,6 +34998,Abraham Klimt,52713,32514,2 +34999,Bishop Charlebois,18381,227603,7 +35000,,205349,37813,2 +35001,Will,308639,521564,7 +35002,David,50350,2245,8 +35003,Soccer Player,90616,1692089,24 +35004,Shuzo Hirata,389972,554573,0 +35005,Olga,172443,1796928,7 +35006,Paul,35977,63493,5 +35007,Communications Operator #1,329865,1030295,42 +35008,Eleanor,11247,62595,9 +35009,Ken (voice),77887,2232,14 +35010,Cheerleader / Dancer #7,11247,1776511,43 +35011,Miranda,39286,47730,4 +35012,Thorsten Seiler,91628,1133619,12 +35013,Factory Worker,81120,1289010,28 +35014,,92737,159663,1 +35015,Madeleine Oberstein,58928,23670,2 +35016,Uniformed Officer,304372,1720622,29 +35017,Alex Fox,76829,10555,3 +35018,Cav. Eros Cecconi,38286,120026,4 +35019,(uncredited),50012,143283,6 +35020,Miles Scott,35404,82348,2 +35021,Li'l Cardinal Richie-Loo,130062,29265,1 +35022,Lee Tourneau,149509,2978,4 +35023,Danny's Reefer Buddy,12573,1015644,11 +35024,Pale Young Man,107985,1278121,21 +35025,Nightclub Patron,120109,569144,12 +35026,Donna anziana,42679,44977,15 +35027,Яшка-артиллерист,20879,86691,1 +35028,Commissario Fiutozzi,439998,72786,5 +35029,Louise Rodanthe,49354,74542,1 +35030,Loulou de la Falaise,245775,149223,5 +35031,,375742,1564301,34 +35032,Carol-Anne,508,25837,25 +35033,Nick Acropolis,2611,5401,6 +35034,Camper #2,251227,1286526,13 +35035,Leakey,17046,81268,8 +35036,Zeebad,24432,12219,2 +35037,Zhou Ping,141138,244354,1 +35038,Leonard Arner,194407,31702,2 +35039,Sami,83430,230087,6 +35040,,55624,1463999,6 +35041,Captain Moshe,121791,145313,4 +35042,John,68174,60881,11 +35043,Aiichiro Fukuhara,14525,33134,1 +35044,Mohit,21567,6497,0 +35045,The Greater Dane (voice),21765,13333,6 +35046,,25716,225535,28 +35047,Oliver Hartwin,9639,3491,1 +35048,Lisa Thompson,341957,1194351,5 +35049,Abby,431093,974732,4 +35050,"Alexander, a Pilot (uncredited)",103938,1186116,8 +35051,Yumi,119172,1069299,0 +35052,,101376,1024845,2 +35053,Habron,48180,140015,9 +35054,Antonio,81787,1862814,10 +35055,,448879,1783352,3 +35056,Screaming Woman,137528,1194702,14 +35057,Enrique's pool attendant (uncredited),140,952,13 +35058,Edna 'Ma' Firpo,23719,84323,4 +35059,Viktor,382597,2245,4 +35060,Jan Cimo,48841,29021,1 +35061,Stepan,142881,119567,5 +35062,King (voice),809,8930,5 +35063,Barney,23515,230097,2 +35064,Referee (uncredited),43522,34448,36 +35065,Miss Sarah Pickett - Housekeeper (uncredited),23152,9072,7 +35066,Woman at Station,56154,29974,39 +35067,Bentein som barn,57438,226173,4 +35068,Bartender (uncredited),110887,95725,16 +35069,Lord Redmond,104720,81291,16 +35070,News Reporter,156700,1842180,29 +35071,Yoss,412363,550965,2 +35072,Alex,28739,935884,3 +35073,Bartley Neuville / Edward Middleton / The Drunkard in 'The Drunkard',43688,1711396,9 +35074,Freddy,155011,1136030,4 +35075,Janet Hutchins,3580,45386,22 +35076,The Prince (voice),14128,31468,8 +35077,Taylor Pete,403570,1667886,15 +35078,Mrs. Moran,15356,55266,14 +35079,Watson,242382,8262,6 +35080,Ajeti,236324,55538,5 +35081,Major Vivar,70133,24496,10 +35082,Priest,249703,1076268,2 +35083,Neighbor,203833,1445754,27 +35084,Villager #3,27966,136895,22 +35085,,188392,58530,3 +35086,Himself,13798,75598,1 +35087,Karim,44155,1186075,8 +35088,Bomber,23750,38948,18 +35089,Mark Toliver,43319,98450,12 +35090,"Grubbs, Theater Manager",112558,13786,4 +35091,Hi'Low,150065,1784351,21 +35092,,31018,7447,2 +35093,Jerry,288521,1121652,7 +35094,Nadja,68202,1745073,13 +35095,Shamus Cocobolo,179826,1404689,15 +35096,Pete Macklin,242382,1174126,7 +35097,Aziani,166883,1373068,9 +35098,Ray Polito,10739,5090,8 +35099,Lola Mears,97910,80994,0 +35100,Soe Lie Piet (Ayah Soe Hok Gie),39061,1829165,9 +35101,State Trooper Harold Dupont,201485,1183610,10 +35102,Lupita's Mother,13383,31594,6 +35103,Harley David,24150,183073,6 +35104,Incense Master,18747,119461,14 +35105,Larry Ballentine,27203,14868,1 +35106,,109587,54620,6 +35107,Vickys Oma,211158,1161723,7 +35108,Bulla,141603,585404,12 +35109,Krauss,340488,1040862,6 +35110,Tommy Five-Tone,9292,1004,1 +35111,Traffikant,118737,994,2 +35112,Ray,67748,1172840,14 +35113,,23289,1439581,18 +35114,,104146,103,6 +35115,Jessica Burton,329809,118626,5 +35116,Judy Standish,11939,41516,4 +35117,Phil,5172,1668313,27 +35118,Jennifer's Mother,64015,1087668,5 +35119,,265314,260,2 +35120,MacArthur,40060,193032,10 +35121,Hao-Hao,11553,69827,2 +35122,Lonnie Bosco,26486,7795,9 +35123,Nate,15022,78598,17 +35124,Tin Chiu,11636,544791,15 +35125,"Jakhiro, The Madman",402672,1637846,8 +35126,Abu Karem,67,766,4 +35127,The Little Lady,42553,8828,1 +35128,Garçom do Restaurante,34588,1695829,23 +35129,Rose,298695,1216606,8 +35130,First Cop,53406,148036,5 +35131,Grandfather,16131,16555,19 +35132,Sheriff,86472,85982,2 +35133,Butcher,868,13095,4 +35134,Stephan,79034,585618,4 +35135,Morsov,76341,1734175,26 +35136,Max,334890,1695144,9 +35137,Himself,4140,34960,4 +35138,Mrs. Emma du Maurier,866,1666,2 +35139,Master Shang Kuan Yin,11537,68677,2 +35140,Background actor,52454,1630330,56 +35141,Blake,96793,13578,3 +35142,Louisa Bradley,56135,83260,6 +35143,,16015,1445194,19 +35144,Judge Voris,335450,63383,5 +35145,Governor,14615,33025,13 +35146,Chappel,118245,30262,6 +35147,Justine's friend,290365,1753720,10 +35148,Petr,46982,1537355,1 +35149,Technician (uncredited),31984,12815,19 +35150,,56599,1029310,6 +35151,Rachida Ben Saoud,44155,25082,6 +35152,Libby Boland,393659,57674,0 +35153,Oberst Jellusič,78507,78,6 +35154,Deputy Sheriff,86920,1142310,7 +35155,Mr. Miller,14750,36927,7 +35156,Mistinguett,286512,5441,5 +35157,Cosmin Stelu,127521,1084849,6 +35158,Melora Alba,109441,91639,1 +35159,Dave Johnson,14834,9779,0 +35160,María,47211,1401452,4 +35161,professeur Mortemont,11912,25958,10 +35162,Daryll,24050,10825,8 +35163,Roberta Bliss / Betty Jo,44690,1484153,7 +35164,,56971,55912,1 +35165,La journaliste à la conférence de presse,332794,1860422,28 +35166,Humvee Driver,1724,1366379,61 +35167,Witch Doctor,264646,60279,8 +35168,Stacey,308269,1447886,8 +35169,Tante,469172,1079281,6 +35170,Fernando,224233,1126875,6 +35171,Alberto Spina,38310,69036,3 +35172,Poul,11832,142929,17 +35173,Hermann Göring,613,131219,41 +35174,Christopher Columbus,19725,40945,0 +35175,Flight Attendant #2,335970,1451394,7 +35176,Jasmine,352498,1492327,5 +35177,Adam Boyd,26204,90517,7 +35178,Simon Ward,68737,1366661,22 +35179,Sylvestre Archimbaud,237799,3509,2 +35180,Padre Calvo,116312,115482,4 +35181,Nightclub Patron,43809,121323,17 +35182,Mika,162006,122468,4 +35183,Alexandra Korolenko,14979,8329,2 +35184,Harvey,128241,103351,0 +35185,Pie's Mother,64786,1096187,6 +35186,Tony,153228,99947,11 +35187,Himself,14761,1308764,2 +35188,Saleswoman,228970,1495079,24 +35189,Ryan,322266,1186521,7 +35190,Basil Gregory,87894,47178,2 +35191,Esbirro de Johnny (uncredited),41298,1507534,30 +35192,Voice Of Lawsuit Guy,19719,85115,18 +35193,Classmate,54111,1769721,12 +35194,Renzo Capetto,48202,89038,0 +35195,Pizza Boy,55563,20190,15 +35196,Lille Muhammed,11328,69022,16 +35197,Martin,16022,8435,18 +35198,Joan Rivers (voice),809,14670,23 +35199,,11643,13637,13 +35200,Macha,380731,587163,9 +35201,Vänni Piiparinen,224813,1210343,4 +35202,Bettan,129359,34788,11 +35203,Mr. Paul Kochinski,20521,75467,10 +35204,Ela Mesma,448763,1848667,35 +35205,Mackie Messer,42837,37675,0 +35206,Marta Manfredini,65718,31696,1 +35207,'Hot Shot' Coleman,58732,111464,3 +35208,Melissa (as Cheryl Kay),50295,138680,8 +35209,Ned McCaslin,5928,157211,7 +35210,Coco Leger,43727,36669,2 +35211,Danny,341201,41218,3 +35212,Meinie - Judith's Maid,186227,949160,22 +35213,Professor Kipple (voice),16866,8930,5 +35214,Hotelero,105059,103795,24 +35215,Mark Furness,65579,3968,0 +35216,,63260,1774069,15 +35217,,57701,120234,6 +35218,Dan,97630,76512,1 +35219,French Miller (uncredited),81687,1016595,15 +35220,Dick Waddle,354287,26121,10 +35221,Rachel,25674,1127499,11 +35222,Un étudiant (uncredited),320318,1649191,9 +35223,Laura Miller,279332,66579,1 +35224,Dr. Hubert Zimmer,53256,39851,10 +35225,The Stranger,2179,504,3 +35226,Egil Krogh,301348,3492,4 +35227,Sylvie,57215,123529,7 +35228,Benny Schmidtbauer,85469,932209,2 +35229,Chuck (voice),153518,54415,1 +35230,Maria,11577,84919,13 +35231,Mr. Fish,83890,352,3 +35232,Etsuko - Kimiko's mother,92950,1279379,2 +35233,Lila von Buliowski,3478,44110,16 +35234,Mok's Mute Assistant,186881,109304,6 +35235,,37055,1037193,0 +35236,Singer,126418,998892,8 +35237,Bowling Alley Dealer,327528,1172366,15 +35238,Barbara Uribe,93457,3130,3 +35239,Ted,283445,1485772,8 +35240,Reporter for Variety (uncredited),32552,1081175,25 +35241,Shaolin Abbott,9461,695,13 +35242,Himself (archive footage),14286,84383,1 +35243,Taxi Driver,2143,132890,12 +35244,Max,14137,27974,9 +35245,Steve,279690,166518,6 +35246,"Maham, Senate Chief",402672,10510,3 +35247,Julius Caesar,43902,76974,1 +35248,Member of Parliament,53851,30201,12 +35249,Marco,57307,4288,8 +35250,Gow,148451,7085,3 +35251,Bartender,10070,62019,8 +35252,Seed,42533,95839,11 +35253,Repairman,47057,138001,11 +35254,Johnny Hanson,112655,4165,0 +35255,Lorraine,256347,173996,7 +35256,Pfarrer Schäuble,367596,1085857,5 +35257,Jason Creed,13025,81096,1 +35258,Guidance Counselor,33333,1459376,13 +35259,Miss Edmunds,169009,1734,0 +35260,Rin Okumura (voice),201223,1245094,11 +35261,,288788,1016315,6 +35262,Frank,246133,923,5 +35263,Linda,163376,164777,3 +35264,,37633,1501045,6 +35265,Miki Miki / Lenin,169656,1049288,2 +35266,,177354,111650,4 +35267,Padre,94135,44883,2 +35268,Mac Thompkins,56601,28638,14 +35269,Mr. Fairchild,328589,10779,15 +35270,Alan Davis,212934,1224868,8 +35271,Liv McCann,47386,138774,7 +35272,Hatfield,183832,29272,10 +35273,Himself,63144,1624633,34 +35274,Waiter,54804,174382,28 +35275,Philones,29352,103617,7 +35276,Becky Carson,20473,15905,2 +35277,Hooters Girl,3563,78324,11 +35278,Sergeant 'Bat' Batterson,184802,6577,2 +35279,Shirkooh,8340,54613,5 +35280,Additional Voice (voice),177572,1252466,24 +35281,"John ""Lucky"" Garnett",20325,30181,0 +35282,,173577,1079317,7 +35283,Ada,17347,87674,0 +35284,Police Chief's Wife,6081,1447264,14 +35285,,392818,167080,7 +35286,Joey,5123,1781814,23 +35287,Actress,45020,131934,5 +35288,Herbert von Pohl,267389,18505,7 +35289,Julie,91548,97880,1 +35290,Carlotta Gavina,3554,29395,3 +35291,Doc,117550,225648,5 +35292,'Spike' Hudson,111470,4072,3 +35293,Joe Moran,297668,5788,1 +35294,Mark Hammond,30996,1197044,1 +35295,Kostas,288526,932753,8 +35296,Livius,93492,943812,9 +35297,Артем,47812,101433,8 +35298,Gen. Yepanchin,63958,93543,8 +35299,Marianne King,371504,82807,14 +35300,Madame Lefrançois,45184,95667,14 +35301,Mick,11196,4467,0 +35302,,412851,1339348,2 +35303,Marshal Lou Ramsey,11897,5248,1 +35304,Mrs. Reynolds,70368,1551624,6 +35305,Tenge Tanzen,125229,128022,0 +35306,Captain Marks,329865,225411,5 +35307,Imbissverkäufer,10500,49056,10 +35308,Guenter Wetzel,58995,2222,2 +35309,Boyle,9959,4520,4 +35310,Larry Darrell,56135,10922,0 +35311,Owen O'Malley,31835,30157,3 +35312,Dulling,147106,1016007,12 +35313,Rev. Elcott,16563,2782,14 +35314,Mrs Anne Weaver,18774,101722,5 +35315,Borlotti Senior,48805,133755,21 +35316,George,3081,31506,7 +35317,Padulo,58080,3090,1 +35318,Hospital Staff,42709,167851,16 +35319,Swetha,362150,85883,1 +35320,Joe 'Red' Willet,43792,105636,4 +35321,Elena,24397,97470,8 +35322,Inui,62301,235092,1 +35323,Cornell Jenkins,267483,60053,2 +35324,Dr. Fontes,177085,11514,5 +35325,Tassin,56589,11192,2 +35326,Tiffany,9753,58981,13 +35327,,265934,94002,7 +35328,Daniel,131903,136027,5 +35329,Jonas,72465,566080,0 +35330,Juliana Farrell (as Pat Quinn),79735,1204882,1 +35331,Policeman in Nick's Hospital Room,153162,1016646,27 +35332,Lois Lane (voice),17074,65002,4 +35333,Prom Teacher,19053,59846,9 +35334,Josef,296313,15086,4 +35335,Miles Richardson,433244,11022,2 +35336,Coach Harris,22007,58794,4 +35337,Witness for Peace,2143,132924,46 +35338,Juan,331354,1149067,4 +35339,Neil Murchison,39127,5293,1 +35340,Titi,32390,6020,3 +35341,Grace Batten,283384,34915,8 +35342,Kelly Collins,14008,5958,0 +35343,Leslie Hopkins,90563,4778,7 +35344,Atko,118658,1346388,6 +35345,Valter,70666,1863899,20 +35346,Qiangzi (Chang-joo),375599,64440,1 +35347,News Reporter,270654,130081,30 +35348,Bobik,99738,34700,4 +35349,Helen Preston,61581,1035331,5 +35350,Jojo,341895,1470727,6 +35351,Krummemor,53693,3880,1 +35352,Drew Curtis,44593,26291,1 +35353,Gestapo Officer,41597,96443,14 +35354,Prison Guard,41505,127063,18 +35355,Det. Steve Kennedy,43045,1053302,4 +35356,Sam,192023,1108129,0 +35357,Richard,209401,119783,3 +35358,Sonia,151431,94156,1 +35359,Police Sergeant James,407448,1711167,27 +35360,Reese,7555,52409,4 +35361,Shoeshine,125759,37947,5 +35362,Paul,81182,56616,3 +35363,Simon,19629,60898,5 +35364,Soldier,297762,1824301,55 +35365,Willard,81477,1452727,6 +35366,,47238,95899,2 +35367,Mame Avery,166621,131431,3 +35368,Jen,22051,164099,13 +35369,Theatre Audience,118943,1129188,9 +35370,Fabrice Le Gallec,152989,1133587,7 +35371,,77986,87409,5 +35372,Sally,105902,93476,7 +35373,Lucy,44682,131253,2 +35374,Charmy's husband,25645,1616858,12 +35375,Shiro Machimura,216363,118989,5 +35376,Czaplinski,31273,107872,19 +35377,Dr. Duke,3574,33005,5 +35378,Pepper,121674,77997,33 +35379,Clara Breitmann,64383,17522,0 +35380,Gregory Ganzha,75262,99302,2 +35381,Ryu Bok-hee (teenage),77117,1295464,9 +35382,Giselle du Grand,28061,57472,0 +35383,Blake,128598,1087382,4 +35384,Waldfrau,374247,45659,5 +35385,Captain of the Amindra,52859,1022158,39 +35386,Chemist Who Poisoned Medicine,109716,96069,62 +35387,Elderly Woman,42941,152411,24 +35388,Moça que despreza Felipe na Boate,296288,1839926,29 +35389,,227552,180105,19 +35390,August Brand,198176,1178520,8 +35391,,256916,28508,4 +35392,Blood 'Shed' War Boy,76341,1734179,32 +35393,Switchboard Operator (uncredited),3580,210344,68 +35394,The Horny American,12855,64472,6 +35395,Peter Bland,123961,24323,3 +35396,Sganarelle,237796,35211,1 +35397,Ivana,168027,1272162,16 +35398,Baby's Mom,339403,223331,12 +35399,Sex Offender,146233,1658615,23 +35400,Karen Traynor,47906,5064,2 +35401,Ellie Milford,16876,80966,3 +35402,Leah,18044,102749,7 +35403,Ted Parker,38920,121635,1 +35404,Tish,138544,1268071,9 +35405,Hardy's Secretary (uncredited),70368,34574,10 +35406,Elsa,332662,1570541,7 +35407,Director,14543,9339,12 +35408,Litter Bearer / Slave,1271,1330781,79 +35409,Dra. Cris,34588,1074749,17 +35410,Prabhu Selvaraj,357706,85519,0 +35411,Bank Manager,273481,106746,23 +35412,Hamlet,261439,290,1 +35413,Chicago Pedestrian (uncredited),76757,1394359,61 +35414,Ogre Baby (voice),10192,1784322,23 +35415,Lori,26223,63312,3 +35416,Margaret Harrigan,30921,175081,11 +35417,Bishop,216369,1200989,8 +35418,,134350,1459376,16 +35419,Maj. William Brennan,53860,2495,3 +35420,Jaapie Botha,13823,75782,18 +35421,Иван Петрович,409082,592122,5 +35422,Nicole,245175,589766,4 +35423,Major Perry,45398,58339,2 +35424,John Bimonte,87514,45308,9 +35425,"Kang No-young, boy at school, Jae-in's neighbour",54555,150903,1 +35426,,10484,1676555,19 +35427,Gladys Cunningham,42499,33816,1 +35428,Maj. Wilhelm Wilner (uncredited),11046,93946,17 +35429,Admiral,217923,1436143,10 +35430,Shigeki,38010,76934,2 +35431,Sam Jewell,42191,80621,3 +35432,Chuck,33134,962631,9 +35433,Hammond,54093,11115,8 +35434,Sir Julian Markham,55152,1905,0 +35435,Le préfet,18955,37764,10 +35436,,378503,1754819,4 +35437,Deborah McGowan,19946,1071136,3 +35438,Pierre-Augustin Caron de Beaumarchais,68023,28255,0 +35439,Bridge Operator,19017,141403,13 +35440,Dean Ranson,168676,3197,0 +35441,Luk Siu Fung,37702,21902,16 +35442,Circus Cook (uncredited),246127,1207372,19 +35443,Championship Fight Spectator (uncredited),43522,97981,53 +35444,Sheriff Pratt,117942,154917,16 +35445,Geeky Guy,306952,1511994,55 +35446,Le marchand de journaux,85429,932037,9 +35447,Store Detective,66175,18735,10 +35448,,43751,228499,5 +35449,Sir Randolph Persham,109716,3363,6 +35450,Masha Oblonsky,96724,1795829,43 +35451,Emily,385750,1181326,5 +35452,The Riddler (voice),40662,34934,20 +35453,Himself (Archive Footage),450875,46432,2 +35454,Von Pabst (uncredited),123961,89735,15 +35455,Emily,352164,1094635,8 +35456,Deena,91070,7517,1 +35457,Bertha,63317,7632,1 +35458,Himself,207021,1448783,7 +35459,Col. Glenn Manning,38269,141126,0 +35460,Himself,326255,1633756,4 +35461,Conlan's Cut Man,312221,1657314,13 +35462,Detective with Note,149793,43836,17 +35463,Party guest,29116,121323,18 +35464,Inventor,67174,223847,8 +35465,Additional Voices (voice),110416,1124979,11 +35466,Narrator,19719,85094,2 +35467,Zhenya,142757,240532,5 +35468,Zack,21141,60227,2 +35469,Mary Maddux,125990,166481,7 +35470,Swat,195269,169469,15 +35471,Kim,572,7744,2 +35472,Nancy McAllister / Marie Adamson,109251,8183,0 +35473,Uncredited,118059,947709,8 +35474,Girl from Refugee Camp,255160,1898246,33 +35475,Ogre Baby (voice),810,1784320,33 +35476,,27276,551837,28 +35477,Mr. Moran,15356,78141,3 +35478,Gary,11172,159826,18 +35479,Adama,77338,581728,6 +35480,Custodian,14874,61167,10 +35481,Elle-même,222297,1294424,1 +35482,Mr. Spindler,177902,34759,3 +35483,Yamanaka Producer,14217,1127066,7 +35484,Owen,159770,137240,1 +35485,Paul dit Paulo,8281,586276,10 +35486,Lloyd Davis,30644,106180,5 +35487,Jah,340275,1531587,15 +35488,Mrs. Fendelmeyer (uncredited),99374,225520,10 +35489,Helena Friese-Greene,80596,40954,2 +35490,Pym,14613,215395,2 +35491,Sheriff Wayne Billings,381645,1498700,8 +35492,Ronny (voice),132601,6213,4 +35493,Another Switchboard Operator,27470,13875,17 +35494,Tarneja,25499,87549,4 +35495,Marie Fittler,116979,56356,3 +35496,George Dunn,26119,113640,11 +35497,Elli,130739,2343,4 +35498,BBW Member,167810,1736008,25 +35499,Moneypenny,206647,2038,6 +35500,,64736,273022,5 +35501,Cilan (voice),115223,178871,0 +35502,Norman Vaillancourt,285908,545079,1 +35503,Jessie Stone,42448,30226,3 +35504,Dr. Richter,33789,572362,6 +35505,Todd Sparrow,58467,54789,1 +35506,Gawain,7096,23789,17 +35507,Tatiana,62616,235608,9 +35508,Thumbs,440777,1259944,29 +35509,Operator,273481,1094319,18 +35510,tančí,41213,1777176,17 +35511,Lisa,267623,146381,4 +35512,Joseph Larch,22307,1466,2 +35513,Jesse Wade Thompson,76422,39995,4 +35514,Charles Lomax,38770,14152,9 +35515,Baapji,102632,130111,2 +35516,Member Of The Press,108723,1446350,32 +35517,,44933,73687,18 +35518,Puncher,46436,237345,2 +35519,Charlotte,89492,963429,14 +35520,Peter Rokeby,41996,41235,3 +35521,Henchman,183825,133277,44 +35522,Yard Sale Attendee,91679,1782575,14 +35523,,14284,106839,3 +35524,Motel Man,7547,52879,16 +35525,Jimbo,140648,18643,4 +35526,Village Senior,104376,1363814,8 +35527,Henry,13569,235548,5 +35528,Takako Ishikawa,77057,33728,0 +35529,Margaret,30996,1547065,9 +35530,Officer Winston R. Williams,61908,32190,11 +35531,Naina,60807,237040,1 +35532,,277631,1360663,6 +35533,Himself,170279,18352,3 +35534,Cheimin Noah,16157,1449819,7 +35535,Robin,23855,54634,10 +35536,Hercules,107596,1647141,18 +35537,Dragna,242076,380,2 +35538,Eric Rivers,20210,6858,0 +35539,Blonde,147722,112365,24 +35540,Army Sergeant,108222,3262,34 +35541,Bodyguard,81937,1173757,7 +35542,Himself,333103,8171,7 +35543,Himself,15372,59077,0 +35544,Mimo,18955,77309,5 +35545,Megan,41574,924292,4 +35546,Ellie (voice),8355,15758,6 +35547,Doctora,123359,1102266,7 +35548,Pageant Emcee,68721,1241324,47 +35549,Theodora Daniels,2778,28165,5 +35550,,327225,1432560,17 +35551,Aunt Cora,29872,96271,3 +35552,Bat Armstrong (as Pat Collins),184328,98972,4 +35553,Velasquez,359412,1820504,16 +35554,Detective Jackson,21927,1416960,7 +35555,David Watson,28452,100820,6 +35556,Wizard,120172,215023,0 +35557,Perkins,191322,76519,8 +35558,Guilia,5165,38243,5 +35559,Did Lirnik,31273,107888,35 +35560,Dumb Donald,15045,77801,6 +35561,Choi Do-hyung,49190,20738,0 +35562,Skip,92269,6355,15 +35563,maresciallo dei carabinieri,38286,1865014,10 +35564,Waitress,277710,1557950,31 +35565,Pre-School Mom,88042,935721,11 +35566,Vera Wax,242097,133788,9 +35567,Mutter (voice),18912,83870,5 +35568,Sascha,257454,1273489,2 +35569,Alison,250535,66431,3 +35570,Himself,55027,225222,5 +35571,Gulli,127913,110902,0 +35572,Poppy Taylor,26670,14415,3 +35573,Laura's Mother,133382,33487,10 +35574,Japanese Sportscaster,18722,553438,37 +35575,Zoe Williams,445993,290112,2 +35576,Danny,78461,127725,4 +35577,Detective Malcolm Walsop,245168,1322313,16 +35578,Gudrun Koskull,82708,36102,5 +35579,,131815,14014,4 +35580,Dolmedes,340275,2231,4 +35581,"Sissi, Kaiserin Elisabeth von Österreich",459,6250,0 +35582,Miss Yamamura,88271,1200817,11 +35583,Hamoun's Chief,43761,1339657,8 +35584,"(segment ""Self Portrait"")",8985,552699,1 +35585,Fanny Dorrit,47084,28475,4 +35586,Brent,26899,59254,3 +35587,Professor Willard,82781,157497,4 +35588,Doc Thomas,121923,70990,1 +35589,Dr. Ruric,26036,83822,5 +35590,Gennaro,56943,225246,2 +35591,Man on Street,49712,1885604,27 +35592,Franco,193641,37583,1 +35593,Joyce,21208,90457,10 +35594,Peter,17606,3896,3 +35595,Diego Glass,298540,9464,7 +35596,Ross,318922,1240398,14 +35597,Headwaiter (uncredited),36334,86369,12 +35598,Natalie Yue,28366,64433,3 +35599,Lisa Barrett,19901,1121519,8 +35600,Joan Baker,73198,8873,1 +35601,Dr. Kataoka,32690,1049221,11 +35602,Aardvark Mom (voice),8355,23211,16 +35603,Jazz,381032,996700,3 +35604,Lily,43656,80987,5 +35605,Audra,310602,970670,10 +35606,Miner Leading Mob,176867,98052,20 +35607,Milkman,74525,88728,19 +35608,Himself,234155,933277,2 +35609,Soldier,8988,1742408,75 +35610,Lola,80012,588636,3 +35611,Aziz,28417,100744,2 +35612,Secretary,157843,1907148,25 +35613,Carol,31867,23229,4 +35614,Mr. Graham,1481,91486,9 +35615,Alex,33786,90605,2 +35616,Belle Kao,25074,554120,9 +35617,Izuko,1904,19856,7 +35618,Livery Driver,10362,1179424,40 +35619,Aron's Friend (uncredited),44115,564335,26 +35620,Josie,85265,122045,1 +35621,Dai Xiong,108665,1140994,10 +35622,Nassifa,366566,937641,17 +35623,Sanjana Arumugam,76788,116925,2 +35624,Garrison Chief Mikami,31254,1088657,3 +35625,,121173,1202163,6 +35626,Grandma,375170,1589178,2 +35627,Will,339408,1247010,21 +35628,Turnbull's Kitchen Maid (uncredited),47882,1471367,21 +35629,Prince Michael Stofani,32996,7124,6 +35630,Jade,18803,83598,3 +35631,Javanese dancer,3023,96735,12 +35632,Frau Sandberg,204384,20017,1 +35633,,310888,100653,2 +35634,Dispatch,310133,26467,6 +35635,Richard Cobb,28421,99461,0 +35636,Salim,86279,582489,6 +35637,Vitozzi,108535,32315,20 +35638,Snakehead's henchman,10610,65952,11 +35639,Linda Flynn-Fletcher (voice),71689,86905,12 +35640,Clint Beasley,164504,128324,3 +35641,Ganga,398786,1429047,1 +35642,Jack,384450,82602,1 +35643,Himself,43065,35463,10 +35644,Jackson,286521,6181,5 +35645,Dallas,259997,1302534,21 +35646,O'Brien,84449,1108732,8 +35647,Clara,253257,139150,3 +35648,College Girl,356752,1841519,42 +35649,Josh Carson,77664,93151,1 +35650,Sandrino,315319,1605197,19 +35651,Mr. Schwartz' Stooge #2,128669,224399,19 +35652,Servais Vater,3476,32090,6 +35653,Renee Allison,10201,11664,1 +35654,Countess Eleanor of Lessford,44398,14304,7 +35655,Julia Kerbridge,111014,55266,1 +35656,Case,70006,64856,5 +35657,Strip Club Girl,28090,1719897,44 +35658,Sunburn (voice),44283,9805,10 +35659,Gilbert Favre,80717,135873,3 +35660,Sylvester Stallone,373546,937913,7 +35661,Lakshman Prasad Sharma a.k.a Lucky,14134,85731,2 +35662,,11391,70354,20 +35663,Detective,42552,102644,9 +35664,Inspector Tredennis,140470,100589,8 +35665,Margaret Spooner,271185,70696,16 +35666,Shadow Walker,313074,578081,1 +35667,Ziv,412363,1769115,6 +35668,Sofie,76097,70839,3 +35669,Dr. Richard Timberlane,42499,22479,3 +35670,Rose Duffy,150712,14450,1 +35671,Tortoise John (voice),44896,13726,2 +35672,Dennis,41171,94136,8 +35673,Tuoba Lie's Man,217923,1436162,23 +35674,,280422,1337742,10 +35675,Smash Lady,71859,19469,9 +35676,Money,300669,1172147,2 +35677,Mr. Simmons,301368,1690535,10 +35678,Italian Jack,60269,85351,10 +35679,Crab Counterman (uncredited),175027,30530,12 +35680,Dennai Tatsube,163870,80865,22 +35681,Officer Pierson,312174,1400596,9 +35682,Wayne 'Turnip' Parragella,48609,58661,2 +35683,Bababhai,86279,85456,0 +35684,Lili,13734,144780,8 +35685,Blanche,20414,128461,2 +35686,,8079,85693,26 +35687,Cindy Worth,29610,28246,1 +35688,Moderator,58244,21021,29 +35689,At Dance (uncredited),42553,1174160,17 +35690,Kathy,213755,1751949,9 +35691,John Bernstein,98203,1497966,4 +35692,Chefredakteur,6076,37034,23 +35693,Teddy Mélanco,92257,535561,7 +35694,Grocery Guard,15022,1303210,28 +35695,Tamekichi Kurita,143946,96804,14 +35696,Goto,282069,13275,12 +35697,Boom,40127,111981,0 +35698,Henderson,31899,95729,14 +35699,Dima,31162,107722,0 +35700,Wealthy Fat Lady,176627,14030,19 +35701,Carmine Rasso,71825,1004,6 +35702,Conrad Wills,2503,17199,9 +35703,Himself - Storyteller,128216,933333,3 +35704,Ladron flaco,45191,1636000,5 +35705,"Undetermined Part (script name, Anderson)",257081,1091312,23 +35706,Jane O'Leary,10097,2109,1 +35707,Tommie Ling,30806,175720,1 +35708,William,11653,56861,2 +35709,Lorenzo,77958,231226,2 +35710,Sync Man,30941,71347,33 +35711,Boy,108222,120781,11 +35712,Diana,83223,101607,8 +35713,Hofnarr-Kandidat,9803,5648,18 +35714,Kaarina Roivas,88126,935865,4 +35715,Charley - Plantation Worker,94182,1276756,27 +35716,Joe Schermann,139930,1111694,1 +35717,Rinda Woolley,80473,41820,1 +35718,Gabriel Engel,8332,1846,1 +35719,Sister,1942,47398,11 +35720,Robby Swersey,1382,53887,2 +35721,Lill-gnistan,141267,1400780,13 +35722,Portero (as Alfredo Luchetti),299165,97656,9 +35723,Dr. Kent,10055,62597,17 +35724,Nelson Downes,102057,4765,2 +35725,Ringo,80343,533790,7 +35726,Boyd,54491,13922,3 +35727,Killjoy,27711,98806,0 +35728,Riff Randell,26326,15500,0 +35729,Dody Martini,32610,1466154,10 +35730,Bird Seller,51276,1638422,4 +35731,Janice,219247,206036,8 +35732,Andrea,82341,120107,1 +35733,Caliph,429200,1425800,6 +35734,Raphael,206563,1372459,0 +35735,Dallas,189,3133,23 +35736,Henry Wotton,47459,14503,2 +35737,Carol,296288,1262704,5 +35738,Margo,30995,1207032,10 +35739,Chris - fiance,59408,229311,3 +35740,Detective Takeshita Koichi,37939,119184,3 +35741,David Lewin,111744,11951,7 +35742,Old Man,37929,119140,17 +35743,Edna,92285,1030612,7 +35744,Police Detective in Alley (uncredited),28668,1239954,19 +35745,Palace Guard #1,10109,63581,5 +35746,Charlie (voice),127380,26510,5 +35747,Himself,26326,22465,10 +35748,Wrestler (uncredited),33792,100796,12 +35749,Ryan Ward,18722,117474,26 +35750,B&I Attendant,84352,764268,13 +35751,Jacky,382598,1884492,9 +35752,La wedding planner,41211,1021178,29 +35753,Anne Fenchurch,36635,20144,5 +35754,Mayer,73624,105738,6 +35755,Kit,118443,201783,4 +35756,Poreotics Dancer,243683,1398211,95 +35757,Bernie Gold,47878,1272,5 +35758,Bum in jail,147829,136895,20 +35759,Rachel,301875,1201716,4 +35760,,437253,447184,4 +35761,Inspector George Langdon,73208,15857,2 +35762,Himself,410718,935514,17 +35763,John Leary,38749,518,0 +35764,Adrián,331641,1591795,7 +35765,Nathan,67314,136170,1 +35766,Guard,26376,1239954,58 +35767,Fats,29100,45582,5 +35768,Christine Olsen,118150,39646,1 +35769,"Clifford Robinson, Lost & Found Clerk",20444,3799,15 +35770,Bessie Burgess,173456,30497,4 +35771,Bernie,40807,59241,16 +35772,Will,152748,17838,3 +35773,Flora Carr,45714,240212,2 +35774,Paul,66447,21177,2 +35775,Polar Bear,10753,1269956,5 +35776,Charlie Tuttle,22371,84482,1 +35777,,430973,1431527,9 +35778,Kapteeni Kuortti,55759,53509,1 +35779,Jim Eagle,61049,168051,13 +35780,Dr. Sakurai,19545,30470,2 +35781,,104374,1619185,9 +35782,Yogi Bayer,290825,15033,2 +35783,Fat Girl with Hamburger,157343,1069732,17 +35784,Vivian Sargent,64678,12931,9 +35785,Singer,164954,1269617,3 +35786,The Mighty Man of Valor (uncredited),3059,580811,97 +35787,Insp Lubbock,54804,61584,12 +35788,Villager (uncredited),413998,1555943,29 +35789,Woman at Bar,22897,1099510,23 +35790,Judge,69727,119447,6 +35791,Mr. Zuckerman,21250,51517,13 +35792,Layton,34977,90380,2 +35793,Jack McAllister,9042,6614,0 +35794,Deacon Shepard,405882,1371878,4 +35795,,253309,1542288,7 +35796,Apostolo,371942,1547212,2 +35797,Kentaro,38010,1247954,11 +35798,Mehmet Ali,173294,1473937,9 +35799,Romeo,58081,89193,0 +35800,Frannie Lancaster,222935,4784,3 +35801,,17479,1114562,3 +35802,Toshi,1819,19276,6 +35803,DeMarco,1662,785,11 +35804,Adolf Rubi,16436,113503,10 +35805,Vera,25142,97032,2 +35806,John Dube,868,13098,6 +35807,Madeliene,155128,14701,1 +35808,McDonald,55846,103352,11 +35809,,125264,1200885,18 +35810,Young Boy (voice),11502,3556,3 +35811,Meka Narasinga Rao,80276,146937,6 +35812,Azundati,48180,140018,12 +35813,Lois Lane,209112,9273,3 +35814,Nadja,170759,1153025,16 +35815,Mrs. Kawamura,36063,545767,12 +35816,Den Girige,262713,549526,2 +35817,Sereno,22803,1152008,16 +35818,Fred Willat,23957,32289,2 +35819,The Pope,16135,1292,3 +35820,Admiral Stoneham,53619,4355,2 +35821,Roger Wixon,9471,5694,17 +35822,Dr. P. Sarossy,8669,1239376,26 +35823,Mamie,3574,33006,7 +35824,"Nikvest, Basil (voice)",80089,89968,3 +35825,Alamosa Bill Kermit,11577,4965,15 +35826,Renai Lambert,49018,9827,1 +35827,Mesut Yildiz,308174,1394308,10 +35828,Astrid Mehnert-Wichert,1914,68368,9 +35829,Stellini,41206,125808,8 +35830,Gregory Wilcox,14977,68287,3 +35831,Coach Sandy Hardy,86297,8608,7 +35832,Sarah,269258,49018,4 +35833,4th Man,40990,1567892,9 +35834,Tex (uncredited),99934,122148,11 +35835,Herself,329690,6913,6 +35836,Tony,68750,48012,2 +35837,Lou,59231,79735,8 +35838,Romero,1428,1367499,10 +35839,,20493,87304,3 +35840,Comandante Porfiri,59040,142134,7 +35841,Vicki Robbins,47003,40921,0 +35842,Raimond,14066,113505,3 +35843,Jim Gayner,164504,30212,2 +35844,Hotaru Takegawa (voice),92321,992869,0 +35845,Andrew Loog Oldham,192133,568390,7 +35846,Ray,127728,1085660,8 +35847,Danielle,330115,10839,5 +35848,Bo Bo,93935,25536,14 +35849,Visiting Room Guard #2,245706,205128,28 +35850,Danny,31150,162168,7 +35851,François,228647,128160,24 +35852,Fan at Restaurant,8414,240333,13 +35853,Yuli (The Horse) (voice),33065,110033,2 +35854,Technician,29290,141092,11 +35855,Manson,8008,53578,7 +35856,2nd Kid,23367,95389,36 +35857,Toymaker / Santa / Aged Elf (voice),28275,84495,6 +35858,Organizer,13979,207506,2 +35859,"Sandman, student",51144,122599,11 +35860,Dr. Bhaskar,91527,980173,3 +35861,Abby,250376,1019049,5 +35862,Mr. Fiction Writer,89606,67685,2 +35863,Emily,381015,61134,1 +35864,Tangerine,214129,1076166,6 +35865,,20186,239264,0 +35866,Professor in Wagstaff's Study (uncredited),13912,30202,14 +35867,Mary the Drunk Woman,116979,62246,17 +35868,Nina,209251,931464,2 +35869,Bianca,11139,68313,4 +35870,Red Headed Girl,45729,1024722,16 +35871,Liu Bei,12289,110507,9 +35872,Kusse-Kurt,11330,69013,3 +35873,George Cochran,34082,24937,0 +35874,Moga,43464,90000,9 +35875,Joe Wayman,153161,32430,3 +35876,Walter,18651,4302,3 +35877,Jake Winter,199155,19968,1 +35878,LA Jim,102222,2203,3 +35879,Teresa,3563,62595,24 +35880,Cashier,22447,1240507,27 +35881,Park Jung-gu,264746,1337780,0 +35882,Achika,34935,40325,3 +35883,Jane Lockhart,203321,543261,0 +35884,Keith,11205,583562,5 +35885,Julie,300090,52018,1 +35886,Mercado,179288,117379,6 +35887,Ermenegilda,197335,933327,3 +35888,'Big Tony' Hamilton,22881,59844,17 +35889,Dad,257444,6858,3 +35890,Henry Baldwin,193435,34320,6 +35891,Kimani N'gan'ga Maruge,47559,556369,3 +35892,Principal Newman,285860,1260782,4 +35893,Motilal Khurana,20968,6217,3 +35894,Dr. Reed,47312,85936,18 +35895,"Andrew, le premier marin",61109,14966,5 +35896,Lumberjack,113148,1895925,9 +35897,"Angélica, child",54236,150170,3 +35898,Príncipe Antonio (Diálogos),13283,1497228,7 +35899,Cab Driver,9899,60143,18 +35900,Dr. Wissmer,53256,8200,6 +35901,Steve Franklin,77664,172496,4 +35902,Jill,79120,1482847,3 +35903,Kikujiro,4291,3317,0 +35904,Trial judge,46421,136129,9 +35905,Leoben Conoy,105077,540,5 +35906,Mari-chan,5638,44550,3 +35907,The Cook,128669,1678687,41 +35908,Bertha Troyler,289225,11084,4 +35909,Sir James Matthew Barrie,866,85,0 +35910,Steven's Girlfriend,26486,143591,29 +35911,Mick,71139,20752,13 +35912,,293089,124873,5 +35913,Doctor,336004,1269707,29 +35914,Jim Fisher,221981,43429,3 +35915,Alana,14142,34486,4 +35916,Rebecca,16022,69503,6 +35917,David,33704,84100,3 +35918,Party Guest (uncredited),213681,1771585,57 +35919,Cecil,56558,30530,20 +35920,Carl Åkerblom,41764,3853,9 +35921,Twilight Sparkle,201676,15762,0 +35922,'Mother' Gin Sling,42678,105797,3 +35923,Social Worker,378441,1647290,16 +35924,,173577,1145892,2 +35925,Li,91548,61703,9 +35926,Dominic,128270,1232538,40 +35927,Skeezy D,186759,1099717,22 +35928,Colette McLeod,228496,1026577,1 +35929,Charlie,116723,9191,3 +35930,Dr. Park,254188,1368802,21 +35931,London Policeman,52859,96260,36 +35932,Humanoid Ravager (uncredited),283995,1812367,52 +35933,Jagadish Batra,33146,35793,3 +35934,Inger,77922,117937,11 +35935,Me'Shell Jones,9472,74931,11 +35936,Heyman,9956,22138,13 +35937,Digby,347630,1695650,16 +35938,Amanda,408508,34490,2 +35939,Manh,19898,116637,4 +35940,Cigarette Girl (uncredited),259695,1534809,27 +35941,Officer Nelson,69668,5922,14 +35942,Steve Emery,61430,3381,1 +35943,John Ramsey Auditionee / Himself,430826,1891504,26 +35944,Michael,137145,78036,2 +35945,Sílvia,73160,842056,1 +35946,Arun Prajapati,26153,42802,0 +35947,,37939,133710,11 +35948,Bud,82655,71885,5 +35949,Countess Maletta,59882,14965,1 +35950,Matt,7088,51937,2 +35951,Crocetta,173847,124679,2 +35952,Court Clerk (uncredited),14615,89662,46 +35953,Sam,149910,208246,24 +35954,Henry Manston,73313,18586,5 +35955,Blucher (voice),146381,2467,10 +35956,,292062,1229877,4 +35957,Dr. Robert Steward,239513,64457,0 +35958,Jack Carson,32552,2672,2 +35959,Sergeant Moore,26533,83397,9 +35960,"Tsalkku-Nilla, Shaman",84944,931478,1 +35961,himself,395479,1784931,3 +35962,Mom,257444,20803,4 +35963,,376934,96384,5 +35964,Rita,61686,59612,0 +35965,Harry,298935,21047,1 +35966,,48780,1065329,2 +35967,Champenard,38883,146288,9 +35968,Finch's Receptionist,209112,1695988,85 +35969,Agamemnonas,46278,135664,1 +35970,Max,132759,562730,0 +35971,Amazzone,48250,78713,2 +35972,Auntie Kam's daughter,91186,236195,7 +35973,Laure,64983,6553,0 +35974,Philippe,63401,544446,14 +35975,Xander Harrington,5289,1237734,17 +35976,Snuggy,94251,1195993,17 +35977,,202239,142512,2 +35978,The Giant,186971,1125601,16 +35979,Lisa,285860,557185,1 +35980,Fisherman Jack,41574,1583290,11 +35981,Cosima von Buelow,3478,12520,3 +35982,American Secretary,36335,1196679,11 +35983,Baseball Corpse,82654,522169,22 +35984,amico di Luciano,82083,1377952,17 +35985,,332354,1074927,15 +35986,Joan's mother,9503,73926,8 +35987,Choco,15156,96321,6 +35988,"Jurakudo, the antiques dealer",74581,1029782,5 +35989,Max Cartwright,293970,527313,0 +35990,Marta,43571,27163,1 +35991,Moderator,64328,109869,26 +35992,Sidhartha,14752,87328,2 +35993,Heather Cromwell,339994,3134,10 +35994,Eleanor's Nurse,52437,2780,10 +35995,Capt. Olivia,33472,101479,14 +35996,Security Guard,186759,1285754,37 +35997,Mr. Yauch,335970,170252,37 +35998,Susie May,118889,1494485,19 +35999,Carla Campanele,118397,1067720,3 +36000,Imogen,378441,1797403,15 +36001,Martial Artist / Waitress (uncredited),284052,1363053,54 +36002,Himself,84318,1084970,0 +36003,Helen Buchanan,169869,1311373,10 +36004,Felix,10761,66554,6 +36005,Masseuse,28209,100115,11 +36006,Mom at Santaland Village,286532,935721,20 +36007,Franz,248933,18728,6 +36008,Anna Lee,42182,100237,9 +36009,Luke,49787,75129,3 +36010,Sonya,31127,178054,0 +36011,Il saggio,74645,132262,3 +36012,Mother Earth,1483,36183,1 +36013,Belgian Fighter,7549,52902,6 +36014,Paul,93263,62893,5 +36015,Mr. Bunce,103432,151529,18 +36016,,69310,1094210,17 +36017,Ivan Shark,261035,33970,3 +36018,Dinkey Hooley (uncredited),53574,88728,8 +36019,Agnes,5899,46453,6 +36020,Chumley,102444,1015794,6 +36021,Thomas 'Tom' Freeman,62392,7304,1 +36022,Centipede (Wild Cat's thug),17467,1265959,15 +36023,Lewellen,14882,501,0 +36024,Lila,15016,74361,4 +36025,?,12831,33156,4 +36026,Sasha,260001,85825,0 +36027,,346723,1482818,5 +36028,Soldier,9274,49324,10 +36029,Hardcore Waitress,186869,1862907,35 +36030,Ed Parker,102961,166254,12 +36031,Kent,46915,13329,9 +36032,Q,31421,205345,2 +36033,Farmhand,5237,730296,16 +36034,Woman,47084,1342035,3 +36035,Judge Murphy,73348,83149,8 +36036,20/20 Anchor,395992,1215471,10 +36037,Mark Wyatt,61985,1095107,8 +36038,Martha,10311,20017,1 +36039,Newspaper Reporter,3115,1477239,20 +36040,Various roles,41076,457438,4 +36041,Sheriff Al Davis (as Tom Lingham),38107,1291292,7 +36042,Ron Burgundy,333103,23659,2 +36043,Michelle,74447,105844,3 +36044,Bev Rink,10096,1907,4 +36045,Annie Hayes,158150,42297,0 +36046,Albert Brooks,25890,13,0 +36047,Gøgler,76312,83761,16 +36048,,375742,1564297,29 +36049,Tancrède Ferté-Laroche,70119,235095,2 +36050,Jane Osgood,40957,8237,0 +36051,Henri III,3059,8840,37 +36052,Ryan,456781,67778,6 +36053,Mike,82520,335,1 +36054,Сотник,57230,225724,2 +36055,Bernard Frost,69266,555973,10 +36056,Willi Schickel & Horst Muller,38792,9908,7 +36057,Billy Rhinelander,76714,6159,5 +36058,Emmett DeWitt,333371,17487,2 +36059,Charlie Sandin,158015,81083,2 +36060,Son Hayes,12247,335,0 +36061,Girl high on life,157409,1272876,6 +36062,Oren Little,253235,3392,0 +36063,Donna,60422,2958,9 +36064,Detective Moletti,27501,12002,10 +36065,Nick Butler,94182,5788,0 +36066,Vanessa,414453,1522485,5 +36067,,38154,1684104,23 +36068,Leeladhar Swamy,135718,85450,2 +36069,Developer,71503,563100,20 +36070,Kevin,409502,1183671,1 +36071,Ringwald,14765,20532,7 +36072,Interviewer in 'Stately Homes' segment (voice),49954,143083,5 +36073,Vincent Kohler,290365,557284,0 +36074,Countess of Castlemaine,104720,1036813,12 +36075,Salman Fard,23855,51993,5 +36076,Saul Lefkowitz,241239,8875,15 +36077,,105760,1145,16 +36078,Tank,13596,31837,0 +36079,Anne-Marie,16374,1676389,16 +36080,Gilbert Tilly,242097,29427,3 +36081,Keith Clark,19676,25934,0 +36082,Darlene,34231,13656,2 +36083,Ray Haulihan,72460,30428,1 +36084,Stormtrooper,330459,60232,69 +36085,Funeral Director,5638,81559,20 +36086,Ottway's Wife,75174,55569,11 +36087,Principal Buchanon,272693,71530,5 +36088,American P.O.W,227306,1394461,61 +36089,Sam Cutter,17144,6365,0 +36090,Fausto,325690,1047948,3 +36091,Josh,11577,6463,34 +36092,Dr. Yatinder Khanna,20493,35779,2 +36093,Restaurant Boss,108665,1134505,7 +36094,Prvt. Friedman,57597,104378,9 +36095,presentatore del il PdN,35554,1854446,17 +36096,Craig Morrison,128215,2505,0 +36097,Joe Beal,194407,34761,9 +36098,Edwin Epps,76203,17288,1 +36099,Store Manager,370234,1183544,11 +36100,Miss Havisham's Footman (uncredited),121674,1878837,50 +36101,Sergeant,6163,1663823,11 +36102,James,349028,1389957,1 +36103,Frank / Frankenstein (voice),159824,32895,3 +36104,Anna Berniers,108869,13325,3 +36105,,334175,1464768,7 +36106,Ene,103539,1556837,2 +36107,Grandpa Seth,26914,932324,4 +36108,Minga (voice),13354,190352,4 +36109,The Beautiful Thing,28131,99791,11 +36110,Foreman Pete,407448,1419122,39 +36111,Mark Deloach,43670,17243,1 +36112,Sam,38157,132554,2 +36113,Herself,270724,52898,3 +36114,Trish Garrety,102630,1031261,4 +36115,Cellmate,25598,4732,10 +36116,Gas Station Attendant,128917,1088206,14 +36117,Amelia Bonetti alias « Ginger »,42021,5402,0 +36118,Sarah,27561,82705,7 +36119,Prof. Rumfoord,24559,82863,12 +36120,Homie,44545,153387,11 +36121,Häftling,308174,1360864,18 +36122,Kate Brasher,242835,99662,1 +36123,Extra (uncredited),149515,4068,6 +36124,Bettan,41493,126674,6 +36125,Toni Ricardelli,15640,37034,0 +36126,Lieutenant Davis Herrick (uncredited),52440,25174,45 +36127,Oleg,65839,224079,2 +36128,Danny,86252,1090740,4 +36129,Axelle,1691,37015,5 +36130,Kirby,20312,44184,16 +36131,Le jockey de 'Nana' (as Price),66812,30766,12 +36132,Pool Player,52122,7347,5 +36133,Guest Appearance In Title Song,20132,85693,6 +36134,Anya,63625,125382,4 +36135,Great Britain / Cyborg 007 (voice),127544,125617,6 +36136,Mills,20357,85970,4 +36137,Adele,220724,56816,2 +36138,"Rosa Nardoni, mamma di Guido",58011,1087613,11 +36139,Inga,57438,226192,32 +36140,Dad,393263,1606981,1 +36141,Party Guy,45013,1818032,46 +36142,Kay,274857,1335315,22 +36143,Student,1963,20263,0 +36144,Giancarlo Ugolini,22182,15918,10 +36145,,259075,1396064,8 +36146,,138191,1108172,1 +36147,Habbubah Shabati,116762,1066174,1 +36148,Commissario di polizia,24189,238775,1 +36149,Child Warrior,56527,121868,11 +36150,Antía Feijóo (18 yrs old),332872,1651928,11 +36151,Bob Cratchit,229056,151895,3 +36152,Himself,411013,1799837,3 +36153,Stablemaster,333484,1748375,38 +36154,Judge Davis,332079,103068,13 +36155,Anna age 9,31011,1373642,12 +36156,Bomb Man,108282,265723,20 +36157,Ned Wilcox,301729,61783,4 +36158,Agent Parker,80304,17039,5 +36159,Paula Björkman,55748,223069,2 +36160,Barbara,11172,26722,19 +36161,Xu Bai-jiu,70057,43661,1 +36162,Menacing Guard,24094,97466,30 +36163,Alix,330333,91355,2 +36164,Ramírez,14430,76872,3 +36165,Cockcroft Guest #2,266856,1503914,40 +36166,Romy White,36249,25541,0 +36167,A Banya,63625,560236,2 +36168,Julie Ivanova,53172,21657,1 +36169,Orphan Girl #1 / Sophie Understudy,267935,1709466,20 +36170,Doctor,51999,1475236,14 +36171,Sobrino Sr. Castaño,59117,228876,8 +36172,Ed,267793,1315945,13 +36173,Boat Warden,137528,1683719,9 +36174,Delarue's Gang,266285,1459818,45 +36175,Peter,102444,138876,15 +36176,Dancer,11172,1398830,37 +36177,Head Teacher,329440,1522259,15 +36178,Elisa's Mother,44658,140812,7 +36179,Dan Wheeler,112083,87697,3 +36318,Cesare Maccaresi,325645,1016049,4 +36180,Swimming team (Perth's friends),292625,1758607,19 +36181,Ann Easton,36463,136179,4 +36182,News Reporter,270654,1425206,29 +36183,Eleanor Rigby,275060,83002,1 +36184,C.J.,924,50217,6 +36185,Sheila Willard,81477,98241,1 +36186,Matka Malenstwa,82027,588928,4 +36187,Screaming Fan,23367,95402,51 +36188,Florczak,342765,1120198,6 +36189,Max,115665,25900,8 +36190,Maria,248933,576094,7 +36191,Isabel,119738,945846,5 +36192,Walter of Gurnie,44398,10922,0 +36193,Mattilda Zachary,6643,8828,4 +36194,Yukimasu Amuro,382170,1084911,2 +36195,Summer girl #3 (uncredited),124979,1531741,9 +36196,Pao Sheng-Feng / Wu Tang Dad,37030,64707,3 +36197,Walter,129518,102353,6 +36198,Zac,126947,29370,6 +36199,Dr. Magnus (voice),14011,35035,14 +36200,Jeanie,300654,43366,3 +36201,RV Girl,72574,566379,7 +36202,Himself,390747,1662625,4 +36203,Philario,240745,5296,12 +36204,News Vendor (uncredited),17136,1271053,32 +36205,Himself,245394,162398,18 +36206,,74674,1445131,33 +36207,Alan Smith,35558,35521,5 +36208,Marc,267623,1040850,1 +36209,Abu,76438,578846,7 +36210,The MacDonald Chieftain,189682,29536,4 +36211,Waffenhändler,407,5554,7 +36212,Robert Hansen,199373,3036,2 +36213,Himself,170279,38026,4 +36214,Tattoo Desk Guy,252680,1661904,12 +36215,Capricorn,2309,1333,2 +36216,,334298,131303,9 +36217,Herself,67367,584486,0 +36218,Reincar Executive,143144,1118344,0 +36219,Tänzerin,140554,1707839,38 +36220,Pierce,285270,1223185,4 +36221,The Creeper,11351,56357,1 +36222,Alekos' sister,47778,106822,8 +36223,Sam,13777,75253,1 +36224,Dr. Livesey,83191,1670,6 +36225,Carl Billings,42204,2698,2 +36226,Carolina,1428,3136,1 +36227,Hubert Tyler,214909,105505,3 +36228,Andrew Moore,73612,1050729,2 +36229,Identifies Jen,134238,1271035,32 +36230,Ah Lang,20342,1342866,5 +36231,Catherine,36597,115682,6 +36232,Billy,60269,53023,2 +36233,MIT College girl (uncredited),329865,1646462,61 +36234,Celia,218778,98285,7 +36235,'Wolf' Larsen,33931,13566,0 +36236,Christian,11196,112317,6 +36237,Bookie / Soldier (uncredited),4982,118390,93 +36238,Dana,78403,935288,9 +36239,Mrs. Edna Garrett,109170,66071,1 +36240,Lucas Winton,294093,1108910,1 +36241,Ryan,12171,1235008,7 +36242,Ted,364379,1523855,1 +36243,Mailroom Worker,38356,1465852,38 +36244,,22701,125016,5 +36245,Sara,194104,1174372,0 +36246,Prison Intake Clerk,26376,1198701,65 +36247,Joey Cullen,331962,124909,6 +36248,Arlok (voice),233423,58907,10 +36249,Receptionist,170517,1745599,21 +36250,Mama Wheelis,21030,33496,8 +36251,Himself,76686,1098646,10 +36252,Elena,124054,20759,1 +36253,Un videur,35025,1165295,33 +36254,Freddie,13802,10655,36 +36255,George Gershwin,43491,95732,0 +36256,The Girl,84348,1090689,19 +36257,Magnús,87229,1627475,15 +36258,Hornboy (uncredited),76203,1438677,86 +36259,"Oldring, Rustler Leader",134806,1100323,9 +36260,Van Meer,27740,26959,2 +36261,Matsuko,340176,1215664,7 +36262,Woman,125490,188628,28 +36263,Examineur Smith,48587,216758,3 +36264,Baldini,162374,20082,4 +36265,המאליכּ של סדום,43083,129234,2 +36266,MacGruder,9624,11885,3 +36267,Lt. Kane,34650,89729,12 +36268,The General,21840,936,5 +36269,Madame d'Annard,43894,2926,3 +36270,Joey,100110,83339,4 +36271,Albert Gallatin 'Lat' Evans,80320,18666,0 +36272,Jackie Serrano,327225,591998,0 +36273,Glader,198663,1415421,25 +36274,Mr. Sutton,10204,23429,8 +36275,Metzger,10659,48526,8 +36276,Manesh Desei,322148,1522730,3 +36277,Márcia,82968,109713,2 +36278,Miss Elliott,12796,240212,7 +36279,Kaspar,308174,52722,8 +36280,Livia,206514,12522,1 +36281,Narêtâ,124517,1080199,1 +36282,Celestino,54384,150517,2 +36283,Sitter in Bath Studio,80596,97423,38 +36284,Daughter in Family,249021,1289274,14 +36285,Gunther,44022,30553,6 +36286,,134372,1107178,3 +36287,Ragged Waif,174594,1385246,7 +36288,One of the girls,17295,1077247,5 +36289,Pasquale,8429,54939,10 +36290,Various characters,16023,34517,0 +36291,Lynn Linden,20312,20189,2 +36292,Dr. Louis,122928,55256,4 +36293,Earl Pig (voice),153518,292445,17 +36294,Il Conte,48254,129629,12 +36295,Dr. Paxton,40146,1055180,4 +36296,Newscaster,90616,1155476,19 +36297,Delegado de policia,45191,1623747,10 +36298,Carolyn,97593,70241,2 +36299,William Marston,15044,14432,3 +36300,Lou Duva,332979,15854,4 +36301,Herself,140554,1707832,25 +36302,Maya Ulman,49689,584154,1 +36303,Teacher,188598,1776748,7 +36304,Icarus,37958,96591,13 +36305,"Redaktor ""Tygodnika Naukowego""",156627,1137926,4 +36306,Maggie,72032,103084,4 +36307,Hoover Shoates,42179,13726,4 +36308,Beefy,69217,78037,5 +36309,Leif,49717,114580,7 +36310,Ruben Garcia,92389,1155324,4 +36311,Col. Ranvir Singh Ranawat,101783,42803,0 +36312,Jim,85435,208716,11 +36313,Herself,35639,140519,1 +36314,Ragnar,48791,20241,6 +36315,,141603,1115096,4 +36316,Anti-Christ,174188,64342,0 +36317,High Priest (voice),205584,6799,21 +36319,(as Alda Gallotti),81409,31548,19 +36320,Slave Trader,104485,128324,5 +36321,Larry,18690,117674,9 +36322,Wedding Guest,1819,1763429,13 +36323,Peon,332827,1819523,21 +36324,Coach,369406,1530818,24 +36325,Ayako,94659,131017,9 +36326,Le père-maître 1,65898,32103,9 +36327,Moustache,33005,555532,11 +36328,Elise Rainier,49018,7401,4 +36329,Father Seamus,262958,125660,3 +36330,,23289,142667,17 +36331,Hwan-Kyu,31850,1191708,4 +36332,Mike Patterson,226630,36409,3 +36333,Cairo,340275,1531589,20 +36334,Thug #2 / Officer O'Brien,297853,113506,26 +36335,Gezim,346490,239201,2 +36336,Woodsman,409696,1062,4 +36337,Sgt. Matt Trainor,41468,85895,0 +36338,Benjamin Meyers,24411,83674,1 +36339,Paolo,43646,27433,1 +36340,Lead Stormtrooper,140607,1399528,52 +36341,Chicken,45132,1363396,29 +36342,Member of Mob,68737,1392937,12 +36343,Peregrine Upjohn,42734,5182,5 +36344,Geissenpeter,58757,228345,2 +36345,NFL Commissioner,200505,10138,16 +36346,Vallee,20361,85984,8 +36347,,208579,540871,3 +36348,Käsemann,1655,18403,4 +36349,Matt Jessup,77645,12422,8 +36350,Taj,12447,2064,7 +36351,Ceres,5048,29408,9 +36352,KNVB Coach,73123,88090,3 +36353,,107287,1808857,8 +36354,Lamplighter,43811,1171424,70 +36355,Maj. Eric Coulter (flashback),38269,85774,23 +36356,Ukhov,279543,144841,3 +36357,,85126,160588,11 +36358,Abbey,7551,18050,11 +36359,Maltby,27832,1088030,3 +36360,,92132,28769,0 +36361,Capt. Angel,42191,9091,7 +36362,Kenji,64807,1116011,9 +36363,Dr. Cornelia Wilbur,27137,4431,0 +36364,Lumberjack / Tree Attack Victim,79329,586554,31 +36365,Mister Lo,440508,106745,10 +36366,Möbelpacker,269258,1464147,25 +36367,Det. Lonergan,74777,583457,4 +36368,Maya,97630,83002,0 +36369,Porter,946,14364,9 +36370,Oyasu,58878,228545,4 +36371,Sgt. Lonergan,46875,124851,2 +36372,Rhonda,93676,228141,9 +36373,Grandpa Joe,118,1282,2 +36374,Police Sgt. Devan,149793,2501,5 +36375,Dan O'Malley,32716,9087,0 +36376,Hairy Russian,4551,1332017,31 +36377,,104945,1019912,8 +36378,Dick Wilbur,82313,152771,5 +36379,Tommy Uva,243935,10692,0 +36380,Himself,296194,1752,13 +36381,Ujio,616,9195,13 +36382,Announcer,398633,1623936,2 +36383,J.J. Peachum,42837,9908,15 +36384,Newsboy,118889,1422446,70 +36385,Jelena Pantić (Bulika),284154,15268,1 +36386,Anna Nicole Smith,4551,115654,22 +36387,Leona,58411,227796,5 +36388,Black Room Soldier,16320,80445,36 +36389,,124517,1885267,4 +36390,Andre,284296,2632,0 +36391,Supporting,269173,1388925,31 +36392,Michael Miller,259894,73610,2 +36393,Pandora,110261,106559,4 +36394,Désiré,76871,32323,5 +36395,Cab Driver (uncredited),54139,15531,15 +36396,Gerti Giggles,12279,82785,10 +36397,Randall,200447,96722,9 +36398,Amica di Maria 1,110447,1598028,15 +36399,Robyn,82485,126932,3 +36400,Steward (uncredited),31773,131612,34 +36401,Дарья Петровна,43680,86668,4 +36402,Mario il contadino,58011,1485262,17 +36403,Diego,333367,4886,1 +36404,Ganna's bodyguard,142802,1090197,4 +36405,Berty,21533,105900,15 +36406,Inspector,3023,3364,6 +36407,Dave,336004,1717272,33 +36408,Karin,11656,70361,3 +36409,Interpol Chief,15371,553104,18 +36410,Old Man Gordon,425774,78962,4 +36411,Perkusista,375742,136650,5 +36412,Acteur,382589,583897,12 +36413,Dirk Morrison,369894,183812,2 +36414,Sheriff Pat Johnson,27034,3262,7 +36415,Rhonda,68184,1795301,7 +36416,,77986,240834,7 +36417,Pamela Rose,20106,21550,6 +36418,Tresette / Tricky Dicky,146970,80875,0 +36419,Namiko Yoshida,51549,72605,8 +36420,Marshall Will Wright,43829,1009,3 +36421,Pan,64215,238751,1 +36422,Journalist,76312,137366,15 +36423,Vanessa Dane,120478,117172,2 +36424,Mrs. Mary Woodry,32684,109701,0 +36425,Steve,136386,1102427,14 +36426,Kim,121791,1074966,1 +36427,Italiano,77137,120633,7 +36428,Dr. Stephen Clark,68387,118002,8 +36429,,206277,1329366,5 +36430,Housewife,2771,27975,17 +36431,,92060,75332,10 +36432,,131478,1285572,6 +36433,Armored Car Driver,250332,1550498,57 +36434,Trainer King,42989,117546,4 +36435,Tin Lum Yin,112708,4995,3 +36436,Suzy,15713,7276,3 +36437,Jackman,246917,939225,5 +36438,Capt. Prada,41597,47662,11 +36439,Usherette / Girl with Pearls / Little Old Lady / Tapping Brown Shirt,9899,60139,11 +36440,Marcovic,28131,14151,7 +36441,John Lomax,63773,1423661,6 +36442,2nd Officer Pavic,367006,22109,5 +36443,Atún,80280,1602304,14 +36444,Valdez,322922,1838045,17 +36445,Judge Bumbleton,5559,13309,11 +36446,Rawhide,10044,62419,6 +36447,François Blais,359413,229424,8 +36448,Manuela,211,10237,1 +36449,Sandy,99859,195535,11 +36450,Gordon / The Man / Mr. Grey / Ensemble,15199,1218191,11 +36451,Eddie Fields,75510,34119,2 +36452,Associate Judge,27622,95757,16 +36453,Helga,55563,53934,6 +36454,Alan,126927,8966,11 +36455,Young Child,274325,1577107,12 +36456,Molesch,94336,34383,6 +36457,Jack Maitland,156360,87480,3 +36458,Diva #2,38322,1869037,31 +36459,Lillian Bingington,96333,140356,2 +36460,Woman in Bar,27012,1211891,5 +36461,The Analyst,61267,37606,9 +36462,Brandy,27112,97249,9 +36463,Sheriff Robards,49158,4307,4 +36464,Howard Pace,269795,27754,11 +36465,Beer stand owner,76438,578847,8 +36466,Landau,27832,1024417,2 +36467,Charles,102362,206398,9 +36468,Henry VIII,70090,106633,7 +36469,boer,35016,1105149,17 +36470,,278095,238523,5 +36471,Pirate / Indian,273106,1519564,19 +36472,Asobi nakama (Friend),28268,1896459,13 +36473,Elroy Jetson / Cogswell / Henry Orbit (voice),36868,109969,1 +36474,Cab Driver,120357,1383106,17 +36475,Mrs. Wilkinson,298931,117315,2 +36476,Manny (voice),79218,15757,1 +36477,,124597,1675548,26 +36478,Himself,70027,557822,2 +36479,Madame He Xiangning,25626,74021,30 +36480,Laure Tellier,76200,281746,8 +36481,Captain Carl-Birger Kvikant,49322,141984,2 +36482,Patron,5123,1781831,41 +36483,Michiko deguchi,81560,111640,4 +36484,Jeff Evans,49950,941,12 +36485,Young Blonde (uncredited),36612,95965,11 +36486,Princess Leia Organa,140607,4,5 +36487,Sonographer,356842,1671751,7 +36488,Babyshower Woman (uncredited),356842,32249,8 +36489,Dr. von Pohl,267389,37675,5 +36490,İş Görüşmesi Kadın,361181,1509832,10 +36491,Pawnbroker,67375,103947,33 +36492,Horn Mici,41689,127104,3 +36493,Joe Wilson,831,12357,6 +36494,Mr Johnson,10482,2440,2 +36495,Emily Parker,67216,8256,0 +36496,Hotel Clerk,56558,1072123,55 +36497,Ko Chi Wai (as Lam Ka Tung),14016,83820,2 +36498,Sweater Set Girl,59962,1128861,33 +36499,Tillie's Visitor (uncredited),22943,150169,35 +36500,Police lieutenant,115531,862,2 +36501,Kelly Jones,10748,59620,2 +36502,Oficer Wembley,15601,86434,1 +36503,Himself,47426,141681,6 +36504,Gregory,409696,1386297,2 +36505,Local Farmer,56906,217530,6 +36506,Frau Kuppler,43548,55654,4 +36507,Son Goku,38594,90496,4 +36508,Schwab,41597,127020,9 +36509,Rivero,116327,106611,1 +36510,Quon,38237,1072,6 +36511,Clerk (uncredited),297762,1809570,85 +36512,Dave,43741,19901,6 +36513,Raj / Paul (double role),20495,35756,5 +36514,PE teacher,14357,91567,8 +36515,Lucía,172457,1151375,5 +36516,Émile Lachaume,61361,1977,4 +36517,Bobby (voice),15653,64998,2 +36518,Sheriff Boston,18671,110204,9 +36519,Airport Security Guard (uncredited),213681,1771581,52 +36520,Rushee,10760,1297174,22 +36521,Brambilla,48805,141115,16 +36522,Capt. Christopher 'Chris' Brent,162862,8240,6 +36523,Denise,37978,58016,4 +36524,Hiarba,93492,14014,3 +36525,Gilberte Valandray,51945,20851,0 +36526,Niko,182415,1471347,4 +36527,RZA,4551,150,20 +36528,Kiser Pease,128364,5048,3 +36529,Travis Lone Hill,308640,1395189,8 +36530,Roz (voice),62211,10,20 +36531,Special Appearence,61400,70689,7 +36532,Keith,266687,1112388,1 +36533,Announcer / opening act,422548,1698803,2 +36534,Lavin Skee (voice),30675,583061,8 +36535,Jennie,23048,116882,8 +36536,Paula's Grandma,329550,1604346,49 +36537,Doctor,76493,20644,2 +36538,Waiter,43811,1176510,69 +36539,Captain Tom Lingard,87349,12689,1 +36540,Darlene Cox,37708,78888,6 +36541,Rodent Ralph,72096,155115,40 +36542,Tammy,55563,9205,0 +36543,Ann,215016,17495,0 +36544,Sir Hector,55628,12726,5 +36545,Special Appearance,14134,55062,11 +36546,Michelle,32845,99803,0 +36547,Mrs. Gundy,353979,1392128,5 +36548,Hans hustru,77922,1196409,7 +36549,Kyung-mi,147533,1850947,2 +36550,Psychiatrist,46261,15340,7 +36551,Clarence,27018,79699,2 +36552,Kathy Rohl,19719,85097,6 +36553,Mrs. O'Hara,87514,119369,17 +36554,Stevie,331588,1657529,12 +36555,Violet's friend,77822,89900,17 +36556,Heidi,468707,1860858,2 +36557,Himself,374460,53329,7 +36558,Tree Hand (voice),92321,1083327,6 +36559,Vince,353257,1449091,4 +36560,Henry,118900,87825,7 +36561,Bank Teller,68750,168455,12 +36562,Miriam,24821,111540,11 +36563,Reine,49940,6001,0 +36564,Sergei,348389,69471,8 +36565,Mrs. Xue,64304,1134748,19 +36566,Tony,35543,114371,4 +36567,Vincent,228108,118616,0 +36568,John The Physical Therapist,408272,1394997,4 +36569,,53407,1893382,10 +36570,Mr. Truman,305932,1672381,5 +36571,Justin,7972,53453,10 +36572,Frau Arnim,1912,35536,8 +36573,Doctor,65131,86670,6 +36574,"Glenn Manning, before injuries (flashback)",38269,94202,20 +36575,Theatre Director,328589,107405,16 +36576,Thunder's men/Leung's student,64316,562290,11 +36577,Bernie,3563,159907,37 +36578,Marigold,101998,1177636,20 +36579,Dealer,104172,1384110,15 +36580,Theaterdirektor,114242,1137714,3 +36581,Big Tony,45324,7868,9 +36582,shinkome,129383,320709,2 +36583,Mohea,171759,109046,6 +36584,Tara Jaiswal,14752,78921,5 +36585,Tourist Wife,5237,928734,21 +36586,Becca,198062,88995,3 +36587,Prudence Bushnell,16374,26513,8 +36588,Groupie #4,40208,1172672,14 +36589,Candidata al miracolo,315319,1034712,10 +36590,Frau Schäfer,338,4797,8 +36591,Tuomas,362758,1205457,2 +36592,Brigadista,2143,132909,31 +36593,Professor,23628,90403,10 +36594,Eli,274820,113563,6 +36595,Elaine Boomer,39001,19469,4 +36596,Shota Hirata,389972,80108,2 +36597,Solodov,29299,235695,1 +36598,Melanie,62527,82653,5 +36599,Kuzmin,143380,119211,3 +36600,Zaim,126090,4641,1 +36601,Hedda Hopper,50008,10981,8 +36602,Gummiged chauffør,356326,1874740,30 +36603,Nicole,1807,19201,6 +36604,Trixie,87302,1544967,10 +36605,Senator Carson,149793,1105280,9 +36606,Clerk (uncredited),43522,535498,55 +36607,Paolo,99579,1023669,7 +36608,Man in Lala's Dream (uncredited),34082,4299,11 +36609,Remedial Trainee,122271,1230708,10 +36610,Rita,347979,582512,2 +36611,Miro,195522,1175905,0 +36612,Emily,335970,1190066,78 +36613,Kyra Stanovy,50761,12776,1 +36614,Frenchman (uncredited),32552,1159361,31 +36615,"Karlsen, mekaniker",87654,1082868,15 +36616,Le dompteur,40258,1123090,5 +36617,Leo,6964,15277,5 +36618,,103301,47422,3 +36619,Himself,43514,30272,14 +36620,Casino Patron,71670,572088,34 +36621,Leon S. Kennedy,133121,556275,0 +36622,Etsuo Watanabe,49258,238804,2 +36623,Lydia Matveevna's daughter,71393,34707,4 +36624,Dr. Johannes Krafft,29043,32004,0 +36625,Herself,53367,29545,5 +36626,Frantuzzi,48949,276530,14 +36627,Himself,53380,120940,6 +36628,Diner Waitress,91679,1782590,32 +36629,Milo Henchman #2,29101,1516709,22 +36630,Mr. Wallace,243940,6719,5 +36631,'Ma' Becker,43119,87519,6 +36632,"Taira no Tomomori (segment ""Miminashi Hôichi no hanashi"")",30959,63707,25 +36633,,172008,86480,13 +36634,Simone,53256,45734,24 +36635,Man in Suit,13849,89798,6 +36636,Tommy Lascelles,65035,9142,14 +36637,Hostess,304372,1507148,22 +36638,Zhou San Chao,108665,1158036,11 +36639,Ela mesma,448763,1848650,14 +36640,Justine Prest,270654,180997,26 +36641,Sideshow Bob (voice),35,7090,6 +36642,Veterinarian,293863,1110009,25 +36643,Fluchtfahrer Emre,269258,5851,28 +36644,Saitama Riot Police Captain,15371,553103,17 +36645,Fred Friendly,3291,1461,10 +36646,Sergeant Dragon Ma Yue Lung,21519,18897,0 +36647,Scuttle (voice),13676,34521,14 +36648,Field Reporter,286521,1357096,21 +36649,Phillips the Chauffeur,47882,583305,14 +36650,Julian Mercer,6964,6384,2 +36651,Zézé,204768,71377,5 +36652,Koko (voice),322487,51037,5 +36653,Security Guard,48281,1225403,14 +36654,Sgt Robin,324670,1205880,13 +36655,Russian Check Point Guard,93856,938096,9 +36656,The Phamacist,45013,4253,13 +36657,Sheriff Denby,74629,20165,5 +36658,Lia,12811,73750,1 +36659,Payne,223485,77335,2 +36660,Tanaka,27351,1068912,2 +36661,Soldier,375366,1621967,42 +36662,Al Hilwani,336029,52685,10 +36663,Sheryl,244458,1424051,12 +36664,Gibson,80343,27012,2 +36665,Kissing Couple - Frankie,347630,1695671,50 +36666,Business Woman (voice),408220,228121,17 +36667,The Boss,137726,1355010,3 +36668,Johannes Kleiman,128396,1409181,8 +36669,Ray,220500,1059067,0 +36670,Rugby the Tiger/Ditz,47670,64181,0 +36671,,197057,1176988,6 +36672,Young Franny (voice),1267,61304,15 +36673,Mme Bouley,4516,3731,6 +36674,Blom,128946,560030,8 +36675,Amy Townsend,271718,440414,0 +36676,Abigail,79113,1838765,10 +36677,Molly,104146,32394,1 +36678,Charles,53857,32428,1 +36679,Frank Cheng's father,11636,554984,20 +36680,Alex Kim,9042,18307,6 +36681,,280045,1138052,8 +36682,Violet Cambridge,245168,37058,6 +36683,Radburn,76203,121718,14 +36684,Kate Bergstroem,40985,11026,4 +36685,Willy,92269,45921,8 +36686,Zhan,76438,578841,2 +36687,Samuel F. Parker,35926,14508,6 +36688,Fulton,17577,9290,9 +36689,Shinzeki,376538,239506,3 +36690,Spiral Beach Band Member,8669,1281028,35 +36691,Bridgeman,29805,106992,23 +36692,Puar / Chi-Chi,39324,122192,8 +36693,Santa,238302,83414,2 +36694,Mrs. Pearson,36375,84487,10 +36695,Bala-Tik,140607,1446565,26 +36696,Le sergent Roudier,31344,35898,2 +36697,Berlin Olympics Spectator (uncredited),227306,1194035,79 +36698,Laurel,66022,36819,1 +36699,Police Inspector,148284,1039037,10 +36700,Dancing Girl,184267,29981,13 +36701,Tom Ransome,115109,20364,2 +36702,Sgt. Eddie Parks,375366,14887,1 +36703,Da Guo,377447,1473995,3 +36704,Mary Norvell,99863,95314,0 +36705,himself,112072,236959,4 +36706,Anna Aniello,132122,1094535,5 +36707,Cheamney,49853,1648784,26 +36708,Vasin's Wife,27925,99265,1 +36709,Nic,17609,570509,2 +36710,New York Times Clerk,258480,1545513,28 +36711,Taxi driver,48116,1545752,12 +36712,Joe,37126,129428,6 +36713,Raji,4551,4937,2 +36714,Policewoman,11496,1525610,12 +36715,Ada Wong,133121,76029,1 +36716,Rocky Heldon,17640,40210,10 +36717,German Airplane Mechanic (uncredited),297762,1651386,104 +36718,Reed's Runner,4413,1539168,36 +36719,College Kid 1,76101,1353929,11 +36720,Turner Hideaway,339408,1622090,31 +36721,Mr. Pettibone,183825,13819,6 +36722,,54111,565393,14 +36723,Gunman,52661,50310,15 +36724,Sheriff's Deputy (uncredited),14615,1369418,27 +36725,Denise,24397,977334,12 +36726,Pat Garrett,42402,82863,2 +36727,Breanna,37725,42297,8 +36728,Henchman,26881,567078,17 +36729,Richmond Pearson Hobson Jr.,118443,110472,0 +36730,'Rocky' Steuber,207178,138091,8 +36731,Policeman,19621,14821,5 +36732,Léger,436340,1744822,9 +36733,Harry,18072,86480,7 +36734,La Méchain,50181,143354,3 +36735,Islander,38221,552182,14 +36736,Jackie's father,17457,537951,9 +36737,Kalle Nubb,125926,28846,5 +36738,Guard,262958,1537746,34 +36739,Greenstreet,361050,11024,4 +36740,Count Rudolph,30844,30066,1 +36741,Actress (uncredited),53419,21314,9 +36742,Patricia Casey,249969,19967,4 +36743,Hara,119926,118074,2 +36744,Matthew,326045,102742,12 +36745,Mrs. Marlowe,204040,8515,6 +36746,Cosgrove,70051,58950,1 +36747,Lisa Silvestri,10986,27163,2 +36748,Chinese General,4982,11397,52 +36749,Peer,276220,1330188,5 +36750,Homme de Chamseddine #1,46738,1298569,14 +36751,Herself,246655,554456,53 +36752,St. John,38684,478,1 +36753,,335874,10767,1 +36754,Nathalie,242683,17660,4 +36755,Henry,81182,978,7 +36756,Suhas,347807,53377,13 +36757,Wally,43172,96142,4 +36758,Man in Elevator,413232,171111,33 +36759,Hotel Guest,98349,1017370,20 +36760,Nick Kessel (uncredited),31913,1532,25 +36761,Worker,48281,1894618,17 +36762,Erpresser,12206,71649,2 +36763,Elderly Man,54804,29675,6 +36764,Hotel Manager,94182,106091,23 +36765,"Alfred, the Professor Assistant",3053,3556,1 +36766,Monica,924,101250,13 +36767,May,362180,1585711,5 +36768,Pinafore Actor,1247,1864553,17 +36769,Dj,128657,118499,11 +36770,European,336811,1457455,18 +36771,Lt. Weizel,68347,180878,11 +36772,Pushok (voice),260310,1378192,6 +36773,Ahmad Shahbandar,28270,14503,2 +36774,Himself,108419,18626,0 +36775,Janelle,178809,550522,12 +36776,Marcus,114982,1060186,4 +36777,Little Inez,409447,1719719,21 +36778,Liz,20432,72092,0 +36779,Padre,74126,97203,4 +36780,Martha,235260,1489914,30 +36781,Körri's banger,80472,593083,0 +36782,Rick Rosselli,228034,3266,1 +36783,Punker #1,27549,1766029,11 +36784,Pansy Prindle,172443,1796925,2 +36785,Himself,413782,1028351,14 +36786,Napoleon (voice),815,2387,7 +36787,Eric,24775,976814,5 +36788,Umpire #2,18722,553450,50 +36789,Figure in Boat,54700,1448724,5 +36790,,59572,8635,1 +36791,,162899,1144872,4 +36792,Shifu (voice),81003,4483,4 +36793,Lucille's Attorney,20301,35848,8 +36794,,75578,575727,18 +36795,Spark's Maitre d' (uncredited),369524,1435253,34 +36796,Karin Borg Blake,95874,19549,0 +36797,Wyatt,325302,1465614,1 +36798,Juliet Sykes,397837,1278724,3 +36799,Beth,347630,1505505,10 +36800,lui-même,64357,21177,5 +36801,Tyler,14907,22017,7 +36802,Championship Fight Spectator (uncredited),43522,1208031,54 +36803,"Elizabeth (""You Killed Elizabeth"" segment)",45577,115780,2 +36804,The Duke,23750,937,2 +36805,Jack Rubbervinger,35016,550494,27 +36806,Richterin,6076,27108,8 +36807,Artist in bar,223655,6600,13 +36808,Kevin,339342,1198994,6 +36809,,65044,125769,1 +36810,Sœur Théophile,65898,7280,16 +36811,Felim,10097,63362,8 +36812,Shade,109391,1204692,25 +36813,Henry,84178,1191822,4 +36814,Jeong Do-jeon,285213,96659,11 +36815,Commissioner Shrivastav,25499,593021,7 +36816,Cindy,27414,1206232,19 +36817,Vittorio Raganelli detto Il Musulmano00,52914,225190,16 +36818,Arai Jyoun,45441,4990,4 +36819,,373838,584042,1 +36820,Tom Gregory,110980,131442,2 +36821,Himself (archive footage) (as Dr. Andrew Bagby),15584,556504,1 +36822,Charlene's Priest,405473,104758,46 +36823,Walt Reynolds,84105,231140,10 +36824,Marigold,428687,101060,4 +36825,Ticketing Agent,120802,1818380,27 +36826,Gina,86647,44416,3 +36827,Carl,403330,76094,4 +36828,Lee at 13,149509,973518,8 +36829,Thodoros Bakatsoularas,296344,1149689,7 +36830,,236368,130359,0 +36831,Dr. Jack Hughes,40060,135189,4 +36832,Radio DJ,34092,111858,9 +36833,Blaise Starrett,37481,8253,0 +36834,Ambulance Doctor,140470,540363,19 +36835,Inspector Kambli,147767,35819,5 +36836,Costume-Party Bartender,149793,992912,30 +36837,Dwight Eisenhower,132363,2157,13 +36838,Alien Leader,14907,105691,10 +36839,Stella Meredith,16373,80469,2 +36840,Deputy Ruddy,22419,45443,5 +36841,Pascale,73474,1875578,4 +36842,Line Cook,268920,1517477,68 +36843,Herself,348601,1486957,1 +36844,Rosa Accordino,167583,4959,1 +36845,Batman / Bruce Wayne,411802,75038,14 +36846,'Lock' Man - Inventor (uncredited),87612,2501,7 +36847,Widow Tweed (voice),9948,6035,12 +36848,,264036,14593,2 +36849,Alice,172548,1080291,5 +36850,Blackie,171446,3163,4 +36851,Irene,71041,84128,5 +36852,Beckett,21619,26491,3 +36853,Young Jeremy age 10,96987,1011209,6 +36854,Thomas Bateman,9846,59874,6 +36855,Betty,5748,45313,8 +36856,Brunette Zealot,284052,1070721,9 +36857,Ravi Patel (7 Years),87827,1377778,6 +36858,Dang,52936,1613652,3 +36859,Evelyn,128270,1799980,12 +36860,Sam Lever,215379,1384871,8 +36861,,216046,1200687,0 +36862,Tai,13807,63584,1 +36863,Saloon Brawler,55604,1468755,52 +36864,Dreadlocks,304372,74931,24 +36865,Vincent McClure,16083,74242,20 +36866,Dave,75761,576222,0 +36867,Paddy Dolan,72638,95276,10 +36868,Shaina's Father,280690,76789,7 +36869,EEG Doctor,29161,101557,16 +36870,Travis,310133,1397783,1 +36871,Cliff,77067,585783,4 +36872,Furnoy,116973,8729,7 +36873,Jonah,263627,77865,2 +36874,Jimmy Blevins,325133,198150,6 +36875,Harry,77412,89914,3 +36876,Simon Ball,354287,107733,6 +36877,Rosina,41054,125359,6 +36878,Bugs Bunny / Yosemite Sam (voice),145813,33923,0 +36879,Mathilde,382501,19119,2 +36880,Gabriels Bruder,407,5124,6 +36881,Prashanthi,80276,225312,1 +36882,Harris,46261,12536,4 +36883,Alex Reardon,259997,80965,2 +36884,Chef,10482,79885,4 +36885,The Butcher,86838,1145861,24 +36886,Mrs. Roberts,44027,43853,8 +36887,Barfly,105059,1601649,50 +36888,The Blind Mother / Clotilde,315855,2319,12 +36889,Sona,76788,111671,8 +36890,Asta Ots (as Anastasia Makejeva),46931,137844,1 +36891,Mike Bartholomy,17241,5920,4 +36892,Facetime Stranger,241254,1388484,20 +36893,Fisnik,345918,1644104,14 +36894,Mullet / Duncan Rime,15022,125911,21 +36895,Esteban Gomez,47959,30351,7 +36896,Masha,51275,143668,4 +36897,Lee,25038,1326142,12 +36898,Messenger,11045,17697,18 +36899,Herself,9951,1692545,17 +36900,Desk Clerk,228970,199704,29 +36901,Luther Aldrich,55604,9067,4 +36902,Charlie,410118,1414782,1 +36903,Lapin,218329,62712,5 +36904,Maggie,58404,12776,2 +36905,Olivia,117678,100371,0 +36906,Joanne,323674,58866,7 +36907,Vater Pelzer,83729,32822,8 +36908,,237584,1544811,28 +36909,Richard Fenton,8617,51670,6 +36910,Soldier,377170,121233,41 +36911,Mélanie Bérangère,10524,24393,5 +36912,Alistair Raskolnikov,23385,15336,0 +36913,Mother,44510,1839351,2 +36914,Brian - NVL,120802,1264260,29 +36915,Rachel,339547,572195,2 +36916,Wally Thurman,17956,78729,2 +36917,One of Rocky's Friends (uncredited),28000,1240845,79 +36918,Viktor,118737,10843,0 +36919,Giulio,35554,1011306,13 +36920,Insp. Jacques Clouseau,936,12446,1 +36921,Ms. Saxena,76684,86031,10 +36922,Himself,15258,2632,68 +36923,Ruth Wheldon,8954,23931,5 +36924,Demon,48145,569320,11 +36925,Herself,124071,163555,7 +36926,Dr. Ortiz,215881,146004,6 +36927,"Hellman, mąż Anny",314371,553063,1 +36928,Lalan Mian,60392,11852,4 +36929,Ruth,16022,5606,21 +36930,Lee Chan,28044,16103,2 +36931,Diner Waitress,300654,1209477,7 +36932,Ali Cello,197297,228612,7 +36933,Stagehand,177902,194173,15 +36934,Mrs. McCord (uncredited),45215,8829,16 +36935,Melissa Muligan,334890,1312168,8 +36936,Elizabeth,245906,999605,18 +36937,Abilene Fight Announcer,75315,3262,29 +36938,Farina (as Hal Roach's Rascals),190352,1055290,4 +36939,John Newton,15163,3926,3 +36940,Roxy,15476,170436,13 +36941,Willy,167938,69912,1 +36942,Jim Berkey,86829,12111,2 +36943,Dolores,335053,66816,19 +36944,Julie Benson,31206,11494,1 +36945,Jenkins Party Guest (uncredited),3059,10531,69 +36946,Frank Korvac,36634,15699,8 +36947,Autonkuljettaja,101838,1029095,26 +36948,Cipher,337339,6885,6 +36949,,143073,1118291,4 +36950,Sushi Chef,329440,1777419,19 +36951,Himself - Guitar Player,296192,92706,10 +36952,Joe Scarsi (as George Stone),27777,3163,5 +36953,Police Chief McBrusque,31473,54859,9 +36954,Angela Baker,35626,74673,13 +36955,Becca O'Riley,72140,118420,2 +36956,S.I. Childs,25941,20508,2 +36957,Suzy,98094,133800,2 +36958,,9503,6087,19 +36959,Sally,21955,183877,3 +36960,Police Dispatcher,250332,120445,47 +36961,Karate Kid,59962,1581106,29 +36962,Mole,8965,35219,5 +36963,Salvatore Lojacono,75532,132190,0 +36964,Guard,310135,1716338,25 +36965,,293654,1608593,14 +36966,The Recruiter,293660,15032,8 +36967,Arne Skrydsbøl,16016,89973,1 +36968,Director Eurovegas,254869,278485,16 +36969,Yokota,36917,52710,8 +36970,Rusty Cammeron,249264,105636,0 +36971,Louis Benois,267481,1118014,8 +36972,Prime Minister,11012,73284,9 +36973,Himself,164558,1052107,1 +36974,Craig,32588,51991,5 +36975,Lionel,65646,11542,5 +36976,Aeroclub President,310568,1588825,14 +36977,Shaffer,43754,101802,8 +36978,Felix Rose,29510,104034,9 +36979,John McIntire,129851,1231666,2 +36980,Pvt. Sato,43407,129511,10 +36981,Shiran Wolf,74666,1703700,7 +36982,Violin Boy,52021,1088214,13 +36983,,92499,1335771,5 +36984,District Attorney Joe Bucknor,68976,40433,2 +36985,Asli,452606,1653582,21 +36986,Bonino,105906,556744,2 +36987,Reiko Morita,111398,213504,0 +36988,Navigation,10916,15377,12 +36989,Don Alvaro,11799,176011,11 +36990,,271495,235097,5 +36991,Drunkard,46114,563443,10 +36992,Reporter (uncredited),3580,1275524,70 +36993,Joy,58396,227766,0 +36994,Walter Craig,120357,29815,1 +36995,Max Spencer,150657,1131334,4 +36996,Paul,60784,231719,3 +36997,Le barman,12446,1012711,24 +36998,DJay,10476,18288,0 +36999,,156988,11221,3 +37000,Emerson,49521,77223,10 +37001,Toichiro Amamiya,55197,134346,10 +37002,Laura,435707,67052,3 +37003,Snakeskin Boots,9828,53,6 +37004,Zaror,106747,118370,18 +37005,Mr. Dennis,80560,2979,5 +37006,Ginecologa,356757,128224,6 +37007,Sorella di Jessica,56804,1323317,7 +37008,Charles Evans,211088,150396,1 +37009,,74674,1445127,29 +37010,Steve,8954,21134,10 +37011,Police Officer,90616,1149361,37 +37012,Simon - Judge Doolittle's Brother,18569,132536,46 +37013,Kruger,169298,1238,2 +37014,Albrecht,97088,36837,1 +37015,Ms Liang,88922,1141872,13 +37016,Veronica Huebling,61430,233122,3 +37017,Old Marshall,43829,589728,30 +37018,Guido,48846,99545,3 +37019,Dayna Jurgens,13519,58522,10 +37020,Dr. Krieger,7916,1646,2 +37021,Rita Conroy,36375,115364,2 +37022,Brian Robeson,25373,57422,0 +37023,Ellie Fabian,37923,10558,1 +37024,Michele Vismara,108535,1291720,18 +37025,Sheila,34729,1689912,14 +37026,Johnson,57597,1676190,20 +37027,Grandmother,378607,1566572,3 +37028,Leyla,38794,90283,2 +37029,Gringo,14430,31493,4 +37030,Johnson Kid,72856,1388782,7 +37031,Himself,17401,81775,2 +37032,Steve,31428,169839,6 +37033,Jorge,114922,963911,1 +37034,Bit Part,18651,933862,30 +37035,Spion,177979,32422,3 +37036,Himself,29101,1515925,17 +37037,Herself,71687,16171,4 +37038,Nerd,68684,168872,30 +37039,Hector Escobar,307081,1348164,15 +37040,Brent Black,50161,1220189,0 +37041,Dr. Jerry Queasley,83802,51348,10 +37042,Shelly,145135,1131606,5 +37043,Broker,43811,30201,57 +37044,Emily Sears,44869,93805,1 +37045,Kayo Horikoshi / Kinu (voice),149870,52404,11 +37046,Lisa,381645,1860894,31 +37047,Mr. Rooney,4953,40250,6 +37048,Sgt. Thomas Mulcahey,139826,85869,6 +37049,Jack Dabbs,15639,25147,3 +37050,Geeta Malhotra,54959,86061,2 +37051,Bloom,147106,179127,10 +37052,Molly Jackson,61550,29710,2 +37053,Donny,37686,59451,19 +37054,Christine Erganian,9675,109740,7 +37055,Mighty Eagle (voice),153518,22970,5 +37056,Mrs. Dalton,183825,117638,14 +37057,Rolando Bayugo,98203,1059362,23 +37058,Guard #1 (voice),810,71535,34 +37059,Andrew 'Andy' Hardy,43808,1937,1 +37060,Matt Flamhaff,10096,103,1 +37061,Batman / Bruce Wayne (voice),40662,21089,0 +37062,Tobey,397422,115128,13 +37063,"Domingo, the Soldier",44641,144532,1 +37064,Luisa's lover,3405,30832,9 +37065,Daniel,508,3896,10 +37066,Himself,40863,552396,4 +37067,Tourist,5721,45107,9 +37068,,92989,1175543,7 +37069,Scientist,28340,100494,13 +37070,Sarah,40793,88093,1 +37071,Reporter,13542,1187578,17 +37072,Mrs. Pritchard,111042,99329,6 +37073,Security Guard #2,41171,1392753,35 +37074,Nadja,347106,993929,1 +37075,Mark,84420,1039416,0 +37076,Scott Massey,142216,57082,4 +37077,Philip,394403,38442,4 +37078,Bernard Schwartz,128669,29579,9 +37079,Fung / Ah Tad / Tat,18763,18897,0 +37080,,344560,1178601,7 +37081,La mère de Mina,15712,230087,11 +37082,Maluc,64961,11190,3 +37083,En konstabel,87654,128653,24 +37084,Clint Canfield,147903,78793,4 +37085,Cookie La Motte,25633,2775,6 +37086,Hannah,42188,1095524,10 +37087,Himself,9951,1692542,14 +37088,Arthur McLennen,22307,2549,5 +37089,Charlie (uncredited),284289,1365516,4 +37090,Salih,64468,40023,1 +37091,G.A.,157293,1170143,9 +37092,Jimmy Lennon Jr.,307081,231396,19 +37093,Vanderhoff,16876,153516,10 +37094,Mrs. Gregory,87894,146141,4 +37095,Lennox,133448,1097175,7 +37096,Serena Edmonds,44945,1411950,11 +37097,Dr. F,24963,21246,14 +37098,Herself,21671,60278,2 +37099,Estelle,16177,128859,1 +37100,Lisa,8282,19363,4 +37101,George's Mother,2143,21980,5 +37102,Il commissario (non accreditato,3520,24379,19 +37103,Second Saleslady,3937,1423370,21 +37104,Myra,87123,13353,1 +37105,Elvar,320736,1303089,6 +37106,Sam,98277,109472,1 +37107,Matka,278867,1175584,4 +37108,Melvin - Alien Dad (voice),9982,20753,11 +37109,,14804,1901810,29 +37110,Reunion Classmate,11172,1781226,68 +37111,Miss Kaler,30941,9072,14 +37112,Responsable magasin TV,98277,82926,20 +37113,Cop,186869,1862909,37 +37114,British Soldier,1116,930958,61 +37115,le valet de Mézeray,11912,384316,8 +37116,Joseph,70695,20309,4 +37117,SP Kanoonga,49028,92686,11 +37118,Julie,11610,160868,6 +37119,Walker,92341,145705,7 +37120,Liu Wenhui,25626,11401,53 +37121,Dr. Saul,433244,14331,5 +37122,Himself,324173,20405,11 +37123,Gloria Gaines,132363,13309,11 +37124,,130948,5818,13 +37125,,320005,1427409,7 +37126,,148615,53011,13 +37127,Frandsen,31048,10697,2 +37128,Florence,24432,12207,8 +37129,Mrs. Taylor,121230,20366,5 +37130,Party Guest (uncredited),200505,1376001,18 +37131,Jack Carver,7916,1844,0 +37132,Bo,19661,40194,10 +37133,,441881,11851,3 +37134,Wonder Woman (voice),408220,5916,4 +37135,Babette,36229,2343,6 +37136,Chain-smoking ghost,62439,150697,19 +37137,Automobilist liften,58396,228516,8 +37138,Fighter 2,71503,563101,22 +37139,Carter,304372,8177,1 +37140,Allan Heyl,18927,2482,3 +37141,Peter the Great,376188,96515,2 +37142,Dr. Susan Miles,89269,26009,2 +37143,Club owner,253235,204367,5 +37144,Huguette Verberie,51945,2405,2 +37145,Gus Goldstone,25646,8343,6 +37146,Jake Andrews,52864,99347,3 +37147,Nigel,173294,1007420,14 +37148,Robyn,110588,63206,1 +37149,Marie-Caroline Dubarry,382597,20851,6 +37150,Vexille,13391,94018,1 +37151,Cameo appearance,330418,130109,9 +37152,Vanessa Carlysle / Copycat,293660,54882,1 +37153,Pudgy Beaver Mom (voice),8355,41091,13 +37154,Anarchist,142979,32312,4 +37155,Detective Levitz,1877,1212471,9 +37156,Homem 1 Beijo Triplo,70666,1863906,49 +37157,Inspector Sanderson,425774,1707879,19 +37158,Tiffany Lai,13374,947209,8 +37159,Le type au bar,377853,77908,13 +37160,Lawyer,270654,1424892,19 +37161,Leonor,101342,1625819,7 +37162,The Fairy Godmother (voice) (as Judith Kahan Kampmann),36751,116109,6 +37163,Tipo,152611,118303,0 +37164,Anna,256347,222130,2 +37165,Custodian's wife,94525,1112468,1 +37166,Lilly,356482,970238,5 +37167,Himself - Community Initiative,97724,1388679,29 +37168,Laetitia,16197,75541,3 +37169,Marie Webster,105059,101940,5 +37170,Spark (voice),322487,1428067,3 +37171,Mrs. Wilkes,358982,1507488,4 +37172,Danny the Greaser,137093,1277225,12 +37173,Colonel Datoo,140607,1211865,24 +37174,Dragon Eye Morrison,27245,13275,0 +37175,Nordic Vampire #1,346672,1905795,35 +37176,Sarge,129332,6916,6 +37177,Louise Beardsley,27983,79739,6 +37178,Julian,22387,6933,13 +37179,Kenny,375366,1733484,9 +37180,Shon,369883,1690563,12 +37181,Lucia,121929,1112959,0 +37182,Charley Anderson,185564,135409,0 +37183,Hertzog,27937,1190266,2 +37184,Ibn Sina,169881,2282,1 +37185,Big John McMasters,55604,11492,0 +37186,Harry Farrow,292294,34130,4 +37187,Joe,42293,21998,2 +37188,Xia Meng,354128,1501339,3 +37189,Military Officer #1,318781,94924,29 +37190,Store Pedestrian,339419,1650164,35 +37191,Jewel Mayhew's chauffeur,10299,103107,25 +37192,Salesgirl,134201,1771030,8 +37193,Suburban son,16171,79880,30 +37194,'Dad' Johnson,18774,73245,3 +37195,Jen,232672,63234,2 +37196,,458428,1820237,1 +37197,Natalie 'Nat' Webley,46121,58398,3 +37198,Tyvanna,188927,119758,13 +37199,Hélène/Denise,258384,82789,1 +37200,Boy on Bike,1116,1896879,47 +37201,Dragon,11653,70690,4 +37202,Dymas (voice),14411,35257,5 +37203,Tim,19794,1264610,29 +37204,Dr. Alfred Brandon,43228,13786,2 +37205,Toshiko Yoshioka,116303,1052343,1 +37206,Bailiff,11358,33308,25 +37207,Le grand maître des tempeliers,4443,37309,8 +37208,Jen,352164,209511,6 +37209,Marco (voice),85414,1230897,10 +37210,Vakthavande polis,133458,1280827,17 +37211,Mercenary #1 / Amazo / Guard (voice),40662,60279,18 +37212,Celeste,270650,1207439,11 +37213,Extremis Soldier,68721,1352976,89 +37214,Eva Pogge,798,11929,2 +37215,Himself,14761,1308763,3 +37216,,144651,31997,5 +37217,Female Passenger,188161,175570,41 +37218,Sgt. Danny Bonhoff,102841,20752,3 +37219,Baroness Katrina Marissey,53851,82789,1 +37220,Troy Bolton,13649,29222,0 +37221,Bauer Horst (voice),9514,1642156,16 +37222,Steve / Man with Squeegee / Waiter / Ensemble,15199,1641970,12 +37223,BOĞAÇ BORAY,295748,106784,10 +37224,Kiko,49597,2974,2 +37225,,332354,1070661,11 +37226,Julia,336882,1544539,8 +37227,Ira,20432,88676,2 +37228,Odin,63736,135352,3 +37229,Bully #1,25132,947563,11 +37230,Police Officer,31899,1239954,31 +37231,Matt Denant,41599,35321,0 +37232,Poznicki,118444,4307,9 +37233,Teresa,188598,462483,2 +37234,Emma Lemp Talbot,124115,81018,3 +37235,Emily,76203,1344344,27 +37236,Sadhu (uncredited),284052,1785922,53 +37237,Portrait Artist,1165,2246,20 +37238,Sirius,36258,24517,1 +37239,Sokovian Acid Student,99861,1760858,28 +37240,Apprentice (uncredited),284052,1785925,60 +37241,,64526,994193,7 +37242,Al / Ham,104430,95276,4 +37243,Adam Lemmerich,9935,229005,5 +37244,Aunt Kay,43727,9207,7 +37245,Durant,44746,63608,20 +37246,Jevrejin Mosa,33611,111068,10 +37247,Tony Cimo,48841,69010,0 +37248,Isabel - age 12,14804,1901748,6 +37249,Skip,32226,77150,1 +37250,Alison,5928,76382,11 +37251,Prof. Robert Miles,26503,2264,0 +37252,Mom,241742,92027,3 +37253,Girl on Bus,308,83920,11 +37254,посетитель ресторана,63300,99297,12 +37255,Himself,27637,18072,32 +37256,Airman,22076,112346,11 +37257,Kor,7234,30044,0 +37258,"Françoise, la stripteaseuse",152989,1179887,24 +37259,D.J.,11247,92855,17 +37260,Rana,44246,133821,7 +37261,Seaman,52859,30204,46 +37262,Lucille,54570,112012,5 +37263,Ochi,352694,1542652,2 +37264,Clarinda,274479,1221558,19 +37265,Stanley Farquhar,273167,30706,3 +37266,Civil Servant,1394,44104,6 +37267,Assistant,15086,53905,1 +37268,Vorsitzender,122487,18840,12 +37269,Himself,209112,550307,31 +37270,Turandot,177677,78434,28 +37271,Largeman Follower,75761,1299273,29 +37272,Pino Calamari,60193,11223,4 +37273,Wolfgang,211,10240,5 +37274,Harriet Wheaton,15759,10776,9 +37275,"generál, velitel pevnosti",41213,235668,4 +37276,Xing Feng,362154,20654,4 +37277,The Kid,30941,4690,5 +37278,Garth,21141,94146,12 +37279,Tien Yeng Seng,19528,78871,3 +37280,"Naaman, the Executioner",96951,1082382,5 +37281,Matthew S. Cabot,39779,19411,9 +37282,Anna Perrott Rose,48627,116838,1 +37283,,16017,1355961,18 +37284,Ace of Spades Man,228647,34508,20 +37285,Man in Bar,5237,738439,20 +37286,Derek Lloyd Peter Digby,62143,189302,19 +37287,No. 1,64428,1192916,11 +37288,Sally Connor,49334,104299,0 +37289,Bearded Man,20766,113506,8 +37290,Vikram,73600,88811,0 +37291,Odd Thomas,179826,21028,0 +37292,Danny Frazier,97910,30270,2 +37293,Jinx,17421,81824,1 +37294,District Attorney Roger Quinn,52864,20368,4 +37295,Lior Amichai 'Jagger',17614,82098,1 +37296,Matija Čačić - Mata,259728,124961,5 +37297,Olivia,9655,51975,2 +37298,Chief Souto,38461,32435,5 +37299,Marks,102222,76543,5 +37300,Dinosaur Babies / Flightless Bird (voice),8355,5714,29 +37301,Soldier #3,353257,1059040,5 +37302,Teruaki Takeda (science writer),36243,9723,2 +37303,Ngai Wing Hau,11647,63584,3 +37304,Lin,63706,31528,5 +37305,,265934,7053,4 +37306,Billy Corgan,186606,85236,5 +37307,Himself,14761,1308762,1 +37308,Reporter (uncredited),16442,1030251,29 +37309,Andrejs Krisons,144331,1192369,8 +37310,Vince Ginetta,53654,45206,1 +37311,Elderly Man,109391,10994,39 +37312,Le colonel SS,56589,54401,9 +37313,Mad Mountain,111479,43858,7 +37314,ACP Jaideep 'Jai' Rai,101783,35793,1 +37315,,278475,1282325,1 +37316,Gale,38317,91609,13 +37317,Babcia Wanda,39331,122669,1 +37318,Petr,26826,96381,0 +37319,Renaldo 'The Heel',21627,11357,5 +37320,Tsar Yeremei,20934,86691,2 +37321,,257302,140138,13 +37322,Wang Kaixuan,364324,1534990,7 +37323,"""Aminat""",382155,1636673,10 +37324,Farid Baraheri,15577,78408,11 +37325,,254689,62752,1 +37326,Chuichi Nagumo,131739,136193,12 +37327,Manolin,12920,6862,5 +37328,Irene,38526,228100,1 +37329,Nell McLaughlin,14012,49,1 +37330,Susan Whitaker,50549,1278810,20 +37331,Satterlee the Prophet,41468,103503,10 +37332,L'employé de bureau,53404,1664225,20 +37333,Paul Spooner,271185,2224,1 +37334,April,23048,51988,1 +37335,Josef Weyl,280004,1430584,20 +37336,Ernest,39129,12899,0 +37337,Polizist 2,74103,571184,1 +37338,Mrs. James,20312,13567,20 +37339,"Beroes, prorok chaldejski",5040,7115,8 +37340,Lekarz,155325,1616653,26 +37341,Prison Guard,267931,1429470,15 +37342,Oscar,36251,1689928,14 +37343,Bess,19350,84523,3 +37344,Merry Cat Logan,39982,1072157,6 +37345,Porta,21840,52374,0 +37346,Captain Paul Boyton,369019,1370826,4 +37347,Little boy,10834,1643048,7 +37348,Daniel,5177,41903,0 +37349,Gentleman,28212,15389,6 +37350,Dancer,4982,1659299,73 +37351,Matthew - Photographer,213681,1115731,29 +37352,Guan San Dao,10703,1613795,13 +37353,Gambler,111470,1468198,36 +37354,Cpl. Denno,46875,5403,0 +37355,,137312,1107178,5 +37356,Elizabeth Lavenza,3072,30096,6 +37357,Himself,40873,116341,3 +37358,Cabañas,254869,1119394,25 +37359,Toby Kaplan,46830,1535784,7 +37360,Bayardo San Roman,163706,4757,0 +37361,Chris Piper,343795,1488908,3 +37362,Mme de Montareuil,55370,24771,14 +37363,Emile,31532,29987,11 +37364,Thor,26881,41125,3 +37365,Guerilla,118497,1059100,5 +37366,Kittilän runkkari 2,366249,93565,7 +37367,Boom Operator,340101,1865909,47 +37368,Small Boy,6589,50590,11 +37369,Arthur Cartwright,144475,43866,7 +37370,Roxy Miller,31287,102922,2 +37371,Bahloul,82430,10506,10 +37372,Heidi Maida,142216,1176782,13 +37373,Trudi,31472,97671,19 +37374,Bobby Anderson,360606,1116802,9 +37375,Japanese Tourist #9,402582,1520070,21 +37376,Johnny Meyer,2567,36801,13 +37377,Minor Role,43833,552412,23 +37378,Voice,303856,1645538,5 +37379,Albert Leo 'Al' Sullivan,43504,144549,3 +37380,Cate Wilson,28178,11148,1 +37381,Philip Waverton,31592,2669,6 +37382,Officer Segars,193893,71403,3 +37383,Amytis,113743,129520,0 +37384,Milo,22182,88472,4 +37385,Momo,1818,3834,5 +37386,Tibor,323315,931366,4 +37387,Emilie,323315,984479,3 +37388,Micki,17287,81579,2 +37389,,128671,30779,7 +37390,Maître Walser,35008,13609,4 +37391,Victoria,71866,73462,1 +37392,,366736,239201,2 +37393,Sir Anthony Babington,11788,80420,15 +37394,Friend at Barney's,171446,126836,26 +37395,Clara - Cashier,339419,1468237,31 +37396,Milo DeLong,20153,11031,8 +37397,Rosco Dunn,11614,70029,3 +37398,Producer,59744,52622,15 +37399,Howard Forman (as William L. Erwin),29116,26044,15 +37400,Heath Pierson,4592,38331,5 +37401,Receptionist at Pearce & Mann,74753,8226,9 +37402,Asian Minister (uncredited),3563,60949,39 +37403,Joe Lamb,37686,518627,0 +37404,Directora Alicia,125619,1293067,5 +37405,Murray,158750,974991,4 +37406,Duke Desmond,38065,86040,2 +37407,François,13652,7693,4 +37408,Ida Garrett,11577,544591,17 +37409,Mrs. Frankie Neall,31713,3340,1 +37410,Elsa,56804,1323317,18 +37411,Vivienne,86274,6613,0 +37412,Dickie Winslow,77822,123905,7 +37413,Nurse,25983,88548,6 +37414,Ludovic,5618,25180,1 +37415,Young boy,32540,109332,20 +37416,Ossario,11614,545137,7 +37417,"Bugs Bunny, Daffy Duck, Foghorn Leghorn, Pepe Le Pew",349045,179896,2 +37418,Mayor Dooley,99909,14969,12 +37419,Halwa Raj,60807,113810,2 +37420,Koga,376538,224662,7 +37421,Soo-Jae,242458,1418582,11 +37422,Lottie,5748,100292,7 +37423,Rodeo Performer,134238,1660485,52 +37424,Nick,360924,1231108,1 +37425,Madame Abramovitch,366566,39350,14 +37426,Flasher,2976,10367,16 +37427,Flaco,203264,93602,7 +37428,Young Quinlan,13957,76106,9 +37429,Mélodie,299715,123989,1 +37430,Rosie the Pinhead,17796,1196132,10 +37431,Dr. Amos Willoughby,36361,40176,1 +37432,Henrietta,256593,931785,2 +37433,Ele mesmo,448763,1848655,19 +37434,Bordenave (as Pierre Philippe),66812,1082579,4 +37435,William Messerman (Older),18208,17867,6 +37436,Sergeant 'Sol' Campbell,239845,195528,1 +37437,Oven Prisoner,57924,1076803,3 +37438,Mr. Waturi,13483,1079042,15 +37439,Doll Girl #1,49018,223680,16 +37440,Marthandam's henchman,330418,1489947,15 +37441,,39493,1016213,8 +37442,Professor Amano,22899,97628,6 +37443,Mrs. Eckman,33729,946156,7 +37444,Butler,198277,1423884,24 +37445,Corliss Archer,185934,95624,0 +37446,Rachel,31003,10871,3 +37447,"Valentine De'ath (segment 3 ""Hollywood 1936"")",75903,9221,4 +37448,Lola,17240,117653,0 +37449,-,33481,110782,32 +37450,Gaúcho,194853,12396,8 +37451,Qiu Jin,76349,998494,8 +37452,Vitay tábornok,41689,125195,1 +37453,Isabella Vanger,15472,6662,13 +37454,Mayor Moscone,10139,8536,6 +37455,Susan Gardner,8669,52852,3 +37456,Joy,97794,1057435,7 +37457,President Park,118451,1044800,16 +37458,Daisy,246299,128360,4 +37459,Police Officer,379959,1604101,14 +37460,Fat Candy,26204,3161,10 +37461,Javier,436,5874,10 +37462,Harold,108282,1211877,27 +37463,Jeong Joo-hwan,62439,552072,20 +37464,Harvey Wofford,242835,41250,7 +37465,Ethel,125623,1878928,14 +37466,Corda,8010,53593,10 +37467,Walter,419430,1291961,9 +37468,Hyotaro Kondo,256930,68973,0 +37469,Kit,17082,127434,15 +37470,Miss Crumbles (voice),27300,17495,7 +37471,Şerife,452606,1797946,15 +37472,Serge / Handsome Man (voice),23566,92080,11 +37473,Martin,75969,18726,2 +37474,Joe Coughlin,259695,880,0 +37475,La Caoba,98582,1103795,6 +37476,Tyson,295581,1098664,7 +37477,Mad Scientist,95414,1004823,2 +37478,Himself,40863,552395,3 +37479,German Lieutenant (uncredited),16442,112356,56 +37480,Charley,44470,106645,17 +37481,Frank Brentano,9950,37156,11 +37482,Scissor Legs,47647,62412,6 +37483,Albert Morgan,140032,85737,2 +37484,Dick Reynolds,264061,101881,6 +37485,Member of Audience,177902,88462,21 +37486,Choi Cheol,387845,1141056,1 +37487,Ruth (Rough's neighbor),158990,130024,12 +37488,Twin Sakaaran citizen,284053,1571654,20 +37489,Hustler (uncredited),4982,1003285,82 +37490,Dead Junkie,52452,146013,14 +37491,August Grandvilliers,42216,24421,5 +37492,Él mismo,415255,1677216,8 +37493,Police Capt. Hancock,116327,81182,6 +37494,Rachel Adams,358982,1507487,2 +37495,Lois Judby Hammond,26516,81283,5 +37496,Jackie,77964,1329736,15 +37497,Josh,4344,40478,3 +37498,Batya,6391,55047,0 +37499,Mermaid,273106,1519563,18 +37500,Woman at Fertility Clinic,22897,644,21 +37501,Judd Webster,50506,1369076,3 +37502,Mark Harmon,102057,21561,4 +37503,Deputy Scotty,53949,153409,19 +37504,Shareen,70500,45364,8 +37505,Buba,177155,559493,5 +37506,Police Officer #1,76544,200754,5 +37507,Himself,15258,74086,77 +37508,Grocery store patron,16240,80190,23 +37509,TV Show Emcee,17640,105990,15 +37510,Village Idiot,3053,653,9 +37511,Chandra,188507,1203090,10 +37512,Catherine de Médicis,126958,1083439,2 +37513,ER Clerk,365942,1670758,35 +37514,Mrs. Woolsy (uncredited),3081,115771,16 +37515,Radio Cop,250332,1016691,55 +37516,Chauffeur / Aaron,18633,1291665,15 +37517,Colonel Clint Maroon,46563,4068,0 +37518,Rosie Dunne,200727,112561,0 +37519,John Stratton,348389,55470,0 +37520,Slimane,52555,1446515,6 +37521,Warrior (voice),125521,122191,14 +37522,Keith DeBruler,142012,16851,1 +37523,jako Głowacki,406449,144001,6 +37524,Diner Waitress,91679,1782591,33 +37525,Voller,136386,109157,11 +37526,Cody Puckett,89337,52474,5 +37527,O'Brien,254193,31268,12 +37528,Angry Mom,268920,1754443,45 +37529,Hilary Ames,52270,14029,4 +37530,Prof. Braun,35632,7502,2 +37531,Hank Smith,262528,13874,3 +37532,Preacher,22419,210420,8 +37533,Jesus Christ,47980,130518,0 +37534,Luca,43195,34596,5 +37535,Himself,97724,1388684,34 +37536,Baldy Bai,248376,88351,10 +37537,The Woman,344120,19163,4 +37538,Alexander Graham Bell,67375,18156,0 +37539,Pirate / Indian,273106,1519570,25 +37540,Natalia,49073,1013386,9 +37541,Beverly Wilshire Hotel Doorman,11338,101377,21 +37542,Benson,324670,1261406,11 +37543,Xu Zonghan,76349,109432,1 +37544,Mrs. Howler,186869,1025796,12 +37545,Ritter,48778,96968,6 +37546,Rico,9298,53257,7 +37547,Berkeley,66881,1426210,22 +37548,Kodomo,28268,1082746,6 +37549,Alexis,47683,1274547,1 +37550,Luciana,186630,148589,2 +37551,Spectator in Theatre Box,228647,29626,45 +37552,Klasse 3c,61035,1446112,38 +37553,Penrod (uncredited),58,1056117,31 +37554,Wacka,15935,78959,14 +37555,Jeff,78571,933961,5 +37556,Olaf Torvik,31048,40275,1 +37557,Wilson's Man on Phone (voice),22020,30689,15 +37558,Man at Church (uncredited),16442,1000083,68 +37559,Syd Felder,60599,41406,11 +37560,Extremis Soldier,68721,1735573,92 +37561,Judge Warren,205587,18328,9 +37562,Judge Fred R. Simpson,84209,84327,6 +37563,Mike Erganian,9675,177131,9 +37564,Ross Moore,9918,60508,10 +37565,Sujata,8341,48883,2 +37566,Gorgeous Woman,2179,9273,16 +37567,Vanda,82481,1127383,13 +37568,Neetu's mother,33146,6498,11 +37569,Athena Captain,293167,39545,21 +37570,Ross,20411,59152,7 +37571,Cheol-bong,285213,84996,5 +37572,Bull - 5 Years,14868,77715,4 +37573,Job Centre Floor Manager,374473,1766050,11 +37574,John Carter Cash,126016,410,4 +37575,Joseph Buquet,76115,206726,10 +37576,"Mr. Grayson, Patient losing Eye Sight",153165,96257,23 +37577,"""Provolone""",124202,120027,8 +37578,Dad,45649,85949,8 +37579,Wu Yuanying,10703,66762,1 +37580,Peter Jones,351211,1232689,2 +37581,Brian Nelson,7980,105727,12 +37582,"Louisa, Child at Christmas Party",179066,1264118,35 +37583,Captain,51601,34180,8 +37584,Khun San,39907,1649567,10 +37585,Wedding Guest,14976,1212619,28 +37586,Police Officer,340275,1506682,59 +37587,Cowboy (uncredited),6973,1204218,39 +37588,Kipa,24973,89215,25 +37589,Mrs. Kowalski,13092,6199,16 +37590,David Braxton,42252,16558,6 +37591,Maria Thorpe,18093,1738910,19 +37592,Von Rachlitz,76714,18536,13 +37593,Pundit,214756,1230194,69 +37594,Iversen,13630,1017281,3 +37595,Dr. Lorenzo Cameron,110980,30417,0 +37596,Doctor,14552,180518,22 +37597,Luc's Mom,37609,54523,17 +37598,Kassai Lajos,407965,1655882,5 +37599,,175924,6451,7 +37600,Warden Alcott,25507,20368,3 +37601,Miss Roberts,44027,18284,5 +37602,L'infirmière-chef,262454,26363,4 +37603,Flo,76097,16823,1 +37604,postman's first love,390930,104522,2 +37605,čaroděj Mrakomor,84030,137072,3 +37606,,188684,142488,8 +37607,Mr. Levitt (Storekeeper),27414,1105542,15 +37608,Himself,63144,553506,1 +37609,Mami,105210,46363,1 +37610,Dr. Immerman,62472,235380,5 +37611,Beth Larsen,381073,77133,6 +37612,Nick Walker,49524,10859,1 +37613,Mrs. Wagner,147618,1129184,5 +37614,Snowboarder,206647,1599271,64 +37615,,47324,1438249,11 +37616,Jack (uncredited),331313,1358965,37 +37617,Iris,221527,128060,6 +37618,Dasha (as Eve Gracie),270774,238333,5 +37619,Kanabos,163018,1144911,3 +37620,Choir Master,241140,1049360,8 +37621,Samantha Harris,227700,115177,12 +37622,Minor Role,43806,14666,59 +37623,Momma Bosley,9471,103982,14 +37624,Theresa,261249,19413,6 +37625,Constable Judith Higgs,73565,1618512,12 +37626,Joan,85651,1375273,10 +37627,Donald,41402,966943,8 +37628,Tricia,413417,1719081,9 +37629,Uncle Fung,338421,1629646,21 +37630,Eimantas,437830,1153626,4 +37631,Mrs. Hatfield,183832,148432,15 +37632,Guillaume,67509,1051671,10 +37633,Master Li Jing Ying,40081,544921,9 +37634,Frances,19661,40233,9 +37635,Harper,381645,1298787,20 +37636,Lord Osric of Crossley,10473,58655,1 +37637,Keoki,9870,106730,11 +37638,Pat,313922,21028,0 +37639,Heinz,277967,28603,4 +37640,Melvin Purvis,49172,170638,7 +37641,Background actor,52454,1630351,68 +37642,Head Racketeer,94809,1125592,14 +37643,Heo Ok-ran,321191,83220,2 +37644,La directrice du foyer,59118,1768822,19 +37645,,206277,48179,4 +37646,Norm,87587,164402,5 +37647,Brigadiere,62034,45983,10 +37648,Cudzoziemiec,82027,592916,8 +37649,Zack Murphy,42706,54789,10 +37650,Feldwebel Traub,30298,1312165,6 +37651,Maj. Taylor,257377,12816,6 +37652,Aisha,12113,229932,7 +37653,Backwoodsman,52360,9866,55 +37654,Tara,82990,1485380,8 +37655,Londinium Fighter (uncredited),274857,97090,59 +37656,Cherry,356500,1201716,1 +37657,Grandmother Nezahat,91628,1052246,5 +37658,Robert Fathwood,94874,171824,1 +37659,Taxi Driver,76286,102441,4 +37660,Gus Mochizuki,142012,1003550,10 +37661,,285685,1346264,13 +37662,Officer Maneretti,352372,31268,3 +37663,,134350,87873,15 +37664,Caedmon,7237,30647,0 +37665,Geoff Bowes,128216,1196471,24 +37666,Sponsorkvinnen,140818,625117,12 +37667,Anna Bergman,41764,33190,1 +37668,Rachel,30496,58079,4 +37669,Commander Carl Nelson,39276,16033,0 +37670,Agent Suggs,258509,25147,14 +37671,Shelter Officer,44087,1889636,24 +37672,Aurelia Clifford,308640,1395184,3 +37673,Thenmozhi's Father,66526,237638,5 +37674,D. Henrique Cunha,84016,130715,3 +37675,Hollingworth,29805,32067,9 +37676,Welcome to the 60's Dancer,2976,1230442,145 +37677,Michael,96888,95558,6 +37678,Lia,82481,1127388,21 +37679,The Reverend,2196,10674,10 +37680,"Sutener Al, opiekun Once",91691,72373,17 +37681,Hunk (voice),319924,39125,5 +37682,Tom Jedd,179826,16743,12 +37683,Businessman,329440,1522255,14 +37684,,69310,1303558,34 +37685,Penelope,77930,1784681,80 +37686,Chesse,10041,1559695,7 +37687,Bear,369406,1538825,10 +37688,Dr. Caron,16320,34490,12 +37689,Rebecca,62837,576474,13 +37690,Michael Shepard,24624,10207,4 +37691,Remco,140894,46460,0 +37692,Wesley,298865,1388314,4 +37693,Tina,78362,929106,8 +37694,Harriet Stander,4932,94029,6 +37695,Male Neighbor,29136,180940,18 +37696,Sheriff,261037,18473,2 +37697,Sentry #1,1271,47934,29 +37698,Mary Worth Corpse (as Merissa Principal),60965,232049,22 +37699,The Taxi Dancer,246299,148528,10 +37700,Himself,296194,105787,5 +37701,Prison Commissioner,13823,75791,27 +37702,Dan Brown,148,1672,11 +37703,Strip Club Girl,28090,1719898,45 +37704,Whitehouse,183171,32433,6 +37705,'Peg Son,290825,1766056,11 +37706,Mrs Nice,10482,111658,9 +37707,Himself,36883,55119,2 +37708,Deputy Sniffer (voice),70587,83414,22 +37709,Rachel,30637,2265,4 +37710,Mauro,345489,88051,1 +37711,Okabe,108634,125011,3 +37712,Bert Langdon,16784,9626,7 +37713,Amar,13507,938887,6 +37714,Sergeant on Rooftop,4688,120890,22 +37715,John Ramsey Auditionee / Himself,430826,1891502,24 +37716,Herself,142168,6352,6 +37717,Brian,85265,1494463,8 +37718,Jogger (uncredited),36691,115982,23 +37719,Scott Cody,60071,20048,2 +37720,Nashime,86520,76975,2 +37721,Tattoo Girl,16131,79435,28 +37722,Nadine,284343,1619454,2 +37723,Lali,48180,140017,11 +37724,Bearcat,13991,214108,14 +37725,May Cheung - in Bun's eyes,14016,224029,6 +37726,Shampoo Girl (uncredited),14669,1017324,26 +37727,Okada,21057,1133285,5 +37728,Mićo,255160,1898235,20 +37729,Brianne's Dad,244610,60602,9 +37730,Dinner Party Guest,35404,121323,19 +37731,Antoine,12446,20672,3 +37732,Mayor White,239566,58733,61 +37733,Lt. Elan,107146,41644,8 +37734,kawazoe,129383,1073196,4 +37735,Castor,61552,7805,8 +37736,Jennifer,21214,87280,1 +37737,Janitor,31277,2883,9 +37738,TV Licence Inspector,32904,1157301,14 +37739,,51285,143734,6 +37740,,121530,1024878,5 +37741,Himself,144680,96826,18 +37742,Soľný Kráľ,208436,548093,3 +37743,Żona tirowca,74919,1084400,7 +37744,Batman (voice),342917,75038,1 +37745,Richard,316776,1436390,2 +37746,Amy,26014,18706,5 +37747,,278458,1333898,1 +37748,Orderly,48231,1089481,14 +37749,Steve Forsing,273481,52886,6 +37750,Classroom kid,375366,1886309,14 +37751,Timur,332534,932605,6 +37752,Morten,3549,32727,6 +37753,Smollet,11055,67953,3 +37754,Himself,44038,74095,8 +37755,Kate,86703,217272,2 +37756,Adjutant,18651,89704,68 +37757,Alicia,43432,64772,8 +37758,Graham,149926,26861,19 +37759,Charlie,366630,18982,5 +37760,Nanny Cindy,13680,74935,13 +37761,Marsha,409536,4431,5 +37762,Emily,17038,36812,2 +37763,Museum Girl,11610,1462228,9 +37764,Axel Nordmann,35129,11147,0 +37765,Dr. Gérard Rinaldi,268212,15395,6 +37766,Jimmy,43754,11160,3 +37767,George Andrews,147722,103620,14 +37768,Etzel,42512,77,3 +37769,French partisan,50849,98774,15 +37770,,125264,1200884,15 +37771,Che-Fang,108535,1308262,19 +37772,Wittol,61430,30847,8 +37773,Desk Sergeant,31899,33362,35 +37774,Visual Effects Supervisor,14543,105108,10 +37775,Sergeant Miller,296523,62645,4 +37776,Ryan Carmichael,16358,17772,1 +37777,Aktor,403130,86966,5 +37778,Abby Graves,34231,118362,5 +37779,Dean Mercer,111582,81934,4 +37780,,8079,55061,23 +37781,Ate Lara,97794,227980,1 +37782,Uncle Kun,375170,1649293,4 +37783,Donaldson (uncredited),43522,128643,79 +37784,Woman at Play,10710,1744987,10 +37785,Herself (The Narrator),39998,21911,3 +37786,Anwar's Grandmother,1164,1681194,38 +37787,Elliot,244268,16428,3 +37788,Skateboarder #2,58467,1305983,24 +37789,Madre de Lena (Lena's Mother),8088,3822,6 +37790,Jane,352327,4726,1 +37791,Hafid,2742,201071,13 +37792,,16843,79343,1 +37793,Gavin,25528,190631,11 +37794,Joan,16151,79711,24 +37795,Happy Hogan,68721,15277,5 +37796,Miss Crail,13580,140147,15 +37797,Taylor,15019,78577,9 +37798,Sally Hirst,46261,54479,2 +37799,Heather,117023,1666252,2 +37800,Mrs. Gloop,118,1293,13 +37801,Valeria Watt,5060,40950,4 +37802,Mickael,27095,96928,0 +37803,Tonks,59678,1161609,11 +37804,Bratwurst Willy,10645,17545,8 +37805,Elizabeth - Smitty's Wife,52859,1671454,29 +37806,le capitaine Sentier,286512,55922,6 +37807,Apo,334394,1496325,3 +37808,The Legionnaire,21840,1737,1 +37809,Captain Bill,54198,150082,1 +37810,Dr. Briscoe,102841,12122,22 +37811,Hans,104376,1327651,13 +37812,Camper (uncredited),251227,1286544,27 +37813,Sword twin/Leung's student,64316,119446,13 +37814,TV Thompson,43049,94550,3 +37815,Simon Sachs,133183,1096776,2 +37816,Eremia,317723,1413102,2 +37817,Maureen Gray,73772,18022,0 +37818,Faro,43250,4078,6 +37819,Patrolman Johnson (as Pat Collins),27777,98972,3 +37820,,47448,71185,1 +37821,Stacey Chung,331313,1465325,8 +37822,,243473,1038797,2 +37823,Prison Inmate,150712,78773,28 +37824,Jan,199374,559138,4 +37825,Ertaozi,150223,1275186,8 +37826,Anxious Troll Child / Keith (voice),136799,1784328,42 +37827,Drunk Girl in Yugo,12182,71551,15 +37828,Artemio,96106,1281109,27 +37829,Grizzly Judge (voice),126319,2954,34 +37830,Himself,15725,1006760,9 +37831,Carl Schwartzmiller,61908,9596,1 +37832,Mike Williams,296524,13240,0 +37833,Radio show writer Song,116488,231477,7 +37834,Diner Waitress,192210,66556,8 +37835,Henry,157847,1558444,16 +37836,Tanya Sellers,186759,88029,6 +37837,Tachibana - Scientist / Space Chief,31254,2537,0 +37838,O'Reilly,43812,1673802,26 +37839,Grocery Man,10900,67705,5 +37840,Ambassador Li Sung Park,10005,41561,11 +37841,Unfrozen Republican,280617,1851691,25 +37842,"Yeong-ho Kim, assistant inspector",10103,63446,9 +37843,Casino Cocktail Waitress,268920,1754456,69 +37844,,104251,236098,5 +37845,Jimmy / Johnny,273404,60096,7 +37846,Eric Gatley,21619,17402,15 +37847,,200117,24424,1 +37848,Moira Neal,286971,111662,8 +37849,Broadway Stagehand (as L.B. Straten),26670,95979,12 +37850,,69310,937809,21 +37851,Ashley,85230,1407682,9 +37852,Atlas the Monster,166904,30112,3 +37853,Mamie,358980,1194227,6 +37854,Tom Alexander,348544,1221478,3 +37855,Hope Henry,18044,27775,4 +37856,Detective Harrison (uncredited),28681,222885,6 +37857,David Chamberlain,301729,144501,0 +37858,Jimmy's Bandmate 1,85350,1467995,69 +37859,,22752,44833,15 +37860,Convience Store Proprietor,773,17416,14 +37861,Piera da bambina,81787,1862816,14 +37862,TV Crewman (uncredited),264644,1517743,23 +37863,Major Lanoe Hawker VC,84285,13328,3 +37864,Barbara,23512,77561,6 +37865,Steve,45013,154748,26 +37866,Guest at Wedding Reception,124115,130092,36 +37867,Old Apocalypse,246655,1796387,24 +37868,Whitey Whitehouse,268350,32437,4 +37869,Ben,3037,8206,2 +37870,Matt,49787,78572,2 +37871,Duck (voice),217057,2205,4 +37872,Minister,10594,63860,14 +37873,Cyril Cluett,1773,2927,4 +37874,Mickey,32609,6449,0 +37875,Catherine Hardy,236324,60715,1 +37876,Victor Scott,47739,13566,0 +37877,William Bishop,131737,103351,8 +37878,Mayor of Zurich,246860,41205,9 +37879,Bobby,154371,213775,3 +37880,Cop,31411,80547,4 +37881,Jesse,369033,60846,7 +37882,Michel,152989,1179883,17 +37883,Frieda,5393,10205,16 +37884,Tonino,173847,147156,9 +37885,Jackie,312497,1378866,12 +37886,Student,170517,1240845,33 +37887,Valerie,55433,9016,1 +37888,Abir Mashrawi,128154,1293283,6 +37889,Tom,78362,929109,12 +37890,Dr. David Loring,94480,1162,0 +37891,Julio,351809,1179659,13 +37892,Henchman on Ship (uncredited),90465,84229,16 +37893,Deepak Kumar,46403,35747,1 +37894,Fotografo,74126,33732,9 +37895,Man in Train Station,17258,14784,28 +37896,Himself,9951,60827,1 +37897,De Prada,116312,1024359,7 +37898,Tooth Fairy,55694,7085,13 +37899,Kaylee,16320,72092,5 +37900,,27276,551824,8 +37901,Narrator (voice),24238,22,3 +37902,Kathy,65066,161769,4 +37903,Boy Quarterback,43812,1241532,27 +37904,,206157,32597,3 +37905,James F. Lee - Skipper's Attorney (uncredited),102144,113654,11 +37906,Bob Dalton,38807,10162,14 +37907,Priestess,71147,1519929,9 +37908,Jock Kid,68684,1180945,32 +37909,Parson,3072,120613,14 +37910,Abuelo enfermo (uncredited),122019,1458464,24 +37911,The dismissed employee,169364,1154882,6 +37912,Annie,38415,120828,4 +37913,Dennis,45875,78412,20 +37914,Zhang,40029,119649,6 +37915,Alex 2 years,72875,568025,14 +37916,Werm,313922,1194967,13 +37917,Clare Hitchens,312831,81682,1 +37918,Bianca,335051,1039669,4 +37919,Florian Sand,257831,3855,1 +37920,Texan,21948,40185,3 +37921,3. Soccer Fan,9252,1295374,13 +37922,,202984,128550,11 +37923,Herold Vikramsinghe,40998,89153,5 +37924,Kitty,78507,590767,3 +37925,McKenna Brooks,119893,1049742,1 +37926,Cheerleader,68684,198610,31 +37927,Kerry O'Shea,51947,18666,2 +37928,Melinda,337789,1243844,9 +37929,Seaman 1st Class - Bridge,17744,545351,9 +37930,Little Tyson,213755,93665,11 +37931,Black Pearl Pirate,58,1254626,29 +37932,Kate,11509,133581,31 +37933,Ezra,11509,51546,28 +37934,"William ""Bill"" Boss",94365,23721,0 +37935,Trent,33563,81316,4 +37936,Mel Meh (voice),378236,3214,4 +37937,Suzanne Offer,1950,23959,3 +37938,Maty Shete,150223,1870835,22 +37939,Mohammed,14078,76330,2 +37940,Virginia Hanson,43256,7303,2 +37941,Marc,28739,101808,4 +37942,Öster,128946,145693,7 +37943,Lieutenand Coutard,82501,1125111,12 +37944,Random Cowboy (uncredited),188161,10859,43 +37945,Sheriff Nolan,199155,119381,7 +37946,Ballet,43987,1257594,11 +37947,Makarand (Makya),304134,938568,1 +37948,Adrián,20221,1169432,4 +37949,Gill (voice),127380,5293,21 +37950,Carol,22051,59543,12 +37951,"Murray Trevor, Time-Traveling Tourist",7837,2320,4 +37952,Gregg,381073,105648,3 +37953,Scientist / His Shadow,65131,128285,0 +37954,"la princesse ""Peau d'âne""",5590,50,0 +37955,Herself,14108,1712689,8 +37956,Mr Griffin Jones,149926,1230621,9 +37957,Caitlin,335970,1718157,61 +37958,Court Reporter,339994,1481192,37 +37959,Florence 'Flo' Becker,43119,98162,1 +37960,Bartender,8270,54216,20 +37961,Hassim,373247,1422536,1 +37962,Valencia Merble Pilgrim,24559,91962,3 +37963,Jack Bruno,13836,18918,0 +37964,Bange Chauffeur,138502,1108980,10 +37965,Hausmeister,74103,571186,5 +37966,Steven Schats,26486,4756,0 +37967,Basil,10604,27554,1 +37968,Avvocato di Cetto,161545,129069,2 +37969,D'ooo'n,320910,581072,5 +37970,Michael,44119,32458,4 +37971,Gino Carella,59704,229667,11 +37972,Prison Skin Head,354979,1636773,28 +37973,Nick,139998,123515,0 +37974,Maurice Horton,34151,10983,2 +37975,Angelina,84097,13965,4 +37976,Bertrand,186991,51112,8 +37977,Chicken Wing,286709,1408147,7 +37978,un agente,56804,1030690,25 +37979,Jack Rusoe / Alex Rover,10488,17276,2 +37980,Himself,430156,42118,7 +37981,Graf Konrad,374319,1555462,2 +37982,Dr. Emil Balan,334074,16407,6 +37983,Tung,25074,44922,6 +37984,Himself,15258,1224212,88 +37985,Nick Castle,791,11824,0 +37986,Fr. Christennsen,10119,63768,15 +37987,,55608,237577,3 +37988,Bridge Game Onlooker,179066,121327,44 +37989,Tom Rawlings,54242,34324,6 +37990,Engineer,43829,124554,37 +37991,Narrator / Chief of State / Judges / Bailiff (voice),36751,16417,5 +37992,Ralf,130739,58555,20 +37993,Manili,9084,57322,5 +37994,Shuffle,99909,96240,14 +37995,Marie,12453,72286,3 +37996,Arbeiter,12206,31209,22 +37997,Jean-Claude,64934,64751,1 +37998,Moll,36247,551591,0 +37999,Matt Edwards,132939,138377,7 +38000,JVC Trombonist (uncredited),244786,1503857,49 +38001,Corporal,60488,111464,6 +38002,Aladeen's Mother,76493,571570,6 +38003,Lorraine de Grissac,127812,95314,1 +38004,Michael,14642,26852,1 +38005,David Goliath,87060,98568,0 +38006,Godfrey Hanson,54801,113,0 +38007,Prince of Wales,54406,57461,5 +38008,Deva,20296,85969,3 +38009,Alejandra,126315,72130,0 +38010,Wang Xia,40029,1580816,10 +38011,Wong Shu Chor / Fat Ball,25655,25251,7 +38012,Moving Man,120357,941240,12 +38013,Katute,44593,76539,7 +38014,Juanita,46658,101990,7 +38015,Additional Voice (voice),10193,117081,32 +38016,Talk Show Host,280617,1522152,16 +38017,Preacher,323675,174837,31 +38018,Nora Craig,47745,30952,1 +38019,Fat Lady,57201,114977,39 +38020,Simon,14476,26862,8 +38021,Une amie d'Anna,55853,551799,20 +38022,Fleetwood Apartments Desk Clerk,228647,29579,26 +38023,Manager of Hotel,169355,30719,8 +38024,Nude,5748,45317,11 +38025,Francesco,62713,225255,0 +38026,Jacques Chazot,14555,77007,1 +38027,Shiv's Chacha,280690,52768,13 +38028,Linda Gilman,107593,3380,0 +38029,Nick Harper,80012,76546,0 +38030,Dr. Quinoness,27138,29579,5 +38031,Ms. Readle,70772,98700,4 +38032,Eric,227964,95149,3 +38033,La patronne du bar,44522,145075,7 +38034,Chris,84340,92782,4 +38035,Patrick,219247,1904,1 +38036,Policía (uncredited),41298,1090678,24 +38037,Cabbie,8010,53589,5 +38038,Alea,222388,63372,1 +38039,John Ramsey / John Ramsey Auditionee / Himself,430826,1891507,28 +38040,River God,463800,1840900,6 +38041,Joe,43155,1050306,7 +38042,Herb,301228,1001702,8 +38043,Tong Daqing,295273,1031246,5 +38044,George Lusk,24486,10505,13 +38045,Gloria,11205,1372948,13 +38046,Jim,270851,1269198,10 +38047,Modred,19957,67449,4 +38048,Candace,140222,20374,1 +38049,Daniel Fisher,74549,1820119,10 +38050,,113119,1073055,5 +38051,Iron Man,14611,31536,3 +38052,Miss Chapel: Staff of St. Swithin's,83015,1289750,13 +38053,Yongdosa,435366,1633135,7 +38054,Sherry,99374,10190,3 +38055,Dr. John Aitkin (as Richard Cutting),62033,102829,8 +38056,Zhang Hua,362154,565378,2 +38057,The Hip Salesgirl,58467,42335,18 +38058,Lucille Sturges,90030,103078,4 +38059,Clips from 'Bathing Beauty' & 'Million Dollar Mermaid' etc. (archive footage),33740,129520,66 +38060,Angus,316885,1662448,13 +38061,Jesus,319396,1400029,7 +38062,Mechanic,59726,1185479,13 +38063,,293654,1384684,3 +38064,Maria,414453,41820,4 +38065,Jeannie,99567,1295372,9 +38066,,88491,985078,8 +38067,Le fils de Majid,445,6016,6 +38068,High Priestess #4,37958,231517,24 +38069,Agent,84336,1443861,15 +38070,Gentry,135708,71403,2 +38071,Karim,37645,20532,16 +38072,Margaret,226140,61906,13 +38073,The Model,47310,138396,9 +38074,Donovan,41301,11867,2 +38075,Misquamacus,40060,33853,15 +38076,Young Erol,273404,1154244,5 +38077,Burke Ramsey Auditionee / Himself,430826,1891549,58 +38078,Gehbard Himmler (voice),267310,134467,5 +38079,Android,207641,24517,1 +38080,Otto Takkunen,20164,11263,0 +38081,Aunt Nino,76757,1394352,13 +38082,Leo Fairbrother,50364,28485,4 +38083,Миша Бобов,409082,240374,7 +38084,Jamie's Mother,114444,1115625,7 +38085,Himself,9951,1692550,23 +38086,L'ami de Loïc,1254,32659,6 +38087,,386100,53845,12 +38088,Member Of The Press,108723,1446347,30 +38089,Voisine,13739,587464,13 +38090,Hippiemädchen,75969,587208,64 +38091,Parthenon Janitor,32657,1678624,63 +38092,Dr. Lopez,215881,7430,9 +38093,Waiter,54503,563620,10 +38094,,420648,234532,5 +38095,James Donovan,18070,95638,2 +38096,Bernard Dyson,406992,1380492,10 +38097,Owen,136146,59788,4 +38098,Clerk with Glasses,179066,119543,31 +38099,Carl the Mechanic,424600,1704659,14 +38100,Himself,15258,28637,66 +38101,ballerina,81787,1862812,8 +38102,,64454,1111514,14 +38103,Red,340881,2047,6 +38104,,80941,1012321,23 +38105,Special Appearance (Song),56969,110197,2 +38106,Donaka Mark,76544,6384,0 +38107,španělský námořník,41213,213327,9 +38108,Prisoner,246133,1200895,13 +38109,Magdalena Kopp,43434,139161,3 +38110,Dr. Na's wife,116488,1296950,6 +38111,Padre Walker,14531,1459592,8 +38112,,13678,1849645,6 +38113,Kirby (Tiger Kid's manager),75880,590533,6 +38114,Raymond Cobb,339408,17183,3 +38115,Heidrun Ades,75969,4797,27 +38116,Scott,112708,61144,1 +38117,Tour Guide,168616,178614,7 +38118,Bruce Banner / The Hulk,413279,103,2 +38119,Don Carlos,127864,19909,9 +38120,Sully,21431,2878,7 +38121,Cleo,27832,1081614,5 +38122,Gord Oglivey,336890,201074,7 +38123,Bouncer,61644,13592,14 +38124,Gonzalo / Sir Timoteo (voice),83201,76743,6 +38125,Victors vader,319179,55850,6 +38126,Kjell Bjarne,12076,47176,1 +38127,EHC Client,71670,1739859,46 +38128,Livingston,44415,146331,3 +38129,,84774,240326,6 +38130,The Burning Hotels Guitar / Vocals,23367,95381,25 +38131,the young man,148176,545675,0 +38132,Dale,14215,20374,1 +38133,Karl,30307,588095,4 +38134,Madre di Marika,35554,1422557,11 +38135,Telemarketer (uncredited),126127,5738,7 +38136,Loubelle,128856,1089462,4 +38137,Narrator,33127,110166,0 +38138,Secretary,92496,1795195,39 +38139,Homicide Detective Anderson,407448,10694,26 +38140,George Smith,68750,155282,0 +38141,Kenya,340275,1531606,45 +38142,Dianne,390526,52442,0 +38143,Dog (voice),72215,86753,0 +38144,Drug Dealer,340275,1517851,58 +38145,Kate,75576,31167,1 +38146,Ng Mui,25645,1624,6 +38147,Record Store Owner,2976,1752745,101 +38148,,252059,2828,10 +38149,Barfly,50318,28853,21 +38150,Himself,253337,1231859,27 +38151,Etsuko Shiraishi,62472,235378,1 +38152,Beau Dorn,35381,36067,12 +38153,Sir Gavin Gore,81687,42574,11 +38154,Mrs. Schuyler,286521,657997,12 +38155,Mrs. Tietgens,94468,153263,10 +38156,Sandy,3580,85101,6 +38157,Male nurse,10097,63363,10 +38158,Andrew,44641,25503,5 +38159,Thane,347096,107793,3 +38160,Xenia,81409,237623,3 +38161,Sheriff Pippin,104297,4073,4 +38162,Bass Sax player,128669,1143201,13 +38163,Frederik,343878,1032397,2 +38164,Jerry - Bartender,377170,1422381,33 +38165,La cassiera,43231,151118,5 +38166,Lorna,16022,15851,2 +38167,Julie,383064,1578521,3 +38168,Molly Cogan,34734,156580,1 +38169,Fighter Number 20,110552,1206367,5 +38170,Peppino,120922,281143,19 +38171,,155605,76977,0 +38172,"Brigida, amica di Angela",35554,1854444,15 +38173,,238307,47948,2 +38174,Czarist Officer,371741,1569925,16 +38175,La concierge,181456,25181,6 +38176,'Dum-Dum',14589,30239,17 +38177,Cool Lady,286521,18273,17 +38178,Nicola Corbo,285858,535181,3 +38179,Laurie,20,99,1 +38180,Stven Kepkie,29896,1228325,6 +38181,Georges Bouchet,127812,93123,5 +38182,Bear,60977,173995,6 +38183,Atsushi Otani,37213,117062,1 +38184,Vitória,30127,932970,2 +38185,Mike,29136,17638,5 +38186,Liu Hua,24189,238776,2 +38187,Sheriff Gene Freak,26914,932327,10 +38188,Jon,356842,18616,1 +38189,Paul,16022,167720,28 +38190,"François, le chauffeur",75066,24687,3 +38191,Herself (archive footage),318224,40279,12 +38192,Jon Arteaga,33273,942128,9 +38193,Alexandre's Father,57307,20285,5 +38194,Gerrett,150201,192539,2 +38195,Herself - Storyteller,128216,1192319,15 +38196,Stavroguine,83229,257772,14 +38197,"Himself, others",282268,383,5 +38198,Spring Heeled Jack,30492,31381,11 +38199,Demolition Guy,167810,1793173,17 +38200,Orville Dunworth,20842,565518,10 +38201,Iván,391618,1354964,4 +38202,Baolam (uncredited),80168,130496,17 +38203,Enrico Berardi,199985,32313,1 +38204,Mrs. O'Toole - Cleaning Lady (uncredited),33112,2934,19 +38205,Munnabhai,20359,35819,5 +38206,mlynář,82716,213453,5 +38207,Mrs. Elsa Vanderlip,214909,3367,8 +38208,,69310,1018707,22 +38209,Terence Aloysius 'Slip' Mahoney,156603,89989,0 +38210,Scout Doctor,315855,1592943,50 +38211,"Charles, the Butler",141955,92042,9 +38212,Professeur de gymnastique,61991,35590,11 +38213,PT Instructor,44087,946425,28 +38214,Roi Gristle (voice),136799,8930,17 +38215,Jenny Matrix,10999,24967,6 +38216,Eduardo,29286,1547,3 +38217,Leo Finnegan,99909,89989,3 +38218,Girl In Danny's Class,19587,1337445,8 +38219,Tommy 3 Years Old,274479,1658348,30 +38220,MNU Medical Student,17654,222288,29 +38221,le comte,63876,9762,2 +38222,Sister Cuckoo,53168,57831,1 +38223,Master Wu,32233,224054,8 +38224,le faux livreur,12089,19647,14 +38225,Braulio,264729,85559,1 +38226,JIm,185460,65769,1 +38227,,292830,1246538,5 +38228,Mrs. Malaga,15013,77690,20 +38229,La vieille,1899,20962,6 +38230,Ravi Patel ( 13/ 14 years),87827,1133848,7 +38231,Forensics Technician,5289,153853,21 +38232,Sonya Kirk,115565,9782,4 +38233,Dr. David Dunbar,41591,66884,3 +38234,Frederic Osborne Junior,53798,102687,2 +38235,Jackie,40807,211540,14 +38236,Walter O'Brien,32235,4512,0 +38237,Blaine,23048,60898,6 +38238,,229134,544210,11 +38239,Gina Filotti,11972,71139,2 +38240,Soldier at Tomb / Niche Soldier,335778,1634060,25 +38241,Frank Wilson,87612,4110,0 +38242,Artemiz,460135,81668,14 +38243,,423093,1128383,3 +38244,Luc Sauvageau,271826,559582,0 +38245,Young Soldier,152737,1637653,18 +38246,General Bonesapart (voice),3933,1295,12 +38247,Andrew Campbell,18283,83783,6 +38248,Sophie,2029,1866708,10 +38249,Mignonne Corbo,285858,95950,4 +38250,,15934,1636954,11 +38251,Mortimer Bunny,193959,1127305,0 +38252,Police Lieutenant Gates,84720,89527,5 +38253,Herself,60063,230427,0 +38254,Clive Mortimer,83119,115308,3 +38255,Cade Lavelle,24810,62692,1 +38256,Adrian Collins,80545,16702,8 +38257,Isobel,43812,33035,76 +38258,Jerry Macy,357130,18582,2 +38259,"Glumov 2, Golutvin",47703,9607,0 +38260,Tattooed Man,306966,1657309,7 +38261,Ben,26882,96529,0 +38262,Toshiba,68684,1074677,12 +38263,Goodtime Eddie Filth,131799,69951,4 +38264,Harry Calhoun,108222,14028,5 +38265,Nurse Maggie,17457,1615010,15 +38266,Justiina Puupää,156917,232311,2 +38267,Steven Levitt,69266,157169,3 +38268,Amy,339342,1331886,4 +38269,Mutter,1539,17374,3 +38270,Frat Boy #3,189,1129413,26 +38271,,26301,65471,3 +38272,Elia,327383,16971,0 +38273,Chef at Marquis Hotel (uncredited),22584,86830,28 +38274,Ethyl Norcrosse,51303,1507,3 +38275,Penelope,68184,118362,3 +38276,Orderly,265208,84756,24 +38277,Jamie's Father,110115,1115624,5 +38278,Megan,5123,1558226,16 +38279,Pete McKell,13022,15424,1 +38280,Rufus Follet,358199,275862,10 +38281,Dróżnik,31856,112416,7 +38282,Eleonora,58400,129445,4 +38283,Gloria Huber,231540,54533,2 +38284,King Sharaman,9543,32556,6 +38285,мальчик,49653,1386473,0 +38286,Mrs. Buckland,29805,1458832,28 +38287,Molesta Davis,226968,175081,8 +38288,Griffin Byrne,62838,62856,16 +38289,Rita Conway,229221,32436,7 +38290,Vera,228970,156395,33 +38291,Marchese di Dolmancé,64827,239899,1 +38292,La femme âgée,21348,1838956,19 +38293,Mike - DEVGRU,97630,450,26 +38294,Padre Cricco,103218,27208,6 +38295,Ranieri di Panico,61217,27643,3 +38296,Ballochet,43000,24903,2 +38297,Mrs. McMichael,201085,25834,13 +38298,Sister Ann,90616,938616,2 +38299,Finn,10075,100995,19 +38300,Mitsuko,340176,1257289,0 +38301,Mada Müller,511,7111,5 +38302,Rachel Keller,10320,3489,0 +38303,Алиса,47812,139456,2 +38304,Vera,88390,179193,10 +38305,Siren,44773,543791,14 +38306,Sofia Ramirez,149910,1194990,27 +38307,Deputy,262841,134612,16 +38308,Director Orson Krennic,330459,77335,2 +38309,Himself,125736,1271004,13 +38310,Monsieur Walter,118536,94198,5 +38311,Mother Stuart,128841,40663,8 +38312,Tiffany,364690,1190034,12 +38313,Howard,28851,102183,2 +38314,Young Aurora,93858,588809,7 +38315,Alice Dainard,37686,18050,1 +38316,,70966,232861,7 +38317,Emri,323968,1148262,2 +38318,Jungle Officer Bashir Khan,20132,85696,8 +38319,Arnold Davies,214753,137928,5 +38320,Lucille Briggs,13911,97980,6 +38321,Klasse 3c,61035,1446109,35 +38322,Tony (as Georges Rigas),175334,104806,5 +38323,Richard Lane (archive footage),74314,30686,14 +38324,Martins,12422,6304,6 +38325,,12622,555202,25 +38326,"Shikibu Heinai (segment ""Chawan no naka"")",30959,140106,65 +38327,Cleaver,18755,83531,1 +38328,Predikant,159514,211292,16 +38329,Achille Cotone,48935,55912,0 +38330,,140231,52971,2 +38331,,208579,1288425,6 +38332,Dumka,257454,127020,8 +38333,Penny Weston,198600,82405,0 +38334,Herself,394668,1611360,4 +38335,Jackie Timlin,1420,17779,9 +38336,Tenazas,251555,234532,5 +38337,Sedna (voice),233423,1294340,15 +38338,Viktor,64483,93536,0 +38339,Gina Jackson,101669,52507,15 +38340,,355111,582117,6 +38341,1st Tugman,47412,138893,11 +38342,Sara,199415,107041,5 +38343,Prisoner,117550,1111992,7 +38344,Baek Chi,285213,1257900,12 +38345,Ms. Hanney (uncredited),43546,3346,21 +38346,Óli einbúi,72596,1114539,24 +38347,An Indian Woman,37368,31876,1 +38348,Maresciallo,325690,129069,11 +38349,Antonia Minor,206514,250,6 +38350,Margit Kogler,82941,928985,1 +38351,Le préfet Maynott (voice),77459,33161,3 +38352,Hotel Maid,14217,20329,11 +38353,,86985,1423271,18 +38354,Ann Lake,1942,7504,1 +38355,Chris,80219,200584,4 +38356,Tony Zale (uncredited),28000,1298358,87 +38357,Ingrid,98586,106817,2 +38358,Kyle,447758,1482026,24 +38359,Daisy,15810,93110,12 +38360,-,29352,47460,9 +38361,Young Father,10389,551625,38 +38362,Sumitra Thakur,31364,120430,3 +38363,David,138502,591852,2 +38364,Mort,189,22227,10 +38365,Il colonnello Chamonis,183073,104064,5 +38366,Gerarca Barbagli,48250,134219,0 +38367,Frank Dunlap,44626,3339,6 +38368,Stella,47778,29902,0 +38369,Nan,40127,1331690,1 +38370,American MP,8429,54938,9 +38371,Clarence Mumford,34518,77257,1 +38372,Aurora,98586,1074191,3 +38373,Charlie Baker,11007,11824,3 +38374,P. Shillitoe (uncredited),43369,28482,11 +38375,Aunt Estelle,426670,1078610,7 +38376,Tony,265208,1455749,18 +38377,Mayor Harvey King,30054,148742,11 +38378,Ingrid,13092,177,14 +38379,Lenny,30149,132504,4 +38380,Young Isak,82448,928010,6 +38381,Frank,91333,168458,15 +38382,Maureen,61644,1333736,6 +38383,Artur,14558,118762,0 +38384,Barber #1,256962,1819137,68 +38385,Young German Soldier #2,294690,1390553,33 +38386,Maria,296344,1312677,4 +38387,First Lady,102841,18251,9 +38388,Mr. Range,45132,932102,9 +38389,Sentinel Louise (voice),109451,587697,10 +38390,Shulem,285848,1437630,3 +38391,Georgie Avery,80264,12251,5 +38392,Nice Lady Teller,339403,1460711,26 +38393,Nellie Gooding,88012,87420,6 +38394,"John Prince, Jr.",113175,11866,5 +38395,Drivaldi,62397,19586,7 +38396,Flight Sergeant Kirk Edwards,55236,8729,3 +38397,Sarah,253258,25908,9 +38398,cosmetics employee,189151,129701,7 +38399,Pam Dawber,212934,1215797,2 +38400,Elliot,11248,17356,14 +38401,Kit Carson,53931,3644,3 +38402,Peter,172785,205459,2 +38403,Viki Falk,13616,30436,0 +38404,Dr. Glenn Richie,13173,77089,4 +38405,Waiter (uncredited),95504,86370,17 +38406,Dancer,198600,1859762,14 +38407,Gypsy Vale,33343,10131,0 +38408,Jones,344906,1478018,14 +38409,Mrs. Johnson,31067,24293,13 +38410,Pee Wee Ellis,239566,237061,19 +38411,Sadie,339145,1323810,4 +38412,Henry 'Razor' Sharp,64807,16483,1 +38413,Mrs. Lange,8270,24357,7 +38414,Mo,90231,1248650,1 +38415,Zoé,224233,278354,1 +38416,Sadie Thompson,44140,33741,0 +38417,Phil,347258,1521612,7 +38418,Dr. Robert Weissman,321039,348,10 +38419,Maid Maggie,43711,1504465,9 +38420,,57809,588039,10 +38421,Shinpei's first wife,125257,1093416,9 +38422,Mom,362057,156342,5 +38423,Mr. Orlandos,42305,24826,8 +38424,Roger,304372,17764,9 +38425,Rammohan Reddy (Indu & Bhagyamati's father),73578,89153,4 +38426,Small Girl,42325,127808,6 +38427,Jewelry Salesman,43385,30530,12 +38428,Vincent,70586,11864,1 +38429,John Wyatt,61985,4165,0 +38430,Dee Dee,1595,104506,7 +38431,král,84030,55732,1 +38432,Nick Mossman,376660,1077775,6 +38433,Gábor,158942,1036793,1 +38434,Nick West,20919,67206,0 +38435,Dufresne,242683,2435,1 +38436,Marcus Weston,44945,206505,23 +38437,Randy,85350,1467529,11 +38438,June Goth,34650,30124,0 +38439,Sayla Mass (Artesia Som Daikun) / Kikka,39230,549557,3 +38440,Rip,109213,1307173,5 +38441,Yong-gap,285213,578838,10 +38442,Maj. Howard,63333,99346,6 +38443,Extra (uncredited),3059,1349415,61 +38444,Glynnis Pederson,283384,131009,22 +38445,,104945,12773,4 +38446,Joe Brady,94251,128641,20 +38447,Trailer voice (uncredited),51800,1338712,16 +38448,Father Janson / Daniel Grayham,30996,98180,2 +38449,Gerzek Hamdi,123592,1078372,3 +38450,Richard Thorncroft,381518,98104,0 +38451,Jacob's Friend #1,289712,79498,12 +38452,Marito della Divina Madre,110447,78538,6 +38453,Taichiro Saiki,88271,213511,3 +38454,Hanukkah Party Guest,356752,1841528,51 +38455,Stan's Son,27432,143441,5 +38456,Carly,13596,64341,13 +38457,Gene Lombardo,96132,27196,7 +38458,French TV Reporter,127585,1691173,55 +38459,Gallery Visitor,245700,1247601,65 +38460,Ross Tucker,49514,80242,8 +38461,Dr. Cowans,57680,1795180,17 +38462,Cheol-gu,1416,16965,3 +38463,Steve Huberbrecht,152737,20212,6 +38464,Emma Wilder,2267,23418,1 +38465,Teacher,2976,1423376,17 +38466,,31275,1853892,18 +38467,Corpse Attacking Julie (uncredited),82654,229561,29 +38468,Mr. Snoddy,53524,30706,5 +38469,Jeff Davis,28325,100433,4 +38470,Fah Lo See,3484,13577,4 +38471,Heinz Burt,26796,30710,6 +38472,Naczelnik,10754,66465,1 +38473,Gordy,82684,928572,12 +38474,Sigismondo Castromediano,56853,67144,12 +38475,Mark,9935,137391,4 +38476,Dabiri,43761,931289,1 +38477,David Barnes,46169,87575,5 +38478,Skye,388243,1420663,4 +38479,,60316,551679,5 +38480,Scooby-Doo (voice),11024,58271,8 +38481,,347106,64975,3 +38482,Jeff Adams (voice),123025,43125,5 +38483,Roger Alison (as Michael Branden),29236,103367,7 +38484,Grr,64961,4968,2 +38485,Daniela Ramírez,84354,141629,0 +38486,Alex,98557,4996,10 +38487,Zarko,382873,70874,2 +38488,District Attorney,70368,1551623,5 +38489,Miss Winterton,44087,12728,9 +38490,Struts,325189,1426658,11 +38491,Nick Girard,86023,236043,3 +38492,Adam,23048,3036,0 +38493,,1838,1433877,23 +38494,Steve,14159,125199,6 +38495,Grandpa Gohan,14164,9462,6 +38496,Coach,401164,1817400,3 +38497,Aunt Dorothy Jo,426670,1548305,24 +38498,Mr. Lefroy,2977,29239,12 +38499,Garcia,271404,16429,8 +38500,Marine,55853,1350,7 +38501,Saida,152653,4813,2 +38502,Tom Cosgrove,85411,33192,4 +38503,Policeman,49712,93722,33 +38504,Sister Catherine,205939,1324748,4 +38505,Teddy,293452,57428,6 +38506,Harry,245891,61011,21 +38507,Agent Hymes,9843,4253,3 +38508,Morgan,245175,124501,0 +38509,Joan,42532,66223,2 +38510,Umapada,35790,1211319,3 +38511,Michael Age 15,60457,189185,6 +38512,Mandi DuPont,51481,144288,1 +38513,Private Jeter,15616,60252,8 +38514,Plague Corpse,82654,1272480,21 +38515,Mann,75578,78802,12 +38516,Elliot Graham,43741,5658,0 +38517,Mitchell Wate (uncredited),109491,129868,32 +38518,Anthony D'Angelo,110148,185085,8 +38519,Francisco Santamaria,77165,30900,6 +38520,Reporter,56558,233321,30 +38521,Club Patron (uncredited),72105,1593122,49 +38522,Pike,131194,8349,0 +38523,Merlin,336149,1455180,1 +38524,Roelf Pool,98536,20364,1 +38525,Anti-Communist Federation member,11658,138531,40 +38526,Noelia,331354,59134,5 +38527,Luis,1164,1681204,45 +38528,Photographer on Crane (uncredited),80032,44998,11 +38529,King Eurich,47956,3754,2 +38530,guest at night club (Mann im Salon),29043,2897,6 +38531,Uffz. Krüger,10841,9927,3 +38532,Robert Lester,88320,149030,6 +38533,Jefferson,22396,1625347,18 +38534,Lord Cutler Beckett,285,2441,9 +38535,Pastor Ray,252680,78040,8 +38536,Chrispin,381691,1470729,3 +38537,Headmaster Lebanon,49220,590860,11 +38538,,38164,147152,9 +38539,Babe (Oliver Hardy),126832,79934,1 +38540,Alf Reynolds,340101,86467,25 +38541,Moise,52454,18297,71 +38542,Zo,14843,2506,5 +38543,Luca Gruenewald,168676,920,3 +38544,Pill Box,25953,94400,3 +38545,le père,76268,45152,1 +38546,Jamal,218688,520561,4 +38547,Kikujiros Frau,4291,13255,2 +38548,Alan,13196,21179,6 +38549,Pierce,253258,172046,6 +38550,,262987,225483,1 +38551,Joanne,43158,129294,4 +38552,Marco,35025,14610,4 +38553,Himself (archive footage),393367,1660173,0 +38554,Dean Phineas Armour,40916,30002,7 +38555,William Burke,52203,87027,2 +38556,Tin Ming's girlfriend,11636,1627402,28 +38557,Young Dito,8194,10959,0 +38558,Vera Franklin,108282,69054,13 +38559,Themselves,44657,1627035,2 +38560,Gemma Hargrove,44773,543782,3 +38561,Winston Churchill,399790,1248,0 +38562,Tub Family Child,99861,1760893,59 +38563,C,152797,933056,0 +38564,Cafeteria Guy,75090,52860,5 +38565,Vinayak Mane,20623,53676,1 +38566,Jane,39072,7489,3 +38567,Reme,254869,3482,10 +38568,Mechanic,19912,65699,5 +38569,Anand Banerjee,19625,85973,8 +38570,Lt. Mary Jane McCoy,247691,13026,3 +38571,Harry Warden,14435,1344290,15 +38572,Frank,43228,194092,8 +38573,Mr. Right,333385,6807,0 +38574,Man on Phone,5123,1569582,47 +38575,Mutter,266044,38391,15 +38576,Edward Grant,151911,3364,6 +38577,Dr. Herdal,268536,19511,4 +38578,Truck Driver #1,14552,1112877,13 +38579,Ethan Miller,50875,26852,4 +38580,Shuichi Hattori,20530,131015,5 +38581,Bulma Briefs,38594,122193,19 +38582,Groom,17111,1629443,14 +38583,Harmon,84655,13786,5 +38584,Le psychiatre,1254,19361,4 +38585,Brian,65599,543733,4 +38586,J-21,90395,255745,2 +38587,Barnaby Tucker,43141,40173,4 +38588,,106623,99482,3 +38589,Gunnar,308174,37246,6 +38590,Jubilation Lee / Jubilee,246655,1452046,14 +38591,Doudpu,79034,585619,5 +38592,Clark,87311,589182,0 +38593,Young Mallorie,416256,1457490,7 +38594,,20646,1253183,18 +38595,Stelter,2355,783,9 +38596,Eddie,4365,37599,5 +38597,Hades Dai,263341,58319,2 +38598,L'infirmière,55836,1151713,6 +38599,Tahara Khan,1404,16904,4 +38600,Barnabus Pells,61541,72059,2 +38601,Cristo,83481,1114060,4 +38602,Guilou,27019,548699,7 +38603,Maybelle's Store Dancer,2976,1752345,70 +38604,Janet Liu Mei Chun,25655,1173600,6 +38605,portinaia,38286,569993,9 +38606,Laura,65496,54228,0 +38607,Corinne,55853,237867,8 +38608,Lotte,23289,40424,8 +38609,Maybelle's Store Dancer,2976,124342,71 +38610,Adrian Ballan,32540,15739,2 +38611,Henchman Spike,53781,980050,7 +38612,Talia,19350,87736,16 +38613,Alice Walker,28668,8535,1 +38614,une cliente,221667,5077,9 +38615,Yashida Security Guard,76170,1394433,21 +38616,,77185,235876,8 +38617,Trent Parks,57326,142636,4 +38618,Marvin Blake,43075,13789,0 +38619,Cat (voice),279598,99291,5 +38620,Polly (uncredited),179818,148513,11 +38621,Juli,73099,568081,1 +38622,Georgette,363439,87445,3 +38623,Harry Heck,7220,53199,12 +38624,Camper (uncredited),251227,1286545,29 +38625,Barabas,56344,223972,6 +38626,Robey Weston,64084,1782846,4 +38627,Helena Moilanen,186292,1841673,5 +38628,L'Ispettore,247218,129649,5 +38629,Hu Shi,69310,64436,3 +38630,Elder Kent,159638,209087,7 +38631,,118257,53861,6 +38632,Richard Mason,56151,78854,2 +38633,,161299,583510,3 +38634,himself,6575,51861,14 +38635,Miss Tracy,19014,21619,4 +38636,Wade,340187,1194944,0 +38637,Garry,108723,1446335,17 +38638,John,335778,1322236,7 +38639,Rat,51302,7908,0 +38640,Paqui,254869,1423065,7 +38641,Pawn Shop Girl,18189,1226913,7 +38642,Jen as a Child,134238,14870,5 +38643,Peter,73952,6164,1 +38644,Peter,572,7761,6 +38645,Marcus,1539,17370,5 +38646,Victoria Raymond,339527,1450809,9 +38647,Joung Martin,14904,131776,4 +38648,Mrs. Dibble,244201,29953,15 +38649,Komornik,155325,1140804,14 +38650,Mrs. Erickson,6591,5564,7 +38651,,270081,301657,6 +38652,Hersch Lawyer,19850,12646,4 +38653,Rex,41206,125811,13 +38654,Abel Plenkov,43931,107515,9 +38655,Padovan,4580,38170,2 +38656,DJ Manos,382591,1033621,34 +38657,David Collins,13163,3035,0 +38658,Aunt Clara Caine,43385,98966,6 +38659,Secrétaire d'Alex,10795,54168,28 +38660,Bob Grimes,9846,923,5 +38661,Cashier at Reuben's (uncredited),242631,569144,26 +38662,Jintarou Tsuji,35435,555099,12 +38663,Fingerprint Expert,28421,34128,57 +38664,Li's Wife,18665,227804,7 +38665,Andrew 'Andy' Washburn,11045,11669,1 +38666,Himself (uncredited),323675,968922,72 +38667,Tess,456781,209426,8 +38668,Himself,451709,1795141,2 +38669,Adam Rimbauer (6 yrs),16175,79903,9 +38670,,18696,89125,5 +38671,,371741,1569926,20 +38672,Theatre Audience Spectator,131360,1549,17 +38673,Hildur's Father,206390,1188249,3 +38674,Lockhardt,128598,970466,2 +38675,rapinatore del negozio di elettronic,43649,129745,17 +38676,Elderly Woman,6023,1232543,16 +38677,Lieutenant Susan Watson,39276,201217,2 +38678,Elizabeth Davelli,417870,61114,6 +38679,John Stone,83896,154440,3 +38680,Society Reporter,56558,56528,43 +38681,Velicity,231082,87437,3 +38682,Diner Manager,149509,1432102,27 +38683,Roxanne Kowalski,11584,589,1 +38684,Customs Official,9298,1231420,10 +38685,Himself,419192,90424,2 +38686,,41970,8547,8 +38687,Manning,27349,15417,5 +38688,Kenji Endo,39123,81350,14 +38689,Phyllis,5172,23504,11 +38690,Tourist (uncredited),337339,1461332,53 +38691,Dieter,318781,71597,13 +38692,Choy,26687,96014,3 +38693,Winman,100088,119081,6 +38694,,218772,31991,0 +38695,Louise,59726,16901,1 +38696,First Mate,52859,32925,28 +38697,Scientist,424600,1704665,24 +38698,Benji Roberts,48627,103927,12 +38699,Broots,27338,9629,3 +38700,Pretzel,88811,226557,5 +38701,J. B. Marshall,111582,101886,11 +38702,Jenny,244610,1006507,8 +38703,God,79779,975214,5 +38704,Radio Announcer,56558,117026,38 +38705,Lima,70666,571469,17 +38706,Chelsea,76101,520615,10 +38707,Kay Kyser,43172,1024198,0 +38708,Paramedic,253235,1855403,8 +38709,Mackie Messer's Gang Member,42837,590403,11 +38710,Natalia,300596,962249,5 +38711,Isabel Lahiri,163,1922,2 +38712,לוט,43083,95540,1 +38713,Louisa,221240,195544,5 +38714,Butler,43544,76344,12 +38715,Herzog Max,457,6254,4 +38716,Paula,58244,85168,4 +38717,Lead Death Dealer,346672,1781403,22 +38718,Ukrainian Waitress,12182,1528360,18 +38719,J Dog Englewood,340275,1344724,55 +38720,Tailor's assistant,48145,575496,14 +38721,journalist,140032,97257,0 +38722,Hazel,18446,77133,2 +38723,Opera Ghost,156597,126257,24 +38724,Young Boy Soldier,225728,1757668,18 +38725,Adam Masters,30934,107337,6 +38726,Gucci De La Cruz,331962,1706108,19 +38727,Gabriel Higgs,208529,170977,0 +38728,Hassan,89086,1468102,13 +38729,Chong,24189,238777,3 +38730,Montgomery,235092,6599,1 +38731,Terry Flynn,187516,120551,5 +38732,Alex,121824,56542,7 +38733,Roustabout,150712,96258,50 +38734,Chefin Autovermietung,7210,50958,8 +38735,Casper,28712,8516,5 +38736,Chief Megissogwon,238985,4074,6 +38737,Rosetta,177104,236563,5 +38738,Rahul's Dadaji,161227,110721,3 +38739,Lavorski,38654,26557,6 +38740,Tuoba Lie's Man,217923,1436267,28 +38741,Lady Margery Alvanley,144613,13992,1 +38742,Tony Eckhardt,46943,38559,0 +38743,Pepe Garcia,5172,8666,9 +38744,Brian Woodale,333352,18325,7 +38745,Hasty Hathaway,110148,3712,9 +38746,Jung Soon,25597,93997,3 +38747,,85377,124402,1 +38748,Nick Holloway,2687,54812,0 +38749,Seacat,325189,1192274,10 +38750,Ian Whitehead,51828,28847,5 +38751,Funeral Attendent,379959,1604111,25 +38752,Philip,64428,38070,2 +38753,Himself (uncredited),4964,17051,32 +38754,Dot (voice),276819,118174,4 +38755,McCarthy (uncredited),61151,22603,17 +38756,Will Burton,23367,5317,2 +38757,Sune Finåker,53689,929657,2 +38758,Lumberjack,113148,1895923,7 +38759,Confederate Veteran Juror,43821,29272,39 +38760,,262522,56152,10 +38761,Man (voice),279598,1336141,2 +38762,Elk Cove: Cop at Hospital,10780,1226376,17 +38763,Aliya,440508,1063494,1 +38764,Dominique,257450,1701873,6 +38765,Mrs. Grace Ferrin,158015,33432,8 +38766,Tommy,336265,1422654,6 +38767,Jenny,171648,105565,0 +38768,Gaje,332354,1042765,2 +38769,Metropolis Citizen,209112,1691940,51 +38770,Gunji,90351,108024,0 +38771,Ramone,307081,1347239,7 +38772,Renat,79234,230715,5 +38773,Man on Plane,85442,42996,18 +38774,Ann Hemple Nicholson,86768,12498,0 +38775,Larry Blair,33117,110135,4 +38776,Eric Sloane,308529,60652,4 +38777,Ed,182349,588,4 +38778,Costel,99861,1264233,27 +38779,Dr. George Gey,424600,163774,37 +38780,Ryan Sommers,8460,43426,0 +38781,Maggie,348631,78837,2 +38782,Master Sergeant,424488,17199,14 +38783,Agata,377158,1095650,0 +38784,The Jockey,9993,4783,1 +38785,Woody (voice),77887,31,3 +38786,Archer,20766,963745,10 +38787,Jillian,172828,19281,10 +38788,Louis XV,68023,12270,4 +38789,Luca,378570,1566501,6 +38790,Sheryl,44690,1484155,12 +38791,,83346,564,0 +38792,Peter Leduq,70864,99520,4 +38793,Dr. Tobin,266433,90682,2 +38794,,12720,1417325,15 +38795,Lt. Andi,28847,102171,6 +38796,Herr 'Schumie' Schuman,43894,34758,5 +38797,Dhnunjay,55283,225315,3 +38798,Technical Director,68721,146329,41 +38799,Jake Edgall,31899,30005,4 +38800,Mr. Jackson,259075,11128,3 +38801,Kerensky,13506,29832,18 +38802,Waiter (uncredited),36634,115992,17 +38803,Sakniss,274325,37430,4 +38804,"Dr. Sampson, the Paleontologist",43093,14016,6 +38805,Burke Ramsey Auditionee / Himself,430826,1891543,52 +38806,Rela,153228,14974,0 +38807,Orestis,47795,150572,2 +38808,John Martense,44265,173952,1 +38809,Fortune teller,121462,1419492,7 +38810,Rico,82495,77928,4 +38811,Anna Bronski,22998,10774,1 +38812,Olavinho,21752,1091460,7 +38813,Maid to Connie Allenbury (uncredited),31773,977583,51 +38814,Husband #2,193893,1381491,36 +38815,Linda,109439,153621,12 +38816,Elliott Templeton,56135,20125,4 +38817,Rose-Beetle Man,44746,18851,8 +38818,Stimme Gottes,2734,11857,55 +38819,Voice Of God,45132,16848,20 +38820,Emily Asher,146243,3126,14 +38821,Special Appearance,308165,237045,5 +38822,Stepan 30 years later,65545,240563,5 +38823,Christmas Son,283445,1720589,20 +38824,Majeed,82430,1060556,7 +38825,Captain,16231,80129,5 +38826,,65614,275667,4 +38827,Ambrose,277688,17348,9 +38828,Lou Cardinal,327749,851784,2 +38829,Marcel,74661,211085,5 +38830,Mason (as Vernon McCallum),94739,940003,6 +38831,Lt. Bill Hobarts,26390,883,9 +38832,Warner Dax,121822,8924,2 +38833,Prinz Leonhard,153717,11950,1 +38834,Dr. Carol Frost,2080,125565,31 +38835,Teddy,14669,3900,9 +38836,Beth,1922,20001,8 +38837,Rusty,32790,54200,13 +38838,Mordo,14830,24362,2 +38839,Madre della Belva Umana,41610,106346,2 +38840,Restaurant Patron (uncredited),330947,1650329,61 +38841,Hans,210052,1193609,2 +38842,Victor,44282,978960,2 +38843,Expert,120528,1072286,0 +38844,Muždeka,284154,88054,12 +38845,Sophie,156,1837,6 +38846,Nymphet,29610,97698,9 +38847,Megan,63360,236982,8 +38848,Guy,257450,1270830,17 +38849,Ida,55370,9765,6 +38850,Partygast,1912,46315,26 +38851,Buford Woodly,62392,15978,2 +38852,Chris,33788,111591,8 +38853,Diner on Train,332079,14455,24 +38854,Lemur (voice),10527,94075,26 +38855,Miss Dennison,133255,1036198,3 +38856,Isabella,53648,35134,2 +38857,Bliss,147106,4130,11 +38858,Bouncer,40990,69614,11 +38859,Charles Bérubé,26566,38526,2 +38860,"Kirsten, stuepike",87654,1477359,27 +38861,Lois Lane (voice),13640,8256,1 +38862,Alpha Creature,20432,236696,7 +38863,CIA Ryan Hutton,145247,232979,21 +38864,,58611,228155,22 +38865,Alberto,391618,27459,2 +38866,Carrie Todd,107262,41251,3 +38867,Herself,71687,17495,5 +38868,Peter (uncredited),329440,1522257,12 +38869,Stevens,156335,1173173,5 +38870,Road Man (uncredited),76203,1070870,78 +38871,Sophia,19548,84822,2 +38872,Man at Club (uncredited),17136,1005347,16 +38873,Erdal,269258,20619,13 +38874,,319513,235806,4 +38875,VIP Club Flirt (uncredited),323675,1769823,73 +38876,Melissa,354979,1636762,12 +38877,Don Ciro,8882,72779,1 +38878,William Ramsbottom,77949,1674642,22 +38879,Sanity Hearting Secretary (uncredited),20644,14287,19 +38880,Szorlok,370687,556275,6 +38881,Val Savage,322,4728,6 +38882,Marcus,11908,35596,2 +38883,a Portuguese Man,316654,1325622,8 +38884,Ron Bell,28452,100854,10 +38885,Demonstration spokesman / Pool house owner,93858,1281664,11 +38886,Maj. Andrew Pearman,19996,85414,1 +38887,Frank,70586,1737862,18 +38888,Tracy,210910,1291701,7 +38889,Himself (uncredited),332979,14991,15 +38890,eversti Oskari Tossavainen,55756,222324,7 +38891,Toni,79743,1169500,0 +38892,Don Surine,3291,17343,17 +38893,Tamiko's older sister,112244,1197736,9 +38894,Guard,294690,63504,22 +38895,Aharon,35856,235132,1 +38896,Dr. Gerd Vorweg,295782,34383,2 +38897,Insurance Salesman,22792,20753,5 +38898,Dr. Norman Solomon,36361,24318,2 +38899,Annie,172847,934990,3 +38900,Ray,75300,537,2 +38901,Xia Luo,362682,1519026,1 +38902,Doctor,32166,1084045,6 +38903,Lily,37254,17832,1 +38904,Tammy - Corny Collins Council,2976,1752322,46 +38905,Gunnar,286873,186396,16 +38906,Maggie,13972,9599,0 +38907,Ros Bailey,341174,55258,13 +38908,Kadri Heller,339944,137561,5 +38909,Träumchen,377847,1087,5 +38910,John Polidori,332283,1452045,8 +38911,Ed,74430,1821542,12 +38912,Janitor,16996,1535,20 +38913,Rev. Templeton,26644,2282,3 +38914,Erin Ulmer,9286,57137,3 +38915,Angela,14476,76944,3 +38916,Sherm,50647,176031,14 +38917,Himself,360283,95874,4 +38918,Alex (uncredited),31773,93500,46 +38919,Sheriff Cooper,384450,1235245,13 +38920,Favorite of the Harem (uncredited),3059,10526,84 +38921,Judith Merrick,2071,21245,2 +38922,Motel Clerk,39219,106506,10 +38923,Cole Younger,42706,55725,2 +38924,Ayda Çetin,315362,1042844,7 +38925,Rascal,18758,127238,10 +38926,Matt,44287,28410,1 +38927,Леонид Филатов,37603,999729,1 +38928,Francine,39413,124467,1 +38929,Herr Karl,28469,2367,0 +38930,Eva,44933,1060591,2 +38931,Dede,52736,82956,10 +38932,Daniel F Somers,40719,4165,0 +38933,Chinaski,52369,5444,3 +38934,Drunken Chun,248376,1622939,13 +38935,Simone Melchior Cousteau,332794,2405,2 +38936,Himself,150049,234339,5 +38937,Larry,82134,78685,12 +38938,,60316,133556,1 +38939,Jean,67018,118980,3 +38940,David,163814,21298,3 +38941,Miss Price,253154,15563,10 +38942,,268618,1061942,4 +38943,Himself,229296,150810,0 +38944,Raymond Stasse,76059,76286,4 +38945,Ruby/Mama Swimmer,339526,1578612,11 +38946,Vice President Rodriguez,68721,15860,13 +38947,,295884,1427312,2 +38948,Sam Perkins,11643,8231,0 +38949,Dr. Vincent,209244,52995,26 +38950,Young Peter,107985,1200852,11 +38951,Sid Moore,121354,4966,2 +38952,Father,14357,92645,2 +38953,The Interrogator,1116,1242809,60 +38954,Rachel,198277,1423837,21 +38955,Bartly Mulholland,43896,3341,7 +38956,Vigile Urbano,379873,128415,28 +38957,Chick Byrd,77860,67676,0 +38958,Judite,49974,536709,3 +38959,Melissa,443319,152355,2 +38960,Pretorius,264036,1308675,1 +38961,Mutant Child,263115,1821495,75 +38962,Richard DeTamble,24420,3229,3 +38963,MC Kiba (Susumu Kibayashi),22025,1812212,9 +38964,Michael,25953,96605,20 +38965,Hippo,43281,23388,0 +38966,Old Man,9953,60883,14 +38967,"Elle-même - sa femme, 70 ans",8930,1192632,2 +38968,Sándor,436343,225932,3 +38969,William J. Tadlock Jr.,42703,158489,20 +38970,Jackie Leeds,91961,30006,4 +38971,Newspaper Editor,43833,3673,28 +38972,Angelique Collins,71945,117627,3 +38973,young Jane,7353,17265,5 +38974,Marc (gardener),44502,1194754,5 +38975,Young Wife,81660,205030,7 +38976,Nurse Nic,91070,928698,17 +38977,Prisoner #1,17940,1293719,11 +38978,Moustached captain,65123,1190204,8 +38979,Zugabfertiger,277968,1898508,44 +38980,Charles Becker,13336,5274,7 +38981,Inge,203539,52635,1 +38982,Aurelio Rampoli,37645,35896,4 +38983,Sveta,341077,37093,6 +38984,Bank Manager,2017,100650,9 +38985,William,346838,1074080,2 +38986,Dolly,43594,1010218,6 +38987,Sid Bascom (uncredited),42640,4303,11 +38988,Charly,44522,37457,3 +38989,Fujin,28268,1092904,5 +38990,Justin (voice),146381,1281,1 +38991,Carnal,80389,61059,9 +38992,Amber Sweet,14353,38406,4 +38993,Herself,392386,552243,1 +38994,(voice),16137,24579,4 +38995,Summer Roberson,139930,1111695,3 +38996,Johan,159514,934256,9 +38997,Himself,70027,1490039,13 +38998,Mr. Jagger's Office Doorman (uncredited),121674,1878829,49 +38999,Scholar Wong,25645,25249,2 +39000,Wayne,1125,15567,8 +39001,Millie Jessup,151086,148837,2 +39002,,63899,932877,4 +39003,Todd,42941,6195,4 +39004,Victors Oom,319179,88154,3 +39005,Owner of the sawmill,291907,1202513,6 +39006,Himself,150049,1295347,7 +39007,Cost aka Travers the tailor,21451,64212,5 +39008,U.S. Sub Captain,17911,115401,9 +39009,Fanny (Playmate),39345,97880,13 +39010,Signor Grimaldi,186988,96974,1 +39011,Lou Schoichet,17906,5372,5 +39012,Dr. Merain,254575,123305,4 +39013,,438597,1748447,2 +39014,Linda Schell,64685,18277,2 +39015,,74171,145400,3 +39016,Gianni Franchi,93863,45036,1 +39017,Eagle Heart,272663,139221,12 +39018,A.J.,38150,76242,1 +39019,Mexican Man,105059,1683141,45 +39020,Randy Johnson,103850,1427291,1 +39021,Miguel (voice),177714,1160233,5 +39022,School Principal,30174,565643,11 +39023,3rd Man at Lunch Counter,25241,1765272,17 +39024,Wendy Christensen,9286,17628,0 +39025,Lesley,100275,90683,2 +39026,Miss Meadows,261037,3897,1 +39027,Violet Ranley,18690,13963,12 +39028,Ling,174645,1001667,5 +39029,Restaurant Dancer / Policeman / Mountain Innkeeper / Party Guest (uncredited),22943,1373121,38 +39030,Phil (voice),105965,212768,8 +39031,Trudy Navis,261037,1039359,7 +39032,School Child,2080,1353637,21 +39033,Sister Agatha,42066,39802,8 +39034,Roy Lacombe,408381,1105796,1 +39035,Herself (uncredited),42734,3783,7 +39036,Joy Piccolo,18047,83433,4 +39037,Soni's mother,276846,1238307,10 +39038,Peggy Farrar,65211,29644,4 +39039,,252059,1459892,8 +39040,Stogie (Ruby's agent),75880,34294,9 +39041,Marine (uncredited),44943,1045389,39 +39042,So-young Woo,4550,570303,5 +39043,Fausse Kristin 2,382591,1033712,21 +39044,Giulia,54309,128464,12 +39045,Supermarket Customer (uncredited),354979,1636801,88 +39046,Samantha,88486,128433,2 +39047,Jack Roper,52959,68884,7 +39048,Dr. Fuentes,44641,17094,0 +39049,Violet Weston,152737,5064,0 +39050,Annabelle Chamberlain,301729,1421628,1 +39051,Gunvor,5177,6120,4 +39052,Pookie,135652,56679,10 +39053,Curé mariage,283726,1471581,18 +39054,Superman (voice),30061,19728,0 +39055,Red Cloud (as Frank De Kova),35001,50574,9 +39056,Anne Whitmore,340215,576474,3 +39057,Lt. Kuroki,43407,13251,0 +39058,Francesco,206647,1299312,29 +39059,Princesse Blanche,79892,588203,8 +39060,la Guayi (niña),26864,96481,6 +39061,MacGyver,81895,26085,0 +39062,George Maldonado,49060,10672,4 +39063,Jack Irwin,112655,980038,2 +39064,April,170603,1031263,3 +39065,Venus,15092,20190,3 +39066,Voix du monstre,40258,239403,8 +39067,Sammy's Dad,176079,52419,6 +39068,Pretty Girl,40807,1504653,23 +39069,Morris Finsbury,62143,18266,4 +39070,Cooky,33931,13820,5 +39071,(voice),41077,1297679,4 +39072,Thong,220287,1210546,2 +39073,Mr. Armstrong,104859,51944,1 +39074,Martha,47525,51544,2 +39075,British Tourist on Bicycle,42852,20127,24 +39076,Himself,43491,27966,8 +39077,Miss Marlene,146970,5969,2 +39078,Matty Miller,70192,30519,6 +39079,Angry Airline Customer,274479,1401606,33 +39080,Guard Yelling at Salinger,42094,1208039,6 +39081,Maddy Whittier,417678,561869,0 +39082,Himself,216153,1219152,4 +39083,Jackie Roach,120615,103492,5 +39084,Aunt Viv,14405,8944,8 +39085,Pani Pilar,403130,1537978,9 +39086,Thomas Novacek,5123,6573,5 +39087,Jillian Shanahan,71140,19797,0 +39088,The Intruder,228676,1263260,8 +39089,Protester,149509,143307,24 +39090,David Earle,42298,96721,9 +39091,Eleonora,162056,44959,4 +39092,Rivke as a young girl,362463,1518298,9 +39093,Win,169794,1152008,3 +39094,Captain Jerry,336004,1717266,24 +39095,Foreman Luti,55396,79757,1 +39096,Plump Lady at Boardinghouse (uncredited),52440,21878,21 +39097,,87296,239455,5 +39098,Louhi,233917,1269393,2 +39099,Zoe,64678,8700,5 +39100,Wounded Woman,44754,19,13 +39101,Kalyan,60807,146935,0 +39102,Gunter,10659,52011,4 +39103,Abigail Foldger (uncredited),381737,1463678,26 +39104,Innkeeper (uncredited),134475,1313851,10 +39105,Photog (voice),153518,1394997,12 +39106,,14537,150253,14 +39107,Oleg,336890,119706,13 +39108,Geralt,57278,6643,1 +39109,"Pongrácz András, szocialista",86732,1484860,12 +39110,La femme moyenne,21348,1838955,18 +39111,Woman,335970,1256257,12 +39112,Mrs. Davis,13090,235348,13 +39113,Himself,15258,21731,49 +39114,Himself,63472,827,5 +39115,Postman,224204,1270454,7 +39116,Herself,374460,77287,19 +39117,Uncle Cheung,18731,1269703,12 +39118,Dr. James Cooper,37084,30046,5 +39119,,82687,11074,6 +39120,Paul's Girlfriend,228970,1495091,46 +39121,Pamela Mills,9900,60162,14 +39122,Security Guard,312221,1179268,67 +39123,Paul,79435,72320,2 +39124,Scrounger Harris (bush pilot),32921,14029,5 +39125,Alexis,224944,1210466,1 +39126,Cybil's Acoustic Guitarist,58467,1704729,31 +39127,Scarpia,47959,1365727,5 +39128,,273868,4963,6 +39129,Prietzel,3037,239281,9 +39130,Charmaine,38031,66446,16 +39131,jeon-do-sa,4550,1299313,14 +39132,Jerry,10475,66496,5 +39133,Taxifahrer,53256,147637,11 +39134,Mr. Carter,18569,1040487,11 +39135,Quincey Whitmore,26119,3785,1 +39136,Benson,43155,13979,8 +39137,Mr. Anthony Scalia,11045,1217553,15 +39138,Marnie Piper,34204,60072,0 +39139,Professor Charles Osman,86297,40192,4 +39140,Agent de sécurité,382591,46475,26 +39141,Lisa,7511,52394,7 +39142,Winter,440777,1454313,7 +39143,Charon,357851,167566,5 +39144,Der Greis,55544,222579,1 +39145,Aunt Carolyn Jackson,61550,38711,5 +39146,Mother,26642,110976,4 +39147,Hippie Boy,401164,1817450,11 +39148,Prince Dastan,9543,131,0 +39149,Travel Passenger (uncredited),419430,1367105,34 +39150,Marc,28592,32675,6 +39151,Sam Hall,435,131,1 +39152,Eli,73147,257575,0 +39153,,31244,7502,0 +39154,Brice,32610,97223,16 +39155,Sonnenstudio-Chefin,119816,37249,12 +39156,Ichino,3115,30474,2 +39157,Jed,359245,1508116,5 +39158,Mr Skerrit,18595,107729,12 +39159,Pek,14430,1070128,15 +39160,Eugene Randall,327749,1104619,6 +39161,,355111,74370,9 +39162,"William ""Billy"" McComber",51209,55174,16 +39163,Oil Exec,262841,1366444,29 +39164,Didi Goldstein,19338,133252,9 +39165,Cindy,309024,79087,2 +39166,Det. Mace,45726,4094,7 +39167,Vanessa,11045,10583,2 +39168,Jennie Stone,33673,124088,7 +39169,Ambassador Hurrie,25426,155437,7 +39170,Officer Walters,14142,62093,10 +39171,Mr. Howard,7088,41256,4 +39172,Elmo Broth,15527,7166,4 +39173,Himself,15258,83339,14 +39174,,205349,292158,13 +39175,Rob McLaughlin,14012,74428,0 +39176,Kunstnik,46931,137699,10 +39177,Carol Hunnicut,31597,10427,1 +39178,Louis Lorelli,41552,30686,1 +39179,Young Marie,77381,1537340,5 +39180,Pete,65066,15414,3 +39181,Jud,18843,22384,4 +39182,,106623,6783,4 +39183,Jem,24578,25655,4 +39184,,327225,1040530,6 +39185,,119172,126783,6 +39186,McCreery,55604,34211,24 +39187,Paramedic,253235,1327295,7 +39188,Cecil Gaines (8),132363,548375,2 +39189,P.K. Age 7,13823,75778,8 +39190,Astrid,40221,105003,12 +39191,O'Fallon,92341,1421069,8 +39192,Keenon,8292,62134,19 +39193,Supt. Nicholson,38978,212580,3 +39194,Graham,258255,1098562,5 +39195,Background actor,52454,1630345,61 +39196,Marie Micelli,32588,10427,1 +39197,A. Frazier Marco,41495,89813,10 +39198,Jean,330275,20795,0 +39199,Tree Attack Victim Tree Attack Victim,79329,586553,30 +39200,Himself,88042,60673,15 +39201,Pid,287170,1353678,3 +39202,Chet (voice),77950,13242,1 +39203,Xaver Drebb,37405,6086,2 +39204,Alex,102362,1272975,18 +39205,Connie Posey,16175,20879,2 +39206,Big Brother,1984,17580,14 +39207,Aslak,48791,20999,11 +39208,Bank Employee (uncredited),359412,1753218,26 +39209,Lady Macduff,225728,1133349,5 +39210,Carey Wells,23107,33759,3 +39211,Valerie Nixon,65650,1684389,12 +39212,Daisy,8669,1212302,17 +39213,Emile,152797,1133365,1 +39214,Lenny,30995,1207030,8 +39215,Sgt. Rodriguez,56527,24968,9 +39216,Simon Lecoq,46572,1175158,4 +39217,Prof. Alfred Greenleaf,88288,14518,5 +39218,Pat O'Brien,139718,3155,13 +39219,Dudu,103012,587563,5 +39220,Mystery Girl,78691,14315,28 +39221,Karp,24411,78110,5 +39222,Kadappuram Karthyayani,134474,591079,16 +39223,Receptionist 1,199602,1548828,9 +39224,Spectator,279096,1386306,27 +39225,Admiral,75363,967735,12 +39226,White Hen / Tan Hen (voice),18843,81663,22 +39227,Schoolgirl,29161,1760084,19 +39228,Pepere Lopez,262786,945665,7 +39229,Mrs. Blair,75162,1563600,10 +39230,Additional Voices (voice),24238,1416922,10 +39231,Nordic Child #1,346672,1905797,37 +39232,Avocate tribunal,15712,1180480,27 +39233,Alexander von Humboldt,215740,6818,7 +39234,Don Quixote,46813,934254,0 +39235,Aliya,30619,106593,3 +39236,Francois,252682,64343,10 +39237,Marcel de la Voisier,10910,5,13 +39238,Mr Godard,22901,1221057,12 +39239,Miss Chandni,14134,88138,3 +39240,Lt. Craig,62755,235956,0 +39241,Mrs. Otterton (voice),269149,6944,4 +39242,Louis,403119,130936,3 +39243,Jeff,257088,41883,13 +39244,Sonia,12273,81869,1 +39245,Joseph Breen,2567,52995,21 +39246,,210079,1337983,1 +39247,Marko,17985,1348804,8 +39248,Coat Check Girl (uncredited),2567,1674588,62 +39249,,355111,74358,1 +39250,Diana King,266856,1467145,11 +39251,Det. Shane Dekker,5289,11864,1 +39252,Mary Todd Lincoln,161187,14698,2 +39253,Musician,25855,1489160,9 +39254,,256930,1360176,4 +39255,Dr. Mansell,117120,25658,5 +39256,Dandelion / Teeny Mermaid,13285,74360,8 +39257,Ben Tracey,196359,923,4 +39258,Robert De Mott,27450,24596,15 +39259,Ronnie Van Zandt,335970,1718145,44 +39260,Woman with dog,91390,1201835,12 +39261,Mrs. Brush,180635,9073,6 +39262,Ben,273511,79494,3 +39263,Pretty Girl #1,32657,387183,48 +39264,Green Day (voice),35,95867,13 +39265,Ahma,88126,93565,5 +39266,Olympic Club Member (uncredited),43522,1091997,18 +39267,Capt. Douglas Loveland,116973,3364,9 +39268,Professor,469172,1281664,7 +39269,De Santis,48805,1880571,18 +39270,Saburō Katō,61984,226738,5 +39271,Sally Carrera (voice),49013,5149,25 +39272,Rodan,19545,1198478,33 +39273,Sin LaSalle's Wife,4551,1680743,35 +39274,Sphinx,205584,936397,12 +39275,Sergeant Andrews,1942,20128,5 +39276,El Fantasma de los 80,60120,1042767,5 +39277,Cafe Head Waiter Jérôme,37710,1136365,17 +39278,Footman,31993,1467330,23 +39279,Sarah,324930,1500689,6 +39280,Wayne Jackson,31605,2048,4 +39281,Jacob,289720,17244,0 +39282,Mitarbeiter des Anwalts Dunand,124013,123609,7 +39283,,188180,1169879,3 +39284,Suzanne Rook,62392,40247,4 +39285,Himself,97724,1388662,13 +39286,Gei Cheun,64316,62410,0 +39287,Dancer,103620,1651053,25 +39288,Henchman,26881,57898,18 +39289,Elyse Keaton,215579,13725,0 +39290,Mike Kingston,371181,33669,1 +39291,Robin Williams,21585,2157,0 +39292,Thief,155597,85648,7 +39293,Verner,100275,948533,6 +39294,Jerry,174487,77335,2 +39295,Piet,42664,13263,9 +39296,Champagne Waitress,10330,1102046,30 +39297,Ács Imi,13616,1265182,8 +39298,Yun Jin-seong,32237,85174,2 +39299,Diego Alatriste,13495,110,0 +39300,"Frank Wilson, Jr., aka The Singing Kid",134238,81168,0 +39301,Blue,20304,93602,4 +39302,Signora all'ospedale,62034,224208,4 +39303,(voice),28090,1719905,55 +39304,Stephen Grywalski,340027,1142720,1 +39305,Jos,24199,91352,5 +39306,'Frenchy' Lescaux (as Ted De Corsia),26758,2097,7 +39307,Amelia Kyte,149600,15091,0 +39308,Gitan Arnaud,122192,1160281,9 +39309,Ahmed Sinai,121598,85676,16 +39310,Sam Flint,214753,1193572,7 +39311,Joe Barton,34944,3152,0 +39312,Man on Phone,11338,55983,10 +39313,Face,167810,1632959,12 +39314,Manuel,109391,1204683,14 +39315,pizzaiolo,43646,120027,10 +39316,Lola Sanchez,440597,1704782,6 +39317,Dr. Malloy,50590,64240,5 +39318,Virginie,334299,1346325,6 +39319,Gratus,206514,1369,14 +39320,,175924,1756,6 +39321,Gan Xing,12289,72202,8 +39322,Migi,282069,91870,3 +39323,Bill,219345,19578,3 +39324,Himself,453053,56585,4 +39325,Billie Burke,336775,7796,10 +39326,Lucky Luke (voix),50166,3509,0 +39327,Angela Chiaromonte,70734,8828,0 +39328,Joyce Cook,27450,14326,3 +39329,Blade,222216,99687,10 +39330,Amazed Senior Guy,26688,96018,7 +39331,Neighbor (uncredited),6973,1577330,38 +39332,Kreativling,1912,19894,6 +39333,Elder,75162,1563610,19 +39334,Detective at Headquarters (uncredited),3574,1016691,17 +39335,Sammy,17175,59889,9 +39336,Dr. Pomock,228676,18316,0 +39337,Hiroto Wakui,51549,128480,11 +39338,,143005,235107,5 +39339,Kansas Court Bailiff,75315,1271340,23 +39340,,111239,1182096,6 +39341,François Marneau,25388,2201,5 +39342,Dennis,195022,1180694,0 +39343,Margaret,13358,80613,7 +39344,,58611,1891747,24 +39345,The Priest,131194,15198,4 +39346,Comic Book Nerd (uncredited),42941,134612,13 +39347,Sonya,39013,126487,6 +39348,Oh Hyeon,270759,4259,2 +39349,James' Niece #1,199575,1438906,36 +39350,Amanda,31472,102044,11 +39351,Jack Llewelyn Davies,866,13011,7 +39352,Lily,118889,103017,17 +39353,Cheerleader (uncredited),15022,1303215,46 +39354,Jury Foreman,18569,29263,29 +39355,Cal Brett,80193,124634,6 +39356,Barbie (voice),57737,568560,1 +39357,Ira King,371504,81840,3 +39358,Àvia,438634,1057247,5 +39359,Erika Berger,33613,79196,2 +39360,McKenzie,195269,74361,11 +39361,Evelyn Mercer,8292,58068,7 +39362,Party Guest,128669,1425618,15 +39363,Kat,287587,211993,5 +39364,Вадим,253192,1289503,5 +39365,Seema Sohni,41903,109549,1 +39366,Valeriy Borisovich,252034,86870,6 +39367,,11391,209393,17 +39368,Le juge,53404,49278,6 +39369,,47238,109598,3 +39370,Mim,198277,1341800,19 +39371,Howard Everett,47561,30290,7 +39372,Nardoni,58011,15139,6 +39373,Col. Jefferson,52360,34211,20 +39374,le cycliste,12089,44407,20 +39375,Anne,40649,1018953,5 +39376,Donnie,45610,335,6 +39377,Aldo,8888,45972,5 +39378,Mr. Farrell,167073,93209,30 +39379,La cavalière du manège,262454,543631,5 +39380,Clay,39781,170333,8 +39381,L'antiquaire,13741,5470,3 +39382,Missile Officer,42542,166514,15 +39383,Izzy,23515,230096,0 +39384,Will,75623,138558,0 +39385,Professor Cedric Gibberne,79833,984,3 +39386,Marie O'Mara,20301,85901,6 +39387,Sonja Modig,33613,106659,14 +39388,Lurlene,69217,1421376,7 +39389,,322443,192937,5 +39390,Herr Weber,70807,17545,5 +39391,The Policeman,8899,45152,6 +39392,Nelli 'Sorceress',279543,99291,9 +39393,Maathan,332827,1192913,3 +39394,Young Doctor (as David Flemming),27137,1077574,9 +39395,Dave MacMillan,176867,8519,10 +39396,Martha,47900,592061,2 +39397,Rolf's Mother,230295,225092,3 +39398,Comrade,256122,299644,2 +39399,Jonas Creel (as Guy Anderson),64456,43823,8 +39400,"Richard ""Ricky C"" Cunningham",9298,7060,4 +39401,Maria,43931,180524,12 +39402,Meneer van Dam,25797,46465,8 +39403,Herself,85984,9805,1 +39404,Wirtin (als Michou Frieß),119820,16798,17 +39405,Dev,12182,21660,8 +39406,Lieutenant Driscoll,35001,14562,3 +39407,,42441,1110465,13 +39408,Pontiac,19725,12826,6 +39409,General Kappel,13506,87409,3 +39410,Harry R. Baker,33729,5248,1 +39411,Bruno (as Fredric Santley),175027,1271019,11 +39412,Dock Policeman,52859,3262,15 +39413,Tony Polar,3055,30122,4 +39414,Barry Weiss,55846,49735,2 +39415,Penny,14301,76527,2 +39416,Mrs. Nathan,30993,1798342,11 +39417,Maggie,137217,94482,1 +39418,Alexander Markowitz,42460,49331,8 +39419,Hotel Visitor (uncredited),331313,1635160,57 +39420,Marie,50387,39847,0 +39421,Dr. Vanko,154371,1334637,7 +39422,Bartender,29136,1896757,15 +39423,Miss McDonald,24655,19337,11 +39424,Sergei,90231,1248644,18 +39425,Juliane Marie,88273,4460,5 +39426,Marley Corbett,45156,11661,0 +39427,Blackie,338421,126717,4 +39428,Bill Finlay,28299,14508,5 +39429,Lisa DePardo,19794,57854,8 +39430,Countess Tatiana Alexandrova,91480,148527,1 +39431,Tommy Taylor,64928,90517,1 +39432,Jason,146373,1771,3 +39433,Superman,65904,544262,3 +39434,Tootsie Malone,28564,144400,7 +39435,Anne,85735,132068,7 +39436,paesano che fa la serenata,301272,1883872,12 +39437,(as Jose Ignacio Etxaniz),110001,1696396,39 +39438,Miguel,128637,211191,3 +39439,Leonardo (voice),98566,9656,6 +39440,Mason's 4th Grade Teacher,85350,1467545,19 +39441,Grégory Bretzel,366566,20082,6 +39442,Keeper of the Seeds,76341,82437,17 +39443,Joseph Randall,339408,41508,14 +39444,Mrs. Pollifax,172475,30233,0 +39445,Ava,256474,78452,0 +39446,Wilma,33774,237954,4 +39447,Cerioni,72279,100954,5 +39448,Clapton Davis,68684,27972,1 +39449,Otello,64725,1314450,11 +39450,Deputy Ward Corby,32634,1430612,12 +39451,Fiorello,37719,10799,1 +39452,,328692,1434872,8 +39453,Himself,360341,2887,1 +39454,John,30996,107476,12 +39455,,256916,36277,3 +39456,Shaun,17483,65475,2 +39457,Orphan,75204,574141,12 +39458,Gino Fish,110148,6573,5 +39459,Nina,2349,24057,6 +39460,Vic,418772,35029,9 +39461,Herbert Thornhill,54242,117646,2 +39462,Master of Ceremonies,179066,1039673,37 +39463,Father McReady,139463,27397,6 +39464,Gang Leader,38034,18897,0 +39465,Charley Pitts,27349,1178581,8 +39466,Bharathan,237672,1115746,7 +39467,Lucille,10795,1831425,37 +39468,National Team Coach,284288,239728,2 +39469,,105760,1211524,3 +39470,"Bibi, le complice de Roger",44256,1655,4 +39471,Maggie,24963,100060,7 +39472,Father Niles,278348,172529,5 +39473,Venditore di lupini,38289,120027,4 +39474,Mater's Computer (voice),49013,1230799,39 +39475,Rita,62392,111988,8 +39476,Benny,269795,1347947,8 +39477,Teocrito,18696,34596,2 +39478,,110148,166495,7 +39479,Mary Wollstonecraft Godwin,3072,2233,3 +39480,Convict Waiter,61908,133230,17 +39481,Line,98302,543091,18 +39482,Kirikou enfant (voice),21348,87421,0 +39483,L'Chai'm,6575,1524,5 +39484,Bunny,180759,20132,7 +39485,Specialty,108222,1298835,16 +39486,falso invalido,56339,1851860,15 +39487,Dr. Ruth Adams,831,85740,1 +39488,O.S.S Officer,168676,67247,12 +39489,Roscoe,99642,135665,2 +39490,Zuhälter 1,9076,10744,7 +39491,,23898,83836,3 +39492,Auste's Mother,310568,1588477,6 +39493,Leah,13551,9827,2 +39494,Liz,55347,212778,8 +39495,,361183,1513956,4 +39496,Big Ed Somers,15794,78792,4 +39497,Ruth,145668,27798,2 +39498,Bindiya's mom,76684,87304,9 +39499,Photographer,56558,1159649,52 +39500,Ivan #1,91070,83225,13 +39501,"Cottrell, Liberty Innkeeper",22396,1120230,16 +39502,Dr. Parsons,257450,229949,18 +39503,Martin Sperling,31880,21105,8 +39504,Judge Moran,6145,3982,9 +39505,Commissario Tozzi,52914,544725,8 +39506,Lincoln's Cook,43806,34268,39 +39507,Zhao Bao,14538,83633,1 +39508,Uthaman,134477,1490179,12 +39509,Eleanor,91443,157434,1 +39510,Maxwell Barron,45013,55270,32 +39511,Helena,15689,78547,0 +39512,,32928,1396140,3 +39513,Telsa,1661,2339,3 +39514,Vaguinho,180371,114482,6 +39515,Party Guest (uncredited),323675,1461926,50 +39516,Basketball Avatar / Troupe,19995,1207248,29 +39517,Dupree,1819,887,1 +39518,Claire Morgan,62838,448,12 +39519,Sammy,234284,89883,1 +39520,Valdéia,203217,1422048,7 +39521,Sinbad (voice),14411,287,0 +39522,Doris,79221,140661,8 +39523,Richard the Butler,15163,3555,11 +39524,Officer Gomez,1640,18300,26 +39525,Jody,11425,1217865,8 +39526,Alina,296491,102362,2 +39527,Fanny / Michael's Wife / Boobs Vanderbilt / Dixie / Linda / Petunia / Ruth Ginsberg's Head / Mom (voice),15060,34983,6 +39528,Chloe,150117,1772,2 +39529,Minor Role,41597,1534321,15 +39530,Speed,2830,28638,6 +39531,Styles,413232,5464,8 +39532,Opera Singer,61109,1178196,17 +39533,Yellas Vater,3037,37102,6 +39534,Lauren Adler,22897,211993,10 +39535,Arnaldo,82080,73871,17 +39536,Kelly,49199,52575,2 +39537,Goose,242076,1296517,7 +39538,Wilkins - Stallmeister,38602,2387,11 +39539,S.P.,275269,52971,4 +39540,"Miss Margaret Gordon, the Librarian",246299,30159,5 +39541,Reynolds,86168,114837,6 +39542,Grandpa,10330,14833,3 +39543,Transvestite,45132,1363397,30 +39544,William,21371,60508,1 +39545,Ann 'Annikins',42614,98012,4 +39546,Dr. Karen Winterman,144580,31167,1 +39547,Mae Feather,222220,1341128,1 +39548,Prof. Charles Grandage,447758,29470,13 +39549,Off-Beat Davis,95037,30005,3 +39550,Capt. Amos Winfield,247691,81179,2 +39551,Girl,118889,121236,24 +39552,Probs,59678,214299,21 +39553,Queen Elizabeth I,43327,3380,1 +39554,Räpsy,217038,4826,0 +39555,Sykes,332488,62358,1 +39556,Guard,134201,1771034,15 +39557,Sonny Watts,245168,17064,3 +39558,Captain Danforth,16442,114097,13 +39559,Pete Conway,33541,111464,40 +39560,Marine Wife,7445,209844,23 +39561,Arthur Kabot,131861,8608,5 +39562,Véronique,62675,131975,13 +39563,30's Patient,414977,1345153,31 +39564,Madeline Phelps,181533,46074,6 +39565,Thomas Richards,68721,38709,43 +39566,Julia's father,32559,88271,9 +39567,Jon Jensen,266285,1019,0 +39568,Pushok (voice),260310,1378193,7 +39569,"Jokke Ketonen, father",249703,1132167,1 +39570,Cruz,73984,57490,3 +39571,Clara Gauthier,61361,1318270,8 +39572,Sally Bowles,83119,2750,0 +39573,Jedediah W. Willowby,28303,6805,7 +39574,Gen Harwood,13374,17265,3 +39575,Sokovian Family,99861,1760888,54 +39576,Tom's Father's (voice),56669,72637,12 +39577,Moroff,330459,946696,42 +39578,,37429,130399,0 +39579,,77673,1664052,18 +39580,Josephine Manet,33314,928307,5 +39581,Eddie,17725,119415,5 +39582,Contessa Ugalda Martirio In Cazzati,439998,31613,10 +39583,Officer Lincoln,354979,1738398,22 +39584,Richie Roberts,4982,934,1 +39585,Carla,17258,11478,14 +39586,Alien,49514,74193,4 +39587,Seba,63066,236436,2 +39588,Antoine,329724,1516826,6 +39589,Barry,290999,1262388,1 +39590,,70322,239451,13 +39591,,336655,1456979,2 +39592,Boniface,8588,1318525,10 +39593,Scooby Doo / Scrappy Doo,13350,16422,0 +39594,Thai prison guard,109439,1300910,18 +39595,Pepper,333091,59882,2 +39596,Ghost,293452,1546077,13 +39597,Bentik,19606,6599,4 +39598,Poppy,14459,76940,2 +39599,Herself (archive footage),184363,1903781,10 +39600,,273096,553809,9 +39601,Woman at House,13542,230818,18 +39602,Chon,8088,102222,11 +39603,Jackson,257450,593049,0 +39604,Ezra Ounce,43903,34347,5 +39605,Claudia Ferguson,151043,18249,3 +39606,Man,310133,74242,4 +39607,Sophia Halshford,322518,1431604,6 +39608,Gary,128215,55152,2 +39609,,285685,225218,6 +39610,Slick,14414,6198,5 +39611,Old Indian woman,47956,7210,8 +39612,Oishi,248087,1018944,12 +39613,Samantha,393659,33053,4 +39614,Soldier,8988,1378058,59 +39615,Cindy Stanton,19017,141398,8 +39616,Jeff DeMarco,173662,30290,1 +39617,Jennifer,228290,1262795,8 +39618,Doctor,2567,1673119,55 +39619,Worker in General Affairs,3782,955005,30 +39620,Paco,391618,100905,9 +39621,General Gabriel,1726,17200,17 +39622,Himself,410718,113460,2 +39623,Porterra,43432,132441,15 +39624,The Husband,49110,17917,1 +39625,Pote,141603,105442,5 +39626,The Bull (voice),16523,1716,13 +39627,Russian Worker,362439,1523689,13 +39628,Fran Maroon,292294,118300,2 +39629,,132705,1095873,4 +39630,Titus,11403,424,3 +39631,,35652,1056810,2 +39632,Pompiliu Bors,403429,1163608,4 +39633,,277631,9626,2 +39634,Mark,341077,1768255,8 +39635,Kiki,71668,138970,11 +39636,Paul,35405,11191,4 +39637,Serie,26116,94697,6 +39638,Bananas The Clown,43656,884,2 +39639,Ayesha,39816,965202,2 +39640,Patty McGuire,167073,1224027,9 +39641,Ernest Hemingway,111839,2296,1 +39642,Ambassador Rakan,26873,96518,9 +39643,Young Ace,19342,112330,11 +39644,Coach Garrick,13689,76001,3 +39645,Young Lady,59744,553738,17 +39646,Manual Kane,169298,1015836,9 +39647,Link Room Tech,19995,1207247,28 +39648,Mechanic,43811,238180,29 +39649,Vanessa Walling,89008,61178,2 +39650,Himself (archive footage),438137,240633,3 +39651,Qingsha,76544,1210413,6 +39652,Martin Hirsch,270650,3712,3 +39653,,242240,102026,2 +39654,Billick,22681,1286878,5 +39655,Zack Allen,10921,8894,2 +39656,Glory Dogs Saxophone,23367,95379,23 +39657,Slaver,60488,939680,15 +39658,Gil Flagg,72823,138398,11 +39659,César,57816,226954,2 +39660,Honey,32740,1235484,8 +39661,s. lieutenant Kogan,102197,143709,14 +39662,,412363,1769120,11 +39663,Victor Clobirch,356483,6719,6 +39664,Jacky,196235,151254,6 +39665,Rosa,14435,1114306,9 +39666,Susan,86284,98608,4 +39667,Cody,17483,81952,4 +39668,,362617,1456034,6 +39669,Lori Desinger,20481,140234,1 +39670,Court spectator / press,339994,1357388,32 +39671,Ben Pretzler,19688,503,3 +39672,Oliver Fields,55347,3061,0 +39673,Mark Anthony,49074,237697,2 +39674,The Murderer,289723,1241802,12 +39675,Airline Stewardess #1,20444,86136,5 +39676,'Old Puff',147829,8517,6 +39677,Imogen,240745,118545,1 +39678,Betty Vale,173634,103922,11 +39679,Hub Fasken,43384,14502,4 +39680,Hedda Shopper,116977,11870,14 +39681,Viktor,834,2440,5 +39682,Bonne Maman,15713,20235,0 +39683,Bix,64948,240098,0 +39684,titolare della scuola,58615,1470298,8 +39685,Himself (as Mr. James Brown),51939,7172,2 +39686,Patrolman,118134,95311,16 +39687,Court Clerk,116232,1271340,11 +39688,Mia,16240,78862,21 +39689,Lobo,258363,260,3 +39690,Ted,88012,132102,9 +39691,Sunny,64130,53922,2 +39692,Blacksmith,1271,1330754,49 +39693,Jake Greggson,373977,219960,6 +39694,Desk Sergeant,166393,100754,6 +39695,Ignacio,277710,1461312,19 +39696,Faith Conroy,183412,1419647,7 +39697,Ian's dad,12407,3064,1 +39698,Iraqi Prisoner,6973,1362974,25 +39699,Leon,190955,3085,6 +39700,Himself,108723,1446328,6 +39701,Bo / Vincent,10066,12792,2 +39702,Second Cop at House,53407,1893384,19 +39703,Carpetbagger #2 in Montage,183825,96061,57 +39704,Richard McGorian,77949,1674643,23 +39705,Ronnie Mason,36635,31551,1 +39706,Ted Spiegelman,339994,1524501,15 +39707,"Michael Perkett, NASA",128612,2221,6 +39708,Bus Passenger,387399,1849538,15 +39709,Moe (uncredited),31773,1017631,57 +39710,Sua,271404,113732,3 +39711,Costa,407,5498,2 +39712,Priscilla,222517,1021680,12 +39713,Glycina,37100,87582,9 +39714,Carol (voice),16523,4691,3 +39715,Student,38322,1869049,46 +39716,Laroche-Mathieu,118536,76974,6 +39717,Pawnbroker,1950,17184,5 +39718,Véronique,1917,19934,2 +39719,George C. Shannon,39943,14508,6 +39720,Voice,55624,1101302,1 +39721,Xan,15907,111176,0 +39722,Kuppi,422603,1699986,2 +39723,Lawyer,18927,1148621,12 +39724,Richard Saroyan,1818,1533137,8 +39725,Megan Graves,34231,53266,0 +39726,Producer Ron,131799,223349,12 +39727,Enrique,259075,24747,4 +39728,Herself,53380,10371,2 +39729,Marukusu,105210,1039354,7 +39730,Arthur Higgins,23152,12022,5 +39731,Claudia,39024,1157592,8 +39732,Katie,7871,568405,6 +39733,Beth Atherton,167882,95100,0 +39734,Harthmann,294483,8199,7 +39735,Maggie Scott,119801,13567,0 +39736,Sara Asher,146243,135532,2 +39737,Ava,62838,63522,9 +39738,Police Captain,43049,14001,6 +39739,Emma Ginetta,53654,30043,4 +39740,Scotty,63877,64471,9 +39741,Nightclub patron,43113,552182,57 +39742,John Wayne Enthusiast,18586,564,11 +39743,John Horace Mason's Secretary,18569,1234110,45 +39744,Max Wagner as a Boy,109716,1154468,12 +39745,Coke Beck,1790,141,4 +39746,Andrea,279690,1228361,3 +39747,Cadet Ronny Morgan,179103,89990,1 +39748,Bear (voice),38317,15277,4 +39749,Roxy,265208,8256,4 +39750,Brain Lathom,31985,108683,6 +39751,Michael Kittredge,24775,980,1 +39752,Private Nozaki,1251,77955,8 +39753,Tom,336004,1411758,17 +39754,Welcome tot he 60's Dancer,2976,1752790,133 +39755,Young Boy,379959,1604099,12 +39756,Dist. Atty. Plunkett,42752,128627,10 +39757,Arthur Trent,32552,34287,3 +39758,Martha,12683,15500,10 +39759,Matt,297265,1711290,9 +39760,Boda,72279,21181,3 +39761,Lemuel,11577,14001,4 +39762,Rudy,41759,1045558,5 +39763,Detective Phil Ross,383140,1582459,8 +39764,Anne Kronenberg,10139,17486,5 +39765,Mrs. Janet Bentley,214909,50836,10 +39766,Harvey Howard,104602,24937,0 +39767,George Barnes,72207,120560,6 +39768,Rambhau,378227,43413,3 +39769,Barbos (voice),72199,99282,1 +39770,Mr. Parry,83015,1834952,24 +39771,,264264,71641,8 +39772,Monteray Police Announcer,31899,126550,30 +39773,Rodney,68123,56552,4 +39774,Frank Kelly,98289,19411,2 +39775,Jack Cracker,11908,64722,13 +39776,Train Conductor #1,266285,1459404,34 +39777,Peter Monet,216374,1207890,12 +39778,Ibrahim Dieng,99329,1200619,0 +39779,Angie Popchik,85420,76064,8 +39780,,47324,1620570,9 +39781,Emily,50549,108433,19 +39782,Maddy,21343,16901,1 +39783,Hommes D'Affaires Squibb,221667,55493,11 +39784,Luz,83430,1129445,8 +39785,Son-in-Law / Mafia Boss,16164,82136,8 +39786,Steve,110909,6396,5 +39787,Doctor,228970,1495080,25 +39788,Pete,96433,32435,8 +39789,Cindy,170603,167999,8 +39790,Joan,53857,149113,6 +39791,Julien Foucault,26152,70165,1 +39792,Brice Wayne,67531,150638,0 +39793,Lucille,15907,111178,3 +39794,Baron von Playen,79362,18726,9 +39795,Franco Cicchilitti,68063,227386,4 +39796,stowaway,396535,93995,11 +39797,Lu Jun,101908,1016315,4 +39798,Bogdan,255647,110965,13 +39799,Alan,239056,208515,6 +39800,Mrs. Lil Benton,290379,21878,8 +39801,Aunt Kate,53766,35505,4 +39802,Det. Sidney Y. Myers,30036,2647,5 +39803,Dancing Girl / Housekeeper,24619,1850006,21 +39804,Mechanical Woman,334538,1450264,6 +39805,Patagonia Wife (uncredited),215881,155862,16 +39806,Astro (voice),17009,16422,5 +39807,Pete,19342,112328,8 +39808,,41416,1342842,7 +39809,Marge Endicott,94568,55890,1 +39810,Bar Patron (uncredited),354979,1636793,76 +39811,Easterman's PA,381518,1821362,20 +39812,Simon Varner,179826,127128,4 +39813,Takishima Natsuhisa,86664,140103,1 +39814,Lina Vance,22551,74285,6 +39815,Nicola,128241,556356,5 +39816,Joe Shimamura / Cyborg 009 (voice),127544,93801,2 +39817,Road Zombie,15689,63362,6 +39818,Bruno,96921,2245,0 +39819,Eric Berg,37911,16412,5 +39820,Waiting Room Nurse,21208,90466,22 +39821,Fast Freddy,243935,1782626,23 +39822,Ryan,25701,94124,0 +39823,Cor Van Hout,228968,38941,1 +39824,Takasu,39123,131191,15 +39825,Dean Spanley,18117,4783,1 +39826,Maximilian Robespierre,27635,5403,1 +39827,,54959,1637160,4 +39828,Homebrew Member,186606,1750926,15 +39829,Dr. Lee,40807,61541,11 +39830,Cortez Gang,268920,1755089,113 +39831,Mrs. Bishop,83666,3910,5 +39832,Шурик,330878,575113,0 +39833,"Harry, second criminal",74753,116645,7 +39834,Brian the Orderly,13483,133046,4 +39835,Ian,330115,36422,3 +39836,Blonde Bikini Girl,4613,59090,15 +39837,Effie,33314,124687,7 +39838,Iancu,26752,39960,1 +39839,Delores,254193,67787,8 +39840,Jessica,25643,64154,7 +39841,il nonno,77000,1851058,14 +39842,Sloan,73700,53,4 +39843,Erika,834,3971,12 +39844,Nana,7547,6587,9 +39845,Herself,293262,1392202,13 +39846,Bong,64450,939091,1 +39847,Jordan Cahill,115626,1213573,5 +39848,Fairground Barker,80596,592570,36 +39849,Andrew,124157,77188,7 +39850,Stacy,66193,68276,6 +39851,Christian,37254,117192,12 +39852,Matthew Cuthbert,397520,8349,3 +39853,Periodista (uncredited),82767,148577,14 +39854,Racist - Cole Field House,9918,131561,18 +39855,Corrine,33511,570323,20 +39856,Stunt Police,25941,1835526,30 +39857,Furniture Dealer,374473,1766054,22 +39858,Kate Coleman,21208,21657,0 +39859,Kalvin,47462,62867,9 +39860,Police Captain,193177,3015,11 +39861,Sully,18595,995518,9 +39862,Takashi Shima,19336,240009,6 +39863,Giudice,325645,24604,5 +39864,Ginger Sparks,81660,1085070,3 +39865,Jeff,64934,24807,3 +39866,Jane,77060,1354364,8 +39867,Yu Zhen,295273,1339,1 +39868,,80941,1238720,21 +39869,,45384,555296,12 +39870,Doctor Giving Physicals,72638,34008,54 +39871,Old Bird (voice),172385,1178792,18 +39872,Shawn,35908,114928,8 +39873,Reisender Mann,4291,36078,8 +39874,Will,18467,83154,4 +39875,Himself - Comedian,98438,1018032,6 +39876,Jackson 'Jack' Durant,34977,29999,0 +39877,Sheng Wang,369524,1785090,23 +39878,,12453,72290,4 +39879,Prof. Jack Randall,24921,34489,0 +39880,Ghislaine Prat,73562,149875,8 +39881,"Pyotr, friend Andrei Sokolov",88564,562611,17 +39882,,216046,1200688,2 +39883,Teresa,121516,225550,2 +39884,Judge,99229,1049532,6 +39885,Hip Hop Group 'Candice',23367,95391,39 +39886,Greek Merchant,179066,1283817,63 +39887,Lotta,27599,82326,0 +39888,Warden,239566,52885,13 +39889,Ruj,40127,1331694,5 +39890,Ernest,1818,3573,9 +39891,Ignacio,293082,1451506,8 +39892,Lawyer at Prosecution's Table,55604,135827,68 +39893,Caterina Malatesta,30298,31895,3 +39894,Card Player (uncredited),16442,120309,63 +39895,Girl with Purse,29416,101449,13 +39896,Luisa (voice),115223,87940,5 +39897,Rod MacDougall,34651,84233,3 +39898,Viji's Father,69404,584270,5 +39899,Graduate Student,381008,1589605,18 +39900,Luigi Restaurateur (as S.Z. 'Cuddles' Sakall),61151,94110,3 +39901,Herself,83587,1137451,13 +39902,Prabha Kumar,33460,110708,4 +39903,Nick Embiricos,149926,183207,8 +39904,Sheriff Ike Vallon (uncredited),17820,22093,15 +39905,Jody Flynn,78571,1231,1 +39906,,376934,1561603,15 +39907,Eddie,1259,37055,14 +39908,Madeline Bradville,17640,39602,4 +39909,Passenger,87514,1191818,15 +39910,Photographer,56558,1046806,47 +39911,Bouffalant / Hydreigon,115223,108721,6 +39912,Tim Drake,16234,923,4 +39913,Red,31118,1021392,5 +39914,Hazel Grace Lancaster,222935,94185,0 +39915,Aunt Anke,154972,50282,7 +39916,A.J. Corelli,88075,89691,8 +39917,Gabriel,332286,1444880,10 +39918,Ranjeet,301671,601266,3 +39919,Himself,322785,1895,2 +39920,Priyanshu,352025,86622,17 +39921,Loner Boy,14123,1446418,28 +39922,Viking,140818,930582,8 +39923,Glen Palmer,205587,7132,3 +39924,,49961,143117,15 +39925,Ludwig the Dwarf,257831,1376399,13 +39926,Lucky Ntlantla,103012,1211682,0 +39927,Student,8915,110910,16 +39928,Earnesta,399894,71565,6 +39929,Yakuza Henchman,4291,80129,12 +39930,,155605,1092507,3 +39931,Ryan Burlington,16240,43244,6 +39932,Jean Cabot,1640,18277,0 +39933,Theatre Actor,328589,55470,4 +39934,One night stand/Kevin's mother,101852,55253,7 +39935,,369363,127491,1 +39936,Detective,111582,1075172,16 +39937,Sing,40346,57607,0 +39938,Juana,28656,101472,3 +39939,Aunt Marian,417870,18347,9 +39940,British soldier,121823,1102424,18 +39941,Dr. Victor Loeb,74629,41243,4 +39942,Hanzo / Cabbar,101217,97272,0 +39943,Charles Frohman,866,4483,3 +39944,Waynie,408508,62019,3 +39945,Metus,22259,24521,5 +39946,Granny Rose (voice),9948,60737,5 +39947,Soon's Dad,195763,225055,0 +39948,,373200,1615891,7 +39949,Joe,59962,1154244,10 +39950,Aunt Dorrie,13279,100653,15 +39951,Kevin McDonough,3563,32907,9 +39952,Michael,169758,82821,5 +39953,Aaron,406052,1448194,6 +39954,Bailey,37254,117187,3 +39955,Blind Man's Sister (uncredited),121674,1878828,46 +39956,Misfit Showgirl,9899,60145,17 +39957,Kotomi,140509,147880,1 +39958,Jim,48836,141180,1 +39959,Steven Sr. (as Bob Sampson),257176,22048,4 +39960,Himself - Roaster,334461,87281,12 +39961,Morgan,126712,127187,11 +39962,Man at Concert,11172,1781194,46 +39963,,42438,120114,5 +39964,Coffee Customer,2830,1239283,10 +39965,Mallorie,416256,1281383,1 +39966,Kane,388243,1431483,9 +39967,,117534,1902449,22 +39968,Black (voice),217057,1048574,10 +39969,Nun,27045,1217383,10 +39970,Thomas Turner,36635,2673,6 +39971,Chad,329286,477074,2 +39972,Henchman,250332,1312720,64 +39973,Rika Tsuzuki,391004,1599983,1 +39974,,43751,1117119,8 +39975,Nobusuke Nagashima,121725,120918,9 +39976,John Kramer,11917,2144,0 +39977,Rita,81475,130436,11 +39978,Two Horns (voice),269650,1319569,3 +39979,Mayor April Henry,22803,19492,12 +39980,Murdoch,279096,1163308,21 +39981,Dusty,24556,91787,13 +39982,Book Enquirer (uncredited),203321,1876161,14 +39983,Edith,24955,92896,1 +39984,Kwok Tin-Man,338421,78875,0 +39985,Mariette,76059,1125627,5 +39986,Lord Reith,65035,1220099,15 +39987,Policeman,166666,25435,10 +39988,Chris,12831,1582,0 +39989,Joey Popchik,85420,64825,4 +39990,Emily Vanderhaus,312497,1262228,7 +39991,Marc Tourneuil,121793,51100,0 +39992,Joe Ransom,157847,2963,0 +39993,Christina,240881,10690,0 +39994,Thelma,99863,1161141,9 +39995,Toll Booth Operator,228970,1495096,53 +39996,Daniel,74777,583456,2 +39997,Catherine Bérard,3423,20882,2 +39998,Massimo,58615,1900911,14 +39999,Ceci,107073,1125452,1 +40000,Pall Bearer,71503,563111,33 +40001,Kyoko Makino,36063,20330,9 +40002,Paul Reis,82465,2222,2 +40003,Policeman on Gaylor Ave.,153163,124875,26 +40004,Policeman #2,27549,42824,12 +40005,Tesfaye,12427,1811519,2 +40006,Flashback Boyfriend,434873,1859548,11 +40007,Assistant Coach,11007,1643258,15 +40008,Steve,170603,16170,1 +40009,T-Bone,17303,71535,13 +40010,Leo,17216,72132,3 +40011,,115616,10746,10 +40012,Nikolai,15177,77982,10 +40013,Harry,27917,10655,8 +40014,Major KGB,25667,120243,2 +40015,Kid,258509,1559689,24 +40016,Thomas Kinkade,13610,49623,0 +40017,Eugène Levèque,329682,239118,5 +40018,Base Colonel,19968,5737,14 +40019,The Cat,27114,3163,12 +40020,Aunt Caroline,99767,77160,5 +40021,Party Guest (uncredited),105548,141068,19 +40022,Talesh,46931,137848,12 +40023,Frances,302828,1385217,4 +40024,Neha Vajpayee,103073,225162,7 +40025,Logan,17100,32205,5 +40026,Lt. John Paxton,261273,1081488,1 +40027,Jolene,109466,1364232,10 +40028,Tim Baker,49609,10922,0 +40029,Yoga Instructor,6557,1616046,21 +40030,Magician,55347,17441,11 +40031,Himself,124071,62644,5 +40032,Judith Martignac,60623,20234,1 +40033,Jack Powell,85564,2714,0 +40034,Trish,23515,230099,13 +40035,,38154,120434,15 +40036,Uomo misterioso,33495,127015,9 +40037,Michael,15907,1503256,7 +40038,Village Pharmacist (uncredited),297762,1813664,81 +40039,Lady at Barbecue,70046,100263,16 +40040,Jeanne,28031,10871,8 +40041,Na Na,219572,1087171,8 +40042,Hiram Perkins' Son,141868,89609,2 +40043,Amy Morrel,373977,1375948,7 +40044,Mąż Róży,38875,6643,1 +40045,Grand Duchess Anna Dmitrievna,44208,223051,5 +40046,Rachel Fowles,20919,100242,6 +40047,Yu Zhen,264264,1339,0 +40048,Cab Driver,4344,1123124,8 +40049,Sheriff Depford,183412,27737,0 +40050,Piglet (voice),24926,5247,1 +40051,Lee,18072,82661,3 +40052,,166207,1396359,11 +40053,Hank Green,42794,194630,0 +40054,Cambaceres,195068,29601,14 +40055,Princess Urraca,16638,9763,3 +40056,Merry Levov,326285,501,2 +40057,Sarah,122857,585673,4 +40058,Ashley,88042,935720,10 +40059,Mahshid's Mother,43761,1339653,5 +40060,Mr. Kimball - Travelers Aid,188468,33005,15 +40061,Reporter,1726,133121,46 +40062,Munro,348631,565222,4 +40063,Petr's mother,46982,1537643,9 +40064,1965 Buffalo Bob,335970,1718100,30 +40065,Kemo,9870,81992,15 +40066,Sansky,358980,102131,5 +40067,Judge,332079,13969,21 +40068,Joe,228970,1118080,15 +40069,Camryn Barnes,46169,87570,0 +40070,General,67375,940628,38 +40071,Pemberly,84105,16591,15 +40072,Michael,17046,81260,1 +40073,Max Rosenbaum,302528,2641,2 +40074,Roger Skinner,117251,190098,20 +40075,Esther,52221,10871,5 +40076,Student #4,15909,1076561,9 +40077,Teddy,1589,63311,2 +40078,Helen Hale,99567,14306,3 +40079,Sanjay,82687,205179,5 +40080,Grave Digger,203833,42445,9 +40081,Oscar Wilde (voice),110392,11275,9 +40082,Kenny Becker,348507,27504,4 +40083,Lok Tin Hung,25655,78871,4 +40084,Bus Driver,244539,1360002,8 +40085,Audience / Orchestra / Mr. Brown - First Minstrel / Second Minstrel / Interctors / Stagehand,51362,8635,0 +40086,Doll,60759,101722,12 +40087,Marika,18392,7906,6 +40088,Child Beth,6933,51461,15 +40089,Prima Mary,42473,1405822,21 +40090,Kapo,31890,108571,12 +40091,Matt Kearney,125409,8784,0 +40092,(uncredited),172445,108102,8 +40093,Dynamiter (uncredited),14615,34610,91 +40094,Ed Santlin,270015,33969,9 +40095,Claudia,156180,637852,6 +40096,Şaban,31547,97272,0 +40097,Linda,241930,1398012,7 +40098,Airman Blinken,53619,8635,7 +40099,Rubicon Beziqui,57683,54865,8 +40100,Mephisto,114242,12325,1 +40101,Karen Tandy,40060,30043,2 +40102,,31512,556785,26 +40103,Eddie Popko,50327,173196,4 +40104,Betty Oriol,150065,145209,15 +40105,Lucy Cullins,17007,2395,0 +40106,Tournament fighter,9461,62414,6 +40107,Kelly,304336,19456,4 +40108,William the Headwaiter (uncredited),17136,1278060,49 +40109,Brook,169726,90643,7 +40110,L'ami,271919,24754,3 +40111,Interrogator A,302026,55877,7 +40112,,376934,1365817,18 +40113,Pflegerin,2349,24061,8 +40114,Marcel,28212,20853,1 +40115,Hilda,30995,1207031,9 +40116,Madam at Dieppe Hotel (uncredited),52440,120778,49 +40117,Ruby,348631,1653905,19 +40118,Stella,13169,89585,6 +40119,David,26636,95900,1 +40120,Mrs. Larson,33343,171927,10 +40121,Ellie Walker,281215,83433,3 +40122,Blueprint Dancer,243683,1398192,82 +40123,Kirin,176983,1253070,22 +40124,"Marcel, le barman",110573,1655,6 +40125,Emmerick Gagnon,359413,1508583,12 +40126,Party Guest,128669,34818,34 +40127,Tom,382598,24895,0 +40128,,279096,1293394,36 +40129,Squatter Boy,209112,1696230,111 +40130,Stabsgefreiter Kowalski,19430,39854,9 +40131,Inspector Col. Sir Reginald Nielson,38437,117074,1 +40132,Corinne Lucas,106016,96300,4 +40133,Dustin,540,86257,11 +40134,Ally,344906,1478021,3 +40135,Leung Chang's mother,41380,1397650,15 +40136,Giovanna Abbastanzi,139563,25810,0 +40137,Teo Thompon,25132,6860,0 +40138,Ikebana Instructor,153,1165229,16 +40139,Jack Frye,2567,6413,9 +40140,Captain Borg,13391,216453,12 +40141,Max,83430,45152,2 +40142,Chancellor Fenster,95504,34320,10 +40143,Dr. Schmidt-Ott,3037,20266,7 +40144,Sam,59678,66431,1 +40145,,206277,71514,2 +40146,Teresa Delgado,28438,100986,5 +40147,Guo Nan,16687,1183808,6 +40148,Melbourne Detective #2,13777,75264,17 +40149,Louis,237584,191202,8 +40150,Ty,307479,545328,6 +40151,Peter Standish,104211,11493,0 +40152,Roaring 90's Club Doorman,64928,3262,21 +40153,Lieutenant Bo Swedenhielm,76380,34773,2 +40154,Indio,121329,564603,4 +40155,Eva von Heerle,154972,1171336,1 +40156,Varya Ivolgina,63958,238311,7 +40157,Isabelle Tellier,1254,6548,2 +40158,Drew McDonald,36968,90131,2 +40159,Herzogin Ludovika von Bayern,459,6252,2 +40160,Jenny's Mother,153162,3346,21 +40161,"McCall, the Magistrate",31773,34280,11 +40162,Michael Vasanth,63825,85720,0 +40163,Julio,55347,235850,13 +40164,Cocchi,58402,33815,6 +40165,Cheetah,11653,1610931,13 +40166,Winchester Rep Assistant,616,9186,3 +40167,Carabiniere Funerale,59040,1688207,22 +40168,Peter Thompson,24757,96172,2 +40169,Abner Lundbert,12683,2714,2 +40170,Zhou Susu,413198,1172609,6 +40171,Sailor Graves,59828,88649,10 +40172,Nigel,156711,984422,26 +40173,Jack the Drunk (uncredited),69,150094,43 +40174,Prince Caspian,2454,25130,0 +40175,Stevie,320588,1538573,19 +40176,türkischer Juwelier,308174,1603637,21 +40177,François Donge,63224,11544,0 +40178,Dr. Allen,362541,167139,4 +40179,Fight Spectator (uncredited),28000,1600059,50 +40180,Lucinda Bentley,44536,13325,2 +40181,Lord Antonio,23750,110455,12 +40182,Security Guard,271677,1770600,12 +40183,Barro,24094,11160,36 +40184,Trustee #2,28090,9654,25 +40185,Jed,117120,71581,9 +40186,Another Cowboy,333484,1240490,40 +40187,Maria,9753,59387,8 +40188,Raza,1726,57452,5 +40189,Billy Kipp / Julian Kipp,80941,34745,13 +40190,Fred Ulm,45215,1018011,14 +40191,Pompier,98277,1849117,40 +40192,Gracie,153795,973998,5 +40193,Jade,271185,137424,11 +40194,Tricia,74777,572407,1 +40195,Beauclere - Gaulist (uncredited),22584,139221,24 +40196,Poor Mother's Sick Daughter (uncredited),36874,1110482,2 +40197,Santa,93858,999814,4 +40198,Anna,379335,1568234,5 +40199,La mère,22618,543715,2 +40200,Alfred Pennyworth (voice),40662,120560,14 +40201,Pianiste New York,352025,1745552,24 +40202,Tyra,256962,1278867,13 +40203,Harry,42215,25666,4 +40204,Jyoti S. 'Pinky' Verma,55376,222268,9 +40205,Her,298165,234586,1 +40206,Bart Laish,138486,3088,0 +40207,Dr. Jay,42487,113935,4 +40208,Craig Peterson,31150,99628,6 +40209,Jake,158750,142741,1 +40210,Carlos (voice),38579,41798,2 +40211,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,86017,17 +40212,Tony David (uncredited),323675,76126,70 +40213,Biddy,59075,219382,4 +40214,Male Nurse,450530,1496037,6 +40215,Pundit Darbar,5319,43413,3 +40216,Policeman 2,38526,992757,10 +40217,Michael Age 12,60457,239965,5 +40218,Himself,23128,110923,9 +40219,Diane Harris,77583,1213935,8 +40220,Maggie Hobson,16410,8238,2 +40221,Pearl Proctor / Peep-Bo,218351,111581,1 +40222,Rob,51442,41266,7 +40223,"Haha, Chieko",135335,145253,1 +40224,Passarino (Don Juan Triumphant),76115,577649,15 +40225,Picot,74822,27880,7 +40226,Clip from 'Singin' in the Rain' (archive footage),33740,41226,19 +40227,Ruben,90231,228327,15 +40228,Marina Borisovna,63584,86844,1 +40229,Firmin,286512,25048,1 +40230,Michael,27711,1192158,4 +40231,Miriam Hart,198277,2229,4 +40232,American POW,227306,1394443,45 +40233,Porter,18015,1291803,5 +40234,Grace,316885,1662449,15 +40235,Charlotte,79995,34901,9 +40236,,365323,1009362,1 +40237,María Candela,366860,1393197,2 +40238,Helgart,308174,38392,4 +40239,Rorschach Test Subject (uncredited),36373,15992,21 +40240,Bertuccio,28710,1162536,5 +40241,A Ning (as Sichun Ma),411442,1476994,3 +40242,Actor in 'Our American Cousin',109716,89733,85 +40243,Orin,73501,1866592,15 +40244,Rick,214756,2391,8 +40245,Orville Gleason,239513,84707,6 +40246,1. YK-sotilas,148435,586233,6 +40247,Reynolds,109258,41720,13 +40248,"Red, the Brakeman (uncredited)",50073,4303,12 +40249,Border Inspector,215379,1385279,16 +40250,Stagedoor Johnny (uncredited),47758,122984,14 +40251,Amerigo Santarelli,217648,12341,5 +40252,Brendan,24874,52420,6 +40253,USS Omaha Officer,52454,99000,20 +40254,Evan,345925,1477961,8 +40255,Pauli Bergström,22554,88918,1 +40256,Jenny,35908,86206,7 +40257,Seo Kwang-Hyun,367882,1731537,7 +40258,playboy,108535,1597847,22 +40259,Dragoslav Mihajlović 'Vampir',57419,1050849,19 +40260,Owen,46660,59115,4 +40261,Saskia,159514,45746,15 +40262,Alex,23823,90755,1 +40263,El Mariachi,1428,3131,0 +40264,Halil,284250,1718009,3 +40265,Brother Mathias,61225,2505,4 +40266,Manny,14142,6396,9 +40267,PC Marsh,299780,145166,22 +40268,unknown,6636,50927,0 +40269,Veterinarian,21070,32100,1 +40270,Jesse Oliver Aarons Jr.,169009,121603,1 +40271,13-Year Old Cooper,257344,1683838,44 +40272,"Mr. Burton, Clerk",290379,131612,14 +40273,Yakuza,3782,125016,26 +40274,Charlie,196065,1184883,5 +40275,Paul Delarue,266285,53259,6 +40276,Isabella,75578,43708,3 +40277,Malka,52221,56910,3 +40278,Andrew Knightley,107985,11109,1 +40279,Kapteeni Yrjö-Ylermi-Armas Kuortti,55754,53509,3 +40280,Verksmesteren,87654,1477361,30 +40281,Second Boy in School,64167,8397,12 +40282,Pharmacist,383538,1088483,19 +40283,Inspektor Lucien Dufour,91380,11219,5 +40284,Claire Addison,73527,4730,1 +40285,Donna al mobilificio,53805,89144,20 +40286,Angela Wenz,18575,1604718,5 +40287,Du Gang,63441,1277939,18 +40288,Kim,62838,520,13 +40289,Master Hung,11537,1173733,6 +40290,Maude,447758,30083,5 +40291,Autohändler,27637,7819,11 +40292,Charlotte Castang,61991,4273,0 +40293,Wu Bingxiang,69310,1418482,28 +40294,A Red Army Soldier,85715,1870841,6 +40295,Soraya,155011,232115,3 +40296,Brent,82929,909226,7 +40297,Singer at Party,39013,1163721,21 +40298,Assay Assistant,176867,119542,23 +40299,Jenny Fong,17082,1196107,16 +40300,,149868,1173680,8 +40301,Dr. Spiegel,60086,11641,14 +40302,Bar Owner,54523,564603,5 +40303,Abraham Lincoln,161187,126471,0 +40304,Der liebe Gott,1659,18426,7 +40305,Lara Lipski Lewis,108391,175660,1 +40306,Anaïs,64481,20851,3 +40307,Hunter,384594,1489357,5 +40308,Lauri Mustonen,22554,88917,0 +40309,Joe Adams,44626,4958,0 +40310,Fräulein Andacht,798,11932,5 +40311,Max Murphy,108812,1234567,8 +40312,Detective Jenkins,30361,1769248,24 +40313,Peasant Woman,286789,1137469,12 +40314,Josef,2734,27649,26 +40315,Bob Hurley,1825,33011,2 +40316,Eva Braun,47536,45699,6 +40317,Cpl. Baumann,7454,973,0 +40318,Walter Eastwood,30792,3796,0 +40319,,104343,1697250,8 +40320,,319513,1060228,3 +40321,War Pup,76341,1734189,46 +40322,,44442,1275875,8 +40323,Teacher,356191,1225640,10 +40324,Mrs. Iris Mountbatten / Chastity,16378,10735,12 +40325,Gardien 3,59118,1709904,25 +40326,Percy Walker,22894,17764,8 +40327,Ashley,415633,1678281,2 +40328,JT Hawkins,18925,135799,3 +40329,Gabi,34588,1839763,22 +40330,,82687,149829,11 +40331,Woman Cop,28090,1719891,36 +40332,Amy,354128,1391447,2 +40333,Blake Cantrell,147829,82216,1 +40334,'Pinky' Grayson,20644,34234,8 +40335,Kathryn Ward,121234,27932,2 +40336,Fabrice,13713,28255,0 +40337,The Musician's Friend,42553,17753,13 +40338,Fattuh,157843,1486974,13 +40339,Hilary Bachman,137528,1196007,2 +40340,,321142,183155,7 +40341,Bart Paterson,1790,97281,8 +40342,Steve Hunter,94744,30900,4 +40343,Biff Carter,194509,79246,5 +40344,Suzanne,24123,1232657,13 +40345,Martin S. Harrison,57684,81182,12 +40346,David,62492,35029,0 +40347,,12449,126726,14 +40348,Johnny First,45227,1190345,0 +40349,Beverley Sloan,137746,35634,0 +40350,Jack Bruhn,37481,2753,1 +40351,Stefano,52808,544575,5 +40352,Football Player #2,41402,1753330,21 +40353,Stevie Worden,85483,141692,4 +40354,Das Mirabellen-Mädchen,1427,17067,10 +40355,Guard #1,331313,1215021,26 +40356,,197788,21510,5 +40357,Mrs. Hawks,157343,14033,16 +40358,Dr. Jahn,178446,36709,7 +40359,The Duke of Cornwall (as Charles Brooks),134155,1796923,11 +40360,Rosetta,13551,11703,10 +40361,Rusher of Din - Pool Player,36751,5169,16 +40362,Colourman,245700,207557,48 +40363,Mona,210940,119245,1 +40364,Winslow Boy,3580,55494,57 +40365,Robert 'Rab' Henshaw,214100,3064,5 +40366,Helen,1773,19022,3 +40367,Marjorie,17347,87678,6 +40368,Bit Part,31672,100956,11 +40369,Marco,43544,129570,2 +40370,Emmet Vale,209112,1494289,69 +40371,Reggie,172897,35028,2 +40372,Matron Brandon,20806,127023,7 +40373,Offizier der blauen Armee,2197,23306,6 +40374,Young Sean,10740,52414,1 +40375,Taxi Driver,199575,1438905,35 +40376,,109587,88054,24 +40377,,14753,58609,12 +40378,,254575,231123,6 +40379,Pinkette,409447,76742,17 +40380,Himself,80324,12013,5 +40381,Sheriff,333484,52884,37 +40382,Willy Williams,320588,8212,8 +40383,Mole,84450,1329901,6 +40384,Un jeune,98277,1849110,29 +40385,Vaseegaran's Father,148284,1666852,11 +40386,Himself,16800,938994,4 +40387,Daka,239563,3489,2 +40388,Dispatcher,102382,1657469,40 +40389,Elderly Wife 1,242042,20765,34 +40390,Amber,313922,17606,1 +40391,Andy Bellamy,51049,188368,2 +40392,Mabel,99374,113655,9 +40393,Jenna Malloran,33339,1727842,3 +40394,Passer-by,2017,81097,12 +40395,Gilpin - Student Pilot,250332,30510,49 +40396,Ellen,445916,149174,6 +40397,Ola,278867,1334724,2 +40398,Sheriff,72251,4606,8 +40399,Aitkin (butler),35852,114833,4 +40400,Bart Simpson / Maggie Simpson / Ralph / Nelson / Todd Flanders / TV Daughter / Woman on Phone (voice),35,200,2 +40401,News Reporter,381518,137683,15 +40402,Himself,340053,117075,1 +40403,Xian,19545,1482300,25 +40404,Mike Lobo,103073,6497,6 +40405,Terry Drummond,433244,7676,3 +40406,Marv's Wife,10201,1219121,13 +40407,Scrawny Kid,345922,1272952,26 +40408,Young Ottway,75174,574093,10 +40409,Herself,376502,1712417,2 +40410,,110148,62036,6 +40411,Becky,2295,5916,4 +40412,Sister Anne,84626,5826,0 +40413,Мария Семёновна,409082,271927,6 +40414,Bob Snerensen,84060,1129680,2 +40415,Padre di Luca,73869,129076,1 +40416,Harry Dycker (as Dan Dayton),73313,7141,6 +40417,Boy's Father,57924,1076806,7 +40418,Bonnie,25241,1765268,13 +40419,Julie Clingstone,119592,1070461,0 +40420,Marina,121516,1859981,16 +40421,Takejima,188684,1056768,2 +40422,Grandpa Baba,72207,43115,19 +40423,Muddy (voice),44283,97832,3 +40424,"Johanna, Mary's Follower",64942,1125483,13 +40425,Albert Wimschneider,10129,23697,1 +40426,,415358,1386192,3 +40427,Lenny,228034,64825,16 +40428,Archie Brown,45335,69248,4 +40429,Dr. Burke,152737,84080,13 +40430,Soldier Sam,16455,5538,8 +40431,,128237,1107944,7 +40432,Party Guest,43811,148419,59 +40433,County Doctor,9828,49706,12 +40434,Van Elst,42678,29137,5 +40435,Andrada,303982,142173,11 +40436,Coach Pulcifer,218784,61115,21 +40437,Evan Slater,291,4333,11 +40438,Bullseye / Buster / The Monkey / Pigeon (voice) (uncredited),10193,15831,44 +40439,Himself,191502,1243,3 +40440,Milutin Ivković 'Milutinac',255647,226141,4 +40441,Pelageya Ivanovna,51284,119209,3 +40442,Malenstwo,82027,592912,1 +40443,Carson Wells,6977,57755,3 +40444,Sherry Bellows,24810,89247,9 +40445,Britt Canfield,147903,1009,0 +40446,Mr. Randall - The Minister,229221,121327,16 +40447,Ranger Tony,41574,1583289,10 +40448,Cindy,20846,11024,0 +40449,,65044,96963,0 +40450,Beta,390,5279,6 +40451,Tom,9629,40241,3 +40452,Baptiste,210615,15185,3 +40453,Sydnee,244316,1066284,18 +40454,Helicopter Pilot,255160,1898238,24 +40455,Isabel - age 7,14804,1901814,32 +40456,Laury Jackson,15697,83441,6 +40457,Ballard,311324,5293,2 +40458,Johnny Doran,13827,77700,6 +40459,Seyid Mustafa,371741,35434,10 +40460,Danny Dietz,193756,46593,2 +40461,Arch Strobie,43384,14518,6 +40462,Anne,257081,120710,17 +40463,Andy Lau,369406,1349381,1 +40464,Danseuse station-service 1,274483,1676878,13 +40465,Companion,109716,153260,23 +40466,Légionnaire Tom Brown,42641,4068,0 +40467,Nicole,60965,232039,2 +40468,poliziotto,58611,45580,10 +40469,Bob,397422,1230389,27 +40470,Mr. Shores (narrator),15697,3641,3 +40471,Reuben Tishkoff,298,827,12 +40472,Peteris' Mother,166886,1067460,3 +40473,The Great Rinaldi,28363,35194,3 +40474,Tom,73565,1247,0 +40475,Elisa,284305,512958,5 +40476,Iva,113638,89949,3 +40477,Prisoner (uncredited),213681,1771603,71 +40478,"Housekeeper, Claudia Antonovna",71051,86681,4 +40479,Renee,8842,11703,3 +40480,Minor Role,28421,86824,21 +40481,,5618,35608,9 +40482,Museum Tour Guide,32657,1678622,59 +40483,Jack Chandler,34623,95563,9 +40484,Jarvis (voice) / Vision,99861,6162,11 +40485,Fortinbras,261439,55636,8 +40486,Brooke,105528,1532420,17 +40487,Officer Bevins,15022,948587,15 +40488,Raphael,147939,1127746,2 +40489,Themselves,211411,1788311,4 +40490,middle-aged man,59147,32562,3 +40491,Carol,322266,1186515,6 +40492,Jazz Singer,153,75491,11 +40493,Predsednik suda Micić,148034,1052117,9 +40494,Santa at Orphanage,27414,1206246,34 +40495,Nadine,13279,74577,13 +40496,Bow Tie,310888,1560227,11 +40497,Florenze Barrett,1723,18859,3 +40498,Andrew Hird,294016,1374150,18 +40499,McMillan,428687,1457999,8 +40500,Courtroom Judge,70368,1551625,7 +40501,Deirdre,59726,1185476,10 +40502,The King,92341,1555835,9 +40503,Sally,408272,1545689,6 +40504,Claire,119569,51988,0 +40505,Bertha Mae,14414,1894773,7 +40506,Edmund,46915,71450,8 +40507,Albert 'Bébert' Falco,332794,1424100,5 +40508,Collector Girl,425774,1707939,45 +40509,Bob,356900,9657,2 +40510,Melanie,22792,1743,4 +40511,Henry,84340,139541,9 +40512,Rich - Chief Henchman,52864,3341,8 +40513,Col. Kramer,11046,97935,12 +40514,Garlic,317723,1413107,7 +40515,Religious prisoner,81541,237623,3 +40516,Hagan,81616,1224391,11 +40517,Tess,209406,11514,1 +40518,Colonel,29694,40960,16 +40519,Miss Geraldine,42188,1630671,13 +40520,Miss Chilton,24685,20768,3 +40521,Pedestrian (uncredited),337339,1636801,58 +40522,Nina Helmich,28938,20259,6 +40523,Dennis,7942,11108,0 +40524,Swifty,194101,1169853,1 +40525,Det. Graham Waters,1640,1896,1 +40526,Mrs. Waterbury,179066,1166029,62 +40527,Inspector Gadget,19766,67711,0 +40528,Cashier,9812,156611,8 +40529,Clarissa (uncredited),246127,1508658,17 +40530,Charles,245775,267603,14 +40531,Lord Harry Almsbury,104720,32128,2 +40532,Martinez,26152,146488,10 +40533,Neil Patrick Harris,64328,41686,8 +40534,TV News Reporter / Cult Leader Gleh'n,14923,78798,59 +40535,Psychiatric Hospital Therapist,2355,23970,16 +40536,Himself,394668,15832,5 +40537,Claude Ridder,36140,24422,2 +40538,Der alte Krehlert,11869,49232,7 +40539,'Golden' Raj,300983,85684,12 +40540,Blake,345922,143260,13 +40541,Dave,26469,145191,2 +40542,Female Student #1,68684,1440057,34 +40543,Himself,338063,1581555,6 +40544,Greg,32338,1528891,11 +40545,Rick,72648,87475,2 +40546,Citizen Who Speaks No English,228647,1469574,49 +40547,Herself,366696,1753501,3 +40548,Elena,10268,64540,1 +40549,Gandhi,11647,130561,10 +40550,Vitya from works,49577,1687768,8 +40551,Employment Clerk,31899,106584,7 +40552,Fru Randel,377290,1211746,10 +40553,Irate Man (uncredited),73430,14455,16 +40554,Julie,314635,1630505,3 +40555,,115427,49673,14 +40556,Machen,791,11833,10 +40557,Kuzakov,72949,13709,4 +40558,Mr. Martin,104973,30956,10 +40559,Bennett,184098,214108,11 +40560,Shalmili,61203,545635,3 +40561,Dean West,8669,33668,15 +40562,Damas Dancer #4,268920,1542882,39 +40563,Brenda,95037,1130966,10 +40564,Sparks Moran / Agent XK150 / Narrator,48202,11057,2 +40565,Governor Weatherby Swann,58,378,7 +40566,Mahesh,275269,85588,8 +40567,Conny Scheffer,85699,5648,7 +40568,Mr. B,12447,6844,2 +40569,Mifanwy Conway,27112,96995,1 +40570,James,180998,1295104,2 +40571,Lambert,56589,218678,7 +40572,Koban,15712,588715,8 +40573,George Vandermeer,77949,176191,12 +40574,Tannu,68987,145628,3 +40575,Nina,310137,154048,5 +40576,Prinz Thabo,374247,1543373,2 +40577,Juan Castillo,78096,1187553,7 +40578,Biff Grimes,180635,4068,0 +40579,Herself,310593,1627270,26 +40580,Violet Barnes,72207,5081,1 +40581,Alfons,79362,1643968,15 +40582,Tracy,28026,70767,1 +40583,Shadow 2,270759,1330448,4 +40584,Captain Mendoza,9629,5565,6 +40585,L'homme à la chèvre / The Goat Man,54563,11550,7 +40586,Junkie,78691,1741740,15 +40587,Oda von Siering,82708,894116,0 +40588,Alejandro,325385,19579,1 +40589,Mrs. Nealberry,242042,1069644,27 +40590,Charles ('Le mariage'),98302,24903,4 +40591,Anna Religa,298040,589433,4 +40592,,85377,122468,2 +40593,Richie,3539,4795,3 +40594,Griff,112973,974420,3 +40595,Ed,18495,4776,6 +40596,Klaas,164366,27959,4 +40597,Jin (voice),14411,12099,7 +40598,Harry,54715,15799,3 +40599,Taka,616,9190,7 +40600,Alex,24624,1296747,12 +40601,Ulysse,26152,146499,23 +40602,Police Officer #1,58244,1504594,27 +40603,Yuri,9900,60949,21 +40604,Cele,302528,1845453,17 +40605,Himself,15258,119713,91 +40606,Mrs. Winthrop,228066,583815,12 +40607,Surendran/Ashan,398786,1629008,3 +40608,The Preacher,290370,57172,2 +40609,Footman #1,267935,1182657,12 +40610,Kochammini,134474,591074,9 +40611,Sono fujin (His wife),135335,1102163,7 +40612,,320453,1171071,8 +40613,Victor,319179,220299,1 +40614,Olavo,21752,87836,2 +40615,Rocky Jones,154371,101958,0 +40616,Hummel,24094,97469,34 +40617,Dr. Freud's Niece,49852,143548,11 +40618,Himself,329243,33663,1 +40619,Rave Girl,68163,102898,4 +40620,Ralph,15073,8399,6 +40621,Son Goku,39107,90496,11 +40622,Biker,27814,106237,11 +40623,,133783,1476857,19 +40624,Erali,19495,19487,1 +40625,Michael,99367,85139,7 +40626,Antoine,319340,84433,3 +40627,Samuel,63612,44266,0 +40628,Akshara Pandey,323426,1435459,3 +40629,Doris Metzger,8272,8492,10 +40630,Det. Sgt. Mike Duncan,59895,121260,7 +40631,Himself,181454,1735507,3 +40632,,44716,1807469,21 +40633,Mr. Baumgarten,92285,146712,4 +40634,Rachel Meyer,38021,20798,5 +40635,M.C.,107781,1042609,9 +40636,Himself,307081,1746888,23 +40637,Aldo / Samir Uzmin,310126,120019,0 +40638,Herself,73241,1106335,8 +40639,Reverend Gerald Lundy,43497,105007,12 +40640,Lennart Sundström,16076,79168,1 +40641,Ruiji Fujiwara,72592,233523,8 +40642,Tamy,9765,59020,2 +40643,Himself,25358,58926,0 +40644,La petite fille aux tresses,47226,1564567,15 +40645,Pete,127329,986480,8 +40646,Hotel Waiter Guido,37710,931543,26 +40647,Captain Jay Fuller,57201,12834,7 +40648,Gwendolyn,151509,1026224,4 +40649,Mařenka (zpěv),51902,44212,5 +40650,Verchiel,50126,34274,4 +40651,Stephanie,228028,39171,11 +40652,Ray Zumbro,1950,335,7 +40653,Tyler,285270,967617,16 +40654,The Doorman,173494,1871450,4 +40655,Leonardo Mattioli,142982,5964,0 +40656,Norman,42122,14011,1 +40657,Tarun Sanyal,20623,1245805,22 +40658,Minor Role,43811,1410389,28 +40659,Catering Assistant (uncredited),213681,1771584,55 +40660,Shih,10004,61833,11 +40661,Jumbo Falsetti,2001,124909,8 +40662,Fatih Karakuş,77862,582602,4 +40663,Cameriere,162056,129576,5 +40664,Mr. Licht,336029,231035,14 +40665,Jennifer,64015,102880,1 +40666,Will,39517,2968,9 +40667,Friend,4923,40041,3 +40668,General Black,257912,8693,5 +40669,Commander Chen,311324,1254211,7 +40670,Captain Crothers (voice),13355,44994,4 +40671,Andrej,257534,1297687,2 +40672,Eli,334538,2978,2 +40673,Delvaux,4191,3573,6 +40674,Hélène / Fancy Dress Girl #2 (voice),23566,45923,7 +40675,Young Guard,345918,1772038,16 +40676,Yasu Hiruta,32690,55666,10 +40677,Hotel Guest,379019,1793920,13 +40678,Caligari,30449,3813,4 +40679,Matsuhiro (voice),16390,91387,7 +40680,Rose,46729,84466,9 +40681,Dhuraipandi,70988,580847,2 +40682,Young Edith,201085,1511807,7 +40683,"Jeremiah ""Jerry"" Mercer",8292,37934,2 +40684,Lehrer,8316,54024,17 +40685,Mr. Parson,76640,5048,13 +40686,Nebula Wade,34766,66896,1 +40687,Arnold,117098,82704,2 +40688,Himself,333103,35806,8 +40689,,320005,1427408,5 +40690,Donny,234868,87027,3 +40691,,96106,1281104,20 +40692,Mason,79316,96018,3 +40693,Mārtiņš Grundmanis,144331,1192373,12 +40694,Yuji Tokaji,25716,1059875,7 +40695,D.C Teen,339419,1650209,56 +40696,"Zita, the Amazon Queen",23340,90001,3 +40697,Ellen,8247,12932,12 +40698,Matt Hamill,74447,221082,0 +40699,Feuerbringer (Stimme),328032,32586,8 +40700,Lineu,156180,130037,1 +40701,Ganya Ivolgin,63958,238309,4 +40702,Toby,22494,92574,4 +40703,Lucas Thomas,61348,55084,2 +40704,Ned,2965,84021,11 +40705,Riley Stuart,128841,1223886,9 +40706,Nettie,90800,939744,1 +40707,Rainbow: Staff of Nutbourne,83015,27941,4 +40708,Dr. J. C. Asthana,19625,35779,5 +40709,MacNeil,47412,138887,0 +40710,,355111,92076,10 +40711,Fairy Godmother (voice),39045,56540,2 +40712,Alpinistka,314371,37982,6 +40713,Duane,18722,157015,28 +40714,Midinette (uncredited),1976,1433378,33 +40715,Karen Caldone,70821,1519253,6 +40716,Magda Säll,41764,107914,11 +40717,Modelo Ruiva,70666,1863903,45 +40718,William Furno,264646,29020,3 +40719,Harry Flack,80032,12312,3 +40720,Lecteur,1421,1723426,11 +40721,Jean-Louis Gergorin,320318,146487,8 +40722,Yaone (voice),155765,90569,12 +40723,Cal,98864,9880,1 +40724,Poppy,374461,1192759,4 +40725,Chuck-a-Luck dealer,28894,102326,6 +40726,Laurel Cooper Rogers,119639,39113,1 +40727,Beryl / Cheryl (voice),339669,3051,1 +40728,Weird Al Yankovic,24150,71041,13 +40729,Lorenzo,186988,1377525,11 +40730,Himself,26465,86462,6 +40731,Professor Antonio Martinelli (flashback a inizio film),54309,110544,17 +40732,Greta,39334,122680,4 +40733,Imam,4913,39985,2 +40734,Mabs Tucker,33510,8436,1 +40735,Vanessa,227964,1161887,1 +40736,Padre di Irene,186988,1878881,7 +40737,Mary Anne Creed,312221,119598,4 +40738,Marco le vigile,64934,5440,8 +40739,(uncredited),68822,1460995,38 +40740,Paula,22387,93805,1 +40741,Theo,1278,16269,2 +40742,Inspector Fred 'Nosey' Parker,42989,30706,1 +40743,Auditioning Soprano,43809,101772,31 +40744,Young Man,137321,66743,7 +40745,Tim,17745,82342,8 +40746,Sexy Guitar Guy (uncredited),215881,1750429,15 +40747,Doctor,198227,1178612,5 +40748,Sergeant,118889,951965,69 +40749,Kate Hill (as Ann Todd),56558,935345,4 +40750,Vontae Mack,200505,172069,12 +40751,Beaker,30411,106250,15 +40752,Jake,311291,1299719,7 +40753,Sheriff,47410,81059,9 +40754,Suit #2,19995,169676,24 +40755,,348315,1486374,14 +40756,Greg Jeffries,36251,107040,3 +40757,Chris Jackson,52203,96759,7 +40758,Vovka (voice),160046,86762,1 +40759,Constance,34840,6295,6 +40760,Detective Kwong,42120,1135394,12 +40761,Samantha,59419,66579,1 +40762,Woman on Bench with One-Hitter,271718,1584938,30 +40763,Abusive Junkie,90120,1685833,7 +40764,Feather,172785,1189038,6 +40765,Jack il silenziatore (il killer),222517,118501,5 +40766,(voice),16171,79889,41 +40767,Vaneetha,72207,125167,9 +40768,Paul,12707,91624,7 +40769,Frog (voice),10193,1381777,30 +40770,English Teacher's Assistant,11137,107943,10 +40771,J. J. MacMahon,75778,42566,4 +40772,,121530,1195790,2 +40773,Angela Hausman,128311,1475,3 +40774,Crabby (voice),49013,1224968,21 +40775,Deirdre Bowen,128216,1332934,27 +40776,Marketing Executive #2,58244,21293,38 +40777,Mai,25784,143433,2 +40778,Lust,18209,21462,2 +40779,Jan Kania,36264,2830,0 +40780,Himself - Roastee,296192,6952,1 +40781,Lenny,10760,66536,5 +40782,,420648,106817,3 +40783,Sarah,73198,226537,5 +40784,Cobb,146216,782,34 +40785,Vidya Ganpat Belwalkar,378227,1301151,4 +40786,Her Ancient Husband,51036,1879502,39 +40787,Manuel Gomez,2982,29282,4 +40788,,284189,1682647,6 +40789,Miriam,6076,47785,22 +40790,Johanna Price,183218,40208,3 +40791,Policeman,14589,1010145,31 +40792,Thara (voice),166076,92525,8 +40793,,328692,229486,1 +40794,Jenny (voice),127380,3092,4 +40795,Office worker,25500,1206418,3 +40796,Anchorman,213681,1771523,21 +40797,Ven,298935,207389,9 +40798,Woman 1,274857,1543044,41 +40799,Bus Driver,8457,147499,16 +40800,Yael,288977,993774,2 +40801,Kaa (voice),59803,932358,9 +40802,Himself,37003,82427,3 +40803,Maximilian de Winton,45211,31349,7 +40804,Celia Scofield,48770,156003,3 +40805,Ritchie,79500,78415,5 +40806,Mr. Hinkle,106635,1176932,13 +40807,Vargas,419459,1669956,8 +40808,Narrator - India (voice),173205,77234,1 +40809,Don Vila,36785,1195524,3 +40810,Helena,75969,47852,1 +40811,Tracy Turnblad,2976,29224,5 +40812,Prof. Hecht (as Don Becker),51736,1178306,8 +40813,The Doctor,200324,580811,8 +40814,Himself,215646,1287514,1 +40815,Manders,116973,81942,14 +40816,Party Person,55347,211768,9 +40817,Male Teen,92635,1099223,10 +40818,Roger,323665,205854,5 +40819,Boy 3,14882,77516,1 +40820,Paranoid Caller #2,24963,1494063,18 +40821,Athos,64046,238488,1 +40822,,72826,1032948,3 +40823,Akane Okajima,121725,127220,5 +40824,Ghost of Christmas Present (voice),48874,81842,7 +40825,Moe Fingers,12787,4253,2 +40826,Florence Berkowitz,369524,5699,7 +40827,Daviti,128412,1489476,7 +40828,Prisioneiro Espanca,70666,1863912,58 +40829,Colonel in Demo,228647,1108688,39 +40830,,278095,80999,1 +40831,Al,20028,85493,9 +40832,Inge,82083,544724,13 +40833,Himself (archive footage),253337,84678,0 +40834,Susan,288952,5960,2 +40835,Oliver,89492,12074,8 +40836,Bosko,71725,1047281,4 +40837,The Prime Minister,42996,2435,8 +40838,A.J. Cohen,2742,1239516,16 +40839,Daisy,56800,21606,4 +40840,"Dana, Doctor Feld's Wife",82696,17640,6 +40841,,131478,536707,5 +40842,Sara,167424,1822699,14 +40843,Emergency Services Driver,2001,1255311,36 +40844,Haakon Haakonsen,71805,563838,0 +40845,Lt. Piotr,13614,236188,7 +40846,Voice Cast,222935,59051,43 +40847,Dolly,68174,4432,4 +40848,Mr. Mohan,38150,119792,8 +40849,Zhuge Liang,12289,43661,3 +40850,,74481,35763,9 +40851,Harper,75137,144863,1 +40852,Knute Rockne - Age 4,43812,1673818,73 +40853,Barman,198277,1423810,13 +40854,Kate,403119,86132,0 +40855,Jack's Girlfriend,9914,60421,17 +40856,Scott “Squishy” Squibbles (voice),62211,21198,5 +40857,Greg,218778,119589,23 +40858,Koldo,348537,24977,3 +40859,Gerda,16174,184816,1 +40860,Fiamma Coronna,35052,77122,2 +40861,Anders,2061,112317,15 +40862,Janet,70695,21859,10 +40863,Jen,260001,109560,3 +40864,Ethan Galloway,241930,1229689,0 +40865,Frankenstein,228066,4391,4 +40866,Macduff,133448,26259,2 +40867,Funeral Director,26486,156466,44 +40868,Cowgirl,8988,1742435,84 +40869,Inspector Parab,16987,35819,7 +40870,Skeeter,29798,104914,8 +40871,Mary Marriott,352733,208542,13 +40872,Native Girl,2982,29286,8 +40873,Elizabeth Leary,38749,18859,9 +40874,Himself,105583,18626,21 +40875,Johnny,56151,1173904,8 +40876,Coat Check Girl,168676,1297041,13 +40877,Le patron Aaltra,12249,16767,8 +40878,Kaspar,42764,128672,4 +40879,Dorman - bandits' head,19946,987986,5 +40880,Nora,105528,1051408,11 +40881,Amanda Juarez,2001,8170,1 +40882,"Spangler, the Process Server",43855,30530,12 +40883,Youth,52437,986341,42 +40884,Plumpudding,68123,1660679,2 +40885,Mr. Maldonado,352498,1254002,9 +40886,Baby Håkon Håkonson,360249,1648969,10 +40887,Maid,8270,54220,24 +40888,Constable Roche,425774,1387080,39 +40889,Harmony,290656,1522919,3 +40890,Kåre,13630,1017279,0 +40891,Nick,323679,45405,1 +40892,Ice Man / Factory owner,15003,1059941,7 +40893,Young-ja,313108,28662,2 +40894,LeBlanc,209112,165293,81 +40895,,132928,1671474,11 +40896,Scientist Alien (voice) / Van Driver,86828,10707,18 +40897,Sy Robinson,42231,98477,1 +40898,Soldier #1,57201,1736738,17 +40899,Mall's security guard,10753,134704,14 +40900,,110001,1382346,24 +40901,Infirmière,436340,1900646,15 +40902,Onnie,46773,1523007,17 +40903,Hofmeister,12206,1148559,14 +40904,Vacuum Cleaner Salesman,40028,105089,7 +40905,Desk Clerk at Longwood House,17640,107678,8 +40906,,102272,1351623,9 +40907,Sara Benedict,25674,69122,2 +40908,Detroit Harry Morrison Jr.,94251,133436,5 +40909,Dan Winthrop,30934,21608,7 +40910,,72054,1439244,22 +40911,Reginald Shaw,37710,782,4 +40912,Johnny,28026,1322476,13 +40913,László,352917,1298847,4 +40914,Oldest Morello Daughter,146243,1338008,10 +40915,Coroner,221981,472349,9 +40916,Barry,210910,1138748,5 +40917,Amy,13072,18315,9 +40918,Townsman,75315,954674,45 +40919,Police Officer,270303,1588356,17 +40920,Casey 'Z' Zankowski,131351,12132,3 +40921,Alexis,109391,1204694,27 +40922,Calpurnia,34469,3124,4 +40923,Cash (voice),9948,723,1 +40924,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1801199,10 +40925,Herbert - the Husband,87123,30018,12 +40926,Lennart,343283,576467,4 +40927,,153795,6280,3 +40928,Mary Gordon,19665,123305,16 +40929,Dex,31146,105309,10 +40930,Nina Lopez,395763,1379184,5 +40931,Marty,25643,20750,2 +40932,Port Commissioner Griffin,323675,162849,18 +40933,Gangster,300155,11279,5 +40934,Florence,41211,1002600,15 +40935,Snake,49712,106350,14 +40936,Lord John Roxton,2982,12282,0 +40937,Hwang Jin-hee (young),77117,1295461,6 +40938,Ned Short,4882,39771,4 +40939,Shannon,376660,1498026,8 +40940,Olga,61266,232836,0 +40941,Jean-Félix Ouimet,359413,1508582,6 +40942,Midshipman Dizzy (uncredited),99934,30006,10 +40943,Clara,81030,590955,4 +40944,William,4882,9295,15 +40945,Dino (voice),9836,52699,17 +40946,Gigolo Who Danced with Nora Charles at West Indies Club,14589,34334,82 +40947,Franz,105884,225299,1 +40948,Uncle Gugo,58011,24379,5 +40949,Herbert's Nanny,109716,130092,88 +40950,Lyn's Cousin,85265,1515160,22 +40951,Himself - Comedian,98438,285900,0 +40952,Schütze Nissen,10841,1088717,11 +40953,PFC Robert Leckie,189197,18473,0 +40954,Fender (voice),9928,2157,0 +40955,Mrshall,310972,164114,5 +40956,,89445,1667522,3 +40957,Tiffany,380124,1510444,5 +40958,Himself (archive footage),14286,84384,2 +40959,moeder marktkraam,35016,1416130,28 +40960,Nurse Annie Wilkes,12483,99914,17 +40961,Officiant,48281,1239464,25 +40962,Jacques l'imprésario,14419,45152,2 +40963,Older Anne Kilton,14147,188947,9 +40964,Man on festival boat,125257,33732,8 +40965,Vanja,128946,231923,16 +40966,Film Festival Attendee,5759,1155593,15 +40967,Piccolo,24752,85286,0 +40968,Nikki,82134,59313,11 +40969,Lt. Edgar Hackett,17657,119217,11 +40970,Himself,413782,17540,15 +40971,Cad,6589,9657,3 +40972,Léa,18381,227599,3 +40973,Carl (as Michael Kramer),23957,1200840,4 +40974,Miriam,2241,23120,3 +40975,Hammer,85916,1335256,5 +40976,Frye,58790,15152,0 +40977,Sun-jae,64792,146245,0 +40978,Dancer,3782,1481113,35 +40979,Laura,77673,40266,3 +40980,Qi Shanyun,63441,119655,0 +40981,Dr. Andronic Lafond,16147,79620,16 +40982,,172548,170045,9 +40983,Patricia,122843,6199,3 +40984,Ib,16016,93108,5 +40985,Oscar Bream,215999,27822,9 +40986,Reza's Father,45899,1339671,5 +40987,The Lorax (voice),73723,518,1 +40988,Bear,23196,9783,2 +40989,Veselin,67633,70876,2 +40990,Herself,253337,230249,3 +40991,Aymeric lycée,255913,1517908,26 +40992,Himself,144680,1416462,2 +40993,Zombie Doc,77067,939453,9 +40994,Scott,7871,1294407,17 +40995,The Emir,102384,1173024,5 +40996,Dotty Tortoise (voice),13017,2535,2 +40997,Officer Norton,103620,1651050,16 +40998,Ticket Agent,331588,1255554,10 +40999,Clark,111480,932520,7 +41000,le pêcheur du bistrot,76651,40969,9 +41001,"O'Malley, Detective",25633,2650,10 +41002,Herself,417870,1393199,24 +41003,Corla Bass,426670,197365,8 +41004,Leo,54093,53916,4 +41005,Russian Eddie,37254,117190,10 +41006,Annie Woods,16985,134247,0 +41007,Millie Baxter,68720,113952,6 +41008,Patsy Barton,32610,9066,1 +41009,Dottor Federico Furlan,23619,7541,2 +41010,Celia,89337,17225,3 +41011,Criminal #1,26486,110931,24 +41012,Ben Blaine,42614,100253,1 +41013,Max,214129,1269276,9 +41014,Cat,44303,1195238,7 +41015,Chen Fu Sin,88922,1419329,4 +41016,,24837,104210,1 +41017,Classmate / Neighborhood Kid (uncredited),25132,456066,17 +41018,Vando,267579,1086356,5 +41019,Fernando,79025,18841,0 +41020,Zeke,72856,1194424,0 +41021,Narrator,207021,2295,0 +41022,,375199,123318,7 +41023,Dr. Karen Fast,61341,232941,3 +41024,Jimmy Weeks,7220,1215657,8 +41025,Nancy (Voorhees) Townsend,42669,128400,5 +41026,Le directeur du supermarché,20200,7278,9 +41027,"Gene, Bruhn's Gang",37481,59778,5 +41028,,194853,1175190,9 +41029,Jake Hardin,10025,62064,2 +41030,Trooper (uncredited),19995,1207281,65 +41031,Sąsiad Władysław,319999,17889,8 +41032,Joseph Laughlin,265741,10480,6 +41033,Clothilde,37645,35918,20 +41034,Agent wells,359412,5090,9 +41035,,88176,47265,9 +41036,Pollo,123103,1049540,4 +41037,Tony,43092,142012,6 +41038,Martha,18190,18293,5 +41039,Ellie May Shipley,17820,148669,4 +41040,Gina,14983,1204863,3 +41041,,296750,52810,8 +41042,Additional Voices (voice),82703,5211,41 +41043,Fang Zuguang,63441,1114834,3 +41044,Talia,323665,10556,8 +41045,Lafe,183825,1509,18 +41046,Anthea,16791,80861,4 +41047,,16017,1175617,14 +41048,Raymond Milburn,92809,43934,5 +41049,Book Trivia Judge,85350,1467541,15 +41050,Police Desk Sergeant,108222,30160,51 +41051,Frau Gerber,382995,1195738,4 +41052,Shift Captain / Dispatch,187596,109423,8 +41053,Michael Reynolds,228074,38358,1 +41054,Olive Ransome,214909,87519,9 +41055,FBI Agent (uncredited),263115,1711521,102 +41056,Bri,106618,27554,0 +41057,Himself,45243,80757,6 +41058,pulkownik,224,2821,12 +41059,(voice),63486,239458,13 +41060,Pablo,26969,96688,5 +41061,Häftling,308174,1807040,50 +41062,Sprzedawca kota,8211,8719,9 +41063,Rumpoey,2805,134725,2 +41064,Jo Tae-oh,346646,572225,1 +41065,"CIA Chief of Station, Athens",128588,11128,1 +41066,Child,5172,220118,41 +41067,Ray Ray,207850,84063,0 +41068,Charlotte Baughman,397717,1397778,1 +41069,Jessup,118957,1211862,13 +41070,Other Guard,145220,1315418,45 +41071,ispettore De Paolis,53805,226384,12 +41072,Mrs. Patterson,197611,1177753,3 +41073,Lynn Kaines,60505,28412,1 +41074,Madrugadão ´Midnight`,7343,8599,2 +41075,The Great Prince (voice),13205,2387,0 +41076,Additional Voice Talent (voice),145316,78317,9 +41077,Hank,2989,29342,6 +41078,Private Combs,329865,1646452,27 +41079,Grandmother,229182,19469,5 +41080,Party Guest,149793,34241,15 +41081,Albert Servier,37645,1480471,35 +41082,David Letterman,30330,8265,1 +41083,Mrs. Thatcher,153162,1041608,33 +41084,Germaine de la Corbe,134480,8725,1 +41085,Female Delegate,19545,106161,16 +41086,Mrs. Hill's Friend,151062,100493,8 +41087,Jimmy,149910,1223435,29 +41088,Mamma di Amy,315880,1646440,9 +41089,Cattleman,75315,34333,37 +41090,McCullen / Destro,14869,2040,6 +41091,Constructor (uncredited),42502,1514446,31 +41092,,86413,1054258,3 +41093,Evert 16v,40864,124869,1 +41094,Lukashka,207636,98045,0 +41095,Starr,159667,1094772,10 +41096,Émile Maxence,14765,24783,9 +41097,Varnava,104376,1106047,7 +41098,Gregor,346672,1283871,9 +41099,Candy (archive footage),262988,19216,6 +41100,Lex Michaels,61341,189385,2 +41101,Dr. Finache,141955,5182,5 +41102,Rashid,13848,62649,2 +41103,Kikuo Suda,216363,50656,4 +41104,Young Beckett,244316,1428071,20 +41105,Bukha,256962,1512145,21 +41106,Chauvin,142984,155465,1 +41107,Rebecca,46660,1218733,8 +41108,Lucas,28710,101690,4 +41109,Sarah Parsons,26293,95039,3 +41110,Fat-Yan,37702,87944,3 +41111,Mujaki,43967,150307,13 +41112,Tim Munn,16131,79418,5 +41113,Subject #14,29151,6437,1 +41114,Janitor,10596,65811,17 +41115,,90351,82963,13 +41116,Pettersson,51144,557054,8 +41117,Vicar's Wife,22387,1092212,20 +41118,Lisa,253310,1166722,5 +41119,Bartender,39781,1394124,15 +41120,Peter,63360,56456,3 +41121,"Beatrice ""Tris"" Prior",283489,94185,1 +41122,Toby - Party Boy,157898,590548,23 +41123,King Mulambon,10804,164904,13 +41124,Melissa,401060,211993,2 +41125,Mexican Wife (uncredited),87123,1404245,17 +41126,,358901,1677141,4 +41127,Immacolata,82481,1127385,15 +41128,Zombie,80280,1602328,29 +41129,,36236,42407,14 +41130,Alexandre,361571,1664572,8 +41131,Drone Technician,177677,1562102,53 +41132,"August ""Aku"" Koskela",41142,125628,6 +41133,Undercover Detective,24094,97457,17 +41134,Brianna,84907,209038,3 +41135,Sindaco,22182,1495202,12 +41136,Captain Hero (voice),36736,84495,2 +41137,Obersturmbannführer Stehr,613,17543,33 +41138,David Martin,156597,1427090,8 +41139,Callie,285270,95038,3 +41140,Geoff King,290370,965413,4 +41141,,124517,1885268,6 +41142,Frodo Baggins,1361,863,0 +41143,Lamont Dixon,24775,62842,0 +41144,Kevin Doyle,6557,11006,1 +41145,Hung Yip,290864,130598,8 +41146,Veerabhadra,49028,110709,15 +41147,Edgar Booth Cunningham Jr,315664,107405,10 +41148,Rotti's Chauffeur,14353,76698,10 +41149,Grandfather,43912,37422,6 +41150,Větrník (hlas),84030,1175599,19 +41151,Leonore Case,250332,34471,4 +41152,MD / Keyboards,164558,1296699,5 +41153,François Vasseur,10930,5442,0 +41154,Jossy,4955,40998,12 +41155,Rice,38461,120718,12 +41156,Fujitaka Kinomoto,31347,67471,11 +41157,Guy 1,289712,549524,15 +41158,Sappho,27283,112943,0 +41159,Ross Pine - a member of the organization,32029,41218,4 +41160,Lucrezia Borgia,38027,1169105,6 +41161,Dr. Schumann,280617,1851694,28 +41162,Sgt. Macdonald,38654,1830442,14 +41163,Sampson,11908,5139,10 +41164,Genesis' Gang,12720,1091285,12 +41165,Lamb,11329,2221,12 +41166,Policeman - Investigation room,43113,1484028,69 +41167,Father Hussman,18776,40192,4 +41168,Bagoas Dancer,1966,1650997,47 +41169,Nijirou,21959,58604,1 +41170,Vedant Mishra (ACP),353464,1061615,4 +41171,Giulio Monteverdi,84097,12002,1 +41172,Sannata,341007,1706345,10 +41173,Maestra 1,125619,1293076,14 +41174,Le gnome de la pendule / Le suisse à l'entrée de l'église,114108,11523,0 +41175,Reverend Field,27443,98503,12 +41176,R.I.P.D. Cop,49524,1593121,29 +41177,Tío Víctor,80280,1031749,9 +41178,Kevin,1482,36191,6 +41179,Fray Gutiérrez,353713,1039947,6 +41180,Diane Schuler,227325,10696,0 +41181,Debbie Bender,55730,2882,0 +41182,Sofia de Peralta-Reavis,37329,84485,1 +41183,Ted Murdoch,63858,3162,7 +41184,Guler Mehndi,276846,35819,3 +41185,Donna,123634,1078405,3 +41186,Executive Police Officer,43113,1185637,36 +41187,voice,86700,933504,4 +41188,Comic Con Attendee (uncredited),214756,1482685,87 +41189,Den Mother,413452,60560,5 +41190,Ninella,363757,52402,4 +41191,Debbie,300155,1182598,11 +41192,Tai - Tan,30305,106029,0 +41193,Nico Giraldi,52914,21708,0 +41194,Jim Wade,285946,946788,6 +41195,Kathy Alva,9787,59252,5 +41196,Link,23855,19491,12 +41197,Dancer,11247,1776540,57 +41198,The Troubador,151911,541888,13 +41199,Himself,144942,81113,1 +41200,Detective Jordan,39824,154745,13 +41201,,16015,234906,10 +41202,Antonio Capasso,177104,1159521,6 +41203,Deputy Police Chief Moskar,54139,79247,6 +41204,Greek Inspector,128588,25333,6 +41205,Mrs. Martinez,213755,1507553,4 +41206,Marc Marronnier,85735,932523,1 +41207,Wissenschaftler,104172,1384097,5 +41208,Brigadista,2143,132912,34 +41209,Monsieur,170677,32067,3 +41210,Himself,58467,1203529,39 +41211,Eric Whittenson,248639,1208,2 +41212,Waitress,288281,1913,13 +41213,Brigadiere,128657,120117,9 +41214,Molly,434873,943913,1 +41215,"Brother, Forstmeister",48205,2311,4 +41216,Susi,48254,126984,3 +41217,Lenny Hocknell,13834,19858,3 +41218,Reaver,263115,1436354,28 +41219,Himself,76176,61649,2 +41220,Nana/Mr. Reilly,866,1714,15 +41221,Shelly,59744,1444844,7 +41222,Aldrich's Assistant,55604,103503,65 +41223,Sam,237756,59116,7 +41224,Toriano,61049,3785,1 +41225,Reno Smith,14554,8253,1 +41226,Scott,58467,36801,20 +41227,Himself,324173,105787,6 +41228,Ursus,296491,1034608,0 +41229,Vicar,316885,1643,3 +41230,Annie,134308,8987,4 +41231,Matthews,127493,16460,8 +41232,Vinz Berg,177697,1122730,0 +41233,Dr. William Von Hagedorn,59838,2771,6 +41234,Convicted robber & rapist,18731,236116,10 +41235,Constable Wood,32932,89847,8 +41236,Bibbo (voice),17074,18,16 +41237,Louis 'Alabama' Prentiss,32921,136894,8 +41238,Lieutenant Roach,130957,22903,4 +41239,,1421,1723444,33 +41240,Shin Young-hoon,101766,1335773,3 +41241,Memsahib (uncredited),127560,152523,32 +41242,Evan,17175,8210,1 +41243,Victoria Charteris,42678,20124,0 +41244,Carl (jung),217412,1543458,15 +41245,Marge,25953,94399,2 +41246,Lera,64736,499431,3 +41247,Jenny,325205,1426718,1 +41248,"Beautiful Blonde (segment ""Lord Mountdrago"")",45577,9875,11 +41249,Commander,64674,1129635,2 +41250,Girl with Lowrider (uncredited),323675,559644,60 +41251,Michael Rimmer,77882,18266,0 +41252,Klasse 3c,61035,1446108,34 +41253,Le 2e antiquaire,82327,1129858,9 +41254,Altisidora,145481,31153,3 +41255,Fanny,39345,8437,2 +41256,Phillip Age 4,47342,76239,26 +41257,Claude,274483,19363,5 +41258,,60199,21104,6 +41259,Mrs. Evans,13649,156689,10 +41260,Kerry,214,2133,4 +41261,Arthur Cambridge,77625,15413,11 +41262,Frank Walton,243940,45407,1 +41263,Jenny Gauthier,76651,100033,0 +41264,Rome Policeman,240745,1447035,32 +41265,Angus,24709,175353,2 +41266,Sheriff Jack Kolb,24619,9880,2 +41267,Blonde Gold-Digger at Theatre,157898,117582,45 +41268,Skinny Man,315837,213202,8 +41269,Tom Colson,43829,95728,22 +41270,Dana Stanford,55694,27109,2 +41271,Orphanage Kid,5123,1233840,48 +41272,Junior,83,64101,5 +41273,Stage Manager,42298,105454,18 +41274,Donald Blake,26881,78384,9 +41275,Tom Gilbert,15671,7166,2 +41276,Neighbor with Water,31899,30243,44 +41277,,338079,126986,3 +41278,Granny,256092,129451,19 +41279,Theresa,21214,87283,4 +41280,"Herself, assistant to David Lean",142478,1117367,4 +41281,gäst på partyt,76846,74736,9 +41282,a girl,53042,147111,14 +41283,Dr. Leslie Abbott,26142,19957,7 +41284,Prison Guard (uncredited),2993,95457,11 +41285,Nan,19957,1359128,11 +41286,Guardia,73827,142134,2 +41287,Brigitte Kuhlmann,43434,2343,15 +41288,Tab Girl,246655,1796416,67 +41289,Andreas,13318,85151,0 +41290,The Creature,362057,1295186,4 +41291,Deputy Williams,40983,119717,11 +41292,Yama (voice),177572,1340669,14 +41293,Sheriff Denton,53950,19483,4 +41294,Dawes,38808,9112,5 +41295,Ram's Mother,191112,11849,2 +41296,Gudrun,24647,589357,14 +41297,Franky,35025,534831,11 +41298,MNU Lead Medical Technician,17654,575938,30 +41299,Addetto ai manifesti,43648,1057236,10 +41300,Marcus,169800,1152021,2 +41301,Hooters Girl,3563,963208,18 +41302,Peter,351242,85924,6 +41303,Parole Officer,10044,62427,9 +41304,Black Coda,18098,10698,6 +41305,Artemis,32657,67978,36 +41306,Hausbesetzer,167424,1822705,23 +41307,Magotaro,45384,133656,7 +41308,Filthy,124501,2220,1 +41309,Doctor,42852,27945,32 +41310,Gurumurthy,49074,131258,3 +41311,Ingrid Hunnigan,133121,81378,7 +41312,Horace Greeley,43806,2782,75 +41313,Lil,121006,13963,2 +41314,Hospital Doctor,43855,34367,22 +41315,The Queen (voice),322487,448,1 +41316,Deputy Sniffer,149910,83414,1 +41317,Police 2,427680,1758539,11 +41318,Robert Grant,256474,4515,4 +41319,Karl,206296,928698,8 +41320,Laura,340488,23524,1 +41321,One Punch,102668,1031782,6 +41322,Gordon O'Hara,150065,76512,1 +41323,Mayor Scott Burman,257450,51965,15 +41324,Chloe Murray,286971,1358460,10 +41325,Airport Traveler,347630,1593372,47 +41326,Docteur Reiner,129966,1090662,4 +41327,Jefe,79500,174560,9 +41328,Marta,42892,129113,2 +41329,Larry,29424,1205935,9 +41330,Agent Alec Wong,10145,52947,5 +41331,Claire,34840,20081,2 +41332,Andrew,122843,39185,13 +41333,Bonnie,54396,938744,2 +41334,Sheila Pettifog,239056,7489,3 +41335,Judge Duke,16997,12950,3 +41336,Kistenmaker,4134,28213,6 +41337,Roza,13614,112308,3 +41338,Hassan,1595,17857,2 +41339,Jane Mason,18569,2491,0 +41340,Oliver Freud,48231,1089493,30 +41341,Luzifer,11719,2481,3 +41342,Susan,138977,1182317,9 +41343,"Giancarlo, ""The Badger""",39979,1026047,22 +41344,Moeder kinderpartijtje,159514,1344883,11 +41345,,420648,82700,1 +41346,Tierrney,58646,10983,1 +41347,Danny Muluski,412209,1371041,0 +41348,Shaq,4257,35806,7 +41349,Liesel's Brother,203833,1327255,12 +41350,,63414,580662,8 +41351,Madame Latrouille,2963,1574187,1 +41352,"Haruna Yamaguchi, the Pop Star",870,13253,4 +41353,Cliff Milburn,37992,3339,6 +41354,Sônia,192210,557586,5 +41355,Frau Bürgermeister,119820,48088,15 +41356,,79025,223966,7 +41357,Mrs. McKenzie,290825,23658,17 +41358,Silvi,74103,571185,4 +41359,,260522,124423,6 +41360,Kim #4,15527,45827,8 +41361,"Hernán, a blond friend",63066,1867437,3 +41362,Grace Bontempo,39845,15735,0 +41363,Party Host,246133,399681,15 +41364,,88529,1128806,4 +41365,Agent John Downey,29260,14508,2 +41366,Julie,179812,1162328,5 +41367,Sonny,14414,971937,6 +41368,Pernilla,11925,72688,3 +41369,Presley Delon,312497,1335527,14 +41370,Diamond Face,315837,1434486,24 +41371,Arlen Johnson,316154,1325961,0 +41372,Roy,18998,201073,10 +41373,Brett Roberts,336691,1469807,5 +41374,Judge,137321,2888,5 +41375,Esmeralda,109391,1204689,22 +41376,Roscoe Wasz,16890,4812,1 +41377,L'épouse,12249,71934,3 +41378,Lin,77094,582327,1 +41379,Assistant Mayor Dawn Bellwether (voice),269149,213001,7 +41380,Roger Penrose,266856,28478,23 +41381,Tina,39130,120756,17 +41382,Fire Breather,312221,1746964,69 +41383,Chuck Jarvis,85648,18735,0 +41384,Shaye,57597,154548,14 +41385,Claire's Mother,18803,8437,2 +41386,Hilary,54804,109875,5 +41387,Fille Joint,12422,1018915,9 +41388,chůva,82279,592089,5 +41389,Ray,65367,240978,1 +41390,Joshamee Gibbs,285,2449,8 +41391,The Champ,49762,101397,9 +41392,Miss Sophie,6166,48328,1 +41393,Dolores,332354,587931,3 +41394,Ezra,29717,67601,0 +41395,Sergeant Early,16442,3341,16 +41396,Infirmière réa,152989,22307,10 +41397,Amanda,74549,1689241,14 +41398,Gaoler (uncredited),140470,120701,11 +41399,Capt. Ramona Garcia,24411,152265,3 +41400,Caragol (prologue),183932,1091491,4 +41401,Dong Lee,86718,127451,6 +41402,Min's Mother,107682,239008,3 +41403,Mrs. McDonnell,51571,100779,12 +41404,Mamie Tuche,369776,73264,4 +41405,Doctor Noh,18374,109060,4 +41406,Alexander,79466,9626,2 +41407,Henry Grant Jr.,106635,8726,4 +41408,Poucet,12089,24479,10 +41409,Lui,5544,25466,1 +41410,Viktor,262447,97367,2 +41411,Richard 'Red' Carroll,229638,89730,5 +41412,Karen Vanmeer,55604,89088,3 +41413,Young Gracie,273404,1087747,4 +41414,Jenn,260001,1235568,4 +41415,Superman (voice),408220,3035,5 +41416,Ben Mukurob,5237,47458,4 +41417,Sam,36992,42740,0 +41418,Young Gladys,424600,1704658,13 +41419,Larson,345775,582673,3 +41420,Johan Falk,24023,92403,0 +41421,Allan Dallis,15613,4138,2 +41422,Speaker #3 (Sid),222935,1672070,24 +41423,,114982,1419586,7 +41424,Nelly,4146,35000,1 +41425,Tia Dalma,285,2038,10 +41426,,149868,52357,3 +41427,Yuna,36212,132153,0 +41428,Cassels,64167,39066,15 +41429,Svetlana Belikova,133121,79051,5 +41430,Spartan with Stick,1271,105496,28 +41431,Jeune du lac 1,274483,1676882,15 +41432,Janet Cunningham,19912,94424,3 +41433,Teresa's executive,45303,1085115,7 +41434,Sultan Shahryar,18098,15336,1 +41435,Henry Birkardt,121923,1818,9 +41436,Priya,314389,550167,7 +41437,Carmen,411638,224732,7 +41438,"Mr. Wiggam, Waring Lawyer",30022,17756,11 +41439,Boodikka (voice),17445,74423,3 +41440,Accountant,45649,29795,4 +41441,De Witt,31031,107525,6 +41442,Ava,323665,131871,0 +41443,Anchal,76684,85890,3 +41444,une infirmière #1,121895,1182760,6 +41445,Leone,39436,27279,10 +41446,Michael 'Mike' Gardner,82178,2125,2 +41447,Mr Bing (Voice),68179,17835,2 +41448,Kerstin,269306,6657,3 +41449,Leopold Kroner,29113,103176,6 +41450,Coleman,213755,32059,5 +41451,,149145,938895,2 +41452,Officer Jenkins (as Matt Roseman),37254,117193,15 +41453,Emery,43369,109864,9 +41454,Ben,17825,146604,2 +41455,bishop,55495,222230,18 +41456,Ellu,201124,148342,2 +41457,,313676,1029280,5 +41458,Scrub Nurse (uncredited),270303,1522638,24 +41459,Rainer,338,4796,5 +41460,Alistair Krei (voice),177572,21088,8 +41461,Cantinflas,69060,29518,0 +41462,,63326,169907,4 +41463,Matthias Schweighöfer,170759,16808,5 +41464,Sylvester / Narrator,100450,94158,0 +41465,,141603,1106927,8 +41466,Slave Girl,1271,1330775,73 +41467,Tourist (uncredited),337339,1804414,38 +41468,Husband on Airplane,27629,9091,25 +41469,Kaiti,301491,1119889,3 +41470,Kahina Ziri,209112,134774,61 +41471,Music School Student,21605,116,12 +41472,Cpl. Richard Oswald,44943,1088041,18 +41473,,320873,1427449,1 +41474,Chip,18843,205885,9 +41475,,414827,1676375,7 +41476,The Bureaucrat,173494,1522409,3 +41477,Hogsqueal (voice),8204,19274,7 +41478,,198890,932751,4 +41479,Nermal (voice),16460,61983,4 +41480,Cyrus Gilson,15613,52145,11 +41481,Earl,253258,6168,4 +41482,,9550,1620876,12 +41483,Boy in Poolhall,46190,116771,13 +41484,Hausmädchen,52475,48683,7 +41485,Jerry,26042,132562,4 +41486,Johnny Kapahaala,24020,90771,0 +41487,Bennett,10999,26491,3 +41488,,225503,1031270,14 +41489,Nuri,148697,1127939,3 +41490,Lee Fung Yee,32233,20652,1 +41491,Extra Licoreria,333371,1253678,9 +41492,Ted Casablanca,3055,127914,9 +41493,Visvaldis Melderis,144331,1192370,9 +41494,,34181,579184,16 +41495,Horace Bennett,184267,29976,8 +41496,Marion Radford,5413,11886,15 +41497,Alvarez,338438,1462357,13 +41498,Dad,55563,183027,13 +41499,,149154,1497139,1 +41500,Officer Mazzuccheli,209112,1141368,63 +41501,himself,321779,1421391,9 +41502,Radhe's brother,56969,85589,3 +41503,Bart Bowland,21413,20220,1 +41504,Paula,117534,1741310,14 +41505,Kip,184866,77885,0 +41506,Goody,199647,11357,5 +41507,Louis (15 ans),338189,1850850,9 +41508,Milan,199644,1179811,5 +41509,Birgitte,38913,1569,3 +41510,Alfredo,107035,132257,4 +41511,Rider / Roper,43829,1464600,35 +41512,Joshua Farraday,333484,73457,1 +41513,Herself (archive footage),253337,1308163,4 +41514,Stuey Gluck,17796,1196131,7 +41515,Shruti Kakkar,52696,81928,1 +41516,Tanya Kasabian,381737,1848804,17 +41517,Gigi,345915,19300,31 +41518,Hätäkeskuksen virkailija,101838,1029093,25 +41519,Paloma,335053,106817,3 +41520,Himself,71687,1953,2 +41521,setdresser,35016,76294,19 +41522,Nicolas Saccard,50181,535561,2 +41523,Dick Fasken,43384,39753,8 +41524,13-Year Old Eddie,257344,1683839,45 +41525,Dr. Rowitz,3574,14486,6 +41526,2# Poolshark,33481,110765,14 +41527,Costanza Colonna,159810,124620,4 +41528,Paul North Sr.,28712,854,1 +41529,,361183,87674,6 +41530,,279096,938435,38 +41531,Richard Wagner,129553,88663,4 +41532,Himself,25111,21624,9 +41533,George,77930,1368887,17 +41534,Recruiter,19235,84795,9 +41535,Goth Girl #1,341957,1470818,13 +41536,Ricky,96936,10961,8 +41537,Clarabelle Schneider,80032,196408,6 +41538,Selena,111017,4514,8 +41539,Peter,44960,63860,5 +41540,Helen,81120,120148,5 +41541,Ken Stevens,296626,60258,4 +41542,Chum,14823,1220314,5 +41543,Olivia Edmonds,48967,180662,1 +41544,Himself - Narrator,75018,7447,1 +41545,Denise Stanton,36251,162747,2 +41546,Grandmother,288952,8792,3 +41547,Robert Greene,227700,176227,4 +41548,Dr. Jennings,73348,40233,7 +41549,Himself,76176,224094,4 +41550,Laury Medford,288503,326,1 +41551,Mario,342213,560246,4 +41552,Inspector Trevett,272663,3364,6 +41553,Logan,59722,229686,4 +41554,Ellen Griswold,158382,821,2 +41555,Tattooed Man,2001,1660692,34 +41556,Woody Focker,693,963693,17 +41557,Brittany,44945,1190917,10 +41558,Punk Teen,70587,558927,7 +41559,Second Alabama Man (uncredited),72638,101881,18 +41560,Mr. Wardlow,22051,61607,7 +41561,Anastasia Steele,341174,118545,0 +41562,Glauco,56693,3784,0 +41563,Sarah,258947,1548927,4 +41564,Detective Gorrie,29108,117281,12 +41565,Gen. Biddle,274060,34320,8 +41566,The Usher,47386,21154,8 +41567,Freddie,345922,1517847,32 +41568,Ancient One,14830,80123,3 +41569,,137312,1090132,4 +41570,Dr. Siddhant Arya,32740,6497,1 +41571,Alma Gallo,84655,101768,3 +41572,Ximena Saavedra,56948,73269,1 +41573,Sonja Age 10,44115,142184,10 +41574,Looper,13600,1711,20 +41575,Horace,54406,52891,10 +41576,Chris Trumbo (Age 13-17),294016,931104,16 +41577,Bodyguard,49060,59298,9 +41578,Ann Rockford,26376,588999,8 +41579,Zoe Langford,244316,113861,9 +41580,Sara,53739,120557,2 +41581,Hyo-jin,293670,1681260,4 +41582,Pedro Fontán,131815,19207,0 +41583,Tonny,16014,4455,0 +41584,Jerry,11584,22675,9 +41585,Eva's Mom,343795,96881,7 +41586,Asunción,38244,235782,6 +41587,Jack McMullen,115290,117437,6 +41588,Jane,79871,1135177,3 +41589,Police Commissioner Yam,10265,64504,11 +41590,Looter (uncredited),45527,1328739,8 +41591,Max Pascal,57866,34574,4 +41592,Dying American Soldier (uncredited),52440,13995,44 +41593,Root - young,89116,937385,2 +41594,Trucker,333091,79236,6 +41595,Jeremy (voice),447758,213394,29 +41596,Bill Wallace,45610,64873,4 +41597,Narration (voice),92060,1905,2 +41598,Ozone / Reginald (voice),328111,4581,10 +41599,Maul,61966,59899,0 +41600,Sgt. Jesse Owens,294690,130801,7 +41601,Richard,36992,1485180,6 +41602,A.K.,18548,4846,0 +41603,Carla Böhm,167330,1079462,2 +41604,Mrs. Watanabe,49258,57736,4 +41605,Landlady,81120,543542,16 +41606,Emilie Trampusch,280004,1106088,5 +41607,Inspector White,113638,32427,6 +41608,Judge,53573,128401,6 +41609,Joseph,36597,102980,10 +41610,Wedding DJ,10521,1337522,25 +41611,Chewy,345915,1347239,27 +41612,,128671,97991,6 +41613,,83459,138125,10 +41614,Alex Lippi,41211,17497,0 +41615,Charlie,343921,1171718,8 +41616,Ichirohiko (Teen) (voice),315465,93803,7 +41617,,25626,1337,4 +41618,Uncle,286521,85415,22 +41619,Jerry Evans,39311,98574,2 +41620,Gopi M. Chand,20364,86016,9 +41621,Verslaggever bij bank,67499,934914,8 +41622,Emily,298584,1573609,9 +41623,Himself,14108,1068412,6 +41624,Hotel Babysitter,258509,54722,13 +41625,Cody,90086,11147,0 +41626,Deirdre Walker,32124,108922,12 +41627,"Okamura, Yoriko",222715,548015,2 +41628,"Mike, Police Detective Sergeant",118948,112009,5 +41629,Russell Franks,115565,18916,6 +41630,Albert Speer,613,1086,5 +41631,Mr. Hastings,14554,40203,8 +41632,L'aveugle,27053,44106,15 +41633,Tiffany,214756,148120,66 +41634,Bobby Becker,36427,97185,3 +41635,Ritsugen Ryu,50696,123854,4 +41636,12-Step First-Timer,14976,225378,19 +41637,Udaywardhan,192675,35792,6 +41638,H.K. Muldoon,186584,152673,4 +41639,Kim Maida,142216,14668,11 +41640,Sharon,8988,1319846,21 +41641,Charles Hatton,10077,2282,6 +41642,,52183,145499,0 +41643,The Pharmacy,241254,62644,6 +41644,Karlsen,11832,1106160,25 +41645,Matahachi,31372,76975,1 +41646,Le chef de rang,8049,1529108,11 +41647,Harbour,156,1643,1 +41648,Slater,13569,27737,2 +41649,Groom,42139,931319,2 +41650,Willie,242835,348497,16 +41651,Dr. Noseworthy,25132,3905,3 +41652,Candice,241254,1006733,19 +41653,Shérif,38282,543835,6 +41654,Steve Bundy,360592,1219597,3 +41655,Airport control tower official,45726,2098,9 +41656,Stylist,405670,1487287,5 +41657,Anthony,32540,109324,12 +41658,Monica,44754,52442,7 +41659,Sue,126927,30577,10 +41660,Ben,49853,5847,0 +41661,Martha Stotheby,42871,3346,11 +41662,Commando,1724,158459,13 +41663,Murdill,286873,137463,18 +41664,Raymond,300155,39678,10 +41665,Grandfather,99698,130022,2 +41666,Don Cirillo,44741,589736,5 +41667,Nora Toling,239513,153621,8 +41668,Anna Penn,44388,57395,0 +41669,Christabel Caine Carey,43385,3360,0 +41670,Young Justin,13280,1077775,14 +41671,Loryn,220820,210004,12 +41672,Don Henderson,110909,37041,1 +41673,Adams,22681,967197,4 +41674,Tamara,226140,27136,0 +41675,Casting Girl,15019,128645,12 +41676,1st Maiden,31264,136413,11 +41677,Truman Langley,64084,1093379,3 +41678,Malaury,8281,223472,11 +41679,Nancy Drury,89720,1379209,6 +41680,Turtle Ma,263341,62711,10 +41681,Daddy,30385,27804,3 +41682,Queenie,220515,184591,0 +41683,Ben Gunn,26612,947789,4 +41684,,340176,1711414,17 +41685,Lieutenant Tibbets (as Robert Cochrane),86956,1372534,3 +41686,The Boy,3081,30074,15 +41687,Lou Lo Duca,5559,9626,10 +41688,Ann Vaughn,198227,30155,0 +41689,Mac,10025,60874,13 +41690,Robert Percy,6947,51532,8 +41691,Bussy,242683,120390,13 +41692,Julia,13652,3124,2 +41693,Kim Lee,121848,29764,8 +41694,Dojrzała prostytutka,91691,2820,3 +41695,Ellie Masterson,77067,937370,5 +41696,Miriam Polar,3055,30123,5 +41697,Coroner,29286,948509,12 +41698,Edward Manning Kirkpatrick aka Kirk,86768,165074,4 +41699,Faith Stuart,244539,1279818,3 +41700,Medical Technician,1724,1366358,30 +41701,Julia,296288,583628,2 +41702,Fungus Bob Robertson,179826,96892,9 +41703,Margot Soloway,91607,939726,5 +41704,Nika,440777,1157088,10 +41705,Ceyda,407,5500,4 +41706,Mary Poppins,77060,544626,0 +41707,Col. Nielson,74314,33278,2 +41708,Himself,411013,1799835,1 +41709,Ann,44527,17882,0 +41710,Miss Giddy,76341,1475853,15 +41711,Laura,2566,14812,1 +41712,Josie,17926,27855,2 +41713,Benny (voice),9904,26485,1 +41714,Mary Pender,173638,940044,9 +41715,Mace,302104,84059,1 +41716,Melanie 2,9843,59865,11 +41717,Le jeune kayakiste,343702,1508646,20 +41718,Skydiving Instructor,381008,1293888,8 +41719,Jerry Baker,295588,1368829,1 +41720,Mandarin Look-Out,68721,1391612,34 +41721,Secrétaire Université,46738,1579217,22 +41722,Rat Kiley,125759,2628,0 +41723,Henchman,331313,1010873,30 +41724,Emma,414453,1724562,7 +41725,Shelley Newmeyer,44661,75313,5 +41726,Becca,332488,1869696,7 +41727,Jalaluddin Mohammad Akbar,14073,78749,0 +41728,Court Official,37702,118355,5 +41729,Dona Celia,20941,1723686,18 +41730,Clocker (uncredited),15794,1173157,39 +41731,Paolo,43649,27433,0 +41732,Munna,22448,85574,3 +41733,,218508,72453,9 +41734,Police Sergeant,6589,50589,10 +41735,NASA Doctor,365942,967071,18 +41736,Mme Corlet,12446,72247,7 +41737,Dealer Guesthouse,49853,1648778,20 +41738,Papa Aubel,18651,104805,5 +41739,,386100,48429,15 +41740,Sitting Bull,272663,83912,10 +41741,Lundström,49717,69645,5 +41742,Feldwebel Krebs,178446,44384,22 +41743,Poldi Vogelhuber,62567,125482,0 +41744,Caryl Fergusson,24062,11027,2 +41745,Akiko Aochi,188684,97210,3 +41746,Mayor,14301,173146,10 +41747,Ronald,40252,129419,7 +41748,Charley Wyckham,72611,566706,5 +41749,"Muten, Roshi",39103,618,8 +41750,Kyle,228970,1495083,34 +41751,Apache,33273,78882,3 +41752,Bill Atkinson,115782,88928,14 +41753,Baby Mammoth (voice),273202,565312,1 +41754,Stepan Szuma,406449,1650383,15 +41755,,412851,1670471,11 +41756,Fred Wares,108723,17580,2 +41757,Sarah Wilson,286971,163928,15 +41758,T.K.,102961,141371,9 +41759,Prakoso,180299,142019,10 +41760,Boyd,135686,947465,5 +41761,Jimmy,9943,4920,5 +41762,Roadblock State Trooper,20174,102429,13 +41763,Savci,41187,1435104,6 +41764,Mrs. Yoelson,31206,85486,5 +41765,Politician,43806,96722,45 +41766,Alice,33134,123539,0 +41767,Moira,150065,1784352,22 +41768,Detective,29805,1243112,29 +41769,C.J. Temper,40368,556923,2 +41770,,320005,1427406,1 +41771,,204802,1623851,14 +41772,Waitress,51828,1821938,30 +41773,Nikki's Mom,13374,35517,9 +41774,Mère d’Antoine,8049,53430,3 +41775,,362154,1087171,10 +41776,Moe,21554,1084815,7 +41777,Mrs. Horachek,424488,112562,16 +41778,Shah Ala ad-Daula,169881,15533,3 +41779,Bus Driver,156700,500427,23 +41780,Venu,398786,1160633,5 +41781,Himself,130993,1310866,6 +41782,Lady at the Cinema (uncredited),167073,1540241,44 +41783,Mick Vaughn,319924,7907,1 +41784,Major Prackel,66741,149660,14 +41785,Cat Prosecutor,67162,31771,3 +41786,Ben,188161,583845,11 +41787,Renee Blair,45156,14892,7 +41788,Andrej,85442,2090,0 +41789,Alex,153102,83225,0 +41790,Chofer,20941,69865,7 +41791,Trooper Dodge,9542,94766,8 +41792,Frederick Nelson,425774,1707896,27 +41793,Mrs. Chichester,162862,144361,4 +41794,Himself,271007,1027218,1 +41795,Teacher,188598,1776758,14 +41796,Mark,301334,10920,5 +41797,Assistante Les Arènes,320318,1402424,4 +41798,Diane,28031,22248,9 +41799,Sid Cooper,42989,14107,9 +41800,DCP Mohan Prasad,49028,389604,5 +41801,,336549,1397381,14 +41802,Mary Magdalene,47980,139724,2 +41803,Mrs. Mary McCandless,32634,7520,16 +41804,Bob,22447,386,11 +41805,Crowshaw,138486,19414,3 +41806,2nd Radio Officer,29805,1017230,25 +41807,FBI Agent Louisa Acevedo,17669,7007,14 +41808,Saloonmusiker,1659,18453,17 +41809,Jean,61991,49946,5 +41810,Philomena King,419430,1027298,15 +41811,Dr. Paul Gosselin,41277,229432,22 +41812,Melissa,6877,26723,8 +41813,Banu Semmelmann,119816,1071139,4 +41814,Lead Biker,177677,1188778,64 +41815,,33201,10839,4 +41816,Knight,232100,1267389,14 +41817,Rapinatore fiction,142320,1534356,37 +41818,Digges,106635,30184,3 +41819,Ioannis,294483,1366982,11 +41820,,25626,73774,48 +41821,Father,379925,1616614,3 +41822,Nathan,197089,16269,2 +41823,Benjamin Carver,362703,2047,3 +41824,Woman 2,17111,1629448,19 +41825,Dona Antónia,49974,1223497,5 +41826,Kara Zor-El / Supergirl (voice),166076,96349,3 +41827,,200117,1180771,2 +41828,Romi Patel,316654,1240793,7 +41829,Caroline Fernet,204768,118178,3 +41830,Wilkins,40719,96722,11 +41831,Thrall,47956,1227283,6 +41832,Madeleine,540,22127,5 +41833,"Hiro, the Boss",870,13251,2 +41834,Priscilla 'Pris' Holt,91419,31844,2 +41835,,87296,121191,15 +41836,Journalist,70667,1334214,11 +41837,Peter Llewelyn Davies,866,1281,4 +41838,Beatrice,335970,1516115,54 +41839,Secretary,194509,41240,6 +41840,Doc,17577,343,3 +41841,,15776,4464,8 +41842,Martín,199851,1191990,1 +41843,Iwao Enokizu,42170,95345,0 +41844,Zak,10795,1032074,25 +41845,Alice's Mother,146730,1124651,5 +41846,(uncredited),61035,1446123,51 +41847,Juliette,132332,25166,10 +41848,Emma Küsters,42260,2726,0 +41849,,293270,12006,2 +41850,Mr. Sanchez,65650,48136,15 +41851,Sam's Roommate,85350,1309410,63 +41852,Chief Quanah Parker,32634,30553,8 +41853,Eric,353979,1067459,4 +41854,Tommy,373977,1553055,10 +41855,Tina Hammersmith,12540,62065,1 +41856,Inspector McNamara,72096,11517,26 +41857,Clifton Staley,72823,14455,13 +41858,Jill,8064,53846,9 +41859,Training Agent Ahmadyar,85414,1181296,6 +41860,Bronco,72032,564603,3 +41861,Emily Brooks,25890,39388,1 +41862,Amar Kaul,14751,43416,0 +41863,Regieassistentin,80125,18947,11 +41864,Dobs,157424,4442,3 +41865,Jo,41809,1253602,4 +41866,Vaughn,336004,47296,0 +41867,Head of Scientific Staff,49837,142890,4 +41868,,28746,1326034,14 +41869,John 'Jack' Shagrue,36612,96064,6 +41870,Shenlong,39102,83930,7 +41871,Vihtori Taatila,286267,1352106,3 +41872,Sandra Grusinsky,2001,113570,14 +41873,Eliza,334890,1695146,11 +41874,David Morgan,450530,215460,5 +41875,Student,205891,1094423,9 +41876,,114982,1419588,8 +41877,Rowan,178809,1178763,9 +41878,Mrs. Monte,47212,119864,5 +41879,Nicky,256924,15760,5 +41880,Specs,250535,1416396,19 +41881,Denis,338,4795,4 +41882,,121530,1195788,0 +41883,,87953,1562219,0 +41884,Patricia,70554,10739,0 +41885,Kima (as Zoe Sidel),16873,1792019,29 +41886,C.O.,33338,120725,5 +41887,Janice,14669,77133,1 +41888,Jay,40205,205204,1 +41889,Hu Lizhu,40029,1580817,11 +41890,Matthew,300667,131006,6 +41891,German Machine Gunner,150712,1420561,15 +41892,Lee Proctor,42288,127633,9 +41893,Julia,196027,79196,0 +41894,Nick O'Bannon,19912,94421,0 +41895,Doris,48488,1309678,2 +41896,Heavenly,72105,1204327,24 +41897,Giacomo di Altogiovanni,61217,5412,0 +41898,Police Officer #1,9987,61520,16 +41899,Sweet Scout Girl,257344,1271681,36 +41900,Capelli,100088,2641,1 +41901,Lauren Correll,10145,1446696,9 +41902,Clay,243940,55089,3 +41903,Orchestra Conductor,80596,47395,42 +41904,Lucia Pell,183827,41245,2 +41905,Officer Gayle,8464,55154,4 +41906,Rachael,384160,973497,3 +41907,Dr. Kathari,312221,1657315,14 +41908,Mrs. Sharma,14134,35777,6 +41909,News Reporter,268920,1609624,99 +41910,Captive Girl 2,310137,63676,11 +41911,Blanche,14874,20,4 +41912,Ricardo,321497,110424,4 +41913,Cosimetto Delli Cecchi,33495,120274,3 +41914,Owen Lansing,59735,76519,7 +41915,Audrey,44793,227606,5 +41916,Car Thief (uncredited),94809,100414,18 +41917,Media person / Basketball Game Fan (uncredited),44115,1613043,21 +41918,Rain,25646,94046,0 +41919,Aardvark Boy / Beaver Kid #2 (voice),8355,1335112,21 +41920,"Bob Carroll (segment ""Vampire"")",26811,55636,2 +41921,David,205891,1188269,5 +41922,Viti,116312,3482,14 +41923,Gilbert,12637,41262,8 +41924,Dr. Sabbatt (as Frederic Worlock),228647,14509,8 +41925,Mr. Bryce-Carew,214909,13969,12 +41926,Dougnac,13507,14606,1 +41927,Swinger,252888,84325,8 +41928,Amazon Army,297762,1890510,35 +41929,,21181,1191826,1 +41930,KillJoy,106747,57674,16 +41931,Hanne,44716,1185,6 +41932,Man with the Bike,29111,24303,5 +41933,Noelle,1807,19209,14 +41934,Sean Gall,138977,78962,5 +41935,"Nicola Scognamiglio, il controllore influenzato",107052,1849063,10 +41936,Ho Yinsen,68721,17857,15 +41937,Gaby,13710,35003,7 +41938,John,65771,1181,4 +41939,Mike,29510,104035,12 +41940,Olga,20126,29920,15 +41941,Levi,13058,1589576,22 +41942,,354296,579743,3 +41943,Allison Corwin,55784,119967,3 +41944,"Yoon Tae-goo, the Weird",15067,20738,0 +41945,Jack Frost (voice),81188,62064,0 +41946,Mario Landriani,262786,1035738,2 +41947,Three Penny Hank,116340,18262,4 +41948,Dane,45020,31711,9 +41949,Petit,289191,54476,2 +41950,,92060,16178,9 +41951,Cox,336004,543530,3 +41952,"Julius Hofbauer, Music Publisher",62567,34347,3 +41953,Joanne,83714,614230,7 +41954,Brugd,70670,135121,9 +41955,Drake,43155,17753,3 +41956,Florence Labadie,315855,81418,18 +41957,Max Machon,111744,14634,6 +41958,Geun-ryong,321191,1024396,10 +41959,Himself / Morpheus,14543,2975,2 +41960,Director,85525,78865,7 +41961,Industry Man,80596,95093,44 +41962,,329227,1435927,3 +41963,Mr. Smile,50161,232598,6 +41964,Doreen / Rafik's Sister,9959,61013,13 +41965,Carlos Alberto,203217,557414,4 +41966,Algot Snisvall,128946,558175,9 +41967,Clerk,179066,13357,15 +41968,Jenya,58692,228262,5 +41969,,91067,939118,6 +41970,Jerry Fisher,41131,7683,3 +41971,Vince,359245,1368795,8 +41972,Monica Ashe,94348,50347,1 +41973,Waldegrave,13802,91494,13 +41974,Yoko,20986,90135,2 +41975,Joanie Fisher,21544,2453,3 +41976,Julia,1984,20418,1 +41977,Sen. William J. Tadlock,42703,2090,0 +41978,Son Goten,38594,90496,3 +41979,Benito Pablo Juárez,78318,13352,0 +41980,Announcer,54559,80595,1 +41981,,28746,1326027,6 +41982,Hot Potato #1,30411,106251,17 +41983,Tremaine,79935,1251567,16 +41984,Birkebeiner #7,360249,1648978,16 +41985,Michael Silverman,268321,56680,3 +41986,,142320,1138179,39 +41987,Wife's Brother,56599,224665,2 +41988,Kevin Harper,59965,11355,3 +41989,Parvaneh,415255,1677218,10 +41990,Katy,10025,2139,4 +41991,Al Swain,12707,199813,6 +41992,,41121,125531,4 +41993,-Ben Cassidy,6163,2234,0 +41994,Redhead,28682,30666,15 +41995,Amanda Waller (voice),22855,30485,8 +41996,Vocalist - Opera Montage,98328,982031,14 +41997,Roberta,361146,1890680,9 +41998,Lennart,196027,234741,2 +41999,Nui,21959,83746,3 +42000,,88273,1514779,16 +42001,Vargus,43935,17637,3 +42002,Beryl Lee,33025,48960,4 +42003,Miss Osie,35977,2072,9 +42004,Kirsten,44943,125025,14 +42005,,18908,202609,11 +42006,Marge,159128,11084,5 +42007,Aleksejs Anufrijevs,144331,1192372,11 +42008,Tourist (uncredited),5915,1204226,23 +42009,Carla,183073,938563,6 +42010,,17985,1439591,13 +42011,Le Juge,329819,50,2 +42012,Black Adam (voice),43641,16743,2 +42013,Petelo,56491,76834,5 +42014,Farley Drake,175027,133276,9 +42015,Sarah,253235,1186840,2 +42016,Shane Murphy,109424,87070,8 +42017,Aimee Davison,83899,139150,6 +42018,,47561,14830,6 +42019,Andrée's sister,72785,568681,5 +42020,Jason Underhill,17241,84627,3 +42021,Garrety,333385,1358061,13 +42022,Nurse,294254,1670754,34 +42023,Drunk in Jail Cell,38437,8522,23 +42024,,254679,135025,10 +42025,Young-soo,54690,240948,1 +42026,Bram,408755,1660965,5 +42027,Injection Doctor,21208,90467,23 +42028,Mr. William Marlowe,105548,2438,3 +42029,Teacher,46760,182004,6 +42030,Auntie Mildred,173638,8926,12 +42031,Riccardo Rauso,235208,94255,2 +42032,Man Asking for Ed Hutcheson (uncredited),36334,16527,13 +42033,Norman Osborn,102382,2955,12 +42034,Pra Than,40127,1331692,3 +42035,Colin Briggs,19901,56496,10 +42036,Radio DJ,70585,187636,11 +42037,Tío Gregorio,59117,12089,5 +42038,Frank,80389,53,1 +42039,Reporter,99909,43845,32 +42040,Marilyn,75576,10767,3 +42041,Security Guard Fink,84971,590533,7 +42042,Doug Lake,14868,12211,7 +42043,Ringside VIP,332979,1570735,26 +42044,Celia,273896,1872891,3 +42045,Walter,108723,1446336,19 +42046,Dixon,66659,160133,6 +42047,Bastian's Mother,362180,1790581,11 +42048,Jax,274504,1723565,19 +42049,Himself (archive footage),173301,10592,2 +42050,The Amah,42678,14873,6 +42051,Almond,50647,54470,4 +42052,The Mark,173499,206847,6 +42053,Bit Role (uncredited),3059,130494,94 +42054,Madam Wei,117506,78429,7 +42055,Sylvain,151826,145120,7 +42056,Grand Duchess,129553,20127,10 +42057,Coach Jacob,77875,33836,5 +42058,Lee Mun-ho,16447,10112,1 +42059,Miss Gossage: Staff of St. Swithin's,83015,80995,3 +42060,Lange,241239,122888,9 +42061,LeeJohn,14423,56903,2 +42062,Simon Bernard,56853,35116,13 +42063,Jo Tanner,19989,34247,8 +42064,Additional Voice (voice),10193,35159,36 +42065,ст. лейтенант Владимир Николаевич Славин,20871,42124,7 +42066,Garth,19794,21105,33 +42067,Arvin,42941,1200415,25 +42068,Boy,43829,1219809,46 +42069,Reader,24363,1224565,4 +42070,Pete Wirth,14554,41231,7 +42071,Arnie Judlow / Bill Judlow,48156,3785,0 +42072,,54959,85684,9 +42073,Orlofsky,262528,56924,11 +42074,Sigourney Weaver (voice),127380,10205,31 +42075,Himself (Professor Nir Shaviv),3048,29899,1 +42076,Principal,30695,35759,2 +42077,Saint Louis,72602,12147,0 +42078,Dark Chocolate,15092,168974,4 +42079,Bianca,91715,30558,6 +42080,Mi-yeon 1's husband,85959,141548,4 +42081,,337012,1458053,1 +42082,Tallbear,119364,78398,8 +42083,,38362,144613,7 +42084,Sylvain,300,4290,8 +42085,Alice,133941,89278,6 +42086,Himself,307931,1393841,6 +42087,Chatting Girl,270303,1588358,19 +42088,Molly Byrd,153162,30242,9 +42089,Jack - Ranger Captain,33541,89703,53 +42090,Luís (Noivo),296288,1839933,37 +42091,German officer,88564,1467113,19 +42092,Extra (uncredited),3059,34047,53 +42093,EHC Guard,71670,146414,31 +42094,Rattlesnake Jake (voice),44896,2440,3 +42095,Titus Jaywood,244201,14685,2 +42096,Mikas Mutter,233639,685,2 +42097,Peter Gatien,1415,32597,5 +42098,Duke Wayne,21619,66606,2 +42099,Zhu Zhi Gen (Grandfather),241639,146097,0 +42100,Aunt Em,47508,141342,1 +42101,Finis Everglot (voice),3933,3926,6 +42102,Mothra,189,1358928,41 +42103,Masakazu,14537,33730,7 +42104,Mia (voice),145316,72753,10 +42105,Lil Duryea,147722,14974,1 +42106,Shorter Banks Secretary Searching for Tillie (uncredited),22943,1109650,40 +42107,,79871,1591060,7 +42108,MacVaughn,5965,46921,9 +42109,Schoolgirl,29161,1760085,20 +42110,Monk,181656,118982,2 +42111,Abigail,17606,6979,0 +42112,Alan,87587,935274,7 +42113,Beth Goode,5172,24305,15 +42114,Daniel,63615,999844,4 +42115,George,43809,33776,51 +42116,Herself,15258,216716,43 +42117,Munch Garnett,19255,15091,16 +42118,Harlan Swallow,13173,50465,22 +42119,Female Officer,109439,203781,23 +42120,Karl,32091,12206,2 +42121,Coach Driver,147829,99468,40 +42122,Himself - Band Leader,128669,1678684,14 +42123,Kingsor,35002,73980,2 +42124,Officer Sunshine,158990,141433,2 +42125,Keith Henshaw,84104,1077360,3 +42126,Ruby Dandridge,54982,18284,4 +42127,Old Anaheim,28304,109772,13 +42128,Little Girl (voice),15359,113903,7 +42129,,259075,1689884,10 +42130,Westlake's Receptionist,128669,1467696,22 +42131,Chancellor's Wife,177677,1562093,45 +42132,Stella Weldon,42752,100789,0 +42133,,83461,236849,4 +42134,Poliisi,101838,1029087,20 +42135,Sonia,319986,121566,2 +42136,Jehu,80320,93105,1 +42137,Jeff Reinhart,214,2464,2 +42138,Ed Dawson,23719,778,7 +42139,Dr. Prescott,33931,30234,4 +42140,Bobs,32610,101740,11 +42141,Kalyani,332827,1169390,4 +42142,Charlie - Sam Grundy's Assistant,81120,1289008,17 +42143,Comandante della Digos,41610,120636,10 +42144,Mizuo Ikeuchi,41261,97320,4 +42145,Marja,258585,1314866,3 +42146,Emma Gainsborough,32868,29221,1 +42147,Capt. Jasper Leigh,50329,29260,3 +42148,Marian Radu,32764,150573,0 +42149,Herself - at Banquet (archive footage) (uncredited),33740,44881,74 +42150,Miss Gina,3016,29582,4 +42151,Rebecca Shagal,3053,112454,3 +42152,Miss Withers,245168,990064,11 +42153,Melissa,63348,231014,1 +42154,Zuba (voice),10527,1897,6 +42155,Himself,150049,1295595,6 +42156,Bertram Kubitschek,41619,587906,8 +42157,Julie,18932,239967,2 +42158,Sadie,18405,453,3 +42159,Himself,40873,44547,5 +42160,Dorothy Gale,47761,94171,4 +42161,Goemon Ishikawa XIII (voice),30143,1222049,5 +42162,Zeus,310135,11086,3 +42163,Roger,43923,81557,23 +42164,Liz Bretter,9870,448309,5 +42165,Seymour 'Swede' Levov,326285,3061,0 +42166,Stable Swipe,118889,120823,26 +42167,Infermiera,42571,128230,14 +42168,Vi - Drunken Party Guest,179066,149133,55 +42169,Sally Brown (voice),15242,124660,5 +42170,Tipsy Blonde at New Year's Eve Party,18569,112365,26 +42171,Kathryn Waters,72140,42296,10 +42172,Pauline de Géran,4279,35956,2 +42173,Courtroom Spectator (uncredited),72847,5738,16 +42174,Hyo-shin,54111,428960,0 +42175,Dev Malhotra,20132,85668,1 +42176,Armenian Protester,332286,1444881,12 +42177,Himself,51311,67315,0 +42178,Commissioner,89086,13969,15 +42179,Kissing Guy,188927,1897698,25 +42180,Ned Christie,259975,10430,5 +42181,Gretchen,114242,1310051,6 +42182,Young Pioneer Konsantinov / Petya Gulliver,152948,1290496,0 +42183,Paul,177047,84497,2 +42184,Stephanie,33107,55085,1 +42185,Himself,44038,10828,10 +42186,Silvia,342213,104119,2 +42187,Amanda Post,84233,1580708,1 +42188,Angus,225728,1774532,10 +42189,Inspector Oliphant,49844,30706,3 +42190,Sooky,84295,596378,1 +42191,Suburban Dad,244610,1376415,13 +42192,Meagan,241254,1267285,24 +42193,Meimei,20846,65200,1 +42194,Lucy Collins,16358,11164,5 +42195,Birgül,13393,66981,3 +42196,Catherine Taylor,39957,78888,5 +42197,Victor Gerrard,299780,10985,2 +42198,The Flash / General Sam Lane (voice),353595,19506,5 +42199,,38189,209198,2 +42200,Jordan,36691,18248,4 +42201,A & R Man #2,69,1106263,29 +42202,,144651,1121247,2 +42203,Mark Fuhrman,56744,22227,0 +42204,Alice,46660,63312,5 +42205,Black Jack,26376,536472,10 +42206,Sondre,336882,937065,6 +42207,FBI Agent Dina Anderson,285908,977522,4 +42208,Mrs. Ruxton,47459,31696,7 +42209,Sänger im Club,3716,5498,26 +42210,Issei Itoi,18722,553424,10 +42211,Donaldson (uncredited),43419,96743,25 +42212,Obstetrician,47186,155576,35 +42213,"Captain Eric Finlander, U.S.N.",17744,12149,0 +42214,,337012,42565,4 +42215,Maid,55604,2790,13 +42216,Hattie,78734,103017,15 +42217,Jeff Kluster / Cluster,112503,33807,6 +42218,Lavinia,37628,177731,1 +42219,Lena,57775,1878411,5 +42220,Jamie's Mom / Jack's Mother (voice),81188,1364656,9 +42221,Hugo,423988,211042,6 +42222,Son of Ares,32657,141787,68 +42223,Decapitation Onlooker (uncredited),84104,236380,7 +42224,Kliegler,312669,12900,6 +42225,Fred Wischnewski,9076,27320,0 +42226,Gary Porter,36691,82167,12 +42227,Waitress at Newark diner,47186,199405,9 +42228,Doctor,381073,1593037,10 +42229,Sophia,39781,206966,6 +42230,Himself,198317,24377,1 +42231,Mrs. Peters,42293,146942,6 +42232,Travis,9287,15140,0 +42233,Lai Siu Tin,18665,118355,12 +42234,2nd Hip Hop Boy,15022,946489,27 +42235,Korgoth / Henchman #1 (voice),278901,5727,0 +42236,Dr. Victor Fries / Mr. Freeze,64202,16074,2 +42237,Ma Ayo Balogun,157384,1180093,4 +42238,Cheiko,1164,18054,3 +42239,Creepy Clockwork Chorus (voice),48466,76741,12 +42240,Петро,121688,126861,6 +42241,Nervous African Woman,2080,1353643,36 +42242,Martin,42533,191814,3 +42243,Pilcher,58076,8730,5 +42244,Eloise Chandler,25643,4491,1 +42245,Beatiful Babe,102668,1031787,18 +42246,James,128917,196862,10 +42247,William Friese-Greene,80596,3609,0 +42248,Jeanne,18897,28782,1 +42249,Eiju Dayu,46069,1459985,9 +42250,Kay Lawrence,27035,83796,1 +42251,Katalina Santiago,161482,131724,3 +42252,John,48339,12982,2 +42253,Juliette,60935,193045,7 +42254,Il secondo agente,103218,1701604,10 +42255,Tommy Corn,1599,13240,4 +42256,,17935,240563,5 +42257,Judge Fidler,173153,1072,6 +42258,Ambrosia,44680,85168,8 +42259,Martyn Fleming,11012,11278,3 +42260,Livia,48778,39195,1 +42261,Albert Humphrey,14527,166529,14 +42262,,412851,1153574,10 +42263,Susan Cass,217948,34210,4 +42264,Vanni,39979,45580,23 +42265,Mrs. Denby,26491,70961,12 +42266,Michelle Stone,321039,1265848,16 +42267,Takeshi,254679,80108,2 +42268,Mac,64627,18966,0 +42269,Matt Cockburn,257447,971388,6 +42270,ER Doctor,82,65422,12 +42271,Computer Guy,246655,1294171,65 +42272,Taxi Driver,91679,928975,24 +42273,Elevator Boy (uncredited),95504,1229431,21 +42274,Jack Cromwell,86360,1231648,1 +42275,Judge (uncredited),156360,30202,15 +42276,Squadron Leader Carter,44087,12726,10 +42277,"Auto-Gunnar, Majbritts far",76312,40420,5 +42278,Pellot,11912,54382,2 +42279,Marie,144792,1111532,6 +42280,Nino Saint Jean,151826,47838,14 +42281,,366759,935342,6 +42282,Lt. Cmdr. Grayson,91477,81179,5 +42283,Drill Officer,212996,122816,10 +42284,Hot Servant,156711,1349740,35 +42285,Kim O'Brien,39001,73403,7 +42286,Matt Jensen,20210,58381,1 +42287,Sophie,33009,1046202,11 +42288,Thomas,147815,1126673,0 +42289,Fileen,19350,58399,18 +42290,Max,339116,1672329,0 +42291,Giovanni De Ponte,159810,226385,6 +42292,Arzt,256311,21742,7 +42293,Nacera Boubziz,329809,1724270,10 +42294,Richard,22020,1207149,4 +42295,Subra,41030,10072,2 +42296,Dr. Patrick Schofield,215999,14344,8 +42297,,186971,1605804,19 +42298,Sylvia Zamperini,227306,1394426,27 +42299,Nightclub Extra,18651,98047,61 +42300,Standing Reporter on Train,26376,34008,74 +42301,Hauser,268920,85484,7 +42302,Williw Boy,42619,9287,2 +42303,,84823,1620094,10 +42304,Young Viet Cong,10004,61835,14 +42305,Sammy,243935,1513512,20 +42306,Violet Beauregarde,118,1285,3 +42307,Comendador,119374,1168435,5 +42308,Roma,27045,1363326,5 +42309,,79580,587516,10 +42310,Marian Spicer,73348,10159,4 +42311,Tour Guide in Gandazar,98644,1029129,11 +42312,Bit Part,18651,567219,54 +42313,The Neurologist,38269,123404,9 +42314,Prostitute Magda,241140,1049498,10 +42315,Esther,270654,4800,5 +42316,Robbie,73098,568075,3 +42317,Nanna,72596,1114537,19 +42318,Leiche,128140,1161089,13 +42319,,29717,88072,1 +42320,Chien Fu,11537,18897,0 +42321,Scheich von Berlin,2241,1073985,18 +42322,Scott 'Scotty' McClenahan,177190,51762,0 +42323,"Jim Newcomb, a townsman",28775,41756,12 +42324,Police Chief,223551,211080,11 +42325,Julio,41495,11033,11 +42326,Paul Claudius,267389,2567,2 +42327,,365323,1527064,4 +42328,Pvt. Bronte,46872,89526,1 +42329,Schwester Moema,61035,1148961,26 +42330,Diane,62289,53647,5 +42331,Manny,10475,26473,3 +42332,"Christopher Dollanganger, Sr.",236399,110472,7 +42333,Kostia,8899,240276,7 +42334,Kiko,71191,562155,0 +42335,Hostess,16996,1349549,23 +42336,Henri Danglard,45213,11544,0 +42337,Herself,307931,1489790,7 +42338,Belinda,208091,59750,1 +42339,Ming Li Fu,11175,1080062,7 +42340,Dilawar,113038,1056205,0 +42341,Marika (Marek's Mother),158947,1784278,1 +42342,Roger Dettner,140554,6086,0 +42343,,79580,117153,2 +42344,Assia,310126,3809,4 +42345,Page Hensen,26014,52929,1 +42346,PFC Sidney Phillips,189197,225,3 +42347,Joan Morgan,201749,13724,4 +42348,Psychiatrist,43778,1349322,8 +42349,Tax-Paying Rancher,183825,120811,45 +42350,Highway Patrol Officer,300187,75813,11 +42351,Jesse,21955,1330207,2 +42352,The Governor,3059,8833,24 +42353,Joanne Morton,169869,51315,1 +42354,Eugenio,61314,141114,3 +42355,Himself,407806,1700946,12 +42356,"(segment ""Miminashi Hôichi no hanashi"") (as Kinzô Sekiguchi)",30959,96806,39 +42357,Saint-Aubain,4279,24652,10 +42358,Grounds Keeper Zombie,24927,126152,14 +42359,Verwahrloste Frau,94336,1001692,9 +42360,Lisa Waechter,7353,1204,0 +42361,Alexander Minion,12279,4252,18 +42362,J.B. Hadley (as Donovan Leitch),191322,58141,4 +42363,Capt. M. Renard,22584,85943,8 +42364,Kwong,91548,1039054,8 +42365,Geraldine,93935,1657944,15 +42366,Edward Carson,71885,17396,4 +42367,Wonder Woman / Lois Lane (voice),353595,15761,6 +42368,Finn McMissile (voice),49013,3895,2 +42369,,438597,1748448,4 +42370,Ashley Graham,133121,78799,3 +42371,Doug,91259,1235177,1 +42372,Master Dong,121823,576408,8 +42373,Dr. Emma Kirpatrick,63706,550117,10 +42374,El Jefe,214138,1023670,0 +42375,Anya (voice),20715,1454946,2 +42376,Marty Buchwald,22051,8212,2 +42377,Chief Boyle,10694,52145,11 +42378,Nadine Cross,13519,1212,8 +42379,,33009,65561,5 +42380,Rupert Garcia (voice),13355,6862,9 +42381,Terri Hooley,130593,97416,0 +42382,Biker Babe,273610,1495852,14 +42383,Aleksandr,345918,1224022,15 +42384,Yi Xin,76349,1127729,18 +42385,Patsy Cabaluso,17258,21385,17 +42386,Cora,112973,5385,10 +42387,Valerie Hayden Miller,73348,30124,0 +42388,Brent Guthrie,77067,232255,1 +42389,Librarian,374473,1766049,20 +42390,American sailor,35852,18763,6 +42391,Junge,104172,22179,16 +42392,St. Valentin girlfriend,252034,4430,8 +42393,Jäger,75578,87868,11 +42394,,175924,32225,1 +42395,Jedidiah McKenna,63988,51576,0 +42396,Stéphane,98277,565126,17 +42397,Ademar Albuquerque,232739,76862,6 +42398,Emmanuelle,92424,72590,2 +42399,Cashier (uncredited),22584,86831,33 +42400,Imogen,47171,63313,4 +42401,Himself,15258,57551,6 +42402,Teresa,82481,1127395,32 +42403,Ruby,351242,71189,1 +42404,Cop,24914,24362,3 +42405,Neville Baddington,238302,13472,1 +42406,,49574,240545,5 +42407,Chastity,429838,1468170,3 +42408,Muscles,10044,18897,1 +42409,Arisia Rrab (voice),17445,60739,13 +42410,Horatio Wilson,1942,12718,8 +42411,Vater in Werbung,217412,1391240,31 +42412,,103301,86999,1 +42413,President (voice),136368,962478,3 +42414,Robert,2196,11278,8 +42415,Golf Pro,149509,1219446,21 +42416,Server,23830,549318,14 +42417,,343809,1541179,2 +42418,Ted,291871,1518916,17 +42419,Chris,358895,237383,21 +42420,Stella,337958,152545,9 +42421,Inka,416569,212815,1 +42422,Phya Prasit,2805,134729,6 +42423,Policeman #1,29923,105251,2 +42424,Janitor,125087,7419,3 +42425,Sebastian the Wolf (voice),38317,89402,16 +42426,Dad,34806,18471,4 +42427,Ethan Carter Wate,109491,979103,18 +42428,"Katherine ""Katy"" McLaughlin",14012,8291,3 +42429,12-Step Meeting Member,14976,167564,20 +42430,Mrs. Elton,51994,153359,6 +42431,First Cab Driver,98125,1062654,28 +42432,Mickey,34078,109846,4 +42433,Yegg,164504,33359,5 +42434,Oficial,82767,1469972,11 +42435,Naval Officer,52454,1630327,43 +42436,The Indian,83831,6178,1 +42437,Berta Hubbard,67375,1039431,8 +42438,Rupert 19v,40864,124867,0 +42439,Tom Olsen (as Dirk London),262528,200573,9 +42440,Carla,17725,62961,10 +42441,,141603,1115099,15 +42442,The Princess,186971,544666,6 +42443,Minor Role,43833,102746,16 +42444,Janice,339408,60397,11 +42445,Patrick The Bear,322443,125684,4 +42446,Miss Flannery,32489,1750077,10 +42447,Ryan Maguire,85580,932336,0 +42448,Mladi policajac,259690,1156171,13 +42449,Leslie Burke,169009,121604,2 +42450,Tonya,155341,1869473,6 +42451,Arnold,40466,1236069,10 +42452,Wu,289720,216782,7 +42453,Cynthia Applewhite,227306,98306,24 +42454,Sick-Head,284564,93033,11 +42455,Inspector Kaviraj Patil / Abdul Qavi,20742,85730,2 +42456,Sasha,19423,43277,1 +42457,Herself,15258,56910,21 +42458,John Hunt,211088,1097645,3 +42459,Ullo,39308,12693,7 +42460,Lt. Edmond Heines,102155,160588,13 +42461,Glader,198663,1415442,34 +42462,Ginny Bai,45013,78324,1 +42463,Alissa,113178,65020,1 +42464,Marja Father,354287,1816341,47 +42465,Larry Till,228205,1074187,12 +42466,Mrs. Loy,306952,1511979,36 +42467,Le routier,59118,73505,27 +42468,Afshin Ghaffarian,266102,54810,2 +42469,2nd Lt. William Mowett,8619,219496,5 +42470,Josué,84354,1041197,7 +42471,Camille (voice),393559,1615535,2 +42472,Captain,228074,39952,7 +42473,Adèle,68822,1654206,17 +42474,Delphine,270400,1548360,7 +42475,Sire Noble,90034,588204,11 +42476,,68123,558680,14 +42477,Mr. Harvey Fenner (voice),10198,35219,17 +42478,Stand in (uncredited),245703,1485541,32 +42479,Johnny,189,24045,3 +42480,Shep (voice),21765,1895,7 +42481,Party Guest,43811,1469587,64 +42482,Louie Muro,297853,62715,7 +42483,Tamekichi,74126,106164,5 +42484,Terence Aloysius 'Slip' Mahoney,187516,89989,1 +42485,Chutiya,141603,86017,6 +42486,Young Yashida,76170,1155715,11 +42487,Стюардесса,207696,138127,1 +42488,Christine Gilbert,43491,65284,2 +42489,Joe Ferguson (as John Sands),64456,118309,2 +42490,,336655,765,1 +42491,Lissette,274504,1373292,13 +42492,Imprenditore,161545,120656,7 +42493,Bingham,30941,85409,16 +42494,Leutnant Neuchl,45398,100095,4 +42495,Sheriff Ed Williams,22606,88978,4 +42496,The Joker (voice),342917,963818,2 +42497,Party Guest,127812,1400265,38 +42498,Cheong-hae,25653,64453,0 +42499,Nurse Strand,84708,34184,5 +42500,Christel,210052,1193610,3 +42501,Vanessa,98586,234619,11 +42502,Lynch,128644,1087649,3 +42503,Frau von Rautenfeld,42460,29143,4 +42504,Edward Dalton,19901,569,0 +42505,Trina Stanley,42456,87120,4 +42506,Katy,51036,1879466,11 +42507,Nurse (uncredited),15807,106583,27 +42508,,116762,171627,8 +42509,Mann im Kiosk,2349,24062,15 +42510,Ship's Officer (uncredited),10178,148852,39 +42511,Jacob Chernov,35724,432267,2 +42512,Tobias Cromwell,82191,29492,5 +42513,Irwin Marcy,91607,6844,7 +42514,Haya,336029,1260160,4 +42515,Scagnozzo dell' On. Conversani,379873,988680,11 +42516,Martha,64942,1125484,15 +42517,Official at Prague Steel Works (uncredited),41597,119342,21 +42518,,32934,1808891,4 +42519,Miss Lacey,35052,192360,9 +42520,Gregg Baker,199373,142192,14 +42521,Sergeant,127812,34208,39 +42522,Pirate Leader,109424,1334464,16 +42523,Cecil Peabody / Peeper No. 2 / Pilot / Ghoul No. 1,38134,1846966,13 +42524,Simon,340616,145120,4 +42525,Jasmina Voss,80125,1191238,12 +42526,Keyes,9080,46099,11 +42527,Roshan Gupta,118809,81986,4 +42528,Dr. Hardy,31942,10158,3 +42529,,31418,584042,3 +42530,Harvey Molina,200505,8924,7 +42531,Madre di Gigio,23619,1340860,16 +42532,Maggie Cahill,7445,967376,6 +42533,Siegfried,10659,57852,0 +42534,Jim,237584,27740,4 +42535,Manuela,44246,17062,12 +42536,Lauren,30780,43905,5 +42537,Boss,33481,110763,12 +42538,Mutant Child,263115,1821492,80 +42539,Infirmière Peggy (as Georgia Moll),118150,3786,5 +42540,Kuzma,245891,78890,18 +42541,John - the Baptist,115109,30239,17 +42542,Studio Employee (uncredited),32552,1010443,27 +42543,Young Charlie,374461,1807167,7 +42544,,278475,239065,2 +42545,Mrs. Johnson,62213,1803326,9 +42546,André,64944,438290,14 +42547,Socrates,13689,1733,1 +42548,Rick,326,28638,17 +42549,Jay,359870,1807045,21 +42550,Dominik,7210,7805,1 +42551,Doc,370755,8689,3 +42552,Frederic Johnson,284293,41688,6 +42553,Chet,97614,10823,4 +42554,Handlarz Jan Bala,25667,97198,7 +42555,La femme du village,21348,1838961,25 +42556,Security guard gets his arm chopped off,18665,131728,18 +42557,Clerk,62143,3548,21 +42558,Apdi,148697,97272,0 +42559,Alicia Wallenbeck,10077,7059,0 +42560,,41252,125927,5 +42561,Dave,304372,9779,3 +42562,Sera Grundel,397837,1818586,12 +42563,Elia,43989,7542,4 +42564,Reardon,248469,151694,5 +42565,Bron,24554,2628,11 +42566,Frosty Hesson,82684,17276,0 +42567,Joyce Darling,152393,15736,2 +42568,Mr Cheung's doctor,2463,1180151,10 +42569,Emily,1790,98241,11 +42570,Vato Punk (uncredited),15092,174560,94 +42571,Jérôme Martignac,60623,18177,3 +42572,Diner Waitress,773,17415,13 +42573,Wilhelm II.,91380,38244,3 +42574,Digger,48967,53916,7 +42575,Chinese Waiter,157898,95014,10 +42576,Sadu,339944,1566010,4 +42577,O'Leary,48207,127156,7 +42578,Craig,335872,1590707,7 +42579,Eva Ugolini,41110,59638,7 +42580,Amanda,27740,1234,11 +42581,Pirx,67102,548086,0 +42582,Ethan,14432,2839,9 +42583,Pearl,362180,1517202,2 +42584,La mère de Boris,340616,6030,10 +42585,Terry Parrish,149509,29234,5 +42586,Aisling Callahan,323149,1422264,5 +42587,Mr. Brunner / Chiron,32657,517,5 +42588,Guillermo,359025,118303,1 +42589,Phuchit's Mother,13436,1656871,8 +42590,Claudie,54563,18811,5 +42591,Fanny,16175,34247,5 +42592,Pastor Stephen Browning,247691,86368,10 +42593,Clerk,65650,79082,21 +42594,Gladys,41206,34236,12 +42595,Sierge,2172,79192,13 +42596,Marisa,42571,67141,10 +42597,Nilă,32601,1113155,9 +42598,Marie,35689,6832,2 +42599,,398452,1212648,4 +42600,Julien,58081,1367114,7 +42601,Henry Seaton,74314,2642,6 +42602,Anne,45000,37989,1 +42603,Bootsie,242097,70117,14 +42604,Dolores,310126,592470,8 +42605,Robber #1,70583,558913,5 +42606,Warehouse Laborer,443053,1763230,4 +42607,Gerry Smith,244316,141774,8 +42608,Shay,102668,1031793,26 +42609,Cameron,14123,151079,42 +42610,Boxing Coach,242382,34130,9 +42611,Aniket,362150,1517095,8 +42612,Frank Carrington,42122,3796,4 +42613,,107916,1042756,9 +42614,Resident Assistant,51736,1178308,11 +42615,,101352,1027199,1 +42616,Security Guard Delta 1 - Groundbreaking (uncredited),69152,68330,9 +42617,Peggy Gordon,18387,41246,4 +42618,Stand-up Bar Patron,380856,1294270,8 +42619,Il direttore,106256,133755,8 +42620,Brian McBrian,9779,24200,10 +42621,Vincent,377287,1582024,1 +42622,Ramirez,18015,146262,8 +42623,Blofeld's Analyst,206647,1436816,75 +42624,Matteo Agueci,167583,1125591,9 +42625,Ivy Weston,152737,86034,7 +42626,Carmelo Spadone,118195,240141,5 +42627,Wendy Snow,24150,212833,21 +42628,Vorsitzender Richter,421958,3934,4 +42629,Roffe Nordström,145194,87723,5 +42630,Katie,19342,34519,7 +42631,Ella Gault,237,3063,1 +42632,Anne-Marie,13710,35962,0 +42633,Liz Daniels,9893,60073,4 +42634,Maggie,20381,56152,1 +42635,Jury Foreman,18447,190775,9 +42636,Fresno detective,25111,5171,6 +42637,Mr. Cellars,218778,1223718,19 +42638,Soldier Collecting Signatures,78318,120046,44 +42639,Chuckie,30995,98179,3 +42640,Jasmine,168259,1128522,40 +42641,Sheriff Deputy / Pedestrian with Car,268920,1371231,98 +42642,Ogata Kikuko,46492,95504,0 +42643,Burch,76203,1173099,24 +42644,Grace Thornberry,5804,45651,0 +42645,Lila,16999,81137,8 +42646,Attilia,42679,67321,10 +42647,Bernard Vigneaux,12446,64541,2 +42648,Jinx,13534,6408,0 +42649,Mason,315855,131338,21 +42650,Ghost Engineer,70981,938419,19 +42651,Mary Reall,73194,8518,5 +42652,,172705,1157390,8 +42653,Accordionist-Singer (uncredited),182035,90072,9 +42654,Don Walsh,276909,1351682,4 +42655,Melahat,307020,1251644,3 +42656,Faat's mother-in-law,37702,1135781,11 +42657,Zoe Quinn,45556,1232315,2 +42658,Gardener,214086,1714881,9 +42659,Scribe,61225,159394,31 +42660,Winnie,222220,1172581,7 +42661,Calebra,65674,49895,7 +42662,Record Company Rep,55347,97923,12 +42663,Jimmy,434873,105902,6 +42664,Faye Lapinsky,31913,7632,1 +42665,Kim,244539,1193108,15 +42666,Dr. Edward Stanton,332662,1570538,1 +42667,Daniele Traversi,38310,105114,5 +42668,Lena,8088,955,0 +42669,Governor's Aide,66881,1426209,20 +42670,Gabby Douglas (7-12 yrs.),254065,1297318,4 +42671,Angie,43049,258571,8 +42672,Bada,69075,1200361,12 +42673,Mia,27599,98315,1 +42674,Emily Parrish,50590,84247,1 +42675,Kyle Norris,383140,3197,1 +42676,Miss Maguire,58244,180691,9 +42677,Elsa (voice),326359,19394,2 +42678,Rámar Holý,18352,1389484,17 +42679,Rock,84348,98631,2 +42680,Himself,63144,553505,0 +42681,,4344,1123125,9 +42682,Giovanni,175334,1358252,2 +42683,Section Six Soldier,315837,73884,33 +42684,,37437,1244470,3 +42685,Augusta in 'Our American Cousin',109716,126657,31 +42686,Charly,9943,27319,1 +42687,,105352,1591306,5 +42688,Mrs. Edgewaters,227717,85997,8 +42689,Maj. Buch,102155,71146,21 +42690,Ryan,11247,81391,16 +42691,Officer Joe Gray,61908,127520,6 +42692,Tamiya Ryoko,282070,110058,4 +42693,Johnny,74395,5723,2 +42694,Ann,75204,574144,7 +42695,Szabó Bácsi,76714,15398,15 +42696,Liang Rong,63441,1140545,11 +42697,Delia Leslie Friskett,108812,6721,3 +42698,Christian Girl #2,81434,228141,3 +42699,Ned,14414,84685,3 +42700,,261036,17832,2 +42701,Hani,12113,2983,2 +42702,Phone Technician,6973,53184,23 +42703,,91477,31503,7 +42704,Mrs. Fairlie,69903,12430,4 +42705,Captain Lovas,193756,1283056,36 +42706,Detective's Wife,56599,134384,4 +42707,Mère de Valentine,382501,20530,8 +42708,Agent Katherine Cowles,339527,37260,2 +42709,Sancho Panza,145481,29518,1 +42710,Bean Boy,380124,1480597,10 +42711,Mildred Loving,339419,17018,1 +42712,Volf,245950,1888610,9 +42713,Clip from 'Broadway Melody' (archive footage),33740,117675,44 +42714,Herbert V. Allison,43526,3363,3 +42715,Inspector,50108,1089597,9 +42716,,172008,1182596,11 +42717,Driver,82696,928638,11 +42718,Bouffalant / Hydreigon,88557,108721,6 +42719,Latin Priest,274479,130741,36 +42720,Police Sgt. Peters,74314,1067994,15 +42721,Maureen,397422,1431441,26 +42722,Nicole,85350,1467999,74 +42723,Rachael,345916,21595,4 +42724,Rai Bahadur Verma,53767,1412404,4 +42725,Groomsman,157384,82159,8 +42726,Elettra,379873,1879763,22 +42727,Vagabond #2,45935,551670,8 +42728,Lisa Cohen,44754,10690,0 +42729,,105384,1140820,4 +42730,Pianiste,469172,1862607,14 +42731,Ginger Gray,40916,9066,1 +42732,Ian,58166,54464,12 +42733,Himself,209112,12219,32 +42734,Himself,189225,1119079,1 +42735,Pete,294272,1422517,1 +42736,Dirk Breslin,241574,178107,4 +42737,Sheriff Antony,13836,87066,15 +42738,Topper Burks,9787,9656,6 +42739,Sarah,251227,1286527,14 +42740,Leah's Father,13551,52374,5 +42741,Madre di Paolo,40817,7550,14 +42742,Padre de Delba,106887,983836,5 +42743,,327225,1139670,12 +42744,Leonard,45512,18391,1 +42745,Ruth,413417,95441,13 +42746,Colonel Morgan,42852,81291,12 +42747,Tak,9056,1254216,14 +42748,Sans-abri,98277,1849116,39 +42749,Conor / Mac Lir (voice),110416,2039,0 +42750,Additional Voices (voice),130925,131782,27 +42751,James,396392,151975,4 +42752,,169343,1151396,4 +42753,Courthouse Reporter,186869,1862893,18 +42754,Tertius,9703,1216581,15 +42755,Theatre Patron,38322,1869046,43 +42756,Lynette Swanson,13075,106322,7 +42757,Roi Mateke Seko,10087,63143,16 +42758,Jean Trevethan,43093,611922,3 +42759,Oberleutnant Hofacker,139862,56970,1 +42760,,405882,1449065,21 +42761,Andrei,14979,22016,15 +42762,Smitty Smith,22682,954432,9 +42763,Jean Barolay,105077,90813,12 +42764,The Dogwalker,271718,10980,12 +42765,Woman,101242,1026727,6 +42766,Naomi Rosenbaum,334074,221981,10 +42767,Henchman Spike,22602,88979,3 +42768,Producer,85525,64454,8 +42769,Bill Hammond,174751,11315,3 +42770,William Wilberforce,15163,65524,0 +42771,Allan McKenna,37935,26847,5 +42772,Hal,9959,61016,19 +42773,Mr. Wells / Hank,75300,9976,3 +42774,Bar Patron / Older Couple,360592,1512199,25 +42775,Ted Burgess,36194,27554,1 +42776,,14210,101908,0 +42777,Waitress / Autograph Hound (uncredited),59828,7632,13 +42778,Strawberry (voice),149910,58965,13 +42779,Gail,55934,59696,1 +42780,,25716,1403099,27 +42781,Lt. Daniel Ferguson,118900,13733,1 +42782,Himself,410718,1702118,15 +42783,Maggiordomo,82470,37124,1 +42784,Snow (voice),26505,82092,13 +42785,Blow Job,91443,76470,3 +42786,Mental Patient,13802,30316,35 +42787,Goretti,287391,26400,5 +42788,Ralf Brockmann,12605,37107,2 +42789,,86985,6140,22 +42790,The Cat in the Hat (voice),43580,1226732,1 +42791,Lee,70074,1031463,18 +42792,Marie,142712,10239,4 +42793,,122435,96597,7 +42794,Strip Tease Girl,77930,1784651,58 +42795,Two Tone,109610,44191,10 +42796,Loretta,94551,107309,10 +42797,Haines,99909,119258,19 +42798,Glenda,84060,1129684,5 +42799,Unteroffizier Schwitzke,19430,18538,11 +42800,Leslie Sargent,196065,4098,3 +42801,Worker Not Wearing Mask,130507,133277,24 +42802,Dagobert 'Digby' Geste,55628,29802,1 +42803,Himself,8079,35791,8 +42804,,273096,1096815,5 +42805,Stormtrooper,330459,571309,92 +42806,Laura / Marion,13713,63836,5 +42807,Sverre,15440,76558,10 +42808,Stacey,42941,27136,15 +42809,Mrs. Okami,43113,1198473,14 +42810,,392832,27399,4 +42811,Cindy Beatty,55694,44995,11 +42812,Lorene O'Hara,150065,36549,12 +42813,Holly,42023,16215,1 +42814,Rapping Boy #1,23367,95366,16 +42815,Antonia (15),75969,912632,31 +42816,Agent Berkley,102382,171886,25 +42817,TV-Showmaster,212503,1434413,11 +42818,Butch Henley,326045,62919,6 +42819,,14210,22018,6 +42820,,23898,235407,1 +42821,Harries Servant,186227,1172948,24 +42822,Batter,17940,1293716,8 +42823,June Broughton,15013,6973,8 +42824,,261581,52849,1 +42825,Can-can dancer,3023,1580382,10 +42826,Himself (voice),378441,1797389,12 +42827,Joe Rincon,44943,454,12 +42828,Anberber,12427,1811518,1 +42829,Luco,102362,2682,7 +42830,Slunečník,84030,1598405,5 +42831,God Squad Groupie,285270,1367909,15 +42832,Frank Allen,56154,1196969,47 +42833,Burlington Potluck Guest,356752,1841542,66 +42834,Christy,306966,78804,3 +42835,,321142,522,3 +42836,Carla's Family #8,2143,132904,26 +42837,Himself,413579,25503,8 +42838,Abraxas' Answer Box (voice),37926,93644,6 +42839,Geum Eun-bang,21708,1113135,8 +42840,Talget's Little Girl,75174,935297,13 +42841,Police Patrolman,250332,1014834,59 +42842,Young Dory (voice),127380,1695063,28 +42843,In-gil,396535,1351055,14 +42844,Herself,122134,1419411,2 +42845,Ambassador,85442,135096,15 +42846,Sid Garner,45243,4175,7 +42847,Fernando Karadima,337101,127248,1 +42848,Video Game Exec Yoshi,218778,1576429,25 +42849,Miss Hutchins,38769,8515,7 +42850,Nathan,42040,40043,8 +42851,DJ Ali,393445,131845,4 +42852,Alec,147722,13298,5 +42853,June McGuire,173634,14655,3 +42854,Little Inez,2976,29225,11 +42855,Party Guest (uncredited),31913,52043,26 +42856,Himself,211411,1788314,3 +42857,Saroja,15761,86077,3 +42858,Alejandro,325385,55119,6 +42859,Colleen,345918,78863,11 +42860,Dr. Kita,3146,30772,3 +42861,Lana (Magdalena),73194,30155,0 +42862,Aarne Tapio Hirvola,55500,79763,5 +42863,Dirt Bike Rider,312221,1746960,62 +42864,Joanne,172847,180175,2 +42865,Maya Chopra,68987,52969,2 +42866,Phoenix,11653,1593249,21 +42867,scenes deleted,46586,1151549,17 +42868,Store Keeper,31263,1576624,8 +42869,,73208,175965,7 +42870,Mrs. Waxman,344906,85837,15 +42871,,396987,144841,1 +42872,Adm. Aaron Richland,50942,10132,2 +42873,"Chicamaw ""One-Eye"" Mobley",44190,79247,2 +42874,Carla Brant,118948,233143,4 +42875,Kif Kroker (voice),15060,34521,5 +42876,Sgt. Mack,151310,105456,10 +42877,Watchtower Computer / Reporter (voice),30061,34945,13 +42878,Donnelly,25126,2039,0 +42879,#1,255692,148125,4 +42880,Darla,3563,446351,12 +42881,Claire Connors,19665,123304,14 +42882,Olivier,172890,1155572,1 +42883,Osvaldo,98025,52657,11 +42884,Akiko,50759,108018,3 +42885,,33558,1431632,5 +42886,Mrs. 'B',23855,53602,8 +42887,De Silva,103236,600251,3 +42888,Kurchatov,336549,38131,1 +42889,Teacher,28710,96918,10 +42890,Peter,253235,1110925,16 +42891,Mary Pascoe,413998,1371827,7 +42892,Brenda,205724,109869,3 +42893,Jackie,82679,86267,7 +42894,Mike Clark,183015,1087769,0 +42895,Skip Gibbs,168027,2224,0 +42896,Superintendent Luk Kai Chung,11647,96862,6 +42897,Nina,289191,26202,7 +42898,Chief Badger,259593,5401,5 +42899,,15464,86075,2 +42900,Mummy,358511,1142414,3 +42901,Kissing Girl,188927,1897699,26 +42902,Former President Russia (archive footage),319092,230551,11 +42903,Adjutant von General Weidling,613,239716,51 +42904,Jack,215881,34199,5 +42905,Sean Meehan,212756,1290466,4 +42906,Ed Avery,26036,2091,0 +42907,Garver,263855,6862,5 +42908,Police Officer,269258,47779,6 +42909,Narrator (voice),16137,79553,7 +42910,Technician,262841,61187,12 +42911,High School Student (uncredited),156700,1842220,58 +42912,Henry Phillips,47863,139541,0 +42913,"Bliźniak, syn Kwiatkowskich",155325,1616637,9 +42914,Priya,63376,113809,1 +42915,Clip from 'Barkleys of Broadway' (archive footage),33740,30003,62 +42916,Island Scientist,209112,1691971,59 +42917,Tower Guard,27470,8632,3 +42918,,421365,1455553,5 +42919,Alan Brooke,399790,53917,7 +42920,Ramenko,48805,118586,7 +42921,,170998,123180,3 +42922,Uncle Francis,183015,33832,6 +42923,Johnny Torno,25807,3152,0 +42924,Kelly,290714,15824,3 +42925,Kim Sang-byeong,1416,16963,1 +42926,Construction worker #1,101998,76973,23 +42927,Federale,263115,1365981,66 +42928,Niko Smolander,18279,82857,0 +42929,Glorf (voice),27042,97000,3 +42930,Shuji,104251,227633,0 +42931,Waitress,68360,1631529,3 +42932,Herself,26465,4810,9 +42933,Justice Raghunath,39039,121863,0 +42934,Ike,312497,224144,22 +42935,Egyptian Female,24973,1747651,15 +42936,Alexander Johnson,398891,6181,5 +42937,Jimmy D,257447,1696934,21 +42938,Chris Lipscomb,300321,1164758,1 +42939,,169683,105114,3 +42940,Edmund Pevensie,2454,5527,3 +42941,Mrs. Fuller,141418,1528095,7 +42942,,87894,1360388,10 +42943,Alice Ponchabert,61765,39199,2 +42944,Looter (uncredited),45527,40609,7 +42945,Masako Yoshida,51549,553809,4 +42946,,86985,1523035,11 +42947,Hugh Bell,157843,10779,7 +42948,Henry,120497,30018,6 +42949,Juippi,33481,109893,9 +42950,Police officer in woods,15472,568303,30 +42951,Hathaway Noah,16157,1679,9 +42952,Josh Holliman,28730,3911,15 +42953,Schaunard,28212,122402,2 +42954,Gypsy Girl,35197,113973,10 +42955,Mizore Fuyukuma (voice),16907,554187,15 +42956,Mrs. Dornwinkle,28340,100491,8 +42957,Cocoșilă,32601,1130081,4 +42958,Elisabeth,15177,77890,4 +42959,News Van Driver,74,1391612,21 +42960,Waylon / Floyd (voice),9948,12077,7 +42961,Himself,410718,1702113,13 +42962,Marqués de Leguineche,116312,1013000,1 +42963,Press Man (uncredited),31773,111827,29 +42964,,14284,846000,6 +42965,Katkof,76207,300192,4 +42966,Sergeant,28425,100763,11 +42967,Admiral Garvey,17657,19411,5 +42968,First Sto-Lu,27085,55271,18 +42969,Jimmy Stevenson,371504,55578,9 +42970,медведь,27935,99272,4 +42971,Superintendant,5511,27440,1 +42972,Don Miller,76785,8875,1 +42973,Violet's Friend,16131,79426,17 +42974,Ellen Wheeler,40387,3635,0 +42975,Miss Elizabeth Martin,15264,99329,5 +42976,Mario Millio,73835,21237,0 +42977,Danish Scientist,329865,1476892,23 +42978,Simon,11656,1114985,10 +42979,Sam Lewis,37462,29675,4 +42980,Marguerite,2029,51102,12 +42981,,156988,33818,6 +42982,Jack Newton,9785,26782,12 +42983,придворная дама,63449,1853254,7 +42984,Prospector Eddie,74629,101606,11 +42985,Ruthie Lee,11577,80135,24 +42986,Dr. Colin,28510,101034,6 +42987,Koh Jimmy,39024,1155281,3 +42988,Artist,128900,1158287,26 +42989,Young Brianna,11247,53889,26 +42990,Lt. Len Ross,48412,84326,4 +42991,Copper John,137357,14300,2 +42992,Barnabas,26891,14631,5 +42993,Edmund Hillary,211088,1206253,0 +42994,Miss Pritchitt,21955,1713202,11 +42995,Launchpad,10837,162323,1 +42996,Tommy,335970,1519998,32 +42997,Abril,394723,1246183,5 +42998,Sex Offender,146233,1689980,24 +42999,Col. Harkens,64129,1544770,9 +43000,him self,413882,1758524,14 +43001,la femme de chambre,50350,146628,16 +43002,Man Outside Bar,220820,179887,19 +43003,,320005,4793,4 +43004,Captain Michaels,336004,101847,14 +43005,Harley,22897,17697,3 +43006,Prítel,16439,111218,0 +43007,Frank,2061,3398,0 +43008,Annalisse Vellum,124042,19187,0 +43009,,94671,418,8 +43010,Himself,2890,28731,2 +43011,Dana Rogers,15613,83780,9 +43012,Urbani,191820,15440,2 +43013,Coroner,88518,107325,10 +43014,Jayde's Friend Tanya,91070,1454946,23 +43015,Dante Hicks (voice),282247,23629,2 +43016,Sokovian Police Captain,99861,1015829,63 +43017,Recepcionist Agata,329550,140666,50 +43018,Cecilio,18120,3813,12 +43019,Alternate Woman,23382,90044,7 +43020,Babul,14142,84898,8 +43021,White Man at Lynching,14047,1262963,40 +43022,Alex Deford,271664,137951,4 +43023,Squatter Mother,209112,1393349,129 +43024,Luigi,131507,33926,1 +43025,Additional Voices (voice),269149,186605,37 +43026,Molly,18040,82630,3 +43027,Aunt Lily,16358,15423,10 +43028,The Grandmother,71336,562602,6 +43029,Hesse,40649,196358,4 +43030,Kyeong-Seon Cha,108972,123664,0 +43031,Michelle Trey,206284,2138,3 +43032,Tony Murlock,230182,40221,3 +43033,Soldier on Bus,8988,1741975,53 +43034,Worker,182127,1440457,34 +43035,Hansom Cab Driver (uncredited),43522,88728,80 +43036,Rosebud (voice),149910,134658,7 +43037,Franco il bracciante,58011,1488533,18 +43038,Dorota,200796,1020809,2 +43039,Itsuki Kamayama,39493,114725,0 +43040,Shivam Pandit,22448,85969,0 +43041,Paul Tellier,1254,22306,1 +43042,Col. Desmond Trump,255692,11086,3 +43043,Security Guard,218778,54720,30 +43044,Mother,9987,586,2 +43045,Harry Willey,120259,110940,4 +43046,Priest,46930,137816,4 +43047,,44716,1443305,40 +43048,Donar,7237,5695,9 +43049,Moderatorin,1912,35541,14 +43050,Florence Foster Jenkins,315664,5064,0 +43051,Christmas Mother,283445,1574911,19 +43052,Young Construction Worker,16175,79919,25 +43053,Louise Sanford,171308,81774,5 +43054,Bloodbottler,267935,19278,4 +43055,Rookie,18722,553434,29 +43056,Eddie Miller,33025,83253,2 +43057,Model (uncredited),59962,1581103,39 +43058,Downtown Home Infant,10596,65810,18 +43059,Le sadique aux cheveux longs,183962,10254,5 +43060,Greed,84420,1039421,6 +43061,Frank,115276,52890,0 +43062,Carl,12171,17201,9 +43063,Fi'Ja,188927,205179,15 +43064,Mary,324150,151025,6 +43065,Fran,9472,1294,10 +43066,Deputy,43829,116494,19 +43067,Topher,347630,1695647,11 +43068,Harvester,12171,56475,8 +43069,Woman Exiting Bar,25551,101479,19 +43070,Félicité,436340,1744814,1 +43071,,244956,1179100,8 +43072,,133783,1476854,16 +43073,Ashley,10425,65125,14 +43074,Mrs. Freddie,21968,1655537,7 +43075,Cel. João Libório,232739,92193,5 +43076,Shane Owens,114779,963482,5 +43077,Corvin - Caver,9042,54627,13 +43078,l'Albinos,76651,49000,7 +43079,Sam (Date 1),405473,1518970,23 +43080,Grandmother,13596,1811261,32 +43081,Dr. John Coven,76012,2714,1 +43082,Jeanne / Belladonna,64847,552675,1 +43083,Youth,42852,85531,20 +43084,Invitada boda,80280,1602330,28 +43085,,320910,1055740,12 +43086,Un producteur d'ABC,332794,146751,19 +43087,The Foreigner,443007,1763913,3 +43088,Crying Woman,16083,79216,12 +43089,Lover,160160,1158762,12 +43090,Willard Holmes,36251,133799,6 +43091,Amparo,107287,228499,6 +43092,Marit,14078,76334,6 +43093,le pianiste/ Pianist,90930,34263,5 +43094,Larry Freeman,295588,19152,5 +43095,Vito,83802,1548433,11 +43096,Catalina,72900,87017,1 +43097,Dr. Havice,47540,151349,8 +43098,"Anna, direttrice lavanderia",82481,1127310,7 +43099,Sookhee,48508,1750963,6 +43100,Lt. Scott,42123,79393,4 +43101,Robert Lander,10834,169,1 +43102,Darius,109391,1204701,34 +43103,Jake Russell,32790,72997,1 +43104,Tang Mie,62301,235093,3 +43105,Dean Rickert,18214,83978,5 +43106,,67177,25810,0 +43107,Bernard,323665,6573,4 +43108,Zbigniew Religa,298040,140652,1 +43109,Mike,335869,57829,8 +43110,Jacques-Yves Cousteau,332794,2192,0 +43111,Jeff,7555,97551,10 +43112,Marie,66447,4274,5 +43113,Michael Fandango,43119,105637,2 +43114,Claire Moutiers,26810,6549,0 +43115,Assistant Registar,5460,87777,8 +43116,Everly,101325,658,2 +43117,Palyaço,361181,1513952,14 +43118,Prof. Ursula Undershaft / Aftershock,29054,43068,2 +43119,Wesley Holt,219466,1238461,8 +43120,Spider Lady #4,256962,1819143,72 +43121,Jasper Goodwin,44001,2698,5 +43122,Gary Richards (as Tony Denison),31821,85154,11 +43123,Father Brazinski,67669,56117,7 +43124,Monsieur Septime,19548,11187,0 +43125,Huruta,121725,58665,3 +43126,Juney / Hannah Montana,13805,58957,3 +43127,Jake,381518,206823,17 +43128,Amaury de la Rochefontaine,56800,26876,8 +43129,La fille,162458,1624235,9 +43130,Marlène Giroux,41277,1575501,15 +43131,Calogero,56339,129649,12 +43132,Stella Hayward,54801,1134138,9 +43133,Waitress (voice),32202,109068,7 +43134,o.A.,5646,44583,7 +43135,Annabelle Andrews,196257,12930,1 +43136,Johnny Loker,72823,186358,8 +43137,Rudy,13551,1771,8 +43138,Detective Cho,16371,80457,0 +43139,Chung,44140,130335,12 +43140,Indra,427095,1486373,4 +43141,Jill Barnhart,86970,45445,3 +43142,Perez,325173,209349,20 +43143,Paradox (voice),72013,1249685,1 +43144,,52147,142769,3 +43145,Countess Vronsky,70881,13816,4 +43146,Helvetica Black,25132,93218,2 +43147,Jimmy Olsen,209112,56556,16 +43148,Mr. Roberts,25598,4960,4 +43149,Eve,21413,8183,4 +43150,Hunter,188102,1845739,18 +43151,Api's Mate,10176,64093,2 +43152,Tshingi,48180,140010,3 +43153,Aman Dhillon / Flying Jatt,396643,1338512,1 +43154,,332872,1898794,24 +43155,Michael Cutler/Michael Hawk,1825,33012,3 +43156,Dance Extra (uncredited),31773,1329667,27 +43157,,375742,1564296,28 +43158,Baron Paul von Ullrich,118245,2125,4 +43159,Nancy Lachman,8272,10386,9 +43160,Beth Brent,19053,41246,6 +43161,Izumi Shinichi,282069,1018944,1 +43162,Camille Bérangère,10524,54922,2 +43163,,85317,115395,8 +43164,Srulik/Jurek,239103,1273917,0 +43165,Himself,86284,1901431,9 +43166,Helen,89751,101957,3 +43167,Russian Prison Guard,19996,1764133,29 +43168,La Gemala Elena,264525,1857671,24 +43169,Jessica,120922,240130,4 +43170,Joseph Ridgeway,168031,83474,4 +43171,Christopher Waltz,145220,27319,34 +43172,Parson,44682,62715,3 +43173,Raymond Lanchak,38724,80598,9 +43174,Mrs. Saunders,19850,7071,8 +43175,Maestro Mombelli,62397,45982,0 +43176,monk,209032,236090,15 +43177,Young John Clarke,339408,1465051,18 +43178,Herself (archive footage),318224,8963,11 +43179,Dr. Brillstein,300667,1348457,11 +43180,Annie's Father,270303,1329297,11 +43181,Demens,407448,1007683,6 +43182,Brown,31262,402999,2 +43183,Johnny Jones,194101,202032,7 +43184,Amorina,1481,1844330,19 +43185,Saulius,310568,1588476,4 +43186,Caroline,108012,127488,0 +43187,John,66125,6164,0 +43188,Dancer,82481,1127396,33 +43189,Maria Helena,448763,567575,4 +43190,Arthur Montgomery,26505,1281,0 +43191,Ben,60422,143719,7 +43192,Real Estate Agent,158967,1115989,8 +43193,George Washington Dangos,118059,952564,6 +43194,Fergus,4191,17028,3 +43195,Nita,58887,127715,2 +43196,Fred Hastings,25388,1012628,9 +43197,Al Judge,37084,5792,3 +43198,Mattia,378570,1566499,4 +43199,Virgínia,49974,937206,12 +43200,KK,33146,110199,7 +43201,Dominique,395992,1752148,8 +43202,Kazuo,50759,213481,6 +43203,Ray,272878,19159,0 +43204,Himself,73933,158038,4 +43205,Hitomi Shizuki (voice),152042,1149033,6 +43206,Prime Minister of Great Britain (as Mr. George Arliss),29705,124309,10 +43207,Riccardo,42571,35103,3 +43208,State Trooper Stopping Fred,41234,33179,13 +43209,Dr. Krause,48333,22018,9 +43210,Mother of Sabine,2861,1895450,7 +43211,Prison Guard,26376,1003897,50 +43212,Susan Carlton,105548,1371716,13 +43213,,334795,86634,1 +43214,Quique,255647,1851074,16 +43215,Zanadvorov,83491,549037,4 +43216,,103713,62817,0 +43217,Nette,394403,146941,3 +43218,Mike Brander,10033,59238,4 +43219,Mrs Elaine Yarborough,51426,10487,8 +43220,Kiki Walker,28438,86824,2 +43221,MNU Mercenary,17654,2619,35 +43222,Mark Polley,128216,1332932,21 +43223,Mimmo,335051,1862856,14 +43224,John Solomon,10071,21200,0 +43225,Tom,129518,107204,7 +43226,Filippo Malgradi,356296,17839,0 +43227,Adam,413998,1413423,19 +43228,Trener Johansen,13630,579469,4 +43229,The Secretary,7014,796326,5 +43230,roxy,84071,16215,1 +43231,Channel 4 Newsreader/Himself,250535,1565516,22 +43232,Thomas 'Tissi' Tiemeyer,140554,1360181,34 +43233,Giselle,50674,228431,5 +43234,Buster Cole,120615,1273694,10 +43235,Herr Ametsbichler,8948,39905,2 +43236,Korporal Weiss,21062,64017,4 +43237,Pawing Drunk,57201,1391129,48 +43238,May-Li Wong,19629,51754,4 +43239,Guillermo,273481,61568,13 +43240,,83897,560277,0 +43241,Violeta,12124,71362,3 +43242,Dorian,45020,131935,7 +43243,Varpu Miettinen,408203,1656801,1 +43244,Jill,214,22434,9 +43245,William Ford,76203,71580,3 +43246,Kasatsky's father,47190,1347496,5 +43247,Charlie MacNeel,329289,94791,2 +43248,Susan Hannah,204994,238553,1 +43249,Oliver,22897,1800985,17 +43250,Luca Aizawa,25716,94018,3 +43251,Tea Room Babe,1481,1016177,23 +43252,Courtney,385372,1585219,17 +43253,Scientist,28340,1795342,23 +43254,Freeza (voice),303857,115305,10 +43255,La copine 2,41211,1670731,28 +43256,Cool Brett,44877,234934,10 +43257,Linda de Leenheer,44751,553335,2 +43258,Raymond,159667,201074,4 +43259,Homem no Banheiro,34588,8568,32 +43260,Tyler Bellows,13163,17402,7 +43261,Poeta excéntrico,85543,933325,4 +43262,Poeta no Bar,117534,1902444,15 +43263,Matty Wheaton,15759,32391,6 +43264,Lab Technician,257344,1639966,71 +43265,Michael Green,138977,50586,8 +43266,Joan,177047,6407,9 +43267,länsman,41764,34774,27 +43268,Tyler Prince,10760,16839,2 +43269,Trey,216580,87073,2 +43270,Mo,19827,39782,7 +43271,Ethan,12525,72633,8 +43272,Rickie,120802,84617,7 +43273,Nursemaid,80596,121004,32 +43274,Dev Mallya,166225,85730,1 +43275,Minor,125300,20899,4 +43276,Bill,28421,34168,31 +43277,Margaret Ridgeway,168031,108986,5 +43278,Madou,245706,1458844,25 +43279,Minna,118640,1068145,4 +43280,Luke Skywalker,140607,2,6 +43281,Olivia,456781,11149,4 +43282,Miss Adams,28564,140875,9 +43283,Sveta,49943,77667,0 +43284,Detective Decker,391375,1371261,8 +43285,Steve Sterns,80648,104895,1 +43286,Abbas,420743,1566423,1 +43287,John Norris,33224,84935,7 +43288,Graham Grady,45527,11830,3 +43289,Marti,73565,1323515,15 +43290,Boriska,83475,929636,13 +43291,Major Leandro,227964,571470,8 +43292,Inspector Chan Kwai Bun,14016,940339,0 +43293,Ben Reynolds,393659,81097,1 +43294,,352197,1037997,6 +43295,Nukie,84626,4569,3 +43296,,137504,1165594,18 +43297,Mrs. Michael Fitzpatrick,100528,7381,5 +43298,Dionysis,58790,1146439,13 +43299,Man at Airport with Gun,83802,14104,18 +43300,Himself (uncredited),292062,1576433,8 +43301,Middle Aged Doctor (voice),413770,11279,5 +43302,Fireman,176627,34187,17 +43303,Driver / Boss Terrorist (voice),85414,3201,11 +43304,Bannister,35392,114235,13 +43305,Mome,105576,18329,2 +43306,The Lord,64847,43672,4 +43307,Young Creature,246218,143549,6 +43308,Reporter,43811,1109646,60 +43309,Emily,65123,240557,4 +43310,Leonard's Ex-Fiancée,10362,1758879,8 +43311,Arthur,42188,1630683,15 +43312,Lisa,403119,16855,1 +43313,Professeur d'histoire,255913,1714101,37 +43314,Valdemar Palm,128946,81232,2 +43315,Paul,18072,3544,1 +43316,Chhadam Lal / Chhadami,96159,110199,12 +43317,Lucie,103620,191251,9 +43318,George Gipp,43812,18802,1 +43319,The Clown,84473,102947,3 +43320,Angel,78563,587142,4 +43321,Max Freeman,86472,22477,3 +43322,Little Jay Moriarty,82684,928574,8 +43323,Annabella Rock,80368,12522,10 +43324,Paulo,53042,147110,13 +43325,Wang Weihu,413198,78878,11 +43326,Sergeant Chen (as Richie Jen),13807,64496,4 +43327,,134360,2106,1 +43328,Un amico di Roberto,120972,45036,9 +43329,Lenore,82519,62384,7 +43330,Preacher on Radio (voice),39195,54564,10 +43331,Sonoda (the doll maker),25053,63694,2 +43332,Edie Johnson - Mrs. John Biddle,28433,30289,1 +43333,Kara Jones,318553,1010799,0 +43334,Ethel S. 'Dynamite' Jackson,40693,8237,0 +43335,Ola,35304,114579,4 +43336,Lofar the Dwarf (voice),33427,110636,10 +43337,Rie Takata,14226,83527,1 +43338,Le douanier,10795,1697718,27 +43339,"Алиса, Мерлин Монро",88491,985086,11 +43340,Frank McNamara (uncredited),4982,1050090,81 +43341,Joan,95037,1130965,4 +43342,Neighbor,190876,992960,7 +43343,Tom Curtis,83995,4786,0 +43344,Kasim,18098,1333,13 +43345,Pramila Sinha,53767,110863,2 +43346,Aunt Zelda,15674,96391,4 +43347,,105760,1138654,12 +43348,Make-up Girl,69165,1549476,12 +43349,Trey (voice),333667,2876,5 +43350,,248747,29839,9 +43351,Clips from 'An American in Paris' and 'Gigi' (archive footage),33740,5320,17 +43352,Phil Simmons,88042,16857,3 +43353,Adrian,41809,56347,2 +43354,Regina Crimilde,222517,1207941,6 +43355,Baker's Wife,45522,10464,15 +43356,Anny Ondra,111744,42307,2 +43357,'Chet' Keefer,84903,45232,1 +43358,Dr. Walderson,40807,177885,10 +43359,Andrew Neimann,244786,996701,0 +43360,Businessman,206647,1247684,33 +43361,Bellboy,34151,4689,7 +43362,Peter,79995,2251,8 +43363,Molly's Friend,360605,1512178,6 +43364,Witness for Peace,2143,132920,42 +43365,Osip,12594,42124,17 +43366,Onorevole Trombetta,63178,132198,1 +43367,Female TV Reporter,49524,92877,11 +43368,Napoleon Solo,79466,14060,0 +43369,Carlina,131897,120319,3 +43370,Aunt Billie (voice),1267,1077829,19 +43371,Young Cat Donovan,52051,87570,1 +43372,Clara Oswald,317182,1080542,2 +43373,Henry,363841,19655,1 +43374,Dr. Rick Gordon,69075,60907,2 +43375,Lisa Robinson,118236,5826,2 +43376,Phoebe,46228,560316,0 +43377,Janis,23178,1210903,14 +43378,Gene Thompson,35381,58406,6 +43379,Frank Carroll,70587,162672,8 +43380,General Hawk,17421,35243,16 +43381,Ugur,31413,133818,2 +43382,Fred's Dad (voice),177572,7624,25 +43383,Tom,26331,24318,0 +43384,Silas Stone,209112,3977,41 +43385,Mac,34796,30197,6 +43386,Buford (voice),44896,21485,14 +43387,Lube,26123,94906,3 +43388,Commando,140883,562226,6 +43389,RV Boy,72574,566380,8 +43390,Vadim's Girlfriend,2001,1168139,62 +43391,Peter Savarino,2355,11769,20 +43392,,27053,145076,14 +43393,Torajirō,253232,224666,0 +43394,,25626,71051,51 +43395,Minor Role,28421,1147303,23 +43396,Mickey Moran,25953,85993,1 +43397,Takichi Inukai aka Kyôichirô Tarumi,117212,76975,0 +43398,911 Operator (Uncredited),345922,1757736,48 +43399,Azra,126090,1425451,13 +43400,Himself - McFly Band Member,10025,62070,10 +43401,Vincent,356500,32203,3 +43402,Spike-Stretch,39345,178926,9 +43403,Frau Weber,43526,120005,12 +43404,Alexi Darling,1833,7404,10 +43405,Restaurant Patron (uncredited),22943,1111906,42 +43406,Bruno Kreisky,43434,6264,22 +43407,Burt,13596,208343,27 +43408,Cellan,2687,26994,9 +43409,Crni,341559,118046,1 +43410,His girlfriend (as I. Mazurkevich),83614,47433,7 +43411,Vijay,7326,85616,12 +43412,Margaret Walsh,42215,9594,0 +43413,Ian - Caver,9042,62498,11 +43414,,137312,1107179,6 +43415,Ray Berkowski,43213,825,3 +43416,Deuntem Salitul,64215,1259504,4 +43417,British Soldier,1116,1896893,69 +43418,Michael Alfredo Garibaldi,10921,52301,0 +43419,Dorothy Simmons,358980,5961,1 +43420,Support Group Member (Julie),222935,1672069,23 +43421,Dunkel,52360,1671852,37 +43422,Coroner,49502,10021,14 +43423,Dean's Dealer,53358,1384211,5 +43424,Mechanic (uncredited),337339,1805142,55 +43425,"Mingozzi, una guardia carceraria",73827,98774,17 +43426,Simeon 'Sim' Reno,22408,30686,3 +43427,Barkeeper,1539,936098,8 +43428,Mike Petralia,96132,103777,5 +43429,Gil Wachetta,29798,7073,3 +43430,Doctor,394822,1643689,12 +43431,Young Eleanor,13957,76108,11 +43432,Wyatt,322443,5296,1 +43433,Herbie,47876,6197,5 +43434,The Girl From Monday,33102,189880,2 +43435,Coach,105077,172847,23 +43436,Juliette,171213,228714,12 +43437,Police Lt. Joseph Petrosino,37083,7502,0 +43438,Himself,410965,15897,2 +43439,Mark Perry,23957,147119,1 +43440,Wang Jinmei,69310,1239123,29 +43441,Cute Woman,24202,87845,4 +43442,Young Adam,270383,1591063,15 +43443,Josua,335053,1443418,12 +43444,Puck,20439,54455,0 +43445,Madame Pelletier,42825,78791,4 +43446,Rosa,332411,1502244,8 +43447,Tex Fulton,36983,158012,4 +43448,Roland Sweet,2567,5293,11 +43449,Maniklal,41903,593137,11 +43450,Eddie,241254,1388479,16 +43451,Bob,339362,21422,0 +43452,Solia,56491,73883,9 +43453,Dr. Mentink,73215,9133,6 +43454,Mała metalowa dziewczynka,418757,1382677,1 +43455,Jewel (voice),172385,1813,1 +43456,Malcolm,198277,1423829,20 +43457,Sir John Osgood,21605,4001,2 +43458,Malek,24424,132109,5 +43459,Mrs. Pfeffer,228205,1433592,9 +43460,Agundas,14164,78327,12 +43461,Frank James in Play,43821,1624282,24 +43462,Himself,414749,87281,2 +43463,Anna,103620,453272,2 +43464,Don,176627,34119,1 +43465,Goliath,235260,127453,10 +43466,Sarah Marshall,9870,40462,1 +43467,Mrs. Bingham,30941,6843,17 +43468,Charlie Gordon,29136,8654,0 +43469,Ernie the Cook,4592,31007,16 +43470,Hombre segunda cabina,52943,115482,1 +43471,Chico,20625,10799,2 +43472,Bo Schrag,80473,40275,4 +43473,Automatic Slim,21948,8962,6 +43474,Janet,15316,800064,7 +43475,Sonosuke Asai,43877,1029781,3 +43476,Amira,1253,1137,1 +43477,Little Boy (voice),19594,115873,13 +43478,Don Lamanna,31128,29327,1 +43479,Controller,26358,95236,12 +43480,Isabelle,10500,36906,8 +43481,Bernice Graves,13196,73931,1 +43482,Albert Kestner,52475,677,2 +43483,Student,188102,1657777,27 +43484,Pool Player,33481,110785,35 +43485,Cashier,132928,2673,33 +43486,Anders Cain,336890,986808,3 +43487,Coconut Mist Girl,85435,1292007,7 +43488,Artie,288668,75465,6 +43489,Melita Machmann,174309,1691847,7 +43490,María,335053,93467,24 +43491,Boris,220820,1010873,6 +43492,George Lennox,2143,18023,0 +43493,Peter - Maxi's friend,46773,1523002,12 +43494,Yasuko,185987,58676,0 +43495,Captain Araujo,469172,130715,5 +43496,Murri,197177,107223,0 +43497,Freddie / Drug Dealer (voice),40662,28248,17 +43498,Sander Sanderson,68684,1849987,4 +43499,Madame Beck,10795,544198,22 +43500,Directeur,13739,1498353,14 +43501,Rye,342472,1263515,6 +43502,Himself,51311,1109539,6 +43503,Bilo,27211,97273,2 +43504,Sean Troll (voice),136799,1784327,40 +43505,Herself,15258,7404,76 +43506,Sasha,56304,223906,1 +43507,Jean,334299,586744,5 +43508,,205349,1074068,9 +43509,,63215,1520913,33 +43510,Frankenberg Employee,258480,1545518,35 +43511,Paul North Jr. / Joe Krozac Jr.,28712,30231,4 +43512,Sophie Nordh,141267,1199647,5 +43513,Registrar,259292,1027044,9 +43514,Priest,13596,58333,21 +43515,Norwood,43075,14969,5 +43516,Soldier,72638,91218,30 +43517,Judge,27622,80236,14 +43518,Pai,428645,1306665,3 +43519,Ching,31773,120540,9 +43520,Trillian,64353,176254,3 +43521,,121530,1098508,4 +43522,Mike,456101,1842112,6 +43523,Madde,338767,1036879,1 +43524,Attendant,9568,27992,16 +43525,,344560,1475236,8 +43526,Interviewee,32694,109579,26 +43527,Doris Shelby,41234,101704,5 +43528,Isabelle,337107,17882,2 +43529,Bramkarz,375742,1138050,13 +43530,Politikvinnen,382125,74723,13 +43531,Farbror Blomgren,27599,6004,7 +43532,Suzi Brent,19053,2885,5 +43533,Rudy,93457,1217016,8 +43534,,88176,51361,14 +43535,New York Reporter (voice),181533,1728454,25 +43536,Stieber,37468,38244,4 +43537,Fan,33570,2979,4 +43538,Representative,52360,34008,52 +43539,Natsue Morikawa,77057,1329395,14 +43540,Kidnapper,19621,37518,16 +43541,Cliff,397422,1154221,23 +43542,,12453,72289,0 +43543,Sergeant,54982,156415,10 +43544,Barber,24420,1393534,20 +43545,oste,338438,1462362,21 +43546,Kahu,371645,1622074,6 +43547,,413644,1672977,4 +43548,Mum,73565,1849485,25 +43549,'Mirror' Fong Tong-Kan,55156,122818,7 +43550,Businessman (uncredited),73430,135827,26 +43551,Julian Goldstein,45156,258,1 +43552,Sinan,332788,145500,2 +43553,Poley,47638,1218890,7 +43554,Victor Barelle,56947,5443,0 +43555,Philip Henrion,75969,28532,9 +43556,Deborah,22551,89292,4 +43557,Jackowski,369444,1538882,7 +43558,Headmistress Band - Guitar,84994,1031108,5 +43559,Major Luschke,19430,38245,7 +43560,Gunnars Vorgesetzer,308174,1888502,43 +43561,Rita Carmichael,389630,3897,1 +43562,Truck driver,45649,174612,19 +43563,Staff Member #3,312221,1386322,52 +43564,Alice,264309,98012,2 +43565,Security Detail Soldier,146216,531772,10 +43566,Barfly,105059,1624551,23 +43567,El Huron Vato (uncredited),15092,1451078,68 +43568,Dave,229328,123496,6 +43569,Dino,380124,1569985,13 +43570,Hacke Häger,53689,457438,4 +43571,Biker Leader,47342,106487,10 +43572,Artinelli,94803,97213,3 +43573,Insurance Agent,91679,1272966,9 +43574,Old Naked Man,270303,1588361,22 +43575,"Vigorito, controllore ubriacone",107052,1854447,11 +43576,Anders Matthesen,46178,66843,0 +43577,Chong,117506,83820,4 +43578,Concierge,252682,2878,6 +43579,Luminitsa,32604,433315,3 +43580,Luigino,58007,120026,2 +43581,Tatara (voice),315465,40450,5 +43582,Father's Girlfriend,110115,1115637,9 +43583,Alley Man,103620,1650686,11 +43584,Crystal Wetherby,97024,148512,1 +43585,young Jake,35656,1668441,20 +43586,Lindy,105768,176333,1 +43587,Friedrich Nietzsche,163077,929296,0 +43588,,195544,582900,16 +43589,Duan,13544,808068,4 +43590,Master Thep,50108,83171,1 +43591,Kid Spanners,17303,995177,8 +43592,Hustler,94225,1178581,10 +43593,Umberto Fantori,285840,1510476,7 +43594,Restaurant Gast,170759,1153028,18 +43595,Nicole,137528,1196008,3 +43596,Pastore,61217,1182570,21 +43597,Aristocrat (uncredited),17831,34047,10 +43598,Referee #1 (Tijuana),312221,1746880,33 +43599,Tommy Holiday,312221,95047,2 +43600,Tony,370178,187494,6 +43601,Carla,336845,2230,5 +43602,Clubman,35852,95027,9 +43603,Warden,2143,3077,11 +43604,Bill Baird,43022,22093,8 +43605,Szczepan,79221,118762,3 +43606,Khalujan,248698,6497,0 +43607,Ely,78461,6065,0 +43608,Piekareczka,82027,592918,11 +43609,Jang-mi (young),77117,1295459,4 +43610,Liz,133941,103084,3 +43611,,76312,1433894,22 +43612,Pvt. William 'Texas' Pettigrew,99318,854,1 +43613,Lisa Winters,308640,65529,1 +43614,Sgt. 'Big Mike' Wynn,72638,8729,5 +43615,Council Official,31875,40311,6 +43616,Spindner,286545,1352655,7 +43617,Pedestrian,31899,1422104,40 +43618,Head Constable Pranav,73578,113810,3 +43619,Erica,35656,1275944,7 +43620,Reggie,15045,77802,8 +43621,Andy,40649,58112,8 +43622,Liza Prescott,90799,9071,3 +43623,Onida,68097,120391,2 +43624,Hazar's Cameraman,230179,588079,16 +43625,Himself,24792,93812,2 +43626,1st Builder / Devil,341962,1470851,5 +43627,Larry the Lung,31867,1470384,14 +43628,Phil,302699,84497,3 +43629,Doctor,81030,96721,13 +43630,,272165,822,1 +43631,Hot Dog Vendor (uncredited),31773,178757,62 +43632,Yvonne,29313,140095,4 +43633,Mother,273896,171029,4 +43634,Guy,62289,5950,2 +43635,Himself,47011,15191,0 +43636,Tami-Lynn,214756,207150,3 +43637,Johann Stauffer,946,14358,3 +43638,Grace,9900,60158,7 +43639,,126250,1354188,14 +43640,Seo Min-cheol,36164,572169,4 +43641,Taggert,26656,97416,6 +43642,,110001,942128,16 +43643,Sonia Mehra,32740,109621,3 +43644,Fru Flora,21282,935445,4 +43645,Hester,18044,86530,9 +43646,Kim's Neighbor,15830,1185,7 +43647,"Cécilia, la jeune fille sauvée par Fernand",76642,19269,1 +43648,,34181,1096143,10 +43649,Parris,64167,39186,14 +43650,,340176,1711399,10 +43651,Miss Cartwright,56558,1274103,12 +43652,Himself,17401,1223613,5 +43653,,214105,1001959,4 +43654,Convict,49500,93518,18 +43655,,92989,136891,6 +43656,Phyllis Brubaker,90563,9805,9 +43657,Cinderella,23378,90040,4 +43658,Genie,10837,37438,8 +43659,'Immondice',187602,1169485,5 +43660,Kellnerin,36236,796326,13 +43661,Linguini,13061,7962,2 +43662,Brooke Miller,60599,222330,3 +43663,Inspector 'Toby' Tobin,26533,90000,7 +43664,Stuart Shorter,50032,2524,0 +43665,Claire,85431,1000708,4 +43666,Bit Part (uncredited),51357,13992,6 +43667,Brian Beale,42251,1781067,5 +43668,Alpha 1,232731,145181,1 +43669,Gaby Gagnon,190876,83183,0 +43670,Kyle Lawrence,279692,27493,5 +43671,Vix (voice),322487,10860,0 +43672,Brett,226188,54789,2 +43673,Hammer Girl,180299,145882,8 +43674,Miss Maupassant,10748,10916,21 +43675,Lap Dancer,11358,1773099,32 +43676,Hostess,252680,106934,10 +43677,Doc. Jindrich Beránek,65904,137020,1 +43678,Denson,24655,165590,18 +43679,Albert Prosser,16410,85935,5 +43680,Bill,237,2258,7 +43681,Wirt 'Donauweibchen',3716,1406148,18 +43682,Henchman,19336,1117080,11 +43683,Sir Myles,21893,8979,7 +43684,Selim,78028,2980,9 +43685,Mirko,15712,1890071,10 +43686,Ariel Winters,239498,3978,3 +43687,Sněhová královna,16174,2233,0 +43688,Ercoli,21135,572393,5 +43689,Monday Durant,333484,1181263,15 +43690,"Hans, lærer på ungdomshjem",76312,221670,9 +43691,,202662,125753,2 +43692,Connie,11321,1102,7 +43693,Himself,347264,125933,1 +43694,Mary Abramoff,26116,94701,13 +43695,Stuart,13493,124471,15 +43696,Mrs. Traverse,6948,1276,1 +43697,Roman Nagel,163,1926,17 +43698,Emerenziano Paronzini,73697,32312,1 +43699,Littlewood,353326,13014,2 +43700,Peg Soloman,227325,1256820,4 +43701,Sophia,71099,13920,1 +43702,Alexei,384682,1649059,27 +43703,,14217,1716971,8 +43704,Senator Roswald,220820,25309,22 +43705,Joan Esposito,23178,939789,12 +43706,Princess Luma,5494,15555,1 +43707,Girl in Bar,26983,79731,13 +43708,Niven,18722,553452,52 +43709,,36236,1141262,22 +43710,Alfred Goonplatz,99909,103622,15 +43711,Legge,1253,77638,13 +43712,Bindiya,76684,87358,4 +43713,Andrei,421741,1311844,2 +43714,,252845,5964,0 +43715,Miss Jones,43790,20366,2 +43716,Money Bunny (voice),81003,81380,17 +43717,,57701,29832,9 +43718,Jack,294254,1415436,18 +43719,John the Baptist,235260,62221,32 +43720,Fridolf Olsson,129359,550140,0 +43721,Himself,19244,84396,5 +43722,,128767,1340640,7 +43723,Dr. Hampton,30921,591,12 +43724,Lindsay Finch,91627,1215426,0 +43725,Mortal (uncredited),205584,1535063,36 +43726,Maurice 'Binky' Drundza,48609,41406,3 +43727,Mary Holm,215379,18050,2 +43728,Gábor,42132,1092634,3 +43729,The Kid,41762,21037,0 +43730,Petrie,24554,34982,5 +43731,SS-Gruppenführer Rossdorf,103396,23696,3 +43732,Chen I Chung,286709,1325691,8 +43733,Prete per le udienze del Papa,161545,1133330,8 +43734,"(segment ""Miminashi Hôichi no hanashi"")",30959,552652,31 +43735,Joe Hutton,207641,58794,8 +43736,Elroy,10476,1560864,14 +43737,Charlie,30876,107215,3 +43738,padre del bambino,43649,548190,10 +43739,L'urologue,382589,1272709,11 +43740,Feldsoldat,2734,27659,37 +43741,The Engineer,417820,1224010,2 +43742,Mike,50725,59410,11 +43743,,28482,37520,14 +43744,Donovan Matheson,137217,2047,0 +43745,Allison Doyle-Ewansiha,298540,389,8 +43746,Ruslan Drachev,18472,23880,0 +43747,Altar Keane,28894,2896,0 +43748,Nick Vanderpark,10710,70851,1 +43749,Prison guard (uncredited),57996,37124,21 +43750,"Joan Hill, Gale's Secretary",29829,116770,2 +43751,,80281,591153,11 +43752,Jacob,166161,1169978,1 +43753,Trent,271404,928575,9 +43754,Miss James,23152,89810,6 +43755,,111836,1486367,11 +43756,,299165,1697809,30 +43757,Jaques,11664,1305413,5 +43758,Asobi nakama (Friend),28268,145252,11 +43759,Mariya Gavrilovna,87759,271927,0 +43760,Bill,72207,51382,12 +43761,Morie,126516,1323946,10 +43762,Waitress,33107,1570243,10 +43763,Kay Kyser's Band,80720,1672446,9 +43764,The Voice (voice),156335,2922,20 +43765,Nairomian Driver,209112,1696251,122 +43766,,52147,1115598,4 +43767,District Attorney,27966,30216,18 +43768,Michael Caprelli,263873,979954,6 +43769,Kate,332662,1570540,4 +43770,Kate Clifton,73208,51315,1 +43771,Vittorio Marin,231176,93727,2 +43772,School principal Ellen Parker,3638,10693,16 +43773,Tom - Drunk cowboy,41591,30238,12 +43774,Tokumaru rijichô,83389,46691,9 +43775,Craig,300667,15455,4 +43776,Taxi Driver,405473,1800047,47 +43777,Black Tiger,263341,1200415,13 +43778,Cinzia Pancaldi,75336,44434,1 +43779,,340961,9899,5 +43780,Mr. Ohman,46145,6836,2 +43781,Luis,97794,225427,3 +43782,Evil Queen,62764,1204,0 +43783,Antwan 'Coffee' Coleman,72431,74957,5 +43784,Himself,105583,563461,1 +43785,Ricky Rizzo,168676,1422587,10 +43786,Private Connie Johnson,15616,98399,6 +43787,Matrose,3716,1406153,23 +43788,Kulkarni,80539,53676,4 +43789,No Good Advice,8929,933494,2 +43790,Lou,25111,97781,11 +43791,Gisela von Rachlitz,76714,393518,12 +43792,Da Lisi Guard,217923,1436279,38 +43793,Barney the Bartender,28170,35328,17 +43794,Tom's Friend,84355,1547826,5 +43795,Mr. Carter,170234,80236,7 +43796,Speakeasy Patron (uncredited),13912,13357,8 +43797,Marie (Child),218425,1154760,12 +43798,Freda,73099,568082,2 +43799,Edoardo Recchi Senior,41110,4961,4 +43800,Dominguez,218784,929511,12 +43801,Abner Smith,161620,1793,3 +43802,Professor Edelsen,9252,37798,3 +43803,Miss Elizabeth Charming,156711,38334,3 +43804,,20646,1168495,11 +43805,Carlos,50725,84075,9 +43806,Myriam,223946,500341,4 +43807,Ronald Niedermann,33613,92644,7 +43808,Jean Pautrat,56948,933267,8 +43809,Prince Chiaromonte,70734,1292226,4 +43810,Italian Detective,1691,36913,16 +43811,Fat Woman (uncredited),16442,34472,57 +43812,,128671,8829,4 +43813,Grace Churchill,46695,584581,0 +43814,Ruth,28943,68384,3 +43815,,175739,1364451,2 +43816,Mrs. Floyd,4882,90844,11 +43817,Flight Attendant,45013,1818041,55 +43818,"Medeiros, newspaper director",167707,1199586,5 +43819,Abel Vandermaark,41522,79620,2 +43820,Howie Zimmerman,18684,82189,7 +43821,Second Taxi Driver,228647,33179,12 +43822,Gambler,377170,1090872,21 +43823,Detective Manny Nunez,6973,96553,15 +43824,Young Sailor,369885,1651415,57 +43825,Mr. Bradley,133716,83915,4 +43826,Dr. Taylor,183825,95728,20 +43827,Scientist,22939,11109,5 +43828,Tung,88811,1746017,6 +43829,Reed Lawson,15527,73616,6 +43830,Ryzhov,143380,932932,12 +43831,Jake,14142,84901,14 +43832,The Chief (uncredited),73430,124875,25 +43833,Juvenal,70666,1277130,31 +43834,Principal Miller,77877,142374,8 +43835,Clint,44921,29284,4 +43836,Harold Fleet,245906,39017,9 +43837,"Max, Hotel Coq Dor Owner",141955,53819,4 +43838,Lt. Col. John Wynter,64129,20393,1 +43839,Elperia,96106,1074516,12 +43840,Mario,56435,94418,5 +43841,Monica,287281,1353904,3 +43842,Arin äiti,20160,148041,8 +43843,Agnès de Yael,84479,15917,1 +43844,Detective Gifford,44470,83037,3 +43845,Amos,336029,1893913,7 +43846,Deputy Chuck (uncredited),186585,50310,12 +43847,Sarah,155341,1869479,14 +43848,McPeek's Girl,257081,99467,28 +43849,Witness,55846,26197,16 +43850,Victoria Scott,97767,120790,2 +43851,Hother,48791,3921,16 +43852,Matron / Gym Teacher,409447,12929,11 +43853,Joyce Miller,42623,14108,3 +43854,Maurice Friese-Greene,80596,67616,11 +43855,Pekka Puupää,148435,232309,1 +43856,Sir Thomas Sharpe,201085,91606,2 +43857,Jack,182415,1853087,9 +43858,Victor Toulis,59349,82793,3 +43859,Bob Harris,153,1532,0 +43860,Girl in Hotel Room,16164,82137,9 +43861,Pedro Zurita,43685,143725,2 +43862,,44442,1275873,5 +43863,Himself (archive footage),173301,10215,3 +43864,Yousef 'Jay',317214,1412399,1 +43865,Airline Clerk,693,155393,14 +43866,Therese,45522,13949,5 +43867,Dennis Crim,65055,87440,1 +43868,Domnu' Bebe's mother,2009,1552315,12 +43869,MNU Executive,17654,1379225,25 +43870,Betsy Kenney at Age 18 (uncredited),52440,13997,20 +43871,Wesley Sharp,235662,62849,6 +43872,Milena,17974,31895,0 +43873,,46572,100427,7 +43874,Donald Duck / Huey / Dewey / Louie,69103,78077,0 +43875,"(segment ""The Deep"") (archive footage)",49954,14812,9 +43876,Clinic Nurse,31445,1120315,17 +43877,Second Lieutenant Thorbjörnsson,49322,141983,1 +43878,Roger Daverty,3701,25333,3 +43879,Charlie Corben,193040,1173457,2 +43880,911 Operator,10596,65807,16 +43881,Mary Powers,16661,102501,1 +43882,"Sammy Lee, Harvard Football Coach (uncredited)",96107,30292,18 +43883,Cliff Castleton,18711,15860,4 +43884,Mr. Dragnea,48116,55527,3 +43885,"Edwards, English Traitor",73551,8726,2 +43886,Profesor de Arte,31299,1092534,13 +43887,Astronaut / Shuttle Crew (uncredited),365942,1670760,45 +43888,Red Headed Stranger / Tehan,55534,35091,28 +43889,Nurse Harding,9667,12408,10 +43890,Dock Worker,244201,30272,17 +43891,Branch (voice),136799,12111,1 +43892,Mike,14862,52474,2 +43893,Jean-Baptiste Grenouille,1427,17064,0 +43894,Cesca,438634,1464673,8 +43895,Bystander,9471,55536,13 +43896,Anne-Marie Munoz,221667,20577,4 +43897,Kelly,107985,1278134,46 +43898,Irma Joana,84016,588809,5 +43899,Faith,122081,77948,1 +43900,Farmhand,70800,120979,4 +43901,jako Olga Hapyna (m. Petro),406449,1650384,17 +43902,Joe Gribble,43503,37884,4 +43903,Victoria Kaye,254193,1218004,13 +43904,Larry Sugarman,773,17418,16 +43905,etsivä,442752,1687412,3 +43906,Technical Adviser (at Romanoff's),4932,8902,19 +43907,Super Ninja / Delta Force Team,25528,941290,8 +43908,Ben Greene,34193,16523,2 +43909,Deborah (15-24YRS),424600,1560246,15 +43910,Woman Dressed as Ghost (uncredited),206197,1188753,37 +43911,Barbara,8457,79024,10 +43912,Adjutant Saveliev,64483,86954,3 +43913,Mary the Goat (voice),18843,1212737,23 +43914,News 4 Cameraman,279096,1386311,32 +43915,,74674,1338812,11 +43916,Boram,85525,102269,2 +43917,Natalie,129530,996735,0 +43918,Jack,347630,1513867,2 +43919,Drita,82624,928302,3 +43920,The Boy (Modern Story),3059,29950,2 +43921,Frida Waterfall / Hutch Waterfall / The Encyclopod (voice),15060,181234,10 +43922,,72054,1439245,23 +43923,,235092,3463,20 +43924,Marty,34672,29445,4 +43925,,94663,125195,11 +43926,Ela Mesma,448763,1848661,27 +43927,Sue Chow,11636,1139048,9 +43928,Uncle Latsie Dolly,107973,94110,3 +43929,Trudy,11584,1213767,14 +43930,Village Blacksmith,31221,942202,9 +43931,The Leningrad Cowboys,11475,53510,8 +43932,Police photographer,20126,1014936,12 +43933,Casino Hottie (uncredited),109439,1368206,31 +43934,,72054,15085,15 +43935,Paparazzi,8414,1534692,17 +43936,Mindy,82134,32202,7 +43937,Colin Frissell,508,7058,11 +43938,Joaqui,59117,41821,6 +43939,Tina,199602,1179774,0 +43940,Bishop,360249,64122,19 +43941,Bob Anderson,94182,14452,5 +43942,Carol,170603,101870,11 +43943,Skipper,38244,589,0 +43944,Sergeant Reyes,272878,19487,6 +43945,Sang-Shik Han,26955,42799,4 +43946,Yvonne Dupont,44099,130223,10 +43947,Gosachae,21708,87792,3 +43948,Nines,300601,4367,8 +43949,Lena Leiboviz,320343,1444242,4 +43950,Grandmother,92989,69835,5 +43951,Dude,381032,1592116,6 +43952,avvocato di Pesenti,64465,228149,9 +43953,Ming's Wife,56329,1189919,8 +43954,Martin,289278,6283,1 +43955,Jim Hawkins,83191,116606,1 +43956,Charly Schneider,72655,53202,3 +43957,McKinley Motel Patron's Daughter (uncredited),258480,1545523,40 +43958,Rocco Bonaro,4931,14785,3 +43959,Marguerite Audié,92257,100033,6 +43960,John McCready,12447,12950,9 +43961,Italo,84056,129060,2 +43962,Nicole,63326,57395,0 +43963,Deunan (motion actor),11633,20313,3 +43964,Bonnie,179812,1085087,3 +43965,Norman Warner,35320,41230,2 +43966,Baby Sydney,339419,1650210,29 +43967,Mimmo Parnat,50849,39163,14 +43968,Kirby - Alien Kid (voice),9982,61427,10 +43969,Ashley,42309,58398,7 +43970,Jennifer Lane,17282,121488,2 +43971,Servant / Policeman (uncredited),22943,150167,24 +43972,Lt. Grimes,34651,105018,9 +43973,Client Restaurant,1421,1145425,22 +43974,Lucie,156015,9765,4 +43975,Gar Seberg,49353,30044,0 +43976,Lizzy,13596,142953,7 +43977,Newsroom audio engineer,209764,1326155,9 +43978,Jackie Donovan,33112,148520,12 +43979,Il direttore della TDM,315319,1879093,34 +43980,Anita (voice),13654,63978,8 +43981,The Amazon,27470,97838,21 +43982,Factory Workman,47404,1186116,13 +43983,Stenographer,179066,939669,47 +43984,Dr. Elisha Crowe,8617,21702,8 +43985,Warden Walter Long,26376,3155,2 +43986,Sono shounen-jidai (Childhood Kousaku),135335,1102162,5 +43987,Elizabeth Howard,44001,80469,1 +43988,Chika Kôda,315846,929358,2 +43989,Punter,43812,1673801,25 +43990,Rudik's wife,71381,99258,6 +43991,Mexican Soldier,378485,1018056,5 +43992,Meet Mehta,76684,85668,0 +43993,,92060,61824,5 +43994,Carabiniere,59040,100954,31 +43995,Julian,84907,76227,0 +43996,Ice,292625,1758326,2 +43997,Esther Spencer,32143,167387,4 +43998,Bowman,15285,76638,9 +43999,Connor,84336,93210,4 +44000,Rossivaldo,420703,1692963,7 +44001,Alex,11930,37244,6 +44002,Alex Jones,146233,17142,2 +44003,Wellington,112083,43866,7 +44004,Announcer,15213,187636,9 +44005,Sgt. Mason Weber,84496,13875,14 +44006,Tram Driver,121942,1135262,0 +44007,Inner Party Official,1984,73980,8 +44008,Nick Lanzetta,58402,14731,0 +44009,,27276,551835,26 +44010,Belvera,36212,1021566,3 +44011,Miss Nine,18731,64895,5 +44012,Wally Livingston / William Dowton in 'The Drunkard',43688,1191427,2 +44013,Luna,3716,15268,4 +44014,Lt. Fred O'Connor,68050,1037,0 +44015,Joseph Gillot,245700,17476,9 +44016,McKenzie/ Mack,325189,992366,2 +44017,Artur Maria Herling,370264,144972,0 +44018,Secretary,33792,1472518,7 +44019,Terence,1116,1278499,21 +44020,Maggan Palm,129359,928024,3 +44021,Willie Warren,242382,40001,3 +44022,Sister Angela,78522,239739,2 +44023,Father Robert Malone,791,11828,5 +44024,"Luthor, alias The Atom Man",106358,34119,1 +44025,Himself - Roaster,296192,80757,7 +44026,Antonio Carlotti,175334,588565,7 +44027,Janemba,39107,1681,13 +44028,Scalphunter,32068,50310,9 +44029,María Sautuola,329718,1437422,7 +44030,Posh Lady,441728,1363052,8 +44031,Anton,114931,1351920,4 +44032,Gast Trauerfeier,269258,1323224,31 +44033,Sreykeo's Father,49853,1648799,43 +44034,Kerr Willis,46420,136350,6 +44035,Miles 'Rave' Ravenscourt,47312,14729,0 +44036,Fina,300601,1374738,12 +44037,Snatch,94055,117407,5 +44038,Mére,46738,5007,10 +44039,Xenomorph (uncredited),126889,111090,20 +44040,Claire,18803,2206,0 +44041,Ricardo Montoya,259075,33828,5 +44042,Tom,73262,3933,2 +44043,,121530,1518855,7 +44044,Gabriella,82481,1127394,29 +44045,Kiran,140883,78921,3 +44046,Artie,253235,3026,13 +44047,Franco Cardillo,43200,129302,4 +44048,Sara,26514,1465096,6 +44049,Rostovsky,170689,3129,2 +44050,Veronica Harmon,138372,1014696,10 +44051,Yoshisato,104776,134621,4 +44052,Clipboard Girl,193893,1381695,60 +44053,Editor,43891,34277,9 +44054,Lycan Pack Leader #2,346672,993074,16 +44055,Arta,80988,590897,0 +44056,English Chancellor,122023,176191,11 +44057,Schütze Keppel,10841,36890,5 +44058,Maguy,4930,40162,9 +44059,Felicity,415633,1678282,3 +44060,Bob,78177,19023,7 +44061,Bartender,74,4494,15 +44062,Kapten Evald Viires,321303,1165803,15 +44063,,97088,1273699,10 +44064,Girl,31993,1283328,32 +44065,Turkish Soldier (uncredited),297762,1743593,72 +44066,Dexter / Navy Seal 2,230179,1881534,14 +44067,Chelnerita,48116,1255370,9 +44068,Grégoire Duval,21070,24379,0 +44069,Bernard Aughain,54563,150917,3 +44070,,188640,85470,4 +44071,Lea,209266,11608,4 +44072,,53042,147105,8 +44073,Robert Davenport,108282,44880,7 +44074,Emilio Rospini,27703,4961,1 +44075,американский морской пехотинец,207696,1190055,0 +44076,Drunk,56725,54564,7 +44077,Herself,266782,3138,12 +44078,Sam Bailey,99318,12308,2 +44079,,16015,1445198,23 +44080,Donovan (uncredited),43522,95729,39 +44081,Elevator Operator,153162,33178,24 +44082,Herself,162406,20658,1 +44083,Nascarella,36691,28033,11 +44084,Janeane Johnson,2355,9575,2 +44085,Alex,253251,3300,0 +44086,Chloé,17658,77310,3 +44087,Operative (uncredited),15794,270786,14 +44088,Corey Morris,258193,995153,1 +44089,"Pops, Benson",354857,1251102,3 +44090,Henrik,60935,1334214,14 +44091,Bijou,5618,35204,4 +44092,Masu,9624,6720,2 +44093,Horace Debussy 'Sach' Jones,178569,33024,1 +44094,Wei Batian,182127,70690,26 +44095,Desa,33611,111066,3 +44096,Kate,253235,24291,14 +44097,Emergency Doctor,43045,120052,7 +44098,Principal O'Brien,239563,167565,16 +44099,Minor Role,43806,1551011,52 +44100,Paolo Rossi,15640,26396,5 +44101,Chuck McGee,68387,53720,3 +44102,Dr. Richard Nemur,29146,96055,3 +44103,Yasaburo Yatou,87296,118993,3 +44104,Martta,60677,1069886,0 +44105,Boy,98368,1028462,2 +44106,Prof. Morandi,142982,1042794,4 +44107,Antiope,96106,103615,5 +44108,Trapper,176867,940651,34 +44109,Hospital Chief,227094,43429,11 +44110,clint goodman,37865,21561,0 +44111,"Mrs. Dennis, the Rectory Housekeeper",36375,2780,17 +44112,Tanya's Boyfriend Mike,22447,1687928,17 +44113,Ganapathy,329135,89153,3 +44114,Jerry Armstrong,9918,6069,3 +44115,Katsura Kotarou,245917,81244,3 +44116,"Donal, a searcher",50153,51720,8 +44117,Marc,42501,1801505,7 +44118,Fregley,60307,111921,10 +44119,Miller,369524,36190,4 +44120,Hamlet,270336,571428,1 +44121,Bar Patron,132928,171111,27 +44122,,402612,125275,7 +44123,Jerry Dolan,43268,94928,3 +44124,Vocalist - Opera Montage,98328,96139,10 +44125,Baburao 'Bob',58051,84957,1 +44126,Frau Thea Casparius,54769,26247,6 +44127,Éric,14419,16873,8 +44128,Gregory,196255,39995,0 +44129,Sandy Bateman,72232,586,2 +44130,Fritz,57201,92949,23 +44131,Dave Allister,18671,69319,6 +44132,Mrs. Liebig,52251,1363770,3 +44133,Wildcatter,55604,133342,39 +44134,Darnell,68387,60605,27 +44135,Antonio Cammarota,107052,106346,6 +44136,Robert Katende,317557,35013,1 +44137,Francesca,82083,228166,8 +44138,Cuthbert Clare,101915,55364,10 +44139,Daffy Duck / Bugs Bunny (voice),53210,33923,0 +44140,Rumpoey (voice),2805,147898,11 +44141,Flash Madden,15148,290,0 +44142,Voisin mal garé,77338,1632533,26 +44143,Amie,27270,6712,10 +44144,M. Mazel,84875,94939,3 +44145,Payphone Passerby,268920,1754454,66 +44146,Mr. Robert Chanler,153161,30216,11 +44147,Andy,23830,182280,7 +44148,On. Rognati,356296,1150167,11 +44149,Himself,94365,118639,8 +44150,Patrizia,43645,34027,3 +44151,Dad,44119,3197,3 +44152,Paulie - Corny Collins Council / Welcome to the 60's Dancer,2976,1752333,57 +44153,Dr. Myron Hatch,182499,522,0 +44154,chief of police substation,229304,1432843,4 +44155,Chinese Assassin,38526,1191290,12 +44156,Iranian Clerk,146216,1182596,33 +44157,Daniel Dolphin,51800,229434,0 +44158,Mrs. Martha Avery,56558,34472,19 +44159,Peacock Hybrid,76757,1394335,35 +44160,Orlando,128270,1820220,43 +44161,Toby Tucker,272693,212768,6 +44162,Dorotea,99095,31895,2 +44163,Valya,19277,37008,7 +44164,Promoter,134397,157476,1 +44165,Beckett O'Reilly,427045,1578321,6 +44166,Susan Pelley,31472,1221552,6 +44167,Soldier,150712,1329739,37 +44168,Mercy's husband,85265,1085215,19 +44169,,135670,174178,2 +44170,Daisuke Jigen (voice),15371,82508,2 +44171,Mexican Teenager,179826,204196,24 +44172,himself,82627,928338,0 +44173,Inés,17893,25028,6 +44174,Howard,240913,1219597,9 +44175,Nana,39816,84956,3 +44176,Test Monitor,9080,7908,6 +44177,Joe Gargery,121674,973,5 +44178,Owen Lee,10265,64496,3 +44179,Alain de Montfaucon,3051,66884,8 +44180,Pearl,16066,79126,2 +44181,Hartley,47404,99330,31 +44182,Madre Samuel,63612,118208,7 +44183,Tim - Sketch Artist,336004,1717274,35 +44184,Maid (uncredited),156360,89101,14 +44185,Gaelic Speaking Woman,9756,58918,11 +44186,Sean Davidson,25528,94330,1 +44187,Henry Courtney,49502,87071,4 +44188,Cece,245906,13023,19 +44189,Tyler,107985,1278129,35 +44190,Rosie,44960,76417,4 +44191,Laura,263115,1464650,2 +44192,Carol,27886,10461,0 +44193,Suzy,33305,1173284,8 +44194,Paul Wilkins,367732,1537759,17 +44195,Mr. Schuler,342472,1225911,12 +44196,Sophie,270650,1359957,26 +44197,Milhouse Van Houten / Jimbo Jones / Rod Flanders (voice),35,6009,8 +44198,Theatre Box-Office Attendant,157898,105454,44 +44199,Ma Dong Mei,362682,1519027,2 +44200,Marvin Chase,126442,1082703,6 +44201,Jim Smith,377587,1411198,13 +44202,Bubbles (voice),127380,17401,25 +44203,Mother Bernle,95169,1064924,0 +44204,Shen Yi-Jun,375170,1245709,1 +44205,Samuel,35689,588,3 +44206,Amanda,30127,135746,1 +44207,Sailor,3146,931393,8 +44208,Casey,16342,228431,1 +44209,Ohkimi,86520,123854,6 +44210,Maryana Bazhan,292656,236857,1 +44211,Alley Daniels,83079,72055,3 +44212,Ping,32091,10885,8 +44213,Un producteur d'ABC,332794,1210979,20 +44214,Morena Feroci bambina,42674,128412,6 +44215,"the ""Portuguese""",74436,5401,2 +44216,Kaede (voice),315465,1454976,3 +44217,Baby Seymour (voice),9836,53211,16 +44218,Hostess,4291,552608,15 +44219,Party Guest,128669,1186118,35 +44220,David Blakely (as Tom Browne Henry),43365,82748,6 +44221,Boyfriend/Writer,79871,588143,1 +44222,Paddy Button,228074,33090,2 +44223,Joey - SWAT Team,90616,1692091,27 +44224,Joe,25921,75739,4 +44225,The Lawyer,145191,938815,4 +44226,Bertrand,204765,66839,7 +44227,College Student (uncredited),85350,557215,75 +44228,Yuen Lung,18731,119460,15 +44229,Narrator,142051,65827,1 +44230,Barry - Andrews' Lawyer,176627,30201,23 +44231,Cashier,257447,1418223,20 +44232,Austrian Prince,96724,1010135,51 +44233,Nate,153854,1140133,5 +44234,Insp. Wong,18899,1173600,11 +44235,Astral guide,16171,79874,23 +44236,Already Drunk Sister,26688,96027,21 +44237,Lily,37978,19957,3 +44238,Ray Thompson,388862,237737,0 +44239,Hannu,73099,568085,7 +44240,Direttore del carcere di Sagunto,73827,80230,5 +44241,Sonja Holleeder,228968,1075355,6 +44242,Producer Bob,18998,1533325,14 +44243,Margarit Porfiry,285840,1717119,11 +44244,Caruso,9084,38989,3 +44245,Priya's Father,63376,584682,3 +44246,Davina,253257,1039011,0 +44247,Himself,15258,34518,101 +44248,Vince,17911,95988,4 +44249,Himself,406431,83498,6 +44250,Lydia,32395,26930,6 +44251,Marty,8270,54198,12 +44252,Stu,28730,6916,20 +44253,Bård Petersson,57438,226176,10 +44254,Albert Flood,77949,3076,11 +44255,Lawrence Fletcher (voice),71689,13474,13 +44256,Mia,168259,22123,6 +44257,Mario,93858,139036,6 +44258,Nicholas,384737,222906,4 +44259,Klaudia,382155,1636707,35 +44260,,278738,1335499,2 +44261,Bud,329216,6193,9 +44262,Shark,90351,125077,1 +44263,Mr. Jenkins,132363,1190851,9 +44264,Otto Habershaw,37301,34597,6 +44265,Henrik Berner,55612,222728,9 +44266,Jake Shade,134394,111924,3 +44267,Little Ninja (uncredited),109491,565503,40 +44268,Ana Pecoraro,109690,69312,3 +44269,Aphrodite Girl,32657,59244,23 +44270,Texas Rancher,75315,121249,40 +44271,Mackan,19181,1097798,12 +44272,Norris Overly,18638,74242,7 +44273,Drake,10916,1330841,7 +44274,Nurse,91548,1418958,13 +44275,Nell,179826,1404693,20 +44276,,313676,115656,6 +44277,Liang Hang,67021,237256,1 +44278,Worker (uncredited),297762,1824303,93 +44279,Harry Watson,43522,82835,9 +44280,Dave Burke,26983,39816,3 +44281,Jack Hayes,62046,177031,13 +44282,König Klemens,266568,69523,6 +44283,Sylvia,284279,76925,4 +44284,Dr. Ashford,27983,106805,5 +44285,Ossorio,12422,16923,2 +44286,Sylvia Brokeles,98349,52442,11 +44287,Ted Baker,38432,15992,5 +44288,Sean O'Hara,50849,6593,3 +44289,Group Controller,41312,104302,10 +44290,Evelyn Prentice,53864,13577,1 +44291,Thomas,316885,1453118,16 +44292,Festival Audience Member,5759,1741932,14 +44293,Lycan Pack Leader #4,346672,1350051,18 +44294,Vice President Becker,435,6074,13 +44295,Alice,49961,143119,1 +44296,Dell Gordo,59861,18975,11 +44297,Nadine,163630,182778,2 +44298,Andrew,353728,1697394,16 +44299,Raymond,233490,1594743,8 +44300,Jesse Zousmer,3291,15455,5 +44301,Siddeley / Leland Turbo (voice),49013,11355,15 +44302,Himself,310593,11667,14 +44303,Hager,134435,2784,7 +44304,,35652,1073489,4 +44305,Brad Mason,314065,1226434,11 +44306,Otis,20312,56183,21 +44307,Penny Pingleton,409447,226001,5 +44308,Felix Townes,936,107540,9 +44309,Reporter,24619,1850011,34 +44310,Frau Käser,122487,2740,9 +44311,Alana,117534,1040906,7 +44312,Gary Dunne,200727,1050248,6 +44313,Leach,128437,35322,5 +44314,Inspecteur Ruther,333367,11866,8 +44315,Eve Borden,96702,99349,3 +44316,Assunta,11048,130616,14 +44317,Himself,43514,2672,12 +44318,Brittany,17306,1567839,5 +44319,Hachiko,52728,1106080,5 +44320,Jerry Feldman,47878,4521,2 +44321,Ettie,340101,220765,14 +44322,Felipe Urrutia,280045,234654,1 +44323,Detective Choi (최형사),269494,1044800,4 +44324,Silvia Colombo - Erminia,85038,59640,2 +44325,Vittorio,47876,86184,8 +44326,Toralei (voice),227257,63333,9 +44327,Galina Chetvertak,49106,1004789,3 +44328,King Lear,134155,1391609,1 +44329,Additional Voice (voice),16866,108399,17 +44330,Little Bob,286372,1352337,9 +44331,Alex Degraves,44773,216099,12 +44332,Julien,10484,34588,26 +44333,Père de Ramakant,310567,1489833,5 +44334,The Thief,14818,592536,5 +44335,Veerman,4134,28213,5 +44336,"Red, Joe's Friend",56154,588991,17 +44337,"Nicholas 'Nick' Carter, aka Robert Chalmers",47404,12308,0 +44338,Support Group,222935,1672083,37 +44339,Nick,28586,592,3 +44340,Tom Cahalan,340027,30315,2 +44341,Serena Blach,197583,1302830,11 +44342,Ellie Brown / Borden,121234,14701,1 +44343,Mass Tar Wong,18731,990443,6 +44344,Rob,16197,3068,2 +44345,Buck Devlin,176670,1009,0 +44346,"Henri Colo, dit La Colique",72678,566917,0 +44347,Lt. Col. Stephen 'Godfather' Ferrando,54102,17194,21 +44348,Mr. Abernathie,178341,104805,8 +44349,Stewart Green,37534,117891,17 +44350,Front Row Audience Member at 'Lucia di Lammermoor' (uncredited),98328,121323,17 +44351,Andy Devine,139718,14966,7 +44352,Attilio,42674,128418,9 +44353,Johnny Modine,31700,69010,1 +44354,Steady Boy,1116,1634019,17 +44355,Chino,257447,1696908,13 +44356,(voice),9904,1178792,20 +44357,Gemma Chatterjee,76757,47625,8 +44358,Anne Hallowell,274325,1734,2 +44359,Franz Hollner,167882,51520,8 +44360,Helene Beck,47794,1600351,11 +44361,,48959,2302,13 +44362,Hester,62694,78934,21 +44363,Jolie Normand,44921,131742,2 +44364,Man on the Street,105059,1683125,18 +44365,Tony Lupero,51209,227231,21 +44366,Dony,370755,1223718,13 +44367,Sergeant Frazer,29424,1205934,8 +44368,Ann Keith,43562,13579,1 +44369,Jasper Anderson - Defendant (uncredited),14615,93628,48 +44370,Dimitris,157919,31028,7 +44371,Jamie,66881,549052,1 +44372,Darnell (voice),10198,227439,14 +44373,Grif Henderson,242097,16896,0 +44510,Lisa Stewart,290555,563643,8 +44374,Donatella (episodio L'Ascensore),68882,34027,3 +44375,Päiväkodin hoitaja,18279,125588,9 +44376,Bertrand's colleague (uncredited),1421,1723452,44 +44377,Mr. Vayne,27114,132536,11 +44378,Miss Bong,346646,1692997,4 +44379,Salvatore,52913,52657,1 +44380,Leo Fincher,140652,997369,5 +44381,Dorian Spitz,19688,21028,2 +44382,Himself,324181,1775298,10 +44383,Colonnello,43648,101549,5 +44384,Blue,274857,1816438,19 +44385,Hideaki Goto,180299,35642,5 +44386,Patricia,25038,136961,14 +44387,Homily (voice),51739,545825,18 +44388,Blaine Rawlings,9664,17051,0 +44389,Cecil,25988,1246,4 +44390,Fletcher,10521,73457,3 +44391,,3549,558626,14 +44392,Esther,12696,74005,6 +44393,Alice,30508,40640,4 +44394,Governor Johnson,169298,47879,10 +44395,,60199,13549,10 +44396,Wesley,17577,2372,2 +44397,Doc,339403,1979,2 +44398,Kenway,313074,1051037,9 +44399,Skip Palewater (as Mike Carlson),186606,1750932,20 +44400,Delivery Man,360284,1361061,10 +44401,Himself,315850,19767,5 +44402,Dilcy,14642,1568595,8 +44403,Millie Starling,128669,1092718,6 +44404,Gay Female Military Type #2,14923,210566,74 +44405,Mrs. Claus,238302,11213,3 +44406,Eliza the Girl on Beach,256962,1512147,27 +44407,Miss Rowley,106136,1039679,8 +44408,"Lois, Social Worker",328589,120932,17 +44409,Mrs. Leanne Clay,3580,12539,55 +44410,Andy,343369,74472,3 +44411,Conover,153162,975343,19 +44412,,390991,82788,1 +44413,Cynthia Pilgrim,111042,64838,0 +44414,himself,25603,94005,0 +44415,,340119,27392,1 +44416,Brian,155341,1488614,10 +44417,Dr. Carpenter,277688,27993,5 +44418,Mathilde,445,6019,8 +44419,Postman,53524,62964,13 +44420,Prison Guard,27470,97839,22 +44421,Rebecca,18238,141536,10 +44422,Reporter,109716,89728,28 +44423,Bambu,49850,556728,9 +44424,Dragoslav Mihajlović 'Vampir',255647,1050849,11 +44425,State Trooper,14589,34103,72 +44426,Seto Kaiba (voice),366170,135524,1 +44427,Bodvar,48791,1447340,18 +44428,Woman,351043,7517,1 +44429,K.G. Pothuval,134477,591173,9 +44430,Il dottore (uncredited),56068,1138531,15 +44431,Le commissaire,11680,54376,6 +44432,Mary Smith,105981,1050934,5 +44433,Billy Palmer,174946,1363816,4 +44434,Ash,332168,1765664,2 +44435,Narrator,96458,1009376,0 +44436,Horace Debussy 'Sach' Jones,193435,33024,1 +44437,Brad,203186,10136,1 +44438,Tracy / Nurse,18633,135528,13 +44439,Gérald,252773,1357412,6 +44440,Prince Heinrich (older),212530,55765,9 +44441,Géraldine Robert,320318,77310,5 +44442,"Himself, Cameo Appearance (uncredited)",32552,8823,40 +44443,Seth,83735,77859,0 +44444,,48882,86753,5 +44445,Carolina,109391,1204688,21 +44446,U.S. Capt. Bill Vassar,19996,154383,17 +44447,,102197,1040418,11 +44448,Aline,112130,118357,9 +44449,Brandon Burlsworth,379441,1568412,1 +44450,Nik,14862,96792,8 +44451,Stone Mansion,55156,54615,3 +44452,Sergeant,53573,121410,5 +44453,Bram,85494,97146,5 +44454,Headteacher,224204,1270459,8 +44455,Steward 2,382591,1795276,19 +44456,Chief Morris Reed,80473,41269,5 +44457,Angel Schunard,15199,87930,5 +44458,Audience Member,145220,1106760,19 +44459,Governor,21159,91817,6 +44460,Danny Muldoon,2611,7180,0 +44461,Pepe Ripoll,26971,116072,5 +44462,Shinichiro,94659,213511,7 +44463,Andza,116437,1466295,4 +44464,,170998,86024,10 +44465,Court-Martial Board Member (uncredited),10178,153318,24 +44466,Michio Saito,128169,58449,0 +44467,Himself,61487,66606,8 +44468,Johanna Shannon,440597,126932,13 +44469,Priam Andes,27114,33278,5 +44470,,334175,1464770,9 +44471,Auto Driver (Cameo Appearance),66526,1325428,10 +44472,Periodista,110001,1382354,15 +44473,Jimmy Berkowitz,369524,518,3 +44474,Adoption Counselor,10320,1793074,15 +44475,Sheriff Ed Willis,30307,103357,7 +44476,Mr. Taylor,121230,20368,6 +44477,,70278,137447,4 +44478,Diego,84848,931357,0 +44479,Dr. Wayne,43117,2652,7 +44480,Khan,262338,78423,4 +44481,Elina Oravisto,18279,147733,2 +44482,Reyna,216521,210831,2 +44483,Himself (Archive Footage) (uncredited),448449,80757,10 +44484,"Suzue, Kannai's Sister (In a Cup of Tea)",30959,552677,75 +44485,Judge Kay Woodbury,99312,55635,0 +44486,Ana,24624,114159,14 +44487,Abramow,31021,107518,5 +44488,,65123,1174100,10 +44489,Ethan,429238,1494446,18 +44490,Evelyn,322266,134488,3 +44491,La signora Garrone,105509,1037958,6 +44492,Nurse Liane,53861,548204,8 +44493,Jimmy,22615,6162,2 +44494,Haddý,37700,1057153,3 +44495,Landlady,5638,81562,24 +44496,Asako Shibasaki,363354,2538,3 +44497,Heinz,49850,48243,19 +44498,Vittorini,177104,932298,9 +44499,Kluger Mann,104172,1384105,11 +44500,Sitnikov,149170,545794,12 +44501,Vijay,190940,1147461,4 +44502,Rock Springs Radio Operator,18569,33776,38 +44503,Colt Hawker,46885,11086,1 +44504,D I West,128241,9191,1 +44505,Dion,208869,1071130,13 +44506,Fabio,166262,15918,7 +44507,Butch (as Bennie Bartlett),166904,556861,8 +44508,Himself,384262,1647401,4 +44509,Snakehead's henchman,10610,237163,17 +44511,Guard,310135,1716336,19 +44512,,126227,61829,4 +44513,narrator (voice),11848,70718,0 +44514,as Toník,41213,134722,2 +44515,Wilson,38027,9170,29 +44516,Mr. Landau,376292,12977,3 +44517,Sunny Garcia,64456,80469,1 +44518,Toni,186991,81125,3 +44519,Maj. Digby Dawlish,38792,18266,3 +44520,Professor Tokichi Anayama,51581,13283,3 +44521,Ivan (voice),19594,29077,7 +44522,,170998,86025,12 +44523,Kampenfeldt,41597,87071,10 +44524,Louis XVI,68023,21680,7 +44525,Galleria Garibaldi,37609,66896,0 +44526,Michelle,82492,894128,3 +44527,Victor in Disguise,32577,174698,32 +44528,Theatre Audience,118943,148053,5 +44529,Teenage Clerk,43817,589757,10 +44530,Linda,409502,26662,2 +44531,Kim's thug,18763,1166564,14 +44532,padre di Ivano,56804,1623670,12 +44533,Ewa,342765,238403,1 +44534,Phales,37038,116645,7 +44535,Pubblico ministero,31111,1836261,6 +44536,"Lucrèce Pazzi, la Florentine",126958,1083443,7 +44537,The Stylist,58467,1704725,22 +44538,Accordion Player,166666,1899137,13 +44539,Scarface,286789,590558,10 +44540,Jasper,13802,20766,22 +44541,Himself,23524,236677,7 +44542,Conrad,57215,117075,5 +44543,Srebrna,375742,1557608,3 +44544,Crash Kelly,94811,74875,3 +44545,Henry,37978,78412,1 +44546,Juan-José Moréno / Brichonnet,29082,102850,4 +44547,Zambila,319993,1628053,10 +44548,Joseph (voice),16366,880,0 +44549,Rick McAllister (as Phil Carey),31555,45291,1 +44550,Milagros (Sandra),71114,64774,1 +44551,John,572,7742,0 +44552,Marcy,226269,86260,3 +44553,Marcus,13079,25072,5 +44554,Engineer,75363,552408,10 +44555,Financial News Analyst,13483,66599,19 +44556,Joyce Spencer,150657,1073006,7 +44557,Hélène,44155,136489,1 +44558,Stella,141418,1362208,3 +44559,Pooja 'Mitali' Thakur,31364,77234,2 +44560,Gordon Holliston,113525,165368,5 +44561,Day salesman,218443,86940,1 +44562,Marie Antoinette / Lorenza,92796,19402,1 +44563,Harry,193387,1004,1 +44564,Wet T-Shirt Girl,11358,1773116,42 +44565,Hoot (voice),70587,162606,21 +44566,Himself,183218,1166366,1 +44567,Newark Official,18569,86356,47 +44568,민자영 (Jayeong Min),41441,1299358,1 +44569,Princess Sorokina,96724,1289968,12 +44570,Antoine Doriot,395763,72327,3 +44571,Giovanni,82083,1494709,21 +44572,Kate Jacobs,52741,27106,3 +44573,Sarah,29368,103684,6 +44574,,175739,1364452,3 +44575,harpunář-trosečník,41213,137035,11 +44576,Zach Harper,15022,16501,0 +44577,District Receptionist,82631,1388473,18 +44578,Second Hawk,48153,28413,10 +44579,Detective from Seoul Prosecutor's Office,242458,1418581,8 +44580,Un cocher,68822,583364,28 +44581,Marvin,57749,227099,7 +44582,Johnnie,298865,1077775,0 +44583,Jake Sully,19995,65731,0 +44584,Louisa Mae Cardinal,327749,9560,1 +44585,Burton,399894,35566,7 +44586,Cool D,236324,1157373,18 +44587,Ed Hutcheson,36334,4110,0 +44588,Fan Dancer,16320,80443,33 +44589,Charles,11917,54793,6 +44590,Dolly (Carrot Film),340101,1466855,39 +44591,Assumpta,44502,42123,2 +44592,Scotty,198176,2501,4 +44593,Jussi Pelli,117499,222321,8 +44594,Tobias Reynold,267035,1168172,4 +44595,West Indies Club Patron,14589,9096,33 +44596,,14804,1901813,31 +44597,Himself,73241,1072705,3 +44598,Mary,59051,1088087,2 +44599,Murder Lounge Girl,284564,1585042,29 +44600,pare de Salvador,1896,16870,5 +44601,Colonel Tom Parker,40047,3798,5 +44602,,320873,1185943,6 +44603,Lola,360606,1331457,1 +44604,Felix Walter,27035,96820,9 +44605,Harvey,39800,4250,5 +44606,Mr. Poppy,49522,92574,2 +44607,Nathan,55632,222121,3 +44608,Dave,119592,31512,4 +44609,,332283,1674732,12 +44610,Blackbird's Brother,16164,82134,6 +44611,Arlekín,131932,1482624,13 +44612,,142085,1319089,3 +44613,Rose,2994,946144,10 +44614,George Tenell,43321,14966,4 +44615,Karen,50032,1075450,3 +44616,Ikeda,46492,136382,5 +44617,Alix,72105,130836,19 +44618,Hazelle Black,64685,91756,8 +44619,College Girl,356752,1841513,35 +44620,Michèle,78789,39195,6 +44621,Woman,166671,1848078,2 +44622,Elisa,128657,42738,2 +44623,Ginger,156597,1427480,22 +44624,Ralsto,222388,1326239,7 +44625,Clubman,35852,104302,7 +44626,Roger,54022,569,2 +44627,Club Goer,71670,1736524,48 +44628,Jessie (voice),13517,1571373,14 +44629,,188640,85456,10 +44630,Doctor,10320,155743,9 +44631,Borka,17940,1293723,14 +44632,Le médecin indien (as Ramneeka Lobo),352025,1784149,13 +44633,Vittorio,26331,548351,8 +44634,,27276,551831,18 +44635,Adela,258363,1553024,4 +44636,Video Game Producer,64807,27530,11 +44637,The Collector,69921,20495,5 +44638,,155605,133708,4 +44639,Himself - Interviewee,32694,7487,4 +44640,Cochise,37292,50570,1 +44641,Daniel,13544,833798,5 +44642,Antonio,235208,132850,4 +44643,Colin,187219,19976,3 +44644,Francesca Zanchi,42436,78532,5 +44645,Giuseppe Bartone,61799,5968,6 +44646,Julian (voice),21769,126286,3 +44647,Russian Officer #2,146216,1684551,55 +44648,Omen Reader,1966,11276,36 +44649,Jenna,42309,53929,1 +44650,Dr. Bartholomew Wolper (voice),123025,21731,4 +44651,Torsten Barring,27622,3001,2 +44652,Jerri,42709,15007,10 +44653,Suzie,13162,59450,12 +44654,Claude,86391,24903,4 +44655,Queen Elizabeth,46758,1285066,9 +44656,Mr. Bray Senior,93935,1657936,11 +44657,Himself,423122,56159,1 +44658,Greg,56809,1560011,12 +44659,Red,9474,95082,5 +44660,Axis Sally,12412,5644,14 +44661,Pinchus Zion,42023,35516,3 +44662,Executioner,1271,1330751,46 +44663,Svend,11328,1348441,8 +44664,Sarah Philips,40217,36812,6 +44665,Wong Wai Chi,46114,109270,7 +44666,Don Martín,127864,24987,7 +44667,'Flytrap',121006,14666,4 +44668,Janice,117509,1680476,7 +44669,Henry,16022,18992,29 +44670,Joe,40807,1574847,29 +44671,Principal Herbert,109491,1485328,17 +44672,Reaver (uncredited),263115,1445249,92 +44673,Narrator,24432,5309,6 +44674,Herself (Choreographer),21570,1148398,12 +44675,Tulip Heimowitz,84305,1922,2 +44676,Nanai Miguel,16157,624,12 +44677,Robert Chatfield,183171,141600,1 +44678,General,73194,14691,30 +44679,Alice Ayres,2288,524,2 +44680,Vic,154537,92843,9 +44681,Girlfriend (as Sandra Tucker),60965,232048,19 +44682,Kelly,197583,191277,4 +44683,,402612,1037718,1 +44684,Felix Faust (voice),408220,15029,9 +44685,Man at Station,56154,1232539,54 +44686,Michelle,359412,1820495,15 +44687,Wind Monster Hunter,334298,1525689,16 +44688,Lotus Land Dancer,32657,143336,89 +44689,Young Estella,121674,561247,26 +44690,Dante,2295,23629,0 +44691,Marcus King,290370,8335,0 +44692,Additional Voice (voice),16866,1074722,10 +44693,Richard W. Courtland,74525,18156,2 +44694,Christine Hunter,72847,80994,0 +44695,Taran Killam,214756,1213573,22 +44696,Pit Boss,14669,1574239,23 +44697,Judge Ira,693,10403,8 +44698,Jerome Halliday,10274,64670,11 +44699,Fabrizio,166262,1147819,12 +44700,Klasse Wallin,76047,74736,1 +44701,Sorority Sister,59738,1205530,24 +44702,Technical Adviser (Charlie's Wife),4932,151759,28 +44703,Jean Albertini,329682,81051,1 +44704,Bob,293660,184842,33 +44705,Roo (voice),14885,6860,0 +44706,Sonia,184098,1034453,15 +44707,Margareth M.,59040,1206772,30 +44708,Timothy Osborn,105981,1231648,1 +44709,Woody Deane,37725,7431,0 +44710,The Client / Mayor,48319,14852,6 +44711,Gary Lambert,23340,34117,0 +44712,Inspector Lo,69619,80374,2 +44713,Master Wen,32233,224055,9 +44714,Dr. Cal Timbergen,42251,97701,4 +44715,,347465,1371707,2 +44716,Suzie,417489,109619,6 +44717,Herself,33297,19161,0 +44718,Monica Page,175027,145832,4 +44719,Tom Thorne,72094,18616,0 +44720,Scotty,9841,59825,9 +44721,Santa Jim,139455,10825,5 +44722,Mrs. Betty Whitehouse,183171,139603,5 +44723,Colin Parker,245706,113230,33 +44724,Jefferson T. 'Jefty' Robbins,30624,12149,3 +44725,Travis Talbert,65456,10379,0 +44726,Soo-hyun,21442,25002,0 +44727,Fujio,27843,13275,0 +44728,Dynamites,2976,1752717,78 +44729,Nurse,26810,124984,10 +44730,,56589,1401957,12 +44731,Kristin,78403,148683,5 +44732,Hexe1,5393,34983,19 +44733,Thantos,46169,58791,2 +44734,NYPD Officer,2503,1280235,29 +44735,David Wayne,152532,424,6 +44736,Commissaire Vernet,7229,35896,2 +44737,Stage Hand (Overbrook),244786,1296849,22 +44738,Bob Arnold,42325,13998,2 +44739,Kid,91138,7268,3 +44740,Lieutenant Dale,377170,1132123,7 +44741,Jake Tanner,14862,83141,0 +44742,Miss Keith,56135,2926,8 +44743,,85126,118070,6 +44744,Le père Jules,43904,12748,0 +44745,,57889,235916,1 +44746,Hospital Attendant Sıtkı,74879,1001787,18 +44747,Audrey,72207,118545,15 +44748,Patricia Holm,463906,13446,1 +44749,Joe Mcgrai,83361,16620,1 +44750,Jin Hee,396535,1042232,4 +44751,Therese,153717,37383,2 +44752,Lutger Reinhardt,6443,49744,6 +44753,Policeman (uncredited),61151,14970,19 +44754,Sergeant Carl Lope,126889,76961,4 +44755,Cockney Soldier,81110,2936,12 +44756,Dale,8429,54943,16 +44757,Lana Lang,209112,1377087,44 +44758,Sanosuke Sagara,221732,111640,2 +44759,German Captain,150712,229609,47 +44760,Sarah Cotton,45013,8691,0 +44761,Doctor,36612,108023,20 +44762,Melvin Panton,26390,130253,15 +44763,Horus,205584,12795,1 +44764,Mrs. Mulfory,46145,31259,6 +44765,Mercedes' Husband,130457,102093,7 +44766,,46567,100316,9 +44767,Dancer,323675,1769809,47 +44768,Paul,270303,132712,1 +44769,Maya,9541,882,2 +44770,Professor Megelbach,277968,5274,13 +44771,Passengers,296524,1560335,12 +44772,,26642,1395094,3 +44773,Old Man Wickles,11024,1039,5 +44774,Mike 'Lucky' Lockhart,18446,6856,1 +44775,Vandy,308032,85139,16 +44776,Himself,320589,76136,9 +44777,Jack Harmon,11643,14884,5 +44778,Neil Grice,58790,56117,4 +44779,Free Greek-Sculptor,1271,1142866,38 +44780,,99361,1194820,10 +44781,Cowboy,149232,32224,3 +44782,Himself,111332,1052079,7 +44783,Marie,14008,1239505,9 +44784,Tam,56329,21908,0 +44785,Vesna,382873,512966,1 +44786,Agnes Wickfield,141640,75253,11 +44787,Harry Martin / Harlevon Martinescu,89337,168265,0 +44788,Emily,244403,7427,2 +44789,Roeyis Freki / Auntie Pearl,31397,106245,7 +44790,Tammy,113119,1056326,1 +44791,Vladislav Pavel,388862,134848,6 +44792,Son Of Earth,1483,36184,2 +44793,Girl in The Future,270654,1424895,21 +44794,Anne Higgins,17003,31210,7 +44795,la prostituée,79435,88578,7 +44796,Himself,44260,556526,1 +44797,Tough Jailbird,10025,62073,17 +44798,Sampson,443053,1764362,8 +44799,Morka,157178,92654,0 +44800,"Sasha, daughter Kochegar",56212,223800,3 +44801,Dumb Reporter,3146,1059891,14 +44802,Emelyanov,40709,235861,5 +44803,Maria Maioni,29043,10139,1 +44804,Helen Robbins,31901,6461,2 +44805,Captain of fishing boat,43113,1185640,38 +44806,Rosemary,138544,1178781,4 +44807,Chocolate,83223,1041366,1 +44808,Sgt. 1st Class Danny MacCullough,37468,12151,0 +44809,Spleen,18898,1230936,7 +44810,Delores,417870,582892,27 +44811,Nasa Technician,328429,1556323,5 +44812,Danielle,9785,59247,9 +44813,Colie Powers,55989,6937,5 +44814,Paul Martin Sanderson,150338,51519,6 +44815,Restaurateur chinois,35025,114711,32 +44816,Court Audience Member,339419,1650199,51 +44817,Mother-in-Law,38749,40349,8 +44818,Sexy Woman,18189,1547349,16 +44819,Butch,156603,1163350,10 +44820,Dr. Meadows,43938,78789,7 +44821,,167874,100956,4 +44822,Phoenix,17725,1827930,15 +44823,Brandon,340187,1579545,8 +44824,Sato,18722,553440,40 +44825,Jake Seiling,252682,47879,0 +44826,Les Drago,167556,1487152,4 +44827,Asuna's Mother (voice),79707,23988,4 +44828,Michael,19237,115730,5 +44829,Tracy,72105,55463,14 +44830,Kedi,51334,225187,7 +44831,David Hamilton,128841,117509,3 +44832,Delia Graci,72753,149512,3 +44833,Himself,70027,1490042,17 +44834,The Colonel,72638,20368,11 +44835,Reverend James,5123,34,7 +44836,Max's Cook,312221,1746936,56 +44837,Goofy (voice),105325,84213,1 +44838,Einsatzleiter,308174,5649,5 +44839,Ragioniere,56339,68163,9 +44840,Angelique (voice),44896,26054,6 +44841,Mbanik,276220,1330186,3 +44842,Lulu Palm,40130,29541,5 +44843,Henchman Blackie,25953,117676,9 +44844,Genesis Shareholder (uncredited),365942,1529185,58 +44845,Helen,334074,1446006,9 +44846,George,31287,1000180,4 +44847,Woman with Cigar,26491,1222237,10 +44848,Judge Bazile,339419,60875,9 +44849,Gerry Ryan,9648,42393,3 +44850,Lucas,68191,12312,10 +44851,Gye-choon,387886,1080935,0 +44852,Don Juan,48145,1022633,16 +44853,Old Fisherman,32657,171584,56 +44854,Som,16313,1150582,1 +44855,Redhead at speed date,42571,128224,7 +44856,Roy Campanella as a Boy,132328,193698,9 +44857,Veniero,116236,1266498,3 +44858,Sona,69428,147324,2 +44859,Nobuyuki Masaki,14829,81852,12 +44860,Steven,13849,1047358,9 +44861,The Narrator,83666,12438,6 +44862,Tree Rape Victim,79329,586547,25 +44863,Michelle Bluntschi,21062,112950,1 +44864,Dark Del,90120,97820,8 +44865,,21070,1630041,13 +44866,Jarvis (voice),284274,1048574,4 +44867,Lois / Primitive Guyver (voice),11795,1408168,14 +44868,Martin,29101,43648,5 +44869,Himself,377151,1630875,6 +44870,L'assistente del professore Grand,28061,1375838,6 +44871,,18908,559145,15 +44872,Vance Chandler,103432,95652,5 +44873,No. 1 Helmsman,29805,24743,31 +44874,Office Boy,98125,89754,26 +44875,Mia Kreiss,423988,150245,2 +44876,Leblanc,13652,44560,11 +44877,"Anaïs, une commère",76642,126559,7 +44878,RV Boy,72574,566381,9 +44879,,126227,74293,5 +44880,Renee,408509,68816,1 +44881,Yu Yin,55156,87948,5 +44882,Sakuranbô (Cherry),43967,617,15 +44883,Thee,64215,1259680,0 +44884,Ruth Evans,35921,115334,1 +44885,Zsuzsanna,41689,127105,4 +44886,Mutsumi,36917,1203411,2 +44887,"(segment ""Self Portrait"")",8985,1456426,3 +44888,Mark Kanan,33789,12223,8 +44889,Col. Mathieu,17295,39953,1 +44890,Princess Fiona (voice),10192,6941,2 +44891,Kim Hee-su,19482,20737,0 +44892,Anna,5165,20882,2 +44893,Madge Nelson (voice),366143,19,1 +44894,Emily,199056,94098,4 +44895,Vinny Pazienza,332979,996701,0 +44896,Hostel Manager,61528,181414,8 +44897,Coal Bowl Starter,9471,77271,10 +44898,Laney Hennessy,83785,20980,0 +44899,Kuo Chen-Wah,25074,18897,0 +44900,Joseph,339403,1635143,6 +44901,Koichi Todome,62301,105816,0 +44902,Honzík,51902,591973,1 +44903,Pikner,56596,93381,4 +44904,Cynthia,320588,63234,6 +44905,Lin Crosby,285400,84654,11 +44906,Count von Krolock,3053,26557,5 +44907,Caitlin,277847,17521,3 +44908,Elizabeth Wintern,7837,4493,1 +44909,Lulash,172475,41269,5 +44910,Ponzo,177085,16861,7 +44911,Auditionee,2976,1752738,96 +44912,Pavedes,11813,6784,4 +44913,Jerry August,61049,8498,11 +44914,Costel Dorohoi,403429,85230,13 +44915,Sherry Clarke,7006,51798,1 +44916,Miss Framer,86049,55688,4 +44917,Bram,57829,88262,13 +44918,Harry,19918,60898,4 +44919,Jerry Stanton,36251,134083,5 +44920,Hamish Winslow,205481,30710,5 +44921,Rodeo Barker,55604,89938,51 +44922,Narrator,72105,2387,10 +44923,Japanese Colonel,256962,953738,26 +44924,Rita,2061,21195,7 +44925,Erwin the Rat,286545,221414,5 +44926,Hot Teacher,168259,118593,28 +44927,Alexander Auchinleck,10087,20508,19 +44928,Taxi driver,16171,79872,21 +44929,Townsman,78734,33178,19 +44930,Bill Prentice,45692,7125,0 +44931,Boy on Bus 1,370755,1650140,17 +44932,Patience,156711,1349722,14 +44933,Mikko,14357,1016978,7 +44934,Taani's father,14072,1033169,3 +44935,Upstairs Beehive Lady,107985,117550,50 +44936,Carter Wilson,132363,9777,20 +44937,Carmela / Memé,104081,19819,3 +44938,Mary Grand,51881,160321,4 +44939,Sultana,174645,1157592,4 +44940,Himself,376391,1010099,5 +44941,Little Finger,383618,1369024,8 +44942,Mrs. Sedley,75363,3674,7 +44943,Mr. A,77060,47432,3 +44944,Flash Harry,11402,47722,2 +44945,Asua,89242,14464,4 +44946,Market Girl,413998,1894995,26 +44947,Sam Houston,10733,6065,0 +44948,Butch,52894,159129,7 +44949,Girl with the Hourglass,73612,54754,9 +44950,Marie,270400,55814,12 +44951,Simone,295964,139,4 +44952,Mikhail Korsky,14400,10841,4 +44953,Mrs. Chaudhary,46387,35750,5 +44954,Boy At Pool,13649,1329572,6 +44955,George,50647,22226,0 +44956,Doctor,261037,171754,5 +44957,Jack,265019,970188,4 +44958,Count del Ferice,70734,1618645,8 +44959,Jane,20846,58393,7 +44960,Reading Team Coach (uncredited),336890,1754353,32 +44961,Sala,83481,28514,1 +44962,Once-ler's Mom (voice),73723,476163,8 +44963,Ellen,252028,1281610,2 +44964,Junie Hacklin,48949,1755407,12 +44965,Radio Announcer (Voice),16083,79238,24 +44966,Mrs. Roach,242224,1413763,11 +44967,Coach Faxon,80468,61409,8 +44968,Nurse 1,17111,1629441,12 +44969,Mayor of Los Angeles,38269,34211,8 +44970,Rocket,6935,51497,4 +44971,Wyatt Maxwell,405388,1485556,0 +44972,Bamàn,317389,1022670,4 +44973,Alex,300669,112476,1 +44974,Vicka,105576,25282,3 +44975,Suor Clementina,155011,1136031,6 +44976,Fraser Rowan,29108,15336,3 +44977,Sally Goodwin,118889,85848,0 +44978,,56589,592399,11 +44979,Condoleezza Rice,16239,94600,1 +44980,Leo,353686,1122461,6 +44981,"Shintaro, Son",168994,1392414,3 +44982,Kwok Sui-Chung,338421,78869,1 +44983,Shiduko Arisawa / Izumi Kuramoto,38625,120923,6 +44984,Ben,11321,2888,0 +44985,Virgin Mary,30973,107400,6 +44986,Shintaro Shimizu,168295,123854,5 +44987,Bar Frog (voice),809,1784314,16 +44988,Frik,7096,519,4 +44989,Narrator,25568,83786,0 +44990,TV Anchor,329865,193040,51 +44991,Draven,40624,9777,3 +44992,Revolta,13350,10929,6 +44993,Lin Xiao,270842,572043,0 +44994,Myrtle Reed,23107,82349,1 +44995,Cathy,36597,115679,1 +44996,Ellen Betz,24062,24809,1 +44997,Himself,23524,236676,5 +44998,Owl (voice),28118,5049,4 +44999,무명 (Mumyeong),41441,126495,0 +45000,L'agent de police,19548,46788,11 +45001,Telephone Operator (voice),111042,3149,13 +45002,Reverend Yearby,27105,112722,10 +45003,Black Harris,11577,8262,20 +45004,Kim,141418,1528093,4 +45005,Baxter,11509,235349,23 +45006,The Burning Hotels Drummer,23367,95383,27 +45007,Андрейка,20879,1017021,9 +45008,Maddie,10330,61904,8 +45009,Mirella,109979,124679,2 +45010,Maria,380856,84261,3 +45011,Station Agent,43821,5461,11 +45012,Angel,426265,1437842,6 +45013,Louise Shepherd,46885,201798,6 +45014,Hjördis Pettersson,60899,6657,2 +45015,Nan,81182,1221763,10 +45016,Dancer (uncredited),47342,138628,17 +45017,Dad,30478,1376314,6 +45018,The first woman,181456,10483,24 +45019,Kurt,83223,68330,0 +45020,,261036,26457,1 +45021,Shinpei Itakura,125257,118989,0 +45022,Hermano de Ona,115665,1030526,7 +45023,Vet,10070,62817,10 +45024,Chamberlain,2503,1280231,20 +45025,Jillian,323665,56677,1 +45026,Tang Wanru,270842,1379397,3 +45027,Zeno,88375,120447,9 +45028,Jacob,5899,28896,0 +45029,Jean Fordham,152737,17140,9 +45030,,227552,173158,5 +45031,Shaggy,20558,16418,2 +45032,Lenny,58462,1816415,10 +45033,Distraught Player,43812,11496,69 +45034,"Eros, il tecnico",77000,55914,0 +45035,Blanche,330115,1496230,9 +45036,Cristina,48254,1123743,11 +45037,Morgue Officer,6973,79211,34 +45038,Harvey,1272,31711,6 +45039,Charlotte,11196,4458,5 +45040,Benjamin,133458,565870,5 +45041,Guest #2,48281,90457,13 +45042,Heather,332979,212291,8 +45043,President,135832,8198,2 +45044,Paul Terenzi,16296,1706339,7 +45045,Gnomes / Various,80928,5462,2 +45046,Vanessa / Melanie,371181,59240,5 +45047,Razor,354133,222101,13 +45048,Ekaitz,83481,1031744,2 +45049,"Лёша, диктор",143883,86860,0 +45050,Dudley,424661,1116802,6 +45051,Woman,41283,53828,16 +45052,Gail,138222,56881,4 +45053,,285532,232884,8 +45054,Miss Hill,352372,1651996,5 +45055,Eraglia,96106,107234,28 +45056,Esteban Ruiz,29313,103469,1 +45057,Juanita Vanoy / Juanita Jordan,60457,59153,3 +45058,Young boy on ferry (uncredited),86168,1765486,8 +45059,Betty Bird (voice),153518,591835,19 +45060,Takkunen's Son as Child,20164,148355,14 +45061,Leo Palamino,209406,133212,0 +45062,Reisman,10596,61546,2 +45063,Additional Voices (voice),328111,52699,28 +45064,Pearly Soames,137321,934,2 +45065,Tauna,50942,39977,5 +45066,Pvt Joe Gomez aka Spanish Joe,51426,12295,10 +45067,,113739,137997,0 +45068,Pilot,34459,109086,2 +45069,Aquata / Arista (voice),13676,15761,7 +45070,Henrietta 'Henry' Robbins,31901,10400,0 +45071,Clifford Skridlow / Doctor Detroit,23096,707,0 +45072,Zozo's Mom,49220,225883,3 +45073,Mustafa Karami,12113,25087,11 +45074,Hooded Boy,381015,1442834,13 +45075,Dancer,10096,1229700,46 +45076,Erman,7237,52143,4 +45077,Dr. Maurice Lamar,57866,2638,0 +45078,Claude Duval,131781,4121,7 +45079,Ben Mattling,43806,136895,11 +45080,Danny,24625,145106,4 +45081,Hiring Boss,55604,153638,35 +45082,Jeannette Ross,86241,1041,13 +45083,Fem-Alien #1,13836,1302500,43 +45084,'Entertainment Beat' Host George Reardon,13173,87230,5 +45085,Doyle,24671,2628,1 +45086,Stinne,53693,3402,3 +45087,Artie DeVanzo,14137,20788,0 +45088,Tracy,203351,1077737,2 +45089,Lida's Neighbor,435041,86826,6 +45090,Lisa,13763,34060,8 +45091,Oliver Queen,142061,130081,21 +45092,Najma,35025,234014,8 +45093,Bridge Man in the Desert,316154,1670428,10 +45094,Clan Akkaba Leader,246655,96592,34 +45095,Shinji Igarashi,18722,152783,7 +45096,Bill's Houskeeper on Bali,98125,148565,21 +45097,Natalie Ravenna,59231,28778,1 +45098,Maharani von Tungal,268212,25789,5 +45099,Producer,107682,548329,8 +45100,Charlie Beesley,159469,120553,6 +45101,Saida,21567,101857,5 +45102,Flip,13777,75254,4 +45103,Diane Sullivan,69165,165381,0 +45104,Guy,300,4275,3 +45105,Annie,290999,1361557,6 +45106,Jason,323674,1152932,8 +45107,,118257,133140,7 +45108,JVC Guitarist (uncredited),244786,1503853,44 +45109,Dr. Cameron,49514,285038,15 +45110,Adele Varens,22744,13991,2 +45111,Gallery Visitor,245700,151958,63 +45112,G.V.E. Svedenborg,72785,97033,4 +45113,Prostitute Vera,241140,1426804,9 +45114,Uncle David Jackson,61550,233298,4 +45115,Alok Raj,39839,42802,4 +45116,Helena,34588,87835,1 +45117,Cap'n Andy Hawks,17820,3156,3 +45118,La voisine d'Achille,92424,65572,3 +45119,Gwen Connors,69560,108213,7 +45120,Gene Piper,179066,119755,5 +45121,Broomsy Witch (voice),10192,118490,14 +45122,Mrs. Fowler,428687,1294,6 +45123,George Heath,27450,10597,8 +45124,Nolan,301228,42663,3 +45125,Preacher,6575,22250,35 +45126,Viviana,81787,1862813,9 +45127,Duane,21955,88097,4 +45128,Dr. Jean Rousseau,144229,101851,4 +45129,Sheriff,14615,77115,4 +45130,Xerxes,1271,17289,9 +45131,Mang Dindo,22579,223190,6 +45132,Additional Voice Talent (voice),145316,52699,12 +45133,Jack Forrester,37126,139451,4 +45134,Gunnar,29923,92429,0 +45135,Mrs. Johnson,43850,1193045,9 +45136,Terrence 'Doc' Williams,31462,20753,4 +45137,William,24409,91588,2 +45138,Ohio Scout,16996,10000,37 +45139,Le bibliothécaire,22136,228886,6 +45140,Clip from 'Rose Marie' (archive footage),33740,98462,48 +45141,Chew Seow Fang,195763,1176001,4 +45142,Hugo Alfvén,133783,87663,2 +45143,Salomé,96951,130706,0 +45144,Shinji Nakaoka,14087,547986,1 +45145,Creep in Elevator,270650,1359974,35 +45146,Lagrume,37454,38116,2 +45147,Snails,201676,153783,8 +45148,Mr. Doctor Graves,76681,12950,2 +45149,Sarah,77930,1190066,62 +45150,L'infirmière,51971,145088,11 +45151,Bridesmaid (uncredited),242042,1687127,44 +45152,Johnny Brett,43809,30181,0 +45153,Castiza,23750,1205637,10 +45154,Arman,440508,1846435,3 +45155,Anna,781,11613,8 +45156,Tartüff,55544,2895,0 +45157,Portier,54769,51138,7 +45158,Dionysis,374021,1083697,7 +45159,Seecombe,413998,79875,17 +45160,The Man,54700,20301,2 +45161,Saverio,43645,584234,6 +45162,Tony,16214,92757,7 +45163,Pauline Pusser,25473,70286,1 +45164,Peg Kaznyk,37686,484293,13 +45165,Simone Bark,133458,5313,2 +45166,Psycho Blogger,10761,66558,19 +45167,Teacher Tkác,19765,135680,4 +45168,Niobe Mulvain,109018,118231,2 +45169,Bill Masters,26502,18391,2 +45170,Radnor,20674,53806,10 +45171,Kyle,13842,84048,2 +45172,Apostolis,87908,123049,3 +45173,Niece,311291,1561081,8 +45174,Suchoruka,31273,107894,42 +45175,La pupa dei gangsters,213095,38596,3 +45176,Jesse Kiffmeyer,45800,9067,3 +45177,Maggie Tannenhill,235662,134178,1 +45178,Norma Murdock,174925,34213,6 +45179,Kamina,23452,24647,1 +45180,Composer,14543,4949,17 +45181,Ministro,197177,32377,2 +45182,Gilbert,25625,106672,8 +45183,Ben,176079,56680,2 +45184,Nikki,360605,1335646,8 +45185,Mr. Cooper,21950,102451,7 +45186,Mrs. Alexis Richardson,27035,96816,4 +45187,Seo Ji-woo,118451,84788,14 +45188,Jared,363479,141217,4 +45189,Alina,61314,232926,4 +45190,Monsignore,3520,5688,6 +45191,Mrs. Wopsle,121674,1796449,23 +45192,April,125300,1641,6 +45193,,311417,1399676,7 +45194,Takeshita,402455,133656,16 +45195,Himself,70027,1490038,11 +45196,Oh Man-ho,285213,509648,13 +45197,"Ben, club manager",362463,1518299,11 +45198,Françoise Dubreuil,366566,19936,12 +45199,M. Bouley,4516,13692,5 +45200,Gate Guard,28001,34280,12 +45201,Older Man,381737,1329618,12 +45202,Sol Terranova,131966,16525,3 +45203,Matt Tomley,34672,51036,0 +45204,Frankie Stein,3144,30752,2 +45205,Vegeta,39107,122501,12 +45206,Broker,43811,1411458,51 +45207,Cameraman,335970,1718158,62 +45208,Tonino Aniello,132122,1094536,6 +45209,Ciego,100270,1169622,8 +45210,Kaiji Ito,106417,31078,0 +45211,Margareta Persson,51423,47330,9 +45212,Lulu Mae,252916,94399,3 +45213,Sweetheart,8988,490982,62 +45214,Rosa,128856,1089464,5 +45215,Doto Kazahana,16907,20661,10 +45216,Shukishi Hirayama,18148,33135,0 +45217,Felicia,63706,22434,1 +45218,Lydia Ann Layton,14569,2165,1 +45219,Ian,26581,83754,1 +45220,Bret,1599,21007,11 +45221,Photographer,72785,568683,9 +45222,Gu Yuan,270842,1012320,4 +45223,Philippe,140825,8924,1 +45224,Le docteur,47226,1564565,13 +45225,Smitty's Son,52859,1671463,45 +45226,Dancer,259694,1530879,11 +45227,Queen's Emissary Assistant,310593,1558179,33 +45228,Betting Parlor Manager,118889,121244,41 +45229,Isabel,84354,983998,5 +45230,Michelle,62492,11668,10 +45231,Craig,76494,539,12 +45232,Agent Woodward,285135,77222,2 +45233,German Lady in the Audience,145220,1147918,13 +45234,Lilly Onakurama,353616,1107297,9 +45235,Mathilde Danner,12523,41167,1 +45236,Inspector Vijay Khanna,218898,147023,2 +45237,Dr. Jonathan Gifford,62694,14658,13 +45238,Gary (uncredited),44943,1205904,57 +45239,Spanner's Dad,17303,560174,4 +45240,Himself,376391,928825,4 +45241,Vivinha,34588,230264,3 +45242,Karpusha,99738,1153529,5 +45243,Baron 2,274857,237408,39 +45244,Japanese Sergeant,127560,1381318,22 +45245,Ah Juan,62762,1420033,8 +45246,Lionel,146238,1030512,15 +45247,Don Hollenbeck,3291,6719,16 +45248,Lt. Col. Harold Richards,401222,27763,0 +45249,Dr. Goodman,336890,1903971,22 +45250,Bogs Oliveros,46773,939091,3 +45251,Sidi,47226,1564560,8 +45252,Bats O'Bannion,128644,11086,8 +45253,Barrent Bonden,8619,1329,3 +45254,Pringle,70151,9865,6 +45255,Reverend Langley,44470,2076,2 +45256,Gangster Boss,46026,101886,9 +45257,Kate Bridges,85009,10427,1 +45258,Macon,263115,1492293,15 +45259,Burlington Pedestrian,356752,1841533,57 +45260,The People Eater,76341,102603,11 +45261,Erico,39286,39186,5 +45262,Alien Officer 3,280617,1035406,30 +45263,Casino Gambler,332979,1360003,19 +45264,Lieutnant Galtsev,31442,90360,3 +45265,Himself,169721,131133,0 +45266,,46567,106684,12 +45267,University Student (as Michael Fox),27137,1185446,10 +45268,"Gogo / Peter, age 8",57412,10165,6 +45269,Jocelyn Johnson,2355,202850,15 +45270,Hombre en cabaret (uncredited),210653,1527316,15 +45271,Child,160324,21661,2 +45272,,31462,94501,27 +45273,Moderator,7288,3981,18 +45274,Omen,13058,964792,8 +45275,Vice-Admiral,217923,1436158,21 +45276,Etherege,7548,2441,7 +45277,Ens. Carmody (uncredited),10178,159549,19 +45278,Bożena,418757,1198541,4 +45279,Un producteur d'ABC,332794,1386160,16 +45280,Ken,10753,1180788,8 +45281,Katie,82990,90596,0 +45282,Madeleine Gravis,4960,15250,8 +45283,le pharmacien et le docteur Lamy,50350,81812,19 +45284,Julia,377432,74607,1 +45285,Kriemhild,10659,47238,1 +45286,Belinha de Rezende,28293,31876,0 +45287,Iturbe,110001,237352,1 +45288,Lord Stanhope,144613,14290,6 +45289,Nico,14126,229674,6 +45290,June MacKinnon,130881,1086016,1 +45291,Iragashi’s Wife,104277,66153,2 +45292,Larry Glass,357851,534,3 +45293,Specules / Narrator / Doorman / Henchman #2 (voice),278901,35219,1 +45294,Al,418772,59258,8 +45295,Endre,163942,994032,2 +45296,Avocat,41277,565645,39 +45297,Alan,309879,2467,2 +45298,Niño Ángel Parra,80717,590881,7 +45299,Col. Sutch,104485,1408728,12 +45300,"Jimmy, Baby Weems model",22752,1281228,11 +45301,Deborah,24094,63239,7 +45302,Traveller,4279,17028,9 +45303,Aleksei Kiryushin,107705,545817,4 +45304,Policière municipale,13312,81050,7 +45305,Mr. Sea Serpent (voice),312100,141525,12 +45306,Misaki Yoshida,296750,148469,1 +45307,Maniek Kosela,74922,235493,4 +45308,Madeline Chaddock,369019,228431,6 +45309,Colonel Nicholas 'Nick' Joseph Fury,27460,28238,0 +45310,Zeffie,38433,8522,7 +45311,Hwang Joong-geun,285213,1593672,14 +45312,Tom,171213,23388,2 +45313,Kato,374416,1483240,16 +45314,,58081,128045,5 +45315,Himself,2890,28730,1 +45316,Hollywood Parade MC,325712,1514386,10 +45317,Calvin,42252,5048,5 +45318,Claudius,120729,10074,2 +45319,Tom,18165,100,1 +45320,Angela Hardy,183827,85847,8 +45321,"Natasha, Vasily's wife (as K. Korobova)",204802,1623855,12 +45322,,79580,143709,3 +45323,Reeves,58547,25072,10 +45324,I.S.I Chief Ishak Khan,271677,691,4 +45325,Strakk / Tarix,22259,34982,0 +45326,Field Reporter,51036,132730,16 +45327,"Lutro, the journalist",151068,624719,6 +45328,Ottilija,70874,1189523,4 +45329,Krankenschwester,11122,114594,9 +45330,Bob Gilruth,44578,23608,5 +45331,Mrs. Fowler,21780,1234330,18 +45332,Little Darian,376660,1256296,12 +45333,Rocklin,15264,4165,0 +45334,Barrister,19621,388,11 +45335,Big Guy's Girl,15316,183038,16 +45336,Roberto,35554,120132,5 +45337,Schroeder (voice),15242,130916,3 +45338,Peter Cratchit,229056,1404084,10 +45339,Chaz (as Mike Horton II),21431,223014,6 +45340,Himself,24978,92941,2 +45341,Felix,1539,17376,6 +45342,Jimmy Swift,42251,2234,7 +45343,Maj. Daniels,15807,97007,14 +45344,Señora,199851,1191992,2 +45345,Oldtimer,108723,1446337,20 +45346,Herself,417870,1219096,17 +45347,Laetitia,49398,9765,3 +45348,Tohfo,29610,41262,11 +45349,Takhir,364684,1867071,2 +45350,Nancy Downes,102057,14500,3 +45351,Miss Kitty,82243,110102,3 +45352,Ferdinand - Eve's Chauffer,31993,589726,41 +45353,Mel,229328,202734,1 +45354,Celeste,13477,5657,2 +45355,Bodhidharma / Aravind,86718,85720,0 +45356,Councilman Pew,150247,3641,7 +45357,Maik,94336,223769,4 +45358,Udela,313074,1402673,10 +45359,Minty,297668,65744,8 +45360,Mozza,15935,78960,15 +45361,Katis Vater,2195,23179,5 +45362,"Lasse, en tjenestegutt",77922,1196411,9 +45363,Uuno Turhapuro,62897,116157,0 +45364,Tilman,142712,46216,12 +45365,,81463,1480659,9 +45366,Tom,70636,559058,2 +45367,Mama Tits,338063,1581575,14 +45368,Frustino,52914,78715,15 +45369,Liam,27259,13362,5 +45370,William McCandles,70151,89834,7 +45371,Sabrina,301368,1040469,4 +45372,Larry,15639,15897,0 +45373,Mr. Waters,10330,1213609,23 +45374,Le pompiste,2786,13697,16 +45375,Nancy the Caterer,508,1836,30 +45376,Young Hark,339408,1503923,33 +45377,Vinay Sehgal,20092,78922,4 +45378,Voice Ghost,60120,1188436,2 +45379,Fletcher / The Captain,10165,160594,3 +45380,Comtesse,2861,1895451,10 +45381,Jack,300155,1007683,4 +45382,Girl with Emily French at Movie Premiere,26486,20750,8 +45383,Noelle,12994,18050,3 +45384,Mumble (voice),9836,109,0 +45385,Dan,177085,2880,0 +45386,Pupa's Rival,193893,983700,58 +45387,Howard Birack,8852,11395,2 +45388,,48341,1121241,12 +45389,commissaire Rémy,59434,114347,8 +45390,Narrator,376394,1225799,7 +45391,Виталий Семенович,428398,147268,8 +45392,Caitlyn,272693,1533223,10 +45393,Fred Harwell,29510,8233,8 +45394,Elvis Presley,301348,335,1 +45395,Ramón,445840,1772545,6 +45396,Nat,139571,460802,2 +45397,Mrs. Hurley,104427,13822,12 +45398,Evangelist,157829,155222,10 +45399,Mihir,120942,212008,2 +45400,Clay Lomax,79735,8487,0 +45401,Mme Lowery,47794,19092,6 +45402,Pirate / Indian / Swing,273106,1519566,21 +45403,,85126,14830,10 +45404,Maria,356326,1150862,7 +45405,Oronzino,48805,141113,5 +45406,Mr. Dixit's Son,378227,1148989,5 +45407,Senator,177677,1192564,19 +45408,Paco,62755,1708548,4 +45409,Hammond,249021,64856,0 +45410,Giorgio/Giorgino,77728,582476,1 +45411,Joven prepotente (uncredited),41298,1044077,26 +45412,Party Guest,149793,1421106,32 +45413,Cute Girlfriend,32657,1678980,75 +45414,Poole - Jekyll's Butler (uncredited),3016,1364449,11 +45415,Himself,43514,89735,19 +45416,Hotel Clerk,108222,34186,19 +45417,Himself,417870,1882333,20 +45418,Hassansin Leader,9543,587354,8 +45419,Carissa,379959,1469769,4 +45420,Boxer,80324,43553,6 +45421,Angel,177085,156485,3 +45422,Billy,112708,19137,0 +45423,Yvonne,16171,57897,12 +45424,Police Lt. Carl Eckstrom,31555,5249,4 +45425,,316170,28256,1 +45426,Asylum Inmate,62694,5740,8 +45427,Principal Matsui,10947,56121,11 +45428,"Dr. Gong Sun-Lan, 1st Sister",64304,1392192,6 +45429,Juan Carlos,136752,1208792,5 +45430,Mills,293167,1115984,9 +45431,Peewee,104193,1429873,3 +45432,Chris,23628,90396,4 +45433,Lisa,15689,1635104,5 +45434,Michael 'Mitch' Evans,27443,83807,6 +45435,Militia #1,461955,958540,8 +45436,Monica,76684,55063,6 +45437,Boris,10330,1067,22 +45438,Pete,3144,30756,6 +45439,Cheerleader #1,8669,1281021,28 +45440,,335053,1373478,18 +45441,Brenda,54804,137471,18 +45442,Water Sprayer,157343,131003,36 +45443,Himself - Narrator,233466,16851,1 +45444,,188640,601266,12 +45445,Olga,440508,1846446,13 +45446,Friend Tim 1,348320,1869099,30 +45447,Secretario Roser,348537,1092534,11 +45448,Buttler,3574,32995,9 +45449,Naomi Schwartz,2267,17696,5 +45450,Prison Chaplain,171446,1145077,15 +45451,Daniel,145135,52419,1 +45452,Little Girl (uncredited),134475,1055292,11 +45453,Dolek,119364,12692,6 +45454,Jacko (voice),339669,1371,5 +45455,Kevin Rooney,332979,6383,1 +45456,Head of Nation,206647,1599260,48 +45457,Kurt Thompson,336265,1138748,7 +45458,Paul Summers,89756,102853,2 +45459,Albert 12 ans,12169,1164965,17 +45460,Gatekeeper,53949,117647,23 +45461,Miroslav,1691,11290,8 +45462,Chloe Cook,301566,1382837,3 +45463,uncredited,60759,1484591,23 +45464,Charlotte,387399,1734,7 +45465,'Dice',99318,32430,4 +45466,Big Shelley,72096,166924,37 +45467,Gisèle,14650,136761,1 +45468,Mrs. Foote,18651,30261,6 +45469,Daisy,199415,1179654,8 +45470,Tate,19989,54865,3 +45471,Zabıta Adam 1,361181,1513950,11 +45472,First Pianist in Restaurant / Cop / Guest in First Restaurant / Uncle's Rescuer / Society Guest (uncredited),22943,14419,10 +45473,,295273,565378,10 +45474,Ruan Ling-yu / Herself,68004,1338,0 +45475,Jack Robideaux,24411,15111,0 +45476,Old Woman in flat,142802,86836,3 +45477,Old Timer,43821,1096851,49 +45478,dicke Schwester,308174,1888491,26 +45479,Twin #1,440597,1753915,12 +45480,Becky,13185,74442,4 +45481,Herself,16800,91197,14 +45482,Desson Orr,79778,102750,0 +45483,Frankie,124054,1085040,6 +45484,Dentist,7555,1085469,11 +45485,Woodward,43268,8515,6 +45486,Un bourgeois à la guinguette,68822,1271226,27 +45487,,48959,6645,7 +45488,Man with Rifle at Second-Floor Window,111470,589218,37 +45489,Joséphine,11540,5470,1 +45490,Crew Leader,424661,145219,9 +45491,Mrs. Conte,10740,2617,8 +45492,Federico,110447,144271,7 +45493,Douglas - chef C.I.A.,118150,13566,4 +45494,Yulya,327982,980125,4 +45495,Peter,18392,551514,13 +45496,Dr. Ken Warwick,76084,40577,7 +45497,Nassim,121793,111662,4 +45498,Apartment Soldier,164331,599976,6 +45499,Ellie Butterbit,342472,106490,3 +45500,Alison Dodge,72232,40462,0 +45501,Doctor,3701,33865,7 +45502,Ted Grey (uncredited),258480,1545521,38 +45503,Gliston,62675,38172,15 +45504,Prete,66700,1517143,11 +45505,Harriet,294254,1251069,11 +45506,Hairdresser,2976,1649240,97 +45507,,52560,27504,1 +45508,Jang's Man,240832,1426888,38 +45509,Glenn Sievertsson,53689,141618,3 +45510,,47795,150338,11 +45511,,256907,1222875,5 +45512,Ndebele Chieftan,339530,211947,12 +45513,Chloe,12645,129713,8 +45514,"Jakubowski, nauczyciel historii, wicedyrektor szkoły",369444,66464,4 +45515,Baker Salsbury,188102,1795981,3 +45516,Kosta Hadži,255647,1045435,8 +45517,Airport Background,351242,1273857,14 +45518,Skippy,16066,12536,7 +45519,Sean Brenner,280092,20212,0 +45520,Frederica,28739,1348605,10 +45521,Jessica Kluster,112503,5969,1 +45522,Federal Officer,268920,1514479,56 +45523,Nick,28671,101538,2 +45524,Dziennikarka,155325,1616645,18 +45525,Doctor Gale,50364,36666,8 +45526,lo sfruttatore delle prostitute,103216,24379,4 +45527,Vivian,10075,51536,0 +45528,Oscar Varino,187737,589458,6 +45529,Lee,407448,1517472,15 +45530,Preston Rogers,10011,42206,0 +45531,Herself,15177,77987,16 +45532,Chris,198277,1424193,34 +45533,Thick Built Yakuza,315837,1848055,26 +45534,Housewife,3782,7456,18 +45535,Commander Wu,311324,126778,8 +45536,Announcer,52437,562908,15 +45537,Mrs. Gardeski,79778,116571,10 +45538,Alexis Scrub Nurse (uncredited),284052,1785906,30 +45539,,375742,1564294,26 +45540,Prisoner,268920,1755083,104 +45541,Wife Fish (voice),127380,1240487,10 +45542,Fastikopoulos,130948,132262,3 +45543,Maitland's Secretary-Lieutenant,257081,1420472,31 +45544,Crawford Tillinghast,14510,27993,0 +45545,Mark Utesov,57889,227084,0 +45546,,188684,1274084,13 +45547,Hotel Manager,43880,30262,8 +45548,Nephew,43778,1349308,1 +45549,Guiah,129277,1088951,0 +45550,Security Guard,60935,1796797,17 +45551,Sexton,256122,1188336,3 +45552,Felipe,82409,927852,1 +45553,Hidezo,14087,81852,5 +45554,Odete,12221,73753,0 +45555,,85729,86961,9 +45556,Dr. Jerry Xavier,3574,2495,0 +45557,se stesso,109979,1041212,13 +45558,Homebrew Member,186606,1750925,14 +45559,Dr. Del Hartwood,150247,14573,1 +45560,Lionel Ronssin,121936,224150,4 +45561,Hugh,115283,28633,1 +45562,Reporter #1 (voice),40662,34945,16 +45563,Coach Mitchell,239563,37157,7 +45564,,197788,3339,3 +45565,,410634,1685980,4 +45566,WAF Captain,19968,101479,9 +45567,Bar Patron,23397,1893427,13 +45568,Joanie,43923,210386,18 +45569,Teresa,135686,947463,3 +45570,Miner at Radcliffe Colliery,28421,1550461,36 +45571,Herself - Model,327083,37765,14 +45572,Cristina,83481,564283,0 +45573,Stage Doorman,108222,100763,22 +45574,Sterling,253257,169244,1 +45575,Alice,60269,110493,17 +45576,Himself,23128,110921,8 +45577,Abbey Gallagher,10274,11826,1 +45578,Queen Victoria,67375,2018,14 +45579,Emishi,45384,25652,8 +45580,Pierrot Laurent,445,6017,7 +45581,Dr. Cho's Assistant,99861,1760860,30 +45582,Henchman #2,109439,37010,28 +45583,Cyclist,91583,1692501,13 +45584,,51267,86954,6 +45585,Rex,16077,20176,1 +45586,Noh Hyeon-jin,209764,570708,6 +45587,Yoko,24675,41558,0 +45588,,9550,1620874,10 +45589,,85317,29832,7 +45590,Gail,232100,1267377,2 +45591,Susanna,330171,59640,1 +45592,Greg Wyncoop,18530,268743,3 +45593,Himself,380058,177475,1 +45594,Priest-Cum-Cook,255160,936762,8 +45595,Frankie Lone,18665,25245,1 +45596,Diner Waitress,6557,1616051,26 +45597,Mary,41608,103082,10 +45598,Foreman Volodya,49577,1687767,7 +45599,Veronica Vreeland,15805,21619,8 +45600,Principal Jane Masterson,16996,404,19 +45601,Guest on Katya's birthday,70966,23442,5 +45602,Teddy,13960,84115,6 +45603,Ma Corbett,43522,117638,13 +45604,Rugby Man animalistic grunts,13777,75285,39 +45605,Gu Li,270842,126716,1 +45606,Varang,76600,566331,4 +45607,Zavanko,188927,936415,16 +45608,Inspector Joginder Singh Solanki,33460,110710,6 +45609,Bland's Mother,123961,7210,12 +45610,Bill Gaines,288281,87192,5 +45611,Skips,354857,2,2 +45612,,408550,1658130,2 +45613,Chi Siu-Lin,55156,67221,1 +45614,Ari Josephson,10694,3041,8 +45615,Fouché,27635,15676,4 +45616,Young Mother,71668,1104568,12 +45617,Eben Cleggett,74436,82835,9 +45618,Guard,377170,1467232,19 +45619,Stacey,508,29930,24 +45620,Fouché,65958,1958,0 +45621,MUDr. Josef John,80094,11720,3 +45622,San-myung Jang,21966,227617,9 +45623,Elizabeth,1640,18282,19 +45624,Tris Stewart,29260,2177,0 +45625,Cassidy,58076,87698,3 +45626,Gerald,374475,1052328,15 +45627,Monsieur de Barentin,99579,1174989,11 +45628,Maitre D' Chez René,201749,1632532,9 +45629,Technician,2503,122296,15 +45630,Angela Fischer,221981,158161,0 +45631,Sofie,138502,1108976,5 +45632,Fat Diplomat,337758,1563446,11 +45633,Foxxy Love (voice),36736,34985,5 +45634,Eric,68716,200376,2 +45635,Ambro Dealer 2,301228,1249588,11 +45636,Himself,231145,170364,0 +45637,Roopi Sethi,42057,200658,1 +45638,,83732,930020,1 +45639,Johnny,1589,17780,4 +45640,Olga,82448,928012,10 +45641,Kermit the Frog / Mean Floyd / Rat,51302,55983,2 +45642,Policeman,11626,50089,6 +45643,School Girl,62630,1048692,12 +45644,Georgie,94820,69122,0 +45645,Bender (voice),7249,31531,0 +45646,Rebecca Skloot,424600,9827,1 +45647,Joe,197737,13558,27 +45648,Sandy,240881,70767,1 +45649,Actress,330947,1469216,31 +45650,,44238,1043349,1 +45651,Harvey Howell,105551,114097,5 +45652,Xiong Bingkun,76349,130597,11 +45653,Simon Brenner,9010,39905,0 +45654,Dr. Warren,244458,67837,3 +45655,Doorman,26486,1546957,40 +45656,Cyclops,340275,10814,5 +45657,Jake,52661,12298,13 +45658,Silhouette Girl,77930,1784606,25 +45659,,69310,78877,25 +45660,Jimmy,1595,6396,6 +45661,Wu Jiang,219572,20654,1 +45662,Otis,83342,1056809,0 +45663,Sal,273404,8536,3 +45664,Marie,56858,202598,6 +45665,James Addison Reavis,37329,1905,0 +45666,Jane Cooper,186585,83396,2 +45667,David,18595,83279,4 +45668,Woo-ryong,345888,227638,0 +45669,Brian Bangs,1259,26854,18 +45670,Organ Grinder,264309,33253,25 +45671,Ezhuthachan,237672,1764231,22 +45672,Lisa,17473,81917,1 +45673,Harriette - the Couturière,53766,148802,6 +45674,Elinor,243987,1217907,0 +45675,FBI Agent McKee,285908,20195,5 +45676,Kaveri Ganpat Belwalkar,378227,1565616,2 +45677,Rachel,60965,232042,7 +45678,Jeffrey,45013,1113292,20 +45679,Heidi,26123,482044,4 +45680,Bright Noah,16157,100124,3 +45681,Gordon's Wife (uncredited),59231,37872,5 +45682,Mary,57829,44079,1 +45683,Nan,405473,1800021,7 +45684,Herself,324173,7404,15 +45685,Zullo,211179,1019917,2 +45686,Raymond,72898,19162,0 +45687,Reporter (uncredited),206197,1506497,43 +45688,Martinez,17630,35968,3 +45689,Monia,14558,140650,3 +45690,Turkish soldier (uncredited),297762,1451618,92 +45691,R.I.P.D. '70s Cop,49524,1373307,28 +45692,Church Parishoner,297853,1790458,36 +45693,Alikersantti Hakkarainen,55759,89511,10 +45694,Grace Learner,8954,6161,1 +45695,Chet,157898,99350,5 +45696,Kanai,26936,68989,9 +45697,Herself,209112,1514160,36 +45698,Sheriff Jess Linley,202941,8496,5 +45699,,41252,125928,6 +45700,Capt. Mark Demooth,73194,30513,20 +45701,Armagnac,63304,86675,8 +45702,Voice Cast,222935,1225592,42 +45703,Maid of Honor (uncredited),4982,1201268,98 +45704,Lily,45729,99406,4 +45705,Rossa,110447,54230,3 +45706,Sara,32893,40978,0 +45707,Laura (voice),12697,73995,0 +45708,Kevin,294483,49021,1 +45709,Patrick,84892,132157,2 +45710,Australian Tourist #1,10488,1014587,12 +45711,Young Tom-Tom,10096,157108,14 +45712,Amy Watkins,414610,1420695,2 +45713,Kira nomatarhaina,198890,1260055,5 +45714,Gambler on Ship (uncredited),47653,96061,14 +45715,Bloodied Patron,2001,17928,11 +45716,Paramedic,14457,81957,14 +45717,Harry Weber,46943,29616,8 +45718,Gregory,274479,1511961,53 +45719,Prabhakaran Kottappalli,134477,123328,1 +45720,Herman Gray,252888,80620,3 +45721,Jack,4538,17881,1 +45722,High School Juliet,8457,1564984,20 +45723,Arthur 'Cody' Jarrett,15794,5788,0 +45724,Caroline,47410,138874,4 +45725,Ganimard,171594,30686,2 +45726,Lady Eleanor Blount - aka Aunt Julia,70753,559557,1 +45727,Simon Pradal,74822,9746,3 +45728,Nick,236324,206269,19 +45729,Ashley,13437,1311372,9 +45730,Welcome to the 60's Dancer,2976,1752800,144 +45731,Anoushka,10748,1428513,24 +45732,,1421,1723438,25 +45733,Cully,16214,40185,6 +45734,Mr. Spinsen,48885,1790533,6 +45735,Himself,144680,1847916,1 +45736,Lord Harutaka Matsudaira,43364,134400,4 +45737,Paul Martin,10484,21170,3 +45738,Gale Sayers,18047,3799,1 +45739,Brady,110412,386,1 +45740,Raja / Badal,276846,77235,0 +45741,Hercules O'Brien,7549,24898,5 +45742,Neighbour,70046,1788269,20 +45743,,322614,1421245,2 +45744,Sitter in Bath Studio,80596,14306,25 +45745,Pim,43209,142685,5 +45746,Boxing Girl,77930,983999,30 +45747,Mali Wolf,74666,19943,0 +45748,Key Witness,13534,1021808,7 +45749,Herself,366696,1095805,0 +45750,,254689,1106123,5 +45751,Bystander,10362,83726,9 +45752,Wolverton's Nephew,31390,566786,2 +45753,Rutledge,197737,33278,7 +45754,Le père,63838,39792,3 +45755,Doc Scully,37301,16523,5 +45756,Squirt (voice),127380,1606371,14 +45757,Trooper,425774,1009366,70 +45758,voice,86700,933511,5 +45759,Julian,97051,59262,10 +45760,Josh,15090,1868698,12 +45761,Sara / Jess Price,329440,58502,0 +45762,Jerry,142391,130801,6 +45763,'Monty' Bodkin,144183,54447,7 +45764,Himself,324173,87281,14 +45765,Alex Munday,9471,140,2 +45766,Frau aus Tekoa,2734,27651,28 +45767,Bordello Lady,87302,1096097,14 +45768,A400M Pilot,177677,1361888,12 +45769,Dr. Tennison,75626,205360,1 +45770,Mary Shelley,114982,1060181,0 +45771,Isaac 'Eyeball' Butler,8988,10689,10 +45772,Mabel (voice),10192,151657,18 +45773,Secretary,375012,1668236,11 +45774,Stein,511,7121,16 +45775,Little Boy,24655,1536856,16 +45776,Theatre Manager (uncredited),80032,18870,13 +45777,Signe,251232,1441059,8 +45778,Dziewczyna z psem,314371,1583942,12 +45779,Chief Minister Raghuvir Singh,33460,110714,10 +45780,,38164,27208,2 +45781,Jack Elliot,18722,15112,0 +45782,Daria,27462,98078,0 +45783,Giovani Cristof,163706,549833,11 +45784,Priest / Priest Zombie,24927,156154,11 +45785,Himself,186019,1102103,1 +45786,Dick Tipton,38602,151438,5 +45787,Marchese Felipe de Aragona,103216,12259,2 +45788,Graham,44208,2437,3 +45789,Jean - Age 2½ (uncredited),80941,111988,30 +45790,Click,17577,1215684,11 +45791,Da Thug,111479,1223460,33 +45792,Katie,13493,79793,4 +45793,Bo,11643,70118,9 +45794,Howard,35320,1872364,18 +45795,Dr. Lampenbogen,257831,49331,6 +45796,Young Ethan,445602,1853351,11 +45797,Police Dispatcher,149793,121066,42 +45798,DJ,14126,1086555,8 +45799,Harry Harper,214100,973,6 +45800,Chen Xinyi F.G. sqad member,62071,238907,10 +45801,Old City Cop #2,52520,1475089,19 +45802,Dixon,38437,96743,22 +45803,Ned Britt,72474,1009,0 +45804,Maurice Cantavale,13996,1117,5 +45805,Zabava (voice),72204,565314,0 +45806,Gorgeous George,326045,1039258,11 +45807,Kane Markus,100669,42557,7 +45808,,37959,115659,19 +45809,Alice Russell,37315,80255,3 +45810,Nathan Holden,104067,27733,0 +45811,Lana,14207,11024,4 +45812,Trick or Treat Mom,58664,1592512,19 +45813,John Corey,49158,2558,6 +45814,King Sextimus,18506,160263,6 +45815,Kamel Hannah,62630,112429,3 +45816,Karlsson,41493,3853,0 +45817,Christopher Lawrence,7353,64148,7 +45818,Major Mira Killian / Motoko Kusanagi,315837,1245,0 +45819,Elvis Impersonator,109610,1499011,11 +45820,Midnight,29100,102916,8 +45821,Suzanne Cameron,16412,74369,3 +45822,Police Officer,371446,1560337,16 +45823,Soldier (uncredited),205584,1535064,37 +45824,Candy Butcher,42648,68458,8 +45825,Cleaver,193040,1173458,3 +45826,Clay Beresford,13483,17244,0 +45827,A/V Jones,8669,197315,19 +45828,Tom Nolan,339312,1182886,4 +45829,Police Officer Chun,19528,64383,20 +45830,Terry's Jazz Quintet,149509,1432730,35 +45831,,347979,232862,8 +45832,Troupe,19995,1207252,36 +45833,Jack Bratcher,13358,201732,3 +45834,John Cortland,10274,17770,6 +45835,Jay Flagg,175998,34117,2 +45836,Alfred Travers,44902,111664,4 +45837,Todd Chipowski,141733,51383,1 +45838,Max,204765,146359,0 +45839,Jack,204255,221985,0 +45840,Nick Young,192623,121868,2 +45841,Col. Rogers,10841,10158,6 +45842,Robo Joseph,347328,60949,5 +45843,Judge Davis (voice),145316,1559694,4 +45844,fru Slamse,128946,143409,12 +45845,Tyler's Friend,24469,1319617,12 +45846,William Block,34482,79396,9 +45847,Frederick Dallas / Philip Brent,26670,20006,6 +45848,"Soo Lat, the Cobbler",118139,120556,8 +45849,Fidelia,96419,987019,2 +45850,Oncle Hervé,255913,1360579,19 +45851,Homely - Nightclub Waiter,149793,956444,45 +45852,Nelly,46326,35254,2 +45853,,42430,553568,1 +45854,,53767,1879227,14 +45855,,297560,932888,3 +45856,Mrs. Coles,175822,553493,8 +45857,"Mauro, capo rapitori",60014,101131,13 +45858,Manson Follower (uncredited),381737,1848806,23 +45859,Director del colegio,166207,105212,9 +45860,Penny,24578,22811,8 +45861,,51285,143736,7 +45862,Stephanie's Party Guest,31993,98047,36 +45863,Train Announcer,128669,121125,29 +45864,Freddie Strickland,77949,107380,5 +45865,Hartmut Metzger,2169,22190,9 +45866,Joanne Blach,197583,1302829,10 +45867,Mama (voice),12697,73997,3 +45868,Tish,1550,1237353,11 +45869,Eric,30941,1509146,35 +45870,Amos,62033,164974,13 +45871,Amber,35113,37158,4 +45872,Cao Ying,14538,21045,2 +45873,Thornton Alman,221135,40176,2 +45874,Officer Marina Delgado,366045,74361,7 +45875,Princes Regent / Pigmot,51247,41419,4 +45876,Brian Younger,12617,7304,2 +45877,Jennifer,85196,1485207,7 +45878,Cab Driver 2,55846,62262,20 +45879,Photographer (uncredited),31773,1422110,40 +45880,Gary,21619,87718,13 +45881,Jackson,256740,1463206,10 +45882,Ursula,68184,25308,5 +45883,Capt. Rex Morgan,104720,94202,4 +45884,,334298,1174467,10 +45885,Dr. Grace Augustine,19995,10205,2 +45886,Ms. Macintire,68684,1216413,24 +45887,Aku,73099,568080,0 +45888,Jake,241258,1259762,7 +45889,Prefect Rosset,28261,80236,6 +45890,Jury-Mitglied,27637,1724682,12 +45891,Ator,31264,45039,0 +45892,Givanildo,361146,1890681,10 +45893,The Friendless One,3059,8831,21 +45894,Sam,290316,1360309,5 +45895,Himself,376394,1559484,6 +45896,Uncle Pat,380856,65699,11 +45897,Bosley Jr. (as Brook Blake),14262,76497,6 +45898,Ganatus,26581,95694,6 +45899,Elle-même,222297,1294428,4 +45900,Reporter (uncredited),31984,1296557,27 +45901,Dr. Obermüller,10626,66067,1 +45902,Muchacho Poseido,79779,57410,7 +45903,Madame Poulard (uncredited),1976,124736,31 +45904,Witch,250638,69638,1 +45905,Lauren,7515,52854,14 +45906,Nurse,19912,21249,11 +45907,The Silent,128588,44961,4 +45908,Mathieu,4974,381663,6 +45909,Isaac,169800,52603,5 +45910,Erik,270654,110927,4 +45911,Armed Guard of POW's on Ferry,75363,938201,24 +45912,Ed,17956,31032,17 +45913,Marita,51548,145025,0 +45914,Max,179066,34759,14 +45915,Maid,413232,121237,36 +45916,Bernadette,377287,1582026,6 +45917,Telegraph Operator,57201,134171,36 +45918,Omavalitsuse tegelane,321303,137639,12 +45919,Rose,214641,1199349,2 +45920,Koosman,45326,7472,8 +45921,Torrelavega,59117,1423073,22 +45922,Offered Channa,288977,20279,10 +45923,Glader,198663,1415418,24 +45924,Eva Lennearts,73215,87865,1 +45925,Rabal,76198,34588,11 +45926,Yudi Jaitley / Yogi,303281,35747,2 +45927,Henchman Rocky Rockford,186585,120309,7 +45928,Michelin,6935,51500,8 +45929,Fatou,337,6551,6 +45930,Marco / Don José,47959,90318,4 +45931,Tony,39992,311052,1 +45932,SWAT Team,356326,1874728,17 +45933,Catgirl's song writer,45098,1311150,5 +45934,Nurse / Party Attendee / Stage Crew Member / Concert Goer,285270,1367906,12 +45935,,126523,1118307,9 +45936,Lt. Taylor,118283,1367614,11 +45937,Nica,82321,657997,0 +45938,Jean Lavigne,76871,15135,1 +45939,Becca,195022,1180700,8 +45940,Muttering Man,2080,1353642,35 +45941,Turhan,271954,230761,6 +45942,Marthandam,330418,1337015,10 +45943,Mukhtar's Daughter Cemile,74879,928253,6 +45944,Harrison,209401,1835579,10 +45945,May,286521,1518678,28 +45946,,11328,1444495,43 +45947,Adam Weise,296524,1298790,9 +45948,Kyle Hirons,40807,19274,1 +45949,Choreographer,268920,29216,40 +45950,Detective Brown,29805,10734,15 +45951,Rachmaninoff,43491,34279,14 +45952,Hannah Commander,352733,1498619,15 +45953,Back Room Diner / Party Guest (uncredited),22943,89562,26 +45954,"Roderick ""Sugar Boy"" Ellis",1717,17183,8 +45955,Vorsteen,435,37981,25 +45956,Flight Crew Mechanic (uncredited),19995,1207283,67 +45957,Gülnaz's son Adem,74879,1001790,21 +45958,Amber,19551,101624,5 +45959,Admiral's Aide (uncredited),99934,33971,5 +45960,Nathaniel Pietro Barton,99861,1760900,66 +45961,Assistante Charlotte,121936,1818582,7 +45962,Bruland,35405,55636,1 +45963,,104476,11523,1 +45964,Ed (uncredited),80168,229958,13 +45965,Carmina,107916,1042750,3 +45966,The Queen,16135,53768,8 +45967,Tommy Ridders,24023,544030,4 +45968,John Oates,257344,1332369,67 +45969,David,224778,60878,1 +45970,Gerald,194722,1795086,11 +45971,Ion,213842,28848,2 +45972,Audition Girl,24469,1579244,23 +45973,Carole Deford,271664,7673,3 +45974,Simon Keller,256092,3036,2 +45975,Maria Cayetana,96935,25787,0 +45976,Girl in Cabin,30644,106252,12 +45977,China Doll,14414,60033,4 +45978,Archibaldo de la Cruz,37628,177753,0 +45979,Herzog von Nemour,11813,24597,6 +45980,Yakyû Jubei,51890,45992,0 +45981,George Gribbe,33923,95668,17 +45982,Mam Ward,68737,11616,6 +45983,Nicole,244786,129104,2 +45984,Inge Hermann,88176,1028325,4 +45985,Rusty Wells,18682,21457,0 +45986,Lt. Jonathan Hansen,17657,59641,8 +45987,Trixie,284564,1680433,17 +45988,Marie Devrenier,28025,56455,2 +45989,"Sally Trent, aka Mimi Benton",82178,30155,0 +45990,Luc,8276,54274,2 +45991,Joe Fasulo,6948,11357,7 +45992,Gina,13991,203096,8 +45993,Jana,11346,42930,1 +45994,John Stocton,46695,1185381,1 +45995,Fat Willy's mother,5899,27883,10 +45996,Xavi,83481,1443433,3 +45997,Danny Boy Mitchell,107262,18328,2 +45998,Ele mesmo,448763,1036344,37 +45999,Reporter #2 / Fearsome Hand Leader (voice),40662,1128887,19 +46000,Rita,308,4440,9 +46001,Guitarist - Sons of the Pioneers,134238,83395,42 +46002,Ben Ryerson,43250,29363,3 +46003,Abdul,12427,1811523,6 +46004,A Doctor,36519,233117,7 +46005,Munnaa,21570,52763,0 +46006,,343140,550949,10 +46007,Shaw,32610,89013,17 +46008,Marilyn Maxwell,139718,94343,11 +46009,Alexandre,52049,583713,7 +46010,Christian Dior,245775,1045532,15 +46011,Caroline,41073,117413,2 +46012,Tata,21778,132541,1 +46013,Nora,10119,63769,4 +46014,Willie Ray,445727,5620,5 +46015,Rich Kid,306952,1511980,37 +46016,Doctor,37926,119126,12 +46017,Chloe (voice),105965,51992,7 +46018,Guard #1 (voice),59297,1251018,9 +46019,Dr. Gibbs,77012,11172,6 +46020,Billy Elliot,298931,1402303,1 +46021,Octavian,43902,84230,4 +46022,Darwin Policeman,6972,1673478,36 +46023,Giorginha,77137,581228,1 +46024,Professor De Vitis,56804,119354,6 +46025,El Sebas,47211,1401451,3 +46026,Muumipappa,293271,70466,4 +46027,Pascal,5618,38901,2 +46028,Detective William Wu,52395,91387,6 +46029,Vlad,384682,159300,23 +46030,Lewis,64720,1117504,8 +46031,Miriam,42288,127632,5 +46032,Bill San Antonio,41608,4968,3 +46033,Alumna (as Lolita Tovar),28068,72890,3 +46034,Liza Freeman,267483,157234,16 +46035,Jeremi Wisniowecki,31273,2829,5 +46036,Uniformed Cop #1,2001,1232538,24 +46037,Anu,413421,1587857,4 +46038,Spoon,300667,1273248,9 +46039,Knights Templar Martin,17669,81430,10 +46040,Maria,197849,14813,1 +46041,Waits,348544,1486798,2 +46042,Doc Barrow,159128,2536,3 +46043,Morasan,12422,56285,3 +46044,Carol,73565,14226,7 +46045,Simona,82080,88473,12 +46046,Mrs. Harrison,130900,50836,8 +46047,Kurazo Kaneko,18148,30772,8 +46048,Det. Sgt. Gus Forbes,31713,30539,7 +46049,,87204,52398,0 +46050,Pierre,64414,33723,0 +46051,Marvin Williams,3937,30539,6 +46052,Ruth Gordon Jones,98364,14500,1 +46053,,57811,142322,2 +46054,Mrs. Mackinaw,6948,40385,5 +46055,Macduff,225728,16702,3 +46056,Nitrous Guy,13991,1560908,17 +46057,Police Commander Tariq Ali,14076,6497,0 +46058,Carine McCandless - age 11,5915,61555,17 +46059,,408140,1476037,1 +46060,Lounge Patron,46190,121323,15 +46061,George Hastings,26182,120816,12 +46062,Frank Castle / The Punisher,7220,11155,0 +46063,Falafel Shop Owner,246655,1796390,33 +46064,Bridesmaid,335970,1386301,70 +46065,Juan,102668,1031791,24 +46066,Nai Dok,39907,1135338,13 +46067,Lars,250535,4464,13 +46068,Sigyn Erster,55435,81245,2 +46069,Bergmans,147815,544977,2 +46070,Jill,55825,82605,2 +46071,T.V. Watcher,30941,1234009,32 +46072,Durant,313074,10841,5 +46073,Antoine Cortes,260312,49025,7 +46074,Poppy,372640,146342,5 +46075,Aaron Age 5,44115,142183,8 +46076,Pohl,294483,1366983,12 +46077,Mrs. Harold,120357,8515,2 +46078,Gracie (voice),18843,265863,25 +46079,Mrs. Bellagra,10075,62885,11 +46080,Karen,508,7056,2 +46081,Rusty Mars,47342,8190,5 +46082,Old Vincent de Graaf (voice),154972,1167751,10 +46083,Misha,12594,1406778,19 +46084,Merlin,13383,223082,3 +46085,Julia Parry,62033,3340,4 +46086,Dawson's Friend (uncredited),14615,30200,62 +46087,Daddy O,30411,68091,5 +46088,Henry,49853,7158,3 +46089,Clutch Powers (voice),33427,93031,0 +46090,Insurance Man,62761,212522,7 +46091,Sheriff,1659,18403,4 +46092,Pixie Teammate,120802,1818379,21 +46093,Officer Jackson,249021,557592,11 +46094,PC Wallis,1420,10985,17 +46095,Krumme,53693,148724,0 +46096,Tanya,31875,105668,1 +46097,Carlos Vives,16382,80494,2 +46098,,81787,67321,11 +46099,Manni,39436,1448287,5 +46100,Meth Woman,237584,142402,12 +46101,Bridgie Gooding,88012,79356,3 +46102,Bill,44000,175971,8 +46103,Rebel Slave,339408,1622091,32 +46104,Beth Curtis,11137,77794,8 +46105,Twyla,36530,115531,2 +46106,Dave the Lawyer,44754,8177,21 +46107,German Soldier (uncredited),290825,74510,22 +46108,Young German Soldier #1,294690,1390552,32 +46109,Gargiulo,52914,45580,6 +46110,Hungry,375366,1845539,40 +46111,Andre Stander,18927,11155,0 +46112,Kelly,26510,33679,1 +46113,Abdullah,157843,1907142,24 +46114,Claudia,54396,938743,1 +46115,Louise Pazienza,332979,18980,2 +46116,Un jeune,98277,1849108,27 +46117,Josef,80080,588764,1 +46118,Großvater,11440,697,2 +46119,Amanda,82687,83872,7 +46120,Crazy Wolf,35001,19435,7 +46121,Meg Hawkins,83191,1834,7 +46122,Paul,311301,1430483,5 +46123,Emily Barnes,46169,80405,4 +46124,,10484,1261735,20 +46125,Udhra,53883,1171323,1 +46126,Karel Kopfrkingl,18352,73557,1 +46127,Kelly,27941,589182,1 +46128,Candelaria,7220,1837896,23 +46129,Lynne,94568,83463,2 +46130,Doc - Knute's Friend at Kansas City Airport,43812,1240252,37 +46131,Lee Carter,13258,93491,5 +46132,Père Ben (as Stéphane Godin),255913,1316048,16 +46133,Neighborhood Boy,264644,1260011,12 +46134,Dan Millman,13689,41464,0 +46135,Catherine,12446,1356418,16 +46136,Marguerite Gautier,139176,130706,1 +46137,Michelle McAllister,18035,18973,1 +46138,Nurse Carol,65650,154395,19 +46139,Clem,183825,34280,29 +46140,Air Force General,42542,1193679,14 +46141,,37055,1371496,10 +46142,Thomas Morgan,67328,9979,1 +46143,Tarjoilija ylioppilasjuhlissa,101838,1029101,29 +46144,,373200,543877,5 +46145,Emily,302666,49914,5 +46146,Omar's Mother,187028,1728948,12 +46147,'Pondy' Pandi,320910,1123766,1 +46148,Danny James,119364,22092,3 +46149,Kinuko,46492,136383,7 +46150,Theo Lohmann,3577,33043,7 +46151,Christine Hill Cosick,54139,11025,4 +46152,Col. Owen Stuart,139826,522,3 +46153,(Iran),1926,20041,1 +46154,,427095,1473132,3 +46155,Flight Attendant,693,149665,13 +46156,l’acteur comique,92586,994871,9 +46157,Cmdr. Steve Bryce,29416,103782,5 +46158,Paramedic,157829,80427,20 +46159,Ceilia Scott,295723,1378867,9 +46160,,353641,124261,1 +46161,Oscar Åkerblom,41764,55002,15 +46162,Mrs. Parker,11509,235348,21 +46163,Capt. Danbury,29116,4114,3 +46164,Erik Anderson,48333,67247,10 +46165,Grunt,13350,57371,4 +46166,Cleavon,62522,55638,3 +46167,le roi rouge,5590,34583,4 +46168,Cha Eun-jin,21708,69289,0 +46169,Julie,126676,41879,3 +46170,Roll,21138,1113300,12 +46171,Cordelia,68123,1660680,3 +46172,Claudius,125705,2977,4 +46173,Vince Heldon,120932,39601,0 +46174,Love Consultant,170279,561773,10 +46175,The Aviator (voice),309809,1229,0 +46176,Pupslied-Mädchen,140554,1707843,42 +46177,Cuomo,39979,1091539,13 +46178,Hiroyuki Kimura,402455,1640887,29 +46179,Joabs Diener,2734,27658,36 +46180,Paul Beaseley,121354,5833,4 +46181,Herself,366696,1753503,25 +46182,Arlene (uncredited),369524,163664,36 +46183,Harned,147903,20370,14 +46184,Lt. Billy Byron Bix,45522,6905,3 +46185,,134215,979599,6 +46186,Tito Ralph,79372,41750,5 +46187,,41886,1184817,2 +46188,Piroska (voice),89247,938640,2 +46189,Dr. Chamberlain,41301,2320,10 +46190,Kapitan,35428,124757,7 +46191,Inspecteur,4191,3833,14 +46192,Amtrac,16214,76065,14 +46193,Viv,358895,1698008,13 +46194,,327982,226139,3 +46195,Rau-Ru,37311,16897,2 +46196,,65713,1189304,11 +46197,Lawson,11496,14060,1 +46198,Kirby Watts,208529,56128,1 +46199,Mrs. Blount,63315,543,6 +46200,Doon Harrow,13600,45051,1 +46201,Alf Simmons,176627,85897,7 +46202,Mike Lawton / Charlton Black,34151,29092,1 +46203,Zadok,2734,27640,14 +46204,Italian Mule,240832,109335,9 +46205,Kid Skeets' Cornerman,108222,115331,38 +46206,Piper,14843,78197,0 +46207,Nurse,33112,9073,13 +46208,Virginia,277688,12134,4 +46209,Marchese,162056,1137518,12 +46210,Lt. Jacob 'Jake' Cornell,63924,44240,0 +46211,Rita,303636,1431772,11 +46212,Police Officer,300983,120953,15 +46213,Ballet Dancer,310593,1704855,30 +46214,Harry,62684,14637,6 +46215,Garbosh,122709,120537,6 +46216,Père Grano - Antoine,26566,132821,8 +46217,Himself - Roaster,334461,18,6 +46218,Cypress Fat Chinese Guy,15092,88105,35 +46219,Stephen,438643,226371,3 +46220,Agent Smith,26390,6913,5 +46221,Prof. Clete Ferguson,40761,103071,0 +46222,High School Boy / Lord,340176,115700,23 +46223,Colonel Douglas,377170,89729,6 +46224,Maks,31162,96311,8 +46225,Albert 'King' Cole,52437,4091,1 +46226,Zandra (uncredited),215881,1750431,17 +46227,"Second Wife (segment ""Kurokami"")",30959,111235,1 +46228,Themselves,257907,1298425,14 +46229,Doctor,413998,1894992,18 +46230,,293094,1364479,2 +46231,Sentry,115054,1060289,10 +46232,,353641,110777,7 +46233,Supermarket Manager,125063,174710,7 +46234,Towart / Mr. Pratt (as Tom Downey),103433,30067,6 +46235,Mr Stack,14666,3266,0 +46236,Professeur de surf,85735,563371,11 +46237,J.B. Pond,120747,8841,2 +46238,Minoru,216363,553083,3 +46239,Jim Caldwell,94671,3087,5 +46240,Bride,12855,81494,11 +46241,Ricardo Díaz,264525,937314,4 +46242,Krebs,40990,2778,0 +46243,Edmond Rambert,77776,146722,3 +46244,Chris Summer,13713,74110,7 +46245,Slim Gordon,8915,56262,2 +46246,Narrator,94480,15625,5 +46247,Connie Brooks (uncredited),28433,15532,11 +46248,Ryan Stone,321039,963818,0 +46249,Agente (Detective),29338,100317,7 +46250,Chalmer,37672,103733,2 +46251,Münire,139272,1110445,1 +46252,Marvin Montrose,33005,27176,0 +46253,Japanese Samurai,256962,1819134,65 +46254,Proctor's Avatar,49524,188049,17 +46255,CW Walker,50875,16861,3 +46256,Tommy McGuire,10804,104758,8 +46257,Captain of KTX,396535,17127,8 +46258,Hughie,4931,69494,8 +46259,Rodney,70587,236302,12 +46260,Dr. Garver,12617,40623,13 +46261,Harry James,43546,1227384,20 +46262,Soong Ching-Ling,25626,78879,7 +46263,Krankenwagenfahrer,177979,51827,6 +46264,Narrator (voice),382501,113388,9 +46265,Nonna Anna,42892,129111,7 +46266,"Magga, tjenestepike hos Lind",77922,1196410,8 +46267,Josh,157424,208406,4 +46268,April,85350,1298785,52 +46269,Giant Tokyo Joe,256962,1381475,51 +46270,Nan,64215,1354321,2 +46271,Concubine #1,1271,1330759,56 +46272,Jean-Michel,145191,1122424,1 +46273,Jill Conway,45335,133001,1 +46274,,59572,14852,4 +46275,Shite,20530,131023,14 +46276,Shukichi Somiya,20530,33135,0 +46277,Rie Koizumi,37213,117068,6 +46278,Fender,409447,1295541,14 +46279,Old Woman Near the House of Death,24973,553634,57 +46280,Sister Margaret,27414,91981,1 +46281,Hayashi,51581,554496,11 +46282,David Lloyd George,245168,383624,10 +46283,Solo,356482,92748,6 +46284,Ross Maddin,13241,1879796,6 +46285,Sgt. Ben Draper,27739,98851,3 +46286,Le caissier du cinéma,53404,1664224,19 +46287,la Chauve,4279,35253,12 +46288,Captain George Bisset,352733,145143,1 +46289,Jim Hudson,28681,101620,1 +46290,Spectator,339419,1650194,47 +46291,The Fox (voice),309809,17051,4 +46292,Maresciallo carcere di Sagunto,73827,387731,8 +46293,Guest at the birthday party,39284,213508,13 +46294,Bound Man,9828,532,3 +46295,Sheila,82191,593169,6 +46296,Celia,19103,6979,2 +46297,Leo Colston,36194,7640,3 +46298,Plain Maid,156711,1349727,20 +46299,Wendy,68684,963849,22 +46300,Pledge Two,59738,170955,21 +46301,Deputy,388243,399681,7 +46302,James A. Michener,91477,4343,2 +46303,Captain,63273,93679,8 +46304,Gertrude Biggley,22682,40233,15 +46305,Nancy Graham,61151,13978,6 +46306,Brianna,15019,58150,3 +46307,Stanislav,15303,38130,8 +46308,Ernie,36335,199070,13 +46309,Sergeant,28090,105087,28 +46310,Violente,49712,32827,12 +46311,Dist. Attorney Frank Lalor,17136,2669,2 +46312,Rahul Abhi,352025,1108337,5 +46313,Danis Mutter,311301,1197143,12 +46314,Himself,306598,1643329,1 +46315,Billy,56264,58000,5 +46316,João,48962,230579,1 +46317,Penny Pingleton,2976,29220,7 +46318,Officer,24973,83912,36 +46319,Laura,339419,1650191,17 +46320,Vadim,132759,101440,1 +46321,Harry Thompson,36334,11033,5 +46322,Wyatt,184345,1286744,7 +46323,Eve,15534,7571,3 +46324,Father,108723,1446330,8 +46325,Hurley,45800,1208904,12 +46326,Darryl Virostko,291,4335,13 +46327,Thug Set On Fire,45132,9567,43 +46328,L'avocat de Thérèse Desqueyroux,110323,38529,4 +46329,Donna,413417,1719087,12 +46330,Kelly La Fonda,13173,1920,3 +46331,Friday,342588,1325230,0 +46332,Demonic Woman,310119,1507371,5 +46333,Sara,393263,1606982,2 +46334,Iris,84355,5081,1 +46335,Dave Reichert,46121,59216,0 +46336,Svetlana,1690,33937,4 +46337,,85656,929312,8 +46338,Dr. Turner,401060,1224620,7 +46339,Sergeant Morrison,263855,929065,13 +46340,Laura Cade,27941,1099653,6 +46341,Teenage Kit,290762,1523657,16 +46342,Captain Turner,44690,87119,11 +46343,Louis Foral,29577,97284,5 +46344,Extra (uncredited),323675,1769821,66 +46345,Jorge Garza,51823,1271,1 +46346,Rosamaria,34672,6329,3 +46347,Detective Drake,419430,1704613,18 +46348,Officer Martinson,142402,1117083,14 +46349,Sally,405473,135436,12 +46350,Joy,78571,3127,6 +46351,Armigero,61217,1615572,24 +46352,Vinah,86413,1054256,1 +46353,Maréchal Bazaine,78318,8841,5 +46354,Guest (uncredited),43491,83988,15 +46355,Python,18899,71655,8 +46356,,74481,35795,14 +46357,Randy Bardone,98203,1085215,20 +46358,Housekeeper,174925,148802,14 +46359,Preacher,78364,99043,11 +46360,Steve Breaker,37935,121492,7 +46361,Santa Claus Auditionee / Himself,430826,1891555,63 +46362,Dave,426230,61110,2 +46363,Billie Jo Truluck,84450,1030289,1 +46364,"Hilda, the Maid",42288,9072,7 +46365,Kelly,185460,87669,0 +46366,Simmons,38356,1241,8 +46367,Capt. Toshio Muramatsu,418029,119185,1 +46368,Spectre,36960,1598800,18 +46369,Thug,25425,1175330,9 +46370,Paul Barons,108282,29282,6 +46371,Grant Matthews,33792,12147,0 +46372,Zelda,291164,71443,4 +46373,Young Luke,35026,1653237,12 +46374,Le garçon en boîte de nuit,51971,1730828,15 +46375,,44238,1055118,4 +46376,Dr. Fernandez,10710,156731,27 +46377,Delaney,65156,13298,6 +46378,Steve Daniels,38460,120713,2 +46379,Xu Kun,70057,1174659,5 +46380,Armourer,343173,1504934,7 +46381,Mother (voice),310135,15580,41 +46382,Cowhand,183832,1106954,17 +46383,Olo,68634,591428,2 +46384,Paddy,137093,380,0 +46385,Chief Tomahawk,33541,30298,58 +46386,Mr. Lerner,18165,1264610,3 +46387,Turco,41115,125500,8 +46388,Francis,4538,887,0 +46389,The Rhapsode (Babylonian Story),3059,8838,14 +46390,Cappy (voice),9928,4587,2 +46391,И. И. Сикорский,419601,1190374,2 +46392,Yûsuke Shima,143946,228547,5 +46393,Viago,246741,55934,1 +46394,Fan Shiou Shiou,107891,1178497,1 +46395,Sretensky,126523,545817,6 +46396,,248747,23440,6 +46397,Detective Tom Wyatt,66193,963313,13 +46398,Trojan Horse (voice),378236,12080,28 +46399,Scotty McKay,55694,64057,0 +46400,Johannesburg Elevator Passenger,99861,1665609,43 +46401,Muscle Man,92496,1787175,35 +46402,Capt. Count Alexei Vronsky,120831,98045,1 +46403,Student #1,14207,554413,11 +46404,Abby,403570,1667885,14 +46405,Ben Zachary,6643,13784,0 +46406,Eliza Beckett,348507,171472,5 +46407,Yang Kenan,413198,940339,0 +46408,Walter Bancroft,115616,135180,7 +46409,Reporter at Weigh-In,332979,1643247,17 +46410,Priest,138222,57428,7 +46411,Juan,221135,111214,6 +46412,Louie,440508,8396,9 +46413,Banger,263115,1691470,56 +46414,Wife,108017,1210028,6 +46415,El Greco,354979,1035,20 +46416,Janice,86363,4301,1 +46417,Homeless Man,216374,1116237,6 +46418,Himself,390747,1662629,8 +46419,Gruber,28367,2782,8 +46420,Kayako,11838,20329,11 +46421,"camionista ""manesco""",43646,50745,8 +46422,Maria,86234,1175069,3 +46423,Hotel Proprietor,39048,14435,6 +46424,Matron,35404,105462,16 +46425,Farah,332827,1061909,5 +46426,Billy,44921,20099,3 +46427,Police Captain,193893,1264,63 +46428,,320453,130654,4 +46429,Waitress,277710,1557951,32 +46430,Cheikh Yamani,43434,1117776,16 +46431,Achille,187252,1200310,1 +46432,Mr. Chong (uncredited),6081,166254,15 +46433,Marie,58133,227408,1 +46434,Tarô Furukawa,143946,213469,18 +46435,Sherry Griffen,92562,981014,3 +46436,Oracle Girl,1579,1331667,30 +46437,Eric Naiburg,19754,80874,3 +46438,Bill 'Billy' Rockne - Age 2,43812,1102098,44 +46439,Police officer,381645,1198941,25 +46440,sultán,41213,73557,7 +46441,Javier,306966,1146042,6 +46442,Ellie Stormgren,373977,208294,3 +46443,Waitress,19423,58393,7 +46444,Rosie,35052,968291,5 +46445,Ambitioso,23750,25657,7 +46446,assistant de Jacques,34840,96416,11 +46447,Sharon,352498,21063,3 +46448,James Bradley,124527,109846,0 +46449,lui-même,43457,585142,7 +46450,Theodore,174751,208061,11 +46451,Doris Dunstan,22968,9071,4 +46452,Thomas,17654,13094,11 +46453,Principal Roy,75090,58528,6 +46454,Poolboy,70863,51965,0 +46455,Mangcha-ngai,39907,228629,8 +46456,Isabella Gomboli,41552,96139,2 +46457,Blonde (uncredited),17136,91655,27 +46458,,47508,150167,8 +46459,Extra at Train Station,43812,931793,66 +46460,George,98864,28048,4 +46461,Mrs. Helen Chernen,36612,46617,0 +46462,Mr. Pinky's Customer,2976,1486424,105 +46463,Vladimir Gaidaroff,91480,14435,3 +46464,Sheriff Ed Lowry,37534,43902,15 +46465,Dr. Marion Kang,6145,48138,13 +46466,Seaman Rocky Haggerty,257081,74876,7 +46467,Jake Delton,13842,16475,6 +46468,Melody Perkins,48207,140028,1 +46469,Female Ranger,157152,62551,6 +46470,Douby,93457,1085539,9 +46471,,292830,227326,3 +46472,George Statler,43913,71770,3 +46473,Mamy Rose,110160,59614,17 +46474,Mohand,162374,231278,1 +46475,Barmaid,122221,82495,8 +46476,Nanny,91583,40163,3 +46477,Stan's Daughter,27432,143440,3 +46478,Stacey,48207,1546354,5 +46479,Te Kai Po,24671,7242,4 +46480,Thomas,5618,44401,6 +46481,Martin,156711,105584,2 +46482,Amber,18467,20354,1 +46483,Proprietor,9542,98928,12 +46484,Thomas 'Thom' Whitney,48706,537,3 +46485,Michelle Vaughn,11358,31029,3 +46486,Cammie,406052,1653233,1 +46487,Jarnsaxa,63736,18920,1 +46488,Michael Jordan,60457,46921,0 +46489,Pilot,52122,78776,13 +46490,Scott Summers / Cyclops,2080,82094,10 +46491,Judge David Davis,161187,149684,14 +46492,Brenda Klein,75537,83338,1 +46493,Paco,22136,16972,0 +46494,Capt. Suzdalev,94696,99311,1 +46495,Naomi,150117,6613,5 +46496,Office Receptionist,304372,1079850,28 +46497,Anders,24821,77981,14 +46498,Jim,9474,108279,4 +46499,Annoyed Mandarin Guard,68721,1228523,62 +46500,Lick Me-Bite Me,9899,10386,8 +46501,Himself,15258,7167,67 +46502,Jamie,61644,1168998,4 +46503,,42852,956213,36 +46504,,121173,1019159,1 +46505,Mrs. Hardcastle,81120,92698,3 +46506,Rick Kulhane,55505,56117,1 +46507,Zala,61988,1384168,8 +46508,Falso Ursus,296491,22477,1 +46509,Bizan,45384,70210,2 +46510,Eris (voice),14411,1160,2 +46511,Martha,191322,3270,7 +46512,Col. Taylor,35001,95010,11 +46513,Emma,438643,1750513,1 +46514,Auntie Whispers,409696,13472,7 +46515,Spanischer Artist,94803,1565959,8 +46516,himself,73241,18626,9 +46517,Band at Red's,57201,1760474,57 +46518,General Lew Wallace,183832,3245,26 +46519,Jean,19688,210355,4 +46520,Ciccio Barrese,205349,53462,1 +46521,Steve Buchanan,102144,13784,0 +46522,Tanigawa Yoko,31254,1088656,2 +46523,Mr. Stewart,17306,988593,14 +46524,cameriere,38286,1858436,11 +46525,Mrs. McGarrick,86825,17184,7 +46526,Luutnantti Sirola-Kuortti,55759,223077,5 +46527,Conway,398137,3911,4 +46528,Vera Flood,77949,185464,10 +46529,Lobo - Leader of the Wolf Pack,89647,1135598,0 +46530,Willard Snarp,31146,1841263,18 +46531,Captain Wu,219572,120725,3 +46532,Jake,37932,119151,3 +46533,Car Salesman,64807,990136,7 +46534,Wolfgang Krettek,202183,1088,1 +46535,Anne Dillon,65603,21519,2 +46536,Del Bennett,166393,1147893,1 +46537,Geneviève,51971,145087,10 +46538,Helen Coltrane,26293,4766,0 +46539,Tom,395982,2959,4 +46540,Beatrice,195544,223621,3 +46541,Dwight,9472,1214427,8 +46542,Yen Ching Wan,108665,240174,1 +46543,Young O'Donnell,37254,117194,16 +46544,Emine,31405,121423,5 +46545,Eric (as Blake Griffin),179154,1169339,8 +46546,James,101242,21960,2 +46547,Julie Oliver,61348,167604,5 +46548,,73628,221658,7 +46549,Hamlet,28238,20049,0 +46550,Son,116979,1835161,12 +46551,Capt. Ben Williams,4931,12310,10 +46552,Jean Preston,23340,86104,1 +46553,Taxi driver,96132,1195196,19 +46554,Ballroom Dancer,16175,79916,22 +46555,un operaio navale,43548,101556,22 +46556,Des,122843,150864,12 +46557,Ambrosia,7096,8226,12 +46558,FBI agent #2,58918,1577018,17 +46559,Chiaramonti (barrista),62713,225258,7 +46560,Olif,47956,150223,7 +46561,Amos (voice),13956,1062,8 +46562,Queens Guard,297762,1824295,48 +46563,nattvakt,37731,112853,12 +46564,Thierry Taugourdeau,329712,5443,0 +46565,Himself,96252,579763,4 +46566,Pastor Bill,50875,52020,9 +46567,The Ace,76341,1734173,23 +46568,Loki,8471,48,2 +46569,Dion O'Leary (as a boy),78734,14874,20 +46570,Hunting Buddy,24420,91607,36 +46571,Zoran,49009,129565,2 +46572,Policeman,13436,1656901,40 +46573,,137072,114252,0 +46574,Cathryn Farrell,44265,56551,2 +46575,Clayton,30640,7384,4 +46576,Alys,3145,30765,2 +46577,Dr. Crawford,294254,1446097,25 +46578,Klari - Maid,53851,104199,7 +46579,Skootch,343934,452205,7 +46580,Irene,141241,8768,2 +46581,Frau Dutschke,279090,1205757,3 +46582,Shoaib Khan,42966,85969,1 +46583,Rafal Olbromski,149511,7107,2 +46584,Dan Lane,30289,1222596,4 +46585,Cabaret Doorman,264309,1050210,12 +46586,Carlos Jr.,60173,230666,8 +46587,,314285,50314,5 +46588,Tracy Scott,114779,12041,0 +46589,Clip from 'Seven Brides for Seven Brothers' (archive footage),33740,6725,64 +46590,TV Commercial Director,5516,17305,14 +46591,Indie Girl,320588,1538582,36 +46592,René,427095,1286985,6 +46593,Vater Loco,75969,20619,18 +46594,Mr. X,86497,1026170,5 +46595,Carlita,335145,21215,7 +46596,Joshua Judd,184267,28971,2 +46597,Chaani,402672,587753,2 +46598,Constable,109716,103185,29 +46599,"Dorothy Waters, Charles' Nanny",14589,14683,5 +46600,Lucy,10201,64154,3 +46601,Fred,447758,1782025,25 +46602,Deputy,103432,158868,9 +46603,Storekeeper,79735,34365,14 +46604,Undetermined Secondary Role,186227,1419560,25 +46605,Mrs. Slater,40229,1434839,7 +46606,,54858,1136762,2 +46607,Vossellin / Monseigneur,29259,103398,3 +46608,Volodya,449131,223907,3 +46609,Singing Trio,229221,1282627,10 +46610,Major Rufus Cobb,43821,40180,3 +46611,Journalist,169656,69823,12 +46612,Timmy Wynn,72638,18805,9 +46613,Libby's Grandmother,7942,119906,25 +46614,Himself,14923,1386355,44 +46615,Pink Merfairy,13285,51800,13 +46616,Arthur,26517,11161,4 +46617,Bernard Goulain,109261,544669,8 +46618,Scott,16921,65831,4 +46619,Josiane Lambert,260312,150901,5 +46620,,49446,142315,2 +46621,Deputy Marshal,147829,30206,38 +46622,Phillip Bedford,94671,56614,3 +46623,Narrator,180383,10565,1 +46624,Police Patrolman,250332,120473,65 +46625,,36674,931785,2 +46626,Elizabeth Mitchum,22681,55463,1 +46627,il regista,142320,229573,7 +46628,Hooker,31867,6172,11 +46629,Moroccan Son,29101,1516713,27 +46630,Franziska Feldenhoven,204384,7152,4 +46631,Graham Friese-Greene,80596,133501,8 +46632,Agent,298396,1531317,10 +46633,Lord Glozell,2454,17839,10 +46634,Karaba (voice),21348,87424,3 +46635,Lorry Man,16182,79936,19 +46636,Arthur Brownlow,79833,185460,7 +46637,Lawrence (voice),10198,163711,6 +46638,Henry Turner,285,61259,24 +46639,Bagdad,96333,8874,1 +46640,General Hans Krebs,47536,9920,2 +46641,Joey Stewart,33224,12310,4 +46642,Martin Wolf,204965,7156,0 +46643,Molly,32868,109741,7 +46644,Adam,16047,1147079,1 +46645,Il Finard,31542,1037927,11 +46646,Amy,77964,48960,7 +46647,Li Huang,25626,1562576,20 +46648,Advocate Krishan Pundit,20296,72118,0 +46649,Bride,28068,97663,7 +46650,Father of Sara / Jess,329440,1051263,27 +46651,Kimble,28741,101814,2 +46652,Capt. Corcoran (uncredited),13911,144127,8 +46653,Norah's Mom,50780,944116,6 +46654,Witchiepoo,63859,112821,3 +46655,Remy LeBeau / The Gambit,2080,60900,6 +46656,Fifi,340275,1531602,40 +46657,Dan,43809,1196675,15 +46658,Busker,9993,75270,23 +46659,Liselotte,2180,22333,4 +46660,Spitznase,217412,1175687,19 +46661,Zee,83899,168529,2 +46662,Blake,75101,1523987,6 +46663,Range Officer,28090,99880,27 +46664,Mike Talman,11206,16554,2 +46665,Cousin Ben,83666,17881,10 +46666,Ted,111017,31896,6 +46667,Marie's mother,20108,1614868,6 +46668,Jude,244534,1445602,5 +46669,Jebediah Woodley Snr,405882,1783661,14 +46670,Bob,64934,585170,5 +46671,Muhittin,4887,40021,4 +46672,Sally,254047,91724,5 +46673,Blackie Martin,22606,89011,5 +46674,Zebulon Prescott,11897,9857,4 +46675,Keje,126560,1246603,2 +46676,Prince Louis (voice),23566,59311,8 +46677,Fire Maiden,31280,1452393,10 +46678,Boduri,118408,46364,0 +46679,,283701,50,4 +46680,Sgt. Sean Quinlain,139826,186898,7 +46681,Nurse Knight,401222,1653712,8 +46682,Carmelo Privitera,60014,240914,11 +46683,Baldur í Hvammi,72596,236792,27 +46684,Deputy,25674,199143,12 +46685,Guildenstern,48209,1061875,7 +46686,Mann (voice),9551,1515686,11 +46687,Sandra,448763,1848645,8 +46688,Fyffe,32921,95943,13 +46689,LaRhette,12763,60033,2 +46690,Maj. John Andre,208434,20392,1 +46691,Commissioner Ruddy,2001,1577096,30 +46692,Carroll Caldwell,94671,4724,0 +46693,Iris Warns,93828,53367,7 +46694,Sam,104146,26042,0 +46695,Anna,380731,1453856,1 +46696,Hogan,75595,2203,3 +46697,Harry Melchior,3577,1086,0 +46698,Ana,15156,37046,2 +46699,George (uncredited),27035,9096,10 +46700,Kitty,37935,121489,3 +46701,Policeman,64928,34187,24 +46702,Bartender,118889,121250,60 +46703,Reporter,348320,1428280,22 +46704,Claire,16523,113495,7 +46705,Giggling Girl,222935,1672074,28 +46706,Cameriere,61799,1851877,5 +46707,Fanny,167810,1287978,11 +46708,Erland Jansson,34181,558254,8 +46709,Professor Richard Wanley,17136,13566,0 +46710,Bachelor Party Guest,71670,933577,32 +46711,Sophie,173294,40639,6 +46712,Court Lawyer,371645,1622077,17 +46713,Mom Pirandello,44801,1216876,2 +46714,Fungus (voice),62211,7908,22 +46715,Robin,38317,1431853,17 +46716,Mother of Manuela,121510,20887,4 +46717,Female Student in Office,273896,1568214,6 +46718,Candy,187010,102695,1 +46719,Birthday Girl,77930,177918,20 +46720,Man in Ship's Engine Room (uncredited),51303,14425,8 +46721,Policjant,314371,549376,28 +46722,o. A.,3102,30406,1 +46723,Derval Dove,82191,593168,4 +46724,Obi-Wan Kenobi (voice) (archive footage),140607,12248,58 +46725,Club Goer,306952,1511955,8 +46726,Cassius Cadwalader,172443,1796926,4 +46727,Peter,128856,8796,0 +46728,Nurse,259292,138471,11 +46729,Miri Calderone,44511,15441,0 +46730,Driscoll,29805,262950,19 +46731,Charlotte,86709,933581,11 +46732,Mr. Musha,7459,9195,8 +46733,Thomas,198663,527393,0 +46734,Arletty,73532,5999,1 +46735,Monsieur Hulot,52264,145680,7 +46736,Boris,391757,92285,6 +46737,Clarence Monroe,13680,74931,7 +46738,Tristan,360924,82094,2 +46739,,68715,552655,14 +46740,,69619,143933,11 +46741,Mr. Carrington,44875,33278,6 +46742,Burke Devlin,38432,18735,0 +46743,Ahmad,37181,229933,1 +46744,Lisa,90992,61134,1 +46745,Marjorie Carter,53622,89681,1 +46746,Kenjiro Ota,61984,1129849,14 +46747,Raul (voice),65759,4992,5 +46748,Ruth,47525,134608,7 +46749,Rosa,27034,96818,9 +46750,Sacha,366548,1308759,1 +46751,Jane,3061,29988,3 +46752,Korean Train Passenger,99861,1590327,52 +46753,Lt. Ethan Sears,37311,34981,3 +46754,Keith Ellis,7233,52118,5 +46755,Father (voice),310135,1528987,42 +46756,,252096,121780,2 +46757,Infant,52437,1435080,21 +46758,Zeki's father,175331,1047658,6 +46759,Detective,127812,120472,15 +46760,Committee Man,14669,235346,6 +46761,Sergeant at Cottage,1116,219711,57 +46762,Alice,67977,1292143,3 +46763,Jane / Joan Vollmer,83770,9273,3 +46764,Philomena,366566,20235,13 +46765,Major Mike Norman,45562,4789,3 +46766,Staefel,42852,4112,4 +46767,Capt. Frank Matthews,150338,1933,1 +46768,Cute Girl in Park,14142,84899,11 +46769,,202239,238695,1 +46770,Dr. Elizabeth Shaw (uncredited),126889,87722,19 +46771,Alva,31867,51998,9 +46772,Wade's Daughter,53358,1384205,10 +46773,Shatner (uncredited),11206,1547962,12 +46774,Napolitana,81541,78676,10 +46775,Mary Jane Braley,229221,34244,5 +46776,Lady Amelia Heartwright,156711,73462,5 +46777,Toto - French Girl,150712,89746,51 +46778,Salesman,3563,66070,27 +46779,Dr. Jonathan Steele,3580,81681,10 +46780,Man,85196,42142,9 +46781,Tonino,403450,1357168,18 +46782,Mike Beardsley,27983,21561,8 +46783,Tymergo Video Technician,24775,1107806,3 +46784,Rakhat (voice),292014,1404562,4 +46785,Son,310119,1034681,4 +46786,Totenbeschwörerin,2734,24241,21 +46787,Castillo,82,8689,17 +46788,Fred,159514,43719,2 +46789,Good Buy Customer,428687,1776842,19 +46790,Ataru Moroboshi,43967,85286,24 +46791,Paige's Palm Springs Doorman (uncredited),121003,1670560,11 +46792,General McKennon,146216,58169,35 +46793,Herself (Archive Footage),448449,8851,1 +46794,Joan,80720,1672452,32 +46795,Greg,277710,1105079,37 +46796,Paul,84449,968746,7 +46797,"Miss Maxine Chambers (segment 3 ""Mr. Steinway"")",41035,122922,14 +46798,Connie Mason,39219,126912,6 +46799,Police Officer,145135,21882,16 +46800,Haussman,112304,2505,10 +46801,Lily,42944,84299,1 +46802,El Caribe Bouncer #2,2001,1253648,52 +46803,Srinivasan IPS,15761,82732,0 +46804,Gypsy Child,16182,79938,22 +46805,Sven,8965,34398,13 +46806,Scipio,113743,34748,9 +46807,Wayne Morgan,30022,95623,2 +46808,Julio Mendez,222619,110141,3 +46809,Daniel,345922,215843,15 +46810,Bastien,77338,1069637,13 +46811,Simon,13534,10961,2 +46812,Tom Lea,400174,1244,7 +46813,The Drover,6972,6968,1 +46814,Mr. Davis,18843,114896,14 +46815,,19812,84244,11 +46816,Odo,78028,1239887,11 +46817,Native Mother,76084,1213880,8 +46818,Kay Matheson,12407,51072,4 +46819,Pauline,91070,22223,12 +46820,A Rugantino's friend,50196,129589,3 +46821,Sydney,336004,7517,2 +46822,Alex Verona,15092,962169,57 +46823,Aonung,76600,1632658,15 +46824,Willie,270774,1244801,3 +46825,Chairman Itakura,13391,1120526,14 +46826,Franz Maurer,18575,144972,4 +46827,,11196,3921,25 +46828,Baby Orville,43753,129806,13 +46829,Jonas Muller,9389,65,4 +46830,,76202,27163,1 +46831,Doc Shelby,70695,1240,13 +46832,Dolores,53622,148616,2 +46833,Violette,70989,64210,0 +46834,Uncle Cheung,56329,56804,3 +46835,,121173,557552,4 +46836,Lord Trench,241374,29816,4 +46837,Batty Boop,61716,104458,1 +46838,Invitée,85883,1293917,13 +46839,Mrs. Martin,27973,13996,6 +46840,Peter,405670,1647916,2 +46841,Eleanor's Maid,43821,399224,52 +46842,Arianna,7511,6407,6 +46843,Sharma C.S.,55283,565890,5 +46844,Pasquier,38883,239335,8 +46845,Clairvoyant,28131,30900,12 +46846,Emmy Harwood,78362,135532,2 +46847,Maria - Fortune Teller,28438,33277,3 +46848,Christine,33095,76827,6 +46849,Dr. Ronnie Robinson,86979,935943,8 +46850,Mrs. Herriton,59704,8926,3 +46851,Mari,166207,1396351,2 +46852,Waiter in Bar,132928,1176510,30 +46853,Lally,84097,101995,3 +46854,Billie Joe Robbins,189888,2547,2 +46855,Mayken,57829,1886759,14 +46856,Vincent 'Mag Doll' Coll,3556,32786,0 +46857,American Bar Singer,119801,5828,12 +46858,Secundus,37926,20761,1 +46859,Narrator - Peru (voice),173205,3136,4 +46860,Toilet Victim,27814,1856474,9 +46861,Marta Boman,76380,573780,6 +46862,Himself,15258,1211,51 +46863,Jane,38031,6973,21 +46864,,64328,6167,44 +46865,Nina,297762,1831283,33 +46866,Prisoner (uncredited),337339,1635140,46 +46867,Lou,96132,1195193,16 +46868,Marny Clifford,31018,2958,9 +46869,Constable Charles Baron,172908,47569,6 +46870,Elizabeth,124470,483255,3 +46871,Vivian Patterston,147132,1292329,6 +46872,Dr. Welbeck,32082,15413,3 +46873,Mo,71668,62019,10 +46874,Erik - Age 12-16,96011,1137592,1 +46875,Luis Eduardo,361146,1890679,8 +46876,Female Tourist,54318,1293766,17 +46877,Himself,324181,1450196,13 +46878,Ordgar,45988,39661,2 +46879,Olle,261112,1479334,6 +46880,donna debitrice,53486,36322,10 +46881,Istvan Thurzo,8316,3872,2 +46882,La Taupe (voice),356161,82288,4 +46883,Goro Yoshida,116303,120351,2 +46884,Paula Faldt,325133,54708,7 +46885,Darlene (voice),27300,821,4 +46886,Nella,110381,132429,1 +46887,Captain Holmes,46436,54858,14 +46888,Herself,105583,1704439,2 +46889,Street Sweeper,206647,1599254,40 +46890,Young Emily,413417,1528935,14 +46891,Narrator (voice),406431,1269,1 +46892,Scott Joplin,142984,3799,0 +46893,"""Kinia""",382155,6705,16 +46894,Mr. Henry Fenner (voice),10198,1001821,16 +46895,,248211,85047,0 +46896,Leslie Winslow,37935,15274,6 +46897,Nick Avery,70151,53010,4 +46898,Extra,365339,1538171,5 +46899,Miss Dickinson,10748,17286,4 +46900,Littlefoot,24556,91785,0 +46901,all characters(voice),193216,565332,1 +46902,,48882,545794,7 +46903,Deputy Larry Brewster,29058,41250,3 +46904,Aiko Ozaki,36063,127228,8 +46905,John Durbeyfield,101915,67213,4 +46906,"Beth, Girl at Bar",30034,19109,4 +46907,Chris the Postman,311291,61939,9 +46908,Pai,25855,1489159,8 +46909,Peregrin Took,1361,16419,8 +46910,Shaina,280690,95505,14 +46911,Lady Camdon,226354,183201,6 +46912,Lila,17457,78429,3 +46913,Fletcher,84352,199884,5 +46914,Soldier #1,187028,1728943,7 +46915,Additional Voice (voice),177572,1502449,36 +46916,Other Moving Guy,14301,1757176,16 +46917,Billy's older self,298931,1402307,6 +46918,Boy in the basement,229182,1600084,8 +46919,Big Little Man,69152,45580,7 +46920,Dennis Morgan,32552,33022,0 +46921,PFC Bill Leyden,189197,32205,8 +46922,Commander Armstrong (voice),13956,1244864,16 +46923,George Devlin,3024,656,2 +46924,Ercole Visconti,5183,41957,2 +46925,Boatman,95177,939592,3 +46926,Don Blake,27036,96850,1 +46927,Reporter #2,312221,1746877,24 +46928,Tupac,371645,1671693,21 +46929,Simon Graham,616,9191,8 +46930,French Promoter,17978,4121,13 +46931,Czeremis,31273,107890,37 +46932,Andrew,93935,150999,13 +46933,Captain Donald 'Doc' Harvey,875,13340,1 +46934,King Henry II,188357,56890,0 +46935,Bad Horse Chorus #1,14301,76531,4 +46936,Tash,16197,79966,1 +46937,,288694,1194407,12 +46938,Nightclub patron,43113,1060036,59 +46939,Yeon-Hee,31850,567783,1 +46940,Maria,167073,1840446,23 +46941,Gene,156597,1427460,16 +46942,Mayor Tuvache,45184,24826,8 +46943,Thomas,334299,28675,3 +46944,Skipper / Lemur (voice),10527,18864,12 +46945,Leela Raghunath,39039,121865,1 +46946,Eyal Spivak,393521,68050,1 +46947,Bellows,317182,123797,9 +46948,Ugo,38289,71296,3 +46949,Belinda Pascoe,413998,1163053,11 +46950,Newspaperman,3782,1481109,28 +46951,Madison (Diatryma Girl) (voice),8355,1239793,14 +46952,Kitty,22387,84635,3 +46953,King,109466,60656,4 +46954,Byong Sun,9981,61402,9 +46955,Allan Simonsen,5177,41907,7 +46956,Meg Brockie,18283,26148,12 +46957,Constable Hogan,425774,1707951,59 +46958,Alison,44960,1378430,1 +46959,Mr. Duncan - Middle-Aged Man (uncredited),33112,122984,24 +46960,Yacht racer,348320,1869096,26 +46961,Marge Meehan,212756,1296186,5 +46962,Ylva,360249,1648972,14 +46963,"Helen, the Child",193959,1047595,2 +46964,Regan,72638,1230787,31 +46965,Álex,8088,44266,14 +46966,Dirk,61552,36463,9 +46967,Mattie,44190,130420,4 +46968,Manager of New England Telephone Exchange,67375,120476,45 +46969,Tomasso,37719,10800,2 +46970,Ahmed,7445,1862746,19 +46971,Bridgette,252680,968429,6 +46972,Nikich,62616,235607,2 +46973,Kate,34796,222574,1 +46974,Andrzej's lover,133521,1120450,5 +46975,Narrator / Father (third telecast),23544,85199,10 +46976,Mr. Tompkins,56154,99468,43 +46977,Timmi-Jean Lindsey,19850,42335,5 +46978,Mic,286657,1353940,6 +46979,Nurse #1,25941,1835481,17 +46980,Dylan,47462,32205,3 +46981,Dr. Charles Girard,100661,13906,0 +46982,Esquire,13960,66526,2 +46983,,289679,41779,3 +46984,Sami (Papun veli),148478,1120421,8 +46985,SHEARS,191850,1533263,2 +46986,Himself,234155,1624808,5 +46987,Ron Nasty,16378,70624,1 +46988,Newscaster,58244,1674587,44 +46989,Wendy,384682,1718320,30 +46990,Tang Sing,182127,132739,3 +46991,Angie,277710,1557952,33 +46992,Partygoer on Boat,348320,1504368,33 +46993,Frank O'Connor,298695,42566,7 +46994,Tango Dancer (uncredited),37581,1620022,10 +46995,Hazel Scott,48959,78952,1 +46996,Sal Sachese (scenes deleted),88375,19968,8 +46997,Minor Role,43806,104714,51 +46998,Karina,153781,1138756,1 +46999,Salesman,41599,107434,9 +47000,Gareth,65579,51120,6 +47001,Benjamin's Assailant at Fair,186227,120456,18 +47002,Robbery Victim,251421,1739529,5 +47003,Jane Lawrence,7353,1639,3 +47004,Claire Franklin,65603,14106,10 +47005,Pete Sporino,312221,13939,8 +47006,Marshall,206647,1599252,37 +47007,Blind Guy,214756,1228941,29 +47008,Louise,44945,1000799,9 +47009,Ethan,86703,933549,9 +47010,Murphy,445993,1201529,5 +47011,Tom Armstrong,77412,2927,2 +47012,Reid's Secretary,48949,83390,16 +47013,Officer Reggie,354979,1636777,24 +47014,Will Williams,142984,1036469,3 +47015,Loft Party Guest,11172,1781221,64 +47016,Phillipides,18696,39162,0 +47017,,49653,1386483,10 +47018,Chief Crusher,29610,104338,6 +47019,El juez bronté,26864,16950,2 +47020,Anna-Maria Mozart,62116,132182,2 +47021,La vieille dame dans l'escalier,27053,37147,10 +47022,Trucker,3716,1406150,21 +47023,Amir,323675,929511,11 +47024,Jim Cleary,36334,2771,11 +47025,Myint,7555,134726,17 +47026,Mrs. Barry,397520,14893,12 +47027,Abby,384021,1061512,4 +47028,Noah Stubbs,140887,30297,9 +47029,Detective Mason,14527,4572,9 +47030,Winton Childs,72207,7026,4 +47031,Dante Belasco,11351,96793,9 +47032,David,67748,1071158,9 +47033,Beckman,37731,81215,7 +47034,Churchgoer,425591,1753244,14 +47035,Edward Young,86305,933123,1 +47036,Philip Bendicott,290379,13343,12 +47037,Simon / Stanley,21141,1064,0 +47038,Aru,29352,103613,0 +47039,Mr. Summers,246655,1389492,31 +47040,Athena,32657,25972,8 +47041,Lin Ho Tung,25655,20519,1 +47042,Godfrey,55638,67711,7 +47043,Pam,89445,937176,1 +47044,Waiter at Dive,257081,103932,34 +47045,Rin,57011,227615,0 +47046,Mr. Reynolds,43923,1226310,17 +47047,Big Bad Cop,16131,79430,22 +47048,Himself,24235,3131,4 +47049,Master Lung,53168,1298434,11 +47050,Capt. Howard,8619,25658,6 +47051,Judge Daniel Hopkins (uncredited),14615,74877,29 +47052,Hung Sing,31027,52908,6 +47053,Rose Hills Sherrif,68721,49275,35 +47054,Aunt Blanche,140470,83237,5 +47055,Morton Hammond,43790,18907,5 +47056,American Hitman 2,80389,140909,15 +47057,Lee Hyun-Suk,387845,1591370,6 +47058,Pilates' Aid,335778,1454286,15 +47059,,124480,1340376,1 +47060,Didier Latour,246320,59031,0 +47061,Jud Templeton,130917,15048,1 +47062,Uta,161243,1143483,2 +47063,Ogre Baby (voice),810,1784317,27 +47064,Ma Harrington,53209,89610,2 +47065,Thug on Subway,4413,76822,25 +47066,Max,227200,74360,5 +47067,FBI Agent,172828,1769687,17 +47068,,145220,123846,64 +47069,Maurice,408509,16972,5 +47070,Ten Dollar Tipper (uncredited),354979,1636759,81 +47071,Red Queen Girl,45522,1326503,12 +47072,Clerk at the Air Terminal,29805,1738561,35 +47073,Specs (uncredited),99934,134875,7 +47074,Vampire,29416,103767,11 +47075,Jane Simmons,176627,103015,15 +47076,Bouncer,268920,1680188,44 +47077,Fighter Pilot,52454,1630307,30 +47078,Diplomat,108282,151482,25 +47079,Gen. Mazzini,70734,1618646,11 +47080,Stone Calf,32634,4963,14 +47081,Nadja,140894,544096,3 +47082,TV Reporter,25977,102780,10 +47083,BC #2,37534,59821,7 +47084,Helen,4882,39776,9 +47085,Nick,297668,8212,4 +47086,Frankie Dunlan,26558,28285,0 +47087,Janvrin's Secretary,1165,16354,12 +47088,Gu Ye,331075,72732,2 +47089,Riley,30921,1297931,10 +47090,Peachy,10257,20372,3 +47091,Madame de la Trave,110323,55927,7 +47092,Jodi,241071,95358,6 +47093,First Policeman,27966,1240252,28 +47094,Christian,16032,145863,0 +47095,Harold Lauder,13519,21563,5 +47096,Stefan,70752,1133619,10 +47097,Portuga,278935,1130507,2 +47098,Todd,1691,25849,3 +47099,Alien,122081,17051,0 +47100,Army Recruiter,356752,1841489,7 +47101,Wade,51736,1178302,4 +47102,Wilson,15909,191118,10 +47103,Charles Hawkins,23169,517,2 +47104,,57924,1076802,1 +47105,Ms. Worley,44945,146412,18 +47106,Kazuo,26936,20344,3 +47107,Young Willa,137321,1698873,19 +47108,Massimini,43648,100941,16 +47109,Bessie Jean,426670,1318797,12 +47110,Corinne,46972,91415,3 +47111,PC Hembry,413762,1861708,5 +47112,Cooper Teen,268920,1212271,10 +47113,Stitch,322922,10846,10 +47114,Hutch Davidson,76494,1214389,27 +47115,The Ostler's Mother,315855,44079,13 +47116,The Rat (voice) (English Version),86700,74036,10 +47117,Cabaret Dancer,264309,1371322,18 +47118,Lt. John Merrick,71805,5168,1 +47119,Himself,25568,1553391,1 +47120,Ed Dunkle / Al Hinkle,83770,548120,7 +47121,Lazer,9472,1016433,15 +47122,Mia,148478,1559605,3 +47123,Himself,14923,52865,45 +47124,Bobkin,156597,1427456,14 +47125,Ruben,15261,78032,2 +47126,El Caribe Party Patron,2001,1781722,70 +47127,Himself,312221,556033,45 +47128,,320736,1181816,7 +47129,Old Vincent de Graaf,154972,1755263,9 +47130,Tango,6935,51498,6 +47131,La Moglie Finarda,31542,1757130,12 +47132,Himself,234155,27460,1 +47133,Jared,298935,1232540,3 +47134,Videl,39107,90569,9 +47135,,390376,1611607,1 +47136,Nicky Parsons,2503,12041,1 +47137,,50032,218107,7 +47138,"Jori Hellström, ""Humu""",442752,1761824,7 +47139,Highway Patrolman #2,54523,1026047,9 +47140,Gipsy,41996,122908,7 +47141,Curro,236737,1061663,6 +47142,Lou,12638,13918,2 +47143,Mihaela,2009,1034689,17 +47144,Agent Ron Carter,442949,1762635,1 +47145,Mr. LC,110552,150,4 +47146,Ravitch,22998,57351,12 +47147,Himself,394668,37221,6 +47148,Seal and Signet Minister,76757,280,16 +47149,,373838,1567927,6 +47150,Dime,19423,84666,4 +47151,,280422,555748,9 +47152,Pop,87612,7666,4 +47153,Johnny Kapahaala,62527,90771,0 +47154,Sir Robert McLean,16444,27945,6 +47155,Prêtre confident,148327,132821,8 +47156,Deirdre Rothemund,42819,5644,3 +47157,Guard (uncredited),28000,103385,59 +47158,Thomas Jefferson,52360,67685,4 +47159,Tom Crawford,94551,91371,2 +47160,François,8049,38450,10 +47161,Carl,40793,12296,3 +47162,Patty Farrell,82650,84468,6 +47163,Jack,32834,1046791,0 +47164,Tammy,8998,56538,6 +47165,Kid,43987,129971,3 +47166,"(segment ""Children Lose Nothing"")",8985,1456427,4 +47167,"proprietario del porno night (episodio ""Italian Superman"")",68882,101597,18 +47168,Gay Conspiracy Technician,14923,61440,70 +47169,Camarera,38874,73269,4 +47170,Talk Show Host,179398,66750,5 +47171,Cristabel Abbott,63315,38406,0 +47172,Eric Bishop,18898,83814,1 +47173,Gonzalo,5048,38127,3 +47174,Lord Steele,43850,1043451,4 +47175,Kjeld Playwell (voice),33427,12988,1 +47176,Fensham,48207,1860885,8 +47177,Queen (voice),10192,5823,4 +47178,Roger Dorn,61168,1504489,7 +47179,Farmhand,51357,10525,1 +47180,Rubik's Cube Boy,240832,1426920,58 +47181,Masako Usami,93891,554325,1 +47182,Zachary,10087,63136,10 +47183,Sengoku,176983,1783254,17 +47184,Erhan,300490,134497,3 +47185,Adrien,38282,21175,0 +47186,Jasiek,81313,1145,0 +47187,unknown,6636,50928,1 +47188,Testicleese / Hank the Persian,24149,91284,1 +47189,Private,33495,130872,10 +47190,Delta Simmons,245906,17696,2 +47191,Young Sarah,388243,1186839,8 +47192,Winston Churchill,220674,1203108,11 +47193,Calum,414067,1251994,3 +47194,Mr. Liu,56095,1178704,11 +47195,Zellner,294272,1079558,20 +47196,Sasho,121725,1115688,4 +47197,Jai Rathod,14467,85063,0 +47198,,111239,134466,5 +47199,Glen Wilson,71996,5694,0 +47200,Captain William D. Stanaforth,328429,2983,0 +47201,Stuart's Gran,50032,72316,4 +47202,George's Doctor,11321,1043304,13 +47203,Changku / Cyborg 006 (voice),127544,122373,7 +47204,Jen,80320,101479,8 +47205,Judge Glaser,243935,5297,24 +47206,Samuel Pupkin,20200,6554,2 +47207,Himself (archive footage),253337,70274,13 +47208,Pundit,214756,98410,54 +47209,Alice,61527,15091,4 +47210,,32233,1612555,10 +47211,John,20825,5170,8 +47212,Lachmann,133783,88544,4 +47213,Fröken Zeijlon,377290,110065,15 +47214,Horton - Peter Lorre Fish (voice) (uncredited),29020,121040,3 +47215,Ione Foster,68684,57192,2 +47216,Shark,33360,579438,6 +47217,,231392,155465,3 +47218,,11196,1444538,15 +47219,Warren,39982,2518,3 +47220,Molly,209244,1372293,22 +47221,Jane Falbury,43390,9066,0 +47222,Black,91390,120833,6 +47223,Rachel Sandler,239498,74288,0 +47224,Daisy Tucker,45219,1550298,13 +47225,Jake,31867,2178,1 +47226,Mymmeli,293271,1364786,12 +47227,Wayne Robson,128216,1178299,25 +47228,Frank 'Ping' Bodie,61225,170150,8 +47229,Saadi's father,341007,1706341,8 +47230,Dr. Lew Lanigan,18045,82644,5 +47231,Drag Fan,1481,1030280,35 +47232,Allan Jourdan,4266,19062,4 +47233,Director,39056,55785,0 +47234,Eva Braun,116554,1892776,16 +47235,Virginsky,37710,52761,19 +47236,Fernando,63615,105161,1 +47237,Olivier,26152,78470,17 +47238,Gijs,75578,32558,8 +47239,Vicky Jensen,35564,2548,6 +47240,Dean,11584,147961,6 +47241,Ted,103433,1024491,8 +47242,Japanese Girl,14753,553810,10 +47243,Selena,63493,550319,10 +47244,Manni,177697,41776,4 +47245,Mutter,18912,83869,4 +47246,tencyo,81296,96805,2 +47247,Espe,131907,958,1 +47248,Jo (un voyou),62363,147429,7 +47249,De los Ríos,329718,7030,4 +47250,Cigliati,42679,128445,12 +47251,Christina / Angel Dust,293660,78452,4 +47252,Jobst,341745,151094,4 +47253,Levanna,179826,1404648,18 +47254,Emily Green,419430,104344,19 +47255,Science Geek Teacher,2976,20178,27 +47256,British Naval Officer (uncredited),52440,1230014,22 +47257,Nao,35451,114307,3 +47258,Lord Granion,125510,84504,7 +47259,Williams,250332,120708,46 +47260,Ben Rogers,42473,1405823,22 +47261,Stage magician,122221,1195205,11 +47262,Col. Coroki,19096,95014,5 +47263,Voodoo Dancer,243683,1398063,41 +47264,Yoshitake Miyake,131739,1077383,10 +47265,Asbury,31867,5723,12 +47266,Dick's Kid,232672,1683830,31 +47267,Jamie Morgan,38150,38941,0 +47268,Burton,22894,21882,13 +47269,Soon-hee,375599,1557182,9 +47270,Detective Griff Callahan,295656,1089889,8 +47271,Merve,367492,239065,3 +47272,Taylor,403119,8654,5 +47273,Linc Murdock,96089,4960,0 +47274,Talent Agent,2976,9251,35 +47275,Arthur Frommer,9352,8979,7 +47276,Maria Ulof,31634,108238,5 +47277,Money Lender (voice),16440,60272,2 +47278,"Jacqueline Gauthier, la fille de Pierre et Thérèse",110573,1050002,5 +47279,"Zdzisio, ojciec Elki",155325,105893,16 +47280,,38362,144615,9 +47281,Detective (uncredited),156700,1842208,44 +47282,Richard Fleming,27501,9094,4 +47283,Natalie the Technician,220820,170276,25 +47284,Mr. Craig,36375,11033,4 +47285,Memphis (voice),9836,6968,3 +47286,District Attorney Louis Barra,36634,85437,3 +47287,Yuan's Concubine,76349,1275552,22 +47288,,285685,943891,4 +47289,Liv,1253,32,3 +47290,,373838,238487,3 +47291,Terence Aloysius 'Slip' Mahoney,230182,89989,0 +47292,Reporter,32540,109328,16 +47293,Mrs. Davis,345922,1068812,37 +47294,Johan Borg,18333,2201,0 +47295,Agent Lubinski,301729,1421630,5 +47296,Gale,358895,550359,9 +47297,Pianist,3782,1176900,34 +47298,Mary Sotheby,352733,1196101,4 +47299,Streeter - President of Radex,47404,97007,5 +47300,Tourist,51036,1017322,50 +47301,Eugene 'Spoonman' Bryce,28553,44150,3 +47302,Perico,166207,1396353,3 +47303,Willard Apple aka Falstaff,26849,89729,4 +47304,Bellamey,36421,84878,3 +47305,Cybercafe Patron,341420,1540764,11 +47306,Andrea Bottini,167221,56843,6 +47307,Aaron Caldwell,40957,176872,12 +47308,Marta,60018,124620,3 +47309,Japanese scuba diver,16171,9192,29 +47310,Narrator (Voice),54415,2387,0 +47311,Ukrainian Prisoner,315855,1174337,25 +47312,14 year old Ava,256474,1308740,11 +47313,Antonnazi,58189,21236,2 +47314,Public Prosecutor Gu,16371,1239677,9 +47315,Abu Edouar,280030,145313,5 +47316,"(segment ""Miminashi Hôichi no hanashi"")",30959,118993,26 +47317,Taro Tanoue,87296,30565,4 +47318,James Keller,1163,155,3 +47319,Richard Heilman,61908,13786,2 +47320,Peter,239562,1181353,2 +47321,Rosa,66125,15293,7 +47322,Upper Class Pedestrian (uncredited),76203,1438287,60 +47323,Jimmy Doyle,12637,380,1 +47324,Himself,411013,1799839,5 +47325,Edmond,44398,14729,12 +47326,Alyssa Gilner,43923,560118,13 +47327,Wirt,119820,238229,16 +47328,Tejs,5177,41906,5 +47329,Yutaka Asahina,93891,160929,0 +47330,Fireman Dave Marsh,142402,1117075,8 +47331,Himself,385379,1585245,8 +47332,Yasmin,56809,1833802,10 +47333,Captain Chaotic,47863,1534545,8 +47334,Enoch,147829,975343,9 +47335,Mrs. Harder,5172,59304,18 +47336,Margie,70736,58643,2 +47337,Frank,27381,61241,7 +47338,Ms Choi,91186,124992,16 +47339,Nadine Taylor,45627,84659,2 +47340,Vanilla Ice,87428,17338,7 +47341,,105584,271770,8 +47342,Manolo,300596,16874,7 +47343,Orderly,362541,1188992,5 +47344,Warren,17745,82343,11 +47345,Edie Roberts,186869,158190,3 +47346,Bethany Romero,120478,98420,7 +47347,Ortega,169869,1793,4 +47348,Rex Racer,7459,53368,4 +47349,Tom Michaels,200505,117437,10 +47350,Vanessa Loring,7326,9278,2 +47351,Ethan,34560,67601,6 +47352,Hobo Santa,286532,17485,8 +47353,Sheriff Ben,20361,37309,7 +47354,Lida,435041,124429,1 +47355,,86321,102556,1 +47356,Qi Jimei,455043,1432500,9 +47357,Margaret,131815,37916,1 +47358,Domenico Lopresti da giovane,56853,1346234,5 +47359,Lola,120129,954,1 +47360,Grantham Portnoy,238398,60255,0 +47361,Mick,32904,1157297,11 +47362,Travers,83995,105823,4 +47363,Himself,160297,10134,5 +47364,,12622,555205,28 +47365,Jack Kruegher,205076,42185,2 +47366,Ramashankar Pillai (CDI Director),353464,1543146,10 +47367,Mr. Jefferson,1833,96539,11 +47368,Kingo Baba,141819,13283,2 +47369,Cabbie,13848,82704,9 +47370,Kasey,32298,175604,15 +47371,Helene,59249,125357,2 +47372,Nan Qing,46124,1270136,7 +47373,Chi Chi,39102,122192,8 +47374,Mr. Quilp,252746,93172,11 +47375,Akko Kagari (voice),182131,1164931,0 +47376,Tommy,345925,54198,11 +47377,Janek,210913,231819,0 +47378,Cesar,56601,5365,0 +47379,,13506,143675,7 +47380,Inspector Braddock,122221,97245,2 +47381,TV Anchor,329865,1652139,54 +47382,Stefania,431244,145326,3 +47383,Marie,27381,57298,0 +47384,Polícia Federal 2,70666,1584335,55 +47385,Charlie,275060,77795,8 +47386,Bailey,146216,4173,2 +47387,Dave,31150,1598931,8 +47388,Mr. Goh,54111,78865,5 +47389,Mama,209401,1353560,6 +47390,Archibald,75578,13514,1 +47391,Connie Seymour,60140,103937,4 +47392,Vaudevilian Celebrant,32610,34818,31 +47393,"Jim 'Hunk' Gardner (president, Gardner Oil Co.)",40719,2755,2 +47394,Lucifer,83223,105325,5 +47395,Doc Tydon,26405,9221,1 +47396,Police Matron at Train,3580,168331,20 +47397,Vecina (uncredited),42502,1715239,25 +47398,Garland,12113,16358,4 +47399,Sally,31411,122974,1 +47400,arrogant Shyster,59147,55650,1 +47401,Abbie Phillips,28656,101470,1 +47402,Lacy,226792,61555,2 +47403,Middle-Aged Witch,225728,1544738,15 +47404,Prison Guard,28090,1719884,21 +47405,Lucio,123359,1102264,5 +47406,Bookkeeper (uncredited),4982,1218180,99 +47407,Restaurant Owner Kazım,74879,1001784,15 +47408,Robert Johnson,104528,98474,8 +47409,Ushioda,17895,73427,0 +47410,Sheriff Stance,336167,21624,1 +47411,Grover Dunn,31448,27493,0 +47412,,185153,1540039,3 +47413,Madame de Germond,76703,579777,15 +47414,Truck Driver (uncredited),262841,1366696,34 +47415,Hai's godson,17467,1357125,11 +47416,Walter Schmeiss,57683,8654,0 +47417,First Victim,30155,1086572,13 +47418,Himself,61487,57116,12 +47419,Colonel Rogers (as Tryon Nichol),44087,995631,11 +47420,Himself,70027,82772,24 +47421,Flynn,407448,1394235,7 +47422,Father Juan,28710,1162543,15 +47423,Emaciated Ian body,12171,1574206,10 +47424,Miss Abbott,43503,93718,9 +47425,Neighbour,245700,1798373,66 +47426,Simon Stillman,307081,136034,24 +47427,Police Officer #2,419430,148999,36 +47428,,321779,231159,6 +47429,Pierre Bergé,245775,6554,1 +47430,,11330,1444521,24 +47431,Rachel (as Chelsea Marie Rogers),51736,1178304,6 +47432,Maggie King,105551,2491,0 +47433,Young Donald,266333,122756,1 +47434,Lucie Giroux,41277,1407314,14 +47435,Kyousuke's Father (voice),152042,1221865,13 +47436,Lt. Cmdr. John 'Twill' Twillinger,53949,14517,0 +47437,Amy Walker,37932,59181,2 +47438,Kurt,233917,89514,3 +47439,3rd Hip Hop Boy,15022,1303209,23 +47440,,59572,14417,7 +47441,Thomas,42501,1801504,6 +47442,Chris Lei,5289,11677,14 +47443,Tug 1st Officer,47412,138889,6 +47444,Prime Minister,68191,14508,9 +47445,Lt. Steve King,138486,176860,2 +47446,Nigel Lean,314065,219367,4 +47447,Tarzan's Girl,77930,1784613,29 +47448,"Ferdinand Maréchal, dit le Dabe",59434,11544,0 +47449,Carl Krieger,262522,920,2 +47450,Frænka,72596,1114549,38 +47451,Loïc,12453,72288,1 +47452,Pauline Hastings,33117,860,3 +47453,Fang Qiangqiang,36615,225256,0 +47454,Betsy Kenney at Age 10 (uncredited),52440,3635,10 +47455,Matteo,40817,124681,12 +47456,Marie Salinger,67216,168656,7 +47457,Miss Blackburn,147722,34363,11 +47458,Cleo,344656,1477315,2 +47459,Editor,246127,53,4 +47460,Eirik,21786,87880,3 +47461,Fifi Lorraine,111302,29973,2 +47462,,47448,227290,13 +47463,Lei Chi Fung,18758,1174701,6 +47464,Chad,63360,182600,13 +47465,,96985,1297976,3 +47466,Cat,19719,85121,24 +47467,Student on Stairs,381008,1784722,31 +47468,Col. Randolph,43365,10027,4 +47469,Hashizume,376538,548041,8 +47470,Vicar,54804,390184,26 +47471,Omar,241254,62,0 +47472,Ray Ferrier,74,500,0 +47473,,439050,1749839,2 +47474,Baggage Man,14589,124882,38 +47475,Bill Morgan,259593,4091,1 +47476,Larry,12855,81075,9 +47477,Gen. Miguel Miramon,78318,20368,9 +47478,Mr. Lee,109491,3201,13 +47479,Mugger,41759,43010,14 +47480,Kálmán,163942,993511,1 +47481,Aikido Instructor,1724,115387,44 +47482,Gulli's Mother,127913,1104959,4 +47483,The One,342588,1222047,3 +47484,Small Paul,44470,1278265,9 +47485,Bodyguard,268920,1392647,32 +47486,Aryan Kapoor / Veeru,19276,95750,2 +47487,Il portiere del teatro,120972,234414,10 +47488,Clarissa Marr,41996,89534,1 +47489,Adaline Bowman,293863,59175,0 +47490,"Nina, a landowner's daughter",184795,13333,1 +47491,Himself,70027,82775,9 +47492,Worker in Sewage Section,3782,1435298,33 +47493,Ernst Gennat,386100,32426,7 +47494,Elina,13285,74358,0 +47495,Dude Finlay,1773,29347,9 +47496,Charlie MacMorrow,54318,3496,5 +47497,Girl's Mother,27414,1206238,28 +47498,Himself,253337,565206,25 +47499,,437122,1755171,1 +47500,Dacoit,94935,6497,5 +47501,"Hwee Leng, the mother",188598,130761,0 +47502,Shaw's Mother,70981,58787,21 +47503,Ejecutivo,331641,1188323,6 +47504,Brian,260001,1717812,14 +47505,Suzu,27276,551826,11 +47506,Photographer (uncredited),31773,84234,41 +47507,Mom,392660,190905,5 +47508,Captain Karanvir Singh Dogra,444713,1118194,1 +47509,Leona Charles,37954,1934,1 +47510,Rosalie Essex,32610,550537,4 +47511,Law Ting Fat,25655,72732,5 +47512,Young Sean,322,4738,18 +47513,Horatio in 'Hamlet',134480,103176,9 +47514,The Policeman,86266,69699,4 +47515,Paul Anderson,40465,12768,6 +47516,Ah De,16687,1184083,13 +47517,Olive Blue / Monica the Crossing Guard (voice),153518,1075037,29 +47518,Leung Chang,41380,62414,0 +47519,Traffic Cop (uncredited),17136,124882,34 +47520,Frank Prentiss,28363,29285,7 +47521,Boy Killed in Battle (uncredited),3059,148791,99 +47522,SS Guard,227306,1394437,40 +47523,Mendoza,74674,237960,5 +47524,Teenager,16151,79724,38 +47525,Jean de Reszke,98328,6933,8 +47526,André Cariou,309929,54326,1 +47527,Eleni Barda,288526,1312814,4 +47528,Professor Roberts,49950,1954,10 +47529,Ceilidh Band,1116,1856261,53 +47530,Coroner's Court Clerk,30014,105510,16 +47531,Micha,334890,1695147,12 +47532,,386100,1738622,10 +47533,Kazuya Omori,14217,46364,3 +47534,B.J. Rose,64807,19498,3 +47535,Young Mike (voice),62211,1271300,4 +47536,Franco,8882,72782,0 +47537,Young Shane,107985,1200856,16 +47538,,276846,86784,15 +47539,Dr. Leonard V. Meecham,100528,19329,13 +47540,Rosy (voice),393559,1776045,13 +47541,Evan Buckley,139826,558084,12 +47542,un Spectateur,2786,1653,12 +47543,Lee Rock,212996,25246,0 +47544,Bit Role,42852,77672,17 +47545,Dr. Harvey,33112,13819,6 +47546,Flannagan (uncredited),43522,96140,40 +47547,German Officer,369885,1651391,47 +47548,Andrea,265717,1311612,4 +47549,Youssef,39413,145162,14 +47550,Terry,85602,107242,10 +47551,Elvis,19286,86925,11 +47552,Leningrad Cowboy,30366,53510,7 +47553,Kolbaba,65904,55732,11 +47554,Saturnin,43900,69958,0 +47555,Police Constable Griggs,27144,143233,9 +47556,Killjoy,61716,92993,0 +47557,,8070,18211,10 +47558,Yi-Soo's boss,338729,1372475,20 +47559,Anna Beletskaya (Mariya),274991,1347840,1 +47560,Himself - Disc Jockey,97724,1388654,4 +47561,Frances Penny Bethune,281291,15735,2 +47562,Professor Estabrook,94551,95223,6 +47563,Mark's Secretary,51036,1441226,18 +47564,Prodavac,118658,1526120,3 +47565,Bobby (as Billy Burrud),112655,987021,3 +47566,Christopher Johnson / Grey Bradnam / Trent,17654,82193,1 +47567,,14537,567246,17 +47568,,262522,101167,12 +47569,Rock,155341,1869471,4 +47570,Professor York,225285,566261,14 +47571,Merlin,274857,1654736,35 +47572,Harriet Mutesi,317557,1267329,2 +47573,M. Gerbois,27053,584287,5 +47574,Michelle,344255,60715,2 +47575,Sushi Chef,59962,60723,26 +47576,Darlene,323665,130513,10 +47577,The Streetwalker,47310,41985,3 +47578,Marcello Santilli,169683,129060,0 +47579,Veiarbeider,24821,111533,1 +47580,Ramon,128637,1087601,8 +47581,Mary Stilwell,43811,85358,3 +47582,Gu Mingshan,394051,20519,3 +47583,Wang,358980,1308262,4 +47584,Akbalban,295914,1372351,6 +47585,Nelson,31597,65568,2 +47586,Chip Anderson,46567,548190,2 +47587,Dairy Dream Manager,333091,1086573,11 +47588,Sach,166904,33024,1 +47589,Veronika,116432,1189692,7 +47590,Cam Elliott,204994,19401,0 +47591,Peter,11404,95023,4 +47592,Virginie Ducrot,84636,14812,0 +47593,Ghislaine,43016,24364,1 +47594,Daniel Madigan,4931,12149,0 +47595,Major Force (voice),22855,80967,6 +47596,Kyle Campbell,42309,208069,5 +47597,Cynthia,64678,1831693,12 +47598,Tiago Mendès,35025,5079,1 +47599,Big Guy #2,199415,1611777,14 +47600,Jean-Gabriel,15713,136745,1 +47601,Pamela Bently,40087,97725,5 +47602,Muqtada,43923,156739,10 +47603,Himself,15258,83349,8 +47604,Flynn,187516,85996,6 +47605,Jeannette,78340,269638,8 +47606,,6687,1129802,15 +47607,Ragetti,58,1711,9 +47608,Colonel Carol Matthews,33436,14261,2 +47609,Boota / Darry Aday (voices),20986,571993,7 +47610,Kat,322922,85178,9 +47611,Preston Kelly,385372,1378076,5 +47612,Baseball Player,367732,1537757,15 +47613,Pippa,397422,1240487,2 +47614,Kihachi,141819,1029276,12 +47615,Ajay,13986,35070,3 +47616,Leola,62670,167146,5 +47617,,378503,1611153,1 +47618,Andrew,10780,7505,5 +47619,Kim Eun-ju,12650,63436,1 +47620,Father Henry,80545,74056,5 +47621,Jimmy Dolan,19823,2224,0 +47622,,437122,1428770,2 +47623,Elbert,393732,51389,4 +47624,Humpty-Dumpty,25694,13954,7 +47625,John,230266,72466,1 +47626,Billy Duke,108723,41256,0 +47627,(uncredited),162862,1055297,12 +47628,Sweet Looking Guy,431093,1647324,13 +47629,Otets Dimy,31162,81000,9 +47630,Assistant Coach Dan,119738,96018,6 +47631,Mother Superior,62728,31951,15 +47632,Charles Bromley,19901,4783,1 +47633,Jimmy Courtney,41495,22091,4 +47634,Supt. Finsbury,35852,14302,3 +47635,Bob,35113,27632,5 +47636,Deputy sheriff Roscoe Bookbinder,41857,15668,4 +47637,Geisha House Waiter,45013,1025669,42 +47638,Herself,16666,570797,1 +47639,Taylor,156,1838,7 +47640,Mr. Fowlers,29805,171189,24 +47641,Bubba,22615,2969,1 +47642,Velia,64725,537836,9 +47643,Hadir,24424,132112,9 +47644,Concert Goer,11172,1781227,70 +47645,Clay,32139,108939,2 +47646,Iratxe,236737,1077139,8 +47647,Sam Stanton,60086,79498,9 +47648,Mr. McClood,13079,77023,6 +47649,Mężczyzna w hotelu (niewymieniony w czołówce),314371,1583957,36 +47650,Free Greek-Baker,1271,143395,37 +47651,Rochester,7548,85,0 +47784,Himself (uncredited),4964,167662,34 +47785,Gordon Miller,43503,103366,1 +47786,Won Chang-wook,54659,25003,3 +47652,Homer / Itchy / Barney / Grampa / Stage Manager / Krusty the Clown / Mayor Quimby / Mayor's Aide / Multi-Eyed Squirrel / Panicky Man / Sideshow Mel / Mr. Teeny / EPA Official / Kissing Cop / Bear / Boy on Phone / NSA Worker / Officer / Santa's Little Helper / Squeaky-Voiced Teen (voice),35,198,0 +47653,Agent Tony,74561,1374099,5 +47654,David Sims,296524,141762,14 +47655,,83501,929687,4 +47656,Rudy,274479,380,2 +47657,Sydney,377432,978906,2 +47658,Second Worker,168541,1053880,15 +47659,Sarah Tomlin,245703,205,3 +47660,Maurilio,338438,544210,9 +47661,Devon,68193,55615,0 +47662,Sylvia Millet,11399,28279,2 +47663,Selma Olsson,129359,550130,1 +47664,Georg Vester,79362,586673,6 +47665,Himself,400668,1821663,11 +47666,Bartender,255388,34324,12 +47667,Tomato Thrower / Arsonist Defendant (uncredited),14615,33233,40 +47668,Erna,10311,38992,6 +47669,Bill Doolin,167262,13784,0 +47670,Waitress,22897,1223878,18 +47671,Captain Motta,227975,1154127,5 +47672,Desk Officer,48281,1063138,21 +47673,Dean Hardscrabble (voice),62211,15735,3 +47674,May Jones,80596,5826,18 +47675,Georgia Wilson,41551,10022,1 +47676,Kong,18665,239961,8 +47677,Leilani's boyfriend,222388,1326238,6 +47678,Mercedes Tainot,59861,1204,1 +47679,Belazi,26516,115462,12 +47680,Ilene,381645,1529017,17 +47681,Chipinita,45191,955322,1 +47682,Kirchbergwirt,11122,68891,3 +47683,Dan Santini,110598,106806,6 +47684,Denise,21214,87284,5 +47685,,44716,1442882,35 +47686,Mr. Branch,9968,61161,9 +47687,Arms Dealer,158739,57387,4 +47688,Officer Mitchell,58428,88547,7 +47689,Trooper,79735,9596,4 +47690,Mickey,7942,53388,9 +47691,Helicopter Pilot,44115,1613033,18 +47692,Javier,263855,1325945,11 +47693,Dolly (voice),77887,5149,15 +47694,Bashiri Johnson,13576,1449380,5 +47695,Hamilcar Q. Glure,204800,26512,3 +47696,Aurelius,9703,5472,0 +47697,Lt. Evans (voice),16873,555248,17 +47698,Private Gregorio Esparza,10733,80967,15 +47699,Jill,131815,1146818,5 +47700,Al Bentwaithe,312669,1607560,7 +47701,Sgt. Thompson,35564,129663,10 +47702,,330418,1336122,16 +47703,Elise,126127,223051,4 +47704,Madison Longo,245706,1458841,8 +47705,La mère de Camille,82327,54324,3 +47706,Dean,240913,63738,13 +47707,Walt the Locksmith,64685,196179,10 +47708,Señorita Tangerine,58732,85438,2 +47709,Cynthia,39127,4174,5 +47710,Reporter,424600,1704672,31 +47711,Shaun,11798,70517,0 +47712,Ethan Belfrage,35656,2130,0 +47713,Nounours,319340,1146848,7 +47714,Col. Sanders,127585,102852,33 +47715,Kanan (voice),155765,112277,14 +47716,Don Burwood,331161,51381,6 +47717,Actor,43821,242238,21 +47718,Band at Red's,57201,1759932,56 +47719,Himself,156908,1138119,0 +47720,Cotton's Mother,94225,102753,9 +47721,Constable,107891,1179412,10 +47722,Dolly Newman,105902,94156,1 +47723,Nightclub Bartender,149793,89615,31 +47724,Streetcar Girl,9953,60887,19 +47725,Lewis Hamilton (voice),49013,216294,33 +47726,Matthias Duval / Mathieu Duval,39978,24501,0 +47727,Fred,284296,56903,12 +47728,Mikuru Katsuhara,35435,1221875,5 +47729,Kevins Vater,2778,28168,8 +47730,employee,48962,1142767,12 +47731,Oriol Arau,1896,16441,1 +47732,Iris,117678,1070631,6 +47733,Weeping Woman,146216,1684546,47 +47734,Miho,85836,100765,3 +47735,Clara,27053,25154,2 +47736,Lucy Tripp,148326,1064446,5 +47737,Dulcinea del Toboso / Aldonza Lorenzo,145481,270791,2 +47738,Sarah,26142,1675355,12 +47739,Elsi Björkman,55748,223067,0 +47740,Zhena 'komandirovochnogo',35428,932354,8 +47741,Hispanic Guy,86838,65826,22 +47742,Submarine Crew,198600,193763,11 +47743,Kiyoko's Sister,12720,1091287,14 +47744,Lt. Tim Crane,92716,59964,7 +47745,Dr. Reed,69165,45501,14 +47746,Blind Gator (voice),9502,1448987,20 +47747,Ralph,227700,1795083,16 +47748,Narrator (voice),89688,937724,0 +47749,Ray Cash,69,418,3 +47750,Doctor,25834,64160,8 +47751,Dr. Sheila Smith,326285,27125,6 +47752,,27276,551841,32 +47753,,236737,544008,10 +47754,,315057,1448024,3 +47755,Dr. Muresan,32594,15321,4 +47756,Lily Minouche,54832,585023,3 +47757,Pam Welnke,286532,933002,13 +47758,Mexican,105059,151908,42 +47759,Herself,74,1599519,19 +47760,Eilidh,214100,1447224,9 +47761,Carol,426230,75318,4 +47762,Clem,43821,55278,2 +47763,Kay Munsinger,418772,58251,3 +47764,Himself,276536,158079,4 +47765,Detective Oh,264746,1375062,3 +47766,Retainer,14537,96637,9 +47767,Mother York,16442,78791,3 +47768,Myortvyi,72663,101423,2 +47769,Jack Cleary,333352,590270,19 +47770,Miguel,338438,1307065,20 +47771,Li Shan,388764,1245104,1 +47772,Nick,9993,125323,24 +47773,Beth Harper,13477,40462,1 +47774,Randall,354857,111683,6 +47775,Katia,7229,10839,3 +47776,Princess Tori (speaking),129533,74358,0 +47777,Ed Landers,175386,30303,3 +47778,Restaurant Patron (uncredited),330947,1650327,55 +47779,Ted Mirabeau,4592,1811,6 +47780,Frankie,56601,28660,3 +47781,,2143,132928,50 +47782,Kim Yi-seul,296633,1046862,5 +47783,Laura Berry,39824,1866643,11 +47787,,27276,551865,56 +47788,White King,25694,89519,26 +47789,Steve Phillips,9893,55084,9 +47790,Astronaut K. Fuji,19545,18615,1 +47791,Vicky Mueller,39001,13445,1 +47792,Myrtle,200447,148567,4 +47793,Number Six / Gina Inviere,69315,74423,8 +47794,Nightclub Patron,228647,135827,41 +47795,Aunt,43778,1041677,2 +47796,Noboru Terao,37910,74091,1 +47797,Kannu,15761,86078,5 +47798,Dee Dee,65416,2967,6 +47799,Ray,17100,23881,0 +47800,Karen,98066,38674,6 +47801,Train Porter,26283,87825,15 +47802,John Byrne,30014,105505,2 +47803,Terry Williams,186585,14655,1 +47804,Marc Garland,118150,39008,0 +47805,Restaurant Patron / Pedestrian (uncredited),330947,1650332,64 +47806,Himself,41569,1197944,2 +47807,Laboratory Man,124115,11496,30 +47808,Downs,7548,36669,12 +47809,Far,19812,1023,0 +47810,Police Photographer,14589,385470,80 +47811,,19812,311446,7 +47812,Alberto,263873,4521,3 +47813,Harry,17956,169920,16 +47814,Lt. Cmdr. Robinson,43504,4303,10 +47815,Verena,85699,17067,1 +47816,Charlotte Bruckner,75162,12021,1 +47817,Valdemar,11328,1348444,13 +47818,Rival Band Saxophonist (uncredited),244786,1503856,48 +47819,Andrew,77583,97090,7 +47820,Tolbert,20312,5897,7 +47821,Corey Douglas,245706,5352,18 +47822,Lost John,113137,74763,5 +47823,Nona Tucker,45219,13785,1 +47824,,92285,198716,14 +47825,Chris,56906,188370,2 +47826,Medico Carabinieri,59040,564901,27 +47827,Lockie,118957,109546,10 +47828,Yvan,187602,24758,3 +47829,Radhe's sister-in-law,56969,225296,4 +47830,Minister,67748,1172839,13 +47831,Toby,28969,52401,0 +47832,"Mor Laagje, hans kone",77922,1196406,4 +47833,Lucy's Mother,35129,151137,11 +47834,Ryoko Tsugumo,198993,83937,5 +47835,Mamma,30583,147069,2 +47836,Vincent,239563,1532,0 +47837,Blonde Scool Director,2132,21862,8 +47838,Boss' Wife,41187,1888572,7 +47839,Specialist Cameron Klein,99861,43373,64 +47840,Stephan,354859,1118,5 +47841,Ralph Bartlett,4641,38709,7 +47842,Bill,291871,1362820,6 +47843,Claire,40466,124794,1 +47844,Murad,7445,103330,11 +47845,Karen Carpenter,69898,47882,0 +47846,Army,60160,230862,8 +47847,Barabasz,31273,107870,17 +47848,Sam Green,100088,1023425,4 +47849,Adrian Vico,373514,51377,1 +47850,Kyuta's Father (voice),315465,127893,12 +47851,Tom Solomon,72207,41088,0 +47852,Cop,381008,212484,9 +47853,"Bliźniak, syn Kwiatkowskich",155325,1616640,10 +47854,Stanley,1724,1215283,9 +47855,Huntingdon,30496,11278,3 +47856,El Presidente,264525,1243416,18 +47857,Himself,245226,99898,4 +47858,Drew,384682,225694,16 +47859,Håkan Andersson,30149,82546,1 +47860,Maartje,277190,934383,5 +47861,Joan Corpuz,98203,1349625,22 +47862,"Jokaanan, the Prophet",96951,34047,6 +47863,Jim Knox,197737,30211,4 +47864,Sweets,54491,54043,13 +47865,Earl,9953,37823,3 +47866,Security A,7483,52688,7 +47867,Dougie,337958,57795,8 +47868,David,171213,1973,1 +47869,Marta,153781,908548,5 +47870,Jim Paretta,10145,11085,1 +47871,Herself,209112,1696036,34 +47872,Partisan,28131,99788,8 +47873,Jay,225285,59096,9 +47874,Madeline Grice,58790,39574,6 +47875,"Blond Josy, singer",41979,99291,7 +47876,Katya,185156,1284053,5 +47877,Louise Ljung,15179,1264126,5 +47878,Himself / General Montgomery,77794,328424,1 +47879,Herself (archive footage),253337,1788329,16 +47880,Himself (Archive Footage) (uncredited),448449,34263,9 +47881,Mr. Darling / Captain Hook,273106,1229072,2 +47882,20/20 Anchor,395992,38361,11 +47883,Sqdn. Ldr. Barton (as Richard Bonneville),116554,19923,4 +47884,TV Reporter,186869,1862899,24 +47885,Minor Role,41597,10925,31 +47886,Thurman (voice),68179,41798,17 +47887,,83501,86940,0 +47888,Al Hickey,85126,51962,0 +47889,Electrician,14226,83643,3 +47890,Store Clerk,25373,1195675,3 +47891,Fabian,128856,5212,7 +47892,Hotel Manager / Charon,245891,129101,11 +47893,Meg Hubbard,28586,101229,1 +47894,Lori,229702,1184434,1 +47895,avvocato,120922,1183986,12 +47896,Hausmeister,6183,17373,10 +47897,Makoto Hirata,27372,213519,3 +47898,Youth Nobita,265712,80108,7 +47899,Nina,274504,1723563,18 +47900,Calvin,64130,111921,1 +47901,Stepan Ivanovich,83475,239127,9 +47902,Hollywood Fish (voice),9982,70287,21 +47903,Tim the Gate Guard (voice),9928,13242,11 +47904,,391438,990627,3 +47905,Himself,44038,130082,5 +47906,Ruth Campanella,132328,15532,2 +47907,Betty,4882,39768,1 +47908,Martin,60269,231801,21 +47909,Sheriff Halderman,10011,7675,4 +47910,Malik,174645,2295,1 +47911,Sheriff Henderson,90086,95082,4 +47912,The Phantom,76115,145115,0 +47913,Thin Elk's Wife,55534,222554,0 +47914,,11196,6135,18 +47915,Barmann,8366,36750,7 +47916,Chantal,57311,19934,2 +47917,Averell,10870,67714,1 +47918,Wu Zan,182127,1440459,36 +47919,Burlington Potluck Guest,356752,1841537,61 +47920,Terry Benedict,163,1271,4 +47921,Padre de Lena,8088,102225,16 +47922,Gina,7972,3141,3 +47923,Mrs. Joe,16075,80366,10 +47924,Jong-Goo,293670,1155298,0 +47925,Soledad,116312,102060,8 +47926,Det. Chris Sloan,345918,11677,6 +47927,Mr. Spodak,44470,158005,11 +47928,Waif (uncredited),31773,141408,21 +47929,Kommissar Seidl,54524,506930,7 +47930,Walter Fakler,82941,231819,3 +47931,Umzugshelfer,170759,16809,13 +47932,Mrs. Straus aka 'Mumsy',35921,89663,11 +47933,Morry,27450,129051,4 +47934,Khatra,47226,1546415,1 +47935,Tom Arnold,16232,74036,6 +47936,Ministry of Defence Official and Policeman,339362,109333,7 +47937,Nun,86658,142260,2 +47938,Himself,172413,532536,2 +47939,Returning Wounded Soldier (uncredited),297762,1635843,100 +47940,Roronoa Zoro,176983,84507,1 +47941,Horus's Baby,5552,1513405,15 +47942,arkkiviisun kitaransoittaja linja-autossa,442752,1761852,44 +47943,The Specialist,16444,119363,19 +47944,Gaukhar,19495,84732,4 +47945,Herself,81538,1156399,0 +47946,Butler,157898,5831,42 +47947,Pablo Domínguez Prieto,76010,1193420,0 +47948,The Developer,44960,9913,8 +47949,Lysander,182129,2076,3 +47950,Ginevra,58518,53422,2 +47951,Jenny,244534,84223,0 +47952,Himself (uncredited),330947,1575412,58 +47953,Dante,42571,128222,5 +47954,Gisella Perl,19338,77133,0 +47955,Nicole James,10610,4174,2 +47956,Nurse,331161,1459149,12 +47957,Margie Cohn,84425,79924,5 +47958,Juha Pasanen,141971,108476,6 +47959,Brick Masterson (voice),33427,8049,2 +47960,Sinclair,27085,1492650,11 +47961,Enrico Caruso,37083,12159,8 +47962,The Stranger,10119,63764,7 +47963,Visiting Nobleman,205939,1085735,6 +47964,Tracy Thurman,13025,63864,3 +47965,,90351,1018087,3 +47966,Jesse,300667,1789783,14 +47967,Copine Vanessa collège,255913,1714084,32 +47968,James Harmon - Museum Director,209112,1695990,86 +47969,Waiter,11172,1558984,72 +47970,Heinrich Keller,6183,8802,3 +47971,Priya,25499,583509,9 +47972,Zoe Mills,239018,476866,3 +47973,Opera Staff,177677,1562088,37 +47974,NYC Pedestrian (uncredited),284052,1785931,64 +47975,Ali,418437,66555,6 +47976,Powder,82191,112977,8 +47977,Dwalu,13596,132355,10 +47978,Himself,53380,91343,11 +47979,avvocato di Elena,108535,55757,14 +47980,Pedro,9474,16318,10 +47981,Narrator,148031,15531,8 +47982,Blue Suit Traveler,127585,115596,57 +47983,Brandy,335970,35476,1 +47984,Annie - the Cleaning Lady,31899,148767,25 +47985,Reporter,309879,1405554,7 +47986,M.,47096,14276,0 +47987,Broken Lance,55534,60722,2 +47988,Manuela,9943,45947,3 +47989,Helper,104376,1602899,3 +47990,Le photographe,84823,1127884,3 +47991,David,192210,83225,2 +47992,Gonner (voice),89247,31415,5 +47993,Crowd,59722,1000757,8 +47994,,342011,4069,3 +47995,Myron (as a boy),182499,198676,6 +47996,Miranda,274504,1610902,12 +47997,Little Christmas Boy,239566,1457287,58 +47998,George Caldwell,73257,980842,4 +47999,Käthe,359483,1163292,8 +48000,Mahalleli,452606,1202132,18 +48001,Naster Raju,19887,103883,2 +48002,Frank,265208,1386325,17 +48003,Boat Salesman,98125,115769,32 +48004,Olga,81414,591925,2 +48005,Sam Slade,40804,247,1 +48006,Bartender Bill,98339,6575,5 +48007,Dennis Powell,48609,77920,1 +48008,,268735,1369,1 +48009,Mr. Krinklebein the Fish (voice),43580,109969,2 +48010,Lonnie,74830,26852,5 +48011,Eli,28851,102184,3 +48012,Pharmacist,103620,2981,12 +48013,María (as Natalia Álvarez),363841,1522373,4 +48014,Maria Theresa 'Terry' O'Reilly,25507,17752,2 +48015,Jennifer Thomas,373541,66636,3 +48016,Lt. Di Nisco,63340,20752,6 +48017,James Payton,323675,9778,1 +48018,Pedro Ruíz,418072,1684891,1 +48019,Mary George,341895,1470724,5 +48020,Susan,92269,34695,9 +48021,Sylvie,2577,77191,9 +48022,Tak,844,12670,3 +48023,Policía (uncredited),41298,1664705,23 +48024,Martin,180607,37154,3 +48025,The Russian,289191,53,4 +48026,Irene,14435,76886,3 +48027,Police Officer 1,280617,1851687,19 +48028,Major Michael Ross,19010,106965,2 +48029,Michele Brent,171308,29703,1 +48030,Parkes,99567,134265,6 +48031,Amanda,345054,1426656,3 +48032,,88491,985075,5 +48033,Gael,25038,99508,3 +48034,Ji-won,54111,126881,3 +48035,Cascio,39436,100955,14 +48036,Alexia Moreno,334651,1379939,1 +48037,(voice),255772,1603931,13 +48038,"(segment ""The deep"") (archive footage)",49954,14729,7 +48039,,98203,1497968,29 +48040,Morgue Detective (uncredited),3574,1434259,18 +48041,Umbrella Man,54227,13392,3 +48042,Steve Davis,377516,1221073,2 +48043,Bubba,41559,115730,0 +48044,Young Mother,41171,216227,50 +48045,Tuck,42329,18643,0 +48046,Nancy,29116,97042,10 +48047,Fiatal tiszt,86732,56299,11 +48048,Oberst Bonkhof,40709,581086,9 +48049,Scourge,107319,62311,4 +48050,Ines,217648,20887,2 +48051,Mountain Girl,5516,43859,6 +48052,Aoshi Shinomori,221732,70209,6 +48053,Simone Montrose,33005,99,4 +48054,Patrizia,70752,559553,3 +48055,Stanilaus,4893,140168,9 +48056,300 lbs,354979,1636771,25 +48057,Luciana,57489,928978,4 +48058,Hatsu-rojin,154442,70324,13 +48059,Arthur - Curtis's Butler,43385,120214,8 +48060,Melitta,9690,17068,2 +48061,En Murase,163870,104522,1 +48062,Tomas,359025,557879,2 +48063,Narrator (voice),89688,24385,1 +48064,Billy Williams,9959,53650,5 +48065,Tom Maxwell,194393,13946,0 +48066,Laurens,115929,1064502,3 +48067,Ed Malmburg,55728,5950,4 +48068,Businessman,9900,60163,16 +48069,Mary,17622,1122013,9 +48070,Maurice,137093,45566,7 +48071,Hector (voice),5559,1740807,15 +48072,Anderson,48153,14068,8 +48073,Annetta,31542,1037925,9 +48074,Factory Worker,81120,93578,29 +48075,Joey Firestone,43321,14573,7 +48076,Timeless Hag,68737,61168,35 +48077,Niklas Michalke,28938,104243,3 +48078,Herr Ramsauer,8948,23750,10 +48079,Red Circle Model (uncredited),245891,1439560,34 +48080,Federale,263115,179882,67 +48081,Vic Davies,54243,1811,0 +48082,Composer at Piano,47310,5805,13 +48083,Fattore,31542,1757143,25 +48084,,324572,87862,3 +48085,Jim,82626,84815,8 +48086,Norman,18190,1211,4 +48087,Bjørn,102913,118055,0 +48088,Ragazzo,315880,1522760,10 +48089,Rajeev Sharma,30695,85683,3 +48090,Matan,168541,1047159,7 +48091,,63215,1520900,9 +48092,Dubravin,390880,240368,13 +48093,Rev. Jethro Bailey,83354,8516,6 +48094,Elephant (voice),38317,41039,6 +48095,Ped,72733,1095121,4 +48096,Genshun Amma,46069,1029781,12 +48097,Goldwyn Girl (uncredited),108224,148574,19 +48098,Tashi Tsomo,354287,75540,30 +48099,marinaio nave Tunis,11048,136411,19 +48100,Mr. Perry,120802,1225493,25 +48101,Jeff,24986,932821,2 +48102,Jamison,20625,30014,3 +48103,Rebecca Evans,49950,85825,1 +48104,Black Gandil Morgan,82313,14700,4 +48105,Joey Coyle,128644,1087648,2 +48106,Frank James,38807,14970,13 +48107,Nancy Marlowe,166904,233325,5 +48108,Ospite agriturismo,325690,1547091,13 +48109,Frau Ella,227262,28568,1 +48110,Restaurant Visionary,252680,592932,17 +48111,Denny (as Alan Hale),27999,35322,3 +48112,Rhody Poole,180576,1981,7 +48113,Wade Parent,24655,9274,0 +48114,Sira Eirik,57438,67986,7 +48115,Will,13805,34202,0 +48116,Tint,7555,1816649,18 +48117,Morgan 'Morg' Hickman,30054,4958,0 +48118,Skulking Transitional Matango,52302,227622,14 +48119,Ms. Brar,196852,1700877,13 +48120,E-4 Pilot,20674,10137,26 +48121,,92060,99914,3 +48122,Vinnie Dawson,301876,5312,1 +48123,Serpentor,17421,81846,15 +48124,Maria Sanchez,199415,1179653,4 +48125,Feya Pyatnitsy,390880,1599403,4 +48126,Nathan Wallace / Repo Man,14353,34257,2 +48127,Dr. Helen Cho,99861,1401531,18 +48128,Donald Miller,98369,17347,0 +48129,Juan Oliver,33273,110424,1 +48130,Lt. Comdr. Challee,10178,5249,6 +48131,Jess,177112,935839,6 +48132,Vittoria,21135,41779,1 +48133,Stanford,1452,53493,9 +48134,Yuki,8014,1308690,5 +48135,"Alan, Richard's Squire",58905,44833,12 +48136,Pete Walters,424488,1270111,18 +48137,la spogliarista,56804,1865138,28 +48138,Laurie Robinson,42231,8895,0 +48139,Officer Tom Hansen,1640,11864,18 +48140,Fritzie,126127,95276,5 +48141,Jong-chan KIM,2015,20738,1 +48142,,230680,1384,0 +48143,Melanie,407173,1197115,4 +48144,John May,216156,1665,0 +48145,Receptionist,41283,143204,6 +48146,Stefano Mattoli,142982,20030,2 +48147,,264264,65354,15 +48148,Ernest Grey,92716,87769,2 +48149,Harry / Bum #1,155341,1869478,13 +48150,New Year's Eve Partygoer #2,10362,1758896,27 +48151,Daisuke Kishimoto,143946,213479,0 +48152,Voz angelical,18120,106817,9 +48153,Alfred Nobel,72785,116507,8 +48154,Jarvis,49502,2642,3 +48155,Edith Piaf / Margot de Villedieu,99313,37175,1 +48156,Emma Hussey,149926,31169,11 +48157,Grant Zager,318553,21368,1 +48158,Spectator (uncredited),336890,1903978,33 +48159,Spectator,279096,1386308,29 +48160,D.P.,21138,11830,9 +48161,Aubrey Bradimore,139455,5915,0 +48162,Curtis,326,132347,10 +48163,Gog-Ma-Gogg (voice),278901,1215086,2 +48164,Lydia Winton,294093,1420252,7 +48165,Jack,115276,166019,11 +48166,EHC Client,71670,1739855,33 +48167,Ted,69898,104503,6 +48168,Zeki,175331,1028805,2 +48169,Dexter Lucas,4982,179830,31 +48170,Moss the Troll (voice),57089,58563,11 +48171,Graduate Student,381008,1589609,22 +48172,Derek Lessing,125490,1034220,14 +48173,Nick,14695,38673,6 +48174,Mr. Watkins,311291,1097456,5 +48175,Betsy,80468,1450431,9 +48176,Louison,99579,56242,6 +48177,Man in the Yellow Shoes,29313,103472,2 +48178,Dock Worker,12707,103789,10 +48179,Captain of Police,40826,124746,7 +48180,Ippu,148478,1559604,1 +48181,Minor Role,28421,117770,56 +48182,Ashae,157354,1295290,6 +48183,Janet,205076,158644,3 +48184,Sasha,12763,20381,7 +48185,Max Dillon / Electro,102382,134,2 +48186,John Merrick,263065,158399,4 +48187,Cera's Dad,339526,81664,15 +48188,Racetrack Spectator,339419,1650207,55 +48189,Willem Holleeder,228968,65731,2 +48190,Shintaro Toda,94659,1112344,2 +48191,Enoch Emory,42179,2550,3 +48192,Zala,339342,1478376,8 +48193,Jeanie,40229,1434836,3 +48194,Denver,11577,24324,30 +48195,Dhamu,49074,544873,12 +48196,Cop,29054,102688,14 +48197,Emmaline 'Emma' Robinson,115290,214556,0 +48198,Jeremi's Officer,31273,107881,28 +48199,Garçon mariage,255913,1714066,29 +48200,,188981,1274082,4 +48201,Director F.J. Sloan,91679,1272967,10 +48202,Miss Dawson,29610,97754,13 +48203,Chief-inspector,81541,33820,8 +48204,,406992,6167,5 +48205,Himself,26326,80487,12 +48206,Marsea,157384,1180099,13 +48207,Pascal Latour,246320,41878,2 +48208,,56746,224731,0 +48209,Sam,20648,86397,0 +48210,Rancher,197737,1092484,31 +48211,Mrs. Sally Humphries (uncredited),14615,1072359,81 +48212,Villager Fan #3 / Ogre Gnimrach (voice),10192,1454420,28 +48213,Prof. Mulerr,24062,16421,7 +48214,,145191,1122433,9 +48215,Lee Goodwin,27986,20370,5 +48216,Babička,15387,11686,6 +48217,Augustus,206514,8318,4 +48218,Maquilleuse film dans le film,382589,1613220,15 +48219,Controller,41597,127021,12 +48220,Montse Puig,1896,19823,9 +48221,šašek,84030,55734,2 +48222,Chauncey Smith,67375,120816,11 +48223,Senator Jebel,330459,28477,25 +48224,Kakkonen,62825,1381438,6 +48225,Pabbi Bigga,72596,1114534,14 +48226,Hal,330947,1650302,30 +48227,Lloyd Price,31907,6198,1 +48228,Marketing Executive #1,58244,1504599,37 +48229,Cafeteria Girl #2,38322,1869031,22 +48230,Hattie Lee,90461,991494,7 +48231,Gwupigrubynudny-landians,16171,79860,8 +48232,"""Kobra""",293982,980177,16 +48233,Soup,55694,223003,3 +48234,Mieke,47231,46451,2 +48235,Avis Fenton,36335,101499,5 +48236,Therapist,228970,1205239,16 +48237,cameriere di casa Canà,48805,38598,20 +48238,Sera,366170,119143,12 +48239,Honjô (voice),149870,17697,6 +48240,Sheperd / School Girl,426670,1716516,16 +48241,himself,112072,116157,3 +48242,Harry,133183,17544,9 +48243,Police Investigator,41574,1583295,17 +48244,Environmental Tech,329865,90467,10 +48245,Himself,90125,154857,1 +48246,,252845,239337,11 +48247,Joe,226693,1109600,11 +48248,Son Suk-Ho,367882,1299283,6 +48249,Judith,14452,210904,8 +48250,Toiletpasser,15830,6135,5 +48251,Delegado del segundo turno,41298,1486446,10 +48252,William,61109,337275,13 +48253,Garota,42473,1405828,29 +48254,Brent Patterson,5460,147404,11 +48255,Doctor,118889,96721,21 +48256,Père Taon,187252,5444,2 +48257,Himself,266782,41039,2 +48258,April,36628,33677,1 +48259,Lucy Wyman,10096,20750,2 +48260,Himself / Senior,48375,28638,4 +48261,Røde,11330,1348438,12 +48262,Carlo,20126,80503,2 +48263,Gertie Ryan,131360,1411405,1 +48264,Lāsma,116432,1189691,6 +48265,Hybrid Michael (uncredited),346672,1440179,42 +48266,Darnell,336011,209266,9 +48267,,43773,1193562,5 +48268,Autohändler,308174,1888503,45 +48269,Thick Neck,242042,1381388,29 +48270,,61904,1073412,5 +48271,Cockcroft Guest #5,266856,1503916,42 +48272,Juan Trippe,2567,7447,4 +48273,Mom (voice),10527,109561,9 +48274,West End Bertie,111302,89107,1 +48275,Sophie,112161,118752,2 +48276,Catherine 'Cathy' Dollanganger,267793,53485,2 +48277,Agent's Assistant,381518,1765299,12 +48278,Bumpy Skinned Kid,263115,1821487,86 +48279,Craig Cook,138372,1108830,7 +48280,María,82767,177731,4 +48281,Watts Davies,54243,149484,1 +48282,Alex,73562,17257,5 +48283,Minor Role,61109,1492449,22 +48284,Various,18809,383,3 +48285,,365323,980211,2 +48286,Lieutenant Brent,43855,14574,2 +48287,Norma Besant,85507,100047,0 +48288,Inspector Gibert,24921,111440,3 +48289,Militant,271677,227200,9 +48290,Billy Spear,42701,514,2 +48291,Eric,63139,16214,2 +48292,Manager,170517,93798,9 +48293,12-Step Reader,14976,1237385,18 +48294,Louis,126418,29601,6 +48295,The father,125673,29950,2 +48296,Logan,56491,1298966,7 +48297,Skins - the Accordion Player (uncredited),75510,1027429,10 +48298,,305147,1190708,5 +48299,Enchanted Princess / Amy Winehouse Look-A-Like / Jessica Simpson Look-A-Like,13805,74615,2 +48300,Robbie,16342,53013,4 +48301,Sybil,5753,45364,4 +48302,Nanette,93676,9560,6 +48303,Guy,72105,9657,5 +48304,Carl Dayton,10145,21505,8 +48305,Larry Crowne,59861,31,0 +48306,Frank,72105,17200,9 +48307,Dan,47171,1093948,0 +48308,Woman on Phone,339148,1332325,5 +48309,Gordano,48967,516266,3 +48310,Jim Starbuck,41468,2177,3 +48311,Wayne Accountant,209112,1561416,90 +48312,OL,282069,1493394,16 +48313,Eddie,55681,1086565,5 +48314,Pieter,345438,79450,3 +48315,Walters,9624,10930,9 +48316,,328712,1434904,2 +48317,Saarne Institute Orderly,21208,90464,19 +48318,Astronaut Plasma Physicist,8410,55745,3 +48319,Master Tam,365222,1089434,15 +48320,General Aguila (voice),1273,24362,14 +48321,Derek,128215,86237,10 +48322,Aleka,47110,935648,4 +48323,Sophie,111239,74440,2 +48324,Willy,377853,1142910,5 +48325,Scientist,28340,1795343,24 +48326,Psychologist (uncredited),31742,354606,2 +48327,Michael McClure,156277,9296,6 +48328,Dan Monroe,29467,78305,5 +48329,Kelly,153,1772,2 +48330,Soda Clerk,43441,34286,9 +48331,Jose 'Pepe' Maiz,56601,1110509,11 +48332,God Killing Himself,1483,36182,0 +48333,Donna Assunta,173847,20589,13 +48334,Joan,72847,1185412,12 +48335,Man at Club (uncredited),17136,1284767,20 +48336,Delia,22579,1352584,5 +48337,Jack Clementi,46572,18841,1 +48338,Cindy Moore,31448,77940,2 +48339,Nini,45213,36318,1 +48340,Andrea,265717,129440,2 +48341,Daniel Ocean,298,1461,0 +48342,Sweetie,152748,77277,6 +48343,Sulka,65416,28639,4 +48344,,258384,1308125,23 +48345,Wolf Larsen,131039,8197,0 +48346,Reverend (uncredited),31773,1176932,54 +48347,Ruth Sherman,66881,171561,5 +48348,Druggie,52452,146011,12 +48349,Hyacinthe,203715,25078,4 +48350,Komponistenzwilling/Vikar 2,277968,17055,49 +48351,Woody,83890,548375,1 +48352,Mrs. Quinn,55989,32394,2 +48353,,79025,543561,6 +48354,Julian 'Snake' Pedroza,93457,88031,6 +48355,Terrence Aloysius 'Slip' Mahoney,116160,89989,0 +48356,Tatianna,13680,57346,10 +48357,Cactus Joe,285946,141586,7 +48358,Azère Smellekens,35016,13514,4 +48359,Andy's Mom (voice),10193,12133,14 +48360,Chub 'Chubbers' Horatio,15759,21283,7 +48361,Casino VIP,11358,1773126,49 +48362,Nathan,214129,1269275,8 +48363,,302472,990473,2 +48364,Bo,4882,1024604,16 +48365,Dona Zefa,420703,1163991,6 +48366,Claude Montgomery,33557,879,1 +48367,Teri,60125,56753,1 +48368,Soldier,329865,1810151,68 +48369,Saffiotti,13056,119479,13 +48370,Il matto,63179,84250,5 +48371,Lemuel Townsend,168217,9091,3 +48372,Hallway Kid (uncredited),25132,1112451,13 +48373,Lois Pepper,255491,157549,10 +48374,,17985,1439592,14 +48375,Dagmar,156954,44374,1 +48376,Ed Jackson,42683,81168,2 +48377,Ayten,44246,133824,14 +48378,Judge Tolliver,16331,1230,1 +48379,,220809,39658,0 +48380,Jackson Hammond,10694,6952,0 +48381,Jonathan,42764,22383,0 +48382,Hemo / Professor Anatomy,89606,19404,5 +48383,Monk,45243,543139,12 +48384,Félix,285848,123181,1 +48385,Meno Argenti,107028,5004,2 +48386,Restaurant Patron,77439,1209046,5 +48387,Cop,72912,27031,7 +48388,Bürgermeister,1659,18454,5 +48389,Ferguson,201085,5945,15 +48390,Monica Figuerola,33613,106656,9 +48391,Candace Kelmeckis,84892,19961,4 +48392,Collins,57201,15374,11 +48393,Basketball Fan (uncredited),44115,130793,25 +48394,Gabriella Montez,13649,67599,1 +48395,Chet,41759,145151,10 +48396,Sheriff Steve Harrison,186585,100945,4 +48397,Sana,148284,87773,1 +48398,Sarah,277710,15370,7 +48399,Bandaged Soldier,183825,110204,22 +48400,Abe Kelsey,6643,9872,7 +48401,Deckchair Attendant,41597,1366490,17 +48402,,11391,1433881,22 +48403,Lily Murdoch,63858,78859,4 +48404,Jeff,13807,72732,9 +48405,Sy,38031,28478,7 +48406,Drooling Mental Patient,24094,97465,28 +48407,Nora,64807,1158068,13 +48408,Pablo,1810,19215,8 +48409,Akers,45875,234,7 +48410,Me Colmeman,14765,24398,8 +48411,'Tinker' Bell,44087,108802,20 +48412,Anya,53172,75569,12 +48413,Charles Booker,45527,44150,4 +48414,Thomas,1254,32657,3 +48415,Sir Edward Hyde,31675,108637,8 +48416,Jamie Bonner,109170,126251,6 +48417,Ivan,251232,1441844,11 +48418,Dieter Huhn,6183,37246,30 +48419,Mary Lacey,167073,1233105,6 +48420,Litvak,32088,78111,4 +48421,Thoth,205584,172069,5 +48422,Thees,1539,17375,4 +48423,David Dobel,10739,1243,0 +48424,Chinmay,284729,1807838,1 +48425,,104945,1140948,9 +48426,rouva Körmy,55756,223075,10 +48427,Officer Howard,31150,11357,3 +48428,l'automobilista,43646,1603639,16 +48429,Julie Bannon,4459,30289,1 +48430,Jason Porter,64725,45206,0 +48431,Noah's Father,57680,37825,5 +48432,Tomato Face,47115,1535,6 +48433,"Albert, Stephan's Butler",53853,141520,11 +48434,Karl,252028,233832,8 +48435,l'Idiot ou le Prince,65612,3776,0 +48436,Priest,102630,101847,6 +48437,Dr Barnet,54804,17484,15 +48438,,42501,39183,13 +48439,Radio DJ,31277,1342869,18 +48440,Kip Tippington,70863,85142,11 +48441,Joey,10780,1542824,8 +48442,Statler (voice),15909,68455,6 +48443,George's Father (as William S. Kirksey),40368,556927,8 +48444,Tammy's Friend,18843,180449,37 +48445,Bovarr,286873,62892,14 +48446,Pelda's Mother,317,4644,8 +48447,Joseph Finsbury,62143,12689,1 +48448,Girl,204040,121220,17 +48449,Invitada rubia en fiesta,41298,1240390,6 +48450,Ernestine Gilbreth,50549,10611,6 +48451,Yen Chuen Wong,19274,239091,2 +48452,Himself,324181,89888,11 +48453,Mr. Parker,11509,235347,20 +48454,Salesman,8053,51732,14 +48455,,205864,1208495,8 +48456,Amelia Earhart,8915,448,0 +48457,1st Digger Hayrettin,74879,1001788,19 +48458,Fat Choi,182127,1440183,14 +48459,Mrs. Lane,84450,90844,8 +48460,Thorsten Rehm,6443,49741,3 +48461,Dhandpani,325555,1105803,6 +48462,News Producer,28730,157059,18 +48463,Nurse Rigby,120357,33034,13 +48464,Marion,9736,63895,3 +48465,Wang Jie Wen,844,12676,8 +48466,Eunice McMichael,201085,1526124,8 +48467,Huxley Hossefrosse,177902,34317,5 +48468,Bailarina,82265,103670,10 +48469,,274127,1327770,4 +48470,Capt. MacDonald / Narrator,39519,35320,0 +48471,Gordon,94568,93798,7 +48472,Otto Preminger,54982,10647,2 +48473,Guillem,8329,54524,7 +48474,Steel player,271164,1322605,7 +48475,Lenore,24709,163132,4 +48476,,208579,1297761,4 +48477,,113040,1056227,2 +48478,Monica,79500,1184129,2 +48479,дворник,20871,86673,15 +48480,,350779,1489235,5 +48481,Disgusted Guest in Second Restaurant (uncredited),22943,89523,37 +48482,Marta,34672,61265,15 +48483,Judd Tolliver,76094,77176,2 +48484,Sarah,34672,126220,11 +48485,Linda Rollins,26283,11165,0 +48486,,19552,1275916,7 +48487,Tobias,6443,49743,5 +48488,Harry Becker,53792,19528,14 +48489,Masako Hiruta,32690,131018,3 +48490,Inspector Pyare Mohan,96147,105444,4 +48491,Mr. Ching's Assistant,10389,551606,17 +48492,Man at Coffee Stand,250332,1152705,30 +48493,Helen Forrest,43546,1238720,11 +48494,Krista,13551,328,0 +48495,Amit,14467,126500,3 +48496,Katia (as Katia Golubeva),26636,95899,0 +48497,Randall Burns,208529,14408,3 +48498,Schahzenan / Harun al-Rashid,18098,22063,5 +48499,Sophie's Mother,24986,1050418,6 +48500,Taylor,98566,1240486,13 +48501,Player's Wife,18722,113660,36 +48502,Dawa,8341,54616,3 +48503,Ten Peccary,1579,42018,24 +48504,Don Sabas,120129,975214,4 +48505,Alpha Team Leader,272878,1652379,10 +48506,John,44119,74633,0 +48507,Miss Seiffert,62694,2780,24 +48508,ältere Schwester,266044,1388846,5 +48509,Elliot Fulton,100528,30211,0 +48510,Granny Tucker,45219,17755,3 +48511,Nadine Clinton,41312,103684,13 +48512,Freundlicher Nachbar,6183,48516,21 +48513,Tibets Mutter,8064,53844,5 +48514,M'Burundé,13728,71377,6 +48515,Hortense Fleury,32934,933000,2 +48516,Nicky,53459,228969,8 +48517,John Elliott,255278,980,0 +48518,Gräfin Bellegarde,459,6810,8 +48519,Dr. Lai Shung-Fung,49514,68561,11 +48520,Housekeeper,86825,149569,13 +48521,Black Mother,38027,39426,28 +48522,Restaurant Manager,14016,237122,10 +48523,Mrs. Monticue,54406,77287,9 +48524,Victoria,404459,1065549,1 +48525,Stephen,84209,84878,3 +48526,,430985,44248,6 +48527,Mrs. Abercrombie,95504,102062,9 +48528,Tommy,291413,1224115,3 +48529,John Taylor,30644,106665,3 +48530,Clarence Darby,22803,36091,9 +48531,Mort Finley,120259,2644,7 +48532,High-School Student,428687,1776846,24 +48533,White Clouth Girl,59408,112414,10 +48534,Agent Dalton,338518,120664,12 +48535,Marty,85230,1585225,7 +48536,Aphrodite Girl,32657,113861,25 +48537,Meg,22020,1207153,12 +48538,,237303,26039,2 +48539,Brendan,4538,486,6 +48540,Hazmat,298584,1573613,14 +48541,Background,408508,1707549,12 +48542,Rictus Erectus,76341,24898,5 +48543,Nana,241140,1426803,5 +48544,Lychee,39998,226556,2 +48545,Françoise,145191,1122428,3 +48546,Dr. Deng / Speedy,315855,81427,8 +48547,Françoise in Paris,54898,29513,5 +48548,Syracuse,38448,72466,0 +48549,Barbara,27814,123335,1 +48550,Stephano,266102,1090781,9 +48551,Fenton,333484,61839,27 +48552,FedEx Guy,102362,585780,22 +48553,RC1,49514,1623450,17 +48554,Long,55208,128487,3 +48555,Mei,158483,55664,1 +48556,Dan Jefferson,52991,29313,2 +48557,Mitch Szalinski,11425,177165,6 +48558,Susan McCleod,29805,104923,8 +48559,King,120399,1051781,2 +48560,Paul,308032,1252852,14 +48561,Mamma Bigga,72596,1114535,43 +48562,Miette Walla (voice),23566,74360,13 +48563,Brenda,21208,90456,9 +48564,Sally,27917,20055,3 +48565,Sylvia,192137,8792,3 +48566,Purple (voice),217057,1394771,14 +48567,B.J. Parswell,71996,26490,1 +48568,,303966,110722,6 +48569,Carmencita,338438,1074067,3 +48570,"(segment ""Miminashi Hôichi no hanashi"")",30959,225539,36 +48571,Kimmy Hayes,55730,41249,2 +48572,Advocate Sundararajan,332827,1310403,18 +48573,Miranda,83384,11826,1 +48574,Teresa / Gloria,166221,66496,5 +48575,Big T (uncredited),210047,1193594,16 +48576,Dott.ssa Andreoli,419522,129304,13 +48577,Day Lacks,424600,80618,7 +48578,Marta,37050,139300,2 +48579,Tom Warshaw,24363,12640,1 +48580,Solange,57993,5249,6 +48581,Margo Lannington,20153,85740,1 +48582,Brian Drew,200505,11824,2 +48583,Frypan,294254,1036196,9 +48584,Jordanes,9503,12766,14 +48585,Sheriff Black,55563,152727,10 +48586,O'Bloat,31473,108100,11 +48587,Pvt. Ishi,43407,129510,9 +48588,Yaron,96888,584171,4 +48589,Jack Blueblood,322548,56680,1 +48590,Dr. Rubnick,104427,120810,15 +48591,Pretty Boy Floyd,28110,41280,12 +48592,Roskus,287636,1055236,14 +48593,Commuter,145220,1147920,15 +48594,Claudette,30174,557605,2 +48595,Danny,158750,33668,5 +48596,Effy,251232,582051,1 +48597,Virgil Sebanek,22396,1120229,8 +48598,Masao - Age 73,112244,33135,0 +48599,Himself,257450,267236,14 +48600,Virgelina,68202,573817,5 +48601,The Vuvalini,76341,1229667,20 +48602,Committee Member,43812,103068,51 +48603,Moon Sun-mo,408620,150125,2 +48604,Tiina's Boyfriend,33481,110783,33 +48605,Nelly,36597,115680,3 +48606,Osam,25518,35003,7 +48607,Howard Nightingale,45874,2090,0 +48608,Paul (Investigation officer of CDI),353464,1517760,5 +48609,Prof. Rodriguez's Assistant,28063,22479,5 +48610,,278095,124426,2 +48611,Noblewoman,68737,1392956,33 +48612,Cain,95015,1544026,7 +48613,Waiter / Evil Dwarf (voice),810,1077844,14 +48614,,365065,1181353,1 +48615,Odile,3051,29490,2 +48616,German soldier,8429,54934,5 +48617,Aldo,41054,78792,0 +48618,Eli Walker,13788,1018310,12 +48619,Rocco,173847,226384,7 +48620,Basia Martyniak,39936,932085,1 +48621,House's Owner,278867,1501776,7 +48622,Overkill,179105,195442,9 +48623,Woodley,43419,30417,8 +48624,Builder,13600,43138,8 +48625,Nancy,27886,1531022,8 +48626,,43095,1605380,17 +48627,Linus (voice),227973,1393181,9 +48628,Lord Albert Esketh,115109,3363,3 +48629,Ned Buntline,43499,3383,3 +48630,School Principal,212713,67289,12 +48631,Mrs. Chandler,259975,32481,15 +48632,Bobylyov - Driver,27925,240834,10 +48633,Stan,11338,28413,2 +48634,Doctor,71140,167075,14 +48635,Visir,317389,98485,5 +48636,Zeki,109671,1408008,5 +48637,RMP Sergeant,369885,1651395,50 +48638,Brewers Fan (uncredited),16232,1394359,9 +48639,Mikey,290656,1099229,1 +48640,The Courier,70586,202955,12 +48641,Tomasz Horodinsky,49009,39960,7 +48642,Doña Marta,42502,180225,7 +48643,Christina Lowell,9779,10768,7 +48644,Crew Boss,79329,586528,5 +48645,Milutin Ivkovic 'Milutinac',57419,226141,2 +48646,Le tailleur,18955,83973,12 +48647,Little Kuenlay/ Little Kuenphay,259997,1302535,23 +48648,Yesenia,331962,1706103,5 +48649,Melissa (as Kitty Ruth),196065,1214007,7 +48650,Huo Yuanjia,7549,1336,0 +48651,Murthy,80276,130111,9 +48652,,14210,102653,12 +48653,(as Mikel Mari Ezeiza),110001,1696394,37 +48654,Doctor,168259,1880147,29 +48655,Paul Clifton,73208,67449,0 +48656,Elizabeth Lamb,37686,147056,17 +48657,Himself,307931,1489792,9 +48658,Pa Verbeek,14019,76286,10 +48659,Cpl. Dutoit,5237,103730,9 +48660,Alpha Creature,37534,117890,16 +48661,Brown Cesario,13655,133327,5 +48662,Ele Mesmo,448763,1190921,26 +48663,Ali's Father,371741,117528,5 +48664,Keir,14862,96790,5 +48665,Abu Jamil,16047,1147084,6 +48666,"Owen (segment ""Lord Mountdrago"") / Mr. X (segment ""In the Picture"") / Harry (segment ""You Killed Elizabeth"")",45577,39065,4 +48667,Lou Marazano,43213,7164,0 +48668,Vosters,298396,220294,8 +48669,B.J. Warren,65282,190991,10 +48670,Larry,19719,85099,7 +48671,Batman / Bruce Wayne (voice),17074,34947,2 +48672,Le peintre,46326,49000,6 +48673,James,250376,1181302,3 +48674,Günther Stobanski,75969,675,6 +48675,Lucille O'Mara,20301,11026,3 +48676,Parvati,121598,145628,5 +48677,Erik Henry,238398,120591,3 +48678,Patrick,2029,1318271,7 +48679,Sam MacQueen,69717,88392,0 +48680,Gen. Homma,19096,30514,9 +48681,Allie,277710,1557947,13 +48682,Stacy,109417,1046143,4 +48683,Commander Vachir (voice),9502,61981,11 +48684,Waiter,32526,1176952,16 +48685,Edith Hardy,70368,558287,0 +48686,Miss Ho,47647,67221,1 +48687,Rex,340101,1379407,16 +48688,,289183,16776,4 +48689,Herself,142168,2165,1 +48690,Peng Yong,311324,1382332,6 +48691,Loud Man,21481,87578,13 +48692,Kuroha Diana Shiratori,35435,111371,10 +48693,Paul,241254,12261,1 +48694,Elder,47410,138884,16 +48695,Lucinda,371462,1563624,7 +48696,Adjutant,260528,1351970,7 +48697,Karl Georg Ludwig,85699,1160291,11 +48698,Maggie Miller,245168,1524955,13 +48699,Chicago Cop,340275,1531613,57 +48700,Policeman,3782,552180,31 +48701,Maria,242097,175037,16 +48702,Dixie Rose Delton,13842,41249,10 +48703,Kulighin,277396,1499686,8 +48704,Benjamin Burton,145244,3281,0 +48705,Amindra First Mate,52859,100920,19 +48706,The Father,135390,2201,1 +48707,Albert Renaudin,51212,11216,5 +48708,"Kiwi, young man with ball",63066,1867443,11 +48709,Peter,15907,55152,1 +48710,Asher,381645,29234,0 +48711,Jerry's Manager,171446,985839,7 +48712,Elody,397837,1389383,6 +48713,Chinatown Merchant,293660,1723676,21 +48714,Borrego,33273,15599,17 +48715,Kasper,65771,544023,3 +48716,Carmen,91186,1163186,12 +48717,Member of countermeasure meeting,43113,1484033,84 +48718,Sidney Gutsell,118444,4361,7 +48719,Dick Clark,139718,46433,6 +48720,Bez,50161,1672700,8 +48721,Torrelavega,254869,1423073,24 +48722,Examination Nurse,3580,453,38 +48723,A.J.,272693,1181558,11 +48724,Dean Wallace,73527,78412,4 +48725,Laura Marshall,11404,350,0 +48726,Nigel (voice),172385,55936,6 +48727,Vinnie,45156,22970,6 +48728,Gotta Pee Real Bad Guy,352890,1561250,18 +48729,Chan Agi,16157,553047,8 +48730,Ely,306952,1310521,2 +48731,Lou Corbin,288503,73022,2 +48732,Majeed,398786,1665413,16 +48733,"Ernine, Vic's Daughter",37481,117765,4 +48734,Private in Rocky's Tent at Army Base (uncredited),28000,40393,44 +48735,Syren 1,274857,85070,21 +48736,Roque,469172,1274939,10 +48737,Private Jacob / Jake,5638,81554,15 +48738,Agente Lucidi,60014,128419,8 +48739,Taylor,185934,14976,8 +48740,Mrs. Redmond,270303,1588352,10 +48741,Ruth's Mother,179066,50836,60 +48742,Roger Carlyle,251421,1739528,4 +48743,Courtroom Observer (uncredited),214756,1759668,89 +48744,Rufus,328589,11279,6 +48745,Goneril,46915,38998,3 +48746,Grandfather,28710,59136,2 +48747,maestro,43649,1191690,4 +48748,King of Karlsberg,68191,4343,3 +48749,Lev Solovyov,267481,1325774,7 +48750,,78318,96471,32 +48751,la tante,61109,223051,8 +48752,L'assistante TV,332794,113228,31 +48753,Detective,43113,1198479,83 +48754,Girard,96089,153482,11 +48755,Oleg Lvovich Neron,62731,240471,9 +48756,Sergeant Andrew Dean,424488,10993,2 +48757,Schwartz,189621,98016,9 +48758,Northcott Defense Counsel (uncredited),3580,1453555,71 +48759,Boardroom Rep,274479,84436,47 +48760,Bursar,378441,1797411,23 +48761,,78258,583492,9 +48762,Saleem Haddad,80012,34489,2 +48763,Luisa,35554,120138,12 +48764,Boy in field,59726,1185481,16 +48765,Clay Vanstone,384682,51990,2 +48766,Gwen Cromwell Piper,34205,45041,3 +48767,Radio News Reporter,250535,1561568,24 +48768,Nick,3638,6383,1 +48769,Carla,172457,1155085,1 +48770,Vogelhuber,62567,29987,10 +48771,Felice Sciosciammocca,58007,132190,0 +48772,Daniel Collins,16358,5587,0 +48773,Harald,48778,3784,9 +48774,Pete (voice),15653,12077,8 +48775,Lisa,25684,94088,2 +48776,Aki,340176,1493394,3 +48777,Victoria,14126,27855,0 +48778,Victoria Everglot (voice),3933,1639,2 +48779,2nd Man,10921,35367,6 +48780,Inn keeper,40081,1134979,15 +48781,Derek Bentley,64167,2040,0 +48782,Alexander von Humboldt,115023,1111158,1 +48783,Cordier,29290,141089,7 +48784,Joey,172828,225695,7 +48785,American TV News Anchor,329865,1646459,35 +48786,Denise,6023,14406,2 +48787,Minka (voice),14945,1239107,11 +48788,Peckham Princess,131737,937273,5 +48789,Darius,93492,32673,0 +48790,Donovan,49514,1623449,16 +48791,Orphan Sarah,226354,1270481,9 +48792,Hiroko,153,1786,9 +48793,Coat & Tie Fan,215881,105830,11 +48794,Ismo Valinto,141971,79764,1 +48795,Tom Cruise Girl Fan,51036,1879471,24 +48796,Bridget (voice),136799,11664,2 +48797,Woman with the baby by Madame Duteil (uncredited),1421,3583,49 +48798,Will,323315,49735,2 +48799,Princess Pauline Metternich,280004,1071096,10 +48800,Jamie,139998,20373,2 +48801,Pop Tibbets,194509,30228,3 +48802,Jamie's Father,114444,1115624,5 +48803,Erika Berger,15472,79196,2 +48804,Charles Bovary,45184,18803,2 +48805,Billy Baldwin,144580,13021,0 +48806,Ashley,19255,84408,7 +48807,Jérémy,12446,587155,10 +48808,Himself,320589,217359,5 +48809,George,127286,26258,3 +48810,Autoestopista (uncredited),101838,1029107,36 +48811,Divine Intention Dancer,243683,1398141,63 +48812,Big Reuben,45679,133441,13 +48813,Radziejowski,31273,107884,31 +48814,Cage Operator,87060,1462495,17 +48815,Father of Sick Child,16151,79719,32 +48816,Mayor Michael J. Kane,48627,30530,5 +48817,Lieutenant Bastian,140607,1360152,45 +48818,Madame Z,10025,41640,12 +48819,Concert Goer,11172,1781219,61 +48820,Mark Dragon,33305,17476,5 +48821,Aurora,209251,954664,1 +48822,,41903,93290,7 +48823,Narc Squad Detective (uncredited),4982,206946,76 +48824,Hélène,76821,50,0 +48825,Street Pedestrian,77930,1304845,40 +48826,,265351,72154,1 +48827,Chief Big Bear,57201,126829,16 +48828,Brenda,253794,104912,1 +48829,Train Engineer Miller,56154,121066,42 +48830,Delilah Pettibone,35977,10227,8 +48831,Lando Santi,108535,1363771,24 +48832,Molly Middleton,43895,95624,0 +48833,Carol,94055,161560,9 +48834,Bank Attendant,8899,1637841,14 +48835,Herself,323555,29021,4 +48836,Mary,84226,120248,1 +48837,President William Alan Moore,230179,2231,0 +48838,Police Sergeant,44960,36172,6 +48839,Rita,68063,120111,7 +48840,Buddhist Priest,19545,1429146,17 +48841,Leander Woolsey,111042,87698,3 +48842,Detective Williams,24874,92777,8 +48843,Kennari,72596,1104959,21 +48844,Charlie,17258,22138,23 +48845,Kole 'Kok Nikol,15303,110996,6 +48846,Nurse,43875,2934,20 +48847,Judge (uncredited),91961,13823,12 +48848,Tarek Ahmed,138372,112600,4 +48849,Thomas,12446,1182867,9 +48850,Бизон,31059,86875,3 +48851,Dr. Velazco,44591,1039963,4 +48852,Art Hazzard,34623,82613,4 +48853,Sir Robert Laurie,189682,32139,8 +48854,Girl #2 at Play (Butterfly),10710,1483726,32 +48855,Woman on boat,42062,127519,5 +48856,Lulu,61991,234659,3 +48857,Alice,25694,94105,0 +48858,Lakmé / Dagmar,18352,327724,2 +48859,Vellini,2002,18514,0 +48860,Reporter,31984,1296236,12 +48861,Dr. Jarret,41759,2714,1 +48862,Himself,400668,1239088,5 +48863,Berggeist,13305,22902,4 +48864,Dr. Fredericks,45692,14518,4 +48865,Chief,297762,1823591,12 +48866,Gen. Stark,31067,17200,9 +48867,,338729,1425274,22 +48868,Elvira Pavlovna,256520,271091,3 +48869,Tus,9543,52890,5 +48870,Carter,172847,58873,1 +48871,John Cockerill,345003,1488063,15 +48872,Felix O'Neal,305932,1389034,0 +48873,Special Guest Bruce,282268,1926,7 +48874,Crime Scene Trooper,23382,90042,5 +48875,Spazokefalos,185111,1663379,5 +48876,Young Vincent,10066,62751,10 +48877,Reporter at Airport,94551,83994,11 +48878,Frantic Pig (voice),269149,77880,14 +48879,Magnus,86980,141983,8 +48880,My Little Pony Booth Girl (uncredited),214756,1759661,83 +48881,Ipro,150223,1870832,20 +48882,Reporter,38437,120462,20 +48883,Crazy Briggs,54099,101784,5 +48884,Dende,39103,85287,7 +48885,Beadle,51247,129452,9 +48886,Damien,314011,1200852,5 +48887,Dorotea,64965,34027,2 +48888,Otac,15303,102385,12 +48889,Interviewee,17654,1086505,4 +48890,Marfa - Hostess At Inn (uncredited),120831,244801,6 +48891,Passerby at Willie's House,28421,115366,26 +48892,Scared Mother,16151,79717,30 +48893,Peter Colley - as a Young Man,42852,11859,3 +48894,Ilona,9389,544659,8 +48895,Alina Cherenko,26116,94700,10 +48896,Himself,329690,1224942,7 +48897,Alexandra Parkman,78522,99417,1 +48898,Pauline,266044,1001676,11 +48899,Ebow,213842,5294,4 +48900,Giovanni De Santis,56339,72785,3 +48901,Yuri,26116,94696,5 +48902,Nikki,25060,93091,2 +48903,Warren Odom,180576,3926,0 +48904,Adult Rachel,39334,122676,1 +48905,Ward Rodriguez-Levine,259997,1198438,25 +48906,Munir,43989,129981,6 +48907,Dr. Bradley,26516,89525,9 +48908,Hildegard,269258,146942,21 +48909,Heartbreaker,44257,2963,1 +48910,Ethan,445602,545399,7 +48911,Jenny,51999,935,10 +48912,Fedya,49574,142500,1 +48913,Funeral Attendent,379959,1604102,15 +48914,Troy Saunders,27549,1328640,8 +48915,Allen Rawley,58462,84625,11 +48916,Effie,150338,21009,11 +48917,Gema,109690,227073,6 +48918,Vecina de Macario (uncredited),122019,1066889,23 +48919,Christine,353728,1697398,15 +48920,,228407,1418885,4 +48921,Pete,316042,84021,1 +48922,Rachel Bedford,12707,44079,1 +48923,L'enseignante,54155,1158465,13 +48924,,88285,29092,10 +48925,Burke's Father-in-Law,25643,8349,3 +48926,Myung-woo Ko,10103,63438,0 +48927,Bob Slade,37292,10545,10 +48928,Jochen Hensel,265432,8196,3 +48929,Саахов,330878,237429,2 +48930,Severin,450530,118034,14 +48931,Lamková,6079,137021,12 +48932,,118257,223844,3 +48933,The Conceited Man (voice),309809,93532,17 +48934,Jim Crelliman,34977,13356,5 +48935,'Red',153162,587264,20 +48936,Tammy Tarleton,351365,215918,1 +48937,Taira Kiyomori,45987,128022,1 +48938,,56666,35782,7 +48939,Mrs. Sinclair,369885,72307,10 +48940,,202984,1205,1 +48941,Mug (uncredited),43522,34168,52 +48942,Waitress,57597,173428,12 +48943,Herself,334461,173065,14 +48944,Madoka Fujimura,41261,83926,5 +48945,Leningrad Cowboy,30366,1076424,4 +48946,,63538,86847,8 +48947,Analyst,48717,1184301,0 +48948,Beth,109453,14405,1 +48949,Meg Bowles,121052,87747,2 +48950,Second Fiddle Waiter,360592,1512182,7 +48951,Farmer Bob,13827,8261,2 +48952,,372113,140868,2 +48953,,69310,112563,32 +48954,Herself,417870,66586,32 +48955,Gina,11354,162413,11 +48956,Vidvan Singh,280690,85450,5 +48957,Dave,258509,11662,2 +48958,Onodera,31512,27791,7 +48959,Zaphod Beeblbrox,64353,177987,4 +48960,Joaquín father,43432,628641,9 +48961,Tavern Owner,104376,125341,11 +48962,Agent Higgins,266433,435044,6 +48963,Alex Carroll,135713,1103652,2 +48964,Lawrence Teft,94225,49357,0 +48965,Tonderai Infant,13823,75777,14 +48966,Vezio,217648,550283,6 +48967,Burley Driver,40990,1235168,6 +48968,Aylon,21001,97178,5 +48969,Omori guard,227306,1394432,33 +48970,il cameriere,43548,1377952,16 +48971,João,267579,92193,3 +48972,Gangster,300983,237687,6 +48973,Hettie,29694,47439,3 +48974,Himself,15258,78303,13 +48975,Hazel,323665,1102331,7 +48976,zware jongen,35016,1105149,16 +48977,,12206,2913,16 +48978,"Cpl. Merriell ""Snafu"" Shelton",189197,17838,7 +48979,Mother,15936,35515,8 +48980,Grant,128588,22479,5 +48981,Tarquin,237584,1494336,20 +48982,Deborah Martin,24874,92774,0 +48983,Muse,109424,1261694,9 +48984,Lee Montgomery,1991,17628,8 +48985,Groom,10389,551624,37 +48986,Libba,68387,17236,0 +48987,Bodyguard,34977,90333,10 +48988,Hossein,252171,116907,2 +48989,Shelly,31821,23211,13 +48990,Fernando,104081,1035543,2 +48991,Eowyn,1361,12998,9 +48992,Liam,372640,19115,7 +48993,Kurt,27941,555656,9 +48994,Parashuraman,134474,1332753,13 +48995,Dr. Klinsch,203321,21978,11 +48996,John Kingsley,89086,7666,7 +48997,Supermarket Little Girl,242224,1413778,20 +48998,Negroni,78318,94401,24 +48999,CJSOTF Commander,193756,1283044,18 +49000,Hung,222216,52908,2 +49001,Major Woodford,38027,39428,21 +49002,Declan,747,7060,11 +49003,Audrey Glamour,293271,85386,9 +49004,Professor,179066,104805,9 +49005,,136368,1105573,0 +49006,Zweiter Geschworener,269165,1061875,1 +49007,Dave Danner,42634,28906,2 +49008,Sölvi,268618,1065016,3 +49009,Clerk,109716,32438,82 +49010,Page,3059,123521,42 +49011,Kinjo no ko,52047,1082746,10 +49012,Charles Rivers,43228,115460,11 +49013,Toshi,26368,554513,1 +49014,Dr. Dent,345003,38559,2 +49015,Barry,71668,130227,1 +49016,Leena,109861,88866,9 +49017,Ship's passenger,39943,121323,10 +49018,Ina Schuster,212503,1434411,10 +49019,Himself (Archive Footage),448449,1832742,5 +49020,Sherazade,317389,1412590,2 +49021,Trupo's detective in library (uncredited),4982,205136,103 +49022,Peter,251232,112317,9 +49023,Park Jung-woo,37502,68903,6 +49024,Staffer #1,358895,1216129,16 +49025,Lieutenant Burridge,300155,97505,8 +49026,Franya,292656,1461122,7 +49027,Gosha,390880,1384684,12 +49028,Lieutenant General Luntz,72431,29512,11 +49029,Sergio Mendes,4551,1231780,18 +49030,Kindergarten Teacher,13436,1656885,25 +49031,Dancer,11172,1587180,42 +49032,Dr. Taylor,4931,54565,11 +49033,Hoyt Wells,116232,105810,10 +49034,,384373,1582131,6 +49035,Dr. Murphy,128215,1202911,13 +49036,Ellen,31984,1464284,7 +49037,Wayne the Challenger / Francesco / Eggbert / Leopard Seal (voice),65759,1445417,19 +49038,Raven Darkholme / Mystique,127585,72129,3 +49039,,54959,35819,7 +49040,Carys,37665,11671,0 +49041,,55167,1384990,13 +49042,Doctor,28448,100839,2 +49043,Katya's father,70966,99262,2 +49044,Legolas,122,114,4 +49045,Restaurant Barman (uncredited),18774,9126,24 +49046,Shaw,351901,1170014,1 +49047,Faye,330947,108916,2 +49048,,276846,105652,11 +49049,Gopal,1912,35540,13 +49050,Kalle,148478,16778,4 +49051,Akira,35451,114305,1 +49052,World History Teacher,83389,1414,13 +49053,,45441,1035394,16 +49054,Faber - Henchman,47404,236567,20 +49055,Hela / Halja,284053,112,2 +49056,"Barbara Kwiatkowska, matka Grzesia i Jędrka",155325,1138528,4 +49057,Young Angelique,62213,1055230,14 +49058,Min,107682,64895,1 +49059,Belle Aragon,32634,1430614,13 +49060,Harold's Girl Friend,76465,1161141,8 +49061,Young Amelia,8915,1255312,12 +49062,,38164,147165,8 +49063,Bloodyface,23382,90041,4 +49064,Kenneth,15749,4138,2 +49065,Sally Huang,107811,19859,7 +49066,John,5552,9005,3 +49067,Corporal Katasonov,31442,119568,6 +49068,Raymond Lapade,3476,32092,8 +49069,Madelaine,266285,10912,1 +49070,Maggie,413992,1345495,4 +49071,Smat,13600,82146,13 +49072,Madame B,99861,1146,21 +49073,Stanley,253310,104561,2 +49074,Sheriff Billy Carter,43753,39774,4 +49075,Mr. Doctor Aesop,340275,155086,27 +49076,Cato Fong,6081,21944,3 +49077,Air Force One Pilot,230179,1822160,15 +49078,Prof. Daniel Marais,13823,16758,5 +49079,Clip from 'On the Town' (archive footage),33740,103704,56 +49080,James 'Jimmy' Higgens,43903,19328,1 +49081,Reporter Jane,15090,1115150,13 +49082,,47448,224565,4 +49083,Rashad,13960,76126,0 +49084,Velma,11024,1817,3 +49085,Kate Banks,383535,33350,2 +49086,Mr. Stevens,232100,1039181,10 +49087,Palmer Williams,3291,17867,11 +49088,Dora,35016,24407,5 +49089,Scooter / Janice / Miss Poogy / Bobby Benson / Wayne (voice),145220,192632,16 +49090,Himself,90800,7173,0 +49091,Alicia,159667,1159345,8 +49092,Marilou,87148,1269244,3 +49093,Henry,244783,1088672,3 +49094,Simon Larsson,82448,137905,0 +49095,Le cantinier,166883,298988,12 +49096,Janek,39936,1482162,0 +49097,Gary,158990,130129,15 +49098,Peter Easterman,381518,4581,3 +49099,Hernandez,60071,17413,5 +49100,Carla,21619,87714,4 +49101,Annie Sutton,2979,117174,6 +49102,Kenny,93935,228794,2 +49103,Bret Harte,120747,8516,5 +49104,Lord Rohan,41996,2091,2 +49105,Man at Party,134238,1317660,31 +49106,Auctioneer,43464,41750,7 +49107,Bob Baffert,197583,1302828,7 +49108,Anchor 1,270654,42169,23 +49109,Maew,13436,1656869,5 +49110,Sara Kovac,105254,47404,3 +49111,Cocoanut Grove Band Member,2567,28009,26 +49112,Ink,13056,4134,10 +49113,Charlie,9966,61136,14 +49114,Theresa,58887,228618,1 +49115,Student,26516,1208034,17 +49116,Canon Kuforiji,325803,1428021,7 +49117,Casey,33788,67737,4 +49118,Stan's Doctor,62838,2130,15 +49119,César Fleminckx,298396,1376478,0 +49120,Gita,27621,1037356,6 +49121,Karen Cross,5289,42707,6 +49122,Bubba,123969,228119,2 +49123,National Intelligence Director,38356,3910,3 +49124,Townsman Store Owner (uncredited),14615,217770,38 +49125,Jimmy Carter,228970,59014,11 +49126,Himself (Archive Footage),448449,93279,3 +49127,Stubby,35558,427978,15 +49128,Himself,180813,582649,2 +49129,Miami Man,316154,117642,1 +49130,Beryl,213681,196843,16 +49131,,185987,119185,8 +49132,Neznaika,41581,126967,0 +49133,Professor Rasai,14134,35759,9 +49134,King Louis XI,148636,31431,5 +49135,May Hellerman,43931,14984,10 +49136,Karen,25973,94147,9 +49137,Officer Morgan,286372,1352333,5 +49138,Judas Iscariot,30973,99183,5 +49139,Tim,215928,1200536,5 +49140,Rob,426264,47632,1 +49141,Mrs. Barrie,43526,21878,7 +49142,Marie's father,20108,143034,4 +49143,Minister,260947,980356,10 +49144,Stéphane,10484,1676551,12 +49145,EMT,354979,1835278,61 +49146,Elder Brother,188598,1776743,19 +49147,la femme enceinte,78789,59826,3 +49148,Han-na,108972,1046862,3 +49149,Fire Maiden,31280,1452395,12 +49150,Lynn Hope,99374,29908,1 +49151,Himself,157117,87054,13 +49152,Tyler Harne,272878,967781,5 +49153,,56942,1619202,11 +49154,Charlotte,13993,71552,5 +49155,Tom Nelson,31287,102920,0 +49156,Ring Girl (uncredited),312221,1746965,70 +49157,,289232,1548314,6 +49158,Cobb,11509,6197,4 +49159,Detective,96713,13854,5 +49160,"Giuseppe Marchi, il testimone",117913,132196,2 +49161,Doctor,9966,33046,12 +49162,Breffni,18595,111837,8 +49163,Genesis' Gang,12720,144933,10 +49164,Lily,12920,1951,3 +49165,Jack Strawhorn,45874,6905,1 +49166,Michio Yuki,36063,117974,0 +49167,Rosario 'Sasà' Scimoni,82470,45982,0 +49168,Stiles the butler,38437,120453,8 +49169,The Banker,28293,2933,11 +49170,Lazy Eye,83666,1105080,11 +49171,Marriage Registrar (uncredited),47653,1415451,8 +49172,Young Lieutenant,110502,51377,12 +49173,Blofeld's Right Hand Man,206647,1129783,27 +49174,Peter Maximoff / Quicksilver,127585,55089,14 +49175,Bobby 'Carlo' Powers,26390,7132,4 +49176,Jean La Cour,1976,16766,9 +49177,Fred MacLane,229638,97007,6 +49178,Martin Hoffmann,40130,37307,1 +49179,Francine Fournier,41277,586196,20 +49180,Witness for Peace,2143,132922,44 +49181,Myriam,49559,395295,3 +49182,Crybaby ghost,62439,93996,17 +49183,Hofstadder,179154,5576,3 +49184,Bernardo,139519,127247,5 +49185,Opera Security,177677,1562089,39 +49186,The King ('The Dancing Princess'),28367,2771,12 +49187,Overbearing Mother,42057,75067,10 +49188,Brent Mitchell,46420,109438,0 +49189,Grovel (voice),59297,122661,2 +49190,Sara,227871,98735,3 +49191,Torma,94663,125744,3 +49192,Eversti,55759,89502,4 +49193,Vito Genovese,33357,15397,1 +49194,Robart,37609,17073,16 +49195,Pascaud,59118,44234,9 +49196,Emmett,11509,349,1 +49197,Prisoner (uncredited),213681,1539843,73 +49198,Sarah,93676,1782153,19 +49199,Mrs. Cushing,32082,36926,7 +49200,Reporter Yoo Bo-hyeon,101766,127706,5 +49201,Heartbroken Woman,44257,4784,0 +49202,Dan,1116,15498,2 +49203,Fefer,117629,1169894,6 +49204,The Green Hornet (voice),250332,1221455,43 +49205,Smith (uncredited),43522,141064,56 +49206,Charlotte Bertaud,10795,66838,11 +49207,Le croque-mort,377853,2201,11 +49208,Bittoo Sharma,52696,224223,0 +49209,The Policeman,43976,1493006,1 +49210,Wemmick's Neighbour (uncredited),121674,1854056,38 +49211,Dennis,98557,15564,13 +49212,Qiu Luo Dong,10703,936373,8 +49213,Actrice,382589,1318260,23 +49214,Blackie,18747,1361024,22 +49215,,68123,1660681,9 +49216,Val Duncan,16876,59216,0 +49217,Steve Crandall,130717,29347,6 +49218,Keith,10900,67712,18 +49219,Wes,7233,230868,8 +49220,Paula,293970,98272,8 +49221,Chad,87428,16501,11 +49222,Heidi,382125,1576785,10 +49223,Katie - Cloe's Mom,14123,164636,15 +49224,amante di Dedé,108535,1465376,26 +49225,Millicent,51247,189418,10 +49226,Jim Haskell,105059,3641,10 +49227,Louis Owens,43471,130003,9 +49228,Susan Cabot,8852,184436,6 +49229,Mrs. Hoskins,166904,102002,12 +49230,Mrs. Geary (uncredited),43522,1176930,28 +49231,Amos Judd,184267,116367,0 +49232,Uncle Rob,276906,110283,6 +49233,Mom,14254,172997,4 +49234,Charlotte,308024,73937,4 +49235,Club Receptionist,32577,1763863,26 +49236,Liu Shaoqi,25626,1624092,11 +49237,Shi San Liang,70057,84205,4 +49238,Capt. Beyman,5237,663,3 +49239,General Williams,86305,27737,4 +49240,New York Reporter When Knute is Ill,43812,2776,55 +49241,Jürgen,9483,15381,1 +49242,Dr. Rubicoff,30941,124007,13 +49243,Elder councilman,1271,29463,18 +49244,Dr. Julie Benson,109122,120044,1 +49245,,35790,1661208,11 +49246,Captain Leversuch,352733,1359415,6 +49247,Regisseur,80125,1335455,10 +49248,Elaine Winslow,29286,30415,4 +49249,Ann,13374,27561,2 +49250,Craig,335498,111464,8 +49251,Timmy's Biker Guy,1550,1594636,28 +49252,Gas Station Attendent,58411,227800,12 +49253,Valbona,228290,131657,2 +49254,,186971,1605806,22 +49255,Назар Дума,20879,86709,0 +49256,Don Luis,17893,257448,8 +49257,Brian Shepherd,35656,110244,12 +49258,Captain Phasma,140607,1011904,14 +49259,Frédéric's Mother,29128,104212,2 +49260,Doris Marshall,70046,6007,11 +49261,Camiel Vrolijk,19398,144199,1 +49262,King Edward IV,46758,1605317,1 +49263,Geetha,63825,81926,5 +49264,Klavdia Vavilova,71336,86682,0 +49265,"Joey De Carlo, Jr.",297853,27973,15 +49266,Michi,329440,584143,2 +49267,W.A.A.F.,41312,97429,8 +49268,Jary,9812,55637,13 +49269,Ben,14145,2050,1 +49270,Johan Dreyer,339530,1029029,4 +49271,Martin,336806,221034,3 +49272,Glenn,49940,11044,7 +49273,Padre,96419,1451306,4 +49274,Reporter (voice),308269,1447890,14 +49275,12 Year Old Tammy,14923,99207,17 +49276,Rose,199575,1265629,2 +49277,Robert,72105,1204318,8 +49278,Schwester Gudrun,42206,2740,6 +49279,Country Doctor,110980,100806,11 +49280,Miss Irma Gilbert,76011,13963,5 +49281,Krogstad,42457,656,3 +49282,Mãe,436339,71283,3 +49283,Sam,84228,59231,3 +49284,Gesuina,107035,553896,2 +49285,Georg Nolte,12631,47033,1 +49286,Clip from 'Idiot's Delight (archive footage) (uncredited),33740,30211,68 +49287,Homeless Guy,353979,62824,7 +49288,Narrator,14885,28010,7 +49289,Sonia,146270,87849,1 +49290,,17935,549586,7 +49291,Lt. Kingsford,81110,30136,7 +49292,Antonio Salas,58587,16441,0 +49293,Ellen Barethon,205939,1188325,3 +49294,Company Clerk,87060,47383,15 +49295,Ochi,17895,82963,13 +49296,Inspector Fix,10204,1125,21 +49297,"D. Elvira, the crazy neighbor",108712,1491373,10 +49298,Randy,135708,10872,0 +49299,Christine,76198,136761,7 +49300,,94352,1001710,3 +49301,Captain Dever,8988,1205880,30 +49302,Dean Moriarty / Neal Cassady,83770,9828,0 +49303,Mr. Bakura,366170,552339,11 +49304,Rebel Iorami,150223,124268,6 +49305,Reverend,107430,170543,6 +49306,Sheila Albany,244580,17286,4 +49307,Cliff Donner,170517,1035490,2 +49308,Charles' First Nursemaid,14589,33034,34 +49309,Mercenary 3,70981,1838468,17 +49310,Shelley Baum,6933,22122,8 +49311,Varjú Béla,94663,1253428,7 +49312,Carletto,155597,129007,9 +49313,Arthur Eddington,15044,20049,0 +49314,Sam,14554,94293,9 +49315,,331641,4369,3 +49316,2nd Man in Bar,23750,4317,25 +49317,Lila,215881,1205408,7 +49318,Attorney General,21070,39645,2 +49319,Bank Patron,339403,1635135,25 +49320,Charmaine,51875,1294,3 +49321,Šejla,177155,1334945,8 +49322,,289679,34593,2 +49323,Teacher,300090,1384815,14 +49324,Megan Stark,15006,4726,1 +49325,Roy 'The Word' Donahue,29798,5695,2 +49326,Sheila Munroe,46885,41223,2 +49327,Min-yeong,53514,1156197,5 +49328,Trudy Sinclair,10066,62748,8 +49329,Penny,20,2321,8 +49330,The Nephew,39992,237057,8 +49331,Monarch Soccer Coach (uncredited),337339,1805197,68 +49332,,92132,22831,5 +49333,Aai (Maya's Mother),20742,86555,9 +49334,Herself,407806,938972,1 +49335,Himself,47426,141683,8 +49336,Sam Two Feathers,42448,66670,5 +49337,Angelina,267481,1257128,10 +49338,Old Nurse,362439,1523668,11 +49339,Prince Saliano,80720,1547,3 +49340,Herself,338063,1581552,3 +49341,Sheriff Andy Andrews,28775,96240,6 +49342,Jeune de quartier 2,277839,1588451,11 +49343,Quinton,380124,1526926,8 +49344,Nilu,426230,1833230,21 +49345,Juwelen-Anna,12206,37910,8 +49346,Carl Galenski,199373,15376,12 +49347,Trench,76163,1100,4 +49348,Colby Allen,14569,166701,2 +49349,,353879,35747,1 +49350,Terrified Man,178809,1178764,11 +49351,Gouo,11795,1408162,6 +49352,Judge Joseph M. Doolittle,18569,11169,2 +49353,Sorority Girl,77930,1784623,34 +49354,Man with Popcorn in His Nose (uncredited),61644,606215,17 +49355,Owner of Watch Shop,14525,551777,14 +49356,Kenny,82485,17834,6 +49357,Rebecca,226167,1278592,5 +49358,Cudjo,42242,10225,7 +49359,The Boy,84473,38170,1 +49360,Duval,127812,975120,8 +49361,Frank,12255,22461,3 +49362,Symes,58076,1234783,6 +49363,Alice,241374,1054252,9 +49364,Boss,213681,111451,35 +49365,Princess Elzbieta,149511,55972,5 +49366,,177354,6976,3 +49367,Zana Wilder,12412,11703,7 +49368,J.C. Crawford,285400,34234,6 +49369,Bobo the Caretaker,120478,1072877,8 +49370,Attila the Hun,181533,17837,16 +49371,Seo Jae-sik,15067,42799,15 +49372,Linda,31150,42935,1 +49373,Coco,34092,27836,6 +49374,"Félix, le patron du bistrot",60824,20800,7 +49375,Kimi's father,101838,1029080,10 +49376,Narrator (voice),1273,2975,6 +49377,Lucille Abshire,24420,54652,8 +49378,Harry Hume,5289,17933,10 +49379,Meru Ozawa,12561,72820,4 +49380,Nick Andros,13519,2879,6 +49381,Carl Allen,10201,206,0 +49382,Shank,42533,102795,6 +49383,Andreas Hartmann,101183,6809,1 +49384,Tung-Tung,92989,1656519,1 +49385,Cotton McKnight,9472,21163,12 +49386,Hot Bartender,255491,1302965,11 +49387,Jailer,157343,30160,40 +49388,Obake (Ghost),33333,117975,6 +49389,Harrigan (uncredited),43522,83397,64 +49390,Suzanne Barrington,176085,1034504,0 +49391,Stephanie's Majordomo,31993,1045272,37 +49392,Chloe,209263,1142629,14 +49393,Kidnapper,19621,115483,14 +49394,Sal Fontaine,43727,9046,5 +49395,Icebreakers Announcer,23964,963962,6 +49396,Himself (archive footage),318224,1450886,17 +49397,proprietario dell'albergo,43646,1339106,9 +49398,Ling Ling Fat,37702,57607,0 +49399,Molly Fletcher,92716,12969,5 +49400,Ivan the Guard,145220,2283,21 +49401,Claire Culpepper,70313,101479,5 +49402,Angry Customer,120802,1430438,12 +49403,Pepo,282983,111090,4 +49404,Sarah Leigh / Luann,231082,63206,1 +49405,Don Julián,98582,1065175,8 +49406,Saluds Brother,1721,18840,0 +49407,Senior Technician,68721,430313,39 +49408,Leslie Quayle,90799,41255,5 +49409,Emily (Segment 3),244117,20047,9 +49410,Bride,405473,1800036,32 +49411,Horace,220515,2561,1 +49412,Shiraishi,143946,1008470,17 +49413,Pete Dumond,116327,153460,0 +49414,Un policier,76200,577832,15 +49415,Servant / Driver,105059,103107,9 +49416,Martina,108664,18514,0 +49417,Margari,153561,125287,1 +49418,Federal Office Worker,268920,1749829,57 +49419,Himself,157117,1161964,26 +49420,Hotel Manager,18651,34234,15 +49421,Rhodesia,31867,111513,10 +49422,Miss Wynn,18671,98966,14 +49423,Siostra zakonna,314371,1583943,16 +49424,Boris,4580,38171,4 +49425,Terry's NYC Assistant #1,14923,1386367,63 +49426,Gil ('L'adultère'),98302,3829,9 +49427,Evelyn,44680,70787,2 +49428,,430985,5922,7 +49429,Deborah,391375,150061,6 +49430,Deputy Webb,24150,34398,32 +49431,Young Tommy,243935,1782627,29 +49432,Richard 'Rich' Hughes,298540,55755,2 +49433,Gary Morrison,17317,59011,6 +49434,Leopold Strabismus,266314,29792,9 +49435,Pumla Dube,868,13100,7 +49436,Ted Durand,29610,41256,3 +49437,Voice Box at Hardware Store (voice),9928,15152,17 +49438,Gloria,41115,125498,6 +49439,Roldano Brother,255343,87265,6 +49440,Giacomo,120922,70027,0 +49441,Нечаев,56372,224284,3 +49442,Man with one story,340488,6818,3 +49443,Mable,10710,150186,17 +49444,Count Yugh / The Butler / The Dead Father / Guard / Pharmacist,315855,1646,3 +49445,Bra-Clad Sister,26688,96015,4 +49446,Mrs. Grace Vernay,74525,120010,5 +49447,Sheriff Frank,44287,134671,4 +49448,Marcel Grobz,260312,24683,4 +49449,Ingrid,44936,19679,1 +49450,Policeman,49712,120156,36 +49451,Spike,107319,182535,3 +49452,Fernando,186759,1215525,8 +49453,The Guardian Angel,28299,2091,2 +49454,Madison,251227,1286530,17 +49455,Cynthia Jones,74924,1221286,6 +49456,stand in/doubles,137145,1510898,10 +49457,,352197,1511750,7 +49458,Andy Wolfmeyer,11354,21711,2 +49459,Manager,204255,1221739,12 +49460,Simon Cohen,19398,84638,0 +49461,,53693,1023,20 +49462,Colonello Henderson,58701,12308,1 +49463,администратор гостиницы,330878,86870,8 +49464,Herself (Archive Footage),448449,1832741,4 +49465,Claudia Villafañe,84089,140542,4 +49466,Zac,18898,1239768,12 +49467,Bruno,28592,93126,7 +49468,Jack Lewis,273743,53922,5 +49469,Lina Inverse,125513,40325,1 +49470,Jim,128311,1168175,10 +49471,Cooper,40793,21736,0 +49472,Nikolai Dubinsky,107705,1189304,2 +49473,Doc,383538,171742,21 +49474,Paul Foote,40218,125039,7 +49475,Slim,3023,30111,0 +49476,Melissa,20718,66913,8 +49477,Club Goer,77930,1784650,57 +49478,Kolleeg teatris,46931,137850,14 +49479,Benny,14096,1381691,3 +49480,Samantha James,10033,1772,2 +49481,Spiller (voice),51739,523533,15 +49482,Archie Murdock,60759,1484589,19 +49483,Detective Notes,312174,583871,15 +49484,Rachitique,17582,1619151,6 +49485,Tough Guy,1724,1366355,21 +49486,Miss Busybee,30385,92813,5 +49487,Hani's Girlfriend in Bar,12113,82809,17 +49488,Iceman,22585,15411,1 +49489,Reporter,54146,33730,5 +49490,Pielęgniarka,319999,1138248,7 +49491,Hannah,254188,208225,2 +49492,Angela,274479,1774101,41 +49493,Caleb,215379,82190,7 +49494,,331641,1442570,2 +49495,Ned Kendall,29483,77335,0 +49496,Mitchell,294690,1367224,4 +49497,Lucas Kern,361050,44205,5 +49498,Morris Gentry,352890,1493271,1 +49499,Joan Sheldon,94009,999887,1 +49500,Nathaniel Ayers,17332,134,1 +49501,Sonia,12807,4287,1 +49502,Miyako Sasaki,315846,545825,14 +49503,Choi Suk-Joong,407887,1299313,9 +49504,The Priest,402672,591067,7 +49505,Gen. Phillips,12796,13327,6 +49506,Long Congfeng,63441,1140991,7 +49507,Wedding Guest (uncredited),214756,1757043,78 +49508,Ratko,109587,15265,0 +49509,Julia,278632,121574,1 +49510,Asst. Crew Chief,15807,30272,5 +49511,Eleanor Johnson,13092,12214,4 +49512,Sailor (uncredited),10178,1498726,34 +49513,Laura Danner,15006,94516,5 +49514,Reggie,397717,1456750,14 +49515,Woman driver,117506,1621714,16 +49516,El Poca,4497,37508,7 +49517,Jennifer,29128,101576,1 +49518,Mrs. Flynn,80368,42572,9 +49519,,98203,278923,28 +49520,Omar,1991,58744,17 +49521,Secretary,56948,933268,9 +49522,Padre,42225,27208,0 +49523,Shrink,126442,87707,5 +49524,Major Ram Prasad Sharma,14134,35742,0 +49525,Oma von Flo,61035,4217,24 +49526,Lt. Cdr. Bob Raeburn,17657,119485,7 +49527,Ady Forte,19235,84791,6 +49528,Lotte Hoffmeister,214081,15556,0 +49529,,328692,211227,7 +49530,"Michael, Prince of Russia",58905,1468057,19 +49531,Creepy Kid,12279,38407,24 +49532,Mr. John P. Tuttle,42305,1943,3 +49533,Cristina,335053,512958,5 +49534,Le vicomte de Mareuil,2002,20574,10 +49535,Baobao,388764,130598,5 +49536,Hannah,84355,14892,2 +49537,Nai Than,39907,149862,5 +49538,Governor Meserve,332411,117437,4 +49539,Mick Ashton,95140,43265,3 +49540,Member of Band,38769,142527,23 +49541,Kyle,253235,5370,15 +49542,,78323,583739,9 +49543,Manas,188927,592496,9 +49544,Guy Gagné (voice),77950,19278,5 +49545,Cop #1,5638,81561,23 +49546,Villager with Dog,13849,73040,10 +49547,Pierre Cauchon - Bishop of Beauvais,43252,10924,23 +49548,"Marc Antony, a Triumvir and General",71266,562263,1 +49549,Cveta,337758,550005,8 +49550,Johnny the perv,45273,132233,12 +49551,Ann Hall,425774,1707882,21 +49552,Maria Assunta Maddalena,161545,1496180,16 +49553,,391778,55063,6 +49554,Ellen Fielding,44001,130002,9 +49555,Innkeeper,77728,7071,3 +49556,Alice Campbell,47459,32129,5 +49557,Il commissario Betti,94809,85338,0 +49558,Prince Nicholas / Nicki,169355,14685,2 +49559,Convention Hall Attendee,616,1593805,23 +49560,Oldie Bowling Alley Man,14923,86812,33 +49561,Manta,51800,1317375,15 +49562,Breakfast TV Presenter/Herself,250535,1824914,23 +49563,Wedding Guest,43809,1010443,36 +49564,Danny,344906,1473957,5 +49565,Anna Curtis,83995,99374,1 +49566,Riley,84907,75330,1 +49567,Curious Man,31867,1627909,13 +49568,Mrs. Alicia Brunner,38962,106631,2 +49569,chinesischer Bauernjunge,277968,1898511,50 +49570,Mrs. Simpson,26131,222719,9 +49571,Conductors / Umpire,15213,155549,11 +49572,Frank Olins,20028,3243,3 +49573,Vitaly Petrov (voice),49013,1443756,44 +49574,Stage Driver,377170,34890,31 +49575,LeRoy,216153,1375705,8 +49576,Stormtrooper,330459,87176,68 +49577,Nan Xiang,270842,1193308,2 +49578,Brick Williams,34459,103707,1 +49579,Lorna Melford,85640,40175,1 +49580,George Merry,83191,30316,10 +49581,Beckerwood,112973,173964,5 +49582,Krstan,67633,1043254,6 +49583,Lin Jian-dong,44458,43661,2 +49584,Younger sister (여동생),269494,1372475,5 +49585,Narrator (Voice),186079,1168787,1 +49586,Gordon Knapp,31067,2505,5 +49587,Phil Jackson,60457,167978,4 +49588,Lisa,413391,1445943,5 +49589,Guest at the Ball,179066,9096,28 +49590,Beverly,83890,22122,5 +49591,Gerichtspräsident Kammermeier,52475,35263,6 +49592,Isabelle Morton,148326,14871,2 +49593,Paramedic,214,1795981,12 +49594,Nurse,43113,1484035,86 +49595,,72054,1439239,17 +49596,Dream Girl,316154,1842097,23 +49597,Scullion,26566,592721,15 +49598,Barry Allen / The Flash,209112,132157,25 +49599,Bischof von Grasse,1427,10779,2 +49600,Officer Sanchez,456781,1590282,19 +49601,Helen Keller,1163,15674,0 +49602,,42852,556502,30 +49603,Bruno enfant,2566,26106,9 +49604,Female Dancer,20521,1225909,16 +49605,Cathouse Madame,3574,34757,13 +49606,Quaresma,303982,142320,10 +49607,Duan Qirui,69310,131514,10 +49608,Ferdinand,209248,47301,8 +49609,Eric Baiers,325133,1429453,21 +49610,Amy's Dad,10055,3041,6 +49611,Eevi Rantanen,186292,124871,1 +49612,Kanna Senzaki,162006,1109632,2 +49613,TSA Agent,41733,59841,7 +49614,Bike Guy,26810,124983,9 +49615,Chef,32233,119461,7 +49616,Additional Voices (voice),328111,15762,11 +49617,Thin Fisherman,36212,550568,5 +49618,Wes Anderson,153228,4091,1 +49619,Group Leader,244580,79419,14 +49620,Violet,243683,1397770,16 +49621,Nigel Mason,177566,86473,5 +49622,Mãe,428645,145609,2 +49623,,59147,58787,10 +49624,The Big Kahuna,65416,26847,2 +49625,Journalist,80324,7109,9 +49626,Louise Miles (as Diana Vandervlis),62033,109408,7 +49627,,264264,96958,9 +49628,"(segment ""Miminashi Hôichi no hanashi"")",30959,552662,45 +49629,Sabena Spence / Dara Flagg,175998,101176,0 +49630,Susie Smith,30624,10607,2 +49631,Léa,366548,1308806,7 +49632,Watney Smith,31131,105364,4 +49633,Tony,47201,99815,7 +49634,Charles Otis,31042,114429,5 +49635,Nina,105768,1200667,3 +49636,"Mr. Waterbury, Jr.",179066,144004,61 +49637,Piano,43987,150697,12 +49638,Zero Wolf,1579,17688,1 +49639,Dwight Dickham,205587,879,5 +49640,,46492,136385,10 +49641,Maggie Williams,95358,7504,2 +49642,RAF Motorcyclist,369885,1651423,63 +49643,İnek Şaban,31408,97272,2 +49644,Stationmaster,79735,83149,13 +49645,Grammie,14882,6721,4 +49646,Georgie,240733,1102526,8 +49647,Dr. Ron Young,44661,8395,0 +49648,Paco Oliveros,46773,575774,1 +49649,Beth Row,31118,987107,0 +49650,Kai Licht,212503,1326947,8 +49651,Rebecca,52021,100858,3 +49652,Dec,508,59068,33 +49653,Zackery,79869,30050,1 +49654,Winston Smith,1984,8254,0 +49655,Pat James,43855,99891,10 +49656,Bertha,174925,148803,10 +49657,Policeman,28421,32438,54 +49658,Jack the Barman,31984,1769062,24 +49659,Dr. Gillespie,153161,17753,0 +49660,Paul Faber,39001,6212,3 +49661,,73545,1190398,0 +49662,Lea,397422,3416,7 +49663,Gilda,173847,8776,0 +49664,Lenny,18088,91494,4 +49665,Farmer,57201,569548,55 +49666,Abdel Shani Essadi,13312,41881,13 +49667,Mary,384682,1240487,4 +49668,Im Na-mi,77117,1295456,0 +49669,"(segment ""Kurokami"")",30959,552643,8 +49670,Norris,11577,32786,29 +49671,Pvt. Nakano,39519,136550,10 +49672,Karl-Heinz,91628,1263404,9 +49673,Stephen Elliott,274504,17051,0 +49674,Matilda (voice),153518,52792,3 +49675,,83761,1720055,6 +49676,Dolores,62045,8602,1 +49677,Chinese Man,290764,1428152,21 +49678,Kid in SUV,1726,1209709,43 +49679,Bracalone,11813,52657,1 +49680,Betty,38964,109847,5 +49681,Victor 2 years,72875,568024,13 +49682,Mrs. Spiegel,17745,82345,19 +49683,Fireman,53417,21312,7 +49684,John Riggs / Nick Starnes,47745,96850,0 +49685,Rolf,10916,8180,13 +49686,"""Silny""",278867,481162,12 +49687,Ward Willoughby,20644,2672,3 +49688,Ryan,51836,133926,8 +49689,Eddie Colman,62441,1205629,10 +49690,Ryota Kane,3115,30566,4 +49691,Professor Roseman,10274,11512,5 +49692,Theophilus Freeman,76203,13242,8 +49693,Luke,1450,30710,5 +49694,Thapa,39217,35756,6 +49695,U.S. Marshal John Travers,38107,4165,0 +49696,,34019,1108891,11 +49697,Ungarischer Grenzbeamter,3716,33681,6 +49698,Baltazar Charles,56601,145059,8 +49699,Sheriff Andy,166161,1169980,4 +49700,Hot Guy,26688,96032,26 +49701,Sir Gerald 'Jerry' Markham,162862,89091,1 +49702,Side role,398786,1860081,20 +49703,District Attorney,118953,97007,10 +49704,Lille-Trond,10119,63759,12 +49705,Head Waiter,135390,3849,6 +49706,,218772,1203507,9 +49707,Mrs. Krabappel (voice),35,6036,9 +49708,Cali,314420,1355798,2 +49709,Postelnicul Butnaru,112675,85228,6 +49710,Laura (voice),16137,19116,1 +49711,KnightsTemplar Aimard,17669,113892,9 +49712,"Danny Rimett, Golden Rooster Mgr.",25633,94030,7 +49713,Myrna,83223,1161730,6 +49714,,90231,91522,20 +49715,Nurse Royster,278316,1333667,7 +49716,Tony Ravello,13025,81097,2 +49717,Hank McCoy / Beast,127585,3292,10 +49718,se stesso,302802,101556,19 +49719,Chirag Gupta,82650,111923,10 +49720,Peter Rinaldi,45431,58293,1 +49721,,264264,1002639,14 +49722,Dancer,78177,583274,15 +49723,Лёня Пряхин,65142,939188,3 +49724,Laura,27840,99138,10 +49725,Rocío,14430,1486199,22 +49726,Alexia,346672,1070886,8 +49727,Doc,414977,1425463,2 +49728,The grandmother,12276,74021,5 +49729,Chinese professor,10610,66122,10 +49730,Laura,45725,1063,3 +49731,Tang Manrou,76349,1006594,17 +49732,1935 Fan (uncredited),921,1444763,63 +49733,Craig Gavin,120478,1072143,3 +49734,Lisa Clark,40983,123711,17 +49735,Bride's Mother in Wedding Group,80596,29258,19 +49736,,86985,258901,12 +49737,Lon,43250,2645,9 +49738,Teacher,188161,1542942,36 +49739,Himself,366696,1753487,13 +49740,Police Captain,74911,14455,6 +49741,Darla - Corny Collins Council,2976,1752319,41 +49742,Wombo (voice),339669,22,7 +49743,Prison Guard (uncredited),28564,120818,15 +49744,Torgus,277778,981033,5 +49745,Hora,14066,20982,2 +49746,Teacher,16320,39464,16 +49747,Scapece,85038,1293959,6 +49748,Chauffeur,394645,1275092,16 +49749,Muallin,43464,14529,10 +49750,Hayato Kobayashi,39230,553396,4 +49751,Father Juge,286532,590,23 +49752,Ingrid,73827,15399,1 +49753,Hayden,13058,41042,1 +49754,"Rentoft, direktør",87654,227257,2 +49755,Glen Aldrich,3563,35521,25 +49756,Police Capt. Ridge,250332,30202,50 +49757,Man #2,46760,937381,0 +49758,Gwyneth,17927,82662,8 +49759,Ana,172457,1155087,3 +49760,Sorority Girl in Sweats,25450,85955,14 +49761,Federica,42892,1139380,9 +49762,Kabai,94663,146820,2 +49763,Red Circle Club Goer (uncredited),245891,1584909,31 +49764,Teresa 'Terry' Taylor,94568,52754,0 +49765,Annie,227266,550598,0 +49766,Mad Ax,8008,53577,6 +49767,Giggles,381054,1047520,2 +49768,Chicca,59046,228756,3 +49769,Alicia Rivera,34482,112473,4 +49770,Minor Role,43833,120149,15 +49771,,54959,1095294,10 +49772,Sharla / Gareth / Hippo kid (voice),269149,1610450,36 +49773,Sergeant Shan,13807,63582,12 +49774,Ramis,267852,1343690,9 +49775,Draco,32091,81053,9 +49776,Dr. Daninsky,254188,62146,20 +49777,Ellen,13072,8211,8 +49778,Darnley,43875,2928,3 +49779,Healy,193756,1278777,9 +49780,"(segment ""Miminashi Hôichi no hanashi"")",30959,552668,52 +49781,Little Jedda,118490,1541361,5 +49782,Bertha,322266,12134,2 +49783,Robert,55347,118045,30 +49784,Saul 'Shloimele' Reichman,362463,1518293,1 +49785,Candy,85431,1268728,9 +49786,Jacqueline,207850,1634913,7 +49787,"Alexandre Dumas, Sr.",92796,85988,8 +49788,Jacques De Bascher,245775,133091,4 +49789,Ticket Clerk,111582,137203,19 +49790,Carey Fleming,46368,81270,2 +49791,Pitcher,229182,1602045,7 +49792,Mara,46982,1537647,13 +49793,Kendra,226269,1327269,7 +49794,Dancer at Gala,37710,1496182,43 +49795,Jean Martin,70090,148082,3 +49796,Romero,80389,17689,11 +49797,Det. Sgt. Cole,45726,95666,8 +49798,"Amelia, Mortimer's Sister",193959,121416,3 +49799,Jack,17317,1123871,15 +49800,Uncle Phil,43727,20212,3 +49801,Himself (archive footage),184363,1903780,8 +49802,Caretaker's Assistant,45013,572076,54 +49803,George,274857,67212,8 +49804,Constable Blainey,14215,1525318,8 +49805,Hiro,25684,94087,1 +49806,Toastmaster,150117,1451333,20 +49807,Pyotor Drozdov,77185,80999,0 +49808,Grasselli / Chips Maguire,64928,4110,2 +49809,Greg Ganley,245706,31512,5 +49810,,63859,13262,11 +49811,Chastity,51481,86132,5 +49812,Jeremy,136386,86133,2 +49813,Herself - Model,327083,77897,6 +49814,Lt. Karl 'Helo' Agathon,69315,77223,11 +49815,Mr. Avery,56558,105454,18 +49816,Det. Sgt. Cotter,37929,119142,18 +49817,Leonidas' Mother,1271,181248,15 +49818,Mrs. Lewis,174188,86267,7 +49819,,416569,52357,7 +49820,Anjali,20359,81927,4 +49821,Seeker Hawke,72710,1112417,27 +49822,Le concierge de l'hôtel,77673,24544,17 +49823,Daisy Kenyon,20301,31550,0 +49824,Police Captain H.B. Collins,43117,96701,9 +49825,Roddeltante,25797,934585,11 +49826,Freuchen,70667,64122,9 +49827,Bethany Williams,200727,1325961,2 +49828,Lehká holka,18352,1537587,28 +49829,,10754,66474,15 +49830,Herbert,236324,131738,13 +49831,Michelle,228558,110080,5 +49832,Marek,339342,1076802,12 +49833,Graham,54804,28476,17 +49834,Aircraft Carrier Tech,52454,1011818,28 +49835,Narrator,56143,8841,0 +49836,Lone Man,316154,1392837,9 +49837,Austin Stoker,44888,4094,8 +49838,Christina,282762,1861428,5 +49839,"Fernando, l'aspirante portiere",56068,12341,12 +49840,Nurse Peters,414610,1714323,8 +49841,,11328,1444506,54 +49842,Silvino,332354,1444928,12 +49843,Col. Sam Doran,330711,236,5 +49844,Helen Coburn,239513,57399,2 +49845,Matt Ord,38432,29363,4 +49846,Marconi,336004,19184,5 +49847,Mr. Hamburgher,188468,1027241,11 +49848,Sumida's father,98631,120351,5 +49849,Leni Frankel,333484,1158068,16 +49850,Paul,193893,1381494,40 +49851,Minho,198663,1310760,1 +49852,Velu Nair,69428,580891,5 +49853,Émigré #1,14979,94694,8 +49854,,38326,1034698,6 +49855,Major (voice),30060,2387,7 +49856,Jeff Rice,9846,55271,8 +49857,Waldo Winchester,72096,14792,8 +49858,Ash,14505,49002,2 +49859,Pastor,18514,145361,3 +49860,Sophia York,335872,937793,5 +49861,Cattle Annie,167262,99,1 +49862,Claire,170677,13326,1 +49863,Jodie Greenwood,251732,34902,0 +49864,Penny Tillman,62190,12519,1 +49865,Lana,101998,1177627,5 +49866,Denethor,122,1381,16 +49867,Tomohisa Kaname (voice),152042,1221099,10 +49868,Zev's Great Grandaughter,302528,1393826,9 +49869,Metropolis Citizen,209112,1691930,48 +49870,Emma,176079,2838,1 +49871,Detective Burns,29829,29579,7 +49872,Adde,45133,132246,3 +49873,Miss Barnes,77822,89895,12 +49874,Young Virginia,27703,104090,8 +49875,Father Howard,26517,14999,8 +49876,Chinese junk crew,9461,83556,17 +49877,Rhodes,263115,159300,87 +49878,Nick,33570,110909,2 +49879,Jeff Steele,32610,91217,9 +49880,Harsha Vardhan's mother,353533,584238,5 +49881,Mrs. Benchley,22752,88461,3 +49882,,86321,87335,2 +49883,Herself,366696,1531659,7 +49884,Le chat,25353,93592,0 +49885,Lilith (voice),408381,49729,3 +49886,Amanda,88042,223027,16 +49887,Andrew,1382,15376,5 +49888,Tía Pilar,54236,1365418,12 +49889,Mireille Laurin,41277,1575513,35 +49890,Eversti Tossavaisen vaimo,55754,222300,8 +49891,Raymonde Zehnacker,245775,26401,13 +49892,Corkery,118900,89728,11 +49893,Vera (voice),30060,96408,16 +49894,Ira (voice),16523,2178,5 +49895,,244956,21564,11 +49896,Drew Langdon,47535,1231909,2 +49897,Express Deliveryman,831,45091,9 +49898,Robert Harmon,52109,11147,1 +49899,Club Host,28090,1719889,32 +49900,Marvin Myles Ransome,96107,89088,0 +49901,Arwen Evenstar,122,882,3 +49902,Capt. Tang,270774,64896,7 +49903,il padre di Nathan,197089,20853,7 +49904,Rankin Fitch,11329,193,1 +49905,Tough Guy,193893,1044954,26 +49906,John L. Sullivan,147876,633744,9 +49907,Man #1,46760,937388,5 +49908,Sully,10999,1737,5 +49909,,15776,1439252,6 +49910,,58447,1015998,5 +49911,Colonel Kaplan,140607,36666,22 +49912,Le detective,408024,72666,5 +49913,Soldier,239566,1374151,35 +49914,Radio Reporter,149509,59242,23 +49915,Senator Ralph Owen Brewster,2567,21278,5 +49916,Falk,210913,1194710,3 +49917,,235092,1224759,17 +49918,Birdie Prideman,103432,1833304,13 +49919,"Miss Watkins, a Trumpet Player",267483,1315172,11 +49920,Jefe de Detectives,210653,1176384,10 +49921,Trampolena Whambang,131799,1093722,15 +49922,Corey,193603,1298790,3 +49923,Christine Lucas,204922,2227,0 +49924,Le lieutenant,59118,1679215,33 +49925,Cojimar,43778,1349312,4 +49926,Tarzan San Tai (East Block),17467,1612529,4 +49927,Edgar 'Blacky' Franchot,33923,82676,7 +49928,Paul Hamlin,67216,14541,4 +49929,,376716,235980,12 +49930,Rachel Landisman,71825,12133,4 +49931,Homeless Man,19912,1392604,21 +49932,Père Juan Ramon,79372,20368,10 +49933,Wedding witness,78734,29953,23 +49934,Guy Bettenhouser,43321,134613,10 +49935,Valet,59962,62836,17 +49936,Tsuboi,18722,553443,43 +49937,Stephanie (as Stephanie Lopez),205724,1696752,15 +49938,Lian,10473,65623,2 +49939,Aunt's Husband,46387,119270,12 +49940,Luftschutzwart,103396,50981,9 +49941,Ahmet,354859,1511464,27 +49942,Director Attorney Hosea Knowlton,243568,2518,2 +49943,Hostess,310133,1653004,8 +49944,Pierre,14642,61536,6 +49945,Keung,26005,130504,6 +49946,John Norman Howard,19610,10823,1 +49947,"Świerzyński ""Świr""",369444,6709,5 +49948,кардинал,365544,86722,7 +49949,Village man,414977,1676807,35 +49950,Fifth Go-Go Dancer,28170,1861057,15 +49951,Dr. Fredericks,41597,85345,6 +49952,Bruce Banner (uncredited),68721,103,105 +49953,Luvlee,8270,52848,3 +49954,Cláudia,48962,230582,5 +49955,Col. Bright,332079,95729,18 +49956,Dr. Lionel Higgs / Dr. Ezekial Higgs,208529,41247,6 +49957,Commuter #2 (uncredited),28178,135431,17 +49958,Marion,42599,18892,1 +49959,Train Teen,109491,1495345,23 +49960,Judge Thomas Bailey,332079,40529,1 +49961,The Subjects Drummer,15810,933017,8 +49962,Harold Gunnison,45714,93164,6 +49963,Luder #2,11328,56181,12 +49964,,342011,177731,1 +49965,Monsieur Jacquinot,334317,1449638,5 +49966,Singer,104744,223017,5 +49967,Girlfriend,14874,100373,12 +49968,Victor Ivanovich Volosyuk,75262,549389,14 +49969,Mail Carrier,2017,192706,13 +49970,Sunshine,105548,30004,7 +49971,DeeCee,17940,51750,3 +49972,Isä Pekka,40864,89502,6 +49973,The Captain,290999,1361549,4 +49974,Sir George,26643,246,2 +49975,"John Dayton ""Sonny"" Smith",242835,70985,3 +49976,Can-can dancer,151068,1387663,12 +49977,Jane,24123,49001,4 +49978,Loretta,330588,1439736,4 +49979,Selma,336804,1481835,4 +49980,Reporter,38437,120463,21 +49981,junger Mann im Café,53364,1833569,6 +49982,Baharani,71041,9921,4 +49983,Mandola,139521,87549,2 +49984,Dom / Dog Owner / Additional Voices (voice),52264,89599,22 +49985,Cameron,116723,9013,2 +49986,Beatrice/Bea,147815,1126674,1 +49987,Herself,217925,1005852,4 +49988,Vanessa,251227,932695,3 +49989,Sofía,26971,224871,1 +49990,Grant,1452,1272955,13 +49991,Subway Hostage,98566,1232607,20 +49992,,52943,140095,6 +49993,Colette Tazzi,259,3536,1 +49994,Domen,199602,1871532,5 +49995,,38362,144619,13 +49996,,121725,20707,13 +49997,,231009,132193,2 +49998,Jess Proudfoot,13258,93492,6 +49999,Madame Piranha,39276,10070,1 +50000,Deputy Kelly Davis,40983,89461,9 +50001,Shirley Mallard,42448,9560,2 +50002,Saleslady,9779,1224825,20 +50003,Per Månsson's Wife,206390,1188865,9 +50004,Toulio,38743,36058,9 +50005,Gus,29192,228712,2 +50006,Sheriff Denning,343972,30238,6 +50007,Rebecca Guttman,302528,1175950,10 +50008,,63215,1520923,49 +50009,Wolf,57597,226548,1 +50010,Himself,124071,57755,1 +50011,Glauco Sperandio,59040,21237,1 +50012,Truck Driver,128866,1663817,15 +50013,Bernard Desqueyroux,110323,54291,1 +50014,Gibbs,26123,1121562,7 +50015,,88273,1547786,22 +50016,Violet,82622,86314,0 +50017,Guilherme,228198,592370,1 +50018,Molly,25674,9625,4 +50019,Sandra,70666,1285134,3 +50020,Herself (uncredited),13092,204,20 +50021,Timmy,280617,1522150,14 +50022,Rudolf Andersson,30149,74709,2 +50023,Se stesso,42436,1777473,11 +50024,Saravanan,368006,478546,11 +50025,Duke Anderson,30941,738,0 +50026,Koobus Venter,17654,1071689,22 +50027,Rick,166221,55265,4 +50028,Manuel's Father,469172,1088234,3 +50029,Uncle John,128669,30216,40 +50030,,14073,1243976,7 +50031,Pete Varond,65874,98568,0 +50032,Phillip,93263,29792,0 +50033,Duncan MacGubbin / Mcintyre,12902,19546,4 +50034,la princesse Maria,42537,1057147,3 +50035,Jake Beesley,159469,96142,4 +50036,Caesar,138496,15340,3 +50037,Vic,270383,91404,8 +50038,Steven Kapoor,21570,42208,3 +50039,Allie,377587,1377385,10 +50040,Nelle McLaughlin,52827,85358,2 +50041,SS-Oberstgruppenführer Artur Nebe,11248,386,2 +50042,Inspector Balantine,43913,94647,1 +50043,,214938,1199627,10 +50044,Bosse,76846,580673,2 +50045,Dr. Leonard Gillespie,153162,17753,1 +50046,Victor Sweet,8292,5294,8 +50047,Dr. Vass,152532,2171,7 +50048,Professor,240832,1426347,13 +50049,Busker,426264,1721678,10 +50050,Lila Resier,274504,1723564,11 +50051,Spanish Train Porter,145220,1138597,17 +50052,Concert Security,312221,1746963,68 +50053,,19552,1275927,18 +50054,Betty,72912,593,2 +50055,Reporter (voice),1267,61425,23 +50056,Salva,343173,1250452,10 +50057,Rancher Pete Ferguson,186585,34505,9 +50058,Vip audience,76544,590919,3 +50059,Juwann,25450,58371,8 +50060,Rajeesh,345915,53493,9 +50061,čarodějnice,82716,1253784,7 +50062,Kenny,168027,212218,12 +50063,Manni,66113,94508,7 +50064,Metallo (voice),22855,11885,7 +50065,Ron Carton,103850,1115655,4 +50066,The Manbeast,70500,928170,6 +50067,Oscar,1773,34759,8 +50068,Bull,14868,77721,12 +50069,Agent Elkin,269173,216986,4 +50070,Emma Cullen,333484,58754,8 +50071,teologa Belga,81775,5964,5 +50072,Prison Guard,27470,97840,23 +50073,Principe Donati,81775,12259,3 +50074,Nancy Hobson,19335,11494,1 +50075,Ronnie,297668,6913,3 +50076,Herself,296194,1753,12 +50077,District Attorney,224282,1006368,11 +50078,Anna,370264,945094,8 +50079,Gayle O'Brien,18826,56322,0 +50080,Lady Matilda Mellerby,89591,17286,0 +50081,Tomas,15749,1231304,5 +50082,Himself,39827,47098,1 +50083,Auberin,14489,55513,2 +50084,Noah,334527,221018,1 +50085,Kate,16997,586,5 +50086,Blueglass,5638,81550,11 +50087,Nurse Higgins,63360,199717,7 +50088,Bartender,270015,34610,16 +50089,Simon,374618,1714566,10 +50090,Italian Husband (uncredited),86360,95725,6 +50091,Kanya,271404,991930,6 +50092,Elizabeth Frankenstein,3057,29944,5 +50093,Waiter,4538,1797582,13 +50094,Valda,60488,96140,10 +50095,,327231,76383,7 +50096,Gloria,428493,1250099,9 +50097,Herself,83587,812068,2 +50098,,11972,543087,9 +50099,Briareos Hecatonchires (voice),269650,9721,9 +50100,,166027,35069,3 +50101,Marjorie,35008,9765,2 +50102,Alexia,315252,34870,2 +50103,Lt. Kurt Zimmer,50849,32058,0 +50104,Actor,16551,1320732,7 +50105,Samir's Mother,39217,141874,7 +50106,Jimmy Wheeler,31984,31439,3 +50107,Cable Car Heavy,206647,1599263,56 +50108,Príncipe Antonio,13283,1497228,6 +50109,Tribe,75623,580231,6 +50110,Adi's Brother,413882,1758521,11 +50111,Kimrasi,89242,40530,5 +50112,Male Greyhound Employee,242042,1411622,33 +50113,Elizabeth,50942,25382,7 +50114,Gary,38901,16851,6 +50115,,41252,125929,7 +50116,No Sideburns' Friend,156700,1840495,21 +50117,Rebel Man,339408,1622095,38 +50118,Malcolm,245019,1375800,1 +50119,Lili,142712,1153437,3 +50120,Lanna Frank,1991,1230008,18 +50121,Alain Lefevre,3513,15111,0 +50122,Vacaro,16083,18999,3 +50123,Teacher,21208,90462,17 +50124,Lina Romay,87194,1012321,1 +50125,Carl Erickson,76703,258032,3 +50126,,125835,1163230,15 +50127,Martha Marlene,21191,87266,4 +50128,Dr. Case Montgomery,128612,115858,0 +50129,Natasha,79234,86957,1 +50130,Cattle Buyer from New Orleans,75315,121244,31 +50131,Birgit Suomaa,219335,1394784,1 +50132,Marshall,41301,1709467,13 +50133,,194853,230269,13 +50134,Hank (as Steve Strachan),47525,1508833,9 +50135,Stuffy,11939,10800,2 +50136,Johnny Schumacher,97829,55278,1 +50137,Bianca,33623,427933,2 +50138,Background actor,52454,1630322,50 +50139,Janelle,9993,37287,4 +50140,Flower (voice),13205,74286,4 +50141,Peter,5123,1781808,19 +50142,Dario,120922,1898626,20 +50143,Joy (young),19398,1469193,24 +50144,Mary Shelley,332283,18050,1 +50145,Wah,338421,1629649,25 +50146,,155386,1136499,0 +50147,Kat,22615,7055,6 +50148,Referee,9981,52794,15 +50149,Monica,98025,95091,7 +50150,Chana Dorje,259997,15342,15 +50151,Draft Clerk,5638,81552,13 +50152,Paulette (uncredited),51759,1133401,9 +50153,Gladys Sims,175822,1743118,11 +50154,Caninho,48805,1898625,11 +50155,Ilo,128412,1072414,6 +50156,Isotta,155597,1014911,4 +50157,Chantelle,109391,1204685,16 +50158,Col. Jeb Hawkins,11897,4302,15 +50159,(uncredited),174946,9089,7 +50160,Cleopatra,31561,10538,1 +50161,Rebecca,274483,49168,4 +50162,Dum (Black Tiger Youth),2805,134724,1 +50163,Katsuya Tokunaga,11838,13256,3 +50164,Bobby (voice),77950,28633,9 +50165,Dallas,161482,1511756,6 +50166,Papou,9779,59179,12 +50167,Kit Caswell,144471,40185,1 +50168,Joel,70695,37059,6 +50169,Hans,43849,9068,3 +50170,Edward Porris,125490,60077,5 +50171,"Horace DeBussy 'Sach' Jones, aka The Bowery Thrush",185289,33024,1 +50172,,49277,11523,1 +50173,Joy,41559,343,2 +50174,Lane,177677,16702,5 +50175,,66247,584824,10 +50176,Rock,130507,83993,22 +50177,Museum Burglar,12594,17444,26 +50178,General Petrov,127585,141741,48 +50179,Actor (The Caretaker),128216,19959,35 +50180,Johnny Moon,333385,67979,5 +50181,Taras Bulba,17935,82513,1 +50182,Selçuk,179715,979406,1 +50183,Pierrot,56800,1468807,9 +50184,Julia,18955,83972,9 +50185,Tenny,38433,2930,4 +50186,,295058,1367729,2 +50187,Alexander Graham Bell,43252,1033084,25 +50188,Wu Sansheng,411442,1288449,4 +50189,Cook,330947,17288,0 +50190,District Attorney Hogan,28000,1104977,10 +50191,Actor in a Hostage Film,11338,4967,32 +50192,,161299,3091,2 +50193,Snowman,61070,232312,7 +50194,Paola,356461,1880340,10 +50195,May,1125,15569,10 +50196,Grandpa Byrd,239566,156405,24 +50197,Esperanza,98349,7430,4 +50198,Noam,271718,65923,9 +50199,Sean,409502,1173038,15 +50200,George McDougal,142106,123795,4 +50201,George Takasima,69266,555972,9 +50202,Georgia Montauk,125409,169337,4 +50203,Himself,83587,1137456,8 +50204,Bee Bee Vendemeer,337789,1098447,3 +50205,McCoy,43821,14968,6 +50206,Claretta,325690,1880342,12 +50207,Soldier Vernkot (voice),16866,55466,9 +50208,Charlie,260672,94998,1 +50209,Kelor (voice),49521,17832,15 +50210,Talk Show Host,15092,111195,16 +50211,Antonio,10025,62067,7 +50212,Soviet colonel,88564,1467095,10 +50213,Ele mesmo,448763,1848649,13 +50214,Pilot Officer Peter Penrose,44087,11859,1 +50215,Brent Whipperton,21338,78183,7 +50216,Toya,426265,1532331,9 +50217,,124597,1675546,21 +50218,Valerie Bookbinder,208529,1234271,9 +50219,Lord Ardente,7096,24498,14 +50220,Vanderber,112304,84221,4 +50221,Roberto Savarese,199985,41155,2 +50222,Gen. Glen McMahon,354287,287,0 +50223,Madonna,18820,29236,4 +50224,Mam,286369,1229148,4 +50225,Jean (as Hal Roach's Rascals),190352,949499,5 +50226,Tosaki (voice),357390,9705,8 +50227,Igor,62616,143709,5 +50228,Paul,51442,4156,4 +50229,"Marcella, Hotel Manicurist",104556,141753,7 +50230,,124480,1654748,2 +50231,Joe Bass,32068,13784,0 +50232,Angel Gabriel,144792,89099,10 +50233,Dave,30155,73134,2 +50234,Airline Official,45726,81284,14 +50235,Lawyer Aristarkhov,62731,150813,5 +50236,direttore del carcere,64465,234395,7 +50237,Fritz Kurz,322148,1332900,5 +50238,Driver,339419,1650202,54 +50239,Moon,32080,97878,7 +50240,Riekje,61035,1445780,17 +50241,Masher,130900,1092241,10 +50242,Maria,5482,44968,2 +50243,Moominpappa,293271,27631,2 +50244,William,253851,67850,1 +50245,Deepa's client,332827,1658597,15 +50246,Sergei Sergeyevich,65839,82796,3 +50247,Boy in Sunday School (uncredited),16442,1198371,27 +50248,Bowler Hat Guy / Grandpa Bud / Tallulah (voice),1267,16842,16 +50249,Pam McIntosh,171738,1154283,4 +50250,Elizabeth Allison,142145,124382,6 +50251,Skater (uncredited),134475,141010,8 +50252,Lily Aisling,21533,117085,10 +50253,Jong-Gil,396535,96663,13 +50254,Sheriff Pratt,259975,106726,9 +50255,Waiter,72105,99354,44 +50256,,45949,1053727,7 +50257,Jesús,300601,1456577,10 +50258,Cab Coordinator,258509,1559691,29 +50259,Ellen Ambro,301228,40639,5 +50260,Newswoman,3072,1076575,12 +50261,Dino,11205,937468,16 +50262,Katherine Holm,215379,1033252,4 +50263,Michael J. Andrews,134355,13294,0 +50264,,105860,98787,8 +50265,Gregor,10075,62880,8 +50266,Mr. Lawrence,30496,17648,11 +50267,Urs,210913,144342,8 +50268,Karen,298584,145814,4 +50269,José,131194,129460,11 +50270,Matt Benson,90563,13640,8 +50271,,307649,86864,4 +50272,Voice of 'Mother' (voice),126889,7032,14 +50273,Customs Officer,38437,120461,19 +50274,Gabe,307081,1502321,12 +50275,Lynn Belvedere,76211,20125,0 +50276,Nagisa Sugiura,14217,112859,0 +50277,Mister Frog (voice),52264,1449408,20 +50278,Child Witch,225728,1544740,17 +50279,,243473,1038698,3 +50280,little pig and little wolf,109329,227461,5 +50281,Doc Jordan,67669,64516,8 +50282,Maria Johler,119820,1071142,1 +50283,Jamie,20210,41421,4 +50284,Ivan Yugorsky,7304,1381,12 +50285,Narrator (voice),26264,94979,9 +50286,Kat,62837,1357035,12 +50287,Romashka,41581,565312,3 +50288,Marie Galt,87936,12001,4 +50289,The signal guard,43773,1193559,3 +50290,Constable Leo Porter (as Jonathan Whittaker),118443,85928,7 +50291,Lady X,116977,52605,3 +50292,Mrs. Trabert,143092,19098,6 +50293,Larry,36672,1250598,16 +50294,Robert,132928,30262,9 +50295,Wanda's Sister,80560,589676,2 +50296,Coffee Vendor,41171,1392746,26 +50297,Leah (uncredited),22744,8829,15 +50298,Brian,336149,1581206,7 +50299,,83761,1720052,3 +50300,Edie and Ravenscroft Assistant,51994,95259,11 +50301,King Argyle,44680,73609,10 +50302,Hobo Andy / Maitre D',15213,21125,13 +50303,Sofietje,35016,1416133,30 +50304,Trainer,18774,1857924,21 +50305,Twin (voice),108048,1381311,3 +50306,Himself,173467,18977,21 +50307,Sponsormannen,140818,1787981,11 +50308,Benjie,85916,1665050,6 +50309,Flower Delivery Guy,13668,32204,8 +50310,,109354,107822,9 +50311,Himself,266782,15903,6 +50312,Majka,15303,111064,13 +50313,"Muten, Roshi",24752,618,6 +50314,Amit,403867,86554,3 +50315,Himself,140554,1707828,20 +50316,Hans von Buelow,3478,32067,14 +50317,Phillip Morrison,18056,1614471,4 +50318,Velvet Green,69903,58414,17 +50319,Mad Dog McClure,28704,19152,6 +50320,Aunt Helen,16659,42134,2 +50321,Police Chief,2976,82647,22 +50322,Nymphet,29610,104341,24 +50323,Cruise Director,10488,939990,11 +50324,Claire,253235,36926,4 +50325,Max Allaron,42298,103503,10 +50326,Veteran,264644,1517744,21 +50327,Morgan Burke,132859,100920,5 +50328,Soldier in Street #3,616,1593811,30 +50329,Tod Maslin,47312,113640,12 +50330,Clarissa Byers,417936,1085816,0 +50331,Machida Sparring Partner,257447,1447460,14 +50332,Guard #2,331313,1346101,27 +50333,Richard,27138,69010,2 +50334,Margie,53573,98012,1 +50335,"Jacob, the Boy",51349,143975,1 +50336,Monsieur Lucien,259,3594,6 +50337,Porter (uncredited),61151,213830,15 +50338,Juge,67102,1053375,8 +50339,Extremis Soldier,68721,1221121,93 +50340,Nightclub Patron (uncredited),33112,130377,32 +50341,Principal Sandstrom,22881,21083,11 +50342,"Son Goku, Son Gohan, Thalès",65973,90496,1 +50343,Prof. Bosgood Elrod,116160,95054,4 +50344,Old Bobby (uncredited),43497,33698,20 +50345,Nadia,30174,1153063,7 +50346,Jacques Hamelin,50181,1510,6 +50347,Sharon Mason,177566,1157259,4 +50348,Morrec,20880,1127664,2 +50349,,142656,134400,13 +50350,Velasco,119374,24977,1 +50351,Mildred Donner,36786,46617,9 +50352,Mother,27045,1178041,8 +50353,Leon Soloway,91607,130941,3 +50354,Kit,40466,1760116,3 +50355,Keith,26882,1773040,5 +50356,Karri,127614,1085160,0 +50357,Joe,156603,85993,3 +50358,Dionisios,27283,1052659,4 +50359,Interviewee,32694,57124,24 +50360,Aino,233917,1047928,5 +50361,John,104973,44414,7 +50362,Yolanda,426264,1399119,7 +50363,Erina,205481,3019,2 +50364,Marie,33095,21577,5 +50365,милиционер,63300,1050364,6 +50366,Gido,39308,88614,4 +50367,Mayumi,310001,558135,5 +50368,Dixie Leigh Delton,13842,78229,7 +50369,Ed,256962,559771,32 +50370,Bragg,26656,77880,3 +50371,Leigh Rockwall,172548,1049938,0 +50372,Connor Strong,181574,155,0 +50373,Baby Rose,110160,1042447,18 +50374,Roger Sanford,43441,72059,1 +50375,Mr. Tobin,106020,29546,6 +50376,Officer Dill,15022,154295,8 +50377,Vincenzo,58081,128045,6 +50378,Deedee,137528,1764644,6 +50379,,49522,1224723,19 +50380,Himself,73241,1106334,7 +50381,Lisa Rickard,274820,124644,5 +50382,Chordame,52475,7155,22 +50383,,56942,219652,8 +50384,Serge,269258,1852,3 +50385,,123949,305092,3 +50386,Chief Miller,118444,170561,10 +50387,Fence,49920,1650613,5 +50388,Christiane Colo,72678,77930,1 +50389,Narcy,49334,118426,2 +50390,Nitti,72279,100937,6 +50391,Ogeechuk,74436,580853,8 +50392,Bartender,4644,214142,10 +50393,Matt Tepper,27671,97826,4 +50394,Amalia Ruoppolo,38310,41162,9 +50395,Dr. Preston,444193,162754,6 +50396,Zizi,163942,1012240,4 +50397,Izumi Nobuko,282070,80864,11 +50398,British POW,227306,1394460,60 +50399,Maria,110447,128748,1 +50400,Phyllis Dexter,131457,34442,1 +50401,Larry Stone,268212,6102,1 +50402,,315362,5996,6 +50403,Owner of the 'New Babylon' shop,151068,1278820,2 +50404,Lemi,15303,80506,4 +50405,Yacht Captain,47404,1224787,14 +50406,Ben Ishak,42418,2557,1 +50407,Leah,38684,1089518,19 +50408,Arcibaldo Barozzi,75336,105359,11 +50409,Cavalry Captain,43829,3262,34 +50410,Caterina,333884,25092,10 +50411,Prom Teen #1,263115,1415436,45 +50412,Rio,39024,1760265,10 +50413,Mother,46891,174188,6 +50414,Coachman,43811,1092484,63 +50415,Yang,331313,1739694,9 +50416,Amandus,269258,26532,1 +50417,Juan,77650,24827,7 +50418,Dabs,13058,449889,5 +50419,Jack Swan,248639,97982,7 +50420,Jesus,167956,1149656,0 +50421,Matteo Borghi,369245,107626,3 +50422,Ian McLellan Hunter,294016,21088,11 +50423,Kanji Takada,46149,25462,3 +50424,Minor Role,87060,1534294,18 +50425,Pauline,133382,60560,4 +50426,Mathilda,78028,1231943,4 +50427,Elsie,44087,97429,19 +50428,Aada,167928,1261625,2 +50429,Noah,84575,930995,5 +50430,Morel,26152,146489,11 +50431,himself,190940,78916,17 +50432,Reed,399894,41341,13 +50433,Corpse,278706,1334335,9 +50434,Avery,34729,1232834,13 +50435,Harpo,20625,10800,1 +50436,Willard,110830,107461,4 +50437,Spurio,23750,90547,5 +50438,Mr. Atkins,57597,1676186,10 +50439,Secretary Ingham,112284,103620,15 +50440,Garcia,46658,49458,9 +50441,Boy Student,16320,80429,19 +50442,James Ziegler,46658,103174,10 +50443,Nana,47226,1546419,4 +50444,King,62764,48,14 +50445,Niko,243940,119589,2 +50446,Oudukian,265563,74912,6 +50447,Belinda Martin,142402,1117078,12 +50448,Fürst Padhu,71041,51056,7 +50449,Himself,296194,7166,9 +50450,Himself,41886,1110613,1 +50451,Narrator,124071,949244,0 +50452,Anselmo,348537,1574934,9 +50453,Tim Ward,111470,20368,6 +50454,Chi-Wai's Boss,14016,1132615,9 +50455,The Janitor,51364,13953,5 +50456,Lana,293861,1385531,5 +50457,Promotor de justicia,337101,1041196,4 +50458,Katina Upranova,82626,108696,2 +50459,Director,375012,122295,5 +50460,Butler (voice),16366,9807,10 +50461,Policewoman,10265,64500,7 +50462,Dr. Olga Schmetner,103260,98234,9 +50463,Consul Prescott,259292,30234,5 +50464,Mya,184098,22122,3 +50465,Bubbie,14123,53647,10 +50466,Selene,834,3967,0 +50467,Walter Ferris,74465,8265,8 +50468,Don,34652,14256,7 +50469,Adjudant-chef Besauce,382598,76825,6 +50470,Neighbor,57307,238395,14 +50471,Joy,428493,1225435,14 +50472,Mr. Hope,32235,6677,11 +50473,Volker,294483,928468,9 +50474,Grasshopper,14882,77517,2 +50475,Salesman,81475,1090418,10 +50476,Martin Wilson,120802,1539,16 +50477,Shaheen Parvici,11338,18847,30 +50478,Samantha,382591,109516,5 +50479,Attentäter,2734,27648,25 +50480,Margaret Hichcock,28533,5685,0 +50481,"Al, Baby Weems storyboard artist",22752,30510,12 +50482,Bill Blazer,17796,12889,8 +50483,Madeleine (uncredited),68822,28149,35 +50484,,5165,1184829,14 +50485,Kyle,71668,231547,5 +50486,Alan,40807,4492,9 +50487,Engine Room Officer Trotter,27917,11130,7 +50488,Big Head (as Lam Suet),18747,25251,5 +50489,Modèle de Fergus,4191,1385605,10 +50490,John Stoehr,373546,84407,4 +50491,Firework,23750,58986,13 +50492,Taco Boy,117905,60227,12 +50493,Press Photographer (uncredited),26182,117036,18 +50494,James,48375,140373,3 +50495,Actor in Top Hat,43809,1144743,41 +50496,Simon,283384,32887,6 +50497,Carol Uberoth,29695,8985,7 +50498,le chef de réception,76703,579797,8 +50499,Bully,102382,1455792,53 +50500,Michel,91690,28463,6 +50501,Sharon Ace,115565,26456,5 +50502,Kaiser Wilhelm II,297762,1831379,28 +50503,Woman in Dirndl,335837,1497342,13 +50504,Lem - Jailer (uncredited),14615,103068,50 +50505,Skid Wilson,116160,34117,3 +50506,Whitey,46875,16017,5 +50507,Luigi Minnella,303542,1833324,12 +50508,Ayodele Balogun,157384,4812,0 +50509,Thomas Savinet,290316,1360311,3 +50510,Angel of death,325385,1775356,13 +50511,Marta,436339,1742833,2 +50512,Grace Carmichael,108012,14699,1 +50513,Security Guard,2179,2141,10 +50514,,296491,1269345,10 +50515,Studio Core Member #1,244786,1503844,34 +50516,Dollface,10665,55901,4 +50517,Seth,226140,112558,4 +50518,,11391,568939,11 +50519,,18585,1058273,8 +50520,Diego,53739,17093,3 +50521,Sheriff Stan Blaine,77645,109846,1 +50522,O'Bannion,46570,18841,0 +50523,Cavish (as John Day),38808,91218,7 +50524,Cleghorn,28425,29601,7 +50525,Ballpean,9812,40276,12 +50526,Alice Hedley,28031,20,6 +50527,Lieke,140894,87865,5 +50528,alokas Sulonen,55756,108853,2 +50529,,133783,1476859,22 +50530,Cheerleader (1989),16996,206869,42 +50531,Drummond,32082,2549,4 +50532,Reggie Carstairs,108222,29127,8 +50533,Bouncer (uncredited),354979,1636789,74 +50534,Manager II,6183,48525,19 +50535,Museum goer,310888,1531613,12 +50536,,64928,1673509,14 +50537,Poker,21338,87406,14 +50538,Ahmed,1726,183439,26 +50539,Fisherman #2,3146,119000,16 +50540,Spider,228970,1495078,23 +50541,Tour Bus Guide,302666,94490,10 +50542,Eric,336004,1508566,18 +50543,Jason Wheeler,242042,4515,3 +50544,Paul Reader,448847,1796123,9 +50545,Sathya's grandfather,368006,83593,8 +50546,Johnny Doyle,52452,980,0 +50547,Ikuko Kenmochi,43095,7451,0 +50548,Michael Hanover,184098,143242,7 +50549,Mother Superior - Trailer,13092,1572537,17 +50550,Ephraim,397717,105238,36 +50551,Millis,46623,8262,15 +50552,Party Guest,81110,1269196,24 +50553,Girl Richie Lifts,77930,1784615,31 +50554,Room Service Waiter,43850,553488,7 +50555,Himself,26465,61109,2 +50556,Mónica,109690,1143886,8 +50557,Carol Radford,5413,43140,16 +50558,,60046,21606,7 +50559,Lisa,171759,979834,8 +50560,Jacques Rézeau,24685,35323,1 +50561,Penny Carver,13483,41547,9 +50562,Priest,319910,1475659,16 +50563,Odysseus,81409,45035,9 +50564,Germ,260528,84827,3 +50565,,38154,1403510,20 +50566,Jimmy,51823,144675,14 +50567,Sumiko Asai,43877,134682,4 +50568,Train Driver's Son,16151,79703,15 +50569,Léon,12449,6304,6 +50570,Madame Rapport,228647,100779,9 +50571,Alvaro Presutti,121510,38593,1 +50572,Cameraman,2976,1212301,15 +50573,Desk Sergeant,146233,1689933,20 +50574,Muscle,270654,1289340,18 +50575,Night Club Comic,2355,1089174,19 +50576,,48341,18056,8 +50577,Doktor Trudeau,5881,38529,12 +50578,jako Bronka,406449,1022724,31 +50579,Kenny,98369,61983,5 +50580,Mr. Oakes (uncredited),62728,1171128,20 +50581,Bill Cummings,159469,87390,1 +50582,Marv,65156,14884,3 +50583,Judge Herlands,59230,3640,5 +50584,Abby Black,64685,19492,5 +50585,Cage Fighter,257447,1522268,18 +50586,Tony Links,18472,107810,10 +50587,Deputy Tom Gitlin,204839,1773449,7 +50588,South Sea Island girl,110887,1023906,9 +50589,Don Vincenzo,58404,132190,1 +50590,Fire,11636,74196,7 +50591,Nelson Hirsch,270650,1218154,4 +50592,Deputy Blackie (uncredited),59882,536472,11 +50593,Robin Hood,71066,109088,0 +50594,Colonel Pembroke,10915,39953,10 +50595,Tooth Fairy,53953,570282,14 +50596,Raffaella,111017,9921,5 +50597,Diabolik,2994,29426,0 +50598,Colonel Craig,1726,1209702,32 +50599,Mamma di Romolo,46128,133051,9 +50600,Tänzerin,175339,1406820,7 +50601,Ruskin's Wife,245700,239878,44 +50602,,142656,213484,5 +50603,Sterling,24619,57387,9 +50604,La directrice de l'école,34013,275776,6 +50605,Professor Robert Haven French,38724,3640,8 +50606,Erlanger,3087,30276,9 +50607,Rapunzel,2309,230178,17 +50608,Zack,20312,27560,6 +50609,Eva,20221,547969,1 +50610,Stotterer,1659,18449,11 +50611,Akiko,104343,71015,0 +50612,Dan Wake,30995,107479,0 +50613,Iiris,287301,1353925,0 +50614,Cas Bagley,207178,95668,4 +50615,Elderly Couple,1116,1896875,42 +50616,Arthur Shaeffer,118283,153309,9 +50617,Jeanne,12135,91714,8 +50618,,135286,1344594,6 +50619,Kewpie Blain,28658,95276,6 +50620,Esther Newman,4931,19110,15 +50621,Mahalleli,452606,1797952,19 +50622,Leo Gorcey,139718,89989,19 +50623,,424014,1420169,1 +50624,Gabriel,43935,53,1 +50625,Yoshinari,12622,73139,3 +50626,Hilda,83185,929294,0 +50627,Billy Duke,16997,105641,2 +50628,Henry Ballard,16331,8262,2 +50629,Soon-im,435821,93252,2 +50630,Monsen 1,70670,1093936,11 +50631,Princess,257831,36841,4 +50632,Goddess of Destiny,17566,234364,2 +50633,Walt,54715,16433,6 +50634,Kate,330011,1439928,5 +50635,Nurse Tumm,102841,8495,7 +50636,Schäfer's Sprinter #1,318781,1694295,18 +50637,,1838,1441400,24 +50638,Cheerleader / Dancer #3,11247,1776503,39 +50639,,17007,13936,4 +50640,Professor Villarta,222932,1400859,5 +50641,Pussycat Doll,4551,77438,51 +50642,Miranda,32298,1109920,24 +50643,Master Law Bo,40081,1139722,8 +50644,Richard,1164,287,0 +50645,Björn,70800,1188862,5 +50646,Rachida,204765,500341,6 +50647,Sniper,1724,1142866,33 +50648,John Sanders,326,26782,16 +50649,Tim Russo,19754,99210,7 +50650,Vice President's Daughter,68721,974169,72 +50651,,268735,3902,8 +50652,Carolyn,4380,36812,12 +50653,Ville,118640,147736,3 +50654,Misaki,43113,229225,24 +50655,Renegade Production Assistant,91679,237189,43 +50656,Inge,262945,37804,3 +50657,Rick Leland,8617,34502,10 +50658,Mary,136146,73408,6 +50659,Maxwell,333484,202691,21 +50660,Tanya,92391,1071128,8 +50661,Yorgos,371818,1400987,7 +50662,Jimmy Medina,20411,83674,4 +50663,Sylvie Hargrave,107250,1238390,8 +50664,Rena,95516,342100,9 +50665,Duke,26679,1088120,7 +50666,Haruna's Aunt,870,13255,6 +50667,Charlie,81522,1124231,13 +50668,Beach Kid,23512,1790108,12 +50669,,56599,136882,11 +50670,Sharon Sommers,248633,62001,2 +50671,Mrs. Wattlesbrook,156711,10223,8 +50672,Judge Morty / Denver Felton Allen,412103,1245733,1 +50673,Marco,297288,140107,1 +50674,Trofimov,53172,151431,10 +50675,Arlene,10096,116691,6 +50676,Range's Technician,45132,1271752,41 +50677,Diogo,48962,1195287,8 +50678,jako Maciej Skiba,406449,127852,2 +50679,Nina,376579,1661772,7 +50680,Jason Thomson,158967,1141458,9 +50681,Alfred Grattin,178587,9110,9 +50682,Gracie Allen - Concerto Number,80941,109896,14 +50683,Featured 'Carmen' Dancer,47959,1396444,30 +50684,Eddie Collins,84337,33178,9 +50685,Concetta,58007,227315,4 +50686,Cody,129332,192147,2 +50687,Воробьев,46010,1190350,1 +50688,Graziella,85009,175087,6 +50689,Quintus,28571,91260,11 +50690,Betty Collins,179066,74874,3 +50691,Le notaire,26152,27222,25 +50692,Bartender,333663,1458290,19 +50693,Takua / Toa Takanuva (voice),19325,106828,3 +50694,Peter,56558,1828696,13 +50695,Spirou,8899,560229,4 +50696,Crimp,52859,2099,20 +50697,Lawyer,128215,1825796,17 +50698,Emily,5421,101576,1 +50699,Groupie #3,14301,206311,13 +50700,The Phantom,41522,85480,0 +50701,Uragami,282069,110500,9 +50702,Chinese dancer,39779,123403,10 +50703,Mary,71805,137748,2 +50704,Russell,64720,1117503,7 +50705,Ellen,343921,168331,7 +50706,Skip,52894,2883,6 +50707,Ukrainian Cabbie,157829,1491994,19 +50708,Fencing Instructor (uncredited),397717,1264686,42 +50709,Terry Canfield,147903,68133,2 +50710,The Duchess,23750,163422,3 +50711,Deb,266425,1313155,28 +50712,"Chiho Tanemura (segment ""Chiho"")",26693,96049,1 +50713,Robbie,242224,213202,2 +50714,Prince de Gace,5201,29036,3 +50715,Zeca - adult,108712,1350509,15 +50716,Mr. O'Brien,37929,119132,3 +50717,Detective Bendetti,41759,12055,4 +50718,Direktör Wall-Enberg,57548,138069,4 +50719,Casper Van Dien,120802,27763,4 +50720,Kam Fung,64316,1616827,19 +50721,Mikolaj Kurcewicz,31273,107900,48 +50722,Sailor (uncredited),4688,1459592,26 +50723,,38189,2296,0 +50724,la soeur de Julien,76268,41879,3 +50725,Cow (voice),149910,15453,12 +50726,Kim Lee,224778,39126,0 +50727,Exterminator #4,2742,2320,10 +50728,Tall thin salesman,83770,884,15 +50729,Claire Heathrow,121823,1142354,20 +50730,French-Canadian Radio Speaker (voice) (uncredited),11206,3754,8 +50731,Pit Boss,443053,1763226,2 +50732,Jimbo,9968,6951,3 +50733,Wally,73501,1866591,14 +50734,Harlo Landerson,179826,1094319,10 +50735,,295621,1372553,1 +50736,David Shaw,253235,60195,10 +50737,Jürgen Vogel,6076,17373,1 +50738,Andrea,9528,3872,2 +50739,Prisoner in Bathtub,171446,589730,27 +50740,Cmdr. William 'Billy' Lockhart,36530,115538,10 +50741,Major Pete Martin,60140,82348,1 +50742,prodavačka Věra,36919,138191,3 +50743,Phan Ruang,39907,106033,12 +50744,Jess,70636,559060,5 +50745,Alexei Karamazov,342588,62318,6 +50746,Roger Collins,62213,9012,4 +50747,Adeline,145547,52478,1 +50748,Vishi / Jay,308165,42803,0 +50749,Ivana,300,4293,11 +50750,Le patron du café,27053,94943,6 +50751,Maid at Carlota's home (uncredited),37628,105144,20 +50752,Jaehak,211579,83682,0 +50753,[Scenes deleted],85327,520,12 +50754,Detective Hines,10053,9276,7 +50755,Fat Gervin,277388,45612,6 +50756,John Flower,43880,854,4 +50757,Casera,59117,228877,9 +50758,Himself,43514,8729,13 +50759,Jack Richardson - Miner,176867,119548,32 +50760,Doctor Terry,62694,94202,4 +50761,Paul,358895,1518644,12 +50762,,63215,1520912,32 +50763,Frank,217948,522,9 +50764,,44716,1807467,19 +50765,Mr. Jaffe,18530,28870,4 +50766,Himself,20200,15111,15 +50767,Mrs. Fiorello,167073,115592,20 +50768,Gabriel Heckum,319910,11155,3 +50769,,340961,19646,3 +50770,Arash,252171,1289605,1 +50771,Minister at Mother's Funeral,13823,75783,19 +50772,Showgirl,72096,1139756,52 +50773,Teufel,9551,1382585,4 +50774,Pao Lung-Sing,55156,57607,0 +50775,Clint Reno,22408,6462,6 +50776,Jacqueline Favraux,56800,27980,2 +50777,Stockman,6972,1673476,38 +50778,Francesca,333884,67178,3 +50779,narrator (voice),56391,87001,18 +50780,Väinämöinen,233917,1269392,1 +50781,Lawyer Barry Costello,84971,3243,1 +50782,Dr. Barclay,99863,16766,6 +50783,Natascha's Father,166666,35425,5 +50784,Himself,40873,44549,0 +50785,Şöför Arap Ali,74879,230759,3 +50786,Lovey Wentworth Howell,103260,7643,3 +50787,Deok-soo's paternal aunt,313108,980225,6 +50788,,1717,103,12 +50789,Ray McGuinn,93457,20495,4 +50790,Celeste,46920,137755,7 +50791,Thief,199463,131077,6 +50792,Al O'Hara,149509,56749,15 +50793,La môme Dauville,166883,1372302,8 +50794,Ulrike,266044,17062,22 +50795,Wayne Davidson,50647,21131,5 +50796,General Vallejo,151911,33007,5 +50797,Mean Man Mike,98115,123515,1 +50798,Jolene,43727,83002,0 +50799,,51581,551504,7 +50800,Ellis Isle Doctor,137321,1240648,14 +50801,Leeds Bouncer,297265,1097457,17 +50802,Jesse,105768,1077775,11 +50803,Bill Crosby,133382,18288,5 +50804,Willy Lopez,95140,44176,4 +50805,"Rita (voice, as Britt Mckillup)",13283,74365,17 +50806,Hashmi,196852,1035920,10 +50807,Troy,72946,41556,2 +50808,Extra at Wedding Reception,124115,14419,16 +50809,News Anchor,31377,108038,16 +50810,Rains,27740,99880,9 +50811,Brandt,42532,15975,4 +50812,Cab Driver,286521,157059,11 +50813,Desk Sergeant,84209,120105,9 +50814,Neighhbor,123634,1078406,4 +50815,Reporter,34672,126238,22 +50816,Rachel Zachary,6643,1932,1 +50817,Mateo (uncredited),19898,132187,22 +50818,Im Jong-Bae,242458,85173,1 +50819,Lisa (as Camilla Marie Beeput),339362,1526632,6 +50820,E.H. 'Ed' Browne,73430,66075,1 +50821,Agabelle Loogenburgen,40807,113861,20 +50822,Mark,156360,30145,13 +50823,Sloan Foster,68684,122518,6 +50824,Mr. Van Diver,64928,1105280,10 +50825,Catherine,358199,109614,6 +50826,Flower Girl,47084,1201716,13 +50827,Priest,1116,63360,50 +50828,,273868,12259,3 +50829,Valentina,169069,1140127,3 +50830,Lorraine Lambert,49018,10767,3 +50831,Oh Kay,121848,97008,9 +50832,Malin Persson,16032,1087005,12 +50833,Ted,67977,937120,4 +50834,Police Officer,371446,1438286,13 +50835,Rebecca,25674,12052,7 +50836,Avvocato Gorniani,52914,4661,14 +50837,Violin Friend,14976,965129,10 +50838,Merv,294652,217046,8 +50839,Sergeant,46436,191003,3 +50840,Hillary,209263,113224,6 +50841,Head Saleswoman,98125,164779,29 +50842,,252845,31898,2 +50843,Killer,78464,980,1 +50844,Grandmother,16131,79436,29 +50845,Mary,26283,95018,10 +50846,Jonathan Christian,43473,1433911,4 +50847,Sadie Burke,1717,1276,4 +50848,Orlando,83430,1129441,3 +50849,Bronco Bob Mitchell,33541,81168,2 +50850,Sandy Matthews,35564,158711,3 +50851,Sordido,23750,1220360,22 +50852,Margaret Dashwood,315010,86232,6 +50853,Rosa,9795,4570,6 +50854,Hajo Schober,49853,8204,14 +50855,Eugenia,81787,1859965,15 +50856,Motorist de la Tante,469172,1677062,15 +50857,Alvin (voice),258509,15033,4 +50858,Jane,14874,679,1 +50859,Older Insurance Investigator,87827,77155,11 +50860,Toyman (voice),22855,1129157,12 +50861,26 (voice),35177,24967,0 +50862,Claudia Goss,23855,90614,11 +50863,Aya Kito,41261,125942,1 +50864,Oliver 'Daddy' Warbucks,21780,38337,3 +50865,Mayor Joe Madden,73896,110139,2 +50866,Dr. Fox,256962,32895,10 +50867,Nate,82626,94148,4 +50868,Burrell,76640,53,6 +50869,Gôsuke sakata,143946,134346,26 +50870,Mrs. Deakin,77292,47754,2 +50871,Ellen,369406,1538824,5 +50872,Voldemar Piir,321303,1418971,6 +50873,Mattchan - Fisherman,43113,1158851,16 +50874,Man on Platform,13792,75542,6 +50875,Isabelle,61267,83966,5 +50876,Old Man,3072,102032,15 +50877,,335897,554275,11 +50878,Anne Redding,264080,47456,4 +50879,Isaksson,129359,48571,6 +50880,Oscar 'O. O.' Miller,95874,14685,3 +50881,Charles,402582,1520451,9 +50882,Leonardo,55495,222303,4 +50883,Moshe Perl,19338,24627,7 +50884,Shop Assistant,51276,1638438,11 +50885,Luke,44682,131255,5 +50886,Mr. Peabody (voice),82703,15232,0 +50887,Mike,61550,233301,10 +50888,Cindy Styne,26014,9205,2 +50889,Agent Jesus Juarez,79779,76857,0 +50890,Police Officer,274479,1745909,63 +50891,Schäfer,226001,49495,9 +50892,Garib,203217,1683028,10 +50893,Chef,387399,1849534,11 +50894,Jaume Canivell,116312,144515,0 +50895,Mevrouw van Dam,25797,27881,4 +50896,giudice Achille Parenti,43649,538006,8 +50897,Elizabeth Báthory,325039,94064,0 +50898,Albert,209263,4691,2 +50899,Julie Demarest,62720,86641,2 +50900,Himself (archive footage),410718,33663,16 +50901,SS German Officer,369885,1651425,64 +50902,Rosalie Lewett,153162,29623,4 +50903,Chad Danforth,10947,67602,4 +50904,Grandmother,114444,229364,2 +50905,Callahan's Secretary,43812,97981,48 +50906,Ted Vance,239513,116579,5 +50907,Joanna's Touring-Friend,5767,39491,12 +50908,Long Xianer,63441,1140992,8 +50909,Gertrude Hubbard,67375,97283,6 +50910,Mago,113743,21510,3 +50911,Cenga,317,4640,5 +50912,Cindy Paulson,199373,67599,1 +50913,Gun Shop Owner,45610,133284,3 +50914,Lida's Neighbor,435041,86711,7 +50915,Curio dealer,43095,213469,13 +50916,Jimmy Carter,78527,585000,0 +50917,Marcia,48846,31780,1 +50918,E. Marks / Security,365942,1480202,32 +50919,La Guayi,26864,96478,1 +50920,"Huguette, la bonne",75066,580197,7 +50921,Bertram Voss,156954,47028,0 +50922,Mal the Butcher,16058,49362,7 +50923,Detective Steven Sing,176,2131,4 +50924,,320873,1427451,3 +50925,"Akane Kashiwagi (segment ""Akane"")",26693,1024890,4 +50926,Background actor,52454,1630333,59 +50927,Karen,176124,124547,4 +50928,Dr. Lane-Porteus,153161,93123,10 +50929,Celia,30082,4734,6 +50930,Marshal Kane,40852,8949,1 +50931,Young Japanese Soldier,256962,1550644,44 +50932,Henchman with Gun (uncredited),152570,115995,10 +50933,la fée,5590,3508,3 +50934,Hank Parsons,72545,18918,1 +50935,Griswold,38433,89000,18 +50936,Second Cab Driver,98125,600741,19 +50937,Cop,6973,105786,31 +50938,Jillian,259997,964772,20 +50939,Chaplain Richards,354287,193020,31 +50940,Upscale Patron,286521,1655849,31 +50941,Fast Food Kid 4,242224,1413782,33 +50942,Michelle,306966,144288,1 +50943,Wilhelm,314285,1178926,2 +50944,Apostle Matthew,64942,1125485,16 +50945,cop,5460,583845,9 +50946,Himself,323690,208685,1 +50947,Cesira la fioraia,58611,1033021,13 +50948,Nurse Julie White,98289,55156,1 +50949,Jane's Minister,6557,1616052,30 +50950,Doug,142402,1117094,26 +50951,Otto,38792,20866,12 +50952,Elizarov,31162,93543,7 +50953,Chorus Girl #1,99318,19967,9 +50954,Duke Da Rimi,29272,106722,7 +50955,Doctor's Housekeeper,80596,83910,51 +50956,"Husband (segment ""Kurokami"")",30959,76975,2 +50957,Cindy,26914,932330,13 +50958,Maj. Mills,64129,1331866,8 +50959,Henchman in Trenchcoat,149793,3140,35 +50960,Fred Mason,84708,86356,3 +50961,"Mr. Saunders, Circus Club Manager",30022,11028,3 +50962,Wong,338421,20519,5 +50963,Sergeant O'Casey,82191,140230,12 +50964,Brad,15664,51792,1 +50965,Ifigeneia,46278,135668,2 +50966,Il preside,58611,228147,2 +50967,Sandy,18283,8521,13 +50968,Itai,1986,20448,11 +50969,Captain Pryce,300155,1053673,7 +50970,Lene mit 9 Jahren,12696,74006,8 +50971,Girl,282086,217334,3 +50972,Girl in Restaurant,21950,102453,11 +50973,Bettina,31542,1037926,10 +50974,Col. Loring Leigh,116973,2438,4 +50975,Olivia,34806,81164,2 +50976,Sarah,38150,119791,6 +50977,René,11346,20262,3 +50978,,132705,553135,2 +50979,News Anchor,98566,1412789,26 +50980,Passer-by (uncredited),2503,1553379,42 +50981,Mr. P,168022,1272223,10 +50982,Dakota McGraw,1991,6407,13 +50983,Piano Player,75622,1036828,15 +50984,Olga,85610,975849,5 +50985,Chef Pig / Phillip (voice),153518,973651,16 +50986,Captain Jacoby,193756,1283055,35 +50987,Wagner,43503,14563,2 +50988,Drake,358895,80967,7 +50989,Admiral Porter,257344,1248,8 +50990,дьяк,365544,1567382,6 +50991,Richard Kneeland,10096,1333,3 +50992,Poong-chun,348689,1248899,7 +50993,Green Lantern (voice),30061,19508,3 +50994,Steine,71805,1478943,11 +50995,Convict,28090,174906,26 +50996,Lisa Logan,84105,162747,8 +50997,Ling,72074,21908,0 +50998,Ruby,343284,1405584,6 +50999,,327231,144310,12 +51000,Turner,40793,12410,4 +51001,SWAT Sniper,13534,1089145,8 +51002,Dr. Matthew Sallin,5965,655,1 +51003,Lumberjack / Tree Attack Victim,79329,586550,28 +51004,Vet,228558,218948,2 +51005,Dr. Parsons,257450,1410539,16 +51006,Terkye,269173,1388922,28 +51007,Gus,44869,19414,4 +51008,Herself,133704,8170,3 +51009,Farragut Jones,109441,3442,9 +51010,Şeytan Rıdvan,53301,147778,1 +51011,Suggeritore Teatro,379873,1326186,20 +51012,Rev. James Lawson,132363,210695,18 +51013,Sakaguchi,73306,146785,6 +51014,Alex Desineau,188102,43426,1 +51015,Claire,146373,27727,0 +51016,Victor,19277,87401,11 +51017,Tommy,332979,1190105,21 +51018,Lord Chamberlain,14449,1183498,6 +51019,Rachel,54525,1213613,3 +51020,Put,64961,141981,4 +51021,,36236,1019917,21 +51022,P'tit Lys,8276,54276,6 +51023,Miles Warner,286971,3900,4 +51024,,10484,1676556,21 +51025,Jason Compson IV,287636,87954,4 +51026,Edward James Webb,28553,87118,4 +51027,Vincent,17825,76825,1 +51028,Salvadore,99367,52957,8 +51029,Raymond,122928,52419,3 +51030,Secretary,5172,1086573,42 +51031,Man Eating Bird Leg,9956,13604,19 +51032,Ortiz the Dog Boy,17796,6384,17 +51033,Bridesmaid (uncredited),397717,1722995,44 +51034,Жаровкин,43680,1602401,8 +51035,,188640,110202,14 +51036,Stu,381008,1589613,26 +51037,Cornelius,61765,33723,6 +51038,Doctor,55604,29600,49 +51039,,376934,1561604,17 +51040,,143073,929553,3 +51041,Detective,254188,140409,18 +51042,Bhanumathi,237672,584324,1 +51043,Kim Callan,27122,55266,4 +51044,J. Krishnamoorthy,70988,240439,0 +51045,Elli Warner,35320,19740,4 +51046,,218508,80864,13 +51047,Inspector Jolly Goodman,303966,110086,1 +51048,1st Fighter,71120,474050,35 +51049,Santi Soler (Petit),1896,19825,11 +51050,The Driver,97051,94304,13 +51051,Belén,300601,224732,4 +51052,Max,43938,10960,3 +51053,Philomène,377287,935361,8 +51054,Giacomo,310126,120025,2 +51055,Police Insp. Anderson,25551,17759,4 +51056,Mayor's Guard,13600,82142,9 +51057,Shuttle Pilot,19995,1207227,16 +51058,Herself,323555,29051,5 +51059,Schoolkid,70772,155028,13 +51060,Assistante médecin,382591,1738236,7 +51061,Policeman,55433,135757,3 +51062,Lisa Cooper,417870,9575,2 +51063,Alban,26152,20850,7 +51064,Deputy Commissioner,21968,1021785,12 +51065,Mr. Ruskin,114155,20277,8 +51066,LaBarbara Conrad / Womens' Prison Warden (voice),15060,87819,8 +51067,Joe Besser,85411,1633566,6 +51068,Orala (voice),278901,1310333,6 +51069,,45441,67091,15 +51070,Rainey,8988,129868,23 +51071,Carol,84993,1230317,8 +51072,Reporter Soudan (voice),1986,24818,24 +51073,"(segment ""Miminashi Hôichi no hanashi"")",30959,552665,48 +51074,Shirô Kurita,143946,226744,16 +51075,Astrid,76380,4111,4 +51076,Bertorelli,16444,119362,18 +51077,Byeong-joo,284135,64454,7 +51078,Delta,273481,1488513,21 +51079,,276123,1330006,2 +51080,Dr. Collins,7871,1294403,14 +51081,Rita,330171,31895,0 +51082,Kevin,28847,102170,4 +51083,Obama Mama,85350,1467911,27 +51084,Dr. Alexander Denny,7551,6163,4 +51085,Deunan Knute (voice),269650,1205378,8 +51086,Madeleine,43001,112198,1 +51087,Jack Barrett,73952,47368,2 +51088,Bus Driver,25241,1765273,18 +51089,"Kevin, Teenager",71859,132157,2 +51090,Young Yacht Guest,169355,1467780,12 +51091,,359807,1427087,13 +51092,Jenna Luther,101669,57674,7 +51093,Nick,84184,85484,9 +51094,Reno Davis,4930,1933,0 +51095,Jasmine,25988,134047,3 +51096,Alice,26514,1178772,5 +51097,Jake,14589,1198258,49 +51098,Lavigne Client,18530,122151,7 +51099,Shelley,330171,1880360,12 +51100,Branch Owens,73430,11033,5 +51101,Malcolm,9655,58373,13 +51102,Prvt. Dermot Reilly,57597,1676188,17 +51103,Morroccan Citizen (uncredited),331313,1704662,38 +51104,Buck,31067,13526,2 +51105,Antoine,48153,24495,4 +51106,Orlando Aliveres,15797,157609,6 +51107,Baby Shower Guest #2,19794,1209722,27 +51108,Blau,255491,1227898,13 +51109,Manolis,24258,1146148,4 +51110,Nurse,51999,16904,7 +51111,Aaron,1819,1653759,12 +51112,Consuela,85602,1230383,11 +51113,Larry Lowry,40744,89661,4 +51114,Martin,416635,1487245,1 +51115,Herman,7288,12900,10 +51116,Driver,170517,1745606,31 +51117,Ice Fisherman #3,100275,225418,10 +51118,Principal Raheem,347630,76525,6 +51119,Vivienne,29212,50572,3 +51120,Kōko-sensei,24154,91291,3 +51121,Lt. Commander Jiro Nomura,39276,18615,3 +51122,Himself,160297,198149,1 +51123,Switchboard Operator,27470,14253,16 +51124,Young Harvey,2771,27974,6 +51125,,2487,544088,16 +51126,Eliot Anderson,335869,1504964,0 +51127,Medoro,43548,1862037,18 +51128,Otto Groschenbügel,11869,12745,0 +51129,le colonel Luc de Mortemont,76871,580782,10 +51130,Bud,41608,32153,4 +51131,Father António,216369,22462,0 +51132,Myra Sullivan,86297,10412,8 +51133,Nelson's Wife,425774,1707893,25 +51134,,26125,1244276,5 +51135,Desk Clerk,213681,1771525,23 +51136,Rita the Receptionist,91070,63661,21 +51137,,376934,544555,3 +51138,Male Guest,267793,21861,24 +51139,Ingrid Kern,82098,39721,3 +51140,Bartender,311093,1354956,8 +51141,Wife,2295,27102,14 +51142,Himself,246655,7624,52 +51143,,73835,1606268,11 +51144,Quinette,13993,9626,1 +51145,Karnayukhov (as V. Vladislavsky),204802,1337142,5 +51146,Hair,243683,1341649,8 +51147,Jerry,78177,102445,6 +51148,,76940,227086,1 +51149,Tete,154441,1135306,5 +51150,Billy Stevens,18722,170155,27 +51151,Ivica Bek,255647,1851075,17 +51152,Lester,405388,1552452,3 +51153,Ned Tash,119213,16560,0 +51154,First Teen,29136,1623651,12 +51155,Milly Catena,265226,28782,5 +51156,Eve,86305,62001,3 +51157,Le prêtre,197089,1035736,6 +51158,Leader,51800,1317372,12 +51159,Le père de Ludovic,204771,1187203,3 +51160,Bill Daley,14050,12644,9 +51161,Super Soldier #2,293660,83445,28 +51162,,32834,1302677,4 +51163,Augie,11509,57421,34 +51164,Magnus,103433,995357,3 +51165,Steph,39545,101028,1 +51166,Maruska,44933,1282313,3 +51167,Shelly Kaplow,10744,7447,1 +51168,Teacher,167810,1793178,21 +51169,Birty Mae,43817,196902,2 +51170,Soldado,82767,31224,9 +51171,Girl with Max,109716,93896,17 +51172,Tullio Hermil,4286,3753,0 +51173,Menina da Mesa ao Lado1,117534,1818966,26 +51174,Hester,91070,1214164,18 +51175,Jordan Sands,48186,191228,1 +51176,,100791,86866,3 +51177,Manager of Pearce & Mann,74753,114837,8 +51178,Fight Spectator (uncredited),28000,1421073,14 +51179,Dr. David Jordan,395992,131,0 +51180,Подставной водитель,20871,86697,10 +51181,Haroun-Al-Raschid,60488,100768,0 +51182,Flight Attendant,1726,210842,50 +51183,Myrtle Busbee,39219,153342,8 +51184,Peppino,374416,228158,4 +51185,Messenger for Kim Pan-joo,15067,77188,12 +51186,Jed Clemson,27916,1708249,1 +51187,Sandra,23830,159485,8 +51188,Gabriel Drummer,296523,10959,0 +51189,Barker at Charity Affair (uncredited),31773,88462,39 +51190,,173494,1871453,7 +51191,Dylan Warner,35320,48465,3 +51192,Bully #2,188102,1845737,15 +51193,Tom Patterson,111470,14001,14 +51194,Cecilia Ellius,60899,8742,1 +51195,Marschall Raimund,374319,10744,5 +51196,Jonas,40859,1180863,0 +51197,Fred Robinson,183825,939737,12 +51198,Kai,95919,126778,2 +51199,Contractor,267793,98308,20 +51200,fru,442752,1270122,28 +51201,Otis,15527,102996,0 +51202,Genevieve Gernier,20825,54645,0 +51203,Minister,261037,1077477,10 +51204,Mrs. Wickett,42852,122909,9 +51205,Ana Lewis / Baroness,14869,23459,3 +51206,Dungeon Guard,38654,14949,16 +51207,Benjamin,68360,150027,4 +51208,Leonnatus,1966,20290,23 +51209,Steve Horsegroovy,10694,2130,5 +51210,Dorothy Colman,84708,13975,6 +51211,L'Oiseleur,1899,20963,7 +51212,Joanne,168022,1272224,11 +51213,TJ,38322,1869030,16 +51214,Carol Goto,270654,1424761,14 +51215,,412202,76415,10 +51216,Sheriff Duncan,27358,931650,0 +51217,Student,45013,1818034,48 +51218,Spencer,51167,17772,0 +51219,Stewardess,91583,1472480,24 +51220,Judge Rufus Barnswell,26323,128401,11 +51221,,210068,1238025,8 +51222,Servant (uncredited),1976,1422389,35 +51223,Sihteeri,101838,1029097,27 +51224,Officer Eddie King,14423,58924,9 +51225,Lyoto,257447,82915,4 +51226,Big Mama,233490,62171,7 +51227,Father,64568,89898,7 +51228,Organizzatore Rassegna,255456,120640,6 +51229,Margot,29907,141478,2 +51230,Metal,55846,1657129,15 +51231,Julian Rigby,157829,227,8 +51232,Flight Engineer,16082,79958,13 +51233,Frédéric Chapelin,124013,142446,1 +51234,Martha Kent (voice),13640,12967,5 +51235,Thumper's Sister (voice),13205,1115033,7 +51236,Roderigo - Cafe Magician,151911,29625,7 +51237,Laurent Duval,247500,1067470,3 +51238,Carole,47312,138408,15 +51239,,185987,58450,10 +51240,Danny Marcus,88518,936235,7 +51241,John R,70586,133284,13 +51242,Tante Dete,58757,50906,3 +51243,,63568,90360,4 +51244,Nico,52264,77928,1 +51245,White Queen,25694,97989,6 +51246,Det. Teddy Galloway,5289,42705,4 +51247,Trench Sentry,297762,1861352,43 +51248,General George Washington,259593,8240,7 +51249,Maygro,60551,30553,8 +51250,Scott Catesby,95516,1292,8 +51251,Official,62472,1167993,21 +51252,Woman (uncredited),413998,1894997,30 +51253,Fardusa,60677,1274671,5 +51254,Young Gary,107985,969561,8 +51255,Cop,1724,8360,27 +51256,Alfred Pennyworth,15805,34981,3 +51257,Reggie (voice),10198,52885,13 +51258,Bestatter Soltau,98612,45265,7 +51259,Médecin,382591,141014,16 +51260,Davy Hackett,42871,100318,3 +51261,Novik,59118,228881,6 +51262,Member of countermeasure meeting,43113,1481144,85 +51263,Erin,426253,1221085,5 +51264,Cat,44303,1195236,3 +51265,Pierrette Dumortier,77776,20080,0 +51266,Dr. Montague,24420,88929,31 +51267,Old Indian Hunter,97614,1159002,17 +51268,Henry,31011,534031,17 +51269,Perrache,12089,24477,3 +51270,Desmond Spellman,39345,3267,3 +51271,Lorie,380856,1451797,5 +51272,Garnet,125943,175771,2 +51273,Ethan,229594,971795,0 +51274,Sy Ableman,12573,105303,2 +51275,Neha,232711,86077,1 +51276,Young Alice,339145,553700,2 +51277,Koch,178446,33510,25 +51278,Matthew Morello,146243,589468,6 +51279,Franco,308671,18734,7 +51280,Charles Thursday / Mr. Parks,38460,120715,6 +51281,,293270,27433,1 +51282,Dr. Rekha,22429,86069,3 +51283,Elisabeth Engel,36229,1093757,9 +51284,Peter Casey,249969,3383,1 +51285,Susan Ali,14076,21245,1 +51286,Verona De Tessant,19255,52792,1 +51287,Malena,16092,79288,0 +51288,Referee,12171,1274017,6 +51289,Charlie,153,1785,8 +51290,Mr Wu,45452,227782,2 +51291,Desutoroia,12561,1091640,7 +51292,Little Man,43761,1339662,12 +51293,Henry Darin,23397,28410,8 +51294,Chen Yu Niang,121823,150899,3 +51295,Tanya,72105,43286,11 +51296,Construction Worker,339419,1650171,40 +51297,Owen Turner,30817,21411,0 +51298,Collègue Claire,283726,1690069,16 +51299,Udagawa,18585,63706,6 +51300,Conchita (as Maruschi Fresno),66967,1031918,5 +51301,Thug at the D.A.'s Home,250332,1422458,54 +51302,Christian Middleton,10077,17199,11 +51303,Lord Reith,65035,107408,3 +51304,Ed,24409,206321,4 +51305,Himself,413782,1482646,17 +51306,Graverobber's wife,3145,563068,8 +51307,Wu Zetian,217923,12672,4 +51308,Duke,14565,49271,0 +51309,Linda Tucker,407448,1863671,37 +51310,Maz Kanata,140607,1267329,7 +51311,Erika,155341,1869474,8 +51312,Solveig,11832,579158,30 +51313,Humphrey Van Weyden,33931,40529,3 +51314,Curly,173634,89614,2 +51315,rakasteleva mies,442752,1761841,34 +51316,Mrs. Johnston,76011,1319308,8 +51317,Jerry Ragovoy,128270,18,8 +51318,Cork,8270,54200,13 +51319,Himself,400668,1239053,0 +51320,Adora,395883,94256,6 +51321,Lin JueMin,76349,1106514,7 +51322,Mexican Sprite (uncredited),206647,1682536,81 +51323,Charlie Holloway,70981,130253,4 +51324,Klasse 3c,61035,1446113,39 +51325,"Lea, age 6",18897,1890251,13 +51326,Byrettsdommeren,87654,227278,10 +51327,Barista,392660,80040,10 +51328,Carter - Singing Rider,61985,30112,9 +51329,Raíssa Borges,296288,1181799,11 +51330,Maria da Graça,45179,213256,0 +51331,,49961,143122,14 +51332,John Dyckman Brown I,80941,81934,4 +51333,Jerry Levov,326285,17283,4 +51334,Linda Kasabian,381737,1218238,0 +51335,Laura Matson,31634,108232,0 +51336,Pete 'Maniac' Krizaniac,59738,214203,8 +51337,Cam,290764,84214,2 +51338,Frosch,114242,38053,7 +51339,Madge Wiggins,62046,6944,12 +51340,Doctor,336050,1093080,5 +51341,Denise,46885,65764,8 +51342,Auntie,1904,10075,3 +51343,Nicole,13163,49425,8 +51344,Ibo,175331,1028802,0 +51345,Larry Gilbert,39219,82388,0 +51346,Michael Roberts,4982,1135538,14 +51347,Kevin,20200,54233,5 +51348,Carl,280092,80619,7 +51349,,199887,4808,4 +51350,The Mariner (voice),16440,17276,0 +51351,Bülent,11930,71390,12 +51352,Whouley's Aide,14050,1539949,10 +51353,Tiffany,72946,10580,1 +51354,Alice,105528,558291,14 +51355,Jimmy,1482,11803,0 +51356,Dr. Clive Esmond,74753,40529,2 +51357,Deputy,4882,1774940,22 +51358,Iordache Cîndescu,319993,1315264,4 +51359,Jo,94336,49018,13 +51360,Mr. Scott,38978,212519,6 +51361,Newscaster,52395,92255,13 +51362,Jean Lupin,11540,25342,9 +51363,Shazam (voice),43641,16896,4 +51364,Divorce Detective,31773,103753,15 +51365,Karl Frederick Hirsch,280004,1238979,6 +51366,Mrs. Jones,233490,168326,6 +51367,Caroline Mathilde,88273,227454,2 +51368,Fellow Monk,86838,1118671,28 +51369,Nazi Officer,22998,30553,6 +51370,Disciple of Ip Man,182127,1440511,43 +51371,Dito's Mother,8194,1902,7 +51372,Soldado (uncredited),82767,223082,12 +51373,,67633,111055,13 +51374,Jodi,89492,93285,7 +51375,Rachel Troyler,289225,81217,2 +51376,L'udriaco,46567,97114,6 +51377,The Hermit,58905,2438,3 +51378,Mathieu’s Frau,1561,17594,5 +51379,L'employé des pompes funèbres,21145,1055524,5 +51380,Bade,56901,86022,5 +51381,Father Lamont,8292,1212933,20 +51382,,245017,1418651,4 +51383,Robbie,72251,18331,1 +51384,Kid in Car,308,4878,17 +51385,Anja Månsdottir,24023,90604,6 +51386,Barn Dancer (uncredited),31509,1409209,19 +51387,Mr. Raul Delgado,266285,1038935,14 +51388,Cop,5123,171701,27 +51389,Reluctant Surgeon,284052,1167481,23 +51390,Miss Richards,39517,28749,15 +51391,T.J.,152532,114000,8 +51392,Judex / Vallieres,56800,224985,0 +51393,Soon-cheol,142499,1510533,4 +51394,Investigator,52454,1630254,7 +51395,Post Modern Review Staff,13092,40477,12 +51396,,45441,58604,17 +51397,Lord Southmere,29694,94842,0 +51398,Teddy,427673,1228341,3 +51399,Male Tourist,54318,1293761,14 +51400,Punk #2,16296,1074167,11 +51401,Cowboy Bob,22419,141,2 +51402,Norman Merridew,38437,14975,4 +51403,Joey,112456,1054837,3 +51404,Helen,245692,516,1 +51405,Gwen,189197,103554,13 +51406,Leopold Wesnik,82941,146808,7 +51407,Joe,52936,5950,1 +51408,Older lady,15472,73071,24 +51409,Dancing Girl,38432,94034,11 +51410,Gov. Teller,56558,34277,22 +51411,Fortune Teller (uncredited),31773,13360,52 +51412,Rosa Maria,228290,129303,7 +51413,Reporter,87343,1528361,5 +51414,Karen McCausland,70772,38711,2 +51415,Dr. Robbins,68387,63564,13 +51416,Data Host,315837,1903383,19 +51417,Alan,18739,39185,10 +51418,Vampire Caveman,29416,97966,10 +51419,Late Night Restaurant Patron (uncredited),85350,1386330,76 +51420,Extra,53407,85778,14 +51421,Sin,112304,1330,12 +51422,,337012,1168761,13 +51423,Johan Åkerblom,41764,2201,2 +51424,Charlie Cooper,268350,129426,6 +51425,Abdel,37600,1111692,2 +51426,Julio,77439,990125,3 +51427,Melville,292033,2481,2 +51428,Dave,316885,27764,2 +51429,Dr. Katie,91070,140406,16 +51430,Reggie,253235,164382,24 +51431,English teacher,288788,1031246,8 +51432,Miner,28421,98052,9 +51433,Robbery Victim,21968,1655538,8 +51434,Hype Man,12182,68842,13 +51435,Katrina (as Deborah Xavier),65416,1050847,5 +51436,Kate,95516,89822,4 +51437,Wheelie (voice),38356,78798,19 +51438,Sexy Businesswoman,153,1020826,20 +51439,Somkiat,64215,521673,5 +51440,Cetto La Qualunque / Rodolfo Favaretto / Frengo Stoppato,161545,73864,0 +51441,"Polina, the bailiff's wife",184795,232127,6 +51442,Sarge (voice),27300,14886,14 +51443,Mac MacGuff,7326,18999,6 +51444,College janitor,88271,213519,8 +51445,Perth's doctor,292625,1758595,6 +51446,Mr. Parker,15013,77689,19 +51447,Capt. Arthur Chamberlain,120837,96758,2 +51448,Samuel,44793,123926,3 +51449,Amy Tilton,270007,145247,2 +51450,Mr. Schuyler,286521,204405,13 +51451,Suzie Barnes,72207,88029,3 +51452,Peter Parker / Spider-Man,102382,37625,0 +51453,Ria's Friend (uncredited),15092,1895704,83 +51454,John Hamilton,35926,16004,4 +51455,Paul Davison,83899,162924,8 +51456,Somil Sharma,347807,84957,3 +51457,Veera,33481,110755,1 +51458,Mr. Carrillo,43808,119258,11 +51459,Lin Ren Yi,41378,1196099,10 +51460,Sparks,92391,1071132,12 +51461,Leonard Attwell,25941,11180,7 +51462,"Starszy aspirant Jacek Goc ""Gebels""",425961,235493,7 +51463,Nino Kipiani,371741,77122,2 +51464,Adolf Hitler,41597,1357956,30 +51465,Tonowari,76600,7248,6 +51466,Albino,104954,33819,8 +51467,Guard,323675,1769803,37 +51468,Journalistin,61035,232202,6 +51469,Motel Employee,238398,1272847,5 +51470,Steve Spirou,87428,84920,14 +51471,Florence Malraux,14555,113605,6 +51472,Ethel Ransom,49843,40949,6 +51473,Barbie / Liana (voice),13004,74358,0 +51474,Belvera,36214,1021566,2 +51475,Grace,179154,1024722,1 +51476,Private Alto,340275,1531592,23 +51477,Alexandra Rover,10488,1038,1 +51478,Lorenzo Miguel,366860,585981,1 +51479,Lorenz / Jason York,5289,10814,2 +51480,Asta,210052,1630631,4 +51481,Frederick,240913,1213398,17 +51482,Stephanie,42448,77225,10 +51483,Chicago,15261,78035,7 +51484,Cat,392011,1604692,1 +51485,Luigi Mayer,39979,240913,15 +51486,Dr. Lorena,248543,91706,6 +51487,Meriem,340616,1209069,7 +51488,Queen Prunaprismia,2454,25132,6 +51489,Party Guest,43811,1416869,68 +51490,缉毒警察,128842,1110538,2 +51491,Bedido (as Herb Ellis),43321,1161312,9 +51492,Smiley Jackson,97829,30238,7 +51493,Milan,12089,24379,2 +51494,Harry Coleman,10330,137169,9 +51495,Luther Stickell,177677,10182,4 +51496,Dallas Man,274479,1774091,59 +51497,Robert Epps,38356,8169,5 +51498,Man at Banquet,43811,120748,45 +51499,Martine Laurentin,10795,115272,32 +51500,Gwen,63360,236986,15 +51501,Mädchen,170759,1153029,21 +51502,Dexter Franklin,185934,81481,4 +51503,McGinty,72096,93846,28 +51504,Sherry,73943,1212960,3 +51505,Sergeant,6972,45210,6 +51506,Dell,70583,558909,1 +51507,Anchorman,336004,1717268,26 +51508,Sonya Rostova,149465,931901,9 +51509,Spencer,30941,1911,7 +51510,Ryan Sanders,21753,33294,6 +51511,James Bowie,10733,12261,2 +51512,Scooby-Doo / Fred / Wiki-Tiki,24615,15831,0 +51513,Attorney Hiruta,32690,7453,1 +51514,Lisa,292035,1363043,4 +51515,Sashi,353533,85595,9 +51516,Amy,7233,61178,15 +51517,Amy,28031,2838,3 +51518,Hildegard,178446,1034302,6 +51519,Nick Pirandello,44801,26485,0 +51520,Heiko,28938,104246,8 +51521,Marine Crew Chief (uncredited),44943,1205900,51 +51522,Emil,42941,1200414,21 +51523,Chris,15073,3872,1 +51524,Grommet,257088,1104462,9 +51525,Featured Tourist,325263,1636507,3 +51526,Librarian,124042,5889,7 +51527,Sockhead,17796,95024,15 +51528,אשת לוט,43083,129238,3 +51529,Nick Rice,22803,134,0 +51530,,37429,106621,1 +51531,Greyhound John,137357,30766,1 +51532,Criança1 - Luciana,117534,1902453,29 +51533,Fighter Nick Palerno,108222,128643,47 +51534,Arcangeli,43469,589221,3 +51535,Executive Police Officer,43113,1481172,37 +51536,Lew Hutchins,120615,4073,3 +51537,Grave-robber,68737,2277,21 +51538,Anne,168022,1272219,5 +51539,Softball fan,352498,1562964,19 +51540,Osvald,284279,1347584,11 +51541,Maria Gonzales,2577,2206,1 +51542,Senichi Fukuda,315846,123739,10 +51543,Felix Bonhoeffer,18633,4173,0 +51544,Dan Lewis,178927,9091,10 +51545,Card Dealer,443053,1763227,3 +51546,Roadie (uncredited),330947,1073048,52 +51547,Heidi,18238,85979,9 +51548,GSDF Officer,43113,552180,47 +51549,Magnus,75244,1085553,3 +51550,Simon,40785,76392,5 +51551,Kyle Gibbs,343173,40687,6 +51552,Young Georgia,4592,1580,13 +51553,Vegas Detective,96936,42133,22 +51554,Mr. Gloop,118,1815748,23 +51555,Todd Wells,301368,543505,0 +51556,Félicité,45184,5738,11 +51557,Herself,27637,1337684,38 +51558,Extremis Soldier,68721,1535095,82 +51559,Bill,103014,166495,8 +51560,Nurse Susan,242042,1557641,17 +51561,Trish,257345,51610,11 +51562,Lord Fermoy,21893,39188,6 +51563,Hanka Tomczyk,224,2817,8 +51564,Don Learo (uncredited),50012,16523,8 +51565,Sugar Pie,340275,114849,33 +51566,Sir Ten-to-Three,30059,291,1 +51567,Mother-in-law,293670,1112238,5 +51568,Le roi (voice),22504,556460,1 +51569,Adam,359870,7031,4 +51570,Ang Nyima,211088,1304685,6 +51571,,83346,929463,2 +51572,Victoria,75101,1523984,2 +51573,Rapper,51828,127008,28 +51574,Martha,11832,1429994,26 +51575,Lucía,366860,1532117,3 +51576,Himself,9577,59436,0 +51577,Frank,1673,16017,3 +51578,Himself,130993,1310862,1 +51579,Jeanne Rebatet,284620,230743,3 +51580,Cop #1 (uncredited),4982,206398,79 +51581,Maresciallo Orlando,59040,1871300,29 +51582,Rose,169068,2022,2 +51583,,74481,35779,5 +51584,Giant Stuey Monster,17796,54507,19 +51585,Léon Lescaut,132332,15137,2 +51586,Novak,12707,4966,4 +51587,Fred,18495,7866,5 +51588,,49446,142314,1 +51589,Walker,456781,11366,2 +51590,Bob Elkin,45938,231333,2 +51591,Doctor,32540,109325,13 +51592,Dove,1589,53487,10 +51593,l'uomo che occulta il cadavere dell'onorevole,43211,1885527,20 +51594,Dragec,385654,124961,2 +51595,Dr. Bartholomew Wolper,142061,21731,8 +51596,Luisa,1922,19998,4 +51597,Gynaecological Nurse,76757,1347063,54 +51598,Guard,9461,18897,2 +51599,Young Louis,227306,1394425,12 +51600,Roger Rockmore,36817,15070,5 +51601,Cpl. Crane,133715,151937,12 +51602,Susan,29694,93966,11 +51603,Laure,64239,1972,1 +51604,John Jefferson,52991,12499,3 +51605,Louie Mott,72823,3163,9 +51606,Susan,18690,138251,3 +51607,Flight Attendant,41733,142375,13 +51608,Amos,16997,23346,9 +51609,Tally,278334,145683,2 +51610,Physical Therapist,239563,106370,23 +51611,,19082,84678,3 +51612,Woman in Waiting Room,336691,1547697,15 +51613,Roger Savard,271826,79612,5 +51614,Mrs. Errol,38602,149979,2 +51615,Maureen,92389,55192,1 +51616,Student Guide,13493,205300,16 +51617,Phil,34652,41720,5 +51618,Himself,53380,10369,1 +51619,Man in the Train,28710,1162544,16 +51620,Sun Quan,12289,1622,0 +51621,Waitress Suzy,266425,1313154,27 +51622,,109587,1054693,27 +51623,Doctor,77165,38125,5 +51624,Frances Jane,131475,133252,0 +51625,Mrs. Blackwell,35404,96817,10 +51626,Pierre Millet,11399,20772,3 +51627,William Fitzroy,43525,11169,6 +51628,Hospital Chairman,30637,106627,8 +51629,Ticket Agent (uncredited),172443,178757,9 +51630,Radim,199644,1179809,2 +51631,Jess,26656,19538,1 +51632,Lupo,61113,3198,0 +51633,Didier,62675,1433384,16 +51634,Janine,20017,22612,7 +51635,Sam Geldob,262841,558925,10 +51636,Jane Nichols,6557,25541,0 +51637,Cyborg,90616,1692061,3 +51638,Vanessa,270400,4166,2 +51639,,220809,114252,2 +51640,Flemming (Age 20),293863,1459143,13 +51641,Overbeck,31167,104714,5 +51642,Blasco Martinez,55720,76857,4 +51643,HImself,63144,1624615,10 +51644,Frankie,115929,1064509,11 +51645,Quintero Man #2 (uncredited),213681,237345,40 +51646,Jochen,273,3874,2 +51647,Himself,399810,1231673,1 +51648,Band Member 1,85350,1467979,58 +51649,Chaz,55638,167320,4 +51650,School Fight Opponent,13823,75793,30 +51651,Greg,54388,160118,3 +51652,Scottie Templeton,130917,3151,0 +51653,Richard Morgan,228294,91399,6 +51654,Kate Kelly,38978,1619138,17 +51655,,125229,150247,5 +51656,Priest,115531,3359,0 +51657,Hamir,284052,1703906,12 +51658,Erica,60086,79493,3 +51659,Sir Harry Lorradaile,38602,129033,17 +51660,Bob,51939,11160,4 +51661,Bo (uncredited),48116,436643,11 +51662,Dr. Caswell,56942,1047752,6 +51663,Dr. Drew Bayliss,10299,7664,3 +51664,Female Nurse,214756,1358986,27 +51665,Gally,198663,93491,6 +51666,Sheriff Rick,262841,12834,5 +51667,Lillian,44875,103490,10 +51668,,105860,39432,11 +51669,Gennarino,11048,1169660,12 +51670,kobayashi goro,81296,551776,1 +51671,Fanny Dashwood,315010,42641,8 +51672,US Army General,127585,7009,52 +51673,Rózsi,436343,1012241,11 +51674,Old Stuff,183832,1509,7 +51675,Detective,362765,1519320,4 +51676,Bill Hall,425774,1670910,20 +51677,Receptionist,17725,1170282,24 +51678,Soldier (uncredited),4982,1111693,84 +51679,,31913,170975,23 +51680,Miss Steele,315010,209458,10 +51681,Aakhri Pasta,58051,81983,9 +51682,Achilleas,46278,135670,4 +51683,Fosca,56804,227909,1 +51684,Munna,81551,146973,1 +51685,'Col.' Boris Morosov,40985,4343,3 +51686,George Zucco,38743,9046,1 +51687,,115427,1086294,2 +51688,Doris Klugman,42604,1452156,7 +51689,Sarah,383538,1502946,18 +51690,Ray,9993,26291,3 +51691,Ace Anderson,33541,81182,12 +51692,Lotta,19181,577390,2 +51693,Marty,58462,4724,3 +51694,Museum Guard,179066,93500,46 +51695,Club Goer,77930,1550822,39 +51696,Segundo,116312,37525,13 +51697,Woman Getting Squirted,253077,56322,9 +51698,Iron Fingers,66756,237256,2 +51699,Jordi,109690,560254,10 +51700,Thor Odinson,413279,74568,1 +51701,Detective Sgt. Strake,74525,7685,9 +51702,Nurse,44716,1170690,12 +51703,Doorman,330115,20760,13 +51704,Brian Kelly,10594,10867,2 +51705,Eddie Stoner,94248,1267134,3 +51706,Firefighter (uncredited),44943,1205884,40 +51707,Suzanne,99767,1016036,7 +51708,Claire,195022,1180697,4 +51709,Mission Control,5172,1630274,56 +51710,Waitress,9953,60880,13 +51711,Snug,182129,33108,10 +51712,Vlasta,346723,996558,4 +51713,Hofrat,24140,594507,11 +51714,The Leningrad Cowboys,11475,1076415,7 +51715,Judge Witherspoon,72096,177493,34 +51716,Gianni Schicchi,72057,564826,5 +51717,Marilyn O'Connor,40034,106245,4 +51718,Charlie Chan,90956,83822,0 +51719,Bernini Senior,369245,73873,5 +51720,Bikini Girl,8457,1586957,38 +51721,Toni,248633,11617,0 +51722,Dro,10821,1174582,10 +51723,Judge,27629,14361,23 +51724,Joe Matthews / Micah Matthias,289225,16857,1 +51725,Sheriff Ned Riorden,292294,93624,6 +51726,Michael,348631,78311,3 +51727,Detective Holt,402582,11679,6 +51728,Jo Jo,108501,1196604,2 +51729,Pic,126090,1425449,15 +51730,Manny's mom,239562,146004,8 +51731,Uncle Misha,49943,86725,7 +51732,Girl Soldier,310593,1336860,31 +51733,,56666,78749,0 +51734,Thug on Subway,4413,209266,24 +51735,Gen. Ed Sheppard,21605,13726,6 +51736,Maid / Party Guest (uncredited),22943,148004,8 +51737,Vampire victim,45273,1122361,9 +51738,Laura Travers,51104,6930,1 +51739,Gunther,42941,43299,19 +51740,Megan,42309,205307,2 +51741,Yano,73306,20708,3 +51742,Tony's Italian Friend (uncredited),105551,9096,12 +51743,Greg Pike,62039,156288,3 +51744,,39493,1206374,7 +51745,Boris Potemkin,29610,4175,2 +51746,Mike Stokes,70006,935293,6 +51747,Himself,19244,84394,3 +51748,Mother,282762,1861429,6 +51749,Basketball Dad,232672,56728,29 +51750,Yim Wing Chow,25645,1616855,9 +51751,Urag,68737,58319,8 +51752,Richter,79362,586674,7 +51753,Guard (uncredited),15794,113760,27 +51754,Young Macy,64191,38703,7 +51755,Will (voice),27300,5741,17 +51756,Nai In,39907,228621,1 +51757,Hung,53168,1143686,5 +51758,Black Israelite Reader,397717,1722987,31 +51759,Lynn,81996,69405,1 +51760,Adult Hannah,39334,122675,0 +51761,Pilot,96433,103069,11 +51762,Herman Bucholz,511,7112,6 +51763,Patrizia,5165,41780,3 +51764,L'homme nu sur la vidéo,377853,77909,18 +51765,Lt. Thomas Peniston / Werewolf,50942,4808,10 +51766,Henchman Polka Dot,183832,1095107,16 +51767,Eden 10 Years Old,58244,1467537,18 +51768,Evette,1550,17489,7 +51769,English Beauty,8247,17337,16 +51770,Roy Rogers,132859,83395,0 +51771,Rosa,8053,25911,8 +51772,Mrs. Higgins,25507,9073,8 +51773,Toyogorô,137504,551801,10 +51774,,103689,1034609,4 +51775,Oshige,88271,24551,2 +51776,l'homme à la décapotable,78258,583486,4 +51777,Franciscus,46567,9768,3 +51778,,14753,1127061,14 +51779,Principal Dancer,11887,1386113,14 +51780,Manolo,59117,228878,11 +51781,Roman Włodarski,298040,146434,7 +51782,Judd,5721,45102,3 +51783,herself,112072,1053814,2 +51784,Frank Alton,72823,40234,5 +51785,Lt. Liebowitz,189,8693,17 +51786,Kim,158150,11074,5 +51787,Danielle White,33592,937286,5 +51788,Restaurantgast,37405,16244,6 +51789,,57701,226708,8 +51790,Betsy,45692,133479,11 +51791,Captain Lucas,40761,56924,3 +51792,Wallon,31264,32679,8 +51793,Krzysztof's Father,149511,28723,10 +51794,Man in Bakery,7942,80536,19 +51795,Roger,393407,24041,9 +51796,Bobby Long,9953,8891,0 +51797,Kelly Height,270303,1361099,5 +51798,Himself,400668,1239077,12 +51799,,402612,1037943,14 +51800,Mahmoud,83384,20644,7 +51801,Paul,137683,23821,2 +51802,Gry,11328,234102,6 +51803,Inspector Fernack,463906,12798,5 +51804,Missy,221981,188882,5 +51805,Bobby,365753,1569796,8 +51806,Harold,47342,138621,7 +51807,princ Petr,160106,1247355,0 +51808,Grim Knight Dancer,243683,1398129,61 +51809,Raquel Mendoza,259292,1012321,4 +51810,Rafe Khatchadorian,369883,971299,0 +51811,,15464,1064937,5 +51812,Capt. Robert MacClaw,108345,40201,0 +51813,Jeremias Lander,70670,76553,6 +51814,,53693,559145,19 +51815,Tess Malone,107250,8437,5 +51816,Herself,16800,938992,2 +51817,Himdall,63736,113746,5 +51818,Lupe 'La Pinguis',41298,1532844,2 +51819,Ben,377432,33337,3 +51820,Kenny,109391,1204681,12 +51821,Charlie Hudson,44388,15424,1 +51822,Gilbert Simpson,85610,116256,1 +51823,Dona Yayá,119374,557997,2 +51824,Policeman,13436,1656898,37 +51825,Sugako,73306,96474,5 +51826,Andy Wasilewski,250275,62569,0 +51827,Fence,72460,50235,4 +51828,Peters mor,24821,111539,9 +51829,Muhamed,177155,1050079,7 +51830,Ariadne Kaligaris,9779,59182,16 +51831,Young Mom,431093,1753143,14 +51832,Audience Member,38322,1869063,64 +51833,Alamein,39356,55934,2 +51834,Curtis,8988,1741942,14 +51835,Barbara Drew,43489,98574,4 +51836,Doctor,56969,86503,5 +51837,Various (voice),110392,383,3 +51838,Barker (uncredited),31773,117675,36 +51839,Andrea,204965,1187356,14 +51840,Miho Tsugumo,14537,76976,2 +51841,Maid,15640,1300728,19 +51842,,17303,1628176,16 +51843,Sadie's Singer,4688,1218227,20 +51844,Mrs. Iseya,34019,1122585,9 +51845,Woman Dancing with Geller,109716,34212,77 +51846,Buddhist Priest,76170,1685383,17 +51847,Kevin,24403,91581,3 +51848,Professor,240832,1426308,12 +51849,Marcel,24685,92305,9 +51850,Hamish Receptionist,14527,1238390,6 +51851,Wedding guest (uncredited),37628,1514446,34 +51852,Locker Kid,397837,1818583,21 +51853,Zhou Qian,217923,1021200,13 +51854,Mr. Wax,219466,78018,10 +51855,Old Lady in Hall,153162,34331,26 +51856,Rex Newbauer,62046,80595,9 +51857,Invité défilé 1971,221667,1298706,13 +51858,Sybil Williams,270650,28639,1 +51859,Coffeeshopverkäuferin,130739,1100363,16 +51860,The Street Urchin,252171,1409030,6 +51861,Bartender,241254,1113450,23 +51862,Cornelius,245700,1587576,47 +51863,Billy Bradley,68737,239019,4 +51864,,10754,66471,9 +51865,Dib,278334,1360630,5 +51866,Betsy Booth,43846,9066,4 +51867,Yeo-wol,285213,86889,2 +51868,Television Host,31672,557155,7 +51869,Himself (voice) (uncredited),18722,217291,56 +51870,,285685,1646281,11 +51871,Jérôme 2,65898,64750,3 +51872,Jesus,268920,155540,16 +51873,Scowl the Owl (voice),44283,68812,7 +51874,Mary Anne,29168,98817,7 +51875,Capitaine Courson,37710,222569,11 +51876,Claudia Bertelli,183964,67323,0 +51877,EHC Client,71670,146418,41 +51878,Sally's Friend (uncredited),64678,1831703,17 +51879,Cook,339403,1635149,34 +51880,,42501,25966,12 +51881,Mean Corporal,25388,649,10 +51882,Sybil,27138,35,1 +51883,Mrs. Dawson,38602,1225712,8 +51884,Ellen Gibby,85230,20011,2 +51885,Brigadier General K.C. 'Casey' Dennis,23861,11492,0 +51886,Brenda Morel,310593,6352,4 +51887,Dixie Donegan Crane,43792,87685,1 +51888,Video Operator,321779,1421391,10 +51889,Bikini Shop Customer,323675,1769769,22 +51890,Bully,102382,1657525,54 +51891,Dawn-Marie Zeffer,55728,131183,9 +51892,David Bronson,197737,30002,5 +51893,Head Stripper,117509,98384,11 +51894,Funeral Attendent,379959,380767,22 +51895,Weinberg,77625,59874,4 +51896,Villager at the seaport,2963,28964,3 +51897,Herself,315850,105788,9 +51898,Ray,240881,55086,2 +51899,Dr. Sturdy,76084,81180,6 +51900,Inspector,40985,14359,10 +51901,Dancer #1,13442,87381,9 +51902,Private Needles,12412,459980,24 +51903,Sang-il,21442,230363,7 +51904,80's Man,103620,1161579,20 +51905,Pankaj Udaas,12273,86022,8 +51906,Syrette,52270,100588,9 +51907,Harry Cook,301566,1382838,4 +51908,Upscale Opera Guest,10362,1302821,43 +51909,Commissario Salimbeni,165159,240014,8 +51910,Student,240832,1426645,30 +51911,Drag Fan,1481,1844348,42 +51912,Mrs. Wright,93676,1782150,15 +51913,Mama Mousekewitz (voice),27653,193140,2 +51914,Eve,138496,475357,0 +51915,The Ox,39979,50745,17 +51916,Dr. Alice Howland,284293,1231,0 +51917,Manuel,186755,119671,5 +51918,Daisy Bunting,175822,47678,1 +51919,Peter Yates (as Charlie Ruggles),39311,2436,0 +51920,Heinz Bösel,11122,39905,0 +51921,Policeman,14088,1682,12 +51922,Joyce Edwards,261035,118630,2 +51923,Carmelo Peters - LCSW,81434,25147,2 +51924,Joey's Family Member,356752,1841508,29 +51925,Upscale Party Guest (uncredited),213681,1771579,50 +51926,Mahalik,4257,18471,4 +51927,The Demon (voice),193040,1173460,5 +51928,Chloe,10008,61940,9 +51929,"""Strach""",382155,1636675,14 +51930,Valeriy Sinitsyn,57809,81000,7 +51931,The Doctor,19116,6576,2 +51932,Uncle Bill,99846,6463,5 +51933,Mordechai,31890,11278,6 +51934,Q's Assistant,206647,122556,18 +51935,Arlene,24078,11148,2 +51936,Reporter on TV,4982,1386512,51 +51937,Lewis,343173,76104,2 +51938,Nilgün,179715,1258268,6 +51939,Tommy Maxell,135652,21315,0 +51940,Nicola Moschetti,82083,228158,2 +51941,Agnes Lynch,179818,98971,2 +51942,Maria,371942,27642,7 +51943,Wes,76785,54856,3 +51944,Tetsuo Teri,19545,30469,3 +51945,Miller,13336,119199,4 +51946,Naomi,16996,16845,29 +51947,Aggie Cromwell,34560,8857,0 +51948,Tso-Tsing,186584,16096,1 +51949,Perry (11 years old),82654,1676064,25 +51950,Nastya,31162,107727,3 +51951,Britannus,31561,14300,6 +51952,Manager,354979,1636775,55 +51953,Larry,167810,1793172,16 +51954,Mew the Toy Mouse,47670,64180,1 +51955,Captain Barsanges,52358,1036293,5 +51956,Anna Darvulia,8316,20699,3 +51957,The Butler,82243,86365,4 +51958,Lieutenant Perkins,182228,226581,8 +51959,Porthos,64044,235981,3 +51960,Salome,102428,1030578,0 +51961,Kuzhandaivelu's henchman,330418,1489945,13 +51962,Schützenbruder Pit,83729,225907,18 +51963,Quint Lane,52520,557840,20 +51964,Abe Parker,169869,9866,8 +51965,Carrie Chapman Catt,49007,5657,1 +51966,Giorgio,46128,134950,0 +51967,,265832,7904,1 +51968,Balthasar,47670,68455,3 +51969,Mayor Cornish,13241,145601,4 +51970,Rick Martin,185289,29643,4 +51971,Haruo Yamamoto,51581,115658,8 +51972,Royal Photographer,10804,20243,17 +51973,Screaming Casino Woman,263115,1821488,85 +51974,Titannica Lead Singer,14923,105672,72 +51975,Cleaning Lady,121942,1136409,3 +51976,Ankhe,353462,1337805,3 +51977,Senator Colby,78734,14969,10 +51978,Himself,23524,236678,9 +51979,Soldier,1724,87575,26 +51980,Sean Boswell,168259,155,15 +51981,Sergei Lebedev,26873,96511,2 +51982,Maksim,64736,83836,1 +51983,David Knight,277237,1115,2 +51984,Himself,144680,1498788,15 +51985,Le grand garçon,21348,1838950,13 +51986,Kristin Lavransdatter,57438,226190,29 +51987,Mom Thompson,25132,41087,28 +51988,Brenda Martin,9959,1231,1 +51989,Fukushi Sentâ Jimuin,11838,45993,9 +51990,Dan Dann,5060,40944,3 +51991,Doringo,39979,102121,5 +51992,Tour Guide,64328,1903,11 +51993,Bistan,330459,11184,22 +51994,Priscilla,42487,41246,2 +51995,Shauna Nelson,4413,37155,13 +51996,Sandy Brooks,51836,122888,1 +51997,,63215,233868,17 +51998,Laurindo,261249,14063,5 +51999,Ruiji's Maid,217923,1436269,29 +52000,Sheriff Manfred,54099,25848,2 +52001,Noreen,43754,35468,12 +52002,Fernando,156180,129886,8 +52003,Will,306966,935201,2 +52004,Franz-Joseph,59349,1977,0 +52005,Kurihara,356156,1736341,5 +52006,Isabella Patterson,245906,17606,1 +52007,Belini,1428,11159,7 +52008,Maurice Edwards,181876,3796,4 +52009,Chuck Rampart,18015,93345,2 +52010,Orderly,215379,1385278,15 +52011,Eugene,18595,1781511,15 +52012,Puffy,94251,30238,7 +52013,Jen Strobie,43384,30296,2 +52014,Doctor Josiah Glass,25507,83474,1 +52015,Mrs. Edith Oliver,61908,84487,14 +52016,,56971,128236,2 +52017,,364833,81000,1 +52018,Laurie Carpenter,358982,1200039,3 +52019,Dr.Teuter,226693,1199440,13 +52020,Obersturmbannführer Bruno Müller,13614,51651,10 +52021,Brede Sperre,70670,63767,7 +52022,Audience Enhancer,124054,1085035,5 +52023,Col. J.A. Nielson,140472,29578,0 +52024,Bakhram,31162,18283,12 +52025,Emilio Lacayo,95358,106179,1 +52026,Lena,390880,120233,5 +52027,Tripler,41556,50463,5 +52028,Sir William Gull,24486,40008,2 +52029,Alfonso,156597,1217851,18 +52030,Venny,207699,1196852,15 +52031,Sophia,341745,48148,1 +52032,Anna-Kaarina,33481,110761,10 +52033,Rainbow - Joe's Dog (uncredited),14615,1179846,95 +52034,Wanzhu,62071,1496389,5 +52035,Uncle Reuben,52360,120818,18 +52036,Herself,9951,1692543,15 +52037,Count Gomez,16638,47397,7 +52038,Jérémy,64944,572240,6 +52039,Prison Guard,250066,1158069,10 +52040,William J. Harding,20640,30279,4 +52041,Roland Hunter,29872,13966,6 +52042,Elena,19936,1110444,2 +52043,"Tony Brown, Sr",337073,1056699,9 +52044,Monsieur Dupré,41277,224073,33 +52045,Tim the Cartoonist,117023,1666251,1 +52046,"Marge, Peggy's girlfriend",25738,95275,9 +52047,Harrison McKendrick,10055,21722,9 +52048,Minerva Mulvain,109018,8857,1 +52049,Fury Shark,261035,32194,7 +52050,The Dog Owner,271718,3141,13 +52051,Belmont,8053,20309,2 +52052,,104343,1697247,5 +52053,Palola's Cousin,43783,1246620,8 +52054,Ganapathy,332827,1289442,9 +52055,Kim Hwa-Young,407887,83221,5 +52056,Prophet,105503,119717,1 +52057,Helsa,24619,1322270,15 +52058,Hahou Mo,290864,1341,0 +52059,Sentul,28263,1279480,7 +52060,Sam,112961,61607,5 +52061,Gino,198062,222121,2 +52062,Tereza,199644,72865,0 +52063,,153420,930425,4 +52064,Narrator/Voice of Bergman,136786,64971,2 +52065,Mikey/Mr. Grimm,107596,82779,11 +52066,Ruchika/Chiku,363413,1148844,4 +52067,Len's Girlfriend #1,8669,1281024,31 +52068,John Struthers II,332079,34320,20 +52069,Игорь,47812,139459,4 +52070,Korean Embassy employee,242458,573794,12 +52071,Maggiore Mannfred Roland,50849,825,4 +52072,Milt,112973,59196,0 +52073,Rogue Knight,68737,155282,9 +52074,Claudio,57918,119996,4 +52075,Gary,139571,967200,5 +52076,Spouse,160324,192926,1 +52077,,224950,10210,1 +52078,Officer at Briefing,72638,1208020,28 +52079,Paul,259694,1226277,16 +52080,Jadwiga Kolęda - Naczelnik Gminy,38869,7111,0 +52081,Sarah,156015,28254,7 +52082,Ben Marshall,225285,6640,0 +52083,Sokovian Driver,99861,6092,60 +52084,Bean,279096,1163437,13 +52085,Mother,125344,77054,2 +52086,Presidente Hugo Luis Ramos,25426,655,3 +52087,Mère de Gabrielle,382501,1350,6 +52088,Traffic cop,19398,1469194,28 +52089,,277934,937348,4 +52090,Camp Follower (uncredited),42641,97042,11 +52091,Erzähler (voice),9551,57915,0 +52092,Police Chief Juan Rodriguez,94182,89691,9 +52093,se stesso,120922,1777469,13 +52094,Backwoodsman,52360,34448,54 +52095,Carol,26679,1088121,8 +52096,Big Black Man Breaking Bottle,147829,555903,21 +52097,Johannes Claudius,267389,18536,10 +52098,Giulio,186630,1168941,8 +52099,Rosalie,98349,10767,2 +52100,Pedro,33107,1458393,9 +52101,Ricardito,254869,114461,5 +52102,Masha Kampe,368342,70839,4 +52103,Mr. Bleek,38417,6931,1 +52104,Marilyn Monroe,337751,17442,0 +52105,Policeman,13436,1656900,39 +52106,Osiris Amanpour,106747,11161,6 +52107,Travis Ryer,10077,12833,4 +52108,Greek Following Kay (uncredited),179066,97999,34 +52109,Asgardian,284053,1768699,13 +52110,Bucigny-Dumaine (le bel officier),62363,25182,6 +52111,Money Mel,142989,1118150,8 +52112,Odenigbo,209401,5294,0 +52113,Dakins,111014,92264,4 +52114,Burt,8272,1690482,11 +52115,Le psychiatre,2029,20853,6 +52116,Mario Podesta,19971,125650,4 +52117,Re Igos,296491,37784,4 +52118,Himself,245394,41419,2 +52119,Claire,182545,1165640,1 +52120,Halla,127913,1104958,2 +52121,Keller,4375,29159,6 +52122,Lee Hearn,18447,30554,7 +52123,Doyle,2611,47137,4 +52124,Himself,41331,2047,1 +52125,Billy,52741,1706741,7 +52126,Jack Diaz,427673,934136,2 +52127,Tank,74830,4451,2 +52128,Er Trippa,52914,235871,2 +52129,,79580,587514,9 +52130,Lou,91390,17199,8 +52131,Robin,46883,545605,2 +52132,Outer Party Orator,1984,101854,11 +52133,Policewoman,103620,1496728,14 +52134,Betsy Quinn,46227,83211,4 +52135,Doctor,14088,547991,3 +52136,Charlie Braddock,29805,15196,2 +52137,Hadji,245692,1574459,3 +52138,,293412,19687,6 +52139,Darren (uncredited),13802,1015830,49 +52140,Customer,218443,86640,7 +52141,Miss Cottontail girl,58159,232415,4 +52142,Annie,214093,17074,5 +52143,Clerk,402446,190961,7 +52144,Steve,334890,1695151,16 +52145,Sascha,227262,16808,0 +52146,Renaldo Pinera,3563,32897,6 +52147,,91067,939116,4 +52148,Press Agent,153,1775,7 +52149,Bill Kissel,78096,14905,4 +52150,Maria,56601,942080,13 +52151,Gertrud Kramer,290911,38753,3 +52152,Michael Tutman,62132,1417564,0 +52153,Rudy Paloffski,19665,123301,7 +52154,Opera Singer,61109,1178197,18 +52155,Nancy,93263,8893,7 +52156,Chloé,38883,554590,14 +52157,Courtney,53999,180486,11 +52158,Jim Daly,266425,1313137,9 +52159,Darkroom Technician,38987,1403616,9 +52160,Officer's Wife,83831,1470039,4 +52161,,31418,584048,10 +52162,Nandu,33556,1200735,6 +52163,Warden Collins,41505,96028,14 +52164,Director de colonización,106887,1302055,7 +52165,Chief Chao Hung,186881,105665,3 +52166,Cop,187596,1614471,21 +52167,Ken Arok,34082,20100,3 +52168,Elisabeth Turhapuro,62900,116159,0 +52169,Molly Mokembe,31385,1298418,3 +52170,Timmy the Barman,173456,95311,13 +52171,Gambir,39024,121799,0 +52172,Himself,83587,1137450,7 +52173,Gus,52827,84935,3 +52174,Pablo Escobar,255343,1121,0 +52175,Alison Sawyer,117251,31647,16 +52176,Mrs. Beauregard,118,1294,9 +52177,P.C. Anton Livermore,45562,23429,12 +52178,Mary Baxter,285946,1351396,10 +52179,Big boss,338421,1132614,16 +52180,Hori,32690,97203,5 +52181,Mahjong Room Man,240832,1426897,42 +52182,Cameron,241258,934173,1 +52183,Gray's Butler,157898,34128,48 +52184,Young Boy Sledding - Doug,27414,1206233,21 +52185,Llavón,13383,1368261,7 +52186,Ida,14422,417,2 +52187,Angela,35396,114257,2 +52188,Klasse 3c,61035,1446114,40 +52189,The Renter,64685,2201,3 +52190,Scott,278632,1425461,6 +52191,Eda Drábek,74199,571465,0 +52192,A Yue,219572,1800792,5 +52193,Dr. Chang,107811,60851,5 +52194,Iron Head,19274,1136762,6 +52195,Hortense,38433,120442,11 +52196,Sisto,20414,128466,8 +52197,Young Boy,11502,22931,2 +52198,Boss's girl,33481,110781,31 +52199,Leningrad Cowboy,30366,1076425,5 +52200,Fred / Scooby-Doo,21956,15831,0 +52201,Howard's Date,283995,96349,18 +52202,Ralph,7916,63791,9 +52203,Yang Young-Soo,83754,1257899,5 +52204,Vev,296225,1289765,6 +52205,Josh,99367,523952,10 +52206,Biology teacher,292625,1758610,22 +52207,Barbara,46972,23627,2 +52208,Bo the Bartender,1452,193763,15 +52209,The Nawab,67794,88811,6 +52210,Olympia,340275,1466153,25 +52211,Bosse,41493,126673,5 +52212,Rachel,8588,141354,3 +52213,Moça ue quer dançar com Paulo,296288,1839929,32 +52214,Maggie,302699,101060,4 +52215,Seyton,225728,1047643,21 +52216,Filippo,419522,57345,1 +52217,Salvatore Marino,15640,32863,7 +52218,WW2 Nazi Vampire Extra,246741,1780275,34 +52219,Jamie,298865,1499542,2 +52220,George Corbett (uncredited),43522,3262,49 +52221,Валиев,56372,86954,0 +52222,Jon-bok,348689,25003,5 +52223,,12650,1124479,5 +52224,Joyce Harwood,16090,79245,1 +52225,Gatlin Dad (uncredited),109491,1438305,45 +52226,Doctor,424600,1704661,19 +52227,Senator Kittner,47906,9626,3 +52228,Yancey 'Cimarron' Cravat,46623,3381,0 +52229,Madre de Juan,125619,1293075,13 +52230,Indian agent,127564,100944,7 +52231,“Frightening” Frank McCay (voice),62211,17697,17 +52232,Lawyer (uncredited),369524,1808628,33 +52233,Oberst der Sowjetarmee,167330,28345,21 +52234,T.R. the Rooster / Caleb Siles,51302,68455,1 +52235,"Leo ""Lips"" Moceri",51209,5170,15 +52236,Dresser,60488,97046,12 +52237,Patsy Ramsey Auditionee / Herself,430826,1801203,14 +52238,,11045,932719,19 +52239,Kim,64786,1095689,1 +52240,Harumi Minagawa,382170,1050819,7 +52241,Anna Kagan,246422,123989,0 +52242,Max Stevens,8382,17770,6 +52243,Xia,47065,56677,0 +52244,Winston,198663,1340889,10 +52245,Neighbor,339994,180940,13 +52246,Rooftop Fireman (uncredited),1726,1209730,85 +52247,Driver,2080,1353649,44 +52248,Julia Bishop,44593,15555,0 +52249,"George, the Inn Owner",186227,8841,7 +52250,,185987,134289,6 +52251,Female Hiker #1,209263,80592,17 +52252,Indian Man,8988,53137,44 +52253,Book signing patron / person in park,303281,1576436,11 +52254,Det. William Bendix,425591,54043,7 +52255,Jeremy Thompson,747,1778224,21 +52256,Nurse Leta,256474,573817,8 +52257,Horace Debussy 'Sach' Jones,70313,33024,1 +52258,King Vortigern,336149,117654,3 +52259,Banks,308032,118374,7 +52260,,15830,563918,15 +52261,Moana's Older Brother,94727,1840035,6 +52262,Reporter,176124,1642240,13 +52263,se stessa,75336,235566,25 +52264,Pets R Us Guy,65416,1088201,8 +52265,Lisa Kennedy,44022,130054,1 +52266,Lance,21413,177219,3 +52267,Ricky McHale,36960,59243,10 +52268,Colette,12446,19936,5 +52269,Nina,6076,47782,16 +52270,"Bill Rogers (segment 2 ""Creeping Vine"")",26811,1108271,10 +52271,Ruth McAllan,29705,104728,2 +52272,Cyrus (uncredited),3059,8837,102 +52273,C. W. Rivial,57993,29760,5 +52274,Frypan,198663,1036196,7 +52275,Henrietta,166221,1755,14 +52276,,63215,1520920,43 +52277,"Himself - Model from Marseille, France",97724,1388658,9 +52278,Artie Venzuela,41171,1903,1 +52279,Porcari,46920,128227,4 +52280,Jogger,291871,1362826,11 +52281,Brian,142216,152936,6 +52282,James Brown,139718,7172,23 +52283,König Gunther,42512,79,2 +52284,Comic Con Attendee (uncredited),214756,1759672,93 +52285,Lee Yuen Kwai,18899,66717,1 +52286,Detective,27122,59204,6 +52287,Officer Dalton,31150,40001,12 +52288,Dr. Jeris,44875,30417,8 +52289,Richard,79995,4001,10 +52290,Major Hylan (uncredited),16442,34447,96 +52291,Sergeant Ryan,99324,84634,0 +52292,Riding Instructor,408203,11070,7 +52293,Jared,78383,59256,7 +52294,British Admiral's daughter,21519,67690,13 +52295,Camilla,28859,28779,3 +52296,Salome,82622,928294,5 +52297,Nikolajev,46931,137644,8 +52298,Salami,110887,3243,1 +52299,Amber,15616,94954,12 +52300,Sgt. 'Nobby' Clarke,44087,84405,12 +52301,Rikako Mutou,21057,113670,2 +52302,Jessica Olson,35558,114372,1 +52303,Guptor,23096,68382,14 +52304,Kate King,193610,41087,1 +52305,Hubert A. Gilmore 'Gil' Smith,29286,85895,2 +52306,1940s Teenager,174309,71375,9 +52307,Jeanne,55853,551791,10 +52308,,15776,1565319,12 +52309,Lucio,183964,227359,2 +52310,Jane - Flower Girl,56558,1525057,48 +52311,Henchman Parker (as Ed Parker),38107,34103,5 +52312,College Girl #1,13991,86271,18 +52313,Himself,410718,1564683,23 +52314,Dr. Jack Miller,77246,16897,2 +52315,Philip Welch,51994,1028292,4 +52316,Spermwhale Whalen,48852,1466,0 +52317,Emma Jean,31462,1267167,8 +52318,Elizabeth Reynolds,39824,1720929,18 +52319,The Engineer (finale),417820,378,8 +52320,Sweet Beaches Dancer,243683,1252034,72 +52321,,256930,1743150,9 +52322,Goat Boy,14126,1086559,14 +52323,Barfly,377170,1324821,38 +52324,Maria Poole - Landlady,31509,97988,16 +52325,Agathe Jung,48231,1089495,32 +52326,,27276,551856,47 +52327,Edmund Parry,62033,115308,3 +52328,Paolo,40817,76339,3 +52329,Alice,341962,1470850,4 +52330,Elsa,162458,1624234,7 +52331,Shakti A. Chand,20364,86013,7 +52332,Priest,17317,1676722,10 +52333,Alyosha,429174,1821310,2 +52334,John the Baptist,30973,32559,8 +52335,Lorenz Lubota,28480,73,0 +52336,Yvonne de Peyerimhoff,245775,1167748,8 +52337,Bluey-Bluey,18671,170275,13 +52338,Lt. Wilma Deering,23331,33774,1 +52339,Caro,9690,57046,9 +52340,Michael Waits,26914,124716,1 +52341,La concierge,27053,97252,3 +52342,Rita,59040,120109,4 +52343,The Phynx,139718,1174356,27 +52344,Charles Rushworth,223655,27931,7 +52345,Miss Currier,212713,94114,11 +52346,Abusive Citizen,257344,1481021,59 +52347,Jake,102222,50398,0 +52348,Margaret - Gray's Maid,157898,105451,7 +52349,Vega,221135,237034,7 +52350,,32834,58727,3 +52351,June Callwood,19665,123303,13 +52352,Mistress Ford,76203,1344349,38 +52353,,148615,235346,22 +52354,Rosa Romero,417678,1684108,5 +52355,Jimmy,241254,125332,11 +52356,Mr. Berry,23367,95372,52 +52357,Muriel Sharp,105902,99905,11 +52358,Geri Neuman,127803,1000837,8 +52359,Brenda Tate,14531,209994,4 +52360,Jessica (voice),14945,101914,8 +52361,Katya,252034,139454,0 +52362,The Killer,29100,102917,10 +52363,Dr. Rice,263115,20766,6 +52364,Holly,73353,99185,2 +52365,Mauricinho,45179,559728,4 +52366,Alice,82817,59373,2 +52367,Bentein,57438,81406,14 +52368,Himself,41569,1197947,7 +52369,Chantui - His Wife,44657,1627038,5 +52370,Pernille Jepsen,16014,135753,2 +52371,Coral,24432,229345,12 +52372,Sam Haney,70046,15956,10 +52373,Tom's Mother (voice),56669,191179,11 +52374,Rex,352094,232245,5 +52375,Doctor,19754,1224872,19 +52376,Eogan,336149,1581209,9 +52377,Kismet,255388,14563,1 +52378,Jamison,29212,69764,6 +52379,Young Male Deputy,237584,1333069,21 +52380,Alden Blakemore,300187,1396335,14 +52381,Saliya Kahawatte,379019,5202,0 +52382,Tess,188102,50463,2 +52383,Connie Rossi,111017,7331,2 +52384,Lt. Townes,152748,58942,9 +52385,Tenente Narduzzi,37710,124622,8 +52386,Ed Phoerum,315880,16940,0 +52387,Milo,283445,1485770,7 +52388,Narcisco Ortega,39286,133257,6 +52389,Cashier,6069,44799,11 +52390,Dorsa,375012,1555786,1 +52391,'Junior' (John Sims Jr.),3061,29991,6 +52392,Herself (uncredited),32552,31550,23 +52393,Will,92269,123632,6 +52394,Marianne,243987,1231907,1 +52395,Receptionist,70006,557803,0 +52396,Narrator (voice),86814,130030,0 +52397,Reporter #1,339419,1650163,32 +52398,Einsiedler,204384,78231,6 +52399,Lars,204712,57320,3 +52400,Driver,143946,1201031,20 +52401,Young Jack,322548,1643244,19 +52402,Notarzt,217412,23172,20 +52403,Tadija,148034,1316034,8 +52404,Jerry Harris,1125,12074,16 +52405,Officer #3,34672,126230,19 +52406,Thorg,170936,30197,3 +52407,Nun,16135,79519,24 +52408,Chona,122019,1507533,9 +52409,Leilou,30449,45060,8 +52410,Ginger King,32683,109550,0 +52411,Milo,11328,31960,10 +52412,Housekeeper,63493,148995,5 +52413,Zena dozadující se rakvicky,18352,1478132,15 +52414,Inge,148,1666,12 +52415,Rose,126323,520615,6 +52416,Lynn Tyne,59881,11140,0 +52417,,376716,143747,13 +52418,Rufus,151509,204548,2 +52419,Chris Pratt,8270,24045,0 +52420,Alison,384021,14668,1 +52421,Isabella,82,643,2 +52422,Benjamin Hatcher,324930,1062029,2 +52423,Nadir Khan,121598,1224829,11 +52424,Ben,24927,92845,1 +52425,Leroy Skelton,48841,141196,6 +52426,The Dictator of San Miguel,11799,590020,12 +52427,Letellier,4516,37764,8 +52428,Jaws,21519,119454,5 +52429,Long,43817,228702,3 +52430,Gallego,351809,16867,1 +52431,Judith English,195867,7402,0 +52432,Himself,15258,31309,12 +52433,L'Afghan du centre de rétention,15712,1048753,28 +52434,Clinton Foley,144475,13969,10 +52435,Himself,28036,99918,11 +52436,Sam Weeks,112287,108114,5 +52437,Mustafa Hızarcı,77862,582603,5 +52438,May Chung,192623,11024,1 +52439,Young Journalist,31011,1670,14 +52440,Skye Daley,17796,15110,0 +52441,,41787,22131,2 +52442,Mathias,38340,30766,4 +52443,Uber Immortal (Giant),1271,112692,43 +52444,атаман Грициан Таврический,20879,86704,6 +52445,Cheng An,217923,1436150,15 +52446,Rune Henriksbø,378607,105253,4 +52447,l'agent arrêté aux États-Unis,12089,222255,19 +52448,Clarine,6976,45455,9 +52449,Victor Elliot,12617,82835,11 +52450,Priest,320588,1189071,34 +52451,Solly Berliner,93263,1037,2 +52452,Himself,320589,992588,3 +52453,Morgan,88075,53010,6 +52454,Zina,31216,1111561,9 +52455,Monsieur Etienne / Announcer,227200,89552,7 +52456,Elspeth Honey,43882,74155,3 +52457,Reneé,43432,1241385,6 +52458,Charlie Weise,25977,85178,2 +52459,Elderly Couple,1116,1896876,43 +52460,Peggy,332079,87685,2 +52461,Eike Gomes,70666,52586,19 +52462,Nora,98277,67532,0 +52463,,237303,94432,4 +52464,Larry's Secretary,10097,63366,15 +52465,Cesare,142320,281143,17 +52466,Luisa (voice),88557,87940,5 +52467,Manager,22025,127892,3 +52468,Herself,33588,556716,2 +52469,,412851,137639,8 +52470,Peter Goodwin,118889,4302,2 +52471,Gigi,21435,64913,2 +52472,Lancelot Du Lac,18978,22383,2 +52473,"Baldomero Fernández, notario",145481,222597,13 +52474,Mathias Kneißl sen.,12523,39327,6 +52475,"Arthur ""Bowie"" Bowers",44190,12497,1 +52476,Nurse 'Nosey' Parker,153163,33034,15 +52477,Himself,293262,1392200,4 +52478,Abel Magwitch,121674,5469,2 +52479,GM Boss,12447,45033,12 +52480,Scott,148,1667,5 +52481,Seventies Kid - Casino,32657,76008,33 +52482,Nemo,204712,1187052,1 +52483,Robert Wiener,28730,2232,0 +52484,Rifkin,44363,107793,6 +52485,Ryoma Sakamoto,37053,140103,3 +52486,Samantha,19053,551902,20 +52487,Russian Host,270650,1359948,18 +52488,Herself,315850,921,12 +52489,Joso,259690,256725,3 +52490,Rose,32395,36662,2 +52491,Bobo,199985,1601109,4 +52492,Armand,72898,24903,1 +52493,Spencer,27259,97432,4 +52494,Willie Rolf (uncredited),15794,103503,44 +52495,Herself,257450,1293589,13 +52496,Major Pinkerton,377170,33705,13 +52497,Jennie,102961,200298,11 +52498,Pluto,164954,5462,1 +52499,Stone,75090,62646,7 +52500,Padré,118131,1066897,4 +52501,Baby Tai Lung (voice),9502,1397911,25 +52502,Marianne,102256,1343378,6 +52503,Wrestling Trainer,1966,8318,29 +52504,Alex,44793,58012,1 +52505,Michel,57308,28255,1 +52506,Dakota,335970,1717904,20 +52507,Linda Page,125249,34807,3 +52508,Duke,22396,103513,7 +52509,Minister of Defense,19545,552187,8 +52510,Krista's Mom,376660,46902,21 +52511,Chief Constable Higgins,38437,120454,9 +52512,Djafar,17295,557864,2 +52513,Detective,348320,145579,15 +52514,Vicar,22447,221857,26 +52515,Richard Ramsay,155724,37041,0 +52516,The Spying One,899,8839,5 +52517,,105760,7111,8 +52518,Calder Jenkins,266285,93919,22 +52519,Munk,5393,12900,13 +52520,Julie,82655,45422,6 +52521,Famous Actress Hit by Beer,17287,35579,10 +52522,College Student / NY Businessman (uncredited),337339,1804168,65 +52523,Himself,430156,1722429,4 +52524,Kira,3716,1406144,13 +52525,Waiter,24202,91348,2 +52526,Louis Lester,219466,5294,0 +52527,,419522,1862856,22 +52528,Professor,70586,1494289,17 +52529,,338309,1462089,1 +52530,Jorund,286873,76968,12 +52531,Himself,83802,101429,6 +52532,Jonas Ford,393732,1279814,1 +52533,Wedding Photographer,11247,1776543,59 +52534,Agouhl,184345,35701,9 +52535,Nicolas Ivanoff,166883,1457969,4 +52536,Sol Levy,46623,15744,10 +52537,Max Eastman,111839,1236,9 +52538,Charlotte,53179,258942,3 +52539,Henri,19548,148307,7 +52540,French Teacher,49220,590861,12 +52541,Hydhrose,237672,932586,8 +52542,Police Offiver / Mike's Gang Member,90616,1692101,33 +52543,Suleman Khan,19606,8318,6 +52544,"Maria, la femme de Ferdinand",2786,12773,2 +52545,Linda Barton,333091,1496395,5 +52546,Luigi,99909,89750,5 +52547,Street Urchin,336011,1560255,26 +52548,Agente Moroni,53805,1853310,18 +52549,Charlotte,38654,43814,2 +52550,Castroater,31146,1464468,24 +52551,Jake Travers,174645,34502,0 +52552,Angus,14868,77722,14 +52553,"Dr. Malchor, a Conspirator",53853,13976,9 +52554,Rachel,54779,151113,4 +52555,Young Charlotte (voice),10198,1615559,12 +52556,Della,15749,326,0 +52557,Mary Hawking,266856,1387381,17 +52558,Helen,87936,87513,6 +52559,Cosmo Topper,44875,14685,1 +52560,El Paso Taxi Driver,69,1336845,26 +52561,Alex P. Keaton,215579,521,2 +52562,Zombie Mom (uncredited),218784,536499,19 +52563,Magician,14123,1446426,35 +52564,Mildred Aldrich,18495,10412,2 +52565,Salvation Army Major,62143,999718,29 +52566,Preso común (as Francisco Catalá),110001,1383251,34 +52567,Dylan Morgan,230428,61134,0 +52568,Liliom,144792,1231648,18 +52569,Juan Herrera,28304,29273,4 +52570,Dr. Alfred Blalock,20544,4566,0 +52571,Amber Hannold,169730,212324,1 +52572,"Snapper Kid, Musketeers Gang Leader",42553,128162,0 +52573,Denzo Hashimoto,148371,134020,4 +52574,Kate,19551,68276,2 +52575,Holt,124054,141496,4 +52576,Mariuccia,155597,39476,1 +52577,comandante aeroporto di Milano,43648,69973,12 +52578,Chad Bower,45013,58368,7 +52579,Stormtrooper,330459,342,71 +52580,Additional Voice (voice),177572,127387,22 +52581,Vraspar - International Fence,39979,1091543,21 +52582,,63568,549431,5 +52583,Sheriff Henry Gifford,32143,5251,2 +52584,Pleistarchos,1271,17293,10 +52585,"Valentine ""Val""",121824,1158,2 +52586,Jack Marshall,108282,67949,3 +52587,Léonie Danard,68822,1180843,5 +52588,The Earl of Kent,134155,1378007,5 +52589,Celeste / Josette,254575,76131,1 +52590,Goldberg,39519,84326,8 +52591,Nabogutten,75229,574203,5 +52592,Landlord,47900,1262119,4 +52593,Carmen Svennipeg,54804,10731,1 +52594,Tommy,300654,82819,4 +52595,Archbishop Hubert Walter,115972,13331,6 +52596,Nastya's Mother,143380,86666,5 +52597,George Wilde,266856,1503901,16 +52598,Metropolitan Sergiy,51275,143667,3 +52599,Mock Prosecutor,173153,5294,3 +52600,Theo,227200,1247736,12 +52601,Perry White (voice),13640,6719,7 +52602,Reunion Attendee,11172,1781196,50 +52603,Cleaning woman,176670,30519,10 +52604,Carmencita,127864,1114063,6 +52605,Sarah Calder,55922,43903,6 +52606,,74674,1445116,18 +52607,Kalle,362151,992848,1 +52608,Detective Lawrence 'Morgan Freeman' Appleton,75761,114674,4 +52609,Lucy,16839,97431,5 +52610,Amanda 'Mandy' Swift,132928,81167,3 +52611,Officer Colton,270650,1359944,13 +52612,La mère,330770,59627,3 +52613,Anne White,12255,589,0 +52614,Ed,32298,12217,0 +52615,Lisa,440777,1578220,6 +52616,Kay Thorndyke,33792,14730,3 +52617,Kim,319096,1532331,11 +52618,Timothée,139159,1167055,8 +52619,John Mason Jr. - Infant,18569,1466147,10 +52620,Dawson's Friend (uncredited),14615,940721,55 +52621,Maj. Hugh 'Bulldog' Drummond,161602,12308,0 +52622,Rachel,277710,24291,27 +52623,Extra (uncredited),207636,29642,10 +52624,Sam,62838,19536,6 +52625,Professor Artel,23096,141241,9 +52626,"Manolo, Fat Mexican",193878,120705,5 +52627,Edmund's Father,10488,78567,8 +52628,Lydia Thorsby,254918,21618,5 +52629,Morris,38433,120444,14 +52630,Frankie,208869,1078568,4 +52631,Cow (voice),279598,47424,8 +52632,French Peasant (voice),82703,193045,26 +52633,Jo Anne's Husband,6973,102421,37 +52634,The Birdman,173638,13324,1 +52635,Aunt Sheila,128216,1332938,31 +52636,Ksiądz proboszcz,168819,2825,5 +52637,Frau Lohmeier,203539,1185919,13 +52638,Carlo Sabballera,41552,89691,4 +52639,Builder,16058,79110,13 +52640,Jacquelyn,168022,1272216,2 +52641,Colonel Kitchener,10204,3547,5 +52642,Ivan,60784,231718,0 +52643,Frankie,17622,82149,12 +52644,Asher,227156,37089,7 +52645,Jimmy,34496,1320563,1 +52646,Mitford,20196,1622839,5 +52647,Billy Woo,112708,156058,7 +52648,Kim Gyu-Soo,367882,1294526,5 +52649,Absalom (taxi driver),43354,29505,7 +52650,Başak/Japon Robot,236053,571428,1 +52651,Jobbo,34496,1320568,7 +52652,,278717,1334389,4 +52653,Herself,47748,146696,0 +52654,Precocious PC,55846,1326866,14 +52655,The Creature,59678,236696,5 +52656,Rothbart,15016,7090,2 +52657,Politician,359471,1509232,23 +52658,TV Anchor,329865,1756366,58 +52659,"Gepetto, the pizza man",63066,1153979,13 +52660,,248417,1283705,4 +52661,Larry Tullby,39345,106486,8 +52662,Chicken Shack Manager,6973,93927,27 +52663,"Himself - Glaciologist, University of Colorado (as Tad Pfeffer Ph.D.)",84185,1341528,8 +52664,,121530,1443279,12 +52665,Young Hideo,315837,1903382,14 +52666,Jose,65674,161424,10 +52667,Babs,27112,97250,12 +52668,Jackie Kovacs,48153,4301,3 +52669,Scrawny Boy,8008,53580,9 +52670,Principal Woodruff,68684,1513973,29 +52671,Sammy Smith,340101,1665,6 +52672,,74674,1445135,36 +52673,Mrs. Gaidaroff,91480,97988,4 +52674,Doc,72710,42317,24 +52675,Redding,9793,54865,3 +52676,Policeman (uncredited),1116,1718354,81 +52677,College Student,9841,59823,8 +52678,Woman cop of police box,10103,63440,7 +52679,Huszár kapitány (voice),41078,125680,6 +52680,Psychiatrist Drawing,47057,138003,14 +52681,,57438,226169,0 +52682,Madison McBride,19116,20376,0 +52683,Boris (voice),25913,12826,5 +52684,Woman,28421,1473000,14 +52685,Gordon Tolliver,255388,83452,3 +52686,Fifield,70981,16702,7 +52687,Karishma,42057,117795,12 +52688,La madre di Geremia,53486,229261,4 +52689,Mulher Bela,373397,1172216,11 +52690,la bella signora,43211,234418,3 +52691,Masha,36811,62105,5 +52692,General Romeo Dallaire,30527,56977,0 +52693,Jan Smuts,399790,120833,6 +52694,Sue Nelson,35926,19109,1 +52695,"Rufe Parker, a Gangster",25507,30292,7 +52696,Chloe,259997,1224218,9 +52697,Jessica,47194,1106408,15 +52698,Guglielmo Duranti,38327,120153,4 +52699,Gerry - FBI Agent,90616,1692098,29 +52700,Jacob,345438,91348,2 +52701,Musette,28212,131684,4 +52702,Attorney General,105384,39019,9 +52703,Ben,429838,1383623,2 +52704,Gary,18739,47734,5 +52705,Bernard Frédéric,13713,47820,3 +52706,Mute blackmailer,10753,1121128,6 +52707,,84420,1039422,7 +52708,Ken,2830,4175,3 +52709,The Waiter,39048,30145,4 +52710,Beckett Warner,286971,1329537,1 +52711,Fang,339116,145323,1 +52712,Party Makeout Guy,244534,1445657,9 +52713,Bill Beakins (voice),153518,52860,28 +52714,L'infirmière,334317,1449637,3 +52715,Sein Enkel / Grandson,55544,222580,3 +52716,Inspecteur,98277,119385,24 +52717,Deputy,147829,557995,41 +52718,Maizie,121006,1047595,9 +52719,Narrator (voice),89551,97423,10 +52720,Laura - Connie's Maid (uncredited),13912,97042,13 +52721,Mrs. Fisher,41131,170537,5 +52722,Georgiana Reed,38684,1089516,13 +52723,Himself,406431,78809,11 +52724,Ted Van Sant,9890,53963,11 +52725,Dr. Crab,1904,9462,13 +52726,Mr. Miller,82520,101781,9 +52727,Abner,95504,536760,5 +52728,Maggie,33923,13822,20 +52729,Union Soldier,43829,1130451,38 +52730,Marta Moraczewska,370264,112308,2 +52731,Lee Boyd Malvo,158739,168961,1 +52732,,52360,1671854,47 +52733,President Will Cooper,257344,32895,4 +52734,Chantal,77338,333422,8 +52735,Will,228676,129122,2 +52736,Ed Hackett,42871,76519,1 +52737,Pox (voice),13517,1076766,10 +52738,"""Dunce""",65713,86680,9 +52739,Herself,9951,117287,8 +52740,Ponytail Express,68721,193946,66 +52741,Ice Company Dispatcher (uncredited),47882,980330,20 +52742,Nurse,41402,1736793,13 +52743,Donatien,37633,1474869,1 +52744,Maja,15303,80505,1 +52745,Gil Stanton,27543,67685,2 +52746,Himself,41569,1197568,1 +52747,Crunch Sweeney,72096,13644,13 +52748,Lily Parker,234868,18998,4 +52749,Maz,14137,2877,1 +52750,Immacolata,82083,100408,11 +52751,Ellie Martin,63096,129550,4 +52752,Henry Tilney,18093,30710,2 +52753,Ruth's Best Friend,10362,1544551,38 +52754,Alma,263855,59192,2 +52755,Niko,38908,997792,6 +52756,Porky,198600,111215,9 +52757,Баба-Яга (озвучка),83865,107667,4 +52758,Esko Raide,238362,149905,2 +52759,,267977,1600869,4 +52760,"Félipe Rambert, l'assistant de Pascal",84875,69958,1 +52761,Therapist,72912,65797,3 +52762,Commander Takaki Aso,12561,50658,6 +52763,Jack Martin,81720,6837,0 +52764,Uomo anziano,42679,128446,14 +52765,Stephen Orlac,28261,2923,2 +52766,Raldo,337339,1619445,21 +52767,Conseiller Pôle emploi,329712,1517227,3 +52768,Franklin Roosevelt,403450,1685266,5 +52769,commissario Tartamella,108535,37583,0 +52770,Newscaster,42709,927859,14 +52771,Michael,7511,5367,0 +52772,John Wallenbeck,10077,1083,1 +52773,Detective Romano,60965,232044,9 +52774,Park Chang-min,269494,138336,10 +52775,Michael Boyle,322,4741,21 +52776,David,140846,69718,5 +52777,Fortune Girl's Companion,98125,146898,33 +52778,Tom Fulton,375082,51930,8 +52779,Ji Eun-Yi,83754,83012,0 +52780,Eddie Williams,238972,66554,2 +52781,,295884,1427313,3 +52782,Mandy,97614,104897,8 +52783,Blonde,212713,21461,16 +52784,Eddie,47863,1214063,5 +52785,Lindsay,330011,1439927,3 +52786,Carol,228028,80289,5 +52787,Sergeant Major Cox,45398,1222210,5 +52788,,49522,26860,7 +52789,Customs Official,27917,11139,11 +52790,Woman Bomber,461955,1320424,7 +52791,Ali Ben Ali,60488,71784,2 +52792,Thug,60173,230663,4 +52793,Father Jimmy,173294,120833,18 +52794,Inspector Berkley,38987,1403615,2 +52795,Sam Travis,242835,8499,8 +52796,Mihalakis,163791,1601468,12 +52797,Dr. Kessler,39779,12157,11 +52798,Best Man,9900,60165,17 +52799,Yevette,10476,21215,4 +52800,Kelli,82520,1817,0 +52801,Young Billy Murphy,293970,1605120,13 +52802,Ball Assistant Director (uncredited),1976,1198701,45 +52803,Wedding Guest,14976,40103,32 +52804,Ralph,7233,35554,9 +52805,Nick Casey,189888,5563,0 +52806,Young Johnny Utah,257088,1538780,11 +52807,,117790,91410,2 +52808,Mayor of the Underground City,78028,80365,13 +52809,Steve,48587,6623,5 +52810,Lenny,102222,132434,7 +52811,Sir Anthony Skouras,38654,10018,3 +52812,Mark Cohen,1833,6165,0 +52813,Herself,336691,1547693,8 +52814,Wizard,25645,1616859,13 +52815,Anna Dolores (uncredited),42641,140515,8 +52816,Mrs. Kellogg,101998,115665,11 +52817,Kevin,12247,71894,10 +52818,Agent,24675,29797,1 +52819,Henry Armitage,65891,39816,2 +52820,Maddy,302042,1818201,15 +52821,Shadow 6,270759,1330450,8 +52822,Poker Player,96987,1011212,10 +52823,Jimmy,126442,18972,3 +52824,Niemeyers kone,72054,135753,10 +52825,Dell Dude,186606,1168912,10 +52826,Bleeker's Mom,7326,1369082,11 +52827,Stripper #2,7511,52787,14 +52828,Bender (voice),15060,31531,2 +52829,Talbot,324670,47934,12 +52830,Sarah,13336,237830,6 +52831,Date in Bar,405473,1800030,22 +52832,Nancy Archer,74629,589,0 +52833,Carol Harmison,9815,47644,7 +52834,Winslow (uncredited),76203,31528,80 +52835,Etta Grant (uncredited),69,1386222,41 +52836,Le second responsable de Barney & Johnson,53404,1664158,9 +52837,Unspecified Army Officer,38269,1818053,24 +52838,Tomasz,28455,37422,6 +52839,Billy (uncredited),109491,1682509,31 +52840,Courtroom Spectator,43821,1250246,33 +52841,Omkar,49028,223168,18 +52842,Himself,63144,553508,3 +52843,Man Awaiting Dewey's Arrival,56558,1284767,49 +52844,David,13849,1333,0 +52845,Go-Go Dancer,397422,1684010,29 +52846,Martha Åkerblom,41764,236039,26 +52847,Principal,141418,988413,9 +52848,"Sanford, Naval Officer Helping Scotty",177190,1283209,7 +52849,General Sokolnicki,149511,1120289,8 +52850,Cricket Sumner,259997,171847,22 +52851,Chandra,11404,1229194,8 +52852,Kosta,255160,15254,2 +52853,Fireman,176627,119546,28 +52854,Reese,383538,1244,0 +52855,Billingsly,4820,41757,10 +52856,Emily,385372,63680,7 +52857,Jason,304613,1387080,5 +52858,Constable Alf,38437,13557,10 +52859,Ron Patimkin,42604,309103,4 +52860,Ifj. Kabai,94663,146821,4 +52861,Curtis Mooney,16296,17580,3 +52862,,63215,51948,25 +52863,Girl with Rastafarian,75761,1373625,15 +52864,Lloyd,87311,2547,2 +52865,Presentatrice,53486,239898,6 +52866,Sir Anthony Silk,21605,11275,3 +52867,Wilson DeLeon Sr.,15156,72983,4 +52868,Superintendent,29835,35848,8 +52869,Campfire Dad,44436,41384,1 +52870,Thomas Logan,2080,1353635,16 +52871,Daphne,133953,97816,3 +52872,Liz Thompson,26768,94156,3 +52873,Doctor,156,1842,11 +52874,Court-Martial Board Member (uncredited),10178,134635,25 +52875,Sunhi,211579,127720,1 +52876,Rita,384682,1493882,26 +52877,Rezart,345918,583061,9 +52878,Red Coulter,209244,25376,6 +52879,Flight Lt. David Archdale,44087,7640,0 +52880,Ria,1640,18285,4 +52881,Mrs. Miller,82520,80135,8 +52882,Joseph R. Millard,6973,1243825,30 +52883,La jeune fille piscine,41211,1016077,24 +52884,Jimmy Pierazzi,40624,17917,4 +52885,Jane 'Dusty' Fargo,60547,98162,3 +52886,Hungry,375366,1886304,37 +52887,Andy Taylor,151937,65562,1 +52888,Celebrity Judge,18826,119713,16 +52889,Heidi,369883,1517836,11 +52890,Jozef K.,260826,42077,2 +52891,Harry (voice),12697,1125168,11 +52892,Bryan,64861,55591,1 +52893,Zetan,23739,113,2 +52894,Gaga,244539,1508826,16 +52895,Henrik,33340,527696,3 +52896,Thea Hassel,27003,96740,1 +52897,Subject #72,29151,62831,10 +52898,Alexis,157829,971329,6 +52899,Jean Mitchell,86236,9599,0 +52900,Le secutor,49398,24495,10 +52901,First Doctor,265208,94428,19 +52902,,11328,1432270,57 +52903,Happy Hogan,1726,15277,10 +52904,Nullah,6972,1673414,27 +52905,Charlie,128241,83817,6 +52906,Henry,96936,23226,15 +52907,Claudius' Ex-Wife,24149,1310711,8 +52908,John Davis,97598,2435,2 +52909,Richard,15468,32364,3 +52910,Ispettore PS,379873,1079896,19 +52911,Postmaster General,175027,589217,10 +52912,Captain Omer,17288,1347934,2 +52913,Bob,44875,88462,4 +52914,Alex,25142,68517,0 +52915,Chuck,89145,67370,5 +52916,牙医,128842,17382,3 +52917,Neighbor,27814,99040,10 +52918,Cameriere,82341,118499,12 +52919,Kris,336004,78452,4 +52920,Simon of Cyrene,235260,1698797,34 +52921,Marcella,262786,1882002,11 +52922,Petit Pierre,48431,1305893,2 +52923,,246829,103121,9 +52924,Peggy Towers,13437,83026,10 +52925,Bully,341886,1465051,5 +52926,Porter,44287,81308,2 +52927,SGT. Carr,463800,82190,3 +52928,A.J. Harris,87343,166471,4 +52929,Tourist,1164,64160,28 +52930,Savannah,384682,1036288,13 +52931,Burke Ramsey Auditionee / Himself,430826,1891547,56 +52932,Barton Whittaker,104297,14063,5 +52933,,162864,1501561,1 +52934,Línumaður,26880,96528,7 +52935,Arne Itkin,433082,93236,1 +52936,Journalist,53870,58902,13 +52937,Young Emily,337073,1481004,5 +52938,Joka,259728,119295,6 +52939,Granny,286267,1317588,5 +52940,Stanley McCombe,5413,43138,6 +52941,Erwin/Elvira Weishaupt,42206,32422,0 +52942,Kasper,46857,137447,2 +52943,Dex Dogtective,116977,6952,0 +52944,,127105,100047,1 +52945,Pete,14983,77659,0 +52946,Jinai Chijiiwa,14537,20828,5 +52947,Sales Lady,26123,970104,15 +52948,Bobby Stanhope,91181,148861,12 +52949,Jack,279690,9290,1 +52950,portiere,38328,120135,9 +52951,Jax,290764,1634442,9 +52952,Mrs. Height,270303,1111695,7 +52953,Papa,185154,1507242,7 +52954,Newspaper Vendor,9252,1596424,20 +52955,The Mother,33091,79270,2 +52956,Jindřich,82716,1288637,1 +52957,Larry,30126,89613,1 +52958,Jasper,24273,4134,7 +52959,Huang Lao Liu,108665,544921,6 +52960,Mrs Garston,245168,933049,21 +52961,Alice,33623,427934,1 +52962,Hana,1986,20446,9 +52963,Alex Fielding,46169,87569,1 +52964,Glamourette Quartet,285400,116134,13 +52965,Nancy,189,56731,1 +52966,,82040,592933,6 +52967,,320005,1257065,8 +52968,Maya,270221,1127661,8 +52969,Lolly,47962,1071371,2 +52970,Andy,26823,96365,2 +52971,Major,8776,56292,0 +52972,Jukka Virta,55167,87723,3 +52973,Sam Marzetta,48949,12521,5 +52974,Marie Starke,28480,3005,2 +52975,Anne Wyatt,16082,41283,4 +52976,Eva,358895,109868,5 +52977,Jack Burke (uncredited),43522,113760,50 +52978,Barkeeperin,170759,1153027,19 +52979,Pete,45875,134076,16 +52980,Pilot,831,80206,8 +52981,Barkeeper - Great Plains Saloon,28303,29363,5 +52982,Lycéen,77338,1686571,31 +52983,,264264,1174366,12 +52984,Joe Wallace,83995,25536,2 +52985,Priest,147722,89729,19 +52986,Lamar Sands,48841,1370,2 +52987,Samurai Master,256962,1333949,49 +52988,Isabelle,271826,8791,3 +52989,Jackie,173499,548619,4 +52990,Patronne de l'hôtel,64414,19092,3 +52991,Vito La Monica / Zebrone,42441,55912,2 +52992,Donatella,18897,992165,11 +52993,,88953,592088,12 +52994,Roy Marcus Cohn,75145,4512,0 +52995,Le maire,14650,37609,11 +52996,Jimmy Warren,18977,16764,1 +52997,James' Brother-in-law,199575,1438837,17 +52998,Zhender,42542,1195967,12 +52999,Lady Herries,186227,118138,6 +53000,Tony,31473,35349,2 +53001,Spartaco Cecconi,43372,1074565,3 +53002,Julian,24397,23646,0 +53003,Lima Lipps,20430,19307,3 +53004,Russian,197737,148402,36 +53005,Slave Girl,60488,85941,18 +53006,Officer Hansen,8669,182396,13 +53007,,360603,106564,8 +53008,Major Kitchener,186227,348606,28 +53009,Marian Webster,29116,14965,2 +53010,Anna,20296,47985,7 +53011,Charlotte Collins,16358,6721,9 +53012,Julien,271919,15397,1 +53013,Christina,159701,120974,9 +53014,Rugged Man,344120,1497328,8 +53015,Scientist,28340,1795347,25 +53016,Puolustusministeri,55761,6000,9 +53017,Friendly Girl,36249,74289,4 +53018,,412202,1669184,11 +53019,Charley,332411,37149,6 +53020,Hubbie Whitlow,308032,116295,19 +53021,Han,9461,65971,5 +53022,Lord Alvanley,144613,1187662,8 +53023,Narrator / Patou (voice),20421,57329,5 +53024,Louis,78028,1360211,15 +53025,Deputy,11358,42711,37 +53026,Daniel,218688,49767,0 +53027,Ashley,16985,98272,4 +53028,Ek,76380,1269583,12 +53029,Sam Risgby,340215,1389160,4 +53030,Kayla,14923,87317,56 +53031,Drunken Man,100275,80029,15 +53032,Nora,352186,1059597,1 +53033,Referee,120802,1335461,18 +53034,Mrs. Carp (uncredited),95504,85957,15 +53035,Daisy,86023,27125,4 +53036,Anna Ivers,14254,70456,0 +53037,John Carew,245700,40043,22 +53038,l'autista,77000,1851059,15 +53039,Jeff Crane,25507,22091,0 +53040,Church Parishioner,297853,1790458,37 +53041,Druggie Band Friend (uncredited),215881,1750432,18 +53042,Frank,221240,52798,9 +53043,Miriam Itkin,433082,1078979,2 +53044,Stomberg's Daughter,283445,1720587,17 +53045,Brooks Wilson,92269,18364,0 +53046,Louis Galba,34623,56924,7 +53047,Slim,153228,4965,6 +53048,,121173,225433,5 +53049,Kôchô,36247,50659,5 +53050,Sgt. John Collins (aka Sarge),84337,8830,6 +53051,Dance Studio Receptionist,54662,183073,4 +53052,Alan,109439,58225,2 +53053,Micke,327231,106654,17 +53054,Arthur Winslow,77822,99461,1 +53055,bailiff,62732,1545648,11 +53056,,364833,1525327,0 +53057,Kissing Couple - Debbie,347630,1695668,46 +53058,Ann Carrington,44875,33229,2 +53059,Lewis Mowbray,54318,21343,2 +53060,Sadie's Neighbor,91679,1782610,49 +53061,Nurse Rosie,74549,1470619,23 +53062,,196508,1119494,1 +53063,Suszter,63625,1402321,6 +53064,Sandy,78177,84681,3 +53065,Mamie,85009,1467639,16 +53066,Mafya,64468,239259,3 +53067,Trolley Chick,1481,1844334,24 +53068,Türkischer Grenzbeamter,3716,5124,8 +53069,Hunter,414910,1515337,4 +53070,Herself,142168,3635,7 +53071,Chris,277237,1840,9 +53072,Son,125344,586013,0 +53073,Ákos Várnai,17780,231048,2 +53074,Jason Cross,10947,200823,10 +53075,Jeff,259695,168829,16 +53076,ravintola-asiakas,442752,1761842,35 +53077,Rossella Scott,102949,105350,2 +53078,Priest as Father Kent,270650,572075,14 +53079,,109587,1049496,28 +53080,Barman / Landlord,38433,3371,13 +53081,Herself,70027,83463,21 +53082,Himself,58467,1704739,41 +53083,Nun,16135,79517,22 +53084,Grace,134308,62547,3 +53085,Muggsy,28297,13357,13 +53086,Marge Winton,31899,34742,0 +53087,Grizzled Soldier,57201,1105706,53 +53088,Sugar Cookieloaf (voice),136799,1163458,35 +53089,,5618,34989,10 +53090,Man at Restaurant,17956,163795,27 +53091,Party Guest,151043,123015,16 +53092,Lin,18440,133386,0 +53093,Himself,63472,1888,7 +53094,,420648,1206196,6 +53095,Tally,18747,1178938,20 +53096,Ragazza del museo,3520,94799,10 +53097,Wedding Guest,43809,569144,48 +53098,Nick,12182,39995,0 +53099,Mrs. Wendel,39130,13816,13 +53100,Mother,13241,34330,0 +53101,Tiina,20160,138742,1 +53102,Herb Klaxon,66175,15978,4 +53103,Silvana,12432,59640,6 +53104,Mercy,85265,278926,6 +53105,,121725,1248524,12 +53106,John,9993,1530759,21 +53107,Captain Alec Osborn,169782,19655,5 +53108,Barfrau Abraxis-Studio,140554,1707844,44 +53109,Alfio,34151,2451,9 +53110,Elmer,126841,81876,4 +53111,Bar Patron (uncredited),360592,1512202,28 +53112,Lester,85265,1500213,21 +53113,,415358,1677474,4 +53114,Officer Jennings,15356,34395,9 +53115,Ralph Morris,24341,91537,7 +53116,Jimmy Olsen,1452,53492,6 +53117,Guiga - adult,108712,1491360,1 +53118,Coinquilina,43544,128411,17 +53119,Sanitar Elmar Säinas,321303,1418974,10 +53120,Hilary,241374,148029,8 +53121,Emilie Smedhurst,29368,97242,2 +53122,2nd Caller,44012,130034,3 +53123,Victor,211,10238,3 +53124,Kutscher in Strassburg,52475,1485715,19 +53125,Professor,113137,18792,3 +53126,Dan Oldum,21950,97717,12 +53127,Dick Grayson / Nightwing (voice),40662,41686,2 +53128,Tatarczuk,31273,107879,26 +53129,Maruno Juzo (uncredited),125264,97203,20 +53130,Mulai Ahmed er Raisuli,14815,738,0 +53131,Dr. Liebers,167330,928468,3 +53132,Black Dog,83191,77292,13 +53133,Claude,128917,54565,0 +53134,Ens. Rabbit (uncredited),10178,43823,18 +53135,June,440597,1753911,3 +53136,D.A. (as Billy Jacoby),129332,84164,3 +53137,Luca,260312,34018,8 +53138,Uslì,31542,1757132,14 +53139,Miss Jenn,287587,13636,8 +53140,Stage Doorman (uncredited),28261,1016595,11 +53141,Piotr,14688,37627,1 +53142,Guard,310135,1466536,21 +53143,Mr. Pinky's Cashier,2976,1688874,109 +53144,Molly Barry,352719,47376,1 +53145,Ronnie,15810,83772,2 +53146,Sally,55784,197356,15 +53147,Bone,27012,5050,0 +53148,Victoria Winters,62213,234982,6 +53149,Eversti Tossavainen,55761,222324,2 +53150,Detective Kim,245597,573794,4 +53151,Mourner,332806,939514,2 +53152,jongetje marktkraam,35016,1416131,29 +53153,Canevari,27703,33819,7 +53154,Hisanobu Komori,25659,96563,2 +53155,Dr. Robert Freedman,9756,58915,4 +53156,Aranea (voice),21250,60278,5 +53157,Colleen Lipman,12540,168733,10 +53158,Tihomir,197849,543364,6 +53159,Packard,8965,84323,7 +53160,Jung Lee Pak,13279,74575,11 +53161,Kendra,64720,534231,14 +53162,Best Friend,431093,1753145,16 +53163,Louise,65887,544198,1 +53164,Izudin,177155,1334946,9 +53165,Diana Wakefield,369894,9278,1 +53166,Younger Jyn,330459,1725277,59 +53167,Ok-hee,121462,1796284,9 +53168,Captain Kevin Burke,28510,101033,3 +53169,Adam,117120,145143,0 +53170,Maybelle's Store Dancer,2976,1752805,151 +53171,Judge Bruce Mallory Sullivan,116385,2753,0 +53172,Pete,22494,1669,1 +53173,Joyce,19053,91724,16 +53174,"Mirko, guardaspalle di Numero 8",356296,1800447,17 +53175,George's Mother,40368,556928,9 +53176,,423093,3652,4 +53177,Ryan Maygold,102222,1394042,6 +53178,Sally,73896,3336,1 +53179,Dr. Van Ness,63333,2435,2 +53180,Bear Narrator,312174,1383169,18 +53181,Shuji Hanamoto,72592,76933,15 +53182,Kendall Webb,28561,80621,2 +53183,Sgt. Major Dever,7445,1205880,17 +53184,Ramone,13934,11159,5 +53185,Tanba,209032,58662,4 +53186,Keith,309024,52419,3 +53187,Reaver,263115,1821522,18 +53188,Lou,12787,73540,4 +53189,Ms. Anders,323674,1287658,5 +53190,Ali,173499,75060,2 +53191,Himself,24792,93815,5 +53192,Volgud,8965,6574,10 +53193,Scooter Guy,7006,33352,8 +53194,,1421,1723433,18 +53195,Kari,39308,9925,0 +53196,Tex,67693,190237,7 +53197,Girl in Pool,41402,1753327,16 +53198,Reporter,127812,105454,48 +53199,Duncan,398289,50398,3 +53200,Garf,325133,1400880,12 +53201,Maya Hansen,68721,15556,4 +53202,Mikiko,321160,111681,14 +53203,Dutch Arnold,52437,103672,26 +53204,Deputy Sheriff (uncredited),1976,1075172,30 +53205,,44746,1382106,19 +53206,Edgar Stone,88288,39816,3 +53207,Narrator,84774,545601,5 +53208,Kitty Shcherbatskaya,96724,227454,7 +53209,Nawab Malik,392271,78245,2 +53210,Dunain,9795,59314,11 +53211,Charles 'Chuck' Kincaid (as Mitchell Ryan),88375,14312,3 +53212,Ethel Hoyt,300769,34742,0 +53213,Severiano,86234,12399,2 +53214,Humus / ACB Dancer,17287,98333,6 +53215,Toby Garrison,336271,1094772,6 +53216,Flight Attendant,172897,1155584,7 +53217,,44434,45422,2 +53218,Cayetano Lastre,69060,1032493,1 +53219,Alma,20640,17662,11 +53220,Enormous Man,14047,1789941,48 +53221,Dorinda Thomas,27621,183426,1 +53222,"Henry ""T-Dub"" Mansfield",44190,3338,3 +53223,Batiatus,9703,43547,9 +53224,John Trevor,27122,32224,3 +53225,Detective (uncredited),147876,30017,15 +53226,Sam Phillips,289225,40064,11 +53227,McGowan,19946,25333,2 +53228,"Dante Slate, Jr.",64807,55638,4 +53229,Helicopter Soldier,1724,1366351,17 +53230,,1421,1723442,29 +53231,,14753,567392,13 +53232,Laredo,96133,1121968,12 +53233,Bertil,39284,38127,7 +53234,himself,254446,1290853,1 +53235,Abe no Seimei,21325,149405,1 +53236,Milesburg Sheriff,156335,1106999,3 +53237,,91067,939115,3 +53238,,285532,232887,5 +53239,Dickie,39286,7026,1 +53240,,126958,1083447,13 +53241,MacDonald's Girl,39436,73687,17 +53242,Mom,20312,85927,11 +53243,Li Chun Tong,25655,118745,14 +53244,Horn,511,7120,15 +53245,Rachel Jackson (as Barbara-O Jones),148031,1421260,6 +53246,birds,106112,5463,1 +53247,Connie Kelly,25918,11128,2 +53248,Spiventa,32029,1937,3 +53249,Márta,163942,1254291,6 +53250,,352197,1511748,5 +53251,Karim Coutard,78210,5445,3 +53252,Teuvo 'Teukka' Hurskainen,18279,124873,6 +53253,Mary,10407,199640,8 +53254,Preston,37686,23533,10 +53255,Thomas - Hotel Clerk (uncredited),73430,2782,30 +53256,Lea,17985,82564,3 +53257,Bo (voice),65759,1445416,15 +53258,Cathy Cabot,39779,89808,3 +53259,Ruben Tyman,239513,949165,10 +53260,Liliana Coloto,25376,968350,5 +53261,Debbie Peters,199373,137424,8 +53262,McCormick,84577,5576,0 +53263,George Jr,26264,77117,10 +53264,Julio,411638,1405756,5 +53265,Statler Guest (uncredited),259695,1640939,22 +53266,Dancer,34082,1787560,8 +53267,The Blind Man / Monkeyman / Death / Changsha,23739,141,0 +53268,,104343,1119508,2 +53269,Scientist,178809,26093,7 +53270,Earl,333484,1334173,34 +53271,Anne Laurent,445,1137,1 +53272,Casey Shepard,132422,35595,4 +53273,Rui,83897,930826,1 +53274,Torstein,360249,571418,0 +53275,Yesterdays Mann,6934,51465,1 +53276,Kayla,238589,123497,3 +53277,Doctor Saunders,248639,100243,3 +53278,Nun,16135,79520,25 +53279,Dorota,10754,2807,18 +53280,Himself,97724,1388683,33 +53281,Ralph's Dad (voice),169314,92993,4 +53282,Coach Passenger,147829,34270,43 +53283,Carmen's Assistant,308,2838,15 +53284,Movie Spectator / Guest / Cop (uncredited),22943,1086789,22 +53285,Dutch Heinemann,63858,97657,2 +53286,Aiden Maxwell,159667,1159344,7 +53287,Aliena,73869,570368,3 +53288,Sergeant Reino Lehväslaiho,49322,1261440,7 +53289,Juanita,138308,110539,10 +53290,Blonde (uncredited),147876,14027,13 +53291,Prince John,71066,29952,3 +53292,Marc Jacobson,13173,17485,23 +53293,,11391,114720,18 +53294,Karin Andersson,30149,132501,3 +53295,Mrs. Bartlett,34672,126223,14 +53296,Vlad Tepes,57190,11886,2 +53297,Ranger,18569,932309,31 +53298,Sterns Lab Soldier,1724,1366380,62 +53299,T.V. Reporter,37935,16532,11 +53300,Streak,43367,30846,8 +53301,Jay 'Ajju' Rehan,35907,85881,0 +53302,,15830,1439646,8 +53303,,261508,1184059,1 +53304,Jean Robertson,86600,30123,1 +53305,Adrienne's Mother,28455,10083,8 +53306,Mr. Moonbeam,42242,38568,9 +53307,"Shirley, Sunnyside Administrator",239563,43366,10 +53308,Jonas Lutz,24731,20380,12 +53309,,271495,1323458,4 +53310,Billy Cooper,19277,1012440,10 +53311,Rubio Marescalli,108535,27166,6 +53312,Eddie McGuinn,93457,4138,1 +53313,General Allen,294690,89654,24 +53314,J. Edgar Hoover,88794,6193,0 +53315,A.L.,177474,3361,5 +53316,Levi Eshkol,55225,1593232,3 +53317,"Nicola, Nina, Blonde",30141,32,1 +53318,US Enlisted POW (uncredited),227306,1394474,74 +53319,Carl (voice),82703,212184,8 +53320,Martin Beaudinard 20 ans,37645,43999,38 +53321,Alice (voice),393559,1615541,6 +53322,Manager,13842,146022,4 +53323,Georgina,167073,16901,13 +53324,Walter,347630,1695660,31 +53325,Barkie Neff,66175,12504,6 +53326,John Higgins,22606,4165,0 +53327,,227552,1186482,13 +53328,The Mayor/Herbie/Green Hornet,987,14833,10 +53329,Martin Palmer,72094,75066,7 +53330,Holly,11321,77033,14 +53331,King Constant,7096,11857,16 +53332,Volunteer,1116,1896869,33 +53333,American Contractor 1,48243,215023,2 +53334,Vittorio,46920,137756,8 +53335,Nurse,30934,106628,13 +53336,"(segment ""Miminashi Hôichi no hanashi"") (as Tôru Uchida)",30959,552659,42 +53337,Mr. Beckwith,49815,195601,9 +53338,,275060,971329,9 +53339,Widow,25053,1462077,6 +53340,Guerilla,63304,86837,5 +53341,Douglas McMann,118490,1541359,4 +53342,Irene,1662,77013,8 +53343,Grandma Pearl,10761,66557,14 +53344,Millicent Carew,3016,29585,7 +53345,Girl,43754,87187,11 +53346,(voice),28482,1238537,17 +53347,Georgie,193893,118754,8 +53348,Stepmother,92349,992880,2 +53349,Jennifer,138977,1182315,4 +53350,Additional Voices (voice),20715,78798,4 +53351,Referee #2 (Blue Horizon),312221,1746881,34 +53352,Cemetery Guard,29128,88820,14 +53353,,74154,89153,5 +53354,Jean-Luc Hamory,152989,7693,5 +53355,DC Protestor,209112,1696018,93 +53356,Eri,86664,933472,2 +53357,Julie,252028,591850,3 +53358,Cpl. Kileen,47914,42169,14 +53359,Merjolein,19398,1147362,17 +53360,Ronald,252680,101847,15 +53361,Berger,62684,38624,2 +53362,Film buff Ethan,45649,63280,6 +53363,,49522,1548526,23 +53364,Tyrone Bankston,50416,29092,0 +53365,Sidney Young,13092,11108,2 +53366,,77673,1430428,28 +53367,Stud Brown,81937,30612,0 +53368,Becka,36960,62717,12 +53369,CWO 'Sails' Quincannon,257081,9091,6 +53370,Rachel Adams,78383,207491,8 +53371,Miner at Radcliffe Colliery,28421,1197503,53 +53372,Rosco,76207,578038,7 +53373,Nikolos,29272,106819,3 +53374,Dale Hartwell,29801,84769,0 +53375,Mr. Harkness,46513,133031,12 +53376,Claudia,58011,50,1 +53377,Frankie Delano,13437,16483,0 +53378,Owen Forbes,27105,11128,1 +53379,Mr. Cox,301325,9296,4 +53380,Will,226140,206405,6 +53381,,4286,239337,10 +53382,John Stringer,86543,166594,5 +53383,Wretch,283995,333,19 +53384,Justin,403130,1639424,4 +53385,NYPD Detective,8247,76528,18 +53386,Himself (uncredited),91459,1032,2 +53387,Dancer (uncredited),99318,118258,10 +53388,Large Cowboy,258509,1181263,18 +53389,Zoé,92424,83966,1 +53390,New York City Dist. Atty. Brent,68078,100803,3 +53391,Sara Davis,18598,83285,0 +53392,Milo Rodricks,373977,1388917,2 +53393,Jüri Jõgi,321303,1418967,1 +53394,Julie,246917,1528493,13 +53395,Vietnam Army Officer,2080,64674,51 +53396,Amelia,242224,33449,0 +53397,Deputy Virginia Morris,31462,1367884,10 +53398,Gable,256969,31135,9 +53399,Himself,324173,60074,5 +53400,Chemistry teacher,47647,1413335,12 +53401,Andrea Hirsch,270650,1359943,12 +53402,ER Doctor,82,65423,13 +53403,Quarry Cop 2,240745,65928,22 +53404,Dr. Mia Rose,228108,26467,4 +53405,Gertrude Vanderworth,1452,243805,16 +53406,Louise,55853,551794,13 +53407,Josie Cohan,3087,30274,7 +53408,Jake,262841,1334653,14 +53409,Wendel,27549,13392,5 +53410,Dan (the doorman),27035,84229,7 +53411,Steve,336004,1388479,16 +53412,Eddie,83995,70843,9 +53413,Widdie Crane,120657,1045271,7 +53414,Donna Foster,43385,30269,3 +53415,Dr. Sultan,11364,8986,7 +53416,Chris,7511,1893,2 +53417,Pete Hansen,10096,181514,33 +53418,Laurence Alia,110160,26100,0 +53419,Olivia,58547,119592,8 +53420,Murano Satomi,282070,559413,2 +53421,Madison Shopkeeper,181574,196843,9 +53422,Le commandant du navire / Ship's Captain,132332,148345,7 +53423,Barkeeper (uncredited),14703,8259,9 +53424,Colonel Alexandre Barratière (uncredited),42641,120755,15 +53425,Tourist Guy,344147,1476099,12 +53426,Kyle,253283,51991,3 +53427,The Operative,16320,5294,9 +53428,Winnie,31450,108078,0 +53429,Nurse Maddy,440777,1285977,11 +53430,Jack Gaskin,53882,49815,4 +53431,Xian,19545,1482303,27 +53432,Mr Clare,101915,26258,8 +53433,le mari d'Hélène,79435,587178,3 +53434,Colby,194104,1174373,1 +53435,Maureen,48207,1215152,10 +53436,Herself,44211,130497,1 +53437,Hélène,92251,24475,3 +53438,Roy Bennett,38761,38761,0 +53439,Marchese di Roccaverdina,146596,37728,1 +53440,Collègue Claire,283726,1318257,15 +53441,Mac Stipanovich,14050,14888,6 +53442,Dr. Peter Ulof,31634,5041,3 +53443,Kevin,65066,1119770,6 +53444,Stuart's Granddad,50032,174710,5 +53445,Bren MacGuff,7326,19,5 +53446,Mrs. Logue,12855,81070,2 +53447,Reporter,143946,1201028,12 +53448,Party Host,119172,58611,3 +53449,homme du couple sur la route,55424,132542,7 +53450,Cadence Macmichael,79329,82705,1 +53451,Ruth McKee,75778,18191,2 +53452,Chuck,55663,151537,1 +53453,Aunt Hannah,358199,11715,8 +53454,,268099,1316481,1 +53455,Brother (Ricky) at 4,27414,1206249,37 +53456,Harold Loftus,35895,7685,3 +53457,LN,19255,1579,9 +53458,Judith Palmer,21927,1560953,12 +53459,Romain,64239,1977,0 +53460,Remzi,334394,1439926,5 +53461,Mrs Clipstone,53524,230491,11 +53462,Goldie Pease,128364,991100,8 +53463,Doris,37672,9560,1 +53464,,42501,39472,9 +53465,Basia,332662,1465065,0 +53466,,123949,1081522,7 +53467,,32928,144829,4 +53468,Un homme de main,111480,251203,10 +53469,Terapeutka Anna,319999,82312,2 +53470,Himself - Titan Model,97724,1388675,26 +53471,Nurse,124115,1108832,22 +53472,Mitsuhiro Ide,418029,1239810,4 +53473,Horror Movie Girl,310593,1367570,29 +53474,Portier,11122,134493,11 +53475,Additional Voices (voice),130925,167295,17 +53476,,72826,567246,1 +53477,Barney Fagan,288980,19260,7 +53478,Ed Grilli,19754,100874,14 +53479,"Miss Rollo, Harry's Secretary",96107,85956,12 +53480,Jennie,44303,5064,0 +53481,Livia Ussaro,183962,578096,2 +53482,Doctor,126250,55887,9 +53483,Jared Howe,72710,232396,5 +53484,Maid,44875,12025,5 +53485,Viji's Sister,69404,1327078,12 +53486,Kevin,14008,1239505,10 +53487,Sir James of Scotland,26643,1183966,15 +53488,Voz Fantasma 2 (voice),60120,1808448,3 +53489,Erzherzogin Sophie,457,6255,5 +53490,Prentiss,62033,38761,14 +53491,Mutter des Brocken,360737,1148521,10 +53492,Joyce Brabner,2771,15250,1 +53493,Tom,259694,521563,5 +53494,Bouncer,118549,103092,9 +53495,Juanita Simmons,37609,593154,5 +53496,,365065,983707,2 +53497,Carmine (voice),9904,47770,14 +53498,Football Player,43812,1288695,22 +53499,Murchenson,4111,34748,7 +53500,Masaki Murakami,197854,100124,5 +53501,Mrs. Keenan,156700,52119,9 +53502,Marcella,43594,149094,4 +53503,Senior Inspector Tou,18747,1139045,15 +53504,Mrs. Darling,120672,590740,3 +53505,Himself,144680,1416474,3 +53506,Le directeur du supermarché,15712,109889,17 +53507,Concert Attendee (uncredited),72105,1259597,48 +53508,Tyler,20674,2881,8 +53509,TV Actress,29611,104354,9 +53510,Princ Kazimír,208436,130908,7 +53511,Supt. Charles Matheson,30637,10027,3 +53512,Yoshitsune,11633,9706,9 +53513,Manager,171213,411483,14 +53514,Mitchel,24624,93719,2 +53515,,12206,225292,20 +53516,Prosecutor Machado,44895,159382,5 +53517,Cselédlány,86732,1348129,6 +53518,Joseph Atash,44773,181647,4 +53519,Mary Anderson,401222,217524,3 +53520,Po (voice),81003,70851,0 +53521,Butler,137321,1593166,23 +53522,Flautist Assassin,177677,40738,24 +53523,,17935,238527,11 +53524,Nude streaker,367732,1217540,14 +53525,Hilda,43855,11498,4 +53526,Ruth Ortiz,72140,158747,12 +53527,Mrs. Bryce-Carew,214909,10926,11 +53528,Scott McCoy,19286,53176,1 +53529,Driver Willem,154972,934578,11 +53530,Amazon Army,297762,1431128,36 +53531,,288788,25251,5 +53532,Antoni 'Anto' Miszczak,112531,1055097,2 +53533,Old Liu,36113,132058,1 +53534,Ada Fiestri Paulhan,3870,24590,2 +53535,Mrs. Hawkins (uncredited),196789,8232,9 +53536,Senator Willis,293167,28633,15 +53537,,352199,1509240,8 +53538,Ralph Blackman - Band Leader,157343,1271018,12 +53539,Hans,12206,1709231,9 +53540,Himself,71825,7502,11 +53541,Nick Wilde (voice),269149,23532,1 +53542,Himself,414749,2879,1 +53543,Sir Giles Fordyke,100770,101501,8 +53544,Ali,31216,144311,11 +53545,Barton,41171,136973,23 +53546,Himself,334461,33663,13 +53547,Oblo,283995,559457,22 +53548,Ello Asty / Quiggold / Niima Thug (voice),140607,71536,70 +53549,Fortune Teller,157843,1525449,28 +53550,Fosca,58011,131958,7 +53551,Sgt. Kincaid,133715,30510,0 +53552,Thiago,82409,810740,0 +53553,Mica 'Shaft',15303,110969,5 +53554,Gen. Ulysses S. Grant,11897,4073,20 +53555,Mary,80720,121121,14 +53556,Rex,337958,75889,0 +53557,Maiwald,1912,32931,2 +53558,Joe,15414,5469,0 +53559,Andrew,122698,53085,5 +53560,Pete,84340,22214,16 +53561,Andi,18082,115491,2 +53562,Toro Croupier,7220,1542057,19 +53563,realtor,62732,128814,10 +53564,Wayne Industries Pilot,209112,1106260,17 +53565,Zahhard,125521,112276,13 +53566,Julie,110146,120825,2 +53567,Molly,309024,973998,5 +53568,Dean Harcourt (as Sir Cedric Hardwicke),131457,99461,3 +53569,(uncredited),43522,1188829,16 +53570,Henriette,15177,77977,3 +53571,Rodeo Performer,134238,1003897,35 +53572,Brig. Russell,64129,5182,4 +53573,Boris,92424,28675,10 +53574,Ravikanth,353533,465273,3 +53575,Constable Kelly,425774,1707948,56 +53576,Frank Ginetta,53654,2090,0 +53577,Alex,84178,176658,5 +53578,Karsten Skov,33280,98062,0 +53579,Alice,32298,86034,1 +53580,Football Jock 2,14123,1446430,40 +53581,Police Officer,2001,1781720,68 +53582,Mrs. Morrow,239519,20366,2 +53583,,41121,125530,3 +53584,Luke,85435,123724,6 +53585,Maybelle,112284,85847,14 +53586,Elba,57489,116587,2 +53587,Himself,145154,1122377,8 +53588,la mère,76268,136761,0 +53589,Jaguar Paw,1579,17678,0 +53590,Yuma Kazama,45489,554499,9 +53591,Jérôme 1,65898,35077,2 +53592,Gloucester,134155,1796924,13 +53593,Gag Me Girl,9870,54708,20 +53594,Daffy Jack,72096,940694,19 +53595,Musician,42764,105353,5 +53596,Dr. Angelika Hasenbein,1655,18400,0 +53597,Om,37438,93290,1 +53598,Ms. Reiling,13596,230944,26 +53599,Glenn Odekirk,2567,11154,14 +53600,Signor Robert,28061,101591,7 +53601,,155605,552012,6 +53602,Carrol,72638,43845,39 +53603,Sydney Blume,85009,14545,13 +53604,Runt of the Litter (voice),9982,18324,3 +53605,Jill Tyler,86131,25306,0 +53606,Blop,199374,559141,8 +53607,Young Man,107985,28847,28 +53608,,66187,572393,4 +53609,Janice,310888,1686656,7 +53610,Mechanic's Girlfriend,19912,94427,7 +53611,"Rod ""Torque"" Redline (voice)",49013,11357,9 +53612,,77534,233027,4 +53613,Additional Voices (voice),130925,7929,20 +53614,Katis Opa,2195,23178,4 +53615,Waiter,46930,137819,7 +53616,Seaman Pinky Brett,257081,13298,8 +53617,Sheriff (as Richard Powers),153228,65500,12 +53618,Dr. Viktor Vasilienko,13946,36218,0 +53619,First Pharisee (Judean Story),3059,29956,8 +53620,Leslie - Maxi's friend,46773,1522999,9 +53621,Guest Appearance,39217,86013,8 +53622,Capt. Sam Crowe,197624,87295,1 +53623,Doc Morris,205587,81681,14 +53624,Sally,245324,3063,1 +53625,Eddie,10482,98464,1 +53626,Doña Sol,95134,29582,1 +53627,Galeriste,77338,999406,17 +53628,Himself,145220,27319,33 +53629,Fred Dukes / Blob,2080,79072,7 +53630,Ken Reynolds,38461,15772,7 +53631,Angry Man,115023,5844,7 +53632,,329216,4688,7 +53633,Tom Logan (uncredited),4257,6952,19 +53634,Dr. Howard Schaefer,32082,1194961,10 +53635,Waitress,10362,115982,39 +53636,Lacrosse player,201676,83424,11 +53637,Reg,341077,1029029,5 +53638,Dr. Avery Border,29236,80621,6 +53639,Benjamin Conroy,183412,1419646,6 +53640,frate Ambrogio,81775,919804,6 +53641,Il direttore della prigione,66893,233174,8 +53642,,348315,84638,3 +53643,Hardin Tough,21955,1330208,14 +53644,Ittai,2734,27324,29 +53645,Haruo Taguchi,125264,944892,1 +53646,Erica,29111,1892882,4 +53647,Lucy Van Pelt (voice),15242,124659,1 +53648,Carla Silva,50662,9576,0 +53649,Peg the Teacher,12912,156204,5 +53650,Amar,126676,2417,2 +53651,Yin,56329,105421,14 +53652,Lady Vivien,19957,70564,15 +53653,Kakie (voice),159824,58317,16 +53654,Punter,1420,33452,15 +53655,,69619,148892,7 +53656,,4024,28277,4 +53657,Noel Winters,25941,449889,8 +53658,Young Bo,10066,62749,7 +53659,Rebel Marine Commander,330459,1713820,54 +53660,Madison,325133,77948,15 +53661,Father O'Connor,42345,30046,7 +53662,Proprietaria Locale,42674,33928,22 +53663,Pierre Gauthier,110573,2566,1 +53664,Old Teammate #2,193893,1381493,38 +53665,Clerk,47876,104637,10 +53666,Ellie Tucker,32029,11850,1 +53667,Amrit,413421,1739729,5 +53668,"James ""Thunder"" Early",1125,776,2 +53669,Lady Spence,139463,20300,2 +53670,Mr. Berstein,1877,158287,7 +53671,Varela,351809,79291,9 +53672,Sandra Marshall,62720,14974,1 +53673,Herbert Walcott,27114,30007,13 +53674,Mary,3087,30269,1 +53675,Bea,9900,28778,3 +53676,Louise,97365,72255,3 +53677,David McLean,74437,8253,1 +53678,Renato,30535,66166,0 +53679,"Roelf, age 12",98536,165524,11 +53680,Vincent Dooly,140489,1178812,1 +53681,Yam,132518,1095723,2 +53682,Mulya (as P.P. Repnin),83435,86701,2 +53683,Jamie,16996,159962,9 +53684,Mamie,10986,67969,3 +53685,Tess Tyler,13655,130567,3 +53686,Creature,20432,1099738,9 +53687,,134215,85577,4 +53688,Alice Cohen,78210,59032,2 +53689,Shecker,94225,104418,2 +53690,Schlossherr,779,11586,4 +53691,Son Goku,39148,90496,3 +53692,Mrs. Drew,288668,101947,4 +53693,railway security,53042,147108,11 +53694,Herself,42093,1776539,5 +53695,Seance Woman 2,27259,97440,17 +53696,Knute Rockne - Age 7,43812,1459314,79 +53697,Yacht Captain,179066,102066,23 +53698,Himself,137853,1375251,2 +53699,Cab Driver,40693,153295,10 +53700,,64468,1156337,7 +53701,Robert Fulmer,31913,4690,4 +53702,Himself,410718,1702128,28 +53703,Molly,76494,1427681,20 +53704,Comdr. Kelvey (uncredited),10178,103413,40 +53705,"Himself, film historian",135313,30807,0 +53706,Scared med tech,24392,1656600,12 +53707,Priest,11537,117952,4 +53708,Ms. Judith,293452,1367473,7 +53709,Carol Beckham,24921,6172,5 +53710,Mrs Marwah,20092,86081,3 +53711,Track Announcer,171308,10657,15 +53712,Kang Sang-byeong,1416,16962,0 +53713,Tony,347630,1695664,40 +53714,Marla,15577,51988,13 +53715,Twin Cousin 2,85350,1467993,67 +53716,Major Allen,1726,40275,19 +53717,Andy,55347,5725,3 +53718,Jennings the Butler (uncredited),28668,544585,6 +53719,Touba Lie,217923,1436148,14 +53720,,88176,590710,15 +53721,Thumper's Sister (voice),13205,42914,8 +53722,Mrs. Benes,48116,53780,4 +53723,Liu,308529,134488,2 +53724,Randy Messarue,14833,101187,4 +53725,Licovetti,262528,34819,14 +53726,Strangle 'Em,51036,1879499,36 +53727,Jessica Stuart,139826,5503,1 +53728,Sylvie,8383,130914,2 +53729,Alex,21343,76968,0 +53730,Allison Frost,36960,1510943,7 +53731,Ray Pierce,202241,1009160,9 +53732,Jackson Meade,24801,113928,3 +53733,Betty,147773,19,5 +53734,Prithviraj,76788,544977,1 +53735,Det. Patrick Leary,26390,19490,12 +53736,,63215,13514,18 +53737,Sheila,179066,1198259,19 +53738,Rachael,17940,62246,4 +53739,Ambush Henchman,183825,980330,49 +53740,Estelle,36737,1125991,5 +53741,Peters,13580,21520,3 +53742,Charles Darnay,17831,118022,7 +53743,Kru - the Lao Tribesman,44657,1627037,4 +53744,Child,22051,1634920,20 +53745,Vortigern's Guard (uncredited),274857,1489426,65 +53746,Father,39824,1350211,16 +53747,Summer,345916,580915,5 +53748,Mr. Wilkes,47171,187183,5 +53749,Dave Afton,18586,42650,8 +53750,Bit part (uncredited),35852,20416,17 +53751,Ebirah,3115,1482691,24 +53752,Kim Temple,4644,39481,4 +53753,,9528,11317,7 +53754,Groves,31428,1412166,12 +53755,Davis,16899,1671734,13 +53756,Cashew,385372,1585210,9 +53757,Turner,94135,117471,12 +53758,Singer,198277,1216966,32 +53759,J.D. Rogers,42456,35090,5 +53760,Charles Xavier / Professor X (Old),127585,2387,9 +53761,Dancer at Party,84994,197852,2 +53762,Jimmie Conroy,172445,109088,0 +53763,Ralph,26142,5169,9 +53764,Broker,43811,141067,66 +53765,Schwartz,27085,1067876,19 +53766,,458428,1820240,4 +53767,Reno Reporter,239566,970192,38 +53768,Doctor Thomas Rock,80368,10669,0 +53769,Karate Dad,59962,107810,28 +53770,Carmelo Franzò (as Gian Maria Volontè),103218,14276,0 +53771,Mrs. Simpson,22020,1207151,9 +53772,Sam Wilson / The Falcon,99861,53650,13 +53773,Susanne,28062,11041,7 +53774,Eugénia,49961,143132,3 +53775,Ana Muci,33611,80504,5 +53776,Bill Martin,43009,94127,3 +53777,RD Pruitt,259695,1232599,15 +53778,PK,128081,119251,1 +53779,Erland,133458,141983,8 +53780,Lara Queen,31131,30624,3 +53781,Ted Hedley,28031,13242,5 +53782,Brittany,84105,51042,19 +53783,Alice Marie,3081,31504,4 +53784,Sharpay Evans,11887,67600,2 +53785,Specialty,108222,1671172,15 +53786,Anthony Fielding,48131,5049,2 +53787,John Lennon,6575,22226,18 +53788,Un gardien,33436,39334,8 +53789,Angus Coleman,295581,179495,5 +53790,Uncle Billy (uncredited),14615,89736,59 +53791,Tieta Àngela,438634,1886448,6 +53792,Se stesso in filmati di repertorio,59264,90141,0 +53793,Leon,56800,1117806,6 +53794,Shekhar,161179,35763,2 +53795,Prostitute 2,283424,1345494,4 +53796,Jüri Maimik,318184,1413689,5 +53797,Carlos,53739,15598,6 +53798,Beduino,121516,37583,1 +53799,Lotte,70670,558205,3 +53800,Steve,21533,583052,21 +53801,Sergeant,117550,104240,4 +53802,Guzmán de Alfarache,103216,3753,0 +53803,Maria,289191,326,1 +53804,Anya,2577,7063,15 +53805,Magic Show Audience Volunteer,228647,1345833,22 +53806,Masaos Grossmutter,4291,36074,4 +53807,Farm Girl,60269,1552054,13 +53808,CEO,58244,79623,31 +53809,Martin Borhulth,24023,213486,12 +53810,Mr. Brandt,12573,159454,8 +53811,Celine,341895,1473118,2 +53812,Bob,9690,17544,7 +53813,Major Anderson,72638,114097,14 +53814,Johnny,107096,1041314,3 +53815,Tomek,346443,1277198,1 +53816,,56666,225296,9 +53817,Father of School Girl,62630,25095,11 +53818,Prisoner,28090,1719907,60 +53819,Szorlok,347096,556275,6 +53820,King Fisher,43250,9112,2 +53821,Livia,40817,124679,6 +53822,Mexican,73984,14822,8 +53823,Kaitlin Mays,51836,1500181,3 +53824,Robert,67748,1071157,8 +53825,CAOC Analyst,1726,27031,59 +53826,Hecuba,340275,1034453,11 +53827,Miss Iraq,55694,1139961,14 +53828,,90351,72455,9 +53829,Derrick,142989,1118134,1 +53830,Omkara,14705,42803,0 +53831,Renny's Secretary (uncredited),20644,148527,21 +53832,,369373,1584567,4 +53833,Stink / Scrotus / Henchman #4 (voice),278901,31531,3 +53834,Smerda,35021,107634,7 +53835,Lisa,138977,1182319,11 +53836,"Item in the song ""Rama Rama""",353533,1088431,19 +53837,Captain Peterson,131966,197486,4 +53838,Drugstore Customer (uncredited),31913,78776,21 +53839,Herbert J. Stern,68752,8349,1 +53840,Susan Corey / Sharon Ferris,51881,36819,0 +53841,,258193,115244,6 +53842,Dr. Gaius Baltar,69315,9145,7 +53843,Himself,76686,1098641,5 +53844,Holm,85699,24442,14 +53845,Ezequiel,130457,1657347,8 +53846,Cregeen (uncredited),43369,936927,15 +53847,Fai / Fi,172972,25246,0 +53848,El Heron Bikini Girl (uncredited),15092,1539472,67 +53849,Himself - Co-Host / Narrator / Clip from 'Take Me Out to the Ball Game',33740,4347,9 +53850,Chauffeur de taxi,338189,1293485,10 +53851,Joongwon,85525,1347175,5 +53852,Grigori Rasputin,46827,4566,0 +53853,Mignonette,26643,119734,5 +53854,,190883,8841,3 +53855,Kaecilius,284052,1019,4 +53856,Skrzetuski's Sergeant,31273,107891,39 +53857,Rachele,239563,58355,14 +53858,Libero Fornaciari,80443,83147,4 +53859,Tony Paroni,3563,20819,33 +53860,Jimmy's Bandmate 2,85350,1467996,70 +53861,Susan Atkins,381737,1424363,1 +53862,Miss Dimkins,48207,112936,20 +53863,Antonio,325780,27647,2 +53864,Agent Paul Pryzwarra - FBI,7551,5576,2 +53865,Mrs. Jennings,315010,8443,11 +53866,Vasili,33481,110759,7 +53867,Petrovich,395914,1614744,4 +53868,Brigadista,2143,132911,33 +53869,Aide-soignant,283726,1522063,9 +53870,,347328,95559,4 +53871,Tesselink,19350,1062,2 +53872,Little James Brown,239566,1457248,36 +53873,Sheriff Clanton,81996,52485,6 +53874,Dealer 2,43459,1468086,8 +53875,Miosotis 'Morning Glory',63260,230672,5 +53876,Jesus,17317,1260529,24 +53877,Police Officer,38987,29466,7 +53878,Landlord,52736,52191,14 +53879,Michael's Henchman,25953,120520,11 +53880,Capo,297668,105062,5 +53881,Francis Hamilton,128841,63169,1 +53882,,15776,1591712,14 +53883,John's Mum,297265,47700,10 +53884,Kevin McCallister,12536,72698,2 +53885,Roger,62978,1098549,5 +53886,Tower Guard,27470,69052,24 +53887,Helge,75229,7742,1 +53888,,11854,1846761,14 +53889,Detective Strickland,15577,932967,14 +53890,,76940,1428436,3 +53891,,27053,1121835,22 +53892,Svea Åkerblom,41764,277436,16 +53893,Man Admiring Portrait of Thomas A. Edison,56154,12147,51 +53894,Mary Stuart,43875,6598,0 +53895,Baroness Le Feyre,315664,1430323,15 +53896,Wazir Al Wuzara,82430,5,1 +53897,Julie McGrath,5965,46917,2 +53898,(voice),63498,1084813,9 +53899,Karen,61008,110015,0 +53900,Prof. James Bickford,43093,10029,1 +53901,Enrico,18897,992162,7 +53902,Priscilla Hall,311093,126932,4 +53903,Sheriff Jackson Cole,117942,238321,15 +53904,Thomas Bengtsson,76047,56397,0 +53905,Stella,130739,16726,21 +53906,Reception Nurse,365942,1777590,43 +53907,Andrea,10748,95712,12 +53908,Nancy,44415,146338,10 +53909,Вера,83456,150730,4 +53910,Gen. Medworth,134355,7640,2 +53911,Ishika,20132,55063,3 +53912,,102197,143706,15 +53913,Prison Matron / Restaurant Patron / Guest (uncredited),22943,147991,7 +53914,Zoe,83125,45419,5 +53915,,252059,1459893,9 +53916,Capable,76341,98522,8 +53917,Jim,17111,1629433,4 +53918,Amy,226188,43894,5 +53919,ADA Alan Jackson,173153,60195,7 +53920,Dr. Samantha Hill,53870,21216,0 +53921,Officer Vasquez,109439,145219,17 +53922,The Snake (voice),309809,1121,5 +53923,Tansy Taylor,45714,34314,0 +53924,Extra (uncredited),3059,102327,59 +53925,Szymon Smutek,226693,21748,2 +53926,Kate,246127,4273,2 +53927,Father,393732,1505922,9 +53928,Perotti,335053,1451816,11 +53929,Emperor Meiji,616,9189,6 +53930,The Kindly Policeman,3059,96061,23 +53931,Deputy,4882,1774941,23 +53932,Mona Darling,218898,86085,5 +53933,Palmer's Daughter,88794,481337,8 +53934,Joan Durbeyfield,101915,192927,2 +53935,Hindley,36597,39659,4 +53936,Pinky,43821,96258,13 +53937,,19082,44549,4 +53938,Mrs. Hill,56558,2780,28 +53939,Henri,242683,44833,14 +53940,Dr. Stephen Fleming,11012,16940,0 +53941,Christian,22579,1128307,7 +53942,Papa Beast,10070,23493,20 +53943,Innkeeper,73194,34280,14 +53944,Grizelda Brown,14262,76496,5 +53945,Psicologa,43544,129340,15 +53946,Jae-hoon,54690,1235476,2 +53947,Sumita,134350,20327,14 +53948,Det. Valdez,10594,44097,3 +53949,Jean Ricardo,19827,22494,5 +53950,Sheila,407575,1055533,1 +53951,Judith Doughtie-Wylie,157843,40876,10 +53952,Bertie,1420,9029,4 +53953,Jim Donahoe,295656,1378680,10 +53954,Teis,16015,90060,0 +53955,George,25507,96260,11 +53956,Daphne (voice),13517,1571368,8 +53957,Dadds,48207,216921,6 +53958,Master of Dragon Escort,18758,1306921,4 +53959,Grand Duchess,120831,97988,5 +53960,Alex,94055,29209,2 +53961,Moe,17483,81957,11 +53962,Irmeli Laavu,61070,1523221,4 +53963,Angelo,243935,52859,27 +53964,George,32577,11851,3 +53965,Police Captain James McQuigg,27777,98970,0 +53966,Lagus,353462,94958,7 +53967,Sailor's wife,110887,1507,7 +53968,Sashi,63825,237624,3 +53969,Stiefmutter,216647,1039917,1 +53970,Johanssen,131039,76638,7 +53971,,374021,1117988,8 +53972,Mr. Keslow,304372,1592996,12 +53973,Martha Johansen,128900,3880,7 +53974,Ken Long,72753,154019,4 +53975,Himself,15089,30579,1 +53976,Ellen Wilson,35129,40193,3 +53977,Dalibor,327389,159658,13 +53978,Reporter (uncredited),31984,1845971,31 +53979,Rosa,1418,16975,4 +53980,Amy,107781,44151,2 +53981,Wyatt,32395,58621,16 +53982,State Trooper,268920,1754424,26 +53983,Max Steiner,35921,12312,6 +53984,Samantha,169298,147382,5 +53985,The Overseer,16203,79982,1 +53986,Baldo,13486,20304,7 +53987,Road Farmer's Wife,56906,171525,7 +53988,Intake Guard,26376,120734,19 +53989,Himself,406431,78892,4 +53990,Tony Evans,178341,83476,2 +53991,Hanna,97614,51072,9 +53992,Horace Debussy 'Sach' Jones,185273,33024,1 +53993,Mrs. Butler,8988,1741943,16 +53994,Coco's daughter,29952,1038481,3 +53995,Ella,336050,1433827,10 +53996,Gemma,43550,2038,1 +53997,Anders,15177,77981,8 +53998,Véronique Graff,35008,1070001,8 +53999,"Bill, administrateur",121936,185391,6 +54000,Young Female,9568,1410494,15 +54001,Nick Palestro,27035,3140,6 +54002,Slightly Soiled,273106,1519559,14 +54003,Güven,361181,1355265,12 +54004,Delia and Deidre Dennis / Dee Dee,16234,78501,9 +54005,Julien Davenne,8070,1650,0 +54006,Mr. Kim,310001,142425,0 +54007,Lauren Daly,266425,1080862,3 +54008,,254679,1169235,8 +54009,Judge R.W. Clarke,25473,13298,14 +54010,Seth,83,1187,2 +54011,Ferit,220002,142766,2 +54012,School Kid,345922,1815386,47 +54013,Raymond Green,339419,1104619,7 +54014,Terry Twillstein / Wolfgang Amadeus Thelonius Von Funkenmeister the XIX 3 / 4 / Daffy Mal Yinkle Yankle,14923,59410,1 +54015,Monk,55032,27393,4 +54016,Jared Martin,29896,55587,2 +54017,Rob,16151,79693,3 +54018,Juarez,32489,98828,8 +54019,Dave,43092,97206,4 +54020,MNU Mercenary,17654,1184628,37 +54021,Leprechaun,19286,11184,0 +54022,Dancer,2001,1781724,72 +54023,Ultrasound Technician,7326,1093538,15 +54024,Gideon Bell,27501,8839,0 +54025,invitata in nude-look,108535,43885,29 +54026,Hector,92341,29987,4 +54027,Man in Bar,53387,89601,6 +54028,Sean,1116,1896857,20 +54029,Queen,70874,239720,1 +54030,Colonnello dei Carabinieri,103218,1033152,5 +54031,Laura,394723,1585997,3 +54032,Chris Rockett,4644,11669,1 +54033,Newsreel Piano Accompanist,1116,1083253,56 +54034,Eddie,100275,1067604,1 +54035,Simon Tiger,12594,188638,15 +54036,Carol Shaw,257447,1182308,23 +54037,Jaime,251419,951985,1 +54038,Jet,18747,72731,3 +54039,Mark,8588,1066004,9 +54040,Potter,440777,55084,3 +54041,M. Barelle,56947,25182,4 +54042,McGuire - Train Engineer,56154,13558,36 +54043,Sakazaki,101929,1029321,3 +54044,2.Animierdame,122487,39636,14 +54045,Wedding Guest Anne Mitchell,270650,1359953,23 +54046,Mrs. Cooper,45874,44687,7 +54047,Dave Duvallo,228647,40180,3 +54048,Tourist 1,98644,1029126,9 +54049,Himself (archive footage),320589,21037,12 +54050,Manuel Contreras,318781,116362,41 +54051,Devon,153854,109829,6 +54052,Rebeca Viñas,80280,1031745,5 +54053,Karl,8906,56833,2 +54054,,84508,125016,7 +54055,Irma,41054,15385,1 +54056,Photographer,312174,1383174,14 +54057,,88176,1708194,10 +54058,Young Merrin,149509,1152083,6 +54059,Carlo,48846,105325,0 +54060,,54858,1136763,3 +54061,Hamilton,414067,1376330,1 +54062,Himself,47426,141676,1 +54063,Skeeter,79735,32786,10 +54064,Adiatou,266082,1646372,2 +54065,Jello Diver,70772,559662,16 +54066,Second Man (uncredited),3081,1048530,21 +54067,Bardamu,101342,260837,13 +54068,Wagner,157420,39520,1 +54069,Graydon,178809,237756,4 +54070,Jack Hays,52395,38085,2 +54071,Kamini R. Verma,55376,86075,1 +54072,Broken Nose,9828,17141,1 +54073,angelo custode,77137,222503,2 +54074,Professor Blandford,31984,85936,10 +54075,Marlowe Age 3,47342,1837869,25 +54076,Radio Announcer (uncredited),188468,105810,22 +54077,Mr. Kingcroft,59704,10674,5 +54078,Winker,70807,559683,6 +54079,Blitzen,238302,36821,14 +54080,Adelaida (as Rosetta Espinet),299165,1689464,22 +54081,Flora Bailey,257907,1145171,4 +54082,Hermine,3577,24142,10 +54083,Ray,70695,3905,5 +54084,Puck,13477,452205,8 +54085,Masked Killer,244610,1159514,11 +54086,Detective Walter O'Bannion,73313,12312,4 +54087,Marie Vaughn,262357,28778,1 +54088,Terrence,268321,1318352,10 +54089,Lady in Room 611,26376,1198250,20 +54090,Electric Dream Factory Repairman,257344,1683836,43 +54091,Christopher Ridgefield,51619,656,5 +54092,Ramon,330115,22821,6 +54093,Herr Koppenrath,61035,213583,21 +54094,John Horace 'Johnny' Mason,18569,854,1 +54095,Ross North,14147,1226195,6 +54096,Tom's Mother's Voice,56669,191179,14 +54097,Corinne,181456,238383,4 +54098,Husband at Grave,51999,116130,23 +54099,Patrick,159211,25099,3 +54100,,133783,1476853,15 +54101,Horst,46943,107380,2 +54102,,54858,1136766,7 +54103,Harry,130507,34294,18 +54104,Philipp,3037,6086,1 +54105,FBI Agent,405882,1783680,25 +54106,Trent,345054,1467026,12 +54107,Billy,16240,1218926,5 +54108,Himself,245394,18025,9 +54109,Rosie Cotton,122,965278,21 +54110,Admiral Dewey,147722,30007,8 +54111,Jonathan Reynolds,33112,10921,1 +54112,Boss Pai,25074,1178932,5 +54113,Cesar Bolaño,333663,1736795,16 +54114,Cristina di Belgiojoso,56853,225301,19 +54115,Yulya,79234,586220,2 +54116,Lady Arabella Marchand du Belmont,79113,42216,3 +54117,Rose Mason,30934,107329,1 +54118,Extra (uncredited),3059,99373,65 +54119,Jai A. Chand,20364,87328,0 +54120,Ernie,68387,183016,17 +54121,Nightclub patron,43113,1481147,55 +54122,Boyfriend,32657,1265065,76 +54123,Frau Müller,315335,4619,1 +54124,Karl Lagerfeld,245775,54024,2 +54125,Denise Dupree,28665,101519,1 +54126,King Louis XIII,130062,1090772,2 +54127,Old Pawnee Woman,55534,7863,21 +54128,Mabel Cantwell,37315,4098,2 +54129,Archbishop,15371,553100,11 +54130,Stan Laurel,15788,155376,8 +54131,Grey Villet,339419,335,4 +54132,Tech,344906,1072143,21 +54133,Drag Queen,7942,1013050,16 +54134,Virahadra,68737,58902,20 +54135,Popjoy,33511,52888,19 +54136,Claire,53364,18943,0 +54137,John Logue,12855,33654,1 +54138,SS-Offizier,239103,65054,5 +54139,Maral,354859,85143,7 +54140,KG Shaw (voice),9502,22297,13 +54141,Tony Pastula,302828,10993,1 +54142,Man in Roadhouse,27480,96464,7 +54143,JR,6417,49674,4 +54144,Walter,139159,151177,10 +54145,Becker,97614,4515,6 +54146,Leone,31428,101781,7 +54147,Army Captain,4982,28040,53 +54148,Ruiji's Maid,217923,1436270,30 +54149,Samurai Ensemble,616,551956,41 +54150,Max 'Berg',61035,150798,14 +54151,Sheila Heffernan,167073,53998,11 +54152,Charles Farmer,5172,879,0 +54153,L'avvocato difensore,75532,390453,6 +54154,Norma,242224,543275,26 +54155,,58570,123648,4 +54156,DJ,9900,60166,18 +54157,Chloe Johnston,381073,1492327,4 +54158,Michelle Chodiss,40221,100961,8 +54159,Sergeant Joe Blake,73430,131618,4 +54160,"Ed, the Announcer",223497,34574,7 +54161,TV Reporter,21567,83596,13 +54162,Chief (Scarecrow Club),10044,544916,19 +54163,Hooker,11338,91332,7 +54164,Marlene Reeves,157343,34756,5 +54165,Giorgos,47683,1750912,3 +54166,,110001,35351,17 +54167,Benedek,36264,125409,4 +54168,Mr. Snow,866,1244447,19 +54169,"Hoichi (segment ""Miminashi Hôichi no hanashi"")",30959,70121,19 +54170,Alan Trent,120977,13576,0 +54171,Sadie's Singer,4688,1671514,18 +54172,Mary (voice),11795,1408167,13 +54173,Cadet Cpl. Scawalski (as Donald Keeler),110502,20813,9 +54174,Mark Aubichon,271185,170635,4 +54175,Trunks,39324,1686,1 +54176,Anete,116437,1466291,2 +54177,Joy Mangano,274479,72129,0 +54178,Norway,52859,1417388,23 +54179,Dr. Lucas Emery,335872,3720,2 +54180,Félix,11399,16873,7 +54181,Mr. Charmers,61550,174241,8 +54182,John Paul Steckler I / John Paul Steckler IV / John Paul Steckler VII,143092,3663,0 +54183,Dr. Haskins,9030,52057,5 +54184,Harström,33481,53508,3 +54185,Himself,140554,1267408,6 +54186,George,56264,69494,4 +54187,Mitchell,49762,142756,5 +54188,Subira,15073,109319,7 +54189,Naval Officer,17911,1110618,13 +54190,,357441,1503569,1 +54191,"(segment ""Kurokami"")",30959,552645,10 +54192,Opera Police,177677,1562090,40 +54193,Dancer (uncredited),28293,103789,13 +54194,Ryan,330011,1409067,4 +54195,Funeral Director,42623,13968,10 +54196,Partymieze,3716,1302632,15 +54197,Young Girl,10299,567254,17 +54198,Danny,42709,20921,1 +54199,Laughing Kid,64328,1504923,39 +54200,Antiquarian,142712,50250,16 +54201,Marion Fitzwater,113175,49001,1 +54202,Hugh Wagner,29467,81182,4 +54203,Emanuel Schikaneder,79362,25691,0 +54204,Samantha,131689,1093518,8 +54205,Locker Room Attendant,47404,105454,41 +54206,Himself,15258,216837,63 +54207,amica di Valentina,38328,147176,13 +54208,Bonnie McHale,36960,204439,6 +54209,Autograph Seeker on Train (uncredited),28261,5464,9 +54210,Denise,58396,227767,1 +54211,Sarah Witt,33563,59315,2 +54212,Mark Wiener,13073,80541,0 +54213,Nemeao Seehabodee,39907,228628,7 +54214,Thomas,72105,59841,6 +54215,Rhea Menon,139582,1040950,3 +54216,Mr. Eckert,229610,90000,7 +54217,Stan Deane,37725,7868,5 +54218,Jordan,54156,5274,2 +54219,Bartender (uncredited),171446,148416,28 +54220,The Informer,94135,73982,7 +54221,Marc Hall,96936,969140,1 +54222,Alison Lebray,5460,43445,3 +54223,Christopher Porter,29805,1670480,27 +54224,,148371,1619183,9 +54225,Miss Annabelle Kirke,153169,33360,5 +54226,Traktor,338312,82364,6 +54227,Minor Role,43811,1010448,40 +54228,Lisa Connors,69560,448,0 +54229,Seaweed,2976,29223,8 +54230,Samantha,77875,1649391,15 +54231,The Birdman as a Boy,173638,1781524,13 +54232,Kyle Timmons,317198,1300650,7 +54233,Justin,286521,1256097,27 +54234,,175791,59640,0 +54235,Border Patrolman,8053,108037,13 +54236,Lacy Barrett,145135,41292,0 +54237,State Senator,5172,79213,20 +54238,участница спиритического сеанса,43680,1773921,9 +54239,Kate Keller,1163,11884,4 +54240,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,91547,18 +54241,Jerry Hadley,9080,374,9 +54242,Himself - Roaster,334461,15832,4 +54243,Minister Sorrensen,31048,11512,7 +54244,Hank Ford,117905,51750,0 +54245,"Village woman (segment ""Yuki-Onna"")",30959,106161,15 +54246,Mickey 'Bogart' Pinco,205798,99789,7 +54247,Makoute,128917,19384,6 +54248,News Reporter,428687,1776849,27 +54249,Mahi Arora,134215,37233,0 +54250,Bartender,424488,1881493,12 +54251,CWO Lawrence Meideros,10005,61856,13 +54252,Cashier,408381,1657540,8 +54253,Dennison,2966,1521623,14 +54254,Psychiater,70752,143022,7 +54255,Gloria Farlander,19255,11514,3 +54256,Henchman,63825,1671470,13 +54257,Iron Man,14609,31536,4 +54258,Toshiko,117212,1032664,6 +54259,Michelle,340275,1531600,37 +54260,Freak,25625,10368,10 +54261,Shuhei Yamamoto,51581,80863,0 +54262,Dr. Kevin Saunders,19850,14409,0 +54263,Agnes,101998,1177637,8 +54264,Dr. O'Hara,79816,61341,3 +54265,Jędrzej Koniecpolski,68646,7120,2 +54266,,293516,1365383,4 +54267,Walter,39129,21110,2 +54268,Blake,335970,1380009,10 +54269,Alex Eilhauer,72207,73457,2 +54270,Janet Heldon,120932,165080,6 +54271,Tamizh,362150,1123768,2 +54272,Emma,176124,131935,1 +54273,Mary Kom,284288,77234,0 +54274,Wristband,369033,1206155,29 +54275,Camper (uncredited),251227,1128557,28 +54276,,330381,227860,1 +54277,Emir,43464,5401,3 +54278,Chuck Norris,9472,51576,16 +54279,Iris,60125,54645,5 +54280,Frits Mutter Stine,1838,6129,3 +54281,,74481,584324,16 +54282,Dr. Bowdin,257907,1096829,8 +54283,Finsherman,246655,1676049,83 +54284,Cleaman Hayes,12247,71889,8 +54285,Wolfgang,4285,36010,1 +54286,Buck,37813,23791,3 +54287,Carlene,18208,176823,9 +54288,"coreografo del porno night (episodio ""Italian Superman"")",68882,24608,10 +54289,Lyka's BF,22579,1503649,16 +54290,Brandon O'Neil,43931,114600,4 +54291,Plumb Marigold,401164,1632160,0 +54292,Olivier Lopez,382597,1562424,10 +54293,Pyatt,15982,1272,7 +54294,Nicholas,231616,1270035,10 +54295,Jimmy Murphy,62441,20049,0 +54296,Lt. Cmdr. Erik S. Kristensen,193756,8783,6 +54297,,44104,237671,1 +54298,LeBron James,271718,107379,6 +54299,Detective John Felkner,45132,2518,4 +54300,Franca Miller,124013,1202592,2 +54301,Allison Guthrie,44486,36216,3 +54302,Thom,85431,65727,1 +54303,Kevin,240913,105830,12 +54304,Bill Crompton,1938,103069,8 +54305,,104374,1619189,13 +54306,Ted Lowe,377516,26860,6 +54307,Teen boy,354979,1636769,18 +54308,Flash Jensen,17258,2778,2 +54309,Jim Fleming,46368,4520,0 +54310,Roger,66045,84504,8 +54311,,231009,1266167,3 +54312,Peter Etty,13957,76103,5 +54313,Eve,85431,62065,0 +54314,Ruth (as Madeleine Thornton-Sherwood),98864,3639,10 +54315,Giddy (voice),16873,212,6 +54316,Jimi,68387,168475,15 +54317,Anthony,333484,1701515,23 +54318,Dex,186759,1505302,29 +54319,Rauli 'Badding' Somerjoki,35735,149932,0 +54320,Bambie,153,1787,10 +54321,Tom Folliard,42402,40185,5 +54322,Marie-Jo,12513,72590,0 +54323,Kate Morgan,56533,27964,2 +54324,Hindi dub voiceover - Bindu,148265,1811922,9 +54325,Flight Attendant (uncredited),69,1462583,42 +54326,Lao Qiang,309820,1279060,1 +54327,Dr. Thimble,49018,87167,17 +54328,Kathryn,34334,25541,6 +54329,James' Niece #2,199575,1438910,39 +54330,Сан Саныч,71051,1883504,9 +54331,Himself,245909,1281377,0 +54332,Mrs. Jewel Mayhew,10299,13992,6 +54333,Emily,59962,213001,15 +54334,Himself,16800,938999,10 +54335,(voice) (uncredited),8329,1092534,19 +54336,Paul de Cazolles,118536,14362,12 +54337,"Lisette, la caissière du ""Troquet""",44256,5963,3 +54338,Gerry,84336,49735,3 +54339,Comedy Cellar Manager (uncredited),369524,566131,29 +54340,Lorelei,228066,567269,2 +54341,Florence Cathcart,77949,15556,0 +54342,Alexander Goodwin Pierce,27460,97784,3 +54343,Rita Oberoi,19887,930353,1 +54344,Bereco,278935,103667,0 +54345,Cheating Gambler,147829,13558,34 +54346,,334557,1218825,6 +54347,Stacey Hinkhouse,10330,68769,13 +54348,Saul,198277,4239,6 +54349,Angela,35554,120137,10 +54350,Nathan Gardner,8669,3223,1 +54351,Virginia (uncredited),50012,1146,3 +54352,Receptionist Abby,218778,1666044,21 +54353,Hannah,202941,3340,6 +54354,Claudius,24149,91283,0 +54355,Lidia Ivanovna,96724,1639,9 +54356,l'avvocato di Zamboni,43548,119435,19 +54357,,430973,1021417,3 +54358,Connie Wallace,35543,14655,1 +54359,Gail,110146,228704,1 +54360,John,2989,89246,7 +54361,Officer,43833,118452,14 +54362,The Captain (voice),322487,2387,4 +54363,Edith,6575,41091,3 +54364,Kind,91390,58382,15 +54365,Bilal,109424,1266859,11 +54366,Reality Director,344147,1203601,8 +54367,Old Man Samurai (voice),16390,1752,9 +54368,Has-Beens Promo Announcer (voice),11172,1077878,8 +54369,Mrs. Caine,345003,1478274,7 +54370,SS-Soldat 1,613,18936,39 +54371,Mimithos,10604,65842,4 +54372,Ben Jenkins,28421,3371,6 +54373,Gerhard Weiss,167424,1498874,5 +54374,Jim Owens,228028,19975,1 +54375,Kevin,128917,176035,3 +54376,Pancham,160261,85733,3 +54377,Club Goer,77930,1262695,70 +54378,Homem do Isqueiro,373397,560272,13 +54379,Ridley Duchaness,109491,4730,4 +54380,Valerie,18467,1741815,6 +54381,,189472,592475,4 +54382,Intern,153161,1273646,39 +54383,Pam Harris,87343,62054,0 +54384,Stephanie's Party Guest,31993,1216356,26 +54385,Herself,76686,1098637,1 +54386,Jack Fowler/Jack Cole,98250,55725,0 +54387,Concierge,223655,1388078,9 +54388,Anna Trieb,231540,5119,1 +54389,Helen Green,24094,1030701,20 +54390,Havenhurst,157843,1907140,23 +54391,Lioness (voice),10527,64451,40 +54392,"""Cazzillo"" Abbagnano, figlio di Michele",107052,1854451,22 +54393,Duga Data Commander,319092,1890103,6 +54394,Popescu's Secretary,52021,1088212,11 +54395,Herself (Voice Artist),22752,148767,7 +54396,Father,82040,138828,0 +54397,Magistrate,81687,2930,12 +54398,,236737,1104748,12 +54399,Seetha,71041,48958,0 +54400,Dona Elena De Rezende,28293,30159,5 +54401,Desk clerk at second hotel,53403,148033,5 +54402,Crystal,340187,1579542,5 +54403,Ichirohiko (Young) (voice),315465,1054260,8 +54404,Sharon Egan,9785,59241,17 +54405,Alby,47212,785,0 +54406,Gala,31299,66147,8 +54407,Mr. Smith,99909,89727,23 +54408,Nancy Wagner,65891,89808,0 +54409,Justice Tripathi,177358,76789,3 +54410,Officer Dooley,30921,52145,15 +54411,Mrs. Halverson,158015,1186023,10 +54412,Strip Club Girl,28090,1719902,49 +54413,Diogène,11799,1068453,8 +54414,Grover Girl,32657,1507604,44 +54415,Himself (archive footage),318224,8891,6 +54416,Rev. MacGill,121923,195943,7 +54417,Sgt. Zack / Phineas Mitchell (archive footage),262988,89582,5 +54418,Happy Jack Monahan,48202,150942,4 +54419,Haley,38322,51989,8 +54420,Hailey,199887,1221134,7 +54421,Smeden,11328,69012,1 +54422,Leon,45452,57607,0 +54423,Café couple,35656,1668417,19 +54424,Sir Charles Eastlake,245700,121606,26 +54425,Carmon (as Josef Carmon),287483,545787,6 +54426,Samuel (Julieta's father),332872,1530910,9 +54427,Saxman,109610,255377,15 +54428,Helene Flammarion,31993,13992,4 +54429,Brice,229297,184581,2 +54430,Deer Claw / Various Characters,10109,63579,1 +54431,Miguel,19936,76961,1 +54432,Bluebird Bartender,147829,83993,31 +54433,Eddie 'Gonzo' Gilman,75090,132157,1 +54434,Olga,104431,1187257,3 +54435,Club Gal,381015,937793,11 +54436,Nadia's father,102197,93331,8 +54437,Blackie (as Barton McLane),188468,14451,7 +54438,Captain Baron,174645,237172,7 +54439,Lumberjack / Tree Attack Victim,79329,141673,26 +54440,Billy,141145,1114244,2 +54441,Alberto,82481,1127387,20 +54442,Phineas Flynn (voice),71689,188024,6 +54443,Буча,50186,1190694,3 +54444,Kaitlin,38908,1088251,4 +54445,Himself,366696,1753471,6 +54446,Amy Peterson,42187,1488885,3 +54447,Alvin Blake,71996,106806,7 +54448,Goffredo,281968,1345542,2 +54449,,88390,114604,17 +54450,Pop McGuinn,93457,16558,5 +54451,Steve,139571,1557248,10 +54452,Alba Cornelius,23155,555099,9 +54453,Mr Nice,10482,11108,8 +54454,Teddy (as David Nivens),43880,14261,11 +54455,Benny Cruz,361018,1388315,1 +54456,Samantha,25983,78804,0 +54457,Tough Teenager,4982,1232550,49 +54458,Isabella,137683,1568201,12 +54459,Yukio Katsuragi,99188,46624,7 +54460,Julian Parker,12483,1185257,5 +54461,CAt,89492,53684,9 +54462,Casino Waitress,11358,45428,29 +54463,Aaron,250574,1155547,1 +54464,Elena Krause,308174,1185916,40 +54465,David,57816,61613,1 +54466,Pyeong-hwa,214209,1520863,7 +54467,Sir Meyer Isaacson,44099,2092,3 +54468,Jenni,244610,60078,7 +54469,Humble,43923,1232599,11 +54470,Luke,24123,79406,9 +54471,Adam Levine,310602,217371,2 +54472,Rex O'Herlihan,19014,13022,0 +54473,Thad,397717,1415429,21 +54474,Marianna,419522,124623,5 +54475,Danny Bernstein,347328,1120644,1 +54476,News Reporter,332411,1473959,9 +54477,Lloyd Fellowes,26670,3895,1 +54478,,64725,102122,17 +54479,,66187,105350,2 +54480,Donna Davis (as Cobina Wright Jr.),120588,120717,4 +54481,Alice Brock,5638,1204882,1 +54482,Senator Thomas 'Tom' Leighton,49007,158230,12 +54483,Crispian Davison,83899,74133,3 +54484,Sara Deever,97936,18365,0 +54485,Rounder's Mom,52736,40381,21 +54486,Maurizio,131897,225140,0 +54487,the doctor Charles Félix,47561,106179,4 +54488,Nightclub Headwaiter,228647,195086,29 +54489,"Roy Shine (segment 3 ""Voodoo"")",26811,92010,14 +54490,Olsen,43685,549137,5 +54491,Nicki,127901,1109319,2 +54492,David Barrow,293452,76943,1 +54493,Janet (as Lisa Richards),21948,129219,5 +54494,Caroline Donoghue,104528,191507,1 +54495,A Singer,44087,14500,14 +54496,Hilly Kristal,111479,4566,0 +54497,Reporter #1,339994,64373,16 +54498,La femme du bar,31522,14812,4 +54499,Owen Rhys,27112,97243,3 +54500,Herself (narrator),62320,515,0 +54501,Mub (voice),116711,86626,4 +54502,Radio Cop,250332,1550500,60 +54503,Sarah Pocket,121674,1221047,15 +54504,Quarantine Doctor,127585,96594,36 +54505,Felice Orsini,56853,80589,6 +54506,Nurse,18569,1466150,32 +54507,Lightning,64807,1903,2 +54508,Little Bruce,104720,1286625,15 +54509,Mr Ko / Lung Chin Fi [2 Roles],172972,26742,5 +54510,Jor-El,49521,934,5 +54511,,92968,995515,1 +54512,Catherine,5759,45404,3 +54513,David,29345,21479,1 +54514,Army Doctor,150712,121097,8 +54515,Beggar,4497,37589,13 +54516,Abdel,266082,1646379,14 +54517,Mrs. Greer,62694,17755,7 +54518,Carrie,17926,4,1 +54519,Hernan,158870,94432,5 +54520,Sysoev,65142,86755,7 +54521,Mikal Gilmore,125842,1771,0 +54522,Víctor,78705,100138,2 +54523,lo specchio parlante,222517,232884,3 +54524,Ah Kun,219572,1562563,6 +54525,Maho,21959,1073546,4 +54526,Mr. Darling,120672,1053959,2 +54527,Jay Cavendish,223485,113505,1 +54528,Mikael Blomkvist,15472,6283,0 +54529,,185987,1198457,14 +54530,Derek,33134,123540,1 +54531,Sponsor,77534,86636,3 +54532,Himself,63144,1624636,40 +54533,Assessore Turri,43211,100937,5 +54534,Yngve,285181,1012902,21 +54535,Gérard,8276,54281,11 +54536,Aintry,104528,1318386,5 +54537,Older Woman,114377,156660,2 +54538,Christopher Murphy,68163,1202900,3 +54539,Policeman Adam,200727,1428999,23 +54540,Himself,36883,1118721,3 +54541,Steven Francis Howard (as Michael North),29117,103051,5 +54542,Romano,42674,120640,12 +54543,Bill Wong,10753,44922,3 +54544,Uttara,125727,584725,1 +54545,Neville,55563,70783,8 +54546,Dr Takahashi,291351,77155,6 +54547,Woman on Bus 1,338676,1663870,21 +54548,Cheryl,14029,99547,1 +54549,Roy Tomlin,245703,335,0 +54550,Martin,104427,81284,11 +54551,Hugo,129966,149412,3 +54552,Valerio Montelli,257302,44972,2 +54553,John Krasinski,64328,17697,3 +54554,,49522,1256242,22 +54555,Sammy Barnathan,4960,119232,6 +54556,Augustine,107499,143963,3 +54557,Anna Karenina,120831,19549,0 +54558,Dream Girl,316154,1615805,20 +54559,Lifeguard (uncredited),19794,1564490,34 +54560,Thór,350060,1669829,1 +54561,Pobuzhinskiy,83491,929659,8 +54562,Waitress (uncredited),203321,1876179,16 +54563,Scavenger Guard (Jim),294254,78890,16 +54564,Yang Nanyan,36615,225257,1 +54565,Italian Peasant #2 (voice),82703,539,28 +54566,Hotel guest,333354,1645002,11 +54567,Katsuko,14088,1190331,5 +54568,de Longville,64044,97896,7 +54569,Ginecólogo,264729,1439852,15 +54570,Lisetta,57996,1894238,5 +54571,Detective,14589,117036,54 +54572,Beach Kid,54318,1240893,18 +54573,Xavier,76651,11542,4 +54574,Sleepy Mandarin Girl,68721,1735561,61 +54575,Harold Ellsworthy Todd,43903,14969,11 +54576,Sasha,24123,78861,10 +54577,Kim,15830,6121,2 +54578,Mrs. Houser,371181,1178114,12 +54579,State Trooper,8270,54235,33 +54580,Lost Bird,6643,50968,12 +54581,Peace Summit Reporter,127585,29461,49 +54582,Agent Washington,29695,19384,2 +54583,Tzouli Vikou,47110,935646,1 +54584,Jack,362541,1042516,2 +54585,Payte Bodeen,26502,95564,4 +54586,Thug #1,77930,1784631,36 +54587,Clip from 'Hit the Deck' (archive footage),33740,94803,50 +54588,Helen Bethke,86768,96498,5 +54589,"Frank, Orchestra Leader (uncredited)",22752,17759,19 +54590,Reggie,300187,104785,2 +54591,Mrs. Hunter,30996,98185,10 +54592,Finnley,137217,21089,2 +54593,J. Curby Gremlin (voice),49013,1360072,35 +54594,Jocelyn,22371,88706,5 +54595,Freyha,27270,1195776,11 +54596,Elisabeth Carioux,78210,583330,8 +54597,Stefan Walter,394403,1323642,6 +54598,Mrs. Adrienne Schell,78691,94055,12 +54599,Wounded Officer 'Eden',19898,73539,14 +54600,,89445,1667524,6 +54601,Chu Chang-Fen,18741,1169327,5 +54602,Carrie,32226,101707,2 +54603,"Galdan Ceren, the Jungar Sultan",19495,84731,3 +54604,Himself,14923,203286,53 +54605,Stag,44682,52483,6 +54606,George Putnam,8915,1205,1 +54607,Jackie,203264,73830,6 +54608,Raja Bharmal,14073,53377,3 +54609,skřítkové,51902,55734,4 +54610,Customer,218443,59899,6 +54611,Bruno,120457,76339,2 +54612,Wendy Darling,273106,1519540,3 +54613,Janet,84340,204392,8 +54614,Rezeptionistin am Aufnahmeschalter des Krankenhauses,177979,38969,7 +54615,Mai,14164,37492,10 +54616,Nick,61527,1232623,8 +54617,Fortune Teller (uncredited),37581,1016595,8 +54618,'Swede' Swanstrom,147903,1005247,12 +54619,Nizar,12113,43436,6 +54620,,173577,1096822,0 +54621,Newell,16090,34279,7 +54622,Himself,15258,174516,71 +54623,Kiko,39356,122761,21 +54624,Ghost in the Elevator,10389,551614,26 +54625,Haruki Kadokura (Yuri's boss),36243,73139,3 +54626,Brock Pearson (voice),62211,51383,11 +54627,,31018,4139,5 +54628,Tamara,44680,80095,3 +54629,Sergeant (uncredited),16442,34625,85 +54630,"Clara, la cassiera",77000,1849792,11 +54631,Lord Alan Cunningham,42499,29396,0 +54632,Nico Dempster,271185,181081,14 +54633,Reverend Anna Howard Shaw,49007,2207,5 +54634,고종 (King Gojong),41441,4259,4 +54635,Georgie,374618,1554761,7 +54636,Sophie,443319,932425,1 +54637,Marvin,370755,1650158,2 +54638,Servant (uncredited),64725,1019914,22 +54639,Claudia Loza 'La clarines',41298,589792,1 +54640,Captain Matthew Webb,369019,211521,1 +54641,,38099,119645,10 +54642,Emcee,2567,155437,48 +54643,Patsy Cline,42045,4431,0 +54644,Mike,156360,1145709,12 +54645,Second Buff,1278,16353,9 +54646,Thai Nurse 2,10389,551617,30 +54647,Kiriko Endo,39123,71641,8 +54648,Mrs. Srivastav,14159,125204,15 +54649,Corey,347258,1351682,4 +54650,Sir Samuel Hoare,65035,158293,12 +54651,Amanda Farrow,57103,31550,5 +54652,,41121,125528,1 +54653,Ruby,242224,1399369,7 +54654,Chen Zai-Yang,121823,936431,5 +54655,,84774,235422,7 +54656,Major Clinton,104211,8240,6 +54657,Unhappy Couple,245700,229672,51 +54658,Winston,4613,172339,13 +54659,Pig,44303,21292,2 +54660,Jim Hawkins / Black Dog,49418,1561895,2 +54661,Brady Owens,18925,135800,4 +54662,Junior Technician Pinnock,37710,55364,30 +54663,Pat Kroll,41206,7632,3 +54664,"hanu, viinatrokari",442752,1761836,26 +54665,Old Man Crenshaw,31263,150223,4 +54666,Anna,75229,87722,0 +54667,Runaway boy 2,10103,63445,8 +54668,Ethel Monticue,54406,8442,2 +54669,Radio Hostess,353979,98408,10 +54670,Laxman,441881,42802,0 +54671,Antonio,306966,1121031,4 +54672,Kimberly,52736,1116525,6 +54673,,49500,2451,19 +54674,Frankie,9956,60918,8 +54675,Ercole Pappalardo,80374,132190,0 +54676,,99599,1719971,7 +54677,Det. Kesler,445916,29712,1 +54678,Soldier,5753,101280,11 +54679,Padma (as Jayashree Basavra),103012,1211683,1 +54680,Barry,21837,87951,0 +54681,Amy,17927,78430,20 +54682,Fred,21765,945793,11 +54683,Flight Engineer Roy Nakamura,264080,122154,17 +54684,Wedding Guest,209406,1192900,12 +54685,Gossage,66659,1073850,3 +54686,Lauren,92635,995469,6 +54687,Embarassed Mom,258480,1545511,26 +54688,Brigadista,2143,132907,29 +54689,Mandy,42684,128633,10 +54690,Mike Wellington,9890,4690,4 +54691,Archibaldo as a boy (uncredited),37628,1527314,17 +54692,Sultan (voice),343693,35219,2 +54693,Dyrektor Wronacki,369444,1068465,3 +54694,Packy Reed,30034,98503,8 +54695,Patrick,1278,16351,7 +54696,Wendy,39345,5958,4 +54697,Lenora Spence,175998,98963,3 +54698,Sharon,14868,77720,10 +54699,Asakura Ryokitsu,38154,58596,3 +54700,Tommy,105059,1683130,26 +54701,Joan,49391,1220090,17 +54702,Calpurnia,43902,103681,5 +54703,Aysun,13393,142855,4 +54704,,118257,106157,10 +54705,Reporter (uncredited),43522,997751,47 +54706,Hesselschwerd,3478,104082,19 +54707,Jimmy,92393,1031930,2 +54708,Janik's Sentry,177677,1529490,20 +54709,Raphael,204771,1187201,1 +54710,Kendra,365942,17832,2 +54711,Brooks Bailey,27501,97991,6 +54712,Phyl Yaeger,50363,161970,4 +54713,Ältere Stiefschwester,216647,48673,2 +54714,Kitty Hurley,27573,11870,9 +54715,Trish,92393,1031928,0 +54716,Eric,47194,141034,5 +54717,Tabu,436340,1744816,3 +54718,Peggy,49514,999459,13 +54719,Phil,34459,933079,7 +54720,Enrica,23619,235213,9 +54721,Dr. Zim Mzimba,15013,77681,9 +54722,Beth,208869,118544,7 +54723,Georges,8070,53772,2 +54724,Hooverville Cop,921,201811,49 +54725,Herself (archive footage),253337,1788332,20 +54726,Emily,24886,1829620,7 +54727,Pearl Davis,42683,128494,4 +54728,Randolph Hearst,148615,786,4 +54729,Berthier,258384,1367879,12 +54730,Timid Woman,167073,998246,35 +54731,Frankie,245906,1816451,22 +54732,"""Cukier""",425961,1545616,1 +54733,Mate,173914,559809,2 +54734,Stripper 1,242042,1298752,18 +54735,Thumbelina's mother,62670,10739,11 +54736,Major Folly,42242,2222,6 +54737,Party Photographer,14923,1347546,52 +54738,Irina,277396,1331687,3 +54739,Feck,24331,190066,10 +54740,Augie Sinclair,72232,68812,3 +54741,,285685,126105,15 +54742,Street vendor of fish,43685,86852,6 +54743,Cameraman,177902,122978,18 +54744,Berkeley,18467,69899,2 +54745,Nan,332079,106105,4 +54746,Lao Zheng,354128,1501341,5 +54747,Slave Labourer (uncredited),274857,1743566,53 +54748,Molinari,25376,557717,15 +54749,Procópio,119374,590428,8 +54750,Town Resident (uncredited),109491,1682512,38 +54751,Pilar,93858,73756,0 +54752,Blanton,38433,22605,16 +54753,,41967,1517385,4 +54754,Frau Dr. Billerbeck,9803,1542796,24 +54755,ER Doc,365942,1323225,29 +54756,Le général,19548,148306,4 +54757,L'ingegnere Guido Carani,66893,31989,0 +54758,The Frenchman / Leader of the King's Guard,104430,128160,8 +54759,Napthali,24272,140573,12 +54760,Major York,127560,1014587,8 +54761,Daschulla,360284,593202,2 +54762,Ribbon Lady,72984,1764696,11 +54763,The Djinn,12594,36218,0 +54764,Massimo,68063,125701,0 +54765,Welterweight #1,312221,1206146,31 +54766,Mercenary (uncredited),337339,1805200,69 +54767,Don Raja,320910,1064131,8 +54768,Spectator,279096,1386304,25 +54769,Cadet,64674,1119897,4 +54770,George,114155,55469,11 +54771,Cindy Cockburn,17303,212641,5 +54772,Collin Baker (as Daniel Petronijevic),32526,166518,6 +54773,C-3PO,330459,6,11 +54774,,285532,44976,3 +54775,"Ralph, the All-Purpose Animal (voice)",36751,78616,22 +54776,Domenico's Wife,1394,20948,5 +54777,Deputy Jones,242076,129023,9 +54778,Fuzzy,7233,953035,10 +54779,Ranger Lyall,27480,109440,4 +54780,Cesare,315855,56977,0 +54781,,285532,1043944,1 +54782,Girl #1,45013,1818027,37 +54783,Café couple,35656,1668413,18 +54784,Lady Bird Johnson,31018,7427,8 +54785,Mrs Cook,27450,99180,7 +54786,Two-Faced Woman,280092,1323716,18 +54787,Isa,29129,102065,0 +54788,Consul,363841,39659,6 +54789,Dante,82481,128435,36 +54790,Father Soledad,161024,69310,4 +54791,Gio,71866,16857,10 +54792,Bellboy,56558,1322026,50 +54793,Despirit Dean (stage driver),40719,88978,3 +54794,Pregnant Guest,169068,122442,15 +54795,Sanjay,352025,1483386,9 +54796,Tim the Delivery Guy,20825,6067,10 +54797,Ian Hamilton,12407,23458,3 +54798,Firefighter #1,295723,1418260,30 +54799,Carl,52045,145234,2 +54800,Herself,393443,1900339,1 +54801,Bakkal Bahtiyar,452606,77349,3 +54802,Marina,50531,7543,3 +54803,Fisherman,11832,584141,27 +54804,,109587,1050906,21 +54805,Antonio le bouffon,126958,8995,9 +54806,Captain Jim Walsh,264080,59964,11 +54807,New Orleans street photographer,9474,1152827,15 +54808,Dr. Casey,27916,1090170,14 +54809,Female parking lot worker,19482,1334721,15 +54810,Dane,251232,1742814,15 +54811,Silvia,82350,128433,1 +54812,Emma's Mutter,119816,274256,9 +54813,Antoine,77338,146212,14 +54814,Woman at Register,285181,1607018,20 +54815,Ben Burns,7459,6487,10 +54816,Smart Consumer Employee,59962,1581107,31 +54817,Colonel André Muffat,144111,2495,1 +54818,Black man,5899,46454,7 +54819,Judith,29168,131172,2 +54820,,267506,184955,3 +54821,King Matthias,8316,1444112,8 +54822,,19812,4462,19 +54823,Bosco,10710,154727,18 +54824,Murray Cope,51828,213394,9 +54825,Rodney Leigh,116973,32434,5 +54826,Justin,356842,55467,2 +54827,Asu,101752,1028524,3 +54828,The investor,35656,65114,15 +54829,Master Viper (voice),9502,140,4 +54830,Loula,35396,936798,4 +54831,Himself - Special Guest DJ,429792,1235094,2 +54832,GI,296225,1137237,9 +54833,Wolf (voice),72215,1341809,1 +54834,Mac,80720,98825,31 +54835,Taxi,111479,37073,24 +54836,Additional Voices,14830,20903,8 +54837,Tourist,325263,1636506,2 +54838,Tracy Colelli,9541,576173,10 +54839,Marta,9956,60919,9 +54840,Judy,245906,7796,17 +54841,Gus,47540,83362,9 +54842,Gina Mallardi,76200,577831,14 +54843,Levine,125490,1102259,8 +54844,Зиночка,43680,272487,5 +54845,Federal Agent in Baltimore Bank (uncredited),147722,4072,34 +54846,Sakke (Ippen isä),148478,1559606,6 +54847,Nymph III,18392,551511,10 +54848,,11205,97668,21 +54849,Policeman,42476,7139,11 +54850,"Publisher (segment ""Chawan no naka"") (as Ganjirô Nakamura)",30959,96551,64 +54851,,63215,1099657,21 +54852,Hugo,166904,100770,10 +54853,Sarah Undershaft,38770,105800,7 +54854,Joey,189,11477,9 +54855,Communicator (Vancouver Radio),120932,19410,11 +54856,Father,49852,20766,6 +54857,The Woman,105539,63381,5 +54858,IP Ranjan,108726,1412631,6 +54859,Cassandra 'Diggy' Andrews,308639,1253355,1 +54860,Student,365942,970508,15 +54861,Danny,37954,14266,7 +54862,,38099,57609,11 +54863,,109379,90118,4 +54864,Ben,59726,1185475,9 +54865,Yard Sale Attendee,91679,1782578,17 +54866,Tony,42182,127541,3 +54867,Adam,38875,1041345,2 +54868,Alan,108391,88597,4 +54869,Ken,113119,1056325,0 +54870,Inspector Kale,141603,140665,3 +54871,Drukker,298396,1588560,13 +54872,,344560,3294,6 +54873,Audrey Carlton as a Child (uncredited),105548,19967,16 +54874,Seth Hampton,210910,1194700,0 +54875,The Countess,4375,6250,3 +54876,Ada Adams,73772,49812,7 +54877,Terry / Bea Franco,83770,8602,8 +54878,Tiscordi,63178,37193,2 +54879,Angela,261249,87685,4 +54880,Diener Johann Kesselhut,54769,20883,1 +54881,Cilla,43817,4,1 +54882,Auction Clerk,118889,34186,33 +54883,,41970,1134388,2 +54884,Agent Traxler,376292,1481136,8 +54885,Susan Turner,28681,101621,2 +54886,Susan,11321,70304,2 +54887,Eugénie Buffet,45213,1091908,8 +54888,Mourner #2,10918,134900,20 +54889,Mladi Branko,284154,1045424,8 +54890,Pop Popchik,85420,82130,7 +54891,Grace's Friend,22579,1082064,18 +54892,Catherine de Médici,3059,8834,38 +54893,Johannesburg Onlooker,99861,1760872,36 +54894,Snowboarder,206647,1599270,63 +54895,Produce Hawker,44801,111489,10 +54896,Seven,1579,17679,6 +54897,Emma,336811,17022,14 +54898,Julie Winters,167951,106724,2 +54899,Christer Malm,33613,83895,4 +54900,Billy,48281,933542,11 +54901,Gothic Villains,18093,1428990,15 +54902,Gary,14422,182280,7 +54903,Himself,63472,3085,1 +54904,Piano Playing Cabbie,31993,120700,33 +54905,Junko Komura,124597,1080280,3 +54906,Tim Newhouse,70006,88079,9 +54907,,197788,12497,0 +54908,Judy,21955,105067,8 +54909,Medicinska sestra,284154,1312150,6 +54910,Boga,116437,1466289,1 +54911,Catherine Bailey Struthers III,332079,16759,10 +54912,Roosevelt's Secretary,88794,155457,18 +54913,Cláudia,82968,1018912,5 +54914,Mike,206197,1506481,15 +54915,Loren,429200,140355,10 +54916,Asma,266082,1646377,10 +54917,Party Guest,128669,95734,27 +54918,Peniel,50126,1328755,11 +54919,Friend,160324,93713,4 +54920,Le cardiologue,18955,16927,11 +54921,Elton,32067,6575,3 +54922,Dick Morrell,91419,30844,8 +54923,Waiter (uncredited),188468,30530,20 +54924,Len,270654,2299,0 +54925,Elderly Slave,3115,97204,8 +54926,Ahmad,60488,5464,4 +54927,Sheep,25694,8829,20 +54928,Radio Producer,209764,1313733,7 +54929,Don Mimi,363757,25819,3 +54930,Zidler,10910,26673,9 +54931,Doctor at Duel (uncredited),1976,119542,38 +54932,Grim Knight Dancer,243683,1398113,56 +54933,Barney Ross,76163,16483,0 +54934,Mrs. Deventer,22387,78791,10 +54935,Pollen,14565,2224,1 +54936,Jen,15022,1227947,11 +54937,Bulma,126963,122193,13 +54938,Onlooker at Debate,43806,1422389,49 +54939,Pietro il Falco,267557,47827,1 +54940,Grandfather,77381,120481,4 +54941,(voice),126319,86655,26 +54942,pasák vepřů,84030,549127,12 +54943,Erika,54524,56699,2 +54944,Satin,66812,1678842,15 +54945,Madame Pink (voice),217057,1394770,13 +54946,Tomek,32764,61471,2 +54947,Ray,22494,40477,0 +54948,Medea,12171,1223059,4 +54949,Brinchet,60106,53202,2 +54950,Veronica,84184,1121635,13 +54951,Guy Maddin,13241,117051,3 +54952,Layla,182097,204376,1 +54953,,336669,1484660,2 +54954,Laurie Holden,38920,12536,0 +54955,Countess Dracula,107596,1647148,23 +54956,Salvatore Buonarte (as James Belushi),2611,26485,7 +54957,1st Caller,44012,130033,2 +54958,Vic,2061,21192,2 +54959,Nagamani Reddy,49028,141695,6 +54960,Cmdr. Boyle,170936,52176,5 +54961,Kayla,226140,27775,2 +54962,Henchman with Eye Patch,138308,217750,9 +54963,David Cohen,10362,1758886,15 +54964,Rothaariger Knecht,266568,3874,8 +54965,The Academy Teacher (voice),309809,13242,8 +54966,Naoetsu Guard 1,227306,1394433,34 +54967,Bootsführer,269258,1255214,20 +54968,Laura Ridgeway,168031,85848,0 +54969,Goro Fujikawa,376538,133512,0 +54970,Tea lady,16171,79883,33 +54971,Dad,241742,97600,2 +54972,Russian Mobster,38322,1502281,53 +54973,The Real Chang,193893,1381726,71 +54974,Lazlo Kovacs,2786,38899,19 +54975,Katie,336011,1105441,3 +54976,Narrator,215741,1200393,1 +54977,Fang,147590,44917,1 +54978,Larry,31265,164791,5 +54979,Vi,92309,88161,6 +54980,Brigadier Rousseau,37710,40939,14 +54981,Anja,86980,934151,1 +54982,Peter Ames,43855,4958,1 +54983,Inspector Carter,28847,29433,9 +54984,Moglie Malgradi,356296,128224,15 +54985,Prisoner,213681,1183430,26 +54986,Field Hand / Drag Strip Attendee / Shot Gun Shack Attendee (uncredited),339419,1650221,64 +54987,Carl,27886,136028,7 +54988,Tuyauta-shi,18148,1453073,20 +54989,Logan,218778,1194140,24 +54990,Ricky Verona,15092,20191,5 +54991,Arlene Aldrich,18495,4003,3 +54992,Millard Cunard,44801,151327,4 +54993,Seth,248268,87438,2 +54994,Pete,56725,33321,4 +54995,Marcus,67748,1172833,10 +54996,WPC Elizabeth Falls,55846,118034,3 +54997,Hauptmann Kranz,45398,133122,7 +54998,Ultraman (voice),30061,4753,7 +54999,Sue-Ann,70695,63,2 +55000,Tetsuya,36917,1112526,1 +55001,Kim,91070,78080,0 +55002,Kari Mairisaari,413430,1079292,1 +55003,Black Market Nigerian,53358,147965,1 +55004,,38010,1517395,14 +55005,Man in Weeds,354133,1496061,1 +55006,Tony Brill,72823,55821,1 +55007,'Flash' Farrell,16661,9095,6 +55008,Maura,44223,39658,0 +55009,Bonfire Extra,28363,97824,12 +55010,Attendant,119801,50835,9 +55011,Tarik,125623,1878929,15 +55012,Roger Crowther,5638,44551,4 +55013,Johann Barnekow,368342,1339195,9 +55014,Judge (uncredited),25736,81182,8 +55015,Countess,7548,12513,6 +55016,"Heikichi, 3rd son",219233,33734,5 +55017,Dog Owner,48118,1353501,13 +55018,Harris,351901,42711,5 +55019,Leonard,47410,138876,18 +55020,Dr Salma Ali,38022,88812,5 +55021,Missy,9793,59296,8 +55022,Arthur Letts,102222,64856,10 +55023,Soul Nafisa,72710,1273234,14 +55024,Frank Heffley,60307,18324,4 +55025,Dolores,15616,1444938,14 +55026,Manuel Kaminski,277968,2244,2 +55027,Uncle Long Gun,18747,1193837,19 +55028,Eunice Doolittle,18569,940134,50 +55029,Amelfa Timoferevna - Buslai's Mother,10235,1089251,7 +55030,Ritter Robert von Greim,613,38608,28 +55031,Gioielliera,379873,1879767,26 +55032,Mr. Dorrit,47084,14011,2 +55033,Karlen,191536,1172054,2 +55034,Müller,78694,71456,5 +55035,Miss Gibson,126927,940412,6 +55036,D.A.-prosecutor at inquest,30014,96137,8 +55037,Himself,173465,1266246,8 +55038,Male Cab Driver,9914,60422,16 +55039,Gabby (Voice),68179,63522,9 +55040,Turk,169656,1726740,9 +55041,Álex,201765,1183860,3 +55042,Clacker,285,1123,28 +55043,Jessica Harris,87343,190895,3 +55044,Insp. Clousseau,6081,12446,0 +55045,"Suitor, the Fake Count",50775,13848,0 +55046,Police Inspector Durendra Bhatavdekar,54256,52265,4 +55047,Berkeley's Butler (uncredited),174925,13560,22 +55048,Bachelor Party Guest,214756,1759621,64 +55049,Punk,341689,1879846,17 +55050,Jim,33253,1098343,3 +55051,Joana Massissa,267219,59134,1 +55052,,47046,1601529,5 +55053,Himself,355984,1214063,2 +55054,Jay Cleary,169068,101017,4 +55055,Ospite agriturismo,325690,1880343,15 +55056,Lela,341559,1496482,11 +55057,Cute waitress,242033,1277016,6 +55058,Soldier,65787,32494,11 +55059,Citizen / Dead Citizen (uncredited),44943,1037370,46 +55060,Fungus Maximus,13285,74367,2 +55061,Michael de Ruiter,423988,43646,5 +55062,Father of the Bride of Cana / Warden,3059,89187,32 +55063,Ip Man,182127,66717,0 +55064,Nurse Maryanne,65650,53651,9 +55065,Haktan,332534,1258397,4 +55066,Ava Gardner,2567,3967,2 +55067,Eve Ravenscourt,47312,80255,7 +55068,Victoria,290316,1360307,0 +55069,Wanker Banker,306952,1511995,56 +55070,Toy Seller,98125,590519,14 +55071,Gezora/Ganimes,38221,235722,15 +55072,Bavarian,46943,1032529,10 +55073,Surfer Girl,10425,65123,7 +55074,Li Lizhong,78450,545292,3 +55075,The Floe's Girl,58467,100539,28 +55076,Deputato PD,110447,1640896,14 +55077,Sheila,106618,67026,1 +55078,Blueprint Dancer,243683,1398179,78 +55079,Jennifer's Mother,16080,117492,9 +55080,Army Officer,56154,131003,48 +55081,Gaspar LeMarque,163,3926,20 +55082,Terri,4365,37601,9 +55083,Maria Rosa,38285,120017,3 +55084,Zeppo,13911,30014,3 +55085,Announcing Guard,52520,118459,15 +55086,Paul,385750,123515,1 +55087,Carl Cooper,407448,1115984,3 +55088,Estate Agent,225285,997569,6 +55089,Henry Turner,11364,3,0 +55090,Orderly (uncredited),16442,127517,44 +55091,Aladdin,60488,4119,8 +55092,George,374614,152831,2 +55093,Miguel Santamaria,77165,85982,3 +55094,Panzerkommandant,613,10246,35 +55095,Rueben Markel,6163,33051,9 +55096,Inspector Martin Ferris,28663,46711,2 +55097,Kungfu teacher,41380,119446,8 +55098,Justiina,120280,232311,2 +55099,Pasha Diatlov,65142,86663,4 +55100,Nigel,111960,97423,3 +55101,Rick Erwin,69535,5920,5 +55102,Male Teacher,8457,11659,29 +55103,Antoninus,105210,1037690,4 +55104,Archer,343173,15336,0 +55105,Jenkins,259975,123722,13 +55106,Lynn Higgins,377516,74440,4 +55107,Manuel,38328,59269,3 +55108,Nevena Moreno,148034,1142266,14 +55109,Roddy,203321,956764,2 +55110,Neela (uncredited / archive),168259,116277,46 +55111,Himself,15258,37438,86 +55112,Vivi,17780,82361,5 +55113,Jack Brown,126841,1361010,1 +55114,Thomas,58384,144309,5 +55115,Ali,54155,1012108,4 +55116,Gov. Gaspar d'Annard,43894,9067,2 +55117,Dr. Giles Freeman,181876,41958,3 +55118,Pellegnillot (voice),13798,1150009,5 +55119,John Belushi,212934,51383,4 +55120,Carolyn Schneider,103850,10191,2 +55121,Barbool's Wife,71725,110989,2 +55122,Will Shepard,98644,11107,0 +55123,Dr. Roy Flemming,360626,56442,2 +55124,Barack Obama,310888,1349720,0 +55125,Leader of the Troop,52520,60721,10 +55126,Yasusue Narita,209032,85939,14 +55127,Scribe,61225,1500211,32 +55128,Bernadette,27012,14108,3 +55129,Rockie,20304,8396,7 +55130,Rufus 3000 (voice),51786,2391,6 +55131,Harper James,356500,1034681,0 +55132,Don Dogarty,2977,1368268,16 +55133,Doorman,24363,1044,12 +55134,Alba,59040,1862498,10 +55135,Ralph Burchard,27629,29579,9 +55136,Ruby,390587,1267122,3 +55137,Red Circle Club Goer (uncredited),245891,1584908,30 +55138,Kleel,70500,11163,2 +55139,Alan,26142,40258,11 +55140,Sexy Girl (uncredited),354979,1636765,72 +55141,Franklin,71859,4764,0 +55142,Millie Parker,30054,78775,6 +55143,Inspector de Groote,45335,5795,8 +55144,Scratch,59744,188363,3 +55145,Man with Motorbike,51357,89609,5 +55146,JD Riplock,15022,52648,12 +55147,Miguel,29338,103520,1 +55148,Kin Aoyama aka Lily Carmen,125264,213504,0 +55149,Bruho,216521,57387,1 +55150,Salmon P. Chase,161187,21882,6 +55151,Ice Cream,20342,1630649,9 +55152,Himself,206657,97799,5 +55153,Chaitanya,253533,237254,1 +55154,Cashier,25126,93210,5 +55155,,81616,1637256,13 +55156,Charlene,333367,76465,7 +55157,Phil Bartlett,250332,144127,15 +55158,Ting Chan Yen,18758,130394,1 +55159,Oiwa,68715,108018,1 +55160,Andrei,18214,15111,1 +55161,Lynda Hammond,18774,1857920,13 +55162,Jonas' Father,227156,28846,4 +55163,Colonel Nielson,140470,33278,2 +55164,Ensign Dennis Higgins,118444,33722,5 +55165,Kitty Kroonenberg,16177,107203,0 +55166,Luke Lewenden,75174,18473,6 +55167,Club Goer,77930,1754141,50 +55168,Pøbel,382125,1678087,14 +55169,McGaughlin,290999,1361559,9 +55170,Master Li Chun-Hai,62762,545286,4 +55171,Geneviève,26566,31383,4 +55172,Ola Sellberg,21041,92422,5 +55173,Sakunosuke Higuchi,20527,72495,4 +55174,USS Carter Sub Tech #1,52454,225900,17 +55175,Marcello Mariani,242240,18340,1 +55176,Milo,115276,31960,4 +55177,,278475,145284,4 +55178,Yvette,87936,102362,7 +55179,Helen Farmer,14047,1344365,8 +55180,Pechkin the Postman (voice),77762,47430,4 +55181,Operations Assistant (uncredited),30637,9906,15 +55182,Bridget Turner,339408,154224,9 +55183,Enzino,49850,556729,12 +55184,Caring Mom,345915,1010349,28 +55185,Fred,64414,35003,2 +55186,Extremis Soldier,68721,1454104,100 +55187,Mia,38322,73890,10 +55188,Waiter,222935,171946,19 +55189,Customer,218443,83831,8 +55190,Imma Puig,1896,19821,7 +55191,Jo,51481,130567,4 +55192,alte Dame 1,75969,1643988,43 +55193,Deputy Ferris,14435,966102,8 +55194,Coloz,57993,10542,8 +55195,Walter,288313,1192850,8 +55196,Clergyman,245700,1593229,40 +55197,Carter McMullen,71670,65561,0 +55198,Jimmy,366631,1572218,6 +55199,Gloria Collinson,19665,123311,26 +55200,,227552,184296,12 +55201,Airman,333352,1478709,18 +55202,Harry's Friend,23512,73358,10 +55203,,337012,1458057,11 +55204,Batgirl (voice),396330,91351,1 +55205,,229559,1193593,4 +55206,Soldat,2734,27663,41 +55207,Hotel Assistant Manager,127812,89099,19 +55208,Scott,37534,107404,14 +55209,Chiharu Tanaka,37213,117065,3 +55210,David,360592,87440,2 +55211,Susan Dailey,47540,17836,3 +55212,Sheela,379019,1469678,9 +55213,Felix Periton,29577,37143,4 +55214,Train Barman,206647,1599275,69 +55215,Belle at Ice Cream Festival,191068,8828,8 +55216,,117212,1200240,9 +55217,Morroccan Citizen (uncredited),331313,1767221,51 +55218,Jimmy O'Brien,127564,6725,4 +55219,Simon Avron,76714,29675,8 +55220,Inglewood Pedestrian,15092,78890,43 +55221,Man at Preston's Table,444193,8295,10 +55222,Sinbad,54415,125787,4 +55223,(voice),71771,561927,0 +55224,Christopher Isherwood,83119,14729,1 +55225,Ezra Crumm,43473,1433913,5 +55226,Weber's mother,87514,95787,16 +55227,Dr. Barbara Glaser,42251,104410,2 +55228,Rajeev,158780,585404,4 +55229,12 Year Old Ronnie,14923,1386345,16 +55230,Wynn Scott,16082,5589,6 +55231,Col. Santilla,68247,15765,3 +55232,Dr. Carl Haller,131351,32289,6 +55233,Chilean President (uncredited),209112,1031686,141 +55234,Wray,24411,58794,8 +55235,María,87229,79819,6 +55236,Michael,58414,21914,4 +55237,Craggs,228074,114837,9 +55238,Cop,168259,1448173,44 +55239,Sam,14527,34915,1 +55240,Graciela Cabral,16432,19998,9 +55241,SC019 Police Officer,206647,30446,22 +55242,,49943,932932,9 +55243,Lotta,40785,114189,1 +55244,Angelo Allieghieri,13437,5401,2 +55245,Detective Taggart,29829,14451,1 +55246,Jocko,33642,1167391,5 +55247,Sergeant Norris,40387,1605862,6 +55248,Al Gore (voice),7249,19013,1 +55249,Alice,262958,1401533,12 +55250,Guitar Player,85350,1467977,56 +55251,Dean,352960,40863,1 +55252,Alan Frazer Scrope,62143,47394,13 +55253,Maike,80125,17547,8 +55254,Warren,1991,138,9 +55255,Israel Hands,83191,6969,9 +55256,Master Zhuang's wife,46124,1134748,6 +55257,Alice,2204,22611,1 +55258,Mrs. Hinkle,106635,85957,12 +55259,Catherine Tarr,52395,58414,4 +55260,Tracy,347630,443219,27 +55261,Themselves,62143,1643487,37 +55262,Vic Stevens,9890,19978,18 +55263,Himself,14108,1663236,3 +55264,"Leo von Holzen, father",14804,143022,3 +55265,Huge Doorman,2080,1091387,42 +55266,Arno,368342,53870,11 +55267,Anil Bansal,81551,35742,3 +55268,Bay News 9 Newscaster,7220,1837898,18 +55269,Phyllis,44690,127396,9 +55270,Is,4641,31838,1 +55271,John,43093,75781,2 +55272,Commander O'Keefe,262958,31713,4 +55273,,77185,558009,2 +55274,alte Dame,277968,1898499,29 +55275,Mrs. Shavelson,92269,27263,14 +55276,Harry,58887,228617,0 +55277,Bates,153162,101490,13 +55278,Zeiram,56191,112278,1 +55279,Khabi,280030,1354411,1 +55280,Click Wiley,188468,3155,1 +55281,Detective Deedee Bowen,95807,61829,2 +55282,Dorothy Knudson,98289,90644,6 +55283,Finley,13652,12983,13 +55284,Yonki del Canal,98582,1103797,12 +55285,Sasami,34935,110667,2 +55286,Garth,414610,1357535,4 +55287,Wade,10066,49623,3 +55288,Older Donald,339419,1650218,23 +55289,Phil,205724,80595,2 +55290,Mr. Arthur Drubbs,90932,30234,7 +55291,Ines Corallo,44741,53000,6 +55292,Cheryl,228970,368,0 +55293,Miss Shepherd,328589,10978,0 +55294,Faith Morgan,80168,122974,2 +55295,Thrax (voice),15359,558249,14 +55296,Telephone Operator,26376,1438585,69 +55297,Le médecin,52713,262459,5 +55298,Emma,452142,1179775,9 +55299,Punk Rock Kid,394822,1875172,9 +55300,Bathing Beauty,43812,1673800,23 +55301,Headmistress,61950,14061,0 +55302,Fein,17745,16523,17 +55303,Kyle,310888,1396624,9 +55304,Kidnapped Bat Girl,31258,182293,9 +55305,Sonam,8341,54618,5 +55306,Cunny Charlie,174751,1505457,8 +55307,Alex,64357,38864,8 +55308,Paul Worden,85483,7333,1 +55309,Dr. Daniel Hirsh,45938,29903,0 +55310,Bar Patron (uncredited),354979,1593406,68 +55311,Dena,277355,130024,3 +55312,Hard Case,30708,265723,17 +55313,Johanna von Ingelheim,9503,22687,1 +55314,Corporal Marshall,15664,52939,4 +55315,Leif,199374,40419,1 +55316,Himself,35428,82795,13 +55317,Flash,460135,20903,12 +55318,Naoko Satomi (voice),149870,227612,3 +55319,The Red Skull (voice),284274,89966,8 +55320,Stefania Silipo,142320,1069211,32 +55321,Carl,55563,222628,11 +55322,Tony,32904,109833,0 +55323,Uncle Cor,154972,211288,5 +55324,Dorothy Richards,43711,68384,3 +55325,Hippolyte,161620,50970,4 +55326,Zombie,246741,1780285,44 +55327,Boner,112973,166945,1 +55328,Music Store Clerk,339403,1635155,39 +55329,Train conductor,332872,952,21 +55330,Le lieutenant Delappe,309929,1156878,6 +55331,Amy,73943,18658,1 +55332,Groupie #2,14301,1130787,12 +55333,Baba Thakur,118809,1145697,10 +55334,Barabbas,199463,543540,1 +55335,Himself,352208,17087,1 +55336,Mr. Brooks,270221,99539,2 +55337,Captain Hallett,413669,30496,8 +55338,Mary Collins,262522,123972,7 +55339,Oraz,19495,58319,2 +55340,,308174,1394318,32 +55341,Party Singer,1481,1844335,26 +55342,"Marianne, Sitas Mutter",167424,1525762,7 +55343,Beer Guy,10070,52860,3 +55344,Ivul Gurk,16171,79867,15 +55345,Yard Sale Attendee,91679,1782573,12 +55346,Alto prelato,43648,131662,11 +55347,Mary Harron,111479,999605,26 +55348,Young Frank,45132,1110284,13 +55349,Garret's Gang #1,8382,86602,10 +55350,Morris (voice),411221,1455201,14 +55351,Diana Montini,167073,1092908,10 +55352,Hank Fowler,339408,1122102,13 +55353,Tough Detective,290764,205761,14 +55354,L'homme qui essaie de dormir,104462,11523,0 +55355,Jimmy Kilgannon,59231,3085,0 +55356,Private 'Grandpa' Summerill,91961,140112,3 +55357,Gleb,62732,230719,3 +55358,Wonder Woman (voice),396330,15761,8 +55359,Ernie Stein,20107,3905,1 +55360,,375742,1564286,15 +55361,Diary Reading Patient,10330,23967,26 +55362,,143876,302065,2 +55363,Li Yinqiao,25626,109434,26 +55364,Clip from 'Idiot's Delight' (archive footage),33740,1188146,45 +55365,Harry,114931,1351922,7 +55366,Komendant z Węgrowa,382155,1636691,22 +55367,Jong-Sae's Wife,26955,96660,6 +55368,Mario Bellini,263873,3490,1 +55369,Pegah,1912,35533,1 +55370,The King,3144,30751,1 +55371,Herself,64683,1427719,1 +55372,Casey Marsh,142402,1117076,9 +55373,Mrs. Murphy,59965,1432982,17 +55374,Dr. Schooner,47057,10730,1 +55375,Mailroom Employee,51036,1879469,21 +55376,Cody,345922,1347587,29 +55377,Madeleine,354979,1538781,16 +55378,Detective Choi,4550,1299277,12 +55379,Detective Honma,12622,555194,11 +55380,Thomas,11046,16271,7 +55381,Himself,140554,1120269,24 +55382,Motorcycle Policeman (uncredited),47882,1270997,19 +55383,Grandma Keenan,156700,1842175,10 +55384,Angus,18283,164783,10 +55385,Cheech,53654,107068,10 +55386,Sheena,426230,212766,14 +55387,Abe (voice),190250,1075144,0 +55388,Presenter,22618,574833,11 +55389,Eddie's Wife,1259,1254650,22 +55390,Charlie Chisholm Dalrymple,18283,1324198,8 +55391,Cosima,84056,87679,5 +55392,"Martin, Wittol's Henchman",61430,45525,12 +55393,Marie-Madeleine Bonsecours,22618,949423,12 +55394,Chris de Graaf,154972,1367205,3 +55395,Carmela,97794,1014965,0 +55396,Julie,336004,109109,9 +55397,Ann Looking Deer,177043,141993,7 +55398,Major McMahon,353326,2449,6 +55399,Frédérique Gagnon,190876,145457,4 +55400,Jason,4964,41088,4 +55401,Moira MacTaggert,246655,9827,5 +55402,Pilot #1 - Lt. Jean Hendricks,59197,583111,9 +55403,Tim,271039,1328185,3 +55404,Hydrant Fireman (voice),142061,34934,16 +55405,Mère Supérieure,16147,79622,18 +55406,"Jenny Beckerman, Highschool Mate",20473,119233,6 +55407,Varsha,303966,548827,3 +55408,Lois Blair,41496,2207,5 +55409,Nachbar,308174,1191627,15 +55410,D.A. Pat Clives,199373,29685,10 +55411,Kelly Cooper,218778,9278,1 +55412,,42430,553569,3 +55413,Legs,101998,1177621,0 +55414,Jeanne,86391,6352,3 +55415,Funeral Attendent,379959,1604097,10 +55416,Tom,6023,68763,11 +55417,Manicurist,91679,1782583,22 +55418,Nadia,42250,158221,3 +55419,Pablo Sandoval,25376,93650,4 +55420,Seu Jerônimo,37817,559713,3 +55421,Gina,13358,226,8 +55422,Trampoline Sister,26688,96017,6 +55423,Polly,63340,2575,9 +55424,La comtesse de Mendoze,2002,20575,11 +55425,Nurse,29290,141096,15 +55426,George,151043,90083,12 +55427,High School Teacher,218778,1498201,22 +55428,Scissionista,8882,72781,14 +55429,Cathy,16151,79708,20 +55430,Himself,191502,89564,14 +55431,Thaniel,358895,1720855,22 +55432,Darwin McCausland,70772,154509,15 +55433,Harriot Blatch,49007,452,3 +55434,Thomas Trundle,34672,13473,24 +55435,Socialkvinnan / The Social Services Woman,158900,16776,2 +55436,Communications Operator #4,329865,1646458,45 +55437,Herod Antipas,235260,1698790,26 +55438,Male Party Guest,258480,1545507,22 +55439,Ardavan,266102,586000,3 +55440,Psychiatre,7229,18177,6 +55441,Big Papa,145220,11477,11 +55442,Whitey,72096,1139748,32 +55443,Courtroom Spectator (uncredited),70368,1273780,9 +55444,Doctor,44716,4459,11 +55445,Jesse,18586,350,13 +55446,Faucet,28448,58296,15 +55447,Jongen op voetbalveld,159514,1064512,13 +55448,Tommy,80316,589228,8 +55449,Party Guest,244534,566261,13 +55450,Nun,16135,79518,23 +55451,Carpetbagger #1 in Montage,183825,175427,27 +55452,Hero's Park Tourist,209112,1691986,72 +55453,Solal,329805,16269,3 +55454,Himself,287603,1214063,1 +55455,Itami,18722,553449,49 +55456,German,25142,587623,4 +55457,Scout,310135,1501942,8 +55458,Lulu,39415,1625137,13 +55459,Gavin,87293,1096595,6 +55460,Antoine Castang,61991,39179,6 +55461,,61217,228149,27 +55462,General Kenneth Varantoom / Resort Announcer,343173,1405317,9 +55463,Bilal Al Bezaaz,125623,1160314,8 +55464,Ruth Tolson,14047,77279,6 +55465,Lola,438634,26271,4 +55466,Yôko,21769,1221862,2 +55467,Zeus,32657,48,4 +55468,General,118283,5737,12 +55469,Hu Bayi,364324,993943,3 +55470,Filli,64961,12776,0 +55471,Stephanie,345922,997303,34 +55472,Oberst Clausen,613,1104776,42 +55473,Swimming team (Perth's friends),292625,1758601,13 +55474,Djinn Victim,12594,1443849,24 +55475,Pekka Puupää,156917,232309,0 +55476,Daughter,104062,79817,1 +55477,Jim Ackland,65777,11859,0 +55478,Thompson's Secretary,1819,19280,10 +55479,Thierry,10268,64543,9 +55480,Capt. Sessions,324670,94864,2 +55481,une adoratrice,74878,317535,6 +55482,"Otto, the elevator operator",37719,120443,13 +55483,Herself,310593,95712,20 +55484,Officer (uncredited),95169,4165,13 +55485,Alice,31165,107728,6 +55486,Soldier,58076,4353,8 +55487,Der Postbote,131366,13905,1 +55488,Dave Hirsh,38724,4347,0 +55489,Thief in 'A Thief's Fate' (uncredited),22943,99375,46 +55490,Fisherman,381073,33835,9 +55491,Billy 'The Kid' McDonnen,64807,380,0 +55492,Umberto Mormile,235208,105868,1 +55493,Lehrer,233639,18936,11 +55494,Joe Ryan,40804,16898,0 +55495,Winona,20210,141518,7 +55496,Hortense,53576,120442,3 +55497,Mandarin Guard,68721,1735559,58 +55498,Sigrid Radke,68752,49104,7 +55499,Philip,44389,5656,1 +55500,Barney / Katie Cavanaugh,59738,80135,3 +55501,Darla (uncredited),302699,55536,10 +55502,Makunga (voice),10527,7447,7 +55503,Victory Party Guest,397422,1457224,28 +55504,Town chief's bodyguard,64316,131955,18 +55505,Joe Bonner,188468,85897,9 +55506,Himself,36432,115345,0 +55507,Cpl. Fenwick 'Wickie' Lonkowski,61151,41214,4 +55508,Interviewee,17654,1086506,12 +55509,Andrew Merry-Lees,80368,25532,8 +55510,Maddalena,228290,1859696,10 +55511,English Eddie,127812,1013178,36 +55512,Komitas,354859,1802425,24 +55513,Moryc Welt,511,7108,1 +55514,Ryan Evans,10947,67601,3 +55515,Stan / Alf Laurel,46026,89670,0 +55516,"Ume, daughter",219233,76976,3 +55517,Motel Clerk,38783,140295,8 +55518,Sgt. Wilson,26503,52063,3 +55519,Baron de Berghman,27003,80236,6 +55520,Commencement Speaker,242631,30115,14 +55521,High Priestess Thar,9795,6588,2 +55522,Minister (uncredited),80771,1022678,17 +55523,Candi the Receptionist,351065,1667161,17 +55524,Shakir,46341,135927,3 +55525,Poison Ivy (voice),396330,81663,14 +55526,Captain Englehorn,43149,3245,2 +55527,Deutschlehrer,379019,1309014,12 +55528,Pauline 'Roger' Rogers,381073,75318,5 +55529,Dr. Simmons,222935,152902,9 +55530,Madhi,357706,1504436,1 +55531,Boris,42678,121333,8 +55532,El coronel,120129,90263,0 +55533,William Geld,2577,504,0 +55534,Hannah,74505,69399,2 +55535,Elena,98582,224728,4 +55536,Packett,18671,85988,2 +55537,Abbas,218688,5850,2 +55538,Jerry,428687,1296595,9 +55539,Tacey King,76211,70035,2 +55540,Jess,405473,1541155,2 +55541,Taaniel Tina,70122,137734,1 +55542,Ramses,211139,49898,4 +55543,Larry the Cucumber / Scallion #2 / Igor (voice) (as Michael Nawrocki),268893,78298,3 +55544,Fong,13486,67212,4 +55545,Kat Holden,362844,54819,2 +55546,Sami,35025,82926,3 +55547,Susan Stern,13519,99914,13 +55548,Blue-Collar Worker,82684,928579,11 +55549,Peter Connor,45693,18352,1 +55550,Messaoud / Michou,14650,96044,3 +55551,Krajevo,8316,8801,12 +55552,Kazuyuki Sawaki,36063,4994,10 +55553,,393939,1428460,2 +55554,Bald Producer,237584,1219502,10 +55555,Abby,137321,1648751,25 +55556,Artoff,936,14266,8 +55557,McKinney,22029,133585,2 +55558,Dan Fisk,210910,1194704,9 +55559,Zhang Yi,362154,1562565,7 +55560,Sylvia's Boss,122271,1641116,8 +55561,Jerom,56344,116037,4 +55562,,11391,1098498,19 +55563,Laura Kline,167556,160580,1 +55564,Detective Fleur Scozzari,402582,10871,2 +55565,Ernest Ironplume,51049,57448,3 +55566,Dion O'Leary,78734,10922,0 +55567,Ashton Pelham-Martyn,101185,29068,0 +55568,Vittorio Corsini,39992,105341,3 +55569,Charlotte Orr aka Charlie,59838,2640,4 +55570,Gen. Hofmann,10841,10459,12 +55571,Bunyip (voice),360924,1737939,6 +55572,Anna Bathory,8316,49018,15 +55573,,44716,1186,23 +55574,Capt. Tanaka,39519,99849,6 +55575,Emilia Hukkanen,408203,1656802,6 +55576,John Kane,121923,16897,0 +55577,,17935,238487,4 +55578,Anna Liszt,129553,139612,7 +55579,Matsuko - Shiitake's wife,87296,7456,13 +55580,Claire,72847,13978,7 +55581,Jose de La Cruz,331962,1100144,7 +55582,Mogutu,254869,1352999,53 +55583,Bruce,19398,1469191,21 +55584,Manager,84305,60884,10 +55585,Hope,17100,32290,1 +55586,Darcy,333371,1413361,7 +55587,Baby Alex (voice),10527,1077795,16 +55588,Edith Martin,194722,21657,0 +55589,Mr. Poole,34651,103176,10 +55590,Simon Bowler,45324,209537,14 +55591,Chris 'Wheels' Locke,83125,1063229,7 +55592,Detective Quinn,14589,34294,44 +55593,Erling,21282,1024856,6 +55594,Richard Cartigan,333385,56675,4 +55595,Pyrotechniker,269258,1292570,26 +55596,,1838,1441401,25 +55597,Marshall,54662,37204,2 +55598,Crooked Arrow,106135,1023455,5 +55599,Vietnamese Woman,2080,43297,56 +55600,Himself,95756,31655,2 +55601,Survivor,17657,1213156,14 +55602,,276401,971329,4 +55603,Nellie Brie (voice),27653,1052214,4 +55604,Joe,8429,54930,1 +55605,Gabriel's Father,39240,24516,3 +55606,Himself,417870,1403148,18 +55607,Kazou,209032,1024891,11 +55608,Wai,67342,239010,7 +55609,Friend in the group (uncredited),68822,28262,33 +55610,Alicia,139519,36594,1 +55611,Willem van den Berg,34092,27831,3 +55612,Galen,103731,335,6 +55613,Flatnose,2309,25441,11 +55614,Micha,2241,16811,0 +55615,Herself,393367,1660176,3 +55616,Alyson Simon,296626,56824,0 +55617,Henchman,331313,1517833,31 +55618,,11643,12776,14 +55619,,49522,110367,18 +55620,,73545,237286,2 +55621,Gillis,172520,209087,8 +55622,Club Goer,2001,26290,89 +55623,Rober,115665,3810,0 +55624,Ronald - Karaoke Singer,117942,1196255,17 +55625,Gynecologist,159667,1177323,13 +55626,Mrs. Vitali,13802,271458,3 +55627,Charlotte 'Charlie' Brooks,374461,52018,1 +55628,Rosa,100270,33409,2 +55629,Amedeo Ferretti,162382,45982,1 +55630,Darren Sloan,362844,107401,5 +55631,Naco Saloon Girl,86472,1127109,10 +55632,Takao Matsutani,148371,82971,3 +55633,Gabriel,137321,168877,12 +55634,Plane Passenger (uncredited),43882,29258,8 +55635,Caracas,145247,1314262,6 +55636,Gerald,87428,21485,12 +55637,Secretary (uncredited),32489,29814,17 +55638,Frédérique,35016,72353,8 +55639,Herberts Gubiņš,144331,1192371,10 +55640,Nafi,332534,59752,3 +55641,Löwenhielm's Wife,11832,202619,28 +55642,Queen's Emissary,310593,126042,16 +55643,EHC Gambler,71670,1708937,45 +55644,Princess,24973,1747658,32 +55645,Dancer,19995,1207272,56 +55646,Luigi,87936,69249,5 +55647,David,77246,526,1 +55648,June Ryder,86297,6352,0 +55649,Naddel (voice),9551,1331920,2 +55650,Dr. Samuel Hallitt,55784,933079,5 +55651,Comic Magazine Editor,19336,1488355,10 +55652,,146521,1124179,5 +55653,Killer Max,9010,16797,10 +55654,Trish,21583,452,4 +55655,Owen,24927,200487,5 +55656,Vegan,447758,1522760,27 +55657,Ballroom Dancer (uncredited),121674,487836,47 +55658,Officer Lang,254193,1315140,10 +55659,,12206,591599,23 +55660,John Holmstrom,111479,62816,10 +55661,Gül,44246,20730,8 +55662,Jennifer,206197,1506491,30 +55663,Mr. Solomon,112130,4175,5 +55664,Devlin,12279,1461,21 +55665,Herbie Fenton,285400,115457,1 +55666,Alexander Sikridis,85699,54115,8 +55667,Mativo,2989,29373,3 +55668,Skelly (voice),33427,110141,6 +55669,Candace Pontefreece,10918,134903,23 +55670,OD,19528,1136791,17 +55671,Himself,40863,70690,1 +55672,Donna,141643,1115155,14 +55673,Stan Warren,82650,976171,15 +55674,Aleksandr Petrovich Ilijn,47851,86689,1 +55675,,190940,85451,7 +55676,Mr. Johnson,287281,1353907,7 +55677,Grant Jordan,95504,4091,1 +55678,Peter McCallister,12536,37203,4 +55679,Daitokuji (voice),72013,68472,8 +55680,Workman,43811,117036,54 +55681,,27843,121749,7 +55682,The Driver,53950,16647,11 +55683,Peder Weine,58384,69645,4 +55684,Zenobia,62522,74615,1 +55685,Vittoria,58773,56654,2 +55686,Jerome K. Weber,87514,9274,2 +55687,George Kelly,177474,5251,2 +55688,Wallenquist,189,825,15 +55689,Masterman Finsbury,62143,11859,0 +55690,Ronnie Heflin,8617,53652,5 +55691,Vasya,83444,679142,9 +55692,Kyuta (Young) (voice),315465,104522,1 +55693,Angie,414977,1200655,13 +55694,Oharra,9461,131170,9 +55695,Anton,339944,1566008,2 +55696,Navigator,15807,15978,3 +55697,Sigmund Freud,19029,95002,3 +55698,Joanna,24986,64439,1 +55699,Enzo,84056,130877,9 +55700,Guan Yu,12289,1117866,12 +55701,Kommissar,3716,575433,31 +55702,Samia Voss,50761,32380,8 +55703,,42441,1871508,20 +55704,Audrey,19103,47627,4 +55705,Hobo / Vagabond,38742,13953,3 +55706,Astro-Zombie,27840,99123,14 +55707,Lawrence Maddox,13092,6413,15 +55708,Martin (uncredited),52440,22602,16 +55709,Himself,63144,1624621,16 +55710,P.S. 'Søren' Krøyer,133783,3407,1 +55711,Taylor,85230,149468,8 +55712,Li Ming,1899,20197,0 +55713,Greg Rishwain,14569,1210,3 +55714,Федя,20963,81002,17 +55715,Ryan James,206296,1213620,7 +55716,The Usherette,1278,16354,10 +55717,Elizabeth 'Liz' Wetherly,63317,122750,0 +55718,,41970,1050726,3 +55719,Gangster,2786,22162,5 +55720,T.K.,239562,80602,1 +55721,Witherspoon,26574,45388,9 +55722,Kate Clarke,49172,1130958,4 +55723,The Tramp,30982,13848,0 +55724,Louis,2516,25640,8 +55725,Legionnaire,22999,120217,13 +55726,Valentina,346490,1314188,3 +55727,Honey Pie,10070,33430,6 +55728,,252059,1459890,5 +55729,Rebecca Foster,117942,1428378,0 +55730,Dennis McLaren,70864,994403,7 +55731,Maran,102256,1343379,7 +55732,Cheryl (6 Yrs Old),228970,1495087,39 +55733,Golovin,126523,559896,5 +55734,Lord Clewe,54570,8240,3 +55735,Kayra Bright,417678,1493223,4 +55736,Jeanne Brinker,107593,10611,5 +55737,Old Yacht Man,294652,1440647,22 +55738,Gellor,102444,44163,5 +55739,"Катя, невеста Мити",121688,587622,2 +55740,Pete,70587,558926,6 +55741,Ciro,6145,48136,12 +55742,Lena Simone,33314,110463,1 +55743,Dreidel L'Chaim,6575,53863,31 +55744,Spencer,28297,14508,9 +55745,Sidney,13610,68812,5 +55746,Policeman,354979,1835288,67 +55747,Stoned Dude,26688,96036,31 +55748,,11972,225189,8 +55749,Chiara,53648,3279,1 +55750,Mäkinen,113660,93004,2 +55751,Press Person,257344,1683862,65 +55752,Victor Hugo / Vladimir Trunkov / Ivan the Tow Truck (voice),49013,25074,17 +55753,Jason Webster,50506,1081465,4 +55754,Betty,101330,70961,2 +55755,Mrs. Stoner,23107,2780,6 +55756,Vibeke,221667,1111432,14 +55757,George,21619,52933,5 +55758,Dr. Phil Reed,10739,43479,7 +55759,Mary,12831,73907,1 +55760,Michael Russo,29054,11089,1 +55761,Tina,43419,14689,9 +55762,Chad,243683,1397742,12 +55763,Sparky,14476,31385,2 +55764,Dart,28592,30900,8 +55765,Father Delgado,44591,564929,7 +55766,Bordin,55823,2568,4 +55767,Thug 1,215743,1256347,4 +55768,Jay,82401,149511,3 +55769,,28746,1326032,12 +55770,Laurent Helewa,121936,132542,2 +55771,Background actor,52454,1630349,66 +55772,Adhikesavan,69401,584733,1 +55773,Mother at the maternity ward,39284,560033,15 +55774,Lt. George Bridges,19968,34660,5 +55775,George Waldo,62761,1267323,4 +55776,Womack,289232,16702,2 +55777,,352199,1509238,5 +55778,Bridesmaid,157384,1180097,9 +55779,The Creeper,283445,1536162,14 +55780,Júníor,87229,587354,3 +55781,Dr Lazar Perkov,18178,82758,0 +55782,Lady Sarah Ashley,6972,2227,0 +55783,Nazareno,42579,128249,6 +55784,Sanitätsrat Terboven,97088,14182,5 +55785,Sally O'Hara,53230,550721,0 +55786,Alien diktator,16016,1143305,4 +55787,Lavinia Timberlake,43525,9071,5 +55788,Eben,42941,558900,17 +55789,Smalley,61908,1750,5 +55790,Grace O'Keefe,51209,58068,7 +55791,Chloe,273511,21320,1 +55792,Morello's Bodyguard,129530,1089689,1 +55793,,353898,85047,1 +55794,Sheik Ben Ali,225503,1210952,6 +55795,The Young Man,38787,8635,0 +55796,Dr. Ferri,265717,27395,9 +55797,Rosa Malcotti,262786,120319,4 +55798,,35572,1662170,3 +55799,Fred the Professor,27470,6168,25 +55800,Pomaded Man,354979,1636774,54 +55801,,329868,16311,6 +55802,Priest,90616,1692086,23 +55803,Ramon Bautista,214129,1097516,2 +55804,Noburo Kawaguchi,55192,213493,4 +55805,Whiteley,27085,1492649,8 +55806,Frau Gassner,328032,48690,6 +55807,Conti's Wife,49712,27394,17 +55808,Charlie Rotter,53999,97598,5 +55809,Taiki,36214,1021567,3 +55810,le Père de Chloé,32338,82288,8 +55811,Regina,15013,77684,13 +55812,Newspaper Editor,42298,30160,14 +55813,,61799,1851880,8 +55814,Francisco,378087,1063322,6 +55815,Jockey Involved in Disqualification,118889,120774,37 +55816,Pizza Guy,193893,1254366,69 +55817,Mrs. Preston,61581,98782,8 +55818,,109587,110985,15 +55819,Bob Neal (uncredited),69,410,33 +55820,Reporter (uncredited),16442,133277,33 +55821,Colonel,120172,95708,4 +55822,Chantal,366548,1294426,6 +55823,"Gloria, Talya's Maid",28712,89101,11 +55824,Sandra,48339,57574,3 +55825,,236737,1034476,13 +55826,Rodney,299780,1242533,18 +55827,Vladimir (Manager),11475,4826,0 +55828,Fahed (Ziko),121640,1112591,3 +55829,Reeve,37420,538318,2 +55830,Colby,44415,146328,0 +55831,Howard,8383,1751757,8 +55832,Barney Snow,96716,109,0 +55833,Dr. Robert Johnson,73194,115772,19 +55834,J.K. Robertson,31380,142756,4 +55835,Seaman / Gunnar,8965,1372751,12 +55836,Viguier,14650,13693,9 +55837,Professor 2,52475,1881177,16 +55838,Roger Hewitt,39311,133470,6 +55839,Dan Pegg,245706,88550,31 +55840,Cochran,15797,148635,4 +55841,"So-young, girl in class who wants Jae-in's protection",54555,1286421,8 +55842,Anna Rothe,1914,19910,1 +55843,Reuben,13835,1811,0 +55844,Jackie Parker,60759,8226,2 +55845,Iska,190341,1580364,4 +55846,Deputy Larry,53949,121260,17 +55847,Harry Papadopoulos,173294,8435,0 +55848,Redford,387957,10169,2 +55849,Gregory,59965,12371,13 +55850,Himself,16800,939000,12 +55851,Gov. Stanford (uncredited),43522,133277,67 +55852,Himself,173467,3037,9 +55853,Miliritbi,27221,97328,1 +55854,Stella Kidd,16182,47742,5 +55855,Reed,4413,37151,8 +55856,Red Cross Soldier #2,256962,1819152,81 +55857,Ship Captain,42941,64676,16 +55858,Young Man on Bandstand,43846,91217,16 +55859,DC Pride,215999,176216,4 +55860,Playboy lycée,255913,1033622,17 +55861,Ada 9-vuotiaana,40660,124264,6 +55862,Takeo's mother,356156,124128,4 +55863,Dr. Kenyon Walker,108282,1208,0 +55864,Dr. Arthur Waterman,28681,238563,5 +55865,Investigador,264729,1444927,20 +55866,"Alexandre Dumas, Jr.",92796,7685,2 +55867,Uncle Chan,11205,544916,6 +55868,Сашина Мама,57770,235771,2 +55869,Suen Tung,62762,1134507,6 +55870,Detective Hansen (uncredited),322,1584544,24 +55871,William (voice),381015,221613,7 +55872,Rhamon,42418,128096,3 +55873,Laertes,106848,102375,6 +55874,Gloria Williams,118948,96719,3 +55875,Monkey (voice),79853,86893,1 +55876,Malony Ferrandot,329819,1437681,1 +55877,Mr. Hodge,56154,33972,53 +55878,Alessio,158598,939102,1 +55879,La Directrice,1899,20201,4 +55880,Gong Yuen/Jue Yuan,10275,1336,0 +55881,Amanda,49597,87934,5 +55882,Vincent,151043,185588,5 +55883,Gene,156388,87479,1 +55884,"Mr. Murray, the Funeral Director",36375,96137,11 +55885,Dov Davidoff,369524,176763,26 +55886,Wakasa,181656,40325,3 +55887,Bill Pattison,43792,82129,9 +55888,Baron Munchhausen,27937,1090481,0 +55889,Hannah,76543,39187,1 +55890,Himself,160297,10884,3 +55891,Armsby,76203,39520,18 +55892,Abbot of Fulda,9503,37102,16 +55893,Gerry,168027,45566,6 +55894,Elias Hooker,26119,8853,4 +55895,Judah (voice),16366,2,1 +55896,Gambler,377170,121299,17 +55897,Daphne (voice),16390,15761,3 +55898,Sound Man,157343,67369,8 +55899,Freya,10529,3971,1 +55900,Peterson,63858,5044,10 +55901,Silvertooth,266285,82190,27 +55902,Susan Hopkins,28290,111988,8 +55903,General John J. Pershing (uncredited),16442,105946,58 +55904,Frankie,84305,81685,7 +55905,Taxi Driver,31899,1271024,45 +55906,Mover #1,9900,2225,12 +55907,,371153,145733,3 +55908,Heckler / Severin (uncredited),369524,1370986,31 +55909,Billie Golden,266741,1313819,3 +55910,Krikorian,58309,49168,3 +55911,Mrs Gibbons,29694,11135,17 +55912,General Wang Ren Ze,10275,64707,2 +55913,Blofeld's Butler,206647,1599278,73 +55914,Winston Taft,8460,55877,5 +55915,Shirley,152570,104728,2 +55916,Grishka,149170,124757,10 +55917,Gangster,2786,22796,6 +55918,,357441,1254796,2 +55919,Jared Grace / Simon Grace,8204,1281,0 +55920,L.T. Giroux,9664,35083,13 +55921,Ginger,20106,85626,4 +55922,Fat Man at Hijacking Attempt (uncredited),28000,120009,42 +55923,Frederick,157898,994599,18 +55924,Patsey,76203,1267329,2 +55925,Roy,24821,111538,7 +55926,Guiton,62675,24379,2 +55927,Teddy,45243,543138,8 +55928,Narrator,110491,1049457,0 +55929,Cash,266285,136309,33 +55930,Swetha's Assistant,362150,1006024,10 +55931,Robert Harper,30876,107212,0 +55932,Mary,237171,72717,0 +55933,Mrs. Murray,41131,74874,1 +55934,Tweedledum,25694,14028,17 +55935,Meg Peters,2132,21858,0 +55936,Delegate,285181,1237646,13 +55937,figlio del Giudice,43648,228159,9 +55938,Billy Z,9787,20220,13 +55939,Mistress Melon,277713,1409657,12 +55940,Gertrude,267654,1307911,5 +55941,Bull,6972,217046,11 +55942,Nosh,461955,1029029,5 +55943,,216046,238475,1 +55944,Willy,2516,25639,7 +55945,Ilona,13477,109869,12 +55946,Zorawar,228355,35819,6 +55947,Himself,276536,26471,9 +55948,Gray Maturin,56135,70820,2 +55949,Ivan,4551,1680739,34 +55950,Sandra,351809,1243743,7 +55951,Matt Korber - alias Mr. Chandler,182035,96056,3 +55952,Colonnello,59040,43239,32 +55953,Parole Officer,377587,564348,8 +55954,Frank James,27349,9225,6 +55955,Masked Attacker,225728,1774536,29 +55956,Brody,257450,209680,4 +55957,Parade Spectator (uncredited),156700,1842192,39 +55958,Dancer,285840,1842592,20 +55959,Evan Clark,4380,33532,9 +55960,Kelly Daniels,103201,27008,2 +55961,Móðir,72596,1114528,2 +55962,Roger Swain,340101,20766,9 +55963,Trixie,425591,1252507,9 +55964,Jane Russell (uncredited),34082,11165,12 +55965,Laurel Cobb,52868,175494,4 +55966,Rugby Man,13777,75269,22 +55967,The Small One,286372,1682233,13 +55968,Mutant Child,263115,1821493,76 +55969,Party Guy,9900,60164,19 +55970,Alois Kneißl,12523,23172,7 +55971,Sybil,26643,47504,1 +55972,Remi,50674,1042811,9 +55973,Randall,25598,78385,7 +55974,Dr. Theodore Conway,24619,6575,5 +55975,Nallama Naicker,66340,229981,2 +55976,Bobcat Bates,86472,1076582,11 +55977,Elise Rainier,280092,7401,2 +55978,Mike,41171,8167,2 +55979,Corinne,335145,20759,3 +55980,Divinity Double,113091,1586696,6 +55981,Amish Elder,74549,1820121,19 +55982,Bucky Hillberry,120615,81182,12 +55983,Additional Voices (voice),269149,1610447,33 +55984,Helicopter Co-pilot,255160,110943,23 +55985,Angie,63197,236600,6 +55986,Vicky Walling,213914,127488,4 +55987,Attalus,1966,165434,31 +55988,Baseball Bat Man,180299,1304642,9 +55989,Jack Friar,2017,2231,0 +55990,,21708,1112440,4 +55991,Extremis Soldier,68721,180838,101 +55992,Tadashi Hamada (voice),177572,82093,2 +55993,Steve Carroll,56744,5694,1 +55994,жилица,49653,1386479,7 +55995,Scott Smith,10139,17051,2 +55996,Bailey,104427,33777,8 +55997,Sarah Goldstein,19338,83027,19 +55998,,191476,59882,1 +55999,Barn Girl #2,58467,149594,30 +56000,Iris,419522,1689522,8 +56001,Samuel,377362,230171,2 +56002,Max Carrigan,4688,29234,2 +56003,Felice,120259,12505,11 +56004,Tim Hynes,26405,131510,7 +56005,Aurore,48601,59045,5 +56006,,315841,1149337,15 +56007,Wake,179105,92612,1 +56008,Irene,39845,11150,3 +56009,Pierre (le Blond),21778,16922,6 +56010,Ken Rogers,132859,90369,7 +56011,Joan Stein (as Maria Kosti),28071,97630,1 +56012,Zenko,89462,142474,4 +56013,Gladys Mortenson,337751,4038,1 +56014,Charlie,1420,17018,2 +56015,Philly,79935,8179,5 +56016,Billy-Jo,91627,1383452,6 +56017,Charles Rebatet,284620,1348290,4 +56018,Devil Cupid,397837,1818585,18 +56019,Dr. Howard Glass,27832,151679,0 +56020,Unosuke Hotta,141819,1096815,10 +56021,Food Nurse,48231,233682,8 +56022,Caroline,372640,78475,4 +56023,,265180,97368,5 +56024,Mr. Kelly,22447,202032,15 +56025,Tommy Winslow,99934,85425,0 +56026,Brujo,1969,7368,12 +56027,רפאל,43083,129248,10 +56028,,77673,79035,23 +56029,Carfin Pandolean,319993,592230,3 +56030,Board Member,109716,30201,60 +56031,Woman in Crowd,19794,1495425,23 +56032,La madre di Rosalba,53486,131660,11 +56033,Abbot Seng Zhi,10275,1342848,9 +56034,Slave Girl,1271,1297965,70 +56035,,133328,93093,10 +56036,Катя,46187,117153,1 +56037,Embajador USA,264525,78006,25 +56038,Policier,300,4295,14 +56039,Tanya,25921,93110,2 +56040,Claire,58428,60072,0 +56041,Taylor Pringle,82650,119812,18 +56042,Cab Driver,132928,17759,10 +56043,Young Mother,1550,1356433,25 +56044,The Subjects Trumpet,15810,933014,5 +56045,"Meteora, Queen of the Asteroids",47670,213896,5 +56046,Tauski,79743,1169506,7 +56047,Dr. Warner,366045,62716,9 +56048,Dr. Seth Ember,241258,6383,0 +56049,Jeffrey,332286,120560,5 +56050,Ashleen,335970,1172770,79 +56051,Omar Raschid,101342,1148205,4 +56052,Helen,81182,75070,6 +56053,Lord Byron,26808,29528,9 +56054,Aunty Ifeka,209401,1835580,11 +56055,Grace Winslow,77822,90644,6 +56056,G.I. in Field #2,19996,1764144,41 +56057,Woman Passenger at Dock,127812,1010448,23 +56058,Ralf Bechler,8371,44393,4 +56059,The Girl,284305,98358,1 +56060,la bambina con la bottiglia sul treno,121516,1076576,11 +56061,Judge,10754,66466,7 +56062,Jess,128081,1094122,4 +56063,Kerkyon (Guard),37958,229561,25 +56064,Charlie,398786,1665411,15 +56065,čarodějnice,82279,1044744,3 +56066,Kikuo Katô,45489,112861,12 +56067,,282086,1113245,6 +56068,Hotel P.A. Announcer,56558,34117,44 +56069,Jock,137182,1106962,4 +56070,Department Secretary,381008,1589597,10 +56071,Otogawa,186606,1168910,6 +56072,Daisaku Oona,87296,128023,1 +56073,Bethan Ancell,47535,205257,6 +56074,Carrie Berniers,108869,41283,1 +56075,Nelson Harting,71630,18260,6 +56076,Assistant Turnkey,99909,131003,45 +56077,Girl in Hotel,37308,44409,7 +56078,Grammy Norma (voice),73723,71727,6 +56079,Indian Runner,25598,1159905,11 +56080,Count Drago,28592,113,0 +56081,Ivy,17457,57831,7 +56082,Kiki's Father,408509,81054,7 +56083,The Artist,47653,14438,4 +56084,,74674,1445113,14 +56085,Himself,269797,4600,3 +56086,Fingerprint Man,14589,985839,53 +56087,Devil,96701,11523,1 +56088,Helen Blair,30307,588096,8 +56089,Kitty Katz,8325,19753,6 +56090,Marcus Thornton,188161,169893,18 +56091,Inger,8965,59051,11 +56092,David Sheppard,63333,93105,0 +56093,Man in the office,224813,1210336,15 +56094,Mission Boy,6972,1666760,24 +56095,Smitty,47882,1016646,12 +56096,Milli als Kind,167424,1822709,27 +56097,Kashin,83491,626381,10 +56098,McCreery's Associate #1,55604,33025,50 +56099,"Snakie, SU agent",37984,1172956,7 +56100,Hollændervogn chauffør,356326,1711509,31 +56101,Buglar,31127,113468,8 +56102,Zeke,16442,136895,10 +56103,Алхан,335819,125737,3 +56104,Shaposhnikov,156141,560105,4 +56105,Miguel de Cervantes,145481,32829,15 +56106,Eric Valentine,3563,1569482,36 +56107,Angie Miller,423377,486603,4 +56108,Victor,11719,21177,1 +56109,Sgt. Doucette,82485,129868,9 +56110,Anna,163814,168554,6 +56111,Cafeteria Dancer,38322,1485908,52 +56112,Lionel Blandsforth,102057,23586,9 +56113,Richter,31380,1337247,6 +56114,Peter,211,6085,2 +56115,Constable Wiles,425774,1707942,48 +56116,Jane,68123,48400,7 +56117,Old woman,43984,1098596,8 +56118,Jack Fletcher,52520,928199,12 +56119,Jane,59738,571210,7 +56120,Stu,324930,1500688,5 +56121,Timoshin (as M. Goronok),83614,929848,3 +56122,Malcolm,42542,1015794,5 +56123,Robbie,14750,1345505,12 +56124,Woman at Cemetery,332872,93,39 +56125,Dr. Hawley Harvey Crippen,106020,9221,0 +56126,Velma Wall,57684,127519,9 +56127,Odetta,226693,70460,8 +56128,Miss Martinet,69921,29091,3 +56129,Kurokawa (voice),149870,519,8 +56130,2nd Lieutenant Hastings,94135,85628,5 +56131,Kroner,99909,118257,13 +56132,Ubaldo Piangi,76115,577644,7 +56133,Celia,14904,131775,2 +56134,Chan,19274,18897,0 +56135,Howard,104108,1759090,6 +56136,Man on White Horse (uncredited),3059,109088,93 +56137,Bully Java Servant (uncredited),5201,88957,4 +56138,Monster,243683,1148762,13 +56139,Clerk of the Court,140470,121330,17 +56140,Norman Grant,62033,126656,6 +56141,Butch,268875,1017631,10 +56142,Margaret,43526,13991,4 +56143,Avvocato Rizzo,58402,24604,3 +56144,Brooke Ashton / Vicki,26670,37045,8 +56145,Young Jimmy,322,4737,17 +56146,Thérèse Morin,285858,1673306,14 +56147,Dolly Fletcher,18684,83442,2 +56148,Yohei Tanaka,208700,76934,0 +56149,Bob,30411,106249,14 +56150,,85673,1264666,11 +56151,Nick Beamon,13477,19536,0 +56152,Poupie,27019,1401952,6 +56153,Cora,214129,550403,3 +56154,Hayat,91628,1145286,4 +56155,M. Tremblay,148327,1294273,4 +56156,Pablo,344147,1488893,3 +56157,Manicurist #1,8272,1154564,19 +56158,Jim Randall - Prisoner 4325,308032,1193604,23 +56159,Radovan,11330,3411,4 +56160,Mimi Marquez,15199,87932,6 +56161,Anne,65156,40168,1 +56162,Sandra,251232,36672,5 +56163,Mrs Morland,18093,1738907,13 +56164,Youngster at Game,107430,102648,17 +56165,Themroc's Mother,7014,25126,4 +56166,Yang Tung Fei,41378,1179817,11 +56167,Charley Adams,51104,83454,2 +56168,Megumi Sawamura,31512,226825,5 +56169,Theatre Audience,118943,1110484,4 +56170,Chet Baker,327528,569,0 +56171,Kassner,3145,30768,6 +56172,Himself - Ushi's Assistant,170279,208826,1 +56173,Gertrude Houlihan,120109,81293,3 +56174,"Margareta ""Maggan"" Olsson",128946,6659,3 +56175,Julie Foster,84425,43203,3 +56176,,107916,1042749,2 +56177,Ah Ngor,24163,1338,1 +56178,Himself,407806,1700947,6 +56179,Carol,268321,18331,5 +56180,Raul's Neghbour,128637,127913,7 +56181,Kim Jin-seong,37284,1759981,3 +56182,Dennis the Dog (voice),86828,2157,14 +56183,Bit Part (uncredited),18651,236565,20 +56184,Bob,297633,3197,1 +56185,Squadron Leader Paul Lundy,43497,105505,1 +56186,Gene McClary,44129,2176,1 +56187,,77776,35527,9 +56188,Charlie Chaplin,16135,27978,2 +56189,Yvon Champagne,160160,9282,7 +56190,Katie Whiteside,113700,964548,1 +56191,Stella Morgan,140032,30519,4 +56192,Heather Morris (as Kerry Brennan),129332,1089083,1 +56193,Shirley Temple,88794,112742,19 +56194,Slade,43850,27945,5 +56195,Marcus,245891,5293,8 +56196,Greg Wagner,165567,15338,3 +56197,Hank (uncredited),59882,30496,9 +56198,Ella,341174,1770252,18 +56199,Jane Barton,95358,20124,5 +56200,Abed,35623,1195667,3 +56201,Jan Tyler,23683,15010,2 +56202,Jean Ramirez,33336,104064,4 +56203,Marnie Piper,34560,43893,4 +56204,Virginia Foster,54139,5730,2 +56205,Alex (voice),378236,60255,6 +56206,野比玉子/大雄媽媽,265712,1521536,23 +56207,Casey,414453,1286328,1 +56208,Kate,227094,999449,4 +56209,Gervasi's Wife,94809,25791,5 +56210,Sergeant Murphy,244201,95311,7 +56211,Brian,27417,101545,2 +56212,Frankie Madison,27035,13784,0 +56213,Nikolai Cherenko,26116,16644,0 +56214,Mr. Martin,26283,95016,8 +56215,Himself,36432,115348,3 +56216,Agent Reed,24775,2535,4 +56217,Ashley Burwood,331161,1121786,2 +56218,Connor,9981,61404,12 +56219,Du's thug,40081,1140990,16 +56220,Scott,226672,1171128,9 +56221,Pusher,88390,161317,14 +56222,Peter,429200,1879644,7 +56223,Bearded Man,256740,1295668,6 +56224,Rami's Mother,317214,236348,5 +56225,Collinson,109610,115856,8 +56226,Faith,17240,85719,1 +56227,Brigadista,2143,132908,30 +56228,Joe Harman,88558,29903,1 +56229,Girlfriend of Alex Fletcher,11172,205720,62 +56230,,261508,1305039,3 +56231,Himself,173467,488,1 +56232,Mutter,210052,73926,1 +56233,Tokuhei,20527,80865,2 +56234,Roszika 'Rosie' Dolly,107973,226642,2 +56235,Michael Shaw,257447,1300128,2 +56236,Armand,26505,53963,3 +56237,Security Guard #1,290764,1695369,16 +56238,Mrs. Bellamy,112284,1176923,17 +56239,Central Park Bike Rider,5123,1765870,54 +56240,"""Łańcuch""",382155,1636702,31 +56241,Kirsti Kaavio,293085,1364448,6 +56242,Police Superintendent,43369,106626,8 +56243,,31462,9559,26 +56244,Taikuri,40864,124873,8 +56245,Madame Lu,16175,10075,6 +56246,Kalliopi,288526,1138102,1 +56247,Ricky,17467,130598,0 +56248,Padman,312221,1746873,17 +56249,Remi,27102,10698,1 +56250,Miss Cairns,35052,1089572,10 +56251,Zak (Teen),218425,1312166,6 +56252,Judge Adams,37329,88672,5 +56253,Charles,112161,21290,6 +56254,Profesor Wacław Sitkowski,298040,107633,5 +56255,,49653,1386486,13 +56256,Jérôme,92251,15395,1 +56257,John's Mom,72105,24357,13 +56258,Gloria,14008,56457,4 +56259,Radovan,2061,3411,4 +56260,John Morris,24655,44261,6 +56261,Restaurant Customer (uncredited),18774,28853,28 +56262,Hayato Shibayama,25716,1384651,17 +56263,,37502,588067,1 +56264,Timmy Marshall,35404,114290,17 +56265,College Student,306952,1511962,18 +56266,Charles Ford,43829,115772,12 +56267,Gregg Adams,57103,145861,2 +56268,Lan Lan,219572,1562575,7 +56269,Jean Allenwood,43546,120549,4 +56270,Alison King,31922,4430,2 +56271,"William ""Bill"" Stephens Chandler",31773,32428,1 +56272,Sirena,177566,21817,1 +56273,Evil Ferryman,12912,42711,13 +56274,Sect Member,318781,1513658,40 +56275,Miss Debbylike,23096,21104,16 +56276,,257302,1470687,14 +56277,Prison Guard,354979,1636792,30 +56278,Allyson Karsch,36691,17606,7 +56279,Jakku Villager,140607,542336,59 +56280,Jim Campbell,78691,45042,4 +56281,Judy McQueen,31277,52312,10 +56282,Jake,172548,123515,2 +56283,Barry Lipke,79778,82626,3 +56284,Nurse,36960,1182525,15 +56285,Talia,24273,51390,2 +56286,Jack Donati,61212,22479,3 +56287,Herself,64972,8944,13 +56288,Clark Kent / Superman (voice),166076,66743,0 +56289,Annie Parker,177047,2206,0 +56290,Stuart negresco,42679,73856,13 +56291,Jill (age 8),369033,1647325,35 +56292,Maestra Rosita,107073,1125453,2 +56293,Chewbacca,140607,24343,12 +56294,Professor Herz,31472,14018,15 +56295,Sumesh,398786,930731,10 +56296,Aiche,81775,4959,1 +56297,R.I.P.D. Evidence Clerk,49524,1592999,15 +56298,Earle Slater,26983,8253,1 +56299,Reggie Knox,125087,1242516,1 +56300,Scoggins,99846,78087,9 +56301,Elise,4266,36483,16 +56302,Will Jones,27114,2927,15 +56303,Bellocona's Purser,176627,96725,24 +56304,Torio Okanoue,104744,553329,0 +56305,Hugo Vartán,365709,1185964,1 +56306,Bankar Rajner,33611,111067,6 +56307,Dr. Klintsen,423988,43645,4 +56308,Maggie H.,369033,1647321,28 +56309,Reporter,147722,590533,25 +56310,Mustafa,354859,35434,9 +56311,Ponraj,236808,1306567,5 +56312,Captain Hornsby,44631,33970,12 +56313,Cemetery Ghost,387399,1849539,16 +56314,Yellow Robe Man,66759,1163376,3 +56315,Jorgeson - Barber Shop Customer (uncredited),14615,99468,79 +56316,Mr. Eastman,300090,164105,11 +56317,Maks,259645,55981,2 +56318,Mother in Bomb Shelter,19996,1764157,51 +56319,Lucas,330588,1439737,5 +56320,Halit,220002,556047,5 +56321,Young Author,69668,1877716,19 +56322,Mary McHenry,28170,1463812,10 +56323,Herself,24792,93814,4 +56324,Nophaie,149515,88671,0 +56325,Court Bailiff (uncredited),14615,1271643,75 +56326,Sean,16876,80965,2 +56327,Shower Inmate,354979,1835240,33 +56328,T-Ray,15316,59672,2 +56329,Kelly,203186,1198310,5 +56330,Joy's Biker Guy,1550,101397,27 +56331,Muhammad Abdisalaam,333352,1584781,32 +56332,Diana Balaguer,74192,227395,0 +56333,Combine Doctor,23628,90411,18 +56334,DJ,252680,930215,13 +56335,Waif (uncredited),31773,1044770,20 +56336,Medical Examiner,7551,1990,12 +56337,Mr. Bonze,153272,140495,5 +56338,Himself (archive footage),142478,12248,1 +56339,"Lawson, the Fugitive",41611,14562,2 +56340,Alfred,424600,1704667,26 +56341,Kholostyak (as R.Ya. Plyatt),83435,545601,3 +56342,,37053,140106,5 +56343,Police Chief Auditionee / Himself,430826,1891523,40 +56344,Woman (uncredited),98328,29814,16 +56345,Toshio Saeki,36917,1178996,10 +56346,Cork Guy,405473,1124980,21 +56347,Sunny,222216,63585,3 +56348,Miss Elsie Benton,290379,1181282,11 +56349,Narrator (Voice),292262,26258,1 +56350,,260094,44104,6 +56351,Carolyn Simpson,24731,8437,2 +56352,Uncle Prao,13544,929402,6 +56353,Luigino,39979,100414,18 +56354,Tom Newcliffe,40218,2067,0 +56355,Erin,163814,31838,0 +56356,Jo Alwood,88518,97880,0 +56357,David Gold,285860,1030260,0 +56358,Oskari,92465,108861,1 +56359,Mother,21442,1016125,4 +56360,Dave Firpo,23719,16165,1 +56361,Family Mother,53870,86530,17 +56362,,49522,72315,12 +56363,Ted Eckles,10077,29616,10 +56364,Mr. Yong,208091,1193916,2 +56365,Rana Akbay,77241,225188,3 +56366,Pierce,834,12371,13 +56367,Clarence,52784,11044,3 +56368,Himself,51939,9315,3 +56369,Additional Voice (voice),177572,60272,18 +56370,Bulma,39324,122193,4 +56371,Melissa Right,49843,9909,3 +56372,Tony,142320,120135,6 +56373,Boniface,43880,104806,7 +56374,Barber,169881,1640,2 +56375,Tina's father,199602,584965,6 +56376,Andy,14904,934,1 +56377,Himself,4832,39652,0 +56378,Toni Gerard,194509,14027,0 +56379,Il barista,315319,1789281,30 +56380,Condor - Secretary of Interior,20674,7333,4 +56381,Laura Rossellini,83229,56654,1 +56382,Dr. Jekyll/Dr.Hyde,3024,3785,0 +56383,Marissa,21583,1798994,8 +56384,Jean Corbo,285858,1151253,0 +56385,Mr Fisher,22901,11180,2 +56386,Jane Robbins,79833,174461,1 +56387,Senzô Koyama - Sailor,52302,18613,2 +56388,Richard Loving,339419,33192,0 +56389,Street Walker,339419,1650197,50 +56390,Dr. Denise Bell,9987,62001,20 +56391,Colonel Horace Bampfylde,75142,34720,7 +56392,Luciano Ambrosi,82083,11190,0 +56393,Mrs. Arjun Joglekar,46403,1033150,6 +56394,Himself,157117,1461456,33 +56395,Lady Anne,11788,17161,10 +56396,,43095,125011,4 +56397,Michael 'Midge' Kelly,25918,2090,0 +56398,,261508,1305042,6 +56399,Karen,87302,1185038,2 +56400,Voula,47795,150571,1 +56401,Countess Rostova,149465,931908,6 +56402,Police officer,340275,1531617,63 +56403,Dan,70500,543132,0 +56404,Min-jung,25649,547973,5 +56405,Nazi Soldier,12412,4796,17 +56406,Three Finger / Vincent,71672,75814,8 +56407,Dale Lyons,246011,1331272,18 +56408,Pat Menninger,78691,162229,22 +56409,Luke,226968,1217017,5 +56410,Inmate Countess,62694,128438,25 +56411,Sherri,12912,1491611,12 +56412,Sandro,294819,5476,3 +56413,Ben lycée,255913,1714038,14 +56414,Tommy Macy,357130,16764,6 +56415,Bagheera (voice),59803,229737,1 +56416,Elderly Sorcerer,125521,1242036,8 +56417,Clark,59419,11115,3 +56418,,153196,1283554,1 +56419,Kurt,7006,51803,7 +56420,Hong Kong Beauty,59962,1581104,27 +56421,Laughing Man,1579,104391,32 +56422,Her Uncle,270336,571439,3 +56423,Al 'Preacher' Colson,8988,1530547,12 +56424,Alli,209244,51856,12 +56425,Line,382125,1576786,11 +56426,Ray Booth,13519,32286,20 +56427,Itshe,61528,109319,13 +56428,Woo-Jin,338729,1156197,3 +56429,Coroner,14589,103503,73 +56430,Dr. Goldenberg,87343,1511094,9 +56431,Sheriff Layne Hunter,32716,109612,2 +56432,Cossack Whipping Sergei,91480,120755,13 +56433,Hostess,142946,1479978,8 +56434,Father Paul Schaeffer,94468,84327,3 +56435,Jessie,351242,20387,4 +56436,,248417,2320,2 +56437,(voice),16137,79558,13 +56438,Jack Coombes,42989,70753,5 +56439,Hippie Chick #1,62213,1151957,22 +56440,Party Guest,127812,1395666,16 +56441,Igraine,274857,1603909,15 +56442,Mrs. Kleinová,99229,1747318,8 +56443,Mrs. Sizela,13542,15553,5 +56444,Madame Pasquier,57412,120769,11 +56445,Linda Dobson,37708,118366,2 +56446,Nyhedsoplæser,356326,1443438,12 +56447,Fehérkendõs halottsirató asszony,86732,1619021,8 +56448,Gavin,12796,1244697,12 +56449,Elyse,1164,17479,9 +56450,Dr Zellaby,224243,8319,2 +56451,Husband / Shroud Leader (voice),408220,1386148,13 +56452,,19552,1275914,5 +56453,Concettina,58404,9919,6 +56454,Matt Cvetic,49508,81179,0 +56455,Wally Burgan,202241,6474,6 +56456,Frank Burton,59965,658,2 +56457,Trucker Bob,17100,237,2 +56458,Dr. Jones,7871,1294397,8 +56459,Bank Manager,45610,163515,18 +56460,School Clerk,45431,1230846,25 +56461,Fat Albert,15045,77330,0 +56462,Miri,270646,1321912,5 +56463,Dr. Judith,115283,43775,9 +56464,Sébastien-Pyrrhus,63401,16350,1 +56465,Martha,228331,66188,6 +56466,Party Guest / Policeman (uncredited),22943,1041499,29 +56467,Kayla,255496,57346,6 +56468,Huoyi's Man,217923,1436287,45 +56469,Soviet colonel,88564,1467093,7 +56470,l'ingegnere,82080,4819,7 +56471,Köchin Birthe,268712,4619,7 +56472,Bill,118889,589730,76 +56473,Broken right arm fighter,41380,62427,11 +56474,Augustus Corbin,315664,1679369,17 +56475,Umut Ocak,30634,89760,2 +56476,Jack Bonney,85648,1503761,9 +56477,Sandy Byers,417936,18891,5 +56478,Nang Ping,87894,29973,1 +56479,,235092,115607,13 +56480,La guardiana del carcere,66893,1095728,16 +56481,Police Chief Auditionee / Himself,430826,1891518,38 +56482,Custodian on Stairway (uncredited),88075,85778,14 +56483,,349441,1200545,6 +56484,,92285,1203934,16 +56485,Herself (uncredited),50012,143282,5 +56486,Giant Man,14609,19508,6 +56487,Toby,10749,5201,2 +56488,Le garçon moyen,21348,1838952,15 +56489,Poluzzi,77000,1093683,13 +56490,Zoran,57307,1683645,7 +56491,Pundit,214756,1217619,53 +56492,Funeral Attender (uncredited),209112,1675748,144 +56493,Laura Rayburn,103168,398791,4 +56494,Uncle Carl,179066,233118,11 +56495,Man at Station,56154,89012,32 +56496,Richard Hayes,1247,72095,11 +56497,Ichirô Aoye,32690,7450,0 +56498,Greer Barnes,369524,1219688,20 +56499,Deedee,76101,585673,5 +56500,The Girl,53407,148050,2 +56501,Crocker,42472,3267,4 +56502,James Elfego,46570,70131,2 +56503,Guard,9461,1168161,16 +56504,,17282,537175,6 +56505,Juan de Aguirre,369567,1033027,3 +56506,Himself,385379,1585243,1 +56507,Andy Flynn,46020,134497,3 +56508,Ruzolící dívka,18352,231155,33 +56509,Jenny Flowers,196359,7796,5 +56510,Chief O'Reilly,247691,9866,12 +56511,Kolia,153397,1205278,6 +56512,Richardis von Stade,50722,16783,2 +56513,Professor Millan,270672,7672,4 +56514,Lois,27112,9878,11 +56515,Ben Morgan,11137,55378,6 +56516,,170998,312870,11 +56517,Reitender Bote des Königs,266568,1161724,11 +56518,Betsy Bell / Entity Voice,10008,129050,18 +56519,President William McKinley,147722,14658,10 +56520,Rachel's Mother,295723,1418249,21 +56521,Harris,17258,2561,20 +56522,Jay Lee,343173,1647129,16 +56523,Intern,340027,1476043,16 +56524,UBS Bank Teller,29161,1034677,14 +56525,Soichiro Toribe,30198,67471,2 +56526,Adah - a Negro Woman,65874,1053111,1 +56527,James Timothy Nolan (as Howard Chamberlin),29113,96137,7 +56528,Joanna,26688,1261684,23 +56529,Bud Livermore,40916,9114,2 +56530,Flynn,123109,78659,3 +56531,Irv,80468,57387,3 +56532,Cha Seung-mi,408620,109646,5 +56533,Henry,122928,1018660,9 +56534,Daphne Fowler,43808,126679,6 +56535,Igarashi Keiji,11838,552509,16 +56536,Racerkører,76312,1266461,18 +56537,Eddie Yaeger,50363,7333,3 +56538,Tante Clara,110323,38501,6 +56539,Saadet,53206,97274,1 +56540,Mère de Karim,37645,1457795,21 +56541,Ira,128437,45525,12 +56542,Theresa Garabaldi,82868,19456,1 +56543,Chucho,33107,1355765,5 +56544,Herself,76286,1172565,7 +56545,Gus Cardinale,142946,38559,0 +56546,Todd,195022,1180696,2 +56547,Mrs. Wiener,13073,80542,1 +56548,Luka,168541,1047199,12 +56549,Leeloopa's Father,1790,196258,12 +56550,,422005,1247697,3 +56551,The Queen,267935,1249,5 +56552,Henchman Vic,285946,120737,5 +56553,Sgt. Chris Davis,324670,1128854,20 +56554,Party Guest (uncredited),31913,80135,20 +56555,Henry,359870,117555,9 +56556,Charuseela's cousin,353533,1325341,18 +56557,Patty Hearst,148615,779,2 +56558,Ulrike,31003,2109,2 +56559,Louise Frith,248639,120050,1 +56560,Santa Claus / Aeon / General Ticker / Seventeen Seventy Six,30059,16417,4 +56561,Kuzma,81030,2497,5 +56562,Nick,311764,17052,1 +56563,Miss Trask (uncredited),73430,8515,11 +56564,Housewife,3782,106160,17 +56565,Paul Quinn Debate Judge,14047,1392599,21 +56566,Bill Graves,99863,1208,3 +56567,Nick,146380,1124100,0 +56568,Nadal,76493,111683,10 +56569,Undercook,38684,174700,25 +56570,Script Man,80720,1188829,19 +56571,Stage Driver,43806,138148,14 +56572,Roven (voice),16873,6065,8 +56573,Paula Clark,45729,113734,8 +56574,Man in Bar (uncredited),28000,1074209,72 +56575,Eve Prescott Rawlings,11897,14701,0 +56576,Dancer,82481,1127397,34 +56577,Peggy Thompson,12617,47140,6 +56578,Squint,19766,85160,11 +56579,Sophia,48502,140603,1 +56580,Col. Elliot,42123,1356391,3 +56581,Homesteader Mr. Foster,183832,29961,27 +56582,George,17725,1827932,17 +56583,Morrie,142061,35035,14 +56584,Lt. Cmdr. Anthony Fallon,29805,194,0 +56585,,197788,7632,1 +56586,Älterer Soldat,613,1352527,48 +56587,Club Manager,5123,1184071,25 +56588,Amanda Williams,53870,53862,6 +56589,,295273,124992,11 +56590,Ping Ping,110552,135347,3 +56591,Estella Havisham,121674,302165,3 +56592,,355111,1498028,2 +56593,Robin,116780,113636,6 +56594,,110001,1382974,8 +56595,Sachin,75623,96593,3 +56596,Townsman,134238,1095107,19 +56597,Will Clegg,176670,103672,4 +56598,Himself,326255,1633761,9 +56599,Lieutenant Philippe Meynard,10795,66839,12 +56600,Tai (Nisha's tutor),13986,110724,6 +56601,Rose Jordan King,271164,557216,2 +56602,Max Lewinsky,93828,5530,0 +56603,,359154,1117803,2 +56604,Guille,435707,1316023,0 +56605,Child (voice),279598,13709,4 +56606,,104374,1619188,12 +56607,Richard Lloyd,111479,1223456,23 +56608,Bar Patron,2001,66685,75 +56609,Ted,18826,21200,5 +56610,Herb,10044,62418,5 +56611,Félix,38362,67967,1 +56612,Yisir,50674,93919,11 +56613,Waiter,10610,70106,8 +56614,Lord Nelson,51247,1359383,12 +56615,,54858,1136761,1 +56616,Sheriff Kelso,27105,8496,5 +56617,Horace Debussy 'Sach' Jones Jr.,252916,33024,1 +56618,Leo Morrone,131351,1162,1 +56619,Uber Driver,429200,87466,19 +56620,Politistul,6417,49679,9 +56621,Andrew Colby,29113,1905,3 +56622,Blacksmith Bob,22606,89012,6 +56623,Foreman of the Brigade,53417,21303,3 +56624,Allan,15776,937650,0 +56625,Inspector Sutter,267654,24381,3 +56626,Justine,13733,38863,2 +56627,Harper,271404,208296,4 +56628,Johnny / Johnny Zombie,24927,156920,6 +56629,Kenichi - Oyuki's son,92950,1200695,7 +56630,Mrs. Patterson,109258,98965,9 +56631,Sheriff Knowles,307479,11086,5 +56632,Andreas,56596,997641,10 +56633,Gaizka Gaona,365709,1262582,11 +56634,Osvaldo,22182,128752,8 +56635,Playground Boy,42420,128116,9 +56636,Jimmy Chan (as Sen Yung),38461,82385,6 +56637,Det. Gary Dumars,33005,55554,10 +56638,Robert Hawking (Age 2),266856,1503906,28 +56639,Chloe,10748,66444,10 +56640,Ken Douglas,120588,18156,0 +56641,Poker Player,33541,1668553,39 +56642,Mustafa,179715,979408,3 +56643,Theo,252028,553270,6 +56644,Ercolino,93863,37191,2 +56645,Victor Chertoff,26116,94702,14 +56646,Pauline and Rufus' Daughter,328589,1529371,29 +56647,Mary Croft aka Collins,357529,992910,5 +56648,Steven Lannon,353257,18704,1 +56649,Reema Kumar,353464,55062,8 +56650,,66187,24903,3 +56651,Charlene,405473,1647427,3 +56652,Ina Perdue,66175,30952,2 +56653,Connie Wexler,46885,1327702,9 +56654,,105860,169995,4 +56655,Welcome to the 60's Dancer,2976,85929,126 +56656,DC Jackson,20357,26258,5 +56657,Maddy,71668,31838,0 +56658,Himself,5804,1032,2 +56659,Carl aka the Bear,369883,71403,2 +56660,Norma,85265,1457430,9 +56661,Astronaut,217057,1371122,12 +56662,Annie,9963,9781,3 +56663,Mike,186606,1750937,24 +56664,,123601,1078378,3 +56665,Carpenter,45987,134263,13 +56666,Mary,336890,25837,8 +56667,,11391,579203,14 +56668,Cecioni,8063,32626,12 +56669,Jacob Grimm,28367,6251,1 +56670,Waters,9914,17356,2 +56671,Music Competition Judge (uncredited),244786,1503854,45 +56672,Riwa Fridman,239103,1076083,4 +56673,News Anchor,21927,59085,10 +56674,Gamer Geek Clique Leader,14123,1446421,32 +56675,,197057,1176986,4 +56676,Grace Trescott,199155,145173,2 +56677,Susan,186606,1029664,27 +56678,Fatso - Ko's Inner Personality (as Lam Suet),14016,25251,8 +56679,Tiffany,82153,100459,1 +56680,Col. T.E. Lawrence,157843,11288,2 +56681,"Uncle Misha, shop teacher",57889,86870,3 +56682,Ruth Berger,32124,86267,3 +56683,Colonel Donald Magnusson,261273,64670,3 +56684,Major Watson,259183,47665,5 +56685,Narrator,81684,1283,0 +56686,The Purser,242097,40209,4 +56687,Nurse,127560,1381328,29 +56688,King Triton / Shelbow (voice),13676,12077,3 +56689,Migrant #1,273481,10962,31 +56690,Lavastaja,46931,137629,11 +56691,Aunt Emine,336804,1595079,13 +56692,Patricia Langley / Amanda Chessfield,64084,45379,0 +56693,Joey Morita,16240,80183,10 +56694,Andreas - Her Son,95169,99330,4 +56695,Market Clerk,16083,58595,18 +56696,Mike,59408,32061,1 +56697,Sheriff Donald Chapman,133953,1367999,4 +56698,,37959,13256,20 +56699,Katana,460135,1219437,5 +56700,Brad,43727,15424,8 +56701,Po Kwong,18725,120725,4 +56702,Michelle,333371,17628,0 +56703,Ian,317182,1261087,5 +56704,Maîtresse,159474,1141261,5 +56705,'Haggis' Barrington,116554,78993,10 +56706,Pete,40761,31896,9 +56707,Alma,127445,69311,1 +56708,Noah Daly,266425,593182,1 +56709,Paul,2349,24054,2 +56710,Hirohashi,11838,552505,12 +56711,Bodyguard (uncredited),15092,1597880,92 +56712,Jerry Lee Lewis,69,422,7 +56713,"Helen von Holzen, mother",14804,28294,2 +56714,Dryton,41597,115378,7 +56715,Colonel Burr MacFay,14589,2438,4 +56716,,167583,950617,11 +56717,čarodějnice,82279,77384,2 +56718,Duane - Detention Kid,2976,1401053,61 +56719,Carola,341745,133261,6 +56720,Diane Silverman,69266,10362,8 +56721,,105352,1285160,2 +56722,Freddie,9690,5207,3 +56723,Annie,21780,34486,1 +56724,,83229,1544226,10 +56725,äiti Pipa,40864,124871,7 +56726,Lloyd - Miner,87060,114835,16 +56727,Fighter,52437,1468402,22 +56728,Neron,62732,240471,8 +56729,Pregnant woman,146322,1054403,0 +56730,Conner Hargrove,107250,1663238,17 +56731,,56589,21176,8 +56732,Vänrikki Nappulan vaimo,55754,4830,9 +56733,The White Trash Review,62132,1452740,9 +56734,Pierre Dulaine,12763,3131,0 +56735,Daily World Editor,3574,81292,11 +56736,Dancer,170517,1745598,20 +56737,Piper,62838,1690527,32 +56738,Mike O'Donnell (Adult),16996,14408,3 +56739,Police secretary,16171,79881,31 +56740,Johan Falk,21041,92403,0 +56741,Ira Gershwin as a Boy,43491,81481,12 +56742,Overseer,76203,1344342,20 +56743,Clarence Opano,39766,13313,6 +56744,Vilho Koskela,41142,125629,7 +56745,Julie Weaver,29801,131547,1 +56746,Cook,37254,117191,11 +56747,Matty,38048,115343,1 +56748,Chicago Police #2,24420,1393530,15 +56749,Hildy,52827,133207,4 +56750,Radio Announcer,27450,99179,23 +56751,R,82654,3292,0 +56752,Chicago Pedestrian (uncredited),76757,1298706,62 +56753,Spike Corcoran,27777,98976,4 +56754,,48210,1508796,9 +56755,Tsiolkovski,126523,1119000,3 +56756,,335897,554273,7 +56757,Nelly Ledneva,75262,240540,4 +56758,Mrs. Coyle,429238,171334,19 +56759,Ragnhild,140818,563051,4 +56760,Dabby Duck,37929,26491,12 +56761,Mary Pereira,121598,230632,19 +56762,Nurse,228970,1495081,26 +56763,Stacy,19551,146831,4 +56764,Teresa,84354,71208,1 +56765,Mary,322548,1287113,17 +56766,Priest,49097,32696,1 +56767,Short Fuse (voice),270946,83586,6 +56768,Topaz,38027,1169107,13 +56769,Zoe,231176,1266276,4 +56770,(uncredited),172445,89186,7 +56771,Jack Hammer,316268,1338033,6 +56772,Doctor,294254,223395,36 +56773,High School Student,87826,1811221,13 +56774,Ismaël,266082,1162995,4 +56775,Gus (voice),14128,35219,2 +56776,"Sparks, radioman",257081,34117,20 +56777,Ethel Langham,191820,20810,1 +56778,Agent McCaffrey,26486,12797,15 +56779,Steve Lucky,4551,1680755,48 +56780,Lonnie,41733,62862,5 +56781,,4146,35002,6 +56782,Butcher #1,72875,568026,15 +56783,A.R.P. Man (uncredited),43497,120453,17 +56784,Senor De Rezende,28293,590550,6 +56785,Will Munson,263115,23628,7 +56786,The Writer (uncredited),3081,94779,17 +56787,Tobias,55735,174454,5 +56788,Afida (as Chrisje Comvalius),115929,1064507,9 +56789,,376934,1350056,11 +56790,Kenny Collins,448847,19901,5 +56791,B.J. Spence,29694,14324,12 +56792,Martini McQuickly,16378,80486,9 +56793,Al,48775,1142402,2 +56794,Police Chief Marcellini,139563,120637,2 +56795,TV Interviewer,142216,1176794,32 +56796,Seo Moon-Do,242458,1418579,3 +56797,Barone Cirò,33495,130871,8 +56798,Samuel,14047,7277,28 +56799,Martin Cortland,28658,94433,2 +56800,Daniel Allen,120854,81690,7 +56801,,278458,584195,3 +56802,Nebaska,13678,238099,1 +56803,Elise,339994,24198,8 +56804,Lizzie,172785,8329,0 +56805,Lukas,285869,1228343,3 +56806,Tanner,22396,1877028,19 +56807,Chris,314285,1405670,7 +56808,Julian Berniers,108869,4299,0 +56809,The Lord's Mistress,64847,1455166,5 +56810,Sound Engineer,83540,1020045,2 +56811,Zehra,157559,145355,1 +56812,Clifton,352498,1251978,2 +56813,,289183,1357745,1 +56814,Amador,98582,1061663,7 +56815,Burke Ramsey Auditionee / Himself,430826,1891541,50 +56816,Karl Resnick,28859,9626,2 +56817,Catherine Verdier,74878,35586,2 +56818,Babouin,38027,90540,14 +56819,Juke Joint Musician #2,14047,1046722,42 +56820,Peter,362439,1444195,0 +56821,Bergen Guard - Todd (voice),136799,1218631,36 +56822,Ava Paige,198663,1276,13 +56823,Peter Bruegel,57829,585,0 +56824,Angry Driver,100275,1376615,14 +56825,Tänzerin,130739,1100366,36 +56826,Nebula,283995,543261,6 +56827,Serial Killer,57100,138588,6 +56828,Hakim,98277,1017270,9 +56829,Mercy Shaw,29542,101267,5 +56830,Papy,1986,20444,7 +56831,Kasia,8272,2617,3 +56832,Cleitus,1966,20284,15 +56833,Ken Boyd,80468,18472,0 +56834,Roxie Plumm,73501,191883,2 +56835,Boy Luis,97794,1128307,10 +56836,Salome,390777,1393180,6 +56837,,42441,543826,16 +56838,Garoto,278935,1240499,6 +56839,le critique d'art,74878,24540,8 +56840,"Walter Herbert, office boy",30014,941239,15 +56841,Varda,117629,583765,2 +56842,Steve Case,94182,3155,2 +56843,Piano Specialty (French Version of 'The Darktown Strutters ' Ball',18651,1467404,73 +56844,Davy Henshaw,214100,146750,0 +56845,Van Hagen,33009,74036,1 +56846,Ustaša,67633,1043262,14 +56847,Fernand Gudge,5516,17401,10 +56848,Mickey,13652,7279,7 +56849,Bastien,343702,79541,12 +56850,Hidetoshi Dekisugi,265712,1502631,10 +56851,,55624,1463981,5 +56852,Salva,131907,31384,0 +56853,Annette,44754,86474,19 +56854,"Himself, Son",45576,400145,3 +56855,Umberto's Grandma,13477,119864,16 +56856,Barry,318553,113006,2 +56857,Présentateur,58487,27221,0 +56858,,18352,1403920,3 +56859,Michael Stone (voice),291270,11207,0 +56860,Older Cop,22803,1385071,19 +56861,Eric,40624,8654,0 +56862,Girl in Church,179066,1468551,50 +56863,Mrs. Sharma (Anjali's mother),11854,35750,13 +56864,Caligula,206514,5049,3 +56865,Owen,199056,50095,2 +56866,"Eron Jeffries, Chip's Crush",20473,56128,5 +56867,Ranger Meg,367147,1090027,6 +56868,Helmet Head,36251,168752,8 +56869,Himself,14108,1712688,5 +56870,Nana,219247,60158,4 +56871,Alex Van Bibber,13678,238100,2 +56872,Zoran,382125,1100011,7 +56873,Himself,173467,16483,24 +56874,Dr. Gulik,28482,44728,2 +56875,Mayor Danielson,295656,158644,12 +56876,Will Rogers,20361,39020,3 +56877,Sylvie,338100,1394373,4 +56878,British p.o.w,227306,1394435,38 +56879,Paul,62978,35135,3 +56880,Lawyer,74777,1632517,12 +56881,Baron Paul de Cabannes,184351,29273,2 +56882,Geschäftsmann auf dem Klo / Hochzeitsgast,6183,45266,35 +56883,Abu Omar,98203,1065168,10 +56884,Robert Görl,9690,22511,6 +56885,Ned Wilkie,197737,13979,12 +56886,James Tyrone,237549,3151,0 +56887,Sandy McKenzie,127564,41235,1 +56888,The Under the Bridge Dog,58467,1704744,46 +56889,Himself,229296,1280993,2 +56890,Michael Simon,43811,2494,6 +56891,Court-Martial Board Member (uncredited),10178,41756,22 +56892,Hannay,130881,1601280,4 +56893,Duilio Tombolini,255456,231143,4 +56894,Joe,65496,543835,2 +56895,Randolph Miller,4703,39016,6 +56896,,38310,229273,12 +56897,Head of Gay Conspiracy,14923,9657,55 +56898,Missy Pratt,117942,1428379,1 +56899,Girl in Locker Room #2,253310,1795179,11 +56900,Hana Kusarino,273096,1018945,2 +56901,Toby Robinson,52485,102545,3 +56902,Edwin Stanton,161187,949345,7 +56903,,116312,1387996,27 +56904,Mc,142320,1281151,36 +56905,Sara,246127,53714,1 +56906,,128671,17753,1 +56907,Lisa Cross,15671,111920,5 +56908,Marie,156015,37164,6 +56909,cameo,54555,1238646,12 +56910,Security Guard,4913,39986,3 +56911,Jesse James,183825,12156,5 +56912,Stacy Keynes,14878,1015616,6 +56913,,260094,1302704,3 +56914,Jonas Cantrell,22803,14888,3 +56915,Eileen,353686,52605,4 +56916,Dorrie,51571,952986,8 +56917,Thrashing Zombie,924,122151,19 +56918,Natalie,215016,10080,5 +56919,Traffic Police,148284,545009,8 +56920,Mrs. Herman,239103,49018,2 +56921,Katy,33345,1059634,4 +56922,Herself - Model,327083,1400776,15 +56923,Old Man,103620,18889,22 +56924,Tobias Wildenbrück,40130,26600,8 +56925,Rik Battaglia,11614,1423050,9 +56926,Control Lab Technician,177677,1562106,60 +56927,Anna,19996,85413,2 +56928,Faith Brighton,31277,1319519,6 +56929,Los Vatos Punk,15092,1895598,36 +56930,Kane,13954,17345,3 +56931,Himself,384262,1646176,2 +56932,Eva,50647,50463,3 +56933,Patsy Blair,46007,99662,3 +56934,Julie,43894,90075,6 +56935,Prince Arnaud,32390,2192,1 +56936,Fuke,177155,1049361,1 +56937,Thamizh,70988,1126203,5 +56938,Himself - EIS Engineer (as Adam Lewinter),84185,1131492,2 +56939,Jean-Louis,79048,37764,3 +56940,Newspaper Editor,10299,30115,10 +56941,Eero,73099,228650,10 +56942,Karine,5618,3536,3 +56943,Seaman on Yacht,47404,33971,22 +56944,Ugo,160844,1142894,5 +56945,Lt. John Foster,50849,105337,5 +56946,Merideth Cole,17144,81349,2 +56947,Aunt Ethel,424600,80759,5 +56948,Pat Croft,357529,1159357,3 +56949,Lilly Walter,2349,17548,0 +56950,EHC Collector #2,71670,1452350,18 +56951,Oskar,103972,571346,1 +56952,Kame,45205,36074,1 +56953,The Father,33091,11044,1 +56954,Mellizo,351809,110129,6 +56955,,199615,1179788,0 +56956,Jessica,169298,1089016,1 +56957,Jimmy,2503,175400,13 +56958,Lord Hurst,16899,36666,11 +56959,Lakhan Singh (Lucky),12273,95750,5 +56960,"Charlie, the Iceman",24749,11389,2 +56961,Amanda,176,2138,11 +56962,Ted,36691,115972,13 +56963,Sairy MacBean,229757,95271,4 +56964,Le baron Hugues,45000,34583,2 +56965,Yakuza,3782,7457,25 +56966,Wellington,75142,67028,9 +56967,Sole,300601,1381214,13 +56968,Wesley (voice),13517,96674,2 +56969,Mala,81313,591421,1 +56970,Claudia Benaïm,73562,72949,3 +56971,,244956,63704,3 +56972,Gram,356752,1501740,5 +56973,Sameer Malhotra,20495,42802,0 +56974,Katy Rigby,275060,76999,6 +56975,Camilla,59006,38425,7 +56976,Class teacher,54555,87783,9 +56977,Nurse,38437,21878,13 +56978,Aissa,87349,935074,4 +56979,Police Chief Harry Boyle,30002,85836,6 +56980,Little Girl,44000,51729,12 +56981,Ivan's Father,82737,147268,6 +56982,Gary 'Blacky' Black,27018,60005,4 +56983,Bridesmaid,263115,1347284,49 +56984,,142656,7457,9 +56985,Police Sgt Kavalefski,20444,3015,12 +56986,Teresa,45303,52575,2 +56987,Raju,20359,35070,0 +56988,Alex,67748,1071155,5 +56989,Katya,405670,1137287,4 +56990,Groupie,11172,1781197,52 +56991,Old Man #2,32690,7455,13 +56992,Natasha Romanoff / Black Widow,99861,1245,4 +56993,Himself,315850,87281,8 +56994,Michel,13710,37647,8 +56995,E-4 Admiral - 'Harpoon',20674,12645,5 +56996,Continental Doctor,245891,9462,10 +56997,'Kirsch' the Decoy,120837,931793,8 +56998,Troubled Woman,17332,6944,11 +56999,Tenho Hirvola,55500,108853,1 +57000,Zozo's grandmother,49220,590855,6 +57001,Partner,76438,578850,12 +57002,Joza,19765,42077,1 +57003,Inger,24647,235374,6 +57004,Russian Man,172474,1158713,3 +57005,Edmund,134155,1346669,6 +57006,Additional Voice (voice),177572,56612,33 +57007,Neighborhood Friend #2,85350,1467530,13 +57008,Stacey Chapman,358895,1632213,10 +57009,Antoine's father,61267,21170,2 +57010,Salvador Garza,264525,1048704,6 +57011,Spitfires Collector,340101,1865850,35 +57012,Bailey,28304,13979,11 +57013,Churchgoer,101325,197036,15 +57014,Kim's Boyfriend,77930,1784630,35 +57015,Teta,259690,1142265,6 +57016,Frank Darbo,45132,11678,0 +57017,,64044,568774,11 +57018,Hector the Janitor,62046,1330721,19 +57019,Mrs. Phoebe Fisher,196789,13965,6 +57020,Uncle Cato,1976,1334138,14 +57021,Granger,80410,16644,0 +57022,,61533,25872,0 +57023,Marie Nakazawa,363354,1076363,8 +57024,Harvey (uncredited),42941,134611,12 +57025,Pandi,66224,588017,2 +57026,Vicky Chaddha,444713,1754064,5 +57027,Jimmy,85023,1129116,4 +57028,"Mrs. Bellane #2, spiritualist",21451,8241,3 +57029,Ana María,31299,131085,12 +57030,Charlie - City Hall Security,22803,1128450,18 +57031,Angela,56992,225321,1 +57032,Olivares,109477,1169326,1 +57033,Ana Renteria,198795,142300,2 +57034,Charlot,44522,36212,14 +57035,,1421,1723436,24 +57036,Badawi,52454,1517537,12 +57037,Party Waiter (voice) (uncredited),56135,34046,17 +57038,Upset Car Driver,339403,1635154,38 +57039,Gwen Allen,17687,82315,1 +57040,Märeta,11656,70359,1 +57041,Becka Lassiter,129798,1206426,2 +57042,Waitress,44945,558923,14 +57043,Florinchen,215740,1129910,5 +57044,Old Man (uncredited),88075,90000,13 +57045,Prof. Morgan / Prof. Gordon,28482,100901,4 +57046,Frank Wagner,24023,92404,1 +57047,Alexander Haig,407887,1718135,12 +57048,Doyle's Girl in Major Chord,12637,1220746,6 +57049,Young Vivian's Mother,10075,62888,14 +57050,,27904,120258,5 +57051,Jamal Barachi,90231,934915,9 +57052,Jennings,13912,131813,5 +57053,Sheriff Wooley,27443,14579,4 +57054,Andreas Vergerus,105254,2201,2 +57055,Elizabeth,301224,1382181,1 +57056,Bully #2 (voice),9297,198812,16 +57057,Lila,309581,19492,0 +57058,Sleepy Parsons,34650,19404,7 +57059,Girl,229221,1365320,14 +57060,Meredith Tanner,146243,430313,13 +57061,Sailor (uncredited),10178,1061015,32 +57062,Jack,11553,1174366,1 +57063,Captain Dutse,209401,2603,7 +57064,Babe Dooley,34650,3341,10 +57065,Luise,368342,48121,8 +57066,Kleinschmidt,379019,36014,6 +57067,Robert,71139,61263,16 +57068,,293092,148012,1 +57069,Ernest Talbot,124115,81168,9 +57070,Razo,76757,21688,15 +57071,,194853,1175191,10 +57072,Clip from 'The Pirate' (archive footage),33740,103934,58 +57073,Morten,73775,1167389,17 +57074,,378485,1677388,4 +57075,Official Receiver,80596,39741,46 +57076,Interviewee #2,28090,1233674,39 +57077,Branwall,289923,44616,1 +57078,Lorenzo Xavier Vega,28299,91711,1 +57079,Masked Syndicate Man,177677,1385097,54 +57080,Skip,128270,1681740,13 +57081,Wing Commander Morley,49609,100589,2 +57082,Tin Ming,11636,986480,13 +57083,Photographer,99909,2776,36 +57084,Man in Black,316268,1410539,4 +57085,Nichette,139176,98031,5 +57086,Domingo,96133,30900,8 +57087,la marchesa,58611,1889555,9 +57088,Ricky,9958,60966,1 +57089,Stewart,27573,58224,7 +57090,Aunt Honey,239566,6944,8 +57091,Helene,42260,2729,4 +57092,Rebecca Ahn,96936,1053170,0 +57093,Stormtroopers / Star Destroyer PA Announcer / Star Destroyer Officer (voice),140607,46362,82 +57094,Chantale,381356,145119,14 +57095,Timothy 'Dum Dum' Dugan,211387,2203,3 +57096,Andreas,16015,6134,5 +57097,,299165,1697805,26 +57098,Annette (uncredited),43497,124736,15 +57099,Weather Girl,2577,1504900,13 +57100,Lt. Alan Bruce,28363,54123,6 +57101,Foot Race Pro,49712,59640,20 +57102,,62896,116161,6 +57103,Winnie - the Braleys' Butler,229221,939842,9 +57104,Casey,172520,1155127,6 +57105,le capitaine Holt,91419,29259,3 +57106,Lumpy,138222,51383,2 +57107,Jeager,77664,106066,8 +57108,se stessa,75336,1108286,26 +57109,Wedding Guest,43809,122984,49 +57110,Chloé,72678,566918,3 +57111,Baron von Grunen,4375,14528,5 +57112,Townsfolk,139571,558914,9 +57113,Jack of Diamonds Woman,228647,29974,31 +57114,Myon (voice),21712,90157,1 +57115,Ari,339116,1672439,5 +57116,Mrs. Arnell Simmons,176627,2929,5 +57117,Pertti Ilola,101838,143129,12 +57118,Stan's Girl,1726,169681,55 +57119,News Reporter,228034,1634313,20 +57120,Himself,51311,1109535,2 +57121,Reddy,218898,1139873,7 +57122,Sonya,28658,89684,4 +57123,Jennifer Li,317144,1168128,2 +57124,Catherine,77728,145755,0 +57125,Roy,68750,587339,9 +57126,Helen,14476,1411677,11 +57127,Bugsy,242224,1413764,35 +57128,James,1164,17483,11 +57129,Parson Pascoe,413998,176191,6 +57130,Yuki Kashima,2487,25461,0 +57131,Capitol Hill Reporter,38269,1090165,17 +57132,Guido,26331,1770825,9 +57133,Cameo,337876,37233,7 +57134,Old Zhao,121823,118745,9 +57135,Mr. Hurley,55735,116234,8 +57136,Leva,41030,158940,5 +57137,Spring Davis,182899,17753,0 +57138,Coralie Marciano,329809,1386244,9 +57139,The Man,43757,934,0 +57140,Principal,41402,1397945,19 +57141,Granddad,155341,1869477,12 +57142,himself,190940,35070,12 +57143,Barbera,82662,147159,7 +57144,Endryu Chembers,106546,71900,6 +57145,Jamie,22901,88045,1 +57146,Clara Mütze,1294,40359,8 +57147,Ange Orahona,210615,2565,0 +57148,Sitaram's mother,253533,584504,15 +57149,Beecroft,19846,1876860,10 +57150,Marwan,12113,544186,12 +57151,Comic Con Attendee,214756,1759637,76 +57152,Travers Twiss,114155,937,6 +57153,Roger Gardam,228294,57795,4 +57154,Urbenin,81030,94198,3 +57155,Ben,25834,1306418,10 +57156,Young Hindley,36597,1251138,20 +57157,Alky Briggs,13911,100920,5 +57158,,28917,19453,3 +57159,Dad,58467,14852,9 +57160,don Costantino,228290,120135,0 +57161,Martin,12124,71359,0 +57162,Carla Dimaggio,26131,126235,4 +57163,Roberto,12811,76339,0 +57164,Krag,45874,8962,4 +57165,Detective Cullen,335872,166522,10 +57166,Abira,278706,1334329,3 +57167,"Maria ""Duda"" Eduarda",45179,559730,5 +57168,Julieta,8088,25258,13 +57169,Joo Dong-sung,363579,1256497,8 +57170,Irene,177104,1137500,4 +57171,Le conducteur du poids lourd,40258,544566,12 +57172,Cody,34560,168877,5 +57173,Man without revolver,267579,1208240,7 +57174,Murch,46059,5372,2 +57175,Veronica Vogler,18333,8742,4 +57176,"Vitalik, radioman",271234,1322769,2 +57177,Betty,87343,75343,2 +57178,Fiscal,69060,184465,7 +57179,Bum in Alley,27814,99038,12 +57180,Sheriff Mitchum,285908,41746,3 +57181,Eyewitness,250066,52783,13 +57182,,78323,549555,8 +57183,Mr. Fielding,125063,150864,4 +57184,Moreno,12449,72254,1 +57185,Jimmy,15810,113505,14 +57186,Elena,125300,171135,8 +57187,Wes,63831,586819,5 +57188,Himself,103215,1461,9 +57189,Robert Crumb,2771,58528,3 +57190,Mrs. Janowski,89659,176456,2 +57191,Judge,27573,167582,12 +57192,Flammarions' Party Guest,31993,1269827,50 +57193,Frederic,29111,102948,2 +57194,TD's Bartender,6973,210056,36 +57195,Linda Moon,4551,37936,7 +57196,Leo Hickory,16661,141140,3 +57197,Captain Clark,35001,32791,2 +57198,Dan The Weatherman,791,11832,9 +57199,,117212,1200245,18 +57200,Slotan,58133,2829,3 +57201,,57548,1264352,7 +57202,Timi,17780,82363,7 +57203,Kanonier Vierbein,19430,50886,2 +57204,Angelita (as Paulina Gaytan Ruíz),20941,36586,13 +57205,Young Claire,440597,1575317,8 +57206,,44104,87219,3 +57207,Ezra,31890,108575,18 +57208,Доброхот,428398,1436207,5 +57209,The devil,48145,550129,1 +57210,Music Supervisor,14543,403451,18 +57211,Mendez,96089,151499,8 +57212,Curley,134238,30243,12 +57213,Bella,47959,1426040,34 +57214,Joey,226167,63857,6 +57215,,3549,558205,16 +57216,Marta,308639,180527,14 +57217,Himself,50647,22214,16 +57218,Matt,21001,86984,1 +57219,Prosecuting Attorney,42825,33278,7 +57220,Neighbour,91628,1042136,11 +57221,Jung-suk,147533,1334230,3 +57222,Sandrino,85038,124761,10 +57223,Official,3146,1429146,17 +57224,Frankie,36251,1689930,17 +57225,8-Year Old Ludlow,257344,1683840,46 +57226,Marching Soldier (uncredited),16442,70985,90 +57227,Timothy W. 'Big Tim' O'Brien,43022,2672,2 +57228,Huntly,43875,8841,13 +57229,Lehrerin,360737,1569357,9 +57230,Steven Spurrier,13996,4566,0 +57231,"Mike O'Leary, Plainclothes Man",36786,116564,16 +57232,Christmas Caroler,89008,1105485,7 +57233,Simon,4285,36013,6 +57234,Freddie Page,51994,91606,1 +57235,Kurtis Kool,38322,62066,4 +57236,Eric Kenton,43023,1137067,5 +57237,,373200,1619617,9 +57238,Degwin Sodo Zabi (voice),39230,1213848,17 +57239,French Maid in Dieppe (uncredited),52440,1905148,15 +57240,Peter's Dad,107985,1278124,25 +57241,Polly Benedict,116232,11495,3 +57242,Jorge,2567,1983,52 +57243,Neal Hausman,128311,928575,0 +57244,'Rags',40916,129549,4 +57245,,23289,202621,22 +57246,Jesus,310119,3061,1 +57247,Dick #2,9958,60978,9 +57248,Marisol,19342,1389750,15 +57249,don Luis,338438,39020,2 +57250,,12622,555201,23 +57251,Andrew,46368,60038,4 +57252,Maniac,44936,1361929,9 +57253,Lonny,384682,1183672,20 +57254,Christina McKinnon,425774,1707878,18 +57255,Christine,260947,94423,0 +57256,,44238,1043348,8 +57257,Himself,70027,557821,1 +57258,Mrs. Crenshaw,26688,4,16 +57259,Vincent Bhavana,381691,1620962,9 +57260,Helga,117550,99536,1 +57261,Sandro,5165,4961,1 +57262,Grandma Rosiepuff,136799,1255817,12 +57263,Prudy Pringleton,2976,19,10 +57264,Gebbeth,9795,32751,12 +57265,Gordon Bryon 'Beau' Brummel,144613,29578,0 +57266,Stars,347331,53974,1 +57267,Dr. David Bruce Banner,26881,19138,0 +57268,Marie,98277,1017266,3 +57269,Harumi,402455,230660,5 +57270,Joyce,114577,6735,4 +57271,Barbara Mathews,34652,113585,1 +57272,Rocky's Second (uncredited),28000,16528,88 +57273,"Eddie, The father",190352,133342,9 +57274,Various characters,16023,111467,4 +57275,,33201,9831,3 +57276,Unicom Executive,25643,90131,11 +57277,Todd Carlson,266425,15661,7 +57278,Ray X,8088,102221,4 +57279,Rocky (uncredited),123961,84229,14 +57280,Wayne Langmuir,120932,31260,4 +57281,Francis Cardoza,148031,55841,3 +57282,Edith Barclay,38724,18582,5 +57283,Bruno,394723,112901,1 +57284,Cassie's Mom,109439,571249,32 +57285,Natari,62472,1479153,18 +57286,,224951,11677,1 +57287,Zee James,83354,3382,2 +57288,Gardener,81463,1480651,16 +57289,Dave Flinton,27381,30151,10 +57290,Security Guard,1640,154932,35 +57291,Yankee Irving,15213,60255,4 +57292,Marie Templeton,149793,1196710,10 +57293,Ohara's crew who attacks Su Lin,9461,1174365,20 +57294,Young Ola Wróblewska,278867,1605911,5 +57295,Ben Harding,174946,1132108,1 +57296,Dr. Bacovia,9042,135148,9 +57297,Insurance Salesman,239566,168942,30 +57298,Otac,118658,1334946,5 +57299,Finch,76101,585676,8 +57300,Marianne,2012,50555,2 +57301,Patel,76494,203086,13 +57302,Matt Warner,35320,19839,0 +57303,Carmine,23516,239582,3 +57304,Driver,47186,164511,7 +57305,Sunny,9803,59335,7 +57306,Gigi,155597,27432,0 +57307,Josephine Weaver Allen,250332,2772,32 +57308,Chicken / Additional Muppet Performer,51302,68456,3 +57309,Przyjaciółka prokuratora,319999,583448,4 +57310,Dutch Farrell,79735,78393,15 +57311,Lance,347630,1695657,28 +57312,Tiwana,357441,85978,4 +57313,Eric Hannity,149509,63566,13 +57314,Paul Ames,27970,82488,2 +57315,Group Captain,32921,96064,9 +57316,Agnese,56435,16757,1 +57317,Manzon,59118,1644525,15 +57318,Chewing Gum,124157,93252,6 +57319,Tom,250376,1180696,1 +57320,,1661,1330383,9 +57321,,320299,106660,5 +57322,Fanny (Drummer),285400,103443,4 +57323,Vince,12447,1072,8 +57324,,148265,237689,4 +57325,Jane,73551,86168,1 +57326,Paulo Ricardo,296288,114484,1 +57327,Spencer,403431,1563266,9 +57328,Prince Edward of Lancaster,46758,1605318,3 +57329,Valerie,54099,167245,7 +57330,Doc,248633,127070,5 +57331,Dr. Bertleman,242042,18999,2 +57332,Anna,241258,210829,6 +57333,Marco,48846,1014934,6 +57334,,103689,1034607,3 +57335,Egon Canon,129359,580645,9 +57336,Larry,16022,6972,22 +57337,Logan,259997,62849,8 +57338,Drunken Waiter,169355,9094,9 +57339,Juanita Hernandez,121351,32194,1 +57340,Betsy Brown Shea,38769,95624,0 +57341,Francis,364379,1498214,5 +57342,Doyle - Gangster,150712,3341,38 +57343,Alexandra Veber,72822,20851,1 +57344,Trick,47186,163729,24 +57345,Matt,351242,50095,3 +57346,Audrey Gibson,218778,1223084,8 +57347,"Lily Conover, before surgery",38964,121729,3 +57348,Himself,410718,1702119,19 +57349,Mr. Newirth,7233,52117,3 +57350,Shirley,27886,1531024,10 +57351,Il sindaco di Catania,82470,564590,3 +57352,Sakazaki,106417,91873,3 +57353,Roberts - Butler,33112,544585,7 +57354,Harry Brown,67102,557006,2 +57355,Aunt Sonya,41171,918340,19 +57356,Avril,273404,188619,8 +57357,Annette,3549,32728,7 +57358,Door Officer at Strawberry Records,4688,1433496,23 +57359,Captain,10529,44237,14 +57360,Nanna,87654,1477354,19 +57361,Cashier (uncredited),22584,120778,16 +57362,Newswoman,14301,149495,15 +57363,Gertrude Bell,157843,2227,0 +57364,Phil Wenneck,45243,51329,0 +57365,Insulin,51036,1879504,41 +57366,Nils,315855,1592945,52 +57367,Woman in Road,64720,1117506,11 +57368,Cindy,84449,34066,3 +57369,Himself,125736,1271012,29 +57370,Wrigley,273167,20053,4 +57371,Jo Jin-Ho,387845,1257594,4 +57372,Lalo,52039,145208,0 +57373,Jasper Sitwell,119569,1018947,2 +57374,Cunny,6081,47850,13 +57375,Herr Johler,119820,38967,5 +57376,Raoul,17236,81503,2 +57377,Osvaldo,17003,59743,4 +57378,Achille Corbo,285858,7012,6 +57379,Gladys,168616,193357,1 +57380,Klauber,20153,83801,5 +57381,Oscar Carillo,45324,43311,8 +57382,Kindar,259835,980234,1 +57383,Gilang Sanjaya,76544,113732,9 +57384,,103875,1161018,2 +57385,Renee Walters,8888,1046948,8 +57386,Richard Hirsch,121824,1903,0 +57387,Python Team Leader,209112,104195,113 +57388,Hannah's Friend,245700,990064,68 +57389,David Moran,15356,78140,1 +57390,,29568,133093,3 +57391,Voice,303856,1243680,4 +57392,B-Girl (uncredited),43142,76494,16 +57393,Guy Lapointe,290825,85,14 +57394,Fernando,66967,222592,6 +57395,Melek,31405,97274,3 +57396,Henry Ludford,425774,1707955,62 +57397,Monica's Mom,222935,1465969,15 +57398,Bank Clerk,19971,566363,7 +57399,Bulma Briefs,24752,122193,5 +57400,Albert,251232,1442695,14 +57401,Officer Hobbs,19901,1120664,16 +57402,Jerry,308032,116088,21 +57403,Fredrik Wahlgren,76047,272929,3 +57404,Andrea Flanegan,177979,140055,1 +57405,Uncle Capucho,35032,114371,7 +57406,Liz,60420,66881,6 +57407,The Stranger,8981,17276,0 +57408,Pete Shotton,33511,233276,6 +57409,Jim,81232,550550,7 +57410,Andjelko Komatina,57419,66027,9 +57411,Wang Zi-Tai,66756,240150,1 +57412,Young Lieutenant - Firing Squad,73420,148852,5 +57413,Sol,123359,1077997,2 +57414,Wine,427680,1327166,0 +57415,Motorcycle Policeman (uncredited),47882,34103,23 +57416,Darling,352372,543726,0 +57417,Motorcycle Cop,14262,76502,11 +57418,,358199,1505210,17 +57419,Classmate,12720,227086,6 +57420,Ignatius Lafferty,255388,941239,10 +57421,Riley,26688,96029,24 +57422,,148615,140079,16 +57423,"Richard, Duke of Gloucester, afterward Richard III",46758,1391609,2 +57424,,38154,930413,17 +57425,Ed,291871,1129738,5 +57426,Charlie,172548,135795,4 +57427,Shanti Priya,8079,53975,1 +57428,Kristen Gregory,34482,85176,5 +57429,Beth,57749,221150,0 +57430,Nola,90120,99053,5 +57431,Percy Fortune,339419,1622086,14 +57432,Mr. Caldwell,135708,543256,4 +57433,Feyzo'nun Annesi,27211,97274,3 +57434,Llaves,14126,965910,4 +57435,Peter,374319,1161725,7 +57436,Bodoni,145244,21229,2 +57437,Jimmy Starks,16083,529,0 +57438,Inspektor Detektor,7459,11953,18 +57439,John,10063,62692,3 +57440,Ivan Block,146238,880,0 +57441,Woman in the Cafe (uncredited),37710,1266861,52 +57442,Man-Sik,31850,1044800,2 +57443,Kat,268174,164938,0 +57444,Kadambari's father,320910,238028,7 +57445,Tamisaburo Onoue,46069,1459982,8 +57446,Ali Khan Javanshir,371741,1187037,1 +57447,Peppino,81654,67967,0 +57448,Georgette,70119,1814099,1 +57449,Judge O'Neil,102144,30279,4 +57450,Kid #1,19912,1905544,19 +57451,Morton McGillicuddy (uncredited),126127,89615,8 +57452,Joseph,24272,140567,0 +57453,l'uomo in lutto per il fratello,403450,1879745,20 +57454,Chef,214100,1213839,15 +57455,Uncle Sam,27573,114144,2 +57456,Lady Lucille Sharpe,201085,83002,1 +57457,Janus,14642,175630,7 +57458,,60813,13680,2 +57459,Fat Willy,5899,28889,8 +57460,Office manager,28131,99792,13 +57461,Laurie,48281,93790,10 +57462,Rune Jonsson / Torsten Jonsson,30149,1150147,7 +57463,Tony's Wife,176627,13360,29 +57464,Billy Bob Silers,9629,51201,10 +57465,Molly Wood,121230,78194,3 +57466,"Mark Loving, KNS Chief",36786,3361,2 +57467,Mesera,6636,50931,4 +57468,Maria,83444,143287,4 +57469,Tieh Dan,45452,956575,3 +57470,Gary,397422,1016304,22 +57471,Michelle,40850,124828,2 +57472,Co-pilot,16082,79957,12 +57473,Haiya Dragon,39101,122373,9 +57474,Ursuline,37633,51102,0 +57475,madre di Stella,303542,1026466,13 +57476,Mr. Betti,39436,80503,3 +57477,Matsukawa,53701,227617,3 +57478,Ben Carpenter,18015,182287,0 +57479,Willie Lincoln,43806,1198371,30 +57480,Raanu,22259,29446,6 +57481,Alex McGregor,70404,10447,0 +57482,Herself,27637,1724702,47 +57483,Véronique,78572,19269,2 +57484,Boy on Bus 2,370755,1650148,18 +57485,Lante,448763,1320276,7 +57486,,73208,185016,8 +57487,Stiefschwester 1/Baby/Rotkäppchen,5393,60739,22 +57488,Amelia,359870,22969,8 +57489,Vääpeli Körmy,55761,147771,0 +57490,Little Knife,41468,1166247,2 +57491,Carter,21138,1113302,15 +57492,Young Arnold,120676,1329672,9 +57493,Soupy Mike,72096,7486,36 +57494,Nicole,276906,76999,1 +57495,Church Attendee,227306,1394462,62 +57496,Maurice Joyant,10910,24699,11 +57497,Mann,4291,2544,10 +57498,Günther Stobanski,28938,675,1 +57499,Pop,79935,99764,13 +57500,,266558,1377011,1 +57501,Viajero Tren,332872,1207285,28 +57502,Rego (as John Ireland Jr.),337789,1431448,5 +57503,Mom's Friend,28710,52125,12 +57504,Danny Wrigley,103014,62816,1 +57505,Vince Potter,46145,51717,0 +57506,Control Lab Technician,177677,1562108,63 +57507,Laurence de Seznac,157787,1139,3 +57508,Michael Weeks,71700,37073,2 +57509,Chaim,44552,46867,1 +57510,Kashinath,20364,86017,10 +57511,Karen,22899,125078,1 +57512,,186971,1075115,21 +57513,Jeff Factor,28894,78305,12 +57514,Morris,13763,57907,2 +57515,Cheerleader / Dancer #2,11247,1468244,38 +57516,Extra (uncredited),3059,63383,50 +57517,Nurse #2,25941,107393,18 +57518,Flathead's Driver,25684,1120226,10 +57519,Bevans,97051,1323612,2 +57520,Burt the Iceman (uncredited),47882,1198701,26 +57521,Journalist,47959,1099406,26 +57522,Lily Becker,43365,48958,1 +57523,Penner,6183,1083,9 +57524,Seth Rydell,24023,92429,5 +57525,Pieton,96132,1195192,15 +57526,Nargiza,150223,1870830,18 +57527,Tricky,33345,110530,2 +57528,Gregorio Cortez,12279,3131,0 +57529,Young Woman 1,242042,1268071,13 +57530,Andrew Nicholson,72822,129692,8 +57531,Helicopter Soldier #1,261273,1319650,4 +57532,,69471,19901,3 +57533,Jasmine Mayhew (2007 and 2011),51828,1331023,20 +57534,Taylor,13777,61345,3 +57535,Cafe Waitress,393172,545398,5 +57536,Grant the Mechanic,16131,60846,30 +57537,Professor Finlake,257302,1048179,10 +57538,Restaurant Patron (uncredited),76203,1292482,63 +57539,Shondor Birns,51209,4690,3 +57540,Link's Backup Singer,2976,1752310,19 +57541,Uncle John,324150,778,1 +57542,Himself,33588,556713,0 +57543,Agent Devers,76640,1144931,14 +57544,Un avvocato,66893,1095727,12 +57545,Ellen Sayburn Jessman,73313,44881,1 +57546,Mika,233639,1262570,6 +57547,Keith,79316,76021,6 +57548,Mama Nautanki,19276,239064,5 +57549,alter Waldgeist Kapytonich,14482,1190217,1 +57550,"Himself (Singing ""Yaei Re"" song)",21570,229259,11 +57551,Glen,13610,11390,2 +57552,Mr. Pricklepants (voice),10193,10669,21 +57553,Danya,352186,1253194,14 +57554,Albert,224944,1210468,4 +57555,Officer Elliot,236324,1440177,14 +57556,le maître d'hôtel Dill,252102,1377176,9 +57557,Sam Penny,921,5927,52 +57558,Billy Maldoon,2611,11510,10 +57559,Göran,33786,111363,4 +57560,Felicia,1942,1497064,16 +57561,Bill Dooly,140489,534,5 +57562,Practical Pig,109329,5462,2 +57563,Ralph 'Steve' Stevenson,41131,12151,0 +57564,Николай Крышкин,57770,238486,6 +57565,An-chan,43113,1185642,26 +57566,Immigrant,47653,13848,0 +57567,Lt. Andre Sobinski,22998,21561,2 +57568,Customer,37813,118587,7 +57569,Cameron Maddin,13241,1193257,5 +57570,Medical Research Official,38269,111491,15 +57571,Tashiro,74126,33135,3 +57572,Theresa,27916,1090177,9 +57573,Sally Grace,52867,1242816,7 +57574,Lucc,125490,139811,19 +57575,Ballet Dancer,145220,36592,30 +57576,Kitty,315664,42601,18 +57577,Joseph Craig 'Joe' Chapin,177190,13819,4 +57578,Le contremaître de la carrière,52555,28247,5 +57579,,300983,1657729,14 +57580,Chorus Girl,112083,1292781,10 +57581,Principal Holland,82631,5502,13 +57582,McCormick,128767,8930,4 +57583,Abou,266082,1646376,9 +57584,Grisha Oblonsky,96724,1795827,41 +57585,Mark Fisher,210910,1194701,1 +57586,Cheryl,55505,95939,2 +57587,,31512,235088,25 +57588,"Captain Jenkins, Head Guard",178569,14451,3 +57589,Rita,49220,590851,1 +57590,Vanessa lycée,255913,1452376,15 +57591,Maratha Emperor 'Chhattrapati Shahu',362045,85456,6 +57592,Retro,15981,68472,0 +57593,Dylan Dyer (Glory Dogs Guitar),23367,95361,10 +57594,Elizabeth,213755,35168,12 +57595,Old Sandra,264397,1324066,14 +57596,Stefan,33784,111347,0 +57597,,188684,1545055,4 +57598,assistente del maestro,43649,556759,15 +57599,Crony of Louis B. Mayer,2567,1240748,33 +57600,Betty Osgood,40957,1178608,13 +57601,Zack Petersen,112287,82660,4 +57602,Gordon McCloud,9756,58920,13 +57603,Waitress,290764,80542,23 +57604,,142656,552650,6 +57605,Dimitris,331958,1119908,3 +57606,Betty Castle,7220,218605,22 +57607,Faraday,91443,156005,5 +57608,Alexander,245891,1503859,29 +57609,Vladimir Chertkov,36811,13242,3 +57610,Heinrich Himmler (voice),267310,44567,1 +57611,Mrs. O'Mally,13493,130513,13 +57612,Cpl. Kelly,222872,166965,7 +57613,Harvey,11798,126171,11 +57614,Le spécialiste en explosifs,38883,1319890,13 +57615,Administrator,3580,203207,43 +57616,Jim,120259,1194434,21 +57617,Andrew,79550,587438,2 +57618,,1421,1723446,35 +57619,Himself,23319,552139,12 +57620,Helen,413762,174700,4 +57621,Herself,135679,1103548,3 +57622,Carol / Ayesha (as Olinka Berova),64428,37792,1 +57623,,438597,1748445,0 +57624,Шофёр инкассаторской машины,46010,86847,10 +57625,Club Goer,77930,1784658,64 +57626,Nate,353979,221945,3 +57627,Solange,181456,246358,20 +57628,Pavlaras,331958,1133244,0 +57629,Lt. Armand Corday,140887,4072,5 +57630,Bruno Walter,83209,1221635,7 +57631,Le père d'Yves-Marie,55424,24501,1 +57632,Antonis,47778,1312543,7 +57633,Alvarez,1662,59743,12 +57634,Pedro,199415,84182,13 +57635,Sampo,233917,72481,0 +57636,Mokuba Kaiba,366170,82055,7 +57637,Julia,49524,121953,3 +57638,The Warlock,26042,27422,0 +57639,,293516,147590,7 +57640,Sydney Donovan,52051,87569,0 +57641,Fritzi Kiffmeyer,45800,13963,5 +57642,Sepe,32099,108853,5 +57643,Teacher,15316,1745068,18 +57644,Karen (voice),1387,1539681,0 +57645,Bud Ditchwater (voice),5559,50807,12 +57646,Ambient Room Tech,19995,1048610,25 +57647,Terse Nurse,55347,142263,22 +57648,Jason,167410,1149018,1 +57649,Joyce's Sister,83540,1154858,3 +57650,Freghieri,48250,140107,1 +57651,Judy Dansig,186869,13023,4 +57652,Commodore Paris,188927,21041,20 +57653,Chaperon,12089,38499,11 +57654,Dharma Chauhan,103640,1339972,3 +57655,Jimmy,121006,1937,5 +57656,Jane Hayes,156711,41292,0 +57657,Millie Blake Maitland,156360,287378,0 +57658,Employee Chris,120802,1452938,23 +57659,Narrator,70815,123762,7 +57660,Barb,24927,52271,0 +57661,Mr. Drucker,26283,34180,5 +57662,Young John,72105,1063947,12 +57663,Vincent,403130,39121,2 +57664,,296750,1030277,6 +57665,Tami,363890,20493,7 +57666,Welcome to the 60's Dancer,2976,1752795,137 +57667,Dr. Philip Zimbardo,308032,8289,1 +57668,Dortmunder,46059,4135,0 +57669,Ernest (voice),126319,2178,27 +57670,School Band Member,10748,216321,27 +57671,Julian,245175,562922,1 +57672,Ivan,31442,13709,0 +57673,Therese,120399,81682,1 +57674,Ashalata,31364,1054685,7 +57675,Henri de Toulouse-Lautrec,10910,12515,0 +57676,Joe Valachi,33357,4960,0 +57677,Old man on the island,5165,523675,12 +57678,Pepe,45874,22767,6 +57679,Sesma,325173,1375186,15 +57680,Himself,15258,59258,5 +57681,"la Berthe Patouilloux, la fille du maire",78377,28254,4 +57682,Pierre,76198,7277,5 +57683,Larry Bloom,34334,123557,5 +57684,Malcolm,407448,1863662,24 +57685,Singer,381008,1049917,11 +57686,,49106,929663,10 +57687,Young Storm Shadow,14869,1115122,16 +57688,Charlotte,301348,223331,7 +57689,Airline Passenger,52122,85846,6 +57690,Virginia - Age 6,62694,133479,16 +57691,Bill King,78522,1148574,4 +57692,Stephen Hawking,266856,37632,0 +57693,Bob,14644,44560,5 +57694,Serrano,47201,5563,3 +57695,Corey's Mom,23515,1440862,14 +57696,Francesco Romanelli,64115,1137866,0 +57697,Norman,271718,2698,10 +57698,,359154,1507962,3 +57699,Redhead (uncredited),32552,1159357,15 +57700,Lora,36247,223636,1 +57701,Abhay,29538,69709,0 +57702,Roy,14809,21290,6 +57703,Gary Fields,24059,16327,2 +57704,Nate Cox,6575,52028,20 +57705,Man at Club (uncredited),17136,121325,15 +57706,Marie Elizabeth von Humboldt,115023,37411,10 +57707,Mrs. Cervantes,37628,177800,3 +57708,A.V.G.N,2979,221727,9 +57709,Mutsuko,340176,1215664,22 +57710,Disfigured Man,28325,31350,10 +57711,Indian Regiment Soldier (uncredited),297762,1502439,66 +57712,Neil (Age 8),11171,64148,5 +57713,Sam Craig,20640,12147,0 +57714,Mamma di Frengo,161545,124619,4 +57715,Bonheur,78258,583484,2 +57716,Patti Johnson,71996,593,3 +57717,Heath,16090,94293,11 +57718,Steve Norris,34652,34597,2 +57719,Philip Catelli,403450,40541,3 +57720,Tayler York,335872,207491,4 +57721,Shaya,42764,128680,12 +57722,,104251,108020,9 +57723,Muffy,174162,196511,2 +57724,Melissa Henessey,321039,1465727,4 +57725,Police Officer #2,154537,1199478,7 +57726,High Priest,1579,20194,29 +57727,Court Crier,43594,1276503,5 +57728,Lissy Anne MacBean,229757,7302,2 +57729,Unireal Hotel receptionist,2009,122784,6 +57730,Hamid Baraheri,15577,7248,4 +57731,,298584,16847,3 +57732,Nikolai,388862,142295,4 +57733,Pool Hall Goon,293660,60614,24 +57734,uncredited,60759,1484592,25 +57735,Ex Machina,244610,101088,4 +57736,Boss,341559,459004,4 +57737,Noël Galipeau à 39 ans,62363,1958,1 +57738,Illinois Congressman Arthur V. Harroway,46145,83398,5 +57739,Viktor Barinov,267481,93331,0 +57740,,285935,29836,4 +57741,Rio,28894,102328,13 +57742,Stephen Mayhew,51828,25136,3 +57743,Alan Jacobs,419459,1241,4 +57744,Steven,345916,36221,11 +57745,Russell 'Rusty' Riggs,188507,111921,6 +57746,Abstract Dancer #1,25450,1511127,20 +57747,Paul Lawton,111582,24937,0 +57748,Felicity,107985,1278125,29 +57749,Dog Catcher #1,41759,169396,12 +57750,Himself,48376,140377,0 +57751,Tess,413998,1674152,9 +57752,"Inspector Merryweather, Hong Kong Marine Police",44888,12282,2 +57753,Renato Conti,370741,223054,9 +57754,,12206,20533,25 +57755,Il bestia,173847,313610,14 +57756,Priest,206647,48377,23 +57757,Captain Richards,27414,1178364,6 +57758,Small Role (uncredited),15794,1191019,32 +57759,No Face's Wife,37702,65975,7 +57760,Ernie Green,373514,5050,3 +57761,Ryan,8457,55673,6 +57762,Prisoner from Milan,81541,102122,16 +57763,Billy Bilke,94570,1090547,1 +57764,Lakshmi Devi,20364,86015,8 +57765,Stephanie Singleton,14833,77340,2 +57766,Leon Mark,80059,46867,3 +57767,Marcus,367732,1432780,7 +57768,,188392,1004823,2 +57769,Dr. Brown,72648,33479,12 +57770,Whitey (as Steve Geray),90465,30847,10 +57771,Morris,174487,1331,5 +57772,Sparks' fat friend,90800,1192392,3 +57773,Bobby,27629,1655285,8 +57774,Inder,11122,1833097,12 +57775,Mary Magdalene,335778,46856,10 +57776,Prof. Horace Appleby,225499,20368,9 +57777,Master Zhang,17467,10071,6 +57778,Sasanka,35790,1661206,7 +57779,Chico Saroyan,1818,1655,7 +57780,Tom,24927,1087007,8 +57781,Cidinha,45179,115172,3 +57782,Dr. Marcia Lyons,53882,66221,1 +57783,Kai,57201,51754,38 +57784,,47508,1665499,9 +57785,Simone,8272,1194969,17 +57786,Campfire Soldier,1966,73401,35 +57787,Policeman,1116,1896873,38 +57788,United States Marshal,28484,81182,6 +57789,Fat Man at Party,149793,122979,23 +57790,Franky,153541,1134300,1 +57791,Communication SEAL,193756,108037,16 +57792,Big's drinking friend,32233,1361024,12 +57793,Erica,10071,62835,15 +57794,Sidonia,56344,88808,3 +57795,C.B.I Officer Kuldeep Pahwa,337876,973402,3 +57796,Passenger on Train (uncredited),45800,29987,18 +57797,Pavlik's father,260584,8475,4 +57798,Conch,228558,98104,6 +57799,Mrs. Barnes,48153,52697,6 +57800,Parsi,20359,86057,10 +57801,Duke Senior/Duke Frederick,19103,8318,8 +57802,,273868,5676,1 +57803,Le voisin,59118,1768828,31 +57804,Dead Guy in Alley,242033,1277015,5 +57805,Sheila Hammer,244458,1488235,14 +57806,Young Laurie,8194,53936,4 +57807,Todd Peterson,87428,62861,4 +57808,Dr. Diana,50108,1065019,3 +57809,Mrs. Fox,3580,154625,34 +57810,Airport Nurse,240832,24769,17 +57811,Frances Glesk,43855,34178,7 +57812,John Thompson,89551,1071195,7 +57813,Riggert,36373,33742,6 +57814,Inspector Fung Chak,69619,116423,13 +57815,Charlie Borg,40744,2101,2 +57816,Billy Batson (voice),43641,225863,3 +57817,Zarubin,142802,562612,0 +57818,Girl,226632,1541645,4 +57819,ragazza al ranch,156547,1888187,10 +57820,,47211,39334,8 +57821,Tammy,45556,125835,7 +57822,,142656,226747,10 +57823,Solicitor to Count,70734,1618649,14 +57824,,335897,1853,9 +57825,hráč šachů,41213,138842,15 +57826,Yuji Inoue,294651,1029276,5 +57827,Brandon,23823,147894,5 +57828,Herself,385379,1594325,7 +57829,Sonny Phyffe,90799,88462,4 +57830,Robert Gordon,53766,98970,1 +57831,Slatternly Woman Tenant,19335,84487,8 +57832,Security Chief,84352,199755,18 +57833,Grave Robber,68737,1366510,19 +57834,Uncle Cyrus,81996,13295,3 +57835,Heriot,60269,27752,26 +57836,Junichi Aoki,135799,110500,3 +57837,Sister,92663,1802665,7 +57838,Huligan #2,15472,144691,32 +57839,Lem (voice),16866,15033,3 +57840,Alex Tanguy (voice),356161,41035,2 +57841,,103689,1034606,2 +57842,Lil Mago,21191,87265,3 +57843,Lucca,20003,3345,10 +57844,,235092,10595,6 +57845,Elizabeth,215016,12851,1 +57846,Kyle Baker,11007,148618,13 +57847,Nori,13285,33053,4 +57848,Rudy Kurlander #2,302528,559490,12 +57849,Zhang Fei,12289,1117867,13 +57850,,86985,1523038,21 +57851,Hermann van Daan,128396,1179099,3 +57852,Theophil Munchhausen,27937,99269,4 +57853,Conductor,177677,1562085,34 +57854,Prison Guard Sergeant,26376,89728,21 +57855,Chris,18392,94286,2 +57856,Seth,345925,62654,13 +57857,Hannah (8 yrs. old),329865,1646444,7 +57858,Reporter,157843,1907175,37 +57859,Trucker,40990,196690,12 +57860,Rhonda,246011,1331269,15 +57861,"Lewis, Arnold's Henchman",147829,29626,47 +57862,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1891490,16 +57863,Karole,186991,121529,0 +57864,Cal (as Kevin Farley),335970,5620,56 +57865,Carl Reitman,207641,991212,7 +57866,Master Gregory,68737,1229,0 +57867,Himself (archive footage),47426,115863,9 +57868,Hvatayka the Jackdaw (voice),77762,1416549,6 +57869,Mrs. Joshi,21570,35750,6 +57870,Preacher,242631,192330,18 +57871,Steward,19957,12828,14 +57872,Mr. Langston,39356,3496,16 +57873,Kovacs,197849,112755,5 +57874,Arieh,336029,1414723,5 +57875,Gun Salesperson,145135,206790,8 +57876,Themselves,211411,1788313,6 +57877,,175924,30622,5 +57878,Wayne Dubois,73501,155921,9 +57879,Recruit,53423,13848,0 +57880,Young Nana,381645,1860890,24 +57881,moglie di Aldo,38286,128749,12 +57882,Dr. Kalonia,140607,17477,33 +57883,,37055,1371487,4 +57884,Ruskin's Mother,245700,65448,12 +57885,Nurse,9966,61138,17 +57886,Kamina,20986,24647,1 +57887,Lawyer of defense,117913,1070665,3 +57888,Manuela,36919,28817,4 +57889,Leon,407448,1214870,23 +57890,Russian Roulette winner,199575,1438872,23 +57891,"Morris ""Mud"" Himmel",17745,23495,0 +57892,Leslie Harmon,109475,31508,2 +57893,Ilsa Faust,177677,933238,1 +57894,Son,312174,1400592,3 +57895,Pierre Bérard,3423,3784,0 +57896,Additional Voice (voice),16866,59865,16 +57897,Rabbi in the Sonderkommando,336050,1095625,4 +57898,Bailiff,103432,104038,21 +57899,Clarisse,73160,95151,3 +57900,Margarita Ivanovna,72663,233207,4 +57901,The Man,102629,78110,0 +57902,Ashley,8277,27004,5 +57903,Himself,270724,78871,7 +57904,Sauna-Maija,219335,1303531,8 +57905,Connor O'Leary,10097,63364,11 +57906,Master Law,365222,240155,12 +57907,Rocco,7229,15482,11 +57908,Dimitri,148,1671,9 +57909,Gunnar,33091,93239,3 +57910,Father Dowling,325803,1428027,14 +57911,Laura,91070,52783,2 +57912,MNU Doctor,17654,1073473,20 +57913,Mrs. Millican,78265,89659,7 +57914,Ahimelech,2734,27647,23 +57915,Ed Briggs,171738,1154279,0 +57916,Cruikshank,69903,1232,14 +57917,"Leopold, Duke of Austria",58905,100595,17 +57918,Minnie,54242,150192,7 +57919,Zhou Zhizhong F.G. sqad member,62071,70674,8 +57920,Laura,42188,1546129,12 +57921,Omar,31031,6503,2 +57922,Mark Caldwell,62720,8724,0 +57923,Sonia,381255,1572630,6 +57924,,306555,1135591,7 +57925,Novak,34449,112393,7 +57926,Himself,22752,226599,21 +57927,Vô,228198,8568,3 +57928,Jessica Adams,14353,76697,9 +57929,Akira,26936,20341,4 +57930,,188640,1427893,11 +57931,"Amy, the maid",28299,30519,9 +57932,Takashi Makise,25716,1268632,6 +57933,Bhagya Lakshmi,111836,85883,1 +57934,Halfnut,283995,1435789,20 +57935,Henrik,229254,1530272,6 +57936,Mr. Giovanelli,4703,24599,3 +57937,Brian Thigh,16378,707,7 +57938,Fiona,320588,92877,23 +57939,La femme du village,21348,1838959,23 +57940,Ragnar Vanheden,37731,114142,0 +57941,Bill Ogden,28290,10924,11 +57942,Old John,118760,1223023,7 +57943,Man Carrying Bass Violin Case,38769,30217,27 +57944,Bulma (voice),303857,122193,2 +57945,Mikel Razanov,442949,1322574,6 +57946,Neil Dreyer,56669,1512991,3 +57947,LaPointe,452142,1595251,3 +57948,Dancer,10096,1622616,44 +57949,Ring Photographer (uncredited),921,1126804,64 +57950,Marc Fontaine,119801,10508,1 +57951,El Abuelo Nicolás,72900,567516,3 +57952,Mr. Slack,15285,1102278,10 +57953,Szukics Magda,42132,1092632,0 +57954,,148408,544842,0 +57955,Candido,74645,251768,0 +57956,Roslyn's Wired Lover,1481,1287369,25 +57957,Masked Singer,43809,1035801,50 +57958,Ida Stassen,42532,1217400,11 +57959,,142656,1056056,4 +57960,,58570,228106,6 +57961,Assessore Tarcisio Monti,139563,21235,7 +57962,Republican Senator,391995,1766295,3 +57963,French Emergency Nurse,127585,81418,54 +57964,Quinn,464111,20191,2 +57965,Oliver Keane,29117,80620,4 +57966,Alex Weston,64084,21479,1 +57967,Kate Ryan,316268,1410540,5 +57968,Agent Jack McCready - FBI,7551,21089,7 +57969,Zachariah Rigby,86838,2887,4 +57970,News Anchor,246655,1796402,51 +57971,Ice,21338,4520,2 +57972,Sorority Girl #1,28026,1242152,14 +57973,Kyle Addison,246917,104367,14 +57974,Mo-yung,334557,1450374,8 +57975,Jeanette Semmelmann,119816,124709,6 +57976,Revue Producer,52358,89733,8 +57977,Da Lisi Guard,217923,1436277,36 +57978,Faat's father-in-law,37702,29692,10 +57979,Student (uncredited),28178,1360004,14 +57980,"Mr. Korum, a Conspirator",53853,34748,8 +57981,Le père de Fred,64944,572241,8 +57982,John,337104,21136,5 +57983,Prisioneiro 4,70666,1863915,62 +57984,Grandma Blanchard,27635,17755,7 +57985,Harold 'Handy' Harrison,16784,15757,0 +57986,Emily Morton,4459,38231,4 +57987,Panda Thomas,284564,36152,5 +57988,nevěsta,36919,1191830,8 +57989,Minor Role,41597,1534322,35 +57990,Lalima,403593,1661778,5 +57991,Bellocona Steward Bringing Purse,176627,139183,13 +57992,Hipster,237584,1544813,30 +57993,Rosa Martens,8332,39908,4 +57994,Himself,63144,1084973,32 +57995,Eric,27622,97222,10 +57996,Wallace,193756,1283058,38 +57997,Roy Oliphant,46190,82749,7 +57998,Molly - Gipp's Mother,43812,967133,71 +57999,Gangster in Court,150712,1220453,12 +58000,Hal Jordan / Green Lantern (voice),14011,25934,0 +58001,Toshi,16231,79458,9 +58002,Jamie Vlassakis,67748,549319,0 +58003,Hugh Palmer,9624,9633,7 +58004,,63215,35136,46 +58005,Mario Zamboni,43548,80230,3 +58006,Blackleg Knight (uncredited),274857,1743578,60 +58007,JonBenet Ramsey Auditionee / JonBenet Ramsey Dance Double / Herself,430826,1801195,6 +58008,Abby,212756,221809,0 +58009,Whitney Addison,31277,88995,4 +58010,Yeong-joo,214910,39256,7 +58011,Joost,14979,85510,10 +58012,Patty,10407,1956,12 +58013,Advogado,254439,1408591,1 +58014,Chris Ashworth,17275,7060,0 +58015,Fenoglio,2309,388,5 +58016,Bitchy Sorority Sister,13991,1301653,12 +58017,Andy,270654,8924,6 +58018,Jane,125490,83026,9 +58019,Maj. A.M. Bagley,15807,3262,15 +58020,Rebecca,171213,1153640,13 +58021,Peggy / Margaret,271039,1328184,1 +58022,Patricia,109391,1204696,29 +58023,Trapper,176867,1290997,27 +58024,Sgt. Lo Sa,25536,25251,1 +58025,Mansur,19495,58982,0 +58026,Dr. Mewes,338,8200,13 +58027,Cabbie,31380,1337246,5 +58028,Pop McClune,4111,30537,3 +58029,Neigbor,272878,1371002,21 +58030,Sedley,18093,210485,9 +58031,Ricardo,228198,571469,7 +58032,1st Detective,72460,3414,5 +58033,Blankfein,85699,13817,21 +58034,Satterfield,39013,55789,13 +58035,Damon,56809,1833804,13 +58036,Messenger (uncredited),28293,9096,15 +58037,Tom Pettigrew,104211,89589,3 +58038,Patrick,59678,1672700,27 +58039,Ken,369406,79110,12 +58040,Ollinger,42402,6462,12 +58041,,317168,100568,6 +58042,Sophie's mother,220488,1050418,12 +58043,"Airport Traveler, Cancun (uncredited)",213681,1371002,74 +58044,Zivi 2,12128,48687,12 +58045,Ryan Evans,11887,67601,3 +58046,Laurence Montague,171075,15387,3 +58047,Jimmy,1589,17782,0 +58048,Doctor (voice) (uncredited),28681,44762,7 +58049,Trixie (voice),77887,109869,5 +58050,George Smith,31835,47178,4 +58051,Josh,46972,5346,1 +58052,André Voke,64437,38901,4 +58053,Mumbula,150223,1870825,7 +58054,Richard Fenton,36335,30766,2 +58055,Michael Moynihan,42703,18805,12 +58056,Sin Jin-ah,94555,150242,0 +58057,Lt. Robert 'Clem' Clemens,53949,93899,5 +58058,Brian Douglas,38237,76489,3 +58059,Baron,52358,29259,3 +58060,Helen,95136,4090,1 +58061,Albert,395767,155988,7 +58062,Jamie,109213,83151,2 +58063,Rakieta,375742,140661,12 +58064,Dolly Bast,48136,19110,4 +58065,Branded Rebirther,369033,1647319,26 +58066,Professor Kokintz,49876,29675,3 +58067,Grandma Dorsett,27138,179210,6 +58068,Greg,353728,1697397,14 +58069,Hervé Joncour,14753,10692,1 +58070,Officer Friedman,312174,1400600,13 +58071,Video Technician,380731,1643340,15 +58072,Cpl. Paul Anselm,10841,37338,10 +58073,Nina,13777,3053,6 +58074,Welcome to the 60's Dancer,2976,1752761,111 +58075,Bank President,53410,148053,3 +58076,Mini Hase (voice),12697,73998,6 +58077,,18908,1440942,19 +58078,Ingrid,19918,2051,10 +58079,May,334557,103598,3 +58080,Hans Speidel,139862,27419,3 +58081,Shigeyoshi Inoue,131739,234645,8 +58082,Joe Prividi,190269,2009,2 +58083,Peter Gunther,29116,33033,6 +58084,Harold Shaw,87514,112722,11 +58085,Kate,85230,33677,3 +58086,Quentin,94251,141520,10 +58087,Martin Nakos,356483,1736,1 +58088,Lady Vain,16652,219486,5 +58089,Jake (proposing man),385372,1450380,18 +58090,Sir Joel Cadman,28437,8727,0 +58091,Dr. Peter Buynak,158015,1186025,12 +58092,Mike Jessop,145135,52924,11 +58093,,196469,522,2 +58094,Lou Fiola,38743,39012,5 +58095,Esther,55853,551792,11 +58096,Gianna Favaretto,161545,239941,14 +58097,Andy Hayes,13835,449,1 +58098,Angela Reichert,46121,117750,5 +58099,Zuma,424661,1706745,14 +58100,Santa,42709,152599,5 +58101,Ambrose Claverhouse,43346,67676,3 +58102,Jane Brighton,31277,81395,1 +58103,Manabu (voice),24675,21063,2 +58104,Cor van Deventer,18927,942749,4 +58105,Sheriff Grady,30708,33544,15 +58106,Rachel,164331,41687,0 +58107,Colonel Bagley,616,3417,5 +58108,Hitomi,11633,70099,2 +58109,Jodrg Schönberg,102155,30979,20 +58110,Club Girl,323675,1659263,30 +58111,National Guard Singer / Dancer,340275,1531616,62 +58112,Mr. Alva,9787,17413,10 +58113,,42430,71080,0 +58114,Lt. Col. Arson,14977,18999,8 +58115,Shanghai Girl,269173,1312524,32 +58116,Eriks advokat,87654,1126619,3 +58117,Kossil,9795,59310,5 +58118,Sticks,72431,5384,10 +58119,Hazel Buck,30644,4097,1 +58120,Nicholas,315880,1646439,6 +58121,Stanley,22585,116805,8 +58122,Mary Scott (uncredited),61151,1185412,13 +58123,Eigenaar wassalon,138502,88154,11 +58124,Baldy,121230,13357,11 +58125,Gang Leader,32540,75076,7 +58126,Weißer Büffel,7085,51889,7 +58127,Henry Stuart Clarke,69065,3895,0 +58128,Wash,16320,21088,2 +58129,Rasta 1,348320,1869092,23 +58130,Dave Rickard ('The Old Man'),28484,100919,7 +58131,Johnny Sombrero,60547,130346,5 +58132,Foreman,128917,1088205,13 +58133,,74481,84956,10 +58134,Jonathan,417489,2681,3 +58135,Bert Keon,73896,40185,9 +58136,Dr. Nathan Sands,46020,21315,0 +58137,Jay,18803,12261,1 +58138,Police Sergeant,171446,10806,23 +58139,Vanessi,30941,157497,24 +58140,Père Volitza,24685,7108,8 +58141,Lena,63281,143741,4 +58142,Véronique Caron,16147,79619,15 +58143,Sir Philip Crouch,86049,14815,6 +58144,Mrs Wynott,14215,77702,4 +58145,Conti,49712,1004,6 +58146,Charles Seagrave,171594,19329,5 +58147,Li Er,16687,1021200,4 +58148,Albert Feather,42066,39799,1 +58149,Shepherd Lad,36597,85065,15 +58150,,322614,1566184,3 +58151,Francesco Ducci,27703,97684,4 +58152,Gregor Strasser,102155,50764,4 +58153,Raton,42552,128188,2 +58154,Prof. Weissinger,328032,1852,2 +58155,Gisle,360249,76556,2 +58156,Dorothy Ruth,61225,1484864,26 +58157,Himself,14923,7399,77 +58158,Bar Patron,360592,1512192,18 +58159,Scarlett (Teen),16996,17270,5 +58160,Mona,39800,56105,8 +58161,F-18 Pilot,20674,12797,18 +58162,Isa,277687,53441,2 +58163,Ellen Branford,418969,1212016,1 +58164,,9787,74242,19 +58165,Lane,351211,86046,4 +58166,Abigail,2734,27642,16 +58167,"Mr. Cass, Philip's Father",217948,1009399,3 +58168,,354667,146148,4 +58169,Nick,27941,21355,0 +58170,Darcy,102362,55470,3 +58171,Ellen,270851,108696,9 +58172,Yvonne Orlac,2974,29246,1 +58173,Pirate / Indian,273106,1519567,22 +58174,The Younger Sister,191068,128164,1 +58175,Irma Johnson,4932,21459,3 +58176,Peterson,178927,128324,6 +58177,Captain America (voice),284274,75038,2 +58178,Papa Sangwa,57654,1811548,3 +58179,Receptionist / Polly,18698,940179,5 +58180,Howard,8272,205578,16 +58181,Louis XVI,99579,72320,3 +58182,Sebastiano,403450,1879742,10 +58183,"Miriam, l'infermiera",43211,1885524,10 +58184,Beverly Penn,137321,567269,1 +58185,Laughing Buddha,248376,65975,11 +58186,,232711,1046504,3 +58187,,13653,1816295,10 +58188,Valdemar Palm,129359,81232,2 +58189,Simon,384737,9452,6 +58190,Police Chief Auditionee / Himself,430826,1891510,31 +58191,Ustad,159636,618699,3 +58192,Wearie,36530,115535,6 +58193,Luc,37609,133525,6 +58194,Principal Spanish Girl,52859,1044338,21 +58195,Kreisleiter,10129,5234,2 +58196,Himself,85984,2641,2 +58197,Jim Conrad,10900,67711,17 +58198,Logan Daly,266425,1313159,31 +58199,Zee,287170,1353680,5 +58200,Pablo,44282,144213,1 +58201,Woman on Street,43806,1551012,63 +58202,Croatian Soldier 2,255160,1898254,42 +58203,Satan,150056,233964,7 +58204,Briggs,102668,1031784,9 +58205,Patsy,19740,157227,9 +58206,Fatty,125300,1466,5 +58207,Tree,14834,55638,3 +58208,Stan Laurel,126832,14950,0 +58209,Mrs. Snow,109491,1393332,20 +58210,Larry,8272,54246,4 +58211,Le juge Salabert,61361,44560,7 +58212,,38099,119653,20 +58213,Jose,200331,105176,5 +58214,Rocco Gibraltar,117426,1065449,4 +58215,Telephone Operator,43812,117636,85 +58216,Greta Wyatt,168027,1380651,5 +58217,Compeyson,121674,1796446,20 +58218,detective,53042,147104,7 +58219,Rattlesnake,266285,1459402,31 +58220,Bit Part,18651,974833,22 +58221,Himself,293262,1246373,8 +58222,Jesse,142989,216140,2 +58223,Kostik,142746,118338,5 +58224,Danila,62731,235322,10 +58225,Pera,41610,69037,5 +58226,Bartender Bob,36691,115978,19 +58227,Eric Keating,111470,8731,4 +58228,Scalphunter,32068,161285,8 +58229,Han Zhibang,10703,127269,2 +58230,Herr Fleischhacker,12128,1295918,7 +58231,,386100,1394311,18 +58232,Psychic Tanya,39536,567592,4 +58233,Vishnu,20968,86020,4 +58234,"D. Caputo, Ragman",37083,3142,11 +58235,Lori,381645,1174106,12 +58236,Mark Foster,28425,83253,4 +58237,Ms. Kettering,27122,133047,9 +58238,Terry,39517,47734,11 +58239,Paul,49559,136170,11 +58240,Charlie,9042,15555,4 +58241,Ralph,72648,113933,6 +58242,Brady,239018,1181295,7 +58243,Patricia,447758,1782023,23 +58244,,73628,569894,3 +58245,Donald the Monkey,38317,1428580,18 +58246,Herself,413579,1727925,6 +58247,Nia,20986,90136,3 +58248,Mort (voice),270946,28637,9 +58249,Hélène Baraduc,66447,35962,7 +58250,Group W Sergeant,5638,588,22 +58251,Himself,58467,1704741,43 +58252,Kenny King,43092,113,2 +58253,Sara Mai,72057,35102,2 +58254,Dr. Shastri,55376,629478,14 +58255,Zio Alfredo,403450,1189964,12 +58256,Kanao Satou,51549,123739,0 +58257,Rudy,45729,119421,3 +58258,Dennis Marx,45013,32597,9 +58259,Indian Girl #1,33541,1392839,22 +58260,Taylor (as Gary Phillips),85200,1709372,10 +58261,Malcolm,225728,1007683,4 +58262,1. Soccer Fan,9252,17544,11 +58263,Dr. Lancaster,186227,33698,34 +58264,Udo,53256,42445,14 +58265,(uncredited),147287,1083955,5 +58266,Detective Gill,345918,169792,12 +58267,Kalgar,21533,32751,16 +58268,Ash,95516,206177,1 +58269,Curtis Jackson,362026,1516696,3 +58270,Villalobos,11056,123212,6 +58271,Inspector Meenakumari,320910,562177,4 +58272,,60316,551676,0 +58273,Katie Blane,108222,94928,2 +58274,Dr. Miles Edwards,286567,1271,3 +58275,Link/Sartana,147575,1046524,0 +58276,Infermiera,419522,1803366,16 +58277,Felicia Laurel,239513,104053,4 +58278,Jan,239562,63234,0 +58279,Silvia Santi,108535,31895,2 +58280,Ward,362439,1523656,6 +58281,,204007,237475,1 +58282,,421365,1287133,3 +58283,Truck Driver,244786,1503836,24 +58284,Sands,183258,67205,5 +58285,Commissioner Alan,212996,553867,14 +58286,Eleonora Fonseca Pimentel,56943,2319,0 +58287,Hans Hauge,55612,1010903,6 +58288,Vater,313896,4936,5 +58289,Prison King,145220,55936,22 +58290,Baker's wife,23378,20747,2 +58291,Willie Chandler Jr.,15356,78142,4 +58292,Major Surov,76714,14528,1 +58293,Prof. Dr. Ernst-Günter Schenck,613,7803,6 +58294,Carlo,23619,1389992,13 +58295,Big Pete,331962,583263,24 +58296,Isabella,57816,226955,3 +58297,King Lear,46915,3359,0 +58298,Nobu,402455,1098322,22 +58299,Gonzalo Pelayo,98586,1604,1 +58300,Bill,9753,58971,3 +58301,Matt Weston,59961,10859,1 +58302,Varya,57889,227085,2 +58303,Zaga,255160,48791,4 +58304,Agent Murphy,286567,62784,5 +58305,Carrie,222872,119884,5 +58306,Le professeur de dessin / Le libraire,52713,24763,4 +58307,Raymond Bunion,156389,1145581,1 +58308,Blondie Bumstead,3937,34178,0 +58309,Katherine,73943,43257,5 +58310,,325428,1462256,4 +58311,Andrew McDhui,15081,2463,0 +58312,Kate @13,227094,1608637,8 +58313,Tibor Czerny,31993,18156,1 +58314,Rachel,55934,557580,3 +58315,Bartholomew's Bee Asst.,47404,34759,10 +58316,Cello Vampire #4,346672,1905791,30 +58317,Link,4380,2283,4 +58318,Debbie,25973,50346,7 +58319,Nick Taylor,71120,11366,0 +58320,Herself - Co-Host / Narrator / Clip from 'In the Good Old Summertime',33740,66776,5 +58321,Mrs. Boswell,22881,21165,7 +58322,Johnson Kid,72856,1388784,9 +58323,Zelda,83788,400,1 +58324,Cartoonist,134750,1100017,0 +58325,The Reporter,280617,229164,1 +58326,Clare,204255,1252524,4 +58327,Prince Naveen (voice),10198,66252,1 +58328,Wheelchair Woman,45132,109785,27 +58329,Sarah Baker,11007,58965,6 +58330,Immigrant,47653,21301,1 +58331,Bartlett,15935,78956,10 +58332,Newbie,369033,1647322,32 +58333,Mr. Frampton's Foreman,49500,97172,9 +58334,,71725,1136708,6 +58335,Elmer Smith,47921,30004,3 +58336,Real Sophia,327528,1494008,11 +58337,Seb,67509,89626,8 +58338,Amanda Prynne,99283,88867,0 +58339,Second Aunt,31532,8232,7 +58340,Célia,248543,10055,3 +58341,Darlene,11354,1321560,10 +58342,State Trooper McCleary,773,14329,20 +58343,Edna,182349,66071,2 +58344,Prothero,121154,117192,6 +58345,Cristóbal Ramírez,84354,1161652,6 +58346,Additional Voices (voice),130925,91776,23 +58347,Glen,428493,1270464,13 +58348,Kagenuma,45489,554496,3 +58349,Himself,173301,1295980,6 +58350,Bus Driver,38269,131054,18 +58351,'Gentleman' Tim Madigan,121351,29521,0 +58352,Ok-ran's father,321191,1293080,7 +58353,Mother,54491,2453,1 +58354,Brazilian Man,11045,94432,14 +58355,Digby Geste,189621,27733,1 +58356,Maude,19740,20011,7 +58357,Moglie del Generale,379873,1625626,21 +58358,Detective A,57100,1258444,12 +58359,,57889,86668,7 +58360,Sudeep,148265,389604,0 +58361,Marlene,227200,976738,4 +58362,Johnny Rizzo,43938,130227,0 +58363,Spooner,791,11827,3 +58364,James Clown,377587,80757,4 +58365,Thane,225728,1394406,30 +58366,Kazuko Yoshiyama (voice),14069,122473,6 +58367,Himself,145220,16450,39 +58368,Grandpere Bonnard,178587,4121,6 +58369,sicario,165159,119370,15 +58370,First Buff,1278,16352,8 +58371,Marthe Rebatet,284620,117884,2 +58372,Dion Kapakos,59838,9626,3 +58373,Young Harry,50416,52458,4 +58374,Nikola Kozlow,59965,6283,5 +58375,Anna,204965,1187351,9 +58376,Arturo,129115,1107944,1 +58377,Party Guest,149793,1072363,20 +58378,Aunt Jennie,27986,83237,8 +58379,Charles Reeves,157343,30007,6 +58380,Bridget,9287,141658,7 +58381,Yvonne Jensen,11391,69186,3 +58382,Abramo Piperno,75532,14151,4 +58383,Himself,276536,15488,6 +58384,LaMaze,177902,99377,12 +58385,Henry,59419,77344,6 +58386,Princess Alexandra,263065,515,2 +58387,Alejandro Rivas,37628,177802,4 +58388,Himself,190940,78245,23 +58389,,137504,7456,11 +58390,Caddy in Haiti (uncredited),28293,87825,18 +58391,Effy's Mother,251232,135753,6 +58392,Messenger's Chauffeur,153163,105455,25 +58393,Karen Collucci,9959,36190,2 +58394,Ron Nasty,32694,70624,1 +58395,Denise,137182,1106965,8 +58396,l'avocate,329724,17463,7 +58397,Madge,157305,1138634,1 +58398,Helen Holliston,113525,152723,4 +58399,,43095,1663037,8 +58400,Suburban Housewife,224282,1209860,10 +58401,Abby,39414,54693,1 +58402,Old Tom Stanfield,49500,1120071,10 +58403,Nick,387399,1475369,18 +58404,,62896,116157,1 +58405,Отец Иннокентий,83456,86870,7 +58406,Lotta,29923,105252,3 +58407,Darma,29352,45984,4 +58408,Himself,128140,1161076,1 +58409,Shelly,91551,112824,4 +58410,Himself (archive footage),173301,10593,1 +58411,Ellen Whitcomb,20640,20366,2 +58412,Georgiana,245700,1798347,35 +58413,Herbert,237171,1271861,9 +58414,Kissing Friendsy's Customer (uncredited),88005,1672382,34 +58415,Nathalie Morin,21435,35137,0 +58416,Dr. Spitz,173153,19208,8 +58417,Sally,200727,66442,4 +58418,Pan Am Executive #1,2567,1674587,31 +58419,Samuel Gummere,14815,18071,4 +58420,Vendeur de Voitures,337,6554,9 +58421,Major Godber,14531,86479,5 +58422,Vimal,341420,1187402,1 +58423,Herr Lehmann,203833,70153,31 +58424,Kyung-jin Yeo,10103,63436,1 +58425,Laurie,290714,1361064,8 +58426,Herself,181454,577686,5 +58427,Carver,85494,15992,6 +58428,Mrs. Schanz,345003,1478273,6 +58429,"""Professor"" Stanton",38437,33033,7 +58430,Klaus Diesterweg,246860,111420,3 +58431,Fat Writer,131799,12827,9 +58432,Dr. Philipp,1917,18178,1 +58433,Lunin,81030,24826,7 +58434,Chieftain Meroki,422906,130942,8 +58435,Flavius,293380,938390,7 +58436,Sara Jönsson,19181,1097787,6 +58437,Drunk Guy (as Anthony Fuller),31821,574108,14 +58438,Scooter,44682,131254,4 +58439,White Power Inmate,354979,1313152,27 +58440,Melissa Collins,113700,1057661,3 +58441,Roger,31880,26457,1 +58442,Tom Wyatt,46623,857,3 +58443,Mia Williams,24469,91643,0 +58444,La cameriera,3520,1855135,11 +58445,Col. John Patterson,131351,58663,11 +58446,Yvonne,85883,944416,7 +58447,Yvon Rance,64357,21171,1 +58448,Hausmeister Rettich,9252,36576,4 +58449,T-Man (uncredited),15794,117584,48 +58450,"George, stage doorman (as André Van Gyseghern)",122221,984371,5 +58451,Mr. Wisley,2977,6366,7 +58452,Detective,11012,11207,12 +58453,Hans Jacob Geiz,102272,36570,1 +58454,Francesco,298722,78535,1 +58455,Oste,56853,1900892,26 +58456,Client,369033,1647317,23 +58457,Power Plant Guards,177677,1562103,55 +58458,Médecin a l'urgence,46738,592718,7 +58459,EHC Operator,71670,1288733,27 +58460,Invitato Matrimonio,59040,1606424,25 +58461,Mary,88390,16173,16 +58462,Kate Maxwell,77645,70035,0 +58463,Young Tess,6557,1564961,18 +58464,Un avocat ('Le divorce'),98302,18778,13 +58465,"Christopher 'Chris' Dollanganger, Jr.",236399,1271473,3 +58466,Acombar,77165,39854,1 +58467,Chasely,18557,110421,3 +58468,Blondie Bumstead,3941,34178,0 +58469,Dammelo,222517,129968,10 +58470,Jerry Goss,12526,18688,2 +58471,Drips,130925,1092247,11 +58472,Fredo,161545,1496179,15 +58473,Miss Jenkins (uncredited),85507,29953,8 +58474,Indian Boy,149515,1373902,4 +58475,Aigin,2172,1647,0 +58476,Earl,122857,163794,15 +58477,Additional Voices (voice),130925,86007,26 +58478,Denise Benson,55638,80596,3 +58479,Traffic police officer,117506,1621713,13 +58480,Stanley Millard,56533,7633,4 +58481,Henchman,26881,567077,15 +58482,Anahí,85549,1080023,2 +58483,Esteban,80304,20190,4 +58484,Sherman,19582,84844,0 +58485,Bruno,10500,20016,1 +58486,Камиль,20963,86863,3 +58487,Max Stone,200505,20379,11 +58488,Arthur Gilman,75090,55152,3 +58489,Yamazaki,72933,58675,1 +58490,Joseph,235260,1698788,24 +58491,First Cabbie,32489,153537,13 +58492,Officer,310133,1653007,9 +58493,Tilda,269258,147444,2 +58494,Receptionist,8988,1741958,33 +58495,Lee Vivyan,28704,21127,7 +58496,Minor Role,43806,124875,62 +58497,Declan Murray,10097,2468,4 +58498,Todd Cutler,193893,1251286,7 +58499,Isa,3716,5496,2 +58500,Gabrielle,14215,1245743,7 +58501,Superintendent,83491,119211,5 +58502,Hubert Deprez,319340,9005,5 +58503,Nandini,63414,113809,1 +58504,,16017,589070,8 +58505,Vendor at Drive-in (uncredited),15794,1163350,30 +58506,Giorgio,333884,5412,2 +58507,Serina,29638,1366693,6 +58508,Babis,35396,107836,3 +58509,Arturo Toscanini,315664,20282,12 +58510,Suzi,43656,3130,0 +58511,Prince Alexander Shcherbatsky,96724,36666,22 +58512,Elizabeth 'Betty' Cream,52270,83475,3 +58513,Ptolemy,1966,51120,32 +58514,Gen. Norman T. Vance,10005,14888,4 +58515,Dallas,110540,120704,9 +58516,Erik Lindström,32099,108865,18 +58517,Quinceanera Patron,268920,1755074,79 +58518,Piglet [Pyatachok] (voice),36162,99265,2 +58519,Lee's sparring partner in opening scene,9461,62410,1 +58520,Tourist,222517,1699950,13 +58521,Detective Emmett Fields,70436,114019,1 +58522,Himself,125736,1271006,20 +58523,Juez,69060,1458464,5 +58524,Aunt Milly Forrest,116232,85956,8 +58525,C.C. White,1125,15564,6 +58526,Francesca,298722,132068,6 +58527,Dance MC,22606,89013,7 +58528,Clip from 'Idiot's Delight' (archive footage),33740,111401,37 +58529,Otto Preminger,294016,7803,19 +58530,Sofi,129115,1187533,2 +58531,Big Boy,164504,95276,6 +58532,,186971,1605815,32 +58533,Tommy Woodry,32684,50997,1 +58534,Sylvia Porter,40139,1167171,6 +58535,Kishan,160261,928181,11 +58536,Ivan,42941,110470,18 +58537,Fred Blue,120259,4073,8 +58538,Mike Kattan,205587,38582,7 +58539,Le père de Gus,20200,19162,4 +58540,Carolyn Cassady,156277,8329,2 +58541,Jesus,235260,647347,1 +58542,Mac Drummond,176867,84640,9 +58543,Mrs. Hepworth,16410,3674,7 +58544,Camp Director Donna,9779,158441,27 +58545,Aunt Amy,27629,127516,15 +58546,Badshah,325555,585404,7 +58547,Charlie,24632,63813,6 +58548,Tiny,122930,206637,1 +58549,Adams' Assistant (uncredited),14615,89601,66 +58550,,392832,1110868,8 +58551,Pilate,235260,183151,12 +58552,Joe E. Lewis,228034,60275,14 +58553,Natasha's Mother (as O.A. Zhiznyeva),83435,929559,5 +58554,Baby Neptune,19255,84411,12 +58555,Club Doyen,3716,5117,10 +58556,1st Lt. Roy R. Steele,37468,117749,14 +58557,,43967,549565,26 +58558,Thurmond Prescott,19989,7502,2 +58559,,142656,213492,1 +58560,"Dorota, córka Kolędów",38869,589235,2 +58561,Takigawa's master,20530,131021,12 +58562,Swimmer (uncredited),152570,592395,12 +58563,Stinky,31146,33262,20 +58564,jako Ksiądz Józef,406449,549372,18 +58565,Dr. Dahlin,315837,20699,10 +58566,le prisonnier électricien,43000,278368,7 +58567,Felix Jungherz,61035,4621,0 +58568,Imperial Consort Jin,69310,1236264,30 +58569,Hot Shot,72856,1194425,2 +58570,Steve's US Agent,63578,101034,7 +58571,Ackar,22259,12077,2 +58572,Astronaut Randy Claggett,266314,2222,2 +58573,Helena,128767,559975,3 +58574,Mindy,87587,96624,1 +58575,Sergeant Zuma,868,13103,9 +58576,Daniel Wilde,35558,162815,12 +58577,Housewife,3782,110300,20 +58578,Helen,8144,53952,4 +58579,Leonie,73262,142660,3 +58580,Nurse Jones,62694,106584,32 +58581,Mabel Anderson,20325,30185,3 +58582,The Queen,16378,218220,16 +58583,Consuelo Contreras (as Tula Parma),28438,100987,7 +58584,Woo-Jin,338729,573794,21 +58585,Billy,73700,63916,9 +58586,Clubchef Tom,30508,10246,5 +58587,Maysie - Baby (voice) (uncredited),29020,121038,0 +58588,Young Singing Skin,13777,75271,25 +58589,Tina,52847,13299,8 +58590,Diane,345054,21859,4 +58591,,49961,143116,12 +58592,Nick,64183,12889,2 +58593,Paige Stack,14666,10695,3 +58594,Butterscotch,238302,84080,9 +58595,Sofía,342163,1549744,3 +58596,Rudy Patti,195385,15139,0 +58597,Linda Wepner,373546,3489,1 +58598,Young master molesting Yin Er,18731,1398251,19 +58599,Gail Timmins,290555,207491,7 +58600,Paul Budiansky,13056,5414,3 +58601,"Tyson, Bossov telohranitelj 2",341559,1496484,15 +58602,Barbara,26581,95692,2 +58603,Agnes Stewart,40085,124010,6 +58604,Phil Corkery,62728,5049,2 +58605,Germain Lesage enfant,41277,553891,1 +58606,Gus Gruber,71147,5892,4 +58607,Uncle Kwan,24163,1275568,11 +58608,Judy Worstall,53574,1215925,1 +58609,Himself,406431,81978,9 +58610,King Julien,270946,62389,10 +58611,Col. William Stryker,246655,1056053,7 +58612,Libby Lam,35558,105831,6 +58613,Jack Marlow,37992,72059,0 +58614,Andy 'Bucky' Buck,11351,134450,8 +58615,Geometra,56339,1496177,10 +58616,Manager Bunkichi,43364,134407,14 +58617,Koichi,50759,213479,2 +58618,Lightning (voice),13654,1206,1 +58619,Easik Mother,283995,1718567,37 +58620,Patient,239519,1184839,8 +58621,Headmistress Band - Bass,84994,1223324,3 +58622,Dr Slattery,62143,14264,18 +58623,(uncredited),210653,1359357,12 +58624,Ange Papalardo,37645,126725,27 +58625,Mexican Youth,83831,1293806,5 +58626,,338309,83629,3 +58627,Stavros,37958,10822,7 +58628,Holmes / Lee,94248,42156,0 +58629,Colin,308269,1447879,9 +58630,Runner,139582,1113440,7 +58631,Diane,171698,51536,1 +58632,Gitarrenspieler,3716,1406147,16 +58633,Man in Audience Next to Elmer (uncredited),51303,148429,10 +58634,Madge,43022,94156,3 +58635,Old Bride,264397,1324065,13 +58636,Lawyer,120109,34278,8 +58637,Judge Caldwell,37420,2081,5 +58638,Actress,259694,63914,13 +58639,Bats,339403,134,3 +58640,Sabrina,82495,74121,3 +58641,Gwen,210047,1193593,7 +58642,Basher Martin,23367,4442,5 +58643,Sir Frederick Barker,44208,2435,1 +58644,Dani,63045,73454,5 +58645,Football Jock,14123,1213390,25 +58646,Stage Announcer (voice),9928,207676,13 +58647,Beth Peters,9890,5351,9 +58648,Technomage Galen,10916,20817,4 +58649,Fortune Teller,339148,62417,2 +58650,Anna,3549,32682,1 +58651,kapitán holandské lodi,41213,134720,5 +58652,Ted,244268,212828,5 +58653,Sa Sa,11636,64434,3 +58654,,293189,1867763,1 +58655,,57983,235668,4 +58656,Charles Slomer,18774,39024,8 +58657,,267977,1600868,3 +58658,Evan M. Wright,71825,380,3 +58659,Totò,43379,592526,1 +58660,Faðir,72596,236790,1 +58661,Rose,87587,74303,9 +58662,General Reade,3072,46418,9 +58663,Julie,12273,86069,4 +58664,Zach,153854,1140132,4 +58665,Guardsman,72251,177417,5 +58666,Sgt. Elliott,108345,6577,2 +58667,Gregorio,379873,1879765,24 +58668,König,374247,1855,4 +58669,Michael,47959,231273,3 +58670,Melody,11496,1525607,6 +58671,Himself,253337,1199754,8 +58672,Dr. Kailash,303966,1036355,2 +58673,Marvin,4257,11827,8 +58674,Pedro Gonzales,111470,89691,11 +58675,Odile,10268,64551,18 +58676,Reporter,229297,35918,28 +58677,Monto,96147,53362,10 +58678,Sam,32091,108831,3 +58679,Ronnie (Bully 2),256962,1168174,18 +58680,Lilja,178446,1859,8 +58681,Lina,227262,1186434,3 +58682,Theatre Actor,245700,72310,33 +58683,Corey,47194,141041,13 +58684,Angela,241254,84698,3 +58685,Mia,311093,34845,2 +58686,Michael,430250,935201,1 +58687,E.R. Doctor,293863,1459148,33 +58688,Captain Nokes,12412,27740,18 +58689,Tall Girl,36691,94098,25 +58690,Secret Sisterhood Girl,206197,1506488,26 +58691,Police riot squad (uncredited),340275,1531624,70 +58692,"Djip, Her Son",125700,1838443,3 +58693,Jack Foil,145162,66884,2 +58694,Drunk Rioter,367732,1537753,10 +58695,Piero Mazzarelli,39979,72660,3 +58696,Himself,47426,126131,7 +58697,,1838,121519,15 +58698,Patrick Bateman,10041,1529025,6 +58699,Tommy Gordon,26376,81970,0 +58700,Radio Announcer,16444,119364,20 +58701,Mayor,49522,29699,5 +58702,Patrizia Pecorazzi,121510,27275,8 +58703,Mang Moom,15003,1044537,4 +58704,Judge Barry,60269,1605162,18 +58705,Alvin,20304,150194,10 +58706,Ispettore Folliero,60014,567977,5 +58707,Drumchild,16171,79871,20 +58708,Vernon M. Davis,345003,1695123,21 +58709,Балясный,20879,67504,5 +58710,Carlos,237796,1318456,8 +58711,Clancy,210910,1165061,8 +58712,Robert Pratt,8270,14888,5 +58713,Ritchie Simpson (voice),408220,4654,8 +58714,Director,14543,9340,11 +58715,Migrant #5,273481,1794928,35 +58716,Albert (voice),77459,77928,6 +58717,Joy Burns,1550,1276,2 +58718,Frank Sheldon,94009,78902,2 +58719,Girl on Bus,693,44948,19 +58720,Edward Judd,77949,119783,14 +58721,Sheldon,22387,85937,9 +58722,Tony Santini,30349,1004,0 +58723,Ruth,188161,7404,6 +58724,Taggy,35392,114236,14 +58725,Mägerle,12631,26891,6 +58726,Claudine,71496,563082,2 +58727,Paula Hall,371645,15298,3 +58728,EMT,425591,1753245,15 +58729,Guinevere,7096,17286,6 +58730,Cyrus,39053,21007,1 +58731,Klavdia,58416,227809,1 +58732,Murray the mugger,20444,36927,8 +58733,Tony,295964,3872,7 +58734,Don Michele,31111,107624,3 +58735,Amante di Cunegonda,74645,119996,6 +58736,Jeremy Reins,85414,10822,0 +58737,Fily,266082,1646373,3 +58738,Pang,177677,1562083,32 +58739,Waitress,334527,1865504,24 +58740,Nicky Sloane,411741,141034,4 +58741,Mouse (voice),28118,55466,3 +58742,Peg,110598,1050066,4 +58743,Oliver 'Ollie' Hardy,43889,78057,1 +58744,,142085,1199148,2 +58745,Hotel Bell Boy Luca,37710,1626325,25 +58746,Harry Cooper,363890,54855,5 +58747,Adelheid,11869,13375,5 +58748,,228339,1277476,6 +58749,US Army Major (uncredited),329865,1646464,63 +58750,Rene,246133,139150,6 +58751,Tony - Pat's Dance Partner,46586,9912,15 +58752,,115616,47944,12 +58753,Le livreur,334317,20082,9 +58754,Mara Lorbeer,328032,1450938,1 +58755,Billy,384450,1222306,8 +58756,Phil's Dad,339419,1650212,58 +58757,Underground Fight Patron,209112,1692027,75 +58758,Ray Cagney,274479,171631,55 +58759,Principal,365222,118352,13 +58760,Poon Dong,15092,141,12 +58761,Booth Girl (uncredited),214756,1759681,98 +58762,Himself,174769,1075431,4 +58763,Mrs. Hodges,429238,129420,8 +58764,Grumio,91715,13557,5 +58765,Rosemary,271714,62001,11 +58766,Theresa,43228,1234569,16 +58767,Rosie,358895,1720702,14 +58768,2. Mover,9252,2315,9 +58769,Sharky,65282,40221,11 +58770,Joe,301334,1723616,10 +58771,Doctor,8899,1637840,13 +58772,Amanda Meyer,111014,1052133,2 +58773,Imogen,26123,1224744,10 +58774,Lady Bolton,18651,34331,40 +58775,Mrs. Freeman,47312,39002,9 +58776,Marina,21752,996215,10 +58777,Pratap's Girlfriend (as Upasana Singh),170838,87329,6 +58778,Ballerina (Death),16082,79955,10 +58779,Wanda,71859,6751,3 +58780,Herself,27637,1470882,35 +58781,Roberta Walls,258480,1545502,16 +58782,Ray Biddle,28433,12149,0 +58783,,260522,582505,5 +58784,Helen Corkery,118900,99329,10 +58785,Leutnant Schmidt,45398,133123,9 +58786,Fred Shalimar,57103,32923,8 +58787,Irene,10500,1339475,12 +58788,Lone Woof (voice),27653,167656,13 +58789,Blakeley,19174,153535,3 +58790,Rebecca,252028,1287319,9 +58791,Detective,56599,80704,0 +58792,Chief Hunter,89337,12410,6 +58793,Sloan Cates,11172,55152,22 +58794,Nan-Seol,94555,1029185,3 +58795,Krishnan's sister,398786,1200570,13 +58796,Torquato Torquati,75532,241197,9 +58797,Il socio,249457,119950,10 +58798,"Church, Man at Party",179066,100078,53 +58799,Hunk,27973,30005,5 +58800,Bulo,440508,58123,15 +58801,Sarah,11321,55258,8 +58802,Åke's grandmother,125926,568681,4 +58803,Miss Barrow,197611,68642,8 +58804,L'avvocato dell'accusa,132122,5404,4 +58805,Mulher Beijo Triplo,70666,1863908,51 +58806,Karl Glock,30921,97878,4 +58807,Gavrilo Oleksich,10235,67504,2 +58808,Justin Russo,26736,95136,2 +58809,Shiki Ryougi,23155,9711,0 +58810,,25626,112563,40 +58811,Voice Over,26298,3776,0 +58812,Wellington's Wife,53387,89523,3 +58813,Maryann,229182,94482,2 +58814,Leslie Van Houten,381737,549775,3 +58815,Nico,272426,56602,1 +58816,Ellen Garrison,336271,51538,7 +58817,Irene Castle,18651,30003,1 +58818,James,8282,33525,7 +58819,Infant Sydney,339419,1650193,30 +58820,Sara,316885,213395,1 +58821,Theo's Girlfriend,1278,16355,11 +58822,Leo Trainer #2,312221,1746883,37 +58823,Paul,156700,134397,7 +58824,Sue Kenney,93676,1782148,12 +58825,Beautician (uncredited),174925,90333,19 +58826,Håkon,57438,123959,15 +58827,John Fitzgerald,227306,9828,2 +58828,Ramon / Lovelace the Guru (voice),9836,2157,1 +58829,Lisa Arlington,351211,1486488,1 +58830,Eric van Darren,28682,101597,4 +58831,Seller,4982,176777,56 +58832,Joey Manusco,61550,233299,7 +58833,Chiang Ching-Kuo,25626,109809,9 +58834,Robin,338767,1158102,4 +58835,,49446,138027,4 +58836,Nestor,293380,655,4 +58837,Herself,41569,37042,3 +58838,Tim,70575,558883,6 +58839,Orloff,81030,14664,12 +58840,Godzilla,189,1375035,39 +58841,Henning (gardener),44502,50792,6 +58842,,141603,1115100,16 +58843,Nurse Carey,111960,11127,4 +58844,British soldier,121823,1102423,17 +58845,Gabriel Howarth,383538,55086,1 +58846,Akiko Shimizu,21057,112139,3 +58847,Mondoon,268350,13361,10 +58848,Terrorist,140883,86028,4 +58849,Model (uncredited),32552,143754,14 +58850,Old Lady,58244,198647,42 +58851,Willy,11172,225629,11 +58852,Cricket Captain,16151,79715,28 +58853,Judas,167956,1169322,1 +58854,Iatzek,28997,1533995,2 +58855,The Vagrant,186869,3041,2 +58856,Sean Pachowski,128866,98108,0 +58857,Deli Patron,11137,1442832,11 +58858,Edward Lloyd,11012,2481,6 +58859,Cousin Isaac,78340,17482,10 +58860,Apartment Owner,5123,1781822,32 +58861,Patrick,41733,1288866,9 +58862,Son,16083,79234,22 +58863,Amar Singh,14467,6497,8 +58864,Firefighter,123103,590883,9 +58865,Medico Cattolico,110447,129078,22 +58866,Foxy Loxy (voice),9982,12110,5 +58867,Miss Henley,6976,39001,7 +58868,Sébastien,9736,17896,12 +58869,Dancer,118889,34818,66 +58870,Shurochka,149170,1660272,16 +58871,Baba Zaheer Khan,101783,86064,3 +58872,Jean Benoit Aubrey,131764,99171,1 +58873,Vicky,33360,579439,10 +58874,Stefano,186988,131624,3 +58875,Nymph II,18392,104624,9 +58876,Fan Yuanlian,69310,56861,4 +58877,Hubert,258251,1327945,10 +58878,Wheaties,94225,45308,7 +58879,Lou Ann - Corny Collins Council,2976,1752330,53 +58880,Lillith Brenner,280092,33834,12 +58881,Fredo,44256,1301197,15 +58882,Freddy,152748,107766,7 +58883,Persian (uncredited),1271,60652,83 +58884,Andy,335970,1718101,33 +58885,Natalie,93856,999817,2 +58886,Dan Clan Mafia (uncredited),274857,578690,46 +58887,Doctor #2,9541,1077235,13 +58888,Sándor Ferenczi,48231,36463,6 +58889,Gail,401164,32905,4 +58890,Mother (voice),77294,86666,3 +58891,Горпина Дормидонтовна,20879,86711,11 +58892,Night Guard Shooting Tear Gas,26376,980330,57 +58893,Aisha's Nephew Rowley,12113,544187,14 +58894,Michael Sticca,111479,1122102,37 +58895,Babe Jenkins,41857,87473,6 +58896,,78450,1399243,4 +58897,Taylor's boyfriend,14432,76876,4 +58898,Ellen Shanley,34127,13579,1 +58899,Truscott,29694,96186,9 +58900,William Corvinus,834,12359,8 +58901,Burte,341490,37606,4 +58902,,423093,224870,0 +58903,La mere,72898,34595,4 +58904,Anwar,1164,17118,5 +58905,Benjamin (Junior),273578,110801,4 +58906,Barn,72596,1114554,42 +58907,Anna Tatour,48118,207549,2 +58908,George King,38978,81464,5 +58909,Ann's Mother,42614,1064961,5 +58910,Rabbit,25694,145839,9 +58911,Freddy Fox,256962,1543951,39 +58912,Bruce McLaren,419192,218565,1 +58913,Yogi,61400,85730,5 +58914,Nurse Wharton,44470,24695,1 +58915,Mrs. Goodenow,94225,88570,13 +58916,Sarah Lowell,22803,57451,4 +58917,Secretary,60759,1484590,20 +58918,,393521,1799511,6 +58919,Howard Stringer,30330,12876,5 +58920,Johnny,273511,1606675,8 +58921,Mr Potter,70695,112049,11 +58922,Singer Songwriter 2,198277,1423812,14 +58923,King Herod,47980,14469,3 +58924,Inspector Branson,172908,151035,7 +58925,Arcade Jones,333484,1006144,20 +58926,Educateur 2,63831,1126622,7 +58927,Mountaineer (uncredited),16442,134868,66 +58928,Luigina Barozzi,75336,994527,12 +58929,Patrick,222935,113373,7 +58930,Jerry Disbro,46830,36588,5 +58931,D.J.,67822,76417,4 +58932,Elizabeth Walker,144475,990397,5 +58933,Louis,64481,400612,9 +58934,Trunks (voice),303857,1686,6 +58935,Assistant Hotel Manager (uncredited),172445,90074,6 +58936,Ibo's father,175331,1157936,12 +58937,,51285,143738,8 +58938,Alexa,102961,109087,4 +58939,Waitress,56601,63677,16 +58940,Jacques de Saint Amant,89591,58012,1 +58941,Colonia Man,318781,1694310,45 +58942,Dr. Orson Milo,101852,206042,2 +58943,Yuuji,43635,129706,6 +58944,Old Poet,31913,1133881,19 +58945,Strip Club Girl,28090,1719899,46 +58946,Herself,73241,938895,11 +58947,Quillwork / Powwow Girl,55534,1134745,18 +58948,The Operator,329289,17005,1 +58949,Mama Cash,203264,60560,2 +58950,Snakehead's henchman,10610,1624033,21 +58951,Morrie,182499,1240748,8 +58952,Nat (voice),217057,24264,5 +58953,Jun Naruse (voice),364111,1325949,3 +58954,Wellness-Angestellte,6076,6269,14 +58955,Dominguez,101363,65344,2 +58956,Will Montgomery,127493,2963,0 +58957,Thiruchelvan,40998,85519,0 +58958,Melanie,310593,1139379,21 +58959,Caki,110608,85691,1 +58960,George MacCready,48677,53010,4 +58961,Tamara,329550,1252354,44 +58962,Harrap,27196,1216393,15 +58963,Michael Peyton,124581,104509,3 +58964,Neighbour,277967,23750,7 +58965,Henchman #1,33541,95949,48 +58966,,61904,1688384,10 +58967,Mrs. Carlson,17940,62247,0 +58968,Yindel (voice),123025,85759,12 +58969,Nancy Lannon,353257,167244,2 +58970,Sentry #2,1271,125686,30 +58971,Brownie,8064,677,2 +58972,Coke Stripper,354979,1835260,43 +58973,Bender,29907,13726,3 +58974,German Sailor Girl 1,348320,1869091,20 +58975,Kyra 17-1,23367,95364,13 +58976,Todd's Acoustic Guitarist,58467,1704737,38 +58977,Conseillère d'insertion,8276,54280,10 +58978,suora,61217,144465,22 +58979,,88273,1547789,31 +58980,Dr. Kazuya Shiina,315846,58596,5 +58981,Sergeyenko,36811,14432,6 +58982,Ana,924,98,0 +58983,The Headwaiter's Wife,53403,21301,3 +58984,Tommy Myers,18932,83921,1 +58985,Governor Weatherby Swann,285,378,11 +58986,Girl,38546,1335646,8 +58987,Fillette (voice),393559,1776046,14 +58988,Catgirl,45098,138113,15 +58989,Man in Street (uncredited),284052,1713832,56 +58990,Medicine Man,61988,13298,5 +58991,"Richard, King of England",58905,51310,1 +58992,Jiromaru (Young) (voice),315465,225662,10 +58993,Joe Doucett,87516,16851,0 +58994,,229134,990857,3 +58995,Wayne,1550,52601,16 +58996,Lady Catherine Chamberlain,120837,1189504,5 +58997,Newscaster,70074,230995,15 +58998,Brad Stand,1599,9642,3 +58999,Mickey Hauser,28741,31268,5 +59000,Yvonne,69165,1549475,11 +59001,Silva,70666,1187057,30 +59002,Cop,45132,968692,12 +59003,Plumber,14552,569543,7 +59004,Connie Stanton,62132,1124617,4 +59005,Skully Pettibone / Count Max (voice),48567,74363,7 +59006,Hank the Yank,127560,1380560,16 +59007,Heywood,43829,2502,23 +59008,Judge,32690,131194,8 +59009,Congressman Jerry,66741,183096,6 +59010,Ágika Tót,8776,56294,3 +59011,TV Anchor,329865,1725447,50 +59012,Mary Jane Longo,245706,205797,3 +59013,Lieutenant One,8988,1741955,27 +59014,Dae-geun,94555,1326172,5 +59015,Keng,11534,69757,0 +59016,Schack Carl Rantzau,88273,234741,6 +59017,Rohan Goswami,397365,1255529,4 +59018,Candy,359471,1509231,22 +59019,Gloria,29424,1206159,13 +59020,Inspecteur,6077,47812,11 +59021,Judge Charles Fletcher,27203,93628,8 +59022,SS-Sturmbannführer Xavier March,11248,585,0 +59023,Mrs. Hathaway,30941,193808,15 +59024,Himself,369820,1260041,1 +59025,Tammy,45729,95643,12 +59026,Thunder (voice),38579,87822,7 +59027,Johnny,47444,1068138,2 +59028,l'inspecteur Perpignan,64407,239188,3 +59029,Elizabeth Wells,191820,23524,5 +59030,Charles Fendwick,184741,2930,11 +59031,Marianne,11680,133837,13 +59032,Filippo Bello,439998,1258076,1 +59033,,73578,1640551,11 +59034,Frank,5172,6110,16 +59035,Ashok Nambudaripad,25499,93290,3 +59036,Shimura Shinpachi,245917,40331,2 +59037,A Diner,47653,21306,3 +59038,Elliott Bright,103432,1833305,14 +59039,Diesel,354979,1358061,2 +59040,Emma Policarpio,98203,93255,2 +59041,Draculaura (voice),227257,73016,3 +59042,Emily,16154,79736,5 +59043,Hector,81409,151651,1 +59044,Robert,13739,35919,6 +59045,,74154,213428,4 +59046,Madame Léry,201749,35324,6 +59047,Naomi,369033,212833,3 +59048,Sen. Arne Lindner,87514,12308,8 +59049,Tony,28115,120786,9 +59050,Jake Carter,445993,237740,1 +59051,Police Sergeant,31899,95311,26 +59052,Tane,39356,122763,8 +59053,,202984,1185276,6 +59054,Mrs. Stewart,17306,38710,13 +59055,Béatrice,44522,145078,15 +59056,Louie (uncredited),39495,58661,18 +59057,Kid Chasing Bus,8988,1112455,66 +59058,John Amos,236399,1216568,9 +59059,Mrs. Porterhouse,252746,601643,9 +59060,Frau Doktor,6934,51467,4 +59061,Don King,31907,10182,0 +59062,Rauni Reposaarelainen,414547,1675555,1 +59063,Voice,344170,1476131,2 +59064,Young Man,27230,47883,14 +59065,,74481,86009,3 +59066,Joanna,64115,937164,3 +59067,Feride,101217,121423,3 +59068,,88176,1371438,12 +59069,Grandma Georgina,118,7320,15 +59070,Helen,26983,77081,4 +59071,Farmer's Daughter,51357,89929,2 +59072,Lee,52868,2141,7 +59073,Anna Verghese,69346,88439,3 +59074,Brian,56906,51682,1 +59075,"Mrs. Julia Cray, Skin Alergy Patient",153165,105508,19 +59076,Himself,44123,130281,0 +59077,Mrs. Loggia,24363,1214056,13 +59078,Simba,61950,103160,9 +59079,Sindhu,372226,1163172,5 +59080,Llewelyn Moss,6977,16851,2 +59081,Member of CPPCC,25626,77304,25 +59082,Jimmy Nolen,239566,1457289,60 +59083,Prisoner #2,294690,1336697,31 +59084,Biker (uncredited),240745,969687,35 +59085,Liang Chow,254065,116278,5 +59086,Cat Burgler,58251,1462980,4 +59087,Tanya Oblonsky,96724,1795830,44 +59088,Valerie Colby Moore,175027,89009,2 +59089,Himself,6963,112884,10 +59090,Jessica Wade,28859,71447,5 +59091,Swimming team (Perth's friends),292625,1758604,16 +59092,Allie,171759,61831,1 +59093,Ted Cogan,34734,2879,0 +59094,Trey,64807,1158067,12 +59095,Diana Smith,28682,101598,6 +59096,Man in Pub (Uncredited),18774,1496046,26 +59097,Soul Raines,72710,1273237,21 +59098,Amazon Townsfolk,297762,1890409,38 +59099,Voice of The Collective,301875,1401531,5 +59100,Chinese woman (uncredited),1421,1433965,45 +59101,"Tony, un truand",65887,13697,9 +59102,Aila,32099,108866,19 +59103,The Chief Steward,4538,5301,9 +59104,Technician,29290,141091,10 +59105,Radio Listener (uncredited),28000,154432,43 +59106,Mabel,83802,52031,2 +59107,Principal Umber,342472,9979,8 +59108,Kkeut-soon,313108,1169313,7 +59109,Old Woman (uncredited),31742,1002677,3 +59110,911 Operator,345922,80597,11 +59111,Bully,102382,1657529,52 +59112,Funeral Attendant,9963,52885,7 +59113,Businessman (uncredited),73430,122984,23 +59114,Alan Eaton,27446,13578,0 +59115,Jimmy's Bandmate 3,85350,1467997,71 +59116,Rachael Gene,51249,1658168,5 +59117,Mr. Halloran,26516,14579,8 +59118,Danish husband,199602,1871536,11 +59119,Mike Medwicki,10917,38085,8 +59120,Narrator,23378,49835,3 +59121,Mickey Berk,117426,46418,3 +59122,Saint,256122,571932,0 +59123,John,39194,18861,0 +59124,Verne Vavoom,134397,170074,9 +59125,Lady Macbeth,225728,8293,1 +59126,Arun Verma / Mr. India,41903,72118,0 +59127,Paramedic #1,295723,1418257,27 +59128,Club DJ,24469,1579242,21 +59129,Janet Ainsley,126927,50948,4 +59130,Katie,142115,1183783,2 +59131,Horst,2486,25440,14 +59132,Riot Police Commander,269173,209657,30 +59133,Bat Girl #14,31258,1048914,8 +59134,Ringsider (uncredited),75315,94897,19 +59135,Cleaner,228558,388,9 +59136,,241140,110979,13 +59137,Semira,346672,213083,2 +59138,,62363,36914,11 +59139,Gary Giggles,12279,71467,9 +59140,Uliana Tulina,64268,238688,0 +59141,Abbot Fang Zhang,10275,1128390,8 +59142,Shunsaku - Kimiko's father,92950,581143,5 +59143,Charlie,17725,83816,7 +59144,Charlie Halliday,14694,12834,0 +59145,Rose Parker,159128,936970,2 +59146,"Alain Attal, le producteur",382589,66840,22 +59147,Doctor,2577,33449,18 +59148,Young Ira,228205,54738,5 +59149,Roope,20160,92428,6 +59150,Andrew Borden,243568,230,3 +59151,Reporter (uncredited),174925,29261,20 +59152,Sales Manager,242042,1451161,39 +59153,Tara,186759,49914,10 +59154,Scott,183662,429,2 +59155,Rescue Worker,10362,133442,41 +59156,Sandra,291577,1362517,4 +59157,"Maciek from ""Atomic""",346443,1041345,7 +59158,Will,209263,170820,4 +59159,Andrzej,13614,82311,0 +59160,Bully 1,85350,1467913,30 +59161,,359152,128227,4 +59162,Waiter,186869,1862900,25 +59163,Wong,76544,20519,11 +59164,Hee-jin,313628,1455231,5 +59165,Stacy,10521,83872,14 +59166,Baldy,194407,96069,10 +59167,Superman Samet,30634,106623,5 +59168,Joe - Piano Player (uncredited),43880,89672,14 +59169,Vegas Showgirl #2,10918,134902,22 +59170,Carla Wright,42231,183877,6 +59171,Bertha,179818,98018,7 +59172,Reverend,86825,944159,10 +59173,Doctor Stanley Shephard,24749,16327,0 +59174,Bergman's Wife,147815,1641647,12 +59175,Cha Joo-hwan,45098,86330,2 +59176,Daniel Wilder,100669,55779,1 +59177,Martin Saxby,428493,10985,3 +59178,Tony Schlongini,76681,57906,4 +59179,Lt. David Long,72431,141770,8 +59180,Sterlo,294652,123879,4 +59181,Fatma la prostituée,72279,565405,12 +59182,Dr. Dix,110148,21416,10 +59183,Dannemora Dan,72602,74876,2 +59184,,336484,83835,1 +59185,Femme du refuge,148327,1294277,14 +59186,Ali,31412,97277,7 +59187,Ada,59156,35000,1 +59188,Dan,141635,45416,3 +59189,Harry Foreman,48627,2673,4 +59190,Orville's mother,43753,40087,12 +59191,Tamara,329550,52007,45 +59192,Anne Hartela,141971,85386,3 +59193,Melet som liten gutt,77922,1196412,12 +59194,Jay,45302,65205,5 +59195,Tomoko Tomoe,19336,239044,1 +59196,Demon,48145,3857,10 +59197,,274131,20882,3 +59198,The chemist,181456,1373943,14 +59199,The Chief,42472,1229431,10 +59200,Angel,339116,1672438,3 +59201,Assistant D.A.,55604,111464,15 +59202,Maj. William O'Neal,112284,30234,11 +59203,Other Cowboy,188161,1195834,39 +59204,Yukio,33333,105405,2 +59205,Daniel Kintner,83,646,1 +59206,Stepan Semenovich Lednev,75262,86664,1 +59207,Tronald Dump,9274,27320,3 +59208,Jessie,44389,66260,17 +59209,Nuran,13393,145394,5 +59210,Marshall Hilliard,243568,25878,4 +59211,Nicole,924,51936,8 +59212,Old Victor's Wetnurse,55589,222683,3 +59213,Jacob Beiler,74549,1820117,7 +59214,Timekeeper,67342,1196051,9 +59215,Jess Polanski,75752,7631,1 +59216,Meyer,15468,10263,5 +59217,Harris Payne,45729,133593,14 +59218,Miss Greythorne,2274,4432,9 +59219,Tskalikin,76757,1223149,19 +59220,Inspector Karoliina Ranta,101838,149933,7 +59221,War Pup,76341,1734191,48 +59222,Virgin,58790,1504060,11 +59223,Chin Wa Li,19274,1270136,10 +59224,Arnold Albertson,245906,887,0 +59225,Boy on Bike,204922,1414109,9 +59226,Samuel,179812,1225903,15 +59227,Prosecution Attorney,339994,1593380,36 +59228,Countess Estelle,3051,30126,6 +59229,Willard Culverwell,42242,151447,14 +59230,Eugenia,64944,130712,1 +59231,Marin,6964,2956,4 +59232,Degrasso,10900,59551,6 +59233,Chinook Pilot No. 1,193756,1283041,13 +59234,Colonel Hardy,49521,22227,8 +59235,Rita,18820,81134,3 +59236,Hackett,55152,112978,8 +59237,Jensen,9914,27037,8 +59238,Woo-Jin,338729,21689,13 +59239,Hugo,48962,230580,2 +59240,Billy 'The Great' Hope,307081,131,0 +59241,Cora Brooks,28433,118552,6 +59242,Kay,14476,1208277,9 +59243,Tino,345915,94432,10 +59244,Emile Fournier,28270,24826,3 +59245,Grave keeper,65123,237286,6 +59246,Beth Morgan,228294,62010,0 +59247,Blind Man,15022,1237599,31 +59248,Muscle man,25425,1594894,8 +59249,Markus,70586,83374,15 +59250,Brigittes Mutter,130544,32370,4 +59251,Cal Royster,182899,8517,5 +59252,Joe,31773,1263061,13 +59253,Arnold Bickman,6973,12852,14 +59254,Narrator,44693,1338403,6 +59255,Tourist,154671,79060,4 +59256,Mailroom Worker,38356,95875,31 +59257,Polly,42837,222228,1 +59258,La contrabbandiera di radioline,107052,44421,25 +59259,Mauro,428645,1065193,1 +59260,Newscaster (voice),22855,170749,13 +59261,Yuki Sakurai,392882,1255487,1 +59262,Valentin Goldman,49689,231035,3 +59263,Bryan Curtis,242631,17661,6 +59264,Eddie Daniels,324930,1500686,3 +59265,Danny Ross,74779,93090,1 +59266,Jack Crew,62768,17646,4 +59267,Yves Saint Laurent,245775,145121,0 +59268,Amy,2017,20697,7 +59269,Rita,29638,101083,3 +59270,Adam Hartman,73194,4303,11 +59271,Monroe Clark,52741,2878,0 +59272,Queen Inwon,315439,93252,4 +59273,Meenakshi,66224,238006,1 +59274,Pudgy Aide,29610,44161,18 +59275,Tex Kirby,126550,19181,0 +59276,,296136,1371160,1 +59277,Du Qing,38099,62410,2 +59278,Wetherby Pond,83015,20394,0 +59279,The Boy,56816,225015,1 +59280,Sadako Yokogawa,409550,1357295,3 +59281,Hallway Heckler / Peeper No. 1,38134,138629,7 +59282,Briton Biker,240745,1473140,28 +59283,Hostage Man,24731,138877,9 +59284,Melissa King,290370,1251993,1 +59285,Warren Wall,174309,1691846,6 +59286,Kukkonen,62825,226031,5 +59287,Mrs. Willebrandt,36334,83566,9 +59288,Mary Lee,103731,34490,5 +59289,Annoying Conference Guy,68721,1735538,16 +59290,Gerard (Frenchy),22584,4121,6 +59291,Janvier,452142,86479,2 +59292,Luca Molinari,54309,125701,0 +59293,Sister Abigail,21208,30485,3 +59294,Lucia,13162,60469,11 +59295,Luke,34205,29077,4 +59296,Mayor Jacobs,249021,17764,1 +59297,Passenger on bus,371446,1515511,14 +59298,Henry Kelsey,9950,60802,19 +59299,James Barlow,22408,1009,0 +59300,Professor Iwatani,257344,538687,17 +59301,Graham,85435,19996,4 +59302,Leutnant Berger,45398,16071,13 +59303,Cera / Petrie's Mom / Digger,339526,35224,1 +59304,Kanzler,85699,26395,5 +59305,Paul,10097,63365,12 +59306,Horace Debussy 'Sach' Jones,184328,33024,1 +59307,Blue Leggings,286521,109740,4 +59308,Fast Food Kid 3,242224,1413780,32 +59309,Rjaji's Wife,392271,1003953,6 +59310,Settler's Wife,134238,1422188,36 +59311,Aladdin (voice),343693,60272,3 +59312,Gibbz (as Michael Wartella),47194,141039,10 +59313,,71393,626381,13 +59314,Himself,186079,1168790,4 +59315,Hooker,18731,553022,8 +59316,Le jeune chasseur,377853,1891332,19 +59317,Fletcher,27221,97331,5 +59318,Cheryl Portman,25385,165488,8 +59319,Second Prisoner,26376,34610,72 +59320,L'amateur de moto-cross,12249,47820,12 +59321,Carly Simmons,62768,42707,3 +59322,Pepper,15092,1284345,20 +59323,(voice),63486,239455,10 +59324,Zoë,44472,37983,0 +59325,"Nireno, Uzuki",72933,111690,0 +59326,Kang Hyo-jin,435821,1887382,6 +59327,Cop,228108,78665,6 +59328,Dr. Wilson,33472,94217,5 +59329,Peasant Woman on Train,151911,93226,9 +59330,Esa,225044,53937,5 +59331,Huang Xing / Huang Keqiang,76349,18897,0 +59332,Saval,42402,94401,11 +59333,Justin,146313,1223061,6 +59334,Grace Turner,319986,1099170,1 +59335,Shi-eun,54111,139498,1 +59336,Hotel Man,86363,4305,7 +59337,Oscar Dugan,274060,100588,9 +59338,Ellen Gilcrest Rimbauer,16175,20811,0 +59339,Jill Green,45792,65409,3 +59340,kirkkoherra Lauri Salpakari,41142,124285,3 +59341,Manton Bassett,14387,85935,5 +59342,Orchestra Leader (uncredited),1976,1287807,34 +59343,Madman,43984,1351406,7 +59344,Dr. Louis DuPont,41030,131045,9 +59345,Teddy Tentacles,13836,1658178,39 +59346,Yuka Morita,14217,112862,4 +59347,,105352,1321140,6 +59348,Tex (as Red Morgan),132939,108236,9 +59349,Jack,30155,989443,8 +59350,Bit Role (uncredited),174925,28971,21 +59351,Psychiater,3405,31898,11 +59352,Ephor #2,1271,96594,21 +59353,Tex,125490,1179449,18 +59354,J-Roc,27561,95464,6 +59355,Prince Olenin Stieshneff,207636,29036,3 +59356,Juliana,168819,8797,2 +59357,Babylonian Soldier (uncredited),3059,3247,75 +59358,David,28673,5565,5 +59359,Le client de la pharmacie,12446,72248,25 +59360,Yun Chool,64882,1203792,15 +59361,Sheila,3484,13354,2 +59362,'Mark' Aviva,13073,10431,6 +59363,,44716,40421,22 +59364,Le liftier / Le speaker (voice),22504,1458875,7 +59365,Treadwell,257574,83812,3 +59366,The Accountant,54022,1032,4 +59367,Stick,88641,76546,1 +59368,Frank - Reporter (uncredited),33112,34286,16 +59369,Harry Galt,153162,134002,11 +59370,Gretchen,20648,144074,5 +59371,F.B.I. Special Agent,127812,12502,12 +59372,Dancer,33541,130386,41 +59373,Jake,335450,121292,6 +59374,Kathy/Katrina Van Keif,18977,100606,2 +59375,Roza,185111,1663378,3 +59376,Alex,47194,61542,0 +59377,,34181,202582,14 +59378,Missy,120802,1818382,31 +59379,Abate cieco,61217,1759003,16 +59380,Ice Fisherman #1,100275,937792,8 +59381,Manoochehr,37181,1512027,6 +59382,Itsuki Fujii / Hiroko Watanabe,47002,143803,0 +59383,"Ray, the Technical Director",17956,159948,14 +59384,Mathias,136582,239118,3 +59385,Evgeniya Komelkova,49106,224116,4 +59386,Cactus,182035,88978,4 +59387,Herb Alpert,69898,4665,12 +59388,Praktykantka,38875,235492,7 +59389,Nelson,14457,33934,1 +59390,Richard Sharpe,75142,48,0 +59391,Nick Fury,99861,2231,7 +59392,Митя,121688,1082231,1 +59393,Nicușor,317723,1413101,1 +59394,Eleonora Curtatoni,92586,32152,6 +59395,Master of Teahouse,72592,1089926,19 +59396,Alex Winkley,34650,96243,2 +59397,Attardi,106155,1091542,8 +59398,Gabby Babblebrook,68179,95102,5 +59399,Lindsey,347630,1695661,33 +59400,Klaus,303636,150802,9 +59401,Nurse,289278,142681,8 +59402,Anita Foschi,3870,34027,3 +59403,Captain of the Aurora (as Lieut. J. Stenhouse),49837,142888,2 +59404,The King,92349,992883,5 +59405,,57977,18499,2 +59406,Karcsi anyja,13616,70913,4 +59407,Dave Fangirl,198277,1423823,17 +59408,Claudia (as Miss Joan Caulfield),54388,94097,2 +59409,Toddler Noah,266425,1313162,33 +59410,Guard at Dock (uncredited),127812,120701,13 +59411,Grotes,31127,1055699,9 +59412,Officer Doherty,13483,93639,11 +59413,Himself,315850,10872,7 +59414,Mr. Brocklehurst,38684,16358,14 +59415,Survivor (uncredited),205584,1535067,40 +59416,Prisoner in Concentration Camp Lineup,41597,95027,22 +59417,Control Room Vampire,346672,1397133,34 +59418,Technical Adviser (Harold aka Tiger),4932,29427,26 +59419,Ned Lynch,42242,8606,2 +59420,Palych,49943,67505,4 +59421,Skotak,83666,1142686,13 +59422,Bar Patron,360592,1512187,13 +59423,Mr. Zanfrello,13580,94713,18 +59424,Le montreur de monstres,45000,32090,5 +59425,Soldier #1,80410,103283,12 +59426,Darius,408509,72327,4 +59427,Jones,83995,90625,22 +59428,Roy Parker,15794,104714,8 +59429,Kunta Kinte,400174,1145665,11 +59430,Elder,1450,742,9 +59431,Betty Rubble (voice),42515,164748,5 +59432,Shaggy,24615,16418,1 +59433,Blue Monday,340275,1531608,47 +59434,Pule Rampa,76264,10649,5 +59435,Emily,16921,84698,1 +59436,himself,82627,928342,4 +59437,Mr. Wellbeloved,173638,55037,6 +59438,Hawaldaar,101783,1030392,8 +59439,Mr. Williams,37665,19151,12 +59440,Sally Rogers,22602,88977,1 +59441,Country Groomsman,405473,1800040,36 +59442,Clive Parnevik,381518,114253,1 +59443,Producer in dubbing room,18665,1416970,15 +59444,,264264,565378,13 +59445,Rat,167810,36592,1 +59446,Sylvia,40978,35319,0 +59447,Tall blonde woman,111839,935,4 +59448,Lars,369885,47647,16 +59449,Anderson Cooper,376523,1217309,2 +59450,Fancy,214129,1611032,23 +59451,barbone,120922,129619,16 +59452,Dan Williams,45273,18687,5 +59453,Liza,28671,101540,4 +59454,Laurette Robert,28061,101555,4 +59455,Deborah Myers,24150,21319,1 +59456,Child at Christmas Party,179066,1044770,51 +59457,Stefan Witt,167330,40634,0 +59458,Lena,347979,94064,1 +59459,Todd Boomer,39001,52474,0 +59460,Pilot,76229,18965,12 +59461,Claudia,122857,156711,11 +59462,Angelique Buiton,46563,30126,2 +59463,Dan Mercer,323674,1088672,2 +59464,Allison,40807,140114,19 +59465,Gorilla Grodd (voice),22855,58511,14 +59466,Bill Lake,174278,86370,7 +59467,,327231,109284,11 +59468,Maggie,23830,144577,9 +59469,Andy Shayne,34459,160411,3 +59470,Dorker,120676,103947,7 +59471,Jacques,354105,550796,4 +59472,A customer (uncredited),53407,13848,4 +59473,King Roderick I,11839,14300,4 +59474,,12622,555212,37 +59475,Thurber,76094,3363,3 +59476,Frank James,42706,2053,1 +59477,Policeman,43809,1240252,35 +59478,Catherine Hearst,148615,170996,5 +59479,Alma Bergman,41764,32729,5 +59480,Sergeant Major,51434,3211,4 +59481,Pete Zamperini,227306,558466,14 +59482,,8939,584307,2 +59483,Inspecteur,98277,142448,25 +59484,"Yuka Kanehara (segment ""Akane"")",26693,228083,5 +59485,Homeless,72875,568030,20 +59486,Ela mesma,448763,1848657,22 +59487,Angela Parry,83015,70564,16 +59488,Tarmo Saari,54566,116158,0 +59489,Woman with Mudgin in bar,44869,85997,26 +59490,Jane Eyre,22744,3360,1 +59491,,57889,400340,11 +59492,Mrs. Brown,15006,106935,6 +59493,School principal (still),292625,1758598,9 +59494,Mademoiselle Amy Jolly,42641,2896,1 +59495,Clerk,335970,120253,55 +59496,Michael Hunter,14782,1271,0 +59497,Naosuke,84508,1083305,3 +59498,Lyle Van de Groot,26264,19159,3 +59499,Himself,173467,3,29 +59500,Cooper,5753,45366,6 +59501,Maria's Mother,343283,83885,5 +59502,Sirena Lane,63273,16484,2 +59503,Jack,12255,21089,2 +59504,Antoine Abeilard,352025,56024,1 +59505,Chae-Ri,64882,1090733,9 +59506,Per Gunnarsson,80059,38127,2 +59507,Teela,370687,930332,3 +59508,Jeannie,376660,64470,10 +59509,Janie Prescott Phyffe,90799,10022,0 +59510,Mrs. Dunhill,49844,47504,4 +59511,Renaldo Rossano,184802,232024,0 +59512,Alyosha Popovich (voice: English version),33065,110045,10 +59513,Gheorghe Ionescu,428493,1672241,2 +59514,Lewis (voice),1267,155988,5 +59515,Woman with Baby,216374,1207888,9 +59516,Helen,333367,112327,6 +59517,Amled,48791,3894,2 +59518,Tobias Hollander,8888,52722,9 +59519,Gregory Kent,74437,2644,4 +59520,The Gruffalo's Child (Voice),81684,1834,6 +59521,Larry,157919,29298,8 +59522,Joan Hawthorne,126083,30210,1 +59523,,282553,73381,1 +59524,Bar Patron,411741,1862555,20 +59525,Pop,1481,1764331,5 +59526,Himself,123074,210161,0 +59527,Suet,2463,25251,5 +59528,Aydeniz Derya,49834,1133959,7 +59529,Aurelius Rex,37038,116642,3 +59530,,303966,86088,4 +59531,Art Student,38322,1663964,40 +59532,Bar Patron at The Maples,74525,217770,17 +59533,Nurse Hollings,370234,1074560,9 +59534,Himself,53380,884,5 +59535,Fistful of Valium,51036,1879474,27 +59536,Johns Hopkins Student,424600,1634034,17 +59537,Cheyenne,335970,1717903,19 +59538,Matt,13763,1168002,10 +59539,Dima,63281,1884996,10 +59540,,214105,82098,2 +59541,Baldabiou,14753,658,2 +59542,Ashley,26123,87165,9 +59543,Matt Howard at 12,52360,67371,16 +59544,Otti,286267,1328311,11 +59545,Maureen Johnson,15199,1218199,7 +59546,Dave Harken,209244,36189,10 +59547,Dilaver,236053,150622,2 +59548,Charlie,33586,88466,1 +59549,David Hasselhoff,13280,28238,12 +59550,French Peasant / Taxi Driver / Spartacus (voice),82703,118489,25 +59551,Le seigneur,45000,298988,9 +59552,Pippo Botticella alias « Fred »,42021,5676,1 +59553,Sara,411638,1273953,9 +59554,Doug,72251,4515,0 +59555,Joe,26405,131509,6 +59556,Tug Pilot,47412,61782,7 +59557,Shilah Washington,59115,1576808,3 +59558,Det. Sr. Const. Wayne Prior,19846,92172,2 +59559,Elijah,109391,1204690,24 +59560,Ecaterina Teodoroiu,32594,1846538,1 +59561,Reggie,85651,1375271,8 +59562,Coach Jim Miller,23628,90397,5 +59563,Enid Wicklow,38031,9139,22 +59564,Rocky,157293,1170144,5 +59565,Maria Sole,52913,145603,5 +59566,Narrator,20359,84956,11 +59567,Connie,16523,2229,1 +59568,Vocalist (voice),71689,567614,2 +59569,Kip Thorne,266856,91494,27 +59570,Sara,282768,1343612,3 +59571,Big Brother Ma,212996,296066,15 +59572,Motorist at Gas Station (uncredited),15794,238180,57 +59573,Nairomian Crying Woman,209112,1147413,119 +59574,Telephonist,222517,1699951,27 +59575,Paige's Manicurist (uncredited),121003,133971,14 +59576,Strambazzini,77000,1851062,19 +59577,Jerry,152736,17051,2 +59578,Eva Schmidt,267035,1305862,2 +59579,Nell Bedworth,37725,19664,1 +59580,Abe Lincoln,43806,2669,0 +59581,Young Eric,18898,86133,8 +59582,,338309,1257663,2 +59583,Man on Fire Escape,300667,1607607,20 +59584,Emily,303867,1117034,1 +59585,Haley,356752,543523,4 +59586,Angela Corsi,38285,120016,1 +59587,Inspector,48131,145876,7 +59588,Ms. Joyce Carr,16234,157085,18 +59589,Pastukh,150223,1870836,23 +59590,1928 Fan,921,56262,34 +59591,Derek,25450,521564,12 +59592,Handsome Male Dancer,267793,1315952,26 +59593,Dr. Grayson,172785,91495,4 +59594,Jim,183825,1432396,48 +59595,Lydia,133458,930580,7 +59596,Mert Akbay,77241,120879,0 +59597,Reporter,24150,112562,22 +59598,Advertising Agency CEO,347979,29839,3 +59599,Herself,323426,109621,7 +59600,Janet,242076,73534,8 +59601,Pratap,170838,85033,3 +59602,"Reifsnyder, the barber",199155,26673,10 +59603,Corvalán,127702,69310,0 +59604,Mark,232672,74949,5 +59605,,402612,1253424,5 +59606,Junko Kaname (voice),152042,144649,7 +59607,l'inspecteur,76871,20800,7 +59608,,15776,202581,19 +59609,Henchman Red,182035,1089060,6 +59610,Nualjin,26687,96012,1 +59611,Mrs. Janet Archer,185934,100779,5 +59612,Le réceptionniste (voice),9385,57541,3 +59613,le travesti,62012,583222,2 +59614,Janet,30478,106383,1 +59615,Dikku,347807,86087,6 +59616,Nico,41427,126447,9 +59617,Myrtle Culpopper,31263,1576626,10 +59618,Eva,323435,934289,1 +59619,Dana,26123,453588,8 +59620,Edward,39358,1215211,6 +59621,Verinha,40859,637852,3 +59622,,315252,228329,4 +59623,Mrs. Peabody (uncredited),43497,89587,16 +59624,Judith,172008,229606,3 +59625,Karen,79316,1686957,15 +59626,Anja,312138,586814,2 +59627,Poliisi,101838,1029083,16 +59628,Aylin Kargın Çatak,77241,1598081,6 +59629,Beth Kiler,103432,1010505,12 +59630,Agent Nowak,24624,141769,15 +59631,Himself,16800,939002,17 +59632,Lefty Bates,250332,117771,42 +59633,,216046,143675,5 +59634,Julie - Jade's Mom,14123,1446416,18 +59635,Agent Malloy,31377,108037,14 +59636,,19812,1441809,25 +59637,Nicki,10063,17647,0 +59638,,381767,1170691,5 +59639,Chowhound,35392,34660,4 +59640,"Kurt, Geiger's Assistant",29161,87680,9 +59641,State Trooper Dispatcher,28775,135843,17 +59642,Masashi (3 years old),15003,1059947,13 +59643,Jack,29638,98670,5 +59644,,56942,1255427,16 +59645,Power Plant Guards,177677,1562104,56 +59646,Yan (voice),21712,90160,3 +59647,Feldmarschall Wilhelm Keitel,613,22379,24 +59648,Mace,79645,8853,6 +59649,German Guard,31890,108569,11 +59650,Morris,868,13092,1 +59651,Jack Hyde,341174,33337,2 +59652,Grandpa Quill's Friend,283995,1635208,49 +59653,Street girl,339342,1478379,14 +59654,Turkish Soldier (uncredited),297762,1592480,68 +59655,Frances Lewis,95037,33021,2 +59656,Wolfgang,203833,40565,25 +59657,Elizabeth,84577,930997,6 +59658,Deb,10521,13635,6 +59659,Harbor Cop,7551,1609622,16 +59660,Becky,13390,59192,3 +59661,Bunnu,96147,97546,0 +59662,Ledamot Kriminalvårdstyrelsen,49940,232472,12 +59663,Waitress,11247,1621842,58 +59664,Rosa (as Yvonne Warren),30637,84285,10 +59665,Neil Craig,23169,2955,4 +59666,Butch Galt,53781,89011,5 +59667,Brenda,268920,60877,33 +59668,Victor Hazell,53524,1923,1 +59669,Núria,26969,96687,3 +59670,Madame Mylene,8088,16975,8 +59671,Himself - Model,97724,1014880,1 +59672,Chan Niang,107891,1420033,6 +59673,Maj. Leslie Nesbitt,330711,104873,4 +59674,The Valet,39048,29268,8 +59675,Atendimento da Agência,34588,1839770,28 +59676,,316885,1662449,14 +59677,Jerry - Secret Service Agent,16239,94601,2 +59678,Meadows,250332,1186769,16 +59679,Partygast,1912,46316,27 +59680,Phone Voice Royal Suite (voice),240832,1426914,51 +59681,Heroin Addict,295723,1418254,24 +59682,Policier centre de rétention,15712,1847020,25 +59683,Bronwyn,42664,49958,2 +59684,Robin Lee Graham,184578,58003,1 +59685,Jonathan,28673,101551,4 +59686,Andrea Montgomery,293625,102475,2 +59687,Horus,5552,44080,4 +59688,Ting-Ting,67342,544779,3 +59689,Hansen,256311,28447,6 +59690,Mrs. Beall,112284,131234,7 +59691,Young Grace,101852,1500891,6 +59692,Zulfi Khan,20623,1430626,13 +59693,Jane,37665,118247,7 +59694,Boksör,236041,571429,3 +59695,dottor Nascimbeni,262786,1882001,10 +59696,Chinese Hooker (uncredited),15092,1895605,61 +59697,Blue Bird,10257,64433,2 +59698,Cao Lei (as Chen Lung),18758,18897,0 +59699,Wounded Staff Member,294652,1871555,21 +59700,Kal Barko,463906,45390,12 +59701,BB,87229,55584,5 +59702,Amethea,29903,52144,0 +59703,Pico,297668,6937,9 +59704,Joanna Polley (age 8),128216,1332940,33 +59705,Himself,374460,280,6 +59706,Kaho Mizuki,31347,81851,10 +59707,Procureur Bracke,44751,553352,5 +59708,Alexander Anderson,72545,3895,2 +59709,Himself - Men's Inner Journey,97724,1388685,35 +59710,Ziggie Feinstein,42669,3163,4 +59711,Reaver,14642,1307523,14 +59712,Mère de Nora,98277,1373116,33 +59713,Mayor Schneer,15661,227,2 +59714,Lena's husband,110887,1323016,15 +59715,"Surgeon, Delphine's husband (uncredited)",1421,3524,40 +59716,Rob Jeffries,100024,112462,3 +59717,,229134,1046561,12 +59718,Repelas,82767,942880,1 +59719,Running Woman,199575,1438911,40 +59720,Prof. G.A. Evans,39311,33005,5 +59721,Mrs. Negulescu,48116,1114512,10 +59722,Christa Mackowiak,91628,38906,2 +59723,Arjun V. Bhaagwat,69775,85969,2 +59724,,57548,1264353,8 +59725,Man at Barbecue,70046,1339111,17 +59726,Timo Laakso,227383,148019,0 +59727,Business Woman,198277,1398879,10 +59728,Kathy,296626,142101,11 +59729,,137504,1093452,9 +59730,Francisco Jose de Goya,96935,106179,1 +59731,Caterer,13668,58800,10 +59732,Beca Mitchell,353616,84223,0 +59733,EMT,226140,141774,8 +59734,John Sterling,5201,29259,1 +59735,Mavis,22447,1687933,24 +59736,Emily Miller,45324,58168,3 +59737,Simon Richards,257345,781,9 +59738,Mika,135799,100766,2 +59739,Jason,53214,210539,1 +59740,James Rascal (uncredited),121674,1270836,42 +59741,Maxwell Taylor,134201,74086,1 +59742,Rachel,16839,144289,6 +59743,Nick,122677,102957,11 +59744,Mr. Coates,20034,86478,6 +59745,Huge Guard of the Sovereign Nation (uncredited),283995,1578275,53 +59746,Marcy,50647,1475102,19 +59747,Girl in Audience (uncredited),43688,123569,10 +59748,Ann Dadier,26516,12309,1 +59749,Aditya,276935,229276,3 +59750,Larry,17038,37006,7 +59751,William West,106635,30276,5 +59752,Marthe,4146,24541,2 +59753,Trailer Narrator (voice),43811,1091289,80 +59754,Kip,408272,1724696,10 +59755,Former President Ukraine (archive footage),319092,1890110,12 +59756,Chiu,338421,1455929,22 +59757,Adolf Hitler / Otto Hahn,336549,22750,12 +59758,Ubasute Old Woman #1,329440,1763157,22 +59759,Oaken (voice),326359,70238,5 +59760,Little Girl,1452,971458,18 +59761,Begum Hazrat Jaan,376047,55062,3 +59762,Teenager,31385,1298421,6 +59763,Woman in Market (as Brittania Paris),44470,1138557,19 +59764,Natasha,63291,557008,4 +59765,Christine,14019,1278257,8 +59766,Dichter,52475,7159,20 +59767,Edna Burroghs,38901,10386,5 +59768,Jacob,83860,55779,3 +59769,Pauline,330275,231427,6 +59770,Himself,103215,57637,3 +59771,Carlos,227348,18300,3 +59772,Henry Ireton,31675,29069,10 +59773,Glenn Dwyer,53882,17343,9 +59774,Mrs. Pitt,114096,161691,10 +59775,,38034,1269956,6 +59776,,49574,355391,3 +59777,Clerk,179066,1016038,48 +59778,Lázaro,167956,1169325,4 +59779,Sasha Gusev,142757,96517,6 +59780,,88285,23,0 +59781,Roz,320588,66221,9 +59782,Countess Vronskaya,96724,11616,8 +59783,Bill Dragger,270015,6462,11 +59784,Tashiro,56599,224666,3 +59785,Himself,366696,1753558,28 +59786,Frank,26971,224515,2 +59787,Mr. Tejani,20623,92686,20 +59788,Vigman,55725,4175,5 +59789,Reverend Smalls,9843,59039,14 +59790,Akinfiy Demidov,376188,1017200,1 +59791,Charles de Marigny,37311,8726,5 +59792,Jacob Auger,41277,1560261,27 +59793,Journalist,93828,219367,12 +59794,Saloon Singer,273578,1263765,2 +59795,Tuki (voice) (as Worm Miller),16873,63449,30 +59796,Herr Knabe,24140,6254,3 +59797,Amy Rainey,1586,49,2 +59798,Harry Willis,10299,30228,4 +59799,Himself,50647,22215,17 +59800,Lino,33489,5443,1 +59801,Deranged Mongol,9471,65975,19 +59802,Music Exec at Penthouse Party,11172,1741973,54 +59803,Herself,253337,1788335,31 +59804,Rick Gergenblatt,50647,77089,8 +59805,,16015,1445192,17 +59806,,32764,67010,6 +59807,Soapy,31146,10366,9 +59808,Stadtrat,302118,31643,9 +59809,Professor Post,43131,8635,0 +59810,Nurse,8899,1637836,10 +59811,Larry,39286,2283,0 +59812,Davide Auseri,183962,39710,1 +59813,Romolo Proietti,56435,45982,6 +59814,Jake Johnson,13173,64135,9 +59815,Barry Oaks,71503,182326,15 +59816,Big Raymond,109391,1204680,11 +59817,Lightning McQueen (voice),49013,887,0 +59818,,20646,119313,4 +59819,Prison Guard (voice),38055,12097,14 +59820,Jenny Brook,270221,1320474,0 +59821,Jérôme,30174,227600,3 +59822,Sam Nicoletti,73612,380,1 +59823,Hans,32635,105217,0 +59824,Balvant Singh,21566,35819,2 +59825,Aunt Helen,138222,1268070,9 +59826,Attrice teatrale,379873,1351952,9 +59827,Farmer,12811,73751,11 +59828,Frazee,61225,14849,12 +59829,Lt. General,39195,94783,7 +59830,Alice Woods,77664,106980,6 +59831,Olive 'Ollie' Frey,118245,1016036,3 +59832,Shipping clerk,1942,85935,15 +59833,Soldier,58244,60907,33 +59834,Craig Gamble,76286,70260,1 +59835,Whitey,94055,1144178,6 +59836,Bearded Man #2,20766,991960,12 +59837,1st Mother,1942,101940,12 +59838,Dr. Kate Travis,68347,61185,6 +59839,Priest (as Charlie Adler),37665,81178,6 +59840,Cab Driver,187596,6734,10 +59841,Millie,22494,63606,3 +59842,Beth Nimmo,409502,1539985,8 +59843,Everett Marshall,87123,103620,8 +59844,Motorcycle Punk #2,54523,1026048,11 +59845,,166262,1147820,15 +59846,Policeman Donovan,84971,30018,5 +59847,Police photographer,118953,133230,14 +59848,L'infirmière,49559,37164,6 +59849,Rubén Caravedo,321497,78882,3 +59850,Nisha,86718,1163172,7 +59851,Maid,28068,99562,12 +59852,"Mabel, Charlie´s girl friend",22943,89563,2 +59853,,18908,1183138,17 +59854,Russian,38322,1869062,63 +59855,Rachel,11496,44977,8 +59856,Jim,81010,11477,0 +59857,Doris Worthington,32996,2491,1 +59858,Nymphet,29610,97619,19 +59859,Singer,425774,1810569,72 +59860,Gil Brickman,24963,62123,3 +59861,Herself,370213,1573209,1 +59862,Paraschiv,32601,937136,10 +59863,Prostitute,245700,65446,14 +59864,Walter Junior (voice),366143,73476,4 +59865,Donna,408272,20318,7 +59866,Eric,345924,1537837,7 +59867,Girl,147722,30518,28 +59868,Claudina,29952,1038482,4 +59869,Cabbie,1942,40965,17 +59870,JE Mayall,245700,29237,13 +59871,Paulie,114096,157582,12 +59872,Hella Lorenz,122435,10139,1 +59873,,25626,931172,29 +59874,Vasilliy Bolodnikov,76757,3555,26 +59875,Plasticoat-Girl,54779,151112,3 +59876,Katya Weiss,19338,1579262,23 +59877,Truck Parts Salesman,6973,124086,28 +59878,Girl in the Front Row,5759,1741931,13 +59879,Customs Officer,2288,23608,4 +59880,Cadet Major Brad Rigby,14008,11023,3 +59881,,320005,1334388,6 +59882,Asa Hawks,42179,5048,2 +59883,Leilani,222388,93377,2 +59884,Brady Mannion,375355,1031685,2 +59885,Jackson,456781,78811,10 +59886,John L. Sullivan,43522,4303,7 +59887,Alda Carani,66893,103113,17 +59888,Mr. Vincent,242042,94182,30 +59889,John Dashwood,315010,34546,13 +59890,Cashier,210047,1720960,13 +59891,Rokoff,225503,1210950,3 +59892,Kip,40221,127544,11 +59893,,336199,1529061,5 +59894,Mouchette,1561,17589,0 +59895,"(segment ""Miminashi Hôichi no hanashi"")",30959,552667,51 +59896,Nathaniel Beenstock,16410,87071,15 +59897,Jessica Baiers,325133,1325731,20 +59898,peasant,50196,129065,9 +59899,Porter,28847,52063,7 +59900,Gabriel's Mother,39240,122518,4 +59901,Himself,338063,1581559,10 +59902,Lazutkin,169656,118705,1 +59903,Juliette,287391,29428,3 +59904,Deputy Coroner,70074,1133063,13 +59905,Deputy Chief Riggs,48852,5255,17 +59906,Black Child (uncredited),22584,103105,19 +59907,Jonquil,44746,62965,13 +59908,Luc,58487,132542,4 +59909,Norman,78522,837588,15 +59910,Tim,39517,119783,10 +59911,Mrs. Emily Hardy,92848,117414,2 +59912,Reportera Guapa,264525,1197398,29 +59913,Elderly Man,14552,559328,26 +59914,Deus,83223,1158646,4 +59915,Frau Bern,110525,103720,1 +59916,Janet,9528,10978,1 +59917,Defiant Reporter,3146,235386,13 +59918,Frack,47761,1328,1 +59919,Herself,413782,143707,13 +59920,Marie,44793,90676,2 +59921,Doña Lupe,14430,70984,17 +59922,Record Hop Dancer,2976,1752721,82 +59923,Captain,19968,129995,10 +59924,James R. Lesko,59189,4776,0 +59925,,92989,125301,11 +59926,Ceilidh Band,1116,1896882,51 +59927,Femur (voice),123025,162630,28 +59928,Starlet (uncredited),2567,1674590,60 +59929,Ben collège,255913,1714034,11 +59930,Record Executive,5123,1269707,31 +59931,Mr. Corey,80720,9596,15 +59932,Verna Carlson,27203,30124,0 +59933,Shockwave / Soundwave / Barricade (voice),38356,15831,17 +59934,Don Antonio (uncredited),42502,30308,30 +59935,Arjun Singh,160261,35742,1 +59936,Raymond,27671,98631,5 +59937,Boss,17467,25251,17 +59938,Captain Leonard,27717,98832,7 +59939,Bearde,97593,1232,5 +59940,Dinah Sheldon,229610,95624,0 +59941,Katharina Bode,259358,45625,2 +59942,Reporter,27925,240544,7 +59943,Bohanen,150065,1519314,18 +59944,Himself,23319,52865,11 +59945,,77673,96416,15 +59946,Wit Neary,265019,205772,3 +59947,Himself,312221,1218769,42 +59948,Dr. Max Adrian Busé,37731,74709,3 +59949,Jeff Clark,291,4322,0 +59950,Tommy,19116,74290,3 +59951,Elizabeth Cheney,120676,29985,1 +59952,"Trigorin, a writer",184795,2091,0 +59953,Policeman 12674,10753,109506,11 +59954,,85317,582484,0 +59955,Southern Stepmom,232672,1221086,28 +59956,Dubai Waiter (uncredited),1726,1209720,72 +59957,Chessy Jenks,86970,58312,4 +59958,Parker O'Neil,44363,131820,0 +59959,Himself - at Banquet (archive footage) (uncredited),33740,8724,77 +59960,Brage,140818,1261967,5 +59961,Bar Patron #2,268920,193946,90 +59962,Maria,39992,76236,7 +59963,Sarah Judd,184267,1150904,1 +59964,Marv,168022,1272217,3 +59965,Thai boxing -ottelija,101838,1029102,30 +59966,Mayor,262958,1537744,31 +59967,Max Koger / Councilor Hylén,41076,141619,2 +59968,Fran Kulok,8080,530,0 +59969,Mrs. Hennessy,78177,583271,11 +59970,Kinon Bachika,20986,230471,11 +59971,Gulmira Mom,1726,206423,45 +59972,Himself,311585,34517,2 +59973,Fedor Dolokhov,149465,1900662,14 +59974,,25626,1184600,49 +59975,Toosie,17111,1629446,17 +59976,Natre,17111,81042,2 +59977,Jimson,381691,1620960,4 +59978,Self,425841,96317,1 +59979,Robert Neuman,259728,63881,12 +59980,Joe Collins,28297,13784,0 +59981,Amantha Starr,37311,41240,1 +59982,Murry Wilson,271714,121718,6 +59983,Referee,71120,1872254,34 +59984,Sheriff Jackson,15264,124875,9 +59985,Denny,78403,56676,2 +59986,Mary,51823,7007,4 +59987,Julien,28417,13514,5 +59988,Mrs. Martha Kildare,153165,14033,5 +59989,Pastor Simón,84354,1161653,8 +59990,Alice,171446,13556,2 +59991,Giovanni,315872,69488,3 +59992,Un gardien (uncredited),29259,24500,15 +59993,Mr. Casimir,50761,14503,3 +59994,Zoe,384737,1585215,7 +59995,Magnolia,118889,399224,78 +59996,Policeman,43113,235718,49 +59997,Mrs. Carmichael,26768,40163,5 +59998,Himself,72711,1147924,0 +59999,Rocca,35926,2097,7 +60000,Senator Brickman,127585,4250,26 +60001,Lasse,2061,1348455,14 +60002,Diner Waiter,167073,1486761,38 +60003,Jack Krutchens,177566,1140633,2 +60004,Herbie,29116,30530,12 +60005,Dancer,11172,1781183,40 +60006,Inspector Rojas,29313,31695,5 +60007,Mrs. Saxon,20544,28044,4 +60008,Kaburagi,14525,560191,7 +60009,Gus Patrick,333385,60881,9 +60010,Paul's Friend (uncredited),156700,1842218,55 +60011,Chip,41556,109,6 +60012,King Vortigern,7096,585,9 +60013,Filodos,96106,51430,9 +60014,Marv,189,2295,0 +60015,Artie Decker,88042,7904,0 +60016,Officer Chuck malone,31448,86499,3 +60017,Xian,8882,72787,17 +60018,Jenny,14868,77719,9 +60019,Sonar Tech #2,52454,99096,25 +60020,Tomasi,33095,17497,0 +60021,Taro Kudo,38221,30469,0 +60022,Carol,30478,1376312,4 +60023,(as as Gil Viviand),28746,1326029,9 +60024,Charles,16186,2202,1 +60025,Additional Voices (voice),82703,1340664,32 +60026,Drew Jacobs,274820,55464,1 +60027,Policeman (uncredited),43522,120818,24 +60028,Defense Attorney (uncredited),42825,14658,10 +60029,,11328,1444492,40 +60030,Jose,25426,48136,5 +60031,Junior Rowdy,320910,1182187,3 +60032,Danny Friedman,327528,180683,10 +60033,Professor John McGregor,29161,9221,1 +60034,Muralikrishnan,357706,237627,4 +60035,conductrice de camion à Montréal,71630,190049,8 +60036,Biker Chick,8988,1742429,82 +60037,Comic Con Booth Girl (uncredited),214756,1376001,35 +60038,Officer Holmes,158990,120244,5 +60039,Ferribotte,62036,91545,2 +60040,Grandpa,403570,29092,4 +60041,Latino Man,2001,1781696,27 +60042,,83732,930022,2 +60043,Phi,42542,168158,4 +60044,Tinsley,352186,936970,4 +60045,Mamma di Manuel,38328,120111,10 +60046,Olga,20414,128474,16 +60047,Gwen,366548,1285323,4 +60048,Peter,18214,991350,11 +60049,Lucy Antrim,144471,159522,2 +60050,Man in Front Row,41171,1392748,27 +60051,Pero Tovar,311324,1253360,4 +60052,Hungry,375366,1742694,34 +60053,Bobbi,228970,4784,1 +60054,Big Booty Judy,13960,1819817,13 +60055,,74674,1445112,13 +60056,Timar,48180,58047,5 +60057,Cynthia Bradford,418969,88168,5 +60058,,32306,146980,2 +60059,Aunt Margo Bellacrest,80720,30242,6 +60060,Deli Waiter,64685,928929,13 +60061,Uncle Curtis,13185,25135,6 +60062,Admiral William Adama,69315,587,4 +60063,Sally,48843,77898,3 +60064,Belinda Weston,146313,225866,9 +60065,Flintwinch,47084,2629,5 +60066,,224714,1210235,1 +60067,Elling,12076,47175,0 +60068,Lt. Barney Greenwald,132961,10866,0 +60069,,31412,1888398,13 +60070,Von Blitzen,177902,4119,14 +60071,Merrill Ross,52314,21259,0 +60072,Le père d'Ahmed,336811,1026733,9 +60073,Markiisi Mongaga,293271,234256,8 +60074,Leo Colston,36194,16274,4 +60075,l'agent de la circulation,4948,1003,6 +60076,Renée Le Roux,270899,50,1 +60077,Limo Driver,921,27586,53 +60078,Man at Diner,3580,77597,19 +60079,Ralph,63360,236984,11 +60080,Doctor,291907,1303584,5 +60081,Maria Hill,99861,71189,12 +60082,Santa Claus,13383,223079,0 +60083,Tony,88518,1418948,8 +60084,Miss Eastern Europe (uncredited),11338,935959,37 +60085,Fenek,18352,64585,24 +60086,Kanoko,24154,91290,2 +60087,Lutz,68191,5182,7 +60088,Clip from 1951 version of 'Show Boat' (archive footage) (uncredited),33740,11025,88 +60089,Rigby,354857,1215264,4 +60090,Beran - the gypsy,27003,96742,5 +60091,Kieran,17622,1088195,8 +60092,Dar,37926,85203,2 +60093,Michael Darling,273106,1519551,8 +60094,Manina,296491,1169660,7 +60095,Count Ordóñez,16638,3268,2 +60096,Simon,53172,156590,8 +60097,Phil,40807,89551,13 +60098,Lady Blessington,42678,128438,11 +60099,Clotilde Calogero,84865,129441,4 +60100,El Chamoy,264525,91251,16 +60101,Ammiraglio Ulderisi,43548,5968,14 +60102,Peter Bretter,9870,41088,0 +60103,Pie,64786,1095690,2 +60104,Master Wong,25645,1174692,8 +60105,Sylvester,59115,990136,14 +60106,Himself,24440,91611,0 +60107,Trailer Park Resident,186869,1333809,34 +60108,Sua Grazia,44658,99282,3 +60109,Bus Passenger,268920,1687922,59 +60110,Moose,11496,24702,3 +60111,Sarah Fishbine,82868,53647,2 +60112,Jake Sully,76600,65731,2 +60113,Mary,73027,70510,2 +60114,Himself,410718,116341,1 +60115,Henrik Bergman,41764,64971,0 +60116,Wally Benton,90461,105636,0 +60117,John,52044,231442,3 +60118,Annie Boley,202941,89043,2 +60119,Policeman,5123,72988,35 +60120,Mr. Throstle,104211,89744,9 +60121,Tejo,403605,1829913,4 +60122,Alison Mayhew,51828,1276,2 +60123,,188640,85694,19 +60124,Johnny,76784,117200,1 +60125,Kostia,63281,235097,6 +60126,Flammarions' Party Guest,31993,2776,27 +60127,James Busbee,256962,4688,3 +60128,Norris,5965,46923,11 +60129,Docteur Becker,73532,548816,8 +60130,Genie (voice),343693,34982,1 +60131,,195544,88469,21 +60132,Carmichael,89086,34208,33 +60133,Hughes' Staff Person,2567,108302,53 +60134,un officier,63764,5763,3 +60135,Linda Forchet,21948,88093,2 +60136,Joan,31942,68850,7 +60137,Tanya's New Boyfriend,22447,1687932,23 +60138,Sonsoles,254869,1423099,56 +60139,Romy,63217,34915,0 +60140,,105703,136891,6 +60141,Meghna,353533,1064129,16 +60142,Dog,19719,85119,23 +60143,Rex,91333,53252,4 +60144,Bora Jovanovic,57419,15265,8 +60145,Sylvia,126841,110515,6 +60146,Large Woman,1724,1366381,63 +60147,Rohit Kumar,20623,1064196,6 +60148,Maitre d',10362,1758890,20 +60149,Michael,253258,57387,8 +60150,Ephor #3,1271,1330747,22 +60151,Manuel,169869,55820,3 +60152,Sgt. Steele,28437,27329,11 +60153,Detective Marco Antonio Molina,264397,18463,1 +60154,Woman Motorist,146233,1377068,31 +60155,William Jensen,29695,86313,15 +60156,Ms. Grose,21794,47615,1 +60157,"Gilbert Blunt, Earl of Alban",24442,91617,2 +60158,Queen Maya,184351,44881,1 +60159,,14210,1000984,9 +60160,Sophie Quinn,323149,1310503,3 +60161,Bucky Weston,9981,27972,4 +60162,Himself,312221,1746875,21 +60163,Robert Rodale,18189,206410,10 +60164,Guinevere,19957,25787,1 +60165,Club Manageress,32577,1763865,30 +60166,Dan Kingston,397837,42706,10 +60167,Young Annmarie,297853,188104,24 +60168,Shani,277710,1141402,25 +60169,Connors,55032,748,6 +60170,Prinz,14489,99272,3 +60171,Jack Wootton,31597,44208,6 +60172,Plern,72733,545299,2 +60173,Maestra,126315,1376187,6 +60174,Samantha Peterson,42187,127554,1 +60175,Jane Claremont,245906,4491,5 +60176,Grandmother,28710,101689,3 +60177,Resistance Soldier,140607,1399529,53 +60178,Victoria av Baden,41764,235209,12 +60179,Ringleader (voice),177572,1502447,30 +60180,Ashes girl,330947,1106543,22 +60181,Narrator,5748,45316,10 +60182,Car Thug #2,10739,1089394,20 +60183,Young Lorens Löwenhielm,11832,1429990,8 +60184,Mark,121662,1041731,2 +60185,Mary O'Reilly,151826,544227,16 +60186,Yaşar's wife Gülnaz,74879,1001781,12 +60187,Rapist,22429,35756,6 +60188,Mona Jansen,22140,83011,4 +60189,Mrs. George Peters,178341,30214,5 +60190,Hermann Höfle,72421,1050916,5 +60191,The Mandarin of Yang Cheng,37451,3609,3 +60192,Sara Palski,65055,60072,0 +60193,Barmaid,255913,1424788,36 +60194,Motard 1,52369,939470,7 +60195,Roscommon IRA,262958,1537741,28 +60196,Doctor,23628,90413,21 +60197,Jean,56653,135665,0 +60198,Simon Colón,14063,59251,1 +60199,DIG,108726,29068,1 +60200,Sunny Khurana/Khosla/Arun,20495,35070,1 +60201,Rosella (Canciones),13283,1497224,2 +60202,Mark Twain,110123,234297,0 +60203,ragioniere dell'imprenditrice,107052,228158,18 +60204,,345519,1479514,1 +60205,Rudi Wallchek,68976,119081,3 +60206,Anna Maria,82817,44110,3 +60207,Officer (uncredited),1976,30017,44 +60208,Schneider Voss,1655,18404,5 +60209,Papi (voice),105965,41798,0 +60210,Pedro (voice),172385,82092,14 +60211,,131478,108453,4 +60212,,181456,1524414,15 +60213,Graham Callan,27122,47879,2 +60214,John Grizzly,1825,33013,4 +60215,Party Goer,8988,1742436,85 +60216,Glen,79120,586001,1 +60217,Jeffrey Gregg,245706,53963,13 +60218,Ricardito (as Alejandro Felipe Flores),20941,971924,11 +60219,S.O.E. Official,369885,16358,3 +60220,Grandpa Carl Pusser,25473,30297,3 +60221,Himself,8847,56089,9 +60222,Prison Guard,42325,131003,14 +60223,Martin Sprue,28263,1270,2 +60224,le juge,4974,553215,8 +60225,City Assemblyman,3782,1135804,22 +60226,El Greco,29272,233135,0 +60227,Cathy Hunter,30996,1197045,3 +60228,Mr. Nelson,28586,101232,5 +60229,Quentin Glass,7220,883,2 +60230,Ali,244539,1508828,18 +60231,Jak-Doo,280019,1336803,9 +60232,Pepper Flynt Busbee / Little Boy,256962,1256170,0 +60233,Elisabetta Recchi,41110,128748,3 +60234,Angela,77794,236388,8 +60235,Marathon Official,7942,193340,23 +60236,Narrator (voice),15325,2227,1 +60237,Brad Johnson,17003,459980,2 +60238,Fay Wilson,112083,13353,1 +60239,Parvati Sharma (Munna's mother),19625,11849,4 +60240,Mrs. Sims,120259,19098,19 +60241,Santiago Muñez,9815,58982,0 +60242,Phil,193610,210271,5 +60243,Himself,13516,6957,14 +60244,Aunt Gwendolyn 'Gin' Stoker,86825,67837,4 +60245,Lt. Thayer,91477,37446,0 +60246,J.J. King's Daughter Kitty,25768,589220,3 +60247,Champ - Gene's Horse,103168,151104,1 +60248,Alabam' Brewster,33541,100253,4 +60249,Inspector Fung,38034,1164880,10 +60250,Stepa,77381,1038491,3 +60251,Henry Horatio Hobson,16410,10921,0 +60252,Al Lynch,50549,14573,15 +60253,Luca Albanese,105384,1121908,8 +60254,Opa,3716,1178333,30 +60255,Head of Scientific Staff (as Wordie),49837,142891,5 +60256,Vytila Byju,332827,1658598,16 +60257,Jane Broderick,46184,101991,0 +60258,Member of Parliament,109716,101742,65 +60259,Detective Ed Landry,67216,68180,8 +60260,Jimmy,58918,1215803,11 +60261,Ali La Pointe,17295,140996,0 +60262,Cindy,78177,583270,8 +60263,Mama,31473,40349,4 +60264,Adam Tański,370264,68828,3 +60265,Melissa,112161,27268,11 +60266,Vivian,345069,1478647,4 +60267,Cowboy,73984,1016083,12 +60268,Paula (voice),411221,114463,1 +60269,Man in Black Suit,102382,163731,23 +60270,Tommy Burgess,8988,24045,2 +60271,Fernando del Rosario,418072,1211371,5 +60272,Slade,362439,1523657,5 +60273,Sami Yildiz,308174,5850,12 +60274,Tom Avery,166621,2501,7 +60275,Camille / Carolyn Cassady,83770,205,5 +60276,Mrs. Bauer,61908,100129,19 +60277,Madeline,110898,187400,0 +60278,Cop #2 (uncredited),283995,1873278,63 +60279,Henry,131194,1037,2 +60280,Doctor Kogan,62731,143725,3 +60281,Tate,25977,102777,5 +60282,Med Tech,294254,1720434,32 +60283,Ryan,44363,131823,7 +60284,Xaver Ferdinand Maria Bolwieser - Station Master,122487,21997,1 +60285,Grand-mére de Nawal,46738,1644519,20 +60286,Yai,50108,149901,6 +60287,Ben Kirby,207178,78792,0 +60288,Garry Lejeune / Roger Tramplemain,26670,27772,7 +60289,Cara (as Emma Noelle Roberts),73424,968089,4 +60290,Waldéia,227932,1422048,7 +60291,Vladimir,114922,296274,0 +60292,Himself,159138,1306414,5 +60293,FBI Agent,298,16302,16 +60294,Cori Edwards,11795,71297,1 +60295,Fighter number 18,110552,1191290,8 +60296,Mede,38027,195813,2 +60297,Shankaralingam,40998,130114,11 +60298,Angelica,57996,560297,11 +60299,Pedistrian,76757,1394345,42 +60300,Elizabeth Rock,80368,127164,5 +60301,Mr. Hall,96936,103853,10 +60302,Larry,170603,3034,0 +60303,Man in Hell (as Costica Draganescu),59051,1088087,1 +60304,Reporter 1,270654,128013,24 +60305,Ryokan,45987,134387,9 +60306,Phil Neuhauser,52867,101741,8 +60307,Drew,398137,7489,1 +60308,Dirch Frode,15472,47070,15 +60309,Susan Bonnard,178587,1215925,2 +60310,Herbert Einstein,145247,1184049,13 +60311,Marcello,302802,128417,25 +60312,himself,190940,85034,26 +60313,Hank - Man in Dance Hall,55604,1095107,29 +60314,Vallató II,94663,125162,9 +60315,Peter Lyncort,172908,3381,0 +60316,Beggar/Thunder's men,64316,119460,15 +60317,Salem,162374,41881,2 +60318,Shane,37665,18972,3 +60319,Neighbor Woman,69,71887,31 +60320,Amil,49220,590858,9 +60321,Leader Soldier,68737,1328755,14 +60322,Themroc,7014,3784,0 +60323,Detective,436343,81511,8 +60324,Glinda (voice),59981,40389,11 +60325,,198890,1300113,10 +60326,Zweig (Stimme),328032,16814,9 +60327,B.T.,50295,108188,4 +60328,Houcine,99698,947663,3 +60329,Yuugo,17189,68472,4 +60330,Doll,7547,52882,7 +60331,Jackson,98557,214729,6 +60332,Alex Kovac,47878,10127,0 +60333,Police Dispatcher (voice),280617,1851695,29 +60334,Arthur Hastings,26182,13969,13 +60335,John,359471,1509230,21 +60336,Aunt Hannah,122698,74874,3 +60337,Ben Kinnear,15935,75186,0 +60338,Mariette,68023,238401,15 +60339,Sait,10821,1174577,3 +60340,jako Młynarz,406449,1650387,22 +60341,Rebel Slave,339408,1622092,34 +60342,Carlotta Ravenswood,92716,15973,4 +60343,Danielle ('Le divorce'),98302,6014,10 +60344,Newspaper Boy,43833,37874,35 +60345,Pascal Fabre,82098,15397,0 +60346,Mrs. Henderson,100910,8515,6 +60347,,33611,1056291,18 +60348,Hospital Nurse Reporter,68721,1735542,28 +60349,Marquis St. Evremonde,17831,8727,4 +60350,Gondorian Soldier 3,122,9383,25 +60351,Natasha,18442,101254,8 +60352,,410259,1295668,6 +60353,Regine,85699,67193,15 +60354,Richie Avery,26036,8242,4 +60355,Vieja Bolsas,59117,1093951,17 +60356,Elle-même,222297,1294425,2 +60357,Off-Text (voice),18912,83866,1 +60358,Chen Jiaye,331075,1317523,3 +60359,Fran,209263,149334,7 +60360,Flying Blade,263341,145248,7 +60361,Chloe,32338,19119,0 +60362,Levi Eshkol,55225,1593231,2 +60363,Radu,62349,60422,6 +60364,Princess Dede Marescalli,108535,12776,7 +60365,Porter Black,50780,21028,3 +60366,Shouko Satou,51549,144418,1 +60367,Beggar,9470,65975,15 +60368,Secret Service Agent John O'Connor,212713,1213024,6 +60369,Joe,98864,12645,5 +60370,Martian Manhunter (voice),30061,13477,11 +60371,Letty,202241,164094,10 +60372,Tracy,49950,90033,3 +60373,Sebastian Vettel (voice),49013,1443760,48 +60374,The Businessman (voice),309809,13,10 +60375,Pøbel,382125,1576784,8 +60376,Euro Assistent,394645,1001068,10 +60377,Mr. Wang,364324,130984,5 +60378,Lt. Col. Sinor,59722,18297,10 +60379,Shego (voice),51786,16845,11 +60380,Paul Maguire,242310,2963,0 +60381,Biedermann,336050,1457026,2 +60382,Walpurga von Schwarztal,374319,1167136,1 +60383,Jiniak (voice),233423,85168,12 +60384,Đura,15303,111063,11 +60385,Oil Man at New York Meeting,55604,34447,74 +60386,Pope Joan - age 6-9,9503,1568435,7 +60387,Pick,218582,17759,5 +60388,David McLeod,29805,1318155,20 +60389,Mindy,308639,78046,13 +60390,Zak,78563,587155,0 +60391,Michael 'Goob' Yagoobian (voice),1267,61428,7 +60392,Gloria,307081,44578,14 +60393,Gordon,65055,59231,2 +60394,Cam,137776,33353,4 +60395,Anna,13058,1589655,26 +60396,Andrew,335778,1316401,20 +60397,Julieta Arcos,332872,24974,0 +60398,Ignasi,390547,1354964,2 +60399,Küsterfrau,313896,1404560,12 +60400,Himself,53380,17883,10 +60401,One Eye (voice),13798,112887,9 +60402,Tom Roscoe,95504,96142,14 +60403,Rosie,219466,1080542,9 +60404,Marian,332872,25258,13 +60405,The Village Doctor,43093,153032,4 +60406,Lauren,109439,78324,11 +60407,Girl riding with Jai,60392,929605,8 +60408,Becky Carter,43753,129802,8 +60409,Social Worker,39824,182728,14 +60410,Lui-même,58487,227881,2 +60411,Herself,28036,93091,4 +60412,Man Laughing at Demo,67375,30217,27 +60413,Sun Green,308,4441,10 +60414,Alexander '8 Ball' Hamilton,26376,96258,76 +60415,Han Sung-hyun,12650,73249,0 +60416,La femme âgée,152989,17481,21 +60417,Herself,27637,1724694,37 +60418,Himself - Plastic Surgeon (as Dr. Greg Mueller),97724,1388689,39 +60419,Senator's Secretary (voice),8988,452,35 +60420,Marco Nia,74950,513793,1 +60421,,53688,929654,1 +60422,Kurt,54660,15900,3 +60423,Vivan,310137,998278,12 +60424,,461088,1261577,9 +60425,Himself,429801,86498,1 +60426,Mail Room Guy Without Glasses,253077,4495,13 +60427,Renata,60071,68848,1 +60428,Manon Brügen,13336,59373,3 +60429,Jackson Laidell,62720,2673,5 +60430,Member of 4 com. associations,18731,1180787,13 +60431,Sybylla Melvyn,16659,351,0 +60432,Sarah Jane 'Sal' Ryan,64928,80994,0 +60433,Faranoush,10201,113567,15 +60434,,380124,1569986,14 +60435,Congresman Davis,127585,173658,24 +60436,Macbeth Child,225728,1774534,12 +60437,Reporter (uncredited),47882,931793,22 +60438,P.K. Infant,13823,75776,13 +60439,Leo,287281,132755,1 +60440,Vojtík Prachar,18352,136797,30 +60441,Juan,229559,1610,0 +60442,Boy on Bicycle,4538,1797594,22 +60443,Janitor,14207,1036218,12 +60444,Kissing Boy,33481,110791,41 +60445,Doherty,262958,953022,37 +60446,Hvatayka the Jackdaw (voice),77294,1416549,6 +60447,Mr. Piper,43759,130423,8 +60448,Father,49653,557377,2 +60449,Zoe,70772,177919,10 +60450,Khan Mir Jutra,43889,101890,8 +60451,barista,58611,1891739,12 +60452,Alter Geistheiler,256311,4798,8 +60453,Arnold,196065,57110,9 +60454,Dorns Adjutant,178446,24060,39 +60455,Ma Holleeder,228968,548764,8 +60456,Justice of the Peace,29117,85990,11 +60457,Fremissin,66897,8992,0 +60458,Merrell,43158,129293,3 +60459,Поддубный,282024,86726,0 +60460,Zsuzsa,436343,1171049,9 +60461,Steph,218778,105831,17 +60462,Vincent Brosseau,37779,118509,2 +60463,New England Telephone Company Executive,67375,1005347,36 +60464,Lisa,371181,1090397,9 +60465,,265351,222543,7 +60466,Claude (voice),81188,1271684,7 +60467,Buzz,12447,13591,6 +60468,Barbara,18633,20187,8 +60469,Tokumitsu Yuhara,12636,73186,1 +60470,Mrs Williams,16058,79109,12 +60471,Win,92309,6938,5 +60472,Loser Musician,16890,206483,9 +60473,Chief Bogo (voice),269149,17605,3 +60474,Mathilde,208305,1191301,4 +60475,Julie,38282,37920,3 +60476,Clete,26502,103789,6 +60477,City Hall Official,167073,160441,43 +60478,Clay / Pool Party Guest / Beast,66881,1204517,23 +60479,María,79775,123459,6 +60480,Smitty's Wife,120615,138249,8 +60481,Spiegel,9803,59337,13 +60482,Tod,183825,14419,28 +60483,Ginnie Moorehead,38724,4090,2 +60484,LIlly,18040,17236,1 +60485,Robin / Carrie Kelley,123025,42160,1 +60486,Doug Reed,21544,17485,5 +60487,Waitress,146216,1433017,48 +60488,Wolfgang's Mother,166666,33395,4 +60489,Radhe Mohan,56969,42802,0 +60490,Yoga Instructor,395982,1379278,8 +60491,Mr. Stoppable (voice),51786,827,10 +60492,Polar explorer (voice),56391,1119765,14 +60493,Russian Officer,371741,1569924,15 +60494,Chuma,89086,1127307,26 +60495,Chambernaid,348631,1865183,21 +60496,Judith,100088,86367,2 +60497,Alice,56809,1232748,5 +60498,Transformed Sarah,378018,1024298,14 +60499,Mrs. Beesley,159469,120010,9 +60500,Spectator At Race (uncredited),120831,143820,11 +60501,Brett,10033,62248,12 +60502,Gallo,19898,55086,2 +60503,Bruce,23853,1062,2 +60504,,336669,71199,4 +60505,Dr. Frank Parrish,41030,97145,0 +60506,Penny,308032,222129,8 +60507,Sasha,18467,74423,3 +60508,Pigoil,15457,21171,0 +60509,Uncle Caleb,128669,8517,5 +60510,La cantante (uncredited),43231,1360674,13 +60511,Chardonnay's Friend,39356,122758,23 +60512,,47324,1620567,6 +60513,Gunther,139930,1111693,0 +60514,,105760,107869,10 +60515,Soong Chingling,69310,12676,13 +60516,"Tankist, drug Klima",292656,562611,11 +60517,West,216580,1333940,3 +60518,Leroy,75300,502534,7 +60519,Steve Price,29365,40433,2 +60520,,65614,81751,5 +60521,Ship's Captain (uncredited),39943,133277,11 +60522,Claire (as Maria Russo),298228,1709625,8 +60523,Evers,82485,4442,7 +60524,Trevor Cooper,218778,1581096,11 +60525,Himself,28036,99906,1 +60526,,271919,1324188,4 +60527,Mrs. Woods,114577,54800,7 +60528,Michael,51800,1167148,4 +60529,Himself,124071,143437,3 +60530,Mary,34672,2321,25 +60531,Mr. Royce,16444,119347,12 +60532,Sing-Along Bar Host 1,85265,227372,17 +60533,Daphné Fougerole,430365,39195,3 +60534,Lele (voice),286192,1470175,1 +60535,Polizist,177979,22186,8 +60536,Priest,203833,1309014,10 +60537,il farmacista,120922,1231318,17 +60538,Co-Pilot,22076,112345,10 +60539,Brogan (voice),10192,65717,5 +60540,Bill Spencer,80771,13576,0 +60541,Gas Station Attendant,52122,164974,9 +60542,AA Counselor,266425,1313153,26 +60543,Guillaume,255913,1070634,31 +60544,Ngai Fei,41380,1011224,2 +60545,Clayton (as Robert Wilke),26283,2096,11 +60546,The Devil,64847,70131,2 +60547,Doktor,10821,1174578,4 +60548,Nobu,356156,1762673,6 +60549,Shibazaki,209032,90161,3 +60550,Robert,262945,1084794,1 +60551,Prison Matron,81541,44421,7 +60552,Samantha,32868,109740,6 +60553,Krishnan's father,398786,1150850,9 +60554,С. В. Рахманинов,419601,1190216,5 +60555,,4146,34260,5 +60556,Lukas,248933,907352,13 +60557,The Mayor,27470,19097,14 +60558,,35572,86082,5 +60559,Danny,48838,1115,8 +60560,Jackie Trent,27549,56152,1 +60561,,64454,233409,15 +60562,Orloff's Secretary,27144,1289854,12 +60563,Chick Farber,99863,33022,1 +60564,Michael,263627,5009,5 +60565,Pretty Girl #2,32657,543990,49 +60566,Crystal,17082,1196098,3 +60567,Jan,57829,1886754,9 +60568,Ebirah,3115,1482690,25 +60569,Vicky Rice,101669,17236,8 +60570,Capt. Giovanni Severi,70734,29522,1 +60571,Racalmuto,62397,1894263,10 +60572,Ben Harris,3580,52021,7 +60573,Tía Pilar,54236,25259,11 +60574,Harold (child),118953,117856,15 +60575,Mayor,280617,1851696,31 +60576,Ghost of Cary Grant,55177,6677,1 +60577,Von Crantz,16444,119360,16 +60578,Mrs. Dibble,103432,1227276,27 +60579,Sarah,104232,58114,1 +60580,Broker,43811,975306,49 +60581,Vanessa Maguire,242310,50347,2 +60582,Trip,14457,71520,3 +60583,Soulis,47683,1750915,5 +60584,Alan,17483,57995,6 +60585,Julia's mother,81312,1384,4 +60586,Franklin Phlegm,85200,1709369,3 +60587,Doctor,456101,1216801,10 +60588,Ex-Con in Alley,171446,34098,10 +60589,,63859,33853,9 +60590,Friend At Beach,19053,198178,12 +60591,Young Victor Crowley,11908,131822,14 +60592,Guillaume,116463,1691470,16 +60593,Young Diana,13079,38940,1 +60594,Cpl. Morrah (as Willie Myers),75162,1563622,11 +60595,Mr. Palmer,44087,12727,5 +60596,Publisher,67272,225092,3 +60597,Richard,40258,49863,2 +60598,Madre Irene,25376,1331814,27 +60599,Agatzi,242097,74492,6 +60600,Minister Ratsuda,50108,1089591,5 +60601,Costanza,42679,128442,8 +60602,Female Guest,13777,75279,33 +60603,Herself,128140,1161079,4 +60604,Lee,2179,938432,7 +60605,Luca,43544,129572,5 +60606,Minotaur,21533,118459,7 +60607,Martha Wayne,209112,62220,14 +60608,,47046,1601531,9 +60609,Andrew 'Andy' Hardy,43846,1937,0 +60610,,328692,27962,5 +60611,Luke,20718,25934,7 +60612,Becker,27259,22169,8 +60613,Dead Man,133523,1097462,2 +60614,,248417,168773,3 +60615,NASA Executive (uncredited),365942,1670762,65 +60616,Ellen,70666,1863902,44 +60617,Judge Nedra Henderson,31462,9805,5 +60618,Jaku Abe,45384,46624,3 +60619,Himself,15177,77991,20 +60620,Long Bill,89551,69248,0 +60621,Student,324440,115421,1 +60622,Newscaster,28340,99088,9 +60623,Mariví,59117,4367,14 +60624,Hanna Schmidtbauer,85469,54948,8 +60625,Barcas's Aide / Natsuki Taga,197854,1213844,9 +60626,Rollie,105528,211742,10 +60627,Jetson Harlow,188102,179274,4 +60628,University president,43891,13976,8 +60629,Emiko Yamane,12561,33768,10 +60630,Maggie,16022,515,8 +60631,Hoop,2017,6806,3 +60632,Wedding Announcer,214756,1224526,74 +60633,Old Hanife,300490,1380796,5 +60634,Christopher Kimbel,15640,35263,9 +60635,Wesley Park,37954,82613,3 +60636,Older Hannah,39334,73177,6 +60637,Gina,54099,214438,6 +60638,,34019,554233,8 +60639,Sgt. Helen Smith,161602,80255,1 +60640,Philippe Deschamps,53404,56404,2 +60641,Daniel Webster,112284,34747,10 +60642,Arta,337758,1525501,9 +60643,Adenike Olumide Balogen,157384,82104,1 +60644,,386100,8802,5 +60645,,327935,97276,5 +60646,B-Dawg (voice),70587,61263,13 +60647,Joe Moran,32610,83474,2 +60648,Maria (voice),328111,145184,14 +60649,Mop Executive,274479,18328,23 +60650,Fräulein von Bernburg,4955,27932,0 +60651,Milyya,269173,1388918,23 +60652,Belle,30844,13241,0 +60653,Vitus - age 6,14804,143021,0 +60654,Himself,18893,38667,5 +60655,Samurai Ensemble,616,1045069,39 +60656,Boroff,170936,1547,0 +60657,Aling Pining,208579,1078825,2 +60658,Mailman,215379,1385282,17 +60659,Father,56150,16554,6 +60660,Grand Father,80343,1197611,6 +60661,Peter Pan,120672,108101,5 +60662,,227552,77293,4 +60663,Miss Tregarthen,173638,1781523,11 +60664,Dan MacDonald,27917,132598,0 +60665,Paul Anderson,334074,19655,5 +60666,Horace,16659,26059,10 +60667,Defense Secretary,257344,56728,19 +60668,Rory Johnson,35724,9045,1 +60669,Documentary Filmmaker (voice),270946,6818,11 +60670,Dr. Richards,85009,3014,9 +60671,Beatrice,167938,233868,2 +60672,Lisa,244801,1312687,6 +60673,Herself,68721,1212282,19 +60674,Gengis,213095,556906,2 +60675,Keevin,82679,928532,3 +60676,House wife at Award Ceremony (uncredited),1726,1209718,69 +60677,доктор Борменталь,43680,143360,1 +60678,Mike Barton,166904,30280,13 +60679,Biker (uncredited),293660,1285612,47 +60680,Maynard,132363,15864,8 +60681,Gretl Braun,102155,30845,8 +60682,Bananny (voice),322487,4038,2 +60683,Voice,55624,1463996,2 +60684,Himself,17073,42545,4 +60685,Parkleder,199374,202575,12 +60686,Trit,222872,86602,3 +60687,Maj. Gen. Eugene Bush,19968,119381,4 +60688,Youssan Baksh,196852,585404,14 +60689,Himself,173467,4611,28 +60690,Woman in Stairwell,1550,1217647,13 +60691,Renegade Production Crew,91679,1782605,46 +60692,Lorie Bryer,17956,20,1 +60693,News Anchor,98566,1215973,27 +60694,Bullet Factory Worker,75761,1769865,23 +60695,Jackson Jekyll (voice),227257,219486,7 +60696,Ping,40346,88495,3 +60697,Motojima's Wife,117212,552005,4 +60698,Polly Purebred (voice),6589,9273,7 +60699,Bessie Baxter (hotel proprietor),40719,83235,4 +60700,Davey Jackson,362026,1516697,4 +60701,Roopen ja Pian poika,20160,148048,14 +60702,Yannis,371818,18848,2 +60703,Inn guest,63441,1583011,16 +60704,Borelli,1662,60023,7 +60705,London,340684,1028899,4 +60706,Scared Insurgent,68721,113008,45 +60707,Makimachi Misao,221732,1076363,10 +60708,,314371,1583954,32 +60709,Pinecone Jinn (voice),116711,31531,11 +60710,Resa,2309,7055,1 +60711,Bertha Barnes,19096,17755,1 +60712,Mizky,11795,1408161,5 +60713,Michael Todd,261101,11486,2 +60714,Mr. Marty,45679,85943,6 +60715,Mr. Quarre,2017,14324,4 +60716,Quasimodo,148636,25503,0 +60717,Manfred Rommel,139862,525439,10 +60718,Maciek Tomczyk,224,1386,2 +60719,Hank Lee,44888,11492,0 +60720,Sondra,252680,26996,2 +60721,Rico Angelo,25633,5248,2 +60722,Jorge,294254,4808,3 +60723,Gülo,27211,90283,6 +60724,Nikolai Spielrein,48231,1012899,10 +60725,Mildred Kemp,14254,83423,8 +60726,Father Time / Security Guard / Timenado Mechanic / Willy / News Reporter,354857,60279,13 +60727,Jeannie,54396,938742,0 +60728,Mrs. Brown,264309,1006951,5 +60729,Szelka,425961,82311,8 +60730,Farmer,72984,1764691,7 +60731,Shemeikka,55257,20853,3 +60732,Richard Barkley,152532,21710,5 +60733,Stock Actor,42345,11764,8 +60734,Viktualia Vicky' Veloso,61035,3932,4 +60735,Frenando Nunez,77641,29904,3 +60736,Renato,43648,119991,1 +60737,Harry Stetson,54523,104958,12 +60738,Old Man,151652,1131833,0 +60739,Surl,19017,141401,11 +60740,Thelma Jordon,35404,14974,0 +60741,Freddie Chapman,4375,290,0 +60742,Franco,137315,128456,5 +60743,Chuck (as David Condon),193435,120211,4 +60744,Henry Susskind,53792,9643,11 +60745,Santa Climbing in Window,27414,33299,42 +60746,Shereen,1640,2393,11 +60747,Dead Teenage Junkie (uncredited),280092,1053291,27 +60748,Pätkä,156917,232310,1 +60749,Father,166904,119508,14 +60750,Harley Chung,411741,139820,5 +60751,Young Mother,339403,1050350,21 +60752,Charlie Ryan,297853,11784,5 +60753,Tom F.,369033,1450803,17 +60754,maresciallo delle guardie carcerarie,64465,50003,4 +60755,Bachelorette #3,193893,1381670,51 +60756,James,19719,15218,0 +60757,Cluny Brown,52270,39554,1 +60758,Shaquille,387999,110183,1 +60759,Konstantine,17669,5004,6 +60760,Bobbi Brody,29510,22494,16 +60761,Abu Mokhif,98203,586013,5 +60762,Cellmate,86838,71686,18 +60763,Gino,29100,2094,12 +60764,Technician (uncredited),31984,153032,22 +60765,Loa,44773,131439,1 +60766,Patricia,84354,1161649,13 +60767,Jeanette (voice),258509,1772,11 +60768,Danusia,52920,2822,3 +60769,Harry the Werewolf / Bug-a-Boo (voice),48567,26089,1 +60770,Theatre Audience Spectator,131360,29266,21 +60771,Logans`s Sister,77877,568045,7 +60772,Aaron,360205,1511017,5 +60773,Pellet Maker,436,5903,11 +60774,Elder in Norway,43812,89727,29 +60775,(archive footage),33740,141600,91 +60776,John Carson,336775,20753,9 +60777,Nick,26223,7498,2 +60778,Tom Johnson,28730,4776,6 +60779,Stewart Stanton (voice),16873,16828,3 +60780,Cheung Wing-Sing,365222,117760,1 +60781,Security Guard #1,12594,150059,7 +60782,Tamineh,9943,36653,10 +60783,Dr. Wayne Bentley,68720,7665,2 +60784,Evo,22579,88940,1 +60785,Magret (voice),9514,1464143,15 +60786,Seal,257344,1084758,51 +60787,Nick Sirocco,175171,2313,7 +60788,Fred Jennings,45714,187523,10 +60789,"The Dragon (segment ""The Reluctant Dragon"") (voice)",22752,141520,5 +60790,Julie,335498,22948,7 +60791,Nick Marco,322460,4355,4 +60792,Les (as Lindsey Honey),31875,124094,3 +60793,Trailor,84942,19302,1 +60794,Sister,21554,62127,2 +60795,2nd Digger Ethem,74879,1001789,20 +60796,Dino Battaglia,95136,33,2 +60797,,63899,932882,9 +60798,Joe Barton,46494,136403,5 +60799,Himself - Interviewee,318224,59978,3 +60800,Antonio,2143,132888,9 +60801,Maryam,44398,130702,2 +60802,Tim Willey,239498,92282,4 +60803,Court Attendee,339994,1583622,21 +60804,Simonetta,27507,85848,2 +60805,Richardson,40719,30292,6 +60806,Himself,414749,71403,9 +60807,Malia,119816,1071138,3 +60808,Alex Brubeck,17780,82358,0 +60809,Touring Pro,20210,117265,22 +60810,Emilie,4266,35877,8 +60811,Sgt. Eddie Towler,133715,16897,1 +60812,Colossus (Facial Performance) (uncredited),293660,1683958,41 +60813,Meg Maddux,125990,58522,3 +60814,Le commissaire,38883,7285,7 +60815,Duncan Edwards,62441,237455,2 +60816,Gazzy,339116,1518187,6 +60817,Phil's Toddler,16151,79704,16 +60818,Dr. Franz Braun,96713,90074,1 +60819,Byrnes,25707,25074,3 +60820,Christopher,49833,26472,2 +60821,Jasmine Mayhew (2001),51828,1814922,22 +60822,Fairouz Cooke,169068,1455909,18 +60823,Bill (Holmes' husband),158990,97090,14 +60824,Zeke Baylor,10947,77196,8 +60825,Larry,141635,1031944,10 +60826,Thunderstorm,28677,101566,4 +60827,'Spiggy' Spiggins,291558,107684,4 +60828,Roland Tewkesbury,118443,185170,6 +60829,Lieve,223551,1263642,9 +60830,Shobijin,3115,1482684,10 +60831,Gregor Garrison,242835,31208,14 +60832,Interviewer,38987,1245576,6 +60833,Mrs. Franco,16296,1706344,12 +60834,Carol,18273,15851,3 +60835,Alan,25674,80292,6 +60836,Dr. Marsh,39195,44188,2 +60837,Henry Cadogan,157843,17051,1 +60838,Rowena Lawson,70476,8256,3 +60839,Jill (uncredited),331313,155965,56 +60840,Valerie,42989,71733,3 +60841,Lembit Raadik,321303,1418970,5 +60842,August,205818,224197,0 +60843,Arlene Logan,43228,137909,1 +60844,Carter,26823,96364,1 +60845,Mille,3549,85906,9 +60846,Sir John Curle,49502,142344,8 +60847,Brenda,11364,21620,13 +60848,Fisherman,55032,5171,9 +60849,John Karstens,76059,1125626,3 +60850,,133788,67323,0 +60851,,359807,1159965,10 +60852,Entertainer,22447,1687931,21 +60853,Ilona Tasuiev,9389,6979,2 +60854,Lin-Ay,67174,565384,3 +60855,"Miss Ruth Ellis, Larry's Secretary",95874,4970,4 +60856,Anna,17927,168865,21 +60857,Lila Hodges,36463,105733,1 +60858,Baird,29907,30187,4 +60859,Trinity,24409,1694713,5 +60860,Principal Poindexter Short,20521,566944,11 +60861,Mermaid,37254,58724,8 +60862,Hood (uncredited),36373,34324,19 +60863,Piccolo,39102,85286,0 +60864,Whitey,156603,1263061,13 +60865,Mrs. Edith Prince - Mother,86979,53818,1 +60866,Balinda Parson,13569,23648,3 +60867,Anna Lovisi,104954,44434,0 +60868,The Sheriff (as A. Wilford Brimley),72574,11065,3 +60869,Skinny,57201,71467,10 +60870,Angry Hombre #2,111479,1797602,48 +60871,Le superintendant Cummings,33436,11842,14 +60872,Trench Sentry,297762,1890513,42 +60873,Persian Announcer,7459,1072105,23 +60874,Dealer,12575,18491,11 +60875,Emperor Franz Joseph I,447236,1667488,6 +60876,Tim Gordon,218582,16766,7 +60877,Robert Caulfield,31597,193,0 +60878,Butz,12594,1003348,13 +60879,Tuppen's friend,51141,576478,10 +60880,Vicky Wienrick,97614,179267,29 +60881,Tin Choi's thug/Road worker/policeman,88922,18899,17 +60882,Michelle McNally,31977,35776,1 +60883,Homem 2 - porta retrato,70666,1863917,65 +60884,Police Inspector,32904,1157293,5 +60885,Burruchaga,9815,24975,5 +60886,Sarah,240733,1275944,1 +60887,Asst. Dist. Atty. Richard Snow,28564,81292,8 +60888,le père de Gilles,4974,579272,15 +60889,Pete Hammond Jr.,121636,3150,0 +60890,British Officer (uncredited),43889,1170808,13 +60891,questore,335051,1853310,10 +60892,Terrian 2 (voice),16873,173825,20 +60893,,92285,1203933,13 +60894,Ingo Lindstrum,79466,15976,3 +60895,Xiao Hai,33338,1183508,9 +60896,Camp Counselor (uncredited),251227,1286551,36 +60897,Luce,57342,72054,2 +60898,Himself,36432,115347,2 +60899,Motel Clerk,55934,860526,6 +60900,Stuart,275060,19278,7 +60901,Victoria,10524,1957,0 +60902,Sir Juda,55376,42208,6 +60903,Narrator,413782,6384,0 +60904,Christine,226140,61904,10 +60905,Rent Boy,355008,135855,10 +60906,Neko Bâchan,158483,608,0 +60907,Nora Davis,43526,41245,1 +60908,Dickie Dunn III,14053,63992,6 +60909,Ira Kushaw,46667,14671,4 +60910,Himself,70027,1231981,16 +60911,Himself,200311,544818,0 +60912,Ned Narkey,81120,157336,7 +60913,Pudgy Guy,268920,1044195,25 +60914,Square Dance Caller,5172,189680,53 +60915,Frank,343934,130535,2 +60916,Marion Cassera,44470,45378,4 +60917,Prime Minister,51759,29817,7 +60918,Stuart,52850,969316,12 +60919,Leon Dupuis,45184,131067,4 +60920,Senator Pitts,26688,96028,22 +60921,Frank Meade,207641,62714,2 +60922,Doraemon,265712,1241939,4 +60923,,31418,584047,9 +60924,Cal,20825,78404,7 +60925,Pili,11248,1231914,24 +60926,Robert Fredericks,181533,43458,14 +60927,Le 2ème carabinier,52705,1366820,7 +60928,Leonardo,58011,24366,2 +60929,Mr. Bradley,266285,1459373,23 +60930,voice,86700,933514,7 +60931,Samantha,11653,70689,15 +60932,Jake Townsend,25977,52474,0 +60933,Angie,10596,65797,4 +60934,Masao Kume,256962,33520,29 +60935,Le moine,57382,226023,7 +60936,General Morelli,34449,7682,4 +60937,Megan Gordon,70351,1250527,3 +60938,,19501,202946,5 +60939,Josh,86186,133968,5 +60940,Hatanpää the ninja master,414547,1678518,4 +60941,Young Aist,51276,1638431,7 +60942,,270081,113360,7 +60943,Sir William Dolben,15163,108294,14 +60944,Sabbath Lily,42179,87007,5 +60945,Adam,270383,73035,4 +60946,Lily Fasken,43384,84232,3 +60947,Claire's Sister,222461,114373,5 +60948,Cpt. Tom Marshall,105945,1004043,6 +60949,Manny,13954,76539,8 +60950,Mrs. Bob Ford,43829,68653,13 +60951,Ana Christina Martinez,9030,56732,4 +60952,Himself,63144,13716,35 +60953,Major,104427,34277,3 +60954,Dr. Oppemheim,182228,1023428,9 +60955,Man With Couch,26486,206366,23 +60956,Shelly Spritzel,6963,51609,3 +60957,Carolyn Coates,140032,55997,5 +60958,Charley 'Boomer' Baxter,30289,23628,1 +60959,Herself,145154,1122376,4 +60960,Vincent Stewart,53798,27733,6 +60961,,87204,934967,2 +60962,Han Sun-young,21442,62333,2 +60963,Dr. Ivan Hood,14907,11357,0 +60964,Sean,150065,1506479,17 +60965,The Nurse (uncredited),70753,1663164,6 +60966,Laura,25653,231488,2 +60967,Well to do lady,101998,95635,24 +60968,Kate,309879,1465065,3 +60969,Tiffany,326,58707,9 +60970,Tiara Gold,11887,964823,13 +60971,Actis,286789,99455,4 +60972,John Wilson,28761,190,0 +60973,Liam Hughes,84336,73288,11 +60974,Jean Cameron,84496,10412,1 +60975,Walter,62684,45268,0 +60976,J. C. Callahan,43346,93164,5 +60977,Tommy Gordon,50073,148573,1 +60978,Frimsin,31428,43978,5 +60979,Colonel Henkins,161620,120105,6 +60980,Bill Maher,21576,74086,0 +60981,Cat,121401,1074114,9 +60982,Orphelia,35016,1416108,9 +60983,Lila,14047,1392605,32 +60984,Ilse,348320,1165562,8 +60985,Ta Sha,25425,116352,7 +60986,Theresa Strauss,280004,1336773,11 +60987,Linda,111239,28897,3 +60988,Luke,72251,10136,2 +60989,Sylvie's Mom,1382,53892,9 +60990,Caius Cassius,34469,44567,7 +60991,"Giulietta, l'attrice",43649,1859308,6 +60992,Himself,15258,781,65 +60993,,288694,78697,2 +60994,Слава,253192,86861,1 +60995,Dick Baker,45562,3547,4 +60996,Maj. Herbert Armstrong,251732,39188,4 +60997,Sacrifice Engineer,70981,1831995,26 +60998,Ivan,53693,91637,6 +60999,Biaggio's Dad,156700,1826013,30 +61000,Ravil,2197,23305,4 +61001,Renée Mouratet,55370,23673,9 +61002,Rosa,83229,588808,5 +61003,Train,24432,54812,7 +61004,Todd,274479,50588,48 +61005,,47211,1401457,12 +61006,Wounded Soldier in Parade Car,72638,1468172,27 +61007,Monica Drake,43046,121765,2 +61008,Kelvin Droski,290365,1146810,7 +61009,Lance,102362,1272974,11 +61010,Kessler,511,1405,13 +61011,Joe Bellini,9950,60797,8 +61012,Greta Ballentine,27203,85358,3 +61013,Al Schechter,48412,140459,5 +61014,,153420,551826,6 +61015,Fellows,19621,1408412,8 +61016,Ernst Holzapfel,166666,18950,8 +61017,Ohisa,73043,124401,7 +61018,Guest,45838,10530,4 +61019,J,44552,1040615,0 +61020,Egil,360249,1648980,17 +61021,Yoo-mi,53514,231477,7 +61022,,143005,94375,3 +61023,,12453,72291,5 +61024,Conrad (Kind),217412,1822118,22 +61025,Emma Blank,42346,127918,0 +61026,Madame Maile,52270,7381,8 +61027,Tour Guide,54660,50762,10 +61028,Young Bastian's Sister,362180,1790562,8 +61029,De Grugy,395767,939471,6 +61030,Rodney,384682,1647426,24 +61031,Rene Farrand aka Arsene Lupin,127812,19550,0 +61032,Prohhor Sedõhh,321303,137705,16 +61033,regisseur Catchring,35016,238650,20 +61034,Joy,62330,235137,1 +61035,The Driver,51364,10525,1 +61036,Abraham Lincoln,377170,88672,5 +61037,"Sir Merryl Lloyd, le premier ministre britannique",75066,541912,12 +61038,Alex Ball,53999,60715,8 +61039,AIM Ping Pong Girl,68721,1735566,70 +61040,Bernie Frazier,14053,20188,1 +61041,Allison,257214,1236474,7 +61042,Vala,1690,1265217,10 +61043,Max,287391,10026,6 +61044,C.J.,58918,78501,3 +61045,Constable Byrne,425774,1707947,55 +61046,Mr. James,115054,34651,9 +61047,Rouva Körmy,55761,223075,6 +61048,Bileterka,10754,66463,5 +61049,"Mayumi, wife",49308,1055742,4 +61050,Secondino (uncredited),60014,1871272,17 +61051,Captain Frank Castellano,109424,75604,4 +61052,Victoria,59858,34027,2 +61053,Detective Laurenzi,55448,147,2 +61054,Censor,15019,28485,11 +61055,Mathias,97088,38265,4 +61056,Old Man,142770,560126,9 +61057,High School Teacher (uncredited),156700,1842182,32 +61058,Frænka,72596,1114547,36 +61059,Constable Hales,425774,1707954,61 +61060,Pedro Janolino,359105,147542,9 +61061,Italian Waiter,43809,22099,37 +61062,Irene,81475,27140,4 +61063,Himself / Audience Member (uncredited),39536,567593,5 +61064,Justice Anthony Baine,50329,29817,10 +61065,Himself,173467,2884,13 +61066,Mr. 'Higgy' Higginbotham,291558,89744,6 +61067,Claes Mansson,2180,95566,5 +61068,Akhantar,28263,93737,4 +61069,Poongavanam,66247,584431,7 +61070,"Violet, Enoch's Wife",147829,1464493,44 +61071,Samuel 'Sam' 'Killer Sam' Whitney,48706,57286,1 +61072,,38099,119647,13 +61073,Jean,31011,19115,2 +61074,Anna Reynders,61935,82423,0 +61075,Mrs. Martha Kildare,153163,14033,8 +61076,Truck Driver (uncredited),228970,1586843,57 +61077,Simon Zuniga,4983,16475,0 +61078,Victor Van Dort (voice),3933,85,0 +61079,Curly,8064,20619,3 +61080,Eric Binford,40034,27770,0 +61081,T-Man Driving Car C (uncredited),15794,115550,50 +61082,,16015,1433483,12 +61083,,341895,1855736,18 +61084,Dave,20983,1003283,3 +61085,Georges,49084,67714,1 +61086,Erin Luger,47386,138770,3 +61087,Alessia,302802,1281146,8 +61088,Töre,11656,2201,0 +61089,Strip Club Visitor,2001,1781725,74 +61090,,73835,1174536,20 +61091,Police Officer,7288,1192949,21 +61092,Lastbilchauffør,356326,1874739,29 +61093,Elina Koskela,103751,125624,1 +61094,Terry Delfino,55725,21127,4 +61095,Gail Weston,226968,10427,0 +61096,Penelope 'Penny' Lockhart,88005,116,1 +61097,Throckmorton,43875,8240,11 +61098,Mr. Schoner,97598,2494,5 +61099,Trina,384682,1226302,5 +61100,Tara,127728,1085652,0 +61101,Grandma Barbara,21208,44275,8 +61102,Guard,616,33519,31 +61103,Ke Le,16687,1184078,7 +61104,Landlord,244534,45423,10 +61105,Mike Brody,38769,120544,25 +61106,She Wolf,41932,182038,1 +61107,Agent Novecki,11329,1088044,15 +61108,Sem,151086,1120814,4 +61109,Chloe,80988,590898,2 +61110,,180162,186769,0 +61111,Alev,220002,77349,4 +61112,Brandon,209263,1567663,19 +61113,Maki Orikuchi,363354,66153,10 +61114,Farid Balayette,277839,583348,12 +61115,Tess Harding,20640,6598,1 +61116,,241968,592709,4 +61117,Astronaut biochemist,8410,55746,4 +61118,Priest at Funeral,109439,1573587,25 +61119,Mr. Blanton - Photographer,56558,96722,35 +61120,Nazi,419522,109335,7 +61121,USSE Bridge Crew (as Sarah Yu),188927,1759617,50 +61122,Diavolo Washington,23096,15411,4 +61123,Additional Voices (voice),130925,59357,24 +61124,Tomas,222339,107323,8 +61125,Susan Gordon,70351,8963,0 +61126,Matt,18387,83037,0 +61127,Bob Spiegel,17745,2388,18 +61128,Hong-yi / Sul-hee,348689,1067849,2 +61129,Vivaan Agasthi,157129,1233067,2 +61130,Judge McWhirrey,66022,85345,4 +61131,Kirby Dawson,14615,3244,3 +61132,Restaurant Woman,32021,571995,14 +61133,Herself,23128,103554,5 +61134,Friend,41171,1143119,38 +61135,Zarathustra,19029,84012,4 +61136,Stacy Summers,246011,1331270,13 +61137,Henchman (uncredited),331313,1767235,58 +61138,Security,4893,93948,10 +61139,Hugh Derry,395992,1238461,4 +61140,Esperanza de Mendoza,16432,17787,6 +61141,Bum 1,169656,77608,7 +61142,Ira's Mother,228205,1445675,10 +61143,Javi,80389,1603,5 +61144,Paco - Gang Leader,26558,1625711,2 +61145,Liv,10521,11661,1 +61146,Sergeant Jenkins,51947,73245,12 +61147,Newscaster (voice),10527,118490,23 +61148,Kayla M.,78339,583769,1 +61149,Ida Ginetta,53654,18847,2 +61150,McKinley Motel Manager,258480,1545505,19 +61151,Billy Gibbons,52867,1534332,15 +61152,Knut,56937,225812,5 +61153,Chiara,363757,88081,2 +61154,Kolyma,171337,1156305,1 +61155,Nastya Fomina,267481,1257122,9 +61156,regisseur Chappy Spot,35016,1416120,22 +61157,Steve,19551,19384,1 +61158,La scripte,382589,550107,18 +61159,Sen. Glancey,266314,1936,11 +61160,Morgan,31592,2922,0 +61161,Capt. McAndrews of the Sirohi,178341,32139,9 +61162,T-Bone,27711,1192161,6 +61163,Jack,22901,21435,6 +61164,Prince,345915,65829,16 +61165,le juge Davoust,74822,1973,12 +61166,Firefighter,21343,135631,9 +61167,Broder Edvin,57438,38127,19 +61168,Timothy Broom,80368,9029,4 +61169,Sabine - la cameriera,56693,6014,4 +61170,Pretty Twenty-Something,242042,1317688,41 +61171,Mary Beth,41479,928307,9 +61172,Dr. Clarence,81182,10746,8 +61173,Elder,146926,947599,6 +61174,John,404459,1410083,4 +61175,Xesostus,211139,99530,5 +61176,Messenger,225728,1475238,27 +61177,o.A.,5646,44586,11 +61178,Писатель,409082,1118336,15 +61179,Sparkle,30411,106245,1 +61180,Bill Cardew,120109,4091,0 +61181,Enid Blyton,43711,1283,0 +61182,Gérard Barbier,53179,11214,0 +61183,Samantha Caldone,70821,38703,1 +61184,Remy Horton,17303,1209094,14 +61185,"Elvira, la padrona della pensione“Amore”",48937,28140,4 +61186,L'inspecteur Pochet,33436,33645,6 +61187,Blind Pew,49418,1327288,4 +61188,Carrie Dollanganger,267793,1255571,4 +61189,Louna,31670,41190,1 +61190,Nurse Barbara,256962,73456,22 +61191,Earl Richards,42251,48810,6 +61192,Helicopter Pilot,1724,941286,24 +61193,James Gilmore,140489,64349,6 +61194,,292062,1525339,7 +61195,Miss Elsie Van Kovert,184267,1365705,15 +61196,,74674,1445111,12 +61197,Michael Trevor,106573,32428,0 +61198,Countess Elsa von Közsnöm,335837,49018,1 +61199,Seer,80410,172800,6 +61200,Ward Dexter,12683,44821,13 +61201,Elma,14881,154287,9 +61202,Acteur,382589,1613218,13 +61203,Shiv,51036,1879507,44 +61204,Schwester Jutta,50722,36486,5 +61205,Stratford Monk,169881,56098,6 +61206,Ratkowski,22998,14669,13 +61207,Steve Johinson (uncredited),44943,118755,50 +61208,Willie Loomis,62213,17183,3 +61209,Maria Alvarez,1969,955,0 +61210,Raven,33112,30530,9 +61211,Baby Davies,42552,128190,5 +61212,Billy The Mime,15258,70114,4 +61213,Angela,87148,1039600,4 +61214,,227552,1181331,18 +61215,Elio Fioravanti,12432,129875,2 +61216,Ray Vale,33343,42746,3 +61217,Ruby,71503,563095,11 +61218,Piotr Balicki,10754,66460,4 +61219,Frau Maas,98612,1127644,12 +61220,Eddie Roman,29100,78792,2 +61221,Principal Hansen,253310,54728,9 +61222,Neilson,387957,14060,3 +61223,Maggie Gooding,88012,40942,1 +61224,Alexandra,150117,1586278,22 +61225,Igor,380731,1643334,6 +61226,Clay Gibbs,281215,30621,8 +61227,Young April O'Neil,98566,1394686,16 +61228,Charles Fenton,104973,44411,4 +61229,Mature Arbie,17287,78021,9 +61230,,11391,1030334,10 +61231,Lance,359471,1509228,19 +61232,King Zhao Wu,14539,1044559,5 +61233,Ram Murthy,49028,565890,16 +61234,Lt. Nathaniel Fick,54102,33532,5 +61235,Gunner,43155,12147,2 +61236,Quinceañera Guest / Cocktail Waitress,268920,1755078,93 +61237,Tourist Son,5237,928736,23 +61238,Foster,9793,20754,4 +61239,Angelica,260001,172884,13 +61240,Terri Baker,209244,56322,2 +61241,Transvestite Groupie (uncredited),3563,60950,40 +61242,Ma McClune,4111,34749,8 +61243,Bill Weybridge,338518,26854,7 +61244,Allison,70585,141225,6 +61245,Power House Supervisor,56527,1098810,2 +61246,Suzanne,67748,1172838,12 +61247,Young Bob,116979,1652517,7 +61248,Mrs. Bryer,17956,163809,23 +61249,Karin,10659,57853,9 +61250,Ampersand,89481,94956,1 +61251,Jack,126127,87459,1 +61252,Joy,66113,189231,10 +61253,Murray Foster,29510,40596,5 +61254,Joshua Stevens,40693,1015307,6 +61255,Bookstore fan,303281,1514026,9 +61256,Himself,105583,1092235,6 +61257,Cpl. Billy Cole,354287,1200864,12 +61258,Gagan's Henchman,197737,10527,21 +61259,Buzzy,72766,12833,0 +61260,Clipboard Nazi,13092,9143,8 +61261,Ambrose (voice),44896,11764,11 +61262,Lau Piu-Piu,53168,20652,2 +61263,Robert Pilgrim,24559,64457,6 +61264,Beach Dude (uncredited),44943,1205906,59 +61265,Bradley Garcia,429238,1733801,10 +61266,Andrew,358199,1175469,9 +61267,Sodegaki,43364,134404,10 +61268,André,228198,127670,10 +61269,Servant,133941,1140901,9 +61270,Madam Sylvia,456781,1251570,9 +61271,Parrish,171308,1743853,9 +61272,Frank,14029,98489,7 +61273,Ilich Ramírez Sánchez ('Carlos'),43434,25616,0 +61274,Bernie,12525,9323,5 +61275,Dr. Roberts,98066,56104,19 +61276,Rosanna Clerici,60014,1871258,3 +61277,Artist,315880,1017597,4 +61278,Bonnie,40047,33322,6 +61279,Mary Stoltzfus,74549,1820120,15 +61280,Adjutant Miyashita,36243,230881,10 +61281,Carla Hilfe,21451,87545,1 +61282,Italo Bianchi,31922,59872,3 +61283,Ryley,15794,89661,12 +61284,,70322,1029325,6 +61285,Christian Reall,73194,5461,3 +61286,Bewaker #1,394645,40696,11 +61287,Colonel Baron Nishi,1251,33516,2 +61288,Varvakis' Mother,128767,1384638,6 +61289,Frank 2,103620,1651054,26 +61290,Sameer's Grandmother,20495,86231,8 +61291,"Лёша, диктор",25936,86860,0 +61292,Admiral Yi Sun-shin,37502,121148,4 +61293,Gene Handsome,402582,60074,1 +61294,German Colonel,25385,74506,11 +61295,,415358,550167,2 +61296,Butler,11205,1150116,19 +61297,Reunion Classmate,11172,1344661,69 +61298,Tanya,13848,83948,3 +61299,Margaret Davis,168217,1275688,7 +61300,Sarah,126323,1199824,7 +61301,Emmett,405882,583845,9 +61302,Han's Father,146216,1684455,20 +61303,Ring Announcer,71120,1872172,8 +61304,Ken,336691,85506,2 +61305,Dancer,118889,1216356,79 +61306,The Priest,20108,1614870,8 +61307,Owen,200511,987572,6 +61308,Tommy Devane,71147,170638,3 +61309,'Leer',99318,14574,6 +61310,TV Newswoman,142216,1176792,30 +61311,Journalist,47959,60659,25 +61312,Maître André Gobillot,66966,11544,0 +61313,Jeremiah MacDonald,121234,5248,3 +61314,Johtokunnan jäsen,62900,147774,11 +61315,Sonjas Vater,114931,53722,9 +61316,Bestatter 2,73775,1162234,9 +61317,Alexander Hugo (voice),49013,34515,34 +61318,Sabine Kirsch,11677,678,2 +61319,"Charlie, the Chinese Cook",43149,1128885,5 +61320,Apartment Complainer,80720,1173157,21 +61321,Jane Miller,48627,1646729,7 +61322,Dmitri,38322,1699407,12 +61323,Rad Miracle,246011,1281582,14 +61324,Molly,9893,60078,15 +61325,Fela,868,13097,5 +61326,Bruce,45729,133589,6 +61327,Various,18809,149978,4 +61328,Mason Harding,153397,216425,8 +61329,Drinker (uncredited),53392,89603,11 +61330,The Big Guy,26809,938390,7 +61331,Edmond,18763,1416542,18 +61332,Cassie,96716,38581,1 +61333,Vicky,199575,1323515,7 +61334,Henry Stuart,27144,1404340,7 +61335,Mrs. Kendall,71140,19783,7 +61336,Opera Singer,9252,1596404,19 +61337,,56589,1602019,16 +61338,Jessica,13534,21711,1 +61339,Dr. Lee,92848,16103,6 +61340,Opera Singer,78691,84312,24 +61341,Stu,109439,27105,1 +61342,,86040,1196354,4 +61343,Gavin Reese,8842,68122,6 +61344,Monsieur Philippe,227200,89551,8 +61345,Göran Skoogh,15179,63764,0 +61346,Le frère de Manu,85429,932042,15 +61347,Philippe,24801,113929,7 +61348,Shiro Tanka,17282,99846,0 +61349,,11330,1444524,26 +61350,Dancer (uncredited),28293,97042,20 +61351,Vasile,112675,1120492,2 +61352,Ethel Smith - Music Teacher,43546,990584,7 +61353,Singer,40826,124744,5 +61354,Major Ichiro Katsumiya,62472,131202,0 +61355,Carol Clayton,45800,82315,0 +61356,Doctor,11358,963962,19 +61357,Ships Waitress,11338,57434,25 +61358,Doctor at Rodeo,33541,120470,43 +61359,Naldo,331962,1470321,15 +61360,Manikkam / Manick Baashha,49074,91555,0 +61361,,41787,9880,1 +61362,Fidel,28000,13565,9 +61363,Sandra Banks,43023,217341,3 +61364,Herself,35639,114465,0 +61365,Store Owner,44936,1432695,7 +61366,Mrs. Darby,85350,159381,25 +61367,Frank Clayton,45800,12502,9 +61368,Steve Henderson,18214,94766,10 +61369,Brett Goodkin,96936,1818449,30 +61370,Nurse,40221,157914,13 +61371,Suzu Asano,315846,1454976,3 +61372,Henderson,220674,571735,5 +61373,Spitfire,203351,583932,5 +61374,Cheri,55632,7404,1 +61375,Truck Stop Waitress,14552,229777,23 +61376,Reed,181753,30613,1 +61377,,408550,1658139,10 +61378,N.J. Policeman,181574,150078,11 +61379,Diane Davis,88390,936152,3 +61380,Papa Doc,72648,89582,1 +61381,Amos' Maid,16997,1128270,12 +61382,Michelle,71700,208679,4 +61383,Lam Yuk-Ping,26005,130499,1 +61384,Une locataire,27053,1460956,13 +61385,Dr. Hubertus,63333,51230,9 +61386,Dancer in Ballroom (uncredited),1726,1209722,74 +61387,Genesis Director Chen,365942,14592,3 +61388,Jack,41402,76543,12 +61389,Pápa Piquillo,166207,1036780,0 +61390,2nd opinion arts,19398,1469195,29 +61391,Sean Crawley,21619,81691,0 +61392,"Alice, maîtresse d'Alfred",43462,39471,1 +61393,Le brancardier,152989,1164967,25 +61394,D. Ray White,43817,17348,12 +61395,Mrs. Jönsson,19181,1088220,4 +61396,Herself,37514,117843,0 +61397,Young Molly Mokembe,31385,1378399,11 +61398,Ship's Officer / Restaurant Owner (uncredited),47653,21312,6 +61399,Massage Instructor,232672,1570873,30 +61400,Exhumed rabbi,16171,79866,14 +61401,Bar Guest,345915,1634325,26 +61402,Mr. Zbornak,37725,135930,12 +61403,Lucien Bellon,48153,1352,0 +61404,Denise Rice,22803,124305,8 +61405,Ms. Flynn,23966,25555,11 +61406,Shiba,258251,1348600,12 +61407,Kuniko,89462,1888138,5 +61408,Dan,359255,103298,2 +61409,Mimi,74561,572127,3 +61410,Justiina Puupää,148435,232311,3 +61411,Kitty Vane,120977,30225,1 +61412,Damiana Cisneros,198795,1509586,4 +61413,Sweety,301671,1052145,2 +61414,First Train Engineer,94182,95949,28 +61415,Freddy,376579,1612355,3 +61416,Orlie,18035,53926,2 +61417,Michael Meier,272426,38841,5 +61418,Sir David Maxwell-Fyfe,64167,63911,5 +61419,Herself,333103,1214835,4 +61420,Miss Flint,64928,34746,3 +61421,Grooming Proprietor,33586,1296115,7 +61422,Havasupai Woman,365942,53971,41 +61423,Tommy,35977,88702,11 +61424,Sheriff's Friend,22396,7085,9 +61425,Amputee Hospital Patient,369885,1651385,43 +61426,Howard Howe,246403,2536,0 +61427,Driver,14589,121098,43 +61428,Piggy,49577,1163599,4 +61429,Fabrice Lenormand,33489,28255,0 +61430,Zuria - journalist,5165,1074055,18 +61431,Mariana,48962,230578,0 +61432,Jane Grayson,79094,585972,2 +61433,Giganta / Computer (voice),22855,34945,17 +61434,Robert,86980,934150,15 +61435,Gemeente ambtenaar,159514,211242,5 +61436,Constable Bennett,353728,1477955,11 +61437,Inspector John Warwick,29094,3361,1 +61438,Tanya,143169,10402,1 +61439,Sarah,104720,17662,20 +61440,J.C. Thompson,193878,34748,6 +61441,Col. Manley,115054,94315,5 +61442,Jeannie Lin (as Maria San Marco),74525,235366,10 +61443,Père de Monica,317198,21292,6 +61444,Mr. Carter,127812,30216,50 +61445,"Spetsnaz from ""Admiral Shaposhnikov""",271234,1322779,7 +61446,Dancer (Red's),57201,1760472,47 +61447,DVD Seller,32904,1157298,12 +61448,Herodias,102428,931321,4 +61449,Li Da,69310,106581,26 +61450,(voice),335970,1253190,75 +61451,Augustus Glupsch,118,1291,6 +61452,Coach Aaron,379441,112560,6 +61453,Switchboard Operator (uncredited),31773,98018,44 +61454,Older Boy Sledding - Mac,27414,1206235,18 +61455,Mrs. Wiggins (voice),73723,213001,5 +61456,Hanumanthu,63414,85722,3 +61457,Tammy,24094,97456,15 +61458,Kido's Uncle,243683,1398052,30 +61459,Sung Gyeong,396535,127720,2 +61460,Barbara Tuttle,42305,10190,1 +61461,Otis Willard,405882,1378244,20 +61462,Toby,120729,994133,4 +61463,Jimmy,147106,129492,8 +61464,Laust Hatling,16014,588175,4 +61465,Cornelius Hackl,43141,7301,0 +61466,Tanner,256969,1328,2 +61467,Waitress,18189,109900,12 +61468,Cantante,210653,1521174,4 +61469,Dr. Bella Lithia,41522,6588,4 +61470,AHBEN SONEL,295748,106786,7 +61471,Dr. Jones,257345,156785,7 +61472,Sally Carrera,13934,5149,3 +61473,Fire Maiden,31280,103591,13 +61474,Doorman,47057,5170,13 +61475,Luda,924,101255,12 +61476,Stomper (voice),32202,109067,6 +61477,Stig,15830,41906,1 +61478,Vlas,51284,143730,5 +61479,Ahmed,42996,2094,3 +61480,Barman,86838,1834641,26 +61481,Chief,127091,585373,4 +61482,Viktor,178809,27143,3 +61483,Reporter at Sparring Session (uncredited),28000,1468172,23 +61484,Earl of Mercia,274857,109833,28 +61485,Hot Comic Con Girl (uncredited),214756,1759682,99 +61486,Maltese,209413,72784,4 +61487,Himself,276909,2710,1 +61488,Rental Agent,31942,554192,5 +61489,Welcome to the 60's Dancer,2976,1752766,116 +61490,Sally,22897,4496,12 +61491,,47211,1401455,9 +61492,Mate,43419,90074,15 +61493,Politibetjent,356326,1874733,23 +61494,Creature,1450,1120542,14 +61495,Fee von Pohl,267389,20864,3 +61496,Sauna,252034,7590,7 +61497,Max Grady (bartender),43117,106095,8 +61498,Chuck Stone,146322,5946,6 +61499,Dad (Jackie Elliot),298931,1402304,3 +61500,Wellington,75137,67028,4 +61501,Edi Holzleitner,12523,18951,12 +61502,Dolan,25385,33220,6 +61503,Vincent Maillard,139159,89626,1 +61504,Piano Player,41171,115596,25 +61505,Manuel(13 years old),469172,1862603,4 +61506,Seaman,2966,1230327,21 +61507,Ogre Baby (voice),10192,1454441,22 +61508,Piper,70583,121574,0 +61509,Two Face,37702,65976,8 +61510,Harry James,97829,1227384,10 +61511,,268735,128645,5 +61512,Jason,27739,98874,6 +61513,Krishnan,398786,1115225,0 +61514,Pelle Nøhrmann / Antboy,314285,1178923,0 +61515,Hofnarr,9803,59336,11 +61516,Brian Blowdell,20825,111683,2 +61517,Isabelle,26679,140901,1 +61518,Rice Martin,138308,40181,2 +61519,,328692,1279250,3 +61520,Andrew,226188,38583,1 +61521,Brooklyn,13960,76129,4 +61522,Friendly Nurse,40807,20180,28 +61523,Victim,104193,1016195,2 +61524,Sheriff,134435,90369,9 +61525,Rain,380124,98285,3 +61526,Lucy,70585,71552,3 +61527,Brando,238705,1273375,2 +61528,Martin,57201,208061,26 +61529,Apollo,340275,98889,71 +61530,Father,277687,1356262,8 +61531,Mitzi Reisenbach,53853,111401,6 +61532,"Marieme, alias Vic",266082,1312204,0 +61533,Luci Thompson,26768,96177,2 +61534,Clara,17175,211488,5 +61535,Father Mozian,82465,81561,3 +61536,Brian Riggs,409502,1455813,3 +61537,Tarik,53739,552961,9 +61538,Cheasel T. Weasel,116977,43518,22 +61539,Witia Pawlak,8211,20723,4 +61540,Janitor Seyit,69610,97272,0 +61541,Professeur Lacasse,285858,81430,12 +61542,Timmy,31390,37089,7 +61543,Leakey (voice),66045,99877,12 +61544,Brother,35129,3014,5 +61545,Piano Player,41591,69811,17 +61546,le chevalier,147360,1125747,4 +61547,Bob,16005,11512,9 +61548,Cocoanut Grove Vocalist #2,2567,84848,29 +61549,Aufseher,1427,17078,6 +61550,Romaine,43367,83468,4 +61551,Toraji Shirakawa,19506,84755,1 +61552,O.W. Grant,20312,64,1 +61553,Jack,172386,26457,0 +61554,Betty,188468,12025,8 +61555,,172008,1182601,18 +61556,Dr. Walter Carew,153162,33033,8 +61557,Mr. Halbert,2516,25643,11 +61558,Capt. Jabez Allen,52360,82348,5 +61559,Paris,81409,45189,21 +61560,Troy,97683,145131,3 +61561,Lord Derry,43327,6836,5 +61562,Dave,407448,1863665,29 +61563,Alfredo Elvize,28682,31991,1 +61564,Rohan,370178,1228907,3 +61565,Kamli,341007,1706335,3 +61566,,91067,939113,1 +61567,Vicar,18238,47654,2 +61568,Narrator (voice),31273,1405,50 +61569,Foxy,139718,106572,1 +61570,Dr. Wuthering,20644,2497,6 +61571,Club Girl,77930,1700817,48 +61572,Erik Lehnsherr / Magneto,246655,17288,1 +61573,Binh,41714,1469627,5 +61574,Mrs. Bellane #1,21451,89587,12 +61575,Lord Kelvin,10204,388,4 +61576,Valerie Stowe,20411,40663,1 +61577,Starving Kidnapper,14923,162371,69 +61578,Merel,348320,87865,1 +61579,Reverend James McMahon,9756,58916,9 +61580,Homer Van Meter,28110,5048,4 +61581,Jeez,36628,116529,3 +61582,Hikmet,452606,1715954,9 +61583,Wayne,207270,1518111,8 +61584,Fence Green,43250,155618,12 +61585,Deacon Greathouse,74436,53010,3 +61586,Tom Macy,39845,123532,9 +61587,Gus,429838,1116975,4 +61588,Mary Harrison,29907,1665241,15 +61589,Tuulikki Suutari,20164,148354,11 +61590,Joyce Shepard,30993,95044,3 +61591,Machie,104374,1433102,4 +61592,Gen. Sebastian,116973,8516,11 +61593,Dan Hatch,34138,50398,0 +61594,Hannah (Ranch Member),245703,1460711,15 +61595,Consultant Boardroom Doctor (uncredited),284052,1743520,31 +61596,Carla,62527,15905,4 +61597,Wilma,42634,155545,6 +61598,Preacher,70575,1275,4 +61599,Tilde Spernanzoni,43372,994417,4 +61600,Tapparella,52914,544723,5 +61601,Colonel Webb,147829,12502,14 +61602,Father in Crowd (voice),38055,64151,15 +61603,Hélène,64357,18219,13 +61604,Maks,97797,566715,7 +61605,Claire Washburn,86970,2230,9 +61606,Yumiko,338312,42152,16 +61607,Virginia,41054,125357,4 +61608,Setsuko Yamauchi,55197,20831,4 +61609,Angela,204800,121640,4 +61610,Policeman,64936,1117289,5 +61611,Dr. Sgundud,278632,22133,4 +61612,Jason Flemyng,60665,157496,2 +61613,Anna-Karin,52784,113539,1 +61614,Himself,53380,17113,13 +61615,Lady in Audience,64928,121323,22 +61616,Nancy,33338,26778,6 +61617,Miss Harper,16444,119341,4 +61618,Gaylord,21029,156689,5 +61619,Waitress,55433,222380,13 +61620,Boy in Dream,204922,1414108,8 +61621,Detective (uncredited),419430,1754536,32 +61622,"Himself - art director, Warner Bros.",135313,30526,7 +61623,Williams,43022,20100,11 +61624,Amador Saloon Prostitute (uncredited),333484,1604989,44 +61625,Dick,41831,67015,4 +61626,Sloan (voice) (uncredited),28681,1112118,8 +61627,Governor,1969,1095101,15 +61628,,191476,13275,0 +61629,Matt,124470,1129413,4 +61630,Mignonette Chappuis,178587,117112,4 +61631,Realtor,316268,23631,2 +61632,The Rev. John Harris,75363,12729,8 +61633,Arthur Curry / Aquaman,209112,117642,40 +61634,Ankita,393562,1643584,7 +61635,Dr. Navarro,83079,25260,10 +61636,Partho Roy,8079,35759,12 +61637,Zhena Slavy,35428,86866,5 +61638,Foreman,134201,1362915,10 +61639,Sherry Wilson,15697,83440,4 +61640,Lui-même,222297,1294429,5 +61641,Pinky Jimpson (Narrator),104083,14001,5 +61642,Police Chief,87936,26557,9 +61643,,183946,68842,1 +61644,Adepero,78307,467633,5 +61645,Gavin,160261,85676,5 +61646,Sun-ja,128246,1128106,5 +61647,Eric Lazard,431244,1181302,0 +61648,Sandy,110588,1050030,5 +61649,Luisa,3962,34394,9 +61650,Bridesmaid,87428,1202531,21 +61651,Black Radical,103850,1427293,7 +61652,Himself,126016,201417,2 +61653,Skippy,84295,55278,0 +61654,Black Room Soldier,16320,56459,37 +61655,Helen Reagan,39048,108101,3 +61656,Jonathan,18392,189993,14 +61657,Drill Sergeant (voice),269149,1643257,42 +61658,Ensign Kruger,80775,114957,6 +61659,Peter's Wife,107985,1278123,24 +61660,Kenny,146322,26008,12 +61661,Inspector Clarke,18209,2267,9 +61662,Libby Strong,49815,3380,0 +61663,Victor Frankenstein,3057,13362,1 +61664,Diretor de Produção,34588,1687130,31 +61665,Musashi Miyamoto,31372,7450,0 +61666,Private Combs,329865,1810138,66 +61667,Esteban Gomez,43114,95012,9 +61668,Peadar Conlan,53865,8841,5 +61669,Jess Wade,38808,15666,4 +61670,Pavel,312138,1001626,1 +61671,Noel Noble,81182,63608,9 +61672,Closing Radio DJ,16083,79232,21 +61673,Violinist,43441,95054,10 +61674,Peter Lundgren,227700,1284,6 +61675,,238925,1273680,5 +61676,Half Pint,62764,154785,6 +61677,,47200,86940,4 +61678,Edgar Mudge,26899,28633,2 +61679,Kutina,61988,30514,7 +61680,Mimiko,21036,114913,0 +61681,Hoghead (uncredited),43522,1411301,63 +61682,Communications Officer,1724,1366356,23 +61683,Hector,57215,15214,0 +61684,,92968,1184421,3 +61685,,31018,55636,1 +61686,Babette,88641,100870,5 +61687,Lucy,274857,1815695,17 +61688,Rufus,435737,1428067,1 +61689,Edouard Savinet,290316,94067,7 +61690,Chauffeur (uncredited),52440,939842,60 +61691,Jack's Student,17258,1483634,9 +61692,Braddock,186759,1392535,31 +61693,Pedestrian (uncredited),284052,1785912,43 +61694,himself,190940,72118,22 +61695,Billy's Brother,24469,142289,5 +61696,Don,322266,1108733,4 +61697,Molly Moran,32610,1466139,7 +61698,Baron Roger de Lacheloze,56344,211048,7 +61699,Brent Durant,45556,1127866,8 +61700,Jericha,73424,123513,7 +61701,Dock Worker,921,20178,40 +61702,Todd,124470,1108830,5 +61703,Shirley Lott,42305,127722,5 +61704,Jane Worth,86360,141062,8 +61705,Intoxicated Man,332567,1677464,7 +61706,Megan,23169,1216701,12 +61707,Valerija,57419,226142,3 +61708,,222517,1699948,26 +61709,,63472,1892,13 +61710,Uniformed Police Officer,2001,162522,44 +61711,Eva,51275,1608593,10 +61712,Bob Hayward,54801,13332,8 +61713,Professor Frink / Comic Book Guy / Moe / Chief Wiggum / Lou / Carl / Cletus / Bumblebee Man / Male EPA Worker / Dome Depot Announcer / Kissing Cop / Carnival Barker / Counter Man / Apu / Drederick Tatum / Sea Captain / EPA Passenger / Robot / Dr. Nick / Wise Guy (voice),35,5587,4 +61714,himself,33916,574389,2 +61715,Roya,228407,1013905,0 +61716,Plesser,27085,24709,10 +61717,Hütchenspieler,9673,21998,6 +61718,Kostas Degleris,64674,932753,1 +61719,Qing Nu,14449,71057,3 +61720,Mrs Bennett/Aunty Betty (voice),413770,11213,4 +61721,,220809,388,1 +61722,Doctor,25941,1138897,21 +61723,Luv,191562,119828,3 +61724,Ally Craig,23169,28660,1 +61725,Mrs. Malone,108789,998380,4 +61726,Mireille,67509,7282,5 +61727,,413806,99263,2 +61728,Drunken Neighbor,31899,1422102,29 +61729,Armando Alvarez,80304,23659,0 +61730,Uncle,356191,136569,13 +61731,Infermiera,152100,592207,4 +61732,Agent Steve Perelli,18056,21127,3 +61733,,197210,1289189,4 +61734,Douglas 'DJ' Hartner (voice),9297,51583,2 +61735,Angelino,57342,15915,1 +61736,Matron (uncredited),43522,1001010,84 +61737,Earl McGraw,1991,2536,12 +61738,Mrs. Brown,183662,81106,11 +61739,Himself (archive footage),184363,1903777,5 +61740,Tony Elliot,298931,1402306,5 +61741,"Leo Winston (segment 3 ""Mr. Steinway"")",41035,11282,8 +61742,,64044,240842,14 +61743,,106417,1419911,6 +61744,Meighan Assistant,214756,81668,59 +61745,Shepard Farmer,5172,41883,2 +61746,White Sharecropper #2,14047,1315735,36 +61747,Emmy,289712,21417,3 +61748,Little Ronnie,14923,1386339,6 +61749,Hotel Desk Clerk #1,55604,29626,70 +61750,Lucius,5928,49359,5 +61751,Cafe Speed Talker 2,414977,1676777,26 +61752,Heuk-myo,285213,125736,7 +61753,Dr. O'Neil,98566,1232623,19 +61754,General Klimenko,64483,86874,5 +61755,Dinh,177335,1054859,2 +61756,Ellie Fansworth,68976,72717,7 +61757,Herself,58923,1658153,3 +61758,Reverend Mr. Carmichael,875,13343,5 +61759,Jeune femme piscine,98277,1849122,45 +61760,Peter,76784,27962,6 +61761,Undertaker,42533,102843,4 +61762,Mossie,262958,39661,5 +61763,Sungjoon,85525,80461,0 +61764,Shawniqua,95136,109694,10 +61765,Himself,315850,146253,1 +61766,Camper Steve,41574,77625,8 +61767,Vocals for Todd Sparrow (voice),58467,1704742,44 +61768,Владимир Березкин,57770,99302,1 +61769,Himself,253337,10823,7 +61770,Paul Lanthrope,248469,14729,1 +61771,Tony Blair,1165,3968,1 +61772,"Herself (uncredited, archival footage)",411013,1807640,10 +61773,,29299,1206020,7 +61774,Himself,410718,1364815,6 +61775,Baums Diener,12206,29129,18 +61776,Marty,52454,1630263,15 +61777,James,378018,1791800,10 +61778,Dream Girl,47540,1468512,10 +61779,Plump Charles,209401,1235614,17 +61780,Michael,126323,33528,4 +61781,Assistant Stage Manager (uncredited),3055,3037,16 +61782,,265934,15737,2 +61783,Father,104193,224662,0 +61784,Önni,87229,42668,1 +61785,Si Yi Lang,10703,135834,15 +61786,José Luis Torrente,59117,10847,0 +61787,Army Nurse,256962,1512148,30 +61788,Buddy the Clerk,10011,27993,5 +61789,Al - Boy Working Lathe,99909,120822,28 +61790,Actor,47638,1320732,4 +61791,Darryl,24149,1382567,6 +61792,The US President,508,879,17 +61793,Kishan A. Chand / Murari,20364,85033,4 +61794,Jefferson Harper Sr.,43783,30276,5 +61795,Tuoba Lie's Man,217923,1436259,24 +61796,,204007,144517,4 +61797,Clémence,76207,578037,2 +61798,,62896,116159,2 +61799,Tuck,59962,2524,2 +61800,Mrs. Palafox,86979,25641,5 +61801,,45205,132528,3 +61802,Agente Mancini,53805,124625,21 +61803,Lena's father,63281,93543,2 +61804,Mrs. Hitler,22447,1484404,28 +61805,New Dental Patient,2355,1089180,29 +61806,Marzin,35025,27615,6 +61807,Oliver Cromwell II,31675,108638,13 +61808,Sandy / Nurse #1,205798,32290,9 +61809,Leslie,19238,41421,3 +61810,Lt. Felix Gaeta,69315,59312,13 +61811,,41416,126717,1 +61812,Strip,110598,8891,1 +61813,Chief Budge,10178,10162,14 +61814,Claire's Friend,16523,187406,9 +61815,Dinosaurs (voice),79500,15831,13 +61816,Maurice 'Momo' Zareba,33095,252263,2 +61817,Nod (voice),116711,27972,0 +61818,Inspector P.K,159636,87549,2 +61819,Wayne Quinn,49762,142754,4 +61820,Duncan,119844,93967,3 +61821,Fred,90030,111826,5 +61822,Todd's Bassist,58467,1704735,36 +61823,"Maître Charles Dunand, der Anwalt",124013,15135,0 +61824,Min-cheol's wife,45098,1311152,7 +61825,Wilbur Turnblad,409447,519,8 +61826,ostpreußischer Grenadier,10626,26426,12 +61827,Minor Role,32610,590520,33 +61828,Pablo Vicario,163706,982212,14 +61829,Cmdr. Craig,143092,141596,10 +61830,Maz,25038,5576,6 +61831,General Hafez,47065,942,2 +61832,Comic Con Attendee (uncredited),214756,1759666,86 +61833,Senator Karenin,120831,29580,2 +61834,Producer of movie Apahij Pyaar,8079,35810,15 +61835,Jake,100110,6576,1 +61836,Jack Trimble,187219,26075,6 +61837,Rick Yates,71503,563093,3 +61838,Football Player #12,43812,89704,67 +61839,Simon (voice),258509,5661,7 +61840,Coroner,245706,121939,14 +61841,Pierre,185156,24682,1 +61842,Sophie,392818,1440577,1 +61843,,3549,1441482,20 +61844,Lewis,324670,1297390,16 +61845,Bess Matthews,22606,89009,1 +61846,Carol Davison,119694,36190,5 +61847,Sleigh Driver,3053,12693,10 +61848,Monica,16432,1418525,10 +61849,The Man from Planet X,50153,119508,7 +61850,Alina,346838,1483037,3 +61851,Coast Guard Cutter: Coast Guard Friend,10780,1214024,13 +61852,Mrs. Ishikawa,70322,83201,11 +61853,Dr. Yip / Milo (voice),172828,45398,13 +61854,Senba,104776,1734704,6 +61855,Seksbomba u drugiego bohatera,91691,107889,14 +61856,,64526,45580,8 +61857,Dragon Chan,222216,1341,0 +61858,Jeanette,76864,67737,1 +61859,Marilyn Wilson,271714,1285592,7 +61860,Tom Shealy,59965,10379,15 +61861,Dr. Gustaf Segert,27622,19550,1 +61862,,12453,72300,13 +61863,Leonor,132608,5659,4 +61864,Nancy Holt,400174,10690,5 +61865,Ken (voice),57737,101247,2 +61866,Segurança,70666,1863897,33 +61867,Zachary,76203,1344362,50 +61868,Search party leader,43113,1185638,44 +61869,,125835,591153,17 +61870,Jean Lucas,30163,16927,0 +61871,Nurse Mary Lamont,153163,41245,5 +61872,German Soldier,369885,1651386,25 +61873,Sally Carter,193177,18292,7 +61874,Biker Convict,128644,80579,6 +61875,The Wizard of Oz,47761,1062,0 +61876,Vinnie,38150,90547,10 +61877,türkischer Polizist,308174,1006784,44 +61878,Holly,4257,28639,6 +61879,Slinky Dog (voice),77887,21485,2 +61880,Kmetat,214938,1199622,4 +61881,Nanette Carter,33117,8237,0 +61882,Jinhee,48508,144591,0 +61883,Daniel Pender,173638,1443660,5 +61884,Yanka,40258,556470,0 +61885,Mrs. Tourneau,149509,1224877,25 +61886,Morris,407448,1581190,11 +61887,Sokovian Citizen (uncredited),99861,1394333,67 +61888,Raphael Valdez Jr.,212713,3265,2 +61889,Natasha,56809,1833806,15 +61890,Herself (archive footage),318224,200,9 +61891,Seishinkai - Mitsuyama,36917,554065,7 +61892,Penelope Wood,9843,11317,2 +61893,Katie Bascomb,371181,1836223,15 +61894,Aunt Fanny,15044,42567,15 +61895,Alex Sinclair,60173,230665,7 +61896,(NA),18475,150666,5 +61897,Sarah James,49060,29369,0 +61898,Dinner Guest,16151,79722,36 +61899,Elizabeth 'Smokey' Allard,73430,8725,0 +61900,Robyn Davidson,203819,76070,0 +61901,Cetto La Qualunque,56339,73864,0 +61902,Superman / Clark Kent / Dark Superman (voice),13640,2059,0 +61903,,393521,1867487,8 +61904,Ciça (voz),361146,1890682,12 +61905,,231009,52657,10 +61906,Agata,81312,224484,2 +61907,Rebecca Reid,57201,47720,6 +61908,Lysette Spinelli,179826,114602,6 +61909,Inspecteur Dupont,44256,1871178,17 +61910,Asian Man 'Ming',72105,17041,18 +61911,,313676,133049,1 +61912,,54503,1175342,9 +61913,Barman,13092,17072,24 +61914,Anna Strauss,280004,39740,3 +61915,Princess Marisa,46827,1230663,8 +61916,Dr. Newbury,42709,6679,0 +61917,Pvt. Jerry Plunkett,72638,5788,0 +61918,Magnolia,228290,27271,3 +61919,Kizaki Toshiro,38154,234645,4 +61920,Mr. Mathews,200331,12727,7 +61921,Policeman,72592,1112404,7 +61922,Rani of Cooch,121598,1880896,10 +61923,Mrs. Ellis,339527,121566,7 +61924,le professeur Labrousse,58928,15482,3 +61925,Susan Grieve,43457,3380,0 +61926,,271677,82075,11 +61927,Alien Officer 2,280617,1851697,32 +61928,Anthony Columbo,39495,41217,15 +61929,Police Lieutenant Daniel Bradford (as 'Duke' Moore),32623,65499,1 +61930,Alfredo,43379,233184,9 +61931,,115427,56293,6 +61932,Emperor Maximilian von Hapsburg,78318,32923,2 +61933,Gary,12182,205854,9 +61934,Maestra Carmen,20941,1723687,19 +61935,Herself,76494,1224518,25 +61936,Samuel L. 'Sam' Clemens,16356,80407,3 +61937,District Attorney John Forsythe,51476,96721,6 +61938,'Tiny' Williams,44087,14303,6 +61939,Goldie,50318,1331714,29 +61940,Meghan,381073,1182729,8 +61941,Maitre d',244539,1508820,12 +61942,Yossi,117629,82097,0 +61943,Drummer,76341,1734198,55 +61944,,293089,124871,2 +61945,Olivia Langdon Clemens,120747,65284,1 +61946,Mads,251232,558254,4 +61947,"Director of the tourist base ""Eagle's Shelter""",71051,1190694,5 +61948,Barbara Darrow,86603,10227,3 +61949,Cassandra Barber,374614,1216701,0 +61950,"Karl, Sophie's Boyfriend",29161,233905,15 +61951,Snow Beast,78362,929105,7 +61952,Grandpa Cliff,85350,71566,44 +61953,Dr. Redmond,19342,83983,4 +61954,Prince Artie (voice),810,12111,9 +61955,,53367,85,16 +61956,Sam Rhodes,18530,229,14 +61957,Jean Charles,28997,87341,0 +61958,Deputy Moore,77877,141762,5 +61959,(voice),63498,1084809,3 +61960,Arianna,356757,1501793,0 +61961,Orderly,45013,1818040,52 +61962,Katryne 'Kat' Demers,359413,1508580,3 +61963,Maud Hill,77949,11356,2 +61964,Mariuccia,72057,240288,4 +61965,"Cpl. Allison, USMC",37103,10158,1 +61966,Jean,34013,5443,1 +61967,Officer Sanchez,269173,119413,11 +61968,Zhang Xi,362178,1549532,3 +61969,Richard Stafford,100063,7124,5 +61970,Dirk,86391,3872,1 +61971,'Mac' McNamara,34944,103620,6 +61972,Walter,79836,1075760,4 +61973,Susan,59408,22969,0 +61974,NYPD Officer,2503,164021,30 +61975,Mitchell,227306,1394444,21 +61976,Skillz,84184,78500,11 +61977,Shuji Asahina,363354,229360,9 +61978,Michael Connolly,31165,55364,2 +61979,Band Leader,3563,77073,26 +61980,Mel's Drive-In Waitress,64328,1303010,40 +61981,Docteur Dubois,10795,93531,30 +61982,Soldier,255160,1424687,13 +61983,Les,151043,86137,10 +61984,Lee Morgan,38150,103351,3 +61985,The Leningrad Cowboys,11475,4828,5 +61986,Teun,67499,87675,3 +61987,Ron Werner,103432,29095,8 +61988,Dr. J. Bydwell,329865,1195722,17 +61989,Marine Wilcox,45562,49735,7 +61990,Halloween Hound (voice),70587,5727,20 +61991,Mrs. Dominic Cattano,4982,162542,18 +61992,Axel - 1st Swede,197737,124875,33 +61993,Party Guest (uncredited),43808,106104,16 +61994,Norton,205481,25532,7 +61995,,409903,86871,1 +61996,Alkali Soldier,246655,1569228,76 +61997,Frank Richards,75903,7124,1 +61998,Pregnancy Class Instructor,19794,200237,32 +61999,Blobby (voice),159824,1526129,15 +62000,Gala Guest (uncredited),329865,1389916,64 +62001,Rafe,10075,47703,4 +62002,El Brillante - Disgusted Matador (uncredited),58732,19181,6 +62003,Sally,153162,1274103,12 +62004,Aubrey Pope,403431,35027,8 +62005,Mężczyzna,403130,1627417,13 +62006,Leftist woman,8071,18227,7 +62007,Roser,348537,962,5 +62008,Breslin,63045,32224,0 +62009,,376934,1497830,7 +62010,Wyatt,340684,96032,5 +62011,Lekarka Ewa Król,314371,1573857,10 +62012,"Butcherbird ""Butch"" Vlad",89337,7041,4 +62013,Da Lisi Guard,217923,1436284,42 +62014,Japan Kradler (voice),9514,56477,8 +62015,Jean,80720,1672449,18 +62016,Alice Parks,70026,10447,1 +62017,Mazzone,142320,131630,27 +62018,Issachar / Lead Trader (voice),16366,84495,15 +62019,Farzan,34734,6623,5 +62020,La femme de chambre,70090,543813,6 +62021,Scab (voice),9904,60234,17 +62022,Napoleon III,109716,33033,9 +62023,Cassie,109439,55536,6 +62024,Cantinflas,82767,29518,0 +62025,Photographer,186869,132730,39 +62026,Major General Franklin Kirby,10999,65508,4 +62027,Rūma (voice),125513,555550,11 +62028,Saif,177677,1562096,48 +62029,Professor Lillian Friedman,157829,19492,3 +62030,Bud Remington,59738,182674,15 +62031,Orchestra Leader,43809,1072123,58 +62032,Lt. Miguel Garcia,126415,14277,2 +62033,1942 Woman,44690,1484156,14 +62034,(uncredited),140554,39917,47 +62035,Homem 1 - Porta Retrato,70666,1863916,64 +62036,Moe,25053,1879458,8 +62037,Vince Nail's Video Girl,23048,1763429,17 +62038,Sven Hansen,3962,5646,2 +62039,Lt. William 'Bill' Gordon / Anson Meridan,53860,32428,0 +62040,Tall Dancing Girl,24469,1319618,13 +62041,Himself,398633,1578815,1 +62042,J. Pierpont Finch,22682,40173,0 +62043,Norm,55735,571299,9 +62044,Dr. Gregory Burton,178341,34119,4 +62045,Faxineiro Aeroporto,70666,1863882,11 +62046,Anne,215379,1384875,10 +62047,Willie Mossop,16410,11859,1 +62048,Bridges,218425,1312171,8 +62049,Robin Torrence,55728,2179,1 +62050,Ruthie,356752,1102500,2 +62051,Ferdinand-Pierrot,2786,3829,0 +62052,Arnold Voss,81110,1159958,10 +62053,Rose,329289,69399,3 +62054,Plain Clothes Man with Sergeant,171446,14420,16 +62055,Volunteer,45431,550902,21 +62056,Front-Row Play Spectator,43821,88981,47 +62057,Bittu,125835,95750,2 +62058,Werner / Herbert (voice),9514,57711,0 +62059,George Smiley,13580,74689,5 +62060,Sparra,52452,19393,7 +62061,Novelist,3782,128023,14 +62062,Trailer Park People,186869,1862902,29 +62063,Sinclair,12683,101091,11 +62064,Marvin Clay,72096,60205,20 +62065,Crossley,48131,27554,0 +62066,Jerry Manning,28438,88462,0 +62067,,148622,591946,9 +62068,Elizabeth Kenny,51571,30233,0 +62069,Publican,37929,119133,5 +62070,Pastor,85350,1467962,46 +62071,Aramis,41609,92908,7 +62072,Himself,16800,939001,16 +62073,Old Man,35113,10654,6 +62074,Vito,32139,108943,13 +62075,Pops,42267,42181,4 +62076,Tan Yi,117506,565344,6 +62077,Leo,119816,6084,5 +62078,Cherokee Lansing,104083,30124,0 +62079,The Doctor,246299,13361,8 +62080,Joe - Limehouse Barman,52859,100763,13 +62081,Hermes,371942,88474,4 +62082,Emily,37038,78934,2 +62083,Karen Alvarado,263472,1049536,5 +62084,Mathilde,17658,8791,2 +62085,Cannonball,357529,6463,2 +62086,Nate,369033,1583975,15 +62087,Mike,33789,56045,0 +62088,Jeff Gorvette (voice),49013,932719,40 +62089,Capitol Business Woman,8988,1465608,72 +62090,Dag Parker,218784,85139,0 +62091,Carol,4413,2453,4 +62092,Cal,17038,102657,10 +62093,Tammy Lynn,45013,115217,29 +62094,Ellie Barton,94170,9909,3 +62095,Major Emanuelle Stance,72431,9777,2 +62096,Marombeiro 1,448763,1848675,44 +62097,Jose Dela Cruz,26810,124988,14 +62098,"Costa, Amadeu's uncle",74718,143135,0 +62099,Bandit,81996,4753,0 +62100,Himself,18893,99277,1 +62101,Mary Rice,8247,2882,5 +62102,Boon Hogganbeck,5928,13565,0 +62103,Roger Wayne,37534,16433,10 +62104,Himself,324181,1076701,8 +62105,King Mongkut,43471,35321,1 +62106,Eric 'E.T.' Triggs,298540,93602,4 +62107,Yamaguchi Tamon,131739,66155,1 +62108,Hank,57749,152421,5 +62109,Himself,270724,1326036,4 +62110,Himself,157117,1161963,22 +62111,Father in Family Group,80596,33267,7 +62112,Hotel Desk Clerk,106573,19552,10 +62113,,81616,1359121,15 +62114,J. Thorval Jones,111582,30276,8 +62115,Himself,26465,1204380,1 +62116,Highsmith,172828,53,2 +62117,Cockney News Vendor,109716,120458,43 +62118,Brigadier,94135,114837,11 +62119,Arthur Vance,1938,20145,6 +62120,Dyala,48180,104390,0 +62121,Rabbi Sendak,13788,64,1 +62122,Subject #31,29151,61011,12 +62123,Randy,41171,88966,13 +62124,Blossom,218582,244990,13 +62125,Doctor Cassano,43432,1084326,12 +62126,Himself,229296,57108,3 +62127,Eleanor's Father,91443,15900,4 +62128,Claudine,52264,28254,3 +62129,Philip Bang,38362,5401,0 +62130,Discount Student,92496,1795186,31 +62131,2nd Sister,64304,1178817,14 +62132,Mother Malkin,68737,1231,1 +62133,Himself,5638,44553,7 +62134,Waitress,189888,52623,6 +62135,Owl (voice),36540,25627,5 +62136,Nii-chan (voice),201223,1168909,10 +62137,,356486,135461,11 +62138,Mrs. Tupperman,31913,940121,10 +62139,Enfermeiro Marcos,248543,1126875,7 +62140,Narrator,24272,140568,1 +62141,Scary Woman,5646,44589,14 +62142,,130948,230425,7 +62143,Zach Derohan,359412,1388479,6 +62144,,335053,1587224,27 +62145,Bartender,38433,120446,17 +62146,Twana,44634,88161,2 +62147,Mrs. Rezzori,121888,1073181,3 +62148,Zozo,49220,590850,0 +62149,Peggy Van Alden,15697,83439,1 +62150,Treasury Dept. Official,44669,82748,8 +62151,Maricel (as Marnie Lapus),214129,1269277,11 +62152,Mc Gillivray,4893,14264,2 +62153,Letizia,22182,88473,5 +62154,Tika,69075,1200360,11 +62155,Alonzo the Armless,27503,14481,0 +62156,"Polly Henderson, aka Polly Dorgan",118134,141753,0 +62157,Maître d'hôtel,5511,1100818,19 +62158,Benji,50725,63110,13 +62159,Joe's Mother,15414,57449,12 +62160,Gérard,326874,28279,3 +62161,Capt. O'Malley,42325,80569,10 +62162,Bobby,12135,73381,1 +62163,Willy,76059,575979,8 +62164,Creative Executive #2,193893,1371098,20 +62165,Prada,17457,66717,8 +62166,Alex,85743,1387596,6 +62167,Funny Screenwriter,310593,1506484,18 +62168,Pascal,127091,24478,3 +62169,Malcom,133448,32559,4 +62170,"Vanina, the prostitue's daughter",13653,1600942,16 +62171,Agent Dickerman,59962,228890,21 +62172,Jamil,125623,1058085,16 +62173,Kolkatta Kaali,362150,1064131,12 +62174,"Starszy aspirant Jacek Goc ""Gebels""",382155,235493,4 +62175,Wickett,20196,109945,6 +62176,Denis,43281,587144,5 +62177,Martino,99909,16761,11 +62178,Deputy Cole,339419,71889,13 +62179,Jeshua,150056,104243,0 +62180,Kit Silencer,18492,83172,1 +62181,Russell Fenn,51036,1879468,15 +62182,Irena,13614,140217,6 +62183,Madhusudan Sharma,82243,647061,7 +62184,Joe Newall,119738,31467,7 +62185,Elizabeth Travers,44902,36851,3 +62186,Prof,37600,1522204,1 +62187,Sarah,369406,1229671,16 +62188,Frank,358076,29385,11 +62189,Don Heldon,120932,50306,5 +62190,Mrs Farrer,18774,1802010,12 +62191,Jacob,53861,95638,2 +62192,Lincoln,7220,94854,30 +62193,Mabel,103332,61178,5 +62194,Blind Man,70046,203886,14 +62195,Alex Mason Jr.,19371,84598,3 +62196,Rose,405882,97736,8 +62197,Alfie,31875,14887,0 +62198,,284189,1171510,2 +62199,Iesa,227932,567575,8 +62200,Harper,287281,1353906,5 +62201,'Death',32577,1763861,21 +62202,Ariel,270383,82785,2 +62203,1st Nurse,149926,230491,17 +62204,Helena,61527,94098,5 +62205,Op Center Duty Officer,19995,1207266,49 +62206,Darby Crash,17137,81295,0 +62207,Dolly - Cleve's Secretary,35404,12505,8 +62208,Mark Lamphere,560,7640,1 +62209,Newton Davis,10407,67773,0 +62210,Jim the Protestor,3563,52997,29 +62211,Rauno,58391,228650,3 +62212,Adams' Assistant (uncredited),14615,1144349,72 +62213,Lew Dockstader,31206,2671,6 +62214,Bendish,94135,1298090,16 +62215,Whiplash (voice),77950,2231,3 +62216,Chorus Girl (uncredited),17820,117112,11 +62217,Jessica Baker,11007,71861,8 +62218,,77057,1209310,17 +62219,Joe,41932,11750,11 +62220,Denise,25060,93089,0 +62221,Latino Fighter #1,110552,85685,9 +62222,Newspaper Guy,30174,1024250,14 +62223,Messenger,43812,120822,33 +62224,Maj,356326,1518350,4 +62225,Helen,47446,18847,3 +62226,Shimoda,2966,1521620,10 +62227,Group Supervisor,11338,224,5 +62228,Comm. Hubbell,44190,130423,12 +62229,,11328,1444511,60 +62230,Mahmood,306952,1511988,48 +62231,Alexander Waverly,79466,2642,6 +62232,Pamela Landy,2503,11148,7 +62233,Joe DiMaggio,337751,47296,3 +62234,Abe,45132,12132,5 +62235,Mrs. Hines,8617,155435,15 +62236,Banger,263115,1510788,59 +62237,Karen,41171,110887,22 +62238,Jan Hein,16177,27884,10 +62239,Cynthia,221981,5943,7 +62240,Wladi,79221,236188,10 +62241,Melissa,271826,1197103,6 +62242,Old Tramp,54801,12693,11 +62243,Park Benjamin,98328,81180,5 +62244,moglie dell'appestato,338438,229261,12 +62245,Doorman,33481,110788,38 +62246,El Tigre,28304,18646,5 +62247,Mr. Baek,4550,64880,0 +62248,Frank Tupelo,37710,85,0 +62249,Juniper,103731,368,4 +62250,Debbie Dingman,10710,3293,2 +62251,Yeva,354859,1802423,11 +62252,Lorna Mallabee,40826,124741,2 +62253,Guy In Coffee Shop,331161,1459159,29 +62254,Valerie,77673,19165,8 +62255,Hauke,394403,6090,5 +62256,Andrey,62732,29839,1 +62257,Buster,31411,8635,0 +62258,,63215,1520908,27 +62259,Thai Mini-Cab Driver,10389,551627,40 +62260,Lavergne,61908,179461,9 +62261,Bird,844,12675,9 +62262,Eddie's Wife,17725,1240679,21 +62263,Sgt. Gazzo,82485,172734,14 +62264,Storyteller,45988,65,0 +62265,Policeman,43811,1240252,39 +62266,"Chikako Arai, singer in the nightclub",43113,128665,2 +62267,Clean Cut Girl,413452,95038,7 +62268,Girl,17288,1347935,3 +62269,Major Thomas Wollenberg,103396,38124,4 +62270,Samantha,19398,1469192,22 +62271,Anna Karenina,70881,19549,0 +62272,Julija,341559,1496483,13 +62273,Himself,97724,1388687,37 +62274,John Harley 'Duke' Duquesne,48136,4355,2 +62275,Dance Extra in 'The Way You Look Tonight' Number (uncredited),20325,88462,7 +62276,Skip,18843,285369,8 +62277,Depoya gelen genç erkek,64468,1156336,6 +62278,Professor Warwick,110980,2933,7 +62279,Jahnavi,80539,589653,2 +62280,Julie,305932,1346087,6 +62281,Fire department official,43113,552170,45 +62282,Chuck,13836,31365,13 +62283,himself,27805,129268,0 +62284,Sangaile,310568,1398229,0 +62285,"Bodyguard, Donaldson's Partner (uncredited)",43522,1329738,57 +62286,Hospital Official,376660,198615,19 +62287,Allan,80343,1646006,4 +62288,,49907,20113,1 +62289,Grandma Minnie Mae Presley,23178,11718,5 +62290,Harley Nubbins,84295,120209,6 +62291,Welcome to the 60's Dancer,2976,1432509,140 +62292,Nurse Kelly,49018,1055672,9 +62293,Genevieve Duchannes,109491,993774,11 +62294,Teeli,341007,1706346,12 +62295,Warden,41234,14455,17 +62296,Juan,278348,1611977,4 +62297,Jeffrey Dahmer,110588,19765,4 +62298,Angelique,72105,999772,26 +62299,Bruce Wayne (voice),269246,34947,2 +62300,Susanne Feldberg,28938,5511,5 +62301,Tom Sullivan,53950,168269,2 +62302,Bus Driver,22447,1687935,31 +62303,Officer #6,34672,126237,21 +62304,Man in Street (uncredited),24973,97999,34 +62305,Louie,94251,3140,8 +62306,Mr. Jönsson,19181,55002,5 +62307,News 5 Reporter,279096,1359988,23 +62308,Phillipus,297762,1360156,20 +62309,Jerry Moriarty,40034,29712,1 +62310,Mahogany,45013,1818004,16 +62311,Prayer Reader,67748,1172844,17 +62312,Brian,27814,123333,0 +62313,General Moore,5965,27237,6 +62314,Manfred Herrfurth,201429,77446,1 +62315,Amato Roselli,39407,97279,6 +62316,Dr. Wood,278316,1333666,5 +62317,Airman,76380,494102,11 +62318,Newsboy,118134,1186116,9 +62319,French girl,53423,21301,1 +62320,Sukeena,16175,79901,3 +62321,Marianne,198511,1040465,1 +62322,Spud,28564,32430,4 +62323,Sandra (uncredited),74430,96914,10 +62324,Tad Whitneyworth,129332,1089085,5 +62325,Dr. Lansen,254918,3982,3 +62326,Airline employee,25919,86624,7 +62327,Rico,11496,1525611,13 +62328,Tsmanni (as Hector V. Sarno),50329,592841,18 +62329,"Sverre, the Norse King",58905,1005247,18 +62330,Tony,250535,1394375,7 +62331,Valentina,142320,131657,11 +62332,Devanathan,40998,580907,9 +62333,ispettore Vannucci,54309,130877,13 +62334,Judgemental Bar Patron,360592,1512195,21 +62335,Speechmaker,134201,17857,18 +62336,Anna Moore's Mother,31509,1409190,5 +62337,Himself (archive footage),318224,6542,13 +62338,Joise,42355,127927,1 +62339,Sherry,308,1146,1 +62340,Frank Allen,12912,10859,0 +62341,Reporter,43811,1195240,35 +62342,Victor,278348,1161588,6 +62343,Betting Parlor Patron,118889,89013,67 +62344,,56589,578502,14 +62345,John Lawrence,121154,10779,3 +62346,Jean (uncredited),80168,1445465,14 +62347,Armand de Montareuil,55370,40586,20 +62348,Blackwell,146216,29470,21 +62349,The Hammer,319924,237747,6 +62350,Mrs. Egan,31942,45392,8 +62351,Mahesuan,2805,134726,3 +62352,Sheila Kerry,156597,1427454,12 +62353,Police Officer,20444,86138,13 +62354,Douglas Row,3164,103789,3 +62355,Bus Kid,40990,1567893,13 +62356,Mrs. Wanley,17136,81293,6 +62357,Kay,177474,16757,0 +62358,Captain Zhang,222216,78257,5 +62359,David Savage,57103,10508,4 +62360,Jeffrey Wyatt,64183,13473,1 +62361,Chambermaid,16175,79909,15 +62362,Trevor,391375,26066,5 +62363,Forrest Taft,9624,23880,0 +62364,Birger Simberg,264061,29762,2 +62365,Maya,25890,94308,2 +62366,Narrator,10946,3899,3 +62367,Hospital Patient,318781,7806,37 +62368,Ezra,362703,27740,1 +62369,Villain A,27245,58610,3 +62370,owner of animal hospital,229304,1334230,9 +62371,Sam's Mom,301325,10871,2 +62372,Jannicke,21786,87879,0 +62373,Hillbilly,326045,1285611,2 +62374,Wendall Wimms,13169,6212,4 +62375,Philippa Hawking,266856,1052255,18 +62376,Theodore Katavasov,96724,83814,23 +62377,Walker,34459,141371,5 +62378,Gordon,62694,9865,6 +62379,Rikun äiti,101838,1029105,33 +62380,Master Wei's thug,46124,1589272,11 +62381,Anna,49847,142948,1 +62382,Hot Servant,156711,1349743,38 +62383,Ms. Camwell,15189,111513,11 +62384,Johanna Gauss,115023,1080195,2 +62385,Clip from 'Free and Easy' (archive footage),33740,19406,53 +62386,La seconde femme,56653,1469926,5 +62387,Leonard,301875,56930,9 +62388,Jojo,15457,43997,7 +62389,Dagen,347096,1418422,4 +62390,Kelsey,29805,1738563,39 +62391,Detective (as Jeff Grover),156700,1409984,25 +62392,Nayak,80276,95750,2 +62393,Lily Starling,340101,1704326,20 +62394,Hunter,9981,61401,8 +62395,John Benson Farrell,41495,30211,2 +62396,1942 Girl,44690,44705,15 +62397,Reporter in Courtroom (uncredited),14615,9096,32 +62398,Special Agent,369885,1651429,67 +62399,Hari,73600,14373,2 +62400,Dr. Valentín Hernández,43434,134416,18 +62401,Nurse,18898,1373457,16 +62402,Knight (uncredited),274857,1568707,64 +62403,Sam Shan,28366,100586,7 +62404,Joe - Detective with Ragan in New York,26376,1023934,56 +62405,Beverly,10748,66431,5 +62406,Yi-hwa,107976,87897,2 +62407,Pierre-Alain Gallabert,61991,1888876,9 +62408,Voice Actor,201085,60602,12 +62409,Lucien Galgani,3513,20070,4 +62410,cameo,190940,76232,10 +62411,Harry Poole / Edward Grey,273084,211598,1 +62412,Big Ugly Bastard,107985,211413,52 +62413,Xavier,45649,46919,0 +62414,Robert Miller,31287,99121,3 +62415,Sid Park,310001,65225,1 +62416,Lambert,7229,28787,9 +62417,Nutsy (voice),339669,136348,2 +62418,Young Bower's Mother,19898,132182,11 +62419,Hypnotiseur,266044,36688,8 +62420,Revolutionary Guard Captain,146216,1427286,54 +62421,Pasha,421741,86876,4 +62422,Police Sergeant,151043,151864,13 +62423,Kim,15440,107764,3 +62424,Debra Bishop,358076,127488,3 +62425,Groupie Interviewee,32694,109576,14 +62426,No. 24,28656,101473,4 +62427,Himself,201419,1536687,6 +62428,Tana,276123,1330011,7 +62429,Brittany,62837,1454296,14 +62430,Sato,402455,975666,17 +62431,Sarah / Susan / Sierra,12994,15250,2 +62432,Pusher,85651,1375270,7 +62433,Granny (voice),33065,47426,4 +62434,Sophia Rosselini,26510,38561,0 +62435,Maddie,49199,551869,7 +62436,Paula Phillips,25834,1904615,12 +62437,,239562,55541,10 +62438,Bald Head,25536,1147123,7 +62439,Russian Orthodox Priest (uncredited),120831,144050,7 +62440,Jacky Castang,61991,55923,8 +62441,Lexi,338518,89820,2 +62442,Dr. Crawther,84233,236486,4 +62443,John Truscott,25988,12791,1 +62444,Schoolboy,64685,928930,14 +62445,Jimmy's Buddy #1,54318,1201353,12 +62446,Dorm Buddy / Dancer,4688,1277506,13 +62447,Moon Blake,51249,6860,1 +62448,Skid Mark (voice),77950,222121,8 +62449,Gammel Mand,572,7762,7 +62450,Succubus,246741,1780282,41 +62451,Nagashima Kyohei,121725,124402,0 +62452,Babeth,329805,151180,4 +62453,Member of Parliament,133521,237832,6 +62454,Вика,47812,139466,6 +62455,Senator Purrington,209112,853194,96 +62456,Gas Station Attendant,20174,85776,10 +62457,Lisa D'Souza,393445,130591,6 +62458,Sally DeBains / Statue of Liberty,20521,1222822,6 +62459,Deputy Ben Clovey,44545,40577,5 +62460,Paul,42941,113563,3 +62461,Alex,228108,76788,3 +62462,Jennifer,10041,816712,4 +62463,Lauren,82134,52394,6 +62464,Escort,118760,1103793,11 +62465,Gwen,259894,1302345,4 +62466,Captain America,14609,87174,0 +62467,Sir Francis Vane,89086,1038474,25 +62468,Fayard,74822,34581,0 +62469,Matt Jennings,207178,88649,2 +62470,Ines,160844,239921,9 +62471,Herself - Mother,15584,1051827,3 +62472,Bookie (uncredited),28000,1099216,25 +62473,Young Mathayus,13486,141467,10 +62474,Elk Cove: Wilbur Budd,10780,79912,19 +62475,Mlle Dexter,14703,14743,8 +62476,Kuroiwa,31161,545766,3 +62477,Leon,409536,3214,7 +62478,Nadine,60824,25344,3 +62479,Larry,24978,6950,13 +62480,Allen,14642,1615202,13 +62481,Gundula,75969,1902097,49 +62482,Happy Birthday Girl,40028,99813,8 +62483,Charlene,18826,1294,9 +62484,Trudy Chacon,19995,17647,4 +62485,Chocolate Shop Waitress,73873,1450262,15 +62486,Gang Boss Anto,403605,1571463,11 +62487,Junkie,21968,1655540,11 +62488,Blaine,57201,1471922,24 +62489,,62783,238527,3 +62490,Bugs,94009,141586,13 +62491,Alix Lefebure,77673,30644,7 +62492,Young Mother,51890,46001,5 +62493,Pa Jones,41574,1583293,15 +62494,,88273,90061,11 +62495,Harry (as Hal Roach's Rascals),190352,1055296,7 +62496,Gail MacKenzie,53949,80600,1 +62497,Ira Denmark,212934,4095,5 +62498,"Dr. Sandor Schreck (segment ""Dr. Terror"")",26811,5,1 +62499,Audience Member,38322,1869060,61 +62500,Harcourt,47003,214999,8 +62501,Evonny,109391,1204698,31 +62502,Man #2,27230,1173,12 +62503,Giulietta,57996,227309,1 +62504,Himsef,13585,24265,0 +62505,Kaylie,258255,181110,1 +62506,Ann Beaulieu,23178,136913,8 +62507,Eliška Tkalounová,6079,47833,1 +62508,Isabelle,66668,78842,4 +62509,The Woman,39495,151133,8 +62510,,77473,1651534,3 +62511,Robert,80080,588765,2 +62512,Franklin Dykes,50549,32494,18 +62513,Gwen,71866,61111,11 +62514,Technikan,5965,46931,19 +62515,Young Ethan,413417,1528935,15 +62516,Rechtsextremist,1912,46311,22 +62517,'Hutch' Hutchinson,413232,13969,12 +62518,(voice),41077,102509,3 +62519,Mme Campan,99579,49168,4 +62520,Boban,260030,31648,4 +62521,Cosentino,142320,238495,33 +62522,,27053,140365,21 +62523,George Johnson,2355,21384,13 +62524,Anton,174645,1028460,9 +62525,Jean McCormick,44099,130224,11 +62526,"Svinya (""The Pig"")",54514,81005,2 +62527,Mr. Dingle,56154,14666,5 +62528,Detective Quinn,99324,34625,7 +62529,Katz,47194,18797,11 +62530,,57011,227618,3 +62531,Aarush,58051,35070,0 +62532,Look Out,41312,101963,14 +62533,Wang Yi,40081,119655,10 +62534,Hilda Bloggs (voice),10857,3672,0 +62535,Imperator,76341,1265157,30 +62536,Reporter,5172,58510,30 +62537,Jake Logan,84105,1108907,3 +62538,Keren,125623,1160313,10 +62539,,107916,1042752,5 +62540,(India),1926,20045,6 +62541,Thelma,99859,400,3 +62542,Space Babe,106747,1486488,21 +62543,Jesus,20521,74933,7 +62544,Jim Lahey,27561,82704,3 +62545,Prof. Gudden,3478,32064,12 +62546,Notaio Garbarino,156547,1281126,8 +62547,Edward Rochester,38684,17288,2 +62548,Mme Papineau (voice),393559,1776044,11 +62549,Squaddie at Disco,1420,55470,16 +62550,Mike Sturges,86472,39162,0 +62551,Delfinello da Coverzano,61217,1164,6 +62552,,140509,1342696,13 +62553,,74171,571445,2 +62554,Naomi,18613,58168,5 +62555,López,14430,7372,1 +62556,Nick Flynn,78571,17142,2 +62557,,347328,1245979,2 +62558,George,308671,32822,3 +62559,,292830,1254503,4 +62560,Bestefar,20372,225764,3 +62561,Beau at Ice Cream Festival,191068,97991,10 +62562,Police Sergeant,132928,14453,14 +62563,Kohei Kubo,135799,1268632,8 +62564,Nun,262528,34182,10 +62565,Vishwanath,66292,84956,0 +62566,Sophia Danko,228205,52018,2 +62567,,77473,1651536,5 +62568,Jeffrey,37600,1522205,4 +62569,Chief Justice,212713,15721,13 +62570,"Giuseppe Amato, un peintre",84035,28262,5 +62571,Damien,130055,28281,0 +62572,Flo,115276,1060671,2 +62573,Black Spirit,10703,1613799,19 +62574,Herself,28036,93089,3 +62575,Prince de Conti,68023,3784,6 +62576,Bit Part (uncredited),18651,89733,21 +62577,Creative Executive #1,193893,1381394,19 +62578,Cynthia,140825,30121,2 +62579,Abdul,28270,15676,7 +62580,Amanda Griffith,147829,30185,3 +62581,Katsunosuke,43364,7450,3 +62582,,42501,15403,8 +62583,Donald Burbank,55694,80742,7 +62584,Major,263115,177403,55 +62585,Captain Ntoulas,53128,118927,0 +62586,Emmi,60677,108472,2 +62587,Patty,209244,192487,13 +62588,Cookie,169068,82103,7 +62589,Helene,176124,2535,6 +62590,,141015,1105223,7 +62591,Gieńka Koselowa,74922,1113208,3 +62592,Kerim Bulut,390357,66792,2 +62593,Mrs. Kolbein,375355,7055,1 +62594,Hannah,197624,1298270,6 +62595,Lynn,61527,14984,3 +62596,Wolf's wife,18899,236195,15 +62597,Fatima / Aladdin's Mother (voice),343693,95257,4 +62598,Bubbles,4932,138095,14 +62599,Volga,196852,1700878,17 +62600,Student #3,10521,1572024,20 +62601,Inspecteur Torrence,37454,15397,7 +62602,Raghavan / Major Raghav Dutta,14134,85730,4 +62603,Sound Designer,14543,9349,16 +62604,Dante,109417,10964,3 +62605,Aschenputtel,153717,70839,0 +62606,Meera,63825,116925,4 +62607,Christie's Lawyer,10761,66560,18 +62608,Mark Terzi,106623,556710,0 +62609,Herself,385114,990388,2 +62610,Subagazi,31273,107876,23 +62611,Karetzky,12206,28066,6 +62612,Agent,345918,1812563,18 +62613,Cadet Johnny Cabot,179103,33024,2 +62614,Danica,274479,194477,18 +62615,Paparazzi #1,258509,1559690,25 +62616,Dr. Steele,31127,1055695,2 +62617,Herself,411013,1799836,2 +62618,Professor Placek,64454,1025516,9 +62619,The Governor,225503,116255,15 +62620,Mazzanti,127091,3090,1 +62621,The government Envoy,19946,39165,6 +62622,Soldier,1724,54200,52 +62623,Soldadera,1810,19221,6 +62624,Himself,293262,1364772,1 +62625,Se stesso,68063,550302,5 +62626,Various,22471,76331,0 +62627,Steve Reed,207699,1196848,1 +62628,Herself,407806,1700945,5 +62629,Detective in Morgue,4982,4886,40 +62630,Zeus,82622,87469,1 +62631,Karine,408509,586814,2 +62632,Sherry Wilde,35558,168326,11 +62633,Girl on Landing Dock,29611,64720,8 +62634,Captain Smalls,52454,131738,10 +62635,Rieko Okuno,99188,82898,3 +62636,Audrey,8199,51536,0 +62637,Father,21955,86390,12 +62638,Konrad,227975,213596,1 +62639,Himself,393367,73879,9 +62640,Bulma's Mom,126963,1156655,20 +62641,Neyadji,238985,161650,4 +62642,Rebecca,443053,1764359,5 +62643,Natalie,150201,1448859,1 +62644,Herself,430156,1735621,8 +62645,Tuckey,200511,34839,5 +62646,Anna,214081,1305924,5 +62647,Shlomi,414771,1209525,2 +62648,Operetta (voice),227257,974219,8 +62649,Maria Bodin,44937,78071,0 +62650,Woman at Hairdresser #2,35113,97170,11 +62651,Child Vampire,246741,1510433,20 +62652,Ron,371645,1153004,9 +62653,Ace,319910,51682,7 +62654,Ken Lawton,183218,97478,4 +62655,Grandma,298931,1402305,4 +62656,Waiter,179066,4120,41 +62657,,117212,138441,14 +62658,Ludwig II.,3478,32058,0 +62659,Detective Boyle,9968,61162,12 +62660,Anna,313074,82809,2 +62661,Axel,206292,230220,1 +62662,"Blake, Fingerprints Expert",140470,102888,14 +62663,Jack Pool,245706,1232531,15 +62664,Deborah,339403,1016168,1 +62665,Pi Patel (16 / 17 Years),87827,933160,0 +62666,Richard Carpenter,69898,16218,1 +62667,,291577,1392075,5 +62668,Jenna,137145,21318,0 +62669,Joey,10033,62249,14 +62670,Spirt,40709,581082,1 +62671,Lenny,48153,6355,2 +62672,Principal Hampton,31377,45566,4 +62673,Gisèle,33360,39145,12 +62674,Riad,49220,590859,10 +62675,Alice,14142,19838,1 +62676,Ciancicato Miao,36236,132190,6 +62677,Sam Shaw,33541,17756,10 +62678,ESU Officer,2001,1781719,64 +62679,Aliénor Schmidt (as Christelle Prot Landman),281968,935361,1 +62680,Meche Barba,261101,589722,5 +62681,,173494,1871454,8 +62682,Woman in Woods,84942,1001964,2 +62683,Roy,72912,10822,1 +62684,Ms. Li (voice),40662,11024,10 +62685,Zhong (voice),322487,52703,6 +62686,Lucia Diotiallevi,20414,128463,5 +62687,Trey Wandella,354287,1417739,20 +62688,JR Shaw (voice),9502,938432,14 +62689,Paul Wood,296456,1128398,2 +62690,Dr. Rusk,132328,1095267,7 +62691,Sonia Cabot,90956,138471,4 +62692,Juror,88922,1583011,16 +62693,,238436,100033,0 +62694,Girlfriend,392660,1481016,7 +62695,Mrs. Palmer,92298,186291,3 +62696,Eva,393407,54324,3 +62697,Grandpa Brown,31275,1031170,6 +62698,Uncle Jack Turner,8617,57251,17 +62699,Maxim,3513,27649,7 +62700,Alya,65839,143745,4 +62701,Tom,11196,41903,1 +62702,,346723,47834,2 +62703,Wolfgang Mozart,62116,1151445,3 +62704,Ball Guest (uncredited),121674,1878824,44 +62705,,293654,1096116,7 +62706,Charles Herron,153163,26029,12 +62707,Pietro,82806,27272,3 +62708,Dancer / Tenor,65787,38238,7 +62709,Elizabeth,196235,932076,2 +62710,Barbie,30402,35468,5 +62711,,361380,1532535,10 +62712,Rusty Ryan,163,287,1 +62713,Aimo Mäki,442752,1203021,18 +62714,Madame Carlotta (voice),77459,54292,5 +62715,Passenger Buying Maple Sugar,56154,34098,13 +62716,Cheyenne,139718,40207,9 +62717,Victor,32577,5004,9 +62718,Azzurra De Angelis,54309,124623,2 +62719,SEAL Lieutenant,193756,1283043,17 +62720,Police Lt. Frank Kafka,25551,14563,0 +62721,Dr. George,59296,1062,8 +62722,Bradley,309581,1140241,12 +62723,Torki,26873,96519,10 +62724,Joyce Manning,38269,98457,1 +62725,"Brumbaugh, Mrs. Gage's Housekeeper",179066,34268,10 +62726,Mr. Kepler,70772,97721,5 +62727,Simon,43692,1184042,4 +62728,Sonya Carson,22683,55314,1 +62729,Exotic Beauty,11358,71189,4 +62730,Steve Carlson,831,12355,4 +62731,Shopkeeper,30155,1086577,17 +62732,Starfire (voice),396330,113919,13 +62733,Bartender,9914,60423,18 +62734,Eleanor,103938,120756,7 +62735,Linda Curtis,41234,125846,3 +62736,Baggage Man,14589,141586,46 +62737,Gina Santana,26861,6200,3 +62738,"Jack Taggart, Jr.",11351,33052,12 +62739,Daniel,53404,118509,3 +62740,Amy Drexel,53864,13963,2 +62741,General Erich Ludendorff,297762,6413,3 +62742,Yang Luming / Rose,25074,44917,1 +62743,Cross,55846,63141,12 +62744,Himself,62741,1118004,5 +62745,Connie's Daughter,11321,74929,15 +62746,Reporter,47882,97981,10 +62747,Car-Hop at Drive-In Theatre (uncredited),15794,120216,21 +62748,Janet & Mariella,167810,1793179,22 +62749,Chlapec,16439,1191714,3 +62750,Shuffle / Rathe,20055,102741,5 +62751,Olmec (voice),424661,23680,2 +62752,Fritzi Haller,27034,13992,4 +62753,Henry Meyerwitz,55632,12122,8 +62754,Jessie Duncan,11058,11008,1 +62755,Benoit,374698,82420,2 +62756,Stef,252028,82422,4 +62757,,13506,1165713,14 +62758,Jan Onufry Zagloba,31273,32696,3 +62759,Roosa,60677,235901,3 +62760,Ema,371504,20699,11 +62761,Lieutenant Stanley Tarryton,43419,51310,3 +62762,Favorite of the Harem (uncredited),3059,108102,81 +62763,Sonny,39013,1163717,7 +62764,Alison Bromley,19901,103554,4 +62765,Himself,24792,93808,0 +62766,Dr. Sanders,45156,52760,9 +62767,Satoru,38010,226738,12 +62768,Officer Rivers,25551,2784,16 +62769,Lytia,239562,999320,7 +62770,Chino,9787,1983,8 +62771,Amazon Townsfolk,297762,1690518,37 +62772,Murli Prasad Sharma aka Munna Bhai,19625,85881,0 +62773,Jake Callahan,57684,102064,3 +62774,Walter Burns/Otto Fishbine,987,6837,1 +62775,Nico Robin,176983,77933,6 +62776,Bassists der Countryband,308174,1888493,29 +62777,Norton,55152,182081,9 +62778,Neighbor,120802,1818385,36 +62779,Boy,105077,59243,21 +62780,Pregnant Woman,123103,1049537,10 +62781,Man,153397,1386160,14 +62782,Mrs. Hepburn,2567,4432,15 +62783,Checker,25551,569304,8 +62784,Himself,63144,1624626,22 +62785,Phil the Till,173294,1788070,16 +62786,Pam Byrnes,693,10399,1 +62787,Joseph - Her son,95169,87480,1 +62788,Mrs. Gordon,53950,1235154,9 +62789,John Ballantine,59838,160974,7 +62790,Len Brenneman,228028,159386,6 +62791,Barbier de la Milice / Officer Milice Chrétienne,46738,1644492,16 +62792,J.J. Pierson,103260,2641,8 +62793,Archibald Stanley,181533,40009,26 +62794,Officer Alvarez,371446,1344345,8 +62795,Emile Galipeau,62363,70173,4 +62796,Felix Dietz,124115,90517,5 +62797,Jimmy Potts,53576,34745,1 +62798,Mülayim,123592,97272,0 +62799,,437253,1455549,6 +62800,Office Worker,130278,167253,2 +62801,Peter Knapp (Himself),78174,583259,1 +62802,Babylonian Soldier (uncredited),3059,76381,105 +62803,Morgan,8144,53953,5 +62804,,84823,1620093,9 +62805,Capt. Martisel,43419,95757,11 +62806,Claudy,8899,51325,1 +62807,Man 1,17111,1629440,11 +62808,Black Lightning (voice),22855,2390,4 +62809,Hymie Weisberger,72096,1139753,50 +62810,Gêmea 1,70666,1863893,27 +62811,Vitt the Guard,2001,1648164,42 +62812,Delilah,88518,936232,2 +62813,Die Ermittlerin,10458,36450,4 +62814,Tom Robinson Lee,63096,62881,7 +62815,,80435,123515,2 +62816,Señora con Pamela,80280,1464946,22 +62817,Çapaci Çocuk,37586,905368,5 +62818,Michelle,61528,37058,2 +62819,Tarkey,13954,12223,5 +62820,Dr. Willing / News Anchor (voice),123025,34521,20 +62821,Doak,245703,121718,11 +62822,Moeder Fleminckx,298396,1378358,9 +62823,Lt. Scott,56527,58793,7 +62824,Mrs. Goodman,25834,93490,7 +62825,Old Zeus,37958,5049,5 +62826,Dancing Trio,33541,1816047,38 +62827,Johan,52784,47068,0 +62828,Julia,333385,1302197,15 +62829,General Kuznovski,67696,152283,7 +62830,Joanna Wade,86970,586,6 +62831,Haldor,15440,1336937,9 +62832,Natsuki Nido (voice),364111,1325034,1 +62833,Jordi,417406,9312,4 +62834,Brook Wilder,100669,589,0 +62835,Neunter Geschworener,269165,32120,8 +62836,Devon,325189,1398114,13 +62837,Španac,259728,87013,2 +62838,Marty Bloom,7006,33348,3 +62839,Terrence,345925,53,1 +62840,Alice,96987,1011206,3 +62841,Alexis,68174,17606,2 +62842,Celeste Cooper,119639,87038,0 +62843,Officer John Ryan,1640,2876,2 +62844,Professor Wright,239018,155703,9 +62845,Haring Bagulbol,67174,225426,5 +62846,Ben,265019,1105673,5 +62847,Bank Manager,29952,1038484,6 +62848,Young David,8247,41883,7 +62849,Hank,40799,88979,4 +62850,Bit Part,18651,1086622,25 +62851,Bunny,28340,99067,1 +62852,Marie,266044,7152,7 +62853,Himself,108723,1446332,13 +62854,Theater Administrator,57781,237508,6 +62855,,85317,29839,5 +62856,Prisoner (uncredited),213681,1745102,60 +62857,Vishnu,157293,89154,0 +62858,Sandra,362579,1151375,2 +62859,Jim Seaver,69266,116778,7 +62860,Hoyt,127493,22132,9 +62861,Opera House Husband,96724,203575,47 +62862,Max Jordan,210940,100624,6 +62863,Alison Callaway,11096,27563,4 +62864,Thin Man,254188,1052211,11 +62865,Man Calling Benjie a Liar,186227,1072780,20 +62866,Roger Penderel,31592,19550,1 +62867,Ringmaster Mike,169298,211900,7 +62868,Claire Wiseman,356500,1540885,8 +62869,Andrew Simmons,242131,88672,8 +62870,Herself,58923,1658152,1 +62871,Yasmina Telaa,37645,118200,1 +62872,Shin Yoo-Hwa,387845,1241056,0 +62873,Bill Baughman,397717,3900,6 +62874,McKeever's Secretary (uncredited),47882,1422100,16 +62875,Lucy,20718,2140,0 +62876,Dr. Albert Hirsch,2503,3926,6 +62877,Atendimento da Agência,34588,1483776,27 +62878,Martin Carillo,312497,7013,23 +62879,Nathan,56527,1041562,6 +62880,Hannah (4 yrs. old),329865,1646447,9 +62881,Kendra,155341,1869470,3 +62882,,329216,28410,2 +62883,Hisako Makino,88529,1011719,5 +62884,Stokes,312497,1126405,9 +62885,Cissie Charlton,62441,207295,9 +62886,Hermano de María (uncredited),42502,1749582,32 +62887,Bagram Comms Guy,193756,168834,20 +62888,Arthur Gunns,161602,251,2 +62889,송연화,257296,138532,3 +62890,Kestrel,168676,1133011,5 +62891,Police Officer,90616,1740109,39 +62892,Dr. Christine Palmer,284052,53714,2 +62893,Caroline Wright,34151,14326,4 +62894,Jefferson Cody,1673,1009,0 +62895,Ben,305932,53200,3 +62896,Pop Adams,242332,13976,6 +62897,Autista,162056,9241,10 +62898,Theatre Audience Spectator,131360,1269815,19 +62899,Baby Marty (voice),10527,205171,21 +62900,Mark,41402,284628,7 +62901,,106623,233874,6 +62902,Ophir,17614,82099,2 +62903,"Mr. Tressitt, Salesman",290379,984873,13 +62904,Jan,10475,3127,1 +62905,Dr. Marafioti,242631,14979,10 +62906,Priya,49074,229117,1 +62907,Jordan Walker,32395,335,15 +62908,Jeweler,56558,30513,46 +62909,,99599,1559780,8 +62910,John Lennon,33511,27428,0 +62911,Evans,87060,1627139,25 +62912,Legg,49500,197482,12 +62913,Officer Osiris,296523,1691470,11 +62914,Hanife,300490,1380797,6 +62915,Phyl Moore,340101,18067,8 +62916,Police intendent,151068,144821,11 +62917,Dr. Sandra Fleming,28510,42610,5 +62918,Marie (child),118953,1164457,11 +62919,Harold,396152,12714,3 +62920,Isabel,300596,132999,10 +62921,West Indies Club Patron,14589,83397,56 +62922,Père d'Anina,180644,54190,5 +62923,Himself,345519,1479516,4 +62924,Justin,116463,1293656,11 +62925,Teacher,56558,108433,61 +62926,Twitchy (voice),57089,61373,7 +62927,Gruska,15661,15596,5 +62928,Stanley Hill,332411,8891,0 +62929,Le patron de l' Hôtel de la Biche,55370,18767,18 +62930,Agente D'Ambrosio,60014,129568,7 +62931,Willard Keefe - Daily World Night Editor (uncredited),3574,105810,16 +62932,Ray Lambert,43790,588885,4 +62933,Janice Waily,16171,53351,16 +62934,Springender Kollege,9677,58481,2 +62935,Henry Dumurrier,2993,24494,3 +62936,Tyn,36299,2694,2 +62937,(archive footage),33740,10802,41 +62938,William 'Pa' Jones,27629,98465,4 +62939,Emperor Toba,45987,134385,7 +62940,Maude Waverly,79466,16102,7 +62941,Male Nurse,428493,549519,5 +62942,College Principal,341895,1115746,9 +62943,Judge James K. Hardy,43846,29259,1 +62944,Hindu Anchorman,5172,1668469,47 +62945,Jerry,44119,226344,5 +62946,Taxi driver at traffic accident,43113,1483403,48 +62947,Eli,14505,43373,4 +62948,Mrs. Perry,328589,199523,18 +62949,Eadie,121003,82315,0 +62950,Selena,253235,1251573,3 +62951,Angela Carlotti,175334,100047,0 +62952,Jim Hanson,9963,20402,1 +62953,Hans Rudy Hofner,58903,14277,3 +62954,Peanut Vendor (uncredited),14615,1186116,19 +62955,,44238,1055116,2 +62956,Felix Reynolds,8842,17764,5 +62957,,248747,143623,7 +62958,Jenny Robinson,52485,99034,2 +62959,Monsieur Le Guestier,42599,134668,14 +62960,Maddie,6933,1785189,19 +62961,,53767,1416709,10 +62962,Derek,53999,1098562,3 +62963,Olga,31542,1757134,16 +62964,Cousin Alfred,80596,8239,40 +62965,Portagee Joe,79372,30005,9 +62966,Kuang Zhao,217923,1174458,12 +62967,Kay,24978,92948,14 +62968,Emilie,33704,93493,4 +62969,Queen Suhasinidevi,192675,13753,8 +62970,Telephone Girl (uncredited),80032,976019,14 +62971,Park Nam-Chul,407887,139493,7 +62972,Carr Gomm,263065,4195,3 +62973,Sarah Quinn,53882,123737,7 +62974,Lady Houston,16444,119345,10 +62975,Honorine,99579,59627,5 +62976,Walter Blunt,24442,21066,7 +62977,Lauren Huxley,423377,94424,7 +62978,John Carson,44463,2125,1 +62979,Marcello/Gianni Carboni,13437,5412,3 +62980,Chitarrista,56804,246688,21 +62981,Graham Claydon,17332,2441,5 +62982,Talia,83899,582722,13 +62983,Miss Boyle,75778,33399,5 +62984,Doctor,27450,1229847,10 +62985,Russian Dancer (uncredited),59962,1294968,38 +62986,Priest,3144,30757,7 +62987,Celine,212756,233731,8 +62988,Gerald Bender,55730,1756,4 +62989,Young Glenna,149509,84468,7 +62990,Onsen-Mark,43967,100125,11 +62991,Gojun Pye,347096,51965,2 +62992,William,33102,57387,3 +62993,,58074,132190,0 +62994,,371153,239260,1 +62995,,116857,17753,3 +62996,Giulia Pedina,76012,1019225,2 +62997,B.J. Caine,142216,146220,16 +62998,Gitti,85469,47785,10 +62999,Accountant #1,7220,30697,24 +63000,Constance Maitland,156360,34442,6 +63001,The Young Man (as 'Buster' Keaton),45807,8635,0 +63002,Matthew,27138,1206057,10 +63003,Nancy Makuhari,37789,112277,1 +63004,Additional Voices (voice) (as Dennis Pressey),15213,1441539,33 +63005,Repo Man,91679,53255,31 +63006,Aya,273404,1342478,11 +63007,Leonard Anderson,10916,19384,6 +63008,Mulher no Cinema,30127,1059564,10 +63009,Tribune Photographer,47882,133277,11 +63010,Hector,168259,53252,17 +63011,,31418,584046,7 +63012,Mrs. Kelly (as Clarissa Kaye),38978,124884,1 +63013,Alf,127812,2930,6 +63014,Col. Peter Stouff (uncredited),256962,1446866,58 +63015,שרלוט,43083,129240,4 +63016,Fito,20941,1723683,8 +63017,Ms Yoko,88922,1114839,10 +63018,Man #1,9953,60881,16 +63019,,228339,1262861,4 +63020,Stranger,125344,140423,1 +63021,Baron Viktor von Frankenstein,3164,2922,0 +63022,Woman on TV,47057,571251,16 +63023,Kindergarten Teacher,13436,1095121,23 +63024,Man,50838,3490,0 +63025,John Dale Price,46189,30554,4 +63026,Mr. Miggs the Lawyer,43889,32139,7 +63027,Herself,341176,457674,1 +63028,Cream,45098,1238990,1 +63029,Lawyer,147106,13263,9 +63030,Dr. Jeckyll / Mr. Hyde,37211,35243,4 +63031,Herself,22559,93216,1 +63032,Fujiwara Morio,35110,26756,2 +63033,Arviragus,240745,1660451,14 +63034,Major Barbara Undershaft,38770,13325,0 +63035,George Keyes,131475,54193,2 +63036,Young Man in Theatre,157898,1240099,50 +63037,Girl at the youth shelter,51141,550082,5 +63038,Party Photographer,209112,146413,79 +63039,,369019,1420175,8 +63040,Yutaro Garai,36063,74377,1 +63041,Fancine,396152,58793,4 +63042,Moe,30126,6777,0 +63043,Humphrey Bogart,11610,70013,3 +63044,Gregory,412209,1677244,10 +63045,William 'Willie' Canfield Jr.,25768,8635,0 +63046,Japanese Typhoon Sonar Tech,17911,1871196,21 +63047,Aluna Loira,70666,1863878,7 +63048,Veer,20364,85730,3 +63049,Tiger (voice),27653,6844,7 +63050,Selina Parsons,1984,1659771,6 +63051,Joe Yates,71503,16559,5 +63052,Page of Herodias,96951,1353814,7 +63053,Himself,9951,60818,26 +63054,Mary McPhillip,43896,93897,1 +63055,Tian ai,64156,74022,3 +63056,Raj Raghunath,39039,87561,3 +63057,Doris Long,371446,32798,1 +63058,Jacob Hamre,55612,67988,1 +63059,Io Speckler,17238,34596,3 +63060,Ramier,70119,1086615,6 +63061,Nancy,41301,204964,3 +63062,Female Barista,198062,1178367,6 +63063,"Sammy, Gregory's Assistant",267483,1315171,9 +63064,Selwyn Gaul,127521,1044952,1 +63065,,228339,1277479,9 +63066,Morgan Le Fay,19957,85344,3 +63067,Voice Cast,222935,41129,48 +63068,Mama Heffalump (voice),13682,4154,6 +63069,(voice),16171,79893,45 +63070,Derek,84892,85139,13 +63071,,85126,71347,14 +63072,Interviewee,81576,928923,2 +63073,Jadźka,8211,8718,3 +63074,,38034,1629999,12 +63075,Price Drop Swift,194101,83814,5 +63076,Kremer,79343,586603,6 +63077,Kiku,27031,91288,4 +63078,Man in Hostel,61528,8397,9 +63079,Vincent,74,53184,17 +63080,Enrique Serrano,140,1611,9 +63081,Sen. Charles Caldwell,62720,14452,4 +63082,Soldier on the Tube,340101,1457581,42 +63083,Di Radfield,35052,36594,1 +63084,Sydney White,10760,29220,0 +63085,Salesgirl,21481,87579,14 +63086,Bar Woman,71670,1739827,23 +63087,Lærerinde,21282,88146,11 +63088,Mme Torrelli,79372,87519,8 +63089,,227552,7907,3 +63090,Frank - Pilot #2,176867,90369,19 +63091,Carjack Witness (uncredited),1640,1263449,50 +63092,Florence Tildon,376501,1274513,1 +63093,Telegraph clerk,56558,33178,24 +63094,Japanese Guard (uncredited),127560,1163445,33 +63095,,47448,579469,6 +63096,Judy,74430,1821544,14 +63097,Danielle,356486,1522128,10 +63098,Lt. Boyle,211729,30928,4 +63099,Maurizio,195544,1253778,12 +63100,Major Kurt von Baum,54166,50004,3 +63101,Jane,10008,61946,15 +63102,Sabato,34935,552683,21 +63103,Steven Baker,17820,22091,6 +63104,,91715,100047,1 +63105,Personalchefen,53689,93138,9 +63106,Ajit,192623,964971,9 +63107,Undetermined Minor Role (uncredited) (unconfirmed),28044,3140,13 +63108,Cliff,139170,14816,1 +63109,"Smith, the Jailer",42837,14533,8 +63110,Francesca del Prà,43548,44434,0 +63111,Jacobus,257454,1229816,11 +63112,,222517,1699956,31 +63113,Cornelia,34469,1173034,9 +63114,Cibele,34588,112184,5 +63115,Captain Doug Rice,383140,60650,6 +63116,Jane,20411,86048,9 +63117,Cha Cha,21581,7007,5 +63118,Dorothea Lang,368342,1421622,12 +63119,Chess Player (uncredited),337339,1772605,44 +63120,Teenage Goat Boy,193756,944151,26 +63121,Rajaji,392271,1243976,7 +63122,Erasmus 'Ras' Leaf,42734,49357,4 +63123,Catherine Frazier,13972,11850,7 +63124,Lord Hector Bracondale,53231,116367,0 +63125,Ragazzo del boss,325690,1772836,8 +63126,Kingston Chronicle Journalist,206197,212403,16 +63127,Etta Candy,297762,11111,9 +63128,Dr. Su,122857,60875,9 +63129,Dean William Brant,86768,14976,3 +63130,Emma,254193,165934,7 +63131,Joku,45987,134388,10 +63132,Mrs. Angela Martin,194509,34509,7 +63133,J.J. Jones,3580,52886,1 +63134,,88953,1369281,22 +63135,Courtney,23048,70776,13 +63136,Drunk Girl,237584,1544804,16 +63137,Jocko de Paris,80264,856,0 +63138,Detective,49060,43649,10 +63139,Bailiff,186869,1641248,38 +63140,Han Jin-young,21442,87527,1 +63141,Vocalist,288281,1878326,15 +63142,Lt. Markowitz,63493,65423,6 +63143,Juror (uncredited),14615,63382,22 +63144,Nick,300690,1427684,6 +63145,Olive (4 years old),4960,17180,7 +63146,Mi-yeong,1416,1145852,2 +63147,Pete Flint,41028,93664,4 +63148,Little Boy Gordon,333385,1674312,20 +63149,Heo Eun-soo,67025,545756,1 +63150,Max Lopez,395763,17497,1 +63151,Cindy,773,17414,12 +63152,,195522,1175909,4 +63153,François Xavier Baudat,157787,84433,1 +63154,Jack,97630,6195,12 +63155,Delphine Grezel,1421,17029,2 +63156,Ferruccio,80374,50004,2 +63157,Himself,83587,995561,1 +63158,Pilot #1,176867,942165,29 +63159,Alice Carmel,52270,537701,7 +63160,Bewaker opvanghuis,58396,211213,7 +63161,Vikram Danesh,450530,72118,11 +63162,Sun Shangxiang,12289,77304,5 +63163,Ice Cream Man,22894,17005,4 +63164,Sabira,177155,4644,3 +63165,Program Hawker,28363,34119,11 +63166,Sally,27916,1090176,7 +63167,Leah Miller,13972,73931,6 +63168,Stewardess,413232,1020788,44 +63169,Pamela Devlin (as Karen Kondan),86603,143644,6 +63170,Vincent,281418,40481,7 +63171,Benjamin,79995,103351,7 +63172,Rusher of Din - Man in Elevator,36751,116118,15 +63173,Katrin,53256,147638,12 +63174,Nick,121006,33747,3 +63175,Percy,70436,60348,9 +63176,Agnes,331588,928905,6 +63177,Fred,20558,15831,0 +63178,,71336,1016992,7 +63179,Claire,32298,16858,4 +63180,General Starkey,13519,228,31 +63181,Sheriff Jack Haines,44545,31208,1 +63182,Sandy Shrimpkin/TSA Agent (voice),5559,1454420,17 +63183,"Buzzi, il geometra",77000,128752,10 +63184,Maria,316154,36549,5 +63185,N.C.O.,616,18061,17 +63186,Ana,121929,1098394,3 +63187,Hoffmann sen.,14804,96545,9 +63188,Friend of Mr. Victim,31821,72421,8 +63189,Train Conductor,31713,93628,9 +63190,Innkeeper,22999,120755,20 +63191,Sheriff Claude Stagg,90461,13555,2 +63192,Lanny,26809,33934,2 +63193,Magne,56937,225811,2 +63194,Diane Lefrançois,23857,130928,5 +63195,Narrator,21742,18794,0 +63196,Young Asian Dude,15092,1895595,33 +63197,Studentessa,73697,27390,6 +63198,Avó,428645,592366,4 +63199,L. C. Cheever,1950,3087,2 +63200,Mrs. Petion (uncredited),1976,1176930,29 +63201,,276846,1846761,17 +63202,Tom Morgan,83191,73947,15 +63203,Peeping Tom,25053,111639,10 +63204,Beam Man,40028,101869,17 +63205,Baker,26810,124985,11 +63206,Tourist with New York T-Shirt (voice),10527,62389,34 +63207,The Hulk,14611,60279,9 +63208,,74674,1445115,17 +63209,Col. Chung Joon - Hunter,10005,61859,16 +63210,Pinkie,43829,96258,18 +63211,Herbert - Age 5,109716,98443,13 +63212,Janice,214100,1071125,12 +63213,Mr. Roper,118760,863,0 +63214,Mark's Mother,84420,1039418,2 +63215,Mr. Cheng,88042,16183,9 +63216,,92989,143035,9 +63217,Brett,16197,529,0 +63218,Translator Kenny,354287,1010819,33 +63219,Attractive Woman #2,40807,204975,22 +63220,Ayla,236317,1255439,4 +63221,Claudius,48209,1193577,2 +63222,Ramabhadran,134474,82733,1 +63223,Kao Chien,108665,131728,2 +63224,Sam Gribley,37437,1216598,0 +63225,Grossman,85644,119485,3 +63226,Commissaire Delfeil,76200,48417,12 +63227,Collègue de Jean 2,34013,82927,5 +63228,Placide Smellekens,35016,113587,0 +63229,Monica,77958,8776,1 +63230,Morgan Heywood,24062,2094,5 +63231,Emily Atkins,413417,1719075,1 +63232,Jonesy,4931,41251,9 +63233,Himself,16800,938991,1 +63234,Old Man,22494,186275,7 +63235,Weemack Funthes,5516,84115,9 +63236,Hostage,250066,60877,14 +63237,Ratoff,77673,24464,6 +63238,Bellybutton,72105,15762,15 +63239,Mental Patient One,27916,1090166,15 +63240,Stef Vanneste,14019,76298,11 +63241,Deli Owner (uncredited),156700,1346404,51 +63242,Gangster at Funeral (uncredited),4982,115223,87 +63243,Jirô Horikoshi (voice),149870,77921,0 +63244,Henriette,122023,42279,5 +63245,Il prete,107052,45983,15 +63246,Air Traffic Controller,82,1218133,16 +63247,Casino Manager,384021,1364494,7 +63248,Joanna Wallace,5767,1932,0 +63249,Suzie,9785,59244,14 +63250,Himself,13516,78299,25 +63251,Parthenon Janitor,32657,55788,62 +63252,Dutch Seymour,3081,2177,1 +63253,Young Witch,225728,1544737,14 +63254,Bret Barrett,85602,52903,9 +63255,Olaf (voice),326359,54415,4 +63256,Marc Fury formerly Marcus Furioni,65282,30290,0 +63257,Hunky Hiker,293970,1129417,11 +63258,Kitty,26182,129548,9 +63259,Myeong-ok,387886,1336527,3 +63260,Subject 14,291866,153926,8 +63261,Lincoln,17082,109434,2 +63262,Bhima Goon,102632,1031514,7 +63263,Erica Olsen,118150,20118,2 +63264,Banquet Attendee (uncredited),365942,1794830,52 +63265,Jessica,28026,299397,8 +63266,Wanda Maximoff / Scarlet Witch,99861,550843,10 +63267,Moose,243683,54503,6 +63268,Van Man,24469,92684,18 +63269,Ubaldina,68202,56732,12 +63270,Claudia Desfeuilles,286512,6548,2 +63271,Mémé Morel,26152,146498,22 +63272,Kyle (Dixie) Canning,48836,141181,2 +63273,DJ,81010,74539,2 +63274,Wallace,35129,46612,10 +63275,Jack V. Merrick Sr.,77964,8841,4 +63276,Buck Weston,9981,3087,1 +63277,Petliura,85715,1438239,5 +63278,Roxy,71120,1154461,6 +63279,Natalie Jones,331313,90633,3 +63280,Simon,171213,1153637,9 +63281,Father Malone,75162,12726,4 +63282,,44716,1807473,34 +63283,Mary Ennarino (voice),324251,1599899,1 +63284,Eva,80080,588763,0 +63285,,320453,1024393,10 +63286,Rick Parker,34729,30697,2 +63287,Nick Anderson,8277,1223726,8 +63288,Erwin,11346,697,2 +63289,Andy,294652,1485597,11 +63290,Stu,33592,56122,9 +63291,Empleado fábrica (uncredited),42502,1121999,17 +63292,,36212,551502,8 +63293,Eleanor,55725,452,8 +63294,Aeysha,15261,78034,5 +63295,David Reighton,180759,1241030,0 +63296,Princesse Armelle,32390,62531,0 +63297,Doctor,43829,30017,14 +63298,Pindar,340275,1531595,28 +63299,Jennifer,49522,55398,1 +63300,Little Mean Girl,376660,1378741,15 +63301,Frank Dyson,15044,7025,1 +63302,Edward,46758,1605320,6 +63303,Julie Wells,37935,39117,0 +63304,Qiuya,362682,1519029,3 +63305,Savina,1481,65010,1 +63306,Talk Show Host / Radio DJ (voice),26293,95043,7 +63307,Tara Woodley,27739,98872,4 +63308,Shanti Patel,39839,6498,3 +63309,Un testimone,103218,120156,13 +63310,Trudi,18238,141535,8 +63311,Il pescatore verde (voice),136619,237336,5 +63312,Sita als Kind,167424,1822713,31 +63313,Man from Timber,255160,1898245,32 +63314,Justin Fisher,32526,52647,2 +63315,Officer DeGepse,13534,53256,3 +63316,Brad,354859,51991,28 +63317,Muchacho del triciclo,86126,1306116,5 +63318,Jean Doulean,76198,15397,0 +63319,Young Macao Park,124157,1256497,11 +63320,Michael Martens,8332,7805,0 +63321,Bull,5915,49832,16 +63322,Herself,366696,1753499,24 +63323,Talbot Breslin,241574,11171,6 +63324,Kevin Harris,44943,31133,6 +63325,Sipra,7234,52133,13 +63326,Elyse Steinberg,44593,7906,5 +63327,Saddle,387957,125128,9 +63328,Saudi Delegate,435,6072,11 +63329,Jonatan,2734,27632,4 +63330,Miguel,184345,86498,3 +63331,Additional Voices (voice),82703,84494,42 +63332,Lou McDermott,86236,40003,6 +63333,Sky,32654,109507,9 +63334,Carabiniere,38327,1525525,8 +63335,Sandy Lake,44895,56824,0 +63336,Thomas Caffey,14782,52646,2 +63337,Principal Dimly,14123,10127,9 +63338,Raviez,12449,130450,8 +63339,Momme Bief,73775,7817,0 +63340,Han,86703,211900,3 +63341,Jimmy,43923,20748,22 +63342,Lina Mayfleet,13600,36592,0 +63343,Miner at Colliery,28421,120458,32 +63344,,440777,75924,23 +63345,Caroline,121895,15200,2 +63346,Brandt,68721,121953,8 +63347,General Tilney,18093,15498,11 +63348,Committeeman,89086,1422863,32 +63349,Matt,9568,58043,2 +63350,,84420,1039425,10 +63351,DJ,168259,1880150,37 +63352,Katie Farrell,308269,559741,4 +63353,Ruth,13551,54782,14 +63354,Aunt Laura Stokley,242631,30273,4 +63355,Dascalu,374475,1163608,8 +63356,Elisa,29338,103528,0 +63357,Tolik,97672,235097,0 +63358,Charlie,28682,30901,12 +63359,Ethan,123109,980412,7 +63360,Vicente,53739,16868,7 +63361,Tye,47212,192589,3 +63362,Matilda Ounce Hemingway,43903,34746,3 +63363,Bert,88012,109200,5 +63364,Perry the Platypus (voice),71689,23680,0 +63365,Valerie,29416,102974,2 +63366,Young Indian Runner,25598,33299,12 +63367,Malty Bill,28425,88906,16 +63368,,74192,538139,4 +63369,Laura Enzmann,312497,1213299,18 +63370,Ronnie,54779,151114,5 +63371,Yuchi Zhenjin,217923,936431,2 +63372,Sgt. Ned Matthews,84425,11163,1 +63373,George,9914,60414,5 +63374,,32694,67773,30 +63375,Reporter,10011,62006,13 +63376,Tommi Feldberg,75969,1375579,28 +63377,Goss,294690,1367222,3 +63378,Chicken Little (voice),9982,5367,0 +63379,Fire Maiden,31280,1358864,9 +63380,Mami,12540,1118081,7 +63381,Joshua Brackett,49815,4316,4 +63382,Young Kissing Man,10710,976231,26 +63383,Kelly,84352,930765,19 +63384,Giulietta,73872,35102,0 +63385,Becka Crane,34231,128952,6 +63386,Geethanjali,34763,113809,2 +63387,TV Commentator,7942,11115,29 +63388,Hassan Ali,173294,1563144,8 +63389,Park Thug,333385,1091423,16 +63390,Susie,340584,1516081,6 +63391,Charlie,322518,1431607,10 +63392,Transgender Prostitute,310135,1716341,32 +63393,Himself,47011,8452,1 +63394,,408550,1658129,1 +63395,Kassia Lancaster,121401,79924,1 +63396,Gabriel 'Gabe' Moreno,184328,89750,2 +63397,Bananas,145244,72662,5 +63398,Aris Jones,294254,1171570,10 +63399,Kenneth,11196,12795,2 +63400,Flannigan,31835,125842,10 +63401,Chunks,204255,1221076,1 +63402,Josh,118957,109438,3 +63403,Sandrine,85429,932035,6 +63404,Tommy Sheehan (as Vincent Edwards),75752,3337,4 +63405,Young Ryoko,870,13257,8 +63406,Annie,76207,24688,6 +63407,Doug,359870,1220148,11 +63408,"Signor Murge, padre di Gaby e Anna",120972,1016043,5 +63409,Countess Sandor,53851,108986,2 +63410,Gaby Nowicki,17745,57236,2 +63411,Police Negotiator,14923,66580,67 +63412,Chef,268920,1604991,94 +63413,,27276,551827,13 +63414,Weston,81475,219634,3 +63415,Filotto,52914,240665,9 +63416,Black Baby,29542,138323,13 +63417,Felder,7837,12978,3 +63418,Professor Knight (voice),62211,658,10 +63419,Rafe Sanders,176670,116845,7 +63420,Harry,43503,105804,7 +63421,Mother,2516,25644,12 +63422,Susan Covington,215999,53515,1 +63423,Melvyn,13802,7027,21 +63424,Lynn,51442,89664,3 +63425,Scott,220500,1205412,4 +63426,Computer Geek,55846,1195067,23 +63427,Roos,129518,1089975,9 +63428,,295273,1002639,7 +63429,Gus Klein,2071,382,1 +63430,Isabella,35032,1508010,8 +63431,,88012,184915,14 +63432,Amy Lind,76465,8725,1 +63433,Sam's Dad,11247,11089,11 +63434,Rémi,52999,7693,3 +63435,Akthul Majood,108726,1044838,3 +63436,Man in Pub,1116,1896874,40 +63437,Pastor,263115,1794822,50 +63438,Special appearance,8079,53977,6 +63439,Joey the Toothpick,72096,1026656,47 +63440,Sonya,294254,968006,12 +63441,Kodama Makato,45441,74862,2 +63442,Margueritte,39413,24462,2 +63443,Jack,384737,19184,3 +63444,Dr. Rusu,2009,85227,8 +63445,George Fung,18899,20519,4 +63446,Azad,175331,1028803,1 +63447,Polly Potter,20625,144062,5 +63448,Laxmi,38022,85672,4 +63449,"Un client à ""L'ange gardien"" (uncredited)",68822,1505996,34 +63450,Man Who Lost His Wife,10834,130913,4 +63451,Miss Calhoun,267793,58045,11 +63452,Corpsman Jibril Adukwu,44943,208096,10 +63453,Drunk Woman,323675,1769805,41 +63454,Kazuomi Hirasawa,35435,1248373,4 +63455,,85836,111640,7 +63456,Policeman,198890,1031166,8 +63457,Tom Frej,16014,71154,9 +63458,Olympic Club Member (uncredited),43522,148419,19 +63459,Jackson,263115,42200,42 +63460,Reunion Classmate,11172,1202712,49 +63461,Ice Cream Parlor Waitress,36612,89528,5 +63462,Donna Rosaria,173847,269705,4 +63463,Dave,38317,105648,11 +63464,Colonel,29212,103241,7 +63465,TV Journalist,13802,1327788,15 +63466,Toñín,411638,1796765,8 +63467,Nataša,371459,592045,4 +63468,Dr. David Benway,16921,418,0 +63469,Nurse Miettinen,20164,148294,12 +63470,Cho Jae-Il,83013,90473,6 +63471,Muhtar,74879,87224,5 +63472,Rajaratnam,353533,589654,6 +63473,Miss Curtis: Staff of St. Swithin's,83015,1301797,23 +63474,Comisario Pulido,26864,78882,4 +63475,The Stranger,191068,1171584,4 +63476,Harry 'Doc' O'Neal,118444,78937,4 +63477,Charlotte,288980,1579773,13 +63478,Gauge,243683,1397772,17 +63479,Frank,112973,162930,2 +63480,Lawton's Secretary,111582,115367,17 +63481,Mary,86658,1108730,1 +63482,,391778,85969,4 +63483,Andrew Rodanthe,49354,18647,2 +63484,,134215,1112967,12 +63485,Carl Schuster,217412,6093,1 +63486,Eloise / Princess Eloise / Darlene,18698,83469,3 +63487,Duke,10425,2234,4 +63488,Burlington Potluck Guest,356752,1841547,70 +63489,Toilet Guy,88005,1644655,27 +63490,King Kong Kaarden,237171,2568,2 +63491,Andrea 'Andi' Carson,71885,81395,0 +63492,Terry Stringer,64167,81029,11 +63493,Paramedic #3,295723,1418259,29 +63494,Big Mike,340275,1531586,14 +63495,Corey,23515,1302468,8 +63496,Walter,222858,1904,0 +63497,Susy Hendrix,11206,1932,0 +63498,Helen North,27983,40174,0 +63499,Mike,23515,1072143,4 +63500,Elisabeth,171213,210196,7 +63501,Maid,12811,1827457,16 +63502,Raymond Morgan,38150,25657,9 +63503,Himself,83995,585776,17 +63504,Hip Hop Group 'DJ',23367,95392,40 +63505,Father Jacoby,17577,101491,12 +63506,,11391,566734,13 +63507,In Alley / At Dance (uncredited),42553,1488483,19 +63508,John the Doorman,300667,1790349,12 +63509,The Phantom of the Opera (voice),159824,16165,19 +63510,Geruth,48791,15735,1 +63511,Anthony Boon,128795,75720,3 +63512,Himself - Drummer,18094,103209,1 +63513,Jess,65055,1334091,9 +63514,Cati,327383,592476,4 +63515,Himself,366696,1510306,1 +63516,Chacon,29272,1117987,8 +63517,Claudio,49850,236080,6 +63518,Desh Bouksani,2503,29406,11 +63519,Gulli's Father,127913,238163,3 +63520,Actor in film,403431,132856,15 +63521,Ahkmenrah,181533,17838,1 +63522,Mrs. Dudley Frost,88558,90644,5 +63523,Angela's Brother,274479,1774100,43 +63524,Walter Gordon - aka Goofy (uncredited),14615,97398,45 +63525,Ruth Hart (uncredited),151086,1797362,7 +63526,Momo,204768,234022,1 +63527,Hans Remminger,54548,150897,3 +63528,Jerome,13763,110530,5 +63529,Tom Butler,128216,1176263,26 +63530,Sir Locksley,11839,50303,7 +63531,Lisa Russell,177566,1157258,3 +63532,Balery,30680,29221,0 +63533,Rachel Emory,28851,102182,1 +63534,Chloe Marx,45013,71815,8 +63535,Sir Carew,3016,29580,2 +63536,Frenchman (uncredited),32552,1594339,42 +63537,Michael Schleisser,153102,74627,4 +63538,Granger,207641,941721,14 +63539,Pilot,67822,558312,5 +63540,Lupita,45191,1549048,2 +63541,Captain,30126,30416,10 +63542,Stephen Dayan,299780,19875,5 +63543,Male Porn Star,15092,132093,21 +63544,,303966,630988,8 +63545,School Teacher (uncredited),302699,1360008,19 +63546,Spec. Cohen (Doc),41497,126723,2 +63547,Solange,170677,115573,0 +63548,Isobel Kimble Grayson,20644,98574,2 +63549,Padraic Pearse,173456,22603,7 +63550,Frantic Man with Injured Cat,34650,95315,8 +63551,Referee,921,15661,20 +63552,Konserzhka,35428,86668,6 +63553,Kelly,50318,1411820,31 +63554,Olivia,119409,234644,7 +63555,Rosalind,54406,39658,8 +63556,accompagnatore del vescovo,155011,543583,8 +63557,Pascal,329805,1171437,7 +63558,Peggy Etinger,38749,15886,2 +63559,,104343,1697249,7 +63560,Zhuang Meng Lan,46124,57723,3 +63561,Ben,389630,1814288,8 +63562,Steve Parr,9815,1124,8 +63563,Edin,94336,1001691,8 +63564,King Miraz,2454,2166,5 +63565,Fenton,362057,18271,6 +63566,Member of Audience,177902,1375431,19 +63567,Frankie Stein (voice),227257,191855,14 +63568,Viuda Cementerio,59117,46422,2 +63569,Celal Yildiz,308174,5202,0 +63570,Mary Lane,20521,40462,0 +63571,Ashley,71668,142205,17 +63572,Penelope,227348,1282221,10 +63573,Man in Bar,356752,1841509,30 +63574,Levi,21554,8656,5 +63575,Abe's Friend,43806,117036,58 +63576,Lars Peterson,90406,83810,4 +63577,Freddie,22020,176348,10 +63578,Dean,250332,121411,10 +63579,Dorothy Washington,13075,96223,1 +63580,Bianca,355890,13446,2 +63581,Pedestrian,31899,1422100,16 +63582,Student,8383,1865,6 +63583,Roberts,220674,21343,0 +63584,Richie,36968,46899,3 +63585,Jeanne,16374,23302,1 +63586,l'avocat,35032,5832,4 +63587,German Machine Gunner,150712,414239,43 +63588,Jillu,341420,1328508,7 +63589,Officer Barnes,27414,1107848,20 +63590,"Narrator, Bulleteer",145963,560296,3 +63591,Pedro (voice),105965,8874,9 +63592,Dr. Henderson,280092,27030,10 +63593,Herself - Roastee,334461,14670,1 +63594,Costra,27503,98000,5 +63595,Detective at Party,4982,79419,41 +63596,Rival Skater #2,20210,1779986,17 +63597,Science Team Member #2,329865,1646461,38 +63598,Laura Merriwether,339527,6407,4 +63599,Le surveillant du pensionnat,332794,1860430,30 +63600,Amy,13991,1560897,7 +63601,Aey,13544,929400,2 +63602,Padre di Sebastiano,356296,134538,8 +63603,Porter,193893,19655,4 +63604,White Robe,23739,7505,3 +63605,,165534,101492,1 +63606,Beata,94527,55972,1 +63607,Frederico,89560,85016,5 +63608,Tumi (voice),16873,198855,27 +63609,Jake,35656,79494,3 +63610,Stefan Jr.,946,14363,8 +63611,Airplane Passenger,335970,1438305,77 +63612,Clark Jackwell,10274,64676,15 +63613,Viscount de Montagne,92796,135168,7 +63614,Flight Attendant,127585,1251615,59 +63615,,24403,91582,4 +63616,Gary the Cameraman,68721,115974,50 +63617,Lynn,228331,3237,2 +63618,Waldo,40041,105996,11 +63619,Zia Ada,59040,1871291,14 +63620,Polismannen / The Police Man,158900,567106,3 +63621,Vera,31131,1389088,9 +63622,Jeannot,10484,24763,7 +63623,Detective Krauss,65650,18999,6 +63624,Mounted Police chief,13855,572227,8 +63625,Travis,78461,458286,1 +63626,Le passeur au volant,15712,948741,20 +63627,Wendy the Realtor,325133,448309,22 +63628,Hercules Bell,257831,585958,9 +63629,Claudia,49853,1141591,4 +63630,Dad,52850,25136,1 +63631,Meghan Eastman,39824,26009,0 +63632,Gen. Hackworth,51434,5048,3 +63633,Lumpy,121154,20999,7 +63634,Zombie,290999,1361564,13 +63635,Party Goer,85956,1046212,1 +63636,,324017,1341,1 +63637,Ralph,142946,6451,6 +63638,Taas,266333,172103,3 +63639,Child,2965,29076,9 +63640,Chicago Reporter (uncredited),28000,83991,49 +63641,Le maître de cérémonie,332794,49947,15 +63642,Nabila,38021,317776,6 +63643,Tommy,76543,63362,14 +63644,Reporter,43821,34094,51 +63645,Priest,46695,1185414,4 +63646,Detective Don Racine,158750,3799,3 +63647,Rob,329440,111801,3 +63648,Beau Brummell,26808,17648,0 +63649,Samurai Ensemble,616,1593821,38 +63650,Yves Cloquet,2742,6104,3 +63651,Client with Special Needs,46930,137818,6 +63652,Betty Coulter,343972,177453,4 +63653,Mrs. Ezra Miller,4703,9599,2 +63654,Mowgli (adult) (voice),59803,1862801,14 +63655,Tiberio,82481,24708,31 +63656,Elmer Almayer,87349,6599,2 +63657,Himself,199575,1438815,10 +63658,Quincy,82519,19392,6 +63659,Steven Jalonik,79521,8632,3 +63660,Himself - Roaster,296192,1224942,11 +63661,Meghan Miles,187596,9281,0 +63662,Indu,14705,85666,6 +63663,Tall Soldier,150712,30530,9 +63664,"Charmian, Attendant to the Queen",71266,562265,3 +63665,Peter Rottentail,298228,98868,3 +63666,Marie Greene,52867,83442,2 +63667,Elle,55836,24590,0 +63668,Herself,6575,14990,22 +63669,Travis Gilmore,24059,3201,4 +63670,Superviser,122271,1368909,12 +63671,Dancer,4982,1363088,71 +63672,Charles Murdock,29113,24826,5 +63673,Bill Cromwell,10694,220529,17 +63674,Himself,19610,65553,7 +63675,Linda,24647,6298,12 +63676,Brad,273610,1347281,8 +63677,Desmond,13058,971049,13 +63678,Himself,63144,1624618,13 +63679,Hareton,36597,115683,8 +63680,Himself,245394,28856,5 +63681,Lisa,69165,1549471,9 +63682,Old Priest,31390,1061122,6 +63683,Mimi Marquez,1833,5916,2 +63684,Chinook Pilot,293167,1840495,24 +63685,Minnie,90800,97046,2 +63686,Amanda,308269,1447882,1 +63687,Seemann,94803,29129,5 +63688,Nurse,2976,29214,37 +63689,Müller,12206,28069,15 +63690,Metropolis Cop,209112,1691982,70 +63691,Court Client,64450,1370950,24 +63692,Stalag Commander,294690,1390499,8 +63693,Jagtap,14751,85451,1 +63694,Newsboy,108222,1472510,31 +63695,Hok-A,37451,130942,8 +63696,Sarah,84333,51988,0 +63697,Gabrielle 'X',18755,83533,3 +63698,Lee & Lyn Wilde,80941,1301102,17 +63699,Girl at Concert,11172,1385445,45 +63700,Ali-Lehtonen,293085,1146054,5 +63701,,378503,1142290,2 +63702,Get Drunk,51036,1879475,28 +63703,François Gensac,33336,32100,3 +63704,Sumner Williams,302042,943440,10 +63705,Turkish Worker (uncredited),297762,1743363,62 +63706,Himself,103215,45052,0 +63707,Alana Roach,139455,1116281,6 +63708,Senator Richard Ketteridge,45679,87370,12 +63709,Cardinale Bonifacio,33495,25819,15 +63710,Barbie (voice),44874,568560,0 +63711,"Nagy Mária, szocialista",86732,1090507,3 +63712,Habibie's Mother,172705,1155282,3 +63713,Apple the Doll,47670,70772,2 +63714,Zeno,96106,980378,0 +63715,,376716,932353,9 +63716,Connie Earle,42298,120712,2 +63717,Club Goer,77930,1784662,71 +63718,Lavinia - Reenactment Scene,206197,1506486,23 +63719,Kimberly,226792,205982,3 +63720,María de Castro,13495,17006,5 +63721,,63899,932879,6 +63722,Tien Yeng Chi,19528,228614,11 +63723,Jeff,345054,37206,6 +63724,The Snow Creature,41030,12284,4 +63725,Himself,23319,26715,5 +63726,Mike,86131,27112,5 +63727,Susanna Drake Shawnessy,65488,3635,0 +63728,Tony Fiorello,167073,1041440,2 +63729,Stable Swipe,118889,130487,25 +63730,Seaman 1st Class Urban (uncredited),10178,40380,31 +63731,Mark Pattison,79833,36666,8 +63732,Father of Butter Pants (voice),10192,167662,15 +63733,Ghost of Christmas Past,229056,1230014,4 +63734,Claire,22007,96790,2 +63735,Demitrio Mardini,21769,552339,6 +63736,Metropolis Citizen,209112,1682540,55 +63737,,313676,1040475,2 +63738,Ron,70351,1212003,6 +63739,Bill Anderson,84892,22226,3 +63740,Lizzie,8981,1246,1 +63741,Debbie,30492,2956,10 +63742,Herself,410718,1702125,27 +63743,Taxi Driver #2 (uncredited),92848,17759,12 +63744,porttivahti Räikkönen,55756,88856,11 +63745,Mathilde Freud,48231,1089491,28 +63746,Bikini Model (uncredited),323675,1737033,51 +63747,Guard,6973,1094319,35 +63748,Girl #2,46760,937382,1 +63749,Hollywood Abby (voice),9982,1077828,22 +63750,Gas Station Attendant,74430,16172,8 +63751,Vincent,6935,51499,7 +63752,Don Juan,237796,24683,0 +63753,Undertaker,62143,153111,33 +63754,Mrs. Roberta Carter,111017,13992,3 +63755,Rumrunner (uncredited),51303,1086622,6 +63756,Policeman (uncredited),61151,103499,14 +63757,Townsman,147829,88733,48 +63758,Ugo Cavara,45990,128020,2 +63759,,342011,940934,5 +63760,Pinkerton Detective Lester,96133,1019917,6 +63761,Kiki,293863,58370,5 +63762,Chief Petty Officer (uncredited),43497,120070,21 +63763,Herself,83587,1137455,5 +63764,Himself,26465,19767,4 +63765,Mick Croyston,228294,59117,2 +63766,Jim,33134,1128157,4 +63767,College Student,365942,1794828,63 +63768,Nurse,2001,176695,33 +63769,Ralph Ford,47739,2646,7 +63770,Trettorio,17238,39151,10 +63771,Lt. Pat Kasnick,199373,1096595,15 +63772,Vadim,226672,1276626,8 +63773,,79781,1263719,4 +63774,Tom,24625,3051,2 +63775,Pvt. O'Meara (archive footage),262988,522,11 +63776,Erik Sandström,80059,67003,4 +63777,(voice),116711,1178792,17 +63778,Nice Nurse,55347,66664,24 +63779,,67177,3508,1 +63780,Pratt,1726,1209418,24 +63781,Mitsukuni Mito,163870,76931,3 +63782,Stage Manager,41206,125809,10 +63783,Mrs. Baker,94725,1295113,9 +63784,Martha,256962,45386,25 +63785,Police Inspector at Sophie's Death (uncredited),56135,97284,14 +63786,Constable,206390,1026173,2 +63787,Tony,33495,120129,1 +63788,Rektorin,14804,1150073,16 +63789,Jonathan Flynn,78571,380,0 +63790,British Soldier,1116,1896898,77 +63791,Jerry Yarbro,17144,24360,5 +63792,Clergyman,62143,16275,36 +63793,Young Grat,183825,1198371,26 +63794,Bani,113038,1056206,1 +63795,Johnny Trey,206284,11153,1 +63796,,10484,1676560,32 +63797,Delane's Secretary,109716,3368,26 +63798,Lerdo de Tajada,78318,90074,19 +63799,Snake Wolf,5646,44535,3 +63800,Andrei Dudajev,141267,1485932,9 +63801,Lucius Hunt,6947,73421,1 +63802,Ninore,150223,1870829,17 +63803,,420648,1693390,8 +63804,Hideo,108634,65511,8 +63805,Father in Diner,14552,85954,6 +63806,Himself,307931,1393839,4 +63807,"Antonio 'Tony', the Hospital Chef",153165,115770,16 +63808,Jai's Mother,14467,95506,9 +63809,Sunderland,112284,4343,8 +63810,"Patricia Amoretti, la fille aînée",84875,9742,2 +63811,State Trooper,393172,156605,6 +63812,Arthur Dent,64353,37891,1 +63813,Yavuz,334394,107992,1 +63814,Crystal Fairy,157409,12930,1 +63815,Bronwyn,19957,1673502,12 +63816,Johnny Saxby,428493,1206334,1 +63817,Perepelkin,31162,1190182,2 +63818,Christian Father,198277,1423807,12 +63819,,273578,1330506,1 +63820,Murder Lounge Girl,284564,1836956,30 +63821,Capt. Standish,38978,1196025,18 +63822,Lilly O'Connor,229328,1060671,0 +63823,Commander Pierce,83666,1037,8 +63824,Woof the Hyena-Man and Ace the Bat-Hound,16234,15831,13 +63825,Mrs. McPherson,227717,20369,3 +63826,Ben,324150,1424111,2 +63827,Wilbur Turnblad,2976,4690,2 +63828,Mr. Deshee,95015,126671,4 +63829,Cat Warrior,250638,62424,3 +63830,Pay Orderly,153163,33178,20 +63831,Jim Permatteo,11908,18262,8 +63832,Jama Farah,333352,1261694,4 +63833,Nico,164366,28896,3 +63834,Sir Thomas Dudley,104720,92908,10 +63835,Girl,79526,104632,2 +63836,Oriental #2,32489,23915,6 +63837,Cesar Mario,9292,39780,7 +63838,Tech-Stylz Dancer,243683,1398203,90 +63839,Papa,7547,52883,8 +63840,L'infirmière,445,6022,10 +63841,Titina,58074,225483,2 +63842,Spanish Envoy,43252,4355,11 +63843,"Gorilla Grodd, Wildcat",460135,31531,10 +63844,Ryo-Ohki,34935,112140,6 +63845,Marsha Gilbert,15671,29880,8 +63846,Himself,315850,96010,10 +63847,Tomppa,101838,1029078,6 +63848,Soweto,71859,1473442,8 +63849,Elmer J. Butts,53576,8635,0 +63850,Mme Ortiz,76200,236557,16 +63851,Voisin,12807,73742,3 +63852,Ship Computer / Rigby's Mom,354857,58114,8 +63853,,145220,85176,63 +63854,Mario Luigi,269173,1388919,24 +63855,Motormouth Maybelle,2976,15758,4 +63856,Himself,13516,203696,3 +63857,Official Ramirez,199415,172187,15 +63858,Mr. Durga,115109,1021756,23 +63859,,148615,124131,14 +63860,Jeremy,360284,86653,5 +63861,Christian Longo,245706,17051,1 +63862,Himself,253337,1362424,30 +63863,British Desk Attendant,102382,1657458,31 +63864,Parole Officer,216153,1375707,13 +63865,Brad,401060,222129,1 +63866,Dave Kalama,291,4325,3 +63867,Elbe Montgomery,33557,110877,5 +63868,Delmas,13507,239118,8 +63869,Sheila,17956,1170984,19 +63870,General Hux,140607,93210,9 +63871,Tron's Ex,53358,1384212,7 +63872,Martin Read,37686,222122,6 +63873,Pentagon General Fields,246655,43263,56 +63874,Simon Roche,60623,24816,2 +63875,Andrea Todd,371181,75821,4 +63876,Dennis,11547,1348583,12 +63877,,65713,543945,0 +63878,Victor Creed / Sabretooth,2080,23626,1 +63879,Daihachi Kachime,2487,931390,15 +63880,Alain Bashung,8281,283367,7 +63881,Keiichi,180299,72932,12 +63882,Police Sergeant Jerry Dunn,118134,141029,10 +63883,Bride in Wedding Group,80596,106628,31 +63884,Crystal (voice),57737,74369,5 +63885,Doorman,43855,124875,21 +63886,Patrol-Car Cop at Italian Restaurant,149793,30217,24 +63887,Michel,343702,21769,1 +63888,Mclean,66113,152461,8 +63889,Brad,159638,109641,1 +63890,Seok,169022,531736,1 +63891,la servante de l'auberge,79892,14247,10 +63892,Pageant Assistant Pam,773,25884,22 +63893,Saadi's mother,341007,1706338,7 +63894,Bertrand Pitt,41277,543146,34 +63895,,378503,1754822,7 +63896,Rita,54514,4793,0 +63897,Clark Kent / Superman,209112,73968,1 +63898,Editor Wanting Contract Voided,109716,940628,58 +63899,Kristi,74447,143591,2 +63900,Nick,270650,64202,9 +63901,Dave Fenner,79645,16035,3 +63902,Miss Taylor,42669,74874,8 +63903,Vinnie,135686,204351,7 +63904,Ann Mason,33592,19958,6 +63905,SCU Lt. Dan Turpin (voice),17074,46946,12 +63906,Pretty Girl,51999,544188,8 +63907,Dave,17046,42604,3 +63908,Tsuyoshi Tanaka,51549,33517,6 +63909,Man with Woman at Race Track,118889,34508,38 +63910,L'infirmier spa,21435,32648,7 +63911,Darryl,139998,171766,1 +63912,Détective Lieutenant Neely,77964,34747,9 +63913,,369373,1584569,6 +63914,Winston,294254,1340889,24 +63915,Niels Gaihede,128900,571497,16 +63916,Cal,340190,1467350,2 +63917,Garwood B. Jones,65488,8229,5 +63918,Dr. Hugo Wagner,43228,83913,10 +63919,Billy Hytner,67216,49326,1 +63920,Chief of Lohan with two swords,66756,1743496,10 +63921,Lisette Balldam,266044,1795952,21 +63922,General on horse [Cameo],413198,62410,4 +63923,Ritchie Blackmore,26796,1246784,3 +63924,Trish,69668,967376,5 +63925,Buddy Holly,6575,51391,27 +63926,Lonnie Brewster,15213,2178,24 +63927,Lucy Zuckerowa,511,7109,3 +63928,Car-Vex,49521,1272968,20 +63929,Marlene Chambers,257574,27446,1 +63930,Diana Ashmore,76714,20141,0 +63931,,305147,543724,4 +63932,Wesley Pendergass,12787,4690,1 +63933,Jane,69165,102335,7 +63934,"Laashi, Maham's Wife",402672,110708,12 +63935,Ink,171337,53,4 +63936,Anna Costell,278706,1334331,5 +63937,Doorman,149793,27164,12 +63938,Nicole,411741,1181253,7 +63939,Matt,10063,53116,2 +63940,Secretaria dirección TV MX,264525,1197089,27 +63941,Attendant,38437,120458,16 +63942,The Usher,145220,57108,48 +63943,,148622,240326,8 +63944,Rodeo Spectator,33541,115995,18 +63945,Yulia Juli,65131,109117,4 +63946,Tranny in Diner,129530,1576529,4 +63947,Dima,56304,223907,0 +63948,Amy Brooks,72474,82834,3 +63949,Hannah Danby,245700,1221056,1 +63950,Valto,58416,106172,3 +63951,Chambermaid,98349,1017371,21 +63952,Yankees' Manager,15213,1215551,22 +63953,George David,341895,1071561,0 +63954,Marlene,36299,114471,10 +63955,Himself,99657,6818,1 +63956,Young Girl,44388,4730,4 +63957,Maria Goldberg,11204,53109,4 +63958,Sybil Vane,47459,104939,3 +63959,Brovik,268536,109470,6 +63960,Musical Ensemble,33541,1816042,21 +63961,,125835,544990,13 +63962,Σοφία,16803,80879,2 +63963,Mrs. Moore,273404,43301,6 +63964,Det. Insp. Larry Holt,27144,30227,1 +63965,Satanta,60551,1229431,5 +63966,Piano Player,67375,115366,31 +63967,Dave Tolliver,76094,4958,1 +63968,Key,10476,18471,1 +63969,Dancer (uncredited),33541,20155,14 +63970,Gollum,122,1333,9 +63971,Randy,40925,130842,4 +63972,Inmate 297,94365,65831,3 +63973,Wayne Westerberg,5915,4937,6 +63974,George O'Neal,84105,1098732,22 +63975,Mr. Ellis,339527,3982,5 +63976,Steve,41714,1733,1 +63977,Goliath,2734,27645,20 +63978,Huerta,1810,19217,9 +63979,Theater presenter,266425,134989,21 +63980,Guide de Deressa,46738,110617,13 +63981,Various roles,41076,929654,1 +63982,,378435,238920,4 +63983,Mr. Prince (voice),309809,19866,12 +63984,Donatella,220565,29428,0 +63985,David,142507,211481,3 +63986,Michael Fitzgerald,104528,14669,2 +63987,Max,142320,238057,19 +63988,Mr. Wagner,147618,1129185,6 +63989,Ruby,71139,41249,10 +63990,June,339362,209578,3 +63991,Detective Al Kendricks,388862,204420,2 +63992,Manu's mother,41252,125726,11 +63993,Roger Michaels,47410,14902,1 +63994,Verwalter Lothar,374319,1230855,4 +63995,Simp,74430,11519,6 +63996,Snow White,189888,2067,5 +63997,The Stranger,287628,1475591,2 +63998,Fletcher,6341,51348,6 +63999,Mike R. Krantz,267389,47355,6 +64000,Kristina,57209,225682,1 +64001,Edith (as Eliana Hoppe),14029,103183,11 +64002,Armstrong,56491,97854,2 +64003,,335874,6200,3 +64004,Larry,173634,89613,1 +64005,Bernard,337104,83854,2 +64006,,148615,1606299,18 +64007,Policeman Wakasugi - Witness on rainy day,43113,1200144,28 +64008,Jed,26502,127195,10 +64009,Soledad,161024,27058,0 +64010,Lex Luthor,1452,1979,1 +64011,La ragazza della maratona di ballo,75532,334758,2 +64012,Klaue's Mercenary,99861,1504934,31 +64013,Sgt. Peebles,197624,1298268,4 +64014,Gagan,197737,110204,10 +64015,Lathika,134477,1272147,5 +64016,Lardier,13652,62535,12 +64017,Patty Brooks,14292,1276,1 +64018,Fiddler Pig,109298,112405,2 +64019,Spike / Clubtail,24556,43125,16 +64020,Miss Cleaver,10748,6973,18 +64021,,67633,1043265,18 +64022,Fitz,14669,1574233,16 +64023,Bryn,385750,449513,3 +64024,Eve Calloway,277388,3910,2 +64025,Lymon,49514,118350,10 +64026,Angel Salazar,11600,100700,0 +64027,Hermit,205939,1324749,5 +64028,,224950,444749,0 +64029,Kyle,25111,1144894,7 +64030,Niki,23619,1168952,6 +64031,Horace Vandergelder,43141,127641,3 +64032,Honkanen,32099,108858,10 +64033,Inspektor Stronegger,9010,23750,8 +64034,Edith Birnbaum,14666,6450,4 +64035,T. C. Jeffords,28304,19020,2 +64036,Berlin Swat (uncredited),337339,1771603,64 +64037,Russell Birdwell,333663,572541,4 +64038,Javi,63066,236435,1 +64039,,27276,551867,58 +64040,Rebecca,394822,96076,10 +64041,enferma mental,280045,37589,5 +64042,Tyler Bramford (voice),40662,24362,15 +64043,British Soldier,1116,1896897,76 +64044,Captain Sugaya,88558,1069545,3 +64045,Drama Queen #1,38322,1869033,25 +64046,Beaver,11577,1013613,33 +64047,Kingsley Guy #2,45243,1358973,23 +64048,Businessman,14552,29445,31 +64049,Cusick,27629,2502,20 +64050,Attalus' Henchman,1966,39678,42 +64051,Priest / 3rd Builder,341962,1470853,7 +64052,Hippa-täti,40864,124874,9 +64053,Simon Nerra,78028,27173,6 +64054,Janet Spence,88320,5698,2 +64055,Himself - Trumpet,37038,116650,12 +64056,Josefin,14357,1156992,6 +64057,Nick,322922,78036,3 +64058,Kate McKinnon,214756,1240487,20 +64059,Damon Richards,13279,74574,10 +64060,Trev,11798,1252520,14 +64061,,11328,1444485,33 +64062,Rose's Dad,199575,1438896,32 +64063,Preacher Michael,381645,1295668,7 +64064,Vénus,78258,583483,1 +64065,D.A. Bonomi,228034,52374,13 +64066,Laughing Crow,84104,1175092,6 +64067,Tommy Ditman,33923,11128,4 +64068,Yatesey,208869,71586,2 +64069,Captain's Mate,113638,975306,2 +64070,Loke Martinzon / Tommy Bohlin / Hardy Andersson,38789,79168,1 +64071,Doctor,33541,331924,28 +64072,Sally Howe,64678,34847,1 +64073,Grandma,286372,1352341,12 +64074,Zach McCall,79316,70303,1 +64075,Ellen Bowker Pierce,114872,24815,1 +64076,Jim Davidson 'The Captain',9981,58768,17 +64077,Lucifer,58704,1129045,3 +64078,Tulio,267579,1027869,4 +64079,Jill,198277,171795,16 +64080,Inokichi,137504,7452,1 +64081,Charles,238749,36173,6 +64082,Goodbye George,116385,174624,9 +64083,Co-Worker,73943,141217,11 +64084,Samantha,268174,1316665,1 +64085,Stuart Allen,14823,55585,2 +64086,Alexander Frey,142712,43436,1 +64087,Mike Ryan,153169,30240,8 +64088,Callboy,43809,1342790,45 +64089,Dex,7972,335,5 +64090,Raver,271185,1072882,17 +64091,La jeune fille au chewing-gum,5511,1664791,26 +64092,Richard McGrath,42752,102066,8 +64093,Mrs. Joan Winthrop,332079,94399,7 +64094,Mees,34092,80631,1 +64095,Sadayu,136087,1105164,3 +64096,Soldado mensajero (uncredited),82767,31792,13 +64097,Crucified,57829,1886751,5 +64098,Sameer,115905,101822,0 +64099,Weapon XI,2080,78110,59 +64100,Helicopter Pilot #2,68721,1230922,31 +64101,Stevie McGuire,1662,4764,5 +64102,Dr. Madison W. Brown,43441,2638,0 +64103,Enrico Pratesi,56992,133216,2 +64104,Red Queen Girl,45522,35589,18 +64105,Bosse,29923,79259,6 +64106,Stanley,153102,211738,1 +64107,Maestra Teresa,125619,1293072,10 +64108,Ken Quinn,109424,17199,5 +64109,Monte,79521,83975,12 +64110,Gene Sheldon,229610,118309,6 +64111,Heavy,189,1406693,44 +64112,Robinka,66700,1897415,10 +64113,Joanne,44877,34847,0 +64114,Boris Plots,10918,658,1 +64115,Jackson,44486,1030558,4 +64116,Bar Pardon,352498,1492328,12 +64117,Dana Davenport,39240,122517,2 +64118,Terry Benedict,298,1271,5 +64119,Ringside Photographer - Zale Fight (uncredited),28000,947709,13 +64120,Alexa (voice),15359,15762,12 +64121,Newsboy,14589,1173466,28 +64122,Bailiff,213681,1771542,28 +64123,Alphonse,61113,12826,3 +64124,Polizist 1,74103,571187,6 +64125,Queen Tara (voice),116711,14386,5 +64126,Knappe,226001,1444646,10 +64127,SDF HQ Secretary Masato Hinogaki,36243,240009,7 +64128,Clerk in VCR Repair Shop,49524,1593004,19 +64129,Lucie,301876,1221954,7 +64130,Reed,106135,928673,6 +64131,"Donna, the Photographer",94568,375374,10 +64132,Starfleet Official,188927,1686562,53 +64133,,81463,1480660,10 +64134,Grandmother Mirabeau,4592,4090,2 +64135,John,18189,52480,2 +64136,Dr. Mervin,41206,34504,16 +64137,Marie Browning,22584,7570,2 +64138,Gutiérrez,119409,56465,8 +64139,Mrs. Julia Cortland,28658,82383,5 +64140,Everstin tytär,55756,125586,14 +64141,Mr. Silky String,1420,17021,7 +64142,Jack Stanton,2071,21250,8 +64143,Dinah Hunter,21950,21876,0 +64144,Gambler,71670,1737866,49 +64145,Madre Soledad,161024,1143300,3 +64146,Arnold Runcie,157843,140161,22 +64147,Ellen Yindel,142061,85759,10 +64148,,47046,1601503,6 +64149,Madeline,117120,205260,3 +64150,Reporter 3,339994,1593366,17 +64151,Soldier at Hospital,256962,1819148,77 +64152,Applejack / Rainbow Dash,201676,94481,1 +64153,Jasper,463906,10222,4 +64154,Schoolboy,133328,98102,4 +64155,,199887,56389,0 +64156,Various,18809,10722,2 +64157,Lynch,401222,1561545,5 +64158,Uncle Elihu,27629,33278,11 +64159,'Pusher' Ross,16442,30272,4 +64160,E.J. Needman,21138,23498,6 +64161,Blomhåret (voice),13798,55004,8 +64162,Blake,13185,3292,5 +64163,,109379,1108382,2 +64164,Vocals for Cybil (voice),58467,1704743,45 +64165,Runner,44716,40300,10 +64166,Francis,18405,84497,4 +64167,SWAT Team,356326,1874732,22 +64168,Nathan,403330,76996,1 +64169,Sam,14695,24045,4 +64170,Dino,356326,6123,0 +64171,Lucy,259694,88029,2 +64172,Allie Halcombe,199373,8329,3 +64173,Nadine Pepper,85009,1467630,12 +64174,Amauri,154441,127670,2 +64175,,48959,1066372,12 +64176,Bobby Bennett,239566,1347321,39 +64177,Josh,244403,148096,9 +64178,Menina Bêbada,448763,1848660,25 +64179,Beth Baker,31985,44711,1 +64180,Kabira,55376,14596,5 +64181,,190341,1580369,10 +64182,Prostitute,13653,1021561,15 +64183,Trauma Nurse,74549,1820122,22 +64184,"Don Severiano, veterinary",44655,186620,6 +64185,Dwight Stoddard,42250,6715,1 +64186,Martin Savide,10320,21163,4 +64187,Gram,340881,9560,2 +64188,Abby Miller,343369,1785298,8 +64189,,47448,213412,20 +64190,Dr. Kim Jong-Ok,64882,1090732,7 +64191,Willi Keun,103396,36839,5 +64192,Shin-ae Lee,2015,20737,0 +64193,Herself,13516,1490,18 +64194,Barbage,84354,1161654,10 +64195,Freddy Verstuyft,44751,92710,1 +64196,,1838,119412,10 +64197,Dirkie,47962,1071370,0 +64198,Gregg Toland,50008,15498,6 +64199,,85844,552005,8 +64200,,257302,1714060,11 +64201,Faye,141635,1031943,4 +64202,Jose - Rosario's Henchman,94182,1492365,30 +64203,Clips from 'Wizard of Oz' & 'Summer Stock' etc. (archive footage),33740,9066,31 +64204,Banka Güvenlik,361181,1513953,15 +64205,Dani,119409,73694,0 +64206,Jamie,46420,1093948,7 +64207,Volodya,142757,592307,8 +64208,Satan,2179,533061,6 +64209,'Jughead' Carson,46189,82129,1 +64210,Kazue Watanabe,3782,1481105,21 +64211,News Anchor,16320,80446,38 +64212,Abbot,68023,24299,10 +64213,Teacher at Play,10710,1778262,41 +64214,Chad,24874,92776,5 +64215,Adam Johnson,72140,55432,5 +64216,,285135,72099,7 +64217,Samuel Goldmann,33336,10268,2 +64218,Server,392660,142741,6 +64219,Disco Rick,65416,86928,7 +64220,,124597,1675541,16 +64221,Susan,24199,13637,1 +64222,Biker Dude (voice),116711,448526,22 +64223,Julie,91391,557447,7 +64224,Terrien,13507,5442,0 +64225,Valinda Normand,44921,131744,8 +64226,Trandafil,169656,38001,4 +64227,Zach,44115,1006775,17 +64228,Sarah,269795,20374,1 +64229,Plymouth PR Worker,72105,1502859,40 +64230,Nita,3115,30565,3 +64231,L'infirmière rousse,64944,94693,7 +64232,Abigail,255496,1512021,5 +64233,Mathias Kneißl,12523,21748,0 +64234,Jose Bernal,359105,1193510,11 +64235,John Ramsey / John Ramsey Auditionee / Himself,430826,1891532,44 +64236,"Poli, the Commandante's Bodyguard",94809,1125591,13 +64237,Claudette Dusseault,69765,557091,4 +64238,Adam,14138,81332,2 +64239,Hunter,38157,1215144,7 +64240,Thomas,156015,2369,5 +64241,Marina,62731,126968,1 +64242,Tony Cochrane,26805,87697,0 +64243,Samantha Wong,19629,56485,1 +64244,Manifestante,335053,1025627,26 +64245,Beryl,4882,39775,8 +64246,,348315,211155,8 +64247,Eli,16460,154106,3 +64248,Thelma (uncredited),80168,1445463,11 +64249,Mike Murphy,193756,60900,1 +64250,Herself,307931,1489795,10 +64251,Papa Hades,9793,37008,0 +64252,Mrs. Ashmore,31880,151371,11 +64253,Ted Toy (voice),214756,15762,65 +64254,Josh,59722,229689,7 +64255,Anchorman,15414,29697,13 +64256,Olav,60935,107543,9 +64257,,72592,1102680,16 +64258,Miss Wright,406052,239298,16 +64259,Jenna,222872,102691,6 +64260,Cole Younger,144471,81179,0 +64261,Padre de joven prepotente,41298,190780,11 +64262,Prince Dauntless,18506,81681,2 +64263,Kelly,14823,85073,3 +64264,Vittorio,10986,120645,7 +64265,Murtagh,2486,9828,5 +64266,Stretch the Octopus (voice),10193,2395,5 +64267,Tom Garner,96702,12147,0 +64268,Maggie,244539,8691,1 +64269,Swimming team (Perth's friends),292625,1758603,15 +64270,inspecteur Martin,59434,27443,9 +64271,,190940,85047,5 +64272,Mustapha,77673,70427,5 +64273,,149154,1497142,3 +64274,Mrs. Stiemer,133183,19884,8 +64275,Lehrer,1912,46317,28 +64276,Bahnangestellter,6183,697,16 +64277,Mara (voice),35177,15762,8 +64278,Asher,24272,140574,13 +64279,Giyo Katsushiro / Matsukichi Hirayama,14088,1683,6 +64280,Girl with Black Bangs (uncredited),87123,1288172,14 +64281,Ives,1773,29263,5 +64282,Peaseblossom,355890,1499763,6 +64283,Rex (voice),10193,12900,7 +64284,Narrator,44746,1250,18 +64285,Brandon,26267,94985,5 +64286,Toppers far,21282,69012,8 +64287,Lois,157898,941727,0 +64288,Freddie's Mother,42614,1284334,9 +64289,,245017,1418650,3 +64290,,65713,543863,6 +64291,fidanzato di Ramona,43649,1615899,7 +64292,Pill Girl,284296,1260481,23 +64293,Roméro,38883,24041,3 +64294,Mrs. Vivien Leslie,120259,113284,0 +64295,Troupe,19995,983705,42 +64296,Vater Orlac,2974,29248,4 +64297,Sam Dorker,16154,79735,4 +64298,Lancelot,19957,82216,0 +64299,Eli Rpsenberg,77583,1450816,2 +64300,Sara Lee,21030,41249,2 +64301,Brian Cervier,10425,973,16 +64302,Meter Maid / Doris,19918,66499,19 +64303,Sylvain Dielman,44012,130032,1 +64304,Father Quintana,60281,3810,2 +64305,Barton,30361,121144,6 +64306,Herrero,133328,7372,5 +64307,Eden Starling (singing voice),13459,85429,2 +64308,Dr. Mears,50153,15992,3 +64309,Adam Lemp,130507,4113,0 +64310,Zorac,213755,24517,2 +64311,Hassan Khaffri,29610,15998,20 +64312,German D.E.B.,540,63661,15 +64313,Erik Gunnar Melin,116019,125585,0 +64314,Adam Benaïm à 8 ans,73562,928261,2 +64315,Cynthia,266030,1319780,6 +64316,Terry,43896,2099,6 +64317,Mr. Whisler,266285,1459356,18 +64318,Josh,13946,1039593,2 +64319,The Police Constable,28425,3368,15 +64320,Tsuru,176983,1238593,21 +64321,Radu,68737,938,5 +64322,Dark Elf,287903,1544922,16 +64323,Appleby,40387,135180,3 +64324,Chief of homicide,269494,578838,8 +64325,"Jun, la mère de Yuki",52637,146382,2 +64326,Mary,28739,1348608,17 +64327,Petter,133458,1097232,12 +64328,Paula Craig,29365,96300,1 +64329,Schempflinger,122487,3763,8 +64330,News Person,17317,1676731,17 +64331,"Foreman, House of Death",24973,84229,45 +64332,Henchman Mason,38107,88652,6 +64333,Roman procurator on Cyprus,199463,550133,4 +64334,Marshal,174751,57155,12 +64335,Dr. Conway,27414,111198,24 +64336,Fritz Lang,386100,1086,1 +64337,Abby,289712,112742,2 +64338,,327225,1193805,8 +64339,Tony,88126,125587,1 +64340,Vocalist - Opera Montage,98328,1711363,9 +64341,Splodger,204255,1733512,5 +64342,Lou,32298,2694,2 +64343,Bastian,352890,119068,6 +64344,Don Sebastián,122525,1173616,7 +64345,Wesley,125506,5367,1 +64346,Slave Girl,1271,1330774,72 +64347,Sheriff Bob,19823,1118114,3 +64348,Nurse Valeria,8063,4959,1 +64349,Ke Er,69619,143602,1 +64350,Evelyn,412209,8985,4 +64351,Graduate Student,381008,1589607,20 +64352,,303398,55062,3 +64353,Chained Zombie,66925,564328,11 +64354,Roxy,25038,1326143,15 +64355,Devin,104859,1025375,7 +64356,Bonaparte jeune,70090,25155,0 +64357,Connor,49597,83225,0 +64358,Timothy 'Pop' Keith,43562,4302,3 +64359,Spade Henderson,106573,1329618,8 +64360,Charlie,38303,98276,11 +64361,Cut Rock,1579,42017,23 +64362,Restaurateur japonais,35025,1420626,24 +64363,Herself - Roaster,334461,176012,9 +64364,Kyle O'Shea,72710,467645,7 +64365,Pete,4111,34747,6 +64366,Shadow (voice),92321,1315198,5 +64367,Saba Taliyar Khan,393445,87773,0 +64368,Ryuji Suguro (voice),201223,84507,3 +64369,Major Steel (as Joe Girard),261035,105946,8 +64370,Hilda,134397,1098990,8 +64371,Twin Sakaaran citizen,284053,1813770,19 +64372,Patricia,99367,91351,0 +64373,Mateo Blanco / Harry Caine,8088,1604,1 +64374,Creature Performer,9042,12359,14 +64375,Judge Alexander,33792,89673,8 +64376,Party Host,244534,1078128,8 +64377,"Luc, son mari",55836,223231,1 +64378,Frank Schneider,80032,87698,4 +64379,"Bobby, Co-Worker #1",9900,60160,13 +64380,Oreste Bracchi,156547,101556,6 +64381,Arlene,1991,20491,3 +64382,Mark Shore,91419,41235,1 +64383,Police Officer David,407448,1863672,38 +64384,Begum Para,248698,76232,1 +64385,François Barras,27635,98506,2 +64386,Luis's Girl #1,9956,39596,15 +64387,Himself,140554,1707822,11 +64388,Jim,36251,76640,9 +64389,Isabella,327231,83894,1 +64390,Волк (озвучка),83865,101423,1 +64391,Beth Greenwood,251732,11356,2 +64392,Lara,1640,18290,10 +64393,,315057,1365344,1 +64394,Young Meggie,2309,983695,14 +64395,Cory Dollanganger,236399,1271482,6 +64396,Catherine 'Cay' Higgins,29467,12498,0 +64397,Mahalon,2734,27653,31 +64398,Larry,318553,1555125,12 +64399,Zavala,325173,1025655,7 +64400,Himself,63144,1624616,11 +64401,Ratna Bhai,362150,37234,7 +64402,Barney Bond,27446,97772,4 +64403,Nieves,63612,1128383,8 +64404,Creedence Leonore Gielgud,26914,932325,5 +64405,Office Soldier,8988,1741977,55 +64406,Col. James Caldwell,31275,1031164,3 +64407,Omori Guard,227306,1381319,48 +64408,,76202,6450,2 +64409,Driver,333371,60881,4 +64410,Eriksson,154671,213530,2 +64411,Malika,28417,100745,3 +64412,Nonno Luigi,54309,71140,10 +64413,,228407,213373,1 +64414,Kristen,94055,167365,1 +64415,Le Grand Vampire,29082,102849,3 +64416,Christa Valis,312497,1378867,13 +64417,Phone Sex Woman,352890,1561253,21 +64418,Feet Samuels,72096,1811,7 +64419,Jake,232672,1428394,15 +64420,Lor San Tekka,140607,2201,11 +64421,Amanda Young,214,2138,1 +64422,Kristin,15907,15250,4 +64423,Скорик,63300,240369,10 +64424,The Young Director,43976,1493008,4 +64425,Manny,391375,21624,2 +64426,Antonio,408537,1659287,2 +64427,Darald,9870,58737,7 +64428,Mato,382873,124955,8 +64429,Duke d'Artelines,31532,2438,5 +64430,Ezra Thompson,41591,98465,2 +64431,Lucy Burrows,899,8828,0 +64432,Ingrid,81414,591924,1 +64433,Detective McWilliam,17223,25099,4 +64434,Stéphane Darcy,204768,41035,2 +64435,Tech-Stylz Dancer,243683,1398206,93 +64436,Akira Takizawa,35435,114299,0 +64437,Frank,405882,1473957,6 +64438,Perry Townsend III,257081,32128,1 +64439,,321779,222799,5 +64440,Blackie,75880,153337,11 +64441,Ronnie Ram Tech (voice),378236,19977,20 +64442,Uncle Samson,31146,1207091,23 +64443,,305147,235775,1 +64444,Officer Moore,259997,1302537,26 +64445,Masa Tadashi,14088,1190328,1 +64446,oncle Leo,42604,81550,6 +64447,Lina Romay,43546,1012321,9 +64448,Captain Ives,20312,6856,22 +64449,Seven,74830,61178,0 +64450,Jeune mère qui témoigne,148327,120568,15 +64451,Pearl Prindle,172443,1317921,3 +64452,Sukie,37311,3752,15 +64453,Captain Louis Morgan,71147,8656,5 +64454,Suzie,66881,549057,10 +64455,Jake,45020,32597,1 +64456,Various,22471,73088,2 +64457,Cinthia,17780,82362,6 +64458,Michou,56947,41526,1 +64459,Jebediah Woodley,405882,16644,0 +64460,Homeless Man,169068,1738449,17 +64461,Nestor (voice),65759,59784,11 +64462,Sir Francis' cook,37451,83758,11 +64463,Army Guard,27549,1214190,16 +64464,Marina,106944,938563,4 +64465,Harper,75138,144863,1 +64466,Noah Henry,322518,86654,5 +64467,Emma Riley,84727,18686,0 +64468,"Blinov, worker (as N. Arsky)",204802,1623850,3 +64469,Sergeant Toney,340275,1531591,22 +64470,Meredith (as Chelsea Staub),14123,88698,4 +64471,Board Member,109716,583697,45 +64472,Moana,36530,97480,0 +64473,Pierre,53168,1195450,10 +64474,Lawrence St. James,43354,47395,4 +64475,la concierge,77673,26877,11 +64476,Fisk Professor,14047,1392612,45 +64477,Patty Wheatley,295588,59206,7 +64478,Spiller (voice),51739,57412,8 +64479,Amuro Ray,39230,40327,0 +64480,Georges Verger,54832,33470,2 +64481,Dr. Merrow,149926,33448,6 +64482,Edmund's Mother - Shirley,10488,207938,9 +64483,LCpl. Ebert,7454,1709,3 +64484,Stephen Benbow,27986,87697,1 +64485,Student (uncredited),1986,1505473,25 +64486,Shakir,61966,235424,3 +64487,Fire Breather,94352,221147,2 +64488,Andrew,14215,32203,2 +64489,Camille Mercer,8292,40036,9 +64490,Jai Puri/Jeet Puri,18673,35070,0 +64491,"Komisarz Dariusz Wolkowski ""Majami""",425961,1636671,3 +64492,Dr. Malcolm Robertson,28325,44961,1 +64493,Jesse - Corny Collins Council / Welcome to the 60's Dancer,2976,1752332,56 +64494,'Crazy' Tsui Wai Keung,11647,118742,15 +64495,Sister,92663,1802666,8 +64496,Michael,222339,141,0 +64497,Detective Frank Patterson,43931,81685,11 +64498,,325892,1047711,1 +64499,Preston,118283,16896,7 +64500,Cota,128598,1087378,6 +64501,Preston,59115,1830871,15 +64502,Contessa,160844,232926,11 +64503,Su-Chin,7326,82791,13 +64504,Fred Burroughs,90616,1692063,5 +64505,La mère (archive footage),103597,1089799,7 +64506,Ducky / Digger,339526,1303010,2 +64507,Reporter,1726,62843,48 +64508,La cantante alla festa,315319,1880544,36 +64509,Young Smiles Sisters,403431,1872335,13 +64510,Chantalle,161545,1496181,18 +64511,Captain McKenzie,106020,11130,4 +64512,,49907,240092,3 +64513,,284343,131687,3 +64514,Offizier 1,613,1134350,58 +64515,Ivo Pane,209413,1289946,2 +64516,Alia Mo'Allim,333352,1584780,30 +64517,Marguerite,335145,5320,5 +64518,Katya,63838,4793,1 +64519,The Stranger,293670,2541,3 +64520,Sarman,402672,78749,1 +64521,Ghost of Marley,229056,140585,8 +64522,,19082,262701,5 +64523,Hanukkah Party Guest,356752,1841523,46 +64524,Eddie Diamond,43046,8255,7 +64525,,2143,132934,56 +64526,Ruben,345924,1674203,9 +64527,Il profeta,162056,1144370,3 +64528,Otto - Directing Carew to Bank,109716,89013,73 +64529,Lidiya Nikolaevna,256520,933190,4 +64530,Einsame Frau,311301,1264417,13 +64531,Red Fuentes,67669,64517,4 +64532,Gunnar,131343,1093246,1 +64533,Lionel 'Elvis' Cormac,19901,5293,2 +64534,James Mace,1272,16828,2 +64535,Yoshioka,43364,134406,13 +64536,Buck the Superagent,117023,101283,4 +64537,Jock,335970,1718102,34 +64538,Atheria,64861,123149,2 +64539,Bathsheba,42040,2506,3 +64540,Indiran,49074,581072,6 +64541,Konrad Wackernagel,286545,1352653,4 +64542,Chang Ah Gou,88922,1163378,12 +64543,Eva,431093,1486655,3 +64544,Anna Gotzlowski,6076,19910,2 +64545,Somchit,26687,96013,2 +64546,Cooler,39103,115305,2 +64547,Tom,26656,55084,0 +64548,Pavel,55846,58760,21 +64549,Melissa,24363,84617,8 +64550,Lo Fung's wife,117506,1139049,3 +64551,Chief Inspector Lo,69727,553882,5 +64552,Mailroom Runner,51036,1227952,22 +64553,Conway,16131,79422,10 +64554,Axel Kronstadt,92716,5795,9 +64555,Grace,32552,91655,5 +64556,Chris Van Outryve,17845,82420,0 +64557,Nelly Fell,177902,128494,8 +64558,Mr. Jones,58918,109100,10 +64559,The Doctor,290999,1361558,8 +64560,Juliana,49060,58579,6 +64561,Magdalena,170759,147444,1 +64562,Safari Pilot,230179,148383,12 +64563,Himself,29138,145354,0 +64564,Thurgood Marshall,82911,2975,0 +64701,Igor (Village Idiot),11475,122402,1 +64565,Himself (archive footage),21525,54422,0 +64566,Ryan Evans,13649,67601,3 +64567,Cockney News Vendor,109716,1093854,66 +64568,Jubilado,254869,1423093,52 +64569,Extra (uncredited),174925,130491,17 +64570,Tara Devlin,122843,92795,5 +64571,Mamie,17687,13568,3 +64572,,267481,99282,12 +64573,Kerberos (voice),31347,125617,4 +64574,Prisoner,10425,65129,17 +64575,Fräulein Schneider,83119,752320,4 +64576,Bandslam MC,23367,95385,30 +64577,Libby's Dad,7942,1017831,27 +64578,Philip Allen,1247,227,9 +64579,Doug,72207,55638,10 +64580,Rob,37600,91348,3 +64581,Puja,33146,110198,6 +64582,Noah Dietrich,2567,4764,3 +64583,Eusthasius,9503,1186438,12 +64584,Sue,29345,97881,2 +64585,Nina,158870,1140232,1 +64586,Preschool Kim Possible (voice),51786,501,8 +64587,Carol,297853,1790444,23 +64588,Ferit,10821,1174580,6 +64589,Maria of Magdala,199463,231918,5 +64590,Lam Yu Nian,88922,544931,7 +64591,Young Girl,41171,1392750,29 +64592,,327655,45587,1 +64593,Feri bácsi,13616,125368,9 +64594,John Weaver,73194,34117,8 +64595,Passista,70666,1863898,38 +64596,Jasmin,45935,551669,7 +64597,Dr. Skinner,84295,103620,4 +64598,Lee,96132,6542,1 +64599,Stan Gable,21029,18982,2 +64600,Joey,200447,1183712,8 +64601,Technical Adviser (Mrs. Joe X),4932,40174,15 +64602,Ryan Waverly,343284,56556,4 +64603,Admiral Hassinger,41597,47667,13 +64604,Amun,353462,2957,4 +64605,Drake,116973,100589,13 +64606,Host,157723,19278,5 +64607,Rabbit (voice),245536,1280969,1 +64608,Lady Moon,315439,1442583,8 +64609,Aaron Fitzcarraldo,43923,1142720,5 +64610,Public Defender Min Chun-Sang,435366,998412,3 +64611,Himself,111332,1042213,1 +64612,Ferit,157559,142766,0 +64613,,124597,1422424,11 +64614,Larry from Ground Branch,97630,25616,6 +64615,,38099,119650,16 +64616,Leonard Rice,256962,72986,23 +64617,Tika (Diálogos / Canciones),13283,1497227,14 +64618,DC Protestor,209112,1452211,94 +64619,Le directeur de la compagnie d'assurances,61765,2379,9 +64620,Coroner,430826,1891508,29 +64621,Station Master,41597,79641,19 +64622,John Hay,14815,6593,3 +64623,Media Personnel,256092,1338720,16 +64624,News Reporter,345922,52271,22 +64625,,140509,127223,6 +64626,Jules,230211,1282731,1 +64627,Private Detective,104041,29468,6 +64628,Chris,46883,1063229,10 +64629,Detective,51999,47698,4 +64630,Dick Johansonson,17303,81584,1 +64631,Isabella,49038,1038168,5 +64632,Mr. Curtis,2977,33452,14 +64633,Dr.Samavati,43761,1339655,6 +64634,Eddie Wheeler (as Stephen Barclay),35543,114370,3 +64635,,190883,17753,1 +64636,Captain Nathan Algren,616,500,0 +64637,Thea von Harbou,386100,18035,4 +64638,Newt,19740,18071,2 +64639,,241953,19502,1 +64640,,17479,1619503,5 +64641,Kriminalrat Boehm,103396,49252,6 +64642,Steward,89591,8399,5 +64643,Frazier,42345,133585,6 +64644,Barba Fotis,24258,1123686,5 +64645,Willie,43250,3339,4 +64646,Himself (voice) (uncredited),18722,160042,54 +64647,Ryan Selner,21431,207989,11 +64648,Busty Waitress,45013,1314062,36 +64649,Paul (16 years old),58462,4012,17 +64650,The Creature,3057,10843,0 +64651,Eddie (voice),79218,15760,6 +64652,David Kray,35683,133627,6 +64653,François,148327,145458,2 +64654,Bart Tare,18671,14504,1 +64655,Wally,21583,1798997,11 +64656,Laura Elvize,28682,38596,5 +64657,Woman (voice),279598,557964,6 +64658,In-cheol,64792,223144,1 +64659,Consul-General Semanek,54570,150948,4 +64660,Cieco,38285,52657,5 +64661,,51267,150734,5 +64662,Mr. Barber,66113,529,0 +64663,Little Girl (voice),19594,1080211,9 +64664,Telegraph Operator,287636,19274,7 +64665,Samantha Goodman,18045,11884,0 +64666,Mrs. Walden,382951,2713,2 +64667,Voice Cast,222935,1002409,46 +64668,Nene,41115,125501,9 +64669,,53693,142667,10 +64670,Rami,115276,1589682,16 +64671,Rollo Vincent,52741,1706740,6 +64672,Jesse,197611,2222,0 +64673,Henri,288952,1107803,6 +64674,Rent,318922,1047649,8 +64675,Drake (voice),10473,15048,6 +64676,Herself,296194,105788,6 +64677,Scarlett,285,2450,19 +64678,,80660,60698,0 +64679,FBI Agent,264644,76514,13 +64680,Rita (voice),63498,588829,1 +64681,Nisha Chaudhary,46387,76232,0 +64682,Judit García,8088,3480,2 +64683,Pierre-Ange,255913,549333,10 +64684,Phoebe,5928,6587,6 +64685,Pa Harrington,53209,99378,4 +64686,Bad Horse Chorus #3/ Moving Guy (as Robert Reinis),14301,76533,6 +64687,Dr. Forrest,28155,19794,5 +64688,Tom Sykes,56669,2048,0 +64689,Genya Smetana,90799,100051,2 +64690,Dorakas,2172,110097,5 +64691,Himself,440767,131133,1 +64692,Herself,63472,1204,9 +64693,Clint Barton / Hawkeye,99861,17604,5 +64694,Czarina,277778,1069734,7 +64695,Polly Pearl,33343,40062,7 +64696,Santosh Patel,87827,227849,4 +64697,Max,9843,23608,13 +64698,Dan,241258,123879,4 +64699,Captain Davis,294690,94146,27 +64700,Luvven Coddle,31146,6753,14 +64702,Jim,232672,19292,1 +64703,Salon client 1,47186,164481,12 +64704,Monsieur La Bessiere,42641,14563,2 +64705,Marianne,101998,36810,9 +64706,Solomon,43923,95604,16 +64707,Club M.C.,242631,134614,22 +64708,Millicent Fritton,11402,20394,0 +64709,Like Clockwork Patient,4960,127069,15 +64710,Phil Radda,9950,4692,6 +64711,Clifford,10740,53,6 +64712,Marianne Bredow,11869,13374,1 +64713,Carl,297702,980,2 +64714,Santiago,79775,5401,0 +64715,Nam Ki-Sung,407887,138527,8 +64716,Crateros,1966,3075,25 +64717,Carla,309879,31780,6 +64718,Surveillance Room Attendant,294254,1574846,33 +64719,Prostituta,62034,1325245,9 +64720,Biggi,72596,1114532,12 +64721,Lije Evans,42703,12149,2 +64722,Henry Mitchell,13358,59222,5 +64723,Carl Denham,43149,3243,0 +64724,Guitar Player,75300,582912,8 +64725,Abe Carbo,43114,29643,1 +64726,Frank O'Brien,64456,76519,10 +64727,,74674,1445107,8 +64728,Skeeter,97910,1069238,6 +64729,Eléonore,64225,261651,4 +64730,Tom Collins,15199,159435,2 +64731,Didier Latour,37653,59031,1 +64732,Bathing Beauty,43812,1431849,58 +64733,"Earthchild, Heather",28677,101565,3 +64734,Kobmand,11832,258901,24 +64735,Astro / R.U.D.I / Mac / Announcer / Store Manager / Robot (voice),36868,16422,2 +64736,"Mara, wife of Suba",194393,241863,3 +64737,The Boy,51358,8635,0 +64738,Sailor on the Nova Scotian,109716,98052,32 +64739,,327231,6283,16 +64740,von Wurtzburg,55495,147773,0 +64741,Gladys Petrelli,130917,10559,3 +64742,Rome Policeman,240745,1343823,33 +64743,Hugh Drummond,140418,133470,0 +64744,Alvira,65674,7631,2 +64745,Lee Young-Eun,83754,1029185,3 +64746,Auguste Viktoria Wormser,10626,19526,8 +64747,Грабитель,46010,1189309,8 +64748,Sue,371462,1563625,8 +64749,Gibby,18442,101251,5 +64750,Package,286657,1353937,2 +64751,Wendy,271718,1601493,33 +64752,Francine,29136,1896747,8 +64753,Reed,377428,64674,4 +64754,Cable Guy,32139,24512,8 +64755,Dr. Sayler,65650,65760,11 +64756,Owen,374461,109438,3 +64757,Reporter on Beach,44943,443219,34 +64758,Allan Hershagen,80059,87725,1 +64759,(as Kanhaiyalal),303966,1889863,7 +64760,Jorge,318781,1687323,9 +64761,General Rahl (uncredited),259593,834,12 +64762,Waiter,43868,120701,9 +64763,Boddington Security,146216,1684556,59 +64764,Sunbed Shop Owner,32904,1780553,15 +64765,Tony Phillips,25834,1211933,2 +64766,Inspector Patil,103073,629478,4 +64767,Sam Barrett,145135,1391884,9 +64768,Fight Spectator (uncredited),28000,1173173,56 +64769,Stebbins,28448,4942,9 +64770,Kuririn,39102,65510,1 +64771,Dr. Newbury's Assistant,42709,659502,6 +64772,Melvin Purvis,56264,1297931,13 +64773,Waif (uncredited),31773,939670,18 +64774,Sylvia,29424,1205933,7 +64775,Valentina,38328,88082,6 +64776,Gwang-Sik,242458,1418580,5 +64777,Mary,215658,1223382,1 +64778,Jacob,133328,15534,6 +64779,Cybil's Electric Guitarist,58467,1704731,32 +64780,Kindergarten Student,13436,1656888,28 +64781,Katie (voice),48567,62866,4 +64782,Lily Jacoby,308639,1395182,4 +64783,Detective Luk Yuen-Sum,290864,66762,1 +64784,Jameson,152570,78829,4 +64785,Laurent Beccaria,320318,1408199,6 +64786,Mahumahu,92341,1555836,11 +64787,Hal,178809,1224672,17 +64788,Gabriel,413998,1221067,22 +64789,Matteo,38328,87010,0 +64790,Julia,49712,56654,7 +64791,Den Mörka,56596,63758,17 +64792,Big Roddie,1404,16909,10 +64793,Lampião,232739,55101,1 +64794,,154442,65512,3 +64795,Himself,173465,1266237,3 +64796,Henriette,24685,79557,13 +64797,Enni,217038,148354,7 +64798,Preserved Killick,8619,59081,16 +64799,Jules,279096,1380107,19 +64800,,188981,1056768,2 +64801,Shoeshine Boy,4538,1797593,21 +64802,Linda,83,590483,4 +64803,Mrs. Marie Holzapple,35895,121259,11 +64804,Larry,353728,130365,8 +64805,Agent (uncredited),38654,1213688,21 +64806,Briggs,33025,103449,3 +64807,Варя,85729,238696,8 +64808,William Godwin,332283,8435,6 +64809,David Edward Reynolds,308269,1447883,3 +64810,Charlie Costello,86838,57755,2 +64811,Lorenzo Viotto,104954,31545,3 +64812,Himself,256222,1091965,1 +64813,Sub-inspector,393562,1699684,8 +64814,Abducted Kid,3580,144162,44 +64815,Göransson,128946,6667,10 +64816,Chloé,274483,4390,1 +64817,Himself - Father,15584,556505,2 +64818,Hippo Girlfriend (voice) (as Stacy Ferguson),10527,20497,32 +64819,John Briggs,10139,81681,7 +64820,Anglo Coyote,86975,13726,3 +64821,Hot Servant,156711,1349741,36 +64822,Helen Stilwin,41611,14974,0 +64823,War Pups,76341,1734187,43 +64824,Science Teacher,87827,1271650,17 +64825,,166262,120321,14 +64826,Kushiel,50126,182948,10 +64827,Quinceañera Guest,268920,1755088,112 +64828,Felix,123359,557879,0 +64829,Himself,69903,65605,0 +64830,Wilhelm Gottfried,3164,131045,6 +64831,Boy at Tree,56154,1422446,46 +64832,Holiday,12113,33241,5 +64833,Rudy Shulak,43321,151610,8 +64834,,242240,1277212,4 +64835,Aoye's friend,32690,33732,15 +64836,Beverly Weston,152737,9880,5 +64837,Marin,43727,9205,6 +64838,Felicidad Iglesias,184341,224513,9 +64839,Longyu,76349,6720,3 +64840,Katie Walker,383140,1582460,13 +64841,Ginny,87302,11485,3 +64842,Rowan,244316,11006,0 +64843,Alissa,47194,21320,2 +64844,Dr. Sara Bella,126442,1100549,7 +64845,Marcus,157424,1261683,5 +64846,,8079,85450,22 +64847,Soldier (uncredited),28000,170609,77 +64848,Jennifer,19719,85103,10 +64849,Lisa,16022,27125,20 +64850,Laboratory Assistant (voice),30060,201660,8 +64851,John Hawks,31915,23346,2 +64852,DJ Fash,52452,146010,11 +64853,,116312,1012169,18 +64854,Chen Jun,41378,1140545,7 +64855,The Young Rapist,40978,135626,14 +64856,Traveller,128089,134410,2 +64857,,430973,591168,7 +64858,Officer Watkins,325133,500427,16 +64859,Porter (as Bob Osborne),134238,34890,14 +64860,Fangirl (uncredited),251227,1286539,20 +64861,Nancy McDonald,24150,63232,27 +64862,Anne Lefevre,203321,71083,4 +64863,Parrot,204553,1418580,17 +64864,Marta Olsson,39284,122598,0 +64865,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,1031508,14 +64866,"Shingo, Ibuki",264393,20830,2 +64867,Crazy Ball,58414,227806,8 +64868,,46891,1215021,10 +64869,Angel Carter,88375,45290,10 +64870,Ayı Abbas,123592,145728,1 +64871,Receptionist,10521,1572036,22 +64872,Georgia,80720,1672455,34 +64873,Itsuki Fujii,47002,235145,3 +64874,Clip from 'Every Sunday' (archive footage),33740,95622,25 +64875,Norva,136368,54479,4 +64876,Ringside Doctor,312221,1664462,38 +64877,Judge Travers,29872,30237,5 +64878,Nadia,19918,1098885,13 +64879,Mayor,11869,28131,10 +64880,,148371,1066151,8 +64881,Softball Fan,352498,1562960,15 +64882,Lars,15830,4467,4 +64883,Neil,29345,93925,5 +64884,Julietta Santigosa,342213,1021680,1 +64885,,146521,1124177,4 +64886,Dr. Brewer,48319,152926,9 +64887,Martin,30163,24540,2 +64888,Heavy,149793,1199590,22 +64889,Manuel,76864,580706,11 +64890,Catering Supervisor,268920,1544406,29 +64891,Meryem,8064,53843,4 +64892,,25626,1031246,50 +64893,Secret Service Agent,127585,105496,62 +64894,Mechanic,8942,883,1 +64895,Eugenio Ronconi / Eugenio Ragona,43571,119991,0 +64896,,306383,1004279,2 +64897,Himself (uncredited),4964,51298,35 +64898,Boat Bride,6557,66630,29 +64899,Vahishta,82430,14262,8 +64900,Sita,169364,1151397,0 +64901,Londoner,146216,1186597,9 +64902,Pam Rutherford,23178,88527,11 +64903,Happy Herb,73501,31903,1 +64904,Mashenka,14482,1164663,6 +64905,,52612,10707,7 +64906,Station Master (uncredited),43522,130086,65 +64907,'Milky',11798,70519,3 +64908,Topless Waitress,71670,1093516,24 +64909,Tom Ping,80320,38761,4 +64910,Munem,62630,73710,2 +64911,,356862,219736,1 +64912,Hunter (uncredited),331161,1459151,30 +64913,Amy,44943,213049,19 +64914,Glycia Malaquet,62675,39148,3 +64915,Reporter Lee Ji-soo,209764,1887382,4 +64916,Neighbor With Toddler,74,39388,22 +64917,Himself,180813,1130145,3 +64918,William Merrick,183825,15666,4 +64919,Fay La Rue,109886,29315,3 +64920,Arrested Woman (uncredited),30637,106628,14 +64921,Taxandrian,153272,1873607,11 +64922,Woman on Corner,72096,4159,24 +64923,Lorenz Review Headwaiter,51601,8839,16 +64924,Petr Dolezal,16439,111217,1 +64925,Cobbler,48131,145877,10 +64926,High School Girl #3 (uncredited),206197,1506499,47 +64927,Female Church-Goer,25625,10376,15 +64928,Fai,58414,65943,7 +64929,Jeff Chang,107811,65225,2 +64930,Nick Yanov,48852,69791,19 +64931,Jonathan Collier,382951,57136,5 +64932,Jimmy Colosimmo,61225,5504,18 +64933,Ivan Nevski,2397,24524,9 +64934,,200505,16431,3 +64935,Dr. Norman Bethune,281291,55636,1 +64936,Lomax,8852,159131,8 +64937,Stund (uncredited),97614,1207372,33 +64938,Upper Class Customer (uncredited),297762,1502441,77 +64939,Phaedra,37958,76792,6 +64940,Achille,92424,33161,4 +64941,Walter Reinke,18352,137078,7 +64942,La Chunga,166207,1396358,6 +64943,Mei / Rose,42120,1193724,10 +64944,Thomas Redruth,83191,98104,16 +64945,Leadlady,205798,49944,6 +64946,Gnatowski jedzący kiełbaski Hanki,155426,1083948,13 +64947,Milking Mother,76341,1734180,34 +64948,Grace Dietz,128270,234982,2 +64949,Daniel,82157,1207316,4 +64950,Woman in Bed,44801,102440,7 +64951,Pathologist,27381,7908,18 +64952,Buck,147618,89519,4 +64953,Johnny Woo,91548,106745,0 +64954,Kit,6877,11664,2 +64955,Lucie Lilliehjelm,87992,1068145,1 +64956,Sky's Mother,86820,53768,5 +64957,Susan Hays,158967,112329,2 +64958,Il cappellano,66893,938494,15 +64959,Łucja,14558,140649,1 +64960,Curro,348537,1061663,6 +64961,Fernanda,74674,572304,7 +64962,Mary - Reenactment Scene,206197,1506483,19 +64963,Conman Selling Furniture,38742,147964,4 +64964,Benjy Davis,182899,124853,2 +64965,Reporter (uncredited),43522,121122,46 +64966,Diane,32298,1233447,16 +64967,Man,26146,14887,0 +64968,Arlen Finkle,12573,1118718,13 +64969,Viggos mor,21282,202629,3 +64970,(uncredited),68822,1654207,37 +64971,Commander Bride,16444,9926,3 +64972,,76788,580662,13 +64973,P.J. Parks,70026,42174,4 +64974,Anne,110323,123989,2 +64975,Penelope,32298,33488,20 +64976,Melissa,354133,1496065,5 +64977,Arda,334394,1449806,4 +64978,Woman,338676,224731,5 +64979,Santa in Store,27414,1206247,35 +64980,Gabby Adler,22897,35028,9 +64981,,85327,44712,8 +64982,Mercury,47212,16560,2 +64983,Jeff Keller,14977,81295,0 +64984,,88273,1547798,40 +64985,Officer Johnson,47559,73946,2 +64986,Jack Clitheroe,173456,33004,1 +64987,Messenger,89086,1467844,37 +64988,Guy Lambert,45335,21457,0 +64989,Quentin,7229,16927,0 +64990,"Paul, le directeur du Crazy-Horse",90930,24807,3 +64991,Mrs. Meyers,105768,59230,7 +64992,Hector,139519,1296200,8 +64993,Joshua Everette,26119,6577,2 +64994,Cassandra,88042,532890,7 +64995,Tristram Griffin,44398,10018,3 +64996,Dancer,19995,1207270,54 +64997,Club Patron,71670,1469377,36 +64998,Mute Herdsman,11656,244278,6 +64999,Andi (voice),9514,57714,1 +65000,Dr. Saltzer,4529,23696,6 +65001,Langon,173456,117696,12 +65002,Dr. Lyndsay Bryce,217341,1221134,3 +65003,Fuzzy,35052,968292,6 +65004,Argan,29903,24517,2 +65005,Sgt. Steinkampf,3513,782,2 +65006,Willow Sword,19274,240659,8 +65007,Mike Garland,336775,15105,6 +65008,Lotte Lohmann,3577,5644,3 +65009,The master,129277,1088952,1 +65010,Suspect Given Ink Blot Test,36373,15992,15 +65011,Fabienne Letourneau,348025,119199,8 +65012,Girl in Wig Shop,41206,78934,19 +65013,Grayeagle,41604,45206,4 +65014,Girl in Pub,27480,1206875,6 +65015,Drifter,26679,1088118,5 +65016,Arthur,30624,8520,4 +65017,Concerned Doctor,284052,113652,22 +65018,Fabien Coutissol,92257,69958,3 +65019,Rita,54166,237335,1 +65020,Jai Singh Rathore,314389,215910,6 +65021,Smith,48319,568694,3 +65022,Jake Wildman,120478,1072142,1 +65023,Carter,226140,208677,5 +65024,Sgt. Holcomb,144475,30005,2 +65025,Jonas,101330,93847,1 +65026,Pamela Roper,52959,14464,10 +65027,Dallas,38048,33294,5 +65028,Ray Calvet,42619,40433,4 +65029,Young Reporter,921,54193,27 +65030,Elise's Driver Stefano,37710,1626331,35 +65031,Tim,115054,163386,3 +65032,Pretty Horse,105059,19968,6 +65033,Lake the Butler,86360,97217,7 +65034,Groom,13777,75276,30 +65035,Malchus,235260,1256066,29 +65036,Yakaké,104973,93093,5 +65037,Weapons Officer,17911,589131,14 +65038,Mrs. Olson,206197,1506487,25 +65039,Yong Suk,396535,1347175,6 +65040,Nudist,92496,1683081,12 +65041,Barry,22447,1687927,14 +65042,King George,6972,53023,5 +65043,Party Goer #1,199575,1438882,28 +65044,Dr. Kroner,74924,93798,8 +65045,Gérard,53404,77284,5 +65046,Frances,26642,55792,2 +65047,Diner Patron,242090,1417300,8 +65048,Shoe shop assistant,120729,27660,6 +65049,Classroom Kid,375366,1886326,16 +65050,Uri Romanov,76544,134414,10 +65051,Colonel Riat,50374,6610,8 +65052,Himself,43514,81970,5 +65053,Angel,68174,168529,6 +65054,"Toa Lewa, Turaga Onewa (voice)",19325,27145,8 +65055,Frankie,250066,3490,1 +65056,Flammarions' Party Guest / Stephanie's Party Guest (uncredited),31993,121323,11 +65057,Mao,430058,1722104,6 +65058,,43751,133004,11 +65059,Quok Mi,362703,21629,5 +65060,Konditræner,56858,6141,17 +65061,Factory Foreman Matveyev,204802,1421876,2 +65062,Emilio Rossi,198600,124506,4 +65063,Shadow 1,270759,1330446,3 +65064,Don Camillo,11972,69958,0 +65065,Macarena,445840,1698401,5 +65066,MOB Dancer,243683,1398066,44 +65067,Tracy,64936,164660,0 +65068,Baek-San,407887,85572,6 +65069,Pamela Hamilton,286971,17521,2 +65070,Greco Montgomery,298,6104,20 +65071,Malika,24397,58151,6 +65072,Earl Higgins,17003,31210,6 +65073,Cates,10999,16474,15 +65074,Mike Calloway,262338,56098,7 +65075,Janik Tremblay,359413,226915,10 +65076,Mónica,58587,1128383,1 +65077,Directrice de l'école,180644,1845738,4 +65078,Charles Krieger,40221,14062,1 +65079,Norma,99324,7331,3 +65080,,63215,1520916,37 +65081,Antonio,12432,56843,1 +65082,Laura O'Connor,298695,150245,5 +65083,Eric Hannity at 15,149509,1255070,39 +65084,Garrett,150201,192539,4 +65085,Industrieller / The Industrialist,20017,9928,5 +65086,Sgt. Sheridan,118283,151860,14 +65087,Jay Leno,30330,43774,2 +65088,Martine Jamison,122928,1920,1 +65089,Butcher,72875,568031,21 +65090,,57983,235667,3 +65091,Taper,24797,23346,5 +65092,Girl,157898,1429729,11 +65093,Dr. Ben Halleck,78265,33022,1 +65094,Bob Yountis,46623,8233,8 +65095,Laura Koskimies,141971,108472,5 +65096,Barbara Frick,72419,2340,5 +65097,Doctor Sado,61984,974738,9 +65098,Ole,71805,135121,4 +65099,Lionel Pembrooke,208091,5293,0 +65100,Missy,14505,1213128,9 +65101,Alejandra Sandoval,25376,1331810,12 +65102,Coco,26983,3174,8 +65103,Timmy,31277,1342868,14 +65104,pastor primarius,41764,116509,28 +65105,Henchman,134238,117036,33 +65106,Priest Rafael,68202,76094,2 +65107,,256930,1697976,5 +65108,,153420,117461,3 +65109,,49653,1386484,11 +65110,Duke Devlin,366170,1245663,8 +65111,Toshiaki,77057,131194,2 +65112,T,119213,38026,3 +65113,Qinawi,47324,20023,2 +65114,Rupert,11577,67064,31 +65115,La mère de Stéphanie,97365,144261,13 +65116,Sachiko Murai,43877,1195178,1 +65117,Christmas Carol,146712,1164341,5 +65118,Friend at Barney's,171446,120700,22 +65119,Maria,45211,132487,2 +65120,Jakob,36672,115884,7 +65121,Thomas (voice),197725,1527586,4 +65122,1st Commercial Guy (voice),73723,1082094,11 +65123,Karen,44223,74018,3 +65124,Malik,204765,1187189,4 +65125,Tourist Woman,339148,1491421,4 +65126,,214209,462584,8 +65127,Doctor,43811,30202,56 +65128,,37055,1371491,5 +65129,Ben,78522,14555,5 +65130,Mrs. Madrid,85265,1043278,15 +65131,Mimi,144111,148851,5 +65132,Martina,249457,1880592,6 +65133,Kid at Fight,256962,1819146,75 +65134,Wacky,26182,10800,2 +65135,Rupert Hogbottom,21780,235169,7 +65136,Woman,167073,1301503,45 +65137,Il maestro,162056,4818,0 +65138,Sebastián Copons,13495,87015,3 +65139,Hallwoeen Dancer,11247,1775925,46 +65140,Dr. Rynning,29416,8516,0 +65141,Priya Kapoor,277229,83591,1 +65142,Katherine,137357,232127,9 +65143,Misha (uncredited),331313,56448,42 +65144,Jazmín,264525,1255538,20 +65145,Béatrice (voice),393559,1615543,8 +65146,Dennis Baxter,46830,521,0 +65147,Katsumi Shimada,188684,554323,1 +65148,Edith,166161,1169979,2 +65149,Brad Kopple,12171,73401,1 +65150,Michel Pinchon,21145,47822,1 +65151,Peter La Fleur,9472,4937,0 +65152,Valerie Constantin,7916,2684,1 +65153,Laura Hatch,34138,44203,3 +65154,Delivery Boy,15019,95664,15 +65155,Sarah,45556,1127869,11 +65156,herself,190940,85040,24 +65157,Scalphunter,32068,1128334,10 +65158,Chance Regal,25038,1326141,11 +65159,Josefa,1810,19216,1 +65160,Erwin's Mother,64450,1348735,11 +65161,Oona O'Leary,10097,11281,3 +65162,Finn O'Brien,16240,80177,0 +65163,Kalara,188927,1095524,10 +65164,First Cop (as Ronnie Blevins),86838,98804,27 +65165,Stanley,30780,21624,0 +65166,Mrs Claire,80596,80995,53 +65167,"Toshio Saeki (segment ""Mirai"")",26693,1178996,6 +65168,Holly,45132,1363394,17 +65169,Policeman,10753,1346978,12 +65170,Maiwalds Freundin,1912,35535,5 +65171,Professor Saunders,13996,11367,11 +65172,The Bartender,96132,33723,9 +65173,Chef,279090,50202,4 +65174,Mac Hurley,82313,616517,10 +65175,Policeman,13436,1656899,38 +65176,Pau,348537,1283862,2 +65177,Major,140276,89733,6 +65178,Sara Miner,150201,1448864,8 +65179,,115616,84927,11 +65180,Slip Mahoney,186268,89989,0 +65181,Thirisangu,70988,1830469,8 +65182,Teacher,85350,1467504,6 +65183,Wrestler,81409,52999,12 +65184,Priest,256122,150493,1 +65185,Clip from 'Babes in Arms' (archive footage),33740,1035801,51 +65186,Daisy,27970,99328,11 +65187,Sadako Maki (voice),51739,548758,5 +65188,Nenashev,143380,99272,0 +65189,Gravity Man,62472,235381,8 +65190,Yelena,148622,99287,2 +65191,High School Student (uncredited),156700,1842212,50 +65192,Küster,2349,48119,24 +65193,Silva,91419,4966,5 +65194,Anna Rossetti,39979,544553,10 +65195,Eun-jeong,19482,463583,7 +65196,Dr. Hundtkinder,14869,159454,22 +65197,Lady in the Aisle,69,71886,24 +65198,Will,62492,113693,7 +65199,Observer,285181,1186092,17 +65200,Admiral Johnson,394645,1611257,14 +65201,Maharani,115109,14873,5 +65202,Lisa,24986,1198786,7 +65203,Casey,72460,12308,3 +65204,Mayor,117426,95741,2 +65205,Young Betty,10918,134890,5 +65206,Mrs. Big Head,30411,81689,13 +65207,Music Maids Member,43809,1556461,27 +65208,Dr. Beth Lorenson,9667,10431,3 +65209,Lisa Dolittle,18843,31029,1 +65210,Dr. Mark Cheswick,68720,8949,1 +65211,Ganger,62761,1267324,10 +65212,"Mr Fortin, le pharmacien",43462,94940,4 +65213,Jan Walczak / AS,31856,1050340,1 +65214,Flavia Speckler,17238,34043,4 +65215,Miner,176867,133277,26 +65216,Le 1er carabinier,52705,1366819,6 +65217,English Businessman,7549,52907,11 +65218,Dimsdale Boiled,122662,20661,4 +65219,Japanese Soldier #2,256962,1819129,60 +65220,Himself,86284,73234,3 +65221,Hannah Geist,125490,190895,1 +65222,Mummo,55500,150981,2 +65223,Max Rose,196359,3663,0 +65224,Ellen Murray,244201,2670,0 +65225,Anführer der Jebusiten,2734,27661,39 +65226,Marion,59231,165370,6 +65227,Lt. George Mills,17657,129049,9 +65228,,295782,1194710,6 +65229,Ralph Hampton Gainesworth Jones,10804,1230,0 +65230,Police Inspector,46403,1033807,11 +65231,,219666,1336224,2 +65232,Simone,57993,140822,4 +65233,NKVD officer Epanchin,102197,177129,6 +65234,General Mitford,220674,383,9 +65235,The Seer,64428,952262,10 +65236,Dietz,3087,30272,5 +65237,Margo,29896,201046,5 +65238,Emily Elliot,86543,21657,9 +65239,Himself,338063,1581554,5 +65240,Doctor (uncredited),156700,1480060,35 +65241,Kammerdiener Heinz Linge,613,18944,17 +65242,Rupert,347127,1483782,8 +65243,Emily,19918,52478,7 +65244,Jack,84355,45407,0 +65245,DC Lee Rutter,47535,198133,7 +65246,Tim,17640,130941,5 +65247,Hildegard Tietz,203539,1185916,7 +65248,Kingsley Bedford,94671,5049,4 +65249,Pvt. Allistair Piersall Benjamin,45522,19739,8 +65250,Un antiquaire,33436,28189,11 +65251,,24837,1035349,6 +65252,Hotaru's Mother (voice),92321,1315197,4 +65253,Frankie Callum,54801,184946,5 +65254,Art Patron,38322,1869038,32 +65255,Mrs. Spodak,44470,44613,12 +65256,Walrus (voice),273202,237286,2 +65257,Denise Blaine,47312,77081,1 +65258,"Anton, the Thief",53853,34762,7 +65259,J.D.,370178,1232307,4 +65260,Mayor Cranklepot (voice),339669,150536,9 +65261,Ranibai,15761,230632,4 +65262,Julio,51976,567737,0 +65263,Meredith Black,50780,1038,0 +65264,Bharat Kumar,403593,1564557,1 +65265,Moana,75162,1563608,8 +65266,Chicken,239566,1457292,64 +65267,le directeur,329724,64645,8 +65268,Lucy,8556,142653,14 +65269,Zisan,49833,142852,1 +65270,Commissaire Rousseau,289126,7275,1 +65271,Supermarktchef Gerd,85469,5853,5 +65272,Sarah,48846,1014935,7 +65273,Doctor Riley,26358,2221,9 +65274,Marilyn,156268,49265,3 +65275,Tanya Tyotkina,83444,99291,0 +65276,-,29128,104218,9 +65277,Sarah Becker,295723,1418251,22 +65278,Puss in Boots (voice),83201,3131,0 +65279,Sandy,32298,22124,22 +65280,,359154,6535,4 +65281,Ogion,9795,2047,3 +65282,Chad Hunter,110830,583562,1 +65283,Elena,53399,1201288,8 +65284,Pamela,219466,576084,7 +65285,John Patterson,169726,88663,5 +65286,Oren Bergman,13836,1193473,29 +65287,Darren,325133,1542758,14 +65288,Giancarlo,226936,124761,12 +65289,Gavin Nichols,63493,56365,2 +65290,Farmer Hoss,10011,16937,8 +65291,Gene,45505,1174366,5 +65292,Maður í staur 1,115712,1130816,5 +65293,,413644,50518,6 +65294,Leroux,58309,76825,2 +65295,(Cameo) - Botany Chhodenge song,109001,119891,10 +65296,Rocky,300669,530618,0 +65297,Bergstein,26152,28190,6 +65298,Carl Fredricksen (voice),72962,137262,0 +65299,Cole Younger,259975,12121,2 +65300,Cole Clayborne at 13,86543,7431,11 +65301,Julie Sawyer,14834,21859,2 +65302,Mama Hippo (voice),9904,60235,19 +65303,Mère de Mélanie,17630,82119,2 +65304,Fenzileh,50329,1388896,15 +65305,Felix,42023,92757,7 +65306,disponent Grillhagen,129359,428406,10 +65307,Gilles,45000,5964,3 +65308,Desert Jack Sawyer,10829,67017,1 +65309,Roommate,198062,543505,10 +65310,Mrs. Drake,221981,83027,8 +65311,Emma,123109,205474,1 +65312,Control Tower Technician,188927,939589,23 +65313,Bullard,16784,2223,6 +65314,George Degnan,27629,46711,5 +65315,Church Parishioner,297853,1790460,38 +65316,Guillaume Perreira-Leduc,160160,71507,2 +65317,Loretta,59006,73525,10 +65318,Toñín,166207,1396355,4 +65319,Doctor Frankton (as Stanley C. Ridges),47404,2496,3 +65320,Lecturer,228970,152355,35 +65321,Friedlander,49850,556726,7 +65322,Himself,39827,89656,2 +65323,Mistress Ching,285,33500,25 +65324,Carla,219466,134774,6 +65325,Howie,39957,7470,2 +65326,Doc Hudson,13934,3636,4 +65327,Lawyer,281124,40623,7 +65328,Sex,51036,1879482,34 +65329,Fräulein von Rackett,4955,40252,5 +65330,Madame Tussaud,96118,580665,3 +65331,Trina,109886,85848,1 +65332,Simmias,4893,125908,6 +65333,,104374,1619186,10 +65334,Clerk (uncredited),31773,33705,59 +65335,Normand,270886,1562332,7 +65336,Truck Driver,52920,146878,5 +65337,Bernard,86391,933228,6 +65338,Man at Flophouse (uncredited),28668,34270,20 +65339,Mona / Basanti,46403,86060,2 +65340,Capt. Ornikidze,76714,35670,14 +65341,Sheila Patel,18673,83591,1 +65342,"Doris, Girl in the Pub",47312,97424,11 +65343,Wolfgang,16174,37432,3 +65344,,303966,630098,9 +65345,Abernathy,1991,5916,2 +65346,Will,57201,583040,9 +65347,Josh Burrage,241574,15625,12 +65348,Linnet,49391,10978,0 +65349,Martin Cassera,44470,14463,5 +65350,Janet Preston,259183,80255,2 +65351,Spectator (uncredited),28000,179150,68 +65352,Gypsy,49391,1220072,16 +65353,Engineer (uncredited),19995,1062463,76 +65354,Bionda,72032,139130,5 +65355,Father,34193,166066,9 +65356,Pedestrian (uncredited),284052,1653352,49 +65357,Manny,380856,80289,4 +65358,Manya Lodge,100910,14357,4 +65359,Cavalcade Pervert,25625,106675,17 +65360,Drill Tech,53870,172994,15 +65361,Plagge,5899,27875,5 +65362,Eve,309581,16866,1 +65363,Cindy,4257,1772,0 +65364,Ramen Chef,36175,27782,7 +65365,Henry,238589,16857,1 +65366,Joy (age 7),19398,1469193,25 +65367,Magistrado,26323,1072771,16 +65368,Geoff,170548,12450,2 +65369,Rafa (voice),14405,77887,10 +65370,Spud Connors,125736,74875,5 +65371,Pharmacist,10075,62886,12 +65372,,188640,95750,7 +65373,Premier Lionel Cray,15935,75949,8 +65374,Sam Craig,82781,983679,13 +65375,Kay,82696,5064,0 +65376,Sherrie Alviso,14353,76700,11 +65377,,52183,146447,3 +65378,Sopho,9084,17266,1 +65379,Lingo,14226,83646,6 +65380,"Mala, aka Kripik",113638,117033,4 +65381,Pudgy Dark One,80410,159599,9 +65382,Paul,28739,69807,0 +65383,Babette Hersant,11832,19092,1 +65384,Bill Blago,75622,884,1 +65385,Dimitri,70752,559555,6 +65386,Lila Hayes,41556,10690,1 +65387,Nero,43252,2094,8 +65388,Bones,167810,956764,4 +65389,Jacques Posthuma,53472,549351,2 +65390,Ink,127585,1322030,27 +65391,all animals (voice),11848,39952,1 +65392,Yes Patron,10201,1221679,14 +65393,Mayor Watson,40990,963962,7 +65394,Orville,33472,29642,1 +65395,Dog,8008,53575,4 +65396,(as Josu Galarraga),110001,1696385,26 +65397,Corporal Omolodun,325803,1211674,12 +65398,Young Ned Kendall,29483,103995,5 +65399,John 'Johnny' Spear,291558,3364,3 +65400,Roderick,274479,42557,12 +65401,Barbara,18739,77287,6 +65402,SWAT Team,356326,1518351,19 +65403,Stephanie Fareri,254918,131781,0 +65404,Dealer,7210,4924,10 +65405,Olaitan,325803,1428030,17 +65406,Gutka/Shikra,341007,1706349,15 +65407,"Romeo, l'attore",43649,1859307,5 +65408,Chester,403130,1573611,10 +65409,Father Martinelli (as Stephen Apostle Pec),16551,80598,5 +65410,Sathyabama,368006,225312,2 +65411,Roger,142216,1176785,21 +65412,"Pierre Verdier, dit Jo",92257,109345,4 +65413,Tito's Girl,77930,1784617,32 +65414,Aurillia,24149,1382566,5 +65415,Psychiatrist / Prostitute,46930,137824,11 +65416,Dorian,317114,64680,8 +65417,Connie Morgan,37954,119246,10 +65418,Copy editor,67272,135697,11 +65419,Peter,28209,100111,7 +65420,Lt. Glidden,73896,3347,4 +65421,Prosper Latour (French Story),3059,8728,11 +65422,Tad Duval,31265,164771,2 +65423,ди-джей Макс,20963,86864,4 +65424,Iron Idem,185354,209781,0 +65425,Marine (uncredited),44943,1114412,47 +65426,Eveleigh Maddox,353686,52848,0 +65427,Carlos,390357,51489,5 +65428,Ruby Gillis,397520,1482606,5 +65429,Dr. Irrsiegler,277967,139161,3 +65430,Aylin,49073,141756,0 +65431,Proto Zoa,34766,104802,7 +65432,Simon Magnusson,44773,30044,2 +65433,Raghu,209410,1192902,2 +65434,King Faraday (voice),14011,56853,9 +65435,Himself (uncredited),36140,115863,5 +65436,Grant Matson,32124,10697,6 +65437,King pleasure's lady,347630,1695670,49 +65438,Additional Voice (voice),177572,1447307,44 +65439,Padre Pablo,1969,1120515,9 +65440,Brown Eyes' Father (French Story),3059,8835,12 +65441,Policeman (uncredited),936,97281,16 +65442,Bridget Leary,84352,153185,8 +65443,Michelangelo (voice),1273,19507,9 +65444,Mario Fortini,58615,21237,1 +65445,Basson,339530,1088317,10 +65446,Preacher,42179,21282,7 +65447,,63899,932880,7 +65448,Judge Watson,20325,120476,8 +65449,Lucky Luciano,403450,1879744,16 +65450,Maurice Dalbret,5767,20113,3 +65451,Rose Carlton,70476,110548,4 +65452,The moqadam,99698,1188418,6 +65453,Tom Achilles,54779,151109,1 +65454,Veruca Salt,118,1286,4 +65455,Madison,62289,102,4 +65456,Eeyore (voice),24926,148822,9 +65457,"Pino 2O Straniero""",56339,1026959,5 +65458,Dr. Friedrich Hohner,39407,2922,0 +65459,Hijo de Cantinflas,69060,975334,16 +65460,Noor Mohammad Italvi,248698,85874,5 +65461,Sam Hodges,30054,985861,16 +65462,Jacques à 20 ans,372640,83797,6 +65463,Lucy Steele,315010,72857,9 +65464,Neighbor,228028,220048,10 +65465,Horseman - Death,246655,102744,18 +65466,Soldier (uncredited),205584,1535066,39 +65467,Zhena Breta Pidda,143876,238065,4 +65468,Capt. Canavan,37311,10925,6 +65469,Emmy Hays,158967,1115986,3 +65470,Ginny Wonders,231616,1051408,8 +65471,Gertrude Steiney,9541,16866,3 +65472,,52560,17114,4 +65473,Rusher of Din - Sleeper,36751,116116,13 +65474,Young-nam,345888,1556940,1 +65475,Fusteret,137614,108908,3 +65476,Dixie,11584,10409,3 +65477,Hausdame Kunkel,54769,37909,3 +65478,Eric,348631,129298,17 +65479,Augustin Iturbide,78318,10545,22 +65480,EHC Client,71670,1736433,35 +65481,Reporter at House Wreckage,68721,1735543,32 +65482,Braden,55032,120676,7 +65483,Howie Jnr,287903,1544921,15 +65484,,74481,35756,15 +65485,Man With Beard,266285,37093,30 +65486,Julie,108822,22307,1 +65487,Seline,26358,95232,3 +65488,Mrs. Clara Arditti,106020,114836,8 +65489,MILF's Husband,19912,92058,14 +65490,,29299,968929,5 +65491,L'adolescent,30974,1085990,6 +65492,Singh,218898,930045,8 +65493,Stan's Girl,1726,169642,58 +65494,Geminski,286372,1352335,8 +65495,Mitsuko's classmate,340176,1177944,9 +65496,Tina Chobey,156288,83591,1 +65497,Dawn Levov,326285,6161,1 +65498,Metzgerin Bremicker,3539,1825406,10 +65499,Katina,163791,1149688,6 +65500,Richard Peabody,37923,5589,2 +65501,Zess,55435,93801,0 +65502,James,260947,19197,1 +65503,ACO Jake,15189,1982,9 +65504,Louise,188161,71070,3 +65505,Camille Foster,22419,23459,0 +65506,Nerdy Underclassman,26688,96022,15 +65507,Martha Beesley,159469,30273,2 +65508,un truand en fuite,33360,218678,7 +65509,Beau,327528,559281,14 +65510,Patrick Harper,75142,144863,1 +65511,Padre Henrique,21752,87838,4 +65512,,188640,35782,6 +65513,Shelly,30361,1769244,15 +65514,Debbie,7871,1294408,18 +65515,Edwin: Staff of Nutbourne,83015,1208202,20 +65516,Ali the Genie,259593,183587,4 +65517,Ale,105884,225298,0 +65518,Joe Grant,42402,170561,13 +65519,(uncredited),43459,1618827,14 +65520,Cochran,32577,83816,7 +65521,"Himself - Trainer, Urban Body Fitness",97724,1388665,16 +65522,George Harrison,6575,15033,17 +65523,Lucas,333354,24435,5 +65524,Old Zhao,36113,131514,0 +65525,Trey,1272,30082,7 +65526,Ricky's Friend (uncredited),312221,1530879,71 +65527,M. Lowery,47794,242414,4 +65528,Makino Hikaru,392882,1566805,3 +65529,Dr. Freddy Epner,13196,6437,4 +65530,Mr. Osborne,232100,1267385,9 +65531,Norman's Friend,122271,20425,6 +65532,Captain Alan Thorndike,22404,12308,0 +65533,Manuel,115173,18478,0 +65534,"Virginia ""Pepper"" Potts",1726,12052,4 +65535,Luna,74395,123897,6 +65536,Reporter #1,56601,63214,17 +65537,Selma,31547,571440,7 +65538,Larry Lapinsky,31913,1194961,0 +65539,,52612,28462,6 +65540,Tenor,32044,1214565,20 +65541,,356486,1522126,9 +65542,Tony,18189,1301343,15 +65543,Tom Anderson,153228,81183,3 +65544,Girl on Tony's Staff,170517,127365,35 +65545,Brennan,360592,235767,0 +65546,Stella,39781,1394120,11 +65547,Jimmy,4111,34745,4 +65548,Galya,142746,1117909,3 +65549,Elmi,109424,1266862,12 +65550,Beda Bergman,41764,123464,30 +65551,Aurora,1418,962,3 +65552,Mel Drake,32124,108920,10 +65553,Shay,74430,41229,0 +65554,Enfermera joven,53739,1169139,15 +65555,Mrs. Gibson,218778,42165,15 +65556,Padre Domenico,379873,931513,10 +65557,Ernie,17796,1196130,4 +65558,Rani,20495,77234,2 +65559,Liles,9624,100647,5 +65560,Oyster Farmer Barry,16066,79130,9 +65561,Frank Warren,2125,585,0 +65562,Víctor,365709,1262587,3 +65563,Blackleg Knight (uncredited),274857,1157047,71 +65564,Commissioner,102632,92686,3 +65565,The Silversmith,107430,23915,13 +65566,Admiral (uncredited),99934,994615,3 +65567,Woman in Cafe,48677,206379,6 +65568,Hans-Dieter Mundt,13580,2567,7 +65569,Robin's Date,259694,1719586,18 +65570,Teller,44287,99185,6 +65571,Ray Johnson,13173,23626,7 +65572,Silk / Other Spike / Young Mutant (voice),123025,74614,8 +65573,Alex,18613,10882,2 +65574,Sockett,5060,12815,7 +65575,Captain Dan Taggart,35895,8254,0 +65576,Cora Smith,25736,29623,0 +65577,Yan Zenkun,295273,43661,2 +65578,Tommy (voice),28275,91785,8 +65579,Toshi Matoba,25716,1039245,20 +65580,Çilem,31413,1603650,5 +65581,Capt. Stein,257377,41957,4 +65582,The Beast,9470,576408,9 +65583,Guard,24258,1133244,2 +65584,Rikun isä,101838,1029106,34 +65585,Himself,394668,1611363,12 +65586,Arianna,58189,18514,1 +65587,,8088,1533666,18 +65588,Janis,32395,2617,9 +65589,Ryan Hamilton,369524,1595614,24 +65590,Spectator at Pauline's Theater,10834,2303,8 +65591,Horse Clan Leader,19995,68278,27 +65592,Jonny,40208,1774116,6 +65593,Heather,118957,210275,4 +65594,,142320,1464907,38 +65595,Genesis Shareholder (uncredited),365942,1670759,55 +65596,Hashizume,12622,555197,16 +65597,Giacomo's mother,120922,243795,7 +65598,Det. Gibson,332411,131006,5 +65599,Shinkai,12622,134813,8 +65600,Cyborg (voice),300424,65640,6 +65601,Waitress with Cleaver,32657,591210,79 +65602,Aquaman / Man-Bat (voice),300424,23680,1 +65603,Detective,28421,1420897,28 +65604,Jinx,362844,20179,10 +65605,Pete Vaughn,11358,54495,10 +65606,Himself,298522,92782,1 +65607,Magnus Burwood,331161,94791,3 +65608,Mike Pryor,59738,103855,6 +65609,Alice Beesley,159469,106584,8 +65610,Le médecin,162458,1161201,8 +65611,Marc Morillon,76198,147043,3 +65612,Dart Player,22494,1209055,9 +65613,Emma Semmelmann,119816,57364,0 +65614,Himself - Narrator / Interviewer,84284,84369,1 +65615,Marsalis,38916,1539,5 +65616,Kyôko Hirayama,18148,34374,6 +65617,Troy,323675,83271,8 +65618,George,42188,1631055,17 +65619,Gillings,47412,42174,4 +65620,Cristobal,375794,1672140,8 +65621,Aunt Sophie,338100,1378657,3 +65622,Jim McKay,146322,1204260,10 +65623,Carla Powell,205587,85825,10 +65624,Bryant,39766,16431,5 +65625,Dorothy Dandridge,54982,4587,0 +65626,Directrice collège,255913,1714065,28 +65627,Mark,38303,8536,9 +65628,Maize,43119,102727,7 +65629,Cashier,411741,1809938,15 +65630,Rajka,71725,110976,0 +65631,Hugh Pollock,43711,15576,1 +65632,Raberd,427680,1758534,6 +65633,Olive,56491,1298967,13 +65634,King Faisal,157843,1389576,40 +65635,Bullet Line Blacksmith,147829,98052,22 +65636,Waitress,6023,1376150,20 +65637,,294047,1090375,3 +65638,Louis Ruinard,5881,24421,0 +65639,Hong Yulan,40029,1421638,3 +65640,Sohn,104172,1384094,3 +65641,Fish Head,18747,1416065,21 +65642,Ben Quick,40085,3636,0 +65643,Wilcox,147106,113935,5 +65644,Prosecuting Counsel,88320,5182,9 +65645,Hubert Brenner,248933,1284241,8 +65646,Paul,162458,149880,3 +65647,Corrine,25653,231489,3 +65648,Ma Jarrett,15794,78791,3 +65649,Himself,83802,158005,3 +65650,Middle Aged Woman (uncredited),329865,1646460,65 +65651,Barbara Blake,46014,2769,3 +65652,Female Drill Instructor #3,424488,1837280,26 +65653,Ethan Hunt,177677,500,0 +65654,Tillie's Millionaire Uncle,22943,148006,4 +65655,Vikki Vickers,18442,101252,6 +65656,Katy,29083,582698,13 +65657,Gino Lapue,375082,64014,4 +65658,Inge,360249,123453,3 +65659,Pusle,199374,559140,7 +65660,Celeste Wood,11329,59662,14 +65661,Fred,8556,43452,8 +65662,Sunil,56809,1833801,9 +65663,François,378446,1578024,3 +65664,Jeffrey,61008,59117,3 +65665,Dott. Guarrasi,46128,3753,6 +65666,Ellie May Chipley,31548,120010,6 +65667,Zig-Zag,98066,105648,4 +65668,Sid Brooks,35921,14573,5 +65669,Child Hannah,39334,122681,5 +65670,Frank Garland,47739,2755,4 +65671,Lars Meuleman,29101,84638,9 +65672,Girl in Photo,90616,42327,22 +65673,Ash Ketchum (voice),88557,111767,4 +65674,Casale,27045,27035,4 +65675,Vinnie (voice),32202,2557,0 +65676,Tommy Baxter,218329,10862,1 +65677,"Joe, il marinaio americano",11048,1861522,8 +65678,Sister Maggie,23515,1440863,15 +65679,Louis B. Mayer,294016,4255,13 +65680,Duke Bradley,45800,11492,1 +65681,El Jefe,17978,24827,17 +65682,Médico,8329,567333,14 +65683,María José,130457,258049,2 +65684,,32306,61981,1 +65685,Sherriff Jones,40983,10161,3 +65686,Docteur Langlais,148327,545078,9 +65687,Himself,390747,1662622,1 +65688,Classroom Kid (uncredited),25132,1112452,14 +65689,Nakatomi,35110,113738,5 +65690,Newscaster,146233,1567589,30 +65691,Yee Feng / Er Feng,37030,1342843,4 +65692,Taylor,38303,30882,6 +65693,Elizabeth Clancy,339527,51580,8 +65694,"Helena Felczerowa, sąsiadka Kolędów",38869,1537020,5 +65695,Rita,64944,572239,5 +65696,Dan Roden,43562,8498,7 +65697,Himself,84318,942254,1 +65698,Aspen Heitz,136799,1528127,14 +65699,Estanislao Chilinsky,261101,936254,3 +65700,Pete Kresby,9890,60015,13 +65701,Elliott Cooper,26914,124719,6 +65702,Theo,781,11610,4 +65703,Bess Foster,12783,39459,6 +65704,Innkeeper,68737,1368501,26 +65705,Gen. Zieten,212530,47319,8 +65706,Dippy,27973,33024,8 +65707,2nd Detective,36375,13298,9 +65708,Tiny Blonde,12540,107791,12 +65709,Ramon,227964,1518754,2 +65710,Captain Greg MacDonald,8988,945958,43 +65711,Pvt. Joseph Joshua Cliff,39519,136547,3 +65712,Roy Morton,121234,30977,8 +65713,Guerilla,118497,1294316,6 +65714,Kenji's father,26368,85285,2 +65715,Sam,6575,51857,2 +65716,,255948,9671,3 +65717,Owen Shaw,168259,114019,19 +65718,?,279096,1293391,33 +65719,Angel,51250,5576,4 +65720,Ariel (voice),13676,63978,0 +65721,Napoleon Cross (voice) (uncredited),15213,2157,16 +65722,Charles' Valet,1165,1215219,17 +65723,Henry,237171,22479,10 +65724,Jean Trapeau,354105,239396,2 +65725,Francesco,162056,44860,2 +65726,Herself,217925,1089873,5 +65727,CPA Worker,4413,1218257,33 +65728,Justin White,75761,928575,11 +65729,Eduard Einstein,15044,77797,6 +65730,Oliver Jordan,39130,17753,4 +65731,un amico di Nicola,121998,1891813,6 +65732,Alma,79735,59369,3 +65733,Quincenera Guest,268920,1755080,96 +65734,Jasna,382873,1581226,12 +65735,Secretary of War,340101,16940,3 +65736,Rudi van der Merwe,9815,585,11 +65737,Security Guard,299780,25445,6 +65738,Stacks / Jimmy Stackhaus (scenes deleted),32021,30272,17 +65739,Ruby,339148,78324,0 +65740,Bazza,9885,78962,4 +65741,Rita Cavallini,77412,19549,0 +65742,Coach,21955,16433,5 +65743,Luisa's husband,3405,19162,3 +65744,,48636,70602,7 +65745,"Magda, the Maid",3053,26490,8 +65746,,73835,1606269,13 +65747,Macho Corp. Executive,278632,203400,12 +65748,Cendrine,54155,5077,0 +65749,,34019,1122588,14 +65750,Pretty Girl,26811,749,20 +65751,Isabella,36597,115681,5 +65752,Kristi,82990,118243,10 +65753,Amy Quayle,26768,96175,0 +65754,"Sammy Davis, Jr.",16135,79503,7 +65755,Jock McGowan,54318,173431,9 +65756,Vonda Moss,211144,60613,9 +65757,Dracula (voice),159824,19292,0 +65758,Angelo Colonna,46586,107520,6 +65759,Erik,46773,1523008,18 +65760,Cymbeline,240745,228,0 +65761,Jojo,452142,1247016,16 +65762,Gabe,24625,6065,0 +65763,Jeff,120802,58112,10 +65764,Rick,15664,62095,5 +65765,Farrell Gambles,82626,928327,1 +65766,Maureen Watson,28452,100852,3 +65767,Dr. Jack MacKee,26142,227,0 +65768,Uncle,77094,1664629,3 +65769,Dr. Fu Man Chu,3484,2922,0 +65770,le contrôleur des wagons-lits,92251,992824,7 +65771,Amira Ahmed,1726,142213,31 +65772,Kim Woo-jin,363579,150903,1 +65773,Vysloužilec,84030,135460,15 +65774,Reporter,229297,185402,29 +65775,Himself (uncredited),322400,1242992,2 +65776,Korvis,27270,1229172,0 +65777,Jack,343173,1281197,4 +65778,Guy in Trailer Park,310133,1653013,12 +65779,Patrick,397422,1456328,14 +65780,Peter,137683,589461,11 +65781,Princess Mary,65035,178614,5 +65782,Salesgirl,288521,148528,13 +65783,Gorca Ciuvelak,27409,29430,5 +65784,Herself,63144,1624624,19 +65785,Oscar Pilli,72279,11214,0 +65786,Graham's Mother,186869,1862891,15 +65787,Otec Kraus,15387,138551,1 +65788,,320005,1006346,9 +65789,Greta,154537,35027,0 +65790,Vocalist with Ralph Blackman's Band,157343,996532,35 +65791,Inspetor Shah,69346,562226,5 +65792,Davis,146216,17356,13 +65793,Lucy Diamond,540,22123,2 +65794,Isaac,34482,151432,13 +65795,,17935,107761,13 +65796,Lt. James Price,4931,1219270,16 +65797,Lord Cragle,241374,2126,5 +65798,,89445,1667527,8 +65799,Delarue's Gang,266285,1459812,39 +65800,George,256962,1819144,73 +65801,Student (uncredited),4982,1355360,85 +65802,Mrs. Butterworth,116977,3202,17 +65803,Anu,40864,102548,3 +65804,Reporter (uncredited),323675,1769820,65 +65805,Robertino,53648,1002946,7 +65806,Patrick,126250,223684,3 +65807,Frode,24821,111537,5 +65808,Tang Shaoyi,76349,1614307,19 +65809,"Charles ""Chuck"" Levine",3563,19292,0 +65810,,78323,583737,6 +65811,Dr. Alfred Hathaway,18998,36173,4 +65812,Logan Keliher,128437,50962,0 +65813,Assistant Pitman,125736,119255,33 +65814,Executed Prisoner #2,19996,1764140,36 +65815,Teenager #2 / Teenager #3 (voice),48466,127725,14 +65816,Bascombe,20674,58663,14 +65817,Suzie,30361,106446,18 +65818,Sally,81120,20141,0 +65819,Claire Maddox,355008,9015,3 +65820,Card Player,48852,41355,14 +65821,Roland Feldberg,75969,7805,8 +65822,Virrey,122019,100409,6 +65823,Mireia,365709,1223239,2 +65824,Ben (voice),333371,51329,3 +65825,Thumbelina,131799,1093721,3 +65826,Yogi,75969,1878064,24 +65827,Maria Rivano,242240,1138965,3 +65828,Haiji,252874,1241568,1 +65829,,248747,1257146,10 +65830,Guard monk,10610,1358814,12 +65831,Cheater,422603,1130154,11 +65832,Petrov's Sniper,19996,1331637,27 +65833,Francie,15689,1635103,4 +65834,Pat,146380,149793,7 +65835,Alfred,63876,24299,3 +65836,,167330,1719653,10 +65837,la sexy guardalinee Bonanni,48805,1898628,24 +65838,,63414,148052,5 +65839,Japanese Delegate,15371,553097,7 +65840,allenatrice di Stella,303542,1850164,14 +65841,Salvatore,57996,1894241,14 +65842,Doorman,98125,1176510,27 +65843,Marine (Medic),80775,190,10 +65844,Sarge (voice),10193,8655,18 +65845,Police Officer,90616,1740108,36 +65846,Gina,83588,580240,1 +65847,Vicky Hobson,16410,55643,4 +65848,Vi Mason,28586,101230,2 +65849,Storeroom Manager,73215,88043,3 +65850,Kim Sung-hoon,49190,141541,3 +65851,,44716,34866,25 +65852,Donmayer,280004,1336772,9 +65853,Woman in Corona,340101,1245461,37 +65854,Stage Manager,23367,95386,31 +65855,Walter Kyne,36786,1905,5 +65856,Bertha Kristal,111479,61964,19 +65857,Michael Petunia,142106,52480,2 +65858,Krankenschwester,6076,47783,20 +65859,Khalil,24963,1233609,6 +65860,,109587,111055,5 +65861,Aprel,449131,235097,2 +65862,Coley Blake,21950,2176,1 +65863,Professor Jonathan Hoffman,133953,1254750,2 +65864,Sanjay,73578,237048,0 +65865,,267815,1018056,1 +65866,Mother,44746,11356,1 +65867,Sarah Benson,343921,41091,2 +65868,Aboud,12422,147100,11 +65869,Lt. Thomas 'Tom' Keefer,10178,4091,2 +65870,Officer Smith,371446,177403,10 +65871,Ben,11909,1337,0 +65872,Adriano,40817,27274,4 +65873,Kid in SUV,1726,1209708,42 +65874,Clinic Security Guard,206647,1437333,53 +65875,Alain,71496,563086,6 +65876,l'employé du casino,60106,77284,4 +65877,Ariel,326874,28279,2 +65878,Flora Steg,61035,232200,2 +65879,Child,36373,119245,18 +65880,Haghi,78507,77,0 +65881,Gangster in Court,150712,103932,30 +65882,Milena,107035,133051,1 +65883,Shankar,141603,85450,0 +65884,Funeral Family,71503,563109,31 +65885,Dawn Hirsh,38724,178789,7 +65886,Heidi A.,5206,42094,5 +65887,Indian Man,88005,116907,23 +65888,Emma,183412,189026,2 +65889,Saplingjack 3 / Man with Stones on His Ankles,315855,105496,22 +65890,Country Bridesmaid,405473,1800044,40 +65891,At Ice Cream Festival,191068,30212,6 +65892,Waitress,24420,1123849,13 +65893,Kristian Li,32740,1403596,9 +65894,Comandante di Lodi,235208,120157,9 +65895,Pvt. Bracken,133715,1722961,10 +65896,Mr. Connell,128364,98928,7 +65897,Cadet Captain Jennifer Stone,14008,76241,1 +65898,Lara,65614,235407,1 +65899,Herself,4140,34963,7 +65900,Byrne,49521,172809,25 +65901,Devaki,337876,85883,1 +65902,Mother,26514,83987,1 +65903,Leena,219335,1360872,9 +65904,Maria Dorango,43546,104155,13 +65905,Twister Rider at Amusement Park (uncredited),253235,130843,31 +65906,Barbara,23692,184736,10 +65907,Car Driver,299780,234621,14 +65908,Himself,36883,14999,4 +65909,Jonathan,202215,131308,6 +65910,Reverend Zalthall,339408,534,6 +65911,North,52661,128179,9 +65912,Channel 3 Cameraman,10694,42545,9 +65913,Melanie,35395,1502431,8 +65914,Hee-bom Park,21966,4990,18 +65915,Schuyler,14753,540,7 +65916,Russian Officer,329865,1752190,25 +65917,,77057,228547,5 +65918,Luke,107985,1278128,34 +65919,,56666,76233,1 +65920,Gauri Wagh,304134,1192050,5 +65921,,328692,40266,2 +65922,Priscilla (Voice),44896,17140,5 +65923,Peter Mitchell - Prisoner 819,308032,1034681,4 +65924,Doctor Lee,114155,26121,14 +65925,Grace,426230,1181326,5 +65926,Master Chan,365222,1620918,16 +65927,"Roy Nolan, FEMA Director",53870,10430,2 +65928,Aunt Bam,380124,80611,1 +65929,Pinkus,101325,23429,5 +65930,,205349,100932,10 +65931,Finbar,1116,1722637,13 +65932,Danny,25241,1765267,12 +65933,Marilyn Monroe,16135,2206,1 +65934,Student in Bleachers,11247,1776544,62 +65935,Celia,54660,35658,6 +65936,Marvin,84209,4250,4 +65937,Father's Mother,110115,215281,6 +65938,King David,235260,37093,22 +65939,Doctor,52302,1185638,8 +65940,Aster,307479,232,3 +65941,Priest on the road,319993,559779,8 +65942,Jargoniew on Couch,121824,1614471,11 +65943,Olive Hoover,773,17140,4 +65944,Eri's husband,86664,235380,3 +65945,Geschäftsführer,75969,1902098,51 +65946,Scorbutico,23619,1741926,18 +65947,Bobby,68347,1248822,7 +65948,Joe,48838,122589,17 +65949,Himself,142168,41694,5 +65950,Nybakken,284279,141999,3 +65951,Eric,443007,1763905,0 +65952,Professor Neil Chadwick,83125,110283,2 +65953,,43095,1621192,6 +65954,Annabelle,124597,141095,4 +65955,Rico,100088,15699,8 +65956,Honor Guard NCOIC,8988,76800,41 +65957,Police Chief Gavin,117905,10489,4 +65958,Dr.Lohse,49850,1257218,20 +65959,A Soldier,20650,89518,5 +65960,Soldier #1,82654,1172760,8 +65961,Madre de Angela,163706,18847,17 +65962,Detective Adams,33134,1128160,11 +65963,Ron Jon,98066,52049,5 +65964,Young Vivian's Father,10075,62889,16 +65965,,63215,10698,31 +65966,Danny Greene,51209,56614,0 +65967,Poe,45326,188212,9 +65968,Accomplice Running Newsstand (uncredited),31713,33178,12 +65969,Josh,358353,1505815,11 +65970,Sergeant Bishop Cummings,12412,8177,1 +65971,Phil,4688,38948,9 +65972,Tidewater Representative (uncredited),52360,992912,24 +65973,Bonny,86838,1834642,29 +65974,Baron Otto Spandermann,61541,5832,3 +65975,False barber,9474,41280,6 +65976,Bartender,100275,1738960,11 +65977,Nokomis,238985,106109,8 +65978,Paul Barnell,9968,2157,0 +65979,Han Yanzhang,63441,1625479,13 +65980,Christine,325133,1625558,11 +65981,Liv Heyerdahl,70667,76548,6 +65982,Урмас,30619,106595,2 +65983,Dr. Timothy Brady,122857,97446,7 +65984,Vera Trent,186227,34331,17 +65985,Drunk,32690,34377,14 +65986,Detective Hennessy,20625,100919,9 +65987,Bar Patron (uncredited),32526,1176956,20 +65988,Alicia,31131,106479,10 +65989,Pat,169794,1152011,6 +65990,Col. Alex Freeman,267497,109200,3 +65991,Sir Harry,195068,5831,8 +65992,Metropolis Citizen,209112,1691945,52 +65993,Anna,426230,82885,0 +65994,,25626,76913,39 +65995,Grace Ullman,79521,40618,4 +65996,Abigail,337549,884406,4 +65997,Gloves Malloy/Spats Baxter,85420,862,0 +65998,,32237,1112440,1 +65999,detenuto ammanettato insieme ad Alberto Sordi,73827,1901672,16 +66000,Sheriff's Deputy (uncredited),14615,1420897,43 +66001,Jii,240832,1367830,7 +66002,Bill Merrick,178927,2125,2 +66003,Tom Blake,43075,131813,4 +66004,Street Entertainer,42242,107982,23 +66005,Belarius,240745,18792,13 +66006,Tim Gross,173662,85897,10 +66007,Tony Stark / Iron Man,99861,3223,0 +66008,Jack,267793,1253356,15 +66009,Rockabilly,252171,549974,7 +66010,May May Wong,29352,103618,8 +66011,Charlie McFadden,53792,1324774,8 +66012,Hwang Jin-hee,77117,1295460,5 +66013,Brusco,11972,1037957,13 +66014,Nerd Emoji (voice),378236,936666,30 +66015,,375742,1564292,24 +66016,Noble Girl (uncredited),274857,1704057,49 +66017,Julie,288521,1446019,9 +66018,"Kallumal 'Koylewala', Chameli's Father",96159,87549,17 +66019,Brigitte Reimann,265432,678,1 +66020,David,365709,1262589,14 +66021,Telephone Repairman,121636,14064,7 +66022,Detective Hauser,268920,85484,11 +66023,Blofeld's Guard,206647,1599277,71 +66024,Bound Woman,116979,1099137,18 +66025,Big Convict (uncredited),15794,1173502,55 +66026,Doc,18722,8539,24 +66027,Anna von Hagen,11248,12657,4 +66028,Dr. Clive,228066,383624,15 +66029,Conductor,147829,116494,49 +66030,Abraham,336050,1454944,1 +66031,Jean Glessner,10917,141046,4 +66032,Benny,290999,124573,3 +66033,Brian O'Conner,168259,8167,1 +66034,M. Maizière,44155,52348,13 +66035,Lord Claybury,53524,39741,4 +66036,Minor Role,43806,124855,41 +66037,Kalyan's father,60807,146937,4 +66038,Kim,77930,1069630,33 +66039,Mrs. Jane Hoyt,44888,30124,1 +66040,Married Man,351065,180934,12 +66041,Mr. Mitchell,51249,16459,6 +66042,Agente del carcere di Sagunto,73827,103627,7 +66043,Liisa Suomies,224813,143131,1 +66044,Himself,324181,543521,5 +66045,Gollum,1361,16413,5 +66046,The Detective,34100,35026,0 +66047,Aida,133458,1097233,13 +66048,Creepy Boy (voice),82703,18898,29 +66049,Stagehand (uncredited),53419,29274,12 +66050,Girl (Wyatt),16996,1187585,35 +66051,Peppino Barbacane,71133,94418,1 +66052,Coach Kim Won-kang,101766,93999,0 +66053,,28448,86489,7 +66054,Cpl. Rothe,10841,16312,13 +66055,Tin Ngo-San,365222,227782,7 +66056,Giraud's Sister,61109,7641,12 +66057,Sangwon,284135,1347175,4 +66058,Jordan Sunder,8669,116638,9 +66059,Roberto D'Onofrio,142320,1169125,15 +66060,William Carlton as a Young Man (uncredited),105548,1047648,21 +66061,Christophe,57307,56404,6 +66062,Wonder Woman (voice),14011,20584,7 +66063,Gangsteripomo,62900,147773,14 +66064,Sarah,83729,1184679,12 +66065,Daryl Luger,47386,138771,4 +66066,Larry Wilder,64456,7665,0 +66067,Pango,25528,1120220,9 +66068,Depoya gelen genç kız,64468,239258,5 +66069,Club Patron (uncredited),354979,1636795,82 +66070,Warship Sailor,257081,122978,30 +66071,Sima Levi,16019,583765,3 +66072,,57701,226709,3 +66073,College Buddy,32657,939589,72 +66074,Dr. Sweet,12526,31713,4 +66075,,102197,29832,2 +66076,Dr. Chuter,51571,3245,14 +66077,Mattias Ek,2180,1073426,7 +66078,Gris,31380,579236,7 +66079,Claire,204922,37058,3 +66080,Max,180418,935766,2 +66081,Barry,78362,52474,1 +66082,"Sal ""Gummy Bear"" Franzone",7304,52415,8 +66083,Elisabeth,140818,55885,3 +66084,Helen Taggart,35895,111581,5 +66085,Sofía,335053,1322378,21 +66086,Maye,72946,53918,0 +66087,Interviewee,32694,81200,28 +66088,Herself,85984,8231,6 +66089,Gloria Sanders,426670,1548304,9 +66090,Gavrilo (voice),116733,86745,1 +66091,Sarah,338518,120886,10 +66092,Mario,169298,1288585,4 +66093,Judge Thatcher,30054,84935,10 +66094,Orana (uncredited),297762,1527565,70 +66095,Leon Pompera,8144,53950,1 +66096,Young Becky,366045,1830741,11 +66097,Maria I,11799,3783,0 +66098,Suha,67,77498,6 +66099,Gardner,94182,2673,10 +66100,Père,2566,6018,3 +66101,Tobin Frost,59961,5292,0 +66102,Hyrax (voice),9904,1218926,15 +66103,Pancks,47084,1665,7 +66104,Bernard (voice),38055,7399,5 +66105,Sofia,72431,221019,3 +66106,Jason Cutler,1825,1162,1 +66107,Cheerleader #2,9472,1482447,17 +66108,Lam,10265,1337,0 +66109,Al Fletcher,37517,3068,4 +66110,Lizarda,35032,1508013,10 +66111,,140825,25842,8 +66112,Mrs. Darling / Mermaid,273106,1519547,4 +66113,Rev. Charlie Jackson,44718,8854,4 +66114,,121530,1518856,8 +66115,Helena,2349,24063,10 +66116,Kim's Father,64786,1096186,5 +66117,Herman / Lead,138977,972046,1 +66118,Saad,62630,1261092,16 +66119,Giussi,42679,128444,11 +66120,,83491,99297,6 +66121,Shuna Sassi,20481,1459213,15 +66122,Woman in Balcony,82781,1232510,3 +66123,Korean Train Passenger,99861,1760881,49 +66124,Detective Gunner,402582,1631358,3 +66125,Uncle Billy,426670,1716515,10 +66126,Patsy Ramsey Auditionee / Herself,430826,1801202,13 +66127,,138522,1153590,2 +66128,lo zio di Cesare,43548,1205392,15 +66129,леди Нинет / мисс Энн,65089,1600857,4 +66130,Gladys,83995,56618,10 +66131,Richards,28741,101810,0 +66132,Galván,29952,1038487,9 +66133,Kes,11798,203177,10 +66134,Rachael,40807,18997,3 +66135,Servant,274991,110035,3 +66136,Mrs. Paley,71140,163066,12 +66137,Jim,204765,1165294,5 +66138,Hilda Hensley,42045,83145,2 +66139,Hester Collyer,51994,3293,0 +66140,Sean Armstrong,19371,16620,0 +66141,Sidney,99859,4935,1 +66142,Ye Ol' Farmer,111479,1797597,44 +66143,Su Li-Zhen,844,1338,7 +66144,Catherine McDowall,127808,131742,2 +66145,,109587,1055269,18 +66146,Andrew,68387,168504,25 +66147,Twin (voice),108048,25152,4 +66148,Bride,227156,1412941,18 +66149,"Herman Prentiss, Interrogator",19338,2222,3 +66150,Emilio,272878,73127,7 +66151,Elvis Presley,23178,56265,2 +66152,,193893,118593,16 +66153,Pearson,132928,32192,23 +66154,Jay Height,270303,1094091,0 +66155,Secretary,18072,1530153,23 +66156,William,345922,1515527,28 +66157,,15830,1439652,19 +66158,Tatsuzō,253232,1182592,2 +66159,Maries Vater,231216,1087,3 +66160,Burning House Realtor,4960,87007,12 +66161,Jane/Elaine,327528,37158,1 +66162,Grannen,315362,47070,3 +66163,Marko Lazar,197849,229382,0 +66164,Dr. Vera Perkova,18178,550005,2 +66165,Andrew Carmel,52270,4353,2 +66166,,79025,94420,2 +66167,Melish,118889,89728,18 +66168,Tam's Dad,56329,1189923,12 +66169,La banquière,329712,1517231,6 +66170,Ed,34100,59285,2 +66171,Jacoby,46261,52760,3 +66172,Gloria,14430,1011148,9 +66173,Cmdr. Michael Haydon,31984,101678,0 +66174,(India),1926,20046,7 +66175,Hotshot Hezzie (as The Hoosier Hotshots),173634,1506698,6 +66176,Efrom,86603,140342,7 +66177,La femme de Giovanni,122192,20234,7 +66178,,241140,70876,12 +66179,"Ole, kjelketrekker",20372,1270299,12 +66180,Lehrer,61552,1151737,14 +66181,Recruitment Sergeant,256962,1188456,20 +66182,Laurel,316885,972115,11 +66183,Kariachan,332827,930730,2 +66184,Sparky,7459,93111,25 +66185,,15776,1565325,20 +66186,2nd Fisherman,395992,1771668,7 +66187,Judge Duffy,345003,1838595,19 +66188,Larry Tyne,59881,7795,1 +66189,Korea General Choi,11653,127798,17 +66190,Brian,55347,168913,29 +66191,Madame Falconetti,50350,143405,1 +66192,,348315,114753,9 +66193,Adam's acquaintance,74921,1085695,3 +66194,Cherry,354133,1496072,14 +66195,,11196,1444544,27 +66196,Keira (speaking),129533,94481,2 +66197,Donna,24655,1173474,12 +66198,Chan,40346,57617,7 +66199,Vasseur,37779,118512,5 +66200,Female Cop,51036,1879467,13 +66201,Kimberly,30780,100373,6 +66202,Lena,319924,1172108,10 +66203,Dorian Gray,47459,32058,0 +66204,Tony Cheung,18899,62419,12 +66205,Paton,46513,116975,13 +66206,Newspaperman,3782,235382,27 +66207,Policeman 1,137145,136043,5 +66208,Toivo Kärki,379335,125799,4 +66209,Himself,27637,1724698,41 +66210,Geldwechsler,75578,293480,13 +66211,Grillbar-indehaver,76312,114719,12 +66212,Natascha's Grandmother,166666,34039,6 +66213,Irving Abel,8842,830,2 +66214,Judy Bower,24341,91533,2 +66215,Himself (narrator),13630,1017283,7 +66216,Falque,76757,25451,20 +66217,Ashley,267793,1315946,16 +66218,Uncle Frank,773,4495,2 +66219,William,245324,19929,2 +66220,Aulis,20164,85751,9 +66221,Homeless Caroline,12182,156591,21 +66222,Prince Charming,30126,105732,3 +66223,Mr. Daniells,43880,9084,12 +66224,Shingen,76170,9195,1 +66225,Burgess Pedestrian (voice),81188,1364660,14 +66226,Herself,400668,1239066,4 +66227,Russian general,111839,3087,3 +66228,Man in Restaurant,20301,81970,9 +66229,Hsiao-Kang,36253,71171,0 +66230,Boy in Car (as Robby Bointen),40028,1020221,15 +66231,T.J. O'Leary,55663,157411,9 +66232,Ujinaga Narita,209032,20333,9 +66233,Emma Kristiansdotter,27622,13996,6 +66234,Kendall Williams (uncredited),50549,83149,21 +66235,Liu (as Selena Mangh),146926,1166917,5 +66236,French Anchorman,5172,1356745,48 +66237,Martha,16563,1184300,13 +66238,Herself,390747,1662631,10 +66239,Braco Gavran,67633,143461,0 +66240,Mózes,294640,1367052,1 +66241,Casting Director (uncredited),31913,47773,24 +66242,Gustav Mahler,83209,23750,0 +66243,News Anchor,1595,177623,9 +66244,Blonde Flirt (uncredited),120831,1132056,10 +66245,Stimolo,65048,14276,0 +66246,Restaurant customer,27137,1185448,14 +66247,Kung Sang,17725,30082,0 +66248,Psychologist,18387,16525,8 +66249,Anita Sood,54256,150220,3 +66250,Dr. John Simon,69075,60292,3 +66251,Murdered Spectator,25625,106674,14 +66252,Mesa,71670,65826,10 +66253,Frank,27886,53588,5 +66254,Muldaur,15982,923,5 +66255,Buttercup,144792,1069732,14 +66256,Mr. Pinky's Customer,2976,1752748,103 +66257,Pierre Le Compte,294819,29427,1 +66258,Rizzo's Connection,84209,156191,12 +66259,Caiaphas,235260,383624,13 +66260,Mog Habbijam,38770,1217401,13 +66261,Mrs. Nattle,81120,591021,9 +66262,Peter,20432,88675,1 +66263,Woman with Children,274325,1577108,13 +66264,Chaplain Johnson,11161,68399,7 +66265,Su,12638,14326,1 +66266,Attorney General George Matherson,333352,7025,14 +66267,Janice,91679,1272964,5 +66268,Bill,47863,15099,6 +66269,U.S. Sub Sonar Chief,17911,85096,10 +66270,Karen,28739,1292047,16 +66271,Nurse Stein,41171,40385,20 +66272,Bob O'Leary,78734,89687,7 +66273,Stormtrooper,330459,19242,80 +66274,Father Benedict,6972,108924,12 +66275,Ginger,333091,1194765,8 +66276,Pälä's wife,286267,1317590,8 +66277,Daniel,4688,38945,6 +66278,Clarisse Guiton,62675,35917,4 +66279,,132705,1095875,7 +66280,Inspector Jackson,17136,81292,5 +66281,Prof. Bascombe,6591,26598,5 +66282,Creature 2,338676,1493400,15 +66283,Duchess Kipiani,371741,935,4 +66284,Anokhi,14159,85666,1 +66285,Laura,30082,105668,0 +66286,Homer van Meter,35926,3339,8 +66287,Cheerleader / Dancer #4,11247,1039613,40 +66288,Fabio,23619,141830,12 +66289,"Guard Subaltern (segment ""Lord Mountdrago"") (uncredited)",45577,10662,13 +66290,Betty Roberts,94811,20365,2 +66291,Maid at Freud's House,48231,1089494,31 +66292,Chris,47194,118911,4 +66293,Nan,39356,1753262,17 +66294,Stephan,18472,29878,1 +66295,Clive Park,12573,965140,10 +66296,Journalist (uncredited),1726,1209726,81 +66297,Xavier Cozic,290365,1158762,6 +66298,Antonio 'Tony' Parenzo,52808,44961,2 +66299,Angelo,356461,227242,3 +66300,Dorrie,3072,1076576,13 +66301,Nafloyd Scott,239566,1036174,16 +66302,Newspaperman with Pills,89086,30240,35 +66303,Larry Cain,184741,11492,1 +66304,Jane,358353,97783,5 +66305,Beta (voice),24589,18792,1 +66306,Davis,120357,34505,11 +66307,Coach's Daughter,401164,1817452,12 +66308,Lt. Krupp,7454,10701,5 +66309,Maj. Gen. Wilton J. Ramsey,110502,86356,7 +66310,Additional Voice (voice),10193,10,38 +66311,Jabulani,103012,63143,2 +66312,Sakura,208700,1251240,4 +66313,,146270,88437,6 +66314,Flecklbauer,12523,572646,10 +66315,Mrs. Reall,73194,1271204,21 +66316,Hester,77794,97167,5 +66317,,76312,1400327,21 +66318,Constable Wan Chao Fan,107891,1179218,3 +66319,Commodification Montage Dancer,8915,1820444,19 +66320,Ben Wheatly,23367,53368,3 +66321,Chief Espinoza,102629,1031256,4 +66322,Ellen,118549,1035620,8 +66323,Rawlings,52314,145752,1 +66324,Jeffrey,6877,51331,7 +66325,Julie,199374,1443492,9 +66326,Barry Burgie,16058,78959,10 +66327,The Old Lady,65874,1281804,5 +66328,Suspect Ramazan,74879,1001780,11 +66329,Aunt Ustyusha,260584,1881919,5 +66330,Aubrey Catto,413762,78427,1 +66331,Sam Moore,96936,527313,4 +66332,,241340,39955,2 +66333,,279096,1387024,37 +66334,Ballroom Manager,43809,89729,30 +66335,Frazier's Dad,188102,1845742,24 +66336,Colin,71859,172150,7 +66337,Himself,350762,77763,1 +66338,Nakagawa Keiji,11838,552510,17 +66339,Tozer,15935,78962,17 +66340,François Perrin,12089,24501,0 +66341,Peasant,43459,1506427,9 +66342,Kellnerin,11122,238707,4 +66343,Max,336691,1469805,9 +66344,Asobi nakama (Friend),28268,1896461,15 +66345,le prince Ottokar,42537,262394,2 +66346,Mary,28325,100434,5 +66347,Reporter,921,38572,28 +66348,Cristal,336004,141518,8 +66349,Female Newscaster,31146,1841267,22 +66350,Mother,16791,47615,0 +66351,Achmed,19725,746,4 +66352,Upscale Auctioneer,10710,154263,29 +66353,Luigi Di Sarno,37083,2647,7 +66354,Ellen Norris,33224,110342,6 +66355,Carole Lombard,50008,66791,9 +66356,Clare,175035,103441,0 +66357,Killer #1,109610,1499013,13 +66358,Compton,44960,1238032,7 +66359,Detective McKenney,210047,38086,10 +66360,Sara,16015,90061,1 +66361,Merle,157847,969635,3 +66362,Janitor,82654,101221,12 +66363,Paparazzo 2,70666,1863901,42 +66364,Zimin,184155,1816840,10 +66365,Fairy Godmother (voice),809,12094,7 +66366,Gendarm Hermann,119820,3970,9 +66367,Himself - Storyteller,128216,376404,4 +66368,,398452,1538303,8 +66369,Allen Bauer,54107,76035,0 +66370,Nathan,15019,16165,5 +66371,Client restaurant,35025,1152669,22 +66372,Simpson,42062,13359,12 +66373,Robinson,73208,6637,3 +66374,Mr. Kwon,406052,997197,19 +66375,Tracy,89720,1379207,4 +66376,Bulma Briefs,39102,122193,9 +66377,Baba,81549,592094,2 +66378,Model,32552,1472518,43 +66379,Julie Owens,158150,33336,3 +66380,Milo,184741,85897,6 +66381,Anno Tanaka,7549,72202,14 +66382,Samuel Staziak,30921,85949,0 +66383,Female Guard,16022,1140276,10 +66384,Naga the Serpent,125510,1462944,2 +66385,Flamethower,189,1155321,45 +66386,Dorothy Benjamin,98328,31844,1 +66387,Reporter 1,61035,1446116,43 +66388,Zeki's mother,175331,1052246,7 +66389,"Sablin, Starshina",174720,1118291,1 +66390,Sgt. Harrod,11046,102663,9 +66391,Kate,318922,1463197,17 +66392,Himself,66109,92782,0 +66393,"Señor de la Cruz, Archibaldo's father",37628,1597032,9 +66394,Man with Flowers,16135,79512,17 +66395,Jimmy Smith,32489,1292,1 +66396,Jim Lovett,204040,29999,0 +66397,Napoleon,45191,29518,0 +66398,Captain Chung,32233,72732,2 +66399,David,294254,108036,20 +66400,Ned,50875,87070,11 +66401,Vanessa Shelton,31672,15753,2 +66402,Jim Clark,196359,20753,6 +66403,Grace Lee Boggs,397717,178124,37 +66404,Gianni,42420,66166,0 +66405,"Antoine Monteil, le ministre des Finances",75066,37990,4 +66406,Steve,300090,456066,3 +66407,Adams,56725,97878,6 +66408,Intern #2,9667,289370,7 +66409,Lisa Taylor,2830,1234,1 +66410,Apprentice to Wang Pu,217923,1436295,50 +66411,Ethel Le Neve,106020,46780,2 +66412,Brietta / Troll / Wife #2 (voice),15906,293984,2 +66413,,86040,1196353,3 +66414,Head Administrator,15316,4255,3 +66415,Davey,43817,584994,11 +66416,Classy Lady,335970,1569771,80 +66417,Boy,56558,1271030,40 +66418,D'Medico,30941,30836,22 +66419,Jody,251419,1188084,3 +66420,,105760,267962,5 +66421,Ronny Rosario,26390,31713,8 +66422,Bobby,31275,1031173,7 +66423,Don,61527,154784,2 +66424,Business Woman,56264,97880,11 +66425,Greenleaf's Maid (uncredited),88288,8829,9 +66426,Max Happy,159201,13637,2 +66427,,83195,1746017,4 +66428,Harpo,13911,10800,1 +66429,Markus Roslin,377290,47176,5 +66430,Race Official,19809,1696487,6 +66431,Michael Faroni,98289,69249,10 +66432,Grim Knight's Hot Twin #1,243683,1397787,22 +66433,Klientka w banku,91691,1138241,5 +66434,Black Prisoner,26376,1367614,43 +66435,Lisa,209248,51002,3 +66436,Hattie,94725,1214157,12 +66437,Phillipe,128917,80771,9 +66438,Pinocchio (voice),39045,35091,0 +66439,Helmer,217775,9133,5 +66440,Farmer on Thresher,8270,54232,31 +66441,Wendell,343934,1148130,11 +66442,Laertes,28238,179613,5 +66443,Midge Sheridan,239519,20124,1 +66444,Blotto,102362,1272973,10 +66445,Girl on Top,19912,568046,22 +66446,Policier / Evéché,37645,1493331,39 +66447,Tenny,140470,2930,4 +66448,Joe Tynan,47906,21278,0 +66449,Marie,377287,59826,2 +66450,Deputy Kingsolving,13519,10380,27 +66451,Tom Reed,262338,17051,1 +66452,Little Girl,14123,1446431,41 +66453,SDF Intelligence Maj. Tokihiko Kobayakawa,36243,300793,9 +66454,Girl in Dress,206296,1391352,13 +66455,Jay Collis,22881,1127790,14 +66456,Augie,118760,65744,5 +66457,Copiapo Hostel Owner,157409,1272880,11 +66458,Ki-tae's wife,108972,554025,10 +66459,,412363,1769117,7 +66460,Yuko Momodani,391004,1599988,3 +66461,Margarita,198795,1500292,15 +66462,Darrick Doerner,291,4323,1 +66463,Simona,116437,1466299,6 +66464,Granma Perkins,48207,1001016,16 +66465,Senatore Binetto,374416,80230,6 +66466,Douglas,371181,92612,6 +66467,Peggy Lord,242382,115990,2 +66468,Scipio Pagliughi,221527,68406,2 +66469,,69310,15170,35 +66470,Waka,168994,24551,1 +66471,Aziz Aga,188765,1389069,5 +66472,Totong,64450,1522642,18 +66473,Sir Lionel,18978,1880443,8 +66474,Philippe,77338,33161,0 +66475,Mrs. Fairman,42703,86346,13 +66476,Esma,317,4635,0 +66477,Dr. Dietz,13519,54859,28 +66478,Toddler Sydney,339419,1650204,28 +66479,Johnson Kid,72856,1388783,8 +66480,Metropolis Cop,209112,1691983,71 +66481,François Narou,57327,48440,3 +66482,Jack,337549,1462721,6 +66483,Maciej Tuchała,74922,66967,6 +66484,Dr. Chandler,43806,32995,19 +66485,Esther Bloomenbergensteinenthal,19187,20750,1 +66486,Himself,63144,1624635,37 +66487,,188180,108475,1 +66488,,222517,1207945,17 +66489,Telephone Jack,1950,3223,4 +66490,,87296,1659602,11 +66491,Terence Aloysius 'Slip' Mahoney,180819,89989,0 +66492,Jane Hilary,43912,5320,7 +66493,Sandy Combs,4413,31268,20 +66494,Erez Levi,16019,110359,1 +66495,Rolando,57866,34334,9 +66496,Madame Zenobia,194509,14450,2 +66497,Lt. Dunbar,41030,99754,3 +66498,Hibachi Patron,419459,1655886,14 +66499,Wrestler on Television (uncredited),32552,1159356,11 +66500,Checco,231176,114366,0 +66501,Sarah (voice),3989,34520,3 +66502,One-eyed-cowboy,45227,99269,13 +66503,Louise Wilanski,22307,3019,8 +66504,Dr. Peter Shirtcliff,356486,147,0 +66505,General Reser,32029,3265,5 +66506,Hood #2,11610,136195,12 +66507,Griggs,167882,66295,12 +66508,Laura,55632,20750,6 +66509,PR Exec #1,9541,11662,11 +66510,Clinton Jones,98364,12147,0 +66511,Chow Nam,42120,1193721,6 +66512,Receptionist,8669,1281026,33 +66513,Himself (archive footage),318224,1661475,23 +66514,Sher Khan,103236,110085,2 +66515,Handsome Soldier,1724,1117748,58 +66516,Jacey Jeffries,64191,31838,1 +66517,Narrator,95414,560296,4 +66518,Orhan,85699,1365732,20 +66519,Nereus,58790,12515,1 +66520,Spc. Josh Berg,105945,1317208,8 +66521,Grandma,7549,52901,3 +66522,Karin,228968,1692781,9 +66523,Peter,19014,27237,1 +66524,Natalie Kellison,302042,224187,1 +66525,Peping,64450,56256,0 +66526,,31275,1853893,19 +66527,Kostya,64736,1192055,10 +66528,Pat,94725,6780,10 +66529,Wells,128270,1136135,4 +66530,Detective Vasquez,24874,92778,9 +66531,Aardvark Girl (voice),8355,1687265,27 +66532,Aarti Sehgal,21566,76233,1 +66533,Homeless Man,369524,1808627,28 +66534,King Taylor,7234,52129,9 +66535,Delinda,14642,1234262,9 +66536,Lexi,15664,1980,0 +66537,Himself,142478,14009,10 +66538,John,426253,1520065,6 +66539,Defense Attorney,14615,12502,14 +66540,Lobbyist #2,45324,135256,11 +66541,Angel,43809,590532,7 +66542,Zoé,381255,1572629,5 +66543,Waiter,11247,1621835,60 +66544,Emir,152653,20442,1 +66545,Sam,21141,10194,7 +66546,Herr Kolditz,379019,1195518,8 +66547,Charles Conrad,117509,154890,2 +66548,Martha Cox,10947,964908,12 +66549,Prostitute,116979,1835164,19 +66550,Pregnant Woman,76493,17696,11 +66551,Telephone Operator,127812,1268226,30 +66552,Harry Dix,11643,2278,7 +66553,The Killer,195796,55589,1 +66554,Stipe,44246,4795,1 +66555,Alice,42242,6360,12 +66556,Kieko Sonobe,168295,76976,0 +66557,Elisabeth Staf,2180,18068,0 +66558,Helga,195385,37815,10 +66559,Stewart Pierce,417870,450,5 +66560,Michael Gold,35632,57700,0 +66561,Slaven,77292,6970,5 +66562,,64204,1646172,8 +66563,Amjad,187028,1187039,3 +66564,History Teacher,222388,1326243,12 +66565,Phyllis,83384,12021,2 +66566,Colin,60935,52702,13 +66567,Danny,209406,93031,4 +66568,Insinuating Wife,32577,1836,12 +66569,Peter,508,5294,14 +66570,Richard,8998,52933,2 +66571,Janie Watkins,32021,19337,10 +66572,Cycling Coach,95919,1479863,8 +66573,Doctor Mark Kik,62694,29655,2 +66574,Woman at Funeral,85699,1293,18 +66575,Sergeant-at-Arms (uncredited),10178,2102,29 +66576,Teacher,188598,1776759,15 +66577,Jonas,227200,1243017,10 +66578,Guano,242076,4030,6 +66579,Zhou Yunfen,264264,74421,2 +66580,Simeon,24272,140570,9 +66581,J.R. Jacobs,205798,568531,2 +66582,8th Grader,193893,1381478,30 +66583,Nettie Crane,120657,111581,4 +66584,Secretaria,14430,76873,6 +66585,Henry (voice),286940,89819,3 +66586,Madox,32610,40180,12 +66587,Megan 'Mousey' Scanlon,227700,550552,8 +66588,Tim Manning,375082,62597,9 +66589,Wicca,328032,1354105,11 +66590,Washington Bellamy,51049,12836,0 +66591,Bo,136146,37008,3 +66592,Oscar,37420,10380,3 +66593,Dorothy Dodge,285400,79245,2 +66594,Gregoire,52936,2283,5 +66595,Zip (voice),27300,6212,9 +66596,Xuan,11553,69828,5 +66597,Harriett Doyle,58664,167825,5 +66598,Olga,150208,125588,7 +66599,Joséphine Masson,76200,577829,6 +66600,Homeless sales guy,81435,1200162,5 +66601,Tom Murphy,55604,88735,12 +66602,Hugh,270303,133980,3 +66603,,448879,1783353,4 +66604,Dr. Metz,47758,30184,4 +66605,Hefferman,72638,1551920,41 +66606,Vincent's Grandmother,154972,27881,6 +66607,Priest's Wife,68737,1392954,31 +66608,Fats,85023,30980,3 +66609,Brian Hawke,44631,8724,0 +66610,Naked Dead Girl,14983,77660,1 +66611,Jolly Joe Johnson,252916,108275,11 +66612,UFO Spectator,279096,1386310,31 +66613,,428645,1717348,6 +66614,Mohamed Lundy,371446,467645,0 +66615,Lehrerin,4955,41005,17 +66616,Chet,428687,76625,3 +66617,Patricia,347666,54146,3 +66618,Angry Father,298228,98865,7 +66619,,17606,1077781,4 +66620,Troy's #3,323675,1349052,24 +66621,Make Out Stripper,354979,1746238,44 +66622,Anyon,336149,1581210,10 +66623,Mousse,51971,4166,0 +66624,Teenage Vandal (uncredited),4982,1526773,109 +66625,American Businessman #1,153,496263,15 +66626,Security Guard,283445,1720586,15 +66627,Mimi,151431,236388,12 +66628,Maribel,179812,1162325,1 +66629,Gloria,288710,59592,4 +66630,Sports Doctor,401164,1781892,7 +66631,,61533,62036,4 +66632,Monica,123103,130875,1 +66633,General Grawl (voice),16866,64,4 +66634,Amanda,193603,1376003,1 +66635,Funeral Attendant,9963,61100,9 +66636,Princess Fiona (voice),809,6941,2 +66637,Bystander,280617,1035398,4 +66638,La fille du cabriolet,41211,72689,19 +66639,Mannix,5123,176797,15 +66640,Arvid,125490,86237,3 +66641,Yoshio Minamoto/Shizuka's Father,265712,1244458,11 +66642,Frank Heffley,82650,18324,4 +66643,Fabian,140814,1020699,6 +66644,Ms. Southwick,82631,1589148,17 +66645,Coffee Shop Gawker,91679,1554055,35 +66646,巴克/鼬鼠,8355,1063128,9 +66647,Daphne / Cat Witch / Honeybee (voice),12903,15761,2 +66648,Griselda,11839,12969,5 +66649,General Kerr,45398,47549,3 +66650,Studente,20414,128475,17 +66651,First Lord,77822,52220,8 +66652,Maggie,19621,103670,3 +66653,,10484,145197,18 +66654,,32764,134492,10 +66655,Dr. John M. Besant,85507,14487,2 +66656,Pizzutti,335051,238495,7 +66657,The Thief,20766,39390,6 +66658,Waitress,41206,91655,18 +66659,Dr. Stan Weathers,8669,40551,11 +66660,Tuur,277190,1041576,3 +66661,Spartan Warrior (uncredited),1271,101253,84 +66662,Tess Nichols,6557,50463,2 +66663,,45197,57609,3 +66664,Sue,119592,100480,5 +66665,Mañuel,35632,1076773,7 +66666,Jack the Barman (uncredited),31984,1769062,26 +66667,Grampa,76101,5950,4 +66668,The Phynx,139718,1174355,26 +66669,Jacob's Mother,51349,110036,8 +66670,Female 2,48333,1090200,13 +66671,Почтальон,94696,1190179,5 +66672,Mrs. Chojar,14159,85734,16 +66673,Shauna,55347,235848,7 +66674,Seo In-woo,83013,25002,2 +66675,Woman whose left arm shot off,32233,138494,3 +66676,Igarashi,104277,4990,1 +66677,Groom (uncredited),28571,121122,20 +66678,Son Gohan,39107,90496,1 +66679,Komandirovochnyj,35428,932352,9 +66680,Jian Bin,64156,1170661,1 +66681,Herself (Brokedown Cadillac),13836,63107,31 +66682,Nicholas 'Nick' Allen,242332,116113,0 +66683,Costandin,319993,479941,1 +66684,Cristina Maria,20941,145061,1 +66685,Banker,118889,33705,71 +66686,Schleier,74950,35425,3 +66687,Mrs. Quarre,2017,6465,5 +66688,la première caissière Shopi,1254,41880,8 +66689,Veselinova baba,67633,111061,12 +66690,Lady Macduff,133448,178602,6 +66691,Nightmare Man,24409,1694712,3 +66692,Hi-5 (voice),378236,55466,1 +66693,Henchman,345915,78890,24 +66694,Bertie Ahern,408616,42600,10 +66695,Angeelika,318184,1413687,3 +66696,Father,26514,95597,2 +66697,Tom (as The Merry Macs),33541,1423924,5 +66698,Mother,14357,583611,3 +66699,Wayne,86305,1359997,7 +66700,Earl Cole,85648,183155,8 +66701,Olivia,323929,1423663,9 +66702,Janelle,142216,1176789,25 +66703,Geroge,25973,1328,2 +66704,Yuma,96133,100956,11 +66705,Businesswoman (uncredited),337339,1718175,37 +66706,Dr. Pechstein,290911,1307362,5 +66707,Doktor Stárek,15387,1080767,10 +66708,Ian McFarlane,337549,17483,3 +66709,Mark Cohen,15199,87928,1 +66710,Father Claverly,176867,103493,13 +66711,Delarue's Gang,266285,1459813,40 +66712,Colonel Miguel Lopez,78318,29273,8 +66713,Duran Ring Girl,332979,1293586,13 +66714,Michael Smith,75564,1399609,10 +66715,Female Customer,157351,25023,10 +66716,Nikki,83896,947574,9 +66717,Surya Prakash,20495,35759,6 +66718,Mrs. Pilkington,815,1412876,11 +66719,,88273,1054388,15 +66720,Uncle Norm,17303,173455,10 +66721,Navalhas,373397,1056139,9 +66722,First Class Attendant,242042,555658,38 +66723,Soldier,3146,235381,11 +66724,Skinny Man,310137,77597,6 +66725,Margaret Allen,43268,8535,2 +66726,Gwen's Cabbie,102382,1232538,30 +66727,Little Lord,290762,1640423,12 +66728,Herod Agrippa,206514,9140,15 +66729,Stephanie,9675,25540,3 +66730,Herzog von Braunschweig,115023,938344,12 +66731,Zlata,371459,512966,6 +66732,Norman Bissonette,28001,99369,4 +66733,Laura - Matilda's Maid,43903,33006,10 +66734,Sam,121848,80546,7 +66735,Caleb Witting,15759,78720,3 +66736,Gazelle (voice),269149,446511,2 +66737,himself,30966,105298,0 +66738,Koloman Zsupan,209248,39935,2 +66739,Mac,92341,14688,2 +66740,Edgar Linton,36597,7062,2 +66741,Rizzo,11055,18841,0 +66742,Ratner's Father,145135,154816,25 +66743,,74481,110707,13 +66744,Sultan,452606,556475,0 +66745,Gene Aldrich,302828,105727,3 +66746,Malik,109001,76790,9 +66747,Oktiabr'sky,102197,80999,1 +66748,Abby Parker,34729,67848,1 +66749,Jimmy (uncredited),316154,8688,11 +66750,Ruth,58462,84422,14 +66751,Mrs. Potiphar,24272,13637,3 +66752,Sophia Monet,216374,11617,0 +66753,Yasu Takahashi,119409,1631191,9 +66754,Vinessa Weirengo,412209,1370983,6 +66755,Ronnie,62289,20284,1 +66756,Joan Caper,11338,7303,13 +66757,,229353,155766,5 +66758,Hendrix Kid,8457,1586955,35 +66759,Valentin Dessosse,10910,115059,8 +66760,Susie Salmon,7980,36592,3 +66761,Dream Girl,316154,1842095,21 +66762,Doctor,52784,6283,2 +66763,Émile Récamier,31522,24299,0 +66764,Adanne,335053,82700,2 +66765,Hunter,92635,99235,3 +66766,mozzafiato,103216,11223,7 +66767,Melle Rateau,68637,84430,1 +66768,Ed Jacomoi,16083,886,5 +66769,Harold,10476,53264,13 +66770,Samurai Ensemble,616,1593820,37 +66771,Military Policeman Escort at Fight (uncredited),28000,1216592,15 +66772,Sheriff,23382,2372,1 +66773,Maddog,10425,78892,9 +66774,,254869,69310,34 +66775,Lin Mae's 2nd Lieutenant Li Qing,311324,1780695,14 +66776,Mrs. Astrakhan (voice),9836,6199,9 +66777,Steve,18955,83967,2 +66778,Kris Hillridge,70821,47757,3 +66779,Angela Vaughn,232100,1267381,5 +66780,"Lili, Mimi's Maid (uncredited)",34977,97042,12 +66781,Head Policeman at Raid,64928,980330,26 +66782,"Sajat, mąż Nane",25667,235993,6 +66783,Un flic,77673,113603,24 +66784,Cemal Müdür,10821,930673,11 +66785,Dan Packard,39130,29260,2 +66786,Jacques,20108,143032,1 +66787,Dave,244458,55585,8 +66788,Bobby,426230,206485,6 +66789,Olin Hickory,16661,148401,4 +66790,Policeman,250332,175427,23 +66791,Камиль,83456,86863,2 +66792,Dan Milner,33673,10158,0 +66793,Lt. Col. K.N. Ritchie,44943,52483,22 +66794,Bianca,312221,62561,3 +66795,Amazon Townsfolk,297762,1813934,39 +66796,Tcherno,186991,96928,4 +66797,Henk Woldring,28527,45747,3 +66798,Knights Templay Hugh,17669,113893,11 +66799,Michelle Hughes,298540,75696,6 +66800,Mark Ricks,168027,43120,7 +66801,Fai,63081,1256326,4 +66802,Jesus,57201,76857,22 +66803,,43751,99572,13 +66804,Marion,384594,5480,2 +66805,Bessie,16182,62967,10 +66806,Lin's Manager,44458,88495,7 +66807,Mother (voice),77762,86666,3 +66808,,376934,1176836,8 +66809,Nudist,92496,1795183,28 +66810,Hairdresser,2976,111715,98 +66811,Mr Gibbons,29694,33220,19 +66812,Uncle Anatoly,18836,19301,4 +66813,Mr. Kaznyk,37686,88950,12 +66814,Boy (uncredited),28000,111487,16 +66815,,111398,1185642,12 +66816,Sophia Luciano,82077,2630,2 +66817,Cleo,71114,46853,0 +66818,Mrs. Arkelian,99909,13996,17 +66819,Specialty Singer,11939,1146992,12 +66820,Bek,205584,1017347,0 +66821,Mage-chan,165718,1246233,0 +66822,Max,429238,1719212,16 +66823,Young Daughter,145135,1274510,15 +66824,Mrs. Carter Wardley,43792,29599,11 +66825,Mabel,88075,99755,10 +66826,Malloy,75090,468492,12 +66827,Austin's Dad,11247,114021,12 +66828,Claudia,53739,1064908,12 +66829,Stevie,25707,94138,5 +66830,Prof. Siddharth Chaudhary,46387,6217,4 +66831,Chibi,43967,551981,8 +66832,Lew Fields,18651,1162089,4 +66833,Charleen Kane,70351,147396,7 +66834,Urban,51349,119216,4 +66835,Strip Club Patron (uncredited),186759,1358567,40 +66836,Chun's father,25645,1616856,10 +66837,Motormouth Maybelle,409447,15565,6 +66838,Susana,44655,186561,1 +66839,Mandi,40458,145048,1 +66840,Lexy Cooper,413417,1719079,8 +66841,Le jumeau patineur,20200,54291,7 +66842,Dirk McQuickly,16378,10713,0 +66843,Ellen Bonting,29094,7381,4 +66844,Paul Mardino,13173,21131,19 +66845,Entuziast-vozdukhoplavatel,97672,107153,4 +66846,Himself,324181,105656,6 +66847,Hoff,99324,89527,6 +66848,Ben Tipton,38602,167953,15 +66849,Kathy,10521,944116,9 +66850,Corey Bannister,28303,2096,14 +66851,Ayako Hoshino,38221,1117079,1 +66852,Steve Jordan,72602,4110,3 +66853,Gelda,30619,106596,7 +66854,Warden,284053,187016,12 +66855,President James Sawyer,117251,134,1 +66856,David Kovac,105254,827,0 +66857,The Hag / Sorceress,26643,106171,10 +66858,Henri Plé,332794,240954,11 +66859,George,72140,38709,9 +66860,Jane,60281,53714,3 +66861,Terence Alaysius O'Davern,225499,3383,3 +66862,Ali,104485,1408727,8 +66863,Dr. Edwards,157424,156590,2 +66864,Jacques Picot,31993,13906,3 +66865,Beaulah,56558,93630,25 +66866,Kris,158908,53650,4 +66867,Eddie Yang,10610,18897,0 +66868,Schlesinger,219466,141450,12 +66869,Earl Williams,987,6168,6 +66870,le curé,60824,82288,13 +66871,Nightclub visitor,43113,1481135,65 +66872,Véra,267623,31390,3 +66873,Michela,79836,9627,0 +66874,Pip's Comic,10739,1374770,6 +66875,Andy Wilkes,222220,7384,3 +66876,Megan Turner,317144,989325,1 +66877,Zeb Rawlings,11897,1933,6 +66878,Emily Cooper,218778,220064,4 +66879,Jörg Schneider,130739,1100365,11 +66880,Kitty Feathers,49502,39783,7 +66881,J.G. Watkins,57597,74638,15 +66882,Lt. Ivanov,19996,85416,6 +66883,Mr. Astley,26491,28479,16 +66884,Brittany Aarons,115626,31838,1 +66885,Edison Chan,49514,20372,2 +66886,Vasu,237672,1332799,24 +66887,Alias,11577,1487,7 +66888,Christina,303281,1514002,5 +66889,Barton Mathis / Dollmaker (voice),321528,71041,7 +66890,Honest Jim Badger / The Coyote Kid,38807,88978,1 +66891,Milan,218784,21662,2 +66892,Reporter (uncredited),54139,14529,16 +66893,Grungy Guy,405473,1362814,8 +66894,Dr. P. Walter Carew,153161,33033,8 +66895,Daniel Tennant,14076,1248,5 +66896,Dolmetscher,613,1324905,55 +66897,Nick Bobolenos,75752,2757,3 +66898,Matka Krausová,15387,235666,3 +66899,Herself,374460,1537895,14 +66900,Penny E. Pennypepper,80771,8240,3 +66901,Gen. Sloan,4820,41755,5 +66902,Stephen Douglas,43806,30234,1 +66903,Bartender (Club),243683,60601,25 +66904,Victor Grandison,29117,4113,1 +66905,MacElwaine,170517,57329,3 +66906,The Armless,186971,16972,10 +66907,윤진숙(Yun Jinsuk),245597,84973,0 +66908,Grace,98369,1039011,10 +66909,Alikersantti,55759,147737,13 +66910,Red Hair,224944,1642133,8 +66911,RJ (as R.J. Hermes),308024,1699474,5 +66912,Yasujiro Mine (OB-Kai Kaicho),51581,235382,13 +66913,Kleon,24258,91450,0 +66914,Chester,47342,87562,8 +66915,Mel Olson,39824,59846,6 +66916,,204007,229765,5 +66917,Lindsey,202337,55277,0 +66918,Officer Conner,102629,1398509,18 +66919,Doctor,259894,132721,7 +66920,Nurse Park,10055,62594,15 +66921,Sal,36251,185085,11 +66922,Team Lyle,246011,1009160,12 +66923,Doctor Saunders,340215,1630266,10 +66924,Toimittaja Ruuhio,150208,108476,3 +66925,Opal Lacy,60547,85740,1 +66926,Adi's Sister in Law,413882,1758520,10 +66927,Francis,57308,132235,3 +66928,Lisa Hesselman (voice),291270,10431,1 +66929,Elevator Victim,40139,1167172,8 +66930,Big Gut Mel,14505,15011,12 +66931,Gail,56809,141536,4 +66932,Pharmacist Saim,74879,1001785,16 +66933,Mother Superior,95136,8534,3 +66934,Inka,352890,1013973,4 +66935,Party Girl (uncredited),93116,106994,11 +66936,Sir Henry Carmel,52270,5832,5 +66937,Mia,24409,62000,0 +66938,Lilly,22901,1222342,4 +66939,Polly Hart,1259,36594,3 +66940,Lucy,112503,97929,5 +66941,Rusty (as Manton Moreland),42298,89747,6 +66942,Auguste Le Breton,44256,14228,16 +66943,Agnes,41234,2772,7 +66944,Dedê's boyfriend,108712,953333,11 +66945,ליאם,43083,129246,7 +66946,Karl,48153,101331,9 +66947,Cable Editor (uncredited),31773,33025,31 +66948,Anezka,18352,1537588,29 +66949,,77534,582230,7 +66950,Maria Marchese,47535,229606,12 +66951,Mali Stanoje,57419,226143,4 +66952,Ernestina,64526,10476,3 +66953,Judge Rittenband,60599,1192389,13 +66954,Mr. 'J.T.' Bullard,96107,34447,7 +66955,The Bride,13777,75267,20 +66956,Walter,1661,7817,2 +66957,Eugenio,4703,39017,8 +66958,Xandir P. Whifflebottom (voice),36736,29795,3 +66959,Singing Men of OHIO,381008,1784721,30 +66960,Marty,8998,17449,12 +66961,Angie Daniels,81274,44296,1 +66962,Jesse,340103,77222,2 +66963,Boris,385654,503150,1 +66964,Kinlaw,265208,92617,13 +66965,Faulkner,46368,232447,7 +66966,Rufus,100450,204548,2 +66967,Superman (voice),353595,19508,2 +66968,Anton,26533,50764,6 +66969,Himself,133704,63208,1 +66970,Le libraire,63831,70312,3 +66971,Metropolis Citizen,209112,1691967,54 +66972,Bébé,266082,1646374,6 +66973,Gloria,21001,27191,4 +66974,Brick Man,41380,134704,10 +66975,JJ Band Gitarrist,61035,1446119,46 +66976,Antonio Sapone,63179,132190,0 +66977,Daniel I. 'Dan' Pierce,114872,37446,0 +66978,Commander Karza,41360,1717,0 +66979,Johnny Cappella,10744,54651,7 +66980,Sara,166221,121639,1 +66981,Duke,129851,102101,1 +66982,Henry,158908,2954,5 +66983,Himself,409447,1585672,19 +66984,Jasmina,186755,257740,7 +66985,Indian Dancer (uncredited),43880,127032,13 +66986,George,17100,81238,7 +66987,Ginger Girl (uncredited),214756,1759686,103 +66988,Rosa,37817,979018,5 +66989,Prestamista,98586,952143,7 +66990,Simon,435707,15599,7 +66991,Christopher 'Chris' Wilton,44208,100588,4 +66992,Sam Simon,79500,1184130,10 +66993,Margaret,71099,40980,2 +66994,Gangster,27966,931793,40 +66995,,66897,1270775,9 +66996,Miles Quaritch,76600,32747,5 +66997,Katharina,170759,21832,2 +66998,Himself,13196,504,10 +66999,Eleanor Hopewell,226354,930058,5 +67000,Mayor Greenburg,83896,1227922,6 +67001,Rancher Matthews (as Patrick Moriarty),75315,105456,11 +67002,Nia,22025,1104911,8 +67003,Safehouse Lycan,346672,1186027,40 +67004,Herself,135679,1103547,2 +67005,Susanna Dickinson,10733,978608,14 +67006,Himself,345519,1479514,3 +67007,George Lanter,19912,34,10 +67008,Cousin Jeramiah,26469,1446417,7 +67009,Sgt. Davie Maclean,64868,97426,3 +67010,Jasper Carter,85507,80236,5 +67011,Kay's birth mother,45098,1096468,8 +67012,Richie's Attorney,4982,20388,25 +67013,,43645,557943,4 +67014,Mr. Ozo,206657,1490058,4 +67015,Jeannot,76200,24540,4 +67016,Sir John Colley,42852,248150,14 +67017,,254679,80865,11 +67018,Georges (uncredited),130900,48064,12 +67019,Himself,29144,84294,1 +67020,,84508,1083308,11 +67021,Niña Morena,28710,1162539,9 +67022,,225614,72607,4 +67023,Moroccan Embassy Man,369885,1651426,65 +67024,Waiter at Wyler's Party,132928,80546,13 +67025,Betsy McGuire / Isobel Stuart,85420,74636,1 +67026,Whitman,24749,14792,3 +67027,Boy Teen,125300,10692,9 +67028,Mimi,80720,1672450,23 +67029,Galia,6391,55050,3 +67030,Bruno,49712,556750,13 +67031,Limo Driver,42684,1448942,12 +67032,Himself,56533,177434,6 +67033,Jimmy Tree,310593,17142,3 +67034,Eugene,47959,1185237,15 +67035,Alexander Vronsky,96724,147041,11 +67036,Frosch,9076,33042,4 +67037,Stuart Lang,14695,2712,7 +67038,Mme Rambaud,8070,18488,4 +67039,Ana,418072,1685108,10 +67040,Lenore Carvo,68050,24485,2 +67041,Chris Tamalet,121936,21577,5 +67042,Dr. Alan Lipper,1381,20195,10 +67043,"Janvier, Marie-Pierre",23857,1500424,6 +67044,David,408381,1657541,10 +67045,Jeanie Maxwell,120588,34314,1 +67046,Herself,329690,4,5 +67047,Rita,101998,1177624,2 +67048,Business Associate (uncredited),118245,32192,9 +67049,Kostya Levin,96724,93210,5 +67050,Self,171357,971123,1 +67051,Linda Hanson,9963,18277,0 +67052,Anna Moore,31509,8828,0 +67053,Stanley,408272,109144,8 +67054,La prostituta,43231,42407,11 +67055,Dr. Foote,18651,34036,9 +67056,Knute Rockne Jr. - Age 12,43812,1154468,36 +67057,Serge,72465,53904,6 +67058,Captain Richard Phillips,109424,31,0 +67059,"Dr. Wong, Gogol's Assistant",28261,16103,7 +67060,Michelle,19809,85200,3 +67061,Randall,5881,10701,13 +67062,Martha,7972,39388,6 +67063,Leikula,184098,1158832,21 +67064,Specialty Dancer,14589,1468189,79 +67065,Himself,36325,1096498,4 +67066,Daniel Rocka,264646,78798,6 +67067,Karen's Maid,55604,2790,32 +67068,El Director,102428,15600,1 +67069,Team Member 1,203321,122648,8 +67070,Himself (Archive Footage),450875,116341,3 +67071,Bob Ford,43829,8516,8 +67072,Dan Clan (uncredited),274857,1815727,62 +67073,Security Guard,9828,1331794,26 +67074,Lena,62731,236811,7 +67075,Letizia Reina,33357,25780,7 +67076,Angela Wardin (as Esther Zyskind),364690,1608399,5 +67077,Herself - The Aspen Institute,84185,1341526,4 +67078,Commander Tunis,66741,3491,2 +67079,,70966,240540,6 +67080,Kent,76864,81212,2 +67081,Wade's Son,53358,1384215,11 +67082,Dorothy,340627,23835,4 +67083,Grapefruit Acres Executive,157343,96060,25 +67084,Mrs. Miles,64167,8443,13 +67085,Liberata,107052,51740,20 +67086,Maurizio (voce della coscienza),378570,1879917,10 +67087,Nick,35197,113970,6 +67088,Samuel,266030,1312061,4 +67089,Maggie Martin,90616,105040,16 +67090,Huschai,2734,27646,22 +67091,Fanny Tanjuatco,98203,1116678,21 +67092,Himself,413782,235722,20 +67093,Herman Watzinger,70667,77976,1 +67094,Sheriff,98250,52301,12 +67095,Jocelyn,81010,58369,1 +67096,Dennis,198652,51969,2 +67097,Lilla,28847,76236,5 +67098,Audrey,351043,1502916,7 +67099,Carol Forrest (flashback),38269,30291,21 +67100,Gestapo Agent,203833,550554,24 +67101,Jason Blood / Etrigan (voice),408220,1656863,15 +67102,Bertha,19029,306116,6 +67103,Alois,54548,11256,6 +67104,Clinger,14476,1365437,7 +67105,Taliban Leader,7445,123102,22 +67106,Dale Rogers,337879,1460904,4 +67107,Miguel Sanchez,55735,571297,2 +67108,Tae-su,64792,543981,2 +67109,Vatrenus,9703,58654,10 +67110,Andrews,44773,543788,10 +67111,,110001,1696392,33 +67112,Herself - Model,327083,1248828,8 +67113,Diomika Tsing,76757,109319,7 +67114,Frank Spicer,62728,26854,6 +67115,Whiz Girl,170517,195098,29 +67116,Himself,384262,1646175,1 +67117,Patsy Ramsey Auditionee / Herself,430826,1891491,17 +67118,Joshua Lambert,26881,50974,6 +67119,,130948,240893,10 +67120,Cockney News Vendor,109716,88906,36 +67121,Shigeru Takechi,37939,86247,6 +67122,Polly Peachum,156326,32006,2 +67123,Hanno,6183,45265,15 +67124,Margie Wallace,70322,1660862,14 +67125,Mike Colby,42251,12123,0 +67126,Mergo,80032,2771,7 +67127,Dennis,73612,3176,7 +67128,Louis Minsky,42648,9872,5 +67129,Laura,71376,33677,4 +67130,Sarah,347031,17628,2 +67131,Trinh,55208,91378,1 +67132,Shaun,12085,66528,8 +67133,Sayan,76438,578844,5 +67134,Sallie (The Shark) Macelli,27381,1162,2 +67135,Dallas,31003,27763,0 +67136,Police Matron,27622,34749,18 +67137,Marie Angéli,14765,52347,2 +67138,Sal,440777,1754598,22 +67139,Jacob,24272,4786,2 +67140,Camp Boss,63706,112144,6 +67141,Pilaf,126963,105816,12 +67142,Patty,29424,1206161,15 +67143,Guy,6963,51611,8 +67144,Peter,450530,512991,1 +67145,Jessie,246218,1106543,5 +67146,Anu,330418,1189245,2 +67147,Danny Pastor,34995,62893,2 +67148,Beatrice,182415,1165384,3 +67149,Young Lad,413998,1221080,20 +67150,Lempi Helismaa,55403,222308,3 +67151,Démosthène,79728,15254,0 +67152,Newspaper Editor,3115,931389,21 +67153,Greensman,19912,1905540,15 +67154,Tigga,10476,69932,9 +67155,Tim,45219,85736,5 +67156,Melba Robinson,43395,8857,2 +67157,Groovy Director,168027,122728,14 +67158,Stella / Eva the Birthday Mom (voice),153518,1240487,8 +67159,Morris Gutman,16784,5897,8 +67160,,228339,1262859,2 +67161,Refik,236317,1255440,3 +67162,Lilly Sears,63096,105571,6 +67163,Gabriel Rodman,335145,55152,1 +67164,Jerry Larrabee,171446,13789,1 +67165,Raffaele,43469,550822,2 +67166,Romachenko,213842,36218,5 +67167,Frau Stapler-Weizgau,328032,1834119,12 +67168,Chief Tahlequah,38807,124555,11 +67169,Ron Freeman,228028,32907,2 +67170,Therese Farner,20017,3734,2 +67171,Agent Colin,334527,191377,13 +67172,Herself,83587,1137449,9 +67173,Eufemio Zapata,1810,5401,2 +67174,Ahmed,290762,112429,7 +67175,Hotel Owner,104376,1727517,15 +67176,Becky,44754,25908,11 +67177,Nate Sweetzer,274504,94264,14 +67178,Jake Adler,22897,7447,1 +67179,Herself,241170,160736,5 +67180,Policeman at Fire,99909,120734,26 +67181,Samurai Ensemble,616,1593819,36 +67182,Liv Watson,2132,21859,1 +67183,Elizabeth,91443,17488,2 +67184,Norris,416635,1337365,3 +67185,Miss Yvonne,60977,1232417,7 +67186,Helen,39800,12851,0 +67187,Zerbib,18955,35899,3 +67188,Peeter Remmelgas,339944,1123487,8 +67189,Himself,293262,4774,5 +67190,Dr. Godinez,79779,105843,9 +67191,le journaliste TV,77673,1663973,14 +67192,Fabio DeSoto,190955,75604,12 +67193,Ring Girl,87826,1507448,10 +67194,Le sommelier,19548,24500,10 +67195,Dana,10025,62065,5 +67196,Root,89116,566168,3 +67197,Woo-Jin,338729,115647,15 +67198,Rokhawah,68097,9112,3 +67199,Patient,13802,7317,41 +67200,Sinbad,60488,13967,9 +67201,Spalnik (voice),116733,86670,4 +67202,Mark,22579,88944,3 +67203,Kid #2,19912,1099652,20 +67204,Secretary of State,435,65471,22 +67205,Staff Sergeant Sam Jones,177566,1160207,9 +67206,"Michael ""Mike"" Wazowski (voice)",62211,7904,0 +67207,Jimbo,16214,159024,11 +67208,Mr. Rutledge,43806,950014,16 +67209,Broken Arm Bot (voice),9928,51330,9 +67210,,9550,1620875,11 +67211,Peter MacCready,74465,2464,5 +67212,Coach George Halas,18047,5251,2 +67213,Nurse Andrea Harper,140648,7632,2 +67214,Morton,18405,2234,1 +67215,Cronos Combatant A / Enzyme II,197854,1241536,12 +67216,Prescatore Ottavio,315880,27399,7 +67217,London Bus Passenger,53256,147641,18 +67218,Aleksi Partio,141971,124285,4 +67219,Patient,8988,1741969,47 +67220,,69610,556840,2 +67221,Motorcycle Cop,1640,18297,54 +67222,Bobby Byrd,239566,81697,1 +67223,Bartender (uncredited),53387,1041499,12 +67224,Mrtvac (deda),15303,111068,14 +67225,Cassie Parton,426670,1716519,22 +67226,Karsh,46169,87572,11 +67227,Magojiro,616,1116511,20 +67228,Communications tech,24392,1328815,14 +67229,Mulle,18908,1564,4 +67230,Addie,44669,102324,4 +67231,Kazimierz Pawlak,8211,54070,0 +67232,Reporter (uncredited),214756,1553308,91 +67233,Puru Reddy,49028,562226,9 +67234,MSgt. Mac,51426,6577,3 +67235,Chaplin (voice),32202,109069,8 +67236,"Mr. Cahill, Defense Attorney",27203,30115,7 +67237,Captain Harlan,10594,5946,17 +67238,Simon,378018,1368518,7 +67239,"Koichi Takagi, the salaryman",36246,58596,0 +67240,Mother,32044,1513128,14 +67241,Dan Stenick,64129,12504,6 +67242,Officer Patrick,429200,1410481,13 +67243,Capt. Montgomery Brown / 'Ringo',63260,15139,0 +67244,Steven,193603,1434677,2 +67245,Toshiko Kishida,124994,131016,2 +67246,Calamy,8619,1032202,9 +67247,Villager,62764,550522,25 +67248,Delia Shepard,209244,591834,4 +67249,Chris,63493,53761,11 +67250,Lafay,59118,54274,8 +67251,Giorgia,379873,1622261,5 +67252,Sharik the Dog (voice),77294,86847,2 +67253,Lapchance,42472,5248,2 +67254,Michael,63045,115579,3 +67255,Lilly (as Lue McWilliams),221801,935272,2 +67256,Subject,160324,30328,0 +67257,Justin Morton,159201,35654,1 +67258,,11328,1444481,29 +67259,Mike Carr,76229,29643,8 +67260,Leyla,31216,94308,1 +67261,Greg Jones,23340,95724,5 +67262,Martin O'Shea,59726,63364,5 +67263,Girl in Hotel Lobby (uncredited),73430,109701,13 +67264,Wiremu,24671,7248,2 +67265,"Giovanna, moglie di Antonio (episodio Il Cavalluccio Svedese)",68882,50744,16 +67266,"Ed, Feed the World Foundation Manager",69035,12536,3 +67267,Kagura,245917,83928,4 +67268,Oak Room Patron (uncredited),258480,1545520,37 +67269,Jessica,236324,150675,10 +67270,Callahan and Callahan,131360,992913,8 +67271,Pei-Pei,10330,74073,10 +67272,Old Babylonian Mother / The City Mother (uncredited),3059,145109,72 +67273,Dr. Facilier (voice),10198,65827,2 +67274,Cecille,64450,93255,7 +67275,Spyros,48210,5676,0 +67276,Gary Curtis,27114,83476,0 +67277,(Katy Warr,23512,42279,1 +67278,Driver of Meindert,24199,87912,10 +67279,Carl,42542,17646,13 +67280,Pietro Rizzi (as Joe DeSantis),53654,95012,7 +67281,Viktor,10458,1084,0 +67282,Homme massif,10795,139855,31 +67283,Dr. Gibbon,30141,2461,2 +67284,Jeremy,68184,1795300,8 +67285,Stéphane Leroy,64357,74110,3 +67286,Sheriff,31275,85773,5 +67287,Drunk Guy in Yugo,12182,62856,16 +67288,L'homme de la passerelle,5511,1664777,5 +67289,Old Simon,7234,52127,14 +67290,Bak Mei,10204,64436,12 +67291,Laura,156180,228015,2 +67292,Vecina (uncredited),42502,1334305,24 +67293,Frank Daly,123770,6197,0 +67294,Himself,12994,53176,8 +67295,Theny Thorn,10008,61938,7 +67296,Granny Manson Mingott,110540,108986,3 +67297,"Elisabeth ""Betty"" Kerner",39978,22050,1 +67298,Jason Wise,9286,59926,5 +67299,Santa,146596,937187,5 +67300,nainen junassa,442752,1384990,23 +67301,Germur (voice),333667,1215525,7 +67302,Sheriff Cooper,139455,56890,1 +67303,Ditcher,32029,45308,6 +67304,Director,141635,101542,2 +67305,Aksinya,51284,119214,6 +67306,Joe 'Joey' Dingle,56154,89990,6 +67307,Roney Varghese,341895,1171340,12 +67308,La prof de biolo,12169,1164966,19 +67309,Sophie,10749,2343,0 +67310,,46187,368684,2 +67311,Twin #2,313922,1732068,18 +67312,Cook,3580,152926,31 +67313,Conrad Schuster,217412,104243,0 +67314,Snakehead,41714,7242,3 +67315,Carter Farrell,11247,59283,3 +67316,Driver,20919,72233,7 +67317,Sharon Winton,9756,58914,3 +67318,,125835,94568,12 +67319,Kym,14976,1813,0 +67320,Michael,13338,76834,7 +67321,Jack Starks,9667,3490,0 +67322,British Soldier,1116,1896891,67 +67323,Nautaung,4820,95014,14 +67324,Politibetjent Steinar,284279,570935,9 +67325,Lyranna,27549,31364,2 +67326,Emma Borden,243568,20387,1 +67327,Roxy,257450,1429694,3 +67328,Himself,44038,130084,7 +67329,Logan,13954,76537,4 +67330,,255160,1668085,14 +67331,Boy (as Chris Olsen),120615,8242,13 +67332,Mom,31448,8963,4 +67333,Homer Triplette,104083,89672,7 +67334,Henry Delarue,266285,47296,2 +67335,John's Dad,72105,60286,30 +67336,"Iras, Attendant to the Queen",71266,562264,2 +67337,Keiko Negishi,22025,237362,11 +67338,Movie Producer,44415,146340,13 +67339,Dancer,25973,927847,11 +67340,Binky,43656,22970,3 +67341,Mallory,30780,41558,1 +67342,Finn Dove,82191,140029,1 +67343,Old Gentleman,80596,1473409,41 +67344,Nurse,11172,92813,66 +67345,Levitskaya Elizaveta Feodorovna,62732,1283655,5 +67346,Strip Club Patron,77930,1319055,53 +67347,Pete,114779,559879,8 +67348,Garrett,128311,1168176,11 +67349,Bud Grossman,86829,1164,13 +67350,WABAC Machine (voice),82703,1227701,19 +67351,Homeless Demon,10055,62596,18 +67352,Tea Drinker #2,16175,79905,11 +67353,Marsha,35656,1557631,9 +67354,Mr. Bartholomew (uncredited),76203,1438289,64 +67355,Dad,362057,154888,9 +67356,Himself,23128,94815,10 +67357,Marie Sebastian,87516,550843,1 +67358,Fred,64944,151180,0 +67359,Reynolds,302666,77321,11 +67360,Mrs. Quinn,11584,92079,16 +67361,Gilberto,416256,162235,8 +67362,Mr. Corrigan,19621,1408410,6 +67363,Tourist,1164,28683,26 +67364,Darlene Banks,27470,21010,26 +67365,Chrissy,347031,1561285,7 +67366,Friend of Madeleine,18381,227607,11 +67367,George Stanton (uncredited),19017,7505,15 +67368,Lady Clark,2994,5686,8 +67369,Dr. Collet,83015,69764,15 +67370,Amico di Armando,42674,128419,13 +67371,Justin - DEVGRU,97630,73457,4 +67372,Brian Downing,124581,126102,2 +67373,Peter Semple,277713,1409656,11 +67374,Poker Player,47878,102577,10 +67375,Technical Adviser (Clara Brown),4932,40175,17 +67376,Pudgy Murphy,268875,32437,6 +67377,Lord Dufferin,41967,1236383,1 +67378,Suhad,353462,999346,5 +67379,Hogar the Troll (voice),33427,29443,11 +67380,Chris,45020,87669,10 +67381,Brunette Bikini Girl,4613,1631589,16 +67382,McCoy,178927,3246,9 +67383,Sheldon Bascomb,37315,10403,4 +67384,Doctor Kogan,62732,143725,4 +67385,Margarita,82767,1028488,5 +67386,Slavik,34869,143737,5 +67387,Sergeant Kelly,28044,21510,3 +67388,Dr. Sigmund Walters,84708,8516,1 +67389,Alex Fletcher,11172,3291,1 +67390,Detective Ross,176085,204904,4 +67391,Vito Genovese,59230,6354,4 +67392,Engineer,284296,83995,17 +67393,Steadman,50295,4774,0 +67394,Danielle,18586,83272,3 +67395,(uncredited),29259,18812,10 +67396,General's Aide Washington,401222,1809645,9 +67397,Lulu,51759,136920,3 +67398,Elder in Norway,43812,103951,78 +67399,Mrs. Reynolds,157898,1015322,19 +67400,,333884,1448592,8 +67401,Piro,64465,26700,2 +67402,Bartleby Livingstone,149910,1090927,20 +67403,uncredited,37126,106992,14 +67404,,111398,552187,14 +67405,Kata,260826,123943,4 +67406,Claudine,53404,84440,4 +67407,Hosnian Citizen / Starkiller Technician,140607,71535,68 +67408,Mary Larkin,63877,23882,8 +67409,Нонна,20963,86866,5 +67410,Verrill,137528,1764646,8 +67411,Michel,114931,1351923,8 +67412,Mainland police captain,18747,110507,11 +67413,Nora Allardyce,18711,49,3 +67414,Carl's Secretary,1819,19281,11 +67415,Sailor,102841,2232,25 +67416,Himself,26430,95353,0 +67417,Greek Following Kay,179066,97998,30 +67418,,292062,1229076,2 +67419,Matti Kivilahti,224813,1210342,3 +67420,Assistant (uncredited),284052,1569812,48 +67421,Friendly Lady,286521,121757,16 +67422,Temporary Prime Minister,128767,144462,11 +67423,French Peasant (voice),82703,20804,9 +67424,,76651,1316122,15 +67425,Tom Grady,45527,33355,2 +67426,Giudice,379873,1331602,16 +67427,Ruby,127808,20157,4 +67428,Belle,54525,17352,2 +67429,Georgettan,332827,1332993,12 +67430,,174188,539,5 +67431,Diamond Stripper,354979,1835268,49 +67432,Princess Pondicherry,118,73707,19 +67433,Buddy Nash,242631,97128,1 +67434,Slip Mahoney,185289,89989,0 +67435,Nunziata,79506,20887,1 +67436,Raquel Welch,212934,67978,10 +67437,Pierre Tari,13996,14741,10 +67438,,91715,109088,2 +67439,Mary Gilbert,39219,14683,2 +67440,Dr. Sevard,152532,81681,3 +67441,Meredith,403431,1497557,11 +67442,St. Peter,205798,55155,8 +67443,Rosser,4893,4973,3 +67444,Vahini Saheb,94935,78920,4 +67445,White Kid,4982,33431,45 +67446,Nikhil Rai,46432,229276,2 +67447,Ted Supporter (uncredited),214756,1264229,82 +67448,Toda Taicho,17895,58662,8 +67449,Colonel Santino (voice),1273,31531,11 +67450,Ken Clifford,1164,15739,29 +67451,Nuru Jahan,55177,1219536,2 +67452,Eric,77930,1394344,55 +67453,Angela Northman,333352,229606,9 +67454,Milly Hollister,335450,1476561,8 +67455,Waiter,33729,153537,9 +67456,Goldstein,43142,41720,9 +67457,Lander,50374,6905,1 +67458,Tom,1164,17476,6 +67459,Rafael Aramovitz,19754,158377,18 +67460,Príncipe Korchosky,116312,37542,16 +67461,Une admiratrice à New York,332794,1860407,24 +67462,Doc Frischer,72096,1673569,49 +67463,Nobuyuki Masaki,34935,9706,7 +67464,Gerry,121636,238745,11 +67465,Stella,39213,47281,4 +67466,la réceptionniste,50350,28786,18 +67467,"Xavier Taupin, un ancien conseiller général",75066,308771,13 +67468,Knacki,75969,1902086,37 +67469,Photographer getting off train,16378,80482,15 +67470,Secretary,88359,165377,2 +67471,Dr. Kildare,27916,1090169,13 +67472,Vanno,66125,107474,4 +67473,Long's mother,222216,1035980,6 +67474,Carlos' Mother,17216,81479,4 +67475,Snapper's Sidekick,42553,30212,7 +67476,Shauna's Friend,4413,1630601,35 +67477,Tony Pazzo,48609,7004,6 +67478,Nora,77930,98522,12 +67479,Shô (voice),51739,1136406,9 +67480,Josh,7515,52420,13 +67481,Valeria,96106,32914,2 +67482,Ginecologo,40817,124685,16 +67483,Mayor (uncredited),4497,234656,16 +67484,Edward,351065,258,0 +67485,Secretary,236395,121323,9 +67486,Divorce Mediator,274479,1658353,35 +67487,Wydd,302026,2714,1 +67488,The Man / Daddy (voice) / Ralph / Tommy's Dad / Legless War Vet (voice) / Labby (voice),169314,99096,6 +67489,Tevfik,51334,46064,8 +67490,Sourdough Barfly,93313,89735,10 +67491,Vilma,271404,1246472,11 +67492,Caleb Pontipee,16563,1184297,8 +67493,Buddy/ Alexander 'Sasha' Kozachenko,133121,571300,4 +67494,Ilka,107445,1874,4 +67495,Boss Dasgupta,14751,76789,4 +67496,Prof. Roy Hinkley Jr.,103260,12355,5 +67497,Julliard Board Member,5123,1781830,40 +67498,Troy,13058,1589679,35 +67499,Mrs. Wortham,142216,153432,27 +67500,Oscar Hernandez,227348,1116973,2 +67501,le vicomte Prony,2002,2369,5 +67502,Rick the Intern,200505,225377,17 +67503,Archmagus,9795,26075,8 +67504,Panelist,157723,206,4 +67505,Un agent,27053,1460958,17 +67506,Fischel Dodyk,128140,1161090,14 +67507,Vicious Holcane,1579,42022,28 +67508,Jackie Fong,17457,18897,4 +67509,Gabe Ryan,99909,89925,9 +67510,Prisoner,330459,63362,44 +67511,,201429,50408,14 +67512,Cora Dulz,9765,680,1 +67513,Merrilee,13596,70830,12 +67514,Pat Jacobs,419459,36190,1 +67515,,378503,1754820,5 +67516,Donal,10529,123307,9 +67517,Becky,184345,208225,5 +67518,Ruby,9080,52374,4 +67519,Agent Klark,97618,137048,6 +67520,Mandook,61203,225163,8 +67521,Astronaut Glenn Amer,19545,2787,0 +67522,Interrogator Wright (voice),16873,821,11 +67523,Jack Horton,146216,2203,7 +67524,Lady Gresham,2977,10978,4 +67525,Guitar Player,67748,1172847,20 +67526,Mohammed Khadif,82598,28437,8 +67527,Pierre,12169,34616,5 +67528,Flower Hercules,32235,589,3 +67529,dottor Configliacchi,262786,93723,9 +67530,Lucas Romer,153397,17328,1 +67531,Control Lab Technician,177677,1336360,61 +67532,Matt,11205,14832,10 +67533,Police Officer,13058,229313,30 +67534,Pearl,21950,100552,3 +67535,Dave Tracy,207178,93624,1 +67536,Le sergent belge,33436,24652,21 +67537,Female Paramedic,310972,1390882,4 +67538,Professor / JK Harshom,42934,107408,4 +67539,Jessie / Snivy,115223,111770,2 +67540,John Wickliff Shawnessy,65488,12151,1 +67541,Mr. Barrows,67375,13969,10 +67542,Olya,57809,1604363,2 +67543,Alex,173499,1156243,9 +67544,Jim Kiler,103432,73022,0 +67545,Escobar,323665,156648,15 +67546,Lisa,205724,222141,4 +67547,U-min,52418,83020,1 +67548,Cantinero (uncredited),42502,1703326,29 +67549,Dallas,39356,1753259,6 +67550,Greg,39958,59251,3 +67551,Clotilde Regalado,69060,533398,2 +67552,Arkadi,83475,86663,3 +67553,Mulher 2 Boate,296288,1839928,31 +67554,Pete,71503,182049,17 +67555,Nathan Potter,28303,151849,11 +67556,Yellow (voice),217057,6886,0 +67557,Susan,80343,581686,3 +67558,Hisako,216363,1056056,7 +67559,Lefty O'Doyle,176143,8253,3 +67560,Dustin,244786,1451542,12 +67561,Connie Carter,41591,18737,1 +67562,Erik Lehnsherr / Magneto (Young),127585,17288,2 +67563,Sybil,85651,1318654,3 +67564,Dagmar,379019,973678,20 +67565,Kanchit,33253,1098344,5 +67566,Chabu-ya no souji-fu,135335,145250,12 +67567,Ginger,48836,281985,0 +67568,Hazel Micallef,283384,4038,1 +67569,Megatron (voice),38356,1331,6 +67570,The Beggar,10097,63367,16 +67571,Chief's sidekick,10044,131955,20 +67572,le père,34013,35610,3 +67573,Saloma,38404,120340,4 +67574,Clarissa,43912,135175,4 +67575,Angela Roberts,54801,102858,3 +67576,Professor,240832,6024,14 +67577,Émile,43000,24540,3 +67578,Henry Thornton,15163,32357,9 +67579,Tsune Nonomiya (O-Tsune),52047,145250,0 +67580,Koch Mathis,268712,18726,3 +67581,Richi,481,6534,1 +67582,Iceman,31700,783,2 +67583,Student,37534,117886,5 +67584,Fedele,48805,141111,1 +67585,Bank Commissionaire,91583,1230452,18 +67586,JMW Turner,245700,9191,0 +67587,Bradley,11364,5502,2 +67588,Monaz Modi,20623,1661734,10 +67589,Sean Brewer,32395,1157292,8 +67590,Rodeo Girl,152532,103290,14 +67591,Brittney,19794,65123,15 +67592,Thomas Coughlin,259695,2039,2 +67593,Jim Taylor,425774,1707751,11 +67594,Margaret,72207,1141410,17 +67595,Phil Church,14589,41750,10 +67596,Nurse,91679,1782582,21 +67597,The Girl,16154,79734,3 +67598,Harry,102444,76417,13 +67599,Emma Goldman,88794,14984,11 +67600,Molehog Mom / Shovelmouth Mom (voice),8355,95691,19 +67601,Jeune a la piscine,121539,1759917,11 +67602,Adalberto Occhipinti,59040,69037,2 +67603,"Ah Kay, Saunder's Servant",248639,134255,8 +67604,Spectator,279096,131427,24 +67605,Mrs. Peg O'Hara,36634,89663,11 +67606,Junaid,14076,11851,3 +67607,Martha,27814,1687942,5 +67608,Kylie Minogue,254689,1438319,13 +67609,Griffin,77875,1649388,13 +67610,Manager Jimmy Dolan,88288,2097,4 +67611,Dr. M. J. Standish,92848,2435,7 +67612,Nancy (Crocodile Rangers),382589,1613221,16 +67613,,18836,86151,8 +67614,Benda,117629,1169895,7 +67615,Grace,273404,1251615,9 +67616,Rob,27259,97430,0 +67617,Marti Morrison,293452,1989,8 +67618,,261871,109058,1 +67619,Crewman,248639,555903,10 +67620,Seeker Zephyr,72710,1566669,36 +67621,Tenente Lindalvo Rosas,232739,123761,2 +67622,Inès,277839,1674837,16 +67623,Terrence Aloysius 'Slip' Mahoney,174195,89989,0 +67624,Herself,211411,46591,2 +67625,Weasel,412202,1731961,13 +67626,Homme avec portable,39358,1630994,13 +67627,Jonathan (voice),159824,62861,1 +67628,Young Dave,322,4736,16 +67629,Darkman,19342,61241,13 +67630,Marco,296288,1095855,4 +67631,Perez,14644,276050,6 +67632,Jambier,7229,6024,4 +67633,Sammy (as Polly Brown),20919,92648,1 +67634,Group Leader,107985,28477,22 +67635,Mr. Kramer,244786,53454,9 +67636,Turkish Boyfriend,44746,1514109,10 +67637,Bates,115109,121095,16 +67638,l'ingegnere,221527,628316,7 +67639,Gijs,140894,1418896,8 +67640,Franklin,256969,1144931,7 +67641,Callie,74777,551462,0 +67642,Amanda,10011,61995,1 +67643,Sharon,104146,51384,3 +67644,Svenson,33931,102327,8 +67645,Florence McCrickett,177902,98574,4 +67646,Akiba Shigeru,47002,80754,2 +67647,Emma Jung,48231,190895,3 +67648,Signora Nardi's Friend,99261,100410,11 +67649,Videographer,7555,1296116,12 +67650,Bill Hatfield,42476,857,2 +67651,John Joe,1589,1369,1 +67652,Mike,84942,1001965,3 +67653,SWAT Team,356326,1631704,18 +67654,Eddie Fulton,40633,1948,8 +67655,Fleur,12169,54228,2 +67656,Backstage Fan,229297,1418852,14 +67657,Dr. Cole,19010,67978,1 +67658,Dr. Hartman,57680,939370,13 +67659,Jenn,146373,21063,4 +67660,Gegé,43544,89193,0 +67661,Student 1,395992,1829362,13 +67662,Bailey,398289,7517,2 +67663,Rosika,209248,935971,7 +67664,Gyumao,38594,122191,7 +67665,Cop (Boston PD),214756,87131,57 +67666,Goth Girl,10760,66547,16 +67667,Le chef de la police (voice),22504,11221,2 +67668,Duckfoot,118889,97045,50 +67669,Myra Patterson,111470,106551,15 +67670,Dr. Timmons,99545,3245,8 +67671,Winifred Stanley,27629,65284,2 +67672,Kate O'Hara,19665,11829,0 +67673,Brad Lunders,172520,1155121,0 +67674,Tong,11534,69758,1 +67675,Iside,138273,1108314,4 +67676,Biasutto,51548,64773,1 +67677,Himself,76142,6603,1 +67678,Reporter,26376,2776,40 +67679,Annabelle,28564,33277,6 +67680,Kelvin,84993,1239940,6 +67681,,63215,236547,5 +67682,Desert Siren No. 2 / Human Hocker / Woman Driver,38134,1774045,11 +67683,Боря,20963,86876,14 +67684,Mrs Scratchit,51247,31951,11 +67685,Anna Richter (Story Teller),28367,20127,7 +67686,Cupcake (voice),81188,1364658,12 +67687,Mr. Higgins,31324,105007,5 +67688,Vaiya,71444,129960,4 +67689,R. Campbell Thompson,157843,62106,18 +67690,Mike 'Brother' Albright,227325,3085,1 +67691,Richard Jeffries,5123,18288,3 +67692,Ethan,203186,1006777,3 +67693,Observer,285181,1592947,16 +67694,Glatzenmann,277968,1898500,34 +67695,Make,114172,1297266,4 +67696,Spike / Skinny Digger,339526,43125,4 +67697,Lena,379873,1721910,2 +67698,Inspector John Chiao Chi,42120,12466,3 +67699,Business Woman,310593,1210191,32 +67700,Actress,15086,53111,2 +67701,,230680,13805,1 +67702,Samson Shillitoe,70498,738,0 +67703,Chinese Man II,10077,62938,16 +67704,Jessica Drummond (archive footage),262988,14974,12 +67705,Allan Douglas,43889,96068,3 +67706,Dishank,444713,1768799,4 +67707,Claire,67314,82923,0 +67708,Ras,33586,60633,2 +67709,Andi,249021,84841,3 +67710,Léonard,11540,183524,5 +67711,Judge Garner,146315,9979,3 +67712,Deputy Ally Lane,23823,141538,8 +67713,Fan (uncredited),369524,1232538,41 +67714,Pete Goodwynn,231616,211654,0 +67715,Rita / Mrs Ryan,84993,1369263,5 +67716,,64454,1417807,13 +67717,Lindy Sue,30411,106248,11 +67718,Shri Hari Prasad Sharma (Munna's father),19625,14079,2 +67719,Philip,11636,100585,17 +67720,Jason,85265,113261,20 +67721,Bullet Patient's Wife,284052,1777516,27 +67722,"York, brother of Edward",46758,1605321,7 +67723,Himself,209112,70177,28 +67724,"Wilman Péter, ""Vilma""",42132,1092633,2 +67725,Capt. Tom Reynolds,4820,4347,0 +67726,Razak,81477,247889,8 +67727,Muneca,39845,211474,12 +67728,Tobias,15013,77685,14 +67729,Ramone (voice),49013,11159,26 +67730,John Wick,245891,6384,0 +67731,,289232,1548316,8 +67732,Fish Worker (uncredited),337339,1805163,63 +67733,Correctional Officer,213681,84792,17 +67734,Ashington,75363,28235,1 +67735,Mrs. Friedman,7288,22127,16 +67736,Andy Wayne,791,11830,7 +67737,Spiro Giavannis,2001,58535,15 +67738,herself,27805,21445,1 +67739,Prick,18638,554095,5 +67740,Potter Shrader,90563,726,3 +67741,Geoffrey Moncrieff,381518,7025,5 +67742,Mrs. Willis,69717,21245,4 +67743,Mary Garden,242631,19098,8 +67744,Ellen,87311,81349,3 +67745,Sara,17209,20492,1 +67746,Nun,16135,79513,18 +67747,Elaine Jordan,21927,47570,3 +67748,Liz,298935,1053419,8 +67749,Dawn Hurley,284537,3234,9 +67750,Surgeon,132328,8633,8 +67751,,330947,1030261,8 +67752,Correction Officer #2,158739,1199192,9 +67753,,352694,233520,11 +67754,Milo Henchman #1,29101,1516708,21 +67755,Sailor,369885,1651394,49 +67756,Stella Oleson,42941,31168,0 +67757,Thong,31264,136408,4 +67758,Lewis Dinkum,76640,9656,3 +67759,Doctor,76757,14470,60 +67760,Lord Goddard,64167,3796,16 +67761,Inspector Khan,118809,86012,8 +67762,Zack Connors,336265,1194700,0 +67763,Jacques Steiner,74822,37764,8 +67764,Lewis,188161,333,10 +67765,Captain Tzu,21519,62414,2 +67766,Forensic Officer #2,53861,1504467,10 +67767,Crawford,23823,3551,4 +67768,Yuri Tachibana,36243,58442,0 +67769,Prof. Ugo Severi (as Signor Serena),70734,1157071,6 +67770,,110001,1696397,40 +67771,Doctor,149926,1803813,20 +67772,Brick Bardo,47342,138622,9 +67773,Banquo,119844,25666,2 +67774,Miss Floretta Turnbull,47882,34750,6 +67775,Court Clerk (uncredited),15794,89662,13 +67776,Myyjätär,293271,1364788,14 +67777,Nun,16135,79516,21 +67778,Emma,317114,43905,5 +67779,Schaffner,269258,16722,14 +67780,Sheik,108222,5464,13 +67781,Hank Stoner,333484,1219824,24 +67782,Prison Visitor,336011,1560250,20 +67783,Anna Kreische,167330,50958,20 +67784,Howard Stacy,102382,61263,17 +67785,Agent,30554,106532,4 +67786,Crew #1,332411,1375146,11 +67787,Short,279690,1102259,5 +67788,Brunswick,104376,119216,5 +67789,Bolivar Trask,127585,22970,7 +67790,Yuichi,98631,1018944,0 +67791,Bartender,2080,626531,26 +67792,Brian Ross,10004,61837,12 +67793,Wife of Josef's Friend,148,101,10 +67794,Diane,59507,97041,4 +67795,Young-In,31850,1191709,5 +67796,Colleague,1724,1160260,39 +67797,Theodore Roosevelt,181533,2157,3 +67798,12-Step Group Leader,14976,51188,17 +67799,Howard Shipley,84903,2671,4 +67800,Molly Carpenter,79329,232684,10 +67801,Edward 'Teddy' Luton,120676,1181154,2 +67802,Taoist,10389,551628,41 +67803,Sam,127286,1281,6 +67804,Receptionist,193893,1381673,54 +67805,Gayle,109453,56757,4 +67806,Rodolphe,54155,23388,7 +67807,John,318922,1206337,18 +67808,Étienne Cassard,11399,28281,1 +67809,Hartmannseder,122487,1331678,17 +67810,Dutch (as Bernard Punsley),179103,95298,5 +67811,Various (voice),110392,280,1 +67812,Spectator (uncredited),109491,1292482,44 +67813,Minister Yasuo Mochizuki,36063,1119732,11 +67814,Paramedic #2,295723,1418258,28 +67815,Vincent Scarno,15022,59259,7 +67816,Afgan Doctor,286532,1382745,22 +67817,Dr. Jonathan Benet,22387,33031,2 +67818,Detective Sgt. Wall,105902,29069,6 +67819,Miss Stone,98125,1176930,8 +67820,First Mate,10488,26056,5 +67821,Himself,212063,37221,3 +67822,Ann,9870,83873,17 +67823,Moon,7549,52898,1 +67824,Dorothy Dwight,53792,1324777,17 +67825,Estelle at age 11,108723,1446331,11 +67826,Sarabeth Little (uncredited),253235,1784545,30 +67827,Girl (voice),15916,122566,1 +67828,Dog,310133,1841009,15 +67829,,81220,8329,0 +67830,Brother Cavil,105077,923,1 +67831,Henrik,251232,135756,7 +67832,Nicole,47120,85796,5 +67833,Bob,84892,1517251,16 +67834,Agent de Voyage,39358,1630993,12 +67835,Bartender,76229,34130,13 +67836,Mark Muller,75595,164618,15 +67837,Catherine Coneley,425774,1707889,23 +67838,Kurt Wagner / Nightcrawler,246655,113505,11 +67839,News Reporter (voice),177271,1159662,10 +67840,Tarallo,173177,23370,4 +67841,Avarice,18209,107500,7 +67842,Doctor,9846,23974,12 +67982,Feral Child (Aarra),375366,1738614,21 +67843,Radio Broadcaster (voice),127812,1091289,51 +67844,Masha (Three Sisters),284293,1465496,14 +67845,Juez sordo,69060,31883,11 +67846,Chip Hines (as Sebastian),82929,909212,0 +67847,Timothy Hawking (Age 8),266856,1387384,10 +67848,Mrs. Schmidt,52358,977583,7 +67849,Mrs. Riley,10596,65799,6 +67850,Krsman Jakšić,284154,66027,5 +67851,Moses,235260,84865,7 +67852,Le psy / Le SDF,118293,112765,7 +67853,Dr. Sanjay Lad,35558,105658,14 +67854,Nadine Roland,120259,1072147,2 +67855,Clara Copperfield,141640,185459,10 +67856,Santa Kid #2,41171,1392755,45 +67857,Captain Jack Aubrey,8619,934,0 +67858,Himself,326255,1633755,3 +67859,Deputy Logan,325173,1427684,11 +67860,Judge,42871,34279,10 +67861,Robert,110573,583533,8 +67862,Greg,255278,1292115,4 +67863,Mark,323674,26852,4 +67864,Charlie McManus,11131,1923,1 +67865,,140509,1342694,11 +67866,British Scientist,329865,1050987,22 +67867,Jerome Talget,75174,20212,1 +67868,Fujiko Mine (voice),15371,109747,1 +67869,Eric Polgar,1914,6266,7 +67870,Brianna,358353,1483334,10 +67871,,287636,232006,6 +67872,Dan,18165,11006,0 +67873,Clem,42267,56117,10 +67874,Security Guard,37708,76799,4 +67875,Arthur Jenkins (Modern Story),3059,29952,4 +67876,Postman,64328,1214063,22 +67877,Gabby,352186,15852,5 +67878,Klaus,324440,223771,2 +67879,Bully,102382,1657532,63 +67880,Clownen,57548,22331,2 +67881,Miss Emily,42188,44079,5 +67882,Bachelorette #1,193893,1381663,49 +67883,Vuletić,382873,1301972,9 +67884,Barista,58428,139135,4 +67885,Predator,30155,79239,10 +67886,,365065,155293,3 +67887,Lord Wang,14818,229426,1 +67888,Waiter,18189,1215262,11 +67889,Judy Kincaid,15148,91495,4 +67890,Twirling Stevie,33343,1188788,19 +67891,Doctor (voice),17111,1629453,25 +67892,Baravelli,13912,10799,2 +67893,'Breezy' Kildare,68078,974922,0 +67894,Roger,146233,1388694,22 +67895,Dylan Collins,283445,1491689,2 +67896,Binet,273510,27823,11 +67897,Stewardess,120932,121765,8 +67898,Simon,60824,6304,0 +67899,,343140,1516594,12 +67900,Passage Workman,74314,88778,12 +67901,Engineer,2567,154773,41 +67902,,253533,146147,13 +67903,George,87123,34119,3 +67904,Reporter,52437,103068,24 +67905,Priest / Rumpelstiltskin,16652,571220,6 +67906,Harold Wilding,81475,106179,2 +67907,Chad Norris,13519,97719,33 +67908,Drivers Ed Instructor / Hall Monitor / Teacher (voice),810,64446,29 +67909,Alte,150056,4797,9 +67910,Carmen Cortez,12279,57674,2 +67911,Conny Lloyd,141267,1202065,18 +67912,Uncle Limelight,131799,210620,7 +67913,Allura,33472,39552,2 +67914,Jon,14145,10207,4 +67915,Amy,315880,18182,1 +67916,Father,9987,31268,18 +67917,TV Reporter,21159,91818,7 +67918,Laura Carrington,62838,25541,1 +67919,massaggiatore della Longobarda,48805,118503,23 +67920,Iwakichi,77057,131923,1 +67921,,107916,1042748,1 +67922,Nancy Kendricks,7288,69597,1 +67923,Dick,17282,88522,4 +67924,Shikan Nakamura,46069,134681,4 +67925,Benedict Haughton,245168,54447,7 +67926,Shepherd Girl,133328,553157,9 +67927,Teenie,48627,11171,8 +67928,Joe Arkle,111582,1388826,13 +67929,Ryder Smith,43049,3267,1 +67930,Young Boy,183662,1576355,7 +67931,,74674,1445120,22 +67932,Lotus,45197,1135998,7 +67933,Mr. Mascaro,29542,42193,2 +67934,,39056,9671,4 +67935,Dr. Joe Branson,36983,8874,2 +67936,Quintin,17306,33298,8 +67937,Lyosha,376716,86860,1 +67938,Herself - Model,327083,10583,2 +67939,,41967,1517386,5 +67940,Asgardian Servant,284053,230621,17 +67941,Giulia,315319,1880540,26 +67942,Premier,43880,8240,5 +67943,Ariel Perelman,97548,131867,0 +67944,Ariene,6980,51754,7 +67945,Himself,385379,1585244,2 +67946,Michael,32790,569794,12 +67947,Kay,110146,1058106,3 +67948,Soigneuse d'orques,97365,1123788,11 +67949,Anthony Rand,66741,94330,15 +67950,Count Muffat,66812,3000,2 +67951,Julito,59117,228879,12 +67952,Takemoto,72592,91869,20 +67953,Sam,301224,1382182,3 +67954,Onkel Heinz,2241,23121,5 +67955,,88285,3070,3 +67956,McNally,190955,2171,8 +67957,Lala [ララ] (voice),56391,47424,10 +67958,Sam,22076,42288,14 +67959,Harry Corwin,177474,4966,4 +67960,Judge,38769,150082,11 +67961,Flower Shop Employee,44943,1205869,31 +67962,Teresa,27573,6751,3 +67963,Karl Theodor,118236,14503,3 +67964,Pipi,69278,131868,1 +67965,,48780,5602,1 +67966,Tali adulte,1986,569336,14 +67967,Gangster,27966,1220453,24 +67968,Meadows' Garage Lookout / Policeman,250332,955691,67 +67969,Clio Dulaine,46563,4111,1 +67970,Grayson,37665,22821,14 +67971,Himself,18893,2876,15 +67972,Paula (voice),41496,650,7 +67973,Grandpa,241742,361406,10 +67974,Mr. Carston - Postman,29835,30530,5 +67975,Dr. Eugenio Britel,210653,623776,2 +67976,Alex Russo,26736,77948,0 +67977,,38010,133165,21 +67978,Gordo,14430,1476686,23 +67979,Hassansin Porcupine,9543,15913,9 +67980,Himself,355984,1500051,1 +67981,Otto Gross,48231,1925,4 +67983,Derek,11172,163866,23 +67984,Lucille Jacobs,333091,131871,3 +67985,Ryoichi,28268,1092896,3 +67986,,63215,48178,48 +67987,Bruce Banner / The Hulk,1724,819,0 +67988,Dr. Elizabeth Shaw,70981,87722,0 +67989,Ivan,303542,1878453,9 +67990,Jonas,67509,82188,6 +67991,Jane,16791,21661,5 +67992,Lisa,70074,164945,2 +67993,Mrs. Keppel,8617,15010,20 +67994,Ludmilla (voice),19594,11514,4 +67995,Chief Kirkhoven,73661,52374,6 +67996,Rose Carpenter,146313,1151355,4 +67997,Marg,203819,105838,2 +67998,Patricia Kennedy Lawford,337751,1456292,12 +67999,Clifford Scott,84720,85993,3 +68000,Dancer,170517,1745596,18 +68001,Khiva (as Kimursi of the Kipsigi Tribe),43388,1712378,5 +68002,,116312,1449539,25 +68003,Hotel deputy director,42571,128223,6 +68004,Nurse,16164,82135,7 +68005,Taxi Driver,150712,33178,14 +68006,Tom,140648,1081828,17 +68007,Gustaw Mytnik,74922,1145,1 +68008,Big Mike,337339,1570750,28 +68009,Esther,339408,17773,5 +68010,Christina Zimbardo,308032,52442,5 +68011,Morrow,60269,1605159,14 +68012,Pirita's father,84944,1436337,6 +68013,Cole Younger (as Alan Hale),83354,35322,4 +68014,Anita,10659,1222986,15 +68015,Tod Dalton as a Young Boy,183825,1468194,24 +68016,Herself (Mt. Fiji),103732,1318683,1 +68017,Man in Crowd #1,88042,1024312,17 +68018,Dr. Boyarski,22998,2716,16 +68019,Quinn,228647,21510,10 +68020,Classroom Scout Girl,257344,1683834,41 +68021,Whitey (as Billy Benedict),186268,1263061,6 +68022,,51275,119823,9 +68023,Rapunzel (voice),810,52792,11 +68024,Cyrus,307479,1062,2 +68025,Abe White,26486,8986,6 +68026,Susi,89086,119986,38 +68027,,244956,1353141,10 +68028,Margaret Fitch,4820,39555,6 +68029,American Ambassador,109716,939737,76 +68030,Severin von Kusiemski,162877,1144867,0 +68031,Young Nick,78571,1041542,8 +68032,Saïd,170689,110615,10 +68033,Hulda,350060,97305,6 +68034,Kurt Brock,29510,6844,10 +68035,Maj. Lanning (uncredited),41468,2098,17 +68036,,105584,1666944,7 +68037,Mike Neary,265019,41296,2 +68038,Alonzo Stevens,82,16861,11 +68039,Bam,14669,56691,11 +68040,Juiz,117534,1277523,18 +68041,Dr. James Kildare,153161,2007,1 +68042,Lila Lee,31596,45480,1 +68043,Conrad (Kind),217412,1822119,21 +68044,Natalie,80280,1031746,6 +68045,Mr. Jonathon Hills,82650,1684475,16 +68046,Horatio,113743,29283,7 +68047,Miner at Radcliffe Colliery,28421,85995,45 +68048,Dirk De Jong,98536,31702,5 +68049,Michaels,29290,141094,13 +68050,,57965,1181246,4 +68051,Le père fouettard,305455,224150,3 +68052,Taxi Driver,4538,1797584,14 +68053,Gülo'nun Abisi,27211,97276,4 +68054,Chris Hale aka Steve,88075,7664,0 +68055,Peter Miller,60599,5370,14 +68056,Sandy,103578,1185529,3 +68057,suocera di checco,374416,1879936,9 +68058,,134215,6519,2 +68059,Chip Butler,17303,1399774,12 +68060,Christopher 'Chris' Teller,57993,9208,1 +68061,Harry Catto,413762,1762444,3 +68062,Winston,245891,6972,6 +68063,Frau Hermann,214081,1196986,4 +68064,Mary Parker,102382,6368,5 +68065,Jerry,22582,69344,1 +68066,Louie The Lard/Little Bo Peep,107596,51765,12 +68067,Justine,312669,1607561,9 +68068,Ronny Cauldwell,184741,94217,5 +68069,Chickens (voice),13517,1571365,5 +68070,Monsieur Lefevre,76115,344269,13 +68071,Charlie Gooding,88012,15857,0 +68072,Teddy Gordon,13957,76110,15 +68073,Texas Stage Driver,75315,1290481,42 +68074,Bumboat Girl,52859,101772,33 +68075,Narrator,104776,2891,7 +68076,TJ,319924,20753,4 +68077,Henry - Baggage Man,244201,136895,11 +68078,Daisuke Arashi,418029,571716,3 +68079,Jesse,20648,60460,6 +68080,un conoscente di Teresa,121516,1173630,13 +68081,Spectator's Wife,31118,89202,9 +68082,Himself,85420,80625,14 +68083,Laëtitia,343702,28279,2 +68084,,73628,527095,9 +68085,State Trooper Stan,44287,79651,12 +68086,Shaina,157293,1170146,7 +68087,Miss Twinkleton,84718,8232,7 +68088,Massieu,83475,839196,12 +68089,Eric (voice),16137,35004,3 +68090,Халява,57230,225726,4 +68091,Henchman,331313,1325761,29 +68092,Ron,398289,168475,10 +68093,"Caleb (segment 1 ""Werewolf"")",26811,199919,11 +68094,Emmit,8457,26292,3 +68095,Irja Haartman,442752,1069886,19 +68096,Everett Ricks,28001,99373,6 +68097,Cheryl,100110,2229,8 +68098,Count Levinovitch,38792,10018,9 +68099,Dennis,126841,20982,3 +68100,Mother,83444,652540,10 +68101,Uplifter,3059,1577210,19 +68102,Melik,43464,37884,2 +68103,Reporter,55784,1060479,11 +68104,Thomas Stothard,245700,10465,31 +68105,Bazyli,80324,1413,10 +68106,Charles Matthews,218582,247639,10 +68107,Herself,173467,1063,26 +68108,moglie di Giovanni,38286,1850451,13 +68109,Coach Charlie Hanna,11351,1219497,7 +68110,John Brant,23590,4165,0 +68111,Zulu,186584,160702,2 +68112,Vito,325690,120638,6 +68113,Billy Herndon,43806,12156,5 +68114,Masashi Inoue,121725,13283,6 +68115,Gail's Maid,98125,1471374,18 +68116,Steve Martin,31206,21510,2 +68117,The 'President',105860,32377,2 +68118,Camille Guimard,37454,36209,5 +68119,Fine Woman,102668,1031790,22 +68120,Usherette / Girl with Pearls / Little Old Lady / Bavarian Peasant,9899,60138,12 +68121,William Trainor,413232,30290,3 +68122,Mariken,75578,400982,0 +68123,Viola,356296,1123262,4 +68124,Colonel Mc Straggle,35026,1083547,18 +68125,Marcus Ford,448847,32203,6 +68126,Policeman,28421,102888,16 +68127,Controllore,59040,1060741,11 +68128,Soldier in Nightclub (uncredited),18651,1034935,18 +68129,Young Policeman,11248,80325,20 +68130,Cafe Owner,223655,126123,15 +68131,Butler,52437,121291,7 +68132,Dr. Aoki,52728,97628,6 +68133,Kate,244403,77948,3 +68134,Tim,42533,98102,1 +68135,B'Ella,59861,40036,5 +68136,Mark,271039,65769,2 +68137,,12622,555209,34 +68138,Garrett Byrne,21893,3072,3 +68139,Bartleby,53048,1064,0 +68140,Shen Ding,413198,1139045,10 +68141,Ramsey Cooper,76494,6065,8 +68142,Dare Rudd,53574,4165,0 +68143,Tallon,53524,14465,9 +68144,"Young, long-haired puncher",46436,237347,5 +68145,Sandoni,16661,148402,5 +68146,Wendy,55563,82594,14 +68147,Fletch,18238,55466,0 +68148,Mother,42139,931320,3 +68149,Grandma Cat Donovan,52051,7622,4 +68150,Viggo Tarasov,245891,6283,1 +68151,Lucy Díaz,436,5902,1 +68152,Kim,315855,1234753,42 +68153,Romuald Cichoń,298040,1592548,6 +68154,Hank,270654,1424891,17 +68155,Daniel Sohapi,101669,81685,4 +68156,Brittney,120802,1152083,6 +68157,Guest in Boardinghouse (uncredited),52440,988794,12 +68158,Antonius,235260,202760,5 +68159,Satin,136799,1704768,8 +68160,Dorothy Kyne,36786,10160,1 +68161,Friend Owl (voice),13205,143346,2 +68162,l'éditeur,92251,20795,4 +68163,Asphodel Smythe,222220,1566180,6 +68164,Billy (uncredited),270303,1588362,25 +68165,Kyle,301876,1383382,12 +68166,Officer Kanani,98066,113818,24 +68167,,376934,137336,10 +68168,Frank Duncan,74942,84685,8 +68169,Protester / Man on Corner with Newspaper Smoking (uncredited),3580,228458,67 +68170,Hanka,155426,1519439,6 +68171,Andrew Lee,18514,145360,2 +68172,Abbie,332411,65871,3 +68173,Museum Employee,32657,1666304,60 +68174,Puar,24752,122192,3 +68175,Angela Landis,31078,19957,2 +68176,Nick,10055,3969,1 +68177,Luigi,189,1406674,31 +68178,Mr. Woolensworth (voice),9982,2387,14 +68179,Narasimha Deva Reddy,49028,1336610,14 +68180,Kristy James,146679,62065,1 +68181,Valli,286873,1134160,19 +68182,Artyom,252034,101433,4 +68183,Amelia Earhart,265741,3092,1 +68184,Baron Stephan Wolensky,53853,32428,0 +68185,Håndlanger,72054,234739,7 +68186,Louis,257831,38161,10 +68187,Sofya Gurvich,49106,1004791,1 +68188,Himself,319971,214108,1 +68189,Taeko,340176,1711386,4 +68190,Himself,18893,4429,8 +68191,Josef,250574,45407,0 +68192,Henriks sønn,20372,1270305,21 +68193,Sor Juana,38244,1285239,7 +68194,Andy Lopez,16083,53184,27 +68195,Spirit Squad,428687,1776848,26 +68196,Marion,85640,84659,3 +68197,Emilio 'Zwerg',61035,1042571,13 +68198,Macon,13561,209513,2 +68199,,52188,145518,0 +68200,Carly Campbell,206183,21412,3 +68201,Commando,1724,231,11 +68202,Rico (voice),270946,12080,3 +68203,Leading Pharisee,30973,2968,7 +68204,Mrs. Hong,26955,96661,5 +68205,,321779,1186617,4 +68206,John Bell Jr.,10008,61937,5 +68207,Officer Rodriguez,345922,143261,17 +68208,Carol,244539,1508823,13 +68209,Sunny,298787,142629,3 +68210,Radio Producer,90461,34008,12 +68211,Tim,74505,51455,1 +68212,Mlle Becker,4191,18765,7 +68213,Hulpverlener opvanghuis,58396,78802,11 +68214,Carline,398289,35551,4 +68215,Water Guard,215379,1149255,14 +68216,Jane's Mother,49158,580675,11 +68217,Bertrand,37633,1501043,3 +68218,Principle Daniels,13920,1981,2 +68219,Col. Dalleson (as Casey Adams),43142,85409,12 +68220,Samson Pilot,19995,98216,68 +68221,Tom Buchanan,43114,1009,0 +68222,Bartender,445602,17278,8 +68223,Ivanes,46857,137578,3 +68224,Suzana,109587,584981,1 +68225,Николай Николаевич Персиков,43680,1190186,7 +68226,John Woodley,69266,70746,0 +68227,August Rush,5123,1281,0 +68228,Titus Abrasax,76757,230680,4 +68229,,340961,1356629,12 +68230,Otari,128412,1489472,1 +68231,Mario,9673,11258,1 +68232,Judge Markham,144475,97007,12 +68233,Krankenschwester,6183,48521,29 +68234,Rufina,83430,1129446,9 +68235,Jimmy,43727,10488,11 +68236,Tiny - Gladys' Maid (uncredited),31773,590532,60 +68237,Kentaro Saeki,248087,133168,1 +68238,Noah the Elder (voice),9836,1331,5 +68239,Miss Steinberg,3055,4096,10 +68240,Juan Seguin,10733,31384,6 +68241,Charlie Barker,45556,83769,6 +68242,,79781,9464,5 +68243,Elaine,105528,3128,0 +68244,Frankie Carbo,184341,1241,6 +68245,Police officer,87293,1209478,20 +68246,Pavel,3102,238692,6 +68247,Cheeky,207850,65421,3 +68248,Stripper,96987,1011210,7 +68249,Alex,7515,52851,10 +68250,Lee's Associate,2998,3173,3 +68251,Ball Guest,6972,1413066,37 +68252,Arthur,5123,41295,8 +68253,Mutter,11139,7003,2 +68254,Himself (archive footage),390296,1600259,2 +68255,Direttore della banca,41610,41153,12 +68256,Suicide Patient 2,156,1543046,15 +68257,Old Jock,64868,141578,2 +68258,William Beck,293082,55779,2 +68259,Martyna,61580,1150096,2 +68260,,38362,144616,10 +68261,Record Hop Dancer,2976,1752724,86 +68262,Steve Batier,202214,585,10 +68263,Radio Announcer at Harvard Debate,14047,1355923,39 +68264,,85836,226738,5 +68265,Alonzo Northup,76203,1299189,22 +68266,Caroline,35908,114927,6 +68267,Cyril,13802,15202,9 +68268,Lady Middleton,315010,139657,12 +68269,Clinic Visitor (uncredited),263115,1749834,96 +68270,Schlagersängerin,130544,37345,3 +68271,Gil Perkins,167556,1893185,2 +68272,Turnkey,121923,19787,14 +68273,Xenia,335051,1880344,11 +68274,Zoe,23048,58393,12 +68275,Phoebe,157829,1181306,24 +68276,Yan Dong-Sheng,70057,1089434,8 +68277,Bill,26283,1620084,12 +68278,Killain (voice),31672,934933,10 +68279,Richard Sharpe,75138,48,0 +68280,Pastor,39053,8899,8 +68281,Goffredo,23619,1198213,7 +68282,Batiste Duryea,147722,41755,3 +68283,Marquart,177697,5122,10 +68284,Uber Annoying,426230,1260036,17 +68285,"Cass McAndrews, Sheriff",111470,119258,8 +68286,Andrei Bashkirtsev,126523,142508,0 +68287,Misaki Ota,56232,228075,7 +68288,Prisoner 416,308032,1142720,9 +68289,Dacia,22076,112344,8 +68290,Padovano,37645,22312,13 +68291,Additional Voices (voice),328111,1386148,21 +68292,John Rambo,7555,16483,0 +68293,Mr. Golden,16985,87003,6 +68294,Mark Griffen,21343,16690,6 +68295,Groupie #1,14301,1223883,11 +68296,Miriam Klieg,284537,1470962,16 +68297,President of Viterbo Assize Court,27523,68406,1 +68298,Aaliyah,22448,145628,4 +68299,Lollipop Man / Death Metal Singer,18739,79638,13 +68300,Tango Dancer,58244,147016,22 +68301,Jean-François Godon,6077,47805,10 +68302,John Reed,38684,104561,8 +68303,Kadir,42418,128098,5 +68304,Elly,111239,76944,0 +68305,Topper,333484,86276,32 +68306,Crystal,31421,149335,8 +68307,Briggs,178809,2975,0 +68308,Bess,301875,67837,3 +68309,"Gabrielle, la cuisinière de Beaufort",75066,39876,8 +68310,Arizona,41171,9046,10 +68311,Serena,31421,92295,1 +68312,Cpt. Vladimir Abajev,19757,120000,0 +68313,Kelly,341077,115150,2 +68314,Santi Dizon,98203,1019186,16 +68315,Milana,54155,150028,1 +68316,Jane - Barmaid,105902,106628,12 +68317,Drug dealer,10425,65122,5 +68318,Nicole,21581,559584,3 +68319,Christine Faure,52999,19888,1 +68320,Drugdealer,46930,137820,8 +68321,Mrs. Wheeler,242042,20879,4 +68322,Leonardo del Paso,69060,11977,9 +68323,Sandra,57307,16374,10 +68324,Rene Dupont Chevalier,44888,77159,5 +68325,University President,29695,99099,9 +68326,Himself,226632,1290854,1 +68327,Lt. Corby / The General,10165,1108866,1 +68328,Prof. Juttner,68191,22600,4 +68329,,127445,128047,7 +68330,"André, le producteur",109261,24562,4 +68331,Maggie,215016,3094,4 +68332,Chief Magistrate,144792,33278,3 +68333,Marshall,262338,1330044,10 +68334,Recruiting officer,11658,1405970,29 +68335,Monsieur Rançonnet (voice),126319,185316,19 +68336,André Luiz criança,203217,1683030,12 +68337,Le chef des malfrats,11227,962954,4 +68338,Sheriff Bill Pemberton,144475,95728,9 +68339,Laura,214129,1611026,20 +68340,Abigail (voice),177572,108253,11 +68341,Lynn,142106,106219,9 +68342,Magarri,6972,1222753,18 +68343,Tom Bourdillon,211088,235024,5 +68344,Mrs. Eckert,229610,99376,11 +68345,Iria,56191,124478,2 +68346,Mistress of Ceremonies,32526,1176949,13 +68347,Sebastian,222932,1282883,7 +68348,Lamar,21029,67893,13 +68349,,274127,5401,2 +68350,Vasya Oblonsky,96724,1795831,45 +68351,Leader of His Orchestra,80941,579763,24 +68352,Smokey's Friend,35113,37760,12 +68353,Carmelo González,42502,180174,6 +68354,Ostroróg,31273,107886,33 +68355,Jerry,228034,5170,11 +68356,The Groom,84944,586231,7 +68357,Elephant (voice),378236,1222716,31 +68358,Père Mamours - Simon,26566,79616,7 +68359,Prisoner,122023,5319,10 +68360,Sakai,12622,555198,17 +68361,Nalle,9084,38841,4 +68362,Miner at Colliery,28421,1208018,18 +68363,Frank,117531,96257,2 +68364,Bailiff One,121674,76945,37 +68365,Packing Staff,301334,234621,20 +68366,Roger Hopkirk,39517,123071,0 +68367,Philippe Chalamont,75066,24379,1 +68368,Man in Aisle (uncredited),69,1571910,40 +68369,Leading Lady,153272,1117339,12 +68370,Donkey (voice),10192,776,1 +68371,Stanley,16659,127140,12 +68372,Gangster,27966,1464495,47 +68373,Lt. Bob Jent,199373,14721,9 +68374,Prince (voice),33065,125737,11 +68375,Geldbote Holger,9690,3939,11 +68376,Himself,27637,1316589,25 +68377,Hamish,346838,1171003,5 +68378,,88953,1537388,2 +68379,Arthur Dunlop,49172,21315,1 +68380,Bobo,56264,15661,9 +68381,Shoes,52661,174356,12 +68382,Waiter (uncredited),936,1716243,19 +68383,,15830,1439658,22 +68384,Fabiola Normale,439998,128220,7 +68385,Uber Driver,263472,1049548,6 +68386,Lilya,233487,1070721,5 +68387,,51267,143626,4 +68388,,390526,39012,5 +68389,Lee,14138,81331,1 +68390,,244971,1280184,2 +68391,Mary Petrie,183412,16502,3 +68392,"Johann, Kutscher",58757,228351,14 +68393,Zehava,35856,235135,4 +68394,Hooverville Cop,921,55588,48 +68395,Maggie Grayson,140648,25787,5 +68396,Theo Gorbov,10274,64674,9 +68397,Jérôme,274483,1367032,9 +68398,Herself,41569,68532,4 +68399,protettore,61799,27647,7 +68400,,321142,1406502,6 +68401,2nd Lieutenant (Team 4),19898,54023,18 +68402,Chef Biker,416445,54706,1 +68403,,297288,225301,7 +68404,Le concurrent,78340,185343,11 +68405,Carl,44718,65167,6 +68406,Vadim,63291,240326,1 +68407,Tagg,45273,21355,4 +68408,Lottie,128437,10929,2 +68409,Brian MacLean (bush pilot),32921,5788,0 +68410,Space Police Chief,280617,10872,13 +68411,Montague - FBI Agent,90616,1692096,28 +68412,"Charlie Webb, bar owner",28775,101961,7 +68413,Annie,16373,120441,9 +68414,Roach,257088,213596,8 +68415,Natalie,294272,1423519,4 +68416,,148615,151537,19 +68417,The Child,105539,1620998,3 +68418,Mrs. Adams,140648,1304766,8 +68419,Tori,29083,30609,12 +68420,The Girl,38417,120391,5 +68421,Slave Girl (uncredited),76203,1438311,79 +68422,Deputy Raymond Ward,14552,18271,17 +68423,,248747,582484,1 +68424,Lila (voice),15242,130917,4 +68425,Jim Fuller,153652,38761,1 +68426,Kendra,71670,87444,3 +68427,Investigator Nikolai,36695,94065,5 +68428,JD Glover,27196,96410,5 +68429,Lea,224282,81462,2 +68430,,11205,25222,14 +68431,Max Russo,26736,60255,1 +68432,Crying Woman,88005,1344662,17 +68433,Dave,14137,21131,4 +68434,Samantha Hunt,1877,44149,5 +68435,Miss Roman,65488,1137031,13 +68436,Cubby Crouch,204994,30849,3 +68437,Blacksmith,60488,98052,17 +68438,Linda,20430,19189,1 +68439,Aunt Julia Ramsby,43157,13962,7 +68440,Willie Ferguson,151043,82280,4 +68441,Officer Bauer,220820,104473,9 +68442,Capt. Jack Harding,108812,3636,2 +68443,,182799,39389,6 +68444,Ingrid,44027,2838,2 +68445,Stacy,13477,132354,7 +68446,Whitey Ford,20536,1904,2 +68447,Shaved Head,45610,1062375,17 +68448,Sparrow,37301,106121,16 +68449,Mary McLaren,70864,275590,1 +68450,Tai Yue,290864,140485,4 +68451,Baltimore & Ohio Engineer,147829,1090669,16 +68452,Angie,193893,128207,57 +68453,Ivan,146216,1248,14 +68454,Trevor,41809,1322860,3 +68455,Michelle,17473,81921,5 +68456,Maj. C.E. Breverly,151310,13994,5 +68457,Akshay Rajj,422603,1699988,1 +68458,,16017,238590,17 +68459,Czeslaw,24624,1006058,13 +68460,,65958,53425,6 +68461,,154442,553345,7 +68462,Ace Carter,75880,90000,3 +68463,Julika Hoffmann,130739,28273,2 +68464,Sakura Kinomoto (voice),31347,140918,1 +68465,Daddy Grace,239566,108188,43 +68466,Hunter,18977,151610,7 +68467,Sarah Higgins,43390,110210,7 +68468,Dr. Del Hartwood,150247,14966,2 +68469,Drunk Wanting Directions,132928,9094,22 +68470,,27276,551830,17 +68471,Gaetano,43379,1430285,10 +68472,Mac - Bartender,37992,34317,7 +68473,Maria,68063,1039669,6 +68474,Skier,37339,117469,0 +68475,Sam Cotton,299780,26854,1 +68476,Farmer's Wife,18569,88999,23 +68477,The King,10473,94807,7 +68478,Hammer,17577,2682,7 +68479,,306383,122166,1 +68480,Massimo,38289,69037,1 +68481,Michelle,125490,1102260,10 +68482,Kurihara,101929,106165,5 +68483,Comte Enguerand - Louis Marie de Montignac aka Legrain,11912,11544,0 +68484,Bert O. Bratt,22682,108172,10 +68485,,117212,1142581,13 +68486,Pardon Chato,26119,4960,0 +68487,Mujer,152611,1023515,1 +68488,Le père de famille selfie,382589,1167481,10 +68489,Crazy Bee (as Chan Sum Lee),24916,74193,2 +68490,Zebulon Gant,616,9188,4 +68491,Father,5544,44021,3 +68492,Insurance Salesman,43441,3347,14 +68493,Harriet Craig,120357,30233,0 +68494,Vance Voorhees,15261,78037,9 +68495,Athos,64044,238488,1 +68496,L'adjudant Willsdorf,31344,32364,1 +68497,Fazio,19286,56348,3 +68498,Gayle,13960,74610,8 +68499,Lucy van Pelt (voice),227973,1393178,5 +68500,Lester M. 'Baby Face Nelson' Gillis,35926,1937,0 +68501,Haldorf (voice),287233,12077,3 +68502,Nina de Wit,223551,239573,5 +68503,Maria,186991,73726,5 +68504,Resident,347945,1549113,8 +68505,Councilman Douglas,8292,8689,10 +68506,Racist,19912,74136,6 +68507,Lee Christmas,76163,976,1 +68508,Waitress,6977,206379,14 +68509,Sheriff Cooley,122930,11477,3 +68510,Judy,19719,20750,11 +68511,Generaloberst Alfred Jodl,613,37102,15 +68512,Richard Farning,46586,136981,8 +68513,Sam,54752,27811,1 +68514,Tasaburo Hishiya,43364,7457,12 +68515,Simona Natali,54309,215662,8 +68516,Cop,2001,97268,45 +68517,Doctor McPheeters,96089,91260,10 +68518,Buster Keaton,51367,8635,0 +68519,Dr. Lambert,241071,31514,5 +68520,Señor Salas,78318,30203,37 +68521,Controllore dell'Aldilà,41610,271664,15 +68522,Roadie,240745,1660686,20 +68523,Kelly Garner,221981,175660,2 +68524,Tony,440508,1846442,11 +68525,Himself,36944,116518,0 +68526,Anne Morellini,139159,32513,2 +68527,Figaro,68023,24895,11 +68528,Kyle Wincott,272878,1223726,3 +68529,,86985,1388977,9 +68530,Jim Huxley,423377,2130,2 +68531,Strangled Deputy,6977,51735,13 +68532,Polizist Griebe,27637,1052328,5 +68533,Hulk (voice),30675,106774,0 +68534,Lethe,58790,1504058,9 +68535,Mr. Universe,16320,38582,10 +68536,Himself,44637,131133,0 +68537,Astronaut pilot,8410,55747,5 +68538,Jake's Girl,14809,1325457,8 +68539,Mr. Prendergast,64928,33025,11 +68540,"Samoilovich, Captain of Krassin Russian Icebreaker",8063,588062,8 +68541,Publishing house manager,80443,589499,5 +68542,,194853,1175187,0 +68543,Jack,93676,1782152,18 +68544,Yee Lung,37030,1342844,6 +68545,l'enfant solitaire,42252,24323,8 +68546,Hilda Wilson,41551,126899,7 +68547,,295273,1347011,13 +68548,Dadasaheb Phalke,35572,114382,0 +68549,Dr. Roger 'Tony' Toussant,55922,7868,11 +68550,Captain Hook,51120,7393,0 +68551,Peter,64204,1076612,3 +68552,Juliette Duchannes (uncredited),109491,555652,27 +68553,Albert,110160,132830,9 +68554,,254575,112158,7 +68555,Stanko,126090,133023,7 +68556,Sasha,440777,1447880,25 +68557,Mesrob,354859,41316,10 +68558,Party Guest (uncredited),22943,89600,14 +68559,Jimmy,42599,2964,3 +68560,Gina,72105,1181314,20 +68561,Grandad,286369,11180,2 +68562,Himself,1278,1653,6 +68563,Himself,417870,1745276,19 +68564,Leni Kalder,11248,178565,22 +68565,Kiddy,59075,228789,5 +68566,Jasper (voice),13654,34982,7 +68567,Bartender,59191,185805,4 +68568,Vidrine,296524,6949,2 +68569,Temembe,271718,5384,24 +68570,Fotografo,42579,128251,8 +68571,Upscale Party Guest (uncredited),213681,18916,67 +68572,Female Guard,32526,1176948,12 +68573,Sarah's Minion,251227,1807055,15 +68574,Acting Troop,7548,961840,16 +68575,The Woman,65599,92730,0 +68576,Markus,248710,591569,2 +68577,Brie Traverston,363479,84698,0 +68578,Kartashov,126523,237286,7 +68579,Joan White,33592,14702,1 +68580,Uemoto,18722,553442,42 +68581,Headless,58,22075,20 +68582,,252096,222326,4 +68583,,80545,57574,2 +68584,Vääpeli Körmy,55759,147771,0 +68585,Tori,331161,476866,5 +68586,Le promoteur,3423,24461,11 +68587,Shiina,140509,105403,2 +68588,Himself,151870,1165400,3 +68589,Ginette ('La virginité'),98302,39199,6 +68590,Roberta,14423,75318,12 +68591,Librarian,8981,1543046,12 +68592,Dr. Joseph Myomo,67696,40530,4 +68593,Trish,118677,59156,6 +68594,Kelly Bennett,343369,87431,4 +68595,Cook,267935,58804,19 +68596,Prison Guard,3580,162828,30 +68597,Caroline Bender,57103,3382,0 +68598,Sarah Scarangelo,13312,56288,1 +68599,Holy Man,37958,115595,20 +68600,Peon,332827,1658599,17 +68601,Vivian,269258,10257,12 +68602,Mrs. Yauch (as Maria Quiñones),335970,1718104,36 +68603,Himself,269797,4027,4 +68604,Storage Unit Holder,34496,1320570,9 +68605,Johnny,363890,27737,4 +68606,George McCarty,9918,29934,15 +68607,Chuck,91548,33585,4 +68608,Party Waitress,323675,1769807,43 +68609,Marie-Louise,68123,571550,5 +68610,Ryan,64130,221125,5 +68611,Matteo,378570,1566496,1 +68612,Storeowner,125510,1242036,10 +68613,Artist's Child,44936,1432696,8 +68614,Officer Mansfield,14457,153946,13 +68615,Pádraic Power,333663,73287,6 +68616,,362682,1519031,5 +68617,Doctor,52485,166070,5 +68618,Cecília,377362,1883082,6 +68619,Newscaster,45132,1363398,32 +68620,Biker / Bar Patron / Cop,268920,1755084,105 +68621,Aanappara Achamma,134474,1099268,3 +68622,Dr. Morton,17209,30861,5 +68623,Unicyclist,43809,1556477,66 +68624,"Herself (segment ""Salute to Orson Welles"") (archive footage)",49954,4111,2 +68625,Maria,133328,70984,7 +68626,Takku,55495,1559762,19 +68627,Steven,61527,74541,6 +68628,Harleen Quinzel / Harley Quinn,16234,34978,5 +68629,The Psychopath,18912,3970,0 +68630,Daughter,120172,1071591,2 +68631,Leo,49220,590853,4 +68632,Xian Chow,24993,64662,2 +68633,Bree Syn,38134,1158355,0 +68634,Jimmy Olsen,106358,930166,3 +68635,Warrant officer,64393,525617,3 +68636,Himself,151870,1743385,5 +68637,Stacy Grant,43457,14508,3 +68638,Erin Villenueve,366045,18658,1 +68639,Fraser,30708,12950,1 +68640,Izzy,7511,51381,4 +68641,John Allen Muhammad,158739,21353,0 +68642,Girge,55437,222351,0 +68643,,27925,87005,12 +68644,Sally (voice),43641,65220,6 +68645,Ben Klandis,9950,22970,9 +68646,Bert Klinger,47794,110072,9 +68647,Peter Colgrove,2397,24521,6 +68648,Jennie Appleton,32558,39554,0 +68649,Judge,14881,60196,10 +68650,Chuck Johnson,71996,10194,4 +68651,,77057,78356,15 +68652,Burgess Dog Walker,81188,936667,15 +68653,Le Père Clément,8049,35003,6 +68654,The Whistler (uncredited),28668,1474802,10 +68655,Tomasz,47120,223774,1 +68656,Philharmonic Patron,5123,1208609,39 +68657,Wu Kong,10275,1342844,4 +68658,Network Executive #3,14923,7404,38 +68659,Chorus,339362,1403650,18 +68660,Jackie,77673,35137,2 +68661,Protagonist,327389,1432092,15 +68662,Ingunn,21786,71612,1 +68663,Juliet Raeburn,174925,930621,2 +68664,Rush Fernandez,69075,1200359,10 +68665,Lynch Mob,339408,1622093,35 +68666,Sam Decker,95140,16644,0 +68667,Clip from 'Broadway Melody of 1938' (archive footage),33740,1935,26 +68668,Menteith,225728,54,8 +68669,Pierre,8588,1318526,11 +68670,Oscar,90616,1692065,7 +68671,Armand,53739,64014,4 +68672,Tito (voice),177714,1160230,0 +68673,Norman (voice),328111,124748,12 +68674,Yukimura Sanada (voice),63486,70121,0 +68675,Elinor Loredan,2309,15735,6 +68676,Hattori (voice),149870,2541,1 +68677,Mom Bunny (voice),81003,571265,16 +68678,Quiera,21371,1102577,5 +68679,Morton,42187,107550,6 +68680,Sarah,14145,60415,0 +68681,Pop,88641,5950,8 +68682,John,38526,228102,4 +68683,Pakya,21570,1434982,7 +68684,Mrs. Crawford,295588,1533665,14 +68685,Aggie Hunter,52362,2021,4 +68686,Ingunn,15177,77985,14 +68687,Mary Marino,55294,4726,0 +68688,John C. Calhoun,112284,14658,13 +68689,Deputy,27966,96061,50 +68690,Anne,110412,1049406,2 +68691,Archivmitarbeiter in Warschau,167424,1822696,10 +68692,Raul,52454,1205579,33 +68693,Strip Club Patron,71670,240761,42 +68694,Munniya,248698,1108805,3 +68695,Newscaster (voice),177572,287341,12 +68696,L'inspecteur Duboeuf,33436,185316,9 +68697,Resl,10129,63907,4 +68698,Priest,205584,1535049,22 +68699,Frederick Barnaby,342588,9718,4 +68700,Pierre Verger,54832,12748,0 +68701,Ray Eisenberg,277710,21154,36 +68702,Adviser,11658,77058,38 +68703,Marnie Rollins,5289,42710,11 +68704,Herr Karl,82157,39251,1 +68705,Bit Part,94182,1673562,32 +68706,Seok-ho,387886,550683,2 +68707,Ludo,6076,1844,0 +68708,Margo Pearson,26768,96181,8 +68709,Mr. Friedman,7288,17871,17 +68710,Fernando,448763,1783087,1 +68711,Doctor,16186,1464838,8 +68712,Manuel,70122,138129,3 +68713,Aide,150712,155268,53 +68714,Smitty,20674,9276,25 +68715,Phil,287587,2694,7 +68716,Dr. Gratton,30640,14300,5 +68717,Rob Tyler,86131,28248,1 +68718,Persian General,1271,102742,44 +68719,Jenny,44921,76979,1 +68720,Girl on Picnic Table,154537,1199481,15 +68721,Jane,296626,1301653,9 +68722,Anne Welles,3055,30121,0 +68723,Moog,29352,103614,1 +68724,Clothilde Brunet,41277,1032213,28 +68725,Sweeney,1116,15507,9 +68726,Berno Berni Jr.,58615,1900910,4 +68727,Brother-in-Law,61109,8730,11 +68728,Anna-Maria,28209,100110,4 +68729,Max,32764,150574,1 +68730,Lee Jae-hyeok,94555,64497,1 +68731,,85377,1041465,4 +68732,imprenditrice Valmarana,107052,100058,17 +68733,,27276,551846,37 +68734,Prospective Buyer #2,16164,82139,12 +68735,Asa Timberlake,43525,107684,4 +68736,"Ryohei, le fils",27372,944892,1 +68737,,53688,576473,4 +68738,Nina,39195,4778,5 +68739,Bagoas Dancer,1966,1650996,46 +68740,Markus Brehner,303856,126959,2 +68741,Pepe Bordo / Waiter,38404,94401,8 +68742,Mary,29705,3680,7 +68743,Mrs. Violet Shenton,26796,11213,1 +68744,Vater,198511,53503,5 +68745,Secret Service Agent,20674,6326,29 +68746,Jacob Krubeckoff,46623,14533,17 +68747,Bernard Frank,14555,7278,4 +68748,Pestonjee (Pesi),249914,6217,1 +68749,Olivia,229297,2462,8 +68750,Brett Wilson,20919,1488236,10 +68751,Juana,43459,935305,2 +68752,Alfredo,43544,129574,7 +68753,Julia,114931,1351919,2 +68754,Secretary,13477,1569779,17 +68755,Mr. Matthews,11364,69294,10 +68756,Rachel,235046,126932,3 +68757,Dragar,245950,1888577,2 +68758,Dr. John Hichcock,28533,101100,2 +68759,Tyler,286372,1352331,7 +68760,Blonde Girl,38027,1762435,26 +68761,Lin Sen,69310,11401,8 +68762,Sully,371462,218984,4 +68763,Junior Scientist,262841,210904,9 +68764,Jasper G. Wingait,43390,14518,6 +68765,Himself,9815,59540,19 +68766,Oleg Pavlovich Filippov,30619,229355,4 +68767,Alikersantti Friman,55759,143125,6 +68768,'Eh' Lady,286521,5385,18 +68769,Woman in Red,370755,1650114,22 +68770,Traveller,305455,1356449,15 +68771,Tsarina Alexandra,46827,21245,1 +68772,Himself,105583,10592,9 +68773,Sergeant Kenefick,84209,86345,11 +68774,Lotus Land Dancer,32657,971237,20 +68775,Countess Rostova,169355,131234,3 +68776,Coleman,274820,28633,2 +68777,Amber,242310,1315802,14 +68778,Billy Shear,43562,103071,2 +68779,,130957,27298,16 +68780,Kisiel,31273,55981,13 +68781,Brooke,156981,932695,3 +68782,Mrs. White,192990,55688,2 +68783,Bomba (voice),116711,58224,3 +68784,Floyd - SWAT Team,90616,1201511,34 +68785,Bart Gafooley,50326,80742,2 +68786,Theodore Findley,225499,30211,4 +68787,Hotel Manager,23397,1172830,12 +68788,Himself,140554,1707820,5 +68789,Vijaya Agarwal,20623,1661736,18 +68790,Mazie (uncredited),80168,1368545,10 +68791,Amy,277710,1053170,5 +68792,Tina Douglas,39824,101625,12 +68793,Scott Claussen,73661,114599,3 +68794,Dancing Woman (uncredited),411741,1491975,21 +68795,Arnold Reuben,242631,18586,20 +68796,Pete Hendrick,75174,424,3 +68797,Mr. Herbert Poole,120259,84935,5 +68798,Won-seok,18374,227638,2 +68799,Flora Finlake,257302,15200,1 +68800,Andreas,42420,85819,5 +68801,Safari Guy in TV,14923,1219029,60 +68802,,74154,237970,7 +68803,Town Resident (uncredited),109491,1011212,46 +68804,Esther Jacob,19338,41663,10 +68805,Edmund,10488,1077896,7 +68806,Ah Chiu,34216,12466,3 +68807,Meg Dixon,29260,82833,1 +68808,Will Porter,423988,221018,0 +68809,Cyborg Master,90616,80579,1 +68810,Vater,1561,1244470,3 +68811,Okei-chan (voice),63486,239448,3 +68812,Mrs. Compeyson (uncredited),121674,237411,41 +68813,Himself,315850,105787,6 +68814,Megane,51890,76934,1 +68815,Professor de Academia,448763,1848674,43 +68816,Kihachi,89462,213519,0 +68817,Emma Bryce,25918,12498,4 +68818,fröken Holm,128946,933897,17 +68819,Mike Grayson,242332,33777,10 +68820,,46806,10386,4 +68821,Lord Evelyn Gaylord,5881,385,3 +68822,Ivy,127329,1174369,7 +68823,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1801204,15 +68824,Omar,381356,1588451,17 +68825,Catherine Philippi,98277,240956,23 +68826,,412363,1109623,9 +68827,Hitomi Tokunaga,11838,70671,2 +68828,Nils Kodarski,332759,32866,7 +68829,Miss Barnes,55604,85956,10 +68830,Nightclub Patron,228647,121095,21 +68831,Dev,190940,6519,2 +68832,Balon,12920,40481,6 +68833,Pez,58918,181884,13 +68834,Edurne,8088,399,10 +68835,Pastor,27937,143693,8 +68836,Guardia,335053,1510032,23 +68837,Blair,15671,147891,6 +68838,,303398,86302,1 +68839,Bill Rockne - Age 5,43812,1673804,42 +68840,Erik,11832,1077849,19 +68841,Le colonel,166883,320107,5 +68842,Pervus De Jong,98536,34755,7 +68843,Elio,49712,244967,15 +68844,Nurse Calista Davis,204839,25946,8 +68845,Indian,73984,1003256,10 +68846,Herself (uncredited),4964,56731,29 +68847,William Hare,52203,9221,1 +68848,Top,57627,226568,5 +68849,Darek,53172,53,7 +68850,Petty Officer 1st Class Stillwell (uncredited),10178,17754,36 +68851,Cristu Bulat,13056,37205,16 +68852,The Great Writer (uncredited),50012,143280,7 +68853,Lola,357130,3340,4 +68854,Tough Husband,352186,74748,7 +68855,Tom Adkins Sr.,38850,65717,0 +68856,Another Guest #1,2567,51389,46 +68857,Mr. Jaspers,866,1711,16 +68858,President Chen (voice),16873,2047,4 +68859,Himself (archive footage),215741,4415,0 +68860,John Houseman,50008,143232,11 +68861,Bishop,182499,8664,4 +68862,Mr. Lee,2463,237119,7 +68863,Mankka-Arvi,54356,11263,1 +68864,Watchman at Lock 57,53949,100944,25 +68865,Counterman,42216,53517,16 +68866,Enfermera,41298,1821642,21 +68867,Himself - Sexologist,97724,1388673,24 +68868,Mary Louise Morrison,21753,3202,5 +68869,Hallway Girl,8457,1586947,24 +68870,Cyrell,9914,39849,12 +68871,Actor 'Judge Brack',29116,13969,11 +68872,Angela's Brother,274479,1102317,42 +68873,Jack,383538,937515,6 +68874,Toby,24578,117132,5 +68875,Luis Buñuel,31299,86133,2 +68876,Outtake A.D. (voice),15906,1080210,13 +68877,Jean Lawrence,121154,8228,4 +68878,Jojo,229559,16859,2 +68879,Elisey (voice),33534,146923,3 +68880,Hosaku Tanaka,51581,990589,5 +68881,Shakespearean Actor's Lover,312669,1662555,15 +68882,,232739,1327364,7 +68883,Michael,109391,1124418,0 +68884,Cooper Barton,99861,1760879,45 +68885,Ismo Majuri,248710,232400,3 +68886,"James 'Jimmy' MacMahon, Jr.",43846,14874,8 +68887,Lead Kidnapper,14923,8655,68 +68888,Monk-E (voice),149910,66646,17 +68889,Rebel Translator,209112,1696262,128 +68890,L'écuyère,90228,1161224,3 +68891,Moe,418772,51100,6 +68892,Buzz,27739,98875,7 +68893,Parabolic Engineer,2001,1781709,50 +68894,Himself,24978,60545,4 +68895,Gerardo Gonzalez,56601,1291351,10 +68896,Dinning Hall Watchman,72875,568033,22 +68897,Roscoe Rules,48852,39998,5 +68898,Artur Terskiy,395914,1614747,7 +68899,Caín,46341,135925,0 +68900,Judite,248543,227543,1 +68901,Billy Barone,3701,33864,5 +68902,Raven,72946,1224102,3 +68903,Howard Hillary / The Man From Beyond,171432,1043380,0 +68904,Yui Kazama / Saki Asamiya III / Sukeban Deka III,45489,554495,0 +68905,Judge,13493,61607,7 +68906,Tina Minoru,284052,1697473,14 +68907,Tom Ashenbrunner,60853,1433453,8 +68908,Gerardo Latini,82368,12259,0 +68909,Eli Mirichenko,2001,1781690,18 +68910,Pälä,286267,1317592,10 +68911,Doug Long,50590,28633,2 +68912,First Officer,10916,132,9 +68913,Smithson,10475,1886270,10 +68914,Kelly,339342,938911,5 +68915,Carl,1819,2876,2 +68916,Jason,49950,34202,4 +68917,Tracy,25655,112982,9 +68918,Saïd,38021,580606,7 +68919,Rose Grogan,18684,83443,3 +68920,Wendy,257345,21702,8 +68921,Raul (voice),9836,4992,11 +68922,Pegahs Großvater,1912,10238,16 +68923,Mike,29362,60951,2 +68924,Beggar Su Chan,67021,240171,3 +68925,'Happy' Cardigan,156335,30212,0 +68926,Female Doctor,8899,1097144,15 +68927,Kyogen Player #1,616,1593806,24 +68928,Kim,217412,1089139,5 +68929,Bludworth,9286,33339,13 +68930,Ramon,72822,51100,0 +68931,дачник,49653,1386476,5 +68932,Supermarket Customer (uncredited),354979,1354406,77 +68933,Harry,26323,85897,6 +68934,Susie Martin,50326,67849,0 +68935,Judge,85420,29579,12 +68936,Elder Orin (voice),16873,2,14 +68937,Gary Cooper,76494,170820,7 +68938,Elvis Presley,69,419,4 +68939,Giggles,29054,102691,12 +68940,Howard Jamison,26131,97944,6 +68941,Doyle,42216,79875,11 +68942,,47200,1510927,5 +68943,Dr. Kramer,5421,1016074,7 +68944,Louis,17985,21196,4 +68945,Hobo With A Shotgun,79329,586542,19 +68946,Рафшан,31059,235916,1 +68947,Himself,413770,67269,10 +68948,Mitsuko,135335,239650,10 +68949,Frank,38048,10430,2 +68950,Bike Kid,272878,1683787,30 +68951,Customs Officer (uncredited),2288,1392726,8 +68952,Henry Hale,4257,8984,3 +68953,John Hagman,196027,84278,5 +68954,Dr. Marconi Assistant,75761,1769860,19 +68955,,38099,119656,22 +68956,Dallas' Flirt,77930,1010349,66 +68957,Abby,250376,1285592,4 +68958,Anne Bellec,36140,1007733,0 +68959,Maid (uncredited),76011,8829,13 +68960,Spruts,41581,86848,6 +68961,Conrad Matthews: Staff of Nutbourne,83015,47664,10 +68962,Female scientist,24392,1656604,13 +68963,Casey's Chauffeur,43809,1291266,44 +68964,Felix,41115,125494,1 +68965,Tom's Child's Voice,56669,1512994,13 +68966,Paramedic,73565,1231106,19 +68967,Alessandro,82806,59270,0 +68968,Teacher,369406,1872420,27 +68969,Emerald,121598,139809,13 +68970,Pat,46586,99905,1 +68971,Abigail,56264,2022,3 +68972,Lorna MacLaurel,43889,227034,2 +68973,Frozen Guy #2,193893,1083987,45 +68974,Ed 'Mac' McGrath,157343,139179,34 +68975,Henry Carson,229757,37446,0 +68976,Romesh Thapar,20623,1661733,7 +68977,Frank Taylor,42683,4110,0 +68978,Mrs Charlotte Watson,10610,54615,6 +68979,Geisha,315837,1776033,30 +68980,Valet,213681,1696151,13 +68981,Chuck,142216,1176784,17 +68982,Himself,32451,1137249,2 +68983,Zandar / Nemesis Enforcer / Scientist,17421,19540,10 +68984,Kreatur (voice),209112,130081,110 +68985,Velma Von Tussle,2976,1160,1 +68986,Office Worker (uncredited),31411,122978,6 +68987,Deputy Burt,21950,102454,13 +68988,Zigeunerjunge,3716,1406155,28 +68989,Judge Simon Agry,43114,116988,3 +68990,suora,61217,73687,25 +68991,Adrienne,47459,589847,6 +68992,Mrs Millionaire Chan,10044,1359902,12 +68993,Oficial,82999,628641,7 +68994,Padre di Crocetta,173847,1423300,8 +68995,T.K. Poole,16005,454,2 +68996,Megumi Katô,45489,554497,4 +68997,Eloise,59191,95039,1 +68998,Raimund,167424,41276,13 +68999,Jimmy Perkins,66881,549026,18 +69000,Gene Fredericks,120357,96741,18 +69001,El Tarlo,10870,146301,5 +69002,Heather Dromgoole,402582,1637559,14 +69003,Himself,447758,1726924,35 +69004,Chae Su-Yeon,16371,80458,1 +69005,Michael Bloom,286709,11477,4 +69006,Julia,256311,49628,2 +69007,Timppa,73099,568086,9 +69008,Heather,218778,1096930,29 +69009,,75018,970681,4 +69010,Lucas Clinic Security Guard,125490,1179446,20 +69011,Telegrapher (Indian Attack),56154,34209,30 +69012,Powell,1450,5414,10 +69013,Tree Voice,79329,60974,22 +69014,Combo,11798,1115,1 +69015,Michele's Partner,11358,60433,20 +69016,Dwight Morris,17317,1676727,13 +69017,Caroline Newcliffe,40218,125128,2 +69018,Laura,116437,1466300,7 +69019,Writer,88564,1467094,8 +69020,Izzy,252680,142956,3 +69021,Lori,254188,155950,8 +69022,Jeweller Seller,49853,1648787,29 +69023,Pascale,38792,18218,6 +69024,Eero,362758,1450103,7 +69025,Josh,71139,59283,1 +69026,,19812,1563,17 +69027,Leonie Stevens,128795,37366,0 +69028,The Coloratura,31993,1467335,45 +69029,Jill,359412,1031261,13 +69030,Ben Patimkin,42604,5250,2 +69031,Geoffrey Radcliffe,28421,1905,1 +69032,Bryan,89325,45407,6 +69033,Scott,128081,1094137,12 +69034,Outer Party Orator,1984,24340,10 +69035,Stanley Borden,29286,96701,10 +69036,Lance Poole,34651,82216,0 +69037,,225503,1210954,12 +69038,Lek,38526,76478,6 +69039,Tortured Inmate,40029,551942,12 +69040,Frau Krauss,11677,48931,5 +69041,Herself,145154,971344,3 +69042,"Himself, Cameo Appearance (uncredited)",32552,76381,16 +69043,Algernon,19181,1085059,8 +69044,Skiorch,9795,59312,9 +69045,,65713,237521,7 +69046,Jehan Buridan,79892,24476,1 +69047,Mark's Mom / Ensemble,15199,87931,15 +69048,Memphis Parking Lot Donor,58462,113461,18 +69049,Rhoda Shillitoe,70498,109410,1 +69050,Zoe,345916,80109,9 +69051,Selma,33623,582055,6 +69052,Frau Fleischhacker,12128,68853,6 +69053,Le directeur,29259,103400,6 +69054,Mamadou,21371,1102576,4 +69055,Mr. Silver,1599,4029,15 +69056,Ride,52034,237169,3 +69057,доктор Фёдор Абрамович,121688,83838,4 +69058,Paul,92424,24563,8 +69059,Rebecca Edmonds,48967,80145,2 +69060,John Noonan,277237,109835,12 +69061,William Pitt,15163,71580,2 +69062,Tinker Mason,54801,106992,4 +69063,Sailor,26376,544817,68 +69064,Army Pilot,18651,1521391,82 +69065,Gilbert Martin,73194,4958,1 +69066,Mark,1819,19278,8 +69067,Hamilton MP,77822,1140110,14 +69068,Jean Parker,12483,10767,3 +69069,Homme parking,35025,1861965,20 +69070,Evan,241855,17441,0 +69071,Hélène,59349,1330700,11 +69072,Hotshot Gabe (as The Hoosier Hotshots),173634,1506701,7 +69073,Goska 'Go',112531,1055099,4 +69074,Ezra Kramer,2503,349,3 +69075,Quincy Watson,16428,134,0 +69076,Chamanbahar,14705,85035,3 +69077,Kit Peabody,226968,5960,4 +69078,Perkins - Greengrocer's Boy,42852,85542,18 +69079,Woman Who Wants New Sheets,381073,1593043,17 +69080,John's Dad,297265,28478,5 +69081,Fung Yu-Sau,290864,71051,2 +69082,Mrs. Ridgefield,130507,29953,10 +69083,Harry Miller,28561,13979,3 +69084,Albertelli,106155,11163,1 +69085,Cute Girl on Stairs,8457,1074686,17 +69086,Joseph Riverwind,24090,57448,3 +69087,Feuerwehrmann,75969,235884,59 +69088,Jacky,37600,1522206,5 +69089,Lance Dowds,2295,11662,9 +69090,Sonia,16022,18686,5 +69091,Blonde,48852,99888,16 +69092,Ed,118443,5918,3 +69093,Father Merrino,323665,87707,9 +69094,Lydecker,37308,4774,0 +69095,Emily Moore,96936,1172494,5 +69096,The Beautiful Boomerang,134397,187996,4 +69097,Mrs. M____,315855,20577,35 +69098,Jennifer,251232,209630,3 +69099,Karen,390777,11826,4 +69100,Human Stretch (uncredited),39345,77075,23 +69101,Melissa Kennard,157152,6407,1 +69102,Mr Mannion,375355,1612444,8 +69103,Hungry,375366,1886315,39 +69104,Edward J. 'Blackie' Gallagher,28564,11492,0 +69105,,69310,116636,41 +69106,Pvt. Engels,7454,1333933,8 +69107,Gerhardt Eisler,49508,5739,5 +69108,Hassan,55177,58511,5 +69109,Yee's superior officer,32233,296066,4 +69110,Sebastian,227700,1248,2 +69111,Crayfield,53792,74877,15 +69112,Jang-mi,77117,1256494,3 +69113,Adams,130957,23048,5 +69114,Black Woman (uncredited),14615,89942,47 +69115,Barnett,31146,1841264,19 +69116,Deborah Lancaster,33839,133730,3 +69117,Lucy Bowen,257377,145861,2 +69118,Wall Street Stepdaughter,232672,1271681,26 +69119,Sakai Sumire,45441,58593,1 +69120,Maggie,273610,54645,4 +69121,Thomas,312221,1746931,49 +69122,Dr. Serral,2974,590970,6 +69123,Bobo / Commissioner Gordon / Shot / Guard (voice),40662,21163,8 +69124,Matron,35052,1003411,8 +69125,Reaper,34796,1509,9 +69126,Masha,57781,240540,2 +69127,Papu,148478,148353,2 +69128,Lucian / Strong Zealot,284052,78110,8 +69129,Himself,157117,1161966,27 +69130,Benjamin Lapp,74549,1535985,4 +69131,Boy,199463,3855,14 +69132,Man at Demonstration,81120,117326,31 +69133,Flying Officer Johnny Hammond,55236,18802,1 +69134,Kathy H.,42188,36662,0 +69135,Magyardolmányos,94663,70499,6 +69136,Herself,413782,551578,12 +69137,Marcus,33570,15319,0 +69138,Palli,127913,1104951,1 +69139,Grace,89325,32798,5 +69140,Ora Lee Tingle,48852,50972,21 +69141,отец Маши,428398,109058,2 +69142,Race Track Patron,118889,34447,77 +69143,Krishnan's Aunt,398786,1665414,17 +69144,London Solicitor (uncredited),121674,1363049,39 +69145,Therese,140470,120778,10 +69146,Queen Isabella/Izzi Creo,1381,3293,1 +69147,Regina,34588,1168396,14 +69148,Riccardo,38327,120156,7 +69149,FDR Foster,59962,62064,1 +69150,Henry Malone,5172,177623,23 +69151,Tommy,84060,1129687,8 +69152,Ermanno,58615,228168,13 +69153,Yamcha,14164,78323,2 +69154,Young Michael Taylor,7353,4741,6 +69155,Roller Derby Girl (voice),116711,973667,25 +69156,Shanly,209406,1192899,11 +69157,Less Boreman (as DJ Rick Adams),14123,1446420,30 +69158,Fürst Alfons,153717,3742,6 +69159,Charlotte,24170,20851,0 +69160,Olga,81030,30289,0 +69161,Graydon Hunter,108723,9914,18 +69162,Det. Mark Farrow,83785,169050,1 +69163,Roberts,257534,1297688,3 +69164,Herb,200727,1734961,14 +69165,Police Detective Jacobs,221981,5946,6 +69166,Andie,243683,54499,1 +69167,Penny Sands,46227,56881,2 +69168,Nico,31003,3270,4 +69169,Alexandre Schmidt,281968,70312,0 +69170,Dr. Edward R. Winter,28299,35194,4 +69171,Tiamat,313896,38371,15 +69172,Angie,192210,38670,0 +69173,Nana,85350,1467961,45 +69174,Clyde (Voice),365339,71555,4 +69175,,58692,228263,4 +69176,Aron Ralston,44115,17051,0 +69177,Rebecca Howard,12796,13326,1 +69178,Brooks,270383,1813857,7 +69179,cameo,335051,586953,12 +69180,Lollo,6076,47784,21 +69181,himself,254446,1291611,4 +69182,Amir,37181,1005696,4 +69183,Mrs. Brentman,88075,20369,2 +69184,Sophie Baker,229297,54693,1 +69185,Bart 5yrs Old,267793,1315948,21 +69186,Rose Price,238398,68751,1 +69187,,288694,147190,4 +69188,Sam Wong,11636,1499573,5 +69189,Vice President Walker,56491,18181,1 +69190,Dancer,108222,557480,48 +69191,Gangbanger,8292,1513364,16 +69192,Victor Brady,156597,1212929,9 +69193,,53367,3223,15 +69194,Anna Wallace,55347,19119,2 +69195,Betty Sayles,353686,1699504,14 +69196,Clip from 'Free and Easy' (archive footage),33740,1281690,39 +69197,Lily Miska,74465,18050,6 +69198,Dannie McElroy,258480,37154,5 +69199,Wirtschafterin,114790,37909,3 +69200,,455043,84725,7 +69201,Madison,113148,1015925,4 +69202,Cody,70636,238352,0 +69203,Fisherman / Victim,28820,100956,11 +69204,Oberon,24273,53,6 +69205,Harvard Debater #2,14047,1392596,16 +69206,Broker,43811,1142371,36 +69207,The Fairy,159211,1301337,5 +69208,Michael Fareri,254918,1088672,8 +69209,Fryer,32609,9596,5 +69210,Himself,374460,7314,11 +69211,Naomi Sanders,25241,93421,3 +69212,Luke,24655,780,5 +69213,ICGO Trombone,23367,95394,41 +69214,Duane,253286,20496,3 +69215,Rick Herrington,50725,149468,17 +69216,Ann Rutledge,43806,132494,3 +69217,Agathe,18955,83966,1 +69218,Brad Conley,44693,1088078,5 +69219,Nina Tracey nee Chapman,80316,85651,0 +69220,Sheila Broadman,2267,169511,7 +69221,Uncle Ted,44027,1370,3 +69222,Himself,43065,27992,8 +69223,Mrs. Lamb,352719,8232,12 +69224,Major Carrie Farris,209112,1272970,21 +69225,Todd,149910,1514142,30 +69226,Pfarrer,58757,93456,5 +69227,Fabio,30298,3753,2 +69228,The Doctor,259075,142269,12 +69229,Bob Ford (archive footage),262988,14502,4 +69230,Queen Georgette,62692,47949,4 +69231,maresciallo dei carabinieri,249457,120638,7 +69232,,295884,1427314,4 +69233,Record Hop Dancer,2976,1752720,81 +69234,EMAX Security Guard,41759,1045559,11 +69235,Ken Kluster,112503,567994,3 +69236,Loïc,246422,1428046,12 +69237,Newscaster (voice),38055,102336,21 +69238,Ealfrith,45988,1730429,5 +69239,Hana,43095,55666,7 +69240,Nanny,226701,1860635,11 +69241,Himself,15258,58478,53 +69242,Young Nikki,37517,117863,0 +69243,Nakamura,66045,548017,6 +69244,George Watts,245168,1524954,12 +69245,Christine Collins,3580,11701,0 +69246,Andrew Jason 'Andy' Layford,68976,94070,5 +69247,Nathalie,84875,588733,6 +69248,Doug,18206,3492,0 +69249,Carlos,111480,28247,6 +69250,Swetha's Assistant,362150,1306596,11 +69251,Allyson,252680,198927,0 +69252,Carls Mutter,119820,1071149,20 +69253,Boyar Svinyin,63958,235322,17 +69254,Maddie,376570,932076,0 +69255,Tom Logan,42252,514,1 +69256,Erfuhrt,82098,35670,7 +69257,Tommy Murray,37926,119125,11 +69258,Val Bartelli,34650,33747,3 +69259,Ray,68387,168530,14 +69260,Mr. Lam Cho-Tung,47647,592329,7 +69261,Burke,13836,8785,7 +69262,Mutki,22998,1123037,15 +69263,Onlooker at Gallery (uncredited),17136,67369,25 +69264,Morrie,1877,152802,8 +69265,Galley Slave (uncredited),50329,9087,20 +69266,"Mitzi, on-screen actress",47758,134794,9 +69267,Dr. Ames - the Psychologist,26376,30215,52 +69268,Swen,55934,802600,5 +69269,Blond Stranger,82655,928457,2 +69270,Svetlana Afanasevna,75262,557255,6 +69271,Hunter Sands,48186,64148,3 +69272,Suzette - the Maid,169355,90075,7 +69273,Glenn,4551,1216708,24 +69274,Lt. Andrews,193756,1283057,37 +69275,Conchita,319179,585702,5 +69276,Harold Grainey,339994,3085,2 +69277,Herr Loewig,119816,1073156,13 +69278,Jimmee,37311,1194767,17 +69279,Spike,15073,143928,8 +69280,Millie Dillmount,32489,5823,0 +69281,Colson,10521,10379,8 +69282,Policeman at Killing (uncredited),27973,120818,22 +69283,Dalisay Delgado,19096,564936,3 +69284,Felicita Williams,296524,11661,5 +69285,Himself,173467,6952,23 +69286,Urs Doucier,85699,8198,3 +69287,Jasjeet,28178,18917,5 +69288,,278458,1333899,5 +69289,The Mighty Sven (voice),65759,5587,17 +69290,Lucienne,221667,24590,12 +69291,Lotus Land Dancer,32657,1354722,88 +69292,Rebecca,136743,1153677,1 +69293,Vikram,61400,76793,3 +69294,Fred,229056,30453,7 +69295,Favorite of the Harem (uncredited),3059,98024,85 +69296,Himself,448538,1782410,1 +69297,Monsieur Gernot,225503,1210951,4 +69298,Sweet Looking Girl,431093,1753166,17 +69299,,22701,118985,2 +69300,Arista,165159,1883852,5 +69301,Cafe Waiter,340275,1531615,60 +69302,Hampón en cabaret,210653,1729246,7 +69303,Bartender,123103,1477226,12 +69304,Champion - Miss Neumann,62694,87752,26 +69305,On Camera Musician,198277,1424216,45 +69306,Mother of Judyta,143240,136562,5 +69307,Guatemalan Trucker,1724,1366360,35 +69308,Ed Reed,259975,41253,10 +69309,Friske,35428,23444,4 +69310,Bella,42346,27882,2 +69311,Roger,62472,1484674,20 +69312,Dr. Wang Pu,217923,109809,5 +69313,Carlos,64499,66525,1 +69314,Hana,168259,1440699,35 +69315,Berson,32609,131129,4 +69316,Bully #1,62837,1108135,8 +69317,Alex Bell,140652,60715,1 +69318,TOC SEAL,193756,1283051,30 +69319,Linda,26644,33679,2 +69320,Grandfather,14804,2310,4 +69321,Boat Captain,87293,1209473,14 +69322,Padre Cícero,232739,12399,4 +69323,Billy,72574,12708,4 +69324,Prof. Summerlee,2982,29283,5 +69325,Berry,15090,145804,5 +69326,Hitler,110588,475138,8 +69327,Susan,52109,1041,2 +69328,Kung Galbatorix,2486,6949,8 +69329,Paco,46658,84878,2 +69330,Reggie,65367,240977,0 +69331,Hotel Manager,14881,14671,8 +69332,Old Man Who Has His Dole Stopped,81120,114833,20 +69333,Julianne,30669,1234,1 +69334,Direktor Meyerbeer,1294,34383,5 +69335,Ben,62670,8294,6 +69336,Michael Clarke,361025,1513564,2 +69337,Yang Yauwu,16687,223535,1 +69338,Irene,64725,38122,10 +69339,,63215,1520898,6 +69340,Sonja,47120,49204,3 +69341,Merritt,236395,9067,2 +69342,Melchior,79221,140653,1 +69343,Mary Rigby,157829,17882,4 +69344,Roxanne,13280,2535,11 +69345,Green Lantern (voice),353595,20903,3 +69346,Jake,339116,1367185,11 +69347,Lexie Fan,91679,1557369,62 +69348,Ruben,128637,201495,2 +69349,Max's Cashier,312221,1746935,55 +69350,Mark,96987,45398,1 +69351,Zhao Yun,12289,96862,1 +69352,Ken Sanders,80648,18905,2 +69353,La mère de Marc,187252,1728742,4 +69354,Miriam Loman,96793,400,1 +69355,Sayra,21191,36586,0 +69356,Karla,8886,6271,6 +69357,Poopchev (voice),13956,42157,6 +69358,Young Steve Battier,202214,979402,0 +69359,Mrs. Margaret Champlain,59838,55893,8 +69360,Paul,10596,65803,10 +69361,Chen Yiying,76349,131343,13 +69362,Debbie Carmichael,41171,18236,15 +69363,Carly,17927,20376,2 +69364,,105860,142271,10 +69365,Colin Daniels,185564,205724,3 +69366,Sheriff Al Thurman,25473,89582,2 +69367,Lynn Gilner,43923,16858,6 +69368,Chicago Taxi Driver,293167,1502900,33 +69369,Sister Mary of the Annunciation,11131,14466,5 +69370,Moms,88390,1678198,15 +69371,Amanda,330947,112,4 +69372,,18729,57399,7 +69373,Jose Gonzalez,22683,1039796,5 +69374,Leah,31078,134531,3 +69375,Hospital Guest,301804,1478646,10 +69376,Rosalie Ramos,295656,1093538,9 +69377,SS-Offizier,10841,3617,15 +69378,Mirabel Miller,54570,95117,1 +69379,Judge James K. 'Jim' Hardy,92848,29259,0 +69380,Megan,39013,1163720,12 +69381,Marina St-Jean / Jackie,160160,95950,3 +69382,Zia Nunzia,103758,132849,5 +69383,Hangyás,338312,1373208,15 +69384,Dr. Michaels,7871,1294406,16 +69385,Vater Winter,11346,48711,5 +69386,Inspector Ho Ka On,14016,63585,1 +69387,Art Critic,413232,995920,30 +69388,Queen Louise,51759,98462,1 +69389,Random Guy,25983,101787,5 +69390,Davis,178927,132536,7 +69391,Freddie,14142,84902,16 +69392,Hawaiian Shirt Guy,14301,76535,8 +69393,Dr. Holst,269258,5496,8 +69394,Zebulun,24272,140576,15 +69395,Colonel E.F. Logan,77794,14300,2 +69396,Trailer Park Resident,186869,1412498,26 +69397,Sam,139571,49271,1 +69398,Henri,91070,20301,4 +69399,Struwe,370264,1120198,5 +69400,Bouncer,10330,1175742,31 +69401,Girl,46982,1537372,16 +69402,Johannesburg Onlooker,99861,1760866,39 +69403,Lord Ariel Chatwick-West,72375,3784,3 +69404,Hospital Attendant,153163,96722,23 +69405,Scottish Regiment Soldier (uncredited),297762,590410,105 +69406,Teresa,403450,1685265,4 +69407,Rinko Yamato,356156,1115068,1 +69408,Laokole,8929,933493,1 +69409,Sean,252680,1328,1 +69410,Paco Roman,359105,483327,10 +69411,Bellhop,66447,24421,4 +69412,Elevator Man,98125,84234,24 +69413,Hunter,52736,166060,2 +69414,Lori Brandon,42487,25635,1 +69415,Kazio,52920,146879,6 +69416,Phil Winslow,38579,72095,10 +69417,Katrina De Voort,7326,1582007,23 +69418,Simone,417870,1292479,8 +69419,Lt. William Eyler,142012,22131,3 +69420,,330947,1531395,68 +69421,Annegreth,1655,18407,8 +69422,Moe the Deli Owner,37932,62869,9 +69423,Mule Driver,37292,34130,8 +69424,Self-Defense Force General,52728,111962,7 +69425,Sean,339994,132712,1 +69426,Lorraine Lefkowitz,241239,1417738,13 +69427,Caláf,177677,1562079,27 +69428,Orderly,12483,55788,13 +69429,Blaster,51890,223291,4 +69430,Delfina,95536,50,4 +69431,Michael Kelly,55784,29312,0 +69432,Mr. Couch,29116,103068,14 +69433,Verwandte,266044,46312,6 +69434,James McCullen - 1641,14869,93211,19 +69435,Marcel de Chaffe,421365,33161,7 +69436,Harvey Sawtelle,45714,25643,3 +69437,USSE Bridge Crew,188927,1794575,45 +69438,Tickeverkäufer,130739,1643059,19 +69439,Bollywood Indian Penguin (voice),65759,1415835,55 +69440,Lucian,834,3968,11 +69441,Marcos,199415,1179649,6 +69442,Barber,55604,30240,17 +69443,Michael Fitzpatrick,56151,7664,3 +69444,,92060,52422,13 +69445,Sigmund Freud,48231,110,1 +69446,,310602,1553543,15 +69447,Romantseva,31162,99289,6 +69448,Holly Waits,26914,38710,3 +69449,Leeza Raja,13162,87816,1 +69450,Vosjek,19350,1636077,19 +69451,Man in Blue Truck (uncredited),339403,1635159,50 +69452,Brinkley,352186,4728,10 +69453,Sarge,102444,1056617,12 +69454,Guest at Wedding Reception,124115,29274,34 +69455,Kirby,413417,1719091,16 +69456,Captain Alex Brunel,29805,5004,1 +69457,Detective Cho,54555,75913,11 +69458,Jackie Kent,141643,1115151,11 +69459,Deva and Shiva's Grandmother,69428,1336599,6 +69460,Aline,85883,586196,8 +69461,Bacchos,340275,17490,35 +69462,Wanda,40146,1055176,2 +69463,C. D. Howe,19665,70440,8 +69464,James Donahue,351211,1223879,0 +69465,Rama,44875,110204,11 +69466,Kevin,447758,1261131,17 +69467,Ellie Barnes,384594,101249,0 +69468,,197210,1119005,2 +69469,Himself (archive footage),14286,74266,7 +69470,Indian (uncredited),42640,127032,12 +69471,Soldier in Trench (uncredited),16442,8245,62 +69472,Lynn Warren,65282,33716,1 +69473,Graça,206563,1657185,14 +69474,Girlfriend,46891,174093,2 +69475,Nonno,66700,120026,6 +69476,Rosencrantz,125705,11486,7 +69477,Le conseiller pédagogique,53179,146230,5 +69478,Joshua,278706,1334328,2 +69479,Hatsu,340176,1640548,13 +69480,Herself,76686,1098642,6 +69481,Seok-tae,214910,75912,0 +69482,Alice Kelly,23385,90046,3 +69483,Edward,188161,1771,5 +69484,Linda Donavan,43009,164966,4 +69485,,336549,58998,5 +69486,Man in Church,256962,1819151,80 +69487,Julio,76333,34057,0 +69488,Vault Officer,330459,1713819,53 +69489,Johnny Glasses,352498,1327646,6 +69490,Art,19286,1144361,7 +69491,Mrs. Simpson,42062,29953,13 +69492,,19552,1275913,4 +69493,,145191,1122432,8 +69494,Bondo,128412,935002,9 +69495,Fiamma,42579,56654,10 +69496,Jenny (Little Britches),167262,2882,2 +69497,Dejan,371459,503150,5 +69498,Dr. David Lazarus,211729,32396,3 +69499,Lady Ingram,38684,31921,27 +69500,Man Up Top,58244,1504597,32 +69501,d'Artagnan,64044,238487,0 +69502,Josh Lambert,49018,17178,0 +69503,Eva Kant,2994,29395,1 +69504,,247447,1891495,3 +69505,Speedy,9803,52386,6 +69506,John Totten,315664,78018,11 +69507,Scientist,28340,1795348,26 +69508,Sleezy Guy,154537,1199479,11 +69509,Larnell,231082,63204,0 +69510,Guido (voice),49013,15898,12 +69511,uncredited,60759,956320,26 +69512,Tom Brock,82237,96743,4 +69513,Mailman,27941,1099654,8 +69514,Boudrias,285908,1125732,7 +69515,Judge Peckinpah (voice),153518,298410,7 +69516,The Sheriff's Girl,25241,93424,7 +69517,Jackson,16899,144867,7 +69518,Betty,46184,135354,3 +69519,Mike Morgan,47312,67449,6 +69520,Minister (uncredited),25768,120474,5 +69521,Ángel Custodio,17893,440879,13 +69522,Nicole Noone,14207,47953,1 +69523,Daniel,359025,146411,5 +69524,Gorm,5206,42095,6 +69525,Jo Onodera,20530,125721,7 +69526,Obergruppenführer Tellermann,613,41776,60 +69527,Selfridge,19995,1771,5 +69528,Xian,19545,30567,13 +69529,Mike,168022,1272214,0 +69530,McLean,60269,1125223,16 +69531,Comanche Paul,28894,85943,11 +69532,Bernard,4974,2369,5 +69533,Marilla,15285,19958,8 +69534,Mike Sobota,4982,38572,38 +69535,Kim,24756,188274,4 +69536,Brenda (as Brenda Kaplan),61644,1906372,9 +69537,Amanda,14666,53862,5 +69538,"Okamura, Kouji",222715,548015,1 +69539,Ada Fischer,226693,1223597,0 +69540,Geezer,362844,210420,9 +69541,Ruthie,40990,4160,2 +69542,Farida,21567,101859,7 +69543,Policeman (uncredited),64725,1410041,19 +69544,Max,26469,145194,0 +69545,Seaton Cervisse,288980,1219769,12 +69546,,182843,56890,2 +69547,Pavel Karnov,2979,117170,2 +69548,Job the Butler,29100,9866,9 +69549,Janin,272426,692,2 +69550,Butch the Bully,325712,1527437,5 +69551,Billy / Contractor,45610,1125218,12 +69552,Mor,15838,4459,5 +69553,Farmer,35862,545626,0 +69554,Vice Detective Michael Keneely,84209,827,0 +69555,Himself,13241,1879797,7 +69556,,353879,1495604,5 +69557,Jack Shumann,38432,8242,9 +69558,Lionel (voice),13798,146154,3 +69559,City Detective,41591,34119,16 +69560,Himself (as Cuban Link),26465,1204381,8 +69561,Fővadász,352917,1348158,5 +69562,Newswriter,377290,1643034,17 +69563,Samuel,2734,1749,2 +69564,Jet Tech (uncredited),337339,1635147,72 +69565,Kentucky Derby Jockey,118889,1494489,28 +69566,Dirk Wilder,100669,1776385,3 +69567,Sandra,63612,17006,2 +69568,,72933,13256,5 +69569,,88491,985076,6 +69570,Bobbie,4380,4494,3 +69571,Margaret's Husband,76203,1344366,55 +69572,Helen Dobson,40761,78859,1 +69573,Arcader Choir Girl,257344,1683830,37 +69574,Madre di Crocetta,173847,129571,17 +69575,Stewardess #4,318781,1694301,24 +69576,Ann,82696,196181,14 +69577,Cotton Longfellow,327749,6164,3 +69578,Colonel Walter Forsythe,52440,2438,5 +69579,Himself,191502,74093,0 +69580,Sgt. John Basilone,189197,288,2 +69581,,214938,1199631,14 +69582,Jannot de Plume,61217,7196,11 +69583,Bad Boy,13436,1656879,16 +69584,(uncredited),43231,1435626,15 +69585,Journalist,47959,1426034,23 +69586,Sontag,13653,74912,5 +69587,Akbar,38022,35791,1 +69588,Viji's mother,69404,584702,11 +69589,Croolik (voice),233423,290,1 +69590,Melvin Lasher,88583,26715,5 +69591,Jeff Cunningham,29365,30512,3 +69592,O'Keefe,19794,134171,12 +69593,Porky,27966,81974,11 +69594,The Hulk (voice),284274,60279,3 +69595,,14650,67145,12 +69596,Philip Seymour,84971,97775,4 +69597,Maud,28425,21878,9 +69598,Mrs. Kelly,79113,1801687,12 +69599,,31061,146441,2 +69600,Neil,270842,1256346,7 +69601,Evie Walton,11404,477,2 +69602,Jackie,330115,9994,1 +69603,1st Detective,36375,2673,8 +69604,Foreman,10299,12950,11 +69605,Haramiavezér (voice),41078,1180361,5 +69606,Peter,34128,50095,0 +69607,Esmerelda,3405,9919,2 +69608,Tracy (uncredited),246741,1628177,46 +69609,Mary Dexter,13025,61134,8 +69610,Ron,193893,1272952,31 +69611,,63260,1725480,8 +69612,Arno Blount,63315,134206,5 +69613,Huligan #1,15472,1174786,31 +69614,Dudzio,80324,3556,8 +69615,,8079,85655,16 +69616,Ice Rink's Manager,15086,19162,4 +69617,Paolo,21062,64023,5 +69618,Brian Redford,30929,37722,2 +69619,Charles Xavier / Professor X,76170,2387,9 +69620,Ally,77875,1649387,11 +69621,Georgette's Girl Friend,22999,1422967,9 +69622,Guionista,335053,1185973,22 +69623,Rusty,27873,7907,6 +69624,Detective Snyder,32166,562677,8 +69625,,662,1167682,5 +69626,Carlos,55934,557579,2 +69627,Giuseppe,46128,130540,3 +69628,Hamm,68139,5658,0 +69629,Millie the Maid,43889,131431,9 +69630,Captain Jack Connor,45398,32791,0 +69631,Jimmy Price,43811,14874,12 +69632,Brooke,39781,1188240,10 +69633,Adam,89481,16628,9 +69634,Passerby,58244,198750,36 +69635,Dr Casini,285840,1646,8 +69636,George Tracewell,171308,80495,6 +69637,Jules 'Buzzy' Sheridan,48136,86369,3 +69638,Chow Lu Fung,56095,127233,0 +69639,Commander,13979,164270,1 +69640,Nashville Bar Patron,360592,1512186,12 +69641,Livery Stable Proprietor,377170,96061,40 +69642,Goalkeeper,332872,1485937,15 +69643,Toni Jo Henry,149232,5915,0 +69644,Kate,86284,27964,1 +69645,Minister,101852,145222,4 +69646,Nate,23823,90582,0 +69647,Alice Garrison Courtney,36334,98160,10 +69648,Segall,57597,994109,21 +69649,Vasin's Daughter-in-Law,27925,127399,4 +69650,Mr. Cranston,89086,32139,9 +69651,Himself,20120,51962,0 +69652,Kip Supernova (voice),68179,576511,13 +69653,Perle,52150,575461,6 +69654,Ballpean's Bodyguard,9812,77596,14 +69655,Ricky Moreno,89145,89750,2 +69656,Edouard Jaubert,63764,36209,2 +69657,,137072,1027457,1 +69658,красотка Нонна,25936,86866,1 +69659,Sylvain Wiltord,35025,1639262,13 +69660,G.G. Temple,33923,42574,10 +69661,Moulie,31127,1055697,6 +69662,Contadino malato,10986,1205204,8 +69663,Jules Auger,41277,1575511,26 +69664,Little boy's father,377447,25246,1 +69665,Jimmy Karalla,216153,106806,3 +69666,Indian,73984,97635,6 +69667,Chloé Landry,41277,1575514,36 +69668,Ida Corwin,202241,51544,3 +69669,Siegfried Müller,289010,39251,1 +69670,Renter Alice,26491,1534392,17 +69671,Himself,140554,131226,7 +69672,Adahime,86520,134814,3 +69673,Buddy,33642,39770,0 +69674,Speaker of the House,15163,6645,20 +69675,Max,27091,96921,1 +69676,Long-fingered Boy,12279,83271,29 +69677,Cabman Gray,28425,32192,18 +69678,Nurse,1966,20279,19 +69679,Didier,32338,46278,4 +69680,Johnny Dawson (as Bobby Hyatt),29467,95272,9 +69681,Katherine Robinson,43395,103441,3 +69682,Aramet,37609,125486,10 +69683,Margarete Lorenz,613,1195490,47 +69684,Mace,89086,1249737,44 +69685,Young man / Jeune homme,38742,8635,0 +69686,Merrin Williams,149509,36594,1 +69687,Joan Gordon,75510,14974,0 +69688,Yard Sale Attendee,91679,1782579,18 +69689,Onee,35435,1241603,6 +69690,Mandeep,209406,43243,9 +69691,Sheriff Dozier,14047,11512,7 +69692,Reporter (uncredited),16442,1422893,32 +69693,Corinne von Merkens,18333,246347,2 +69694,Sunded,70670,1093935,10 +69695,Corporal,35001,114232,14 +69696,Baby (as Joe Mascolo),42023,6769,6 +69697,Bellocchio,183964,72779,4 +69698,Monster,340103,113211,6 +69699,Gioielliere,38362,144618,12 +69700,Beth,220500,1205411,3 +69701,Cameraman (uncredited),53419,21302,8 +69702,Metropolis Citizen,209112,1691970,56 +69703,,57438,226181,17 +69704,Army Medic,256962,1543950,35 +69705,Himself - The Band,14770,76137,2 +69706,Juliet,365753,1352022,2 +69707,Student in Drapes,246655,1470370,72 +69708,Mathematiklehrer,14804,1901794,17 +69709,Abe,83384,151431,0 +69710,signora del treno,75336,102371,22 +69711,Sottosegretario,161545,121732,1 +69712,Aunt Betty,194407,50836,8 +69713,Pete,9471,36422,8 +69714,Gabby,409502,1661265,10 +69715,Esposa violenta,41298,950969,15 +69716,Danny,398289,42711,8 +69717,Joe Rogan,87826,91609,3 +69718,Junichi,25053,82540,1 +69719,Candy,33009,56677,0 +69720,Randy Bowers,22602,4165,0 +69721,Regular Card Player,106135,188049,7 +69722,Malachi,21533,1237690,13 +69723,Santa (voice),79218,64344,0 +69724,Smoking Thug,86709,201366,4 +69725,Joe,1481,144081,0 +69726,Maria,21214,87286,8 +69727,дед,365544,1567381,5 +69728,Bus People (uncredited),333354,1621276,15 +69729,Teen Boy #1,773,230868,17 +69730,Adam,4344,40479,4 +69731,Complice Romero 1,38883,1319889,10 +69732,Doctor,14882,77522,11 +69733,Elina Koskela,41142,125624,1 +69734,Sabine,302118,24439,7 +69735,Migrant #7,273481,1670759,37 +69736,Jim Egan,53654,8608,5 +69737,Georgie Dwyer,317114,20373,1 +69738,Ra's Assistant (voice),40662,58511,9 +69739,Boris 'Bo' Donnelly,89921,27012,0 +69740,Lorraine Nelson,62837,15852,1 +69741,Karai,98566,177525,12 +69742,Jens,71805,1478933,6 +69743,Hagström's Assistant,33481,110784,34 +69744,Sgt. Donald Mulligan,24971,38597,5 +69745,Schlomo (child),1986,20437,1 +69746,Sarah Abramoff,45324,131008,2 +69747,Janitor,172828,208529,9 +69748,,28448,7372,8 +69749,Iktome,55534,15439,15 +69750,Reporter,109716,994161,18 +69751,Convidada de Guido,448763,222203,30 +69752,Swan,30876,107217,4 +69753,Ferd Mertz,27916,1090178,12 +69754,Christians ven,65771,544024,5 +69755,Manda,251227,191251,8 +69756,Etta,339526,21986,8 +69757,Himself,324173,72450,1 +69758,Lisa Gastier,62675,24393,1 +69759,Businesswomen (uncredited),337339,1805156,59 +69760,Big Pete,24801,113931,11 +69761,Martha,78563,1146747,6 +69762,Huang Fat,41378,1114835,6 +69763,Slade,75880,100920,8 +69764,Hairdresser (uncredited),29094,217748,11 +69765,Android 17,39324,1213845,6 +69766,Wemmick,16075,118617,12 +69767,Nolan,42752,40180,2 +69768,Christina,282963,73525,2 +69769,Enfermero Joven,280840,1338957,7 +69770,"William ""Will"" Cameron",44945,2296,0 +69771,Biker (uncredited),1165,591346,27 +69772,Court Prosecutor,43419,14975,7 +69773,Body,246355,970236,3 +69774,Anitha,398786,1629010,6 +69775,Albert Heinrich / Cyborg 004 (voice),127544,84507,5 +69776,Imperator,76341,1734177,29 +69777,Girl on Platform,11358,1414747,45 +69778,Officer Rough,158990,48514,1 +69779,Brick,19766,85158,9 +69780,Teacher,348320,211223,17 +69781,Additional Dik Dik (voice),10527,950773,41 +69782,News Reporter,32690,1090914,16 +69783,Australian Scientist,329865,29461,21 +69784,Le teigneux,377853,133257,10 +69785,Lena,57809,146601,5 +69786,Fred,44087,1889638,30 +69787,Beata,293982,1583091,19 +69788,Hacer,80961,121423,6 +69789,Lluís,83481,1604,5 +69790,Public Prosecutor,27622,10924,17 +69791,Tiwari,20359,55066,8 +69792,Wainwright,42852,1242043,25 +69793,Phoebe,11509,13656,32 +69794,Link,222858,111080,7 +69795,Un producteur d'ABC,332794,1860375,18 +69796,Grace,71140,157676,4 +69797,William,277558,8210,2 +69798,Yana,287483,1363562,3 +69799,,31275,1853889,17 +69800,Fanny Ardant,382589,20234,8 +69801,Eberhard Finckh,139862,8801,9 +69802,Ernesto,419522,146464,0 +69803,Graduate Student,381008,1589606,19 +69804,Fop,49500,108924,15 +69805,Wardrobe Mistress,76115,577651,17 +69806,Katherine,25973,59154,6 +69807,Merrianne (Doak's Wife),245703,141765,16 +69808,The Monster,2929,28971,1 +69809,Mrs. Keith,10178,89659,12 +69810,Additional Voices (voice),82703,1340665,36 +69811,Z,176983,552683,9 +69812,Brom,2486,16940,1 +69813,Florencio,198795,55125,17 +69814,Jan Cousteau,332794,1774405,8 +69815,Tanya Mousekewitz (voice),27653,22082,1 +69816,Avdey,132759,101423,3 +69817,Doctor,114155,1923,4 +69818,Jenny,114779,204735,11 +69819,Godfrey,62670,12219,13 +69820,Gomez,101363,3266,1 +69821,Mr. James Farrar,352733,173668,3 +69822,Eli Troyler,289225,1545508,9 +69823,Rizzo's Bouncer,84209,5695,5 +69824,Clopin,148636,40945,6 +69825,Wharton,27986,113516,13 +69826,Policeman,13436,1656895,34 +69827,Bell Hop,31773,33178,12 +69828,Treach,76203,1344352,41 +69829,Reggie,47745,30272,2 +69830,Dr. Allen,22897,62597,16 +69831,Polonius,106848,29545,4 +69832,Hamid,379019,5850,10 +69833,Demolition,435366,1164507,2 +69834,Mrs. Adams,117905,115533,9 +69835,Peggy (uncredited),5421,101607,8 +69836,,137072,221980,2 +69837,Scarlet's Lawyer,16996,152355,36 +69838,Choumerski,78340,6784,9 +69839,Rollie Gibson,50942,44150,8 +69840,il padre del bambino che vuole fare la foto con la renna,43648,100954,13 +69841,Quincy,20312,27559,5 +69842,Detective Artemis Fogle,142402,1117073,6 +69843,Lissa Drew,288668,3270,5 +69844,Chaser,136386,1426167,13 +69845,Len's Girlfriend #2,8669,1281025,32 +69846,Alex,61527,6906,7 +69847,Officer Kheel,345922,97844,16 +69848,Messenger Boy,413232,1422117,35 +69849,Murderer #1,289723,1257725,11 +69850,Christian's Mother,16032,582341,7 +69851,Kriminalassistent Thiel,262945,26248,8 +69852,Knecht Benno,266568,225200,7 +69853,Sergeant Kelly,58076,3383,2 +69854,Major Otto Baumeister,55236,2669,2 +69855,Adam,15316,1883499,8 +69856,Baron de Cobray,14869,1040850,13 +69857,Mike Evans,133953,1102141,1 +69858,,53767,1857383,9 +69859,Yûko,36917,1018502,3 +69860,James Herrick,270007,1192761,5 +69861,Extremis Soldier,68721,1080216,94 +69862,Agnes-Ann,237584,1544807,24 +69863,Zia Marta,169069,97929,7 +69864,Schwab,3087,94110,18 +69865,Elliot,49524,87192,8 +69866,Lala Pinedo,59861,85759,14 +69867,Harvey Allen,31773,34186,14 +69868,Skydiving Guide Chris Knarl,13173,65717,2 +69869,Tetsuo,225614,68973,1 +69870,Nan,9298,292249,6 +69871,Elizabeth Swann,285,116,2 +69872,Mrs. Davenport,261037,5960,4 +69873,Dikke Lul,14019,76294,9 +69874,Sleeping Beauty / Actress (voice),810,60252,20 +69875,Valtteri,101838,88853,3 +69876,Trucker,9352,32822,19 +69877,Raisan äiti,284306,1354237,4 +69878,Additional Voices (voice),8355,1687265,26 +69879,Sandy,51736,1178303,5 +69880,Kim,18586,109513,9 +69881,John Sergeant,210609,1748,1 +69882,Assistant de Charlotte Bertaud,10795,139857,33 +69883,Tall Man,166671,1848081,3 +69884,Santera,199415,240206,7 +69885,Ted Bedworth,37725,19976,3 +69886,Erzengel Michael,17008,1081,5 +69887,Frances Bacon McCausland,70772,112376,0 +69888,Herbert Jothan (singing voice) (uncredited),111042,148839,12 +69889,Malia De La Cruz,87826,232500,7 +69890,Hiroshi Nakatsu,38625,120918,1 +69891,Paul Schäfer,318781,6283,2 +69892,Tourist,1164,37052,22 +69893,Frances Walsingham,11788,1261407,13 +69894,Shun Kazama,83389,119241,1 +69895,Thor,14611,87176,8 +69896,Man Telling Hickman to Put His Hat On,153162,1171424,32 +69897,The Commander,24392,91561,10 +69898,Ramiro,258363,1690060,5 +69899,Lerner (Segment 1),244117,59096,4 +69900,Danielle Roff,124042,53924,4 +69901,Alberto Nardi,226936,78535,0 +69902,,339367,1240440,4 +69903,Edna,98864,9560,0 +69904,Cláudio,34588,87833,0 +69905,Lars,100275,20258,0 +69906,Leléo,224233,563722,2 +69907,Capt. Hugh C. 'Bulldog' Drummond,74314,102687,0 +69908,Bo Rehnquist,53950,160486,10 +69909,Gillian Crew,62768,1327880,7 +69910,Angelina Bianchi,105509,4421,0 +69911,Jeroen Beeksma,223551,1263644,12 +69912,Elena,153781,3822,2 +69913,Lowell Fowler,7547,6914,4 +69914,Estrella,206647,929937,12 +69915,Francis Fairon,131898,51764,4 +69916,,37340,21609,8 +69917,Omar,1726,109669,27 +69918,Weldon,43117,8498,11 +69919,Aide to Howard,2567,7531,38 +69920,Maureen,13079,56757,2 +69921,Wladimir Kaminer,114438,16808,0 +69922,Rabbit (voice),13682,77482,4 +69923,,38099,119644,6 +69924,Alice,83015,1447264,21 +69925,Dane,375384,1654411,3 +69926,Grandma Allen,218582,8515,2 +69927,Carole,23196,156253,4 +69928,Alex,241239,1088672,22 +69929,George Lillywhite,50761,14264,6 +69930,CJSOTF Marine,193756,1283045,19 +69931,Himself,320589,1584100,2 +69932,Donna,85200,100597,8 +69933,Xavier,98339,207,3 +69934,War Pup,76341,1734192,49 +69935,Chuli,18120,33412,2 +69936,USS Carter Sonar Tech,52454,108693,19 +69937,Michael - coordinator,19757,592082,5 +69938,Sara Santorelli,21138,87147,0 +69939,Toby,198062,1174106,7 +69940,Narrator,293863,1638387,26 +69941,Bendowski,27549,1217749,4 +69942,,126315,1096784,5 +69943,Herald / Man with Box (voice),809,1077844,13 +69944,Gary,157847,1034681,1 +69945,Melton Police Chief,26983,96737,14 +69946,Wadsworth Pela,16131,79419,7 +69947,Mimi Montagne,34977,29814,3 +69948,Vera,59895,93739,4 +69949,Eversti Tossavainen,55754,222324,1 +69950,Dark One Actor,80410,1766754,17 +69951,Headmaster,139463,5473,11 +69952,Starscream (voice),38356,81178,14 +69953,Franco,319910,112879,9 +69954,Dion Bartolo,259695,61659,3 +69955,Emily,58462,26467,0 +69956,Tanguy Guetz,2029,20850,0 +69957,avvocato,183964,1178678,5 +69958,Ashlee,39013,1163718,8 +69959,Student #1,244786,1503847,38 +69960,Hattie,380124,1106869,4 +69961,Nikki Gardner,6145,10882,3 +69962,"Sturges, the Lighthouse Keeper",90030,117771,2 +69963,Elle,5544,267962,0 +69964,Theatre Manager,3087,13819,10 +69965,Doctor (voice),169314,82372,3 +69966,Eddie,358353,1450392,7 +69967,on. Destini,356296,1427289,13 +69968,Saphire Sinister,34204,88706,6 +69969,Neal Oliver,20312,11006,0 +69970,Bill,149926,1398814,16 +69971,,11196,1444542,23 +69972,Charles Carvery,15020,74278,5 +69973,Police Sgt. Joe Cassidy,43046,103672,9 +69974,Catherine Bourne,8368,8211,1 +69975,African Representative,329865,970213,33 +69976,M. Abeel,28571,95668,10 +69977,Miles West,423377,207997,6 +69978,Sir Henry Vining,42996,29283,4 +69979,,81409,1608792,15 +69980,Dino,285858,1428449,13 +69981,Club Steward (uncredited),17136,1034935,37 +69982,Principal,31512,226831,14 +69983,Herself,284296,40036,20 +69984,Zoe,360784,112742,3 +69985,Jamie's Girlfriend,508,7055,9 +69986,Monique,1421,3589,17 +69987,Princess Sophie,6163,552684,8 +69988,Lucia,55853,223274,5 +69989,Maître Badinier,2029,20799,14 +69990,Margaret,18209,45453,3 +69991,Guerra,206647,1474616,32 +69992,Nickie Apple,4644,25147,6 +69993,Balinese Woman - Resolution Tour,62838,1358760,29 +69994,Julius Beaufort,110540,2495,2 +69995,,315467,245,2 +69996,P.A.,26486,9996,26 +69997,Malcolm,19350,11828,11 +69998,Summer Symonds,41479,21104,7 +69999,Himself,100247,1096801,4 +70000,Petronas Dancer,243683,1398196,84 +70001,,36236,1328350,20 +70002,Sebastiano,42225,564787,5 +70003,,348315,437742,7 +70004,Woman at Smith Home,413232,117694,25 +70005,Katherine,26390,57893,21 +70006,ICGO Trumpet,23367,95395,42 +70007,Bad Horse Chorus #2/ Dead Bowie,14301,76532,5 +70008,Deniz Demirci,77241,115007,1 +70009,Vendor (uncredited),118536,97999,13 +70010,Sue,172548,978608,7 +70011,Toni Braxton,379297,1568053,1 +70012,Big,32233,25246,0 +70013,Nurse Javis,115616,149979,5 +70014,Alexander,1966,72466,0 +70015,Sara,192137,1274681,1 +70016,Li Tong,12289,1623406,23 +70017,Amelia von Butch,20558,11870,6 +70018,Jade,445602,1771713,2 +70019,,130948,1108578,4 +70020,Guy Shepherd,107985,517,6 +70021,,4266,25842,11 +70022,Connie's Rescuer,20174,98452,14 +70023,KC,49199,1134966,15 +70024,Lee Sung-ho,296633,79574,3 +70025,Elsa Jenner,29212,83796,1 +70026,Maxine Faulk,14703,25787,1 +70027,Musician,205584,1535050,23 +70028,Parker-Hall,318922,47702,3 +70029,Anjuli,101185,27563,1 +70030,Mashka,27003,93226,4 +70031,John Guthrie,277713,3064,1 +70032,Young Hugo Krassman,15909,1076562,11 +70033,George Phipps,358076,67015,5 +70034,Alexander Carston,52864,83476,2 +70035,Marcus,43935,53492,2 +70036,Nachiket Verma,397365,35792,2 +70037,Tsui Kuo-Tung,40029,70673,0 +70038,Kontrolleur Peter,130739,46989,12 +70039,Himself,62838,97186,28 +70040,Todd's Drummer,58467,1704734,35 +70041,Jerry's Stepfather,244458,1256066,11 +70042,Prince Gristle (voice),136799,54691,18 +70043,Arkwright,83995,930410,12 +70044,Shigemasa Kodai,391642,1115921,8 +70045,Nussbaum,51303,143821,4 +70046,Head Bowling Alley Employee,179826,210700,30 +70047,Dr. Desmond Moore,148451,5694,1 +70048,Tammy,18843,77052,12 +70049,Labarthe,395767,20667,3 +70050,Kate Benet,242042,1046200,5 +70051,Mr. Bijari,375012,1668235,10 +70052,Elizabeth Jane,238792,57449,2 +70053,Jon,377691,1441487,6 +70054,Mayor Cole,13600,1532,3 +70055,Eddie Mazzaratti,95136,1131540,8 +70056,The Woodsman ('The Dancing Princess') / Tom Thumb,28367,6725,11 +70057,Sophie Berger,283701,20710,3 +70058,Sir James Hare,12783,7025,11 +70059,Golden Tiger Escort chief,60568,544910,6 +70060,Blue,169869,28641,0 +70061,James,73943,6408,0 +70062,Maria Bolkonskaya,149465,870112,11 +70063,Detective Billy Jones,14565,16429,4 +70064,Arthur Kranston,252682,7676,5 +70065,John,195068,2437,7 +70066,le père de Pierre,4146,35001,3 +70067,Flossie,109886,83235,2 +70068,Amy,109391,1204682,13 +70069,Darcy Sterling,427045,45428,3 +70070,Pete Foley - 1st pilot,47404,17759,9 +70071,Suzy,108535,37783,28 +70072,Draft Lawyer,69903,1818,19 +70073,отец Иннокентий,20963,86870,8 +70074,Lt. Barton 'Bart' Scott,36463,5248,0 +70075,Little Wolfie (uncredited),36634,115993,18 +70076,,430973,585888,2 +70077,Party Guest (uncredited),130900,121323,11 +70078,Piano Singer,116780,214862,8 +70079,Bernie,53172,19752,13 +70080,Rick,5393,33260,11 +70081,Teacher,5899,46455,9 +70082,Bea Nichols,86360,1019756,2 +70083,Lucas,109261,81054,1 +70084,Hilda Whittaker,16899,124828,4 +70085,J. (Jasper) Paul Jones,169355,24937,0 +70086,,296750,1345250,7 +70087,Robot Courtesan,283995,1806598,41 +70088,Thorald,286873,44651,13 +70089,Bar Patron,360592,1512191,17 +70090,Go Dōgan (child) (voice),155765,131563,9 +70091,George,176085,40863,3 +70092,Paul,112161,8265,5 +70093,Irina,231392,69604,2 +70094,Blake,84449,1108730,6 +70095,Pvt. Hodges,44140,3143,9 +70096,Little Tan,38099,18897,1 +70097,News Crew Producer,24619,1850010,32 +70098,Hidero (voice),16907,553603,14 +70099,Mrs. Jike,81120,27911,10 +70100,Alexander Masters,50032,71580,1 +70101,Ivan,82737,101433,0 +70102,Lynn Marie,24655,53261,9 +70103,Julie / Millicent Larimore / Therese Larimore / Amelia,38783,8963,0 +70104,NGO Staff Jutta,49853,1451204,38 +70105,Christopher Lewis,41277,543513,23 +70106,Mother Nature (voice),44283,89784,4 +70107,Presidente,131907,235273,4 +70108,,28746,1326031,11 +70109,Talbot,83015,1834957,33 +70110,Charles,4703,26121,7 +70111,Gavin,377432,1376330,4 +70112,Woo-Jin,338729,1330423,1 +70113,Harriet Shelley,332283,1549360,11 +70114,Lukasek (Marek's half-brother),158947,1784285,8 +70115,Ben Lapinsky,31913,50762,8 +70116,Inquisidor (uncredited),122019,553164,20 +70117,Little One,125409,74289,3 +70118,Longene,30941,170979,19 +70119,Drea Davenport,69560,49001,1 +70120,Miss Gribben,35052,10912,0 +70121,Buford,10829,21414,9 +70122,Joey,156597,1427481,23 +70123,Cafe Customer (uncredited),42641,1312720,14 +70124,Flower Girl (uncredited),1976,1437091,26 +70125,Nellie Budd,46513,83675,5 +70126,Jean Stoller,62768,47754,2 +70127,Lady Marian Trimingham,36194,1666,0 +70128,Toby,13802,55586,1 +70129,,20646,222968,17 +70130,Arjun,330431,557212,1 +70131,Kristin,138222,76999,1 +70132,Curtis Monroe,250332,119258,6 +70133,Martin Brooks,10594,28870,18 +70134,Celeste,40205,143329,3 +70135,Jacques,223946,76826,8 +70136,Preacher,5516,154189,13 +70137,Tatiana,24797,1008394,6 +70138,Frieda Knef,11440,18035,5 +70139,Treplev,48962,1142768,13 +70140,Tillie Turner,49158,7632,1 +70141,Prostitute #1,186759,1505309,39 +70142,Madison Morgan,272693,98285,2 +70143,Jimmy,8010,53590,7 +70144,Skip Collins,16358,15757,6 +70145,Sailor (uncredited),335509,103357,8 +70146,Ragioniere,10986,1002678,10 +70147,Chun Yo Fu,13849,1086861,8 +70148,Irish Journalist,145220,19923,35 +70149,Prince Charles,1165,15739,6 +70150,Extremis Soldier,68721,235778,81 +70151,le médecin,79435,554596,5 +70152,The Father,41402,28633,2 +70153,Music Store Proprietor,164954,31771,2 +70154,Gatekeeper #1,295723,1418223,10 +70155,Peggy Markham,43457,84659,1 +70156,Matt,272693,1533227,13 +70157,,186971,1605814,31 +70158,Harvey Sledge,10917,141048,9 +70159,Mary Matthews,218582,30269,1 +70160,Ajedrez,1428,8170,3 +70161,Le valet de Mareuil,2002,1153738,17 +70162,Secret Service Agent,68721,154158,71 +70163,Doris Lindauer,204965,1187350,7 +70164,Red Vulture,10257,64439,9 +70165,Russell,9893,55089,11 +70166,,332283,1674733,13 +70167,Mr. Rhykin,66193,920,7 +70168,George Zinavoy,64678,1281,0 +70169,Colleen,431244,1197058,1 +70170,Bianca's Band,312221,1746938,59 +70171,Tokuyama,21966,1241660,20 +70172,Captain Cold / Gorilla Grodd / Black Manta (voice),353595,24362,9 +70173,Hilda,206197,1506477,11 +70174,Gary,27573,19208,6 +70175,Elvis,6575,13611,10 +70176,River,16320,54881,7 +70177,Paul,2241,23986,17 +70178,Danzatrice (uncredited),64725,103116,21 +70179,M3,204553,1337780,18 +70180,Bride,17111,1629444,15 +70181,Security Guard,186759,1105706,17 +70182,Himself,58467,1704738,40 +70183,Girl in Wig Shop,41206,120747,20 +70184,Jared,112161,206757,15 +70185,Aunt Etta,130507,13816,7 +70186,Welcome to the 60's Dancer,2976,1244382,132 +70187,Colby Clarke,361025,1513565,3 +70188,Ray Liotta,5559,11477,21 +70189,Geoff Taylor,295581,14886,3 +70190,Gloria,39436,6405,2 +70191,Eikka,32099,108856,8 +70192,Ariel,123103,219852,2 +70193,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,89154,19 +70194,Dr. Coleman,33472,1208202,8 +70195,Johnny Blitz,111479,1223459,32 +70196,"Clips from ""Broadway Melody of 1940"" / ""Rosalie"" (archive footage)",33740,237562,60 +70197,Diane Carter,403570,79692,5 +70198,John Ashford II at 6 Months Old (uncredited),52440,1905150,32 +70199,,293089,56273,1 +70200,The Bonesetter,246917,1034618,15 +70201,The Man,10041,62358,0 +70202,Court-Martial Board Member (uncredited),10178,89704,26 +70203,Gabriella Laforte,291351,221944,4 +70204,Gen. Allen (as Colonel Tim McCoy),35001,29521,10 +70205,Garage Man (uncredited),17136,22606,31 +70206,Toni,26971,224870,0 +70207,Perce,322460,132102,8 +70208,Mole McHenry,14262,76495,2 +70209,Ruthie Carmichael,389630,1252003,0 +70210,Polizist Hardy,83729,16720,14 +70211,Moana,94727,1840030,1 +70212,Kristina,32764,1327674,5 +70213,Mary,45693,37979,4 +70214,,148347,86870,4 +70215,Alina,352917,1348124,6 +70216,Kate Abbott,334074,63,1 +70217,Jūdai Yūki (voice),72013,1243881,2 +70218,Cabbie,111479,1223462,34 +70219,Azam,60807,1007325,6 +70220,Stinger Apini,76757,48,2 +70221,Mullah,121598,1880901,17 +70222,Niklas Jönsson,19181,1097788,7 +70223,Ajihad,2486,938,4 +70224,Poet,33642,514,1 +70225,Lidia,337104,74577,1 +70226,Morrie / Civilian (voice),123025,35035,14 +70227,Vain Woman,36075,1180041,2 +70228,Gilly Hunter,42599,39972,11 +70229,Walters,336890,1236346,27 +70230,Reitlehrer,75969,39589,20 +70231,Flash Fisher,80771,34179,7 +70232,Prof. Olivari,3539,8799,7 +70233,Austin Carter,53953,1085583,11 +70234,Pipe Wrench Zombie,434873,1729135,12 +70235,,19552,1275919,10 +70236,Rajjo,254420,76232,0 +70237,Hanako,16231,80132,8 +70238,MI6 Chief Security Officer,146216,216785,43 +70239,Tayfun,220002,1762878,10 +70240,Esther Wren,27114,34442,2 +70241,Jack Farmer,256969,1053651,11 +70242,Narrator,38060,11998,0 +70243,Nicky Scalinio,6163,83853,7 +70244,Marten Soolmans,66082,936219,4 +70245,Vega,10999,106730,17 +70246,Jimmy Tennyson,252853,100632,1 +70247,Ruth,74777,1395234,6 +70248,Jerry (voice),293167,111678,18 +70249,Odie,16460,19547,2 +70250,Mrs. Kalenin,81030,106554,8 +70251,Yoji Nishimura,18722,119774,4 +70252,Rachel,226792,59176,1 +70253,L'impiegato dell' anagrafe,117913,84250,5 +70254,Jesse James (archive footage),262988,34046,3 +70255,Lydia Howland,284293,37917,2 +70256,Student,277710,1557948,14 +70257,Mandy's Mum,199575,235416,6 +70258,Bob Wright,30330,6564,9 +70259,Crook's Girlfriend in 'A Thief's Fate' (uncredited),22943,89522,17 +70260,Waffles / Gordy / Papa Joad / Cousin Murt / Curlie / Knife Attacker / Rodent Kid (voice),44896,146439,13 +70261,Phil,360737,1037348,0 +70262,Cascart,242683,9069,2 +70263,Rachel O'Hara,295723,1264638,6 +70264,Tahmeena,103902,41356,1 +70265,Ms. Gaby Lawson,80720,1521200,20 +70266,James Tiger,12594,155046,14 +70267,Zach Taylor,31276,234754,2 +70268,"Huey Duck / Dewey Duck / Louie Duck / Webbigal ""Webby"" Vanderquack",10837,6035,2 +70269,Jun,208579,142967,1 +70270,Student 1,13058,1361876,33 +70271,Mother,121462,1419424,6 +70272,Anna Padoan,92586,19646,0 +70273,"Yokoyama, an agent",38221,30474,9 +70274,Laura,199985,105350,0 +70275,Workshopper,25643,203639,15 +70276,Captain Weiskopf,53619,83465,4 +70277,Nachbarin Maren,36229,47782,8 +70278,Justin,18405,4012,9 +70279,Jenkins (uncredited),1976,43845,37 +70280,Dean,305342,84075,1 +70281,Muncie Carter,41857,6462,7 +70282,Mama Oji,209401,1835585,24 +70283,Alice Deane,68737,227454,3 +70284,Nikita Olenyov,63538,237444,1 +70285,Gambler,377170,138461,36 +70286,Mason,86472,29431,14 +70287,Arnaud,252773,544681,1 +70288,Kidstuff / Fastbuck,10044,62410,0 +70289,Liquor Store Gunman,11364,5723,14 +70290,Ado grunge,255913,1714085,33 +70291,Marianne,171213,130712,3 +70292,Diner Waitress,209112,1696013,91 +70293,Milo Tindle,4520,9642,1 +70294,Ashley,332979,208160,5 +70295,Tara Beckett,5965,46925,13 +70296,Hahlii (voice),19325,33053,2 +70297,Matt Little,354287,17052,5 +70298,Katutubo,125344,1208617,8 +70299,Himself,159138,127963,1 +70300,Howard Hughes's Mother,2567,99185,18 +70301,Paul,4443,37307,5 +70302,Claude de Gonde,4930,40160,7 +70303,Stephanie,1691,20492,7 +70304,Flo Burnett,28304,3362,3 +70305,Dr. Bonham,463800,174571,7 +70306,Special Operative (uncredited),337339,1725464,77 +70307,Carol,508,33163,23 +70308,Grosso,33495,130869,5 +70309,Rickey,14423,58926,1 +70310,College Buddy,32657,119151,74 +70311,Herself (archive footage),184363,1903776,4 +70312,Shelby Roman,64972,21596,6 +70313,Sarah,169758,129928,2 +70314,Baron,32489,91259,15 +70315,Policeman Sun,10753,955784,13 +70316,Water Seller,99329,1186856,4 +70317,Harold Benson,79008,9626,2 +70318,Young Person on the Bus,40807,1112818,31 +70319,Danny,33789,63476,9 +70320,Race Announcer / Additional Voices (voice),116711,964851,18 +70321,Mrs. Tafa,45244,2620,7 +70322,Levi Eshkol,55225,1593233,4 +70323,Celine,409502,1669941,5 +70324,Master of Ceremonies / Fiddlesworth (voice),810,12079,26 +70325,Associated Press Man (uncredited),16442,97981,64 +70326,Stanley,74447,10361,1 +70327,Vivian,37481,29644,13 +70328,Beefeater Vicar,145220,8924,26 +70329,Jennifer,37269,78501,0 +70330,Clementine,61109,97042,3 +70331,Dorothy Moore,80771,145831,4 +70332,Perth's father (still),292625,1648570,10 +70333,Uku (voice),286192,1470176,2 +70334,Southampton,11788,37632,9 +70335,,343934,62831,14 +70336,Mr. Cato,42487,40,0 +70337,Christmas Caroler / Mr. Jefferson / Pastor / Ensemble,15199,1641967,9 +70338,Kirti,396643,95505,8 +70339,Vito Lazio,228034,830,12 +70340,"Augusta, the Cook",43846,125848,11 +70341,Elizabeth,323435,53755,3 +70342,Girl Kissing Ed,32298,453,27 +70343,Giant Iberian,47065,92617,6 +70344,Minor Role,43833,47395,31 +70345,Paramédico,100270,1460265,11 +70346,Investigator,30155,1448104,12 +70347,Julie,122928,77795,6 +70348,Martin,403330,9641,8 +70349,Tony,17582,1619150,5 +70350,Angélique,266030,1319776,1 +70351,Mechanic,70981,1390394,22 +70352,Diana Pierce,40221,13312,0 +70353,Princess Arabella,11137,23775,9 +70354,Eytukan,19995,15853,8 +70355,Air Force One Officer,68721,1339959,75 +70356,Mlle Lajoie,53179,35137,2 +70357,Summer Day,28741,88549,4 +70358,Rasta 2,348320,1869089,18 +70359,Kiki,96497,1009961,2 +70360,Moshe,187596,1211946,15 +70361,Firdaus,376047,81869,1 +70362,Harolday,15264,96257,6 +70363,Sally,334074,47468,8 +70364,Professor Timothy Wallace,131815,7124,3 +70365,Lady Eastlake,245700,6973,45 +70366,Sameer,4253,35793,6 +70367,Nicole,1665,18516,4 +70368,Wigmaker,41206,34468,15 +70369,Sid,109439,4175,7 +70370,Cpl. Gerald Gessner,28553,971538,7 +70371,Riverguy 2,87952,227564,5 +70372,Gordo,1969,1120517,14 +70373,,57419,1050848,18 +70374,Aunt Stella Binford,40034,128201,7 +70375,Müller,511,7114,8 +70376,Detective Pitney,4413,37156,14 +70377,Nurse,359105,1359366,21 +70378,Melody Chambers,53861,128150,6 +70379,Britta,59962,43286,3 +70380,Liang Qichao,69310,72731,2 +70381,Charlie Ford,43821,115772,7 +70382,Smathers,49502,142346,13 +70383,Hank,252680,304848,16 +70384,(uncredited),42640,1055297,13 +70385,Various (voice),110491,1049460,3 +70386,Grace Donatelli,13056,1366972,7 +70387,John Rimbauer,16175,57340,1 +70388,Himself,70027,73949,10 +70389,Justin Carver,36427,95686,2 +70390,Shenlong,39107,83930,8 +70391,zugedröhntes Mädchen,75969,1607840,65 +70392,J.A.R.V.I.S. (voice),1726,6162,6 +70393,Enevold Brandt,88273,112733,4 +70394,Il dottore,162282,27399,6 +70395,Louie (voice),13956,418,1 +70396,Clare,150117,1546864,17 +70397,Sarah Rosenthal,126889,1057485,13 +70398,Ice Plant Supervisor,10475,1661118,11 +70399,Lizzy (voice),1267,963233,13 +70400,Rechercheur van Velzen,348320,43643,14 +70401,Zokar / Astro-Zombie,27840,99137,5 +70402,Homeless Friend (uncredited),244539,1508825,28 +70403,Jim Mordinoy,52362,11028,5 +70404,Helenka,6079,47834,2 +70405,Ahmet,175331,1028808,8 +70406,Balram 'Balli' A. Chand,20364,86014,5 +70407,Detective Garcia,53882,1168578,6 +70408,Edmund Perry,279692,75607,2 +70409,Col. Lansfield,27717,98831,6 +70410,William,222339,8962,2 +70411,Uncle Terry,43938,12833,2 +70412,Dr. Langham's Nurse-Receptionist,18569,50836,49 +70413,Uncle Alfie,2196,386,9 +70414,Himself,374460,7060,1 +70415,Arisa,296750,1401338,3 +70416,Burt Gummer,10829,67015,0 +70417,Dancer,4111,13557,10 +70418,Mike Sawatzky,21581,565619,1 +70419,Johnny,381015,1588872,12 +70420,James' brother,48204,45405,2 +70421,Choreographer,11172,1706010,29 +70422,Helene Trend,21627,9565,0 +70423,"Herod, Tetrarch of Judea",96951,13558,1 +70424,Lucas,260001,1048992,15 +70425,Colonel,18651,13969,49 +70426,,241340,138166,1 +70427,O'Reilly,200505,51930,13 +70428,Marcus,11795,71299,3 +70429,Simon Marwan,46738,88592,2 +70430,Major Pape Faria,254435,55110,2 +70431,FBI Agent Sam Corley,50374,6839,3 +70432,Felix,65509,10872,4 +70433,Alex,2349,6083,4 +70434,Simon,221240,141551,6 +70435,Emma,61008,213144,1 +70436,Willard / Nego Lady / Side Hack Rider (voice),90110,98550,0 +70437,Robin,45020,21711,2 +70438,Himself,269797,7727,1 +70439,Patrik,15179,562587,2 +70440,,376934,932897,6 +70441,Miss Hindle,65599,543732,13 +70442,Henryetta Alcott,38807,87749,2 +70443,Rice Seller,67342,134704,10 +70444,John Shooter,1586,1241,1 +70445,Yung Gan,47212,21354,4 +70446,Raffaello,28573,101192,2 +70447,Benjamin,97206,100372,4 +70448,Sandra Van De Merwe,17654,967457,18 +70449,Elderly Viscountess,80596,109862,14 +70450,Jack Luskey,340187,1572579,1 +70451,Perry,38769,13969,15 +70452,John Cantrell,70436,551020,5 +70453,Andrea,203217,1683029,11 +70454,Rumpelstiltskin,28367,7332,6 +70455,Islander,38221,235718,12 +70456,Gwendolyn,47459,32380,4 +70457,Tracker,266285,1071689,24 +70458,Jeune a la piscine,121539,1759918,12 +70459,Volunteer,1116,1896866,30 +70460,Harsha Vardhan,353533,116924,1 +70461,Moisha,270650,1359947,16 +70462,Supt. Ivy Yip,220724,1357796,4 +70463,Collins,33224,15992,12 +70464,Abbie,228331,7071,3 +70465,Himself,320589,1584101,4 +70466,"Red, Eddie's Pitman",125736,43845,21 +70467,Lema Eelyak,140607,1728990,41 +70468,Michelangelo,98566,80352,4 +70469,Michael,33107,1372,2 +70470,Jim Kane,45512,3636,0 +70471,Mr. Weldman,84209,247,7 +70472,Herself,90125,1082313,3 +70473,Angela Ballantine,59838,40174,1 +70474,Reporter (uncredited),1726,1209728,83 +70475,James Clarke,91551,73288,2 +70476,,38322,1869051,48 +70477,,128237,1086358,1 +70478,Meg,38807,89732,6 +70479,Dutchman,117506,1570777,17 +70480,HR Staffer (uncredited),331313,1731342,60 +70481,Katrin,352890,1493272,3 +70482,,85656,147888,6 +70483,Todd Bridges,87428,75340,8 +70484,Legen,382125,1576780,4 +70485,Gerry Adams,408616,1403284,7 +70486,Bia,21752,87837,3 +70487,Leader of the heavy metal rockers (uncredited),47342,138625,13 +70488,Anna Washington,227700,1636926,14 +70489,Arleta 'Arly' Harolday,15264,78052,1 +70490,Michael (as Connor Levins),20055,1167915,4 +70491,,190341,1580368,9 +70492,Himself,151870,1165391,1 +70493,Danielle Harrison,44732,84299,0 +70494,Alex,82990,221192,1 +70495,Charlie,418072,1685109,11 +70496,Detective,179603,84640,9 +70497,Sinclair Wilson,40693,1015388,7 +70498,Cmdr. Dorato,70734,1465797,19 +70499,Bat Regan,43855,104714,16 +70500,Himself,453053,1713525,1 +70501,Manolita,82265,25256,1 +70502,Suzanne Duval,134355,3575,1 +70503,Takahashi,127372,1095404,3 +70504,Michael Fitzpatrick,100528,37446,4 +70505,Viola,9655,29220,0 +70506,Kageura,248087,110500,6 +70507,Unemployment clerk,41578,95189,6 +70508,Lady Ascot,157843,1356007,16 +70509,Taser Police Officer,138372,131421,2 +70510,Sam,28671,31268,0 +70511,Buddy (as Alford Corley),61644,38576,7 +70512,Tater,76094,103619,7 +70513,Holliston,309581,74242,2 +70514,Tauro,228647,1005423,11 +70515,Friday (voice),99861,62105,65 +70516,Capt. Mack Blevins,37468,117743,8 +70517,Hak-Chi,8014,53622,4 +70518,Cop,59965,1286879,25 +70519,Birthday party guest,29117,121323,12 +70520,Clown,33481,110772,21 +70521,Himself,105583,11572,4 +70522,Chris the Intern,424600,1704664,23 +70523,Alec,37206,18992,2 +70524,Anna Nikolayevna,51284,14593,1 +70525,Baseball Player,367732,1537756,13 +70526,Edvige,43379,937248,4 +70527,Pope,277688,98804,11 +70528,himself,190940,35747,14 +70529,,293089,108852,4 +70530,Monty (voice),81188,114446,10 +70531,Bruno,25921,94349,3 +70532,Lisa,47057,79007,5 +70533,Michael Foulicker,17906,15440,6 +70534,Karel,6079,47840,10 +70535,Robert Douglas,210609,51377,2 +70536,Amanda / Aunt Bee (voice) (uncredited),151937,146898,6 +70537,Carrol Jo Hummer,42267,83037,0 +70538,New York Cabbie (uncredited),10521,928638,27 +70539,Anka,511,7110,4 +70540,Charlie,19335,78305,6 +70541,Rhonda,330947,524,3 +70542,Ens. Rita J. Benson,143092,58414,1 +70543,Newsboy,43811,978032,83 +70544,,255772,1603929,9 +70545,Harvey Wexler,10739,518,4 +70546,American tourist (uncredited),37628,185786,16 +70547,'Pop' Wilkie (as George F. Hayes),197737,88978,11 +70548,ACP Shamsher Khan / Aftab Ahmed Khan,20742,85881,1 +70549,Guard,26376,61367,62 +70550,Doctor,128089,1177284,5 +70551,Nathaniel,345922,452696,14 +70552,Businessman,242042,92058,21 +70553,Stan the Doorman,64685,1230,4 +70554,Brent,50725,38888,18 +70555,Verena Mackowiak,91628,90119,3 +70556,Agent Hardigan,73501,42363,10 +70557,Mary (uncredited),76011,1209,10 +70558,Liza,97614,59315,1 +70559,Peter van Houten,222935,5293,5 +70560,Harrison,277237,198133,8 +70561,Celia,98339,35345,11 +70562,Egon Andersson,80059,47070,5 +70563,Foreign Minister,21449,121193,8 +70564,Frankenberg High End Shopper (uncredited),258480,1545525,42 +70565,herself,190940,81869,9 +70566,Tom Riley,424643,1704787,1 +70567,Vecina,199851,1031001,4 +70568,spogliarellista del night club,43646,1481821,11 +70569,Kristen,91391,939593,5 +70570,Wedding Guest (uncredited),214756,1593122,39 +70571,Kontorchef Agnes Kirkegård,56858,1095755,4 +70572,Alice Taylor,237756,8602,3 +70573,Glinda,150657,1131356,9 +70574,Tito,12811,1827459,18 +70575,Freezee,377587,1350469,6 +70576,,117790,83357,1 +70577,Jack Woodworth,29365,84486,5 +70578,Sirgurd,28068,37745,0 +70579,LRA Commander,45610,1282129,26 +70580,Kim,417820,1684452,0 +70581,Rodeo Manager,33541,120818,19 +70582,Pitbull,8882,72778,13 +70583,Alex's Boston Friend 1,200727,1300650,26 +70584,Malik,417870,1451543,7 +70585,Kiko Alcantara,327225,1268846,1 +70586,Gertrude Sanders,239566,1426677,23 +70587,Teenage Boy,280092,1369329,23 +70588,Michele Rozier,37340,94157,2 +70589,Inspectora Escolar,107073,1481488,11 +70590,,83456,932354,16 +70591,Car salesman,52705,23393,4 +70592,Willy,381356,939100,13 +70593,Don Fulgenzio,48937,5968,2 +70594,Ralph Banner,26491,19923,7 +70595,Cheng Ziping F.G. sqad member,62071,110025,9 +70596,Antique Store Owner,149509,1432725,31 +70597,Clarence James Prescott,293863,1357354,11 +70598,Army Doctor,186227,117696,26 +70599,Judge,22051,142261,8 +70600,,37939,142487,9 +70601,North Korean war prisoner,11658,138505,39 +70602,,244971,1133858,3 +70603,L'interpréte,22618,141741,8 +70604,Dr. Yuzo Majida,3146,18613,2 +70605,Мелиот - король Перадора / Диммок,65089,47436,9 +70606,,32158,83637,6 +70607,Barkley,464111,501,1 +70608,Apostle Peter,64942,27643,9 +70609,Blofeld's Waiter,206647,1599279,74 +70610,Tarik,300490,96977,2 +70611,Johnny,47647,1190225,10 +70612,Ben,9966,61132,7 +70613,Mr. Paris,115565,10430,2 +70614,Man at Club (uncredited),17136,540363,23 +70615,The Countess,310593,1355139,22 +70616,Stef Bäckman,145194,76392,4 +70617,,12453,72297,11 +70618,Wilson,9793,42547,2 +70619,Nazanin,420743,1261545,2 +70620,Firefighter,60977,124471,4 +70621,Tara,413882,130991,2 +70622,Bar Patron (uncredited),354979,1621146,75 +70623,Janita,227383,1261533,2 +70624,Pintel,285,1710,13 +70625,Tiger,11653,1039927,12 +70626,Joon-hyeok,132957,929574,3 +70627,Fedora,114922,1040061,3 +70628,Himself,23128,110916,2 +70629,Kreativling #2,1912,3722,21 +70630,Sonja,85469,932217,9 +70631,Touya Kinomoto,31347,90567,9 +70632,Snow White,62764,112561,1 +70633,Kikuko,74126,145253,2 +70634,Ritter,13954,25867,0 +70635,Elizabeth,43935,70785,4 +70636,Cybil's Mom,58467,11872,26 +70637,Martin,270886,1562328,5 +70638,Georgette's Girl Friend,22999,1173491,12 +70639,Cristal,38031,83437,19 +70640,Herself,414749,51860,6 +70641,Dot Hammer,99846,160524,3 +70642,,264269,1311033,3 +70643,Spc. Tyler Jackson,41497,126721,0 +70644,Mick Taylor,9885,45210,0 +70645,Sully,289723,62715,5 +70646,Gatekeeper (voice),63486,239454,9 +70647,,327225,1432558,15 +70648,May Pearl,103731,1186193,12 +70649,Police Sergeant at Protest,2976,40386,29 +70650,Jules Myers,9648,42134,4 +70651,Óscar,29338,103529,3 +70652,Joe,375366,1886300,7 +70653,O'Pat,84601,930110,0 +70654,Tatsuo Horino,51581,1138027,9 +70655,Pet,87516,1748388,17 +70656,The Mad Skater,146679,558036,5 +70657,Nancy,44746,1263102,15 +70658,Anna,131027,1090507,2 +70659,Alvilda Kryger,55589,222684,4 +70660,Selsdon Mowbray / The Burglar,26670,656,2 +70661,Nino,16539,46461,0 +70662,Himself,173467,24,6 +70663,Hofdame,35639,996594,2 +70664,zio di Paolo,82083,1872194,23 +70665,Karin,86980,6285,4 +70666,Karly Hert,7871,25541,0 +70667,Mr. Trevor,87060,95027,11 +70668,Policewoman,286545,1352654,6 +70669,1st Sgt. John Roy,44943,141762,20 +70670,,38099,105665,8 +70671,Priest,106944,1043966,7 +70672,Batman / Bruce Wayne (voice),22855,34947,0 +70673,Mr. Clarence Appleton,76211,29283,3 +70674,Dzerzhinsky (as V. Pokrovsky),204802,1557706,13 +70675,,43751,140093,12 +70676,Yuri Hayakawa (voice),14069,122471,4 +70677,Lonzo Ramirez,161482,1467350,4 +70678,Law Kai Yin,11647,12466,7 +70679,Sam Chisolm,333484,5292,0 +70680,Junior Asparagus / Soloist (voice),268893,110801,5 +70681,George Drake,229638,34180,3 +70682,Lydia Molotova,22554,88920,3 +70683,Lewis,376292,1379068,4 +70684,,422603,1389740,9 +70685,Balázs,128043,1086319,3 +70686,Vincent,31003,1646,6 +70687,Capitaine Johnson,92341,120818,6 +70688,Bryan,22051,204880,15 +70689,,248747,629492,5 +70690,Scots Nanny,29694,104660,7 +70691,Mrs. Lincoln / Sarafine Duchannes,109491,7056,6 +70692,Kay Scudder,47535,1224727,5 +70693,Hedgehog (voice),36129,86836,1 +70694,Co-pilot #1,74629,1089696,12 +70695,Ronnie,8457,15760,2 +70696,Grim Knight Dancer,243683,1398109,54 +70697,Horace Debussy 'Sach' Jones,230182,33024,1 +70698,American Journalist,328589,62976,11 +70699,Dureena Nafeel,10916,67456,3 +70700,Claudette,17473,81920,4 +70701,Waspix,264646,26495,10 +70702,Maria Popinga,37340,3611,5 +70703,Pascal Vasetto,37645,144955,8 +70704,Lieutenant Hall,45398,27425,8 +70705,Marianne Stevens,9890,60022,19 +70706,Zugschaffner,6183,48518,24 +70707,Ron Strickland,345922,9778,1 +70708,Zoe,3638,17140,2 +70709,The Professor,212481,162414,3 +70710,Court Secretary,339419,192487,34 +70711,Cindy Akerman,116306,1063270,1 +70712,US Präsident Nelson,5965,585,4 +70713,Deputy Hendricks,73661,36631,0 +70714,,413644,45603,5 +70715,Pfc. Shaun Lenihan,44943,80352,9 +70716,Trenton,309024,1614450,9 +70717,Kristján,350060,1669831,2 +70718,Mirtas tante,116432,1189686,0 +70719,Chef de la police des Rats (voice),126319,1373152,18 +70720,Wednesday Addams Jr,107596,1647139,16 +70721,Seth Gilbert,245906,7026,4 +70722,Himself,32921,136893,6 +70723,Tyler,232672,1274511,13 +70724,Atul Malik,16987,1188841,10 +70725,Princess,40466,1760120,15 +70726,Steve Richman,19053,8351,8 +70727,Father Redmond,25807,22603,10 +70728,Ashley,73424,1544187,5 +70729,Turner,333484,159300,17 +70730,Gosselin,4279,24476,4 +70731,Schwester Dorothee,6183,42439,7 +70732,Policía 1,48594,19827,5 +70733,Chief Malone,34598,146337,9 +70734,Flying Boat Passenger Child,6972,1673477,40 +70735,Marie Sales Pettis,94874,1003294,4 +70736,Henry,8199,38405,3 +70737,Monk's Boat Captain,10425,65127,15 +70738,Sergei,142746,560153,6 +70739,Edelgard von Kleist,4955,40994,7 +70740,Miðasölustúlka,72596,1114540,29 +70741,Gulshan,141603,1115097,10 +70742,Police,333354,1608740,8 +70743,Luisa,3405,31895,1 +70744,Moultrie,42402,80620,3 +70745,Auctioneer,204040,13361,12 +70746,Amanda,71687,563655,3 +70747,Carmel,245019,76069,2 +70748,Otello Celletti,60046,45982,0 +70749,Megha Apte,20092,85036,2 +70750,Dick Jörgensen,141267,6327,12 +70751,Field Marshal Kutuzov,63304,29196,2 +70752,Party Guest with Keller (uncredited),147722,104199,30 +70753,Gabriella Montez,10947,67599,1 +70754,Mort Ransen,128216,1332937,30 +70755,Travis,10780,214,9 +70756,Senior Guard,262958,31481,32 +70757,Abbas's father,420743,1693041,3 +70758,Hanna,197175,3734,0 +70759,Virginia,3701,33863,4 +70760,Tom,14615,115769,7 +70761,Pritchett,70575,11804,7 +70762,Max Lung,11636,1039927,8 +70763,Strip Club Patron,77930,1784637,42 +70764,Jane,7548,17521,13 +70765,Uncle Lucius,351365,50308,2 +70766,Le gynécologue / Le neurasthénique,118293,2416,8 +70767,David Walling,89008,41419,1 +70768,Stacey,323315,1425665,1 +70769,Nightwing (voice),396330,76621,7 +70770,Heiko Koslowski,11346,40634,7 +70771,Sam,408755,551462,7 +70772,,72032,43885,11 +70773,Broussard,84071,7675,4 +70774,Regina Wilson,23692,1224618,14 +70775,Oscar,71133,47141,5 +70776,Narrator,277967,1469172,11 +70777,Policeman,21519,148884,14 +70778,Leutnant,3057,29946,7 +70779,Grad Student,1724,1366353,18 +70780,Herself - Model,327083,10584,12 +70781,Murrow,4413,37152,10 +70782,Ben Mitchell,9885,60005,3 +70783,Velma Cruther,10299,11025,2 +70784,,110001,1696393,35 +70785,Ahmed,1164,18045,31 +70786,Professor Adachi,62472,123381,2 +70787,Lucas,4279,35957,7 +70788,Limo Driver,215881,1211750,12 +70789,Young Jerry,23319,103436,1 +70790,Louise,120657,2433,1 +70791,Sergeant (uncredited),16442,30243,84 +70792,Presidente commissione,54309,122024,11 +70793,To,117506,551605,18 +70794,Parking Lot Woman,274479,999737,38 +70795,Sandoval,246422,73828,9 +70796,Melanie,82395,74951,1 +70797,Simza,430365,1672218,7 +70798,Sam,198062,117470,4 +70799,Renato,61314,23961,1 +70800,Driver,59965,1430509,21 +70801,Brendan Harris,322,4729,7 +70802,Reaver,263115,1821513,32 +70803,Great-Gandmaw,358199,5738,4 +70804,Nudist,92496,1795185,30 +70805,Claire,156,1841,10 +70806,Young Pumpkin,1904,19858,10 +70807,Danica,110608,1050078,4 +70808,Bart Tare (age 7),18671,1644224,10 +70809,Narrator / Dirk McQuickly / Lady Beth Mouse-Peddler,32694,10713,0 +70810,Annunziata,75336,1862819,16 +70811,Aila Kantola,442752,148354,2 +70812,Reverend Buck,243568,21021,13 +70813,Cooper,311093,188284,1 +70814,Daniel,27671,98632,0 +70815,Guru,276935,1108117,0 +70816,Motorcycle Soldier (uncredited),16442,166335,45 +70817,Sunbeam,33541,1037404,20 +70818,,128237,1107941,3 +70819,General Lee Roy,17287,84274,3 +70820,Inspector Porter,50153,932262,5 +70821,Alex,21371,1102574,2 +70822,Charlie,270400,544665,0 +70823,Paraschiv,112675,1164088,7 +70824,Haneveld,42346,55850,3 +70825,Yvette,10841,44439,7 +70826,Edna,50775,21301,1 +70827,,259075,43239,9 +70828,Dom Jayme,70815,130043,8 +70829,Tiziana Senatore,53486,120116,14 +70830,Juliette Van Der Beck,41211,65007,1 +70831,Kikuoji,43364,131194,11 +70832,Agis,87908,935617,2 +70833,Dodie Wilson,43045,132576,3 +70834,Police Officer #2,347127,1385641,7 +70835,Edgars Rūja,144331,1192368,7 +70836,Park Song-jae,387845,1591373,11 +70837,Le serveur,26152,146501,26 +70838,Mr. Detroit,167810,1793177,20 +70839,Pedro,201765,1283862,8 +70840,Mr. Bauer,61908,34130,18 +70841,Himself,212063,1204261,0 +70842,Mabel (voice),810,151657,21 +70843,Richard O'Brien,83785,12643,2 +70844,Laura,23830,8170,2 +70845,Geraldine,65579,42567,9 +70846,Klaus Kim,310001,1387126,3 +70847,Sean Barker,11795,10995,0 +70848,Katie English,195867,31363,2 +70849,Judith (voice),16523,11514,4 +70850,Yukari Yamane,12561,72818,1 +70851,saruman,122,113,24 +70852,"Leon, a Conspirator",53853,2782,10 +70853,Orchestra Leader,43546,579763,19 +70854,Hanna,40660,124266,7 +70855,Jessica,82687,63312,2 +70856,Emilia,128657,119995,12 +70857,Welcome to the 60's Dancer,2976,1752788,131 +70858,Mike,30778,106978,3 +70859,Terror,109466,59785,3 +70860,Noah the Elder (voice),65759,1331,8 +70861,Franz von Vogel,447236,1092702,10 +70862,Mrs. Kelly,59895,102002,5 +70863,Husband,36236,190,4 +70864,Amber,226701,212324,2 +70865,Gemma,364379,1523856,3 +70866,British General,19996,1379395,20 +70867,"Stephen Franklin, M.D.",10921,52302,3 +70868,Mère de Mathilde,382501,24484,7 +70869,Pepe the Janitor,43228,14533,13 +70870,Marisa,75336,1608701,15 +70871,Le Duc,253235,1671572,26 +70872,Coby,176983,76396,19 +70873,Additional Voice (voice),177572,173428,37 +70874,Herself,307931,1393840,5 +70875,Huoyi's Man,217923,1436286,44 +70876,Ibu,39024,1760267,6 +70877,Maurin,72655,18566,2 +70878,Oncle Fred,46448,123209,4 +70879,Verkäufer,12575,36688,9 +70880,Cressida,81409,1074069,18 +70881,Narrator - Nepal (voice),173205,11703,7 +70882,Frank Bunker Gilbreth (uncredited),50549,20125,23 +70883,Esco,98864,5605,2 +70884,Cacarizo,198795,1473312,16 +70885,Detective Flynn,35826,99880,10 +70886,Funeral Family,71503,563106,28 +70887,Captain,37719,120708,12 +70888,Adelina,234815,224320,0 +70889,Scott,384021,1267385,3 +70890,Officer Duke,158990,172254,0 +70891,Richard Hell,111479,1223457,25 +70892,Himself - Mr. Hotlanta,97724,1388666,17 +70893,Lieutenant Kirklander,6973,12261,6 +70894,Dr. Fredricks,120854,21246,2 +70895,Lauren Post,377428,60613,8 +70896,Young Jenna,10096,63372,9 +70897,Sho Kawanishi,25716,1039311,14 +70898,Inspector Yong,248376,1065331,17 +70899,Postman,374473,1650242,9 +70900,Yacine Al Bezaaz,125623,146358,5 +70901,Oficer śledczy,91691,1110194,12 +70902,Clara Moser,165159,50744,6 +70903,Greg Gatlin,20825,38405,1 +70904,Dona Carmen,44655,186586,3 +70905,Mother,141145,1114242,0 +70906,Gayatri,209410,1034471,0 +70907,Chicago police officer,340275,1531621,67 +70908,Aunt Betsey Trotwood,141640,35,1 +70909,Urijas Soldat,2734,27668,47 +70910,Peanut Butter,62046,1462,2 +70911,,424014,78697,4 +70912,"Businessman (Hungarian version, voice)",20715,125375,5 +70913,Matteo,23619,1741929,22 +70914,Pumpkin,1904,16145,2 +70915,Mayakrishnan,66526,237603,3 +70916,Peter Evans,12526,335,1 +70917,Hagen,59738,1221149,27 +70918,Lui-même,222297,1294430,6 +70919,Dr. Imhaus,9080,280,5 +70920,Festival Director,5759,1287658,5 +70921,Julia,30361,1769246,22 +70922,Ismail,403605,113732,0 +70923,Mädchen unter der Dusche,4529,18547,8 +70924,Lily,440777,1585444,28 +70925,Consultant Neurologist,229328,93848,5 +70926,Candice,42684,35476,4 +70927,Jamal,67,764,2 +70928,Play Spectator,43821,1276434,29 +70929,Sasha's Dad,14123,66554,20 +70930,Austin Slade Jr.,184267,1454054,9 +70931,Preacher,340224,1470,6 +70932,Mila,281418,128628,4 +70933,Kip's Mom,8669,1281027,34 +70934,Captain America / Grant Gardner,106355,13970,0 +70935,Jasmine Lee,38322,117669,2 +70936,Jasper Jenks,250332,140412,5 +70937,Ryan,15022,1003698,35 +70938,George Norton,29510,8902,0 +70939,Amber Day,401442,1653370,1 +70940,Jenni Whitlock,34078,88888,1 +70941,Nana Peel - Stripper,212713,1946,15 +70942,Fanny,51442,106460,5 +70943,Yubel (voice),72013,122193,6 +70944,Rita Seidel,201429,22974,0 +70945,Young Sybil,27137,53583,4 +70946,Dawes,42472,5251,3 +70947,Novio de Rosa,210653,1043461,6 +70948,Strangler,62143,1231662,11 +70949,Charlotte,289010,22185,3 +70950,"Himself, film historian",142478,1117366,2 +70951,Dominic's Lookout at the Crystal Palace,118134,14425,12 +70952,Himself,14770,975165,6 +70953,Walter,330171,88474,10 +70954,Glen,116463,1172814,9 +70955,Julie Madison,13163,60953,6 +70956,Hallie Rogers,170517,215918,1 +70957,Jesper Jakobsson,41764,139089,25 +70958,Congregant,299780,1379270,17 +70959,Jesse,33134,1014715,10 +70960,Will Scarlett,71066,33971,5 +70961,Brit,23966,1323781,10 +70962,Bonnie,209244,116464,23 +70963,Henchman,39276,235381,11 +70964,Torso,23855,90613,9 +70965,Rob Crabbe,253310,1061132,0 +70966,Mr. Wattlesbrook,156711,2479,6 +70967,Jay Leno,214756,14991,18 +70968,Priest,28710,1081945,13 +70969,Robert Cunningham,62694,87390,1 +70970,Ryan Chan,18051,58319,0 +70971,Teacher in Meadow,2267,1298364,8 +70972,Victoria's Mother,404459,1665247,5 +70973,Boy's Father,167073,1147825,42 +70974,Chameli,46387,1042249,7 +70975,Himself,124071,1074591,8 +70976,Marie,46660,1228910,7 +70977,Fiona,9352,55751,10 +70978,Kimi's mother,101838,935865,9 +70979,Tiana (voice),10198,15563,0 +70980,Julia,104644,93902,3 +70981,Alexis,35558,88698,4 +70982,Pierluigi,28997,27401,4 +70983,Comm. Mori,48412,10072,2 +70984,Rosa,155597,589139,14 +70985,The Nurse,193959,1174191,4 +70986,Everett,251419,95090,0 +70987,Belinha's Friend (uncredited),28293,89009,19 +70988,Clemmie Jenkins,173638,15735,3 +70989,Dr. Tondaro,43544,988680,20 +70990,Cozy,61151,11498,8 +70991,Dr. Elsa Freeman,38681,31700,2 +70992,l'homme du port,2786,23162,10 +70993,Angelica,259075,55654,2 +70994,Leanne,37929,75959,8 +70995,Brian Wagner,24993,33585,7 +70996,Ricky Dale,31377,53971,15 +70997,Jed King,271164,1322603,1 +70998,Young girl on ferry (uncredited),86168,56752,7 +70999,Herself,91459,11483,0 +71000,Sean,285270,17039,7 +71001,Lawrence (16 yrs.),424600,1704656,11 +71002,Mrs. Kendal,263065,13727,1 +71003,Il colonello Kleist,43195,88463,8 +71004,Math Professor,381008,1784725,34 +71005,Hiroim (voice),30675,89966,9 +71006,Mary Barnes,53882,138956,3 +71007,Sammy Chung,28663,82385,10 +71008,Donna,16164,5916,3 +71009,Traute,294483,1725868,17 +71010,Luke Falcon,17926,54815,4 +71011,Ippolita,17974,227244,4 +71012,Natalie Calimeris,59861,504787,13 +71013,Grizzl,41581,13713,5 +71014,Lee,4413,37149,6 +71015,Velija,126090,1049361,5 +71016,Zoey Cunningham,26267,94986,6 +71017,Mr. Briggs,56154,120734,24 +71018,'Ma' McCormick,335498,14033,6 +71019,Lana Cameron,56709,224812,2 +71020,Monica Tejada,99312,61220,6 +71021,Greg's Friend,228970,1495073,18 +71022,Sakon Shiba,58878,10071,0 +71023,Yoram Harrari,1986,20442,5 +71024,Scud,540,22125,7 +71025,Rat Man,13519,3432,12 +71026,Young Snake Eyes,14869,557921,15 +71027,Billy Burrell,17274,21163,1 +71028,,408550,1658136,7 +71029,Bystander,199575,1438883,29 +71030,Tourist,1164,1679366,24 +71031,Arnold Waring,30022,64212,5 +71032,Sylvain collège,255913,1422336,13 +71033,Drone Tech,168259,54792,39 +71034,Charlie Proffitt,10780,57422,6 +71035,Yegor (voice),13956,13472,0 +71036,Uncle Steve,170517,97835,10 +71037,Lee Quong Tan,1550,1228152,15 +71038,Kôsaka,45489,27783,6 +71039,Maceo,14414,17764,2 +71040,Serena,146216,1189478,30 +71041,Dora,262454,12266,2 +71042,Die Marquise,48205,1040465,0 +71043,Carol Aird,258480,112,0 +71044,Eliizabeth Jackson,362026,1516701,7 +71045,Rosita,11925,72689,4 +71046,Uncle Chung,25536,945583,8 +71047,Arthur Hutchins,3580,1448560,12 +71048,Himself,381518,4001,11 +71049,Gilles,37978,86610,7 +71050,Barney Rubble / Dino (voice),48874,15831,1 +71051,George O'Hara,19665,51527,21 +71052,Bubba,28340,52080,16 +71053,Cordelia Cameron,46193,25787,1 +71054,Raul,17216,81480,6 +71055,Jenny (as Jesse Spence),14868,1325837,15 +71056,Pierre,43441,118310,11 +71057,Tania,13338,89847,4 +71058,One of Yen Chuen Wong's men,19274,1175310,7 +71059,Lorcan O'Niell,18548,40638,10 +71060,Carlos Eleta,184341,2049,4 +71061,Luke Griggs,317114,134673,2 +71062,Mr. Perkins,18998,553479,11 +71063,Malcolm,12617,7505,4 +71064,Clip from 'Idiot's Delight' (archive footage),33740,131001,22 +71065,Zia Emma,169069,227309,9 +71066,Herself,40873,1490,1 +71067,Himself (uncredited),15199,19392,16 +71068,Woo-Jin,338729,550683,11 +71069,Verslaggever bij bank,67499,934915,9 +71070,Navy Secretary,257344,67520,21 +71071,Mabel,37600,118125,0 +71072,Mutter,61552,4533,3 +71073,Ray's AA Sponsor,11358,1366447,39 +71074,Kostka Volvic,25450,26847,4 +71075,Melo La Qualunque,56339,1496178,2 +71076,Hanna,167928,88866,3 +71077,Ray,125300,55152,0 +71078,Hottie,391757,1055158,7 +71079,British Officer,52360,30136,42 +71080,Man in Tight Bathing Suit (uncredited),31411,122979,7 +71081,Vader kinderpartijtje,159514,1112410,10 +71082,Groundhog / Porcupine (voice),13205,15778,10 +71083,Christian,295884,99388,1 +71084,The Saloon Girl,53407,153437,13 +71085,Le voisin,181456,31820,12 +71086,Bruce Brazos,38356,6949,1 +71087,Mizzi Stock,96713,98971,2 +71088,Skinny Man in Rain,253077,1230198,6 +71089,,373200,1173805,8 +71090,Mrs. Penprase,3023,1580386,16 +71091,,256520,1190216,5 +71092,First Prisoner,26376,1204352,35 +71093,Hagen,99846,9596,7 +71094,Groomsman,13777,75277,31 +71095,Antonio León,107916,1042753,6 +71096,Ringside Telegrapher (uncredited),43522,1011053,25 +71097,Gunny Martin,424488,4238,6 +71098,Kyle,18040,2391,6 +71099,Rommel,64450,1522637,13 +71100,Sirvienta de Andrés,42502,105144,15 +71101,Gong,315855,31383,9 +71102,Prison Guard (uncredited),15794,120445,34 +71103,Processing Officer,113038,1056213,8 +71104,Looking Glass Officer,20674,174893,17 +71105,Mr. Meyers,356752,1841521,44 +71106,Carmen,11376,6269,5 +71107,Rock Man (voice),23544,56507,7 +71108,Lucian Manet,33314,64295,3 +71109,Sonni Griffith,24624,10814,0 +71110,un indien,71630,582280,7 +71111,Phoebus,148636,185427,4 +71112,,330947,1237,66 +71113,Ven i Kiosk,17985,107702,10 +71114,Hunter,96987,1011207,4 +71115,Ludwig Pfeffer Jr.,118245,90380,2 +71116,Cadillac Driver (uncredited),52520,1608628,29 +71117,Charles Brickens (voice),48874,655,6 +71118,,56942,107261,9 +71119,Jessica,103620,1337067,7 +71120,Jacob Henry,289712,92729,5 +71121,Mr. Whittaker,16899,5472,3 +71122,,268735,15739,7 +71123,Susan,222872,149542,4 +71124,Derek,12540,154342,6 +71125,Lance Cpl. Hirano,43407,129505,2 +71126,Herself,27637,1724695,39 +71127,Børge Jensen,11391,236988,9 +71128,,41970,3063,6 +71129,Lady Azalea,159638,1282961,8 +71130,Janaki,353326,1528718,5 +71131,,27276,133464,14 +71132,Marcy,1991,1237611,16 +71133,Delarue's Gang,266285,1459815,42 +71134,Giggling Girl,9252,1364889,24 +71135,Reporter,98566,1233909,24 +71136,Roulette Player,33481,110794,44 +71137,Luka,82077,11006,4 +71138,Thomas,21214,77356,0 +71139,Alexander,13561,74657,0 +71140,Alex,14907,946729,6 +71141,Chief of Police Bob McManus,44626,18586,5 +71142,Don Miguel de las Cuevas,270470,9920,3 +71143,,63215,1520905,22 +71144,A.A. Andrews,59142,30527,3 +71145,Divine Intention Dancer,243683,1398147,65 +71146,Becca,277688,52852,3 +71147,,253533,1289120,14 +71148,Co-Worker,18569,1208020,17 +71149,,252845,34043,3 +71150,Chet,356752,1841498,18 +71151,Nick,41932,62715,9 +71152,Kumatetsu (voice),315465,18056,0 +71153,Dr. Schveer,88042,51456,8 +71154,The Girl,51367,121146,2 +71155,Officer,31421,1590536,5 +71156,Yotam,96888,1011136,0 +71157,The Babysitter,72574,228960,6 +71158,Zito,82,15009,5 +71159,1. huovi,55495,116157,6 +71160,Joanna Blake,85023,46780,1 +71161,,55608,581278,0 +71162,Kim Mi-hyeon,296633,143541,4 +71163,Meredith,277710,21369,28 +71164,Lucy's Date,259694,1260041,21 +71165,George McCallister,291164,4515,0 +71166,Sur,340176,1605790,5 +71167,Ravager #7 (uncredited),283995,1812341,54 +71168,Gary Baylor,46885,1748,3 +71169,Amos Agry,43114,89527,4 +71170,Ekspedient i Dyreforretning,23289,6129,7 +71171,So-ma,285213,1293080,6 +71172,Tuhaj-Bej,31273,7107,11 +71173,"Sally Foster, maid",74753,138408,4 +71174,Anaëlle,136582,22310,8 +71175,Marcos,8329,54520,5 +71176,Doctor Livesey,49418,545770,5 +71177,Wild Bill,256740,17648,1 +71178,Qiao Yiduo,60568,237256,2 +71179,Michael Solo,2001,20562,5 +71180,Thuy,417820,1702670,5 +71181,Tamar,2734,27637,10 +71182,,253533,565890,6 +71183,Alex Hirst,46261,529,1 +71184,Ellen,2186,11462,1 +71185,Hugh,150117,973,3 +71186,Young Gemma,14868,77718,8 +71187,Beck,15090,1868694,6 +71188,Miguel,10829,166606,5 +71189,Agent,939,30157,8 +71190,Sheriff Stan Watkins,11358,2234,5 +71191,Herself,323555,15423,1 +71192,Fritz Mauschner,296225,26419,2 +71193,Berg,71805,110101,10 +71194,Hank,347031,17142,0 +71195,Billy,39800,59238,11 +71196,Prof. Carson,81895,31923,4 +71197,Helenka,21198,102016,3 +71198,Sibil,420743,1693042,6 +71199,Ferguson,26503,33819,5 +71200,Andrea,356461,44646,1 +71201,Dr. Zack Nolan,53870,38583,3 +71202,Hakob,98644,1029123,6 +71203,,20,103,12 +71204,Angie Albright,60086,43427,0 +71205,Tom Canfield,147903,125810,3 +71206,,56599,95346,14 +71207,Eddie,106821,40178,5 +71208,,58692,101433,0 +71209,Clay,15090,1868695,9 +71210,Chris Briggs,293970,23498,3 +71211,Mother,42725,89037,7 +71212,Mark,2998,29896,0 +71213,Karl Wilhelm von Zieten,17008,5844,6 +71214,Champ's Manager,49762,4515,3 +71215,Clown,25834,362851,6 +71216,Alyson,156277,83708,7 +71217,Bartender,159667,1558026,17 +71218,Travis,358895,4238,2 +71219,Morgue Guard,188102,64671,20 +71220,Lefentarios,128767,36632,2 +71221,Helen,18665,67222,2 +71222,Lilya,265180,1067188,2 +71223,Warden,81541,14148,6 +71224,Cheeku,397365,1653480,6 +71225,Charlie Blake,97936,81409,1 +71226,Marsha,72766,17188,2 +71227,Michal,15387,222786,8 +71228,Samuel Lewis,84060,1129679,1 +71229,Magonza,85038,1905850,11 +71230,EHC Guard,71670,435837,47 +71231,Enfant homme cambriolé,305455,1843662,13 +71232,Dr. Webb,32021,84327,11 +71233,Philip,44960,36173,2 +71234,Maggiorndomo,121510,1074448,6 +71235,Nurse,285840,1123837,12 +71236,Herself - Storyteller,128216,1332912,5 +71237,Messenger Girl,28663,101503,6 +71238,Fosforo,43571,100941,4 +71239,Claire Fortness,76229,10083,6 +71240,Daniels Branson,126889,77795,1 +71241,Percival,274857,1816433,7 +71242,Mamma di Luciano,103758,1266167,3 +71243,Adam Pontipee,16563,39601,0 +71244,David Ziegler,46658,4515,0 +71245,Lt. Jack Durrance,104485,13340,2 +71246,Governor,44140,34504,6 +71247,Scott Price,63762,55899,2 +71248,skurgumma,76380,213506,8 +71249,Karol,10407,554248,13 +71250,Michelle,52021,95232,1 +71251,Captain Norwell,46121,156590,1 +71252,,144792,1329661,11 +71253,Mayella,99846,105072,8 +71254,Ghost Market,15067,141547,10 +71255,Trainer,82598,38046,15 +71256,Eugenia,1394,9031,2 +71257,Stéphanie,241982,1379939,0 +71258,Ustad Mastram Pahelwan,96159,600251,5 +71259,Cardone,56068,37124,2 +71260,Parisa Ghaffarian,266102,142213,4 +71261,Jeff,32577,27764,4 +71262,Inspector Harris,41599,73245,2 +71263,,340119,567993,7 +71264,Young Julia,84228,1079805,5 +71265,Jackie Robinson,74942,56871,2 +71266,Fukushima sensei (voice),14069,77934,3 +71267,Rana,44115,11291,3 +71268,,68715,97203,5 +71269,Pa Bascom,42640,74877,6 +71270,Nette,67272,1283582,6 +71271,(as Assaad Kellada),47324,1620574,14 +71272,Dr. William Tracy,75564,103606,5 +71273,Mrs. Cunningham,429238,21525,9 +71274,Gene - Young Man at Dance,43846,1000845,19 +71275,Commissioner,89086,239420,16 +71276,Jerome Bonaparte,195068,19328,1 +71277,Julia,85230,1144001,13 +71278,Police Commissioner,130948,83147,11 +71279,Nurse,29290,141095,14 +71280,Mussolini,30995,1112571,1 +71281,"Mr. Danny Churchill, Sr.",40916,20368,9 +71282,Mara,183962,21541,8 +71283,Thomas Drake,33305,119481,10 +71284,,70322,1423049,5 +71285,Ann's Mother,20,102,4 +71286,Ashley Bell,106136,590308,5 +71287,Robbo,377516,1525322,8 +71288,,122019,941263,8 +71289,Taxi driver who runs over Misaki,43113,134320,31 +71290,Mama,118809,85033,7 +71291,Fred Noonan,8915,2040,4 +71292,Nita,61049,4069,2 +71293,Maezumi,18585,233695,3 +71294,Himself,256628,91609,3 +71295,Don Giulio,57965,227242,1 +71296,Piero at 13 years,48254,592986,1 +71297,Anne Butley,118121,1220081,6 +71298,Mischa,114438,113999,1 +71299,North Korean commander,11658,64880,32 +71300,Herself,324173,9599,8 +71301,Mrs. Shepard,30993,1798341,9 +71302,Narrator,74674,572299,3 +71303,,1838,1159284,17 +71304,Spider,345915,117642,1 +71305,Ally's Teacher,345922,51460,25 +71306,Chie,81560,120689,0 +71307,Maggie,8414,54884,3 +71308,William,84577,931002,9 +71309,Man in Bar,33481,110786,36 +71310,Officer Dixon,37254,81493,14 +71311,Dave,19551,112042,6 +71312,Businessman,128767,1384640,12 +71313,Mrs. Phoebe Tuttle,42305,11025,4 +71314,Faora-Ul,49521,43202,7 +71315,Laurie,24625,65362,6 +71316,Claude Boutboul,57382,84433,4 +71317,3 Year Old Boy,74,17181,28 +71318,Singing Man in Tube,51994,233147,12 +71319,Frank Roberts (as Joseph Turkel),174278,592,8 +71320,Dorfmann,76200,26878,9 +71321,Irate Student,36691,115974,15 +71322,Stephen Collins,37462,2435,2 +71323,Manicurist,22020,1207155,14 +71324,,316885,972115,10 +71325,Lt. Gen. Edward Considine,36089,81182,2 +71326,Mr. Chin,43113,121193,15 +71327,механик,211928,1211403,4 +71328,Officer #1,101325,1560983,23 +71329,Pedestrian (uncredited),284052,1785923,57 +71330,Shôgakusei no Izumi,11838,552511,18 +71331,Andrew Philips,40217,104040,5 +71332,Nelson Deets (uncredited),419430,1704623,27 +71333,Himself,234155,36632,3 +71334,Morgue Clerk,78691,1802973,19 +71335,Clerk,28320,135441,9 +71336,Officer Bern Eckles,179826,1291691,7 +71337,Statist,1655,18410,11 +71338,Jeremias,26891,33042,3 +71339,Disturbed Airline Passenger,413232,1046805,43 +71340,Veronica,390526,124644,2 +71341,Raven Darkholme / Mystique,246655,72129,2 +71342,Third Announcer,125736,104198,16 +71343,Tim Bérubé,26566,145458,3 +71344,Herself,417870,1213467,29 +71345,Arno Purdy,25473,120105,9 +71346,Sarah,298787,1376936,4 +71347,Steven,14254,11064,2 +71348,Eva,45133,132245,2 +71349,Old Teacher (voice),182131,615,7 +71350,Antiquities dealer,10610,56804,7 +71351,Chancellor Ambassador,188927,1897700,29 +71352,Michonnet,452142,75074,11 +71353,Timmins,424488,1639610,28 +71354,Valdar / Schiller Blecher,120837,8630,1 +71355,,43646,128417,18 +71356,King George V,65035,27554,1 +71357,Dr. Slade,66045,548018,7 +71358,Mallory,7515,52847,2 +71359,Ela mesma,448763,1848670,39 +71360,Donny Nixon,65650,55089,13 +71361,Man in Saloon,55604,96061,73 +71362,Sarah Gopnik,12573,105306,5 +71363,Hortense,260312,1288047,3 +71364,Chief Gagool (as Sekaryongo of the Watussi Tribe),43388,1712380,7 +71365,Victor Dermott,83788,4961,3 +71366,Girl in Sweatshop,264309,1363827,15 +71367,Ruston,45219,34320,9 +71368,Amanda Pinheiro,254439,1257307,2 +71369,Homme politique,25518,35077,8 +71370,Hat Check Girl,47310,138392,4 +71371,Mieke's Father,9352,36908,20 +71372,Solicitor General,31675,78940,11 +71373,Diesel,74430,40390,5 +71374,Busschaffner,6183,48520,27 +71375,Maria's Boss,296344,1312816,2 +71376,Roxy,122843,961840,9 +71377,Nikhil Kumar,403593,1384790,4 +71378,La soeur d'Alberta,183962,24602,7 +71379,Gung Tu,47212,20904,7 +71380,Kabir,103236,641165,10 +71381,Maria Ronson,20411,86050,13 +71382,Blonde Bikini Girl,40466,589147,13 +71383,Himself,16800,939003,18 +71384,Tim,11346,1863,0 +71385,Jimmy Goodman,104528,160485,3 +71386,Gül Teyze,361181,1513948,4 +71387,Neil,104232,202899,0 +71388,Aaron,35656,11805,4 +71389,Rafferty,228066,75076,14 +71390,Kex (voice),35177,91776,10 +71391,"Honey, Dutch druglord",127329,118727,11 +71392,,85126,21030,5 +71393,Robert,18731,1265950,14 +71394,Richie,22901,1779953,7 +71395,Mason,424488,1836146,32 +71396,Facher,83342,16722,2 +71397,Alpo,32099,108857,9 +71398,Persephone,32657,5916,7 +71399,Dr. Taryl Jenkins (uncredited),99861,1429470,70 +71400,Preacher Rutherford,40925,88750,5 +71401,Son,215743,1256497,5 +71402,Lew Rankin,41495,10411,9 +71403,"Ada, Janet's Maid",177190,89101,8 +71404,Him,298165,229634,2 +71405,Rent-a-Car Agent,693,29795,15 +71406,Himself,21671,1217563,6 +71407,Townshend,308032,968863,18 +71408,Child Services Officer,37932,60613,10 +71409,Lady Kitty Winton,53857,131726,7 +71410,The Gruffalo (Voice),81684,1923,3 +71411,La Mère d'Ann,44527,229262,5 +71412,Tito,289723,171584,7 +71413,Agent Gorman,122857,52483,6 +71414,Father,330947,77859,29 +71415,Edmund Collins,16358,9626,7 +71416,Mehmed,371741,1463931,19 +71417,Kim Jang-ok,363579,93999,11 +71418,Pinwheel Girl,23964,1239290,13 +71419,Robert Powell,333352,934796,29 +71420,Other Lock Watchman,53949,1032088,20 +71421,Monica Gordon,196065,100633,1 +71422,President of the United States,53870,2222,1 +71423,Monique Sobel,8899,70321,8 +71424,,64725,27390,16 +71425,Carney Boy,6972,1265157,9 +71426,Bartender,29136,1896758,16 +71427,Houghtaling,31127,932951,4 +71428,Anastasius,9503,62892,5 +71429,Mitch O'Grady,366631,43426,2 +71430,Ben Tannenhill,235662,144675,3 +71431,Santodio,48250,1687981,3 +71432,Valet,24123,95137,16 +71433,Louis Martinet,62363,12270,0 +71434,Paulo,45013,1215144,27 +71435,Jade,301334,1723622,18 +71436,War Pup,76341,1734190,47 +71437,Hunter Ben Loomis,274325,7868,5 +71438,,57889,125737,5 +71439,Burt Coombes,42448,31117,7 +71440,Viggo,21282,1077849,1 +71441,Joe,53172,124909,5 +71442,The Receptionist,240832,1426915,45 +71443,,62855,1619990,3 +71444,Georgie,80168,588933,7 +71445,Audition Girl,24469,1579247,26 +71446,Miss Hinkel,47739,5738,6 +71447,Oscar,335837,1087,6 +71448,Alec Holland / Swamp Thing / John Stewart / Green Lantern (voice),408220,25877,7 +71449,Berthaut,13507,135665,10 +71450,Shawn,15476,543847,3 +71451,Thai Mini-Bus Driver,10389,551615,28 +71452,Mrs. MacGregor,67375,83237,15 +71453,Nico Giraldi,52238,21708,0 +71454,Dan,9900,60159,11 +71455,Nurse,42709,927862,18 +71456,Dr. Orvilla,33472,197182,7 +71457,Leila,50318,1166917,25 +71458,Ghost in the Classroom,10389,551609,21 +71459,Mrs. Ford,6933,51460,14 +71460,Henchman,147829,33383,35 +71461,Alex Witchell,13802,31071,7 +71462,Gus,112961,118132,4 +71463,Neighbor Halime,31412,1888395,9 +71464,Dottore,5482,39166,3 +71465,Ms. Tupelo,365942,1424325,26 +71466,Nurse,96958,1043350,3 +71467,Adam,278632,1425462,9 +71468,Il marchese Roberto Ussoni,43195,18340,10 +71469,Donnie Anderson,288281,1224384,6 +71470,Myrna Hartley,29286,3366,6 +71471,Pok Chop,398289,6575,6 +71472,"Wirt Hugo, Elsas Vater",226001,10923,2 +71473,Mena (voice),13205,34985,12 +71474,Hank,29146,1212034,7 +71475,Kissing Couple (uncredited),214756,1759684,101 +71476,Shepherd,255160,1473602,16 +71477,Pyke,257454,3675,16 +71478,Trevor,302699,23532,9 +71479,Kim,59006,6279,8 +71480,Mrs. Baker,25598,12543,8 +71481,Sam,35826,4969,3 +71482,Hans Einstein,15044,77798,7 +71483,Hyde Park Nutter,16171,1250279,48 +71484,Beba Pujol,78705,46853,0 +71485,Engine Driver,62143,10597,30 +71486,Seaman Jones - Bridge,17744,108653,7 +71487,Sullivan,9474,39953,2 +71488,Himself,407806,1385039,10 +71489,Bernie Sharkey,87516,4255,7 +71490,Christian,16014,88492,12 +71491,Jyoti,69775,566792,1 +71492,Sara,201765,46856,4 +71493,Avery Parker,377428,154856,1 +71494,Rebecca,318922,73462,2 +71495,Susy Snerensen,84060,1129681,3 +71496,Himself,293262,1392201,11 +71497,Horatio,48209,32021,5 +71498,Scoggins,18977,153020,6 +71499,Elio Papasano,39495,123011,6 +71500,Chops Mulligan,180929,14785,3 +71501,Ann Jackson,78265,161970,4 +71502,Bobby,73353,61660,4 +71503,Red (voice),217057,4810,6 +71504,Ah Tad's SWAT buddy,18763,57609,7 +71505,Fabrizi,39979,240914,12 +71506,"Thompson, RR Conductor",104556,34234,6 +71507,Mario,327383,24923,6 +71508,Arthur Lespinasse,33436,3829,0 +71509,Perla,78705,1348331,3 +71510,Quart Vittel,46326,308779,8 +71511,Wilton,343173,1220520,5 +71512,jako Wasyl Huk,406449,1650386,21 +71513,Doctor,14904,1248977,9 +71514,Jerry Lockhart,370234,984377,4 +71515,Mastani,362045,53975,2 +71516,Ruhana Ali,275269,88797,3 +71517,Anna,39495,101768,9 +71518,Djinn,38157,37431,3 +71519,Cyril - the Butler,281124,117697,8 +71520,Airline Customer Service Clerk,274479,1774094,60 +71521,Clergyman Wood,38684,209631,33 +71522,Gentry,55712,5694,5 +71523,Freak Interrupting,158015,1186026,13 +71524,Ronald Reagan,145247,1314278,19 +71525,Lab Partner,208529,145072,11 +71526,,293109,1364518,1 +71527,Rika,403605,145882,3 +71528,Sienna,140652,211647,3 +71529,Paparazzo,331161,78341,26 +71530,Baby Hilly,111479,1223450,12 +71531,Tochter,104172,1384095,4 +71532,Hilde Wangel,268536,1218257,5 +71533,Narrator (voice),325263,2387,1 +71534,Nuri,76097,5852,6 +71535,Roger,82817,94067,5 +71536,Marsha Colussi,253484,1000837,3 +71537,Barton,46189,83149,11 +71538,Sir Oliver Lodge,15044,388,5 +71539,l'amie de Rose,63876,39199,6 +71540,Gladys Benton,31773,82315,0 +71541,Iwo,329550,543822,43 +71542,Mrs. Larrabee,257574,1297759,5 +71543,Monk,30644,102644,11 +71544,Che,39356,1753263,19 +71545,Mrs. Grimes,64678,43366,7 +71546,Stevie Corbett,50126,59243,8 +71547,Mr. Booth,245700,39186,8 +71548,,115427,1086295,10 +71549,Prostitute,49712,1660796,31 +71550,Extra at Wedding Reception,124115,80546,14 +71551,Additional Voice (voice),16866,131083,13 +71552,Quigley,25241,77027,6 +71553,Judge Cannon,57684,141510,13 +71554,"Commodore Wolfgang Schrepke, Deutsche Marine",17744,96994,2 +71555,News Anchor,273481,1617613,30 +71556,Business Woman (uncredited),337339,1718164,29 +71557,Officer Geary,103432,65568,23 +71558,Ryuunosuke's Father,43967,555157,12 +71559,Miranda,16342,237407,8 +71560,Mulvaney,53573,88728,7 +71561,Debra,14207,20811,8 +71562,Evil Eye,899,13791,4 +71563,Ma Lieh,38099,119606,9 +71564,The Man,258255,1579926,3 +71565,,87296,1483784,12 +71566,Pedro,68684,73130,19 +71567,Jeanette,11330,1254379,16 +71568,Laura,379019,3840,1 +71569,Miranda Koop,14012,1216163,7 +71570,Secretary,43811,34008,78 +71571,"Donato Cavallo/Franco Alfano/Felice ""Tirzan""",38289,55912,0 +71572,Royce,169800,165630,7 +71573,Claude Russo,6081,47849,12 +71574,Turkish Protester,332286,1444882,13 +71575,Armida Miserere,235208,3124,0 +71576,Simone,303636,53846,10 +71577,Mark,15189,55673,6 +71578,Clive,22447,17788,5 +71579,April Hunter,2979,117172,4 +71580,Mies pizzeriassa,284306,234126,3 +71581,Himself,83587,968968,11 +71582,CDC Reporter,924,104635,18 +71583,Maddie,15043,38711,3 +71584,Brigadier Marion,37710,225479,13 +71585,Maxamillion,44773,543786,8 +71586,Dina,417870,1230868,3 +71587,Joseph,32720,146525,2 +71588,Anton's Neighbour,97797,1014986,14 +71589,Philip (6 yrs),413998,1535267,27 +71590,Erika Leekes,107985,1200854,14 +71591,Lord Farrar,49391,102375,15 +71592,,276819,1498715,3 +71593,Jackie Price,9667,116,1 +71594,Palisades' Jockey,118889,1464567,62 +71595,Himself,15258,106223,23 +71596,Morton,241374,29602,11 +71597,Julius,145247,282449,1 +71598,Marshall,5123,41297,10 +71599,Parson Banke,16358,9807,12 +71600,Deputy Sheriff Will Motely,42871,3442,4 +71601,Theda,78177,583268,4 +71602,Augustus Waters,222935,1159982,1 +71603,Kol'ka Smagin,142802,1117990,1 +71604,Dimitriov,10710,1778250,11 +71605,Chick Williams,42648,76379,2 +71606,JoJo,256474,556072,12 +71607,Danielle Carpenter,146313,1151354,3 +71608,Laila,77922,1045279,0 +71609,Thor Heyerdahl,70667,76556,0 +71610,Anja,98612,1317695,4 +71611,admirál,41213,44213,6 +71612,Gustavo,331354,1354964,2 +71613,The Reverend (uncredited),43419,88672,18 +71614,Nina,11930,48290,5 +71615,Agent Rudder,266433,1359997,7 +71616,Albert,199647,5367,3 +71617,Guide (uncredited),22584,120217,15 +71618,Train Engineer,43821,1081944,25 +71619,Dr. Julian Blair,30307,2922,0 +71620,Signora Cristina,11972,37462,4 +71621,Charles Buntz / Chucko,16234,1280,12 +71622,Norman,298865,110018,9 +71623,Jewel Ramsey,76422,28778,2 +71624,David Donne,86168,21605,1 +71625,Ernestine Gilbreth,33839,10611,5 +71626,Student at Train Station,43812,32791,60 +71627,Benicio Cardoza,456781,980805,13 +71628,Mechanic,773,17413,10 +71629,Peter,331161,19195,9 +71630,Meade Park,21619,81824,12 +71631,The Splendid Angharad,76341,236048,7 +71632,Kid,14262,76499,8 +71633,Lead Technician - Alkali Lake,2080,75174,32 +71634,Katherine Valecross,463906,101014,7 +71635,Stray Dog / Drunk Monkey (voice),18843,61969,17 +71636,Binky Nelson (voice),366143,15762,2 +71637,Earl of Richmond,46758,1605315,4 +71638,Donny,9352,1892,11 +71639,Hopper / Reynolds,333385,3129,2 +71640,Victim,109213,1610501,10 +71641,Samantha Kingston,397837,1059597,0 +71642,Heywood,27349,180677,10 +71643,Elianna,80410,237445,5 +71644,Narrator (voice),62320,3136,3 +71645,Lex Luthor / Joker (voice),300424,31531,2 +71646,Jake,7942,53365,6 +71647,Young Émiliana Cyr,209293,1192788,6 +71648,Hannes,127913,1093246,5 +71649,Buddy The Night Watchman,24150,18262,25 +71650,,39024,1028460,9 +71651,Jean,297736,148135,4 +71652,Belinda Hopkirk,39517,57830,2 +71653,Nina,43645,9235,2 +71654,Rigattiere,58013,131632,12 +71655,Blind Man,52859,1420492,34 +71656,Koen,137182,1106964,7 +71657,Daughter,362057,1362853,11 +71658,Charlotte Howe,64678,53755,3 +71659,-,29128,104215,6 +71660,Girl in park,13162,559660,10 +71661,Martha Cochrane,26805,14576,2 +71662,Sean McAvoy,3554,7301,2 +71663,Ada,315872,1178410,7 +71664,Pub Goer / Singer,369885,1651420,62 +71665,Pallbearer,198652,1179389,18 +71666,Bombardier,15807,11128,2 +71667,Bess Wilder,100669,35515,11 +71668,,334651,1453312,6 +71669,Howie,170517,9597,7 +71670,Molly Star/ Mrs. Caldwell,163,1956,19 +71671,Aaron,435,43612,26 +71672,Achille,208305,1191300,0 +71673,Dr. Montague Foster,97598,34497,7 +71674,Tony,40387,39950,4 +71675,Scott Hubbard,365942,1670749,24 +71676,Sheriff,13934,15902,2 +71677,Ilir,102362,37156,14 +71678,Restaurant Customer,45013,1818038,49 +71679,Bitten,126250,3402,7 +71680,Melissa Meed,57597,60152,5 +71681,BT,61267,74110,4 +71682,Rosencrantz,48209,27613,6 +71683,Advogada de Fernando,117534,1629555,17 +71684,John Remington,174594,8833,1 +71685,,73144,1591596,2 +71686,Fru Von Rosen,377290,85152,9 +71687,Betje Ackerboom,12631,50901,3 +71688,Bruno,8382,62715,5 +71689,Ed Davis,270015,932309,14 +71690,Victoria,9675,14984,5 +71691,Amy,88005,557931,19 +71692,Sharon,296025,130567,4 +71693,Tom Wiseman,224903,999546,3 +71694,Mother Goose,44303,1195239,9 +71695,NY Businessman / Tourist (uncredited),337339,1792537,67 +71696,Nancy,42487,4595,6 +71697,Kim Wagner,1914,19911,3 +71698,Sadie,34193,150633,7 +71699,Amy,392660,1711569,8 +71700,Rita,38031,119413,8 +71701,Mahshid,43761,1339651,4 +71702,Zaniboni,162282,101556,7 +71703,Pope,413452,18288,2 +71704,John,348631,79151,15 +71705,Alice Della Rocca (young),53399,1345544,3 +71706,Carter,215881,55086,2 +71707,Caitlyn Geller,13655,58965,4 +71708,Newsboy at Train Station,18651,1421068,45 +71709,Topper,21282,1077848,0 +71710,Datty,400552,5202,0 +71711,Marie,209244,1221716,15 +71712,Simon Ballister,17317,23880,0 +71713,David,361571,1505023,10 +71714,Heather Keeler,69668,71821,10 +71715,Claire The Bull,440777,1734564,8 +71716,Sal,431244,1648346,7 +71717,"Maestro, the cook",125666,136779,6 +71718,Cooper Girl,268920,1559702,14 +71719,Brian,92562,1463697,2 +71720,"Tommy Preston, Wyoming Hotel Owner",37481,56444,15 +71721,Catherine,356900,11782,5 +71722,Herself,414749,552243,5 +71723,Oscar Madly,353728,529003,0 +71724,Herself,37514,117847,4 +71725,Guard,323675,1769810,48 +71726,Vargas Mouse,62670,65344,10 +71727,Peringodu Sankara Marar,237672,988751,14 +71728,Inspector Bill Wong,9056,44922,4 +71729,Kieran,387399,1849543,20 +71730,Nazlı,327935,1433344,4 +71731,Steve Laird,96433,4299,2 +71732,Museum Officer,86718,238028,8 +71733,Frannie Goldsmith,13519,21625,1 +71734,Kommissar Kramberg,324408,28343,3 +71735,Pinotti,77000,1851057,12 +71736,Yuen Fu,18731,1365933,17 +71737,Tom,42619,100418,11 +71738,Courtney,19255,15684,15 +71739,"Tina, Romano's Mistress",44658,25282,6 +71740,Chance,296523,1132104,14 +71741,King Tygath,9795,23789,14 +71742,Police Detective Randall,47404,30201,29 +71743,Method Man,370755,5384,4 +71744,Gregory Elliott,130900,4343,4 +71745,Hospital Cashier,18569,1108832,24 +71746,Kaho Fujitani (voice),14069,118577,7 +71747,Tugboat,440508,11390,7 +71748,Slugworth,118,1518112,21 +71749,Anastasia,61528,17198,10 +71750,Jean-Berchmans,377853,2369,4 +71751,Barret,57201,22063,8 +71752,Himself,296194,1206,2 +71753,Baseball Player,82781,181387,6 +71754,Atheena,323929,1452151,7 +71755,Lord Tyce,89086,11169,4 +71756,Georgie Soloway,91607,4483,0 +71757,Florence,274483,1136891,6 +71758,Bothwell,43875,13576,1 +71759,Eric Griffiths,33511,3065,11 +71760,Ng Chan,182127,1440451,31 +71761,Boris,388862,1141816,12 +71762,Comic Con Attendee (uncredited),214756,1759667,88 +71763,The Principal,14134,35779,8 +71764,Marta (voice),73723,49920,7 +71765,Danny,53524,230476,2 +71766,Beggar,24486,6970,12 +71767,The Rider,2274,2040,1 +71768,Victoria,331642,25256,3 +71769,,4580,38172,6 +71770,Lidia Cairoli,58611,228148,3 +71771,Tom Ripley,39127,12834,0 +71772,Scrote,405473,1354545,16 +71773,,67633,1043263,17 +71774,Dez,90120,204670,0 +71775,Tofi,45988,206912,1 +71776,Dr. Luther Waxling,54022,2778,5 +71777,Ludlow,2567,63296,23 +71778,Rose,212996,67222,2 +71779,Pat,14138,61344,4 +71780,Sabrina McKenzie,334890,1695140,4 +71781,Gianni Rossetti,39979,27198,2 +71782,Young Ainun,172705,1155285,5 +71783,Fordy,208869,93491,1 +71784,Protestor,3563,159456,38 +71785,"Galambos lány, szocialista",86732,1478733,5 +71786,Harriet Hobson,19335,13026,4 +71787,Man Leaving Hotel,127812,135827,47 +71788,Masseuse,28209,41127,2 +71789,Pvt. Mishio,39519,136553,13 +71790,Don's Mom,343795,1668856,15 +71791,Lombardo (voice),65759,59783,4 +71792,Sub-Inspector Davidson,425774,1707872,16 +71793,Dott. Rinaldi,62034,69444,5 +71794,Mark,49920,294586,3 +71795,Elizabeth Warden,207850,11084,1 +71796,Russian Sentry #1,19996,1764149,47 +71797,Chunk (voice),10193,19545,26 +71798,Karrie,46883,1287562,6 +71799,James Harrington-Smith,93862,7640,2 +71800,Dora,2009,1113206,16 +71801,Sheriff LeClaire,14552,210154,11 +71802,Max,170759,1153024,4 +71803,Bessie Foley,144475,13992,1 +71804,Salesgirl (uncredited),330947,1650325,53 +71805,Rico,66045,548016,5 +71806,Leader of the Expedition (as Sir Ernest Shackleton),49837,142886,0 +71807,Janice,12540,144076,8 +71808,Suzy,83342,47785,6 +71809,Cesare,282768,41527,2 +71810,Michelle,44943,18354,8 +71811,Dancer,28665,1003061,6 +71812,Dianna,271718,3063,5 +71813,Martin,14904,1331,0 +71814,Jeff Hartnett,41495,18803,3 +71815,In Tae-hee,83013,70337,1 +71816,Deng Meijuan,283711,555366,0 +71817,The Daze Bass,23367,95397,44 +71818,Ricky,32298,103762,26 +71819,Tupu,20160,148047,13 +71820,TT,284279,1098512,6 +71821,이유진,49190,1299317,5 +71822,Simon,245169,80019,10 +71823,Marsha,286372,1352334,6 +71824,Second Bartender,32044,62590,15 +71825,Babbs Baberley,72611,240566,0 +71826,Althea Duchannes (uncredited),109491,1393522,26 +71827,,64328,206737,45 +71828,Little New Rider,55534,222556,4 +71829,Pasha Stroganova / Joan of Arc,83475,99291,0 +71830,Mitch Mitchler,286532,2157,0 +71831,Herhor,5040,28712,5 +71832,Marie,44099,130220,4 +71833,,36253,1699713,5 +71834,Antoine,25500,28463,0 +71835,Betsy Rath,28290,39554,1 +71836,Dama di corte,222517,938452,19 +71837,Judge,30624,82749,8 +71838,Neil Elliott,274504,228,2 +71839,,260030,22383,1 +71840,Mark,301875,42317,6 +71841,Hertta,287301,93564,4 +71842,Banker,118889,33025,44 +71843,Glenn Randolph,114779,212,1 +71844,Grandfather Alden (voice),286940,8349,6 +71845,Jaron,30680,76004,1 +71846,Jack Tripadoe,33314,176491,11 +71847,Charles Stone,326045,41746,10 +71848,Spiros,11055,36890,2 +71849,Mrs. Hillman,9030,30489,11 +71850,,252059,1459889,4 +71851,Cousin Fred,424600,1635137,8 +71852,Morning Show Hostess,70670,1093940,13 +71853,Louie Wexler,128140,1161088,12 +71854,Hammer,14669,66499,8 +71855,Giselle,285,2452,20 +71856,Soldado,20941,129456,17 +71857,Herself,27637,12776,31 +71858,Second Photographer (uncredited),47882,119549,28 +71859,Simon Templar,463906,144292,0 +71860,Egeria,297762,1767342,15 +71861,,115161,1293406,3 +71862,Lester,266285,86320,11 +71863,Philippe,24392,91562,0 +71864,Nate,419459,168877,5 +71865,Conal Doherty,44129,8977,6 +71866,Gabriel 6 Months,227156,1412930,13 +71867,Himself,95536,234486,7 +71868,Lee Jeok-yo,118451,21687,13 +71869,Keovisit,220287,1210548,4 +71870,Jo,33095,82288,8 +71871,Vadim Ravilevich,390880,235919,11 +71872,Mirabelle,37189,35918,1 +71873,Trick or Treater,58664,1084317,18 +71874,,360603,1385342,7 +71875,Eddie,288710,19977,6 +71876,Hannah,9893,21027,1 +71877,Passenger at Airport,120109,1353645,10 +71878,Tyrone,77246,25868,6 +71879,Sylvia O'Stayformore,338063,1581573,12 +71880,Billy,302042,1121458,14 +71881,Arthur Scott,55784,58423,2 +71882,Joe Patterson,292294,30115,5 +71883,Khushi,308165,130958,2 +71884,Himself,29101,1249932,16 +71885,Veli / Kit Carson,203072,124857,1 +71886,Professor Karl Fenninger,80720,2094,2 +71887,,197788,41750,4 +71888,Abu Moussa,16047,1147087,9 +71889,Terry Rapson,435,65,10 +71890,Officer Loveday,2993,29431,7 +71891,Jake Livingston,54752,114058,2 +71892,Rancher Wilson,75315,103620,10 +71893,Vanessa Lembeck,11329,3130,13 +71894,Smee,866,13014,14 +71895,Molly Haines,13972,76229,1 +71896,Priscilla Presley,322548,45827,3 +71897,Asylum Warden Anderson,41591,4077,8 +71898,Robert,38022,230975,8 +71899,Herself,323426,1172394,6 +71900,Sam,257447,85272,26 +71901,Jeff Trent,29116,85359,7 +71902,The Duchess of Ebley,53857,13965,4 +71903,Theresa,339362,47646,1 +71904,Herself,60063,230428,1 +71905,Len,33511,1798883,16 +71906,Car Thug #1,10739,1571036,19 +71907,"Feizollah, the teacher",43773,305593,2 +71908,Lady Caroline Dester,196789,1095811,4 +71909,,125835,589654,18 +71910,Himself,23319,14991,7 +71911,,220809,55643,3 +71912,Reception Nurse,3580,94904,37 +71913,Fisherman,43113,1478371,42 +71914,The Judge (as Robert Simon),199155,106506,5 +71915,"Domingo Santaló, 'El Pibe'",86154,69310,1 +71916,Margaret,152748,1640223,17 +71917,Pero,58704,1167543,0 +71918,Enrico Borelli,28044,19551,6 +71919,Professor Burket,22683,16477,8 +71920,Bhiku,325555,86017,9 +71921,Collins,43268,85956,5 +71922,Various,22471,88911,4 +71923,Billy Deal,86363,89165,6 +71924,Inspector Gavigan,228647,89728,5 +71925,Lola,78364,555974,10 +71926,Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf (voice),145220,64181,5 +71927,Pledge One,59738,107015,20 +71928,,76940,63698,5 +71929,Edna Jarvis,41551,106109,6 +71930,Rautahanska,55495,1121477,5 +71931,Matilda Runyon,40957,20624,9 +71932,Bertie,217775,934256,0 +71933,Dr. Schultz,47758,17755,5 +71934,Mari,35735,149933,1 +71935,Christophe,91690,121530,2 +71936,Princess,13338,89848,5 +71937,,142085,76285,4 +71938,...,224,2820,11 +71939,Mother,13823,75775,12 +71940,Jared Lambert,248706,188368,4 +71941,Harry Marshall,225285,1264233,7 +71942,Larry,102222,141226,12 +71943,Young Pete,227306,1056523,13 +71944,,44716,1807472,30 +71945,Anna,85640,1046192,8 +71946,Gene Autry,182035,90071,8 +71947,Miles's Building Manager,9675,83781,10 +71948,Maria (uncredited),36612,89746,13 +71949,Joseph,10740,6413,2 +71950,George Midash,185156,931362,2 +71951,Tom Berkeley,174925,148787,5 +71952,Rosita Cochellas,96252,137907,3 +71953,Roshchin,63838,113331,2 +71954,Isak,57419,88053,14 +71955,Raj,61400,77235,1 +71956,Prince Alfonso,16638,69555,4 +71957,,276906,62831,4 +71958,Dr. Livingstone,1976,8841,4 +71959,Hood,96132,1195195,18 +71960,Bobby,325592,1813534,4 +71961,Peter D'Souza,140883,1113722,2 +71962,Maggy Fuller,141418,1010894,0 +71963,Capt. Herbert Allen Hazard,46189,103069,6 +71964,Mrs. Crockett (uncredited),31555,75355,6 +71965,,14804,1901815,33 +71966,Petr's father,46982,120481,3 +71967,Supermarket Attendant,91679,1782606,47 +71968,Директор обувного магазина,46010,544619,11 +71969,Railroad Worker (uncredited),197737,97999,24 +71970,Gobernador,14430,7368,8 +71971,Wolfgang,265226,76285,2 +71972,William,92424,16790,11 +71973,Alan Harris,87343,21561,1 +71974,Peaches,110588,886142,0 +71975,Nancy,20312,27561,12 +71976,Peter Smithball,447758,1214499,15 +71977,Chief Matassalai,26505,61606,6 +71978,Un enfant qui joue au foot,14419,131604,9 +71979,T.D. Shawnessy,65488,77114,7 +71980,Lencho Ruíz,42502,52236,9 +71981,Whip Taylor,86825,71375,6 +71982,Nathan,52452,146007,8 +71983,Lang,10458,7803,2 +71984,Juanito,96935,1177603,6 +71985,Karen Cross,18711,2155,2 +71986,Assaggiatore,162056,1073145,8 +71987,Aaron,51828,1488236,12 +71988,Myra Frost,43855,1021799,9 +71989,Huoyi's Man,217923,1436285,43 +71990,Cole,27221,34657,3 +71991,,37055,1371486,3 +71992,Kathy Baker,48885,147091,1 +71993,Colin Thompson,11172,53368,2 +71994,Dancer,59962,1581108,37 +71995,Florence,16455,12207,1 +71996,Detective,260528,84824,2 +71997,White House Reporter,127585,1684713,60 +71998,James Hope - Police Officer,17654,173451,16 +71999,Asbjorn,286873,1017294,3 +72000,Miss Horsefall,88558,39028,4 +72001,Katerina,47792,932889,3 +72002,Judy Tyler,27543,98152,1 +72003,Beglan,353326,15497,11 +72004,Kuan,38681,1372740,4 +72005,Lois Lane (voice),30061,46897,5 +72006,Chief Yellow Hand,43499,5401,5 +72007,Bambi (voice),13205,12,1 +72008,Mary Ann Summers,103260,102399,6 +72009,Des Moines Stagehand,26670,95976,9 +72010,Detective Towne,70074,16460,19 +72011,Sylvie,8282,54325,8 +72012,Yussef,1164,18044,30 +72013,Gen. Joseph Stilwell,35392,14508,7 +72014,,38010,555020,23 +72015,Jim Macmichael,79329,95464,0 +72016,,359807,20548,2 +72017,Extra at Committee Hearing,43812,1422381,70 +72018,Sofi,8292,63522,6 +72019,Barber,24619,1850007,22 +72020,Antoine,26152,82793,9 +72021,Police Superintendent,13542,107754,12 +72022,Caproni (voice),149870,2283,9 +72023,Dana,86703,933545,5 +72024,Track Coach,10053,62567,17 +72025,Raija Rokka,55763,223083,6 +72026,,137312,123515,0 +72027,Tow Truck Driver,172847,1113334,5 +72028,Nudelman,270650,1323480,10 +72029,Grim Knight Dancer,243683,1398122,59 +72030,Todd,369033,188311,6 +72031,'Doc' Cochrane (as Robert Stevens),26805,32190,8 +72032,Margaret 'Maggie' Doone,38962,33092,3 +72033,Brian,413417,1573253,11 +72034,Sandya,80539,231596,1 +72035,Hélène Masson,76200,19092,0 +72036,Himself,324181,79027,2 +72037,Tough Guy,1724,15230,22 +72038,Christine Lee,55922,43278,3 +72039,Mor,21786,1336921,7 +72040,"Cmdr. Chen Shaokuan, Chief of Navy",25626,1336,1 +72041,Dean Solomon,10071,62831,1 +72042,Roz,365753,1569797,9 +72043,Erwin,64450,1522645,23 +72044,Fabio,53399,1280226,10 +72045,DI Williams,27917,7383,10 +72046,Officer Hank Swanson,43117,34651,2 +72047,EEG Tech,340027,79351,15 +72048,Lee McCall,18927,974,1 +72049,Blue Grass' Jockey,118889,1494496,74 +72050,,11196,1441488,30 +72051,Policewoman,198652,196288,12 +72052,Sars zombie,50108,1089589,4 +72053,Martinez,101363,5365,3 +72054,Concettella,57996,28140,7 +72055,Receptionist,125490,207713,17 +72056,Rebecca Lapp,74549,1820116,5 +72057,Young Shaw,70981,564941,6 +72058,Animal Control Handler #1 / Marine,272878,1683722,22 +72059,"Mr. C. B. Chadwick, the Broker",246299,30016,11 +72060,Kevin,354857,28638,5 +72061,Officer Sekowsky,49521,59312,26 +72062,Himself,121170,283444,1 +72063,Terence,10201,28641,12 +72064,Cricket (voice),270946,1521078,12 +72065,Kolia,245692,1390490,2 +72066,,172705,1202655,12 +72067,Man,94182,34334,33 +72068,Rocket Scientist Dieter Kolff,266314,13919,6 +72069,Field Marshal Wilhelm Keitel,102155,87546,19 +72070,Brent,19237,115729,2 +72071,cartomante,58081,1087613,4 +72072,Cartel leader,272878,61568,9 +72073,Melanchrus,286789,32377,6 +72074,Samo,436340,1744815,2 +72075,Lily Bowman,62838,968006,22 +72076,Head of Nation,206647,1599259,47 +72077,Sven,407,5600,9 +72078,Birdie,42267,102441,9 +72079,Manfreddie,50647,53607,23 +72080,Света,253192,86866,4 +72081,Jack Halcombe,199373,2963,0 +72082,Claire,67018,545724,1 +72083,Amy Zuckerman,100669,22248,6 +72084,Max,203539,52966,0 +72085,Clip from 'A Date with Judy' (archive footage),33740,82405,61 +72086,Éléonore,71630,275820,4 +72087,Mr. Seaver,15022,95195,24 +72088,,18729,1796,3 +72089,Cherene,72105,1204328,25 +72090,Nurse Louisa Smith,297265,1512485,15 +72091,Prof. G. Octavius Neon,31258,1060909,1 +72092,Nat Goldberg,121052,109865,3 +72093,Prisoner #2,17940,184868,6 +72094,Fille de l'amie d'Anna,352025,1784152,18 +72095,Mary,113091,76527,5 +72096,Hilary Hartwicke,24341,14146,8 +72097,Moriarty,26983,32894,10 +72098,Dr. William Waller,400174,1247,4 +72099,Robert Cosick,54139,5403,1 +72100,Caterpillar,25694,30004,16 +72101,Reporter,52437,1034935,19 +72102,Duke Harris,28484,100918,5 +72103,,202239,236826,0 +72104,Tohtori Bonell,117499,47061,6 +72105,Kalara Alien VO (voice) (as Sara Maria Forsberg),188927,1590377,52 +72106,Writer,59744,104452,16 +72107,"Mike, the Pool Room Bartender",246299,1509,3 +72108,Naseem,121598,85672,2 +72109,Mental patient (clock),11205,134704,9 +72110,Wesley,8277,95137,6 +72111,Claire,360784,127558,2 +72112,Josh,773,17417,15 +72113,Mandarin Guard,68721,1735558,57 +72114,Nils Bjurman,33613,21193,18 +72115,Penthouse Party Guest,11172,66684,59 +72116,,155605,131016,2 +72117,Un pellegrino,315319,1880533,16 +72118,Mrs. Wesson,46729,86530,4 +72119,Bit Role,42852,1277204,19 +72120,Toshio Aida,56232,133049,3 +72121,Bill Rockne - Age 10,43812,1220556,39 +72122,Bat Guy,17926,200067,14 +72123,Annie,12707,37995,3 +72124,Gypsy Leader,131781,1093715,10 +72125,Count Alfred Renard,51759,112972,0 +72126,Jack Morgan,206328,78041,1 +72127,Lt. Tim Macy,330711,190884,6 +72128,Anna Krzakowska,52920,107867,2 +72129,"Steve, Cherokee's Ranchhand",104083,977345,8 +72130,Sheriff Cal,47638,1234808,6 +72131,Carlos (uncredited),102144,1069667,8 +72132,Francis O'Connell,242310,53,3 +72133,Clinic Barman,206647,48393,52 +72134,Tiger Mask,83899,83858,11 +72135,Derek Lee,86970,57748,8 +72136,Kacper,342765,82313,0 +72137,The Deafmute (uncredited),28668,1263061,5 +72138,Dr. Jacob Kaufmann,8669,44101,25 +72139,Miki,142320,1336863,35 +72140,,121530,1431685,10 +72141,Tomoko,43635,129702,2 +72142,Thibaudier,66897,544729,3 +72143,Hybert,44522,5185,5 +72144,Eagle Boy,55534,84219,17 +72145,Berik,78464,84733,2 +72146,Katharine Dunlevy,76757,556356,17 +72147,Niller,15838,93108,2 +72148,Lola Chong (voice),123025,46774,29 +72149,,46712,1043869,2 +72150,Monsieur Melville,11338,53767,26 +72151,Peck,36288,3265,5 +72152,Brian Fisher,221981,262720,4 +72153,Mariette,201365,19995,3 +72154,Lila Wagner,27999,10160,1 +72155,Rifle Man,274479,58535,49 +72156,Gary,78403,130768,6 +72157,Crew Chief,193756,1283040,11 +72158,Sergi,253251,1149067,1 +72159,Tokiko,45987,82873,5 +72160,Dr. David Klugle,20644,14533,7 +72161,Sidney Bung,5060,40948,0 +72162,Thunder's men,64316,62414,3 +72163,Michael Vargas,418437,1234388,5 +72164,Barkeeper,160160,1114393,11 +72165,Himself,15258,194525,16 +72166,Strip Club Patron (uncredited),293660,1683956,39 +72167,Sgt. Mack Clyde,42796,93740,4 +72168,Oda Schaefer (voice),82708,1467898,20 +72169,Adrian,57190,1954,1 +72170,Alma Koskela,41142,125626,4 +72171,Kumiko Owada,85844,1068865,3 +72172,Le petit garçon,16135,79532,37 +72173,,16015,1445193,18 +72174,Shoepolisher Boy,49853,1648794,39 +72175,Micky,62684,235804,1 +72176,Victor 'Konyok',65614,116005,0 +72177,La marchesa,63179,236561,2 +72178,Lee Lang,1550,1594622,20 +72179,Alice Moreux,21070,272412,8 +72180,Kurt Kanz,211,10246,9 +72181,Ali Bey,4887,40024,7 +72182,Babylonian Judge (uncredited),3059,262394,76 +72183,fisherman (uncredited),19335,83397,11 +72184,Weepin' Willie,187516,30005,4 +72185,Heiner (voice),9514,57801,11 +72186,Hand-to-hand fight entourage,346646,1457189,18 +72187,Clara,12169,1164964,8 +72188,Rem Anderson,86363,50304,0 +72189,Tío (alternate version),66967,14821,4 +72190,Jim Melford,85640,14060,10 +72191,Dr. Evans,24409,83387,8 +72192,,11196,1152683,26 +72193,Flemming,71670,3491,6 +72194,Nicole Ricard,24921,111439,1 +72195,Joaninha,49974,1223495,0 +72196,Michelle,244316,15555,2 +72197,Hirokawa Takeshi,282070,2542,9 +72198,L'homme qui récupère le téléphone,377853,28462,17 +72199,MC,370234,85154,12 +72200,Cyrus W. Butterfield,80771,150082,6 +72201,,148615,49422,9 +72202,Laura Simpson Sockaloe,42604,1212040,9 +72203,Benjamin Chandler,193878,20145,7 +72204,,47508,148819,16 +72205,Lady Claire Mere,43850,80237,2 +72206,West Indies,86279,1046748,4 +72207,Dolly,300667,4038,2 +72208,Khalil,172008,946350,6 +72209,Jonathan Bolton,30637,30704,6 +72210,Francesca Vernesi,85735,62531,6 +72211,Giovanni Rossi,81775,1877996,7 +72212,Maida Vale Doctor,80596,29655,15 +72213,Milicjant,155325,1138526,12 +72214,Judge Cameron,59882,89673,6 +72215,Mick,25241,93419,0 +72216,Greg,11376,25925,4 +72217,"Teese, Court Jester",37292,127032,7 +72218,Marty McCord,45215,8519,10 +72219,Frau Schmidt,169656,1726741,10 +72220,Heather,345054,88072,1 +72221,Tommy,70476,77799,2 +72222,Harry (uncredited),36634,115079,21 +72223,Det. Benjamin Smiley,78691,5048,5 +72224,Pastor,18093,1738906,12 +72225,,104251,137516,6 +72226,Zor-El (voice),166076,17401,13 +72227,Marc Rehnquist,363483,1541777,4 +72228,Kathy,59738,1205523,9 +72229,Fight Spectator (uncredited),28000,1181275,40 +72230,,107916,1042760,13 +72231,Kurt,46972,192254,8 +72232,Uschi,12128,1295917,5 +72233,Jason,243683,110743,2 +72234,,79775,1365573,7 +72235,Alex,358353,74290,1 +72236,La muerte,122019,19448,2 +72237,Vera Segert,27622,89684,3 +72238,Yuki Aoyama,125264,213497,9 +72239,Puska,317,133023,9 +72240,Theron,1271,17287,2 +72241,Club Patron,33343,1188792,24 +72242,Nest Security/ Soldier (Uncredited),38356,1901413,39 +72243,TV Interviewer,11012,1093412,19 +72244,la madre di Silvia,82350,1003922,3 +72245,Jojo,39413,6304,3 +72246,Drake Chapman,31377,61408,5 +72247,Matt as a Boy (uncredited),17687,67370,13 +72248,Meat Monster,75761,1769862,21 +72249,Chuck Carter,26131,115444,11 +72250,Diana Torres,70863,90719,4 +72251,Richard 'RJ' Hughes Jr.,298540,85752,1 +72252,Oogway (voice),9502,9462,6 +72253,Clip from 'Two Weeks with Love' (archive footage),33740,130585,18 +72254,Foreman Shiro Tsutsumi,52728,111948,0 +72255,Mason,10294,11805,4 +72256,Mike Baker,11007,142635,11 +72257,Carl,166221,2878,0 +72258,Melissa (1st Colony),341689,1455122,10 +72259,Portia,77930,1784589,18 +72260,Brassy Girl,73700,1465571,12 +72261,North Korean Man,172474,1158712,2 +72262,Shirley - Barrett's Secretary,1938,121323,10 +72263,Sarina Kimball,274479,131849,50 +72264,"Author / Narrator (segment ""Chawan no naka"")",30959,131923,62 +72265,Kevin,19918,1223703,12 +72266,Jim Denny,40047,123722,10 +72267,Gina,297853,1790432,19 +72268,Medical Office Nurse Phnom Penh,49853,1648785,27 +72269,Ángel/Juan/Zahara,140,258,0 +72270,Annie Call,68720,17755,4 +72271,Vladimir,40373,26094,0 +72272,Virginia,285946,1351400,11 +72273,,282086,140438,4 +72274,Lanky Kid,41402,1317566,14 +72275,Gregory,28746,1326026,2 +72276,Captain Frank Chapman,27717,98827,0 +72277,Kimi's advocate,101838,1029081,13 +72278,Randall Boggs (voice),62211,884,2 +72279,Young Jyn,330459,1725276,58 +72280,Sam,89325,1435955,8 +72281,Marisol,14147,27855,1 +72282,Sharon,91186,1163183,8 +72283,Elena Dubrovnik,54105,550604,1 +72284,Friend,4253,1281345,9 +72285,Gabe Clevenger,72474,93624,5 +72286,Lily Weirengo,412209,1677243,9 +72287,Himself,13516,939081,17 +72288,Count Dormo,53851,132536,9 +72289,Nurse,293970,1347310,15 +72290,El Caribe Party Patron #4,2001,1045964,56 +72291,Dancer at Gala,37710,1754992,42 +72292,Milo - The Venusian Beast,38134,138622,5 +72293,Wedding Guest,90799,121323,9 +72294,Fred von Klausnitz,3577,33042,5 +72295,Ricardo Bauma,27230,198886,11 +72296,POV Performer,91679,139388,55 +72297,Ann,374473,229605,4 +72298,Waitress,193610,208659,11 +72299,,92657,39012,3 +72300,Maria Dmitriyevna,149170,1344533,4 +72301,James,415633,1678280,1 +72302,Diana Brown,70670,559207,2 +72303,Newscaster (voice),172385,118752,19 +72304,Aishwarya 'Aishu' Gautham,69635,1343041,5 +72305,Maheshwari,69428,1327484,7 +72306,Sarah Richman,19053,13023,7 +72307,Jamie,110115,1068698,0 +72308,Willard,262528,9287,1 +72309,Barista,103758,72789,7 +72310,Lew,45875,131546,6 +72311,Vishnu Sharma,256907,35792,1 +72312,,49522,78047,16 +72313,Young Carlos,202214,1184328,3 +72314,Sweeny,132928,1240252,17 +72315,Day Desk Clerk at Hotel,20444,15900,17 +72316,Antoine Beretto,33360,15397,0 +72317,Sebastián,185180,42411,2 +72318,,118257,240036,12 +72319,Capt. Berger,10841,100095,8 +72320,Lui,371942,109337,9 +72321,Ray,94568,165056,8 +72322,Luna,191562,1172083,4 +72323,Mr. Potato Head,213121,7167,6 +72324,William,413998,1850838,23 +72325,,325039,125278,4 +72326,Ian,323673,42711,1 +72327,Ponchik,41581,565318,2 +72328,Esmerelda (voice),79599,53548,1 +72329,Louis Hoyt,44888,56442,3 +72330,MOB Dancer,243683,1398067,45 +72331,Minister (uncredited),32552,43826,21 +72332,female missionary,2015,96663,2 +72333,Brice,3937,34277,10 +72334,Brown Eyes' Mother (French Story),3059,29958,13 +72335,Gordon,28340,100489,5 +72336,Sergeant Harris,220674,219367,3 +72337,Himself,8847,56082,2 +72338,Ms. Lee,192623,66441,4 +72339,hostinský,84030,1427194,10 +72340,Sarah Fittler,116979,15887,2 +72341,,151652,1374213,4 +72342,Tourist,5721,4590,10 +72343,Jeanne,1427,17074,15 +72344,Lehrer Hänel,360737,1371005,11 +72345,Col. Quaritch,19995,32747,3 +72346,Sir Reginald,38389,1080225,3 +72347,Bosun,71805,559200,9 +72348,Mashiro Satonaka,382170,931599,3 +72349,Paul's Waiter,169355,121335,16 +72350,John Walker,52360,25174,32 +72351,Maggy,63376,550167,2 +72352,Tiberiu,6417,49676,6 +72353,Judd,317114,1237422,6 +72354,Mann mit Gitarre,4285,1151734,8 +72355,Anna,43880,2929,9 +72356,Tin Choi's thug,88922,119457,18 +72357,Officer Freeman,309879,1246343,9 +72358,Renate,49850,8797,3 +72359,Penny Alexander,89325,1902,3 +72360,Zeb's Brother (uncredited),16442,1035639,87 +72361,Phillip Payne,65603,2076,1 +72362,Gretchen Boyd,5172,206379,25 +72363,Marshal Paris,26486,1462,5 +72364,Bhavani,109001,237697,2 +72365,Passerby (uncredited),297762,1824304,103 +72366,Shot Gun Triad,15092,59013,29 +72367,Diane Duncan,42542,1015797,8 +72368,Maya,89008,133451,8 +72369,Rhona,43550,78534,3 +72370,Funeral Goer,216374,1207889,10 +72371,Jim,9966,61137,15 +72372,Big Bro,302699,1754480,26 +72373,Haralabos,163791,1060189,3 +72374,,199879,1180327,4 +72375,Carl Trenta,86254,101026,4 +72376,Serveur soirée,382591,212080,27 +72377,Bernhard,368342,1535435,10 +72378,,178595,1155111,4 +72379,Young Girl,22792,205,2 +72380,,341491,586286,4 +72381,Plyne,1818,148302,4 +72382,Joey Kramer,4551,78461,38 +72383,Cyril,322460,92042,9 +72384,Parker - McMasters' Butler,55604,544585,33 +72385,Nora King,31042,118300,1 +72386,"Höllriegel, Rennfahrer",798,11937,10 +72387,Susan,49391,23775,7 +72388,Seth,254188,1445772,14 +72389,Mr. Parker,27338,3907,4 +72390,Gerda Christian,613,8800,10 +72391,Banda Sua Mãe / Guitarrista,70666,1863891,25 +72392,Foxy,48852,36480,24 +72393,Gendarme Ping-Pong,382598,1884494,13 +72394,Ed Hogate,251421,14452,3 +72395,Amber,395883,1170844,9 +72396,Ruth,20028,85494,10 +72397,Harley Quinn (voice),396330,15762,4 +72398,Little Ray,220029,973,3 +72399,Amelia,9787,63522,17 +72400,Miami Blonde,23169,204679,14 +72401,Cyd,13834,58804,6 +72402,Tyson / Wag (voice),30060,94713,4 +72403,Dr. Floyd Beasley,47540,1539,11 +72404,NEST Technician (uncredited),38356,1585120,30 +72405,Bleep,47670,220893,7 +72406,Rebecca,387999,499717,2 +72407,Pentagon General Radford,246655,55378,55 +72408,Henchman Trigger,285946,94897,13 +72409,Clark Kent at 13,49521,236302,13 +72410,Himself,160297,68648,0 +72411,Williams,22051,142262,9 +72412,The Nose,7445,53969,18 +72413,Johnny Lewis,168676,1047261,11 +72414,Board Member,109716,30145,80 +72415,Flatty's uncle,88811,1888168,10 +72416,Landsat Steve,293167,141956,16 +72417,?,5481,44962,4 +72418,Police commissioner,74585,37191,2 +72419,Ronnie,243935,4890,9 +72420,Alex,82321,258,1 +72421,Diane,100770,96175,2 +72422,Harold,10433,5170,4 +72423,Mario,106887,102275,1 +72424,Alice,307081,928905,21 +72425,Aron,46169,44100,7 +72426,Member of Moral Reform Society,18731,945583,11 +72427,Jiminee,2516,25638,5 +72428,Walker Chee,65603,41274,3 +72429,Herself (voice),378441,1797388,11 +72430,Marcus Turner,13279,74572,7 +72431,Shizu Morita,111398,1068832,5 +72432,Farid Ghaffarian,266102,1261092,6 +72433,Georgia Miller,167556,175891,5 +72434,,104945,100412,2 +72435,Joe,250332,1779168,71 +72436,la domestique,76703,543813,4 +72437,Garrett,288980,157961,9 +72438,Daphne's Tattooed Fan #2,11024,83424,12 +72439,Guy on platform,10103,63442,3 +72440,Chalerm,13436,1656870,6 +72441,Christophe,4974,20672,4 +72442,Sergeant Hallett,126889,37290,9 +72443,Junior [Malysh] (voice),72203,565312,1 +72444,Ayudante del juez sordo,69060,1469972,15 +72445,Nobuo Itakura,125257,1559746,2 +72446,Marco,302104,483327,3 +72447,Announcer Al Fazin,921,22250,17 +72448,Jeff,13734,47337,1 +72449,Kurt Weber,67102,1053374,7 +72450,Croatian Soldier 1,255160,1898253,41 +72451,,72733,1649447,7 +72452,Paul,381008,1215046,2 +72453,Herself,4140,34959,2 +72454,Drunk (uncredited),173634,85778,14 +72455,Sheila Carrson,59828,31844,2 +72456,Foreman Pig (voice),153518,52701,25 +72457,Castor (uncredited),109491,1682511,36 +72458,"Mme Pirchtate, la voisine",343702,49168,9 +72459,Detective Meara,353979,62093,9 +72460,Tony - Mechanic,3937,153638,15 +72461,Johann Porok,53851,32428,0 +72462,,1838,1151822,18 +72463,Juan,264397,1325576,16 +72464,Lynn Connors,59738,92810,0 +72465,Cute Girl,32657,82791,46 +72466,Sabine,44047,589,1 +72467,Tony Korvac (uncredited),36634,115994,19 +72468,Insp. Mackenzie,29212,2435,2 +72469,March Hare,25694,2436,24 +72470,Chris Bern,110525,18156,0 +72471,,273868,32053,4 +72472,Old Man,98250,22250,11 +72473,Rajput,115109,104806,35 +72474,Cashmere Sweater Babe,13777,75268,21 +72475,Barista,84228,1082357,15 +72476,Manager Elektronische Zwerge,9690,6084,13 +72477,Charles Waechter,7353,5293,2 +72478,Tante Martha Danner,12523,47026,9 +72479,Minister,60807,141695,7 +72480,Paco,300596,131591,4 +72481,Nick Fury,14609,56758,7 +72482,Girl Violinist,124115,1472508,35 +72483,Valentino,301272,120653,1 +72484,Law School Professor,4982,87478,55 +72485,Nuclear Powerplant Shift Supervisor Beth Soden,13173,21197,16 +72486,Mrs. Parke,169782,1152003,1 +72487,Rebecca,21041,85386,1 +72488,Rudy,138502,76292,0 +72489,,84420,1039419,3 +72490,Lieutenant of Police,61541,96053,6 +72491,Loredana,98025,227317,0 +72492,Journalist,83079,8927,11 +72493,Hailey,410537,1528495,1 +72494,Corinth,255496,102729,4 +72495,Okada's Wife,101929,106159,8 +72496,Rosy Montrose,33005,4433,1 +72497,Fanny,65496,19122,4 +72498,Feral Kid,375366,1886001,18 +72499,Old Harry,50416,194,3 +72500,Hal,100110,96913,5 +72501,Maharani Jodha Bai,44519,230972,4 +72502,American Secretary,19996,1764152,48 +72503,Tracey Huxley,423377,4766,3 +72504,Volunteer (uncredited),1116,1896899,78 +72505,Himself,417870,4238,23 +72506,Tony's Guard,68721,1530091,65 +72507,Terry Noonan,1662,2228,0 +72508,Asgardian,284053,1394464,25 +72509,Soo-ji,18374,83012,0 +72510,,92132,99285,1 +72511,Himself,125736,1271010,25 +72512,Mr. White / Theodore Whitman,75204,591569,4 +72513,Luigi,50318,1315515,13 +72514,Lopez,126415,85982,3 +72515,Frieda Jensen,86297,140822,6 +72516,Nutsy,42062,4113,3 +72517,Healey,72638,992912,40 +72518,Linda Garner,45243,153621,16 +72519,Krystal Manicucci,343934,45827,3 +72520,"Gyuri, postman",8776,56293,4 +72521,Mandoa / Dead Mandoa,38134,1158357,3 +72522,Ossi,40864,93004,2 +72523,Mitch Brandt,12573,1015643,9 +72524,Himself,293262,523,16 +72525,Grace,10475,16215,6 +72526,Kastriot Morina,129530,53940,3 +72527,Andrea Fleytas,296524,180486,3 +72528,Raja / Rahul,156288,78245,0 +72529,Casino Stickman,11358,77222,27 +72530,,62741,142508,6 +72531,Dr. Emmanuel Droz,44502,3757,1 +72532,Greg Graham,16240,80178,1 +72533,Roxanne Ritchi (voice),38055,56323,2 +72534,Ivan / Pope (voice),33065,110035,6 +72535,Iemon Tamiya,84508,80708,0 +72536,Captain of the Endurance (as Captain F. Worsley),49837,142887,1 +72537,Mother of Sara / Jess,329440,1777429,21 +72538,Victor Donlan,41206,14518,4 +72539,"Philip ""Red"" Pianatowski",118900,170275,4 +72540,Adell Baldwin,18056,8169,1 +72541,Narratore,50849,40,9 +72542,Courtroom Spectator,43821,1468755,35 +72543,Kaz Nomura,17274,567065,3 +72544,Kenny,41402,112476,6 +72545,,261871,238204,6 +72546,Owen Baker,21765,19977,1 +72547,Elsa,133523,1097461,0 +72548,Austin,157898,143560,2 +72549,Jen,257447,1696904,8 +72550,Le Cow-Boy Vanneur,10870,56024,4 +72551,Korn,50086,1133987,3 +72552,,276165,67848,2 +72553,George Blake (lab assistant),53949,196163,7 +72554,'Pinkie' Peters,20640,79246,5 +72555,Maria Montagne,28290,117617,3 +72556,Party Girl (uncredited),15022,1303214,44 +72557,Takeo,17911,125130,6 +72558,Self,354544,84075,1 +72559,Gant gang member,11897,24827,23 +72560,,280422,1337739,6 +72561,Anna Tassotti Maloni,48935,35956,1 +72562,Purple-haired doll (voice),10193,5149,6 +72563,Barber,85350,1467544,18 +72564,Dakota,227975,73575,4 +72565,Helen,16186,55314,0 +72566,Evan Brent,30934,31295,0 +72567,Henry Witt,18638,146020,9 +72568,Poppy,35052,17606,2 +72569,,155597,1586008,13 +72570,Dad (voice),28275,19151,2 +72571,Ahm,27085,1432794,6 +72572,Bride Suzanne,6557,209730,13 +72573,Roxanne,24123,57854,6 +72574,Father Nicoletta,60086,44616,7 +72575,,83456,229354,14 +72576,Roderick Fitzgerald,16373,7124,0 +72577,Charlie Fusureth,131039,62671,8 +72578,Le malfrat,11227,1658505,7 +72579,Deacon,246741,586951,2 +72580,kum Spasoje,148034,1043263,15 +72581,Lisette,49502,9875,15 +72582,Dr. Hepburn,2567,6074,22 +72583,,33340,79196,0 +72584,Licenciado,198795,112208,18 +72585,Hot Servant,156711,1349744,39 +72586,Peter Hall,253154,3230,7 +72587,Operator,3580,162878,16 +72588,Colonel Saul Tigh,105077,164114,4 +72589,Anna,167221,239474,4 +72590,Big Mikey,18633,4250,11 +72591,Láďa,346723,30737,3 +72592,Jay Howell,76468,15416,3 +72593,Scott - Bass Player,10330,1526,19 +72594,Sgt. Steiner,10841,5341,0 +72595,Skerritt's Friend,152748,525243,18 +72596,Dentist,18774,190526,22 +72597,Rena Fairchild,225499,41226,8 +72598,McHeath,15810,1331,3 +72599,Moberg,285181,47175,4 +72600,Border policeman,383064,1894949,8 +72601,Nun,21627,3910,10 +72602,Stallings,281215,24320,9 +72603,Bislane Tasuiev,9389,2462,1 +72604,Mr. Johnson,43811,97007,13 +72605,Gerardo,22093,88305,0 +72606,Ms. Brooks,183825,121208,21 +72607,Mrs. MacMananan,79833,53367,12 +72608,Imme,58396,228514,5 +72609,Augustin,16374,17605,0 +72610,Micky,448847,1796124,10 +72611,Kelli,22051,1634913,17 +72612,Learing Lesbian,31821,496733,10 +72613,Link Larkin,2976,29222,6 +72614,,127105,43835,4 +72615,Jan Bublanski,33613,135691,13 +72616,Himself,307931,1393837,2 +72617,Kamuran,37570,1598080,7 +72618,Françoise,10268,5318,5 +72619,Jody,340584,1516082,7 +72620,Françoise/Cybèle,43001,999598,2 +72621,Prestur,72596,1081289,25 +72622,Louie,52741,16504,8 +72623,Stepfather,58251,101843,5 +72624,,89445,1667523,4 +72625,Ben Crowley,130507,74875,8 +72626,Aron,266285,47973,32 +72627,Leo,64450,1064538,8 +72628,Bunny,35395,114253,1 +72629,Honest John,9474,1107,3 +72630,Margaret McCartney,345003,1838593,18 +72631,Himself,253612,1383169,1 +72632,Irene Young,192623,6720,7 +72633,Engineer Sergeant at Cave-In (uncredited),72638,17759,19 +72634,Lord Scythley,2454,24496,12 +72635,Professor Aronnax,2965,16554,0 +72636,Dr. Gordon,56669,1512992,6 +72637,Baker,72984,1764693,8 +72638,Natari,62472,1185639,29 +72639,Horst,156,1019,4 +72640,Additional Voices (voice),328111,31365,27 +72641,Doña Encarna,82767,940920,7 +72642,Member of Parliament,109716,13343,42 +72643,Samantha,45729,133592,10 +72644,Mr. Gardner,55728,2493,8 +72645,Henrik,20372,226235,8 +72646,Luke,186759,53336,4 +72647,Petrov otac Veselin,148034,226302,1 +72648,Angelique Paxton,16997,52087,4 +72649,Judge Liffy,82191,12727,3 +72650,Athena,325780,1854968,5 +72651,Lyra Erso,330459,583815,23 +72652,Himself,207021,1295353,6 +72653,Pollack - Aviation Engineer,43833,104302,13 +72654,Himself,15258,175935,37 +72655,Jim,41559,2372,1 +72656,TV Reporter,240913,1235818,21 +72657,Judge,15472,74391,28 +72658,Mrs. Tyler-Blane,214909,108804,6 +72659,Manuela Alva,35032,9066,0 +72660,José Miguel,56647,224730,4 +72661,Michele,43989,129980,5 +72662,François,8588,55411,4 +72663,Advisor Jo-Beth,50364,1605124,7 +72664,Neetu,33146,86075,5 +72665,Lawrence Green,11329,12799,6 +72666,Queen Elizabeth,300155,1639,2 +72667,Denise,330947,224136,12 +72668,Сюсин,409082,1082026,10 +72669,Various (voice),110392,8930,2 +72670,Marina,82341,102120,6 +72671,Steamboat Crew (uncredited),76203,1426635,62 +72672,Junkyard,220820,977636,18 +72673,Oskar,193523,135726,2 +72674,Stephanie,302666,18475,4 +72675,El Caid,50761,29427,2 +72676,Joji 'Jo' Mizuno,37939,228532,0 +72677,Maura,8270,54203,14 +72678,Cheburashka (voice),79701,565312,1 +72679,The Girl,48210,150338,1 +72680,Maggie,125300,589,7 +72681,Baby Rats,21250,52698,15 +72682,Lefty,53573,1016038,8 +72683,TV Announcer,22682,1223619,14 +72684,,28482,1470545,18 +72685,Chishov,142770,543944,1 +72686,Aunt Mary,8194,53937,6 +72687,Father Sean Brennan,227325,8335,2 +72688,Kun (as Lam Ka Tung),18747,83820,6 +72689,Sole,162282,124623,3 +72690,Kikunosuke Onoue,46069,134676,0 +72691,,289679,543687,9 +72692,Paul,180759,202760,6 +72693,Nele,6183,48511,12 +72694,Jahvon,13058,1221048,20 +72695,Paul,84348,1090688,17 +72696,,356862,1385608,2 +72697,Stylist in Salon,13058,1589711,40 +72698,Roos Hartman,53472,66188,0 +72699,Sebastian Zöllner,277968,3872,1 +72700,Claire Linné,59118,38863,1 +72701,Domenico Malacarne,127091,36913,0 +72702,Portiere,110447,1752449,20 +72703,Agent Boyles,59962,205560,20 +72704,Dieudo,172890,140457,0 +72705,"Rouma Boll, le roi Peul",71329,545037,2 +72706,Jeanie Humphrey,21029,74954,4 +72707,Al Gannaway,43321,18391,5 +72708,Reyna,17003,1005804,8 +72709,Man In Food Bank (uncredited),374473,1650257,26 +72710,J.D.,3563,963298,35 +72711,William Garin,311324,1892,0 +72712,Petyr,246741,1439931,5 +72713,Lucignolo (voice),136619,223619,3 +72714,,80276,1640412,14 +72715,Brothel Madam,42764,128676,8 +72716,Colorado Woman,209112,146412,83 +72717,Linda,1259,37050,9 +72718,Herself,126016,28767,1 +72719,Marisol Durán,37609,1164832,4 +72720,Saanjh Batra,166225,1172476,2 +72721,Tadek,133521,1482162,1 +72722,Soldier,128866,1088064,12 +72723,Zartan,14869,16743,11 +72724,"Radhabai, Bajirao's mother.",362045,20045,4 +72725,Glader,198663,1415437,33 +72726,Himself,296194,20788,7 +72727,Ray Singleton,47525,22108,1 +72728,Dr. Cheever,40221,34842,6 +72729,Harrison (uncredited),16442,13823,72 +72730,Carney,179818,2015,8 +72731,Snipes (voice),20421,42362,1 +72732,A Refugee Doctor,37368,4119,7 +72733,Snotty Skater,33570,110910,3 +72734,Dylan,359255,1508174,6 +72735,Patch,269173,1301638,10 +72736,Lala,125835,1640412,16 +72737,Zeke McGaffey,30054,34651,7 +72738,Katie Kampenfelt,271185,52018,0 +72739,Executive,49524,1558766,20 +72740,Mrs. Carlyle 'Carly' Hardwicke,49844,5729,0 +72741,Keeper Wan,40081,240174,5 +72742,Ogre Baby (voice),48466,76744,10 +72743,Clips from 'Speak Easily' & 'It Happened in Brooklyn' (archive footage),33740,34745,24 +72744,Mila,31264,135865,1 +72745,Anne Northup,76203,218667,15 +72746,Ben Green,13196,4756,3 +72747,Billie Kope,322922,1317159,4 +72748,Krankenschwester,203539,53844,11 +72749,Betsy Booth,43808,9066,2 +72750,pappagallo #1,193641,1046561,8 +72751,Lt. Solano,59197,1018580,4 +72752,,9550,1620880,16 +72753,Boy (uncredited),43522,149080,30 +72754,Maria,13391,25773,4 +72755,Snow Thompson,89551,1071192,3 +72756,,44716,1293151,31 +72757,Congratulator,413232,173693,38 +72758,John,335145,2387,4 +72759,Magistrat,1427,17079,3 +72760,Mr Rafferty,425774,1707945,52 +72761,Steve,250535,28847,1 +72762,Countess Ellen Olenska,110540,77158,0 +72763,Prosecutor,42267,1107,6 +72764,Mr. Hillaby,118283,34558,13 +72765,Agnes White,12526,15852,0 +72766,Harry Pontos,29829,84229,5 +72767,Le médecin de l'hôpital,61361,1318271,10 +72768,Olivier,101352,35953,3 +72769,Juniper / Jane,140222,145836,2 +72770,Grandfather Tikhon (voice),33065,110034,3 +72771,Mrs. Michaels,40649,58928,11 +72772,Pugsley Addams Jr,107596,1647140,17 +72773,Girl in Car,40028,230499,14 +72774,Election Judge,250332,117586,24 +72775,Sang-Ha's subordinate,280019,1336802,7 +72776,William Harding,18586,4451,0 +72777,Persephone Updike,74924,10804,7 +72778,,359152,146464,1 +72779,Doris,12605,24439,1 +72780,Bobby,431093,1838726,9 +72781,Professor Gray,397717,21179,9 +72782,Keith,101242,211993,3 +72783,Freya Talberg,183932,103904,5 +72784,Yaşar,220002,556048,0 +72785,Father,20766,110,0 +72786,Immigrant Woman (uncredited),273481,1505502,39 +72787,James Pope,403431,1180698,0 +72788,Cony,33774,225012,3 +72789,Agnes,154537,62595,8 +72790,Kreil,94336,13746,12 +72791,First Reporter (uncredited),33792,857,14 +72792,Gerolamo Giarra,52913,3265,3 +72793,Old Guard,68737,2250,10 +72794,Chief Inspector Smith,256092,272408,4 +72795,Kato,72933,1093435,3 +72796,North Kaiou,39102,619,6 +72797,Gautham,422603,1697412,4 +72798,Trish Prescott,17745,71519,4 +72799,Ji-yeon,375599,86889,0 +72800,,11328,1444480,27 +72801,Todd Zalinsky,61168,12219,6 +72802,Biju Ram,101185,11852,6 +72803,Yoon,82469,1106129,2 +72804,Councilman Banks,3563,28906,10 +72805,Drugstore Owner,26914,932329,12 +72806,Army General,42852,97217,22 +72807,Herself,173301,1196508,0 +72808,Царь (озвучка),83865,126863,2 +72809,Sarutobi Sasuke (voice),63486,239447,2 +72810,Alice,146730,144552,0 +72811,Customer,72912,60875,8 +72812,Mutter,53364,1833570,7 +72813,Eli Pops,57419,1050852,22 +72814,"Kiichiro Hanai, boss of the yakuzas",36246,1168781,4 +72815,Nick Stavros,173153,1178193,5 +72816,Wanda,44470,95214,13 +72817,Wulfila,9703,9013,4 +72818,Marc Weigert,332759,21831,10 +72819,,94696,85219,6 +72820,Tanya Lee's Dad,18557,75742,7 +72821,Carol Kelley,29058,95787,1 +72822,Mrs. Monahan,33839,7381,7 +72823,"Gerard, Sarah's Ex-Husband",49060,38891,7 +72824,Leech,27470,14884,4 +72825,Mia,11172,164433,21 +72826,Sprzątaczka w domu publicznym,91691,563599,11 +72827,Neighbor,92496,1367103,20 +72828,Technical Adviser (Ollie 'Sweet Lips'),4932,2492,16 +72829,Manager (uncredited),43522,83398,38 +72830,Abbie Belldon,31899,97989,5 +72831,Dr. Van Isacker,29101,211259,8 +72832,Quincy,14642,428,11 +72833,Ben Wheelock,24090,117434,6 +72834,Linda,99367,63234,4 +72835,Grace Meacham,294272,18997,0 +72836,High School Student (uncredited),345922,1767233,52 +72837,,185153,11852,1 +72838,American Native Indian,240832,1426917,54 +72839,Lori Russell,32790,131008,7 +72840,Sadie - Hippie Chick,47342,1837860,19 +72841,Hal,12855,81073,7 +72842,Khan,11172,20644,12 +72843,Jo Hye-ryung,54555,1112440,6 +72844,Emma,79735,120391,6 +72845,Tran,46660,1094511,9 +72846,Wolf,62764,1060474,9 +72847,Umberto Ciceri,56369,32312,2 +72848,Beauty,62630,566331,18 +72849,Okubo's son,52047,1063896,7 +72850,Dr. Pellagrino,4964,53400,23 +72851,Nonna,190410,227309,2 +72852,Publican 3,107985,206726,39 +72853,Troy Garnet,209406,151975,8 +72854,Door Guard #2,62764,36821,31 +72855,Николай Мячиков,46010,86680,0 +72856,Kembuchi Mudou,41378,83358,4 +72857,Congressman McCarter,127585,1674956,37 +72858,Bugs Bunny (voice),14011,86434,11 +72859,Maria,134782,1100034,1 +72860,Neighbor,7014,4274,1 +72861,Frank - a Night Guard,26376,99464,51 +72862,Christel,115929,1064511,13 +72863,Jerry,45132,70303,39 +72864,Background,408508,1707541,4 +72865,Une journaliste BFM,98277,1017268,7 +72866,Konieg,24392,91564,3 +72867,Antonio,5048,22169,5 +72868,Carole,2029,9893,4 +72869,Richard,333367,54291,3 +72870,Clayton,57201,1240490,25 +72871,Seaman Merlin Queffle,17744,100019,5 +72872,Extra (uncredited),333354,1685665,16 +72873,Registrar,39517,1635547,20 +72874,,268099,1316483,3 +72875,Frank,924,40009,5 +72876,Roadman (uncredited),76203,52885,75 +72877,Frances Girard,100661,104281,1 +72878,Whelan,301804,6066,6 +72879,Meg Hutchins,120615,13296,1 +72880,Doug,245169,51937,4 +72881,Jiromaru (Teen) (voice),315465,68472,9 +72882,Bessie Topp,54406,32990,7 +72883,Elisa Paulo,300487,102548,2 +72884,Tripper,50295,112502,6 +72885,Showgirl,72096,1139758,54 +72886,Doctor Gogol,28261,2094,0 +72887,The Gruffalo (voice),28118,1923,2 +72888,Michel ('Le divorce'),98302,27440,17 +72889,Nina,30349,29930,1 +72890,Odinokov,148622,125855,3 +72891,Kim Chul-Sung,83013,1239247,7 +72892,Phoebe,231082,1072882,8 +72893,Jyri Maras,291907,1362891,2 +72894,Nini,82968,147109,4 +72895,Gepy Fuxas,58189,89193,0 +72896,Tom Hanson,27034,13784,2 +72897,80's Man,103620,1466489,21 +72898,High-School Student,428687,1776838,14 +72899,Prof. Arnold Saknussemm,31397,119374,2 +72900,Jeanne,18897,1957,0 +72901,Commissioner R.G. Sanders,86956,20502,1 +72902,Tetsuo Yada,391004,1186981,4 +72903,Kosta,136743,1153675,0 +72904,Lorenz Hesse,289010,48370,4 +72905,Billy,68750,32205,3 +72906,Sedat,52150,145484,10 +72907,James 'Rennie' Cray,29979,8767,0 +72908,,247447,1891494,2 +72909,Andy,8942,19197,3 +72910,Ordynator Zieliński,319999,136558,9 +72911,Capt. Wong Man Chin / Dog Head,37984,20519,1 +72912,Danny,13162,62064,0 +72913,Boy Soprano Singing 'I Love You Truly',124115,1472507,25 +72914,Kenneth,7288,7420,7 +72915,Rubber Legs' student,49642,35452,3 +72916,Ranger (uncredited),237584,1544814,32 +72917,Paco,4688,130253,24 +72918,Soldier,375366,1588173,41 +72919,Edwin Drood,84718,2125,3 +72920,Helen,150117,209458,12 +72921,Mrs. Frith,88558,940985,8 +72922,Mother Jones,157847,229777,8 +72923,Sherwin Bash,69898,29713,3 +72924,British Couple (as Morwena Banks),14923,59070,75 +72925,Himself,14770,1786140,7 +72926,Janet Grayson,109258,120550,14 +72927,Paul,110909,19578,3 +72928,Rosa Rubinsky,134397,165364,0 +72929,Crazy Cal,15476,82695,12 +72930,Gazotti's Butler,34977,34324,13 +72931,Mustafa,402455,145396,2 +72932,Contessa Orsini,30449,400,2 +72933,Dame Zugabteil,269258,1835018,30 +72934,Mark Rossini,20411,57143,2 +72935,"Blenkinsop, Hammond's Butler",43833,553488,5 +72936,Arthur Black,78094,76186,4 +72937,Primo,438634,1886453,14 +72938,Heini / Hugo,8948,1391206,8 +72939,Nino,44741,131328,2 +72940,,126516,1529917,16 +72941,Young Jane,6557,1254435,11 +72942,Miss Bird,16373,80468,6 +72943,Brie,87428,131722,15 +72944,Emma Stanton,36251,67849,0 +72945,Liz Anne Blazer,13173,56731,8 +72946,Bill Folsom,149600,55152,3 +72947,Miss Daniels,48281,64624,18 +72948,Ronnie,89492,40477,11 +72949,Convict,51601,242238,12 +72950,Cunegonda,74645,367368,1 +72951,Jim Warden,55934,557581,4 +72952,Vicky Lowndes,120109,30210,1 +72953,Jennie Sousa,43365,14683,3 +72954,Bob Froelich,59735,60292,6 +72955,Daughter,94525,1112469,2 +72956,Español en el Mundo,264729,1042765,18 +72957,Adam,377158,136798,6 +72958,Deborah Collins,68123,2630,0 +72959,Prof. Macklin,80368,2387,6 +72960,l'accoudé,60824,24763,6 +72961,Eileen,31165,18345,4 +72962,Gordon,187596,11006,1 +72963,Nellie Cotterill,43369,129515,3 +72964,Maurice,27035,31695,5 +72965,Priest,168259,80619,30 +72966,Lt. Rose,81215,5299,2 +72967,Margaret Chaffee,44693,131282,3 +72968,,325385,1261994,14 +72969,Tattooist,228970,155523,32 +72970,Clarice Johnsen,341957,1470810,7 +72971,,350779,1489232,2 +72972,Esai 'Sy',18015,112346,4 +72973,Figlio di Roccella,103218,78538,7 +72974,"Thylenius, läkare",60899,231921,10 +72975,Padre (uncredited),103938,120537,11 +72976,Tom Sr.,49354,19968,5 +72977,,15156,1618013,7 +72978,Vera Edwards,21544,6613,2 +72979,Suit #1,19995,143206,23 +72980,Бонни,76746,490022,0 +72981,Max,4613,38582,4 +72982,Event Security,332979,1640939,25 +72983,Jessie (voice),77887,3234,4 +72984,Hickam Field Control Officer (uncredited),15807,40459,24 +72985,Faramir,122,1371,14 +72986,Tekla Kronström,41764,71009,19 +72987,Himself,140554,1707829,21 +72988,Batman / Bruce Wayne (voice),411802,75038,1 +72989,Marge Bradley Farrell,43117,47080,1 +72990,Tubby,134480,2437,2 +72991,Rob,301224,1382186,8 +72992,Neighborhood Man,95358,82779,6 +72993,Don Carlton (voice),62211,155649,6 +72994,Phoebe - la bonne fée,104700,28964,2 +72995,Himself,126016,1504297,6 +72996,Durkin,14615,120773,8 +72997,Mrs. Benson,43155,100779,4 +72998,Wendell Hamilton,128841,65833,6 +72999,Himself - Photographer,84185,1114802,0 +73000,Jerzy,178446,1133520,11 +73001,Guest,121462,132440,4 +73002,,104702,11523,1 +73003,Carew,109716,82382,8 +73004,Les Gault,237,3064,2 +73005,Himself,24235,11160,0 +73006,Claire,440597,125025,0 +73007,Jonah,268174,19212,13 +73008,Cowboay Ardy,188161,1092893,26 +73009,Tony Spear,291558,14868,1 +73010,George,360605,111923,3 +73011,Chief Hwang,204553,85008,11 +73012,,43976,1507568,6 +73013,Bank Teller,3937,34186,16 +73014,Ползунов,332512,226709,3 +73015,Dean,384682,1718318,28 +73016,Professor Nolter,30929,9221,0 +73017,Fat Boy,188598,1776760,16 +73018,Zoya,103640,1034471,1 +73019,Sasha,376716,86862,3 +73020,Horatio,261439,3895,4 +73021,,77534,582232,9 +73022,Paul,246415,1439318,5 +73023,Spiritualist,3115,7456,17 +73024,D-6,90395,1019756,3 +73025,Portier,56858,106533,3 +73026,,350779,1489231,3 +73027,Catone,81522,5801,5 +73028,Joe,28682,101600,9 +73029,Helen's Second Admirer at Party,157898,144004,49 +73030,Uncle Henry / Prince of Whales,47508,89717,10 +73031,Helen Craig,23169,17495,6 +73032,Lady in U.S. Embassy,10265,64498,8 +73033,Mary Magdalene (Judean Story),3059,29955,7 +73034,Waiter,26323,120217,14 +73035,Lolita,97767,1006035,7 +73036,Kiran Mathur,325555,35810,2 +73037,Colonel Vickers,44000,176282,10 +73038,Dr. Elliot Fibel,42094,12900,5 +73039,Franny,45556,1127870,12 +73040,Cang,362154,1562567,11 +73041,Cathal Cheunt,15689,78549,2 +73042,"T.R. Paige, Jr.",121003,72059,2 +73043,Luciana,44741,109142,3 +73044,,37502,560065,0 +73045,Beth Morton,159201,110015,3 +73046,Judge Slark,301876,1383381,10 +73047,,45441,554404,3 +73048,Brother In Law,80560,1175671,3 +73049,Myrtle Stace,283424,91580,2 +73050,Dixon,43754,6195,1 +73051,Bradley,2143,349,2 +73052,Thad Goodwin Sr. - 1861,118889,13969,6 +73053,Jethro Stuart,11897,4958,2 +73054,Cathy,39415,1625132,9 +73055,Ashley Allen,344255,104894,1 +73056,Lawyer,286267,1288480,12 +73057,Jenny Wren,27114,13354,1 +73058,Col. Janeway,108345,81180,3 +73059,Telephone Recording (voice),10527,571265,30 +73060,Ba Noi (Grandmother),25784,143432,0 +73061,Special Appearance,76788,1488128,16 +73062,Thug on Boat (uncredited),38654,202402,18 +73063,Ray,173499,1156240,1 +73064,Corbel,62675,26370,11 +73065,German Leader,24559,91971,8 +73066,Jay,50318,4002,6 +73067,MP,4982,17194,26 +73068,Irene Morrison,128215,35341,1 +73069,"Dicky, l'ancien boxeur",84035,24387,2 +73070,Mexican driver,83831,49895,3 +73071,The Englishman,37710,17328,5 +73072,,63215,236632,2 +73073,Daphne Blake / Auntie Mahina,24615,15761,3 +73074,Cop #2,35656,1668397,14 +73075,Ramesses,235260,25095,9 +73076,Jenny,49521,1272969,21 +73077,Mathieu,48601,2970,6 +73078,Himself,333103,1427948,11 +73079,Club Servant,153397,93848,11 +73080,Ophelia,261439,1304969,6 +73081,Helen Burns (uncredited),22744,3635,12 +73082,Fisherman,21070,19647,7 +73083,Giles Barton,31472,101533,0 +73084,General der Infanterie Wilhelm Burgdorf,613,5646,12 +73085,Lupe,345915,929937,15 +73086,Marcus,172008,35015,8 +73087,Stinky,117509,106395,5 +73088,Building Maintenance Guy (uncredited),4982,163418,97 +73089,Nino's Friend,371741,1569920,11 +73090,Juan (uncredited),68721,169265,103 +73091,Cameriere,58611,1606424,17 +73092,JJ,20507,86252,7 +73093,Pierce Peters,317198,19225,3 +73094,Howard Stambler,333371,1230,1 +73095,Rolf Meternagel,201429,23008,2 +73096,,253192,86862,2 +73097,Tanner,26358,15372,8 +73098,Debbie Jones,1164,18050,18 +73099,Babe,117531,1080619,3 +73100,Megan,23367,95362,11 +73101,Frank Jelnick,98094,1392546,10 +73102,Store Clerk (uncredited),11096,2839,9 +73103,Jūzō Okita,61984,70626,4 +73104,Diner Regular,166161,111006,10 +73105,Nero,206514,133499,10 +73106,,278738,1335497,3 +73107,Private Detective,30941,118132,30 +73108,Blake,65055,231547,3 +73109,Ann Winslow,102144,24815,1 +73110,Franco,244316,110476,10 +73111,"Tod (segment 1 ""Werewolf"")",26811,89208,18 +73112,,12650,1124478,4 +73113,Student (uncredited),100275,1108893,17 +73114,as Baron Prášil,41213,93426,0 +73115,Country Girl in 'A Thief's Fate' (uncredited),22943,86185,32 +73116,Todd,117942,1066316,8 +73117,Vidala,12124,71360,1 +73118,Wes,26574,2881,6 +73119,Police Officer,9966,61133,10 +73120,Richard,46931,137600,7 +73121,,183932,589540,11 +73122,Duke Henry,30844,109547,7 +73123,Yak,156335,88979,6 +73124,Marie,13957,9206,4 +73125,"Kloszard, ""tatko"" Hanki",155426,2831,2 +73126,Pablo Cabrillo,25807,16126,12 +73127,Ed Miller,82134,46899,13 +73128,Rodney Scott,375082,1225953,5 +73129,Noah,86820,54041,3 +73130,Kaley Cuoco,402582,53862,26 +73131,Joe,10870,48514,0 +73132,Homeless Woman,387399,1849546,23 +73133,Tommy Dobbs (as Bobby Hyatt),25738,95272,4 +73134,Police Captain,40761,86402,7 +73135,Guiles Reese,339408,1622087,26 +73136,Pilot Jake Holcomb,25373,13726,1 +73137,Mia,62190,69399,3 +73138,Biker #2,47342,138626,14 +73139,Gina Ferrara,28297,41240,3 +73140,Federica,195544,1140127,4 +73141,Glišo,259690,1581231,12 +73142,Hana Matsuzaki,83389,548758,2 +73143,Joe,35197,19875,3 +73144,Herself (archive footage),318224,11164,14 +73145,Caroline,13713,25838,8 +73146,Detenuto,42441,1862643,15 +73147,vypravěč,8128,227399,0 +73148,,85836,110500,6 +73149,"Shoko Matsumoto, Kiichi and Ginko's mother",125257,139366,1 +73150,Fusako Taguchi,50759,213480,5 +73151,Günther,279179,212928,5 +73152,Madeleine,399894,1073049,11 +73153,Narednik,33611,110980,12 +73154,Penalty Box Official (uncredited),336890,1710813,30 +73155,Drag Fan,1481,1844340,31 +73156,Twin #1,313922,1732067,17 +73157,,284189,1016071,8 +73158,Song Jung-Yeon,242458,20737,0 +73159,Emily,14432,1577047,10 +73160,Slicker the Seal (uncredited),44875,1294726,15 +73161,Detective Higgins,156981,187712,6 +73162,Fräulein Petitbon,80220,1345992,4 +73163,Club Goer,306952,1511971,28 +73164,Chris Noonan,51947,4973,7 +73165,Andreas,13305,77432,3 +73166,Kelly,23048,86624,7 +73167,Factory Workman,47404,143544,21 +73168,Himself,157117,1161972,31 +73169,The Boy,37438,929637,5 +73170,Julienne,76059,220304,6 +73171,Bernadette,413992,14892,2 +73172,Patrick,88126,92428,0 +73173,Jazz Sängerin,3291,31513,4 +73174,Barbara Cole,210940,90520,3 +73175,Ann,20312,85929,15 +73176,Yee Tung Choi,41380,1173757,4 +73177,Linda,284279,76333,8 +73178,Elise,119801,117479,10 +73179,Crenshaw,28297,84935,17 +73180,Carlo,40817,65571,0 +73181,Olivia Foxworth,236399,9560,1 +73182,,23289,202573,12 +73183,Shorty,72474,88649,9 +73184,Hodge,38807,124554,10 +73185,Agent Annie Bell,243935,1034197,8 +73186,Vocal Ensemble,33541,1816052,50 +73187,Artie,22020,1207148,3 +73188,Whit Griffin,83965,1218736,3 +73189,Detective Armory,42309,116573,8 +73190,,186606,1168913,11 +73191,Antavleva Bottazzi,64526,41340,1 +73192,Mary,15909,949183,15 +73193,Orfeo Rinalduzzi,38327,87010,1 +73194,Mercy Graves,209112,1156024,11 +73195,Malin Erikson,33613,83899,5 +73196,,322614,1610548,5 +73197,Brutus,1452,41318,11 +73198,Intern,153161,1375218,34 +73199,Passer by,40258,4275,9 +73200,Fourth Alabama Man,72638,124551,37 +73201,Tom,45013,56675,11 +73202,Archivaris,12135,1105151,10 +73203,Husband,2295,60277,19 +73204,SS Man at Press Compound,11248,1521369,15 +73205,,386100,1689738,11 +73206,Sgt. Tamura,43407,72540,1 +73207,Hannah Costello,84352,29703,1 +73208,Dolly Oblonskaya,96724,9015,3 +73209,Rusty,39053,45398,10 +73210,Narrator,26254,192,0 +73211,Ryan Burke,185564,80376,6 +73212,John Wayne,294016,84522,7 +73213,Captain Larkin,108282,2493,12 +73214,Vegeta,126963,122501,23 +73215,Pharaoh (voice),16366,80416,7 +73216,Jerry,79500,58119,3 +73217,Danica,241140,569927,0 +73218,Joseph Kainz,3478,32063,11 +73219,Cab Driver,120497,34294,10 +73220,Taye Diggs,60665,1056282,0 +73221,Gingerbread Man / Muffin Man (voice),48466,12080,4 +73222,Anna Hamon,352025,39195,2 +73223,Lt. Col. Ross,14008,180996,14 +73224,Cookie Monster (voice),331588,7908,17 +73225,Hunt Wynorski,19912,84076,2 +73226,Audrey,229594,33850,3 +73227,Nicole,10268,64548,12 +73228,,404567,29904,7 +73229,Mike Norton,8053,12834,1 +73230,Quince,182129,28235,11 +73231,Pat,122271,176096,3 +73232,Himself,36883,13663,5 +73233,Chester Klazenfrantz,43546,14968,12 +73234,Chus,116312,54149,11 +73235,Magda,246655,1447280,37 +73236,Agent John Bannister,76640,2178,1 +73237,Minister at Wedding,124115,1329836,20 +73238,Raisa,88059,108475,4 +73239,Graciella Suarez,259695,8691,5 +73240,Ada,128657,41163,1 +73241,Nona Alberts,82631,19492,0 +73242,Lisa,46885,158360,4 +73243,Chuck,166161,1169981,6 +73244,John Finlator,301348,72638,8 +73245,Felix De La Pena,18056,5723,0 +73246,Chen Mo,8935,1622,1 +73247,Noble #3,62764,1091867,18 +73248,Twin,186971,1605803,18 +73249,Serveuse restaurant,283726,1033625,11 +73250,Gramps,116463,116433,8 +73251,Naîve Girl #2,26688,96035,30 +73252,Furuya,61984,1096815,13 +73253,Moose Tavola,142012,32747,4 +73254,Bradley 'Brad' Uppercrust / Unemployment Lady / Chuck the Sportscaster (voice),15653,34982,4 +73255,'Muckeye' John,97910,34234,8 +73256,Caleb,188102,1845741,23 +73257,,340119,231994,8 +73258,Bogdan,374475,1020139,9 +73259,Książę maharadża Kaburu,31856,930894,2 +73260,Sylvia Llewelyn Davies,866,204,1 +73261,Portier,319179,222922,9 +73262,Matthew the Waiter,9870,21007,12 +73263,L'infirmier / Le vieux Ronce (voice),137193,21769,5 +73264,Sara,83229,536709,3 +73265,"Lola ""Princess"" Stone",46420,136348,2 +73266,Sonja,5915,46595,10 +73267,,414827,1676373,5 +73268,Teacher #3,1807,106142,15 +73269,,338079,120276,9 +73270,Ginger Malloy,80193,588989,3 +73271,Dr. Screwwala,22429,6217,4 +73272,Jonathan,39982,64933,2 +73273,Lenny,27381,2555,4 +73274,TV Concert Producer,27196,20425,20 +73275,,73835,120633,3 +73276,Stan,17258,11057,12 +73277,Shawna Pierson,39824,154491,5 +73278,James Papadopoulos,173294,964834,4 +73279,Sara,190410,993854,3 +73280,"Harry Phillips / Peabody, the Butler",352719,14029,4 +73281,Flora Bantam - John's housekeeper,30014,34472,5 +73282,Darlin',15213,2395,8 +73283,Vito,59046,34491,1 +73284,Gonzales,70666,932969,36 +73285,,276846,53377,13 +73286,Detective,19846,1876863,12 +73287,Sister Thelma,95136,1833018,14 +73288,Jake,98339,180942,6 +73289,Jaewan,86266,1542416,2 +73290,Brian,196852,1246733,6 +73291,Grace,24874,28779,3 +73292,Jin,8652,63694,1 +73293,Ava,170689,15268,9 +73294,Father Julius Nieuwland,43812,29137,4 +73295,Darcy Wagner,53953,54634,1 +73296,Charrington the Junk Shop Owner,1984,29675,3 +73297,Burns,30929,16085,4 +73298,Stecyk,9787,59254,12 +73299,King of the Wizards - Sorcery,27805,1031102,3 +73300,Buffalo hunter #1,127564,170561,6 +73301,Brian Bankrupt Simmons,120802,77896,14 +73302,News Cameraman,74,167109,20 +73303,,70327,1059874,4 +73304,Prisoner #1,294690,1390551,30 +73305,Cecil,56264,103592,2 +73306,Aivokainen,62897,222324,4 +73307,Elsa,270024,1319927,6 +73308,Elizabeth Curtis,43388,20141,1 +73309,,216046,58989,4 +73310,Himself,12273,19767,11 +73311,Laura Sandner,75969,28111,11 +73312,Maria,64499,239947,5 +73313,Carlos,30127,213619,3 +73314,Esteban (uncredited),37628,1040156,33 +73315,,335897,235807,10 +73316,JonBenet Ramsey Auditionee / Herself,430826,1801196,7 +73317,Lucille,288668,33496,9 +73318,Director of the Institute,63291,560130,6 +73319,Ted Kingsley,221801,1206829,0 +73320,"Нина, внучка Сретенского",83461,99264,2 +73321,Nastenka (voice),81604,1754002,4 +73322,Francine Driver,59006,17832,0 +73323,Kwok Chi Hang,25655,105423,10 +73324,Bruce Berger,28938,5646,7 +73325,Ms. Wicklund,290825,589162,13 +73326,,211561,101549,4 +73327,Joe,291871,1518918,19 +73328,Desk Sergeant,91259,1680822,7 +73329,Actress,19625,528638,9 +73330,Herself,338063,1581551,2 +73331,Henemyer,32029,1680739,12 +73332,Colin,252102,1103727,0 +73333,German Machine Gunner,150712,1422282,45 +73334,Thomas,51141,122599,13 +73335,,361380,1412751,12 +73336,la madre di Lucia,356461,1354594,7 +73337,Ludvik,88953,137072,1 +73338,Cub (voice) (as Terence Hardy),10527,61305,36 +73339,Vanessa,74395,1075817,4 +73340,Night Guard Shooting Tear Gas,26376,385470,66 +73341,Terri,51442,178446,8 +73342,Becky,18475,230176,4 +73343,Eric,301368,115125,1 +73344,François Toulour,163,1925,16 +73345,,59040,119370,36 +73346,Photographer,256962,1819149,78 +73347,Clinic Receptionist,182499,977522,10 +73348,The Leningrad Cowboys,11475,1076419,11 +73349,Shaggy / Mirror Monster,13350,16418,1 +73350,Belgian UN Soldier,16374,80479,13 +73351,Stranger,142712,4886,11 +73352,Georgina,284564,1356752,20 +73353,Rance G.'s Hanger On,4932,120037,11 +73354,Suki Meadows,51828,73462,10 +73355,Ramazan,31405,556047,1 +73356,Julia's mother,32559,1138249,7 +73357,Himself,296194,10872,8 +73358,Collin,13022,80264,9 +73359,Phyllis Brunner,38962,36851,1 +73360,Penny Marshall,25890,14911,4 +73361,Old Lady,1595,8535,14 +73362,Bashitsev,64268,93225,1 +73363,State Trooper,268920,1718445,100 +73364,Vlad Stepanov,106546,146402,1 +73365,Lady Lucy Mayley,49843,142937,5 +73366,Becky Metcalf,10407,65002,2 +73367,Michael O'Flaherty 'Speed' McBride,255388,3155,0 +73368,George Peters,37672,21278,0 +73369,Dennis,81010,21029,3 +73370,Vietcong Sniper,227156,1412944,21 +73371,Stephen Fry,10748,11275,22 +73372,Welfare Agent,47410,138881,12 +73373,Lenny,43656,15028,4 +73374,Mädchen,308174,1888492,27 +73375,Bride,62630,574378,13 +73376,Rynn Jacobs,19971,1038,0 +73377,Young Cavendish,57201,128560,34 +73378,Pinbacker,1272,2983,8 +73379,The Little Lady's Friend / In Alley,42553,128164,6 +73380,Kong,69727,70690,2 +73381,,413806,86663,5 +73382,Emanuel,58166,1357877,9 +73383,One Legged Dancing Girl,316154,1842089,14 +73384,,293516,65571,1 +73385,Marko Sekulović,168541,9857,1 +73386,Laura Coe,42204,47457,6 +73387,Mrs McLeod,16058,79106,8 +73388,Osman-Agha / Simon,103590,560142,2 +73389,Weed Customer,347630,1695662,36 +73390,Organizer,13979,224168,3 +73391,Peter Howard,69898,150999,10 +73392,Neighbor,129359,563837,13 +73393,Dan,4441,1810,1 +73394,Australian P.O.W,227306,1394463,63 +73395,Anna,10274,52929,4 +73396,Sy,21753,83405,3 +73397,Ear Box,59744,105184,12 +73398,Mr. Pinky,2976,26042,14 +73399,Preacher Pope,202941,6462,7 +73400,Alex,393659,52718,3 +73401,Father,220287,1210545,1 +73402,Elder,227156,129333,16 +73403,Himself,84318,1084971,3 +73404,Аманда,63449,1853255,9 +73405,Fils Pauvre,469172,1862609,18 +73406,Administrator,45610,13092,30 +73407,Karan,210068,85891,1 +73408,3rd Officer Jim Hardy,29805,199077,16 +73409,Alien Officer 4,280617,1851689,23 +73410,White House Reporter #2,257344,53684,13 +73411,Kwang-Sik,116488,63446,4 +73412,Stan,82134,219485,3 +73413,Diva #1,38322,1869036,30 +73414,Suzy,5638,81567,31 +73415,Jakob Simon,215740,1200390,0 +73416,Filthy Harry,156268,3490,2 +73417,Sergeant Lopez,128612,33712,5 +73418,1st Agent,4893,30142,7 +73419,Bar Pretty Girl,214129,1384210,22 +73420,Cory,176124,108532,0 +73421,Lady Patricia Brandon,189621,1126366,3 +73422,Phil Spector,173153,1158,1 +73423,Jack,413337,1675346,5 +73424,Marion St. Claire,10521,11850,5 +73425,Joan Carlyle,13374,3234,1 +73426,Sean Verghese,69346,130680,4 +73427,Tim Brooks,76229,38232,11 +73428,Fast Freddie,4551,1571036,15 +73429,Young man,76011,933830,6 +73430,Lord Haslewood,30640,3675,3 +73431,Daniel,58133,5442,0 +73432,Wade Carlton,42448,50971,9 +73433,Jerry Halshford,322518,10825,2 +73434,Gerald Waverly,45335,5182,2 +73435,Emily,16151,79702,14 +73436,John Gage,38808,14001,2 +73437,Big Joe,91259,103711,4 +73438,Mr. Allen,177047,31028,7 +73439,,35572,1662169,2 +73440,Waitress,32657,92078,78 +73441,Solange Birot,44256,584302,8 +73442,Col. Eustace,104485,997884,10 +73443,"""El Indio"" Fernández",261101,76857,4 +73444,Mr. Mountain,106136,6804,1 +73445,Himself,133704,15757,5 +73446,Amazon Warrior (uncredited),297762,1702788,63 +73447,Jeremiah Judkins,148326,29536,0 +73448,,392818,78021,6 +73449,Warren Singleton,2687,537,4 +73450,Tellioğulları'ndan Adile,38794,97274,3 +73451,Beth Cheever,99767,1021686,4 +73452,Fan,76101,585675,7 +73453,Moony,13058,1008141,6 +73454,Sgt. Stone,14869,18269,20 +73455,Bethesda,118737,1088683,1 +73456,Marijana,259728,569919,18 +73457,Bill Perkins,66881,1280040,17 +73458,Giuseppe Lo Turco,56068,94418,1 +73459,Billy / Otis,166161,1169976,3 +73460,Father Belacchi,57993,21510,3 +73461,Norah Lorkowski,13090,5081,1 +73462,,80660,81596,2 +73463,polizziotto Franco,131507,127040,2 +73464,,33201,31011,5 +73465,Phoebe Hilldale,14862,33296,6 +73466,Gomez,24420,17402,5 +73467,,47559,1349977,4 +73468,Orlando,16186,50266,5 +73469,Flying Chimpanze (as Chui Siu Keung),25645,70674,5 +73470,Katharina Remminger,54548,11613,0 +73471,Skellig,17046,3129,0 +73472,Anatole,33436,37131,1 +73473,Pvt Lightower,51426,1037002,12 +73474,Kisko,228558,1125601,4 +73475,Signora Calabrese,374416,1607382,14 +73476,Zeke Baylor,11887,77196,7 +73477,Madeleine,330275,19646,2 +73478,Jones,14874,109,0 +73479,Shizuka,265712,9715,5 +73480,Kir,51285,143737,3 +73481,Yaroslav Stepanovich,148622,28769,5 +73482,,235092,14263,11 +73483,Billy,43754,110056,9 +73484,(uncredited),19740,27798,11 +73485,Politician,43806,589217,35 +73486,Eve Peabody,31993,30155,0 +73487,"Hildur ""Husbocken"" Bock",41493,11917,2 +73488,Markus,177697,1160209,6 +73489,Constable Greer,425774,1707943,49 +73490,Hilal,128856,1089461,3 +73491,Minor Role (uncredited),105548,1741857,20 +73492,Marie Krøyer,133783,90514,0 +73493,The Artist,32609,96552,6 +73494,Eric Matthews,214,2680,6 +73495,Mr. Sharon,33345,782,3 +73496,Alison Evans,49950,3713,13 +73497,Mirza,102384,13992,2 +73498,Gideon,354133,1496067,7 +73499,Guglielmo Aniello,132122,31989,0 +73500,Narayana Murthi,125835,565890,5 +73501,,85317,143623,6 +73502,Ali,259830,1316047,10 +73503,Philippe Crémèche,255913,1404603,18 +73504,Dr. Lasse-Braun,102841,13027,16 +73505,Washington,344906,61856,6 +73506,Agent Johnson,211387,1195388,2 +73507,Chauffeur,44875,98571,7 +73508,Le coureur,41277,1575507,24 +73509,Clémence,64481,19888,6 +73510,Sister Joseph,286595,1352761,7 +73511,Rusher of Din - Man at Amusement Park (as Charles Dorsett),36751,116121,20 +73512,American Ambassador,104211,17756,10 +73513,Ronnie Hortense,336890,8335,6 +73514,,414771,584187,3 +73515,Medio,96106,68332,26 +73516,Unisol (uncredited),122857,565508,18 +73517,Once-ler (voice),73723,27105,3 +73518,Bailiff,43821,88779,41 +73519,Cross-Eyed Lackey (uncredited),51759,33949,11 +73520,,662,97083,13 +73521,Prisoner of War,256962,1789154,55 +73522,Staatsanwalt,124013,44234,6 +73523,Prisoner,26376,1422917,48 +73524,Rivka,242076,520615,1 +73525,Little Assistance,131799,95129,14 +73526,Ronny,100275,230,4 +73527,Saksofonist,79234,994432,7 +73528,Show Girl,413232,1039431,47 +73529,Charlotte McQueen,95516,44079,2 +73530,Yasira,1164,1678291,35 +73531,Dédé,60824,35911,1 +73532,Famulus,76757,1216606,6 +73533,Secret service agent #1,394645,1611250,4 +73534,,353641,1260687,4 +73535,Sacrificial Girl,117942,1678887,19 +73536,Jim Forster,46586,89524,0 +73537,Lundström,116019,1062705,3 +73538,Commander Swift,66741,70556,12 +73539,Paul,72898,1352,5 +73540,Mark,241254,112013,5 +73541,Burt Coombes Jr.,42448,44301,11 +73542,Bartender,244316,62869,17 +73543,Le Sage dans la montagne (voice),21348,87425,4 +73544,William Jensen,9664,58428,3 +73545,Michelle,241258,992078,8 +73546,Michael,29345,103584,7 +73547,Chief of Staff,30141,1981,8 +73548,Cindy Faithful,30995,1207029,7 +73549,Ben Bart,239566,707,2 +73550,Himself,18893,92073,6 +73551,Kindergärtnerin,14804,52390,12 +73552,"Jimmy, USA druglord",127329,1344321,13 +73553,,285135,37979,6 +73554,Stephanie,80468,11111,5 +73555,Paramedic #1 (voice),9297,42288,7 +73556,Blondie,107430,76465,15 +73557,Stepan Vitalyevich,83475,929635,10 +73558,Keshya,94935,587090,2 +73559,Marcia West,106635,8725,2 +73560,Nipote di Mamie,10986,1402878,12 +73561,Tamara,115929,1064510,12 +73562,Himself,84318,126297,4 +73563,Cab Driver,244534,1445607,7 +73564,Bilal,376047,1427892,4 +73565,Willowy Being,327389,32204,4 +73566,Lee Geum-ja,4550,25001,1 +73567,,15776,1445191,4 +73568,Bessie Seagrave,171594,25173,4 +73569,General Blue,39148,115790,0 +73570,Xian,19545,552169,30 +73571,Ami,13596,51988,5 +73572,Eins,178446,439032,38 +73573,Doña Puri's Niece,284305,588183,8 +73574,Nightclub Patron,120109,135827,14 +73575,Sanja,118658,1334945,9 +73576,Kissaten Master,17895,82971,9 +73577,Arrowroot,201485,1582,9 +73578,Jorge Basanez,352498,210016,7 +73579,,2061,578957,16 +73580,,36236,1086959,18 +73581,Susan Manning,148451,26662,0 +73582,Arlondo,35016,113590,3 +73583,Adjutant (as William Davidson),94811,95729,8 +73584,Simon,142507,1117469,1 +73585,Sniper,173456,1004150,16 +73586,Wiley,64936,1117285,4 +73587,Theodore (voice),258509,49915,8 +73588,Pregnant Woman,9812,106728,17 +73589,Rose Lacey,167073,43135,5 +73590,Good Morning Baltimore Hostess,2976,1212660,31 +73591,Elza,259728,1301977,17 +73592,Catherine Kennedy,21893,65535,4 +73593,Serena,352164,1242776,4 +73594,Lori Milligan,19912,94423,1 +73595,Dunbar Reed,14047,1224598,13 +73596,Lieut. Fraser,80775,16420,5 +73597,Specialty Dancer,14589,1468184,61 +73598,Mr. Thompson,44287,59801,7 +73599,Chris Hall,359412,142192,18 +73600,Doctor,143946,1197735,23 +73601,Chelsea,227200,582121,3 +73602,Liberty Bartender,43821,121250,44 +73603,Fireman,53417,21302,8 +73604,Himself,291155,567557,1 +73605,Antoinette,47143,77310,3 +73606,Curly Flagg,111582,2433,1 +73607,Munitions Man (uncredited),41468,93628,15 +73608,Girl with Zolotov,61109,148532,20 +73609,Mère anglaise,382591,1795293,32 +73610,Narrator,110491,1049458,1 +73611,segretaria,98025,46577,15 +73612,Babe,358076,159695,10 +73613,Erik Stifler,8277,26973,0 +73614,Paul,139463,125660,0 +73615,Raoul Fleminckx,298396,1006181,1 +73616,Oksana,405473,1265783,17 +73617,Jorge Ramirez,17003,1005788,1 +73618,Dr. Knudson,43759,17756,6 +73619,Anders / Steven / Kenneth,256593,106654,1 +73620,Beth Patterson,16080,5503,5 +73621,Antonio,61314,129059,0 +73622,Ex Moglie,297288,1330093,8 +73623,Sadie Finney,358076,45863,7 +73624,Ray Roundtree,120478,1072875,6 +73625,Mrs. Solness,268536,14415,2 +73626,Smoke - Wilson's Horse (uncredited),134238,1161102,6 +73627,barbiere,301272,120646,6 +73628,Nun,16135,79521,26 +73629,The Young Woman,45807,1187918,3 +73630,Treasury Agent,273481,1494546,29 +73631,Tabby,21413,20189,2 +73632,John Bradley,89720,1379206,3 +73633,Demetrius,9703,36669,8 +73634,Lieutnant Colonel Gryaznov,31442,1190992,2 +73635,Karate Biju,398786,1470729,8 +73636,Tom Purcell,425774,1230260,41 +73637,Dr. Andre Tessier,42825,2494,5 +73638,Elliot Fink,68684,101522,5 +73639,Miss Haddock,257454,79641,13 +73640,Wataru Mitsuya,17566,111690,0 +73641,Officer #5,34672,126222,13 +73642,Collins - Intern,153163,103789,19 +73643,Norm,84105,1593951,24 +73644,Taeko Satake,55197,108025,1 +73645,Himself - EIS Videographer,84185,1074666,10 +73646,Detective at Dock (uncredited),28668,117677,18 +73647,,83456,93540,13 +73648,City Cop,333385,205521,23 +73649,William Holloway,4809,27747,6 +73650,Young Imogen,378441,1362639,20 +73651,Vernon Toddman,9664,58435,14 +73652,Vollstrecker,9803,49158,27 +73653,Timmy,35320,144852,19 +73654,Smoking Man (uncredited),2288,18274,12 +73655,Alphonse Chandonnet,16147,79617,13 +73656,1950s Policeman,293863,1457250,15 +73657,Bud Sabin,207178,14970,13 +73658,Seo Dae-Ryung,64882,87090,2 +73659,Ronnie Dobbs / Pootie T / Chow Chow,14923,212,0 +73660,Supervisor,134201,1637067,19 +73661,Sarah,9568,1546547,8 +73662,,84425,229,6 +73663,Geeky Neighbor,10521,1572042,24 +73664,"""Majami""",382155,1636671,6 +73665,Clochard,121539,1540858,6 +73666,Général al-Khouly,43434,1117771,10 +73667,Striking Actor,15092,42328,51 +73668,,121530,1195791,3 +73669,Creature Voices / Exterminator #2,2742,1228015,12 +73670,Burisov,96724,513677,25 +73671,Aleksei Korzak,63538,83544,0 +73672,Chloe,18548,1227660,5 +73673,C.C. Drood,78691,3999,0 +73674,Myra Kieslowski,86838,1170658,10 +73675,Justine Mahler-Rosé,83209,36486,6 +73676,Minor Role,228647,1469573,43 +73677,Claire,89560,59826,0 +73678,Větrník,84030,1579661,7 +73679,Miss Hannaberry,99909,9072,16 +73680,Stig,38913,4467,2 +73681,Clarence Fritton,11402,20394,1 +73682,Richard,58467,35769,7 +73683,Piotrus 'Pio',112531,1055096,1 +73684,Veda Pierce,202241,1188567,7 +73685,Blofeld's Chief Analyst,206647,1599280,76 +73686,Social Worker,336845,1118342,8 +73687,Demetrius,334527,1865498,14 +73688,,38154,142676,21 +73689,State trooper,97614,207818,3 +73690,Det. Lackson,186869,180746,11 +73691,Contessa,59230,103608,6 +73692,Punk District Singer,47342,138623,11 +73693,Oume,68715,1510947,3 +73694,Ira,148347,1878197,6 +73695,Stamp Collector,201749,28479,5 +73696,Lehmann,3962,6086,6 +73697,Eric,17956,54462,7 +73698,Clinic Doctor,387957,9596,7 +73699,Henrietta Stiles,42532,2926,3 +73700,Mrs. Khanna (Rahul's mother),11854,146971,6 +73701,Carmen,33005,54679,6 +73702,Sharon,85196,1266877,2 +73703,Nino,156547,128117,3 +73704,Erkki,58391,141980,0 +73705,Stormtrooper,330459,1572106,66 +73706,Mrs. Donnely,55720,9279,7 +73707,Julian,93862,26690,1 +73708,Music Video Dancer,4551,1680761,53 +73709,Handmaiden,76757,1394346,43 +73710,Davis,31042,118302,4 +73711,Simone Clouseau,936,14262,3 +73712,Bob LaPorte,26036,85944,6 +73713,Hugh Renwick,27970,99326,6 +73714,,398452,1005695,7 +73715,Yorktown Red Shirt,188927,1897706,38 +73716,Wes,98115,1090132,3 +73717,Eric Blake,121848,118022,2 +73718,as Cyrano z Bergeracu,41213,134721,3 +73719,Boy Playing in Park (uncredited),76203,1438679,88 +73720,Flight Lt. Terrence 'Terry' Forbes,55236,8724,0 +73721,Estela Monteiro,37992,119300,3 +73722,Alexandre Veber,72822,16353,4 +73723,Kelly Ernswiler (as Shia La Beouf),21413,10959,0 +73724,Desterne,181456,34588,21 +73725,Hiroko's Grandmother,18722,551830,16 +73726,Yuri Shimizu,168295,139366,2 +73727,Motorcycle Officer,134201,81687,12 +73728,Waiter (uncredited),31773,1420880,61 +73729,Jean,46326,11544,0 +73730,Eleanor,10740,7570,3 +73731,Pirate / Indian,273106,1519569,24 +73732,Cecile,119801,1071084,7 +73733,Mrs. Crawford,67794,87415,3 +73734,Bar Patron,16083,79236,23 +73735,,229328,8947,7 +73736,,71725,1136712,14 +73737,Lt. Sharon 'Boomer' Valerii,105077,77209,3 +73738,Father O'Toole,48846,1014936,8 +73739,John O'Brien,140648,175213,10 +73740,Kira,25646,6172,1 +73741,Porteiro da Escola,34588,1051795,24 +73742,Ahmed,336811,145311,10 +73743,Old Man in the Slums,27276,551834,25 +73744,Commissioner,39979,919804,9 +73745,Self,75577,37317,0 +73746,Ted Munter,81120,1446483,13 +73747,Brighton,62764,78729,3 +73748,Stéphanie,72822,550018,3 +73749,Vanechka,99738,1153526,0 +73750,Double Hape Kerkeling,27637,1724686,16 +73751,Carmen,82745,278354,0 +73752,Leo Rose,94468,1196028,9 +73753,Theo Nelson,55846,570296,7 +73754,Art Sneperger,51209,142294,9 +73755,Knut Fraenkel,72785,1671,1 +73756,Meister,1661,11260,8 +73757,Alicja's mother,32559,566323,4 +73758,Nestor,7343,87340,5 +73759,Tamara Zaleshoff,34944,94850,1 +73760,Nick Charles,14589,32428,0 +73761,Majid,445,2417,5 +73762,Marie,58928,122571,6 +73763,Lisa,408272,5588,2 +73764,Severine,128270,1149880,33 +73765,Ferry Captain,45398,33090,16 +73766,Alice,300090,483255,5 +73767,Zigeunermädchen 1,52475,1286840,31 +73768,Man in Porno Theater,49712,1885603,26 +73769,LN-18,90395,41516,1 +73770,Anna Nakashi,45431,16578,8 +73771,Owen,43656,3201,9 +73772,,31011,228719,19 +73773,Karl Haslinger,280004,1336781,21 +73774,Commune's Central Committee member,151068,1870853,5 +73775,Peter Kerns,44943,83968,4 +73776,Glamorous Guide,343173,1647128,14 +73777,Lucero,99004,33471,1 +73778,Pet Store Employee,45132,1817,10 +73779,Esther,45244,550854,1 +73780,Dealer,68387,158489,22 +73781,Ellie,26688,20848,0 +73782,Jack Lawson,52109,5950,3 +73783,Virginia 'Ginny' Curtayne,36634,115990,2 +73784,Lynn,339145,1429053,7 +73785,Karen,86643,1554221,9 +73786,Ted,417870,1375358,11 +73787,Christie,100063,62036,1 +73788,Policeman,28421,1531759,34 +73789,Joan,236324,1271401,4 +73790,Sheng Yung,88922,26784,0 +73791,Adolph Rupp,9918,10127,2 +73792,Joan Maxwell,50506,117085,9 +73793,Nick Chasen,32790,1226195,14 +73794,,79025,224208,3 +73795,Susan Daniels,118283,2769,1 +73796,Ozawa Keiko,17895,82967,2 +73797,Sygeplejerske,15830,135945,6 +73798,Nurse Atsuko Sawada,12720,145928,7 +73799,Man at Station,56154,111287,25 +73800,Buckley Salmon,7980,1128255,8 +73801,Dania,340275,219654,10 +73802,Himself,27637,1250569,29 +73803,Patrizia,59156,137353,3 +73804,,19552,1118628,3 +73805,Anthea,58411,227794,3 +73806,Naomi's Dad,306952,1511960,14 +73807,Tom Fisher,41131,125557,7 +73808,Bertha-Marie,94803,48057,2 +73809,Enid,24341,91536,6 +73810,Village Idiot,10915,31820,13 +73811,One of the Oreos,19610,84917,5 +73812,Madea / Brian / Joe,16186,80602,2 +73813,Alex,323929,1288787,1 +73814,,47211,148307,7 +73815,Head of Security,58244,129419,43 +73816,Yoshie Kanzaki,131739,116783,9 +73817,Clayton Beresford Sr.,13483,8213,6 +73818,Bernie,406052,1676157,15 +73819,Allan Felix,11610,1243,0 +73820,Georges,119801,4121,6 +73821,Cutler,4413,5298,26 +73822,Mikael Bro,39284,122600,3 +73823,Brigadista,2143,132913,35 +73824,Himself,180691,7487,1 +73825,Lindsay Graber,447758,86477,9 +73826,Jamie,359412,1753460,21 +73827,The Manager,186971,587175,13 +73828,Mackenzie,300654,989325,1 +73829,MP Corporal (uncredited),103938,117046,13 +73830,Aunt Julie,53798,30185,4 +73831,Woman Victim,52021,111919,10 +73832,Clotilde de Vaudremont,63681,35884,4 +73833,,109477,1092534,2 +73834,Karas,9389,1059105,6 +73835,,53693,1443154,17 +73836,Detective John Haynes,293625,1576528,3 +73837,Ryan,60965,84344,0 +73838,Chepe,354979,52946,6 +73839,Lieutenant Harry Brown,30921,6576,3 +73840,Bartender,331161,1459161,20 +73841,Publisher,67272,548390,2 +73842,Herself,27637,1724700,45 +73843,Roger,214086,2157,2 +73844,Athena / Puffy (voice),287233,107791,1 +73845,Sho Murakami,395992,9195,3 +73846,Omar's Boss,187028,1728945,9 +73847,un gendarme,76871,580705,9 +73848,Doctor Porter,28510,27323,7 +73849,Councilman,1271,218899,26 +73850,,205864,1094734,2 +73851,Used Car Salesman,32044,52616,19 +73852,Billy Crystal,369524,7904,11 +73853,Poolside Girl,246133,1457893,18 +73854,Capt. Harold Brickman,107104,1041316,1 +73855,Mr. Perryman,236324,84314,7 +73856,Ece,336804,1481834,3 +73857,Rachel Meyerowitz,98349,1910,5 +73858,Ursula Georgi,91181,13577,2 +73859,Sachie,11838,552506,13 +73860,Young Patches O'Houlihan,9472,5587,13 +73861,Himself,63144,1624631,29 +73862,Vito,122677,102958,12 +73863,Beth Dixon,62033,10774,1 +73864,Ricky,22136,228885,3 +73865,Ashade,4913,17458,0 +73866,Charlie Jessup,16373,29600,10 +73867,Farmer,18569,34209,28 +73868,Hotel manager at the Verdun,40985,89999,6 +73869,Deb Clarington,343284,59257,1 +73870,Doctor Shaw,13390,7166,4 +73871,Luis,97593,152704,4 +73872,Magnus,122857,78552,3 +73873,Berisha,172475,3160,2 +73874,Soldier #3,57201,1094319,18 +73875,Secretary O'Brien,293167,1303090,20 +73876,Airport Clerk,294652,1883846,23 +73877,Obra Eaker,25473,44042,8 +73878,Man with Wikus' Coordinates (uncredited),17654,82194,41 +73879,Saloon hostess fighting Whitey,55604,102005,59 +73880,Nicky Mackee,26142,13389,6 +73881,Detective Anderson,18530,87575,17 +73882,Dr. Joyce Burney,72140,204920,11 +73883,Girl in Havelberg,114790,14168,5 +73884,Morse Diggs,339403,1908262,27 +73885,Betancourt,2503,124686,19 +73886,Joe,17386,99854,8 +73887,Tom Ricks,82501,569,0 +73888,Kitty Brown,95037,15008,1 +73889,Policeman,9252,26563,7 +73890,Angela,27079,96900,1 +73891,Astrid,65874,1053109,2 +73892,Richard Chance,9846,52267,0 +73893,Claire Adams,334890,1695138,1 +73894,Mabel's Father,141868,148021,3 +73895,sikalanhoitaja,442752,1761827,14 +73896,Jimmy,52452,47096,5 +73897,Princess Tanis,47065,114602,5 +73898,Sheriff Ray Owens,76640,1100,0 +73899,,124075,1434107,5 +73900,proteina,182415,1853084,7 +73901,Job Applicant,78177,583273,12 +73902,Isaac Penn,137321,227,3 +73903,Van Boost,12449,41206,12 +73904,Denver Courier Editor (uncredited),31773,89662,30 +73905,Oncle Etienne,32934,1808891,5 +73906,Fred,1640,18298,23 +73907,Claire the Bride,42599,30427,8 +73908,Julio,85543,932375,0 +73909,Elevator Boy,128669,1263061,16 +73910,Michael Taylor,257345,934173,2 +73911,Arielle Smiles,403431,582722,12 +73912,Annabelle (voice: Japanese version),124597,1244335,24 +73913,Joe,105981,8496,3 +73914,Stunt Police,25941,1835525,29 +73915,Waitress,20028,85492,8 +73916,Nice Ronnie,180759,1312123,4 +73917,Sarah,327528,128150,9 +73918,Charioteer of the Priest of Bel (uncredited),3059,1181318,73 +73919,Bar-owner,104277,1087690,6 +73920,Jovem 3 do 'Eu Nunca',296288,1799342,26 +73921,Mark Hardigan,13788,55086,3 +73922,Sheila Lane,43855,1031275,8 +73923,Ye Qinghua,60568,1136354,1 +73924,Narrator (voice),83491,929660,11 +73925,Willa,197611,136913,5 +73926,Mr. Håkonsen,71805,71186,3 +73927,Marty Callbert,73313,34819,11 +73928,Ray,146380,1124103,6 +73929,Christian Schwindt,379335,1513874,3 +73930,Tommy,24632,1065798,8 +73931,Harry Brooks,227306,1174927,16 +73932,,63859,12659,6 +73933,Charlie,46883,545604,1 +73934,Faron Crush,21627,39782,2 +73935,Bernie Hirsh,370234,1297171,8 +73936,Chief of Detectives,64605,133738,9 +73937,Gretchen,74911,94399,4 +73938,Charles,354979,1835249,40 +73939,Chris Cellano,9950,59281,16 +73940,Katie Cameron,44945,1583618,7 +73941,Market security,30619,106599,8 +73942,Muen Khun,39907,1649570,17 +73943,Luke,387558,1590838,1 +73944,Doctor,102362,1272977,20 +73945,Christian's Father,16032,1087001,8 +73946,Mike Mills,239018,35091,1 +73947,Clint Collins,283445,109174,4 +73948,"Pete Holt (Sheriff, Cheyenne, Wyoming)",47914,109996,10 +73949,Shag Williams,70046,56930,1 +73950,Supt. Mifsud,31128,1611435,6 +73951,Alexa,44945,1583620,13 +73952,Herself,394668,105788,7 +73953,Whisler Girl,266285,1459358,21 +73954,Joseph Kemp,31713,46612,3 +73955,Mann an der Bushaltestelle,4291,36075,5 +73956,Granny / Ghost Trick-or-Treater (voice) (as Joanie Gerber),234377,90301,2 +73957,Mel (voice),328111,452205,5 +73958,Sam,254188,986808,6 +73959,Steve,124501,935234,6 +73960,Young Man at The Boiler,288521,14966,14 +73961,,77534,582233,10 +73962,Yavuz,41187,1088662,4 +73963,Lucy,10915,4274,1 +73964,Himself,23128,110913,0 +73965,Robby,69217,158095,3 +73966,Anna,230211,104632,2 +73967,Dr. Laffer,277710,83721,16 +73968,Fergus Markham,30496,97430,7 +73969,Policeman Platt,3937,1016646,18 +73970,Chet,251227,1286537,19 +73971,Emilio,1164,263,40 +73972,Nosey,153162,33034,17 +73973,First Minister,153272,13843,7 +73974,Bhoma Da,34082,100944,5 +73975,James Blackton,74911,97007,7 +73976,Eccu Widing,87992,1377975,3 +73977,Vishnu's wife,20968,86890,7 +73978,Johannesburg Elevator Passenger,99861,1760871,44 +73979,Robbie,434873,1098664,7 +73980,Victor Emmanuel,341886,1898,4 +73981,Malu,134474,584709,5 +73982,Loretta Figgis,259695,18050,1 +73983,Gardner,118121,186061,5 +73984,News Man (uncredited),345922,1705792,21 +73985,Janet Tokada,435,3134,8 +73986,Jane - Tutor,5123,1558227,17 +73987,Smithers,116554,35128,14 +73988,Otto Kuhn,42298,1195214,11 +73989,Carla's Family #5,2143,132901,23 +73990,,173874,113,0 +73991,Tasha,257345,1470474,12 +73992,Dries,14019,76282,0 +73993,Kate Anderson,53459,23775,1 +73994,Himself,394668,135855,11 +73995,No Obama Man,85350,1128378,26 +73996,Drummer (uncredited),16442,30240,81 +73997,Widow,10604,18847,2 +73998,,33009,60716,10 +73999,,28366,78429,10 +74000,Cube,440508,1846437,6 +74001,Patrick,397837,1442955,13 +74002,Phillip's Girl,92496,1577600,9 +74003,Diner,330947,1650322,50 +74004,Zani,122709,117419,1 +74005,Nanny,59191,5823,0 +74006,Little Christmas Girl,239566,1457288,59 +74007,Father,289712,104617,16 +74008,"Mr. Becker, Theatrical Backer",267483,1315173,13 +74009,Rotschopf,52475,36906,30 +74010,Penzi,193756,944326,34 +74011,Thug's Girlfriend,293167,1550779,31 +74012,Parker,12683,25527,8 +74013,,92060,1792062,8 +74014,Pebbles Flintstone (voice),48874,6035,3 +74015,Dog,310133,1841008,14 +74016,Madame Martin,41277,1575517,38 +74017,Louella Parsons,50008,4154,4 +74018,The Hon. Galahad Threepwood,144183,29859,2 +74019,Mayor McCloud,340275,61962,17 +74020,Gérard Vasseur,10930,6015,3 +74021,Raj ‘Bali’ Yadav,35907,85456,3 +74022,Ellen,36968,116571,6 +74023,Luisa Ginglebuscher,47758,14869,0 +74024,Lucille,27196,1855530,19 +74025,Young Lady Singer,245700,1798353,36 +74026,Mona,34806,113224,10 +74027,Ephor #1,1271,306574,20 +74028,,170998,85047,5 +74029,Fred,24963,29774,15 +74030,l'agent immobilier,78789,35964,7 +74031,Gaston,182545,1165642,4 +74032,Lauren Mirkheim,54022,2165,3 +74033,Hippocrates,43252,11169,9 +74034,Pugsley Addams Sr/Dr. Addams,107596,1244262,8 +74035,Grasping,31473,2372,13 +74036,Himself,33130,88791,0 +74037,Dr. Tang Chin-Chau,49514,66717,0 +74038,Liliane,259,3591,3 +74039,Debbie,20196,936613,1 +74040,Iris (voice),88557,934292,7 +74041,Johns Hopkins technician,18569,115366,25 +74042,Ally Campbell,345922,1540602,9 +74043,Joe,157354,1286552,10 +74044,Hank Beesley,159469,4073,3 +74045,Evtesam,74666,1703702,9 +74046,Nathan Vanderpark,10710,1213527,8 +74047,Mãe,361146,1513896,2 +74048,Jolli,277778,1334133,2 +74049,Idun,336882,63769,3 +74050,Dermot,212756,18992,1 +74051,Cristina (episodio Il Cavalluccio Svedese),68882,1627704,14 +74052,Welcome to the 60's Dancer,2976,1752801,146 +74053,Police Dispatcher,38269,6682,19 +74054,Felix Davison,83899,149966,1 +74055,Bailey,74753,189367,6 +74056,Linda,150117,39187,6 +74057,The Man,27470,291,5 +74058,Rocket Ride Operator,5172,1402887,55 +74059,Assistant,174720,239720,6 +74060,Julie Christensen,9286,58370,10 +74061,Bernie,382591,90681,2 +74062,The Man,84228,10182,4 +74063,Sheik Amar,9543,658,2 +74064,Maiden #2 (voice),809,1784315,22 +74065,Senator Giuseppe Brembani,139563,53461,3 +74066,Ying,88811,1675551,9 +74067,Mr. Dasavathaaram,34763,113810,3 +74068,Samara,36737,87460,4 +74069,Armand,94568,178402,6 +74070,Irv,345922,1392599,12 +74071,,79781,112566,0 +74072,,186971,37651,24 +74073,Dee Dee,69668,973135,6 +74074,девушка Таня на улице,20871,86678,13 +74075,SP Mark Law Pui Keung,19528,65197,21 +74076,Ja'Far,18098,20070,10 +74077,Teddy,175339,1406819,5 +74078,Devereaux,197696,16927,0 +74079,Athena,11633,1680,4 +74080,Zoya,77564,32564,0 +74081,Ronnie's Friend,105902,1244695,13 +74082,Jairulle,98203,1198923,12 +74083,Abbott,19794,85177,9 +74084,Deborah,17457,134855,16 +74085,Blacksmith Wei Jia-Jie,40081,240155,2 +74086,Adonis Johnson,312221,135651,0 +74087,Henryk Maria,93676,53573,10 +74088,Everett's Dream Teacher,251419,1096097,7 +74089,,205349,80230,17 +74090,Mládenec ruzolící dívky,18352,1537585,19 +74091,Mikey - Corny Collins Council,2976,38945,50 +74092,Sue Claussen,21583,4491,0 +74093,Mike,232462,2464,2 +74094,Jack Andrews,6933,12833,1 +74095,Gérard,337107,16927,1 +74096,Mikas Father,233639,17373,5 +74097,Anne,254193,113734,3 +74098,David Balfour,142150,18280,4 +74099,Natalie Voss,10694,56128,1 +74100,,427095,1331396,2 +74101,Julie Ann,407448,213395,5 +74102,Noce Bove,82080,35956,3 +74103,Mli,21570,86075,2 +74104,"Dorn, a doctor",184795,656,5 +74105,Publisher,2204,22614,4 +74106,Chief Pharmacist Mate,43407,4347,11 +74107,Frida,244801,1312688,7 +74108,Vaneé,330459,1402913,40 +74109,Seance Woman 3,27259,97441,18 +74110,Interviewer,206197,1506484,20 +74111,Aldo,59006,518,2 +74112,Star,10917,141051,12 +74113,Air Force MP,273481,1283043,27 +74114,Stacey,76101,585674,6 +74115,Dr. Nick Harris,42187,127553,0 +74116,Mera,14916,77634,3 +74117,Mobster (uncredited),4982,1396544,95 +74118,Pietro Chiocca,82350,45982,0 +74119,Ben,79869,985548,0 +74120,Costureira,108712,1491378,14 +74121,Comico,77822,12727,13 +74122,Don,73098,65923,1 +74123,Le colonel ('L'enfance'),98302,12272,2 +74124,Katherine,40229,104873,0 +74125,Sami,38021,72428,3 +74126,,66187,14812,1 +74127,Rod Williams,419430,1488961,7 +74128,Cod,32235,11107,5 +74129,Cello Vampire #1,346672,1905788,27 +74130,Takumi Sakagami (Voice),364111,1254052,4 +74131,Fireman,243940,1086222,7 +74132,Reba,19823,1322390,4 +74133,Mariko,36917,122157,0 +74134,Minor Role,43806,1234239,34 +74135,Himself,84309,1060566,1 +74136,le père de Rachel,59507,6304,6 +74137,Mother Minnell,57683,54348,6 +74138,Himself,320589,7176,6 +74139,Loco,23196,543589,3 +74140,Tudor Bălosu,32601,49679,3 +74141,,126516,134355,7 +74142,Interviewee,32694,52865,12 +74143,Sofija Kymantaitė,219666,1204409,1 +74144,Melissa,414977,1450962,11 +74145,Beth Morgan,117905,155393,2 +74146,Joe Gurney,27966,4110,0 +74147,,369373,1584568,5 +74148,Eve,277688,104646,8 +74149,Darius,24797,1954,1 +74150,,320873,1427452,5 +74151,"Phil, Hotel Clerk",19335,33032,9 +74152,Bobby,13842,146021,1 +74153,Labory,247500,146488,6 +74154,Maestra 2,125619,1293077,15 +74155,Herself,323555,18261,2 +74156,Lars,94807,52398,0 +74157,employee of rainbow restaurant,376252,1572354,11 +74158,Himself,26254,60093,1 +74159,Ben Andrews,56533,7503,3 +74160,Alfred Browning,167882,4512,6 +74161,Inez,345924,995358,3 +74162,Le docteur français,1986,583499,16 +74163,Support Group,222935,1672078,32 +74164,Aderopo,325803,1428019,3 +74165,Miki Shikishima,39123,1044524,16 +74166,Nobuo Hoshi,135799,67091,6 +74167,Charlebois,187252,1138923,5 +74168,Wet Stick,274857,1417352,9 +74169,,15468,44107,8 +74170,Jaakkola,89330,148393,6 +74171,Tango,4982,17605,21 +74172,,125835,591152,11 +74173,Le Directeur de la Banque,10870,21659,8 +74174,John,139170,15196,0 +74175,Mónica,53042,147103,6 +74176,Linda,119592,121278,3 +74177,Juli,3716,1859,1 +74178,Red Queen,45522,5686,11 +74179,Anna,356326,1179177,6 +74180,Elizabeth Maitland,12450,739,1 +74181,Ruth Boyd,80468,8963,2 +74182,Pretore,43548,118500,8 +74183,Colonel Philip Boyle,8368,20766,3 +74184,Guy l'ingénieur,21145,47820,2 +74185,Yvonne,301334,110581,8 +74186,Ms. Konk,43809,103448,19 +74187,Doorman,31899,141029,18 +74188,,241968,43323,3 +74189,Malraux,255692,10862,1 +74190,Roland,102362,1085150,12 +74191,Joel Bell,10008,61944,13 +74192,(uncredited),43459,31881,18 +74193,Rollo Latham,18998,29465,8 +74194,Hussein,287628,1475592,3 +74195,"Conejo, the Boy",44641,144533,2 +74196,David Wolper,332794,1459373,9 +74197,Selima,25988,56731,0 +74198,Himself,53367,58549,12 +74199,Laura,228331,40588,5 +74200,Dr. Alan Feinstone,9568,21246,0 +74201,Lisa,377428,1569756,16 +74202,Accountant (uncredited),39495,15413,16 +74203,Old Man,4538,8690,12 +74204,Hoss Barry,46623,137008,16 +74205,Sacy,5618,11193,7 +74206,Jim Stauton Rogers,131781,7683,1 +74207,Omar,76493,173810,1 +74208,Reynolds,249021,67154,6 +74209,Tanaka,112708,105605,9 +74210,Mrs. Rance G.,4932,236025,10 +74211,Leif,323968,1542137,4 +74212,Sinbad,43464,51762,0 +74213,Maxine,44001,120758,3 +74214,Saju,381691,1620963,10 +74215,Tom Duval,203321,578081,1 +74216,"'Hot Horse' Harris, the Bookie",84397,56924,5 +74217,Man in Grocery Store,12526,72636,5 +74218,"Ben, Bartender",45692,74875,5 +74219,Moriarty,109610,47640,16 +74220,курортник,63300,1190204,9 +74221,Policía atestados,48594,1146042,7 +74222,Chuck,8457,71726,7 +74223,Cassandra,306952,1511992,52 +74224,Mrs. Mabel Hubbard Bell,67375,85848,1 +74225,Peter,84892,1231874,18 +74226,Gerber,359483,231835,6 +74227,Sonar Tech,17911,127472,18 +74228,Warden A.J. Barnes,28297,95315,11 +74229,Mihajlo Andrejevic,57419,144630,5 +74230,Lady,43700,921,6 +74231,Kevin,85743,1273010,2 +74232,Sylvain,255913,1293458,4 +74233,Nancy Adams,332567,59175,0 +74234,P Chan,153,237167,13 +74235,Mrs. Devine,38978,1619136,14 +74236,Vivian,227964,1257342,7 +74237,Narrator,22779,35848,2 +74238,Police Captain Kumjorn,2805,134727,4 +74239,Abbé Traquet,24685,19903,5 +74240,Lee McHugh,48949,15415,13 +74241,Werner,8906,48721,1 +74242,Will Macklin,29979,13936,2 +74243,Terence Parker,105528,2505,3 +74244,,410634,1685978,2 +74245,Phillippe / André,22618,38527,0 +74246,Feldshine,35826,5950,7 +74247,General McOwell,207641,1123382,10 +74248,Seeker Nova,72710,1049735,32 +74249,Burt Harris (uncredited),3081,141694,22 +74250,Duncan Shorter,28320,11866,0 +74251,Michael,426253,72638,1 +74252,Samuels,74505,572038,3 +74253,Yau Wai,55156,70437,2 +74254,'Butch' Harron - Gang Leader,127812,117771,29 +74255,Patti,389630,20750,5 +74256,Santiago Pautrat,56948,933264,0 +74257,Kewpie (uncredited),99934,994599,6 +74258,Dale,266425,1313147,19 +74259,Stakar Ogord / Starhawk,283995,16483,11 +74260,Willie,38415,120384,0 +74261,Principe Dario,296491,139130,12 +74262,Brian,23289,223684,5 +74263,Haines,29694,104658,1 +74264,Senator's Secretary,8988,1742410,77 +74265,Tuggle Carpenter,43049,33644,5 +74266,Bobby Canzoneri,13072,98953,6 +74267,Network Executive #2,14923,28637,37 +74268,Pfarrer,269258,66596,29 +74269,Chief Inspector,62728,54,11 +74270,Secretary,339419,1650220,63 +74271,Anastasia Dualla (archive footage) (uncredited),105077,52507,30 +74272,Mabel O'Dare,184741,34742,0 +74273,Christian,44716,230033,3 +74274,Beta,350060,1669834,3 +74275,Hobo,335498,40178,11 +74276,Herself,162406,1295455,2 +74277,Shelly,225044,1210610,8 +74278,Frank,147575,939102,1 +74279,Himself,18597,59077,0 +74280,Bank Manager,87296,931388,8 +74281,Michael Burlington,262542,1102427,3 +74282,Il vigile urbano,315319,1312420,27 +74283,,413644,1098478,3 +74284,Kelly Radner,325133,9827,1 +74285,Takao,392882,228466,4 +74286,Coroner,188102,216758,21 +74287,Johnny,46760,937387,4 +74288,Mary Pope,117426,1133381,5 +74289,Madre de Ruth,201765,25258,6 +74290,,16017,544229,4 +74291,Hobson,353326,1097456,12 +74292,Seichi,27372,1072012,5 +74293,Jo Bi-ang,36164,16262,7 +74294,Appolonius,34469,25674,18 +74295,Guido Salvi,104954,123910,1 +74296,Tia,301368,83272,2 +74297,Ryan / Subject #20,29151,17697,9 +74298,Electric Man,921,229,38 +74299,Marianne Silva,55989,2956,4 +74300,Tom Stark,15006,4724,0 +74301,Lorenzo,40817,124677,13 +74302,Sorority Girl #3,25450,1234091,16 +74303,Dilios,1271,1371,3 +74304,Emerson Fairchild,166621,47689,8 +74305,Вадик,335819,143623,8 +74306,Mr. Winthrop,67375,1016646,32 +74307,Ralph Carver,10004,40009,4 +74308,Doc T.R. Velie Jr.,14554,4302,3 +74309,Pomoshchnik Gogi,79234,994433,8 +74310,Joe,27259,76943,6 +74311,Tilda Flanagan (as Julie James),28071,99568,3 +74312,Sister Ellen,27414,1206231,17 +74313,Frank,426265,1360152,3 +74314,Pauline,28303,102753,4 +74315,Alexa Walker,32124,4730,0 +74316,Martin,211,10236,0 +74317,Youg Dornwinkle,28340,1795336,19 +74318,Donata Fiok,68646,234161,1 +74319,Davidke,73147,585487,3 +74320,Captain Nolan,12707,194,0 +74321,District Attorney,29113,34504,9 +74322,Joy Deitz,128270,115146,5 +74323,policeman Mankov,71393,562612,2 +74324,Rory,271185,215843,6 +74325,Bricklayer,339419,1650192,46 +74326,Rome Policeman,240745,972994,34 +74327,Demin,40709,20891,6 +74328,Baby Face Nelson,28110,3037,7 +74329,Odo the Gypsy,28437,30719,1 +74330,First Burglar,20444,14836,14 +74331,,48131,301657,11 +74332,Merolla,288313,1355969,4 +74333,Taylor,10748,1215741,13 +74334,Piccolo,39103,85286,0 +74335,Frank Higgins,29467,95010,8 +74336,Cowhand Tom O'Fallon,183832,1270936,20 +74337,Carol,15189,55258,5 +74338,Maria,13391,63708,6 +74339,Donaghy,315664,1206334,5 +74340,Helen Owens,80168,12429,3 +74341,Vegeta,39324,122501,3 +74342,Québécois Female Singer,312669,232104,18 +74343,The Wretched,76341,1734186,42 +74344,,63472,287,11 +74345,Jill,13763,1803409,11 +74346,MacLachlan,68163,97943,0 +74347,Ben Berger,32124,77002,2 +74348,herself,33916,936660,5 +74349,Ramón,123103,637953,7 +74350,Lynette Ford,393732,200625,5 +74351,Debutante,76757,1369057,27 +74352,Trawinski,511,7116,10 +74353,Himself,15258,545848,39 +74354,Frank Lascelles,157843,185460,8 +74355,Rudel,76821,32043,6 +74356,,241982,230078,10 +74357,Mae Little Wounded / Blue Bird Woman,55534,1134746,24 +74358,Cabbie,108723,126565,27 +74359,Paulette Vaile,156356,9089,3 +74360,Ida King,8988,58643,7 +74361,Dr. Chase,417678,5009,9 +74362,Cheerleader / Dancer #1,11247,63275,37 +74363,,19506,68987,6 +74364,Mrs. Anderson,153228,153266,10 +74365,Actor in Drive-in movie,48885,35328,4 +74366,Security Guard Richards,116327,115460,4 +74367,Prince Charming,92349,89107,1 +74368,Un agent,27053,140364,20 +74369,Mr. Dinkel / Mr. Dinkelpuss,18698,30111,0 +74370,靜香爸爸,265712,1521539,21 +74371,Elise,321160,101091,4 +74372,Maureen,13802,155530,25 +74373,Huoyi's Man,217923,1436291,47 +74374,Maria,210615,20882,1 +74375,Tae Byung-jo,408620,231478,6 +74376,Kelly Campbell,213681,41091,2 +74377,Singing Nurse,4688,3136,16 +74378,Logan Thibault,77877,29222,0 +74379,Zaira,63190,53431,3 +74380,Dora,124470,224136,7 +74381,,231009,1223415,8 +74382,(uncredited),43459,1509713,16 +74383,Georg Berg,177697,45972,1 +74384,Horse's owner,27925,1190694,13 +74385,Lucy,348631,221843,8 +74386,,421741,1692434,9 +74387,Sid - Drunk cowboy,41591,34448,14 +74388,Mikel,141015,1030252,0 +74389,Geologist,53870,80348,24 +74390,Jenny,2977,1847409,17 +74391,Mr. Zender (drummer),26758,9866,9 +74392,,279159,1335342,5 +74393,Ryan,45326,146572,4 +74394,Pak Yin Fay,32091,1620,0 +74395,Rich Washington,118397,4743,0 +74396,Himself,13516,939078,11 +74397,Mother Maria,72984,1239914,4 +74398,,63215,146573,4 +74399,,149868,238481,11 +74400,Annabel Allison,104427,40174,1 +74401,Le pasteur,52713,64644,6 +74402,Defense Attorney,156360,30016,8 +74403,Mrs. Larson,50506,41432,8 +74404,Andreas Fleiss,378607,1451698,9 +74405,Dimosthenis,163018,1119990,5 +74406,Hunter #1,2080,1015896,49 +74407,Слава,35428,86861,3 +74408,Narusawa Young Woman,329440,112832,23 +74409,,22752,1281230,13 +74410,Shooting Gallery Attendant,150712,105454,44 +74411,Herself,145220,3136,10 +74412,,81463,1480662,12 +74413,Farmhand,120657,119486,14 +74414,Mario,380856,19490,6 +74415,Russian Mother,246415,1439320,7 +74416,,76264,56890,1 +74417,So Fei,182127,127433,19 +74418,,79871,1414279,5 +74419,Chetwynd,22387,96602,11 +74420,Alex,374698,115741,3 +74421,Beautiful Woman,85640,162283,11 +74422,Michel Werther,105384,44638,1 +74423,Charters,41597,14303,3 +74424,Mike Love,271714,105727,5 +74425,(as Eva Libertain),222517,104119,18 +74426,Marco,12513,1018784,8 +74427,Krissy B.,159770,1208345,5 +74428,Thingy,65881,1252343,5 +74429,Polkan (voice),72204,1449416,3 +74430,Beth Garrison,42476,8492,3 +74431,Jamie,256924,129104,8 +74432,,76940,1115068,6 +74433,Coach / Gaston (voice),1267,227439,11 +74434,Sarah Bennett,239498,1212139,1 +74435,Katey Ford,345915,10696,4 +74436,Chris,16985,94421,8 +74437,Dr. Bill Evans,30374,94272,4 +74438,Herself,83587,947565,4 +74439,Eve,15092,20189,1 +74440,Toni,2195,23182,8 +74441,Lord Willie Winton,53857,3363,5 +74442,'Diamond Back' Vogel,14589,120749,11 +74443,Peter 'Pete' Garvey,27629,24937,0 +74444,Jovie (voice),312100,132354,3 +74445,Thomas Trader,10915,1130008,7 +74446,Librarian,24420,1393531,17 +74447,Paul,363439,1521370,4 +74448,Dick D'Angelo,369524,28164,6 +74449,Rosa,30298,4421,1 +74450,"Adam Stanton, Age 11",1717,18798,11 +74451,Krankenschwester,122487,2730,10 +74452,Sully / Kelly (as Edward Sweeny),18447,1838854,15 +74453,Miss Abbot,38684,1089514,10 +74454,Ms. Perkins,245891,88995,3 +74455,Jonathan,206292,1348750,3 +74456,Su Qin,329206,1387957,2 +74457,Mr. Storekeeper / Ann's Father,177043,24827,6 +74458,Chris (11 Years Old),419430,1704626,10 +74459,,419522,1898305,29 +74460,Juno,5048,40902,10 +74461,Chamberlain,268920,1755071,76 +74462,CIF Clerk,8988,1741954,25 +74463,Charlie Harper,41733,6952,17 +74464,Young Wife (Station),297762,1643761,46 +74465,Jason White,1452,53494,10 +74466,,31275,1853883,14 +74467,Mrs. Heimes,41619,22633,9 +74468,Banji,325803,1428023,9 +74469,Steffen Hagen,1914,4795,2 +74470,Dustin,13596,21593,3 +74471,Kyle,329289,177099,7 +74472,Tom Hamilton,4551,78458,40 +74473,Monica Fayden,127521,172790,4 +74474,Stefano D'Agnostino,43213,23346,4 +74475,Kayo Enokizu,42170,150318,2 +74476,Burns,91181,536472,10 +74477,Herself,17401,1238096,4 +74478,Clifton - Werewolf,246741,939388,29 +74479,Himself,23207,89891,1 +74480,Mrs. Buckley (uncredited),44869,120740,15 +74481,Peter Hauser,46943,40696,3 +74482,Reporter,52437,1468403,27 +74483,passeggero del Tram,62713,120275,6 +74484,Kelly,336011,21180,1 +74485,,373838,1567922,5 +74486,James Baker,14050,207,7 +74487,,1421,1723435,23 +74488,Shenlong,126963,83930,7 +74489,,74674,1445129,31 +74490,Dr. Sally Mannis,16784,16307,3 +74491,Curtis 'Tiny' Reese,23855,824,4 +74492,Russian Roulette Loser,199575,1438915,41 +74493,Aracely Oriol,150065,171955,13 +74494,,285935,1028274,8 +74495,Makan,47226,1546421,6 +74496,Emily Fox Seton,169782,1095524,0 +74497,"Yasuzo, 2nd son",219233,133602,6 +74498,,83461,235113,5 +74499,Messenger,89086,1469282,41 +74500,Extra (uncredited),3059,1207226,64 +74501,Rick,18722,20582,30 +74502,,197788,4072,2 +74503,Seth Jones,87060,101875,10 +74504,Hero Dark Elf,287903,1537009,11 +74505,Stripper,19918,583714,26 +74506,,48959,53916,3 +74507,Saloon Girl (uncredited),16442,121116,36 +74508,Book Talk Attendee,303281,1387036,13 +74509,Spencer,208869,2302,12 +74510,"Mary, Duchess of Towers",57412,103441,1 +74511,Young Mary,235260,1336754,25 +74512,Nada,34449,110976,8 +74513,Peters (uncredited),43497,120454,19 +74514,Yamcha,126963,40327,9 +74515,Alma,32390,24462,6 +74516,Federale,263115,1502867,69 +74517,,284467,14785,1 +74518,Anders Matthesen,16884,66843,0 +74519,Paul dit 'Loverboy',58462,61259,1 +74520,Marjorie Frant,104211,103918,8 +74521,,254689,38791,12 +74522,Maj. Gibbs,108345,562199,7 +74523,Julie,115782,58370,2 +74524,Brendan,84336,76104,8 +74525,Doctor Natalia Guseva,94696,99653,2 +74526,,327982,2413,2 +74527,Funeral Home Worker,773,157858,23 +74528,"Carol Logan, Librarian",81720,246939,1 +74529,Patrick,163630,138393,3 +74530,The Goblin King (voice),12903,13472,6 +74531,Pancho Addams,107596,44686,3 +74532,Kajny,103539,1556840,5 +74533,Carstairs,172475,37712,6 +74534,Board Member,109716,1176934,64 +74535,Balwinder Khosla,14072,43416,1 +74536,Diaa,422603,1699991,0 +74537,,336549,13709,7 +74538,Dr. Bernard Wachs,2687,14950,5 +74539,Fireman,16182,53353,20 +74540,Townsman Mob Defendant (uncredited),14615,1422458,67 +74541,,353746,39012,1 +74542,Aleu (voice),25913,22082,2 +74543,Tariq,208869,1890766,8 +74544,Antoine,6557,47085,22 +74545,Torsten Bode,259358,28532,3 +74546,Karate teacher,81463,101698,14 +74547,Laura Strong,181574,9560,5 +74548,Relief Office Woman,921,83027,41 +74549,Tough Guy,1724,1366354,20 +74550,Natalie Preston,104556,165165,5 +74551,TV Anchor,41283,143206,10 +74552,Anita,55720,224507,3 +74553,Roopchand,41903,53362,12 +74554,Arnold,85431,8536,2 +74555,Upper Class Pedestrian (uncredited),76203,1438676,85 +74556,Irina,62731,238111,11 +74557,Rosa,335051,1605201,8 +74558,,73835,27275,8 +74559,Alma Mahler,83209,1079639,1 +74560,Waitress,31167,99755,8 +74561,Fred Connors,108282,104340,15 +74562,Simon,4279,24798,8 +74563,Cornelius 'Corny' Whittaker,77012,1193327,7 +74564,Pie,132518,1095690,1 +74565,Jane Obinchu,47559,2038,0 +74566,Darryl,156981,27737,0 +74567,Joe McIntock,72032,83147,2 +74568,Backwoodsman,52360,83623,35 +74569,Secretary,284289,169585,5 +74570,Captain Bill Martin,8429,2576,15 +74571,Manny Heffley,82650,858704,8 +74572,Tanya,31473,22082,5 +74573,Mitchell 'Mitch' MacAfee,36089,12351,0 +74574,Lawyer Sardesai,135718,85456,4 +74575,Zukhra,364684,1118240,1 +74576,Burmese girl,35392,114228,6 +74577,Scarecrow,133121,939345,11 +74578,Young Man at Sotheby's,11012,1093409,16 +74579,Wyoma,9870,59257,6 +74580,John Pawlak,8211,54072,1 +74581,,316268,1410543,10 +74582,Isak Lentov,82448,862932,7 +74583,,77564,582271,5 +74584,Buccaneer Pirate Chef (uncredited),10488,1643129,21 +74585,El Mapache,264525,42022,28 +74586,Maria,65048,20882,4 +74587,Medic Grotzky,93856,74502,10 +74588,Adam Mercer,84496,94402,9 +74589,The Infanta of Spain (as Christine Montt),50329,1320456,11 +74590,Cesira,56435,223966,0 +74591,Steve Laird,87123,134633,7 +74592,Michael O'Leary,51947,93163,14 +74593,Mrs. Martin (uncredited),43419,117414,22 +74594,Caretaker,61541,14968,8 +74595,Isabel de La Cruz,331962,224513,1 +74596,The Old Man Pancho,127424,1084476,6 +74597,Cassie,1272,9827,1 +74598,Diner Patron,41505,127062,22 +74599,Murray,39356,122759,7 +74600,Milt Frielobe,75752,3014,5 +74601,Woody Burwood,331161,119521,10 +74602,Sophie,17008,9931,7 +74603,Elevator Operator,242835,95296,12 +74604,Mr. Perkins,48207,3463,15 +74605,Mr. Pasture,33005,1391027,8 +74606,Delilah,14414,64908,1 +74607,Sylvie Guthrie,152748,1887743,11 +74608,Nabile (uncredited),2503,1195183,45 +74609,Valentina,142757,545828,0 +74610,Max Brewer,540,22122,1 +74611,Jimena,415255,1677210,2 +74612,Sarah Wilson,29695,104678,4 +74613,Little Girl,7233,56538,16 +74614,Nelson,747,1445662,15 +74615,Madame Hansen-Bergmann,129966,6553,0 +74616,Peter Pan,51120,143406,1 +74617,Rosa,57419,1050843,12 +74618,Patron (uncredited),44115,1613034,19 +74619,Real Estate Developer (uncredited),11610,161433,14 +74620,Rachel,429200,78520,12 +74621,Manta,286267,1303531,14 +74622,Colleen Stan,413337,56542,1 +74623,Police Officer #1,28090,61238,20 +74624,Princess Milena / Princess of Diamond Mountains,85628,11684,0 +74625,'Eggs' Benedict,27470,97837,20 +74626,Teddy Roosevelt,40719,12022,7 +74627,Roger Grimes,25241,93420,2 +74628,Twin,186971,1605801,17 +74629,Captain,2778,28167,7 +74630,Moti Cooper,168552,239731,2 +74631,Barbara aka 'Babs',157898,97311,6 +74632,Sinda,300667,205797,5 +74633,Johnna Monevata,152737,64136,11 +74634,Chandni,161227,86075,1 +74635,Chris Rumack,425591,79416,6 +74636,Klara Bornstedt,58166,18948,5 +74637,Minegishi Takeo,37939,1309326,7 +74638,Gianluca,267557,225298,6 +74639,Lisa,9076,44385,3 +74640,Mr. Sylvester,61225,1384784,22 +74641,Soldier Under Fire,19996,1764129,22 +74642,Richie,78383,67979,9 +74643,Herself (archive footage),318224,13920,15 +74644,Cliff McArdle,343795,99253,9 +74645,Metal Barbie,440777,1754592,14 +74646,Viviane,13710,73264,5 +74647,Nina Petrovna,75262,86666,12 +74648,Penguin MC (voice),9904,18594,10 +74649,Nerea,178595,1294286,3 +74650,Biscuit (Marcel Deloche),329682,587142,6 +74651,Older Child,274325,1577105,10 +74652,Schnaible,32029,151521,10 +74653,Judge R.H. White,50073,88672,10 +74654,Himself,180383,1255,3 +74655,Man Calling Dog,10053,62571,19 +74656,Claire,71672,1166976,5 +74657,John Webster,39127,207,3 +74658,Helen Wallace,70322,1660863,15 +74659,No-Eye-Contact Eric,186606,1750930,19 +74660,Udayabhanu,134477,111668,6 +74661,Gong Ming,270842,1059218,6 +74662,News Anchor #1,540,263229,17 +74663,Diane Stanton,12645,9824,1 +74664,Petruccio Sciacca,98025,38593,5 +74665,Chris Downey,383140,1441333,7 +74666,Tom Cooper,139170,22169,2 +74667,Bud Vogel,105945,2505,1 +74668,,369373,1125581,2 +74669,Hal's Priest,55347,112053,17 +74670,Mother,50387,233466,2 +74671,Purse-snatcher,45132,86278,26 +74672,Director Chen Cheng,25626,1418476,21 +74673,Narrator (voice),1427,5049,23 +74674,Jack,34052,111742,4 +74675,Himself,217925,103899,8 +74676,Hannah Swensen,371181,1212016,0 +74677,Nick,16151,59122,4 +74678,Dr. Gavin,42794,1024958,2 +74679,Kate Rambeau,26326,39568,4 +74680,Beautiful Restaurant Woman,302699,1754484,33 +74681,2nd Guard,88583,1466,6 +74682,Osamu Sagara,216363,213493,6 +74683,Edward Norris,43855,2496,5 +74684,Kaiser Friedrich Barbarossa,50722,6086,3 +74685,Edurne,236737,1382985,9 +74686,Private Lasky,329865,1752147,15 +74687,Sébastien Grenier,15468,15397,0 +74688,Lehrerin,4955,41002,15 +74689,D.D.,42023,44830,8 +74690,Man Reading Newspaper,18651,981096,80 +74691,Fred Ayres,28293,30181,4 +74692,Green Day (voice),35,95866,12 +74693,Daniel Morgan,60269,2778,0 +74694,Narrator,238952,592634,0 +74695,Sheriff Hank Bowman,98250,21315,1 +74696,Captain,54227,134635,4 +74697,Himself,18893,1237,10 +74698,Larry Chin,81937,558823,1 +74699,Janet Harduvel,131351,4784,0 +74700,Happy,26283,11439,3 +74701,Pagona,163791,1444985,4 +74702,Tex,41115,125496,3 +74703,Colonel at Hickam Field,15807,103620,9 +74704,Secretary,242631,1472518,23 +74705,Fumio Sudo,19336,1270026,5 +74706,Chinese Waitress,146233,1689982,26 +74707,Joel Levitan,336775,212290,3 +74708,Rose Murdoch,53358,1384206,4 +74709,Dr. Darnoff,164331,24605,5 +74710,Lord Henry Mayley,49843,29427,0 +74711,Cortland 'Cort' van Owen,37865,7676,2 +74712,Snoopy / Woodstock (voice),15242,94011,8 +74713,Connor Kennedy,4641,38707,5 +74714,Officer Martinez,773,59675,26 +74715,Female Cop,49524,1183867,25 +74716,Gujar,184351,29285,4 +74717,Undercover Cop / Dad,7942,30446,22 +74718,Jake,84450,10224,3 +74719,Himself - Interviewee,318224,455,0 +74720,Maureen Cranepaul,334074,9780,3 +74721,Amanda,402582,1306314,10 +74722,Wojciech,79221,107866,9 +74723,Man in Audience,108222,975597,33 +74724,Sybèle,187602,225235,1 +74725,Egon Krenz,2692,30790,4 +74726,Mitsue,52034,237168,2 +74727,Philippe à 15 ans,22618,1294170,5 +74728,Mickey,10476,1560862,12 +74729,,222858,23659,15 +74730,Rehana,42966,85470,2 +74731,Himself,39536,216108,0 +74732,Deputy Kern,11509,21484,10 +74733,Lewis,297702,15854,6 +74734,Colin,66193,54789,3 +74735,Mary Magdalene,235260,574378,4 +74736,La voce narrante (uncredited),43231,34593,12 +74737,,93891,7455,5 +74738,Woman on Plane,85442,1045634,17 +74739,Young Lady,107985,182327,27 +74740,Joy,84283,963849,2 +74741,Le colonel Damien,309929,142978,4 +74742,Bartender (uncredited),18722,553453,53 +74743,,107916,1042757,10 +74744,Captain Zhurov,34869,113330,1 +74745,,24426,106787,4 +74746,Le vendeur de tickets,44522,144742,11 +74747,Kirby,327389,4886,1 +74748,Bagoas Dancer,1966,1651007,49 +74749,Noodle vendor,55192,96552,9 +74750,Grete,75229,522533,4 +74751,Herself,91679,232008,7 +74752,amante di Giacobetti,75001,55659,9 +74753,Betsy Ross,70863,154395,19 +74754,Mr. Bray Junior,93935,181297,10 +74755,Reporter,12594,1884992,9 +74756,Babu,232711,85881,0 +74757,Mary Hand,105503,30045,3 +74758,,42944,129143,2 +74759,Kikuchi,12622,20341,2 +74760,Michael Bennigan,371504,14950,6 +74761,Banker's Son (uncredited),67375,12311,22 +74762,Charlie,424600,1631189,40 +74763,Giulia Sofia,63178,223966,4 +74764,Harry,10097,20282,13 +74765,Rósa,87229,97305,9 +74766,Cho Hakkai (voice),155765,81244,1 +74767,Lieutenant Rivers,61341,1338246,5 +74768,Martin Blair,46830,29934,11 +74769,Angie Britt,308640,53938,2 +74770,Dolores Grace,167073,78727,14 +74771,donna al funerale,75336,1496297,23 +74772,Bellinger,327389,1646,3 +74773,Skip,33009,144675,2 +74774,Gabita,2009,20698,1 +74775,Spencer,78177,583269,5 +74776,Maid (as Marie-Pierre Tricot),29129,102946,4 +74777,Carmen (voice),65759,63522,6 +74778,Stefan Dubechek aka Steve Dangos,118059,41755,0 +74779,Baggage Claim Girl,41496,20318,8 +74780,The Stranger,9667,51214,5 +74781,Gracie,91679,1125007,60 +74782,Pak Yeuk Tong,32091,108825,5 +74783,Boss,330115,21125,14 +74784,Marta,193641,70119,0 +74785,Anwar,8079,53976,5 +74786,Mme Montgomery,28571,287365,7 +74787,,360603,1228249,4 +74788,Guard Witch (voice),10192,5960,12 +74789,Piotr 'Python',356191,110364,0 +74790,Fabric Merchant (voice),16873,31549,22 +74791,Bridget Vreeland,9779,59175,3 +74792,Bakery Worker,29136,1224669,14 +74793,Tom,55343,201660,0 +74794,Charlie Brown (voice),15242,124658,0 +74795,Catholic Priest,86838,1055520,19 +74796,Tactical Team Agent,2503,164382,26 +74797,Emanuel,157351,115150,0 +74798,"Mr. Wyatt, Blake's Neighbor",147829,589728,15 +74799,Himself,301304,143073,1 +74800,Bar-Goer,295964,1423809,11 +74801,Stewardess #2,318781,1694299,22 +74802,Ian,27989,16327,1 +74803,Veronica,74674,572303,6 +74804,Pete,14833,37027,5 +74805,Party Security Guard,323675,1767214,26 +74806,Shankar,20968,35793,1 +74807,"Jean-Claude, le gars du casse",39415,1625134,11 +74808,Rizzetti,311324,1083451,16 +74809,Bobby,294272,1511634,10 +74810,Patroclus,81409,128674,4 +74811,Gabato Laguatan,72545,40481,4 +74812,Bone,27573,1697187,17 +74813,Josef,148,504,1 +74814,E-4 Col. Fargo,20674,9626,6 +74815,Nefer's Maid,24973,1747680,48 +74816,Kevin,244534,4451,2 +74817,Chico,15092,73127,9 +74818,Damian White,359471,3197,1 +74819,Referee,16996,1226225,27 +74820,Media Personnel,256092,1338705,12 +74821,,381767,1034685,2 +74822,Maid,92496,1795191,38 +74823,Teammate,397717,1722983,25 +74824,Lobster Girl,70863,1487030,20 +74825,Neal,14552,323331,18 +74826,Feral Kid,375366,1885998,19 +74827,Tim,122843,62960,8 +74828,CIA Director,230179,7427,4 +74829,Rayna's Friend #4,356752,1841980,13 +74830,Maurice,43645,6837,0 +74831,,372113,1534742,3 +74832,Un inspecteur,5511,1174961,24 +74833,Prince Tuan Yu,66759,26784,0 +74834,Raul,199415,1179651,0 +74835,Sergio,60977,66525,2 +74836,Zlatko,10565,131238,6 +74837,Phil Friskett,108812,78794,6 +74838,leraar,35016,1416124,23 +74839,Burton,152570,141600,3 +74840,Carlos Dietrich,13653,1816293,7 +74841,Zamindar's Uncle,66247,237627,4 +74842,Sir Richard Fordyke,100770,75781,1 +74843,Albert,32038,1294262,3 +74844,Wade Wilson / Deadpool,293660,10859,0 +74845,Cousin Davis,339419,1650198,20 +74846,Scott,28026,1226010,12 +74847,Colonel Zeller,144229,11390,0 +74848,Two Lodges,55534,222558,6 +74849,Jamie,185156,94998,3 +74850,Martin Howell,116894,13950,5 +74851,Andy,67693,102690,6 +74852,Jane,17111,81254,1 +74853,Payton,19898,6065,1 +74854,Woman at Jenkins Employees Dance (uncredited),3059,35505,66 +74855,Molly,50875,1337803,15 +74856,Azul,13283,1497226,4 +74857,Bride's Father in wedding group,80596,585721,9 +74858,Douglas Rivers,67794,67567,1 +74859,Marie,67314,6548,2 +74860,Secretary,339419,1650170,39 +74861,Le petit Antoine,352025,1784145,10 +74862,Anne,352498,1308373,0 +74863,Senator Lucas,10274,64677,16 +74864,Monk,43252,10799,4 +74865,T.J. (as Pee Wee Love),279606,98887,4 +74866,,285685,1624591,7 +74867,Oscar Bernard,41206,34238,17 +74868,Merl,15936,518,1 +74869,Kazbek (voice),260310,81000,5 +74870,Elena,32139,46423,1 +74871,Mother Meadows,261037,5376,9 +74872,Decker,18586,62816,6 +74873,Ballarin,52913,1086884,7 +74874,Richard,402446,79795,5 +74875,Mouloude,57382,226025,9 +74876,E. Aster Bunnymund (voice),81188,6968,4 +74877,Mathilde,362180,1790583,14 +74878,John Dos Passos,111839,11064,7 +74879,Micah,273511,590308,6 +74880,,81522,224459,15 +74881,Abbot Fahai,75948,1336,0 +74882,Jim Younger,27349,8962,2 +74883,Kata,128043,1086317,1 +74884,Ushiyama,25716,27782,24 +74885,Police Officer,244201,34294,8 +74886,Dixon,183258,76968,3 +74887,Counterman (uncredited),74911,11170,10 +74888,Weller,55152,108642,11 +74889,Gil Warren,78734,41755,5 +74890,"Siobhan, Mary's daughter",47186,552217,11 +74891,Extremis Soldier,68721,89714,84 +74892,Sandra Kelley,29058,102738,2 +74893,Additional Voices,15213,124112,32 +74894,Saul,2734,378,1 +74895,Wazir,275269,85045,5 +74896,Michael Nantz,44943,6383,0 +74897,Robert Miller,60599,1205,0 +74898,Evil Captor,10488,1265157,19 +74899,Doug,82990,36803,5 +74900,Thistle Lady (voice),116711,1552816,20 +74901,Ursula,10097,63358,5 +74902,,254435,1365798,8 +74903,Dorie Kay,76422,3196,0 +74904,Chinovnik,97672,235980,5 +74905,,19812,1441811,27 +74906,Kid Falcon,256962,554683,15 +74907,Jacinta,85549,1061428,1 +74908,Carly,38356,236048,9 +74909,Rancher,197737,34818,35 +74910,,183946,1167116,0 +74911,Trendy woman,32526,1176953,17 +74912,News Anchor,164331,1153367,4 +74913,,29832,177475,4 +74914,Šašo,208436,124143,4 +74915,Tim Allgood,26670,95975,5 +74916,Adv. Harish,96159,86510,2 +74917,Priya Mohan,96147,1033806,7 +74918,Ra's al Ghul (voice),40662,11355,3 +74919,Alvin Karpis,49172,39780,3 +74920,Sharon,203186,57674,0 +74921,Bull,25855,1489157,6 +74922,Ferdie Fenton,94739,939687,7 +74923,Guildenstern,125705,31534,5 +74924,Johnny,10900,67709,12 +74925,Sutton,91333,58058,3 +74926,Leon,273510,12791,12 +74927,Marco,35110,113737,0 +74928,Achter Geschworener,269165,1054816,7 +74929,Policeman,49712,931542,34 +74930,,33201,1014373,8 +74931,Kelly,24469,1528072,7 +74932,Aninha Tarja Preta,117534,1161887,10 +74933,Mitchell,378018,41256,2 +74934,,284274,6574,6 +74935,Willem,10075,62882,6 +74936,Rob,96936,39007,7 +74937,The Fool,134155,1157254,3 +74938,Thane Furrows,22792,4489,1 +74939,Dr. Robinson,37451,132720,13 +74940,Morfar,5177,15086,1 +74941,Barkley,294254,1719996,26 +74942,Referee (uncredited),28000,1468856,35 +74943,"Grishka, a friend of Maksim Perepelitsa",174720,936950,7 +74944,,371153,1156337,4 +74945,,153196,1283556,3 +74946,Det. Jacob King,14452,23880,0 +74947,Taxi Driver,81110,1190485,22 +74948,Frightened Girl in Car,127493,1286020,11 +74949,Stevie,65579,107033,4 +74950,Layla,427045,84698,2 +74951,Robert Dulz,9765,35264,4 +74952,Lupo Miano (as John Duke),37083,151491,9 +74953,Don Creedon,12601,1827139,4 +74954,Ana,94336,4636,1 +74955,Leafs Doctor,108723,1446341,25 +74956,Carpenter,374473,1211929,24 +74957,Bald Guard,310135,1397786,17 +74958,Shing,40346,35452,6 +74959,Paul Gaylord,5881,46274,5 +74960,Anna Sand,257831,23360,2 +74961,Middle Eye,1579,17689,2 +74962,Dunce on Paris Bus,16135,79530,35 +74963,Herman Stover,140648,166514,7 +74964,Stacy,278348,1333734,7 +74965,Sir Alistair Montcrief,338518,29459,1 +74966,Jenny,91390,1046251,9 +74967,Günthers Mutter,197175,2740,7 +74968,Sarah McNally,31977,85605,5 +74969,Dixie Dooley,79521,57584,15 +74970,Pfarrer,2349,11954,26 +74971,Chuck,220724,1175809,10 +74972,Various,22471,95565,1 +74973,Pa Leeds,91961,30215,1 +74974,General Wei,56095,127237,19 +74975,Megan 'Meg' Barclay,69266,29021,2 +74976,le père Poulain,43878,11528,7 +74977,Manager,10739,26473,11 +74978,Young Jennifer,13280,203630,15 +74979,Anan,24424,132111,8 +74980,Laruss,72663,81002,5 +74981,General (voice) (uncredited),22855,13477,19 +74982,Cain (voice),14945,230880,3 +74983,Alex,73943,56262,4 +74984,Scotty Moore,40047,11785,11 +74985,Arthur Brennan,291351,10297,1 +74986,Officer Veitch / John Ramsey Auditionee / Himself,430826,1891498,20 +74987,Elmer the Elder Elf,146712,19754,6 +74988,Ed Sullivan,139718,214919,4 +74989,Harvey Miken,149600,1535,1 +74990,Nicholas,214086,1298380,7 +74991,Gloria,25919,1218146,6 +74992,Dr. Thomas Bolton,30637,2922,0 +74993,Josh,395982,1533574,9 +74994,Michael Webb,21780,1401359,9 +74995,Dr. Fabio Cavani,340488,258,2 +74996,Mary Burton,84905,1150494,3 +74997,Narratore,42416,128074,2 +74998,Eaglebauer,26326,15661,2 +74999,Fille baiser mariage,255913,563906,30 +75000,Amparito,254869,72998,11 +75001,Minister,40807,1235749,27 +75002,Harlan Whitford,59961,9880,5 +75003,Ima Dean,128364,1209486,5 +75004,Headmaster,82448,282449,14 +75005,Timoshin (as A. Zbruyev),83614,99302,0 +75006,Lola,62694,120010,23 +75007,Henry Ruppert,41468,55701,8 +75008,Nurse at the maternity ward,39284,575499,10 +75009,,88273,1233647,32 +75010,Tanya,51276,143673,0 +75011,Sheila,55681,1086566,9 +75012,The Butler,24272,15739,7 +75013,Diane,38743,404,7 +75014,Doorman,27966,119542,34 +75015,Casey Stuart,36968,49265,0 +75016,Wrona,82027,592911,0 +75017,Martin,81996,83188,2 +75018,Lis,11330,1348453,15 +75019,Armaan,303281,97546,1 +75020,Noboru Okada,55197,108024,2 +75021,Travis Purcell,36299,1904,7 +75022,johtaja Nurmi,442752,1761828,16 +75023,Le légiste,61361,136745,9 +75024,Craig,159701,1039122,8 +75025,John Healy,45377,1733,2 +75026,Kazuko,94659,131016,8 +75027,Natasha,98115,583229,2 +75028,Gruber,61988,29645,6 +75029,Sheriff Cody,38761,8496,4 +75030,Dewey Cox,6575,4764,0 +75031,Norma,28000,99374,1 +75032,Autograph Seeker #2,8414,1546224,16 +75033,Duke,251421,2775,1 +75034,Annie Marble,36519,81293,2 +75035,Mitchell,413417,1427115,7 +75036,Doc,44287,170633,10 +75037,Astrologer,341420,130114,5 +75038,Ann (age 73),75204,198677,13 +75039,Matt,426264,101034,5 +75040,Dallas,348611,49961,1 +75041,Chess,381645,1547859,22 +75042,Deel Munn,16131,6164,6 +75043,City Official (uncredited),33792,133277,13 +75044,Chatterjee,362150,1540764,16 +75045,Makuta / Pewku (voice),19325,74359,5 +75046,Mayumi,329440,1522256,5 +75047,Father's Servant / Master Creep,334394,1480500,7 +75048,Vivian's Brother,10075,62891,17 +75049,Rally,105077,1578447,22 +75050,Faye,86241,16219,11 +75051,Blackie the Electrician,228647,121250,35 +75052,Pepillo (adulto),166207,1396362,17 +75053,Lou,91333,1037336,16 +75054,Lieutenant in Briefing Room,43241,111994,7 +75055,Stacy,16296,1706340,8 +75056,Mr. Ramsey,43256,83994,9 +75057,Walter Myrick,47386,138769,2 +75058,Kinodate,273,2343,3 +75059,Detective Scott Galban,331962,6384,0 +75060,Angamma,63825,1124946,10 +75061,Docteur Hubert Durois,51212,24388,2 +75062,Handwerker,170759,32254,7 +75063,Club Patron (uncredited),354979,1543874,79 +75064,Deputy Winston,28739,4133,5 +75065,Clem Jones,68097,82835,7 +75066,Himself,160297,58319,2 +75067,Narrator (voice),16137,24485,6 +75068,Bill Pulanski,44626,46612,8 +75069,Mya,92635,995470,7 +75070,Ma Nike,157384,1065770,5 +75071,,19812,121557,6 +75072,Mother,92663,240837,2 +75073,Megumi Hayashida,25716,129706,13 +75074,Moose,85446,54503,9 +75075,Minor Role,43806,1147656,64 +75076,Nordic Child #2,346672,1905798,38 +75077,Corey Washington,95140,81097,14 +75078,Смычков,409082,1190398,1 +75079,Grenzer,2241,23124,10 +75080,Patty,129530,999736,7 +75081,Albert Parsons,86600,19463,2 +75082,Jake LaMotta,228034,4520,0 +75083,,63568,1881919,6 +75084,Curate in Boardinghouse (uncredited),52440,1021756,48 +75085,Garota de Programa - Lichia,117534,1751570,21 +75086,Claire Parker,38065,146471,0 +75087,Posnick (Segment 1),244117,962997,3 +75088,Herself,407806,1813607,3 +75089,Second Woman,11161,143714,9 +75090,Frankie's Father,18665,134704,9 +75091,"Medvedenko, a schoolteacher",184795,87417,7 +75092,Helen Riley,84337,7639,1 +75093,Sudo,55956,1416570,1 +75094,1st Airport Official,91583,170257,21 +75095,Irma Chappelle,242131,1207100,10 +75096,Lady Rohan,41996,3674,6 +75097,Courtney,20430,20981,6 +75098,Lynn Spears,112558,132575,7 +75099,Mrs. Whittaker,16899,5470,2 +75100,Bruce Adams,3023,29643,4 +75101,Sebbe,45133,132243,0 +75102,#1 naisveteraani,55759,222317,14 +75103,Paul,15022,214427,20 +75104,Casey,163814,211540,1 +75105,Bernard,343702,1159954,13 +75106,General Gato (voice),1273,60279,15 +75107,Mr. Khan,157129,85033,1 +75108,,415358,127790,7 +75109,Divine Intention Dancer,243683,1398150,67 +75110,,88953,1537396,23 +75111,,54503,1581080,11 +75112,Mr. Clarke,49172,156199,5 +75113,JPeezy,102668,1031781,5 +75114,Himself - Law Enforcement,97724,1388653,3 +75115,Sidney (uncredited),39495,1212034,17 +75116,Tough Guy Leader,1724,185165,19 +75117,herself,6575,51860,12 +75118,Taylor,14432,5373,5 +75119,Morten Tobias,21786,74718,2 +75120,TV Station Receptiomist,107250,1239440,24 +75121,Agente Immobiliare,160844,129059,3 +75122,Cheering fan behind home plate (uncredited),18722,553455,57 +75123,Himself,191502,51736,13 +75124,,255772,1603927,2 +75125,Marie Ernst,285181,63769,1 +75126,Andrzej,10754,66469,8 +75127,Eunuch,60488,30262,13 +75128,Spit,27973,89989,10 +75129,Herself - at Banquet / Clip from 'Thousands Cheer' (archive footage),33740,92900,38 +75130,Wilbur Gray,75903,5,0 +75131,Jennings,68247,24811,4 +75132,Borracho 2,25376,1331808,22 +75133,,293654,143746,1 +75134,Mr. Hulot,52264,1099770,9 +75135,Satchel Paige,74942,18792,0 +75136,Lonnie,270650,228178,15 +75137,Sir Reginald,241374,1053959,6 +75138,Younger Rabbit,116979,1366725,4 +75139,Carlo's Son,332567,1677465,6 +75140,Eckat (voice),9514,57715,4 +75141,Support Group,222935,1672081,35 +75142,,51549,225247,16 +75143,,340119,120129,3 +75144,F.B.I. Man,69,129868,27 +75145,Neighbor in elevator,63066,1867439,6 +75146,Anna Krzyzanowska,28527,41356,2 +75147,Italian Translator,1691,45570,17 +75148,Mischa Ravenswood,92716,6839,6 +75149,Jaynie Hansen,14862,85825,3 +75150,Baby Chirin (Voice),77859,1238593,1 +75151,Ernst Freud,48231,1089490,27 +75152,Wendell,180305,127701,7 +75153,Lois MacFay / Linda Mills,14589,19967,2 +75154,Tanya Lee,18557,453493,6 +75155,Maid,244539,1508830,19 +75156,Mom,228676,59668,7 +75157,Gret Jung,48231,220407,33 +75158,"Mark, Their Son-in-Law",82696,172156,8 +75159,Beth,63360,236983,10 +75160,John W. Rogers,247691,29313,7 +75161,Einar,10529,237,7 +75162,Wedding manager,45098,1311153,9 +75163,Charles Y. Bewell,28299,4343,3 +75164,Boy Captain,43812,67371,59 +75165,Will Bahia,69075,953333,8 +75166,,346473,105788,1 +75167,Gaylord 'Gay' Esterbrook,132928,854,0 +75168,Louis,58887,228619,3 +75169,Whittle,43741,206161,8 +75170,Lady Constance Keeble,144183,33448,0 +75171,Harry,18690,1238851,6 +75172,Red Dragon,38526,833798,8 +75173,Herself,123283,3149,6 +75174,Deborah Kelly Rojack,131861,7331,2 +75175,Tanabuso,53805,141830,11 +75176,Debutante in Ladies' Room (uncredited),95874,120306,7 +75177,Olive Reyes,98203,1043186,17 +75178,Village Elder,193756,1283062,42 +75179,Sanya Yezhov,271234,1329979,10 +75180,Themselves,42709,927860,17 +75181,Sosie Jef,5511,1664790,25 +75182,Roat / Roat Jr. / Roat Sr.,11206,1903,1 +75183,Blind Man,30973,105492,14 +75184,Elke,277968,73926,7 +75185,Angelina Becker,129798,1003819,3 +75186,,113739,1051907,2 +75187,Chewey,78307,72988,3 +75188,Doris,348631,189719,12 +75189,Newt,294254,25663,2 +75190,Lloyd,347630,1695654,23 +75191,Frank Prior,122221,2177,0 +75192,Stripclub Pole Performer (uncredited),293660,1604990,35 +75193,Mr. Togokahn,7459,9192,11 +75194,,11196,1429906,21 +75195,Mrs. Warshaw,24363,4939,3 +75196,Lukasek's Father,158947,1784282,5 +75197,Halloween Dancer,11247,1752319,55 +75198,,430973,227189,8 +75199,Olivia Foxworth,267793,9560,1 +75200,Norman Coombes,42448,33489,8 +75201,Nikabrik,2454,11184,8 +75202,Dr. Grosskopf,98349,163775,12 +75203,ICU Nurse #1,55347,235851,16 +75204,Capt. Jack Reilly,128644,3799,9 +75205,Kjeld Jensen,11391,69181,2 +75206,The Bartender / On Street,42553,128166,10 +75207,,6935,1569163,15 +75208,Sang-mi,77117,1263930,13 +75209,Michael,277237,109833,1 +75210,Karen Blanguernon,36140,35589,1 +75211,Trick or Treater,268920,1754444,52 +75212,Müteahhit,452606,1797945,12 +75213,Mary (voice),356161,2405,1 +75214,Christine Dubreuil,366566,13688,2 +75215,Julia,83125,582722,3 +75216,Bin,25695,1615102,2 +75217,Queen Aggravain,18506,14837,0 +75218,Uniform,41283,143205,9 +75219,Officer Carter,146233,935722,15 +75220,Joe - Clerk in Dr. Ames' Office,26376,1271657,45 +75221,Ruy De Mendoza,16432,38559,0 +75222,Roscoe Pepper,284564,59673,6 +75223,Mike,241855,1074561,5 +75224,Edward Fudge,241739,60060,1 +75225,The Loved,47310,138391,2 +75226,Pedro,11227,16873,3 +75227,Harry - Elevator Starter,18569,10806,39 +75228,Rosie,316654,81928,1 +75229,Isha (Sathyadev's Daughter),300983,1423269,10 +75230,Ezio,42892,78535,1 +75231,junger Mann,52475,1826349,35 +75232,The Countess,20650,86401,1 +75233,Charles Patterson,195068,81934,4 +75234,Tamina's Maid Servant,9543,1327299,11 +75235,Lou Martini,24150,43774,30 +75236,Laura,28299,103368,11 +75237,Rébecca,361571,1557143,6 +75238,Additional Voice Talent (voice),145316,24358,6 +75239,Joe,39072,9626,4 +75240,Emily Upjohn,11939,10804,5 +75241,Shep Jordan,271164,1074187,4 +75242,2nd Lt. O'Hirons,108345,12357,6 +75243,Lt. Tracy Richards,18690,34660,7 +75244,Sean,258193,106370,4 +75245,Car Rental Guy,310602,145806,9 +75246,Luisa,265717,120111,5 +75247,Regina,271404,59846,10 +75248,Dolores,40387,1605863,7 +75249,Puss in Boots (voice),48466,3131,2 +75250,"Maj. Jonathan Smith, MC",11046,5341,0 +75251,Mom,10900,60252,14 +75252,Nico,59118,228883,11 +75253,Royalton,7459,11279,14 +75254,Greg,98094,27813,0 +75255,Jamison,6947,44735,13 +75256,Lt. General McClintock,128612,25711,7 +75257,Man in Diner,47186,154649,27 +75258,Pera,113660,234126,3 +75259,Woman at Jenkins Employees Dance (uncredited),3059,8836,67 +75260,(uncredited),56068,150617,16 +75261,Holley Shiftwell (voice),49013,1246,3 +75262,Reba Maxwell,50506,59313,0 +75263,Professor Vernon K. Simpson,88288,7124,0 +75264,Viktor Frandsen,55589,117963,0 +75265,Veszelka Imre,94663,56292,0 +75266,Wiener,5511,35216,6 +75267,Alien,75564,549058,18 +75268,Sarah,25528,97620,5 +75269,Mrs. Erganian,9675,1127469,8 +75270,Music Foundation Director,130507,30115,16 +75271,Janice,52221,2167,7 +75272,Talk Show Host,264644,19957,9 +75273,Edoardo,155011,236439,0 +75274,Flaxy Martin,65211,13579,0 +75275,Milk Maid,9900,60161,15 +75276,Lily Anthony Rodriques,16987,146971,9 +75277,Jehu,73896,87825,7 +75278,Father Mike Conboy (as Robert Gottschall),76468,1064477,6 +75279,Produzent,5881,46278,10 +75280,Gracie,277710,1557949,30 +75281,Herself,72105,20472,16 +75282,Tae-su Kim,21966,554065,15 +75283,Legionnaire,22999,1062531,16 +75284,Masseur,43095,134263,14 +75285,Cleve,121923,19546,11 +75286,Marno,156335,137405,10 +75287,Erlend,360249,76611,5 +75288,Gossiper in Bank,27114,198219,21 +75289,Comedy Soldier,150712,34610,41 +75290,Additional Giraffe (voice),10527,16846,33 +75291,Karen Blittstein,23096,53122,6 +75292,Jeff Nathan,30993,229707,0 +75293,Palagonia,169683,4521,1 +75294,Josef Tkaloun,6079,11683,0 +75295,Ross Pienaar,17654,82190,9 +75296,Jill,11917,22434,3 +75297,Grandpa Longneck,339526,13473,5 +75298,Dr. Rhinehart,74525,103449,6 +75299,TV News Reporter,51836,91977,6 +75300,Mr. Jefferson,60307,16559,15 +75301,Ingrid Goulain,109261,54280,3 +75302,Elsie Laing (aged 19),29989,936017,2 +75303,Man,109716,1472986,63 +75304,Carrie Gershon,333352,1320609,5 +75305,un musicien du restaurant,64934,585172,9 +75306,Princess Arete (voice),59297,220710,0 +75307,Young Poet,370755,1186840,10 +75308,,57011,227619,4 +75309,Celeste,197335,121023,0 +75310,Young David,14642,1615206,15 +75311,Ninutsa,150223,1870828,16 +75312,Alex,34205,60462,7 +75313,Giorgio,58400,73867,3 +75314,Abel,67822,1226313,3 +75315,Moving Man,74314,1204352,13 +75316,Heitor,70815,102551,6 +75317,Nurse,322922,1010349,14 +75318,Clyde Boston (age 14),18671,1646869,11 +75319,Salvatore,56853,225110,0 +75320,Evert Braun,133458,11048,15 +75321,Robert Stern,133183,21315,0 +75322,Pavel Lubyarsky,2001,77351,9 +75323,Dispatch Operator,268920,29214,31 +75324,George Schneider,42168,3085,0 +75325,Scooter / Janice / Miss Poogy / Wayne (voice),64328,192632,13 +75326,The Dead Woman,84228,1082352,8 +75327,Ashley Grey,258509,98285,6 +75328,Nick,43790,30264,8 +75329,Vaquero,41283,124304,8 +75330,Elevator Operator,179066,117772,49 +75331,Fanny,233639,40359,9 +75332,Terry McGinnis / Batman (voice),269246,76621,1 +75333,"(segment ""Miminashi Hôichi no hanashi"")",30959,552658,41 +75334,Princess Jorala (voice),149910,1233749,19 +75335,Father Seamus,11131,107729,8 +75336,Marlon,289723,12975,3 +75337,Ranch Hands / Musicians,173634,1362527,4 +75338,Ferrara,28297,89691,16 +75339,Borel,289126,1066361,6 +75340,Gun Salesman,304372,161731,31 +75341,Nell Blakemore,300187,8256,0 +75342,Ken Bingham,242131,115466,5 +75343,John,42599,25686,6 +75344,Masino,52913,240910,8 +75345,News Reporter,268920,1377678,27 +75346,L'ispettore Chantal,28061,56729,1 +75347,Grim Knight's Hot Twin #2,243683,1397789,23 +75348,Dee Dee Ramone,111479,15371,29 +75349,Marco,206563,52585,8 +75350,Mui Gu,91186,1163181,5 +75351,,72054,1439243,21 +75352,Seniorinne 2,9483,225965,6 +75353,Virginia,41402,83585,4 +75354,,353533,1137651,12 +75355,Yau Muk-Yan,118381,21908,3 +75356,Stanton,296523,108726,8 +75357,Tourist,424661,106911,5 +75358,,83461,70551,6 +75359,Jonathan,38031,20243,9 +75360,Max Monetti,20003,3090,2 +75361,Judge Kriegs,72611,1341809,2 +75362,Kin,101929,20829,4 +75363,James Hoyt,10665,100,1 +75364,Make-up Lady,99859,602823,12 +75365,Francis,47906,20749,5 +75366,Ashley,339994,1136940,4 +75367,Simpson,121329,628316,6 +75368,Jelly,62046,3201,7 +75369,,420648,74912,9 +75370,Hyo-seon,180252,1414696,6 +75371,Deb Merritt,19235,12407,3 +75372,Asha,109001,150369,1 +75373,Marcuse,2080,1353638,24 +75374,Gabriel Doyle,39240,2839,1 +75375,Philip Peel,51619,71785,3 +75376,(uncredited),43522,117036,15 +75377,Willis,341174,118462,19 +75378,Cam,9968,61159,8 +75379,Woo-Jin,338729,123766,17 +75380,Orm (voice),292014,126863,2 +75381,Mark,219345,82769,0 +75382,Hazar,230179,5496,6 +75383,Olie Johnson,102144,100945,7 +75384,Stella,64167,10780,8 +75385,Emlyn Parry,87060,176282,3 +75386,Annie,277687,1287658,1 +75387,Hector,79343,38864,2 +75388,Cooper (uncredited),19898,116243,23 +75389,Guiseppe,8194,53939,10 +75390,Mr. Jang,240832,64880,2 +75391,Eugene Gibbs,89269,61852,5 +75392,Additional Voices (voice),82703,113916,48 +75393,Bob (voice) / Terry (voice),16523,5953,17 +75394,Trunks Briefs,38594,1686,2 +75395,Passerby,277967,56571,10 +75396,Harvey - The Elevator Operator,47878,97701,7 +75397,Rose,325592,1813532,2 +75398,Young William Jones,293863,1207282,28 +75399,Annie,72611,235422,7 +75400,Tucker,37932,1724810,7 +75401,Stewart,14833,27737,7 +75402,Mary Freeman,295588,156237,6 +75403,,73628,569896,8 +75404,Crystal,95177,582722,0 +75405,Woman in Restaurant,8414,54887,6 +75406,Gabriel,20718,258,3 +75407,Mr Hayes,425774,1707962,68 +75408,Titla,102632,213431,4 +75409,Neighbor,126516,1323946,9 +75410,Obadiah Stane / Iron Monger,1726,1229,2 +75411,,124517,1880405,2 +75412,Tessa,256092,1325837,6 +75413,Doctor (uncredited),156700,1842219,57 +75414,Julienne Alia,110160,136761,2 +75415,MJ,240881,60458,3 +75416,Phyllis,114096,102198,5 +75417,Base Guard,293167,1346404,23 +75418,The Abbot,78028,16697,10 +75419,Dag,15177,77980,7 +75420,Snake (voice),28118,47632,1 +75421,Nicole,63681,39887,7 +75422,Princess Zobeide,18098,82668,3 +75423,Jean-Pierre,48706,47085,7 +75424,Mr. Spepk,17956,3433,8 +75425,Sophie,33095,59807,9 +75426,Military Contractor (uncredited),263115,1821484,98 +75427,Brad McCullum,44027,335,0 +75428,Joe Grossland,78265,4074,6 +75429,Nina,218778,52119,6 +75430,Саня,46187,135360,4 +75431,Elisée Mayer,329682,145120,3 +75432,Giorgio Desideri (Giorgione),11614,70028,2 +75433,Young Mary,132426,47720,1 +75434,Herbert Childress,223497,13966,6 +75435,Prince,76200,13697,5 +75436,,25626,20655,37 +75437,Lyle Windsor,206328,11077,3 +75438,Little Michael,62132,1452736,6 +75439,Cop in bank robbery,2463,25253,11 +75440,Marion,101915,78334,12 +75441,Maria,255343,1261473,3 +75442,Nurse,7326,169511,21 +75443,Publican 2,107985,206847,38 +75444,Goluboy (as A. Lykov),83614,236002,8 +75445,Svend,11330,1348441,11 +75446,Hikozaemon Tokugawa,61984,233695,10 +75447,Principal Ferguson,43228,208509,14 +75448,Mark,11056,20508,2 +75449,Lee Loung Tan,1550,1014030,14 +75450,Alba,172457,1155088,4 +75451,Brig. Gen. Frank D. Merrill,35392,50570,0 +75452,,109587,111063,29 +75453,Ericka,20430,1294,5 +75454,Yaco,352186,76961,8 +75455,Bank Clerk,19971,1491524,8 +75456,Lady Clarinda,18978,47504,7 +75457,Additional Voice (voice),177572,1502451,40 +75458,доктор,207696,1700223,5 +75459,Capt. Jerome,14815,41280,5 +75460,Tyler,25643,29234,9 +75461,Sheriff (as John Merrick),86768,163326,9 +75462,Faith Domergue,2567,17442,8 +75463,Ahmet,220002,1762880,11 +75464,Monica Russo,55448,5578,1 +75465,,372226,1336128,13 +75466,Portier,277968,2410,15 +75467,Ganna,142802,1117991,2 +75468,Art Student,38322,1869042,37 +75469,Gang Boss (voice),9502,4201,12 +75470,Sen. Phillips,56558,34320,21 +75471,Michele,238705,34491,0 +75472,Judy,60125,63917,4 +75473,Drummer,76341,1734195,52 +75474,Lei Zekuan,329206,25246,0 +75475,Valda Embiricos,149926,106995,7 +75476,Ian Stone,12171,6858,0 +75477,Mitzi Mayfair,106821,1078735,3 +75478,Barfly,105059,1543058,21 +75479,Sovereign Chambermaid,283995,1806596,44 +75480,,183946,62833,3 +75481,Teacher,15022,153651,34 +75482,Sandra,127091,20948,2 +75483,Carol,141643,1115149,9 +75484,Professor Downie,74314,3371,7 +75485,Dora Spenlow,141640,13364,12 +75486,René Martinez,204768,24832,4 +75487,Ryuunosuke,43967,65510,21 +75488,Vinnie-Stinky,39345,31471,10 +75489,Elvira,51548,145027,3 +75490,Assistant Hotel Manager (uncredited),44208,9096,8 +75491,Seiya Ichijo,106417,70209,1 +75492,Moe,35656,1668390,11 +75493,Poon So Fong,56329,1189918,6 +75494,Mabel Vernon,49007,31649,7 +75495,Young Elise Miller (uncredited),251227,1286531,33 +75496,Bailiff,277710,1410481,26 +75497,Flora,334557,1549891,7 +75498,Nikki's Coach,13374,1291606,12 +75499,Dr. R.A. Jackson,53860,3245,7 +75500,Reed Daley (voice),27653,14416,5 +75501,Girl Screenwriter,310593,1125581,8 +75502,Uncle Cliff,32932,33311,4 +75503,Clay Roff,124042,21561,1 +75504,Mayor Bert Wicker,66881,103606,7 +75505,Celeste,127803,131734,3 +75506,Sasha,106546,36059,5 +75507,"Danny Churchill, Jr.",40916,1937,0 +75508,,357441,1503570,3 +75509,Stuart,157829,19278,2 +75510,Phil,36968,85922,4 +75511,Lisa Glendon,27970,2924,1 +75512,Aubrey Clark,98289,14015,11 +75513,Paul (13 Jahre),311301,1430486,11 +75514,Judge (as Nigel de Brulier),43875,34047,24 +75515,agente Tognon,108535,52657,17 +75516,Guernsey,32082,66288,9 +75517,Yûji Tôyama,11838,115659,7 +75518,Marco,19398,1323697,6 +75519,Tammy's Neighbor,14923,80770,3 +75520,Jackie,51736,550095,1 +75521,Social Director Curtain,29805,3463,7 +75522,Jautrite,257534,1297701,11 +75523,Ashley,317182,1215206,8 +75524,,64454,46656,12 +75525,Curly,18690,95681,5 +75526,...,224,2818,9 +75527,Krista,118497,146761,0 +75528,Drew,102961,98102,0 +75529,,31011,1161618,20 +75530,,277355,84335,11 +75531,Zoe,76757,1394344,38 +75532,Annabella,343702,1508640,14 +75533,Interviewee,32694,9188,5 +75534,Kato,250332,16103,3 +75535,L'uomo che gioca a carte con la prostituta (uncredited),43231,22477,19 +75536,Marissa,37665,118243,5 +75537,Reporter (uncredited),1726,1089759,75 +75538,Helena,2349,24072,21 +75539,Movie Director,18651,1092484,60 +75540,Don Roberto de la Madrid,18447,83148,4 +75541,Phil Hendricks,72094,49735,2 +75542,Armonty,340275,1531588,19 +75543,John Woldring,103902,59122,0 +75544,Frank,11909,25245,1 +75545,Mat,253258,6164,0 +75546,Kamal,22182,27175,2 +75547,Chris,320343,99219,7 +75548,Owner of Burning House,53417,29274,4 +75549,Advogado,42473,438076,27 +75550,Soe Hok Djin,39061,1829164,7 +75551,Iwaki's Wife,12622,555191,5 +75552,Nun,101342,1153832,14 +75553,Himself,19244,84395,4 +75554,Shrek,33495,71296,6 +75555,Sitcom Maria,246133,928347,17 +75556,Bouncer,122857,1170241,14 +75557,Punk Rock Girl,28026,41345,7 +75558,Minor Role,41597,1333881,16 +75559,Osiride,138273,22383,1 +75560,Jacob Heckum,319910,21028,4 +75561,Janie,109441,20624,10 +75562,Paolino,75336,584234,9 +75563,Helen Odom,180576,20362,1 +75564,Himself,73241,1106331,4 +75565,Anka,25646,225175,7 +75566,Witch,131689,1093516,4 +75567,Aurora,87293,1209474,16 +75568,Polonius,261439,539341,3 +75569,Elena,58011,11916,0 +75570,Sgt. Jasper Lynch,94170,13593,2 +75571,Alicia,44732,1396424,6 +75572,Sumonu,325803,1428022,8 +75573,Record Company Executive,508,1506691,38 +75574,Himself,447758,1730637,39 +75575,Jacob Pederson,3549,1019,0 +75576,Additional Voice (voice),10193,8,40 +75577,The Man,248633,1084802,14 +75578,Rolf,167874,50747,0 +75579,Tressel,46758,1605319,5 +75580,Grace Winton,41599,122910,4 +75581,Dietmar,13305,77437,10 +75582,Kaj,433082,15086,3 +75583,Princess,18392,928,7 +75584,Vincent,408024,1176475,4 +75585,Dinner Guest (uncredited),85350,1153847,80 +75586,Silverback,338518,1478053,11 +75587,Seeker Reed,72710,936403,8 +75588,Phyllis Clavering,74314,93897,1 +75589,Announcer - Griffith,921,186539,54 +75590,,54243,1366782,4 +75591,毒贩,128842,73774,0 +75592,Sahve,2172,110105,9 +75593,Patricia,1164,1681213,47 +75594,Gonzalo,136752,937631,2 +75595,Hervé Ducobu,68637,21769,3 +75596,General Merrick,330459,27632,31 +75597,Marve,92269,1216875,7 +75598,Le frère de Sullivan,82327,1073915,6 +75599,Don Arturo,70712,559377,5 +75600,Patient's Wife,51999,1247406,13 +75601,Imam,169881,52685,8 +75602,Gail,38303,8944,5 +75603,En-Joo,7555,52947,5 +75604,Ryan,107499,7498,0 +75605,Assessor,254439,1408612,4 +75606,Kate McCallister,12536,72699,5 +75607,Benoit,74689,980357,1 +75608,,247354,1279006,3 +75609,Red King (voice),30675,59311,2 +75610,Agamemnon,38027,52032,4 +75611,Unknown,381645,1860891,28 +75612,Titus 'Tick' Wills,307081,2178,2 +75613,Mary Stanton,2274,19957,4 +75614,Erica,61904,1073409,2 +75615,,260094,1302706,5 +75616,Father Christmas,37929,75716,13 +75617,Smile,33338,110509,10 +75618,Lola Prize,28170,1861051,6 +75619,Zero,73624,52583,0 +75620,Arthur,19957,3754,2 +75621,Kitten,52867,1720864,13 +75622,Will,24978,92947,12 +75623,Mr. McCauley,14750,1657360,18 +75624,Ted Summers,6933,6719,3 +75625,Polite Leader,158015,55899,4 +75626,Officer Ryan,371446,143017,9 +75627,Henchman,35026,1204712,22 +75628,Officer Sherman,9893,4495,5 +75629,2nd Lt. Lee Stockton,35392,45369,1 +75630,Lolo [ロロ] (voice),56391,565318,1 +75631,Natalka,293122,1619846,6 +75632,Maggie,11653,1615010,5 +75633,Heliopolis survivor,205584,1535054,27 +75634,Police Commissioner Mario,33338,1139069,8 +75635,Image Analyst,333352,1148627,10 +75636,Wonder Woman (voice),30061,81663,12 +75637,Paolo Polverosi,82083,120107,6 +75638,Older Sun-yi,128246,1652810,6 +75639,,293654,240545,4 +75640,Bolivian,21338,87401,6 +75641,Kero (voice),31347,124478,3 +75642,Smarty Pants Molehog Boy,21044,33706,3 +75643,Dra. Leah Serrano,327225,312722,2 +75644,Man with Stand on School Trip,31512,226829,12 +75645,Tim Thornton,31263,1119334,3 +75646,Headmaster,48207,33109,17 +75647,Monsieur Dupuis,8276,185270,16 +75648,Lieutenant Rzhevsky,63304,1190374,1 +75649,La chanteuse du cabaret (as Beata Palya),32604,1037728,6 +75650,Dick Remick,99324,100074,5 +75651,Young Dancer,57438,226178,12 +75652,,166666,1052328,14 +75653,Perry Williams,85648,988844,7 +75654,Radio Car Driver,250332,34187,40 +75655,Billy,183832,100253,0 +75656,Mrs. Angevine,46014,13962,5 +75657,Detective Nash,8617,5296,11 +75658,Reporter,52437,32221,12 +75659,Princess,24973,1747652,17 +75660,,361380,1532536,11 +75661,John,110412,1049407,3 +75662,Manchester News Reporter,12113,1634315,18 +75663,Julio,55663,186406,3 +75664,Ulysses (as Marino Mase),52705,39151,0 +75665,Melvin,30921,94926,6 +75666,Lorry,26983,7632,2 +75667,Sarah Byrd,239566,1457275,48 +75668,Sophia,159211,936508,0 +75669,Julius,8588,1318524,8 +75670,Vater Winter,178446,70457,15 +75671,Six Chick,10096,52272,21 +75672,Prof. Allan Duncan,42542,14060,0 +75673,Alan,253258,1107678,1 +75674,Tramp / Dr. Williamson,121888,139130,10 +75675,,297745,129059,1 +75676,Maria,231216,1266349,0 +75677,Harmo,31048,13726,3 +75678,Weinberg,53792,1324776,12 +75679,Mutter von Lolas Freund,61035,232204,11 +75680,Manu,8329,54532,1 +75681,Nosey Girl,23515,118529,17 +75682,Andres Montoya,259075,104134,1 +75683,Bus Driver,51999,135056,5 +75684,,19812,1441807,22 +75685,Zuschauer auf dem Jahrmarkt,94803,225292,7 +75686,Linda,297265,1466895,16 +75687,Meriadoc 'Merry' Brandybuck,122,1330,8 +75688,Himself - Photographer & Oscar Winning Filmmaker,84185,94815,3 +75689,Holly Abbott,72823,83987,4 +75690,The messenger,175331,1157933,4 +75691,News Reader,19545,1478364,24 +75692,Babychan,381691,1574335,2 +75693,Governor Pei Hong,14449,1183499,7 +75694,Takahashi,18722,553445,45 +75695,Miyamoto,402455,1260127,27 +75696,Trench Officer - Belgian,297762,157826,44 +75697,Obnoxious Deejay,27414,98169,40 +75698,,188392,89756,1 +75699,Mrs. Chase,77012,2640,4 +75700,Pauline,367147,7401,4 +75701,,244956,50656,14 +75702,Mężczyzna w tv,314371,31664,24 +75703,Haeng-Bok,87516,139820,14 +75704,Himself,23128,110920,6 +75705,Officer Houlihan / Lumberjack Billy Ryans,70863,76538,23 +75706,Archie Beaton,18283,106101,9 +75707,Kei,56191,110668,3 +75708,Queen (voice),809,5823,3 +75709,Mick Boyle,310593,1037,1 +75710,Zachariah,195068,213830,13 +75711,Janie,68387,1868457,35 +75712,Levon Villenueve,366045,7039,5 +75713,Horst Karg,295782,35382,3 +75714,Lori's Daughter,254188,1681862,19 +75715,Miss Schwartz,52867,124010,6 +75716,Dr. Max J. Eggelhofer,987,6931,9 +75717,Benzinaio,58773,55914,5 +75718,Jay Lavenson,250332,1422455,22 +75719,Dr. Igora,73933,1359997,8 +75720,Orc,370687,1676178,10 +75721,H.A.M. (voice),302960,5727,6 +75722,Sörensen,21041,36494,9 +75723,Canadian Computer Security,287281,1353911,11 +75724,Alejandro Uradi,78318,33747,6 +75725,Xiao Xia,354128,1501340,4 +75726,Doug Posey,16175,56267,4 +75727,Himself,267955,1316253,1 +75728,Herbert,369894,1107190,9 +75729,Lorenz,82327,927769,2 +75730,Oolong,39324,122373,9 +75731,Creech,391757,1602212,11 +75732,Natalja,374475,147922,10 +75733,,4266,35879,12 +75734,Mrs. Burns-Norvell,31773,13962,6 +75735,Greg Pulver,354287,1904,3 +75736,King of the Beatniks,43045,1053304,8 +75737,Maja,33786,111361,0 +75738,Vinck,87349,15387,5 +75739,Aunt,25694,1095971,27 +75740,Le commandant allemand,72279,100427,10 +75741,Beimier,168676,49487,6 +75742,Il regista,120972,228864,8 +75743,Sara,273896,1872890,0 +75744,Craig,318553,1555137,15 +75745,Arthur,44522,24684,16 +75746,Harry / Subject #20,29151,550438,14 +75747,Boiardo,356296,1902068,19 +75748,Drunk,8010,34407,6 +75749,Leila,117534,279486,3 +75750,Shari,17483,81958,12 +75751,Becky - Corny Collins Council,2976,71167,52 +75752,Woman in Store,43806,96067,74 +75753,Kendra Shaw,69315,83458,1 +75754,Nicole,47194,141036,7 +75755,,392832,67323,1 +75756,,201429,38746,15 +75757,Paige Morgan,11137,12041,0 +75758,Suzanne,114348,93897,1 +75759,Oloukine,345775,20285,2 +75760,Frankie,397422,1325716,4 +75761,Cesar Santos,209112,53066,67 +75762,Jack Walsh,18446,228,3 +75763,Lady Larken,18506,11664,3 +75764,Coast Guard Cutter: Coast Guard Guy,10780,56749,14 +75765,Mr. Green,93935,291,8 +75766,Joshua Shaw,419430,1704616,20 +75767,Henry,73474,5367,1 +75768,Lenny,28671,101541,5 +75769,Patrick Thomas,169730,28413,3 +75770,German Guide,13580,78943,14 +75771,Candy,56232,27788,1 +75772,Vice commissario Caneparo,58080,36913,0 +75773,Latin Man,102362,1530440,25 +75774,Philip Mørk,284279,73550,7 +75775,Toad Monster/Gu Gu,75948,118742,8 +75776,Princess Zuleira,82430,47901,6 +75777,Judy Jetson / Ace Lucas,38134,1158356,1 +75778,Sdenka,27409,21541,1 +75779,Judge Hart,43250,84935,8 +75780,Brent Sykes,16080,11805,4 +75781,Archer Lin,40081,1114835,7 +75782,Dirk Michaels,17654,53087,6 +75783,Stage Actor Harvey,2771,10825,7 +75784,Corporal,7454,181414,9 +75785,Deborah Ballin,46885,30123,0 +75786,Tropea limongi,43200,105685,5 +75787,Sølje,261112,1479336,9 +75788,Colonel Page,44087,11999,18 +75789,Melinda,82679,932095,9 +75790,,60316,551678,4 +75791,Matt Prater,18925,83902,0 +75792,Naomi,306952,191228,1 +75793,Pushpa Subhash Nagre,20968,86892,5 +75794,Marcel,208869,3491,5 +75795,Professor Bechstein,31984,38068,16 +75796,Olivia,47201,57905,8 +75797,Carmen,10500,6087,7 +75798,Colonia Doctor,318781,1694293,12 +75799,Chingy's Girl #1,4257,58393,15 +75800,Chloe Tainer,96936,1172491,3 +75801,Atilla,35395,98104,3 +75802,Bartender,52454,1630259,13 +75803,Nils,30583,572061,1 +75804,Undetermined Role (uncredited),43688,1086710,13 +75805,Disclaimer guy,13061,1547725,7 +75806,Intern,3782,20830,12 +75807,Donnelly,147829,120708,32 +75808,Gretchen,57680,146025,11 +75809,Clementine,20411,86049,10 +75810,Mrs. Krona,51141,123464,4 +75811,La femme forte,21348,1838900,9 +75812,Onigen,1450,9190,3 +75813,Girl with no name,85959,932764,7 +75814,Cesar,300187,115874,1 +75815,Challenger,120802,1818364,26 +75816,Captain Garbaldo,27470,3152,9 +75817,Vera – New-Age-Hebamme,75969,1372163,30 +75818,Mills,32577,1763860,20 +75819,Eunice,405882,1495763,17 +75820,Cole Black,25132,55494,8 +75821,,255898,142505,4 +75822,Avv. De Peverelli,152100,78538,2 +75823,Bud,315855,44098,56 +75824,Spartan Baby B,1271,1330746,35 +75825,Fang Jing,222216,1151657,1 +75826,Their Father,191068,100804,2 +75827,Veronica,149509,69122,11 +75828,,63215,1250552,16 +75829,Sissy,145668,557216,0 +75830,Kermit / Beaker / Statler / Rizzo / Link Hogthrob / The Newsman (voice),64328,64180,16 +75831,Pueblerina (uncredited),198795,1723112,31 +75832,Claudio,46920,59269,0 +75833,Man with Head Injury,41171,1177316,39 +75834,Dr. Malcolm Couzzens,43256,82676,5 +75835,Grant Stayton III,10780,52995,2 +75836,Ryoko,34935,81860,1 +75837,Annemarie Rotkohl,10645,10627,4 +75838,Lara,17622,37983,7 +75839,Colorado State Trooper,365942,1792102,40 +75840,Cassie Anne,21950,106763,16 +75841,Jonas,60935,571418,11 +75842,Olya (as M. Kalyonskaya),83614,565278,6 +75843,"Сан Саныч, режиссёр русского областного театра драмы имени М. Петухова",20963,86871,9 +75844,Jake,7972,21154,13 +75845,Uvlu,82492,928079,4 +75846,Jessie Brenner,211144,60072,0 +75847,Priscilla,8669,190895,18 +75848,Morrison,38770,47395,15 +75849,Juan,436,5896,7 +75850,Pastor,334527,1637374,17 +75851,Luciano Bianchi,80443,32312,0 +75852,Erwan Berruto,430365,231332,4 +75853,Okada Chiharu,8014,1183022,7 +75854,Mark,443319,1644629,4 +75855,Elementary School Girl,85350,1467505,7 +75856,Brad,14874,27128,6 +75857,Keira (singing),129533,1089691,3 +75858,Doug,15316,65121,4 +75859,Emma,338676,1348364,4 +75860,Unemployed Barfly,149509,1432440,29 +75861,Roy,418969,46772,2 +75862,Amber Spottiswood,14387,43626,1 +75863,Lucille Johnson,170603,162096,2 +75864,Carter,11509,39774,12 +75865,Burly Man,31428,78087,3 +75866,Helen Garrett,399790,989325,3 +75867,Makoto Obata,38221,18613,3 +75868,Ginger Girl (uncredited),214756,1759676,95 +75869,Gilles,302802,1385142,5 +75870,Lawyer DeWest,20644,99330,13 +75871,Priest,387399,1545667,14 +75872,Dinky,13834,61167,7 +75873,Melissa,128270,1358765,10 +75874,Juha,55257,4828,1 +75875,Duchesse de Bourgogne,152539,5416,0 +75876,"Mr. Daniels, Cumberland Hotel",147829,116661,24 +75877,Sher Khan,218898,85881,3 +75878,Edith Paper,447758,122535,11 +75879,Val,222339,184459,3 +75880,Justin Rawley,24090,58905,1 +75881,Max,138372,26048,1 +75882,Le commissaire,4948,3593,5 +75883,,257302,1714062,15 +75884,Sonny Waters,281124,170573,3 +75885,Himself,150049,1295592,4 +75886,Dr. Jansson,75204,44248,10 +75887,Hamm (voice),10193,7907,8 +75888,Mormon Boy #1,10665,448998,2 +75889,Doc 'The Butcher',38162,9979,5 +75890,Frits Vater Peder,1838,6134,2 +75891,Tim,290235,1227099,1 +75892,Himself (Roastmaster),414749,60950,0 +75893,Robbie,17622,73288,6 +75894,,37419,149320,0 +75895,Kevin Connors,51571,29313,2 +75896,Ms. Hartnett,253310,145320,7 +75897,Additional Voice (voice),177572,36821,19 +75898,Kennedy,445602,1044259,1 +75899,Preston Dillard,1976,4958,1 +75900,Leah,301334,1723621,17 +75901,Bad Ass Man,408381,1518644,4 +75902,Mrs. Della Lucas,65282,2772,8 +75903,,246829,931919,1 +75904,himself,24479,17271,5 +75905,Herself,84309,1060565,0 +75906,Barbara,58529,227938,1 +75907,Skipp,52452,146008,9 +75908,Curly Stooge,16135,79508,13 +75909,Ataru's Mother,43967,555156,10 +75910,Andrea,8888,5510,10 +75911,Maris,189621,104806,8 +75912,Lady Vishuss,47508,78844,5 +75913,Joe Biggers,42752,102064,4 +75914,Captain Cypress,140607,181879,42 +75915,Passage Workman,74314,132701,18 +75916,Eddie Chapman,363479,151975,1 +75917,Voice of Radio Fight Announcer,52437,1395871,23 +75918,Young Woman,339994,1593367,19 +75919,Mara,12432,78680,5 +75920,Spanish,61049,30416,10 +75921,Nurse (uncredited),156700,1480871,46 +75922,Palace Bartender,111479,94854,18 +75923,Judy,65603,1024412,9 +75924,Kazim,53206,556048,0 +75925,Peter,59142,3151,1 +75926,Logan (uncredited),246655,6968,94 +75927,Carl,28178,1206,2 +75928,Feride,220002,121423,6 +75929,Sointu,73099,568087,12 +75930,The German / Leader of Soldiers,104430,141305,7 +75931,Jacinto Cáceres,25376,1331804,18 +75932,Woman Bank Employee,10201,133400,19 +75933,Jean Rézeau,24685,24502,2 +75934,Concert Attendee,11172,1781225,67 +75935,,386100,1714434,17 +75936,Cal Jamison,120615,1216584,9 +75937,Betty Wilmoth,43525,5740,9 +75938,Arnie,83384,19489,9 +75939,Holly,82990,42377,6 +75940,3rd Officer Lew Melik,367006,53585,7 +75941,Paul Bougon,430058,38526,1 +75942,Hernando / TV Host (voice),123025,59784,10 +75943,Donna,15838,4461,4 +75944,Gransjö,41764,70069,10 +75945,Tom Napoli,9950,60795,3 +75946,Sir Patrick Morgan,297762,11207,4 +75947,Blue,85564,1217468,7 +75948,quartet,72640,1487398,4 +75949,Ele mesmo,448763,1848666,34 +75950,Ryan,47462,1049724,2 +75951,Da Lisi Guard,217923,1436283,41 +75952,Himself (archive footage),318224,500,5 +75953,John,291871,1297147,10 +75954,Court Bailiff,31993,1331770,40 +75955,Virginia,227306,1394420,23 +75956,White Bull,131194,8975,1 +75957,Crystal Collins,27840,76494,1 +75958,Tara,24397,99814,5 +75959,Christopher Lowe,233487,1268984,0 +75960,Carlotta Nolte,12631,37814,4 +75961,Monnk,75578,27962,7 +75962,Himself,53367,39690,14 +75963,DeeDee,20846,39126,5 +75964,Patricia,10071,34486,16 +75965,Firuz,53301,90282,4 +75966,Mr. Wesson,46729,43431,5 +75967,John Dillinger,28110,8255,0 +75968,Väyry,33481,110758,5 +75969,Glenda Esmond,74753,65284,1 +75970,MC at Telethon,3055,4361,14 +75971,Mr. McGree,26326,101377,5 +75972,Sexy Cougar,77930,1777793,41 +75973,Gekin Yashi,149515,158830,5 +75974,Himself,23319,1211,9 +75975,Holly,172520,1168702,14 +75976,Noah Dearborn,57680,16897,0 +75977,Mrs. Fenchurch,36635,106554,7 +75978,Agent Sevier,245703,1023139,4 +75979,Clinic Nurse,28421,109831,49 +75980,Brandon,252680,1274156,18 +75981,Martin,86985,571346,1 +75982,,33009,122756,4 +75983,Major General Roland Goodlow Kane,23861,12308,1 +75984,Baggage Man,56154,117036,34 +75985,Ø,11328,1348437,4 +75986,Mr. Robert,27966,102075,8 +75987,Sameer 'Sam' Hans,196852,6497,1 +75988,Hans-Joachim Klein ('Angie'),43434,71514,7 +75989,Autista,58011,122023,13 +75990,Corbett Denlon,214,51042,11 +75991,Lola Nevado,38874,25256,1 +75992,Todd,18826,1222596,12 +75993,'Big Jim' Nelson,185564,61981,7 +75994,Peter Mulligan,43896,14968,8 +75995,Mike Costigan,32716,9091,5 +75996,Lisa Kent,66881,549053,2 +75997,Theodotus,31561,2925,9 +75998,Duncan,16154,79732,1 +75999,Liz Jackson,51994,1028293,8 +76000,Frankie Parker,18446,105596,11 +76001,Jovem Piercing Nariz,70666,1051677,46 +76002,Christine,12089,39646,4 +76003,Gordon Reynolds,121234,16199,4 +76004,Pinocchio / Three Pigs (voice),48466,12095,6 +76005,Putzfrau (voice),12697,146941,10 +76006,Cameraman A,32690,96804,17 +76007,Woman in Park,44801,64734,11 +76008,Eliza Birch,146233,1208406,8 +76009,Yvonne Yvonne,96433,83488,5 +76010,Ron,216521,58544,4 +76011,Mosche,239103,110364,3 +76012,Lotus Land Dancer,32657,1288837,87 +76013,Kleber / Doctor,38987,24480,3 +76014,Jack,55343,26676,1 +76015,Party Lady,359105,1515572,22 +76016,Janice Forbes,132859,82677,1 +76017,Katie Coyle,55448,1094423,11 +76018,Stickman,14669,1574237,21 +76019,joueur d'harmonium,76651,11555,14 +76020,Connor,381008,1589595,3 +76021,Biron,376188,143725,4 +76022,Angry Man on Cellphone,339403,1383552,29 +76023,Cohn,43142,1234847,14 +76024,College Girl,356752,1841520,43 +76025,Power Girl (voice),22855,60253,10 +76026,Addy,19582,33292,1 +76027,Detective Harvey Bullock,15805,33492,5 +76028,Abuelo Matias,80280,1602312,18 +76029,Policeman at Bowling Alley,99909,96061,48 +76030,Mason Weaver,293167,60073,2 +76031,Le jeune homme interpellé,329712,1372661,8 +76032,Frank,13836,159482,18 +76033,Operator,37910,554337,4 +76034,Ye-shin,48508,21689,1 +76035,Amra,126090,1425452,14 +76036,Himself,41569,1197946,6 +76037,Cop #1,419459,1466164,15 +76038,Brendan,47959,2477,9 +76039,"George Budwell, Humane Society Representative",16214,9597,10 +76040,Melanie Bayner,41479,223027,8 +76041,Inspector Sakharam,304134,1295924,9 +76042,Albert von Allmen,16436,67010,7 +76043,German Navy General (uncredited),297762,1824296,98 +76044,Nandino Torquati,75532,269476,8 +76045,Kylin Zhang,411442,1094210,2 +76046,Himself,4140,34957,0 +76047,Mordecai,13802,7030,27 +76048,,102858,136798,4 +76049,Jimi Hendrix,19505,65829,1 +76050,Kurts datter,11328,1348446,15 +76051,Yoru Morino,39493,1029801,1 +76052,Ray- Ray,184345,98394,6 +76053,Kisako Soma,55192,33761,3 +76054,,22701,1056612,3 +76055,Fisherman Bob,14907,22016,5 +76056,,62896,147773,8 +76057,Raphaële,55853,551793,12 +76058,Magda,57866,100594,8 +76059,Inspector Byrnes,12617,5182,8 +76060,Prince Rupert,31675,10669,5 +76061,Yolanda Caldwell,78691,12519,2 +76062,Ted,408381,183765,5 +76063,Detective Homer Shaw,28663,30238,4 +76064,"(segment ""Yuki-Onna"")",30959,552343,17 +76065,5th Sister,64304,1114839,16 +76066,Seo Jin-Chul,407887,84854,4 +76067,Mira,263627,130782,1 +76068,,124597,1269474,10 +76069,,403867,85724,7 +76070,Eki,32099,108864,17 +76071,,14753,20327,17 +76072,Capt. Lawrence,26805,4077,6 +76073,Fatima Harris,150065,53056,7 +76074,Johnny Evans,70151,64212,2 +76075,Quinn,270672,90771,1 +76076,Lou,23048,52997,2 +76077,Nikola,98277,20285,4 +76078,la sirène,60824,550408,5 +76079,Shelby Lockhart,370234,1499908,3 +76080,Father Duffy,19166,2778,1 +76081,Wild Bob Cody,24559,66288,11 +76082,Ben Logan,106135,84225,1 +76083,The Father,9841,59820,10 +76084,Minister,120657,1045272,15 +76085,Chester,72431,1038379,6 +76086,le dragueur,79435,587180,8 +76087,Músico Boda,59117,114461,16 +76088,Dani,311301,1186880,1 +76089,'Hook' / Lord Carlton,866,79888,13 +76090,,316885,1662448,12 +76091,Neuro,41610,31429,6 +76092,General Serpiente (voice),1273,1356270,13 +76093,Jimmy 'The Lightning Bolt',233490,82442,0 +76094,Stephen Mundy,181876,21605,2 +76095,Ochroniarz (niewymieniony w czołówce),314371,1276014,37 +76096,Otto Hoffmeister,214081,1305923,3 +76097,Susanna,44945,202660,22 +76098,Michael,52452,17019,6 +76099,Medical Supervisor,52520,173006,21 +76100,Mrs. Gordon,237,3077,13 +76101,Hailey,240913,1371440,10 +76102,Old Man,71125,5048,2 +76103,Reporter on TV,55846,1657141,22 +76104,Magical Cottage Queen,62764,1091874,29 +76105,Danny,343934,27103,1 +76106,Search and Rescue Lead,381008,1589615,28 +76107,Reggie,225044,1210612,3 +76108,Alvin 'Al' Woods aka Onionhead,118444,65562,0 +76109,Parenting Teacher,39013,1163724,19 +76110,Zareena Khan,27480,90754,5 +76111,,390376,1620045,4 +76112,White,427680,1758537,9 +76113,Taxi Driver,34512,1570877,1 +76114,,22182,1196840,16 +76115,David Strong,181574,50464,1 +76116,Various characters,16023,34518,1 +76117,Mr. Coby,48846,100937,4 +76118,Officer Tung's detective,45505,119454,7 +76119,Achim,32601,49674,8 +76120,Minister,64685,928297,11 +76121,오경위(O Gyeongwi),245597,1299221,3 +76122,Gerasim,18178,550006,3 +76123,Secretary,79054,1298300,4 +76124,Dr. Larry Denning,85640,145535,5 +76125,Lola,42619,9594,1 +76126,Eric,192023,110026,4 +76127,Hassan,8049,53666,7 +76128,Eva,334538,38940,1 +76129,Bunny,43546,1020393,17 +76130,Piglet (voice),13682,5247,1 +76131,Le patron,53179,37609,9 +76132,Tenente Ciampini,52914,51744,4 +76133,Uncle Walter,64499,211929,7 +76134,Winters (voice),1273,2387,4 +76135,Nikos Samarakis,64725,3142,2 +76136,Laura,781,11608,1 +76137,Alan Cade,27941,93228,2 +76138,Mami Tomoe (voice),152042,1239110,3 +76139,Inspector,61966,110034,5 +76140,Go Geon-soo (고건수),269494,115290,1 +76141,August,196235,1911,5 +76142,Shanti,56901,88797,1 +76143,Bouvines,74822,71669,14 +76144,Old Black Man,10475,1886269,8 +76145,Jaco,60153,88237,0 +76146,Jack Unger,6589,50586,4 +76147,,77534,582234,12 +76148,Mariano,8063,1190206,7 +76149,Jerry,84305,21246,8 +76150,Zeynep,32926,144192,1 +76151,Emma / Death,392660,207491,2 +76152,La mère de Mélissa,59118,1768829,32 +76153,Religieuse,85883,980544,14 +76154,Michael Polley,128216,1332928,18 +76155,Daphne Ramme,85435,221581,0 +76156,Mrs. Robinson,120802,13924,9 +76157,Niall Britz,59115,61100,5 +76158,Hudebník / rozhodcí boxu / majitel panoptika,18352,1318290,12 +76159,Bruce Elcott,74525,7125,1 +76160,George,282762,1343583,2 +76161,Mom,339145,140253,3 +76162,Peggy the Waitress,329289,1436125,9 +76163,Diane,31277,25308,11 +76164,Fernando,186759,19974,16 +76165,Lizzy,5123,1231552,14 +76166,Brett Gordon,31275,1031161,1 +76167,Sir,42122,3926,0 +76168,Ruby,156,1839,8 +76169,Lola,1418,16976,5 +76170,Mr. Vivian,5060,30581,10 +76171,Dr. Pennington,19342,785,3 +76172,Joe,508,7053,7 +76173,Atkins,26405,205468,9 +76174,Jiminy,83384,999822,8 +76175,Killer Croc (voice),411802,31531,4 +76176,Sybil Dorset,27137,16859,1 +76177,Michael Rossignol,246320,583401,3 +76178,Dr. Krylie,49502,10027,10 +76179,Motel Clerk,258480,1545506,21 +76180,"Giobatta (episodio ""Italian Superman"")",68882,27433,1 +76181,Ivano,120922,266937,3 +76182,Todar Mal,14073,1105803,5 +76183,The Grey One (voice),126319,7570,29 +76184,Lucio,8053,974819,9 +76185,Saltikoff,229134,1187745,5 +76186,Lieutenant Colonel,49322,141982,0 +76187,Greg,107781,102703,7 +76188,Himself (archive footage),142478,8252,0 +76189,Le père de Charlie,270400,230400,5 +76190,The cook,1942,3611,9 +76191,Thea Lemp Crowley,124115,93970,2 +76192,Mr. Difilipo,407531,61536,5 +76193,Arn,241574,133738,11 +76194,Bruno Daley,142946,1062,2 +76195,Dowager (uncredited),120831,1329662,8 +76196,Trophy Wife,19350,58908,21 +76197,Pete,43009,129317,7 +76198,Robert Fowle,2977,29240,13 +76199,Bug,308639,1200864,10 +76200,Dr. Aldea,2009,1328108,15 +76201,Ponytail,9828,43010,13 +76202,Official,46114,1136492,9 +76203,Warren Christopher,14050,5049,4 +76204,Swiss Doctor,266856,1384501,37 +76205,Jeb,47410,138877,7 +76206,Eva Piper,343795,7517,1 +76207,"Aby, Her Daughter",125700,1838444,4 +76208,Mason Wainwright,64084,40551,5 +76209,Albert Einstein,15044,1333,2 +76210,Federale Lieutenant,263115,174454,11 +76211,Faith Andes,27114,229607,4 +76212,Odoacer,9703,3064,3 +76213,Letizia,72057,564825,3 +76214,"Vrim (segment 3 ""Voodoo"")",26811,199899,16 +76215,Secretary,98125,1410389,11 +76216,Véronique / Ludivine,49559,149876,1 +76217,Greek Officer,1966,20287,20 +76218,Joseph Fichtelhuber,170759,85785,12 +76219,Gendarme,127812,587830,42 +76220,Sir Branton,26643,16086,4 +76221,Grandmother,407531,58517,1 +76222,Krystyna,11502,69632,1 +76223,Fortress Soldier,99861,1709130,24 +76224,Jake,241742,1552954,5 +76225,Cochran,55448,1233,5 +76226,,421365,1694815,4 +76227,Adam,103332,98535,12 +76228,Rosa Fallows,371504,1266584,13 +76229,Gerichtspräsident,225244,28886,2 +76230,Gerda (voice),292014,1292273,1 +76231,Colonel Anthony Narriman,144229,15196,1 +76232,The Greater Dane's Henchman (voice),21765,11159,4 +76233,Patu,422005,1513874,1 +76234,Muskaan Thakur,45533,55061,0 +76235,Shannon,44363,131822,4 +76236,Herries Family Member,186227,32192,30 +76237,Boss' Wife,98349,1017363,10 +76238,Laurence,12446,19933,6 +76239,Himself,214756,1223657,17 +76240,Maid and Waitress (uncredited),22943,147984,9 +76241,Dr. Hamilton,19342,67524,12 +76242,Capt. Leslie Anders,17657,4774,3 +76243,Chiaki Mamiya (voice),14069,122469,1 +76244,Feedback,5123,1781813,22 +76245,Leone,162282,2166,0 +76246,Jake,24094,97463,26 +76247,Woman with largest hat,118943,998697,1 +76248,Wallace Keefe,209112,59233,9 +76249,Willy,114790,6254,2 +76250,Bosowski,8332,73538,12 +76251,Baker Margaret,62764,51544,12 +76252,Officer Dalton,70863,35521,18 +76253,Fast Food Mum,242224,1413774,24 +76254,Shahwar,8079,53979,10 +76255,,57701,107153,2 +76256,Master of Ceremonies,28170,1861055,13 +76257,Ahmed,17038,164390,5 +76258,Tom Stewart,28586,67685,0 +76259,Beauty Operator,177902,1716986,22 +76260,Patrikeyevna,83491,929658,9 +76261,,278316,588319,6 +76262,Enormous Man,14047,1392602,27 +76263,Madame Dunand,124013,146195,4 +76264,Irene,438634,1886449,7 +76265,Psychiatrist Izumi,12622,555199,18 +76266,Vickery,14615,13361,12 +76267,Jane Braxton,42252,99885,3 +76268,Kessel,81220,2394,4 +76269,Thérèse,44522,145077,12 +76270,Henry Reynolds,321039,1507143,24 +76271,School Nurse,119364,114956,11 +76272,Guardia Comisaría,25376,1331803,17 +76273,Kathy,63197,236598,4 +76274,Sir John Middleton,315010,20999,7 +76275,Menina da Mesa ao Lado2,117534,1863900,27 +76276,Lilli,12206,1417132,13 +76277,Heather Greenblatt,206296,1572043,3 +76278,Lorraine,297853,1790448,25 +76279,Brannigan,47876,12521,6 +76280,FBI Agent,46436,237348,9 +76281,Jean Norman,170936,931213,2 +76282,District Attorney,39048,121885,5 +76283,Sbire Père Noël,305455,1843660,10 +76284,Lucas Bishop,127585,78423,13 +76285,Policier,337,6556,11 +76286,Ramírez,59117,15601,21 +76287,Lucie,21778,24421,5 +76288,Vittorio,59156,37583,0 +76289,(uncredited),62567,121323,12 +76290,Charlie,150117,1214517,15 +76291,Kruce,20880,1127665,4 +76292,Lazarus,347630,1695655,25 +76293,Pisanio,240745,5723,7 +76294,Mrs. Martha Marlowe,105548,30159,4 +76295,Lieutenant Michel Denet,140276,13576,0 +76296,Detective with Danny,64928,1420544,20 +76297,William,18826,62856,4 +76298,Harpagon,11680,11187,0 +76299,Baseball Announcer,39345,85199,12 +76300,Rance Welnke,286532,456066,11 +76301,Narrator,152113,1622713,3 +76302,Ben Barber,323675,55638,0 +76303,Blockaltester,31890,42565,3 +76304,Melissa,157384,62737,14 +76305,CDC Expert,405388,1109702,11 +76306,Gertrud Tallrot,41764,6292,24 +76307,Manager Mark,344906,1226457,4 +76308,Coach,207699,86967,7 +76309,Cocktail Waitress,298,1763429,24 +76310,Harrison Lane,365942,1670767,6 +76311,Wolverton,31390,66994,4 +76312,Scorer (uncredited),16442,89704,49 +76313,Auctioneer (uncredited),43522,1075172,32 +76314,Big Pearl,38027,1762429,18 +76315,Battling Burrows,899,8841,2 +76316,Big Matt,44888,95082,7 +76317,Yee,117506,96611,5 +76318,Interviewee,369033,1410055,30 +76319,George Martin,32996,80625,2 +76320,Monashka,143876,240350,1 +76321,Lt. Steve Maryk,132961,8447,1 +76322,Eddie Plant,257344,22970,2 +76323,Dévallée,39413,145164,16 +76324,Kristin,230266,2206,2 +76325,Dave,9968,61167,15 +76326,Lorenzo,332872,3618,4 +76327,Lashan Henchman,75315,557086,39 +76328,Elisabeth Sutter,60623,20851,0 +76329,Samantha,43211,129338,2 +76330,Carl,22618,946666,3 +76331,Mirco,57965,227241,0 +76332,,455043,26756,4 +76333,Lumpy (voice),13682,77484,7 +76334,,103689,1375242,5 +76335,Emma Parker,159128,11751,8 +76336,Cpl. Nick Stavrou,44943,150664,5 +76337,Himself,22559,93215,0 +76338,Enobarbus,43902,2438,6 +76339,Medic,42725,7139,5 +76340,Typing pool manager,28131,99790,10 +76341,Prisoner,339419,1650206,48 +76342,Young Richard Stoker,86825,1271786,15 +76343,News Vendor,3580,23533,48 +76344,Admiral Ramsay,399790,55581,9 +76345,Seon-woo,92499,1686201,6 +76346,Diane,92269,1471448,13 +76347,Sanpei Numata,18148,106165,7 +76348,Carogna,182415,1601878,13 +76349,Ragbat,19495,84733,6 +76350,Aylmer (voice),27814,100360,4 +76351,John Dillon - 1861,118889,34748,3 +76352,Esketh's Maid,115109,120441,34 +76353,Torunn,14613,87736,1 +76354,Dave,22579,1182547,14 +76355,Alkis Vranas,64674,1295436,3 +76356,Fatima,28730,183919,9 +76357,Henry,96702,103449,2 +76358,Bottom,182129,42840,9 +76359,Woody (voice),10193,31,0 +76360,George Clement 'Clem' Morgan,49334,12726,1 +76361,Snow White,84184,1260036,17 +76362,Kid (as Ruaidhrí Conroy),25126,65733,1 +76363,Uncle Peter,173456,2099,20 +76364,Lin Hsiao-Yang,99599,1518599,0 +76365,Dynasty,39356,1753255,3 +76366,Art Buyer's Wife,33481,110767,16 +76367,Se-hee,132957,83036,2 +76368,Clara (voice),15242,124050,6 +76369,Amy Butlin,15639,120249,1 +76370,Hooverville Man (uncredited),921,112652,65 +76371,Lee Meyers,44027,1646,6 +76372,Federale,263115,1310386,68 +76373,Allison,57749,103994,4 +76374,Kinga 'Ki',112531,140661,5 +76375,Gina,6980,51753,5 +76376,Nephew's boss,43778,1349314,5 +76377,,199879,51936,3 +76378,Pakistani Chap,354979,1636800,34 +76379,Manager,65509,84606,5 +76380,Doctor Giving Inoculations,72638,89729,29 +76381,Lambert,227306,1394447,18 +76382,Williamson,8619,1077821,11 +76383,Alien (voice),378236,76746,26 +76384,Prince Betameche (voice),26505,11669,10 +76385,Blackie Isaacs,151431,23708,7 +76386,Harry Phillips,43117,78772,3 +76387,Miss McAdam,167073,1544913,28 +76388,Phillip,747,2440,8 +76389,Dr. Michael Straub,22076,28743,2 +76390,,260522,146601,1 +76391,Young Girl,183662,1575867,6 +76392,Lyn Walker,92848,976019,9 +76393,Mr. West,250332,5737,19 +76394,Casino Patron (uncredited),263115,1697155,93 +76395,Herself,8847,56086,6 +76396,Pat,270886,1321964,4 +76397,Wong Chit,290864,1089434,6 +76398,Guard,323675,1769802,36 +76399,Dr. Leonard Gillespie,153165,17753,1 +76400,Rose Muldoon,2611,70035,1 +76401,police major,75262,240824,18 +76402,Himself,144680,1847966,19 +76403,Detective Kagawa,49308,1351638,5 +76404,Priscilla Zello,68472,557381,4 +76405,Young Pete,294272,1686565,6 +76406,Zaheer,19625,35792,6 +76407,Avvocato di Savelli,52808,24689,8 +76408,Marsha Stern,68752,153912,3 +76409,Jacques Pasquali,382597,21175,3 +76410,Bouncer at Garden Cabaret,264309,148416,13 +76411,Joey Coyle,55448,3036,0 +76412,Walter,62838,232006,25 +76413,The Stage Manager,37719,12502,10 +76414,Rosie,121006,1011213,8 +76415,Driver,168541,1047154,13 +76416,Frankie,70006,557804,1 +76417,Carol,228028,1622660,15 +76418,Max,18955,83969,4 +76419,Himself,5638,81565,27 +76420,Hindu Priest,6557,1009503,20 +76421,Moustache Guy,351065,67979,7 +76422,,49961,143118,16 +76423,Bruce,109716,95623,10 +76424,Al Thorpe,224204,1270455,2 +76425,Hallur bókari,72596,1056192,16 +76426,,57011,227620,5 +76427,Suzy Winters,19203,56457,5 +76428,Alice,204765,132429,1 +76429,Rhonda,94725,1212644,4 +76430,,329724,53109,4 +76431,Melody,16890,9825,0 +76432,Duncan Mee,74465,19159,2 +76433,,15830,1341669,17 +76434,Jack Mercer,8292,9828,3 +76435,Stenographer (uncredited),17136,115367,10 +76436,Lord Jai,134782,1100036,3 +76437,Marina De La Pena,18056,4810,2 +76438,Bobby D,15022,52957,10 +76439,"Maryse, Antique Dealer",2861,1524414,6 +76440,Sam--Deputy,68976,120070,13 +76441,Defense Attorney,55604,14455,18 +76442,Green,36597,109157,21 +76443,Dance Extra (uncredited),31773,164809,26 +76444,Tyler's Wife,20674,58799,19 +76445,Hans,80343,568594,13 +76446,Man,319396,997235,3 +76447,Cobra Ramirez,129851,32679,9 +76448,Professor Alan Aisling,21533,2222,0 +76449,López - policeman (uncredited),37628,1553918,26 +76450,Gorilla,38404,120174,9 +76451,David Cruz,361018,1014572,5 +76452,Onkel Mike,259358,52722,5 +76453,Gunnar Brännlund,15472,71356,22 +76454,Bona,9503,145585,20 +76455,Black Mask (voice),40662,51930,5 +76456,Pietro,397422,15232,6 +76457,Kate Belfrage,35656,204755,5 +76458,Soul Lake,72710,1273233,13 +76459,Older Nate,6575,21007,32 +76460,Mother Superior,5494,23709,13 +76461,WW2 Nazi Vampire Extra,246741,1780277,35 +76462,Oberscharführer Busch,336050,1644784,8 +76463,Laura,23512,105838,2 +76464,Asylum Patient,62694,130063,29 +76465,Cameron,17926,176312,11 +76466,Gloria B.,254193,80135,5 +76467,Hacer'in Babası,80961,590781,1 +76468,,33009,29795,7 +76469,Sugihara,37959,84755,0 +76470,Reporter,270650,1359941,8 +76471,Mary - Claire's Maid,18651,399224,81 +76472,,225614,52810,6 +76473,Guy in the Museum,12453,72294,8 +76474,Reporter,365942,1260554,8 +76475,Greg Boyd,27999,34609,9 +76476,Martita,84848,931359,2 +76477,Shere Khan (voice),59803,1189304,2 +76478,Gene Hausler (as Aldo DaRe),197785,45232,4 +76479,Brian,10917,141049,10 +76480,John,30973,107398,2 +76481,Waldgeist Chochrik,14482,1164662,4 +76482,,49106,1004792,14 +76483,Mrs. Sethi,42057,85672,0 +76484,Harry Gilbertson,60307,1368800,18 +76485,Mouse,21769,96728,5 +76486,,191476,2838,2 +76487,James (voice),10198,18288,9 +76488,Joker,10753,1174365,9 +76489,Sam,10145,63982,3 +76490,King of the Dead,122,1382,19 +76491,Nebenmann,6183,48527,34 +76492,Mooleiche 2,313896,37034,8 +76493,(uncredited),101838,147739,37 +76494,Isabel Meredith,46513,8442,4 +76495,Hagen Arnold,29398,29312,0 +76496,Arnold Pryce-Jones,86600,740,8 +76497,Mr. Putski,23515,75020,5 +76498,Monika,25335,93564,2 +76499,Doc Spencer,53524,4973,3 +76500,Peggy Arden,26182,85900,8 +76501,Prostytutka,155426,1271683,16 +76502,Mental Patient,24094,97445,2 +76503,Stella Atkins,26758,96161,2 +76504,Callahan - Ticket Taker (uncredited),43522,1422458,69 +76505,John (voice),35177,5727,7 +76506,David,78028,1867731,16 +76507,Vince,18739,218321,9 +76508,Caroline Lamphere,560,7641,2 +76509,General Lone,10257,1341,0 +76510,Sara,27989,40462,2 +76511,Welcome to the 60's Dancer,2976,1752763,114 +76512,Father,99599,1074179,3 +76513,Pat,1589,17779,6 +76514,Prete,121888,102175,7 +76515,Pansy Dupont,29116,85997,13 +76516,Grace Ellis (as Cobina Wright Jr.),38461,120717,2 +76517,Jarvis Bayom,19901,75175,14 +76518,Geoffrey,10473,35769,0 +76519,Hanuma (as Hind Rostom),47324,572440,1 +76520,himself,55027,707,0 +76521,le jeune homme brun,64983,6304,7 +76522,Marja Child,354287,1816342,48 +76523,L'homme obèse,61361,1123091,11 +76524,Antiliaan,74661,572291,12 +76525,Kenny,7511,29020,5 +76526,Clover Catto,413762,220290,0 +76527,Antonio Gallenga,56853,55650,16 +76528,Shige Kaneko,18148,131013,3 +76529,Bill,80389,14329,2 +76530,Xiao-Ye Jin,95919,77304,1 +76531,Deborah Higgins,23152,82170,1 +76532,Herself,320589,262701,1 +76533,Hades,32657,4581,6 +76534,Whit,7942,5587,2 +76535,,58570,1138772,8 +76536,Young Jillian,186759,1505301,28 +76537,Brown Hen / White Hen (voice),18843,55709,29 +76538,Jerry (12 years old),244458,234983,10 +76539,Himself,376394,1559487,8 +76540,Commissario Paolo Ferro,128557,85338,0 +76541,Himself,3048,1065014,2 +76542,Mr. Chow,109439,83586,4 +76543,Wally,79935,98530,1 +76544,Teen #2,2295,824,11 +76545,Monteur,15414,1711,4 +76546,Kid (voice),82703,1504903,23 +76547,Xiao Yu's lover,187022,107775,4 +76548,Wedding Guest,306952,1511978,35 +76549,Brent,60759,49996,28 +76550,L'opérateur du cross,15712,1367049,26 +76551,Manuel,80304,94432,7 +76552,Hotelier,35395,15736,6 +76553,Herself,16800,938993,3 +76554,La merluche,11680,39142,5 +76555,Caleb,112456,84841,0 +76556,Ng Chung,182127,26724,4 +76557,Felicia Venable,46623,137007,12 +76558,,57983,235665,1 +76559,Hannukkah Zombie,7249,2,5 +76560,Assistant Director,4551,66560,33 +76561,Luther Stickell,56292,10182,6 +76562,Sergeant Major Lynn Delaney,56491,10447,0 +76563,Giggles,325189,1426656,8 +76564,Rukhsana Khan,1404,16903,3 +76565,Bartolomé San Juan,198795,975334,13 +76566,Louise Jackson,362026,302165,2 +76567,Godzilla,19545,235722,32 +76568,Madame Louet,10910,14304,7 +76569,Tethered Man,456781,972935,21 +76570,Paul Whitley,264080,9111,2 +76571,Reidun,12076,49561,3 +76572,Police Dispatcher (voice),354133,1496064,4 +76573,Luc Marchal,30527,106495,4 +76574,Der Sperber,11373,69147,3 +76575,Marek,370687,1362313,0 +76576,Nettie Finkelstein,245906,1036,10 +76577,Jang's Lieutenant,240832,1587631,35 +76578,ER Doctor,9828,59651,25 +76579,Bridgett O'Keefe (uncredited),331313,223019,59 +76580,Chan Ka Kui,9056,18897,0 +76581,Mrs. Cyrus Barrington,41591,15942,9 +76582,Jacob (voice),16366,13732,2 +76583,Eve Caron,57866,81167,1 +76584,Gym Patron,45013,1769803,53 +76585,,86321,1903058,3 +76586,Honey,118549,861,4 +76587,,64928,1673510,15 +76588,Ms. Sedlacek,335837,146859,7 +76589,Detective Fleming,255278,1244172,6 +76590,Deimos (voice),15359,31531,8 +76591,Mrs. Emma Tremont,31509,1409191,6 +76592,Isaac,186991,66957,6 +76593,Graveyard Thug,269173,563560,33 +76594,Pizzaiolo,209413,238778,8 +76595,Herself,217925,4721,3 +76596,,292062,15753,5 +76597,Yae's Father,117212,123854,3 +76598,Terrian Commander (voice),16873,38582,23 +76599,DCS Kernan,215999,42642,5 +76600,Prem,76788,261272,5 +76601,Sam Royc,43497,100588,10 +76602,Ball,83995,153148,19 +76603,Publisher (son),43432,24919,14 +76604,Ramachandran,372226,1341241,12 +76605,Colette,345925,88929,10 +76606,"Terry, George's Wife",42734,1618040,11 +76607,"Camille, la mère de Nina",52637,73828,4 +76608,Julia,120129,3136,2 +76609,Director,142798,1117983,2 +76610,Dr. Ann Possible (voice),51786,5376,13 +76611,Keith,320588,1538583,40 +76612,Mr. Cooper,250332,1291802,21 +76613,Seso,9543,55412,3 +76614,Motorviper,17421,19547,4 +76615,Monroe County (uncredited),339403,1378150,44 +76616,Vic,389630,112143,4 +76617,Rabbit,231082,63214,2 +76618,,49106,557006,7 +76619,Gerichtsvollzieher,308174,1394311,13 +76620,Dash,429200,1261694,3 +76621,Sam,73424,45407,0 +76622,Kham,110552,57207,0 +76623,Marine,33704,1254014,7 +76624,Mitch,86829,29445,7 +76625,Madame Deval (uncredited),42825,8638,15 +76626,Raymond Brocco,1247,1241,13 +76627,Captain Davy Jones,285,2440,5 +76628,Debrah,16186,39464,10 +76629,Strauss,18352,235641,31 +76630,Nurse #1,320588,1538577,25 +76631,Prime Minister,9298,5658,1 +76632,Guy Who Walks (uncredited),22447,1687936,34 +76633,Julie Dorn,20153,41516,3 +76634,John,1482,27858,1 +76635,Kassiererin Frau Sitl,217412,1275606,28 +76636,Dr. James Libbard,88320,99461,3 +76637,Endre,436343,1750192,1 +76638,Kilo,336011,1560244,12 +76639,Connie,10739,57514,10 +76640,Wilczek,511,7117,11 +76641,Rosetta,45800,11498,6 +76642,Kendall Brandon,84105,58147,6 +76643,Brownie,30708,37723,7 +76644,Defense Attorney,150712,86356,40 +76645,Meriama,36530,115534,5 +76646,Conquista,135832,680,3 +76647,Professor Wilde,184345,1539,8 +76648,Imei,2966,1521619,9 +76649,Taxi Driver,13777,75283,37 +76650,Jay Moriarity,82684,928575,1 +76651,Amanda,14008,190895,5 +76652,Party Guest,268920,932189,81 +76653,Helga's Mother,206390,1188863,4 +76654,Evil Bong / Eebee (voice),231082,63209,10 +76655,,242240,1277215,8 +76656,Hippie Mutant (uncredited),47342,1837873,31 +76657,Donna Jones,9981,61409,18 +76658,Taryn,182228,134488,5 +76659,Theodore Stephanides,44746,167449,4 +76660,Dancing Girl,77930,1743097,76 +76661,Minnie May Barry,397520,1654525,7 +76662,Policier BAC,13312,62452,10 +76663,George Burrows,36334,12310,4 +76664,Wolfgang,19371,37029,5 +76665,Gabriel Cortez,76640,17093,11 +76666,Kim,90231,1243500,4 +76667,Mechanic Enrique,16083,61535,2 +76668,Lynn,15749,68764,6 +76669,Cathy,17240,66444,3 +76670,Truck Driver,8414,171800,9 +76671,Anton Harrison,38579,80536,15 +76672,Milou,64383,77131,2 +76673,,56942,201569,13 +76674,Barbara Miller,32044,86136,2 +76675,June Glass,357851,1504646,2 +76676,Peppino Barlacchi,92586,27166,8 +76677,Queen Elizabeth I,43252,11025,6 +76678,Caporal,43000,19162,0 +76679,,121530,1518854,6 +76680,Le fils de Lino,34280,11191,12 +76681,Belvera,36247,1021566,2 +76682,The Mastermind 'Jameson',277558,23498,1 +76683,Katis Mutter,2195,23180,6 +76684,Radio Reporter,40804,32303,7 +76685,Chopper Miller,5172,6396,13 +76686,Mitch,30669,65561,0 +76687,Artie,69668,20814,12 +76688,Böse Königin,9803,22652,9 +76689,Massimo,8429,54942,14 +76690,Roberts,41597,9926,8 +76691,Himself,326255,1633757,5 +76692,Uncle Peter,384594,121578,6 +76693,,353879,933391,6 +76694,Riley,294254,1207564,29 +76695,Angela,156547,88710,2 +76696,Xiong Dun,354128,588057,0 +76697,Scraw (voice),9904,60236,18 +76698,Ingeri,11656,6662,2 +76699,Charles,319340,1077537,1 +76700,Nassau Trumpeter #2,244786,1503843,33 +76701,Ben,222890,12643,3 +76702,Himself,17302,8930,0 +76703,Chaddie,429238,1178777,15 +76704,The Guy,52034,58608,6 +76705,Dr. Cornelia Wilbur,27138,109410,0 +76706,Claphands,121824,1173,5 +76707,Min-ah,313628,1454805,4 +76708,Sr. Manuel Berenguer,140,1604,3 +76709,Chloe Adams,332567,1559151,5 +76710,Domenico Cantoni,31742,125425,1 +76711,,315252,1243537,7 +76712,Aitor,110001,24987,13 +76713,Rosie,98125,1197423,6 +76714,Sara,356461,1880339,9 +76715,Wally (voice),27300,22215,11 +76716,Madre Gómez,25376,1331811,24 +76717,Pa-pa,375599,1557178,6 +76718,Lem Jackson / Big Jones,267483,1066422,4 +76719,Oskar Buff,52475,146064,14 +76720,Bhavna Reddy,444713,86030,2 +76721,Sophie,237584,1164259,9 +76722,Con O'Shea,31165,107729,7 +76723,Cathy,157847,1632886,12 +76724,Myassa,6687,3491,4 +76725,Lau Kwok Wai / Wu,25655,70690,8 +76726,Oliver Cross,414067,1722430,5 +76727,Matthew Ryan,32540,45051,0 +76728,Gambler,33481,110769,18 +76729,Rocky Plumm,73501,430152,4 +76730,Passenger Teen,45132,1033470,23 +76731,Primadonna,111960,1010507,11 +76732,Moeder Naomi Waldack,44751,221658,8 +76733,Franco Feroci,42674,120153,2 +76734,Scoutmaster Adleman,40983,14671,12 +76735,Student's Father,1963,20264,1 +76736,Harmon (as Eddie Norris),49508,85490,7 +76737,Ali Riza,10821,1174583,12 +76738,Roland,10473,52891,5 +76739,Himself,13516,122287,9 +76740,Student,5172,1668330,38 +76741,,340961,1118994,8 +76742,Gary (Delivery Guy),156700,466505,24 +76743,Phil,38743,121142,4 +76744,Gerry Senior,84336,117108,10 +76745,Travis Preston,226672,78110,0 +76746,Mr. Crookes,41131,125556,6 +76747,Aiden,10075,12791,1 +76748,University Student,27137,1185445,8 +76749,Paul Jean D'Ur,33923,97314,8 +76750,Yann,15713,136747,2 +76751,,44129,1511938,12 +76752,Chris (Hiker),267931,971388,8 +76753,Beth,325133,1253355,4 +76754,Giudice Caltabiano,60014,1862498,6 +76755,,6935,51503,11 +76756,John Weston,53622,4165,0 +76757,Grace Poole,38684,151949,23 +76758,Stu Sutton,17003,33241,3 +76759,Christabel Cavendish,120212,3930,2 +76760,Frank,8886,2778,0 +76761,Housekeeper,195385,102371,11 +76762,,126227,42191,6 +76763,Martin Kennedy,6023,47778,10 +76764,,88273,1547790,34 +76765,Bing,27112,97248,8 +76766,Amy,47410,138879,10 +76767,Prefect,188598,1776761,17 +76768,Joel,47863,157021,10 +76769,David Talbot aka Jean Pelletier,42825,32428,0 +76770,Minor Role,28421,1472999,29 +76771,Christine,214100,1906019,14 +76772,Asaf,52150,212758,8 +76773,Vice Principal,54111,1769718,7 +76774,Clark Kent / Kal-El,49521,73968,0 +76775,Joe 'Red' Kennedy,51601,4110,1 +76776,Sonya,43891,96740,2 +76777,Dwarf,28367,97985,18 +76778,Janine,97794,1057432,6 +76779,Lieut. Red Colton,377170,81168,1 +76780,Colonel Derek Bogg,354287,1228886,22 +76781,Nancy,24625,1309424,12 +76782,Young Andy,107985,1200850,9 +76783,Shura Azarova,63304,236854,0 +76784,,58074,227385,6 +76785,,19812,34866,21 +76786,Herself (archive footage),184363,994269,3 +76787,Mr. Timothy Rooney,200447,87697,1 +76788,Saara,219335,1293818,10 +76789,"Makuta, Kongu",21379,74359,9 +76790,Helmuth,341745,23962,5 +76791,Kristin,381015,1588870,9 +76792,Aunt Sadie,8199,53970,8 +76793,Vicar,198652,186043,11 +76794,Nelson Davis,151043,15531,2 +76795,Irma Vep,29082,102846,0 +76796,Deedee Fillbrook,12759,73617,1 +76797,Angie,44754,1030923,16 +76798,Max,189888,41224,4 +76799,The King / Raven,80410,58058,1 +76800,Baker's Wife (voice),286940,86170,9 +76801,Big Ben,145244,30898,3 +76802,British Atache,85442,47857,14 +76803,Smiler (voice),378236,52792,3 +76804,Agent Melanie Hamlin,359471,11617,2 +76805,Sami,31216,1184851,14 +76806,Uriel,13653,74911,4 +76807,Headwaiter (uncredited),22584,121331,21 +76808,Policewoman,1481,1844338,29 +76809,Bennie Chan,270774,18897,0 +76810,Marge Simpson / Selma / Patty (voice),35,199,1 +76811,Showgirl,72096,1139759,55 +76812,Casino VIP,11358,1773121,47 +76813,Horigome Taicho,17895,34690,5 +76814,On Camera Musician,198277,1424215,44 +76815,Ruth,395982,182327,0 +76816,Detective Joe,402582,1637661,18 +76817,Himself,157117,1161961,20 +76818,First Radio Announcer,125736,126550,28 +76819,Roger Stuart,45679,19219,8 +76820,Timo Paasi,55167,47061,4 +76821,Charlie,53392,13848,0 +76822,Young Boy,57924,1076804,4 +76823,Russ,6963,18313,5 +76824,Hilary,10761,66556,10 +76825,Nakazawa (voice),152042,233590,11 +76826,Roman,318781,167831,6 +76827,Eddie,17258,16525,18 +76828,Doyle,118957,20402,2 +76829,Himself,229296,971001,1 +76830,Paul,344906,495827,1 +76831,,11838,20311,28 +76832,The Comtess,82817,928934,7 +76833,Sode,84508,1024337,1 +76834,Byron,55563,169384,5 +76835,Mrs. Winifred Lamont,126418,17753,0 +76836,Anand,82243,87558,1 +76837,War Pup,76341,1734187,45 +76838,Manuel,18120,82701,7 +76839,Dr Price,245700,133032,7 +76840,Mr. Chow,112708,1776121,8 +76841,The Devil,54893,140902,9 +76842,Urshu Guard,205584,1535047,18 +76843,,261871,80998,3 +76844,'Tomatoes' Woman,286521,1344716,20 +76845,Dudelman,62567,4120,6 +76846,Frida Strandberg,41764,79196,6 +76847,Young Hobo,40983,6840,6 +76848,Sam,34598,67524,2 +76849,Robin O'Riley,323149,1422263,4 +76850,Dick,23382,11155,0 +76851,Jacob's Friend #2,289712,1248383,8 +76852,Dora,49073,141759,4 +76853,Chloe,28025,9273,0 +76854,Alice Myers,365942,1529183,36 +76855,Mrs. Bellane #1 - fortune teller,21451,89587,13 +76856,Dr. Michael Slovak,336265,88547,2 +76857,Herself,140554,1707826,18 +76858,Kim Lee,1640,58930,42 +76859,Lieut. Dave MacDougall,80775,18965,1 +76860,Ronald,74836,1057912,1 +76861,,10484,144740,27 +76862,Nina Almayer,87349,935075,7 +76863,Hearse Driver,61950,222830,4 +76864,Farida,266082,1646380,15 +76865,Jessie Wyatt,64183,1378612,5 +76866,Harvey,300090,112285,10 +76867,Mike,58664,1665257,20 +76868,Head of Ladies Uplift Society,264309,1003641,24 +76869,Herself,181454,1735506,2 +76870,Nora Nielson,266373,8241,7 +76871,Silent Bob,57326,68762,14 +76872,Man #1,26358,35172,10 +76873,Sir Arthur Conan Doyle,866,10985,11 +76874,J.C. Reynolds,24619,4808,7 +76875,The Master,70057,584527,3 +76876,Riddler (voice),177271,43125,1 +76877,Von Donnen / Dr. Max Bloom,84971,13345,8 +76878,Sandrine,255913,1293459,6 +76879,Convict (uncredited),15794,1208018,18 +76880,Toddy Gowan,27986,128159,7 +76881,Simeon Beautrie,44398,11130,11 +76882,Washburn,28448,58622,13 +76883,Kalungo,48180,13660,2 +76884,Greg-ash,44680,131338,7 +76885,Tung Pin,42552,1648474,12 +76886,Titillo,79506,50004,5 +76887,Himself,13516,939073,5 +76888,Cloud Guy/Smidge/Fuzzbert/Mr. Dinkles/Tunnel Troll/Wedgie Bergen (voice),136799,118489,19 +76889,Papa La Roche / Pvt. Morin,140276,17753,2 +76890,"Count Chloride de Lime, Edna's Suitor",50775,29274,3 +76891,Alexander,156711,1349720,12 +76892,Edoardo Recchi Junior,41110,125488,1 +76893,Charlie Cooper,50364,302165,3 +76894,Ellen,17483,81955,9 +76895,Sveta Golubeva - daughter,60189,230720,3 +76896,,69278,990116,4 +76897,Agent Rami,187028,94431,1 +76898,Kannalaq,14694,82820,1 +76899,Videostore traeder,12453,1031960,15 +76900,Detective Bradley,1586,108302,9 +76901,Audience Member (uncredited),345922,1392136,53 +76902,Hazel Montgomery,33557,12899,7 +76903,Signor Gentilini,38310,120027,11 +76904,Rosie,243935,971329,1 +76905,Victoria,146216,15735,3 +76906,le père d'Antoine,9736,4289,2 +76907,Tomppa,25335,92428,0 +76908,Batistina,31542,1037918,1 +76909,Waitress,8981,56476,10 +76910,Marta,58013,223776,8 +76911,Preston,347031,1367516,3 +76912,Karine,30974,147882,2 +76913,TV Reporter,14292,976171,9 +76914,Teacher,15092,1639187,25 +76915,Anna,273084,131820,2 +76916,Mr. Billings,97683,20215,1 +76917,Baptista,78028,3122,14 +76918,Marta Acuña,36971,116587,1 +76919,Tony Zacchia,37645,22306,7 +76920,Zach,28677,91356,1 +76921,Alissa,35632,21247,1 +76922,Mike,242310,1252873,9 +76923,Lloyd Rollins,26283,1905,2 +76924,Gloria,127702,140542,5 +76925,Sadie's Neighbor,91679,1782611,50 +76926,Brian,13374,1291607,13 +76927,Jordan,1807,19199,4 +76928,donna nei sogni,302802,36322,14 +76929,Larson,242076,10862,4 +76930,Raschid Ali Khan,115109,121412,13 +76931,Mr. Rahim,286521,1232605,30 +76932,Cast Member,42852,1463148,23 +76933,Wolter,39331,122668,0 +76934,Maceo Parker,239566,64342,14 +76935,Commissioner Harry J. Anslinger,59230,8254,1 +76936,Kennealy,37084,116845,7 +76937,Don Juan Diego,19725,117556,11 +76938,Charles Subra,14765,5444,6 +76939,Vanessa Barnes-Eilhauer,72207,1745404,22 +76940,Russian MMV Driver,337339,1832096,25 +76941,Lodger Going for Ambulance,153161,98022,32 +76942,Risto,73099,124291,8 +76943,Sir Jago Larofsky,44877,25503,7 +76944,Calder Taylor,45627,113704,4 +76945,Chameli,96159,86555,1 +76946,,327225,1432557,14 +76947,Fritz,35016,116729,13 +76948,Dave,27973,20501,1 +76949,Saverio Guardascione,73827,119515,3 +76950,Titus Kinimaka,291,4329,7 +76951,Moeder Joy,58396,228518,10 +76952,Old City Cop #1,52520,1219446,18 +76953,Dilek Hanoğlu,77241,1598079,4 +76954,Jake Parker,8277,203097,7 +76955,Bert (voice),48567,190162,6 +76956,,214105,583792,3 +76957,Himself,15260,1241692,11 +76958,Mike Cagle,26376,95276,6 +76959,Simone,448763,1848648,12 +76960,Arresting Police Officer,429200,1790349,21 +76961,Paola,3405,29395,6 +76962,Casino Manager,98586,1074192,6 +76963,Sandra,10565,22185,4 +76964,Party Guest,353686,1300855,19 +76965,Princess Leia Organa,330459,1583054,24 +76966,Japanese Soldier,94135,21944,13 +76967,Lora Mae Holloway,358076,34735,1 +76968,Daniel Alvarez,79372,81970,2 +76969,Janet the Lioness (voice),38317,38225,12 +76970,,22701,1012349,9 +76971,Coot,17046,81269,9 +76972,Neighbor,2001,1781703,38 +76973,Rick Wilson,218784,5724,10 +76974,Businessman (uncredited),206647,1654739,79 +76975,Himself,419192,1290077,5 +76976,Joe,13996,13446,8 +76977,Deafmute Chick No 1,46930,137828,14 +76978,Robert Teller,168496,2090,0 +76979,,57977,69311,3 +76980,Sara,295964,1016168,2 +76981,Sam,413992,19498,0 +76982,Gerry Stanton,333663,781,8 +76983,,297560,1122173,4 +76984,Butler,16175,79918,24 +76985,Moosa,308165,113690,4 +76986,Arnold Billings: Staff of Nutbourne,83015,85935,8 +76987,Sid (uncredited),32610,106805,39 +76988,Brook Hyde,84283,1122102,0 +76989,Himself (Archive Footage),450875,1215120,4 +76990,Natsuko Kawashima,51581,126509,1 +76991,Mewasin,24709,6804,3 +76992,Detective,120932,98220,9 +76993,Lisa,78362,143316,14 +76994,Pini,48250,1525522,4 +76995,Count Karnstein,31472,146931,7 +76996,Lt. MacIntosh,35826,41217,5 +76997,Jonathan Harmon,102057,27098,10 +76998,Joe Bright,423377,117642,1 +76999,Jonathan,109391,1204672,4 +77000,Insurgent (uncredited),1726,1202546,70 +77001,Vincent Karbone,71320,15765,2 +77002,Cordelia (voice),132601,60928,2 +77003,Maria Häberle,367596,38541,1 +77004,Farmer,16182,79934,16 +77005,Jean-Baptiste Poquelin - dit Molière,66949,73713,0 +77006,Omi,287903,1039917,12 +77007,Car Crash Victim (uncredited),245703,1639803,35 +77008,Himself,276536,64188,1 +77009,Brian,11171,55493,1 +77010,Emily French,26486,3051,2 +77011,New People Leader,21159,37748,10 +77012,Rachel Lonsdale,214753,80112,3 +77013,George,22387,8730,12 +77014,Margo Klopper,46830,22489,2 +77015,Teacher (uncredited),59965,572076,33 +77016,Hubert Page,73873,47627,16 +77017,Payroll guard at chemical plant,15794,2784,10 +77018,Mason master,46982,1537642,8 +77019,Tommie / Dieter / Heinz,9673,57852,0 +77020,"Saki, native girl",38221,30471,2 +77021,Man at Dingle's Store,56154,1271340,18 +77022,"Odile, Pierre's Mother",67509,20081,3 +77023,Бибулова,409082,1659412,2 +77024,Seo Geum-ok,77117,1295462,7 +77025,Bartender,8988,150094,36 +77026,Fantasia,176085,1158419,1 +77027,Dorinda Thomas,37609,183426,2 +77028,Miles,19794,54247,3 +77029,Leonard,34496,272408,10 +77030,Newscaster Julie,286521,1472882,29 +77031,Norwegian Rat,13061,74138,4 +77032,,284154,1047269,13 +77033,Festival Goer,5759,558860,11 +77034,Hanukkah Party Guest,356752,1841530,53 +77035,Andrew,47794,233531,3 +77036,Shaman,25646,74750,8 +77037,Director Nick Fury,1726,2231,11 +77038,Dyrlæge,199374,1455077,10 +77039,"Col. Wyatt Turner, DSO MC",11046,67917,3 +77040,Alberto Colombo,85038,55914,0 +77041,Wu Qinghong,101908,74022,0 +77042,Yôko Tôyama,11838,552512,19 +77043,Bobby,38437,120460,18 +77044,Margaret,94744,107234,3 +77045,Benjamin Herries,186227,19406,0 +77046,Le caissier,274483,1367033,11 +77047,Henry Lathrop,40916,129554,3 +77048,Nick,25450,61541,10 +77049,Radio,13920,9777,0 +77050,Marie,381015,142689,2 +77051,Carrie Dollanganger,236399,1271474,5 +77052,Dot,43440,148439,7 +77053,Attorney Carl Vickers,48136,14508,6 +77054,Wendell,6977,39520,5 +77055,Lonette,46760,937383,2 +77056,Waiter (uncredited),20301,3163,13 +77057,Jackie,241855,1014696,3 +77058,Jubee Kamata,141819,3899,0 +77059,Yvonne,82631,59693,7 +77060,Placida Linero,163706,39274,3 +77061,Magician's Assistant in Magic Show,228647,1464783,28 +77062,Felicia Hardy,102382,72855,10 +77063,Katja Grabowski,315335,47785,6 +77064,Wes Jennings,46623,83810,6 +77065,"O.W. Schultz, Salesman Atlas Suspender Co.",18776,54683,6 +77066,Vederman,230295,93239,2 +77067,Goldwyn Girl (uncredited),108224,87685,14 +77068,Little Dick Raidler,167262,829,6 +77069,School Aide,9963,61102,14 +77070,Mechanic,257214,37011,11 +77071,Factory Worker (uncredited),297762,1624443,69 +77072,Barby Taviton,26533,86104,3 +77073,Linda Sayers,18047,101948,6 +77074,Abhaya Sharma IRS,444713,120430,6 +77075,Background actor,52454,1630317,60 +77076,Hobo Wearing eyepatch,40983,119230,13 +77077,Stefano,31542,1757138,20 +77078,Young Nigel Slater,52850,1332975,3 +77079,Albert Morris,4592,4941,1 +77080,Ruby Compton,15013,1639,1 +77081,Hollywood Park Guy,15092,108661,26 +77082,Ticona,277688,110531,14 +77083,Mike Desantos,33592,3008,2 +77084,Professor Cartwright,353326,40660,8 +77085,Philippe de Morannes,76703,148082,0 +77086,Sloth,18209,30676,8 +77087,Katie,121662,199931,3 +77088,Ling Ling Choi,37702,1616889,20 +77089,Madame Cheynet,227200,85366,9 +77090,Hasan,420743,1543688,9 +77091,Dr. Barrett,43806,1550,72 +77092,Charlie Norton,82134,66745,2 +77093,Helen Grant,179603,101997,5 +77094,Elna,356326,587064,8 +77095,Josh,228970,1495069,12 +77096,Catherine Danforth,8852,27539,1 +77097,Conductor,29313,31694,3 +77098,Juan,199415,545087,1 +77099,Anja,8471,55253,1 +77100,,320299,1119647,2 +77101,Morris Devereux,153397,40311,7 +77102,The Gingerdead Man Mouth,231082,112863,11 +77103,Big Ugly Bastard,107985,40478,53 +77104,Katsuhito Masaki,14829,81852,7 +77105,Bernie,331313,1174795,15 +77106,Col. Paul Hassel,27003,34277,3 +77107,The Prospector,26502,165132,15 +77108,Grenouilles Mutter,1427,8800,4 +77109,,96958,1043348,1 +77110,Kurt Lee,49514,132505,5 +77111,Grete,10500,1082,5 +77112,Guerrino,20414,128473,15 +77113,Harry Mitchel,48838,72466,0 +77114,Mary McDhui,15081,5829,2 +77115,Herself,142168,4784,4 +77116,Herself,27637,1724693,36 +77117,Woman at Station,56154,1075381,15 +77118,Lewis (voice),1267,1290,6 +77119,Local 2,84233,1580727,9 +77120,Lt. Kit Barrington,38792,56819,11 +77121,Desk Sergeant,9828,59660,21 +77122,Señor de Leon,78318,1198373,27 +77123,The Televangelist,924,15070,17 +77124,Nat,64215,1354322,3 +77125,John,71630,26171,3 +77126,Dr. Croft,96716,16407,3 +77127,Madme Dune,201749,275776,8 +77128,"Father (segment ""Kurokami"")",30959,72539,3 +77129,Orhan,270336,1052884,6 +77130,Wah's Secretary,10389,551601,12 +77131,James Morland,18093,5312,21 +77132,Woman Sitting with Nick in Cafe,14589,1051054,87 +77133,Shizuko,101929,213492,1 +77134,Forest Ranger,85196,556913,12 +77135,Exhibitionist Barfly,149509,1265674,30 +77136,Art,232462,29092,1 +77137,Alphonse Dianou,76609,579493,1 +77138,Lu Chung,44398,30304,9 +77139,Boris,429174,583284,1 +77140,Dr. Brand,107430,1903,11 +77141,Barret,107499,1093257,1 +77142,Llewyn Davis,86829,25072,0 +77143,Lucy Bell,10008,5606,1 +77144,Karstens flørt,10119,63758,10 +77145,Sue,59419,12110,2 +77146,Beverly Corbett,45156,8534,3 +77147,Duncan Weber,70736,7795,3 +77148,Richard,206296,37151,5 +77149,Le cuistot de la Calypso,332794,1765873,25 +77150,Michelle,8988,37260,1 +77151,,356486,1423664,5 +77152,Angélica,299165,1377946,2 +77153,Littleton,83588,103944,4 +77154,,31462,1429649,18 +77155,Anne Marie,377290,1643037,20 +77156,Lieberman,30995,98187,5 +77157,,28482,234655,10 +77158,Rafa,264729,1354964,6 +77159,,133783,1476855,17 +77160,One of the Zouaves (uncredited),51362,180402,3 +77161,Gabriel,438634,1886450,9 +77162,Judge,30941,136236,31 +77163,Ded Germana,79234,586221,3 +77164,Duke,83223,1332412,7 +77165,Tom Hubler,26283,14529,4 +77166,Redhead Charles,209401,81508,21 +77167,Ann Atkinson,36361,115573,5 +77168,Mr. Wopsle,121674,1796447,24 +77169,Reverend Patterson,196235,43524,10 +77170,"Die Mutter, Die Obristin",48205,41684,2 +77171,Morrie Gilbert,13823,75792,29 +77172,Wright,10900,61043,13 +77173,Big Kumara Bouncer,246741,1780267,22 +77174,Neriman,332534,1258397,5 +77175,Herr Putzfisch,9551,17266,5 +77176,Barfly,75315,1019120,26 +77177,Jean Williams,70046,27446,0 +77178,Jane Trask,76229,29644,10 +77179,Donnie,429200,1879649,15 +77180,Tracy,32298,24357,13 +77181,,172548,1152932,8 +77182,Old Garth,78094,199918,2 +77183,Jerry (Voice),14787,15831,1 +77184,Charlotte (voice),21250,100602,0 +77185,Ada,282983,16976,7 +77186,Himself,9815,59535,14 +77187,Sister Mary Theresa,110502,115366,8 +77188,Paul Dumphy,218778,1594741,13 +77189,Max McNeil,61904,1073408,1 +77190,Largeman Follower,75761,61956,28 +77191,Lewis,77875,524503,8 +77192,Yuzo,104374,72391,14 +77193,Beata,278867,1605912,10 +77194,Coach Driver,10915,16318,8 +77195,Mr. Whicks,33789,3801,7 +77196,Mihir Vora,4253,35792,5 +77197,Sheriff Brennan,183825,33856,15 +77198,Old Woman,49018,1599752,14 +77199,Asobi nakama (Friend),28268,1256822,12 +77200,Luc,394645,76292,6 +77201,Thea Dixon,19794,49265,0 +77202,Lieutenant. John Delahay,37238,26847,4 +77203,René,85883,1293915,5 +77204,Girl in Coffin,17240,117656,5 +77205,Swedish Chef / Rowlf / Dr. Teeth / Pepe The Prawn / Bobo / Foozie Bear / Whatnot Farmer / Muppet Gary (voice),64328,64182,23 +77206,Albert Malbert,27053,1460959,18 +77207,Barry/ Dill Pickle (voice),109451,12095,9 +77208,Sajana,107445,1041617,2 +77209,Railroad Fireman (uncredited),15794,117006,22 +77210,Lei Yifang,264264,109434,3 +77211,Irène,63989,17522,0 +77212,Barbara 'Boo' Brinker,107593,133730,3 +77213,Mari Collingwood,18405,60072,5 +77214,Tina,10900,67710,16 +77215,Dr. Richard Sayles,30307,34243,1 +77216,Paddy Ryan,17687,10806,7 +77217,Leila,60677,1244703,6 +77218,,264036,1163602,9 +77219,Reaver,263115,1377042,21 +77220,Roger,39053,40275,9 +77221,Kári,87229,18819,14 +77222,Bhajandas,96159,110099,18 +77223,Sue Channing,28452,31347,8 +77224,Mark,124501,1112036,5 +77225,Jersey Deado,49524,1291696,22 +77226,Minor Role,43811,1176932,71 +77227,Clarissa,27457,130307,3 +77228,,47046,1601528,4 +77229,German Soldier,19996,1764168,54 +77230,Princess Fiona (voice),48466,6941,1 +77231,Barton Snode,13600,13014,5 +77232,Felice Bonnard,178587,7520,7 +77233,Parking Lot Woman,274479,1371551,39 +77234,Ms. Paul,16240,80180,3 +77235,Zog,64961,5813,6 +77236,The Priest,13437,1311371,7 +77237,Piper,9928,29220,5 +77238,Amedeo Amedei,121510,129589,0 +77239,Azari,14613,167756,3 +77240,Sam Winthrop Putnam,40693,9068,1 +77241,Susan Myles,69266,84762,1 +77242,Kyle Sackett,25736,13994,4 +77243,,14217,20327,13 +77244,Howard,132363,18288,21 +77245,Joe Jeanette,921,85170,15 +77246,Lee Craig,29398,16126,5 +77247,Himself,61487,1428,10 +77248,1920's Lady (uncredited),77949,1674664,29 +77249,"""service station"" advertising voice",55495,1839575,21 +77250,Hanna Reitsch,613,38371,27 +77251,Huntz Hall,139718,33024,20 +77252,Milton McClane,31448,17421,1 +77253,,31462,553735,29 +77254,Brian,73565,75711,10 +77255,Schafftaler,122487,1646,6 +77256,Er Panza,79506,560294,4 +77257,Jake,291413,1286744,5 +77258,Kitty,24685,37645,12 +77259,Zrik,341559,1496479,2 +77260,Salesman,27549,1720933,20 +77261,Ty Cobb,61225,1153612,3 +77262,Tina,310602,1553544,13 +77263,Hannah,341174,1611582,16 +77264,Herself,366696,1753510,27 +77265,Belle Joplin,142984,13307,2 +77266,Tuula Virta,55167,1091500,1 +77267,Sadie,69668,34917,17 +77268,Trunks Briefs,39107,1686,2 +77269,Wo,13807,72731,3 +77270,Steve Kellerman,30385,106194,1 +77271,Woman on Train Opening Window (uncredited),52440,8232,26 +77272,"Becket, Butler",62720,95733,7 +77273,,88491,985080,10 +77274,Joe,121329,80875,3 +77275,,210068,86023,9 +77276,Giovane Cristo Bedoya,163706,549833,6 +77277,Doorman,31993,1422328,29 +77278,Elizabeth,36421,106986,1 +77279,Female hostage,11636,134855,29 +77280,Catherine Morales,241239,1306572,19 +77281,Cleri Dante,46567,1008489,13 +77282,"Paul Herbert, Telegrapher",27443,34610,10 +77283,,154207,198,2 +77284,Ms. Gleason,138372,1081136,5 +77285,O'Hara,176143,96257,5 +77286,Linden (voice),16962,52718,3 +77287,Bit Part,18651,1467395,32 +77288,Pvt. Colombo,39519,8257,5 +77289,La femme coursier,343702,1508641,15 +77290,Little Girl,2567,1674603,44 +77291,,391778,648087,10 +77292,Maia,70119,1814103,9 +77293,Motero ochentero (uncredited),140,1576798,19 +77294,Le vendeur,446345,1774375,3 +77295,Pilot Tex Rader,15807,120265,7 +77296,Spinster in Boardinghouse (uncredited),52440,97988,28 +77297,Nieto,28063,98485,6 +77298,The Fixer,463906,51755,2 +77299,The Trickster / Sinestro (voice),353595,2,0 +77300,Georgie,1640,18299,25 +77301,Deputy Rick,27358,235783,5 +77302,Bugsy,85644,50762,2 +77303,Bank Guard,8247,1573505,19 +77304,Alexis,168031,10922,1 +77305,Lotso (voice),10193,13726,2 +77306,Sammy,301368,165630,8 +77307,Frankie Irish,48949,25579,10 +77308,,104810,549035,3 +77309,Mina 3 yrs old,246127,1508657,16 +77310,Solís,59117,19024,4 +77311,The Beauty,443007,1763916,4 +77312,Fei,21519,62410,1 +77313,Gardner Hubbard,67375,11169,3 +77314,Holt,55152,565349,12 +77315,Pemba (voice),13354,154657,8 +77316,Padre di Otello,60046,26263,5 +77317,Joe,426264,1399124,9 +77318,"Watson, the Brokerage Firm Clerk",90799,96722,8 +77319,Alfred,125249,134268,4 +77320,Tatu,422005,1535193,0 +77321,Nicola,82662,17839,0 +77322,Upscale Restaurant Patron (uncredited),354979,1636799,87 +77323,Angel,37609,1289332,11 +77324,Edgar,152989,1179890,28 +77325,Olympia,35396,114255,0 +77326,The jealous boyfriend,403429,592227,12 +77327,,166253,230977,6 +77328,Marisa Morales,98582,1031567,10 +77329,Willadeene Parton,426670,1254396,5 +77330,Alexandra,66584,234809,0 +77331,Tad,54660,12708,7 +77332,Willie Stark,1717,2228,0 +77333,Hoodlum #2,43656,11160,12 +77334,Dr. Anders,233639,5844,0 +77335,Eddie,125759,95604,3 +77336,Lia,31922,3124,1 +77337,Mr. Kramm,92269,101898,11 +77338,Telephone Operator (voice) (uncredited),111042,3149,14 +77339,Jackson,39072,122029,0 +77340,Brooks Voight,47540,825,6 +77341,Casey Ballenger,57326,149402,3 +77342,CAOC Analyst,1726,34544,60 +77343,Macullum,38654,82547,15 +77344,Guardia 1,31299,1181030,15 +77345,Chester (as 'Rags' Ragland),90465,129549,3 +77346,The Postman,95169,1104843,8 +77347,Don,142061,23680,7 +77348,Lucinda Cavender,35564,156972,2 +77349,Narrator,211220,1195111,0 +77350,Patsy - Age 2 (uncredited),80941,952986,29 +77351,Willy Angerer,16436,15121,4 +77352,Judge Mathews,43829,1616896,45 +77353,Amiga de Katrina 2,448763,1848658,23 +77354,Party Guest (uncredited),33112,50764,14 +77355,- Marvin Black aka Mat Mathews/Matt the Mute,22602,88978,2 +77356,Tung,25074,230776,15 +77357,Denton Offut,43806,34238,12 +77358,Jess Thayer,397422,1245,0 +77359,Peg Parker,218784,3234,5 +77360,Bobby Terry,13519,7623,34 +77361,Animal Shelter Receptionist,54662,1605144,5 +77362,Johnny,73474,929509,3 +77363,The original Ultraman,418029,1073691,7 +77364,Ann,246127,8791,3 +77365,Reece Tenneson,262841,2879,3 +77366,,359807,581662,5 +77367,Tenente (come Alex Partexano),57918,1079514,8 +77368,Greg Lipstein,120802,9629,8 +77369,"Timyosh, the Ukranian",85715,592961,0 +77370,Jerry Wang,38356,83586,2 +77371,,12622,554242,29 +77372,Linus Rawlings,11897,854,9 +77373,Largeman Follower,75761,79592,31 +77374,Nadia,390526,998225,7 +77375,Young Mrs. Miller,151062,14668,3 +77376,Maid Jean,11839,5826,1 +77377,Percy Byshee Shelley,3072,227033,5 +77378,Rancher Blaire,75315,43836,12 +77379,Check Out Girl,146233,1071346,18 +77380,Kate,258251,1196959,3 +77381,Sir Jasper Herrick,28425,82488,6 +77382,Faizal,76788,580224,9 +77383,Extremis Soldier,68721,1544395,88 +77384,Baby's Sister,381691,1665414,12 +77385,,206157,14782,5 +77386,Charlotte Braun,96713,930621,0 +77387,,88953,1537393,19 +77388,Major Loring at Hospital (uncredited),52440,19329,19 +77389,Extra (uncredited),3059,99378,55 +77390,Aaron Roman,64972,240127,1 +77391,Breck Coleman,42640,4165,0 +77392,Senmut,24973,81180,10 +77393,Magda / X27,73420,2896,0 +77394,Pak,29168,1709734,5 +77395,,348315,211101,6 +77396,,45441,72606,13 +77397,Bartender,78691,1802971,18 +77398,Tobias Hardmann,41619,3872,5 +77399,Nicky,406052,240725,2 +77400,Ramsey,168259,1251069,10 +77401,Executive,262841,1744759,31 +77402,Wes,61644,997610,1 +77403,Sotiris,374021,590899,11 +77404,Stephen Green,24094,53209,8 +77405,Jack,297702,117484,1 +77406,Dr. Greenburg,236324,967384,16 +77407,Nekhoda,142770,237284,3 +77408,Coach Addison,73527,64670,5 +77409,Zina,64393,239165,1 +77410,Frank,11376,9953,1 +77411,Nico Velli,140652,997406,4 +77412,Maureen,85435,1133349,9 +77413,Drug Lord,17282,104331,1 +77414,Elsa,88005,200163,18 +77415,Luella,272072,1324633,5 +77416,Adam,143240,82311,1 +77417,Colonel J.F. Merril,3686,33549,5 +77418,Tailor,25074,1554774,23 +77419,Simon the Pharisee,235260,225473,16 +77420,Giant Warrior,310135,1501945,15 +77421,Sanae Oikawa,47002,1133641,4 +77422,,31018,5658,0 +77423,,32158,1020867,3 +77424,Jesse James,259975,101172,3 +77425,TSA Officer,258509,1332680,28 +77426,Elizabeth Wilkins,45211,41118,5 +77427,Mike (voice),159824,17039,11 +77428,Engill,26880,2310,4 +77429,,398452,1240284,3 +77430,Count Miguel de Ribera,66967,14822,3 +77431,cameriera di casa Spagnolo,142320,223776,28 +77432,Sally,53949,55703,10 +77433,Mrs. Derringer,84903,88871,5 +77434,Chinese Hooker #2 (uncredited),15092,239954,89 +77435,Magician,242224,1413773,23 +77436,,48882,1191198,2 +77437,Col. Sugiyama,39519,136548,7 +77438,Mona Franklin,376660,26467,4 +77439,Waiter,29610,15860,15 +77440,Rezar Kabashi,277237,1654742,11 +77441,Agent Norris,42941,102315,9 +77442,Young Gabriella,11247,1776454,25 +77443,Dancer,19995,1207274,58 +77444,,153420,984866,2 +77445,Mary-Ann,74,502,2 +77446,Himself,89774,937782,0 +77447,Herself,377151,1630877,8 +77448,Stacy Adams,229221,78902,6 +77449,Tom as a Boy,96702,1776671,7 +77450,Juliska,158947,1784286,9 +77451,Bouncer,5759,1741925,8 +77452,Shata,24424,132106,2 +77453,Chief of Internal Revenue Service,52864,88672,10 +77454,Gitano,317168,1090678,7 +77455,Tom Turpin,142984,104035,4 +77456,Infected,278706,1334334,8 +77457,Major Tanya Goodman,44661,131183,4 +77458,Mary Baxter,348611,67837,6 +77459,Anna,79611,587622,3 +77460,Lee Davis,26801,87697,0 +77461,Beatriz's friend,332872,1207977,34 +77462,Ted Bell,53999,97844,13 +77463,"Ernst Udet, Flieger",122435,102673,3 +77464,Old woman,40346,1148003,10 +77465,Mrs. Emily Hardy,116232,117414,4 +77466,Construction Worker,60965,139885,20 +77467,Bracy,27432,143439,2 +77468,Femme couple,337107,81747,5 +77469,I. Landem - Realtor,141868,14419,6 +77470,Ella,339116,1354992,10 +77471,Li Chou Kou,21519,1109778,10 +77472,Lasse,76846,56397,0 +77473,Ethan,257214,115730,1 +77474,Charlotte,18392,24967,0 +77475,Selma,76011,89101,7 +77476,Miki Saegusa,12561,50655,3 +77477,Ronald's Driver,10362,1691380,46 +77478,Daisy Harris,89145,103908,7 +77479,DJ Tanner,13280,156011,10 +77480,Dusk,17681,35157,6 +77481,Dr. William Jenson,172520,1179423,10 +77482,Sara Quinn,29151,86034,0 +77483,Hideyoshi Toyotomi,209032,9717,5 +77484,Newspaperman,3782,1200874,23 +77485,Stage Director,43131,34747,5 +77486,Social Worker,5123,968746,53 +77487,Amanda,221240,29870,1 +77488,Lenore Cash,142402,1117074,7 +77489,Lubrano,41427,126451,14 +77490,Sam Baker,46184,135356,6 +77491,Drunk at Bar (uncredited),61644,78021,18 +77492,Loulou Barrier,99313,24299,4 +77493,Beach Bum,46020,102429,8 +77494,Adele Lack,4960,2229,4 +77495,Mongolian,68737,1259945,32 +77496,Himself,51311,1109536,3 +77497,Göran,82448,569860,19 +77498,Kamalkant Kakkad,33556,105872,3 +77499,Reporter,921,285269,32 +77500,Omar,96793,94713,4 +77501,Whiz Girl,170517,8437,5 +77502,Bárbara,34588,1014122,4 +77503,Gun Dealer Pete,68750,113781,14 +77504,Mère,2566,26101,4 +77505,Mildred (voice),1267,9780,2 +77506,Halawani,336029,52685,2 +77507,Maestro,22182,88474,6 +77508,,236737,1124052,14 +77509,Goku,39103,103551,10 +77510,Thai boxing - tuomari,101838,1029103,31 +77511,Vian,332936,48,1 +77512,Sanna,35002,12024,0 +77513,Elder,47410,101328,14 +77514,Sally,63578,192908,5 +77515,El Johnny,41298,104879,4 +77516,Night / Nam,427680,1758531,1 +77517,Iouri Kohler,290365,1621410,9 +77518,Gospodin na plaži,148034,1313311,12 +77519,Luo Yusheng,12276,73774,4 +77520,The Maiden in Black,212481,120888,4 +77521,Kit Latimer,97829,14870,2 +77522,Slutty Sister,26688,96031,25 +77523,Saga,13391,222342,13 +77524,Gavrilov,83459,127372,1 +77525,Thad McCloud,212713,4091,0 +77526,Gordon Ripwell,109441,4966,4 +77527,Byung Hoon,24756,62833,5 +77528,Usopp,176983,68472,3 +77529,"Lovas Imre, szocialista",86732,146820,16 +77530,Model,447758,1457604,31 +77531,Stian,24821,111542,15 +77532,McDermott,120109,30512,5 +77533,Police Sgt. Walt Leznicki,131861,19106,6 +77534,Harry,84993,91486,7 +77535,Fabrizio,18897,119355,6 +77536,Landlord,54514,120243,6 +77537,Constable Burgoon,176867,1055686,16 +77538,Roger,26142,93795,14 +77539,Elmer,51303,8635,0 +77540,Girl in Panama,110887,1527308,8 +77541,Kazimierz Malinowski,81223,568272,4 +77542,Dr. Gibbs,82781,100632,8 +77543,Millie,168217,96470,6 +77544,Bikini Girl (uncredited),88005,1644660,31 +77545,Arash's Wife,91679,1782615,57 +77546,Careu,42476,110436,10 +77547,Gaderin,248933,1284243,12 +77548,Carl,18035,82624,4 +77549,Joey,202337,6240,1 +77550,Dolly,8079,53980,11 +77551,John Kang,172259,11366,0 +77552,Hamm (voice),77887,7907,16 +77553,Anchor Bill (voice),142061,54043,19 +77554,Marinella,265226,1524907,4 +77555,David Cunningham,293660,1376110,20 +77556,George Martin,43419,7125,6 +77557,Mr. Leonard,116977,68812,13 +77558,Young Nancy,332567,1677481,9 +77559,Patch,89481,23587,3 +77560,Neera (voice),16866,10860,2 +77561,Justin Schumacher,13280,6213,0 +77562,Horny Teenage Cashier,268920,1682013,101 +77563,Peter Lindner,87514,29095,12 +77564,Jędrek Kwiatkowski,155325,1616632,3 +77565,Murder Victim Yaşar,74879,1001772,7 +77566,Sophie,169758,109156,3 +77567,Ugo!Ugo mio!,36236,1108286,26 +77568,Gigi Ortega,237799,35137,0 +77569,Dr. Eden Minerva,43923,19492,3 +77570,Newspaper Reporter,31899,143533,36 +77571,Sam,362057,966753,3 +77572,Psyholog,57209,83836,2 +77573,Mr. Boats,2771,87119,12 +77574,Nicole Gagnon,270886,964459,0 +77575,Soldier 1 (as Michael Duncan),52034,237172,7 +77576,Huriye,284250,1718008,1 +77577,Walter Cobb,32790,138876,15 +77578,Vant,339944,1821365,10 +77579,Martina,56647,224728,1 +77580,Inspector,52696,1414640,4 +77581,Carol,305342,2453,4 +77582,Thomas,362180,1585712,6 +77583,H7-25 - extraterrestrial child,10770,66645,2 +77584,Réceptionniste hôtel,152989,1171394,20 +77585,Field Nurse,220674,146012,12 +77586,Watkins (uncredited),28433,2782,16 +77587,Hysteric / Stocky Woman,71668,1407899,13 +77588,Anya,20842,245858,3 +77589,Dr. Frank Griffin,28421,100589,3 +77590,Hinkley - Secretary,80771,104805,8 +77591,,217341,224,1 +77592,Cafe Owner,2998,8496,2 +77593,Joe Stoddard,82781,168649,5 +77594,Myrna,61908,1468833,23 +77595,Mike McCoy,18690,21457,0 +77596,Tiffany,139455,54219,9 +77597,Vera Del Bosque,116312,95655,10 +77598,,148615,81442,11 +77599,Sanandra,43656,1219489,7 +77600,Toby,68387,172833,20 +77601,Bartender,198277,172053,11 +77602,Agent Falco,266433,1368970,5 +77603,Restaurant Patron,77930,1754282,74 +77604,Catholic Priest,1165,1006167,22 +77605,Claudia,106944,70119,1 +77606,Gena,203780,131207,3 +77607,Pilot,52485,161500,6 +77608,Unamused Kid,15022,206888,29 +77609,Barry,275696,85924,3 +77610,The Beachcomber,413669,112364,3 +77611,Joyce Thompson,329010,205783,1 +77612,Vuletićev otac,382873,1496908,10 +77613,Real Painter,101325,62100,14 +77614,,315467,488,7 +77615,Markov,55628,14501,3 +77616,Secretary,270650,1359960,28 +77617,Caliban,263115,39189,4 +77618,Young Billy McComber,51209,227230,20 +77619,Howard McLaughlin,14012,133212,4 +77620,Simon,60269,26060,25 +77621,Moïse,337,6547,1 +77622,Buford 'Bubba' Brownlee,14510,15070,2 +77623,Seaman Grainger,257081,131003,21 +77624,Dakota Cunningham,429238,62168,2 +77625,Dick Parry,87060,33267,2 +77626,,133783,1476850,12 +77627,Editor Asai,32690,145251,9 +77628,Ashley,314283,1294070,6 +77629,Satché,110381,1985,0 +77630,Megan McDurst,138372,1050104,8 +77631,Zina,83475,616015,5 +77632,,353616,1246972,7 +77633,Claudius,106848,29545,3 +77634,Khanin,83491,1190345,2 +77635,General Ross,43155,17756,5 +77636,Diane Davis,15486,78261,5 +77637,Foreign Agent,43833,1462634,36 +77638,Sahaftaki Kadin,37586,130400,3 +77639,Courtney Callum,24801,113926,1 +77640,Himself,374460,2440,5 +77641,Predator,91548,53279,6 +77642,Mitsuru Watanabe,49258,20332,0 +77643,Himself,9951,60830,2 +77644,Laura Mayfield-Bennett,74549,33653,1 +77645,Potiphar (voice),16366,19151,6 +77646,Rose Phipps,14063,69122,0 +77647,Kyle Hunter,14782,107040,5 +77648,,413644,1240639,8 +77649,Philip Kempermann,83729,32426,2 +77650,Herself (archive footage),318224,3897,7 +77651,Elvira Fattigan (voice),13798,123464,7 +77652,Jacob's Mother,226140,170741,16 +77653,Detective Kovacs,41759,33492,2 +77654,Sheriff Dan,149910,37980,0 +77655,Choo Ye-ri,435366,1741340,8 +77656,Freyja,7237,52147,10 +77657,Ertan,10565,66044,0 +77658,Herself,253337,233503,17 +77659,Stoker,1116,1896872,37 +77660,Bob Laney,40221,27736,2 +77661,Deputy Wallace,383538,1498700,23 +77662,Member of Kay Kyser Band,80720,34085,17 +77663,"Heidt / Tim, the Doorman",17136,64212,4 +77664,Prinz Ludo von Gundlingen,313896,1145462,13 +77665,(voice),16137,79561,16 +77666,Glan,26873,24374,13 +77667,Lt. Carson,152748,1162439,15 +77668,Dancer,10096,1622614,42 +77669,Meester Henk,115929,1064508,10 +77670,Michal Ardan,41213,144141,14 +77671,Valet,51209,227229,18 +77672,Cameriere,106256,101549,9 +77673,Karl-Heinz Zimmer,3476,14277,5 +77674,Daniela's lawyer,81541,25816,5 +77675,,411081,206661,5 +77676,'Creeps' Binder,14589,69026,12 +77677,Arja,39308,930765,8 +77678,Protester (uncredited),209112,87443,147 +77679,Shiv Gajra,280690,85047,3 +77680,Madeline,37609,1811911,15 +77681,Zombie,246741,54494,12 +77682,Spyros,47792,932886,0 +77683,Mr. Taggart,43811,30234,4 +77684,Vachel,39982,1229258,8 +77685,Ship Computer Voice (voice),70981,130081,23 +77686,Seth,4592,190920,19 +77687,Louis,59163,23385,1 +77688,Milan Daneker,339145,6283,1 +77689,Henry,255278,2224,1 +77690,Zane,62522,58924,4 +77691,Reporter,127812,144381,43 +77692,Sócrates Espina,26864,96480,5 +77693,Dileepan,40998,88817,4 +77694,Jake Plummer,45273,23346,2 +77695,Jiří,26826,143620,2 +77696,Zeb Calloway / Narrator,43367,50971,3 +77697,Kim,228676,57514,3 +77698,Kurita's father,143946,131020,25 +77699,хозяйка,63449,1737549,1 +77700,Pupa,193893,298410,5 +77701,Albert Loomis,70192,45291,2 +77702,The Girl,360592,1512181,5 +77703,,293122,49491,2 +77704,Reporter on TV,44943,1091772,28 +77705,Sir Clorex (voice),146381,3131,2 +77706,Sidney's Mother,13092,74155,1 +77707,Vikramjeet,5319,35818,6 +77708,Detective Chemelinski,146233,156874,19 +77709,Chris Duvall,127803,212809,0 +77710,Snowboarder,206647,1599265,58 +77711,Goofy (voice),15653,84213,0 +77712,Hired Hand,219335,222303,14 +77713,Capt. Kugler,120837,229609,9 +77714,Kurt,293970,212604,6 +77715,Allison (6 years old),58462,101559,16 +77716,,105703,81174,8 +77717,,63326,2234,5 +77718,spettatrice del talk show,142320,1534370,34 +77719,Al Smedley,62761,94808,11 +77720,Renata,377158,1254517,2 +77721,Johann Strauss Sr.,280004,121003,2 +77722,Ganesan,40998,1666852,10 +77723,Charlie-27,283995,10182,28 +77724,Religious Mercenary,42764,128677,9 +77725,Il signore che parla turco,57996,47039,15 +77726,Julie,64239,40938,3 +77727,,379959,1573177,2 +77728,Vocals,2143,132896,18 +77729,Marie-Alecia 'Alice' (voice),44874,74360,2 +77730,Woman at Pump,424600,1704663,21 +77731,Jack,136386,1060136,6 +77732,Inspector Clancy,118948,85996,2 +77733,Bär,13305,77436,8 +77734,Mitch Willis,138308,110204,6 +77735,Chabelita,45191,949078,8 +77736,Anthony,142115,1291254,4 +77737,V-Section,369885,1651419,60 +77738,Arnold Rothstein as young boy (as Jim Baird),43022,94320,12 +77739,Toyo Haynes,118131,89933,1 +77740,Anthony Cooper,218778,112476,3 +77741,Louis,242097,4121,5 +77742,Jake,19342,101017,9 +77743,chieftain Ignat Burnash,41979,1190191,4 +77744,,307649,97335,6 +77745,Dominik Silva,277968,6784,14 +77746,Stephen the Giraffe / Tourist with Video Camera / Rhino (voice),10527,1448984,28 +77747,Lil Adonis,109417,1277246,12 +77748,Dancer,11247,1748182,56 +77749,Nurse Daniels,24150,6944,17 +77750,Saki Morimi,35435,221773,13 +77751,,441881,52974,6 +77752,Captain Nils Helstrom,43149,131046,3 +77753,Doc,121824,4690,3 +77754,Sakura Haruno,16907,82057,1 +77755,Roxanne,2309,6161,19 +77756,Lead Woman,1251,239955,16 +77757,,189364,31699,1 +77758,Capitanul Andrei,112675,122740,3 +77759,Dr. Jordan,20983,23629,1 +77760,Lexi,13561,1194968,3 +77761,(voice),217057,15762,7 +77762,direttore d'orchestra,43649,120117,3 +77763,Gi-Joon's brother-in-law,64882,1243892,11 +77764,Johannes,8888,37244,7 +77765,Receptionist,26405,79711,11 +77766,Pierre Arrignon,65718,11544,0 +77767,Jody,20439,15012,4 +77768,Mrs. Snow,34078,132608,3 +77769,Pete,444193,53400,8 +77770,Aaron,98557,1241977,7 +77771,Hotel guest,379019,1817100,14 +77772,Judy Miller,94251,132493,1 +77773,John P. Tedesco,53792,89091,5 +77774,Uranus,11633,114739,6 +77775,presidente ItalianAttori,302802,129020,21 +77776,Art Teacher,38322,1800833,24 +77777,Mexican Lieutenant,41611,87753,7 +77778,Mrs. Dance,60505,200581,7 +77779,Burgdorf,139862,239277,2 +77780,Mr. Cubano,18208,58541,8 +77781,Aramis,64044,238489,2 +77782,,19812,231064,18 +77783,Lindy Newton,9785,59242,11 +77784,Scholle,8064,53845,6 +77785,Danni,78383,74618,1 +77786,Irene Menéndez Hastings,25376,93647,1 +77787,Dunlop,55846,18616,5 +77788,Elena Petrovic,116306,1063269,0 +77789,Emilio Nicotri,333884,25819,1 +77790,Glenn,289720,2963,1 +77791,Cadet Col. Sylvester Dusik,110502,2770,6 +77792,Samaritan Woman,30973,107403,11 +77793,Beth,371003,1544339,4 +77794,Jimmy Whittaker,104297,158152,3 +77795,Udea,7234,52124,3 +77796,,109587,1049342,8 +77797,Rani,20916,86780,3 +77798,Esposa de Lencho,42502,1542411,10 +77799,Robert Spencer,50662,65561,1 +77800,Barker,43809,1422110,43 +77801,Connie,157847,1049938,7 +77802,Campbell-Mandare,131360,13346,5 +77803,Pablo,60153,230649,1 +77804,Ugly,78094,94059,5 +77805,Mailman,3937,30530,9 +77806,Frances Hawtree / Z-1,120837,89731,0 +77807,Sun Shucai,12289,1031246,11 +77808,Egor Kremnyov,29299,143709,0 +77809,Governor Embry,66881,932663,16 +77810,Agent Strahm,11917,50020,2 +77811,Businessman,55433,222373,6 +77812,Youth Centre Adult,352890,1561251,19 +77813,Norris,25528,1120221,12 +77814,Ramesh,69404,85523,3 +77815,João Paulo,21752,583439,9 +77816,Midget,1969,1120516,13 +77817,Tattooed Mike,7220,582656,15 +77818,Dr. Wo,112708,105047,4 +77819,uomo nel sogno,302802,146464,12 +77820,MTV Newsreader,318922,1765428,19 +77821,Uncle Benny,92285,1203930,5 +77822,Maître-nageur,98277,1849125,48 +77823,Nightclub Waiter (uncredited),147722,120217,35 +77824,Landlord,9470,57609,1 +77825,Carlos Quintas,128637,1271,0 +77826,,243473,228780,4 +77827,Gaetano Reina,33357,31989,5 +77828,Sylvia,150056,6263,2 +77829,Lola,115665,935765,2 +77830,Arthur Kidd,16182,1643,0 +77831,Lian Malian,29416,102966,3 +77832,Jimmy,38065,146472,1 +77833,Curtis Gentry,352890,64342,2 +77834,1950s FBI Agent,293863,1176581,16 +77835,Bridesmaid,87428,1661677,24 +77836,,64928,1673508,13 +77837,Paramedic (as Jessica Stevenson),18072,47730,19 +77838,Eileen,85610,1360787,7 +77839,Waffle Hut Waitress,5516,24199,16 +77840,Himself,25568,1307354,2 +77841,Salt Lake City Hospital Chemist,18569,5737,9 +77842,Sarah,121822,34490,1 +77843,Babik,430365,83969,2 +77844,Joseph Carpenter,37789,1169634,3 +77845,Mr. McPherson,227717,1390015,6 +77846,Farrah,9893,21318,8 +77847,Hakim,97630,57012,29 +77848,Teammate,376660,1782864,17 +77849,Sally,170548,213704,1 +77850,Abu Salim,67,791,5 +77851,Lenny Bexley,27450,20056,2 +77852,,123949,1081521,6 +77853,Frederick Irving Benjamin Sinclair,68123,190457,1 +77854,Policeman (uncredited),15794,1014834,45 +77855,Frau Niedermacher,12128,70150,8 +77856,Policewoman Sheila,32021,24326,13 +77857,Landwick,291164,3137,8 +77858,Rachel Meadows,336265,543726,1 +77859,"Dudley Horn, Lois' Fiance",14589,8726,7 +77860,Bruce Fefferman,251227,1286542,9 +77861,Yoga Instructor,353686,1445756,15 +77862,Kara,232100,1267378,3 +77863,Gabi,117534,123251,6 +77864,Charlie,59296,34502,1 +77865,Spectator in Operating Theatre,153165,120472,21 +77866,Captain Esteridge,9542,12645,3 +77867,Gordo,189,1025370,32 +77868,"(segment ""Miminashi Hôichi no hanashi"")",30959,552675,59 +77869,Sheriff Mark Rowley,38807,1009,0 +77870,Swenson,183832,29978,3 +77871,Reginald T. 'Rags' Barnaby,94176,3383,4 +77872,Agnes,236395,81167,1 +77873,Peter,150657,213315,2 +77874,Libyan Guard,24973,1747678,43 +77875,Henry von Göttler,15640,17266,11 +77876,Irene's Girlfriend (uncredited),18651,148669,16 +77877,Tommy Thompson,45692,860,3 +77878,Pepe,79735,1169,11 +77879,Detective Sonoda,119172,587661,4 +77880,Elena,358353,1224085,2 +77881,Sophia,12759,59261,7 +77882,Marla,4551,5578,9 +77883,Himself,9951,56585,5 +77884,Jimmy Natale,232100,1267384,8 +77885,Elizabeth Rogers,131781,82405,0 +77886,Carl Allen,284296,26664,15 +77887,Charles II,7548,6949,2 +77888,Herself,27637,1724699,43 +77889,Ox (voice),81003,352,6 +77890,Husband,98368,1028467,7 +77891,Otora Mikazuki,2487,1270058,11 +77892,Laserbeak (voice),38356,87957,26 +77893,Molly,195022,1180704,12 +77894,Nicole Russell,241855,1323226,6 +77895,Rob,78362,130802,3 +77896,Paolo Molinari,54309,131670,1 +77897,Jimbo,134656,1099824,0 +77898,Surya Chauhan,103640,1169119,5 +77899,Snyder,55190,130768,2 +77900,Betani,378570,1566500,5 +77901,Johana Burwood,331161,91351,0 +77902,Terry Bournachie,19794,159365,21 +77903,Apl.de.Ap,4551,557829,45 +77904,Little Bear,73984,1022040,11 +77905,Pregnant Sheila,218778,205030,32 +77906,Kirubakaran,53883,150198,2 +77907,Theater Patron 3,866,1737976,17 +77908,Jakob Magnuson,2349,52913,25 +77909,Paco,131932,1093957,9 +77910,Anna Morales,241239,83002,1 +77911,Best Man,12912,62522,10 +77912,Dean Proust,48852,1811,6 +77913,Joe Sam,86608,941239,8 +77914,Harris,65123,240326,1 +77915,"Lois, Girl at the Party",179066,1271202,20 +77916,Julia,381356,1341448,4 +77917,Durette (uncredited),1976,1015446,46 +77918,,57438,226194,35 +77919,Himself,23207,89890,0 +77920,Rizzio,43875,8516,4 +77921,Benny,119569,17772,1 +77922,Ella,29568,98357,0 +77923,General Jonathan B. Thompson,29290,103494,3 +77924,Jeff Tracy,79094,31991,0 +77925,Twin #1,9841,59824,6 +77926,Seok Woo,396535,150903,0 +77927,Taggert,68721,992507,26 +77928,Reiche Diebin,70807,559685,12 +77929,Krista Rodman,9779,59181,15 +77930,Turkan,99819,1021743,7 +77931,Walters,33134,1014587,6 +77932,Helmut Münchinger,15640,37035,3 +77933,Press Agent,153,1774,6 +77934,Sir Lord Keenan Coefield,424600,24047,36 +77935,Stella,76097,72215,4 +77936,Nora Baker,11007,15555,2 +77937,Stemple,403570,1263515,6 +77938,Grace,298935,60072,2 +77939,Henry,65603,15414,8 +77940,Chicho,118195,1104666,2 +77941,Capt. Philip Dudley,204994,116564,4 +77942,Sylvia Schumacher,13280,15453,5 +77943,,153420,122660,7 +77944,Belinda DeNovi,146315,140387,5 +77945,Sheriff Luke Standish,10299,66712,7 +77946,Mrs. Owen,87060,1534293,9 +77947,Court Attendant,43846,589728,15 +77948,George,97630,2983,2 +77949,Susan,26581,80496,3 +77950,Arthur,36817,85421,3 +77951,Angie Valentine,17640,82130,3 +77952,Wally Gibbs,26036,6837,2 +77953,Taco,31146,1841254,11 +77954,James (Jim) Floyd,19665,44208,3 +77955,Officer Morelli,3580,129013,35 +77956,,325039,1426196,5 +77957,Himself,91459,1006721,1 +77958,Michelle Kwan,33570,71860,8 +77959,Sara / Jess (Age 6),329440,1522258,11 +77960,,347979,1495941,7 +77961,Laurent,13713,224504,6 +77962,Grandmother,341490,96524,6 +77963,Szántóné,96411,125405,2 +77964,Jenny,177902,1221753,13 +77965,Stanley,46667,9257,6 +77966,Anita,82687,6199,15 +77967,Martin Bormann,613,8199,18 +77968,Comandante Bope,70666,1717548,63 +77969,Singing Rider (uncredited),61985,121239,13 +77970,Black Eye Zombie,248633,1283948,9 +77971,Reverend Duncan,24363,8924,7 +77972,Figlia assaggiatore,162056,1035417,13 +77973,Lady Macbeth,99859,162413,10 +77974,Matthew Sebanek,22396,8255,1 +77975,Lily Hunter,89756,104053,3 +77976,Claire Clairmont,332283,1201716,3 +77977,FBI Instructor,257088,18792,3 +77978,Pete,377516,27678,13 +77979,1. Pretty Boy,9252,175322,14 +77980,Kite,62728,6969,9 +77981,Ace,290762,74047,6 +77982,Henry B. Preston,118900,8728,2 +77983,,365544,80997,10 +77984,Deon,63139,62644,1 +77985,Carrie Staley,50028,1480669,0 +77986,Additional Voices (voice),269149,1610448,34 +77987,Sophie,41211,587159,5 +77988,Storekeeper,39992,27279,10 +77989,Sanjay Mehra,14159,69711,9 +77990,King Jan II Kazimierz,31273,2830,12 +77991,Marlowe,21837,87955,4 +77992,Head Abbot,60568,1042681,4 +77993,,27276,551848,39 +77994,Superman (voice),396330,19508,2 +77995,Brian Wilson - Past,271714,17142,0 +77996,Lee Pratt,13802,215811,16 +77997,Brenner,248933,35263,4 +77998,Dreamer,8199,53969,7 +77999,Alex North,15068,32458,0 +78000,Farmer's Hand,128866,1088062,10 +78001,Oscar,52847,94112,6 +78002,,20381,1816,4 +78003,Jock,14123,183066,23 +78004,Polizist,2169,4922,8 +78005,Stan's Wife,27432,143438,1 +78006,Halla,70800,1264221,1 +78007,Robyn,428493,1600085,7 +78008,Thomas Skorzeny,46943,586277,9 +78009,Angela,43497,94071,4 +78010,Wolfgang,43935,90031,5 +78011,Zack Dell,17745,40979,3 +78012,Himself (uncredited),322400,4353,6 +78013,Elaine Reynolds,21431,53335,0 +78014,Streeter's Secretary,47404,1144349,32 +78015,Angela,176079,20089,0 +78016,Karen Morgan,201749,12214,2 +78017,Pakistani,188858,1170306,5 +78018,Fiona,86828,6975,10 +78019,Marisa,63615,1119449,5 +78020,Himself,23128,110918,4 +78021,Betty,297265,938911,13 +78022,Himself,170279,78913,6 +78023,Tane,16356,5534,6 +78024,Sanders,125759,8855,6 +78025,Avvocato Santelia,45990,94419,3 +78026,,57809,18283,6 +78027,Young Motoko Kusanagi,315837,1848074,13 +78028,Seijuro Yoshioka,31372,30568,7 +78029,Leen Martin,322148,1324145,2 +78030,Sebastian,416256,13592,11 +78031,Frank Beazley,339419,121718,5 +78032,Peggy Gray,43489,83475,1 +78033,Eunice Tase,102057,39015,6 +78034,Barbara,17725,33450,8 +78035,Kirsti Hammarberg,32099,108851,3 +78036,Black Tone,49199,83693,3 +78037,Bobby Ray,354133,232760,12 +78038,Dexter Mayhew,51828,38941,1 +78039,George Biddle,28433,69026,7 +78040,Henry Brodrick,137357,85934,4 +78041,Ex-Patient,222487,1207913,1 +78042,Himself,269797,66758,5 +78043,Professor Fiona Pembrooke,12902,109988,8 +78044,Student,156268,1267375,6 +78045,Cpl. John C. Brown,19968,27726,8 +78046,Dawson,2274,2467,5 +78047,Dan,38526,94383,0 +78048,Clint,152532,129868,11 +78049,Diaz,7555,52946,3 +78050,La mère d'Ana,340616,54675,8 +78051,,30806,67216,4 +78052,Michael Parker,270851,154748,1 +78053,Lt. (j.g.) John C. Drake,257081,33004,3 +78054,Tage Erlander,145247,79171,14 +78055,The Duke,28367,29661,5 +78056,Cecilia,96118,32729,5 +78057,Mary McGuire,113137,20089,1 +78058,Turk Malloy,298,1894,7 +78059,Duane,300090,1181557,13 +78060,Miguel,197583,54765,8 +78061,Himself,376391,1415180,7 +78062,Betty Channing,67531,31550,1 +78063,Emily,403130,1573609,7 +78064,Geki Takahashi,27031,34690,7 +78065,Himself,315882,583988,1 +78066,Rat Pfink / Lonnie Lord (as Vin Saxon),85916,1070233,2 +78067,Classified (voice),270946,71580,5 +78068,Clips from 1951 version of 'Show Boat' and 'Pagan Love Song' (archive footage),33740,39601,43 +78069,Himself,130993,1310869,11 +78070,Mita,245175,59180,2 +78071,Trey,92391,61364,0 +78072,Rachel,29638,63347,1 +78073,Young McAllister,18616,83354,6 +78074,Carol Montague,75564,1399607,1 +78075,,11196,5985,24 +78076,Jimmy Harrell,296524,6856,1 +78077,SS Lieutenant,19996,205247,16 +78078,Warden,147722,14455,18 +78079,Scotty Douglas,60307,139618,16 +78080,The Fart Machine,408272,963885,14 +78081,Other Aaron,8998,15232,10 +78082,Kadertrainerin Frau Michels,217412,1313066,13 +78083,Contra,63612,34057,6 +78084,Lia,245175,1224085,8 +78085,Sweetstick,94248,152592,5 +78086,Charlie,340684,1468343,0 +78087,John Buchan,128216,1332931,20 +78088,Gino Mascarpone,9950,7466,4 +78089,Dragan,390357,28392,3 +78090,Sergeant Huh,11658,86329,34 +78091,Dutch,326045,119810,9 +78092,At Dance,42553,128167,12 +78093,Father of Emily,10320,162828,12 +78094,Radio Announcer (uncredited),15794,1225755,43 +78095,Shorty (voice),9514,4924,10 +78096,Jiggs,38432,2672,3 +78097,Shura,279543,238310,6 +78098,Esmerelda's husband,3405,31897,5 +78099,Himself,266782,32396,3 +78100,Rita,235208,6405,6 +78101,Himself,53380,18627,9 +78102,Maximilian Jones,76757,19655,18 +78103,"Eddie Storm (segment 2 ""Terror Over Hollywood"")",41035,14898,10 +78104,,78323,583736,5 +78105,Pete Maxwell,11577,8496,19 +78106,Supermarket Manager,52920,1147,8 +78107,Louis,326874,145871,4 +78108,Delia Chandler,283384,1362945,25 +78109,,11328,1444477,23 +78110,Jefe Antidisturbios,33273,1448276,25 +78111,Brian,150117,117555,9 +78112,Mercenary #1,5494,947231,9 +78113,Prem,46387,42802,1 +78114,Elevator Mexican #2,325173,18300,22 +78115,Turkish Tourist (uncredited),337339,1355266,78 +78116,Dean,37497,42746,3 +78117,Michael,24397,58954,7 +78118,Sarah Roth,31913,13420,2 +78119,Jean,329805,307837,8 +78120,Major General Snipes,51426,2669,5 +78121,Police Inspector Thomas,149793,30539,6 +78122,Gogarty,43441,103068,8 +78123,Clicker Bennie - Photographer,250332,1318497,27 +78124,Tracy Riggs,2125,13920,1 +78125,Linus Caldwell,163,1892,10 +78126,Carol,14976,63279,5 +78127,Moving Man #1,29286,1046955,13 +78128,Thanos (uncredited),99861,16851,68 +78129,Brothel Patron,157847,1765441,20 +78130,Fruit Cart Vendor,76170,1561288,18 +78131,Alan,273511,1954,2 +78132,Benítez,335053,10847,6 +78133,Jill,181753,8900,7 +78134,Adolfo Bagna,262786,1882000,8 +78135,,54959,55066,5 +78136,Edward Carnby,12683,10883,0 +78137,Kate Collins,16358,11664,2 +78138,L'infirmière,12446,99304,12 +78139,Earth Mother,19794,1564438,24 +78140,Samoan Guy,193893,1381475,27 +78141,"Jeffrey Bushdinkle, the Groom (uncredited)",32552,8724,32 +78142,Fausto Consolo,47848,12259,0 +78143,Amara,239018,83536,10 +78144,Gräfin Mariza,209248,1192753,1 +78145,la madre di Ivano,56804,1865130,11 +78146,Tooth (voice),81188,52848,3 +78147,,339367,117727,3 +78148,Astrid Kar,34766,44296,8 +78149,Marcelina,227932,1185619,4 +78150,Guillaume Canet,382589,19866,0 +78151,Kaleigh,69717,989325,7 +78152,Widow of the merchant Makovkin,47190,1090923,6 +78153,Elena Savinet,290316,24762,2 +78154,Hostile Guest,381073,379541,15 +78155,Michel,313896,52966,1 +78156,Private Vicky Castillo,15616,56457,3 +78157,Antonio,48594,1804257,8 +78158,Bill,274857,49735,5 +78159,Genzô Shibayama,2487,133603,13 +78160,Marshal Capturing Youngers,183825,34333,42 +78161,Kimi,101838,148370,0 +78162,Snowball (voice),328111,55638,2 +78163,Áteo Di Toro,43432,942179,5 +78164,"Dr. Silversmith (segment 1 ""Enoch"")",41035,93163,16 +78165,rauchender Nazi,130739,1805302,35 +78166,Ethel,59296,13023,10 +78167,Fred Haymes's Secretary,258480,1545514,29 +78168,Ed,96133,33795,15 +78169,Amerigo,159474,3829,0 +78170,Hooters Girl,3563,1448697,19 +78171,Peter Arnett,28730,14888,5 +78172,Boris,348320,1475710,3 +78173,Lamar,59861,5726,3 +78174,Lyle Neeson,95140,294910,13 +78175,Andrey Tolstoy,36811,54464,8 +78176,Ranch Steer (voice),18843,75315,27 +78177,Sadie,24059,115675,1 +78178,Norm Spellman,76600,59231,9 +78179,Misericordia,128657,226551,4 +78180,Kat,456781,176823,1 +78181,Dan Morone,75622,19498,4 +78182,Detective Manwaring,60269,12536,1 +78183,Haley,414610,1868297,11 +78184,Sally's Partner at Ball,118889,34117,54 +78185,alte Dame 2,75969,1902094,44 +78186,Kate Macer,273481,5081,0 +78187,Abi,18820,9206,0 +78188,Mary,173662,110938,7 +78189,Itak (voice),233423,38565,7 +78190,Mrs. Forrester,64047,83438,1 +78191,,354296,52761,1 +78192,Madame Eyrelle,52358,131726,4 +78193,Haushälterin,6183,48519,25 +78194,Sir Boris,7096,20243,7 +78195,,62363,35049,10 +78196,(uncredited),43459,12312,11 +78197,Marchese Pica,56853,556733,23 +78198,Lowell Blackford,175171,1024198,0 +78199,Wachsoldat vor der Wolfsschanze (uncredited),613,50792,62 +78200,Ballroom Dancer (uncredited),76203,1438314,82 +78201,Walter,25643,3911,5 +78202,Kelser,294690,1390504,15 +78203,Walter Lawrie,43522,2672,2 +78204,Donaldson,219466,34257,13 +78205,Jessie,301804,7517,0 +78206,Policeman in Park,34127,34294,13 +78207,Referee,11614,1441037,13 +78208,Sarah Ross,146216,18248,5 +78209,Shooter,146238,1376110,18 +78210,,15830,82537,23 +78211,Diego,11376,226588,11 +78212,Carl,37926,119120,5 +78213,Earl,57680,1643635,14 +78214,Jack Eason,397422,113230,25 +78215,Sophie Smith,340101,15737,5 +78216,El Policia,123359,1077996,1 +78217,Charles,7972,3926,2 +78218,Oleg Penderecki,156597,1024442,10 +78219,Tourist,1164,1529890,23 +78220,,86321,1903063,10 +78221,Scarzi (as John Byron),51303,143822,5 +78222,Dorine,55544,222581,6 +78223,Willie LaHaye,20583,86384,2 +78224,Paco,31299,1261421,5 +78225,German Soldier (uncredited),297762,1651394,74 +78226,himself,33916,441778,4 +78227,Paul Carpio,63988,590,1 +78228,Man at Church (uncredited),16442,1291267,70 +78229,Dying Yakuza,76170,107489,20 +78230,Ana Palacios,80012,72674,1 +78231,(voice),28090,21248,52 +78232,Lexi Kivel,114779,96624,3 +78233,?,5481,44963,5 +78234,Sujeito acidente,361146,1890684,14 +78235,Townsman Mob Defendant (uncredited),14615,126836,89 +78236,Ryan,75576,31837,0 +78237,,8088,64014,20 +78238,Tyson,422472,62018,2 +78239,Bobby Brown,319096,78432,2 +78240,Extra (uncredited),120831,10146,12 +78241,Gary,369406,80264,14 +78242,Mrs. Lind,94468,14577,5 +78243,Dr. Reinhard Winkler,285181,1277975,5 +78244,Himself,18893,96767,3 +78245,Farmer (uncredited),413998,139635,15 +78246,"Himself, others",282268,280,2 +78247,Tonegawa,106417,46691,4 +78248,Hazel Clay Cousins,91181,1363832,8 +78249,Corny Collins,2976,11006,3 +78250,Trainer,68634,591429,3 +78251,Augie,405621,40276,2 +78252,Donna Vovò Fonseca,56943,78541,3 +78253,,105760,1138915,13 +78254,Mother,42204,39015,3 +78255,Calabrone,183964,224945,1 +78256,Jodi,45302,53924,2 +78257,Leader,102197,559958,16 +78258,Georgia State Patrolman,181574,1489665,8 +78259,Le prof de gym,20200,66839,10 +78260,Milton Ramsby,43157,556861,9 +78261,The Boy,315855,1410523,33 +78262,Betty Shin,14809,26998,2 +78263,Zepher Santorelli,17241,1224813,5 +78264,Patrick,244316,1366484,14 +78265,Tony,197737,30264,16 +78266,Katrina,335970,1718147,46 +78267,Fredrik,86980,146954,9 +78268,Mortal,205584,1535056,30 +78269,Jeannie,508,31717,5 +78270,David Pegg,62441,208478,13 +78271,Mrs. Wainwright,58411,227799,10 +78272,Virgil Beauregard,259695,129868,13 +78273,Legantir (voice),146381,4391,7 +78274,Big Bewley Brother,365942,1674486,38 +78275,Joseph Grusinsky,2001,13240,3 +78276,Young Man Walking,274325,1577106,11 +78277,Oskar's Grandmother,64685,937681,7 +78278,Kjelketrekker,20372,227290,18 +78279,Judge Murdock,43792,17753,3 +78280,Nanou,13734,32946,4 +78281,Jaleel,308639,1423441,8 +78282,Owen Hunter,53870,122756,4 +78283,Jesse Wick,45215,8516,5 +78284,Antonio Pecoraro (episodio Il Cavalluccio Svedese),68882,37583,2 +78285,Facundo,55720,150676,6 +78286,Sharmiane,18927,1281864,8 +78287,General Zod,209112,335,27 +78288,,54236,37843,10 +78289,Hal,60086,79499,13 +78290,Marie-Thérèse,68023,81821,1 +78291,Astrid,14555,28626,2 +78292,Joe Louis,111744,83859,0 +78293,Sidney,84295,103622,3 +78294,Susan Riley,28090,52300,1 +78295,Red Carpet Walker (uncredited),4982,1123241,78 +78296,Themselves,133255,1126711,11 +78297,Valdomiro Lacerda,303982,1185618,1 +78298,Olwen,336149,1287098,5 +78299,Sam Jennings,31713,108275,8 +78300,Nouvel auxiliaire,77338,1293458,20 +78301,Laurence Rush,5413,43139,14 +78302,Little Girl (voice),9297,57189,0 +78303,Beal,38417,120390,4 +78304,Dr. Clayton,300090,62784,7 +78305,Brandon,15476,77262,14 +78306,Kelly,76543,74439,6 +78307,Paramedic,21343,135630,8 +78308,Chanthaly,220287,1210544,0 +78309,Reporter 2,27450,26858,19 +78310,Freddy Heineken,228968,4173,0 +78311,Janine,55534,56441,27 +78312,Isolde,96118,7569,1 +78313,Alexander Prince,153228,81182,5 +78314,Tilly,39013,1163726,18 +78315,Lourdes,109690,588817,5 +78316,Aristotelis Adamantinos,421365,1148669,2 +78317,Monseñor,329718,4757,2 +78318,Mr. Dance,60505,942507,6 +78319,Нурик,335819,17817,2 +78320,Frog,25694,34759,11 +78321,Gordon Dunning,29116,13994,4 +78322,Tom Barcroft,31985,33294,5 +78323,Himself - Contractor,97724,1388667,18 +78324,Lily (as Lily Norwood),120588,41226,7 +78325,Kostya,143380,237524,6 +78326,Yvonne Maurin,37454,6014,1 +78327,Comito,56339,1891144,13 +78328,Mathematician,8410,55750,8 +78329,Tachuela,33273,6540,8 +78330,Tank,381645,34839,2 +78331,Police Sgt. Griggs,77012,89834,9 +78332,Thug (uncredited),15092,64374,77 +78333,Yin's Father,32091,57054,4 +78334,Олег Кривуля,336484,1736010,6 +78335,Scotia Capt.,2965,29072,6 +78336,Bikini Salesgirl,323675,1769804,39 +78337,Jim (as Dean Richards),85200,101850,1 +78338,Dr. Herbert Bock,32082,862,0 +78339,Noblewoman (uncredited),274857,1306277,51 +78340,Derek Powers / Blight,64202,54859,4 +78341,Jeremiah Burns,37238,19111,6 +78342,Le spectateur cinéma,53404,1664232,22 +78343,Cleopatra's Lady Attendant,31561,601629,12 +78344,Student (uncredited),28178,111922,13 +78345,Un gardien (uncredited),29259,37633,13 +78346,Silent Samurai,616,239391,22 +78347,Natari,62472,1484679,31 +78348,Eva,15179,79270,3 +78349,Luanne,288710,6473,2 +78350,Larry Rogers,20361,38915,4 +78351,Hong Dou,34216,65261,2 +78352,Adriana Santos,209112,1696238,124 +78353,Marshal George Higgins,53622,88978,3 +78354,Moreau Choir,43812,1673792,11 +78355,Himself - Co-Host / Narrator / Clips from 'Babes in Arms' - 'Girl Crazy' - 'Babes on Broadway',33740,1937,8 +78356,Mrs. Swift,194101,82711,6 +78357,Amar,27621,1224166,5 +78358,School Guard,49712,1885601,22 +78359,Val,320588,1910,13 +78360,,166393,1360193,9 +78361,Banker,77930,1217934,14 +78362,Blackjack,94055,21925,10 +78363,Ample (voice),59297,68470,3 +78364,Jon Katz,41496,1229,0 +78365,Macbeth,225728,17288,0 +78366,Senator Timandra,297762,121847,21 +78367,Prest,10119,63765,14 +78368,Helicopter Pilot #1,68721,1088938,30 +78369,Humphrey,22752,121100,2 +78370,Dr. Yogami,27970,13342,3 +78371,Harlans Frau / Harlan's Wife,28480,14130,6 +78372,Kara,17927,130782,22 +78373,Carter Cushing,201085,29862,4 +78374,1977 Beach Girl (as Sarah Wolf),335970,1718151,50 +78375,Shaggy,35197,113969,5 +78376,Russian Soldier,171337,482258,7 +78377,Stig-Helmer Olsson,24647,79056,0 +78378,Mon,17082,1139049,5 +78379,Daphne,4380,36815,15 +78380,TV News Anchor,442949,1762643,10 +78381,Janine,241254,1363622,13 +78382,Paul Bordinot,152989,54170,2 +78383,Himself,18094,103210,2 +78384,Sarah,11404,66442,5 +78385,Hannah Alexander,291413,990393,1 +78386,Wes,136466,167564,1 +78387,Linda Bronco,44895,586,3 +78388,Dr. Morgan,70436,1184168,10 +78389,Primo Carnera,921,59198,16 +78390,Barney Rubble / Dino (voice),42515,33923,3 +78391,,46712,112131,1 +78392,Lizzie,45219,128966,8 +78393,Lida's friend,435041,1738897,5 +78394,Sharkey,86920,40948,3 +78395,Andrew,352960,1476279,7 +78396,Xiao Xiao,334132,1355669,8 +78397,Nightclub Waiter (uncredited),33112,1176510,26 +78398,Fernando de Valle,31299,24496,9 +78399,Clyde Garson,49508,98503,9 +78400,Kela,100814,120549,3 +78401,Maggot / Town Crier (voice),3933,34904,11 +78402,Jill,271039,1328187,5 +78403,Principal Latimer (as Jim Belushi),37926,26485,13 +78404,Richard,83384,21180,5 +78405,Gretchen,134475,97989,2 +78406,Clarissa,254193,29910,4 +78407,Treden,313074,1047649,3 +78408,Pierre Durois,51212,24501,0 +78409,Sugiyama,73306,43666,7 +78410,,254679,133656,5 +78411,Fei Lung / Wong Yau Choi,56329,119447,5 +78412,"C.D. ""Charlie"" Bales",11584,67773,0 +78413,Bruni,31111,107626,5 +78414,Arnar,131343,41169,5 +78415,Girl in Party,26881,183465,16 +78416,Marcos Muñoz,41298,975482,9 +78417,Tilly,181533,221581,2 +78418,"Shingo Kamiyama, strange man of the bar",36246,1180893,3 +78419,Daddy (voice),447758,1224723,30 +78420,Sara,1986,20439,3 +78421,,126516,1437833,18 +78422,Korean Train Passenger,99861,1760886,53 +78423,Santini,63190,119992,4 +78424,Hanna,158967,143549,4 +78425,April Morrison,57103,6930,6 +78426,Marianne,2786,18197,1 +78427,Kate the Home Health Care Nurse,11321,6944,16 +78428,Toma's mother,19506,225247,5 +78429,Alf Lennon,33511,151952,13 +78430,Mike,17725,24240,12 +78431,Georges,44527,7037,1 +78432,Barbara Harmon,102057,8857,1 +78433,Ryohei as a child,27372,1072013,7 +78434,Lilia Herriton,59704,15735,1 +78435,Lana,264555,44033,2 +78436,Middle Donald,339419,1760940,26 +78437,,31412,1028507,6 +78438,Shaun Leblanc,15285,1197098,6 +78439,Ross,248268,77809,0 +78440,Enrique Suarez,56601,122844,5 +78441,Lars,18633,7223,12 +78442,Superman,2771,27970,15 +78443,Ma,216580,1333945,9 +78444,Buddy,44718,155,3 +78445,Clara Winthrop,333484,965980,18 +78446,Old Man,11404,1824609,14 +78447,Ava's Therapist,59296,1204,11 +78448,Hiroshi Mizuno,41261,125943,2 +78449,Maid (uncredited),36874,1578333,4 +78450,,126250,40421,17 +78451,Hervê Giannini,132608,567574,5 +78452,Dawn,32845,94428,5 +78453,Barry Burwood,331161,68178,8 +78454,Big Dick Richie,77930,20580,5 +78455,Hayley,215881,70456,0 +78456,Möllgaard,73775,49100,11 +78457,Glock,25684,43115,5 +78458,Un homme de la bande,33436,23480,12 +78459,Juliette Mangin,96921,4273,2 +78460,Taxi Driver (uncredited),43808,1204352,13 +78461,Mary Howard at 17,52360,120797,11 +78462,,56599,552675,9 +78463,Maria Grazia,116236,1348207,5 +78464,Linda,109391,1204697,30 +78465,,58447,584556,7 +78466,Han-yi,387886,1256325,5 +78467,Captain Suds,130925,35219,3 +78468,Dr. Sloper's Secretary (uncredited),28571,89663,22 +78469,Carmen,352327,177300,5 +78470,Party Guest (uncredited),213681,1771570,43 +78471,Piloff (voice),19594,7906,6 +78472,Helen,362463,1518294,2 +78473,Owen,88005,11702,3 +78474,Himself,23128,110917,3 +78475,Cop Outside Peace & Purity League,31899,980330,28 +78476,Susan Heffley,60307,46074,2 +78477,Mother,80720,1446997,28 +78478,Karen,183662,582741,10 +78479,Taylor,296523,20191,7 +78480,Hobo Bob,417870,62715,12 +78481,Tim King,78094,38665,1 +78482,Dancer,19995,1207269,53 +78483,Mary Wingate,86979,1497759,9 +78484,Cashier,59408,142302,6 +78485,Darby,376579,1560046,4 +78486,Adrien,201365,6640,2 +78487,Jean Baptiste Tavernier,184351,29282,0 +78488,Captain Hans Vogel,54166,39645,2 +78489,Simone,292035,150271,3 +78490,Bridget,387999,1548581,3 +78491,Loan Officer,250066,565498,4 +78492,Major Booth,140887,96471,8 +78493,Black Israelite Speaker,397717,232495,30 +78494,Ragazza in discoteca,85038,1293961,13 +78495,Anne Logan,335498,120306,9 +78496,Stanislas Graff,35008,2245,0 +78497,,79580,587512,6 +78498,Clown Dispatcher,381054,1003843,1 +78499,Taraq,193756,1230897,24 +78500,Bürgel,26891,96545,8 +78501,Bertha,8316,3840,7 +78502,Fedor,66700,141111,2 +78503,Himself,76686,1098645,9 +78504,Miranda's Mother,10804,172191,15 +78505,Nick,50329,148424,8 +78506,"Robert, Earl of Leicester",58905,3369,11 +78507,Tommy,51736,1178307,9 +78508,Doctor,102382,60119,56 +78509,Slave Master (Hannibal)/Shepherd (Il Muto),76115,577645,8 +78510,Miss Briscoe,328589,1438350,30 +78511,Sancho,129851,994436,4 +78512,Pits,256969,56676,3 +78513,Himself,97724,1388671,22 +78514,Jessie Pilkington,50364,1228094,5 +78515,Dr. Richardson,21927,86442,8 +78516,Kindergarten Teacher,13436,1656884,24 +78517,David Pariser,78096,51038,6 +78518,Herbert Leemaster,231616,6719,2 +78519,Bankhead,151509,1709651,10 +78520,Herself,81538,1156400,1 +78521,Mr. Gibbs,22029,6772,4 +78522,Mitchell,38749,30621,10 +78523,Captain Roc Brasiliano,44631,5401,2 +78524,Cousin Paul,128270,1820214,27 +78525,Ray,300667,18050,1 +78526,Caroline Whitney,48706,11148,4 +78527,Andrea (as Maronetto),117913,1277214,6 +78528,Lumber Mill Customer (uncredited),76203,1438305,70 +78529,Wadie Haddad,43434,134417,5 +78530,Waiter,43809,96302,26 +78531,Hans-Erik Wennerström,15472,55886,12 +78532,Cezaevi Müdürü,31413,1410158,3 +78533,Jason Taylor,341174,94864,8 +78534,Stemler,55725,1194966,10 +78535,(as Jorge Rusek),317168,31321,3 +78536,Woman,158967,1684131,10 +78537,Florence,253077,1195368,1 +78538,Bradshaw,44801,64222,3 +78539,Taiko,277355,554073,2 +78540,Kate,173499,57145,7 +78541,Melissa,298935,1359350,5 +78542,Ricky,11425,985548,9 +78543,Kiyone,34935,112139,10 +78544,Liza,214129,1269279,13 +78545,Gary,6933,51462,16 +78546,Frankie Peppo (uncredited),28000,1162,53 +78547,,48959,1221981,9 +78548,Kyle,55725,564583,1 +78549,Bill Watkins - Criminologist,127812,103501,33 +78550,Hagenheimer,44190,93628,8 +78551,Lillian Grayson,26503,46636,4 +78552,"Mr. Okamoro, drugstore owner",111398,134346,8 +78553,Lynne Anderson,10916,156253,16 +78554,Joe Risk,73661,568240,2 +78555,Lippet,35405,51879,8 +78556,Bruce Wayne / Batman,209112,880,0 +78557,Reporter,229297,49702,25 +78558,,17282,45377,9 +78559,Shopkeeper,118,184997,29 +78560,Helmeppo,176983,1251438,20 +78561,Hagar Rawlins,6643,50965,8 +78562,Charles 'Charlie' McNear (uncredited),28668,103501,15 +78563,Talitah Getty,221667,69489,8 +78564,Turner Monroe,231616,6951,5 +78565,Catherine McNally,31977,85603,3 +78566,Le père de Samuel,381356,64645,8 +78567,Brenda,82409,927854,3 +78568,Basim,266373,29285,8 +78569,,254679,13280,4 +78570,Draycott (as Patrick Byrne),198001,1178415,4 +78571,Stephanie Silverman,268321,137424,4 +78572,Binda Ball Girl,425774,1707963,69 +78573,Jude,4688,38941,1 +78574,Shopper (uncredited),374473,1650256,25 +78575,El Caribe Party Patron,2001,1246221,77 +78576,Building Manager,249021,1289273,12 +78577,Lucy Pevensie,2454,5526,4 +78578,Harvard Debater #1,14047,83271,15 +78579,Bibi Han,39061,1829163,6 +78580,Paul,11909,25249,2 +78581,Tara,10071,50463,7 +78582,Teenage Jess,290762,1052255,13 +78583,Sara Yuhara (Tokumitsu's daughter),12636,73187,2 +78584,Mallick,11917,231,9 +78585,Charles,149926,174710,15 +78586,Military Officer,62143,996744,25 +78587,Gas Station Attendant,256092,1014586,20 +78588,Wheelfied,57829,1886752,6 +78589,,337012,6199,10 +78590,Alice,16412,1164341,6 +78591,Pig Farmer,14047,65171,12 +78592,Gina,10096,137424,29 +78593,Clara,22182,128408,13 +78594,Pati,329550,1436888,42 +78595,Kuttikrishnan Nair,237672,585112,11 +78596,Lærer Jacobsen,47405,116387,3 +78597,Flirt Lok Ki Cheong,25655,1132614,17 +78598,Un photographe,55853,551798,17 +78599,Camp Counselor (uncredited),251227,1075053,21 +78600,Dental Hygienist,2355,203781,30 +78601,Anne MacMorrow,54318,1639,1 +78602,Puar / Chi-Chi,126963,122192,19 +78603,Luke,11909,20519,3 +78604,Alice Hanel,352025,129168,4 +78605,Kujaku Ogitani,36175,84028,1 +78606,Clyde,35320,67817,14 +78607,Jess Solomon,9966,37917,0 +78608,Ben Siddle,54801,103696,10 +78609,May Raskob,91181,1363833,9 +78610,Johnny,17473,81916,0 +78611,Todd (voice),9948,51297,2 +78612,Dr. Hugo Z. Hackenbush,11939,10798,0 +78613,,34181,1132669,13 +78614,April O'Neil,98566,19537,0 +78615,John Bell,10008,55636,0 +78616,Aldous Snow,9870,59919,3 +78617,Man in Pub (uncredited),76543,579299,15 +78618,Gump,287170,1353676,1 +78619,Rick,4613,26852,5 +78620,Gen. O'Connor,1984,7640,2 +78621,Navarro,57201,21723,27 +78622,,206574,1339115,4 +78623,Magistrate Rose,425774,1707930,40 +78624,Insurance Agent,91679,1272965,8 +78625,Joey,297853,20958,1 +78626,,353879,1197124,3 +78627,"Barnabé, le père de Sophie",381356,1033622,6 +78628,Andre,57993,35591,11 +78629,Muriel Bouchon,105576,6014,1 +78630,Maître Robin,329819,1404603,9 +78631,Maria Hill (voice),169934,228234,5 +78632,Head Nurse Molly Byrd,153163,30242,11 +78633,Jackie,274479,1026947,3 +78634,Ramiz,241140,45972,1 +78635,Mr. Miller,99909,1198701,44 +78636,,12622,552027,21 +78637,Riley,345069,91531,3 +78638,Mail-Order Bride,16131,79415,27 +78639,Berkowitz,75537,493987,0 +78640,Nicholas Easter,11329,3036,0 +78641,Jenny,156,3846,12 +78642,"Dr. Munroe, aka Mungo",28437,4072,5 +78643,Nurse Lewis,156335,30552,14 +78644,Jason Evans,435,6066,3 +78645,Kathy,224885,1269324,8 +78646,Mr. Bolton,86979,10654,4 +78647,Jin,188927,1085618,32 +78648,King Charles I,64044,115395,8 +78649,Sovéskur sendiráðsmaður,72596,96526,33 +78650,Manning,248633,570758,11 +78651,Officer Bauer,128311,1168178,13 +78652,Eric Baum,875,13345,7 +78653,Julie,405473,1800026,14 +78654,Kellnerin Clairence,277968,1898503,37 +78655,Sally,358199,1070,11 +78656,Enid Elliot,50153,85362,1 +78657,Rocky (as Henry Morgan),25807,4073,4 +78658,Count Cornero,53945,41527,5 +78659,Ace - Hollywood Chicken Little (voice),9982,26847,17 +78660,Shane / Yu Shouheng,57005,126717,1 +78661,Dr. Julie Cohn,6933,51463,17 +78662,Alex,14254,20373,1 +78663,Deputy Mahoney,131689,1093522,12 +78664,Brockie Drummond (archive footage),262988,41231,13 +78665,Dr. Meier,340488,1052284,5 +78666,Lisa,25655,1140046,16 +78667,Blaise,54155,1158460,2 +78668,Ierra,61113,2055,4 +78669,Uncle Desmond Bonnard,178587,10508,1 +78670,Strucker,99861,3491,19 +78671,Carlos,94182,14666,8 +78672,Judge Fearson,44562,157616,1 +78673,Himself,411013,1799841,7 +78674,Marie DeVito,78364,14109,6 +78675,Raimondo,5165,544823,9 +78676,Samantha Leigh Donnelly,256924,9278,2 +78677,Matt,221240,19903,7 +78678,Sultan,174645,1157597,13 +78679,Dancer,19995,1207268,52 +78680,Black Widow,94055,43869,4 +78681,FBI Agent (uncredited),245703,570706,33 +78682,Mister Just,97910,103620,9 +78683,,137504,548041,12 +78684,Hoerenloper,16177,68182,7 +78685,Sarah Ellroy,383535,1404373,6 +78686,Bakhtawar,444713,1714230,3 +78687,Rosalie,58166,50293,10 +78688,R.A.,306952,1511982,39 +78689,Tyler,339145,1494786,8 +78690,Older Richard,317557,1200526,7 +78691,Edna Davis,10407,2750,6 +78692,Trainee Auctioneer,428493,1413433,11 +78693,Man with Rifle Behind Barred Window,111470,955691,44 +78694,,135286,1344592,3 +78695,,12622,4990,22 +78696,Koro / Modestine,203715,1186092,6 +78697,Goldtooth,120605,19300,2 +78698,Bruce Wayne / Batman,16234,34947,1 +78699,Jo-Mo,97910,34185,11 +78700,,63859,1238882,5 +78701,Laurent,2566,26108,11 +78702,,64204,1646173,9 +78703,Ona,115665,115052,3 +78704,Student,38322,1869053,50 +78705,Lucas,52264,145681,8 +78706,Translator,109716,945918,20 +78707,Mayin Kutty,134474,111669,7 +78708,Oncle Raymond,255913,1354585,21 +78709,Conte Rodrigo Sanchez,96935,14148,5 +78710,Karen,402446,58168,2 +78711,Sonia,68797,7111,2 +78712,Little Girl,294272,1587892,18 +78713,Szef kompanii,36264,32696,2 +78714,George,209244,58733,5 +78715,Barbara,38850,25702,2 +78716,Glenna,149509,17442,2 +78717,Jamil,16047,234907,0 +78718,Ensign Syl,188927,1006731,12 +78719,Man,376570,17487,1 +78720,Maro,163791,1146414,13 +78721,Robert Kell,88518,936234,5 +78722,The Comedian,246133,1224999,1 +78723,Martha,332079,98495,14 +78724,Detective Dunnigan,22803,17782,2 +78725,Wendy,121824,66446,8 +78726,Lyman,70736,61563,1 +78727,Raj Chopra,19276,85033,0 +78728,Margie,245906,18285,20 +78729,Carol Brander,10033,14415,5 +78730,Hotelmanager,49853,62892,13 +78731,,366759,1324330,5 +78732,Soo-kyung,64882,1299344,14 +78733,Bo Price,13842,79244,3 +78734,,227552,996219,9 +78735,Rabbit,90034,556944,2 +78736,-,29128,104216,7 +78737,Scott 'Scotty' Braddock,11351,69120,3 +78738,Pizza Man,48706,7868,6 +78739,Gigi,102668,1031785,10 +78740,Theater Manager,145220,2441,24 +78741,Supermaket Colleague,12221,1681650,5 +78742,,361380,61133,17 +78743,Jacob Rivetowski,42448,38253,1 +78744,Soslan,395914,1690608,9 +78745,Ushi's Mother,170279,1665945,7 +78746,Jenna (voice),25913,63978,1 +78747,Sarah,264555,76226,3 +78748,Party Guest,353686,1699514,18 +78749,,73835,994436,7 +78750,Emily (Segment 5),244117,119598,12 +78751,Lancer,87759,13709,4 +78752,The veiled lady,48145,231927,9 +78753,Claire,260001,1809786,16 +78754,Constable J. Reed,172908,29505,8 +78755,Herself,366696,1753504,26 +78756,Olympic Race Starter,227306,1394465,65 +78757,Joanna,70863,210346,25 +78758,Sister Angela,5494,107735,11 +78759,,167021,1119938,3 +78760,Himself,32451,1089413,1 +78761,,36615,1415466,3 +78762,Daughter (uncredited),381737,1848808,28 +78763,,153196,1283557,4 +78764,Jochen Kaminski,231540,1856,5 +78765,Laura Stone,17241,11164,0 +78766,The Boy,27012,168635,4 +78767,Professor de Biologia,70666,1863879,8 +78768,Kristen,366630,204975,3 +78769,Friedhelm Winter,178446,684,1 +78770,Mike,8998,1894,11 +78771,Max,142712,1326318,13 +78772,Teacher,257447,1511256,12 +78773,Ronald,127286,47874,7 +78774,Leroy,151043,982403,11 +78775,Teacher,209112,1395056,57 +78776,Debby Huston,78364,28412,1 +78777,Willie Gratzo,26486,6951,13 +78778,Venusian Guard,33472,1580380,19 +78779,Arden,36251,84248,12 +78780,Foster Pearse,47115,33,1 +78781,The Oregonian,82655,115240,0 +78782,Jody,15476,56457,11 +78783,Teenage Boy,45610,127129,14 +78784,Gary,171648,87880,2 +78785,Nicolò,231176,1266275,3 +78786,Boy at Birthday Party,332079,3162,26 +78787,Kid listening to Farina,190352,55278,3 +78788,Policeman,28421,131047,17 +78789,Kenny,289190,107766,2 +78790,Himself,16214,26847,2 +78791,Colleague,65904,1269930,10 +78792,Amy Standish,44545,130951,2 +78793,Jin-seong,214910,64455,3 +78794,"Herkie, Bellboy",15788,78782,6 +78795,Sam Harrison,70151,54940,5 +78796,marinaio americano,11048,1086949,9 +78797,Carlino,11206,726,4 +78798,,329227,141677,1 +78799,Himself,191502,1040862,1 +78800,"Hitler Duck, Hirohito Duck, Other voices",166610,33923,0 +78801,MNU Mercenary,17654,1264617,34 +78802,Mormóni,72596,1114541,30 +78803,,105991,1265890,3 +78804,Henry Dunbarton,13519,61824,26 +78805,Le Père,9539,59615,4 +78806,Rachid,217775,93259,1 +78807,,208309,1427195,6 +78808,Pat Cheaver,16005,58045,4 +78809,Roman Nagel,298,1926,14 +78810,Clyde Fanning,116894,34971,7 +78811,Delivery Room Nurse,21208,90461,16 +78812,Carl Jr.,17287,84276,5 +78813,Apple Man,15788,1592590,9 +78814,Raghavan Nair,134477,584638,0 +78815,Reportera,100270,1446291,10 +78816,Brick,37911,32791,2 +78817,Chief Inspector,30637,1230452,11 +78818,Train Conductor (uncredited),99283,9084,6 +78819,Moses,9287,18841,1 +78820,Tory Foster,105077,62717,10 +78821,Javanese actor,3023,1580385,14 +78822,John,29054,1666903,15 +78823,Air Force Lieutenant,1726,1209711,53 +78824,Gwen Cromwell,34204,45041,1 +78825,Slim,35025,119200,9 +78826,Mechanic,45610,1738282,20 +78827,Joe Halsey,47312,5403,2 +78828,M'sieur Dede,27019,260837,9 +78829,,44238,1055119,5 +78830,Abel Pickney (stage driver),47914,14253,6 +78831,Mrs. Smith,82395,4568,4 +78832,Said,62630,1423442,9 +78833,Elena,17893,967164,12 +78834,Dorje,140509,1342692,5 +78835,,32934,932999,0 +78836,Lieutenant Wilson,14262,76505,14 +78837,Hombre de serenata,41298,1723103,14 +78838,The young man,96118,139088,9 +78839,Odd-looking Man,310135,982406,30 +78840,Karin Krettek,202183,72220,4 +78841,Miami Stagehand,26670,95977,10 +78842,Jake Gerrard,71120,149496,3 +78843,,86985,544021,5 +78844,Charlotte,55370,35341,1 +78845,Desk Sergeant (voice),177572,7884,13 +78846,Alise Michaels,206296,212044,2 +78847,Dr. Lin,278632,156648,5 +78848,Vampire John,17457,66125,17 +78849,Tour guide,64882,1090731,6 +78850,Asst. Dist. Atty. Herb Gates,84496,16101,3 +78851,Det. Storm Anderson,14452,1465,2 +78852,The girl,84473,102940,0 +78853,David Clark,144475,977837,15 +78854,Padre di Adalberto,59040,556743,26 +78855,Kermit the Frog / Foo Foo / Statler / Beaker / Lips / Rizzo the Rat / Link Hogthrob / The Newsman (voice),145220,64180,3 +78856,Patrick,360205,143861,10 +78857,Mormon Boy #2,10665,448999,3 +78858,Herself,366696,1753497,22 +78859,Francesca,120922,78707,1 +78860,Lt. Arthur Mitchell,118549,85940,2 +78861,Juge Renaud Van Ruymbeke,320318,48576,2 +78862,Queen's Dresser,1165,1598278,15 +78863,Sherriff of Ching Wa County,186634,87274,4 +78864,Ronald Smythe,268321,67206,9 +78865,Det. John Criton,15476,585,0 +78866,Butch - a Father,14589,103932,65 +78867,Miss Western Europe (uncredited),11338,114693,36 +78868,Sally,100528,108432,8 +78869,Brook (voice),176983,560354,25 +78870,Daniel Riveros,157409,1272877,7 +78871,Taiwanese Porn Actress,36253,65354,4 +78872,Marina,308165,1516166,1 +78873,Vercingetorix,34469,1086,6 +78874,Dr. Kendrick,24420,537,27 +78875,Peter Page,107985,1665,3 +78876,Man in Russellville Bank,183825,1420952,34 +78877,Dora,128598,130752,3 +78878,Drive-in guard #2,9080,7623,14 +78879,Soleil,50350,533548,11 +78880,Himself,238255,1234886,0 +78881,Man on T.V.,4520,26157,2 +78882,Shivangi,46403,1033806,3 +78883,Sofya Tolstoya,36811,15735,2 +78884,Steve Novak,197785,39608,0 +78885,Simmo,337958,102603,6 +78886,Mick Leary,19587,50095,1 +78887,Mr. Ray (voice),127380,10,15 +78888,Special Agent Phadkar,15577,49818,8 +78889,Pellegrini,165159,1883853,12 +78890,Alicia Reyes,450530,979851,12 +78891,Duska,79526,125737,0 +78892,Himself,376391,814150,1 +78893,Hannah (6 yrs. old),329865,1646448,8 +78894,Yan / Yank,18763,83556,3 +78895,Aunt Clarissa,52360,99329,7 +78896,Angry Club Bouncer,405473,1800023,10 +78897,Seniorinne 3,9483,225966,7 +78898,Guy Crane,120657,72059,2 +78899,Bisturi,5482,41155,1 +78900,Princess Gwendolyn,11839,14730,3 +78901,Aaron Corbett,50126,83141,0 +78902,,84420,1039426,11 +78903,Edgar V. Ingersoll,42752,20368,11 +78904,Brenda,294254,973667,14 +78905,Narrator,229056,1905,1 +78906,Young Baxter,87293,1209472,13 +78907,Mrs. Dewey Roberts,56558,82383,9 +78908,Ayeka,34935,60757,5 +78909,Tyrone,1550,19497,23 +78910,Van Driver,14301,76534,7 +78911,,97088,591338,12 +78912,Napping Station Agent,33541,1232540,56 +78913,Tatiana Pegova (voice),71051,565312,8 +78914,One of The Brian Sisters,108222,1277033,28 +78915,Casino Patron,268920,1754455,67 +78916,Aunt Belle Massey,1976,20366,5 +78917,Himself,4832,39656,4 +78918,"Frank Castle, Sr.",7220,6355,3 +78919,Waitress,30155,1086573,9 +78920,Teriza,153266,83264,0 +78921,The Father,310135,585933,13 +78922,André - Horse Groom,127812,29762,26 +78923,Quinn,38654,141246,11 +78924,Mila Sweeney,337879,1367285,1 +78925,Bernice,106131,12851,0 +78926,Trish Huddle,19235,1012982,10 +78927,Himself,406431,74750,3 +78928,Boy #3 at Play (Worm),10710,1778260,37 +78929,Le capitaine,166883,992679,10 +78930,,224894,1483978,1 +78931,Giada,82350,297300,8 +78932,Cebrail,38547,117640,2 +78933,Business Man 1,244539,1493821,21 +78934,Train Announcer (voice),13792,75541,5 +78935,Dr. Janet Bates,28820,102118,9 +78936,Production Manager,210940,1039,8 +78937,Photographer,270650,1359964,31 +78938,Video Technician,380731,1643339,14 +78939,Anna's Father,5165,231979,6 +78940,Hughie McGowan,9815,176,9 +78941,Bill,130507,112009,29 +78942,Madame Mousey (voice),27653,95257,8 +78943,Louis Steiner,27095,15482,5 +78944,,4266,26878,9 +78945,Gordon,81787,17498,2 +78946,Furber,16899,7058,6 +78947,Gary Gilmore,125842,13550,1 +78948,Hotel administrator,13653,1816296,11 +78949,Himself,53380,99916,4 +78950,John Gurney,30934,11028,11 +78951,Fat Louis,131039,229,9 +78952,Himself,97724,1388672,23 +78953,Lilongo,86956,127560,2 +78954,Dona Jô,303982,1689167,4 +78955,Louella,118889,1268102,61 +78956,,216046,1200689,6 +78957,Dr. Cho's Assistant,99861,1760859,29 +78958,Shepard,19898,4886,6 +78959,Junior,94725,29382,8 +78960,Shampoo,12247,71897,14 +78961,,109587,1055272,22 +78962,Tom,25551,82385,18 +78963,Dignitary on Dais at Graduation Ceremony (uncredited),10178,1208020,28 +78964,,72733,1648357,6 +78965,Princess Tori (singing),129533,582116,1 +78966,Cammi,9675,162342,6 +78967,Tony,323665,19490,6 +78968,Hockey Dad,10033,62250,13 +78969,The Little Prince (voice),309809,1397911,9 +78970,Amber,17483,81959,13 +78971,Richard Fieldston,48949,15412,8 +78972,jako Izaak Menzl,406449,935612,10 +78973,Ethan Tremblay,41733,58225,1 +78974,,343140,1147123,11 +78975,Nilli,39839,1235179,8 +78976,Stu,24978,92940,1 +78977,Diner Waitress,354979,1618923,52 +78978,Beach goer wedding scene,82696,928636,9 +78979,Viktor Kharlamov,107705,225724,0 +78980,Stefano,186630,37583,3 +78981,Dodo (as Shirley-Anne Field),43092,83909,5 +78982,Terry's Jazz Quintet,149509,1432729,34 +78983,Zing,30305,131467,5 +78984,Francesca,29272,1152205,5 +78985,Moana's Father,94727,1840032,3 +78986,DI Anna Freedland,298695,1247020,4 +78987,Lady Stuckley,245700,1220089,38 +78988,Richard Mason,38684,205258,31 +78989,Capt. Grifton (uncredited),28000,91260,24 +78990,Lexie Pophart,91679,1782618,63 +78991,Himself,23524,90226,0 +78992,Tata,65839,32564,0 +78993,Concert Shirt Vendor,11172,1758694,53 +78994,Scott,58547,53368,12 +78995,Sheriff Silver,298584,1060637,12 +78996,John Reno,22408,116845,5 +78997,City Girl,39995,1089980,5 +78998,Mrs. Ozobia,209401,1680719,12 +78999,Adjutant,14531,550312,12 +79000,Admiral Ackbar,140607,114761,34 +79001,Mother Redempta,110502,88461,4 +79002,Nicholas Prax,214909,19550,1 +79003,Patrice,65646,9741,0 +79004,Jared,251227,1286525,11 +79005,Priest Labros,35396,935632,6 +79006,Student,45431,550899,13 +79007,Jack,31919,159544,2 +79008,Receiving Marine #2,424488,1084721,23 +79009,Background actor,52454,583114,58 +79010,Niles,112961,33942,3 +79011,Carlos,42329,30830,5 +79012,Detective Vargas,44027,454,4 +79013,Sam,244403,8289,0 +79014,Eleni,163791,1260050,0 +79015,Acteur,35025,91271,30 +79016,Tina,293970,183073,7 +79017,Agent #1,10596,65808,15 +79018,Pops,352719,98445,8 +79019,il prete,121998,1891814,7 +79020,Bikini Model,117942,1066315,11 +79021,Paternò,173847,237084,10 +79022,"Gene ""Geno"" Burman",233490,74036,15 +79023,Mick,14476,206726,10 +79024,Jeremy (Gallery Owner),24420,1178559,23 +79025,Prostitute,2994,49897,9 +79026,Samantha,9900,1817,0 +79027,Lt. Reach,42204,408,5 +79028,,16017,234741,19 +79029,Steven (voice),378236,52601,11 +79030,Father of Munyurangabo,57654,1811553,8 +79031,Chica,48594,1804259,10 +79032,Ren Corky,9893,53492,7 +79033,Dr. Harris,153161,33025,29 +79034,Woman Skeleton 1,315855,1557143,29 +79035,атаман Парамонов,20963,86873,11 +79036,,107705,55512,7 +79037,Genet,50416,24701,5 +79038,Dan Reid,57201,18473,4 +79039,,45205,132531,5 +79040,Signals Officer - Air Force,209112,1505007,102 +79041,Bellofs,3577,20021,15 +79042,Receptionist,5123,1781325,26 +79043,Egan,28561,86356,4 +79044,Hisako Morizono,111398,241839,2 +79045,Melody,12575,33040,0 +79046,Shaman,8471,1473183,3 +79047,Robert Ferrars,315010,29237,15 +79048,Mangiafuoco (voice),136619,120135,2 +79049,Mr. Richardson,37329,120739,11 +79050,Penelope,248268,210346,5 +79051,Emory Lane,63273,21624,1 +79052,Rachel Michot,118536,131441,9 +79053,,296136,1371161,2 +79054,la prostituée,4948,16926,8 +79055,Rockingham Stationmaster,74314,117696,10 +79056,,72054,1150552,16 +79057,,288694,1356805,8 +79058,Lila,16131,37917,1 +79059,"Superman/Clark Kent, Bulleteer",145963,214193,2 +79060,A.J. Budd,233208,79505,0 +79061,Various roles,41076,929657,5 +79062,Cop,9812,154228,9 +79063,Henry,363439,7220,2 +79064,Thorpe,20034,2258,4 +79065,Ines,320588,1538574,21 +79066,,54858,1136767,8 +79067,Teacher,348689,1293080,4 +79068,Gino - le braqueur,8281,41035,1 +79069,Ella,356483,1524094,7 +79070,Sick Man,371645,1671691,19 +79071,Baek Sang-eo,21708,87786,2 +79072,Kenan Rockmore,36817,77330,0 +79073,Paul,44754,18793,6 +79074,Allison,62039,2109,1 +79075,Trooper Walter Spenser,131966,1205,0 +79076,Narrator (voice),269797,1245537,0 +79077,Erica Sharpe,26962,25308,1 +79078,Sybel,66045,624,3 +79079,,125264,1200870,14 +79080,Greg Hayes,15613,9976,4 +79081,Shekhar Malhotra,33146,85696,8 +79082,Ballinger,183832,33701,8 +79083,Trista,321160,35705,1 +79084,Photographer (uncredited),31773,120462,43 +79085,Cadet Maj. Rollins,179103,95296,0 +79086,Melville,172443,1796927,6 +79087,Miss Bixby,62694,85991,15 +79088,Last Engineer,70981,946696,13 +79089,Max,230211,147537,0 +79090,Tina,116463,1477242,6 +79091,le boucher,60824,37649,9 +79092,Kirby,341559,256725,3 +79093,Slug,16066,79128,6 +79094,,59147,55914,9 +79095,Li's student,62762,1427158,13 +79096,Steve,18238,141539,13 +79097,Chubby Blonde Sailor,264309,1045095,20 +79098,Monroe Bachman,137528,1196006,0 +79099,Roquentin,61765,28189,5 +79100,,43095,1663040,16 +79101,professor Lundborg,145247,1264193,18 +79102,Mrs. McCullum,44027,6465,7 +79103,Pregnant Girl,336011,1560246,15 +79104,Moti,117629,164,1 +79105,Wendy,10096,21044,12 +79106,Bobby,263115,1788168,36 +79107,Manuella in Paris,54898,97082,3 +79108,Will,397717,931944,5 +79109,Pete (uncredited),41468,34811,13 +79110,,327935,97274,6 +79111,Himself,37003,82428,4 +79112,Hackel,31605,13726,3 +79113,,166027,85724,5 +79114,Actor (uncredited),53419,21311,11 +79115,Amanda,47876,5823,1 +79116,,69352,556114,4 +79117,Catherine Girard,86023,4273,0 +79118,Sim Hacker,138308,31260,4 +79119,Sub Inspector Baidyanath Mishra,33460,110711,7 +79120,Luutnantti Anni Marja Sievänen,55763,223077,3 +79121,Richard,340027,80602,5 +79122,Tarro,197849,125198,4 +79123,Pearl,118150,1079940,6 +79124,Zwei,178446,20262,24 +79125,Wilcox,27349,153460,9 +79126,Basta,2309,3543,12 +79127,Extra (uncredited),3059,14855,48 +79128,Lisa,128270,1376597,36 +79129,Alma - Zhan's wife,76438,578848,9 +79130,,3549,234401,17 +79131,,253533,146149,9 +79132,Eva,416256,154615,6 +79133,Mechanic,284564,1836946,26 +79134,Sonny MacGregor,49843,12446,1 +79135,Funny Filly Farm Girl,384450,1623393,14 +79136,Ida Mae,191465,14108,4 +79137,Gaetano,8882,1882931,10 +79138,Black Wind Fortress Kam Ching,45197,1178942,6 +79139,Mildy Torres,444193,15655,7 +79140,Andy the Cop,174195,85996,12 +79141,Carlo Donati (as Joseph Thelman),28068,99558,6 +79142,Old Roberto,264397,1324063,10 +79143,Jerboa Mouse,358511,1803941,4 +79144,Extremis Soldier,68721,1735572,85 +79145,Anya,13777,40938,2 +79146,,13506,13709,12 +79147,Young Peggy,274479,1330999,11 +79148,Richie,17258,76513,11 +79149,Blonde Zealot,284052,1697472,11 +79150,Mr. Meebles,17893,962179,9 +79151,Oriental #1,32489,87067,5 +79152,Vegeta,39103,122501,3 +79153,Caroline Hart,27112,97246,6 +79154,Old Fisherman,10488,1077897,10 +79155,Mother of Baby Vaughan,153162,117638,39 +79156,Nathalie la brune,65646,239781,4 +79157,Bit Part,18651,945918,23 +79158,Evgeni,336890,1179445,12 +79159,Ramsbotham,31324,102888,6 +79160,Teller,4441,37292,8 +79161,Frank,103620,109,0 +79162,Erik Smeds,61121,123399,4 +79163,Thomas Clarkson,15163,17328,5 +79164,,244956,1095921,13 +79165,Underwear Model,13805,181685,9 +79166,Bjarni,70800,1188864,6 +79167,Jerry's Mother,244458,52666,9 +79168,Nurse #2,46695,241558,9 +79169,Otto Danzig,18684,571911,9 +79170,Mitchell,13834,53720,5 +79171,Gajraj Singh,33460,110707,1 +79172,Milena,337758,82759,13 +79173,Ma Logan,39982,1072160,11 +79174,Danny Ocean,163,1461,0 +79175,Enormous Orphan,51247,1722585,16 +79176,Croker,35197,6969,1 +79177,Mirka,47848,32379,3 +79178,Rodeo Steer / Rodeo Bull (voice),18843,1218930,28 +79179,Agnes,51571,81293,11 +79180,William Black,64685,2954,6 +79181,Girl with Stockbrokers,18651,139322,75 +79182,Sarah - College Coed (uncredited),88288,114956,8 +79183,"Himself, film historian",135313,1102131,4 +79184,Abby,6687,51072,2 +79185,,359807,65464,1 +79186,Felipe,10425,65126,12 +79187,Amica di Maria 2,110447,1752447,16 +79188,Sullivan,120109,2501,6 +79189,Reefer Girl,6575,51992,36 +79190,Col. Faversham,104485,262394,11 +79191,Aron,21481,87577,11 +79192,Shurka,7234,33942,2 +79193,Black Woman,118760,1734736,12 +79194,Wade Coley,262841,11805,7 +79195,Ogilvey,58,1229277,22 +79196,El Pelón,4497,37512,12 +79197,Gilbert Bouchard,26566,234199,6 +79198,Mr. Phipps,540,61981,9 +79199,Tony Rivers,43228,116771,0 +79200,Alf,27917,30119,9 +79201,le directeur de la prison,74822,32077,11 +79202,Rustin Parr,289923,1099455,5 +79203,,63401,24854,7 +79204,Steve Lombard (voice),166076,5727,4 +79205,Dan,186606,1042516,28 +79206,Martha,229056,948927,12 +79207,Scavenger 2,179105,1161671,7 +79208,Barker,43809,91218,32 +79209,Wilma Fernbacker,280495,1338082,4 +79210,Mr. Lunt,275136,78297,2 +79211,Monsieur Falconetti,50350,82924,12 +79212,Khan,14134,85588,10 +79213,Bartender (uncredited),336890,1639966,35 +79214,Tony Alva,9787,59251,1 +79215,Dad (voice),9297,20753,6 +79216,Fergus Flamingo (voice),9904,60228,7 +79217,Annie,327389,127812,6 +79218,At Dance (uncredited),42553,90375,15 +79219,Fiona,89287,144791,4 +79220,Miss Grant,345003,46948,3 +79221,Felicia,312669,52792,5 +79222,Dunkan Bulk,264646,94570,4 +79223,Padella,23619,127016,15 +79224,Marie,228108,37153,2 +79225,Indian Teenage Girl,257344,1683842,49 +79226,Uncle Art (voice),1267,26847,20 +79227,donna all'ospedale,302802,119366,10 +79228,Koji Yamauchi,55197,213488,7 +79229,Christine Cadwalader,172443,1254725,5 +79230,Bartender,18725,35452,9 +79231,Sang-Chul,242458,224672,7 +79232,Clell Miller,27349,1107,3 +79233,Pracownik naukowy (voice),31856,1138713,13 +79234,Grégoire,340616,1576306,3 +79235,Tommy,26469,145195,1 +79236,Jerry Fortness,76229,549612,7 +79237,Devon,253283,1218218,1 +79238,John O'Hara,207641,93919,9 +79239,Hôtesse Air France,352025,1784154,20 +79240,Martha Kent,209112,2882,5 +79241,Priest,42664,12023,4 +79242,,31275,1853897,22 +79243,Ray Purvis,6933,37203,6 +79244,Leona,405473,1647428,5 +79245,Troy,205724,1053940,6 +79246,Balan,398786,1717374,2 +79247,Jill Hunter,53870,116575,10 +79248,Zeugin Kiebutz,225244,20884,5 +79249,Dueña del camping,121929,1295180,6 +79250,Patri,481,6539,6 +79251,Masha,64736,239670,0 +79252,"le sergent Andreij ""Mad Dog"" Lidovski",90231,211029,16 +79253,Maurice Doucette,122930,1470,4 +79254,G.G. Oberoi,55376,71090,4 +79255,Cook,25694,89100,22 +79256,Beverly,290370,1354630,10 +79257,Maj. Thomas,115054,58214,8 +79258,Steve Ames,10004,6106,0 +79259,Klaus Konstantin,2979,117171,3 +79260,Babalatchi,87349,11028,6 +79261,,202662,586255,4 +79262,Tokumitsu Taiin,17895,82970,7 +79263,Ritter Berthold von Rabenburg,226001,231628,4 +79264,Sylvia,397717,1620980,7 +79265,Bernard Valenti,10795,52342,10 +79266,Agent Santos,334527,89375,5 +79267,Jiang Chongwei,64304,70674,3 +79268,Eglantine Laville,64362,23671,3 +79269,Hotel Receptionist in Toronto,133382,1644186,13 +79270,Myron Winton,33673,2771,8 +79271,Himself,269797,4610,7 +79272,Vacek,14066,12210,5 +79273,Col. Hakkim,52314,78111,5 +79274,Jany,2566,5077,2 +79275,Le photagraphe,85429,21578,5 +79276,Leonard,10362,73421,0 +79277,Luis de Alquézar,13495,116072,12 +79278,David,283726,17497,2 +79279,Sam,46586,136982,9 +79280,Prom Teen #2,263115,1542831,46 +79281,Priest,18908,4463,9 +79282,Lula Dingman,10710,76414,5 +79283,Shunack (voice),14945,35642,5 +79284,Suman,118809,76233,1 +79285,Miles,18755,83530,0 +79286,Adam Kidan,45324,16165,6 +79287,Christine Trunschka,157420,43358,3 +79288,Mr. Frith,248639,5832,5 +79289,Carl Stewart,120587,586951,2 +79290,Realtor,24420,1393535,26 +79291,Donovan,17622,1122014,10 +79292,Mrs. Rodriguez,64456,113726,9 +79293,Samuel G. Henshaw,43157,150082,8 +79294,Barmaid,43833,1026388,32 +79295,Flipper,15020,80968,7 +79296,Guard,2001,61016,46 +79297,Mrs. Geraghty,73348,2772,11 +79298,Faleaka,171759,20904,2 +79299,Minor Role,43811,991150,32 +79300,MC,32588,130782,6 +79301,Student,240832,1426373,29 +79302,,11328,1444491,39 +79303,Marcel Reich-Ranicki,72421,16808,0 +79304,Raste,2172,22560,3 +79305,Sadako Toritani,21966,556785,7 +79306,,35572,1662173,8 +79307,The Giant,28367,89527,20 +79308,Mrs. Barwick,104211,2018,5 +79309,Tortuga,102629,1398506,10 +79310,Gus' mother-in-law,42640,987830,9 +79311,Bones (voice),9297,11662,10 +79312,Laurie,31074,53086,1 +79313,Marie,20108,18227,0 +79314,Widow Runk,31542,1037921,4 +79315,,338079,1461572,7 +79316,Hugo,264729,228874,0 +79317,Werner,150056,36755,6 +79318,Achuthan Nair,134477,988751,3 +79319,Stanley Farmer,5172,41884,3 +79320,Count Albert Sandor,53851,81934,3 +79321,Gas Station Manager (uncredited),27986,116661,17 +79322,Carla's Family #2,2143,132898,20 +79323,"Gabriella Murge, alias Gaby Doriot",120972,31696,0 +79324,,37959,550571,15 +79325,Fabio,8899,70312,2 +79326,,69352,46065,2 +79327,Melissa,33570,110911,5 +79328,Becky,10096,155621,13 +79329,Takako,253232,118985,5 +79330,Rehavia,35623,1163112,6 +79331,Reporter (uncredited),16442,265594,30 +79332,,69471,5049,0 +79333,Rodrick Heffley,82650,90498,2 +79334,Captain Emily Maddox,328429,5411,2 +79335,Beth Windsor,210739,12216,1 +79336,Catherine,51736,60116,0 +79337,Charles,263115,2387,1 +79338,Wendy Clark,226167,207713,2 +79339,Superintendent,17082,66773,12 +79340,Sudhir (Sudhya)/Sudha,302435,994514,3 +79341,Charlie Chan,38461,34747,0 +79342,Sommer,21141,59180,11 +79343,Cabaret Dancer,264309,121322,11 +79344,Avukat,109671,1259587,7 +79345,Skip Caldwell,94671,879,6 +79346,Francis,415633,181758,8 +79347,The Snake (Voice),81684,47632,1 +79348,Fernando Garcia,325173,78498,4 +79349,Judge Beth Weaver,84496,153347,11 +79350,Harley Mom,10070,62819,12 +79351,Schoolyard Kid (uncredited),25132,1112461,27 +79352,"Michelet, le secrétaire du commissaire",43462,247601,3 +79353,Grimaud,112304,10182,1 +79354,Lenny Slater,55712,17444,1 +79355,Theaterguests,169758,1494874,9 +79356,Izumo,45384,588612,1 +79357,Trooper,242042,141762,6 +79358,German Commander,297762,659,52 +79359,Chris,11376,181043,7 +79360,Kathryn Dent,73565,125938,14 +79361,Morty Donovan,137357,1107198,6 +79362,Henchman Big Jack,91961,32430,9 +79363,François “The Nightfox” Toulour,298,1925,15 +79364,Boss,228355,35070,0 +79365,Himself,63144,1491140,36 +79366,Lucien T. Pringle,96252,13994,8 +79367,Kim,36992,465117,2 +79368,Gus' Dad,222935,1124950,11 +79369,The Powerful,127424,235410,2 +79370,German Informer,91390,1088,13 +79371,Delivery Man,17317,60399,27 +79372,Pearl,43228,1759504,7 +79373,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1891533,45 +79374,Police Officer Hough,13836,59844,37 +79375,Judge,43821,30276,10 +79376,Caterina,42892,129108,5 +79377,Guest Appearance In Title Song,20132,35742,5 +79378,Hubert,2516,25636,3 +79379,Nurturer,227156,1274509,9 +79380,Chief Inspector Contaldi,3701,33820,6 +79381,Mama,92309,43976,4 +79382,Bruce,1640,18287,30 +79383,Rachel,107104,1041317,3 +79384,John Ramsey / John Ramsey Auditionee / Himself,430826,1891500,22 +79385,Himself,15258,60788,19 +79386,Gina,14137,122230,7 +79387,Ruth,54139,48958,3 +79388,Méte,120457,555528,0 +79389,Iwakiri Sencho,17895,68411,6 +79390,Gas Station Attendant / Victim,20481,103071,16 +79391,Baby Sherman (voice),82703,1454441,24 +79392,Clip from 'Idiot's Delight' (archive footage),33740,19967,34 +79393,Lucy,43470,133459,9 +79394,Cryptographer #1,329865,51389,28 +79395,Manu,38282,96928,4 +79396,Doris Bellinger,14569,45863,4 +79397,,27904,935292,1 +79398,Rachel,25973,11150,5 +79399,Peter 'Spudsy' Baker,242332,4303,4 +79400,Jake,226701,1067459,3 +79401,Ivan,78340,1163656,4 +79402,Eddie Mack,27114,145839,9 +79403,Meghan,384682,78324,12 +79404,Jury Forewoman,245706,130843,30 +79405,Mark,115283,115974,10 +79406,sozaibu Chief,81296,1252765,9 +79407,Jessie,358199,7520,13 +79408,Nurse,67375,967133,43 +79409,Radarman (uncredited),10178,1541923,17 +79410,Maxwell Bishop,50942,17040,6 +79411,Jack Winton,294093,1420251,6 +79412,Clovis Madison,63988,24368,4 +79413,Alex Stewart,200727,237455,1 +79414,Louise Rossi Levi,197089,5077,0 +79415,Hazel Weatherwax,27543,89810,4 +79416,Mr. Lieutenant,358511,1603081,5 +79417,Prudence,22447,1220119,7 +79418,Herself,385114,1364775,0 +79419,Jasmine,14226,83645,5 +79420,Florencia,180644,1845735,2 +79421,Marty Berger,40034,10195,3 +79422,Bunker,27349,3339,11 +79423,Rosa,39958,239998,6 +79424,"Alfred, le véritable assassin",43462,142940,2 +79425,Girl,158990,7706,16 +79426,Frank Grubman,256924,290,4 +79427,Gurra,72596,1114216,9 +79428,Muukkonen,20164,124285,6 +79429,Team Leader Oh,346646,77188,3 +79430,Himself - Lead Guitar,18094,103207,0 +79431,Bob,10740,3229,9 +79432,Ghost Woman,216374,101054,11 +79433,Diplome,436340,1744819,6 +79434,Himself,62838,167662,27 +79435,Mr. Jaggers,121674,1923,4 +79436,Milkman,54804,1637460,24 +79437,Steven Vecchiarutti,20414,128424,3 +79438,Beatriz,49974,1681270,8 +79439,Chorus dancer (uncredited),39039,110102,4 +79440,,53407,1893379,6 +79441,Jonathan,426264,1390505,6 +79442,Driver,153272,1125663,13 +79443,Lila,37126,122635,1 +79444,Fasmagger,354133,1496071,11 +79445,Haruna,14829,101913,4 +79446,Professor Eugen Bleuler,48231,1846,5 +79447,Sir Robert,5494,652,7 +79448,Edith / Virgin Mary,25625,10373,5 +79449,Terry Perry (voice),62211,21290,8 +79450,Mother of Ellis,24199,34871,9 +79451,Student Pilot,18651,2928,10 +79452,Charlie,44960,40551,0 +79453,Jeremy Johnson (voice),71689,51583,8 +79454,Gregory,81030,30262,11 +79455,Paddy,49199,80374,5 +79456,Regina 'Rexy' Gordon,53792,30000,1 +79457,Det. Judd Ridley,51054,68812,4 +79458,Troy Bolton,11887,29222,0 +79459,Hasmet,271954,1250945,1 +79460,Malin,75233,931611,4 +79461,Ollie,345069,978824,7 +79462,Mrs. Freda Chatfield,183171,93698,3 +79463,Abu Bakaar,1726,173810,16 +79464,The Boy,79596,587540,2 +79465,Schultze,9483,36928,0 +79466,Friend at the Picnic,12573,171379,17 +79467,Maria,12811,1827452,9 +79468,Mary 'Mama' Clark,14834,15899,4 +79469,Inspektor Silva,284013,67449,2 +79470,Jessica,33788,11863,0 +79471,himself,30966,65606,2 +79472,Nazır Paşa,31547,1052887,3 +79473,Agent Karol Sieradzki,49588,127856,3 +79474,Christopher,345916,76996,6 +79475,Monsieur Treville (voice),23566,27119,10 +79476,,37959,137029,16 +79477,Star Chow,47647,57607,0 +79478,Nia Teppelin,23452,90136,3 +79479,Joyce Vincent,83540,118034,0 +79480,Bailey,38437,120455,11 +79481,Luang Phor Thammachote,39907,228622,2 +79482,Eleanor,13957,18345,16 +79483,Chris,294652,75131,6 +79484,Teresa,200324,1304062,2 +79485,Stig Inge Otnes,15177,77976,2 +79486,Himself (archive footage),18893,58296,0 +79487,Nell Gaither,65488,2639,2 +79488,Messiah (voice),64784,112135,4 +79489,Nicky Gazelle,7304,50586,7 +79490,,85327,10362,5 +79491,Loi,24916,92824,1 +79492,Danny,26823,85417,0 +79493,Jessica Barrett,33801,44404,0 +79494,,37419,210603,1 +79495,Sarto,38362,100680,5 +79496,Madigan,55448,13936,13 +79497,,256907,1045898,7 +79498,Chris,39824,1866644,15 +79499,Mago Viento,177714,1160231,2 +79500,Babuka,109354,1046078,8 +79501,Shô Kawajiri,31512,117975,1 +79502,Ivar Sund,442752,1687411,8 +79503,"John, Tom's Houseboy",413232,1128885,46 +79504,Police Dispatcher,142402,1117096,29 +79505,Manny,347031,10980,1 +79506,Baby Dunk,28001,99370,5 +79507,Jason,13655,130566,8 +79508,Sami,113660,1057630,4 +79509,Referee,183662,127555,9 +79510,,340176,1711402,12 +79511,Grocery Delivery Boy,352719,1221794,14 +79512,Yutaka Itazu,35435,90137,8 +79513,First Victim,429838,1734253,9 +79514,Gus Hoffman,131360,1295853,12 +79515,Parenti,177104,13733,2 +79516,Cleopatra,43902,30155,0 +79517,Oshono,73043,144418,4 +79518,Madhu,125835,237040,1 +79519,Dempsey Rae,43319,2090,0 +79520,Rezin Schnyder,16157,121628,4 +79521,Sunshine,88641,95468,2 +79522,Dealer,21968,129933,6 +79523,Dr. Benson,54139,24556,13 +79524,Claudio - L'ecologista,169069,1848599,8 +79525,Czarnota,31273,2823,51 +79526,Béatrice Bretzel,366566,54324,5 +79527,Herself - Storyteller,128216,1332913,6 +79528,"No. 326""",78507,13893,1 +79529,Tough Teenager,4982,1181344,47 +79530,Katherine Mee,74465,121953,9 +79531,Kathie Ruder,68191,31844,0 +79532,William Burton,26116,29068,1 +79533,Lug Head,38322,1869044,41 +79534,Allison,18616,43232,1 +79535,Xenya,171337,73357,3 +79536,Mercy Chant,101915,495384,15 +79537,Sweeney,20439,73589,3 +79538,Murugesan,66224,150197,3 +79539,Jude,16921,56366,7 +79540,Himself,15258,158395,29 +79541,Mrs. Bull,81120,127023,11 +79542,Chief of Wazini,225503,148053,8 +79543,Priest,378607,1146915,8 +79544,Father,33407,107543,3 +79545,Ivan McCormick,54093,118616,1 +79546,Baldir,63736,240946,4 +79547,Mr. Warren,18977,98451,10 +79548,,330333,66838,3 +79549,Sonni Moilanen,109861,93565,7 +79550,Riley,138544,1298755,8 +79551,Rocky,32868,76764,5 +79552,Bob MacDonald,56135,13733,7 +79553,Daniel Stone,17241,12260,1 +79554,Jason,91186,1163184,9 +79555,Serveur,121539,933053,14 +79556,Akari,12622,73138,1 +79557,"(segment ""Miminashi Hôichi no hanashi"")",30959,552672,56 +79558,Watchman,250332,1250223,26 +79559,,284246,31655,2 +79560,Young Theseus,37958,450366,16 +79561,Uruguayo,351809,18478,5 +79562,himself,24479,9032,2 +79563,Blue Tent Man,329440,1777434,25 +79564,Rob,173294,6640,7 +79565,,153196,1283562,11 +79566,Marie,190955,3127,7 +79567,Dorel,50674,82809,1 +79568,Eze (voice),9904,60230,9 +79569,Ninja Warrior,280617,100022,5 +79570,La domestica,43231,126559,4 +79571,Yashvin,96724,224192,24 +79572,Anne,15177,49563,13 +79573,Spectra Vondergeist (voice),227257,188982,4 +79574,Alistar,55433,84927,14 +79575,Justine,116894,29880,2 +79576,Himself,84309,1855572,4 +79577,Komiser Yılmaz,49828,142838,2 +79578,Dr. Lockhart,31263,66224,1 +79579,Danseuse station-service 2,274483,1676881,14 +79580,Craig,20107,94906,5 +79581,Leslie,333371,8269,6 +79582,Staff Member #1,312221,1746932,50 +79583,Viviane Amsalem,270403,19942,1 +79584,Leo,79995,10655,5 +79585,Katherine Bellamy,51049,2453,1 +79586,Alain Chabert,33095,54918,1 +79587,Le capitaine Ludwig von Stegel,33336,37777,0 +79588,Annie Morales,241239,80002,18 +79589,Mère de Jeanne,148327,79622,12 +79590,Dr. Grunbaum,122709,2932,2 +79591,Annabel,17144,52050,3 +79592,George Hale,53781,88978,2 +79593,,47211,35608,10 +79594,Bjorn,48791,12517,7 +79595,Demon,405882,1783677,23 +79596,Parker,435,6071,9 +79597,Louie Ramponi,116385,1793,4 +79598,Patty (voice),227973,1393186,14 +79599,Associate VFX Supervisor,14543,1401968,15 +79600,Matan,144271,1120644,4 +79601,Chirurg,9572,18072,6 +79602,Zhang Hui,299828,71057,1 +79603,Winston Churchill,65035,27822,13 +79604,,332872,1356494,30 +79605,Igea Lissoni,59230,31818,9 +79606,Gina,13728,2415,4 +79607,Paraszt,63625,1402322,7 +79608,Trevor,300669,1577093,8 +79609,Himself,156220,1147113,1 +79610,Josh,274504,18975,4 +79611,,128120,73752,2 +79612,,77534,373213,14 +79613,Sylvie Guthrie,152748,1887742,10 +79614,Carl Moll,83209,16797,5 +79615,Avinash,190940,1147461,3 +79616,El Huron Golden Bikini Girl (uncredited),15092,1781925,64 +79617,Gypsy Grandmother / Dr. Fishbine,102841,7505,4 +79618,Arthur (uncredited),22447,39186,35 +79619,Prison Radio Announcer,171446,34162,14 +79620,Pino,60551,12422,4 +79621,Zigeunermädchen 2,52475,1487248,32 +79622,James Brown,73772,2467,3 +79623,Giacomo,315319,1880539,25 +79624,TV Reporter,9968,61170,16 +79625,Investigator,45431,550901,19 +79626,Himself,15258,176029,34 +79627,Wink Barnes,31462,137529,7 +79628,Big D,18747,56861,1 +79629,Lily Gilbreth,50549,601472,24 +79630,Twin in Boardinghouse (uncredited),52440,1905154,55 +79631,Flash (voice),49013,1443755,45 +79632,Daniel Cousteau dit Daddy,332794,28190,7 +79633,Bodyguard,34977,113516,11 +79634,Principal Bass,35320,16562,5 +79635,Club Owner,151043,103069,14 +79636,Joan,119639,41232,3 +79637,Emmi Emilia Mattila,442752,234260,17 +79638,Lucky Peter,17303,995175,11 +79639,Torkild,23289,84242,3 +79640,Sea Captain's Daughter (voice),16440,81378,4 +79641,Eddy,237584,1544809,26 +79642,Anne Osborne,92298,15197,1 +79643,Coffee Shop Patron,186759,1505300,27 +79644,Jimmy,215658,1223381,0 +79645,"Kannai's Colleague #1 (segment ""Chawan no naka"")",30959,30470,69 +79646,Hal,114779,135795,9 +79647,Doctor (uncredited),15092,77870,24 +79648,Inspector Calvin,11647,66125,17 +79649,Sarah Pocket,16075,4573,5 +79650,Nadir,35110,67715,3 +79651,Roger,277710,211991,17 +79652,Dr. Baumann,33305,143060,11 +79653,Laddie O'Neil (as Larry Ryle),30034,106505,6 +79654,Zhang Yi,38099,11401,5 +79655,Larry,18190,9632,2 +79656,Sgt. Reid,131689,1093520,10 +79657,Nurse (as Diana Eagle),131815,100566,10 +79658,La contessa Livia Serpieri,43195,15385,0 +79659,Alisa,252034,139456,1 +79660,Ángela,53739,1661452,13 +79661,Young Mother,306952,1511976,33 +79662,TV Anchor,288281,1455755,8 +79663,Fine,24685,23621,4 +79664,,209032,556788,19 +79665,Frieda,26891,19123,1 +79666,Tony Coveney,172008,55467,1 +79667,Paula Dupree - the Ape Woman,84708,131056,0 +79668,Sofia,58400,1093686,9 +79669,Lorenzo Galante,43213,5170,2 +79670,Sawyer,339527,20191,11 +79671,George Tutman,62132,935932,1 +79672,Luann Mitchler,286532,16858,1 +79673,,28465,57748,3 +79674,Raquel,1418,16979,8 +79675,Basement Sergeant,193893,113506,59 +79676,,58447,1732771,8 +79677,Howard Burkan,229297,16358,7 +79678,Ota,33333,110502,4 +79679,Tim,10033,42711,11 +79680,Cathy Hiatt,206296,84223,0 +79681,Hiroko's Assistant,18722,553431,18 +79682,Dr. Jane,136146,209785,2 +79683,Vanessa,92424,142443,14 +79684,Young Mary Hatchet,47194,141035,6 +79685,Barney,42634,65505,3 +79686,Keith,268735,10920,6 +79687,Caroline Hawkins,23169,1218228,5 +79688,Shiva's Brother,109001,584682,6 +79689,Judy,87516,1181354,8 +79690,Coach Karen,9779,172888,30 +79691,Officer Stone,1640,1331794,44 +79692,Subteniente,107073,1481497,9 +79693,Police Supt,81120,97217,15 +79694,Janet King,5721,45103,4 +79695,Fohn,45243,116421,13 +79696,Paramedic,14510,100656,8 +79697,Syren 2,274857,1262627,36 +79698,Weapons Man,38150,1665,2 +79699,Liquor Store Owner,152737,15801,14 +79700,Bumboat Girl,52859,1671459,37 +79701,Carlo,41211,1188528,17 +79702,Krantz,16444,119359,15 +79703,Bill Malloy,51875,6163,1 +79704,Lt. Vince D. Bardeman,30036,33969,12 +79705,Charlie the Garage Helper (uncredited),17136,47001,45 +79706,Barbara Quigley,124527,33092,1 +79707,Bryce,15285,17421,2 +79708,Detective,14589,30217,39 +79709,Musa Rami,49828,117640,0 +79710,Techka Blackhawk,119010,1620448,5 +79711,Max's Mutter,119816,1071141,10 +79712,,61266,237447,4 +79713,Dr. Clark,45692,87750,8 +79714,Ricky Morandi,42438,119991,1 +79715,Guard,262958,1537748,36 +79716,Leningrad Cowboy,30366,106172,9 +79717,Tolley,61908,121400,4 +79718,Maria,246133,1446018,11 +79719,Peter Waters,1640,18291,12 +79720,Geraghty,84352,757902,9 +79721,Gaelen,20880,1127663,1 +79722,Breena Harper,82631,4810,4 +79723,Richard,229182,335,1 +79724,General Roderick,7916,15863,4 +79725,Shorty,86472,32679,5 +79726,Basti Honk,80125,21748,3 +79727,Loretta,37978,31383,6 +79728,,137614,932073,5 +79729,Okoshkin,83491,39792,3 +79730,Young Dad,431093,1753144,15 +79731,Fuyuki Kanzaki,223391,1255322,4 +79732,Connor 'The Highlander' MacLeod,8010,38559,0 +79733,Alan,384682,1459830,22 +79734,Doctor #2,773,131833,18 +79735,Miguel,30,20664,3 +79736,Army Nurse,8988,1742438,87 +79737,Himself,207021,6485,8 +79738,Sally,11643,70117,8 +79739,Borlec,51823,10361,10 +79740,Dean,174487,1284,4 +79741,Marthe,49559,223273,7 +79742,Ickarus,30508,88341,0 +79743,Jonathan Timpleman,2355,26715,6 +79744,Narrator,27245,78279,2 +79745,Policière anglaise,39358,72314,10 +79746,Command Hangar Marine,44943,1205870,32 +79747,Une jeune,98277,1849109,28 +79748,Pam,90590,2575,1 +79749,Katherine,40139,77081,1 +79750,Johnny Worthington (voice),62211,51797,12 +79751,,143068,560102,5 +79752,,403867,85676,2 +79753,Farmer,12483,19153,2 +79754,"Adam ""Bug"" Hellerman",43931,41883,0 +79755,Zé,390,5276,3 +79756,Carl,38162,56117,6 +79757,Morton,43875,88672,5 +79758,Larry,69165,192499,15 +79759,The Dress Saleswoman (uncredited),36612,2780,7 +79760,News Reporter,331161,205061,19 +79761,Rio Ozawa,43635,129700,0 +79762,Jovin Montanaro,68163,1202899,2 +79763,Keown,7548,25074,5 +79764,Shrek (voice),810,12073,0 +79765,Keith,11358,17837,13 +79766,Sepp Herberger,359483,1329070,3 +79767,Capt. Stuart,134201,1771027,6 +79768,Little Bewley Brother,365942,1794858,37 +79769,Kenneth Marquis,185934,14261,1 +79770,Peter Lake,137321,72466,0 +79771,,40130,1019913,9 +79772,Belle,70074,565501,17 +79773,President Habyarimana,30527,77681,8 +79774,,229353,1227918,3 +79775,Millie,19017,141396,6 +79776,Carla,445602,1583326,9 +79777,Hikaru Tezuka,363354,1149334,5 +79778,Matchmaker,255160,15264,5 +79779,Wonder Woman / Diana Prince,297762,90633,0 +79780,Veronica,285840,1083260,6 +79781,Fake Family Member,59962,221581,23 +79782,Serveuse,436340,1744824,11 +79783,Jim Thompson,242131,78902,4 +79784,Carmelina,81654,29544,1 +79785,Dave,403330,58371,3 +79786,Driver Bae,346646,112785,7 +79787,Beatrice,10075,30436,10 +79788,Mrs. Rizzo,84209,1079544,10 +79789,Stacey,308639,93538,18 +79790,Julian Davis,42298,10924,7 +79791,Dr. Selbourne,44000,14755,7 +79792,Richter # 1,2734,27664,42 +79793,Lola,10604,65894,7 +79794,Member Of The Press,108723,1446349,31 +79795,Stenftenagel,13836,1063263,23 +79796,Thai Waiter,24420,1393533,18 +79797,Juan,259997,665167,16 +79798,Himself,438137,116345,1 +79799,Luigi (voice),49013,4252,10 +79800,A Priest,206237,590615,3 +79801,The Prime Minister,508,3291,4 +79802,Sarah,209263,3051,3 +79803,Lykke,330947,964973,17 +79804,Building Super,62838,26485,30 +79805,Douglas Loring,26805,34625,7 +79806,Katharine Heilmann,59419,22820,5 +79807,Munnu,96147,81983,1 +79808,Femme de Ménage,12422,1048982,12 +79809,Cecil,181533,61303,5 +79810,Autograph Seeker at Party (uncredited),37581,20365,9 +79811,Welcome to the 60's Dancer,2976,1752793,136 +79812,Kong Ko,25655,78871,19 +79813,Captain Dan,17978,1107,16 +79814,John,417820,1702669,3 +79815,Peter,43912,6952,0 +79816,Deputy Mayor,3782,30772,10 +79817,Yella,3037,681,0 +79818,The Girl,252171,220573,0 +79819,Kirby,81475,1090413,6 +79820,Bailey (voice),127380,15232,7 +79821,Arnold,53172,82167,9 +79822,Father John,17483,81956,10 +79823,Allan Quatermain,43388,41235,0 +79824,Game Warden George Oakes,28775,101960,5 +79825,Jeannie,18446,18686,6 +79826,Jim Breck,74527,1750,7 +79827,Abilene Fight Spectator (uncredited),75315,136895,13 +79828,Miss Gaby,375794,224321,5 +79829,Claudine,329819,1482945,6 +79830,Marta,24657,1680267,6 +79831,"Virginia ""Pepper"" Potts",68721,12052,1 +79832,Sharpie Corrigan,96433,34497,6 +79833,,11328,1444505,53 +79834,Jacques de Montfaucon,3051,1481492,12 +79835,Hotfoot Harry,72096,26473,14 +79836,Frau Eschenlohr,42460,3005,3 +79837,Air Core,279096,1380101,15 +79838,Sophie,343140,38280,4 +79839,Тамара,335819,117153,4 +79840,,14284,106840,1 +79841,Brad Lynch,16876,33293,5 +79842,Driver Hong,376252,1169313,4 +79843,Texas Businessman,76101,59822,12 +79844,Williamson,42764,95457,6 +79845,,32234,27780,4 +79846,Mr. Gibbles (voice),12903,12900,5 +79847,Executivo 2,448763,1848665,32 +79848,Leche's ghrandmother,63066,1867440,7 +79849,Tatya Vinchu,304134,1526517,3 +79850,Hong,11636,140485,10 +79851,L'homme en cavale / Man on the Run,25500,128638,2 +79852,Mok Man-Yee,118381,72730,1 +79853,Master Sergeant Manedov,257534,1297700,9 +79854,Traci,58664,1254111,7 +79855,EJDER ABİ,295748,106787,3 +79856,Carol Pringle,96252,3635,2 +79857,Sheriff,39957,94854,6 +79858,,362154,1562568,12 +79859,Himself,320589,1357846,11 +79860,Police Chief,3146,229225,5 +79861,Butch - Demolition Squad Corporal (uncredited),15807,14454,19 +79862,Abuta,135652,33613,7 +79863,Michelle Robinson,310888,110742,1 +79864,Dalton,304372,98804,8 +79865,Dinner Guest,16151,79721,35 +79866,Man-gil,15067,1243892,16 +79867,Garage Victim,14096,1381692,5 +79868,Sewashi,265712,1246273,9 +79869,Lt. Robert Nunally,6145,21029,5 +79870,Kashi Reddy,34763,146937,8 +79871,"US Marine, Store Customer",108812,3442,12 +79872,Rudy,23515,1440860,9 +79873,Brunelle,85883,81467,6 +79874,Tasuku,79382,965506,4 +79875,Jake Rainwater,33541,34748,11 +79876,Vomiting Girl,13792,75543,7 +79877,Jim Farrell,167073,93210,1 +79878,Fijian Warrior Shaman,40458,145047,0 +79879,Juror,214756,1370953,48 +79880,Betty Bristol,54105,176583,2 +79881,Man at Club (uncredited),17136,1269188,18 +79882,Maggie,378018,1791802,8 +79883,Coronel,107073,1481499,10 +79884,Chow's grandmother,42120,1193723,8 +79885,Sarah,138544,1015732,2 +79886,Blade,8008,53579,8 +79887,Proprietor,204040,9091,15 +79888,Juanita Leonard,184341,59017,2 +79889,Annette Allenby,29368,14298,0 +79890,Mrs. Bristol,20644,34182,10 +79891,saymuth,259835,22477,2 +79892,Mr. Peters,183825,931793,51 +79893,AJ,344906,84897,8 +79894,Tiffany,142216,158711,20 +79895,Mary Beth Graber,45792,52869,5 +79896,Father,215743,64453,0 +79897,Von Straben,16444,119357,14 +79898,král Marek,160106,138852,3 +79899,Mrs. Crockett,36635,89732,9 +79900,Director Tadeusz Krzakoski,52920,32696,0 +79901,General Yin Sun,14449,109434,5 +79902,Oncology Nurse,73565,1244248,20 +79903,Zvi Zamir,82598,14371,3 +79904,Natalie,252028,82423,1 +79905,Traficante de droga (as Indio Gonzalez),299165,53953,20 +79906,Magda Janczyk,239103,1273918,1 +79907,Witch / Pedestrian (voice) (uncredited),10192,86655,32 +79908,Old Woman in Corridor,242224,1413779,29 +79909,Toby,105768,109577,0 +79910,Alfons Jørgensen,12076,49562,5 +79911,Doña Laureana Luna,359105,223852,14 +79912,Merdad,59935,230083,1 +79913,Albert,13338,89843,0 +79914,Journalist,47959,52978,27 +79915,Jeremy Davis,86709,327,2 +79916,Cynthia Foxhugh,18690,83433,1 +79917,Daniel Pontipee,16563,1229203,4 +79918,Nurse,29161,103061,8 +79919,Midwife,395982,70518,1 +79920,Mr Wilberforce,32932,112374,2 +79921,Warbeck Security,29542,111451,14 +79922,Himself (Brokedown Cadillac),13836,1673241,35 +79923,David's Mother,62213,211897,18 +79924,Remi,76198,37764,4 +79925,Claire Russell,158150,25414,2 +79926,Bob,288281,57829,1 +79927,Velma Dinkley,15601,88622,5 +79928,Claire,7942,199523,17 +79929,Detective Dapper,312174,1400597,10 +79930,Paul Sarnac,131781,29282,5 +79931,Scootaloo,201676,499175,12 +79932,Hindle,27085,198900,20 +79933,Adi Dassler,359483,44651,1 +79934,Dr. Frederick Van Helsing,31003,522,1 +79935,Jonathan W. Wilson,52270,29283,12 +79936,Renato Jacks,70666,1603421,2 +79937,Ben Lane,1673,4307,2 +79938,Steve,1833,148655,8 +79939,Simons Tante,53256,147640,16 +79940,Eric,127560,5472,1 +79941,Dennis Baru,329289,42820,6 +79942,Teacher,72875,106704,6 +79943,Aedan,47065,51965,1 +79944,Ted Caselle,19661,6837,2 +79945,Julie,23628,90405,12 +79946,Backstage Fan,229297,1416230,15 +79947,Harvey,40466,1571745,9 +79948,Number One,92496,140898,33 +79949,Joe Buka,51209,56448,24 +79950,Suzy Corridor,292387,40939,7 +79951,Edgar Derby,24559,35370,2 +79952,Fielding Barnes,13173,21399,6 +79953,The Doctor,282963,20049,1 +79954,Additional Voices (voice),328111,8063,26 +79955,Captain James Conrad,293167,91606,0 +79956,Alex,38448,2220,5 +79957,George Korov,267793,41742,9 +79958,Vivian,53048,21104,2 +79959,DS Allan,337339,117437,17 +79960,Van Student / Xavier / Principal Pynchley / Nanny Dwarf / Evil Knight / Singing Villain (voice),810,118489,31 +79961,Leung Wai Yip,69619,72732,4 +79962,Whitey,126550,106448,10 +79963,David,14642,67656,2 +79964,TV Voice (voice),1481,1844350,44 +79965,Rivke,362463,1305303,3 +79966,Edwin Pollard,145135,18999,3 +79967,Livia,66700,545232,4 +79968,"Rae, Girl with Dog",17258,27011,5 +79969,La jeune femme à la robe frangée,1421,1723429,14 +79970,Female Agent,10204,21045,14 +79971,Head of Nation,206647,74415,43 +79972,CIA Interviewer,385372,61852,6 +79973,direttore dell'ospedale,125623,1878924,11 +79974,Insp. Willoughby,6976,30706,5 +79975,Jack McCain,18638,349,1 +79976,Reporter (uncredited),14615,1186118,83 +79977,Nicolas Philibert,4279,3829,0 +79978,Concert attendee (uncredited),246127,1508659,18 +79979,Giraud's Cousin Sybil,61109,3346,16 +79980,Síndico do prédio,227932,1748847,9 +79981,Asst. Dist. Atty. Andy Tucker,30034,15992,9 +79982,George - Eadie's Stepfather (uncredited),121003,104017,10 +79983,Man #1,27739,98877,9 +79984,TV Anchor,329865,1756358,52 +79985,Melanie,24020,82653,3 +79986,"Uchida, gangster",43113,127834,3 +79987,Child in the Park (uncredited),76203,1438290,65 +79988,Hilda Gregory,87894,97993,6 +79989,Hobo Joe,145220,58225,23 +79990,Lucille Jefferson,52991,47439,0 +79991,Principal Meyer,16876,56522,7 +79992,Joey's Family Member,356752,1841505,26 +79993,Jean Gueco,98203,1355389,15 +79994,Cindy (as Victoria Jill),28155,102648,8 +79995,James,103731,71889,11 +79996,Matt Franklin,50725,17052,0 +79997,Charles Lemonnier,44155,35210,2 +79998,Tiburón,14430,7376,18 +79999,Soup kitchen - patron 1 (uncredited),369524,1116907,39 +80000,"Denver, Bruhn's Gang",37481,50574,8 +80001,August Reynard,423988,87915,3 +80002,Volker (gardener),44502,1321352,8 +80003,Mario,298722,225299,8 +80004,Osman,81549,592097,7 +80005,Oil Wrestler,71120,1286729,10 +80006,Carl Fredricksen (voice) (uncredited),24589,68812,3 +80007,,11196,1444549,34 +80008,Tweelingzus,74661,572289,10 +80009,Kosaras fiú,327909,1433828,2 +80010,Greenstreet,328429,1861362,6 +80011,Girl on Rum Boat (uncredited),39048,14027,12 +80012,Reporter,347031,1561284,6 +80013,Dave,29611,104353,7 +80014,Yutaka,48341,13250,0 +80015,Prince (uncredited),144475,1311107,18 +80016,Rodzher Chembers,106546,13919,0 +80017,Doctor,43812,20368,6 +80018,Kirk,86703,933548,8 +80019,Janet,252102,1287563,3 +80020,Angela Payton,323675,110742,3 +80021,Smalltown Resident,64328,1002483,42 +80022,Futa Ozaki,315846,586791,11 +80023,Bilal,15712,109890,1 +80024,,328692,222922,4 +80025,Joanna,151431,12725,0 +80026,Brynn,101325,55958,10 +80027,Detective Hodge,6973,15011,13 +80028,Poker Player,2080,1239053,40 +80029,Chet Antieau,339419,19208,16 +80030,Reporter #3 (voice),40662,128267,21 +80031,Bar Owner (uncredited),39979,98774,26 +80032,Lois Lane,106358,243805,2 +80033,Louise Stubbs,121154,32990,5 +80034,Farley,42499,25816,5 +80035,Priest,87827,40541,13 +80036,Benita,80125,25401,13 +80037,Cecelia Schweisser,42537,34746,7 +80038,Patrão,70666,584337,23 +80039,Booth,11358,79072,11 +80040,Jaywalker,268920,1288832,58 +80041,Ace,16231,80127,3 +80042,Roger Davis,186759,17419,2 +80043,Alex Cox,301325,2838,3 +80044,Milo,18392,551515,15 +80045,Gefängniswächter,104172,1384106,12 +80046,Joseph Goebbels,111744,20021,8 +80047,Wanda,72710,70456,9 +80048,Thomas (gardener),44502,71389,9 +80049,Nikki's Mother,37517,88362,6 +80050,Mac,332488,1243491,2 +80051,Farmer's Wife (voice),30060,8228,11 +80052,Bigardo,131907,1603,3 +80053,Rosie Brennan,76494,84223,3 +80054,Audrey Carlton,105548,1275688,12 +80055,Klass Poole,98536,8729,6 +80056,Gil Parker,79521,7169,9 +80057,Mr Ku's son,25074,1624189,8 +80058,Orderly (uncredited),284052,1743575,33 +80059,Lotus Land Waitress,32657,27775,30 +80060,Greer,376660,87934,9 +80061,Inspecteur Decharme,44256,36916,9 +80062,,48959,7321,5 +80063,Ira,109886,30156,4 +80064,Stefan Tremmel,332759,8801,2 +80065,The Bad Man,51364,8635,0 +80066,Wilbur,13957,76101,2 +80067,Judith Haney,70046,91997,9 +80068,Tiziana,81787,4554,6 +80069,Caroline,54156,150029,0 +80070,Christiane Nouveau,74779,142798,0 +80071,Sylvie,49559,19161,0 +80072,Lisa Lang,386100,1418497,9 +80073,,10753,940339,16 +80074,Leticia,233490,1828987,10 +80075,Donald,24273,15033,0 +80076,Mrs. Thomas - Housekeeper,74314,34331,11 +80077,Man in Hotel Lobby,127812,1329667,25 +80078,Dr. Milletson,45431,1539,16 +80079,Ivon Haake,40985,10921,2 +80080,Friend,48717,1184304,2 +80081,Alice,17725,39187,6 +80082,Petterson,377290,1643040,23 +80083,Ira Sims,27414,97717,4 +80084,Professeur internat,1986,1390993,19 +80085,I.Q. (voice),13956,64066,4 +80086,Daphne,195022,1180703,11 +80087,,19552,1275921,12 +80088,Himself,282268,39657,8 +80089,Chris,209263,1388471,20 +80090,Charlie,345918,54834,5 +80091,Marty,54525,1218234,4 +80092,Eddie,71125,9880,1 +80093,,398452,1013905,1 +80094,Johnny,26805,96301,3 +80095,Bakker,14979,163910,9 +80096,George Kaplan,9292,5563,3 +80097,Attorney Giovanni Giuni,39979,50747,6 +80098,Sands,1428,85,2 +80099,Nurse F. Simard,246127,1272477,13 +80100,Himself,14923,58768,65 +80101,Hakan,264729,110126,9 +80102,Count Adriano Silveri,329868,32377,2 +80103,Uncle,141145,1114246,4 +80104,Mrs. Taylor,16373,39802,8 +80105,Hilde,141241,1114512,0 +80106,Father,54491,1206,0 +80107,Wenge,99229,33938,5 +80108,Giselle,340027,1475081,7 +80109,Himself,70027,1490041,15 +80110,,289232,311811,5 +80111,Lawnmower,26518,1111813,4 +80112,Desk Sergeant,24094,97459,21 +80113,Li Shi Min,10275,1342849,10 +80114,Lawrence 'Larry' Blake,95874,19550,1 +80115,Ralston,42852,47662,15 +80116,Tarzan,225503,580811,0 +80117,Child Wedding Dancer,271677,1860979,10 +80118,Derek Weaver,261037,1170659,6 +80119,Ross J. Carmady,88375,161704,2 +80120,Big Guy,114377,1058612,1 +80121,,40146,1055174,9 +80122,Grace Flanders,27999,1215922,6 +80123,Buddy (voice),328111,500427,8 +80124,,344560,3064,3 +80125,Tommy the Bartender,10433,24435,10 +80126,Mrs. Milland,146233,427,12 +80127,,295058,1312500,1 +80128,Paula Crowe,12912,49001,3 +80129,Actor,43821,34610,22 +80130,Gringo,123103,16847,0 +80131,Bill Hawthorne,28290,30234,7 +80132,Carmelinda,159474,25785,4 +80133,Blonde Party Guest with Bess,229221,140875,15 +80134,Constable Gracey,425774,1707950,58 +80135,Ep Clark,176670,82860,1 +80136,Punchy the clown,61716,104473,2 +80137,Sophie Fisher,11172,69597,0 +80138,Deafmute Chick No 2,46930,137822,10 +80139,Ambassador Wikked,47508,14289,11 +80140,Juanita,80592,133571,7 +80141,Barbie / Odette,15016,74358,0 +80142,Priest,81522,5688,3 +80143,,278316,1224596,2 +80144,Reginald 'Skull' Skulinski (voice),9297,53926,13 +80145,Agente Ferina,439998,1420171,4 +80146,Maryanne,27480,94871,2 +80147,Julie Cosgrove,124581,74375,0 +80148,US Ambassador,11248,1184168,17 +80149,Bandya,284729,1807839,2 +80150,Himself,19610,84920,9 +80151,Huey Einburg,125510,84508,4 +80152,Capt. Dante V. Morel,37468,117740,5 +80153,'Pa' Cassidy,33025,80569,5 +80154,Christoph,7210,1133520,12 +80155,Police Officer,245706,92276,29 +80156,Anita,21135,91543,4 +80157,Trevor,16412,566944,5 +80158,Lucy Hawking (Age 14),266856,1387383,9 +80159,Mette,5206,6124,7 +80160,,185354,1148,2 +80161,Yen,163,1900,7 +80162,Adrian,50318,1248850,10 +80163,Singer at the Party,111470,1811853,43 +80164,Marco,198277,60635,15 +80165,Executioner,23750,79856,17 +80166,Kanna,79382,1062343,7 +80167,Giselle James,120478,1072872,4 +80168,Mac,94811,101881,4 +80169,French Waiter (uncredited),28571,1673515,16 +80170,,118257,2303,15 +80171,Boy from Bride's Side 2,209410,1295877,6 +80172,Arnold,64972,1100,14 +80173,Phillips,333484,76021,31 +80174,Commander Vail,52454,1235973,32 +80175,General Underwood,230179,15854,2 +80176,Victoria Scott,247691,106551,14 +80177,Juggling Boy,14123,1065264,27 +80178,Isabel,74718,572355,4 +80179,Nina,9943,36745,6 +80180,Lift Operator,85442,159250,25 +80181,Axxon Security,38987,190060,11 +80182,Holly,10041,62356,2 +80183,Nurdan,81708,1033078,4 +80184,Mrs. Farraday,171308,82495,2 +80185,Spiller (voice),51739,31078,3 +80186,Kev,27480,1331,0 +80187,Charlie,14615,78902,6 +80188,Bandit,215379,1385276,11 +80189,Messenger Boy (uncredited),52440,1472510,54 +80190,Ambro Scientist,301228,205258,9 +80191,Girl in Park,41599,106631,7 +80192,Elation,384021,130863,6 +80193,"Michaelson, Reiko (voice)",80089,90133,2 +80194,Bailey Smith,13972,4,9 +80195,Ortiz,325173,1900169,19 +80196,Himself,142966,65923,1 +80197,Jens,14804,1901799,20 +80198,Warren Littlefield,30330,12438,3 +80199,Military Soldier,205891,76544,4 +80200,Newspaper Reporter,43113,552181,79 +80201,Rodeo Performer,134238,956381,53 +80202,Aleksey's Grandma,307649,99289,7 +80203,Barmaid,38433,120441,9 +80204,Helga Ferlach,268212,33720,2 +80205,Vince,369406,1539091,21 +80206,,402612,1095464,15 +80207,Tammy,110588,1050032,9 +80208,Macy's Greeter,245906,1603909,25 +80209,John,301334,19047,9 +80210,Tiggs,376579,157818,1 +80211,Capt. Richard Bates,108812,15978,5 +80212,Annie,47647,1371594,14 +80213,General,11373,15254,9 +80214,William,344039,132712,5 +80215,Judah Best,68752,116579,6 +80216,,340961,21606,1 +80217,Yakuza,3782,108026,38 +80218,Statum,31127,1048963,12 +80219,Geoffrey Mallard,355008,7166,8 +80220,,398452,1322191,6 +80221,Won-hoon,37502,1299249,7 +80222,Senator Conrad,37238,6462,7 +80223,Inn Keeper,335778,1451816,23 +80224,Colin Mandel,30155,85954,3 +80225,Charles,52868,1218533,8 +80226,Raju's Mother,118809,110724,6 +80227,"Sancho, King of Navarre",58905,30276,8 +80228,Lars,9084,57320,0 +80229,Tiffany (uncredited),10096,21318,47 +80230,Lizzie,25241,1765265,10 +80231,Dallas,77930,10297,1 +80232,Jürgen's Wife,9483,57656,3 +80233,Lolet,46773,1523006,16 +80234,English Boxer,7549,52904,8 +80235,Cora (as Rene Ray),49334,95612,3 +80236,Françoise de P.,63224,584302,8 +80237,Himself,15258,545849,46 +80238,'Marc' Issak,35907,85730,2 +80239,Charlie Chan,413669,13342,1 +80240,Barber,43759,46612,9 +80241,Laura Cooper,128169,1053614,4 +80242,Joe Morgan,109258,3342,3 +80243,Kareem,31216,1184849,10 +80244,Dirk McClusky,87293,175183,10 +80245,Slepec,84030,137077,13 +80246,Young Harry,9987,78140,22 +80247,Saddam Hussein,28730,1000228,22 +80248,Joaquin,153781,6523,6 +80249,Travis,275696,8210,2 +80250,Dr. Sondervan,369894,166204,11 +80251,Randall (uncredited),31411,122984,10 +80252,Julie Harrison / Mary Harrison,94744,14701,0 +80253,Sullivan,102629,105688,7 +80254,,84420,1039420,5 +80255,,155325,1138498,25 +80256,Hal Jessup (as Palmer Lee),77645,16071,5 +80257,Bone,8270,54195,11 +80258,Mr. Lutz,34766,112959,5 +80259,Thunder's men,64316,147030,12 +80260,Funeral Director,430826,1891563,66 +80261,Bagerens kone,21282,1045282,13 +80262,Ritz Bartender,258480,1545508,23 +80263,Yussef,17495,93259,0 +80264,Hotel Employee,163,1328364,24 +80265,Dog Owner,424488,1280398,50 +80266,Diane,345925,58356,2 +80267,Prince Danilo Petrovich,53230,98045,2 +80268,J.C. Caroline,18047,10939,3 +80269,Asa Whorten,91419,31260,9 +80270,,122435,1360399,8 +80271,Vera Kolar,259728,1301970,3 +80272,Geologist (uncredited),19995,1207292,80 +80273,Peggy North,166621,34244,6 +80274,Dunkel,52360,1464749,36 +80275,FEMA Radioman,20674,119882,15 +80276,Andy Heaney,157343,34759,22 +80277,Ruby Kaur,14076,81346,6 +80278,Maid,18405,1787843,10 +80279,Peter,18843,58374,13 +80280,Clara,27740,41255,8 +80281,Anders,56937,225810,1 +80282,Annie,55681,997483,12 +80283,Cab Driver,127493,6164,2 +80284,Alexa Meyer,57190,77462,3 +80285,Ellen Fielding,28063,99528,1 +80421,Lisa Macdougall,19676,85075,3 +80286,High School Girl #1 (uncredited),206197,1506494,35 +80287,1935 Fan,921,1327918,36 +80288,Franck,79343,9005,1 +80289,Hildur,206390,668060,8 +80290,Jack Bolton,13649,94146,7 +80291,Tian Han,25626,1341,3 +80292,"Franz Joseph, Kaiser von Österreich",459,6251,1 +80293,Model Citizen / Black Canary (voice),30061,56152,15 +80294,Diana,13079,139,0 +80295,Vanilla,35826,76465,12 +80296,Catherine Elizabeth Allen,40719,10022,1 +80297,Keiji (as Tokkan-Kozou),28268,142474,0 +80298,Colonel Schloss,154972,1280677,12 +80299,Scientist,28340,1795341,22 +80300,Capt. Grey Travis,4820,4353,2 +80301,Advocate Payal,117099,55063,1 +80302,H. Culverton 'Smitty' Smith,14589,149107,14 +80303,Dr. Wilson,47057,15415,9 +80304,Greg,20210,58000,11 +80305,Caddie,177902,1263061,9 +80306,Paul,9943,1863,11 +80307,Girlfriend (uncredited),31277,1224426,19 +80308,Sonia Saxena,16987,76450,1 +80309,Simmons,80264,589090,3 +80310,Susan Kellum,24331,563095,8 +80311,Eliot Hendricks,17745,1065,6 +80312,,96106,1281108,24 +80313,Sebastiaan,62297,45754,1 +80314,Penny,403330,10399,10 +80315,Sasha,2566,26102,5 +80316,Irwin Goodman,32099,89502,0 +80317,Black Ninja (uncredited),92496,18702,13 +80318,Tony 'Little Duke' Burton,312221,65829,11 +80319,Grace's Little Brother,128270,1440574,46 +80320,Viscount Yarrell,73873,1244,6 +80321,Samuel 'Sam' Ipswich,223497,10610,5 +80322,Stan Grossman,773,17419,6 +80323,Cousine von Simon,53256,147643,21 +80324,Ellie Chapman,27414,97720,12 +80325,Varpun isä,408203,1132166,3 +80326,Ozgür,28417,24040,9 +80327,Erik,52251,28603,4 +80328,un avocat ('Le divorce'),98302,12270,14 +80329,Hog Woman,298584,163002,11 +80330,Jason,120854,1072792,0 +80331,Carmen,131932,1093951,1 +80332,W.V.A. Leader,198652,1179384,9 +80333,Marshall Lovett,308032,148096,24 +80334,Lt. Red,127372,990514,11 +80335,Sgt. Mosgrove (uncredited),123961,96308,16 +80336,Village youth,125264,80717,10 +80337,Fu Qingzhu,10703,26775,3 +80338,Police Detective (uncredited),36373,170275,20 +80339,Lady Critics,245700,192838,62 +80340,Marion Hamilton,29424,1206163,17 +80341,Bully at the Bus Stop,23367,95387,32 +80342,Kapetan Kosmas,198890,1123686,7 +80343,Sido,24424,132108,4 +80344,Drag Fan,1481,1844347,41 +80345,Uncle Mbaezi,209401,1835583,18 +80346,Gen. Nelson,38269,163411,16 +80347,CIA Agent,177677,1562099,51 +80348,Captain William Richardson,239845,58783,5 +80349,Chet Clarkson,138977,20960,3 +80350,Liz Adams,28131,21240,4 +80351,Himself,414749,59077,3 +80352,Sister Superior,11131,67026,3 +80353,Vladd,243683,1341648,7 +80354,Technician,2503,1280230,18 +80355,Luke Burn,58547,15033,4 +80356,Bunny Cupid,397837,1818584,19 +80357,Gefangenenwärter,52475,16784,34 +80358,Recruit Poster Peddler in Montage,108222,2936,27 +80359,Louie,54491,23680,7 +80360,Larry,19017,8949,0 +80361,Mike,139998,967044,6 +80362,Johnson,29212,47569,10 +80363,Vladimir Kamenski,321303,1418972,7 +80364,Chris Myers,354859,3894,2 +80365,Jimmy 'Sparks' Clary,98289,30579,8 +80366,Hansel (voice),57089,19278,1 +80367,Victor Garcia,325173,1900161,8 +80368,Sangram,304274,1222865,2 +80369,Uncle Pete,200511,155649,4 +80370,Fifi,58414,227808,14 +80371,Lutie McVey,25473,120106,12 +80372,Franklin,19017,83810,16 +80373,Vastaanottovirkailija,293271,1364787,13 +80374,Sultan Julnar,422906,24554,7 +80375,Klošar,33611,111055,9 +80376,Jacques Bonnard,178587,29519,0 +80377,himself,6575,46590,11 +80378,Jill,228496,1009257,0 +80379,Oscar Jaffe,31835,29578,0 +80380,Man-Servant,81522,543681,7 +80381,,86985,1523034,10 +80382,,37437,1232929,2 +80383,(uncredited),41298,1106563,22 +80384,Stan,27432,16506,0 +80385,,14804,1901812,30 +80386,Policeman,9252,558739,23 +80387,Duby,369697,563338,7 +80388,Marta González,120303,177785,1 +80389,Alexander Wenninger,11204,27419,2 +80390,Lopez,91548,105089,11 +80391,Paul Ferguson,70247,35350,1 +80392,Nikos,73562,910944,7 +80393,Teenage Boy on Street (uncredited),11206,1217505,9 +80394,Thomas,80125,25691,5 +80395,Amalia,26891,6271,7 +80396,Cecilia Talbot,100528,20369,6 +80397,J.T. Baker,2047,5576,1 +80398,Woman at Party (uncredited),22744,34437,14 +80399,,64328,2395,43 +80400,Julius,214129,1244235,10 +80401,Stéphanie,361571,1664576,12 +80402,John Wyatt as a Child,61985,121099,4 +80403,Larry Parker,72251,37089,4 +80404,Wallace,43913,480,4 +80405,Poppy,301334,1383392,6 +80406,Sea Captain's Wife (voice),16440,1504905,5 +80407,Besserwisser,1659,1088,12 +80408,Jake Ferris,16551,67274,1 +80409,Fred Maddux,125990,4139,1 +80410,Hannah,38274,46423,3 +80411,Ernie Mott,52362,2638,0 +80412,Fernando Olmos Sánchez,401895,42014,1 +80413,Officer Gault,288710,74133,7 +80414,Sunflower (voice),44283,123037,8 +80415,Isaiah,339408,40377,10 +80416,John Jaegerman,18586,83271,2 +80417,Hackett,15810,1004719,13 +80418,William Harrington,75626,88716,4 +80419,Da Lisi Guard,217923,1436278,37 +80420,,53693,209386,11 +80422,Taro,13391,90134,17 +80423,,376391,7624,9 +80424,Alfred Desmereau,120497,145987,3 +80425,Zio Renato,59040,543558,5 +80426,Cutest Little Girl Ever,156597,1427475,21 +80427,Gabriel Nunez,172520,1155122,2 +80428,Jim Burns,1550,17485,3 +80429,Emanuelle,28325,41127,0 +80430,Lilac Mom,16320,80441,31 +80431,Dispatcher,290825,7624,16 +80432,Jerry Trellis,14923,981033,13 +80433,Dorothy Lamour,139718,83400,8 +80434,Cash,13652,56024,0 +80435,,404567,1371569,6 +80436,Smoking poker player,41608,72888,5 +80437,Brad,91548,189162,3 +80438,A. Le Marchand - Detective (as Ien Wulf),127812,2782,10 +80439,"Porucznik Izabela Zych ""Somalia""",425961,591258,6 +80440,il giovane sacerdote,121516,1859978,12 +80441,Ken Rothenberg,42231,1213742,12 +80442,General E. Albert,13836,1673228,26 +80443,Kathy,340103,35028,0 +80444,,37959,1200205,21 +80445,Gretchen Reigert,13173,10696,11 +80446,First Thief,30982,29274,5 +80447,Buun Som,172259,10134,2 +80448,Therapeutin,12575,39303,7 +80449,Welfare Officer,13777,75266,19 +80450,,307696,1428799,1 +80451,Flight Lt. Sterling Richardson,49609,82384,8 +80452,Laura Berke,29313,100816,0 +80453,Mr. Pinky's Customer,2976,1752074,104 +80454,,63260,230674,10 +80455,Wally Denny (as Suni Warcloud),60853,1419568,6 +80456,Himself,374460,3291,4 +80457,Woman Sitting with Nick in Cafe,14589,1172830,62 +80458,Gabriella,15043,61904,2 +80459,Julie Marsden,1976,3380,0 +80460,"M. Albert, le passeur",56589,24540,6 +80461,Tom Cassidy (as Eddy C. Waller),43319,116494,8 +80462,Dylan Thomas,277847,206161,2 +80463,Chief Inspector Hui,18747,65986,10 +80464,Father William,78522,1590856,14 +80465,Ralph Follet,122698,3798,2 +80466,Julian,310593,6640,13 +80467,Leposava,148034,1047173,10 +80468,The Stranger,84228,51965,1 +80469,Marie,414977,1676774,17 +80470,Stefan,54893,138261,2 +80471,Heavy,149793,153638,21 +80472,Jean-Loup,60824,24562,10 +80473,Joy,19398,1469193,23 +80474,Boy with Morty's Cap,53949,16764,21 +80475,Max,270650,119713,6 +80476,Psycho Sam,371645,82666,4 +80477,Carla / Bartender,77930,1784644,46 +80478,Ole Bramserud,24647,79057,1 +80479,Mr. Bishop,83666,1532,4 +80480,Andrew,9655,58372,12 +80481,Huret,50181,97251,4 +80482,Carol,97936,16047,5 +80483,Chorégraphe #1,352025,1784155,22 +80484,La morte mystérieuse,12249,71940,11 +80485,Benjamin's Daughter,74549,1570966,13 +80486,Petra Anderson,288281,210824,4 +80487,Henry Cooper,24927,9312,3 +80488,Vicar's maid,48145,6659,15 +80489,Empress Carlotta von Hapsburg,78318,3380,1 +80490,Dr. Matthews,86920,127195,6 +80491,lady Purchaser of Cake,21451,148565,16 +80492,Movie Operator (uncredited),10178,195505,38 +80493,Ricardo,30174,105798,0 +80494,Avv. Memeo,262786,1198213,5 +80495,Cadáver,14430,1521655,21 +80496,Marcelo,167707,1199585,4 +80497,Wilkins - Hotel Clerk (uncredited),73430,2502,15 +80498,Puchi,15934,16866,1 +80499,Lt. Anderson,28170,1210463,4 +80500,,167021,1031166,0 +80501,Teacher (uncredited),51144,1268898,12 +80502,Benedetta,42679,70234,2 +80503,Boy's Father,97794,33642,4 +80504,Vlad (voice),159824,14639,14 +80505,Blueprint Dancer,243683,1398172,75 +80506,Lola,50073,589672,6 +80507,Dolly,52661,1221520,4 +80508,François,4516,6012,0 +80509,Captain Hart,18638,1037912,10 +80510,Plainclothes Detective,127812,99378,31 +80511,,209251,1209368,4 +80512,Sharonda,279692,63046,7 +80513,Campizi,4982,18472,24 +80514,Mujer rubia en fiesta,45191,1094098,6 +80515,Ryan,10330,19728,2 +80516,Girl in Panama,110887,96054,11 +80517,Morrie Bronson,84496,16028,4 +80518,Chas Hunter,417936,1211093,1 +80519,Dancer in Opera (uncredited),28044,89746,15 +80520,Steven Verdel,38157,83456,0 +80521,Chef,34672,64680,8 +80522,herself,190940,77234,16 +80523,Nancy Newsome,264644,11148,2 +80524,Vasilis Tsitsanis,371818,1277475,1 +80525,Hockey Player,72545,1424580,9 +80526,Officer Wedge,146233,1088938,16 +80527,Seis,300601,1154732,14 +80528,Rajkumar Sujamal,14073,95750,2 +80529,himself,395479,1784930,2 +80530,Mina Parker,128169,18054,2 +80531,Florika,6417,49677,7 +80532,Mann auf der Brücke,114790,37912,6 +80533,Fay Winters,40799,29271,1 +80534,Mrs. Poole,120259,2780,16 +80535,Don Ross,65787,14831,2 +80536,Gehrmann,85483,9596,3 +80537,Steffi,161243,28585,3 +80538,Brian Anderson,63988,137391,5 +80539,Nurse,146233,1078610,33 +80540,Welcome to the 60's Dancer,2976,1408344,148 +80541,Lakella,27270,998541,4 +80542,Mr. McCauley,209271,1733,4 +80543,Barton,31899,30216,12 +80544,Billy,98250,191135,14 +80545,Meg Craverston,331313,207250,6 +80546,,60316,551677,3 +80547,Bella,285840,1121937,1 +80548,MacFay's Chauffeur,14589,78773,60 +80549,Betty Grable,106821,64838,8 +80550,Truckdriver,345489,28392,7 +80551,Olivier,171213,1153638,10 +80552,Josh Parker,384682,23532,0 +80553,Christiane Weissmuller,21435,1972,6 +80554,Miss Roberts,45627,115367,6 +80555,Shosha,44552,933705,3 +80556,Emily,63877,94516,6 +80557,Mary Rose Clayborne / Victoria Elliot at 17,86543,9278,0 +80558,,102858,1384027,5 +80559,Suttler (uncredited),109491,1205902,35 +80560,Gavin,229594,63941,4 +80561,Nicola Tesla,218425,1312172,9 +80562,Delgado (voice),105965,15860,6 +80563,Reform School Boy Making Knife,99909,1193377,24 +80564,Caro,332759,1446305,9 +80565,Marky,25941,85065,9 +80566,Dresser,81522,39500,6 +80567,Emma,285245,1042839,3 +80568,J. Bender,109716,995920,53 +80569,The Vicar,22387,132536,19 +80570,Tava,75244,1085555,5 +80571,Mabel,53387,89563,1 +80572,Mr. Domingues (as Jason Robards),25407,100078,6 +80573,Arnold Cleever,268853,1648878,1 +80574,Stranger Lady,14882,32,13 +80575,Onkel Herb,203539,1149879,2 +80576,Scooby-Doo (voice),302960,15831,1 +80577,Flash,126083,4969,3 +80578,Murtogg,285,1713,22 +80579,Captain Harry Dodds,30644,44728,13 +80580,Samantha,16358,21104,3 +80581,Stephanie,38743,55422,12 +80582,Gram Walsh,76468,10022,2 +80583,Danny,296626,1371784,8 +80584,Lars (voice),13654,519,2 +80585,Vincent Lento,128270,166857,17 +80586,Seppo,151911,178757,12 +80587,Fisherman,246127,7006,11 +80588,,172386,92171,3 +80589,Jody Varner,40085,106179,8 +80590,The Policeman (voice),309809,41878,19 +80591,Bazo,337758,1038495,5 +80592,,19082,1490,2 +80593,Emma,283445,1485775,9 +80594,Hispanic Driver,1640,1331792,39 +80595,Waiter (uncredited),53209,1176510,6 +80596,Michael,111605,12260,1 +80597,Small Boy 1,370755,1650112,15 +80598,Marine Sergeant,174645,1157599,16 +80599,Casey,109213,1079461,9 +80600,,27053,1460962,23 +80601,Jane,355890,131871,0 +80602,Poliziotto,43544,129577,16 +80603,,65713,47430,2 +80604,,172705,88785,9 +80605,Alain,63681,24385,2 +80606,Uschi,8366,53109,3 +80607,Yara,270303,1210610,4 +80608,Customer #1 (uncredited),354979,1636785,70 +80609,,32237,1136854,5 +80610,Chen Lin-Hu,76544,579330,1 +80611,Frost,128081,576097,5 +80612,Dottor Gargiulo,139563,69068,4 +80613,Kid Randy,17303,995178,7 +80614,Themselves,42634,1185357,12 +80615,Artur,26891,18490,2 +80616,Ralph,15934,1983,4 +80617,Willie,13802,39659,28 +80618,Bar Patron (uncredited),32526,1176957,21 +80619,Landlord,99567,552408,8 +80620,Raymond Plazzy,50838,1015896,4 +80621,Ice Cream Man,125063,10984,9 +80622,Young Technician,10077,62933,9 +80623,Dandy Forsdyke,171075,10655,0 +80624,Soren,834,12366,9 +80625,Jackson's Henchman,263115,1471922,84 +80626,Burke,81937,45232,2 +80627,Boston Neighbor,214756,1360002,42 +80628,Leah,336011,109868,0 +80629,Yaqui Joe Herrera,37308,16475,2 +80630,Ephialtes,1271,17290,7 +80631,,83459,586222,5 +80632,Sgt. Heydrich,7454,8399,2 +80633,Peewee,29168,1585170,6 +80634,Guard,27259,47532,21 +80635,Zeus (voice),15359,24813,11 +80636,Numero 8,356296,1395660,2 +80637,Nicky,13056,96591,9 +80638,Mary,40029,1072138,8 +80639,Jackie,54804,223458,4 +80640,Himself,133704,81200,4 +80641,Linda Kenney Baden,173153,15735,0 +80642,2nd Dwarf,26643,97985,23 +80643,Roza,38875,107516,8 +80644,Passenger,377170,88780,35 +80645,Batman / Bruce Wayne,123025,27811,0 +80646,Bürgermeister Braun,295782,25005,5 +80647,Tina,286709,1408146,6 +80648,Traffic Officer,28090,1167,16 +80649,Red Taylor,2830,28637,2 +80650,Conrad (Baby),217412,1543460,18 +80651,Nero,16356,72858,4 +80652,Nello,46128,27392,8 +80653,Cliente Morena,70666,1863911,56 +80654,Park Do-sup,2015,1617533,3 +80655,Caterina,23619,1365383,14 +80656,Jonathan Pangborn,284052,4589,7 +80657,Karina,162382,1413677,3 +80658,Sam's Grandmother,508,79931,32 +80659,Jail Guard,209112,1695987,84 +80660,Bar Patron,360592,1512197,23 +80661,Viviane,43462,1019948,5 +80662,Raymond Pringle,185934,537962,6 +80663,Fan,98369,108635,9 +80664,Vavinet,7229,53201,7 +80665,'Honest Pete' Hartman Sheriff of Clark County,987,14830,3 +80666,Issa,82598,22383,2 +80667,Troy,429838,1734252,8 +80668,Glen Woodburn,209112,91403,23 +80669,Police Station Guard,14923,1361367,23 +80670,,12453,72296,6 +80671,signora Donadoni,82080,78540,21 +80672,Moto Moto (voice),10527,82092,10 +80673,Marie,223946,1332697,0 +80674,Mikal,21786,87881,4 +80675,Choi Soo-young,257296,552071,6 +80676,Cathy,209263,106934,15 +80677,Amiga de Katrina 1,448763,1848656,20 +80678,Murphy,56491,186466,4 +80679,Fur,15003,1044540,10 +80680,"Blindie / ""Chicken Feathers""",10109,63584,4 +80681,Un coinvolto nella rissa,43231,24708,8 +80682,Petkó Szautner András,86732,125198,0 +80683,,231009,130613,5 +80684,Cameriere,41610,120027,13 +80685,Mr. Bruner,376660,57755,3 +80686,Amy,48836,1533640,8 +80687,Luigi Largo,14353,27737,5 +80688,Francis Månro,267852,1388524,3 +80689,Guard,52661,1240920,10 +80690,Airport Passenger (uncredited),336890,1656701,36 +80691,,412202,84645,8 +80692,Grandmother,84233,90851,7 +80693,Cafe Owner,23397,152670,10 +80694,"Bauer, Bäckermeister",296225,46558,7 +80695,Herself - literary historian,135313,1102130,3 +80696,Katie,226672,82807,5 +80697,,361380,1240646,13 +80698,Han Ji-Hyeok,155941,123766,1 +80699,Khan,31273,1409,16 +80700,Dheena's Friend,69401,229982,4 +80701,Mary Margaret,77583,1228652,3 +80702,Dan O'Mara,20301,13578,1 +80703,Cooper,70133,30325,7 +80704,Ken,149926,185943,13 +80705,James Johnston,10008,17353,3 +80706,Gigi,197335,120108,1 +80707,Miss Dunbar,95874,325881,6 +80708,Sister John,33923,111585,18 +80709,Pikku-Mikko,366249,79760,6 +80710,Laura 7 ans,283726,1690063,13 +80711,Alvaro,77673,35919,4 +80712,Dentist,1164,18059,49 +80713,Officer Frank,407448,172096,18 +80714,Antonis,47792,932888,2 +80715,Sita Avery,317720,1140663,3 +80716,Justin Epstein,70006,935294,8 +80717,Stacey,359471,1509225,11 +80718,Kip Barrett,13437,58655,4 +80719,Mike E.,24978,4688,7 +80720,Davis,109170,63860,7 +80721,,208309,209781,2 +80722,Pedro Robles,32546,109360,3 +80723,Big Nosed Woman #2 (uncredited),213681,1654872,77 +80724,Señorita Nellie,26502,34560,12 +80725,Akane Yashiro,12636,46004,0 +80726,Robin,167410,1149017,0 +80727,Jessie,65904,37792,2 +80728,Laura,35197,113968,2 +80729,Gordon,112503,53950,2 +80730,Cynthia Harris,72096,42694,43 +80731,Helen Goldsmith,247691,101481,4 +80732,,45441,1155641,12 +80733,Aida,14907,1301268,4 +80734,NYPD Officer,269173,1369015,19 +80735,Johnny Gavineau,39957,39520,1 +80736,Żona Roberta,38875,589234,5 +80737,Lady Elizabeth Markham,55152,108641,7 +80738,Amy Wong (voice),15060,15100,3 +80739,Nav'i (uncredited),19995,147898,63 +80740,Georg Nyström,33613,76317,21 +80741,Herself,15258,4,22 +80742,Yvette,170603,1209113,6 +80743,Elizaveta Brichkina,49106,1004788,2 +80744,Pat,55784,1038130,12 +80745,Tourist (uncredited),337339,1804477,52 +80746,Gabby Douglas (14-16 yrs.),254065,202850,3 +80747,Waitress,58918,1577015,14 +80748,Lorry Driver,36113,96862,4 +80749,Kondratov,132759,86870,2 +80750,Lupe,77875,550319,18 +80751,Klari,8948,41167,1 +80752,Sam,359471,1169150,16 +80753,Farmer,26368,572090,3 +80754,Ben,255913,83967,1 +80755,Anna,33091,111343,5 +80756,Agent Mullins,11045,71198,6 +80757,Gabby's Husband,352186,134083,12 +80758,Jen,38065,146475,4 +80759,Mac,55694,159907,9 +80760,Soldier,128866,1665449,17 +80761,Kenny,14527,180686,10 +80762,Shepseheret,181533,87816,21 +80763,Pete Brady,40041,2550,2 +80764,Asylum Patient,62694,95301,31 +80765,Charles Campeau,41277,96596,5 +80766,Staplerfahrer Klaus,9677,49062,0 +80767,Artiglio,303542,649,10 +80768,Michel Angeloff,175822,27915,0 +80769,Jules Baxter,76494,6941,0 +80770,Georgi Batula,150223,1870826,12 +80771,Curator killer,43987,96634,10 +80772,Theatre Audience Spectator,131360,1064924,20 +80773,Joyce Saunders,45431,15855,26 +80774,Nina,257534,1297698,6 +80775,Raúl,280840,28514,2 +80776,Travis,97051,12790,7 +80777,Theo,218425,1312169,2 +80778,,288424,1357867,2 +80779,Mr. Levenstein,26123,26510,0 +80780,Ichizo Oishi,141819,58662,1 +80781,Melissa Cavender,35564,67575,0 +80782,Charlie,85196,1266878,3 +80783,Yongyuan,288788,70106,1 +80784,'Cashy' Martin,36527,137351,1 +80785,Porucznik Michał Janicki,25667,1636751,1 +80786,Philip,15285,228330,1 +80787,Booth Girl (uncredited),214756,1516957,79 +80788,,56971,88474,5 +80789,Lamprey Expert,270851,1246825,8 +80790,Rento,79382,1062344,8 +80791,Dr. Gordon Ramsay,28437,50573,2 +80792,Lauren,6963,51610,7 +80793,Bagoas,1966,20288,21 +80794,Max,82395,68727,0 +80795,Malcolm,184345,9562,0 +80796,assassin 1,4550,20738,19 +80797,Other Guy,352498,1562963,18 +80798,Otto Fukin,75262,556853,9 +80799,Erik Maria Bark,133458,52398,1 +80800,Pvt. Egan,39519,19484,2 +80801,Gentleman Critic,245700,8445,58 +80802,Aide-de-Camp,115109,139253,28 +80803,Neighbor Lady,2001,1781701,37 +80804,Nuclear Tech #2,52454,530073,38 +80805,Iva Ruth McKinney,70046,11794,12 +80806,Mark,508,7062,15 +80807,Farnsworth,43514,2437,16 +80808,Himself,144680,1416467,22 +80809,Franky,277839,1077537,4 +80810,Dr. Brintall,63139,11477,0 +80811,Black,331962,115255,8 +80812,Mulvey,164504,14451,4 +80813,Erzebet 6 Jahre,8316,1464082,18 +80814,Juan de la Vega,43114,1661538,7 +80815,Peggy,274479,126932,5 +80816,Coolie - 12 Kicks of Tam School,9470,78878,7 +80817,Candy,4441,37260,0 +80818,,63414,1107227,10 +80819,Uncle Abram,76203,1055236,19 +80820,Adolfo,123359,1102262,3 +80821,Himself,125736,1271000,10 +80822,Jack Fisk,69315,6110,2 +80823,Sammy Axel,111470,93624,17 +80824,Lucas,384737,1585218,9 +80825,FBI Agent Mathis,5172,41886,6 +80826,Sugar Ray Leonard,184341,57108,5 +80827,Claire Canselier,78210,19161,0 +80828,Janek,70981,17605,3 +80829,Boy on Sofa,44115,1613030,16 +80830,Henry,33272,110422,2 +80831,Maître d',32298,175993,18 +80832,Rebecca's Co-worker,424600,1704671,30 +80833,Umigame,38594,122191,10 +80834,Bruno,48594,1033064,2 +80835,Löwenhielm's Aunt,11832,579197,21 +80836,Cain the Sixth,95015,1544027,9 +80837,Damon Pratt,30921,60292,7 +80838,Gaspar,83185,929296,2 +80839,Mali Stanoje,255647,226143,7 +80840,Party Guest,128669,1269827,42 +80841,Sheriff LaFontaine,49762,142763,10 +80842,Mother / The Snow Fairy,49852,567787,7 +80843,Podzimková,18352,1537586,22 +80844,Sharon,1450,281985,16 +80845,Finlay,45219,2698,7 +80846,FIeld Marshall Haig,297762,2467,27 +80847,Mr. Steele,56558,34422,11 +80848,,232711,123180,2 +80849,Queen Anna,64044,28079,6 +80850,Rider with News of Teacher (uncredited),121230,1095107,15 +80851,,181456,1524412,9 +80852,Voice,55624,1463997,4 +80853,Hank,7972,569,1 +80854,Smiley Burnette,343972,90072,2 +80855,Officer Merton,99909,14455,30 +80856,Le cardinal de Flers,2002,20579,15 +80857,Kriminalassistent Jensen,11391,72912,4 +80858,Frederick Walton (uncredited),419430,1704617,24 +80859,Harry,72460,5563,0 +80860,Jessica Martin,50326,67848,1 +80861,Doctor,64465,1180542,5 +80862,Executioner,1427,17066,21 +80863,Cole Sanders,147903,19400,6 +80864,Alfonso 'Pájaro' Romero,127468,115210,0 +80865,Boardroom Rep,274479,1355923,46 +80866,Barbara Gordon/Batgirl,15805,30695,7 +80867,Julián,56647,34021,2 +80868,Catrin Cole,340101,59620,0 +80869,Fisherman in Rowboat,11832,34862,14 +80870,Murray Hare (voice),13017,14991,3 +80871,Patrick,94135,1203248,17 +80872,Dolly Parton,426670,1274510,0 +80873,Actor in Show,132928,14419,15 +80874,Martin Gordon,31275,1031151,0 +80875,Mrs. Martha Wilson,13358,7071,2 +80876,Himself,144942,216269,2 +80877,Billie Frechette,28110,29543,2 +80878,Prima Donna,34127,1759259,14 +80879,Webster Garland,46513,11282,3 +80880,Otis - SWAT Team,90616,119887,26 +80881,,126516,213519,3 +80882,Kel Kimble,36817,59645,1 +80883,Angela,166621,89101,11 +80884,Lasse Karlsson,24023,64975,8 +80885,Funeral Minister,183825,34625,56 +80886,Nemo's Mother,31011,110581,5 +80887,Davey,32904,1157300,6 +80888,Trista,130278,11164,5 +80889,Yard Sale Attendee,91679,1782576,15 +80890,Jeff Gaffney,331313,58225,0 +80891,Rabbi,82191,33090,10 +80892,John,29345,103585,8 +80893,Willowy Patricia,109391,1204687,20 +80894,Narrator,339526,34842,13 +80895,Jan Godtfredsen,16014,41906,5 +80896,,127445,1051298,6 +80897,Snakehead's henchman,10610,78110,16 +80898,Rosalie Funthes,5516,1378072,11 +80899,Johnny,259997,98658,18 +80900,Police Personnel,52302,1185637,10 +80901,Whitney Houston,319096,60033,1 +80902,Uncle Cocky,18747,1132614,8 +80903,Jackson,362703,928572,0 +80904,Rubia,166207,1249368,8 +80905,Celeste Martin,84184,80591,0 +80906,Arjun Kapoor,4253,35791,4 +80907,Marcus,244316,102742,15 +80908,Minder,239566,1457285,56 +80909,Shepherd Wong,21449,87544,4 +80910,Maks Baum,511,2829,2 +80911,Dylan Singletary,161482,130863,8 +80912,Max,48339,480,1 +80913,Camarero,131932,588889,16 +80914,Bit Girl,18690,36480,15 +80915,Rep. Arthur Smithfield,109441,54683,13 +80916,Mom-Susan,306952,67838,21 +80917,Vichy French Air Force Officer,369885,1651399,51 +80918,Interviewer (uncredited),3580,74523,60 +80919,Maciek,312138,131992,3 +80920,Bam,20210,56584,5 +80921,Darlene Laves,365753,1569798,10 +80922,Lorenzo,39436,263002,6 +80923,Figuier,62675,1082052,12 +80924,André Laban,332794,1328504,22 +80925,Fred's father,211879,1273971,1 +80926,Josie,278334,1181313,3 +80927,Herself,245739,1220269,8 +80928,Philippe Dupin,260312,73827,2 +80929,Fanny Pearl,19338,1441203,8 +80930,Commdr. Smith,109475,5249,4 +80931,Stenographer (uncredited),40957,40429,16 +80932,Hybelvertinnen,87654,1289000,29 +80933,Akiko,22579,88945,2 +80934,Patrick Pink,26796,75564,9 +80935,Mayor Pippen (uncredited),14615,89099,31 +80936,Executive,16232,1226707,8 +80937,Kirsty,32577,87923,6 +80938,Minna Tipton,38602,1497048,16 +80939,Tomy Everett,196065,40401,0 +80940,Brig. Vermeulen,74661,88158,6 +80941,Howard Welland,110540,1263809,6 +80942,Show Girl,413232,1676767,29 +80943,,248417,133252,1 +80944,Traffic Control Constable,140470,13557,15 +80945,Lou Wheaton,15759,2207,8 +80946,Prete,56339,1891145,14 +80947,Colby,45013,1818007,19 +80948,Blonde,28663,3161,7 +80949,Gilda,17974,32066,2 +80950,Masaie Natsuka,209032,1082509,6 +80951,Pascal,344906,20980,2 +80952,Lee Merrick,125736,13353,2 +80953,Larry (voice) (uncredited),302699,1517535,23 +80954,Tass,66926,231048,0 +80955,Colette,29577,83488,2 +80956,"(segment ""Chawan no naka"")",30959,227622,74 +80957,Mrs. Blacker,293452,1546076,10 +80958,Stella Bevans,173662,80994,0 +80959,Lunatic,30361,33832,16 +80960,De Veve,38027,55960,12 +80961,Vargas,81434,141,1 +80962,Kaisa,124979,1531739,7 +80963,Sgt. John Haverford,36691,115975,16 +80964,Martin's mother,14904,61350,3 +80965,Taxi Driver,413232,47001,34 +80966,The Dear One (Modern Story),3059,8829,1 +80967,Janet,46773,1523005,15 +80968,Javier,44282,1194577,3 +80969,Compere,47003,185947,7 +80970,Agente Stazione,59040,1140832,34 +80971,Iluska (voice),41078,1456938,2 +80972,,214938,141285,8 +80973,Lt. Linus Delaney,151310,9108,3 +80974,,79781,65827,6 +80975,Caprice,334299,123989,2 +80976,Himself,23319,7169,4 +80977,,25499,99710,11 +80978,Schoolyard Kid (uncredited),25132,1112453,16 +80979,Freddie,42614,30006,6 +80980,FBI Agent #1,58918,1817631,19 +80981,,209266,11610,3 +80982,George Tildon,376501,26048,6 +80983,Osman,126090,1425450,12 +80984,Creature (Voice),267852,1557710,8 +80985,Natasha O'Brien,42216,14061,1 +80986,Le Boumian,37645,271623,25 +80987,En tysk soldat,20372,1270301,15 +80988,Matthew,356482,92058,2 +80989,Zac Chase,360606,1512175,7 +80990,Adrienne Sanders,28455,18892,0 +80991,Evie O'Connor,227717,1215925,0 +80992,Lindsay Boxer,86970,177443,0 +80993,Laverna (voice),16962,45923,2 +80994,Caesar,13072,7447,0 +80995,Helen Manning,418437,36169,4 +80996,Cabby,149793,100945,36 +80997,Flavia Geste,55628,13567,0 +80998,Gilles Bellomi,71191,562156,1 +80999,Philip Crosby,285400,1238835,9 +81000,Magda Goebbels,613,680,2 +81001,Liza,345489,1111690,2 +81002,Soul Anshu,72710,1273231,11 +81003,,332872,1755614,29 +81004,Jacques,34280,24377,1 +81005,Joe Kingman,13680,18918,0 +81006,Christine,26331,40403,1 +81007,Riley Brown,232100,1267375,0 +81008,Accountant #2,7220,1837916,25 +81009,Notar,97088,14126,6 +81010,Businessman (uncredited),73430,1432396,22 +81011,Bob Nielson,20174,98164,15 +81012,Waiter / Library Patron,303281,1034648,10 +81013,James Gordon,123025,56930,2 +81014,Joe - Blueprint Security Officer,47404,120734,18 +81015,Greta Cummings,302042,132721,5 +81016,Reporter Metz,188468,2927,16 +81017,Ulitka (Maryana's mother),207636,35504,5 +81018,Eiji Kure,36075,91870,3 +81019,Chelovek s kolbasoy,35428,238524,10 +81020,Georg Sandberg,204384,44516,11 +81021,Duke,273896,97912,2 +81022,"Tarasov, captain of the Marine Corps",271234,224281,8 +81023,Rosa,335053,102222,8 +81024,Merçona Puig,1896,19824,10 +81025,Marino Balestrini,56369,37583,0 +81026,Waldridge,335509,1453329,5 +81027,Frieda,104146,45863,4 +81028,Colin Nelson,224903,204949,0 +81029,,416569,234129,8 +81030,Terry,17725,1227518,14 +81031,Alexsandr,291866,1346980,11 +81032,Drunk,46026,9094,11 +81033,Niño,48594,1599407,12 +81034,Lopes,97110,1076455,8 +81035,Captain Skunkbeard / Biff Wellington (voice),13355,2372,8 +81036,Telephone Engineer,314065,1812571,9 +81037,Paula Peterson,82703,475512,4 +81038,Adam,173499,1055745,10 +81039,Brother Assoua (voice),26963,96674,5 +81040,Cage fighter,391757,1290458,5 +81041,Tin Man (voice),14833,2714,8 +81042,,90351,87544,10 +81043,Mother,31542,1757140,22 +81044,Classmate,140814,1113462,9 +81045,La Corrala de la Danza,47959,1426035,28 +81046,Tom Brandt,24619,57155,17 +81047,Félicien Mézeray,11912,11187,1 +81048,Lynch,30929,44865,1 +81049,Sam Lockwood,13483,56731,1 +81050,Jack Schmidt,27358,931652,3 +81051,Charmy,25645,94077,4 +81052,Janosch Lassard,86647,101471,4 +81053,Phil Robinson,115290,9275,3 +81054,Sniper,286657,933232,5 +81055,Dr. Wagner,338,13746,12 +81056,Nguyen Van Com,198993,85285,11 +81057,William Martinez,44943,72985,1 +81058,Young Carmine,13072,106815,3 +81059,Himself,453053,56584,6 +81060,Hod carrier 2,48852,156869,13 +81061,Suzie Standish,417936,1568353,8 +81062,Anna,42062,46617,1 +81063,Lisa,77246,328,0 +81064,Simon,16320,55148,6 +81065,Malachi Black,64685,1232487,19 +81066,Mrs. Whisler,266285,1021884,19 +81067,,293412,42935,5 +81068,Enrico Henry Rosseni,6591,21181,0 +81069,Liam,4344,40477,2 +81070,Sgt. Burns,40990,58058,3 +81071,Tenente Gallina,55823,5567,5 +81072,Antonio,26969,43321,0 +81073,Yong-il / Young Joon-pyong,21966,76934,8 +81074,Carmel,270403,95558,3 +81075,Lawrence,78522,99425,13 +81076,Ricardo Morales,25376,93648,2 +81077,Damien,244610,1376414,2 +81078,Judge Barry,38978,10025,4 +81079,Rob Hall,32648,27631,1 +81080,Miss Wimsey,2976,4568,12 +81081,Meiling Li,31347,90572,7 +81082,Becca,43923,1719595,24 +81083,Arras,47096,1223409,7 +81084,Warner,302666,1302325,16 +81085,(voix),50166,231266,4 +81086,BP Rep,296524,1002306,17 +81087,Romero,24078,85954,5 +81088,Duncan Mudge,26899,46593,0 +81089,Bernard Noblet,287391,24903,2 +81090,Mae,309581,1214165,11 +81091,Police Inspector Arjun Joglekar,46403,86421,7 +81092,MacPherson,16444,119344,9 +81093,,28917,43366,5 +81094,Cop,14923,135855,73 +81095,Brian,3554,3799,1 +81096,Sandra Vanessa,82968,1018915,8 +81097,Master Jiu Gao Feng,40081,122814,6 +81098,Professor Delbanco,72207,1745406,25 +81099,King Edward,44398,12282,4 +81100,Beth,17927,129142,12 +81101,Clark Gable,205798,58214,12 +81102,Reporter / Police Chief Auditionee / Himself,430826,1891513,34 +81103,postman's father,390930,72389,4 +81104,Apple,385372,63677,0 +81105,Man,351043,8210,2 +81106,Soldier #4,82654,1676060,11 +81107,Carol Solomon,72207,91495,8 +81108,Monsignore Berghammer,267035,591520,5 +81109,Ernie,156597,1427473,19 +81110,Police Armourer,18927,1171661,15 +81111,Sra. Mueller,48594,1034509,4 +81112,Commentator (voice),118889,167922,64 +81113,,349441,1507325,4 +81114,Khalujaan,33556,6497,0 +81115,Baba u vozu,15303,111061,9 +81116,Giulia,42679,3124,1 +81117,Sporino Cut Man,312221,1343828,19 +81118,Fidenzoni,75001,538006,3 +81119,Lieutenant Uhura,188927,8691,3 +81120,Ingenieur-Offizier Unger,45398,70417,14 +81121,Gadge,83666,963684,12 +81122,Euphemia 'Effie' Gray,114155,501,1 +81123,Solomon,222030,78882,2 +81124,Billard Queen,49853,1648782,24 +81125,Tracy Hansen,10096,86128,11 +81126,Herself,128140,1161078,3 +81127,Mr. Bowker,8247,3999,9 +81128,Motel Clerk,245703,1291848,19 +81129,Ponytail,294254,53971,17 +81130,Flirty Hockey Player,89492,986808,16 +81131,Emilio,120303,106086,3 +81132,Captain Aldrich,45326,40550,1 +81133,Andrew Neiman,367412,27104,1 +81134,Policier centre de rétention,15712,1890118,24 +81135,Chris Carlyle,150247,75351,0 +81136,,121154,80365,1 +81137,Largeman,75761,43774,6 +81138,Mimi,293970,1347284,10 +81139,"Ugo, paziente della clinica",43211,1885526,18 +81140,Richard Lavoie,69765,557090,3 +81141,Donna Davy,15982,79008,8 +81142,Mary Jones,44732,1907,3 +81143,The Vuvalini,76341,217828,18 +81144,The Subjects Bass,15810,933015,6 +81145,Wiske,56344,223970,1 +81146,Maurice,48601,1152094,7 +81147,Old Man,295723,1216471,23 +81148,Yumi,106417,120689,2 +81149,Father at the maternity ward,39284,321845,12 +81150,Juan,82745,230219,2 +81151,Farmer Comstock,56906,105593,5 +81152,Elisabeth,212530,591496,4 +81153,Sheldon Geise,203351,1186517,7 +81154,Dr. Cuesta,166207,1396357,5 +81155,A.J.,7445,105786,13 +81156,Sarah,11376,34519,0 +81157,Bumping Man Exiting Subway,132928,931793,32 +81158,Magistrate,21070,24933,15 +81159,Ms Shepard,57749,125021,8 +81160,Gate Sentry,27549,1840745,15 +81161,Policier,77338,1048793,24 +81162,Gresh,22259,7220,4 +81163,Teacup,256962,21132,9 +81164,Police Comissioner Tabassi,11048,36933,1 +81165,Teacher at the library,292625,1758611,23 +81166,Sophie,50318,1411818,23 +81167,Kaspar,327389,188654,10 +81168,Yvan,393407,2245,1 +81169,Fabia,113743,10926,8 +81170,Perth,292625,1190450,0 +81171,Chapin,76203,129868,40 +81172,Luis Galindo,55720,1350973,1 +81173,Hippie Chick #2,62213,213395,23 +81174,Dancer #2,13442,42226,7 +81175,Jen,60965,232040,3 +81176,,79678,1562809,1 +81177,His daughter,47190,29199,8 +81178,Mother,74430,14108,7 +81179,Herr Mehlert,338,210570,10 +81180,Park Ranger,154537,174235,4 +81181,Pig Fan (voice),9502,45416,22 +81182,Prostitute 1,283424,953445,3 +81183,Mrs. Blackwell,205587,6465,12 +81184,Cynthia Oberman,85009,160330,11 +81185,Wendell Robinson,168027,1103,11 +81186,Harry Moulton Pulham,96107,14868,1 +81187,Himself - at Banquet (archive footage) (uncredited),33740,105636,97 +81188,Johnny,17306,1567842,16 +81189,Dean Randall,118984,529,0 +81190,"Toriko Futori, the retarded daughter",50696,110309,3 +81191,Customer (uncredited),28000,570324,58 +81192,Connie,4613,19761,14 +81193,Shalini,14752,35745,3 +81194,Suspicious Diner,75761,1097169,22 +81195,Strip Club Girl,28090,1719896,43 +81196,Abdi,303636,1412500,5 +81197,Cook,127560,1381317,21 +81198,Wings,21138,172868,13 +81199,Maria dos Prazeres,167707,109714,0 +81200,,400610,1672910,4 +81201,Pued,50108,1089595,7 +81202,Bombmaker,13979,963078,4 +81203,Koke,391618,1441760,6 +81204,Periklis Papahristoforou,163018,1144910,0 +81205,Skinny Writer,131799,186411,10 +81206,Police Officer,305932,1585120,19 +81207,Léopold Mozart,62116,135665,1 +81208,Александра,85729,143741,1 +81209,Dr. Fabiano,159211,25099,4 +81210,Vogt,226001,1444643,8 +81211,Angie Rossini,39495,2769,0 +81212,Joel Markowsky,41131,125558,8 +81213,Diamond Joe Carson,25977,47859,7 +81214,Factory Worker at Gate,81120,39740,24 +81215,Megan,204255,1449238,9 +81216,Diana,335509,3242,1 +81217,German Checkpoint Guard,13580,93163,13 +81218,Inspector McKenna,104644,14312,5 +81219,Italian Restaurant patron,26469,1510796,10 +81220,Drunk Leaving Bar (uncredited),14615,148868,86 +81221,,134144,1150904,4 +81222,Agnes,72847,115367,11 +81223,Akiko,234284,90572,4 +81224,Sally Gilmartin / Eva Delectorskaya,153397,44079,4 +81225,Sports Bar Fan,120802,1274719,34 +81226,The Hermit,316154,206,4 +81227,Father Roy,45273,147,0 +81228,Logan Fallon,38202,55541,3 +81229,Cassandra Diabla,426230,78324,12 +81230,Mrs. Lee,41171,1392745,24 +81231,Dal-goo,313108,77188,3 +81232,Nokama,21379,74360,8 +81233,Takeshi Park,21966,63694,4 +81234,Chaz,23048,64135,16 +81235,Yiu Ka Chu,18899,83820,2 +81236,Гиффорд,211928,39794,2 +81237,Sergei,91480,14481,0 +81238,,64328,1856730,46 +81239,Chief Assistant 2,255160,1898236,21 +81240,Drayke,91333,11160,0 +81241,David Grieff,102057,10403,8 +81242,La Belette,6935,51495,2 +81243,,148615,2165,12 +81244,postikonttorin johtaja Laakso,442752,222230,9 +81245,Jazz Musician,229297,1418997,24 +81246,Ash Correll,10145,17287,4 +81247,Mr. Jenkins,124115,85897,15 +81248,Falinda,62522,22122,0 +81249,Randolph,37609,17079,12 +81250,Party Girl (uncredited),9900,1202550,20 +81251,Amaia,348537,224731,0 +81252,Pearl Collins,74437,290159,6 +81253,Sean Daley,17669,35595,2 +81254,Brent's Butler,43895,3368,7 +81255,Commander Wakes,59197,115400,7 +81256,Harrison,44960,1235160,9 +81257,Hironori,382170,127225,6 +81258,Athos,18613,1118,0 +81259,Asa,46982,1537639,2 +81260,Henry Dashwood,315010,32160,16 +81261,Male Porn Star #2,15092,1703452,54 +81262,,143946,83203,22 +81263,Wedding Guest,235662,592274,8 +81264,Dan O'Finn,20825,52860,3 +81265,Adam,79995,227,0 +81266,Dong-Yoon,229304,1418738,5 +81267,Izzy Sason,44511,16607,1 +81268,Guillaumin,45184,97284,13 +81269,Astonaige Medoz,16157,1239127,10 +81270,Dr. Ennis,337751,1239534,13 +81271,Tom 'Tommy' Ryan,176867,117772,12 +81272,Marc,91070,113563,8 +81273,Tommy,44682,131252,1 +81274,Grunk,53693,148725,4 +81275,Mildred,33729,164778,8 +81276,Passenger (uncredited),32552,121329,20 +81277,Rosita,63260,100415,4 +81278,Tokei-Ihto,130957,22588,0 +81279,Una soubrette,66893,89127,11 +81280,Richter # 2,2734,27665,43 +81281,Jack,76543,579297,9 +81282,She,46891,87669,1 +81283,Frank Stone,17306,110019,6 +81284,Mrs. Dawson,29467,19781,2 +81285,Mayor Joncour,14753,6074,6 +81286,Sgt. Cross,122677,83130,2 +81287,Zhou Yufang,78450,262128,0 +81288,Jeff Douglas,18283,37446,1 +81289,Herr Riethof,341491,10263,1 +81290,CSI Agent,86709,76674,3 +81291,Pilot Craig,86254,117437,6 +81292,Myra,77645,96498,7 +81293,Pavel,245891,1503860,24 +81294,Til Johnson,107262,50464,4 +81295,Lisa,100088,2575,12 +81296,Fake Morticia,107596,1647138,14 +81297,Georgier,82708,137625,19 +81298,La mère de Lucille,10795,550107,36 +81299,Mr. Kevin Thompson,72753,42206,5 +81300,Melanie,15019,81571,8 +81301,Airport Corpse,82654,1676050,20 +81302,Mohawked Punk,27814,1856481,19 +81303,Michelle Allaine,42825,14965,2 +81304,"Carol Rogers (segment 2 ""Creeping Vine"")",26811,3930,19 +81305,Daniel,431093,72128,1 +81306,Reg Nuttall,118121,742,2 +81307,Isabel - age 19,14804,1901750,7 +81308,Lisa,14874,16855,2 +81309,Angela,39436,1693770,8 +81310,Carmen,89325,8786,7 +81311,le commissaire,65887,11216,6 +81312,Bill Koala (voice),339669,12206,6 +81313,Rikard,10119,63766,5 +81314,Eric,24059,65202,6 +81315,Underground Tour Guide (uncredited),32021,1069,18 +81316,On Camera Musician,198277,1424210,40 +81317,Esther,4983,40381,6 +81318,Pauline,209406,91977,13 +81319,Emma,194722,1525015,10 +81320,Ekaterina Karlovna,51284,80504,4 +81321,Dream Girl,316154,1842093,18 +81322,Pete Verrill,28761,20495,1 +81323,Nigreda / Sofía (voice),89247,938638,0 +81324,Sammy,24625,77117,7 +81325,The Lion,352186,1251978,2 +81326,Prudy Pingleton,409447,8263,9 +81327,Elloe Kaifi (voice),30675,106777,7 +81328,Buck Cantrell,1976,20364,2 +81329,Lumberjack (uncredited),93313,30299,11 +81330,Cecile,33102,110082,1 +81331,,70322,1617638,8 +81332,Paramedic,102630,555656,8 +81333,Ray,369033,559457,11 +81334,Philippe Clovier,57327,7275,1 +81335,Geek,373397,114482,5 +81336,Khottabych,57775,240545,0 +81337,Hatchett,44415,146330,2 +81338,Harry,9914,26669,20 +81339,Гена,332512,235919,1 +81340,Businesswoman (uncredited),323675,1754141,57 +81341,Janetta - Detention Kid,2976,62133,63 +81342,Kyle Cooper,13680,74930,5 +81343,Aelf,45988,1730431,7 +81344,,188640,1428334,20 +81345,Un tueur chez Ellis,111480,1145425,12 +81346,Henchman,39276,129509,10 +81347,Dr. Wielgosinski,156627,1103810,12 +81348,Julieta Arcos (young),332872,130260,1 +81349,Naturalists' Conference Chairman,28775,31265,14 +81350,,83501,1601776,5 +81351,R. Mackenzie,43833,14152,6 +81352,Waitress,245906,68890,23 +81353,Scottsdale Mom,34231,1654957,7 +81354,Helen's Party Guest,157898,1021686,28 +81355,Guitar Student,7233,1131204,13 +81356,Himself,21671,20405,1 +81357,Bachelorette #4,193893,1381671,52 +81358,Ugwu,209401,236695,4 +81359,Immigrant,118059,68937,9 +81360,Ramos,6636,50929,2 +81361,Convenience Store Robber,28090,73132,61 +81362,King,348689,4259,8 +81363,Jenna,103620,932095,3 +81364,Fan Chuan,377447,1559226,4 +81365,Blofeld,206647,27319,1 +81366,Sarah,508,350,3 +81367,Lucas Herman,33592,1820843,12 +81368,Patricia,6023,8534,6 +81369,Kiko,140814,154001,3 +81370,Gould,268735,173668,9 +81371,Mme. de Sylva,118131,128966,2 +81372,Winston,138222,333,6 +81373,Guy at Table #1,72105,1502856,35 +81374,Hector Brown,332079,2782,8 +81375,Kolega Walczaka,31856,209780,12 +81376,,359152,54230,2 +81377,William Anderson,75203,107028,1 +81378,Brett Dale,164504,1009,0 +81379,Dr. John Howland,284293,7447,1 +81380,Léon,188858,224150,0 +81381,Jedda,118490,1541356,0 +81382,Carla,85265,150694,2 +81383,Prime Minister,338518,27422,5 +81384,Monsieur Patate (voice),52264,71491,10 +81385,The Player's Wife,59419,35317,7 +81386,Himself,72711,1147939,5 +81387,Wasim Khan,314389,110707,8 +81388,Jed,24411,231272,11 +81389,Dr. Hesley,256962,60062,33 +81390,Jarhead,342472,3129,4 +81391,Dan Craverston,331313,59841,5 +81392,Beth,136146,1486493,5 +81393,Larwa,79221,586161,6 +81394,Jensen Sieverts,42871,93624,7 +81395,Fusion Bouncer,405473,1346501,30 +81396,Zed,4923,738,0 +81397,Parson,8776,125192,5 +81398,Puppeteer,40990,1567895,16 +81399,Director,3055,109625,13 +81400,Antonio,241968,1042753,5 +81401,Helen Stacey,100910,7667,3 +81402,Mrs. Simms,53949,114955,11 +81403,Lily,72710,1123886,26 +81404,Colin Haggart / Volunteer #1,12902,31531,6 +81405,Miss Anderson,218425,1016065,4 +81406,Albert Stark,188161,52139,0 +81407,Fisherman,31127,1055702,13 +81408,Neil Thomas Jr,61348,33848,7 +81409,,332872,1289331,26 +81410,Young Woman,72847,1472518,15 +81411,Captain Dick North,354287,40039,16 +81412,Wickman,27622,98445,12 +81413,Willie Stevens,74395,12975,0 +81414,Eliodora,361146,1276996,11 +81415,Jeanne,13734,15211,9 +81416,Ruby Sanderson,69903,1364563,9 +81417,Tea,32489,95014,7 +81418,(voice),16171,79892,44 +81419,Nightclub visitor,43113,1479150,64 +81420,Thilde,126250,221110,11 +81421,Elvia,41054,78934,2 +81422,Tommi,30535,224315,2 +81423,Lady Ann Pettigrew,104211,144361,4 +81424,Laxman,31364,35756,5 +81425,The Captain,71805,123960,8 +81426,Singer,43250,1221936,14 +81427,Galgani,48254,223619,13 +81428,The Bug Collector,62670,135526,8 +81429,Selma,99361,1194819,6 +81430,Giselle,369894,209225,6 +81431,Soldier #2,187028,1728944,8 +81432,Captain Gomez,8053,59675,7 +81433,Le gendarme,59118,142448,26 +81434,Sean,279692,31468,4 +81435,Tortoise,58159,227460,0 +81436,,31275,1853874,8 +81437,Yellow Jacket,10476,1560861,11 +81438,Chauffeur,91583,93149,17 +81439,Antonio,315319,1880537,23 +81440,Mrs. Reed,22744,11025,7 +81441,,19501,1207971,2 +81442,Dawn Cowley,171738,1154281,2 +81443,Hippo,204712,1187053,2 +81444,Caesar's Pit Boss,332979,141448,9 +81445,Russian Submarine Sailor,246655,1796434,88 +81446,George 'Buddy' Wade,23331,33775,2 +81447,Mrs. Kaufman,196065,1240834,10 +81448,Alien Woman #2,74629,1089695,8 +81449,,268099,1316484,4 +81450,"Amund, kjelketrekker",20372,1126668,17 +81451,"(segment ""Miminashi Hôichi no hanashi"")",30959,552674,58 +81452,Georges,4948,10263,2 +81453,Brent,26914,932326,9 +81454,Pastor Simmons,326045,64670,4 +81455,Bea,1253,21661,6 +81456,Juke Joint Musician #1,14047,1392610,41 +81457,Colby's Mom,44415,146333,5 +81458,Satu,468707,1860857,1 +81459,Barbara Robinson,115290,9205,2 +81460,Ben,82990,455033,2 +81461,Stacey,53214,60004,0 +81462,Harry Rowe,31118,89192,2 +81463,Megha Basu,28805,85035,2 +81464,Clément,395767,6020,2 +81465,Miles Long,108501,105175,0 +81466,Eriko Nagai (voice),357390,1258548,3 +81467,Romero,190955,171791,14 +81468,Djemel,329805,1026733,11 +81469,Oswaldo,40978,28255,13 +81470,,289679,235350,6 +81471,Mr. Hewitt,14750,1657355,11 +81472,Frédéric,57308,73827,0 +81473,Earl Griffin,4931,8633,14 +81474,Jerome Ades,28938,1844,0 +81475,Police Officer (uncredited),13912,144127,21 +81476,Buchkunde 1,52475,1881187,37 +81477,Realtor,33314,60875,13 +81478,Mrs. Wiggins,292294,151503,8 +81479,Gasper,256311,28345,13 +81480,Newscaster,28090,7623,34 +81481,,321779,136806,3 +81482,Elles,67499,211006,4 +81483,Intellectual Screenwriter,310593,1359415,17 +81484,Tony,107430,55257,0 +81485,Parker,234868,97641,5 +81486,Shep Wild,214756,21134,10 +81487,John Johnston,43806,88728,21 +81488,Antonio,1418,16867,1 +81489,Chusui Liang,217923,1044559,9 +81490,Margaret Northup (adult),76203,1344365,54 +81491,Lotte Yanson (voice),182131,23988,1 +81492,Vater,135832,8799,4 +81493,Maddie Huntington,79113,1374336,4 +81494,Mahesh,381691,1072750,0 +81495,Jack the Waiter,41591,96710,13 +81496,Vampire Hunter,246741,1780264,14 +81497,King Herod,293380,7192,3 +81498,Andy,27916,1090175,8 +81499,Perry,211144,112649,5 +81500,Dominik Silva (jung),277968,1137262,21 +81501,Katie (voice),328111,475512,7 +81502,Rolfe,16182,978,13 +81503,La Mère (voice),21348,87422,1 +81504,Persson,16032,3855,6 +81505,Gerald Weaver,18774,39065,2 +81506,Vinnie 'Pipe' Pipolino,58918,31115,8 +81507,Peyton Kelly,13680,74929,1 +81508,Nanami Minagawa,382170,1054260,1 +81509,,88273,1385109,33 +81510,,113739,217087,5 +81511,JR White,294652,1017347,1 +81512,Policeman in Charles' Suite,14589,1291802,25 +81513,Cop,240832,1426372,25 +81514,Walter Nelson (voice),366143,2232,0 +81515,Warlock,152393,97679,4 +81516,,55608,236750,1 +81517,Pilot,43833,444317,34 +81518,tailor / hot air balloon pilot,55495,1839569,15 +81519,Dr. Forrester,169726,69764,8 +81520,,85377,584143,3 +81521,Constance Bonne-aux-Fieux,130062,102501,4 +81522,Leigh Anne Tuohy,22881,18277,0 +81523,General Bonner Fellers,127372,28657,0 +81524,Angie,40217,1233050,10 +81525,Paul Bruhn,1914,675,0 +81526,Oliver Threthewey,214753,40960,0 +81527,Seethus,277778,1334136,11 +81528,Henchman (uncredited),59828,86356,12 +81529,Miike Takashi,1690,17282,7 +81530,Gosia,31021,107517,2 +81531,Louis Beretti,94009,99749,0 +81532,Jesse James,35026,26100,1 +81533,Bartosz,36402,95105,4 +81534,Jonathan 'Johnny' Koffin,101669,71467,9 +81535,Reporter (uncredited),16442,1420952,31 +81536,Owen,147773,6807,4 +81537,Gas Attendent,79550,12132,6 +81538,Hui Bo San,26005,130506,8 +81539,Albert,182349,1511969,5 +81540,,278738,1436999,6 +81541,Margaret 'Maggie' Preston,118900,82170,0 +81542,Suba,194393,98827,6 +81543,,130957,22925,12 +81544,Medic Johnson,86305,230,5 +81545,Girl with Eggs,53392,89556,3 +81546,Egor Dorin,102197,562730,0 +81547,Lisa,123634,579551,7 +81548,Cyril Landrin,44155,66839,3 +81549,,84774,1327288,2 +81550,,211233,1197470,8 +81551,Herself,15177,77989,18 +81552,Bob Chase,67531,1046159,4 +81553,Gad,24272,140577,16 +81554,Sid,21044,5723,0 +81555,Detective Squad Chief Oh,362974,573794,5 +81556,Narrator (voice),84493,14501,1 +81557,Punk,14904,65023,5 +81558,Furio Brondi,48254,1383042,14 +81559,Pratima Bhave,20623,110708,15 +81560,Detective Karisto,217038,122402,2 +81561,Saïd,38021,336610,9 +81562,Darrien,62046,327,3 +81563,herr Bladh,128946,213528,13 +81564,Mr Maudsley,36194,3796,5 +81565,Chairman of sport,184155,235981,8 +81566,Shelly,30492,15010,4 +81567,Agent Charlie Rusk,10829,1213791,8 +81568,Hatti Combest,33224,81798,2 +81569,,125229,1200210,6 +81570,Samuel Trench,55152,14955,6 +81571,Roger Cobb,52868,45415,1 +81572,Dennis Sciama,266856,11207,5 +81573,Loyalist,1271,230,12 +81574,Lil Bob Bolaño,333663,1736794,15 +81575,Beverly,50647,128207,12 +81576,Mascha Silman,96497,566913,1 +81577,Sheriff of Nottingham,115972,5,2 +81578,Blue,336011,1560243,11 +81579,Asha,45167,132363,1 +81580,Rolf,230295,74709,0 +81581,Reporter (uncredited),1726,1429470,87 +81582,Himself,90125,52813,4 +81583,Friend of Kiki's Father,408509,587142,8 +81584,Ezra,52868,100418,6 +81585,Jean-Claude,35016,550497,37 +81586,Véronique Colucci,14419,19360,1 +81587,Rosa Beretti,94009,97005,3 +81588,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1018813,11 +81589,Tina,128917,11150,2 +81590,Ginger,232672,1428395,16 +81591,Prim Townswoman (uncredited),14615,1317939,104 +81592,Anne Babish,86703,28639,0 +81593,Pop,183825,117036,40 +81594,Nevalyashka,62688,224489,0 +81595,Marco,41427,126448,10 +81596,Canning,24392,1544016,9 +81597,Meeks,351901,207939,6 +81598,Ivan,128767,235097,1 +81599,Madeleine,99859,40310,9 +81600,Reporter (uncredited),16442,980330,34 +81601,Juan,327383,3483,1 +81602,,57977,933618,4 +81603,Du's wife,40081,240152,11 +81604,Musician,72096,50975,56 +81605,Zoe,14660,71070,3 +81606,Segretaria risorse umane,231176,1467353,15 +81607,Plume,9966,15011,5 +81608,President Dwight D. Eisenhower,19665,21030,10 +81609,Miss Evans,4955,40997,11 +81610,Himself,15725,76120,2 +81611,Katy Cooper,360606,1512177,12 +81612,Mickaël,47226,1564561,9 +81613,Hunting Zombie (uncredited),82654,102742,33 +81614,George Leslie,120259,8253,1 +81615,Laura,371942,1547213,3 +81616,Store Owner,1640,18303,28 +81617,Dr. Jane Silla,36635,30273,3 +81618,T.J.,7220,20562,16 +81619,Seo Ji-Woo,64882,37940,0 +81620,Hotel Man,24619,158825,29 +81621,Françoise,13734,117884,7 +81622,Katharine Hepburn,2567,112,1 +81623,Ned,242076,1064,3 +81624,Concertina Girl (voice),16460,1069734,1 +81625,,10044,62423,10 +81626,Narrator / Cera's Dad,24556,44052,6 +81627,Old Prospector,188161,2454,9 +81628,Student,23966,81962,12 +81629,John,192133,17019,6 +81630,Mrs. von Heerle,154972,41356,4 +81631,Smith,11912,580192,5 +81632,Craig Fleming,43525,20364,2 +81633,Calder,8852,9786,10 +81634,Katja (13 Jahre),311301,1391314,8 +81635,Townspeople (voice),19594,13243,11 +81636,Lotte,53256,147632,3 +81637,La grand-mère,10268,64550,17 +81638,Le moniteur de tir,38883,7278,11 +81639,"Lenzi Weiss, Sitas Vater",167424,11951,1 +81640,Tourist Information Clerk,55433,222374,7 +81641,Marine Sentry,257081,4072,27 +81642,Gatekeeper #4,295723,1194169,13 +81643,Marjorie,227700,1795085,17 +81644,White Cop,29610,104342,17 +81645,Jean,28209,27166,1 +81646,Rapinatore,59156,16318,4 +81647,ECP Sgt Sanders,424488,1114061,10 +81648,Candace,274479,1602952,21 +81649,Jose,95358,122008,9 +81650,Rosemary Pilkington,22682,46944,1 +81651,Kabakov,50374,8606,0 +81652,'Fosforo' Stanislao,43571,129619,2 +81653,Doctor Harper,188161,78789,17 +81654,Miche,121895,559677,1 +81655,,58692,228264,6 +81656,Walter McGrane,34995,1037,1 +81657,Mitzi / Mitzerl Schrammell,42537,3242,1 +81658,Anne Kodai,391642,1565085,12 +81659,Lucia,60014,101130,2 +81660,Cpl. Schenke,7454,17290,1 +81661,Ms. Diana Little,45227,127399,1 +81662,Tashi,8341,54614,0 +81663,Clips from 'Hollywood Revue' & 'Dancing Lady' (archive footage),33740,31550,21 +81664,Denise Marton,119801,34598,8 +81665,Dave Lovell,243935,2171,4 +81666,Sam Grundy,81120,3675,6 +81667,Katrin Villenueve,366045,1475081,8 +81668,Marina VIP,168027,1735577,17 +81669,Drago,66881,549028,4 +81670,Maki,43635,129703,3 +81671,Salome,50318,1411819,28 +81672,,373200,1397016,3 +81673,Gürkan,64468,239260,0 +81674,Ernesto,85350,1467941,43 +81675,Wellington,413998,1674155,14 +81676,Biscuit,31821,23740,2 +81677,Haring Avalon,67174,439763,10 +81678,Ljubica,11373,69149,6 +81679,George,64428,13329,3 +81680,Lance Huston,40624,3085,1 +81681,Department store clerk,8270,54229,30 +81682,Lisa,146380,1124101,3 +81683,Tyree,279692,9777,6 +81684,Hank McCoy / Beast (older),127585,7090,11 +81685,Krantz,43868,8730,8 +81686,Commander Arka-Punkayee,39907,1649568,11 +81687,,188180,976536,4 +81688,,364833,47432,4 +81689,Johnson,20106,85627,8 +81690,YK-sotilas,148435,147769,8 +81691,Ringsider (uncredited),75315,33971,14 +81692,Ayano,11838,552515,22 +81693,Cobra O'Conor,391757,1602210,9 +81694,Швондер,43680,237508,3 +81695,District Judge,13542,147823,9 +81696,Carmen de Triana,127864,224728,4 +81697,Capt. William A. Stewart,37468,117744,9 +81698,Inspector Pradhan,118809,42208,5 +81699,Healer Fords,72710,16460,19 +81700,Yamazuki,94135,95014,8 +81701,George Allani / Tomasino,41552,115076,7 +81702,Tori,17483,81953,5 +81703,John Marino,55294,532,4 +81704,Jeff,9900,32907,8 +81705,Luan Paxton,25473,102861,4 +81706,Slave Girl,1271,1330770,65 +81707,White Snake / Su Su,75948,83635,1 +81708,Policier métro,305455,1646376,8 +81709,Maria,65718,40165,5 +81710,Scott,412209,113373,3 +81711,Little Middle Ronnie,14923,1386338,5 +81712,Marie Louise,273510,20300,4 +81713,Neteyam,76600,1729393,13 +81714,"Zsóka, takarító",436343,1485764,4 +81715,"Cecily ""Clee"" Chouard",42871,861,2 +81716,Old Man #1,32690,108028,12 +81717,Frau Kleedörfer,8371,36786,7 +81718,Ishimara,18722,553448,48 +81719,,110001,1382334,25 +81720,,161299,33810,4 +81721,Onome,404459,1665246,3 +81722,Un finanziere,56068,543561,10 +81723,Lord James Walderhurst,169782,3900,4 +81724,Prof. Nugent (as Michael J. Cutt),40146,61287,0 +81725,The Waiter,53407,88653,12 +81726,Fred P. Willis,150712,12147,0 +81727,Jessica's Mother,56596,104976,14 +81728,Suze,370178,60003,5 +81729,CIA Briefer,31018,18999,11 +81730,Park,1640,18307,17 +81731,Tyrone,377587,11827,7 +81732,Shepherd Book,16320,74570,8 +81733,Tristan Taylor,366170,1221098,5 +81734,Remedial Trainee,122271,183799,9 +81735,,419522,1853724,23 +81736,Youngest Morello Daughter,146243,1332839,12 +81737,"(segment ""Miminashi Hôichi no hanashi"") (as Toshirô Yagi)",30959,552663,46 +81738,Politibetjent,356326,1874734,24 +81739,Police officer driving van,117506,1357559,15 +81740,Mr. Mayhew,86049,595426,5 +81741,Mère Angélique 1,65898,27980,10 +81742,Tom O'Folliard,11577,64065,25 +81743,Avie Lee Parton,426670,1546496,2 +81744,Notaire,13739,1525266,8 +81745,Dr. Murray Kaplan,26142,25503,3 +81746,Oscar Robineau,44522,54382,13 +81747,Loulou Dupin,77673,11214,0 +81748,Himself,13516,939075,7 +81749,Betta,182415,1853089,11 +81750,Tammy,62492,83873,12 +81751,Lionel Merble,24559,40191,10 +81752,Anne Frank (voice),222935,1672075,29 +81753,Marcy McGuire,43172,1027113,3 +81754,Lilly,388862,77622,8 +81755,Police agent (uncredited),37628,1368261,23 +81756,Bear,63762,78962,5 +81757,Cable Bank Manager,1969,975424,16 +81758,Dancer at Gala,37710,555712,49 +81759,Joan Hudson,360626,40445,3 +81760,Tom Stark,1717,18796,9 +81761,himself,254446,33684,0 +81762,Dart-In-Again,130062,1016035,0 +81763,Miss Harper: Staff of St. Swithin's,83015,153019,7 +81764,Charlee Turkle,95140,217739,10 +81765,Spencer,407448,1863669,34 +81766,Ida,164419,148334,0 +81767,Robin / Damian Wayne (voice),411802,1361576,5 +81768,Queensbridge Bodega Man,8194,1681737,13 +81769,Burly Trucker,24619,9567,12 +81770,Cheryl,32395,131391,13 +81771,Twitching abbott,46114,1134506,11 +81772,Maria,327231,104975,3 +81773,Passenger,29805,1738562,37 +81774,Mrs. Eisenstein,15640,45699,16 +81775,Himself - Roaster,334461,57551,5 +81776,Stensund,133458,1093705,9 +81777,Faith Fitzsimmons,356486,1652362,1 +81778,Black John,100770,9899,7 +81779,Dale,205724,1217939,7 +81780,"General Thaddeus ""Thunderbolt"" Ross / The Red Hulk",1724,227,3 +81781,Dr. Jillian O'Hara,61341,232942,4 +81782,The Doctor,330770,1263126,7 +81783,Mrs. Herz,40060,19781,9 +81784,Cosme McMoon,315664,53863,3 +81785,,123025,127387,31 +81786,comandante Pacini,38310,120108,6 +81787,Tom,117629,550965,3 +81788,John Clifford,30554,1466,1 +81789,Jimmy,14459,76941,3 +81790,Boy #1 at Play (Duck),10710,1778259,35 +81791,Receptionist,84305,75330,9 +81792,Toilet Paper Man,290825,1356001,20 +81793,Crazy Driver,82485,1045389,5 +81794,Sandy Pabblem,1259,17483,6 +81795,Principal Chamudes,82631,132218,9 +81796,Viago's Victim,246741,1399816,25 +81797,Tanya,13972,5578,10 +81798,Hubbard,322460,11131,10 +81799,Bar Patron at The Maples,74525,14454,18 +81800,Dame in Kutsche,266044,1822969,19 +81801,Mr. Tibbs,267935,28847,10 +81802,Gordon,59231,3087,2 +81803,Johan 8 jaar,159514,1344887,14 +81804,Wasserbauer,6079,33938,14 +81805,Kyle Broflovski (voice),16486,34518,2 +81806,Molvina MacGregor,44631,12969,4 +81807,Cai Tingkai,25626,66761,45 +81808,Dr. Pete Graham,50669,51764,0 +81809,Natsue's husband,77057,581148,6 +81810,,375742,1364693,16 +81811,,25626,57607,35 +81812,Saffron,10748,1814901,25 +81813,Himself,83587,939534,10 +81814,Dancer,86520,142407,5 +81815,Arzt,27637,1051596,9 +81816,Anselmo,82265,105161,9 +81817,Lyn,85265,1215107,5 +81818,Patsy,6023,1446943,17 +81819,Tipi,20160,148046,12 +81820,Himself,191502,17835,5 +81821,Lise,5206,1562,12 +81822,Omura's Companion,616,953738,15 +81823,Nandini,49028,223167,4 +81824,Herb Brooks,14292,6856,0 +81825,Young Gisella,19338,1441204,12 +81826,Fredrik Bergman,41764,225857,7 +81827,Jake Riles,369406,1522920,3 +81828,ER Doctor,13680,1673228,14 +81829,Belle Crippen,106020,87513,1 +81830,Prime Minister's Bodyguard,177677,77837,69 +81831,Bathtub Patient,48231,38371,12 +81832,Shawn,155341,1261274,7 +81833,Sinuous Hallow,312831,1532258,5 +81834,Terry Perkins,448847,10779,4 +81835,"Madame Chapelin-Tourvel, die Mutter",124013,586824,9 +81836,Lisa,347630,113867,5 +81837,Himself,374460,41379,25 +81838,Shithead,15414,3544,7 +81839,,1421,1723445,34 +81840,Ms. Lawson,4953,10205,8 +81841,Captain Wentworth,13279,74573,8 +81842,Police Officer #1,380124,1019097,15 +81843,Teruko Kitao,72933,1053788,7 +81844,Mr. Bite,51800,150332,8 +81845,Furniture Deliver 2,427680,1758545,14 +81846,Annie Greer,26502,80469,1 +81847,Cleo,360605,1257205,1 +81848,Telma,120922,1902242,9 +81849,Nate,285869,84627,6 +81850,Pablo,228198,583645,9 +81851,Police Officer,268920,1493736,106 +81852,Dino Chalmers,215928,6886,0 +81853,Tree Hungry,375366,1886318,30 +81854,Gord,68684,1849988,13 +81855,Nancy Clarke,122677,1427882,15 +81856,Deputy Sheriff Thomas Jefferson Geronimo III,31128,10671,0 +81857,Lou Gazzo,56264,31367,7 +81858,Gibson,332488,224522,6 +81859,Mr. Colleoni,62728,1333,0 +81860,,73208,109200,6 +81861,Inspector Walker,40387,216245,5 +81862,Mildred Pierce,202241,204,0 +81863,Secretary to the gym,47959,1260881,31 +81864,,74674,1445119,21 +81865,Rev. Charles Moss,44087,85345,7 +81866,Tyrone,122928,17051,0 +81867,Manuel,20361,14246,0 +81868,Lucky Luke,11175,15140,0 +81869,Hector,112130,1159,2 +81870,Ian Stuart,128841,1088034,5 +81871,Yogi Hebadaddy,19809,85201,4 +81872,Aunt Hanife,336804,1595077,11 +81873,Ama de Don Alonso Quijano,145481,37588,8 +81874,William Davis,425774,1211262,51 +81875,Caroline Kipling,25143,2109,2 +81876,Dad,424661,104617,13 +81877,Showgirl (uncredited),242631,861,25 +81878,Lenore Brent,33673,11165,1 +81879,Guard,191850,1533266,4 +81880,Shell Septinos,122662,84507,2 +81881,A Girl,38770,568361,20 +81882,Miner Medic,426670,1716520,23 +81883,Michael,352960,169244,3 +81884,Kim,78177,169316,9 +81885,Sherrif Boyd,79550,52415,3 +81886,Min-ji,214209,994248,6 +81887,Charles,336811,20672,4 +81888,Pat Flynn,82191,107729,11 +81889,Lydia Troyler,289225,167110,6 +81890,Period-Guilt Ridden Woman,293452,1511921,12 +81891,Orsini,6935,51505,13 +81892,Christian,425591,111518,4 +81893,Waitress,84355,1190267,4 +81894,Le commissaire,64944,572238,4 +81895,Maria Wislack,99567,1221907,2 +81896,Cora Simon,53792,148837,2 +81897,Kate Barnes,333352,1584776,15 +81898,Seacrest,63273,156011,6 +81899,Mary Kenny,51571,17755,4 +81900,Specialty dancer,3023,1580383,11 +81901,Finbow,84352,189309,10 +81902,Artur,57209,225685,6 +81903,Mounia,64383,23383,4 +81904,British Delegate,15371,83932,16 +81905,Amparo,335053,1143886,10 +81906,Moreton,45729,71520,11 +81907,,44716,1442883,37 +81908,Bror til C.O. Lind,77922,568921,10 +81909,Mr. White,206647,2244,10 +81910,Commander Tokyo Joe,256962,97552,31 +81911,Leslie Bullard,155724,86310,2 +81912,Vance,45211,32679,8 +81913,Karan,20493,86224,0 +81914,Naga the Serpent,125513,1462944,6 +81915,Spike Moran,53576,32437,6 +81916,Dancer,11172,1781193,44 +81917,Fanias vader,319179,1006181,8 +81918,Agafia Mikhailovna,96724,86048,32 +81919,Kremlin Subcellar Hallway Guard,56292,64674,15 +81920,Upscale Party Guest (uncredited),213681,1771608,76 +81921,Mildreds Freund,145244,105337,12 +81922,Mooleiche 1,313896,19927,7 +81923,Lilly,7515,52852,11 +81924,Norman,237584,13240,3 +81925,,16017,1444467,6 +81926,Jungle Julia,1991,20493,4 +81927,Harry,105551,90380,2 +81928,Boy in Wheelchair,16151,79712,25 +81929,Binj,24424,91602,6 +81930,Misun,86266,1542417,3 +81931,le second ministre,5590,38903,11 +81932,Noreen,6963,15250,2 +81933,Charuseela,353533,85883,2 +81934,Freddy,48281,87778,8 +81935,Keffers,42188,117654,16 +81936,Steve,24632,64304,2 +81937,Helen Wick,245891,18354,4 +81938,Admiral James Norrington,285,1709,7 +81939,,205349,1082124,12 +81940,Jesse Arista,227348,1746117,0 +81941,Marmelade,317723,1413105,6 +81942,Diener,225244,78,6 +81943,,200117,132198,6 +81944,Subject #42,29151,13936,19 +81945,Ricky Coogan,17796,18355,2 +81946,Ravishankar,330418,1489946,14 +81947,Senior Army Officer,101783,105442,5 +81948,Janie Howe,33472,16759,6 +81949,Himself,235199,1270475,0 +81950,Hsia,11960,124992,4 +81951,Pete,126083,105455,8 +81952,Officer Walnum,296523,1824347,10 +81953,Vincent,59507,81054,3 +81954,Christine,9812,59449,1 +81955,Boy at Dinner Table (uncredited),52440,213835,27 +81956,Herself,97707,583514,1 +81957,Stig O'Hara,32694,80484,2 +81958,"Charley, Merrick's Butler",45679,133440,9 +81959,Becca,305342,1003082,6 +81960,Camilla Bedford,94671,1518,7 +81961,Aunt Grizelda (voice),73723,159729,13 +81962,,127105,89107,5 +81963,Storyboard Artist,14543,1782929,9 +81964,himself,20301,167927,10 +81965,Judge,186869,1171577,10 +81966,Direttore d'assicurazione,38285,100937,10 +81967,Rusher of Din - Woman on Beach,36751,116119,17 +81968,Mugger,23169,1539168,15 +81969,Policeman,42709,927864,20 +81970,Luisa,251555,1017115,8 +81971,Alicia Bardery,334299,118178,1 +81972,Referee #3 (Liverpool),312221,1746882,35 +81973,,33201,107398,7 +81974,Anne Tillman,62190,98234,2 +81975,Samurai Ensemble,616,1593816,34 +81976,,88273,1353422,36 +81977,Colonel Galcon,118236,10018,1 +81978,Kieko,115283,82791,7 +81979,Saskia,345438,87346,10 +81980,Himself,84318,1084972,5 +81981,Camilla,120259,103087,10 +81982,Sam Wong - Marie's Houseboy (uncredited),26323,109677,23 +81983,Lt. Johnson (voice),16873,1179997,25 +81984,Vijayalakshmi,49074,582186,8 +81985,NobleMan,205584,1535055,28 +81986,Jurko Bohun,31273,107864,1 +81987,,110001,1508875,36 +81988,,279096,133357,34 +81989,Jeanine Breemer,93676,119592,7 +81990,Mr. Griswald,27973,30279,14 +81991,Vernon Presley,23178,35090,4 +81992,,66897,11537,11 +81993,Spawn (voice),295627,1368958,4 +81994,Vanessa's Friend #2,7326,1222953,30 +81995,Woman at Opera (uncredited),43522,977271,23 +81996,Andy,31919,518,4 +81997,Amanda Mack,42703,40445,5 +81998,Rachel Mott,266314,4778,8 +81999,Marti Brewster,15213,66896,20 +82000,Young Nagase,127560,1380499,6 +82001,Flight Attendant,222935,1465967,14 +82002,Ghast (voice),408220,60279,10 +82003,Coffee Truck Barista,157829,1791283,16 +82004,Ines,186630,1168940,7 +82005,Kerstin,157919,78324,1 +82006,,384373,1180371,3 +82007,Sam,178809,7431,1 +82008,Jina,177112,175248,3 +82009,Linda,81182,183780,2 +82010,Maresciallo D'Avanzo,379873,1879764,23 +82011,Carl,440777,1185424,27 +82012,Loan shark,45303,135840,8 +82013,Melanie Porter,13493,66896,2 +82014,Parthenon Janitor,32657,1678626,65 +82015,Mombay,89086,1467479,21 +82016,Gloved Man (Edward Hornick),34650,30847,9 +82017,профессор Филипп Преображенский,43680,1190350,0 +82018,Chief Irving Figgis,259695,2955,6 +82019,Jenny,24939,63661,3 +82020,Lord Charnley,38654,39053,5 +82021,Johnny Mellors,60759,25536,0 +82022,Chad,31421,1036975,4 +82023,Buddy Walling,213914,60649,6 +82024,,362154,1476994,16 +82025,Wing Commander James Forrester,116554,11275,0 +82026,Capt. Nemo,2965,29068,1 +82027,Delaney,1723,8633,7 +82028,Chris,291871,1518917,18 +82029,Babe,335970,1718148,47 +82030,,62755,1547104,8 +82031,Clinic Doctor Bangkok,49853,1648793,36 +82032,1971 Penthouse Party Guest (uncredited),4982,66684,90 +82033,Kid,339408,1622097,40 +82034,Francis Crisostomo,93511,15007,4 +82035,Clip from 'A Date with Judy' (archive footage) (uncredited),33740,95271,95 +82036,Dorotea,126415,1046996,6 +82037,Young Goat Herder,209112,1696268,127 +82038,Padre Francisco,37308,100717,8 +82039,Gabriel,306952,1272291,3 +82040,Teddy,286709,21358,13 +82041,Bernice,29136,90723,6 +82042,Tia Dalma,58,2038,11 +82043,Chinese Scientist,329865,29466,20 +82044,Bex / Becca / Rebecca,440777,1168704,0 +82045,"Griet (Mutter vom ""Teufel"")",75578,13506,4 +82046,Silas Hobbs,38602,13329,4 +82047,Citizen (uncredited),27635,19968,9 +82048,Jed Cooper,4938,30290,0 +82049,Patricia,4538,5657,4 +82050,Specialist Socinus,105077,172990,14 +82051,Giuseppe Geri,73869,73873,4 +82052,Bill Rand,116232,1050306,7 +82053,Elden,245703,60875,5 +82054,,45949,39864,8 +82055,Larry the Doorman,13680,74934,12 +82056,S'nuff Receptionist,271718,1552301,25 +82057,Lucyna Baranczak,81223,210719,2 +82058,Detective Jo Kyeong-yoon,38000,84751,1 +82059,Celia,60125,1012532,8 +82060,Kit,377428,60293,11 +82061,Ange Palardo,37645,126725,6 +82062,Muratore (uncredited),64725,1455192,20 +82063,News Reporter Milo,34729,78567,17 +82064,Ethan Wate,109491,71375,0 +82065,Ayla,81549,115008,6 +82066,Telephone Operator,67375,1420884,23 +82067,Vicar,36597,115685,13 +82068,Tom Whitman (age 70),75204,100650,2 +82069,Officer D'Agostino,14423,32897,10 +82070,Ryouta (voice),92321,1248372,3 +82071,Shili's Mother,412363,1769122,12 +82072,,14804,1901800,22 +82073,Gostun,286873,1373437,17 +82074,,76202,65683,6 +82075,Niko,269258,1844,0 +82076,Stormtrooper,9899,1152008,21 +82077,Whiskey Joe,384450,54651,3 +82078,Sum,56329,1189920,9 +82079,Kristian,336882,7742,1 +82080,Victor,84449,118911,5 +82081,,4146,25035,9 +82082,Second Gate Guard,14589,1016646,48 +82083,David,57307,1711950,12 +82084,Umpire,51890,223290,3 +82085,Bonifacio,135536,18198,0 +82086,Wolfgang Kercher,377847,17545,3 +82087,Alvaruccio,217648,1363095,8 +82088,Frau Friedrich,61035,232205,12 +82089,Charu,413882,1435699,3 +82090,Lee Tyson,14862,42515,11 +82091,Newspaperman at Water Barrel,89086,93628,27 +82092,Jessica,74549,1538936,2 +82093,Margaret Garrison,36334,97777,1 +82094,Takstellen Angestellter,8398,54850,4 +82095,Djamel,6935,51504,12 +82096,"Amy, Diane's Maid",50079,2929,4 +82097,Richard Powell,10008,19655,2 +82098,Byron Deckermensky,115616,8664,13 +82099,Policier qui joue au piano,300,4278,12 +82100,Anouk,289191,1210759,6 +82101,Young Boyd,286532,1382744,21 +82102,,266558,1377012,2 +82103,,257831,585180,16 +82104,Maggie,153161,1422379,22 +82105,Terry,76543,92876,7 +82106,Max,72875,568022,11 +82107,Lord Francis Kelton,53857,9067,3 +82108,Frans 'Spikes' Meijer,228968,1243532,4 +82109,Stuart,1691,45566,4 +82110,"Mrs. Isabella Bellam, MacFay's Housekeeper",14589,149105,9 +82111,Adolf Hitler,102155,5403,0 +82112,Sid,85009,11512,5 +82113,Bryson,271718,79082,15 +82114,Empress Chi Chi's Attendant,33343,455546,20 +82115,Piotr,370264,88219,4 +82116,Thornton,92341,4072,5 +82117,Madame Sylvia,200447,683524,12 +82118,Alikersantti Lauri Hakkarainen,55754,89511,5 +82119,Pilot,102382,205724,42 +82120,Golem 1,52369,939467,10 +82121,Louise,27102,96967,0 +82122,Dr. Harding,41505,12645,2 +82123,Sathyadev,300983,148360,0 +82124,Sheriff Fred Miller,74527,44728,2 +82125,Jeremy Kern,184098,98953,2 +82126,Marianne,61267,1128733,10 +82127,Dr. Usha,332827,1658596,14 +82128,Invitato Funerale,59040,1871296,23 +82129,Bud,108723,1446334,16 +82130,Clarence,22447,3895,0 +82131,Benny Danetta / Nino,41552,87369,6 +82132,Meinfried,75969,5860,19 +82133,,244956,123857,9 +82134,Underdog (voice),6589,11662,0 +82135,Le père d'Ana,340616,1716534,11 +82136,,347835,128191,3 +82137,Hannah,14029,99550,3 +82138,Patricia Riley,71825,5376,8 +82139,Corey,204040,19329,9 +82140,Unkar Plutt,140607,11108,15 +82141,Martha,2993,85740,9 +82142,Li,37451,21944,2 +82143,Mr. Müllerhofen,49853,5762,31 +82144,Aunt Charlotte Waring,30022,83237,9 +82145,Mr. Kingery,14164,78328,13 +82146,Sangaile's Mother,310568,1588815,2 +82147,Rachel,87952,935669,1 +82148,Sarah Wendling,38769,82412,4 +82149,Sylvain Sautral,21070,87065,4 +82150,Ricardo,300596,1460443,11 +82151,"Mr. Perlman, the Promoter",246299,30145,12 +82152,Jai Batra,33146,35069,2 +82153,Gatekeeper #3,295723,1418225,12 +82154,Juana,332872,27464,7 +82155,Vader,270024,222942,5 +82156,Jasper,9795,59311,7 +82157,Brenda Pilchard,6591,50626,6 +82158,Stéphane,61267,1276785,14 +82159,Earl of Chester,157843,1796446,21 +82160,TV Reporter,118,17354,26 +82161,John Frazier,188102,168788,6 +82162,Chuck (as David Condon),230182,120211,4 +82163,Robby Ross,42216,18364,0 +82164,Père de famille yacht,382591,1679033,24 +82165,So-yeon,19482,1334718,9 +82166,Ali,63938,148012,1 +82167,Admiral Binns,27549,1849159,13 +82168,Keating,257450,116409,10 +82169,Fausto,70666,1517159,6 +82170,Bartender (uncredited),22584,30243,34 +82171,,85317,23442,4 +82172,Jack Hall,435,6065,0 +82173,Naoko Toba,105833,108018,0 +82174,Cassandra,376579,1145979,2 +82175,Alan Palmer,27036,11128,3 +82176,Shaggy (voice),13354,16418,6 +82177,Natalia,18120,125854,1 +82178,Blasa,59117,19854,15 +82179,Doctor,46387,35759,9 +82180,Priest,356191,146434,6 +82181,Iron Patriot Fan #1,68721,1735568,73 +82182,,62363,145074,15 +82183,Manuela Palletta,419522,1879408,18 +82184,Mirror Girl,18776,129994,2 +82185,老師,265712,1521538,25 +82186,Operations Man,108282,1542577,22 +82187,Elsebeth,310602,3883,8 +82188,Bobby Sickle,342472,1485556,7 +82189,Student im Hörsaal,167424,1599272,17 +82190,Terry Dog,19528,140485,15 +82191,Tai Tau Ming / Ng Yat Ming,56329,1189921,10 +82192,Carter,266856,1221788,12 +82193,Scorch Supernova (Voice),68179,18269,0 +82194,Harry Warr,23512,146750,3 +82195,Massage Boy Nightclub,49853,1648781,23 +82196,Teta,26826,96386,5 +82197,Sonia,28741,101816,3 +82198,Maître Vaselin,246320,62535,6 +82199,Stewardess,52741,27109,11 +82200,Whore,86979,1371380,11 +82201,Chambers,9914,60417,11 +82202,Daphne,348315,1486373,13 +82203,Migrant #4,273481,1794932,34 +82204,Brigadier Ricuort,37710,79031,12 +82205,Milt Manville,163376,2314,1 +82206,Alex,224243,70815,4 +82207,Cabbie,75244,1085556,11 +82208,Herr Arslan,91628,18491,13 +82209,Herself - Storyteller,128216,1332908,2 +82210,Stevenson,26125,17202,3 +82211,Chloe,4413,37153,11 +82212,John Dillinger,56264,8349,0 +82213,Sister Consolata,95136,174254,9 +82214,Lawrence Clay 'Larry' Hall,40957,44998,4 +82215,Petr,341962,1297995,2 +82216,Proctor,49524,18248,4 +82217,Bouncer #1,333663,1589523,22 +82218,Ant,203264,74191,0 +82219,Dance Instructor,14072,1033170,5 +82220,Gøgler,76312,69012,17 +82221,Tori,84449,101071,4 +82222,Stripper,167810,1793185,29 +82223,Cindi,131903,1093934,7 +82224,Max,273610,534,3 +82225,Clel Waller,174000,2222,1 +82226,Platon Andreyevich,274991,128304,0 +82227,Airman McEvoy,53619,9109,5 +82228,Tia Zorina,42329,39002,4 +82229,Oil Co. Director Larribee,156335,14035,12 +82230,Hamnarbetare,82448,928014,15 +82231,,22701,1119034,13 +82232,Lene,73775,74756,2 +82233,Gaby,268212,5963,7 +82234,Benita,14047,1392601,25 +82235,Admr. Henry D. Wheeler,10005,12797,8 +82236,Rosa,78563,25282,3 +82237,Paul,263855,1422517,8 +82238,Princess,115109,1471363,21 +82239,Linda,29416,103784,7 +82240,Takeo Okano,31512,226827,9 +82241,Jake,32298,61400,21 +82242,,23289,3410,15 +82243,Voyageur 'Fuck off',382591,180906,31 +82244,Alex Bean,311764,591834,0 +82245,Sadahei,219233,118989,1 +82246,Fortune Teller,98125,119898,7 +82247,Faye Foss,198600,22948,5 +82248,RPG Chauffeur,202214,1033632,13 +82249,Dylan Leary,38749,8186,5 +82250,Samantha,23169,1254435,10 +82251,Ricky Lollipops,243935,28002,19 +82252,Judge Laura Burch,22803,6907,10 +82253,Shirin,253851,142213,0 +82254,Imperial Stormtrooper Ciardi,13836,1308381,21 +82255,Shunichi Okazaki,36063,135200,7 +82256,Tezcan,109671,143303,4 +82257,Ricky Baker,371645,1139349,1 +82258,Maya Wilton,417936,1384708,2 +82259,Sgt. Kolowicz,35392,4307,5 +82260,Seiji Yoshida,14087,547989,6 +82261,Hayden,324670,1508585,17 +82262,Le voisin de Simon,15712,35970,12 +82263,Cassander,1966,1244,4 +82264,Tad Harrison,184866,27993,2 +82265,Paul Delamare,369885,96413,11 +82266,Dr. John Fielding,28063,99527,0 +82267,Robert “Rusty” Charles Ryan,298,287,1 +82268,Alain,244580,22970,3 +82269,Jin,9550,43661,0 +82270,Sredoje,109587,38000,7 +82271,,35572,1662172,7 +82272,Mr Randolph,331588,8854,3 +82273,Jorge,57342,102221,6 +82274,Kate,76297,6886,0 +82275,Turner,12683,21430,7 +82276,Razoo Quin-Fee,140607,113732,31 +82277,Lucie-Maria Rommel,139862,32818,4 +82278,Dr. Rosenberg,26688,96025,20 +82279,John Roxborough,111744,42316,4 +82280,Helen,38303,9599,7 +82281,Marine,128412,1489473,2 +82282,Szocialista,86732,42077,2 +82283,Commanding General Westlake,72431,73947,13 +82284,Herself,400668,1821662,10 +82285,Salvatore Esposito,52238,52657,1 +82286,Judge Matheny,75300,14848,6 +82287,Girl in Bombay,110887,1064443,13 +82288,Mitch Negroni,73612,1392451,5 +82289,Hallway Guy (uncredited),4982,1511754,88 +82290,Jorge,347666,112901,1 +82291,Merlock,10837,1062,4 +82292,Brian,233487,1281288,9 +82293,The Head Waiter,28293,30184,12 +82294,Troy,326,77330,2 +82295,Friend who got beaten up,292625,1758597,8 +82296,Jonás,201765,34018,2 +82297,Natre's mother,17111,1279570,23 +82298,Howard Downey,107250,53376,6 +82299,The Mayor of New York,37719,13358,9 +82300,Big Hand,288980,1579770,8 +82301,Some person,45489,213465,8 +82302,James Steerforth,141640,6162,13 +82303,Major Harold Webb,333352,940459,22 +82304,Rio,273511,1194991,7 +82305,Angeliki,79728,587905,3 +82306,Madhvi Sharma,20623,85666,0 +82307,Chas Chandler,19505,1212946,5 +82308,Madre di Lorenzo,186988,1354594,10 +82309,Cassie Aisling,21533,270653,1 +82310,Ida,12575,1874,6 +82311,Johnny Jones,118948,107677,1 +82312,,58611,228152,20 +82313,Fregley,82650,111921,11 +82314,Doctor Tamura,402455,1502960,1 +82315,Violet,322922,1503247,15 +82316,Himself,105583,1082851,12 +82317,,205864,1603890,7 +82318,Vader Ramakers,277190,228327,2 +82319,le client anglais,50350,652,15 +82320,Elrond,122,1331,10 +82321,Professor Crocce,217948,5404,10 +82322,'Punch Teacher' Host,64328,83586,10 +82323,Victor Wong,270774,57054,6 +82324,Secretary,2567,177898,20 +82325,Himself,262988,26959,1 +82326,Dr. Shelly,45013,19144,6 +82327,Jonas Trumball,268321,34199,1 +82328,Todd Kidder,214756,19444,40 +82329,Antoine,161073,81054,0 +82330,Keele,74561,147,0 +82331,Debra Pemberton,47535,47615,1 +82332,Colleen McKenzie,290825,576173,1 +82333,Martin Soap,13056,6066,5 +82334,Dick Haslewood,30640,29127,2 +82335,Japanese Businessman,32577,207310,29 +82336,Eclipso,460135,111466,15 +82337,Ambient Room Tech / Troupe,19995,42288,26 +82338,Antonio Barbacane,71133,132190,0 +82339,Mutsuhiro 'The Bird' Watanabe,227306,1391420,3 +82340,Father Burke,43522,22603,12 +82341,Joshua,13258,87097,0 +82342,Larry Guthrie,84575,15897,0 +82343,Paloma,213983,1184370,0 +82344,"""Zupa""",382155,588611,8 +82345,Liam,340584,15033,3 +82346,Joanna,299780,83437,3 +82347,Douglas,29108,1758327,8 +82348,Max Fabian,61430,96284,2 +82349,Joe Bright,417678,85505,6 +82350,Bus Passenger (uncredited),2288,1402625,10 +82351,Jessica,84228,184560,2 +82352,Jane Whitley,15639,154332,7 +82353,Alex,8329,54521,3 +82354,Kazuki Ogura,392882,1411588,7 +82355,San Francisco Hobo,10204,60949,23 +82356,Salvatore Maranzano,33357,9872,4 +82357,Erica Barry,6964,3092,1 +82358,Shui,98586,1025629,4 +82359,König,313896,7830,3 +82360,Darius / Vinny the Phone / Capt. Starfunkle / Spider / Wedgie Bergen #1 / Chad / Card (voice),136799,64151,37 +82361,Chacellor,70874,24373,2 +82362,Makeup Girl,15671,978906,9 +82363,Cop,198062,59841,8 +82364,Mrs. Murray,64130,54679,4 +82365,Zuchthäusler Puhlke,10626,1305589,11 +82366,John,340190,116263,3 +82367,Inez Villanueva,52395,175628,10 +82368,Prisoner K,26656,95948,5 +82369,Police Chief,117212,30907,5 +82370,USS Corman Sonar Tech #2,52454,1630272,22 +82371,Ada Ford,1942,20127,3 +82372,Carrie,344147,1476095,9 +82373,Himself,72711,1147940,6 +82374,Sarah Lincoln,43806,99329,22 +82375,Baby Jack,55604,1624226,26 +82376,Fry,226672,212174,10 +82377,Colette McVeigh,84336,127558,0 +82378,Winnie Gilmore,24150,108700,38 +82379,,25626,143602,41 +82380,Hildegard von Bingen,50722,23378,0 +82381,Prison Guard,171446,137405,21 +82382,Sattar,266102,1234388,7 +82383,,109587,1053859,17 +82384,Shiori Uranai / Little Girl,36212,100765,4 +82385,Velma Brown,239566,1457277,51 +82386,Nico,128412,1117981,0 +82387,Moa,35304,70092,0 +82388,Cab Driver,79316,1285380,8 +82389,Bente,23289,3880,2 +82390,Daniel Ryan,425774,236851,1 +82391,Петря,20879,86710,4 +82392,Gayetri Sachdeva,20623,110198,3 +82393,Саша,35428,86862,1 +82394,Little Arthur,39013,54711,2 +82395,Martin Fox,23964,15196,4 +82396,Celia,1482,14722,4 +82397,Himself,22559,2710,2 +82398,Natari,62472,1282392,24 +82399,Restaurant Patron (uncredited),40028,97753,20 +82400,Cowboy,19912,94429,9 +82401,'Red' Hairstylist,47342,14784,16 +82402,The Werewolf,44545,83915,0 +82403,Captain Frank Worsely,328429,82945,4 +82404,Chief Fang Changfeng,60568,994384,8 +82405,Mrs. Kane,106635,1176930,8 +82406,Ken Ho,1640,18296,21 +82407,birds,106112,557239,2 +82408,,21057,1221143,13 +82409,FBI Interrogation Officer,1164,49832,42 +82410,Ho Ka Yee,19528,1174697,9 +82411,Arthur Spiderwick,8204,11064,6 +82412,Judge,357130,147117,7 +82413,Flynn,52452,29459,1 +82414,Casino Patron 1 (uncredited),354979,1480060,80 +82415,,15776,1565321,16 +82416,Himself,245394,10980,12 +82417,Uncle Nino,32588,33153,2 +82418,Additional Voices (voice),328111,61983,18 +82419,Jacques Rival,118536,29137,8 +82420,Capt. Munsey,28297,7668,1 +82421,Church Girl,921,188623,45 +82422,Laertes,20017,23694,1 +82423,Receptionist (uncredited),36634,29814,23 +82424,Lt. Dixon,1640,65827,15 +82425,Aunt Josephine,27966,240073,4 +82426,Erica,348631,60613,13 +82427,Mr. Moore,73873,73288,12 +82428,Rina,170548,9875,3 +82429,Carla Formigoni,82083,10476,5 +82430,Manolo,14881,84240,12 +82431,Kim Mi-Sung,83754,1029192,6 +82432,Ettore,49712,1165,5 +82433,Marco,121516,105323,5 +82434,Sgt. Darius P. Posey,32634,14966,4 +82435,Sarah Collins,23719,6714,3 +82436,,229353,942808,4 +82437,Ed Turner,28730,925,12 +82438,Leonhard Seif,48231,1089485,19 +82439,Mailman,41759,12772,9 +82440,Eric Stapleton,50838,67843,5 +82441,Davey,86274,145143,1 +82442,Mayor,345438,211020,12 +82443,Jen,14843,20387,1 +82444,Shamus,305932,99219,9 +82445,Minx,7459,1050936,15 +82446,Passing Nurse,44945,1319235,20 +82447,Pete Hawks,250332,13825,12 +82448,Abbey,309024,1074512,7 +82449,Thomas,75233,574243,1 +82450,Al B (as Asher D),19166,61364,6 +82451,Наиль,336484,587623,4 +82452,Natalie Merridew Seldon,38437,117414,5 +82453,Frieda Dorsett,27138,118940,4 +82454,Jack's mother,108822,1371735,4 +82455,Damas Dancer #1,268920,1754427,35 +82456,Father Stewart,384594,2320,4 +82457,"Neerja ""Neeru""",41252,87773,0 +82458,Iris Parker,159128,75330,1 +82459,Infant,67375,1467459,40 +82460,"Cherry Red, Hot Club Girl (uncredited)",323675,1769822,67 +82461,Karen,8988,1741948,20 +82462,Chuppa,39356,939388,13 +82463,Sub Commander,17911,1871192,17 +82464,Sam Conte,369406,1538441,2 +82465,,340961,1211302,11 +82466,Princess Grace,26643,1183968,17 +82467,Detective,23107,30160,13 +82468,'Silny',278867,481162,6 +82469,Claire Lyons,34482,112471,2 +82470,Marcello,356757,1501799,1 +82471,Senior Inspector,39347,87713,7 +82472,Stix,21554,70759,0 +82473,Magalie,77338,219708,2 +82474,Creed,216580,937119,4 +82475,Beauperthuis,99875,1021830,3 +82476,The Kid,40649,133665,2 +82477,Sara Faye,241739,77803,2 +82478,Jacy Woods,6980,51752,3 +82479,Oscar McFarrey,126418,120816,9 +82480,Letty,168259,17647,3 +82481,Attorney Markham,103432,151713,22 +82482,Le chef des chasseurs,377853,16873,8 +82483,Brigadiere Silvestri,94809,1019919,15 +82484,Tripp,6877,10297,0 +82485,Danielle Williams,302042,42374,3 +82486,Violet 'Murph' Murphy,97910,89528,10 +82487,Granddaughter,41967,1529596,6 +82488,Doctor,280690,226769,12 +82489,Helmut Thiele,68752,5233,4 +82490,Grauman's Chinese Theater Extra,40034,3138,12 +82491,Kerrigan,15797,18071,1 +82492,Mortimer,10915,4661,12 +82493,Ben McGewan,14809,57599,0 +82494,College Buddy,32657,1678979,73 +82495,Kit Li,18665,1336,0 +82496,Fred - Stable Groom,46586,563071,18 +82497,Vader Boecke,47231,138207,3 +82498,Confused Boy,112558,95681,6 +82499,,85658,6818,2 +82500,Sidney Reilly,137587,4783,0 +82501,Helge,75969,52722,21 +82502,Laura de Fabritiis,39436,5684,4 +82503,"Rinkman, space pirate leader",154371,30553,8 +82504,Dott. Orimbelli,41610,128141,4 +82505,Jamie McPheeters,96089,6856,2 +82506,"Dick Grayson, aka Robin",125249,30277,1 +82507,Jaime,325385,85148,2 +82508,Amber,210047,113734,5 +82509,Oshizu,73043,77678,5 +82510,Helicopter Pilot,40466,1760119,14 +82511,Extra (uncredited),49559,577431,10 +82512,Gas Station Attendant,71996,162172,10 +82513,Puya,83761,677707,1 +82514,Gwen,88075,14576,5 +82515,Le gouverneur,35026,35527,6 +82516,Shelly's Sister,18633,87229,3 +82517,Claudio,325690,1024806,2 +82518,Gang Leader,110887,102327,5 +82519,T-Money,340275,1531599,36 +82520,Santana,127702,96429,1 +82521,The Great McGonigle / Squire Cribbs in 'The Drunkard',43688,13954,1 +82522,Stephanie Arcel,184341,6913,3 +82523,Brigadiere Saporito del carcere di Sagunto,73827,544213,9 +82524,María,120303,940934,4 +82525,Punk Girl,320588,1457893,38 +82526,Count von Holstein,3478,27166,7 +82527,The Blind Man,300669,32747,3 +82528,Clive,153652,14372,5 +82529,Dudù,58404,37583,0 +82530,,362617,1143950,1 +82531,Doctor Mendoveko,48333,42137,5 +82532,Joe Wershba,3291,3223,9 +82533,Mrs. Lam,26005,130501,3 +82534,Sigyn,328032,50683,5 +82535,Gardener,15371,618,12 +82536,Julian,384021,1679772,5 +82537,The Voice of Pilgrim / Kermit's Mom (voice),15909,34985,7 +82538,Admr. Frank Pendleton,24351,27659,6 +82539,SP Abha Mathur,375199,77234,0 +82540,Ruby,22020,1207154,13 +82541,Maria van Dungen,348320,1054639,31 +82542,Vizier,174645,1155281,3 +82543,Vice-Admiral,217923,1436161,22 +82544,Mrs. Deluca,440597,6681,2 +82545,Ernesto,57342,127016,3 +82546,Nog Hong Fah,118139,100243,2 +82547,A Lieutenant of Police,37368,96973,2 +82548,Aliens (voice),10193,7882,25 +82549,Jeremy Perrin,40028,98137,3 +82550,Yale Stafford,285270,1367907,13 +82551,,63414,1302214,12 +82552,,105760,2369,2 +82553,Mario,266030,1319778,3 +82554,Jimmy Wakely,357529,1108912,1 +82555,Avni,285803,37233,2 +82556,Elijah C. Skuggs,17796,1811,3 +82557,Shanghai Boy,269173,1388902,17 +82558,Senator,177677,24247,17 +82559,Death-Head,284564,1238,14 +82560,Gast aus Vietnam,2241,32446,14 +82561,,56666,35819,8 +82562,domestico,165159,101196,10 +82563,Hospital Doctor,43045,1053303,6 +82564,Tina,7445,33430,15 +82565,Ruslan,82737,236758,5 +82566,Marie-Jeanne,55370,38649,15 +82567,Melinda,142106,1179850,11 +82568,Eszter,17780,82360,4 +82569,Don McKay,35689,19159,0 +82570,Liz Silver,156597,108887,7 +82571,Lorraine,71139,17352,11 +82572,Dr Stevens,204255,47943,8 +82573,Honest Mike,147876,128401,8 +82574,Greenie Girl,14123,1446419,29 +82575,Boy,11656,1192603,7 +82576,Christian Nelson,57680,59222,1 +82577,Hunting Zombie,82654,102742,17 +82578,Siberia,60193,223966,3 +82579,Pierre,10475,35077,4 +82580,Gregory Underwood,29108,97884,0 +82581,Johnny Nyle,109018,39603,4 +82582,Jill,177085,47757,2 +82583,James A. Franklin,78265,10161,3 +82584,,18729,82345,4 +82585,"Tortellini, der Hahn",78694,558819,7 +82586,TV Executive,64328,395517,31 +82587,Sarah Goldberg,452142,1796104,14 +82588,Lt. Cmdr. Philip Francis Queeg,10178,4110,0 +82589,Chauffeur,28421,30136,11 +82590,Cab Driver,9779,55788,32 +82591,,79025,120637,4 +82592,Giles,18044,79346,8 +82593,Jean Morris,28452,100855,11 +82594,Troublegum Crew Member - Benson,198277,54605,28 +82595,Dead Girl on Beach,199575,1438879,27 +82596,Luke,58428,60846,1 +82597,Governor's Wife,169298,1333917,15 +82598,2nd Detective,29805,1229320,48 +82599,,56095,1168161,3 +82600,Ryan Pierce,417870,35705,0 +82601,Blagoje Marijanović 'Moša',255647,226140,2 +82602,Prince Jaromír / Prince Jaroslav,85628,55729,1 +82603,Luis,54236,231170,0 +82604,Chiquita (as Movita Casteneda),28304,939707,14 +82605,Vet,34672,100874,12 +82606,Elias,44716,230034,4 +82607,Fiona,244458,59620,1 +82608,Lester March,41028,3663,0 +82609,Federico García Lorca,31299,31805,0 +82610,Bonatzi,128900,47151,11 +82611,Yusuf,37586,98834,7 +82612,L'aveugle (voice),22504,32090,6 +82613,Nicolina,179826,1291692,16 +82614,Varunn,422603,1699989,3 +82615,Serveuse perroquet,61991,55925,10 +82616,Sara Jean,28303,1676901,10 +82617,Ninja,92496,18702,43 +82618,Train Driver,16151,79698,10 +82619,Footman,28421,1278060,48 +82620,Tim Hutchinson,38654,1830429,8 +82621,,42501,104101,14 +82622,Lindsay Porter,14432,76875,3 +82623,Tony Stark / Iron Man (voice),169934,9708,1 +82624,Captain East,156711,195675,7 +82625,Candidat,77338,544669,23 +82626,Tuktirey of the Sully Family,76600,1895788,11 +82627,Charlie Fineman,2355,19292,0 +82628,Bjarke,48791,121556,17 +82629,Gene Giannini,59230,522,2 +82630,Bernie Cohen,339419,208519,3 +82631,Narrator,36247,145927,6 +82632,Himself,266782,3198,9 +82633,,146970,1125205,6 +82634,Potro,18120,1050908,6 +82635,Tony Zacchia 15 ans,37645,83798,37 +82636,E-Bay,102668,179051,13 +82637,Heraldo,7343,52534,3 +82638,Tino,154441,1086110,0 +82639,Himself,44211,90141,0 +82640,,47448,1796605,22 +82641,Laura Chapman,435,4730,2 +82642,Mammy,1818,3514,13 +82643,,33003,1006063,0 +82644,Wordsworth,5183,20959,3 +82645,Patsy Ramsey Auditionee / Herself,430826,1891535,46 +82646,Max,379019,52722,2 +82647,Dr. Neville,12783,3568,10 +82648,JC,41578,3036,1 +82649,Loi / FM,323968,1542136,3 +82650,Celeste,44593,59090,9 +82651,Lexi,33570,110908,1 +82652,Martin Barrow,72847,30847,5 +82653,Susy Buchan,128216,1242127,23 +82654,Latosz,133521,1120449,4 +82655,Virginia,66925,564323,2 +82656,Maradia,150223,934996,11 +82657,Detective,14142,84900,13 +82658,Elma Turner,5552,44079,2 +82659,Ned Larwin,281215,52995,7 +82660,Old Weird Harold,15045,77800,5 +82661,Father,36247,1135825,3 +82662,,31275,178780,21 +82663,Specialty,80941,92900,15 +82664,Eliane Richter,8888,680,1 +82665,Jake Eaves,53459,1252873,6 +82666,Charlie Hammond,36519,100763,5 +82667,Pop Penny,126550,14579,5 +82668,,293654,1288112,13 +82669,Pirate,88641,20212,0 +82670,Davy,130593,15498,2 +82671,Max Lieberman,18684,18870,8 +82672,Bellemonde,121401,1209983,7 +82673,Man (Thug),335970,1718149,48 +82674,Capt. Martin Jenkins,5289,15319,3 +82675,Daniel,235046,187919,2 +82676,Extra (uncredited),1116,1896900,79 +82677,Horny Rob Becker,75090,225377,15 +82678,Middle-aged man at bath,105210,554233,13 +82679,Mark,39800,1414536,10 +82680,Female in Audience,239566,1457280,52 +82681,Herself,76493,19537,3 +82682,Boat Tour Guide (uncredited),87612,17759,8 +82683,Stone,5748,45615,2 +82684,Tom Howland,284293,35236,5 +82685,Melinda,46972,60700,9 +82686,Esther,57829,1886756,10 +82687,Ken,59962,1048580,5 +82688,Brian Piccolo,18047,3085,0 +82689,Samantha Jackson,214756,71070,2 +82690,Detective Chang,57100,1089570,8 +82691,Colin,300690,108919,2 +82692,Deacon-byun,25597,93999,4 +82693,Mrs. Fauvelet,12513,72593,6 +82694,Collier,113525,104340,6 +82695,Himself,1278,16350,5 +82696,Furtlemertle,413232,12153,32 +82697,Goh,50108,1089596,8 +82698,Black Bill,8619,1077823,24 +82699,Dr. Philip K. Decker,20481,224,2 +82700,Le roi de Norvège,32390,21170,5 +82701,"Johnny Morrison - Lt.Cmdr., ret.",16090,30510,0 +82702,Mylan Whitfield,21029,14852,11 +82703,,219666,1163091,3 +82704,"Françoise, Gogol's Housekeeper",28261,87699,8 +82705,Ishwarya,69635,120429,2 +82706,Cameraman,347031,1412258,8 +82707,Colonel Seng,28263,1886628,9 +82708,Peter Shirley,38770,7384,11 +82709,Simon / El Enano / Tiny,28710,995614,8 +82710,'Spade' Allen,32716,63383,4 +82711,Grace,17622,16850,3 +82712,Convict (uncredited),15794,1074209,46 +82713,Billy Coyle,55448,4691,8 +82714,"Chang-soo Shin, criminal",10103,63444,6 +82715,Calvin,179154,208357,15 +82716,Mrs.Harcourt (uncredited),36874,1086710,5 +82717,,334175,1449355,4 +82718,George (voice),126319,17039,33 +82719,Abortion Clinic,292625,1758594,5 +82720,Pierre,64481,23670,2 +82721,Dr. Hardy,121848,2930,3 +82722,Cynthia,84340,109869,5 +82723,The Flash (voice),411802,77293,13 +82724,Scotsman,45938,8223,9 +82725,Armful watchman at Rome,199463,34769,7 +82726,Marc Brisset,61361,2970,5 +82727,Himself,61487,1415262,1 +82728,Number Six / Shelly Godfrey,105077,74423,11 +82729,John Tollerman,290555,230,4 +82730,Kurt,54715,16841,5 +82731,Valet,263115,1116011,70 +82732,Grace Remington,174594,587953,0 +82733,Physicist #1,266856,1503902,20 +82734,Parole Officer,24978,92945,10 +82735,Carmine Coltello,32080,954144,9 +82736,,264454,1309622,4 +82737,Jin-young's husband,21442,231478,6 +82738,Police Captain (uncredited),80032,112935,10 +82739,Robert Hoffman,51581,58368,6 +82740,Wonder Woman / Diana Prince,161620,104791,0 +82741,Ex-substitute Teacher,25053,43672,11 +82742,Jang Hyo-seung,128111,1244822,0 +82743,Bufo (voice),116711,1009740,8 +82744,T-1000,65595,418,3 +82745,Little Anthony,243935,9224,26 +82746,The Terminator,65595,1100,0 +82747,Ammaji,330431,150220,2 +82748,Sharak / Kodo / Podo / Ruh (voice),27549,15831,21 +82749,,327225,1431528,5 +82750,Margaret,75622,1036827,14 +82751,Sara Braden,176143,100779,4 +82752,Guillaume,274483,1139801,10 +82753,Sergey,18070,93719,7 +82754,Oberon,182129,385,6 +82755,Katie Rogers,15613,42335,7 +82756,Oliver,49038,1038110,6 +82757,Giacomo,38286,120025,2 +82758,Emily,10320,84247,7 +82759,Hazleton,33343,1188782,12 +82760,Pa,51442,522,0 +82761,The Pope,102841,1196402,23 +82762,Katya,332411,1610300,7 +82763,Sheriff,72032,5816,7 +82764,Clarice Ferguson / Blink,127585,64439,17 +82765,Max Steiner,280004,1025523,16 +82766,Hillary Clinton,391995,1375247,2 +82767,Bolton,335450,1345406,7 +82768,Marcel Caron,57866,2437,3 +82769,Journalist,6076,30726,15 +82770,Stephen Holmes,148031,52995,4 +82771,Eric Wood,86241,30629,7 +82772,King Hyperion,37958,2295,0 +82773,Jogger - Dayplayer,320588,1538585,42 +82774,Lyle,102444,40122,8 +82775,Elmerada de Leon,223497,34746,2 +82776,,183258,30433,9 +82777,Marco Mullier,781,1086,3 +82778,Fletcher Lynd Seagull,56150,33104,4 +82779,Pecheur,469172,1506081,8 +82780,Doctor,192990,1173407,12 +82781,Mina,246127,584542,6 +82782,Umibozu,37213,4990,4 +82783,Bruno,327383,224733,8 +82784,Himself,15258,194770,98 +82785,Erin,2017,63,1 +82786,Secretary (uncredited),102144,114956,10 +82787,Barbone,58013,76344,13 +82788,Natalie,39824,1866645,19 +82789,Body painted partygoer,33642,45317,6 +82790,Campfire Mom,44436,130843,2 +82791,Fingerprint Man,127812,30162,32 +82792,Hobo,43895,9091,3 +82793,Mr. Parfitt,356500,1041697,7 +82794,Leo,23169,1386512,11 +82795,Sara Matthews,49950,96625,0 +82796,Reaver,263115,126841,24 +82797,Hromotluk,84030,1425594,14 +82798,,127257,1084298,0 +82799,Monsieur Joue: Staff of Nutbourne,83015,983468,11 +82800,Kjelketrekker,20372,1270304,20 +82801,Clarence,27740,585032,12 +82802,Cooper,85350,1467940,42 +82803,Interviewer,17654,1029046,8 +82804,Shivani,61400,81927,4 +82805,Reverend Muldaur,38602,1225712,9 +82806,Lu Su,12289,958556,10 +82807,Salim,140485,1112588,1 +82808,,74154,586625,9 +82809,Flynn Carsen,14207,13526,0 +82810,Cordellera Bar Waiter (uncredited),112885,1016595,5 +82811,William Methwold,121598,4391,6 +82812,Kicking Wing,335970,33527,4 +82813,Barb (voice),109451,109869,8 +82814,Fatty,25425,116351,2 +82815,The Monster,3145,24342,10 +82816,Il padrone dell' osteria,117913,950131,4 +82817,Wrather,18117,29092,2 +82818,,239534,238939,0 +82819,Raša,127901,1109317,0 +82820,Dr. Oswald,414610,1267466,9 +82821,Professor,47410,138882,13 +82822,Irène,12422,20577,4 +82823,Billy's Mother,24559,12430,18 +82824,Asobi nakama (Friend),28268,1896454,10 +82825,Carl,351065,957076,10 +82826,,104374,1619184,8 +82827,Rodgers,41599,4973,8 +82828,Thatcher,149793,120476,43 +82829,Jasmine Mayhew (2001),51828,1814921,21 +82830,принцесса Мелисента,65089,1600856,0 +82831,Teddy,295723,1020684,16 +82832,Nerd (Wedgie),214756,1464845,70 +82833,Margarita,25376,1331816,29 +82834,,29568,1808832,5 +82835,Winston Cooke Sr.,169068,6914,11 +82836,Barbara,86643,9139,12 +82837,Reynaldo,22897,6321,19 +82838,Chambermaid,1394,150826,4 +82839,Matyas / Thomas,48431,5442,0 +82840,Burke,25643,6383,0 +82841,Sugarman's Secretary,2355,1089179,28 +82842,Amy,71139,19275,2 +82843,Soldier #3,80410,141774,14 +82844,Ernesto,59249,112973,4 +82845,Mercedes Man,107146,1406838,10 +82846,Judy Witwicki,38356,24305,24 +82847,,11196,1444545,28 +82848,Goitz,80596,90643,47 +82849,Sarah Danby,245700,53367,6 +82850,Ammar,97630,89626,11 +82851,Aethelwine,48791,1248,3 +82852,Debbie Rosenberg,146322,1087589,11 +82853,Barry Cooper,360606,205560,5 +82854,Gen. Porfirio Diaz,78318,81970,4 +82855,Ellie,238593,187902,1 +82856,Old Woman,31264,136412,10 +82857,Zakariyyah,424600,38951,41 +82858,Goth girl #1,218784,1079850,22 +82859,English Officer,24559,8937,19 +82860,Tito (voice),77950,454,2 +82861,Baggage Clerk (uncredited),14615,148525,24 +82862,Suzie,52936,5578,7 +82863,,14284,1195357,4 +82864,Jeff,59419,41686,0 +82865,,85658,1291101,0 +82866,Midget Castiglione,4931,16085,7 +82867,Narrator,14108,3127,1 +82868,Laura,39072,3416,2 +82869,Marcus Baptiste,70074,2224,5 +82870,,69310,1174685,42 +82871,Cabaret Dancer,264309,1015446,23 +82872,Gena Lyapichev,75262,240781,8 +82873,,166253,35069,1 +82874,Herself,15258,70508,72 +82875,John McLaren,70864,118861,0 +82876,Sendayu Asama,16907,1120477,7 +82877,Proprietario Locale,42674,1871281,21 +82878,La postière,3423,1423350,16 +82879,"Capt. Hugh ""Bulldog"" Drummond",38437,7124,0 +82880,Spider Victim,75761,99913,33 +82881,Jean-François Cannonier,55370,17028,21 +82882,Tailor's Delivery Man,21451,1090669,8 +82883,Вика,56372,143661,1 +82884,Inez,52867,195061,12 +82885,Leigh,254188,5887,1 +82886,Sgt. Jessica Russell,26962,213359,3 +82887,Kierownik cmentarza,319999,1427401,5 +82888,Mike - Caver,9042,10701,10 +82889,Jay,14422,11107,1 +82890,Juan,107287,105216,2 +82891,Ian,207270,1364637,5 +82892,,56971,59640,3 +82893,Detective Constable Russet,105902,33220,9 +82894,Hideaki Kobayashi,135799,1084911,4 +82895,Doug Caruthers,9963,7220,17 +82896,British Soldier,1116,1896888,63 +82897,,162899,18266,1 +82898,Frame Johnson,93562,18802,0 +82899,Dr. Frazee,35895,62549,10 +82900,Hostess,222935,1378128,13 +82901,G Ajay Kumar,80276,116924,0 +82902,Luca Fattori,27703,24597,2 +82903,Darlene,142216,1176788,24 +82904,Tommie Scheel,174309,1088672,4 +82905,Lina,354979,1473959,5 +82906,Sgt. Brad 'Iceman' Colbert,54102,28846,1 +82907,Man,26486,99681,31 +82908,Undetermined Role,56558,8232,36 +82909,Isobel Moon,150247,131049,3 +82910,le prêtre dans la chambre mortuaire,8070,3595,8 +82911,Helder,216369,108451,3 +82912,Male Police Officer on Bluff,8457,8180,27 +82913,Juliette,255913,123989,2 +82914,Radio DJ,78691,170237,26 +82915,Pereira,13495,28511,14 +82916,Switzerland,12182,163866,20 +82917,Stage Manager,229297,1418845,13 +82918,Pastor,245019,29095,4 +82919,Trailer Park Resident,186869,1862906,33 +82920,CIA Analyst,59961,936403,10 +82921,Stacey,245169,124312,3 +82922,Eddie Kelvaney,30036,44998,3 +82923,Takeda,248087,1096815,13 +82924,Mann (voice),9551,49160,10 +82925,Otis (voice),49013,60074,31 +82926,Bridal Salesgirl,6557,1154564,12 +82927,Gunpei Ikari,293167,1391420,19 +82928,Clémont Roquemaure,64225,16350,8 +82929,Luka Kolar,259728,1047281,7 +82930,Cutler,42267,94294,5 +82931,Landlord,169364,1864086,8 +82932,,53693,1433343,24 +82933,Background,408508,1707546,9 +82934,Himself,52903,1263734,2 +82935,He Zhi-Wei,375170,1580562,0 +82936,Sekretär,197175,2741,8 +82937,Mom,345922,1546955,24 +82938,Ku Kung / Johnny Kung,18725,83487,2 +82939,,102272,1385295,8 +82940,The Captain,150201,1448863,7 +82941,Himself,157117,80745,14 +82942,Doctor,285400,105810,15 +82943,Mickey Munoz,291,4331,9 +82944,Young Sam,11247,1776450,19 +82945,Colee Dunn,16005,53714,1 +82946,Ernesto Botta,58060,72782,0 +82947,Marco,126250,556721,10 +82948,Ospital Warden,42420,128113,6 +82949,Sylvie Cope,51828,6979,4 +82950,German 88 Commander,19996,1583689,39 +82951,SGT. Hines,463800,190921,1 +82952,Wawa,82469,135347,4 +82953,Eli Pettifog,239056,934281,1 +82954,Seal,257344,1683843,50 +82955,Qalli,82492,928076,0 +82956,Lord Dean,130881,54036,2 +82957,Cigar Store Proprietor,130507,30530,12 +82958,The Commander,302026,1091868,8 +82959,Léon Lefranc,237799,3509,3 +82960,Juanita,38681,1689226,6 +82961,"Fake Santa #2, Jerry Hobbs (voice)",312100,24362,8 +82962,Billy,91070,1034513,24 +82963,Alin,403605,1454165,1 +82964,Kostya Anisimov,267481,1257126,5 +82965,Geoff,293861,1385532,6 +82966,Luce,3476,24690,3 +82967,Student (uncredited),99861,1480144,69 +82968,Josué Herzog,63665,5168,2 +82969,Victim 2,76203,1344361,48 +82970,Karlo,168541,1090599,9 +82971,Record Hop Dancer,2976,1752725,87 +82972,Diana 'Di' Medford,42614,31550,0 +82973,Venezuelan Officer,55604,56924,64 +82974,Grandpop,200447,30002,2 +82975,Marinaio,56693,1043966,2 +82976,Massa,53486,128227,8 +82977,Police Captain,250332,14420,36 +82978,"Valda (segment 1 ""Werewolf"")",26811,30673,17 +82979,Guest at Charity Ball,43855,121323,18 +82980,Shit-Stick,373247,1527210,5 +82981,Michael,18836,923,3 +82982,Catherine Linklater,59961,21657,2 +82983,O.T. Montgomery,33557,65562,4 +82984,Mr. Dobbs,80771,30530,10 +82985,Schröder,156954,5234,2 +82986,MSU Doctor,17654,1050718,21 +82987,Boca,37817,52583,2 +82988,Beata 'Lovely Continental' - prostitute,59408,1136690,5 +82989,Himself,53367,29304,8 +82990,Sam Hawkens,7085,5796,4 +82991,Karl Prebisch,8332,6274,13 +82992,Zhou Yu,12289,1337,2 +82993,Nathan Webb,237756,38664,2 +82994,Nina,257454,14298,1 +82995,Klytaimnistra,46278,18847,6 +82996,Nelly,76829,50,1 +82997,Himself,61487,47098,9 +82998,Umierający mężczyzna Maciej,314371,549372,14 +82999,Isa Braden,74836,1057913,2 +83000,,166027,87705,4 +83001,,62363,114346,14 +83002,Josh,301368,964160,3 +83003,Gossip,364088,1523166,9 +83004,Pepi,26891,96547,10 +83005,Li Tien Lu adolescent,96712,1010122,3 +83006,Antoine,29129,1027208,1 +83007,Morris,340275,4169,50 +83008,Angel Austin,81996,10826,4 +83009,Dr. Moore (voice),286940,18999,7 +83010,Taxi Fahrer Khaleel,6557,50465,10 +83011,Ardell,9753,58980,12 +83012,Gerardito,63066,564300,8 +83013,FBI Agent,38322,1445683,35 +83014,Dick Ross,272663,82860,1 +83015,Sergeant Howard Paxton,32526,43431,9 +83016,Afroditi,87908,80879,5 +83017,L'homme au break,53354,96413,2 +83018,Marcello,47959,1181526,11 +83019,Giuliano Verdi,83782,3829,1 +83020,Soldier (uncredited),15807,108023,25 +83021,Jean,71496,563083,3 +83022,Jail Guard,253154,1434090,15 +83023,Bray,22803,50217,13 +83024,Mel Allen,20536,4443,7 +83025,Mrs. Colby,78734,121323,11 +83026,Father of the Bride,170279,1152395,14 +83027,Ike Botkin,16442,4303,6 +83028,Himself (uncredited),322400,73988,0 +83029,Ghanshyam (Shyam),20359,85730,1 +83030,Ekman,49940,231926,3 +83031,Susan,108501,1197582,4 +83032,Carmine/ Mr. Kidd,14505,47774,5 +83033,Maggie Little,35320,61168,6 +83034,,366736,1584554,4 +83035,Vito,31111,20590,2 +83036,Dr. James Mullenbach,20153,12311,9 +83037,Janey,34672,126233,20 +83038,Pauline,19294,28639,5 +83039,Henry Gallo,84655,89691,4 +83040,Jack,13390,2505,2 +83041,John Ramsey Auditionee / Himself,430826,1891506,27 +83042,Merry Levov (age 12),326285,1548297,8 +83043,Stroller,53406,13848,0 +83044,Second Hood,30141,4253,6 +83045,Richard,336691,1547695,12 +83046,Fan (uncredited),18722,553454,55 +83047,Logan Burnhardt,24963,27737,0 +83048,Sheng Xiangjun,248376,1184077,6 +83049,Kathy Steele,142402,965530,5 +83050,Arbeiter,170759,1153030,22 +83051,Lt. Max Hines,84496,160541,7 +83052,David Curry,93862,12517,4 +83053,예주(YeJu),67025,545757,3 +83054,,15776,1278767,9 +83055,George,15020,2047,0 +83056,Tough in Bar,53387,13856,4 +83057,Ruth,10362,6588,2 +83058,Jakie Rabinowitz,939,14286,0 +83059,Herself,68004,1081494,5 +83060,Helen Wells,9030,7489,2 +83061,Wife #1,193893,1381479,33 +83062,Robert Oppenheimer,145247,1314279,20 +83063,Sadako,21966,1256546,19 +83064,Fred Landis,41234,34241,9 +83065,"John Swanson, truck owner",38269,291778,7 +83066,Policía municipal,335053,25900,25 +83067,Jimmy Lee,18747,78875,2 +83068,Lars,55694,19578,4 +83069,Brad,207270,1518113,10 +83070,Beth,1691,37014,0 +83071,Joyce Parrish,41030,248053,12 +83072,Jazz Club bartender (uncredited),26983,18249,15 +83073,Mr. Anderson,70351,537,11 +83074,Party Guest (uncredited),33112,1001010,29 +83075,Count Stefano Egano,4286,18340,5 +83076,Embarrassed Man,11338,14773,22 +83077,Alice Cooper,62213,35824,11 +83078,Ron,308,4443,13 +83079,Roger Barclay,119801,1943,5 +83080,Glen,85956,1046213,2 +83081,British POW (uncredited),227306,1394473,73 +83082,Johnny Hallyday,34280,35084,6 +83083,Norman Long,50590,59283,0 +83084,Gail Barrett,33801,142270,5 +83085,,44716,1807471,29 +83086,Beatrice Stanhope,26264,94978,4 +83087,Yeti (voice),62211,7907,21 +83088,Glory Dogs Bass,23367,95377,21 +83089,Tiny Joe Dixon,1125,110884,12 +83090,Morgan Vallin,44669,14564,2 +83091,Track Doctor,125736,33856,19 +83092,Karl-Heinz,1912,35539,12 +83093,Director Kim Jung-rae,54659,138508,0 +83094,General Burgdorf,47536,14324,7 +83095,Auctioneer / Horse Trader (voice),16366,198,9 +83096,Händler,14489,86847,1 +83097,,31462,57097,20 +83098,,85673,105083,10 +83099,Monsieur Firmin,76115,577642,4 +83100,Karan,22429,84957,1 +83101,Guillaume,30974,1081654,5 +83102,Martha,9987,221116,21 +83103,House Owner,362150,580785,13 +83104,Charlie Brownsville,44486,45407,0 +83105,Lindsay Jeffries,29695,5503,0 +83106,Ruth Kimke,425591,15091,0 +83107,Roper,9461,11163,4 +83108,Banan (voice),260310,232864,4 +83109,Carolyn Hayes,3164,30976,2 +83110,Marcia Stillwell,117426,19131,6 +83111,Additional Voices,15213,1441185,26 +83112,Maribel,8088,34056,19 +83113,Dennis,225044,95866,2 +83114,Durell,14423,9778,0 +83115,,63215,1520914,34 +83116,Khaku,35002,47401,3 +83117,Photographer,19719,85098,20 +83118,Hannele Arhamo,18279,148038,4 +83119,Horseman,157843,568717,29 +83120,Mutter Fritzi,3577,48898,14 +83121,Ian Mercer,285,939,18 +83122,Syn,109466,71530,6 +83123,Sarge,64450,934089,5 +83124,Lady on toilette,199602,1387158,4 +83125,Lt. Kelly Tripp,105945,94632,4 +83126,Axel Palmer,14435,43442,2 +83127,Mike 'Slug' Richards,81110,14028,2 +83128,In,132518,1096173,3 +83129,Garry Patterson,82313,76543,8 +83130,Mrs. Bleckner,31377,26998,8 +83131,,71725,226302,13 +83132,Capt. Lionel Beckman,45522,54123,4 +83133,Handan,37570,1602233,6 +83134,Dan Abbott,13169,22226,8 +83135,Deputy,9966,61139,16 +83136,Gaylord Ravenal,31548,10802,1 +83137,Chinês,420703,1281405,2 +83138,Amelia's Make-up Artist (uncredited),8915,1585624,20 +83139,Himself,13585,39185,1 +83140,Bulldog,38526,94391,14 +83141,Mollser Gogan,173456,14870,10 +83142,Mateo Sulejmani,356758,1880481,4 +83143,,19552,1275920,11 +83144,Bridget,175035,125841,3 +83145,Cordelia 'Kay' Motford Pulham,96107,14683,2 +83146,Antoinette,64983,28681,5 +83147,Frances Fairchild,63360,7303,0 +83148,Camilla Ledda,267557,128465,3 +83149,Jasper,55663,179073,8 +83150,Ted,71139,4520,5 +83151,Silvia,228198,1152881,8 +83152,Arden Langdon,42819,4273,4 +83153,Emily,14695,11671,2 +83154,Byeong-hee,376252,1421051,14 +83155,Sonne (voice),12697,10627,7 +83156,Ellie Landon,19901,125318,11 +83157,Antoinette Damiano,128270,150972,6 +83158,,27276,551829,16 +83159,Cashmere Sweater orgasmic vocals,13777,75284,38 +83160,Edward Mobley,36786,13578,0 +83161,Luke,381645,323331,4 +83162,Lúcia,30127,87335,5 +83163,Bumpy Johnson (uncredited),4982,15864,102 +83164,Kousuke Aizawa,60160,13256,1 +83165,Armani,225283,148284,2 +83166,Lorenzo Council,9959,2231,0 +83167,Vader van Akkie,115929,13516,16 +83168,Luba,11917,22122,7 +83169,Julia's Friend,56292,173079,14 +83170,Opera Singer,18093,1738911,22 +83171,Schmidt,31890,8435,5 +83172,Lt. Smit,13823,75788,25 +83173,Lana Lang (voice),142061,15423,18 +83174,Odile,15016,145345,3 +83175,Tatsuya Misawa / Shek Karbo,45505,69637,0 +83176,Lopez,37308,103513,9 +83177,Judge,31111,21171,1 +83178,Driver,29907,31439,7 +83179,Jack Witkowski,262338,55585,6 +83180,Lola,21950,99924,4 +83181,Joseph,76543,3064,0 +83182,Avery Brubaker,77012,21874,3 +83183,Ralph's Mom (voice),169314,145553,5 +83184,Louie Dumbrowsky,184328,14034,6 +83185,Ladriya,315837,1786960,15 +83186,Mrs. Major,51828,209990,19 +83187,Noah,273743,820,1 +83188,Innkeeper,284135,1080935,5 +83189,Charlie Bannister,28303,4974,12 +83190,Little Havana Girl on Swing,323675,1769808,45 +83191,Alice Kinian,29146,29545,1 +83192,Uniformed Police Officer,102630,565508,5 +83193,Sheetal Tejani,20623,86081,21 +83194,Intoxicated Man,21135,138646,6 +83195,,27276,551832,19 +83196,Paolo,42420,128110,1 +83197,Jim,132928,2099,41 +83198,Old Woman,255160,1898233,18 +83199,Sgt Lilo Diaz,324670,1266313,14 +83200,Jeannie Peterson,55694,41273,1 +83201,Rita,259616,1246717,2 +83202,Taxisofőr,327909,1433829,3 +83203,Farm-hand,11656,321845,11 +83204,Trent,147773,4495,1 +83205,Chief James Porter,13493,78029,0 +83206,German Officer Anfe Cafe,369885,136040,14 +83207,Abusive Citizen,257344,20818,26 +83208,Jack Goode,86241,74763,9 +83209,Jorge Palma Imaginário,373397,1507788,10 +83210,Zoe,252680,61831,7 +83211,Daniel,15440,574201,6 +83212,League Speaker,194407,89744,13 +83213,Isa,270400,1010001,10 +83214,Liverpool Policeman,84352,930762,14 +83215,Finn,28320,51383,7 +83216,Daniel,94527,7107,4 +83217,Casino Guest (uncredited),268920,1288833,15 +83218,,27276,551845,36 +83219,State Policeman,31634,108244,11 +83220,Karan Chopra,347807,86304,4 +83221,Duc de Chaulnes,68023,24683,5 +83222,Heather,298865,1242102,6 +83223,se stesso,301272,1883871,9 +83224,Varg Veum,55612,79332,0 +83225,Samantha West,76012,557578,3 +83226,Lillian,28455,82436,5 +83227,,57965,1352079,3 +83228,Simon (voice),393559,1615537,3 +83229,Dono do Bar,361146,1890686,16 +83230,Joon-pyong Kim,21966,3317,0 +83231,Joshua Kemp,55152,74689,2 +83232,Metka Hafner,152861,1133423,1 +83233,Party Girl,306952,1511966,23 +83234,Himself,13576,82702,0 +83235,Kesha,63584,237524,0 +83236,"Leila, the Wife",45899,240240,0 +83237,Professor Thayer,104602,54450,7 +83238,,36236,1467655,25 +83239,Vänrikki Pienimäki,55763,223073,4 +83240,Apple,43119,102787,3 +83241,Vincenzo,42892,121732,3 +83242,Man in D.C. Bar (uncredited),1125,150194,22 +83243,Garota do bar,42473,1405826,25 +83244,The Princess ('The Dancing Princess'),28367,21876,10 +83245,,402612,76469,6 +83246,Fausta Grables,297762,1232889,31 +83247,Mor,15440,1336921,13 +83248,Annabeth Westfall,132363,13333,6 +83249,Antonin Verset,58928,23670,1 +83250,Simon,408024,57738,7 +83251,Hank Greely,70074,7497,7 +83252,Undercover Cop,240745,1660692,23 +83253,Pablo,58244,1234315,6 +83254,Storm,98557,212824,5 +83255,General Fuentes,1810,19218,10 +83256,Will Mandrakis,10053,62563,10 +83257,Philip,61008,60005,2 +83258,Nightclub Patron (uncredited),33112,121323,18 +83259,Martian Manhunter / Man-Bat (voice),353595,23680,13 +83260,,284189,19646,3 +83261,Young Mom,332567,1669262,10 +83262,Party girl,10425,63213,10 +83263,Bug Boy (voice),17445,34934,15 +83264,Rosi,127901,1109321,4 +83265,Groucho,13911,10798,0 +83266,Etienne,9736,57738,11 +83267,Harry King,76211,14868,1 +83268,Det. Faraday,20174,85777,11 +83269,Petter,75233,1479707,8 +83270,Kinokassiererin,273,3875,4 +83271,Hank Deerfield,6973,2176,0 +83272,,229702,127725,4 +83273,Himself,15258,78576,10 +83274,Merchant,20108,545032,5 +83275,Nula,16240,80184,11 +83276,Terri,95177,51734,2 +83277,Fox,12594,1215395,16 +83278,Dilip,28997,121615,3 +83279,,14804,1901816,34 +83280,Cameron,90616,45216,14 +83281,Clark,293271,1364784,10 +83282,Nastya's Father,143380,1119005,4 +83283,Dr. Dreier,94336,65054,3 +83284,Torso,34127,32437,6 +83285,John,303636,1386668,3 +83286,Keita tamura,98631,120918,3 +83287,Exterminator #3,2742,51036,8 +83288,Hengov,8340,54611,3 +83289,La femme de ménage 2,377853,1891326,16 +83290,Hanukkah Party Guest,356752,1841524,47 +83291,DJ,6575,58737,26 +83292,Professor G.H. Dorr,5516,31,0 +83293,Richter Langlois,2977,385,8 +83294,Thomas,378441,1643921,17 +83295,Bailey's Neighbor,9779,11831,34 +83296,Akito Yagi,18722,553426,11 +83297,Dirt Bike Rider,312221,1746961,63 +83298,Priest 2,16135,79515,20 +83299,French Mule,240832,1464571,10 +83300,Zoe McConnell,243940,59315,0 +83301,Annika Settergren,11626,70067,1 +83302,Mrs. Thomas,338100,12519,2 +83303,Ewan,95516,48,0 +83304,Charles,58928,1334270,7 +83305,Detective,43113,1484027,51 +83306,,356486,1359012,8 +83307,Maestro P. Trellini,52847,88673,5 +83308,Umpire,26131,147742,10 +83309,Aleksander Saski,293982,1583090,18 +83310,Frau Bahnhofstoilette,269258,207596,32 +83311,Hobbs,244580,1237,5 +83312,Laird John Hamilton,291,4324,2 +83313,The Oracle (voice),39345,64998,18 +83314,Evan Evans,82313,927752,13 +83315,Bob,161620,78385,7 +83316,Toni,43205,57497,6 +83317,,301671,239707,5 +83318,Max (voice),26505,19767,11 +83319,Hyder Graybeal,128364,1209487,9 +83320,Les Feldman - MIL Engineer,17654,3495,5 +83321,Young Mother,222487,1207915,3 +83322,Julio,7483,52686,5 +83323,Burlington Potluck Guest,356752,1841536,60 +83324,Joe Leaphorn,155191,15853,1 +83325,European,222935,931002,22 +83326,Sonam,21571,86069,1 +83327,Dr. John,29101,1492859,11 +83328,Martha Moxley,56744,11825,3 +83329,Zack Lambert,26881,81624,7 +83330,Carlos,33481,110768,17 +83331,David,65035,281527,7 +83332,Young Rose Perl,19338,1579268,26 +83333,Ah Tung,25074,239010,12 +83334,Himself,25111,11159,8 +83335,Geraldine,10299,567256,20 +83336,William H. Bonney (Billy the Kid),11577,10823,1 +83337,Himself,173465,1266245,7 +83338,Jason,85446,110743,2 +83339,Tarzan,43205,129313,0 +83340,Howard Manchester,5767,10775,7 +83341,Hampeita Takechi,37053,70131,1 +83342,,77986,544616,6 +83343,Lauren,322548,1719608,16 +83344,,4832,6193,6 +83345,Alan Hunley,177677,7447,10 +83346,Former Billy (Encore),298931,1136406,9 +83347,Old Man,21840,87957,4 +83348,Max Planck,15044,20425,9 +83349,Lord of Xibalba,1381,20194,5 +83350,Waitress,253235,1795364,27 +83351,Cogburn the Rooster (voice),18843,57133,20 +83352,Fat Girl at The House of Trouble,45807,141346,2 +83353,Pang,30305,106030,1 +83354,Charlotte,11328,69014,3 +83355,Libby Vonderkill,139930,933009,5 +83356,Ortega,338438,1120097,15 +83357,Mrs. Norris,44001,99329,7 +83358,Miss Blodgett,38769,68653,17 +83359,,27276,55663,20 +83360,Marion,80720,34085,16 +83361,James Riley,10921,52043,10 +83362,Ilona's father,380731,1643338,13 +83363,Mark,240913,54500,3 +83364,Bill O'Reilly,38356,95777,34 +83365,Sir Martin Archer Shee,245700,2280,25 +83366,Yoshi,17577,83458,4 +83367,Mrs. Courtney,49502,20127,6 +83368,Loretta,19286,86923,5 +83369,Sornchakr,33253,1052080,7 +83370,Michael Rhoades,142012,16214,0 +83371,Mike's 1. lady client,59408,94156,4 +83372,Livia Cornero,53945,87679,2 +83373,Mrs. Fairfax,22744,97039,9 +83374,Deputy,47404,975306,24 +83375,,148371,1269332,11 +83376,Bar Fly,197737,98022,29 +83377,Mrs. Lynn,36375,115367,18 +83378,Jang Mi-na,107976,127706,5 +83379,Hotel Manager,26223,94904,4 +83380,Tony,117942,1066314,7 +83381,Magic Show Audience Volunteer,228647,1208035,42 +83382,Gabriella 'Gaby',56858,235203,2 +83383,Zozia,19338,168770,11 +83384,Walter Gulick,18684,21457,0 +83385,Maral,73984,15184,7 +83386,Capt. Jock Clark,46189,89834,8 +83387,Taxifahrer,204965,1187349,5 +83388,Kraven,834,3969,3 +83389,Fred Jones,167012,44221,1 +83390,David,4191,3516,13 +83391,Miss Marquand,229638,21878,9 +83392,Miller,103731,33262,10 +83393,Himself,9951,110068,13 +83394,Room Service Waiter,89492,76539,22 +83395,Angela,17927,66623,14 +83396,Orion Girl,188927,1397812,28 +83397,Red Queen Girl,45522,1436026,19 +83398,Nick,103620,992221,6 +83399,Professor in Wagstaff's Study (uncredited),13912,999884,10 +83400,Sam Cosgrove,193435,97007,5 +83401,Hemanika,300983,116925,1 +83402,Larry,109213,99809,4 +83403,Dr. Nagy,39766,2092,4 +83404,Portioli (uncredited),31742,1002678,4 +83405,Joana de Deus,101342,150502,1 +83406,Psychiatrist,44943,60875,27 +83407,Army-Navy Dave,64720,33262,15 +83408,Sänger der Countryband,308174,1406156,28 +83409,David,26969,1248277,6 +83410,,37213,96473,10 +83411,General Security Chief,209112,156405,60 +83412,,44716,1807474,36 +83413,Pete,17820,9865,9 +83414,Edgar Wallace ( Voice ),6591,18502,11 +83415,Puff Randolph,198227,30003,2 +83416,Beto Álvarez,431093,234070,8 +83417,Draco,42664,93655,5 +83418,Futa,76084,3342,5 +83419,Marion Estelle Edison,43811,1556188,53 +83420,Gideon Pontipee,16563,6725,2 +83421,Himself,23524,236675,3 +83422,Loryn,19053,15274,1 +83423,Schoolchild (voice),38055,1077795,12 +83424,Biff Sage,94251,14664,11 +83425,Remo Bellini,73160,130303,0 +83426,Bernie,336004,61962,6 +83427,Press (uncredited),921,1574936,67 +83428,Fred Cheaver,16005,504,0 +83429,Kaethe Brahms,55236,232348,4 +83430,Fred,204965,1187347,2 +83431,la veuve Couderc,76871,12266,0 +83432,Corporal (uncredited),52440,1672202,35 +83433,Theo Craillon,121793,146487,8 +83434,Grandpa,19274,62427,1 +83435,Second Boy,33472,6008,20 +83436,Moving Guy,402582,1546631,22 +83437,Georges Donge,63224,26878,5 +83438,Tall Banks Secretary Searching for Tillie (uncredited),22943,148023,15 +83439,John Hytner,67216,7219,5 +83440,Senator,177677,1502366,18 +83441,Yuri Mishatov,24624,24595,9 +83442,News Reporter,270654,1425214,34 +83443,Rex,77583,1773379,6 +83444,Tom Billingsley,10004,1466,2 +83445,"Dr. Karl Rothe, alias Dr. Karl Neumeister",88176,2094,0 +83446,Vater Lukas,248933,231819,17 +83447,Mary Magdeline,86658,1347939,3 +83448,Uncle Ubb (voice),73723,537,15 +83449,Miss Helen Fredericks,191465,30618,6 +83450,Chapin's secretary,301348,1448801,14 +83451,Roofer,14552,569544,8 +83452,Jésus,32720,146528,5 +83453,Katherine Duchannes (uncredited),109491,1049795,25 +83454,Detective Harper,158739,154917,5 +83455,Al,40139,198054,5 +83456,Bos'un 'Guns' McPeek,257081,975692,19 +83457,Paul,2830,17866,5 +83458,,366759,74376,1 +83459,Alex,32904,109835,3 +83460,Katrina,448763,1175795,0 +83461,Narrator,13062,7918,0 +83462,Carla the bartender,55735,88099,14 +83463,Himself,424661,127596,8 +83464,Gefängnisinsasse,83342,62298,10 +83465,Lebyadkin,37710,1179681,20 +83466,älterer Herr,36672,36712,9 +83467,Master Shadow Glow,10703,1139069,14 +83468,Jasper,461955,10205,1 +83469,Liz,172396,1860441,3 +83470,Eleanor Thomas,257907,1145175,10 +83471,Wolfie,19255,84410,11 +83472,Holly Garling,353979,140407,1 +83473,Denise,324408,35663,4 +83474,Himself: 'Mr. Steadicam',14543,1392719,14 +83475,Parvez Merchant,20092,86082,5 +83476,Leland,178809,2320,13 +83477,Cat,18638,11398,3 +83478,Jim Barrett,13996,8984,2 +83479,Emilio,57342,125064,8 +83480,Peter Minuit,43252,10798,2 +83481,Cornelia,70747,559503,2 +83482,Raghu,115905,86560,2 +83483,Surprised Diner at The Flame Room,242835,121323,17 +83484,Evelyn Leslie,108812,89808,4 +83485,Courtroom Spectator (uncredited),42825,148419,17 +83486,Oliver Oberstein jr.,10645,11951,5 +83487,John Edward Marinville,10004,4139,1 +83488,Chief Inspector Jussi Vuori,101838,1029079,8 +83489,Janitor,30680,785,4 +83490,Deepa,14752,78925,9 +83491,Bongo,89086,555903,19 +83492,Mark Griffin's girlfriend,21343,87413,2 +83493,Lieutenant Julia Baker,388862,27136,1 +83494,Dr. Harris,114096,58927,7 +83495,Max,70752,90122,2 +83496,,79580,587518,12 +83497,Hotshot Ken (as The Hoosier Hotshots),173634,1506699,5 +83498,Scarno Henchman (uncredited),15022,63423,40 +83499,Emile,19423,18260,6 +83500,Bad boy,13436,1656877,14 +83501,Gertrud,34181,425893,5 +83502,Zed,413052,5365,4 +83503,White Dragon,10109,63586,7 +83504,Carriage Driver,137321,35091,21 +83505,,33558,1251178,6 +83506,L'artiste incomprise,28417,118178,13 +83507,The Woman,64084,42532,11 +83508,Elizabeth Malet,7548,10882,3 +83509,Отец Игоря,47812,99269,9 +83510,Assistant to National Security Advisor,97630,255430,18 +83511,Captain Rubberpants,62213,1699133,17 +83512,Esteban,270400,1170973,14 +83513,Dr. David Livingstone (as Sir Cedric Hardwicke),89086,99461,5 +83514,Mike's Lawyer,16996,34979,28 +83515,Gorgeous Woman,193893,1381473,23 +83516,Yamazaki,92496,1462291,42 +83517,Peter,4538,3490,2 +83518,Ned Turner,49158,6593,0 +83519,Ruth,28297,31844,4 +83520,Mezczyzna,82027,592919,12 +83521,Chief Joseph,28323,100418,1 +83522,Sterling Deputy,371003,1332017,7 +83523,Zach Emmett,53861,28870,5 +83524,Pons Llobet,1896,130259,16 +83525,Lulu Parsnips,156389,95624,2 +83526,Paul Hora,274504,21136,7 +83527,Judge,55604,141510,16 +83528,Clyde Baxter,31913,4785,12 +83529,Himself,329243,44127,7 +83530,Driver,337758,1563449,15 +83531,François,3423,2168,3 +83532,Renoir,369885,1631708,15 +83533,,1838,74755,14 +83534,Naji Al-Hadithi,28730,20277,4 +83535,Kyle LeBlanc,19277,15111,0 +83536,Police Constable,41312,107435,7 +83537,Det. Anne Pope,10145,1981,10 +83538,Jonathan Moffett,13576,1449382,7 +83539,Dominique,64414,26166,1 +83540,Mr. Ferrin,158015,1186024,11 +83541,Morgan,18977,2758,4 +83542,Kurt Hendricks,56292,6283,10 +83543,,73578,565890,7 +83544,Ziegler Dane,10011,2714,3 +83545,Mor,83284,3883,1 +83546,Mary Hatchet,47194,141033,3 +83547,Herself,253337,1788333,21 +83548,Aunt Cass (voice),177572,52792,9 +83549,Biagio Lo Cascio,167583,41527,8 +83550,Herself - at Banquet (archive footage) (uncredited),33740,14730,86 +83551,'Johnny' Victor,87936,30003,0 +83552,John 'Johnny' Sims,3061,29986,1 +83553,Ben Crowley,124115,74875,8 +83554,Tom Verlaine,111479,1223455,22 +83555,Kirby,91333,76828,11 +83556,Brigadier General Hauser,72431,17353,12 +83557,Pierre's Oldest Son (uncredited),27635,6725,10 +83558,Anandan's Son,134477,1414003,14 +83559,Lucy Bretthorst,50028,931947,1 +83560,"William, Second Butler",106635,1176934,17 +83561,Bernie,31118,165662,6 +83562,Judith,50032,183191,2 +83563,Bartender Sammy,16083,79211,6 +83564,Mr. Weathers,101325,10963,12 +83565,Carole Moore,73612,1051378,4 +83566,Dritter Geschworener,269165,12747,2 +83567,Alexander Graham Bell,292033,29094,1 +83568,Steve,233487,1268986,4 +83569,Tac Team Leader,337339,1771588,13 +83570,Hoarse Prisoner,250535,1561566,20 +83571,"Hideki, Japanese Astronaut",435,29466,24 +83572,,237303,17490,5 +83573,La madre della famiglia amica di Mario (uncredited),43231,1297705,17 +83574,Gulliver Mercer,25038,99502,5 +83575,Adam Caine,85602,113,1 +83576,Man at party,283686,1414437,6 +83577,Venya (voice),260310,116005,3 +83578,Quan,55208,127451,0 +83579,Alba at Four and Five,24420,1225804,32 +83580,,288424,1357866,1 +83581,Uncle Wirtz,101998,8343,14 +83582,Shirley Margot,138544,230995,10 +83583,County Prosecutor,11358,26782,24 +83584,Clov,68139,11207,1 +83585,Olga Koprowicz,319999,1427400,3 +83586,McHugh,987,14835,12 +83587,Wokalistka Krysia,375742,107517,1 +83588,Samantha Booke,14047,59017,47 +83589,Rey,1482,36193,8 +83590,Nightclub Girl,51828,1320609,29 +83591,,33340,3853,4 +83592,Anna,28671,101537,1 +83593,Katie Burrell,17274,198927,2 +83594,Claudina's mother,29952,1038483,5 +83595,Police Officer,242042,1015667,24 +83596,Shiemi Moriyama (voice),201223,119143,2 +83597,Lois,48156,94991,6 +83598,Villager,143946,1201030,15 +83599,Gary Age 6,64328,1504921,36 +83600,Joe Lieber,13848,44172,7 +83601,Tom,159095,956764,1 +83602,Dr. Nicodemus West,284052,72873,6 +83603,Reporter #2,79500,1172595,12 +83604,Michael,9993,75742,20 +83605,Roberto,119820,1071148,19 +83606,David,37269,117311,4 +83607,Bertha Olsson,51144,55156,2 +83608,Sam Allen,87514,235365,13 +83609,Chen,109391,1204677,8 +83610,Hamilcar Grandon,142391,63116,2 +83611,Kerttu,249703,1284969,3 +83612,Mr. Garland (Tour Leader),22051,1367255,23 +83613,Shinta Hayakawa,38625,120919,2 +83614,Lena,216369,108452,1 +83615,,100024,21315,2 +83616,Mnevis,205584,1527210,16 +83617,Truck Driver #2,14552,57155,14 +83618,'Florrie' Keefer,84903,85651,0 +83619,Josemi,119409,1631186,5 +83620,Extra (uncredited),3059,8841,52 +83621,Katherine Grant,14615,528,0 +83622,,329216,33677,6 +83623,Danildo,198795,1685146,21 +83624,Laura,10740,15675,4 +83625,Judge,21605,10655,10 +83626,jako Iwan Huk,406449,1650392,27 +83627,Sarah,136386,8211,1 +83628,Guard 1,48333,94702,15 +83629,(uncredited),140554,986096,48 +83630,Long George,72096,69984,31 +83631,Party Kid #2,18843,59181,39 +83632,Himself,374460,5741,16 +83633,Rechtsanwalt,279090,38101,8 +83634,Ray,39072,141034,5 +83635,Aliki,64674,1259971,0 +83636,Hippie Mutant (uncredited),47342,1837874,32 +83637,Daad El Shur,82430,1937,2 +83638,Satyakant,228355,85450,2 +83639,Sheriff,336811,1198539,7 +83640,Captain Jocard,285,2603,32 +83641,Engineer,262841,1098660,30 +83642,Agent Durham,54779,151115,6 +83643,Himself,142320,78697,24 +83644,Jamie,316885,1206334,5 +83645,Ian the Gator (voice),10198,24362,20 +83646,Nurse,277710,1557953,34 +83647,Old Codger #1,33586,118132,5 +83648,,403867,1637846,4 +83649,Il Governarore di Sisoiev,44658,1119000,2 +83650,Secret Service Agent,339362,1526637,16 +83651,Pooja Saxena,210068,37233,0 +83652,Smoking Woman,104108,1759087,1 +83653,Gwen Kellerman,20444,18365,1 +83654,Craig,19116,133357,6 +83655,Norman Winther,13678,238098,0 +83656,Combarel,151826,587147,15 +83657,Jay Alsop,94874,227095,3 +83658,Summer Gleeson,15805,35363,10 +83659,Train Passenger (uncredited),3580,1513747,63 +83660,Mamma Stella,228290,9242,4 +83661,il viandante cieco,103216,37583,5 +83662,Fish Bowl Girl,246655,1796408,62 +83663,Mrs. McBee,42703,116727,10 +83664,Captain Barbara Floss,354287,82605,40 +83665,Sally Kendall,29483,3052,1 +83666,Crazy Shapiro (voice),32202,2555,1 +83667,Prof. Giuliano Fineschi,54166,15140,0 +83668,Hannah,32868,109742,8 +83669,Park Ranger,50838,208069,7 +83670,Townswoman,134238,927616,51 +83671,Max,319924,212234,2 +83672,Kid,92989,81174,8 +83673,Matt Ford,69075,9045,0 +83674,Joe Snake,96132,9811,2 +83675,Rowdy,42329,1055369,6 +83676,Matthew (Matt) Hallowell,274325,32205,3 +83677,Detective Murata,12720,2544,1 +83678,Henry - DEVGRU,97630,1140092,23 +83679,Principal,242224,543279,12 +83680,Opie Taylor,151937,6159,2 +83681,Young Baby,339403,1488908,14 +83682,Drunk #2,11584,58478,12 +83683,Ekspertka Markiewiczowa,49588,1384,6 +83684,SAC Aide #1,20674,189546,23 +83685,Charlot Smith,160160,1055514,6 +83686,Dean Warns,93828,32300,11 +83687,Speedy Gonzales,349045,61110,5 +83688,Conrad,126712,117675,13 +83689,,206157,10447,1 +83690,Lisa Carr,334074,139654,7 +83691,Taff,239845,1274938,0 +83692,Himself,413782,1032,1 +83693,Young Cody,46729,1112033,8 +83694,David - Writer,15019,139075,16 +83695,Himself,217925,1358636,7 +83696,Club Goer,77930,1784672,72 +83697,Insp. Leigh Cheng,25536,25252,2 +83698,Kermit the Frog,47670,55983,9 +83699,Eddy,11403,55085,1 +83700,Arlene,16460,86170,5 +83701,Sunglasses At Night,425591,1118080,11 +83702,Gentleman Critic,245700,43024,59 +83703,Eva,102256,558207,3 +83704,Funeral Attendent,379959,1604107,20 +83705,2nd Boy,10299,110537,15 +83706,Laura,70712,55392,0 +83707,Mike Seaver,84071,6355,0 +83708,Ensign Goode,140607,1371518,37 +83709,Angela Owens,323673,33350,3 +83710,,16015,1445196,21 +83711,Shoe Vendor,4538,1797589,18 +83712,Mirco Crestadoro,20414,128472,14 +83713,Robert,71732,563727,1 +83714,Additional Voice (voice),8355,180203,30 +83715,Yasuoka,223391,137028,5 +83716,little wolf,109329,1478966,6 +83717,Kate,4592,1538375,14 +83718,Joan Colby Fletcher,175027,103441,0 +83719,Julia,41301,74607,1 +83720,Gessica's Mother (voice),429838,1734256,12 +83721,Vasile Gramada aka Sile,403429,129565,3 +83722,Jessica,359471,1509226,15 +83723,Phoenix Cop,273481,42201,26 +83724,Ida Stricker,369883,75318,6 +83725,Himself - Bass,37038,116649,11 +83726,Pedestrian,88036,935714,8 +83727,Mental Patient,24094,97460,22 +83728,Lynn,341077,1187069,7 +83729,Ivy,57749,85011,3 +83730,Mary,111839,7489,5 +83731,Onler Kom,284288,1439075,1 +83732,Theresa Monetti,20003,78935,8 +83733,Mike Fouche,26881,16119,5 +83734,Nearchus,1966,63360,34 +83735,Herbert,28425,100769,3 +83736,Monakh,150223,1870831,19 +83737,Asenath (voice),16366,63978,4 +83738,Greville White,132426,80536,2 +83739,Major Boyd Grayson,30289,98157,2 +83740,Elizabeth's Mother,116780,133273,5 +83741,Sharik the Dog (voice),77762,86847,2 +83742,Yoga Instructor,218778,1009885,18 +83743,Kit,290762,55470,2 +83744,Максим,83456,86864,8 +83745,Briony Mitchel,48838,58016,3 +83746,Younger Kadambari,320910,1423269,10 +83747,Le jeune inspecteur,214093,1295965,7 +83748,Sgt. Terry,56527,92949,4 +83749,,293654,562719,2 +83750,NY1 Reporter,41171,1392749,28 +83751,Leafs Trainer,108723,1446340,24 +83752,,149868,88853,0 +83753,Ao Jia,14539,1021201,9 +83754,Nancy Chaney,40139,1217464,4 +83755,Chet Butler,55728,66606,2 +83756,Pete,62527,56120,6 +83757,Molly,207270,1197058,2 +83758,Himself,64780,1184380,1 +83759,Nicholas Sokim,39943,34405,3 +83760,Consuela Moroni,111480,544399,4 +83761,Verleihchef,170759,213586,11 +83762,Randy Newell,239498,1277516,9 +83763,Ballinger,37301,127641,3 +83764,Townswoman,176670,97257,11 +83765,Princess,24973,16762,35 +83766,Talent Scout (voice),9948,17401,6 +83767,Post Customer / Mob Leader,176867,96061,38 +83768,Reporter at Dock,89086,1081955,30 +83769,Dr. Karl Werner,84104,1077359,2 +83770,Tuxedo Kamen / Mamoru Chiba,37100,40327,1 +83771,Mike,127728,1085659,7 +83772,Robert Fletcher,104427,1048129,10 +83773,Raven Starr,40990,1491614,10 +83774,Maggie,75363,84404,16 +83775,Raja,28417,1125201,11 +83776,Ronnie,37911,91638,4 +83777,Silent Tongue,35001,1834866,13 +83778,,85844,1422424,5 +83779,Relly,6391,55049,2 +83780,Shadow leader,270759,1024395,0 +83781,Jenny,273743,92175,2 +83782,Irene - Kid,38526,1675649,11 +83783,Their Mother,191068,145109,3 +83784,Undetermined Role,81110,1434623,23 +83785,Customs Officer #2,14126,1086556,10 +83786,Josh,63197,236596,2 +83787,Mark Abshire,24420,1017085,6 +83788,Miina,17566,81245,5 +83789,Felicitas,26864,96482,7 +83790,Elena,30449,223880,7 +83791,Mr. Salt,118,1292,10 +83792,Abby,20107,132354,6 +83793,Loretta,13842,54800,12 +83794,Nadine Hoffmann,1294,5511,7 +83795,,335897,1063009,6 +83796,Raúl,83430,1639760,15 +83797,Lobo,32623,100796,2 +83798,Autograph Girl,16135,79531,36 +83799,Tourist (action scenes),146216,1426167,19 +83800,Fleetwood Peyton,52360,99461,2 +83801,Vlada,371459,36659,2 +83802,Charity Collector at Box Office,157898,939991,38 +83803,Yankee Wife,61225,1879746,30 +83804,Rajiv,15979,389604,0 +83805,Hero,2764,27957,0 +83806,Little 'Wow!' Girl,53870,8338,23 +83807,Sean Linden,23964,9045,0 +83808,Carole,245692,82923,0 +83809,Ravi,125835,108215,0 +83810,,278095,143745,8 +83811,,104343,1697252,10 +83812,,182799,2969,0 +83813,Two-Step Dancer,8988,59464,48 +83814,Maurice Wilson,72431,135651,9 +83815,Zabıta Amiri Şakir,80961,77349,5 +83816,Albertine,62670,3052,7 +83817,,146521,545794,3 +83818,Kelly,260030,21321,2 +83819,Scope,91691,7107,2 +83820,Pvt Dan 'Danny' Forrester,51426,76519,6 +83821,Lightning McQueen,13934,887,1 +83822,Amber St. Clair,104720,30289,0 +83823,College Girl,356752,1841514,36 +83824,Carlo,23750,90546,8 +83825,Laura Halstead,248706,1678833,10 +83826,Life Photographer,43497,84486,8 +83827,Eric,9736,82187,6 +83828,Ray Garwood,108282,89524,4 +83829,Kachra Seth,20359,86018,6 +83830,Judy Stevens,3164,30978,4 +83831,Sakura,253232,533325,1 +83832,Senator Orton Worrell,8988,14792,4 +83833,Kelly,156700,990393,4 +83834,Guy Shouting from Window,198277,157059,30 +83835,Gef,283995,85096,21 +83836,Joe Borelli,97767,89691,8 +83837,Luke,45649,1089888,15 +83838,Doctor's Daughter,14552,569552,28 +83839,Col. Bernburg,212530,38265,13 +83840,,37959,1379307,18 +83841,Trick,47186,99418,22 +83842,Sabitha,209271,130640,1 +83843,Perry,294690,1390503,14 +83844,Jorge González.,291577,1362515,2 +83845,Student in Drapes,246655,1796421,73 +83846,Madhuri (Madam),302435,990473,7 +83847,Verleger,52475,36010,12 +83848,Homme cambriolé,305455,97086,11 +83849,Bank Manager,19971,1491523,6 +83850,Lady at Casino Party,64605,121323,10 +83851,Himself,84309,79515,6 +83852,Young Liam,27259,97437,14 +83853,Robert Savich,95807,82103,3 +83854,Detective in Restaurant,10433,2989,8 +83855,Mario,61035,119068,20 +83856,Matte,141267,1478585,10 +83857,Policeman (uncredited),133941,1491992,14 +83858,Kaj,15830,2244,0 +83859,Pierce,136146,114036,7 +83860,Jonathan Cross / Jaguar,85602,932373,0 +83861,Chris,10596,65802,13 +83862,,214938,1199629,12 +83863,Mrs.Curtis,191322,46780,5 +83864,Magnolia Hawks,17820,82407,1 +83865,High School Announcer (uncredited),270303,1483629,28 +83866,Clip from 'Idiot's Delight' (archive footage),33740,144403,63 +83867,Charleston,46448,18841,0 +83868,,167021,1148669,2 +83869,Bully Kid Arnold,15213,1083493,25 +83870,Magdalena,64499,211474,0 +83871,Catrina Moromete,32601,39961,1 +83872,Woman at Smith Home,413232,128873,19 +83873,Jenny,226701,1797108,5 +83874,Renegade Production Crew,91679,1782604,45 +83875,Nathan,15020,62128,8 +83876,Juan,19621,1169595,12 +83877,L'hôtesse de l'air,382591,78534,15 +83878,Franck,59507,20442,2 +83879,Undertaker 2,22447,219600,13 +83880,Bokuriko,24154,91289,1 +83881,Priya,69775,95505,0 +83882,Truck Driver,5237,928737,24 +83883,Police Insp. Matt Duggan,73313,103366,2 +83884,Elroy Jackson junior,31605,1229,0 +83885,Martin Manning (uncredited),33541,29579,15 +83886,Partier,17483,81951,1 +83887,Narrator (voice),62320,66150,1 +83888,,96106,1281097,14 +83889,Duke of Belmont,79113,587477,13 +83890,Mi-sook,345888,1263930,2 +83891,Ray Halstead,248706,1678834,11 +83892,Michael Hill,65156,52995,7 +83893,Bauer,2349,8202,16 +83894,Gertie,38065,1625033,10 +83895,Matsuko Kawajiri,31512,27778,0 +83896,Spiral Beach Band Member,8669,1281030,37 +83897,Bill Travis,25953,102687,4 +83898,Kid,96133,36890,2 +83899,Maria,44869,1012321,7 +83900,,1661,16784,14 +83901,Steve Crandall (as Charles Knox Robinson),54388,1146141,0 +83902,Karin,42460,42400,9 +83903,Lena Ballinger,310593,3293,2 +83904,Gerald,59722,211900,5 +83905,Harry,140846,58769,11 +83906,,149868,210515,4 +83907,Fumiko Mamiya,50247,131016,3 +83908,Herr Kornbichl,328032,36750,7 +83909,Garcon,33481,110778,28 +83910,Priest,27372,1072014,8 +83911,Cici,220488,87948,4 +83912,Monique,24978,92946,11 +83913,Greeter,64328,7404,21 +83914,Trine,16032,83011,1 +83915,Young Daughter,306952,1511977,34 +83916,Jemmy,105077,1578455,25 +83917,Bill / Fat Albert / Mushmouth / Mudfoot Brown (voice),84805,51962,1 +83918,Ms. Herman,64678,5588,4 +83919,Salvador Puig Antich,1896,3872,0 +83920,Bernard Dubarry,382597,35608,8 +83921,Mrs. Fred (Mary) Morton,26801,34471,3 +83922,Le sergent supplétif Ba Kut,31344,236057,4 +83923,Blue Swan Waiter,153161,14454,13 +83924,Dr. Sercarz,49018,1186714,10 +83925,Hotel Concierge Alessio,37710,88474,24 +83926,Padre Pallini,1481,1239934,15 +83927,Trevor,232100,1267382,6 +83928,Alex's 12-Step Friend,301325,343,1 +83929,Cordelia,46915,43543,4 +83930,Ludovico,195544,1274996,15 +83931,Dave Ross,81660,109183,2 +83932,Kalervo Palsa,203072,149932,0 +83933,Emilie Chomand,169069,54165,1 +83934,Town Magistrate,62764,96594,22 +83935,Soldier-Typist,407887,1741856,13 +83936,John Dominczyk,241239,1232599,14 +83937,Will Beacon,5172,1668305,26 +83938,Himself,83802,45611,13 +83939,Amanda Bennett,38761,218480,5 +83940,DI John Halden,262338,207,5 +83941,Dante Serini,8882,72784,16 +83942,Sergeant on Rooftop,4688,1671515,21 +83943,Karl Heinz Kische,167330,231635,8 +83944,Jessica Evans,427045,1195506,5 +83945,Joe Hyman,185291,5250,2 +83946,Blandine,14765,78425,10 +83947,Coach Baryshova,385372,1585212,12 +83948,,102901,1028289,2 +83949,Charles Arthur 'Pretty Boy' Floyd,4882,39757,0 +83950,Stephen Weeks,56744,221143,5 +83951,"Jacob 'Sparks' Winslow, Radioman",40765,124551,4 +83952,Dottie Robertson,10330,56567,6 +83953,First Commissioner,43811,13976,79 +83954,Chris Mankowski,168027,21029,3 +83955,Specialty Dancer,14589,72895,42 +83956,Jayde,91070,939125,5 +83957,,238925,234821,0 +83958,Server,323675,1077805,32 +83959,Kitty Packard,39130,82315,3 +83960,Esa (Papun isä),148478,148014,7 +83961,Policeman,334557,648609,9 +83962,Mayor Bubba,35977,51707,13 +83963,Monroe Feather,63340,16097,4 +83964,Manny,68750,146294,5 +83965,Max Hecker,11142,20020,0 +83966,Suzie Herself,30155,1086578,20 +83967,Dr. Zabor,38404,1547,0 +83968,,247218,59640,3 +83969,Gordon Vogel,20473,46946,3 +83970,Darryl Zanuck,54982,7676,8 +83971,Mr. Chang,4550,77188,9 +83972,Succubus,246741,1780283,42 +83973,John Bell,358980,9767,2 +83974,Execution Observer (uncredited),3580,1223916,66 +83975,Dr. Amy Lane,30289,328,0 +83976,Chuckles (voice),77887,7918,18 +83977,Kevin,58467,76314,5 +83978,Himself,413782,7450,6 +83979,Daisy - the maid,29094,39802,6 +83980,,103301,240556,2 +83981,Ward Kinsman,151310,82216,0 +83982,Leon Johnson,167951,543349,0 +83983,,62741,125855,3 +83984,Woman Refugee #1,16374,80475,9 +83985,Synonamess Botch (voice),36751,9224,1 +83986,Judge,41599,127024,12 +83987,Hanife,13393,115012,2 +83988,Chief Secretary,108726,1412629,4 +83989,Video Shop Owner,25053,1788578,5 +83990,Reporter (uncredited),213681,1771600,69 +83991,Riley,19989,22133,4 +83992,Annika,31304,589207,0 +83993,Ryan,269173,76242,3 +83994,,315841,3317,10 +83995,Walter,382995,95681,2 +83996,Diego Armando Maradona,84089,27643,0 +83997,Nigel Baker,11007,148617,12 +83998,Roddy,147773,105648,9 +83999,Factory Gateman,168541,39854,10 +84000,Kruger,8053,63214,15 +84001,Voutiritsas,14979,17199,13 +84002,Lord Wensleydon,53231,131408,10 +84003,Martin Kreutz,2503,3872,10 +84004,Petar Cvetkovic,148034,70876,0 +84005,Brian Venible,87388,8699,1 +84006,Lucy Galvez,333352,1105463,6 +84007,Congressman Raskob,31067,16431,4 +84008,Human Survivor (uncredited),82654,1147107,31 +84009,Professor Bill Welbrock,85350,994259,9 +84010,Iron Patriot Fan #2,68721,1392385,74 +84011,Mania Pawlak,8211,26920,5 +84012,Gaylord 'Greg' Focker,693,7399,0 +84013,Slattery,188468,34119,5 +84014,Dominick,13836,74933,12 +84015,Sheriff Dempsey,21950,99829,5 +84016,Le gardien du lion,49398,24500,7 +84017,Work Out Video,381645,1230174,21 +84018,Chuck,347945,74133,3 +84019,Mack,17577,9777,0 +84020,Six Chick,10096,78030,18 +84021,Wino Old Timer,189,1406685,37 +84022,Frankie,65416,181763,0 +84023,Zakia,218329,225175,3 +84024,Prince Kynd,47508,52175,6 +84025,Allison,384682,503103,9 +84026,The Greenman,70500,59692,4 +84027,Mère Angélique n°2,65898,40582,7 +84028,Surveillance Guard,127585,1207366,41 +84029,Mrs. Reid,66113,95266,14 +84030,Seeker Summers,72710,79211,29 +84031,Olivia,12759,63207,2 +84032,Nun,16135,79523,28 +84033,Ying Hui,334132,1031246,6 +84034,Ally Simon,35724,74423,3 +84035,Scalphunter,32068,209585,11 +84036,Conductor,42231,1251744,5 +84037,Julian,266400,63362,1 +84038,Henry Bellamy,3055,153460,11 +84039,Gary Bially,40034,58495,5 +84040,Young Girl,61109,1287805,21 +84041,Beavers,78734,34280,14 +84042,Harry S Truman,145247,101034,9 +84043,Tetsuo's Mother,19545,1239830,19 +84044,cosmetics employee,189151,58601,8 +84045,Bailiff,16996,1219510,25 +84046,Labourer,173494,1346732,5 +84047,Lisa Wheat (uncredited),15022,1303211,37 +84048,Gary (voice),810,18864,35 +84049,Inge Marie Giese,42460,36358,6 +84050,Marina,97672,77667,3 +84051,Commander,52034,237179,12 +84052,Besomighty,340275,1531618,64 +84053,Andreas,122368,1076064,0 +84054,,86321,1692081,5 +84055,Ella,249703,1284970,4 +84056,'Roosty',335498,14874,5 +84057,Tomás,84354,1161651,3 +84058,Maddie Parker,34729,67849,0 +84059,Tapio Rautavaara,55403,143129,0 +84060,Deputy,147829,946334,23 +84061,Salinas,69065,16381,3 +84062,Actress Playing Claire,4960,205701,10 +84063,Young Harriet Vanger,15472,1202865,21 +84064,Tessa Pearson,26768,96180,7 +84065,Antonio (as Alan Andreé),20941,78881,14 +84066,Gambler,38027,1762437,30 +84067,David Chadwick,31445,2015,13 +84068,,77534,582231,8 +84069,Grateful Dead Cover Band,228970,1193640,48 +84070,,332354,3812,6 +84071,Sandy,127803,1085817,5 +84072,Colton MacReady,325173,78110,0 +84073,Patrizio Azzesi,249457,55912,1 +84074,,12453,72299,12 +84075,Cop Daniel,240832,94066,22 +84076,Young Stormy,179826,1404650,21 +84077,Teresa,97110,143132,3 +84078,Ma Jo-goo,92499,1299351,1 +84079,ZEKİ,295748,1159710,8 +84080,Floor Manager,69165,1240839,13 +84081,Archana,55283,545159,4 +84082,Reporter at Sparring Session (uncredited),28000,78087,52 +84083,Damas Dancer #3,268920,1754429,37 +84084,Barbara,118984,79966,2 +84085,Drunk,28482,100912,6 +84086,Franz Liebkind,9899,23659,2 +84087,Janice,182349,1169458,6 +84088,Andy,27414,159004,10 +84089,Zlota,375742,1537079,2 +84090,,47795,18850,8 +84091,Crying Girl #2,414977,1676779,28 +84092,Hawk (Voice),68179,18324,10 +84093,Sailor,43809,1432391,28 +84094,Leonardos wife,55495,1839566,10 +84095,General Qi,455043,82400,1 +84096,Girl in Bed,137321,1358986,26 +84097,Park Sang-Chul,387845,1485087,5 +84098,Diane,28561,101182,1 +84099,Waiter,2567,38529,40 +84100,Wife of Missing Man,50153,932264,9 +84101,,355111,569210,4 +84102,Brick Bardo,31397,138622,9 +84103,Woman (voice),279598,1336140,1 +84104,Dodo Voluptuous / Berthe,90930,39887,1 +84105,Coach Bender,379441,9632,8 +84106,Trailer Park Woman,1595,246358,11 +84107,Ayesha,33146,110197,4 +84108,Dr. Paul Markham,119010,1421630,4 +84109,,26491,70961,11 +84110,Alexandrine Pinardel,61765,9871,1 +84111,Vera,390,5278,5 +84112,владелец кафе,211928,1211399,3 +84113,Cynthia-Rose Adams,353616,1072572,8 +84114,George Ristuccia,11321,17200,10 +84115,Burtie,24978,92942,6 +84116,Mrs. Kingston,397837,3130,4 +84117,Ray,42684,59755,6 +84118,Kulturministern,53689,1197238,6 +84119,Victor,44754,52419,14 +84120,Al Capone,61225,1153611,17 +84121,Joseph,14047,1392606,33 +84122,Nurse,253794,1289599,6 +84123,Barth,1164,17484,21 +84124,The Announcer,76380,1543182,10 +84125,French Girl in Paris,109716,1422170,30 +84126,General Draven,330459,56100,30 +84127,Amy,139998,1031943,5 +84128,Dustin Knight,20210,11702,2 +84129,Bhuti Sangkha,43209,64358,1 +84130,Compte de Maquerre,75142,27276,6 +84131,Chaplin (voice),32202,70759,15 +84132,Libby Franklin,50725,167081,7 +84133,Maj. Jack Drumman aka The Grey Spider,253250,11028,3 +84134,TV Anchor,329865,1756362,53 +84135,Sam Bellington,26514,39774,7 +84136,Bert Pierce,202241,31713,4 +84137,Gregor,37405,16719,1 +84138,Himself,235199,1270476,1 +84139,Sonny Bronston,46567,3785,1 +84140,Frances,59861,2230,4 +84141,Harry Gregson,64047,46300,6 +84142,Don (voice),30060,47547,12 +84143,Queenie,31548,11498,9 +84144,Paolo,42579,128248,4 +84145,Tim,14215,935298,6 +84146,Soldier,32708,77109,3 +84147,Deputy Britt,207178,1096850,11 +84148,Dede,296901,102909,3 +84149,Shanthi,372226,1361991,2 +84150,George Murray,48281,44221,0 +84151,Quoc,309929,1397406,3 +84152,North Korean Army Sergeant 1,387845,1591375,14 +84153,Tokio Tatsukawa,25716,107573,2 +84154,Narrator,248888,1173817,1 +84155,Cheerleader,232100,1267388,13 +84156,Bearded Farm Worker,428493,1819917,6 +84157,Girl,85648,1683142,10 +84158,Shorty,150065,114144,19 +84159,,16015,1445195,20 +84160,La mère de Ludovic,204771,1187206,6 +84161,Lydia Yearby,27105,236238,12 +84162,,105760,1137900,4 +84163,himself,6575,14397,13 +84164,Queen Anne,130062,1090773,3 +84165,Joel Seidler,271185,963693,10 +84166,Erin,82929,928938,9 +84167,Sasha,121888,102173,4 +84168,Nightclub patron,43113,1483405,56 +84169,Himself,238997,219396,0 +84170,Frank James,259975,999716,4 +84171,Tin-Tin Matsson,145194,18068,0 +84172,Secretario en delegación (uncredited),41298,1582410,25 +84173,López,109690,1068844,9 +84174,Vicki Gaye,25633,41226,1 +84175,Cinderella (voice),810,12110,8 +84176,Billy Shafter,99909,95296,1 +84177,Carla's Family #4,2143,132900,22 +84178,Seaman 2nd Class - Bridge,17744,185044,8 +84179,Ashwin,86718,580223,2 +84180,Edward Critchley,19665,44235,5 +84181,Dr. Lipski,84577,930996,5 +84182,Sergeant Joe Portugal,20028,41750,5 +84183,Mutter,27637,1184674,6 +84184,Professor Beckwith,369019,219367,3 +84185,Reporter #2,264644,1279082,17 +84186,Tom Brennan,407173,11153,1 +84187,,53693,1433877,21 +84188,Sheriff Baker,13519,31006,25 +84189,Emma,370178,1281383,0 +84190,Okera no Kinta (voice),63486,239453,8 +84191,Edward 'Eddie' Barnes,218582,11998,0 +84192,Himself,63144,1624619,14 +84193,Dr. Shaker,445916,543132,2 +84194,Burghley,43875,14691,18 +84195,профессор Волынцев,85729,29839,4 +84196,Simone Sissoko,203715,1186091,5 +84197,Sarah 'Sunny' Harper,211729,4761,0 +84198,Jones,1984,90643,4 +84199,Hamp Gurney,30934,47549,5 +84200,"Mr. Morizono, Hisako's husband",111398,63707,7 +84201,Anderson,359412,1813974,20 +84202,TV Executive,64328,133593,34 +84203,Luke,14862,96793,9 +84204,Palazzo Security,206647,1562103,31 +84205,Frank Winterton,39517,174982,13 +84206,Martin Dautand,84016,935360,4 +84207,Phayer (Segment 1),244117,1188558,7 +84208,Jonas,27599,98328,4 +84209,Manoue,157787,66872,5 +84210,Eddie Olsen,262528,592,6 +84211,Security Guard,14047,50589,38 +84212,Aimee,228970,12930,7 +84213,Nurse B,81220,6944,5 +84214,Slick,43075,13359,8 +84215,Joe No Leg,266285,67059,17 +84216,Dan,359870,1287084,2 +84217,Restaurant Patron #2,339403,1193151,17 +84218,Joe,46872,94400,5 +84219,Candy Galore,120478,1072882,10 +84220,Judge Hawkes,214909,13996,4 +84221,Powell,53781,975126,6 +84222,Bruno Fella,1253,5538,7 +84223,Undertaker,198652,3474,8 +84224,Red Harrington,57201,1283,3 +84225,Le journaliste,82495,1295250,6 +84226,Water Balloon Guy,306952,1511987,46 +84227,Butcher,62764,4030,4 +84228,Blondell's Receptionist,414977,1676781,32 +84229,Mr. Gordon,30385,99916,4 +84230,Kao Yao,63441,229303,9 +84231,Simona,121888,1366237,5 +84232,Cashier,242042,1049830,20 +84233,Long Bangs,224944,1642132,6 +84234,Winston Rockwall,172548,1122389,1 +84235,Merv Ferguson,111479,10825,20 +84236,The Number 9 Man / Scruffy / Michael / Neputnian (voice),15060,52794,7 +84237,Royal Messenger / Magic Mirror / Geppetto (voice),10192,12098,29 +84238,,77057,581145,24 +84239,Anuradha,20359,85035,3 +84240,Trevor,336850,1211337,1 +84241,Dimitri,32088,136002,5 +84242,Anna Bladh,128946,213508,14 +84243,Carla / Craps Table Girl #3,153795,1167492,10 +84244,Soldier at Roadblock,1420,55583,20 +84245,Lieutenant Laakso,77068,108476,1 +84246,"Angela, la madre di Leo",182415,27322,6 +84247,Specialty Singer,40916,41216,5 +84248,"Marcel, le chauffeur de taxi",78377,218678,7 +84249,Suzanne,17658,20083,1 +84250,Claude's Date,92496,1288527,10 +84251,Gideon,351901,84222,3 +84252,Okazaki,38010,58604,6 +84253,Intendente,127468,942742,5 +84254,Sue Brown,144183,1219229,5 +84255,Sasha Hammer (voice),169934,220710,9 +84256,Susanne,211158,36486,2 +84257,Laura Fowler,98250,1663885,16 +84258,Maddalena Cecconi,43372,4421,0 +84259,Shona,19166,147884,7 +84260,Champale,87428,6735,18 +84261,Norton's Sidekick,83125,1090132,8 +84262,,77473,1651535,4 +84263,Rose,7548,52893,15 +84264,Gilbert Blythe,397520,1663788,13 +84265,Tommy,59726,1185474,8 +84266,,204007,1169766,7 +84267,Evelina,245700,1321206,34 +84268,Sam,89921,33723,3 +84269,Mr. Clarkson,12483,40009,11 +84270,Drew,150065,52861,14 +84271,Davon Lacks,424600,1704673,32 +84272,Edmund,172386,110419,2 +84273,Waitress at Harry's,91443,1063263,7 +84274,Acrasia,7234,52125,4 +84275,Albini,94809,55797,12 +84276,Stan Stites,38901,58739,4 +84277,,314388,24044,1 +84278,Himself,111332,8529,12 +84279,Cpl. Josh Ray Person,54102,5296,2 +84280,Stewardess,436,5906,13 +84281,High School Student (uncredited),302699,1542699,37 +84282,Mallory Keaton,215579,105647,3 +84283,Suja,70988,1325340,6 +84284,Madame Caesar,42641,1050223,4 +84285,The Red,46872,137582,8 +84286,,190341,1580370,11 +84287,Tanya,38916,142622,6 +84288,Valentin Valentin,50350,16940,0 +84289,Healy,259830,59612,1 +84290,Lioba,9765,49269,3 +84291,Diane,408024,19117,1 +84292,Kazik,62684,235806,4 +84293,James,4953,34111,4 +84294,Sophie,3478,32062,10 +84295,Filemón,14430,1071846,14 +84296,Girl with Umbrella,98125,1283328,25 +84297,,265180,393420,4 +84298,Capt. Andrew 'Andy' Kerr,53865,2923,2 +84299,Mrs. Johnston,339312,1464976,7 +84300,Gabriel Lee,107146,936,0 +84301,Hispanic Passenger,1640,130732,31 +84302,Interrogation Sergeant,9542,29446,7 +84303,Big Junior,239566,1383480,42 +84304,,11328,1432027,26 +84305,Intern #1,9667,181043,14 +84306,Boy in Library,199575,1438909,38 +84307,Hiromi Kirishima,25716,224411,10 +84308,Sally Hawkins,188507,23931,1 +84309,Nurse Lowe,10055,62593,13 +84310,Uncle Barney McBride,255388,95311,11 +84311,Hera (voice),15359,19838,5 +84312,Gorilla Guard #1 (voice),81003,84494,14 +84313,George Anderson,130948,80875,1 +84314,Jimmy Dammier,156360,14688,4 +84315,Dr. Joiner,153161,1411097,23 +84316,Policeman (uncredited),20028,93624,11 +84317,Heinrich,266044,71374,1 +84318,Hayalet Cevher,53301,99315,0 +84319,Chief Inspector Hadden,73027,9874,4 +84320,Pete,322,4743,23 +84321,Joe Carter,68078,138220,2 +84322,Frau Hering,8332,55167,8 +84323,Shell game sailor,156603,30238,11 +84324,The Intruder,29424,97920,6 +84325,"Barbicane, předseda dělového klubu",41213,1337930,13 +84326,fidanzata di Gilles,302802,132843,22 +84327,Hans Kieslowski,86838,4690,3 +84328,Dragon Gunship Navigator,19995,215913,22 +84329,landlady,88564,1467111,18 +84330,Wiser the Owl (voice),59981,17485,5 +84331,Elizabeth 'Bess' Erne,134806,17346,7 +84332,Father Sheridan,262958,14950,2 +84333,Darma (voice),333667,52404,6 +84334,Art student,38322,1869061,62 +84335,Mexican,73984,1130045,9 +84336,Gróa,104062,1068139,3 +84337,Lavinia,281968,1345544,3 +84338,Lester,10710,1778253,19 +84339,Nancy,49199,20652,1 +84340,Freda,52859,12969,6 +84341,Uncle Arthur,12573,21125,1 +84342,Otis Tucker,31263,1576623,7 +84343,Police Officer on Bridge,6341,56456,13 +84344,Young Christopher Rocket,4644,64148,7 +84345,Himself,98586,1074193,9 +84346,Joseph Nagle,8619,47703,17 +84347,Vahvistin,300487,1132168,4 +84348,Al Dodge,72232,21561,1 +84349,Jane,25834,1306417,9 +84350,Appel,2241,23126,12 +84351,Tom,382591,1795216,9 +84352,Immigration Officer,31875,59076,4 +84353,Linda Albright,60086,74070,8 +84354,Nirmala Sharma,54256,88814,1 +84355,Kob Kavita,72733,566093,8 +84356,,27276,551855,46 +84357,,255772,1603928,6 +84358,Singer,46193,120339,6 +84359,,51285,143733,5 +84360,Claudette,352960,1077345,6 +84361,dottor Aguilera,338438,543558,14 +84362,Cowhand,183832,121301,19 +84363,Post Customer,176867,14419,18 +84364,Sheep / School Boy,426670,1716521,25 +84365,Deborah Dainton,145162,46780,1 +84366,,47448,1796593,3 +84367,Assessor Schleyn,52475,1080995,21 +84368,Teuta,25450,1511126,18 +84369,,4266,4426,13 +84370,Lady Heather,42599,104301,5 +84371,Presidente,101342,1195287,16 +84372,Airline Clerk,39219,49941,9 +84373,Reuben (voice),16366,38709,13 +84374,Milena,11330,69021,1 +84375,Mr. O'Brian,289723,1358979,9 +84376,Vampire Cadet #1,346672,1623514,24 +84377,Tailor,26808,107405,3 +84378,,96106,1281101,18 +84379,Concerned Pedestrian,55825,223692,6 +84380,,19812,1441812,28 +84381,Boy Tossing Ball (uncredited),11206,15048,7 +84382,Monster Marie,6933,51457,10 +84383,Becky,15045,52050,10 +84384,Wong Fei Hung,10204,62410,15 +84385,Jenny's Apartment House Manager,27114,89102,23 +84386,Morris,27814,1687941,3 +84387,Sam Richards,146243,60458,1 +84388,Albert Potter,5060,40945,2 +84389,Bríet,72596,102614,5 +84390,Seductress #3,25646,1190310,9 +84391,Mr. Stein,109716,83993,56 +84392,Receptionist,32044,1220731,11 +84393,Yuri Pelagatti,379873,73864,1 +84394,Nutan Tandon,353464,85666,2 +84395,Cholo #1,345915,1711813,35 +84396,Mr. Spritzer,2976,15900,13 +84397,Charlie,18665,26755,10 +84398,Liz Culpepper,24619,20189,4 +84399,David,17236,81504,3 +84400,Phears,406052,476556,17 +84401,Mark,61528,5472,0 +84402,Steve,291871,1362824,9 +84403,Highway Patrolman #1,54523,27412,8 +84404,Fang Zi Jing,121823,126778,6 +84405,Herself,8847,56087,7 +84406,Maria,175334,1368021,1 +84407,Seth,100088,10939,9 +84408,Goku,14164,503,1 +84409,Tarasov,184155,82795,1 +84410,Sasquatch,2179,4764,14 +84411,Masha,429174,1441615,3 +84412,Genjo Sanzo,37789,219752,5 +84413,Tough Sailor (uncredited),51303,126836,13 +84414,Lightning (voice),38579,9562,8 +84415,Police Officer,246127,32891,10 +84416,Capt. Munson,67531,1046208,5 +84417,Giorgio,72057,234821,0 +84418,Father Price,283384,55636,5 +84419,Yasuuri Daimao Salesclerk,81296,1200505,12 +84420,Hustler,85651,1375269,4 +84421,Joe Gennaro,27381,57829,1 +84422,Hag,2454,107943,20 +84423,The Princess,5165,1184828,13 +84424,,402612,1637682,13 +84425,Young Simon,9639,44891,8 +84426,Nat,154537,17181,3 +84427,Reporter,52437,1040564,34 +84428,Dom,111605,998312,3 +84429,Mr. Brent,96433,94294,7 +84430,Trine,11196,1017,4 +84431,un agente,56804,129649,26 +84432,Michèle,10484,1676552,13 +84433,The Meter Man,165864,2130,3 +84434,Eloisa,185180,102060,0 +84435,Head Builder,107985,26863,26 +84436,Shorty Ross,198227,2436,3 +84437,Margaret Watson,20325,139603,5 +84438,Tommy,69668,5921,16 +84439,Nelson,339408,1622086,24 +84440,Abusive Citizen,257344,1683856,58 +84441,Uri Andreyev,68752,22664,5 +84442,Belle Cleek,65599,32799,2 +84443,Sara Keller,450530,43202,8 +84444,Alex Hellman,86600,58339,3 +84445,Milly,237584,78216,5 +84446,Pram Woman,339362,1215629,9 +84447,Mrs. Marvil,34482,60020,14 +84448,Grant,47462,59311,5 +84449,Stu 'Stuey' Ungar,27079,11486,0 +84450,Anna McMillan,31276,1404159,5 +84451,Pro,20210,74633,19 +84452,Saul Bloom,298,1895,8 +84453,Milo,392818,1614891,0 +84454,Bartender / Moon Mayor,280617,1522148,11 +84455,Walter,65599,543730,11 +84456,Mark,747,34551,9 +84457,Isandra,148451,181270,8 +84458,,202984,1185279,8 +84459,Private Megan Valentine,15616,52052,0 +84460,Tubbs Pacer (voice),49013,32532,36 +84461,,342011,1509714,10 +84462,Adolph,54570,30262,14 +84463,Basil,151911,14533,4 +84464,Helen (voice),347945,1549114,9 +84465,,38010,1135434,17 +84466,Martin Beaudinard,37645,28463,2 +84467,Stephon,426265,1709469,8 +84468,Ben,40719,30530,10 +84469,Marie,236395,97042,8 +84470,Dragomir,209248,48859,4 +84471,John Whipple,84708,34497,4 +84472,Andrés Artiaga,337101,590883,7 +84473,Le gendarme en tenue,59118,1156339,28 +84474,Anna Selanova,74436,103720,7 +84475,,130957,1487525,14 +84476,Rosemary Bower,24341,37028,1 +84477,Toa Gali (voice),19325,45923,7 +84478,Dirty Cowboy,188161,1542939,33 +84479,Tío de Rober,115665,1061847,4 +84480,Virva,55500,935865,0 +84481,,222388,16578,3 +84482,Sphinx Receptionist,2577,57575,8 +84483,Chica Piropo,25376,968351,6 +84484,Victoria,315880,57574,3 +84485,,327225,1295565,20 +84486,Shulman,133458,1024803,10 +84487,,44238,111793,0 +84488,Proprietor with Telephones (uncredited),31324,120701,12 +84489,Otto Brenner,248933,1273766,9 +84490,Jourd'hui,329809,224150,3 +84491,Loan shark,49642,119446,6 +84492,Bully,167810,136532,3 +84493,Warehouse Man Driver,240832,1426906,49 +84494,Technician,2503,89830,16 +84495,HR Staffer #2,331313,1767210,33 +84496,Jessie the Yodeling Cowgirl (voice),10193,3234,3 +84497,White Labor Organizer,14047,1392607,34 +84498,Hal Wilson,41234,34754,0 +84499,Maddock,42764,101575,3 +84500,Stepsister,92349,992882,4 +84501,C.K.,51036,51215,10 +84502,Scotty,166393,1147897,5 +84503,Shirley Crown,38546,18980,7 +84504,Woman at the Olympus Ball (uncredited),1976,115366,19 +84505,Patsy Ramsey Auditionee / Herself,430826,1891492,18 +84506,Detlaff,47758,5832,3 +84507,Paul Makely,19754,976171,16 +84508,Capitano Martin Scott,50849,15139,2 +84509,Miss Samson,245168,1216193,20 +84510,The Mandarin,177677,1562080,29 +84511,Commander-in-Chief,27937,99297,7 +84512,Ava Stanton,60599,1329537,17 +84513,Frankie,75576,35551,2 +84514,BB-8 Performed By,140607,1329041,65 +84515,Sam Wood,294016,20211,10 +84516,Rosine,68023,4166,16 +84517,Commando,1724,1366350,16 +84518,Peggy Cleek,65599,543726,3 +84519,2nd Mother,1942,184973,14 +84520,Dream Girl,316154,1842092,17 +84521,Sam Montgomery,11247,5958,0 +84522,Mad Hog (voice),57089,11159,12 +84523,Ann Marie,371462,1296187,3 +84524,Nancy Reagan,132363,6352,22 +84525,Grandma Longneck,339526,35109,6 +84526,,84420,1039424,9 +84527,"Yuki the Snow Maiden (segment ""Yuki-Onna"")",30959,122828,12 +84528,Alex Summers / Havok,127585,429,22 +84529,Headmistress,49522,11213,3 +84530,,43984,1351403,4 +84531,Jean Lawrence,31445,81798,8 +84532,"Ivar, kjelketrekker",20372,1270297,10 +84533,Astrid,99361,104266,5 +84534,,11196,64122,8 +84535,Thompson,91583,92697,7 +84536,Koichi,79382,586790,0 +84537,Eliana Wynter,75623,231054,1 +84538,Kitchelle Storms,50725,49961,4 +84539,Youngman Duran,65603,49877,0 +84540,Man,172897,11702,0 +84541,Russ Cargill (voice),35,13,16 +84542,Inspector Iriake,62472,235382,9 +84543,Anna,58547,21044,6 +84544,Teddy,51442,663,9 +84545,Hugh Rhys-Jones,10918,47643,4 +84546,Sabrina Spellman,15674,78501,0 +84547,Géraldine,61267,78480,6 +84548,Doña Chole,264525,955272,15 +84549,Himself,43065,102429,9 +84550,Frank,110909,5950,6 +84551,Anthony Ashe,23843,87312,1 +84552,Bishop,31472,153069,16 +84553,Joe Wormser,210609,119776,3 +84554,Porsche Driver,71140,560303,13 +84555,Jess,291866,1362816,5 +84556,Native Witch King,43149,3261,6 +84557,,135670,517973,0 +84558,Girl in Hotel Lobby (uncredited),73430,106099,10 +84559,Tourist / College Student (uncredited),337339,1805144,56 +84560,Aide,206647,1599261,50 +84561,Dr. Galbraith,28438,84935,4 +84562,Arthur,89560,5418,6 +84563,Tante Olli,231216,16798,5 +84564,o.A.,5646,44575,2 +84565,Rob Rodriguez,150065,145208,11 +84566,Monsieur Gastier,62675,28247,9 +84567,Gerald Howe,20640,85359,7 +84568,Polo,136582,1151807,6 +84569,Gopi Srivastava,413882,6497,4 +84570,,8070,1433965,15 +84571,Motel Girl,81475,1037704,14 +84572,The Hypnotizer,108712,1491376,12 +84573,Daffodil,33338,564838,3 +84574,Roo (voice),13682,90453,2 +84575,Andrei,8899,19118,5 +84576,Huang Zhong,117506,135834,8 +84577,Christian Grey,341174,1254583,1 +84578,Peter Cameron,44945,1467228,6 +84579,,46712,25911,0 +84580,Joey,252680,232499,5 +84581,Herr Orgon,55544,3000,4 +84582,Maharajah,115109,33278,11 +84583,Jabber,13777,75260,13 +84584,Hubie Pyatt,15982,11088,6 +84585,Kuen,338421,140478,12 +84586,Callie Brooks,129798,1206427,4 +84587,Luis,114333,106274,2 +84588,Cofield,83890,17764,4 +84589,Saladin,58905,84230,2 +84590,Witness for Peace,2143,132925,47 +84591,theater producer,48962,147899,10 +84592,Jenny,4550,1117876,2 +84593,Herself,16800,939004,19 +84594,,125835,1302214,14 +84595,Doctor,3782,131194,13 +84596,Slow Moe (voice),227257,105799,13 +84597,Sheriff John T. Langston,11509,8930,5 +84598,Jenny Jakoby,286545,549534,3 +84599,Adam,279096,64295,1 +84600,Manager,46189,2497,9 +84601,Kim Ki-yeon,16371,80461,4 +84602,himself,82627,928344,6 +84603,Harry,270015,105454,13 +84604,Veronica,57749,199313,1 +84605,Ike Howes,46623,19968,14 +84606,Hector Fieramosca,11813,18841,0 +84607,Col. Arthur,66045,548015,2 +84608,Holt,440777,16644,4 +84609,Herbert Muhammad,69903,127601,3 +84610,Ken,285270,4443,8 +84611,Jung So-Yool,385261,240145,1 +84612,Prancer (voice),79218,51990,8 +84613,Aiden Peters,302042,33668,7 +84614,Ming,72207,79082,16 +84615,Gerry Lopez,291,4330,8 +84616,G.H. Hardy,353326,16940,0 +84617,Boanlkramer,17008,18072,1 +84618,,1661,49178,12 +84619,Bernie Coot Special Operator,354287,1205630,32 +84620,Archbishop Lang,65035,31923,8 +84621,Aharon Pollak,270646,584189,8 +84622,Hank,276550,1574430,5 +84623,Lefty Merrill,157343,5788,0 +84624,Fong,11960,52575,2 +84625,Halloween Dancer,11247,1776535,54 +84626,Rob Brydon,63578,47632,1 +84627,Mařenka,51902,227726,2 +84628,Janice Weston,9981,1475,3 +84629,,461088,1584244,8 +84630,Halloween Dancer,11247,1776531,47 +84631,Tyler,302528,1098732,8 +84632,,42501,26371,15 +84633,Vice Adm. Philo Tecumseh Bludde,143092,29363,4 +84634,,375794,1303064,4 +84635,Toby,41996,127461,4 +84636,Sonja,35113,89021,7 +84637,Cooper,22476,59238,0 +84638,Lord Rockingham,131764,8727,2 +84639,Captain Cotton,94225,1524410,14 +84640,Isis,426230,1813472,19 +84641,Harlan Thompson,104528,24813,0 +84642,Ottavio Berlinghieri,3870,27597,9 +84643,Mr. Dicks,48207,24706,18 +84644,Fighting Frog Mascot,11247,1749223,44 +84645,Xiao Zhuang,270724,1291460,2 +84646,Radiator child,16171,79870,19 +84647,,133783,1476847,5 +84648,Gary,64499,239945,3 +84649,Mami,12811,1827451,8 +84650,The ballad singer,80443,117950,3 +84651,Jesse Orcutt,326285,1621148,18 +84652,Bill Kavish,369697,221018,4 +84653,Geoff,203819,1014587,6 +84654,Davis,35129,240211,8 +84655,Savino,160844,101556,10 +84794,Ministro Magno,374416,78697,7 +84656,Herself - Clip from 'La Fiesta Santa Barbara' (archive footage) (uncredited),33740,590617,75 +84657,Garde du corps Franck,11227,61611,9 +84658,Potiphar,24272,3547,4 +84659,Windy Jones,166621,30006,10 +84660,Jen,266400,28475,5 +84661,Sandra,102256,1343375,4 +84662,Judge,3580,93345,56 +84663,Lisa,24993,22248,6 +84664,George,298931,105493,7 +84665,Lynn Kelly,84104,1077361,4 +84666,Sarita's Father,37308,32153,10 +84667,Snyder,82395,137161,3 +84668,Melanie,2355,17420,11 +84669,Grisham,50647,1256260,26 +84670,Pitch (voice),81188,9642,2 +84671,Roddy Douglas,30993,1708445,7 +84672,Jesse Winchester,248268,1717282,6 +84673,Doctor,49837,142892,6 +84674,Other David,63877,42711,5 +84675,First Lt. Jim Gary,32634,12149,1 +84676,Herself,315850,19578,2 +84677,Divine Howard,102668,1031780,4 +84678,Renee Coliveil,92809,1338404,3 +84679,Officer (uncredited),16442,33759,50 +84680,Ung mand der skal giftes,56858,70350,7 +84681,Dominic,118134,13566,1 +84682,Assay Assistant,176867,1422893,25 +84683,Enedina,4497,37510,10 +84684,Gabriel Baker,340101,7030,10 +84685,DÖW-Mitarbeiterin,167424,1377987,15 +84686,Danny Machin,54093,25074,11 +84687,Howard Price,1723,1243,0 +84688,Mrs. Burke,45219,107678,16 +84689,,355008,65471,9 +84690,Devil Chicken,165718,1253077,5 +84691,André Peyrac,35008,55805,3 +84692,Piggy King,32654,25251,6 +84693,Gianni,298722,225298,7 +84694,Martita,107073,1481493,5 +84695,,86985,1523041,25 +84696,Rafiqa,310888,1560229,6 +84697,Liao,413198,116423,7 +84698,Casey Price,236324,1896145,15 +84699,Ma Jones,41574,1583292,14 +84700,Seth,427045,1256300,1 +84701,Temptation miss 1,280019,1336805,11 +84702,Mary Stevens,176627,2434,0 +84703,Joey Hyatt (as Anthony Curtis),70151,3150,3 +84704,Blinky's Mum (voice),339669,228704,8 +84705,Baths manager,59408,5802,12 +84706,Johann Wulrich,63315,236876,3 +84707,Bus Station Lady,30941,142244,40 +84708,Cyriel,298396,1600850,15 +84709,Butterfield,77794,31439,4 +84710,Dimples,59678,236697,9 +84711,Gleb,64736,86951,4 +84712,Clara,9736,96930,7 +84713,Mr. Cooper,68684,106911,25 +84714,Hillbillie,5753,45367,7 +84715,Daisy,94365,132398,1 +84716,Jessica,24351,124687,4 +84717,Madeleine Doré,18381,142689,1 +84718,Capt Magambo,282963,1230425,4 +84719,Dexter,42619,8633,10 +84720,Gastine,270400,1845880,6 +84721,Itself,44657,1627036,3 +84722,Himself,27637,66621,42 +84723,Minor Role,43811,131003,75 +84724,Scylla the Nymph,260030,1424438,8 +84725,Hickey Gang Member,111470,1615560,33 +84726,Tracy,16296,1706342,9 +84727,Julie,144792,29599,1 +84728,,16371,554826,7 +84729,Professor Bowler,7511,1524,8 +84730,Amparo,337101,983998,5 +84731,Ann-Sofie,193523,1136976,3 +84732,Kim Pan-joo,15067,88298,4 +84733,le infirmière,1568,17627,4 +84734,Professor Willis Evans,43546,34287,3 +84735,Terence (voice),153518,2228,6 +84736,Rita,18120,6536,11 +84737,Jake Gray,14147,49624,0 +84738,Tai Kuang's sifu,46114,229302,6 +84739,Rafael,273481,17688,7 +84740,Business tycoon,86600,30035,7 +84741,Teacher,188598,1776754,11 +84742,Constable Kamble,393562,1699685,9 +84743,himself,289960,936885,2 +84744,Clarke,70695,1316689,1 +84745,Gary,71139,55265,14 +84746,Tyler,42309,232,3 +84747,Yusuf,43464,84229,6 +84748,le lieutenant Ferrou,58928,1033622,8 +84749,Intrepid Pilot,14916,1781157,7 +84750,Mrs. Geoffrey Drake,54242,150190,4 +84751,Dirk Zebra,93116,107069,1 +84752,Flavia,43544,67323,13 +84753,Nick,85350,1327010,48 +84754,Nevesta,255160,28782,1 +84755,Adèle Varens,38684,1089520,21 +84756,Slater,39958,8212,1 +84757,Simon,13022,49360,5 +84758,Dutch Bob,115276,21183,7 +84759,Briton Biker,240745,1660697,25 +84760,Silvio Cola,53805,227359,3 +84761,Allistair,172828,1289016,11 +84762,Anne,79343,37628,3 +84763,himself,30966,107374,1 +84764,Field Marshal Erwin Rommel,102155,19551,9 +84765,Himself,16231,80124,0 +84766,Vendedor Beco,70666,1863909,52 +84767,le professeur de piano,329724,588958,12 +84768,Nosey,17796,1219899,14 +84769,Alice,79892,39502,12 +84770,Dick Richards,68184,84841,1 +84771,La mère,39413,1654,6 +84772,Tod,37420,98951,10 +84773,Background actor,52454,1630331,57 +84774,Sam,38065,146476,5 +84775,Viviana,173914,521916,1 +84776,o. A.,3016,2010,10 +84777,Françoise Graff,35008,7276,1 +84778,Detective,210047,38086,15 +84779,Hugh MacKessac,121154,80365,2 +84780,Mike Perry,109424,37204,6 +84781,Kelly Hanson,7353,530,1 +84782,Valentine,382501,2405,0 +84783,Maloin,31262,96384,0 +84784,Mrs. Chartens,214909,955108,13 +84785,Ryoonosuke Kinami,79382,586791,1 +84786,Mr. Conte,10740,15854,7 +84787,Major Frazer,32634,53010,5 +84788,Tutor,348320,1869094,25 +84789,Frozen Woman,338676,1663868,19 +84790,Tourist with University Shirt / Cape Buffalo (voice),10527,1232325,29 +84791,Arturo the Tailor,37710,14149,32 +84792,Mrs. McPhillip,43896,2929,5 +84793,Joanne Jefferson,1833,10580,6 +84795,Cab Driver (uncredited),61151,112009,16 +84796,Jason,310972,62920,2 +84797,Uma,208637,1046747,1 +84798,De Maux,170689,29517,11 +84799,Steve,36817,12223,7 +84800,Ronald,8371,44384,5 +84801,Charly,284564,21319,0 +84802,Gallo's Accomplice,206647,1545547,17 +84803,Spirit,74950,573537,2 +84804,Footman,31993,1286628,42 +84805,Jack,294272,8210,2 +84806,Uther,274857,8783,4 +84807,Molly,6589,20480,6 +84808,Maybelle's Store Dancer,2976,1752343,68 +84809,Oriana,96419,1009355,0 +84810,Bert Langridge,60759,112977,6 +84811,Male noble,48180,140022,17 +84812,Reception Guest (uncredited),147722,164809,32 +84813,Anton,30974,147883,4 +84814,Lukas,203539,58322,5 +84815,Bathing Beauty,43812,1468536,62 +84816,Axel Olsson,19740,30044,3 +84817,Sheriff Kip McKinney,11577,58423,2 +84818,La jeune fille du vestiaire,5511,20945,4 +84819,The Girl,387558,1590839,3 +84820,Captain Kidd,44631,33007,5 +84821,Gaby,338189,1650716,5 +84822,Sengyobu Assistant,81296,1252763,5 +84823,Shaggy,21956,16418,3 +84824,Himself,41569,7487,0 +84825,Gabru,341007,1706350,16 +84826,Joe Connor,8588,12791,1 +84827,Lawrence,200511,115433,7 +84828,King James VI,11788,1125,6 +84829,Band Guitarist,413421,1779680,6 +84830,Mr. Turner,188102,16591,10 +84831,Grandma Bossier,16659,127136,5 +84832,Mr. 'Happy' Jimmy Smith,413232,14685,4 +84833,François Sim,372640,28281,1 +84834,lui-même,90930,938899,8 +84835,Dick Jörgensen,24023,6327,7 +84836,Golda Meir,82598,27604,7 +84837,"Eneida, Gabriel's Fiancée",86234,933059,1 +84838,Silas Sinister,34204,91387,4 +84839,Halleck,242382,6805,11 +84840,Sgt. Wayne Von Clasen,199373,1633437,17 +84841,Superman (voice),177271,1221888,5 +84842,Rita,103620,430313,4 +84843,Maud (voice),77459,4390,4 +84844,Mary Epps,76203,34490,5 +84845,Jack Rainier,280092,155933,24 +84846,Cora Redding,16331,502,3 +84847,Detective,27276,543812,12 +84848,Andromeda,18696,19646,1 +84849,Lithograph,12206,13377,5 +84850,Rani,174645,1157596,11 +84851,Mrs. Wright,58664,239298,11 +84852,Индеец Джо,74705,938163,2 +84853,Harold Bloomguard,48852,4512,9 +84854,Paddy,390587,1240398,1 +84855,Dana,129518,1060228,1 +84856,Carmen,254439,225100,5 +84857,Matilda Smith,35320,80348,21 +84858,Himself,413579,52154,1 +84859,Schwarzer,104376,143702,14 +84860,Maxie,46586,136983,10 +84861,Alvin Fuddle,3937,34181,5 +84862,Dave Walachowski,242042,97446,9 +84863,Himself,14923,4785,71 +84864,Referee (voice),62211,19278,18 +84865,Ted Warren,106821,1700482,11 +84866,Uncle,356191,1279537,12 +84867,Heather,71503,563092,1 +84868,Rival Skater #1,20210,945719,16 +84869,Haggis (voice),27653,54859,12 +84870,Waitress,72105,1502855,34 +84871,Burlington Potluck Guest,356752,1841538,62 +84872,Judge Watson,225499,14518,5 +84873,Mr. Price,47115,19152,3 +84874,"Lady Mountdrago (""Lord Mountdrago"" segment)",45577,133247,9 +84875,Referee,108222,1173157,39 +84876,Stan Gilroy,51209,227234,25 +84877,,104945,41063,6 +84878,Tony,24163,148886,3 +84879,Jody,208529,1732666,10 +84880,Bus Passenger (uncredited),156700,1608002,47 +84881,,285685,1658533,16 +84882,Locutor,373397,1605615,15 +84883,Leo,339944,1821364,9 +84884,,276846,146974,14 +84885,Abra,49717,142681,0 +84886,Hochgart,277968,15486,16 +84887,Matt,255278,1334653,7 +84888,Chuck,159638,1116629,2 +84889,Himself,26254,175194,2 +84890,Juli,260826,89647,1 +84891,Chinook Co-Pilot,193756,1042362,15 +84892,Sophia Brent,255496,16217,3 +84893,Ernest Talbot,130507,81168,9 +84894,Armstrong,47794,15196,8 +84895,,248417,1240784,0 +84896,Sharon Davison,245703,1133063,8 +84897,Tank Soldier,2080,1219446,54 +84898,Mr. Willerstein (voice),1267,78798,10 +84899,Colonel,83444,86706,5 +84900,Melanie,22897,1100549,20 +84901,Nancy,36691,4038,3 +84902,Trixie,213121,109869,2 +84903,"Leah ""Fang"" Hellerman",43931,71815,6 +84904,Himself,85910,1431,3 +84905,Dominic,184098,8177,1 +84906,British Soldier,1116,1896890,66 +84907,Dance-off Zombie #1,17287,98314,12 +84908,Scientist,19545,552182,21 +84909,Phil Defer,35026,1653239,17 +84910,Junior,23750,83553,9 +84911,Gilles,186991,45152,2 +84912,Tino Hull,14977,51995,5 +84913,Doris Lunders,172520,214142,9 +84914,Danny,92269,1471447,12 +84915,Mileva Einstein,15044,29235,8 +84916,Len,115626,19277,4 +84917,Marc,13739,20082,4 +84918,Vallató I,94663,586255,8 +84919,Stephanie,96987,1287658,2 +84920,,25626,99687,27 +84921,Gloria,340881,10223,7 +84922,Ênio - 5 anos,361146,1890676,5 +84923,Cab Driver,8414,1196493,8 +84924,Prince Felix Lichnowsky,129553,51128,9 +84925,il playboy,77000,119993,7 +84926,Shelby Blake,69560,265863,2 +84927,Bookie,255160,1898242,29 +84928,Mihailo Andrejević,255647,144630,6 +84929,Old Nielsen,11832,209398,10 +84930,Camilla,297288,234814,6 +84931,Uzhton,106546,36218,4 +84932,Tamako Nobi/Tammy/Nobita's Mother,265712,77931,12 +84933,Cook / Doris / Beatrice,16899,1536979,14 +84934,Justine Duchannes (uncredited),109491,84227,28 +84935,Ana,191312,1067953,1 +84936,Mária gyerekkori orvosa,436343,125402,6 +84937,Victor,329724,225004,11 +84938,,28482,1387996,15 +84939,Johnny Walker,12787,2295,0 +84940,Susan,444193,52271,3 +84941,Jane Peyton-Howard,52360,10022,1 +84942,Lavrans,57438,1671,33 +84943,Uncle Murf,128270,1218171,23 +84944,Wardrobe Lady,4964,1222189,28 +84945,Apocolypta,384450,83105,10 +84946,Collègue de Jean 1,34013,71377,4 +84947,Khara,302026,1504486,3 +84948,,63260,1032504,7 +84949,Joanne,22897,5960,5 +84950,,87204,934968,5 +84951,Johan,15440,105563,8 +84952,D.C. Cracker,19989,2547,1 +84953,Marina Jeskow,315335,47852,5 +84954,Juan,300596,27462,2 +84955,Stormtrooper,330459,1408400,96 +84956,l'orateur rébublicain,4279,25064,13 +84957,Dr. Peter Gregson,109251,2077,3 +84958,,83195,131288,3 +84959,Kayla,13058,148284,4 +84960,Humara,37308,1007561,11 +84961,Mrugala,52920,136690,7 +84962,Becky,127380,1695065,30 +84963,Radnor,55846,63362,9 +84964,Judge Odenkirk,245706,941524,9 +84965,Bony Lizzie,68737,43202,7 +84966,American Sergeant,19996,1764128,18 +84967,Mary Hussey,149926,47699,5 +84968,1st Policeman,103578,1185530,4 +84969,Nishio,104776,1056613,3 +84970,Editor Grant of the Morning Advertiser,109716,22606,33 +84971,il conte,3520,34264,14 +84972,Sugar,189888,108155,7 +84973,Arturo Santini,329868,46936,3 +84974,Barber,148284,1328506,12 +84975,Raymond,277688,5661,1 +84976,Lydia Perrish,149509,8183,10 +84977,Robert,140846,41686,0 +84978,Son Goku,24752,90496,2 +84979,Julian's Mum,18739,1645,11 +84980,Abraham Lincoln / George Washington / Bill Clinton / Isaac Newton / New York City Cop (voice),82703,84495,31 +84981,Hawk,54523,1026046,4 +84982,Pedro Paterno,359105,947522,8 +84983,Shorty,44287,7014,5 +84984,Valeria Messalina,206514,110456,9 +84985,Sumoto,117212,1200242,15 +84986,Liesel Kolff,266314,23378,7 +84987,Debbie Torne,53172,20750,3 +84988,Erzherzogin Sophie,459,6255,6 +84989,Pool Dad (uncredited),184345,154837,13 +84990,Chairman,177677,1404403,15 +84991,Detective Hirama,282070,2541,12 +84992,Vakil,20364,86018,11 +84993,Liliana Rovira,32546,19820,1 +84994,Lukasek's Grandmother,158947,1784283,6 +84995,Eileen Bond,266856,192838,30 +84996,Frederike,61035,148580,9 +84997,Starx,24397,220704,10 +84998,Danish,323426,550165,2 +84999,Katie (5 yrs),200727,1734959,12 +85000,Huang Gai,12289,1044559,14 +85001,Phil,305932,1525497,11 +85002,Gorgo,189,1268114,40 +85003,Tom Cronin,2503,27030,8 +85004,Clary,13600,17352,18 +85005,Kid,80389,999329,4 +85006,Tony's Father,274479,1658337,24 +85007,Captain,26331,1567028,10 +85008,Darcy Walker / Black Scorpion,29054,18891,0 +85009,Louise Heggar,98328,1017303,2 +85010,Travis,44389,76989,11 +85011,,47046,1601530,7 +85012,Henkie Flodder,11084,68183,3 +85013,Mailman,38322,83586,17 +85014,Tim,33789,205984,4 +85015,Charly Matteï,37645,1003,0 +85016,Michael,26042,91607,3 +85017,Sona Taghiyeva,371741,1546534,8 +85018,Nicanor Parra,80717,590882,8 +85019,RAF Officer Soe,369885,1276910,61 +85020,Officer Tung,45505,116423,9 +85021,Mr Parsons,204255,1365437,10 +85022,Juhani,362758,150977,1 +85023,Alex Green,369697,4273,3 +85024,Dr. Nandi Montabu,339530,1465469,2 +85025,Jenna,384737,1042684,5 +85026,Comandante della nave,42436,80875,9 +85027,Tshombe (as Momelezi Ntshiba),199374,1455089,15 +85028,Valeria Caldas,5460,43449,7 +85029,Innkeeper,52021,1088213,12 +85030,Awkward Davies,8619,17837,20 +85031,Kathleen,2998,225931,5 +85032,Tommy Morris,77860,30766,2 +85033,The Killer,308269,1447884,5 +85034,Nicole,16022,155442,12 +85035,Omar Razaghi,42819,41309,2 +85036,Rowley Jefferson,82650,111922,1 +85037,Rosemarie,12696,23378,1 +85038,capo della narcotici,173177,1014913,5 +85039,Julie Benton,45726,8237,0 +85040,Exeter,831,12351,0 +85041,Roy Brewer,294016,1183546,20 +85042,Hans,31472,58860,21 +85043,Young Ruth,286521,114843,6 +85044,Jake Smith,19338,16554,4 +85045,Commodification Montage Dancer,8915,1585603,17 +85046,Gallagher,29168,1056117,3 +85047,Erik Larsson,82448,928008,4 +85048,Vic Owen,174751,467645,4 +85049,FN-3181,140607,15347,50 +85050,Patrick Keenan,156700,222122,1 +85051,Roxane's Father,1966,20285,17 +85052,Ken,12912,59312,11 +85053,Kriemhild,42512,550724,0 +85054,Weirdo,76681,63214,8 +85055,Mrs. Soames,82781,1218005,14 +85056,Rachel Barber,66113,75125,4 +85057,Sas,2764,27960,4 +85058,Soldier 1,338676,25445,7 +85059,The Cat (voice),339669,17328,3 +85060,"Shuji, husband",49308,590249,1 +85061,April Epner,13196,9994,0 +85062,Gérard,27095,72666,3 +85063,Barman - Rowing Club,266856,1281195,15 +85064,Shirley (uncredited),19286,105003,12 +85065,Doreen Pazienza,332979,1367241,6 +85066,,107682,1172955,11 +85067,Officer Minion,134201,97697,17 +85068,Club Hopper #3,443007,1377317,5 +85069,Rheza,215016,32225,3 +85070,Capitano spagnolo della nave,52914,32679,21 +85071,Marlene,28170,99938,2 +85072,Married Woman,351065,1128322,9 +85073,Merchant,84636,14821,4 +85074,Hal Clendenning,27543,14359,6 +85075,Gwen Mason,12591,59967,6 +85076,Father,84226,67979,2 +85077,Mortal Man 1,205584,1535062,35 +85078,Помреж,77534,275073,11 +85079,Cab Driver,25643,2249,10 +85080,Record Exec,40208,45363,2 +85081,Himself,111332,10964,0 +85082,Baker,23378,90039,1 +85083,Il comandante in secondo,43379,1037360,12 +85084,Hideo,25053,52809,4 +85085,Dinky Winks,12279,2053,20 +85086,"Alan ""Mollymauk"" Musgrave",52867,7505,0 +85087,Belucci,72279,24379,2 +85088,Conjurer,104466,11523,0 +85089,Louis XIV,152539,64215,3 +85090,Karen,73565,33449,2 +85091,Tanner,24963,9378,9 +85092,Medical Examiner,277710,1473231,12 +85093,Dorothy 'Tootie' Ramsey,109170,98628,4 +85094,Paul Thomas,4266,19162,1 +85095,Angelena,55681,98682,4 +85096,Bill,269795,1068123,3 +85097,Abdullahın Adamı,307020,571444,2 +85098,Woman in pool (uncredited),169068,1738450,20 +85099,Arvid,303636,1673468,6 +85100,Alex,257214,134673,3 +85101,Mike,385372,1359710,11 +85102,Stripper #3 (as Angelique Gauthier),117509,574170,12 +85103,Terrified Woman,178809,946971,18 +85104,Deputy Lee,86363,4316,4 +85105,Hat Check Girl,98125,104155,17 +85106,Jarrod,45556,1127871,13 +85107,Saphira (voice),2486,3293,7 +85108,Batranul Badeata,32594,28833,3 +85109,J. Durga Rao,109001,88817,3 +85110,Mikhail Smirnov,13506,109058,5 +85111,Scientist,102668,154035,21 +85112,Tom Garnett,19255,61659,14 +85113,Sir Edward,257831,1061875,5 +85114,The Baron,186971,145120,9 +85115,Private Robert Ortiez,6973,1450756,20 +85116,"Pablo, the Ranch Chef",50079,30719,6 +85117,Queen,240745,63,2 +85118,Nik,82624,913618,1 +85119,Rikard,193523,93236,1 +85120,Iza,377158,591258,1 +85121,Eka,180299,1154465,2 +85122,Muldoon,104427,14453,9 +85123,Großvater,11139,11216,3 +85124,Child in Epilogue (uncredited),3059,1031280,87 +85125,Tina Spangler,60662,205,0 +85126,Child,62764,1091869,24 +85127,Bibiana (as Evelyn Stewart),88486,5969,0 +85128,Deputy Cotton,152736,83968,4 +85129,Prelate,68737,27124,13 +85130,T-Man (uncredited),15794,474632,49 +85131,Teresa Agnes,294254,115150,1 +85132,Avery,24094,97467,31 +85133,,107916,1042751,4 +85134,Bandy Legs,6972,1447731,29 +85135,EMT,354979,1835279,62 +85136,Mary Beaton,43875,82383,12 +85137,Carrie Turner,33570,110915,9 +85138,Iron Crow,263341,2974,6 +85139,Gloria Vanderbilt,376523,1729129,1 +85140,Alvarez,48677,64351,5 +85141,Paola,325780,38763,4 +85142,Shelby Cummings,11247,68769,5 +85143,Don Giuseppe D'Aniello,58402,1137525,5 +85144,Mr McCauley,425774,1707946,53 +85145,,169364,1864082,5 +85146,Takeshi Mikami,25716,1059876,12 +85147,Officer Assassin,177677,1464090,23 +85148,Jesco White,43817,114252,0 +85149,Neytiri,76600,8691,1 +85150,Young Farm Worker,428493,1819919,12 +85151,,16371,554825,6 +85152,Clark,291866,1222726,3 +85153,Rawlins,156335,124636,17 +85154,Maria Reina Valachi,33357,15753,2 +85155,Stagg,31411,80545,2 +85156,,419522,1898302,26 +85157,padre Raffaele,301272,1520768,10 +85158,Mrs. Malaprop,32634,88460,17 +85159,Storm,14452,1465,10 +85160,Una detenuta,66893,1059885,13 +85161,Butler,91480,1196064,7 +85162,Jackson,182228,165282,4 +85163,Rani,276846,35776,1 +85164,Švarckopf,33611,111069,11 +85165,Toilet John,118760,1734734,9 +85166,Eileen,38244,42571,4 +85167,Brahmam,125835,113810,8 +85168,Willie Younger,183825,978032,16 +85169,Himself (in theatrical release print only),38770,33085,25 +85170,William W.J. Abercrombie,248469,10018,2 +85171,Himself - Roaster,296192,1748,4 +85172,Professor Niv Cohen,46738,241930,6 +85173,Herself,85984,4430,8 +85174,Sumiko Kanamura,52728,1029310,2 +85175,Father Theriault,101998,76417,13 +85176,Al,79935,588334,11 +85177,Caspar,4441,118,2 +85178,Young Sam,192023,1172459,7 +85179,Aidan Keller,10320,26292,3 +85180,,60199,3128,4 +85181,Cole,172847,1155553,6 +85182,Mary Custer,108224,246914,1 +85183,Doris,141643,1115152,12 +85184,Captain Bashir Ali,101783,141336,4 +85185,Ignazio,58074,12341,3 +85186,Montalbán,251555,587099,11 +85187,Frat Boy,77930,1784647,52 +85188,Ren Mito,49258,238806,7 +85189,Ben Kalmen,36691,3392,0 +85190,Alice Drake,429238,1505505,1 +85191,Tiger Lo,25074,1175529,4 +85192,"Piestro, Annuanciata's father, hotel keeper, man eater",65131,86695,1 +85193,Herself,417870,61663,14 +85194,Reporter,213681,1771535,27 +85195,Shepard,46436,10228,13 +85196,King of White Trash,62132,1698149,7 +85197,Harris,70133,53246,6 +85198,Storm Reynolds,44562,173191,3 +85199,Andy,112973,171373,7 +85200,Soldier,80410,1742866,16 +85201,McGuire,79521,34423,14 +85202,Ralph,10484,1676550,5 +85203,Horace Debussy 'Sach' Jones,174195,33024,1 +85204,Coach Bullion,57215,6905,3 +85205,Ursula,26264,35551,1 +85206,,11643,5961,16 +85207,King Harold (voice),810,8930,5 +85208,Roscoe,71140,560300,9 +85209,Little Red Riding Hood,16135,79504,9 +85210,Cathy Ellis,193177,69206,1 +85211,Girl with Ice Cream,356752,1841491,8 +85212,US Weapons Technician,246655,1796435,89 +85213,Dorothy,65599,543734,14 +85214,Mrs. Sheppard,177902,120440,16 +85215,Barbara,66925,564326,7 +85216,,38164,119950,3 +85217,Lucky Chickna,141603,86054,7 +85218,Aard,5494,127166,14 +85219,Mr. Kim,128111,17127,3 +85220,Holly,301334,1355733,7 +85221,Himself,157117,82240,23 +85222,Officer Palmer,339994,56679,7 +85223,,47324,1620572,12 +85224,John Carter,31675,6637,4 +85225,Jeffrey Crane,268875,22600,4 +85226,Ken Sakaguchi,264393,82969,4 +85227,Pool,38769,239420,20 +85228,Janice Stern,11172,207915,10 +85229,Jang's Man,240832,1426879,39 +85230,Sarah,15261,66547,4 +85231,Gerald Meade (Sentinel crime reporter),36786,95949,12 +85232,Laura Thursday (as Katharine Aldridge),38460,120714,5 +85233,Mr. Ingersol,74629,75465,7 +85234,"Massimiliano ""Massi"" Apolloni",54309,592527,7 +85235,Akshay Kumar,8079,35070,27 +85236,Inácio,216369,225207,6 +85237,Janitor,103947,1189938,1 +85238,Col. Jackson Meade,60551,53010,2 +85239,Mr. Sing,37954,82385,11 +85240,Carnival Guy,2080,1200536,19 +85241,Eva,267481,1327024,11 +85242,Georgia Fields,55347,82653,5 +85243,Supt. Calcabrini,20126,85648,4 +85244,La première femme,56653,1137890,2 +85245,General Mohammad Khan,354287,27175,28 +85246,Caleb,128081,1094134,9 +85247,Chloe,266687,205770,2 +85248,Sheriff Wachowski,41301,51938,9 +85249,Yusuf,31413,5120,0 +85250,Clark,1773,13361,7 +85251,Mr. Steiner,35921,34504,10 +85252,Anders,11925,72685,0 +85253,Ken,326,1154165,8 +85254,Jerry Merke,51209,4029,8 +85255,Markel,377290,6283,1 +85256,PT Stella,341689,47720,3 +85257,Tarun,5319,43416,7 +85258,Sohn,18912,83871,6 +85259,Artist,339342,65831,1 +85260,Arif / Logar / Kaya,24426,74376,0 +85261,Killick,117251,114000,15 +85262,Maya,79995,73328,4 +85263,Commander Jik-Kai,39907,1649566,9 +85264,Barn Dancer (uncredited),31509,1409210,20 +85265,Civil servant,16171,13014,5 +85266,Zulfikar,121598,86212,15 +85267,Sheriff McQuade,34598,1497674,10 +85268,Kuririn,39324,65510,5 +85269,Shorty Williams,173634,6777,0 +85270,Lt. Stone,40990,64670,8 +85271,Prime Minister Wang,66756,229302,3 +85272,"James P. ""Sulley"" Sullivan (voice)",62211,1230,1 +85273,Piet Smit,17654,967456,17 +85274,Office Staff (uncredited),40807,1457254,36 +85275,Nancy,20304,38674,8 +85276,Birdie Jewel,10917,39775,13 +85277,Mrs. Winifred Lamont,126418,133227,3 +85278,Anna Vatan,369885,1055230,12 +85279,Mick Benson,17926,32203,5 +85280,Judge Lawrence,365753,71562,4 +85281,Chandler News Reporter,273481,58510,20 +85282,Pauvre,469172,1862610,19 +85283,Ripsaw Driver,76341,1734182,36 +85284,Lester,402582,1227552,13 +85285,,47795,10330,3 +85286,Deputy,34598,1497675,11 +85287,Maggie,26688,96023,17 +85288,,54236,1695893,9 +85289,,53407,1893380,7 +85290,Kayo Mimura,20527,127220,1 +85291,Additional Voices (voice),336004,88030,36 +85292,Himself,140554,1707824,14 +85293,Sylvia Marpole (voice),15653,10739,7 +85294,Matic,199602,1154246,7 +85295,Terje's Friend,108017,1549869,10 +85296,,229134,1263764,17 +85297,Mr. Ping (voice),9502,20904,7 +85298,Deputy Sheriff Christopher 'Coop' Cooper,42619,4135,0 +85299,Juan Carlos Lozano,210653,99171,0 +85300,Zuchthäusler Kallenberg,10626,47134,5 +85301,Doctor on Flight 36,45726,108289,6 +85302,Arlene Balric,184710,1333845,1 +85303,Lex Luthor (voice),177271,6574,0 +85304,Prison Chaplain,26376,16766,7 +85305,Sunburst (voice),16962,90201,1 +85306,"Major Hugo Zürner, MfS",265432,28343,7 +85307,,127445,1014367,4 +85308,Randi,91138,3122,1 +85309,"Imbastaro, passeggero strabico",107052,119992,12 +85310,Psiquiatra,435707,512958,11 +85311,Dada Rose,110160,1152740,19 +85312,Piano Creditor (uncredited),28261,89102,10 +85313,Nannerl,17008,52010,2 +85314,Michelle,77439,73269,6 +85315,Max,108723,1446333,15 +85316,Lemon Pepper (uncredited),323675,224100,68 +85317,James,18557,569865,4 +85318,Romy (Voice),285733,1255071,3 +85319,Tennessee,75315,34317,6 +85320,Dennis Hunt,43846,114400,9 +85321,Pong,177677,1562084,33 +85322,Iris,301875,1313564,12 +85323,Fernando (voice),172385,60255,8 +85324,James,46567,33810,5 +85325,Una Spencer,301334,108916,0 +85326,Marcel,33360,579437,5 +85327,Louis,263472,557303,3 +85328,Extremis Soldier,68721,216782,83 +85329,Clyde Dutton,210910,1291699,4 +85330,Steve Conlon,90465,14361,11 +85331,Dr. Eve Pullman,143144,1118346,2 +85332,Angela,2486,25442,6 +85333,Mimi,49974,937200,9 +85334,Oikeuden puheenjohtaja,101838,125603,14 +85335,Mr. Fletcher,27230,127631,9 +85336,Antoine Doinel,259,1653,0 +85337,Arthur McKenzie,37301,81905,13 +85338,Chief Wulisso,31473,141,8 +85339,Mrs. Quinn,9963,61099,8 +85340,Marty,15019,20753,4 +85341,Mark,17956,57829,3 +85342,Pythagoras,206292,1261760,2 +85479,Caselli,45675,65838,1 +85343,Navy Officer (uncredited),1421,1609926,42 +85344,Lord James Mangan,333663,587020,2 +85345,Rabbit Tooth Jane (Djenn),9470,1676386,17 +85346,Elena Van Den Ende,10087,5470,1 +85347,Victor,330770,1616030,4 +85348,Sumako (voice),16137,79560,15 +85349,Mrs. Abramowitz,151431,79641,9 +85350,Martina,327383,226431,2 +85351,Mr. Fincham,11404,14950,7 +85352,Brigadiere Mele,37710,120646,28 +85353,Gabbar Singh's Brother,111836,586625,10 +85354,Carla's Family #6,2143,132902,24 +85355,Eldho,381691,1574334,7 +85356,Don Roberto Luciano,82077,1117,1 +85357,John,347258,1231117,0 +85358,Detective Pascal,291413,55270,7 +85359,Mark,25142,93225,1 +85360,Kaya,86838,37260,5 +85361,Ambi,15084,35745,1 +85362,Ginger Gray,175171,94343,1 +85363,Stella's Mother,16182,79931,11 +85364,Nurse Bracken,85640,1221520,9 +85365,Colonel Lockyer,180929,11998,2 +85366,Herself,52122,10606,4 +85367,Tex Tuttle,26849,96444,3 +85368,Rose Cronin,252724,1118081,4 +85369,Captain Cassian Andor,330459,8688,1 +85370,Il bello,173847,1617859,18 +85371,Core Sorority Sister,26688,1620492,36 +85372,Policeman,13436,1656892,31 +85373,Phillips,75564,1399614,16 +85374,Catherine,10096,1367171,28 +85375,Tony,11939,10799,1 +85376,Jai Lakhanpal,60392,230977,3 +85377,Cleo,35543,85997,5 +85378,Chrissie,42188,127558,4 +85379,Herself,64972,58448,15 +85380,,111398,1200237,15 +85381,Mrs. Daniel Beall,112284,8522,19 +85382,Sandy Grant,256474,222130,9 +85383,Program Director,4551,66580,30 +85384,"""Major"", ein befreundeter Hacker",177979,21998,5 +85385,Ashley,13991,77913,2 +85386,Ruben,246133,1037997,19 +85387,Prison Governess,20806,125512,3 +85388,Fred Sutton,26182,29626,7 +85389,Dr. Nicolai,9042,15320,8 +85390,Father Charlie,96132,15397,0 +85391,Un poliziotto,66893,1082124,10 +85392,Martine,52049,27895,6 +85393,Flowers Salesman,35113,102980,13 +85394,Comandante dei legionari,43648,1041308,15 +85395,Brothel-keeper,85844,123858,11 +85396,Fiona,24578,75070,6 +85397,Merck,52475,146061,8 +85398,Kat,13946,94927,1 +85399,Volunteer,1116,1896864,28 +85400,Bill Thorne,59828,94293,6 +85401,Fedya,38332,142500,1 +85402,John Whittaker,16899,25130,1 +85403,Ellie,59142,41216,0 +85404,"Studio Guard / Narrator (segment ""Baby Weems"") (voice) (uncredited)",22752,51717,20 +85405,Tak Ming,76544,74193,8 +85406,Nick,39213,12791,2 +85407,Herself,43514,137829,10 +85408,Sigmund Freud,83209,38459,2 +85409,Rize Kamishiro,433945,84028,1 +85410,Joanne Jefferson,15199,10580,4 +85411,Adolph Springer,92716,24320,10 +85412,Chino,14695,58650,5 +85413,The Holy Avenger,45132,51797,11 +85414,shamadin,422906,106506,3 +85415,Chief Mountmore / Additional Voices (voice),42515,13640,1 +85416,President Dalley,243940,33457,6 +85417,,386100,1407936,13 +85418,Max's Cook,312221,1746937,57 +85419,Agente (Detective),29338,103530,6 +85420,Sting,111479,1223463,35 +85421,Big Man,270650,1359951,22 +85422,Reporter,36811,116312,7 +85423,Joyce Margolis,82687,71552,13 +85424,Tony,67693,551894,12 +85425,Cutter,45326,57252,7 +85426,Carole,1917,19938,6 +85427,Townsman Mob Defendant (uncredited),14615,1492304,90 +85428,John Philips,56809,87097,3 +85429,Prashant,90634,993025,3 +85430,Sidney Davidson,79833,55470,6 +85431,Himself,145154,1122373,0 +85432,Jerry Kaminski,31277,97864,17 +85433,Waitress,19286,86924,8 +85434,Bill Reynolds,22803,4255,11 +85435,Isabella,52049,77191,1 +85436,Sharp Shooter 2,354859,1074586,29 +85437,Carlos,68472,11160,3 +85438,Miki,405621,970219,4 +85439,(voice),16137,72949,17 +85440,Lead Singer - Sorcery,27805,1031104,5 +85441,Sheila,52850,195254,10 +85442,,88811,1888169,11 +85443,Gustaf,264061,4119,5 +85444,Cop #2,419459,1689287,16 +85445,Saul Bloom,163,1895,11 +85446,Psycho,42307,94786,4 +85447,,248747,122539,0 +85448,"Mr. Pobratynski, Ewa's father",156627,1137927,7 +85449,N'Galo,55152,184951,10 +85450,Iron Man (voice),30675,31536,1 +85451,Scruffy Man #1,199575,1438902,34 +85452,Punk Girl,10804,1172323,12 +85453,Zljko,179288,78404,5 +85454,Cape,76203,1224609,36 +85455,Nate,245175,1280398,5 +85456,Joanie,141643,599157,8 +85457,Frank Waverly,343284,6719,3 +85458,"Robert Devereux, Earl of Essex",11788,12791,4 +85459,Mipoulok (voice),233423,147892,8 +85460,Lingerie Street Market Woman,213681,1771560,34 +85461,Heather,11024,5588,7 +85462,Claire's Father,7551,16427,13 +85463,Violet,18446,115888,9 +85464,Kevin,23515,230098,1 +85465,General Ivan Vorashilov,74436,2497,5 +85466,Ann Carver Graham,242131,3242,0 +85467,,244971,112563,1 +85468,Kiyo,402455,1102624,23 +85469,Shrek (voice),809,12073,0 +85470,Albert Anastasia,33357,57490,6 +85471,Amico,306555,1897662,9 +85472,Sandy,31421,1590537,6 +85473,,63899,932875,2 +85474,Additional Voice (voice),10193,1212864,37 +85475,Divine Intention Dancer,243683,1398143,64 +85476,"Al, at the Deli",17956,21384,10 +85477,Sokol,82624,1127915,8 +85478,Luca,265717,1311610,1 +85480,Emily,30,20662,1 +85481,Gustavson,27349,19968,12 +85482,Charles Masson,76200,11989,1 +85483,Gideon Duma,13823,1420240,2 +85484,Rikki Chadwick,65256,210275,0 +85485,Uzaemon Matsushita,58878,125009,7 +85486,Jill,14207,1286659,13 +85487,Kirk the Woodsman (voice),57089,519,8 +85488,Businessman,21583,1798995,9 +85489,Vern,82622,928296,7 +85490,SDF General,39276,133708,14 +85491,,124597,1075998,25 +85492,Jury Foreman,43821,950014,30 +85493,Starr,43754,129822,6 +85494,Gilbert,12135,81141,4 +85495,Francesca,163630,974791,1 +85496,Lenny Savage,8272,6541,2 +85497,Minister Yin Taichang,14449,1139069,4 +85498,Najee,109424,1266858,10 +85499,Korda / Son of Kreon & Isabelle,26679,1088117,4 +85500,Mr. Luce,1807,19208,13 +85501,,14753,2541,15 +85502,Himself,150049,1295596,8 +85503,(uncredited),43459,30308,15 +85504,Man at Christian meeting,199463,244278,9 +85505,Mrs. Bancroft (uncredited),52440,95263,31 +85506,Detective Constable Slobotham,5060,40958,8 +85507,Henry Maurier,88320,29519,0 +85508,Abu,18072,58776,5 +85509,Tony,341007,1496846,9 +85510,Mike Prince,38031,119414,10 +85511,"Perry White, Narrator",95414,89756,3 +85512,Yurei (uncredited),329440,1522260,8 +85513,Voisine,12807,73743,4 +85514,Fat Cat,45452,237235,7 +85515,Taxi Driver,4932,165604,8 +85516,Gopi,157293,959445,1 +85517,Dong-jin,313628,77282,3 +85518,Lithpy,156597,1427455,13 +85519,Kusum,363413,1521299,3 +85520,Jerry Falk,10739,21593,1 +85521,Petra,8906,4618,3 +85522,Sarah,340937,1379383,1 +85523,Jessica,103578,113879,1 +85524,Noburo Mori,76170,116278,8 +85525,Louise Deffe,348025,1167459,1 +85526,Goat Man,193756,1283049,27 +85527,Chief Inspector Lam,290864,21914,10 +85528,Ma Dalton,10870,25181,6 +85529,Maria Flagello,85038,36322,3 +85530,,28482,1054007,13 +85531,Bates,42066,13557,7 +85532,Terry Leonard,84831,14416,1 +85533,Andrew - Deputy Fire Chief,140648,1226313,14 +85534,Teacher,336011,1371012,10 +85535,Asylum Patient,62694,1274103,28 +85536,Birtha,376501,1804234,9 +85537,o. A.,3016,29583,5 +85538,Corinna,42260,45195,1 +85539,Novice,17111,1629450,21 +85540,Girl on Tony's Staff,170517,1377285,32 +85541,Beerus (voice),303857,20664,9 +85542,Manny,38317,32897,19 +85543,Rosemonde,62978,38341,1 +85544,Drake Anderson,37789,225656,2 +85545,Rebecca,781,11609,2 +85546,Mr. Green,87302,1544957,6 +85547,Dylan Bennett,74549,14517,16 +85548,Dr. Michael Swan,339530,1465471,13 +85549,Marco Vega,4641,38708,6 +85550,Background actor,52454,1023424,62 +85551,Sophie,242090,32798,1 +85552,Shenky,13996,116443,6 +85553,Susan,72648,1646194,11 +85554,Bobby Boulet,53953,169469,7 +85555,Ucok,180299,1290939,1 +85556,Dr. Carter,38684,63362,32 +85557,Nurse Vance,62694,95667,19 +85558,Esteban,146238,200446,10 +85559,German Soldier,297762,75256,56 +85560,Borsalino,176983,68916,13 +85561,Thennappan,66247,140468,5 +85562,Campus Cop #2,107811,176048,9 +85563,Big Bad Wolf,109298,31771,4 +85564,Yuko,83389,119242,12 +85565,Liffey,33510,17521,0 +85566,Higgins,166221,5727,6 +85567,Tug O'Dell,67328,558918,5 +85568,Blair,345069,964473,1 +85569,Dr. Lucas,10077,20021,3 +85570,Travis Keller,10407,1034429,11 +85571,John Ko,9056,26755,6 +85572,Himself,376394,1559491,12 +85573,Cheerleader (1989),16996,1579589,43 +85574,Hammer (voice),68179,51382,14 +85575,Fiddler,400174,2178,9 +85576,Tom Wilson,186759,91030,26 +85577,Mike Logan,295656,33669,0 +85578,la tante de Lily,54832,543813,8 +85579,The Magician,44389,64057,4 +85580,Himself,42093,15196,2 +85581,Terry,18472,37432,3 +85582,Lisa Thomas,447758,1581638,22 +85583,Kuririn,126963,65510,8 +85584,Himself,18094,103215,4 +85585,Telemarketer,41283,18708,7 +85586,Diana Roth,41949,10767,2 +85587,Jones,70368,1147460,3 +85588,Anneliese Graes,82598,28778,1 +85589,Ramses XIII,5040,7121,0 +85590,Marie-Ann,42206,10627,4 +85591,Nurse Caroline Braddock,88320,12969,4 +85592,Gerald Irving,37665,34457,16 +85593,Amy Herman,63197,236594,0 +85594,Melanie,170603,165570,5 +85595,Nick's Club Cashier,71120,1418958,18 +85596,Natacha,32546,109361,4 +85597,Dan - Elevator Operator (uncredited),157898,1027429,29 +85598,Squid Thief / Madman / Dr. Moarte-Joc,315855,96591,19 +85599,Nora Stead,120932,105733,2 +85600,Cossack Deputy,31273,107887,34 +85601,Arch Cummings,1247,8289,5 +85602,Rev. Miller (uncredited),95504,29600,19 +85603,Le Texan/Ströller,153541,20853,4 +85604,Pop (uncredited),31773,120474,45 +85605,D. Sebastiao,84016,544608,2 +85606,Curt Reynolds,17332,17401,8 +85607,Sonali Alves,463906,963946,13 +85608,General aboard plane,65787,9865,9 +85609,Buchbinder Starke / Bookbinder Starke (as Karl Ettlinger),28480,46736,7 +85610,Sandra,97548,140542,5 +85611,Emery Jones,20357,28158,6 +85612,Camerdiner Kapitonich,96724,1235855,36 +85613,Françoise Deprez,319340,59032,6 +85614,Tony Cummings,82178,83476,1 +85615,Annalisa Rauseo,82368,553896,1 +85616,Flem Lever,215379,3292,1 +85617,Brandes,294483,50180,3 +85618,Herself - Fado Singer,154019,213289,4 +85619,Lt. Frank Benson,42796,101761,1 +85620,Cloudy,9803,50314,3 +85621,,391778,85576,7 +85622,Susan Moore,86241,22137,5 +85623,Frank,58404,5796,5 +85624,Rosa,61113,1387597,1 +85625,Frank,171648,1479322,5 +85626,Yoshizo Fujino,43877,122430,7 +85627,Nadine,35977,97619,15 +85628,Conan,38526,127453,3 +85629,Prince Albert,245700,52639,20 +85630,Yeobaekui Mi,435366,1444366,5 +85631,Sophia,210047,973998,3 +85632,Mrs Big D,18747,1173600,9 +85633,,134372,40863,1 +85634,Adele Canfora,315319,231995,2 +85635,Sheriff David Ketchum,9935,2048,1 +85636,Psychologist,286545,1352658,10 +85637,Elizabeth Kent,213443,30233,2 +85638,Gusta,27622,98444,11 +85639,Business pedestrian (uncredited),337339,1807064,75 +85640,Chinese Vendor,125344,1175480,6 +85641,Musumeci,81541,38596,11 +85642,Marsha Williams,276550,933441,4 +85643,Additional Voice (voice),177572,1502448,34 +85644,Herr Taschenbier,10645,8799,0 +85645,Demougin,204765,41526,2 +85646,Wedding Guest (uncredited),369524,1765942,53 +85647,Paparazzi,331161,1459156,27 +85648,Mme. Lilli Rochelle,28044,99458,5 +85649,,26125,1681697,7 +85650,Harmonica Musicians,173634,1612628,10 +85651,Hewey Calloway,277388,2176,0 +85652,Raines,49597,5274,3 +85653,,130457,97663,9 +85654,Alejandro / Andrés Racz,325385,1775355,11 +85655,Parking Attendant,47878,2249,8 +85656,Lily,94674,13506,5 +85657,German Girl,169656,1726738,3 +85658,Barney Lee,227717,34516,4 +85659,Frank Brandon,42487,6678,3 +85660,Le réparateur électricien,47226,1564566,14 +85661,Det. Phil Archer,45431,156185,4 +85662,Herself - Storyteller,128216,1332915,7 +85663,,252059,114424,11 +85664,Antonio Buonocore,56068,132190,0 +85665,,437253,934628,1 +85666,Brawling Man #2,199575,1438919,42 +85667,Widow Hullins (uncredited),43369,1833619,13 +85668,Allyson,19053,551903,21 +85669,McCreery's Associate #2,55604,127521,45 +85670,Veronica,74035,1590739,1 +85671,Big Man,167951,4353,5 +85672,Sir Guy Charteris,42678,19020,1 +85673,Rothstein,45875,134077,17 +85674,Lieutenant Colonel Packard,293167,2231,1 +85675,Octavia,272693,1539204,15 +85676,,118794,1125698,2 +85677,Harriet Ames,62033,97480,2 +85678,глава дома,409082,99311,13 +85679,Conductor / Doctor,98349,1017369,19 +85680,Neighbor with chair,63066,1867444,12 +85681,Melusine,61950,234586,7 +85682,Luisa,131897,1093852,2 +85683,Soldier #2,82654,1676049,9 +85684,Tatiana,300601,224731,3 +85685,Lloyd,15068,77879,2 +85686,Bank employee,190876,1298394,5 +85687,JR,369033,211598,9 +85688,Enfant gare,98277,1849114,37 +85689,"Sammy Coin (segment 3 ""Voodoo"")",26811,575450,12 +85690,Man at Fountain,33472,88728,13 +85691,Tom Lefroy,2977,5530,1 +85692,Victim,27840,97608,13 +85693,Paul,204965,1187354,12 +85694,Himself - Storyteller,128216,1271545,1 +85695,Robert Landa,6079,47836,3 +85696,Doctor Polyakov Mikhail Alekseyevich,51284,113334,0 +85697,Davey,8981,107380,7 +85698,Mutsui,18722,553447,47 +85699,Cain - Henchman,47404,1109163,39 +85700,Horseman,4580,16927,3 +85701,First Temple Sacrifice,1579,969219,20 +85702,Jack Braddock,6341,8255,1 +85703,Rakesh's Father,80281,565890,7 +85704,Funeral Family,71503,563107,29 +85705,Gianni,59249,103520,6 +85706,,402612,1451101,8 +85707,Deacon,199615,125763,6 +85708,Queen Nefertiti,24973,1382707,12 +85709,,11391,1195745,21 +85710,Hickey Gang Member,111470,34811,26 +85711,Chris Owen,15661,78119,4 +85712,Amelia Parent,18512,10929,7 +85713,Chief of Inspectors Kusuda,43113,980381,10 +85714,Kőnig,41689,123974,5 +85715,Mary Jackson,10004,49425,3 +85716,Philip Cass,217948,41231,1 +85717,Derrick Hollander,135652,88183,5 +85718,Saya,1450,63436,2 +85719,John Florio,128588,85338,2 +85720,Roosevelt,83666,12042,14 +85721,Cameriera,52914,225301,19 +85722,Jang's Man,240832,1426895,41 +85723,Senator Jim Abrams,359471,109670,7 +85724,Don Miguel Ángel,17893,967161,7 +85725,Himself,130993,1310864,4 +85726,Ed,42476,106806,9 +85727,Weird Voice (voice),228647,120738,18 +85728,Ma Bascomb,241574,7520,10 +85729,Tatiana,157354,1141877,7 +85730,"William Warley, Cpt. of Mizzentop",8619,79505,4 +85731,Leviathan,354133,1496073,15 +85732,Rachel Joy Scott,409502,1560333,0 +85733,Funeral Attendent,379959,1569948,7 +85734,Himself,315850,21411,3 +85735,Rob Salinger,42094,56819,0 +85736,Bistan,330459,1233264,50 +85737,Red Queen,25694,82412,13 +85738,Cleopatre,52705,146520,3 +85739,Boll,72663,568562,3 +85740,Rummy Mitchens,38770,27911,12 +85741,Lili Weyl,280004,1336771,7 +85742,Dan Evans,100063,30929,0 +85743,Julian,219466,116264,4 +85744,,88953,221973,13 +85745,George Putnam,265741,6905,3 +85746,Aunt Jean,128270,1820213,24 +85747,Ship's Officer (uncredited),62567,133277,13 +85748,Policeman John,22901,1413151,16 +85749,Al Hart,44945,11315,8 +85750,Sophie,31428,11782,2 +85751,Cosimo,82481,55134,12 +85752,Max,9939,55637,1 +85753,Omar,16047,1147080,2 +85754,Laxmilkant (Lakshya) Bolke,192573,222767,1 +85755,Sheriff,76203,1198191,53 +85756,Bia (voice),172385,561869,9 +85757,Ducky's Mom / Petrie's Mom,24556,34983,8 +85758,Restaurant Owner's Wife,42533,103787,12 +85759,Forence Deffe,348025,13688,4 +85760,Richard Reece,43741,42276,2 +85761,Ajay Shastri,28805,42803,0 +85762,Otis Higgs,15006,342,4 +85763,Callum,103433,1038297,2 +85764,Manuel Diego,26323,120773,22 +85765,Himself in Prologue (as Congressman James Roosevelt),262528,1461050,15 +85766,Ēriks,116432,1125818,2 +85767,Mercedes,132705,1095874,6 +85768,Nirayama,36175,128479,6 +85769,Josef Schmit,259728,1301972,10 +85770,Leslie,9870,999605,18 +85771,Big Sam Hollis,10299,24811,5 +85772,Jujube (voice),393559,1615542,7 +85773,Captain Eldridge,70436,151797,6 +85774,Barbara Tilson,16005,120244,7 +85775,Shopper (uncredited),365942,1527958,69 +85776,Buck,183825,34890,50 +85777,Virgil,41505,127070,6 +85778,,14210,1000982,7 +85779,,27276,551839,30 +85780,Oscar - Bartender (uncredited),14615,1383133,21 +85781,Sgt. John Masterson,109258,93105,10 +85782,Doña Enriqueta (uncredited),42502,1514445,28 +85783,,109354,1046073,7 +85784,Funcionario Vigilancia 1,33273,110122,22 +85785,Rosette,40258,1123087,3 +85786,Himself,83587,1137454,12 +85787,The Priest,36299,65827,4 +85788,Malvina,58011,136290,9 +85789,Eleanor Johnson,28663,80994,0 +85790,Charon,362439,1523669,9 +85791,Dinesh,347807,86282,5 +85792,,134215,1112966,10 +85793,Yoshimura,33333,96473,5 +85794,Buddy,339403,65717,4 +85795,Magnus,289191,83866,5 +85796,Himself,123074,28238,2 +85797,Vocalist - Opera Montage,98328,1711367,13 +85798,Prometheus 1,228066,1125601,11 +85799,Young-Jae,31850,1191707,3 +85800,,85327,3019,7 +85801,Gary Trancer,30492,106435,8 +85802,ER Doctor,46436,135838,6 +85803,Sanity Hearing Doctor (uncredited),20644,13823,18 +85804,Shizuoka Miyakonojo,409550,127891,1 +85805,Catherine,75142,20577,8 +85806,Hannah,356752,1841497,17 +85807,Dakota Fire Thunder,308640,1395190,9 +85808,Medium,99261,563260,10 +85809,SS Atlantis Deck Steward,176627,117036,22 +85810,Frau Lilienthal,42460,36942,2 +85811,Tego Leo,337339,96321,14 +85812,Truman,428687,1462,2 +85813,IMF Secretary,56292,207,13 +85814,Girl,59965,1279375,26 +85815,Mala's Mother,81313,67278,3 +85816,Baby,156388,1145558,5 +85817,Frosine,11680,11217,2 +85818,The Girl,14753,235293,4 +85819,Fisherman,290714,1361066,10 +85820,Carol Schue,23397,140356,5 +85821,,100791,29839,7 +85822,Ben Atkinson,103850,103205,6 +85823,Stan Ross,16232,1897,0 +85824,Wang,45935,1337,1 +85825,Neighbor Boy,52360,1211573,29 +85826,Glader,198663,1415412,20 +85827,Captain Atom (voice),22855,3982,5 +85828,Comisario tonto,69060,186620,12 +85829,Detective,14589,120748,41 +85830,William Shaksper Junior the Fifth (uncredited),50012,143279,11 +85831,Donny Berger,87428,19292,0 +85832,Stasik,30619,106046,5 +85833,Rocco,77137,581229,4 +85834,Woman,378607,1566573,5 +85835,quartet,72640,1487401,6 +85836,Maud St. James,43354,12725,2 +85837,Joe's mother,11636,1178955,27 +85838,Cook,155597,1223409,5 +85839,Amelia Stuart,244539,1279817,2 +85840,Speaker #2 (Angel),222935,1672066,18 +85841,Bree,359471,1273742,12 +85842,Doattie,186869,54044,5 +85843,Richard,57215,11057,4 +85844,Veronica,428687,121566,7 +85845,German Soldier (uncredited),16442,88464,52 +85846,Marktverkäufer,3716,1406142,12 +85847,Mason's Boss,85350,1467970,53 +85848,Liberty Bell,7326,135802,18 +85849,Júlio Ribeiro,28293,129553,2 +85850,Dr. Possible (Dad) (voice),51786,21163,4 +85851,Horace Debussy 'Sach' Jones,186268,33024,1 +85852,,63215,1520917,38 +85853,Nick Carr,4551,1037,11 +85854,Fred,15601,15831,6 +85855,Lekarz,155426,1519446,8 +85856,Camper (uncredited),251227,1286549,34 +85857,Laricus,286789,262301,5 +85858,Sir James Barnet,42242,55155,11 +85859,,48341,68988,4 +85860,Moses Mother,135708,187973,9 +85861,Rosaria,338438,98783,16 +85862,Kelly (Terry),63360,14668,1 +85863,Faina,36695,32564,0 +85864,Georgette,414977,1676771,12 +85865,Aaron Doral,105077,77210,9 +85866,Ivana,289723,101624,2 +85867,Tonsure,29610,103775,22 +85868,,218329,824,2 +85869,Tina,9959,61018,18 +85870,Eraser 2,339116,1862152,13 +85871,Stuart 'Stu' Stein,4613,57133,7 +85872,Alex Dunkelman,43931,37154,1 +85873,Mike Ryan,153161,30240,35 +85874,Irene,20414,128464,6 +85875,Jenny,10063,62694,6 +85876,Ed Stander,4932,40173,2 +85877,Tracy,45243,83585,10 +85878,Head Nurse,153161,1046807,27 +85879,jako Franek Skiba (s. Macieja),406449,1650390,24 +85880,Joe Jacobs,111744,19839,5 +85881,Mr. Caldwell,360592,1363395,6 +85882,Miss Matty Jenkyns,64047,5309,0 +85883,Konstantin Lukov,71051,560153,0 +85884,,16015,19354,6 +85885,Malcolm Jones,362844,107401,6 +85886,Susan Nugent (as Lynn Eastman),40146,97940,3 +85887,Mr. Fortune,218425,1312170,5 +85888,Florence,207699,1308807,9 +85889,"Herodias, wife of Herod",96951,1513,2 +85890,Ashlie (fiancée),385372,1823567,19 +85891,Carl,324150,1018310,5 +85892,Student,369883,1540603,16 +85893,Anna,13614,82312,1 +85894,Hospitalman Nerney - Sick Bay,17744,55636,11 +85895,Sophie,11584,157639,17 +85896,,273868,50003,5 +85897,Robin,59419,1222298,4 +85898,herself,40873,570544,7 +85899,Fã 2,448763,1772897,28 +85900,Menlo Schwartzer,30411,42362,0 +85901,Colonial,274325,112652,16 +85902,Timer,2567,65729,42 +85903,Herself,16800,12020,22 +85904,Himself,282268,11184,11 +85905,Hedwig Potthast (voice),267310,50088,4 +85906,Chief Gonzales,337879,141226,2 +85907,Somboon's Secretary,13436,1656881,19 +85908,"George M. Cohan, as a boy of 13",3087,30277,11 +85909,Mother Mary of Mercy,32558,8828,3 +85910,Max Tebbitts,77949,1466262,24 +85911,Soffiya,98644,1029132,14 +85912,Inge Kurlander,302528,1663785,13 +85913,Radost Markowitsch,85469,932207,1 +85914,Angela,87148,1678944,5 +85915,Rabbetts,53524,18065,7 +85916,Michael,393562,1699687,11 +85917,Bartender,202941,87372,14 +85918,Nathan Harper,59965,84214,0 +85919,Ukolov,29299,567576,8 +85920,Johan,163,96935,22 +85921,Old Man Grimes,76465,8729,4 +85922,Colonel Joseph Madden,19096,4165,0 +85923,Gulab,193756,762,5 +85924,German major,88564,1467092,6 +85925,Supruga gospodina na plaži,148034,1051261,13 +85926,Yachi,45384,52806,6 +85927,Baker,2047,21082,6 +85928,Pepe [ペペ] / Nini [ニニ](voice),56391,1585473,7 +85929,Astrid,280583,1496441,6 +85930,Lefty Louie,17640,120554,12 +85931,Military Policeman (uncredited),73430,955691,27 +85932,Yolanda Barbella (uncredited),28000,985798,39 +85933,Stephanie's Party Guest,31993,121060,30 +85934,Teo Teopoulos,108535,589787,3 +85935,Detective,98586,986519,13 +85936,Annette (Frank's Wife),228970,143204,30 +85937,Vasile,319993,60422,12 +85938,Marie,29111,102946,0 +85939,Jo Schwertlein,41619,11953,14 +85940,Sally,10097,63359,6 +85941,Harry McKee,75778,2039,1 +85942,Mrs. Gauß,115023,10257,3 +85943,Ruby Lemarr,27986,279042,3 +85944,Gwiza,57654,1811549,4 +85945,Lieutenant Sullivan,289723,1358980,13 +85946,Fred,77338,1149324,18 +85947,Mugabi Brian,317557,1683148,3 +85948,Terence Aloysius 'Slip' Mahoney,185273,89989,0 +85949,Lil G,169068,155625,14 +85950,Charlie Cooper,186585,34748,3 +85951,Del,244403,2975,4 +85952,Housewife / Kenny,24675,34983,4 +85953,Bruised Man,381015,82646,16 +85954,Recon Guy #1,424488,72672,36 +85955,Jeffrey,207270,1518112,9 +85956,Ashley,39053,1079024,5 +85957,Doucette,104674,1762431,7 +85958,Young Iris,407559,53718,5 +85959,Breast Pump Doctor,308024,4158,9 +85960,evaso,43649,240920,14 +85961,Choi Sun-ah,10265,64499,6 +85962,John Regan,77650,2493,0 +85963,Bridesmaid,335970,1718168,72 +85964,Ida,126250,4460,1 +85965,Nona Bruce,86241,27964,4 +85966,Joshua Speed,43806,30279,4 +85967,(voice),112304,1054395,9 +85968,Ted White,125666,7505,0 +85969,,43635,120918,8 +85970,Teller,19971,938774,9 +85971,Steve Rogers / Captain America,99861,16828,3 +85972,Hugo Baumer,64605,85988,6 +85973,Newt,198663,25663,5 +85974,Samuel Anders,105077,83456,2 +85975,Reporter,109716,1230787,37 +85976,Other Deputy,262841,1809693,17 +85977,Léo Simard,190876,1298392,2 +85978,Lieutenant,329865,522169,48 +85979,Sameer,5319,42802,1 +85980,la vahiné,91419,106625,4 +85981,Young Perth (still),292625,1758599,11 +85982,Watchman,88012,554381,11 +85983,Maigret,452142,10730,0 +85984,cugino del defunto che sceglie la bara,43646,1710114,14 +85985,Pastor,94551,26044,9 +85986,Delores,21554,176523,3 +85987,Mr. Ears,1721,38171,4 +85988,Ayumi Omori,14217,117837,9 +85989,Adèle Lacaud,168496,37444,2 +85990,Teacher,42852,12729,31 +85991,William Washington,31385,65237,8 +85992,Uncle Hai,25074,134704,10 +85993,Tea Seller (uncredited),76203,1037370,67 +85994,,227552,212824,6 +85995,Beamter,6183,27406,17 +85996,Witch Instructor,35826,11494,6 +85997,Snake Oil Salesman,188161,19190,19 +85998,Sandra Laing,29989,2598,1 +85999,Dr. Jason Halpern,69266,175003,11 +86000,TV Host,31011,931304,16 +86001,James P. Curtayne,36634,12147,0 +86002,Herself,14108,1624702,2 +86003,Darren,73565,3062,9 +86004,Woman in park,47186,171374,18 +86005,Sharkman,117023,1666254,3 +86006,Dave Kilrain,103168,40577,3 +86007,Vaijanti Iyer,54814,35810,1 +86008,Stanislaus Nagy,9765,1844,0 +86009,Animal Health Officer,413762,1861749,7 +86010,Sarge,322922,980,7 +86011,Justin,2196,1125,3 +86012,Hidetaka Asato,22025,78267,5 +86013,Marty / Additional Zebras (voice),10527,2632,3 +86014,Lucas,68360,56285,1 +86015,Henri Blasco,78210,32322,9 +86016,Sergeant Parker,59738,1205527,18 +86017,Lemi K,332411,78335,10 +86018,Dot,117098,18345,1 +86019,First SS Man,11248,33938,18 +86020,Trenton,27203,14978,4 +86021,Rudy Kurlander #1,302528,2310,5 +86022,,375742,1564300,33 +86023,Judge Stemple,84233,9295,3 +86024,Artie West,26516,83810,3 +86025,Bert O'Riley,72140,7502,0 +86026,Diana,150117,22969,7 +86027,Soigneur d'orques,97365,1123787,10 +86028,Vincent,7942,53366,7 +86029,Alex Holcombe,145135,199298,4 +86030,Bob,14029,103186,13 +86031,Soe Hok Gie Muda,39061,1829168,14 +86032,Mike 'Mabel DeCraven' McGillicuddy,31899,74875,2 +86033,Attorney Auerbach,407448,17697,8 +86034,Dancer,33541,1816045,24 +86035,Bank Manager,24258,1299784,3 +86036,Snowboarder,206647,1599269,62 +86037,Sister,92663,1802669,11 +86038,Martin Beck,315362,74709,1 +86039,Joker,25694,99370,28 +86040,Sam,60420,72129,2 +86041,Lillian,183015,30863,2 +86042,Homer Carlton,9624,879,6 +86043,Dean Kemper,59738,155510,19 +86044,Dr. Darnall Malmquist,285270,1367903,9 +86045,Maggie Richards,9753,58974,6 +86046,Vindum Raah (uncredited),19995,1207289,73 +86047,Miguel,9030,56733,6 +86048,Martha,408755,1455911,3 +86049,Classmate,188598,1776762,18 +86050,Lugnut,325189,1426660,12 +86051,Homem 2 Beijo Triplo,70666,1863907,50 +86052,Girl on Deck,167073,1283872,32 +86053,,38154,1405922,18 +86054,Loan Shark Cheng,19528,25251,19 +86055,Young Mina,246127,584543,7 +86056,Heck Kirkland,116340,118076,2 +86057,Foorvrouw,319179,222922,10 +86058,Theatre Audience Admirer at Stage Door,131360,140874,18 +86059,Stewardess #1,318781,1694298,21 +86060,Lao San,46124,1134507,9 +86061,Yagmur,271954,1324296,2 +86062,Kate Jarvis,85648,40168,2 +86063,High School Student (uncredited),345922,1751725,50 +86064,Ronnie,56725,157909,5 +86065,Theresa Luna,2611,12851,2 +86066,Student,379019,1721609,17 +86067,Bepi,48937,45982,0 +86068,Joe Gargery,16075,19901,9 +86069,Miss Namikawa,19545,30564,4 +86070,David,377691,64122,4 +86071,Titania,182129,5309,7 +86072,Samantha / Sam,49712,158629,1 +86073,Chanel Simmons,27621,131724,0 +86074,Thurston Howell III,103260,2771,2 +86075,Un parente dello sposo,42416,128076,4 +86076,Toby Kellogg,77625,23532,0 +86077,se stesso,75336,12259,18 +86078,Muriel Arrowsmith / Jenny Arrowsmith,28673,5685,0 +86079,Masterson,383538,1788835,7 +86080,Sam Thorndyke,33792,29259,5 +86081,Il cantante,132122,1094534,3 +86082,Troll Elder,21533,1237724,17 +86083,Amy,87343,1282801,6 +86084,Claire Townsend,50669,87039,1 +86085,Claire,102841,66071,13 +86086,Madam,156547,567586,11 +86087,Daniel,136752,1208795,7 +86088,Henry Jankle,11329,15253,8 +86089,Corporal Phil Vaughn,259292,40201,3 +86090,Emil,25653,27978,5 +86091,Khazar,440508,11398,4 +86092,Himself,383809,1581917,4 +86093,Jasmina Sanders,3701,29395,0 +86094,Juanín,127864,1156392,11 +86095,Elizabeth Conroy,183412,1419649,9 +86096,Satya,53883,587752,0 +86097,Mick,304613,1387082,7 +86098,Kim (Blammy's Girl),13058,1105700,29 +86099,Missie Cratchit,229056,10190,6 +86100,Fred Ballinger,310593,3895,0 +86101,Lysander,2349,24070,19 +86102,Jacobchen,109391,1204678,9 +86103,Tim Sutcliff,77625,138887,3 +86104,Moll,96147,1196298,14 +86105,Claire Miller,326,25654,1 +86106,,375742,1564288,20 +86107,,175924,4785,2 +86108,Dancer,285840,1842590,19 +86109,Club Patron (uncredited),354979,1636788,73 +86110,Felix Stranger,69717,46300,1 +86111,The Sundance Kid,175386,11128,5 +86112,Splick,71687,68185,0 +86113,Chris Emery,61430,33741,0 +86114,Newman,42619,153561,12 +86115,Bambas,77381,1366034,1 +86116,Janet Maddin,13241,27561,2 +86117,Deputy (uncredited),11577,6905,35 +86118,Fişek Ömer,38547,109139,5 +86119,Anne Rodney,35381,12519,1 +86120,,17935,93409,12 +86121,,101995,145428,2 +86122,,76264,1981,2 +86123,Rosa Fossati,142979,15136,3 +86124,Justice of the Peace,48281,51938,24 +86125,Floyd,24150,534,28 +86126,Gabe,185564,146162,10 +86127,Background actor,52454,1630328,55 +86128,Tour-de-France-Mann,70807,7820,11 +86129,John Julius Angerstein,81687,117074,2 +86130,,254869,1423076,28 +86131,Older Woman 2,370755,1650139,21 +86132,Yuki Mori,61984,94018,2 +86133,Laurie,309879,1221038,0 +86134,Brenda Fareri,254918,15250,4 +86135,Boris Vaslov,17657,7502,1 +86136,Sonali Malhotra,347807,77236,9 +86137,,274127,7570,1 +86138,"Ráczné, szocialista",86732,1619019,4 +86139,Rachel,226188,476866,4 +86140,Tsui,18899,25251,3 +86141,Laura,310137,1537526,4 +86142,Long John Silver,83191,1926,0 +86143,Detective Dan Carr,78522,99418,9 +86144,News Reporter,7942,94958,11 +86145,Tully Flanagan,413417,1719071,10 +86146,Mudbud (voice),70587,25144,16 +86147,Viggo Florin,53689,576473,5 +86148,,1838,1180056,22 +86149,Mr. Alien (uncredited),50012,1243,0 +86150,Mahat,76788,580222,4 +86151,Sjaak (herbergier),56344,113587,9 +86152,Younger Son,98368,1028465,5 +86153,Fighter,70006,557805,3 +86154,Black Glasses,224944,1377888,7 +86155,Morse,72313,78305,8 +86156,LT. Wexler,203351,1186521,10 +86157,Bill 'Willie' Burnett,98125,4091,0 +86158,Arijoutsi Roine,238362,1188448,3 +86159,Mr. Veze,70351,590,2 +86160,Myriam,32338,136489,10 +86161,"Aurora, Guiga's mother",108712,1491364,3 +86162,police officer,37126,47569,8 +86163,Iben,199602,1179775,1 +86164,Ludovic Regnier,4266,11989,3 +86165,Eastern Suburbs Mum 3,242224,1413762,10 +86166,Sally,153169,1274103,10 +86167,Walt Disney,50008,11279,10 +86168,Speaker #4 (PJ),222935,1672071,25 +86169,,12622,555211,36 +86170,Malka,6391,55058,12 +86171,il nostromo,103216,49458,13 +86172,Musia,259645,2832,3 +86173,,11196,82854,14 +86174,Sandy,258353,1312970,1 +86175,Father Kane,456101,1842111,5 +86176,,84771,24517,6 +86177,Rory's Sister,335970,1718121,38 +86178,Ed Carter,116232,137891,21 +86179,Kenny (voice),16486,34517,1 +86180,Mike Flynn,15810,933019,10 +86181,Abbot of Shaolin Temple,66756,1042681,4 +86182,Toto,8882,72775,6 +86183,Zoe Fang,95919,21911,0 +86184,Hauptwachtmeister Schulz,19430,32520,3 +86185,Ashley,317198,1475097,8 +86186,Minor Role,41597,1086063,27 +86187,Gavin Flemyng,222461,141463,6 +86188,'The Bat' Kiyoko,12720,1091286,13 +86189,Jackie Rockne - Age 4,43812,1673806,47 +86190,Martine,11832,47155,4 +86191,Father McGee,31206,100588,7 +86192,Michelle,124501,73361,4 +86193,Jenny,284293,1285592,8 +86194,Himself,137726,1355011,4 +86195,Anita Alvarez,105551,83400,4 +86196,Cynthia,142115,1183784,3 +86197,Joey Ward (as James Cummings),55989,262023,7 +86198,Tough,14874,64471,11 +86199,Elise Montoya,26293,95041,5 +86200,Solal,13652,24891,15 +86201,Gunner,1877,22134,4 +86202,Sarah,94336,45811,2 +86203,Ruza Wenclawska,49007,21657,6 +86204,El Huron,15092,5365,11 +86205,Sonia Murray,37926,119119,4 +86206,il capo,81787,1862811,5 +86207,Brandi (voice),11795,1408163,8 +86208,,53693,1147412,23 +86209,Dirt Bike Rider,312221,75636,65 +86210,Vani,37050,87335,1 +86211,Barman,62728,1720921,19 +86212,Malvira Satana,27840,4592,0 +86213,Brillo Murphy,13827,54834,4 +86214,Cook,155597,55135,8 +86215,Rembrandt van Rijn,66082,10647,0 +86216,Little Joe,26486,54514,36 +86217,Hotel Clerk,377170,1027243,12 +86218,Kim,1991,10580,5 +86219,Pregnant Costumer,12221,1681651,6 +86220,'Case' Casey,11131,1083344,6 +86221,Mrs. Margaret Hammond,18774,82495,1 +86222,Dr. Achmed,62472,235383,10 +86223,Nikki Barker,69917,557450,3 +86224,Grace,92269,1469164,5 +86225,Axel,52859,4119,5 +86226,Mrs. Claus,150657,56881,1 +86227,,20646,131192,3 +86228,Celia Sommerville,62694,105571,20 +86229,Nick,301334,1723620,16 +86230,Papapote,25518,6020,11 +86231,,88273,1547784,20 +86232,,58447,1732769,2 +86233,Lola Durán,37609,194762,9 +86234,Maria-Christina,112675,23012,9 +86235,Dito,8194,3223,2 +86236,Minor Role,43806,939991,67 +86237,Teacher Chui,11537,119449,10 +86238,Herman,15440,1332334,4 +86239,Gavino,42225,73977,1 +86240,First Henchman,108003,33220,4 +86241,Roger,135286,5763,0 +86242,Arthur,121539,553891,5 +86243,Miriam Carswell,286521,7465,2 +86244,Helén Andersson,21041,5024,4 +86245,Susan Delambre,58903,1428662,5 +86246,Marlene Vreeland,9779,59185,19 +86247,Hotel Desk Clerk,10739,28022,16 +86248,Pretty Woman in Car,262841,1723719,21 +86249,Bystander,10201,1226913,11 +86250,Michelle Lopez,18189,28639,1 +86251,Roy Luther,128364,22250,4 +86252,Maisie,246299,90384,2 +86253,Podium Girl,24469,1579243,22 +86254,Maibus,28663,4119,3 +86255,FBI Agent #2,245703,1374150,22 +86256,Himself,376394,1502529,4 +86257,Senior police inspector,8014,1308691,6 +86258,Flo Peters,20640,103922,6 +86259,o. A.,3016,29586,9 +86260,Yani,44746,1035818,9 +86261,Belgium Peasant (uncredited),297762,1699114,84 +86262,Kristoffer Haukeland,15177,73637,0 +86263,Chirag,60307,111923,8 +86264,Herself,319073,1559452,4 +86265,David,141635,1466419,9 +86266,Taxi Driver,91583,143823,11 +86267,Tiberius (voice),328111,13,6 +86268,Strike,69152,7195,3 +86269,Chicken Devil,75948,25251,9 +86270,Skipper (voice),270946,18864,0 +86271,Danny,323435,1571061,5 +86272,Celine,27019,18228,0 +86273,Stationmaster,124115,30201,27 +86274,Wistrom,56292,92428,9 +86275,General Richter,127372,15578,6 +86276,Saloon Janitor,111470,9094,32 +86277,Donovan,72032,132262,6 +86278,Harry Cook,153161,102066,15 +86279,Virginia,336004,1717264,20 +86280,Eilis Lacey,167073,36592,0 +86281,,49273,11523,1 +86282,Vernon Fenwick,98566,21200,1 +86283,Val,99859,41381,2 +86284,Mandarin Guard (as Juan Bofill),68721,237347,56 +86285,Vlado,34449,14528,1 +86286,Cherng,48489,1135339,3 +86287,Coffeeshop Patron (uncredited),331313,1747266,40 +86288,Malarz,314371,72373,9 +86289,Jessica Martin,295723,1369204,2 +86290,Ernst Ernst,285181,1411016,8 +86291,Frank Watters,15613,16896,8 +86292,Mr. Pricklepants (voice),77887,10669,11 +86293,Saxophonist,244786,1145677,28 +86294,Lawyer McCoy,11600,100701,1 +86295,Bob,424488,11367,3 +86296,Monty,44458,1295460,3 +86297,Evgeniy,143169,1979,0 +86298,Jack Mahoney,343972,160432,3 +86299,Generale Patton,403450,1879743,15 +86300,Kip Crombwell,8669,34918,5 +86301,Detective Rodriguez,226701,1215388,9 +86302,Elena,51434,11073,2 +86303,Fern Schoichet,17906,41232,4 +86304,Police Officer,159667,1212675,14 +86305,Michael Ray,138977,1171782,7 +86306,Kaiser,10311,39006,3 +86307,,118984,88360,4 +86308,Receptionist,42571,128229,13 +86309,Himself,70086,15903,0 +86310,Nubian slave (as Edith Peters Catalano),81409,67969,7 +86311,Mehdi,38282,20667,2 +86312,,14217,26882,14 +86313,Herself,338063,1581553,4 +86314,Ole Knudsen,32634,4119,15 +86315,Himself,111332,132603,11 +86316,,62741,86954,7 +86317,Diego,49940,6283,6 +86318,Marie Layton,6933,51456,9 +86319,David Richardson,104041,17580,2 +86320,,76312,1433896,23 +86321,Billy,60759,202299,18 +86322,E-4 Co-Pilot,20674,162235,27 +86323,,137504,1481051,13 +86324,Man in opening scene [Cameo],46114,18897,0 +86325,Ilya Andreyevich Rostov,149465,931906,5 +86326,May Welland,110540,116775,4 +86327,Samuel,372640,8789,2 +86328,Secretary,45431,49551,14 +86329,Lucien,1640,18283,20 +86330,Bank Attendant,29101,1375001,12 +86331,Kerstin,2169,22187,3 +86332,"Erkki Uolevi Lahti, ""Dynamiitti-Lahti"", ""Tyny""",442752,110772,6 +86333,TV Interviewer,142216,1176793,31 +86334,Uncle Lanning,180305,45407,2 +86335,Logan,323929,1423665,5 +86336,Sima Dodyk,128140,1161087,11 +86337,Blacksmith,43889,29817,11 +86338,,311417,1399675,4 +86339,Intellectual Sub-Deb,560,86002,7 +86340,Butcher Woman,10330,73456,17 +86341,Gidget (voice),328111,213001,3 +86342,Bruno,315872,141830,4 +86343,Maybelle's Store Dancer,2976,1752344,69 +86344,Sem,34092,1503544,4 +86345,Joe Willis,7445,115730,7 +86346,Birger Vanger,15472,87726,14 +86347,Gregory W. Miller,26516,16897,2 +86348,Bank client,19971,32157,12 +86349,District Police Commissioner,52728,1437833,8 +86350,Terry Ostroff,89008,17485,6 +86351,Dan,187596,1542,6 +86352,Sam,13668,19303,2 +86353,Concierge,377290,1643047,28 +86354,Arnold Cheney,120676,97981,6 +86355,Mrs. Cribbage,66125,1321953,11 +86356,Rusher of Din - File Clerk,36751,116120,18 +86357,Margie Hammond,34766,81170,9 +86358,Pavel,38325,107722,0 +86359,Harry Babbitt,80720,1411497,11 +86360,,64383,67145,5 +86361,Rodney,301368,1498685,5 +86362,Hendricks,13836,1673245,40 +86363,Beth,298935,25908,7 +86364,Sei Gao,155397,119460,3 +86365,Little Joe,118490,1541360,6 +86366,Nadya Klyueva,65142,86999,0 +86367,Vic,43228,39925,6 +86368,Buddy (voice),312100,5374,1 +86369,Governor Holbrook,60965,91333,16 +86370,Wakeen,24756,109099,8 +86371,Brock Houseman,14834,55541,5 +86372,Carmina,241968,1042750,1 +86373,Fils Fric - Maxime,26566,592718,12 +86374,Prim Organizer,320588,173780,44 +86375,Marie the Maid,64568,140147,6 +86376,Letscho Talhammer,377847,49767,2 +86377,Bartender,44287,207881,11 +86378,Deniz,60784,39847,1 +86379,Himself,390747,1662626,5 +86380,,97088,46526,14 +86381,Star,13960,1568595,10 +86382,Emily Klein,381073,52404,2 +86383,Kendra Campbell,135652,151253,8 +86384,Sekretär Jodła,224,2816,7 +86385,Hu,290764,1044954,5 +86386,,262785,1306684,2 +86387,Moritz,6076,16808,3 +86388,Rude busrider,55720,223048,10 +86389,,128237,1107940,2 +86390,Vinny,11172,1781218,58 +86391,Cousin Lisa,6557,1564966,19 +86392,Kay Walsh,18446,18892,0 +86393,Extra (uncredited),3059,1268901,57 +86394,Gloria Pennington,33112,103946,4 +86395,Peter Weyland (uncredited),126889,529,17 +86396,Shaz,80545,217300,4 +86397,Ma Flodder,11084,34871,0 +86398,Lieutenant,316776,1436393,5 +86399,Hudson Baron (voice),302960,60279,8 +86400,,16032,1087003,10 +86401,Kendra Block,34482,112475,7 +86402,Sean Murphy,139856,1111444,1 +86403,Sheriff,71503,81060,8 +86404,Meg Falworth,24442,74542,3 +86405,Le curé,85735,132235,12 +86406,Teresa Cortez,268920,1754422,22 +86407,Rafaelillo,166207,1396371,23 +86408,Trevor Hanaway,56292,142636,5 +86409,Uomo al mobilificio,53805,1853724,19 +86410,Miss Engle,104528,152741,4 +86411,Brolin,193893,1271,6 +86412,Ruiji's Maid,217923,1436271,31 +86413,Skinny Jeans,290764,74304,7 +86414,,27053,1460957,16 +86415,Herself - Model,327083,215317,3 +86416,,365709,1528380,12 +86417,Diane,41115,24590,5 +86418,Carmen Dragon,19827,69813,13 +86419,Bureaucrat,43778,1349310,3 +86420,Peppino,57996,5409,17 +86421,Nita,354832,974169,5 +86422,George Briggs,171738,1154280,1 +86423,Himself,63472,62,10 +86424,Trüffeljäger,2454,25136,17 +86425,Sheriff Jim Ellison,18447,30560,0 +86426,John,28969,44100,4 +86427,Lily,24986,482101,4 +86428,Father,61581,39165,10 +86429,Girl,254188,1340664,5 +86430,,293089,52355,3 +86431,Dori,182349,109156,1 +86432,Bob Knight,69898,557433,8 +86433,Monique La Coste - nurse,140276,227034,3 +86434,Engineer Sörsselssön,62897,116161,3 +86435,St. Valentin,252034,139460,3 +86436,Guenther X,68752,2228,0 +86437,Hot Wheels,10070,62816,7 +86438,Machine Gunner (uncredited),17687,1088077,12 +86439,Goon #3,284564,1836944,24 +86440,Manager,108222,103501,24 +86441,Rachel,414610,175658,6 +86442,Wex,36299,1771,6 +86443,Detainee on Monitor,97630,115737,30 +86444,Michael Jeffery,85507,100253,1 +86445,Parisian (voice),9389,1409656,12 +86446,Ike Evans,139856,77080,0 +86447,Richter,167330,48176,23 +86448,Headwaiter,53403,89615,2 +86449,Samuel Pang,64015,1619,0 +86450,Uncle Nate,99767,1205434,6 +86451,"The Fortune Teller in ""Trovatore""",37719,1031882,11 +86452,Janine,109610,1499012,12 +86453,Yumisaka,117212,110304,22 +86454,Lunnon Dick (henchman),176867,1353601,14 +86455,Melissa Nelson,71376,21625,0 +86456,Frat Boy,138544,1205902,15 +86457,Willi Reimann / Walter Ulbricht,265432,23112,8 +86458,General Douglas,33124,14468,5 +86459,Michael,37653,583401,3 +86460,General Amarjeeth Bakshi,14134,10510,13 +86461,Bunkie Taylor (as Dick Erdman),36635,9110,2 +86462,Himself,28036,93087,5 +86463,Ed,747,11109,1 +86464,Antonio Zanzi,27503,97998,3 +86465,Puneet,12273,85451,3 +86466,,47795,10336,9 +86467,Kunjumon,381691,584777,6 +86468,Magee,26809,49001,1 +86469,Eduardo Mazzullo,63186,33926,5 +86470,Frank Webster,20174,14502,0 +86471,Angie Robinson,27832,1088029,1 +86472,Frank Schultz,17820,118222,5 +86473,Nathan Nesbitt,371003,970561,2 +86474,Sami,1917,19935,3 +86475,Fat Mama,80473,158804,6 +86476,,22701,1056611,1 +86477,Gordon Northcott,3580,142294,40 +86478,Muriel Whitchurch,83015,11127,1 +86479,Keeper Collins (uncredited),87612,133277,9 +86480,"Cat, Stripper 1",414977,1676783,34 +86481,Dog Walker,352197,1807531,11 +86482,Mike (as Daniel Jones-Wood),308269,1414736,2 +86483,Dr. Wright,55347,157582,15 +86484,Faline (voice),13205,74288,5 +86485,Douchebag,172785,983467,8 +86486,Detective Brown,17317,108037,19 +86487,Kelly Slater,291,4334,12 +86488,Female Bartender,9870,149682,25 +86489,Jason,239498,12901,2 +86490,Sailor,7551,86271,17 +86491,Mr. Rapello,193878,56924,8 +86492,Himself,10918,94743,10 +86493,Hector Black,64685,94432,9 +86494,Owner of a ship,77057,33732,20 +86495,Carmelo Jorio,84865,87899,2 +86496,Katerina,58646,145312,2 +86497,Jo Byeong-woon,19482,75913,1 +86498,Prof. Paul Evans,90956,29036,6 +86499,Adam Calhorn Shaw,109018,26155,3 +86500,50 Cal Gunner,193756,1283046,21 +86501,Priester,12707,161741,8 +86502,Air Force Official,246655,51389,60 +86503,Lt. Marshall Buxton,139826,4138,2 +86504,Hangman,22396,103055,20 +86505,Elliott Manville,82237,82488,3 +86506,Taiichi,137504,134616,3 +86507,Shockwave / Soundwave (voice),38356,15831,37 +86508,Ruth Cameron,42640,97005,1 +86509,Lupe,234815,955272,4 +86510,Ben,9966,61131,6 +86511,Grimani,122023,42276,3 +86512,Bev,253277,16484,1 +86513,,227552,106370,10 +86514,The Wazir,19725,117555,8 +86515,"Marie, Yvonne's Maid",28261,85956,4 +86516,Johnny,331161,117525,4 +86517,,60457,8874,2 +86518,Alicia,286372,1352339,10 +86519,Theatre Actor,245700,1798371,56 +86520,Detective,39436,1693771,9 +86521,Florianne,242683,81167,5 +86522,John Tower,3081,21521,6 +86523,Diner Patron,303281,1286524,12 +86524,Maya,61400,77237,6 +86525,Denver Detective,43821,102071,43 +86526,Tim Kelsey,223497,30018,8 +86527,Lavretsky,149170,270391,2 +86528,Sallinen,70807,79760,3 +86529,Marine,146216,1448201,40 +86530,Absinthe Dealer,417870,51944,25 +86531,Fenoux,166883,263123,11 +86532,Hazama's Wife,34019,974738,10 +86533,Anita,122928,164094,5 +86534,Porter,157424,1328,0 +86535,The Head Waiter,47653,21303,2 +86536,,334298,38280,7 +86537,Douglas Toland,129851,99446,10 +86538,The Prisoner,3104,29659,4 +86539,Vadim,381356,1528536,3 +86540,Paco,114333,100307,1 +86541,Zhao Zilong,14538,25246,4 +86542,Heather Donahue,289923,26851,6 +86543,Female Geek,369885,1108809,52 +86544,Insp. Vijay Khanna,103236,35780,0 +86545,Captain Choi,64882,1335825,13 +86546,un indien,71630,582279,5 +86547,Felix Nestor,24411,131102,4 +86548,Mental Patient Two,27916,1090168,17 +86549,Pedestrian (uncredited),284052,1614440,41 +86550,Pascal,393407,37627,4 +86551,Dr. Eric Norris,49230,543132,1 +86552,HImself,63144,1624614,9 +86553,Frank,84340,8986,11 +86554,Izzy,374461,1172108,6 +86555,Rey (as Rey Gallegos),263115,52946,13 +86556,Claire Dolan,47186,1641,0 +86557,Claude,227262,18818,5 +86558,Fern Martin,138308,91640,1 +86559,Party Goer (uncredited),419430,1754534,29 +86560,Ethne Eustace,104485,3242,1 +86561,Pim,145247,1116,7 +86562,Gabe Moreno,186268,89750,2 +86563,Carol Ferris (voice),14011,15110,2 +86564,Beer Drinker (uncredited),53576,1062531,12 +86565,McKenzie Troll (voice),136799,1784326,39 +86566,Patrice,309581,36549,7 +86567,Asmodeus,28681,931246,4 +86568,Himself,418990,448526,1 +86569,Angelo Ferraro,270650,119713,7 +86570,Tom,52034,237170,4 +86571,Criminale Ucciso,59040,1283865,35 +86572,Rosario,234815,14532,3 +86573,Giant with Arrow,1271,1330779,77 +86574,D.A. Mark Calhoun,10917,124131,3 +86575,San Feng,37030,134662,1 +86576,,109587,1049337,26 +86577,Kostas Papadopoulos,374021,147799,1 +86578,Floor Manager,137093,67579,15 +86579,Margot Beck,10795,8791,1 +86580,Newspaper Reporter,3115,235720,19 +86581,Junger Mann - Titanic Show,1912,19895,7 +86582,Yoon Min-Cheol,296633,21687,0 +86583,Police,27814,1856479,15 +86584,Peter Godolphin (as Wallace Mac Donald),50329,96725,7 +86585,Ignatz Tsimmis,107973,2497,7 +86586,Himself,148807,1900079,0 +86587,Gossip (uncredited),43889,120442,12 +86588,Radinioff,53766,130495,3 +86589,Aunt Gussie,16659,127138,7 +86590,Commander,18665,1346930,14 +86591,Andreas Hinterstoisser,16436,4795,1 +86592,Mrs. McIlhenny,50363,111167,5 +86593,,247436,1282921,2 +86594,Sadao Hirayama,55197,33135,8 +86595,Cécile,255913,1182985,25 +86596,Jake,84337,535498,7 +86597,Control Lab Technician,177677,1562107,62 +86598,Marya,376188,935333,5 +86599,Frank Sorrell,31385,101393,4 +86600,Mechanische Katze / Bär (voice),12697,59333,5 +86601,Mr. Sperry,8272,137269,13 +86602,Ashley (uncredited),84337,100763,10 +86603,Saarne Institute Receptionist,21208,90463,18 +86604,Shaka,320588,213058,17 +86605,Aminaoshi,45205,25649,2 +86606,Helene (jung),217412,1543459,17 +86607,Jane Gibbons,75142,73845,2 +86608,Miss Styles,24801,1234653,14 +86609,Cyndi Chan (Ryan's Mom),18051,19127,5 +86610,Young Hugh,10918,31393,7 +86611,Mr Brown,77641,7633,2 +86612,Manicurist,157898,1429733,35 +86613,Sally,61528,1836,6 +86614,Wes Jacobs,274820,55086,3 +86615,Captain Fetterman,57597,36218,3 +86616,Sanunu,98203,1160511,26 +86617,Averell Dalton,11175,68446,2 +86618,Mr. George Nordmann,35129,106506,6 +86619,Father,62297,145580,4 +86620,Hickory John Beiler,74549,1820118,9 +86621,,437253,1118662,5 +86622,Marta,140846,15563,3 +86623,Carly Tate,323673,1366830,5 +86624,Elsa Einstein,15044,57449,13 +86625,Nancy Harris,48885,1790532,5 +86626,Norah,145191,41879,0 +86627,Tommy Ricardo,19827,15045,6 +86628,Himself,269797,108,6 +86629,Waitress,8414,54886,5 +86630,Roscoe,298228,1088244,5 +86631,Girl on Tony's Staff,170517,1745604,28 +86632,Detective (uncredited),43522,121066,77 +86633,War Office Politician (uncredited),297762,1824302,99 +86634,Henchman in the Stump,38107,121063,4 +86635,Charlotte,38362,10476,3 +86636,Ruby Kwan,58414,227804,2 +86637,Politician Bachubhai Bhigona,141603,105443,14 +86638,PJ,397717,1115984,4 +86639,Bobby,45875,57127,4 +86640,Firmino,119374,92193,3 +86641,Richard Crowthorne,381518,1821363,21 +86642,Will Varner,40085,40,3 +86643,Stripper (uncredited),15092,114668,59 +86644,Carlson,8988,1986,39 +86645,The Blakan / Shem,104430,14439,10 +86646,Herself,209112,1596937,35 +86647,Eric Masters,43388,80621,4 +86648,Abortion doctor,292625,1758593,4 +86649,Gillian,58467,20387,21 +86650,Clément Dussaut,334299,65569,4 +86651,Pietro Maximoff / Quicksilver,99861,27428,9 +86652,Bridget,137357,30497,8 +86653,"Ariane, la danseuse Allemande",90930,938895,0 +86654,"Remington, the butler",413232,85937,10 +86655,Trent,63326,85779,8 +86656,Himself,9951,60832,6 +86657,Hal Crane,37481,78854,3 +86658,Monster,10011,80884,16 +86659,Jeffrey,67748,1071154,3 +86660,Businessman from Astrakhan,57781,544620,7 +86661,Himself,100247,1127305,1 +86662,Limehouse Roustabout,52859,1434259,41 +86663,Nagg,68139,39028,3 +86664,Santiago Zavala,63706,84760,4 +86665,Hale,62728,16702,5 +86666,Nightclub Attendee / Climax Player,315855,1592934,47 +86667,гетман,365544,110034,9 +86668,Fourth Brother,55534,222557,5 +86669,Hyun-ja,25649,547972,4 +86670,Benjamin O'Ryan,8080,2282,2 +86671,Hairdresser,2976,1752744,99 +86672,Montgomery Blair,161187,37027,8 +86673,Celeste Boyle,322,4726,4 +86674,Veli-Matti Lehtonen,167928,138741,0 +86675,André,187602,1169487,8 +86676,Sugar,50318,1182567,22 +86677,Mr. Fisher,21544,1479,4 +86678,Natsume Senpai,51549,77872,9 +86679,Gintaras,437830,569843,3 +86680,Christina,14066,679,1 +86681,Marc Antony,34469,231273,15 +86682,Classroom Wise Guy,30996,1547064,8 +86683,Rev. Johnston,339312,1464977,9 +86684,Capt. Mary Jane O'Malley,330711,8256,1 +86685,Virginia Morgan,21159,91815,2 +86686,Hargon / Henchman #3 (voice),278901,78798,5 +86687,Patrick Meighan,214756,192,5 +86688,Donnie Prince,28704,108717,5 +86689,Angus MacMorrow,54318,46300,0 +86690,Silvio,58615,119991,0 +86691,Hubbell,126127,94433,3 +86692,Nuala O'Loan,5413,18345,2 +86693,'Peg Mom,290825,1766047,10 +86694,Greg Hutchins,31127,166251,3 +86695,Helene,27283,112945,2 +86696,Laxmi Das,362150,544897,3 +86697,Duty Manager,300155,79888,9 +86698,Windy Miller,75315,13555,3 +86699,Graham,56558,105810,15 +86700,Stumpy,188836,937836,5 +86701,Nightclub bartender,43113,1483419,52 +86702,Prince Hasan,82430,24701,3 +86703,Doctor,43459,1185747,5 +86704,Clelia,186988,68166,4 +86705,Melody (voice),13004,85432,4 +86706,,400610,586359,1 +86707,Elevator Operator,42298,119545,15 +86708,Luis José,116312,231170,2 +86709,Roddy Wilson,41551,126898,2 +86710,National Guard's soldier,151068,1086000,10 +86711,Parry Clay,43525,103089,7 +86712,Cuco,254869,85559,1 +86713,Meera,330431,81928,0 +86714,Marina (voice),14411,1922,1 +86715,Barbara Thompson,335869,1184801,9 +86716,Ottawa Indian Mother,97614,1207361,20 +86717,Cara,279690,11884,8 +86718,Buffy Maddux,125990,34915,6 +86719,Sgt. Jim Norby,4820,40393,7 +86720,Oliver Clinton,28299,83149,10 +86721,Jaime,138222,1518,5 +86722,David,262522,71033,6 +86723,Vincent,27079,8699,2 +86724,Yamauchi,55197,134312,5 +86725,Far,15440,116387,14 +86726,Sir Arthur Wellesley,70133,78427,4 +86727,Peter Krigstein,298228,1099301,4 +86728,Narrator / Horton / Dr. H. Hoovey (voice),29233,16421,0 +86729,Young Horatio Nelson,81687,30231,6 +86730,Steve,314011,8395,1 +86731,Saeki,43113,931393,23 +86732,Prokurator,155325,1138493,13 +86733,Phillip,246741,568266,21 +86734,Yumiko Hashimoto,148371,107963,1 +86735,Thorndyke,49609,100074,6 +86736,,410259,114372,1 +86737,Woman at Station,56154,115367,40 +86738,George the Doorman,10077,62934,12 +86739,Emma,63578,86477,2 +86740,Martin,72375,6020,6 +86741,Ben,94055,56444,8 +86742,Ryan,33788,57428,2 +86743,Sergeant Edmund Parry,425774,1707917,36 +86744,Dr. Mark Lucas,106016,10158,0 +86745,Himself,63144,1508938,20 +86746,Nana / Bill Jukes / Crocodile,273106,1519555,10 +86747,Tanner,50647,1056523,27 +86748,Daniel Mantovani,408537,1457004,1 +86749,Le fils de Thierry,329712,1517229,2 +86750,Nana,381645,175585,6 +86751,Slava,47851,236833,4 +86752,Dust Devil,5237,31512,0 +86753,Biber,57597,152804,0 +86754,,284467,3382,3 +86755,Herself,13516,939085,23 +86756,The Pretty Neighbor,51364,144003,3 +86757,Minor Role,43806,32193,32 +86758,Asano,24403,13275,0 +86759,Torfstecher,313896,16722,9 +86760,Lap Dancer,11358,1773102,34 +86761,Ross,55433,126429,0 +86762,Mr.Brown,133941,29304,5 +86763,Billy Buvanny,198176,1145709,3 +86764,Mrs. Edwards,29835,105019,3 +86765,Regent Hotel Concierge #2,240832,543138,47 +86766,Clarice Clark,14834,40036,1 +86767,Dylan,253235,1327297,12 +86768,Bernard Kouchner,30527,7037,6 +86769,Jarucha,35021,107867,6 +86770,Anna,55853,223272,2 +86771,Eugene,27432,122289,4 +86772,Lt. Meeker,297853,1790424,9 +86773,Viper,25684,94089,4 +86774,Max,33786,111368,10 +86775,Himself,352036,1099717,1 +86776,The Butler,11205,25222,15 +86777,Irwin,32235,1036441,7 +86778,Shipwrecked Radio Operator (uncredited),99934,30157,8 +86779,Mitsunari Ishida,209032,1029220,8 +86780,Charles Xavier / Professor X (Young),127585,5530,1 +86781,,301671,454163,13 +86782,Speed Racer,7459,46593,0 +86783,Campbell Dunleavy,10005,61854,9 +86784,Janitor,12182,13936,12 +86785,Carla,10096,1564987,23 +86786,Mitja,11330,1348450,10 +86787,Sing's sidekick,9470,545277,3 +86788,Camila,157424,1313830,6 +86789,Rosenblatt,24140,39288,9 +86790,Platoon Leader,8988,1153847,51 +86791,Colette,76821,35137,5 +86792,Lab Assistant,10710,164938,28 +86793,Diao-Erh,62762,1179218,3 +86794,Lucinda,20430,21858,0 +86795,Michele,37311,1194766,14 +86796,Lingerie Salesgirl,10761,66559,16 +86797,Davina,359870,182327,7 +86798,Profesora Cristina,125619,1293068,6 +86799,Announcer #1 (as Joey Walsh),57215,22035,10 +86800,Miss Penny,27138,14544,8 +86801,Navigator Kolotin,26873,96517,8 +86802,Charles,221240,37985,4 +86803,Mother,297762,1890493,58 +86804,Domash Tverdislavich - a Novgorod Boyar,10235,1623850,6 +86805,Marie,16439,544227,4 +86806,Bat Bennett,33923,111584,12 +86807,Luke (uncredited),2288,1402629,11 +86808,Neal Daniels,2503,23608,12 +86809,Tom Miller,256347,2978,0 +86810,Stacie,110598,59873,5 +86811,,375742,1564304,37 +86812,Monsignore,294819,628316,4 +86813,Dylan Piper,34560,62147,1 +86814,Angela Morgan (as Rene Ray),47312,95612,5 +86815,Paddie,40793,83453,2 +86816,Marianne Bell,125759,95789,2 +86817,Himself,157117,1161962,21 +86818,Louie Dumbrowsky,186268,14034,11 +86819,Son Goku / Son Gohan / Son Goten / Gotenks,126963,90496,0 +86820,Policewoman,166666,1435084,11 +86821,Helen Sanchez,14881,179183,4 +86822,Prof. John Dearborn (voice),27144,1196060,8 +86823,Olive,57215,8963,1 +86824,Waitress,2080,1353654,52 +86825,Gower,38437,103185,12 +86826,Gallagher,249969,8729,6 +86827,Milo,26574,1237,3 +86828,Gilbert,26152,44654,5 +86829,Broussaille,55370,35000,7 +86830,don Franco,235208,1149278,16 +86831,Shaffer,94182,133277,15 +86832,Sheba's Mother,1259,37053,21 +86833,Mrs. Sampson,99374,1949,8 +86834,Darth Vader,330459,1728954,15 +86835,Spencer,325189,1299232,14 +86836,,115427,1086296,12 +86837,Alexander Zalachenko,33613,92645,8 +86838,Van Axel,46436,179740,7 +86839,Lillian Lyons,147618,141070,2 +86840,Jargoniew #1,121824,4138,10 +86841,Ruth Harper,86472,553513,4 +86842,Ferry Captain,74,506,6 +86843,Chuck McBride - Perfect Date Host,4592,85199,15 +86844,Marcel Haffer,184098,78151,20 +86845,Osode,68715,118985,2 +86846,Harmon,111014,196737,5 +86847,Hanna,350060,1669836,4 +86848,Policeman,125257,81281,7 +86849,Jack Hand,253284,1288766,0 +86850,King,103731,10671,8 +86851,Prof. Balls,6081,14107,10 +86852,Ahmed,104485,3247,7 +86853,Senegalesischer Geldbote,140554,64531,37 +86854,Carmen Holgado,72822,3124,2 +86855,Ace,13802,1714,6 +86856,Tatie Rose,110160,585664,20 +86857,Glenda Chapman,44669,13026,1 +86858,Neil,11171,24045,0 +86859,Amanda,84577,930999,8 +86860,News Anchor,264644,201951,15 +86861,Ann Lemp Dietz,124115,2670,0 +86862,Kelly,42476,15628,6 +86863,Pop Riley,84337,9091,4 +86864,Javier Almada,370741,1075468,5 +86865,,164013,29839,1 +86866,Rosa,37719,121019,3 +86867,Maria,343283,1474244,1 +86868,Grady Coker,25473,10194,6 +86869,Love Lady,42623,1470110,8 +86870,,63876,246358,10 +86871,Algarvio,82968,1018917,10 +86872,Donny,423988,1873060,8 +86873,Père de Olivia,117678,19362,4 +86874,Takaaki Kuramoto,38625,117974,9 +86875,Lull,43792,129548,7 +86876,Yvonne de Florac,5767,45456,10 +86877,Lily Dreyer,67509,4390,1 +86878,Detective Choi,13855,564848,5 +86879,Mrs. Dragnea,48116,1257839,5 +86880,Anna,80443,94420,1 +86881,Shosaku Takasugi,19336,239046,2 +86882,Second Train Conductor,14554,136126,12 +86883,Joca,82968,139034,0 +86884,Video Arcade Counterman,41402,1753328,17 +86885,,46341,1031118,4 +86886,Nick,255343,27972,1 +86887,Prisoner,104277,52809,3 +86888,Ma,84336,42601,5 +86889,Sonia,42571,67320,0 +86890,Diner Patron,242090,1417299,7 +86891,Rick,138222,238352,10 +86892,Milo,2061,31960,3 +86893,Joy,82679,151254,2 +86894,Bill Barnes,289923,1099459,4 +86895,Emma,14976,1768631,12 +86896,Spirit of Christmas,51247,1923,5 +86897,Lisa Clayton,27085,9125,2 +86898,Cinco,222030,45060,0 +86899,Branka,67633,85690,8 +86900,Townswoman,134238,1660481,44 +86901,Recruitment Officer at Bus,256962,1819133,64 +86902,Prison Infirmary Guard (uncredited),15794,131003,54 +86903,Himself,38931,131666,1 +86904,Balem Abrasax,76757,37632,3 +86905,Bobby Parton,426670,1548302,19 +86906,Xin Longzi,10703,1613794,11 +86907,Elizabeth Stewart,40085,19098,10 +86908,Sumie,32690,106161,4 +86909,,49322,1535193,4 +86910,Fox Hunt Guest,147829,103946,46 +86911,Filippa,11832,70635,2 +86912,Florence Manning-Tutthorn,29368,3674,4 +86913,Said,53805,1855352,6 +86914,,320005,17817,2 +86915,Tavern Bartender,7288,1418031,14 +86916,Polish Waiter,140814,1033023,5 +86917,Local 1,84233,35562,8 +86918,Mickey,23397,6939,11 +86919,Corvino,288313,556721,2 +86920,Cherrington's Secretary,116973,103068,15 +86921,Frenchy (uncredited),48156,2758,5 +86922,Jesse James,42706,2879,0 +86923,Jesus,44655,50763,2 +86924,,48341,934113,10 +86925,"Faye, Judith's Mother",195867,65799,4 +86926,la donna del treno,56804,1865137,27 +86927,"Mietek ""Profesor""",49588,127853,10 +86928,Steve Deluca / Principal,55725,1829343,19 +86929,Buddy Evans,54660,16475,0 +86930,Phoebe,164331,85516,2 +86931,Policeman,31875,25675,8 +86932,German Audience Member,145220,1147921,18 +86933,Executive Police Officer,43113,1479153,35 +86934,Fabien,53404,1508678,11 +86935,Hathi / puppy wolf (voice),59803,565312,11 +86936,Manuelo,52847,120307,9 +86937,Angela Thacher,87514,21876,1 +86938,Emily,85446,479656,0 +86939,Monsieur Ibrahim,337,5004,0 +86940,,44716,1807466,18 +86941,Dusty,180929,104035,4 +86942,Themselves,44657,1627034,1 +86943,Lillian,332286,168331,6 +86944,Kiara,44566,77234,0 +86945,Police Sgt. Walsh,27144,1290419,10 +86946,Shannon,69560,18657,3 +86947,Tim Washington,71140,1226709,8 +86948,Marsac ('L'Adultère'),98302,24388,16 +86949,Arthur Duval,31265,113951,1 +86950,Kitty,413232,860,7 +86951,Brad from America,82040,592932,4 +86952,Jordan,345922,1783262,30 +86953,Minor Role,43806,120476,70 +86954,Nihat,49828,142839,3 +86955,Old Man,338676,1663869,20 +86956,sviaznoy,102197,120243,5 +86957,Otto (as William Yetter),166904,1379419,11 +86958,Plumitas,95134,100245,2 +86959,Maika,46738,446189,12 +86960,Miles Davis,150201,1448861,5 +86961,Caz,26390,10814,3 +86962,Laura,42709,927857,4 +86963,Paul le vigile,64437,225653,12 +86964,,74674,1445130,32 +86965,The English Lord's Wife,108017,1264221,3 +86966,Bessie Gilmore,125842,23882,3 +86967,Hermangarde,2002,7706,2 +86968,Huck Cheever,1950,8783,0 +86969,Shifu (voice),9502,4483,1 +86970,Firefighter #3,295723,1418262,32 +86971,Mrs. O.H.P. Weston-Parks,157343,985150,27 +86972,Walter,47525,74409,4 +86973,,132705,229616,1 +86974,,296313,40421,11 +86975,Martin Hall,26119,83453,6 +86976,Ruby Mackey,300090,138608,6 +86977,George 'Pop' Pilski,36786,14533,18 +86978,1st Customer,48775,543910,4 +86979,Cell Block Guard,26376,103932,54 +86980,Mike Malloy,71670,203048,5 +86981,Doc,286657,1353938,3 +86982,Announcer,5915,1431569,19 +86983,"Baby Jessie Pullman, Age 3 (as Baby Jane)",47921,1011213,6 +86984,David Rice,8247,17244,0 +86985,Staffera,43469,233174,4 +86986,Streetcar Conductor,157343,1198701,33 +86987,Station Master (uncredited),27349,103911,21 +86988,George Hartman,194722,1271,1 +86989,Spartan Baby Inspector,1271,1089927,27 +86990,Sam,42298,120781,4 +86991,Young Burglar,193899,29950,6 +86992,Lizzy Allen,120854,168707,1 +86993,2. Wache,9803,1542795,21 +86994,Anna,277968,552696,18 +86995,Shirley,426230,56910,3 +86996,King Augustus,30126,78849,9 +86997,Fortin,258384,94943,11 +86998,,85317,1253212,9 +86999,Himself,276536,2047,3 +87000,Muff Potter,42473,8255,11 +87001,UK Muppet Performer (voice),145220,1504914,53 +87002,John Philip Sousa,43365,20125,0 +87003,Vera,33623,582058,9 +87004,Resident,6145,44185,11 +87005,Janet Cruise,20196,4003,2 +87006,Val Henderson,48136,40393,1 +87007,Zombie Patient,82654,115596,28 +87008,Lewis Murray,244201,8731,6 +87009,Clarence Douglas,227306,1394448,17 +87010,Mary,167073,1383359,22 +87011,Brenda,4257,35705,1 +87012,Himself,413782,34374,4 +87013,Jenna the Working Girl,13442,10871,4 +87014,Second Judah,13073,124723,7 +87015,Bandit,436340,1744828,14 +87016,Hawkman / Captain Cold (voice) (uncredited),22855,3796,20 +87017,Zhukov,156141,70548,0 +87018,Policeman,328589,105510,25 +87019,Mr. Bang,321191,1020859,6 +87020,Marion,57996,1894239,10 +87021,Rudy,41301,128176,4 +87022,un passant,78377,13697,11 +87023,Claire,85446,222141,3 +87024,Hilda,122271,1735904,1 +87025,Lilly Carter,171581,120248,3 +87026,Sexy Blonde,10761,131723,20 +87027,,69619,105422,9 +87028,Rohit,14752,78924,8 +87029,Chess player,12796,93172,11 +87030,Il procuratore,103218,567977,9 +87031,Dragomir,6417,49673,3 +87032,Barbara Ellison,270015,96816,2 +87033,The Ogre,26643,111994,9 +87034,1st Platform Man,80596,14300,35 +87035,Clyde Alden,6069,28633,5 +87036,Daniel & Nathan Sims,67460,1242792,4 +87037,,409903,47435,6 +87038,Big Dave,71668,94432,15 +87039,Paige Edwards,10066,38406,1 +87040,,163077,278354,3 +87041,Prince of Darkness - Sorcery,27805,1031103,4 +87042,Bardock,24752,90496,4 +87043,Bridget,179812,1162331,13 +87044,Coroner,37935,1713946,10 +87045,Curzio Malaparte,63186,5676,0 +87046,Andrew,13849,79885,3 +87047,Señora Cartera,86126,1306114,3 +87048,James,2080,1003248,13 +87049,Dr. Parr,225285,1264234,8 +87050,Name Checker,5759,1741927,9 +87051,Whore,55700,223274,4 +87052,,235092,1216369,19 +87053,Mitch,39072,1385071,6 +87054,Henry,195068,2436,6 +87055,,35572,1599234,9 +87056,Police Officer Dillon (uncredited),17136,121364,29 +87057,Joon-ho (young) / Joon-ho's son,77117,1255409,11 +87058,Dagahra,36212,555588,7 +87059,Himself,245394,87720,6 +87060,Le cri de Karaba,21348,1838962,26 +87061,Hysterical Townswoman at Trial (uncredited),14615,30199,68 +87062,Peter,26679,1088119,6 +87063,Matón,25376,1331817,30 +87064,Steve,97630,45407,7 +87065,Eugenia Almada,370741,950969,4 +87066,Martin,42934,30316,2 +87067,Martin,250376,1136135,2 +87068,Crazy Guy,72105,1502862,43 +87069,Isabelle's mother,181456,19092,3 +87070,Jimmy,53870,232525,20 +87071,Dale Palmer,205587,239271,4 +87072,Enrique Lihn,325385,1775352,5 +87073,,190883,100045,4 +87074,Marie-Jeanne,12169,54675,1 +87075,Himself - Roaster,334461,1895,3 +87076,Machine Shop Worker (uncredited),5421,100956,9 +87077,Kim Lockemer,336775,101060,17 +87078,Son,149657,1130878,1 +87079,Empress Chi Chi Valenti,33343,1188781,9 +87080,Junko,134350,550869,12 +87081,Mary Ann Jones,73700,1951,2 +87082,Elizabeth Lochley,10916,52312,5 +87083,Briton Biker,240745,1660699,27 +87084,Eulabelle,42794,1024959,3 +87085,Harrow's Landlady,36373,98966,13 +87086,Earl O'Brien,71996,1213153,9 +87087,,31512,58593,16 +87088,Akimi Daisuke,23155,89832,5 +87089,portiere dell'albergo,165159,1159289,14 +87090,Metropolis Citizen,209112,1471446,49 +87091,Caretaker,62397,1894269,21 +87092,Ben Munceford,17744,16897,1 +87093,Nurse,27381,97619,23 +87094,Devlin,33134,1128158,7 +87095,Will Proudfoot,13258,81260,2 +87096,Aunt Line,10930,30720,2 +87097,Rútubílstjóri,72596,238163,28 +87098,maresciallo Panepino,107052,103627,23 +87099,Nathan Zuckerman,326285,11064,11 +87100,Sheriff,8915,1329373,11 +87101,Jasmine,322548,1497185,20 +87102,Woo-Jin,338729,1299479,8 +87103,Ettore,57965,227243,2 +87104,Dr. Joiner,153165,1201461,14 +87105,Son Gohan,38594,90496,21 +87106,Jane Melway,55728,6587,3 +87107,Desmond Curry,77822,14303,2 +87108,Clip from 'Words and Music' (archive footage),33740,41216,12 +87109,Buckley Dunstan,22968,9108,3 +87110,Prince Felix Yusupov,46827,22063,5 +87111,Filkins' Buddy,8457,77912,25 +87112,La vendeuse,41211,1180478,20 +87113,Soldier,5753,101279,10 +87114,Lucifer / Pom Pom / Bruno (voice),14128,15831,9 +87115,Rodríguez,11799,22890,4 +87116,Motojima,117212,96804,2 +87117,Señora de dominguero,254869,231486,12 +87118,,68715,106165,8 +87119,Seiji Shimada,17911,109423,3 +87120,Alyona's father,307649,30405,3 +87121,Eve,61527,52776,0 +87122,Bachelorette #1,11247,1776455,28 +87123,Peter,38031,120560,13 +87124,Captain Kelly (uncredited),144475,89729,16 +87125,Medical Policeman,48231,583908,11 +87126,Female Officer (uncredited),331962,1706153,35 +87127,Claude,52454,1630258,11 +87128,Generale Clark,63186,13784,2 +87129,"Wendy, the Maid (uncredited)",103938,95631,12 +87130,Salesman,32298,486,19 +87131,Susie,31385,1378400,14 +87132,Vi,86236,6932,4 +87133,Patrick Standish,194817,936,0 +87134,Gisela,74103,571188,7 +87135,Doc - a Notre Dame Professor,43812,13823,56 +87136,Prinzessin Helene,457,6253,3 +87137,Lorenzo,33704,78423,2 +87138,Louela Lawson,70476,6587,1 +87139,Toby,25674,1127498,8 +87140,Boax (voice),59297,1251325,1 +87141,Radovan,15303,111055,7 +87142,Mingo - Seven-Up,32080,231289,2 +87143,Izzy,40208,98577,10 +87144,Gloria,193641,98790,2 +87145,Alfonso,128637,1087599,4 +87146,Anne,33228,18197,3 +87147,la madre di Nathan,197089,26101,8 +87148,,20646,28777,2 +87149,Girl #1,72875,568029,19 +87150,Detective Sloan,53882,60061,5 +87151,Woman,122857,464188,12 +87152,"Thomas, the butler",172413,59196,4 +87153,Ranger Wentworth,294272,196780,11 +87154,Herself (archive footage),253337,1788330,18 +87155,Zedorah Chapman,53792,93971,9 +87156,Brown (The Last Free Man),367147,132078,1 +87157,Glorf (voice),27042,97002,5 +87158,Augustin,8988,1741945,18 +87159,Hungry,375366,1886301,35 +87160,Flophouse Desk Clerk (uncredited),28668,96722,11 +87161,Sari Bodeen,24810,1818098,8 +87162,,289679,98790,5 +87163,Joan Bemis (as Ja Nelle Johnson),84720,1092223,7 +87164,Sally (voice),43580,16059,3 +87165,Bluhm,51349,143977,9 +87166,,39056,545825,5 +87167,Space Cop / Alien Lord,280617,1035399,0 +87168,Marat Buzhayev,2001,562949,13 +87169,Jim Chamberlin,19665,237,2 +87170,Malin,82448,928017,18 +87171,Nelson Mitchler,286532,54729,9 +87172,Dr. Bruce Lyman,69266,15412,4 +87173,dirigente interessato a Nicola,44933,1839537,13 +87174,First GI,46872,95009,9 +87175,Limo Driver,245906,68954,28 +87176,Melvin,66193,52409,10 +87177,Alien,8410,1370,0 +87178,"Władysław Kolęda, mąż Jadwigi",38869,1537018,1 +87179,David Harmon,75564,549055,3 +87180,Jürgen Honk,80125,5844,2 +87181,Jerry Schilling,23178,193281,10 +87182,African Businessman,2080,2603,45 +87183,George W. Bush,16239,23659,0 +87184,Michael Del Priore,78096,190908,5 +87185,Patricia Deville,381518,33449,2 +87186,Tonn's Wife,17111,1629435,6 +87187,Rancher,197737,88778,18 +87188,Henchman,19336,235720,14 +87189,Rabbi Judah Hirsch,137491,9029,0 +87190,Generale Nencini,124202,11190,1 +87191,Old Zoe,70772,229200,11 +87192,"Tadeusz Kwiatkowski, ojciec Grzesia i Jędrka",155325,1347476,5 +87193,Will,308,31268,18 +87194,Maybelle's Store Dancer,2976,29215,74 +87195,Markus,13993,11067,4 +87196,,275060,128645,11 +87197,,72826,1167424,2 +87198,Leo,279090,1335230,6 +87199,Melanie Bryce,58903,5131,7 +87200,Jeanne Donge,63224,19633,2 +87201,Himself,410718,1702122,24 +87202,Micaela,125619,1293065,3 +87203,Na'im Lynn,74510,576229,1 +87204,Carla's Family #3,2143,132899,21 +87205,Trentadue,5482,33807,4 +87206,Sebi,167424,1822707,25 +87207,Barney Rubble / Dino / Mr. Spacely (voice),36868,33923,0 +87208,Kid (13 ans),336811,1349140,5 +87209,Liquor Store Clerk,85350,111000,20 +87210,The Girl,55343,1154772,3 +87211,Sgt. Mike Ho,25536,20519,0 +87212,Savelli's Henchman,52808,30900,6 +87213,Kate,26293,95042,6 +87214,Campaign Emcee,10710,1778261,38 +87215,Baron von Merkens,18333,38127,3 +87216,Lepidus,34469,23962,16 +87217,Ling,38770,1799185,18 +87218,Elvira Smollett,1942,8227,4 +87219,Shukichi (Grandfather),79382,554573,13 +87220,Frank,31867,23626,3 +87221,,4291,239526,17 +87222,Rodney 'Bo-Jo' Brown,96107,9865,9 +87223,"Fisher, Inspector of Accidents (uncredited)",43882,15387,7 +87224,Betty McGonigle / Agnes Dowton in the 'The Drunkard',43688,143670,4 +87225,Wei Wei (Adulto),362178,1549536,7 +87226,EMT 1,137145,1106888,6 +87227,Pooja Bedi,20742,86031,14 +87228,Mushroom,77534,582228,2 +87229,Beatrix,38027,1762431,20 +87230,Barnett Kale,16551,29712,4 +87231,Andy Hookens,51426,45232,1 +87232,Specialty Dancer,56135,589001,12 +87233,Truck,209112,76674,130 +87234,Matthew,300983,1472819,11 +87235,David Brady,50126,930508,15 +87236,News Woman (uncredited),345922,1188048,49 +87237,Maggie Ryan,64928,2929,4 +87238,Alfie Cartwright,39517,97050,8 +87239,Andrew,24050,11663,5 +87240,Derelict,142150,946148,5 +87241,Caden Cotard,4960,1233,0 +87242,Veronica,58013,35127,7 +87243,Man with Hat in Final Scene,24619,56585,28 +87244,Mart Ryde,82313,84407,1 +87245,1er client Night-Club,5511,1326575,20 +87246,Hantverkare,35304,552022,6 +87247,Young John Solomon,10071,62832,10 +87248,Mr. Lundie,18283,48959,3 +87249,Lenny Steinberg,44593,20788,6 +87250,Dr. Palmer,68976,89658,12 +87251,Twitchy Tweaker,68387,551477,32 +87252,Helle,46930,137827,13 +87253,Jim Sherbondy,61908,14847,0 +87254,Shane Waller,10274,64671,10 +87255,Ding Yuanda,217923,1436156,19 +87256,Himself,8847,56090,10 +87257,Older Edvena,38850,5151,9 +87258,Matthew (as M.K. Harris),91138,98950,2 +87259,Peggy O'Brien,80771,12025,2 +87260,Medic John Wheeler,46875,124185,3 +87261,Mr. Scratch / The Devil,43252,1905,7 +87262,Jake Houser,105548,1313506,8 +87263,Bonnetot,11540,24563,10 +87264,Filipp Makarych,38332,543724,2 +87265,,361380,1532532,7 +87266,Bokka Venkata Rao,80276,148052,7 +87267,Dusty Poot,43700,77760,8 +87268,Himself,70027,1490043,19 +87269,Pierre Ichimonji,39123,68704,1 +87270,Reporter,52437,544817,38 +87271,Silver Banshee (voice),342917,56152,4 +87272,Sheila Seymour,60140,2434,0 +87273,Drummer,313922,1732066,15 +87274,Shakthi,216156,1270331,4 +87275,La boulangère,25518,2415,14 +87276,Admiral Revil,39230,553407,13 +87277,Alex Carver,286521,192,0 +87278,Kommissar,9765,4541,6 +87279,Shona,317182,1204956,7 +87280,Gardo,206563,1372462,1 +87281,Waif (uncredited),31773,930166,19 +87282,Spitting Homeless Man,19719,85111,16 +87283,Halfhead,48180,140013,7 +87284,Miss Tuttle (uncredited),14615,1120315,92 +87285,Norris Prescott,17745,12889,15 +87286,General de With,149511,1788484,9 +87287,Ben Els,43811,7666,5 +87288,Kyle,271718,1243167,19 +87289,Bess,183662,128629,3 +87290,Postman's Jockey,118889,1494495,68 +87291,Marco,39413,145161,13 +87292,"Miss Stardust, Rance's New Girl",4932,13260,12 +87293,Overman,39766,6577,3 +87294,McGonigle,27629,13819,17 +87295,,327225,1019607,11 +87296,Camille,16022,1907,30 +87297,Tracey,251419,1286747,2 +87298,Chief Van Owen,142402,588,1 +87299,Gold Leader Dutch Vander,330459,58475,17 +87300,Cruz,325173,1188571,14 +87301,Himself (uncredited),44115,973238,24 +87302,"Maria Moromete ""Guica""",32601,1130080,2 +87303,Recepcionista,136752,1208800,13 +87304,Ben,300690,5352,4 +87305,Wilton,52360,29580,43 +87306,Twittering Female on the Moors,62143,1002235,43 +87307,Mutant Child,263115,1821496,78 +87308,,373200,1173214,2 +87309,,57458,1581028,1 +87310,Charlotte,72096,727,27 +87311,Officer Caruso,157354,79072,4 +87312,,19501,74036,7 +87313,Ben,270383,212686,3 +87314,Danielle,7511,52785,12 +87315,Luis,367732,54696,8 +87316,Burlington Potluck Guest,356752,1841535,59 +87317,Szukający toalety w niebie,155426,1519450,14 +87318,Johan Krouthén,128900,6001,13 +87319,Mrs. Pritchett,92311,528,2 +87320,Sentinel,310135,1716339,29 +87321,Helen,123109,20765,12 +87322,News anchor,290365,1360368,8 +87323,Melody,18045,82643,3 +87324,Bapak,39024,1760266,7 +87325,Bod,76543,311811,3 +87326,Mr. Yauch,335970,1651968,64 +87327,Gates,62046,127712,4 +87328,Gæst ved party,76312,1266459,13 +87329,Student in Drapes,246655,1796418,69 +87330,Riske's assistant,82631,231715,6 +87331,Aubrey Pollard Sr.,407448,81683,17 +87332,Haskins,30941,1936,2 +87333,Frau Fink,119820,1071146,13 +87334,Ruth Danvers,120615,40175,2 +87335,Rachel's Stylist,14976,77091,24 +87336,Special Appearance (Shaka Laka Baby song),66526,88138,8 +87337,Dr. Stomberg,283445,965205,5 +87338,Kyle Gass,2179,22297,1 +87339,Aunt Millicent (voice),44874,172888,3 +87340,Peter,270221,1322587,3 +87341,Sports Announcer,209112,1692048,78 +87342,Oz Washington,117905,1220722,6 +87343,Le directeur,53179,35001,4 +87344,Prosecutor,16374,80476,10 +87345,Intendente,408537,1159993,6 +87346,Andrea McDonald,228205,155965,8 +87347,Roger Ferris,12113,6193,0 +87348,,340119,44478,4 +87349,Gotham Seaport Cop (uncredited),209112,74595,136 +87350,Dick Wilbur,125736,22093,32 +87351,Invitata Matrimonio,59040,1706561,16 +87352,Franziska,2349,22944,3 +87353,High Priestess,37958,119250,18 +87354,Fern Simon,115109,133789,4 +87355,Additional Voice (voice),177572,60232,28 +87356,Mr. Foster,111042,19400,9 +87357,Capt. Jed Calbern,253250,14502,5 +87358,Ana,216369,1200962,2 +87359,Louis Tewanema,60853,1701863,7 +87360,Boris,96724,81269,40 +87361,Pamela,10521,1572035,17 +87362,Molly,96089,113934,13 +87363,Anne Elliot,243984,17161,0 +87364,Tracker Charley,425774,1707911,33 +87365,Pete Lynch,337549,47734,1 +87366,Visitor Center Morgue Man,329440,1388891,17 +87367,Salud,1721,18841,1 +87368,L'ouvrier agricole,12249,71930,1 +87369,Stenografen,20372,68418,13 +87370,Taurus,83223,45580,2 +87371,Jamie,46883,545603,0 +87372,Skip,18722,44792,22 +87373,Samir Malhotra,39217,42802,0 +87374,Gerald Ellis,2778,12850,3 +87375,Cadet Lt. Gerald Hibler,110502,163280,5 +87376,Phony Judge,31167,12356,10 +87377,Yuki Anayama,51581,115655,14 +87378,Poppy,17927,118420,9 +87379,Emmanuelle,40978,135617,1 +87380,Shawn (voice),51739,95136,10 +87381,Welder,15797,56985,7 +87382,Keith Lemon,118690,175462,0 +87383,Dad,339145,21136,6 +87384,"Regan, Hotel Manager (uncredited)",54139,13969,19 +87385,Marcus,42307,109438,0 +87386,María,378485,1677386,2 +87387,Herself,81538,1156405,6 +87388,Bridesmaid,150117,1586257,26 +87389,Car Crash Victim,339362,1526635,12 +87390,Dead Father,46695,1185422,13 +87391,Lucienne (voice),126319,1171905,4 +87392,Haru Asano,42170,150296,4 +87393,Orpheus,334527,1503893,15 +87394,Rabbit (voice),14885,77482,4 +87395,Naren Singh,33124,72118,0 +87396,Himself,201419,1536688,7 +87397,Katherine Alman,221135,5606,0 +87398,The Dead End Kids,27973,95294,29 +87399,Tong,13436,81042,2 +87400,Joe Steiner,226630,12149,2 +87401,Onza,80304,258,1 +87402,Urmi (as Divya Datta),66292,35778,3 +87403,Baby Nala,308174,1888488,20 +87404,Fairy at Comic Con (uncredited),214756,1759678,96 +87405,,254869,1423081,36 +87406,,247218,88469,1 +87407,Mrs. Robey,25738,14450,5 +87408,Big T,109391,1204673,5 +87409,Harry,102362,80001,16 +87410,Police Chief Superintendant,216156,578690,10 +87411,Stephanie,10362,93621,16 +87412,Leprechaun (Fire Stunt Double),19286,1471,15 +87413,Jane Adams (Sarah's Mother),245703,1085709,17 +87414,Ralph Maloney,43213,16477,5 +87415,Shpend,82624,1127918,11 +87416,Dr. Levander,24647,74736,7 +87417,Ferdie the Tailor,55604,2313,14 +87418,Assistent,104172,1384101,7 +87419,,105760,107872,7 +87420,Dr. Otto Hessler,19618,29285,5 +87421,Soldier,8988,1742409,76 +87422,Himself,133704,41798,0 +87423,Mr. Whitman Brinker,107593,19414,4 +87424,Day Nurse,41402,1362551,23 +87425,Sci-fi Girl,310593,1608416,28 +87426,Isabel de Mendoza,16432,82363,3 +87427,Kate,301876,35082,5 +87428,Killer,375599,77280,3 +87429,Edouard Dubarry,382597,56404,5 +87430,Danny,70695,74428,8 +87431,,236007,86302,0 +87432,Angry Villager,193756,1283063,43 +87433,,51267,143623,1 +87434,Robin,66469,1020763,1 +87435,Peguilhen,266044,1194754,13 +87436,"Beggar, Pai Chang Tien",11537,68676,1 +87437,Billy,77875,1110284,12 +87438,Gottfrid,46857,137543,1 +87439,Danny,16077,79188,2 +87440,Charles Roberts,250332,34091,41 +87441,Gavin,4613,139929,11 +87442,,17935,47423,6 +87443,Manager Hotel Pattaya,277839,1674838,17 +87444,Jake Rotherman,53654,3014,9 +87445,Davy Shelby,41234,125847,10 +87446,Annie Brackett,24150,21320,7 +87447,Second Stagecoach Driver,134238,1350563,41 +87448,Graham Watkins,447758,1184006,10 +87449,Sam,370755,1650159,24 +87450,Hap Richie,65211,95734,5 +87451,2nd Airport Official,91583,95366,22 +87452,Frank,85883,95956,1 +87453,Dar,27549,35350,0 +87454,Officer Hinch,14435,104046,13 +87455,Pierrot la Pince,8281,34616,6 +87456,Michael,297466,1270718,2 +87457,Ivana's Date,289723,1358978,8 +87458,Mariella de Luca,289126,1119647,2 +87459,Wendy Kane,63340,173682,3 +87460,Susanne Mortensen,16016,1562,3 +87461,Pendragon Army (uncredited),274857,1529370,67 +87462,Gifford,11788,36665,12 +87463,2nd Man at Lunch Counter,25241,1765271,16 +87464,Partygoer,10096,1573492,32 +87465,Directeur hôpital,8276,51105,14 +87466,Antonio Barozzi,75336,119991,0 +87467,Jarvis,424488,1052603,34 +87468,Warden Clinton T. Duffy,174278,82348,2 +87469,Himself,41331,550105,2 +87470,Robert Ravenhurst,9629,44486,5 +87471,Heloise Plisson,39127,6857,2 +87472,Susa,61552,1151732,7 +87473,Ali,139272,99315,0 +87474,Jenet Klyburn,209112,20089,12 +87475,Head of Nation,206647,1599258,46 +87476,Han Eun-gyo,118451,1067849,15 +87477,Cao Gang,362154,1562564,5 +87478,Diana Prince / Wonder Woman,209112,90633,2 +87479,Steve Dibiasi,59861,17838,10 +87480,,344560,219763,2 +87481,Coyote Effects (voice),74961,33923,1 +87482,Magda,112304,58793,5 +87483,Himself,356332,1518374,1 +87484,Executive,49524,1593005,21 +87485,Janet,48885,1407629,7 +87486,Lead Polish Inspector,246655,1796397,42 +87487,Bridget McGuinness,345003,1838571,12 +87488,Mickey Mannock,131737,990,7 +87489,La femme sage,25518,35917,6 +87490,Raakel,107525,11070,2 +87491,Reporter,80596,85934,12 +87492,Young Collette,84336,1171827,9 +87493,Tom Corbett,50126,1214777,7 +87494,Jill,4964,41091,12 +87495,Linda Prickles (voice),38055,56322,19 +87496,Static,25953,127520,5 +87497,Catherine Rietlander,68444,221658,3 +87498,Karim,315319,1599254,22 +87499,MD Geist,71444,84504,2 +87500,Commodore,23096,141239,7 +87501,Edward,85009,1120905,10 +87502,Female Drill Instructor #2,424488,1837279,25 +87503,,301671,1019963,8 +87504,Lt. David Corwin,10921,78150,9 +87505,Preacher,4550,1299313,10 +87506,Narrator,10946,1297494,5 +87507,Brunette in Theatre,157898,1082774,40 +87508,Tenchi Meisatsu,163870,1018944,23 +87509,Newscaster (voice),10527,197819,24 +87510,Prison Guard,339403,1371523,18 +87511,Béatrice,12807,22307,5 +87512,Zeyyat,53301,40024,3 +87513,,31244,1494849,4 +87514,,202239,549037,4 +87515,Mr. Hartman,14750,1657366,15 +87516,Siobhan,31165,6979,1 +87517,Scarlett,347630,1682328,12 +87518,Rocky / Armando (voice),26264,31365,7 +87519,Charlotte,157847,42704,18 +87520,Kowalski,1294,2341,3 +87521,,32764,56702,7 +87522,Vasco,84016,1271277,6 +87523,Baek Chul-gi,435821,1336801,5 +87524,Counterman at Italian Restaurant,149793,1123937,14 +87525,Man Behind Counter,228970,79907,42 +87526,Maschur,8292,1561203,18 +87527,Prince Philip,1165,2505,2 +87528,Limo Driver,92496,1795202,41 +87529,Dale Massie,12767,10822,2 +87530,Christian IV,56858,91519,12 +87531,Nikki,329289,95362,4 +87532,Hamir (voice),9904,60231,11 +87533,Kyogen Player #2,616,1593807,25 +87534,Perdido,172475,14736,4 +87535,Carlotta Guidicelli,76115,577641,3 +87536,Journalist,53870,1449399,14 +87537,Tinka,233639,1279896,8 +87538,Lindsey Brawnsworth,93116,198230,2 +87539,,11328,1444484,32 +87540,Police Officer,331313,1268090,24 +87541,Balzac specialist,156015,28615,12 +87542,,25626,1076049,57 +87543,Caterina,265226,1524908,8 +87544,Richterin Sophia,226693,37345,7 +87545,Sebastian,9655,58374,14 +87546,Padre Remigio,121516,119991,0 +87547,Dare,24392,11085,2 +87548,Todson,34193,28010,6 +87549,Frank Carson,33224,12311,5 +87550,Carrie Tu,57005,115495,2 +87551,Hotel proprietress,43346,80995,7 +87552,A Bird,64936,41258,9 +87553,Dr. Craig,20028,50573,4 +87554,Kathy,65579,36663,3 +87555,Bertha,256962,9283,14 +87556,Catherine,199647,18973,1 +87557,Party goer #2,199575,1438834,15 +87558,Juliana,82409,927853,2 +87559,Western Flight Attendant,10999,1228048,14 +87560,Carmen,74689,980358,2 +87561,,430973,227139,6 +87562,Belmont,47670,68456,4 +87563,,214938,1199625,7 +87564,Tina the Cleaner,21544,90723,9 +87565,Benjamin O. Moffatt,175065,5831,4 +87566,BJ's Girl,15022,1303208,22 +87567,Yong-Man,11658,70338,28 +87568,Marie,150056,17068,1 +87569,Sikong Xuan,66759,1163378,5 +87570,Billy Osgood,40957,1648887,5 +87571,regisseur Oesterspot,35016,36482,21 +87572,Lt. Col. Edward L. Rowny,407887,1604286,11 +87573,Nita Elksberg,76286,1033087,5 +87574,Switek,82,17941,9 +87575,Aunt Gladys,42604,1716153,8 +87576,Harold's Mother,158150,64897,8 +87577,LaPrez,244580,1488708,8 +87578,Stig,14078,76332,4 +87579,McGovern,239513,1297931,13 +87580,Guard at Reform School,99909,121066,41 +87581,Gene,10109,63588,8 +87582,Bowkemp,32029,1214019,9 +87583,Mick,403570,1313583,2 +87584,Jada,8382,42743,3 +87585,Wilma Flintstone (voice),48874,145257,0 +87586,Waiter (uncredited),31773,120701,17 +87587,,20646,1246051,1 +87588,Archibald,26505,61605,5 +87589,Máximo,418072,1676666,3 +87590,Jack Dietz,128270,4443,9 +87591,TV Mon,387399,1849535,12 +87592,Himself,70027,1002071,20 +87593,Harlan,135686,98950,2 +87594,Dr. Alma Wyatt,16022,5960,23 +87595,Fat Ocean Zephyr Investor,130507,108275,23 +87596,Himself,241620,219396,1 +87597,Tank,14923,20405,25 +87598,il sacerdote,56804,1865136,23 +87599,Casey,256474,32747,5 +87600,Amy,140846,58771,7 +87601,Ed,253851,205316,7 +87602,,13986,86011,7 +87603,Mrs. Eileen Sanderson,150338,3639,5 +87604,Gwathmi,137321,2843,30 +87605,Ikume,86520,552312,8 +87606,Fanny Forbes,48852,1708829,18 +87607,Woodrow 'Woody' Wilson,43142,8262,11 +87608,Penny,98369,86132,1 +87609,Albert Burriughs,38901,31711,0 +87610,Apprentice to Wang Pu,217923,1436293,49 +87611,Nim Galuu (voice),116711,37935,7 +87612,Barbie/Eden Starling,13459,74358,0 +87613,Marsak,50329,128159,21 +87614,SS-Mann Greifkommando,613,43169,53 +87615,Kim,177047,80591,5 +87616,Lucky Louie (as Dallas Taylor),335970,1718099,27 +87617,Mihaela Dorohoi (as Ina Dimitriu),403429,1640624,6 +87618,Nina,57209,225686,7 +87619,(voice),63498,979614,7 +87620,Wilbur,156,1833,0 +87621,Quinette,13993,11154,2 +87622,Lazzari,106155,6787,11 +87623,Usher,52437,105457,20 +87624,Minnie,27986,89101,12 +87625,Le médecin,22136,20853,4 +87626,Dickson (uncredited),31773,117783,55 +87627,Angie,116979,1097941,5 +87628,Leno LaBianca,381737,1456185,14 +87629,Nicole,12247,71886,5 +87630,Albert Gæmelkrå / Loppen,314285,15086,3 +87631,Beamer,26390,91508,17 +87632,Mario,32635,17094,1 +87633,Tania,9461,161795,7 +87634,Herself,329243,19797,9 +87635,Himself,113255,1056781,0 +87636,Alan Price,20806,133501,11 +87637,,38269,1818058,30 +87638,Javanese dancer,3023,1580384,13 +87639,Katherine,381015,107403,5 +87640,Ray Brooks,301334,77335,1 +87641,Julie,317214,1332029,8 +87642,Francis,245891,135352,22 +87643,Capt. O'Brien,19010,68764,5 +87644,Leo,264644,64712,5 +87645,Dr. Withersford,401222,11782,1 +87646,Jules Barker,69917,557449,2 +87647,Rosa Melchior,246860,10255,11 +87648,Security Guard,11172,163991,27 +87649,Lord Byron,332283,90451,7 +87650,,405882,97826,18 +87651,Jean Berkey,86829,36662,1 +87652,Policeman,38433,120445,15 +87653,June,36628,1657296,4 +87654,Lillian,97829,101995,8 +87655,Laborer,109716,1239954,69 +87656,Auntie Li,375170,1623027,7 +87657,Kaitlin,62046,15852,1 +87658,Patti Smith,330947,56200,16 +87659,Doreen's Friend,332979,1622607,23 +87660,Hannu,219335,121783,2 +87661,Yoli,241968,4367,2 +87662,Chris,1116,1896856,19 +87663,God,17825,140457,3 +87664,Councilman Rose,312497,154917,11 +87665,John Kurlander,302528,14329,3 +87666,Specialty,108222,1671174,17 +87667,Henry,291871,139358,2 +87668,Andrew Judson,183412,1054306,5 +87669,Gabriel Garza,51823,72132,3 +87670,Michael,315319,1880538,24 +87671,Gayle,38244,2453,2 +87672,Monique,27711,1192159,5 +87673,Young Kate,202214,110116,6 +87674,Jordan,287903,1443677,7 +87675,Kristy Earl,9885,60004,2 +87676,Tyler Martel,44945,141530,24 +87677,Norah,12182,52852,1 +87678,Referee,52437,1091312,13 +87679,Frank Uva,243935,1379965,28 +87680,Co-Worker,73943,39353,10 +87681,Catfish,239566,1457291,63 +87682,Gong Peng,25626,1339,24 +87683,Party Guest,43811,1395666,24 +87684,Boy on Bicycle,1550,1594615,12 +87685,SWAT Commander,18763,62423,5 +87686,Gary Johnston (voice) / Joe (voice) / Kim Jong Il (voice) / Hans Blix (voice) / Carson (voice) / Matt Damon (voice) / Drunk in Bar (voice) / Tim Robbins (voice) / Sean Penn (voice) / Michael Moore (voice) / Helen Hunt (voice) / Susan Sarandon (voice) / Others (voice),3989,34517,0 +87687,Client #3/$1000 Trick,47186,88750,23 +87688,James Hand,253284,1603506,3 +87689,Alan,313922,1707099,24 +87690,Grace,19688,56757,1 +87691,Hy Jessup,151086,1204987,5 +87692,Ernesto,280092,78321,21 +87693,Rachel Dunn,422472,1475033,4 +87694,Anna,362057,1242776,1 +87695,Srinivasan,341420,1124584,0 +87696,Female Kiss-Ass Executive,193893,1381406,22 +87697,Gast,53256,16811,15 +87698,,265180,583284,10 +87699,Nate,4982,40377,6 +87700,Sheriff,37932,179495,6 +87701,Buzz Lightyear (voice),77887,12898,0 +87702,Himself (Goofy animator),22752,109453,10 +87703,Jessica,29083,102857,10 +87704,mother,317723,1151791,3 +87705,Sheriff Ralph Wittrock,144471,30115,6 +87706,Isabel Rivers,189621,114767,4 +87707,Petr Kubes - biologist,19757,138063,10 +87708,Businessman (uncredited),2503,577739,33 +87709,Casino Maintenance Worker,11358,1228459,28 +87710,Subject #51,29151,74541,4 +87711,Uniformed Cop #2,2001,1781695,26 +87712,David O'Reilly,49847,142947,0 +87713,Seneschal,21533,1228374,19 +87714,Detective Hunter Rush,9870,13021,16 +87715,Burke Ramsey Auditionee / Himself,430826,1891542,51 +87716,,295273,71641,15 +87717,Shevket,102384,84230,4 +87718,Mme Simon,381356,19936,7 +87719,,37055,1207310,2 +87720,,54959,11861,6 +87721,Fiona,8247,43264,17 +87722,Comic Con Booth Girl (uncredited),214756,1759674,94 +87723,Curious Waitress,31146,1841261,16 +87724,Himself,40120,82415,0 +87725,Kyle,272072,1324628,2 +87726,Col. H.D.X. Wells,157343,14969,9 +87727,VIP Supporter,332979,1622606,16 +87728,Kailashnath,46387,86784,8 +87729,,15776,1030330,24 +87730,Ilona,380731,1574183,3 +87731,Krimo,277839,1180423,2 +87732,Tetsuya,38010,58611,4 +87733,Sausage Mascot,16232,31837,7 +87734,"Drveni, Bossov telohranitelj 1",341559,569975,14 +87735,Rosa,33611,111065,2 +87736,Lydia,18826,52404,11 +87737,Leavenworth Prison Guard (uncredited),28000,40221,41 +87738,Interne,27966,199891,17 +87739,Soldier 2,5237,928728,12 +87740,,45441,27782,11 +87741,Kobayashi,108634,235233,7 +87742,"(segment ""Miminashi Hôichi no hanashi"")",30959,552671,55 +87743,Sofia,48962,230583,6 +87744,Umay,44246,5118,0 +87745,Ace / Chapelle,35025,24895,0 +87746,Commandant,22999,30017,4 +87747,Muscle Man,92496,1795187,36 +87748,Flora Talbot,72474,85042,2 +87749,David,39308,139687,2 +87750,Epileptic Boxer,15003,1059943,9 +87751,Sushi Chef,214086,2249,10 +87752,Paul D. Cummings,79372,14968,7 +87753,Dr. Katherine McMichaels,14510,27995,1 +87754,Bertie Steen,44087,7682,22 +87755,Jaime Pons,317168,1507336,5 +87756,Jimmy,335970,35753,6 +87757,So-yeon's mother,19482,587677,11 +87758,Talking Statue #2,46169,135257,9 +87759,Tuk-Tuk Driver Soth,49853,1648773,17 +87760,"Official at Home Office, MI5",41597,131029,18 +87761,Jimmy Takeo,42062,82385,8 +87762,Himself - Cameo (uncredited),190269,14286,7 +87763,Dean,35197,113967,0 +87764,Young Pastor,84354,1106195,15 +87765,il giudice,3520,1049841,17 +87766,Himself,111332,98215,8 +87767,Dr. Drakken (voice),51786,31531,5 +87768,Man in Brixton Music Hall,52959,11764,12 +87769,Lynchman (uncredited),76203,148999,59 +87770,La policière,41211,130664,18 +87771,Themselves,42634,1367581,13 +87772,Gabe Moreno,166904,89750,4 +87773,Peggy Finnegan,99909,14870,8 +87774,Mother,398289,4430,5 +87775,Ed,71503,563102,23 +87776,Dr. Bohra,148284,14596,2 +87777,Kuririn (voice),303857,65510,3 +87778,,62397,1894264,11 +87779,Vater,2172,22559,2 +87780,Vanni delle Rondini,61217,3491,2 +87781,Man on Street,3580,80301,51 +87782,Brian Winslow,38579,965819,13 +87783,Olga,280004,1336775,14 +87784,mamma di Ezio,42892,5683,10 +87785,Muk,30305,106032,2 +87786,,65713,235981,1 +87787,Rachel Schpitendavel,42648,10341,1 +87788,Sylvia,405621,105880,6 +87789,Anina,180644,1845733,1 +87790,Boy (voice),15916,70133,2 +87791,Saeko Sono,72933,555063,4 +87792,Davey Osborne,48677,9976,0 +87793,Jerry Donavan,43009,12311,1 +87794,Jokumsen,5206,1566,9 +87795,Mme Danvers,190853,19370,4 +87796,Walsh,322922,18181,2 +87797,Tognaccio,159474,29431,9 +87798,Bihter,31405,1047996,6 +87799,Victini (voice),115223,24651,3 +87800,One Of James Gang,43829,4072,15 +87801,Stone,88390,9811,0 +87802,Little Man,24657,119571,7 +87803,Patricia,65123,47433,5 +87804,Creature,224944,1642135,10 +87805,Irene,58013,59640,3 +87806,Leo Smith,68050,79630,1 +87807,"Shuhei Horikawa, le père",27372,33135,0 +87808,Bardin,76200,285738,10 +87809,Gajdar János,94663,1004107,1 +87810,Schneewittchen,410774,587208,1 +87811,Ray,31867,86237,7 +87812,Ravi Kapoor,66292,1790496,7 +87813,Billy Joe Hill,14452,53199,11 +87814,Detective T. Finnegan,118134,123576,13 +87815,Alma,42819,132551,5 +87816,,63215,1520899,8 +87817,Bailiff,354979,1636794,35 +87818,Karisto's assistant,217038,124873,5 +87819,Bill Hogan,268875,3243,2 +87820,Man at Church (uncredited),16442,89736,69 +87821,Bambina nascondino,57918,1014935,7 +87822,Gemma,47535,65444,8 +87823,Saastamoinen,80472,88918,5 +87824,2nd Staff Sergeant Aubrey Stamps,12412,15543,0 +87825,Katia,157424,104023,8 +87826,J.W. Ridgeway,268350,34317,7 +87827,Young man at Hotel,36236,32058,10 +87828,Priscilla (voice),269149,40462,12 +87829,Cook,122023,45588,7 +87830,Frenchman,18651,120545,26 +87831,Elaine Meyer,10900,67706,9 +87832,,205349,584233,18 +87833,Janice Cutter,222932,83462,2 +87834,Herself,82153,1234643,0 +87835,Julie Goulain,109261,81792,9 +87836,Sam,340881,968863,3 +87837,Mr. Dugan,7088,51938,3 +87838,Marguerite Galipeau,62363,559677,3 +87839,Businessman,9812,168247,19 +87840,,70966,545608,8 +87841,The Great-Aunt,336804,1595078,12 +87842,Dr. Evans,13162,10223,3 +87843,Holden,39356,122764,10 +87844,Helena,353686,593,5 +87845,Second Mate,52859,2928,12 +87846,Haskell Wax,242097,94402,10 +87847,Photographer,52437,89660,39 +87848,Marco Segrain,25388,15140,1 +87849,Ed Loomis,39130,30215,14 +87850,Mr. Paul,133382,2954,11 +87851,Birnikat,214938,1038247,2 +87852,,134360,232415,2 +87853,,102858,1163599,3 +87854,Pooja Chaudhary,46387,1043347,3 +87855,Linda (NSA Staffer),245703,1049830,10 +87856,Sultan Khanim,371741,1569922,13 +87857,Ted’s Wife,8270,54237,34 +87858,Mike,49158,1292665,7 +87859,Jackson's Doxy,41073,20143,7 +87860,,285532,119514,2 +87861,College Girl Singer,85350,147084,34 +87862,,246829,55912,0 +87863,Will,390059,221018,3 +87864,Band Leader / Emcee at Harry's,52437,89735,8 +87865,Set Guard,205584,1535048,20 +87866,Jeff Hanson,23964,90474,16 +87867,Harwell,25707,94136,1 +87868,Adam Pasture,33005,1710216,16 +87869,Jimmy,8272,81683,6 +87870,Michel,17223,44561,3 +87871,Nicodemus,30973,107401,10 +87872,Rosita,122709,1038669,7 +87873,Trucker,257214,156274,10 +87874,UK Muppet Performer (voice),145220,1401233,50 +87875,himself,33916,135662,1 +87876,Herman,28739,87794,6 +87877,Government Minister,245168,1332982,18 +87878,Purser (uncredited),105551,88462,13 +87879,Young Suit #1,228970,1495085,37 +87880,George York,16442,10165,9 +87881,Jim Wyatt,61985,234640,2 +87882,,61904,516518,7 +87883,Harry Crown,52661,194,0 +87884,Don,49158,987053,10 +87885,Herself,366696,1753498,23 +87886,Joan Woods,94480,171264,1 +87887,Umpire,216153,126352,10 +87888,Mary,240733,1275945,3 +87889,Kim,10753,119454,4 +87890,Le docteur Carrua,183962,32677,6 +87891,Sandy Veloso,214129,108686,0 +87892,,77185,67320,1 +87893,Dr. Stephen Kildare,153163,17756,7 +87894,Joey - Corny Collins Council,2976,1752326,49 +87895,Jean - Maitre D',131781,16421,6 +87896,Mrs. Gaunt,30014,103909,10 +87897,Hearing Specatator (uncredited),28000,1601649,95 +87898,Lew,32044,101747,4 +87899,Newsboy,153162,954674,35 +87900,Chen Chun,18758,1377479,2 +87901,Skinny Black,10476,8171,6 +87902,Clare,200727,1734960,13 +87903,Tuskevitch,96724,1795833,37 +87904,Henry Portman,25385,83827,7 +87905,,149154,1497143,4 +87906,Lotus Land Dancer,32657,1294968,28 +87907,The Cop,51358,13953,4 +87908,Tommy,62768,6384,1 +87909,Sallyann Weatharby,253250,44881,2 +87910,John Harding,312669,569,1 +87911,The Young Woman,43976,1493009,5 +87912,La signorina nel vagone letto,63178,227309,3 +87913,Officer Edwards,8398,54852,5 +87914,Sükriye,101217,97274,2 +87915,Reporter at Hearing,3580,1278393,53 +87916,Jennifer Keaton,215579,1217195,4 +87917,Woman in boots,286521,1212620,23 +87918,,77060,1600794,10 +87919,Wealthy Party Goer (uncredited),419430,558318,31 +87920,Fils Mou - Junior,26566,592717,11 +87921,Marucchelli,186630,31989,1 +87922,L'homme de l'AFP / AFP employee,74714,35527,2 +87923,Deschamps,258384,278796,5 +87924,Maureen,21619,87715,7 +87925,Christmas Daughter,283445,1720595,21 +87926,,236053,1166717,3 +87927,Man at Club (uncredited),17136,1173152,21 +87928,Johnny Ingram,26983,33162,0 +87929,Baby Glorida (voice),10527,49920,20 +87930,Manjardo,190341,1063379,1 +87931,Gretchen,98339,65776,13 +87932,Tommy's Sister,8988,1742413,79 +87933,Father,310119,8785,2 +87934,La petite Juliette,1421,237858,37 +87935,Donny,256740,37027,5 +87936,Marian Hardy,43846,90075,3 +87937,Sage,387999,1745929,7 +87938,John Traherne,15013,13101,16 +87939,Chief Lloyd Huxley,188102,1226313,13 +87940,송재필,257296,1020859,5 +87941,Dance Worker Owed Three Weeks' Wages,157343,119546,31 +87942,Valerie Velardi,212934,59240,3 +87943,'Doc' Penny,19618,2097,3 +87944,Dr. Kerry Langdon,134201,31391,9 +87945,,16447,1711556,6 +87946,Meg Swift,213443,88461,4 +87947,Passerby (Bus Station),244786,1098246,23 +87948,Pandora 'Panny' Leaf,42734,226626,3 +87949,Streetwalker,12994,6944,5 +87950,Alice Hobson,16410,985061,3 +87951,Dr. Aranda,254188,117824,22 +87952,Arielle,64972,20373,8 +87953,Florence,25518,20530,12 +87954,,253395,1296812,1 +87955,Bev Stevens,59115,550955,9 +87956,Mary Winters,60965,83338,10 +87957,Prof. Waldmann,3057,227,3 +87958,Joke Thief,150117,1586290,24 +87959,Nefast ´Fasto´,7343,52537,8 +87960,Vanessa,19850,4452,7 +87961,Julia Lennon,33511,37058,1 +87962,Gabi,12427,1811525,8 +87963,Raoul,87302,156431,9 +87964,Vagrant #1,111470,1208758,29 +87965,Wedding Guest,43809,30117,21 +87966,Lovejoy Wells,87514,122750,10 +87967,Margot,420703,1692966,10 +87968,Larson,345775,1587693,5 +87969,Lewis,120259,30216,15 +87970,Biaggio,156700,57412,2 +87971,Fung,327389,158521,2 +87972,Gen. Van Allen,194407,13358,7 +87973,M.D. Shyama,40998,53372,3 +87974,Mrs. Perlili,70351,20631,10 +87975,,125264,108028,12 +87976,Mrs. Bannerjee,115109,938113,18 +87977,Ms. Barber,13596,1732322,24 +87978,News Anchor,288710,1356867,8 +87979,Mère d'Anina,180644,1672118,6 +87980,Technician Williams (voice),16873,157717,16 +87981,Sophia's Mom (voice),169314,97619,2 +87982,Helen Hadley Hamilton,229610,10926,8 +87983,Frank Featherbed,10918,4690,2 +87984,Plain Maid,156711,1349732,25 +87985,Woo-Jin,338729,123820,6 +87986,Col. Dawson Ames,178341,29601,11 +87987,Woman of the House,374473,1650248,16 +87988,Harry,28710,1162538,7 +87989,Officer Wong,47647,1191058,13 +87990,Ağanın Adamı,452606,1797947,16 +87991,Mrs. Claypool,37719,10804,6 +87992,Dennison,133255,1096830,7 +87993,Zach,131689,231057,2 +87994,Tolik,19277,115874,9 +87995,William Ward,106136,2047,0 +87996,Toilet Girl,305932,1883547,15 +87997,,59572,148595,3 +87998,Master of Ceremonies,106821,148585,10 +87999,Chiren,17189,1680,2 +88000,Princess Yun Lo,172972,68557,1 +88001,Monaco,59040,1869434,12 +88002,Bud,179398,17638,3 +88003,Selena Gomez,64328,77948,15 +88004,Keiko Aikawa,294651,1029718,7 +88005,Uncle Ah Ba,88922,229302,5 +88006,Hoffman / Henning,229254,85807,1 +88007,,77057,1591687,19 +88008,Woman Sitting with Nick in Cafe,14589,1468182,47 +88009,Hong-san,25653,96485,1 +88010,Herself,323555,2022,3 +88011,German soldier,51275,128855,6 +88012,Sebastian,12796,21605,0 +88013,First-Nighter,132928,2776,21 +88014,The Colonel,380731,1643336,11 +88015,Fat Michaels,30034,4307,5 +88016,Schofield,178927,5788,4 +88017,Dr. David McKeeson,69266,33533,5 +88018,Grateful Dead Cover Band,228970,1495092,47 +88019,Madge Stone,87612,81018,1 +88020,Magna Flink,41764,6661,18 +88021,Sul-rang / Wol-so,348689,20737,1 +88022,Kurt Sloane,308529,1427888,0 +88023,Pera,20160,89504,10 +88024,,94696,559963,9 +88025,Don,8457,62862,18 +88026,Wrestling Fan in Bar (uncredited),32552,2501,30 +88027,Paige York,335872,1580,1 +88028,Finance minister,65131,237286,8 +88029,Helen Burke,52203,39393,4 +88030,Fauchery (as Claude Moore),66812,37770,7 +88031,Brother Abraham,176670,33007,8 +88032,Marc Pirmet,71732,25854,0 +88033,Jonesy,47638,17495,1 +88034,Jane Lester,50350,293856,6 +88035,Mary Jane Clairmont,332283,130977,5 +88036,Toto [トト](voice),56391,1191198,6 +88037,Annie,270303,1361100,6 +88038,Prizivnik,150223,1870837,24 +88039,Bridesmaid,14976,1669954,15 +88040,L'étudiant auto-stoppeur,59118,213214,29 +88041,Alma,4953,53936,7 +88042,Cerisia,383618,1581393,2 +88043,Farmer's Daughter,30982,21301,1 +88044,Clive,63045,29298,2 +88045,Himself,15258,194768,95 +88046,"Hugh, the Butler",96107,103185,11 +88047,Tugg (voice),59981,2387,2 +88048,Chad,62289,11805,9 +88049,Cedric,26267,94983,3 +88050,Joseph of Arimathea,335778,5310,11 +88051,Harald,210913,1194711,4 +88052,Priscilla,15934,176724,8 +88053,,252059,1139623,7 +88054,Gatekeeper - MacFay Estate,14589,89735,15 +88055,Toshiaki Honjo,25716,125944,22 +88056,Andre,262338,1396599,14 +88057,Kurbatov,3102,30405,0 +88058,Nicolas,4974,579268,10 +88059,Wigmaker,41206,14359,14 +88060,Nikolai Vasilyevich (voice),63291,236820,10 +88061,,17935,128677,8 +88062,Bob Reynolds,126083,153081,4 +88063,Niharika's Brother (Cameo Appearance),80281,237969,5 +88064,Frank Finley,322460,40948,5 +88065,Odysseas,46278,135669,3 +88066,Himself,13516,939070,2 +88067,Man Dancing at The Boiler,288521,39801,12 +88068,Hobart Bosworth,90395,29536,5 +88069,M (uncredited),206647,5309,77 +88070,Brendan Dax,5289,42709,9 +88071,Ptolemy,31561,12009,10 +88072,Paris,225283,1071126,3 +88073,Dancer,59962,1581110,41 +88074,Ralph Stanton,61473,7676,1 +88075,Emile Beaufort,75066,11544,0 +88076,Mara,50318,1411821,32 +88077,Stig,261112,1304487,2 +88078,Michael-child,228074,95093,10 +88079,Jay,195269,37696,5 +88080,Lider gruppa Tony Burns,390880,1599404,7 +88081,Arthur Barrett,130900,33742,7 +88082,Anna,24140,26584,10 +88083,Mia,270654,5916,3 +88084,Lagoona Blue (voice),227257,75037,12 +88085,Isabell,15179,79271,4 +88086,Heather Toy,156700,88029,12 +88087,Suzie,18820,5644,2 +88088,Himself,63144,1258541,26 +88089,Mara,325302,1465615,3 +88090,Takashi,77439,10884,2 +88091,Nico,109439,558036,15 +88092,Shu Pan Wu,39943,121401,2 +88093,Cab Driver,167810,1736432,30 +88094,Marie,37653,583402,4 +88095,Alexander von Bülow,48268,1646,1 +88096,Helen,22029,10227,1 +88097,Traveler (uncredited),2288,1617366,13 +88098,Tubby,3023,29642,1 +88099,Okeoma,209401,41044,8 +88100,Roddeltante,25797,27960,12 +88101,,38154,554573,11 +88102,Kissing Woman,242224,1413784,27 +88103,Cherise,44943,86271,24 +88104,Venticello,52913,235871,2 +88105,Store Clerk,24619,1130025,30 +88106,Lieutenant Edwards,86254,58594,8 +88107,,118257,488,13 +88108,Lt. Marquez,302666,1440060,17 +88109,Snake Hunter #1,7555,1296118,14 +88110,Old Lady with Hat,18333,550134,5 +88111,«авторитет» Никола Питерский,20871,1189309,6 +88112,Beauty (uncredited),284052,1785910,38 +88113,Henry Morgenthau Sr.,354859,2505,16 +88114,Lester Wong,10610,66717,5 +88115,Angela,47186,143151,26 +88116,Marsha,242835,8438,9 +88117,Doctor Marsha,31913,571251,15 +88118,Hélène,271919,8742,2 +88119,Santa Claus,250535,388,0 +88120,Aglaya,63958,238312,10 +88121,Rich,322922,52474,0 +88122,G.I. in Field #3,19996,1764143,40 +88123,Bully #1,188102,166518,14 +88124,,16017,1444469,10 +88125,Kang In-Ho,83754,1240218,1 +88126,Deborah Wyatt,63186,236581,4 +88127,Himself,157117,71794,7 +88128,The Brat,76533,579285,7 +88129,Lady Susan Willens,46586,136976,2 +88130,Piero Albertini,195385,22312,2 +88131,Bent - Lystfisker,21282,1077853,15 +88132,Adam,228496,27421,2 +88133,Bobby,62297,55851,2 +88134,Miss Universe,310593,1255247,5 +88135,Rose,202215,69221,0 +88136,Agent de l’Immigration,310567,227849,6 +88137,Bully #2,62837,1108137,9 +88138,Male nurse,42420,128115,8 +88139,Paolo Cioffa,42436,69036,0 +88140,Daniel Leight / Lightspeed,31985,25527,0 +88141,Female Cop,9968,61169,19 +88142,Helena,95536,18847,6 +88143,Jan Brasher,242835,14733,5 +88144,Larry Drake (Teenage Werewolf),116327,134000,3 +88145,Alice Howland's Mother,284293,1391351,16 +88146,Pierre Clemont,87936,151651,3 +88147,Pamela Harris,302699,39388,2 +88148,Santini,26516,55432,15 +88149,Hei Mao,248376,1622942,16 +88150,Minor Role,32610,978032,38 +88151,Maj. Dunham,81110,117074,4 +88152,,57811,87335,1 +88153,Wally Dean,166621,118203,1 +88154,,52959,6355,11 +88155,Anzhela,64483,344947,7 +88156,Javier (uncredited),331313,1767215,43 +88157,Deusett,27085,1409409,13 +88158,Kelly Tanner,268321,1014932,2 +88159,'Freshman' Stack,28297,9596,8 +88160,Grandpa,16997,195813,6 +88161,Ramu,90634,1028459,8 +88162,Johnny Quick (voice),30061,105641,8 +88163,Old Man (uncredited),43522,89736,59 +88164,Walter,292035,82453,2 +88165,Child in Epilogue (uncredited),3059,1321407,86 +88166,Harold Hibler,110502,40221,11 +88167,Mary Preston,267654,18465,2 +88168,Wendy,17287,81578,1 +88169,Captain Miller,463906,154748,11 +88170,Orgy Girl (uncredited),85023,100161,6 +88171,Colonel John Wentworth,100770,87071,5 +88172,Guard,27259,97436,13 +88173,Jennifer,78403,1000757,10 +88174,Mann mit Ballons,308174,1888505,47 +88175,Ferris / Aidan's Father (voice),15906,74364,6 +88176,Eddie,32235,9979,9 +88177,Maggi's Father,63376,89153,4 +88178,Dream Girl,316154,1842094,19 +88179,Commander Suki,39907,1273290,15 +88180,Stephen Andrews,96252,2493,5 +88181,Courier Achmed Tchebali,37710,500339,18 +88182,Indian Chief,156388,1145557,4 +88183,Ranger,228970,12792,9 +88184,Varga,346672,154689,4 +88185,Principal,6589,1218277,13 +88186,Jessenia,15156,86041,3 +88187,Madame Koschechka,269173,1388920,27 +88188,Neighbor,264644,984711,10 +88189,Little Eddie,135708,79419,8 +88190,Cruz,112973,1100333,9 +88191,Caleb Frankel,333484,1701516,25 +88192,Sam,413417,101016,2 +88193,Peter Teleborian,33613,112594,6 +88194,Girl on Tony's Staff,170517,98241,14 +88195,Jeff Heston,31672,4960,0 +88196,Paul,356500,1011019,5 +88197,Baby ghost,292625,1758596,7 +88198,Motts,117251,118643,17 +88199,Thomas Sheldon,62472,235384,11 +88200,Charlie,273481,85419,16 +88201,"(segment ""Miminashi Hôichi no hanashi"")",30959,552653,33 +88202,"Maria Luigia, detta ""Topa Gigia""",42441,1135590,11 +88203,Mrs. Hopkins,55152,1370811,19 +88204,King,338421,1174366,6 +88205,Will,5753,101278,8 +88206,Pete Vilpponen,224813,1210341,2 +88207,Huhtar,283995,1806597,46 +88208,"Mr Wallace, QC",352733,45050,11 +88209,Mrs. Betsy Norton,52360,7641,8 +88210,Jesse Darden,320181,166298,1 +88211,Backbeat,5123,1781811,20 +88212,Train Station Passenger,86709,933577,5 +88213,Emmitt,270650,1359954,24 +88214,Clark Sporkman (voice),302960,89599,12 +88215,NY1 Reporter,102382,1279414,46 +88216,Doctor,120172,1071590,1 +88217,Allan Baxter,17911,11366,0 +88218,,118257,7709,5 +88219,Michael Jackson,73353,109686,0 +88220,Pretore Patanè,139563,235572,1 +88221,Amy Lind,180635,1039453,2 +88222,,85317,122539,1 +88223,Gure,38594,122662,18 +88224,Hüseyin,48763,143393,1 +88225,Robert,13802,24682,37 +88226,Thomas,123846,76068,0 +88227,,235450,1270745,2 +88228,Ronin (voice),116711,72466,2 +88229,Maggie,31385,977522,5 +88230,Mr. Cheeseman - undertaker,192990,16275,6 +88231,Sir Gregory Parsloe,144183,51881,8 +88232,Ira 'Boom Boom' Grossman,36288,7169,3 +88233,Sheriff Olson,43319,33969,13 +88234,Killer #3,109213,1610502,11 +88235,Le soldat du 54e,258384,32101,22 +88236,Soldier,8988,1742412,78 +88237,Beatrice Plana,120457,18514,4 +88238,Perry Malinowski,9286,59247,15 +88239,Percy's Classmate,32657,1511127,52 +88240,Dream Man,54406,1334132,13 +88241,CIA Man,59965,132217,19 +88242,Stephanie Jameson,22371,88698,4 +88243,Olivier de Ruyter,223551,1108176,1 +88244,Amos Briggs,47914,8516,7 +88245,Jack Abramoff,45324,1979,0 +88246,,79580,587510,4 +88247,Ridley (voice),16440,15440,1 +88248,Joe,293861,1385530,4 +88249,Hood #1,11610,29368,11 +88250,,280030,95558,7 +88251,Herself,347945,1294693,7 +88252,Jed,48339,16628,0 +88253,Joseph,70587,558928,9 +88254,Cop #2,88005,1219597,26 +88255,Sepideh,303296,229932,1 +88256,Frankie Perello,7304,28033,11 +88257,"Abhinay, Rahul's Brother",362150,1543640,17 +88258,"Nicolas ""Nicky"" Roland",58664,84482,2 +88259,Eugenio,58007,227316,5 +88260,Blind Jake,27144,97237,4 +88261,,430985,6197,3 +88262,Roger,330115,17735,8 +88263,Dr. Tak Ken,220724,25246,1 +88264,Crawford,286372,1352329,2 +88265,Woman Airport Official,91583,1564334,23 +88266,Henchman Mickey (uncredited),91961,14425,11 +88267,Woman on Bus 2,338676,1493399,14 +88268,,384373,1522373,1 +88269,Kristen,184098,17773,12 +88270,Café Manager,8457,1219899,34 +88271,Han Sang-jil,285213,77188,3 +88272,,107916,1042754,7 +88273,Replaced Driving Mechanic,125736,2659,18 +88274,Kauko,219335,1121477,5 +88275,Marie,46184,32431,5 +88276,,82409,55012,4 +88277,Officer Steve,75761,1330825,27 +88278,Poet,57654,1811551,6 +88279,Neha,208756,1192050,1 +88280,Sue,6877,8534,6 +88281,Reporter,87293,1209477,19 +88282,,47448,1796604,18 +88283,Denis Strahan,377587,78588,14 +88284,Tate Walker,39824,1222969,9 +88285,Victor,102362,72466,0 +88286,Mother with children (Amusement Park) (uncredited),246127,1389916,20 +88287,Herself,21671,210386,12 +88288,Narrator,73501,8447,0 +88289,Mrs. Bloom,30996,1197046,4 +88290,The Soubrette,131360,9093,9 +88291,Nicolas,35554,1854443,14 +88292,Detective Daniels,37665,116474,9 +88293,Plain Maid,156711,1349726,19 +88294,"Janet (segment 1 ""London 1912"")",75903,9125,3 +88295,A400M Crewman,177677,1196960,13 +88296,Catherine 'Cathy' Dollanganger,236399,934289,2 +88297,Maj. Siegfried Hennington,28448,9807,3 +88298,"""Big Daddy"" La Bouff (voice)",10198,1230,10 +88299,důstojník pevnostní stráže,41213,227727,10 +88300,Cole,244580,572541,7 +88301,Conrad,11509,235346,19 +88302,Wanda Wallinsky,82153,136910,2 +88303,Ray Jaffe,102630,62095,3 +88304,M,4024,34594,2 +88305,Betty,374021,1072008,6 +88306,Iris Blum,407559,33644,1 +88307,Grover Underwood,32657,53336,1 +88308,Clark Stevens,17209,26852,0 +88309,Shaman,63706,139631,9 +88310,Vanda,197082,8925,0 +88311,Older Man Tourist,10488,109545,16 +88312,Mike Eruzione,14292,84341,6 +88313,Bathing Woman 1,315855,1592929,44 +88314,Marilyn,4257,28640,11 +88315,"Pvt. Wade, Medic",133715,15968,2 +88316,Joyce Stone,33305,265843,1 +88317,Yurei (uncredited),329440,1522262,10 +88318,Kim,290714,13920,2 +88319,Jovem 2 do 'Eu Nunca',296288,1839916,25 +88320,Man Asking 4 Bits to Cross,55604,30206,63 +88321,Jeanne,148327,545244,1 +88322,Jimmy,228676,1263259,6 +88323,Victor,71670,1266052,8 +88324,"William ""Bootstrap Bill"" Turner",285,1640,3 +88325,,14210,1000981,5 +88326,Eloise's Mom,25643,4432,8 +88327,John Michael Leary,84352,33090,6 +88328,,88273,1439296,26 +88329,Merc Driver (uncredited),284052,1713820,50 +88330,"James Gordon Bennett, Jr.",89086,40180,6 +88331,Vasilisa (voice),160046,565312,2 +88332,Screwie (voice),15213,3026,1 +88333,Beatrice Kaufman,185291,106583,4 +88334,Sora Matsuzaki,83389,1124536,10 +88335,Todd McIntire,17216,119309,7 +88336,Dawson's Friend (uncredited),14615,47001,70 +88337,Graduate Student,381008,1589599,13 +88338,Mechanic (uncredited),337339,1804474,51 +88339,Hannah,199056,15091,3 +88340,Captain,341420,1478685,6 +88341,Illiescu,374475,39959,3 +88342,Ole,75229,105282,7 +88343,Fox Mask,83899,98632,12 +88344,Monk (as Kurt Schwoebel),78522,103858,16 +88345,Christian Hall,356326,41907,10 +88346,Petya Rostov,149465,931912,8 +88347,Le dénonciateur,73532,1653,7 +88348,"Mimsey / Mary, age 6",57412,14689,5 +88349,Diego,56647,34018,0 +88350,Martha Gellhorn,111839,2227,0 +88351,Amaury De La Roche,61217,1527819,14 +88352,Infermiere,325645,240665,8 +88353,Super Jet Pilot,337339,168875,27 +88354,,57458,1581037,8 +88355,Louis X,79892,11989,6 +88356,Aureliano Diaz,81775,32312,2 +88357,Tango,26390,1896,1 +88358,Adjuster,33102,78404,7 +88359,Sameer,14752,35747,1 +88360,Skåningen,51141,34784,6 +88361,Nikolla Kabashi,277237,1747835,10 +88362,Mack (voice),49013,7907,30 +88363,Mézières,258384,1367878,10 +88364,Jaguar Tokyo,25855,985030,1 +88365,122 Club Patron,52864,121323,14 +88366,Olie Hand,105503,15999,0 +88367,John Molotov / Josef Molotov,22554,88919,2 +88368,Cricket,1599,21006,10 +88369,Receptionist,9963,61103,15 +88370,Gabriel Callaghan,20411,9029,8 +88371,Night Manager,36960,172990,17 +88372,Nick Calabrese,9950,20752,1 +88373,Hanshirô Tsugumo,85836,1070347,4 +88374,Baby Brent (voice),109451,62861,4 +88375,Max,98870,19152,2 +88376,Walter Lambert,74777,17005,5 +88377,,44238,1055121,7 +88378,Seong-ki Chang,116488,227638,2 +88379,Capt. Martin,29290,141088,6 +88380,Sue Parris,206197,14984,24 +88381,Lady Anna Anningford,53231,1187704,6 +88382,,18729,79740,8 +88383,Steve,31548,97775,8 +88384,Empress,63340,83788,8 +88385,Sheriff Dan,70587,37980,11 +88386,Bearded Prisoner,336050,1550426,3 +88387,Slavic Drug Packager,2001,1781727,80 +88388,Katherine Logan,335498,1215925,3 +88389,Chairman MPA,2567,21293,49 +88390,Carla,176,2142,14 +88391,Jake,397422,934159,12 +88392,Daniel Strong,54022,17343,6 +88393,Amazon,39308,1397929,11 +88394,Orphan Girl #2,267935,1622128,21 +88395,Tedesco,280004,29327,4 +88396,Sanga,24993,11398,3 +88397,Troubled Girl,82040,127874,7 +88398,Louis,128917,80618,11 +88399,Gladys - the Wife,87123,8515,11 +88400,The Guitarist,2771,1403521,11 +88401,Rebecca Sommers,18189,35597,0 +88402,Gloria Carney,6972,144098,13 +88403,Drunk Kid,12182,181339,19 +88404,Shareholder,57201,102567,30 +88405,Inga-Lill,51423,1023735,6 +88406,Leroy,169298,7268,14 +88407,Mother,32536,109317,2 +88408,Mary Sunshine,57684,20369,8 +88409,,11643,31895,11 +88410,Tang Hao Yun,46124,18897,0 +88411,Jenny,301334,1723617,13 +88412,,38326,1292551,3 +88413,Inga,82448,220592,11 +88414,Angela,30374,1784982,7 +88415,Mother Agnes,34672,126224,16 +88416,Lloyd Muldaur,15982,33054,9 +88417,Renard,16135,27977,5 +88418,Dr. Xiroman,255491,173277,12 +88419,Ringmaster,94352,218767,6 +88420,Autumn Singletary,161482,1511755,5 +88421,James,89481,1017259,0 +88422,Tom,271718,113373,7 +88423,Owen Clark,35895,12312,4 +88424,Mme. Hellene de Bursac,22584,95965,3 +88425,Doug,55934,545604,0 +88426,,121173,568015,3 +88427,Harold James 'Hal' Ditmar,112558,83128,0 +88428,Prisoner of War,256962,1789160,56 +88429,Wolf Heider,315335,5646,2 +88430,Yoli,347666,1423493,4 +88431,Diego Maradona,310593,1526989,12 +88432,Dale,138544,1394012,12 +88433,Mrs. Roberts,153163,30260,14 +88434,Deputy Block,11509,183968,11 +88435,Mary,180607,10696,0 +88436,Cardinale Severini,50196,38597,2 +88437,Carmela,62036,4959,3 +88438,un joueur de billard,209244,61100,30 +88439,Meg,52859,1671461,42 +88440,Police Secretary,107250,190897,21 +88441,Cecelia,112304,238688,6 +88442,Tom Rath,28290,8487,0 +88443,Utility Worker,70046,1346510,18 +88444,Lawrence Kell,166161,2712,8 +88445,Amanda MacQueen,69717,6639,3 +88446,Catholic priest,375599,138527,4 +88447,Pickle,21431,223013,3 +88448,Manu,85429,128739,14 +88449,,320453,1180450,5 +88450,Botota,157409,1272878,8 +88451,Fashiondesigner,38317,38832,7 +88452,Deputy Brice,97614,1207359,15 +88453,Pertti Smolander,18279,89504,8 +88454,Henri,64481,6020,1 +88455,Roy's Friend,356752,1501836,22 +88456,Lady Constance Redmond,104720,30242,14 +88457,Prof. John Stanley,90956,103773,5 +88458,Stephanie Taylor,257345,1192759,3 +88459,Archie Howard,12483,90731,10 +88460,himself,36926,1100725,0 +88461,Nancy Craven,358982,1429475,1 +88462,Two Crows,32068,102306,12 +88463,,276819,94979,2 +88464,Richard Riley,329865,7013,18 +88465,Seth,35320,1239264,11 +88466,,265934,52888,6 +88467,Michelle the Model,17258,1869983,25 +88468,Luke,134397,16433,3 +88469,Briggs,178927,13359,13 +88470,Thomas Bailey Sr.,10761,2226,9 +88471,Iverson,228968,51464,10 +88472,Jean Grey / Phoenix,127585,10696,20 +88473,Drunk businessman,284296,170364,16 +88474,,254679,111691,9 +88475,Social Worker,5123,1781840,51 +88476,Party Guest,43811,1471395,30 +88477,Grandfather Morgan,118953,121247,12 +88478,Dead Bum,14262,76504,13 +88479,Bus Stop Drag Queen,26486,170432,45 +88480,Leo,53364,18941,1 +88481,,254869,1347421,64 +88482,Andrei Sokolov,88564,38131,0 +88483,Phuong,25784,81194,5 +88484,Trail Hand (uncredited),53574,557086,7 +88485,Plain Maid,156711,1349731,24 +88486,Julio,228198,1086110,2 +88487,Sanghil Wun,38433,120443,12 +88488,Douglas Suit Performer,16523,1486057,18 +88489,Personalchefin,81616,32861,12 +88490,,205349,995741,14 +88491,Clayton,225503,1034800,2 +88492,Ned,218784,205209,17 +88493,Beverly,312669,1607563,12 +88494,Poise Employee,10096,133070,36 +88495,Pippa / Jack's Sister (voice),81188,1364657,11 +88496,Sean's Father,322,4740,20 +88497,Journalist,262958,140007,23 +88498,Hanny Dè Artong,130233,35536,11 +88499,Alice,149910,1212271,6 +88500,Hutch / Hoodlum in Montage,25507,26158,10 +88501,Reporter at Train,3580,1352950,21 +88502,Babette,13713,22307,4 +88503,,332872,4368,31 +88504,Yayoi Kinoshita,14217,548174,5 +88505,Billy Mack,508,2440,6 +88506,Johnny Angel,42191,3152,0 +88507,God,26153,35780,2 +88508,Mansoor,320910,237628,9 +88509,Monique (voice),51786,66896,14 +88510,Israel Zarchi,336029,82097,9 +88511,Lowell,19255,84407,6 +88512,Ish Kabibble,80720,1411499,12 +88513,Frollo (voice),79599,58100,2 +88514,Arena Pugh,345003,1838570,11 +88515,Dr. Baker,291866,51663,2 +88516,Drunk Legionnaire,22999,9094,18 +88517,Hrafn,104062,79827,0 +88518,Nick Romano,116385,100318,2 +88519,Buchkunde 2,52475,1323726,38 +88520,Kathi,177697,233680,3 +88521,Major Hisht,33124,14596,4 +88522,,412851,1457422,1 +88523,Prankster,187596,98397,19 +88524,Stella Ames,80168,102499,0 +88525,,296344,1312823,3 +88526,,352694,132153,9 +88527,Maks,376716,86864,6 +88528,Sandy Rao,58051,53975,2 +88529,M / Marcus,82654,52997,3 +88530,General Douglas MacArthur,127372,2176,1 +88531,Himself - Writer / Actor,97724,119713,6 +88532,Psychotic Fan,111479,1797588,41 +88533,Elisabeth Landauer,16436,50667,8 +88534,Jim Thorpe,60853,13784,0 +88535,Mikel Uriarte,186755,36281,0 +88536,Anna age 15,31011,36594,8 +88537,Himself (archive footage),253337,1788328,15 +88538,Sir Walter Raleigh,11788,48968,11 +88539,Himself,366696,1753488,14 +88540,Mr. Bryer,17956,2701,22 +88541,Brenda,266425,1313148,20 +88542,Robert Micelli,32588,3266,0 +88543,Señora Mendoza,259292,82803,6 +88544,министр-администратор,63449,86826,5 +88545,Gaby,302118,17548,2 +88546,Col. Roy Manley,188507,6164,0 +88547,Lindsey,206197,1506492,31 +88548,Sally Blake,23590,90368,1 +88549,Itziar,435707,1464946,8 +88550,Nadia,38021,77498,4 +88551,Himself,453053,1228206,7 +88552,Tony Harwell,12637,4969,2 +88553,No. 13,39123,82540,5 +88554,Empleado fábrica (uncredited),42502,11978,18 +88555,Priestess of Aphrodite,286789,1419615,8 +88556,Blonde Cop,186869,1862889,13 +88557,Woman with Groceries,270303,1588334,12 +88558,Cousin Gerald,339419,1760941,21 +88559,Sidhu / Varun Sanghvi,29538,86304,2 +88560,Nightclub Patron,120109,1208035,15 +88561,Butcher Boy / Danish Driver,267935,63566,18 +88562,Kiosk Girl,127493,1286019,10 +88563,Count Pedrazzi,99261,14148,3 +88564,James,250066,17244,0 +88565,Elisa,82350,1892909,10 +88566,,62755,1708563,9 +88567,Benny,1807,19205,10 +88568,Athletic Commissioner Edward Eagan,28000,134633,11 +88569,Mercy Graves (voice),13640,34985,8 +88570,Corinne Carlton,104720,1036812,9 +88571,Millie Stanley,32716,109613,6 +88572,Harry,94340,45211,1 +88573,,12206,1709244,27 +88574,MP,5172,1668483,58 +88575,Jim Conover,33792,14563,4 +88576,George Lockhart,370234,1194944,1 +88577,,156988,5968,9 +88578,Patti Warner,47878,13567,1 +88579,Nair,55435,144654,5 +88580,Grand Central Short Tail,137321,1001804,31 +88581,Zhang Yi,413198,78871,3 +88582,Kelly,59962,58399,16 +88583,Chan Wing Yan,11647,78869,5 +88584,Jackson Reach,19809,85199,1 +88585,Coach Hori,18722,553430,17 +88586,Bhaisaab,14705,6497,5 +88587,Bunker Soldier,209112,1695991,87 +88588,Youth vandalizing car,45938,11856,10 +88589,George,55784,1204484,14 +88590,Bernie Focker,693,4483,3 +88591,,65044,240285,2 +88592,Kate,296025,42160,7 +88593,Lester Horton,128588,51377,0 +88594,Geir,15177,76547,1 +88595,Hugo,153561,590309,3 +88596,Murder Lounge Girl,284564,1836952,28 +88597,Zaneta's Father,356191,235493,3 +88598,Priest,362057,117598,12 +88599,Ted Wiggins (voice),73723,29222,0 +88600,Hunter,9252,1308444,18 +88601,Herself,15258,2395,26 +88602,Guy Diamond (voice),136799,208099,11 +88603,Judge Richard Farris,13519,15531,9 +88604,Lotte Buff,52475,146057,1 +88605,Ellen Miller,60599,4038,1 +88606,Scott Voss,87826,32895,1 +88607,Seamstress,13596,69423,20 +88608,Ragazza foto nude,44933,132420,14 +88609,Whareparita,248469,29381,3 +88610,BK,240881,1214063,4 +88611,Interrogator #1,24094,137440,32 +88612,Female Marine (uncredited),19995,1207291,78 +88613,Kappa Nu Sorority Sister,325133,1568705,30 +88614,Dr. Armand de Fontinac,31532,34758,9 +88615,Latouche,68637,47829,0 +88616,Schorsch,3962,7817,4 +88617,Briefing Officer,79935,85424,14 +88618,Emanuele,228290,128227,5 +88619,Mr. Fabrini,244539,967200,10 +88620,Peter,39517,1643,14 +88621,Dr. Joan Alden,30921,4761,1 +88622,,36246,13256,9 +88623,Sergt. Grimes,3024,29659,8 +88624,Vicki,370178,76181,8 +88625,Himself,393367,1153004,6 +88626,Basketball Player,305932,1883543,13 +88627,Drunk Party Guest (Bluffer),21570,87713,10 +88628,Eric,74430,1821541,11 +88629,Man in Mohair Sweater,1550,94432,10 +88630,George,87123,33004,2 +88631,Sacerdote,356296,1010113,14 +88632,Egil Rosén,53689,581341,0 +88633,Bill Corrigan,134144,141140,3 +88634,Tony,245019,88360,3 +88635,Kendricks,176124,1261400,8 +88636,Gita,1259,37051,10 +88637,Nonno,14703,88906,7 +88638,Bar Patron,331161,1459163,22 +88639,Fitness Instructor (26),107985,1278122,23 +88640,Catherine Goldstein,18472,101255,4 +88641,Tony,14823,1035069,6 +88642,,17007,15788,1 +88643,профессор Сретенский,83461,39794,0 +88644,Sir Giffard Hardwick,15013,77682,11 +88645,Gary Jeavons,56809,1833799,6 +88646,Roger,18442,58907,3 +88647,Gupta,19286,106474,6 +88648,Vicky,170838,42208,9 +88649,Tom Franklin,376660,2250,7 +88650,Mr. Bailey,31377,59285,7 +88651,,74154,146936,2 +88652,"Mrs. Pobratynska, Ewa's mother",156627,1137952,10 +88653,Frank Catton,163,1897,8 +88654,Billy,70989,76827,2 +88655,Sheriff Morris,89325,9880,2 +88656,Police Officer,90616,1692112,38 +88657,Ping,25074,1178938,16 +88658,Alice,87952,935670,2 +88659,Himself,142161,1121624,1 +88660,Tap Dancer at Remick's (uncredited),43491,118222,16 +88661,Løytnant Lewis,70667,1796485,8 +88662,Minor Role,43833,89589,26 +88663,Rudi Pal,112885,14868,2 +88664,NGO Staff Paul,49853,1648795,40 +88665,Patient,3580,46814,39 +88666,Jarmila Vadek,39407,940327,8 +88667,Treve Pender,173638,12690,8 +88668,Martin Vanger,15472,74709,5 +88669,Mark,336271,225411,5 +88670,Moorehousse,118900,34209,15 +88671,Willie Brodax,79008,3002,1 +88672,MacKenzie Scott,97767,19020,1 +88673,Horatio,217057,1328,2 +88674,,108634,127834,9 +88675,Spartan General,1271,1089928,39 +88676,Teresa Mallory,28090,76465,4 +88677,German Woman,294690,1390540,17 +88678,Teacher,188598,1776749,8 +88679,Nick Hartfeld,42182,108774,0 +88680,Markku Suominen,423078,1700416,1 +88681,Sparrow,182415,1853088,10 +88682,Emmett,84105,1026218,13 +88683,Phoenix Astronomical Society,443319,1797631,11 +88684,Howard W. Campbell Jr.,24559,91980,14 +88685,Lord Leicester,43327,2435,4 +88686,Ted (voice),214756,52139,1 +88687,Bob,20107,4253,7 +88688,la cameriera di Firenze,56804,1831105,19 +88689,Stefanie Y. Hong,75090,21702,2 +88690,,73545,86664,1 +88691,Poolside Woman,6977,51733,11 +88692,Trulsen,13318,1254016,5 +88693,Wendy,112161,2452,4 +88694,Lilith,83223,1332414,10 +88695,Prudence,156711,1349723,15 +88696,Adelina,44741,1189935,9 +88697,Angel,27973,89990,9 +88698,Dr. Kathryn Jennings,9042,17286,3 +88699,Selwyn Harris,40957,85409,11 +88700,Barone,74645,232884,4 +88701,,41970,26683,4 +88702,Wes Ledbetter,63773,15534,1 +88703,SWAT Team,356326,1874726,16 +88704,Peggy,104644,1076923,8 +88705,Rachel Spangler,60662,156780,5 +88706,Joe,88359,46946,1 +88707,George Jetson (voice),17009,16531,0 +88708,Hilda,182545,1165641,3 +88709,Stabber,9793,59294,6 +88710,Senzô Natsume,143946,1082753,11 +88711,,54356,56274,0 +88712,Orlando De Boys,19103,35013,6 +88713,Agent West,220820,1452352,27 +88714,Staatsanwältin Frau Nelson,421958,678,3 +88715,"Stan, newspaper office watchman",25738,95274,8 +88716,Lee Calrton,222890,107491,2 +88717,Jim Santamaria,77165,1121968,7 +88718,,20646,548133,10 +88719,The Woman,137726,1319926,2 +88720,Lena,354859,25132,13 +88721,Sayuri,1904,1339,0 +88722,Dan the Man,39545,6365,3 +88723,,102272,1101302,7 +88724,Board Member,109716,195086,61 +88725,Benny,26656,97417,7 +88726,Tearful Woman in Theatre,157898,1250237,17 +88727,Mr. Wong,9812,201747,10 +88728,Zin,15003,77668,2 +88729,,76264,2047,0 +88730,Mr. Russell,179154,174106,4 +88731,Françoise Arnoul / Cyborg 003 (voice),127544,220710,3 +88732,Abu Gaber,47324,1094789,4 +88733,Himself,43491,14286,11 +88734,Nick Wild,265208,976,0 +88735,Detective,124157,945428,10 +88736,The Saloon Girl's Companion,53407,21305,5 +88737,,314388,26739,2 +88738,Waitress (uncredited),100275,1738959,16 +88739,Willie,29510,104036,13 +88740,McCoy,198993,625,9 +88741,Mike Flaherty,55725,13242,0 +88742,Annette,114096,21619,4 +88743,L'employé,12249,71929,0 +88744,Joe/Earl/Bob,13073,117379,8 +88745,Revolutionary,35405,114286,9 +88746,"Chimaji Appa, Baji Rao's younger brother",362045,1438182,5 +88747,Herself,209112,1227867,33 +88748,High Roller (uncredited),298,843374,23 +88749,Detective Frazier,397422,68763,10 +88750,Brian Allen Harvey,62143,91722,9 +88751,Brad Coleman,295581,169741,2 +88752,Barry Nathan,50725,58873,2 +88753,Bridesmaid (uncredited),242042,103290,43 +88754,Jerry Bailey,76640,70303,8 +88755,Heribert,64454,15123,3 +88756,Herself,413579,1078906,3 +88757,Subalterno,335053,1285116,28 +88758,The Father,168647,29382,0 +88759,Man on Train,20444,217394,16 +88760,Ravi Shantaprasad Verma,55376,86304,3 +88761,Apothekerin,9010,37069,5 +88762,Inspector Routledge,1420,27764,18 +88763,Mikal,15440,87881,12 +88764,Lord Piccolo,14164,47297,5 +88765,Lopo Chavez,64456,86353,6 +88766,Sonjai,29083,29466,9 +88767,Lorde,340275,1215722,43 +88768,2nd Builder,341962,1470852,6 +88769,Aya Shimada,127372,69287,2 +88770,Lucy Miller,240832,1245,0 +88771,Bit Cop,29510,104038,3 +88772,Rosanne Cash,69,430,15 +88773,Helena Shepridge,38031,9138,0 +88774,Collyer's Mother,51994,8926,10 +88775,Young Russian Woman,47143,95899,4 +88776,Burgomister,27937,99293,9 +88777,,88285,94059,4 +88778,Gambler,377170,88979,22 +88779,Gun Salesman,44945,1799434,26 +88780,Zahra Baraheri,15577,78407,10 +88781,Gordon Blythe,62046,4175,5 +88782,Neurosurgeon,335051,1880345,15 +88783,Irma Griese,19338,58778,13 +88784,Bathing Man,315855,1592926,37 +88785,Toribio,166207,146301,13 +88786,Eliot,103014,1480855,9 +88787,Cop Robert,240832,1426365,23 +88788,Béatrice,89560,81821,2 +88789,Craig,384160,81200,4 +88790,Jack,9981,61407,14 +88791,Marty McBride,13173,21127,14 +88792,Maitre'd,8414,54885,4 +88793,Petra,116463,208198,2 +88794,Cop (Boston PD),214756,1360005,58 +88795,Hideo Takiya,25716,43664,25 +88796,Waitress,8270,54234,32 +88797,Young Tim,254689,1421393,14 +88798,Neighbor,208091,154580,3 +88799,Prom Teen #3,263115,1694082,47 +88800,Mother,75244,2539,9 +88801,Michael,13305,55729,2 +88802,Mike Turk,184578,19111,5 +88803,Himself,21671,143073,5 +88804,L'ange Gabriel,32720,146526,3 +88805,Pedro,456781,1325945,11 +88806,Willie Taylor,158150,1219446,4 +88807,Mr. Nepia,39356,1753261,15 +88808,Snake,4592,38332,7 +88809,"Katie, first murder victim (uncredited)",29094,83910,10 +88810,Léonard Michalon,33360,37457,1 +88811,Head Trader,70500,55708,9 +88812,Vanessa,435707,1825504,10 +88813,,63215,76286,7 +88814,,55624,1464000,7 +88815,Joan,7220,11008,11 +88816,Suzie,330947,71565,9 +88817,Faustino Santos,163706,1043805,16 +88818,Malato,325645,122022,7 +88819,Benny,33224,96240,13 +88820,Márcio Greyck,40859,123761,7 +88821,Salvatore Caruso,124202,119992,9 +88822,Joe Paloffski,19665,55616,6 +88823,Reporter,39276,30473,6 +88824,Heath,16066,79129,8 +88825,Ida,314285,1178927,1 +88826,Philip,12128,20262,0 +88827,Dr. 'Bones' McCoy,188927,1372,2 +88828,Nikki's Father,37517,112705,2 +88829,Zac,38340,5563,1 +88830,Lucy,20411,20279,11 +88831,Employment Clerk,23397,1050336,17 +88832,,26125,59085,6 +88833,Nobisuki Nobi/Toby/Nobita's Father,265712,553282,28 +88834,Student 2,52475,1377693,18 +88835,Bastiaan,383618,116202,5 +88836,Alexander,20846,21354,6 +88837,Himself,15260,550261,9 +88838,Mr. Muir,87894,100346,8 +88839,Angie,68347,60095,4 +88840,Eddie,83540,97417,4 +88841,Det. Quentin Conners,5289,976,0 +88842,Charles Huntley,184578,12850,4 +88843,Guitte,3423,32091,10 +88844,Himself,155556,1136922,0 +88845,,77185,93552,6 +88846,Blodgson,38437,120459,17 +88847,Allison Mandrakis,10053,62564,11 +88848,Abhishek Matre (Special Appearance)/ PSI Raju Jadhav,20742,35793,5 +88849,Spectator - Sullivan Fight (uncredited),43522,105456,74 +88850,Steve Baldwin / The Durango Kid,343972,32137,1 +88851,Chauffeur (uncredited),26182,1291266,20 +88852,Ruby Keeler,139718,30001,10 +88853,Matt,16077,79187,0 +88854,Squadron Leader Jefferson,16444,27940,7 +88855,Chinese Doctor 1,15092,429401,18 +88856,Carmen,166262,235002,1 +88857,Gas Station Attendant,167810,1793175,19 +88858,Tyler Hawkins,23169,11288,0 +88859,Mr. Chu,10753,96546,10 +88860,Ling-Ling (voice),36736,116075,1 +88861,Dr. Geraldine 'Geri' Bennett,59965,10205,6 +88862,,44716,6120,14 +88863,,218508,1194737,2 +88864,Freight Elevator Operator,14589,120472,22 +88865,Franklin,436,5972,3 +88866,Sylvie,10268,64549,16 +88867,Comadre de Chona (uncredited),122019,1521173,26 +88868,Tour Guide (as Roy S. Gunsberg),72574,566641,13 +88869,Tuzla,158750,166519,6 +88870,Giovanni,31922,8772,4 +88871,June Carter,69,368,1 +88872,Judge Berle Lindquist,27034,66789,6 +88873,Marianna,236368,1127659,2 +88874,Rose's father,212996,956575,12 +88875,Duncan,225728,11207,6 +88876,Heather,255278,59181,2 +88877,Bea,142712,70461,14 +88878,Matt Phillips,47863,27122,2 +88879,Le narrateur (voix),37633,24816,4 +88880,Berto,322922,820,5 +88881,Kidnapper,16687,1184080,9 +88882,Cathy,24059,115676,7 +88883,Gastón Perelman,97548,1013995,2 +88884,Sarah,84178,7517,0 +88885,Brennan,173456,131447,5 +88886,Jonas' Mother,274990,935445,8 +88887,Mature Alan,12483,146553,8 +88888,David,747,7028,4 +88889,Tobias,161243,53501,1 +88890,Augustine James,12763,1981,3 +88891,Newark Cab Driver,47186,180435,29 +88892,Bride,264397,1324064,11 +88893,Christian Turner,97206,6408,0 +88894,Ellis Apartment Super,293863,207939,27 +88895,Sheriff Bob,341957,141913,6 +88896,Bob Thatcher,57326,18181,0 +88897,Cidney,255278,74369,5 +88898,Wife of King,43471,83990,5 +88899,Madam,55156,94076,10 +88900,Eddie Di Muzio,12637,11480,7 +88901,member of the selection committee,279543,929666,14 +88902,,361183,1035838,5 +88903,Heroine Father,111836,141695,3 +88904,Alisa Hacklin,48949,44712,1 +88905,Townsman,183832,121305,24 +88906,Young Bob,86829,1142258,14 +88907,Dr. Bates,153161,114400,21 +88908,Baktashy,103539,1556838,6 +88909,Derek,82990,1424716,9 +88910,Eugénie,64827,239900,2 +88911,Jasper Beth,279096,1206599,11 +88912,Heavily Pierced Kid,13596,54717,18 +88913,Diner Patron,242090,1375090,4 +88914,Oaks,54523,3774,3 +88915,Skeletron BMX Guard,310135,1716346,40 +88916,Dr. Fettiplace,184267,148415,16 +88917,Inspector Burgess,37992,18646,4 +88918,Harald,13318,71180,6 +88919,Newman,11614,95457,4 +88920,Vasily,204802,67503,1 +88921,Telephone Girl (as Zazu Pitts),39048,34746,7 +88922,Himself,296194,87281,11 +88923,Young Soldier,375012,1668237,13 +88924,Herself,185153,35783,4 +88925,Thomas,8669,94833,14 +88926,Ksanka Shchus,41979,127407,3 +88927,Dabu,4551,37934,4 +88928,Zed,27462,97798,2 +88929,Pointpoirot,48778,1973,0 +88930,Frau Günzelsen (voice),9514,1642154,7 +88931,jeune fille au concert,34840,130890,9 +88932,Don Luis,237796,2369,6 +88933,Marilyn,60071,57453,3 +88934,Mary Jane Glennon,36375,115366,16 +88935,Nitro Rankin,59882,95276,5 +88936,Dottor Del Vecchio,23619,128227,3 +88937,Jake Blackburn,73933,198540,7 +88938,Paolo Barca,279568,119991,1 +88939,Subhash Nagre (Sarkar),20968,35780,0 +88940,The Iceman,14505,78892,11 +88941,Nightclub drinker,43113,1483404,62 +88942,Lian,289720,122503,2 +88943,Herself,61487,939873,2 +88944,Le Duc's wife (uncredited),253235,1855401,32 +88945,Nogales,120129,1603,5 +88946,Police Sgt. Patou,10910,545048,10 +88947,Wenders,8383,53420,7 +88948,Teen Cristy,274479,1774087,58 +88949,Cha Gang-seop,52418,96659,4 +88950,Corelli,85651,162005,5 +88951,Yorick,47900,936085,1 +88952,Dr. Pellegrino,89492,53400,18 +88953,,144651,1042001,3 +88954,Mama Runt (voice),9982,1077829,20 +88955,Elisabeth,383064,1167748,1 +88956,Elementary school student ghost,62439,1296103,11 +88957,,11330,1444476,21 +88958,Just Judy,508,7061,13 +88959,Louise Zamperini,227306,1394424,6 +88960,Model,33107,1660760,11 +88961,Asura,19623,127453,5 +88962,Owen,36737,58169,2 +88963,Becky,58244,59794,8 +88964,l’inspecteur,39978,39883,8 +88965,Casey,73198,221679,2 +88966,Gabriel,86234,933058,0 +88967,Dr. Jamie Chalice,42309,90131,4 +88968,Puna-Will,55495,223072,12 +88969,,144421,1170737,1 +88970,Alfie Michaels,358982,1507490,6 +88971,Security Guard,13436,1656882,20 +88972,Petula,11496,566313,7 +88973,Dunderklumpen,13798,73595,2 +88974,Daisy Miller,4703,1036,0 +88975,Roy,37911,40001,3 +88976,Yegor,97797,93547,5 +88977,Fred Noonan,265741,585,2 +88978,Christopher Riley,371504,43554,10 +88979,Colonel Jenkins,3291,1007,13 +88980,Mat Dimy,31162,1630191,17 +88981,Hunchback Klavdiya,36695,115998,4 +88982,Jacob,381015,15319,6 +88983,Victor,148,1665,3 +88984,Batman,2771,27971,14 +88985,Military Man,115023,56600,5 +88986,Doctorin Baghdad,424488,1129399,47 +88987,Auste's Friend,310568,1588819,8 +88988,Eleanor,362057,20879,2 +88989,Priest / Church Demon,10055,281638,20 +88990,Herself,374460,208113,22 +88991,Desk Sgt. Brennan,30022,34285,12 +88992,Pierre Dubreuil,366566,59031,3 +88993,Wooton,238589,85511,9 +88994,Extra,82481,31895,35 +88995,Renchard's Son,30778,1615605,4 +88996,Maureen,13792,75540,4 +88997,Sudhir Mishra,25499,230977,6 +88998,,375794,563633,3 +88999,Street Trader,328589,55466,5 +89000,Jerry Riviera,129332,1089082,0 +89001,Markku Laakso,80472,210515,4 +89002,Vince,18586,569,10 +89003,Himself,121170,1079949,3 +89004,"Gennaro, il figlio",94809,1089650,8 +89005,Lt. York,56527,1015836,1 +89006,Fatneck,12540,1118085,13 +89007,Gurgle (voice),127380,6168,24 +89008,Nona,38404,120339,3 +89009,Professor Han,12650,73251,2 +89010,Susanna,11614,933327,5 +89011,Otto Kahn,242631,34211,17 +89012,Álex,222030,17099,1 +89013,Himself,43065,14999,7 +89014,Ben Jefferson,52991,1594224,7 +89015,Asst. Stage Manager,41206,125810,11 +89016,Sitter in Bath Studio,80596,106630,48 +89017,Lane Bodyguard,177677,1562097,49 +89018,Miss Ann Morrison,179066,120756,12 +89019,Nate,1991,23286,11 +89020,Young Jack,13957,20814,14 +89021,Amelia,346672,1781392,14 +89022,Jill (age 10),369033,1647323,33 +89023,Thief,30941,1747353,44 +89024,Fighter,71120,1872253,32 +89025,Wang Pangzi,411442,1682683,5 +89026,Jennifer North,3055,29490,2 +89027,Dickie Schubert 1983,140554,1707833,26 +89028,Adi's Boss,413882,1758517,7 +89029,Gary,193387,1196131,2 +89030,Gord,427673,1240288,7 +89031,Julia,345924,1508651,10 +89032,George Harriman,42499,55757,4 +89033,News Anchor,13842,146024,9 +89034,Hark Trellis,14923,22132,18 +89035,Red,177474,76519,1 +89036,Boris,340616,1176475,5 +89037,Sunday Wilson,286971,1440577,17 +89038,Alicia,72900,234626,4 +89039,Katsuhito Masaki / Nobuyuki Masaki (old),34935,81852,12 +89040,Ned,426230,88928,10 +89041,Fritz,259997,120591,19 +89042,Shideh,375012,1072105,0 +89043,Sophie,2965,13364,2 +89044,Black & Tan,339312,1464975,6 +89045,Bianca,165864,1148912,6 +89046,Danielle,6076,42401,18 +89047,Elderly Woman,10077,62940,17 +89048,Jett Garner,5759,1287657,4 +89049,Bullhorn Cop,339403,1635158,40 +89050,Lt. Burke,6973,159261,17 +89051,Waen,64786,1096185,3 +89052,Jimbo,250535,59076,11 +89053,Kiera,360205,1511014,2 +89054,Drunk Sexpot,30644,106669,9 +89055,Ogre Baby (voice),810,1454441,24 +89056,,104810,587911,4 +89057,Bindhu,148265,225312,1 +89058,Ward Nurse,57680,226537,18 +89059,Ryan,352960,576222,4 +89060,Chief's wife,45227,86672,8 +89061,Agent Ellen Richards,76640,589162,7 +89062,Little Girl,102841,173065,24 +89063,Girl,53417,21301,1 +89064,Maximum Security Prisoner,145220,117470,43 +89065,Child at Fairground (uncredited),198652,127005,19 +89066,Félix,63612,36277,3 +89067,Slave-Buying Woman,38027,1762439,34 +89068,Julia Hart,59722,229685,3 +89069,,52360,1671853,40 +89070,Tommy Evans,180759,201667,3 +89071,RJ,177112,944953,4 +89072,Cold-faced Swordsman Hong Lieh,107891,26727,2 +89073,Commander Allison Executive Officer - Bridge,17744,72659,6 +89074,Mrs. L.A. Peterson,90406,7520,8 +89075,Mrs. Mooney,167882,153578,10 +89076,Barbara Spooner,15163,6979,1 +89077,Beautiful Girl,297853,1790434,22 +89078,Zheng Xiaofeng,11636,70106,1 +89079,Izumi,340176,1186978,2 +89080,Rudolph,227262,62892,4 +89081,Heneral Antonio Luna,359105,625924,0 +89082,Zena,26491,39658,5 +89083,The Bartender,42678,1544444,14 +89084,Philip Stacy,102382,1424715,16 +89085,Nedo,48254,1035434,6 +89086,Coach Steroid,26326,37598,8 +89087,Hal (uncredited),36334,34130,16 +89088,Minister,288281,152648,10 +89089,Blair,42533,1059610,0 +89090,Leah,380124,1569981,6 +89091,Lenny Hamilton,128841,1038662,2 +89092,Superintendent Leung,11647,1000109,16 +89093,Black Man with Stomach Trouble,153162,126671,34 +89094,Graduation Ceremony Attendee (uncredited),10178,1216356,15 +89095,Alison Horne,85640,83462,4 +89096,Horuko Togokahn,7459,27084,12 +89097,Eugène Froissard,382597,37627,2 +89098,Sasha,101325,74423,9 +89099,,86985,1523042,26 +89100,Major,9667,59085,16 +89101,Brian,250535,23776,12 +89102,Yancy,9893,60071,10 +89103,Coley Trimble,14554,7502,4 +89104,Gräfin,75578,55851,5 +89105,Princess Langwidere,47761,29091,2 +89106,Jim,31462,1486826,15 +89107,News Anchor,127521,239618,5 +89108,Drunk (uncredited),1976,120741,24 +89109,Sergeant Sam,96132,592978,12 +89110,Mr. Bedevil,407531,1525076,8 +89111,Joohyun,211579,1106129,5 +89112,Fair Son,168616,1013126,6 +89113,Male Nurse #2,2080,1353640,29 +89114,Alan A. Allen,21605,10989,1 +89115,Topp,125490,87778,11 +89116,Glenda,42325,103922,7 +89117,Mr. Cotton,28421,132536,51 +89118,Cameo Appearance,393445,35742,7 +89119,Himself,347630,1526157,20 +89120,Brad,330115,59600,17 +89121,Niklas Saxlid,141267,115737,6 +89122,Vegeta,126963,122937,25 +89123,Evie,314283,75355,4 +89124,The Baron,43833,109850,11 +89125,Larry Alden,222932,161827,0 +89126,Pierre,10524,10917,3 +89127,Thompson,79094,564603,4 +89128,Sandy,325302,1622143,5 +89129,Rahul,22429,85891,0 +89130,David Sloan,24993,75312,0 +89131,Olga,175331,1157934,10 +89132,Customer (uncredited),1976,26158,47 +89133,Dexter Key,57103,12288,7 +89134,Wilderkin,44398,109864,10 +89135,Jazlean Benny,24150,76886,11 +89136,Nerea,110001,1074918,6 +89137,Young Peter Quill,283995,1148455,13 +89138,Swiss Miss,62046,1173002,11 +89139,Giudice,73827,33862,10 +89140,Bahkland,2577,11851,3 +89141,"Conover, Gillespie's Attendant",153165,126671,15 +89142,Kid,397717,1722991,38 +89143,CIA Worker (uncredited),337339,105265,45 +89144,Muto,161545,128752,5 +89145,Diane Nixon,65650,98522,1 +89146,Gen. Lorens Löwenhielm,11832,1022633,7 +89147,Grace,101852,93932,1 +89148,Vera Remminger,54548,1864,2 +89149,Rachel Philips,25834,70961,0 +89150,Commander Healy,110148,230,4 +89151,Confused Man,447758,1782026,33 +89152,mercante,338438,1126387,22 +89153,Ivory Vanlines Driver,28325,53568,11 +89154,Mr. Tung,281291,53024,5 +89155,Ichtyandr Salvator,43685,549134,0 +89156,Jonathan,228970,91520,5 +89157,Marie Hoke,76229,3380,9 +89158,Avvocato Sallustio Giordana,73827,589403,11 +89159,Mesaje,25518,46274,2 +89160,Frank Martinez,76640,17289,2 +89161,Geisha,315837,1848082,29 +89162,Xavier,16374,30087,4 +89163,rabbino,125623,6712,4 +89164,Minsten,10119,63757,11 +89165,Lt. Green,8292,18288,4 +89166,,62397,1887301,9 +89167,Luther Blair,31280,98828,0 +89168,Brian O'Connor,288668,7321,10 +89169,Thurston Howell IV,103260,1212042,7 +89170,Jake,10320,57136,6 +89171,Rafita,127864,1156390,10 +89172,Jacqueline,55424,37920,3 +89173,Jono,336004,52885,27 +89174,Himself,159138,127961,3 +89175,Halfway House Girl #2,55681,1086570,14 +89176,Herself,76494,52119,19 +89177,Dr. Jonathan Odell,208434,3361,2 +89178,Himself - at Banquet (archive footage) (uncredited),33740,70036,83 +89179,Sammy,128437,163333,9 +89180,Student,345918,82791,4 +89181,Young Una,301334,1723618,14 +89182,Vicky Austin,126934,11617,1 +89183,Cop Near Train Station,326285,208762,17 +89184,Soldier,83430,1129447,12 +89185,Alicia Abshire,24420,41743,7 +89186,Bernard Morin,21435,21171,4 +89187,Elisabeth Taylor,104973,44416,6 +89188,King David,42040,1205,0 +89189,Mr. Freeze (voice),411802,18041,7 +89190,Vanessa,255913,59192,3 +89191,Ace,30478,1376315,7 +89192,Engineer Officer,72638,33233,33 +89193,Ben,419459,45405,3 +89194,Co-Pilot Willsy,59115,550953,12 +89195,Herself,293262,1392199,3 +89196,Jacob Schpitendavel,42648,19463,4 +89197,Ivan Lapshin,83491,543860,0 +89198,Véra,1421,5320,4 +89199,Jessie Garza,273481,133950,28 +89200,Pook,85648,42157,13 +89201,Sue Ann,21955,550115,6 +89202,Sam,18898,83819,6 +89203,Fish & Chip Store Owner,2017,217560,14 +89204,Pflichtverteidiger,103396,49433,10 +89205,Dr. Alex Schwartz,65650,100537,16 +89206,,236368,125699,1 +89207,,335874,207899,5 +89208,Morocho,51976,1023670,1 +89209,Eom Hye-ju,32237,129614,8 +89210,Night,317557,1683150,4 +89211,Jean de Dieu,49974,257772,1 +89212,Joan,44754,52475,10 +89213,Zavros,81895,743,6 +89214,"Hans Morrier (Hans Morriera, English version)",78507,29125,5 +89215,сын Ивана Сайко,72614,550525,4 +89216,Kimiko,52047,1115040,11 +89217,Basketball Avatar,19995,89714,30 +89218,Mrs. White,29117,88461,10 +89219,Ah Tad's SWAT buddy,18763,35452,8 +89220,Agente Cipriani,60014,128417,9 +89221,Safa,299780,1379273,23 +89222,Varvakis,128767,8197,0 +89223,Kira Supernova (Voice),68179,520,4 +89224,,48210,1117914,6 +89225,Connie,33729,74542,4 +89226,Sitter in Bath Studio,80596,1221533,6 +89227,School Jock,246655,1381295,26 +89228,Brian,16839,1105086,10 +89229,Squire Trelawney,83191,42276,5 +89230,Prof. Holloway,30640,106633,6 +89231,,235092,47860,10 +89232,Le dragueur,51971,25065,8 +89233,,167021,1148668,1 +89234,Desperate Dad,199575,1438923,44 +89235,Sgt. George Godley,24486,84475,3 +89236,Hank Younger,183825,8519,9 +89237,Clara (as Janis Heiden),52661,163615,7 +89238,Roger (voice),13654,997860,9 +89239,Simon,267931,1358928,16 +89240,Garth,5494,723,2 +89241,Mr. Schwartz's Stooge #1,128669,67369,17 +89242,Oddbod Junior,5060,184933,12 +89243,Wanenis,108224,183203,2 +89244,Sang Baek,338729,1418580,19 +89245,Rebecca,268174,58045,7 +89246,Mary Ann Davidson,38546,58006,1 +89247,Bertrand B. Hemingway (as Clarence H. Wilson),84971,89102,6 +89248,Confession Girl,14123,968007,39 +89249,Hadrian,105210,9717,2 +89250,Roland,150065,237061,6 +89251,Cubey,12447,8396,10 +89252,Arya,34763,108215,0 +89253,,218508,20333,15 +89254,Himself,15725,42386,0 +89255,Chic Collins,218582,5401,4 +89256,Segurata Museo,348537,1410725,14 +89257,Old Man in hospital,47120,78234,6 +89258,Truman,91443,62911,0 +89259,,119172,554604,5 +89260,Morning Show Host,5172,1668463,36 +89261,Ma Norton,29510,89841,2 +89262,Georges,87936,1220983,10 +89263,Betty,38792,29703,8 +89264,Yukiji,39123,81352,3 +89265,Paul,64225,18177,2 +89266,Mya,345054,1485336,10 +89267,Susanne Feldberg,75969,5511,10 +89268,Geneviève Duval,247500,1067341,1 +89269,Lennox,225728,54014,7 +89270,Masashi Hiroyuki,224903,1172152,2 +89271,Halmosné,96411,85641,1 +89272,Monk,33305,1173282,6 +89273,Gidi,412363,1769117,17 +89274,,85377,1406107,5 +89275,Truck Driver,14750,100061,22 +89276,Brent,4964,19278,13 +89277,Clyne,324670,18473,0 +89278,Richard Wagner,3478,12726,2 +89279,Justine,3057,29945,6 +89280,Steini,36229,4796,5 +89281,Judge Millard Isham,18447,6836,3 +89282,Roger,24578,6637,2 +89283,Cdr. James Ferraday,17657,18735,0 +89284,David,2734,27631,0 +89285,Holly,25450,74618,1 +89286,Seeker Pavo,72710,1273238,22 +89287,Rodney,42188,93210,3 +89288,John Lawrence,50153,30453,0 +89289,,225614,237304,3 +89290,,153196,1283563,13 +89291,Giovane operaio,24189,238778,4 +89292,British Boy (voice),174309,17064,0 +89293,Deacon Yancy,278316,196179,10 +89294,Pentagon Cook,127585,131335,43 +89295,Anne Sutherland,215999,80366,3 +89296,Garvey,1790,30297,6 +89297,Samantha Brown,65509,82096,3 +89298,Eve (waitress),43753,105602,7 +89299,Nora,67375,111585,42 +89300,CIA Director Weylon Armitage,10005,10480,1 +89301,,375199,1120194,3 +89302,Nawlicki,49524,17343,6 +89303,Destroyer Sonar Man,17911,1169763,20 +89304,Candidat,77338,1632532,21 +89305,Le cardinal d'Etigues,11540,37727,7 +89306,Himself,89774,937783,1 +89307,Mama Toya,20941,104982,5 +89308,Driver,2577,9192,7 +89309,,170998,35782,1 +89310,Colonel Haki,200331,9872,4 +89311,Laura,33623,582054,5 +89312,Cory,23957,554192,5 +89313,la mère de Gilles,4974,579271,14 +89314,Bert Grant,183832,34168,22 +89315,Sheriff,42533,1059611,2 +89316,Extrasensory Individual,97797,1014982,10 +89317,Morgan,27671,98635,3 +89318,Cassandra,265208,15250,8 +89319,Op Center Staff,19995,1145098,44 +89320,Cheri,114096,40621,9 +89321,Gong Pig / Grateful Bunny (voice),9502,1448984,17 +89322,Tristan,96118,550538,8 +89323,Francia király (voice),41078,1144603,7 +89324,Anastasia (voice),14128,34983,6 +89325,Raveed,121791,235132,3 +89326,Brianna,30778,106977,2 +89327,UK Additional Muppet Performer (voice),145220,1504917,57 +89328,Osman,336804,1457426,10 +89329,Isaac,86305,88269,8 +89330,Bachelor,344147,1476096,10 +89331,Anna Borg,79645,95476,4 +89332,Eckhardt,35632,36890,4 +89333,Tzimis Paloukas,185111,1252824,2 +89334,Alexander,53256,147642,20 +89335,Kristen,68716,41901,6 +89336,Ulises Morales,86126,66904,0 +89337,Olivia,285841,530,4 +89338,Ellis Herries,186227,4071,3 +89339,Kat Rogers,63762,57674,0 +89340,Mads,290370,1098450,7 +89341,Mrs. Grace Brent,162862,21878,7 +89342,Miles Morgan,201749,20301,3 +89343,Flores' Trainer,312221,1378544,27 +89344,Blake Davies,15613,31005,6 +89345,,81220,89585,2 +89346,Shim Sang-do,363579,1872632,7 +89347,Becky,159638,1037151,3 +89348,Samantha,31277,200820,12 +89349,Wendy-Werbemädchen,217412,1890754,25 +89350,Lawyer George Renny,20644,12022,5 +89351,Rick,30478,106385,3 +89352,Soldier,294254,79211,27 +89353,Illya Kuryakin,79466,24813,15 +89354,Nobuko Ishihara,37213,117064,2 +89355,Doug,64627,239472,4 +89356,Chloe,405050,1372369,1 +89357,,61266,237448,5 +89358,Edith,32497,109284,4 +89359,,254869,114986,49 +89360,Frank Hawdon,16659,127135,3 +89361,Himself,14284,106843,0 +89362,Big Nosed Woman (uncredited),213681,1771567,41 +89363,Student in Bar Bathroom,381008,1589611,24 +89364,Erik,325712,102209,2 +89365,Sheriff Foster,22419,349,3 +89366,,373838,99291,2 +89367,Lazarus,235260,1698794,31 +89368,Schulleiter Lindum Svendsen,1838,3882,0 +89369,Masha Goroshkina,256520,996878,1 +89370,Dr. McCormick,12525,25023,4 +89371,Himself,17073,135650,1 +89372,,153196,1205220,12 +89373,Jean-Michel Cousteau (enfant),332794,1774431,13 +89374,Lead Chimney Sweep,14923,70851,66 +89375,Drunken Man in Restaurant,55167,222322,10 +89376,Caid's Brother,99698,27666,5 +89377,Jake Nealson,14809,228954,5 +89378,Photographer,83599,56205,1 +89379,Pierre,8282,54326,9 +89380,Jessie,26574,55266,2 +89381,Joy,17940,67706,2 +89382,Белка (озвучка),83865,146601,5 +89383,Hooker,18774,202299,19 +89384,,31412,1888397,12 +89385,Kumada,88271,1437833,6 +89386,Cyber Chick #2,257344,1522345,32 +89387,Dennis Taylor,377516,1651871,9 +89388,Grapefruit Acres Radio Announcer,157343,1271019,32 +89389,Couple at the Airport,302104,1044238,4 +89390,Damiano,120457,124754,3 +89391,Cult Leader,84348,131833,20 +89392,Ray,38031,587020,23 +89393,rytíř Matěj Beran z Beranova,51902,227400,3 +89394,Henry 'Hank' Palmer,205587,3223,1 +89395,Moses Cobb,128866,1088057,5 +89396,Female Santech Elf with Glasses,238302,950773,13 +89397,Strip Club M.C.,28090,101615,33 +89398,,154442,33732,4 +89399,Lt. Gelson,24331,58169,6 +89400,Anesthesiologist,335970,1717864,16 +89401,Neha Rajan,60392,150220,1 +89402,Brooke,19794,85178,16 +89403,Miguel Páramo,198795,95738,11 +89404,Willy Brandt,82598,5403,4 +89405,Minor Role,41597,1581099,36 +89406,Dr. Roberta Bloch,14510,37028,4 +89407,Roland Darbant,29259,103397,1 +89408,Young Clive Cheney,120676,1404459,12 +89409,Phillip Hurst,16899,118037,12 +89410,Rafael,2143,21979,4 +89411,Movie director,16687,64662,15 +89412,Gilbert Neuville,10795,24421,7 +89413,Sylvia Lake,14868,8436,3 +89414,Judith,131194,37437,5 +89415,Lee King,182127,112985,5 +89416,,78323,583733,2 +89417,Asgardian Noble,284053,3899,22 +89418,Priya,14752,78923,7 +89419,Ernesto,267557,225299,5 +89420,,279159,1335341,4 +89421,Himself,376394,1559483,5 +89422,Kyle,169298,78045,16 +89423,Shakti Malik,16987,11861,3 +89424,Devika,422603,1699987,5 +89425,Izu,404459,80473,2 +89426,Zipora,35623,1195669,5 +89427,Nick,373247,1551044,2 +89428,Grace,326,7401,7 +89429,Dimitri,33801,20510,2 +89430,Bobby,97614,21292,10 +89431,Tim (Segment 5),244117,6861,11 +89432,Xin Kang,62071,229302,1 +89433,Cop (uncredited),53576,120734,10 +89434,Falco,9274,19894,7 +89435,Long Sen Yat,118139,13359,5 +89436,Carl,11636,137146,14 +89437,Bobbi,172828,466505,12 +89438,Jess (10 yrs),290762,1640426,17 +89439,Clint Tollinger,26758,10158,0 +89440,Piccolo,39101,85286,0 +89441,Lucy,39414,14722,6 +89442,Dr. Freeman,22683,1000796,7 +89443,Il cardinale,315319,133755,31 +89444,Bryan Sugarman,2355,24173,8 +89445,Rev. Trusler,413762,146791,6 +89446,Masako Kibe,155941,1134607,2 +89447,Sgt. Major,44943,1205880,35 +89448,Dr. Roberto,224233,548461,5 +89449,Kimura,74581,134288,4 +89450,"Sally, Hospital Switchboard Operator",153165,1274103,11 +89451,Artemio,38285,119991,0 +89452,Kaija,32099,108862,15 +89453,,52323,145796,2 +89454,Smiling Teacher,325712,1879672,21 +89455,Valentin's mother,142757,86668,3 +89456,Henry,403330,80407,5 +89457,Oculist (uncredited),32552,93622,17 +89458,Special Appearance,15761,35795,6 +89459,Himself,18893,565206,17 +89460,Anchorman,19912,1905539,13 +89461,Mysterious Necklace Woman,315855,95950,43 +89462,King Pleasure's Girlfriend,347630,1695672,51 +89463,Un ami,12446,55808,19 +89464,Toynbee,22682,153713,13 +89465,Mr. Maranov,49815,1905,2 +89466,Cash for Carz Salesman,8988,63303,50 +89467,Tripp,85446,180789,7 +89468,Mana (voice),79707,1116334,3 +89469,Emerson,20842,565516,7 +89470,Twister,6980,22132,2 +89471,,129229,1088723,3 +89472,Jacob Sternwood,93828,2983,1 +89473,Astronaut Andre Freneau,36530,115532,3 +89474,Torstein Raaby,70667,76555,5 +89475,Chev Chelios,15092,976,0 +89476,Leo,63938,1762409,4 +89477,Mrs. Whittaker - Party Guest,30014,105508,13 +89478,Colonel Tom Parker,23178,73349,9 +89479,Kavanoz Nuri,452606,1685795,10 +89480,Andy Walker,16151,75711,7 +89481,,110001,424454,11 +89482,Capt. John R. Mason,37468,117741,6 +89483,Andrew Maxwell,13025,81099,5 +89484,Märta Werkelin,41764,5024,20 +89485,Christina,19918,964614,6 +89486,Henry Huang,206197,1397360,10 +89487,Loren Hansett,29896,19961,1 +89488,Sheik,157843,20671,9 +89489,Paul,93856,21047,1 +89490,Don Carluccio,57996,241712,19 +89491,Party Girl,109439,1573586,26 +89492,Jane,1164,17481,10 +89493,Laverne Miller,72313,10774,1 +89494,Night Watchman at Subway Construction Site,43855,4119,13 +89495,Elf (Voice),28275,1206,1 +89496,Steven Arden,29872,1208,2 +89497,,205349,228149,16 +89498,Ripsaw Imperator / The Breakman,76341,1734181,35 +89499,Amir,6391,55052,7 +89500,Matt,5965,46927,15 +89501,Mark (13 Jahre),311301,1430485,10 +89502,John,142507,1117472,5 +89503,Tejeshwar,96147,86017,11 +89504,Marcel Bernard,19757,1055303,6 +89505,Beatrice 'Bea',42614,143820,3 +89506,Harry Archer,74629,24516,14 +89507,Irene's Girlfriend,18651,1038671,46 +89508,Favorite of the Harem (uncredited),3059,89186,79 +89509,Sky,402582,1388181,4 +89510,Charlotte,52369,23671,1 +89511,Bob Jackman,24123,54793,15 +89512,Captain Thompson,127560,59119,26 +89513,Ogden,253277,53117,3 +89514,Hud,13802,70903,46 +89515,Pete,125063,1230693,2 +89516,Truck Driver,390,5275,2 +89517,Earl,166161,1105697,7 +89518,Nightclub drinker,43113,1481134,61 +89519,Tanner,325189,1031685,4 +89520,USS Carter Sub Tech #2,52454,1630267,18 +89521,Technician (Overbrook) - Mike,244786,1503835,21 +89522,Latham (as Morgan Paul),259975,58495,14 +89523,Aunt Josie,128270,105788,19 +89524,Tony Robson,179603,19550,2 +89525,Antoine,9539,143593,8 +89526,Emmaline Potsam,13842,146025,13 +89527,Ranger Deakins,135708,58954,5 +89528,Mr. Knudsen,96089,13298,5 +89529,Lisa,97614,1207365,25 +89530,Ada Figgins,16410,153127,12 +89531,Watcher #2,84336,126457,14 +89532,Sally Wilcox,44129,49,4 +89533,Gunman,47186,162522,32 +89534,O'Leary,30941,109211,21 +89535,,60160,20335,10 +89536,Dr. Louise Rosenberg,66668,10556,3 +89537,Naomi Murdoch,63858,14974,0 +89538,Alva,383618,83899,4 +89539,Germán,120129,112213,6 +89540,Farmer (uncredited),413998,1894999,31 +89541,Pops (voice),328111,56159,9 +89542,Delmar,9793,59295,7 +89543,Mr. Keegan,92496,1794803,17 +89544,Jimi,62825,1381437,4 +89545,Alan Kennard,157152,1236,3 +89546,,14804,1901802,24 +89547,Townsman Notifying Vigilantes (uncredited),61985,88652,11 +89548,(voix),50166,54384,1 +89549,Cali,385372,63676,2 +89550,,162877,1154749,6 +89551,(voice),16171,79891,43 +89552,Muscle Woman #1,316154,1840871,12 +89553,Matt,159770,1144092,0 +89554,Grandfather,126934,6577,6 +89555,Mia,310602,42094,4 +89556,Mary Follet,122698,14500,0 +89557,Additional Voice (voice),177572,1502450,39 +89558,Auntie,277687,1356263,9 +89559,Captain John Holmes,80592,4165,0 +89560,Yuan Zeng,41378,576050,8 +89561,Jumela,243935,1782622,22 +89562,Daria,43544,129573,6 +89563,The Editor,38221,108026,8 +89564,,88953,213324,4 +89565,Frisian Prince,42664,51310,8 +89566,Woman in Lift,85442,96180,24 +89567,Dr. Reeves,267793,12538,8 +89568,Herself,136786,11916,0 +89569,Fink,51601,34098,15 +89570,Cindy,83896,1567166,13 +89571,Emily,79316,1224238,5 +89572,Miss Jones,22682,14789,8 +89573,Mei,289720,1379377,3 +89574,Meredith,262841,530618,1 +89575,Oberst von Steffenberg,116554,185427,9 +89576,ingegnere marocchino,38286,120320,8 +89577,,101995,1048460,1 +89578,British Officer,18651,101742,62 +89579,Another Guest #2,2567,198630,47 +89580,Doctor,25126,93211,6 +89581,Sandy,28739,129822,15 +89582,,438597,1748450,5 +89583,Nikki,27091,96922,2 +89584,Paikuhan,39107,122726,5 +89585,Aboriginal Tracker,6972,144677,39 +89586,Fish (voice),10527,64449,38 +89587,Josh Jackson,39345,52048,7 +89588,Millicent,99859,8963,4 +89589,Jenks,149793,89730,8 +89590,Adnan,126090,938097,8 +89591,Uzi Henchman,9828,59674,17 +89592,Franc Beme,33611,144630,4 +89593,Manuel Vargas,20444,68934,9 +89594,District Attorney,94251,13977,14 +89595,Skinny Man,266285,1459398,28 +89596,Linnea,7234,52132,12 +89597,,11328,1444496,44 +89598,"Barbara ""Babs"" Burns-Norvell",31773,149116,8 +89599,Fotografin,10129,10627,3 +89600,Alma,377290,1164111,11 +89601,Un cocher,68822,140365,26 +89602,Patrick Harper,70133,144863,2 +89603,Sam's Grandfather,508,3545,31 +89604,John Clark,297265,1560046,4 +89605,Jack Stone / George Washington,20521,6106,8 +89606,Nicola Ball,203321,1185769,6 +89607,Sportpräfekt Fitz,9010,1084,2 +89608,Leo (uncredited / archive),168259,96321,45 +89609,American Girl (voice),174309,20089,1 +89610,Tom Jackson (adult),118953,203507,5 +89611,Tilghman,167262,522,4 +89612,Military Nurse (uncredited),6973,1424325,40 +89613,Jessica,338767,1463025,2 +89614,Tycho Barman,5552,1513403,12 +89615,Chancellor's Security Aide,177677,85828,46 +89616,,34181,579138,15 +89617,Warden Holliday,2125,537,4 +89618,Tommy Albright,18283,13294,0 +89619,Father Anderson,279606,93692,5 +89620,,424014,126975,2 +89621,Angie,97767,2929,6 +89622,Johnny Five,86829,9828,9 +89623,Gypo Nolan,43896,30495,0 +89624,Jillie,170279,1152393,12 +89625,Ritu Bajaj,20623,86419,5 +89626,Guothum (Dasar martial artist),11653,131728,10 +89627,Kira Whittal,413052,966053,2 +89628,Luhan,11330,1348449,6 +89629,Mitch,78734,14664,13 +89630,Burgies CEO,16058,102603,14 +89631,,144651,1094057,7 +89632,Jesus / Guy In Line,45132,180355,19 +89633,Carol Kornpett,19827,1217271,3 +89634,Jeremy Platt,433244,20303,8 +89635,Mrs. Connell,128364,1209488,10 +89636,Kozou (Delivery boy),28268,1896446,7 +89637,Judge for rape case,88922,1134979,15 +89638,Samuel Dockstader,37935,14854,4 +89639,Emma Collingwood,18405,2140,6 +89640,Troublegum,198277,1216901,25 +89641,Jeddy - The Cowboy,32928,144826,0 +89642,Ülrich,81414,591926,3 +89643,Alex Fielding / Artemis,21481,87569,0 +89644,Hélène Regnier,4266,19092,0 +89645,Commissaire,8899,1637838,11 +89646,Ben Philips,56809,1451595,1 +89647,Mrs. Cello,28340,100490,7 +89648,Alton Meyer,245703,1274508,1 +89649,Member Of The Press,108723,1446352,33 +89650,Pinocchio/Three Pigs (voice),809,12095,8 +89651,Clare Martin,111960,14306,1 +89652,Anne Schmitke,314635,236331,6 +89653,Maya,8998,65760,9 +89654,Salvatore Rosa,64465,1137525,10 +89655,Scott,8669,205446,20 +89656,Uli,169758,3398,4 +89657,Cooper (voice),136799,1260038,10 +89658,Nekro-gang member,48636,1772473,4 +89659,Trooper,418772,4688,7 +89660,Xenia,59962,21430,7 +89661,Webb,85442,24379,6 +89662,Dan Evans,174769,13578,0 +89663,,64204,1327503,7 +89664,Dennis,139455,83569,10 +89665,Spere,283384,189720,17 +89666,Lai Hwat (stepmother),96712,136891,5 +89667,"Betty Clark, Policewoman",36634,2772,13 +89668,Mrs. Moss,192990,33093,5 +89669,Freddy,19237,32598,3 +89670,Bodyguard,335970,1209377,60 +89671,Pietro,106944,109143,3 +89672,Priest,169881,150577,11 +89673,Private (uncredited),16442,141606,26 +89674,Werewka,382155,1636690,21 +89675,Kráľ Norbert,208436,38677,9 +89676,Leo,113660,116157,0 +89677,Himself,333103,87281,9 +89678,Cellist,31915,58494,7 +89679,Councilman in Meeting with Maximilian,78318,115770,39 +89680,Renard,13733,28463,4 +89681,Medic,4960,1371296,16 +89682,Denise,45649,76029,17 +89683,"Ewa, żona ""Babci""",382155,1138905,13 +89684,Amanda's Secretary,221240,1488053,11 +89685,,73554,215225,2 +89686,Speck Parks,70026,4307,2 +89687,Gwen Owen,87060,1534292,6 +89688,Lora,36212,145927,2 +89689,,28071,37525,10 +89690,Donny Chandler,15356,78143,5 +89691,Jean,86391,25179,0 +89692,Aqua Walker,37609,74046,3 +89693,Gabriella,43544,129571,4 +89694,Ensign,10488,59118,6 +89695,Bonnie Reed,40087,119892,3 +89696,Pedretti - Avvocato,75336,21236,2 +89697,Malcolm,191465,89750,1 +89698,Proteus (voice),14411,12763,3 +89699,Asst. Magazine Editor,17111,1629438,9 +89700,,37959,1085860,9 +89701,Ajay,34763,113808,1 +89702,Gregory,14809,38560,4 +89703,Austin (reporter),153652,38358,4 +89704,Yoga Instructor (uncredited),15092,1496350,93 +89705,Himself,100247,1024165,0 +89706,Bayliss,49060,58012,5 +89707,Texting Girl,116979,1457671,21 +89708,Dispatcher,27414,1206251,39 +89709,,332354,590309,10 +89710,Cornelius Robinson (voice),1267,15112,0 +89711,(as Luigi Zita),155597,1586007,12 +89712,Crotta,64465,988680,11 +89713,Viktor,10500,1087,4 +89714,Hanson,118283,5732,4 +89715,Gretchen,272892,1070748,4 +89716,El Chivo,17317,11160,8 +89717,Dr. Owen,10918,134905,25 +89718,Keisuke Hirata,22899,111948,0 +89719,Test subject,76757,1394357,56 +89720,Hal (voice),153518,1332494,14 +89721,Franz Vreeland,9779,59184,18 +89722,Mob Member,57201,1333907,49 +89723,Baltimore & Ohio Fireman,147829,1464492,33 +89724,Franz Riklin,48231,1089486,22 +89725,Brian,27196,135101,14 +89726,Laurie Moore,96936,41087,6 +89727,John Bunting,67748,213202,1 +89728,Herself (voice),378441,1797387,10 +89729,Detective in Movie Theatre (uncredited),22943,108627,11 +89730,Drag Dancer at Benefit,18651,1467401,64 +89731,Koen Mast,29101,91528,1 +89732,Linda,71503,563097,16 +89733,Detective Ritchie,29108,122651,13 +89734,Dr. Kolton,32124,108917,7 +89735,Joaquín,236737,35722,4 +89736,Wash,183825,213830,13 +89737,Maschera del Cinema,82341,41163,11 +89738,Adam,291866,222122,1 +89739,,47238,1153524,0 +89740,Tearlach,103433,1038365,7 +89741,Dan,273610,1495850,10 +89742,,444623,99291,4 +89743,(uncredited),140554,1707846,49 +89744,Evie,215881,208944,8 +89745,,11196,1444548,33 +89746,Rose Batten,283384,1130510,7 +89747,Timmy Terwelp,26809,212234,3 +89748,Coo,174712,122482,1 +89749,Crushed Baby,79329,586539,17 +89750,Dr. Hartmann,70500,139689,5 +89751,Rolf,41619,22634,4 +89752,Walter,377432,44248,5 +89753,Ricky,335031,144475,3 +89754,Marie Charlet,10910,1190635,1 +89755,Landlord,41252,110199,3 +89756,Paul Sheppard,48770,48,1 +89757,Margaret,54804,15736,8 +89758,Carl Jung,48231,17288,2 +89759,Poor Alfred,142984,94511,8 +89760,RAF Soldier #1,16374,80478,12 +89761,Burglar (uncredited),179818,32437,10 +89762,Kevin,77246,152993,7 +89763,Sgt. Ben Engleman,5421,7198,3 +89764,Béatrice Vergnes,74714,117884,3 +89765,Amy,331075,1759496,6 +89766,Jesse Stone,110148,15112,0 +89767,Invitado a fiesta (uncredited),45191,1095080,16 +89768,Herself,296029,1370766,1 +89769,Captain Ammand,285,70577,33 +89770,Vivian Percy,6947,1989,7 +89771,Dr. Gregory Belson,15805,10477,4 +89772,The Butler,110540,3368,11 +89773,Merissa - Ethel Parker,32021,445687,15 +89774,Cab Driver on Bali,98125,192458,16 +89775,Mrs. Martha Kildare,153161,14033,7 +89776,Porter (Wharf),6972,144678,32 +89777,Denise Galik,31913,60291,14 +89778,Rita,99863,588999,7 +89779,Adv. Deepa,332827,1178639,1 +89780,Himself,320589,1584102,8 +89781,Pandora,359870,62976,12 +89782,Marguerite Chopin,779,11584,5 +89783,,62896,116162,3 +89784,Isabelle Doulean,76198,6553,1 +89785,,428398,93407,9 +89786,Meek Man,41171,92271,36 +89787,Veda,13960,1234262,9 +89788,Tawny,39779,13341,7 +89789,Shaydah,252171,210814,5 +89790,Gretel,165864,96349,0 +89791,Marquise Lefrançois,23857,178447,1 +89792,Gargiulo,52913,45580,4 +89793,Mr.Rotter (voice),227257,127387,10 +89794,Chief Inspector,228066,56100,13 +89795,Johan,261112,1304486,1 +89796,Frick,47761,58019,3 +89797,Mrs. McCosh,99567,600689,7 +89798,Small Dreg,35052,1089574,12 +89799,Willie,413452,19159,1 +89800,Prostytutka,382155,1636708,36 +89801,Protagonist,121942,72373,1 +89802,Pirojshah Pithawala,249914,6497,3 +89803,Cassie,28739,101806,2 +89804,Mr. Frakel,242042,1375358,25 +89805,Jefferson Almond,28571,14518,6 +89806,"Gabriel Lecouvreur, 'le Poulpe'",62012,28463,0 +89807,Starlet,239563,1274509,11 +89808,Welcome to the 60's Dancer,2976,1752778,124 +89809,Extra in Swimming Pool (uncredited),31411,122981,8 +89810,Cory Staggart,354287,37154,2 +89811,Buddy Hutchins,322266,6213,1 +89812,Tokiko,94659,1063890,10 +89813,,271677,77234,3 +89814,Cole Harper (uncredited),44921,2758,7 +89815,Chief Officer Ricco,43354,115062,3 +89816,Jana Foster,182228,1742634,6 +89817,BV's Cousin,330947,1552436,10 +89818,Tía Marita,17893,967160,5 +89819,Reverend Kalahan,35656,1248,1 +89820,Queen Katherine,10804,33448,10 +89821,Mme Pinelli,4266,34677,5 +89822,Librarian,41505,1309217,16 +89823,Himself,21671,122807,10 +89824,Herself,16800,939007,23 +89825,Clanker,58,1123,18 +89826,Julian Ormerod,194817,140167,2 +89827,Jackie Hillman,38761,232182,6 +89828,Vittoria,195544,1174533,1 +89829,Elizabeth Gibson,5413,1856228,10 +89830,,327935,1320055,8 +89831,Mme. Sauvage,72375,28254,4 +89832,Laura,14422,448,5 +89833,Sponsorsjef,140818,76553,13 +89834,Max,354133,1496070,10 +89835,Deputy Winston,11547,4133,6 +89836,Jimmy Umbrella,403570,15342,8 +89837,Uptight,13777,75262,15 +89838,Cheryl,62012,16921,1 +89839,Joesph Eugene 'Joe' Sullivan,43504,223268,8 +89840,Himself,104744,138748,4 +89841,Rodeo Performer,134238,1622042,49 +89842,NASA Guide,365942,1151637,7 +89843,Julian Rigby,275060,227,5 +89844,Kate Pettigrew,104211,81774,2 +89845,Man with Basket,27814,99025,18 +89846,,376716,235919,15 +89847,Empleado de Guadalupe (uncredited),44655,11978,8 +89848,Susan Schmidt,45324,73296,12 +89849,Brianna,71139,62591,15 +89850,Peregrin 'Pippin' Took,122,1329,7 +89851,Mulcahay,116973,13820,10 +89852,The Triad Boss,21708,1339,5 +89853,Mattone,91571,45232,3 +89854,Eerie Fabri-Pac Guy,274479,1774105,52 +89855,Dimitri,24624,141770,6 +89856,Alice,351065,1095865,6 +89857,Johann Strauss Jr.,280004,5789,0 +89858,Baby Alex (voice),10527,1077796,17 +89859,Seung-Cheol,31850,1191710,6 +89860,Line,72054,77543,6 +89861,The Ticket Seller,58467,1065,27 +89862,Catherine Cisco,298695,14464,6 +89863,Nieto de abuelo enfermo (uncredited),122019,590023,14 +89864,Chorus Girl (uncredited),144111,40174,11 +89865,James,70636,559057,1 +89866,Mona Briarly,108282,40175,1 +89867,Franco Schianchi,58060,231143,3 +89868,Katherine Mary Sullivan,43504,10606,0 +89869,Renchard,30778,18702,0 +89870,Dude,4365,8663,8 +89871,Brisbane Goon #2,13777,75259,12 +89872,Principal Sinclair,28739,2234,7 +89873,Lt. Morris Schaffer,11046,190,1 +89874,Man in Bar (uncredited),18774,1231166,27 +89875,Pierre,28938,18161,9 +89876,King Shaw,43809,103366,2 +89877,Major Ematt,140607,240629,23 +89878,Carys Vanderwheel,402582,1340664,8 +89879,Rodney Wilson,50647,291263,9 +89880,Il dottore,210615,32101,5 +89881,12-Step Meeting Member,14976,1720917,21 +89882,giocatore di poker,41608,51430,9 +89883,Bus No. 57 Driver,250332,1173172,31 +89884,Music Maids Member,43809,1556465,46 +89885,Himself,55027,225219,2 +89886,Padre milo,22182,1875873,15 +89887,radio announcer,157343,30005,2 +89888,The Abbess,186971,20577,11 +89889,Nancy Corlane,30036,12309,4 +89890,Spectator,279096,1386301,22 +89891,Mrs. Barton,32610,19784,14 +89892,Aunt Mathilde,179066,544971,32 +89893,Karol's Father,511,7118,12 +89894,Louise Maigret,37454,117667,3 +89895,Rohini,20742,86069,13 +89896,Scrubwoman in Grand Plaza Hall (uncredited),31773,11498,16 +89897,Johnny Paul,186584,6178,0 +89898,King Richard,78028,18906,7 +89899,Addie (voice),378236,1859934,12 +89900,Chinese Snake Dancer (uncredited),16320,43470,41 +89901,Demetrios Bacos,121234,18646,5 +89902,Dr. Monnet,3051,14264,7 +89903,Inmate,41283,45581,20 +89904,Rebel,94055,87473,0 +89905,Ileana,46169,135254,3 +89906,,336669,1484659,1 +89907,Horace Barré,209293,240742,2 +89908,King Haraald,11137,1292,4 +89909,TV Anchor,329865,1646456,55 +89910,Florinda,28820,38592,6 +89911,Katy,274325,1577104,8 +89912,Joseph M. Schenck,337751,229,9 +89913,Tavern boss,60568,1178707,10 +89914,Whitney Feder,48333,98437,4 +89915,(as Iñaki Ayerra),110001,937448,31 +89916,Bitter,12450,83140,9 +89917,Tony Stark / Iron Man,1726,3223,0 +89918,Waldemar Nods,59424,237150,1 +89919,Salvo,301272,120652,0 +89920,(uncredited),140554,1169134,50 +89921,Ricky,118760,4724,1 +89922,Gram,244580,515,2 +89923,Il conte Serpieri,43195,32064,2 +89924,Theodore Hadley,100528,103340,2 +89925,Claude Gaspard,29259,46936,4 +89926,Ella,395982,71083,2 +89927,The Father,56816,148012,2 +89928,Gwynplaine,151826,71507,1 +89929,Anne-marie,34013,19116,0 +89930,,47200,552125,2 +89931,Venus Virgo,284564,41229,1 +89932,Lydia,343369,1631639,5 +89933,Colonel Dent,22744,85937,8 +89934,Mel,86829,60796,3 +89935,Lefty Vigran aka Gorss (uncredited),28668,120749,8 +89936,Karl,54093,4935,2 +89937,Older James (Second Release),13396,7487,0 +89938,Raton,20941,57410,16 +89939,Polizist,84228,109787,14 +89940,Georgina,14387,132099,6 +89941,Marbuck,118490,1541333,1 +89942,Whittaker,79833,195606,4 +89943,Himself,70027,86110,5 +89944,Charlie,70695,55097,12 +89945,Le père de Bichette ('L'adolescence'),98302,24387,5 +89946,Mrs. Moran,29362,10399,3 +89947,General Vladislav Melnik,354287,1052209,45 +89948,Edgar (uncredited),50012,27977,2 +89949,Sir Miles Axlerod (voice),49013,1926,5 +89950,Marina Saracini,106256,1033001,4 +89951,Waterpark Girl,12279,77948,23 +89952,Christian Remminger,54548,5204,1 +89953,Federico Picchioni,255456,89193,0 +89954,,261508,1305038,2 +89955,Stéphanie,97365,8293,0 +89956,Bengtsson,285245,225598,2 +89957,,69310,143358,31 +89958,Club Stoner,336011,1560254,25 +89959,Elfman,22681,96033,7 +89960,Cantrell,42216,14324,13 +89961,Randy Frakes,376292,1473957,6 +89962,Cash,4413,37150,7 +89963,Jeff Chapman,36634,12312,9 +89964,Chin,112708,94089,5 +89965,,12453,72293,9 +89966,,116762,566722,7 +89967,Gi-Joon's older sister,64882,93996,4 +89968,Stuepigen,56858,1106067,13 +89969,Willow,320588,1538580,30 +89970,Horace 'Red' Graham,242332,14454,5 +89971,Siphon,13836,109870,10 +89972,Dr. Nedring,33472,1580376,9 +89973,,38010,237323,18 +89974,Oliver,14830,60279,6 +89975,Curtis LaForche,64720,335,0 +89976,Wedding Valet,14976,1359560,27 +89977,Frank - Stage Manager at Benefit,18651,47001,59 +89978,,103713,1034671,1 +89979,Reporter #2,70772,559661,14 +89980,Miss Grady,345003,1838591,17 +89981,Translator,402582,84469,12 +89982,Michael Archer,76012,2878,0 +89983,Minions (various),54559,124747,0 +89984,Mago Magone,222517,103115,4 +89985,Terravex Security Guard,262841,1366658,26 +89986,Saffet (as M. Emin Toprak),52072,107522,4 +89987,Superintendent Brown,55846,2964,18 +89988,,419522,1898306,30 +89989,Rob,21544,64471,7 +89990,Avocat d'Ernest (voice),126319,1505893,15 +89991,,339367,85969,2 +89992,Jennifer Glenn,171308,1052508,4 +89993,Bessie - Barmaid,111470,33361,34 +89994,Porter Holloway,358076,856,6 +89995,Жанна,31418,108047,1 +89996,Dancer,2295,1561014,17 +89997,Henny,128900,47153,10 +89998,Misha,65839,142504,1 +89999,Gaby,59349,1529762,9 +90000,Todd Flannery,75174,29234,4 +90001,Belle,400174,929826,2 +90002,Ignazio,57996,1393898,12 +90003,Shira,96888,1011141,7 +90004,Barbara Shea,38769,120758,3 +90005,Magic Show Audience Volunteer,228647,1058695,19 +90006,Porter,121674,1878807,34 +90007,,256356,23734,2 +90008,Cleaning Woman,11338,3434,16 +90009,Ralph,34840,39884,3 +90010,Patrick 'Kitten' Braden,1420,2037,0 +90011,Amalia,60046,20887,1 +90012,Bauer,102272,2725,5 +90013,Arnaldo,34588,1008707,11 +90014,Herself - Model,327083,60952,21 +90015,William,224778,8693,4 +90016,Richie,228970,212768,14 +90017,Profesor Muha,317,4643,7 +90018,Receptionist,272878,1650191,24 +90019,Prof. Hooper,284293,118388,17 +90020,Moon Girl,167810,1793182,24 +90021,Lola,378446,2759,6 +90022,Herbie,174195,540551,6 +90023,Soccer Player,257344,1627370,38 +90024,Himself,214756,33321,6 +90025,Millicent,265208,75620,14 +90026,Joe Armstrong,25528,21259,0 +90027,Reverend,31390,58650,1 +90028,Narrator,205939,930332,0 +90029,Courtney,371003,1011105,9 +90030,,64526,100954,11 +90031,,246829,1282313,7 +90032,Janine,6183,4927,5 +90033,,73835,122022,5 +90034,Samantha,258509,70696,10 +90035,Poop (voice),378236,2387,9 +90036,Denise,210047,54124,8 +90037,Bob Mitchell,175822,97220,7 +90038,Panelist,157723,2632,2 +90039,Mortimer,144613,145838,5 +90040,The Chromotherapist,246133,133931,4 +90041,Upscale Party Guest (uncredited),213681,1745086,59 +90042,George Barnum,101669,11023,5 +90043,Braden,17386,98437,3 +90044,Velma,17681,88622,3 +90045,Female Train Attendant #1,6687,569847,12 +90046,Nathalie Bérubé,26566,132820,16 +90047,Živković,255647,111058,9 +90048,Lady Doctor,41505,76687,15 +90049,Mrs. Bateman,62392,108288,14 +90050,BG with Dog (uncredited),11206,1290726,10 +90051,Diamond Stripper,354979,1835269,50 +90052,Ex-president of cosmetics co.,189151,137029,10 +90053,Jacques,60106,21177,0 +90054,Willie 'Scoops' Cager,9918,58959,7 +90055,Morris Kaplan,102155,135066,26 +90056,Master Tozawa Hakuun (voice),63486,239449,4 +90057,Marshall Cole,264080,40181,3 +90058,Jose,181456,2172,7 +90059,Umberto,13477,90325,15 +90060,Krista,376660,1286328,1 +90061,Maurice,334299,54281,7 +90062,Gerald (voice),127380,8065,13 +90063,John,82737,96307,1 +90064,William Popper,88583,30428,0 +90065,Malku,83430,1129442,4 +90066,Un cliente di Santina,3520,45983,20 +90067,Racetrack Official,125736,124882,17 +90068,Ice Cream King,44470,9567,18 +90069,Leon Coleman,48706,131,10 +90070,Riccardo,166262,138721,0 +90071,Stanley Badek,46494,136402,3 +90072,Bud--Deputy Sheriff,86768,14786,8 +90073,Jennifer,13280,74353,1 +90074,Georges Laurent,445,6012,0 +90075,Yolanda,56647,59134,6 +90076,,109587,1049501,19 +90077,,247447,1891496,4 +90078,Conway,188507,121868,3 +90079,Yeo Hye-su,83013,1235477,4 +90080,Asiate in der U-Bahn,75969,1902108,66 +90081,Servant (uncredited),183932,97999,15 +90082,Erik van Leeuwen,73123,27831,0 +90083,Hori,131739,1098347,5 +90084,Mrs. Lally (as Jean Innes),36375,115365,13 +90085,Otto,9252,46029,0 +90086,,80276,586625,8 +90087,Xiao Zisheng,69310,966327,16 +90088,Pinocchio / Three Pigs (voice),810,12095,16 +90089,Jesse McGraw,383538,1473957,4 +90090,,10484,1676553,17 +90091,Sheppard,168259,222906,18 +90092,Bea,450530,1490051,2 +90093,Connor O'Reily,24469,17288,1 +90094,Gianni Bozzi,82080,70027,0 +90095,Alan McKim,43346,90624,1 +90096,Hazel (uncredited),54570,209969,15 +90097,assistente sociale,43649,1139899,13 +90098,Taki'e,27276,551825,9 +90099,Detective Gibson,72642,1063495,1 +90100,Andy Hawkins,188507,20212,2 +90101,"Don Héctor, Javi's boss",63066,994544,4 +90102,Ira,39061,1308187,12 +90103,Sally,38031,3489,2 +90104,Himself,69974,557683,2 +90105,Laura,265563,932926,5 +90106,Julian Reeves,265208,52904,15 +90107,Second Airline Ticket Ticker,46145,243805,7 +90108,French Captain,150712,195086,27 +90109,Petr,336890,1475771,24 +90110,Signora Bottazzi,11972,69966,11 +90111,Ryuzo,315841,21503,0 +90112,The Brain,72096,585,3 +90113,Lulu,340881,1060629,4 +90114,Sandra,294483,59386,8 +90115,Teez,91548,25313,10 +90116,Walter Gredson,25407,14452,4 +90117,Theodore Roosevelt,14815,32791,2 +90118,il professore inglese,43211,994212,19 +90119,Classmate (uncredited),25132,1112454,18 +90120,Director Poong,101766,1004565,2 +90121,Trish,19423,26723,5 +90122,Mitch Szalinski,11425,60253,5 +90123,Croaker / Horace D' Fly / Roy the Frog / Turtle #2 (voice),15909,64182,1 +90124,Elsa,390526,21818,6 +90125,District Attorney,46494,94164,4 +90126,Saleswoman,157898,1429739,41 +90127,Peter Pan,273106,195895,1 +90128,Yefim Mahazannik,71336,1191198,1 +90129,Yashwant Sahai,134477,930730,11 +90130,Angela,158739,5299,6 +90131,Accomplice 2,690,548816,5 +90132,Underground Doctor,13807,1132615,13 +90133,Jessie,319986,1430946,4 +90134,Yevdokya's Sohn,14482,1164660,7 +90135,Michel,266030,1319777,2 +90136,Jason,315880,1669484,2 +90137,Schlämmers Sohn,27637,1724681,7 +90138,Anchorwoman,186869,1862898,23 +90139,Markussi (voice),233423,53117,3 +90140,Lois,68629,12851,3 +90141,Simpson,94135,3548,14 +90142,Catherine,162458,237725,6 +90143,Mace,1790,19106,5 +90144,Phil,340190,1423672,4 +90145,Vice Chairman of Joint Chiefs,209112,1007391,101 +90146,Voisin mal garé,77338,1385391,27 +90147,Chubby (as Hal Roach's Rascals),190352,1055289,6 +90148,Ken,28178,11398,3 +90149,Butch (Voice),14787,12077,3 +90150,Vinnie,83714,4691,2 +90151,Billy,224885,1269323,5 +90152,Andrew 'Andy' Hardy,92848,1937,1 +90153,Lilith,346170,228618,5 +90154,Chairman of Joint Chiefs,209112,1545503,100 +90155,Guruji,21567,83593,1 +90156,Callisto Garrone,105509,1037957,5 +90157,Michael Finsbury,62143,3895,2 +90158,Auctioneer,43757,1153743,5 +90159,Tad Lincoln,161187,212184,13 +90160,Himself,15258,72450,73 +90161,Prete,43645,30832,5 +90162,Demonstrator #1,326285,1812243,25 +90163,Older James / Narrator (voice) (First Release),13396,67269,1 +90164,Hamptons Nurse,6964,1228874,9 +90165,Timothy,109439,1573585,24 +90166,Unca,53805,1855353,8 +90167,Mrs. Winthrop,67375,544971,17 +90168,Darkseid (voice),353595,19384,12 +90169,Anna,416635,1681427,2 +90170,Miko,84626,1154131,4 +90171,Daryl Waker,42187,1131811,5 +90172,Vadim's Goon #2,2001,1781716,57 +90173,Babs,369894,821,3 +90174,Piero,21135,15135,0 +90175,"Woman (segment ""Dead Stop"")",319396,1427085,2 +90176,Taru,325205,1426720,3 +90177,Peyton,256969,60072,1 +90178,Gail,9753,58972,4 +90179,Young Boy Sledding - Jim,27414,1206234,22 +90180,Samantha,16022,71070,4 +90181,Waitress,31127,1055703,14 +90182,Randall Toth / The Dark Stranger,336271,230,2 +90183,Guido Rossini,39495,1647609,11 +90184,Jane Withersteen,134806,23882,1 +90185,Roper,65211,3339,6 +90186,Sally Ledbetter,63773,96706,8 +90187,Spori,296523,92943,9 +90188,Policeman,23107,103499,17 +90189,Officer Rayne,336265,1159650,9 +90190,,340961,24903,4 +90191,President of the Purity League,31899,103068,11 +90192,Asel,76438,236810,10 +90193,la prostituée,60824,1823497,4 +90194,Ramos,325173,1768009,10 +90195,Joanna,330115,156990,10 +90196,,319513,1268543,6 +90197,Vivien Warren,36335,97236,1 +90198,Policeman,46059,13524,10 +90199,Pete Robbins,31901,30428,1 +90200,Armida,158598,89127,0 +90201,Sam Fernando,147815,560056,3 +90202,Uncle Fyodor (voice),77762,86836,0 +90203,Jet Link / Cyborg 002 (voice),127544,89878,8 +90204,Col. Charles 'Duff' Graham (as Sir C. Aubrey Smith),52270,2438,6 +90205,,96106,147539,25 +90206,Helen,51601,22948,5 +90207,Peter Cabot,39779,123402,8 +90208,Nightclub waiter,43113,1483420,67 +90209,Beatrice in Paris,54898,28611,4 +90210,Lisbeth,82708,1828322,14 +90211,Flying Squad detective,35852,114837,11 +90212,Aschenputtel,266568,502397,1 +90213,Velečasni Grga,341559,1473624,9 +90214,Kate,134435,104411,3 +90215,Benjamín Espósito,25376,69310,0 +90216,Cherri (voice),27300,7404,2 +90217,"William, King of Sicily",58905,30203,20 +90218,Lucky,332286,105844,7 +90219,Principal Doppler,8457,17401,36 +90220,Cliff,227306,1394429,15 +90221,Granny,24154,91288,0 +90222,,1387,16863,5 +90223,Gloria,10761,20403,13 +90224,Seo Yeon-Hee,385261,1263930,3 +90225,Bon,40127,1331696,7 +90226,SEAL Captain Kenney (uncredited),193756,77109,46 +90227,Henry Simpson,108869,19217,7 +90228,Carol Gladstone,325133,14406,13 +90229,Marion,4974,5077,0 +90230,Korean Train Passenger,99861,1760882,50 +90231,George,92496,140235,7 +90232,Rambo,76097,231806,8 +90233,Search and Rescue Team Captain,375170,1649298,8 +90234,Richard (as Chandler Maness),188357,1169982,1 +90235,Werner da bambino,121888,1366239,9 +90236,Nudist,92496,1795184,29 +90237,Kid #2,72105,1502853,32 +90238,Claire,183832,19021,2 +90239,Fred Whitmarsh,98364,7301,3 +90240,Reporter,99909,974832,34 +90241,Police Officer,55825,152542,8 +90242,Kinsana,315837,1205489,32 +90243,Himself,41994,562653,2 +90244,Salah,16047,1147082,4 +90245,Detective Tanaka,134350,76951,8 +90246,Ambulancefører,356326,1874735,25 +90247,Marilyn,42168,69504,5 +90248,Luftkaptajn,56858,209387,14 +90249,Santos,227348,1282218,9 +90250,Johns Hopkins Nurse,424600,1106266,22 +90251,Rafik,9959,61012,14 +90252,,86985,1444616,16 +90253,Don Valerio,62713,105114,4 +90254,Jacobo Koller,36971,116586,0 +90255,Bill Evans,47745,89834,3 +90256,Mathilde Steiner,27095,96930,4 +90257,Policeman at Fire,99909,1010145,27 +90258,Shadow 4,270759,232824,5 +90259,Lord Charles Manners,26808,984,6 +90260,Gaulist (uncredited),22584,122008,11 +90261,Min-A,269494,1706959,12 +90262,Buzz,189,90553,25 +90263,Eddie,405621,239107,5 +90264,Roxane Dancer,1966,1651013,45 +90265,Romli,403605,1645600,7 +90266,Dr. Findlay,31985,7144,4 +90267,Dead Man,277355,1322309,7 +90268,Purko,214938,545062,0 +90269,'Bonzo',41312,89899,15 +90270,,134372,45423,2 +90271,Alien,68179,41345,6 +90272,Jim Craig,14292,25987,5 +90273,Margaret Tarryton,43419,95117,2 +90274,Intending Art Buyer,128900,68454,24 +90275,Background actor,52454,1630323,51 +90276,Ted Henley,257444,1284349,2 +90277,Dennis,134475,89107,1 +90278,Volunteer,1116,1896863,27 +90279,'Porky' Thomson,130717,5465,5 +90280,Ida Graber,45792,70696,0 +90281,Petty Officer 'Stokes' Wheatley,44536,9874,3 +90282,"Martina, figlia di Claudia",58011,1878439,14 +90283,Franklin,344906,949345,18 +90284,Walters,38417,120393,7 +90285,Mrs Parsons,204255,990064,13 +90286,Attorney Emanuel 'Manny' T. Dixon,26801,29579,10 +90287,Fred Temple,407448,512316,9 +90288,Strip Club Patron,186759,1505308,38 +90289,Karen,16015,202578,2 +90290,Inspector Burton,32577,8435,5 +90291,Throne Room Amazon,297762,1726321,61 +90292,Mann mit Toupet,10749,44393,5 +90293,Monk,4930,38597,13 +90294,Poppy (voice),136799,84223,0 +90295,Heavy,85442,1424575,27 +90296,Stormtrooper,330459,1400906,84 +90297,Jack's Eye,274857,73288,29 +90298,Joshua Rosenblum,167073,21292,25 +90299,Nara,178809,207713,8 +90300,Willem,2764,27831,2 +90301,Himself,15258,37043,54 +90302,Alice - Andrews' Maid,176627,97042,18 +90303,Baxter,13350,172529,2 +90304,Jim Murdock,26516,4343,4 +90305,Elsie Lacks,424600,1704674,33 +90306,Sandra Burns,59965,171941,9 +90307,Églantine Michalon,33360,39646,3 +90308,Giulia,378570,1373528,8 +90309,Skid,296025,116474,3 +90310,Mark,311301,223477,3 +90311,Walnut,85230,1244429,6 +90312,Young Michael,24150,96047,3 +90313,Mrs. Pampinelli,177902,131234,2 +90314,"Caesar Borgia, journalist, man eater",65131,1190345,5 +90315,,48882,99263,6 +90316,Det Bailey,172396,69098,2 +90317,Bastian,362180,567332,1 +90318,Cecilia Skoglund,128946,123464,11 +90319,El Viudo Xius,163706,5964,5 +90320,Governor,134475,244289,7 +90321,Twirling Stevie,33343,1188789,21 +90322,Jose Alejandrino,359105,231981,17 +90323,Dr. Wendy H. Oliver,58903,1428661,4 +90324,Teacher at Terry's Lecture,179066,985839,40 +90325,Leland Drum,42701,544143,7 +90326,Factory Manager,8071,11223,2 +90327,Pac-Man Victim,257344,32907,27 +90328,Cowboy Bob,286532,1042516,19 +90329,Christine,72140,157020,7 +90330,Terry Melcher,381737,9186,11 +90331,Winston,36421,2456,2 +90332,Cale,157354,1445528,11 +90333,Mandarin Party Girl #1,68721,1323717,63 +90334,Murphy,987,1466,7 +90335,Doe,43754,147,0 +90336,Philip Short,18690,19440,8 +90337,Fritjof,87654,226245,11 +90338,Cynth,11798,70518,2 +90339,Sam Crew,80193,128324,1 +90340,Angela (voice),12525,9925,6 +90341,Tamayo Satonaka,382170,552553,8 +90342,Dr. Robert Morgan,21159,1905,0 +90343,,378503,1611154,3 +90344,In,64786,1096173,4 +90345,Herself,448449,1107729,6 +90346,Jenna,311093,78197,0 +90347,Charlie's Mother,44945,222247,17 +90348,Mlle Poilloux,13739,64550,2 +90349,Polícia Federal 1,70666,1863910,54 +90350,Bartender / Powder Dan,333484,1391129,36 +90351,Joe,194393,30982,5 +90352,Peter Pan,866,9015,12 +90353,Barry,258509,202958,21 +90354,Biyouin no kyaku,18148,1269159,16 +90355,Dom,16996,1239467,15 +90356,Maybelle's Store Dancer,2976,1039612,75 +90357,Fireman,16182,79939,23 +90358,Detective Fowler,8292,2694,5 +90359,Flower Delivery Boy on Bus,18651,986341,79 +90360,Soldier,24094,97458,19 +90361,Eva,4982,40376,4 +90362,Ivan,317557,1683152,8 +90363,Frank Harlan,14881,3087,1 +90364,Zach Sands,46227,68494,1 +90365,Nikita Sergeyevich,77534,82796,5 +90366,Heikki,49940,57014,5 +90367,Prison Trustee,9899,21731,6 +90368,Himself,15258,2157,93 +90369,Tung,18741,1173203,6 +90370,General Rilmen,316042,47640,3 +90371,Blue Kennedy,89551,550781,4 +90372,Husband Fish (Stan) (voice),127380,19278,11 +90373,Dr. Jack Penix O.B. Gyn (voice),51036,1879509,48 +90374,Autumn,316268,1410541,7 +90375,Inspector Afonja,325803,1428020,4 +90376,Dead Civilian (uncredited),44943,1205887,43 +90377,,662,1167688,12 +90378,William Rose Bailey (uncredited),9471,62,21 +90379,Bruce Banner,13805,1074186,14 +90380,Heather,41171,1313348,41 +90381,Harold Stuart,45556,1127867,9 +90382,Tuey Stites,38901,2841,1 +90383,,293122,1372330,3 +90384,Prof. Horatio Kellgore,74924,2771,4 +90385,Sam,44682,131251,0 +90386,,88273,228975,14 +90387,,4146,35003,8 +90388,Pepe Mora,77650,582419,9 +90389,"španělský generál, velitel nepřátelského vojska",41213,235665,8 +90390,Suzie Cream Puff,28170,1861050,5 +90391,Claudio,49712,1177374,23 +90392,Businessman,57781,235056,4 +90393,Torsten,48791,1333,12 +90394,Oscar,73565,1755484,5 +90395,Giren Zabi,39230,122481,9 +90396,Estate Agent's Assistant (uncredited),121674,1878815,40 +90397,Party Guest,43811,1216356,48 +90398,Alberich,10659,62296,3 +90399,Deaf Date,412363,1769119,15 +90400,Fraternity Pledge,33343,1188784,15 +90401,Madre de Karadima,337101,127249,6 +90402,Tequila Goon 3 (uncredited),339403,1310385,51 +90403,Broker,43811,1144743,50 +90404,Candy,52736,65905,9 +90405,Christie Love,252144,88171,0 +90406,"Pat Nicholson, Frankie's Lieutenant",1662,49832,6 +90407,Counselor,35626,1636414,18 +90408,Lieutenant's Assistant 2,143169,1118630,4 +90409,Shugoshin/Guardian Diety (voices),125513,616,12 +90410,Juan,378087,228878,2 +90411,Russian Cab Driver,4413,1491994,37 +90412,Roland,48778,233531,7 +90413,Diner Patron (uncredited),264644,1510502,24 +90414,Troye King Jones,447758,550549,8 +90415,Griff,339403,19498,7 +90416,Le chef d'orchestre,352025,1745551,12 +90417,Tomar-Re (voice),17445,14101,4 +90418,Judge,22408,30512,4 +90419,Sick Child,1116,1896881,49 +90420,Sky,13561,1315940,7 +90421,Stella Parton,426670,1548301,11 +90422,Teenager Fiona,45649,61555,11 +90423,Nathaniel / Prometheus 2,228066,25451,10 +90424,Officer at lock-up,11636,1166566,22 +90425,Yvonne Voss,10694,52300,10 +90426,Old Man Cadwell,11547,951120,10 +90427,Dr. Katz,19181,1097800,15 +90428,Talena,31131,928,1 +90429,Lilly,34598,74375,1 +90430,Creature,224944,1642138,13 +90431,Lt. Brock,71140,8349,2 +90432,Actor in Show,132928,133277,26 +90433,Himself,91950,84959,0 +90434,Pulu,63938,72481,2 +90435,"Seaman Rutherford Davis Pratt, aka 'The Professor'",257081,3339,10 +90436,Bobby G,393659,1366840,5 +90437,Supervisor Molina,45191,1486446,4 +90438,Carver,103731,167564,9 +90439,Daniece,354979,212833,9 +90440,Phyllis,11364,11902,8 +90441,Teenager (voice),48466,222122,13 +90442,Farmer Ben Kenney (uncredited),52440,131612,39 +90443,Ryan Davidson,360592,1512189,15 +90444,Kathy Morgan,21159,91816,5 +90445,Crying Patient,10330,1346157,25 +90446,Darling,339403,1222992,5 +90447,ladro in vespa (episodio L'ascensore),68882,1046228,4 +90448,Mala's Father,81313,82313,4 +90449,Tattoo (voice),328111,73476,13 +90450,Kate,75363,1436935,14 +90451,Rickie,23966,79795,0 +90452,Funcionario Vigilancia 2,33273,1417466,21 +90453,Head Nurse,12912,1225991,16 +90454,Kissing girl,33481,110787,37 +90455,Barry Lutz,19827,42157,8 +90456,Willie Donovan,52051,97181,2 +90457,Marian Hardy,43808,90075,3 +90458,Fritz Vogel's Assistant,54166,39142,5 +90459,Stavros,37590,1074097,0 +90460,Typhoon,32526,1176951,15 +90461,Herself,8847,56084,4 +90462,Bülent Ecevit,52150,145398,0 +90463,Bright Eyes,27114,1271017,17 +90464,Malucia (Voice),285733,74360,4 +90465,Curtis,122677,1427881,14 +90466,Maccus,58,191751,17 +90467,Carla,14008,197335,7 +90468,Bellboy,52437,14872,33 +90469,Dan Walters - Bartender (uncredited),59882,30530,8 +90470,Marco Echinard,37645,1580289,34 +90471,Lino Carruzzi,3701,33862,2 +90472,La chanteuse,27053,1373929,9 +90473,General Pinochet,318781,1694302,28 +90474,Joyce,24801,113932,12 +90475,"Lui-même - 80 ans, un fermier",8930,1192635,1 +90476,Hacer,4887,40020,3 +90477,Fenella,86828,34901,4 +90478,Religious Woman,199575,1438925,45 +90479,Woman on TV,99361,137853,9 +90480,Blondynka - wizualizacja komputera pokładowego,91691,1137900,13 +90481,'Plague',33613,87727,19 +90482,Counselor in Unemployment Office,159469,138471,12 +90483,Blair's Aide,1165,93848,19 +90484,,31418,143745,8 +90485,Jay Hamilton,11358,2203,2 +90486,Hafize Ana,31408,97274,1 +90487,Townsman (uncredited),14615,113491,85 +90488,Okonomisjef,70670,1093942,15 +90489,Emma,351065,17486,1 +90490,Farmer's Wife,13849,56471,12 +90491,Ezra,16997,1954,1 +90492,Buddy Stafford,10744,7004,4 +90493,Franny,93935,218798,5 +90494,No. II,110552,1267619,2 +90495,Fabian Mann,47863,206486,9 +90496,Sister Elena,58790,1504057,7 +90497,Jeremy,54893,1000718,6 +90498,Rosa Maria,9815,7430,4 +90499,Torill,13630,1017282,6 +90500,Atsuko Kurano,392882,1257215,2 +90501,Leung Pok To,25645,1341,1 +90502,Theresa,356842,212815,3 +90503,Union Captain,109491,1495343,21 +90504,Dasher,26809,121830,8 +90505,Customer,18072,54808,16 +90506,Rechtsanwalt,122487,1019911,13 +90507,,265314,544442,3 +90508,Tiny Duffy,1717,4691,3 +90509,Herself,105583,1123118,15 +90510,Nikki,347258,1521611,5 +90511,Himself,144680,70851,7 +90512,Prince Harshwardhan,192675,35747,1 +90513,Le Comte,62675,1433385,17 +90514,Ashley Bennett,351211,1618066,3 +90515,Air Force MP,209112,1395050,74 +90516,Inga Sandberg,204384,680,3 +90517,Raphael / Nightwatcher (voice),1273,19508,10 +90518,Dae-jun,67025,25002,0 +90519,Judge,42325,141067,15 +90520,Wade,308024,1699478,6 +90521,Morty,2998,225930,4 +90522,Mrs. Yauch,335970,1401166,89 +90523,Arthur Stace,283424,1265282,1 +90524,Dayakka Littner,20986,81866,8 +90525,Sean Casey,73873,20999,9 +90526,Nazi Soldier,400465,126125,3 +90527,Molly Allen,1976,87826,12 +90528,Len Fenerman,7980,11486,5 +90529,Mendou,43967,54690,2 +90530,Lori,274479,13023,51 +90531,Mary,381032,52956,2 +90532,Micajah Autry,10733,156165,11 +90533,Laxman,20507,86244,4 +90534,Headmaster,86828,1926,6 +90535,Himself,422548,216126,1 +90536,Carney Boy,6972,55903,8 +90537,Dwight,62039,2048,0 +90538,Julie,360284,89462,3 +90539,,57889,86875,8 +90540,Rosse,225728,1374534,9 +90541,Manuel Bernal,359105,227987,16 +90542,Sophie Clutterbuck,252746,9909,3 +90543,Peter Jensen,266285,52398,4 +90544,Mrs. Langran,236324,19222,6 +90545,Bradley Lake,13169,15009,3 +90546,The Farmer,379441,12538,4 +90547,Franchette,14615,128494,17 +90548,Alice,72251,1207046,10 +90549,Miller,28131,3091,6 +90550,Elaine,85673,105077,1 +90551,Eva,300601,77122,2 +90552,Pachaimuthu,148284,309241,7 +90553,Tina Harwood,13374,2109,4 +90554,E.R. Nurse,32082,8893,12 +90555,Lucan,313074,1402671,7 +90556,Mavis,239566,1457001,28 +90557,Nurse Mary Lamont,153162,41245,2 +90558,Jimmy Kellgore,74924,117674,11 +90559,Bruce 2,306952,1391765,4 +90560,Judge Soratie,293085,1112524,2 +90561,Jagodinka Simonović,148034,1316032,5 +90562,Baxter Clarke,85442,14011,3 +90563,Sara,195796,27004,2 +90564,Mehmet Bey,81708,93389,0 +90565,The Archivist,24458,4935,0 +90566,Dan,18998,23874,12 +90567,Božo,382873,1581225,5 +90568,Francesca,43648,73488,4 +90569,Mo,20432,947171,6 +90570,Porter,156,3848,14 +90571,Pernille,356326,135753,1 +90572,Derek the Bank Clerk,13777,29349,9 +90573,Willard Stiles,42532,52374,0 +90574,Philario's Playmate,240745,1660684,19 +90575,Harry 'Sweetbread' Crane,28553,1636212,5 +90576,Jonny,9993,61632,7 +90577,Party Girl (uncredited),88005,1528109,36 +90578,Staff Sergeant Malcolm,263855,6066,6 +90579,Drizelda (voice),287233,14723,2 +90580,Marilyn,40208,1680508,7 +90581,Grace,68360,19117,0 +90582,Agent Hinton,177566,29068,0 +90583,Camilla,15440,87882,1 +90584,Doña Estrella,353713,231885,1 +90585,Crane (voice),9502,212,5 +90586,Paige,24886,576255,2 +90587,Annie Laurie Starr,18671,86001,0 +90588,Anna,3638,33395,15 +90589,Fight Promoter (uncredited),28000,117029,80 +90590,Hotel Manager (uncredited),936,590444,17 +90591,Elizabeth 'Betsy' Braddock / Psylocke,246655,81364,15 +90592,Λίζα Παπασταύρου,297560,1259971,1 +90593,Art's Corner Man,15810,933018,9 +90594,Rita Cohen,326285,1181426,7 +90595,Charlie,24578,117135,11 +90596,Mrs. Jowitt,106573,1197457,11 +90597,Sam,141643,1115140,0 +90598,British Soldier,1116,1896892,68 +90599,Mendoza,96133,44987,1 +90600,Police Chief Auditionee / Himself,430826,1891514,35 +90601,,127105,29950,2 +90602,Adrian,410118,105563,2 +90603,Little Girl,36960,169780,14 +90604,Dan,329010,1215046,2 +90605,Freddy Matthews,31899,19406,1 +90606,,327231,1431541,5 +90607,The killer,28668,30686,2 +90608,Greg Heffley,82650,89819,0 +90609,Auditionee,2976,1752727,91 +90610,Himself,217925,1133834,6 +90611,Newspaper reporter,365222,1317523,11 +90612,Ruth,250535,33450,5 +90613,Abercrombie Boy,18826,53807,14 +90614,Edith May,354287,17069,25 +90615,Reinkeová,18352,1537582,6 +90616,Spider-Man,58447,1732770,4 +90617,Cleopatra Pepperday,43688,544971,5 +90618,Cpl. Fujimoto,43407,18613,3 +90619,Mr. Sakagami (Teacher),79382,66155,9 +90620,Skutch Sanders,132608,127670,9 +90621,Eric Manchester,16378,383,4 +90622,Ko Kyung-Rim,367882,1538985,3 +90623,Silhouettist,43809,9084,22 +90624,Charles,253077,1214845,0 +90625,Jenna Rink,10096,9278,0 +90626,Himself,84154,119589,0 +90627,,8014,1014998,10 +90628,Helga,206390,1188861,0 +90629,Hazel Motes,42179,1370,0 +90630,American Native Indian,240832,1196388,53 +90631,,111398,1060036,16 +90632,Yong Kim,15577,65225,9 +90633,Luc,52999,33161,2 +90634,Sunshine,323679,123513,6 +90635,Reggie,356486,1522127,2 +90636,Jessica,97630,49971,9 +90637,"Jeremie, age 8",18897,1890249,12 +90638,Buddy - Seven-Up,32080,6355,0 +90639,Ilyas,371741,20671,17 +90640,Urgentologue,148327,1294274,5 +90641,Funeral Attendent,379959,1604098,11 +90642,Mrs. Hadfield,32235,4174,2 +90643,L'amant,72898,17578,7 +90644,Tio,134397,157121,6 +90645,Grandec,3051,1847208,9 +90646,,121530,1433495,14 +90647,Kalle Fransson,27599,81214,8 +90648,Frankie,1482,36189,2 +90649,Lamar Sanders,17911,2472,2 +90650,Jessie / Snivy,88557,111770,2 +90651,Dr. Brandon Willis,335872,63859,9 +90652,François,54832,24540,6 +90653,Headmaster,152861,584933,5 +90654,Woman at Pool,11161,3141,11 +90655,Schneeweißchen,13305,77430,0 +90656,Mrs. Atkinson,265741,157986,7 +90657,Ted,154537,203048,13 +90658,,47448,1310024,21 +90659,Colonel Derricks,1904,15854,15 +90660,Maritza,300187,142115,7 +90661,Captain of Detectives,25738,95273,6 +90662,Frank Gilbreth,33839,20125,0 +90663,Genya Ravan,111479,34408,4 +90664,Sarah,334890,1695152,17 +90665,Sara,337549,183048,5 +90666,Ian Wright,18557,33192,0 +90667,Mrs. Beauclere (uncredited),22584,120269,30 +90668,Thug (uncredited),38654,129347,19 +90669,Petrov deda,148034,545700,3 +90670,Church Soloist,55725,1829344,20 +90671,Chris,76097,55183,2 +90672,,253395,11263,6 +90673,Dr. Jubal Harrington,85640,2435,7 +90674,Japanese Olympic Runner,76493,1264686,13 +90675,Barry Rogers,93676,32747,4 +90676,Ambrosinus,9703,2282,1 +90677,Samuel,382591,78423,0 +90678,Sheriff Morton,86363,14579,2 +90679,Principal,64678,56871,8 +90680,Napoleon,62764,54476,5 +90681,Daniel,236324,427978,3 +90682,Audience Member (uncredited),244786,81380,51 +90683,Donatello,98566,15034,7 +90684,Marc,4613,38583,6 +90685,Chuck Evans,119010,587892,0 +90686,Security Guard (uncredited),331313,1383478,46 +90687,Gene Hufford,56669,10194,7 +90688,Police Sgt. Shipley,112558,14732,3 +90689,Daniel,84823,1653,0 +90690,,77057,1121628,21 +90691,Paco,17978,12411,14 +90692,Elaine Black,64685,204651,18 +90693,Eva Braun,430058,1875586,7 +90694,Dr. Lance Pryce,35689,8986,5 +90695,Sandra Rose,382951,1319519,7 +90696,Tommy,20357,2478,7 +90697,Glafira,190341,1271222,7 +90698,Prostitute,397717,1620982,19 +90699,Caidy,266082,1366486,13 +90700,Zoya,47851,544512,2 +90701,Detective Lavastic,18472,52705,5 +90702,Woman in Airport (aka Matron),19918,963720,18 +90703,German Sergeant,19996,85424,14 +90704,Mrs. Masters,34651,20369,7 +90705,Odilia,61217,1054038,13 +90706,Aurora,16659,127141,13 +90707,Cary McCarthy,37686,456066,4 +90708,Giovane medico,42579,128252,9 +90709,Akseli Koskela,41142,16778,0 +90710,Ujala,45533,133177,3 +90711,Dr. Adler,46695,1185417,7 +90712,,414827,1676371,3 +90713,Turaga Vakama (voice),19325,74367,6 +90714,Chuck Jefferson,52991,58423,6 +90715,Agent Caldwell's 'Deputy',298,1212249,19 +90716,"Gustavo, marito di Noce",82080,51739,10 +90717,Hank the Sailor,198600,130334,8 +90718,Justice Montague,104067,589728,1 +90719,Zia di Frengo,161545,228756,17 +90720,Wesley,34672,44243,2 +90721,Outdoor Store Clerk,228970,1495090,44 +90722,Henrik,52784,114580,4 +90723,Duchess of Belmont,79113,1178620,14 +90724,Snoopy / Woodstock (voice--archive),227973,94011,2 +90725,Mr. Bahiti,48770,195599,2 +90726,Soldier 5,52034,237177,11 +90727,Police officer,11930,1154239,10 +90728,Blackmailer,185154,1507241,6 +90729,Mr. Spratt,64568,153093,5 +90730,Jerry,2989,29372,2 +90731,Kanonkulan,57548,74699,1 +90732,Gigi,417820,1237959,6 +90733,Hotel Manager,325555,934092,8 +90734,Esther Shapiro,187219,1087584,5 +90735,Son complice,55853,20082,19 +90736,Lola Dean,38461,104155,8 +90737,backenbärtiger Assistent,277968,1898507,43 +90738,Branson,118549,56924,7 +90739,Ms. Darbus,11887,19262,12 +90740,Reporter,16232,298410,10 +90741,Prison Guard,8194,17194,12 +90742,Sir John Falstaff,106851,14371,2 +90743,Sammy Stinger,12540,171827,11 +90744,Rui,37050,87337,0 +90745,,172008,1182595,7 +90746,Captain Ackerboom,12631,36306,9 +90747,Lulu,121052,95633,5 +90748,Man at Race Track,118889,265594,35 +90749,Thin Man,9471,1064,11 +90750,Mère de Marc,85735,24475,8 +90751,Rich Man,27276,68704,61 +90752,Yard Sale Attendee,91679,1782577,16 +90753,,61217,27279,26 +90754,Father Joe,28564,78850,3 +90755,Secondo,31542,1757133,15 +90756,Coffee Computer Guy,8457,54720,40 +90757,Alan,19235,170432,11 +90758,JT,44732,88675,2 +90759,Narrator,59572,78157,2 +90760,Marlin Mayner,86472,76238,1 +90761,,13506,106595,15 +90762,ArabicRecon Interpreter,424488,1634060,40 +90763,Spivak,24731,1187262,13 +90764,Frank Newley,83079,13399,4 +90765,Mr. Cribbage,66125,85350,10 +90766,Alejandro,273481,1121,1 +90767,Pool Guy,213681,1771559,33 +90768,Paula Datzman-Mead,13090,158784,10 +90769,,43751,97666,6 +90770,Rolf,30126,77017,7 +90771,Mrs. Deegan,104232,33850,3 +90772,,403867,587090,5 +90773,Himself,324173,85199,16 +90774,Stylist,16428,6944,6 +90775,Tønder,171648,1154152,3 +90776,Ursula,340684,973497,3 +90777,Trish,345054,142604,5 +90778,Captain Hector Barbossa,285,118,6 +90779,Faber,20174,85765,2 +90780,Yves Saint Laurent en 1989,221667,32058,7 +90781,Ann,43155,13577,1 +90782,juvenile probation counselor,128111,1340294,6 +90783,Isabel Allende Bussi,2692,23330,10 +90784,Physician,154575,1287141,4 +90785,Dante Mendoza,26861,5723,0 +90786,le guérisseur,70119,1814102,8 +90787,Mrs. Hooten,1599,5376,9 +90788,Prof. Dr. Petra Paul,30508,680,2 +90789,Bella Kovac,199155,1010222,9 +90790,Close,179288,60187,8 +90791,Brett Butler,369524,162641,15 +90792,Ethan,358353,110743,3 +90793,Melissa,29798,104912,6 +90794,Ben Reynolds,14552,4741,0 +90795,Le père de Charlotte,53179,126232,7 +90796,PFC Eugene Sledge,189197,4787,1 +90797,Park cleaner,77060,96519,9 +90798,Arthur (as Gary Harper),91259,140086,6 +90799,Sun Jian F.G. sqad member,62071,548617,13 +90800,Sophie,220488,1339,0 +90801,Anja Månsdottir,21041,90604,7 +90802,Debbie,117509,1477411,8 +90803,Michael Kenny,51571,89813,6 +90804,Papa Mousekewitz (voice),27653,3160,3 +90805,Medical Examiner,47794,198716,15 +90806,Jasmine,244801,1280062,2 +90807,Assassin,56095,35452,4 +90808,Seeker Waverley,72710,92058,18 +90809,Fox (voice),91673,1082027,4 +90810,Ray Kovich,46227,152820,3 +90811,Leire,58587,67052,5 +90812,Ma Kelly,288521,9090,3 +90813,Sid Shecker,94225,93664,6 +90814,Susan Gatley,21619,56152,1 +90815,Diamond Joe,43473,1433909,2 +90816,Jaap,73215,934258,5 +90817,Robert's Lawyer,18530,175206,9 +90818,Nurse,7942,209990,15 +90819,,102197,1040420,13 +90820,Guide (voice),10527,31549,27 +90821,Jonge Valentijn,47231,138208,5 +90822,Le serveur du restaurant,10268,64552,19 +90823,Eliane,190853,1033671,5 +90824,,138522,95899,0 +90825,Lucas Bannerman,295656,1081465,5 +90826,David Hunter,224251,20211,3 +90827,Narrator,14087,547992,9 +90828,,182799,15319,4 +90829,Keith,86252,1090739,3 +90830,Jim,424488,883,4 +90831,,78450,1559780,12 +90832,Crusader,289720,1358973,13 +90833,Bob Connors,264080,11077,15 +90834,Mike Swann,263855,47879,7 +90835,Col. Weybright,61049,93625,7 +90836,,327935,571439,7 +90837,Mrs. Beyman,5237,928730,17 +90838,Kenji-X,35110,113743,11 +90839,Huoyi's Man,217923,1436292,48 +90840,Professor Lynch,291336,1362172,5 +90841,Colt Steelcase,302960,34982,10 +90842,Control Room Technician,365942,1670754,31 +90843,Aphrodite Girl,32657,140114,18 +90844,Society Vampire #2,346672,1905793,32 +90845,Galliette,52437,337275,16 +90846,Hattori,135335,33135,9 +90847,Jack Anstruder,33923,43821,6 +90848,Randall,76203,1344343,25 +90849,Don Gallico / Gallico the Great,28363,1905,0 +90850,Burned Husband,46695,1185382,14 +90851,Madame Kettisha,37992,21878,10 +90852,Security Officer,227156,1412943,20 +90853,Dez,425591,530618,3 +90854,Jesus Christ,215797,1200426,0 +90855,Lorraine Lherbert,82501,324200,10 +90856,Odin,284053,4173,8 +90857,Nikolai 'Kolya' Rodchenko,16082,79952,0 +90858,Herself,413782,108020,18 +90859,Maybelle's Store Dancer,2976,110743,76 +90860,Ładny,38875,280880,3 +90861,"Captain Hugh ""Bulldog"" Drummond",38433,102687,1 +90862,Cowboy hat,408381,277634,9 +90863,Minor Role,43811,33972,81 +90864,Lawyer,243940,1337712,8 +90865,Mrs. Dhillon,396643,86555,5 +90866,Organ Grinder (uncredited),77412,1016595,9 +90867,Tessa,149910,1271474,31 +90868,Eddie Richards,46494,136401,1 +90869,Maj. Abraham Falconer,45522,13784,0 +90870,Dr. Twining,74437,99329,5 +90871,Julius,40221,84878,3 +90872,Agent,381518,17477,7 +90873,Joe,144271,1120638,0 +90874,Louise Germont,63304,1002666,4 +90875,Young Sonny Lacks,424600,1704662,20 +90876,JoJo (voice),27300,30613,6 +90877,Madison Penrose,53999,78430,6 +90878,El Jefe,102629,1108571,13 +90879,Delivery Boy,335837,1497340,12 +90880,German Captain,411442,1379940,6 +90881,Capt. Larson,31280,109848,2 +90882,Mandarin Guard (as Paul O'Connor),68721,1309902,59 +90883,Robert Irwin,88794,52419,1 +90884,Jack Flange,16066,41297,0 +90885,Herself,28026,1300227,9 +90886,Policeman,43113,552184,76 +90887,Student,36691,115335,10 +90888,The Pioneer,336029,1550587,13 +90889,Mr. Yam,67342,238412,4 +90890,Emma Morley,51828,1813,0 +90891,Janis Bellacrest,80720,146505,4 +90892,Himself,13477,35806,13 +90893,Bobby Todd,19809,206,0 +90894,Melanie,343173,1196822,1 +90895,Bernie,99909,89990,6 +90896,Major Benjamin,107146,1001266,6 +90897,Lawton,66659,107320,5 +90898,Diane Powell,9785,4726,2 +90899,Nightclub Girl,49853,1648780,22 +90900,Ellis Isle Official,137321,77093,15 +90901,Tina,211158,583336,6 +90902,Superintendent Hwang,369883,78578,13 +90903,Frederick Holcomb,89086,29600,10 +90904,Tien Chian,172972,57609,4 +90905,Nonne,269258,1197664,24 +90906,Captain Kholin,31442,119567,1 +90907,Nobi Namekawa,409550,1018945,2 +90908,Lauren,32298,80385,17 +90909,Gretchen,348631,58393,10 +90910,Sheriff,40146,103843,1 +90911,David Sanchez,93511,77350,10 +90912,Russel Allen 'Phil' Phillips,227306,93210,1 +90913,Jones,148451,1127650,5 +90914,Chad,24123,119478,14 +90915,Charlotte Warkins,108869,87039,5 +90916,Classmate (uncredited),25132,957632,15 +90917,Capitaine Malek Ziani,395763,89624,6 +90918,Dr. Ellison,387399,5589,5 +90919,Lady at Launch,62143,1376722,23 +90920,Pätkä,61070,232310,1 +90921,Noah,10063,57686,4 +90922,Gen. Tostada,48202,103961,7 +90923,,55720,77887,11 +90924,Susan McMartin,15807,89528,13 +90925,Ben,22447,1687930,19 +90926,Weed,35626,21402,7 +90927,Snow White,30126,105731,4 +90928,Mayor Clarence Apple,146970,1008489,8 +90929,zio Eugenio,371942,1446843,6 +90930,Captain Ross,31984,78744,8 +90931,Persian,1271,207881,31 +90932,Maharaja Step-Brother Devaan,66247,237697,3 +90933,The Expert,369033,55270,12 +90934,Freddie,17236,51533,4 +90935,Amar Kamil,46943,9831,1 +90936,Joe Sikora,18040,82631,4 +90937,Mrs. Davis,68721,46814,11 +90938,Anatolii Winters,245169,549533,7 +90939,Colonel Hakim,5183,13843,9 +90940,The Tall Thug,13792,59116,0 +90941,Drunk Frat Dude,2179,3492,17 +90942,Lena,361146,1890515,3 +90943,DI McMillan,282963,47933,5 +90944,Obélix (voice),9385,57540,2 +90945,Brooke Feinstone,9568,58042,1 +90946,Chu Chu,32654,99691,10 +90947,Alcatraz Warden,229638,96721,10 +90948,Avocat,41277,1050988,40 +90949,"Odile, Pierre's Father",67509,37764,4 +90950,Dr. Friedhelm Simon,130233,5860,9 +90951,Casino Manager,14669,1574232,13 +90952,Asmodeus,422906,224964,9 +90953,Mr. Mysterio / Woodenleg Wally (voice),13355,198,0 +90954,Al Jardine,271714,1091795,10 +90955,Leung Hoi Lam,19528,1615889,5 +90956,The Colonel,245692,143667,6 +90957,Chick,7288,1736,8 +90958,Phillie,37978,24264,0 +90959,Robert Bessent,50590,103833,6 +90960,Polizist Richie,290911,18734,6 +90961,Vendor,188161,210154,25 +90962,Ricky,107430,113936,3 +90963,The Butcher,339403,35040,10 +90964,Alex's Girl,102362,1272976,19 +90965,Karen,11547,20492,1 +90966,Photography Teacher,8457,83600,30 +90967,Batwoman,31258,30984,0 +90968,Lisa,59744,37366,0 +90969,Medic Endo,1251,33523,10 +90970,Hulk,187596,221945,13 +90971,Steve (uncredited),48627,30115,16 +90972,Simon Grombeck,9639,43170,2 +90973,Rex (voice),77887,12900,6 +90974,Paramedic #1,293863,1381542,31 +90975,Ray Young,108391,21105,3 +90976,Capt. Blakely,10178,89525,10 +90977,Will Davis,186759,996701,0 +90978,Ellen Frankenthaler,48609,120412,4 +90979,,205864,1393661,3 +90980,Dean,9785,52718,8 +90981,Vuoristoneuvos Taneli Tuura,62900,116162,2 +90982,Shaun,747,11108,0 +90983,John McFarland,1807,19197,2 +90984,Jennifer Peters,13569,42705,1 +90985,Linda,13920,26513,4 +90986,Lt. Williams - Helicopter Pilot,38654,54,7 +90987,"Loredana, sorella di Giovanni",56804,1865131,16 +90988,French Official,176627,1175664,14 +90989,Nurse,59965,1669570,23 +90990,"Федя Ермаков, «Косой»",20871,1190224,2 +90991,Himself,27637,587452,26 +90992,Riitta Feirikki-Hammarberg,32099,108854,6 +90993,Reporter,31984,1193048,13 +90994,Dev Narayan,90634,86784,5 +90995,John MacCormick,12407,18023,0 +90996,Unlikely Vagrant (uncredited),48838,176191,15 +90997,Monika Åström,15179,1264127,7 +90998,Special Appearance,308165,78245,6 +90999,,235450,1270743,0 +91000,Talking Statue #1,46169,135256,8 +91001,Björnson,128900,935784,21 +91002,Party Guest (uncredited),93116,42545,12 +91003,Peter,97051,60966,11 +91004,Eric,272892,928532,1 +91005,Liz,77930,1476058,21 +91006,Melquiades Estrada,8053,36634,5 +91007,Glavonja,33611,38123,0 +91008,Mrs. Baker,291866,1681774,12 +91009,Mrs. Glatt,336890,115592,18 +91010,Wild Man,199575,82607,13 +91011,Pianist,46773,1090825,21 +91012,Vivien Thomas,20544,4239,1 +91013,"Mathilde, la rousse",63717,40262,3 +91014,Al Lewis,119694,1243,0 +91015,Table Occupant,39345,101850,17 +91016,Mordred,274857,1156240,23 +91017,Macon Ravenwood,109491,16940,2 +91018,Maid of Honor,137093,93224,11 +91019,Limehouse Polly,111302,21878,3 +91020,Mrs. Cromwell,86360,81941,4 +91021,,19621,1381182,21 +91022,Joe King,301348,589761,12 +91023,Tiny Tim,229056,95272,5 +91024,M Lescuyer,26810,82288,16 +91025,Tse,49199,553201,6 +91026,,74674,1445128,30 +91027,Little John,71066,8729,4 +91028,Tabitha,290825,10871,7 +91029,Minor Role,43833,95027,25 +91030,Dr. Akunomiya,85656,13283,0 +91031,Ada Marshall,43250,1578223,15 +91032,René (bébé),85883,1293918,15 +91033,,11391,236987,16 +91034,Mr. McLeish,203321,218186,12 +91035,Lance,308639,1317566,17 +91036,Kiku,20530,131017,8 +91037,Larry Burgess Sr.,7233,9657,4 +91038,Mike Sullivan - Hospital Cafe Owner,153162,30240,31 +91039,Manicurist,29100,12429,11 +91040,Dana,24050,70767,6 +91041,Cheung Po-Sai,107682,592329,2 +91042,Minister,39779,123404,12 +91043,,329550,1592523,52 +91044,,110001,1696398,41 +91045,Clifford Genet,153169,33179,9 +91046,McConkie,294690,63501,10 +91047,Chang,73532,569370,5 +91048,Redakteur,65002,36749,6 +91049,Kawajiri,22899,244558,2 +91050,Female Newscaster,72105,1502864,46 +91051,H.R. Haldeman,301348,15455,6 +91052,Max McGrath,286567,997369,0 +91053,Killer,10294,8549,3 +91054,Ionita,319993,1427391,2 +91055,Cedar Rapids Skater,33570,110912,7 +91056,Parthenon Janitor,32657,1678625,64 +91057,Convenience Store Robber,209112,1334323,97 +91058,Lheureux,45184,137006,6 +91059,Ben,72419,49021,3 +91060,Receptionist,244539,99100,9 +91061,"Joan Forrester,",3937,33741,4 +91062,Frank Wagstaff,13912,30014,3 +91063,'Crepe Hanger' Burke,72638,74875,6 +91064,,91715,13361,3 +91065,Obkircherwirtin,11122,1355113,6 +91066,"James ""Rhodey"" Rhodes / War Machine (voice)",169934,216448,4 +91067,Michael Waechter,7353,10859,4 +91068,June,277687,1106411,0 +91069,Vic Ajax,21627,163774,6 +91070,Cindy Timmons,55725,15091,3 +91071,Himself,201419,1536684,2 +91072,Wanda,61904,1358677,6 +91073,Rev. Rich,83015,11136,18 +91074,Spike Runner,227306,1394442,44 +91075,Sally Zalinsky,61168,3052,5 +91076,Hank,256740,52885,9 +91077,Rogério,48962,1784577,15 +91078,Andrea,41427,126439,0 +91079,Office Boy,31899,1422101,20 +91080,Philip,30973,107407,13 +91081,Julius Caesar,31561,4113,0 +91082,Second Commuter,37923,106772,13 +91083,Sean Reynolds,308269,1447885,7 +91084,Hite,37926,119118,3 +91085,Johann - Her Son,95169,1064925,2 +91086,Spectator,279096,1386309,30 +91087,Nina Hellmich,75969,20259,5 +91088,Marco,64805,23669,1 +91089,Commander MacDonald,19757,548112,4 +91090,Mrs. Leigh,300769,1015322,6 +91091,Doctor Orsi,39957,955065,4 +91092,Club Woman,24469,1579241,20 +91093,Zacwilichowski,31273,107869,14 +91094,Mildred,145244,97929,7 +91095,Joanna Baker,28851,102186,5 +91096,Sarah McMann,118490,1541357,2 +91097,Moon,82469,64453,0 +91098,Gunter,9352,53348,17 +91099,,352197,7482,10 +91100,Barry Sherman,26014,16165,3 +91101,Alex,18442,43928,4 +91102,Charles Stewart Calvin,19661,77114,6 +91103,Zofia Gec,329550,591240,46 +91104,Brad,336666,1837169,9 +91105,Duty Officer,13542,1071690,8 +91106,Linda (voice),172385,41087,2 +91107,Radu,6417,49671,0 +91108,Bobby Tobin,50942,55843,12 +91109,Chef,314635,5860,7 +91110,Mitch,429838,1734254,10 +91111,Markus,251232,1742812,12 +91112,Young David Perl,19338,1579271,27 +91113,Father's Wife,110115,1115635,7 +91114,Salih,109671,150622,0 +91115,Chloe,118677,155422,4 +91116,Shingo's wife,92950,1279377,4 +91117,Mrs. Saunders,9568,59846,13 +91118,Savka,292656,936092,5 +91119,Kathy,68184,6684,4 +91120,Daphne,34806,66524,5 +91121,Mikael Pogosian,354859,25072,0 +91122,Funeral Attendent,379959,1604096,9 +91123,Brigadista,2143,132914,36 +91124,Trucker,157152,154349,7 +91125,Robbie Ryan,4257,117525,14 +91126,Quentin,244403,21028,1 +91127,Mr. Ching,10389,551629,42 +91128,Killer in Hotel,17282,1670351,12 +91129,Anioł Lubega / Muzyk udający w czyśćcu Presleya,155426,1175581,4 +91130,Helen,30496,47615,2 +91131,Ralph Dover,146233,112476,7 +91132,Reggie Page,193177,174624,9 +91133,Izzy Kingston,397837,1560380,9 +91134,Aunt Jo,95504,94114,6 +91135,Yen Ha,68634,591427,1 +91136,Welcome to the 60's Dancer,2976,1752796,138 +91137,Holger,107445,1083,5 +91138,Julie,109610,44203,1 +91139,Kara Thrace (archive footage) (uncredited),105077,51798,32 +91140,Rémi,343702,6020,6 +91141,Priscilla,19398,223978,14 +91142,Ayesha,276935,130991,2 +91143,Colonel Schwarzkopf,88794,20212,13 +91144,Marjaana,89330,992851,5 +91145,William Fitzgerald,100661,15772,2 +91146,Sven,352890,23126,8 +91147,Tokuda,60173,6701,9 +91148,,359807,563750,4 +91149,Anatol Kuragin,149465,142512,13 +91150,Akulina,14489,141644,7 +91151,Himself,76176,325,0 +91152,Dark One,7237,141,2 +91153,Biker Fatso,4291,36076,6 +91154,Seguridad,254869,1423095,54 +91155,Herself,23319,161927,6 +91156,Drifter (as Edward Juaregui),18447,1290984,11 +91157,Yash,21905,85731,2 +91158,Fakir,240832,1426916,52 +91159,Miller,81010,65728,4 +91160,Red Queen Girl,45522,1436024,16 +91161,Dr. Mikacevich,27840,99116,9 +91162,Lisa,13058,1589636,23 +91163,April,257214,69399,4 +91164,Cooper,28704,4756,0 +91165,Ralph Wiley / Uncle Sam,20521,31365,5 +91166,Mike's Gang Member,90616,1740113,43 +91167,Art Critic,413232,120810,20 +91168,Dr. Anne Parsons,336271,105299,4 +91169,"Leonardo Da Vinci - nauczyciel Giordana, bezdomny",155426,1519448,11 +91170,Anders,77922,1196405,2 +91171,Lion (voice),38317,16483,2 +91172,Martin Mirkheim,54022,2171,7 +91173,Luther Voz,106747,2461,1 +91174,Mr. Jones,22404,8516,3 +91175,The Hulk,26881,19137,1 +91176,Dan Walker,44363,7431,2 +91177,Theo,6575,51382,7 +91178,Sully,47794,1600352,12 +91179,General,39276,1167993,7 +91180,Koichi Hirayama,18148,68411,4 +91181,Crew Man (voice),24357,31531,2 +91182,Nigerian Gangster,17654,1187374,39 +91183,Pierre,43001,37777,0 +91184,Daddy,14882,52,5 +91185,Zeke,11171,1275,6 +91186,Woodrow Wilson King,150338,26660,3 +91187,Ed Pinchot,26758,95082,8 +91188,,325892,223167,2 +91189,Kirby,118957,3062,11 +91190,Goga Pasha,441881,35742,5 +91191,Himself - Interviewee,76142,7570,5 +91192,,235092,85345,7 +91193,"Frau Elmire / Elmire, Orgon's wife",55544,3005,5 +91194,Hungry,375366,1733481,25 +91195,Wang Yang,141138,69636,0 +91196,Mark,14053,5009,0 +91197,Jubal Hooker,26119,14063,3 +91198,"Curly, the cook",186585,13968,8 +91199,Rocky at Age 8 (uncredited),28000,1188414,74 +91200,Construction Foreman,29054,2717,11 +91201,Bertil,76846,107909,6 +91202,Preacher,43821,14666,14 +91203,Ma Bridges,86608,17755,4 +91204,Bobby Mercer,8292,13240,0 +91205,Tommy,110115,1068699,1 +91206,Jane - Weather Person,15476,1174944,15 +91207,Palmer,47412,62893,2 +91208,Michael White,75595,88950,10 +91209,Noble (uncredited),274857,1743573,48 +91210,Donovan,1665,18518,7 +91211,Mary Tyrone,237549,153694,1 +91212,Hilda Fenchurch,36635,89528,0 +91213,Policeman,4613,38576,17 +91214,Whoopie,41591,8520,18 +91215,Brethren Boy,13258,77996,1 +91216,Bailiff,150712,121127,32 +91217,Sara,44793,1294216,4 +91218,Phiona Mutesi,317557,1683149,0 +91219,Frank,87148,1269243,2 +91220,,27276,551854,45 +91221,Nicole,1421,1723441,28 +91222,Blue Buffolo,35001,4960,5 +91223,Mark,392660,62172,4 +91224,Mary Proudfoot,13258,47730,3 +91225,Kirk Douglas,294016,152566,17 +91226,Frau vom Imbiß,128856,50374,9 +91227,Barbie / Liana (singing voice),13004,85429,1 +91228,Red Harvest,333484,1584347,6 +91229,Riley,336666,1457014,4 +91230,Fellag,13507,231278,2 +91231,Kocsmáros,31262,85640,5 +91232,Det. Hudson,19846,29096,5 +91233,Josephine,25655,936673,11 +91234,,88390,156869,18 +91235,Richard 'Woody' Woodford,11798,225610,5 +91236,Loan Officer,8270,5921,17 +91237,Bartender at Friars Club (uncredited),369524,1805556,32 +91238,Rottana,49853,1648783,25 +91239,Jack the Bully,256962,1819136,67 +91240,Batman (voice),30061,13021,1 +91241,Sylvie,1382,53889,4 +91242,Ally Mash,82626,1225783,0 +91243,Verna Klump,52868,59695,3 +91244,Vittorio,315872,1497851,10 +91245,Siro,259835,27383,5 +91246,O'Bannion,43205,738,4 +91247,poliisi,442752,1761848,40 +91248,Amanda,57326,104619,9 +91249,Policía (uncredited),42502,1553918,20 +91250,Niccolo Picchioni,255456,1051058,3 +91251,Mrs. Tót,8776,56296,2 +91252,Lois,175171,140180,12 +91253,,153420,20313,9 +91254,Blue-Haired Woman,10488,1077899,14 +91255,Sam,233639,1269136,3 +91256,Vicky Gleason,49158,20948,5 +91257,The Porter,133448,1097178,11 +91258,Vanna,52741,98944,10 +91259,Detective O'Brien,80771,3243,9 +91260,,5165,1184833,19 +91261,Karis,18696,83461,3 +91262,Ann Gilbreth,33839,82170,2 +91263,,37959,132776,17 +91264,Reform School Superintendent,99909,96721,46 +91265,Skipper of Honeymoon Boat (uncredited),52440,2782,11 +91266,Gemini,28682,101577,7 +91267,Boy Actor,245700,1798372,57 +91268,Dave Glennon (bookkeeper),59895,34574,6 +91269,Morgan,61908,97146,10 +91270,No.10 Advisor (uncredited),1165,1207203,25 +91271,,24837,97140,3 +91272,L'amant,12249,71938,7 +91273,Billy Birkmire,120357,89673,7 +91274,First Sgt. Mike Merry,18512,4347,0 +91275,Gamora,283995,8691,1 +91276,Wolf 1,5393,4253,20 +91277,Nina,52637,146381,1 +91278,School Headmistress,84354,1161655,14 +91279,Prem,13436,1656880,18 +91280,Hard Hat #1,62213,29697,21 +91281,Mario!Luigino!!,36236,1133860,28 +91282,Young Bride,58887,866906,4 +91283,L'atleta,43379,1606807,11 +91284,Himself,9815,59534,13 +91285,Marta,277710,3270,20 +91286,Lisa,263472,1626950,8 +91287,Darrell,245169,108557,8 +91288,Herbert Klotz,318781,1168171,16 +91289,Geoffrey Cole,126418,96068,5 +91290,Sid,34216,64435,0 +91291,Sally Caldwell,36089,56923,1 +91292,Minamizaka,26936,96638,6 +91293,Nancy,21338,42967,3 +91294,The Senator,28682,101596,2 +91295,Swifty,204040,1937,3 +91296,Cecile Thibaudier,66897,545539,2 +91297,La barmaid,377853,1589402,14 +91298,Fabio,42441,120630,6 +91299,Macy,64191,129395,3 +91300,Waiter (uncredited),36691,115981,22 +91301,Buddy (convenience store clerk),132422,23630,5 +91302,Reporter,109716,120708,57 +91303,Doggie,46875,2749,6 +91304,Don Alonse,237796,39884,7 +91305,Soldier,24973,1152705,30 +91306,Brock,126712,121207,7 +91307,Tootie,146712,76313,1 +91308,Bar Guy (uncredited),16320,1286738,43 +91309,Man in Pub,1116,1189010,39 +91310,Captain Ed Bates,35895,41755,1 +91311,Bertaux,35008,544667,6 +91312,Alan Terskiy,395914,1614738,1 +91313,Ray,158739,1462,2 +91314,Robert G. Durant,18998,16476,1 +91315,Frank Emery,146315,13022,1 +91316,Lizzie,378441,1797410,22 +91317,Jacques Denard,110830,85273,3 +91318,María Álvarez,436,5887,0 +91319,Finque,48852,54127,26 +91320,Oskar,242224,1399368,6 +91321,Franco Zorzi 'Il Primario',53805,110544,1 +91322,Gerhard,374475,28396,12 +91323,Keiso Hirayama,18148,142469,9 +91324,Clem,335970,4690,3 +91325,Narrator,99567,980520,10 +91326,Pamela Fitzgerald,16373,14683,1 +91327,Jamie,39053,2229,3 +91328,Sarah Livingstone - Sociologist,17654,97599,2 +91329,Cerisia's Grandma,383618,1066132,7 +91330,,69619,105421,12 +91331,Anja,16032,558205,4 +91332,Police Chief,440777,1618984,24 +91333,The Red-Head,76533,517007,4 +91334,,185987,110313,16 +91335,Leah,137491,7007,5 +91336,Sokol,8899,73331,3 +91337,Meg,15759,78746,12 +91338,Wife,48131,145875,6 +91339,Flirty barfly girl,345915,103856,34 +91340,Michelle,367732,1294,3 +91341,Sally Wilson,229610,1264322,14 +91342,Snakehips,747,1445663,16 +91343,Akbar,395914,1614746,6 +91344,Anat,205584,1535060,15 +91345,Himself,325712,1562959,14 +91346,Marianne's Friend,369885,937222,17 +91347,Himself,400668,1821658,7 +91348,,375742,1564289,21 +91349,Captain Smit,868,13101,8 +91350,Hotel Secret Service #3,383538,1851868,16 +91351,Saxon,2966,29095,4 +91352,Art,46729,449,0 +91353,Daphne (voice),13354,15761,3 +91354,Lee Wah,49514,65934,9 +91355,Ribanna,3686,10073,3 +91356,Anjali,314389,1449318,4 +91357,Larson,103201,5050,3 +91358,Patterson,53949,126997,24 +91359,Beatrice,102362,87722,1 +91360,Wan Tin-Sau,53168,57607,0 +91361,,139582,1246538,5 +91362,Old woman,148371,1177410,7 +91363,Santos's wife / Esposa de Santos,206563,559176,12 +91364,Old Ptolemy,1966,4173,5 +91365,Asticot,223655,102885,4 +91366,Cyrus,298787,88804,2 +91367,Primario Ospedale,379873,1879766,25 +91368,Herself,83587,995560,0 +91369,Police,27814,1856478,14 +91370,Gunman,94251,16004,9 +91371,Press Secretary,329865,1752153,19 +91372,Detective,35129,78305,9 +91373,Kwan,34216,56861,1 +91374,Tomosuke Takagi,168994,33135,0 +91375,Charles Gutman,302528,15319,4 +91376,Duke of York,26808,192846,8 +91377,Colo,83481,1255481,6 +91378,Dubai Beauty #1 (uncredited),1726,78434,79 +91379,Bob,78362,929107,10 +91380,Greeghan,76757,1238461,11 +91381,Carla,356461,7546,4 +91382,Shirley Wershba,3291,1276,8 +91383,Elias,296313,1019,1 +91384,Female witness on rainy day,43113,552642,30 +91385,Sheriff Deon Gilbeau,152737,1462304,12 +91386,Josephine,405621,100653,7 +91387,Ela,52247,145609,1 +91388,Henry Dimsdale,94170,82388,0 +91389,Elisabeth,24140,39945,7 +91390,Toredano,32080,16525,10 +91391,Lady Customer,59726,1185478,12 +91392,Tom DeLay,45324,49275,5 +91393,Granma,44741,131329,4 +91394,Hua Tuo,12289,1614307,17 +91395,Styles,5965,46922,10 +91396,Bret,13574,4784,1 +91397,Michelle,301224,1382183,4 +91398,Khan,14818,592537,6 +91399,Alex,1690,33939,6 +91400,Security Guard #1,41171,559971,34 +91401,Dr. Hannah Lindval,356483,6681,2 +91402,Cyril Sahib,185154,2091,1 +91403,Cute Teenage Boy,232672,60961,22 +91404,Hotel Clerk,12447,69951,3 +91405,Plumber,44190,103099,15 +91406,Kuririn,39101,65510,1 +91407,Michael,166221,1953,3 +91408,Alison Galloway,241930,1398010,5 +91409,Capitaine Charles Delon,8588,39251,2 +91410,Miss Moody,426670,1548298,15 +91411,Babban Hussain,33556,85889,2 +91412,The Daze Guitar / Vocals,23367,95396,43 +91413,JonBenet Ramsey Auditionee / Herself,430826,1801194,5 +91414,Nicholas,360737,585494,2 +91415,Recepcionista da Agência,34588,1839766,25 +91416,Chief Engineer Malicent,29805,47549,13 +91417,Leah,304372,5411,2 +91418,Zabel,46326,12748,1 +91419,A.I. Kelor (voice),209112,17832,39 +91420,Christop Crane,6947,51533,12 +91421,Florence Jorgensen,94551,154340,4 +91422,Miller,171698,2130,2 +91423,Curro,411638,15598,1 +91424,Tucker,280092,59117,4 +91425,George Simon's Mother,53792,1324773,7 +91426,Policeman,43113,552176,82 +91427,,288424,56890,7 +91428,John Schofield,43811,1000845,17 +91429,,52183,87221,2 +91430,Carolina,252682,18181,3 +91431,Iowa Reporter,9918,1088044,20 +91432,Mildred,42062,85941,14 +91433,Gil Davis,18598,50020,1 +91434,Socialite,121401,1597831,8 +91435,Rudi,318781,1205759,11 +91436,French Bodyguard,1165,1188580,24 +91437,Arthur,74878,32100,3 +91438,"Margo Martin, Circus Club Singer",30022,103175,10 +91439,Gambler,43812,30160,82 +91440,Amala,209401,1531926,9 +91441,High Priest,24973,119486,40 +91442,Anu Chopra,347807,85669,7 +91443,Phillip,19794,205300,30 +91444,Don Cantwell,37315,117419,8 +91445,Ella,54491,15274,10 +91446,Themselves,140554,1707830,22 +91447,Jo Hwe-ryung,363579,1335825,5 +91448,Vidosav,284154,112393,14 +91449,Himself (archive footage),14286,84385,5 +91450,Timmy,84226,1418446,7 +91451,Ricki,12447,17225,5 +91452,Dennis-Pylade,63401,39677,5 +91453,Harold Rhinelander,76714,5249,17 +91454,Mickey Mouse (voice) (uncredited),132714,2106,0 +91455,Preston Morgan,175998,31350,1 +91456,Kaddir (voice),51036,157843,47 +91457,Ye Ming (Wild Cat's thug),17467,1425549,16 +91458,Haru,402455,230660,4 +91459,Sarah,53354,57298,0 +91460,Bartender,27137,189668,13 +91461,Airport Security Officer,59722,1000837,9 +91462,Nastya,252034,94064,5 +91463,Rachel Wilson,49853,1648801,44 +91464,Emmett Grant,339145,118076,5 +91465,Charles Obinchu,47559,2606,1 +91466,Alexander Runge,98612,40526,1 +91467,,149868,1173681,9 +91468,Neelam,11854,117534,4 +91469,Dr. Donald Harlan,13836,1201,14 +91470,Herself,481,6536,3 +91471,Mary Egan,47186,171472,10 +91472,Choi,1640,191198,40 +91473,Dr. Holtz,33472,1580377,10 +91474,Kenneth Rosika,205798,12123,16 +91475,Sooz,215379,204108,6 +91476,Harkin,269173,19211,1 +91477,June,24810,1147391,16 +91478,Marie Antoinette,99579,9824,0 +91479,Miss Kingsbury,248706,97698,9 +91480,Clement Moss,149232,2128,5 +91481,Bo Qianzhang,217923,1184078,11 +91482,Margaret,371462,3052,0 +91483,FBI Agent,2567,1569328,56 +91484,Doc Saunders (as Sir Cedric Hardwicke),35926,99461,2 +91485,Bartender,37978,54238,8 +91486,Ron,14215,77700,0 +91487,Parkinson,86049,2601,8 +91488,Indiana Jones,13805,19754,7 +91489,Himself,15258,60949,15 +91490,Wade,44047,941,2 +91491,Mr Knightley,244182,100097,1 +91492,Stéphane,300,258,0 +91493,Alan Baker,33729,4347,0 +91494,Chico,50295,53766,5 +91495,Bit Part,18651,121063,42 +91496,Sarah's Sister,337104,156989,9 +91497,Kathy Galagher,80343,74375,0 +91498,Hans ('The Singing Bone'),28367,67393,15 +91499,Lyle Benton,45726,10508,1 +91500,Jacob,345916,60060,8 +91501,Isaac,85956,1046222,3 +91502,Kyle Connellan,62837,970216,10 +91503,Mr. Thomas F. Sullivan,43504,3383,1 +91504,Chris Whitlock,399894,2603,3 +91505,Direttore d'albergo,20414,128469,11 +91506,Detective Tsuji,282069,1247954,13 +91507,Amédée,43900,69971,3 +91508,Larry,9956,3041,1 +91509,Lakku,238985,229957,9 +91510,Logan,28340,209687,15 +91511,Art Class Girl,23367,95399,46 +91512,Nasira Khaldi,18290,82886,1 +91513,French Singer,18651,120700,57 +91514,Raphaël,12169,71507,3 +91515,Boxman,11358,1773117,43 +91516,Telephone Pole Guy,79329,586543,20 +91517,Julie,295581,46903,6 +91518,Abatino,62349,131631,0 +91519,Peg,1991,1052339,14 +91520,Uncle Tat,47647,70437,2 +91521,Denise,1421,1723431,15 +91522,Lt. Colonel Oiso,1251,33522,9 +91523,Ben (as Sandy Kevin),42472,106726,7 +91524,Medical Examiner,28090,1073197,22 +91525,Papa,16164,11066,10 +91526,Perry White,126712,30216,4 +91527,Beth Burns,1550,17486,4 +91528,Fred,37813,118584,4 +91529,Jon Ellison,56491,81876,10 +91530,Gladys Duffy,174278,41516,3 +91531,Neza,89551,1071197,9 +91532,Bebeka,163791,932751,2 +91533,Conor Ludlow,157829,5530,1 +91534,Frank,228970,6951,6 +91535,Thomas Kimberley,425774,1707938,44 +91536,Jethro Clemson,27916,1708250,2 +91537,Ma Stratton,43440,11025,3 +91538,Rachel Ashe Lynn,14405,15555,1 +91539,Gus Snider,19618,6463,8 +91540,Sandra,229559,1143886,3 +91541,The Ghoul,35564,29709,9 +91542,Colonel Devereux,257344,1123418,35 +91543,Henri,14688,24816,8 +91544,The White Ghost,32623,1110579,3 +91545,Jane-Mary,22939,89604,1 +91546,Fanny,290316,1360308,1 +91547,Jess Testor,140607,1202689,36 +91548,Mandy,168814,1200923,6 +91549,General Barnett,31984,1845936,15 +91550,Marianne Thornton,15163,65448,10 +91551,Reinosuke Ushio,269390,134368,1 +91552,Nathan,379925,1256300,1 +91553,Young Jorge,202214,1090804,9 +91554,Maxwell,21948,12850,4 +91555,Mother,5544,44020,2 +91556,Harliss,85564,12662,9 +91557,Thangam,66224,1333429,4 +91558,Funeral Family,71503,563108,30 +91559,Solange Mideau,59434,29523,2 +91560,Bean,42329,1160263,7 +91561,,140509,1324248,8 +91562,Anu,60677,1126675,4 +91563,Rosa Chumbe,407575,147344,0 +91564,Daphne,258255,1579945,4 +91565,John M. Brinnin,277847,109,1 +91566,L'animateur du karaté-show,20200,93532,11 +91567,"Gertrude, the Cook",413232,2934,11 +91568,Taxi Driver,91583,78950,10 +91569,Troy Somerset,132608,87341,0 +91570,The Mother,56816,937720,3 +91571,Kuririn,39103,65510,1 +91572,Mac [マック] (voice),56391,1724785,5 +91573,Dr. Plank,408755,52043,6 +91574,Johnny Smith,118953,13970,0 +91575,East German Judge,13580,140148,19 +91576,Brink,139519,39995,0 +91577,Emmy (voice),13517,1571372,12 +91578,Gingerbread Man (voice),10192,12080,20 +91579,Don Felipe,10915,91971,9 +91580,DC Baines,381518,127558,4 +91581,Nikki Brown,19887,1033069,3 +91582,Joe Wayman,153162,32430,3 +91583,Lester the Pimp,7304,37204,14 +91584,Frau Kerkenreuth,8948,47026,9 +91585,Nurse Davis,62694,130420,5 +91586,Karina's Father,153781,82313,3 +91587,Velma,12902,86314,2 +91588,Peter,122271,90765,2 +91589,Nurse Teresa,80324,589246,3 +91590,Pansy Peets,43131,148514,2 +91591,Dolly,217038,1201668,1 +91592,Fabienne,1421,17031,5 +91593,Harley,99846,100295,10 +91594,Waiter Casbah,1164,1681177,36 +91595,Mother,1278,10731,3 +91596,Nurse (uncredited),365942,1670755,49 +91597,Police Officer Bill,407448,1863664,28 +91598,Pesenti,64465,29429,3 +91599,Johannesburg Onlooker,99861,1760864,37 +91600,Melissa,115283,11514,2 +91601,Himself,149883,1217563,1 +91602,Darryl,70046,82719,8 +91603,,360603,1529913,3 +91604,Dance Observer,157343,1173157,29 +91605,,165402,35793,2 +91606,Eddie Hoke,76229,4966,3 +91607,Franklyn,109417,15760,1 +91608,Mary,116232,1268226,15 +91609,Danny Parker,58832,204505,0 +91610,John,122857,78110,1 +91611,Dr. Eli Prather,27105,19968,9 +91612,Ritesh,20092,86020,1 +91613,,280045,1520622,6 +91614,Amina,121598,85577,1 +91615,Mattei,122192,6012,1 +91616,Adrian,139998,18472,4 +91617,Gadget,11798,225611,7 +91618,Anisha,136386,1105700,9 +91619,Herself,293262,1392198,2 +91620,Police Officer (uncredited),28115,33776,10 +91621,Guy,258251,1171128,6 +91622,Carol,34588,1839760,21 +91623,Berlin Custom Officer,240832,1416230,32 +91624,Prokop,74199,72795,1 +91625,Paige,435737,1625774,3 +91626,Lilly,1164,17477,7 +91627,Irene,33134,1128161,12 +91628,Additional Voices (voice),328111,84495,25 +91629,Receptionist,35016,133913,14 +91630,Kevin Deakin,77292,11207,1 +91631,Sam Steele Jr.,142402,220283,2 +91632,Maryanne Kinkade,13610,4726,1 +91633,Bryony,11404,32248,3 +91634,Student #2,13600,82148,15 +91635,Christian,14660,11023,1 +91636,Garage Mechanic,45726,133573,15 +91637,Dad Pirandello,44801,52611,6 +91638,Priest,84184,584096,19 +91639,Drunk,2976,54650,100 +91640,Willy,391375,19137,3 +91641,Deer (voice),245536,1280970,2 +91642,Philip Stadling,27230,12645,1 +91643,Zechariah Peachey,33343,168964,4 +91644,The Woman,89337,6465,8 +91645,Soul Hunter,10921,8349,4 +91646,Allison Paige,266425,1313134,5 +91647,Jonesy,13163,77896,4 +91648,Inder Lal,67794,85656,11 +91649,Lincoln,44773,543787,9 +91650,Don Leslie,75510,31702,3 +91651,,32934,1648461,3 +91652,School Mate,28710,1162542,14 +91653,Ethan,2397,24525,10 +91654,Pa Beretti,94009,115770,9 +91655,Lanny Morgan,104556,14028,1 +91656,Bartel,178446,223477,18 +91657,Ahmed,101352,1071384,7 +91658,John Clark,4380,1205,0 +91659,Tom,206197,58544,9 +91660,Hector,213983,1198611,2 +91661,Sweety,266082,232363,16 +91662,Water Policeman (uncredited),22943,89609,43 +91663,Walter Winchell,75145,46946,2 +91664,John's Grandad,297265,29699,2 +91665,Todd,410537,968742,2 +91666,Kelly,117942,1069672,3 +91667,Vice President Hammond,117251,4776,8 +91668,Professor Fukazawa,12561,72822,5 +91669,Jane Quigley,49514,21045,6 +91670,Himself,413782,18056,21 +91671,Paparayudu,80539,113810,5 +91672,Poor man,49577,1687766,6 +91673,La sauvageonne,47143,56242,6 +91674,Dick,327528,540,2 +91675,Prison Tower Guard (uncredited),15794,121066,47 +91676,Dr. Leonard,55846,1332498,10 +91677,Megan,25983,45400,2 +91678,Iris,45244,1605664,6 +91679,Nina,279090,1335229,2 +91680,Himself,51311,1109538,5 +91681,Mr Sandhu,11798,203176,16 +91682,Cheesy Girl,306952,1511996,57 +91683,Leper at Death Valley,199463,1022633,11 +91684,Hechy,27470,4355,10 +91685,Ms. Fran Rowan,28665,52119,3 +91686,,64204,1646171,6 +91687,Kevin,339547,1259874,4 +91688,Dirk,15936,149484,11 +91689,"Hamano, nightclub gangster",43113,552174,32 +91690,Grace,212996,67221,1 +91691,Maura,38448,95896,2 +91692,Cardinal,29272,1276266,11 +91693,Whirlygirl,17236,34844,0 +91694,Shanna,211144,184816,1 +91695,Frank Castle / The Punisher,13056,56614,0 +91696,Mr. Shigemitsu,310001,1830800,6 +91697,Roma Meats Man,27381,7623,21 +91698,Destiny (voice),408220,658,6 +91699,Dini,42132,993511,1 +91700,Vartija,101838,1029089,22 +91701,Alfred Pennyworth (voice),17074,34981,11 +91702,Police Officer,96936,1222174,23 +91703,Captain Ruiz,32029,29285,8 +91704,Jim,125736,137261,7 +91705,Detective Leo Finnigan (as Robert Emmet O'Connor),90465,10806,9 +91706,Cori,323675,109561,10 +91707,,369697,4812,10 +91708,Mrs. Green,93935,1657935,9 +91709,Blind Baloon Vendor,36373,90000,9 +91710,Sasami,14829,110667,3 +91711,Madame Dufour,43878,25160,1 +91712,Andre,924,327,3 +91713,Preston Stormer,264646,55779,1 +91714,John Griff,37329,34046,4 +91715,,444623,235876,5 +91716,Harley Quinn / Poison Ivy / Wonder Woman (voice),177271,75037,3 +91717,Darryl,407448,41295,13 +91718,Motel Clerk,72574,566643,14 +91719,Senator,102961,55267,2 +91720,Himself,15725,110542,4 +91721,Richard Lerner,40807,41746,5 +91722,Herr Ganske,338,4798,9 +91723,Himself,329243,87281,11 +91724,McNaughton,98566,1213573,17 +91725,Men-Hari,64428,24733,8 +91726,Supervisor at copper mine on Cyprus,199463,576478,12 +91727,Colonel Kovrin,73420,150191,4 +91728,Bettina,49038,1115695,4 +91729,Gayle,92496,994299,2 +91730,Young Johnny,10004,1436949,16 +91731,Gus,24050,5048,2 +91732,Annie,69717,3300,6 +91733,Support Group,222935,1672077,31 +91734,Banzô Takemura,2487,140106,8 +91735,Perry,12683,11160,5 +91736,Angry Customer,354133,1496066,6 +91737,Frank Lyons,84907,2224,2 +91738,"John Peters, a Pilot",43833,7383,12 +91739,The Opium Woman,84718,8522,6 +91740,Mr. Martin White,200447,12502,6 +91741,Himself,173465,1266235,2 +91742,Mario,56601,57412,2 +91743,Joe,319910,15799,24 +91744,Jango,21583,57755,2 +91745,Tai,72074,88351,3 +91746,D Dee,13058,90547,24 +91747,Une fille à la guinguette (uncredited),68822,145074,31 +91748,Katie (voice),13956,1418115,15 +91749,Stefania,265717,129304,7 +91750,Dan,407531,1115122,2 +91751,joueur 10,6077,1405751,14 +91752,Marty Green,86829,123515,12 +91753,Jason,253235,176822,21 +91754,Natalie Belisario,10744,49,2 +91755,Earl Hendorf,95140,60907,7 +91756,Ben,82687,16841,8 +91757,The German Surgeon,1690,1265218,12 +91758,Oldest Elder,146926,29712,8 +91759,Immigration Officer,17725,1170278,22 +91760,Sir Walter Stephenson,10087,63141,15 +91761,Caliban,5048,40898,1 +91762,,105352,1172233,0 +91763,Call Center Supervisor,9843,59864,10 +91764,Supt. Bellamy,105902,12726,5 +91765,Jordan,48838,11207,2 +91766,José,445840,967161,3 +91767,,84420,562714,4 +91768,,297298,107995,6 +91769,Al Bowlly,18820,6413,5 +91770,M. Poivrier,343702,1508642,16 +91771,Pete's Bandmate,356752,1841499,19 +91772,Cigar Smoker (uncredited),76203,1438678,87 +91773,Romanian on Plane,85442,202240,19 +91774,Judge James Racine,4982,78719,36 +91775,Pajersky,176124,211742,5 +91776,Yoshimi Matsubara,12205,71641,0 +91777,Herself,366696,1510297,5 +91778,Jonathan Kent,49521,1269,3 +91779,Von Hapen,11046,74262,14 +91780,Gordon Reiner,11354,1780381,7 +91781,Michael,77060,1354363,7 +91782,Marcel,257454,109864,12 +91783,Lidia,258751,1298489,5 +91784,Roran,2486,1312315,10 +91785,Dr. Samuel,83354,108289,8 +91786,Doc Redfield,38027,1230012,7 +91787,Marisa,142320,227309,16 +91788,Sofía,26969,96686,2 +91789,Paul,39781,103,2 +91790,Amanda,32497,93139,5 +91791,Jean-Michel Cousteau,332794,1159954,4 +91792,Yu Shu Lien,263341,1620,0 +91793,Cantor Yoelson,31206,34405,4 +91794,Monica,15013,77687,17 +91795,"Proietti, detto ""Er Soffia""",173177,994274,2 +91796,,293094,1364481,5 +91797,Creature 3,338676,1493398,13 +91798,Captain Jerry Jackson,41073,2091,1 +91799,Max,295964,59270,12 +91800,Rockney,47201,68091,6 +91801,Ren Quan Ying (Mother),241639,78870,1 +91802,Alphonse,102362,18288,2 +91803,Grand-Mère,2029,20852,3 +91804,"Mélanie, Vilaine",17630,69221,0 +91805,Lucius Aelius Sejanus,206514,2387,5 +91806,Hardy,12206,26600,7 +91807,Zhang Jian,69310,20519,11 +91808,Ron Franz,5915,11066,8 +91809,Rosario,49850,72782,0 +91810,First Jellybean (uncredited),27986,96250,20 +91811,Jack Bennett,56264,47296,12 +91812,Michael Rollins,9966,8338,9 +91813,Maresciallo Trentini,52914,556454,18 +91814,Damián,254869,1423092,51 +91815,Phillip Chandler,47342,57082,0 +91816,Girl in House (as Kimberly Dawn),40028,42222,16 +91817,A Blind Negro,43075,87825,12 +91818,Nick Cherney,25807,7685,3 +91819,La Bestia,98586,87015,5 +91820,Luna,162282,129080,5 +91821,Peter van Daan,128396,80753,4 +91822,Terry Gilmore,14215,118932,5 +91823,Waitress,25807,91655,16 +91824,Schroeder,256311,928150,12 +91825,Executive #2,58244,29460,28 +91826,Kate,30669,13725,2 +91827,Military Policeman (uncredited),43889,29580,16 +91828,,88953,1537394,20 +91829,The Policeman,41402,13550,3 +91830,Catherine,82481,592751,22 +91831,Jim Hickory,16661,97996,2 +91832,Kristin,382591,11291,1 +91833,Sawyer,320588,1110925,43 +91834,Friederike Buff,52475,1881182,25 +91835,Irene,26510,53487,3 +91836,Harlan,74779,1001980,3 +91837,Hansel,165864,56676,1 +91838,Dave Lowe,101669,76528,14 +91839,Narrator,6166,48329,2 +91840,Ed Fuddle,3937,4119,7 +91841,Motorcycle Policeman,107985,219367,30 +91842,Himself,34512,15903,0 +91843,,47190,1261863,10 +91844,Preacher,183825,1045919,23 +91845,Dixon,268920,72994,2 +91846,Cheyenne,12807,73741,0 +91847,Don Alejandro,107443,184402,3 +91848,Lyndon B. Johnson,132363,23626,17 +91849,Sei Lengjai,155397,131731,1 +91850,Diane,61550,233300,9 +91851,Aslan (voice),2454,3896,16 +91852,Miguel,18447,108283,13 +91853,Joven del río,121929,1886065,7 +91854,Phil Harper,17258,1004,3 +91855,Tom Carter,43319,1273694,10 +91856,Guard,310135,1716335,18 +91857,Griff,35405,827,0 +91858,Herself,100085,1023402,0 +91859,Gorilla,27381,1129454,17 +91860,Jacques,42996,39757,6 +91861,Claude Larivée,41277,1575499,7 +91862,Elderly Woman,14552,18347,21 +91863,Olka,382155,82312,3 +91864,Ghoul,58664,63344,15 +91865,Jasmin,61552,233747,10 +91866,Doctor,227094,1275022,6 +91867,Jan Pandered,9528,12517,3 +91868,Victim #3,295723,1418247,19 +91869,Frenchtoast O'Toole,207402,1190285,3 +91870,Glynnie,131781,13963,4 +91871,Wife,1579,42011,17 +91872,Patrick,361571,1664574,9 +91873,Kevin Parson,13569,46772,0 +91874,Paramedic #1,15092,51381,47 +91875,Gary Age 9,64328,1504922,37 +91876,David Sanders,6973,202949,18 +91877,Ajju Bhai,80281,89153,2 +91878,Sultan/Actioneer,42996,5464,7 +91879,Husband Crab (Bill) (voice),127380,7907,19 +91880,Julie,124157,65261,5 +91881,Receiver of stolen goods,52808,1137525,11 +91882,James 'Jamie' Tyrone Jr.,237549,1979,3 +91883,Tommy Weaver,195269,558343,4 +91884,Mary Rollins,9966,61135,13 +91885,Lacroix,13507,230067,7 +91886,,59572,14776,11 +91887,Norton the Bully,83125,1141413,6 +91888,Young Rose,13090,1803312,14 +91889,Frank,241254,51670,15 +91890,Petra Lane,218784,1110405,1 +91891,Batuk Patel,58051,35779,6 +91892,Fr. Oliver,256962,207,11 +91893,Kristjan,113137,27176,2 +91894,Dancer,11172,1781162,31 +91895,Harry Beechman,18548,1115,7 +91896,Peter Piper,22939,10730,0 +91897,Mansoor,42418,128097,4 +91898,Paul Vandor,122709,148861,3 +91899,Kate Burlingham,226167,104635,1 +91900,Hospital Nurse,46695,1185419,10 +91901,Pablo,105584,100307,2 +91902,Jury Member,339994,1593372,26 +91903,Sauvignon Blanc,72105,1204329,27 +91904,Danelo,204040,24820,5 +91905,Buck,114779,1288335,7 +91906,vicino di casa,58611,1182831,7 +91907,Francis Berger,84060,1129678,0 +91908,Stormtrooper,330459,71535,79 +91909,Mother / another woman,215743,1200395,2 +91910,Searle,1272,7248,4 +91911,General Store Clerk,42062,96302,15 +91912,Desk Sergeant,132928,10806,31 +91913,James St. James,1415,13922,0 +91914,Virginia Grey,189197,30084,11 +91915,Lieutenant Saroyan,162374,21577,5 +91916,Andy,11584,6451,7 +91917,Jung Eun Young,52418,1233711,2 +91918,Reporter,1724,201951,48 +91919,Kudret'in Babası,361181,1489333,9 +91920,Inspector Hemingway,259183,151035,4 +91921,Francisco de Quevedo,13495,36277,6 +91922,San,293167,1151657,5 +91923,Sheriff Jim Grant,371181,42711,13 +91924,Dr. Scott,16373,6933,5 +91925,Kyoko Ariyoshi,79382,13280,10 +91926,Tommy Macklin,98066,15684,0 +91927,Lollipop (voice),149910,505710,14 +91928,Lincoln,86709,933579,9 +91929,Military Officer,245703,177403,18 +91930,Sumo's Father,170279,1665946,8 +91931,Mathieu,258384,117803,6 +91932,Le policier,12446,43436,11 +91933,Jean-Marc Reiser,14419,47826,5 +91934,Himself - Comedian,98438,1018043,7 +91935,Tool,21338,7874,9 +91936,Det Jackson,268920,55755,4 +91937,Officer Frank Johnson,50725,18705,21 +91938,Anna Coleman,10330,49265,1 +91939,Teacher,82448,135698,13 +91940,Don Piper Fan #1,7288,155696,20 +91941,Grace,83896,1567165,10 +91942,Jussi Koskela,41142,125625,2 +91943,Larry,235046,19225,1 +91944,Tom,41703,127122,1 +91945,Alice Fasulo,6948,51538,4 +91946,Alfredo Brazzi,98328,34405,7 +91947,Seth,62838,60255,24 +91948,Ma Cox,6575,452,6 +91949,,332354,1490654,14 +91950,Joey's Family Member,356752,1841503,24 +91951,Velna,303982,1422042,8 +91952,Tiffany,37725,80969,9 +91953,Narrator,134362,133825,0 +91954,Book Seller,320588,1538584,41 +91955,Airman,41312,129051,19 +91956,MOB Dancer,243683,1398070,49 +91957,Laura,418072,232262,4 +91958,Preston Gilbert,28131,1937,1 +91959,Lakdar Abdane,246422,96044,1 +91960,Norman Taylor,45714,22529,1 +91961,Ji Young-Min,13855,75913,1 +91962,Billy,375170,1293268,3 +91963,Andrzej Kurcewicz,31273,107898,46 +91964,,57924,96173,0 +91965,Chef,39345,106489,15 +91966,Jean Guillaume,128169,45450,5 +91967,Natari,62472,1484680,32 +91968,Bóndi 1,72596,1114551,39 +91969,Joe Fisher (as Bob Patten),77012,78306,10 +91970,Mitridates,195385,27196,5 +91971,Shimbei Furusawa,74581,1029781,2 +91972,Geetha's husband,69428,584867,9 +91973,,64784,1451780,11 +91974,Jimmy,19887,85450,0 +91975,Yong-Seok,11658,63445,37 +91976,Wei Liao,10257,64436,7 +91977,Flamenco Dancer,95358,133182,13 +91978,M. W. Picard,134480,8730,3 +91979,Dream Girl,316154,1842096,22 +91980,Mrs. Lu,331313,1739698,16 +91981,Campfire Son,44436,130841,0 +91982,Jimmy,41578,569,2 +91983,Kingi,39356,1753260,9 +91984,Bobbie Markowitz,9890,73931,2 +91985,Tour Guide,72545,106730,8 +91986,Constable Buckley,425774,1663662,30 +91987,One of The Nicholas Brothers,108222,1005050,45 +91988,Toy Merchant (voice),16873,35159,21 +91989,Train Station Agent,332079,33178,16 +91990,,105860,556745,6 +91991,Waiter,98125,1471376,23 +91992,Funeral Attendent,379959,1604105,18 +91993,Volleyball Player #1,55694,21721,10 +91994,Walter Kresby,9890,4756,1 +91995,Brownie Evans,42703,103322,8 +91996,Arsene Lupin III,30143,109746,0 +91997,Technician #2,19665,123310,25 +91998,Hal,29345,12950,0 +91999,Detective Anderson,9828,59671,7 +92000,Drunk at Intersection,310133,1653014,13 +92001,Gay Party Guest (uncredited),88005,1530658,30 +92002,Walt - Bartender,75315,83397,36 +92003,Guy Algo,6081,14816,6 +92004,Lucas (voice),52264,8654,17 +92005,Kamar-Taj Librarian,284052,1698130,26 +92006,Preeti Singh,54959,35745,1 +92007,Oliver,13802,9140,24 +92008,Zhou Meifen,101908,1029289,3 +92009,Himself,63144,1624630,28 +92010,Benjamin / Guards (voice),13676,34982,9 +92011,,337876,1124389,9 +92012,Dr. Ashton,44869,11502,9 +92013,Chow Chow,14923,1386357,51 +92014,Baz,297633,42394,2 +92015,Affie,271185,20803,13 +92016,Alex,359870,1125581,1 +92017,Mr. Marshall,295588,32287,15 +92018,Richard the Lion-Hearted,71066,29260,2 +92019,Clifford Anderson,23719,15417,5 +92020,Beautiful Girl on Bike (uncredited),32552,179372,8 +92021,Getuige,298396,1600848,12 +92022,Dr. Beresford,43711,38947,11 +92023,,73835,1033003,6 +92024,Peter,120109,8730,4 +92025,Nancy,179288,1412150,11 +92026,Juana,271826,1128383,9 +92027,Rock,12763,10689,1 +92028,Organisateur,6077,47813,12 +92029,María,82265,56308,4 +92030,Hui,88811,551669,4 +92031,Katie,43158,129292,2 +92032,Ryuji Morisaki (voice),79707,89968,1 +92033,Carmine,315319,148255,5 +92034,Ronnie,214100,1034704,7 +92035,Kouzelník,15387,135687,13 +92036,Achmed,82430,7907,4 +92037,Secretary,55347,191897,18 +92038,Biker Chick,8988,1742423,80 +92039,,347465,936031,3 +92040,Jérémie,255913,1608090,8 +92041,Cheerleader / Tiffany / Mother (voice),810,1571793,30 +92042,Joshua Waits,26914,124713,0 +92043,Bonnie / Cavalcade Patron,25625,10371,2 +92044,Heo Chul-joo,363579,1375944,6 +92045,,12622,555204,27 +92046,Tchu,47226,1168061,7 +92047,Ken,119592,56265,1 +92048,Rev. Robert 'Bob' Henley,84772,931239,2 +92049,Mika,17985,1348803,7 +92050,The Man,108726,2282,0 +92051,Lady Mullion,186227,13965,11 +92052,Bachir,295314,1380887,6 +92053,Nikolaj,310602,12795,3 +92054,Leann Cole,6933,31715,4 +92055,State Policeman,31634,108243,10 +92056,Anja,23289,84244,0 +92057,,50032,96182,10 +92058,Food Prisoner (voice),83201,12098,3 +92059,Mayweather,259695,1640938,21 +92060,John LeFlore,216153,15534,2 +92061,Peloquin,20481,56710,11 +92062,Colonel Galloway,31984,93948,9 +92063,El Cojo - Tío de María,42502,148576,13 +92064,Freddie,44626,49939,11 +92065,Himself,84309,114,8 +92066,Cowboy,17796,16861,12 +92067,Hermanni Päätalo,109861,1845781,6 +92068,Lord Mayor (uncredited),43369,584082,12 +92069,Melinda,20107,7906,8 +92070,femme à la terrasse,34840,401125,10 +92071,Carl,340187,1579543,6 +92072,Professor Hasenreich,82708,939320,10 +92073,Cathy Jeffcoat,213681,1771527,25 +92074,L'uomo / Il diavolo,88486,585373,4 +92075,Doctor,45714,16275,8 +92076,Noble #2,62764,207881,17 +92077,Liisa Kanninen,117499,222318,2 +92078,Егор Головин,336484,119048,2 +92079,,278717,1334386,1 +92080,Sanjana,61400,85040,2 +92081,Motel Clerk,154537,1221701,17 +92082,Deputy Chief Logan,102629,66792,6 +92083,Jonus Ray,76203,16459,32 +92084,Shabby Man in Restaurant (uncredited),47653,21302,9 +92085,Francis,19166,23388,2 +92086,3rd Kid,49974,147100,13 +92087,Ivan,108664,35116,3 +92088,Kogure,62472,229225,7 +92089,Larry Ralston,44115,4515,6 +92090,Captain Kara 'Starbuck' Thrace,69315,51798,6 +92091,Agent Larry Minuti - ATF,7551,13525,9 +92092,"Alice, Princess of France",58905,93226,4 +92093,Singer in Cotton Club,28564,149133,14 +92094,Maj 12 OP 1,25977,102778,6 +92095,Speaker of the House of Burgess,52360,1186832,45 +92096,Anjali,20364,37233,1 +92097,Lars,173294,174738,19 +92098,Garage Employee,13468,196179,4 +92099,Edward McDermott,82237,2928,8 +92100,Himself,229296,1023341,6 +92101,Susie,35320,1872365,20 +92102,Himself (uncredited),22752,2106,18 +92103,Grandpa Edwin Hoover,773,1903,5 +92104,Anne-Marie Munoz,245775,1315534,10 +92105,Ruby,33541,543105,9 +92106,Lillebror,41493,126672,1 +92107,Huey,47194,141042,14 +92108,Snakehead,10610,6104,3 +92109,Monsieur Rochelle,181456,1318211,27 +92110,Blossom (voice),44283,44715,5 +92111,Eve Garrison,42476,13725,4 +92112,Arnel,85265,1510409,10 +92113,Coed in Bed,18722,553437,35 +92114,se stesso,302802,56194,18 +92115,Bailey / Farnsworth III,280495,6701,2 +92116,Saleswoman,142216,105068,5 +92117,Inspector McCulloch,52203,14823,10 +92118,Miss July,40649,52315,12 +92119,Hostess,3520,1064626,12 +92120,Captain Hernandez,323675,115874,15 +92121,Philo Swift,132928,2436,2 +92122,Gordo Thorsen,13025,81101,7 +92123,Herself,15177,77986,15 +92124,Dr. Fran Immelman,32082,119113,14 +92125,Inara,16320,54882,3 +92126,Ale,115173,1061041,2 +92127,Ria,245324,1012260,3 +92128,,141015,588636,4 +92129,Gessica,429838,168675,1 +92130,Célestin,15457,77929,6 +92131,Martin Scott,97767,89925,4 +92132,Christopher Robin (voice),24926,173132,3 +92133,Katana Bartender,356752,1841512,33 +92134,Scott,138222,15033,0 +92135,Darryl,4551,37937,10 +92136,Herself - Model,327083,1248826,11 +92137,Dalvanius Prime,393367,1100393,4 +92138,,164013,1149290,3 +92139,Immanuel Tauss,368342,44567,2 +92140,Stan's Girl,1726,1209712,56 +92141,Tom,44718,215056,7 +92142,Trask Secretary,127585,171955,38 +92143,Medical Center Guard,45013,112286,38 +92144,Premieregæst,169758,1034508,8 +92145,John,97630,78110,8 +92146,Chen Chow Mein,186634,71300,1 +92147,Ernesto Almansa,33273,3652,13 +92148,Rebecca,58664,1542127,13 +92149,Dr. Susie,374614,51800,3 +92150,Pequeñin,80280,472547,12 +92151,Wilkins,57412,95757,8 +92152,Sylvia Lorgan,120615,85485,4 +92153,Jones,27085,1232334,12 +92154,Himself,64972,1212818,11 +92155,Flieger Udet,29043,102673,3 +92156,Xiao Yi,16687,1184077,5 +92157,Rick,351242,1489939,8 +92158,Sofia,390,5277,4 +92159,Bar Patron (uncredited),17136,121323,35 +92160,Judge Joseph 'Joe' Palmer,205587,3087,0 +92161,Shirley Scott,43882,47678,5 +92162,Needle Beer Grogan - Bartender,94009,1170219,10 +92163,Victor Rasdale,15022,1466,4 +92164,Lucius Septimus,31561,115376,7 +92165,Club Bouncer,19053,551911,26 +92166,Lena Duchannes,109491,587823,1 +92167,Rupert Cavendish,223485,126042,6 +92168,Leslie,219345,7796,2 +92169,Clean Cut Man,413452,95136,6 +92170,Mortola,2309,80366,16 +92171,Swimming instructor,59408,32021,2 +92172,Himself,144680,1125891,10 +92173,Shino Katagiri,34019,148286,4 +92174,Mourner at funeral,332806,1648326,3 +92175,Antoñito,59117,1423066,18 +92176,"Adolf Horst, sublokator Pobratyńskich",156627,146877,3 +92177,Josef Strauss,280004,9140,8 +92178,Kalle,11664,965857,6 +92179,,213842,14324,1 +92180,Shoot 'Em,51036,987625,35 +92181,Social Worker,364088,1523163,6 +92182,Lee Yuk-lin,11960,66762,1 +92183,Young Anil,19887,1119385,8 +92184,Paolo,160844,88474,1 +92185,,88529,150258,2 +92186,Grand-mère Rézeau,24685,23733,10 +92187,Master Tan Chuang,10275,1059241,1 +92188,,85317,139454,2 +92189,Mary Anne,28178,75620,6 +92190,Wife #2,193893,1381480,34 +92191,Katia Bennett,5421,43192,4 +92192,Acerola ´Ace´,7343,8598,0 +92193,Sylvie,337,6550,5 +92194,Sinn Ying,290864,1018707,3 +92195,Sidney Green,15616,26472,2 +92196,Nanini,62397,1002678,3 +92197,Moreira,12811,112066,7 +92198,Himself,44038,35473,0 +92199,John Häger,116019,1062709,7 +92200,Gil Amelio,115782,14721,13 +92201,Paul Gupta,107250,44191,16 +92202,Et vitne,87654,1477357,23 +92203,Chef,15067,141548,11 +92204,Sally Jackson,32657,2229,9 +92205,Carrie,243935,1033252,18 +92206,,181456,1524415,17 +92207,(voice),16137,79563,20 +92208,Analise Mercier,25834,10670,3 +92209,Steve Hanson,14053,40922,3 +92210,таксист,330878,1278816,11 +92211,Mangalassery Neelakantan,237672,82732,0 +92212,Police Officer,343795,1654873,13 +92213,Sylvie Auger,41277,1230532,25 +92214,Sheila McGuire,56744,53485,8 +92215,Jyotiwardhan,192675,86014,4 +92216,Maurice - Flammarions' Butler,31993,1072771,21 +92217,Ulla,24647,589354,9 +92218,Mattie Fae Aiken,152737,452,4 +92219,Elodie,383064,1128970,2 +92220,Alexis Zorba,10604,5401,0 +92221,Woman at Craps Table,1726,1209704,35 +92222,Prof. Tarl Cabot,31131,27398,0 +92223,Clyde Tolson,88794,53807,4 +92224,Ethan's Friend,4413,1630463,22 +92225,Kubo,376538,1557277,5 +92226,Captain Masters,53949,1589831,28 +92227,Pierwszy sekretarz,298040,1240012,13 +92228,Inspector Wong Kam Ming,19528,70690,10 +92229,Cowboy #1,188161,1105706,37 +92230,Shell,240881,1340664,5 +92231,Roderigo Venalez,82313,36905,9 +92232,Cuthbert,112284,8730,9 +92233,Pianist,266044,1822967,17 +92234,Climber,246218,1309682,1 +92235,Jon,56937,91109,8 +92236,La Forest - La servante,66949,38885,1 +92237,Yûsei ôji / Waku-san,62855,118703,0 +92238,Alisa,72663,559975,0 +92239,World's No. 1 Fan,139718,49352,22 +92240,Ruthie,116385,108298,11 +92241,Émigré #2,14979,1129506,11 +92242,Barbara Worth,41073,14298,0 +92243,Sally (as Dorothy Coonan),50073,148574,3 +92244,Sergeant Mike Gleeson,333352,1109482,8 +92245,Mr. Ed Woodry,32684,11128,2 +92246,Bar Fly (uncredited),244539,101292,23 +92247,Hans,38526,566094,7 +92248,Freddy,49073,81012,1 +92249,Adjutant (uncredited),18651,17759,17 +92250,Stu,68716,49002,1 +92251,General Safan,33201,936,1 +92252,Dr. Foley,256962,1819130,61 +92253,Capitaine du tournoi,126958,1083446,12 +92254,,40146,198241,7 +92255,Scalper,31380,947232,9 +92256,Cole Brandt,67328,134673,0 +92257,Georgia,192210,47769,10 +92258,,299165,1697811,32 +92259,Himself (archive footage),24479,20006,4 +92260,Pantbank Manager,377290,1643041,24 +92261,Marie Daly,266425,42721,4 +92262,Candy,9568,143204,7 +92263,Tami Yabe,50247,131013,6 +92264,Mark Bannister,51036,14101,0 +92265,Gregory,64204,1129756,2 +92266,Fatso,11205,1283842,18 +92267,Sergeant Yam,2805,134732,10 +92268,Jesús,26969,34021,4 +92269,Egyptian Dancer,24973,96735,28 +92270,Officer Ingram,157354,62747,5 +92271,Pappa,41493,82543,4 +92272,Herbie Fried,85699,52655,2 +92273,Alice Haughton,245168,6979,5 +92274,Himself,15725,110541,3 +92275,Direktor gimnazije,148034,1045426,11 +92276,Zhorin,40709,557377,8 +92277,Gülen,91628,1145285,1 +92278,Dexter Miles,48843,56890,0 +92279,Queen Mary Hospital Doctor,182127,1440222,17 +92280,Studio Core Member #4,244786,1503846,37 +92281,Gwen Piper,34560,45041,3 +92282,Spring,84283,1144605,3 +92283,Dark One Soldier,80410,37980,11 +92284,Charlie,19606,70417,7 +92285,Neighbor Lady,14510,44800,5 +92286,Mallin,48180,140011,4 +92287,Li Min-Wei,68004,25249,6 +92288,,9528,2076,6 +92289,Dimitri Kope,322922,87841,13 +92290,David,540,1826584,22 +92291,Marita,781,11612,6 +92292,Venezuelan Foreman,55604,13558,56 +92293,Hojby,274990,2244,4 +92294,Dr. Mathison,353686,5374,3 +92295,Stryker,3024,29661,10 +92296,Lieutenant General Frank Benson,333352,4566,2 +92297,Peter Fry,43759,923,3 +92298,Beauty Kelly (as Niall Macginnis),234868,93163,6 +92299,Sir Edward,43471,25175,7 +92300,Mom,76785,2207,0 +92301,Sal,331962,1706136,26 +92302,Mad Monk,121823,64436,14 +92303,Mrs. Hamilton,61151,83260,2 +92304,Doctor,23628,90414,22 +92305,Frère de Florence,41211,1291810,12 +92306,Presto DiGiotagione / Alec Azam (voice),13042,8010,0 +92307,Eva,99229,1747317,7 +92308,Pod'yablonsky,102197,1040419,12 +92309,Dan,21343,82636,7 +92310,Ray Simone,38743,121145,13 +92311,Capitano,56693,1094813,3 +92312,Miss Skiffins,16075,1399567,6 +92313,Gabi,148615,43203,7 +92314,Kim Townsend,271718,60073,2 +92315,Anthony Rodriques,16987,35759,8 +92316,Cathy,17386,592128,6 +92317,Guero,17317,1391805,25 +92318,Frænka,72596,1114548,37 +92319,"Rokov, Russian Agent",73551,108991,3 +92320,Denis Lacoste,41277,123923,6 +92321,,28746,1326033,13 +92322,Adrian Petunia,142106,1179847,7 +92323,Alan Breck Stewart,142150,23346,0 +92324,Kawayoshi,74126,213519,7 +92325,,121530,1177,15 +92326,Marshal Guthrie McCabe,32634,854,0 +92327,Cliff Henderson,45726,40433,2 +92328,Lacy,239018,87445,8 +92329,Inspired Stylist,14976,552526,25 +92330,Senator Augustus Cole,150338,120715,9 +92331,Marion Randall,107443,55997,4 +92332,Romina,105768,1200670,9 +92333,(uncredited),42674,1871282,23 +92334,Adam King,362844,70004,1 +92335,Öhi,9274,22531,6 +92336,Silvia,117869,1031212,1 +92337,Mitch,33305,180878,9 +92338,Nurse,65891,3094,4 +92339,Junior Officer,29805,1738560,34 +92340,Annie Rooney,200447,95624,0 +92341,Reporter (uncredited),206197,1506496,39 +92342,Luca,78854,1029112,3 +92343,Yenicall,124157,63436,3 +92344,Robin (voice),396330,113916,11 +92345,Anna (voice),326359,40462,1 +92346,Dr. Rosenbaum,9870,160546,10 +92347,Tom Benike,30155,3266,0 +92348,Matador cordero,438634,1886452,12 +92349,Nicole,119816,1071140,7 +92350,Volodya,279543,86663,5 +92351,Alba Garcia / Black Orchid (voice),408220,1212864,16 +92352,Gianna Brezzi,20126,44959,1 +92353,Doctor,353326,91494,10 +92354,Apolinario Mabini,359105,140419,4 +92355,Sick Fist Master,49642,239091,5 +92356,Dr. Hastings,59895,197185,9 +92357,Asgardian Citizen (uncredited),284053,1814641,26 +92358,Fake Andy,82687,56556,10 +92359,Mrs. Betty Laurel,46026,131432,5 +92360,Tribunal Man,32577,1184006,15 +92361,Jazz Musician,229297,1418993,20 +92362,Ringsider,75315,947709,21 +92363,Miss Bangkok,4551,177525,26 +92364,Veterinarian,44415,56121,12 +92365,Ilya,390880,235097,2 +92366,San Gen,10703,1613798,18 +92367,Susan,48885,1790534,8 +92368,Policeman Escorting Lee on Ship,94182,110204,20 +92369,Couple,88036,935715,9 +92370,Diego,167935,1170640,4 +92371,"J.J. ""Shep"" Morrison",94251,4355,0 +92372,Sheriff Tacksberry,4983,19968,2 +92373,Jim Swann,180305,32597,1 +92374,Charlene,44626,13353,3 +92375,,222517,1566964,16 +92376,Mom,289712,23975,4 +92377,Dave - House Party Guest,330947,1650305,36 +92378,Tin (voice),287233,4031,5 +92379,Rose Armitage,419430,1255540,1 +92380,Supt. John McCleod,29805,4173,3 +92381,Paula,59115,131934,10 +92382,Robert Purvell,334074,1471662,12 +92383,Maddy Hope,46943,17258,11 +92384,Folsom Prison Assistant Warden (uncredited),69,1509778,35 +92385,Islam,43984,931290,2 +92386,Maj. Cavazos,7445,5365,8 +92387,Maggie,274857,82809,11 +92388,Anton von Heerle,154972,1509499,13 +92389,Gabi Delgado,9690,16250,5 +92390,Nikki Ferris,51881,169075,2 +92391,Club Goer,77930,1302504,51 +92392,,461805,1004584,1 +92393,Man #2,27739,98878,10 +92394,Secretary to Mayor McCloud,340275,1531611,53 +92395,Angel,268920,1381148,17 +92396,Don Quijote / Alonso Quixano,145481,965,0 +92397,Jerome (Jo) Sommer,12631,32585,0 +92398,David Endocrine,142061,81200,20 +92399,Patrick Shamus 'Pat' O'Connell,162862,9091,2 +92400,Cactus,133255,172101,9 +92401,Maggie's Attorney,239563,52021,24 +92402,Gail Jones,341174,65409,15 +92403,Raul,59858,56247,1 +92404,Jeff Callum,54801,73980,1 +92405,LA voix d'Irma,166883,931203,13 +92406,Dancing Girl,24469,1284197,14 +92407,Marie,68822,12266,0 +92408,Herself,83587,1137457,15 +92409,Nadia Cominski,24624,141492,1 +92410,Le prêtre,70090,4121,2 +92411,Ralph Thompson,56533,12850,10 +92412,,290916,1361414,1 +92413,Snow White (voice),810,56322,12 +92414,,330947,18686,5 +92415,,165402,78248,3 +92416,Newspaper reporter,43113,1484034,81 +92417,Caine Wise,76757,38673,1 +92418,Mun (young),10389,551602,13 +92419,Mitsuru Ashikawa,17566,117977,1 +92420,,105703,1399240,7 +92421,Creature,246218,978996,4 +92422,Norris Wheldon,8954,11674,6 +92423,Neal,23683,131059,0 +92424,Herman Mankiewicz,50008,6949,3 +92425,Abe,90406,19968,10 +92426,Jorge,4441,37288,5 +92427,Teacher,42852,47665,33 +92428,Acer (voice),49013,31514,8 +92429,"Attendant (segment ""Miminashi Hôichi no hanashi"")",30959,222963,22 +92430,Orphanage Boy,5123,1781824,34 +92431,Fanny (uncredited),14615,102002,96 +92432,Tommy Rogers,26182,94803,3 +92433,'Days of Heaven' Customer,38908,121610,1 +92434,Colonel Underwood,63858,88887,9 +92435,Tess,20430,86128,2 +92436,Rosa,10053,62568,13 +92437,Bailiff,214756,1759630,67 +92438,Akkie,115929,225046,0 +92439,Xeni,290370,1380653,5 +92440,Desk Sergeant,134201,97955,14 +92441,Himself,383809,1295604,1 +92442,Olga,277396,1229041,1 +92443,Francesca,57918,556855,1 +92444,Sarah,21141,76313,13 +92445,Vladimir Karpov,145247,146500,10 +92446,Herself - Model,327083,112225,1 +92447,Victoria,39013,1163723,11 +92448,Robinson,19823,8210,2 +92449,Pulivetti Arumugam,330418,1187406,3 +92450,Bob,56154,124875,41 +92451,Roller Coaster Rider,264309,84034,8 +92452,Olivia,24123,1470885,18 +92453,Ralph Bass,239566,31532,17 +92454,Vicar,39517,27822,16 +92455,Uncle Super / Captain Super Jr. (voice),30061,34934,14 +92456,Uncle Louis Bonnard,178587,40620,5 +92457,Dr. Ted Philips,251732,378,3 +92458,Amy,13163,24967,3 +92459,Fourth Go-Go Dancer,28170,1861056,14 +92460,Larry,121824,109708,9 +92461,Nun 2,16135,79514,19 +92462,Bob Scott,29416,103783,6 +92463,Charlotte Watson,191820,1172316,3 +92464,princ Velen,84030,1286037,4 +92465,,31244,163411,1 +92466,Missie LaHaye,20583,88834,0 +92467,Enrique,114333,105161,3 +92468,Bruce Alden,24062,8516,6 +92469,Santi,131932,1093955,5 +92470,le maire,92251,992823,6 +92471,Don Rafael,136743,1118,3 +92472,Ted Gregory,267483,1315169,7 +92473,Sara / Stella Díaz Varín,325385,1174840,3 +92474,"Kryśka Szymańczyk, partnerka ""Metyla""",74919,67278,6 +92475,Baylis,179288,167564,1 +92476,Himself,173467,8328,0 +92477,Mary Hathaway,183825,20391,1 +92478,Bar Patron,310888,1560228,13 +92479,Dennis,59678,1363086,14 +92480,Phelps,268350,102066,11 +92481,Teacher,56558,8829,45 +92482,Waiter,66447,13689,10 +92483,Glove Factory Worker (uncredited),326285,1746136,23 +92484,Dr. Mindbender,17421,81842,11 +92485,Airport Passenger (uncredited),213681,1771578,49 +92486,Walter,14976,60898,2 +92487,Maria,16151,79696,8 +92488,Mrs. Moore,273610,98879,12 +92489,Lance Rockford,26125,16644,0 +92490,Phyllis Clavering,38433,120439,2 +92491,King Ferdinand,19725,10655,9 +92492,,71725,1136711,12 +92493,Taylor,345915,1375796,8 +92494,,314462,146981,3 +92495,Helen Melohn,44869,13568,2 +92496,Mike,10665,77870,7 +92497,Rika van der Lans,59424,46468,0 +92498,Low Rider,19053,41737,23 +92499,Yuto Takashima,382170,556788,9 +92500,Sen. de Valle,78318,1427103,45 +92501,Darlynn,4982,1196487,32 +92502,Linda Christie,11610,3092,1 +92503,Fred Ferguson,11643,8608,3 +92504,Douglas Proctor,42288,1208,1 +92505,,88273,1547799,41 +92506,Conover,153163,126671,16 +92507,Waiter in First Restaurant / Station Cop / Prisoner / Guest in Second Restaurant / Kitchen Hand in Second Restaurant (uncredited),22943,89555,41 +92508,Louis,262454,543623,3 +92509,Saxon,111042,30234,4 +92510,Bok-hee,77117,1086309,15 +92511,American Soldier,8429,54932,3 +92512,Bus driver,109391,1204704,37 +92513,Walter,14145,1212897,6 +92514,O'Duffy,53865,2099,6 +92515,Struts,19606,726,3 +92516,Ligue de Susy (as Fredy Rippers),299165,1387704,12 +92517,The Kid,13763,21037,0 +92518,Joshua's colleague - CIA,170689,1154239,7 +92519,Isa,129115,1187532,0 +92520,Lieutenant Puhakka,49322,999636,5 +92521,Somchai,32168,145360,3 +92522,Gracie Williams,16442,30269,2 +92523,Mr. Cotterill (uncredited),43369,47657,14 +92524,Pianist,45227,86840,11 +92525,Shepard,47462,158473,7 +92526,Vater Loomis,8852,9221,0 +92527,Franz Liszt,129553,21605,0 +92528,Luís,378087,1206197,8 +92529,Tess (uncredited),80168,1124714,19 +92530,L'avvocato Giardini,82470,31897,2 +92531,Thai man in bar,19398,1469200,34 +92532,Vito Zarillo,37083,157287,5 +92533,Susie Higgins,95358,5790,4 +92534,Young Gavino,42225,1002713,3 +92535,Thug #4 (uncredited),4982,1232568,77 +92536,Scooter (voice),13956,76099,7 +92537,le type au comptoire,64437,35910,10 +92538,Aunt Agatha,42499,1458958,7 +92539,Newsboy (uncredited),22943,147985,23 +92540,Goldie,101998,1177625,3 +92541,Man on Temple Top,1579,1331669,33 +92542,Yuki,52637,146380,0 +92543,Some Kid,10362,1758885,13 +92544,Mario / Michele Profili / Mario Gasparri,99095,5676,0 +92545,Old Mangu,341007,1706347,13 +92546,Mike,27814,37152,2 +92547,Raymond Boyce,64129,41720,5 +92548,Azarov,63304,1176523,10 +92549,Brigitte Farell,238781,4529,4 +92550,Man in Hat,86838,5048,16 +92551,Slavic Youth,2001,1781700,35 +92552,Nani,148265,225387,2 +92553,German Prisoner #2,19996,85422,12 +92554,Sheriff,31146,1841265,21 +92555,Swan,28969,9560,3 +92556,Taipei Surgeon,240832,1426877,34 +92557,Reporter When Knute is Ill,43812,95623,30 +92558,Melissa McGuire,101669,139619,16 +92559,Barbara Warren,16240,45446,8 +92560,Gregory,16921,84703,10 +92561,Himself,159138,1306415,6 +92562,Hortense Dobson,253250,89725,8 +92563,Councilman Paley,140648,9913,13 +92564,French Girl,369885,1651406,22 +92565,Trevor,13689,83141,5 +92566,DJ Konchi,39123,20664,0 +92567,Escaped Slave,3115,552170,15 +92568,Professor Gauss,109716,14035,87 +92569,Arnaud,63717,40260,2 +92570,Esteban Espinosa,13653,69310,0 +92571,Pip,266425,1313149,22 +92572,Eye Ball,25536,612216,6 +92573,,166253,86075,2 +92574,Counselor Holly,345922,1226302,3 +92575,Scooby-Doo,15601,58272,0 +92576,Kate,200511,207401,1 +92577,Daphne,21956,96340,2 +92578,Sgt. Vitanza,64725,1074078,12 +92579,Pitcher,56558,218536,39 +92580,Ana Remzi,34944,89684,4 +92581,Bucky,26688,96038,33 +92582,Leila Markby,322518,1256820,4 +92583,Sally Rinnel,68387,173105,30 +92584,Shiva the Yoga Teacher,91070,61218,20 +92585,Chuck's Mom,30411,22556,3 +92586,Thérèse,126676,19646,1 +92587,Special Appearance,90634,87773,10 +92588,Patu,62825,1381434,1 +92589,Mimì,28212,49756,3 +92590,Nathanial Broadman,2267,61981,6 +92591,Morador do prédio,117534,1902465,35 +92592,Von Boulton - Schlemmer,335509,103951,2 +92593,Alkali Communications Officer,246655,1796425,78 +92594,Sandra,267557,225319,11 +92595,Mr. Cadman (uncredited),50073,8517,13 +92596,(Israel),1926,20043,4 +92597,Angèle,60106,39195,5 +92598,Rosenrot,13305,1093466,12 +92599,Oronzo Canà,48805,80230,0 +92600,Jenny Bowman,86168,9066,0 +92601,Walburga,328032,1313066,13 +92602,Haliey,70586,75330,10 +92603,segretario dell'onorevole La Duca,301272,1330099,13 +92604,Pentan,107104,198713,0 +92605,Alain Regnault,92257,48997,0 +92606,Henry Wheeler,27349,38162,16 +92607,Robbie,243935,1473241,12 +92608,Sillers,9629,33719,4 +92609,Richard,2687,26995,10 +92610,,133783,1476856,18 +92611,Ah Ching,105703,69830,1 +92612,Pumpkin,4551,1680695,25 +92613,Himself,36883,13484,7 +92614,marito di Francesca,43648,232886,8 +92615,Toymaker,43419,34574,12 +92616,Superman (voice),14011,6677,4 +92617,rappresentante d'armi inglese,82350,1014273,4 +92618,A,282069,237359,14 +92619,mare de Salvador,1896,19820,6 +92620,Bunker (voice),137200,2,3 +92621,Zoë,348320,1197739,9 +92622,Marie Antoinette,43252,131441,14 +92623,"Edward, Earl of Newark",115972,85628,3 +92624,Pig,33923,40212,11 +92625,Padre de Micaela,125619,1293074,12 +92626,Mrs. Breitberg,7483,2744,3 +92627,Capt. Pete Rodgers,59197,222882,2 +92628,Anne,104644,9805,1 +92629,Ferdinand,341077,1210980,10 +92630,,320005,1427407,3 +92631,Debbie Shipman,336775,113867,8 +92632,Marco Minelli (as Eduardo Cianelli),28115,16761,2 +92633,Jack,20718,1524,10 +92634,Jean,43904,11550,2 +92635,Young Dan Dark,30141,26292,10 +92636,Paul,270400,1845881,16 +92637,Rose,359255,1508176,8 +92638,Kid,138496,187058,7 +92639,Garadoux,66897,545538,1 +92640,,45197,132426,2 +92641,Drunken Man in Alley,2080,1353647,43 +92642,Margherita,42892,67323,4 +92643,Beast,49038,47879,0 +92644,Walt,64983,24299,3 +92645,Eddie Moxie,193177,1040410,4 +92646,Uncle Adam,118953,30513,7 +92647,Angus Dibble,244201,34280,9 +92648,Ms. McCallister,26267,29933,7 +92649,Thingamajig,65881,138509,1 +92650,Sheldon S. Kompett D.D.S.,19827,1903,1 +92651,Le fétiche parleur,21348,1200641,20 +92652,Tracy 'Tragedy' Jones,17303,95280,3 +92653,Herself - at Banquet (archive footage) (uncredited),33740,6598,82 +92654,Patrick O'Bryan,296524,97446,15 +92655,Teacher,188598,1776750,9 +92656,Le petit nerveux / Le casseur / L'exterminateur (voice),356161,145678,8 +92657,Dr. Veber,40985,95315,5 +92658,Titan (voice),38055,21007,3 +92659,Efkan,361181,1397249,5 +92660,Fireman (uncredited),54139,18649,22 +92661,Himself,390747,1662627,6 +92662,Herself (uncredited),44123,157498,2 +92663,Hotel Executive,243683,168554,38 +92664,Ming,338421,1629648,24 +92665,New Bellboy with Vase (uncredited),121003,13298,13 +92666,Charles Vernay,74525,11028,4 +92667,Enguerrand de Marigny,79892,173841,5 +92668,Confederate deserter,11897,6725,19 +92669,Brooks Clayburn,75880,100253,2 +92670,Himself,360341,60150,3 +92671,Diaz,1810,19219,11 +92672,Dustin,40208,101037,9 +92673,Supermarket Customer,78177,171299,21 +92674,,124080,9880,3 +92675,Julie Corky,9893,57674,0 +92676,Bob,45013,173269,34 +92677,Doreen - Corny Collins Council,2976,1752321,44 +92678,Psychiater,8332,38682,9 +92679,Largeman Follower,75761,92494,30 +92680,Theo,426230,1833228,18 +92681,Constable Beames,41599,106626,10 +92682,Lloyd,29705,2438,4 +92683,Alexander Cathcart,77949,120833,8 +92684,Captain Chik,21519,1135238,7 +92685,JW Menapace,159638,25659,5 +92686,The Inspecter,38150,119793,11 +92687,Maður á drossíu,72596,18821,22 +92688,Michael Devlin (as Peter Tambakis),137491,52861,4 +92689,Tibbe,25797,52167,1 +92690,George,252746,14729,1 +92691,Masha,99738,1090076,1 +92692,Dr. Chapman,335509,120071,6 +92693,Adibe,13802,57096,23 +92694,Annie,84233,39775,6 +92695,Bill the Krill (voice),65759,1892,10 +92696,Valentina,136752,1208798,11 +92697,l'ami de Simon,4279,11192,17 +92698,le domestique de Tonton,74878,580699,5 +92699,Huang Chung (West Block),17467,81670,2 +92700,Četnik,34449,40,0 +92701,Hagman,70133,390552,5 +92702,Benny,429238,1563222,3 +92703,Jim Verret,224885,2053,0 +92704,Seeker Dawn,72710,1369033,35 +92705,Shivangi Kapoor / Madhu,66292,86077,2 +92706,Cadet Bugler,14008,1239414,12 +92707,Virgin Mother,14126,1086558,13 +92708,Tom,1922,19996,2 +92709,Otto,32099,108863,16 +92710,Bayou Babe (uncredited),369524,1808631,43 +92711,Seignol,246422,72590,5 +92712,Posie,63924,87020,3 +92713,Jaq / Grand Duke / Baker / Sir Hugh (voice),14128,43125,1 +92714,Henchman #5 (uncredited),109439,1310385,29 +92715,Anya (as S. Ryabova),83614,624241,2 +92716,Priest,38448,9029,8 +92717,Europeer,394645,1611251,5 +92718,Arsène,1561,17590,1 +92719,Chorus Girl,40633,1787560,11 +92720,padre di Vincenzo,302802,1875247,16 +92721,Rocio,114922,962031,2 +92722,Opera Security,177677,1274600,38 +92723,Adnan,280030,1260004,10 +92724,la grand-mère,76268,267962,5 +92725,Venusian Guard,33472,1580378,17 +92726,Cybil's Bassist,58467,1704732,33 +92727,Thomas Cream,371504,1665,5 +92728,Jerome - the Caddy (uncredited),175035,34759,7 +92729,Kitty (uncredited),17687,29814,10 +92730,Theatre Audience,118943,1285059,11 +92731,Legionnaire,22999,141008,19 +92732,Young vampire,1450,1570211,20 +92733,Damien O'Donovan,1116,2037,0 +92734,Krebs,11248,19901,8 +92735,,239562,9781,9 +92736,,1416,25003,4 +92737,Heraklion,37958,1287220,23 +92738,Detective Penter,41599,11139,11 +92739,NY Police Commissioner,257344,166489,34 +92740,D.A. Lawrence,241239,35013,4 +92741,Muumimamma,293271,221211,3 +92742,Anna,438634,1748696,3 +92743,Bassist,61035,1446120,47 +92744,Lupe,391618,102222,1 +92745,Erik,256311,17373,0 +92746,Caster (uncredited),109491,1485332,37 +92747,Reino Helismaa,55403,89502,1 +92748,,38154,135202,19 +92749,Himself,390747,1662623,2 +92750,Olivia,52520,52030,23 +92751,Chiaki,11838,552514,21 +92752,Marine Sgt. J.J. Callahan,15807,32437,11 +92753,Sarah,388243,105186,1 +92754,Oma Astrid,67499,1275860,12 +92755,Manny,1381,824,8 +92756,Klaus,10921,78151,11 +92757,Huey,28448,99404,14 +92758,Paul,4441,37290,7 +92759,Hopkins,171308,93165,10 +92760,Gaspard,329682,93903,4 +92761,Olivia,66022,115780,5 +92762,Jenica Harmon,336775,113818,13 +92763,Dirk,13777,75255,7 +92764,Sergeant Carlos Diaz,32526,6861,3 +92765,Alan Asher,146243,113785,4 +92766,Antonio,48502,140606,4 +92767,Reporter,44000,114533,13 +92768,Android Jane,249021,1010349,8 +92769,Fillide Melandroni,159810,100371,2 +92770,NY Subway Girl,44389,95979,15 +92771,"Special Appearance in ""Vathi Kutchi"" song",69401,229117,6 +92772,Spam (voice),378236,1215448,14 +92773,Harris,344906,1790733,11 +92774,"Soukeyna, the mother",47226,1546420,5 +92775,Penny McGuire,113137,31140,0 +92776,Club Goer,77930,1784645,47 +92777,Marist Monk,5237,928729,14 +92778,Alain,285858,1428447,9 +92779,Marshal Ken Maynard,285946,550315,1 +92780,Giles's mother,55177,83052,8 +92781,Todd Lyons,34482,112476,8 +92782,Go Dōgan (voice),155765,89878,7 +92783,Mann im Anzug,2349,24062,9 +92784,,102901,44256,0 +92785,Ayla,37586,141974,1 +92786,Juan,32497,109283,3 +92787,Bulldog (as D.P. Hodges),232731,144236,2 +92788,La fille de Rita,64944,572243,11 +92789,Denver House Bartender,43821,121066,46 +92790,Sir Mark Sykes,157843,1682759,20 +92791,Ella,105551,80238,3 +92792,,162056,122023,15 +92793,Vanessa Doofenshmirtz (voice),71689,168197,9 +92794,Thelma,3520,29395,2 +92795,Maquillador,335053,931271,16 +92796,Steve Alden,229221,148843,0 +92797,Soldier,27549,1849161,14 +92798,Manuel,65674,93093,11 +92799,Cathleen,73873,33399,14 +92800,Mrs. Tully,44626,120010,7 +92801,Linda,84340,10556,12 +92802,Mônica,203217,562161,8 +92803,Gary King,107985,11108,0 +92804,Hepcat,322548,1255907,8 +92805,Alex,27196,97211,6 +92806,Specker Dave,7220,11107,5 +92807,Dollar Bill Girl,11358,1773118,44 +92808,Gray,100110,20212,9 +92809,Frankenberg Security Guard,258480,1545509,24 +92810,Jane (voice),303360,53485,3 +92811,David Webb,21780,1232603,15 +92812,Niu San Guang,248376,1342862,7 +92813,Chief Rakos,38404,117035,5 +92814,Headmaster Crusoe,121598,1676027,22 +92815,Anton,429174,1078035,4 +92816,Reporter,229297,1351859,26 +92817,,1838,1439354,21 +92818,'Dixie' Logan aka Judge Joel Conroy (as Douglas Blackley),51476,26029,3 +92819,The maid,66897,545468,5 +92820,Lt. Alice Tomlen,109441,12309,3 +92821,Julio Soriano,109690,3811,7 +92822,Chips,14387,132103,15 +92823,Bob Sommers,128669,24937,0 +92824,Dan Mulligan,198277,103,0 +92825,Michel Aubertin/Mylène,292387,17896,1 +92826,Buselli,29952,1038485,7 +92827,Agent Lio,302699,202930,16 +92828,Lily (as Teenager),341886,1390421,3 +92829,Kathy,98864,2207,9 +92830,Docteur Guérinaud,152989,78470,12 +92831,Cindi,69668,190895,11 +92832,Mrs. Tweedle,49391,83437,6 +92833,Cooler,24752,115305,1 +92834,Antinea,63179,236562,3 +92835,Åke's sister Aja,125926,1264157,3 +92836,Bryce,179812,1062644,11 +92837,Ross's Soldier,1724,1366366,45 +92838,Amiga de Delfina,95536,213289,9 +92839,Deckermensky,115616,11085,1 +92840,Hospital Superintendent,176627,1036293,25 +92841,Desi,89492,19537,4 +92842,Bernd,279179,1323310,6 +92843,Irfan Bhai,80281,1118194,6 +92844,Lizzie,8272,1690483,12 +92845,Kwak Man-ho,257331,1020859,5 +92846,Ms. Barclay,9785,59245,18 +92847,Minister's Assistant,2994,38597,7 +92848,sorella dell'ingegnere,82080,21606,9 +92849,Frits Johansen,1838,19355,5 +92850,Mad Hatter,25694,2437,12 +92851,Specializzanda,110447,1752448,17 +92852,Debbie,17725,105494,13 +92853,Sajid,20132,85697,9 +92854,Himself,84340,145309,17 +92855,Ian Mercer,58,939,14 +92856,Uncle Rollie,28704,21278,2 +92857,Elizabeth Rambeau,131898,14500,1 +92858,Welder,47404,1099216,19 +92859,Alfred Pennyworth (voice),22855,24320,16 +92860,Sir Cedric Charles Willingham,10804,11390,1 +92861,John Goode,43388,67685,2 +92862,Tam King-Yiu,290864,78878,7 +92863,Nightclub announcer,43113,1478364,53 +92864,Walter Rising,176627,30160,6 +92865,,56589,578503,15 +92866,,86985,1523040,24 +92867,Old Black Man,147829,1402935,28 +92868,Manolo,254869,228878,19 +92869,Otto,257454,10028,10 +92870,Léo,13710,77860,1 +92871,"Teck, the father",188598,1170105,1 +92872,Lu,338676,1009160,3 +92873,,96106,1281102,19 +92874,Prison Director,33273,592709,10 +92875,Vinnie,340224,1232084,5 +92876,Jeanne Dielman,44012,3508,0 +92877,Sgt Dennison,282963,549567,6 +92878,Dean Deeley,19203,55257,4 +92879,,352199,1509239,6 +92880,Himself - at Banquet (archive footage) (uncredited),33740,14868,101 +92881,Mitchell Palmer,88794,25879,2 +92882,Mãe,228198,562160,6 +92883,Ben Wingate,283384,17052,4 +92884,Bugs Bunny as Brunhilde / Elmer Fudd as Siegfried (screaming) (voice),53217,33923,0 +92885,Olmo als Kind,3870,34041,15 +92886,l'épicier,79343,74922,7 +92887,Tori Valentine,3563,215772,13 +92888,Eagle,17927,17273,16 +92889,Party Hostess,98644,1029130,12 +92890,Drakh,10916,78148,10 +92891,Kazik,39936,489961,2 +92892,Helicopter Operator (uncredited),25953,1631702,12 +92893,Adanne (singing voice),335053,95607,30 +92894,Jennifer,10066,62754,12 +92895,Clive Landseer,93862,183748,3 +92896,Samaara,253154,74688,3 +92897,Song-yi,15067,126743,5 +92898,Richilde,9503,33041,17 +92899,Trog,44000,1558152,14 +92900,"Jefferies, the Butler",43850,1026536,8 +92901,Gerald Krzemien,19850,40009,3 +92902,,211233,1029081,4 +92903,Ed Malone,2982,10226,2 +92904,Cleopatra,357106,1502719,2 +92905,Eliot Rosewater,24559,369,20 +92906,"Raj ""Raju"" Verma",118809,42803,0 +92907,Jimmy Dugan,399894,217437,10 +92908,Busrider,268920,1687032,34 +92909,Leslie,205798,101873,13 +92910,Lamb Mask,83899,1140572,10 +92911,Sister Véronique,286595,19064,5 +92912,Satyadev's Uncle,300983,1055740,13 +92913,Joan Shipley,84903,931432,3 +92914,Sheriff,43821,33362,17 +92915,Lauri,15045,37046,7 +92916,Rolland Lesage,41277,553892,2 +92917,U.S. Senator,8988,131427,83 +92918,Michiko Omachi,108634,1176978,6 +92919,Kim Houang,38883,24891,1 +92920,Craig Weldon,17654,47969,31 +92921,Paul Benthem,50364,97581,6 +92922,Wolfgang Priklopil,166666,20258,1 +92923,Cloud,32654,21908,0 +92924,June Hamilton,55784,1204482,9 +92925,Dee Dee,24963,109783,10 +92926,Douglas Hall,244201,90517,1 +92927,German Soldier (uncredited),16442,1379419,55 +92928,Warder,84352,79359,12 +92929,Russian Policeman,2503,1280233,24 +92930,Alice Mckee,1450,17270,1 +92931,Comandante di Pianosa,235208,1078993,7 +92932,Franklin,44388,51391,5 +92933,Sunset Corpse,82654,1548738,19 +92934,Dr. Louise Banks,329865,9273,0 +92935,Chuck,73700,11805,7 +92936,Massimo,43544,128226,9 +92937,Train Passenger,56154,616605,37 +92938,Kevin Wongle,32694,58478,20 +92939,Dowager,147722,34469,20 +92940,Bill Spaulding,43812,1673794,19 +92941,Jore,164419,88853,4 +92942,Craig,26510,175919,5 +92943,rouva Tossavainen,55756,222300,8 +92944,Mutant Leader / Anchor Bill (voice),123025,54043,7 +92945,Referee,52437,115331,25 +92946,Ruby Tare,18671,86002,4 +92947,Joe Boleo,73194,30496,10 +92948,Severino Cicerchia,38285,69037,2 +92949,DIG Jai Singh Rana,276846,86508,5 +92950,Ann Ekelso,352733,1430414,16 +92951,Arianna,30449,566331,1 +92952,Myrtle,16186,18249,11 +92953,Gary,289712,155018,13 +92954,Jeff Eggby,269795,1485594,12 +92955,Isolde,8383,130915,3 +92956,Charlie Webster,105059,1683133,32 +92957,Dr. Cofi,27122,171538,8 +92958,Stiefschwester,263260,1307579,4 +92959,Daniel,345916,6165,1 +92960,Bank Official,140470,32139,20 +92961,Dan Gallagher,43896,33004,2 +92962,Henchman,39276,552170,18 +92963,Rolf,47956,234297,4 +92964,Liz Parsons,72545,38025,5 +92965,Partisan,47900,1537663,6 +92966,Barut Osman,148697,1052885,2 +92967,Dong-Wook,376252,1614018,12 +92968,,15468,83191,7 +92969,Bit Part,150712,128944,21 +92970,Inspector Ho Sheung Sang,45303,940339,0 +92971,Karla,20439,56356,2 +92972,Ruth's Mother (uncredited),151086,1797361,6 +92973,Chris Lee,333352,1029033,20 +92974,Shobei Tsuchiya,27031,134020,5 +92975,Piano Player,75880,858,4 +92976,Tim Dooley,242382,117145,5 +92977,,25626,130985,55 +92978,Dormammu,14830,13477,5 +92979,Framreiðslukona,72596,1114553,41 +92980,Tara,408509,59620,3 +92981,Stunt double on set [Cameo],53168,18897,4 +92982,Dazzy,90120,100173,1 +92983,Himself,259395,1238012,1 +92984,Emanuela Mazzolani,81654,592197,2 +92985,Aydın,51334,999758,5 +92986,Turi DeSimone,28847,99545,2 +92987,,248747,125855,2 +92988,Mark Biello,28730,26852,2 +92989,Xavier,76198,11191,8 +92990,Maya,411081,38581,1 +92991,Antonio Ramirez,28682,101602,11 +92992,Susan Temper,40368,140851,1 +92993,,181456,1524416,25 +92994,Américo Vilarinho,132608,228058,2 +92995,Kuririn,39107,65510,14 +92996,Pemba,211088,1304687,7 +92997,Anyuta,142881,1118053,1 +92998,David Ghantt,213681,58225,0 +92999,President,31067,3037,1 +93000,Williams,19754,64670,10 +93001,Gracie,54318,1047942,10 +93002,Hispanic Thug,354979,1835282,65 +93003,Himself,311585,14999,3 +93004,Wicks,15935,15340,7 +93005,State Trooper,339403,1635152,37 +93006,Jordana Garcia,9815,10839,3 +93007,Profesor,153266,1147,2 +93008,Rita's Guard #2,86647,1640658,6 +93009,Brooke,263627,111920,3 +93010,Hilda - Cook #2,18569,1466152,40 +93011,Theresa,12645,129714,9 +93012,Chester,92341,145839,3 +93013,Elaheh,266102,76792,1 +93014,Janet Beldon,13788,17832,9 +93015,Goliath's Assistant - David,53419,13848,1 +93016,Additional Voice (voice),177572,158124,26 +93017,Monteray Tavern Doorman,31899,940651,41 +93018,Chip Johnston,77875,95475,17 +93019,Maya,18616,83352,2 +93020,Carl,29058,1203008,5 +93021,Roache,88005,10872,10 +93022,Hank,43829,96302,20 +93023,Bag Lady,8852,11903,14 +93024,Joan Reynolds,38461,14655,1 +93025,Lisbeth 'Liz' Bard,41495,29623,1 +93026,Capitano Marchetti,124202,41161,0 +93027,Mary Bright,116723,17606,1 +93028,Cpt. Lee 'Apollo' Adama,69315,50668,3 +93029,Driver of Moving Cart / Policeman at Bowling Alley,99909,14419,25 +93030,Alexandra,63958,96434,12 +93031,Detective Oh Eun-shil,13855,939135,3 +93032,Adele Tasca,47561,16757,0 +93033,Dodo,184741,30005,2 +93034,Lily,41283,11825,3 +93035,,57983,227727,7 +93036,Shang Wai,55156,52908,6 +93037,Ram Butler,80320,14505,6 +93038,Hellströmin vaimo,442752,234253,11 +93039,Mrs. Crawford,278348,18750,1 +93040,,344560,63364,5 +93041,Masked Man,198663,79025,14 +93042,Captain Follyard,144471,170561,5 +93043,Александр Иванович,121688,579743,5 +93044,Aisha's Sister Cala,12113,77498,13 +93045,Morgue Attendant,8899,1637839,12 +93046,Joel,193523,1173860,6 +93047,,391438,1032546,6 +93048,Himself,22752,120529,14 +93049,,1838,1441405,28 +93050,Raisin (voice),38579,4581,4 +93051,Tom Olson,39824,58641,8 +93052,Alex (10 yrs),200727,1734968,21 +93053,Justin Carver,36427,56730,1 +93054,Dr. Noah Praetorius,23152,2638,0 +93055,Allyson,27122,1519297,10 +93056,High School Party Goer,274479,1542698,16 +93057,Rev. Tobias Tubbs,172445,121889,3 +93058,"Vannucci, Rita's Maid",77412,244801,7 +93059,Emil,19996,85417,7 +93060,Young Joanne,83714,65760,10 +93061,,209413,1572390,6 +93062,le concierge,76703,579798,9 +93063,Chris,64936,105338,3 +93064,Larry Stooge,16135,79509,14 +93065,Bodyguard 1,61035,37248,44 +93066,Simon Bowker,114872,4343,3 +93067,Rube Benedict,117999,1518588,5 +93068,Briggs Lowry,9664,51383,11 +93069,Taxi Office Clerk,10475,171189,14 +93070,Alison Gordon,176,2140,2 +93071,Haru (voice),51739,43663,6 +93072,Al Bert,12525,1370,3 +93073,"Алексей Витальевич Алинкин, очередной кандидат в губернаторы «от Эммануила Гедеоновича»",20963,86879,16 +93074,Baby Boy #1,339419,1650211,57 +93075,Stunt Rioter,25941,1795844,25 +93076,Environmental Tech,329865,209819,13 +93077,Tereus,340275,1531596,29 +93078,Pharmacist,110598,53552,7 +93079,Chris Mattson,13279,17178,1 +93080,Trainee Wong,59861,79082,16 +93081,Sari,324670,973998,7 +93082,,20646,72451,14 +93083,maître d'hôtel,35016,1416136,34 +93084,Mussa,440508,23346,0 +93085,Martin W. Harrow,36373,14831,0 +93086,Капитан Смоллет,49418,142229,1 +93087,Old Klaus,19996,141599,21 +93088,Cameo,210940,12827,10 +93089,Paul,83770,216785,13 +93090,,91261,99265,0 +93091,Miranda,33788,70175,5 +93092,Acrobat (as Langry Jr.),33481,110771,20 +93093,Reporter,43811,31771,25 +93094,Tobias,130957,22647,2 +93095,Jack Taylor,2830,28641,9 +93096,Anita Panchouri,403593,1390164,3 +93097,E. Quinlan,26390,210695,16 +93098,Dianna,15797,31714,2 +93099,Judge Pike,44895,588,4 +93100,Hutch,18569,119543,21 +93101,Rakka,20507,86251,6 +93102,Charlie Roy aka The Judge,31167,82861,6 +93103,Judge Miller,5172,3041,17 +93104,Sarah,137217,58800,3 +93105,Clive Webb,33343,110525,1 +93106,Hestia,31280,97424,1 +93107,Greta,106944,83259,0 +93108,Martine,300,4287,5 +93109,Segunda,330171,958,4 +93110,Fetcher,91419,6577,6 +93111,Susan's friend,426253,1857592,8 +93112,Charles,142528,32657,0 +93113,Party Guest (uncredited),56135,115995,15 +93114,Jenny Bennett (voice),9297,57192,4 +93115,"Himself, others",282268,10713,3 +93116,Peggy,1116,1896854,11 +93117,Ispettore INPS,66700,128416,9 +93118,Polly Deely,19203,84299,0 +93119,Destroyer Captain,17911,131740,19 +93120,,246829,130876,8 +93121,Ricky Romero,20325,113574,6 +93122,Burke Ramsey Auditionee / Himself,430826,1891546,55 +93123,Tenchi Masaki,34935,112135,0 +93124,Jason Saks,32540,109318,4 +93125,Taylor Callum,24801,90033,0 +93126,Minnie the Shrimp,72096,1139749,38 +93127,Edna Shaft,118121,5698,1 +93128,Jenő,436343,1633625,2 +93129,Sheriff Deets,67328,84080,6 +93130,Lei Peng,222216,1278402,7 +93131,Gordana,18178,550008,5 +93132,Andrés,264729,105217,5 +93133,The Custume Designer,229254,232474,4 +93134,Supermax Guard,209112,1696222,105 +93135,Revolucionario (uncredited),198795,1507530,25 +93136,,32234,13283,5 +93137,Anne,27061,96859,1 +93138,Justine Moritz,3072,30098,7 +93139,Looter (uncredited),45527,1896719,9 +93140,Elsie Edwards,10918,134896,16 +93141,Jonathan,84333,4451,3 +93142,Radio Tokyo Man,227306,75748,32 +93143,Ellen Roberts,40765,97039,2 +93144,Mugsy,33472,78773,3 +93145,Jonas,301875,529,2 +93146,Background Break Dancer,10362,1189078,32 +93147,Roth,70586,17857,6 +93148,Bill Grand,51881,4139,1 +93149,Chester Schofield,38792,3150,4 +93150,Mickey,7547,58733,15 +93151,Mann am Eingang des Casinos,308174,1888494,30 +93152,Paul,298584,1129413,1 +93153,Doug Kaines,60505,21399,2 +93154,Dr. Gunthens Tochter,3037,29827,10 +93155,Miriam,17725,72314,11 +93156,Welcome to the 60's Dancer,2976,1463851,149 +93157,Lee Strobie,43384,12499,1 +93158,Constance Uva,243935,14702,14 +93159,Himself,374460,1215841,24 +93160,Michael,209248,1192752,0 +93161,Jill Galloway,241930,1276951,4 +93162,Arthur,336149,1455179,0 +93163,Queen Isabella,19725,47743,10 +93164,Baba,259690,1415889,8 +93165,Grateful Dead Guy,1665,51918,8 +93166,Miss Mary Raines,42345,46780,1 +93167,Lilly Morgan,67328,101063,4 +93168,Sarah Delporte,17845,105979,6 +93169,Surtur (voice),284053,6574,30 +93170,Mikolaj,79221,131696,0 +93171,Lana as a child,104973,93092,11 +93172,Pop Kelly,42062,95728,10 +93173,Recruiter,18651,1457572,66 +93174,James Medland,36519,7124,4 +93175,Jude's Liverpool Girlfriend,4688,38946,7 +93176,Polka Man,51036,1879477,29 +93177,Shaggy (voice),16390,16418,1 +93178,snack bar owner,135799,1178881,11 +93179,Michael's Girlfriend,92060,926,1 +93180,Tony,176627,32435,4 +93181,Imperial Officer,311324,1193310,11 +93182,Turone,96106,1281095,11 +93183,Priest,89591,102761,7 +93184,Williams,45211,132488,3 +93185,Krupskaya,56448,6199,6 +93186,,95919,99692,6 +93187,villeggiante,82080,1192088,25 +93188,Hawkeye,14613,101247,4 +93189,Bóndi 2,72596,1114552,40 +93190,,78450,1559779,11 +93191,Tami-Lynn,72105,207150,7 +93192,Himself,14273,1081559,1 +93193,Cabaret Dancer,264309,569144,16 +93194,Tria,24556,20187,9 +93195,Himself,84309,1060567,2 +93196,Charles,224282,117437,5 +93197,Remy Farnwell,293082,60462,4 +93198,Micky,128657,121021,5 +93199,Mario Gambretti,84496,3265,2 +93200,Oliver,73424,28415,2 +93201,Himself,173465,1266232,0 +93202,Carter,203264,88183,1 +93203,Sgt. Lejaune,189621,128324,5 +93204,Bar Kappara,169881,25074,9 +93205,Martha - the Mercers' Maid,111582,987012,15 +93206,La mère de Claudio,54155,549323,10 +93207,Joe Jefferson,42473,1405825,24 +93208,Paulo,156180,592680,4 +93209,Jeannette,417936,75346,4 +93210,Stationmaster,96724,206726,50 +93211,Francine,81215,80474,0 +93212,Minister,43829,34280,21 +93213,Wilson (voice),21765,49002,3 +93214,Eckle (voice),16866,968218,6 +93215,Martha,94251,106584,16 +93216,Noelle,43923,34847,1 +93217,Kochegar,56212,223798,0 +93218,Giannoula,53128,94875,2 +93219,"Walter, The Director of Careless Talk Film",340101,1349801,29 +93220,Sana/Zeisha,20493,77234,1 +93221,Lord Castlepool,3686,18509,8 +93222,Kurt Durling,93562,33004,2 +93223,Prisoner (uncredited),339403,1635136,55 +93224,Baron Pappenheim,315855,1100011,11 +93225,Ethereal Girl,10008,61941,10 +93226,Sorority Girl,77930,1488450,44 +93227,Sheriff,73984,563809,4 +93228,Kelly,38916,12519,1 +93229,Prosecuting Attorney,72847,14452,4 +93230,Ike Harper,97910,103619,12 +93231,Daisy,17216,114670,9 +93232,,227552,144975,14 +93233,Charlie,85350,931945,37 +93234,Alec Wade,59961,15498,7 +93235,Nicole,302666,1385057,2 +93236,Willem (as George Siegman),134475,8837,3 +93237,Young Boy,295723,1418255,25 +93238,Insp. Farbet,181456,25180,2 +93239,Kimberly,336850,1457535,2 +93240,Meu Velho,40859,90210,12 +93241,Hexe Baba Yaga,14482,86700,2 +93242,Pierrepoint,258251,1123,7 +93243,Norman,13802,10748,38 +93244,Emily Cooper,360606,966902,8 +93245,William Clarke Quantrill,134435,95082,2 +93246,Stunt Police,25941,1467124,26 +93247,Aunt Joanne,55294,955949,3 +93248,Himself,15725,110543,5 +93249,Kal-El / Clark Kent / Superman (voice),43641,59222,0 +93250,"Homem (segment ""Quando não há Mais Amor"")",211166,1241,8 +93251,Patrik Hedström,389614,997641,2 +93252,Emily,82654,1504467,27 +93253,Bar Thug,64807,1158069,14 +93254,Male Attendant,242042,82511,37 +93255,Hung,42120,109301,15 +93256,Carlos - Spanish Interpreter (uncredited),102144,151909,9 +93257,Ah Wah,24163,25246,0 +93258,Freshman in Baseball Club,33333,121796,8 +93259,don Gomez,338438,99530,8 +93260,Anfissa the Nana,277396,202427,9 +93261,Detective,87293,1209479,21 +93262,Earl Wilson,315664,28478,9 +93263,Annie Herman,92285,93644,2 +93264,Dr. Cheney - Coroner (uncredited),28433,34279,17 +93265,"Henry, Prince of Wales",106851,158837,1 +93266,Catherine de Montfaucon,3051,20141,0 +93267,Ottakar,64454,233493,6 +93268,Erich Van Wyk,339530,1459810,6 +93269,,143068,1118284,1 +93270,Sternchen,311301,229396,6 +93271,Dave Cameron,42640,1023463,5 +93272,Stateira,1966,51102,40 +93273,Mr. Turley,42703,151537,19 +93274,Prof. Hendricks,40804,88894,4 +93275,Narrator,342052,228,2 +93276,Margaret Beetle,62670,52951,9 +93277,Le chatelain,57382,226024,8 +93278,Libyan Guard,24973,1135034,27 +93279,Colonel Jackson,43821,96069,9 +93280,Grace Schwab,62838,34490,17 +93281,Dr. Frank Whitman,140648,27860,0 +93282,,37213,129701,9 +93283,Mr. Paul (voice),393559,1201987,12 +93284,,375199,85588,4 +93285,Daniel Conroy,183412,1419648,8 +93286,Reporter (uncredited),90465,30292,18 +93287,Bart,924,79411,9 +93288,Louisa Alvarez,45013,270,17 +93289,Sam,46972,28166,4 +93290,Ann Proctor,42288,11026,3 +93291,Grandma,85350,2857,8 +93292,,166027,37233,1 +93293,Gloria (voice),9836,328,2 +93294,Hagu,72592,84028,1 +93295,Sophie,29161,103058,5 +93296,Reporter / Supreme Court,339419,1650166,36 +93297,Welcome to the 60's Dancer,2976,1752802,147 +93298,Rudy - il Marsegliese,39979,3774,8 +93299,Dutch Dooley,25330,18977,0 +93300,Darla,10033,62246,7 +93301,Nathan,103972,92403,2 +93302,Himself,63144,1624628,25 +93303,Himself,18893,33684,9 +93304,Sonny Hooper,16214,16475,0 +93305,"Monsieur Curtatoni, l’ingénieur",92586,32677,5 +93306,Magistrate,60965,41274,6 +93307,Pierre Goupil,43026,28247,4 +93308,poliisi,442752,1761850,42 +93309,Pit Boss,71120,1872177,15 +93310,Receptionist,7942,73967,21 +93311,Sam Pollock,5413,25074,7 +93312,Kozo Hirabayashi,294651,63706,6 +93313,Lt. Richard L. Perry,147722,82216,0 +93314,Cynthia,166393,195430,3 +93315,Aniela Kargulowa,8211,54075,8 +93316,Janet Armstrong,44578,29236,4 +93317,Doze,11553,69830,3 +93318,Officer Ochoa,456781,98401,18 +93319,Parrucchiera,42674,128414,8 +93320,Billy Hennessy,14476,76945,4 +93321,Rodrigo,300596,81848,8 +93322,Un cadre (as Frédéric Venant),53404,1664165,12 +93323,Petritsky,96724,1428460,31 +93324,Rocket Commander,62472,235385,12 +93325,,72592,72202,12 +93326,Dumitru,112675,556457,0 +93327,Szukający toalety w niebie,155426,1519451,15 +93328,Ann Davis,30644,106666,4 +93329,Gloria,11206,586693,6 +93330,Ezra,137093,8177,9 +93331,Brewster,17927,440306,7 +93332,Rūdolfs Jurciņš,144331,1192364,3 +93333,,88012,84362,13 +93334,Bouncer #2,241258,565421,9 +93335,Student,38322,1506243,57 +93336,Carl Barber,86241,6462,8 +93337,,86985,1442714,14 +93338,Gendarm,266044,1822968,18 +93339,Wallace 'Wally' Stoner,25807,30240,11 +93340,Katia Chernov,7916,16807,3 +93341,Iron Spoon,55534,7862,26 +93342,Delila,7459,20259,20 +93343,Laura Harkness,4459,37445,3 +93344,Benito,259593,1061273,6 +93345,Lee Ann Dorfman,169068,77803,3 +93346,Jack 'Extralarge' Costello,213755,18841,0 +93347,Chambord / Monk (as Gregory Gay),92796,19551,9 +93348,Thibaut,5590,1662,8 +93349,Jacob Geiz,102272,37323,2 +93350,Professor Soichiro Amamiya,60160,58450,6 +93351,Nurse,8988,1741984,63 +93352,Constable Rube Whipple,31509,1409199,12 +93353,Bouncer,84348,1090697,28 +93354,Louie Dumbrowsky,193435,14034,2 +93355,,42852,1078659,28 +93356,Scab,340275,1531620,66 +93357,Wedding Guest,306952,1511986,45 +93358,Satta,49712,103126,8 +93359,Jenny,401164,1817451,8 +93360,Dr. Brack,51571,105007,3 +93361,Tob Ittipat,77094,931444,0 +93362,Ishwarchand Thakur,31364,35780,0 +93363,Steve Jones,41479,12640,0 +93364,Mother Superior (uncredited),4497,581402,17 +93365,Fincher,139463,199975,10 +93366,Detective Garces,463906,17305,8 +93367,Atticus Cody,60071,5563,0 +93368,Cyril,16791,80860,3 +93369,бригадир Леонид,31059,582484,0 +93370,Sam Carter,60935,33192,1 +93371,,86985,1066130,20 +93372,Wife,8935,85962,2 +93373,Nurse Ana,239563,168994,6 +93374,Judith Gray,40649,52312,0 +93375,Old Erhan,300490,46069,8 +93376,Florence,258480,1545510,25 +93377,Killer,19237,34839,9 +93378,,18725,1509651,12 +93379,Nancy,112130,10485,8 +93380,Boyfriend,209251,1209369,5 +93381,Dr. Reed,171308,24625,11 +93382,Mr. Flamhaff,10096,4887,16 +93383,Pierrot,237796,27978,5 +93384,Yondu Udonta,283995,12132,5 +93385,Chett Johns,24150,49815,31 +93386,Hau,212996,1138759,8 +93387,Alice,46026,34509,7 +93388,Greg Markwell,239498,963450,5 +93389,Vagrant #2,111470,131047,25 +93390,,142656,581148,12 +93391,Sheriff,72474,55701,11 +93392,,271495,1323457,2 +93393,Steve,422472,1019097,3 +93394,Elevator Operator,120109,40212,18 +93395,Doctor,44869,105454,23 +93396,Derek Lodermeier,105945,1317209,9 +93397,Le père Courge (voice),137193,1003,0 +93398,Wayne Davis,15486,75751,3 +93399,Bert Thomas,16442,95623,14 +93400,,38189,2295,1 +93401,Captain Rameses,42542,113,1 +93402,Cy Banbridge,47386,138773,6 +93403,Phillipp Henrion,28938,28532,4 +93404,Officer Miller,27414,1206236,25 +93405,Soldier,24973,1421080,23 +93406,Leandro,111480,24478,2 +93407,The Dancer,40978,102140,17 +93408,Ada Biggers,42752,128626,5 +93409,Bob,7547,52885,11 +93410,Darry Jenner,11351,15033,14 +93411,Vakhlakov,77986,235056,2 +93412,Frank,67977,7060,0 +93413,Rosella,13283,1497223,1 +93414,Dr. Bob Hogan,28820,102119,10 +93415,Woman of Venus,36530,115537,9 +93416,Diana,11338,1160,1 +93417,UDI-assistenten,382125,85153,9 +93418,Ally Harris,397837,1550779,5 +93419,Bernd Wand,140554,54536,3 +93420,Drunk,41923,11086,4 +93421,No. 85 (as Jawed Al Berni),110552,1265906,6 +93422,Joseph Bern,110525,34117,5 +93423,Detective Sergeant Tom Brant,55846,976,0 +93424,Lynch - Barshee's Henchman,43829,144395,44 +93425,Hecky Brown,1723,18861,4 +93426,Bus Driver,23515,1362491,16 +93427,Maggie,98612,1071138,9 +93428,Baliff,127560,969316,14 +93429,Davis,52859,3341,9 +93430,Cop in Hospital,146233,206027,32 +93431,Doctor,8010,53595,13 +93432,Adele,184341,93015,11 +93433,Jonathan Simon,296626,41687,3 +93434,Omnibus Driver,140470,120461,18 +93435,Disgruntled Eh-2-Zed Customer (uncredited),290825,1113050,23 +93436,John,221240,1090138,10 +93437,Hobar,369885,6091,7 +93438,Mia Reaves,347127,1419742,3 +93439,Collins,153162,103789,15 +93440,Miss Grupe,345003,1478272,5 +93441,Elena de la Madriaga,32634,94776,3 +93442,Pinocchio / Three Pigs (voice),10192,12095,16 +93443,Himself,14761,1308766,6 +93444,Jennifer,9753,38561,1 +93445,Mr. Penny,29286,34347,1 +93446,Subject #11,29151,21200,8 +93447,Sage Sokol,58251,227566,1 +93448,Rachel,101325,211658,7 +93449,Bobby Momisa,48949,124435,9 +93450,Shi Shang,41378,240155,1 +93451,Mr. Babson,106635,89099,15 +93452,Plommie,92269,83822,10 +93453,Policeman (uncredited),47882,1030251,17 +93454,Troy,67748,1071156,6 +93455,Dancer,11172,1778298,39 +93456,Fraser McBride,10087,19923,2 +93457,Yuanjia's Father,7549,52908,12 +93458,Kevin,242033,1954,2 +93459,Big Weld (voice),9928,14639,3 +93460,Hell's Angels Pilot,2567,17417,36 +93461,Paula Crisostomo,93511,57674,1 +93462,Namseng,65881,141541,3 +93463,Flowergirl,13777,75275,29 +93464,Judge,72912,92931,6 +93465,Miette (voice),23566,92081,12 +93466,Violet Mulligan,198277,130640,3 +93467,,74171,571444,1 +93468,Limeni,15303,111058,0 +93469,Himself,256561,1296895,5 +93470,Singer,166221,51544,12 +93471,Suzanne Merevsky,190853,17074,0 +93472,narrator,55495,1839574,20 +93473,Pawel Heller,168819,2830,0 +93474,Rob Barker,409447,973651,12 +93475,Pharmacy Cashier,232672,62595,20 +93476,Grissom,31377,20405,9 +93477,Rev. Gus Horton,44718,29512,5 +93478,Giacomo,39436,16240,1 +93479,Roy Brown,84285,69494,1 +93480,Anne,24821,109914,12 +93481,Amy,10055,15286,0 +93482,,47046,1601474,8 +93483,Rikuo,234284,131563,0 +93484,Heinrich Himmler,102155,165473,12 +93485,Detective Carlos,356758,1061534,3 +93486,Randy Emmers,9471,17289,15 +93487,José Fernandez,238781,1457629,5 +93488,l'américain,64437,585717,8 +93489,Vecina de Macario (uncredited),122019,1483345,18 +93490,Leon,54715,7868,4 +93491,Pepper,91571,43203,5 +93492,Rhonda,102961,1397085,7 +93493,"А. С. Емельянов, действующий губернатор",20963,86875,13 +93494,Leon,74661,1854,2 +93495,Farmhand,120657,1186116,10 +93496,Barman,76200,39506,17 +93497,,56599,133603,7 +93498,Singer,48717,1184306,4 +93499,Michiko,121725,237362,8 +93500,Annika and Tommy's mother,11626,573570,4 +93501,Terrorist,33481,110774,23 +93502,La ragazza sotto la doccia,82083,73488,14 +93503,Ellie,269795,1673717,10 +93504,Harmonica Player,343972,1475653,7 +93505,Favorite of the Harem (uncredited),3059,97992,77 +93506,Caitlin Lee,375082,1555891,6 +93507,Cain's Friend,47186,4735,20 +93508,Olya,142746,1117908,2 +93509,Michelle,81475,1090415,7 +93510,Blueprint Dancer,243683,1398181,79 +93511,Newscaster,16131,79432,24 +93512,Beth,32893,92061,3 +93513,Mélina Cyr,209293,1192785,1 +93514,,142881,147269,4 +93515,Walter Black,50780,2461,1 +93516,Kakashi Hatake,16907,89968,3 +93517,Marianna,64934,16921,0 +93518,Col. Watherstone,77822,130012,11 +93519,Innkeeper of Adam and Eve,134480,557087,13 +93520,Otsune,89462,145250,2 +93521,Victor Neives,293167,40543,7 +93522,Brian Livingston,54752,17444,3 +93523,Mrs. Haskell,40041,173520,10 +93524,Count Seebruck,39407,18646,4 +93525,Suzanne Varenne,348025,24485,3 +93526,Herself,296194,71727,14 +93527,Himself,54988,3185,0 +93528,Billy,333091,128560,9 +93529,Fat Fisherman,36212,1190018,6 +93530,Pastor Clifford Adams,117905,107463,8 +93531,Markgräfin von Stade,50722,37411,4 +93532,Fedor,18070,95641,5 +93533,"Charlie, a Janitor",53410,13848,0 +93534,Alice,39013,1163725,17 +93535,Maria Sole,52238,145603,3 +93536,Peter,39992,52063,6 +93537,Sergeant of Police (uncredited),61541,120701,9 +93538,Osowiała staruszka na wózku inwalidzkim,418757,943523,2 +93539,William Johnson,2355,155086,17 +93540,Ralph James,32038,997707,1 +93541,Trailer Announcer (voice),32610,1091289,37 +93542,Himself - The Band,14770,72861,4 +93543,Brendan,214100,1497056,13 +93544,Amanda,80545,144250,1 +93545,Katherine Bedworth,37725,43301,2 +93546,Marcus Luttrell,193756,13240,0 +93547,Cass Daley,139718,103443,14 +93548,Chowder (voice),9297,57191,3 +93549,Keith,29832,185773,3 +93550,Адмирал Колчак,13506,23440,1 +93551,Marimacho,223485,89847,8 +93552,Mrs. Straub,94468,29644,7 +93553,Curé Leduc,16147,38529,3 +93554,Chuck 'The Truck' Wallace,13484,54709,1 +93555,Petey,70586,74748,4 +93556,Archibald Holden Buster Williams,81434,94985,0 +93557,Georgette's Girl Friend,22999,1097896,8 +93558,Twin (uncredited),51362,121146,2 +93559,Nurse (uncredited),15807,83988,20 +93560,Raul,82341,14150,10 +93561,Cinque,148615,44042,6 +93562,Himself (archive footage) (uncredited),22447,66786,32 +93563,Pookie,187596,60506,11 +93564,,118984,103598,3 +93565,Leo,3716,4936,7 +93566,Terry Stewart,70151,7632,1 +93567,Von Hindenberg,297762,65054,32 +93568,Dr. Shastri,55376,222269,10 +93569,Gayatri,190940,35776,1 +93570,Sarah,270654,6279,2 +93571,Natalie,190955,18973,3 +93572,Teddi,85196,1437791,4 +93573,Schneider,2001,1662136,41 +93574,Naomi,14525,560189,6 +93575,Mano Alfaro,159701,48530,3 +93576,Benjamin Mee,74465,1892,0 +93577,Sadovsky,85715,1470837,4 +93578,Big Eye,85648,55842,11 +93579,Seeker Song,72710,1181296,15 +93580,Milo,242835,30539,13 +93581,,24403,91579,1 +93582,Line,15177,7745,9 +93583,Dindi,22579,576126,11 +93584,Hermann,293982,1467367,22 +93585,poliisi,442752,1761847,39 +93586,Lola,351242,61178,7 +93587,Jonathan,58467,1526654,15 +93588,C.P.,29538,1108337,3 +93589,Narbonne,258384,11542,13 +93590,Dan Fletcher,229610,83783,3 +93591,Maid,365942,1144931,11 +93592,Mr. Hotchkinson,228647,1271643,37 +93593,Obersturmfuhrer Ressler,259728,1015378,14 +93594,Klaus,227262,6091,2 +93595,Buddy Ross,294016,45566,8 +93596,Young Hugo Marín,325385,1775357,15 +93597,Jukka's Work Mate,55167,147773,6 +93598,Dawson's Friend (uncredited),14615,1417291,80 +93599,Grace,173499,1156242,8 +93600,Grandmama Addams,107596,111167,4 +93601,Chief Dinelli,60086,27737,5 +93602,Interviewee #1,28090,1719892,38 +93603,Dalton Lambert,49018,17181,2 +93604,Natalie Green,109170,86314,2 +93605,Le père-maître,65898,32103,8 +93606,Angela Ralli-Thomas,340101,1339629,11 +93607,Terry,99367,17039,1 +93608,Roberta,195544,1373528,11 +93609,Det. John Kramer,116894,29465,3 +93610,Harold 'Fish Face',116232,148510,19 +93611,Sandi,14527,185178,13 +93612,,289278,74733,6 +93613,Nurse Holiday,10055,62595,16 +93614,Caroline,62764,1060475,15 +93615,Ambassador Cochran,9914,11356,1 +93616,Ester,82040,544236,3 +93617,Πασχάλης,16803,80877,1 +93618,,14804,1901801,23 +93619,Tony Fusco,297853,152345,8 +93620,Teniente Ruíz,20941,18468,15 +93621,Lola,47489,980203,3 +93622,,202238,238755,0 +93623,Le réalisateur,63401,18199,4 +93624,Actress (uncredited),43522,133459,45 +93625,Roxane,1966,5916,16 +93626,Sha Gojyo (voice),155765,84505,2 +93627,Party Guest / Naval Officer (uncredited),73430,171111,21 +93628,Judd,27873,1338126,5 +93629,Françoise-Cléone,63401,1576960,11 +93630,Stage Door Keeper,43833,552408,8 +93631,Mercenary 1,359471,1452864,24 +93632,Grit Nolte,12631,36391,8 +93633,Pete Lustig,71996,97878,5 +93634,Doctor,315664,26860,8 +93635,Cyborg,460135,65640,16 +93636,Art Gallery Patron,40807,1200416,33 +93637,Yosuke Asakura,56232,74377,2 +93638,Anna Frank,128396,1409177,0 +93639,Chuck Moreno,286545,1352652,2 +93640,Georgie,88012,31722,8 +93641,Mario,53648,1002938,5 +93642,,25450,58371,7 +93643,Oyuki,92950,581147,1 +93644,Phillips (as Stuart Nedd),47739,139313,17 +93645,Erika,193523,227454,0 +93646,Shmally,4613,38581,1 +93647,Sammy,381015,34918,3 +93648,Edmond Thibault,77776,18559,7 +93649,Kreon's Servant,26679,1088116,2 +93650,madre di Ovidio e Raf,58611,228151,16 +93651,Gandalf the White,122,1327,1 +93652,Aide,294254,307885,31 +93653,Rocco,213914,33337,7 +93654,Ma Beretti,94009,95727,8 +93655,Briareos Hecatonchires,269650,207012,2 +93656,The Man Who Can't Breathe,280092,174037,15 +93657,,315467,56890,3 +93658,Bill Kellogg,38461,120529,11 +93659,school Director,75262,229737,10 +93660,Neve,3870,34043,17 +93661,Das kleine Mädchen,6391,55055,9 +93662,(voice),16137,79559,14 +93663,Santa Claus,317182,11109,3 +93664,Green Hornet Engineer,227306,1394431,19 +93665,,38681,544572,12 +93666,Donatella Spruzzone,439998,128236,6 +93667,Mike,147132,62913,1 +93668,Dutch (uncredited),17687,1022942,9 +93669,Photographer,188161,1542941,35 +93670,Simon,435,76215,17 +93671,Blind Man,21627,84878,8 +93672,Jason,54662,184581,1 +93673,Tango Dancer,24202,91349,3 +93674,Cassei,28325,39151,6 +93675,1st Officer Roald Jensen,367006,22109,4 +93676,Chas Hodges,26796,96280,7 +93677,Elise,381255,1338472,3 +93678,Ugo,62036,37583,1 +93679,Lupe,14452,158390,5 +93680,Fighter Pilot,257344,1683847,53 +93681,Joseph - Little Boy,336004,1651995,23 +93682,Collin,18739,6645,8 +93683,Bartender,84348,1061519,18 +93684,Ho Mai-Fong,38034,1134750,4 +93685,Marcie,189,936970,21 +93686,Blue-haired Lady,272878,1683739,23 +93687,Old policeman - investigation room,43113,1478367,75 +93688,Stubbs,45875,18071,3 +93689,Lt. Col. Alexander Timmer,64129,8254,3 +93690,Deputy Sheriff John Steele,80193,4165,0 +93691,Jeanette,211158,692,5 +93692,Roy Orbison,69,420,5 +93693,Policeman,49308,33135,2 +93694,Jeune a la piscine,121539,1759915,9 +93695,Himself,39827,123511,3 +93696,2° Chierichetto Ultrà,315319,1880532,12 +93697,Rokko,211,10241,6 +93698,,76312,568846,20 +93699,Alex,18472,107809,7 +93700,Jackie DiNorscio,9950,12835,0 +93701,Waiter from The Ritz,57684,95054,19 +93702,Doc,4982,31839,12 +93703,Joshamee Gibbs,58,2449,6 +93704,Bill Vance,17669,6074,4 +93705,Carola Hiller,3577,33041,4 +93706,David,297633,65167,5 +93707,Mr. Arthur,272693,83586,8 +93708,Morris,13991,928594,6 +93709,Sweet Old Lady / Colin / Mrs. Skinner / Nelson's Mother / Pig / Cat Lady / Female EPA Worker / G.P.S. Woman / Cookie Kwan / Lindsey Naegle / TV Son / Medicine Woman / Girl on Phone (voice),35,34983,15 +93710,Shiro Miku,76757,1394339,37 +93711,Casino Patron,268920,1466630,53 +93712,,227552,157009,7 +93713,Caitlin Maguire,242310,1189982,1 +93714,Physician,15163,203538,17 +93715,Gilles,4974,40305,1 +93716,Feldwebel Zopf,30298,1137237,5 +93717,Doug,20718,10727,2 +93718,Drag Race Spectator,339419,1650168,37 +93719,Arthur Miller,337751,32031,7 +93720,Ruka (voice),72013,1247771,12 +93721,Ferris,66045,110667,9 +93722,Jordan,63326,210355,1 +93723,Jonny,17216,3492,1 +93724,Jana Ryan,134732,153611,2 +93725,Freken Bok (voice),72203,128301,2 +93726,Donald,345922,1683792,39 +93727,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1891526,41 +93728,Logger (as Peter Smith),335970,1717906,23 +93729,Andov,337758,1526002,6 +93730,Jan,80125,16250,4 +93731,,391778,1238176,12 +93732,Jedediah Smith,181533,887,4 +93733,Himself,307931,1393836,1 +93734,Aaron,156700,148992,18 +93735,Coach Walker,146322,36173,4 +93736,Dancer,33541,1759698,42 +93737,Edgy Cat,10070,19302,4 +93738,Cherry,339408,1120699,2 +93739,Sheila,45649,7706,3 +93740,Sam,29362,78341,0 +93741,Godfried Schalken,214641,73172,0 +93742,Iavarone,8882,72786,4 +93743,Scarlet,58,2450,26 +93744,Resident Doctor,153161,33705,40 +93745,Джабраил,330878,1046021,3 +93746,Catherine Miller,259894,112464,3 +93747,Himself,156908,1138122,3 +93748,Radar Operator,125063,79489,6 +93749,Puta Loca Roja,83770,18466,16 +93750,Himself,97724,1388663,14 +93751,Steve Rendazo,7326,52458,10 +93752,Helena,159211,1140977,1 +93753,Rodolphe,273510,16700,3 +93754,Lucas Moat,98250,7502,2 +93755,Jerry Blake,46014,78304,4 +93756,himself,5638,44549,6 +93757,Junger Mann im Club,83729,32866,17 +93758,Judge Anne B. Carroll,84903,16765,2 +93759,Music Video Dancer,4551,1046144,56 +93760,Rhee Ho-jin,387845,1591372,10 +93761,Charlie,4882,62846,17 +93762,Ram Panchouri,403593,10510,2 +93763,Baines,51823,118,9 +93764,,16447,77188,8 +93765,Flo Ayers,17332,81726,9 +93766,Fox Hunt Guest,147829,121097,18 +93767,Fergusson,42996,442780,2 +93768,Manuel,70747,559501,0 +93769,Hoagy,64948,96591,4 +93770,Anna Gardner,60420,72855,1 +93771,Capt. Leeds,257081,13555,4 +93772,Madelón,167935,1170639,3 +93773,Bill,285270,1367905,11 +93774,Ted Westburg,253235,1327294,6 +93775,Notebook Lady,19482,1318428,14 +93776,Micky Simon,198993,110666,4 +93777,Seaman Howard Sanders,53949,153301,26 +93778,Hadaly Lilith,342588,119143,5 +93779,Himself,26326,80490,11 +93780,Lucky Luke,35026,56024,0 +93781,Woman,104477,28964,2 +93782,William,299715,1174338,4 +93783,Lola Fe,64450,1396584,15 +93784,The Father,344120,2192,0 +93785,ACO Max,15189,59297,10 +93786,Himself,53367,1243,2 +93787,Irene Hoffa,106573,94306,2 +93788,Bono,54093,76104,7 +93789,Min-ji,37284,1759982,4 +93790,Rose Hall,206197,42279,3 +93791,,27989,989762,4 +93792,Nathalie,22618,32891,1 +93793,Herself,410718,1498523,21 +93794,Josettan,422603,1758282,12 +93795,Winnie Sage,94251,129521,2 +93796,Nicole Sands,46020,134488,1 +93797,Melquiades (voice),146381,80536,12 +93798,Bill Mooney,298228,1380344,6 +93799,Cousin Tom,747,26209,17 +93800,Michael,37978,7166,5 +93801,Noel Coward,52959,83908,3 +93802,Sybil,58462,3141,7 +93803,Emily,31890,108567,9 +93804,Michaels,14979,2524,12 +93805,Rose (voice),15906,85431,9 +93806,Bounty Hunter 1,14907,1301269,9 +93807,Fred Siazon,98203,1064538,18 +93808,Samantha,61644,149539,0 +93809,Alice,303636,1374816,2 +93810,Nat,64720,59450,2 +93811,Teresa,366860,31593,8 +93812,Arab Guard,225503,1171047,10 +93813,Tobias,14145,32556,3 +93814,Stage Manager (uncredited),43522,34008,85 +93815,Photographer,56558,1329660,51 +93816,Wise Guy,75315,978055,53 +93817,Maid,28448,1014459,16 +93818,Himself,9951,115428,20 +93819,Charles Manson,381737,1031249,5 +93820,Detective Bander,403431,1180696,10 +93821,Mrs. Holland,88558,130057,9 +93822,Brian Sousa,6933,51455,5 +93823,Ddong Moogye,43987,129972,4 +93824,Madelaine,78028,108579,8 +93825,Austin,84352,1230606,4 +93826,Day Care Mother,331962,145362,27 +93827,,64044,1165647,13 +93828,Flugmaður,131343,1450099,3 +93829,Tim,384682,173964,18 +93830,Rama Shetty,103073,105444,5 +93831,"Henry Adams, Amnesia Patient",153165,96701,9 +93832,Sawyer Nelson,62837,18052,3 +93833,Dr. Glatman,70247,100552,3 +93834,Electrocution Mom,283445,1485773,13 +93835,Furniture Deliver 1,427680,1758544,13 +93836,Sara Raymond,84496,50970,5 +93837,Female Student,397837,1406026,20 +93838,Himself,40873,84678,2 +93839,Coach K,342472,8289,1 +93840,Lynn,226188,126932,3 +93841,Carla's Family #10,2143,132906,28 +93842,Doc Brown (Uncredited),188161,1062,20 +93843,Himself,15260,1527177,3 +93844,,74481,86060,8 +93845,Daisy,73194,1472497,22 +93846,Henchman Dick (uncredited),23590,117679,8 +93847,Senior Matron Hill,20806,114836,4 +93848,Han Seung-Ho,387845,1574620,3 +93849,Nita,90634,1509327,4 +93850,Schoolmaster,192990,1173409,14 +93851,Video,83223,100954,3 +93852,Cop #1,313922,1732069,19 +93853,Odinokov,83475,929634,8 +93854,Henrietta Van Dyke,242631,14576,5 +93855,Vicki Harris,31042,19967,2 +93856,,73554,101730,0 +93857,Mr. Wu,119893,180979,4 +93858,Hagan,279096,133359,4 +93859,Priya,210068,583531,3 +93860,Michael Roland,406052,52705,12 +93861,Henry,14126,209884,3 +93862,Wendy,8942,1812,0 +93863,Kay,45098,1233094,12 +93864,Emma,15020,73836,3 +93865,Enrico,190410,78538,0 +93866,Jack,14012,72132,5 +93867,,224950,939392,3 +93868,Larry Renault,39130,29578,1 +93869,Marsha,73501,1585263,6 +93870,Himself,159138,1306413,4 +93871,Beautiful Woman,45013,1818033,47 +93872,DCP,275269,1543146,7 +93873,le vagabond,60824,544716,8 +93874,Mother in Family Group,80596,96421,52 +93875,German Sailor Girl 3,348320,1869100,32 +93876,Chiang Kai-Shek,25626,543178,6 +93877,Zombie,80280,1149925,30 +93878,Mr. Parmenter,10710,1469,15 +93879,,88285,1355196,7 +93880,Man on TV,47057,26486,10 +93881,Raif,122843,221599,4 +93882,Runaway boy 1,10103,1564078,12 +93883,Additional Voices,10837,81178,9 +93884,Takao Arima,38625,120921,4 +93885,Himself,44038,130083,6 +93886,Carl Lidner,377290,1013156,3 +93887,Ricard,31890,17259,1 +93888,Boy in crowd,270650,1359975,36 +93889,,63215,1371735,50 +93890,The Repairman,23048,54812,5 +93891,Supt. Jane Tennison,215999,15735,0 +93892,Harut,354859,133525,14 +93893,,23289,1169333,19 +93894,Baudoin,26152,24563,4 +93895,Jim Macauley,234868,29903,0 +93896,Alison,55632,6944,10 +93897,Catalina,201765,1168829,5 +93898,Himself,122134,1867,1 +93899,Freddy The Celebrity Chef,447758,1600495,12 +93900,Zoe,354979,131871,4 +93901,Young Guard,68737,1392950,27 +93902,Rentnerin,150056,146942,11 +93903,Reverend Meeks,259975,18071,8 +93904,Jackie 'Stevie' Stevenson,371504,141354,1 +93905,Herself,229296,1162483,4 +93906,Sakurai Tsubaki,37959,58593,1 +93907,Vasquez,80389,942967,10 +93908,Arzt,70752,559556,8 +93909,Mason,18467,59231,0 +93910,João,248543,1283851,0 +93911,Judas Iscariot,47980,139723,1 +93912,,139521,85672,3 +93913,Martin Tillman,62190,5563,0 +93914,CIC Commander,127372,1169229,12 +93915,Brad Bishop,358076,1213001,4 +93916,Angus McSorely,83896,115400,7 +93917,Sara,18189,1217886,9 +93918,Mir Jumla,184351,16074,5 +93919,Milorad Arsenijevic,57419,1050786,15 +93920,Chauffeur de Taxi 4,12422,1866061,14 +93921,Ephor #4,1271,119708,23 +93922,Eddie the Detective,174195,34286,8 +93923,Sefa,13338,89844,1 +93924,Emily Tilton Scofield,270007,172790,6 +93925,,63260,230676,13 +93926,Ward Sister,115616,28897,4 +93927,Ben,2349,28432,5 +93928,Pvt. Ben Whitledge,19968,2787,1 +93929,William Cleggett,74436,31439,11 +93930,The Governess,37628,553131,7 +93931,Rémy,39415,1625130,5 +93932,Morgiana,18098,20577,12 +93933,Gerhard,302118,3841,4 +93934,Chucky,87516,11486,5 +93935,Capt. Brills,26881,154713,11 +93936,Delivery Woman (uncredited),28571,927616,27 +93937,Grandma Dottie,1550,17488,6 +93938,Alicja,32559,480656,0 +93939,Henry Torne,53172,6384,0 +93940,Major (Rehabilitation Centre),121154,4935,11 +93941,Officer Lewis,10053,62565,15 +93942,El presidente,299165,579763,11 +93943,Marla,81477,1094915,4 +93944,Tony,68472,10862,2 +93945,Sabine Moreau,56292,121529,11 +93946,Paulie Trunks,297702,23880,3 +93947,Sam Smith,92716,1457534,1 +93948,Khun Krabii,50108,134726,2 +93949,Jack,9753,1954,0 +93950,commissario,11048,72664,13 +93951,Oil Worker,245703,60874,24 +93952,Bike Kid,272878,1205389,14 +93953,Tower Guard (voice),14411,12098,12 +93954,avvocato di Vanzi (non accreditato),64465,35256,12 +93955,Mahie,254420,1334005,4 +93956,Lil' Miss,354979,1729889,39 +93957,Hunter,66881,549061,14 +93958,,105352,1172234,1 +93959,Welcome to the 60's Dancer,2976,1752784,129 +93960,Luke,1665,526,1 +93961,,21181,228704,2 +93962,Raleigh,97051,116088,12 +93963,Spelvin (scenes deleted),97829,13819,5 +93964,The Girl,257831,1376397,7 +93965,Warehouse Caretaker,204922,72315,7 +93966,Little Violet,72207,1745407,26 +93967,Saxophone Player (uncredited),244786,1503852,43 +93968,Manda Lee,87293,1102497,9 +93969,Charlotte Reaves,347127,65196,0 +93970,Walter,217948,125533,11 +93971,Carmencita,166207,1396370,22 +93972,Jonas Williams,172520,1155123,3 +93973,Pepsee,124157,146245,1 +93974,Gatou Vardebedian,142946,155860,5 +93975,Seance Woman 1,27259,97439,16 +93976,Rose,106131,11073,2 +93977,Claire Leevy,19166,141540,4 +93978,Cowboy,189,101981,38 +93979,,12206,225291,19 +93980,Maj. Stransky,10841,32059,2 +93981,Subway Guard (uncredited),28000,103092,76 +93982,Red,43142,12504,10 +93983,,62783,94064,2 +93984,The Skull Faced Man,315855,1179688,28 +93985,Moose Legrande,147903,98052,11 +93986,Himself (as Senator George A. Smathers),72823,567225,10 +93987,Erik Harson,83899,31268,14 +93988,Seelen-Frieda,42206,38991,9 +93989,Andress Malan,13823,2302,32 +93990,Kitty Crane,268875,139603,3 +93991,Cousin Alice,51249,1024722,11 +93992,Maria,4964,1225875,21 +93993,Muffy,80545,122648,7 +93994,Ritch Petroski,30641,106642,3 +93995,Little Lu,338676,1663866,17 +93996,Diane,88005,86310,2 +93997,Mrs. Margaret Bell,78691,74073,11 +93998,Hank 'Mac' McGee,38807,88680,7 +93999,Conducteur voiture,283726,1644525,22 +94000,A.C.P. Rajveer Scindia,166225,86302,0 +94001,Anthemus,44398,14503,6 +94002,Gena,57775,559970,1 +94003,Nurse,212756,1267243,7 +94004,Broker,43811,121097,21 +94005,Mayor Dupres,140470,120700,13 +94006,Kolya,77068,1053405,2 +94007,Annie Maguire,85580,932339,3 +94008,Michael Llewelyn Davies,866,13013,9 +94009,Will,270851,12714,2 +94010,Drew Glass,357851,1008750,1 +94011,Marilyn McCauley,14750,11164,2 +94012,Wanda,98066,1219601,17 +94013,Girl on Tony's Staff,170517,1745609,34 +94014,Takako Morita,111398,128665,3 +94015,Subway Guard (uncredited),28000,1048530,75 +94016,Chubasco,261249,122632,10 +94017,Nubian Guard,24973,1747656,24 +94018,Bruno,166221,532,10 +94019,Boss' Assistant,68202,66525,15 +94020,,27276,551836,27 +94021,,293654,86636,11 +94022,Enrique,52454,110250,29 +94023,Yassem Al-Helou,62630,219506,5 +94024,"Yuki Kure, Eiji's mother",36075,1180042,4 +94025,Rich,51250,62644,3 +94026,Akiko,72826,567245,0 +94027,Priester,284013,231784,4 +94028,Newsboy,26376,1102200,23 +94029,Chook,27480,98552,1 +94030,Cole Davis,146679,149505,0 +94031,PM Nobili,235208,992162,11 +94032,Abby Collins,86709,4493,1 +94033,Party Guest (uncredited),80168,1121652,18 +94034,Nathalie,77776,81786,2 +94035,Ronal,76600,204,0 +94036,logopedista,142320,124625,25 +94037,Bonnie's Mom,130925,24358,8 +94038,Rebecca,360924,1255055,3 +94039,Assis,70666,1863895,29 +94040,Joe Richmond,366045,25009,10 +94041,Mr. Horrell,11577,89582,26 +94042,Glader,198663,1415406,17 +94043,Sheriff Harp,333484,60874,28 +94044,Tim,14137,59405,5 +94045,Boy at Outpost,11509,30368,9 +94046,Mary Call,128364,1066429,0 +94047,Shana Harris,63493,882,1 +94048,Tetsudou-shokuin,18148,83640,14 +94049,Chirin (Voice),77859,54690,0 +94050,Pamela,27414,97715,2 +94051,,256356,6784,4 +94052,Lady with Dog,286521,1655886,24 +94053,Kanbê Katagiri,34019,99247,6 +94054,Georgia,21968,173682,2 +94055,,60199,12517,3 +94056,Etienne Deshaies,332794,19361,6 +94057,Angelina Cadman,28437,100797,14 +94058,Tania Van De Merwe,17654,82192,10 +94059,Josephine,103578,107242,0 +94060,Business Pedestrian (uncredited),337339,1804420,42 +94061,Instructor,94811,4303,9 +94062,First-Nighter,132928,30216,37 +94063,Mayor's Chauffeur,99909,1420952,29 +94064,Sugar,91571,20882,2 +94065,Crown Prince Sado,315439,572225,0 +94066,Sid,9787,11665,4 +94067,Man at Auction,147829,89012,30 +94068,Announcer at Tote Board,125736,1163193,24 +94069,Roy,193387,532,3 +94070,Andrea Stanzani,267557,136288,7 +94071,Mule,6980,4024,6 +94072,Tammy Temper,40368,556929,10 +94073,,320588,931162,20 +94074,Mme Escobar,72822,22310,5 +94075,Bridget Batterson,184802,1141924,1 +94076,Himself (archive footage),132150,1282853,1 +94077,Gherman,65614,83836,2 +94078,Stella,106131,17488,3 +94079,MacMahan,36373,120447,8 +94080,Guilherme,154441,1132586,9 +94081,Chipper Host / Darcy,88005,51990,9 +94082,Bill Friend,41206,8254,2 +94083,Nicky's Wife / Widow,26486,1216429,32 +94084,Peretta Jones,373977,1028560,9 +94085,Cobra Man,21449,227622,7 +94086,Mireasa,2009,1628053,19 +94087,Two of Spades (uncredited),25694,100763,30 +94088,"Freddie Coleman, MacFay's Secretary",14589,85993,8 +94089,Inky,28730,29685,16 +94090,Alice,278348,162541,9 +94091,Doctor,70322,111962,9 +94092,Derek Grant,256474,55086,1 +94093,Samet,31412,110335,8 +94094,,375742,32699,18 +94095,Court Stenographer,339994,1400270,18 +94096,Pacjent pierwszego przeszczepu,298040,83265,14 +94097,Electrician,295964,6985,25 +94098,Marek Kowalewski,49588,118762,0 +94099,Zak Rausch,245706,1410478,19 +94100,Kishanlal,38022,110085,6 +94101,Mrs. Ramirez,26323,581350,5 +94102,"una giovane prostituta, figlia dello sfruttatore",103216,128236,15 +94103,Patty,35320,46907,15 +94104,Zero,5965,46926,14 +94105,Uncle Fortune,13807,1132614,11 +94106,Police Commissioner Singh,103236,110096,6 +94107,John River,371504,1640,0 +94108,Naomi,110598,164660,2 +94109,Doctor,270015,82748,12 +94110,Bobby Stinson,256740,28410,4 +94111,Dr. James P. Whitney,255388,89729,5 +94112,Alice,19342,112329,10 +94113,Prosecutor E.J. Henning (uncredited),186585,117681,11 +94114,le commissaire,101183,3573,3 +94115,Marian Zembala,298040,1138605,2 +94116,Joe Butch,243935,1232538,21 +94117,Herself,118690,38561,1 +94118,Salvatore Cangemi,3701,33708,1 +94119,Millie Kranz,79521,116493,2 +94120,Finn,424488,1837298,53 +94121,Doctor Jonathan Kooper,145135,142204,24 +94122,Eustace,74436,16421,10 +94123,Jamal (uncredited),1640,1331798,52 +94124,Eerie Man,257176,42547,5 +94125,Mr. Franklin,253794,21624,0 +94126,Detective Chong,334557,21908,0 +94127,Le maire,39413,93592,11 +94128,Cavalryman (uncredited),120831,1176509,9 +94129,Young Mary Howard,52360,122637,41 +94130,Primrose Porterhouse,252746,15753,5 +94131,Harry Price,22447,26706,16 +94132,Shredder,98566,173212,10 +94133,Count Vronsky,70881,13576,1 +94134,Jim-Wilson,358199,94491,14 +94135,Sandro,54570,13906,0 +94136,Ellie,418772,993774,5 +94137,Sarah's Niece,337104,207250,7 +94138,Gila Sason,44511,95539,2 +94139,Hottie,333385,1579182,17 +94140,Gas Station Clerk,120802,1822025,38 +94141,Charlie Kohler/Edouard Saroyan,1818,10268,0 +94142,Berliner #3,145220,1504912,46 +94143,Tommy Kane,94348,12833,5 +94144,Anna,2180,1152809,8 +94145,Professor Richards,262542,219378,4 +94146,Niko Fischer,130739,684,0 +94147,House Party Guest (uncredited),330947,1386330,62 +94148,Lumberjack / Tree Attack Victim,79329,586551,29 +94149,Giulia,217648,133051,3 +94150,Dave Anderson,341886,27763,1 +94151,Egor,3102,30408,3 +94152,Hanna,157409,543965,9 +94153,Dakota,52661,1745108,17 +94154,Laxmi,90634,110724,6 +94155,Khalil,371446,94431,4 +94156,Nacho,331641,269695,5 +94157,Dr. Joe Buchanan / Narrator,3072,5049,0 +94158,Madonna,64450,142965,3 +94159,Henry Shaw,85414,62911,2 +94160,Maj. Jammy Harris,48412,87518,7 +94161,,46567,587455,16 +94162,Professeur Saïd Haidar,46738,218899,9 +94163,Ray Ferritto,51209,2055,6 +94164,Mr. Slade,29094,80726,2 +94165,Dana McGuire,73430,81187,3 +94166,Party Member,330947,1228485,42 +94167,Death Dealer,346672,1883800,23 +94168,Michal Roman,81223,32696,0 +94169,Buenos Aires Cafe Patron (voice) (uncredited),2503,1007875,37 +94170,Donald Mojan,137776,63791,3 +94171,,3549,1441481,19 +94172,Croupier,33481,4830,26 +94173,Patricia Harrington,53209,34742,0 +94174,Old Woman Phantom,104251,227079,1 +94175,Neha's Father,60392,929088,6 +94176,Kalyan Krishna,60807,237969,3 +94177,Frozen Guy #1,193893,1381630,44 +94178,Nightclub waiter,43113,1167989,66 +94179,Holly,76494,16866,1 +94180,Boy With The Rifle,152736,1133295,7 +94181,Aziz,90231,1367203,5 +94182,Himself,311585,16513,4 +94183,Jim Cutler,86236,51763,1 +94184,Tripe Shop Proprietor (uncredited),121674,1878826,45 +94185,Stan Wychinski,143092,3442,3 +94186,Rat (voice),14411,73475,6 +94187,General,13614,107633,4 +94188,Boat Agent,274325,155282,6 +94189,Moe Stooge,16135,79507,12 +94190,Danny 'Stuntman' Wheeler,312221,1746871,16 +94191,Gale,13477,51298,5 +94192,,22585,8049,9 +94193,Carl Dibble,103432,130129,15 +94194,,115616,37437,9 +94195,Charlie,226354,1255296,8 +94196,Additional Voices (voice) (as Stacy Ferguson),20715,20497,3 +94197,Ambaji Panth,362045,53620,7 +94198,Myriamme Hayam,10910,30720,3 +94199,Johnny Talbot,334074,1471664,15 +94200,Martine,102444,113288,4 +94201,Policeman in cigar store,94251,30196,19 +94202,Darian,40217,1239237,4 +94203,Phil Weston,9981,23659,0 +94204,Jan,29108,1222359,11 +94205,Froebe,5552,77906,7 +94206,Paweł Pawlak,8211,54076,13 +94207,Police Officer Horatiu Guspenec,403429,1640622,1 +94208,The Blacksmith,58905,92907,9 +94209,Becky St. Germaine,18826,7489,1 +94210,Priest,282762,1382079,3 +94211,Tim,52827,996704,8 +94212,Lissie,7210,52008,5 +94213,Baur,613,45694,54 +94214,Pam,98094,1499902,9 +94215,Steve Dallas,209244,887,0 +94216,Amy,10760,66545,18 +94217,Menophis,211139,37784,7 +94218,"Danny, The Bookstore Clerk",82696,512749,7 +94219,William Carlton,105548,100803,11 +94220,Julio,29638,100381,10 +94221,Lee,240733,1132180,2 +94222,Djaffar,295314,145162,0 +94223,Gordon N. Jessman,73313,19410,7 +94224,Colin Hart,52395,82346,7 +94225,Dona Lourdes,203217,1317272,9 +94226,Bella,179812,1148417,10 +94227,Band Member 2,85350,1467980,59 +94228,Stepan,97797,1014981,6 +94229,Prison Officer,294652,1883813,16 +94230,Raymond Briggs (voice),413770,103351,3 +94231,Mary Gordon (as Sheila Mannors),61985,99827,1 +94232,Celia,28775,100338,4 +94233,,254679,554573,6 +94234,Jacky,6077,15482,1 +94235,Ryan,182228,1171171,2 +94236,Carine McCandless,5915,20089,3 +94237,Sarah Jane,134656,76070,1 +94238,Zachariah,86413,1054257,2 +94239,Maman de la fillette (voice),393559,1776047,15 +94240,J.W. Bell,11577,2454,12 +94241,Celeborn,122,20982,23 +94242,Thad Decker,111470,117677,24 +94243,Joe Martin,236395,51762,0 +94244,Patsy Deyo,80941,41216,0 +94245,Giovanni,162056,23367,1 +94246,Spencer,343173,33396,12 +94247,Feldhaus,82598,26589,10 +94248,Durran,38654,1408057,12 +94249,Matthias,319513,543208,5 +94250,US Attorney,4982,45566,44 +94251,,412363,1769114,5 +94252,Pierre Santigosa,342213,1387695,3 +94253,High Priestess,29352,103615,6 +94254,Cafe guy (uncredited),60965,232055,28 +94255,Capt. Swenson of the Shorty II,116232,96053,9 +94256,The Frog,146216,11207,6 +94257,Horace,409536,52849,1 +94258,Annie,18446,174639,7 +94259,Heathcliff,36597,2524,0 +94260,,242240,1277213,6 +94261,Pulis,46773,1522998,8 +94262,Camille,381356,1667092,11 +94263,Mollie Malloy,987,14837,14 +94264,Quinn,36737,116081,3 +94265,Bart Columbus,19725,36086,3 +94266,Dirk Hendricks,13542,74627,2 +94267,Vidal,246422,66029,7 +94268,Dominique,79048,267962,2 +94269,Henri de Rogier,126958,1487907,3 +94270,Henchman Fingers (uncredited),90465,16004,15 +94271,Rita,255869,1300495,5 +94272,Soraya's Son,17725,1827933,19 +94273,The Widow,11832,142907,15 +94274,Prisoner (uncredited),10425,1636975,22 +94275,Dennis O'Brien,43783,3383,4 +94276,Christine,65650,81217,18 +94277,Music Video,14923,1386362,57 +94278,Dr. Nazim,354859,25808,23 +94279,Carnaby,8965,1065,14 +94280,The Post Game Bartender,414977,1676780,30 +94281,Dr. Serena Mohr,32124,3664,5 +94282,Grandpa Gene Donovan,52051,88094,3 +94283,Pest,59678,972040,16 +94284,Jack,226269,226332,0 +94285,Katherine,38743,55269,3 +94286,Martha Phillips,94176,78859,3 +94287,Himself,394668,1611359,3 +94288,Josh,8988,62645,34 +94289,Nudist,92496,1794821,25 +94290,Dancer,19995,1207273,57 +94291,Major Charles Rane,21948,21416,0 +94292,Hilde,9943,38144,8 +94293,Rex,130925,12900,2 +94294,Carpenter,11046,75395,11 +94295,Backup Singer,4551,1680746,41 +94296,Alice,16563,1184298,9 +94297,Samuel Langhorne Clemens (Mark Twain),120747,13576,0 +94298,Le garçon BCBG,85429,932039,11 +94299,Dr. Annmarie McQuaid,71672,212141,9 +94300,Andy La Main,37084,33004,1 +94301,,148615,159085,10 +94302,Hubert,14644,16922,3 +94303,Det. Sgt. Walter Brown,31713,8233,0 +94304,Dr. Brad Steward,239513,68527,3 +94305,Party Goer,306952,1511972,29 +94306,ex fidanzata di Max,302802,1445721,15 +94307,Harold Hickory,16661,88953,0 +94308,Dziwa,35021,555741,2 +94309,Himself,376394,1559481,0 +94310,Gwen Parker,84971,29814,3 +94311,Team Member 2,203321,1876155,9 +94312,Alex Reaves,347127,68287,1 +94313,Cryptographer #3,329865,1646454,30 +94314,Harry Sanborn,6964,514,0 +94315,Kathryn Weller,31597,71763,5 +94316,Townsfolk (uncredited),426670,1716522,26 +94317,Martine Georges,198130,219708,2 +94318,Jed,22476,92328,3 +94319,Hospital Sister,2143,132891,13 +94320,Granny Holler Witch,41505,1188755,7 +94321,Traveller (uncredited),2288,1813935,17 +94322,Deputy,17911,131735,12 +94323,Caroline,266400,77266,6 +94324,,63215,1520918,39 +94325,Gino,17258,1373773,32 +94326,Himself,50647,11477,22 +94327,Humphrey Van Weyden,131039,55467,3 +94328,Snickering Businessman,16240,80182,9 +94329,Lily,33228,11850,2 +94330,Trooper (uncredited),19995,1207280,64 +94331,Seiji Tachibana,36063,72819,6 +94332,,134209,1646274,1 +94333,Claudia,150117,112894,28 +94334,Terry James,140648,224077,12 +94335,,339530,1520107,5 +94336,,145220,93219,65 +94337,Festival Audience Member,5759,1282173,12 +94338,Roma Di Toro,43432,567545,2 +94339,Troy,214,139631,8 +94340,Valentijn Boecke,47231,27957,0 +94341,Caleb Sinclaire,32868,36801,0 +94342,Palace Guardsman,267935,1359461,22 +94343,Ice Cream Patron,381008,1784727,36 +94344,Drag Fan,1481,1844344,37 +94345,Chunung,238985,115994,11 +94346,Ree Dolly,39013,72129,0 +94347,Jeeko,38150,97505,12 +94348,Sentry,41312,95093,16 +94349,Riverbed Child,45610,1844643,28 +94350,Erik,167012,120894,3 +94351,Dr. Betty Ross,14609,87175,5 +94352,Aniekwena,209401,1373733,22 +94353,Jurgen,80720,1381535,8 +94354,Samantha,63831,17522,0 +94355,Kelp,46059,18364,1 +94356,,144651,1886691,4 +94357,"Reza, the Husband",45899,1104854,1 +94358,Bruce Wayne / Batman (voice),408220,183812,1 +94359,Joseph,219247,2394,3 +94360,François de Baynes,126958,99324,0 +94361,Djinn,27259,97438,15 +94362,himself,24479,7624,3 +94363,Mrs. Reed,38684,39658,9 +94364,Sales Lady,37269,168658,6 +94365,Payne,354287,1281967,42 +94366,Buzz,18898,1623641,14 +94367,"Mr. Barnes, Bill Collector",43846,116661,14 +94368,Dan Hickey,111470,30234,2 +94369,,74674,1445123,25 +94370,Venezuelan Representative,329865,1646457,34 +94371,,430985,172667,4 +94372,Barry Wom,32694,80483,3 +94373,Satellite Technician (as Andy Lauer),68721,56979,40 +94374,Stick,15022,187731,33 +94375,Julio,65674,543870,12 +94376,Il Principe,50196,5968,1 +94377,Strings,21769,23987,4 +94378,Thomason,27203,30539,6 +94379,Chicago Radio Show Host,24420,1393539,35 +94380,Frightened Dad,8457,28638,11 +94381,Samurai Ensemble,616,1593815,33 +94382,Max,1539,17377,7 +94383,Ben Derrick (voice),142061,154106,23 +94384,Constable Timmins,9528,151797,4 +94385,Curtis Taylor Jr.,1125,134,0 +94386,(uncredited),42706,15234,14 +94387,Bikini Gal Bree,25450,86269,19 +94388,General X / Kaptain Krispy,116977,4030,8 +94389,Bill Boggs,369524,177425,22 +94390,Herman,15073,480,4 +94391,Duane,68387,56749,19 +94392,,88390,1678199,20 +94393,The Salesman,18616,83353,4 +94394,"Konsuli Ö, Tarmon setä",54566,150941,1 +94395,Jessie,6687,1246,1 +94396,Mountie,3580,1517894,49 +94397,Bud Howard,102668,76667,0 +94398,News Reporter,268920,1754425,28 +94399,Massimone,103758,1606944,4 +94400,Miss Kirsten,91181,30159,11 +94401,Antoinetta Conchiglia,4921,40015,0 +94402,Olmec,424661,27588,4 +94403,Conch,352186,1030512,9 +94404,Sergeant Starr,9542,116128,4 +94405,Kenneth Roubidoux,382951,1748,3 +94406,Peter Friman,55761,143125,10 +94407,Marco,252680,930216,4 +94408,Captain William 'Bill' Hampton,38807,120760,5 +94409,Ben,118889,126671,14 +94410,Benny Frandsen,11391,69180,1 +94411,Natalie,1427,17068,19 +94412,MC,43817,157757,8 +94413,EHC Client,71670,1736521,44 +94414,Tiago,48962,230581,3 +94415,Le policier du centre de rétention,15712,1505021,15 +94416,Spud (uncredited),92848,33775,15 +94417,Omar's Father,187028,1728949,13 +94418,Divine Intention Dancer,243683,1398138,62 +94419,Teacher (voice),82703,35349,15 +94420,Boulette,277839,1386778,9 +94421,Arash,91679,966306,4 +94422,Omaha Radio Operator,18569,1091312,15 +94423,,197057,96517,7 +94424,Nightclub Patron,120109,100945,13 +94425,911 Operator,123634,1078408,6 +94426,Ian,137145,74290,1 +94427,,329724,56404,5 +94428,Rory,118957,990513,9 +94429,"""Mrs Foxfur""",10482,40950,5 +94430,Minamoto no Hiromasa,21325,74861,2 +94431,Becique,66584,545078,1 +94432,le barman,4948,4818,7 +94433,Sean,321160,95475,8 +94434,Controller of Planet X,19545,17540,6 +94435,Talleyrand,65958,24903,1 +94436,Mrs. Reynard,333663,1736793,17 +94437,"Rachel ""Nanny"" Crosby",133382,3978,0 +94438,Sylvia,17927,79793,13 +94439,Julia,116439,44079,1 +94440,Drew,26914,124718,8 +94441,Humi,259835,1302196,7 +94442,Spiros Papadopoulos,173294,35529,1 +94443,Charley Nelson,42231,154583,7 +94444,,361380,89547,16 +94445,Dr. Hendrik Schafmon,85699,67422,16 +94446,Priya,217341,15293,2 +94447,Dale,367147,1172113,11 +94448,Secretary,94674,92711,7 +94449,Donnie Eaton,13279,20746,4 +94450,Reagan,70436,74056,8 +94451,Karl vid Strand,86980,934149,13 +94452,Pete,179066,32437,27 +94453,,19621,1331708,20 +94454,Sgt. Short,6341,1242308,9 +94455,Miller,290764,144292,3 +94456,Police Chief Regan,36373,100582,10 +94457,Airline Traveler,347630,1695667,45 +94458,,92285,938660,10 +94459,Janette,90590,182161,5 +94460,Thomas,24801,113930,10 +94461,Maria,11048,24300,3 +94462,Jennie MacLaine,42168,19131,1 +94463,Zealot Leader,335778,997632,24 +94464,Prof. Clifford Groves,28775,34726,0 +94465,George Gerrity (a cop),35895,120061,8 +94466,Johann Herbeck,280004,31300,13 +94467,Thimbletack (voice),8204,519,8 +94468,,244956,96637,7 +94469,Andrew Jackson,112284,17753,2 +94470,,393079,1105302,1 +94471,'Father' Sartino,48852,1024252,7 +94472,Mrs. Ring Pillow,122843,1546864,10 +94473,2nd Heavy,85442,1717052,29 +94474,Rev. Homer Smiley,115109,7666,10 +94475,Felice Sciosciammocca,57996,132190,0 +94476,Jarrett,134435,116845,6 +94477,Alberta Radelli,183962,93124,4 +94478,Precinct Night Sergeant,149793,975306,29 +94479,Hattie,3024,29658,7 +94480,Sara,14642,31715,0 +94481,Mary,37301,109410,1 +94482,Rio,46193,82216,0 +94483,Lilly,74436,1472518,12 +94484,Louis,89560,3784,3 +94485,Cengiz Akbay,77241,1381097,2 +94486,Manny,78364,90180,3 +94487,Deputy Director of the CIA Dan Ryder,329865,60907,12 +94488,,182799,2954,1 +94489,Lillian La Rue,53792,97980,6 +94490,Irma,16784,35515,4 +94491,,66178,6818,0 +94492,Butch Hare (voice),13017,3272,1 +94493,,285685,979071,5 +94494,,38154,96473,9 +94495,"George Wheeler (""You Killed Elizabeth"" segment)",45577,133244,3 +94496,Elena,19996,1423756,24 +94497,Sam Brenner,257344,19292,0 +94498,Mrs. Toovey,16182,31940,8 +94499,"Cleopatra, Queen of Egypt",71266,562262,0 +94500,Kyle,187596,62692,5 +94501,The Production Assistant,229254,74927,5 +94502,,83346,929465,4 +94503,Alyson,26123,1287722,13 +94504,80 year old Blind Man,9843,740,7 +94505,Senya Chuganin,267481,1257123,6 +94506,Shannon Lucas (voice),302960,81667,9 +94507,Mess Hall Unisol,122857,9457,16 +94508,Publisher,67272,235374,4 +94509,Cole Porter,315664,119893,14 +94510,Samantha,435707,138716,2 +94511,Flapper,61225,2525,20 +94512,Spencer Popadophalos,31462,1486825,12 +94513,Vasin Pavel Ivanovich,27925,86664,0 +94514,Convict Messenger,26376,34448,75 +94515,Chase,35320,1872358,10 +94516,Lee,9461,19429,0 +94517,Mark,271404,81685,1 +94518,,252059,1459894,13 +94519,Carol,271185,163013,5 +94520,Col. Lamont,25388,6610,16 +94521,,11643,70119,15 +94522,The Husband,85442,170257,11 +94523,Janey Rausch,252853,10401,2 +94524,Blake,46660,139305,1 +94525,Bobby Dykins,33511,18616,4 +94526,Teacher,277710,1540259,15 +94527,Louis,46586,113701,13 +94528,Priest,199644,231152,3 +94529,Fabián Vasteri,415255,1677209,1 +94530,Aiden,329440,210271,1 +94531,Mom,424661,1686467,7 +94532,La femme mère,21348,1838957,21 +94533,Admiral Scott,17911,583316,15 +94534,Dr. Martinez,12645,20239,5 +94535,Jose Sanchez,326045,1435274,3 +94536,Bunmei Muroto,30198,1681,4 +94537,Dug / Alpha (voice),24589,10,0 +94538,Terry Ork,111479,16478,3 +94539,"Dippy, 'Prince Alakazoo'",94739,1283600,8 +94540,Vortigern's Guard,7096,1184928,15 +94541,Amanda,42188,1261118,14 +94542,Eiji Kurita,143946,552649,7 +94543,Extra (uncredited),3059,89107,47 +94544,NY Businessman / operative (uncredited),337339,1805204,71 +94545,,52612,113603,1 +94546,7th Sister,64304,84205,18 +94547,Fred Flintstone (voice),42515,1944,2 +94548,C,206647,125660,8 +94549,,182843,38593,9 +94550,Rumpelstilzchen,5393,8316,8 +94551,Ivan,91480,2911,6 +94552,Jess Harvey,68078,90067,4 +94553,Franklin Harris,166621,30016,9 +94554,Police Officer,375012,1668238,12 +94555,William,153795,36422,2 +94556,Phi Lambda Sorority Sister,325133,1568704,29 +94557,Artie,23512,1790105,7 +94558,Muriel Moreno,481,6537,4 +94559,Olga,270221,168615,1 +94560,Walking Coyote,35001,3338,4 +94561,Mr Lui,25074,78877,17 +94562,Maria,263115,1502244,52 +94563,Bartholomew 'Bart' Winslow,267793,142206,6 +94564,le préfet,76871,277526,8 +94565,,154442,237157,12 +94566,Dr. Abelard,256474,130743,13 +94567,Mr. Girdler,16182,1478589,24 +94568,Martha - Kartina's Secretary,53851,68653,11 +94569,On. Pastrocchi,124202,127634,3 +94570,Triana,411638,592709,4 +94571,Sensei,229594,10134,2 +94572,Mrs. Richardson,104041,29258,3 +94573,Himself,105583,1092208,14 +94574,Rocky,17306,193935,18 +94575,Cabart de Villemont,152539,145129,1 +94576,Singer at Wake,1116,1896871,35 +94577,TJ,126323,84217,5 +94578,Officer,73943,5921,8 +94579,Pledge Three,59738,1205528,22 +94580,Patrick Fitzgerald,253273,1288730,1 +94581,Sven Rommel,308174,16704,14 +94582,,47046,1271298,1 +94583,Frederico,206563,87341,4 +94584,Glenda,252680,51456,11 +94585,Ruby,103332,35028,1 +94586,Elena Carani (as Enrica Direll),66893,1063893,2 +94587,Melsa Manton,43855,14974,0 +94588,Crash (voice),8355,57599,10 +94589,Nietzsche,19029,23346,1 +94590,Abby Wrigley,103014,5480,5 +94591,Roberta,301272,1041228,3 +94592,Young Adam,42819,132548,0 +94593,Kendrick,109391,1204695,28 +94594,Barbara,139519,5887,3 +94595,Prissy Andrews,397520,1663786,11 +94596,Mrs. Van Euwen,42819,46853,8 +94597,Red,13834,2372,1 +94598,Meindert Jan,24199,46465,3 +94599,Trapped Officer 'Eden',19898,49491,16 +94600,Himself,97724,1388680,30 +94601,le juge d'instruction,65887,27441,4 +94602,Cemal,52183,1254927,4 +94603,Saskia Uylenburgh,66082,55851,3 +94604,Jesus,420703,1692965,9 +94605,Narrateur (voice),1986,71491,22 +94606,,288101,256841,1 +94607,Jesse Veldini,74057,55636,0 +94608,Harry,31011,1670,15 +94609,Froggy,179288,94098,0 +94610,Dhurai,69404,1327076,8 +94611,Trucker,268920,1749827,50 +94612,Steve Myers,9648,9188,0 +94613,(uncredited),35852,139765,18 +94614,Dr. Radu,2009,39962,5 +94615,a neighbor of Maksim Perepelitsa,174720,86796,4 +94616,Lenora Cameron,110980,34471,1 +94617,,32891,1187308,0 +94618,Mark,76784,27959,2 +94619,,315841,52713,14 +94620,Barry - Radio Talk Show Host,26517,15056,9 +94621,Juuyaku,28268,213519,4 +94622,Man with Broken Leg,7942,39189,18 +94623,Eckbaum,126127,1161232,2 +94624,Sir John Soane,245700,1798336,28 +94625,George Sheridan,167073,1544911,15 +94626,Ian McKinley,9286,20176,2 +94627,Partner Hans,374416,1879939,12 +94628,Dr. Chester Ramsey,38783,57351,3 +94629,,37055,1371495,9 +94630,,128767,1157093,8 +94631,Painter at cafe,27102,38899,5 +94632,Bartender (uncredited),323675,1494526,63 +94633,,16447,573795,5 +94634,Carla,58467,62010,6 +94635,Dina,143005,4793,2 +94636,Brother Square (voice),26963,1795548,7 +94637,Clément,48601,224504,0 +94638,Care worker,16171,79876,25 +94639,,335874,149550,6 +94640,Empress Chi Chi's Attendant,33343,1188787,18 +94641,Nate,168676,228371,1 +94642,Flint,102444,1226313,9 +94643,,110001,1539150,28 +94644,Kuzyakin,27925,86667,9 +94645,Jaz,333091,1151637,7 +94646,William Travis,10733,17178,3 +94647,Madeline,18088,7059,3 +94648,Moza del juicio ante Sancho Panza,145481,97635,14 +94649,Jefferson Van Orsdale Jr.,175065,48962,2 +94650,Hawkins,81687,92907,14 +94651,Detective B,30941,1747351,38 +94652,JP,80281,146149,3 +94653,starter,58159,5462,2 +94654,,337012,26865,3 +94655,Bartender,24619,1655864,20 +94656,Mayor,42182,14595,8 +94657,Anna,381015,1049919,4 +94658,Pablo (voice),8329,17528,18 +94659,Sgt Kendon,128241,1496259,8 +94660,Kiza,76757,1084851,24 +94661,Young Ego Facial Reference,283995,1241405,14 +94662,Telegrapher for Reuter,109716,131612,55 +94663,Melvis,4365,37598,4 +94664,Alonzo Quilling,277968,24442,51 +94665,Hermine,292387,1324495,8 +94666,,41787,54782,3 +94667,Carlo Edwards,315664,26717,6 +94668,Paul,273510,78427,10 +94669,Lord North,352733,7025,10 +94670,Mi-yeon 2,85959,939144,2 +94671,Alvick,80775,160432,8 +94672,Minister,25388,18767,15 +94673,Tagger,336004,1277219,19 +94674,Spartan Boy,1271,1330750,41 +94675,MiIena,64465,31701,6 +94676,Second Detective,156700,1842178,26 +94677,Dave the Gardener,173294,1240551,11 +94678,Grocery Checker,10071,62838,18 +94679,Prison Runner,51601,120178,14 +94680,The Prof,116554,26657,5 +94681,Piano Player (uncredited),16442,3339,40 +94682,George Toogood Smith,33511,59081,3 +94683,Gilligan,103260,95488,0 +94684,Wayne,26809,21290,0 +94685,Demora,296491,30664,3 +94686,Big Frank,18682,14505,2 +94687,Mabel,218351,144403,2 +94688,Bernie,8457,63235,31 +94689,Ashley,408272,8256,1 +94690,George Runyan,43821,89999,5 +94691,Priest Jutkiewicz,156627,1405,5 +94692,Himself,13516,939076,8 +94693,Neo,24914,6384,1 +94694,"Matka, która straciła syna",319999,592913,6 +94695,Aunt Sophie,255388,32431,7 +94696,Stitch Girl,440777,1684010,18 +94697,Dan Kirby (as John Gilmore),126550,7304,8 +94698,Eddie Blaine,47312,14502,4 +94699,Angie,179288,24291,4 +94700,Kelsi Nielsen,10947,84952,9 +94701,Daniel,51976,1094175,4 +94702,Philip (12 yrs),413998,1665193,10 +94703,Francesco Crispi,56853,72246,18 +94704,Cop on motorcycle [cameo],172972,119447,2 +94705,Caroline Gibson,5413,43137,11 +94706,Granny / Macha (voice),110416,58068,1 +94707,Priest,24973,931194,46 +94708,Jackie Hollis,333663,62561,3 +94709,Right Siamese Twin,26643,188148,8 +94710,Dia,14159,76232,0 +94711,Brian Hope,11131,10713,0 +94712,Justin Maciah,24993,1039,1 +94713,Kyle,313922,1707098,23 +94714,Tourist / Pedestrian (uncredited),337339,1593407,79 +94715,Various characters,16023,111466,3 +94716,Cody,301804,1277188,1 +94717,Von Konstat,109716,89727,24 +94718,Sal,243935,18313,5 +94719,Tara Edwards,159701,995458,6 +94720,Honey Halloway,228294,1192759,1 +94721,Jack Schmidt,2047,28641,2 +94722,,12206,5039,28 +94723,Bartender,51049,21757,7 +94724,,268735,55645,2 +94725,Alex,260030,1049353,6 +94726,Maitre'D,55735,571304,13 +94727,Gendarme,127812,1015446,49 +94728,James Brewster,10055,62590,12 +94729,Donaldson,116554,15740,11 +94730,Martin Davis,104674,9111,0 +94731,Edna Hooper,14615,33006,15 +94732,Frankie,54093,147725,12 +94733,Marek,347096,1362313,1 +94734,Joe #1 (uncredited),25953,137005,18 +94735,Aysen,361181,145340,6 +94736,Marie Halden,262338,346352,9 +94737,Nachtclubsängerin,8332,22185,10 +94738,Sheriff Pangborn,137528,1764638,12 +94739,Aubrey Filmore,253250,105636,0 +94740,Chief Doyle,381008,1545508,6 +94741,Vanessa,16022,20493,16 +94742,Stump,8457,52797,32 +94743,Lárus,72596,1114533,13 +94744,Richard Brookwell,94348,11885,7 +94745,Kristi Moore,44115,51072,1 +94746,Clay Derris,10077,11951,7 +94747,Robert Cady,358982,1507492,8 +94748,TV Anchor,329865,1229849,56 +94749,Moon Man,354979,59844,3 +94750,Robbie,82990,1033547,4 +94751,Machida,117212,136883,12 +94752,Billy at 8,27414,1206318,7 +94753,Reilly,43817,589756,9 +94754,College Student,306952,1511970,27 +94755,Onodera,22899,111957,4 +94756,Dave,73700,59231,5 +94757,Fisherman,108017,1134494,4 +94758,Lea,310137,1169644,2 +94759,Shelley Cartwright,32540,109319,5 +94760,Soldier,329865,1756356,49 +94761,,37959,1299218,14 +94762,Elena,27409,37839,4 +94763,Little Earl,242042,206027,15 +94764,Lyle Kingman,264080,14573,9 +94765,Joseph W. Randall,42669,13566,0 +94766,Steven Schoichet,17906,3490,0 +94767,Herself,4832,39653,1 +94768,Himself,52013,234398,0 +94769,Traude Krüger,1294,16782,0 +94770,Captain Hook (voice),810,6972,19 +94771,Sandro,38328,120157,5 +94772,Herman Munster,30002,56266,0 +94773,Shizuko Sato,31161,107708,2 +94774,Stonecutter,341962,1470849,3 +94775,,11330,1444514,19 +94776,Bala,17780,82364,8 +94777,Nurse,49712,1885600,19 +94778,,329868,29429,5 +94779,Aunt Danny,121401,7331,2 +94780,Krankenschwester,167330,1253190,26 +94781,Joey Ames,142402,1117085,16 +94782,Paulo Bartolo,259695,145540,17 +94783,Frank Quinn,211729,785,1 +94784,Party Guest,209112,1561376,132 +94785,Master Monkey (voice),9502,18897,3 +94786,Inspector Karma,41030,124823,6 +94787,Jim McGrath,286567,27107,6 +94788,Naina,39217,88138,1 +94789,Ludovic,197089,105868,3 +94790,Sebastian,340684,1104136,1 +94791,Charge Nurse,16151,79718,31 +94792,Shota,25450,90718,17 +94793,Nîroj,188765,1389070,6 +94794,Sam Worthington,141418,1006783,1 +94795,Leonardo,72660,566882,0 +94796,Anette,3716,1406145,14 +94797,Shuga,125541,1082283,1 +94798,Evelyn,43751,31941,1 +94799,Mr. Takagawa (voice),16390,85500,6 +94800,Lisa,345438,1408775,7 +94801,Denny,123109,1078613,5 +94802,,257831,44215,15 +94803,Officer Lee Jin-ho,269494,587634,9 +94804,Drunk #2,351065,1667159,16 +94805,Janet Higgins,29467,5740,6 +94806,Sergeant Melshi,330459,1264237,38 +94807,Jeff Hanson,14053,90474,4 +94808,Nurse Finch,335970,1578231,15 +94809,Knox,21893,87907,8 +94810,Jim Flanagan,31258,10162,2 +94811,Ernie,336691,1547694,11 +94812,Defense Attorney,99909,120708,37 +94813,Pvt. Nick Farrenberg,354287,1230738,19 +94814,Gambling Stooge,147829,88728,42 +94815,Madison Abel 'Matt' Sullivan,43504,113704,7 +94816,Michael Jackson,16135,8688,0 +94817,Sir Henry Simmerson,75138,30037,4 +94818,Wayne Security (uncredited),209112,87220,137 +94819,Sitchi,207636,14664,4 +94820,Coach Pederson,36807,19839,2 +94821,Scout Master Ward,83666,819,1 +94822,Mrs. Jackson,227717,1357921,10 +94823,Richard,19765,96381,6 +94824,Nelson,387399,1654843,4 +94825,Priest,319910,1639435,21 +94826,François Morin,335141,46280,1 +94827,Stitch,312221,1277581,9 +94828,Mrs. Sturges,86472,994523,15 +94829,Herself,32901,7443,0 +94830,Ginger,76211,133730,8 +94831,Fred,87587,111945,0 +94832,Prosecutor / Tour Guide Barge Michaelson,13173,6212,20 +94833,,77564,137624,1 +94834,,56599,1717004,10 +94835,курортник,63300,1190992,8 +94836,Ella,28366,64434,2 +94837,Genesis' Gang,12720,1091284,11 +94838,Kylo Ren,140607,1023139,2 +94839,(voice),16137,79552,5 +94840,Henry Jennison,413669,1011053,5 +94841,Professor Riley,194722,70875,7 +94842,Valeriana,56804,555716,4 +94843,The Burning Hotels Guitar / Vocals,23367,95380,24 +94844,assistente sociale,43649,1039476,12 +94845,Park Seon-hwa,16447,1243600,3 +94846,LEROY,18475,51857,1 +94847,Ataru's Father,43967,142704,9 +94848,,85126,1429014,16 +94849,Herbert Berghof - Acting Coach,31913,171189,9 +94850,Ben,323665,17441,3 +94851,,44434,40863,0 +94852,Taxi Driver (uncredited),29872,1034935,12 +94853,Sister Cecelia,55681,100552,0 +94854,Alfeid,45988,228105,4 +94855,Yu Ping,25425,571516,3 +94856,Noah's Wife,95015,1544028,11 +94857,PTA Meeting Attendee (uncredited),206197,1179269,41 +94858,Antonio,169869,100648,6 +94859,Fight Spectator (uncredited),28000,1550447,66 +94860,Zeke,50126,4139,1 +94861,Mabel,322460,40957,7 +94862,Morag,214100,1543046,10 +94863,Sally,5928,4975,8 +94864,Luke,73565,1198284,17 +94865,Sir Joshua Reynolds,104211,32192,11 +94866,Cab Driver,3164,217759,10 +94867,Levi,245703,87954,7 +94868,Bit Part (uncredited),54139,9865,17 +94869,Verushka the Witch (voice),57089,3234,2 +94870,Minna Fenster,95504,85358,2 +94871,Mignon,20017,2630,3 +94872,Little Girl in Parade,8988,1742402,68 +94873,Jury Foreman,243568,117458,17 +94874,Jade,67342,544906,6 +94875,Himself,117942,58516,10 +94876,Tyler,112161,77885,0 +94877,Maddy,222890,137971,5 +94878,Shelley Worth,118397,209200,2 +94879,Maj. Charles Hammond,43833,12689,1 +94880,Wedding party,335970,1466628,87 +94881,Detention Monitor,10330,1433893,15 +94882,Antonio Caccavallo,62034,132190,0 +94883,Duffy,297702,32747,5 +94884,Dr. Paul Faulkner,9030,4941,1 +94885,Himself,376391,554133,2 +94886,Artist,64115,1158778,2 +94887,Downscale Auctioneer,10710,82585,30 +94888,Inspector Nita Morales,344147,1203600,2 +94889,Wilbur (voice),1267,124665,14 +94890,Secret Service Man,257344,168625,57 +94891,"Tom Beal, the Counterman",125736,96069,26 +94892,Gendarm Kleylein,12523,49704,15 +94893,Suraj Kapoor,66292,86014,1 +94894,Tillie,10201,58068,4 +94895,Isabella,82501,1125110,11 +94896,Velma (voice),16390,86314,2 +94897,Jimmy,47683,1750916,6 +94898,Kimmo Moilanen,51423,79757,4 +94899,Samantha,39845,39126,4 +94900,Jurij Zille,1914,19913,5 +94901,Drayson,277778,103257,12 +94902,Robbins,141643,1115150,10 +94903,Kiki,18843,84270,2 +94904,Gilly,207850,13936,2 +94905,Secretary,23964,79152,12 +94906,Prentiss Parley,25473,103035,5 +94907,Comic Book Fan 1,18739,205725,12 +94908,Hawkins,134201,67524,4 +94909,Dr. Frederick Simmons,86768,12152,2 +94910,,314388,146098,4 +94911,Prince Charming (voice),809,4757,6 +94912,Tall Zealot,284052,126802,10 +94913,Laurent Duval (as René Renal),21070,1675206,18 +94914,Percival P. Lannigan,178569,16004,4 +94915,"Ryan, the Go-Between",248639,34747,9 +94916,,284053,4783,10 +94917,Marta,297288,44976,4 +94918,Judge,64450,1156086,10 +94919,Hector David,14554,18391,5 +94920,Feysal,356461,1501198,6 +94921,Cleo de Nile (voice),227257,81378,11 +94922,Kath Brown,25941,1148520,11 +94923,Frau Kohner (uncredited),946,120740,12 +94924,Sgt. Greco,24094,97454,11 +94925,Detective Skinner,29805,1738565,42 +94926,,261871,583453,2 +94927,Sandra,186988,1204168,6 +94928,detenuto Rosario Scalia,73827,130613,12 +94929,Mayor Harris MacDonald,20521,27111,9 +94930,Brick Bardo,280495,48810,3 +94931,Hitchhiker / Codruta,403429,1640628,11 +94932,Ben Weissman,49007,18352,11 +94933,Peter,77381,1366033,0 +94934,Diner Customer,331313,1767212,36 +94935,Edna,14096,1381335,4 +94936,Linda Fashiobella,36249,38561,2 +94937,Peggy,44626,131126,10 +94938,Jose,78403,84178,7 +94939,Nicolas Yuleson,12591,60077,1 +94940,The Archduke Paul,111759,13342,4 +94941,Dalton Chapman,10066,17866,5 +94942,Himself,21671,212,4 +94943,Dr. Silberling,14254,168565,7 +94944,Giselle,64725,24615,13 +94945,"Jim Dawson (segment 1 ""Werewolf"")",26811,131109,9 +94946,,236368,227242,5 +94947,Drake Wooderson,140489,27738,8 +94948,Odete,254435,568400,1 +94949,Bobby Swanson,13075,15376,4 +94950,Hospital Cleaning Lady,9987,61516,12 +94951,Giada,226936,128464,9 +94952,Young Celine,341895,1657801,14 +94953,Tom Fillmore,53574,100253,2 +94954,Aidan (voice),26963,96671,3 +94955,Chester,44001,121318,6 +94956,Anya,50364,1605125,9 +94957,Bay News 9 Newscaster,7220,1837890,17 +94958,Lt. Martin Kirn,57597,77150,13 +94959,Fred,17681,15831,2 +94960,Liz Morgan,317198,86924,2 +94961,Handwriting expert (uncredited),37628,1657191,31 +94962,La comtesse d'Artelles,2002,2415,4 +94963,Dance Extra,31899,121323,23 +94964,Chloe,209271,10431,5 +94965,Ken Karsch,1586,17764,4 +94966,Allibratore,58013,1525819,14 +94967,Himself (archive footage),49954,40,1 +94968,Mountain King,7096,15152,5 +94969,il precettore,103216,120276,6 +94970,Supriya,363413,1521298,2 +94971,Daniel,313922,4451,5 +94972,Oliver Courtney,128669,8727,2 +94973,Enfant blonde 9 ans,18897,992164,9 +94974,Luigi,325780,70027,1 +94975,Brother Frank,6972,12212,28 +94976,Congratulator,413232,1421014,28 +94977,Secret Serviceman #1,102668,1031792,25 +94978,Young Millie,8247,1285,6 +94979,,41496,93210,9 +94980,Jeremy,377428,1569755,14 +94981,Hans,28592,101241,3 +94982,Leo Searly,239056,18269,0 +94983,Loïc,1254,32658,5 +94984,Dozen,15013,77683,12 +94985,Narrator,166610,69136,2 +94986,Cynthia,110146,1058107,4 +94987,Mexican Staff Member,263115,1091423,40 +94988,Tweaker,8988,575674,81 +94989,Graham Krakowski,186869,2053,0 +94990,Kikugoro Onoue,46069,134679,2 +94991,Detective Cameron,122221,10655,3 +94992,Abu,228558,52889,7 +94993,Lieutenant Robert Merril,3686,15140,6 +94994,,77185,120241,5 +94995,Fé Moreau,69065,94420,1 +94996,il sarto di Ferdinando Scarano,11048,148255,18 +94997,,235092,117450,15 +94998,Woman with dog,289712,1358954,14 +94999,Dale Hendrick,23853,159365,11 +95000,Huba,66926,82358,5 +95001,Howard,9968,61164,11 +95002,Ólafur Ragnar Hannesson,37700,118344,1 +95003,Dog owner,77060,99258,5 +95004,Mann mit T-Shirt,198511,16927,4 +95005,G.L. Sarin,196852,55066,12 +95006,Marcin,278867,1175170,1 +95007,Eline Ormsdatter,57438,79196,8 +95008,Wooden Boy Friend,14882,76783,14 +95009,Edward,287628,1367571,5 +95010,Mr. Fleet,41030,97146,8 +95011,Lady Jean Ashwood,52440,3366,7 +95012,Raftaar,12273,559477,7 +95013,"Mitsuo, son of Kanji",3782,34376,2 +95014,Rose Mary Woods,301348,1027298,13 +95015,Denise,86643,1174601,10 +95016,Meneer Ellemeet,25797,45751,3 +95017,Jimmy McBride,8954,56420,8 +95018,Maria da Graça,49961,143133,6 +95019,Fischbein / Hüpi / Kameramann / Pilot (voice),9514,57713,12 +95020,Ponzia,103216,27468,9 +95021,Appraiser,5172,1668460,40 +95022,,118257,1257305,11 +95023,Le flic,17630,358119,6 +95024,Largo Winch adolescent,14400,543836,10 +95025,Machine Shop Guard,26376,198219,47 +95026,Maj. Popov,13614,81000,9 +95027,Man in Black / Jerry,14029,87680,16 +95028,1977 Beach Girl,335970,1718150,49 +95029,"David ""Luke"" Lucas",3686,14277,4 +95030,Betty Dark / Hooker,30141,17832,7 +95031,Matt Howard,52360,2638,0 +95032,Landers,128270,17490,7 +95033,Vincent Kaminski,122192,2406,2 +95034,,86985,6125,13 +95035,Red Morris,107250,134076,14 +95036,Lili Duran,29577,20124,1 +95037,,69310,64439,18 +95038,Jonah Williams,18512,20156,2 +95039,Frank Bonneville,355008,8783,1 +95040,Theresa Salazar,40087,928,6 +95041,Drinker,10097,63368,18 +95042,Kathy Jones,293863,1907,4 +95043,,37959,545825,22 +95044,Chand Baby,103640,96328,2 +95045,Randal,245169,108555,9 +95046,Dexter Howell,23964,1215284,17 +95047,Musa Naghiyev,371741,1546535,9 +95048,amico di Cristina (episodio Il Cavalluccio Svedese),68882,1155103,15 +95049,"Himself, Husband",45576,570196,0 +95050,Minor Role,28421,980038,20 +95051,William Bentley,64167,14011,2 +95052,Townsman Running,27966,119548,42 +95053,Philip Carleton,121354,29313,1 +95054,,332872,1412358,22 +95055,,18696,1060041,7 +95056,Pa Bridges,86608,10928,5 +95057,Bartender at Wyler's Party,132928,119542,20 +95058,Matthew Anderson,279606,18687,1 +95059,John Coleman,21208,133,1 +95060,Police Chief,17317,1175134,18 +95061,,38269,178442,29 +95062,Mr Suen,41380,62424,6 +95063,Elyse,277355,574658,9 +95064,Komiser,361181,1298512,8 +95065,Dr. Archie Bollen,42634,862,1 +95066,Dean Clinton,43546,88461,5 +95067,,103689,1034604,0 +95068,Anna,353728,1697392,9 +95069,Smitty,43923,4654,8 +95070,Risa (voice),79707,613,5 +95071,Min-ah,54111,1246931,2 +95072,Dr. Rivers,22744,100589,4 +95073,Altan,81549,74376,0 +95074,Hunter,152736,1333571,9 +95075,Antiša,67633,110969,10 +95076,Ms. Clements,204839,158777,10 +95077,Mrs. Maitland,156360,1189504,7 +95078,zware jongen,35016,1416113,15 +95079,Leah,408755,1137795,10 +95080,Kurt,220820,1138751,2 +95081,Roy,43821,33178,15 +95082,Lin Tao,336004,1116011,13 +95083,Harry,508,4566,18 +95084,Furrier,204384,131226,8 +95085,Assistant Director (uncredited),53419,21312,7 +95086,Claudia,306555,35102,2 +95087,Barrot,181456,46475,22 +95088,Nicolaes Tulp,66082,24421,2 +95089,Additional Voices (voice),82703,60232,40 +95090,Economic director (uncredited),15472,112853,36 +95091,Victim 2 / Ghost,206574,1339119,9 +95092,Technician,266856,1503912,38 +95093,The Coach,11832,72912,18 +95094,Doctor Franz Huebling,61430,5254,7 +95095,Additional Voice (voice),177572,1225886,23 +95096,Amrita,5319,43414,4 +95097,Sportscaster (voice),14011,34982,12 +95098,,342011,380715,7 +95099,Mrs. Upchurch,142216,163066,26 +95100,,73306,74862,11 +95101,Librarian,46261,1112872,8 +95102,Paula,3638,1276,3 +95103,Hiller,27085,1401523,16 +95104,Frank,37405,35425,5 +95105,Dayipu,27221,97329,2 +95106,Squirrel,9474,389763,8 +95107,Nemo,76784,43648,5 +95108,Señorita en delegación,41298,1235738,13 +95109,Ryan,366630,1315943,2 +95110,Tiffany,9968,8291,5 +95111,Hattie Loomis,39130,13344,11 +95112,Mississippi Kid,193893,1381476,28 +95113,Claire,381008,1217934,1 +95114,Goon #1,284564,1836942,22 +95115,Rebecca,336004,125338,10 +95116,Wedding Guest,209406,1192901,14 +95117,Billy Murphy,293970,1605119,12 +95118,Linda,239563,77013,18 +95119,King of France,134155,1387973,8 +95120,,56095,1179230,8 +95121,Derby Radio Announcer,118889,117026,45 +95122,Pete,417936,1278878,6 +95123,Committee Chairman,43812,16766,5 +95124,"Zhang Lan, Chairman of CDL",25626,1624095,14 +95125,Bob Prickles (voice),38055,19278,18 +95126,Tony,21619,34986,10 +95127,Johan Mast,29101,91715,3 +95128,Marcus,35908,114924,3 +95129,Venita,32298,94512,10 +95130,Polkovnik,79234,225726,6 +95131,Woman at Banquet,28682,101603,13 +95132,Mathieu,285858,86613,7 +95133,Deputy Director of C.I.A.,97630,1140091,20 +95134,Diccon Bowman,24442,82835,11 +95135,Asst. Director,42216,137927,17 +95136,Alex Mpondo,13542,5294,0 +95137,Olaudah Equiano,15163,107354,6 +95138,Paula,389614,1270194,4 +95139,Nikolay Toroptsev,51275,143669,5 +95140,Danny Boy,139930,1111696,4 +95141,Cypress Triad Hood (uncredited),15092,1895604,60 +95142,Adriana,356461,67321,2 +95143,Father Strapovic,2611,13003,9 +95144,Mona,98066,156204,11 +95145,La jeune femme gospel,41211,1366486,22 +95146,Earth,32654,64383,8 +95147,Additional Character Voice (voice),257344,23679,69 +95148,Munchy,331962,121693,22 +95149,Robert Kane,45013,6408,4 +95150,Viktor,31162,29832,4 +95151,Joe MacMillian,108723,944624,12 +95152,Sam,2125,1736,3 +95153,Newscaster,150247,1409007,8 +95154,Nick,14660,78198,4 +95155,Colleen Collette,290825,1459885,0 +95156,Himself,130993,1310867,7 +95157,Editor #4,14923,1290146,30 +95158,Major Duquesnois,57412,985275,10 +95159,Steve,98094,131240,1 +95160,Banco Lujo Teller,213681,1771526,24 +95161,,310602,1443095,16 +95162,Jeff,100110,161891,6 +95163,Frieda,4529,9766,1 +95164,Burly Man (uncredited),33025,3262,10 +95165,Mr. Pinky's Seamstress,2976,1752754,108 +95166,Mrs. Kleinschmidt,178341,9090,12 +95167,Poker Player,14669,1265876,19 +95168,Maya,65055,134180,10 +95169,Herself,6575,36169,21 +95170,Housekeeper,46261,1014916,6 +95171,,84823,1620096,12 +95172,Pumpkinhead,35977,65720,6 +95173,Ousmane,39358,125970,1 +95174,Steve,268920,113373,8 +95175,Dr. Karol Noymann,36089,78849,4 +95176,Sabrina,356296,1487573,5 +95177,"George Rennit, private investigator",21451,14364,7 +95178,Petra,400552,68368,11 +95179,George Barber,38987,64712,0 +95180,Liz,67216,59697,10 +95181,Peter Porfiry,285840,1038000,4 +95182,Leo Kroll,42796,24811,0 +95183,Governess,137321,1397945,22 +95184,Presidente del Consiglio,161545,27433,3 +95185,Seagrave,83995,590277,16 +95186,Dr. Wells,3574,33004,3 +95187,Far (as Troels Malling),199374,559142,13 +95188,Kees Flodder,11084,65004,4 +95189,Crew Bus Driver,318781,1445107,27 +95190,,78318,100078,43 +95191,Realtor,186869,1862911,41 +95192,Sameera,20507,86243,3 +95193,One Eye,249021,1228651,9 +95194,Momma Quinn,109453,15274,15 +95195,Noah,445602,1379501,3 +95196,Little Girl,54198,150084,3 +95197,Old Woman,24357,1212032,7 +95198,Kid Hayes,12247,71885,4 +95199,Joe Patuto,128270,1799979,11 +95200,Captain Mangan,72638,16766,12 +95201,Nurse,45273,1332245,11 +95202,Police sergeant,37368,3243,6 +95203,Dr. Preston King,48333,27993,2 +95204,Palo (Marek's Father),158947,1784280,3 +95205,X,4024,34593,1 +95206,"Detective Ricardo ""Rico"" Tubbs",82,134,0 +95207,John Gunther,61049,115550,12 +95208,,48959,178635,6 +95209,himself,254446,82427,2 +95210,Peter Morris,258193,1225911,5 +95211,Ray,172396,119870,1 +95212,Masaki,26936,20311,0 +95213,Go-Go Girl,32044,1513127,13 +95214,Beant Singh,375199,133423,1 +95215,Tverdilo - Traitorous Mayor of Pskov,10235,997823,5 +95216,Mafia goomba,335970,1718442,81 +95217,Sergeant Callahan,6972,76188,25 +95218,Nurse,13802,1442866,33 +95219,Kevin,10521,83874,7 +95220,Olivier,64784,84508,7 +95221,Carlos Solla,32546,109359,2 +95222,Sipho,13542,587562,13 +95223,Whitney,1691,11671,1 +95224,Lyonya,49577,142504,0 +95225,Weasel,52894,6574,5 +95226,Test Subject #1,58244,548204,21 +95227,Hungry - Tree Hungry,375366,1635870,29 +95228,Erede,61217,87899,8 +95229,Evert 6v,40864,124870,5 +95230,Victor Smegmite,93116,2078,9 +95231,Teen Mini,413547,1769813,7 +95232,Victor,79611,81005,0 +95233,Martin Stone,77068,17290,0 +95234,Dave Randall,109122,89040,2 +95235,Escort,220820,1885832,28 +95236,Toep,117452,228327,3 +95237,,289183,93004,3 +95238,Gary Spargo,8270,1247,2 +95239,,115161,1634580,4 +95240,Delia Lane,37038,116643,4 +95241,Gordon's Butler,53766,34574,7 +95242,Madam,32904,1157299,13 +95243,Raven,19350,44296,12 +95244,Crab,62728,55364,10 +95245,Liaison Officer,18072,120931,21 +95246,Luke Hobbs,337339,18918,2 +95247,himself,190940,52763,0 +95248,ชิน,184219,1167607,3 +95249,Roy,43829,33178,24 +95250,Gary Buckner,2047,2886,4 +95251,Unconscious Girl,25941,1221063,22 +95252,Henchman,377170,557086,29 +95253,Mugg Schnitzel,111582,74876,5 +95254,Mary Brown,48281,34485,2 +95255,Tora,285245,1110915,4 +95256,Third Western Union Messenger,157898,223268,34 +95257,Dmitriy Seleznyov,265180,236369,1 +95258,James Galt,153162,34238,10 +95259,Kaye,26125,299397,2 +95260,Moglie del droghiere,3520,1349534,13 +95261,Armand 'The Blackbird' Degas,16164,2295,0 +95262,Terry,42684,49002,3 +95263,Jamie,9352,57404,3 +95264,Reporter,74629,95045,10 +95265,,235450,1087299,4 +95266,Dancer,38322,1326322,59 +95267,Claudio,57918,15138,2 +95268,The Net-Mender,192301,100047,0 +95269,White House Security Guard,417489,1548736,7 +95270,Ed Shanahan,111470,30292,18 +95271,Brad Deville,31276,58488,4 +95272,Morgan Pell,183827,48962,6 +95273,Scooby-Doo / Fred (voice),12903,15831,7 +95274,Lily Connover,418437,1378125,3 +95275,Friend of Jimmy,335970,1718512,90 +95276,Lily,35052,968289,3 +95277,Christina 'Tina' McGee,222619,26666,2 +95278,Frank,114377,1979,4 +95279,Washu (voice),14829,552600,19 +95280,Genjo Sanzo (voice),155765,90571,4 +95281,Austene Slaighter,63988,180728,9 +95282,Annie,38448,135432,3 +95283,,115161,2053,1 +95284,Aozaki Touko,23155,79004,1 +95285,Жена волшебника,27935,99287,1 +95286,Lynn,90086,127353,1 +95287,Blair,397422,37153,3 +95288,Olga,259690,1301876,2 +95289,metsätyömies,442752,124873,31 +95290,Nurse 2,17111,1629442,13 +95291,Joey Wheeler (voice),366170,219752,3 +95292,Pepperment Patty (voice),227973,1393179,4 +95293,Pierre Kerjean,56800,40969,5 +95294,Machiniste / Stagehand,38531,89609,2 +95295,Hans (as Vasek C. Simek),71825,554248,12 +95296,Frank Castle / The Punisher (voice),169934,1681,0 +95297,Victor Parry,77949,582938,9 +95298,le commis,84875,592727,9 +95299,Maharadjaj Chandra,71041,6809,2 +95300,Michelle,40208,98563,5 +95301,Leonide,13956,1044058,14 +95302,Maria de la Luz Santos,34995,18466,3 +95303,Stan Harris,62838,380,0 +95304,Background Break Dancer,10362,1758897,29 +95305,Stephanie's Party Guest,31993,1208035,47 +95306,Chloe,311764,203096,2 +95307,Rahaman,69903,84328,21 +95308,,349441,94701,8 +95309,Jim Robbins,336265,1194701,10 +95310,Susan,9541,23658,5 +95311,"Charlie Higgins, Court Clerk",18447,1838852,12 +95312,Sweetie,39286,27463,7 +95313,Lady Helena,61950,137812,3 +95314,Bar Companion (uncredited),1976,120703,43 +95315,Polizistin,98612,1317697,10 +95316,Maxie Margulies,124527,47017,2 +95317,,114108,1431400,3 +95318,Chow Kam,18665,552201,6 +95319,Abner Tasupi,65603,1008314,5 +95320,Background,408508,1707548,11 +95321,Dyravörður,72596,1081290,18 +95322,Second Lieutenant (uncredited),15807,34475,26 +95323,Erica Falck,389614,571547,1 +95324,Cello Vampire #2,346672,1905789,28 +95325,,17985,1439593,15 +95326,John Brent,351365,118022,5 +95327,Strip Club Spectator (uncredited),293660,1554158,38 +95328,Moss Hart,185291,3267,0 +95329,Landlord,31472,119667,10 +95330,Cristy 5 Years Old,274479,1496293,28 +95331,"Marian, American Girl",95358,91255,10 +95332,Lefty,30624,8839,6 +95333,Mrs. Joe,121674,39658,7 +95334,Sheriff Pugh,14414,825,8 +95335,Daniel,323435,56385,4 +95336,Brooke Taylor,18925,135798,2 +95337,Macha,25518,8293,4 +95338,News Reporter,1595,547,8 +95339,Mugridge,131039,2320,10 +95340,Hannah Lee,256740,17140,0 +95341,Mr. Fulton,13649,78003,12 +95342,"Mohammed, the Team Captain",21567,101865,14 +95343,Hotel Manager (voice) (uncredited),936,590445,18 +95344,Mr. Waters,20304,56183,9 +95345,Bobbie Ritchie,19610,2048,2 +95346,SS Officer at Concentration Camp,41597,95613,26 +95347,Ballet Teacher,198277,1373351,23 +95348,Gorgana,29168,1497698,9 +95349,Qoria,150223,1299134,15 +95350,Mrs. Coates,20034,47404,7 +95351,Apple grocery store shopper (uncredited),354979,1636798,86 +95352,Rick Holmes,146679,263229,2 +95353,Make-Up Girl,17956,58521,15 +95354,Jacques,53404,1664226,21 +95355,Dory (voice),127380,14,0 +95356,Rémi Gagnon,270886,71507,2 +95357,herself,190940,35810,13 +95358,Felix Bush,44718,3087,2 +95359,,235092,566324,18 +95360,полицейский,43685,1773945,7 +95361,Joe,71120,1750860,5 +95362,El Demonio,122019,1075468,4 +95363,Kim Hyo-jung,36164,570899,8 +95364,Sgt. Salvatore Velasci,39979,49458,7 +95365,Lieutenant Shih,21519,1178942,8 +95366,Haldor,286873,1416300,20 +95367,Hospital Receptionist,24420,1393528,11 +95368,Miss Drumm,42191,78791,6 +95369,Carol Mason,37935,121488,2 +95370,Young Bailey,398289,1748057,12 +95371,,72054,1316172,24 +95372,Bethany King,271164,962148,5 +95373,Mr. Waxcap,407559,12438,3 +95374,Coach Little,45675,18324,3 +95375,Hotshot Gil (as The Hoosier Hotshots),173634,1506700,8 +95376,Chorus Girl,112083,117582,11 +95377,Lisa (voice),3989,34519,2 +95378,Jacek Lazar,10754,66459,0 +95379,Joe Parks,228205,1549538,15 +95380,Reggie,8270,54213,18 +95381,Drag Race Spectator / Bar Patron,339419,1650173,42 +95382,Jenkins,359471,23646,4 +95383,Malvina van Stille,44502,20577,0 +95384,John Dunn,425774,1707747,7 +95385,,256836,1355225,6 +95386,Tig,381054,220088,3 +95387,Basil,119820,582253,14 +95388,Mannish Woman on Train,62143,44404,41 +95389,Cockney Soldier (uncredited),16442,13557,41 +95390,Telephone Operator,43812,1161141,40 +95391,Hannah,45215,132494,6 +95392,Rocky,39356,122757,1 +95393,W.L. Dietz,247691,31260,15 +95394,Christy,10760,66539,12 +95395,Ghoul,20842,74762,11 +95396,Blanca Vasquez / Miss San Antonio,106747,55085,2 +95397,Williams - Quinn's Secretary,52864,104714,11 +95398,Slick,27966,94322,9 +95399,Anna Hellman,314371,1208146,8 +95400,,9550,1620873,9 +95401,Elevator Man,3937,1170356,17 +95402,Nardo Rusconi,93863,9928,3 +95403,Atendimento da Agência,34588,1747450,26 +95404,Archibald McPherson / McPiedish,146970,628316,4 +95405,Chiharu,11838,58444,1 +95406,Ellis Cole,340101,54738,4 +95407,Maxine,251227,1286523,2 +95408,Sophie,333385,1302422,7 +95409,Gen. Bullivar,74924,8632,3 +95410,Lao San/Wang Tao,33338,20654,0 +95411,Lex Luthor,209112,44735,4 +95412,Matroskin the Cat (voice),77294,99282,1 +95413,Marshal Dan Blaine,105059,3381,0 +95414,Bantu/Rose Mary Marlowe,20916,53674,0 +95415,Herself,31512,226830,13 +95416,P.K. Newborn,13823,75774,11 +95417,student,54503,240659,5 +95418,Eddie Sloan,99324,15978,2 +95419,Mr. Roberts,45431,101708,20 +95420,Larry,89492,13,10 +95421,Jason,44363,131821,3 +95422,Op Center Staff,19995,33305,45 +95423,,116236,1173841,7 +95424,Champ,42329,67685,2 +95425,Jane Lanyon,315855,145457,16 +95426,Gorgo,40804,1412946,13 +95427,Johanna,73099,93564,4 +95428,Bob,9963,16460,19 +95429,Crusader B,289720,1102423,12 +95430,Block,9541,5170,8 +95431,Keith,46972,11064,7 +95432,Policeman (uncredited),936,5816,15 +95433,Natalie Travers,54796,142858,0 +95434,Himself,360283,95868,3 +95435,Dr. Haines,3574,2009,4 +95436,,228339,1277478,8 +95437,Taxifahrer Bahnhof,2349,24073,22 +95438,Laurie,99545,9865,5 +95439,Caroline,54804,1225374,19 +95440,Ilsa Hermann,203833,2340,6 +95441,Trombone Player (uncredited),508,7018,36 +95442,,277631,11998,1 +95443,Navarre King,198176,120534,2 +95444,Ralph Bostwick,59738,1205524,10 +95445,,63215,1161743,14 +95446,Sopho,204712,17266,4 +95447,Yet Another Girl,17927,1223684,19 +95448,En Sabah Nur,127585,1738056,30 +95449,Christy,390777,20750,3 +95450,Le belluaire / Le haut hurleur (voice),22504,1458876,8 +95451,"Ed Rossi, Jr.",26486,20582,17 +95452,Junior (voice),132601,558924,5 +95453,Genesis Shareholder (uncredited),365942,1794891,56 +95454,Rob,14476,30316,6 +95455,Él,29568,133091,1 +95456,,438597,1247543,1 +95457,Dr. George Staton,33801,142269,3 +95458,,163077,55833,2 +95459,,96712,131290,4 +95460,Board Member,29510,104037,14 +95461,Herself - Belarmino's daughter,154019,1466042,3 +95462,Zivildienstleistender,94336,1001693,10 +95463,American POW,227306,1394439,42 +95464,Babs (als Adrienne Doré),80168,588934,9 +95465,Young Man,10754,1387,19 +95466,Nancy Marlowe,204040,47678,2 +95467,Lord Burghersh,191820,32058,6 +95468,Sinuhe - Age 10,24973,1747681,49 +95469,Surfer 2,332567,1686693,3 +95470,,334298,1621705,13 +95471,John Blake,85023,73022,0 +95472,Director of Photography,14543,9341,6 +95473,Specialty,147722,80649,13 +95474,Bob,179818,118802,3 +95475,Giovanni,58013,120020,1 +95476,"Harry, Radio announcer",82178,1036952,5 +95477,Woman on the Run,24963,97899,12 +95478,Barfly,183825,47001,47 +95479,Kathy,59408,26817,7 +95480,Max,413232,117029,42 +95481,Countess Rita,57866,121319,5 +95482,Korean Leader,59962,1224673,24 +95483,Pierre Giteau,354287,1356,29 +95484,Klein,99229,47838,4 +95485,Mother,50295,45002,3 +95486,Karen,66659,157672,4 +95487,Ben's Mother,14552,6684,4 +95488,Disheveled Man (uncredited),259695,1145861,28 +95489,The King (voice),14128,77546,3 +95490,Lester,19661,726,4 +95491,Stacy,305932,131734,8 +95492,Vista Producer,19794,43961,20 +95493,Mr. Q,352498,132856,4 +95494,Jimmy Green,83896,21563,0 +95495,Roget,60269,1219764,9 +95496,Amelia Jones,105965,3713,1 +95497,,52418,992630,3 +95498,Jiro,119926,10071,3 +95499,"Seu Guilherme, Guiga's father",108712,1491361,2 +95500,Laurent Chevalier,42501,38913,1 +95501,Vasco de Athayde,70815,90219,5 +95502,Ben Majors,59735,88450,3 +95503,Morholt,65646,36212,8 +95504,Inside Out Casino Man,12594,1000555,25 +95505,Blond Boy,318781,1694308,38 +95506,Peter,301804,155934,7 +95507,,85327,1035934,9 +95508,Tommy,86838,72873,9 +95509,Gabriel,10075,15533,3 +95510,Prosecutor,43821,13969,12 +95511,Lenny Neely,298228,98961,1 +95512,Bob Muldoon,152748,1893,0 +95513,One Eyed Informant,17386,111198,10 +95514,Agent Flynn,211387,11367,4 +95515,,280045,102093,7 +95516,Bobby Drake / Iceman,127585,11023,12 +95517,Technician,2503,122293,17 +95518,Ronnie,137528,1196004,1 +95519,William Gilbreth,50549,149021,12 +95520,Commander of U.S.S. Constitution (uncredited),112284,3245,23 +95521,Specialty Girl (uncredited),15092,1299441,76 +95522,Radiologist,18045,82645,6 +95523,Sheriff Lee Brackett,24150,1370,4 +95524,El Niño,81463,1480664,5 +95525,,80281,586625,9 +95526,Man,333663,85419,20 +95527,Announcer (voice),10857,67267,2 +95528,Naoto Hayase,189151,124402,1 +95529,Mrs. Jackson,106020,273906,9 +95530,Simone Legree,6081,40403,4 +95531,Cluny MacPherson,142150,8318,3 +95532,Ross Ormond,28363,24556,4 +95533,funzionario del cimitero,109979,1029135,10 +95534,Caroline Braden,1420,17027,13 +95535,Scott Donnelly,23367,95388,33 +95536,Harry - Motion Picture Executive (uncredited),36612,34277,9 +95537,Helen Riley,156360,104018,1 +95538,Pedro,62012,583224,5 +95539,Officer Mathews,31150,198415,11 +95540,Lee Jeong-heui,155941,1010877,6 +95541,Amante di Carlo,40817,1203205,17 +95542,"satulasepän oppilas Jansson, vatsaan ammuttu mies",442752,1761832,22 +95543,Karel 'Jimmy' Malik,41131,125552,4 +95544,Punk Receptionist,7326,64914,14 +95545,Katharine Kilpatrick,133328,157227,8 +95546,Willie Worsley,9918,1003386,17 +95547,Miss Fortini,167073,82096,8 +95548,Olivier,259997,1219590,12 +95549,Mercedes,84056,930830,8 +95550,Shiraishi,36214,1173786,6 +95551,Martha Cox,13649,964908,15 +95552,Jesup,13486,141465,8 +95553,Comanche Todd,44921,12149,0 +95554,Cpl. Jason Lockett,44943,74302,3 +95555,Alex,86279,1338747,7 +95556,Lee Byeong-hoon,53514,1238415,0 +95557,Audition Girl,24469,1579249,28 +95558,Molly,228028,66745,7 +95559,Baek Seon-gi,285213,1572347,15 +95560,Vova,437830,569842,2 +95561,PC Green,381518,1118058,19 +95562,Annelise,10119,63763,3 +95563,Iku Kasahara,363354,589923,2 +95564,Clyde's Wife,22803,1577506,17 +95565,K-1 Kickboxer,290864,66125,9 +95566,Saul,238589,84197,5 +95567,Adelaide,56369,32379,3 +95568,Bud Jenks,2979,117176,8 +95569,Casino Guard,12594,1884995,27 +95570,"Turek ""Maho""",382155,1029129,20 +95571,Officer Sanchez (as Mark Adair Rios),77585,4511,3 +95572,,369054,75346,3 +95573,,76651,1403283,17 +95574,Will (uncredited),52360,94897,28 +95575,"Shinoda, the horse cart man",125257,240010,6 +95576,Hobbs,168259,18918,2 +95577,Genesis Shareholder (uncredited),365942,1794894,57 +95578,Asian Assassin,220820,1206149,17 +95579,Police Inspector,347807,85588,12 +95580,Female Staffer,358895,146333,15 +95581,Saratoga Park Pedestrians (uncredited),76203,1438680,89 +95582,,40146,1448,11 +95583,Rita Bougon,430058,984837,2 +95584,Max Wynn,227325,11086,5 +95585,Agneta Vilander,51141,70359,3 +95586,Achmed,50761,53819,5 +95587,Jack Jericho,17258,3223,1 +95588,Witch (voice),59297,217924,4 +95589,Blair Warner,109170,189491,3 +95590,Tunisienne,383064,1642750,9 +95591,Bert,9352,57403,16 +95592,Himself,191502,39657,6 +95593,Rachel,8053,6832,4 +95594,Chiara,38286,7543,3 +95595,Puss in Boots (voice),10192,3131,3 +95596,Rebecca Knepp,45792,206926,4 +95597,Alice Pritchard,111042,7641,2 +95598,Killer (as James Hebert),86838,1170659,17 +95599,Stanley Wentworth,85507,61101,3 +95600,,62397,1013909,22 +95601,Rodger,126947,100559,0 +95602,Grandmother of Rudy,346443,1041739,9 +95603,President El Bama,377587,41798,3 +95604,Rosie (6 yrs),200727,1734967,20 +95605,María,63066,1867441,9 +95606,Smaranda Cîndescu,319993,39961,5 +95607,Sal,1482,1187,5 +95608,Long John Silver,26612,10017,0 +95609,Adan Isä,40660,124262,2 +95610,Lee Seung,343140,1417442,5 +95611,Derick,40990,62919,5 +95612,Mr. Reid,66113,4783,1 +95613,Al Braverman,373546,2372,3 +95614,Hamilton Cobb,74629,8499,2 +95615,Dutch Lady,245700,1798374,69 +95616,Fire Chief Wickersham,1586,58169,8 +95617,Margaret Lavelle,24810,14061,2 +95618,Ahnjayla,161620,89567,5 +95619,Velma (voice),13355,86314,1 +95620,Larry,54660,14064,2 +95621,Joseph Mendelsohn,241239,24292,11 +95622,Stella,18908,4458,3 +95623,Captain Winston,97632,16214,0 +95624,Bill,28682,40887,3 +95625,Caddy Compson,287636,999605,5 +95626,Ruth,342684,231486,4 +95627,Aisha,46341,302412,5 +95628,"Ramona Talarek, rozwodząca się żona",155426,1519449,12 +95629,Alex,59118,136745,12 +95630,Julie,209406,73454,5 +95631,Gregg,55294,1112043,7 +95632,Komiser,452606,1202115,14 +95633,Masami,38010,230119,0 +95634,Jeannie Andrews,38389,85346,1 +95635,Stranger,140825,15395,9 +95636,Sheriff Walter Moncrief,35381,12852,15 +95637,Gina Conte,16080,10826,2 +95638,Paul McCartney,33511,25663,5 +95639,F. Baker 'Beezy' Anderson,43808,121175,7 +95640,Young Cop,36113,99692,3 +95641,Hyppolite,72678,145161,2 +95642,Ginger Thompson,235092,21841,5 +95643,Millie,188161,24357,14 +95644,Okafor,325803,1352016,6 +95645,Mother,108723,83024,10 +95646,Young Woman,1579,17687,14 +95647,Dr. Seamus St. Martin,29695,1466,5 +95648,Klasse 3c,61035,1445786,29 +95649,Kim Min-jae,49190,10112,1 +95650,,10484,146232,24 +95651,Sally,65282,94199,7 +95652,Nellie Brinker,107593,97257,9 +95653,Extra (uncredited),3059,1347532,62 +95654,Alejandro Toledo,352094,1235729,1 +95655,Ben Kyle,26514,1465097,8 +95656,Opera Police,177677,36097,42 +95657,Clerk,134238,89034,21 +95658,Thom,12182,54247,2 +95659,Shaggy,45752,26457,1 +95660,Western Union Boy,43846,1422117,18 +95661,Dianne,747,11111,3 +95662,Jonas,59962,84338,14 +95663,Nancy,81522,105350,1 +95664,Casey Taylor,13836,87332,27 +95665,Taulard,122192,221433,6 +95666,Virgil (as Laszlo Szabo),64225,38899,5 +95667,Pinto,277967,1469171,9 +95668,Seth,35656,171538,8 +95669,Vivek,192558,229276,2 +95670,John C. Winant,174278,14564,4 +95671,Martin,103597,64751,1 +95672,Big Russian Passenger,19898,20132,15 +95673,'Jasny',356191,980177,2 +95674,Sgt. Maj. Jack Tyne,25385,47549,4 +95675,Lt. Colonel Bill Kirke,121154,96182,9 +95676,Frau Schwartze,259358,8205,8 +95677,Chuck Ramsey,261035,31705,4 +95678,Cabbie,252680,47932,20 +95679,Pawnbroker,2742,180934,17 +95680,Abdullah,1164,18046,32 +95681,Reed,45729,133591,9 +95682,Sage,209112,1648751,58 +95683,Sad Detective,312174,1400599,12 +95684,Prime Minister's Aide,11012,1093410,17 +95685,Bobby B.,50318,1001803,16 +95686,Chester Rice,281291,10132,4 +95687,Doctor Stella,164331,727467,3 +95688,Pat Robinson,52485,100150,1 +95689,Stewardess,85442,59051,16 +95690,Little Jack,55604,285641,25 +95691,Alfredo del Ferice,70734,1388067,9 +95692,Igor,74924,84229,10 +95693,Susan Van Tuyl,77412,103232,4 +95694,Sonny,26574,95684,8 +95695,Go-Go Dancer,77930,1784680,79 +95696,Howard Brubaker,90563,3151,0 +95697,Shae,410537,30064,5 +95698,Paramedic,1640,1331795,46 +95699,Cabin Manager,240832,226021,18 +95700,West Point Football Player,43812,35847,35 +95701,Himself,37203,124891,0 +95702,Oda,47065,60650,4 +95703,Du Fresne,195068,104805,11 +95704,Seance Man 2,27259,97443,20 +95705,Kati,2195,23169,0 +95706,Susan Bryer,17956,219574,25 +95707,Clare,16921,84700,6 +95708,Noodler / Pirate / Indian,273106,1519562,17 +95709,Bob Bolaño,333663,454,0 +95710,Frank,310602,89973,1 +95711,Hamidou,99819,1021739,3 +95712,Headmaster,86274,47643,5 +95713,"Mrs. O.H.B. Gage, Kay's Grandmother",179066,13965,6 +95714,Władysław Kargul,8211,1103810,14 +95715,Ed Black,127564,95012,5 +95716,Unfrozen Cancer Lady,280617,1843236,20 +95717,Charlotte Duchannes (uncredited),109491,565501,29 +95718,Taxi dispatcher,38034,548053,7 +95719,Rana Birendra Pratapsingh,210068,86784,6 +95720,Maiden #1 / Generic Female #2 (voice),809,205030,21 +95721,Kate,227094,4570,1 +95722,Vampire Cadet #2,346672,1883803,25 +95723,Stamatis,47110,935647,2 +95724,Kondrat (voice),81604,565325,3 +95725,Lawrence Wilheimer,186759,52374,14 +95726,Julia,382598,1364908,1 +95727,Aunt Abby,27629,82490,14 +95728,Le faussaire,336811,76285,17 +95729,,103875,1016315,4 +95730,Angelo Dundee,69903,7502,1 +95731,Vocalist - Opera Montage,98328,1711364,11 +95732,,65958,304463,8 +95733,La DRH société de courses,77338,84430,16 +95734,beggar,53042,147109,12 +95735,Tambrey 'Tammy' Tyree,62392,89808,0 +95736,Lisa Hunter,131903,21625,0 +95737,Jacques (voice),127380,7960,27 +95738,Ferryman,32657,2320,13 +95739,Tadashi,25684,566939,9 +95740,,176321,48029,1 +95741,Aaron's Friend,44115,142182,7 +95742,High School Teacher,85350,79008,64 +95743,Pierpaola Moser,165159,235566,3 +95744,Chato's woman,26119,113637,7 +95745,Detective,31512,226828,10 +95746,Wilfred Böse ('Boni'),43434,1117773,12 +95747,,254689,1296081,8 +95748,Cap Driver,327389,1432091,12 +95749,Franz - Her Son,95169,1670560,3 +95750,Dr. Alex Friedman,13836,17832,3 +95751,Mr Law,41380,119460,5 +95752,Grand Duke (voice),20421,290,4 +95753,Felix,22615,1640,0 +95754,Amy Pagnozzi,19754,27106,2 +95755,Zicmu,6935,51496,3 +95756,Joseph Wiley,107028,31070,0 +95757,Unireal Hotel receptionist,2009,479941,11 +95758,θου βου,185111,1031166,0 +95759,Harris Dawson,38526,94381,5 +95760,Asaf,414771,1701495,1 +95761,Mrs. Kim,13090,1803311,12 +95762,Chief Ronnie,40087,1166385,12 +95763,L'homme,65612,27440,3 +95764,Bullfinch,121674,1878805,32 +95765,Scientist #1,27549,14663,17 +95766,Virginie,9736,378552,5 +95767,Cat,89492,139135,5 +95768,Mario,20221,929422,2 +95769,Richard Shaw,419430,1242199,13 +95770,Natasha,126523,549586,1 +95771,"Patrizia, un'altra attrice",71133,1074070,6 +95772,Herself,43514,3380,2 +95773,Greg Larson,42250,56124,0 +95774,Father Jimmy,81660,13473,5 +95775,Kate,36635,89725,8 +95776,Polka Lady,51036,1879478,30 +95777,Biyi Balogen,157384,1180092,3 +95778,Rose Hopkins,43321,64870,3 +95779,Nun,8852,554010,16 +95780,Martineau,7229,13689,14 +95781,Mandy Rhodes,117942,1428381,2 +95782,Kate,38317,5916,1 +95783,Anatole MatteMatteï,37645,72945,12 +95784,Teen Girl #1,293660,1683933,16 +95785,Sheila,354979,1726660,7 +95786,Alec,314065,8654,2 +95787,Leah Tilson,12767,4430,1 +95788,Susie,19528,1620915,18 +95789,Dana,62492,14892,8 +95790,Feng,168814,231722,1 +95791,Fievel,31473,34199,0 +95792,Pub Announcer,13802,1123187,11 +95793,Reporter (uncredited),14615,88462,76 +95794,Stina Andersson,60899,70276,0 +95795,Sam Benson,43117,97659,10 +95796,Phantom of the Basket,47508,1263246,12 +95797,Wang Xiaoliang F.G. sqad member,62071,1555828,12 +95798,Raphy,238781,40937,7 +95799,'Thin Lips',99318,83253,5 +95800,Chris,314011,63078,7 +95801,Barbara Thomas,100910,14683,2 +95802,Lt. Robert Hearn,43142,19153,1 +95803,Hobo Jack,15213,1441177,21 +95804,Mr. Goto,36214,1189711,4 +95805,George Katz,143144,1118345,1 +95806,Robert,169758,13021,0 +95807,Ashley,104232,1440057,2 +95808,Himself,76686,1098639,3 +95809,Peg,10330,159985,4 +95810,Porthos,41609,70985,5 +95811,,109354,557281,3 +95812,Younger Asher,381645,1689148,11 +95813,Peggy,116894,101798,4 +95814,Marie Kürten,99229,1297131,2 +95815,Matt Doyle,17687,82316,2 +95816,Tech,195269,76828,17 +95817,Red Knee,57201,84225,15 +95818,Carl Marshall,337073,1481007,8 +95819,Gemma Pratesi,56992,24424,0 +95820,Eddie,156356,153277,4 +95821,Firmino,86234,1284830,4 +95822,The Crooner in 'Ring Around the Rosy',47310,138397,10 +95823,Piers,278632,1102453,8 +95824,General Amajagh,209112,19300,46 +95825,Tony,10744,13644,12 +95826,Client,332168,983506,3 +95827,Mitsu,1164,18057,43 +95828,Butch Lovemaiden,5928,10224,4 +95829,Van Gogh,445916,1708423,7 +95830,Captain Bellamy,58,2451,15 +95831,Dr. Francis,417678,10875,10 +95832,Shadha,390587,568657,2 +95833,Additional Voices,15213,1441532,29 +95834,Billy,58664,1214847,10 +95835,Thug #2,33005,1710215,14 +95836,"Mrs, Dalrymple",118900,94114,12 +95837,,130948,1137525,6 +95838,Mourner #1,10918,134899,19 +95839,Dr. Eugene Glztszki,42094,57351,4 +95840,Tea,288313,1355967,3 +95841,The Thief,45303,21909,1 +95842,Stefan,49717,74928,6 +95843,Dr. Paul Leahy,8852,6916,11 +95844,Mayor Cryer,3580,163774,25 +95845,Sengyobu Chief,81296,1252764,7 +95846,L'ordonnance de Maury,258384,1177720,29 +95847,Don,20,100,2 +95848,Helen,12255,7906,1 +95849,French Bellboy (uncredited),28571,1331759,19 +95850,Mrs. Kendrick,1976,20369,8 +95851,Kentucky Derby Patron,118889,120739,49 +95852,,38359,562603,0 +95853,Henry Laing (aged 20),29989,936018,3 +95854,Mannequin studio photo,10795,1030402,34 +95855,Electra Johnson,340275,1531585,12 +95856,Paraguaçu,70815,556494,1 +95857,,27351,58609,4 +95858,,256916,3618,1 +95859,Engineer (uncredited),15794,1161790,38 +95860,Stuntman Mike,1991,6856,0 +95861,Donut - Hexagonal Staff,9470,1173200,5 +95862,Vega,13653,1074924,6 +95863,Edward Morgan,26131,70004,3 +95864,Mike Shaw,3164,30977,1 +95865,Crystal,379959,1573178,3 +95866,Mr. Angr,224282,1952,8 +95867,Trick or Treater Parent Soldier,330947,1650319,47 +95868,,142656,1136164,15 +95869,Mrs. Tanner,72847,110208,8 +95870,Edmund Tyrone,237549,8212,2 +95871,Batman (voice),396330,963818,3 +95872,Supt. Walter Tsao,10044,26742,8 +95873,Midori no Haha,53064,1107774,7 +95874,Bobby Johnson,18442,101253,7 +95875,Zhenya,142746,1117907,0 +95876,Mrs. Dorbell,81120,119669,8 +95877,Anka,382155,1613074,23 +95878,Pinkie Pie / Fluttershy,201676,74368,2 +95879,Chan Chi-Pei,18741,70946,1 +95880,Attila,232731,1192630,3 +95881,Dr. Sam Costell,8669,64310,23 +95882,Marshmallow (voice),326359,1340669,6 +95883,,80276,1640290,11 +95884,Sarah,7871,53236,5 +95885,Brulard,258384,146547,18 +95886,General Lin Mei,311324,1151657,1 +95887,Chinese Man,329865,450628,41 +95888,Holly,265208,58635,3 +95889,,140883,1113723,9 +95890,Man in Balcony in Fields Audience,18651,34186,38 +95891,Joanne,14823,73355,0 +95892,Mrs. Margaret 'Maggie' Higgs,208529,11870,7 +95893,Blind Mouse (voice),809,12097,10 +95894,Leach,131039,1863,5 +95895,Ênio,361146,1890514,0 +95896,Ruth-Ann,244539,1508831,20 +95897,Duncan,262338,1132749,22 +95898,Orville Bridges,43753,104323,5 +95899,Gina,23628,90404,11 +95900,Theatre Audience,118943,1176590,12 +95901,Cheyenne,19912,147085,16 +95902,Young Jakob,18613,88392,3 +95903,Dahomey Queen,62330,157439,2 +95904,Miguel,347666,37559,5 +95905,1978 Fancy Woman,55347,235852,20 +95906,Tonia,83770,99414,14 +95907,Detective Joey Gentry,131966,19183,1 +95908,Azy,59935,230084,2 +95909,Young Sonny,424600,1704675,34 +95910,Dynamit-Harry,37731,139089,1 +95911,Gant,48838,5538,5 +95912,Band Member 4,85350,1467982,61 +95913,Mrs. Dent,38684,1089523,30 +95914,,16015,564021,15 +95915,Ensign,16320,80434,24 +95916,Doctor Robert,4688,33684,15 +95917,Svante,41764,6004,33 +95918,Carla's Mother,2143,132895,17 +95919,David / Torture Man,345918,134848,17 +95920,Luc,58487,16922,3 +95921,Bruce Banner,14613,106950,8 +95922,Professor Dimitris Lainis,421365,935647,1 +95923,Jasmine (Ruby's maid),75880,590532,10 +95924,Shirô Kashima,2487,1270057,6 +95925,Mary McKinley,274060,1934,6 +95926,Commissioner Leonardo Tanzi,52808,85338,0 +95927,Luke,93828,142289,10 +95928,Alliana,29168,102896,4 +95929,Bossboy,145668,1163308,4 +95930,Pale Teenager,310593,1331023,7 +95931,Hotel Manager,70583,558910,2 +95932,Rena,47462,43903,8 +95933,,130957,22593,11 +95934,Riitu Päätalo,109861,1517103,5 +95935,John Fenton,85442,95092,4 +95936,Hipster,12182,71553,5 +95937,Shady Character Outside Strip Joint,51036,26468,17 +95938,Guler Mehndi's wife,276846,87329,7 +95939,Enzo,215881,109438,1 +95940,Gertrude,239056,1260481,5 +95941,Department head Lee,204553,1294642,16 +95942,Sanosuke Hotta,141819,584143,9 +95943,Jimmy,96133,587455,14 +95944,Kwon,128081,1094117,0 +95945,Federico,315872,57877,9 +95946,Buzz Lightyear,130925,12898,1 +95947,Officer Wally Johnson,88005,17449,11 +95948,Lucas,345054,134657,13 +95949,Officer,49391,34720,10 +95950,Josh,52850,86133,5 +95951,Jonadab,2734,27650,27 +95952,"Matsumura, old man",52047,1115039,8 +95953,Bartender (uncredited),16320,80448,40 +95954,Philip Cagle,45627,33484,3 +95955,Lawyer Cohen,121888,101549,11 +95956,la femme,4443,79924,10 +95957,Himself,140554,1434413,13 +95958,Steamboat Crew 1st Mate (uncredited),76203,1438286,58 +95959,Old Man (USA),1926,7502,0 +95960,Pickles,28170,1861058,16 +95961,Frovin,48791,1125,14 +95962,Himself,256628,74750,1 +95963,Andreina,41054,125358,5 +95964,Purlene Dupre,31146,27539,4 +95965,Eliot,10145,14984,2 +95966,McKay,126550,137004,9 +95967,Bit Part (uncredited),110887,120755,19 +95968,State Police Commander (uncredited),52864,30017,15 +95969,Receptionist (uncredited),86838,1628961,30 +95970,Reporter,143946,1200876,21 +95971,The Don,105551,5401,9 +95972,L'Homme dortoir,1899,20964,8 +95973,Navy Officer (uncredited),1421,3590,43 +95974,Barkeeper Gap,53364,557958,2 +95975,Danny,32226,79494,0 +95976,Herself,76494,216321,21 +95977,Doctor,126516,1092927,11 +95978,Anna Dover,146233,1224251,13 +95979,George Vale Melton,31445,30212,0 +95980,Marc,214093,8789,0 +95981,Himself,86284,141994,7 +95982,madame Patimkin,42604,87039,3 +95983,Alan Brody,140032,161559,3 +95984,Vääpeli Körmy,55763,147771,0 +95985,James 'Jimmy' Davis,150712,72059,2 +95986,Sara,104431,1036284,2 +95987,Katlyn,364088,1523165,8 +95988,Annette,39413,67902,7 +95989,Claude,2861,47226,11 +95990,Police Chief,379959,1459155,5 +95991,Kiki,48116,1030522,0 +95992,Zor,31264,99539,2 +95993,Brandner Kaspar,17008,81145,0 +95994,Jacob Vikra,336882,74721,7 +95995,Lester,29136,1896746,7 +95996,Malcolm McGee,24123,5945,7 +95997,Mildred Pringle,185934,150946,3 +95998,Kwok Wa,11647,26731,13 +95999,Marty White,200447,10165,3 +96000,Kurt,267654,37478,4 +96001,Tilly,337958,1323881,5 +96002,Dr. Denton Whiteside,55922,21290,10 +96003,Bar Couple,253794,1289600,7 +96004,Jon Fennel,58903,56961,6 +96005,Carla,64807,1134443,8 +96006,Marianne,377290,1643036,19 +96007,Adelaide Passmore,120357,29761,10 +96008,Kyle,369033,51533,1 +96009,Loredana Ciraulo,121998,76340,1 +96010,"Elsie, a Maid",106635,22948,9 +96011,"Ryosuke Nonomiya, as child",52047,145252,2 +96012,Caracas,80389,69865,6 +96013,Brad Cavanaugh,194509,7124,1 +96014,Ferrante Albrizzi,53945,149308,3 +96015,Gordy,30995,107478,2 +96016,Kev,312221,1746879,30 +96017,Der Neue,10565,11953,9 +96018,,44716,297106,24 +96019,Anna,97797,1014979,0 +96020,,314388,1353695,3 +96021,Narrator,152736,1333564,1 +96022,Sarah Hallowell,274325,941822,7 +96023,Le mari de Zoé,92424,125412,12 +96024,Doctor Connelly,383538,1851870,22 +96025,Leutnant Harmann,178446,143197,26 +96026,Coroner,23382,90043,6 +96027,Poor Dear,121401,107307,5 +96028,Assureur,35025,1681500,28 +96029,Magier,56344,222934,8 +96030,Claire Dunham,45335,84285,3 +96031,Versicherungsagent,2993,29430,6 +96032,Lane,25643,58873,6 +96033,Newspaper reporter,43113,1484031,80 +96034,Claire,43938,213044,4 +96035,Private Adams,80941,34610,8 +96036,School Principal,107250,1834268,18 +96037,Consul Magnus Barring,27622,29137,5 +96038,Nurse Attending Ann,124115,30263,18 +96039,"Zoe, the maid",66812,5038,10 +96040,Diana,2516,25635,2 +96041,Sister,315855,17257,58 +96042,Gregor,296313,1018,2 +96043,Laughing Psychiatrist,47057,138000,4 +96044,Goldwyn Girl (uncredited),108224,117694,11 +96045,Ray / Matt Dobbs / Patrolman #2,18633,2224,7 +96046,Mourning Widow,263115,1579181,51 +96047,,141635,1466419,8 +96048,Daba,110608,81235,2 +96049,Maïa,381356,1389058,10 +96050,Clem Smith,180819,114402,6 +96051,Herb,8199,15824,6 +96052,Nicole,4413,209,9 +96053,Mathilde Duchamp,91380,5683,8 +96054,Syren 3,274857,1345419,34 +96055,Simon,15712,5443,0 +96056,Lol,11798,148139,4 +96057,Bob,30155,82561,14 +96058,Fiona,70736,50347,0 +96059,Kondrat Perepelitsa,174720,1098616,3 +96060,Lola,274483,1367031,8 +96061,Bernice Eckert,229610,1137630,9 +96062,,315841,1491122,6 +96063,Adrian Keane,107985,1278136,48 +96064,Janitor,39284,1060552,8 +96065,Paola,42599,102940,12 +96066,Drunk #1,11584,180815,11 +96067,Jo (as Tina Coté),146926,94648,1 +96068,Capt. Thenault,9664,1003,2 +96069,Hila,96888,1070663,9 +96070,Soldier,5753,101281,12 +96071,Detective Duncan Hatcher,95807,38405,0 +96072,Mr. McAllister,306952,1094642,11 +96073,Captain Wood,28323,16431,2 +96074,Veerabhadran,134474,111668,8 +96075,Mr. Geyer,106135,58333,4 +96076,David Nash,102630,55084,2 +96077,Jude,25977,102775,3 +96078,Superintendent J.S. Forest,42989,1221533,10 +96079,Siida-Isit,2172,22561,4 +96080,Ricky Nicolas,300321,1164767,2 +96081,B.G,450530,1379821,10 +96082,Musician,75315,121068,46 +96083,Queen,10257,64437,6 +96084,The Major,43354,115602,6 +96085,Hattie Anderson,23719,1537,6 +96086,Mike McGrath,98364,589728,9 +96087,Adams Club Maitre d' at (uncredited),43546,93624,24 +96088,Attean,274325,62478,9 +96089,Saleman,125490,1226806,31 +96090,Julie Heldon,120932,10159,1 +96091,Theeb,287628,1475590,1 +96092,"Wesley ""Link"" Lincoln",109491,1142720,5 +96093,Waylon,63217,43243,3 +96094,Becca,47863,139543,3 +96095,Maj-Britt,343283,323149,3 +96096,Room Clerk,99374,8545,7 +96097,Bobby,11247,55259,10 +96098,,102901,1011126,1 +96099,Wanda,117452,87676,1 +96100,Cimoski,75174,208069,14 +96101,Baby,44303,1195239,8 +96102,,10484,1609179,30 +96103,Marianela,125619,1293070,8 +96104,Dock Shore Patrolman (facing camera),257081,34448,37 +96105,Officer Figus,10694,33489,13 +96106,Mikey Mendarolo,51209,11482,5 +96107,Fred Bailey,19053,106696,4 +96108,Himself (Brokedown Cadillac),13836,1673239,33 +96109,,105991,1265889,2 +96110,Himself,15258,3214,94 +96111,Benny,15090,1868693,8 +96112,Bill Lusk,33673,14517,3 +96113,Ecki,11930,34295,3 +96114,Marito di Flaminia,82083,234392,16 +96115,Giacomo,11839,8516,10 +96116,Yoshiyuki Terada,31347,24647,13 +96117,Stephen Lowry,44902,41235,0 +96118,Lori,228028,54882,0 +96119,,13506,93407,16 +96120,Rene Bartlett,300654,21089,0 +96121,Pandora 'Dora' Circe,65280,11321,4 +96122,Renee,15006,65760,3 +96123,Bing Wong,19827,20904,9 +96124,,254869,1423072,23 +96125,Uber Douche,426230,3492,15 +96126,Minor Role (uncredited),42641,1090856,10 +96127,Lorna Boyd,26204,96498,14 +96128,Bernadette,85265,225446,14 +96129,Mitarbeiterin in Warschau,167424,1822701,20 +96130,Stormtrooper,330459,175854,93 +96131,The Witch,295627,1368955,1 +96132,Martha Benson,55638,56105,6 +96133,Tomobe,14525,27782,11 +96134,Will Scarlett,113175,144075,2 +96135,Russian Woman,166666,1148271,9 +96136,Princess Margaret,300155,1201716,1 +96137,Eddie Durkin,207402,1190280,0 +96138,"Starszy sierżant Olgierd Knyga ""Żandarm""",382155,1636687,17 +96139,l'avocate,4974,579267,9 +96140,Underwood,197737,89673,8 +96141,Miller,28820,5268,7 +96142,Agent at Directional Map (uncredited),15794,121209,20 +96143,Alex,226269,583932,5 +96144,Wiley Hunter,52741,111702,4 +96145,Jimmy Fey,16203,161455,2 +96146,Agatha Cromwell,34205,8857,1 +96147,Maitre 'D,330115,1321644,11 +96148,Lianna,78177,537336,0 +96149,Geography Teacher,13258,52888,8 +96150,Ben Carlyle,139244,55152,1 +96151,Voice Cast,222935,94022,47 +96152,Mademoiselle Edith,33623,76827,4 +96153,Paxton,302666,60062,15 +96154,Lola Sarti,82080,41163,2 +96155,Kitty,244580,96922,15 +96156,,455043,986480,6 +96157,Jeff,18774,109200,10 +96158,Niña,48594,1804260,11 +96159,Blind man,19506,112861,4 +96160,Ambulance Driver,52808,1019919,9 +96161,l'agente di polizia,43548,129635,12 +96162,Dayle,97683,1039523,0 +96163,Barney,120259,93624,13 +96164,The Old Man (uncredited),11206,22099,11 +96165,Dale Varney,283384,63546,12 +96166,Mental Patient,24094,97455,12 +96167,Chalker,290999,1361556,5 +96168,Guard,310135,1646584,23 +96169,Kuro (voice),201223,1221877,7 +96170,Rocco Santamaria,43200,57345,1 +96171,Lale,59935,230087,5 +96172,Mo Chang-hwan,435821,1418580,3 +96173,Veena,337876,1168224,5 +96174,Judith,45988,1730430,6 +96175,Bill Thorpe,42640,84230,7 +96176,Cynthia Smith,10004,61829,8 +96177,Kale (voice),14411,352,4 +96178,,126227,112574,2 +96179,Hui Fei,875,13341,2 +96180,Older Man,222858,101377,10 +96181,Harry,14527,949051,8 +96182,Police Officer,305932,1585167,18 +96183,Alice,156,1834,2 +96184,Bella Girl,19918,125789,22 +96185,Nightclub Patron (uncredited),10178,1208035,16 +96186,,5319,1246564,8 +96187,Хилл,56372,22384,5 +96188,British Soldier (uncredited),297762,1809569,83 +96189,Whitney,401164,1817399,2 +96190,Aiuto Brigadiere,128657,23370,10 +96191,Rodolfo Boscovich,187737,25333,1 +96192,Ronnie Earl,70074,12792,8 +96193,M,206647,5469,3 +96194,Joey,13358,1083698,6 +96195,Farrel,101006,1801265,1 +96196,Jacek,377158,591246,3 +96197,Trish,59738,160247,13 +96198,Tim,278632,1425463,10 +96199,Halloween Princess,268920,1755075,82 +96200,Robin Cape,39517,11278,5 +96201,Marvin,89337,50235,9 +96202,Johanna,112675,1130080,8 +96203,Sewing Shop Manager,187028,1728942,5 +96204,Frank Walker,226968,5605,3 +96205,Margaret Ingston,99545,34184,3 +96206,Sarah,461955,43903,4 +96207,Munezô Katagiri,34019,68973,0 +96208,Dr. Paul,252028,1287321,10 +96209,Mickey Backpacker,260030,1424440,11 +96210,,328692,1434873,9 +96211,M. Beaumarchais,134480,2495,4 +96212,Telephonist,72638,119544,35 +96213,Yuen Tai-Heng,38034,1134506,11 +96214,Stoker,59408,26245,11 +96215,Quinn,220820,1954,1 +96216,Minor Role,43806,34208,60 +96217,Wainswain,341689,1269683,14 +96218,Tomkins,325803,1428028,15 +96219,Skolelev,82448,928018,20 +96220,Bing Foo,118139,13791,9 +96221,,51549,65511,13 +96222,Al Weber,31672,10169,1 +96223,Christopher Coombs,6976,25638,1 +96224,Pop,72602,145987,4 +96225,Corey (Teammate),183662,204088,14 +96226,Filippo Garrone,105509,24657,7 +96227,,267815,87015,2 +96228,Pat Frato,245706,824,4 +96229,Steele,30374,1590926,3 +96230,Grace,7871,53235,4 +96231,,335897,43649,5 +96232,Second Policeman,27966,974832,33 +96233,Miss Snow,11012,1220081,11 +96234,nanny,48508,96663,2 +96235,Vilma,57866,1420958,7 +96236,Hogan (uncredited),43522,81974,42 +96237,,27276,551833,23 +96238,Dr. Logan,24094,31533,18 +96239,Professor (uncredited),42825,14487,9 +96240,Bathing Woman 2,315855,1592931,45 +96241,Han Gi-Joon,64882,150903,1 +96242,Elder Vorin (voice),16873,2372,13 +96243,Tiffany's Coach,13374,1291605,11 +96244,voice,86700,933516,9 +96245,Veronica / Tender Lovin',29054,74613,7 +96246,Evacuee Mother (uncredited),6972,1673474,41 +96247,Gynecologist,26810,113604,18 +96248,Miranda Aisling,21533,202073,2 +96249,,285685,64326,3 +96250,Irene,66113,79692,6 +96251,Marshal Foch (uncredited),16442,22099,46 +96252,Tucker,347630,1528128,8 +96253,Duke,34193,21523,3 +96254,Chief of Police (uncredited),15794,31265,17 +96255,Narrator,10165,1497463,5 +96256,Leo Dalco,3870,3088,7 +96257,Spliss,9803,38842,10 +96258,John Dragan,122435,9097,5 +96259,District Attorney (uncredited),27986,128401,14 +96260,Beatriz,19936,17523,0 +96261,Boskie Futro,375742,591258,8 +96262,capostazione in bicicletta,58611,228150,14 +96263,Eric Wellman,284293,73933,9 +96264,Party Kid #1,18843,1411134,38 +96265,Brady,17978,58214,12 +96266,Dolores Ramirez,79372,89088,1 +96267,D.A. Goodhart,163376,148744,4 +96268,Danny,20430,21088,7 +96269,Dick Blackworth,340684,73933,7 +96270,Herself,432883,457674,1 +96271,il domestico cinese,43211,74540,15 +96272,Hugh Trimingham,36194,9126,6 +96273,Scipio,110261,37722,2 +96274,Titch,92391,1071130,10 +96275,Conlan's Buddy,312221,1214974,28 +96276,Vet Receptionist,7547,1310611,14 +96277,Chloé,82501,1125106,5 +96278,Detective,30941,133853,34 +96279,Eric,58646,8654,0 +96280,Bragg,109886,25176,5 +96281,Marilyn Bartlett,8669,15250,2 +96282,Dr. Tamba,25528,59804,4 +96283,Mrs. Asher,109491,1354257,19 +96284,Householder's Weakling Brother,193899,8830,1 +96285,Dienstmädchen Dörte,266044,1155563,10 +96286,Mickey,57307,5445,4 +96287,R.A.F Police Officer,369885,1651416,58 +96288,Ernie Boyle,29116,74875,5 +96289,Don Gaetano,47096,5676,1 +96290,"Marie, the mayor's wife",99361,232213,3 +96291,Anna,188161,6885,1 +96292,Bill Whitten,51736,1178309,12 +96293,,47324,1620571,10 +96294,La directrice,54155,129766,11 +96295,Sydney,246422,544683,11 +96296,White Radical,103850,1629954,11 +96297,Teacher,6934,2620,2 +96298,Graduate Student,381008,1589603,16 +96299,Lillie Sterling,5201,19549,0 +96300,RAdm. Joseph Maitland,257081,96721,15 +96301,Niagara Falls Tour Guide,22419,56172,6 +96302,Headmaster,62397,1594358,2 +96303,Harrison,21413,6719,7 +96304,Student #2,10521,111922,19 +96305,Nadia Wilson,337104,1355719,12 +96306,Yutaka Matsuno,21057,90571,1 +96307,Aisha,413882,1758522,12 +96308,Rajinder Singh / Caterer,52696,141328,2 +96309,Liz,747,11110,2 +96310,Kay Manners,26376,80994,1 +96311,Dragomir,89337,161793,7 +96312,Santina,105384,130615,2 +96313,Sergeant,316776,1436392,4 +96314,Sister Addolorata / Lina Mercolin,66893,55758,1 +96315,,25626,543848,52 +96316,Jonathan Dade,165567,16501,2 +96317,Bernard Sayles,39127,10985,6 +96318,Lisa Dubois,27916,1090171,0 +96319,Elizabeth Heiss,3145,30140,3 +96320,Joseph Noblart,81522,10021,2 +96321,Gordon,20325,30184,4 +96322,Judy Foster,96252,82405,1 +96323,E.D. Nixon,205361,38951,4 +96324,Doris (voice),810,44127,17 +96325,Hope,20648,60953,2 +96326,Drake,17209,1196876,7 +96327,Mor Östman,61121,232399,3 +96328,Bakken,71805,110104,12 +96329,,11328,1444503,51 +96330,Pod Clock,110227,11998,3 +96331,L'avocate de Simon et Marion,15712,1180481,29 +96332,Billy,345922,1783269,43 +96333,Frl. Constanze Manziarly,613,37066,25 +96334,Otsu,31372,108020,4 +96335,Andre Milan,131781,39603,3 +96336,Steve,182228,20495,1 +96337,Admiring Soldier,150712,1186116,7 +96338,Karen,364088,5385,4 +96339,Oracle Bones Nurse,315855,125835,41 +96340,Álvaro,116312,144516,3 +96341,Uncle Vincent,83890,4238,0 +96342,Claire McKinney,51875,1907,2 +96343,Ordered to be beheaded,56095,563458,13 +96344,Alan Hardaker,62441,87097,7 +96345,"(segment ""Chawan no naka"")",30959,226744,70 +96346,Varvara Pavlovna,149170,55972,3 +96347,Himself,406431,78510,7 +96348,,114108,11645,2 +96349,Gudean Emissary,13486,141469,13 +96350,Dragan Armanskij,33613,92897,16 +96351,,173577,1146926,1 +96352,Dede Murphy,102057,30123,7 +96353,William Blatcheford,425774,1707949,57 +96354,Cristian,435707,1825503,9 +96355,Tanner,31985,18589,3 +96356,"""Kura""",382155,224484,9 +96357,Madame,86727,116522,3 +96358,Aboubacar,99819,1021738,2 +96359,Ben's Dad,4964,1524,10 +96360,Mom,58467,49958,10 +96361,Cab Driver 1,55846,1278517,19 +96362,Lt. Moody,43046,14063,4 +96363,Kat,435737,1049742,4 +96364,Lastbilchauffør,356326,1874738,28 +96365,Robin,26042,111830,6 +96366,Ben House,174188,52935,2 +96367,The Reader (uncredited),15794,98972,25 +96368,Murphy,179154,1169338,6 +96369,Nader,253851,116907,4 +96370,,308174,1831157,37 +96371,Green Knight,19957,93163,10 +96372,Suzanne,146373,93746,5 +96373,Sumo,170279,1152392,2 +96374,Dafna Ulman,49689,583765,0 +96375,Darly,54715,77133,0 +96376,Phil,23048,1064,9 +96377,Le directeur de cabinet,37645,1114614,30 +96378,Patti,176085,966240,2 +96379,Reportera,79779,229615,10 +96380,Scanlon,92389,152680,3 +96381,Gloria's secretary,36236,32066,11 +96382,Uncle Joe Higgins,90932,8517,8 +96383,Red Eyed Sand Alien (voice),140607,1115738,74 +96384,Charlotte,64225,400,1 +96385,Captain Deever,121848,222859,4 +96386,,224950,1210484,4 +96387,Tyler,68387,134609,6 +96388,Casino Security,11358,169792,46 +96389,Bayan,44398,40,1 +96390,Heather,25983,88549,4 +96391,Russian Lead Officer,146216,1052209,44 +96392,Factory Foreman,29989,47973,4 +96393,The Girl,98065,1019684,0 +96394,Cathy Manchester,5767,45453,6 +96395,Dorcas,9528,6199,5 +96396,Kaitlin,295964,1048644,8 +96397,Anton Pupkin,140489,18472,3 +96398,,83501,929686,3 +96399,Darnell Gooden,14834,65829,6 +96400,Stomper (voice),32202,109075,13 +96401,Duke,26182,980450,14 +96402,Reporter (uncredited),206197,118387,46 +96403,Sam Gamgee,122,1328,6 +96404,Lourdes,335053,1320065,14 +96405,,390376,1337737,2 +96406,Eddie LeMaster (as Brian Vincent),30492,101395,5 +96407,Car Park's Victim,101998,203315,18 +96408,Pařízek,36919,11683,2 +96409,Korg (voice),30675,24362,3 +96410,Johannes,94336,52722,0 +96411,Moana's Younger Brother,94727,1840034,5 +96412,Billy Starbuck,128669,27966,3 +96413,Joanna,77930,81364,4 +96414,Sveva,40817,124684,11 +96415,Ayyash,299780,126175,13 +96416,Yunus Kaptan,31547,562159,4 +96417,Le bèque,43000,25179,6 +96418,Parade Colonel,272878,1370999,19 +96419,Underworld secretary,16171,79865,13 +96420,Le dealer,51971,54326,9 +96421,Control Tower Technician,188927,1051473,24 +96422,Licenciado borracho,41298,1056178,19 +96423,,262987,24698,2 +96424,Tyson,64861,123148,3 +96425,Boat Captain Ashman,176867,95311,15 +96426,Katie Lapp,74549,31838,0 +96427,la suora,82080,100057,8 +96428,Dr. Hertz,3104,11131,2 +96429,,1416,1344674,5 +96430,Cora Lister,28297,78052,5 +96431,Roy Campanella's Mother,132328,1095266,6 +96432,Rosa,14430,76871,2 +96433,Jos Poulin,74689,1306285,6 +96434,,118,1090804,31 +96435,,373838,30404,4 +96436,Patrick Fitzgibbon,272663,124875,9 +96437,William,46695,1185416,6 +96438,MC Grammy Awards,3055,148585,15 +96439,Bill,28482,107245,9 +96440,Gladiator,310135,119754,38 +96441,Katrine Ferdinansen,433082,34867,6 +96442,Agustín Morales,264525,76857,3 +96443,Boris,31162,223528,13 +96444,Rob,26123,69395,1 +96445,Medic Soldier,1724,1366374,57 +96446,Heidi,55152,18547,3 +96447,Kennedy,253235,60033,19 +96448,Additional Voices #3 (voice),244539,571564,22 +96449,Paul Danner,348507,29370,1 +96450,Audition Singer,59881,8534,4 +96451,Saboteur,172908,40965,4 +96452,Gladys Presley,322548,1213611,12 +96453,Fernández boy,36785,1195526,5 +96454,Lior Keshet,369697,1807178,5 +96455,Sam Witwicky,38356,10959,0 +96456,Countess Herritzen,31472,8926,1 +96457,Nathan Pringle,35826,13591,9 +96458,Misty,141145,1114247,5 +96459,Edgar,99367,205881,12 +96460,Court Lawyer,371645,1622078,18 +96461,The Bus Driver,31596,107074,3 +96462,Stooge Curly,95037,89614,9 +96463,,317246,116995,9 +96464,Suzy Austin,126934,1219316,4 +96465,Dando's father,24424,132116,13 +96466,Hickman - Policeman Bringing Jenny,153162,95311,28 +96467,Mrs. Van Dyke,174594,1172579,8 +96468,Boxer (voice),815,13324,6 +96469,The Big Sea Lion (uncredited),31411,30197,12 +96470,Randall,12855,81072,5 +96471,Elevator Operator,74525,95968,16 +96472,Dana Barrow,293452,3967,0 +96473,Patsy (Date 4),405473,1800032,26 +96474,Seller,315723,186396,3 +96475,Dr. Moore,131815,93079,7 +96476,Kabir,160261,85683,2 +96477,Margie Ann,25473,101756,11 +96478,Ernest Briggs (voice),413770,388,1 +96479,Band,255160,54183,28 +96480,Judy Fields,72602,245573,1 +96481,Badger,90034,1197883,8 +96482,Patience the Vampire (voice),213110,28640,5 +96483,Jehangir Khan,157293,86020,2 +96484,Elliot,140814,1113463,10 +96485,Acca Puto,222517,1074448,20 +96486,Disciple,182127,1440450,30 +96487,Rev. Dr. T. Lawrence Shannon,14703,5341,0 +96488,Himself,9815,59538,17 +96489,Süleyman,10821,66980,0 +96490,Bancario,82662,240102,9 +96491,Chuck Fairfax,218351,105454,8 +96492,Woo-Jin's father,338729,1293080,18 +96493,Flowers seller,71381,232863,8 +96494,Bell Boy,75363,14107,26 +96495,Masao,4291,36073,1 +96496,Roland,8247,2231,2 +96497,Judy,49158,52061,8 +96498,,27276,52713,21 +96499,Buzzwell,5559,1211,14 +96500,Merc Tech,168259,97844,31 +96501,Trainer,43812,120818,28 +96502,Therese Belivet,258480,108916,1 +96503,John Stafford,131457,77114,4 +96504,Charlie Maguire,11248,8436,1 +96505,Maud Redwick,114872,12498,2 +96506,Le marié,12446,1356424,21 +96507,Selene,346672,3967,0 +96508,Irfan,76785,457386,8 +96509,RUC Constable,84336,1733453,19 +96510,Himself,376394,1559490,11 +96511,Housekeeper,219335,1459051,7 +96512,Sergeant Mac Peterson,86254,1088201,15 +96513,Young Levite,30973,107411,16 +96514,Dompförtner,58757,228352,15 +96515,Vater Buff,52475,3934,4 +96516,Ranch Foreman,13823,75780,16 +96517,Whining Willie,72096,884,39 +96518,Himself,15258,216108,35 +96519,Herself,82481,162246,17 +96520,Członek zespołu / Prawnik,314371,1491513,7 +96521,Anne Carlyle,150247,55893,5 +96522,Charles,14882,37825,6 +96523,Antinori,94809,1089649,7 +96524,,127094,11523,1 +96525,Юлия Васильевна,409082,143288,14 +96526,Girl Having Her Fortune Told,98125,32194,34 +96527,Miriam,278334,1376095,8 +96528,The Sheriff,87123,1146151,10 +96529,Gordon Leemaster,231616,204686,3 +96530,Brett,410537,1670804,6 +96531,Mr. Duncalf,43369,33267,4 +96532,Barry Winchell,32526,31711,1 +96533,Bikini Model (uncredited),323675,1737094,71 +96534,,295058,1367730,3 +96535,Mother in Woods,20674,21090,30 +96536,King Hammurabi,13486,141468,12 +96537,Frat boy,380124,1700632,16 +96538,Nurse,270303,1588351,16 +96539,Bobby,40793,124617,5 +96540,P. Frobisher Pilbeam,144183,26657,4 +96541,Police Chief Auditionee / Himself,430826,1891512,33 +96542,Carmona Daly,28437,91655,12 +96543,Disabled Friend,412363,1769124,13 +96544,Steve,94170,40220,6 +96545,Bosco,445840,1772544,2 +96546,Tamara Mathis,317144,1414163,4 +96547,Xavier Barnerias,259,3593,5 +96548,,37055,1371493,7 +96549,El Camaleon,106747,27740,13 +96550,Don Esteban's Son - Ulysses (prologue),183932,1381509,3 +96551,Clo-Clo,28438,19221,1 +96552,Captain Of The Guard / Paolo The Squire (voice),83201,58723,1 +96553,Coop,7288,15009,4 +96554,Jacques,285858,965056,8 +96555,Rune Balot,122662,40325,0 +96556,Max Jäger's Wife,11248,1525808,19 +96557,Katie,97206,15010,3 +96558,Ken Barrett,33801,44960,6 +96559,Sales Girl (uncredited),331962,108918,33 +96560,Stammgast,313896,1404559,10 +96561,Dagny,280583,222733,1 +96562,Bart,46667,6856,1 +96563,Judge Carver,62392,30512,7 +96564,Commander of Defense Forces,19336,552187,7 +96565,Gina,23382,37014,2 +96566,Officer #2,347031,1583701,10 +96567,The Viceroy,35032,30417,5 +96568,Mujer embarazada,41298,1066865,20 +96569,A Fugitive,37368,4958,0 +96570,Mr. Shields,13788,113563,11 +96571,Science Teacher,72875,568028,17 +96572,Adrian,37534,1827257,19 +96573,Si Weaver,56154,120818,23 +96574,Nina,330588,3932,0 +96575,Graverobber,14353,76686,7 +96576,Bob Hunter,72847,31551,2 +96577,Carpenter,144792,77114,5 +96578,Richard Kester,10274,26069,8 +96579,Henri,352025,22312,7 +96580,Publican 6,107985,1278132,42 +96581,,10484,1502411,29 +96582,Charlotte Hollis,10299,3380,0 +96583,Maria Garabaldi,19846,1876861,11 +96584,Alex,76494,17289,6 +96585,Hermann Goering,84285,73194,2 +96586,Mose Levett,130717,13821,8 +96587,Babe Brother,94725,106753,6 +96588,,247354,1282826,0 +96589,Chiel,129518,43646,0 +96590,Himself,70027,23185,26 +96591,Ko Dong-Ho,367882,1015873,0 +96592,Vera Baddington,238302,13637,5 +96593,Heston - CIA Chief,38681,50780,3 +96594,Debeli,284154,118705,7 +96595,Flora Fauna (voice),36751,78620,3 +96596,Nina,40709,124426,4 +96597,Polizist,75969,1297677,48 +96598,Sencer,53301,115011,2 +96599,Stephanie McCarty,31462,35875,11 +96600,Dirk Lylesberg,20481,73040,6 +96601,Jillian Stewart,186759,84223,1 +96602,Patrick - Squadron Team Leader,97630,33192,3 +96603,Carl,41733,1241324,12 +96604,Panther,55156,83631,4 +96605,Capt. Lin Nan,37451,10459,1 +96606,Erik Hesselberg,70667,559194,4 +96607,Newspaper Thief 2,45133,213486,5 +96608,Policewoman,270221,1322589,6 +96609,Delivery Guy,10521,1214054,21 +96610,Michael,51800,1045911,3 +96611,Vinayak Mahadevan,76788,148360,0 +96612,Andrew Scott,122857,16644,2 +96613,Holywood Agent,14923,64349,48 +96614,BBW Member,167810,1736437,31 +96615,Le maire italien,197089,108900,9 +96616,Joe Vitto,86360,1170219,12 +96617,Marcus Faulkner,188102,1845734,7 +96618,Sykepleiersken,20372,1270300,14 +96619,Jun,22579,1036371,12 +96620,Herschel,246422,70166,15 +96621,Frank,57201,45051,12 +96622,Finn,1662,16523,9 +96623,New New,13960,98772,3 +96624,Chris,282762,1861427,4 +96625,Aleksey Lugotintsev,51275,143665,2 +96626,Marci,259894,491560,6 +96627,Chuck,198663,1389339,4 +96628,,256836,1355220,1 +96629,Early Bird (voice),153518,1451616,30 +96630,Earthly Vampire,29416,30683,9 +96631,Gustav,15371,553106,19 +96632,,252845,99535,5 +96633,Nusrat Farfella,9389,743,5 +96634,Tania,15414,38809,10 +96635,Joe Locker,226968,30297,2 +96636,Kitty Kowalski,1452,7489,4 +96637,,344560,116263,1 +96638,Phil,2169,22186,2 +96639,Moroccan Tart (uncredited),42641,1547832,12 +96640,Stephen Lamport,1165,15740,8 +96641,Benoît Collet,61361,28787,6 +96642,Hobo,213681,1771562,37 +96643,Witch,80928,288940,1 +96644,Garbage Truck Driver,293660,1380498,26 +96645,Vosen's Driver,2503,1280234,27 +96646,Kemal,452606,1078914,1 +96647,А. А. Архангельский,419601,1689751,6 +96648,Brackston,25528,93924,3 +96649,Lt. Gibbs,46875,31350,4 +96650,,63215,236631,1 +96651,Insp. Donovan,30637,29909,9 +96652,Stacey's Mom,331313,1634619,28 +96653,Charlene's Mother,405473,1800046,43 +96654,Judith Morrow,227700,30430,5 +96655,Ringo (uncredited),112503,32153,8 +96656,Katie,345922,1680200,42 +96657,Ikeda,352694,1357295,5 +96658,Cabra,18120,1444942,4 +96659,Scarlet,14869,50347,9 +96660,Cathy Garrett,40217,96309,1 +96661,Geneviève Delpiels,55370,18218,2 +96662,Finnur,5206,6759,13 +96663,Ray Ruby,50318,5293,0 +96664,David,264080,7904,14 +96665,Mr. Clipboard,116977,1062,4 +96666,Crazy Man A,94525,1121629,4 +96667,Weddo,66193,5384,8 +96668,Dancer,325173,1900173,24 +96669,Zep Hindle,176,2136,3 +96670,Colin Day,27196,97208,4 +96671,Oil Co. Director Allen,156335,1142897,21 +96672,In Utero,20210,1779976,9 +96673,Hanssen,131039,5897,13 +96674,un invité,26152,1405751,27 +96675,Tough Looking Cop,2001,171791,48 +96676,Agent Walker,256092,61914,3 +96677,Slick,362844,174954,7 +96678,Miss Ellwood,4809,20624,8 +96679,José Utrilla,33273,37569,2 +96680,Jerry / Mr. Whiskers (voice) / Bosco (voice) / Deer (voice) / Bunny Monkey (voice),244458,10859,0 +96681,Dr. Osmond,315837,7486,16 +96682,,134209,1646275,2 +96683,Prisoner (uncredited),213681,1546077,64 +96684,"Marceline, un mannequin",64407,24787,7 +96685,Chenille,136799,1704769,9 +96686,"Tim, Bartender",46145,34324,4 +96687,Fred Flintstone (voice),48874,106102,5 +96688,Dan Langley,36373,55821,3 +96689,Ka,353462,1035905,6 +96690,,48636,2334,8 +96691,Oscar Crocker,267931,2712,1 +96692,"potilas Kuronen (""Rovasti"")",60678,125799,3 +96693,Dharmesh Marwah,20092,71090,6 +96694,Yu-baek / Duk-gi,348689,25002,0 +96695,Col. Vladimir Klimenko,18214,155871,4 +96696,Cheryl,28090,100107,12 +96697,Oscar,345915,48530,17 +96698,Margie,24655,153651,7 +96699,Conchita,126415,109142,1 +96700,Ladies Room Maid at Party,157898,97042,21 +96701,Denise Crocker,15356,978719,11 +96702,Conklin,1640,1331791,38 +96703,"Larcher, le professeur de piano",110573,36209,3 +96704,Tan Tjin Han Muda,39061,1829166,13 +96705,Яринка,20879,1347098,12 +96706,Leah Garrison,336271,1257387,1 +96707,Ralph Abernathy,205361,18288,1 +96708,Kadkhoda,43984,1351404,5 +96709,Tanejiro Shibata,42170,33732,6 +96710,Bernard Martel,166883,1342466,6 +96711,Seth,7088,51935,0 +96712,Man Robbed on Trail,183825,13856,43 +96713,Jules,312831,1362814,7 +96714,Kameto Kuroshima,131739,63696,11 +96715,Himself,9951,1692546,18 +96716,Sue Kirkside,38654,1307208,9 +96717,Goemon Ishikawa XIII (voice),15371,1222049,25 +96718,Brigadier General Clifton I. Garnet,23861,41755,3 +96719,Sidney Chillas,134732,98164,1 +96720,,100791,1027115,2 +96721,Linda Clarke,122677,102954,5 +96722,Chavelo,86126,932914,1 +96723,Palola's Father,43783,5464,6 +96724,Moeder van Akkie,115929,55851,15 +96725,William Wheaton,15759,8986,10 +96726,Landlady,42179,1134774,6 +96727,,194853,103667,12 +96728,Uncle Rudolf,15044,5483,14 +96729,Brandon King,8988,11864,0 +96730,Forbes Field Announcer,61225,94304,27 +96731,Polonius,48209,38265,3 +96732,Xiao Ling,188836,1474045,1 +96733,Julie Sanson,131903,12812,2 +96734,Siddharth Mehra,69346,85969,0 +96735,Grand Duke Alexis,144111,13343,8 +96736,Tomoaki Fujii,315846,1470127,12 +96737,Squire Trelawney,49418,1561896,3 +96738,Sabina,317,4639,4 +96739,La serveuse marocaine,41211,1670726,26 +96740,Charles Giraud,61109,14685,2 +96741,Milt Kahn,20536,15416,3 +96742,Hyde Park Nutter,16171,1284,37 +96743,Mr. Pope,120259,2782,14 +96744,Kathy,51426,20144,2 +96745,Isabella,363479,184815,3 +96746,Angélica,54236,54137,1 +96747,Tom's Father's Voice (voice),56669,72637,10 +96748,Mary Sandin,158015,17286,0 +96749,Manny,207850,50466,5 +96750,Eugene Deane,47745,81182,4 +96751,Mrs. Thompson,89551,1071194,6 +96752,Mrs. Madeline Shaeffer,118283,2640,2 +96753,Rev. Sidney Cheddar (voice),27300,42157,13 +96754,Becky,254188,1377385,16 +96755,Billy Nolan,68684,553503,8 +96756,Goldwyn Girl (uncredited),108224,14027,12 +96757,Cryptographer #2,329865,20195,29 +96758,Gus,369883,20190,10 +96759,Poppa Rosen,28564,1161232,5 +96760,Jason Blade,75203,257819,0 +96761,,195544,1597118,18 +96762,Ryoko,14829,81860,1 +96763,Léo,152989,1179886,23 +96764,,267623,584657,5 +96765,Brad Brady,104083,40202,1 +96766,Woman in Statue Of Liberty Costume,102382,1093920,21 +96767,Judy Lyons,34482,112474,6 +96768,Anthony Ramsden: Staff of Nutbourne,83015,219130,12 +96769,Natasha Rostova,149465,19584,15 +96770,Meng Er Da,141138,229302,2 +96771,Hayden,418969,21213,4 +96772,Woman at the clinic (Cameo Appearance),329135,1071556,7 +96773,Sawkar Kulkarni,86279,1278983,5 +96774,Dr. Brubaker,32082,13729,13 +96775,Lord Gerald Risborough,22404,14509,7 +96776,Head Cossack (voice),19594,52699,10 +96777,Jason Blake,109417,142636,0 +96778,Ravi,148284,120949,4 +96779,Mr. Miracle,246011,10727,10 +96780,Cathleen,237549,1339163,4 +96781,Kim Hyeon-gon,16447,25003,2 +96782,Gus,55694,23915,5 +96783,Kuaför Sezai,32926,144193,2 +96784,Siren,55612,116388,4 +96785,Thump Milton,39013,1163716,14 +96786,Kreisler,18333,994406,6 +96787,Milk Lady,2295,280714,20 +96788,,327225,1269278,19 +96789,Bobbi,172897,40462,1 +96790,Jana,277968,1291451,26 +96791,Flying Officer Jed Forrest,55236,11128,5 +96792,Banjo Playing Singer,35001,1834905,12 +96793,Mother S.,81541,592055,1 +96794,,356862,16382,3 +96795,Abusive Citizen,257344,1683857,60 +96796,Grandpa Parks,70026,6463,3 +96797,Terrorist Leader (voice),166076,37203,5 +96798,Casper,310602,42095,0 +96799,Pawnshop Clerk,393732,128176,7 +96800,Richard,97936,68898,4 +96801,West,125490,1102261,24 +96802,,49522,110078,9 +96803,The Jester,18506,66101,5 +96804,,145593,448526,0 +96805,Sally,27740,13652,5 +96806,Tito,77930,49706,9 +96807,Frank,374618,1554756,2 +96808,Alikersantti Törönen,55759,148019,7 +96809,Keith,352960,1090132,5 +96810,Micha,73262,1333330,5 +96811,Elderly Asian Woman,64328,209417,29 +96812,Bob Slocum,118889,103620,7 +96813,Themselves,358924,1741064,1 +96814,Melanie,41301,63864,6 +96815,Regine,2349,10258,1 +96816,Ermenegildo Morelli,82080,27433,1 +96817,Calligraphy Teacher,10389,551608,20 +96818,Matka Šebková,15387,144325,2 +96819,Diane Clovier,57327,76904,0 +96820,Mary,293380,289,1 +96821,King Charles II,104720,3361,3 +96822,"Umeko, Daisaku's wife",87296,1418872,2 +96823,Interviewee,32694,5342,9 +96824,Noa (as Hilla Surjon),287483,1703685,7 +96825,Elango's mother,330418,1489944,11 +96826,Little Kim,82684,1212271,9 +96827,David,17240,117655,4 +96828,Mrs. Dougherty,64678,196181,13 +96829,Johnny Alderman,40633,44728,2 +96830,Räuberchef Irod,14482,86691,3 +96831,Dora Vogel,241927,934131,1 +96832,,49492,142334,0 +96833,King Kong,39276,235722,19 +96834,Dirk 'Dickie' Schubert,140554,52392,2 +96835,Narrator in USA sound version (voice),29043,103354,7 +96836,Rex,9474,18840,13 +96837,Aunty Ramzi,31216,1184852,15 +96838,Mrs. Baker,229297,4726,3 +96839,Sinem,41187,145403,0 +96840,Stripper #1,7511,52786,13 +96841,Debbie,286521,1403178,14 +96842,Mary Dale,939,14287,1 +96843,Painter,128900,1125871,30 +96844,Guo Chin,107891,1420037,13 +96845,Jefferson Harper,43783,30290,2 +96846,Martin Cherrington,116973,14969,6 +96847,Gutten,21786,1336920,6 +96848,Barry,339362,109834,8 +96849,Emperor Caesar Galienus,211179,1194391,4 +96850,Giant,265712,1142780,26 +96851,Amudha,40998,238025,2 +96852,Ayse,345489,1388538,6 +96853,Nightclub Guest,2001,1781732,86 +96854,Yong-hee Lee,21966,82898,3 +96855,,149868,1173678,6 +96856,Itay,239619,1274592,4 +96857,Fred Stoner,62768,1232785,10 +96858,The Princess,185154,195399,2 +96859,Roo (voice),24926,1043068,4 +96860,Zac,323435,1190668,2 +96861,Herself,318224,1661472,19 +96862,Army Scout,377170,940057,16 +96863,Party guest,9461,1173757,14 +96864,Hansel,27045,95009,6 +96865,Jenna,338518,1216046,8 +96866,Tyler McClain,26358,82580,0 +96867,Manolo,35554,73867,3 +96868,Barbara Weston,152737,1204,1 +96869,Pauline (The Beast),246741,1341670,7 +96870,Beret Girl (voice),15653,14723,6 +96871,Himself,212063,1102300,1 +96872,Ballet Dancer,352890,1561246,14 +96873,Kansas,105528,224136,16 +96874,Lt. Ross Pendleton,109441,121766,8 +96875,Naazi,37181,1512026,5 +96876,Belinda Cratchit,229056,1005363,11 +96877,,133783,1270302,20 +96878,Jiao Ci,10703,1613796,16 +96879,Lieutenant (voice),17445,162630,14 +96880,Detective Herman,153161,34008,42 +96881,La Varela,86154,46853,5 +96882,"Kephren, Captain of the Guards to the Queen",71266,562266,4 +96883,Baker's wife,20108,1614869,7 +96884,Isley,31915,15413,3 +96885,Williams,226140,61905,12 +96886,Susan,40807,1281758,7 +96887,Groundskeeper (uncredited),15092,4606,84 +96888,Dom,243935,1218174,16 +96889,Estella,16075,42705,1 +96890,Mrs. Walcott,27114,1041608,10 +96891,Himself,320037,1037818,2 +96892,Dental Partner,2355,62100,24 +96893,Nurse Harper,43923,53067,14 +96894,Dr. White,45219,1550299,14 +96895,BJ Quinn,110830,182095,0 +96896,Woman at Fertility Clinic,22897,130513,22 +96897,Second Director (uncredited),1976,96069,28 +96898,Tala,31216,52969,0 +96899,Joni,127614,1095239,3 +96900,Nate Cooper,63315,59231,1 +96901,Faruk,126090,110960,0 +96902,Verna,67748,1172842,16 +96903,Michael McBain,71320,30044,0 +96904,Julian,241239,78050,3 +96905,Haley,86709,933578,7 +96906,Master Tsang/Leung Jan,64316,227782,1 +96907,Bobby Green's Bodyguard,2001,1781718,61 +96908,,73835,100937,15 +96909,Mr. Banks,19587,118937,9 +96910,Reporter (uncredited),31984,1845945,18 +96911,Rachel Carlson,9756,3416,0 +96912,Beyla,253794,979618,3 +96913,Jessica,202215,219708,3 +96914,Roger Jolly Lyme,15414,57143,6 +96915,Glader,198663,1415429,30 +96916,Liz Eckhart,43256,30214,4 +96917,Frau Ziehmann,259358,45734,7 +96918,Washirashi,24154,91292,4 +96919,Robert's Father,10834,26600,3 +96920,Mackie Messer's Gang Member,42837,219738,9 +96921,Sanji,176983,84505,4 +96922,French Official,109716,120702,72 +96923,John Griffen,92562,1482974,1 +96924,Lucy Fenton,23107,106583,5 +96925,Ice Fisherman #2,100275,1108894,9 +96926,Nia,19587,96790,5 +96927,Jacques Villeneuve (voice),49013,1156310,47 +96928,Depressed Patient,10330,1340662,24 +96929,,315841,52710,9 +96930,Smithers,43594,100243,1 +96931,Kevin,82654,74302,6 +96932,Dr. Carl Cooper,144475,3245,11 +96933,Bartocci Customer #2,167073,182955,40 +96934,Beranbaum,22051,60205,10 +96935,TV Host,58244,92263,20 +96936,Julio Rossini,39495,9109,5 +96937,Arman,146216,145310,61 +96938,Susan Vega,28299,40174,0 +96939,,58081,1087328,8 +96940,Signora Barozzoli,62034,1137504,8 +96941,Mr. Spacely (voice),17009,33923,1 +96942,Dr. Bridget,48967,11356,6 +96943,Pete Bowles,121052,132720,4 +96944,Nick,84233,90848,5 +96945,Himself,15258,545855,62 +96946,Blunted,1579,17680,7 +96947,,74674,1445121,23 +96948,Eddy Gangster,83342,1057499,1 +96949,War Pup,76341,1734193,50 +96950,Hyrum Cain,336890,540,4 +96951,,48341,1072378,7 +96952,Oscar,99283,32138,4 +96953,Man at Flophouse (uncredited),28668,26158,21 +96954,Reporter (uncredited),31984,1845947,21 +96955,Chief of Fallsburg Police,21950,67767,15 +96956,Man at Station,56154,84234,38 +96957,Vitus von Holzen - age 12,14804,143020,1 +96958,Waitress,142402,968007,23 +96959,Madame Aurol,8368,2744,2 +96960,Mary Pulham,96107,14870,6 +96961,Lena,54384,1621191,4 +96962,Felicia,377290,1240153,25 +96963,Himself,390747,1662630,9 +96964,Matron,42188,1222023,22 +96965,Melville Bladen,174925,13345,11 +96966,Police Officer #66 (uncredited),77012,50570,12 +96967,Jefe Geos,33273,138710,20 +96968,Tailor,120729,32989,10 +96969,Manny (voice),109451,4589,5 +96970,Guardia,52943,299658,9 +96971,Bobby's Friend,2001,1344672,81 +96972,Princess Laura,26643,1747702,19 +96973,Iron Man / Tony Stark (voice),284274,17304,1 +96974,Sitter in Bath Studio,80596,107540,27 +96975,la vieille Joséphine,84035,54388,7 +96976,Charlie Mills,358895,1108907,1 +96977,Mr. Hackett,42288,14452,6 +96978,Jill,140825,6450,0 +96979,Commissaire Maigret,37454,11544,0 +96980,Ookubo's wife,52047,1082748,6 +96981,Dancer,11172,1781165,32 +96982,Pilot,52122,33230,15 +96983,Dragan,366736,1565315,1 +96984,Carlos Sanchez,54105,58565,3 +96985,Old 'Q',81687,2438,4 +96986,Senior Technician Mountain,37710,1220123,29 +96987,Maureen Grayson,26503,101333,7 +96988,Dawn,146380,544430,1 +96989,Cecilia Vanger,15472,87724,6 +96990,Martha,38684,1089519,20 +96991,Red Cross Soldier,256962,1680874,34 +96992,Additional Voices (voice),82703,64447,39 +96993,Juan,17282,140015,10 +96994,,59572,194814,10 +96995,Himself,146730,112993,2 +96996,Nimue,7096,6588,3 +96997,Stefano,56804,936481,8 +96998,The Beggar,199985,1363773,6 +96999,Cynthia Tapple Ph D.,226792,586,0 +97000,Lela Rogers,88794,1063,15 +97001,Policeman,166393,72312,7 +97002,,73578,213428,8 +97003,Drunkard (uncredited),31146,1711193,26 +97004,Gerard Mazet,8070,19636,6 +97005,Deok-soo's father,313108,96484,4 +97006,Marty Purcell,32634,60158,2 +97007,,73306,52716,12 +97008,,381767,50935,4 +97009,Woman in Swamp,13486,141471,16 +97010,Det. Vincent Ricks,36634,3155,1 +97011,Meyers,327389,37981,19 +97012,Palmer,19582,6474,2 +97013,Jack Sanford,75162,19207,5 +97014,Percival Potts,81687,3371,10 +97015,Jonas,48145,48574,8 +97016,Young Officer,31128,1611436,7 +97017,Girl at Bank,34598,1497671,6 +97018,Alof De Vignancourt,159810,105355,7 +97019,Jimmy Katz,9950,60796,7 +97020,Ekkehard,279179,1088,3 +97021,Tchude with Scar,2172,22228,6 +97022,Raffaele Acampora,128557,936728,1 +97023,,252096,1034491,0 +97024,Director Choi,346646,84996,2 +97025,Sam,84348,40863,8 +97026,Motorcycle Cop,74911,3262,8 +97027,Denny,456781,101016,5 +97028,Giovanna,303542,3124,1 +97029,Lanny Morgan,104427,14028,0 +97030,,441881,1077356,1 +97031,Grave Digger,41505,127060,20 +97032,Martha Phelps,26182,10804,5 +97033,Male Ranger,157152,154697,8 +97034,signore paffuto,42436,119354,10 +97035,Titus Handmaiden,76757,1347128,33 +97036,Mimi Swift,213443,13577,0 +97037,,137312,1037997,2 +97038,Alice Ellerton,28665,101521,2 +97039,Bowen Tyler,27085,50967,0 +97040,Gomez,7085,38143,6 +97041,Benietsu,53064,1107772,5 +97042,,52147,93389,0 +97043,Berit Holm,51141,1065397,0 +97044,Prison Guard,354979,1835239,32 +97045,Cult Dude,84348,1090690,21 +97046,Kauji (voice),233423,58907,9 +97047,First Go-Go Dancer,28170,1861052,9 +97048,Timur,380731,1332485,5 +97049,Little John,17725,1665,1 +97050,Real Karl Fenninger,80720,101742,25 +97051,Audrey,271404,81682,2 +97052,Young Ramon Estado,44869,94335,10 +97053,Smooch Hanrahan (uncredited),33025,8496,9 +97054,General Muyong Xuehu,14539,1341,1 +97055,Minami Sakashita,315846,33517,6 +97056,Ariel,403330,221606,0 +97057,Sam Sterling,24020,59295,4 +97058,Betting Parlor Clerk,118889,34286,30 +97059,Dina,27925,86668,8 +97060,Charlotte,9076,36469,2 +97061,Lillian,47878,1438898,13 +97062,Prashant,77864,1314295,4 +97063,Lucy,9958,60970,4 +97064,The Peeper,17287,112863,13 +97065,Claire Ormond,28363,44714,2 +97066,Aki Izayoi (voice),72013,1247768,5 +97067,Bart Klever,69974,211101,0 +97068,Carole Rodgers,242131,34756,2 +97069,Posthumus,240745,110927,4 +97070,,41261,125946,7 +97071,Ken,179812,1162329,7 +97072,Veronica Bell,10594,42297,5 +97073,Annie Jones,98364,7663,2 +97074,Nino's Friend,371741,1569921,12 +97075,Chica Disco,18120,587931,10 +97076,Kathy Cash,69,220064,19 +97077,Dr. Grecco,23628,90406,13 +97078,Michelle,166221,108988,9 +97079,Rosa (voice),105965,38703,11 +97080,Bureaucrat,76757,1632611,65 +97081,Tina,277237,1105701,15 +97082,Gendarm Hildebrand,12523,1643968,16 +97083,Joyce Rehnquist,363483,50234,3 +97084,Kousuke Tsuda (voice),14069,122470,2 +97085,FBI agent #3,58918,112972,18 +97086,Amnon Pollak,270646,147420,7 +97087,Musette,352719,89587,9 +97088,Molly Brant,75880,93226,5 +97089,Amar,76684,84957,2 +97090,Vidyapathi Kumar,325555,53377,5 +97091,Waitress,14904,107467,8 +97092,Eric,59744,80579,4 +97093,Mirko,56804,128416,13 +97094,Miguel,98582,1071638,3 +97095,Leghista,85038,73873,12 +97096,Cassie Ollinger,47914,83904,8 +97097,Margy,11055,46636,4 +97098,Hrothgar,9703,2467,13 +97099,Rodeo Spectator with Martin Manning,33541,1142371,26 +97100,,38010,67089,13 +97101,McNamara,94182,980330,16 +97102,Soldatul Titoi,32594,1559726,6 +97103,Paz (voice),77950,17647,11 +97104,Stossel,28367,37884,3 +97105,Ben,382598,18177,4 +97106,"Ben @ 53, 74 & 81",14552,569551,27 +97107,Soldier on Rifle Range (uncredited),16442,1181275,61 +97108,Big Jim,180819,34119,3 +97109,Professor,306952,61013,40 +97110,Carol Lambert,90465,11495,1 +97111,Anita (Mian äiti),148478,1559607,9 +97112,Herself - Roaster,334461,66555,8 +97113,,62741,235107,2 +97114,Duty Nurse,69921,1021884,6 +97115,Joe Taylor,237,3061,0 +97116,Michels Kollege,197175,23668,3 +97117,Himself (voice),15584,80207,0 +97118,Razor,32845,61658,1 +97119,Frank,389630,171791,7 +97120,Gaetano,58007,227314,1 +97121,Rosalie,59231,229024,4 +97122,Townsfolk (uncredited),109491,1682514,42 +97123,Detective Poliani,52808,33818,4 +97124,Ted Fitzgerald - Chief Newsreel Cameraman (uncredited),14615,84234,63 +97125,Dan,18595,82712,3 +97126,Bernard,76821,150792,2 +97127,Himself,44038,11770,1 +97128,La petite fille,32720,146527,4 +97129,Duds,18375,9284,2 +97130,Vladimir,382873,1424964,4 +97131,Boy,341962,1297995,10 +97132,Maria,326,73269,13 +97133,Asian Tourist (uncredited),193893,208316,72 +97134,Henry Church,374461,776,0 +97135,Richard Meyler,26808,25657,5 +97136,Cliente Loira,70666,1863884,13 +97137,Ivan Dobroll,13630,73550,5 +97138,Mad Scientist,45729,33155,15 +97139,Mr. Muckle,28001,97995,8 +97140,Khalil,32088,17578,3 +97141,Pinkette,409447,70233,16 +97142,Oh Seung-Min,16371,37939,8 +97143,Peter,347630,1484888,43 +97144,Officer O'Malley,28340,100492,10 +97145,Interviewee,32694,4,6 +97146,Monsieur Abramovitch,366566,82288,15 +97147,Don Tano,403450,107625,11 +97148,Sandra,61528,33679,7 +97149,Hermia,182129,15735,2 +97150,Mr. Pouchet,300,4289,7 +97151,Saul Farnsworthy,22404,29600,9 +97152,Joseph Silberg,125623,24502,1 +97153,Lena,146416,626645,1 +97154,Mary Worth Corpse,60965,148212,21 +97155,Capt. Tom Andrews,132939,33359,3 +97156,Cadet,160160,1158763,13 +97157,Pete,149910,576511,23 +97158,Judge,125510,126284,11 +97159,Natsume,141819,230660,4 +97160,Wine merchant,115531,4966,5 +97161,Valya,75262,86896,17 +97162,Benjie,84333,23881,6 +97163,"Frank Gilmore, Sr.",125842,9880,2 +97164,,194853,1062936,17 +97165,Max Camden,45302,10430,1 +97166,Akash,21567,101861,9 +97167,,140509,1060570,9 +97168,Mr. James Felton,290379,29601,9 +97169,Tourist,127493,1084799,6 +97170,Barbara Shelton,104973,1083148,2 +97171,Auctioneer,177677,1562111,70 +97172,Rocket Raccoon (voice),283995,51329,4 +97173,Porter / Waiter,44746,18850,7 +97174,Villain (uncredited),177677,1316592,73 +97175,Susie Q,46227,56895,0 +97176,Dr. Fry,13280,2394,8 +97177,Lina,29923,105254,7 +97178,High School Cop,14923,1088939,34 +97179,Joseph Carter,47739,3343,10 +97180,chuy,234815,942706,1 +97181,Maudeline Everglot (voice),3933,34901,5 +97182,Evie,6973,3713,3 +97183,Mr. Tatum (uncredited),48627,114402,14 +97184,Louis Cyr,209293,90681,0 +97185,Pavement Photographer,62728,39661,13 +97186,Koichi Mamiya,50247,33135,1 +97187,Pvt. Smitty,294690,146334,19 +97188,Uncle Hei,58414,83358,9 +97189,Radha,90634,76232,2 +97190,Chip,21029,103592,15 +97191,Maria Moese,2692,30791,5 +97192,Penny,118677,6832,1 +97193,,235092,97250,16 +97194,Randowsky,70864,994404,8 +97195,Robert Bishop,72823,138375,7 +97196,Londinium Warrior (uncredited),274857,1786729,69 +97197,Valérie,152989,54292,4 +97198,Dr. Le Sange / Nagel,40041,108924,4 +97199,,56666,35795,6 +97200,Boxcar Woman,335970,1246667,88 +97201,Timofeyev,47851,125862,5 +97202,Cruiser,47670,65298,6 +97203,Second Male Guard,16022,142204,13 +97204,Highway Restaurant Man,157409,1272879,10 +97205,Flashback Cop,274820,1288839,13 +97206,Megan,363479,1549815,2 +97207,Andy (voice),10193,1116442,11 +97208,Hotel Guest #2,245906,1118911,27 +97209,JD,133121,1282652,6 +97210,Mervi Takala,40660,124263,5 +97211,Ham,21554,55206,9 +97212,Wilhelm Voigt,10626,12745,0 +97213,Peggy,76211,109407,5 +97214,Resepsiyonist,361181,1258397,3 +97215,Party Guest (uncredited),213681,1771604,72 +97216,Jada,27711,98807,1 +97217,Maria,4960,10431,2 +97218,Frank Rich,13802,663,30 +97219,Matrose,3716,1406154,25 +97220,Alyssa,325189,1308818,7 +97221,Miss Willey,174769,97777,2 +97222,Lucille Krunklehorn (voice),1267,12133,1 +97223,Accountant #3,7220,1837918,26 +97224,Gus - Mary's Janitor,176627,985275,11 +97225,,57983,144138,0 +97226,Lin Hsiao-Fang,99599,1174366,1 +97227,"Wellington, a Ladykiller",53387,14435,2 +97228,Herself,234155,138701,4 +97229,Seth,70278,1853150,3 +97230,Katja Wielaard,29101,107203,2 +97231,Flight Attendant,336890,1903973,25 +97232,Kay Dunstan,22968,3635,2 +97233,David Newbert,11172,6212,9 +97234,,33558,459032,4 +97235,Gendarme,127812,1431834,44 +97236,Oilman at Producers' Convention,55604,34837,53 +97237,Himself,410718,1702123,25 +97238,Clark,10033,62245,8 +97239,Judge,121674,166258,36 +97240,Rascal,56095,1114830,17 +97241,Dad,427680,1651295,8 +97242,,373200,1619618,10 +97243,Straight Person,25625,5613,13 +97244,Katie Pearson,60759,36386,1 +97245,Blair,144229,9221,2 +97246,The Joker (voice),177271,571335,8 +97247,Hotel patron,98349,1017373,22 +97248,Mrs. Gibbs,82781,18261,1 +97249,Simon Bates,120657,34293,3 +97250,Sexy Stud,2295,140909,15 +97251,Frédérique Dianausoa,32390,38404,8 +97252,Roger's Wife,62472,1484675,22 +97253,l'amateur d'art,14644,550110,8 +97254,тренер,336484,1736009,5 +97255,Jonas,274990,202568,5 +97256,Eva 'Evie' Tutt,80168,89725,5 +97257,Gwen Traherne,15013,477,2 +97258,Juror,43821,1291277,27 +97259,,67633,96424,22 +97260,'O' Generale,94809,40433,2 +97261,Jackie,409447,1720658,23 +97262,Drone Technician,177677,1504937,52 +97263,Willy,23855,52937,14 +97264,Erin Mitchell,30817,23764,1 +97265,Miles,9675,13242,0 +97266,Dynamite,156388,1145556,3 +97267,,124517,554167,5 +97268,Blonde Nurse,27966,87826,45 +97269,Matty,9785,21298,7 +97270,Fernando,398891,1096449,7 +97271,Балбес,330878,238116,6 +97272,Mrs. Mebane,33839,12969,6 +97273,Minor Role,43806,99378,54 +97274,Conductor,2966,44839,20 +97275,[Extra],107891,18897,0 +97276,Drummer,76341,1734199,56 +97277,Yolanda,254188,180132,17 +97278,Bartholomew Ender,9956,60930,17 +97279,ефрейтор Виктор Святкин,72614,1190179,0 +97280,Mark,314285,1405671,8 +97281,Lt. Amberjack,45522,57138,7 +97282,le narrateur,17630,13687,8 +97283,Marthe,187602,1169489,10 +97284,Tristan Martin,10484,1603298,4 +97285,Dr. Shashi Rawat,66702,35790,3 +97286,Beth Fish,21481,87574,7 +97287,Hairy Hold,116977,4031,7 +97288,Natan,2734,22383,12 +97289,Jamie,20055,27755,0 +97290,Grandmother,37932,158587,11 +97291,Anton,798,11928,1 +97292,,412103,1701452,4 +97293,Filippo Magnaghi,58060,231226,4 +97294,,285935,1766383,2 +97295,Dr. Farmer,337958,67837,1 +97296,Lauren,228676,154993,5 +97297,TC Cardinal,255692,33527,2 +97298,Painter,128900,64125,23 +97299,Kiek,87022,934383,3 +97300,Miss Hunt,35320,1872367,22 +97301,Coroner Wynne Baxter,24486,19463,7 +97302,Mr. Smith,82395,4569,5 +97303,Moana's Mother,94727,1840033,4 +97304,June Ellis,26142,20,2 +97305,Alex,49853,85785,5 +97306,Betty,397422,1874142,21 +97307,Hank Schwartz,31907,12799,2 +97308,Maggie,120854,112080,9 +97309,Tsubaki,45384,72494,0 +97310,Mr. Henry,1450,27425,13 +97311,Kate,27349,105068,13 +97312,Stage Hand (Carnegie Hall),244786,1503841,30 +97313,Mandi,103332,1033675,11 +97314,Sue,245169,303020,1 +97315,Carla North,25807,13579,1 +97316,Reporter 1,296633,1113060,8 +97317,Zack (voice),13391,1120525,11 +97318,Lt. B. Morgan,82485,76021,10 +97319,Seb,107985,1278127,33 +97320,Dr. Dan Bryan,40139,2714,2 +97321,Andalusian Slave Girl,50329,29979,17 +97322,John Whitmore,340215,1630255,1 +97323,,140509,1342695,12 +97324,Franklin,11045,151432,13 +97325,Şaban/Şabaniye,327935,97272,2 +97326,Annie Gerrard,42231,83313,4 +97327,Thai Nurse 1,10389,551616,29 +97328,Polecat Lookout,76341,223692,37 +97329,Principal,229594,14671,5 +97330,Dazed Girl,60086,79501,11 +97331,,376716,544618,14 +97332,Young Noah,13486,141466,9 +97333,Basketball Player (uncredited),209112,1597947,143 +97334,Guard executed by Bolo,9461,119454,18 +97335,Newsman,14301,149520,17 +97336,Chuck,166904,120211,9 +97337,Oracle Girl,1579,1331668,31 +97338,Samba,111836,589654,2 +97339,Another Kid,8457,1586950,26 +97340,Cadet Colonel Corger,80264,13401,2 +97341,Himself,157117,22026,10 +97342,Crazy Horse / Worm,47914,68301,2 +97343,M. Schloendorf,6077,35829,5 +97344,"Podkomisarz Sławomir Desperski ""Despero""",74919,591295,2 +97345,Laurel Layton,6933,51459,13 +97346,Mr Hire,43462,12748,0 +97347,Mario,136752,1208788,1 +97348,Maria Luisa,105860,63936,1 +97349,Varya Vronskaya,96724,586286,15 +97350,Viktor Marek,48118,20766,0 +97351,Vendor (uncredited),337339,1593389,49 +97352,Duke Dekotes,17457,230950,6 +97353,Catherine,37269,128207,7 +97354,Dale Williams,149509,52,12 +97355,Austinite,8988,1741980,58 +97356,Chris Munn,16131,478,0 +97357,Kaiser Franz Joseph,457,6251,1 +97358,Librarian,45132,61102,22 +97359,Himself (voice),378441,1797386,9 +97360,Secret Service Man,257344,1683851,56 +97361,Johnson,38987,1122326,8 +97362,Arisha,83435,86762,4 +97363,Maud,44522,30721,1 +97364,Curley-Joe,30126,105723,2 +97365,NY Businesswoman / Tourist (uncredited),337339,1804164,66 +97366,Velma,20558,86314,3 +97367,Douglas,224243,17292,1 +97368,Sofia's Friend,268920,1755087,111 +97369,Mrs. Allenwood,43546,10804,16 +97370,Lo Fung,117506,66717,1 +97371,Bob Barber,19014,30560,3 +97372,Desk Sergeant,32932,1142191,9 +97373,Himself,416290,5726,1 +97374,"Julie Sarrazin, la femme d'Antoine",76642,67443,2 +97375,Bobette,31277,237055,5 +97376,Leopold,41028,726,1 +97377,ricercatore scientifico,374416,482503,5 +97378,Giulia,195544,129108,2 +97379,Second Policeman in Bank,33472,91260,12 +97380,John Finsbury,62143,56819,5 +97381,The Burning Hotels Bass / Vocals,23367,95382,26 +97382,Abby,347945,115126,2 +97383,NYPD Officer Daniels,102362,1106629,35 +97384,Dina,142757,1117924,11 +97385,Darshana Menon,422603,1699993,6 +97386,Julia (uncredited),1116,1742631,80 +97387,,25626,96613,32 +97388,Dr. Jennings,14047,218605,24 +97389,Rita,37329,95008,12 +97390,Münire,10821,66981,1 +97391,Stripper 2,242042,1128522,19 +97392,Hannah,84340,133451,3 +97393,Wedge Antilles,330459,1216947,19 +97394,Hector,277688,59675,10 +97395,"Mr. Thomas, landlord",20806,134240,13 +97396,Captain Nichols,248639,25176,4 +97397,Doctor 2,331161,1459155,15 +97398,Bowen,60759,129031,13 +97399,Steve Mason,70585,106965,5 +97400,Himself,52903,1263732,0 +97401,Wojtek,14558,140653,6 +97402,Anthony Bricklin,57326,655,2 +97403,Himself,121170,225830,4 +97404,Scuttlebutt,31473,31365,12 +97405,Sarah,75622,187565,16 +97406,Луйку Зобар,50186,237448,0 +97407,Ermete Astolfi,30449,27199,5 +97408,,88953,1537398,25 +97409,Senior Body Guard,63706,99109,11 +97410,LAFB Pilot,321039,4753,13 +97411,Kim Jong-Ok,64882,1293088,12 +97412,von Zitzewitz,1659,18448,10 +97413,Kovacs,13336,52348,8 +97414,Nicole,290370,200920,3 +97415,Emma,16077,73836,3 +97416,Joan Mitchell,29424,103817,0 +97417,,376934,1561602,14 +97418,Officer Gause (uncredited),419430,1704615,22 +97419,Warwick Holborough,16899,586764,9 +97420,Oogway (voice),81003,9462,5 +97421,High School Student (uncredited),397837,1554158,23 +97422,Okaji,141819,131191,5 +97423,Hélène,129966,583654,7 +97424,Clem,17258,17921,19 +97425,Ron,311764,59843,6 +97426,Dr. Elissa Cardell,17577,43232,6 +97427,Himself,144680,1745374,5 +97428,Radar Professor,319092,1890108,9 +97429,Dr. Sigmund Freud,335837,16797,4 +97430,Krylov,156141,549582,3 +97431,Gustave Flaubert,45184,2091,1 +97432,Vanya,45273,132833,3 +97433,Mrs Carella,47794,534894,5 +97434,Deidra,428687,1717473,0 +97435,Max,378607,1566570,1 +97436,Justice,43809,34270,60 +97437,Vibe,126250,6120,8 +97438,Fat Island Candidate,277839,1674839,18 +97439,Roberto,86975,937884,0 +97440,,264454,1160686,3 +97441,Det. George Montress,26390,19497,13 +97442,Tamizh's Friend,362150,1182186,9 +97443,Gerald Durrell,44746,1223789,21 +97444,Troublegum Posse 1 - Rappa DD,198277,1423901,26 +97445,Percy Jackson,32657,33235,0 +97446,Mental patient (brilliant),11205,62417,7 +97447,Flaca,102629,1031257,5 +97448,Miles,38769,33698,19 +97449,Steven,118957,1239123,8 +97450,Lohman,40258,21664,1 +97451,Woman,47312,138409,17 +97452,,118257,20921,4 +97453,Farhad,286532,164431,10 +97454,Pino Tricarico,82080,228158,6 +97455,Strip Club Girl,28090,1719900,47 +97456,International Hit-man,19887,1087345,7 +97457,Robyn,245169,59192,2 +97458,Jimmy Olsen (voice),166076,12,9 +97459,Mathilde,124115,33035,32 +97460,Mrs. Foster,96252,95271,7 +97461,Bones (voice),33427,27738,7 +97462,Pughazhendhi Narayanan,66526,544977,0 +97463,Railroad Detective #2,33541,3262,32 +97464,Gordo,29083,102856,8 +97465,Adam,15019,22226,1 +97466,Lik,110608,1050079,6 +97467,Young Caroline,61348,1028899,4 +97468,Margaret,43023,236462,1 +97469,Herself,135679,1103549,4 +97470,Dee Dee,157152,69399,5 +97471,Assassin,4893,137383,12 +97472,Business Woman,344120,1389916,10 +97473,Lee Jin-Seok (old),11658,1257643,35 +97474,Nurse,102841,14670,19 +97475,Antykwariusz,168819,1147,3 +97476,Herself,2771,93466,5 +97477,Yuen Po,18731,119452,16 +97478,Gaston,10119,63767,2 +97479,Mr. Height,270303,76674,8 +97480,Victor Perez,46773,1019499,4 +97481,Damat,361181,1513951,13 +97482,Madame Tanya,31445,14873,4 +97483,Gaurav,44566,78246,2 +97484,Elizabeth Edwards,43806,96141,8 +97485,Deng,45610,87466,10 +97486,Pumer,77882,8930,3 +97487,Alan Parker,12483,23495,0 +97488,Mathilde Rosier,4930,30141,6 +97489,Wendy,89492,1558642,19 +97490,Aya Kitagawa,20530,131012,2 +97491,Morris,230179,56614,5 +97492,Perkins,70133,144880,9 +97493,Boss,165718,1276791,3 +97494,Tommaso Pensara,14063,68186,2 +97495,Jack Patterson,69668,20982,3 +97496,Callimaco,18696,50780,4 +97497,La 'baronne',71630,4959,2 +97498,Rag,52736,18708,7 +97499,Rinaldo (voice),65759,59782,12 +97500,Chica,55663,222890,6 +97501,George,40807,1324398,30 +97502,Roger,48488,1020087,1 +97503,Little Jack 'L.J.' Byrnes,693,1003453,11 +97504,Margaret Skridlow,23096,87039,18 +97505,,268735,71450,3 +97506,Pimpernel Pilot,41312,74637,17 +97507,Ryan,316042,58014,2 +97508,John Watherstone,77822,96764,9 +97509,Adrian,37923,97782,9 +97510,Detective Cawl,227094,1233146,5 +97511,Garagiste,77338,1588451,29 +97512,Jenny Grant,11643,12969,2 +97513,Janki Kumar,325555,146971,4 +97514,"Walter, Nazi Soldier",203833,1086352,21 +97515,Margaret Waverton,31592,8535,7 +97516,Catherine Viciy,57326,25308,1 +97517,Ripcord,14869,9562,2 +97518,Newsroom writer,209764,1673307,8 +97519,Harry,100275,21292,3 +97520,Thomas - Butler,38602,59074,10 +97521,Navas,141015,110424,2 +97522,Feigenbaum,336050,1142959,6 +97523,Park Shin-woo,209764,557133,3 +97524,Sergio,8329,147878,8 +97525,Mr. Scrampton,86049,153115,7 +97526,Lex Luthor (voice),22855,6574,2 +97527,D'Mello,25499,35759,1 +97528,Quisha / Sex Toy,82153,1789754,3 +97529,Orphanage Reporter,61225,1220927,28 +97530,Roberta,198001,1178414,3 +97531,John Diaz,75174,81685,2 +97532,Penny (voice),13654,23855,14 +97533,Butcher #2,72875,568027,16 +97534,Chuck,343934,1226300,16 +97535,Man at Demonstration,81120,153066,26 +97536,Rexho,11330,107702,5 +97537,Sisse,298396,932343,5 +97538,Lefty,204040,3361,4 +97539,Beth Hytner,67216,8183,3 +97540,Elroy Jetson (voice),17009,148121,4 +97541,Stacie,227200,212631,2 +97542,Tariq,83899,101542,7 +97543,Allison,195867,85926,5 +97544,Himself,111332,1052078,6 +97545,Delivery Man,83079,1213889,9 +97546,Joe,77165,32675,10 +97547,자영 모 (Jayeong's mother),41441,138525,6 +97548,Cameo Appearance,316654,123180,9 +97549,Pukovnik Muci,33611,81235,7 +97550,Detective Latoya,419430,33655,11 +97551,The Phynx,139718,1174354,25 +97552,Ricky,27561,60966,1 +97553,Sara (Julieta's mother),332872,101401,8 +97554,Christophe,13710,584338,3 +97555,Trevor Newandyke,134662,1099848,0 +97556,Mrs. Cavendish,73873,17787,13 +97557,Daniella,268920,63522,1 +97558,Aura,41762,939712,1 +97559,,1838,1441403,26 +97560,Ritchie Rosenberg,146322,26510,2 +97561,Sandy Coletto,72460,74636,2 +97562,Barbara Gunthen,3037,2340,4 +97563,Perdita (voice),13654,60739,10 +97564,Scholar,142757,86762,13 +97565,Old Woman in Shoe,16652,166610,3 +97566,Miss Donnymead,148451,140119,7 +97567,Gary Worth,114348,44833,4 +97568,Charlie Logan,47115,4492,2 +97569,Biddee,76203,95051,28 +97570,Little Red Riding Hood / Grandma,109298,121038,5 +97571,Basketball Player,305932,1883542,12 +97572,Florian Thomas,9572,1863,0 +97573,Carlos Ramírez,80941,1061273,7 +97574,Edgar,46915,59081,7 +97575,Kansas - Sailor,264309,975692,19 +97576,Al Yearling,102057,37446,5 +97577,Boyer,66584,545079,2 +97578,Jack Dowler,4882,90848,14 +97579,,262958,1401546,19 +97580,Masked Man,155096,1188,2 +97581,Gideon,94725,21384,1 +97582,Bradley Baker,402446,1136406,1 +97583,airport security,53042,147102,5 +97584,Mr Stickler,22901,111440,8 +97585,Wandâ Masamitsu,53064,1107768,1 +97586,Дежурный милиционер,46010,86837,5 +97587,George Jr.,16240,80181,7 +97588,Miss Mitzi,4380,20974,5 +97589,Marco,223946,145123,11 +97590,Elise,11680,1318510,14 +97591,"Tom Garner, Jr.",96702,140412,4 +97592,Flora Atkins,108012,24815,4 +97593,,76202,58744,4 +97594,,13678,1297473,3 +97595,Tracy Tatro,5915,37917,7 +97596,Bit part (uncredited),68822,548698,32 +97597,Carlos,19237,51995,7 +97598,Loredana,38289,34027,5 +97599,Su-Jeong (mother),25597,93996,5 +97600,Ronnie,22448,88804,2 +97601,Himself - Roaster,334461,105787,10 +97602,Great Bear,19274,1174649,5 +97603,Iris Greenwood,251732,18345,1 +97604,Himself,156908,1138120,1 +97605,Kate,32068,7632,1 +97606,Toni Karpathy,170517,30143,13 +97607,Norfolk,49500,1292,5 +97608,Lasse Karlsson,141267,64975,17 +97609,Mob Dancer,85446,932097,8 +97610,Bailey,252680,1358561,19 +97611,Warlord,293660,27588,12 +97612,Jean-Paul,10268,64544,7 +97613,Maria Almond,28571,20144,5 +97614,Sade Bakare,157384,1141383,2 +97615,Wein,23628,90399,6 +97616,Bennett,100528,29601,10 +97617,,338079,27275,4 +97618,Miriam,293863,1459144,14 +97619,,79781,87243,1 +97620,Mr Hublot,223946,97085,10 +97621,Annabeth Markum,322,350,5 +97622,Bartender,242042,1686957,31 +97623,'Tex' McNeil,67531,2015,2 +97624,Glow Stick Guy,252102,1287565,5 +97625,Henchman,19336,1167990,13 +97626,Lt. Weber,14979,5694,3 +97627,Irena Zielińska,49009,36592,5 +97628,"Musii, an old man",174720,86670,5 +97629,Photographer (uncredited),1726,1209715,63 +97630,Helen Hopkins,28290,103441,5 +97631,Ganpat Choudhry,158780,85456,2 +97632,Anas,85743,1273013,5 +97633,Judge Edward Purcell,32634,98450,6 +97634,General Swanwick,209112,9464,20 +97635,Ludlow Lamonsoff,257344,54415,3 +97636,Welcome to the 60's Dancer,2976,1752798,143 +97637,Roxie Famosa,72140,381,1 +97638,Grace,366631,80036,3 +97639,Philip,1966,5576,2 +97640,Alicia Millstone,9030,56734,8 +97641,,19552,1275917,8 +97642,Sophie's boss,220488,1144355,9 +97643,Lepsu,89330,992848,1 +97644,Randa,42494,81560,2 +97645,Infirmary POW,227306,1394472,72 +97646,Sissi,6076,42879,24 +97647,Charlie Wolfe,237756,11108,0 +97648,Congressman Crenshaw,259292,30215,7 +97649,Gala Coordinator Dalla Pietà,37710,103147,33 +97650,Sangkwon,86266,78865,1 +97651,Stephanie,71139,13024,6 +97652,King Pleasure,347630,1487588,13 +97653,Khampa (voice),333667,18999,1 +97654,Lass,75138,1246,5 +97655,Flight Attendant,75174,935299,15 +97656,Himself,360341,1430,0 +97657,Kusse-Kurt,11328,69013,2 +97658,,244403,3905,5 +97659,Boy Scout who finds Mazard's Body (uncredited),17136,31774,44 +97660,Dominic Toretto,168259,12835,0 +97661,,218508,148351,1 +97662,Sam Gardner,48281,1351508,7 +97663,Madison,323370,17303,1 +97664,Diane Decker,88042,73931,1 +97665,Torturer,144229,11086,9 +97666,John Mayhew,10299,6905,9 +97667,Clubber,262338,1396611,18 +97668,Mrs. Keon,73896,105021,6 +97669,Verity,46660,9827,10 +97670,Lyle Nomura,17274,54247,0 +97671,Matt Matlock,38107,88978,2 +97672,Gertie Michaels,293970,61178,4 +97673,Francesca,95536,34027,5 +97674,Léon Doré,18381,227598,0 +97675,Tim,47194,141040,12 +97676,Jacob Anderson,341957,1470808,1 +97677,Wachtmeister Platzek,19430,23694,6 +97678,Alex's Mother,413052,1671029,7 +97679,Lobatch,130055,82288,6 +97680,Camille Martínez,20,2323,10 +97681,Cleaning woman,10299,150633,24 +97682,Uragami,282070,110500,8 +97683,Sir Richard Worsley,352733,63311,2 +97684,Lestroy,52520,582923,11 +97685,Subway Riders,27814,1830687,17 +97686,Javier,35395,98105,4 +97687,Kailey,13993,10696,0 +97688,Doktor,259690,1052119,7 +97689,Tony Zanoba (as Jim Moloney),204994,170575,6 +97690,,37429,145411,2 +97691,Nihad (5ans),46738,1644499,17 +97692,AIM Ping Pong Girl,68721,1735565,68 +97693,Tigger (voice),24926,77548,6 +97694,The Accusing Dead,76341,1734184,40 +97695,Tobacco shop woman,125257,1559753,10 +97696,le directeur des RG,60106,21170,3 +97697,Guillaume,26810,124977,2 +97698,Philip,157829,1396125,12 +97699,Himself - at Banquet (archive footage) (uncredited),33740,30686,92 +97700,Barkis Bittern (voice),3933,20766,7 +97701,Fruit Fly (Old) (voice),116711,1273229,14 +97702,,31244,100477,3 +97703,Paulina,48186,42297,2 +97704,Christopher Caruso,19901,77496,5 +97705,George Morgan,38150,9191,4 +97706,Josh Warrick,172520,1155125,4 +97707,Uncle Ramzi,31216,1184850,13 +97708,David 'Harp' Santell,229638,13970,4 +97709,zia Tina,56435,224208,4 +97710,Derrick,302666,1226023,12 +97711,Jock #2,10033,62254,18 +97712,The Girl in Goose Lane,27970,119702,12 +97713,,63859,1213231,7 +97714,Caz,220029,58757,2 +97715,Lookout,108017,1321989,12 +97716,Ana,248543,559176,4 +97717,Michael Henchard,238792,8785,0 +97718,"Man With Car (segment ""L'uomo dei 5 palloni"") (uncredited)",99095,32312,6 +97719,Lombo,82080,138650,20 +97720,T. Bates,7871,1294401,12 +97721,Himself,16800,938996,7 +97722,Rika Sasaki,31347,124476,14 +97723,Mona,73775,5522,12 +97724,Julietta,61552,28420,0 +97725,Stefano,235208,107624,3 +97726,"Wesley ""Wes"" Huber (Jude's Father)",4688,2256,11 +97727,Tryton / Dedal,375742,1175170,9 +97728,Lt. Burt Kaufman,36786,44846,3 +97729,Employeur sur Skype (voice),329712,5425,7 +97730,Sebastian Mehnert-Wichert,1914,1882,8 +97731,Thomas,346672,4391,10 +97732,SWAT Officer,383538,1485112,24 +97733,John Fuller,29424,1206157,10 +97734,Reporter,32139,33350,3 +97735,Ballet Dancer,352890,1561248,16 +97736,Strucker Mercenary,99861,1265796,25 +97737,Dave Hechtor,55728,19511,5 +97738,Shelby,34482,206399,15 +97739,Hüseyin,13393,93389,0 +97740,Otis,306952,1511963,19 +97741,Jerry's Guest,171446,115995,11 +97742,Ezra Gray,65488,82835,10 +97743,Tee,427680,1758467,3 +97744,Howie,179154,77334,0 +97745,Song-yi (cameo),376252,1454805,13 +97746,Lieutenant Cronin,388862,61903,3 +97747,Bertie Ferbelow (voice),17009,18,7 +97748,Himself - at Banquet (archive footage) (uncredited),33740,5832,93 +97749,,311417,1399674,3 +97750,Wilma,177104,129967,7 +97751,Swimsuit Girl,294652,1400921,12 +97752,Gustavo César,109690,1308586,4 +97753,Erwin Hagedorn,167330,1825968,9 +97754,Audrey Martin,194722,527313,2 +97755,Professor,240832,586371,11 +97756,Rahul Jaykar aka RJ,192558,142626,0 +97757,Kostucha,157178,92652,1 +97758,Partygoer,335970,1697155,74 +97759,Larry Standing Elk (Tribal Policeman),177043,123631,10 +97760,Candyce,125490,190937,16 +97761,Claudio,139563,119991,6 +97762,Edith Colby,244201,30272,18 +97763,The trafficker,132332,140357,4 +97764,Asobi nakama (Friend),28268,1449320,14 +97765,Boromir,122,48,22 +97766,The King (voice),309809,4971,7 +97767,Liz,42307,127734,2 +97768,Ned,1116,1896859,23 +97769,Paul R. Cameron,84496,12950,0 +97770,Petit Prince,25353,93594,3 +97771,Kate Campbell,321497,35980,2 +97772,Lee,225285,1264237,11 +97773,Jeb Stuart Thornton,117999,5563,1 +97774,Pénélope,208305,15480,2 +97775,Herself - Co-Host / Narrator / Clip from 'Singin' in the Rain',33740,8857,7 +97776,Elyne Mitchell,43757,6692,1 +97777,Clint Barton / Hawkeye (voice),169934,1251544,7 +97778,"Shamraev, the estate bailiff",184795,140168,8 +97779,Danny / Do Do,18763,62410,1 +97780,Himself,413782,1673990,3 +97781,,297745,94256,6 +97782,Bill Hart,59722,114876,0 +97783,Jasmine,332280,1218928,2 +97784,Paula,440777,1643586,30 +97785,Bénévole refuge,148327,1144430,3 +97786,Mr. Myers,374475,49486,7 +97787,Cojo,27503,97999,4 +97788,Foley,43491,89733,13 +97789,Ralph,68179,170185,7 +97790,Capt. Harris,38269,1208036,5 +97791,Himself,173467,1100,30 +97792,Arco,133716,2784,3 +97793,,336549,55513,10 +97794,Monique Grant,256474,979618,10 +97795,Sgt. MacKenzie,94135,41998,3 +97796,Jade,334890,1695150,15 +97797,Hispanic Orderly,152532,1299674,12 +97798,Killebrew,10594,65774,12 +97799,Carter,131689,1059044,7 +97800,Erzherzog Franz Karl,457,6257,7 +97801,Himself - Storyteller,128216,85922,14 +97802,Drowsy,116232,119545,16 +97803,Rosy,151509,1709640,6 +97804,Giles,55177,557840,4 +97805,Eadie Johnson,115054,153493,7 +97806,Mattie Darrow,44718,5606,1 +97807,Judson,14207,64930,2 +97808,Lola,72279,101326,13 +97809,Sheikh,55628,15152,4 +97810,Madeleine de la Tour d'Auvergne,70090,47227,4 +97811,Socrates,64965,119996,3 +97812,Black Eagle,377170,1173502,14 +97813,Wataru (Grandfather's Friend),79382,81108,12 +97814,Fotograph,75969,150801,60 +97815,Dana,82134,168534,8 +97816,Woman Sitting with Nick in Cafe,14589,1468183,55 +97817,McCoy,55615,84504,4 +97818,Eric,85431,43458,6 +97819,Irineu,12811,1827450,6 +97820,Showman z tv,91691,28834,10 +97821,Subhadramma,237672,585096,9 +97822,"Lucien, le facteur",11912,70173,13 +97823,Jiang Po,309820,1131440,2 +97824,Dr. Lester Caldwell,13788,164380,10 +97825,Narrator / Death (voice),203833,11279,7 +97826,Tamar,6391,55048,1 +97827,Soon Li,45013,155349,30 +97828,Franck,28417,55327,4 +97829,Mokichi,315841,50658,2 +97830,Skellig,302026,79072,2 +97831,Jungproduzent,80125,1276772,15 +97832,Ansel - Seven-Up,32080,41350,5 +97833,Dakota,91333,93037,6 +97834,Shirley,50327,24203,2 +97835,Atte Blom,379335,88853,1 +97836,Madam,45303,25252,5 +97837,Kenzô Kuriyama,85844,1068866,4 +97838,Widow,89116,107963,4 +97839,Showgirl,40916,1472518,15 +97840,Mike Sullivan,153163,30240,17 +97841,Joe,277710,143328,18 +97842,Lídia,390547,1621789,3 +97843,Sir Patrick of Ireland,26643,1183964,13 +97844,Gansmer Guest,330947,1650303,32 +97845,,247354,1066417,2 +97846,Prostitute,269173,1663795,34 +97847,White House Press Secretary,257344,1219489,22 +97848,Bus Passenger,284052,7624,25 +97849,Ricardo,34092,123329,2 +97850,Beryl Wilde,266856,1639,3 +97851,Ralph,25143,126540,6 +97852,Monty,8194,9046,5 +97853,Frau Kaminer,114438,7153,6 +97854,Jesus,63348,120073,0 +97855,Emil,45133,132247,4 +97856,Jack Gilbreth,50549,1278808,11 +97857,Dr. Lazarus,27138,982340,11 +97858,Nanette,413232,201534,1 +97859,Gloria de La Cruz,331962,120694,11 +97860,Dr. Lazwell,69898,170187,9 +97861,Dane,28739,101805,14 +97862,Ulf 'Ulle' Polle,27637,16723,2 +97863,Isabella,53945,70999,1 +97864,Mary Coombs,19017,14947,1 +97865,Jonathan,51036,3039,5 +97866,Papu's Girl,148478,1116302,11 +97867,Pekinese (voice),30060,41234,6 +97868,Ray,5748,1790226,6 +97869,Additional Voices (voice),130925,59784,16 +97870,Hamlet,48209,12150,1 +97871,Cody and James's Mother,70636,571571,7 +97872,Charlie,284293,83222,4 +97873,BB-8 Performed By,140607,89863,64 +97874,Herself,253337,15761,24 +97875,Hadley Wolfmeyer,11354,3128,4 +97876,Lady Macbeth,133448,178630,1 +97877,Policeman,37368,24827,9 +97878,F.R. Duncan,37954,35849,4 +97879,,11330,1444523,25 +97880,Emre Ogan,354859,935235,6 +97881,Willie Parker,19621,28641,1 +97882,Gillian Sveck,93676,212154,5 +97883,Aunt Judy Kling,34766,104803,3 +97884,Georgina,232672,19578,19 +97885,Oscar,10710,181133,24 +97886,Renard,140887,90333,1 +97887,,354296,1337737,0 +97888,"Olsen, konstabel",87654,1271561,9 +97889,Mlle. Auber,134480,29623,6 +97890,Isaac Goldberg,452142,203581,13 +97891,Jorge Kepler,82999,929043,2 +97892,Dale Dodd,55922,87572,2 +97893,l'employé de la location de voitures,252102,1377167,6 +97894,Legs,12447,97881,13 +97895,Hansel,9793,11,5 +97896,Elvis Presley,322548,17402,2 +97897,Herself,323426,580659,5 +97898,Ice Cream (voice),378236,71403,10 +97899,Vincent Mountjoy,49876,40943,2 +97900,Corny Collins,409447,1019545,7 +97901,Maria,263873,56152,2 +97902,Miss Lee,39779,19967,6 +97903,le présentateur TV,42021,30832,2 +97904,Atty. Gavin St. Claire,65280,13022,0 +97905,Draftsman (uncredited),37628,31325,21 +97906,Head Ghillie,1165,188468,14 +97907,Poliisi,55776,147771,4 +97908,,19552,1275925,16 +97909,Jimmy,370755,1473140,14 +97910,Amanda (uncredited),170234,97042,9 +97911,Elisabeth Anderson,10900,15887,0 +97912,Susan Helen Danford,333352,1499041,25 +97913,Tall outlaw,11509,194265,24 +97914,Ruben Rietlander,68444,1120095,1 +97915,Iben,310602,1562,7 +97916,Ilmari Salpakari,41142,125632,9 +97917,Glenn's Girl,66881,549059,12 +97918,V.U.P.,298,19839,21 +97919,Tatyana Ivanovna,64268,1175938,7 +97920,Iván Pelayo,98586,3872,0 +97921,Boy,24973,1747657,29 +97922,Everyone Else (voice),291270,119232,2 +97923,Laura Reno,22408,88975,2 +97924,Miriam Kaminski,277968,20577,3 +97925,Himself,175171,534016,6 +97926,Frankie Flannery,1662,228,2 +97927,Bora Jovanović,255647,15265,10 +97928,Jimmy Marsh,99909,165415,47 +97929,Rudyard Kipling,25143,26717,1 +97930,Willie,203321,31166,3 +97931,Chloe Andersen,185564,212480,2 +97932,,17282,28508,7 +97933,Nana,150201,1448860,3 +97934,Daniel Drumm,284052,1697474,15 +97935,"Lt. Col. James ""Rhodey"" Rhodes / War Machine",1726,18288,1 +97936,"Charles, a Cashier",53410,29961,2 +97937,Barry,9900,21007,9 +97938,Mage (uncredited),274857,1555946,57 +97939,"Mulher (segment ""Quando não há Mais Amor"")",211166,65007,9 +97940,Old Man’s Ghost,104277,82461,7 +97941,Mona's Kid (6 yrs),34806,1179337,12 +97942,Dhananjay Mane,302435,559476,1 +97943,Wife (uncredited),28433,67289,8 +97944,Iris Caine,74057,6352,2 +97945,Fudeko Taniguchi,143946,122828,1 +97946,Co-Pilot (uncredited),15807,91217,21 +97947,Jonathan Cold,18070,23880,0 +97948,Director of Athletics,57215,152681,8 +97949,Juiz,73624,1140714,8 +97950,Student,54111,1136859,11 +97951,nonno Fonzio,121998,1874281,5 +97952,Frankie Dalton,19901,76068,7 +97953,Emperor,37702,118350,4 +97954,Riley Jones,68684,553504,0 +97955,Wagner,102155,178954,22 +97956,Jules,183662,33397,0 +97957,"Joe, crewman",125666,120791,4 +97958,Chunk,126947,165919,2 +97959,,294047,95038,1 +97960,Bum 1 / Ghost,206574,1339116,5 +97961,Taylor,356482,1172695,8 +97962,Heraldson,49521,27138,24 +97963,Yuppie Woman,79329,586535,14 +97964,Dr. Love Girl,77930,1348613,28 +97965,Shari,50647,113223,15 +97966,Rafael,31299,1426411,11 +97967,Herself,134397,1098988,2 +97968,Tommy,27137,1185447,12 +97969,Dr. Rohleder,295782,23523,4 +97970,White Bird,3686,22588,9 +97971,Professor Robert Burns,30806,23880,0 +97972,Precious,193893,1381474,24 +97973,"Patrizia Fischer, Adas Mutter",226693,36469,4 +97974,Midwife,369885,1651412,55 +97975,Fire Maiden,31280,1214101,11 +97976,Charles,100275,1098451,5 +97977,Julie Bale,15935,77139,2 +97978,Leila's Uncle,45899,1538301,7 +97979,,27843,79458,6 +97980,Tatiana (voice),301325,61111,9 +97981,Dan Pinto,411741,1371398,2 +97982,Security Guard,50838,35703,6 +97983,Lt. Murph McCoy,264321,30613,2 +97984,Agent Amanda Stuart,18070,46917,1 +97985,L'autostoppeur,3423,13697,7 +97986,Lester Fillbrook,12759,73620,6 +97987,Newborn,378441,1797402,14 +97988,Aline,30174,1153065,8 +97989,Speech Therapist,239563,1232484,26 +97990,Sir Anthony Skouras (voice) (uncredited),38654,10074,20 +97991,Lawrence Yeager,14527,5892,12 +97992,,375742,1564291,23 +97993,Daniel Talbert,47882,33856,7 +97994,Joan Pudillo,31462,1068,3 +97995,Himself,125736,1270999,9 +97996,Lisa Martin,244403,78324,6 +97997,"Francis, the hairdresser (as Arbacher)",66812,48044,9 +97998,Panzer,58587,51902,4 +97999,Mfana,232672,953505,12 +98000,Fairy Godmother,92349,992884,6 +98001,Himself,187442,147333,0 +98002,Passport Official (uncredited),75363,133872,27 +98003,Eve,52520,221116,4 +98004,,328692,1112411,6 +98005,Daughter,381054,1503247,4 +98006,,2143,1216523,57 +98007,Beatrice,12811,6405,2 +98008,Choon-hwa,77117,62336,14 +98009,Alice,76268,586139,4 +98010,Factory Workman,47404,1214919,34 +98011,Mrs. Potter,20625,10804,8 +98012,German Officer,154972,1755191,8 +98013,Brittany (voice),258509,18979,12 +98014,Royal Academy / Times Journalist,114155,36666,13 +98015,Asgardian,284053,1814638,24 +98016,Matt Cable,40649,93922,7 +98017,Mrs. Roberts,25598,18365,5 +98018,TV narrator (voice),17111,1629454,26 +98019,Ms. Mercer,353728,1697395,12 +98020,Amy Bennington,360284,1396325,13 +98021,Micha Eshel,369697,164,1 +98022,,63859,106572,4 +98023,Pool Worker,10710,1427707,39 +98024,Funeral Attendee,359471,1509236,29 +98025,Minister,13338,41784,6 +98026,,168295,552649,9 +98027,Sakai,3782,34375,1 +98028,Bob (Club Manager),23628,90408,15 +98029,Daniel Lawrence,88583,5249,4 +98030,Alan - Age 12,12483,189718,7 +98031,Chucho (voice),14405,40481,9 +98032,Henry Black,50780,211429,5 +98033,Winnie (voice),159824,1202534,17 +98034,Defense Secretary Weisberg,246655,180683,57 +98035,Foster (storekeeper / Emily's father),32921,2099,11 +98036,Tiko,84626,1154132,5 +98037,Cheng Huan,899,13789,1 +98038,Pauline Laubie,201749,11291,1 +98039,Esme,43390,13996,4 +98040,Johnson J. Johnson,21605,13242,5 +98041,jako Siostra Petro,406449,1650393,28 +98042,Prof. Rodney Elwell,23152,7668,3 +98043,Lou (voice),13517,1571370,11 +98044,Janie,334527,1205752,9 +98045,Père d’Antoine,8049,6018,2 +98046,Daisy,39194,8963,2 +98047,Oberst Rochow,212530,12324,6 +98048,Mantavir,276846,85684,4 +98049,Joey,134656,1099825,2 +98050,"Giuseppe Bottazzi ""Peppone""",11972,37191,1 +98051,Mike,2061,21196,8 +98052,Pastor Koskull (voice),82708,1828325,21 +98053,Father of Amedeo,121510,120637,3 +98054,Gauthier,14400,238460,9 +98055,Milly,16563,82405,5 +98056,,264264,107775,17 +98057,Sport Reporter / Fight Attendee,332979,1542696,10 +98058,Badge Mueller,86023,2630,2 +98059,Nuria,408537,226431,5 +98060,George 'Wrinkles' Fallon,30036,7074,9 +98061,Barry,70863,216147,16 +98062,Paul Sabel,98612,1307552,2 +98063,Policeman,52021,1088211,9 +98064,Urena Little Page,345003,1838597,22 +98065,Sam,134308,59451,5 +98066,"O Ator (segment ""O Milagre"")",211166,1037,6 +98067,Hank,35026,567542,14 +98068,Costa,2982,29285,7 +98069,Cris,458335,87341,1 +98070,Detective Gleason,27230,10361,13 +98071,Old Codger #2,33586,1814885,6 +98072,Hank (uncredited),11007,18976,16 +98073,Marc,41211,24041,3 +98074,Bob Anderson,126754,12646,0 +98075,Bradley,25674,9306,5 +98076,Oscar Mazamette,29082,102848,2 +98077,Magic Show Master of Ceremonies,228647,101490,46 +98078,Gangster,27966,1008912,39 +98079,IP Mohideen,108726,1044836,2 +98080,Sir Geoffrey,18978,185933,14 +98081,Johnny O'Clock,19335,19328,0 +98082,Assistant Director,351065,1181464,20 +98083,Himself,15260,223515,6 +98084,Iggy (voice),193650,1244632,2 +98085,Violet,101998,1177633,4 +98086,British Soldier,227306,1394464,64 +98087,(as Sandro Corbelli),222517,471358,14 +98088,Ava,256962,72984,8 +98089,Al,85265,1524134,16 +98090,Denny Davies,11354,1269,1 +98091,Mary Gilbert,132426,10978,0 +98092,Charley,91571,8253,1 +98093,Manny,38874,76961,3 +98094,Pam,25919,54679,5 +98095,Jannick,24351,124686,3 +98096,Kohei Onda,41261,125949,11 +98097,Sammy Rodenko,93116,19754,10 +98098,,53688,141618,0 +98099,Ricky,42709,27737,3 +98100,"Mitsuo Kondo, the dead man",36246,74862,2 +98101,Mr. Baker,21765,58478,9 +98102,Single mother,67272,993929,5 +98103,Benefit Guest (uncredited),271718,169452,32 +98104,Mrs. Loretta Houk,31462,157523,9 +98105,Arlen Hird,294016,52849,4 +98106,Taylor Briggs,36960,1954,0 +98107,New York Tourist (uncredited),284052,1753020,63 +98108,Nina,781,11611,5 +98109,Clarke,53949,82510,30 +98110,Drunk (uncredited),1976,1276756,25 +98111,Chuckles (voice),10193,7918,19 +98112,Willem,59424,144199,2 +98113,Marie de Varenne,118536,95117,7 +98114,Sir Sagramore,18978,53594,10 +98115,Atul Bhatnagar,196852,113686,7 +98116,Jimmy Grant,60599,77277,5 +98117,Harrison,33931,79247,9 +98118,Female Martial Arts Master,125521,115791,10 +98119,Delane,109716,92907,7 +98120,Magistrate,41380,130389,17 +98121,Katherine,233487,1188881,10 +98122,Marianne,302118,22185,6 +98123,Harry Manning,265741,1319273,5 +98124,Neckbone,103731,1171570,2 +98125,Chief Builder,13600,27822,7 +98126,R'ch'lle,15936,15563,5 +98127,Nicolas Smith,160160,934925,5 +98128,Caleb,27832,1088031,4 +98129,Corpse Remover,62143,95125,40 +98130,Meegan,26679,1088123,11 +98131,Private Hawkins,128612,190678,8 +98132,Lucienne,9664,56649,15 +98133,Clerk Recorder,365753,1569800,12 +98134,Alexandra,126250,121541,16 +98135,Serafin,35032,13294,1 +98136,Heron,390059,557579,8 +98137,San Sanych,71051,86691,2 +98138,Jody Scott,28155,99885,1 +98139,John Phineas McPherson,227717,7668,2 +98140,Blueprint Dancer,243683,1398183,80 +98141,,314371,1583952,30 +98142,Шеин,365544,80997,11 +98143,Demonstrator #3,326285,1812246,27 +98144,Baldwin Ferguson,27221,97330,4 +98145,Nevada,15092,1581943,19 +98146,Jäger,9803,37035,12 +98147,Himself,121170,57755,0 +98148,takaa-ajava vanginvartija,442752,1666623,47 +98149,Joshi Ana,11838,552508,15 +98150,Party Guest (uncredited),33112,141068,27 +98151,Jimmy Joe,67669,42191,9 +98152,Arsenius,9503,24627,9 +98153,Detective Davis,78522,99706,10 +98154,Ah Bao,20342,1342865,7 +98155,David Kirmani,4413,5471,3 +98156,Bruce Orr,79778,77315,4 +98157,Himself,348035,66,1 +98158,Abbys Grandfather / Ghost,206574,1263723,6 +98159,Caedman,48791,14468,10 +98160,Deputy Bill,97614,131335,16 +98161,Bubbles,9958,1219130,2 +98162,Jon Roy,156981,62596,1 +98163,Laura,11096,6832,6 +98164,Annabelle,92424,994217,13 +98165,,166207,1040017,14 +98166,Father Paravicino,29272,588053,12 +98167,Detective Lopez,48319,1121,5 +98168,Sheffield Coach,55725,164242,17 +98169,Gabriel,150056,6093,3 +98170,Young Marlow / Marlow's Son,293167,1140241,14 +98171,'Windy' Woods,118444,30157,8 +98172,Principal,74465,58461,14 +98173,Spirits in Séance (voice),31258,1239215,7 +98174,"Mikhail, Colonel",34869,83838,6 +98175,Sheriff Doakes,106747,6573,14 +98176,Rhonda Thompson,50327,162945,3 +98177,Brad McBride,253484,1295522,2 +98178,Voice,44283,1175469,12 +98179,Mrs. Papasano,39495,78936,13 +98180,Himself - Interior Designer / Titan Model (as Graig Keyte),97724,1140220,42 +98181,Prema,253533,1210037,18 +98182,Joey Lee,381032,1183546,5 +98183,Hollywood Boulevard Type,26486,1214389,37 +98184,Mingo,14881,93800,5 +98185,Luca Medici,35554,114366,0 +98186,Doctor,389972,133169,3 +98187,Mama Sangwa,57654,1811550,5 +98188,Frau am Eingang des Casinos,308174,1888495,31 +98189,Floyd,1661,18490,0 +98190,Himself,271718,4756,21 +98191,Delivery Kid,44415,146334,6 +98192,Agatha Clegg,11897,7684,18 +98193,Helena,8316,4794,4 +98194,Man at speed date,42571,128225,8 +98195,Martinez,50761,1095089,9 +98196,Phyllis,170603,97720,12 +98197,Zerelda 'Zee' Cobb,43829,94036,2 +98198,Mrs. White,200447,100779,5 +98199,Soldier,24094,97462,25 +98200,Martina Breccia,303542,1878450,7 +98201,Aurélie,277839,1674684,13 +98202,Lennie Dale,418772,76594,2 +98203,Marquita,68387,210904,4 +98204,Mel,18072,27125,0 +98205,Kate Kavanagh,341174,222130,3 +98206,Gilda,17223,130875,2 +98207,Bachelorette #5,193893,1381672,53 +98208,Terrorist,442949,1762642,9 +98209,Billy Cook,142402,1117093,25 +98210,Clarke's Girlfriend,85442,1215888,31 +98211,Armand de Rochefoucauld,48145,550538,5 +98212,Kenji (voice),16390,16183,8 +98213,,264036,1308676,3 +98214,Alistair Howell,77949,1674639,20 +98215,Tiger Brown,156326,1151381,5 +98216,Waiter,117509,106401,9 +98217,Le gardien-chef,33436,54376,15 +98218,Jackson,335509,1067737,4 +98219,,43095,1437833,19 +98220,Art Teacher,72875,98473,3 +98221,R.D. Warner,132363,168942,10 +98222,Sargento Estévez,107073,1481495,7 +98223,Chingmy,41714,118742,4 +98224,Waiter,43811,89672,34 +98225,le copain de Georges,14650,235095,7 +98226,Steve Brodie,147876,3152,2 +98227,Jane Salvador,24150,62819,20 +98228,Ruth,201765,224728,0 +98229,Samurai Ensemble,616,1095916,44 +98230,Melora,51167,18658,1 +98231,Queen,85628,544312,3 +98232,Frankie,371446,1552436,7 +98233,Teen Lover at Orphanage,27414,1206243,32 +98234,Harper,314065,1466262,5 +98235,Stéphane,13739,24895,0 +98236,Constable Hawkins,74314,13557,8 +98237,Right Field,61644,239119,13 +98238,Clip from 'The Wizard of Oz' (archive footage),33740,9069,46 +98239,Barbara Alden,178927,103500,3 +98240,Hani (as Daud Shah),31216,1070749,12 +98241,,277934,1119553,5 +98242,Ruiji,217923,150899,0 +98243,Librarian,137321,42194,27 +98244,,88273,1437255,17 +98245,Alek,59965,1266052,10 +98246,Christy,86252,933066,1 +98247,Cassie Kennington,14552,1285,1 +98248,Narrator / Father (second telecast),23544,116669,8 +98249,Rich,41301,52480,0 +98250,Pete,158908,212003,1 +98251,Sally,189,36594,14 +98252,Trigger,274857,59538,25 +98253,Burton,127560,1380467,5 +98254,Himself,160297,11398,9 +98255,TV Executive,64328,77887,27 +98256,Jenny,198277,133451,8 +98257,Pop Weaver,17978,34754,5 +98258,Hanako Inoue,81296,70627,0 +98259,Jack [ジャック] (voice),56391,86664,12 +98260,Daniel Bannier,3716,677,0 +98261,Masako Shimura,295273,87637,20 +98262,Kitten,194101,77292,2 +98263,Marlon the Gator (voice),10198,183758,19 +98264,Shanna,1991,20492,7 +98265,Chris Hughes,215999,25665,2 +98266,Gil Jones,183827,18802,3 +98267,Eudora (voice),10198,13309,8 +98268,,39056,84029,1 +98269,Mr Cook,27450,32807,6 +98270,Jonesy,218351,133099,10 +98271,Fidel Ruiz,56601,1291350,9 +98272,Seb,98277,1801120,16 +98273,Lord Salisbury,10204,27822,6 +98274,Maj. de Beaujolais,189621,1170727,6 +98275,Erland,352186,1566915,15 +98276,L'inspecteur police,1421,1166141,21 +98277,Daniel,10521,81388,4 +98278,,61904,1689787,8 +98279,Japanese Minister,329865,1810141,67 +98280,Dr. Willard,20919,21431,11 +98281,Dr. Jack Harper,13483,18288,2 +98282,,430985,29068,1 +98283,Renee,197696,230060,3 +98284,Himself (archive footage) (uncredited),105528,51576,18 +98285,MP,150712,4303,10 +98286,Harris,29694,10600,5 +98287,Schwester Klara,50722,52635,6 +98288,Joe Durell,52864,30686,7 +98289,V. E. 'Raptor' Longfellow,75244,113,0 +98290,Chuck,411741,1684473,10 +98291,Tiffany,94340,1229578,4 +98292,Barry,12085,25877,4 +98293,Mrs. Norris,4257,9599,18 +98294,Heather,1382,53890,6 +98295,Kisaragi,13391,9706,9 +98296,Moira,80545,1450460,10 +98297,Hjorr,286873,1047649,2 +98298,Storbor,48838,34515,13 +98299,Christopher Newley,83079,32386,2 +98300,Moustache Man on Train,266285,1156032,36 +98301,Paxton,1691,19487,6 +98302,Narrator (voice),54406,55477,12 +98303,Claire Martin / Mélina,109261,13688,0 +98304,Sir Lancelot,181533,221018,10 +98305,Himself,70027,69500,0 +98306,Hoffmann,65002,43553,2 +98307,Adric,19350,62522,4 +98308,Jackie Ramirez,352094,1154835,8 +98309,Townsman,128437,93624,11 +98310,Axeman,274857,1083177,31 +98311,Tante Uschi,1655,18420,15 +98312,Jae,188927,1508117,35 +98313,Mrs. Weaver,73194,13965,6 +98314,Attractive Woman Driver,8457,204462,13 +98315,Du Rouvre,26152,146487,8 +98316,Meryl,273743,58045,6 +98317,Yank,52859,4303,7 +98318,Dee Renjie,217923,993943,1 +98319,Naval Technician,29805,1377842,43 +98320,Lucy,26469,1180941,3 +98321,Judge North,261249,2651,7 +98322,Fried,379019,21743,7 +98323,Rupert Boyce,373977,20402,12 +98324,Woman with Poodle (uncredited),27973,1001010,27 +98325,Kilgore,26358,1275,2 +98326,Voice / Alek,20055,18041,1 +98327,Sam Leeds,73896,37448,0 +98328,Major General Ross,75142,71248,4 +98329,Fray Emilio Bocanegra,13495,3480,9 +98330,Fat lady,30929,123208,11 +98331,Lally II,94225,98596,5 +98332,Fingers O'Toole,31265,13875,3 +98333,Mrs. Dasher,456101,1842113,7 +98334,Young Female Intern,16320,80439,29 +98335,Teo / Gianni,18897,40541,3 +98336,,288424,1357869,4 +98337,Actress - Dawn Glory's 'Mother',188468,990397,13 +98338,The Debutante,414977,1552005,23 +98339,Jack,20381,28410,2 +98340,Colonel Brandon,315010,18616,2 +98341,Solemn Village Boy (voice),3933,933684,15 +98342,Herself,53367,400,6 +98343,Hamilton Busbee,39219,170543,4 +98344,Lana Boland,5748,45314,4 +98345,Satin,21554,55672,6 +98346,Ian Kilbourn,107250,1237059,12 +98347,Katie,32893,43427,1 +98348,Lisa,107781,1042610,10 +98349,Himself,167951,65605,1 +98350,Juliette,13734,66838,6 +98351,la patronne du PMU,37653,2415,12 +98352,Makoto Tsubokawa,38625,115648,8 +98353,Sally Smith / Prudence / Katrina,259593,30269,2 +98354,Ragionier Casoria,56068,37193,6 +98355,Anne,57866,30241,2 +98356,Teacher,43727,81287,9 +98357,Roger Maris,20536,12834,0 +98358,Mathias,49850,556724,4 +98359,,62616,235609,4 +98360,Manon Savard,271826,38525,10 +98361,Zack,115276,1742838,12 +98362,,662,1167686,11 +98363,George Richardson,13519,6682,17 +98364,Orso,306555,23367,5 +98365,Harry Patterson,44869,11492,0 +98366,Dorris,339362,3300,2 +98367,,73208,184881,11 +98368,Detective Tang,286709,8178,5 +98369,Ferenc Nadasdy,8316,8204,9 +98370,Peter Guagenti,19754,1429553,15 +98371,,11328,1444497,45 +98372,Josie,35908,114926,5 +98373,Mathematician,8410,55748,6 +98374,Marion Morgan,38150,53367,7 +98375,Bar Patron (uncredited),360592,1512203,29 +98376,Vera,390880,238523,10 +98377,Attendant One,27916,1090167,16 +98378,Jane Archer,110540,1111298,8 +98379,Specialty Dancer,43809,1468755,40 +98380,Ana,340616,1468065,1 +98381,Capt. Hensley,42182,156889,6 +98382,Orange Haired Elf,238302,81662,15 +98383,Antonio Licata,60014,1871229,12 +98384,Suzie,28663,39605,11 +98385,Chinese Announcer,7459,1157287,24 +98386,Himself,253309,1408697,5 +98387,Jeune fille - trampoline,338189,1850868,11 +98388,Urmila Martodkar,22429,35795,2 +98389,Jessy,381645,964758,15 +98390,Natalja,107445,1041618,3 +98391,Lehrer Nickel,204384,71514,0 +98392,,11328,1444482,30 +98393,Neeti (as Sana Shaikh),157129,1046204,4 +98394,,278458,970880,4 +98395,Capt. Hugh C. Drummond,140470,102687,0 +98396,Doyle Constantino,463906,130936,9 +98397,Helen Adams,29116,16759,16 +98398,Airport Security Guard,693,172201,16 +98399,,17985,1439595,17 +98400,Random Citizen (voice),38055,52997,20 +98401,Himself - Co-Host / Narrator / Clip from 'Going Hollywood',33740,24937,1 +98402,Himself - Interviewee,76142,9951,7 +98403,Kato,73306,107106,8 +98404,Eric Chow,11636,116906,21 +98405,Alberto,282768,1343613,4 +98406,Stanley,277847,39185,6 +98407,Logger Cody,335970,1371237,22 +98408,Henchman,35026,145023,23 +98409,Al Wallace,35543,64212,2 +98410,Dani,300601,1261476,9 +98411,Amos Clements,24655,1107,3 +98412,Bernie The Gorilla,38317,1733,3 +98413,Clarissa,296288,1418766,16 +98414,Marie,286595,1352758,2 +98415,Thug Missing Arms,45132,1363404,45 +98416,Walter Fischer,130739,8799,9 +98417,Steri,87229,1201202,12 +98418,Gentleman Critic,245700,118617,60 +98419,,54858,1136760,0 +98420,Lloyd,336011,94432,2 +98421,Charmin',31397,64198,4 +98422,Irene's Girlfriend,18651,1467398,48 +98423,Klasse 3c,61035,1446106,32 +98424,Dr. Paul Holliston,113525,18735,0 +98425,Parent,38322,222290,38 +98426,Adonis / Bugsby (as Mike Manning),110588,1039122,2 +98427,FBI Agent,38322,1869035,29 +98428,Katrina,122709,1221753,5 +98429,Himself,24978,84932,3 +98430,Andrey Golubev,60189,29839,1 +98431,Lucía,391618,98357,3 +98432,Trent,369406,1539093,20 +98433,General Morshower,38356,12797,13 +98434,Ove Høegh-Guldberg,88273,93236,1 +98435,Howard Greene,52867,85409,9 +98436,Jack R. Talbot,43470,30303,5 +98437,Navigator,29805,1225744,33 +98438,Mona,17258,140234,34 +98439,,420648,102222,4 +98440,Zachary Evans,27443,81182,11 +98441,Bernardo Perelman,97548,50929,1 +98442,Special Appearance,20359,85669,12 +98443,James,14349,6408,0 +98444,Don Pringle,31265,83130,0 +98445,Major General Harding,392271,7025,4 +98446,Harvey Brickman,18633,1241,6 +98447,Joanna Leiningen,61988,7331,1 +98448,Layla (as Karen David),13486,79124,2 +98449,Soldier 2,52034,237173,8 +98450,Lt. Terry Kent,170936,127520,1 +98451,Tyrone Robinson,27916,1090172,3 +98452,Jill Montez,58547,51072,0 +98453,Gaëlle à 10 ans,139159,1167054,7 +98454,Sally,98094,57626,6 +98455,Monkey D. Luffy,176983,65510,0 +98456,Luisa,130457,940572,1 +98457,Interrogator B,302026,1570611,9 +98458,Adolf Hitler,613,2310,0 +98459,Kemal,44246,133822,10 +98460,Younger Insurance Investigator,87827,121702,12 +98461,Alice Paul,49007,448,0 +98462,Willie,27873,64091,3 +98463,Nelson,84071,1272,3 +98464,Doctor Henry,241927,58014,3 +98465,Tobias Hansen,1539,4795,0 +98466,Eddie,31428,109947,16 +98467,Misashi,15003,66155,1 +98468,Presiding Judge,118889,34505,23 +98469,"Joselo, Héctor's son",63066,1867438,5 +98470,Leonardo,42139,133182,0 +98471,Dick's Student,78177,583276,19 +98472,German Guard - Group Two,24559,78094,17 +98473,Tenar,9795,55751,1 +98474,Principle Gribben,70772,559658,6 +98475,Dr. Johannes Krafft,122435,48338,2 +98476,Raven,55534,133921,8 +98477,Level Louie,41591,90372,7 +98478,,110001,1049365,7 +98479,Sophia Peters,183258,73269,7 +98480,Aziz - Farsan,32497,109281,1 +98481,Rosco,1481,1485220,7 +98482,Nadine MacDougall,80775,31169,3 +98483,Giuditta,238705,97929,3 +98484,Secretary Kishi,352694,1055759,7 +98485,Priti,56901,110850,2 +98486,The Dog,55604,34214,36 +98487,Sarge,271404,84878,5 +98488,Fan San,108665,1576138,9 +98489,Nimr Mashrawi,128154,1089388,1 +98490,Dr. Paul-Émile Gagnon,23857,85169,8 +98491,Marvin Gloat,319396,130768,4 +98492,Demo,6877,51329,4 +98493,Sitting Bull,6935,51490,5 +98494,PC,81182,1476384,11 +98495,Sin LaSalle,4551,5726,3 +98496,Vaudeville Team (uncredited),147722,1574677,33 +98497,Deaundre 'Double D' Davis,11351,69119,2 +98498,Chin Woo,42552,128189,4 +98499,Roby,156547,1294918,7 +98500,police officer of weapon/chemistry storage,269494,1690348,11 +98501,Jamie,157409,39995,0 +98502,Grace Hubbard,67375,89681,7 +98503,Mike Davison,58903,168292,0 +98504,Sophie,27019,3536,3 +98505,Puncher,1721,1008488,7 +98506,Boy Scout Ceremony Attendee (uncredited),48627,148852,18 +98507,,355111,89551,8 +98508,Lacey,182228,1171173,3 +98509,Nicole,107811,131723,3 +98510,Goldie,26376,95301,14 +98511,Tomás Mariño,100270,85557,3 +98512,The Butcher,1690,1172639,15 +98513,Лина,428398,1437936,6 +98514,Gene LaFarge,38460,103503,11 +98515,Hostess,1912,46310,19 +98516,Elisabeth 'Bébé' Donge,63224,236016,9 +98517,Sully Mason,80720,1411498,13 +98518,Sunglasses,42267,1500627,13 +98519,Harry,45227,99282,3 +98520,Vanraj,5319,42803,2 +98521,Daniel Coleman,21208,6860,4 +98522,Polizist,98612,51749,11 +98523,,105703,1366128,5 +98524,Pastor Koskull,82708,580833,17 +98525,Jeanine,188927,1846455,33 +98526,Policeman,38770,12727,17 +98527,Bully,85265,1521413,27 +98528,Monet,73532,28463,6 +98529,Titian,29272,65842,4 +98530,Danny Gunn,17144,74293,6 +98531,George (voice),72962,567732,1 +98532,Geoff Hayward,38920,102603,3 +98533,Karl,44754,30711,15 +98534,Eddie Foy,3087,30278,12 +98535,Fritz Bern,110525,992587,4 +98536,Samson,235260,43547,8 +98537,Herself,350762,1528514,2 +98538,Housemaid (uncredited),184795,1178890,11 +98539,Ogthar (voice),35177,56890,4 +98540,Mr. Barrett,43833,27944,4 +98541,Leonardo,147939,1127744,0 +98542,Teenage Frank,45132,1363393,15 +98543,Sophie,2566,26103,6 +98544,,211233,124285,2 +98545,Queen Jeongsun,315439,1353829,5 +98546,Peuk,136087,1105161,1 +98547,Don Amalio,4497,16311,3 +98548,,13653,1816297,12 +98549,General der Artillerie Helmuth Weidling,613,8802,13 +98550,Kurt Lang,70046,1232114,13 +98551,Dunster,57419,144637,13 +98552,Father O'Hea,38978,231801,12 +98553,Stomper (voice),32202,109074,12 +98554,Quentin Mayers,184710,1570684,2 +98555,Post Woman,203833,1313028,33 +98556,Herself,61487,102,6 +98557,Mrs. Jensen,305932,1883544,14 +98558,Bride,98066,66524,23 +98559,Danny Pink,317182,55465,4 +98560,Miss Margot / Rosemary,138544,14990,1 +98561,Yakuza Boss,3782,20829,24 +98562,Eva,251555,970027,9 +98563,Nick,59006,17306,1 +98564,,63215,1520903,15 +98565,D-Mac,373247,230609,4 +98566,Janek Kosela,74922,107637,2 +98567,Security System Technician,145135,146391,18 +98568,Tom,154537,16861,1 +98569,Leia 'Rya' Einburg,125510,101913,3 +98570,Young-soo,85959,25004,0 +98571,Officer Partner,280617,1522154,18 +98572,Pare,25653,231491,6 +98573,Protokolantka sądowa,155426,1519447,9 +98574,Lord Leo,7096,31196,8 +98575,,148615,5139,20 +98576,,38010,20341,22 +98577,John,4592,58461,18 +98578,Tarzan,76084,129313,0 +98579,Harvey Beckman,72648,40191,0 +98580,Diana Álvarez,436,5898,8 +98581,William Mead,32082,45921,8 +98582,Maggie,4520,82847,3 +98583,,18704,1299249,5 +98584,Boris,37978,84248,2 +98585,Curley Thorne,377170,97007,4 +98586,Prostitute,49500,75710,14 +98587,Lt. Parsons,99863,2673,5 +98588,Jennifer,47342,138624,12 +98589,Joe,371645,1334712,10 +98590,Colleen McKenzie / Girl Clerk #1,246403,576173,6 +98591,Tunde,256969,29223,5 +98592,Sakura,329440,1142145,6 +98593,Navy Chaplain,7445,1240490,21 +98594,Newspaper reporter / photographer,166621,8516,12 +98595,Le bras droit de Labarthe,395767,1187448,8 +98596,Danny - Detective,64928,120734,19 +98597,Margo Cutter,179154,13010,7 +98598,Whitney Horgan,13519,36221,14 +98599,Man Choi,67342,110025,1 +98600,uncredited,162382,10341,6 +98601,Linda Keith,192133,17606,2 +98602,Scientist,19545,1478373,22 +98603,Ilona Ots,46931,137846,6 +98604,Maria,34496,1320565,3 +98605,Derrin Luck,58547,73457,3 +98606,Stephen Strange / Doctor Strange,284053,71580,9 +98607,,49522,61011,10 +98608,Blerim,337758,928301,14 +98609,Olive Brasno,38769,120813,13 +98610,Dancer,285840,1716435,18 +98611,Ceará,7343,575447,4 +98612,Wynzi Krodo,38134,106245,2 +98613,Roland Feldberg,28938,7805,2 +98614,Sydni,10096,1072036,30 +98615,Magic Show Audience Volunteer,228647,569144,30 +98616,NKVD Guard,19996,1764132,28 +98617,Police Lt. Johnson,35921,106506,7 +98618,Banion,114096,12521,6 +98619,,62363,39334,9 +98620,O'Brien,43754,78973,7 +98621,Langer Gruber,8948,1510146,7 +98622,Eli & Masha's Daughter,2001,1781691,19 +98623,Geneviève Bigey,1421,1959,1 +98624,,430985,166514,8 +98625,Newton's Secretary,15163,1864893,18 +98626,Stu,110598,152339,3 +98627,Blancheron,28212,1653,5 +98628,,72375,81821,1 +98629,Mike Teavee,118,1290,5 +98630,Ally,362765,1172695,5 +98631,Blind Man,312669,1662553,13 +98632,Chris Cutter,359471,1169157,6 +98633,Darlene,248706,162542,6 +98634,Python Macklin,151431,939939,6 +98635,Tom Reed,184741,1034004,12 +98636,Bad Boy,13436,1656875,12 +98637,Taxi Driver,10299,40212,12 +98638,Pin-Up Girl,10665,162813,6 +98639,Zelda (voice),70587,15453,19 +98640,,100791,99282,9 +98641,Toddy,184741,179384,8 +98642,Paca/Paquito,140,1610,8 +98643,Mr. Fineal,13185,34720,8 +98644,Margaret,128215,5942,6 +98645,Lawrence,50161,232596,2 +98646,News Stand Operator / Recuring Pedestrian (uncredited),258480,1545526,43 +98647,Vegas Mike,222388,4134,4 +98648,Sgt. Lyle Haugsven,199373,14329,6 +98649,The Flash (voice),300424,19506,7 +98650,Grover,7942,53389,10 +98651,Himself,14286,84382,0 +98652,Thom,93676,928575,14 +98653,Dr. Hess,343173,1473672,15 +98654,Bychkov,83491,1478765,13 +98655,Dolly (as Isa Andersen),44801,128152,5 +98656,Si,42252,15213,7 +98657,Servant,80720,1271205,26 +98658,Joe Bingham,96107,33032,10 +98659,U.S. Soldier (uncredited),297762,15217,95 +98660,Shannon Permatteo,11908,54044,9 +98661,Lord George Gordon Byron,3072,12261,4 +98662,Mattie's sister,48204,90492,3 +98663,Accuretta Worker,38356,1517868,29 +98664,Marek's Friend,158947,1784288,11 +98665,Michele Pantanò,221527,53660,4 +98666,Patty Goodwin,23692,79739,5 +98667,,391757,955264,16 +98668,Mireya Sanchez,15577,8602,5 +98669,Sal Hyman,47561,3265,3 +98670,Jérémie Deprez,319340,146287,0 +98671,Dollie,37311,1069763,11 +98672,Zhu Chong Yi (Father),241639,1016315,2 +98673,Urethane Wheels Guy,9787,59255,14 +98674,Dr. Gary Loh,365942,1439204,17 +98675,Nurse,411741,1351315,14 +98676,Ettore,431244,1746388,6 +98677,Hazel,369885,1651424,37 +98678,Gretchen,16921,84704,11 +98679,School Boy,7555,12793,2 +98680,Officer Michael Deacon,9841,51750,5 +98681,Lester Floyd,4882,1168884,13 +98682,Vincent,38546,32897,3 +98683,une habilleuse,76703,579803,14 +98684,Rachel Ferrier,74,501,1 +98685,Labienus,34469,28848,11 +98686,Marty Schumacher,13280,4443,4 +98687,Amy,97614,1207364,24 +98688,Principal Teagley,228028,15105,9 +98689,Ice Cream Man,44470,15661,0 +98690,Various (voice),110392,10733,5 +98691,Mother Nature,15019,30364,7 +98692,Eddie Hagan,79645,20564,2 +98693,Peter Ulysses Lockwood,193878,4091,0 +98694,Pilar,1418,16974,0 +98695,President,24619,1850004,16 +98696,Rudi,19181,4555,14 +98697,Billy,72251,1003386,6 +98698,Coffee Shop Gawker,91679,1782592,34 +98699,alokas Hakkarainen,55756,89511,1 +98700,Yasmin,31216,574378,7 +98701,Paul,11547,69807,0 +98702,"Blancard, le chef de gare",76642,140357,6 +98703,Faith Lavelle,24810,142607,5 +98704,Man (uncredited),43875,29601,23 +98705,Larry,43473,1433915,8 +98706,Constb. Johnston,3024,29660,9 +98707,Guard Who is Slugged,26376,17759,29 +98708,Jon,270654,1424249,12 +98709,Blair,25736,34470,7 +98710,Lew,25918,4077,7 +98711,The Ripper,75090,523952,10 +98712,,52612,14606,0 +98713,Carsten,38913,121618,0 +98714,Donna,312174,1400594,7 +98715,Le livreur de pizzas,381356,1051672,15 +98716,Sheriff Cinder,66881,549051,0 +98717,Stig Eriksson,39284,122599,1 +98718,Terry Allen,14041,23119,3 +98719,Mandie Gilbert,15671,67600,0 +98720,Lyle Graham,184578,16558,3 +98721,Grandfather,12279,1793,6 +98722,Stomper (voice),32202,109076,14 +98723,Roy,40925,130839,1 +98724,Meth Addict,176124,1637653,12 +98725,Father,50387,53904,3 +98726,Hikokuro Omodaka,14537,10071,18 +98727,Skyler Cooper,76494,131520,4 +98728,Ms. Price,258509,38334,27 +98729,Mathias Moreau,12169,580587,11 +98730,Female Bus Station Attendant,102629,1398507,11 +98731,Maranda,325133,962547,10 +98732,Policial Clemens,42473,157257,19 +98733,Sheriff Baylor,42706,9567,6 +98734,Budderball (voice),70587,216,15 +98735,Jeon,10265,1485087,4 +98736,Reina,325173,1737693,9 +98737,Patrick Lewis,9958,60973,3 +98738,Sarah Thompson,50327,67849,1 +98739,Carol Rice,59738,1205529,23 +98740,Frank,380856,155549,12 +98741,young Tim Drake / Robin,16234,1221555,7 +98742,Love Consultant,170279,1665951,9 +98743,W.H. Rosovitch,362463,1284748,7 +98744,Wasp Mother,287903,1544923,17 +98745,Afgan Bureaucrat,354287,1816343,49 +98746,Andersson,37731,345272,8 +98747,Gus' Mom,222935,146412,12 +98748,Shlomi,35623,110359,8 +98749,Ayrton,227975,1262084,2 +98750,Irolas,122,75256,28 +98751,David,21950,35516,8 +98752,Danny,49833,142853,3 +98753,Wolf,18899,72732,9 +98754,Diana Gordon,176,2139,12 +98755,Himself,76686,1098640,4 +98756,Leavenworth Prison Guard (uncredited),28000,1422390,85 +98757,Erlend,410118,107701,4 +98758,Heckler,61225,20582,21 +98759,Colonel at Court Martial (uncredited),28000,103413,92 +98760,Walter Mancini,54523,22383,0 +98761,Himself,15258,83348,1 +98762,Adriana,142982,30927,1 +98763,Scooters Mom (voice),13956,11782,9 +98764,"Herself, Cameo Appearance (uncredited)",32552,1934,35 +98765,Tiger,338421,1616886,18 +98766,1st Lt. Alfred L. Freiburger,37468,117745,10 +98767,Slater,16331,47879,4 +98768,Superintendent Sedgwick,8669,1196133,10 +98769,Roadie,335970,1718160,66 +98770,Marcel Cerdan,99313,1734771,7 +98771,Ira Levinson,228205,21278,7 +98772,Brian,78461,151079,3 +98773,красотка Нонна,143883,86866,1 +98774,,9528,19901,9 +98775,Ronnie Boyce-Smith,103938,72059,3 +98776,Gavin,39517,107398,4 +98777,Gladys Goodbey,14666,4,2 +98778,Nick Stepanos,198176,101890,6 +98779,Ronald Benjamin,24094,97448,5 +98780,Hector,31880,20190,0 +98781,Table Surfing Student,246655,1796422,74 +98782,2nd Vampire,29129,35249,3 +98783,Housekeeper,366045,1368533,12 +98784,Piper,116973,77160,12 +98785,Anna,371942,1859517,0 +98786,Tony,87952,1073579,3 +98787,Farralon,12594,71913,3 +98788,Mrs. Almayer,87349,13325,3 +98789,Yamata,57011,227617,2 +98790,Artie,43390,130585,8 +98791,Nelec,37686,11315,8 +98792,Dr. Maple,24150,86923,8 +98793,Amy's Father,32540,109333,21 +98794,Ganga,141603,1115095,1 +98795,Mr. Carver,107781,8335,1 +98796,Liz Cloud,46658,55654,1 +98797,Banger,263115,1565060,60 +98798,Patsy Ramsey Auditionee / Herself,430826,1891497,19 +98799,Russian Woman,172474,1158711,1 +98800,Tall Man,310137,1541162,9 +98801,Zeth Arnold,63273,50398,0 +98802,Fru Nilsen,87654,1477355,20 +98803,Ranger,33541,131003,54 +98804,"Русалина, сестра Зобара",50186,560136,2 +98805,Beata,77600,1138905,2 +98806,Ki-Kima,17566,40450,8 +98807,Frau Eder (uncredited),147287,2740,4 +98808,Le lieutenant Maury,258384,2566,2 +98809,une femme de chambre,76703,579802,13 +98810,Sheriff Ed Tom Bell,6977,2176,0 +98811,Paul,49060,133257,8 +98812,Bum Hitman,220820,1206146,8 +98813,Rosy,23966,965232,8 +98814,'Moms' McClenahan,177190,14033,3 +98815,Laura's Psychiatrist,42709,107223,9 +98816,Nicky Whoosiz,183832,1196204,14 +98817,,455043,1028299,8 +98818,Captain Kiddie,22582,37438,4 +98819,Himself - sword master,135313,202711,6 +98820,Lester,102841,12659,15 +98821,Macbeth Child,225728,1774533,11 +98822,Vee,340101,24243,13 +98823,Minor Role,43829,121236,32 +98824,Lieutenant Colonel Howfield,220674,27632,8 +98825,Mitsos,47778,932888,5 +98826,Rick,344906,73620,9 +98827,King Arthur as a Boy,18978,78393,13 +98828,Gwendolyn-Stimme,78694,1492587,1 +98829,Background Break Dancer,10362,1758903,34 +98830,Repo Man,13777,75265,18 +98831,The Chairman,1904,3899,5 +98832,,28746,1326028,8 +98833,Lieutenant Crow,182499,17646,7 +98834,Virginia Gamely,137321,6161,4 +98835,Alice,270650,1359966,32 +98836,Roland Blanchot,10268,64541,2 +98837,Смотрительница музея,46010,47435,7 +98838,Noreen - Corny Collins Council,2976,1752320,43 +98839,Wirtin,64454,1183581,4 +98840,Atilgan Adam 2,361181,1513949,7 +98841,Haydar Arikan,49834,1021444,2 +98842,,83761,1720053,4 +98843,Oskar,174195,120554,11 +98844,Creature (voice),224944,1642134,9 +98845,Inspecteur anglais,39358,18212,9 +98846,Jack,302666,31166,6 +98847,Sridhar,69404,148360,0 +98848,Preacher,43811,948509,26 +98849,Desk Nurse,345922,1407899,23 +98850,Spider Lady,256962,102894,41 +98851,Peanut,274820,1503295,8 +98852,Lawrence Dale (as Edmond MacDonald),51476,85995,2 +98853,Juan,33586,116714,4 +98854,,19812,150802,12 +98855,,107916,1042762,15 +98856,Bunny,261249,30043,3 +98857,Jackie Stadling,27230,97947,2 +98858,First Waitress,340101,1333404,32 +98859,Wanda (voice),159824,28640,9 +98860,Saber - DEVGRU,97630,208296,22 +98861,Charlie,153161,119258,30 +98862,Señora Lolita Martinez,105548,121319,10 +98863,High School Student,38322,1869057,55 +98864,Dylan,290764,21660,4 +98865,Regislândio Lúcio,420703,592680,4 +98866,Oscar,58400,1093683,6 +98867,Kinsey Ray,68193,550521,4 +98868,,235450,1270746,3 +98869,Kimura,3782,145251,5 +98870,Travis Thorne,63988,55267,8 +98871,Sidonie Laborde,99579,121529,1 +98872,Himself,366696,1531660,8 +98873,Librarian,87827,1271652,19 +98874,Murato,402455,145396,3 +98875,Himself,380058,1302478,2 +98876,Max Cogan,34734,33702,2 +98877,Léon Galipeau,62363,24629,5 +98878,Lucía,4497,37506,5 +98879,Cab Driver,49514,118355,14 +98880,Achillas,31561,143579,8 +98881,O'Neill's Partner,13777,75281,35 +98882,Venusian Guard,33472,5961,15 +98883,Mrs. Seth Gale,43806,34184,53 +98884,Policeman,13436,1656896,35 +98885,Lil,27019,1505259,8 +98886,fidanzato di Chiara,120922,1902243,15 +98887,JJ French,10748,11617,23 +98888,Scottie,20583,938390,5 +98889,Duke,170548,105369,0 +98890,Phoebe,4913,32,1 +98891,Prisoner,26376,102071,55 +98892,Aqualike Babe,98369,1512181,8 +98893,Phyllis Lathrop,42298,87699,12 +98894,David Perl,19338,982443,15 +98895,Achille De Bellis,38327,89193,0 +98896,Halloween Dancer,11247,557791,45 +98897,Juan Diaz,74674,495355,2 +98898,Mr. Edward Murdstone,141640,26659,5 +98899,Inès,35025,1639261,10 +98900,Wam (warehouse worker),90616,1692100,32 +98901,Thunderella / Moonbeam (voice),44283,30364,11 +98902,Sia,276401,292214,9 +98903,Gunther Schmidt,12447,38832,0 +98904,Cybil,58467,1234,3 +98905,Prostitute,49712,1885612,32 +98906,Moose,78364,1811,2 +98907,Komorov,2397,24522,7 +98908,Top Buchanan,9042,9779,2 +98909,Narrator (voice) (English version),79596,2922,0 +98910,Hannah,215928,1246972,6 +98911,Blondie,294254,21088,19 +98912,Daisy (as Suzy Marquette),262528,1413586,5 +98913,Mrs. Raymond,121674,1796452,19 +98914,,400610,1331260,6 +98915,Zucker,511,7119,14 +98916,Stand Up Comic,2179,1224999,15 +98917,Gaetano,298722,55912,2 +98918,Prudence (voice),14128,11318,7 +98919,Moshevsky,50374,76019,4 +98920,,105860,123910,3 +98921,Pedro Capelo,373397,560274,3 +98922,,14753,1137395,11 +98923,Deputy Chief John P. Hildebrand,150338,8233,4 +98924,,288694,1356801,5 +98925,Reno Dealer,32044,29368,22 +98926,Konrad,47758,9067,2 +98927,Monica,228108,58114,5 +98928,"Mrs. Mandel, Second Landlady",170234,1009966,5 +98929,Mörður,320736,1136069,2 +98930,Biggz's Mum,59678,1672688,23 +98931,Marcel,79521,4121,16 +98932,Carlos,43001,34679,3 +98933,Don King,184341,38951,7 +98934,Fulgor Sedano,198795,116992,1 +98935,Michael Thompson,89551,1071196,8 +98936,Head of Marriage Tribunal (uncredited),90395,13823,8 +98937,Kyle Dobbs,46368,136154,8 +98938,Old Man (uncredited),52440,123015,40 +98939,,352199,1509237,4 +98940,Matt,11496,69602,2 +98941,Female Reporter,37935,1713947,12 +98942,Boy's Mom,229182,109564,10 +98943,Basketball Player,306952,1511964,20 +98944,Luna,37100,124484,6 +98945,"(segment ""Kurokami"")",30959,552640,5 +98946,Gisela,318781,90764,3 +98947,Rick,34334,2878,0 +98948,Auditionee,2976,1752733,94 +98949,Dr. Pallido,110447,234821,5 +98950,Georgio (uncredited),1726,1004624,64 +98951,Bikini Girl,8457,1586956,37 +98952,First Woman,11161,1133596,8 +98953,Lola,397837,1353825,15 +98954,Hisako Nakamura,135799,134829,5 +98955,Jim Kelly,50669,3467,5 +98956,Frank,68716,4253,8 +98957,Cop,2295,24362,16 +98958,La Montagne,65898,544244,1 +98959,"Superman, alias Clark Kent",126712,45229,0 +98960,Akash,14752,52763,0 +98961,Tschetansapa,130957,1092492,6 +98962,Edward Snowden,326723,1386089,1 +98963,Clothes shop owner,143946,552012,19 +98964,Borrower / Human,40221,77148,10 +98965,Ispettore Questura,356296,1500677,18 +98966,Ursula,168022,1272222,9 +98967,Megan,184345,56824,1 +98968,Bella M. Faulkner,371645,1288797,2 +98969,Priest,319910,1717818,20 +98970,Marsha,101998,1177629,7 +98971,Woman / Police Dispatch (voice),123025,34945,23 +98972,Anne Richards,38783,218223,6 +98973,Daphne,11024,11863,1 +98974,,49522,4573,14 +98975,Cathy,54660,198980,9 +98976,Four Aces,79094,42844,7 +98977,Gary,287281,132756,2 +98978,Beach Girl,96936,1094091,24 +98979,Brothel Punter (uncredited),274857,1656967,47 +98980,Abraracourcix (voice),9385,589521,5 +98981,Vanessa,284296,109561,13 +98982,Pat Monahan,32716,1126501,15 +98983,Carol Williams,238972,62127,4 +98984,Nyûsu no Koe,11838,552517,24 +98985,Rick,60086,79494,1 +98986,Cali,113091,94797,2 +98987,Dysentery,10804,955475,11 +98988,Se Kong/Shih Kung,10275,1342846,5 +98989,Marie,9539,59617,6 +98990,Rusher of Din - Sleeper,36751,81415,21 +98991,The Doctor,317182,12982,1 +98992,Elka,168819,2807,1 +98993,Phil Whittaker,20640,30157,8 +98994,Rose Foley,336775,31507,12 +98995,gäst på partyt,76846,403172,10 +98996,Matthews,32558,30228,4 +98997,Dr. Gruber,15640,1088,8 +98998,Mindy,279096,1059598,6 +98999,Michael Richter,49850,39863,11 +99000,Soldier,58905,1310173,23 +99001,,26430,197315,1 +99002,Business Pedestrian (uncredited),337339,1804421,43 +99003,Madbouli (as H. el Baroudy),47324,1094788,3 +99004,Dr. Melon,191465,940455,7 +99005,Coral,115531,27446,6 +99006,Quentin Tarantino,245906,138,15 +99007,B-36,90395,39801,7 +99008,Fronky (voice),411221,1271600,2 +99009,Lieutenant Carr,27203,34421,5 +99010,Entrenador Selección,254869,1423080,32 +99011,451,19277,185731,3 +99012,Clem,27966,1000083,32 +99013,Antoinette de Montfaucon,3051,1497064,13 +99014,Ollie Denker,46494,98796,0 +99015,Eve,122709,85848,0 +99016,Guest (uncredited),26283,94780,16 +99017,Millicent Jordan,39130,9071,7 +99018,Lieutenant Ames,72638,33022,7 +99019,Dennis,108391,29774,2 +99020,Shannon McManus-Johnson,28535,44151,3 +99021,Himself,157117,60642,1 +99022,Tommaso,335051,146464,1 +99023,Diner Waitress,371446,1560335,12 +99024,Anita Elisabetta,228034,7007,15 +99025,Bruno,61935,82422,2 +99026,Lung,72733,567012,1 +99027,Dr. Margaret Adams,203351,1186520,9 +99028,"Joker, Jr. (laughing boy) / young Tim Drake",16234,34945,8 +99029,Melanippe,96106,46426,3 +99030,Joey Ramone,111479,59231,28 +99031,Phyllis Clavering,140472,120439,2 +99032,Vinny,335970,1167116,52 +99033,Prisoner,113137,61962,7 +99034,,278095,558290,9 +99035,Extremis Soldier,68721,1648160,87 +99036,Herself (voice),378441,1797385,8 +99037,Senior FBI Official,97618,167178,5 +99038,Himself,140554,1707825,15 +99039,Julie,285858,1428445,2 +99040,Mrs. Pryor,32540,109329,17 +99041,Himself - Narrator,200813,86543,0 +99042,Frau Berndle,946,14357,2 +99043,Logan Anderson,63988,181661,7 +99044,Rulle,41493,56397,8 +99045,Shea,40041,14847,7 +99046,Balram Singh,210068,691,2 +99047,Vanessa,52914,132571,1 +99048,Naima,280030,585250,8 +99049,Priamos,81409,33471,20 +99050,Greta Bapadopulos,130948,1183180,9 +99051,Vicar Julian Ainsley,126927,4973,3 +99052,Han Mi-young,21442,127273,3 +99053,Druggist,21070,579419,19 +99054,Mary-Ann,246415,1439315,2 +99055,Rosa Martinez,9030,10768,7 +99056,Boy with Glasses,59962,139618,32 +99057,School Band Member,10748,582381,28 +99058,Jean Bianconi,76609,549333,3 +99059,Guard,262958,1537745,33 +99060,Unsworth,83015,228487,34 +99061,Drug Dealer,7288,1411157,24 +99062,Fem-Alien #2,13836,1673257,44 +99063,Myrtle (uncredited),25953,1079952,14 +99064,Dr. Freeman,296626,2144,2 +99065,Speaker #1 (Beth),222935,1672065,17 +99066,Clayton,27941,1099655,10 +99067,Mrs. Goodwin - 1861,118889,13354,4 +99068,Sacks Bodyguard,98566,1412782,21 +99069,Dr. Rubin,12645,2165,0 +99070,Isa,82481,1127391,26 +99071,,88529,50656,1 +99072,,238307,61470,3 +99073,,142061,127387,22 +99074,Mr. Manchas (voice),269149,75599,28 +99075,Si-Won,264746,1419854,4 +99076,Richie Nix,16164,24045,4 +99077,Rev. Galsworthy,22968,34320,10 +99078,Shanti,34763,1065777,6 +99079,Big Shot,94009,74876,6 +99080,Homesteader Mrs. Foster,183832,34749,25 +99081,"Ken, Cassa 7 Air Controller",154371,3347,9 +99082,Robert Hawking (New Born),266856,1503905,26 +99083,Mr. Traill,64868,69764,1 +99084,Bangor,49762,7863,2 +99085,Sarah,206197,1188567,6 +99086,Homeless Man,216156,220448,7 +99087,Henan Governor,121823,109436,7 +99088,Muriel,68629,92857,1 +99089,zia Lucia,301272,1604290,8 +99090,Additional Voices (voice),82703,106800,46 +99091,Louis,68347,1239516,15 +99092,Himself - a boxer,154019,1187012,1 +99093,David Philips,56809,3292,0 +99094,Blag (voice),9904,9657,16 +99095,Tom McNeal,74395,65921,1 +99096,Alexandre,57307,23943,0 +99097,Patty,54396,104582,10 +99098,Jingle Girl,40633,136119,9 +99099,Benjamin (voice),16366,175511,16 +99100,Dad,123109,1002306,11 +99101,House Agent,80596,38037,54 +99102,George,244268,658,1 +99103,Hunter's Henchman,32716,34890,13 +99104,Leper #1,335778,100258,27 +99105,Boy Prisoner (uncredited),121230,87824,14 +99106,Marcos,228198,114482,12 +99107,,27053,1460963,24 +99108,Luis Arce,80717,590879,4 +99109,Hélder,54384,150516,1 +99110,Patrick,71496,563081,1 +99111,Jeune a la piscine,121539,1759916,10 +99112,Gyorgy Thurzo,8316,227,1 +99113,Laura Pierson,19850,6108,2 +99114,Réceptionniste hôtel Saint-André,1254,51106,9 +99115,Moneybags,49642,26727,8 +99116,Grandpa Cal,44945,1654074,28 +99117,,77185,142502,3 +99118,Keva,27270,173450,8 +99119,Oste,41608,33811,8 +99120,Evelyn Taylor,45627,22137,0 +99121,Meira,285848,1075507,2 +99122,Joe Woods,198600,14574,3 +99123,Eckert,171581,67979,2 +99124,Henri,43878,556945,2 +99125,Chuck,9870,22226,13 +99126,David Maddox,353686,56675,1 +99127,Girlfriend,297853,1790455,32 +99128,Diego (voice),8355,5724,4 +99129,Grizzled Painter,166671,1313,1 +99130,Himself - at Banquet (archive footage) (uncredited),33740,17753,70 +99131,Голос за кадром,46010,1190374,12 +99132,Mala,73600,125724,3 +99133,Minister,213443,233117,7 +99134,Judd Steiner,35921,923,2 +99135,Rosenberg,43935,141226,6 +99136,Frau Sussmann,6443,49742,4 +99137,Donovan,40041,29579,8 +99138,Social Worker,44716,121519,8 +99139,Pawn Shop Guy,4413,59743,31 +99140,Darryl F. Zanuck,337751,43429,10 +99141,Snoop,286657,1353939,4 +99142,Kirchnerwirtin,11122,40525,2 +99143,Eddie Coombes,42448,6840,4 +99144,Jack Jenkins,173638,59081,2 +99145,Dunyana,80410,83423,10 +99146,Paulo Barracuda,132608,1329563,7 +99147,Bethany,156597,1313508,11 +99148,Patty Peterson (voice),82703,41087,12 +99149,Bobby Rose,257450,84792,8 +99150,Paula,219345,55907,5 +99151,Charlotte,48838,116,1 +99152,Mr. Waddell,56154,136895,10 +99153,El Krim,25388,65,3 +99154,Amy Fox,10294,3967,0 +99155,Andrew Walsh,241239,13,2 +99156,Guy #1,72105,1502857,36 +99157,Sgt.-Maj. Roger Boswell,18512,4361,4 +99158,Hester Brandt,134806,156744,4 +99159,Johnny Black,20439,52476,1 +99160,First dissolved sailor,43113,552166,39 +99161,Rick Martin,34623,2090,0 +99162,Jörg Steinbach,177697,45857,8 +99163,Elizabeth Harvey,67748,549320,2 +99164,Callie Bascomb,241574,34624,9 +99165,Colonel Saul Tigh,69315,164114,10 +99166,Dino,97683,1102514,6 +99167,Seymour (voice),65759,4238,7 +99168,Carol Morgan,170234,93895,0 +99169,,338079,126994,5 +99170,Head of Nation,206647,1599256,44 +99171,Major Krishna Rao,58051,52263,5 +99172,,247218,133214,0 +99173,Nia,43923,37153,4 +99174,Dynamites,2976,143244,79 +99175,,34127,1281294,16 +99176,Paul Peterson (voice),82703,58769,5 +99177,Harry Beecham,16659,4783,1 +99178,Auste's Friend,310568,1588824,13 +99179,Mila,25518,35208,0 +99180,Bram,76784,27958,0 +99181,USSE Bridge Crew,188927,1897711,49 +99182,Johnny Vang,15092,590820,8 +99183,Nick,4285,36014,7 +99184,Lizzy,333352,1412941,17 +99185,,330418,1128068,8 +99186,Ashley,353616,1107299,12 +99187,,53688,581341,6 +99188,Special Agent,268920,1749825,46 +99189,Lady Erskine,81110,1033183,8 +99190,Zachary Chase,45211,49895,6 +99191,Captaine Pierre François LaRochelle,69784,10508,1 +99192,Female noble #1,48180,140020,15 +99193,Emma Learner,8954,18050,2 +99194,Stanley Mitchell,219466,1247,1 +99195,Isabelle,84333,53936,5 +99196,Jordan,156981,929585,8 +99197,Rose,370234,1302461,6 +99198,Clip from 1936 version of 'Rose Marie' (archive footage),33740,78847,27 +99199,Türsteher,9803,11258,19 +99200,Colonel,120837,38046,7 +99201,Mordini Ermanno detto 'Batacchio',43548,129594,13 +99202,Saskia,103332,1385329,13 +99203,Becchino,33495,130877,17 +99204,Giant Policeman (uncredited),42825,1670560,12 +99205,Torsten Bage 1983,140554,1707835,28 +99206,Commander Spock,188927,17306,1 +99207,Madre di Andrea,82341,933328,5 +99208,Lisa,53861,4570,0 +99209,Lor Sam Pau,21519,62424,3 +99210,,23289,1045301,13 +99211,Ivan,25646,49877,2 +99212,Tomohiko Ohmie,18722,553425,9 +99213,Henry 'Pop' Hardy,52437,2436,2 +99214,Coach Rowan,342472,15091,5 +99215,Anakora,110261,1489532,5 +99216,Hazel,33923,2790,15 +99217,Brückenwirtin,26891,38992,12 +99218,Violinist,245891,1753271,27 +99219,Shaman Neka,365942,84225,42 +99220,Nobu,1904,18056,8 +99221,Corey,120802,1202966,24 +99222,,25450,19190,9 +99223,,16032,1087004,11 +99224,Fanfarenbläser 2,9803,1308444,22 +99225,Sally,149926,192870,24 +99226,Suor Camilla,107052,27642,24 +99227,Maggie,128311,88677,6 +99228,Canetti,38322,7133,18 +99229,The Jailer,107430,49835,12 +99230,Cop,11421,1802471,6 +99231,Donny,214756,1771,4 +99232,Sparafucile,101342,1625820,8 +99233,Patrick Jay Hurley,25626,1624098,19 +99234,Michele Abbagnano,107052,37583,0 +99235,Lt. Garcia,359105,1076721,6 +99236,Nancy,11610,95788,4 +99237,Jim,359870,1807044,20 +99238,Il capotreno,103218,1862479,12 +99239,Tourist #7,98644,1029124,7 +99240,Bedder,266856,1278494,25 +99241,"Tyrone ""T""",27561,95463,9 +99242,News Reporter,226140,139625,15 +99243,Teruhiko,98631,84755,9 +99244,Mrs. Wakehurst,86643,39035,0 +99245,Himself,123283,36208,5 +99246,Propriétaire de l'immeuble,110160,96592,16 +99247,Doctor Cole,32540,109330,18 +99248,Woman in Pickup,15982,86923,10 +99249,,195544,1138179,23 +99250,Val,18595,150583,6 +99251,Himself (as Diamond Dallas Page),324181,86903,1 +99252,Hans,3104,30420,3 +99253,Emir,28325,38762,7 +99254,Twin #2,9841,59821,7 +99255,Lacy,76163,126502,12 +99256,l'uomo che mostra interesse per Teresa,403450,1357167,19 +99257,Mr. Gentry,40799,89016,3 +99258,Eto,238589,1345254,8 +99259,Holger Palmgren,33613,3855,20 +99260,Pozharnyj,292656,1309694,10 +99261,"Lt. Col. Lewis ""Chesty"" Puller",189197,6573,4 +99262,Poreotics Dancer,243683,1398215,98 +99263,Corpse Bride (voice),3933,1283,1 +99264,Teddy Brown,239566,1457286,57 +99265,Vinnie Davis,35564,2390,1 +99266,Pfarrer Endl,12523,23179,5 +99267,Dockett,50295,92684,1 +99268,Lili Heiser,43868,232026,0 +99269,Scotland Yard Man,21451,27164,9 +99270,Miss Welsh,91583,47392,6 +99271,Marion,131903,613224,3 +99272,Splash,80545,1359547,9 +99273,Ataman,31273,107897,45 +99274,Akela (voice),59803,1048652,5 +99275,Truck Driver,8199,53971,9 +99276,Lucy,340275,1531607,46 +99277,Olivia Lopez,82631,17352,15 +99278,Luisa (adulta),166207,1148666,18 +99279,Pedestrian (uncredited),284052,1265273,46 +99280,Hocker,193756,1283061,41 +99281,Bellu,49712,4292,9 +99282,Policeman 1,59678,29406,7 +99283,Lea Leclerc,290365,234026,5 +99284,Eddie Scott,3291,11154,7 +99285,Monkey D. Garp (voice),176983,126282,26 +99286,Sherkhan,395914,1614742,3 +99287,Yomack,50674,1042812,10 +99288,Lily,18633,87228,2 +99289,Monsignor Saracinesca,70734,1085090,3 +99290,Sally Heron,75595,23625,12 +99291,"Eiji, the progeny",36075,1180044,6 +99292,Alfred Rapp,156356,34758,2 +99293,,1838,1119438,12 +99294,Sparks,90800,1741335,4 +99295,Clara Clemens,120747,114092,8 +99296,Antonio,10362,1758888,18 +99297,Christine Surgère,92257,239232,1 +99298,,60046,132475,6 +99299,Dr. Andrew Merliss,10829,75344,7 +99300,,314285,1478978,9 +99301,Ole Olsen,52859,4165,0 +99302,Keren,35623,931855,1 +99303,Pauli,33774,228205,1 +99304,Mike Hemmings,32904,30433,2 +99305,Maddy,338100,966753,1 +99306,Bowling Alley Employee #2,179826,1404697,31 +99307,Crime Scene Lead Investigator,428687,1564935,15 +99308,Ida,62728,15735,1 +99309,Babyface,440777,1754591,13 +99310,Eugene Gaunt,128270,54738,3 +99311,Soldier's Parent,8988,1742407,74 +99312,Dave,47410,138880,11 +99313,Tom Donnelly,256924,21127,3 +99314,,128237,1107942,4 +99315,Rozanov,51275,90361,7 +99316,,44690,1484157,16 +99317,Baron 1,274857,27172,38 +99318,Young Boris,10918,134891,6 +99319,Native,94182,1673555,25 +99320,Mme. Boin,223655,46098,8 +99321,Claire,50725,1098059,26 +99322,Krista,403330,114588,2 +99323,Jonathan,81600,79450,5 +99324,Don Paolo,73827,134214,4 +99325,Autohändler,308174,1888504,46 +99326,Colonel,47962,1071374,5 +99327,The girls' opening act,88036,458843,1 +99328,Officer Hill,1640,18304,29 +99329,Ken Murray,25807,176543,7 +99330,Mrs. Welland,110540,223051,5 +99331,Robert Kerner,338,3934,6 +99332,Himself,296194,1748,1 +99333,Good News Brophy,94009,66789,4 +99334,,121640,38863,2 +99335,Maggie,312669,45400,0 +99336,Gus,16131,79427,18 +99337,Leonard,34729,1689914,18 +99338,Molie Streb,87826,1395904,11 +99339,Prudence,139176,8522,4 +99340,Dodo Bird,25694,148513,19 +99341,John Edwards,261035,52175,6 +99342,David Fielding,28681,101619,0 +99343,Activities Director,26736,126102,6 +99344,Alessandro Comoli,249457,1398324,11 +99345,Detective Thomas,407448,587438,42 +99346,Reporters' Driver (uncredited),47882,2659,18 +99347,District Attorney,157343,34748,15 +99348,So,18731,83489,3 +99349,,19812,587064,16 +99350,Himself,319073,1205806,3 +99351,Gray,37126,115606,5 +99352,Kate,49847,142949,2 +99353,Tom Green,68750,62869,13 +99354,Charlotte,110160,559581,8 +99355,Gramma,180305,28778,5 +99356,Adriana,12432,34027,7 +99357,Marge Martin,34623,14655,6 +99358,Rudi,42542,1195963,16 +99359,Cleveland Stagehand,26670,95978,11 +99360,Himself,276536,116488,5 +99361,Diane Hirsch,23169,5313,3 +99362,Tony Tony Chopper,176983,73044,5 +99363,Jason Berstone,44754,103,2 +99364,agent Van Meulebeke,35016,1416135,32 +99365,Risa Koizumi,37213,117061,0 +99366,Nancy James,32038,1294261,2 +99367,Old Man (uncredited),14615,1465713,94 +99368,Body of Arial,376579,138860,5 +99369,Tamar,64965,240117,5 +99370,,62363,48417,13 +99371,,293654,1165836,8 +99372,Tyler McAllister,9042,55541,1 +99373,James,332286,21429,3 +99374,Michael Collins,44578,7062,2 +99375,Hot Girl,8457,203801,22 +99376,Morana,246741,89847,17 +99377,Niller,18908,1023,1 +99378,Gary,10761,7472,4 +99379,Miner at Colliery,28421,1181275,30 +99380,Sally Powell,99312,116882,1 +99381,Didier,72465,71490,2 +99382,Dr. Kore,408755,94304,2 +99383,Fausto,39436,128226,7 +99384,Labella (voice),17445,7137,9 +99385,Caiaphas,335778,58501,13 +99386,Pilot,16239,17193,4 +99387,Feral Kid,375366,1886311,20 +99388,Jorpe,136368,1105682,2 +99389,Screamin' Steve Stevens,26326,16168,7 +99390,Kao,64961,53660,8 +99391,Berg,82654,119707,24 +99392,Henderson's Wife,14552,1722533,15 +99393,himself,58081,227391,2 +99394,Mrs. Pennington,33112,102062,5 +99395,Chino Valdez,73984,4960,0 +99396,Koshuke Yanagi,101752,1028522,1 +99397,Teedo,140607,5531,21 +99398,Maisie,27917,39783,4 +99399,Nurse Janet,253283,65421,8 +99400,Charlie Fenton - the Party Drunk,149793,120741,41 +99401,Señora 1ª,52943,1169765,4 +99402,Le lieutenant Le Kerrec,284620,937600,1 +99403,Jin-Soo,224778,61632,2 +99404,Typ,6076,37035,5 +99405,Russian Businessman,98644,1029122,5 +99406,Father Oliver Van Horne,68247,10158,0 +99407,Gerhard von Loeben,1294,20016,6 +99408,Street Passerby (uncredited),284052,1663439,32 +99409,Eric,296025,37203,5 +99410,5 Year Old Anna Greene,227700,1795084,19 +99411,Child (voice),24202,91351,6 +99412,Sergeant Önder,74879,1001779,10 +99413,Burns,140222,205335,5 +99414,Per Månsson,206390,550142,5 +99415,David Yan,220488,134184,1 +99416,Skinhead,18998,1237062,19 +99417,Quentin,226269,1269198,6 +99418,Gayle,240913,22434,4 +99419,Chrissie,215928,1532525,7 +99420,Mr. Higgler,159469,14364,11 +99421,Cera / Longneck,24556,35224,11 +99422,La pharmacienne,51971,145090,13 +99423,Peter,289191,3702,3 +99424,Neal,146373,4688,2 +99425,Carhop,14750,1116544,21 +99426,Bob Fenwick,24801,44184,8 +99427,"Mr. Barker, Night Watchman",290379,100763,15 +99428,Csepege,76714,40620,7 +99429,Mac Somher,209293,17638,9 +99430,Zan,341689,18050,1 +99431,Enrico Caruso,98328,232024,0 +99432,Dark Elf,287903,1544920,13 +99433,Politieman,76059,223972,9 +99434,Gabbo,117531,8630,0 +99435,Clarissa Jones,193435,30529,3 +99436,McInnes,38978,1619134,9 +99437,Cop,50775,29961,7 +99438,Craner,18638,141762,4 +99439,Stryker Aide,2080,1353644,37 +99440,Additional Voice (voice),177572,1077829,38 +99441,Kuma,294651,238498,4 +99442,Judge,23750,127166,23 +99443,"Otsura, Genshun's daughter",46069,1459986,10 +99444,Popcorn,117426,9626,0 +99445,Narrator / Father (First Telecast),23544,4483,9 +99446,Musician,44502,1198065,11 +99447,Bobby Mahon,99859,9045,0 +99448,ADC Bobby,220674,200915,10 +99449,Jeong Eung-sok,36164,938259,6 +99450,,324572,229486,2 +99451,,20186,239265,1 +99452,Son Gohan,39101,90496,4 +99453,Howard Braddock,921,14891,9 +99454,Karo,254007,1304173,4 +99455,,173577,56200,8 +99456,Aegilfu,48791,1735552,20 +99457,Gene,354857,2115,11 +99458,Jornalista 1,448763,1848672,41 +99459,Setu,20507,86254,9 +99460,Stockkeepper,46982,1537645,11 +99461,Gunvor,48791,1220115,9 +99462,,15776,15084,25 +99463,Dan Merrick,2071,13022,0 +99464,Junior,50318,1411811,17 +99465,Jindřiška,15387,1080766,9 +99466,Clara,35404,114289,13 +99467,Jenny Pantelli,206183,84645,4 +99468,Captain,10488,68321,3 +99469,Social Worker,9987,61518,14 +99470,Ratan - Aryan's Secretary,19276,86019,6 +99471,Paul Bennert,11664,18072,0 +99472,Derek,26510,1212181,6 +99473,Jasmin,70807,17548,1 +99474,Lieutenant,1116,205222,59 +99475,Anne Tait,128216,43310,37 +99476,Djibril,266082,581728,8 +99477,Giovanni,26510,95577,7 +99478,Pregnant Woman,246133,1446021,14 +99479,Julie,136386,884406,5 +99480,Driver Bae's wife,346646,463583,16 +99481,Zeus,89481,47652,5 +99482,Coach Pendergrast,405388,168829,5 +99483,Studio Core Member #3,244786,1435768,36 +99484,Brier Tucket,17926,4441,3 +99485,Advisor,62472,1484677,25 +99486,Major Gary Noott,45562,79648,2 +99487,Patrick,271404,118384,12 +99488,Orly Ball,121923,33060,4 +99489,Xavier,12683,12714,6 +99490,Saloon Girl (uncredited),16442,139322,37 +99491,Doctor Betty Ross,14611,87175,5 +99492,Grandma Pearl,98864,1188305,6 +99493,The Wretched,76341,1734185,41 +99494,Elvis Presley,14882,77519,7 +99495,Agent,258193,1099724,9 +99496,Jesse,145135,234479,2 +99497,Hairdresser,356752,1841510,31 +99498,Themselves,29138,930569,1 +99499,,33003,1006064,1 +99500,Father Gable,24921,49877,4 +99501,Nola,10476,343,2 +99502,"Jack ""Weasel"" Hammer",293660,51990,3 +99503,Parson,72856,1194426,3 +99504,Tourist Husband (As Andre-Jaques van der Merwe),5237,1150803,25 +99505,Milo,29101,43719,7 +99506,Andrea Marr,58467,11149,0 +99507,Aunt Fay,55190,152947,1 +99508,Russischer Adjutant,613,1190960,61 +99509,Mr. Black,25132,13548,4 +99510,Jerri Kane Hummer,42267,42174,1 +99511,Pepe,17216,21088,5 +99512,Mackintosh,3513,32357,3 +99513,María Ruiz,321497,1631554,5 +99514,Captain Jack Sparrow,285,85,0 +99515,Second Wife,45899,1301139,8 +99516,Team Leader,112304,210580,8 +99517,Paul Harriman,283686,100,2 +99518,Charles Bingham,15013,5473,7 +99519,Dr. Karel Lamonte,8464,55152,0 +99520,Gorgeton,56589,21171,5 +99521,Max Headroom (voice),257344,40009,68 +99522,Himself,360341,53399,4 +99523,Nurse,16080,117489,6 +99524,Joachim,10500,697,2 +99525,,60813,13681,4 +99526,Susanna Almiraghi,226936,78674,1 +99527,Mary Graves,76681,100602,3 +99528,Nurse Kathy,312221,1746884,39 +99529,Holden Wesson,46729,1522462,6 +99530,Hannah,38684,1221007,4 +99531,Judge,43009,86368,5 +99532,James,312221,99166,6 +99533,Stacie (voice),13004,85431,3 +99534,Jute,17940,82519,1 +99535,Ambassador Sievens,452142,1230621,15 +99536,Hamilton,296288,1839906,13 +99537,Barb,77875,20750,7 +99538,Amparo Novarro,80941,1301101,11 +99539,Mr. Feemster,186869,52043,7 +99540,David Silverman,268321,3037,0 +99541,Patty,48281,124312,9 +99542,Lizzie,79816,112,1 +99543,Bummie,85651,1375272,9 +99544,Woman at Hairdresser #1,35113,17787,10 +99545,Grandma Susan,44945,1737719,29 +99546,Le duc de Dreux-Soubise,11540,16349,4 +99547,Flight Deck Guard,293660,106951,32 +99548,Nicks Mutter,170759,3932,6 +99549,Li Jishen,25626,1624094,13 +99550,Amaro Carabel,117869,965,0 +99551,Child Impostor,77949,1674645,25 +99552,Nana Foster,59962,18998,12 +99553,Kyypakkaus,150208,82857,4 +99554,Marfa Koutiloff,29082,102851,5 +99555,Eddy,89751,33587,0 +99556,Baron,62764,4250,13 +99557,Tesauro,53486,1878968,12 +99558,Burt,24963,103329,4 +99559,Eva,34092,234235,0 +99560,Brandon Crawford,278348,211991,3 +99561,Mrs. Greer,55294,210891,5 +99562,John Wilkins,27450,56101,14 +99563,Denny,69898,557434,11 +99564,Kremlin Guard,146216,1315418,28 +99565,Mrs. Ellen Douglas,13668,10981,5 +99566,Miles,21794,87891,2 +99567,Ya Chao/Iron Fist,64316,1109778,7 +99568,Anamika Kant,33460,110197,3 +99569,Uomo con cane marrone,61217,295908,18 +99570,Himself,26430,1619167,3 +99571,Ben Camelino,77585,59264,0 +99572,Vuk,29101,88808,6 +99573,Nounours,78210,59830,6 +99574,,32158,17125,5 +99575,,254689,127734,10 +99576,Gravesman,137321,1437547,24 +99577,Stall owner with phone,182127,1439708,10 +99578,Prinses Fleur,35639,1037311,7 +99579,Police Commissioner's Daughter,175822,1381955,13 +99580,Lt. Thornton,5753,45358,3 +99581,"Collins, the Steward",17136,81942,8 +99582,Pablo,11799,1840086,14 +99583,Arrested Student (uncredited),2998,3,8 +99584,Rev. Daniel Gros,73194,13361,23 +99585,Pierre Luigi - Photographer,936,105824,12 +99586,The Great Boldini,64928,2494,8 +99587,Reporter,1726,181895,47 +99588,Helmsman,17911,78265,8 +99589,Press Secretary,24963,1551763,11 +99590,Shelby Dykes,16331,16937,5 +99591,Mr. Swanson,149910,63791,28 +99592,,33558,1063191,3 +99593,Scratch,14414,1894774,9 +99594,Kim Hamilton,31984,9878,1 +99595,princ Richard,160106,1078949,4 +99596,Josephine,246741,1211193,11 +99597,Charles Murdock,174925,148820,1 +99598,,404567,98520,1 +99599,Woman of Venus,36530,63139,11 +99600,Arnel,10476,6542,8 +99601,White Slave Boy (uncredited),15092,64227,90 +99602,Ogden 'Oogie' Pringle,96252,125847,6 +99603,Ajay,314389,35070,1 +99604,Red Queen Girl,45522,1436019,13 +99605,Workman / Little Old Lady,9899,60140,13 +99606,Jean,220500,171661,2 +99607,Tavern Owner,104376,1013106,10 +99608,ER Doctor,64807,76021,10 +99609,Henchman Shooting Lucas,32716,1349871,14 +99610,Caral,75101,1523985,3 +99611,Gianni,43989,55915,1 +99612,Tony,30929,107328,5 +99613,Juror,186869,1862894,19 +99614,Theo (Teen),218425,1312173,10 +99615,Vic,2132,1214954,6 +99616,Saunders,67794,3568,4 +99617,Tuveh Ben Meir,169881,26201,12 +99618,Larry,2993,29432,8 +99619,,376716,126864,11 +99620,Soldier Watching Fight,72638,34187,38 +99621,Junior,252916,9114,8 +99622,Shorty,86472,33819,16 +99623,Grbavi,109587,110952,4 +99624,Clea,211179,132487,3 +99625,José,114333,103525,0 +99626,Officer Malloy,98066,22132,16 +99627,Allen,89445,122454,2 +99628,Mick,31700,45042,3 +99629,Suzie,345922,181481,10 +99630,Bahia,278935,92193,3 +99631,Max,61552,17525,1 +99632,The Mayor,62761,42841,0 +99633,"Countess Claire Ledoux, aka Lili",61109,2896,0 +99634,Chris Mitchel,129798,1021529,0 +99635,Khasim,82430,47137,5 +99636,Custodian,137321,145113,28 +99637,,391438,184453,4 +99638,St. Louis fighter,75880,74876,14 +99639,Callie Morgan,18375,20767,0 +99640,Andrzej Bochenek,298040,1375171,3 +99641,Herself,253309,81571,4 +99642,Driver,27549,140077,18 +99643,Black Tiger,2805,134723,0 +99644,Rachel,32932,112375,3 +99645,Fleur,78258,583482,0 +99646,M. Boudart,12089,580228,12 +99647,Ranger Gail,55784,1015795,8 +99648,Brindavoine,11680,39143,4 +99649,George McIntire,129851,1090553,3 +99650,John Brooks (uncredited),28433,15531,10 +99651,Detective Sean Riley,66193,12796,0 +99652,Jonathan Laforest,290365,1323860,2 +99653,Karim,238781,1471456,6 +99654,Skinny Comedian,15414,1365437,17 +99655,Denzil,13802,123790,5 +99656,Elk Cove: Sheriff Earl,10780,123720,18 +99657,Kadhir,24448,91631,0 +99658,Other Man on T.V.,4520,11181,4 +99659,Billings (uncredited),52440,22606,51 +99660,le sexothérapeute,64934,585171,6 +99661,Becky,66193,450660,11 +99662,Interpol Agent Harrington,10610,60542,14 +99663,Gwyneth,301876,41028,3 +99664,,293094,1177496,6 +99665,Michel,258384,1367882,17 +99666,Charlie McFadden,12525,35092,0 +99667,Mr. O'Finlay,30411,55267,12 +99668,Donald,32298,56045,14 +99669,Katherine Warren,312497,19957,20 +99670,Crew Chief (uncredited),44943,9568,53 +99671,Emilio,18120,82700,0 +99672,Donna,144229,19958,7 +99673,Tyler,37665,19211,1 +99674,Glenn Howard,33923,14978,9 +99675,London Policeman,52859,1466134,44 +99676,Joyce Murdoch,63858,101176,3 +99677,Policeman 1,38526,149901,9 +99678,White House Gate Guard,257344,58477,42 +99679,Vince,294254,12834,5 +99680,Dr. Russell,38964,85533,4 +99681,Elia Codogno,10986,67967,0 +99682,Commissioner Gordon,142061,56930,2 +99683,Rico,84249,1534586,4 +99684,,307696,63364,3 +99685,Madame Herbillon,258384,1083440,7 +99686,Aadam Aziz,121598,78922,3 +99687,Carmen,44246,132446,11 +99688,Max,131689,127725,0 +99689,Piao / Bill,42120,1138759,11 +99690,The Mother,9841,5131,3 +99691,Joseph Felton,62033,117637,10 +99692,Annie,203819,1312450,8 +99693,Future Scientist,2267,56015,14 +99694,Axe Gang Advisor,9470,1136808,10 +99695,Bit Part,108222,1671176,50 +99696,Suraj,90634,42802,1 +99697,Enrico Oliveri / Giovanni Ernani,167221,72782,0 +99698,Rain,61950,157817,8 +99699,Mayor,52847,48064,7 +99700,Walter Kane,47115,67913,4 +99701,Caroline,240832,124644,6 +99702,Dude #2,193893,1381651,48 +99703,Alberto,58074,71140,5 +99704,Himself (archive footage),63144,150882,39 +99705,Sean,243683,932091,0 +99706,Miss Viola (voice),9836,45586,8 +99707,Lin,31880,1084891,9 +99708,,44436,130846,5 +99709,Russian Officer,43009,35189,6 +99710,Sunday,13836,30882,30 +99711,Martin (voice),270886,1562330,6 +99712,Tom the Mailman,360284,154720,8 +99713,Morris Gershwin,43491,31977,6 +99714,Mordaunt,64044,128304,4 +99715,Sra. Reynosa,37609,26287,14 +99716,Security Guard,2179,61110,11 +99717,Planchet,41609,4966,9 +99718,Jenny,207178,119245,3 +99719,Himself,266782,59258,4 +99720,Detective Park Eun-joo,38000,1246931,2 +99721,Hotel Manager,127812,120741,41 +99722,Woman of the Night,2080,148428,41 +99723,Diego Santini,53805,125701,0 +99724,Oilman at Producers' Convention,55604,1284767,62 +99725,Anna Holm,27622,31550,0 +99726,Yang Kaihui,69310,568304,9 +99727,Michael Jennings,9624,3895,1 +99728,Elle,408509,586757,0 +99729,Mrs. Bernburg,41505,4432,3 +99730,Paul Collins,36612,33022,1 +99731,Bot,283995,1688645,38 +99732,Board Member,153161,981096,45 +99733,Aleta Ogord,283995,1620,29 +99734,,244956,228527,4 +99735,Zucko,239563,18288,5 +99736,Thomas Wayne (voice),123025,34934,27 +99737,Dr. Midland,62761,167632,2 +99738,Gina,7088,80109,5 +99739,,422005,93004,6 +99740,Simon,7234,52123,1 +99741,Elvis,7445,1862747,20 +99742,Hatako,352694,1401338,6 +99743,Jagoda,11373,15268,0 +99744,Edward the Birthday Dad (voice),153518,500427,10 +99745,,353641,53509,2 +99746,Robert,285858,1428448,11 +99747,Agente 1,79779,973407,1 +99748,,376934,1561601,9 +99749,Col. Ostrovsky,17657,131067,6 +99750,Forensic,31022,935934,0 +99751,FEMA Bunker Nurse,20674,174893,16 +99752,Masha Nikolaevna,96724,87297,19 +99753,Tournament Referee,9472,987739,14 +99754,Aist,51276,143674,1 +99755,Additional Voice (voice),177572,1114051,31 +99756,,49522,1221004,13 +99757,,250029,1333569,2 +99758,Jumbo,14765,52348,5 +99759,Voice of The Incredible Hulk / Security Guard,1724,19137,8 +99760,Yves-Marie,55424,35968,0 +99761,Starlet (uncredited),2567,1577405,61 +99762,Joe Lo Monaco,46448,41220,7 +99763,Lee's Ferry Ranger,5915,928577,14 +99764,Salon Customer,13058,1589713,42 +99765,Rob,355890,164431,4 +99766,Expedit,24647,6004,15 +99767,Police Captain Parker,9828,56930,11 +99768,Manager I,6183,48512,18 +99769,Grant Taylor,18925,78040,1 +99770,,383064,1195317,10 +99771,Rudy henchman,39979,1091540,16 +99772,,245017,1418649,2 +99773,Office Cubicle Worker,320588,1538575,22 +99774,Jester,91333,102742,9 +99775,Charlie Williams,238972,59570,3 +99776,Recepcjonista,314371,1583945,20 +99777,Manny,4953,6070,5 +99778,Reporter,32694,11669,16 +99779,Dave Brewster,115054,2645,1 +99780,William Russell,37315,4958,0 +99781,Farhad's Wife,286532,1382739,17 +99782,Leila,7483,765,2 +99783,Young Suit #2,228970,1495086,38 +99784,cameriera tedesca,48805,1004839,25 +99785,Takezo Shiino aka Shiitake,87296,97204,7 +99786,Billy Joe Ashley,92307,109086,1 +99787,Healer Skye,72710,946356,31 +99788,Yajirobe,39103,65510,5 +99789,Schäfer's Sprinter #2,318781,1694296,19 +99790,Smith,15414,8537,15 +99791,Uriah,66741,121609,5 +99792,The Pope,98369,74136,3 +99793,Hayden,220820,2055,4 +99794,Toola (voice),14945,104522,1 +99795,Stefanie Younger,67696,229690,2 +99796,Dr. Woodleigh,21927,10881,1 +99797,Jimmy,9812,101257,11 +99798,Narrator (Voice),74,192,7 +99799,Hodr,55435,1221114,4 +99800,Senator Kassebaum,132363,109568,26 +99801,George,311291,1230626,4 +99802,Romero,90616,1692064,6 +99803,Colonel Weaver,128866,1088059,7 +99804,Billy,76163,96066,8 +99805,Staten Island Oli,271718,426216,26 +99806,,66897,150722,10 +99807,,148347,559985,5 +99808,,418378,1200479,4 +99809,Miss Spinney,32558,97777,2 +99810,Associate Judge,27622,33007,15 +99811,,147287,1125710,3 +99812,Ken,12707,62036,5 +99813,Richard Roth,28730,184581,13 +99814,Kata Kolar,259728,133022,8 +99815,Overlæge,56858,186052,16 +99816,María José's Mother,130457,54155,4 +99817,Tyler Farrell,226167,572724,4 +99818,Dr. Eric Orloff,29832,59841,1 +99819,Kitty Goode-Burroughs,352719,7643,5 +99820,"Romagna, Rescue Coordinator",8063,18340,4 +99821,Lukas,12696,11610,2 +99822,Father,278867,549372,3 +99823,Lt. Grogan,14262,76506,15 +99824,Young Man of Jelly Shop,14525,560192,8 +99825,Coach Jones,13920,228,1 +99826,Jeff,244534,40863,4 +99827,John Demonte,341420,1478684,4 +99828,Gilles Lellouche,382589,54291,2 +99829,Alice (Czech),18917,83876,0 +99830,Officer Stan,111479,9289,45 +99831,Suzie,54396,1271250,11 +99832,Matt,364690,1260716,6 +99833,Dr. Qinn Baker,203351,1186516,6 +99834,Walter O'Malley,132328,33060,3 +99835,Père Mou - Langis,26566,574831,10 +99836,Maddalena,31542,1757137,19 +99837,Wendy,24273,11149,3 +99838,Natasha,280840,1749484,6 +99839,Frosya Burlakova,63291,236821,0 +99840,Sam Parker,334074,32597,2 +99841,Marv / Smithy / Mars / Organizer / Mr. Lanyon,315855,145601,2 +99842,Asgardian,284053,1690239,16 +99843,Wendell Goddard,84727,2628,1 +99844,Gitano,92796,30719,3 +99845,Detective O'Connor,4413,6579,15 +99846,Soldier on Grenade,19996,1764130,25 +99847,WWI Soldier (uncredited),297762,1824291,80 +99848,Lyuda's mother,65545,238525,6 +99849,Sapru,347807,1662294,14 +99850,,205349,544552,8 +99851,Marge the Flower Lady,107250,83024,20 +99852,Domino,270015,19181,1 +99853,Joseph Goebbels,102155,29142,3 +99854,John Wangle,72096,2394,9 +99855,Linda Van Dam,298396,73382,2 +99856,Valkyrie Sister,284053,1527566,14 +99857,Robert Tracey,80316,3151,1 +99858,Lila (voice),126319,1257861,22 +99859,Bearded Teenager,40983,111383,10 +99860,Wendy,418969,221843,7 +99861,Detective Butler,63273,1056735,9 +99862,Chernobyl Engineer,319092,1890106,8 +99863,Archbishop of New York,17669,113895,13 +99864,Emperor Tuan Zheng Ming,66759,239079,6 +99865,Dick,200727,1734962,15 +99866,Pierre,52847,100918,4 +99867,,356486,1288787,4 +99868,Makar,143380,240536,8 +99869,13th Young Master,10257,64434,1 +99870,Court Stenographer - Yeoman 1st Class (uncredited),10178,104630,27 +99871,Richard Glasgow,93313,20501,1 +99872,Selena's father,125521,40451,4 +99873,Mrs. MacKenzie,15081,39028,4 +99874,Security Guard,17725,1828514,25 +99875,Fat Man,255160,1898231,15 +99876,Greg,107985,237162,32 +99877,Additional Voice (voice),16866,127153,15 +99878,King Augustin,16999,16743,3 +99879,,202984,1185281,10 +99880,Wies - Ambulance Orderly Thug [Ch. 4],170936,1071284,12 +99881,Vibora,41115,125503,11 +99882,Liu,50108,1089584,0 +99883,Carbone,170517,240772,27 +99884,Youngie,300667,77090,8 +99885,Himself (uncredited),13092,17835,18 +99886,Randi Jammer,246011,4038,0 +99887,Gweneth Feynman,177203,12656,2 +99888,Grateful Dead Fan Musicians,228970,1495095,52 +99889,Hidenari Terasaki,119926,4995,1 +99890,Fighter,13544,566094,1 +99891,Martha,55152,1029480,17 +99892,Josh Minnell,57683,1244,2 +99893,The Waitress,76533,579284,6 +99894,Beth Allen,77664,157904,9 +99895,Brownlee,38027,41243,9 +99896,Tony,228034,3197,6 +99897,Alwina,56344,45749,5 +99898,Megan,87293,93379,15 +99899,Mary's Mother,3061,29990,5 +99900,Betty,403570,110421,3 +99901,Susan Courtney,49502,30226,2 +99902,Isabella,9843,59863,9 +99903,Tom,85435,7058,3 +99904,Mayor Deebs,11584,20753,5 +99905,Эрик,76746,235993,1 +99906,Kitty,43157,218442,1 +99907,Ophelia James,50161,232595,1 +99908,L'Indien,336811,32512,6 +99909,Buford 'Doc' Thorpe,75315,30512,4 +99910,Mo,64316,118745,6 +99911,Sam Daniels,23853,83362,7 +99912,Mordred,7096,173666,13 +99913,"Bellboy, barber",45838,89602,0 +99914,Whitney 'The Imp' Parker,26533,30260,4 +99915,Max Roy,19166,12982,3 +99916,Extremis Soldier,68721,1700563,96 +99917,un paziente della clinica,43211,1885529,23 +99918,Mr. Preston,61581,102101,1 +99919,maisteri Ojasto,62775,124285,2 +99920,Dash,369052,134673,2 +99921,Young Finlay,127560,589650,10 +99922,Bishop,71147,1519928,8 +99923,,239534,1255131,4 +99924,Troger,82598,939596,12 +99925,Quish,37420,64236,6 +99926,Anne Lombardo,96132,230671,6 +99927,Lily Watkins,44902,14500,1 +99928,Beauty doctor,48145,564050,13 +99929,Mary,267935,15556,2 +99930,Ayoub,50329,148029,19 +99931,,52323,5694,3 +99932,Julia Steffens,15640,19910,1 +99933,O’Connor,424488,1458146,44 +99934,,91067,939112,0 +99935,Lovell Milo,101852,151263,0 +99936,Banquet Guest,274479,1542696,14 +99937,Principal Whitcliff,9785,27111,15 +99938,Vadie,47638,1727864,5 +99939,,56666,1064196,4 +99940,Himself,200655,1786140,1 +99941,Jan,76097,54676,5 +99942,Attendant service-station,286545,1352657,9 +99943,César,186971,10256,8 +99944,Draughtsman,47404,43849,30 +99945,Dr. Elmwood,27443,34211,14 +99946,Peake,18977,135197,9 +99947,Himself,216989,82994,0 +99948,Superintendent,17082,123195,17 +99949,Barbara Pilgrim,24559,91964,5 +99950,Giannis,47110,123049,0 +99951,Karen Prescott,253273,232941,2 +99952,"Fred, an American soldier",8429,54940,12 +99953,Sebastian,125619,1293069,7 +99954,Etsurô Yoshida - Writer,52302,33763,5 +99955,Kilowog (voice),17445,147,2 +99956,Scottish Recruiting Sergeant (uncredited),43889,32192,17 +99957,Charles Ingvar 'Sickan' Jönsson,57548,1264351,6 +99958,Officer Dunn,102629,105834,15 +99959,Lot McGuire,105059,15013,2 +99960,Burke Ramsey Auditionee / Himself,430826,1891539,48 +99961,Susan,116894,2630,0 +99962,Homeless Person,90616,1692082,17 +99963,Police Interpreter,71140,560302,11 +99964,Richard Donovan,29117,8632,6 +99965,Regina,78383,63231,6 +99966,Liza Tulina,64268,238528,2 +99967,Sgt. Nathaniel Rutherford,139826,156321,10 +99968,Duncan,9779,11832,24 +99969,Ruby,77930,1237404,19 +99970,Francois Moraneu - CIV Engineer Team,17654,240024,7 +99971,Herself - at Banquet (archive footage) (uncredited),33740,19413,99 +99972,Alonzo Scolara,17258,1037,4 +99973,Billie,244801,1280060,0 +99974,Lt. Cmdr. Wilbur F. Vandewater,43752,95313,2 +99975,Libby's Mum,7942,220167,26 +99976,Police Sgt. Boyle,54139,100945,12 +99977,Freddie Arrow,83191,207003,14 +99978,Peppe,62036,12259,0 +99979,Fabbro,38285,1339106,7 +99980,Whit Harrington,47540,86919,4 +99981,König,13305,22929,11 +99982,Le concierge,27053,40969,4 +99983,Hotel Desk Clerk,42062,25176,11 +99984,Young Businessman (uncredited),244539,1508829,26 +99985,Ellen,81616,77191,3 +99986,Uncle Gilbert,25694,100769,5 +99987,Kira,16014,1185,14 +99988,William 'Bill' Wade,170234,19406,1 +99989,Commander Deng,311324,1376106,9 +99990,Henry Krasker,92809,1338402,1 +99991,Train,16455,7400,6 +99992,Clerk,145668,104892,6 +99993,Idun,7237,52142,3 +99994,Female Bartender,82,73753,18 +99995,,37055,1371492,6 +99996,Pete Fargo,60547,94293,7 +99997,Jim's Campaign Manager (uncredited),28564,13823,16 +99998,Mary / Miriam,104430,14515,1 +99999,Himself,376502,1712416,1 +100000,Eddie Rodney Fleming,19846,1331,0 +100001,1st Man in Bar,23750,195206,24 +100002,Nanny,13823,75772,9 +100003,Lady Barnet,42242,132358,16 +100004,Rod,82395,43311,2 +100005,PR Woman,13092,74158,7 +100006,Hostess,142402,943309,18 +100007,Lacee,179812,1162330,9 +100008,Brooklyn,320588,482044,2 +100009,George Plimpton,86284,21278,0 +100010,,44458,1089570,6 +100011,François,181456,27516,1 +100012,Felix Hartung,58166,105775,7 +100013,Babs (voice),130925,225986,15 +100014,Arthur Bridges,86608,2776,6 +100015,Herself,320589,1392605,10 +100016,Mrs. Hannah Jessop,114348,118265,0 +100017,Sarah,10055,62589,7 +100018,Middle Peggy,339419,1650195,27 +100019,Mrs. Benson - Tommy's Mother,153162,31770,23 +100020,Catherine,86131,82630,2 +100021,Councilor Yoshimitsu Hitotsugi,60160,67091,5 +100022,Chef de cabine,277839,582044,10 +100023,Busu,121998,225011,2 +100024,R.D. Muir (as Sir Donald Wolfit),106020,14372,3 +100025,Clarissa Van Steed,46563,8232,9 +100026,Pierson,174278,78773,5 +100027,Ridge,274479,215890,22 +100028,Chris Malone,108789,18966,2 +100029,Rafael,73348,16004,10 +100030,Sir John,87060,47680,22 +100031,Bobby,16921,84699,5 +100032,Red,156603,93623,5 +100033,M. Bressoul,64437,544197,11 +100034,Frank,195796,64618,3 +100035,,200117,21229,7 +100036,Jack Lira,10139,8688,4 +100037,Gilles Tisserand,76821,34581,1 +100038,Meg,314065,11616,1 +100039,Bad Bill (voice),44896,5538,8 +100040,Pappu,20359,35756,7 +100041,Joey D'Amico,354832,138009,1 +100042,Stig,20160,108471,2 +100043,Kai,178809,1212960,14 +100044,Angélica de Alquézar,13495,3623,1 +100045,Yax (voice),269149,63208,11 +100046,Big Tim,173638,974,7 +100047,Tim O'Bannion,37462,45291,1 +100048,In-seok,94555,63446,4 +100049,Amantha's father,37311,34084,10 +100050,Background actor,52454,1630315,47 +100051,Mrs. Jensen,9935,43757,0 +100052,Stephen,49950,55086,2 +100053,John Ridgefield,51619,12689,0 +100054,Tisha Doughty,49815,87685,3 +100055,"Valerie, die Pianistin",5511,43815,3 +100056,Army Driver (uncredited),105981,975692,8 +100057,Young Ptolemy,1966,1650963,12 +100058,Goth girl #2,218784,1387392,20 +100059,Detective Rogers,51250,1736,6 +100060,Shakespeare Auditionee,106136,1039680,9 +100061,Angela,8282,54324,5 +100062,Bhadram,63414,586627,7 +100063,Salman,382155,1636694,25 +100064,Hanna,248710,1313784,1 +100065,Ah Hai (North Block),17467,68648,3 +100066,Himself,63144,66823,33 +100067,Mrs Crick,101915,107710,18 +100068,Drag Fan,1481,1844345,39 +100069,Himself,97724,1388686,36 +100070,Vivian Løkkeberg,33407,1310711,5 +100071,Feed Store Manager,41591,55701,11 +100072,Purser,10488,985532,4 +100073,Ten,43967,114913,3 +100074,Cody,11577,3339,32 +100075,Charlie's Wife,280617,1522149,12 +100076,Newsreader,86828,58034,13 +100077,Deputy #2,354979,1636767,17 +100078,,315467,8655,6 +100079,Plain Maid,156711,1349729,22 +100080,Móri,268618,42673,2 +100081,Burt,5748,4596,1 +100082,Old Man,172847,20906,4 +100083,Himself,21449,86390,3 +100084,Las Vegas Plainclothes Officer,96936,1697190,27 +100085,Birthday Wellwisher,193899,30779,4 +100086,Vanessa collège,255913,1714037,12 +100087,Concert Attendee,5123,1639432,45 +100088,Han Chung,107891,1042681,9 +100089,,60813,1307990,3 +100090,Učitelka,15387,97193,14 +100091,Diana,4641,38711,9 +100092,O-mocha,74581,33761,0 +100093,Showgirl,72096,1139757,53 +100094,Robert,426253,49735,2 +100095,Quincineara Guest,268920,1560336,49 +100096,Det. J.J. 'Red' Thornton,150338,37712,12 +100097,unknown,6636,50932,5 +100098,Sumner Tainter,292033,196780,4 +100099,Himself,159142,1140582,0 +100100,,253192,400340,7 +100101,Nurse,96702,2934,12 +100102,Sara,10096,1622591,34 +100103,Jura,25667,94065,3 +100104,Callum,341077,1047649,3 +100105,Sergey,38325,590133,1 +100106,Nancy / Amanda Cartwright,293970,50463,1 +100107,,21138,1113301,14 +100108,Mergen,103539,1556839,4 +100109,João,469172,1170198,12 +100110,Lax,138977,4886,0 +100111,Cadet Stepan Lebedev,26873,96510,1 +100112,Vera (voice),24238,92732,5 +100113,Jeremy,88005,80595,16 +100114,Dr Jones,45326,42325,6 +100115,Mandha,49028,85684,7 +100116,Diane,4380,36813,13 +100117,Staff Sergeant Donovan,263855,59254,3 +100118,Middle-Aged Woman,369033,1647315,19 +100119,Chimp,34127,30005,5 +100120,Robert Griffin,28425,100768,0 +100121,Himself,377151,1630876,7 +100122,Herr Joab Oxenrider (uncredited),112284,244289,22 +100123,Mr. Watson,17046,81267,5 +100124,Carson,13836,64805,9 +100125,Peter Ibbetson,57412,4068,0 +100126,Rick Penny,31605,65019,5 +100127,Phil,80168,113513,8 +100128,Hugo,14126,81135,5 +100129,"Masao, as a teenager",112244,33734,7 +100130,,20493,85972,4 +100131,Chivo's Girlfriend,17317,1232370,20 +100132,Carla,35908,95041,2 +100133,Wagstaff's Receptionist (uncredited),13912,99827,9 +100134,Matt,147132,5009,2 +100135,Katie (12 yrs),200727,1154760,10 +100136,Tammy,48852,45480,11 +100137,Major General Ruben Lagus,49322,124284,6 +100138,Derek,284537,1219590,18 +100139,,79580,587513,7 +100140,Drake Davison,83899,40863,4 +100141,Maj. Kreuger,24971,5814,4 +100142,,121530,1434388,16 +100143,'Algy' Longworth,74314,3364,3 +100144,Mary / Mrs. Hatch,182499,57166,1 +100145,Cotton's Parrot (voice),58,21700,32 +100146,Pop Fry,105981,1420993,6 +100147,Johnie Ruby,50318,8654,2 +100148,Dan,11321,12834,6 +100149,Chorus Girl,40633,1859762,12 +100150,Policeman,13436,1656897,36 +100151,Nalle,5206,6125,4 +100152,Ivanone,48254,1664126,4 +100153,Lori,268174,6172,12 +100154,Oblio's Father / Pointed Man's Right Head / King / Leaf Man / Villagers (voice),23544,16417,1 +100155,Apostolo 2,371942,1859518,8 +100156,Azaka,14829,142704,11 +100157,Winston,308,2954,5 +100158,Ikuya Ogura (voice),357390,1251014,5 +100159,Additional Voice (voice),10193,7960,39 +100160,Mrs. Latimer,48207,96180,13 +100161,,86040,239989,1 +100162,Natasha (as M. Neyolova),83614,99264,1 +100163,Josephine,104556,30214,2 +100164,Jose Morro,33673,11031,9 +100165,Julie Hempel,98536,588989,4 +100166,Chairman of the National Gallery,10748,27631,26 +100167,Vasya,31162,1397303,16 +100168,Christoffer,16017,1019,0 +100169,Mrs. Fitzherbert,41996,88895,9 +100170,,48210,18850,7 +100171,Jace,202941,8255,3 +100172,Sara,123359,1102263,4 +100173,Tristan,177085,154529,4 +100174,Military Officer #2,318781,1694303,30 +100175,Carmen,156547,586953,4 +100176,Enrique,211,10242,7 +100177,Lt. Col. Frank Groom,354287,1299719,38 +100178,Majláth gróf,86732,16241,14 +100179,Jessica,356482,1870618,9 +100180,Victor,343934,61110,15 +100181,Aunt Cecile,74689,980739,4 +100182,Helena,114438,53846,5 +100183,Himself,414749,1427948,4 +100184,Patti Robinson,43395,82405,0 +100185,,414827,1592122,8 +100186,Jacques,68347,103870,12 +100187,Pascual,29952,1038486,8 +100188,Le président Novalès,19548,2568,6 +100189,Eleanor (voice),258509,53862,9 +100190,Willie,37462,73980,8 +100191,Agent Downing,59962,60601,22 +100192,Dean Sebastian,12540,25711,2 +100193,Gun Store Owner,1640,10489,36 +100194,Él (uncredited),101838,589004,35 +100195,Train Porter,43812,120793,38 +100196,Renegade Worker,91679,1782601,40 +100197,Silvio,32091,108832,10 +100198,Robert Bryson,10921,6972,5 +100199,Phil Grenville,35564,44691,5 +100200,James Brown,64868,8841,0 +100201,Bishop John Beiler,74549,117309,8 +100202,Rick,14145,145536,5 +100203,Judy Greene,109258,70492,1 +100204,Gilles,129966,221633,6 +100205,Sally,105059,157234,7 +100206,Himself,64972,65236,10 +100207,"Toresen, mekaniker",87654,227282,4 +100208,Sheriff,26514,95598,3 +100209,Captain Portage (uncredited),52440,153688,33 +100210,Max Ponchielli,82080,120108,11 +100211,Herself,276120,12929,2 +100212,Agent Hammond,2503,1280232,21 +100213,Kyle,107781,12714,3 +100214,Monica Strong,37581,1548,3 +100215,Rayt Marius,463906,3491,6 +100216,Casim Khan,1404,16900,0 +100217,Inspector,69060,1506426,14 +100218,,458428,1820241,5 +100219,Alfred Hatzinger,24140,47166,1 +100220,Jonathan,17630,79550,7 +100221,Max Bialystock,9899,78729,19 +100222,Despalin,58309,17500,5 +100223,Feeney,28425,2782,10 +100224,Miguel,18082,937506,9 +100225,Posse Member,96133,1086949,16 +100226,Satin,144111,29814,3 +100227,Aigin's Mother,2172,110107,11 +100228,Sheila Cabot,39779,29623,0 +100229,Desk Clerk,413232,34818,40 +100230,Julinka,314635,1630508,8 +100231,British POW Officer,227306,1394452,52 +100232,"Okamura, Aya",222715,85976,0 +100233,Driver / Pedestrian (uncredited),339403,1635147,49 +100234,Cheon-ji,257331,1128106,2 +100235,U.S. Marine (uncredited),44943,1205894,48 +100236,Young Husband,145135,1393313,20 +100237,,254420,87297,2 +100238,Reporter,19545,1185638,23 +100239,Cima,53805,229272,9 +100240,S.H.O. Singh,14159,86022,13 +100241,Eli Bodyguard,2001,1745908,58 +100242,Paul Kilton,14147,1759086,10 +100243,vanginvartija,442752,1761831,21 +100244,Javier,131932,1093950,0 +100245,Margie Rhinelander,76714,10412,4 +100246,Sweater,59965,109667,27 +100247,Andrew Carson,71885,59016,3 +100248,Farmhand,120657,97398,12 +100249,Counselor,35626,117260,15 +100250,,51549,556787,14 +100251,Noel Lord,49762,9626,1 +100252,Preacher,329865,1752167,36 +100253,Richard,346838,115671,1 +100254,Shukla,314389,6217,3 +100255,Jack,18072,3554,6 +100256,Abner,339408,1622088,28 +100257,"Nurse Parker (segment 1 ""Enoch"")",41035,153185,13 +100258,Willfried,308671,32254,6 +100259,Nude Model,30361,102607,20 +100260,Hiroshi,70327,1059870,0 +100261,Judge Harkin,11329,14888,4 +100262,Narrator (Voice),32085,1905,0 +100263,Countess Valentine,31532,13577,4 +100264,Talia,112130,211596,1 +100265,Sheriff Dennis,345069,146339,6 +100266,Lancelot (voice),810,17697,10 +100267,Dr. Dick Adams,50875,77023,14 +100268,MacDonald Earl of Dunbrea,142150,15888,9 +100269,Geeky Student,32395,1340889,17 +100270,Princess Celestia,201676,74370,5 +100271,Woman on Street,43806,1551007,36 +100272,Jack,108822,20674,2 +100273,Madame Sin,55032,3380,0 +100274,Walker,105528,179973,12 +100275,Mehdi,99698,1188416,0 +100276,Dr. Owens,27840,99127,8 +100277,Aelfred,48791,1422586,13 +100278,Army Captain Robert Z. Storm,228647,144395,44 +100279,Actor Famoso,18082,1193969,10 +100280,Herself - Model,327083,57121,17 +100281,Swat Team Leader,102382,1634923,27 +100282,Hanshiro Tsugumo,14537,70131,0 +100283,Tata Martine,59163,7282,4 +100284,High Roller,153795,1134660,8 +100285,Remmy,440777,1754595,19 +100286,Eden,411741,1782180,12 +100287,Samon,84508,125010,8 +100288,Sam Harper,50549,30211,4 +100289,Seaman Johnny Miller,257081,17663,9 +100290,Prue,242224,1277196,4 +100291,Emma,86305,239464,2 +100292,Harry,272426,37035,4 +100293,Narusawa Bartender,329440,1386137,16 +100294,Hugh Ellyn,245168,1250809,17 +100295,Daphne Blake / Shannon Blake,12902,15761,3 +100296,Deputy,157847,1765436,13 +100297,Donnie,94568,1002566,9 +100298,Mr. Tracy,213755,1751950,13 +100299,Nikki Mitchell,29424,103820,3 +100300,George,86168,5250,2 +100301,Italian Gendarme at the 'Maria Ann',257081,1331770,35 +100302,Pat,24554,16896,9 +100303,,142656,1441643,7 +100304,Priest,28090,1719886,29 +100305,Merete,171648,1783155,6 +100306,Shana,32139,63470,6 +100307,Roxie Hart,57684,30003,0 +100308,Börje,217038,89504,3 +100309,Danina devojka 3,57419,1668702,24 +100310,Carol Cohen,10362,124877,14 +100311,Robin Hood,115972,32128,0 +100312,Anna O'Rourke Dangos,118059,87749,1 +100313,Actor,333354,27031,2 +100314,Elvis,33273,6534,18 +100315,Plain Maid,156711,1349730,23 +100316,Sergeant Louisa Morely,15616,2535,1 +100317,Heather Perez,24801,84224,5 +100318,Jenkins's Secretary (uncredited),3059,1375801,95 +100319,,31018,4492,4 +100320,Dean White,68347,1384192,9 +100321,Alonso,5048,21175,2 +100322,Mrs. McIntyre,51571,34184,9 +100323,Beautiful Bachelorette,11247,159971,30 +100324,Nicole,18392,19222,4 +100325,Sinkov,62732,143665,6 +100326,Deputy,4882,1174864,21 +100327,Ranch Cowhand Driving Bus,33541,1356902,16 +100328,Renato de Rossi,50363,29327,1 +100329,Ben's Dad,176079,38085,4 +100330,Dylan Mee,74465,74539,3 +100331,Staatsanwalt,225244,37913,4 +100332,Bianca Torres,9846,59873,3 +100333,"Noah, Jake's Father",16551,5605,2 +100334,L'inspecteur Mazurel,33436,11220,17 +100335,Himself,151043,97772,7 +100336,Nurse,9963,61105,16 +100337,Harrop,27196,1216393,13 +100338,Rana von Bhithor,101185,29327,5 +100339,Jabe,270654,1231547,8 +100340,Marta-Hermione,63401,237077,2 +100341,Recruiter,7871,1294405,15 +100342,Hattie Dorsett,27137,10080,3 +100343,Gerhardt,274479,164004,54 +100344,Marmiton Louis,19548,19653,8 +100345,Ray Ray,23196,92658,1 +100346,Warehouse Victim,75101,1523992,11 +100347,Russian Foreign Minister (uncredited),209112,204261,138 +100348,Additional Voices (voice),328111,157626,24 +100349,Ведьма,57230,1801454,6 +100350,Marco,142320,1047948,4 +100351,Otobüsteki Polis,31413,1410159,4 +100352,,48341,135202,13 +100353,Harris,259830,63362,6 +100354,Benjamin,24272,140578,17 +100355,Charles Herrod,252888,44728,2 +100356,Sam,61991,24299,2 +100357,Japanese Mechanic,127560,1380562,18 +100358,El Mazacote,264525,1096780,19 +100359,Javier,403119,76795,2 +100360,Galen Erso,330459,1019,4 +100361,Fike,63538,126968,3 +100362,Agent Lisa Franks,10145,17640,11 +100363,,412851,1670469,4 +100364,Herself,24625,404347,10 +100365,Captain Riggs,11161,68394,2 +100366,Liara,27717,3336,1 +100367,Fred Toten,59142,12827,5 +100368,Frank Pontipee,16563,138393,3 +100369,Jenny,153162,935345,38 +100370,Monteiro's Maid at Casino (uncredited),37992,97042,13 +100371,Stan Parkes,33511,1798882,9 +100372,Richard Feynman,177203,227,0 +100373,Cem,44246,133817,2 +100374,Anna,16151,79699,11 +100375,Perla,127702,1085574,3 +100376,Christine Marlowe,43503,120306,3 +100377,Narrator,186997,586403,0 +100378,Val,20842,565514,1 +100379,Checker,5552,44083,6 +100380,,403867,86011,6 +100381,Sylvia Levov,326285,1621145,9 +100382,Agente Cardozo,25376,1331802,14 +100383,Lan McKay,120259,109846,3 +100384,Mary Tucker,105981,9088,0 +100385,Maurice,8325,22970,4 +100386,Luisant,436340,1744818,5 +100387,The Sheriff,11547,159109,7 +100388,Opernsänger,9010,10923,7 +100389,Paris,204839,60292,6 +100390,Mrs. Ebrahimi,375012,1666113,7 +100391,Receptionist,253235,1795332,18 +100392,Geremia,53486,148255,0 +100393,Gladiator,310135,207818,37 +100394,,39493,1057933,9 +100395,Duke (voice),9904,60229,8 +100396,E.J. Lane,116340,159879,3 +100397,Mrs. Bowling Green,43806,94332,18 +100398,Shelly,146380,1124102,5 +100399,Hank Schultz,340215,1630264,9 +100400,Hallie Schrag,80473,29091,2 +100401,Mikey,58051,227365,11 +100402,Dr. Amanda Mayson,50942,2109,1 +100403,Adam Schaffer,22897,67773,2 +100404,Bonnie,50318,1411823,33 +100405,Peter Kingsmill,43525,33022,3 +100406,New Boy,10299,8490,14 +100407,A German Soldier,85715,1388843,8 +100408,District Attorney William Pierce,35404,89834,7 +100409,Blue's Friend,336011,1560251,21 +100410,Billy,59965,967197,14 +100411,Baron Gregor de Berghman / Anton de Berghman,27003,2922,0 +100412,Elk Cove: Waitress,10780,192097,20 +100413,Rosetta Brewster,15213,208310,5 +100414,Chief Warrant Officer Wally Hamer,14878,24528,1 +100415,"Alex Mason, Sr.",19371,6168,6 +100416,Uncle Albert,16791,11181,7 +100417,Andrei Golubev,62731,29839,0 +100418,Captain Jack Sparrow,58,85,0 +100419,Carvin,50647,21278,6 +100420,Judge,4982,161547,57 +100421,Dap,18978,1092242,6 +100422,Tatiana,184155,1163599,7 +100423,Frau Weber,70807,18035,9 +100424,Ollie,58732,78057,1 +100425,"Improta, un borsaiolo",107052,11223,2 +100426,Carmen,262522,174940,5 +100427,Logging Supervisor,2080,234504,22 +100428,,214138,1300699,4 +100429,Mimmo,403450,1356797,8 +100430,Dr. Wah,10389,65262,1 +100431,Narada - the Mystic,184267,133099,6 +100432,Laine,288710,78804,1 +100433,Sergente Cerato,37710,44646,7 +100434,Eleanor Finch,355008,21657,2 +100435,Bardi,20126,85649,6 +100436,Female Bartender,1724,1230333,64 +100437,Harry's Teacher,10330,94430,27 +100438,Jack Jr,20196,3980,8 +100439,Pvt. Edwards,44140,4960,10 +100440,Bouchard,311324,90060,12 +100441,Young Gus,11403,1141721,5 +100442,Sara,49354,103939,7 +100443,Susana (as Rosa Valsechi),29952,1038480,2 +100444,Corporal Hill (SAS Officer),257344,48,6 +100445,Margie Beesley,159469,90384,5 +100446,Scooby-Doo/Fred Jones,67900,15831,0 +100447,Jimmy,284279,1471817,5 +100448,Scientist,28340,84211,12 +100449,,39493,127893,5 +100450,Tomoyo Daidouji,31347,65437,6 +100451,,111480,1827133,11 +100452,Sergeant Hunt,113638,3341,5 +100453,Stagehand,313922,1277799,11 +100454,Greg,336691,1186724,1 +100455,Nora Carson,65211,10487,2 +100456,Junior's Secretary,288521,89732,17 +100457,Danaka,115276,992276,8 +100458,Joab,2734,54,7 +100459,EHC Client,71670,1701760,39 +100460,Senator Turner,19901,33182,6 +100461,Monique,40208,42956,8 +100462,Contrôleuse Paris,352025,1745554,21 +100463,maire de Montréal,26566,592722,17 +100464,Sven,8371,6082,1 +100465,Tim Harlend,127493,6413,4 +100466,Girl in the car,33481,110777,27 +100467,Françoise Hafouli,76714,550417,10 +100468,,56599,1018087,8 +100469,Tom,142507,267790,4 +100470,Alain,14688,73827,3 +100471,Beggar 2,61528,20286,11 +100472,Self,171357,1153759,0 +100473,Rusher of Din - Sleeper,36751,116111,8 +100474,Tara,329135,225388,2 +100475,Dancer,33541,1276434,30 +100476,Kvadrová,6079,138514,11 +100477,Le propriétaire de la ferme,21145,2406,4 +100478,Motard 3 (John Grizzly),52369,587147,9 +100479,Guy from Club,157829,1181353,9 +100480,Dr. Bloomberg,43727,55959,10 +100615,Kelly,146216,1248826,39 +100481,Guitar Player (uncredited),14353,21730,12 +100482,Russ,61644,139341,10 +100483,Lucie 7 ans,283726,1690068,14 +100484,Himself,9951,1692547,19 +100485,Doc Foster,10915,14277,11 +100486,Ekrem,177155,133023,4 +100487,Honey,170689,506,13 +100488,Herself,41331,589,0 +100489,Gavin,371645,1570328,11 +100490,Deagol,122,1383,20 +100491,Taxi Driver (uncredited),31993,9096,10 +100492,Yacine,58309,100743,4 +100493,Mrs. Phyllis Dickson,1773,19021,2 +100494,Terry,23048,347335,15 +100495,Esposito,59040,128419,8 +100496,Fireman's Wife (uncredited),1726,984619,65 +100497,Sheriff Poucher,40087,99500,9 +100498,Girl #1,46760,937384,3 +100499,,262447,994429,3 +100500,Ranger,218329,1261370,6 +100501,Anatole,43878,285738,5 +100502,Mozo en la cuadra con Aldonza,145481,103524,10 +100503,Mr. Clean,62046,94432,10 +100504,Jörgen,32497,57013,0 +100505,Opera Lighting Technician,177677,1529495,25 +100506,Kageyu,85836,18056,0 +100507,Peter,133941,1033015,10 +100508,Tommy Chong God,102668,361406,23 +100509,Brendan Byers III,123961,3663,0 +100510,Monk Johnson,199155,6577,0 +100511,Sole Drinker,24202,27884,7 +100512,Bubbles (uncredited),43497,7632,22 +100513,Jules César,49398,12270,1 +100514,Bank Representative,183825,97981,35 +100515,Osman-Agha's Mother,103590,32627,1 +100516,Dan,53865,20368,7 +100517,Todd,320588,17401,3 +100518,Constable Pedeault,176867,1494861,17 +100519,Roy,196235,64295,3 +100520,Henchman Hawk,377170,119546,9 +100521,Moira,156,1836,5 +100522,Grasshopper,91186,66717,10 +100523,Newspaper Office Clerk (uncredited),38432,121323,12 +100524,Horpyna,31273,107868,10 +100525,Zuhälter Osman,12605,10246,4 +100526,Boris,53693,88145,5 +100527,Construction Worker,339419,1650217,61 +100528,Commissario Petacchi,53805,1096436,10 +100529,Kleinkrimineller,2349,24066,13 +100530,Sarah,339547,1465526,3 +100531,Dennis' Dad,59678,193356,25 +100532,Emmeline Pankhurst,245168,5064,2 +100533,Prof. Crabwell,32021,9072,5 +100534,Peter Heinzmann,4529,37777,3 +100535,Monica Fawn (as Meri Wells),936,114529,11 +100536,Captain Lu,45452,1416970,5 +100537,Maj. Hasko,19096,10344,4 +100538,"Tom, Head Waiter",18774,139909,17 +100539,Peter Maximoff / Quicksilver,246655,55089,6 +100540,Pregnant Bookstore Woman,19794,35467,11 +100541,"Yuki Machida, Koichi's girlfriend",36246,66153,5 +100542,Prashant Goswami,397365,1141961,3 +100543,Tomas Rienzi,36334,6931,6 +100544,Sedalia Sheriff,183825,120818,25 +100545,Father Kirkman,36375,43821,7 +100546,Little Havana Dad,323675,237345,27 +100547,Himself,55225,1593239,8 +100548,Third Baseman,56558,118638,37 +100549,Ari,297633,550965,3 +100550,,448879,226707,1 +100551,Himself,14923,34518,40 +100552,,276123,1330009,5 +100553,Jenny Garrison,28665,38703,0 +100554,Fight Announcer,246655,1264152,28 +100555,Mikey,325712,1504922,12 +100556,Zuschauerin im Varieté,94803,29163,10 +100557,Mimi,68684,1074676,9 +100558,"Fedot Vaskov, starshina",49106,239486,0 +100559,Trooper Conners,9542,161285,11 +100560,Himself (archive),173301,10594,4 +100561,Boy,80343,1646008,8 +100562,Leonard Samson / Dr. Samson,1724,15232,5 +100563,Beatrice Templeton,26644,47644,4 +100564,Ivy,323665,139151,13 +100565,Inspecteur anglais,39358,39661,4 +100566,Minnie Littlejohn,40085,14730,7 +100567,Lion,44303,2178,6 +100568,Monty Pig (voice),153518,60279,27 +100569,Otaka,89462,937258,1 +100570,La Madre de Juan,114333,1723465,6 +100571,Marcy,270851,19222,7 +100572,Bucky Oryx-Antlerson / Travis (voice),269149,76595,23 +100573,Wetsuit,17421,19545,2 +100574,Irene,36375,34437,6 +100575,Boss,98349,1535,6 +100576,Sam Cooper,29610,26472,0 +100577,Chinook Co-Pilot,293167,1332746,25 +100578,Mère Angélique n°2,65898,27980,4 +100579,Nina,14029,1543447,10 +100580,Mali,16356,80405,1 +100581,Hypnotised Man / Vladislav's Victim,246741,1780270,23 +100582,Delegate,285181,1668026,22 +100583,Sharna,64428,107500,9 +100584,Ralph,356500,1838215,9 +100585,Len Miller,18774,47549,7 +100586,Dr. Deepra Chang,36960,11677,3 +100587,Nadya,279543,236830,1 +100588,Princezná Vanda,208436,236627,5 +100589,Mrs. Green,30708,3340,5 +100590,Csontváry / Z the actor,131027,1038247,0 +100591,Anderson,31280,1060790,6 +100592,Keenser,188927,1295,11 +100593,Frau Linde,400552,15485,7 +100594,Night Watchman,131815,32830,9 +100595,Milena,241140,1052301,6 +100596,Technician Quinn (voice),16873,56685,15 +100597,Madison Roberts,5172,983707,14 +100598,Romeo,35428,86864,11 +100599,Kathy,337073,1481006,7 +100600,Peppermint Patty (voice),31718,124025,3 +100601,Stanley Webber,121052,8606,0 +100602,Chandler,88375,8255,0 +100603,Suzie's Mom,30155,988455,19 +100604,Eliza,18392,20492,3 +100605,Federico,58773,121732,1 +100606,WPC Cooke,224204,1270465,10 +100607,The Tramp,123969,1090093,3 +100608,He Yi Mei,334132,150899,4 +100609,Base Commander,79935,104342,7 +100610,Manuel,394723,79001,4 +100611,French Dancer,43809,195086,47 +100612,Khiem,9993,61637,12 +100613,Debate Moderator,365942,202830,20 +100614,Claw Zuckerman,52661,27747,16 +100616,Bouncer (uncredited),2288,1209051,16 +100617,Himself,2169,22191,10 +100618,Waitress,10389,551612,24 +100619,Johnny Rock,75090,545343,9 +100620,Baby Boy,27711,1192162,7 +100621,Wheeler,105077,1578454,24 +100622,Low Rider #1,15092,1895592,32 +100623,Beast,30844,107132,2 +100624,Françoise,270899,72946,4 +100625,Matthis Hiller,3577,8197,2 +100626,Principal,16687,1183499,11 +100627,Dr. Perry,28155,86368,4 +100628,Matthew,15759,78719,13 +100629,Cmdr. Hammerstock-Smythe,10610,655,4 +100630,Lecture Hall Guard,179066,2501,18 +100631,,36175,1124111,9 +100632,Pete,387558,1590840,5 +100633,Doctor,28071,99570,5 +100634,Pvt. L.Q. Jones,51426,8262,13 +100635,Wiki,138496,1234188,8 +100636,Deputy,43821,141139,31 +100637,Christer Malm,15472,83895,23 +100638,2. Soccer Fan,9252,1295373,12 +100639,Elsie Stark,188161,78602,30 +100640,Barney,80545,17288,15 +100641,Lord Donnon,2454,12044,13 +100642,Shelter Director,44415,146336,8 +100643,Destro / Iceberg,17421,66713,6 +100644,Kasper,208869,78909,9 +100645,,62896,116163,4 +100646,Maid,170517,1745601,23 +100647,Professor Robert Leaf,42734,854,0 +100648,Claire,13596,1077059,9 +100649,Himself,144942,82658,3 +100650,Principal Evans,331588,31282,11 +100651,Veysel,236053,97272,0 +100652,Linda,17317,92426,4 +100653,Ben Webber,29058,30195,4 +100654,don Rodrigo,338438,14148,4 +100655,,117550,1111993,10 +100656,Mrs. Edna Stone,43821,1112944,32 +100657,Professor Lawrence,318553,1411153,8 +100658,Marylou,167810,1793174,18 +100659,John Henry (voice),197725,1527585,3 +100660,,49446,1036825,0 +100661,Himself (archive footage),253337,1017169,6 +100662,Captain Andres Bonifacio,19096,5401,2 +100663,M. Pluvignec,24685,36948,14 +100664,Sara,58384,76390,0 +100665,Editor (voice),30060,86105,14 +100666,Ruth Carter,68078,122974,1 +100667,Bruce,125490,201093,23 +100668,Trish,364088,1523164,7 +100669,Eva Gray,301228,78147,1 +100670,Himself,73933,1052853,6 +100671,John - Border Patrol,1164,454,12 +100672,Tara Roland,58664,74929,1 +100673,Dr. Ernest D. Hubbs,59189,13327,1 +100674,Mantis (voice),9502,19274,10 +100675,Dr. Kate Brecher,22076,112341,1 +100676,Inspector Gorley,26503,5570,2 +100677,"Ouyang Qing, 4th Sister",64304,1427625,15 +100678,Dr. Philip Ritter,38964,4112,0 +100679,Pete,356752,1367901,3 +100680,Donkey (voice),809,776,1 +100681,Narrator,123283,552625,0 +100682,Freimann,266044,559576,26 +100683,Professor Phillip Wilder,100669,92612,5 +100684,L'homme du bar,8276,1033622,17 +100685,,224950,201074,2 +100686,Miss Stella Maris / Unity Blake,70753,100047,0 +100687,Arthur Gould,82631,137529,14 +100688,On Camera Musician,198277,1424217,46 +100689,Himself,2692,12647,1 +100690,Himself,218778,61303,33 +100691,Sgt. Luis Murillo,38269,14531,4 +100692,Mary Ann,224885,1504156,9 +100693,Spence Holmes,14666,164285,1 +100694,Gang Member,87593,935285,3 +100695,Hoodlum Telephoning Nick,14589,96261,40 +100696,Jenna,19719,51856,1 +100697,Marie Devarone,131781,236016,2 +100698,Freundin von Marcel,130739,1805295,29 +100699,Anne-Marie,101325,7570,0 +100700,Lucie Manette,17831,47678,1 +100701,Theo,32932,112373,1 +100702,Bonnie Mbuli,60665,1056289,5 +100703,,348315,87843,12 +100704,Ms. Arnworth,37534,427,12 +100705,Mononque,430058,1485591,5 +100706,Anna,4285,679,0 +100707,Nam-soo,345888,1257963,4 +100708,Jeffrey,399612,1492021,6 +100709,1st Detective,29805,189364,38 +100710,Dr. Feodor Orloff / Prof. John Dearborn,27144,1547,0 +100711,Bath Nurse,48231,1089478,9 +100712,Vera Müller,289010,1866,2 +100713,Handball player,101242,1026729,7 +100714,Lorca,43935,568049,12 +100715,Jewel,44486,55546,5 +100716,Mother,28710,953,1 +100717,Nurse,130278,200,4 +100718,Leon,25388,67882,11 +100719,Morley,11131,215741,9 +100720,Dopey,51601,117772,9 +100721,Ritchie White,23957,2876,0 +100722,The Jester (voice),59981,519,10 +100723,Sbire Père Noël,305455,1843659,9 +100724,Frank,212756,11086,2 +100725,Allen,340027,62919,6 +100726,Sue Ann Mobley,94568,153464,3 +100727,George Marshall,94739,975342,3 +100728,Gang Leader,10299,168095,13 +100729,Joe,25684,94330,0 +100730,Karin Larrson,82448,6286,1 +100731,Stone,203351,1186515,4 +100732,Aluisio Li,420703,1199020,0 +100733,Elizabeth Figg,352733,1463146,14 +100734,Ho-Kwan,58,429401,30 +100735,Miliciano,256122,10062,4 +100736,Chick,94251,119260,12 +100737,Business Man,87302,93735,7 +100738,Queen Siren,44773,543790,13 +100739,"Ellsworth 'Spuds' Fickett, cook",257081,2016,5 +100740,Audience member (not credited),82448,928020,22 +100741,'Youssef',43434,1117774,13 +100742,Abby Russell,78383,59882,0 +100743,Police Officer,305932,1883545,17 +100744,Kayla,92391,1071124,3 +100745,Mary Rigby,276401,17882,5 +100746,Sheriff Charlie Thornton,242332,95728,9 +100747,Rodeo Performer,134238,1660483,50 +100748,Manolete,166207,1396367,21 +100749,Le barman,22618,1294173,9 +100750,Birmingham Brown,90956,89747,2 +100751,Frieda Debny,196257,3664,3 +100752,Oberon,21533,180916,12 +100753,Mme Weber,80220,25839,3 +100754,Oscar,367147,84897,5 +100755,Soldier in Trench,19996,1735924,23 +100756,Eddie (as Willard Willingham),132939,562714,8 +100757,Preacher,28894,30115,9 +100758,Charity,353616,1732263,13 +100759,Carole,49559,360980,5 +100760,Major Cabot,10915,2463,3 +100761,Prospect,91333,55591,7 +100762,Walter Collins,3580,117885,5 +100763,J.J. Derks,20473,41739,4 +100764,Wu Zemin,101908,1029288,1 +100765,Dave,36251,4887,4 +100766,Kurt,341957,1385056,3 +100767,Bob,64191,25146,5 +100768,Victoria,34729,1689911,11 +100769,Vera,87654,46129,7 +100770,The Princess Dala,936,4959,14 +100771,Taxi Driver,45505,1277941,8 +100772,Bartender,304372,1720645,33 +100773,Dennis (voice),159824,1523670,7 +100774,Pierre Peders,8414,884,1 +100775,Johnny Sebanek,22396,1013256,5 +100776,The Bull,59726,1185482,17 +100777,Captain Wainwright,14047,129868,31 +100778,,19501,1207972,3 +100779,Waiter in Train,20444,86137,11 +100780,Simon,339362,16752,5 +100781,Julia,156180,1085278,7 +100782,Len Arbuckle,8669,55614,6 +100783,Bureaucrat,76757,1356007,58 +100784,Bill,24059,19152,0 +100785,Fritter,248376,1175571,8 +100786,Oil Co. Director Bishop,156335,137402,13 +100787,Sgt. Joyce Kilmer,72638,90517,4 +100788,Giuseppe Buono,276909,1002001,2 +100789,Matt,17457,92829,11 +100790,Greta Kaine,235662,164930,0 +100791,Haskell,14916,1125219,6 +100792,Darcy,43757,1153742,4 +100793,,115427,53779,11 +100794,Pregnant Woman,9793,59292,12 +100795,Camille,27019,38341,2 +100796,Hank,38432,2096,8 +100797,Никита Ефремов,85729,931253,3 +100798,Michel,8276,20772,5 +100799,Luke Castellan,32657,105727,3 +100800,Prince Heinrich (younger),212530,46342,10 +100801,El Puñetas,351809,272018,11 +100802,Adelaide,24657,87415,1 +100803,,195544,129629,25 +100804,Traffic Policeman,10389,551622,35 +100805,Sonny's mistress,18908,82564,8 +100806,Nurse,55604,148527,28 +100807,Rachel,20481,327357,7 +100808,Monte Black,84905,88717,5 +100809,Anna,224778,1210306,5 +100810,Tim,48627,168062,11 +100811,Phil,172828,9657,4 +100812,Natanson,143380,565305,11 +100813,"(segment ""Miminashi Hôichi no hanashi"")",30959,552670,54 +100814,Woman at Market,6069,54941,12 +100815,Marco,76494,60899,9 +100816,Jim Doyle,15486,1371,0 +100817,Suzie,79316,485005,9 +100818,Joe Martin,175822,10018,4 +100819,Theatre-Goer,61225,62035,29 +100820,Carlotta Drake,71945,236465,1 +100821,Christine,3638,33432,9 +100822,Esmeralda,35016,1416114,18 +100823,,211233,148368,6 +100824,Director of Comedies (uncredited),53419,21305,4 +100825,Peter,40229,6713,9 +100826,Roberto Valdi,48846,105342,9 +100827,Kris,320588,57710,33 +100828,Middle Eastern Worker,169068,1225904,19 +100829,,44238,1055120,6 +100830,Little Boy,1724,1366370,50 +100831,Blind Mice (voice),48466,12097,7 +100832,Mikhail Vladimir Rodzyanko,204802,1623854,11 +100833,Karen,304372,2208,4 +100834,Un aide,148327,1294276,11 +100835,Manu,41252,42803,1 +100836,Hospital Caretaker,10389,231012,10 +100837,Ramsey,84449,129101,2 +100838,Dealer,58529,227937,0 +100839,Binky Gay,76229,7632,1 +100840,James Loveless,49500,190407,17 +100841,Gopi's Wife,134474,1332754,17 +100842,Keller,301368,133950,7 +100843,Officer Burton,103620,1367121,15 +100844,Ikegami,134350,58596,1 +100845,Catherine,381737,1702807,22 +100846,Daniela Vinci,81541,31612,2 +100847,Old Lady at Charity Bazaar,21451,1271033,10 +100848,Jean-Charles,187252,587155,3 +100849,Emil Landosh,87936,14503,1 +100850,Api,10176,7249,3 +100851,Viv,369406,1538828,11 +100852,Lilly,347258,1434826,1 +100853,Gavin Malone,226167,444420,3 +100854,,85327,55267,10 +100855,Trigona,297762,1831282,25 +100856,Hyo-Jung,257296,1296950,2 +100857,Mère Anna,381255,26101,8 +100858,Female Train Attendant #2,6687,1129802,13 +100859,Little Waco,43319,153691,11 +100860,Donnie,9787,15338,9 +100861,Junior Doctor (uncredited),284052,1785905,29 +100862,Georg,204965,1187353,11 +100863,le sacristain,4443,24479,9 +100864,Ichi Sasahara,27031,70811,1 +100865,,247218,140107,4 +100866,,31418,584050,12 +100867,British Soldier,1116,1896896,75 +100868,Chief Daisuke Aramaki,315837,3317,5 +100869,Robert Delgado,29695,3799,6 +100870,Marissa,34128,10580,3 +100871,Werfel,19740,1217752,8 +100872,Dr. Healy,18569,11502,19 +100873,Helenka,19765,1529143,8 +100874,Le chauffeur du casse,352025,1784151,15 +100875,Kishimoto,105210,1132016,11 +100876,Arab Woman,14977,83862,7 +100877,Max,308024,1699481,8 +100878,,51549,115659,19 +100879,italiano a Rio,77137,71296,9 +100880,Rod Rescueman / Scuzzbopper / Frivoli Foreman / Rusher of Din - Street Preacher,36751,80627,2 +100881,,49258,79006,9 +100882,Reade,42476,94123,7 +100883,Gute Fee,5393,43121,4 +100884,Duane Rosenblum,13173,52997,15 +100885,Father Hoffmann,3478,9908,4 +100886,Megan,289712,1274510,1 +100887,Roy Lawrence,276550,117309,2 +100888,Chris Kelmeckis,84892,987572,12 +100889,Guy,63217,160430,1 +100890,Atlee,177677,16358,6 +100891,Margaret 'Peg' O'Connell,162862,34742,0 +100892,Loredana,104954,1311495,4 +100893,Himself - National Geographic Editor,84185,1341527,6 +100894,Large Mongol,9471,1548677,20 +100895,Cindy,115276,294675,14 +100896,Johtokunnan jäsen,62900,148393,10 +100897,Bobby Jenkins,27573,26718,10 +100898,Himself,413782,944506,9 +100899,The Count,31003,7866,7 +100900,Benjamin Coffin III,15199,87929,3 +100901,Herself,15258,18329,104 +100902,Dr. Edwards,320588,53755,10 +100903,Medico,38286,119355,6 +100904,Sacerdote (uncredited),122019,1504556,25 +100905,Leeds,126712,88733,10 +100906,Nun,47900,133296,7 +100907,News Anchor Jack Stern,85414,79086,5 +100908,Gorgeous Young Girl,76681,1728848,9 +100909,Shira the UFO Huntress,13836,83635,42 +100910,Jacob Reynolds,321039,89966,5 +100911,Baby Shower Guest #1,19794,1564445,26 +100912,Joseph Palmi,1247,4517,12 +100913,Marine,256962,1819150,79 +100914,George Ramirez #3,17796,1295,18 +100915,Counselor,35626,104033,17 +100916,Cousin Agatha,41073,20127,9 +100917,British Soldier,1116,1896895,74 +100918,Parisian (voice),9389,1619468,11 +100919,Guame,20986,144104,10 +100920,(uncredited),42852,133872,37 +100921,Harlan Pyne,18045,237,1 +100922,Thueang,77094,582328,2 +100923,Polly Benedict,43808,11495,5 +100924,Karl-Ludwig,277968,27978,5 +100925,Chess,88390,14427,9 +100926,Sweet,8965,56853,6 +100927,König Achisch,2734,27660,38 +100928,Abdallah,47226,1546417,3 +100929,Stan Țugurlan,32601,85229,5 +100930,Santi Garcia,74192,87245,1 +100931,Dorothy Moxley,56744,66584,6 +100932,Garnet,41495,126678,5 +100933,Sekretarka,224,2822,13 +100934,Concert Goer,11172,1553306,51 +100935,Hiram Whatley,280495,138622,5 +100936,Mrs. Nathanson,58244,1504592,13 +100937,Jan-Erik Widgren,51144,131067,1 +100938,Sonal,191112,88438,1 +100939,เต๋อ,184219,1167608,5 +100940,Врач скорой помощи,46010,544511,9 +100941,Avery,359025,20494,0 +100942,"Josef, 'Cabin Crew'",86254,98157,11 +100943,Frank Baskin,448847,571730,7 +100944,Tech Lycan,346672,1585399,19 +100945,Simone Lesage,41277,553893,3 +100946,Jason,70772,559663,18 +100947,Luisa,16999,81133,0 +100948,Mrs. Mary Tompkins,43846,132494,7 +100949,Kathy Anderson,23692,196461,13 +100950,Nurse Robbie,69165,1549473,10 +100951,Collin,336850,61839,0 +100952,Ruds,92391,553273,7 +100953,Richard Hussey,149926,742,12 +100954,Matilda,83185,929295,1 +100955,Karen White (as Farrah Fawcett-Majors),108282,28768,8 +100956,Adams,100088,186900,10 +100957,Inga,82157,1207314,2 +100958,Madam Rose,127329,26778,4 +100959,victim,39493,1206372,3 +100960,Willie 'Smoke' Willoughby,34623,11439,3 +100961,Henchman Red,61985,88979,7 +100962,Narrator (Stimme),11139,68311,0 +100963,Braithwaite,9461,544964,12 +100964,First Mate,18015,1291807,11 +100965,Nick Aparo,17669,1859,8 +100966,Reaz,277839,67714,1 +100967,Jen,47194,141037,8 +100968,Alex,40985,135168,8 +100969,J.J.,97630,1140088,14 +100970,,78450,1559778,10 +100971,Agrippina,146596,50827,0 +100972,La femme de ménage,377853,1670734,15 +100973,Ruth Gilmartin,153397,70904,2 +100974,,48210,142814,8 +100975,Jenny,340187,1579544,7 +100976,controfigura di Renato Pozzetto,58611,1467150,18 +100977,Agent Ward,97618,2203,2 +100978,,74645,100410,8 +100979,Herself (archive footage),410718,13309,12 +100980,Army Captain,150712,2927,18 +100981,Big Daddy Jessup,191465,14830,5 +100982,Leutnant Wolff,45398,18840,6 +100983,Agent Kellerman,117251,13525,11 +100984,Molly,117098,34915,3 +100985,Lord Burghley,11788,27762,5 +100986,Operator,24357,78798,4 +100987,Antigonus,1966,1403284,33 +100988,Hideko (Grandmother),79382,43663,14 +100989,Zilan,175331,1028807,5 +100990,Mage,21533,63791,20 +100991,Scarecrow,47508,128200,4 +100992,Elevator Operator,26376,1447952,22 +100993,German Soldier (uncredited),297762,1809572,88 +100994,Terri Curtis,44593,42335,4 +100995,Felix,48594,240759,0 +100996,Security Guard,30361,1484151,14 +100997,Yoshiro Ozaki,273096,120690,4 +100998,Anna Adrien,59118,10916,5 +100999,John Singing Rock,40060,16074,1 +101000,Phyllis Clavering,140470,93897,1 +101001,Benson,79778,134612,5 +101002,Queen Ma'at,47065,101045,3 +101003,Harriett Doyle,406052,90131,10 +101004,Pasteur,39358,1630987,7 +101005,Lt. Jeffery Newman,59197,211900,3 +101006,Mrs. Cheeseman,192990,112936,7 +101007,Tommy,190955,53573,15 +101008,Diego (voice),79218,5724,4 +101009,,278475,145331,3 +101010,Susan Bradley,89720,1379204,1 +101011,Sailor,34127,33024,11 +101012,Carl Ridgeley (as GregAlan Williams),69560,37937,5 +101013,Charlotte Banks,23367,90033,1 +101014,Man,413232,1186118,41 +101015,Keet,143005,86956,4 +101016,Susan Vanard,122677,102971,3 +101017,New York Hospital Chemist,18569,144402,52 +101018,Silvano,64225,1694166,7 +101019,Phillip,66925,78021,17 +101020,Jeff Jansen,308032,27104,6 +101021,Security Guard,133523,1901235,4 +101022,Police Chief,26326,102441,6 +101023,Angela,330947,32799,13 +101024,Pacheco,70666,1863887,16 +101025,Crawford Sloan,40957,106609,7 +101026,Danard,68822,11543,14 +101027,Waiter,381015,139812,15 +101028,Terry,11247,53863,14 +101029,Angel Clare,101915,37632,1 +101030,Agent Jones,177566,181647,10 +101031,Diana St. Clair,18690,83462,2 +101032,Rinaldo (voice),9836,59782,12 +101033,Chicago Police #1,24420,1123849,14 +101034,Baroness Girl (uncredited),214756,1583786,37 +101035,Tanker mechanic,271234,1322775,5 +101036,Alex Dickerson,409502,1661264,7 +101037,Donny Leeds,91961,992587,6 +101038,Sister Angela,37103,20141,0 +101039,Tuck,55495,150940,14 +101040,Lola Stanton,185289,34437,2 +101041,Peter Wrigley,103014,1457245,6 +101042,Diener,147360,10026,11 +101043,Chief Dunham,405882,120253,12 +101044,The miner's son,54146,1089020,6 +101045,Matafay,108224,1310224,9 +101046,Dale,51036,27012,7 +101047,Anne Crabbe,253310,1785189,10 +101048,K,26891,8196,0 +101049,Himself (Judas Priest guitarist),123691,235435,3 +101050,Doug Gordon,71376,186526,2 +101051,Vinny,23853,57756,5 +101052,Madame Judith Paris,186227,13816,2 +101053,Trish,279332,67978,3 +101054,Fight Spectator (uncredited),28000,1208035,90 +101055,Luke,10063,47969,5 +101056,Parelli aka Socks,30941,3014,6 +101057,Peter,348320,1486383,6 +101058,Hylas,29542,12662,6 +101059,Old Man,81120,1289011,19 +101060,Katya,83475,616013,2 +101061,Aldo,71630,15397,0 +101062,Brando,22579,234555,8 +101063,Commerciante,78340,1163661,13 +101064,Pegasus J. Crawford (voice),72013,1221107,7 +101065,William Terrell,36960,1049724,9 +101066,Nathan,14505,76996,1 +101067,Sun Ho Yee,11636,66762,2 +101068,"Mr. Wheeler, hunter",28775,83994,9 +101069,Union Leader,318781,1694305,34 +101070,Kudret,361181,59752,1 +101071,Kitty Moran,76011,64838,0 +101072,Annette Spremmberg,140554,553005,35 +101073,Lou,120932,82510,7 +101074,Riley Banks,84184,34847,3 +101075,oracle Florida,317723,1413103,4 +101076,Eric,77776,582511,1 +101077,Minister,371181,1475809,19 +101078,Tancredi Recchi,41110,1035736,6 +101079,Kassierer Rosenkranz,10626,12747,10 +101080,Nurse,20919,62360,2 +101081,Rusher of Din - Sleeper,36751,116115,12 +101082,Indu Tendulkar,147767,81092,1 +101083,Himself,376391,227064,3 +101084,Sam McNutt,43441,14976,7 +101085,,64454,1140556,17 +101086,Cliff Robertson,378018,1038000,13 +101087,Dmitri,43891,96741,5 +101088,Vania,267579,8602,1 +101089,Jessica,16154,79731,0 +101090,,124597,1347816,22 +101091,Cherie Johnson,2355,167220,14 +101092,Miriam,73565,3052,4 +101093,Vincente Goldoni,55448,7868,7 +101094,Beth,141643,1115148,7 +101095,Miss Lynn Cherrington,116973,85848,0 +101096,Ghini,106623,1086994,2 +101097,Lydia Cunningham,354287,58759,34 +101098,Mrs. Casterline,72140,565186,13 +101099,Roscoe Bean,46563,24826,8 +101100,Sparkie,32044,22035,5 +101101,Betsy,10320,61829,8 +101102,Littlefoot,24554,91776,1 +101103,Clifford Daniels,2778,519,0 +101104,Cully,97910,79247,7 +101105,President Blake,435,64457,21 +101106,Bartok (voice),19594,5587,1 +101107,Businessman,47057,109144,15 +101108,,26376,120200,61 +101109,,278738,1090027,7 +101110,Prisoner,31672,934930,5 +101111,CEO of GM Builders,332827,1199187,6 +101112,RAF Corporal,44087,956213,29 +101113,Palmer,11012,1073272,15 +101114,Jake,58547,38673,1 +101115,Tony,85350,931946,29 +101116,Jettchen Niem,215740,1200391,1 +101117,Nightclub drinker,43113,1484036,63 +101118,Ray,253235,1698872,22 +101119,Bernie Lootz,10744,3905,0 +101120,Merlyn,18978,69764,5 +101121,Gott,204965,38608,4 +101122,La Camaleon,106747,237405,7 +101123,Doc Barker,49172,11006,6 +101124,Jerry,347630,169198,9 +101125,Allison,214756,130782,28 +101126,Madam Fong,37984,125655,3 +101127,Alvin Sunday,93116,1266059,3 +101128,Ernie Dills,24731,40009,1 +101129,herself,190940,109549,15 +101130,Casimir Waiter,157829,62729,13 +101131,Andres Maimik,318184,584991,1 +101132,Eleanor,53781,89009,1 +101133,Dora,221527,70119,0 +101134,The Poetry Teacher,270646,1321911,4 +101135,Viscountess River-Clyde,104556,1294687,10 +101136,Warden Harrah,20521,1349629,13 +101137,Dick Brian,17796,6573,1 +101138,Mattie - Fisherman,43833,231088,29 +101139,Sanjana Bakshi a.k.a Sanju,14134,85890,1 +101140,Kenny,1482,281638,9 +101141,Cory,9958,60974,6 +101142,George,146380,127588,2 +101143,Monty Stratton,43440,854,0 +101144,Jackson,42852,14152,11 +101145,Marie,62289,12851,8 +101146,Michelle,17137,53930,2 +101147,Heraclio (voice),146381,2983,3 +101148,,205349,222249,3 +101149,Young Daniel Strong,54022,1306447,10 +101150,Monk Claxton,22408,103069,7 +101151,Waiter,277968,144342,19 +101152,Margaret,62694,89810,12 +101153,Miss Eula,63773,58074,2 +101154,Himself,21671,176022,11 +101155,Wolf,90034,11551,1 +101156,Princess Goh,244956,72494,1 +101157,Jay,9787,46593,0 +101158,Groby,101915,8399,11 +101159,Farnsworth 2,107096,29712,1 +101160,Dr Katrina McKenzie,17654,230818,3 +101161,"Saszka, żołnierz radziecki",8211,23343,11 +101162,Himself,390747,1662632,11 +101163,Lindiwe,103012,1211684,4 +101164,Judge Ravinek,65282,100919,4 +101165,Tunstall,42402,89589,6 +101166,Bridget Fisher,221981,1212960,10 +101167,Sailor,70554,119586,2 +101168,East German Defense Attorney,13580,5254,4 +101169,,334175,1256383,3 +101170,,203124,39995,0 +101171,Brainiac (voice),166076,1381,1 +101172,Commander Phillips,188507,2047,4 +101173,Boots (uncredited),52440,120701,47 +101174,Chatow,42764,128679,11 +101175,Samuel 'Sam' Edison,56154,13555,1 +101176,Edith Middleton,98289,39783,4 +101177,Fedja Michailovitch Petroff,81030,3361,1 +101178,Kazumi,395992,205659,9 +101179,Tow Mater (voice),145316,15897,0 +101180,fratello dell'appestato,338438,1139841,17 +101181,Sejal,61203,897996,7 +101182,Tournament fighter,9461,57609,21 +101183,La médium,101904,272987,4 +101184,Pretty Girl Employee,214129,1327206,14 +101185,Maximo Cuenca,19096,1064453,7 +101186,Lady MC,302699,1754479,25 +101187,Gammel mand,76312,1196562,11 +101188,Anna,81787,3734,0 +101189,Tommy the Constable,50153,100582,4 +101190,Minor Role,43811,1273898,20 +101191,Mrs. Hubbard,67375,20369,5 +101192,Carlo,128657,70027,0 +101193,Andrea,184098,57854,22 +101194,Amathea,7237,52144,5 +101195,Sue Leeds,91961,97283,5 +101196,Stage Manager,6575,27105,28 +101197,Fireman #2,45431,154564,18 +101198,Gully Sutherland,26491,52889,13 +101199,Lou Jr.,9956,7268,6 +101200,General Gomez,117550,44411,8 +101201,Kravchenko,24624,1296746,11 +101202,Jen,24392,1544017,4 +101203,Vorsteher,26891,39487,4 +101204,Desk Sergeant,204255,1267131,14 +101205,Sophie Piper,34560,99168,2 +101206,Olanna,209401,9030,1 +101207,Mogul,184351,41750,3 +101208,Åke,572,6283,3 +101209,Mr. Kroll,2047,21083,7 +101210,Casey Morrow,38962,89524,0 +101211,Enoch Land,44690,107067,10 +101212,Native American,73194,3247,27 +101213,Mikhail Cerenkov,69535,135993,3 +101214,Stu,72574,566644,15 +101215,Dad,52868,6805,5 +101216,Kid (Office),16996,1325691,39 +101217,J.T.,23966,48312,1 +101218,General Hruschov,19277,106678,6 +101219,Irmina,133521,1120448,2 +101220,Herself,447758,88502,38 +101221,Caroline,227871,938949,0 +101222,Tateno,105210,68987,9 +101223,Mary,85023,1710824,5 +101224,Sergeant on March (uncredited),16442,94293,86 +101225,Li Wan's henchman,220488,1110537,15 +101226,Kandi,245906,66446,6 +101227,India Stoker,86825,76070,0 +101228,Edith Harrison Friese-Greene,80596,240212,1 +101229,Col. Thomas Dawson - Police Commissioner,178341,5832,7 +101230,JP Macedo,227964,571469,6 +101231,,188180,148017,8 +101232,Eva Braun,102155,1030272,2 +101233,Alliance guard,41378,1277939,16 +101234,Philippe Lefebvre,382589,66839,3 +101235,,215646,1287513,0 +101236,Young Violinist,262958,1537743,30 +101237,Inspektor Steevens,133941,26598,2 +101238,Voula,47792,932887,1 +101239,Sam,31216,1184847,5 +101240,Monica,26152,146490,13 +101241,"Miss Lavina Howard, School Teacher",56154,95631,11 +101242,Mrs. Moynihan,42703,153365,24 +101243,Ruth Shorter,28320,7071,3 +101244,,77564,582270,2 +101245,Dr. Dayal,55376,222271,12 +101246,Nurse,39824,24199,17 +101247,Kamar-Taj Disciple (uncredited),284052,1394361,65 +101248,Jan,347630,131734,19 +101249,Sweet William,92389,44686,2 +101250,Helmer,22140,56882,0 +101251,Rock Girl,35002,113546,8 +101252,Christian,325302,1281328,2 +101253,Hector de la Faloise,66812,1551425,8 +101254,Yvonne,84249,1534583,1 +101255,Tweedie,44888,19414,4 +101256,Tarquin,72207,20405,11 +101257,Petey Peterson,73348,45525,14 +101258,Himself,217925,84932,0 +101259,Herself,169760,1151863,0 +101260,Domino Player,9812,133790,15 +101261,,254689,75958,6 +101262,Thumbelina,62670,33259,0 +101263,Tom Ferguson The Art Collector,408272,46395,9 +101264,Captain Sebastian Belger,367006,4789,3 +101265,"«Baklan», criminal",71393,86737,6 +101266,Maude Chalmers,71503,83024,0 +101267,Lt. Hoover,46059,7072,6 +101268,Fred,51036,4942,2 +101269,Anna,42436,1839859,6 +101270,Herself,191502,109616,2 +101271,Civilian (uncredited),44943,1205903,56 +101272,April,9935,155023,3 +101273,Stella,86274,933082,2 +101274,Martina,50725,37624,24 +101275,Helena,20160,148042,9 +101276,Nerf,8194,65728,14 +101277,Young Gene Donovan,52051,145264,5 +101278,Luiz,228205,1481636,11 +101279,Kokuto Mikiya,23155,9726,4 +101280,Erma,10274,64678,17 +101281,Laura Kellogg,29805,1738564,40 +101282,,148615,158052,21 +101283,Trudell,14047,143261,26 +101284,Martinson,35405,14324,3 +101285,Lao Ze,186634,152995,2 +101286,Bear,90034,11601,5 +101287,Wedding Singer,214756,1220564,43 +101288,Creighton 'Crickie' Fitzgibbons,257907,89747,6 +101289,Kröyer's Mother,128900,117939,18 +101290,Sophia (voice),364410,11616,5 +101291,Nicerote,110261,37723,3 +101292,Sam,83666,929906,2 +101293,Scarlet,10053,62561,8 +101294,The Breeze,195022,1109588,6 +101295,Casey,172785,51381,3 +101296,School Girl,69921,590197,1 +101297,Borg,27085,108642,5 +101298,Luke,21431,94976,13 +101299,Matthias Bleuel,107445,1084,0 +101300,Riki - the Mother,137504,123858,6 +101301,Harry Stadling,27230,156453,0 +101302,Gale,376292,20494,1 +101303,Young Wife,145135,109907,21 +101304,Chuck,49158,100937,9 +101305,,392832,555528,7 +101306,Jazmin Biltmore,30139,60561,0 +101307,,182799,24360,5 +101308,Dancer,340275,1531610,52 +101309,Jo Ainsley,194509,83477,4 +101310,Frank,9765,1881,5 +101311,Jack,225285,55469,5 +101312,Matt,237171,30930,5 +101313,Himself,241170,12643,4 +101314,Father,165718,112278,6 +101315,Wes McQueen,28484,20501,0 +101316,jako Głowacka,406449,566323,7 +101317,Mrs. Theodore,120802,7401,5 +101318,Vanessa,207850,1199519,4 +101319,Adoption Lady,18908,77530,6 +101320,Bobby,340215,1630262,6 +101321,Detective Mancini,20047,23346,1 +101322,Vincent,33704,77928,1 +101323,Serpent Mother,411442,70689,7 +101324,Jack,84577,10182,1 +101325,Ed Spencer,289225,1545503,10 +101326,Sargon,13486,74748,1 +101327,Cheerleader / Dancer #5,11247,1776509,41 +101328,Himself,374460,7317,12 +101329,Squeep / Grungees (voice),17009,15831,9 +101330,Broker,43811,89016,82 +101331,Headwaiter (uncredited),43522,1121715,70 +101332,Albanian Drug Lord,2001,1781708,49 +101333,Beautiful Brunette,345915,1634313,14 +101334,Palle,201124,125628,0 +101335,General Barr,94480,1060279,3 +101336,Rita,8556,43451,7 +101337,Producer,15019,1711,13 +101338,Wendy Moira Angela Darling,120672,114767,6 +101339,муж Анжелы,83456,568339,11 +101340,,19082,1179595,6 +101341,Lopecito,127468,942179,2 +101342,Шариков,43680,240545,2 +101343,Proprietor (uncredited),43419,32192,23 +101344,,92737,70827,2 +101345,Soldier 2,255160,1898249,37 +101346,"Christopher 'Chris' Dollanganger, Jr.",267793,1315943,3 +101347,Ray Jackson,27711,98805,3 +101348,Airport VIP Security,85435,1187391,8 +101349,Alix,77246,19,4 +101350,Lulu,17258,30366,13 +101351,Himself,284296,16377,11 +101352,Young Lizzy,120854,966753,3 +101353,Hittite Officer,24973,33820,31 +101354,Gina,32588,137424,4 +101355,Louis Ascot,36463,83912,3 +101356,Bree,388243,1098756,5 +101357,Mouse Foreman (voice),269149,1340677,32 +101358,Herself,35639,119601,8 +101359,Keiko tamura,98631,550869,4 +101360,Pentagon Tech (uncredited),246655,198540,93 +101361,Barbara Winterslip,413669,13852,7 +101362,Dr. Wahrman,115054,5737,6 +101363,,62783,143692,1 +101364,Sandri,28573,9920,1 +101365,Police Chief (uncredited),22943,1086582,13 +101366,Tadfe,12427,1811520,3 +101367,Lt. Becker,36373,10162,4 +101368,Hermann Oechler,202183,67010,2 +101369,Chuck Scott,29100,7125,0 +101370,Sarah,16563,1184299,10 +101371,Nicholas Urfe,33228,3895,0 +101372,Meredith Lawrence,286971,1292644,11 +101373,,87204,74710,1 +101374,Kurt,2993,3836,10 +101375,,115161,49357,2 +101376,Rahul,161227,42802,0 +101377,Narrator (voice),118,10225,25 +101378,"Anka ""Gensonina""",346443,908548,3 +101379,Karen,159201,941439,5 +101380,Himself,282268,224290,13 +101381,Mr. Bowery,367147,13028,9 +101382,Sonny,158750,21259,0 +101383,Recumbent Biker,10071,19278,8 +101384,Leonard Weston,175027,1204239,8 +101385,Wendy,218329,1203080,4 +101386,Herself,13516,939072,4 +101387,Mullroy,285,1714,21 +101388,Nicole Hurley,27573,4491,1 +101389,Mrs. Quimby,19766,79106,7 +101390,Geoff Mercer,311291,14011,1 +101391,Ellinor,29923,105256,10 +101392,Liz Maddux,125990,117085,5 +101393,Brett,305342,81316,8 +101394,Kyle Timkins,75622,9778,20 +101395,Tony,329805,25340,2 +101396,MP Raja Uday Singh,14159,87328,3 +101397,Wedja,40859,1180864,9 +101398,Siddharth Parashar,60392,109738,0 +101399,Erika,54093,139946,10 +101400,Enfermeira,296288,1839910,18 +101401,Trooper Prestone,9542,14320,6 +101402,Max,49084,544118,6 +101403,Luisa,106155,43628,2 +101404,Jeffrey Stewart,25633,51764,4 +101405,"Nicholas, Count of Hungary",58905,3007,21 +101406,Complice Romero 2,38883,1125601,12 +101407,Footwear Wholesaler,62397,1894272,25 +101408,Dora,137614,1062012,0 +101409,Phillip Rauch,130739,44329,5 +101410,Basil,107985,11180,7 +101411,Lieutenant Fujita,1251,33519,5 +101412,Melanie,48587,231755,2 +101413,Taxi Driver,14589,1438015,85 +101414,Lope,42329,1363232,8 +101415,,306555,1897661,8 +101416,Hedlund,19181,1097797,10 +101417,Tattoo Joe,45243,11151,15 +101418,Mayordomo del Duque,145481,115482,12 +101419,Dancer,1271,1330767,62 +101420,Business Pedestrian (uncredited),337339,1782495,62 +101421,,299165,1697813,34 +101422,Grandy's Friend,10096,1622585,31 +101423,Pupala,150223,240837,5 +101424,Chickadee,11496,1525609,11 +101425,Countess de Toulouse-Lautrec,10910,67443,4 +101426,Rubber Legs,49642,68677,2 +101427,Sono shounen-jidai (Childhood Sadao),135335,1082746,3 +101428,Stella Bergen,31324,4111,1 +101429,Michael Karelin,126523,1117996,8 +101430,Paul,9655,21047,8 +101431,Jared,99367,936932,9 +101432,Elizabeth Curtis,37126,139450,2 +101433,Subject #15,29151,49827,3 +101434,Roger,333354,1685301,14 +101435,The Gypsy ('The Dancing Princess'),28367,17755,13 +101436,,182843,69785,10 +101437,,318359,1144928,3 +101438,Janice Bell,27203,10159,2 +101439,Bodie,40807,54716,25 +101440,Gośka,14558,140651,4 +101441,Neil,60281,880,0 +101442,Sister Dragon,284564,41234,8 +101443,Himself (archive footage),14286,19011,3 +101444,Liu Fang-Zheng,70057,1174658,6 +101445,Yvonne,747,47730,10 +101446,Narrator,23524,23119,11 +101447,Dino Palladino,55448,1121,3 +101448,Jim Heeler,16410,101501,8 +101449,Comic Con Attendee (uncredited),214756,1759670,92 +101450,,129229,1088726,1 +101451,Girl in Apartment Listening to Radio (uncredited),14615,1045604,73 +101452,Bennet,254193,154917,9 +101453,Portero (Doorman),29338,102093,5 +101454,,39493,1206373,6 +101455,Harmony,26152,56649,3 +101456,John Eaton,112284,72059,3 +101457,Benji Dunn,56292,11108,2 +101458,Ανδρέας Μαυρογιαλούρος,297342,1129635,1 +101459,,64044,1190346,9 +101460,Detective Waylon,70585,4175,1 +101461,Man Restraining Johnny in Courtroom Fight,26323,117036,21 +101462,Hassan,34944,45380,5 +101463,Swami,27621,80389,8 +101464,Siv,383618,1581392,1 +101465,Bactrian Commander,1966,147591,38 +101466,Mrs. Scalia,11045,1456300,17 +101467,Shapiro,31672,78091,8 +101468,The Limey,240832,7031,4 +101469,Colonel Brauner,195385,1007561,3 +101470,Ruth,78177,184793,1 +101471,Emilie,381356,1448396,12 +101472,Lucile,26810,124976,1 +101473,Rohan Bhatnagar,403867,78749,0 +101474,Kristy,415633,1678285,7 +101475,Ari,20160,125628,0 +101476,Frank Cutter,222932,179479,1 +101477,Dr. Sam Moreland,28433,2496,6 +101478,Steve,142989,169005,9 +101479,Dad - Col. William P. Walker,107430,112884,2 +101480,Gill,266425,1313152,25 +101481,Philly Russo,297853,1466,12 +101482,Alexa,139998,139135,7 +101483,Bosun Patrick Forget,367006,1217201,8 +101484,Grace Dover,146233,49,3 +101485,Mr. Kendall,68684,168341,7 +101486,Hamara,230179,148385,10 +101487,Fox (voice),28118,207,5 +101488,Eddie Kidd,16182,79932,12 +101489,havran / čaroděj,8128,227400,1 +101490,Pregnant Nun,28847,99549,8 +101491,Tilly Collingwood,339312,989823,2 +101492,Roman,1691,37019,12 +101493,Bartender,17940,208979,7 +101494,Christopher,20047,41687,4 +101495,Background,408508,1707542,5 +101496,Detective Molina,9828,59672,16 +101497,Tom Merrick,7837,27763,0 +101498,Ralph Houk,20536,14888,4 +101499,Pilot,22076,31367,9 +101500,Jack Campbell,296025,130129,9 +101501,Nun,16135,79525,30 +101502,Herself - at Banquet (archive footage) (uncredited),33740,97777,69 +101503,Nils Strindberg,72785,567106,2 +101504,,288788,1089499,3 +101505,Becky Gibson,218778,1186940,9 +101506,Honoré,16374,80473,3 +101507,"Ralph Douglas, Immigration Officer",65282,94882,6 +101508,Leonidas at 15 yrs,1271,17294,11 +101509,Madame,170677,35314,2 +101510,Jack Scolese,48949,109625,2 +101511,Herbert 'Buzz' Mitchell,90932,80567,1 +101512,Footman,245700,27822,42 +101513,Sparkle,21554,32385,1 +101514,Elizabeth Parker,169869,90230,12 +101515,Stony De Coco,114096,1205,0 +101516,Koji,234284,552051,5 +101517,,15776,1565330,26 +101518,Traitor to the fatherland,211879,156157,3 +101519,Emperor Shirakawa,45987,134312,14 +101520,Avelin,129851,85984,8 +101521,José,107287,106274,1 +101522,Juan,382598,1763722,11 +101523,Gaishofer,85699,169,10 +101524,Mizobata,36063,1039219,3 +101525,Notaris,4134,34871,3 +101526,Hefty Man,20210,76365,21 +101527,Pod (voice),51739,2983,17 +101528,Nate's Girl,153854,1302833,8 +101529,Ella,20304,58962,2 +101530,Paxton,1690,19487,0 +101531,le juge d'instruction,63224,9743,3 +101532,,194853,1175192,11 +101533,Toto,242683,935345,7 +101534,le couple en lune de miel,252102,148735,11 +101535,Karine,41211,42718,9 +101536,Tigre,41115,56247,13 +101537,Jim's Friend,75315,1090894,27 +101538,Nancy Turner,339408,53923,7 +101539,Mr. Schnoebelen (voice),378236,1859936,19 +101540,Tsu'Tey,19995,10964,9 +101541,Xander,238589,15111,0 +101542,Mayor Snow,109491,101847,16 +101543,Bakica,11373,1049503,7 +101544,Mrs Thorpe,18093,1738909,18 +101545,Minister,41599,31296,3 +101546,Tom Lister,28297,13786,20 +101547,The Bishop,94468,70990,2 +101548,Police Commissioner,81541,101240,14 +101549,Duval - Riché,13728,78421,2 +101550,Bates,24756,1175135,12 +101551,Himself,105583,91431,8 +101552,Octave,27102,28255,2 +101553,Bit Part (uncredited),54139,20604,23 +101554,Welcome to the 60's Dancer,2976,1423398,142 +101555,Bar Fighter,11509,82507,14 +101556,Dude #1,193893,1381649,47 +101557,"Lady Catherine ""Kitty"" Cheney",120676,14288,4 +101558,Beatriz,332872,114463,5 +101559,Carola,105906,578096,7 +101560,British Soldier,1116,1271508,72 +101561,Julia Davis,18598,83286,2 +101562,Eiko Hirayama,124994,24551,0 +101563,,359154,1507961,1 +101564,Ranger Mildred Luna,155191,5151,2 +101565,,85673,985446,9 +101566,Laila,253283,164094,4 +101567,Sasha,345775,91355,1 +101568,Background,408508,1707543,6 +101569,Fotis,371818,1592858,4 +101570,TV-reporter,15472,1244028,33 +101571,Mother Red Cap,104720,7641,7 +101572,Wild Cat (Store Leader),17467,1357039,14 +101573,broker,280019,1336804,10 +101574,Pelda,317,4637,2 +101575,Alvin Montgomery,33557,110878,6 +101576,Carmen (The Grandmother),214138,1198778,3 +101577,Young Yacht Guest,169355,78744,13 +101578,Sky Flower,1579,42009,3 +101579,,276401,128645,6 +101580,Lu Chan's mother,121823,21911,1 +101581,Iris,47120,1619040,8 +101582,Flash Harry,10748,59919,6 +101583,Daphne Blake,67900,15761,2 +101584,,289278,111343,7 +101585,Ray,220029,652,0 +101586,Marcia,18633,1644186,16 +101587,Cab Driver,987,1217165,22 +101588,La femme de Thierry,329712,1517228,1 +101589,Joe,3556,725,4 +101590,News Anchor,424488,1237366,56 +101591,SWAT Commander,5289,21264,19 +101592,Sgt. Floyd Pepper / Camilla / Sweetums / 80's Robot / Lew Zealand / Uncle Deadly / Roowlf / Crazy Harry (voice),64328,135467,12 +101593,,327225,1357105,13 +101594,Other Student in Class,273896,1568216,8 +101595,Midnight Express,32526,1176950,14 +101596,Hélène,3423,6250,1 +101597,Satoru Suzuki,31161,74862,0 +101598,Chon,57627,226564,0 +101599,Abdul,148,1668,6 +101600,Leila's Mother,45899,1339670,4 +101601,Michael (Lefty) Jones,194407,103672,5 +101602,"Игорь Владимирович Цаплин, кандидат в губернаторы",20963,86872,10 +101603,Mossie's Wife,262958,1537740,27 +101604,Harlem Bystande,1724,39390,40 +101605,Jack,21583,534,13 +101606,Carl (Masked Man),294254,1576251,21 +101607,Shelly,101852,168976,3 +101608,MOB Dancer,243683,1290631,47 +101609,Ania,82501,908548,2 +101610,Cal Baggett,229757,30002,7 +101611,"Marito, lo sposo",43646,129576,3 +101612,Annie,86391,400,2 +101613,Luc Deveraux,28510,15111,0 +101614,Carmine Crocco,43200,125696,7 +101615,Chuck,72638,1551919,24 +101616,Trash,69152,234314,0 +101617,"Rico, the guide",38221,1117080,6 +101618,Yaya,54514,105668,1 +101619,John Fremont,320588,1213603,1 +101620,Audhild,15440,142001,5 +101621,Colonel Sam Colby,175027,81934,3 +101622,Buxom Girl #1,20210,1779982,14 +101623,Le mari de Sarah,53354,7037,3 +101624,Tom,314011,1425934,2 +101625,Hr. Otto Løwe,21282,72912,2 +101626,Annette,85699,46965,19 +101627,Chinpura (Yakuza),31161,68706,4 +101628,Patterson,66113,59114,11 +101629,Basketball Fan (uncredited),44115,1613045,23 +101630,Soldier in Street #1,616,77955,28 +101631,Officer Burroughs,10053,62562,9 +101632,Troll (voice),15906,150967,12 +101633,The Waiter,17956,1006136,26 +101634,David,341895,1199187,10 +101635,Pavel Zubov,260584,96516,1 +101636,Taxi Driver (uncredited),14615,1194424,52 +101637,Narrator,53367,2226,1 +101638,Antonio Regales,78318,131545,41 +101639,Ella Bird (voice),153518,1172108,20 +101640,Jim,64720,79416,9 +101641,Uncle Max,84340,84848,14 +101642,Annie,8272,121757,14 +101643,Beth,73952,8329,0 +101644,Mary,747,11116,14 +101645,Amy Roberts,45792,16859,1 +101646,"Dado, fidanzato di Melissa",75001,1078317,8 +101647,Pooja,20968,81869,2 +101648,David Grajalez,370741,103977,2 +101649,Sharon,6023,11150,4 +101650,guard,32091,1191933,12 +101651,Edward Duke of Castlebury,79113,10222,2 +101652,,320910,1717670,13 +101653,Kostümbildner,80125,24440,9 +101654,Alice Corradi,54309,1054038,6 +101655,Slava,388862,1235628,7 +101656,R.J. Brannegan,42669,124855,11 +101657,Prentice,117098,1098072,4 +101658,Carmen Colson,16164,2882,1 +101659,Lt. John Quinn,80473,22131,3 +101660,,11328,1444490,38 +101661,Boy (uncredited),16442,121288,28 +101662,The Bearded Lady,17796,16619,6 +101663,Town Resident / Train Commuter (uncredited),28178,1103658,11 +101664,Police Officer,268920,1747278,102 +101665,Silverfish,212996,62427,9 +101666,Kurt,318781,1146744,14 +101667,Ethel,98349,41640,3 +101668,Špic,126090,1425449,10 +101669,Mrs. Ames,40719,77160,9 +101670,Flower shop customer,36375,121323,19 +101671,Nadja,33623,582056,7 +101672,Chris DeRose,385750,212,8 +101673,Dr. King,99545,2495,7 +101674,Antonio,335053,1073185,7 +101675,Laura,174162,536802,4 +101676,Shane,84348,1039531,4 +101677,,228496,87266,4 +101678,Julian,112161,51935,3 +101679,Michel Racine,329809,28255,1 +101680,Brother Nak,49853,1648798,42 +101681,Soo-A,214209,1278162,5 +101682,Trish,39800,19,3 +101683,Girl,31915,198327,9 +101684,Himself,58923,1658153,2 +101685,Cort Hayjack,41857,4316,11 +101686,Oz Cardinal,327749,1474708,5 +101687,Young Sylvia,227306,1394430,31 +101688,Kapteeni Yrjö-Ylermi-Armas Kuortti,55756,53509,4 +101689,Herself,122134,1419401,3 +101690,Lt. Leopold von Kaltnegger,946,14362,7 +101691,Lawrence Reagan,39048,104017,2 +101692,Disturbed Restaurant Patron (uncredited),89492,1513736,24 +101693,Charlie Mary,202941,89735,12 +101694,Blue John,44115,63484,12 +101695,Cole Slawsen,63315,169257,4 +101696,Miro,98339,52703,4 +101697,Jarrod,42684,34489,0 +101698,Friend of Nang Ping,87894,34760,11 +101699,Geoffrey Fielding,290379,2923,6 +101700,Bertram (voice),23566,74362,9 +101701,Gaspard,17831,103176,9 +101702,Mitja,88059,228650,2 +101703,H2O,11403,227,0 +101704,Ta Sha's father,25425,116353,4 +101705,Mutter Steffi,75969,1191238,17 +101706,"Narraboth, Captain of the Guard",96951,1353812,3 +101707,Monica,162382,1413679,5 +101708,Ariane,52049,17882,0 +101709,Pine Cone Girl,263115,1821499,71 +101710,Stan,18273,6283,4 +101711,Himself,264569,65923,1 +101712,Nate,13655,130565,9 +101713,Florine Chanler,198176,589220,1 +101714,Bobby Kalinowsky,32845,569165,3 +101715,,8014,1095404,9 +101716,Himself,406431,1138377,12 +101717,TV Anchor,329865,1239345,59 +101718,Miss Disendorff,212713,10926,10 +101719,Musician,167810,1793183,26 +101720,Dancer,369885,21029,18 +101721,Ringo Starr,6575,17881,19 +101722,Nolie,16090,243805,14 +101723,Andrzej,133521,966842,3 +101724,Bar Fighter,11509,184792,15 +101725,Chester Hargis,40983,104035,16 +101726,le capitaine Orlac,58928,77906,5 +101727,Himself,377151,1579117,2 +101728,Additional Voices (voice),130925,52699,21 +101729,El Meca,47211,583709,2 +101730,Le camionneur,3423,580230,8 +101731,Alcide Nikopol,5552,3491,1 +101732,,15776,1565326,22 +101733,Prof. Virginia Fenster,74924,40247,1 +101734,Feral Kid,375366,1886321,17 +101735,Molly,161602,117042,4 +101736,Eckehardt Tiedgen,130233,2311,0 +101737,Kira,257450,1718323,5 +101738,Herman Rundvik,27622,14968,7 +101739,Front Gate Guard,207641,19687,16 +101740,Patrick,170517,86110,12 +101741,Comandante Teresa Moreno,70133,42123,3 +101742,Julie de Hauranne,84016,226638,0 +101743,Dr. Classen,58757,1305407,18 +101744,Poppy's Escort,42678,24826,16 +101745,Pepe,39979,14830,1 +101746,Miss Minter,46586,89895,11 +101747,Kerry,92391,1071126,5 +101748,Alphonse Pinsonneault,41277,38528,21 +101749,Mafioso,60014,1862479,10 +101750,Lt. Cmdr. John Lawrence,44890,12149,0 +101751,Hitler,123961,106805,10 +101752,Graham's Mother,1640,18292,13 +101753,Aunt Vera Edwards,35404,114288,11 +101754,Toulane Thomas,119893,1071198,2 +101755,Tommy,13689,225,4 +101756,Rita Walden,92311,109410,0 +101757,Uvarov,143380,1189738,7 +101758,Benni Baum,46943,20425,4 +101759,Rutger,348320,1486384,10 +101760,Bank Teller,37301,101901,14 +101761,"Vincent, Houseboy (uncredited)",25807,82385,15 +101762,Yasmina,16047,1147085,7 +101763,Earl Devereaux (voice),109451,53256,7 +101764,Ironhide (voice),38356,84495,18 +101765,Miss Reba,5928,8493,3 +101766,Kida,8965,34985,1 +101767,Nattsköterska,60899,231924,12 +101768,The Witch,64847,1455167,6 +101769,Arden,13551,3051,1 +101770,The Killer,29128,44412,13 +101771,Henri,105551,13966,8 +101772,Anders,75233,71610,0 +101773,Todd,9893,60076,16 +101774,Rita,366631,1212660,4 +101775,Father Stuart,128841,1088036,7 +101776,Hammond Maxwell,38027,64457,3 +101777,Young Ruth,228205,566331,6 +101778,Martin,272426,56604,8 +101779,April,140846,110014,8 +101780,Ed Adams,33923,30510,0 +101781,Mitch,74777,1395235,7 +101782,Offical,115109,131545,36 +101783,Martha Steele,32610,9072,5 +101784,Vesta,13610,66071,4 +101785,Camille,305455,586191,4 +101786,Stryker,2080,6413,2 +101787,Robert Neuman,127803,1085818,7 +101788,Glader,198663,1415416,22 +101789,Robin,85430,932046,1 +101790,Jay,13946,170773,5 +101791,GoGo Tomago (voice),177572,78324,4 +101792,Tommy Biggs,6980,16479,10 +101793,Radio Baritone Soloist (uncredited),43268,94803,10 +101794,Beth Riley,11172,978719,26 +101795,Additional Voices (voice),82703,963134,49 +101796,Jay,13058,78064,2 +101797,Danny's Dad,343934,84407,9 +101798,Older policemen,223551,43644,7 +101799,Gang Se-jong,32168,73249,1 +101800,Burgundy,46915,1248,2 +101801,Hotel-Keeper,59704,229666,10 +101802,Heather,130278,138860,3 +101803,Detective policía (uncredited),42502,1101311,27 +101804,král Vilém,160106,140438,2 +101805,Cameraman,18665,65934,13 +101806,Lena Kaligaris,9779,6279,1 +101807,Marianne,214093,13688,2 +101808,Albert,86391,24501,5 +101809,,28746,1326025,3 +101810,Drummer,76341,1734197,54 +101811,Borek,382155,136682,28 +101812,William,6023,47296,5 +101813,Aleksandr Matrosov,82737,83838,4 +101814,1st Monteray Tavern Bellboy,31899,94322,24 +101815,Bürgermeister von Grasse,1427,16273,1 +101816,Neighbor,158990,85949,10 +101817,vanginvartija,442752,1761830,20 +101818,Petahya,280030,1596414,12 +101819,Mehmet,44246,133819,5 +101820,Jim Chee,155191,33527,0 +101821,,73578,1045388,10 +101822,,32234,148469,1 +101823,John Power,21893,15498,5 +101824,Sherry,27740,102648,7 +101825,Joy Carter,257345,41421,6 +101826,Rani,39347,35776,1 +101827,Romain,2566,26100,0 +101828,Caleb,34231,27737,1 +101829,Screaming Girl,39824,1866646,20 +101830,Sabine Barnerias,259,3592,4 +101831,Dinklage,9655,980,3 +101832,Kim Thompson,83125,1141412,4 +101833,Megane,43967,105816,23 +101834,Jo,15316,1231380,11 +101835,Passenger in Taxi,40258,72336,6 +101836,Malcolm,311764,17637,4 +101837,Gabby Corky,9893,43775,2 +101838,Wilhelm Kranz,613,28343,30 +101839,Il cameriere,63179,120026,7 +101840,Clair,60965,232043,8 +101841,Genziano,109979,27177,1 +101842,Pierre Broussard,36089,1276754,3 +101843,Neil Bateman,62392,49357,16 +101844,Schroeder (voice),227973,1271300,8 +101845,Fluther Good,173456,13820,2 +101846,Native Chief,30876,1338069,5 +101847,Swimming team (Perth's friends),292625,1758605,17 +101848,Prison Visitor (uncredited),76543,1638307,16 +101849,Martin Hughes,65509,120560,6 +101850,Doug Greenhut,13493,140567,5 +101851,Frank's Mum,115276,47570,10 +101852,Lucy Stetson,54523,1026049,13 +101853,Tillaver,12594,8396,4 +101854,Dr. Tosi,27409,25816,6 +101855,,62363,1100816,8 +101856,Taxi Driver,47404,103753,33 +101857,Soona Mistry,249914,35777,2 +101858,Aunt Fanny,9928,38334,7 +101859,Luis's Girl #2,9956,60925,16 +101860,Glenn Lauder,321039,127387,3 +101861,Anna Wallin,76047,251582,2 +101862,Dr. Alex Wyman,109122,134635,5 +101863,JARVIS (voice),169934,111375,8 +101864,Himself,410718,1702120,20 +101865,Haderuma,90351,1018090,6 +101866,The Strike Leader,3059,90074,27 +101867,Nairomian Crying Woman,209112,1548735,118 +101868,Andrew Fayden,127521,26066,3 +101869,Pilot,43833,939861,33 +101870,Police Captain,47404,954213,36 +101871,Brent,358353,353681,9 +101872,Mara,56804,1007522,3 +101873,Tommy,213681,1371383,19 +101874,Matt McGinnis,16234,166406,17 +101875,Hanna Reighton,180759,1266677,1 +101876,A Bakter,63625,125361,1 +101877,Gitte,23289,85911,4 +101878,Johnny Cash,126016,84678,0 +101879,Brokebeak (voice),65759,52699,23 +101880,Wo Pa Fong,188836,131842,2 +101881,Candy,9352,221950,12 +101882,Boss of Priya and Honey,32740,87304,6 +101883,Old Woman from Village,255160,1898241,27 +101884,Doc Dorando (as Lawrence Criner),94739,103018,2 +101885,Shazan,64784,122726,0 +101886,Kyle Moat,98250,1016503,7 +101887,Robert Capa,1272,2037,0 +101888,Queen Ann,41609,14730,4 +101889,Ed Newfeld (NFL Scout),23628,129128,23 +101890,Police Chief Markey,19017,141402,12 +101891,Fran Hobson,95358,13567,0 +101892,Davis - Resort Owner,53949,1432701,27 +101893,King Cole / Peter / Humpty Dumpty,16652,563378,1 +101894,Mrs. Louise Fields,50079,131340,5 +101895,Cody,120802,1128881,1 +101896,Aigami,366170,146817,9 +101897,New York Police Officer #1,2355,203738,26 +101898,Prime Minister Kruel,47508,133099,7 +101899,,282086,1353417,9 +101900,Himself,428355,216147,1 +101901,Jim Akerman,116306,156245,2 +101902,"Niovna-Vlasova, the Mother",98914,1064930,0 +101903,Laura Reynolds,63096,20141,0 +101904,Augusto Vanghetta,262786,88470,0 +101905,Frankenstein,73933,112692,2 +101906,Diddy,300669,1669336,5 +101907,The Dag,76341,1036288,9 +101908,Lundstrom,43811,1021756,8 +101909,The General (1955),57597,37254,18 +101910,John,3638,33431,8 +101911,Citizen,24973,1747661,39 +101912,Teller's Head (credit only),15060,74296,13 +101913,Danny,1481,1844329,18 +101914,,47448,1796596,8 +101915,Snow,92635,553504,0 +101916,Himself,86828,224290,9 +101917,Greg,66881,549055,8 +101918,Wanda,75300,53862,0 +101919,Roy,38031,16851,3 +101920,Bert,31390,11803,5 +101921,Bellboy (as Carl Switzer),33792,941239,11 +101922,Larry Hannaford,72847,2007,1 +101923,Candy,347630,1336690,38 +101924,Goldwyn Girl (uncredited),108224,34756,10 +101925,Elwin H. Stanton,377170,119542,10 +101926,Corrine Dollanganger,236399,69122,0 +101927,Kristin Kurlander,302528,944584,14 +101928,Susjeda,341559,1297820,10 +101929,Himself,196065,1382202,6 +101930,Lory,120922,120612,6 +101931,Himself / Neo,14543,6384,0 +101932,Marguerite - la bonne délurée,55370,28254,8 +101933,Red Flannel,59965,27031,24 +101934,Removal Man,127560,1380553,13 +101935,,218508,60763,5 +101936,Jenny Walker,12171,47625,2 +101937,Namiko,38010,83528,10 +101938,Mike,46436,216149,1 +101939,Ain,176983,1039343,11 +101940,Un giovinastro,43231,123910,9 +101941,Heiji,402455,68706,14 +101942,Ross / Cyrus / Mime (voice),153518,25147,9 +101943,Maria,270383,1475082,9 +101944,Claudio,135536,236455,2 +101945,Mike Tanaki,19719,85105,12 +101946,Caroline enfant,121895,1366667,5 +101947,Seigmund Freud (voice),110392,6941,7 +101948,Michael 'Nuggin' Taylor,43419,4068,0 +101949,Luc,395883,1316023,5 +101950,Polar Penguin,116977,58317,6 +101951,Actor,15086,11357,0 +101952,Rich,12759,63205,4 +101953,Dorothy,157847,1372217,11 +101954,Mr. Prajapati,26153,6217,3 +101955,Omar Sadiki,12113,762,3 +101956,James,100450,39390,4 +101957,Caldicott,41597,14302,4 +101958,Timmy Nolan,30993,1798339,4 +101959,Ernst Züchner,341491,8198,3 +101960,Junior Agent (uncredited),15616,1617453,16 +101961,Joe D. Ross,43390,13294,1 +101962,Meeta Mattoo,20742,85669,11 +101963,Leonard (voice),153518,19278,4 +101964,Briggs,145244,99481,6 +101965,Simon,2196,21088,5 +101966,Maya,9675,12519,2 +101967,Nymph,50086,143325,0 +101968,Kid (as Yuen Lau),45197,18897,0 +101969,Pvt. Hamm,189197,80352,15 +101970,Lai,25784,143436,6 +101971,Mrs. Walker,4703,39015,5 +101972,Looking Glass Colonel - 'Sam',20674,38570,12 +101973,Junior #2,540,1319846,20 +101974,Lucy Webb,237756,20374,1 +101975,Etta Crue,248706,1225571,7 +101976,Kid on Phone,15671,1392140,12 +101977,Left Hand of God,142984,955354,9 +101978,Stephen Van Kovert,184267,130491,7 +101979,Pickup truck driver,5759,1287659,6 +101980,Diner Waitress,6557,38416,27 +101981,Liliana,332872,1898806,32 +101982,Airline Passenger,335970,1718161,67 +101983,Rita,36335,97675,6 +101984,Livingston Dell,298,1898,11 +101985,Extremis Soldier,68721,1366,79 +101986,Sydney Carton,17831,29522,0 +101987,Ojciec Malenstwa,82027,592914,5 +101988,,37959,71643,11 +101989,Grandpa George,118,1815747,17 +101990,Angela,86838,18182,6 +101991,Den,30305,106033,3 +101992,Madam,374473,1650253,15 +101993,San,137504,82873,2 +101994,Future Angel (uncredited),9471,67848,23 +101995,J. Ferguson,86956,157336,4 +101996,Harry Erskine,40060,3150,0 +101997,Getatoueerde Man,74661,28896,13 +101998,Nebenklägerin Franziska Meiser,421958,73926,5 +101999,Himself,55225,1593238,7 +102000,Tsotsi's Mother,868,13109,13 +102001,Okei,219233,213504,0 +102002,Troupe,19995,83105,33 +102003,Nikki,19918,18976,1 +102004,Maj. Jonathan Shepird,321039,101613,23 +102005,"Chun Jae-in, undercover cop",54555,83221,0 +102006,Howard,353326,192846,13 +102007,Laughing Kid,64328,1030312,20 +102008,Márta,352917,19998,2 +102009,Faye,29136,1815812,4 +102010,Supervisor,436,5893,5 +102011,Dolly D'Cruz,341895,1296662,13 +102012,Lucia Lane,73600,1013092,1 +102013,Stig-Helmer's mother,19181,231918,17 +102014,Cal Devereaux (voice),109451,87056,13 +102015,Secretary,16996,73456,22 +102016,Le Bossu,151826,1172639,10 +102017,Syd,7515,16828,0 +102018,Voice Cast,222935,228722,44 +102019,Stephen,64725,18966,6 +102020,,375742,1564303,36 +102021,Bael,26962,1320768,8 +102022,Himself - Roaster,296192,16165,5 +102023,Schoolgirl in Orphanage (uncredited),47758,15008,13 +102024,Miguel Tapia,291577,1362514,1 +102025,Dr. Browning,21208,452,5 +102026,,202238,1184372,4 +102027,Grande Dame,5123,184040,38 +102028,le premier faux aveugle,31522,13697,5 +102029,Narrator,93858,150512,8 +102030,,20646,550626,7 +102031,Angelina Timmins,290555,543990,5 +102032,Vänrikki Nappula,55759,223073,2 +102033,Mr. Crawford,278348,121718,2 +102034,Dobbins,77625,5589,5 +102035,Federal Man #1,157343,1006802,7 +102036,Himself,76142,1032,2 +102037,Elsa,13734,54165,5 +102038,Bruno,31258,114497,4 +102039,Oli,1690,33935,2 +102040,Mother of Napoleon and Jerome,195068,17755,3 +102041,Laura,337104,1238952,10 +102042,Cult Member Gr'hg,14923,1827518,76 +102043,Rumpoey's Maid,2805,1278240,7 +102044,Ingeborg,142712,4797,7 +102045,Alexis,13596,11661,1 +102046,Mrs. Christie,32082,12957,6 +102047,Hiroshi Murai,43877,1195179,2 +102048,Cyclist (uncredited),86643,120493,14 +102049,Lucy,38027,168638,15 +102050,Wealthy Landlord,8932,931686,6 +102051,Scott Thomas,9352,41464,0 +102052,Edward,22447,81260,1 +102053,Pvt. Casey,133715,2751,5 +102054,Nick Miller,31380,1337234,1 +102055,Victor's Wife,32577,14464,10 +102056,Satoru Tawada,49258,63696,1 +102057,,20092,1305782,7 +102058,Warden,41283,13022,5 +102059,Cathie Dimly,237,1246,3 +102060,Tenente dei Carabinieri,105384,1140498,10 +102061,"Svend E, Direktoren for det hele, Kristoffe",5206,6121,0 +102062,Howard Schatz / Ben Cartwright,26486,15253,21 +102063,Male Nurse,270221,1106491,7 +102064,Meret,10500,683,3 +102065,Daphne,14862,96791,7 +102066,"Miss Wilding, Wilson's Secretary",28761,87416,2 +102067,Anne,58197,65002,0 +102068,Farmer's Girlfriend,170279,1150932,11 +102069,,63215,1520911,30 +102070,Corey LaFayve,73661,4940,1 +102071,Lars,310602,93108,5 +102072,Hospital Visitor (uncredited),284052,1588173,39 +102073,George Graves,47739,117027,16 +102074,Lila,397717,1722990,34 +102075,Mad Scotsman,374473,143419,23 +102076,Oliver,30361,11086,2 +102077,Eva Braun,613,8797,4 +102078,Thomas Platz,152989,147041,0 +102079,Elaine Corwin,60551,70035,0 +102080,Snap Wexley,140607,17305,17 +102081,,369373,1584566,1 +102082,Himself,160297,21629,4 +102083,Charlie,16839,13362,2 +102084,Army Officer on Train,56154,30196,22 +102085,Receptionist,26486,1236068,25 +102086,Gilou,377853,47822,2 +102087,Ryou (voice),21712,90161,4 +102088,Matthew,335778,31402,19 +102089,language Teacher,80316,110733,7 +102090,Nudist,92496,1787174,26 +102091,Mary-Claire King,177047,9994,1 +102092,Margo Conroy,95140,99182,8 +102093,Frank the Trucker,14435,61117,11 +102094,Horseman - War,246655,1366510,19 +102095,Liz Allen,45679,114955,7 +102096,Eloise Jackson / Cora Smith,267483,1315167,3 +102097,Captain Kokkonen,374883,1555432,2 +102098,Top Hat,25388,35085,8 +102099,Peggy Gravel,14262,9292,1 +102100,Catherine,338189,8293,4 +102101,Judith,125506,33656,0 +102102,Lacy Bond,90590,153621,0 +102103,President Of The United States,102841,198952,8 +102104,rytíř Čestmír,84030,134722,11 +102105,Sachi Kôda,315846,83526,0 +102106,Conrad Hartman,194722,1174927,3 +102107,"James ""Dodger"" Valenti",156335,1290403,19 +102108,Licasi - Club Manager,46586,31944,7 +102109,The Mute,30366,1076427,11 +102110,Gypsy,17457,64433,0 +102111,Fairy Queen / Marie,15016,45923,5 +102112,Sheriff Walt Fuller,80468,13473,1 +102113,Danielle,27196,1855529,7 +102114,Mila,343702,146342,4 +102115,Ted Harduvel,131351,147119,2 +102116,Lorraine,10407,951993,14 +102117,Landlady,42298,102002,16 +102118,Robbie,215379,1384876,5 +102119,Sorcerer,125510,1462948,9 +102120,Himself,377151,1579120,5 +102121,Kid's Band,41762,1205356,4 +102122,Clas Greve,70670,12795,1 +102123,Julie,266425,1313151,24 +102124,Brigette,48841,3910,5 +102125,1st Schoolboy,85442,1546354,21 +102126,Molly Eaton,114872,1019253,7 +102127,The Stalker,84348,582722,10 +102128,Himself (as Warden Roy Best),61908,234535,7 +102129,William,14387,30582,13 +102130,Cheerleader #3,8669,1281023,30 +102131,Neighbor (uncredited),53387,1373120,9 +102132,Robbie,31397,27005,3 +102133,Hotel Guard,125490,587936,21 +102134,Don Cirillo,10986,118500,5 +102135,Minor Role,43811,1466153,76 +102136,Officer Williams,249021,1187312,10 +102137,Emiel Van Der Busch,55370,11220,12 +102138,Orderly #1,68174,550473,12 +102139,Ronald Blatt,10362,13550,5 +102140,Princess Winnifred,18506,30364,1 +102141,Hawthorne,55152,558447,14 +102142,Aras,37570,575461,3 +102143,King Louis XIV,64046,83544,5 +102144,Anna Troyler,289225,545573,8 +102145,Himself,256561,1296897,7 +102146,Trooper Hapscomb,9542,29754,9 +102147,Dr. Lee,197611,152699,2 +102148,Russian Aide,337339,1723573,23 +102149,Madame Gasket (voice),9928,388,10 +102150,Vice Admiral (uncredited),43419,33007,27 +102151,"Willie, Date 1",196255,1003843,5 +102152,Doctor,255160,1898239,25 +102153,Bradley,59296,9274,4 +102154,Major Rupert Bancroft (uncredited),52440,81291,58 +102155,Dinel Petre,403429,1331483,2 +102156,,38359,86679,3 +102157,,297288,129620,10 +102158,Sandra,16022,1102,3 +102159,Minister / Noah,104430,1152729,6 +102160,Delilah,263115,1472792,38 +102161,Himself,18893,194981,19 +102162,Ludovic Moreau,390357,1187448,6 +102163,André à 8 ans,22618,1294172,7 +102164,le Juge Harlan Plath,209244,39012,28 +102165,Lorraine Burton,72912,49,0 +102166,Vincenzo,302802,1385140,4 +102167,One Touch,102668,1031783,7 +102168,Abel,46341,102228,2 +102169,,56666,88138,5 +102170,Morley,45335,4776,7 +102171,Queenie - Girl on Train (uncredited),75510,34757,7 +102172,Ashley Albright,10025,49265,0 +102173,Catherine the Great,229134,14168,0 +102174,Viljami,468707,147734,6 +102175,Joaquin,18082,133762,4 +102176,Aschenputtel als Kind,153717,1134592,8 +102177,Buzzard Hook,1579,42020,26 +102178,Jarvis (voice),68721,6162,9 +102179,Bigelow,43811,95728,11 +102180,Himself,79644,73831,0 +102181,Afghan Village Man,272878,1271446,28 +102182,Oda,382125,588388,5 +102183,Himself,245394,87387,8 +102184,Jim MacVey,59738,11066,4 +102185,Michel,408024,1656098,6 +102186,Police Lt. G. Roberts,131861,40433,3 +102187,Hermann,24140,16312,2 +102188,College Student,63825,580868,11 +102189,Hamid,1404,16906,6 +102190,Bohemian Man,369885,1363049,19 +102191,Referee,13823,75794,31 +102192,Lucille Krumholtz,22682,157204,6 +102193,Doc Mason,39219,2644,5 +102194,Day,253154,1878709,13 +102195,,137504,1481066,22 +102196,Bearded Man,240913,1116237,20 +102197,"Woman in the House (""In the Picture"" segment)",45577,133246,7 +102198,Malgorzata,154575,1135442,1 +102199,Tenente Cavallaro,56339,125696,6 +102200,Dr. Stephen Strange,14830,65769,0 +102201,"Miss Hibbs, Harry's Secretary (uncredited)",185934,117723,10 +102202,Leader of Rival School Gang (as Kee),33333,58611,7 +102203,Commander Jack Rankin,29290,103492,0 +102204,,104343,1697246,4 +102205,wendy parker,58832,228456,3 +102206,Murder Victim,62190,1292243,4 +102207,Camila,33107,137424,8 +102208,Fiddler - Sons of the Pioneers,134238,223605,27 +102209,Pilgrim / Vicki / Kermit's Mom,15909,149777,5 +102210,Judge Keating,36634,20368,12 +102211,Agent de sécurité,148327,1294275,7 +102212,Shelly,238593,205772,5 +102213,Gabrielle,9787,51975,15 +102214,,47448,224570,5 +102215,Innkeeper,63441,1134979,15 +102216,,92989,1591117,4 +102217,Clive Jackson,42215,47096,2 +102218,3D Movie Guy (voice),68179,78317,16 +102219,"Rutkovsky, the Social Revolutionary",204802,1623844,7 +102220,Steef,90231,102524,12 +102221,Graduate Student,381008,1589600,14 +102222,Maid,335837,1497339,9 +102223,,88953,1524278,15 +102224,Herself,15258,28024,25 +102225,Křivoručka,84030,235641,22 +102226,IPNN Newscaster #1,47412,138891,9 +102227,Ärztin,341745,8205,8 +102228,Governess,27973,106092,20 +102229,Vinciane,270400,586759,15 +102230,Mickey Raymond,84831,20011,0 +102231,Lord Palmerston in Parliament,109716,95757,40 +102232,Marie,297265,122998,11 +102233,Rosencrantz,30995,1112572,4 +102234,Bill Welford,44463,99350,4 +102235,Ava Paige,294254,1276,7 +102236,Frank Heslop,369885,15440,2 +102237,l'inspecteur de police Lescure,74878,3509,9 +102238,Miranda Pierpoint,35826,3380,0 +102239,(uncredited),11577,553157,37 +102240,Eph,157898,95728,12 +102241,Reaver,263115,1203114,23 +102242,Sarrab,62630,4390,1 +102243,Vortigern,274857,9642,2 +102244,Smart Consumer Receptionist 'Ella',59962,172883,30 +102245,Herself,390747,1662624,3 +102246,Captain of the Guards,28090,1268829,6 +102247,Vol (voice),19594,5727,8 +102248,Dudek,109258,18735,6 +102249,Coach Nagy,15907,111180,6 +102250,Leroy,18387,2048,2 +102251,Naomi,42533,1468331,7 +102252,Dan Dark,30141,3223,0 +102253,Joe Weber,27740,21030,0 +102254,Himself,197583,1302827,6 +102255,Miss Hildegarde Martha Withers,84971,82412,0 +102256,Sarah Cronin,120802,969432,35 +102257,Caleb,16997,525243,11 +102258,Bernard Hellring,68752,21520,2 +102259,Kurt Wendell,112287,142584,0 +102260,Black Widow,14609,46423,3 +102261,Big Shitty,102668,62066,1 +102262,Cyber Chick #1,257344,1522344,31 +102263,,222517,1380260,30 +102264,Mr. Bagley,98364,2782,4 +102265,Davey Gulliver,14531,74056,3 +102266,Dad,22447,18616,2 +102267,Stan Paraschiv,319993,557862,6 +102268,Constance,41609,41216,2 +102269,Thomas Amman,38783,30048,2 +102270,Chemist,4982,1140109,58 +102271,Alessa,19606,98473,5 +102272,Maria,331641,15591,1 +102273,Femme du métro,187602,1169490,11 +102274,George Stark,188161,1112414,7 +102275,Marica Hayes,134732,83917,3 +102276,The Owl (Voice),81684,5049,4 +102277,Diane Gilman,75090,12110,4 +102278,Gruba,22998,174882,8 +102279,Elwood,413992,984629,1 +102280,Stacey,255869,153942,6 +102281,Willie Banks,298,1158,3 +102282,Shelly,55725,971329,7 +102283,Herb Stone,119801,16554,2 +102284,Radio Announcer (uncredited),14615,126549,51 +102285,Finch,336890,1448194,23 +102286,Sam Wong,127329,63585,2 +102287,Humpstone John,137321,6804,6 +102288,Pete,25551,29285,20 +102289,Miriam,868,13093,2 +102290,Ray,41759,590,6 +102291,Head of Forensics,400465,1194965,2 +102292,Colum O'More,84352,39816,2 +102293,Billy Delaney,43522,34285,5 +102294,David Locking,413391,109438,1 +102295,Flood Extra (uncredited),104430,14966,12 +102296,Chat,288952,57286,1 +102297,Krall's Henchman,188927,1897705,36 +102298,Veneziano,62034,227314,7 +102299,,18729,723,1 +102300,Le serveur,12446,1052191,20 +102301,Dr. Puttnam,13483,26473,8 +102302,Walter,70752,234013,4 +102303,Aggie,25988,4154,2 +102304,The Tin Man (voice),59981,7090,6 +102305,Philip Calvert,38654,4173,0 +102306,Martin,69668,86237,20 +102307,Vincent J. Ricardo,19827,2314,0 +102308,Sayaka Miki (voice),152042,225999,1 +102309,Saint James St. James,70863,77809,2 +102310,,347979,568339,6 +102311,Cynthia,26390,74687,20 +102312,Marcos,251555,1061514,4 +102313,Alonzo,31899,1383558,9 +102314,Danny's Father,26267,1633666,8 +102315,Professor Adams / Subject #30,29151,16327,2 +102316,Kurt Knister,212503,5860,7 +102317,,299828,1379397,4 +102318,Emperor Yung Cheng,62071,1078833,3 +102319,Sang-man (young),62439,1556940,18 +102320,Cop #1,9958,60975,7 +102321,Tej Parker,337339,8171,5 +102322,Nic Robertson,28730,35598,11 +102323,Meatballs,18898,83816,3 +102324,Himself,394668,1611358,2 +102325,Sébastien,11399,69223,5 +102326,Paul Messenger,153163,2495,2 +102327,Giraud's Cousin Amelia,61109,97988,14 +102328,Lea Adkins,38850,593,5 +102329,Nefer,24973,92930,6 +102330,Albert's Mother (uncredited),14615,981098,30 +102331,Julischka (Fee) von Wendorf,12631,1872451,10 +102332,Charles Clay,84636,40,1 +102333,Johnny,23966,96325,4 +102334,Piero at 18 years,48254,125489,0 +102335,Joy,6391,55057,11 +102336,Manny,332979,1772225,27 +102337,Himself - The Band,14770,76134,0 +102338,Ig Perrish at 13,149509,1432732,37 +102339,Deacon,98339,64712,7 +102340,Nusret,81549,592096,4 +102341,Bob Collette,290825,25147,6 +102342,Giorgio Santi,108535,25333,1 +102343,Rita,83459,109117,0 +102344,Frank Hawking,266856,16358,4 +102345,Muzi,50374,3172,6 +102346,Cecilia Mandel,8070,136761,3 +102347,Laila,188640,140771,21 +102348,,74674,1445117,19 +102349,William Taylor,14047,1392604,30 +102350,la mère de Colette,76821,580595,9 +102351,Staff Sergeant Adler,8988,1742403,69 +102352,Neus Companys,359154,1154734,7 +102353,Vladislav,246741,55936,0 +102354,Young Jackie,274479,1658338,26 +102355,Nathalie,1917,19937,5 +102356,Elizabeth Howlett,2080,144286,17 +102357,The Painted Lady,426670,67274,1 +102358,Katina Barda,288526,1119889,3 +102359,Percy,14134,1673821,16 +102360,Used Car Lot Owner,262841,64670,22 +102361,Mr Kapunan,222932,102644,3 +102362,Lee Warren,36335,96994,0 +102363,Cocky,52859,13820,3 +102364,Dad Thompsan,25132,69718,5 +102365,Soldier Leaving Canteen (uncredited),259593,19181,11 +102366,Julio,17238,1082662,6 +102367,Sally Nielson,18530,1212960,6 +102368,Linda's Chauffeur,132928,980330,28 +102369,Kate,324150,1423692,3 +102370,Alex (voice),10527,7399,0 +102371,,356191,968176,17 +102372,Tracy Dodd,108501,1197580,1 +102373,Man Departing Airplane,2998,1130451,7 +102374,Himself,16800,938990,0 +102375,Pepe,375794,1672142,10 +102376,Cole Thompson,19294,54789,0 +102377,Lady,113148,1173618,3 +102378,Gideon Graber,45792,28414,2 +102379,Dan McGuinn,93457,193,0 +102380,Kelly Cobb,52868,103582,0 +102381,Issacs,47412,76181,3 +102382,Honey,43092,217341,7 +102383,J.D.,17317,1676734,23 +102384,Constable Sanders,51249,15661,2 +102385,Sir Charles Cartwright,97024,8240,5 +102386,John Kramer,214,2144,0 +102387,Taylor,205891,109858,0 +102388,Davis Pell,363807,1538441,3 +102389,Elke,1415,2958,3 +102390,Roger,65599,543727,9 +102391,Carl,65055,1393519,11 +102392,Maud Baron,121793,72255,5 +102393,The boy,58515,89564,0 +102394,Cameron,346170,1480597,0 +102395,Rev. Campbell,142150,1019254,10 +102396,Uncle Vinnie,94894,4253,4 +102397,Desdemona,106747,63522,4 +102398,,250029,237138,3 +102399,Himself,130993,1310868,10 +102400,Detective (uncredited),28000,141598,71 +102401,Susan Leeds,257081,94036,2 +102402,Paul,84184,61659,7 +102403,Bollino,42579,72246,2 +102404,Grandfather,99599,136886,2 +102405,Tyler Jensen,9935,297095,2 +102406,Lesley,30478,106382,0 +102407,Josef - the butler,31445,108075,3 +102408,Pvt. Wilson,27739,98873,5 +102409,Jesse Martin,111470,1422181,21 +102410,Brummboss,9803,5233,1 +102411,Ragazza castana,22182,238656,14 +102412,Camper (uncredited),251227,1029635,25 +102413,Greg,426264,206724,4 +102414,,328712,74540,1 +102415,Egyptian Street Vendor,246655,1337607,46 +102416,Alice`s Mutter,2204,22612,2 +102417,,272165,175071,2 +102418,Yasmin,260030,1424437,7 +102419,,132705,1095872,3 +102420,Tom Hanniger,14435,49624,0 +102421,Émiliana Cyr,209293,84089,4 +102422,,413806,1191198,1 +102423,Gorman,28668,34348,3 +102424,Officer Johnson,259997,1302542,31 +102425,Policeman (uncredited),61151,120473,18 +102426,Dr. Mathias,16320,75463,11 +102427,,31512,52716,24 +102428,Kim Young-Shin,11658,70337,27 +102429,Stella,26880,96524,1 +102430,Mike (uncredited),33025,105455,12 +102431,Newscaster (voice),10527,111875,25 +102432,Actor Rick Vidal / Dr. John Van Kessel,80316,35847,6 +102433,Phoebe,369406,187196,7 +102434,John Colley / Peter Colley I / Peter Colley II / Peter Colley III,42852,81933,2 +102435,Girl Michael Runs Into in Nightclub,149793,96719,27 +102436,Samuel Lapp,74549,130768,6 +102437,Clemmons Usqubaugh - Undertaker,153228,2502,7 +102438,Policeman,11404,1087561,13 +102439,,400610,1672908,2 +102440,Mr. Hogg,8619,185460,22 +102441,Marie-Louise Chevandier,329682,1096268,7 +102442,Chris Paterson,109258,31169,2 +102443,Goichi Takamori,168295,119243,4 +102444,Eddie Collins,63317,200240,2 +102445,Duckworth,10837,88450,6 +102446,Ollie,50916,78057,1 +102447,Kelner (niewymieniony w czołówce),314371,1583955,34 +102448,Milty,27973,95298,12 +102449,1949 Cop,239566,20582,44 +102450,Judge,339403,41019,20 +102451,Jill Dempsey,107250,47882,4 +102452,Organization Man,1450,1458392,18 +102453,,45441,148467,8 +102454,Schnösel,75969,1397634,33 +102455,"Josie Cohan, as a girl of 12",3087,30282,16 +102456,Grell,19350,1636074,6 +102457,Juhani Pohjakallio,80472,141980,3 +102458,Indian girl,127564,48958,3 +102459,James 'Jimmy' Henderson,118134,80545,8 +102460,Teomoco,296491,132488,6 +102461,Scavenger,179105,945235,10 +102462,Zef,82624,239192,6 +102463,Dancer,4982,1412213,69 +102464,Stewardess #3,318781,1694300,23 +102465,Caterine Vauban,1599,17882,6 +102466,Rabbit,18665,110844,11 +102467,Elena,178809,1857677,16 +102468,Connie,237,3073,8 +102469,Rev. Benson,32716,145838,9 +102470,Gloria,428687,102309,10 +102471,Dave Phillips,345915,1230,2 +102472,Alice Astley,26491,229606,15 +102473,The Queen / Mama Topolino (voice),49013,13333,23 +102474,Rizzio,91571,36210,4 +102475,Jimbo,29798,104911,5 +102476,Ted,62492,87951,4 +102477,'Katie' Chernen,36612,30269,2 +102478,,49574,276591,4 +102479,Isaac / 'Ike',44690,114674,0 +102480,,66897,11601,7 +102481,Inspector Jefe,131932,93831,7 +102482,The Man / Soultaker,31276,97823,0 +102483,Veronica,195544,127014,5 +102484,Skater (uncredited),134475,120534,9 +102485,Sgt. Jock MacPherson,11046,2601,10 +102486,Wilson,146238,996296,8 +102487,Karla Porter,179826,1404652,14 +102488,Dexter,14123,1421688,13 +102489,Andrew Cronin,146238,225694,7 +102490,Bella Flores,87826,3136,0 +102491,Northern Salvage Company Manager,43833,115376,30 +102492,Gordo Azuara (uncredited),37628,1040937,15 +102493,Jack Kerouac,156277,1642,9 +102494,Mother,11658,1432841,33 +102495,The Priest,205481,11180,6 +102496,,376934,150842,4 +102497,,56971,55914,0 +102498,Wyatt Porter,179826,5293,2 +102499,Pathologist,339527,1643635,12 +102500,Mrs. Whittaker (uncredited),60965,232056,27 +102501,Seth,13836,23498,2 +102502,Scooby Doo,20558,15831,1 +102503,Jacki,93862,41234,0 +102504,Irmel,226001,1444641,6 +102505,Judi Joskow,18826,32905,2 +102506,,39845,17419,13 +102507,Ray Sheridan,36463,6933,5 +102508,Loan shark,108972,1292971,9 +102509,Sporting Goods Salesman (uncredited),53387,148003,13 +102510,Roxanne Chandless,117509,134888,1 +102511,Bongo the Witch Doctor,38404,120341,7 +102512,Vidente,415255,1677212,4 +102513,Haris,47241,934628,1 +102514,Eleanor Rigby,157829,83002,0 +102515,Tiny,21840,6067,3 +102516,Himself,180813,22026,1 +102517,Schani Eberle,42537,138220,6 +102518,,11328,1444479,25 +102519,Milo,23619,1464913,20 +102520,Samir,45243,78320,17 +102521,Daisy,3941,34214,3 +102522,David,268174,93321,5 +102523,Regan,124054,585936,3 +102524,Bartocci Customer #1,167073,110887,37 +102525,Ermintrude,24432,2395,3 +102526,Inspector Nico Palmieri,39979,21181,0 +102527,Gloria Adams,76011,99662,4 +102528,,56095,1631761,18 +102529,Lucrecia,68202,2051,6 +102530,Ms. Maurice,290825,65007,9 +102531,Howard Tyler,27543,81179,0 +102532,Sue,37929,125565,20 +102533,Jenny's Husband,51999,3081,17 +102534,Intern #1,369033,1647324,34 +102535,Annie Iagnemma,283384,1840491,24 +102536,Prete direttore dell'ospizio,58011,101549,12 +102537,Liza Connors,41923,113288,3 +102538,Lola,12446,1356413,8 +102539,George Harding,45938,39950,4 +102540,Lonesome Sailor,29835,12312,9 +102541,Molly,74505,572037,0 +102542,Mrs. Humphries,35852,114836,10 +102543,Bryce,39414,35236,5 +102544,Vanessa,72766,1257819,4 +102545,Jimi Stringer,264646,1213640,5 +102546,Irene,1877,63942,10 +102547,Céline's Friend,57307,65572,13 +102548,présentatrice émission TV,24170,262960,9 +102549,Desi,13075,96224,2 +102550,Mario,85038,555715,8 +102551,Van Hellscream (voice),227257,60272,2 +102552,Omaki,58878,228550,10 +102553,Max,25518,5443,1 +102554,,69619,1157917,10 +102555,Tara,406052,1670998,4 +102556,Beecham,42216,39033,8 +102557,,36175,117981,10 +102558,Mrs. Stuart,62694,7643,10 +102559,Gilchrist,109610,21293,6 +102560,Judge Willoughby,18671,31977,3 +102561,Paige #1,45610,1053669,7 +102562,Lionel,329805,1650410,13 +102563,Jerry,4953,70851,0 +102564,Nurse (uncredited),53392,148008,9 +102565,Xiao Gen Er,101908,1007796,5 +102566,Shelly,5638,44552,5 +102567,Soldier in Street #2,616,1593810,29 +102568,Danny,375384,1654409,1 +102569,Schöner Mann,104172,1384103,9 +102570,Stir Fry Girl,306952,1511965,22 +102571,Carol Solomonde,36691,107033,6 +102572,Herman,279096,1243142,5 +102573,Wopsle,16075,133031,4 +102574,Michael the Robot,257344,17867,18 +102575,Elsie Cahill,7445,51544,4 +102576,"Himself - Trainer, Urban Body Fitness",97724,1388664,15 +102577,Jazz Musician (uncredited),297762,1824293,65 +102578,"Sulo Johannes Järnberg, ""Suti""",442752,1203022,5 +102579,College Student,205891,128559,6 +102580,Swallow,70192,3347,7 +102581,,116312,1169596,20 +102582,Miss Armstrong: Staff of St. Swithin's,83015,1301796,22 +102583,Gunnar Jensen,76163,16644,2 +102584,Elizabeth Powell - Mother,10008,61947,16 +102585,Pae Buffgun,18492,83171,0 +102586,Psichiatra,73827,39019,14 +102587,funzionario ministero degli Esteri,356758,35122,7 +102588,Michael Skakel,56744,20132,4 +102589,,109587,1055273,25 +102590,Sigrid Hagenguth,255491,74423,6 +102591,Jeb Batchelder,339116,63295,2 +102592,Hombre de la cabina,52943,231170,0 +102593,,293092,1364475,3 +102594,Connie,427673,112326,4 +102595,Paco,50647,1041480,24 +102596,Hilda Gunnison,45714,240213,7 +102597,Stanley,58732,89670,0 +102598,Ross Rhea,336890,23626,5 +102599,Thomas Ling,9846,1177732,13 +102600,Carrie Smith,42532,107678,10 +102601,Lee Garner,281418,11150,5 +102602,Nathalie,172890,1071382,2 +102603,Liz Murray,80219,2155,0 +102604,Receptionist,319910,1717810,15 +102605,Frau an der Rezeption,3716,39412,17 +102606,James Doniac,47794,9221,7 +102607,Record Company Executive (uncredited),69,1698468,39 +102608,Cindy,42684,128632,9 +102609,Nan,38244,4726,3 +102610,Copeland,32143,1232,3 +102611,Amaral,180371,1095855,3 +102612,Superintendent Ho,17082,1196102,11 +102613,,61533,49326,3 +102614,Sarah Turner,11364,516,1 +102615,Ceionius,105210,2542,3 +102616,Mrs. Alleta Sullivan,43504,95271,2 +102617,Jody,25038,108666,8 +102618,Alain,61267,4288,3 +102619,Elka,155325,1616634,6 +102620,Milli als junge Frau,167424,1822710,28 +102621,Letallec,13652,25078,8 +102622,Constani,10075,62883,7 +102623,Johnny Baker,92341,20501,1 +102624,le directeur du théâtre,70119,24387,5 +102625,Dr. Seussmeyer,10011,61987,10 +102626,Young Woman (uncredited),1421,1723454,46 +102627,Stephanie,84348,1031943,9 +102628,Olga,26891,41964,6 +102629,Janson,294254,49735,4 +102630,Willie Lincoln,161187,995003,12 +102631,,110001,1382978,21 +102632,Juhana,416569,124867,2 +102633,Per,352890,489961,5 +102634,Pianist (uncredited),3055,10468,17 +102635,Officer Meak,40208,927779,15 +102636,Carolyn,37420,13662,9 +102637,Elliot Sherman,13169,22215,0 +102638,Trixie Summers,43489,41255,2 +102639,Passerby,1818,545469,11 +102640,Savina's Mother,1481,113549,4 +102641,Policeman,62761,1222793,5 +102642,Aleksey's friend,71381,101440,9 +102643,Bus Passenger,371446,1560336,15 +102644,Mr. Peter M. Blainey,170234,34347,2 +102645,Warren Jacobi,86970,12644,5 +102646,Chorus Girl,32610,1431849,27 +102647,,17007,8536,2 +102648,Witness for Peace,2143,132923,45 +102649,Temple Drake,27986,2433,0 +102650,Pat Angelo,30941,7169,4 +102651,Nurse,139455,936497,8 +102652,Deena,257176,158261,2 +102653,Sarah Boynton,43895,93698,5 +102654,Maddie Reynolds,406992,4431,2 +102655,Coroner,27381,27690,14 +102656,Bud,111470,1811854,46 +102657,Mrs. Theobald,59704,229665,8 +102658,Sofronov (voice),38325,557377,3 +102659,Erik,198130,1139651,1 +102660,"Joyce Willams, Morgan's Girl",30022,86104,8 +102661,Mort (voice),10527,28637,5 +102662,Peggy Brown,121636,8857,1 +102663,Carol 'Kansas' Richman,37992,78052,1 +102664,The Doctor,44566,20045,4 +102665,,208579,1450879,5 +102666,"Technical Adviser (Irving, House Buyer)",4932,170543,23 +102667,Bianca,159474,4959,1 +102668,Decker,401222,1561416,4 +102669,Guide,116232,117772,18 +102670,William Frederick 'Buffalo Bill' Cody,43499,20501,0 +102671,Mrs. Hastings - Anita's Mother (uncredited),99934,29974,9 +102672,Assface,323675,1318798,19 +102673,Radióloga,280840,1749487,12 +102674,Georgette,22999,81798,2 +102675,Margarita 'Rita' Passi,83782,36211,0 +102676,Christian Lespinglet,14644,21171,2 +102677,Airport Doctor,240832,1318456,16 +102678,Rival Gang Member / In Alley / At Dance,42553,29950,8 +102679,Sid Hackle,123961,40596,1 +102680,Olympic Club Member (uncredited),43522,1269188,20 +102681,Dàmian,62045,8688,0 +102682,Thomas,87022,107204,0 +102683,Special Agent Cowan,11917,139616,10 +102684,Mike Rossi,111017,22091,4 +102685,'Kallan' Chacko,237672,1099267,17 +102686,President Demsky,14907,6916,3 +102687,Doc Sorin,174278,30530,6 +102688,Bobbie D.,125759,17930,4 +102689,,227964,1086110,5 +102690,Bruno (voice),9514,37671,5 +102691,Resident Doctor,24420,113931,33 +102692,Man,53870,61164,16 +102693,Mertsi Arhippa Vepsäläinen,55396,11263,0 +102694,Ken McLaughlin,52827,7505,0 +102695,Henchman,35026,79291,21 +102696,Dancer,118889,13854,63 +102697,Cemetery Woman,335778,1206014,28 +102698,Juliano,203217,592370,2 +102699,Detective Daniels,14142,71673,6 +102700,Dorn,178446,40501,5 +102701,Councilman,3580,116480,52 +102702,Troy,354979,2963,0 +102703,Mrs. Parry,87060,928832,1 +102704,Lt. Ward,122677,102959,13 +102705,Gogo Shoto (voice),342917,80352,5 +102706,Irma,53648,1002945,6 +102707,Male Derelict,11338,14677,33 +102708,Peteris,166886,1156246,2 +102709,Maria,338438,1063534,5 +102710,Drobeck,48852,30846,23 +102711,Judge,19621,10664,10 +102712,Katie,150201,1448862,6 +102713,Chief of Police,28851,102185,4 +102714,Rhoda Morgenstern Gerard Rousseau,252724,83170,1 +102715,Lionel,252028,1033739,0 +102716,Sean,79419,6199,1 +102717,Daisuke Senzaki,162006,74861,0 +102718,Kyle,118957,94798,6 +102719,Nurse at Desk,369885,1651388,45 +102720,Margot,163706,1145326,8 +102721,Amy,102222,129928,2 +102722,Rolf Fischer,203833,44464,23 +102723,Zebulon,64965,71296,4 +102724,Junkie,85651,56183,6 +102725,Banjo,11798,122999,12 +102726,Flavio Flavoli,245739,80535,6 +102727,Claire,371462,1563623,6 +102728,Police Officer,8247,1573507,20 +102729,Radio Host,206197,1506489,27 +102730,,32306,146977,0 +102731,Clarney,62213,113,10 +102732,Mrs. Summers,246655,99181,32 +102733,Seth,13954,65195,1 +102734,Kamiel Spiessens,76059,99322,0 +102735,Denise Watson,29611,104348,0 +102736,Young Lysander,37958,119252,21 +102737,Evan,16428,9779,1 +102738,,54111,1136858,13 +102739,Mrs. Peterson,3638,1989,12 +102740,Randy,15092,17444,13 +102741,Himself,15258,545850,47 +102742,Himself,79137,94005,0 +102743,Herself,296194,28768,4 +102744,Nix,332280,16743,40 +102745,Saul Goodwyn,299780,1231968,11 +102746,She,13979,963074,0 +102747,Bill - Border Patrol,1164,18053,13 +102748,La directrice du CEF,329819,6550,8 +102749,Engineer,324670,1554490,18 +102750,Mrs Wherry,9968,61168,18 +102751,Chubby,359471,1415841,27 +102752,Duke's Bar Owner,14923,1386353,32 +102753,Keiko Saeki,248087,58601,5 +102754,Herself,366696,1753494,19 +102755,Victor Frankenstein,3145,101533,0 +102756,Gloria Gerringson,360284,343,1 +102757,Oblo,283995,85115,23 +102758,Barshee's Henchman,43829,1041747,41 +102759,Jussi Koskela,103751,125625,2 +102760,Maggie Chalke,366631,33292,1 +102761,Giuseppe LaMotta,228034,7004,2 +102762,Halfway House Girl #1,55681,1086569,13 +102763,Minho,294254,1310760,8 +102764,Girl Student,16320,80433,22 +102765,Hanukkah Party Guest,356752,1841522,45 +102766,Maria Stoner,41857,21462,3 +102767,1950's Elvis,322548,10136,9 +102768,Minnit,54406,10746,4 +102769,Edward Sterling,233208,127712,1 +102770,Jim,79833,79888,10 +102771,,415358,85593,6 +102772,Ref's Gal,32139,94700,7 +102773,Third Aunt,31532,30159,8 +102774,Dr. Edmund McNally,153652,522,2 +102775,"(segment ""Chawan no naka"")",30959,82478,73 +102776,Dillon,32790,938896,11 +102777,Alfred Lubitsch,31522,3829,2 +102778,Liza Harris,28847,102168,1 +102779,Concejal,127468,50929,3 +102780,Vortgyn,9703,58655,14 +102781,Lally 1,94225,1176579,4 +102782,Wiera,25667,94064,0 +102783,Fido Saroyan,1818,150939,6 +102784,Yoga Student (uncredited),15092,1215402,69 +102785,Andre,29345,84625,4 +102786,Paul McGuinness,54093,95947,14 +102787,Rainault,42664,40390,11 +102788,NASA Security (uncredited),365942,1670756,53 +102789,Milli als ältere Frau,167424,1822711,29 +102790,Joe Farrow,65282,79246,2 +102791,Poseidon,32657,9013,10 +102792,Baldrick / Baldrick / Sod-Off Baldrick / Baldrick,51247,87385,1 +102793,Viking Bo'sun,43833,91617,21 +102794,Major Williams,392271,182070,5 +102795,Aage Krüger,22140,1646,1 +102796,Date #3,254047,1090276,4 +102797,Jae-joon,18374,83015,1 +102798,Mirko,109979,1047948,0 +102799,Dr. Stanley Mott,266314,6905,4 +102800,Clara,88320,153070,8 +102801,Rama Lakshmi / Anjali,253533,145628,3 +102802,Grand Duchess Ella,46827,163422,7 +102803,Shelby,55681,1086567,10 +102804,Vođa studentskog pokreta,284154,1051406,11 +102805,Agent Dick,20430,1489354,12 +102806,"""service station"" advertising girl",55495,1384986,11 +102807,Principal,169364,585606,2 +102808,Dad in Library,199575,1438874,24 +102809,Skinner,27035,46418,8 +102810,Beth,84333,88029,1 +102811,Daniel,115665,17094,1 +102812,Karen,28031,9781,7 +102813,Old Man,31442,119569,7 +102814,Puck,182129,65,8 +102815,Полковник милиции,20871,29842,8 +102816,Jake Morgan,80592,117679,8 +102817,Joyce Victor,13073,6913,4 +102818,,412202,188402,6 +102819,,33558,588943,1 +102820,Raquelle (voice),57737,62866,6 +102821,Bart Tare (age 14),18671,6725,8 +102822,Greene,407448,53650,4 +102823,Caputo,11055,52657,1 +102824,Bad Boy Austin,19294,29795,3 +102825,,273096,1014998,6 +102826,Tom Daly,35921,2651,13 +102827,Dave Allison,71996,1255830,6 +102828,Rod Perth,30330,42157,4 +102829,Tucker,33510,84865,4 +102830,Prime Minister Jeffrey Hale,10804,39066,6 +102831,Jeff Meyer,57190,102703,4 +102832,Mr. Baldwin,79521,82749,13 +102833,Schwartzberg,6575,38582,9 +102834,Paulette,85883,545244,0 +102835,Simpson,24797,2055,3 +102836,Lord Waverly,62764,1037341,28 +102837,Susan,274479,1774093,32 +102838,Marilyn,14137,121757,8 +102839,Moglie di Peppino,60193,50005,2 +102840,Nugie's Wife,32044,160527,24 +102841,Parent (uncredited),85350,1386307,77 +102842,Ivan,168541,1575324,3 +102843,Nerdy Kid,199415,1179657,12 +102844,Jamie Thompson,335869,1162313,1 +102845,Harold Speck,8080,34395,4 +102846,Victim Boy,427680,1758541,12 +102847,Ali,11330,1348451,13 +102848,Father (as V. Gogolev),83614,628267,4 +102849,Gigi,334538,1366717,9 +102850,Francis,117509,1089000,0 +102851,Umilak,12707,68301,2 +102852,Old Amos,336029,1107346,11 +102853,,4344,1123121,5 +102854,Pablo,325173,1334321,16 +102855,Charlie Banks,19587,44735,0 +102856,Azul (Diálogos / Canciones),13283,1497226,13 +102857,Helen Manson,28421,100587,2 +102858,The Doctor,369033,936254,8 +102859,Pastor Bud,50875,58549,10 +102860,Joe,218351,88735,12 +102861,Karola,369524,23524,9 +102862,Natasha,421741,1626918,1 +102863,Oscar,157354,135651,0 +102864,Ashens,212481,230572,0 +102865,Patient,3782,134294,11 +102866,Beau at Ice Cream Festival,191068,29950,9 +102867,Charlie,22894,88995,7 +102868,Capt. William Trench,104485,32428,3 +102869,Vittoria's Mother,21135,131329,3 +102870,Officer Johnson,75761,1585120,26 +102871,Camino,17893,82455,0 +102872,Melissa,384160,1251493,2 +102873,Henry,170759,1844,0 +102874,Czar Peter III,229134,1263758,6 +102875,Commissioner (uncredited),28000,5257,63 +102876,Marina,57209,225683,3 +102877,Dona Cândida,97110,1076441,5 +102878,Shepard Lambrick,97051,27993,1 +102879,Referee / Eddy,333484,1527960,39 +102880,John Kramer (a.k.a. Jigsaw),176,2144,5 +102881,Rebecca,47462,1334121,0 +102882,Vince,28025,8549,1 +102883,"Algy in 'Stately Homes' segment, Presenter in 'One-Man Band' segment",49954,29493,3 +102884,Rosentski,46658,26700,3 +102885,Sheila Green,26331,84285,7 +102886,Reynolds,178809,96591,6 +102887,Helena auf Korfu,459,1291313,13 +102888,Rouva Tuura,62900,116160,3 +102889,Scratch,42648,1053827,10 +102890,Macbeth,115427,42077,0 +102891,,175791,1158284,2 +102892,Fred,297265,1651693,19 +102893,Cathy,74527,4301,9 +102894,Spiller's Wife,212530,20884,12 +102895,Danny,14476,76943,0 +102896,Rabbit (voice),36540,57313,1 +102897,Sam,71503,563094,10 +102898,Marc,40978,5274,2 +102899,Costume Designer,14543,6209,8 +102900,Mrs. Price,38770,96421,19 +102901,Tio Tomas Alvarez,64499,239944,2 +102902,Neri,118408,230660,1 +102903,Hammer,56491,5534,6 +102904,Peter Strelzyk,58995,5049,0 +102905,911 Operator (voice),13848,27993,8 +102906,Ian Mason,283384,190900,20 +102907,"Bascom, Hotel Guest",118948,30217,9 +102908,Le sous-lieutenant Torrens,31344,20030,0 +102909,Robert Spritzel,6963,3895,1 +102910,Big John,17725,25532,4 +102911,Nandini,341895,1657803,17 +102912,Goodnight Robicheaux,333484,569,2 +102913,Mac Brophy,65280,8692,3 +102914,Airline Passenger,52122,97257,11 +102915,Michael Raye,42552,1097313,10 +102916,Hope,5123,41298,11 +102917,Air flight controller,87514,12296,18 +102918,,384373,1317781,5 +102919,Jackie McIntock,72032,1121877,8 +102920,"Jarvis (""The Picture"" segment)",45577,133245,6 +102921,Ling (Age 8),10389,551621,34 +102922,Maidservant,121462,1419436,3 +102923,,73984,1662454,15 +102924,Petrini,57680,142605,12 +102925,Officer #4,34672,126219,10 +102926,Mrs. Brown,31262,107857,4 +102927,Vivian Saalfeld,269258,10257,27 +102928,Barbara Banister,29805,28778,4 +102929,Arvi Suomies,224813,1210346,8 +102930,Detective Flaherty,153162,89728,25 +102931,Ricky Parkson,29236,923,3 +102932,Pearlie,197611,83145,4 +102933,Joel Gately,44732,29092,4 +102934,,32306,92706,3 +102935,Mr. Grover,26182,34748,6 +102936,Nick Smith,25736,30228,2 +102937,Pajama Shop Manager,120729,62233,11 +102938,Dr. Toby Green,285841,21089,5 +102939,Young Singer,360592,1512193,19 +102940,Cabbie,32489,153537,11 +102941,Teri Yaki,21449,10070,2 +102942,Bishop,179066,97176,24 +102943,Mayor Perillo,153102,109653,6 +102944,,284189,584655,4 +102945,Frau Bredow,11869,33073,6 +102946,Mrs. Shanway,249264,34516,4 +102947,Will,265019,1310524,6 +102948,Amanda,257302,123967,8 +102949,Georges Valandray,51945,24816,3 +102950,Intake Guard,26376,2673,64 +102951,Marina,351809,1062012,12 +102952,Girl Student,27259,97434,11 +102953,Tracy,392660,27004,3 +102954,Dirk,75578,114756,6 +102955,David,11205,62414,2 +102956,Yiu-Wah's second daughter,182127,1440495,40 +102957,Mira Towers,55922,147473,1 +102958,Molly,302528,1511807,15 +102959,Cabbie / Bus Driver,107430,1219032,7 +102960,Vaner,22404,7505,4 +102961,Bogdan,380731,1375679,2 +102962,Col. Steve Trevor (voice),15359,51797,1 +102963,Poker Player,33541,98052,25 +102964,Group Leader,19661,166598,15 +102965,,202662,56292,0 +102966,Nattu Bhai,31364,35779,4 +102967,Bank Manager,68750,16559,8 +102968,Gerber,59296,51381,6 +102969,Carlos,13056,1187553,15 +102970,Louis Kohner,42216,19162,3 +102971,le fiancé londonien,76651,274195,12 +102972,Brian,24432,3905,4 +102973,Baby,11328,1348445,14 +102974,Naomi Madsen,41479,208160,10 +102975,William Reading,87514,162091,14 +102976,Diora,17927,60952,3 +102977,"Eman, King of Utor",259835,1095720,6 +102978,Jimmy Johnston,921,14888,5 +102979,Lonnie,43754,37027,5 +102980,Johnny,43923,94432,12 +102981,Member of Parliament,53851,27164,14 +102982,Volodya,63291,86837,3 +102983,Lady at the Five & Dime (uncredited),69,1509779,36 +102984,Master Shaw,76203,1344360,49 +102985,Genevieve Raton,65599,93980,6 +102986,Brigitte,79048,73828,5 +102987,Glenn,66881,549058,11 +102988,Lolli,58011,34027,4 +102989,Jack Dunn,61225,21757,13 +102990,Sgt. Carl Allen,103902,487273,4 +102991,Mouna,2197,23302,1 +102992,Roberts - Allenbury's Butler (uncredited),31773,2941,23 +102993,Tubby,150712,1422279,23 +102994,Lenny,167012,4255,2 +102995,le clochard jazz,39978,24477,7 +102996,Terrorist's Wife,33481,110775,24 +102997,Hank Parshall,119010,192007,1 +102998,Mr. Stuart,62694,94882,17 +102999,Dennis Pepper,107499,11662,4 +103000,Kitty,321160,17773,13 +103001,Limo,44869,29283,6 +103002,Volunteer,1116,1896862,26 +103003,Marge,104720,5738,19 +103004,The Music Maids,40916,1209603,14 +103005,,293122,1062262,1 +103006,Music Video Dancer,4551,1599680,54 +103007,Professor Lehman,209401,1503832,20 +103008,Bob Forbes,336890,185805,14 +103009,Bud,6877,537,11 +103010,Clancy,140887,33776,0 +103011,Porky Pig,349045,78317,4 +103012,Simone,242683,146898,12 +103013,Mr. Robinson,15213,9208,23 +103014,Yukon Bar Patron,76170,1320017,16 +103015,Tim,1116,1896860,24 +103016,Stephen Kumalo,231392,2112,0 +103017,Karl Liebnecht,42215,10074,6 +103018,Julian,31634,108236,4 +103019,Doc Bodeeker,72096,176337,29 +103020,Marcus Antonius Pallas,206514,71949,13 +103021,Sabitha Prithviraj,76788,580225,11 +103022,Mother,85196,1485205,5 +103023,20's Guy,341957,1470815,11 +103024,Sean Neary,265019,59254,1 +103025,Leonard,297736,20510,3 +103026,Montague Hartley,29286,8727,0 +103027,,61217,1208442,28 +103028,Tengu Kurama,104251,1170115,8 +103029,Nudist,92496,99813,11 +103030,Deirdre,219466,96698,11 +103031,,302472,105443,4 +103032,Bernadette,1116,1235129,12 +103033,Ambrose Hilliard,340101,2440,2 +103034,Hafenarbeiter,94803,2897,6 +103035,Sridhar's Sister,69404,1327077,10 +103036,Mastro Titta,50196,4962,8 +103037,Donna Keppel,8617,29221,0 +103038,,117790,225050,3 +103039,Walter Shrenger,49060,56890,3 +103040,Susan Evers / Sharon Grand,64183,36819,0 +103041,Isaac Raphaelson,136582,93903,1 +103042,Bonnie,44754,155574,17 +103043,Tess Kositch,35683,101092,1 +103044,kapitán Nicholl,41213,1192441,12 +103045,Father,31915,109761,8 +103046,Harley Keener,68721,17181,12 +103047,Ga Yu,16074,79155,1 +103048,Actor,199602,1871535,8 +103049,Dionne,59678,1672660,19 +103050,Ruth Edscer,77864,146957,1 +103051,Gregorio Del Pilar,359105,930714,5 +103052,Talbot,88390,88906,5 +103053,MJ12 Sentry #2,59197,1584998,14 +103054,Betty Goody,92311,32391,3 +103055,Saro,403450,1879741,7 +103056,,37055,1371494,8 +103057,Harry Gulkin,128216,1332929,19 +103058,The Solarite,27717,10460,10 +103059,Coach David Blair,86186,16841,1 +103060,She,18143,237519,1 +103061,Ferret,77882,39024,2 +103062,Rider / Roper,55604,1464600,42 +103063,Cado,38594,72458,15 +103064,Dr. Newell Paige,131457,8724,0 +103065,Chadwick,43327,16097,3 +103066,Jack Martin / Henri Duran,29577,70668,0 +103067,Father,5421,26155,2 +103068,Adolf Hitler,400465,1271113,4 +103069,Klasse 3c,61035,1446110,36 +103070,Karla,59197,19456,1 +103071,TV Journalist,13802,2061,42 +103072,Carlos Le Duc (uncredited),42825,14533,16 +103073,Man at Club (uncredited),17136,1471395,14 +103074,Messenger Soldier,53870,106953,25 +103075,Dr. Painter,6933,51464,18 +103076,Coiffeuse,39358,1630995,14 +103077,Charles,1595,17858,4 +103078,Stonewall Jackson,43806,589728,25 +103079,Miles's Mother,9675,57823,4 +103080,Izzie Mensforth,15019,36592,2 +103081,Karen Burton,23367,14406,2 +103082,Luzzi,106155,919804,5 +103083,Courtroom Spectator (uncredited),14615,1269827,101 +103084,Tom Byrnes,425774,1707940,46 +103085,Officer Strunk,354979,1636761,21 +103086,Jared,17287,97825,8 +103087,Alfred Miller,1723,4776,1 +103088,Culpepper Brown,14387,94835,8 +103089,General Blackwish,210940,4966,2 +103090,Nigel Pennington,2355,11077,12 +103091,Joan,13477,4433,6 +103092,JVC Trumpet Player (uncredited),244786,1503850,41 +103093,Melvin Plug,10829,52141,10 +103094,Harrison Yulin,29542,104133,3 +103095,Burt Grusinsky,2001,3087,4 +103096,Muni,54814,169428,4 +103097,Vlasov - the Father,98914,1064931,2 +103098,Bikku,2577,26203,6 +103099,Postverwalter,52475,146062,10 +103100,Cricket,18375,1223084,4 +103101,,27276,551862,53 +103102,Tess,85265,1319946,24 +103103,María,107916,587931,0 +103104,First Reporter,3055,161745,12 +103105,Josiah Freston,16182,79928,2 +103106,Chin Tien Yun,108665,88351,0 +103107,Tyor,7237,52141,1 +103108,Fiona Long,45431,102200,3 +103109,U.S. President,14869,378,14 +103110,Tina,379019,1838948,15 +103111,Shelly,2186,22385,3 +103112,Declan,18595,83280,10 +103113,Girl in Convertible,17282,1670350,11 +103114,Dr. Leonard Barry Gillespie,153163,17753,1 +103115,Dizzy Gillespie,327528,1260782,13 +103116,Professor Brög,341745,37387,9 +103117,Antoine,216153,1219018,9 +103118,Ronny Rapist #1,192210,154829,9 +103119,Juliette,14688,32511,6 +103120,Gaspard Ripeux,44522,11187,17 +103121,Joe Byrne,38978,197986,2 +103122,Agnes,57412,46617,3 +103123,Le prêtre,51971,145089,12 +103124,Le Blanc,205481,47643,8 +103125,,241982,18561,6 +103126,Vaudeville Dancer,335837,1497343,14 +103127,Hanna Kaufman,63665,20362,0 +103128,Charles Colebaugh,111839,4004,10 +103129,David,72875,567329,0 +103130,Vishal,20132,78246,7 +103131,Brother Blackleg,274857,1815694,18 +103132,Betty Careless,73896,1082774,8 +103133,Caroline Mason,83735,94309,2 +103134,Mayor's Chief of Staff,15661,13021,6 +103135,Helen Thompson,89551,550777,2 +103136,Company Captain,44943,41020,21 +103137,Sgt. Paletes,37308,49895,6 +103138,"Kizzy, age 6",400174,1607523,14 +103139,Fizcko (voice),89247,1074712,7 +103140,Daniel Polak,346443,140652,4 +103141,Man in Porno Shop,32904,216002,8 +103142,Serega,62731,236758,8 +103143,Dave Barton,94744,10020,2 +103144,Herself,15258,193921,82 +103145,Isa,204768,17463,6 +103146,psicanalista,156547,7547,9 +103147,Roger,156711,1349736,31 +103148,Boschi,60018,128250,2 +103149,Franco Mattioli,45990,55912,0 +103150,"Padre Portillo, the Priest",44641,7370,4 +103151,Seksbomba u drugiego bohatera,91691,591405,8 +103152,Older Boy Sledding - Bob,27414,1145861,23 +103153,Author,86828,49968,21 +103154,Barker,43809,67369,25 +103155,Dorky Kid (Ned's Party),16996,209545,32 +103156,Roger Bond,28293,117419,1 +103157,Stephen Melman,26823,96367,4 +103158,Mercenary,88518,107323,11 +103159,Jugador en el bar,106887,1302057,9 +103160,Lydia,62900,1498233,7 +103161,Emerald,2125,16754,5 +103162,Abigail Falbury,43390,120306,3 +103163,Mayama,72592,33517,3 +103164,Anselmo Pandolfini,59249,45982,0 +103165,Schwartz,987,14832,8 +103166,Practical Pig,109298,5462,3 +103167,Max Pirovano,38310,69037,2 +103168,Victoire Doutreleau,245775,1021684,3 +103169,Lupita,366860,1500292,5 +103170,Dr. Richard Marsham,29368,2925,7 +103171,le docteur Maulette et le président,110573,145076,7 +103172,American Soldier,8429,54931,2 +103173,Cashier,154537,168904,6 +103174,Voichek Borowski,266285,1221080,47 +103175,Rose Bertin,99579,7282,9 +103176,Additional Voices (voice),130925,111466,22 +103177,Paul,51971,145084,1 +103178,,83229,1544225,9 +103179,Claire,8049,53429,1 +103180,,41187,1888574,9 +103181,Michelle,56596,93380,8 +103182,Penny,238749,71763,4 +103183,Enzio,44741,1600932,10 +103184,,134215,85471,9 +103185,"La fille ""moitié des choses""",20200,67532,12 +103186,Giovanni,177104,103777,3 +103187,Rodriguez,46368,937676,5 +103188,Victor Bruno,297853,9286,20 +103189,,32694,1532,31 +103190,Helen,110412,37440,0 +103191,Ratko,241140,1050118,7 +103192,Brownie,31048,83701,5 +103193,Martin Gordon,90461,130375,10 +103194,Hiker,291871,1362827,12 +103195,Batman,22939,388,3 +103196,Herman von Heerle,154972,1441222,14 +103197,,299165,1309496,21 +103198,Himself,347630,1695652,21 +103199,Sugar (voice),48466,109869,5 +103200,Divisionär,21062,223483,6 +103201,The Talk Show Host,408272,14886,13 +103202,Cate Ward,68737,584543,23 +103203,Additional Voice (voice),10193,1443485,41 +103204,Barbara (voice),182131,1296666,5 +103205,"Mike Charles (segment 2 ""Terror Over Hollywood"")",41035,93949,15 +103206,Emma Gilbert,65256,86132,2 +103207,Antoine Chauvet,37779,19866,1 +103208,Spike Madden,110887,30495,0 +103209,Večernice,84030,11684,0 +103210,,86321,1903062,9 +103211,Sam Stermer,128140,1161086,10 +103212,,149868,89502,2 +103213,Colonel Forbes,132859,9091,3 +103214,Ann Beale,183171,95314,0 +103215,Herman Schmidt,36334,95012,7 +103216,pokladník,160106,222818,8 +103217,Maria Perpétua,49961,143137,4 +103218,Klasse 3c,61035,1446115,41 +103219,Horace Debussy 'Sach' Jones,187516,33024,2 +103220,Nicolas,91070,22128,3 +103221,Günther Kuballa,202183,1083,0 +103222,uomo sulla sedia a rotelle,302802,1173388,17 +103223,College Lecturer,341895,1160633,7 +103224,Senator Harvey,132859,13358,4 +103225,Sister Afrooza,113038,1056209,4 +103226,Himself,70027,1309245,23 +103227,Richard Stoker,86825,20212,3 +103228,Herself,81538,1156406,7 +103229,Grace Brewer,32395,4038,1 +103230,Petersen,13848,37028,4 +103231,Nordenson,41764,92422,4 +103232,New boyfriend,384160,1491318,5 +103233,,282086,1477369,5 +103234,Marcelle,77338,2411,4 +103235,Dragan,11373,1043263,14 +103236,Jeremy,333371,1120025,8 +103237,Hattori (voice),149870,25503,10 +103238,Guy with Jess,405473,1800028,19 +103239,Daanish Ali,275269,78916,2 +103240,Hot Servant,156711,1349737,32 +103241,Walter Lyle,88794,1023139,9 +103242,Irene Flinth,199374,135753,0 +103243,Silas Hendershot,45527,8395,1 +103244,Sorry,88005,1677299,24 +103245,Tattooed Gangster,193893,1381706,64 +103246,Man at Cousin's house,19482,564862,4 +103247,Nai Hoi Singh,14818,146348,3 +103248,Bassist (JVC),244786,1291961,29 +103249,Alfred,11171,56112,3 +103250,Tommy,241855,1159650,4 +103251,Church Man,921,1205726,43 +103252,Glypto Boy (voice),8355,60734,15 +103253,Maskemannen,29923,1336934,11 +103254,Właścicielka domu dla bohaterów,91691,7111,16 +103255,Vieira,82968,1019089,11 +103256,,96985,1297975,2 +103257,Cigarette Girl (uncredited),33112,127632,23 +103258,Dr. Beck,40229,1534333,8 +103259,Woman in Comercial,135390,928024,7 +103260,Post Office Clerk,8981,119101,13 +103261,Himself,446048,135855,1 +103262,Anna Mikhailovna,204802,1623848,9 +103263,Jane Carter,56292,52851,3 +103264,Samurai Ensemble,616,1593822,42 +103265,Sheriff James Riley,17038,55779,0 +103266,Irene Lerman (Cello),23367,95358,8 +103267,La seconde employée 'Midi-Car',1421,1723432,16 +103268,Himself,8847,56083,3 +103269,Jeremi's Officer,31273,107896,44 +103270,District Attorney Farley,53864,14658,9 +103271,Randolph,43875,47178,10 +103272,"Mr. Edwards, sewer engineer",41030,119735,10 +103273,Barbara Hall,60505,100961,5 +103274,Lauren Compton,15013,8436,4 +103275,Mme Lochet,10268,36513,15 +103276,Dinner Guest,418437,1219590,12 +103277,1st Youth,31264,136415,13 +103278,Emily,64225,15200,0 +103279,Mum in Library,199575,1438890,30 +103280,Himself,320589,1584103,16 +103281,Sir Walter Raleigh,348544,1486797,1 +103282,Margaret,301348,78030,10 +103283,Baseball Player,367732,1537754,11 +103284,James Norrington,58,1709,5 +103285,Bianca Piper,272693,52404,0 +103286,Billy Norton,48838,21343,4 +103287,Himself,15258,196500,24 +103288,,303398,691,4 +103289,Ado Kaira (as Mister V),277839,1674833,15 +103290,Marine (uncredited),44943,1205888,44 +103291,Roxane,101904,1029286,2 +103292,,71393,935419,10 +103293,,132705,112210,8 +103294,Harrison Johnson,345924,12056,11 +103295,Antoine Bérangère,10524,14246,4 +103296,Translator,1599,5419,18 +103297,Taksici,109671,1407795,6 +103298,Ann Brewster,115054,88888,2 +103299,Herself (archive footage),318224,1796,10 +103300,Mrs. Barton,43155,988023,11 +103301,Alyssa Jones (voice),282247,16484,3 +103302,Young David,235260,1281197,21 +103303,Palavesham,66526,91549,4 +103304,Kronnan,25977,102776,4 +103305,Olos Nah,179105,204880,8 +103306,Simon,23452,90134,0 +103307,Ingrid,30941,40403,1 +103308,Darkie,18725,83693,3 +103309,Edith,32996,109897,4 +103310,Toby Walling,89008,11702,5 +103311,Keikiyoshi Munakata,131739,46691,4 +103312,,134474,937714,18 +103313,Talthybius,47446,8318,5 +103314,Lisa,348320,1486382,4 +103315,DC Sandra Bates,55846,293071,8 +103316,Additional Voices (voice),328111,111466,20 +103317,Michael Benson,59738,181113,12 +103318,Ellis,6977,12852,7 +103319,Brock,25330,465117,4 +103320,Célestine (voice),126319,1096265,2 +103321,Ben (voice),137200,78798,2 +103322,Vishwas Sarpotdar (Malak),302435,1046105,11 +103323,Lady Britt Dorset,91583,9871,0 +103324,Tullio's mother,4286,15136,4 +103325,,127105,1086710,3 +103326,Mme. du Barry,92796,136151,6 +103327,Assistant,38531,120641,3 +103328,Claudia,64357,134746,10 +103329,Mrs Li,45452,1427540,10 +103330,Postman,135286,1102256,1 +103331,Henny,342472,60458,2 +103332,Blom,129359,560030,8 +103333,Mort,348611,658,4 +103334,Mormóni,72596,1114542,31 +103335,Barrister (uncredited),121674,578693,48 +103336,Mason,22744,24826,17 +103337,Sarah Voss,80125,5644,1 +103338,Leo,17985,3398,0 +103339,Himself,15260,574410,2 +103340,Society Vampire #3,346672,1905794,33 +103341,Nick Savage,322,4732,12 +103342,Carolyn,78461,584095,9 +103343,Stormtrooper,330459,71536,75 +103344,Patruno,235208,128251,10 +103345,Frère de Jean,285858,1428446,5 +103346,Michael,246133,39995,16 +103347,Fran Evans,1586,1233017,10 +103348,Woman,109716,1673513,22 +103349,DC Woodham,318922,114252,5 +103350,Christopher (12 yrs old),246127,1508656,15 +103351,Joshua Gardner,10008,61939,8 +103352,Holt Mulligan,281418,15033,1 +103353,Old Bull Lee / William S. Burroughs,83770,110,6 +103354,Mrs. Goldman,42057,20240,7 +103355,Tourist from Oklahoma (uncredited),37628,1720268,22 +103356,'Skipper' Miller,102144,22600,2 +103357,Mira,340616,1314651,6 +103358,Vivian Dandridge,54982,87117,5 +103359,Dave,84340,1311045,10 +103360,Servant #2,62764,108534,27 +103361,Emperor,32654,80374,7 +103362,Tess Ocean,163,1204,3 +103363,Quentin Compson,287636,1362858,10 +103364,Drew,92391,1071129,9 +103365,Young Arthur 2 Yrs,274857,1865313,13 +103366,Officer Mathieson,283384,1233146,16 +103367,,85656,76169,13 +103368,Handsome Jack,72096,65344,5 +103369,Filigree Fondle,131799,45455,13 +103370,Gastone,63179,50004,1 +103371,Dominique,45000,25154,0 +103372,Brad,19053,100485,10 +103373,,83732,930023,3 +103374,Junior,41574,1583286,6 +103375,Lily Garland,31835,2491,1 +103376,Police Sgt. Joe Ferris,25551,51717,2 +103377,Washer (uncredited),1421,1723455,48 +103378,Sangimel,16999,655,2 +103379,Daday,85265,1385972,7 +103380,Sylvie's Dad,1382,53893,10 +103381,Tom Reed,48333,4520,0 +103382,"Felix, Second Victim",58411,227798,8 +103383,Jack Brace,200324,8839,7 +103384,Brandmester,21282,69182,9 +103385,Jokkeri,233917,938671,6 +103386,Stanley Timberlake Kingsmill,43525,3380,0 +103387,Debbie,4964,41087,2 +103388,Morgue Attendant,2503,1084850,28 +103389,Artur,71381,101423,2 +103390,Apollo Awards Guest,13092,74157,6 +103391,Jennifer,391375,142263,10 +103392,Brian McCoy,59828,131618,3 +103393,Christine Häberle,367596,28395,2 +103394,Tayara (voice),233423,1091868,13 +103395,Stuffy,156335,587131,7 +103396,Woman at bar,360592,1512196,22 +103397,,54384,150512,5 +103398,Dorothy Alison,29236,103368,8 +103399,Kate,440777,1116282,1 +103400,Jerome Holm,215379,113505,3 +103401,Lily Rumfoord,24559,91981,15 +103402,George,42476,1224042,14 +103403,Titi,71191,562157,2 +103404,Ava Dunham,286971,68495,7 +103405,Flynn,288710,111195,5 +103406,Martha Conovan,151310,13296,4 +103407,Brock,339342,1334255,9 +103408,National Guardsman Matthew,407448,1191822,36 +103409,Bones,46020,57410,6 +103410,Sikong Zhaixing,64304,994384,11 +103411,Senator Charles Sumner,161187,85177,4 +103412,Sue,7547,52881,6 +103413,Abby,56809,1783706,8 +103414,Cyborg (voice),353595,65640,4 +103415,Inspector Hyder Ali,103073,1032655,3 +103416,,391757,101273,14 +103417,Zach Collins,283445,1485776,3 +103418,Suicidal Train Passenger,144792,946334,13 +103419,Beerdigungsunternehmer / Assistent von 00 Schneider,1659,18414,14 +103420,Brenda St. John,22020,52614,1 +103421,Gomez,2687,17933,7 +103422,,172386,1068123,6 +103423,Deputy Sheriff Gordine,30708,152624,19 +103424,Martin,90387,1108268,4 +103425,Dorothy Hannan,37923,78647,14 +103426,Himself,15725,1006759,7 +103427,Isabel Villalobos,693,10402,7 +103428,Irish Landlady,128669,991145,18 +103429,Blue Squadron,330459,11855,36 +103430,Alex Freeman,317144,1412288,3 +103431,,369363,19789,3 +103432,Thor (uncredited),284052,74568,45 +103433,,25626,118726,47 +103434,Woman on Train (uncredited),43522,9073,22 +103435,Pietro Balossino,53399,1839537,7 +103436,Slip Mahoney,166904,89989,0 +103437,Jacques,210047,1189196,9 +103438,Maggie,300667,3489,3 +103439,Emile,295964,1221129,23 +103440,Phil Decker,94176,97657,2 +103441,Dr. Andrew Lang,36635,30303,4 +103442,Team Gunnar,120802,1818383,32 +103443,Sheriff Pete Starr (uncredited),53574,121096,5 +103444,Caesar,25598,2778,6 +103445,Dirk Lagerwaard,154972,1388976,2 +103446,(uncredited),43459,180225,17 +103447,João de Deus,101342,257772,2 +103448,Mr King,18093,1078697,17 +103449,Long Congjiang,63441,1135162,6 +103450,Gabrielle,417489,79610,5 +103451,Richie (uncredited),68721,445918,106 +103452,The Wretched (uncredited),76341,1394433,59 +103453,Sammy,157847,205525,9 +103454,R. S. Widdowes,171075,193488,1 +103455,Seeta Ram,125835,545595,3 +103456,Dahlia,50374,25282,2 +103457,Parent,84184,1181324,8 +103458,Lobo's Mate,89647,1167536,2 +103459,Stripper,62289,35622,10 +103460,Elena de la Madrid,18447,16102,1 +103461,Henri,100063,18766,4 +103462,Ralph Mowry,200505,6951,14 +103463,Police Sgt,43833,1290333,38 +103464,Susan,241254,66579,10 +103465,Susumu Nishimura,43877,1195180,5 +103466,Mönch in der Kirche,75578,125779,10 +103467,Professora,254435,559176,3 +103468,Woman,45013,1152042,33 +103469,Dr. Simon Barsinister,6589,22970,1 +103470,Pickett,137614,3197,4 +103471,Cameron,145547,6575,0 +103472,Ben Garvin,72474,89660,8 +103473,Koda sensei,72592,1112403,5 +103474,Grey Ghost,7459,677,17 +103475,Himself,27317,10872,0 +103476,Logan,26574,95683,7 +103477,Amy Younger,183825,935345,17 +103478,Little Boy's Mother,153161,31770,17 +103479,Cosmo the Space Dog (uncredited),283995,1405553,57 +103480,Joe Beckstrem,142012,7471,7 +103481,Thomas Logan,197737,17753,3 +103482,Mathematician,8410,55749,7 +103483,Mrs. Lilly Sheldon,229610,2643,4 +103484,Rachel,182097,583801,3 +103485,Knox,414910,58956,1 +103486,Man,25126,73287,2 +103487,Davis,87229,110898,11 +103488,,87204,79196,3 +103489,Les,18690,148603,4 +103490,Himself,82153,99773,5 +103491,Rudy Keppler of the Chicago Examiner,987,14836,13 +103492,Anthony,27079,97188,4 +103493,Jock Crawford,26405,69248,2 +103494,Gudmund's Father,206390,1188866,11 +103495,Lily,75778,17026,6 +103496,Georgina,447758,1651685,18 +103497,Carolina,62034,553896,6 +103498,Dr. Fritz,3037,44393,8 +103499,Ariel,45729,133590,7 +103500,El Cid,16638,10017,0 +103501,Charlie Miller,182035,33278,2 +103502,Nemo's Father,31011,7026,4 +103503,Julien Daniels,2778,21125,4 +103504,Grey,340275,1394344,56 +103505,Millicent,30496,1399148,15 +103506,,189364,54500,2 +103507,Nurse Woo,41171,1296930,32 +103508,Sharma,20364,86019,12 +103509,Thug (uncredited),38654,143564,17 +103510,Sheriff Atlas,36737,38560,0 +103511,Greg,255948,136170,5 +103512,Packy Talbot (uncredited),50549,193763,22 +103513,Oreste Jacovacci,55823,45982,0 +103514,Herself,13516,46393,26 +103515,Elizabeth Hayes,288668,21462,1 +103516,Quique,130457,99811,5 +103517,German Officer (uncredited),369885,1454291,23 +103518,Girl at Camp Site,54523,100425,7 +103519,Carmen Lowell,9779,59174,2 +103520,Lowell,382591,61364,4 +103521,Dennis Clay,15613,83782,14 +103522,Opera Police,177677,1400211,43 +103523,L'onorevole Cocchetelli,57996,132198,8 +103524,Il Gatto (voice),136619,228158,4 +103525,Merrill's Secretary,157343,121323,19 +103526,Nicole,24170,56654,1 +103527,Ma Kent (voice),166076,4432,6 +103528,Kang Yeo-ri,92499,86889,0 +103529,ASTP-73 / Professor Kroeger,27840,99140,12 +103530,Penelope Agatha Livia Steg,61035,19910,5 +103531,Luke Adler,22897,35236,8 +103532,Gast im Restaurant,269258,213586,23 +103533,Himself,324181,1775297,9 +103534,Shooter,10433,1815845,9 +103535,Nora,260001,1802509,12 +103536,Tracy,109439,83585,10 +103537,Sarah Lawson,52109,4800,0 +103538,Jack,277847,978,4 +103539,Inspector Ashwini Sinha,49028,85657,8 +103540,Dorothy,25598,4687,3 +103541,Rudolph,30059,105638,5 +103542,Hitman,297853,1790430,18 +103543,Chess Onlooker,182127,118745,46 +103544,Noelle,64861,22082,0 +103545,Astrid Black,64685,56685,16 +103546,Heidi,159667,1656700,15 +103547,Gary,54093,5312,9 +103548,Narrator,352197,68929,8 +103549,Guard,310135,1322985,27 +103550,Dennis,13668,65727,3 +103551,Giorgio Marchini,255456,1871522,8 +103552,Judge Rankin,43829,30202,27 +103553,Leon,142946,155875,4 +103554,Walt McCandless,5915,227,2 +103555,Teddy Roosevelt Dangos / Narrator,118059,37448,4 +103556,Big Ben,30059,34559,3 +103557,Yeong-Sik (father),25597,227441,6 +103558,Ghost,72074,72732,2 +103559,Wernes,71805,1014342,14 +103560,Teenage Amos,336029,1893910,6 +103561,Woman Fainting at Downed Bridge,56154,974965,14 +103562,Pyunma / Cyborg 008 (voice),127544,122726,4 +103563,Ashley,21141,69508,3 +103564,"Peter, a Headwaiter",98125,121097,15 +103565,Hotel Bellboy,157343,1112171,18 +103566,Bruno,4516,37627,1 +103567,News Vendor in Paris,109716,1000083,48 +103568,Society Reporter,28299,19098,8 +103569,Premier,394645,82420,0 +103570,Appeal Receptionist,374473,1559086,10 +103571,Uncle Julius,16659,127137,6 +103572,Penny,385372,1585217,15 +103573,Andre Gallinet,151911,14688,3 +103574,Pierre Lantin,28061,99520,2 +103575,Oskar,308671,4920,4 +103576,,322614,1610547,4 +103577,David Carter,17332,81697,3 +103578,Photographer (uncredited),170234,34759,10 +103579,Hattie,169726,101876,9 +103580,Grubov,35405,97679,10 +103581,Bernie,101325,1329,3 +103582,Octavius,181533,4581,15 +103583,Za-Tor,64428,14015,7 +103584,Joe Maxwell,14008,21163,2 +103585,Lella,62036,129341,7 +103586,Priscilla Presley,40047,47456,4 +103587,Capt. J.R. Wolverson,151310,93624,7 +103588,Henri Tournel,141955,10508,2 +103589,Grace Kelly,38978,1619137,16 +103590,Hobo Louie,15213,27105,10 +103591,Massimo Ricci,20126,104127,13 +103592,Punk (voice),43641,20903,7 +103593,Caleb Slade,62392,197477,11 +103594,Turbo Rider,310135,1716342,34 +103595,Buurvrouw,74661,572288,9 +103596,Drunk in Bar (uncredited),52454,1630353,70 +103597,Photo Session Hardbody,52736,103968,19 +103598,Chetty,147815,120950,4 +103599,"Ida Dugan, Jump's Wife",61225,1879749,33 +103600,Hammerhead,34459,1858720,8 +103601,Perry White (voice),166076,51930,14 +103602,,19552,1275922,13 +103603,Aggie,309581,1343525,10 +103604,Himself,271718,1490113,20 +103605,Daphne (voice),13355,15761,3 +103606,Hannibal Buress,369524,500427,21 +103607,Narrator (voice),121598,9147,8 +103608,Deputy Lou Gray,43562,93624,4 +103609,Door Knocker,173294,1064071,15 +103610,Maj. Gen. Vernon Pollard,19968,178269,6 +103611,Tante Martine,255913,28186,23 +103612,Lisa,35683,1628344,8 +103613,Stella,27886,1050372,3 +103614,Reporter at Monument,209112,1691987,73 +103615,Carlos,6687,17093,3 +103616,Key Bar Redneck #4,77067,1599676,10 +103617,Doctor (uncredited),76011,113654,12 +103618,Leila Roine,238362,1272825,0 +103619,Topo,210047,17419,1 +103620,Jakob Beer,18613,8435,1 +103621,Renault,87587,171946,3 +103622,Lt. Tavernier,99875,544283,1 +103623,Martha Freud,48231,235162,23 +103624,Joel,426253,592320,4 +103625,Himself,173467,1776,5 +103626,L'infirmier,3423,25069,9 +103627,Third Adult Child,101852,552096,13 +103628,Agent Ray Davies,91333,90731,17 +103629,Arnold,20108,17590,3 +103630,Phillipe,242097,15395,2 +103631,,241140,110989,14 +103632,Kowalski (voice),270946,12098,1 +103633,Sang-woo,95453,10112,1 +103634,Brian,97794,1057433,9 +103635,Paul,4930,40161,8 +103636,Jack Leary,38749,76995,4 +103637,Sovereign Pilot,283995,1313075,39 +103638,Eli & Masha's Son,2001,1781692,20 +103639,le Dromadaire,76651,25155,6 +103640,Supermarket Mum,242224,125581,19 +103641,Schnulzensänger,5881,46279,11 +103642,Russian MMV Soldier,337339,1452940,26 +103643,Caitlin,31880,116300,5 +103644,Hector,13280,169001,7 +103645,Juliette,43904,11545,1 +103646,Preacher,28068,99570,15 +103647,Mrs. Nordmann,35129,8493,7 +103648,Julian Stevens,417870,18291,4 +103649,Tilly Shaw,51828,66431,6 +103650,Infirmière anglaise,39358,1717261,15 +103651,Employee,51036,1862912,49 +103652,Driver (uncredited),1976,213830,41 +103653,Fred,397717,87466,13 +103654,Mrs. Marretti,44754,14892,9 +103655,Mère,8276,54275,3 +103656,Vampire Hunter #3,89337,62715,11 +103657,Georgie 'Swifty' Dorgan,118134,27733,2 +103658,Laurie Walsh,60662,1374771,3 +103659,The Governor's Cousin,37368,14979,8 +103660,,73835,122023,19 +103661,Nick,10201,8265,9 +103662,Heather,15189,31031,4 +103663,High Society Customer at Beretti's,94009,139926,7 +103664,Monique,4974,9765,3 +103665,Soldier in bar,26983,55423,12 +103666,Le père,51971,38008,5 +103667,Prince Andrew Alcott,62764,53807,2 +103668,Spartan Baby A,1271,1330745,34 +103669,,69310,150899,33 +103670,Ted Nickerson,47882,89925,1 +103671,,334651,24487,2 +103672,Ivan Ageyev,64268,400340,5 +103673,Mark Kenworth,16876,33337,6 +103674,Clint Harolday,15264,106104,8 +103675,Cole Younger,27349,19153,0 +103676,Inez,169869,1110193,7 +103677,Max's Non-uniformed Friend,369885,1651400,53 +103678,Promoter,308529,78452,6 +103679,Henchman,39276,30567,12 +103680,Attore della Vicaria,56853,313610,25 +103681,Marie,262958,1323109,10 +103682,Jala Asgari,379019,1405518,18 +103683,Bartender (uncredited),2288,1673059,14 +103684,Mathieu,11346,69094,4 +103685,Village Elder,31264,102032,6 +103686,Corpus Colossus,76341,1734174,24 +103687,JonBenet Ramsey Auditionee / Herself,430826,1891564,67 +103688,Ilsa,29907,1665239,11 +103689,Luis Ruiz,18015,105688,3 +103690,Teresa / Alexa (voice),13004,85430,2 +103691,Doctor,289191,1408433,8 +103692,'All Over Town' Bus Driver,228647,105455,32 +103693,Charcoal Head,10257,64435,5 +103694,Meyer,419522,1321681,9 +103695,Fuji Announcer,7459,44792,9 +103696,Carol Vanstone,384682,4491,3 +103697,Lucek,31021,82313,0 +103698,Ali van Versch,97365,73381,1 +103699,Chuck,53953,83424,6 +103700,Chudo-Yudo,20934,86700,1 +103701,Constance,55853,38341,0 +103702,Angelo Pazienza,332979,8785,3 +103703,Prof. Simmington,75778,29698,8 +103704,Tarquin,16058,37289,5 +103705,Ike,13058,1220314,9 +103706,Chad,369033,1032886,13 +103707,Hammerhead,370687,550359,5 +103708,Driller Killer,195022,56616,3 +103709,Ginny,12796,11182,9 +103710,Miss Abigail Armstrong,77412,9073,5 +103711,Hipster Model (uncredited),36691,115980,21 +103712,Waterkotte,26809,31514,5 +103713,Princess Jeanette,31532,98462,1 +103714,Weeping Veteran,13957,76102,3 +103715,Motel manager,58918,61216,7 +103716,Guest at Baptism and Wedding,71866,1103658,8 +103717,Man on the Street,105059,1683135,34 +103718,Geeta Singh,160261,109549,0 +103719,Mitch,248706,1235899,8 +103720,Brian Richardson,29611,104349,1 +103721,Paul,20842,167625,4 +103722,L'ex-fiancée,63717,237783,7 +103723,Diego Garrido,109690,96429,1 +103724,Hassan,99819,1021736,0 +103725,Ann Kincaid,175386,20391,1 +103726,Mundakkal Shekaran,237672,229981,2 +103727,Julie Grigio,82654,20374,1 +103728,Puar,38594,122192,5 +103729,Rasta,74395,155551,5 +103730,Edward 'Eddie' Crane,43792,14868,2 +103731,Miguel Ángel,167935,1170642,6 +103732,Sweeney Todd,139244,2282,0 +103733,Artyom,31875,124093,2 +103734,Peter,42941,158627,23 +103735,Young Mother (uncredited),274857,1387381,63 +103736,Amber,123109,1225783,6 +103737,Gail,241855,149516,7 +103738,Mary McGarricle,87428,4038,1 +103739,,394051,74946,4 +103740,Tommy Calloway,277388,77885,8 +103741,Ricks,126889,181081,6 +103742,Bella,52859,103490,10 +103743,Detective Shin,371446,61697,3 +103744,Mickey Lamonsoff,257344,53647,16 +103745,Señora De La Plata,68247,33741,2 +103746,Friendly Woman,20766,27125,5 +103747,Himself,72867,10828,1 +103748,Teenager Cindy,45649,965884,10 +103749,Tom,253794,158223,2 +103750,Thomas' Mother,294254,1151637,13 +103751,Danilo,80280,122461,10 +103752,Sally,72574,2022,1 +103753,Ah Chang,33338,937562,7 +103754,,31074,52374,0 +103755,Koning Flurkentijn,35639,9133,6 +103756,Cafe Speed Talker 1,414977,1636420,20 +103757,Gerard Lenz,43026,37130,1 +103758,Jesse,339408,1522921,27 +103759,Edna Turnblad,409447,7420,2 +103760,Vänrikki Pienimäen vaimo,55756,4830,9 +103761,Campbell,220820,980,3 +103762,Live Volcano Reporter (voice),40807,43961,38 +103763,,209251,1103794,3 +103764,Ellen,417820,1190655,4 +103765,Tai Huang,285,22075,23 +103766,Eve Beauchemin,41277,109619,8 +103767,Bob McGurk,82313,785,7 +103768,Darren Spenser,107781,5940,6 +103769,Blind Indian,56527,62715,3 +103770,Dr. McCarthy,62837,192,0 +103771,Farmer,19017,141404,14 +103772,Lecture Attendee,98349,590493,17 +103773,Willett Gashade,42701,8255,3 +103774,Heaton,12783,56100,9 +103775,Barbara,379441,22252,3 +103776,Tien,42293,46021,1 +103777,Chairman Thorpe,3580,159454,13 +103778,(voice),255772,1194917,15 +103779,Dr. Derek Joyce,28673,39151,3 +103780,La vendeuse de couteaux,53404,204034,15 +103781,Antvar 'Chris' Anderson,121848,583697,5 +103782,Marcia,123359,1102270,11 +103783,José Mari,332354,24977,1 +103784,Pachita,45191,587901,14 +103785,Nadine,160844,94256,4 +103786,Steve Tucker,84184,29020,5 +103787,Frau in der U-Bahn,75969,1902109,67 +103788,Background,408508,1707544,7 +103789,Toshiko,27276,551590,10 +103790,Morella Winmarleigh,53231,141070,5 +103791,Astronomer,62472,552182,26 +103792,Dr. Keating,77012,34320,8 +103793,Kevin,47540,54043,7 +103794,Sally,20312,85926,10 +103795,Molly Maxwell,159667,1079084,0 +103796,Patient in Dr. Forrest's Office,124115,1422893,26 +103797,2G,102632,147706,8 +103798,Army Officer,194407,105810,14 +103799,Françoise Dalbret,5767,6103,4 +103800,Rosie the Robot (voice),17009,145257,6 +103801,Window Dresser,98125,1282770,30 +103802,,458428,1820242,6 +103803,Kim - at Sixteen,31548,1070704,12 +103804,Barrista,18206,43945,4 +103805,Joanna Stayton,10780,18892,0 +103806,Montgomery Keybutter,117942,1066309,13 +103807,Mr. Whitman / DJ Wax,14123,937929,14 +103808,Waiter,5638,81564,26 +103809,Travis Sanders,13680,9779,4 +103810,Serviceman in Cafe,4982,123587,43 +103811,Nathalie,73474,90676,0 +103812,Second Nurse,27966,103079,43 +103813,Khufu,43252,8516,12 +103814,Mrs. Bauer,49850,556735,18 +103815,"Reagan, the American Reporter",28261,100306,3 +103816,Constanza,8368,54739,6 +103817,Producer,15086,3536,3 +103818,이호태(Lee Hotae),245597,929574,1 +103819,Mon,137504,7451,0 +103820,Demon Creature,146243,583844,8 +103821,,256930,96858,6 +103822,Advokaten,284279,19871,10 +103823,Cuquis,375794,1672141,9 +103824,Fred,211879,1378131,0 +103825,Sachiko Hirokôji,83389,19587,4 +103826,,186971,1605808,25 +103827,Julia Halforde-Smythe,42599,184955,7 +103828,Black Watch Officer (uncredited),43889,120445,18 +103829,Country Wedding Priest,405473,1800038,34 +103830,Apik (voice),233423,58168,2 +103831,Mario,5183,26879,5 +103832,,88953,1537392,14 +103833,Jennifer,54893,239953,5 +103834,Ayako Murai,43877,33761,0 +103835,ředitelka školy,6079,47842,15 +103836,Private Ryan,128612,11864,3 +103837,Jacques,309929,1157588,5 +103838,Benito,261249,95012,9 +103839,,279543,933196,10 +103840,Kuppel,49038,1115699,3 +103841,L'industriale,82368,37193,3 +103842,Nurse,102362,1530423,21 +103843,,214938,1199626,9 +103844,Hugh Peters,31675,2264,7 +103845,Pirate's Club Customer (uncredited),46026,19967,12 +103846,The Hangman,240745,18472,10 +103847,John Stroud,38808,3381,0 +103848,Minister,102632,239690,9 +103849,Antonia,47683,1750913,4 +103850,Himself,157117,1150576,18 +103851,Cabot Royce Winthrop,332079,34447,23 +103852,Sandra,73624,55029,2 +103853,,345915,64344,21 +103854,Security Man,59738,1205531,25 +103855,Captain Trahan,66193,13022,4 +103856,Fourpack,138496,217046,1 +103857,Grandmother,44510,1839350,1 +103858,Woman on TV (uncredited),5421,100437,11 +103859,Dylan Piper,34205,62147,5 +103860,Luke Potter,107593,14453,12 +103861,,86040,16897,0 +103862,Jean,319340,1440452,9 +103863,Molly,169068,210305,9 +103864,Prune,12169,78534,6 +103865,White Witch,2454,3063,18 +103866,Master Splinter,98566,13645,8 +103867,,227552,83170,2 +103868,Émile Champagne,160160,1158757,4 +103869,Kindness,51036,1879503,40 +103870,Michelle Miracle,246011,1331273,19 +103871,,105760,28834,14 +103872,?,12831,49424,3 +103873,,61533,52936,2 +103874,Young Enrique,140,1609,7 +103875,Cpt. Arnstead,59197,289992,5 +103876,Min-Ho,229304,1256357,8 +103877,Carla,222858,105647,1 +103878,Sydney Wells,9030,56731,0 +103879,Rachel Fielding,48131,13326,1 +103880,,391778,113690,8 +103881,Pete Mc Coy,95358,153662,3 +103882,Manjeet,12273,77240,10 +103883,Danny,26688,96016,5 +103884,Dominique Drouot,1427,17070,17 +103885,,83501,883802,2 +103886,Rupert,87229,3872,2 +103887,Dick Thompson,194817,172310,3 +103888,Taggart Gang,35381,128661,10 +103889,Dirk De Jong - younger,98536,10165,2 +103890,Luis,109391,1113335,18 +103891,Sakura,38221,235720,10 +103892,Perić,382873,1078976,7 +103893,,188640,232538,8 +103894,Clare,26510,95896,2 +103895,Darkman / Peyton Westlake,18998,16743,0 +103896,врач,330878,240532,10 +103897,John Martin,53781,4165,0 +103898,Harald Knoop,145194,1671,2 +103899,Old Man,30402,52023,1 +103900,Bill Porter (lawyer),40744,30115,6 +103901,Herb,31913,23708,7 +103902,Cutts,17566,81352,7 +103903,Worker,197737,1420479,28 +103904,Claude Mazard / Frank Howard / Charlie the Hatcheck Man,17136,34333,7 +103905,Young Alice,202214,573835,1 +103906,Lucas Malvoisin,59434,40971,5 +103907,"Screaming Boy (voice, uncredited)",3580,116446,59 +103908,Nili,96888,1011138,2 +103909,Countess Ida Ferenczy,3478,32066,13 +103910,Baldo,42579,128247,3 +103911,Jim Blair (as Jack Gilbert),174946,98045,3 +103912,Johnson's Henchman,118134,600741,15 +103913,Marquesa de Santella,37329,100342,9 +103914,Bertrand,37645,1054651,31 +103915,L'adjudant,59349,583309,6 +103916,,307696,1428800,4 +103917,Himself,148807,1092208,5 +103918,Marcus,15476,55637,6 +103919,Siu Yiu,47647,1277921,11 +103920,Mic,63681,36211,5 +103921,Dick James,391375,1171782,15 +103922,Mr. Lu,331313,1739699,17 +103923,Peruzat,81708,145394,1 +103924,Paul Sveck,93676,8212,2 +103925,Stevie,179826,1404647,17 +103926,Janet,28682,101601,10 +103927,Addolorato,109979,1891145,11 +103928,Tam,69619,21908,0 +103929,Stephan,3145,1091263,9 +103930,Stunt Neighbour,25941,63080,19 +103931,Richard Shaw (uncredited),419430,1242199,35 +103932,Anne Charpin-Vasseur,10930,136761,4 +103933,Cop,22051,1634923,22 +103934,"Joey Vulner, Rico's Mgr.",25633,94031,9 +103935,Edward McCormick,335498,22091,4 +103936,Mandarin Party Girl #2,68721,1735562,64 +103937,Mary,365753,1569794,6 +103938,Carole Fielding,24094,74285,13 +103939,Bob,40859,87341,4 +103940,Susan,169794,12930,1 +103941,Everstinna Tossavainen,55761,222300,5 +103942,Billy Speck,270007,21662,4 +103943,Elisa,77338,26107,5 +103944,Clara Auteri,11972,1189934,6 +103945,Dad,286369,20508,1 +103946,Jane Badham,93828,110581,13 +103947,Kaminsky,51036,1865393,20 +103948,Jimmy McGarry,54318,54494,15 +103949,Vicar,48145,6658,2 +103950,Padre di Caccavallo,62034,1894255,11 +103951,Allison,322266,1225170,9 +103952,Hope,51481,1032810,2 +103953,The Girl,33091,111341,0 +103954,Rancher,197737,1250223,22 +103955,Maury,90992,23536,2 +103956,Boswell,64456,120070,11 +103957,Sabine,2241,23122,6 +103958,Sergeant Scott (as William MacBain),73772,63138,6 +103959,Él mismo,284362,1347729,1 +103960,,38332,240545,5 +103961,Chris Grandy,10096,84407,35 +103962,Lois,340616,1111432,12 +103963,Larry Buckham,37462,78940,3 +103964,Lennox Sanderson,31509,116186,2 +103965,Patau (Bruckner Son),29161,103063,11 +103966,Owen,9472,59231,7 +103967,The Sheikh,43354,26557,8 +103968,The Chief,19725,1211,7 +103969,Bewährungshelferin,211,10243,8 +103970,junger Arzt,11122,113501,10 +103971,Kirby Claxton,111470,153638,20 +103972,Biggs,332280,559641,41 +103973,Rabinisi - Boroff's Spokesman at Screening [Ch. 1],170936,13343,9 +103974,Wadjet,188927,85505,31 +103975,Aphrodite Girl,32657,208230,22 +103976,Priest,32395,163650,5 +103977,,294047,15824,4 +103978,Aunt Callie,5928,81552,13 +103979,Tannoy Man,381518,85970,22 +103980,Marine,181574,85481,12 +103981,Large Man,68387,551475,23 +103982,Keiko,340176,1255100,1 +103983,King Henry IV,24442,84230,9 +103984,Wendy,13493,141374,6 +103985,Le père de Camille,82327,29516,4 +103986,Fat Tourist Girl - Cartoon,65599,543725,7 +103987,Train Passenger,56154,1123937,21 +103988,Graduation Parent (uncredited),102382,1257860,62 +103989,Mabel's Mother,141868,148074,4 +103990,Ali,52072,1397413,5 +103991,,118794,239683,0 +103992,Danya's girlfriend,218443,1009079,5 +103993,Gadget,94055,1217505,7 +103994,Gunman,13534,57387,5 +103995,Bruno Anderhage,24647,93138,3 +103996,Stacy,246917,1528488,7 +103997,Fantasy Girl,19286,1706667,16 +103998,Commissario Malachia,173847,131624,3 +103999,Technical Adviser (Shrink),4932,10024,31 +104000,Julia,86643,140415,3 +104001,Asian Nurse,15092,209417,28 +104002,Tordis,57438,226175,9 +104003,Louie,189,968889,22 +104004,Naughty Cheerleader (as Alexandra Fulton),145135,1301697,26 +104005,Dagen,370687,1418422,4 +104006,Hector,76163,78110,7 +104007,herself,190940,53975,25 +104008,Angela,131897,59640,1 +104009,Blind Pig Patron,407448,1871105,25 +104010,Federale Commander,263115,1372185,10 +104011,Kashiwazaki Nenji,221732,136191,8 +104012,Taylor,45875,134070,9 +104013,Ferguson,108282,26358,26 +104014,vescovo,155011,24608,2 +104015,Ramon,52039,7370,2 +104016,Don Germano Canfora,315319,78535,1 +104017,Cockcroft Guest #4,266856,1503917,43 +104018,Moses Jones,4982,150,8 +104019,Sally Biggs,142391,1117264,0 +104020,,11330,1444519,23 +104021,Major Böckl,459,6256,7 +104022,Beverly,242224,1321953,17 +104023,Damien Lord,189,20982,16 +104024,Emilia,8276,54282,12 +104025,Herries Servant,186227,118258,27 +104026,Vanessa,5172,53971,24 +104027,Gaetano Filangieri,56943,78694,1 +104028,Cunningham,21338,16662,5 +104029,Jakande,168259,938,7 +104030,Harry,16563,165904,16 +104031,Moshe Ben Moshe,7483,52687,6 +104032,Police Secretary,6589,1834038,12 +104033,Moose,24432,19303,10 +104034,Sakura,43967,105818,20 +104035,Don Zequiel,4497,37509,8 +104036,,172008,143527,10 +104037,Major Michael Hogan,70133,1248,1 +104038,La locataire,329809,1505473,7 +104039,Kenshin Himura,221732,230659,0 +104040,Roger,16996,180789,21 +104041,Olson - Detroit Auto Works Technician,118059,589728,7 +104042,D,157293,1668310,14 +104043,détective,11912,24652,11 +104044,Kelso,31915,1338109,11 +104045,The Sniper,380731,1643337,12 +104046,Amber,195269,1073525,6 +104047,Charlie,41932,11769,10 +104048,Mr. Johnson,48281,560159,5 +104049,Cody,10070,62821,14 +104050,Robert Emmett Donovan,266373,30495,2 +104051,Woman 2,274857,1816439,42 +104052,Juliette,18548,148139,2 +104053,Flammarions' Party Guest,31993,171111,34 +104054,Gibson Mouse,62670,75604,14 +104055,Arcade Employee,257344,1683858,62 +104056,Orso Dalcò,3870,5268,18 +104057,Claire,48431,59826,1 +104058,Oficer,382155,1636695,26 +104059,Jablonski / Frank Smith / Fast Food Guy,354857,75038,12 +104060,Priest,21968,55841,0 +104061,De'Andre,308639,1224954,19 +104062,David,318553,1297931,10 +104063,Mohammed,48243,22461,0 +104064,Mogambo,41903,691,2 +104065,Effie,21554,9572,4 +104066,Makoto's mother (voice),14069,1133289,8 +104067,Mourner / Night Manager,16022,35349,25 +104068,Mayhem,59678,1672687,22 +104069,Britischer Sergeant,4375,41998,9 +104070,Loomis,96793,9221,2 +104071,Steve,426264,4581,0 +104072,Chang Ho,85709,932489,0 +104073,German Panzer Soldier,19996,1764146,43 +104074,FBI Agent (uncredited),127493,1338215,12 +104075,David Connover,418437,22128,2 +104076,Franciszek Retman,154575,1135441,0 +104077,Princess Alexandra,169355,121019,1 +104078,The Man in Black,54700,2220,3 +104079,Julian,18739,1125,1 +104080,Inspector Stephen Gore,176867,82382,6 +104081,Prison Singer,101998,1029798,25 +104082,Oracle Girl,1271,1089919,19 +104083,Pavlina Khutornaya,143073,115996,0 +104084,Partygoer (Ted's Buddy),72105,944326,37 +104085,Stéphanie,271826,59373,1 +104086,,374618,1554764,9 +104087,Hélène Lesage,41277,553894,4 +104088,Sheriff Carson,63260,103529,3 +104089,Harry Jordan,210940,93655,0 +104090,Jameson,149793,3368,7 +104091,Himself,417870,31133,13 +104092,Det. John Gilbert,78691,42746,6 +104093,Karmak,113700,97935,4 +104094,Kamyshev,61266,1090481,1 +104095,Desk Nurse,9987,61511,7 +104096,Interviewee,17654,1086509,15 +104097,Kristen,86703,933546,6 +104098,Ivan (voice),116733,588108,3 +104099,SDF Intelligence Capt. Kumi Emori,36243,87644,5 +104100,Anna,190410,70234,1 +104101,Lee Young-min,49190,93999,2 +104102,Uuno Turhapuro,55776,116157,0 +104103,,36236,587456,17 +104104,,116762,1156367,6 +104105,Factory Girl 1,45273,1089690,6 +104106,Mother in The Future,270654,1224490,22 +104107,Un agent,27053,1448493,26 +104108,Ludwig,111480,1827135,9 +104109,Mary Rigby,275060,17882,4 +104110,,57889,99266,6 +104111,Sorella di Valeriana,56804,128414,5 +104112,Whitmore,8965,4251,2 +104113,Oyû (voice),63486,239446,1 +104114,Lou Reed,111479,59219,8 +104115,John,16015,1184,3 +104116,Agent Miller,13056,60907,11 +104117,Desperate Son,199575,1438907,37 +104118,Jason,83860,930215,1 +104119,Alan Collins,46567,30900,14 +104120,"Fatma, Muzaffer's mother",52072,1088663,3 +104121,Erkki Jorma,33280,7742,1 +104122,Dr. Jane Mathis,433244,5025,0 +104123,Robin Williams,212934,1217648,1 +104124,Submarine Commander (as André von Engelman),183932,1381514,14 +104125,Leo,41427,68271,15 +104126,Jennifer Lawrence,23692,14990,4 +104127,Ram Tech Bouncer (voice),378236,1859937,21 +104128,Jimmy (voice),48567,160112,3 +104129,"Morgan Carrell, the Director",132928,87698,4 +104130,Oscar Ferne,369406,38788,4 +104131,April Dray,419430,1069644,14 +104132,Mei Li,72733,567011,0 +104133,Mala (voice),16873,38940,0 +104134,,250029,543619,1 +104135,Victor,2143,132886,7 +104136,Mme. Joncour,14753,65776,9 +104137,Carlotta,82655,748938,9 +104138,School Mother,22447,118609,22 +104139,Young Jesse,18586,83273,4 +104140,Bjørn,57438,141561,5 +104141,The Father,55700,1865841,2 +104142,,205349,1074800,7 +104143,Rose,187596,94098,2 +104144,Prince,59075,228793,10 +104145,Tamizo Onoue,46069,1459987,11 +104146,Clarence Chung,220724,1356439,6 +104147,Anthony,38022,35780,2 +104148,Servant,15371,553102,15 +104149,Snake Corville,35381,63941,11 +104150,Pechkin the Postman (voice),77294,47430,4 +104151,Brandon,157354,1056129,8 +104152,Леша,35428,86860,0 +104153,Student,72592,1041474,6 +104154,Dinah,227156,1412934,14 +104155,Reece Waiter,295964,1287731,22 +104156,Chulapa,117534,1687458,16 +104157,,391438,37505,2 +104158,Becca,70636,94632,4 +104159,Apollodorus,31561,41235,2 +104160,Chief Agent Gunby,29260,91260,4 +104161,Colonel Watrous,228647,33033,7 +104162,Dmitriy,16921,84701,8 +104163,Todd's Dad,195022,1180705,13 +104164,Mourner Zombie,24927,1087008,13 +104165,Youthful Mob Defendant (uncredited),14615,223268,77 +104166,Banker at Demo,67375,1616896,51 +104167,,47508,30195,15 +104168,Rugantino,50196,67967,0 +104169,The Wizard,18506,84249,7 +104170,Rohit,396643,1566911,6 +104171,,92285,35345,15 +104172,Brandi Boski,13848,8211,0 +104173,Glass,360737,15480,1 +104174,Julie LaVerne,17820,25787,2 +104175,Clara,433244,20493,6 +104176,Queen Lillian (voice),810,5823,3 +104177,Mrs. Raskolnikov,43891,99329,4 +104178,John Keckwick,16182,79930,9 +104179,Tom,204384,49021,12 +104180,Maria Merevsky,190853,68816,1 +104181,Lucy (as Sandra Mozarosky),28071,99567,2 +104182,Ella Freed,94480,97771,4 +104183,Woman in Lala's Dream (uncredited),34082,3663,10 +104184,Casino High Roller (uncredited),14669,1574241,25 +104185,Tulsa,365942,52018,1 +104186,Mauricet,7229,53203,10 +104187,Kudaragi,366170,91872,14 +104188,Actor,269173,1388917,21 +104189,Blue Shirt,188927,140182,18 +104190,"Ryoko, the Woman in the Park",870,13252,3 +104191,Svenja,4344,36561,0 +104192,Denise Davies,35320,101245,8 +104193,Bridesmaid,356191,1549814,15 +104194,Maurice (voice),10527,5726,4 +104195,Delivery Boy,53387,89609,8 +104196,Jaskari's wife,286267,1303604,15 +104197,Mme de Solcy,2002,57298,6 +104198,Joshua,413998,55468,5 +104199,,53693,70351,8 +104200,Tim Vernon,264080,40401,1 +104201,Barb,424488,1305924,9 +104202,C. S.,237672,1272002,19 +104203,klant catchring,35016,1127486,33 +104204,Aqua Walker,27621,74046,2 +104205,Ben,309581,156405,6 +104206,Ramkopf,27937,99272,3 +104207,la mère de Louis Toulouse,12089,532649,6 +104208,Abigail Salmon,7980,3293,0 +104209,Doctor's Assistant,9963,61106,18 +104210,Natasha Kwon-Schwartz,115626,88123,2 +104211,,133783,1430682,10 +104212,Older Crook,193899,30212,3 +104213,Włoch,26971,1133106,7 +104214,William Paley,3291,8924,19 +104215,Tyko Gallen,264061,31702,8 +104216,Frank,365222,80757,8 +104217,Roy,116463,29445,13 +104218,USS Carter Sub Commander,52454,1265838,16 +104219,Babli,188640,77234,0 +104220,Aleksey's Mother,71381,93549,4 +104221,Lady Em,18475,15899,2 +104222,Maggie,13920,3978,3 +104223,Herbert Stiles,31428,114509,10 +104224,Natsuko Kimijima,85844,213507,1 +104225,Gwen (uncredited),80168,1445464,12 +104226,Gino,354857,1219029,15 +104227,,31418,584052,14 +104228,Aamdar Saheb,94935,150012,3 +104229,Matka Wrony,82027,592913,2 +104230,Skolelev,82448,928015,16 +104231,Sally,250535,11184,2 +104232,,31462,42141,24 +104233,Latino Detective,75622,210016,9 +104234,Lotta Morgan / Lotta Bostrom,93313,116640,2 +104235,Que / Wheeljack (voice),38356,14102,27 +104236,Mounted Policeman,18569,1240252,20 +104237,Himself,36325,1096494,0 +104238,Alan Rutter,340584,142193,2 +104239,Natasia,110540,13360,10 +104240,Station Agent (uncredited),95504,1000083,20 +104241,,262958,1401119,8 +104242,Turner,222220,1566179,5 +104243,Gabi Drösel,9252,57001,2 +104244,Barber #2,256962,1819147,76 +104245,Speed Talker 1,414977,1676772,15 +104246,Sameer,297762,5419,10 +104247,Goran,41211,1291809,8 +104248,Charles,296025,55089,2 +104249,Ackerman,30036,106506,6 +104250,Visitor Room Guard,26376,121066,59 +104251,Adrian,265226,1846,6 +104252,Daphne,74525,81971,12 +104253,Miss Havisham,16075,44079,2 +104254,Eva,33786,22330,3 +104255,James Schwab,62838,1844,18 +104256,Imperial Stormtrooper Gray,13836,1208891,22 +104257,Young William 'Buddy' Heckum,319910,1495097,12 +104258,Gracie Jenkins,173638,1443659,4 +104259,Fabio Muso,20414,128468,10 +104260,Jackie Decelles,69535,54818,2 +104261,,83459,559945,2 +104262,Daniela,231176,1266274,1 +104263,Hannibal,113743,39601,4 +104264,Mrs. Burden,1717,1907,7 +104265,Steve Blair,46007,57329,4 +104266,Ryuzo Hayase,124994,97203,4 +104267,Klaus Pistor,222461,23789,1 +104268,Lena Törnell,141267,1485935,16 +104269,Hal Brennon,42298,34416,8 +104270,Sudden,46729,160091,3 +104271,Peter Boyles,2692,30789,3 +104272,Weapons Tech,168259,1381712,32 +104273,Priest,24973,106505,51 +104274,Arthur Townsend,28571,111584,9 +104275,Winsor (voice),67900,5661,4 +104276,Shubka,19277,1607,12 +104277,Henry Miller,44746,139811,12 +104278,Welterweight #2,312221,1096679,32 +104279,Sophia / Tommy's Mom / The Hooker / The Lady In The Well (voice),169314,35621,0 +104280,Ma Wilder,16890,126713,6 +104281,Bewaker #2,394645,1611256,12 +104282,Sam Phillips,40047,11786,9 +104283,Selina,127329,145908,6 +104284,Lone,12076,73551,2 +104285,Rozzie (voice),32202,109065,3 +104286,Karl Hoffmeister,214081,4566,1 +104287,CIA Analyst,59961,10580,12 +104288,Janet Pringle,76011,2021,3 +104289,Hugo Martial,237799,35896,1 +104290,Luigi,378570,1566497,0 +104291,Pumares,131932,103992,6 +104292,Shota,128412,1489477,8 +104293,Russ (uncredited),15794,103911,37 +104294,Sergeant Hodges,10694,589761,12 +104295,Paco,255647,1531069,15 +104296,Number Five,92496,1610500,34 +104297,Dafna Edelman,168552,1150435,4 +104298,CV Manager,374473,1650255,18 +104299,Riley,339530,1465470,11 +104300,Choo Choo,133328,9112,3 +104301,Rough Kid,335970,1718448,83 +104302,Renny Davidson,41522,95042,3 +104303,Raoul (voice),77459,51100,2 +104304,Juan,8053,273,12 +104305,Justin Mckay,31942,2,2 +104306,Jaidon,216521,1201134,3 +104307,Sylvester,128856,6079,2 +104308,Edgar Orsen,27112,97245,5 +104309,Kyle Brody,289923,1359316,3 +104310,Laura,308,4430,2 +104311,Ellsworth,46695,1185415,5 +104312,Herself,14123,1446429,38 +104313,Jake,287587,208519,1 +104314,Mother in Market,79316,1631582,14 +104315,Sam,186759,1505307,36 +104316,Colonel von Hindau,73420,13342,3 +104317,Carol Ferris (voice),17445,46423,8 +104318,Steven Bedalia,8325,10297,2 +104319,Johnny Vermillion,384450,82603,4 +104320,The Bounty Hunter,83831,13327,2 +104321,,214938,1199628,11 +104322,Maddie (voice),411221,73269,0 +104323,Nat Turner,339408,77277,0 +104324,Rogozhin Sr.,63958,579743,13 +104325,Shurkin,40466,132054,8 +104326,Iason,163791,1117987,5 +104327,เผือก,184219,1070406,4 +104328,René,230211,1102351,3 +104329,Nastya,143380,1119001,1 +104330,Sam Hallaway,10900,8984,1 +104331,Julia,8371,4619,2 +104332,Court Information Clerk,332079,34324,25 +104333,Mrs. Franklin,218784,43869,24 +104334,King George VI,399790,17648,4 +104335,Funk Band Singer,4982,1216495,60 +104336,Donaldson,33224,108275,11 +104337,Paige,18405,54692,8 +104338,Hajime Saito,221732,55784,7 +104339,Pvt. Mouse,39519,136551,11 +104340,Sofie,274990,3880,1 +104341,Fei,25074,70673,13 +104342,Taxi driver,42420,128112,4 +104343,Orith Silberg,125623,19117,0 +104344,Himself,35428,86873,14 +104345,Sayan,76438,578845,6 +104346,Harry's Friend #1,10330,156927,20 +104347,Goosey Loosey (voice),9982,61423,6 +104348,,46712,224508,4 +104349,Jodi,4964,93285,15 +104350,Nicholas Bedwell,46513,16752,8 +104351,Wilkins,70051,184997,2 +104352,Arlo Guthrie,5638,44547,0 +104353,Sanitäter 2,9076,36750,6 +104354,Freund Goethes,52475,64015,9 +104355,Father,287636,1462,2 +104356,Rocky,113119,123859,3 +104357,Obadiah Stane (voice),169934,111373,10 +104358,Mr. Reedy,14349,2778,4 +104359,,428398,235919,10 +104360,Garda #2,10097,63370,17 +104361,Limun,11373,28383,8 +104362,Cockney News Vendor,109716,1217772,59 +104363,TV Voice (voice),1481,1844349,43 +104364,Vito Gargano,167583,15139,0 +104365,Little Boy,153161,199468,43 +104366,Suzana,371459,1050856,7 +104367,Polonius,125705,24368,2 +104368,Zai Feng,76349,1069645,16 +104369,Oak Room Patron / Pedestrian (uncredited),258480,1545519,36 +104370,Blake,1665,10692,0 +104371,Vern,4380,334,7 +104372,Latham Cole,57201,207,5 +104373,Victor Goldman,443053,1764365,12 +104374,Young Jackie,9667,54722,11 +104375,Taylor,336666,1837167,7 +104376,Female Student,370755,929905,8 +104377,Flora,142150,207551,8 +104378,Krisu,25335,11263,1 +104379,Nurse,329865,1646449,47 +104380,Capt. Kistner,10841,32019,9 +104381,Lex Luthor (voice),30061,38026,4 +104382,Olmo,342684,102221,2 +104383,Floyd Wrangler,69152,14731,1 +104384,Tetikçi,123592,1078371,2 +104385,Bagoas dancer,1966,1651001,48 +104386,Chief Inspector Dew,106020,1212167,5 +104387,le grand ménestrel,79892,535167,11 +104388,Dr. Greeley,69668,13724,8 +104389,Vincent,381518,199529,18 +104390,Student,240832,1426644,28 +104391,Michael,205724,1306892,14 +104392,Claude Dabney,97024,5832,3 +104393,Colin Doyle,58664,137167,6 +104394,,83456,932353,15 +104395,Mining Chief (uncredited),19995,1207276,60 +104396,Tree Lot Boss,79329,144433,32 +104397,Pageant Judge,68721,7624,49 +104398,Jamie Bartlett,4641,38703,0 +104399,Peggy,19053,92760,15 +104400,Beckett,244316,11155,1 +104401,Carla,186988,134534,9 +104402,Singer,413998,34003,24 +104403,Jesse,67822,12485,6 +104404,Fernando,107287,965,4 +104405,курортница,63300,1038585,11 +104406,Herself,245394,96698,11 +104407,Otar,98277,52346,2 +104408,Ben Cooper,218778,4495,0 +104409,Petrie,24556,34982,1 +104410,Milon,93492,1174011,4 +104411,Cheerleader (1989),16996,149549,41 +104412,Olivia McKenna,37935,121487,1 +104413,Mrs. Beemer,93676,6751,11 +104414,Nail Salon Attendant,91679,1782584,23 +104415,Gitto Cardone,52238,230425,4 +104416,Djordje Kustudic,57419,110969,7 +104417,Walter Denkins,83361,14060,3 +104418,Royce,90086,98458,5 +104419,Raúl Peralta,33774,225011,0 +104420,Laura,9664,58430,9 +104421,Lois Lane,142064,21818,1 +104422,Gen Nakaoka,14087,90568,0 +104423,Padre di Marika,35554,15918,4 +104424,Capt. Jebediah S. Hawks,80775,50570,0 +104425,Gwen,223946,70182,2 +104426,Salinger Chipowski,141733,166518,2 +104427,Wallenstein,212503,169,9 +104428,Miro,1253,21660,5 +104429,Asylum Patient,62694,19097,30 +104430,Fabio 'Papai' Veloso,61035,232201,3 +104431,,85844,1092519,7 +104432,Reverend Winston,53950,14854,3 +104433,Ruby,12787,59873,3 +104434,Sara (uncredited),241254,1561814,25 +104435,Shea Seger,74465,90719,11 +104436,Abby,14976,26513,6 +104437,Madame,18731,94076,7 +104438,,63568,237503,2 +104439,Thor,14613,63566,10 +104440,,12453,72298,14 +104441,Enrico's Mother,199985,39468,5 +104442,Otto,61121,232398,2 +104443,Perry Mason,144475,76974,0 +104444,Luc Deveraux,122857,15111,0 +104445,Len Noble,120497,89672,9 +104446,Detective Taguchi,43113,17540,6 +104447,Nazam (voice),20715,183439,1 +104448,Martin Himmel,331962,1348457,32 +104449,,80435,71565,1 +104450,Miss Lorna 'Smitty' Smith,98125,30185,4 +104451,Coroner's Assistant,1595,1298380,10 +104452,Jack Sprat,179288,1660692,10 +104453,Scarred Girl,405473,1800045,42 +104454,Priam's Secretary,27114,121323,20 +104455,Mr. Adams,183825,589728,11 +104456,Susan Carlton as a Child (uncredited),105548,1037764,17 +104457,Shaggy,37211,16418,1 +104458,,347835,16513,2 +104459,Madame Chavagnac,18381,227605,9 +104460,Air Force Officer,1726,205362,37 +104461,Cathy,187602,1169486,6 +104462,,268735,127558,12 +104463,Chinese Tea Lady (uncredited),274857,1785933,52 +104464,Prosecutor,43009,103458,8 +104465,Pauline,336004,1042684,11 +104466,Det. Carpenter,233487,1150283,3 +104467,Rosa Hubermann,203833,1639,2 +104468,,45205,132532,6 +104469,,9550,1571927,5 +104470,Latella,288313,1871368,6 +104471,Ricky Stormgren,373977,6858,1 +104472,Ronnie,148451,75352,2 +104473,Pete Bering,50725,22224,10 +104474,Ms. Maximoff,127585,929943,39 +104475,,63215,1520922,45 +104476,JAG,193756,1283053,32 +104477,Joy,214756,999320,11 +104478,Président Chastain,64850,21177,1 +104479,Turkish Slave,297762,1824290,47 +104480,,288313,1179328,9 +104481,Paul Stanton,12645,20212,2 +104482,Corporal Lyle Wainfleet,76600,98215,10 +104483,Bower,19898,11107,0 +104484,Johnny Drake,32124,70303,1 +104485,Moça que despreza Paulo na Boate,296288,1839924,28 +104486,Lt. Jim Reed,85610,975803,6 +104487,Steward 1,382591,586916,18 +104488,"Mr. Betany, Directeur des Editions",1421,238764,20 +104489,Madame Duval,13728,1141,3 +104490,Robert Benson,343921,23659,1 +104491,Marie D'Ancanto / Rogue,127585,10690,5 +104492,Svenna,24821,74721,0 +104493,Mark Sheldon,229610,1264320,13 +104494,High School Student / Black and White Angel,360605,1267863,5 +104495,Noboru Terao,37910,931452,3 +104496,Laureano Irala,86154,230213,0 +104497,Paul Secchi's Boy,1481,1844326,12 +104498,Angeklagter Lars Koch,421958,104243,1 +104499,The Accomplice,256347,27031,8 +104500,Miyuki Konno (voice),14069,122472,5 +104501,M. Désiré ('La femme seule'),98302,91484,15 +104502,Elenya Brown,214753,189418,6 +104503,Fat Cat Burglar,116977,7420,11 +104504,Angie,68716,60952,5 +104505,George Sanders,67375,199468,9 +104506,Slovo,43656,53,8 +104507,Dr. George Tracer,84425,2641,2 +104508,Blue Shirt,188927,1225951,19 +104509,Norman,194393,133573,4 +104510,Daniel,318781,3872,1 +104511,Gordon,9472,17401,6 +104512,Herself,27637,1724689,24 +104513,Niko,102961,1188806,8 +104514,Italia Santini,53805,1035737,14 +104515,Man in cafe,86975,89141,4 +104516,Michalina,81312,591416,3 +104517,Juana,1991,122416,19 +104518,Festspielpräsident,9010,6264,6 +104519,Soldier,187028,131687,6 +104520,Captain Casey Reardon,252144,14785,1 +104521,Nate,82485,8767,11 +104522,C-3PO,140607,6,10 +104523,Devon,37497,47988,4 +104524,Gerhard Stübner,167330,1719653,13 +104525,Cardoza,22029,3014,9 +104526,Виктор,63300,1190345,0 +104527,Bud Wilson,16240,6804,12 +104528,,412363,1528179,8 +104529,Pig Owner,14047,94429,11 +104530,,86985,934258,6 +104531,"Ernest Grafouillères, transporteur de légumes",78377,24540,8 +104532,Tío Arturo,80280,555514,26 +104533,Gretel (voice),57089,56322,6 +104534,кондуктор,409082,13707,11 +104535,Grace Dao,284537,210566,14 +104536,,314371,1074007,33 +104537,Bikini Shop Employee,352327,1491853,6 +104538,Tricia,11172,105831,20 +104539,Chickenhawk,45132,61570,28 +104540,Bartender,16017,79039,1 +104541,,296313,15085,6 +104542,Sarah's Sister,45132,1352105,31 +104543,Jeweler,44190,130422,10 +104544,Caleb (voice),81188,87056,6 +104545,Zuleika (voice),16366,80415,5 +104546,,63260,104003,14 +104547,Old Man (uncredited),27973,119402,26 +104548,Prof. Bateman,62392,112722,15 +104549,Jack,17100,63791,4 +104550,Abe,21413,6573,6 +104551,Atsuko Kagami's mother,189151,1433818,12 +104552,Victoire,270400,544666,3 +104553,Zoe (voice),52264,1449406,18 +104554,Kathleen,315664,933238,2 +104555,Tomas Butterman,401442,168349,2 +104556,Ed Stauber,199373,98215,11 +104557,"Kenreiinmon (segment ""Miminashi Hôichi no hanashi"")",30959,552647,23 +104558,Saratoga Park Pedestrian (uncredited),76203,1438302,66 +104559,Richard Caldwell,73257,777,2 +104560,Gold Room Supervisor,294652,1147277,20 +104561,Himself,16231,80126,2 +104562,Gopodarz domówki,278867,1501776,11 +104563,Baxter,87293,1209475,17 +104564,Kieran Gallagher,375366,1611987,5 +104565,Newpaper Editor,310123,1014905,6 +104566,Gladys O'Donnell,8915,1585650,13 +104567,Jane Appleby,64568,100784,2 +104568,,32694,31,32 +104569,,140,1576788,18 +104570,Eddie,334527,8891,2 +104571,David,10900,67713,19 +104572,Citizen Girl,13241,116932,9 +104573,Tintiric,319993,1427393,7 +104574,Belle,64084,1778206,6 +104575,Lauren Vaillancourt,285908,95956,0 +104576,"Lancelot Canning (segment 4 ""The Man Who Collected Poe"")",41035,5,3 +104577,Jaimie,118957,145247,1 +104578,Charles Manning,12617,2435,5 +104579,Frau Spitzer,946,14366,11 +104580,Vivienne Carpenter,286971,1689263,14 +104581,Mike,55784,1204483,13 +104582,,353879,1495607,8 +104583,Brego,142391,1117266,3 +104584,Célia-Andromaque,63401,237078,3 +104585,Das Sams,10645,28201,1 +104586,Mr. Havisham,38602,39955,3 +104587,Alice,84892,1053419,6 +104588,"""Malutki"", człowiek Plamy",31856,1138711,8 +104589,Detective Superintendant,59678,193340,28 +104590,Rebecca,12128,48290,3 +104591,Beverly Solomon,94248,68751,6 +104592,Bibby,22901,1779954,11 +104593,Flight Sergeant Lloyd Hollis,55236,102721,6 +104594,Mark,42309,90130,0 +104595,Erzherzog Franz-Karl,459,6257,9 +104596,Alain,187602,14606,7 +104597,Nicole,13710,138814,4 +104598,Grant's Girlfriends,10780,1813186,16 +104599,Kisser,5206,1564,8 +104600,Back Lack,274857,30433,10 +104601,Sherry Nelson,108723,1054403,1 +104602,Amy,226140,21320,1 +104603,Max,387399,1849542,19 +104604,Mike,259690,63881,1 +104605,Sophie,255913,1506127,7 +104606,Japanese Porn Star,36253,1089561,2 +104607,Ludek Dittmayer,48118,42593,7 +104608,Leonardo da Vinci (voice),82703,2283,10 +104609,Phil McElroy,258480,1545496,9 +104610,Mugsy,27966,115329,12 +104611,Carolina Hill,46014,20391,1 +104612,Alfredo Herrera,94251,95054,13 +104613,John James 'J.J.' King,25768,120811,2 +104614,,371153,145290,5 +104615,Strażnik więzienny,91691,1138242,6 +104616,Gordon Greenleaf,290825,53280,12 +104617,Dr. Feldheim,31011,78018,13 +104618,Douglas Damiano,128270,37154,0 +104619,Toby Radloff,2771,52860,2 +104620,The Eccentric Aunt,31509,385778,9 +104621,voice,86700,933515,8 +104622,Second Pharisee (uncredited),3059,8630,91 +104623,Judith,223946,84430,3 +104624,Nikolay,79611,587623,6 +104625,Rebecca Winter,303856,583333,1 +104626,Exotica Dancer,40990,1567898,21 +104627,Rudy Costa,2071,21248,6 +104628,Dr. John Montgomery,3580,1215378,33 +104629,The Great Flamarion,35543,8630,0 +104630,Jordan,31942,30612,6 +104631,Referee (uncredited),172443,1748905,8 +104632,Rabbi Jacobs,37923,19215,11 +104633,Lady In Taxi,80720,121323,7 +104634,Raja,170838,35070,1 +104635,Ray Healy,88075,133074,4 +104636,Daughter,381054,1572156,5 +104637,Harold Morgan (as John Duncan),118953,1061015,4 +104638,Troop Leader Yudin / Gulliver's shipboard pal,152948,1133530,1 +104639,Pratap Singh,54959,109173,3 +104640,Bernard Hinchecliffe,42669,128401,9 +104641,Rabbi Blumenthal,369697,884,6 +104642,Deputy Shooting Bill,27966,14419,26 +104643,Ender,69352,556113,0 +104644,Policeman,36175,79006,8 +104645,Lord Egremont,245700,3568,21 +104646,Russell,79120,586000,0 +104647,Anaxi,42542,34971,3 +104648,,355111,74362,5 +104649,Lucy Brown,40041,118487,9 +104650,Reporter (uncredited),31773,32192,32 +104651,John Harper,98864,66288,3 +104652,Leo,182415,1029112,0 +104653,Catherine,85494,120551,3 +104654,Jerry Slocum,27543,2177,3 +104655,Brigg,53999,231547,2 +104656,Georgio,329805,1925,1 +104657,Ens. Willis Seward 'Willie' Keith,10178,64113,3 +104658,,279543,729890,11 +104659,Lem,16442,79247,11 +104660,Eric,305342,509193,9 +104661,Nicholas Servoz,57993,93974,10 +104662,Sarah,414453,1724564,9 +104663,Dr. Long,22683,76674,3 +104664,Lauren Devine,322,4742,22 +104665,Ballet Instructor,99861,30086,32 +104666,Royal Guard,76757,1394358,57 +104667,Mîna,15712,583331,4 +104668,Nehemiah Slade,8619,2060,21 +104669,First AD,26486,21051,28 +104670,Sten Hård,51423,224371,7 +104671,Soraya,17725,1676637,18 +104672,Dress Manufacturer,3554,119713,8 +104673,Frankenstein / Skull Head / Gengis Kong (voice),37211,12077,3 +104674,Sakurai ex-fiance,352694,566167,10 +104675,Dialogue Scientist at Conference (bit),43093,153093,9 +104676,Reporter,206197,1506493,33 +104677,Nurse,337549,113528,10 +104678,Pa Kelly,288521,14487,4 +104679,"Paulina, Alicja's sister",32559,1066620,8 +104680,Chris Martin,747,81129,18 +104681,vrouw Marcello,35016,228603,25 +104682,Blaise / Chuck,49084,48514,0 +104683,Glenn,41171,74608,17 +104684,Cop #1,157847,1176993,5 +104685,Fosta,31128,1611437,8 +104686,Theresa Blyton,43711,1221047,8 +104687,Mime,10659,38486,6 +104688,Jimmy Zee,4982,57997,10 +104689,Receptionist,12645,1577330,10 +104690,Wuschel,2241,5201,7 +104691,Balding Man,24619,106475,23 +104692,Mr Towny,425774,1707937,43 +104693,L'abbé Mignard,38883,11192,6 +104694,District Attorney Demarest,179818,233118,6 +104695,Grizzled Officer,134201,555084,20 +104696,Bumboat Girl,52859,1671458,14 +104697,Rear Admiral Guich,140607,25090,40 +104698,Clinic Security Guard,206647,1599262,54 +104699,Student,56558,1828836,59 +104700,la Nona,118195,974849,1 +104701,Teenaxi Leader (voice),188927,74242,34 +104702,Audrey Dubreuil,366566,1884135,16 +104703,Bartholomew Bogue,333484,133,7 +104704,,70800,559947,7 +104705,O-Taka,52047,145253,4 +104706,Petru,6417,49675,5 +104707,Nina Hirsch,121824,25654,1 +104708,Stormtrooper,330459,15347,76 +104709,Street Vender (uncredited),337339,1563264,70 +104710,Kevin McKenzie,37301,2101,12 +104711,Yukito Origasa,38154,80108,1 +104712,Pvt. Arthur 'Art' Hugenon,79521,37446,1 +104713,jako Andrij Kurczuk,406449,1650394,29 +104714,Susan,84892,936970,14 +104715,Rosario Trapanese,52914,240914,13 +104716,,62397,1894271,24 +104717,Coach Gannon,54396,45615,8 +104718,Yasuo Numata,55192,72395,8 +104719,Elise,12076,73549,4 +104720,Cicero,41283,17832,4 +104721,Peas-in-a-pod (voice),77887,1190917,20 +104722,Posseman,183832,1002189,18 +104723,Guard,26376,1420472,25 +104724,Peter (as Miles Brennan),75101,1523986,5 +104725,Jean-Marc Faure,52999,6012,0 +104726,Auste's Friend,310568,1588822,11 +104727,Gao Mei,16687,1184082,12 +104728,Arthur Lawrence,52959,210620,5 +104729,Garota de Programa - Kiwi,117534,1902448,20 +104730,Jack's Mum,300155,53367,6 +104731,Hotel Desk Clerk,36612,2776,19 +104732,Ramsey,91259,161704,2 +104733,Sergeant Barrancas,146238,1983,12 +104734,Richard Kline,336775,21125,2 +104735,Lindsay,10041,62360,5 +104736,Kid in SUV,1726,1209707,41 +104737,Herself,70027,1490044,22 +104738,Janet Bradley,86186,61980,2 +104739,Himself,63144,1624632,31 +104740,Male Nurse #1,2080,55903,28 +104741,Dean,381073,1593036,7 +104742,,61904,1690741,11 +104743,Michael Shayne,42298,19411,0 +104744,Rowena Adler,93676,140,3 +104745,Iranian General,146216,1684557,60 +104746,Roland,377428,1226197,13 +104747,Autopsy Technician Şakir,74879,1001782,13 +104748,Baji Rao I,362045,224223,1 +104749,Mrs. Tainer,96936,111385,16 +104750,Riku,20160,148039,4 +104751,Colonel Kranau,73420,30495,1 +104752,Herself,105583,119864,11 +104753,Father Manuel,16432,1418524,8 +104754,Herself,45020,6473,11 +104755,Basia,329550,1436885,10 +104756,Ruth Collins,21159,50781,1 +104757,Angel Giordano,155426,66460,0 +104758,Brack,831,12354,3 +104759,Dr. Miller,46190,93625,9 +104760,Mr. Nelson,56154,8728,4 +104761,Uncle Teng Wai,18747,945583,7 +104762,David,80219,610905,3 +104763,Mike,10433,16560,3 +104764,Dr. Pellagrino's Nurse,4964,1539459,24 +104765,Ernest,294093,1420248,3 +104766,Sally,151062,100460,4 +104767,Himself,68721,1480047,17 +104768,Cyborg (voice),177271,4753,2 +104769,Maureen Hope,307081,53714,1 +104770,The Widow,131194,19092,3 +104771,il Padre di Paolo,38328,126398,8 +104772,Melanie Cartright,283384,1384357,9 +104773,"Rufus, jewellery salesman",508,10730,22 +104774,Il vero turco,57996,1194228,18 +104775,The Contact,24411,105834,10 +104776,Matron,20806,121729,6 +104777,Joyce,32395,77013,7 +104778,Warden,46059,36927,9 +104779,Fighter,71120,197226,24 +104780,Sick Man,48210,15137,2 +104781,Annegret,374475,48950,11 +104782,Alejandro Tazo,180998,1012919,1 +104783,Telly Paretta,10145,1231,0 +104784,Iñigo,56948,12798,2 +104785,Jake,18189,111196,13 +104786,Cassie,44287,1122326,8 +104787,Agent Katja,348320,1390085,12 +104788,L'innamorata infelice,43379,1606806,7 +104789,Aunt Martha,46190,3346,10 +104790,Ellie,96011,188619,3 +104791,Glenn,390059,58224,2 +104792,Renate,64944,572244,12 +104793,Gottfried Häberle,367596,1329162,4 +104794,Hiroshi,253232,1174071,4 +104795,Mudfish,21338,87404,11 +104796,Church Member / Protestor / Witness (uncredited),3580,1567072,65 +104797,Minna Ilola,101838,16777,11 +104798,Norman Phiffer,42305,3663,0 +104799,Bhagavan,80539,86014,3 +104800,Petrus,17008,21749,4 +104801,Courtroom Spectator,49844,121323,7 +104802,Sadik,13393,93390,1 +104803,Anti-Pasti Punk,341689,1549169,5 +104804,,49522,1238457,15 +104805,Sandrine Pédrono,202215,2412,5 +104806,Giuseppe Baldini,1427,4483,12 +104807,George Dobbs,144475,941240,13 +104808,Luisa Tombolini,255456,133214,1 +104809,Cassie / Melinda Duquesne,48136,95476,0 +104810,Gian-Reto,156015,23393,11 +104811,Le maire du palais (voice),22504,24388,9 +104812,Ester Näre,442752,1761826,13 +104813,Jack Dolan,44129,1269,3 +104814,Air Marshal George Taylor,24971,37446,1 +104815,Harry Setag,285135,1062,1 +104816,Masao Kim,21966,110500,1 +104817,Bucky,43700,19302,4 +104818,Phya Phrom,43471,24826,10 +104819,Bob,92635,550274,4 +104820,Pierre,197696,3137,4 +104821,Chie Asai,51581,77877,4 +104822,Hogie Hogarth,95140,74278,5 +104823,Militant,271677,1860980,14 +104824,Macabe,18070,1598,11 +104825,Isabel Prange,24341,91535,5 +104826,Martha Knox,52203,145546,3 +104827,Sid,27573,60074,14 +104828,Guido,42571,105868,1 +104829,High School Girl #2 (uncredited),206197,1506495,36 +104830,Kellner,3962,5554,10 +104831,Mr. Elton,51994,947789,7 +104832,,172008,25680,16 +104833,Assistant Commissioner,42989,14264,8 +104834,Ja'mie King,67460,1242792,3 +104835,Eugenio,199851,144212,0 +104836,Joe Venuti,64948,212802,1 +104837,Mrs. Livingston,65282,67289,9 +104838,Ryoichi Saotome,352694,1257073,1 +104839,Store Manager,26123,58395,14 +104840,Trumpeter #2 (Studio Band),244786,1503834,20 +104841,Musketeer #1 / Royal Announcer (voice),23566,63797,17 +104842,Vincent,445993,113930,4 +104843,Herries Servant,186227,1041608,33 +104844,Himself - Roaster,296192,61114,3 +104845,Vanessa,407448,1034197,22 +104846,Saul,336050,1454942,0 +104847,Iona,204255,586286,7 +104848,Botrel,12089,372273,8 +104849,Ezra Liam Kennedy,25736,1944,6 +104850,Upset Kid,193893,1381477,29 +104851,Kyle Parker,270851,1321927,5 +104852,Tyrant,133121,81381,9 +104853,Mary Sharon,33345,5470,1 +104854,"Jean-Pierre, le passeur",84479,16873,4 +104855,Olimpia Trippetta,52914,544724,7 +104856,Barney Snipe,119010,1068924,2 +104857,Himself,111332,2710,3 +104858,Mariana,136752,1208799,12 +104859,Loulou de la Falaise,221667,121529,2 +104860,Young Pip,121674,1796453,25 +104861,Milo,11330,31960,0 +104862,Cao Weiwei,364324,99691,6 +104863,Allen,27349,37712,4 +104864,Eileen,209271,77133,3 +104865,Alien Pilot,40221,87115,9 +104866,Aunt Lizbet,45244,1605660,4 +104867,Plain Maid,156711,1349728,21 +104868,Umberto Maria Durloni,249457,55914,0 +104869,Broker,43811,1178520,67 +104870,Andrei's Wife,1394,150825,3 +104871,Henry Nova - Prison Guard,48156,14505,1 +104872,,85549,1827740,4 +104873,Julia,5123,1201268,36 +104874,Private Investigator,334527,1480221,18 +104875,Yinsen,1726,17857,3 +104876,Gloria Travis,371181,90131,10 +104877,SBS Newsreader,16151,79691,0 +104878,Russell,412209,1677240,7 +104879,Rainer Luckman,46943,1032528,7 +104880,Travis,244786,223012,4 +104881,Sally,228034,57395,3 +104882,Paul Mason,64605,522,1 +104883,Dr. Serra,399612,588323,5 +104884,Mrs. Williams,66022,1285684,8 +104885,Barbara Ann (voice),21765,34487,8 +104886,"Alicja ""Biedronka""",293982,1366025,13 +104887,,26430,968660,2 +104888,Homer Page,79735,50971,12 +104889,Michelle,55563,155976,12 +104890,Terry,69560,1757855,9 +104891,Reverend,125926,112866,8 +104892,Al Martin,42532,7502,1 +104893,Tom Barton,117905,1795683,10 +104894,Dr. Druzik,166904,6933,2 +104895,Niki,129115,1187534,3 +104896,Henry,250376,81316,7 +104897,Marina,41283,56455,13 +104898,Yuri,335053,114461,9 +104899,Le prof de kayak,343702,1508645,19 +104900,Chief Alien (voice),86828,8930,15 +104901,,137614,229769,6 +104902,Thelma Gleffey,110148,21369,3 +104903,Concha,127864,3822,3 +104904,Kara Harmon,57326,1122661,8 +104905,Taserface,283995,1293892,9 +104906,Belly Dancer,73612,1392469,8 +104907,Priest,319910,38709,23 +104908,Kudo,402455,68704,18 +104909,Policewoman Zoya,51276,1638423,5 +104910,Koike,43095,1127191,9 +104911,Felix Grant,250332,34508,14 +104912,Piia,20160,148040,7 +104913,Famous Woman,125490,1179451,30 +104914,Queen Of Hearts,25694,13816,14 +104915,Travel Murthi,125835,213432,9 +104916,,64736,86725,8 +104917,Delmas,27061,39449,0 +104918,Urs Kobler,246860,1117773,7 +104919,Danielle,175924,21619,9 +104920,Vampire,18392,47652,1 +104921,"Philip the Second, King of France",58905,13356,7 +104922,Toshihiko Negishi,22025,567068,7 +104923,Terence 'Slip' Mahoney,89145,89989,0 +104924,Ziya,53206,77349,2 +104925,Takishima Haruji,86664,551776,0 +104926,Ghani,121598,6217,7 +104927,Henriette,266044,1312112,2 +104928,Güdük Necmi,31408,556047,3 +104929,Tyler Jeffers,18051,1216429,4 +104930,President,394645,13363,2 +104931,,86985,1523036,17 +104932,Margaret,369885,1514178,27 +104933,Theater Manager,19912,143264,12 +104934,Master Kita,62762,70673,1 +104935,Alikersantti Peter Friman / Uutistenlukijan ääni / Manun ääni / Jörn Donnerin ääni,55754,143125,7 +104936,Parker Ballantine,59838,82388,0 +104937,Landlady,101929,33761,6 +104938,Varvara,143073,99291,1 +104939,Françoise,190876,38525,9 +104940,Matt Riley,340488,335,0 +104941,Dr. Paul Heizer,267035,20865,3 +104942,Direktorin,2241,20017,13 +104943,Francis,83788,3829,0 +104944,Urszula 'Ula',143240,107874,3 +104945,Agent Vukovich,376292,1367946,10 +104946,John Jasper,84718,4113,0 +104947,Male Nurse,228970,1495093,50 +104948,C.J. Longhammer,69217,46927,2 +104949,Lagavullan,58244,38565,3 +104950,Savan,50674,43265,2 +104951,Greg Antonsky,11172,130749,14 +104952,Nobuyoshi Ko,21966,27782,4 +104953,Pauline,187219,35082,1 +104954,,79871,119447,6 +104955,Stanley / Himself,15788,3663,0 +104956,Goose,347630,1513868,3 +104957,Himself,400668,1232661,8 +104958,Madeline O'Malley,58428,88548,6 +104959,Nick Keller,6183,1844,0 +104960,Perry,390777,95866,1 +104961,,260522,99289,2 +104962,Clara Samaniego,184341,588186,12 +104963,Ichiko Sakurai,352694,592147,0 +104964,Maj. General Hayashi,1251,1237536,14 +104965,Red Flack,42640,1086394,4 +104966,Capt. Blasi,67377,45982,1 +104967,Peter Swersey,1382,53888,3 +104968,Bandaged Patient on Street (as Jhonny Lever),170838,35819,8 +104969,Sydney Policeman #1,13777,75270,23 +104970,Senator Barrows,209112,1561391,62 +104971,Alejandra,70747,559504,3 +104972,Herr Kaminer,114438,65054,7 +104973,Sendai,14525,128478,5 +104974,Roland Turner,86829,1230,10 +104975,fetter Mann,9765,7817,7 +104976,Mike Ditka,9981,61399,6 +104977,Pratap,81551,85033,2 +104978,Petronas Dancer,243683,1398200,87 +104979,,10770,1313436,4 +104980,Hunk,319924,1428580,3 +104981,Suzanne de Castilian,141955,82495,3 +104982,Nadine,252102,1287564,4 +104983,Mother,25695,1615103,3 +104984,Joe Wilson,28730,94522,19 +104985,Man on bench,39517,27659,19 +104986,Herself,130993,1242114,2 +104987,Lt. Patterson,29611,104352,5 +104988,Casey Cook,44486,53130,1 +104989,Charlotte,28455,11902,4 +104990,The President of the United States,26125,94743,1 +104991,Lydia Rodman,9779,18331,6 +104992,Harriet,156268,17647,1 +104993,,81616,559589,14 +104994,Sam,137093,8945,3 +104995,Hobo,24559,91982,16 +104996,Cooters waitress (as Haley Ruth),354133,1496069,9 +104997,Luca Moroder,310593,94253,15 +104998,Nelson's Mom,277558,59242,10 +104999,Della,62392,35658,10 +105000,Felicia,302666,1507448,3 +105001,Herself / Carmen Sotillo,320037,103522,1 +105002,Gus (uncredited),25953,121233,19 +105003,Misha,193893,1381389,17 +105004,Kirill Petrovich,292656,353858,4 +105005,,277631,7641,5 +105006,Hannah,83860,930214,0 +105007,Homeless (uncredited),369524,1466169,38 +105008,Alex Fisher,13972,9575,5 +105009,Anna Sergeyevna,44658,262929,1 +105010,Schüler,114242,36434,5 +105011,Martina,345489,1053878,5 +105012,Paramedic #2,15092,27688,48 +105013,Interviewee,81576,928922,1 +105014,Irving Krunk,285400,30530,12 +105015,Borden,109610,1499010,5 +105016,,77473,1651533,2 +105017,,104343,1697251,9 +105018,Dimidov,112304,48,7 +105019,Faustino,116312,231946,21 +105020,,19812,6143,15 +105021,Mr. Clark,140648,136045,16 +105022,Carol North,131351,51864,10 +105023,"Narrator, off-screen",61908,34046,15 +105024,Himself,212063,1204262,2 +105025,Gibbs Duhon,149232,22132,6 +105026,General,81110,940628,17 +105027,Dr. Krassman,15909,79052,14 +105028,Frank,190955,8289,1 +105029,Lab Assistant,70864,994405,9 +105030,Jim Powell,99312,2878,2 +105031,Frank Hazard,118716,975632,4 +105032,David Barlow,59961,2039,4 +105033,Joe Grogan,46026,8729,2 +105034,Captain Karl,10780,159555,10 +105035,Beatrice / Pitti-Sing,218351,1208007,13 +105036,Clyde / The Guard,58832,11160,4 +105037,Lindsay,47540,42209,12 +105038,The Colonel,65674,2641,5 +105039,Leni Samarakis,64725,36836,5 +105040,Skillet,16232,103944,4 +105041,Helen Dawes,73873,76070,1 +105042,La mère de Marianne,11680,28278,12 +105043,Rita,345438,1035689,11 +105044,'Plague',15472,87727,7 +105045,Girl from Liverpool,110887,1374641,10 +105046,Jessie,360592,1512183,8 +105047,Derek,287903,1460982,20 +105048,Zoe,79611,42705,1 +105049,Lou Stillman (uncredited),28000,214821,27 +105050,Jim,288952,15439,4 +105051,Guy Fillbrook,12759,73616,0 +105052,Frederico,17238,100438,5 +105053,Lizzie,115290,1061512,4 +105054,Hunter,66881,1426208,15 +105055,Martin,265226,1543963,7 +105056,Jamie Wagner,73984,98569,2 +105057,Adam - Nora's Gardener,153163,13558,24 +105058,Marie,141635,209,0 +105059,Scientist,28340,1795349,27 +105060,Garcia 'El Toro',15640,5554,17 +105061,Jakarta Police Captain,403605,235425,10 +105062,Shehu Ramiz,44751,553356,7 +105063,Sang,49597,169693,1 +105064,Gomti,49028,85734,13 +105065,Professor Lillian Friedman,275060,19492,3 +105066,30's Woman,341957,1470813,10 +105067,Basil Hallward,47459,20393,1 +105068,Mark,291865,1362814,2 +105069,Flounder (voice),13676,1216703,4 +105070,Frentista,361146,1769254,13 +105071,Molly,33510,47754,2 +105072,Second Baggage Man at Train Station,14589,120199,50 +105073,Dr. Albert Maurer,262945,9908,2 +105074,Skater Girl (uncredited),15092,1539504,80 +105075,Taoist Expert,57100,1623,5 +105076,Travel Agent,413232,121122,24 +105077,Daughter of Lee Yiu-wah,182127,1440482,39 +105078,Himself,64328,70851,5 +105079,Driver (as Bernie Dobbins),52661,1331195,14 +105080,Wilbur Olsen,22396,7767,3 +105081,Gladys,31592,145832,3 +105082,Schlagzeuger,61035,1446122,49 +105083,Chuck (as Daniel Schneider),93935,70804,4 +105084,Serena Willams,257344,1214573,24 +105085,Carla Manning,63706,727467,3 +105086,Detective Sakata,43113,30475,5 +105087,Baby Bailiff,55638,1179337,8 +105088,Hajime Saito,61984,234641,0 +105089,Himself,140554,1707827,19 +105090,Theatre Actor,245700,1798368,53 +105091,Fight Promoter,921,83025,60 +105092,Newsreader,86828,1344082,12 +105093,Paula Winthrop,107593,20366,2 +105094,Himself,191502,74094,11 +105095,Max,244610,1255902,3 +105096,David,183662,2128,12 +105097,Valet,12449,6019,7 +105098,Samantha,19918,8256,2 +105099,Vargas,59961,57012,8 +105100,M.C. (as Steve Donmeyer),62132,1286725,17 +105101,Karsh,21481,87572,5 +105102,Belgian Newsreader,29101,1515929,20 +105103,Zdenek,46982,1537640,6 +105104,Flight Director,435,129419,20 +105105,Francois,238589,1044952,4 +105106,Hope,15285,128150,4 +105107,Adam 12 Years Old,58244,1467536,17 +105108,Jocko Doyle,16214,32791,5 +105109,"Néné, Prinzessin Helene von Bayern",459,6253,4 +105110,Mrs. Markham,30496,11213,9 +105111,Gál Jancsi,13616,231051,7 +105112,Reporter,47959,60422,35 +105113,TV News Producer,335970,1560336,65 +105114,,44933,1853767,16 +105115,Thor Odinson,99861,74568,1 +105116,John Calder,67102,591487,4 +105117,The Waterskier,290714,1361063,7 +105118,Donna sul balcone che guarda la partita dell'Italia,54309,124625,16 +105119,Gomez,424488,1561575,15 +105120,Oscar,86284,123632,2 +105121,Melvin Webster,198600,1025762,6 +105122,Vranka,67633,36217,1 +105123,Megamind's Mother (voice),38055,936672,7 +105124,Andrzej's Mother,13614,2832,8 +105125,New Yorker,5123,1246221,49 +105126,Cesar,82968,1018916,9 +105127,Selina Kyle / Bruno / Old Woman (voice),142061,34983,17 +105128,Andersen (voice),177714,231842,1 +105129,Donald O'Shay,42996,7503,0 +105130,Mrs. Helen Marsh,44545,136179,3 +105131,Morbe - Gang Member,26558,1625713,4 +105132,Julia,16151,61636,2 +105133,Tina,83714,106791,3 +105134,The Ancient,225499,11502,7 +105135,White Pawn / The Baby,25694,12659,29 +105136,Emerson,179105,93792,5 +105137,Phil Childers,28044,120761,10 +105138,Driller,126712,99330,5 +105139,Flora Hernandez,7980,1252003,17 +105140,Uncle Fred,157898,2126,13 +105141,Young Santiago,79775,11886,5 +105142,Herb,82655,79416,1 +105143,Sheriff Dunn,200324,29952,3 +105144,Alex,269173,1050248,6 +105145,Mike Spritzel,6963,3292,4 +105146,Weary Captain (Shot),297762,1052209,57 +105147,Prof. Marks,17306,97854,3 +105148,,301671,1903919,12 +105149,Eddy,100063,224077,7 +105150,Jean Azevedo,110323,578081,3 +105151,Mirodi Hemme,73306,13255,1 +105152,Bernadette Thompson,98566,2395,11 +105153,Yoha,48489,1135338,2 +105154,Paul Mets,321303,1413703,21 +105155,Lorenzo,282768,1343615,6 +105156,Robert 'Soldier' Becker,28297,44846,18 +105157,Eleonore Schikaneder,79362,52010,14 +105158,Javier,18082,80494,1 +105159,Esther,35404,97042,14 +105160,The Loser Who Always Shows Up at the Party with a Guitar,50725,566151,25 +105161,Pedestrian,31899,1422103,37 +105162,Anand Pawar,19276,85454,1 +105163,Mrs. Spong,104720,78791,13 +105164,Detective,351043,42820,4 +105165,Han Yun-ji,32237,64502,4 +105166,,8070,1166141,16 +105167,Soldier,62838,4238,35 +105168,Lucie,362057,277081,0 +105169,Shiu,67342,1136808,12 +105170,Déa,151826,91355,3 +105171,,301671,1238205,9 +105172,Norman Penn,25038,3042,7 +105173,Reporter Guerre Golfe (voice),1986,559919,23 +105174,Trudo Ancello,134144,931241,2 +105175,Mara,22551,64370,3 +105176,Joe Goetz,157343,105455,30 +105177,Patrick,2047,21081,5 +105178,Eric,223946,1077537,5 +105179,Assistant,39536,567591,3 +105180,Mondmann,135832,10257,1 +105181,Jacques Barbier,99313,35323,2 +105182,Professor Mugford,128866,1088052,2 +105183,Jeb Scott,2071,21246,4 +105184,Billy,137093,3392,2 +105185,Ops Centreworker (uncredited),19995,1207290,75 +105186,Vecina de hombre suicida (uncredited),41298,1334305,27 +105187,Bosambo,86956,98568,0 +105188,Fernanda,71866,108916,0 +105189,Evan,8292,55275,11 +105190,Herself - at Banquet / Clip from 1951 version of 'Show Boat' (archive footage),33740,25787,30 +105191,Priest,9959,6541,10 +105192,,373200,1573819,1 +105193,Hübner,72419,8204,4 +105194,Mary,316042,116931,6 +105195,,11328,1444483,31 +105196,Gloria,17893,36278,3 +105197,Anthony,1640,8171,8 +105198,Mexican Police Chief,41611,935633,6 +105199,Emily,44754,124377,4 +105200,Jane,65156,101779,2 +105201,Chief Phillip P. 'Pappy' Moran,80775,17759,9 +105202,Ten Year Old Boy (uncredited),293660,1683961,44 +105203,Mostoha (voice),41078,132274,3 +105204,Pilar,378087,1032556,7 +105205,Charles,74661,68181,1 +105206,Reżyser,418757,136558,5 +105207,Wang Dong,182127,1439516,9 +105208,Buster,367147,17838,0 +105209,Scott Ozsik,70821,225418,4 +105210,,19812,3891,14 +105211,American Boy (voice),174309,198847,3 +105212,Tanya,98066,113676,10 +105213,Trick or Treater Fairy,330947,1650317,45 +105214,Al,63096,81481,3 +105215,Spadoni,171446,1178520,5 +105216,Stephanie,384021,1257753,2 +105217,,181456,1524413,10 +105218,Bingo Caller,91679,1782588,27 +105219,Willoughby,315010,55470,5 +105220,Lady Britomart,38770,90644,6 +105221,Gangster with Kidstuff,10044,57609,18 +105222,Duncan Allen,14823,32808,4 +105223,Piper,97206,35468,5 +105224,Lo Chieh-wen,87953,83560,2 +105225,Hanna Flanders,10500,6263,0 +105226,M. Narjit Singh,284288,1544548,3 +105227,Himself,399798,1231673,1 +105228,Mrs. Hoyt,300769,1206588,2 +105229,Festival Committee Member,130507,96721,30 +105230,Kinski,20481,56559,13 +105231,Geo Cassine,29259,24495,0 +105232,Olly Bright,417678,1108907,1 +105233,Girl at King's Cross Station (uncredited),61528,1216606,12 +105234,,180162,1162738,1 +105235,Special Forces (uncredited),263115,1717112,100 +105236,Armando Feroci,42674,89193,0 +105237,MacNamee,91390,216086,4 +105238,Rick Ross,37534,117888,11 +105239,,11205,62419,11 +105240,Captain,17295,557865,3 +105241,Mme CHIANG,111839,6720,11 +105242,Driver,83599,1039094,2 +105243,Nyla Olson,22076,21474,4 +105244,Wicker,27443,38761,9 +105245,Mrs. Finley,257302,5684,4 +105246,Miner at Colliery,28421,1468172,22 +105247,Fish Co Op Worker,38448,135433,6 +105248,Nan,228558,477,1 +105249,un étudiant séminariste,43878,103393,9 +105250,Parvez Asharraf / Rubbar Singh,19276,35819,4 +105251,Ali,8460,55875,2 +105252,"Giovanni Bertazzi, aka Ciccio",47848,131328,2 +105253,Marc Stadling,27230,1119770,4 +105254,Gyllenhaal,10087,16480,12 +105255,Potomac River Cop,127585,1148496,63 +105256,Classmate (uncredited),25132,1112457,21 +105257,Himself (archive footage),184363,1903778,6 +105258,Bartleby,70587,558925,5 +105259,Sinestro (voice),17445,8536,1 +105260,Simon Messerman,18208,227,0 +105261,Bob Murdock,10918,134898,18 +105262,Francis,17175,568531,10 +105263,Prime Alexander,161482,1511754,2 +105264,"Carl 'Tip', Member of The Red Peppers",121636,219695,10 +105265,Merchant,47190,1261781,7 +105266,Carruth,294272,226504,16 +105267,Hugh Adam David Breslin,241574,213835,7 +105268,Naoko Hayase,139692,119244,1 +105269,Aleksey,57809,101423,14 +105270,Jimmy Bob,224885,239988,7 +105271,Jeweler,10362,1006136,24 +105272,Trauungsbeamter,53256,147644,22 +105273,Elizabeth Seccles,6591,50625,3 +105274,Dakota,14147,11149,2 +105275,Capt. Polaris,90616,1692062,4 +105276,Castorp (voice),149870,6818,12 +105277,Zollbeamter,285181,67921,6 +105278,Annie,31165,17026,5 +105279,,12453,72302,16 +105280,Madame Maigret,452142,29235,1 +105281,,235092,95125,8 +105282,Aya,76170,582605,13 +105283,Patti,179398,88930,2 +105284,Ong Hsiu (grandmother),96712,1010121,2 +105285,Blondie McClune,4111,34742,0 +105286,Fred Garrett,14615,99375,9 +105287,One of the Three Greeks,28293,90067,8 +105288,Boy #2 at Play (Wolf),10710,4741,36 +105289,Vice Detective Patrick Farrel,84209,9287,1 +105290,Sinead,1116,15509,3 +105291,G-Dog,428687,1776841,18 +105292,Jeune femme soirée 1,382591,1306309,11 +105293,Niels,318781,49056,8 +105294,,124597,1486084,8 +105295,Rev. Gustav Briegleb,3580,6949,2 +105296,Erik,45020,58621,6 +105297,Balilla Bruno Caorso,48250,1687982,6 +105298,Henry Obert,255491,21594,1 +105299,Danielle,51212,558459,4 +105300,Harry,33472,4094,4 +105301,Jack,75204,574146,9 +105302,Brassknuckles,42989,132102,12 +105303,Zombie,66925,1676850,18 +105304,Fat (as Lam Suet),13807,25251,7 +105305,Bernice,51036,83196,4 +105306,Insp. Charles Dreyfus,6081,14503,2 +105307,Hannu Edengren,54566,116161,2 +105308,Guard executed by Bolo,9461,119460,19 +105309,Joey's Wife,189,55269,33 +105310,Amanda Sue Bradley,10917,3196,0 +105311,Shirley,140883,76232,1 +105312,Navy Op,68721,1154054,76 +105313,Cole,302036,1384003,1 +105314,Levana (as Levana Finkelshtein),287483,94701,2 +105315,Pamela van Doorn,16177,211243,11 +105316,Daniel,171759,78040,3 +105317,Kay Lemp Forrest,130507,33021,2 +105318,TV Anchor,329865,92268,57 +105319,Daniel Carter,378018,180942,0 +105320,Sanchez,65674,199920,14 +105321,Kay Francis,106821,2434,0 +105322,Brij Nath,56292,72118,4 +105323,Lizette Santiago,76785,172123,5 +105324,Spanish Swordman,7549,52903,7 +105325,Sugoroku Mutō (voice),72013,1247778,10 +105326,Official,62472,235718,30 +105327,Nim Rusoe,10488,17140,0 +105328,Lawyer in Court,64450,1522646,25 +105329,Aunt Tabitha,41312,126123,9 +105330,Laura Johnson,8277,212429,9 +105331,Nigel Putnam,52454,20284,1 +105332,,99361,101471,7 +105333,Jannick,16032,1087000,3 +105334,Additional Character Voice (voice),257344,1302231,70 +105335,Wichita,24273,51214,4 +105336,Passerby,167810,1739414,35 +105337,Geoff Plow,16171,79878,27 +105338,Allison Mills,191322,465117,3 +105339,Himself,9577,59437,1 +105340,Antonia,82265,262849,2 +105341,Bill Carrigan,61225,16477,16 +105342,sexy demon,405882,83338,5 +105343,,55589,1430327,7 +105344,"Philip ""Phil"" Caputo",264321,69010,1 +105345,Club Manager (uncredited),17136,1469588,48 +105346,Andrei,46920,137754,6 +105347,Donna,366630,62054,4 +105348,Penn Jillette's Head (voice),15060,37221,12 +105349,Roger's mother,91186,1163179,2 +105350,Nick Wrigley,103014,17419,0 +105351,Ray,67669,29775,3 +105352,Stewardess #1,16082,79959,14 +105353,Mexican Leader,83831,51429,6 +105354,Alain,4948,32043,9 +105355,Call Boy,132928,198219,25 +105356,Bob Cody,20312,2955,4 +105357,Jose,341957,1236059,9 +105358,Golem 3,52369,1789821,12 +105359,Toddler's Mom,116977,1214713,18 +105360,Herself,70086,558014,1 +105361,Fiddy,59075,182851,6 +105362,Snow White (voice),44283,32385,0 +105363,"Joe, the Cook",52437,1250223,14 +105364,Sandrine,394822,11317,4 +105365,John Clarke Turner,339408,1371098,19 +105366,Professor Precilla Persimmon Periwinkle,34204,162896,5 +105367,Chuck,28026,1314357,6 +105368,Sam,159701,55959,7 +105369,Jang Ji-gu,128111,1256497,1 +105370,Mercedes,230211,229093,9 +105371,Mann bei Klari,8948,1133619,12 +105372,Demitri,46169,113929,10 +105373,DARPA Scientist,257344,76112,54 +105374,Receptionist,149509,189719,18 +105375,Rama,110381,1137558,2 +105376,Himself,173467,1152,25 +105377,Dutch Captain (as Al Cavens),18977,1601650,8 +105378,WES,18475,55265,3 +105379,Nancy Stockwell,18273,49,0 +105380,Abekasu,47002,120351,5 +105381,Fugitive Planter (uncredited),1976,1016646,36 +105382,Cindy Agami,29542,1084789,7 +105383,,49106,1004793,8 +105384,Henry,53953,72099,8 +105385,Ida Wells-Barnett,49007,154114,8 +105386,Massoud,24955,92897,2 +105387,Maria Montez (voice),16873,2956,5 +105388,Sitter in Bath Studio,80596,20399,23 +105389,Glen Hayden,292294,108992,1 +105390,Procuratore Capo,105384,91818,11 +105391,Bone Crusher,86252,933067,2 +105392,,177564,1160009,0 +105393,Lombardo (voice),9836,59783,13 +105394,Jack,9675,19159,1 +105395,Duane Haller,42267,14253,2 +105396,Jack O'Dwyer,209112,87447,15 +105397,Flora,173662,30538,5 +105398,,76438,578849,11 +105399,Sheriff Andrews,359245,61164,4 +105400,J.D.,339403,124495,9 +105401,Un tueur,98277,1017271,10 +105402,Ted,98870,43479,4 +105403,Yoga Teacher,32298,7539,9 +105404,Christina Dalvik,27622,87519,8 +105405,Ah Sai,24163,1160575,4 +105406,direttore del carcere,52913,39432,12 +105407,Slush,29083,102854,6 +105408,Lt. Coyo,22584,41750,5 +105409,Ground Technician (uncredited),19995,1207282,66 +105410,Burton Alder,130507,34235,28 +105411,Waiter (uncredited),14615,29987,82 +105412,Felty Yoder,209244,1351003,25 +105413,Police Officer 2,280617,1851690,24 +105414,Himself,63472,2877,6 +105415,Beany,27470,10460,18 +105416,Kader Slimani,383064,1633220,6 +105417,Child at Christmas Party,179066,149018,52 +105418,Lamar Galt,5289,64674,18 +105419,Mark Hand,105503,120105,2 +105420,Dr. Cristo Bedoya,163706,14276,2 +105421,Mary Jane Hutchinson,1599,6929,13 +105422,Beghira,29352,103608,5 +105423,Mattia's mother,85038,132849,5 +105424,Girl at Carwash,11247,1228631,35 +105425,Jean Michel,10204,64160,3 +105426,Teacher,56558,1677478,58 +105427,Cavalcade Pervert,25625,76495,6 +105428,Insp. Levering,266373,67685,4 +105429,Mother,46930,137821,9 +105430,Doob,31146,1109633,7 +105431,Dr. Milton Arcos,28656,30956,9 +105432,Tookie (voice),26264,2150,8 +105433,Yue Canglong,66759,548610,4 +105434,don Andrea,82080,120107,4 +105435,Tip,45800,30236,10 +105436,Village Woman,414977,1543949,29 +105437,Debbie Strand,45431,16850,0 +105438,DJ Tyler,8617,1627987,21 +105439,'Acid' Graham,43811,103503,10 +105440,Lee Do-hyeong,296633,1372476,6 +105441,Singing Friend,14976,1212135,11 +105442,C-Thru,126442,84763,2 +105443,Flo (voice),49013,15899,27 +105444,Marion,3716,33682,9 +105445,Paul Berten,130900,40433,2 +105446,,315057,148388,4 +105447,Bridget,30929,100103,7 +105448,Rich Ruskin,284537,11006,3 +105449,Uncle Tim,7547,1462,5 +105450,Ataman Koszowy,31273,107871,18 +105451,Satan,330947,1422400,33 +105452,Pastor,91691,1068465,7 +105453,Costume Designer,26486,27269,27 +105454,Sébastien,77728,18766,5 +105455,,340119,1466977,6 +105456,Padre di Lucia,356461,1880338,8 +105457,Mr. Laffs,16890,27858,3 +105458,Saartjie Haarhoff,5237,137684,27 +105459,Ella Zarrow,277710,59261,23 +105460,Mitch Palmer,24757,65772,1 +105461,Nosmo,72096,1139745,25 +105462,Gilbert De Vesci,258251,26706,5 +105463,Gang Member,87593,935283,1 +105464,Mr. Blount,30637,106626,7 +105465,Arthur Palmer,40465,40673,2 +105466,Eric Hurst,200331,55278,10 +105467,Black Assassin,38526,1675650,13 +105468,Raimonds,166886,1156244,0 +105469,Sgt. Bruce,43880,78847,1 +105470,Charles Renbock,62764,589652,11 +105471,Leicester,43875,42574,6 +105472,Elliott,52034,237171,5 +105473,Stéphanie,26152,81786,2 +105474,Amber,339342,1478378,13 +105475,Carl,245169,53492,0 +105476,Pretty Woman,19794,87186,13 +105477,Corporal,22999,117770,6 +105478,Sheryl Ann,20481,49346,12 +105479,Teensy,93263,10431,10 +105480,Nicholas,89591,973,2 +105481,Eric,388243,67850,2 +105482,Sgt. McCall,63706,94864,0 +105483,,366860,1532120,11 +105484,,247447,1891493,1 +105485,Traveler,319993,592227,11 +105486,,349948,5047,1 +105487,Le consul Demetrius,49398,9746,4 +105488,Michelle,5759,45400,2 +105489,,44434,45400,1 +105490,Schneider,267654,9928,6 +105491,Pram Lady Hungry,375366,1886280,31 +105492,Tail Gunner Joe Winocki,15807,81970,6 +105493,Tong Yun,338421,1173214,2 +105494,Fred Bellair,110160,142689,1 +105495,Boris,57809,122539,0 +105496,Sherriff Pangborn,137528,1764638,11 +105497,Shaw's Father,70981,17178,12 +105498,Skeets O'Neil,184328,93623,3 +105499,Prince Rudolph,43868,10922,1 +105500,himself,97035,237859,0 +105501,Louise,5183,7565,8 +105502,Linus Van Pelt,15242,124049,2 +105503,Jim Gault,237,3065,4 +105504,Pil-dong,92499,138527,3 +105505,Agness Adler,22897,25703,4 +105506,Tiffany,16985,88072,3 +105507,Club Girl,72105,1502860,41 +105508,Prostitute,96132,1195194,17 +105509,"Suda, doctor",49308,213511,3 +105510,Sean,25701,94125,1 +105511,"Lt. Willsdorff, 'le Crabe-Tambour'",86727,20030,6 +105512,Leo Nuvolone / Callisto Cagnato / Moreno Vecchiarutti / L'onorevole,20414,89193,0 +105513,Darrell Claxton,23855,28410,2 +105514,Chivo's Girlfriend #1,17317,1676733,22 +105515,Frank Moore,60759,189367,10 +105516,Poker Buddy,32657,1187262,55 +105517,Susan,238792,18066,1 +105518,Sameer A. Purnavale,142412,35782,1 +105519,Natalie Gann,13836,18706,6 +105520,Vidya Sinha / Durga Rani Singh,413547,35068,1 +105521,Spoon,7220,74587,27 +105522,Private First Class Sam Train,12412,334,9 +105523,Amelle,96921,1404670,4 +105524,Trishelle,13574,55546,7 +105525,Mariano,63612,146301,5 +105526,Alak,43471,121318,6 +105527,(voice),28090,1719904,54 +105528,Dave,15264,88978,3 +105529,Tum,33253,110389,0 +105530,Mark,18392,551516,16 +105531,Mulligan,53576,1421810,7 +105532,,337012,1165738,2 +105533,Islander,38221,1117087,13 +105534,Claude,369885,400612,13 +105535,Ethel,43440,41216,1 +105536,Lew Tate,52362,64212,6 +105537,Ashton,149926,184981,21 +105538,Hungry,375366,1885906,28 +105539,Jack,18898,1623642,17 +105540,Janine Duval,134355,1959,4 +105541,Himself,99861,7624,22 +105542,Himself,209112,1236584,30 +105543,Akira Yamamoto,61984,115700,12 +105544,Mrs. Willard,26517,100511,7 +105545,Publican 7,107985,47712,45 +105546,,418378,1230955,0 +105547,Alberta 'Mouse',23692,43203,7 +105548,Schulungsleiter,9677,58480,1 +105549,David,38964,10029,2 +105550,Mike,253851,2252,2 +105551,Miguel,131194,236686,7 +105552,"Kevin, Toddler",71859,1614414,5 +105553,Mitchell Wolf,62046,87003,8 +105554,Sam Salazar,59006,2299,6 +105555,Singing Men of OHIO,381008,1784724,33 +105556,POTUS (voice),209112,17178,26 +105557,Aphrodite,32657,86268,34 +105558,Mrs Maudsley,36194,80255,2 +105559,Diana's Mother,42614,142595,7 +105560,Serhoza Karenin,96724,1135127,27 +105561,Army Assistant Coach,43812,3262,41 +105562,Sue Hodge,1259,33450,7 +105563,Ichabod 'Icky' Mudd,261035,105759,5 +105564,,16015,136774,14 +105565,Janine,23169,20879,9 +105566,Leon,447758,1451332,20 +105567,Elaine Anderson,335869,13920,11 +105568,Dad,142989,54430,3 +105569,Clara Bauman,61991,1362877,4 +105570,Nancy,100275,546216,7 +105571,Emily Irving,15213,155580,36 +105572,Billy Jarvis,86979,31196,2 +105573,Sullivan,43855,14453,6 +105574,Daily Planet Reporter (uncredited),209112,1188194,133 +105575,,188684,20829,7 +105576,Mrs. Leathwaite,186227,2934,15 +105577,,92285,1203932,9 +105578,Elizabeth Younger,64942,69122,8 +105579,Jeanie Ellis,7233,52116,1 +105580,Hubs,40466,1760117,6 +105581,Johnny,143876,125857,0 +105582,Tom--Bodyguard,14589,155618,68 +105583,Weirdo,39356,473036,12 +105584,Charlie Boyle aka Chaz Anthony,73527,4940,0 +105585,Peter Stone,24351,24595,7 +105586,Evangelist,5638,81549,10 +105587,Police Personnel,52302,1185640,12 +105588,Bakery Customer / Party Girl / Student,306952,1511991,51 +105589,Charles Frobisher,26491,746,9 +105590,Alcock,7548,52890,9 +105591,Padre Luca,155011,7544,1 +105592,Scott,301334,53240,2 +105593,Detective Joe Kojaku,27045,4995,2 +105594,Diana,49343,80145,0 +105595,Manuela,352498,1077346,14 +105596,Ruth Etting,40633,8237,0 +105597,Estonian,30619,29832,1 +105598,,359807,112112,3 +105599,Candy,456781,1371769,16 +105600,Prinz Ludwig,459,6816,12 +105601,Priest Muchowiecki,31273,107893,41 +105602,Ted,6023,121939,14 +105603,Tammy Greenwood,20825,35028,4 +105604,"""Charlie"", the Bartender",42062,127521,7 +105605,,374021,1392849,9 +105606,Jarvis / Dr. Deane / A Husband,315855,141741,4 +105607,Scoonie Schofield,325133,54691,8 +105608,Pavle Paroski,341201,52023,2 +105609,Himself,293262,65606,7 +105610,Lachie,14868,37290,13 +105611,Elder Barum (voice),16873,11160,12 +105612,Florian,81616,40526,5 +105613,Petra,18557,234982,8 +105614,Willy Basset,264080,16523,7 +105615,Agent Evelyn Pierce,405882,21321,2 +105616,"Samantha, die Eule-Stimme",78694,932577,3 +105617,Rico,76097,44332,7 +105618,Şevket,51334,1291746,6 +105619,Abdullah,10821,1004761,9 +105620,Victor Stone / Cyborg,209112,1313559,42 +105621,Bertram als Kind,156954,1146492,4 +105622,Johnny,73027,239302,1 +105623,Red Henry,72096,230,12 +105624,Linc,85916,1545412,4 +105625,Briggs,9042,65730,5 +105626,Joanna Eberhart,9890,2227,0 +105627,Nora,153163,85956,6 +105628,Slave Girl,1271,1330772,68 +105629,Snake Eyes,14869,11007,10 +105630,Cardinal Mazarini,64044,47918,5 +105631,Giovanna,231176,7547,12 +105632,Linda,14452,79351,6 +105633,Lewis Burdette,63988,238399,3 +105634,Leonard,222858,46920,3 +105635,Massage Parlor Man,308024,58768,10 +105636,Dean McMullen,115290,1017347,1 +105637,Queen Anna,64046,28079,4 +105638,Himself,413782,488,2 +105639,Alicia,162282,3809,4 +105640,Various Zombies,30778,113782,5 +105641,Plastic Surgeon,19918,1212131,15 +105642,Huey (voice),125510,57735,12 +105643,Rainie Pritchard,26514,1465099,10 +105644,Sir Cloudsley,44631,82488,9 +105645,Tom,43751,133002,0 +105646,Charles,86049,29069,0 +105647,Second Barber (uncredited),47758,9096,10 +105648,Gene Autry,103168,90071,0 +105649,Philip,27973,106090,13 +105650,Very Gay Guy,306952,1511989,49 +105651,Himself,38404,120338,2 +105652,Rachel,316885,1229245,6 +105653,Bloat (voice),127380,18,22 +105654,Pueblerina (uncredited),198795,1464669,26 +105655,Carrie Cash,69,1231850,16 +105656,Anna's father,2180,1024803,9 +105657,Lord Chief Justice Mansfield,352733,10779,12 +105658,Tia Zélia,203217,592366,3 +105659,Military Drone Operator,38356,19541,35 +105660,Richard M. Nixon,45120,4029,1 +105661,L'oiseau (voice),22504,39953,0 +105662,Inspector Danladi Waziri,325803,1428017,1 +105663,Douglas McCarver,296456,537,3 +105664,Stoner,299780,1379271,19 +105665,,86040,73569,2 +105666,Mozo del juicio ante Sancho Panza,145481,89574,11 +105667,Pop Guitar Player,11172,1077876,6 +105668,Kriminalrat Fortner,267389,35670,8 +105669,Sophie Lee,18514,21657,0 +105670,Carson,89269,212174,6 +105671,Mikayla,359471,1509229,20 +105672,Aschenputtel,263260,1080812,1 +105673,Jane Rockett,4644,4430,0 +105674,Herr Batterjee,308174,1394310,11 +105675,Silias,22419,17051,1 +105676,Coroner,42709,927863,19 +105677,Lois Lane (voice),166076,34408,2 +105678,Beany,52850,1665012,13 +105679,Matt,395982,1748374,11 +105680,Charlie Zane,47914,5251,1 +105681,Dr. Seeburger,459,6811,10 +105682,Pastarri,17238,27199,8 +105683,Killer,41283,551020,15 +105684,Julian,27561,60971,0 +105685,Mr. Nobody,168259,6856,11 +105686,Leonora,11813,10262,5 +105687,Élise Voïlinsky,110160,1291964,23 +105688,Henchman,377170,148147,26 +105689,Gō Kashima,2487,25464,3 +105690,Giuseppe Filippucci,43469,550821,1 +105691,Juliet,508,116,0 +105692,,366759,1531858,2 +105693,Abu,325690,1880341,5 +105694,Mel - Kitten,39436,1693772,13 +105695,Football Player,38322,1711548,58 +105696,Bill,186606,1480713,21 +105697,Single Lady in Dating Video,405473,1707889,18 +105698,Pop Ryan,1640,3042,53 +105699,Aaron Kiler,103432,1833303,11 +105700,Camille,15616,61105,11 +105701,Mr. Fishman,31287,138076,5 +105702,Abschalom,2734,27635,8 +105703,Rena,296344,1371766,6 +105704,Kyle,46883,1887376,4 +105705,Dog Lady (uncredited),339403,1064157,42 +105706,,142770,589742,6 +105707,Deputy Fred,62033,1157672,12 +105708,Rex DeVallon,61151,118022,5 +105709,Olle Sundqvist,145194,32684,6 +105710,Michelle,19587,1337617,10 +105711,Malgorzata,79221,131237,7 +105712,Bobby,160261,1099592,12 +105713,Fred Chu,75761,447244,8 +105714,Melody,417936,564629,7 +105715,Peppino,82481,37583,2 +105716,Juan,8556,37793,10 +105717,Holmlund,49940,143391,9 +105718,Antônio,35652,114482,0 +105719,,117534,1839929,24 +105720,Cigarette Girl,2567,74651,34 +105721,Dandy #1,188161,8265,23 +105722,uomo per strada,42892,71296,11 +105723,André « Dédé » Fortin,21581,583728,0 +105724,Kate Hedges,9298,25702,5 +105725,Mac Schiltz,369524,1037,5 +105726,Samuca,70666,1863896,32 +105727,Minny (voice),49013,3202,38 +105728,Mrs. Mulligan (uncredited),33112,81188,21 +105729,Kuririn,38594,65510,16 +105730,Kamchybek,295914,1372350,5 +105731,Engineer Kariya,50696,63707,2 +105732,Arthur Rock,115782,18999,7 +105733,Kaena (voice: French version),11572,17522,0 +105734,German Mule,240832,1367831,8 +105735,CNN Reporter,246655,1796401,49 +105736,UN Officer #1,16374,80480,14 +105737,Sigurd Svendsen,140818,76556,0 +105738,Tarja (Ippen äiti),148478,5999,5 +105739,Fille notable,436340,1744827,13 +105740,Hank's Mother,10475,1660539,12 +105741,Himself,130993,139536,8 +105742,Gertrude,106848,29545,2 +105743,Femme juge,121539,1759913,7 +105744,Undetermined Minor Role,75363,1462969,25 +105745,GDSF officer,43113,1482288,71 +105746,Patsy Flick,128669,951894,28 +105747,David Barr,130881,20502,0 +105748,First AD,145220,52997,40 +105749,Charity Lady,169355,34750,11 +105750,Aristoteles,48805,2376,9 +105751,Blakeney,8619,215661,7 +105752,Ela mesma,448763,1848653,17 +105753,News reporter,256092,1338703,9 +105754,Policía 2,48594,434009,6 +105755,Susan Channing,105548,21878,5 +105756,Red Stranger,82655,898554,3 +105757,Landon Jones,440777,1754589,2 +105758,Dr. Evans,43759,8253,1 +105759,Gopher (voice),14885,3796,9 +105760,Yves-Oreste,63401,24399,8 +105761,Martin,25919,60846,0 +105762,Nurse Delilah,149509,1175501,9 +105763,Tumisho Masha,60665,1056286,3 +105764,le commissaire,33360,36918,11 +105765,Son of Ares,32657,1678717,69 +105766,Michele,103758,545137,2 +105767,Lenny,58251,227565,0 +105768,Doctor,93856,52762,11 +105769,Hung's man,53168,1136808,6 +105770,Sanchez,102222,83507,13 +105771,Orson (voice),48567,1440152,8 +105772,Caroline,443319,1367129,7 +105773,Cathy Easton,66741,36898,1 +105774,Ben,314420,985706,5 +105775,Motivations Tape-Sprecher (voice),27637,36440,52 +105776,Wino,157847,1765437,15 +105777,,40146,1055177,12 +105778,Amica Pela,16131,79420,8 +105779,Jeune fille Flore,85735,1153298,13 +105780,Conejo,33273,1111671,23 +105781,John O'Hanlan,28303,854,0 +105782,Selma Wilson,92269,2639,1 +105783,Docteur Nirock,302042,1725449,9 +105784,Ed Spengler,2979,117169,0 +105785,Père Létendard,24685,24477,11 +105786,Maid of Honor,12912,37695,9 +105787,Samurai,356296,23961,1 +105788,Bill,27012,86368,1 +105789,Trotter's Manager,128669,111586,26 +105790,Hotel Receptionist,5552,1513402,11 +105791,Lütfü,38794,77349,1 +105792,Hippie Club Singer,47342,1837868,24 +105793,Adam Miauczyński,74921,83266,0 +105794,Manny,239562,972671,5 +105795,Chief Chaung,48489,49609,1 +105796,Constable Bohan,425774,1707901,29 +105797,Layla,124054,113779,7 +105798,Maude,90590,1113945,4 +105799,Dr. Sullitzer,148,978,4 +105800,Peter Lockhart,50126,169469,14 +105801,First Assistant Director,1640,1110185,37 +105802,,314371,1583950,27 +105803,Lea,19166,38561,0 +105804,Toby,7547,1472,13 +105805,Gordon,114779,1385478,12 +105806,Beth,360284,52869,0 +105807,Carmen Ghia,9899,45566,20 +105808,The Commander,62472,229226,3 +105809,Likola,10087,63135,4 +105810,Sheng Yu,56095,1166104,2 +105811,Ambassador Halden,25684,10195,8 +105812,Manuel Leonardi,16092,79291,4 +105813,Train Guard,206647,1372694,67 +105814,Eva,44552,1081840,5 +105815,Natalie 'Mother' Koffin,101669,28412,0 +105816,Kay Lawrence,43833,2924,2 +105817,Nicolas Marwan,46738,1644517,19 +105818,Generale,379873,132257,14 +105819,Claire Lorrison,29236,89746,10 +105820,Kelly Stoke,216156,130977,1 +105821,"Prudence ""Spitfire"" Stevens",44631,70035,1 +105822,Swing Dancer,4551,1775935,58 +105823,Himself,429792,1099718,1 +105824,The Evangelist,41283,31164,14 +105825,Cadet Georgie Warren,179103,89750,3 +105826,Chieftain Ombo,38221,121193,11 +105827,Support Group,222935,1672082,36 +105828,Jack Dudman,115782,4512,3 +105829,George Davis,10407,15417,4 +105830,Joseph,57993,19107,9 +105831,Anita Matlock,38107,120525,1 +105832,Luci Baines Johnson,31018,34490,10 +105833,Dr. Adolph Engelborg,831,5802,7 +105834,Senator Acantha,297762,139900,14 +105835,Fitch,273610,127725,6 +105836,Fabrice Berthier,289126,1040850,4 +105837,Kundavi,69635,147324,1 +105838,Hooker,10596,65806,12 +105839,William Turner Snr,245700,72308,3 +105840,Miguel 'Magic' Escobar,307081,1561575,9 +105841,Train passenger,332872,1651931,23 +105842,Detective Dave Besson,66193,8335,5 +105843,Chase Walker,332280,1057442,1 +105844,Himself,36432,115350,4 +105845,,23289,3409,16 +105846,Coley Boyard,42701,34660,0 +105847,Pvt. Mirus,7454,77682,6 +105848,Ballarin,52914,1086884,10 +105849,Ältester im Zeltlager # 2,2734,27675,54 +105850,Girl at Concert,11172,1781217,57 +105851,Archer,44119,17442,2 +105852,Paolo Gervasi,94809,41063,6 +105853,Kiki,2742,27810,9 +105854,Himself,108177,84075,0 +105855,,271677,35745,2 +105856,Relk,27270,161600,9 +105857,,148347,237276,3 +105858,Ken,5559,9657,4 +105859,,148371,1530377,10 +105860,Engel,153102,981282,5 +105861,Nicole,42420,44079,10 +105862,Doctor,170279,1152394,13 +105863,Вера,88491,985071,1 +105864,Margaret,48243,8925,1 +105865,Link's Backup Singer,2976,1752313,20 +105866,Bike Teen #2,272878,1683758,27 +105867,Mark,330588,1667330,1 +105868,Hōran (voice),155765,90499,6 +105869,Woman at Bar,32044,1513129,16 +105870,Giovanni,38286,120020,1 +105871,Korr Sella,140607,1399526,29 +105872,Dr. Bass,30993,98187,12 +105873,Amelia Crusoe,40060,7631,3 +105874,Mallory,39845,343,11 +105875,Vice President Hoffman,69152,27384,4 +105876,Regard sombre,61991,1747627,7 +105877,Bruce,41932,12406,0 +105878,Jack Taft,258480,1545497,10 +105879,Sir William Beechey,245700,185226,23 +105880,la mère de Clara,93863,19586,6 +105881,Krishna,210068,11861,4 +105882,Steven Stelfox,318922,3292,0 +105883,Harlon,14527,199849,11 +105884,Donald Duck (voice),53219,78077,2 +105885,Herself,13196,36190,11 +105886,Neighbor,203833,1196724,29 +105887,Peter Roberts,256092,11155,1 +105888,,448879,86670,2 +105889,Se-mi,19482,1101373,3 +105890,Annie Laurie,189682,8828,0 +105891,Madre di Antonio (as Anita Ciarli),56068,1359127,7 +105892,Laser Girl,196065,104950,11 +105893,Ambulance Driver,15092,1826457,46 +105894,Howard Stark,211387,55470,1 +105895,Mr. Thornton,38340,13327,6 +105896,Le colosse,59118,1332485,18 +105897,Nancy,119364,14254,5 +105898,Little Kid,61473,7518,5 +105899,Hicks,17577,52474,10 +105900,Benjamin Pontipee,16563,121766,1 +105901,Martin,3549,32726,5 +105902,Clinton,16839,193356,11 +105903,Julia (as Maria Andreeva),132759,980125,4 +105904,Trailer Park Lady,310133,1653012,11 +105905,Mai,427680,1353676,4 +105906,,78258,583491,8 +105907,Rachel Clark,3580,1569735,27 +105908,Col. Hogan,5753,45357,2 +105909,Pasquale Donnaregina - 'Dogheart',105906,6787,6 +105910,Yossi,17614,82097,0 +105911,Anna,13630,1017280,1 +105912,Adam Finch,60935,29020,3 +105913,Parma,103640,1034470,0 +105914,Connie,33343,1188780,8 +105915,Marten,11142,68325,4 +105916,Grub,62764,60958,7 +105917,Pregnant woman's husband,76493,212290,14 +105918,,38681,100307,13 +105919,,359807,1365186,8 +105920,Mrs. Willis,252746,20127,7 +105921,Jenny,203819,1318711,3 +105922,Profi,338312,1120216,7 +105923,Carol,156180,1177891,3 +105924,Jogger (uncredited),330947,1269324,56 +105925,"Fumi, Omitsu's daughter",126516,1082750,2 +105926,Allen (aka Al),84337,102071,8 +105927,Richard Elliot,86543,14344,7 +105928,Paméla,20200,54675,1 +105929,Dr. List,99861,7030,23 +105930,Soldier,377170,121243,24 +105931,Himself,109417,143242,5 +105932,Hamam Scrubber,74879,1001786,17 +105933,Girl on Bus (uncredited),25132,1112456,20 +105934,Joe Wilsey,3081,12152,14 +105935,Nurse Frazin,152532,230995,9 +105936,Salvador Dalí,31299,11288,1 +105937,Jade,45935,226556,3 +105938,Uncle Topolino (voice),49013,22383,22 +105939,Mr. Ibbertson,83015,1834953,26 +105940,Dr Yasmine Vondenburg,447758,8443,1 +105941,Party Guest (uncredited),170234,233114,8 +105942,Amund Wang,47405,105280,2 +105943,Second Prince Tian Yang,10109,63585,3 +105944,Jerry,263627,1240645,7 +105945,Amy,291871,1518919,20 +105946,Frank's Mother,103620,78434,1 +105947,George,242835,40001,10 +105948,Butler,68097,14508,6 +105949,Detective Jim Ryan (as William S. Phillips),25807,94337,13 +105950,Miranda North,395992,933238,1 +105951,Kyoko Koizumi,39123,1251907,17 +105952,Bill Tomley (uncredited),28668,83397,17 +105953,Gabrielle,179812,1124796,12 +105954,Dani,201765,1183859,1 +105955,Margot Jane Lindsworth-Calligan,17927,109858,6 +105956,Dalton,85350,1467998,72 +105957,Gilda,416680,64774,1 +105958,Junior Kangaroo / Various Whos / Quizmo McKwoff / JoJo (voice),29233,100888,2 +105959,Father Slocum,33224,86356,3 +105960,Attorney General,77822,93900,5 +105961,Gluttonous Woman,36075,1118790,1 +105962,Hannah More,15163,191752,15 +105963,La veuve,258384,1064930,20 +105964,,91477,103492,6 +105965,Chuck,259894,1080846,5 +105966,Elliot,27417,171243,5 +105967,,110608,1050083,10 +105968,Cora,127286,1283,0 +105969,Pete,369406,1539092,22 +105970,Background actor,52454,1630316,48 +105971,Da Lisi Guard,217923,1436280,39 +105972,Martino,356757,1501802,5 +105973,Malcom Ward,68737,53720,15 +105974,Frau Stanger,203539,48519,10 +105975,Gaulist (uncredited),22584,117770,27 +105976,Comstock,75315,85995,8 +105977,Daniel O'Keefe,19618,84935,7 +105978,Linda Adams,242332,34471,1 +105979,Miss Francis,88390,49958,1 +105980,Erzherzog Karl-Ludwig,457,6258,8 +105981,Kamar,60488,9865,3 +105982,First and Last Mate Tom Carter,25768,21223,4 +105983,Nina,28062,99522,1 +105984,Sandra Willat,23957,4975,3 +105985,Medico Carabineri,59040,1871293,17 +105986,Rob's Mom,26123,2165,6 +105987,François,8897,16269,0 +105988,Miss Dunk,28001,126679,11 +105989,Mona,308,4439,8 +105990,White Trash Girl,22476,88819,1 +105991,Julia,141015,1017115,3 +105992,John O'Shea,322,4731,11 +105993,Nico,166262,1147818,11 +105994,Đorđe Vujadinović 'Nosonja',57419,1050844,16 +105995,Lefranc,13507,54233,5 +105996,Helicopter Pilot,19017,141400,10 +105997,Limo Driver,336011,30751,24 +105998,Jim DiMatteo,127728,1085658,6 +105999,Herself,63144,1624609,4 +106000,Nise,189472,67052,2 +106001,Father Martin,49018,1851029,11 +106002,,18729,56456,9 +106003,Pakistani Scientist,329865,1810154,70 +106004,Death Star technician,330459,60047,60 +106005,Colin,253277,38560,2 +106006,Demetrius the Blind,24149,1382565,4 +106007,Gremio,91715,34758,4 +106008,Boy,24973,1747659,33 +106009,Flavius,245950,1888599,7 +106010,Rev. Griffin,73896,22603,3 +106011,Viola,42679,128441,4 +106012,Dean Tainot,59861,17419,2 +106013,Nathan Bartnick,93828,1670,4 +106014,,85836,1369183,13 +106015,Matthew,18044,102750,10 +106016,Walt,300090,52885,8 +106017,Bello,6076,1083,4 +106018,Policeman Macy's,245906,335,24 +106019,2nd Policeman,32577,1048868,31 +106020,Gros Bat,1976,98571,16 +106021,Chiara,120922,1073150,8 +106022,Herself,459295,7404,1 +106023,Abhi,73578,589654,6 +106024,Phyllis Wepner,373546,32798,2 +106025,Director of Casino,64605,21877,7 +106026,Jerome,59678,972041,15 +106027,US Colonel,27450,146714,12 +106028,Dickan,49717,92404,4 +106029,Himself,366696,1753485,11 +106030,Kiki,156356,100047,0 +106031,Priscilla (uncredited),180635,150947,7 +106032,Kun's P.E. teacher,195763,570522,1 +106033,Kamil,376716,86863,4 +106034,Quon,29694,20128,6 +106035,Schneider,14765,6012,0 +106036,Stopwatch Messenger,11045,60847,16 +106037,Charles IV's Confessor,341962,1322224,8 +106038,Attorney Ord Long,131861,1752,8 +106039,Little Red Riding Hood,16652,563376,0 +106040,Masayoshi miyake,81560,117463,3 +106041,,11643,856,18 +106042,Sébastien Hauer,130055,24903,4 +106043,Roy Harrison,16083,53969,8 +106044,Chief Mate Jack MacCarthy,43752,50762,8 +106045,Sheila Rilo,4613,5588,0 +106046,Water General,66756,119461,12 +106047,Pinkie,62728,32987,3 +106048,Sumathi,353533,1068827,17 +106049,Nurse,269258,49028,18 +106050,Agent Dolan,326285,59311,10 +106051,J. T. Kennings,142391,96200,10 +106052,Manny Moss,375082,1723659,11 +106053,Singer,3146,39555,9 +106054,Hamid,295314,1122951,1 +106055,Timothy Hearne,41551,20368,5 +106056,Chen,124157,20519,4 +106057,Francis,12279,151385,13 +106058,Madeline Garrett,47186,52482,36 +106059,Alex,109391,1204675,6 +106060,Father Symmonds,32540,109326,14 +106061,Tess,90231,1400226,3 +106062,Noah,305127,45388,2 +106063,Claude Kearn,84233,1580710,2 +106064,Renee,163814,172221,7 +106065,Maritime Officer,3115,1478372,22 +106066,Pete,37932,208882,8 +106067,Kim Yoon-Woo,385261,587675,2 +106068,Rodeo Spectator,33541,939717,46 +106069,Beautiful Woman,209112,1692036,76 +106070,Ruženjka Hrabalova,148034,1279769,6 +106071,Lucy,335837,1454471,2 +106072,Sheriff,27966,248225,6 +106073,Bill Lee,375082,19536,0 +106074,Le sergent tortionnaire,13507,136438,11 +106075,Balgur,48180,140012,6 +106076,"Captain Gerald, USCG",333354,1685664,13 +106077,Ляля,213683,1008392,1 +106078,Partygast,1912,46314,25 +106079,El Camaleon,106747,9777,9 +106080,Un giornalista,120972,1388067,11 +106081,Army General,24094,46930,24 +106082,Narrator,8776,586274,6 +106083,Gary,59722,97902,6 +106084,Kelly,80545,1834,3 +106085,Babysitter,171213,278032,8 +106086,Himself,44038,23446,3 +106087,Tonka,83459,626031,8 +106088,Hank Hooper,16661,148403,8 +106089,,56746,6523,1 +106090,Soon-Hee,85709,932490,1 +106091,Boogaard,189,61566,35 +106092,Bud Gurney,18776,8608,1 +106093,Jonathan Farley,42532,22602,8 +106094,Cab Driver,34193,51517,5 +106095,Pilot / Aquarium Employee (voice),270946,1448984,14 +106096,Invalid Uncle,53392,89607,1 +106097,Lady Elizabeth Stacy,81687,3610,1 +106098,James Anderson,95037,34505,6 +106099,Bill,301566,1382836,2 +106100,Tannie Edison,56154,14689,3 +106101,Sheriff Daws,153228,29645,4 +106102,Square John Sand,55604,12147,1 +106103,Mrs. Motford - Kay's Mother (uncredited),96107,85957,14 +106104,Comeliau,452142,47653,5 +106105,Band at Red's,57201,1760476,59 +106106,,33611,1053892,17 +106107,New York businessman,284053,70890,27 +106108,Walter Duncan,78403,77321,3 +106109,High School Student (uncredited),156700,1301807,34 +106110,Megan's Mom,5123,1204020,50 +106111,Marek,82485,22063,1 +106112,Paul,2764,27961,5 +106113,Sophie Bernstein,98203,1497965,3 +106114,Lola,43648,1118063,14 +106115,"Elizabeth ""Liz"" Kerner",39978,563576,2 +106116,Archie Green,13390,2975,1 +106117,Taxifahrer,83729,38620,16 +106118,Zack,369033,6163,2 +106119,Dwight Petmecky,24619,204196,11 +106120,Sheriff Fate,152736,1462,3 +106121,Truck Stop Waitress,2179,56322,13 +106122,Garbage Girl,49853,1648776,19 +106123,Rodeo Performer,134238,1506650,26 +106124,Chairman,206647,1599255,41 +106125,Ginko Matsumoto,125257,1559747,3 +106126,River Pirate,11897,4078,22 +106127,Shelby's Dad,325133,7090,17 +106128,Mr. Willens,20648,15661,7 +106129,Capt Frederick Tilney,18093,57143,23 +106130,Katharina,213635,5309,2 +106131,Lieble,31890,1665,10 +106132,Prof. Martin,53860,8517,8 +106133,Andrej,114438,71374,2 +106134,Charles,65579,27397,5 +106135,Esmon,270774,128040,12 +106136,British Officer (uncredited),43889,33971,14 +106137,Marujita,187442,146702,1 +106138,Thomas Filbee,20106,7278,5 +106139,Tommy Randolph,43514,33022,8 +106140,Gaby,67272,1283583,7 +106141,,418378,278923,1 +106142,Mitsuko Nii,49258,83527,6 +106143,Duchess,25694,131234,15 +106144,Professor Eldridge,5460,194372,10 +106145,Martha Thompson,194817,93839,4 +106146,"Krysia Tuchałówna, siostrzenica Koselów",74922,586161,5 +106147,Principal Vanhorne,257447,56117,5 +106148,Ashwin Kumar (Investigation officer of CDI),353464,76793,1 +106149,Eagle-Eye,285946,96710,4 +106150,Trainer,277558,1461489,9 +106151,Artemis,37100,1184455,7 +106152,Nancy Clark,119694,520,4 +106153,,88273,17477,12 +106154,Tristen,422472,1475032,5 +106155,Nino,47212,54041,9 +106156,Franz Kirchmeier,259728,459003,11 +106157,Sofia as a child,37329,1005363,8 +106158,Peter,17473,81923,7 +106159,A Mother,315855,1294994,39 +106160,tvillingbarn #1,41764,76384,32 +106161,Fjóla,320736,985416,4 +106162,Mrs. Dashwood,315010,47627,3 +106163,Mum,20034,86481,10 +106164,Female Medical Assistant,1724,1366378,60 +106165,Hong Kong Woman (uncredited),284052,1785909,36 +106166,Rosa Ma. Gallardo,366860,1532118,7 +106167,Reisel,98349,24203,1 +106168,Dirk,301224,1382185,7 +106169,Cheyenne Rogers,59882,3381,2 +106170,Nur,336804,1481833,2 +106171,Giancarlo,285840,1195707,10 +106172,Scary Man,199415,1114303,10 +106173,Caparelli,79935,133761,8 +106174,Van,354859,204650,19 +106175,,27276,35643,63 +106176,Sgt. Chips McGraw,43499,30512,4 +106177,Shlomo (uncredited),1595,1524605,15 +106178,,62397,1604220,20 +106179,Street Hustler,118760,1734733,8 +106180,Gow,44631,98052,6 +106181,Himself,407806,1700950,11 +106182,James Sandin,158015,569,1 +106183,,304274,1817963,6 +106184,Young Mark,8247,10135,8 +106185,Kane,35002,113544,4 +106186,RPG Editor,202214,1184333,14 +106187,Duke of Devonshire,12783,5469,1 +106188,Jakob,119816,130683,8 +106189,Nina,141241,60655,3 +106190,Jama Singh - Rajput Chant Singer,115109,32195,33 +106191,Sam,49354,184114,8 +106192,Fisherman #2,256962,1512149,46 +106193,Violaine,72822,48414,6 +106194,David Bourne,8368,54738,0 +106195,Arvi's wife,224813,1210347,9 +106196,Roni Rato,132608,17289,1 +106197,,296313,74620,9 +106198,Dr. Joe Freed,94480,16126,2 +106199,Young Exodus,67174,1696235,11 +106200,Herself,245394,47699,3 +106201,Charley Murdock,174925,1353446,9 +106202,Nikki,290764,140114,1 +106203,Mrs. Peel,13058,109651,19 +106204,Police Sgt,13802,191601,14 +106205,Li Tianly (young) (as Chung Lin),96712,25472,1 +106206,Cate,109979,129080,3 +106207,Syrian at Nefer's,24973,1747660,37 +106208,Luzie,270024,1319925,2 +106209,Pai de Marcelo,70666,1463118,4 +106210,Nyona,85126,43976,2 +106211,Old Man,33253,20528,4 +106212,Pietilän Iivari,286267,1293817,7 +106213,Laura,1427,129050,13 +106214,Yurei (uncredited),329440,1522263,30 +106215,,14210,41504,1 +106216,"Cabot, Reporter",30034,103655,7 +106217,Party Guest,106256,1706562,11 +106218,Preeta,150117,1585965,19 +106219,Andreas,13058,211427,10 +106220,Special Appearance,76788,1661343,14 +106221,Himself,269258,936265,22 +106222,Lord Kingsclere,41073,592406,8 +106223,Lance Corporal Quealey,14531,76968,9 +106224,Warren Thompson,262088,1368436,1 +106225,Officer perry,70695,15011,14 +106226,Mrs. Kaga,111398,125723,13 +106227,Jeff Dugan,42204,131814,4 +106228,Pipi,20296,76793,4 +106229,Peterson,40649,94304,9 +106230,,20210,116131,25 +106231,Alan Leeds,239566,1457283,55 +106232,Soldier,150712,616605,24 +106233,Sheriff Jeb McKane,45215,8728,7 +106234,Pepe the King Prawn / Rowlf the Dog / Dr. Teeth / The Swedish Chef / Bobo the Bear / Big Mean Carl / Baby Boss / Carlo Flamingo / Leprechaun Security Guard (voice),145220,64182,6 +106235,Lord Tilbury,144183,20510,6 +106236,Reed,112304,6862,3 +106237,"Beverley, Leah's Mother",13551,2453,9 +106238,Paul Desfontaines,91380,251083,7 +106239,Don Johnston,308,1532,0 +106240,Herself - Model,327083,1248831,13 +106241,Geometra,161545,1496177,6 +106242,Emperor,311324,1785744,15 +106243,Maj. Du Pont,78318,33007,47 +106244,Guard #1,397717,1722984,26 +106245,Fulvio,2309,1115,13 +106246,Kathy,369406,1230349,15 +106247,Frederica,108003,4098,2 +106248,Carol,8897,149223,2 +106249,Misty Dawn,24150,1104568,19 +106250,Otiol Solé,1896,19826,12 +106251,Teresa Alvarez,44591,56923,1 +106252,Rachel Ashley,413998,3293,0 +106253,Tabloid Reporter,256092,61912,10 +106254,Tony,14029,95457,9 +106255,Beach Girl,77930,1784654,61 +106256,Lugones,120129,534920,9 +106257,Acamus,37958,119251,19 +106258,Stripper (uncredited),15092,1895707,87 +106259,Nadège,71191,62443,5 +106260,Michael Carrier,226167,956556,7 +106261,Peter,147773,1277365,12 +106262,Pete,89492,22226,0 +106263,Police Dispatcher,987,41719,18 +106264,Narelle,37929,80278,7 +106265,La femme sur la plage,51971,26101,6 +106266,Young Bertrand,1421,1723448,38 +106267,Drug Dealer,4982,1473496,62 +106268,Joseph Ruder (as S.Z. 'Cuddles' Sakall),68191,94110,5 +106269,The Alpha Skua (voice),65759,57829,22 +106270,Maria Paola,195544,138210,14 +106271,Urzędnik bankowy,91691,1138240,4 +106272,Maximilian Sandberg,204384,489961,2 +106273,Ms. Samuels,22419,65471,7 +106274,Father Francis,43504,19400,9 +106275,Dr. Manette,17831,8830,6 +106276,Desk Clerk,77794,40952,3 +106277,Robber,102382,1492018,37 +106278,Pig / Regent Guard #1 / Henchman (voice),23566,45927,16 +106279,Fred Strong,192990,103696,11 +106280,Carlos Ishikawa,315837,1544148,12 +106281,Thomas Munster,12601,1827138,1 +106282,Werther,11799,222249,5 +106283,The Master of the Spinning Wheel,42678,4121,15 +106284,Morehead,89086,89729,23 +106285,Jamal,24775,33654,2 +106286,Rudy Kurlander #4,302528,920,6 +106287,Claude,182228,1177074,10 +106288,,63215,236633,3 +106289,Athletic Woman,82654,231517,14 +106290,Edward Ekubo,172008,35013,0 +106291,Deb (&Flo) (voice),127380,14723,26 +106292,Delta Force Team,25528,229639,14 +106293,Island Girl 1,9753,59388,9 +106294,,294640,1368669,4 +106295,,188640,53375,15 +106296,News Reporter,70772,148643,17 +106297,Rondo,78734,931198,16 +106298,Bully,138977,1182321,13 +106299,Os,381032,1198148,1 +106300,Douglas Clayborne,86543,6212,2 +106301,Peter Kürten,99229,37017,0 +106302,Ben,361571,1055514,1 +106303,Samuel,81232,591301,6 +106304,Clemens,76203,172096,12 +106305,Second Hooker,40028,114696,11 +106306,Barman,5237,928732,19 +106307,Mrs. Drummond,37301,19110,11 +106308,Felix,58384,68567,1 +106309,Amelia's Daughter,1164,1411288,46 +106310,Burt Farlander,19255,17697,0 +106311,Alice,238749,3128,1 +106312,Pateeli/Chapta,341007,1706348,14 +106313,Jess (uncredited),19618,13821,12 +106314,Philippe Rambeau,131898,4113,3 +106315,Constable Caban,425774,1707905,31 +106316,Elaine,42684,128628,1 +106317,Narrator,11832,47153,0 +106318,Herself,72711,933894,1 +106319,Helen Morrison,16090,79248,4 +106320,Dana Tan,16234,15100,15 +106321,Chicago Cop,340275,1302425,61 +106322,Herself (uncredited),44123,157499,1 +106323,Lola,17495,51975,3 +106324,"Raspoutine, le batelier (as Rafa Diligent)",43904,142914,6 +106325,Blau,257912,55314,4 +106326,Himself (archive footage),245226,4691,0 +106327,Madman,35320,1132183,24 +106328,Carter,115283,36801,0 +106329,Peg,22020,1207152,11 +106330,Dick Milburn (uncredited),94009,1009,17 +106331,Policía,131932,45555,15 +106332,Little Brother M,212996,1134732,13 +106333,Jen,71139,89292,0 +106334,Emilia,44006,37441,2 +106335,Ogre Baby (voice),48466,76743,9 +106336,Scool Director,2132,21862,5 +106337,Steve Gillis,120747,8729,3 +106338,Mrs. Dodds / Fury,32657,142402,19 +106339,Dance Instructor (as Lynn Bernay),57215,100993,9 +106340,Ida Clayton,105528,54479,15 +106341,Captain Earl Woodhope (uncredited),28000,151846,83 +106342,Officer Kern,266425,1313156,29 +106343,Ma Roberts,94811,990397,5 +106344,Luke,82622,121218,2 +106345,Milo,241930,1084721,3 +106346,Hans,118497,55733,1 +106347,Daikashi,2487,1270060,14 +106348,,32891,1187307,4 +106349,Witness for Peace,2143,132919,41 +106350,Phyllis Clavering,38437,93897,2 +106351,Carlo's Uncle,213681,1771524,22 +106352,Sgt. Saxon,272663,131612,7 +106353,Franchesa,86647,1640657,1 +106354,Stephen Spencer,150657,87766,5 +106355,Detective James Curtis,9828,15824,8 +106356,,13678,1297474,5 +106357,The Great Rodolfo,11799,39008,3 +106358,Detective Mills,29424,1205924,12 +106359,Joe,145220,1147919,14 +106360,Young Li,202214,1184331,4 +106361,Himself,319073,87201,2 +106362,Chele,20941,1723684,9 +106363,Mr. Kellogg,101998,3720,10 +106364,Dando Ben David,24424,132113,10 +106365,Emad,8932,42442,1 +106366,Diner Waitress,214756,1759618,63 +106367,Veronica Perry,279692,54800,3 +106368,Kathy Gray,14147,117085,8 +106369,George Benedict,43808,97007,9 +106370,Dan Hanson,17956,4724,0 +106371,Warren's Secretary,36335,1196680,12 +106372,Mick Jones,41479,77865,3 +106373,King of Hearts,25694,145838,8 +106374,Jim - Larry's Assistant,81120,147527,32 +106375,Elizabeth,48587,56128,0 +106376,Gimpy,29146,1234847,6 +106377,Bigfoot Waitress,10201,1511383,16 +106378,Parade Watcher,24619,1204226,35 +106379,Travis Levine,336265,48312,4 +106380,Louise,270400,69196,9 +106381,Waitress (uncredited),22584,990575,22 +106382,Sanitäter in der Eröffnungssequenz am Bahnhof beim Verwundetenzug (uncredited),10841,27319,16 +106383,Philip Abshire,24420,166529,9 +106384,Mrs. Adams,52850,72307,9 +106385,Girl in Kitchen,270303,1588359,20 +106386,,327231,6004,10 +106387,Young Dirt Bike Rider,312221,1746886,40 +106388,S.J. Boynton,177190,128401,6 +106389,Luise Fellner,16436,22687,2 +106390,Bikini Customer (uncredited),323675,1769816,59 +106391,Boubou,50350,143405,5 +106392,,172004,10627,3 +106393,Tara,206197,1506490,28 +106394,Knuckles,250535,43547,10 +106395,Mel (as Kevin Blair),52021,64721,2 +106396,Tong Po,308529,543530,1 +106397,Peggy Jones / Sea Salt Sally (voice),13355,3202,6 +106398,Sandra,223946,219708,1 +106399,,115427,82364,3 +106400,,194853,112112,4 +106401,Lydia Leekens,61935,234568,3 +106402,Jenny,360606,1152083,0 +106403,BBW Member,167810,1390508,32 +106404,Malamadre,33273,16867,0 +106405,Jimmy,15043,148122,4 +106406,Beach Cop,83860,930216,2 +106407,Sandy Fawkes,8464,55153,1 +106408,Paramedic,10055,52708,8 +106409,Kip,147773,52997,8 +106410,Leah,253235,3092,1 +106411,Fukushima,402455,50659,28 +106412,Abby Hedley,28031,41293,4 +106413,Amy,139571,78080,0 +106414,Esther,376501,3713,3 +106415,Sonora Joe,80193,30264,9 +106416,la madre di Remigio,121516,1859974,9 +106417,Nurse (uncredited),33112,1271036,31 +106418,Himself,410718,1702112,11 +106419,Lori MacGregor,15081,29703,1 +106420,Rusty,141635,31268,1 +106421,Mei-Mei,57100,1089567,7 +106422,,124597,1176900,9 +106423,Gloriana,23750,90545,14 +106424,Angel,54700,58758,4 +106425,Jenny,8194,53938,9 +106426,Bufo's Goon (voice),116711,1214603,19 +106427,Ro-Zar,49521,11831,19 +106428,Angie Allan,201485,1183608,4 +106429,Sandy,109610,38565,7 +106430,,121530,1518857,9 +106431,Alberto,378087,1588416,5 +106432,Filch,42837,1417131,13 +106433,Juror,339994,1494790,24 +106434,Steve Logan,197737,78847,0 +106435,Yeshua,335778,7248,2 +106436,Jim Vincent,20028,85490,1 +106437,Stu Redman,13519,33,0 +106438,Jessie (voice),815,15887,3 +106439,Nurse,179826,1404696,28 +106440,Boyfriend (uncredited),15022,98658,43 +106441,Fisher,290656,1519978,2 +106442,Albertine Prine,108869,20124,4 +106443,Miles,44389,1219214,14 +106444,Grandjean,452142,2449,6 +106445,Larry,370234,559457,7 +106446,,85729,126863,7 +106447,Oscar's Teacher,73565,76850,16 +106448,Annette Langston,101669,54499,6 +106449,Felicia the Restaurant Manager,412209,1677241,8 +106450,Pedro,42502,96973,0 +106451,Roland,8588,55412,5 +106452,Arius,10999,6486,2 +106453,Mr. Horstadt,14750,1657358,16 +106454,Genviève Duval,21070,25178,3 +106455,Spencer Ludlow,157829,8785,5 +106456,Youko,23452,90135,6 +106457,Alena,16017,136806,3 +106458,Leyla,28062,99521,0 +106459,(voice),28090,16427,57 +106460,Julie Ross,101669,1470068,13 +106461,Lee Taylor,3574,33003,2 +106462,Harry Coombes,42448,40176,0 +106463,Savannah O'Neal / Emma Reynolds,84105,1223084,2 +106464,Christine Rivière,53404,5470,1 +106465,himself,6575,11059,15 +106466,Mr. Calvert,43369,45468,6 +106467,,143876,143627,7 +106468,Barry Drake,268350,118022,1 +106469,Capt. Imrie,38654,14955,10 +106470,Dora Bannister,40744,124518,3 +106471,Prinz,216647,1121269,4 +106472,Nancy Dooly,140489,62001,4 +106473,Hedda,56937,225809,0 +106474,Nic,39781,516,1 +106475,Carl Baumann,39407,31209,7 +106476,,418378,1432558,6 +106477,Maid Marian,115972,1066915,1 +106478,,124597,1675543,18 +106479,Mac,84336,2296,1 +106480,Business Woman (uncredited),337339,1545520,35 +106481,Byung-choon,15067,141541,3 +106482,Mia,369406,1538823,9 +106483,Bernard 'Lottsapopsa' Crow (uncredited),381737,1269611,24 +106484,L'homme à la moustache ('Le mariage'),98302,25182,8 +106485,Old Marjorie,17347,87677,5 +106486,Bunawar,180299,1379748,6 +106487,Poco,102668,1031786,17 +106488,Karen Lee,28363,51678,1 +106489,Reporter,921,10210,30 +106490,Myyntijohtaja Huttunen,62900,222321,20 +106491,Chief,17386,33299,12 +106492,Nicky / Victor,14979,1118,4 +106493,Leprechaun,6023,27107,19 +106494,Lia,315837,1359361,21 +106495,,97088,51017,11 +106496,,88285,119933,2 +106497,Kellaway,5965,6576,3 +106498,,155386,1136501,2 +106499,T.J.,14750,1345504,10 +106500,Fredrik Clinton,33613,92422,11 +106501,Police Sergeant,73027,21609,5 +106502,himself,254446,1175231,3 +106503,Секретарша Федяева,46010,86666,6 +106504,,46773,130997,5 +106505,Worker in McMasters' New York Office,55604,121323,7 +106506,Kanga (voice),24926,218139,5 +106507,Mrs. Farrell,167073,1702489,31 +106508,,85836,135030,10 +106509,Himself,253337,1046724,11 +106510,Pip (voice),70587,558924,18 +106511,Les,10710,95795,13 +106512,Executivo 1,448763,1405873,31 +106513,Lawrence Carter,13258,21662,11 +106514,Lee Umstetter,96333,1733,0 +106515,'Revolver' Richard,300983,85523,4 +106516,Reino,58416,4826,2 +106517,Short Round,46872,137581,7 +106518,Tim Kearney,10425,8167,0 +106519,Cindy,10999,13312,1 +106520,Kakubê,27276,2544,4 +106521,Baker's Boy,72984,1764694,9 +106522,Suzanne Walter (as Susan Douglas),118536,1056756,4 +106523,Peter Goodwin - 1861,118889,199468,9 +106524,Sgt. Larry Barrett,18512,4353,3 +106525,Stormtrooper,330459,1451088,90 +106526,War Chief,55534,222559,7 +106527,Countess Marina Selanova,74436,31844,1 +106528,Nikki,214086,516,0 +106529,Dijon,10837,20163,3 +106530,Capt. Rootes,67377,19463,3 +106531,Lug (voice),110416,83278,3 +106532,Big Kid,239566,1457272,46 +106533,Snowball (voice),815,7090,0 +106534,General Orland,324670,21089,5 +106535,Cyrus Kinnick,42023,12688,2 +106536,,172004,38909,6 +106537,Frau Jackson,31605,30226,2 +106538,Severiano Cagnato,20414,128462,4 +106539,Joan Alris Ellis,42325,85042,0 +106540,Frankenstein,2929,28973,2 +106541,Dobish,22998,62590,10 +106542,Crime Scene Officer,117942,544372,12 +106543,Additional Voices,110416,1795548,13 +106544,Boucher,26152,146497,21 +106545,Inspector Shinde,16987,85684,5 +106546,Himself,68721,1735539,18 +106547,Elder #1,10008,649,4 +106548,,12449,1149324,13 +106549,Prince Chulalongkorn (as a boy),43471,94335,8 +106550,Bosley Gravel,14262,76501,10 +106551,Pedro,13596,205586,15 +106552,Lodac,26643,8727,0 +106553,Amber,68750,27136,7 +106554,Roberto,193641,1031959,7 +106555,Singer,44190,130421,9 +106556,Harry,103332,61659,2 +106557,Sanity Hearing Doctor (uncredited),20644,2782,20 +106558,Dr. Atcheson,27137,83227,2 +106559,Young Boris,202214,563728,2 +106560,Older Peggy,339419,1650165,24 +106561,Pasquale Bianchi,105509,132194,1 +106562,Shete,150223,1665928,3 +106563,Bea,38328,67178,4 +106564,The Rector,121848,99217,10 +106565,Ducky,24556,91022,2 +106566,Detective Lester Ybarra,3580,50217,9 +106567,Shinkichi,73043,580204,6 +106568,Himself,390747,1662628,7 +106569,Hardquanone,151826,234921,4 +106570,,348315,1286813,10 +106571,Louis,37779,118510,3 +106572,Rene Benton,48841,91029,7 +106573,Chugtai Khan,14073,129726,4 +106574,Gagan's Henchman,197737,1422864,23 +106575,,72054,1439240,18 +106576,Elaine,68347,1384193,14 +106577,Huckleberry Finn,74705,235959,1 +106578,Michael,43759,130003,4 +106579,Oscar Schlemmer,112083,34758,4 +106580,Ramel Johnson,336775,1429453,15 +106581,Sheriff Steve Upton,59882,1009,0 +106582,General Hasegawa,616,9192,9 +106583,Harry Silver,24062,4966,4 +106584,Jim,45132,1237281,18 +106585,Colonel Robinson,34944,4114,2 +106586,Fran Walker,24801,29384,4 +106587,Stanley Pillsbury,227306,212730,22 +106588,Timothy,69075,56366,4 +106589,Agnes/The Witch,165864,6684,2 +106590,Narrator (voice),31275,1853898,23 +106591,Konrad,11626,70069,3 +106592,Vivienne,18595,1597383,5 +106593,Yehezkel,287483,74604,1 +106594,Stewart Carter Winthrop III / Ghoul,16234,19975,11 +106595,Agnieszkas Vater,224,2819,10 +106596,Klappmesser Junge,2349,24065,12 +106597,Pete - a Father,14589,34610,83 +106598,Elizabeth Barry,7548,2206,1 +106599,George Babson,73348,95563,9 +106600,FBI Agent (uncredited),263115,1670753,103 +106601,Carsten,239619,28432,2 +106602,Nurse Janet,417678,173001,11 +106603,Ángel,76333,114461,3 +106604,Andy,39213,239996,5 +106605,Elizabeth Matthews,86920,32913,1 +106606,Denali,333484,154778,11 +106607,Luigi Coppia,42436,78535,2 +106608,Lady / Bernadette,24363,4237,6 +106609,Federal Agent,11338,62019,14 +106610,Sasquatch Sid Tucker,73933,41256,1 +106611,Wife of The Kindly Neighbor (uncredited),3059,1647625,96 +106612,Sofie,16032,202572,5 +106613,Raja's Mother,170838,78248,5 +106614,Prinzessin Larissa,268712,55523,10 +106615,Minister,68387,169751,29 +106616,Taya,79611,587624,5 +106617,Taylor Sloane,411741,550843,1 +106618,Scarlet,369885,1698109,28 +106619,Sir Arthur Sullivan,80596,39055,39 +106620,Takeo Saeki,11838,216330,31 +106621,Adam Crane,17332,81698,4 +106622,Jacko,27381,21385,6 +106623,Clayton,18843,204419,6 +106624,Billy Bonney,111470,82216,0 +106625,Pavi Largo,14353,76693,6 +106626,Mr. Sine,181876,11130,5 +106627,Southerner,118889,30017,13 +106628,Lucía,98582,1103796,9 +106629,Gérard Delmas - un docker hanté par le suicide de sa soeur,47489,16927,0 +106630,Jen's Friend,257447,1617485,25 +106631,The Aerialist,94352,1067238,1 +106632,Carol,85350,994257,21 +106633,Nurse,208529,174254,8 +106634,,420648,66816,7 +106635,Jean-Etienne Fougerole,430365,28781,1 +106636,Chory the Mathematician,154575,1486941,3 +106637,Mrs. Casey (uncredited),43522,2934,29 +106638,Merman [Vodyanoy] (voice),72204,1189304,4 +106639,Babyland Salesgirl,34806,112052,11 +106640,Delivery Boy,11364,15344,15 +106641,Herself - at Banquet (archive footage) (uncredited),33740,39554,84 +106642,Highway Angel,95177,74133,5 +106643,Adult Quill,49258,238807,8 +106644,Kazar (voice),9904,1748,4 +106645,Luis,103597,78882,4 +106646,Aunt,80080,1369281,3 +106647,Preacher,44140,130336,13 +106648,Dr. Samuel Loomis,24150,56890,5 +106649,Frank Redmond (Carvel Newspaper Owner),116232,107684,5 +106650,Isabel,359105,1052351,2 +106651,Joe,341957,932313,4 +106652,Zac,395982,1473776,10 +106653,Agent Hotchkiss,15527,57167,5 +106654,Frenchman (uncredited),32552,1159359,18 +106655,Mama Saulino,37083,110539,3 +106656,Christo,119816,8206,2 +106657,,152948,1290497,3 +106658,Karsten,10119,63753,6 +106659,Mr. Snerz (voice),27300,141,5 +106660,Beach Guy,77930,1309904,83 +106661,Zeus' Chauffeur,310135,1716344,35 +106662,Graduate Student,381008,1589604,17 +106663,Col. Paul Foster,267497,10463,2 +106664,Marcus,75204,574143,6 +106665,Lyusya,148622,278141,4 +106666,Mr. Bannerjee,115109,24820,6 +106667,Grandmother,112244,123858,8 +106668,Sam Barstowe,89647,148440,5 +106669,Gary the Bartender,9675,17837,11 +106670,Paul,298584,1272291,0 +106671,Manhugger / Lout #1,267935,23429,13 +106672,Captain Stagg,399790,1102427,10 +106673,Aist's Mother,51276,1638426,6 +106674,Ultron (voice),99861,13548,6 +106675,Sgt. Pete Sadler,14878,82126,5 +106676,Marcie (voice),227973,1393185,13 +106677,Ambulance Man,91628,1263405,10 +106678,Cousin Freddy,277688,29795,12 +106679,Tony,52661,161356,5 +106680,Bedford College Representative,157343,590550,39 +106681,Unelma Säleikkö,62900,116163,6 +106682,Gabriels Vater,407,5599,8 +106683,Jamie,114444,1068698,0 +106684,Keren,6391,55056,10 +106685,Neighbor,108712,1491367,5 +106686,Effie White,1125,15565,4 +106687,Kresten Jensen,266285,1180793,10 +106688,Struther,30708,58495,6 +106689,2nd Agent,4893,140169,14 +106690,Logunov,126523,544586,4 +106691,"Nola Mason, bar waitress",28775,83987,8 +106692,Braulio (voice),146381,22,11 +106693,Leo,35110,113739,6 +106694,Sheldon,44415,1176972,14 +106695,Female Porn Star #3,15092,1895601,53 +106696,Victor,240733,73040,5 +106697,Gerhard als junger Mann,167424,1822712,30 +106698,Theresa,7916,153849,8 +106699,Aditya/Drona,19623,35793,0 +106700,Christine,335141,16921,2 +106701,Simone,24363,1218160,9 +106702,"(segment ""Yuki-Onna"")",30959,97629,18 +106703,Buchanan's car (voice),3072,103582,11 +106704,Thomas,52520,4391,5 +106705,Burly Cocks,149926,8258,3 +106706,Padeen,8619,43299,23 +106707,Orson Welles,50008,23626,0 +106708,Italian Desk Cop,8247,27427,14 +106709,West Indies Club Headwaiter,14589,56924,71 +106710,Bai Ling,844,1339,1 +106711,Belle Duke,38362,14262,2 +106712,Federico,167935,1149644,2 +106713,Edward,81522,120613,14 +106714,Bipin,21567,101858,6 +106715,Techie Guy,6877,10872,9 +106716,Shane,277558,52414,3 +106717,Boss Man,10070,11804,17 +106718,Pierre Massu,72278,45152,2 +106719,The Barmaid,65874,565335,4 +106720,James' Mum,199575,75710,8 +106721,Artur,449131,29839,5 +106722,Mrs. Haggerty,875,13344,6 +106723,Ivan Prikhodko,107705,86664,1 +106724,Dr. Lane - S.S. Bellocona,176627,131046,9 +106725,Ivy London,59838,94343,2 +106726,G,64784,144773,6 +106727,Brooke,82520,928135,7 +106728,Bully 2,85350,1467914,31 +106729,Puss In Boots (voice),809,3131,4 +106730,Emma Gould,259695,23459,4 +106731,Stanley the Fisherman,40466,1760118,12 +106732,Eric,429200,1879647,11 +106733,Blue (voice),217057,76669,8 +106734,Leonardo,107443,105633,0 +106735,Sonja,114931,1351918,1 +106736,Himself,86284,177434,5 +106737,Andrej,47900,1179610,0 +106738,Happy's Nurse,68721,1735541,27 +106739,Cheela,84708,52178,9 +106740,Prof. Jerusalem Webster Stiles,65488,121003,3 +106741,Chelsea Cunningham,16234,38581,14 +106742,Dokter Verbeke,12135,88806,6 +106743,Det. Pope,45726,93899,12 +106744,Jenny,333091,1577151,10 +106745,Gene Harbrough,14750,117148,3 +106746,Viral,20986,90137,4 +106747,Yoshizô,137504,1449314,8 +106748,Kyung-Su,18704,70338,3 +106749,Lyle (voice),9948,60736,4 +106750,Monica Reeves,317198,54722,1 +106751,General Carlos Ibáñez del Campo,325385,1058071,9 +106752,Gordy Gambhir,206197,53493,4 +106753,Celia,85442,132719,12 +106754,Han Moon-ho's father,108972,564862,7 +106755,Chad,18440,133387,1 +106756,Fei Jai,155397,62410,0 +106757,Céline,7288,38425,3 +106758,Luisa,443319,1431805,9 +106759,Hr. Holm,21282,1077851,5 +106760,Bobik (voice),72199,86680,0 +106761,Shizuo Kugitani,36175,128481,2 +106762,Ferruccio,47959,651165,14 +106763,Domino Player,9812,4605,16 +106764,Viv,73501,101396,8 +106765,Murray,142061,105641,9 +106766,Sebastian,70712,58982,1 +106767,Le caporal Perrin,31344,54138,3 +106768,Carlos,332567,59129,1 +106769,Village chief,345888,141548,3 +106770,Herself,284296,109560,21 +106771,Madge McCloud,1790,19109,1 +106772,Showgirl (uncredited),25633,127638,15 +106773,Hot Bachelorette,193893,1205578,41 +106774,Thomas,8383,130913,1 +106775,Diner at Bar of Justice Restaurant,47739,121323,18 +106776,One Eyed Lucas,333484,1655442,41 +106777,Gonzo / Dr. Bunsen Honeydew / Zoot / Beauregard / Waldorf / Kermit Moopet (voice),64328,64181,19 +106778,Macduff Child 3,225728,1675329,25 +106779,Special Appearance,49028,545520,17 +106780,Theatre Actor,245700,1798370,55 +106781,Walton S. Gayson,321039,63566,12 +106782,Young Mickey Moran,32610,1471388,22 +106783,Mam,328589,10735,3 +106784,Nickoloff / King Nephiliu,104430,128324,2 +106785,Lee,10433,1907,5 +106786,Carlo,58400,88469,0 +106787,Sue,31919,102453,3 +106788,Joe Cvetic,49508,78309,6 +106789,George,26264,94976,0 +106790,Nubian,24973,1747686,56 +106791,Woody,213121,31,0 +106792,Vitria,174645,1157598,15 +106793,Galba,4948,5567,4 +106794,Prairie View Professor,14047,1392608,37 +106795,Norman Rhodes,371181,148125,3 +106796,Lee Wilson,43855,1018117,17 +106797,Wizard of Oz,47508,89603,2 +106798,Megan Wyatt,64183,194896,3 +106799,Samantha,310126,78679,7 +106800,Richard (uncredited),19995,1207278,62 +106801,Ladrón,45191,1700247,11 +106802,Smiley,24775,8396,6 +106803,Kirsty,89481,937273,7 +106804,Florence Richemont,160160,40938,1 +106805,Mélissa,59118,133503,14 +106806,Pvt Speedy,51426,50571,9 +106807,Osvaldo,419522,229571,14 +106808,Louise,263873,124786,5 +106809,FBI Agent Doug Tate,44945,76512,3 +106810,Priscilla,13477,152759,9 +106811,Fasil,50374,128926,5 +106812,Charlotte,180305,76416,6 +106813,Losada,82485,6195,2 +106814,Женя,30619,106594,6 +106815,Wong Wing-Nam,26005,130508,10 +106816,Ugo Ongaro,187737,543560,2 +106817,Essie,36612,590532,17 +106818,Jonah Pope,171581,2203,1 +106819,Bacco,26983,95223,5 +106820,Bea Haddington,226354,72305,2 +106821,Vänrikki Nappula,55754,223073,2 +106822,Willmund,294483,44516,6 +106823,Engineer,1726,214951,36 +106824,Himself,180813,1168086,0 +106825,Mr. Murfin,37451,85935,5 +106826,Twin Girl 1,351065,1827513,21 +106827,Ophelia,106848,20116,5 +106828,Detective Beaumont,237584,37046,7 +106829,Delbert Radley,65280,418,2 +106830,Steve Wozniak,115782,54415,4 +106831,Doctor,26005,130507,9 +106832,Rudolf Brenner,248933,1180738,10 +106833,Guardian Tokyo Joe,256962,1464793,52 +106834,Bailiff Two,121674,19704,30 +106835,Mickey,10917,141050,11 +106836,British Scientist,2966,1521625,17 +106837,Mme Voisin,55370,9745,17 +106838,Mr. X hoodmember,86497,244278,6 +106839,Gianni Malloni,335051,131630,5 +106840,Young Oliver,9639,58259,3 +106841,Marie-Jeanne Gagnon (12 ans),16147,79610,6 +106842,Pförtner,10645,36709,6 +106843,Capitani Michele Rossi,34449,22383,5 +106844,The Seminole,149600,66585,5 +106845,Willard Dorsett,27138,46099,7 +106846,Schoolgirl,29161,104090,17 +106847,Pentagon Tour Guide,127585,147892,40 +106848,Lady Lorradaile,38602,10653,6 +106849,Commissioner Dixon,30993,1200827,8 +106850,Ron Stoppable (voice),51786,76621,1 +106851,Camera,52728,1624329,10 +106852,Detective,213681,1406450,11 +106853,Ulla,9899,139,1 +106854,Ambassador Kiyoshi,315837,1088913,20 +106855,Ollokot,28323,161147,4 +106856,Mia Grey,341174,1089873,5 +106857,,11330,1444517,22 +106858,Pastor Krause,45610,1125219,13 +106859,Casta,122525,1173615,5 +106860,,55167,1384989,12 +106861,,44442,107517,1 +106862,The Stranger,5646,44581,0 +106863,Waitress,181574,1489666,10 +106864,Officer (uncredited),16442,34084,51 +106865,Jerry Schilling,301348,61363,2 +106866,Mr. Allen,168022,75986,6 +106867,Dead Pilot,293167,1840497,28 +106868,Capocommesso dei Grandi Magazzini,50531,119355,7 +106869,Silas,301875,3292,0 +106870,Rusty,23515,1440858,10 +106871,George,47186,164525,3 +106872,,172008,1182597,12 +106873,Franny (voice),1267,16845,3 +106874,Irene,61950,23621,5 +106875,Partygast,1912,46313,24 +106876,Black & White Hen (voice),18843,155754,24 +106877,Producer Peter,131799,145601,11 +106878,Holly,201085,39659,5 +106879,Hélène,79034,4390,2 +106880,Chibiabos (as Gene Iglesias),238985,130346,5 +106881,Mahmut,4887,40023,6 +106882,Vivian,69,417,2 +106883,Jody,18088,11110,2 +106884,,194853,1175189,3 +106885,Dotty Davis (as The Merry Macs),33541,1423927,8 +106886,,428645,1717350,8 +106887,Polly / Narrator (voice),197725,1981,1 +106888,Second Lieutenant Triantafillos,53128,994412,1 +106889,Mrs Vanderbilt,315664,201335,19 +106890,Eva Pastorek,48118,178608,9 +106891,,199887,18313,5 +106892,Emile Aubel,18651,19552,7 +106893,Thumb,383618,82332,9 +106894,"Виктория Александровна, спутница Эммануила Гедеоновича",20963,572690,18 +106895,May,297702,82662,4 +106896,Cameo McQueen (uncredited),17820,34437,12 +106897,Burser - Edinburgh,58,10960,24 +106898,Ouvrier Forestier,39358,20668,5 +106899,Vincent Van Gogh,78174,77860,0 +106900,,51549,1247954,18 +106901,Christine,76115,577640,1 +106902,Journalist (uncredited),50012,4897,9 +106903,Inspector Porfiry,43891,30211,0 +106904,Ch'p (voice),17445,78619,10 +106905,Dale Burrows,91333,55588,14 +106906,Burly Detective,127812,121412,46 +106907,Louie,113178,168423,5 +106908,Herr Mon,10645,1083,3 +106909,Bob Chandler,283384,186502,23 +106910,Moorthy,20507,86245,5 +106911,Peggy / Piggy / Constable Ho Ka Po,37984,56861,2 +106912,Eleanor Poulgrain,15935,75893,9 +106913,'We Are Naked' Girlfriend,5759,1741922,7 +106914,Juan Gallardo,95134,116367,0 +106915,Tami Maida,142216,9994,0 +106916,The Last Traveler (uncredited),87123,1017631,18 +106917,Donovan,86920,39601,0 +106918,Zhou Enlai,25626,589911,8 +106919,Billy Bickle,86838,6807,1 +106920,Cadáver Vin,31022,1068684,1 +106921,Jim,85350,144077,33 +106922,Vanessa Bloome,5559,9137,1 +106923,Blandine,17630,84430,4 +106924,Leslie Steele / Lady Claire Mere,43850,30225,0 +106925,La moglie di Brena,31542,1757136,18 +106926,Police Officer,56816,1158489,6 +106927,Latisha,44877,230176,9 +106928,Hacker,42206,2742,8 +106929,Alicia Warlock / The Chambermaid,315855,235125,17 +106930,Rafael Lascurain,264525,283391,22 +106931,Martin Ward,417489,10132,2 +106932,Ann Dempster,46190,14974,1 +106933,King,26643,1045385,6 +106934,Big Gun,9474,558739,14 +106935,Ed,82929,164103,5 +106936,Klansman,377587,81149,11 +106937,Murray Crown,38546,74036,6 +106938,Morgue Attendant,216156,75076,8 +106939,Dr. Emery Forrest,44545,131272,9 +106940,Ed Saxon,32166,8447,0 +106941,Helene Reich,72421,1182494,2 +106942,Muhtar,452606,590781,4 +106943,Headmistress,218425,47570,11 +106944,Nakia,308639,37153,3 +106945,Bobby The Jeweler,443053,1764364,11 +106946,Jackie,127728,1085654,2 +106947,Carolyn,14126,77271,1 +106948,Noor,376047,142626,2 +106949,Football Jock,9785,59246,19 +106950,Sister Sue,202941,7210,8 +106951,Anguirus,19336,1488356,17 +106952,Albin Mercier,101183,229382,0 +106953,Marsh,27381,3041,9 +106954,Agent Sat,98277,1017267,19 +106955,Showroom Customer (uncredited),337339,1636793,30 +106956,Amy,289190,1357752,1 +106957,"Defeated ""Blob""",246655,1796388,29 +106958,Vincent,30778,86204,1 +106959,Munna,80539,1291761,9 +106960,Donald,74430,1821545,15 +106961,Il padre della famiglia amica di Mario (uncredited),43231,1127355,16 +106962,Silke,9572,57998,3 +106963,Rebecca,180305,1518,3 +106964,Harold Baker,34652,12311,3 +106965,,38269,1818056,28 +106966,Second Priest of Bel (uncredited),3059,8839,68 +106967,Gonzalo,131194,31321,6 +106968,Mme Temple,72375,583328,8 +106969,Grace Cahill,7445,524,2 +106970,Doctor #1,773,4857,11 +106971,Tom,318553,1555131,13 +106972,Ferry Skipper,35052,1089573,11 +106973,Michael Donovan,18070,95639,3 +106974,Killer #2,109213,1610500,8 +106975,Victor,334299,1508677,10 +106976,Zimmerwirtin,2349,24067,14 +106977,Bartender (uncredited),14615,1467478,103 +106978,Swiggers,298396,82420,7 +106979,Georges,96419,1430906,3 +106980,Tien,43209,57207,0 +106981,Dad Pettyjohn,52362,95315,7 +106982,,127257,66959,4 +106983,Lille Muhammed,11330,69022,2 +106984,Himself,376394,241,2 +106985,Kay Wilson,92848,14870,4 +106986,,359807,1427074,12 +106987,Robert Anderson,53459,939,0 +106988,Martin Price,59965,20212,7 +106989,Un giovinastro (uncredited),43231,1385763,18 +106990,Delante,38322,1869029,15 +106991,Doctor Jones,408272,19152,3 +106992,Mrs. Hannah Malik,41131,125554,2 +106993,Sawako,870,13249,0 +106994,Toufik,74666,1617451,4 +106995,Theatre Audience,118943,29950,3 +106996,,11196,1439294,13 +106997,Paciocchi,79506,120637,0 +106998,Yong-su Kim,21966,646797,14 +106999,Jigura (voice),70322,111965,16 +107000,,63215,1461660,26 +107001,The Mechanic,305127,1350267,1 +107002,,51267,143625,7 +107003,Dr. John Bachman,22076,4002,13 +107004,Stanley,79316,205287,13 +107005,Young Nikki,76785,1477060,10 +107006,Ältester im Zeltlager # 1,2734,27674,53 +107007,Nora Hutcheson,36334,10539,2 +107008,,126315,1096783,4 +107009,George,5494,17648,0 +107010,Lois Lane,95414,560295,5 +107011,Bartender,41171,1392752,33 +107012,Alexander Schneider,41619,23116,12 +107013,Dende,126963,144650,17 +107014,Bateman,7515,976,3 +107015,Mims,359412,51670,8 +107016,Seamus,21214,31515,6 +107017,Tom Ortega,227700,110424,7 +107018,Rosa,26469,1216155,6 +107019,Student,277710,119400,29 +107020,Father,193893,97845,32 +107021,Tailor (uncredited),188468,128401,19 +107022,Herself,43514,8725,3 +107023,Jusu,186292,1567008,4 +107024,"Vincenzo Moretto, 'Il gobbo'",52808,21708,1 +107025,,1838,1441404,27 +107026,Kingsley Guy,45243,142373,18 +107027,Cho Osaki,17386,99846,0 +107028,Dana 'Dinky' Barb,196257,52030,2 +107029,Alex,9900,20818,1 +107030,The Runner,116979,1088405,14 +107031,Benny the Blood (as Joseph Turkel),184328,592,8 +107032,Mr. Runyan,43829,89999,6 +107033,Margalida,1896,19819,4 +107034,,412202,135436,9 +107035,Jacob,185111,1031174,4 +107036,Bianca Valerio,214129,1611025,19 +107037,Shalu,170838,35810,2 +107038,Neighbor,7014,51840,3 +107039,Cpl. Quinbury (uncredited),28000,32494,31 +107040,Honório,117534,84149,1 +107041,Bantee,413882,1758516,6 +107042,Parking Attendant,47878,124603,9 +107043,Frank,20312,55568,14 +107044,Mrs. Forrester,202241,15250,8 +107045,Jesus,12182,52480,11 +107046,Maya Robenowitz,52314,145753,2 +107047,Akibo,30139,73831,2 +107048,,72592,1112406,10 +107049,Taxi Driver,92496,1794804,18 +107050,Banov,337758,1500637,12 +107051,Boy,228108,1185799,7 +107052,Claus,44716,4455,2 +107053,Aglaia,93492,66677,1 +107054,Dirk,12135,1170462,3 +107055,Laidychen,109391,1126219,2 +107056,Dolores,8457,4494,9 +107057,Jake Barrymore,65509,62856,1 +107058,Lady #1,256962,1819145,74 +107059,Nikki,302042,1133027,12 +107060,Parade Announcer,1550,1594617,18 +107061,"Guglielmo, un signore eccentrico",71133,55134,2 +107062,,211233,222326,1 +107063,Randy,62838,18976,2 +107064,Vixen Palmer,5721,45099,0 +107065,Tomb Robber,68737,1061054,16 +107066,Suzie,74505,1629923,4 +107067,Gingerdead Man (voice),110588,81460,10 +107068,Zweli Mangena,76264,57096,4 +107069,Paul Porter,97829,103051,6 +107070,,334298,1621706,14 +107071,Kimiko,2029,1866709,11 +107072,Bumpy,152570,30236,5 +107073,Ray Blent,86297,7301,1 +107074,Heart Eyes (voice),378236,1215651,29 +107075,Sir Winston Chamberlain,120837,89501,6 +107076,Randy,13090,29020,7 +107077,,57438,226185,23 +107078,Craig Mackenzie,112304,2224,0 +107079,Joe Perry,4551,235984,21 +107080,Francis Barrucq,33489,26887,3 +107081,,64784,1242017,12 +107082,Young shepherd,42225,1002715,4 +107083,Doctor,154441,1640385,12 +107084,Doutor Penna,27457,8568,2 +107085,Philippe Cousteau (enfant),332794,1774430,12 +107086,Albany,46915,135180,11 +107087,Turtles Run,1579,17682,9 +107088,Chang,56150,95014,3 +107089,Miranda,290762,14061,3 +107090,Doug,45156,101017,12 +107091,Vacuum Fat,165718,1276792,4 +107092,William Messerman,18208,116295,2 +107093,Chef (voice),136799,11870,16 +107094,John Dillinger,35926,95082,3 +107095,Henchman,39276,30475,9 +107096,Cantante,78340,1163662,14 +107097,Donna Remar,2355,9825,4 +107098,Officer Slim,381645,45054,18 +107099,Nina Brewster,12085,15758,1 +107100,Betty Boop,161885,1123199,1 +107101,Fire Dancer,243683,1398064,42 +107102,Grocery Clerk,23397,97695,9 +107103,Newscaster (voice),123025,34521,6 +107104,Sensei,85602,4963,6 +107105,Abby,18585,328,0 +107106,,67375,555888,47 +107107,Donnie,79836,124685,7 +107108,Man at Club (uncredited),17136,1005423,19 +107109,Josh,259694,85139,3 +107110,Robin / Jason Todd (voice),40662,188024,13 +107111,,438144,813,1 +107112,Jenny Braddock,35977,41273,1 +107113,First landlady,170234,13344,3 +107114,Agent Chase,359412,1042684,5 +107115,,121173,1185130,8 +107116,Mr. Goldmeyer,311764,71403,5 +107117,Guruvayya,80539,565890,6 +107118,Marc,429838,1734255,11 +107119,Principal Duvall,51481,51857,3 +107120,Mr. Yorkes,345918,1655618,13 +107121,Star,337,6553,8 +107122,Claudine,7942,53367,8 +107123,Mr. Cooper,45874,131229,8 +107124,Dr. Pike,16080,117491,8 +107125,,364833,87411,5 +107126,Mona's Kid (7 yrs),34806,1257205,14 +107127,Char Aznable (Casval Rem Daikun),39230,90561,1 +107128,,418378,1156086,9 +107129,Steffi,171873,233680,1 +107130,,329227,141678,2 +107131,,28482,1396499,12 +107132,Young Lauren Daly,266425,1313138,11 +107133,Mariel Garza,51823,11150,7 +107134,Mieke,9352,946090,6 +107135,Jon,332979,101165,7 +107136,Dr. Daisuke Serizawa,12561,30568,9 +107137,Robert Lawrence,121154,5472,0 +107138,Herself,15258,89784,20 +107139,Ken (voice),44874,101247,1 +107140,Bobby Ray,21950,62036,2 +107141,Eve,95015,1544025,6 +107142,Hardvendel,48791,207,8 +107143,Sheriff Deacon Whit,257444,32029,5 +107144,Justice Bailey,86643,100787,1 +107145,General Devi Das Gadi,184267,128326,3 +107146,Carmen Miranda,106821,137907,9 +107147,Ma Wyatt,61985,121060,6 +107148,Faban (voice),16962,63797,0 +107149,Marie-Amélina Cyr,209293,1096277,10 +107150,Trainor,19010,11366,0 +107151,Slit,76341,1056053,4 +107152,Banat,200331,6972,3 +107153,Dilys Parry,87060,1269540,4 +107154,Molly,106136,120248,2 +107155,Tugarin (The Snake) (voice),33065,108107,9 +107156,Wang Jingwei,76349,1050324,10 +107157,Elwood,31146,1841255,12 +107158,Sofie's Father,274990,38127,3 +107159,Dr. Lisa Benson,29290,9921,1 +107160,Bootsy,239566,1457290,62 +107161,Miss Ulricks (uncredited),121003,229663,12 +107162,Iago,44006,6637,3 +107163,Georges Antoine,55370,35253,13 +107164,Henchman,26502,111827,8 +107165,Orsten Artis,9918,60506,8 +107166,Richard,268712,17565,8 +107167,Hugh,365753,99235,1 +107168,Himself,253309,1408695,2 +107169,Madeleine Forestier,118536,13353,2 +107170,Anis Naccache ('Khalid'),43434,53435,8 +107171,Slim Perkins,133255,998687,2 +107172,Melinda,340881,444211,9 +107173,Waifs' uncle,125673,29959,1 +107174,Wade Richardson,9918,41019,13 +107175,Jimmie Trescott,199155,225401,4 +107176,Actor in Show,132928,29274,38 +107177,Karins Mor,55612,222729,10 +107178,V.P. Bill Richards,212713,19782,7 +107179,,14537,1132436,13 +107180,Psychologist,430826,1544834,59 +107181,Guru Shanti,28325,33807,3 +107182,Acki,272426,37246,3 +107183,Dance Leader,356191,1549818,16 +107184,,15776,1071484,21 +107185,Commissioner Nicastro,58080,24689,3 +107186,El acaparador,195522,1175906,1 +107187,Christine,56653,1469924,3 +107188,Nora Greene,82654,124644,2 +107189,Dennis Mitchell,13358,206928,0 +107190,Herself,27637,52330,1 +107191,Weldon Emmett,52867,13640,5 +107192,Waiter Antonio,37710,141114,27 +107193,Clips from 1951 version of 'Show Boat' and 'Toast of New Orleans' (archive footage),33740,82407,33 +107194,Sierra,15092,1895588,31 +107195,Tommy Tomohawk,381645,1636796,26 +107196,General Abrams,2397,24520,4 +107197,Bernd,268712,1241195,9 +107198,Florence 'Flip' Carson Merrick,77964,34442,2 +107199,Mother Frump,107596,1949,5 +107200,Zora la rouge,42206,45195,1 +107201,Deirdre,212756,1296187,6 +107202,Prokurist Knell,10626,133936,15 +107203,Aunt Nicole,44945,935277,16 +107204,Lee,47410,138875,5 +107205,Pilot's Girl #1,34459,1858716,6 +107206,Fitzpatrick,56151,14688,6 +107207,Mrs. Zelma La Claire,228647,119898,6 +107208,Radar Operator,54801,1481300,12 +107209,Lorella,186630,946144,4 +107210,Doorkeeper,96724,1563431,49 +107211,Narrator,53223,556943,0 +107212,Tea Drinker #1,16175,79904,10 +107213,Killer,256347,30710,10 +107214,Calvo,33107,1458391,4 +107215,Aldolpho Rollo,52936,884,0 +107216,Gary Underwood,94568,15013,4 +107217,Alisa,340224,89109,4 +107218,Kostya,71381,101436,3 +107219,,384373,1581983,4 +107220,Erol,273404,9640,1 +107221,Arkady,65142,240326,8 +107222,L.H. Degado - Chief Thug [Ch. 5],170936,34811,11 +107223,Rod,98094,1499901,8 +107224,,329206,56861,4 +107225,Padre Inaxio,236737,1014909,5 +107226,"Manfred "" Fred "" Grabowski",2169,22184,0 +107227,Brothel Keeper,245700,1278494,43 +107228,Scott,347127,1467219,5 +107229,Pall Bearer,71503,563112,34 +107230,Monsoon Iyer,20296,81982,5 +107231,Florencia,104431,1036282,0 +107232,Ariana,277237,1027457,4 +107233,Nelsa,5618,131981,8 +107234,"Swede, an American soldier",8429,54936,7 +107235,Sergie,19996,85420,9 +107236,Ryou Yuuki,35435,78402,11 +107237,Angie,180759,1213838,5 +107238,Mark,356842,97417,5 +107239,Palmisan,85038,227847,7 +107240,James McGregor,43913,6952,0 +107241,French Teacher,13258,93493,7 +107242,Tyson,338312,1462232,4 +107243,,110001,1696395,38 +107244,Robban / All the Guests,38789,74699,0 +107245,Adam Flayman,5559,4756,3 +107246,Hannah Montgomery,126550,41240,1 +107247,Guards,310135,1501949,43 +107248,Deputy Tottif,103432,33060,4 +107249,Wenche,285181,589175,7 +107250,Jesse James,83354,9208,0 +107251,The General,5516,21629,4 +107252,,314285,1441919,10 +107253,National Guardsman,340275,1531622,68 +107254,Lance Cpl. Harold James Trombley,54102,117167,6 +107255,Policeman 4,66113,543112,12 +107256,Anchorwoman,15414,59148,11 +107257,Warrant Officer Roberts,407448,1367847,21 +107258,Lt. Dave Andrews,26283,30290,1 +107259,A400M Pilot,177677,1502365,11 +107260,Lorn Warfield,27105,3381,0 +107261,Sheriff,248706,15992,5 +107262,La femme aux diamants,11540,1528969,8 +107263,Ducos,75142,20285,5 +107264,Dustin Lauderbach,8669,168750,39 +107265,Mrs. Barker,239519,200505,5 +107266,Chiara,315319,44648,3 +107267,Teuro Tohyama,25659,79460,0 +107268,Madre di Matteo,378570,134541,7 +107269,Mark Shepard,62132,1417566,2 +107270,Mia,70586,20381,14 +107271,Man at Bar (uncredited),59828,133277,11 +107272,Sophie,8049,53667,9 +107273,Black Rose,42552,128191,3 +107274,Mulligan,96702,9091,9 +107275,Jackson,193893,80618,12 +107276,Darius III,1966,135142,26 +107277,"(segment ""Miminashi Hôichi no hanashi"")",30959,136882,49 +107278,Tooth Fairy,53953,200753,13 +107279,Hernandez,94182,981271,14 +107280,David Barnes,21481,87575,8 +107281,Mr Champion,149926,1220003,23 +107282,George,28482,100913,7 +107283,Drummer in Band at The Boiler,288521,57329,15 +107284,Toni,40660,124260,1 +107285,Le Mexicain Cellule,10870,22306,10 +107286,Minister,371645,55934,12 +107287,Ace,102222,1172814,4 +107288,,116857,29950,4 +107289,Otilia,2009,20699,0 +107290,Guy in Shower,27814,1096093,7 +107291,Sonar Chief,18015,1291805,7 +107292,Detective,66175,8233,9 +107293,Comdr. DeVriess,10178,19414,7 +107294,Ваня,332512,1457204,6 +107295,Art (voice),62211,95101,9 +107296,Jim Stevens,30361,64825,0 +107297,Carol Richmond,32195,65471,3 +107298,Megan Mills,239018,56128,0 +107299,Chicago Pedestrian (uncredited),76757,1394360,63 +107300,Vescovo,161545,73873,19 +107301,Eddie,79935,588333,9 +107302,Candy Carson,22683,53923,2 +107303,Brutus Jones,43594,98568,0 +107304,Mark,95919,993943,4 +107305,Lt. Larry Ringwald,15982,9979,4 +107306,Adam,214,2128,7 +107307,Fran Hansen,199373,169337,5 +107308,Jackie,246741,1286797,6 +107309,Fred (The Great Waldo),43497,142590,5 +107310,,441728,56100,7 +107311,The Salesman,63317,1083498,7 +107312,Casino Floor Manager,17258,1869995,35 +107313,Mimi,29083,921,2 +107314,Freddie Linley,43470,2436,4 +107315,Man in Saloon,111470,34168,30 +107316,Young Jake Lever,52221,1190668,10 +107317,Blanche,166883,100033,15 +107318,David,358724,1584420,5 +107319,Photographer,179066,105454,59 +107320,Peter,41619,5796,7 +107321,Burnett,273481,1240490,12 +107322,French Landlady,18651,120778,36 +107323,Lila,25953,34437,0 +107324,Assistant - Sophie,244786,159366,5 +107325,Cop #1,134201,1391055,21 +107326,Emergency Medical Tech. (uncredited),44943,1205883,37 +107327,Bekçi Kolombo,452606,97273,6 +107328,Fish,25694,1509,2 +107329,Lumberjack,79329,586546,24 +107330,Jean-Claude Dus,21435,21175,1 +107331,Dubocage,45184,30417,10 +107332,Saiki's mother,88271,145250,9 +107333,Clare,403431,6194,1 +107334,Hillevi,49940,112867,2 +107335,Carson,244534,139135,3 +107336,Lionel Quaid,16374,11315,7 +107337,Quinn Brenner,280092,106490,1 +107338,Herself,105583,1013947,0 +107339,Aries,37958,119248,15 +107340,Captain Forbes,142150,134688,6 +107341,Detective,19754,1006133,8 +107342,Dr. Lillian M. Gilbreth,50549,13577,1 +107343,Jean Murray,80219,6473,2 +107344,Minor Role,43806,1551013,66 +107345,Scientist,28340,100493,11 +107346,Peggy,13574,28640,0 +107347,Vince,399894,180538,15 +107348,Frank James,83354,30551,1 +107349,Ученик охотника,27935,932512,8 +107350,Mrs. Moncaster,27970,8522,9 +107351,Lashan Henchman,75315,34837,34 +107352,Laertes,48209,26519,4 +107353,Misty,357106,94927,1 +107354,CRI Agent,2503,30085,31 +107355,Leofric,45988,62972,3 +107356,Margaret,270650,1359968,34 +107357,Sgt. Assif,173205,109670,12 +107358,Parker Neal,8460,55115,1 +107359,Big Kid,15213,1281342,19 +107360,Luke's Mother,35026,1467065,13 +107361,Alkogolik,31162,86870,11 +107362,Beth,31867,8602,2 +107363,Mudgin,44869,3383,3 +107364,Babe Ruth (voice),15213,6197,2 +107365,Edward Doyle,28090,4250,2 +107366,Himself,104744,237322,7 +107367,Zhang Zhenwu,76349,64435,4 +107368,John Matrix,10999,1100,0 +107369,Ferdinand,257454,9926,4 +107370,Kalique Gene Tech,76757,1379944,51 +107371,Secretary,170517,1745600,22 +107372,"Saunders, the Maid",43850,1026388,6 +107373,Wayne Frobiness,180576,569,5 +107374,,56942,1747739,12 +107375,Minister Pradeep Kumar,111836,586629,8 +107376,Violette Tréfouille,377287,2319,5 +107377,Marcy’s Flunkie,50647,298410,20 +107378,Melcher,201429,32625,9 +107379,Doctor (uncredited),147876,29579,14 +107380,Jesse Buford,37301,4119,8 +107381,Hanukkah Party Guest,356752,1841529,52 +107382,Madam,289191,144343,9 +107383,Charlie,4191,35249,16 +107384,Pastor Johnson,337073,27737,2 +107385,Alfred Tuul,321303,1429057,24 +107386,Receptionist,79466,182739,8 +107387,John Hennessey,33025,12147,1 +107388,Taylor,63877,25383,2 +107389,Auntie Seven,18763,1193723,21 +107390,Budge,37311,35658,12 +107391,Bethley,332936,61114,2 +107392,Paul,86497,1264077,2 +107393,Verdugo infartado (uncredited),122019,31884,10 +107394,Ed Full,269795,1262786,14 +107395,Squirrel,204553,1320503,14 +107396,,36785,1075388,6 +107397,Aditya Bolke,304134,1682080,4 +107398,Lieutenant,157843,1525451,26 +107399,Party Guest,244534,222121,14 +107400,Marywald,330115,1422975,12 +107401,Linda Conner,204839,166951,2 +107402,Himself (uncredited),4964,4495,30 +107403,Keith,101325,1027187,16 +107404,,124075,1434105,2 +107405,Bane (voice),396330,89599,16 +107406,Miro,26358,590,5 +107407,Duttra,248633,1283951,13 +107408,Girl in Bedroom Estate,115782,1507448,15 +107409,Maddux,70436,2449,4 +107410,Eddie Zarno,13827,24048,1 +107411,,67633,1043255,15 +107412,Jean Henshaw,214100,34902,4 +107413,Alia Kapoor,26153,77234,1 +107414,Herself (Hollywood),103732,1318686,4 +107415,Bob's Mom,116979,67706,11 +107416,Alfred Jordon - Registration Desk,47878,27530,11 +107417,,313676,589222,7 +107418,Bernie Stein,3144,30753,3 +107419,Don Carlo,31542,1757141,23 +107420,Chief Galen Tyrol,69315,77222,15 +107421,Answering Service Lady,45938,29258,6 +107422,Bertha,51800,1317373,13 +107423,A Patás,63625,125368,3 +107424,Pepper Driscoll,15261,78038,10 +107425,Gulmira Kid,1726,1209710,44 +107426,Grant's Girlfriends,10780,1813182,15 +107427,Lord Godless,32654,20519,5 +107428,Nomoto Tatsuo,37939,119185,5 +107429,Himself (archive footage),14286,2662,6 +107430,"Mary, young mother",149509,196694,19 +107431,Judge,27937,236836,10 +107432,Merkel,142061,62389,13 +107433,Johnny Brown,67328,1069550,7 +107434,Lobo,325173,1569152,13 +107435,Griffin,254193,16213,2 +107436,Rita,70863,112052,15 +107437,,72592,1057923,14 +107438,Denton,16410,107435,11 +107439,Katherine,137315,972378,4 +107440,Le bétailleur,3423,32323,5 +107441,Olga Danilovna - a Maid of Novgorod,10235,1317190,3 +107442,Luke,253235,1475960,20 +107443,Pawn Shop Clerk,53407,99468,15 +107444,Scorpion's Girlfriend,331313,1509745,10 +107445,Katherine Dunn,186759,4726,7 +107446,Composer,85525,1791945,9 +107447,Giacomo,58013,120025,2 +107448,Frannie Hunter,224251,110014,1 +107449,Michael 'Mike' Bradley,50079,11492,1 +107450,Corporal,89086,1468172,22 +107451,Kissing Girl,246655,1747113,63 +107452,"hanu, viinatrokari",442752,1207868,27 +107453,'Bugs' Meyers,14615,4302,5 +107454,Himself,215646,1287508,2 +107455,Technical Adviser (Shoeless),4932,104034,27 +107456,Heather,17745,60253,20 +107457,,79580,68516,8 +107458,Maggie,60965,18475,12 +107459,Claire Kuchever,7551,52851,1 +107460,Marshall Heavy,58244,1684837,16 +107461,Wacky,14589,13967,16 +107462,Edie,20825,11484,11 +107463,Mooner,228028,983869,12 +107464,Gus Hoffman,34650,2092,1 +107465,Spence Holden,48609,12836,0 +107466,Newlywed at Kiel Hotel,75363,97249,23 +107467,Jim,8457,13101,19 +107468,"Бандит ""Сметана""",20879,1190217,7 +107469,Guy Jamieson,79816,12206,0 +107470,Kommissar,104172,16719,6 +107471,Carlos Lopez,81477,1082060,3 +107472,Reporter,43821,1046806,42 +107473,Neha Chattopadhayay / Basanti,19276,53672,3 +107474,Frankie,75778,66606,9 +107475,Sergei,12450,37093,8 +107476,Hannah,89481,139834,2 +107477,Bens Mutter,49853,1335467,12 +107478,Screaming Woman,79329,586538,16 +107479,Darcy,83059,929133,1 +107480,Jimmy,41578,884,3 +107481,Himself,76686,1098636,0 +107482,Reverend Lipton,10407,138000,10 +107483,Agente donna,42679,128224,3 +107484,Amantha as a child,37311,196408,9 +107485,Bourdon,4930,40164,11 +107486,JP,198130,223532,4 +107487,Specialty - Coney Island Number,184741,110940,10 +107488,Forrestal,10999,105089,10 +107489,Boy In Field,256740,1744727,14 +107490,Chris Pierzynski,190955,2296,0 +107491,DeLana,356483,1357513,9 +107492,Himself,16800,938995,6 +107493,,40817,1194041,20 +107494,Migrant #3,273481,1794931,33 +107495,Ari,73241,1078926,0 +107496,Martin Luther,213635,825,0 +107497,Lucas Barrow,293452,1540131,2 +107498,Coronel,82767,31878,6 +107499,Band at Red's,57201,1760475,58 +107500,Mr. Massie,12767,290,7 +107501,Astro Glide,32694,11514,21 +107502,Lewis,102444,245,1 +107503,Charlotte,3638,37153,10 +107504,Danny Quinn,55989,2680,0 +107505,Rock-N-Roller,23367,95401,49 +107506,Red / Felissa Hartley,193040,100757,0 +107507,Nephew,53392,108627,2 +107508,Hawkins,44190,2782,7 +107509,Donkey (voice),48466,98396,3 +107510,Fred Hoy,33592,1376889,8 +107511,Tenth Doctor,419786,20049,3 +107512,Amanda,58384,933238,6 +107513,Ann Roff,124042,1327722,9 +107514,Maria,91390,6588,1 +107515,Deputy Garth,11509,180529,38 +107516,The Flying Dutchman,229638,14533,8 +107517,Montero,13653,994544,8 +107518,John P. Blandish,79645,66712,5 +107519,l'employé de la réception,13739,550033,7 +107520,Amanda Waller,460135,111513,7 +107521,Trev Spackney,16058,49360,1 +107522,Unhappy Couple,245700,226083,50 +107523,Stable Swipe,118889,1067843,58 +107524,Tallien,27635,2698,5 +107525,Bud Parks,70026,120686,0 +107526,Carolin,128856,42930,1 +107527,Sara,34806,1656906,13 +107528,Skinny / Lung Wai-Chu,127329,1627377,3 +107529,,90351,1129045,12 +107530,Lyosha,390880,235980,8 +107531,Heckler,216153,1375708,14 +107532,Second Teen,29136,1211833,13 +107533,,320453,1417107,2 +107534,Derelict,102362,203757,28 +107535,,314388,1523950,6 +107536,John Wongso,39024,1001667,4 +107537,Hauptmann Franz Reiker,21062,114688,3 +107538,Signora vietnamita,297288,1176558,9 +107539,Darryl Palmer,78364,38085,0 +107540,Cop #2,134201,58950,22 +107541,High School Band Singer,85350,1467964,50 +107542,Martin,1259,40311,20 +107543,Mary Matthews,33792,6598,1 +107544,Orlovsky,4529,15744,5 +107545,Chaplain,28421,82384,42 +107546,Bald Head's bodyguard,25536,130564,11 +107547,Detective,14589,81292,52 +107548,Felice Ci',66700,129059,0 +107549,Teresa,363841,77122,2 +107550,Abin Sur (voice),17445,80416,11 +107551,,339367,110708,6 +107552,The Regenerate,53407,44879,0 +107553,Hacky Smith,43489,3341,8 +107554,Kobue Takemura,2487,1061290,9 +107555,G.A. Rackerby [Chs. 2-12],170936,1108688,6 +107556,Cameron,18774,183155,23 +107557,Birdie,416256,81446,2 +107558,Mark,14660,71467,5 +107559,Duke,184098,1723995,18 +107560,Karl (as Lam Suet),58570,25251,3 +107561,Tony Shalhoub,8842,4252,1 +107562,Andris,163942,1012248,5 +107563,Detective Baines,26301,39977,1 +107564,Doug,232672,35806,17 +107565,guardiano del piazzale delle auto rottamate,75001,556745,6 +107566,Luise,39407,25173,3 +107567,Outlaw Gang Leader,23590,88979,3 +107568,Martin Egan,9785,41746,10 +107569,A.W.O.L.,21338,44178,12 +107570,Orchestra Leader,128669,1443695,10 +107571,Mürvet,37570,1258352,4 +107572,Himself,206657,1490056,3 +107573,Captain Medvedev,82737,71871,3 +107574,Multi-Armed Deado,49524,1452764,23 +107575,Torpedoman Bates,48412,103672,8 +107576,"Gaston, le chauffeur de car et guide",75066,26890,10 +107577,School Girl 2,62630,1493722,17 +107578,Mrs. Samsky,12573,357551,15 +107579,Big Larry,44877,19303,8 +107580,Rom,22051,143236,18 +107581,Sheila,78177,20835,10 +107582,Maurizio,220565,4961,1 +107583,Thane,370687,107793,1 +107584,il preside,419522,129649,12 +107585,Alizeh Khan,393445,81928,2 +107586,Executive #1,58244,1301505,24 +107587,Frank,180305,76543,8 +107588,Lieutenant Jonathan Bradshaw,239845,1274942,2 +107589,Sheriff,86236,37712,3 +107590,Zhao Mo Sheng,334132,572043,2 +107591,Maid / Waitress (uncredited),22943,148027,33 +107592,Himself,374460,7087,15 +107593,Leung Chang's father,41380,1015037,14 +107594,Mr.Bradley,133716,1230014,5 +107595,Antonio,156547,129059,1 +107596,Barrett,19342,71520,5 +107597,Catalyst,5748,4593,3 +107598,,288694,1356799,3 +107599,Tasu Leech,140607,142019,27 +107600,,274127,18766,3 +107601,on. Mercio,356296,1878444,12 +107602,Jeep Driver,102362,118941,34 +107603,,77057,237157,7 +107604,Fernando Sanchez,245775,212080,7 +107605,,205349,144994,19 +107606,Michael,25834,255920,5 +107607,Friend of Aaron (uncredited),44115,1613035,20 +107608,Drug Dealer,11358,72099,31 +107609,Serveuse du restaurant,41277,1575502,17 +107610,Allison,246403,589162,3 +107611,Michael Whittaker,75622,20132,6 +107612,Dr. Elizabeth Barnes,68174,1951,0 +107613,Jack's Class,17258,1869997,36 +107614,John Burns,81232,158293,10 +107615,Jamie Wellerstein,206296,1188558,1 +107616,Agent Brinkman,266433,933123,4 +107617,Lou Levov,326285,20899,3 +107618,Khorzov,170689,120243,4 +107619,Cyrus Barrington,41591,100919,5 +107620,Présentateur JT,300,4294,13 +107621,Karl,43833,194925,9 +107622,Vicki,86274,124828,3 +107623,Yasuoka,376538,138445,9 +107624,Patches O'Houlihan,9472,9626,3 +107625,"Marit, Eriks forlovede",87654,1301604,5 +107626,José,411638,3483,0 +107627,Noordzij,223551,1209121,4 +107628,Jensen,267852,1175446,1 +107629,Sergeant McElroy,75761,149563,13 +107630,Miss Martin (First Bride),43809,103922,12 +107631,Herr Haselböck,8948,38481,11 +107632,Mom,23096,19337,13 +107633,Coletta,424488,1502430,31 +107634,мама Маши,428398,1744209,3 +107635,Little Timmy,20210,78840,24 +107636,Young Vivian,345069,1478649,10 +107637,Passenger,377170,931793,32 +107638,Paul Williamson (as William Milling),40368,101297,6 +107639,Goldie (uncredited),15092,36072,95 +107640,Grum / Chum (voice),14411,1335621,11 +107641,Tom Destry,94176,50962,0 +107642,Young Tiana (voice),10198,1615558,11 +107643,Ms. Norris,4257,9599,12 +107644,Thomas,241855,229313,2 +107645,"Conrad, Marquis of Montferrat",58905,24820,5 +107646,Porttivahti Räikkönen,55759,88856,8 +107647,Sheriff,58411,227797,6 +107648,Mr. Clifton,52859,14691,16 +107649,Delphingogol,269173,1265256,25 +107650,Tom Siddall,34977,113513,4 +107651,Tom Murphy,28730,52415,14 +107652,,361380,1532534,9 +107653,Mrs. Elmwood,27443,98504,13 +107654,Bob Dylan,19082,1487,0 +107655,Ferrán,351809,34021,2 +107656,,25998,1178901,1 +107657,Corky the Surf Mutant,47342,1748783,22 +107658,Sergeant Glen Conlan,95516,157790,10 +107659,Himself,407806,1700949,9 +107660,Himself,296194,20753,15 +107661,Mr. Connolly,1259,37056,15 +107662,Pete Groom,59735,80502,4 +107663,Pretty Skater,52736,69130,17 +107664,Policeman,31993,116307,44 +107665,Charley Kittridge,55784,12856,4 +107666,Welcome to the 60's Dancer,2976,551476,141 +107667,(voice),63498,1084810,4 +107668,,79871,1135394,4 +107669,Attorney,268920,1384815,110 +107670,Blu (voice),172385,44735,0 +107671,President Theodore Roosevelt,147722,12022,9 +107672,Jock,43757,1153741,3 +107673,Good Morning Baltimore Host,2976,1227611,30 +107674,Jimmy Alexander,288521,1178520,8 +107675,Jeanne (voice),52264,4726,15 +107676,Jungo Kusarino,273096,13275,1 +107677,Motel Custodian (uncredited),210047,1641615,17 +107678,Chef de la police des Ours (voice),126319,25133,17 +107679,Ramiro Cuadrado,59117,99812,10 +107680,Andrej Kawielin,370264,1542296,10 +107681,Ian (voice),333667,12905,9 +107682,Nurse,278334,1376096,9 +107683,Tuncay,220002,1672230,9 +107684,,164013,87409,0 +107685,Mr. Domonic,54406,40638,11 +107686,Melvin Hoover,80032,13295,0 +107687,Sonia,25518,100371,5 +107688,Alice,18820,1834,1 +107689,Publican 1,107985,951891,37 +107690,Delilah,156711,1349721,13 +107691,J.J. Jim Hendricks,2397,24516,0 +107692,Dr. Stephen Maturin,8619,6162,1 +107693,The Buyer,302699,3491,8 +107694,Controllore treno,56804,556733,24 +107695,Jenny Darcy,184710,1569064,3 +107696,,55608,581279,2 +107697,Ronald Shorter,28320,55636,1 +107698,Maj. Howell Brady,60551,50570,1 +107699,Jamie Kerrigan,445727,1615805,2 +107700,Romamädchen,167424,1822702,21 +107701,Baines,27629,30530,16 +107702,Chief Minister Aranganathan,66526,237697,2 +107703,Jo Yeon-Soo,367882,1299243,1 +107704,Maynard,24749,1072,6 +107705,Ana,206292,1132081,0 +107706,Mister Dharamdas,82243,645323,5 +107707,Sam,345438,146326,4 +107708,Léontine Chanu,91380,1184864,6 +107709,Mary Bronston,46567,39887,4 +107710,Vrána,18352,1403920,25 +107711,Regional investigation unit senior superintendent,346646,87090,15 +107712,Colin,197624,1298269,5 +107713,Senior Officer,115276,2984,18 +107714,Detective Brown,30361,45377,25 +107715,Calvelli,42703,69934,25 +107716,Adam Lerner,40807,24045,0 +107717,Tommy,58244,1467538,10 +107718,Older Woman,7942,94742,20 +107719,Nightclub Patron,228647,171111,33 +107720,Susan,58197,5578,2 +107721,Herself,25568,1553393,4 +107722,Kung Wei,18725,1336,0 +107723,Neda,58396,110973,12 +107724,Le Belge enrhumé,33436,19647,10 +107725,Madre,2012,50553,0 +107726,Lizzy Allison,142145,1057067,2 +107727,Bill,318922,1015830,12 +107728,Jasmine,19342,112327,6 +107729,Kid's Mother,80389,224507,7 +107730,Le Concierge,49271,1271226,1 +107731,Grandstate Manager,19912,60874,18 +107732,Eddie,27966,14454,10 +107733,Terry,268174,1316666,14 +107734,,113432,1057154,3 +107735,Kevin,246422,1001626,2 +107736,Mom,327528,70441,4 +107737,Lisa,397422,1448661,17 +107738,Buttercup (voice),77887,60074,8 +107739,Landlord,18238,141537,15 +107740,Mrs. Hartnett,135708,944116,6 +107741,Esa Pakarinen,55403,222307,2 +107742,North (voice),81188,7447,1 +107743,Alter Mann,14489,141641,4 +107744,Yanaginuma,104776,138426,5 +107745,Michel O'Shea,8464,44208,3 +107746,Alessandro Tedeschi,9950,60798,14 +107747,Swordflower / Barbara Woo,10044,62420,7 +107748,"Mari, sjuksköterska",60899,231920,8 +107749,Lt. Rip Crandall,43752,3151,0 +107750,Cheerleader (1989),16996,933929,46 +107751,Young Nearchus,1966,20281,10 +107752,Newspaper Reporter,43113,1481410,78 +107753,Bruce Kendall,29483,29092,3 +107754,Nie Wen,44458,25245,0 +107755,Perez,288313,72246,1 +107756,Alfredo Berlinghieri,3870,380,0 +107757,Attorney,52122,3343,3 +107758,Barry Womble,16378,80483,3 +107759,Bodega shopper,35656,1668412,17 +107760,Kubota Yuki,121725,589923,1 +107761,,49653,1386482,9 +107762,Alex,352890,17317,12 +107763,Il ballerino,43231,20420,10 +107764,Victor Newton,9785,59243,13 +107765,Stormtrooper,330459,127387,81 +107766,Voice Actor,48585,214551,0 +107767,Cassio,44006,937,4 +107768,Courtroom Spectator,43821,1264978,50 +107769,,412851,1599032,3 +107770,Dr. Mason,6976,47138,6 +107771,Isobel,111960,932298,7 +107772,,162899,1144870,2 +107773,Gomer Pyle,151937,84399,4 +107774,Colonel Jack Ruppert,61225,1215915,9 +107775,McAllison,257081,8516,12 +107776,Henri Armides,140470,16761,6 +107777,Rahşan Ecevit,52150,145400,3 +107778,Stu Sheridan,71147,8395,0 +107779,Thad Mitchell,102144,98503,6 +107780,Michael,93856,60005,6 +107781,Deputy Williams,31263,1576622,6 +107782,Jeff Lancaster,27840,99135,3 +107783,The Giant,290370,43299,9 +107784,Aurora,270221,1322588,5 +107785,Marina Del Ray (voice),13676,35,2 +107786,Millie,100528,564934,9 +107787,Peggy,112655,1147599,4 +107788,Scott,13842,1536670,15 +107789,Philip,415633,1678283,4 +107790,Mitarbeiter der Staatssicherheit,167330,1572122,27 +107791,Amelie,13058,1589715,43 +107792,Dr. Moss,22897,105641,15 +107793,,16015,6140,11 +107794,Guggemos,12631,48338,11 +107795,Spectator in Theatre Box,228647,120472,13 +107796,Proctor,540,1545466,25 +107797,Suzanne,128917,80769,8 +107798,Sorenson,36992,7505,3 +107799,Murph,82655,928458,8 +107800,Uro'er,2061,98062,11 +107801,Lum,43967,129960,0 +107802,Rex 'T-Rex' Pennebaker,16232,31137,3 +107803,Monique Vasquez,13680,41901,3 +107804,Ridge,44921,2787,5 +107805,Security Guard Monahan,116327,151685,5 +107806,Groom,98066,1223185,22 +107807,Li Siao Ling,62762,88104,2 +107808,Receptionist,22901,1487758,13 +107809,Secretary Kim Sang-mo (voice),209764,141857,12 +107810,Iron Cross,9828,59673,15 +107811,Himself,377151,1579118,3 +107812,Miss Hart,62694,32431,14 +107813,"Andy, the Photographer",111582,105455,12 +107814,Rafa,26969,43323,1 +107815,Grisham,22076,112343,7 +107816,Sandy Taylor,295581,50877,4 +107817,El Sol,21191,91251,5 +107818,Detective O'Neill,13777,75261,14 +107819,Yukio's Father,27276,40334,1 +107820,Count Zygmunt Szczerbic,156627,66469,8 +107821,Roger Davis,1833,17736,1 +107822,Kitty O'Day,118948,81798,0 +107823,Nurse Aimee,62838,4587,8 +107824,Butch Neuhauser,52867,1720866,14 +107825,Mrs. Carrie Rill,49353,528,1 +107826,"Giuseppe Sanguigno, il capotreno",107052,387731,3 +107827,Michigan J. Frog (singing voice),53211,1803072,1 +107828,Young Branch,136799,1704767,7 +107829,Martinez,41468,124847,7 +107830,Harold,48319,26847,4 +107831,Lynn,45610,11705,1 +107832,Bob,116979,7132,0 +107833,Johannesburg Onlooker,99861,1760865,38 +107834,Gorô Kurita,143946,230787,2 +107835,Bieler,22998,157542,9 +107836,Chełst,31021,2825,4 +107837,Stage Manager (uncredited),51303,13856,12 +107838,Desk Clerk,413232,265594,23 +107839,Husam,16047,1147088,10 +107840,диджей Дим,25936,94375,7 +107841,,105991,1265888,1 +107842,Kira,259835,30664,3 +107843,Mortell,4413,37157,16 +107844,Lögregluþjónn,26880,80921,6 +107845,,200117,20887,3 +107846,,375794,1134885,1 +107847,Foggy,49642,65976,1 +107848,Bar Patron / Pool Player,381645,1755084,19 +107849,Club Owner,38916,31006,9 +107850,Smith,31634,108241,7 +107851,Lionel,12453,72280,17 +107852,Jérôme Varenne,348025,8789,0 +107853,Bar Patron,8988,1741968,46 +107854,Karim,280030,1596413,6 +107855,Andromache,47446,13333,1 +107856,Christian Rosetti,3554,18766,4 +107857,Vampire Council #1,346672,544246,11 +107858,Jogger,65367,88549,3 +107859,Marlene,109391,969772,19 +107860,Hülya,236041,1271295,1 +107861,'Pops',121006,112364,7 +107862,Detective Brandmann,133183,213596,6 +107863,Susie,262357,123516,3 +107864,Count Cyprian Bodzanta,156627,1096333,1 +107865,,63414,1751759,13 +107866,The Spider Woman,26679,1088125,14 +107867,Sven,40785,6004,4 +107868,Callahan and Callahan,131360,1269835,7 +107869,Asgardian,284053,1328711,23 +107870,Lu Lin Hai,188836,1152483,3 +107871,Gerald Merton - Mannaja's father,19946,5565,7 +107872,Jack,88012,124513,4 +107873,Reno,8010,34540,11 +107874,Jacqueline,294819,9921,2 +107875,Revenger with Sword,27276,13275,60 +107876,Man in Pub,340101,143527,30 +107877,Farmer,3115,134320,18 +107878,Head Chac,1579,1331674,38 +107879,Dole Officer,81120,119363,25 +107880,Bradleigh,82622,928297,8 +107881,,104343,1697253,11 +107882,Airline Passenger,52122,164779,7 +107883,Henri de Navarre,3059,1130900,40 +107884,Patsy Gambill,23178,67298,13 +107885,"Lynette ""Squeaky"" Fromme",381737,1342463,2 +107886,El Republico Security,323675,76799,74 +107887,Judge Mason,243568,55877,14 +107888,Johnny DNA,414977,1168145,21 +107889,Boo,64130,81083,6 +107890,Mr. Potato Head (voice),77887,7167,10 +107891,Oded,96888,110359,5 +107892,Blackmailer,185154,134117,4 +107893,Member of Audience,177902,118633,20 +107894,Chris Wilde,35558,87741,0 +107895,Section Six Soldier,315837,1207281,34 +107896,Bob,70863,166549,14 +107897,Reg Denton,42989,199918,7 +107898,Coach,64972,1226782,12 +107899,Tsar Nikolas II,85715,1870846,11 +107900,Oh Sung-bok,293670,115294,8 +107901,The Governess,193959,998697,1 +107902,T.H. Benson,70151,84234,9 +107903,Aorn,57627,226567,4 +107904,Adriana,209413,53423,3 +107905,Nakao,616,9193,11 +107906,Hvorst,59115,1651967,7 +107907,Nurse 2,320588,155792,39 +107908,Fishing Boat Captain,246655,1015987,82 +107909,Robin,13574,6181,6 +107910,Blast Technician (uncredited),19995,1207288,72 +107911,Eiryu,46069,1083307,7 +107912,,117212,1198376,20 +107913,Lord Everett Stacy,81687,3361,7 +107914,Yee,9550,57912,3 +107915,Blink Moran,33792,29579,10 +107916,Danny Dolan,84337,12147,0 +107917,Herself,326255,1633759,7 +107918,Nick,261249,33004,8 +107919,'Bumper' Jackson,197737,1177873,9 +107920,Mayor Ito Alcantara,327225,108685,3 +107921,"""Ma"" Jones",27629,87519,7 +107922,Graf Andrassy,459,6809,5 +107923,,59572,29627,8 +107924,Dr. Lillian Guzetti,1381,9560,2 +107925,Himself,413579,1206,7 +107926,Leslie,38244,3127,1 +107927,Nikolay,265180,113332,3 +107928,Augusta,42501,40165,4 +107929,Filmore Durand,70734,1503418,7 +107930,Mrs. Novack,48949,17488,17 +107931,Lilian Murray,50318,19335,5 +107932,Roderick Turpin,228066,125660,3 +107933,Major Rues,25407,124506,5 +107934,Ray,334074,1349720,16 +107935,Editor-in-chief,143240,122668,6 +107936,Adrienne,8282,1137,0 +107937,Frank,288952,52374,5 +107938,Bar Thug,293167,173796,30 +107939,Carlos Bardez,53798,91711,3 +107940,Autoverkäufer,2204,22615,5 +107941,Doctor Bowen,243568,82704,11 +107942,Valentine Lee,58076,70035,1 +107943,Javier Pérez Harris,264525,145217,7 +107944,Hyun-soo,25649,1239247,7 +107945,Soldier,8988,1741989,65 +107946,Steve Andrews,121230,66075,2 +107947,Barney Wile,43440,9067,2 +107948,Lisa Mullens,36960,1598775,11 +107949,Nesh,76757,1360221,9 +107950,Himself,15258,15832,27 +107951,Bar Patron (uncredited),360592,1512204,30 +107952,Black Widow,14611,46423,4 +107953,Police Officer,236399,61546,11 +107954,Kevin,342472,1091795,0 +107955,Girl in Toilet,30644,45471,8 +107956,Rajiv,10087,13103,13 +107957,Chłopak,314371,1210139,11 +107958,Owner 'California',12638,49175,3 +107959,Frida,438634,1440534,0 +107960,Fanfarenbläser 3,9803,60146,23 +107961,Sgt. Herbert Frisbie,185273,34234,2 +107962,Cleaner,45167,132362,0 +107963,Laney Golden,266741,1313820,5 +107964,Pedestrian,268920,1755068,73 +107965,Catherine,159701,92730,10 +107966,High Priest,246655,1493134,23 +107967,2nd customer,48775,8452,5 +107968,Willy Preston,61581,54153,2 +107969,Ed,13169,22224,5 +107970,Mrs. Evans,27450,79632,5 +107971,,261538,533325,2 +107972,Amber,19237,115728,1 +107973,Dr. Geoffrey Mitchell,52203,96487,5 +107974,Receptionist,167935,1170641,5 +107975,Noel,747,28847,6 +107976,Lisa,301325,210573,6 +107977,,336669,1484661,3 +107978,Ghost Market Gang,15067,573792,13 +107979,Lt. Brooks,323675,14888,13 +107980,Mrs. Frazier,120357,9071,4 +107981,Man Dancing with Sally (uncredited),118889,96741,80 +107982,Judge (uncredited),28000,95265,70 +107983,Benjamin Coffin III,1833,17637,7 +107984,Jallikattu commentator,66340,1310262,6 +107985,,186971,1605809,26 +107986,,54959,956054,12 +107987,Cathy Sherman,26014,2165,4 +107988,Mother,43692,14304,2 +107989,Reepo,186634,77742,3 +107990,Gloria,197177,55654,3 +107991,Receptionist,10362,28046,22 +107992,Cotton Baby,29542,104141,11 +107993,Malachy,40850,10989,0 +107994,Liam,263627,21298,4 +107995,Greg Noll,291,4332,10 +107996,Herself,417870,929825,33 +107997,Harem Sentry,60488,124875,16 +107998,Parkhurst's Maid,74525,150633,14 +107999,,3549,1440808,10 +108000,Sarah,262338,58016,3 +108001,Willem,76784,27831,3 +108002,,97088,1336096,13 +108003,,166027,78245,2 +108004,Myriam,337,6549,4 +108005,La Femme,13312,4813,0 +108006,Wayne County,111479,1223458,31 +108007,Joe Morris,26376,34036,15 +108008,Jerry Jumbeaux Jr. (voice),269149,31531,15 +108009,Lady,266082,1407933,1 +108010,Magistrado,69060,941309,10 +108011,Mr. Jones,43809,33178,9 +108012,Mattie,48204,45400,0 +108013,Policeman,13436,1656894,33 +108014,King Louis XIII,41609,9067,8 +108015,,100791,562719,4 +108016,Lelz,27270,583400,6 +108017,Robert,447758,85067,16 +108018,Pierre Bezukhov,149465,38131,3 +108019,Jahwad,58309,82302,0 +108020,Greg Hannigan,270303,1172147,2 +108021,Jean-Pierre Montalban,13312,81047,3 +108022,Eddie Harwood,16090,79247,3 +108023,Man Squirting People With Hose,253077,52849,8 +108024,Nurse Marian,16921,3981,2 +108025,l'avocat de Pierrette,77776,402505,8 +108026,,241982,15135,1 +108027,Doc's Mutter,1659,18420,2 +108028,Herself,323555,967139,8 +108029,Young Sonny,286709,1408149,12 +108030,Brigg,140652,231547,7 +108031,Iakopo's Bride,13338,1621926,8 +108032,Mom the ghost,36695,115996,2 +108033,Herself,393443,1900342,2 +108034,Villars,122023,26209,8 +108035,,352199,72785,7 +108036,Afghan Palace Guard,354287,1816344,50 +108037,Donnie,52894,130216,3 +108038,,20646,9193,15 +108039,Bus Passenger (uncredited),156700,1842210,48 +108040,Sachiko Ninomiya,315846,119244,8 +108041,Additional Voice (voice),10193,59784,31 +108042,Jimmy Collins,366045,58374,4 +108043,Bedivere,274857,938,3 +108044,Lydie,70119,585470,3 +108045,John Anthony (as John Noonan),118760,175008,6 +108046,Frank W. 'Spig' Wead,46189,4165,0 +108047,Photographer,193177,15452,6 +108048,Strip Joint Stripper,354979,1835263,46 +108049,Gloria (voice),65759,77271,2 +108050,Anonymous26,98277,1849101,11 +108051,Greg,38031,3131,4 +108052,Dirty Black John,75300,308843,5 +108053,Marine,8988,1742439,88 +108054,Nigerian Gangster,17654,1467496,40 +108055,Gladys Smith,60140,103681,3 +108056,Deputy Ted,8270,54193,8 +108057,,91067,939114,2 +108058,Abby,85350,95368,23 +108059,Killer (as Walt Bost),345069,1478648,9 +108060,Mrs. Lafferty / Kravitz,405882,1202503,22 +108061,Sonny Black,25507,82129,4 +108062,Cilan (voice),88557,178871,0 +108063,Rufus Lewis,205361,84685,5 +108064,Morgan,11939,34748,8 +108065,Son Gohan,39102,90496,4 +108066,Vincent,64015,224930,2 +108067,Colonel Baron Suroff,53853,9067,4 +108068,Whizzy,9956,60920,14 +108069,Alydon,26581,39949,4 +108070,Slave Boy (uncredited),76203,1438315,83 +108071,Clayton,20640,5832,3 +108072,Shadow,30091,1434599,2 +108073,Molly,53999,1383575,7 +108074,Slimane,246422,1362308,13 +108075,Michael,295627,1368956,2 +108076,Michael Corvin,834,100,1 +108077,Tenchi,14829,112135,0 +108078,Capt Jiang,33338,110507,2 +108079,Trick or Treater Hippie Girl,330947,1650316,44 +108080,Professor Gianni Guidi,98025,232884,2 +108081,Wade Harrington,270015,86368,3 +108082,Diane Tourneuil,121793,59826,1 +108083,Declan 'Winky' Hall,72431,1254614,15 +108084,Priest,79521,78309,11 +108085,John,199374,202622,6 +108086,Kim,348320,1201628,5 +108087,Telegrapher,987,30005,16 +108088,Joni Carpenter,79329,586531,9 +108089,Žán,82716,1049278,6 +108090,,109379,1295553,3 +108091,Sidorov,301228,378,2 +108092,Yolanda Lange,267793,1315944,10 +108093,Ole,310602,563908,12 +108094,Sven,53256,147636,9 +108095,Sophie,266044,2343,4 +108096,Mario,56815,225011,1 +108097,Policeman (uncredited),22943,96725,30 +108098,Armandinho,420703,1278433,5 +108099,Haji Zeynalabdin Taghiyev,371741,1546533,7 +108100,Mother Superior,27414,14797,41 +108101,Giz,421741,1696086,5 +108102,Anzhelika,34869,108047,0 +108103,Claude Lacaud,168496,15137,6 +108104,Professor,369894,1177469,10 +108105,Frédérique Weber,80220,589038,1 +108106,Sonny,80343,1646009,10 +108107,Private (voice),270946,12097,2 +108108,Seagull,47795,257562,5 +108109,Clara,17978,156603,7 +108110,Sunny Elliott,85956,59696,0 +108111,Dawson,94135,31439,6 +108112,Heather,13090,80988,11 +108113,Robber #2,70583,558914,6 +108114,"Olaf, Fabian's Chauffeur",61430,103385,11 +108115,,251555,233996,12 +108116,La fille moyenne,21348,1838951,14 +108117,Manuela von Meinhardis,4955,6250,1 +108118,The Moor Captain,289720,1265906,8 +108119,Mr. Nolan,68684,3901,16 +108120,Harry Fox,107973,70820,1 +108121,Sinister Man,138496,1135969,2 +108122,Isabel Lindauer,204965,133261,1 +108123,,63538,1190374,9 +108124,Power Plant Guards,177677,1363060,57 +108125,Dr. Ryan,340027,77315,10 +108126,Ziggi,116762,257575,4 +108127,Dick,244539,1508827,17 +108128,"Diener von ""No. 326""",78507,14120,2 +108129,,63215,9893,0 +108130,Pedestrian (uncredited),284052,1785924,59 +108131,Mechanic,411741,1375141,19 +108132,Mo Dung Tak,46114,239091,4 +108133,Amram,288977,935201,4 +108134,Didier Halimi,238781,77131,2 +108135,Owen,7445,1117439,14 +108136,Roger Pillby,49609,14029,3 +108137,Dancer,19995,1207275,59 +108138,Melanie Alexander,291413,65196,2 +108139,Hipster Turkey Man,320588,1538576,24 +108140,Belyj,26841,150734,2 +108141,Additional Voices,14830,31549,9 +108142,Yvette,72096,6403,46 +108143,Himself (archive footage),40807,58769,35 +108144,,53767,86365,11 +108145,The Genie / Little Sailor,47310,138398,12 +108146,Archangel,95015,1544024,5 +108147,Sheriff Lachlan,103433,95987,9 +108148,Claw,19766,37286,2 +108149,Molly,121674,58757,9 +108150,Carlo Poerio,56853,35104,7 +108151,Goro,38010,120690,3 +108152,Mason,26502,50310,11 +108153,Albert,128241,559814,10 +108154,Lisa,97614,1207368,28 +108155,,48959,14468,11 +108156,Sharon Lake,11610,41258,5 +108157,Tonya,14923,1214418,9 +108158,,430973,1727208,10 +108159,,8935,1342842,6 +108160,George Gueco,98203,1085219,25 +108161,Patrick Muldoon Jr.,2611,18793,12 +108162,3ème inspecteur,5511,1664779,11 +108163,Clayton,7343,52541,12 +108164,Encarni,59117,231486,20 +108165,Daddy,121895,21605,0 +108166,Hewie,43384,130585,5 +108167,"Angela, Maid (as Patricia White)",62720,40208,6 +108168,Maria,29638,98905,9 +108169,Príncipe Antonio (Canciones),13283,1497229,8 +108170,Caterina,374416,92095,3 +108171,Luke Plummer,147903,85737,7 +108172,Dr. Edward Barnes,277710,75604,35 +108173,Inge Viett,43434,38371,21 +108174,Alice,142528,76827,1 +108175,Dev Raman,114284,11614,0 +108176,Frau Aubert,4955,104087,18 +108177,Ti Bat,1976,589812,17 +108178,Butchy,325189,1094568,5 +108179,Linda,240913,210292,19 +108180,Walter Kotzwinkle,77664,152701,3 +108181,Zacarias,2012,50554,1 +108182,Sanda (Brown Gargantua),3146,1482691,19 +108183,Professor Rayburn,113739,1212974,6 +108184,Hsieh Ya-Li,57100,1089571,9 +108185,Masilamani,147815,1336122,14 +108186,Hellboy,242458,1033671,9 +108187,Housemaid,30478,1376317,9 +108188,Hannah,110412,1049408,4 +108189,Alex,197583,1177673,3 +108190,Garage Mechanic,42623,103036,12 +108191,Nathan Ballard,409502,441898,16 +108192,Barry Robert Philips,91070,1546521,10 +108193,Mr. Peck,93511,76001,8 +108194,Minh,144229,18260,3 +108195,,236737,984078,11 +108196,Abyong,64450,223194,2 +108197,Himself,13516,939083,21 +108198,Jaga,35021,591271,5 +108199,L'amiral de Coligny / Defendant,3059,8820,41 +108200,,227552,52476,1 +108201,Aap,868,13094,3 +108202,Dave Smith,128270,1686127,18 +108203,Darlene Madison,6575,51856,1 +108204,D.C.P,96147,565160,15 +108205,Marissa,351065,52956,8 +108206,Maurice Agnelet,270899,19866,2 +108207,Cam,27138,161446,9 +108208,Police Chief,37438,86024,3 +108209,Walter Donado,29952,1038479,1 +108210,Eric Cruise,20196,936612,0 +108211,Ali,246422,1026733,10 +108212,Inglewood Cop,15092,1724927,45 +108213,Ellie (voice),79218,15758,3 +108214,R.J.,37978,557840,9 +108215,Polish Worker,246655,1796396,41 +108216,The Maharishi,6575,76525,29 +108217,Detective Webber,52395,16936,3 +108218,Sunny,94725,8856,2 +108219,Volontario,56339,128252,16 +108220,Violeta Parra,80717,590876,0 +108221,Hansi Bockerer,24140,91275,6 +108222,Cole Stuart,128841,1088033,4 +108223,Evelyn Gorman,39311,29761,4 +108224,Bill Woolley,197583,115444,5 +108225,Shorter Wraith,174188,51383,6 +108226,Stove Pipe,57201,104915,52 +108227,Gen. Nicholas Herkimer,73194,112364,9 +108228,Young Couple,431093,1224254,12 +108229,Andrea Burlington,16240,59195,13 +108230,Sandy,170517,1667054,11 +108231,Louise,241855,1133012,1 +108232,Intern (uncredited),28433,6838,14 +108233,Scouse,128241,230697,9 +108234,Lair Staff (uncredited),206647,1682535,80 +108235,himself,33916,936659,3 +108236,Sheriff Corgan,48843,44205,1 +108237,Terence,255869,41077,4 +108238,,58529,1259692,2 +108239,Michael Finnegan,57684,116661,18 +108240,,267506,109200,2 +108241,"Roop Lal ""Phillauri""",413421,928221,2 +108242,Il delegato,11972,932521,10 +108243,Domenico,196789,96053,7 +108244,Soldat,10129,37190,6 +108245,Rochon,426265,202850,7 +108246,Cy Bowman,178569,34119,8 +108247,Vivian Hades,450530,934059,4 +108248,Arturo,105584,25260,3 +108249,Jack,32338,21180,1 +108250,Outlaw Peasant in Cabin,91480,1013178,10 +108251,Carlos,78571,79419,4 +108252,Priti Khadga,259997,139065,14 +108253,Anna,393134,1359494,4 +108254,Waiting Room Girl,91679,233272,20 +108255,Fozzie,58763,1198810,2 +108256,Brian Wilson - Future,271714,3036,1 +108257,Nadja Stübner,167330,1831162,11 +108258,Berlinghieri,3870,13784,6 +108259,Anton,64393,239163,0 +108260,Iozen (voice),315465,552339,6 +108261,Ray Tuckby,15936,21043,0 +108262,Big Jim Wollard,28110,99725,10 +108263,Green Pearl,10703,148673,6 +108264,Tommy,27414,97719,9 +108265,Imogen,43711,224878,6 +108266,Noah,83223,1332413,9 +108267,Max,48775,1266992,3 +108268,Dr. Stephen Sorenson,30374,13578,0 +108269,Pashima,102841,70172,21 +108270,Sara Greenwood,75537,138860,2 +108271,Matt Boley (as Jimmy Mathers),202941,94654,11 +108272,Spanky,10760,58507,8 +108273,Antti,233917,88854,4 +108274,Marian Langdon (as Susan Walters),51476,32194,1 +108275,Le docteur,74822,583067,13 +108276,Kyle,10033,62252,15 +108277,Dr.Purushottaman,70988,584369,3 +108278,Lightning McQueen (voice),145316,143346,2 +108279,,60014,7556,15 +108280,Waitress,77930,1784649,56 +108281,L'amie de Bruno,10795,23390,29 +108282,Kosske,2241,23125,11 +108283,Robert Letellier,63681,229382,6 +108284,Mrs. Machin,43369,136897,5 +108285,Marga,438634,1743949,1 +108286,Doctor,19338,37981,30 +108287,Otto Skaas,26533,38232,8 +108288,Yumi Yamakoshi,105210,127223,10 +108289,Pablo,79372,30719,4 +108290,Paco,66045,100126,4 +108291,Peter,40130,1019912,7 +108292,Kyouko Sakura (voice),152042,220714,4 +108293,,662,1167684,8 +108294,Mom,11172,1549561,60 +108295,Debbie Hall,96936,43372,9 +108296,Ambrose (uncredited),413998,1840374,28 +108297,Game Announcer,59965,1432980,30 +108298,Robin Sherwood,92716,7504,3 +108299,Louis,79500,13644,4 +108300,Corporal Banta,57597,1676187,11 +108301,Member of Band,38769,88728,22 +108302,Presenter,29907,207310,13 +108303,MNU Mercenary,17654,109649,36 +108304,Janis,43546,84659,18 +108305,Bill,25536,1172955,5 +108306,Corinna,30508,88342,3 +108307,,28071,1698980,8 +108308,Elroy,16839,151809,8 +108309,Kay,27973,106089,3 +108310,Everett,370755,1410478,6 +108311,Kieran,14976,282835,8 +108312,Tatsuya Bitou,25716,133168,16 +108313,Melek,452606,1379239,7 +108314,Andy Miller,30054,34186,13 +108315,Louisa Kracklite,17238,43476,1 +108316,Lewis McCartney,65256,187470,3 +108317,Princess Yasmin,422906,6930,0 +108318,Salman,271677,6503,6 +108319,Edna Bartelli,34650,93970,5 +108320,Léa Lepicard,59434,102864,7 +108321,Mayor Bascomb,371181,26089,7 +108322,Sofia,211059,1194930,1 +108323,Santeria Dancer (uncredited),323675,1762653,62 +108324,Prof. Duncan,17577,27737,13 +108325,Newscaster in Helicopter,49524,58510,27 +108326,Riley,29610,104340,8 +108327,"Madame (segment ""Chawan no naka"")",30959,131013,63 +108328,Amul Yaakaar,276220,1330187,4 +108329,,107916,1042758,11 +108330,Princess Betty Cippola,28131,83796,3 +108331,Renard's bodyguard,22584,99324,14 +108332,Dr. Grieve,28304,30115,12 +108333,Ford Lofton,44540,5168,0 +108334,Le compagnon,41211,1186076,11 +108335,Spazz (voice),35177,6213,1 +108336,Poe Dameron,140607,25072,4 +108337,Runny,213681,11516,10 +108338,Man Keung,17457,118742,12 +108339,Chin,26358,95234,7 +108340,Brenda,15639,54718,5 +108341,Tony,49073,992989,5 +108342,Additional Voice (voice),177572,61958,21 +108343,Dr. Warren,315855,102852,15 +108344,Himself,125736,1271008,22 +108345,Nurse,280092,1153793,19 +108346,Augustus,105528,13936,6 +108347,,268735,2258,11 +108348,Party Guest (uncredited),13092,19148,26 +108349,Ulvhild som barn,57438,226189,28 +108350,Laughter / Broom / Pizza (voice),378236,89112,17 +108351,The Kid,67693,189512,0 +108352,Le docteur 70's,20200,93531,8 +108353,District Attorney Whitlock,91961,19020,0 +108354,Interviewee,32694,109577,15 +108355,Bobby Cogdill,15613,3039,5 +108356,Trace,260001,1240487,6 +108357,Brooke,84575,930992,2 +108358,Kate,298935,1383566,6 +108359,Brian,335970,75310,57 +108360,Himself,414749,2877,7 +108361,Ruddock,55152,18763,16 +108362,Sylvia van Leeuwen,73123,43721,1 +108363,Madame Michonnet,452142,62967,12 +108364,Hu Ah-Kue,40081,240151,3 +108365,Neal Wilkinson,252888,16554,0 +108366,,275269,1276863,11 +108367,,77534,579743,15 +108368,Palla pesante,42416,128072,0 +108369,Miami Usher,26670,95981,14 +108370,Salimi,43761,1339659,9 +108371,Captain,1271,9831,4 +108372,"Piotr Knappe, dyrektor więzienia",49588,142525,9 +108373,Interviewee,17654,1086508,14 +108374,Le 3ème carabinier,52705,1366821,8 +108375,Administrator Kruger,11248,27822,11 +108376,Det. Mills,60599,2254,12 +108377,,391757,65344,13 +108378,Slávek,19765,231165,7 +108379,Bughuul,283445,1423420,12 +108380,Ok-soo,11653,70688,1 +108381,Mike,21583,18324,1 +108382,Toña,56647,224732,7 +108383,Goldie,92309,45474,1 +108384,Mr. Daouglou,24258,932888,7 +108385,Captain Jensen,14452,64670,12 +108386,Ah Pao (Lee I. Min),54503,95670,0 +108387,Seth Marcy,30307,85990,6 +108388,Groom,118889,98571,22 +108389,Bindle Jackson,19096,8496,10 +108390,Fred,95504,14001,8 +108391,René,13739,33161,3 +108392,Jock #1,10033,62253,17 +108393,Steve (voice),109451,41686,6 +108394,Zack,17495,20671,2 +108395,Travis Hudson,2080,38665,12 +108396,Theresa,224243,148143,3 +108397,Himself,186079,1168788,2 +108398,Kate Roberts,220674,6639,13 +108399,Mrs. Berkeley (uncredited),174925,1006951,18 +108400,Drummer,76341,1734200,57 +108401,Mr. Lewis - Marna's Father,172445,1008740,2 +108402,Ojeda,309581,76799,9 +108403,"Mineko, Dr. Miko's assistant",43113,1270263,12 +108404,Holly,167810,1793170,14 +108405,Pearly Gates,42989,12446,0 +108406,Old cook,54503,68676,3 +108407,Duncan,30780,67523,4 +108408,Just,86985,71156,0 +108409,"Greta Ellius, Anders' syster",60899,6661,5 +108410,Jonas' Mother,227156,3897,5 +108411,Deputy Duane,207699,1308744,5 +108412,Mr. Abbott,59704,101919,7 +108413,Daria,2998,29897,1 +108414,Frank A. Tinker,227306,37154,8 +108415,Martin Vaillancourt,285908,1351135,2 +108416,Anna Reed,262338,11661,2 +108417,Stunt Girlfriend,25941,1835498,20 +108418,Waitress (uncredited),354979,1563269,71 +108419,Deguilhem,110323,1049253,8 +108420,Lorenzo,62349,235206,1 +108421,12 Year Old Albert,188161,80378,40 +108422,"Himself, American teacher in Finland",352208,1609804,3 +108423,Francard,21198,101330,2 +108424,Fly,18387,5139,7 +108425,Igor Samarakis,64725,101331,8 +108426,Herself,8886,63,1 +108427,Saloon Girl,105059,1683142,47 +108428,Creepy Young Man,146216,1229334,37 +108429,Marika,273404,12214,0 +108430,Upscale Party Guest (uncredited),213681,1358965,54 +108431,,206157,6905,0 +108432,Marcello Cenni,92586,34651,1 +108433,Detective Ray Green,283384,6575,2 +108434,Rie Takami,108634,16145,0 +108435,Yoon-joo,376252,1710034,16 +108436,Andrew Blythe,182349,84407,3 +108437,"Jessica, Henry's Secretary",11364,10776,5 +108438,Jonathan Hellyer Jones,266856,23458,2 +108439,"Mary, Mother of Jesus",235260,173150,0 +108440,Ridgemont Child,6069,1524344,10 +108441,Bagoas Dancer,1966,1651021,50 +108442,French Telegrapher,109716,1015446,84 +108443,Radar (voice),411221,43321,4 +108444,Ken,14029,99548,2 +108445,Scalese,24731,532,4 +108446,Agent in Boston,20444,31492,10 +108447,Mac - Policeman (uncredited),88288,93624,11 +108448,,268735,67028,13 +108449,Tana,151310,124555,6 +108450,Peter,31385,175561,13 +108451,Eva's Colleague,47120,585924,9 +108452,Sam Walsh,1125,17697,17 +108453,Allan Fields,38417,7124,0 +108454,Maître Adreux,21070,39334,5 +108455,Commuter (uncredited),2503,127005,44 +108456,Narrator (voice),72215,565332,2 +108457,Janice,76494,221581,14 +108458,Old Vinnie (voice),32202,50574,16 +108459,Constantine / Floyd Pepper / Sweetums / Pops / Robin / Lew Zealand / Crazy Harry / 80's Robot / Camilla / Uncle Deadly (voice),145220,135467,7 +108460,Gus Dorais,43812,2013,7 +108461,Carlos Alberto,227932,557414,3 +108462,Nicanor Parra,325385,1327742,16 +108463,Taminosuke Yamamura,46149,131923,0 +108464,,111239,1234991,7 +108465,,288424,1357868,3 +108466,Young Steven,286709,1408148,11 +108467,Angeline,37813,82314,1 +108468,Claire,181753,1454808,8 +108469,Bryan the Beachmaster (voice),65759,44838,18 +108470,Dutch Henry (uncredited),75315,120521,16 +108471,Gottlieb,274990,1119438,7 +108472,Meg,179154,8329,2 +108473,Fong,9470,83635,4 +108474,Diner Patron,26518,1284626,5 +108475,Paul,32904,109834,1 +108476,Homeland Security Officer,273481,1794933,38 +108477,Sergeant Tinley,173456,29580,14 +108478,Prince Richard Metternich,78318,33033,12 +108479,Craig Patrick,14292,11315,2 +108480,"William, Earl of Mackworth",24442,2435,4 +108481,Marshal Fleet,243568,1278643,9 +108482,Reformatory Guard (uncredited),28000,985861,48 +108483,Gap,33357,14814,3 +108484,Gluttony,18209,107499,6 +108485,Jeanie,67216,52605,2 +108486,Ben,253851,54416,9 +108487,,109587,1054782,11 +108488,,15776,559142,17 +108489,Pig,21141,59184,16 +108490,Nurse Connie,266425,1313160,32 +108491,Peter Drak,24331,17688,5 +108492,Partier (uncredited),330947,1650331,63 +108493,,252059,1271626,12 +108494,Priest on Bali,98125,1550,31 +108495,Herself,149145,3830,1 +108496,Arzélie Caron,16147,79613,9 +108497,Sgt. Maj. Finlayson,43889,131386,6 +108498,Mara McAndrew,181753,650,0 +108499,Maria,58080,24610,4 +108500,Phears,58664,146391,3 +108501,French Porter (uncredited),28571,1119591,17 +108502,Penfield Gruber,109610,1037,0 +108503,Anesthesiologist,15316,62597,13 +108504,"MSgt. Henry ""Hank"" Kowalski",37468,111578,1 +108505,Themselves,211411,399477,1 +108506,Andy,381737,1183679,18 +108507,Terrian 1 (voice),16873,1224152,19 +108508,Helen,347945,557505,6 +108509,Rajarathinam,330418,560038,4 +108510,Tessa Connover,418437,25541,1 +108511,Buford Van Stomm (voice),71689,197285,3 +108512,Sister Shaheena,113038,1056210,5 +108513,Manisha,302435,1245856,6 +108514,Connie Nikas,429200,11288,0 +108515,Reya,27270,70424,7 +108516,Kang Jin-ah,36164,1222951,5 +108517,Erik Lehnsherr / Magneto,76170,1327,10 +108518,Debeli lopov,11373,111129,11 +108519,Boat Captain,61988,120307,4 +108520,,261508,1305041,5 +108521,Sir Oliver Blount,70753,559558,2 +108522,Mr. Thompson,76349,1379954,15 +108523,Boss,325690,20592,7 +108524,Paula,300596,138701,9 +108525,Principal Malhotra (Tina's father),11854,6217,12 +108526,Paparazzo,331161,1459162,28 +108527,Nichole,43092,232059,1 +108528,Jerry,21583,10430,3 +108529,Selina Peake De Jong,98536,14974,0 +108530,Rindy Aird,258480,1545499,12 +108531,Glader,198663,1415443,35 +108532,Billie Nash,40744,111284,0 +108533,Mac Gregor's Maid,67375,88999,30 +108534,Broker,43811,265594,41 +108535,Policeman 2,59678,82738,8 +108536,Zama,340627,13094,3 +108537,Father,13763,15864,4 +108538,Akira,332662,112831,2 +108539,Captain Peyton,296523,64,2 +108540,Jesus,244458,48151,13 +108541,Carla Romero,417678,57409,3 +108542,Peter Pan,84184,1246804,16 +108543,Hittite Commander (uncredited),24973,16074,13 +108544,Commandant,151911,95729,8 +108545,Copyboy (uncredited) (unconfirmed),36334,2749,15 +108546,Chefin des Escortservice,308174,1092945,39 +108547,Señor Buenaventura J. Bello,19096,14533,12 +108548,Watts,120370,83458,1 +108549,Marge Macauley,234868,115780,2 +108550,,172705,1424844,7 +108551,Sarah Mattei,14688,8925,4 +108552,The doll maker,1942,10027,7 +108553,Dr. Lanyon,3024,29655,3 +108554,2nd Soldier,74879,1001792,23 +108555,Father,1278,16349,4 +108556,Leah's Bassist,253235,1855398,28 +108557,Colonel Macon,59197,99235,8 +108558,Sarah,139519,70456,2 +108559,Kaoru Kamiya,221732,1084910,1 +108560,Goldwyn Girl (uncredited),108224,1365320,16 +108561,Major Gross,18575,1147,2 +108562,Jesse,140814,1064312,11 +108563,Damodar,46403,1013138,8 +108564,Commissioner (uncredited),28000,1450156,96 +108565,Camila,264397,1324060,7 +108566,Segal,25528,74627,13 +108567,Commander Beech,16373,8841,3 +108568,Esther,97024,2503,8 +108569,Un (faux) voyou,55853,14606,18 +108570,"Tony, the Window Washer",98125,30719,3 +108571,Baciu Miao,36236,23367,12 +108572,Chi-bo,56232,1015822,10 +108573,Emily,305932,42915,7 +108574,,41970,1359569,1 +108575,Bobby,7972,31713,8 +108576,Bobby Jessop (as Jake Washburn),145135,1393311,12 +108577,Host,45431,43461,22 +108578,Rika Nishina,11838,67318,0 +108579,Manuel Diaz,273481,1529184,10 +108580,Chignol,378446,1578027,7 +108581,Yukie Sakamaki,209032,104523,2 +108582,Papa,59163,4275,0 +108583,Stewie Stone,369524,1808626,18 +108584,Mechanic,18651,121240,27 +108585,Tony,80281,148037,0 +108586,Le psychiatre,18897,260836,10 +108587,Thorn,17681,81667,5 +108588,Teacher,3563,60959,16 +108589,Uncle Frank,244786,15824,8 +108590,Giacca di Lana,49850,556731,14 +108591,Female Professor,103332,271352,15 +108592,Kemal,300490,1363410,7 +108593,Lou the Doorman,414977,1294529,22 +108594,Himself,50779,8978,0 +108595,James,38770,85345,16 +108596,Prospector,28484,99217,11 +108597,Anne-Sophie,85429,2405,1 +108598,pobočník,160106,111217,1 +108599,Ozzie,44415,146329,1 +108600,Kimura,33333,110501,3 +108601,Maria,139455,1116282,7 +108602,Jose,242835,190781,11 +108603,Buddie Tolliver,76094,31774,6 +108604,Steve,401164,1817448,9 +108605,Bob's Cabbie,128669,1221391,32 +108606,Charles,284296,55638,8 +108607,Devon,35320,180449,16 +108608,Mme Calvette,76642,579544,9 +108609,Himself,85984,112884,4 +108610,Simone,63045,43903,1 +108611,Crew Chief,293167,1840496,27 +108612,Race Wars Racer (uncredited),168259,1563213,49 +108613,Isamu Nii,49258,46691,5 +108614,Raya,31221,107791,0 +108615,Voice in the Box,139718,146138,17 +108616,Clerk,381645,1860893,30 +108617,Hooker,257214,76029,9 +108618,Poncho,64605,3265,3 +108619,Suspect 1,98277,82926,5 +108620,Aaron,31221,84080,5 +108621,Jill,19423,29879,3 +108622,Silvio Galliani,42441,69037,1 +108623,Mayor Stevenson,142061,15831,6 +108624,Hasmukh Rai,96147,174606,3 +108625,Mutter Wand,140554,1707837,30 +108626,,121640,10822,0 +108627,Allison (16 years old),58462,1502239,15 +108628,Stan Gable,39824,1183804,10 +108629,Derek,14823,32300,1 +108630,Il marinaio che balla (uncredited),43231,935976,14 +108631,Orchestra Leader,43868,218442,4 +108632,Patrol Sergeant at Italian Restaurant,149793,30530,11 +108633,Arch Clements (as Nick Sadler),42706,50402,13 +108634,Himself,12994,170820,6 +108635,Sandlot Kid #2,15213,1075014,7 +108636,Laughy Hitman,23853,101013,13 +108637,Steven's Friend,26486,1337842,33 +108638,Uncle Frank,320588,130129,16 +108639,Chief,92298,982402,4 +108640,Cockney News Vendor,109716,1275728,27 +108641,FBI Agent Fujima,82,8785,6 +108642,Monsieur Reyer,76115,577647,12 +108643,Fisted Woman,86658,142258,5 +108644,Monster,174611,1285844,2 +108645,Showgirl,72096,163013,44 +108646,Yoshka Poliakeff,101330,12726,0 +108647,Old Blind Man,65674,14821,3 +108648,Ricky Ortega,354287,93491,11 +108649,Gilbert de Rezel,92796,13733,4 +108650,New York Reporter,51571,22093,15 +108651,Himself - Co-Host / Narrator - Clip from 1947 version of 'Good News',33740,4353,4 +108652,Úlisný,6079,136811,5 +108653,Chu Zhaonan,10703,1341,4 +108654,Ruksar / Aradhana / Radha,120942,77234,1 +108655,Rebecca Verlaine,12601,73058,0 +108656,Mrs. Norton,60307,152863,13 +108657,Isa Cruz,138977,55392,2 +108658,Steve,45875,134078,18 +108659,Jefferson Monroe,288980,33533,4 +108660,The Vicar (uncredited),52440,3369,25 +108661,Teri Parker,34729,100961,3 +108662,Capt. Lancheck (uncredited),28000,95274,26 +108663,Gabriela,395883,1636737,8 +108664,Committee Member,43812,33705,74 +108665,Julia Engel,264061,1037888,0 +108666,Secret Service Agent,16784,1228299,9 +108667,Receptionist,1640,1331796,47 +108668,Direktor,16439,1191713,2 +108669,Telegrapher (uncredited),43522,975349,27 +108670,Himself,124071,1218279,6 +108671,Anna Redmond,9648,351,1 +108672,"Elvira, madre di Loredana",98025,243795,3 +108673,Monica Lafontaine,68684,1849990,23 +108674,lap dancer,120922,1902245,21 +108675,Tailor,157343,1235622,24 +108676,Family Doctor,27983,41217,3 +108677,Paul,440597,1753912,9 +108678,Joanna Polley,128216,226833,22 +108679,Den Bravers,339530,1035098,8 +108680,Rufy,331962,1706127,25 +108681,Shawn,11908,77993,5 +108682,Thomas Jones,425774,1707961,67 +108683,Jeune du lac 2,274483,1676883,16 +108684,Weed Buyer,91679,1782586,25 +108685,Ron Castellano,122857,60874,8 +108686,Mark 'Treacle' Tate,14531,83817,0 +108687,Eric's Friend,30941,1747349,36 +108688,Dragon Eye,19350,118459,9 +108689,Additional Voices (voice),328111,78317,17 +108690,Angela,82999,929044,5 +108691,Louisa MacGill,121923,18292,3 +108692,Baby Groot (voice),283995,12835,3 +108693,Police Chief Morris,7220,94182,21 +108694,Lecteur,1421,1568274,32 +108695,,285935,1766386,6 +108696,Durgan,198176,9090,5 +108697,Young Chris,55294,1061897,1 +108698,Ava,332872,224728,3 +108699,Young Teen,110160,575662,12 +108700,,69310,1184600,44 +108701,Female Creature,9987,61515,9 +108702,Boarding House Boy,339419,1650215,60 +108703,Steakhouse Customer (uncredited),369524,1796085,35 +108704,Aude Lettelier,38883,10500,2 +108705,Brynjar,13630,105251,2 +108706,Michael Colson,8988,54815,8 +108707,Door Guard #1,62764,1091875,30 +108708,Lady Fitzhugh,51947,20399,6 +108709,Mr. Stone,43790,14968,6 +108710,Bollini,231176,119355,6 +108711,Mr. Hubble,121674,1796448,22 +108712,Stefania,39979,123968,25 +108713,Billy the Projectionist,291336,1362174,7 +108714,Dr. Leidzinger,5237,32645,2 +108715,Prof. Helene Gauthier,104602,50572,3 +108716,Marco Sartori,161299,21181,0 +108717,Levi Eshkol,55225,1593235,6 +108718,Corneto,18120,1577013,5 +108719,Janaína,173443,556494,1 +108720,Fred Goodwin,42764,11163,1 +108721,Kasyan,107146,201587,7 +108722,Micke,76864,579249,0 +108723,Un cliente,249457,120132,9 +108724,Le lieutenant de police Jean-Michel Massimet,329809,930173,11 +108725,Daz,297265,8032,12 +108726,Teacher,51144,6649,9 +108727,Young Joe,87516,130769,9 +108728,,122368,121520,2 +108729,Petra,20357,18345,8 +108730,Weevil,189,96007,48 +108731,Kenny Ortega,13576,65310,2 +108732,Narrator,11897,12147,12 +108733,Cage girl,68472,75330,5 +108734,Sam Beck,293082,67850,1 +108735,Peter,20718,14886,6 +108736,Yasemin,367492,147848,2 +108737,Peter Wells,41030,120718,1 +108738,"Tom, cameraman Telecosmo",38310,120110,8 +108739,Evan Webber,263472,6384,0 +108740,Jack Cabe,25674,8891,0 +108741,Jeune femme piscine,98277,1849124,47 +108742,Lauren Harris,184098,40036,6 +108743,Maeve O'Halloran,167882,49944,11 +108744,Teddy Toblosky,302666,98280,13 +108745,Girl #4 at Play (Rock),10710,1778258,34 +108746,Banquet Guest at Max's Table (uncredited),43792,121323,12 +108747,Niño de Guevara,29272,36632,1 +108748,Maria,207699,1308810,12 +108749,Armand Duval,139176,116367,0 +108750,Melissa,123846,15577,1 +108751,Deborah,82341,49170,2 +108752,Dorm Head,8669,1073625,40 +108753,Popiel,35021,82513,3 +108754,Officer,5965,46932,20 +108755,Dave Baxter,147903,89525,5 +108756,la prostituta,103216,224944,3 +108757,Wim,140894,32565,6 +108758,Nurse,267793,1315951,25 +108759,Blonde Woman (uncredited),52440,141010,46 +108760,Headmaster,18739,79888,14 +108761,Colonel Grimes,89086,34320,14 +108762,Clothilde,153717,1134589,3 +108763,Crow,18899,1139045,10 +108764,Ryan,86703,933547,7 +108765,Himself,201419,1536686,4 +108766,Holly,47540,7430,5 +108767,Miguel,38269,553280,6 +108768,Karima,209266,54338,2 +108769,Mom / Mrs. Scarry,81660,9279,4 +108770,Benny,28000,987050,7 +108771,Louis,88518,107322,9 +108772,Katina Jonsdottir,43524,232026,1 +108773,Antonio,325690,1871429,9 +108774,Immigration Officer (uncredited),52440,102888,59 +108775,Greta,99361,1545081,0 +108776,Detective,26516,78773,14 +108777,Gervais,13741,48514,1 +108778,"Femme ""Coeur à Coeur""",10268,35136,13 +108779,Himself,27637,1724701,46 +108780,The Joker and Jordan Pryce,16234,2,2 +108781,Séamus Clarke,262958,1537738,25 +108782,Russische Arzthelferin,613,1323652,50 +108783,Kazuko Saotome (voice),152042,65437,9 +108784,Doorman,323675,1325939,33 +108785,John Ramsay,15163,27678,19 +108786,Captain Albright / Captain Midnight,261035,118633,1 +108787,Ann,214086,15851,4 +108788,Bunny,47312,87027,16 +108789,Anne James,83354,587875,7 +108790,,348315,91347,16 +108791,Tina,79316,92877,4 +108792,Vicki,296025,36594,1 +108793,Detective Wang,346646,1856377,6 +108794,Meesha,295723,1418248,20 +108795,Vicky,69428,85523,3 +108796,Caspasian Speckler,17238,2192,2 +108797,Bo,408203,1132167,4 +108798,Ted Rogers,119639,78141,2 +108799,Kid gangster #1 (uncredited),4982,209266,92 +108800,Artie Dixon,99863,14565,2 +108801,Rolf Swedenhielm Jr.,76380,578533,1 +108802,Peter som barn,24821,111541,13 +108803,Yulij,3102,99269,7 +108804,Mirjam,260528,1243536,5 +108805,Corporal (voice),270946,53,8 +108806,Huddie Ledbetter,63773,42156,0 +108807,Gaston Lefebure,77673,18816,12 +108808,,371153,40023,2 +108809,"Mansueto Tettamanzi, il padre delle sorelle",73697,1037360,5 +108810,Lug,25132,20499,9 +108811,Dream Girl (uncredited),80941,1036813,26 +108812,Greta,98066,95521,9 +108813,Professor Kefah Mokbel,337549,20806,11 +108814,Sjómaður 2,341490,1145050,11 +108815,Steve,14874,152820,5 +108816,Grover Kendall,90465,14518,4 +108817,Andy (voice),5559,1237323,16 +108818,Alexis,435707,272018,6 +108819,Marec,74822,3581,2 +108820,Clémence,13336,109519,11 +108821,Philip Whalen,156277,9976,4 +108822,Joiner,153162,1411097,14 +108823,Eugenics' Little Boy,5552,1513404,14 +108824,,148408,1127788,1 +108825,Empress Eugenie,78318,25173,7 +108826,Best student (still),292625,1758600,12 +108827,Nathan,31221,83405,8 +108828,Nick Joel,118948,1002057,8 +108829,Psychic Tourist,120478,1072881,9 +108830,Maria - her daughter,47190,1663169,3 +108831,Uplifter,3059,1557078,20 +108832,Sara Harper,63858,41516,5 +108833,Administrator Allsop,6972,150536,17 +108834,Voitto Kiimalainen,89330,143126,2 +108835,Maj. Bernard R. 'Barney' Benson,110502,10017,0 +108836,Judge (uncredited),45627,1550,8 +108837,Auste's Friend,310568,1588818,7 +108838,Jeff,42187,1488886,7 +108839,Captain of the Guard,11839,50573,8 +108840,Comic Con Fan,214756,1759612,61 +108841,Eleanor Tilney,18093,232941,10 +108842,Sister Marie,65787,13963,6 +108843,les filles en bikini,252102,1377186,13 +108844,Himself - Trombone,37038,116651,13 +108845,Samsara Dietz,257088,20374,2 +108846,Mr Cellars,218778,1223718,34 +108847,Euro Minister,394645,1611253,9 +108848,,47795,10331,4 +108849,Nurse in the Nursery,124115,967133,31 +108850,Sam,84892,10990,1 +108851,Rosie,83588,1478382,10 +108852,Julie Palmer,226701,1860630,6 +108853,Lo Dorman,200324,109088,1 +108854,Marietta,202941,15950,4 +108855,Lane Nomura,17274,24200,4 +108856,Quinlan,13957,4935,6 +108857,Alex Borden,9987,61510,5 +108858,Matrose,3716,1399641,24 +108859,Billy Hill,9812,6474,3 +108860,Extremis Soldier,68721,1332241,86 +108861,Devola,128364,160271,1 +108862,,288424,1351058,5 +108863,Reporter,921,1496026,33 +108864,Mario Minniti,159810,107626,5 +108865,Arjun Balakrishnan,63825,108216,2 +108866,Roy Bensinger of the Tribune,987,14831,4 +108867,Passenger,20444,12357,4 +108868,Nicola Jenrette,107942,167120,1 +108869,Stella,55725,1829338,13 +108870,Medical Captain,72638,124882,32 +108871,Tanya,39781,60033,5 +108872,Lt. Mitgang,17657,48548,12 +108873,Wayne Morrison,16080,117487,3 +108874,Monja,79779,82667,4 +108875,Thorlby,127560,1205488,9 +108876,Addley Koffin,101669,60878,10 +108877,Jim,220029,2629,1 +108878,Sonia,4266,35255,7 +108879,George,78691,64670,23 +108880,Ruth Leighton,153652,40954,0 +108881,Greg,337104,965205,4 +108882,Herself,355984,1213084,3 +108883,CIA Jet Agent,177677,1388917,65 +108884,Mei Ling,9461,230538,10 +108885,Amanda,137683,1187106,6 +108886,Mr. Stevenson,364690,1904,2 +108887,Woman in Waiting Room,55167,1384988,11 +108888,Insp. Carl Hamilton,193177,161650,3 +108889,No Dice,109466,155577,9 +108890,Rohan,310123,1495914,2 +108891,Bill Lydig,38460,11496,7 +108892,Rebel Marine on Yavin,330459,1555943,55 +108893,,48959,53349,0 +108894,Sen. Fred Dalton Thompson,25890,17874,3 +108895,Kuba,61580,1150095,1 +108896,Kurt,26518,77080,1 +108897,Curt Bridges,86608,10158,0 +108898,Marine Captain,424488,1205880,58 +108899,Astronomo,28063,39432,9 +108900,Commandant,94811,88672,6 +108901,Jolly Jumper,11175,134439,5 +108902,Corinne (as Sylvie Wetz),8932,931683,3 +108903,,132705,953810,5 +108904,,185987,1198480,13 +108905,Renata Clarke,91551,21676,3 +108906,"Yvonne, la dame des lavabos",44256,592749,13 +108907,Check Point Soldier,53870,587339,19 +108908,"(segment ""Chawan no naka"")",30959,119185,71 +108909,Sergeant Moore,296523,1114412,13 +108910,Susie Brown,239566,19492,3 +108911,Esther Almada,370741,954498,1 +108912,Capt. Conklin,69668,1228293,15 +108913,Willie Sharpknife,18512,152682,6 +108914,Paul,14976,58549,4 +108915,Fargo,29979,10132,3 +108916,Nate Tomkins,16442,589728,19 +108917,Vinnie Krailes,144580,2059,2 +108918,Manny,23397,68898,7 +108919,Friend Tim 2,348320,1869097,28 +108920,Attorney,99229,1349104,9 +108921,Irene,41427,126445,7 +108922,Chief,11328,1348442,9 +108923,Patsy Clifford,193878,13963,4 +108924,Bernard,85429,54274,17 +108925,Schlauch,16171,79864,11 +108926,Goofy (voice),66984,5462,1 +108927,Jennifer,126947,68445,3 +108928,Svetlana Ivashova,94696,235320,0 +108929,Peggy,70695,2453,3 +108930,Richard Hart,1259,2440,2 +108931,,79151,126778,2 +108932,Duff Daniels,57203,1145673,3 +108933,Nicolas,240913,110018,5 +108934,Mr. West,83015,114837,14 +108935,Bunny Miller,14750,55266,1 +108936,Prof. A.R. Kraal,26516,100919,10 +108937,Pub Bruiser (uncredited),297762,29333,97 +108938,Peer Bille,225244,89811,0 +108939,Grim Knight Dancer,243683,1398124,60 +108940,Louisa Abbott,112284,9073,12 +108941,"Un client chic de ""L'ange Gabriel""",68822,1326566,21 +108942,'Buz' Cobb,111470,939846,9 +108943,Larry,302699,132639,20 +108944,Mark,458335,202032,2 +108945,Jaws Four,18741,26727,2 +108946,Grey Crusher,29610,43115,23 +108947,Frau Brückner,29161,44959,2 +108948,Maddie,16151,79709,21 +108949,Core Student,38322,1869054,51 +108950,Moody,147106,159024,14 +108951,Machine Gun Assassination Squad Leader (uncredited),3580,1209730,72 +108952,Herself (as Natalia Dicenta Herrera),320037,1195027,3 +108953,Deacon,32577,1763862,22 +108954,Galapiat,15457,38500,5 +108955,Celie Drummond,37301,127642,15 +108956,William Reid,142150,10648,2 +108957,Bollywood Dancer,393445,1663439,8 +108958,Baba Balaam,341007,1637933,11 +108959,Hank,83802,1017990,16 +108960,Brian,83588,35013,0 +108961,Jacko Spina,46586,9900,14 +108962,Well-Meaning Father,74,97446,24 +108963,Club Dancer,2001,1036843,63 +108964,Al Hendrix,19505,8656,3 +108965,Tom,41556,19536,2 +108966,Charlie,43923,1719599,27 +108967,USSE Bridge Crew,188927,1897707,40 +108968,The Barber,82313,161591,14 +108969,Christopher Jackson,362026,1516699,5 +108970,Freund von Marcel,130739,1805294,28 +108971,Herself,417870,1233245,28 +108972,Color Guard,28090,1719883,19 +108973,Alex Greville,45938,115573,1 +108974,Dino,43205,129314,5 +108975,Maxine,181753,80990,5 +108976,"Frank - ""Fuzz"" Cop",14923,77522,19 +108977,Debi Walden,382951,59252,1 +108978,Никита,428398,1745329,4 +108979,Merlin,7096,4783,0 +108980,Ottawa Indian Child,97614,1207362,21 +108981,Charlotte Tildon,376501,219666,7 +108982,Troubles Moran,85420,80928,5 +108983,отец,88491,86637,0 +108984,,36253,1699715,7 +108985,B-Boy (uncredited),397717,1722994,43 +108986,Claudel,126442,33292,1 +108987,William Van Dort / Mayhew / Paul the Head Waiter (voice),3933,34900,4 +108988,Local,51049,81690,9 +108989,Ben Clayton,77877,211429,4 +108990,Mike Henchman,89921,37145,7 +108991,Agent Brown,256092,1895154,22 +108992,Karl Treffz,280004,110139,17 +108993,François,40693,124506,4 +108994,Cecco,84056,120274,4 +108995,Weapons Engineer,324670,1720438,19 +108996,Sherry Swanson,13075,1579,0 +108997,Host / Pierrot / The Marine / Sinbad,47310,13294,0 +108998,Kate,92657,1154455,0 +108999,Kenraali Gustafson,55763,223074,5 +109000,Teddy Hutchins,120615,50306,6 +109001,Gino,10482,1925,6 +109002,Mrs. Toda,94659,1112345,3 +109003,Airport Ticket Agent,47186,552223,33 +109004,Cesira,105509,590556,4 +109005,Kung Fu Choreographer,14543,18899,13 +109006,Vineethan Pillai,332827,82732,0 +109007,Antieau's Secretary,339419,1442233,53 +109008,,22701,1187642,14 +109009,,5165,1184832,17 +109010,Sheriff,8144,31753,7 +109011,Filmmaker Who Isn't Wim Wenders,65509,3289,8 +109012,Velma (voice),13354,86314,2 +109013,Gus Bennett,41597,35321,1 +109014,Toyama,54146,96805,2 +109015,Médecin,2566,26104,7 +109016,Mère de Julie,4191,35247,9 +109017,Singer at Party (uncredited),18774,115573,25 +109018,Lawrence,55190,130329,3 +109019,Moesgaard,22140,209386,3 +109020,Joe Baker,60422,12950,5 +109021,Baldy Morris,86472,39165,7 +109022,Avalow,4923,40042,4 +109023,Schadle,613,1289290,38 +109024,Vlad Romanov,399894,1658144,12 +109025,Sandy,245906,1684337,21 +109026,Antero Paulo,300487,124285,3 +109027,Reseptionisti,366249,125588,8 +109028,Gen. Katana,8010,11086,3 +109029,Astrid,345915,1559929,25 +109030,Hollis,57201,37027,28 +109031,Эдик,330878,225670,7 +109032,Phyllis,95504,11498,7 +109033,Old Drunk,6972,38665,30 +109034,Pierrepoint,64167,20128,7 +109035,Olga,62616,298703,8 +109036,Background,408508,1707550,13 +109037,Arthur Briggs,47906,107978,9 +109038,Otto Gruenwaldt,108282,6609,2 +109039,Tochter (voice),18912,83868,3 +109040,"Raoul, Vicomte de Chagny",76115,231674,2 +109041,,56589,1230676,17 +109042,,202238,283391,7 +109043,Andres Ascencio,16382,1603,1 +109044,USC Coach Howard Jones,43812,1196982,16 +109045,Murphy Bivens,8669,419,4 +109046,Jennifer,413882,1758519,9 +109047,Mr. Palamino,10033,43429,10 +109048,Aarthi,236808,1125016,1 +109049,Agent Norm,34729,1542,7 +109050,Hotel Night Clerk,25807,34285,9 +109051,Wong Fei Hung,18731,1336,0 +109052,,88529,551776,0 +109053,Dr. Benjamin Marris,14432,12640,0 +109054,Sofia,33436,128433,4 +109055,Rae,28671,101539,3 +109056,,202238,975037,1 +109057,Capelli Corti,49850,556730,13 +109058,,256836,1355226,7 +109059,Giulietta,66700,1630543,8 +109060,Death Row Guard,26376,3262,31 +109061,,238925,1273679,4 +109062,Gabs,334538,569210,7 +109063,Sheriff,11939,34208,10 +109064,Dr. Stephen Kildare,153165,17756,4 +109065,Noboru Itami,105210,1502395,5 +109066,Marina,380731,131739,10 +109067,Elder,227156,1084896,15 +109068,O'Brien,2742,17646,15 +109069,General de Muro,111759,1042599,3 +109070,Sal,34672,2139,7 +109071,Kao's Father,88811,1462242,8 +109072,Gil Deloach,43670,3266,4 +109073,Policeman at Gregory's Home,149793,1092484,37 +109074,Wayne Gross,123770,532,1 +109075,Hank,25241,1765266,11 +109076,Julie,48333,1056174,8 +109077,Taxi Driver,91583,1692500,12 +109078,"Cosa, la compagna sudamericana",56339,1891140,7 +109079,West,66925,564324,3 +109080,Hotdog Vendor,59408,21944,13 +109081,Travis,97614,30617,7 +109082,Z (Young),176983,550087,10 +109083,Cypress Triad Hood #1,15092,1895596,34 +109084,Attorney general,12811,1827460,19 +109085,Tess,209263,933271,9 +109086,Charwoman,211059,1194929,6 +109087,Louisa James,37534,16970,1 +109088,Rodeo Announcer,37932,27138,12 +109089,Linton,36597,30319,7 +109090,,46982,1537360,17 +109091,Gonzales,92496,112159,8 +109092,Mrs. Dugraj Singh,20495,86230,7 +109093,Hombre en cabaret (uncredited),210653,179522,14 +109094,Erica Bain,4413,1038,0 +109095,,37340,5682,6 +109096,Early Christian Woman,43252,10023,20 +109097,Izumi Shimomura (voice),357390,1281498,7 +109098,Mrs. McCauley,14750,1657356,14 +109099,Nicholi,18070,95640,4 +109100,,201429,22744,16 +109101,Himself,111332,995644,5 +109102,British Soldier,121823,1102422,16 +109103,Police Chief,2994,32677,5 +109104,Mr. Williams,152570,96056,7 +109105,Trucker 2,11496,1525608,10 +109106,Fletcher,48838,23776,11 +109107,Paul Dellenbach,9389,378,3 +109108,Camper #1,251227,1286548,12 +109109,Vince Bernard,295581,1077775,9 +109110,Wally,428687,1776839,16 +109111,Ray,58763,1157087,3 +109112,Sandra,359870,1807041,16 +109113,Himself,71668,28238,6 +109114,Court Attendee,339994,1593376,31 +109115,Mother,27599,98318,2 +109116,Larry - a Father,14589,14454,20 +109117,Antonio,58615,1615899,12 +109118,Charlotte,311291,178614,2 +109119,Steve Dough,397837,1710661,14 +109120,Tiny,9953,60879,10 +109121,Ostrich / Vulture / Lizard (voice),333372,1459261,2 +109122,Terry North,131351,16754,7 +109123,Leslie Durrell,44746,55469,3 +109124,Cynthia,205798,102938,14 +109125,Judge,773,236611,25 +109126,Fausse Kristin 1,382591,1795277,20 +109127,Shannon,26882,71814,3 +109128,Bartender,81475,271798,13 +109129,Bordsteinschwalbe,6183,48513,13 +109130,Dimitri,8366,37034,4 +109131,Mary Sullivan,21927,85070,5 +109132,Grace,363439,1521376,6 +109133,Kyung-Soo,280019,1336800,5 +109134,Boy on Bike,6977,572541,16 +109135,Jimena,16638,16757,1 +109136,Irene,340275,15565,3 +109137,Passenger,211059,122428,5 +109138,Paulie Hausman,128311,117885,1 +109139,Officer Jimmy,245891,1218218,20 +109140,Nathalie Meissonier,72917,38863,2 +109141,Saya (voice),233423,35341,5 +109142,Korba,14558,52007,2 +109143,Mexican Husband with Family (uncredited),87123,120705,16 +109144,Priscilla Presley,45120,74951,2 +109145,Whitey,55989,21200,3 +109146,Bertalan Blaskovich,447236,928376,8 +109147,Otto von Oettingen,447236,231049,3 +109148,Director,83475,147271,7 +109149,Elly,37181,213371,2 +109150,White House Reporter #1,257344,166029,12 +109151,,220005,1204942,1 +109152,Rosie (10 yrs),200727,1726976,19 +109153,Schizo-Head,284564,1237876,12 +109154,Burcu,77862,145289,3 +109155,Headmistress Higgins,16985,52878,5 +109156,Carlos Ramírez,43546,1061273,6 +109157,Signora Mattoli,142982,31696,3 +109158,John Mark Karr Auditionee / Himself,430826,1891566,70 +109159,Department Store Extra,94251,121323,18 +109160,Suzie,46190,178789,3 +109161,Bus Driver,393732,173835,10 +109162,Chad,45649,57093,2 +109163,Richard Hardy,70368,558289,1 +109164,Zeng (voice),9502,58873,8 +109165,General Meade,364410,21245,4 +109166,Eddie Martinez,22585,41798,4 +109167,Mrs. Matthews,75363,1300301,6 +109168,Ältester bei Schama # 1,2734,27669,48 +109169,Pack-o-Smokes Guy,2295,23633,18 +109170,God (voice),73933,2714,3 +109171,Wyatt,82990,984724,3 +109172,Cliente Bar do Piloto,70666,559190,37 +109173,Whitey,84450,5139,4 +109174,Ex alunno,315872,1409555,5 +109175,Cupidon,46563,119306,4 +109176,Mutter / The Mother,20017,39755,6 +109177,Myshkin,18070,76234,13 +109178,Greider,248933,32987,0 +109179,Skippy,52936,883,4 +109180,John-Joe,1420,2039,5 +109181,Little Craig,43923,1719597,19 +109182,Linda,103597,400,2 +109183,Philippe Neuville,10795,19866,9 +109184,Dr. Fisher,43250,4077,7 +109185,Himself,18898,37758,0 +109186,Officer de Luca,158990,132857,6 +109187,Pastor Kjeldgaard,433082,4467,4 +109188,,67633,119949,21 +109189,Jack Carter,80596,4786,3 +109190,Narrator,258147,51797,1 +109191,le prêtre,64437,19069,9 +109192,Andrew Pederson,283384,33343,21 +109193,Kevin Fischer,9286,57136,1 +109194,Rebecca,263115,1717113,35 +109195,Lena Luthor,460135,1249820,9 +109196,,117212,1200247,19 +109197,Saul as a young boy,362463,1458922,8 +109198,Marjorie,198001,5047,1 +109199,Burton White,2982,2782,9 +109200,Man at Club (uncredited),17136,1364421,22 +109201,Rob Randolph,45156,6106,11 +109202,Daria,74395,1075818,7 +109203,Elderly Customer,62046,1005864,22 +109204,Daniel Trieb,231540,69523,0 +109205,Splinter,147939,1127748,4 +109206,Tall Baby Weems Storyboard Artist with Mustache (uncredited),22752,82863,17 +109207,Surfer,17483,81961,16 +109208,Captain Hornsby,28448,58623,5 +109209,Tom,30478,1376313,5 +109210,Grandmother,121462,1411871,5 +109211,Sam Bennett,52440,37446,4 +109212,Kenraali Gustafson,55754,223074,4 +109213,David Flanner,259292,72059,2 +109214,Jago,290762,14887,4 +109215,Gillette Factory Worker (uncredited),259695,1602952,25 +109216,Narrator (voice),214756,2387,16 +109217,Party Guest,11172,454223,48 +109218,Raymond Pelley,31472,120676,20 +109219,Brent ('Ghost'),285860,1094772,8 +109220,Nightclub Extra,108222,121323,35 +109221,Mrs. Potato Head (voice),10193,61964,10 +109222,Stu Price,45243,27105,1 +109223,Tank,286657,1353936,1 +109224,Jennifer Landau,21927,1560936,11 +109225,Bibi,25797,94216,6 +109226,Aslag Laagje,77922,117942,3 +109227,Cult Dude,84348,1090691,22 +109228,Tess Coleman,10330,8944,0 +109229,Dr. Jonah Strauss,29136,12122,2 +109230,Jessica,59296,523979,3 +109231,Stormtrooper,330459,1184928,83 +109232,poliisi,442752,1761843,36 +109233,Barszczyk,382155,1116062,11 +109234,Jean-Pierre Debord,245775,549333,12 +109235,Josh Gifford,149926,39188,2 +109236,,73628,569895,5 +109237,Guard,2001,1781706,47 +109238,Jozef Bostanescu,24624,49965,7 +109239,Dick Holbrook (as John Eldridge),41234,96701,6 +109240,Peter,9943,1861,2 +109241,Chris,62527,60255,3 +109242,Jake,259997,24965,3 +109243,Tony Greco,94894,3497,2 +109244,Luis Chama,14881,11163,2 +109245,Kiichi Matsumoto,125257,1559748,4 +109246,Lawyer,30174,85161,13 +109247,J-Man,10710,4690,3 +109248,Wesley,364690,1670958,8 +109249,Bud Mitchell,107593,120054,10 +109250,reclutatore di zoppi,75336,118499,21 +109251,Joyce,55853,223273,4 +109252,L'Évêque,16147,79618,14 +109253,Madame Germaine,35016,13506,2 +109254,Christian,169794,984629,9 +109255,Daaga,41903,55066,4 +109256,,11328,1444510,59 +109257,Cykelbudet Erik,82448,928016,17 +109258,Mrs. Pinkem,41599,127023,6 +109259,Priest 2,21927,1323612,4 +109260,Iqbal,21567,53974,2 +109261,Himself,212063,1291643,6 +109262,Laura,395763,1802433,10 +109263,Sir Walter Raleigh,43327,20393,0 +109264,Samantha LaForche,64720,83002,1 +109265,Airforce Officer (uncredited),1726,1209724,78 +109266,Köves Jutka,436343,1774254,7 +109267,Deputy Truvio,383538,1631189,5 +109268,Jane Adler,22897,5064,0 +109269,Ally,214100,1204379,1 +109270,Social Services Man,365942,1301885,33 +109271,Amos Bixby (Train Conductor / narrator),47914,13298,11 +109272,M. Malaquet,62675,24933,10 +109273,Mr Bruce,228074,100787,8 +109274,Konko,343934,5384,8 +109275,,63215,1520902,13 +109276,Härski Hartikainen,62897,116159,2 +109277,Joe Vitto,86360,1152387,9 +109278,Atti,252171,81839,8 +109279,Cinderella,92349,100047,0 +109280,Stephanie,109439,61182,13 +109281,Mari Veensalu,318184,1413688,4 +109282,Frank Wittrock,144471,104625,3 +109283,"(segment ""Kurokami"")",30959,552642,7 +109284,Elizabeth Richmond,116780,7331,0 +109285,street ruffian,102197,150734,9 +109286,Cop,6589,50588,9 +109287,,74430,104628,9 +109288,King George,300155,4757,3 +109289,Madam Chatquipet,24363,77096,11 +109290,,315872,119351,6 +109291,Jandice,213681,1240487,3 +109292,Maya,12432,124618,3 +109293,Roscoe,202337,58813,4 +109294,Tourist Daughter,5237,928735,22 +109295,Rocco,122023,30316,4 +109296,Obnoxious Bar Guy,77930,1784602,22 +109297,Accountant,89492,22224,15 +109298,Teresa,208579,1019359,0 +109299,,347835,87471,6 +109300,Harmoney,4641,38704,4 +109301,Léa,59163,20441,3 +109302,,118257,2725,8 +109303,Tess Chaykin,17669,23931,0 +109304,Tom Stansfield,2830,18976,0 +109305,,77673,47886,29 +109306,Guy in Club,294652,1883850,26 +109307,Sophy in Prologue,174925,148819,4 +109308,Reporter,921,174580,31 +109309,Mountaineer (uncredited),16442,30017,67 +109310,Peggy Burns,177902,975725,10 +109311,Himself - Singer,27814,1856504,21 +109312,Financial News Analyst,13483,81681,18 +109313,Zale Fight Referee (uncredited),28000,1091312,22 +109314,Girl Harvesting (uncredited),96724,148139,52 +109315,Veikko Hopea,150208,148016,2 +109316,Tony Schwerke,93313,1031220,7 +109317,Billy,106747,968889,17 +109318,Autowasser,159514,1344884,12 +109319,Hagen,10659,66068,2 +109320,Abedi,382125,1576782,6 +109321,Male Guest,13777,75278,32 +109322,Elias,2295,23740,7 +109323,Agent Hope,117251,4177,12 +109324,Bob Lennart,131781,12312,8 +109325,Vincent,11399,146212,6 +109326,Alessandro Corso,64526,239309,0 +109327,Greta Laschen,65002,42400,4 +109328,Muten Roshi,39102,618,10 +109329,Waiter,37672,164859,3 +109330,German Embassy Official Lisbon,4375,13696,8 +109331,Joyce MacMillan,176867,95295,1 +109332,Bill Wrather,226968,90163,6 +109333,Anne,261112,1069764,7 +109334,Teacher,32559,1138248,6 +109335,Young Mary (voice),24238,92731,4 +109336,Seva,421741,1696087,6 +109337,Detective Sgt. Sean Davidson,41522,44248,5 +109338,Paloma,42502,4069,1 +109339,Gideon Grey (voice),269149,567562,26 +109340,Elisabeth Turhapuro,62897,116159,1 +109341,Un ami,82327,1129856,7 +109342,Twin Vampire,29128,81748,4 +109343,Major Brent Beardsley,30527,55876,2 +109344,Jack Hale,76094,4091,8 +109345,Olivier,186755,56285,4 +109346,Mr. Potts,81232,20766,3 +109347,Butler,43811,1278060,72 +109348,Abbot Cellach (voice),26963,2039,2 +109349,Phil Canon,20106,47337,2 +109350,Sargent Chen,324670,113308,9 +109351,Harland Davies,40925,130840,2 +109352,Waiter,71120,1359158,19 +109353,Malaescusa,332354,962,4 +109354,Mirai Yashima,16157,125285,2 +109355,Reza's Mother,45899,1339668,2 +109356,Police Guard,107250,1239425,23 +109357,Clarisse,2861,28626,3 +109358,Grandmother,69717,17787,5 +109359,Neha Banot,14751,86069,3 +109360,Kim Sung-yeol,24822,93999,2 +109361,Dr. Baker's Receptionist,291866,114268,13 +109362,Lieutenant Theodore Groves,285,4031,15 +109363,"Marta, la signora altezzosa",43379,19586,5 +109364,Police Captain R.L. Davis,118134,999884,6 +109365,Himself,41994,196500,3 +109366,Barrientos,144229,59179,6 +109367,Kato (voice),14069,1133290,9 +109368,Madame Charlotte,21780,1254588,17 +109369,Cpl. Scott Grayston,44943,429,17 +109370,Bookworm (voice),10193,21125,28 +109371,Georg Thom,167330,44393,4 +109372,Dahlgren,24647,74384,13 +109373,Eurydice,1966,1650962,30 +109374,Lagmannen,87654,227259,26 +109375,Junior CDE Executive,64328,119589,30 +109376,Hunslett,38654,13328,4 +109377,First Hood,30141,3490,5 +109378,Eddie Marshall,85435,79128,15 +109379,Johann Wolfgang Goethe,52475,31663,0 +109380,Ruth Marshall,28775,101959,3 +109381,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,134600,13 +109382,Erno,96106,4661,4 +109383,Claire,205818,77795,1 +109384,Mousey Man's Wife,4932,103936,5 +109385,Dison,333385,1165616,11 +109386,Gatekeeper (uncredited),31984,189856,30 +109387,Nikki,16428,17773,3 +109388,Uncle Eroshka,207636,1190485,8 +109389,Félicie,76871,15138,2 +109390,Senhora Amélia,83229,1431879,8 +109391,Mandy Claypool,65650,1322391,20 +109392,,102272,234362,6 +109393,Denny,15936,65732,6 +109394,Dr. Lewis,82395,86442,8 +109395,Sarah Devlin,176670,2772,9 +109396,Kailani Laguatan,72545,67599,3 +109397,Everard Logan,43850,3359,1 +109398,Henry Arau,16436,8198,5 +109399,Frau Riethof,341491,20864,2 +109400,SPAC / Londinum Fighter (uncredited),274857,1481440,58 +109401,,255772,1325577,3 +109402,Detective St. John,242310,2047,4 +109403,Private,7454,1048868,10 +109404,Prisoner,81541,147144,15 +109405,Monk Lanigan,88288,111578,2 +109406,The Bratzis,290825,19303,15 +109407,Joey,15909,1076564,13 +109408,Mobidyk,158947,1784287,10 +109409,Rocky Miller - Beaver Canal Resident (uncredited),28433,31503,12 +109410,Mère de Olivia,117678,1175822,5 +109411,Wade (voice),51786,97181,3 +109412,,104374,1619183,6 +109413,Staff Member #4,312221,1746933,53 +109414,German Reporter,1165,1416230,23 +109415,Brenda Goodman,252682,59846,2 +109416,Shim Min-Ho,296633,587675,2 +109417,Jock,335970,1718103,35 +109418,Chen Geng Yun,121823,1065761,10 +109419,Guardacostas 1,43751,133003,3 +109420,Newsagent,55433,222377,10 +109421,Cantor Rabinowitz,939,13342,2 +109422,Antoine (16-22 ans),338189,1505023,8 +109423,Boy Hayes,12247,71884,3 +109424,Oshio,273096,21503,3 +109425,Hamza,271954,1324297,3 +109426,Robin,46228,1060330,3 +109427,Cookie,9803,233401,5 +109428,Jenna,117251,166688,19 +109429,,78450,1559777,9 +109430,Head of Interpol,2463,25252,6 +109431,Kaio / Dr. Briefs / Narrator,126963,619,6 +109432,Clark,313922,21633,8 +109433,Gravelle,28044,2922,1 +109434,US Marshall,266285,1459810,37 +109435,Agnes,40028,44995,9 +109436,Young Man with Earring,328589,55469,20 +109437,маленькая Маша,428398,1677547,7 +109438,Mel the Mailman,253077,65920,11 +109439,Léa,8276,39195,1 +109440,Rosita (as Ana Paulina Cáceres),20941,1723685,12 +109441,Рыжая,20879,86707,3 +109442,Nightclub Patron,167810,1738240,37 +109443,Himself,41994,562652,1 +109444,Miles,9893,60075,13 +109445,Professor Albert,317182,1215275,10 +109446,Sam,23367,67599,0 +109447,Dick Digger,35026,1333898,11 +109448,Herself,24235,91398,7 +109449,Riley,241258,1369321,10 +109450,Tina,43741,15556,4 +109451,Max Cardinal,7916,942,5 +109452,Teddy Sanders,325133,29222,2 +109453,"Fumikichi, Sasaya's Friend",43364,134403,9 +109454,Ramona,4497,16314,4 +109455,Tall Father in Derby,14589,148402,77 +109456,Jake,181753,1242472,4 +109457,Captain James Hook,120672,98034,9 +109458,Felix,314011,1425935,4 +109459,Mango Perez,48202,150944,6 +109460,Julia,24657,138814,5 +109461,Primus,382125,77976,2 +109462,Dylan Allen,344255,63564,4 +109463,Fabio Galante,419522,1321683,21 +109464,Cale Crane,12920,501,1 +109465,Minister,30982,148035,7 +109466,DJ Suki (voice),136799,77070,5 +109467,Lak,35639,116037,4 +109468,Eliza Coles,9828,18354,2 +109469,,277934,145331,1 +109470,Tigress (voice),81003,11701,1 +109471,Phil Olivetti,67460,1242792,1 +109472,Deborah Lacks,424600,13309,3 +109473,Father McDuffy,64928,984870,18 +109474,,148622,240543,11 +109475,Sanjay,22241,85033,1 +109476,Kungfu teacher,41380,1109778,9 +109477,Jenna,11908,966742,7 +109478,Andrew,199056,38582,0 +109479,Terrapine,19350,1103483,20 +109480,Susumu Sato,135799,137028,10 +109481,Mary Queen of Scots,11788,183201,7 +109482,Fotograf,56858,1434412,15 +109483,Deputy West,294272,54494,12 +109484,Innkeeper / Guard,104430,97982,9 +109485,Malnik,31221,107793,3 +109486,Izumi Nobuko,282069,80864,11 +109487,Albert Pepperday,43688,99370,3 +109488,Ken Chambers,213681,1696149,9 +109489,Hilda - Cook,197737,974965,17 +109490,Scotland Yard Man,21451,120445,15 +109491,Christopher,329010,1435416,4 +109492,Carlos,278348,1333735,8 +109493,Kronos/Supersonic Man,28482,1385899,1 +109494,Ted's Wife,88012,92700,10 +109495,Renee,137145,154960,3 +109496,Interviewee,32694,9147,11 +109497,cassiera del bar,82083,128236,12 +109498,Himself,191502,37221,7 +109499,Eva,169068,1610317,12 +109500,Evan Webber,76494,155209,5 +109501,Rope Whitaker,61581,40568,3 +109502,Elizabeth,129798,51526,5 +109503,Evelyn,269795,1536170,9 +109504,Larry,81120,101875,1 +109505,Constance (voice),9297,3391,14 +109506,Forensic Nurse,44945,1799449,27 +109507,Janine,256347,58045,4 +109508,Martin Klamski,167938,1370,0 +109509,Kim Johnson,49950,159962,6 +109510,Anka,133521,105562,0 +109511,Bob Washington,252682,72028,4 +109512,Giancarlo,58615,1057236,11 +109513,Sandy,269795,81331,5 +109514,Citizen,28090,186698,15 +109515,Gordon's Limo Driver,19665,123309,24 +109516,Sorority Girl #2,28026,1322477,15 +109517,Falco,20055,2506,3 +109518,Manne,33481,4826,0 +109519,Frank Newcombe,43562,98503,5 +109520,Willy Wonka,118,85,0 +109521,Cindy,4365,35875,0 +109522,Dedra Davenport,45013,10882,2 +109523,Eldon,45729,67453,5 +109524,Family Member,236399,591210,13 +109525,Noel Van Mess,98125,89684,5 +109526,The Vampire,67342,57609,5 +109527,Eric's Father,18898,1623640,11 +109528,Policeman,403605,562217,8 +109529,Cynthia,88390,88171,2 +109530,Fã 1,448763,1848652,16 +109531,Jorrun Anderson,322148,1522731,4 +109532,Mademoiselle,9539,59614,3 +109533,Pierre,182545,1165639,0 +109534,Key Zombie,66925,564329,13 +109535,,297745,545137,3 +109536,Coach,337958,1561025,4 +109537,Lassong,2197,4815,5 +109538,British General,51947,14264,13 +109539,Troupe,19995,1207262,40 +109540,Agent Smith,66741,106488,9 +109541,Corazon,1272,1620,3 +109542,The Waiter / Bartender,36628,108256,5 +109543,Michael Karl Popper,24914,56347,0 +109544,Geneviève Rougemont,37653,23733,6 +109545,,105760,41047,15 +109546,himself,20301,96275,11 +109547,Police Detective,27966,1240252,27 +109548,Elevator Passenger (uncredited),28000,1364421,84 +109549,Waiter with Telephone,64807,1451161,16 +109550,My,56596,1105513,6 +109551,Noah,235260,26706,19 +109552,,88529,213464,8 +109553,Balón,98586,6540,10 +109554,Father Patrick Ryan,59828,84935,8 +109555,MacNamara,214753,10697,8 +109556,Lovas,42132,125402,9 +109557,Tim Murtoch,34977,3163,8 +109558,Geoffrey Halliburton,236395,1128883,7 +109559,Dynamites,2976,168925,80 +109560,Pirate,71805,174723,5 +109561,Albert Düsseldorf,128396,133604,6 +109562,,461088,1005696,6 +109563,"Bertha, Köchin",798,11931,4 +109564,Marnie Littlefield,15674,96392,5 +109565,Pop,43809,120556,64 +109566,,148265,148363,3 +109567,Mrs. Katz,19181,1097801,16 +109568,Alice Monroe,2687,589,1 +109569,,284305,982296,4 +109570,Cattleman at Meeting,75315,34890,43 +109571,Kitty Boots,33343,67581,13 +109572,Young Girl (uncredited),31984,1845946,20 +109573,Elizabeth,300983,1174504,7 +109574,Doctor,42188,26679,23 +109575,Stig Helmers advokat,22140,1640,6 +109576,Syringe Heavy,206647,1599264,57 +109577,Jimmy Brown,177902,78902,6 +109578,Security Guard,78383,134859,10 +109579,Bouncer,10362,1758889,19 +109580,Bad Boy,68387,551474,12 +109581,Ki-tae,214910,138336,10 +109582,Client,304372,1720641,32 +109583,Попандопуло,20879,86705,8 +109584,Alma,181876,563068,6 +109585,Letvinko,51823,2368,11 +109586,Police commissioner Joo Jin-chul,209764,1287909,5 +109587,Robinson (as Sid Saylor),80771,88728,12 +109588,,254679,36074,7 +109589,Redactor periodico (uncredited),82767,942025,15 +109590,Superintendent of Police,182127,1440316,21 +109591,Prentiss,242382,40221,10 +109592,Sister Anna,58790,45523,2 +109593,,157559,102909,2 +109594,One-eyed bandit,37030,556698,5 +109595,John,38684,207031,18 +109596,Jessie,219466,289370,3 +109597,Mark Andrews,29212,78792,0 +109598,Boy Center,43812,1673819,75 +109599,Mr. Leeds,2017,79623,15 +109600,Captain of the Guards (voice),809,5524,24 +109601,Wheezy,56264,30621,10 +109602,,62614,16776,1 +109603,Ace Morgan,121351,117646,3 +109604,Helena,98339,13549,9 +109605,Petr,15387,1080763,5 +109606,Laura Fischer,81600,139555,3 +109607,Carl Friedrich Gauß,115023,104243,0 +109608,Annika,120370,205659,3 +109609,Tinker Bell,120672,29271,4 +109610,Mary,374021,1260008,3 +109611,,42501,1372431,16 +109612,Fight Spectator (uncredited),28000,1368758,67 +109613,Jacques Laurentin,10795,18177,4 +109614,Lindsay's Father,91627,1150385,5 +109615,Actress,339116,1376001,14 +109616,Alex Thompson,72753,232,0 +109617,Inês,228198,223337,5 +109618,Lieutenant Paul Taylor,53882,922,2 +109619,Paramedic,157829,1791289,21 +109620,Mochi (voice) (uncredited),177572,15831,27 +109621,Mordecai Mendoza,19725,40943,1 +109622,Sofie,72054,115736,5 +109623,Raffi,7229,53204,12 +109624,Turaga Vakama,21379,74367,5 +109625,TV Reporter 3,64450,1522644,22 +109626,Dr. Faye Allison,109251,1794,6 +109627,,138191,1108171,0 +109628,Squealer (voice),815,65,1 +109629,Kolb (Officer),52520,208069,8 +109630,Mountie,5721,45106,7 +109631,Young Mike Brander,10033,62244,6 +109632,Galinda (as Rhonda Dents),335970,1529017,11 +109633,Doug,341077,1768256,9 +109634,Paulo,27053,72230,12 +109635,Suzanne Mézeray,11912,7568,6 +109636,Donald Menken,102382,10132,6 +109637,Businessman in 'Carmen',47959,1426031,18 +109638,Everly,277355,3136,1 +109639,O'Malley,57684,34285,7 +109640,Kim Temper,40368,556930,11 +109641,Emma Recchi,41110,3063,0 +109642,Nate Munson,263115,1788166,9 +109643,Thompson Cheung Chi Shun,18899,228614,6 +109644,Anni Pavlovitch,112885,31550,0 +109645,Cole,13280,1398129,9 +109646,,146521,1124174,1 +109647,Zoya's Mother,103640,1169120,7 +109648,School Master (uncredited),77949,1090947,30 +109649,Bestatter 1,73775,1162233,8 +109650,Dr. Frank Brothers,42062,14452,4 +109651,Mr. Dawson,29467,93624,3 +109652,,77673,23480,21 +109653,Dwight Terry,30155,105786,6 +109654,Beau Geste,55628,13919,2 +109655,,227552,149214,16 +109656,Enos Warren,247691,17759,9 +109657,Dr. Marconi Assistant,75761,1769859,18 +109658,Gopher (voice),36540,27517,4 +109659,Victor Bonnet,63665,24381,1 +109660,Himself,28036,99916,8 +109661,Johanna,4285,4533,4 +109662,Hector,109391,1204703,36 +109663,Bobby,20718,57829,4 +109664,Tallest Dead Thing,20842,565519,12 +109665,Digger Kelly,94340,75170,2 +109666,Kader Achour,64357,109517,4 +109667,Morena Feroci,42674,128411,5 +109668,Adisa Ewansiha,298540,19300,5 +109669,Mr. Wiseman,55728,3093,7 +109670,Cherie,36960,1598789,16 +109671,Chui,11636,586484,12 +109672,Pascal,160261,559476,8 +109673,Roberts,83995,16275,11 +109674,Lucy,24986,113311,5 +109675,Chi Chi,38594,122192,8 +109676,Ciro,297853,1790452,29 +109677,Chief Quimby,19766,85157,4 +109678,Richard Halton,99567,9926,4 +109679,Sergeant,14076,1559926,7 +109680,Governor,28656,52624,8 +109681,Chief Minister,108726,1412632,7 +109682,Herself,270724,1174086,5 +109683,Officer DeBoner,28340,129310,14 +109684,Sandhya,177358,85890,2 +109685,Figlia donna in barella,110447,1752451,23 +109686,Social Worker,360284,1346560,11 +109687,Julia Madigan,4931,40056,1 +109688,Sherbondy's sister,61908,83992,21 +109689,Party Goer,199575,1438816,11 +109690,Mira,9703,87773,2 +109691,Reporter 4,27450,1399038,21 +109692,Matteo,77137,55912,0 +109693,Sam,277710,74541,4 +109694,David Jones,17657,2463,2 +109695,Khaled,67,762,0 +109696,German Checkpoint Guard,13580,137383,16 +109697,Janet,17956,163011,18 +109698,"Mrs. John Russell, Sr.",1247,160328,14 +109699,,10484,1502410,28 +109700,Heather Lipke,79778,227841,7 +109701,Janet,10900,1910,3 +109702,Gary,64328,41088,1 +109703,Masquerade Ball Dancer,2309,1105459,18 +109704,Mikako Nagamine,37910,119077,0 +109705,Jeff,336167,3197,2 +109706,Jerry,41714,942976,6 +109707,Michael Lancaster,222935,131006,4 +109708,Mário,53042,147100,0 +109709,Jack Tramiel,186606,58512,4 +109710,Avondale Officer,321039,1506299,9 +109711,Troupe,19995,1207253,34 +109712,Professor Pluggy (uncredited),50012,3776,4 +109713,Cammie Ryan,141733,50463,0 +109714,Filipe,119374,1102435,6 +109715,1. Mover,9252,1315978,8 +109716,Captain Langford,94135,67449,0 +109717,Marzena,377158,1168769,5 +109718,,38269,1818054,26 +109719,Mark Loring,7326,23532,4 +109720,Mr. Chu Tao,9056,96546,5 +109721,Mikey,91679,5296,3 +109722,Bennie,239056,105303,10 +109723,Scorer (uncredited),16442,15978,48 +109724,"Warrior (segment ""Miminashi Hôichi no hanashi"")",30959,10071,20 +109725,Manny Heffley,60307,858704,5 +109726,John Constable,245700,10726,27 +109727,Irène,79343,54275,4 +109728,Jeffrey,273743,1331466,7 +109729,"Fangora ""Fanny"" Gurkel",17906,63,1 +109730,Sharon,60125,165938,7 +109731,Devlin,277710,60195,10 +109732,Mrs Goodge,62143,101722,28 +109733,Harold,362765,1519318,1 +109734,Mario,2241,4796,2 +109735,Marc's Secretary,40978,135622,9 +109736,Elton Garrett,47186,7132,1 +109737,Mrs. Hanky,111470,8232,13 +109738,Julie,77292,936535,3 +109739,Drukkinn maður,26880,96526,3 +109740,Fred (voice),177572,51990,3 +109741,Banks,281215,1196540,12 +109742,Flint,24624,131814,5 +109743,Stefan,116554,1892774,13 +109744,Officer at 1st Roadblock,41611,14531,4 +109745,Mr. Hanson,43256,40181,3 +109746,Ashley,443319,1376581,3 +109747,Beom,82469,1072064,3 +109748,Jeremy Armitage,419430,572541,4 +109749,Mama Beast,10070,62824,19 +109750,Herself,4832,39655,3 +109751,Scotty,104108,180300,3 +109752,lodník,41213,544289,16 +109753,Madge Hull,378441,192838,1 +109754,Rosa Bud,84718,93897,2 +109755,Chung,17082,63588,10 +109756,Young Lisbeth Salander,15472,144137,34 +109757,Paige #2,45610,62564,8 +109758,Grace,70585,21143,9 +109759,Anarkali,44519,229250,2 +109760,Gullible Officer,25426,168913,9 +109761,Soldier 1,33102,1534627,9 +109762,Monk,46114,592329,1 +109763,Larry Nevins,109258,11128,0 +109764,Sean Macdonald,23385,45049,2 +109765,Raymond Garrett,109170,72421,8 +109766,Himself,15258,82994,81 +109767,General Arrog (voice),292014,48,6 +109768,"Ron Keller, Acting Teacher (uncredited)",10739,71813,22 +109769,Countess Sabine Muffat,66812,1343805,6 +109770,Monica,31027,65987,1 +109771,Hernán,33107,1458394,7 +109772,General Bosavi,28263,116271,5 +109773,Roy,6687,57755,0 +109774,Nita,159636,86892,1 +109775,Dr. Kyoichi Mida,38221,17540,4 +109776,Serge,300,4288,6 +109777,Mary Barrett,84097,591344,0 +109778,Himself,312221,1215636,46 +109779,Greg's Opponent,120802,1303210,30 +109780,Lady Seymour Worsley,352733,58502,0 +109781,Imam,39358,20667,2 +109782,Tommy Turner,85610,116255,0 +109783,Ernest,54570,30264,7 +109784,Alexander Meyer,14400,1237646,11 +109785,Himself,173467,1032,7 +109786,traffic warden,59147,67323,2 +109787,Mrs. Williams,199647,83002,2 +109788,Zośka Koselówna,74922,107516,0 +109789,Le commissaire,13741,5442,2 +109790,"Sozo, 1st son",219233,228527,2 +109791,Prehistoric Man,240832,1426900,44 +109792,Nick Malloy,195269,151043,0 +109793,Maria Maluca,108712,1491371,9 +109794,Arzt,266044,1050916,14 +109795,General Powell,43811,11169,1 +109796,Geier,28571,132701,12 +109797,Sophina,157354,53936,2 +109798,Chorus Girl,939,13577,9 +109799,Corky Nye,291558,3371,7 +109800,Chinese Scientist,329865,1296930,24 +109801,John,198365,1178916,1 +109802,Trish,362439,1518197,1 +109803,Fanny Dè Artong,130233,1342439,12 +109804,Wei Fang,263341,232499,4 +109805,,82598,37068,11 +109806,Soldier,8988,1741988,64 +109807,Fúsi,320736,544976,0 +109808,Newspaper Girl,145220,56734,28 +109809,Kenichiro,248087,236090,3 +109810,Captain Eigerman,20481,69791,3 +109811,Pastor,259695,112053,19 +109812,Seyh,4887,40019,2 +109813,Aramis,64046,238489,2 +109814,Madec,284289,3392,0 +109815,Wei Ling Soo's Assistant,229297,1418841,12 +109816,Sreykeo's Mother,49853,1648788,30 +109817,George Hees,19665,290,12 +109818,Glowing Eyes Boy,263115,1821489,83 +109819,Bartlett Henry,18044,55779,0 +109820,Marla Allen,14041,5937,0 +109821,Lorraine,85230,1585226,10 +109822,Isoroku Yamamoto,131739,18056,0 +109823,Sandy,152570,150638,1 +109824,Sauter (as Bill Forrest),118948,34084,6 +109825,Sofia Valenti,53861,10916,3 +109826,Agent Karl Savak,97618,27422,3 +109827,Mados,93492,1174013,11 +109828,Mort,38031,62231,11 +109829,Detective Gardner,304372,59672,11 +109830,,56666,1041427,10 +109831,Lee,60422,12645,6 +109832,Gibbons,78362,929108,11 +109833,Robin,22939,87385,2 +109834,Donna Bixby,109122,600425,3 +109835,Nick Kendall,413998,20508,3 +109836,Captain Jensen,22404,112364,8 +109837,Phil,7288,197073,25 +109838,Einosuke Kikyô (as Mikijirô Hira),58878,118408,2 +109839,,218772,1203505,7 +109840,Peter,330115,17343,4 +109841,Becky,27941,78199,5 +109842,Todd Doherty,82134,51329,1 +109843,Carla,2143,21977,1 +109844,Jacob,227094,25878,3 +109845,Clarissa,58411,227795,4 +109846,Esther,58197,39126,1 +109847,Makoto's father (voice),14069,1133291,10 +109848,Herself,366692,11152,1 +109849,Curtis,13741,67714,0 +109850,Jimmy - the Doorman (uncredited),20644,984870,16 +109851,Towns People,123969,228121,1 +109852,Abolitionist Landowner (uncredited),76203,1438682,91 +109853,Car Dealer,263115,94428,54 +109854,Bit Part (uncredited),43880,29986,15 +109855,Burghard Hauser,42206,1405861,10 +109856,Diane,352164,47953,9 +109857,Dona Joana,37817,979017,4 +109858,,104343,1697248,6 +109859,Lt. Johnson,50295,6487,2 +109860,'Lola',103597,3136,0 +109861,Wilson,23107,14882,4 +109862,Signora Ammazzamariti,160844,49170,12 +109863,Varada Rajulu,125835,141695,4 +109864,Oaf,44801,106359,9 +109865,,253395,1296813,3 +109866,Luis Basset,134480,30264,5 +109867,Jace,241927,1228352,5 +109868,Herself,14923,11008,42 +109869,Maria,49950,19961,11 +109870,Maggie,329010,1496230,6 +109871,Bill Emerson,43470,3381,1 +109872,Sabata / Major,72032,4078,0 +109873,Jefe de bomberos,52943,102093,2 +109874,Blinky Bill (voice),339669,133212,4 +109875,Lincoln Hawk,1825,16483,0 +109876,,238307,1119001,0 +109877,Himself,103215,5228,2 +109878,Sgt. Riley / The Giant,18698,83468,2 +109879,Oncle Georges,255913,1453330,22 +109880,Sonia Brugère,142528,15481,2 +109881,Kim Hyun-woo,313628,1248204,2 +109882,Frappazini,84097,930502,6 +109883,Himself,241170,12524,1 +109884,Security Guard,20196,54564,11 +109885,Oberstleutnant Marquardt,88176,36419,6 +109886,Pilot,22999,88583,14 +109887,Jennie Bailey,80368,40092,2 +109888,Khonanesta,41831,18260,2 +109889,Genii-Ali Mahmud,422906,19178,1 +109890,Charlie Hunter,131903,18352,1 +109891,Jason Mason,12591,58317,7 +109892,Mr. Malhotra,396643,86020,4 +109893,"Lui, Jacques",8071,2565,0 +109894,Saïd,13507,938886,3 +109895,Krieger,11373,15265,1 +109896,Gulab's Young Son,193756,935701,28 +109897,Sonia's Father,37926,119122,8 +109898,Lyla Novacek,5123,41292,1 +109899,Frankie Brite,64807,36424,6 +109900,Frank Quinn,44718,1532,0 +109901,Finn,25038,99506,2 +109902,Filippo,186988,133217,5 +109903,Chip Holladay,391375,1517134,13 +109904,Dennis,128270,1483691,39 +109905,Louise Marcus,8010,12519,2 +109906,Daniel Graham,12617,103340,9 +109907,Mr. O'Malley - Captain of the Nova Scotian,109716,33362,74 +109908,Hat Check Girl,171446,120534,9 +109909,Gina,58615,228167,9 +109910,Cyrus,400174,76126,8 +109911,Disciple,17111,1629451,22 +109912,Voley,79419,188401,0 +109913,Erica Wilson,334890,1695139,3 +109914,Nurse,153161,148527,16 +109915,Georg Bjarnfreðarson,37700,79827,0 +109916,Sarah Witting,15759,515,0 +109917,Himself,191502,101415,10 +109918,Rachael,14254,9281,3 +109919,Bodi (voice),333667,36422,0 +109920,Giacomino,47848,939102,4 +109921,Terry Yordan,43026,36386,2 +109922,Carmen,9673,23524,2 +109923,Von Cartigan,333385,5296,3 +109924,Tv-commentator (voice),224813,1210338,13 +109925,Violet,77822,96421,4 +109926,Mrs. Baker,11577,4069,3 +109927,Dan Parks,35320,20380,7 +109928,Lena,9690,34353,4 +109929,Guard,1726,944830,21 +109930,Sherry,22881,928307,19 +109931,,88953,213326,3 +109932,Polly,10748,53688,14 +109933,Sgt. Fox,36335,101721,7 +109934,Freddie,347630,1695659,30 +109935,Ferdinando,107052,1176835,21 +109936,Joseph Palermo,31128,22312,2 +109937,Sgt. Tanaka,46872,10344,4 +109938,Vigilante,415255,1677213,5 +109939,Miss Martin,43809,103922,10 +109940,Storm Riordan,35852,104299,2 +109941,Med Tech,52520,939457,24 +109942,Ellen,1539,7059,2 +109943,Sergeant Whitey Powers,322,2975,3 +109944,Team Leader,245891,1503862,26 +109945,Emma,47057,12133,2 +109946,Cheryl Robinson,15356,78145,7 +109947,Ellen Manville,163376,58251,2 +109948,Sweet Beaches Dancer,243683,1398169,73 +109949,Fernet,6081,30119,11 +109950,Lea,33340,97032,1 +109951,Roland,332936,74036,4 +109952,Man at RAce Track,118889,120476,73 +109953,Magal,296288,1775370,15 +109954,Aaron,8998,16358,7 +109955,Czarny,293982,1515484,21 +109956,Morty,397422,66297,20 +109957,Ed Crowley,26376,14452,5 +109958,Indian Boy (uncredited),37308,11366,12 +109959,,25626,998494,23 +109960,Boris Pasternak,337758,1563441,7 +109961,Ragazza di Alberto,40817,1145012,18 +109962,Ryder,112456,1054838,4 +109963,Young Man,5172,76625,57 +109964,Helen 'Hel' Remus,46121,1214816,6 +109965,Avinoam,369245,1075507,4 +109966,,188180,1169878,2 +109967,District Attorney Claude Drumm,144475,30215,3 +109968,Rob (as Leland Washington),60965,232053,26 +109969,Walter,79869,1179423,3 +109970,Mrs. Neal Hefner,46623,20624,18 +109971,,265180,1384662,6 +109972,Ippolito Albrizzi,53945,156294,4 +109973,Judy Hopps (voice),269149,417,0 +109974,Police Commissioner,99261,1494619,9 +109975,Gina,271039,1328186,4 +109976,Kee-Muu,25855,1489155,4 +109977,Barfly,105059,1543059,22 +109978,The Rat (voice),86700,112481,1 +109979,Wellington,418072,1685106,8 +109980,Sarah,45132,882,2 +109981,Nelson,199374,1455084,14 +109982,Berlin Olympics Radio Announcer (voice),227306,1213640,30 +109983,Stormtrooper,330459,130081,77 +109984,,46069,1459988,13 +109985,Olivia (jeune),117678,1069635,3 +109986,Young Lady Catherine,120676,31550,10 +109987,Head Geek,52736,1116526,13 +109988,Trevor Dawson,85442,12726,2 +109989,Lysistrata,340275,970219,0 +109990,Kamoebas,38221,1488353,16 +109991,Barry,22494,175393,6 +109992,Ken Kaneki,433945,1087773,0 +109993,Hank Durgis,44545,82750,6 +109994,Harry Katish,24757,820,0 +109995,Braga,391757,24898,4 +109996,Boss,38034,119443,9 +109997,Extra (uncredited),134475,1562137,13 +109998,Rico Santos,337339,90634,15 +109999,Alan Bennett,328589,15739,1 +110000,Sara Golden,1877,157617,6 +110001,Male TV Reporter,2976,1752315,23 +110002,,11328,1444499,47 +110003,Tatsuko Ibuki,264393,108018,1 +110004,Allie,28031,9788,12 +110005,Professor Hendricks,43546,34422,14 +110006,Florence Fallon,44463,14974,0 +110007,Burgies Manager,16058,79105,4 +110008,Nobby Stiles,62441,123509,14 +110009,Supt. Sutherland,29094,85937,5 +110010,Mr. Miles,59965,40377,16 +110011,Mellon - Zimmermädchen,38602,1212732,12 +110012,Jessica,41578,68848,5 +110013,Pierrot Cyr,209293,1192789,7 +110014,Professor Megroth,197785,40529,3 +110015,Angie Bremlock,29896,108887,3 +110016,Benny,145668,297095,3 +110017,Valeria's Husband,36236,9768,7 +110018,Shecky,146238,1097967,13 +110019,Antoine Knipper,338189,1925,1 +110020,Maria,24657,142878,4 +110021,Laurel Mattews (as Christine Bently Quinn),273511,1334091,4 +110022,Prof. Zorado,255388,14979,4 +110023,Frank Herrera,11329,7248,11 +110024,Vincent,378018,133327,3 +110025,Miro,21145,14606,3 +110026,Kenichi Ishikawa,70322,1324183,4 +110027,Peter,318553,169198,5 +110028,Colonel Winkler,88176,47130,2 +110029,Dan Dugan,147903,34209,8 +110030,Louise Washington,31385,1378397,9 +110031,Coconut Tam,73772,188402,8 +110032,Faye,331161,131820,7 +110033,Andrew,272072,1324626,1 +110034,Werner,8556,36688,4 +110035,Doctor Liang,354128,64436,1 +110036,Montoya,6341,6774,8 +110037,Ralphie,19053,551894,19 +110038,Grace Coombs,91181,279042,6 +110039,Katch,345775,1427606,4 +110040,,265934,1084851,8 +110041,Al,268321,94103,6 +110042,Mall Rat,222487,1207917,4 +110043,Mom Umstetter,96333,49944,7 +110044,James Marlowe,94744,39020,5 +110045,Ben-Hur Marcel / Aminemephet,49398,11214,0 +110046,Officer Emily Peck,57683,18248,1 +110047,Deputy McBride,10011,56853,17 +110048,Doris,42355,85962,0 +110049,Brother Kei,53168,122816,9 +110050,Chimponda,20034,1119,5 +110051,Francine,124054,1085087,8 +110052,Tim Wasmuth,379019,1838932,16 +110053,General,3146,30470,4 +110054,Emily,308024,221809,2 +110055,Gum Tso,37702,110845,2 +110056,Bill Moon,48841,141195,4 +110057,James' Niece #3,199575,1438833,14 +110058,The Inspector,16171,3547,1 +110059,Edik,3102,81000,4 +110060,Marie Hebert,104674,176873,2 +110061,Caxton,49391,17287,1 +110062,Mr. Harris (uncredited),54139,87517,25 +110063,Henry,13058,573737,17 +110064,Dominic Cattano,4982,23346,17 +110065,Cori Resier,274504,1472794,10 +110066,Carpenter,91679,1782613,53 +110067,Deisler,256311,588079,5 +110068,Rosalie,14750,9995,5 +110069,Tajire no Okiku,2487,95579,10 +110070,Ginger Grant,103260,61149,4 +110071,Mabel Wiley,33117,118231,8 +110072,Él mismo,284362,1347733,2 +110073,,361380,1532531,6 +110074,Brian L. Keaulana,291,4327,5 +110075,Rameek,397717,240799,39 +110076,Rosalind,19103,18997,0 +110077,Frank Wilson Sr.,134238,97007,3 +110078,Humane Society Worker,5516,11357,15 +110079,Kate Devlin,137491,12139,1 +110080,Princesa Luciana (Canciones),13283,1497231,10 +110081,Alec,150117,25656,14 +110082,Ufólogo,34588,937104,18 +110083,School custodian,267466,1335773,6 +110084,Sarah Jackson,61550,37252,3 +110085,Sean Lenihan,51947,5788,1 +110086,Bianca Manicucci,343934,63232,6 +110087,Ricardo,390,5280,7 +110088,LAPD Captain Bruce,220820,1051216,20 +110089,George La Main (as John Barrymore Jr.),37084,116560,0 +110090,Senator Finch,209112,18686,8 +110091,,166207,1036782,15 +110092,Doctor,351043,5274,6 +110093,Judge Arusha,16374,1470215,15 +110094,,141635,4158,11 +110095,Peter,2196,22970,12 +110096,Bouncer,41283,1098750,19 +110097,Jong-Goo's wife,293670,463583,6 +110098,Robert,25142,94065,3 +110099,Butch (as Bennie Bartlett),174195,556861,10 +110100,,76940,1334999,2 +110101,Prosecution Attorney,108812,6933,7 +110102,Meadows,198652,59074,7 +110103,Dia's Mother,38031,6975,27 +110104,Mariano,378485,89445,1 +110105,Rupert Ames,22803,40039,14 +110106,Woman at Cab Stand,47186,552222,30 +110107,Mary Jo,397520,189704,10 +110108,Minor Role,43806,14487,69 +110109,uomo al locale con il sigaro in bocca,43646,1692865,15 +110110,Marine,2567,15318,17 +110111,Stagehand,71825,1041551,13 +110112,Bozo,14868,75174,11 +110113,Ollie Trinke,9541,880,0 +110114,Alex,342684,1074740,5 +110115,Commissioner Jim Gordon (voice),17074,34973,10 +110116,Pep (voice),105965,82785,3 +110117,Laser,39781,27972,4 +110118,New Ace,165718,222340,8 +110119,Superintendant Duroc,30163,38499,3 +110120,Gerald Shannon,120977,2435,2 +110121,Herself,366696,1753492,17 +110122,Ralph Hopkins,28290,13576,2 +110123,Ken,3638,111116,13 +110124,Defense Attorney,301876,31438,11 +110125,Aunt Sylvia,182499,11794,5 +110126,Bean,78691,16216,9 +110127,Glen,42494,218417,1 +110128,,51549,456935,12 +110129,Jan,36229,6268,2 +110130,Marco,5481,44960,2 +110131,Ray Collishaw,131737,51799,3 +110132,Satyam,80276,559738,15 +110133,Attilio,58773,71296,3 +110134,Herself,27637,43451,30 +110135,Sandra's Friend,2196,174700,13 +110136,Lady Helen,30844,107133,3 +110137,Lenny Moyers,20444,68898,2 +110138,TV Host,153,90159,19 +110139,Quinto,42674,128413,7 +110140,Kit Kat Dancer,40990,1567899,22 +110141,Fred Robbins,31901,7072,3 +110142,Sadie,2071,21249,7 +110143,Wet T-Shirt Girl,11358,1773114,41 +110144,Strelka (voice),260310,1305990,2 +110145,Ad Agency Executive #2,243683,203294,37 +110146,Michael,79935,69395,0 +110147,Temmosus,26581,29546,7 +110148,,103713,1034673,3 +110149,Hardware Woman,15664,119666,7 +110150,Frank Garrison,105059,153469,14 +110151,Glader,198663,1415413,21 +110152,Charlie Vernon - acrobat / George,27917,77312,5 +110153,First Lecturer,43811,589728,19 +110154,Honey Hale,28293,30003,3 +110155,Pool Table Player,16083,79240,26 +110156,Tony,31984,1118719,11 +110157,Jake,10330,62747,5 +110158,Dick,78177,78719,2 +110159,Bülent's Frau,10565,1333561,8 +110160,Jordan,98369,1583776,6 +110161,Tsutaya,390930,105403,3 +110162,Medical Man,48131,41957,3 +110163,Thelma,72096,1139746,23 +110164,Colonel Duval,140887,89017,7 +110165,Burke,52868,104503,2 +110166,Mr. Hodges,429238,58544,7 +110167,Pravin Shah,96147,1032584,12 +110168,Albina (Princess),70874,1189482,3 +110169,Uncle Kin,91186,592329,3 +110170,Peter,374614,1201386,8 +110171,Ponytail,43987,1299313,8 +110172,Guy,146216,1684549,51 +110173,Dana Preston / Molly Carpenter,62039,4761,2 +110174,Eddie Beagle,9664,58433,1 +110175,Detective Halpin,24756,30809,9 +110176,,51267,143624,0 +110177,Katie Markum,322,4730,8 +110178,Violet Van Patten,257344,11705,1 +110179,Operator,3580,1569711,15 +110180,Lutz Reimann,265432,55897,4 +110181,Collins,83995,730346,21 +110182,M. Paul,132332,1469855,5 +110183,Ernie,13610,1534,3 +110184,Vivian,28997,121459,5 +110185,Cookie (voice),10192,64342,7 +110186,Mr. Spencer Runcie,188102,4515,0 +110187,Nicola,33495,76338,19 +110188,Bunny,191562,86884,2 +110189,Toad,87612,3163,5 +110190,Mark,16032,85912,2 +110191,Tommy's Father,110115,70010,3 +110192,Patrick Muldoon,2611,14721,3 +110193,Roger,274504,83968,5 +110194,Bartender,7288,60959,6 +110195,Woman at Barricades,173456,21878,19 +110196,Larry,447758,1782015,21 +110197,Billy King,45227,99285,4 +110198,Master Flying Rhino (voice),81003,60232,11 +110199,Ollie The Giant (voice),15906,43299,8 +110200,Bremond,92257,590242,9 +110201,Icky,8942,77080,2 +110202,Tom the Servant,80368,24741,12 +110203,Rachel Witchburn,10760,60072,1 +110204,Boy in Car,61225,148637,34 +110205,Ratcliffe,7548,52892,11 +110206,Pedro,469172,1170007,11 +110207,Kama,293982,1120448,14 +110208,Scarlett,393172,20089,0 +110209,Trish,53358,147968,3 +110210,Lyle,31146,1601157,13 +110211,Military Doctor,14531,1688797,14 +110212,N.E.M.,130993,1310865,5 +110213,Catholic School Girl #1,31821,574107,9 +110214,Club Patron (uncredited),330947,1650333,65 +110215,First Villager,27966,29961,46 +110216,Sam,94182,13968,11 +110217,Philip Monrell,31324,19406,0 +110218,Vinny (voice),8965,161860,4 +110219,The Mayor,36373,2771,11 +110220,Caretaker,20842,565517,9 +110221,,53407,1893383,16 +110222,Albert Nobbs,73873,515,0 +110223,Michele,57996,1001017,9 +110224,Cristina,38310,120109,7 +110225,Trustee #1,28090,1719887,30 +110226,Lisa,207699,1196849,0 +110227,Donna,98094,1327446,3 +110228,Meredith Rousseau,252724,142293,5 +110229,Takashi Iguchi,26936,13277,2 +110230,Anil Sharma,18673,83593,3 +110231,Stony Egg,19274,1587740,11 +110232,Mousey,316154,1840868,7 +110233,Matty,26283,88728,14 +110234,Zoe Valecross,463906,61831,10 +110235,Pool cleaner (uncredited),140,309,14 +110236,Officer McHorn (voice),269149,1214974,19 +110237,,282086,1479795,7 +110238,Grandmother,17386,1045550,5 +110239,Hiawatha,238985,3337,0 +110240,Anton,97797,235812,1 +110241,Tow Truck Driver,27417,31268,3 +110242,Joyce Brewster,82687,10400,1 +110243,Hotel Manager,186759,1231717,15 +110244,Sten (voice),11795,1408164,10 +110245,Nanny Carmen,354979,554633,10 +110246,Johnny Gogan,1116,15501,5 +110247,Uncle Garrow,2486,2629,9 +110248,Thunder's men/Leung's student,64316,62423,10 +110249,Abir,24963,103330,2 +110250,bagnante,43646,69973,17 +110251,Kobi,414771,456982,0 +110252,Mindy Sterngood,10829,4788,4 +110253,Grenzbeamtin,3962,34392,7 +110254,Tina,2169,22185,1 +110255,Guy,214756,9657,7 +110256,Mordo,284052,5294,1 +110257,Deputy,4882,91967,25 +110258,Louise Vancraeyenest,390357,1295192,4 +110259,Alisha,196852,77234,2 +110260,Christopher McCandless,5915,46593,0 +110261,Karl Lindauer,204965,8202,6 +110262,,73835,44434,1 +110263,Church,76163,62,3 +110264,Nubian,82430,1350577,11 +110265,Raver Girl,77930,1267277,38 +110266,Telephone Operator,14589,1052820,76 +110267,Jianyu,226672,1170661,6 +110268,Squad Car Driver,127812,80546,17 +110269,Mannie Bester,13542,19687,6 +110270,Deputy Commissioner Anan,12622,555196,14 +110271,Marieke Kopermode,81600,150640,2 +110272,President Art Hockstader,37315,33003,5 +110273,Bali,302435,934092,10 +110274,Russell Carter,43075,131046,11 +110275,Ivan Van Dorpe,14019,76285,3 +110276,Attrice,315872,147837,11 +110277,Lena,245706,955762,23 +110278,"Lady, Assurda Cai, Nunzia, Giovanna",36236,12520,0 +110279,Gustavo Smirnoff,43432,100138,11 +110280,Bonnie Brasher,242835,15973,4 +110281,Penny,80720,34183,24 +110282,Marion Rostina,37084,94167,2 +110283,Official,19545,1167993,20 +110284,Kommissar Welz,54524,150829,1 +110285,Father Thadeus,98250,113781,15 +110286,2nd Woman at Opera,8915,1323876,14 +110287,Kevin Hornby,187219,30428,4 +110288,Sue,315855,1592948,55 +110289,Sammy,41505,39518,5 +110290,Bill Chase,77012,13995,2 +110291,Ninja Chacha,39347,86054,5 +110292,Mrs. Wood (uncredited),121230,88461,16 +110293,Floyd,426670,60510,14 +110294,Eva,59296,16855,0 +110295,Chen Shengkang,63441,1196099,10 +110296,Floyd,79113,134848,9 +110297,Manuel Cueto,43432,36632,0 +110298,Polizist Paul,83729,30726,15 +110299,Himself,8847,56091,11 +110300,Coach Mike,17306,134424,21 +110301,Sonjas advokat,87654,1477358,25 +110302,Buford (voice),10198,54430,18 +110303,Himself,15089,1471557,3 +110304,Additional Voices (voice),52264,1449410,24 +110305,Chiara Zaccarelli,419522,1857785,15 +110306,Helene,3549,32683,2 +110307,Nick,178341,13342,3 +110308,Frenchman at Dieppe Train Station (uncredited),52440,29139,41 +110309,Tramp,179549,1356601,1 +110310,Jérôme Tarayre,21435,28781,3 +110311,Dawson's Friend (uncredited),14615,131047,25 +110312,Nurse,27409,102122,8 +110313,Franziska,8556,36653,6 +110314,TV Anchor,300669,1737807,10 +110315,Joey,70586,10884,5 +110316,Walter (voice),312100,2,2 +110317,Sadie,424600,1704660,16 +110318,,73628,46070,2 +110319,Jane Brodrick,137357,14500,7 +110320,Miyako Saijo,32690,86820,2 +110321,Philippe,73562,20799,6 +110322,Mrs. Ellis,28586,101231,4 +110323,Claude,92496,1794802,16 +110324,Extra (uncredited),3059,30201,58 +110325,Sea Captain,28663,9091,8 +110326,Larry,384682,94432,17 +110327,Herself,63472,6913,0 +110328,,228339,1262860,3 +110329,Mr. Briggs (uncredited),22744,14364,16 +110330,Insinööri Sörsselssön,62900,116161,4 +110331,Steve Crowley,441728,56100,9 +110332,Mr. Lowe,1673,18583,6 +110333,Garnet Jetter,339419,1096518,8 +110334,Tommy Tucker,258480,1367617,6 +110335,Pvt. O'Meara,35001,522,0 +110336,Tony Arnelo,29236,85437,0 +110337,Namorada de Garoto que joga copo em Julia,296288,1839913,21 +110338,Professor Nadezhda Ivanova,26873,96514,5 +110339,Peggy Eaton,112284,31550,0 +110340,John Baker,355008,4589,4 +110341,Nosberg,7229,21170,5 +110342,Bhimsha,25801,97546,0 +110343,Himself,206657,1490055,2 +110344,Rafaela,361146,1890678,7 +110345,Fisher,236395,2437,4 +110346,Himself,173189,20405,0 +110347,David Wilkes,358982,1507494,11 +110348,Consuella,4923,44079,1 +110349,Mona Lisa (voice),82703,25703,13 +110350,Vopo Captain,13580,6612,17 +110351,College Girl,356752,1841516,39 +110352,Barney Lee,235092,79633,4 +110353,Charles,296523,5365,5 +110354,Arnold,85230,54235,12 +110355,Deputy Fred King,24150,33501,35 +110356,Siva,148284,141076,3 +110357,Secretary Robert Sherman,40693,34320,5 +110358,Anna,66022,93326,6 +110359,Chou,67342,544797,2 +110360,Gertie La Rue,43473,1195079,0 +110361,Guerilla,118497,1294284,7 +110362,,153196,1283565,15 +110363,,44716,3883,13 +110364,Luke Taggart,35381,16937,16 +110365,Jason Michaels,418437,223012,10 +110366,Frank Torrence,92737,66055,0 +110367,Johny's Brother,398786,1657787,18 +110368,Reporter,179066,84234,45 +110369,Merlin,169881,28158,10 +110370,Young Danish guy 1,199602,1871537,12 +110371,Mailroom Kid,252724,95101,6 +110372,,18585,237167,7 +110373,Himself,44038,130085,9 +110374,Catia,274857,1460120,16 +110375,Himself - the Radio Announcer,27114,1269138,22 +110376,Kellnerin,2349,24068,17 +110377,Alain,6077,47797,3 +110378,Duc de Morny,78318,3245,42 +110379,Corrine Dollanganger,267793,69122,0 +110380,Georg Laschen,65002,2310,0 +110381,Ken,209271,529,2 +110382,Josh Miller,423377,1061132,5 +110383,Timber,21138,1030313,11 +110384,Nick Martinelli,16551,16483,0 +110385,Mona,338421,119426,3 +110386,Bobby Micelli,32588,4940,3 +110387,Huey Lucas,4982,5294,2 +110388,Marquis de Montesquieu,1427,17073,20 +110389,Willy,2017,1210629,8 +110390,,99242,1266720,0 +110391,Ann Sturdy,76084,246269,4 +110392,Skip,12113,77496,10 +110393,,112304,177645,14 +110394,Mermaid Singer,91390,1572409,11 +110395,Himself,410718,1523704,5 +110396,Grace,50073,2777,2 +110397,Maki,55615,1126292,2 +110398,Amaryllis,49172,24967,2 +110399,Dr. Sameer,315256,997740,1 +110400,Red Leader Garven Dreis,330459,47401,18 +110401,Train Passenger (uncredited),259695,1018804,23 +110402,,253309,1542286,6 +110403,Judge,18898,1623639,10 +110404,Prison warden's son,17467,1380364,10 +110405,Sarah,418437,80592,7 +110406,Cindy Thomas,86970,43903,2 +110407,Staff Sgt. Lawrence,56527,86602,10 +110408,Elanor,395883,73525,1 +110409,Loan Shark,393562,1108802,5 +110410,Michael,111042,22603,7 +110411,German Man,294690,63511,16 +110412,Professor Palladino,186606,54728,7 +110413,Juurakon Hulda,293085,1364446,1 +110414,Anthrax,120802,1818384,33 +110415,Davy,147829,4119,7 +110416,Bee,220287,1210547,3 +110417,Kate Collins,228205,12139,3 +110418,Mercenary 1,70981,1074615,14 +110419,Himself - Storyteller,128216,1332916,8 +110420,Robert Forrester,18530,14887,0 +110421,Clip from 'Show Boat' (archive footage) (uncredited),33740,3156,72 +110422,Sœur Madeline,18569,30242,5 +110423,Yashida,76170,74540,7 +110424,Dancer,222858,178926,14 +110425,himself,36140,3776,3 +110426,Judge,16996,34488,24 +110427,Borman,40709,562730,0 +110428,Sun-hwa,25649,141873,1 +110429,The Mother,135390,55004,2 +110430,Tiffany,112973,8987,4 +110431,Himself,53367,2698,13 +110432,Simon Ross,2503,14887,4 +110433,Mate,40804,112977,9 +110434,,188684,1588321,6 +110435,Day Care Teacher (voice),153518,5375,22 +110436,Mütze,1294,16784,2 +110437,Al Jolson,31206,34316,0 +110438,Barman,41277,349518,16 +110439,Mr. Chojar,14159,43416,11 +110440,Reporter (uncredited),28000,138248,45 +110441,passeggero del treno,107052,141557,9 +110442,Spectator / Gunman in Plane (uncredited),31118,45091,10 +110443,Lara,82679,1240486,10 +110444,Rodriguez,325173,1900164,17 +110445,Man Fighting Oil Fire,55604,121066,66 +110446,,12453,72295,7 +110447,Captain Of Detectives,50073,103620,11 +110448,Jonathan Osborne,92298,227851,2 +110449,Sylvie Berger,283701,4273,1 +110450,Paleiswachter,35639,996596,5 +110451,Mauri,92465,89485,6 +110452,William,336666,1202589,5 +110453,Lawyer,264644,103284,11 +110454,Trish Sackett,10096,23504,10 +110455,Dylan Branson,269795,91520,0 +110456,,92132,86832,6 +110457,Music store clerk,20342,1630650,10 +110458,Sonny,286709,65225,1 +110459,Hajan (voice),14945,230881,4 +110460,Arthur's Helper 2,59726,1185480,15 +110461,Sgt. Brenner,86603,52616,8 +110462,Genevieve Cantrell,258480,586998,7 +110463,Mrs. Garcia,18586,27396,12 +110464,Luke,40850,118616,1 +110465,Dr. Thomas Martin,68387,20380,16 +110466,Lizzie / Bonehead,24556,34985,14 +110467,Durante,402582,1214063,5 +110468,Jason Randall,63360,161956,6 +110469,Joe Washington,22029,133587,6 +110470,,284343,1619456,5 +110471,Sanford Nussbaum (uncredited),176627,106805,26 +110472,Amy,25973,169476,8 +110473,Felix Rosa / Mermantula,344147,1476094,5 +110474,Man in Lift,85442,1216367,20 +110475,Lt. Comdr. Dickson M.D. (uncredited),10178,13786,21 +110476,Simon,27507,98016,1 +110477,Doris Mead,88320,31844,1 +110478,Carlo Simoni,75336,11216,5 +110479,Jaggers,16075,27762,8 +110480,Hokudo no Ken,51581,235921,10 +110481,Antigen Surgeon (uncredited),52520,1608629,30 +110482,Young Captain,42706,128579,5 +110483,Yvette,73532,49756,4 +110484,Mother at Birthday Party,332079,5738,17 +110485,Thomas,220488,1183808,10 +110486,Woman at the Olympus Ball (uncredited),1976,154178,20 +110487,Wayne,156,1840,9 +110488,MacAndrews,118900,34625,14 +110489,Raïssa,245692,1574460,4 +110490,Loan-shark,182127,1440461,37 +110491,Buff College Kid,365942,1635720,70 +110492,Dr. Charles de Yael,84479,146608,2 +110493,Mrs. Fred Garrett (uncredited),14615,98018,61 +110494,,114108,1431402,6 +110495,Teen Tommy,274479,1852511,62 +110496,Gringoire,148636,38331,3 +110497,Luca,331962,101418,31 +110498,Creative Executive #3,193893,1381396,21 +110499,Hans Reiser,274504,2224,3 +110500,Bank Manager,290714,1182657,4 +110501,se stesso,75336,2361,27 +110502,Beast Boy (voice),396330,60227,9 +110503,Floridian Parent (uncredited),369524,1808635,50 +110504,,16015,202581,9 +110505,Rafael (voice),172385,41798,15 +110506,Informant,409550,123739,5 +110507,Tony Stilano,16058,77496,0 +110508,Dennis,332411,22227,1 +110509,Chief inspector Ho,25074,62417,3 +110510,La secrétaire,2861,1833948,12 +110511,Sir Robin Janvrin,1165,11279,7 +110512,Ben Butley,118121,27554,0 +110513,Le procureur,10795,136438,20 +110514,Marisol,268920,1559701,13 +110515,Lauri Honkatie,238362,1272826,1 +110516,ICGO Saxophone,23367,95393,40 +110517,L'agent immobilier,51971,145091,14 +110518,René,781,8796,0 +110519,Rachel,165567,60072,1 +110520,Kurcewiczowa,31273,107867,9 +110521,Man on Jury (uncredited),3580,1224686,62 +110522,Young Kathy,42188,142388,7 +110523,Mrs. Wendelschaffer,43688,981098,7 +110524,Professor Douglas,179066,85957,33 +110525,Susanna,147773,1285,3 +110526,Gudmund (præst og rejsearrangør),56858,47150,1 +110527,Amanda,131689,966753,3 +110528,Member of Parliament,109716,951488,51 +110529,"Dan, Starret's Foreman",37481,3160,6 +110530,Il commissario,173847,1143742,12 +110531,Priest,108282,152681,23 +110532,King Cameron,46193,39601,2 +110533,Ivanda,2966,1521622,13 +110534,Akeo,408620,1278160,7 +110535,Patrick,84348,1039532,5 +110536,Jolene,109417,235492,6 +110537,Paddy Dolan,31555,96737,5 +110538,"(segment ""Miminashi Hôichi no hanashi"")",30959,552651,30 +110539,Le cadre maladroit,53404,1664216,18 +110540,Al,6877,51330,5 +110541,,16017,1444470,11 +110542,Subject #19,29151,61659,5 +110543,Joanna Reed,23830,116,0 +110544,Voice,231216,22652,6 +110545,Himself,4140,34961,5 +110546,Terrance Shade,134394,29298,0 +110547,,247354,1282827,1 +110548,Don Hewitt,3291,31511,14 +110549,Father,14088,138752,10 +110550,Urzędnik w obozie,155325,69182,19 +110551,Zozo's grandfather,49220,590852,2 +110552,Ainun,172705,1155279,1 +110553,Pilar,57201,1760466,40 +110554,Mickey Mantle,20536,11155,1 +110555,Ding-a-ling the Phone,47670,1058269,8 +110556,Chukha,40709,581083,3 +110557,Francois,116232,939842,12 +110558,Rider,43757,1153744,6 +110559,tassista,374416,1879938,11 +110560,Earth Child,13576,1449384,9 +110561,,143073,556853,10 +110562,Josh,1690,33934,1 +110563,William Randolph Hearst,50008,2505,1 +110564,Billy Fletcher,22681,57428,3 +110565,Mother Goose,44303,61185,5 +110566,Alex,107096,230665,0 +110567,Ororo Munroe / Storm,127585,4587,4 +110568,"Pina, madre di Checco",35554,1044767,8 +110569,Bergen Girl (voice),136799,1784329,43 +110570,Anne Stanton,1717,204,2 +110571,Detective Chenko,128795,1051786,5 +110572,,48959,1355642,8 +110573,Abercrombie,33102,188739,4 +110574,Token Black,16023,111465,2 +110575,Guest (uncredited),331313,1744013,39 +110576,Yellow Merfairy,13285,74369,6 +110577,Woo-Jin,338729,587675,14 +110578,Polo,42634,28778,4 +110579,,225614,76975,2 +110580,George (uncredited),28000,1238505,46 +110581,Bradville - Convict,48156,592,7 +110582,Neighbour on the Left,51406,1058279,1 +110583,Kinsella,102961,15212,5 +110584,Foolish Student (uncredited),15022,1303213,41 +110585,Annmarie's Father,297853,1790456,33 +110586,Thomas,87060,157644,8 +110587,brigadiere Vasco Sacchetti,173177,21237,1 +110588,Nancy Robson,48153,13567,1 +110589,Char Aznable,16157,90561,0 +110590,First Mate,176867,43845,22 +110591,Venkata Ratnam,353533,585404,7 +110592,Herself,104391,933426,1 +110593,German Crown Prince,53423,148066,3 +110594,Hannah (12 yrs. old),329865,1522166,6 +110595,Chevalier d'Eon,68023,96930,3 +110596,Registrar,62728,383624,14 +110597,Oskar Lepik,321303,962938,18 +110598,Vishnu,75745,1118194,5 +110599,Harlan,22051,13936,4 +110600,McCartin,40804,81010,3 +110601,Movie Patron (uncredited),10739,1300853,21 +110602,Todd's Keyboardist,58467,1704736,37 +110603,Hanada-sensei,33333,555018,11 +110604,Carpenter of the prison (uncredited),57996,1098420,22 +110605,Umbopa (as Siriaque of the Watussi Tribe),43388,1712379,6 +110606,Sal Castro,93511,454,2 +110607,Svensk hofdame,11832,6657,9 +110608,La bibliothécaire,41211,55531,23 +110609,Platinum Beauty,18690,1002686,16 +110610,Margherita,419522,129108,3 +110611,Candace Hall,184098,35705,4 +110612,Sophie Bellop,46563,3367,6 +110613,Martin,2742,27813,7 +110614,Dr. Selkirk,375366,20699,4 +110615,Hustler,94225,10194,11 +110616,Ernesto Juarez,34280,37495,9 +110617,Maitland,66022,11859,2 +110618,,177354,109325,1 +110619,Corinne Walker,50875,21657,0 +110620,Mrs. Jones,168217,1006951,5 +110621,Mean Murphy Knuckles,21780,59076,8 +110622,Bill Craig,12407,1329,2 +110623,Lady Hyegyeong,315439,37941,1 +110624,Lucienne (voice),126319,52119,32 +110625,2nd Deconsecration Minister,5638,81558,19 +110626,,271495,108047,3 +110627,Stinktooth (voice),35177,61981,5 +110628,"Calvette, le cafetier",76642,144990,8 +110629,Prison Officer,294652,1883806,13 +110630,Himself - Host,458618,1600152,2 +110631,Police Chief Carl Russ,24810,87766,7 +110632,Stephanie,10201,60952,7 +110633,Son,362057,1369329,10 +110634,Dominik,199644,1179812,6 +110635,Clancy,153161,120811,33 +110636,Chachi,21566,146971,12 +110637,Himself,144680,1416483,13 +110638,Dr. Berman,84209,16031,8 +110639,Lacy St. Morgan,267793,1315950,23 +110640,Radio Operator,44087,1889635,23 +110641,Madame V,48186,15110,0 +110642,David Myers,9648,27753,2 +110643,Akash,44566,85034,1 +110644,Super Woman (voice),30061,9576,6 +110645,Tyler,224778,963373,6 +110646,Griffin,8247,478,1 +110647,Rudy,9639,963486,6 +110648,Head Terrorist,83229,1544225,12 +110649,Grossmann,195385,72660,6 +110650,LRA Commander,45610,205184,25 +110651,Veer Pratap Singh,196852,150012,4 +110652,La moglie di Gengis,213095,137353,4 +110653,,140231,52263,3 +110654,Pedersén,76380,560032,7 +110655,Claudia,235260,130464,2 +110656,Curly (voice),149910,1214403,8 +110657,Rochelle Davis,86254,115126,2 +110658,Prof. Giordani,20126,85650,8 +110659,Jen,39958,239997,5 +110660,Coach,11247,44792,21 +110661,Drive-in Employee,335970,1159596,71 +110662,Tante Lisbeth,61035,1445778,15 +110663,Fatma,72279,565403,9 +110664,Jignesh 'Jiggy' Patel,14467,126498,5 +110665,Hattori,45489,93892,1 +110666,Writer,32298,1542,11 +110667,Edward Beeksma,223551,1734669,3 +110668,Turkell,28090,67524,10 +110669,Miss Lambert (uncredited),52440,1905153,52 +110670,Skeptical Naturalist,28775,94205,13 +110671,,104277,1176547,10 +110672,Stan's Girl,1726,1209713,57 +110673,James Washington,9950,4892,15 +110674,Kunjananthan,237672,591087,6 +110675,,138522,1153591,3 +110676,La Gynécologue,60106,12813,7 +110677,Burke,351901,25877,2 +110678,'Rugged' (as G.P. Huntley Jr.),43526,120821,11 +110679,Green Hair,11636,125106,26 +110680,Mike Dumbrowski,100910,136472,7 +110681,Cheerleader,16996,4938,48 +110682,Reluctant AIM Guard,68721,1735564,67 +110683,Heroine in Vishnu's film,20968,86241,8 +110684,Marshal of France,58905,1468060,24 +110685,Vincent Stevens,17845,44366,1 +110686,Cashier Wah,64316,131842,2 +110687,Dennis Stadling,27230,133846,3 +110688,Carl Jr.,377587,1421229,12 +110689,Karen (voice),42325,19413,13 +110690,Worker,182127,1440319,22 +110691,Mrs. Crampfurl,110227,10083,6 +110692,Mondale,11205,3811,12 +110693,,256520,238205,6 +110694,Betty Stoller,17745,82341,7 +110695,Mrs. Edith Rooney,194407,30214,4 +110696,Superintendent Johnson,345922,352,7 +110697,'Maxey' Campo,91961,115370,8 +110698,"Matilde, madre di Paolo",82481,589082,16 +110699,Liisa Rautavaara,55403,222309,4 +110700,Maj. Tyler-Blane,214909,5832,5 +110701,Torma Gedeon,41689,125194,2 +110702,David,39958,239996,0 +110703,Louise,369885,1052255,9 +110704,,104374,1134619,7 +110705,King of England,10804,69250,20 +110706,,369363,1563240,2 +110707,,366759,586060,3 +110708,Will,330011,1439929,6 +110709,Grace,67499,934913,0 +110710,,340119,10777,2 +110711,Lindsay,4641,38705,3 +110712,Julian,9958,60971,0 +110713,Nana Gemelas,264525,979449,14 +110714,Drunk Guy in Bar,424488,1076809,29 +110715,Office Lady,126250,4459,12 +110716,Lieutenant,9667,29697,15 +110717,(Israel),1926,20044,5 +110718,"Sadako Itakura, Nobuo's mother",125257,239313,5 +110719,Tia Zélia,227932,592366,5 +110720,Luca Bertacci,73869,570367,0 +110721,Seymour,99642,54834,0 +110722,Ben,245739,1281220,0 +110723,Yarwood,297265,1803401,20 +110724,Ève,8897,22311,1 +110725,Mr. Palmer,205724,352,9 +110726,James Forester,244783,1121400,1 +110727,Teenage Ethan Miller,50875,467645,8 +110728,Beezer,140648,185111,15 +110729,Bobby,16839,1105084,7 +110730,Freddy,199575,213202,3 +110731,herself,82627,928341,3 +110732,Danny Martin,9959,12260,20 +110733,Frank,174162,13729,6 +110734,Brett,176,2137,10 +110735,Betty Jones,27450,18017,1 +110736,Sciascillo,58404,10254,4 +110737,Dr. Curtis,62694,14361,9 +110738,Singer - Sons of the Pioneers,134238,1417361,47 +110739,Rachel Lynde,397520,201812,14 +110740,Cleotilde,68202,36628,3 +110741,Brad Adams / Bradley Clayton,117905,91302,1 +110742,Glader,198663,1415424,27 +110743,Levi,112130,18041,7 +110744,Young Mother,72912,79397,4 +110745,Fitz,115276,71281,5 +110746,Criminology Professor,64450,227187,6 +110747,Nat Burdell,44693,120520,1 +110748,Dr. Roger Richardson,62472,235379,4 +110749,Charlie Turner,121003,233118,7 +110750,Chief Poncho,45324,57448,7 +110751,Wild Bill Hickok (James Otis),47914,4960,0 +110752,Le ferrailleur,71732,5079,4 +110753,Philippe,39415,1323982,17 +110754,Additional Voices (voice),24238,1214863,9 +110755,Warren Cooper,366045,26069,2 +110756,La femme de Saint-Lazare,11227,962955,6 +110757,Toshiko Uranai / Shiori's Mother,36212,1190019,9 +110758,Olivia's Mother,100110,72157,10 +110759,Pascal Latour,37653,41878,0 +110760,Stephanie,10900,35027,15 +110761,Natalie Cook,9471,6941,0 +110762,"Cesare Molteni, amante di Claudia",58011,36933,10 +110763,,322455,1420582,1 +110764,George Dennison,138308,16125,3 +110765,The Judge,49762,142765,12 +110766,Walker Dunlevy,76757,1394354,52 +110767,Taylor,8617,88038,19 +110768,Father Lloyd,19719,78021,9 +110769,Waiter,10610,20372,9 +110770,Greta,258251,1051260,11 +110771,Vincent de Graaf,154972,1171335,0 +110772,Police Commissioner,27409,39432,10 +110773,Ezekiel,13542,63143,14 +110774,Viola,53399,1165383,2 +110775,Rossi,108535,1071993,21 +110776,,8088,102224,15 +110777,Jocke,347106,11045,2 +110778,Flight Lieutenant 'Batchy' Salter,41312,126124,11 +110779,,97762,1199161,0 +110780,Tex (Bruhn's gang),37481,103054,7 +110781,Klava,40709,34707,10 +110782,Gulfax,7234,52127,8 +110783,Midnight Masala guy,341420,1478686,8 +110784,Old Man,54804,1361007,16 +110785,Drunkards Four,1579,42016,22 +110786,"Child, Orphanage Sequence (uncredited)",47758,18736,15 +110787,Yumiko Abe,391642,1433818,10 +110788,Vice Principal Fuchs,15022,126471,5 +110789,Flashlight / Trojan Horse (voice),378236,1193833,25 +110790,Hanna Potrowski,613,3932,45 +110791,Zozi (voice),19594,7090,2 +110792,Coach Evans,183662,1237603,8 +110793,Barry Moyer,85009,158977,15 +110794,AJ,58547,2978,9 +110795,DRH hôpital,8276,1175834,13 +110796,Madelena,84016,71283,1 +110797,Nell,8981,56473,6 +110798,Gigio,23619,555528,4 +110799,Crystal,406992,3416,3 +110800,Julia Lanning,41468,109701,1 +110801,Professore,38362,43241,4 +110802,Tetsurō Segawa,197854,1479382,6 +110803,Betty Ross,14613,74370,9 +110804,Wedding Minister,114155,9152,10 +110805,Lambert,66967,10020,2 +110806,Toni,43497,130193,6 +110807,May Barstowe,89647,131385,3 +110808,Korv-Hannes,336806,1833055,5 +110809,Executive Man,14142,84903,17 +110810,Neeta,16987,85686,6 +110811,Hollywood Park Gambler (uncredited),15092,1450777,81 +110812,Donatello,147939,1127747,3 +110813,Lead Hooker,40028,63902,10 +110814,Kylie,35320,1872360,12 +110815,Aplikant,319999,1345428,10 +110816,Hospital Guard,2001,1669956,31 +110817,T.J.,42329,91253,1 +110818,Rebecca Carver,362703,1498026,9 +110819,Miss Evelyn Togar,26326,100552,3 +110820,Molly,366630,1257387,1 +110821,Toby,28739,52860,8 +110822,James 'Jib' Caldones,308639,1291350,2 +110823,Piers Roaldson,246860,55493,4 +110824,Gage Freeposter,118549,16097,3 +110825,Серафим,85729,101423,0 +110826,Man in Galt's Office,153162,977837,36 +110827,Hector,18015,1052575,10 +110828,Dr. Pepper,106020,1588548,7 +110829,Jack Devine,26486,11477,4 +110830,Edward Clary (as DeForest Kelly),47739,1750,15 +110831,,63899,932881,8 +110832,Jody Kellogg,77625,37007,7 +110833,Pepe (as Anthony Curtis),66175,3150,3 +110834,,328692,1434874,10 +110835,Crokind Shand,140607,1379749,66 +110836,Autista di M.,47096,44860,4 +110837,Flunkie #2,302699,1754482,31 +110838,Nick,8457,181553,8 +110839,Todd,322922,702,12 +110840,Dancer,108222,1018954,42 +110841,CIA Jet Agent,177677,1303330,66 +110842,Magician's Assistant in Demo,228647,116309,23 +110843,Grace,68174,84513,5 +110844,Biggie (voice),136799,55466,4 +110845,Chinese Doctor 2,15092,60857,27 +110846,Emil Hebert,104674,13298,3 +110847,Brendan Garrison,336271,15029,3 +110848,Clinton Green,26331,5563,2 +110849,Mr. Lamb,8619,1077822,15 +110850,The doctor / The samurai (voice),16137,62535,8 +110851,Lola Johnson,300667,1790364,17 +110852,Dean Curtis,69560,70241,4 +110853,Saiko,255948,235038,4 +110854,Tech-Stylz Dancer,243683,1398204,91 +110855,Bruce Martin,106020,1769041,10 +110856,Miles,6980,51755,8 +110857,X-Wing Pilot,330459,937222,48 +110858,Harper Simmons,88042,54479,4 +110859,Sabine Muffat,144111,120440,7 +110860,Prince Omar,20558,1982,7 +110861,Scared hitchhiker,284279,1347585,12 +110862,Bodyguard 2,61035,1446118,45 +110863,,31512,555256,20 +110864,Senior MI6 Man,146216,1009512,46 +110865,Theseus,182129,24733,0 +110866,Flyers (uncredited),99934,1408729,12 +110867,Herself,16800,939008,24 +110868,,83501,929685,1 +110869,Ellie Mae Smith,180819,102732,5 +110870,Sergeant,89086,1469278,18 +110871,Flower,125943,69855,1 +110872,Claudio,54155,1158462,5 +110873,Camarero,80280,1509256,27 +110874,Hayley Wolff,78096,161847,3 +110875,David Collins,62213,234983,8 +110876,Sir Francis Spring,353326,11275,3 +110877,Christine Schwibbach,49850,556734,17 +110878,Zavic,27549,80579,6 +110879,Young Hope Lavelle / Young Faith Lavelle,24810,1116152,10 +110880,Kim,289225,482289,5 +110881,Marc Bertaud,10795,83813,26 +110882,Rajesh,46387,85683,2 +110883,Ambassador,73430,2497,9 +110884,Bert,87060,27941,5 +110885,Asi,270646,1321913,6 +110886,Police Chief,105906,1137525,8 +110887,Komiser Naci,74879,99314,1 +110888,,339367,1449318,5 +110889,,107976,1128004,4 +110890,Noah,14843,54789,2 +110891,Santina,3520,32379,7 +110892,Dr. James 'Jimmy' Kildare,153165,2007,0 +110893,Doris,31146,171672,8 +110894,Clute Mirkovich,142012,17646,5 +110895,Mexican Stranger,24619,1850005,19 +110896,Male Racer,168259,1161711,26 +110897,Penny,137683,74303,3 +110898,Chuck,89145,120211,4 +110899,Steve,5123,1781806,18 +110900,Santa Claus Auditionee / Himself,430826,1891561,65 +110901,Appa Kulkarni,94935,123316,1 +110902,,211233,93565,0 +110903,Ensemble,15199,1641967,8 +110904,Woman,78318,68653,30 +110905,Flight Attendant,1726,205720,51 +110906,Nurse Price,10055,62592,11 +110907,Shunji Saeki,31512,129701,15 +110908,Kwong's Brother,42552,1209344,14 +110909,Saucy Wood Nymph,10482,28475,11 +110910,Bartender,263115,1301772,43 +110911,Busker,397717,1722992,40 +110912,,340176,1711416,18 +110913,Jimmy,125300,7036,3 +110914,Lieutenant,1986,1011139,18 +110915,Wick,31146,20212,3 +110916,Karina,84848,931358,1 +110917,Governor Francis,383538,1215021,8 +110918,Juju,39356,939398,14 +110919,Linda Cavendish,120212,42567,1 +110920,Mover,1942,119588,18 +110921,Old Teacher,75262,1176524,21 +110922,Mickey Lee,6933,11152,7 +110923,Brian Marsh,8852,47441,3 +110924,Cabby,5060,30582,13 +110925,lawyer,51549,120351,5 +110926,Garde Mobile,12422,544608,15 +110927,Forensic Hoffman,214,36055,10 +110928,Biondo,303542,1156306,11 +110929,Laura Merrick,126418,125841,1 +110930,,56599,1134619,13 +110931,Chelard,129553,4121,8 +110932,Father Robert Tomlin,324930,1500687,4 +110933,Waltzy Malone,175171,87697,2 +110934,Genie of the Lamp,70313,30184,4 +110935,Deputy Jordan,139455,72440,2 +110936,Tim Grant,337789,1231330,6 +110937,Kokuto Azaka,23155,89835,7 +110938,Principal Mary Nell,343795,51456,12 +110939,Himself,128795,1315335,2 +110940,Superfly,24363,18270,10 +110941,Kevin,155341,1869475,9 +110942,Julia,408537,1181214,4 +110943,Prince,143380,1119000,2 +110944,Charlie,11338,14888,18 +110945,Doc / Merrimack / Mr. Snuggles (voice),44896,17401,9 +110946,Susan Andropolis,146322,110449,8 +110947,Anu's Mother,330418,1026839,7 +110948,Raja Hindustani,21566,52763,0 +110949,Fernando Alonso (voice),49013,938203,43 +110950,Maryana,207636,29973,1 +110951,Dr. Saperstein,75969,1399819,25 +110952,Felicia Alden,6069,5047,4 +110953,,10754,66477,14 +110954,Jackie Kallen,8842,5344,0 +110955,Young Caspar Dixon,35977,53176,12 +110956,Herself,253337,10750,23 +110957,Nancy Carter,13493,88123,3 +110958,Bo Kerry,121636,34186,6 +110959,"Monroe ""Eagle"" Cole",16784,193,1 +110960,,19501,93377,4 +110961,Sebastian,359025,1585964,7 +110962,Dr. Roth,9963,53,11 +110963,Priest / Father,42571,128227,11 +110964,Ernesto,73872,228567,3 +110965,Watch Commander / Rock Powers (voice),33427,19547,4 +110966,Mike the Gambler,256962,77597,28 +110967,Louis' Trumpet Playing (voice),10198,5287,22 +110968,Weigelt,82098,14242,5 +110969,peter,226672,1503256,14 +110970,Sheriff Josh Peters,53949,103672,6 +110971,Mendoza,45191,1197385,7 +110972,Girl,46982,1537356,15 +110973,Kim Su-yeon,37502,126881,5 +110974,Trashcan Man,13519,40009,7 +110975,Max Saltzman,53172,3085,2 +110976,Nico,120922,25129,5 +110977,Mrs. Nelson,118900,93897,9 +110978,Nicholas 'Nick' Quayle,26768,96178,4 +110979,Casey,107811,73128,1 +110980,,133783,1476852,14 +110981,Lacie,85430,932045,0 +110982,Marina,160844,124679,2 +110983,Ariadne Charlton,185156,586,7 +110984,Kaufmann 2,266044,1822972,25 +110985,Himself,52903,1263733,1 +110986,12-Step Meeting Member,14976,1716737,22 +110987,Maureen,115616,26071,3 +110988,Devan,44566,1047716,5 +110989,Chief Insp. Frederick Abberline,24486,3895,0 +110990,Jim Killan,1790,3381,0 +110991,Roberta,448763,1694571,3 +110992,Student 2,13058,1589678,34 +110993,,301671,1120855,14 +110994,Satō (voice),357390,552683,6 +110995,German Prisoner #1,19996,85423,13 +110996,Detective Yoon,346646,1255409,5 +110997,Didier Revol,13258,24502,9 +110998,Bellboy (uncredited),70151,592,10 +110999,Cale Weinke,286532,1382741,18 +111000,Landlady,43155,13996,6 +111001,Frankie,46448,653,5 +111002,Yvonne,299165,1377948,6 +111003,Horse,28969,4139,2 +111004,Businessman (uncredited),73430,569142,17 +111005,The Duke of Towers,57412,14688,2 +111006,Call Girl,18836,62288,6 +111007,Jonglierende Fau,4291,36079,9 +111008,Adrian,36251,200613,13 +111009,"Jerry Drake (segment 2 ""Creeping Vine"")",26811,55037,13 +111010,Mr. Williams,199647,622844,6 +111011,Vicar,173638,26121,10 +111012,Tracy,36992,13656,1 +111013,Sheriff McAllister,18616,74573,7 +111014,Christo,255343,994153,8 +111015,Sailor O'Connor,227325,10862,3 +111016,Pub Proprietor (uncredited),43419,3371,21 +111017,Mrs. Dunk,28001,99376,9 +111018,Cindy Natale,27840,97621,2 +111019,Nick Robey,25738,81970,0 +111020,Opposition Parliament Speaker,109716,33007,86 +111021,Barbara Beesley,159469,952986,10 +111022,Mrs. Haggard,169726,30126,2 +111023,Jessica Kirson,369524,1226535,16 +111024,Lynn,45949,15480,0 +111025,Lady In White,152736,1333567,8 +111026,Laurie Woods,26131,23627,2 +111027,Ma'am,142412,86075,0 +111028,Aiden,33570,54198,6 +111029,Ted,273481,19498,4 +111030,Mayor,32235,1096796,4 +111031,Suzie Cavandish,19794,66579,7 +111032,Trooper Donner,9542,35090,5 +111033,Mark Hales,68347,555159,2 +111034,Man Reporting No Hope for Crash Victims,31445,34818,16 +111035,,19552,1275923,14 +111036,Throne Room Amazon,297762,1457240,60 +111037,Père Claire,283726,1471573,20 +111038,Cortez Gang,268920,1755085,107 +111039,Cheedo the Fragile,76341,1278500,10 +111040,Groupie,17303,1399816,15 +111041,Ephram Thorne,36983,8262,3 +111042,Aivaaq,82492,928077,1 +111043,Donna in coppia nel night,58611,105327,15 +111044,The Rose (voice),309809,8293,3 +111045,Park Caretaker,20174,85778,12 +111046,,391778,223860,9 +111047,Buck Seger,51836,58791,7 +111048,Paula,63615,27464,2 +111049,Thunder Spirit,55534,154647,20 +111050,Milwaukee Man Drinking From Bottle (uncredited),1724,7624,67 +111051,The Showgirl,14505,58742,13 +111052,LA Metro Police,242042,86276,23 +111053,Leslie,74836,1057914,4 +111054,,408550,1658132,4 +111055,Annabelle,87936,106628,11 +111056,Sam Harris,3087,30270,3 +111057,Alf Hewitt,6341,101781,10 +111058,Sam,16839,39679,0 +111059,Suzanne Dunne,259894,78837,1 +111060,Ruth,85494,85362,1 +111061,Samurai Ensemble,616,1593825,43 +111062,Boy,24973,1747653,19 +111063,Chin Fung,155397,1168161,2 +111064,Dave Greenberg,84305,3911,6 +111065,Observer,285181,4815,15 +111066,,398786,86243,19 +111067,Soigneuse d'orques,97365,1123789,12 +111068,Giacomo Bonetti,79836,131683,1 +111069,Miss Trollope,108012,1934,3 +111070,Anran,288788,74022,2 +111071,Rubble Survivor (uncredited),49521,1615574,32 +111072,Jason Cross,13649,200823,13 +111073,Eva,47120,50667,0 +111074,Teenage John,72105,180182,39 +111075,Dona Íris,108712,1491377,13 +111076,,211561,33549,1 +111077,Mrs. Cartwright,153652,8238,3 +111078,Joe,41234,82860,14 +111079,Didier de Merengue,35016,27880,6 +111080,"Ukolov, Captain 1st rank RN",271234,86940,9 +111081,Party Guest,38987,82096,12 +111082,Eklavya,192675,35780,0 +111083,Greaser,47342,1837866,21 +111084,Lead Pvt. Ando,43407,129506,4 +111085,Appu master,237672,140466,4 +111086,Yasmin,61581,99536,7 +111087,Tenente,59040,1385125,18 +111088,Engineer,147829,30200,36 +111089,,461088,1592151,5 +111090,,148265,1289123,5 +111091,Rick as a boy,34623,96738,8 +111092,Jérémy,359413,450366,13 +111093,Agnès,64934,146496,7 +111094,Evelyn,304372,29051,13 +111095,Skating Rink Manager,55347,235856,28 +111096,Ford Prefect,64353,217800,2 +111097,Georgie,28943,47644,6 +111098,Himself,329243,52139,2 +111099,Collier Brandt,134806,1100321,5 +111100,Goon #4,284564,1836945,25 +111101,Titi (voice),356161,1553351,5 +111102,Nadie Logan,106135,1039632,2 +111103,Herself (archive footage),318224,10427,16 +111104,Theresa Rodriguez,8988,1741944,17 +111105,Koya,341895,1470725,4 +111106,Drago,255343,78882,4 +111107,Creature Vocals (voice),209112,1077782,109 +111108,Guard,310135,1453145,28 +111109,Ele mesmo,448763,1831312,21 +111110,Pilot,116232,101490,20 +111111,,402612,1637679,4 +111112,Dorothy,1942,2265,10 +111113,Senior Doctor - Cambridge Hospital,266856,23429,24 +111114,Naomi,32298,105190,7 +111115,Himself,345519,1479515,2 +111116,Himself,374460,12062,20 +111117,Ginger,32526,1176947,10 +111118,Ryan Varrett,91333,77120,2 +111119,Ibrahim,245706,1458843,24 +111120,Sidney Moncrief,70863,33197,10 +111121,Pamela Upton,201085,1504950,9 +111122,Tania,10748,118038,16 +111123,Judge Ernest Blacker,293452,29512,4 +111124,Batman/Bruce Wayne,15805,34947,0 +111125,Tessa's Friend,418437,1816403,14 +111126,Farhad,1640,17857,49 +111127,Laughing Insurgent,68721,1735546,46 +111128,Schizophrenic Runaway / Barn Partygoer,8988,1741932,71 +111129,,46492,34376,12 +111130,Señora en delegación,41298,1104716,12 +111131,Outlaw (uncredited),182035,975306,10 +111132,Sir Pedro of Spain,26643,127442,11 +111133,Tadashi Murakawa,14217,112861,2 +111134,Edelsen's Companion,9252,36686,10 +111135,John Ashwood II as a Young Man,52440,4353,8 +111136,Librarian,38448,135436,9 +111137,Burlington Potluck Musician,356752,1841548,71 +111138,,295273,96958,16 +111139,Producer,14543,1091,5 +111140,Pettine,20481,65146,10 +111141,Khalatnikov,266856,1465954,32 +111142,Client,97797,1014984,12 +111143,Countess Nordston,96724,237020,17 +111144,,11328,1444475,20 +111145,Bond Trader #1 / Police Officer,30361,100233,9 +111146,White Elk,53931,106769,6 +111147,The Snake (voice),309809,6554,16 +111148,Mrs. Poker Jenny Schermerhorn,47914,5729,3 +111149,The German Ambassador,369885,1079137,36 +111150,Mother,56150,24815,5 +111151,Profesor de historia (voice),89247,1074714,9 +111152,"Park Do-won, the Good",15067,17120,2 +111153,Doña Mercedes,332354,258049,5 +111154,Blackburn,43250,4307,5 +111155,Caspetti,17238,100427,7 +111156,Agatzi Girl,242097,1563106,15 +111157,Theresa,410537,1704843,7 +111158,Grand Father,85709,932491,2 +111159,Mysterious Englishman,28131,30766,5 +111160,"Ebenezer Blackadder / Lord Edmund Blackadder / Edmund Blackadder, Esq. / Cmdr. Edmund Blackadder",51247,10730,0 +111161,Collins,59962,9780,4 +111162,Bertie Wooster,82237,14261,2 +111163,The teacher (voice),16137,79551,2 +111164,Etta Candy (voice),15359,113904,9 +111165,Cusatelli,43645,6394,8 +111166,Omar,24424,132110,7 +111167,Zatanna (voice),408220,236021,2 +111168,Computer Man,160324,98103,6 +111169,Marietta,43894,98462,0 +111170,Tron,53358,1384202,6 +111171,Claire,64850,31383,0 +111172,Tommy Grady,31067,149484,15 +111173,Claude,23957,1200841,6 +111174,Caritina,300601,982296,7 +111175,Attanasio,419522,1879413,19 +111176,Professeur Brügen,13336,25282,2 +111177,Präsi / Günzelsen (voice),9514,1642149,14 +111178,Laura,340224,1094635,2 +111179,Deputy Fire Chief Daniel Carr,142402,157021,10 +111180,"Hans ""Hinken"" Claesson",145247,1314261,5 +111181,Leslie,347630,1695649,15 +111182,Bartender,45610,1771556,16 +111183,Carter,12247,71891,11 +111184,Kyuzo Miyabe,248087,119241,0 +111185,Wolfgang,256311,65054,4 +111186,Frank,290999,88381,7 +111187,Trudy Strauss,43526,20366,2 +111188,Idonee,43319,14965,2 +111189,Menik Sasongko,39024,1381948,5 +111190,Akane,340176,1711401,11 +111191,Emilio,82999,929046,8 +111192,Shalini Sehgal,21566,87304,4 +111193,Angela,26390,3127,11 +111194,Patrick Ryan,340584,20212,1 +111195,Yossel Lutchik,362463,1518295,4 +111196,Tarzan Rıfkı,307020,97272,1 +111197,Herself,63144,1624622,17 +111198,Louise 'Honey' Parker,74629,5130,3 +111199,Private Turner (as DeWolf Hopper),72638,2776,15 +111200,Model House Tenant,91679,589420,58 +111201,Jim Gilson,75510,20364,1 +111202,Heather,124042,1327721,8 +111203,Jordy,230211,147535,7 +111204,Rika Harada,72592,66153,13 +111205,Ana,104973,101472,3 +111206,Jane,169758,88542,6 +111207,Adrien Arcand,290825,9640,8 +111208,Catriona,8981,1391414,5 +111209,Felipe II.,270470,14821,4 +111210,Poker Player,2001,1781697,28 +111211,Amy,31385,13445,2 +111212,Aleksandar Tirnanic 'Tirke',57419,226139,0 +111213,Xiao Lung,188836,1166113,0 +111214,Han Gong-Ju,229304,1263930,0 +111215,Norman,42614,29036,2 +111216,Min-young,345888,1551424,5 +111217,Onofrio,231176,1266278,7 +111218,Wonder Woman,460135,15761,1 +111219,Miru,50674,73357,3 +111220,Flores,60599,1327735,16 +111221,Blackmailer,185154,3548,5 +111222,Mrs. Potato Head,130925,61964,9 +111223,Pelle,79743,1169503,4 +111224,Madonna,53230,98008,7 +111225,Yuri Astrov,7220,163220,33 +111226,Himself,112722,219396,0 +111227,Himself,293262,177558,9 +111228,,103875,550689,0 +111229,Himself,70027,1066343,18 +111230,Tivik,330459,1670,39 +111231,"Valeria Sergeevna Podgornaja, psychologist",63281,1612389,9 +111232,Pema,8341,54615,1 +111233,Nicki,15084,35747,0 +111234,Colonel Wheeler (voice) (as Jim Devoti),16873,1080212,24 +111235,Dr. Forrester,21451,6933,6 +111236,Montoya (voice),9389,28848,13 +111237,Mother,166886,1156245,1 +111238,Stuart,82626,230868,5 +111239,Dr. Ted Rampion,30374,101678,2 +111240,Paolo,53648,122023,3 +111241,Sarah Jane McKinney,51875,57451,0 +111242,Nurse,57680,582892,10 +111243,Shayna,63877,155950,0 +111244,Dr. Carter,26323,95729,8 +111245,William,168022,1272215,1 +111246,Maksim,347979,1396558,0 +111247,Prince,4279,9746,5 +111248,Stephen Hayes,12247,71888,2 +111249,poacher (voice),56391,1082026,17 +111250,Captain Andy,158990,6719,8 +111251,Escaped Slave,3115,121191,14 +111252,Martinex T'Naga,283995,19975,27 +111253,Courtney,225044,1210611,9 +111254,Harry,92809,1338405,4 +111255,медведь,63449,42124,2 +111256,"Jacob, the Dwarf",51349,143974,0 +111257,Skye Rotter,53999,560298,1 +111258,Elodie,408024,1363549,3 +111259,Cmdr. Hwang,10005,61857,14 +111260,Le médecin ('L'enfance'),98302,24807,0 +111261,,27276,551847,38 +111262,Nate,169800,1152020,1 +111263,Dixon (as Michael Branden),31167,103367,9 +111264,Manon (voice),137193,4166,2 +111265,Diane,5618,44400,5 +111266,Mickser,82191,75187,7 +111267,Helena Monet,33305,25689,0 +111268,,59572,1229738,9 +111269,Sam Lyles,48852,69494,8 +111270,Cedergren,377290,1643033,16 +111271,Mrs. Simon,115109,83235,9 +111272,Nancy Jenkins,773,5151,7 +111273,Parliament Speaker,109716,543546,52 +111274,Klasse 3c,61035,1446111,37 +111275,Karol,377158,82313,4 +111276,Lolo [ロロ] (voice),56391,114913,8 +111277,Abdullah,452606,1762880,11 +111278,Marshall,310972,164114,6 +111279,Shruti Tandon,353464,1517761,7 +111280,himself,36140,1090533,4 +111281,Sammy,2143,480,6 +111282,Oliver,264397,1149166,5 +111283,Zack Gomes,70006,84217,7 +111284,2. YK-sotilas,148435,222316,7 +111285,Reema,31216,1184846,2 +111286,Burger Seller Bangkok,49853,1387782,37 +111287,Russian Officer #3,146216,1264776,56 +111288,Virginia Rogers Scott,84720,233143,4 +111289,Paul Yates,23692,57138,2 +111290,Manager,40990,1567894,15 +111291,"Lisa, the Daughter",49110,944510,3 +111292,Hunter,77875,1360087,14 +111293,Christine Jensen,29695,59846,12 +111294,Idaho,66925,564321,0 +111295,Joven Oficial,31299,1426412,14 +111296,Maid,10900,67707,10 +111297,,88273,1547797,39 +111298,Sune Andersson,30149,132500,0 +111299,Lucy,69898,172695,4 +111300,Alice Collins,16358,26513,8 +111301,Mr. Flimsey,35026,122708,16 +111302,Man on Telescreen,1984,11840,13 +111303,,128237,1086354,8 +111304,Ida,86168,74874,3 +111305,Michelle,233639,1279895,7 +111306,Beverly Townsend,38322,109561,20 +111307,Herself,338063,1581558,9 +111308,,1661,23750,11 +111309,Albert,41609,136787,14 +111310,Ken Katagiri,25716,94017,4 +111311,Rosa,331962,1706142,30 +111312,Katheryn,44682,1547724,7 +111313,Birch,272072,1324627,0 +111314,Michael,61528,110076,3 +111315,Alfred Salteena,54406,388,0 +111316,Gun,427680,1758533,5 +111317,Himself,312221,66072,44 +111318,"Marie, Girl in France",110887,13904,2 +111319,Dave Fletcher,13442,10814,2 +111320,Domingos,254435,1074907,6 +111321,il camionista,43548,120027,17 +111322,Young Kay,45098,1311149,4 +111323,Iben,1838,19354,4 +111324,Nora,166221,5960,11 +111325,Eric,540,1826581,14 +111326,Monte Rossen,34127,118022,3 +111327,Sandra,390547,1621790,4 +111328,Denise,187596,131723,4 +111329,Udai,310567,126500,3 +111330,Dan,1899,20200,3 +111331,Tibby Rollins,9779,20354,0 +111332,,36236,7710,15 +111333,Dr. Hart,33224,15949,8 +111334,Mary,190250,1176431,2 +111335,Guest at 1st Wedding,43809,120199,38 +111336,Thugged Out,302699,133067,15 +111337,Morillon,4930,40159,4 +111338,Marianne,15189,109046,15 +111339,Billy Boylan,42456,13294,2 +111340,Jess Coe,109258,113654,12 +111341,General Meng Yi / Dr. Jack Chan,11653,18897,0 +111342,Abby Mallard (voice),9982,3234,1 +111343,Chernov,26841,86954,3 +111344,Dell Chillman / Pilot (voice),13354,34982,1 +111345,Karen Kelly,13680,74932,8 +111346,Constable,103236,593137,11 +111347,Neil Thomas,61348,141034,3 +111348,Cassius,346672,9140,6 +111349,Ghost Face Killer,54503,95673,2 +111350,Jenkins,23107,117638,7 +111351,Deaf Annie,23107,3346,8 +111352,Sam the Skate,72096,190040,21 +111353,Anthony,177112,163959,5 +111354,Colquitt,9286,17837,14 +111355,Sven,324408,70153,5 +111356,Stone,47201,9274,0 +111357,Maya Goshdashtidar,7942,53364,5 +111358,Min's Doctor [cameo],107682,26739,5 +111359,Moominmamma,293271,1219469,1 +111360,Mr. Tong,33253,1098345,6 +111361,30-Year-Old Cop,75622,1036826,10 +111362,Kittie,26983,96735,9 +111363,Douglas (voice),16523,2955,14 +111364,Apocalyptic Nutter,16171,79888,40 +111365,Trucker,86709,146414,8 +111366,Milchpumpenfrau,70807,559684,10 +111367,Minor Role,41597,27945,29 +111368,Betty Piper,55663,222887,2 +111369,Ms. Coday,14642,29931,12 +111370,Doctor / Barman,37813,118586,6 +111371,Mekere,24973,10924,8 +111372,,333884,1448593,9 +111373,,205349,134215,15 +111374,Deputy Charlotte 'Charlie' Spooner,74629,172073,6 +111375,Töhötöm,66926,235311,6 +111376,Dr. Vanard,122677,8516,0 +111377,Jim Hatton,18569,4303,6 +111378,Sardeep,18548,1221058,4 +111379,Anwar,98203,1200477,24 +111380,Award Beauty,18690,97964,14 +111381,Videl,38594,90569,9 +111382,Harmon Rousehorn,23096,86368,19 +111383,Casino Security,11358,64674,48 +111384,Mrs. Coster,36373,13354,12 +111385,Lin Ho Lung,25655,62410,0 +111386,Narrator,14073,35780,8 +111387,Augustine,323929,1285848,8 +111388,Tom Malone,791,6074,4 +111389,Lieutenant Nelson,132859,1003567,6 +111390,Oppenheimer,336549,86727,2 +111391,Zijn maîtresse,268853,1440428,5 +111392,Bishop Zee,278316,98889,9 +111393,Dr. Yasuyuki Inoue,315846,1693,7 +111394,Ivy Conrad,43321,7302,1 +111395,Michael,199374,559139,3 +111396,Briton Biker,240745,1660700,29 +111397,Hot Babe,134201,1771032,13 +111398,Barmaid,11509,133580,13 +111399,Director Philips,146216,11276,15 +111400,Mr. Cali,158015,305993,7 +111401,Dr. Martha Kent,97598,41245,3 +111402,SEAL Commander,109424,94864,2 +111403,R.A.,325133,1180698,25 +111404,Carnival Manager,287636,568321,19 +111405,Abner,42040,15198,5 +111406,Carl Rizzo,84209,922,2 +111407,Erwin's Friend,376660,60720,22 +111408,General Oliver,37292,100919,3 +111409,Lashina,460135,18706,17 +111410,Karl,9639,963487,7 +111411,Elizabeth Williams,791,11825,1 +111412,Anwar,62132,98612,10 +111413,Musician,25855,1489162,11 +111414,Electric Panel Guard,246655,1796389,30 +111415,Ralph,39978,39884,5 +111416,Isabelle Ginori,126958,1083438,1 +111417,Young Okot,202214,1184330,7 +111418,Melvin,170603,88948,7 +111419,Gilles,91690,583356,4 +111420,George R. 'Machine Gun' Kelly,43119,4960,0 +111421,Jesse Fletcher,308032,81697,15 +111422,Herself,447758,1220343,36 +111423,,113040,1056226,1 +111424,Julia - MP Wife,295964,1290659,26 +111425,Deb Dorfman,169068,10131,0 +111426,Suzy Kroll,98864,203731,7 +111427,Ilsa,28746,52611,0 +111428,Mary,289232,35865,3 +111429,Vieri,49514,1623451,20 +111430,Tommy,27986,120774,9 +111431,Snade,43811,30215,14 +111432,Police Broadcaster in Surveillance Plane (uncredited),66175,40185,11 +111433,Aglaya,77986,235065,0 +111434,Marcy Turner,6948,51537,3 +111435,Mr. Graham,91583,67449,1 +111436,Sheriff Jim Burke,14435,11784,5 +111437,Don Gale,29829,88671,0 +111438,Aunt Ethel,54660,119113,8 +111439,Otto,30844,109545,4 +111440,Inspector Weil,81541,101596,12 +111441,Gemma,58007,16757,3 +111442,Jan Sikorsky,264061,30553,7 +111443,Custodian,38065,1863525,11 +111444,Himself,15258,157602,57 +111445,Greta,341174,1648936,17 +111446,,26864,1458394,9 +111447,Lefty (voice),1267,121830,18 +111448,,347106,83899,4 +111449,Pop Shea,38769,77115,6 +111450,Crow Hunter,55534,222555,3 +111451,,299165,1697812,33 +111452,Mourner,332806,1446067,1 +111453,Agla,131343,1093245,0 +111454,Larry Durrell,44746,1247,2 +111455,Dr. Carl Metz,194393,12157,2 +111456,Roberta,9779,1055157,25 +111457,Stephen,24578,96280,1 +111458,Train Conductor (uncredited),92848,124875,17 +111459,Kate Mercer,311291,44079,0 +111460,Abe Shinoda,155724,51806,4 +111461,Dr. Thomas Butler,42871,95668,12 +111462,Antonio Baldini,15640,16725,14 +111463,Maryam,224282,1246961,0 +111464,Schimi,2734,27652,30 +111465,Wanda,41831,39568,3 +111466,Mary Anne Peterson,301348,999605,9 +111467,Misty,167810,1793168,13 +111468,Calpernia Addams / Scottie,32526,72095,0 +111469,Bruce 1,306952,225377,7 +111470,John Melchior,88375,13950,4 +111471,Dave Quittle,37923,16119,4 +111472,El Caribe Party Patron,2001,1031779,87 +111473,Nathan Akerman,116306,1063268,3 +111474,,73984,996571,14 +111475,Trooper (uncredited),19995,1201399,69 +111476,Barmaid,60269,1605158,12 +111477,The Teacher,129363,1089164,3 +111478,Nikita Hrustsov (as Sergei Fetissov),46931,137847,9 +111479,,421741,1696088,7 +111480,Heo Sam-gwan,321191,75913,1 +111481,Dr. Blanchard,4266,27647,14 +111482,Clinch,188161,3896,2 +111483,Alice,397422,1226302,1 +111484,Edelfrälein,1659,18446,9 +111485,David,294483,1325764,10 +111486,Frank - Butler,120497,19553,5 +111487,Maria Orlich,53853,41516,3 +111488,Policeman,128637,27172,6 +111489,Ambulance Driver,14510,100655,7 +111490,,41187,1888378,10 +111491,Magalie,366548,1531257,5 +111492,,47324,1620568,7 +111493,Ms. Davis,32124,108921,11 +111494,Mary Donnell/Mme Al Haines,77964,3380,0 +111495,Jong-du Hong,26955,85008,0 +111496,Reporter #1,79500,1184131,11 +111497,Mimic Bug #2,33005,62824,19 +111498,Pianist,33481,110779,29 +111499,Victor,2196,16480,11 +111500,Quintin,322922,2055,1 +111501,Himself,15258,20753,92 +111502,NBC Late Night Page,332979,1355601,24 +111503,Belle Fawcett,78734,94928,1 +111504,,201429,1324026,13 +111505,Kryspín,314635,1630507,5 +111506,La blonde du train,33436,35929,16 +111507,White Woman,397717,1722988,32 +111508,Norman,122271,1735906,4 +111509,Pete,53950,4443,6 +111510,Rick,338421,1629647,23 +111511,Stanley (voice),1267,33706,12 +111512,Emily Leighton,49007,27125,2 +111513,Feisty Woman,255160,1898248,35 +111514,Dick Pabich,10139,33528,8 +111515,Richter der Weltrekorde,302118,21998,8 +111516,General George A. Crook,37238,15625,5 +111517,Elsie Drake,54242,89522,3 +111518,Johan Påhlman,86980,64975,10 +111519,Director Voice,13061,32535,6 +111520,Michel,4948,2565,1 +111521,Jimmy Martin,36335,119670,4 +111522,Old man,174000,8854,4 +111523,Ber-Lak,19350,1068995,7 +111524,Hector,227348,188347,4 +111525,Pod (voice),51739,33134,2 +111526,Luis,282983,27471,2 +111527,Eckart,37923,4690,5 +111528,Brendan - Garrett's Assistant,17926,61833,13 +111529,Detective (uncredited),28000,159555,18 +111530,Eero Näre,442752,125801,12 +111531,Himself,173467,190,10 +111532,Constable Hipkiss,425774,1707899,28 +111533,Collega di Riccardo,142320,109335,31 +111534,Cop,336011,1366398,6 +111535,Lola Rodriguez,57326,117308,6 +111536,Bruna,47959,229668,10 +111537,Harding,3081,10776,8 +111538,Mr. Hoyt,300769,1381498,3 +111539,Ranger,8366,37035,1 +111540,The Walker,2274,23495,3 +111541,Mundi,65881,1326172,6 +111542,Uta,339342,1466677,3 +111543,Club Man,24469,1579240,19 +111544,Ilkka Takkunen,20164,124286,2 +111545,Himself,15258,545851,50 +111546,Ashley,273743,37252,3 +111547,Team Manager Choi,32168,566950,4 +111548,Dr. James Farmer Sr.,14047,2178,2 +111549,Grandma,334298,103598,3 +111550,Groat,142012,51801,9 +111551,avvocato Ramos,356758,127248,2 +111552,Pauli,52936,6807,8 +111553,Quintero,213681,12054,20 +111554,Ayana,177112,1684512,2 +111555,Lord (voice),315465,551776,13 +111556,Small Immigrant (uncredited),47653,148071,13 +111557,La surveillante de la prison,53404,240956,14 +111558,Edgar Courtland,84496,15635,14 +111559,Tarble,38594,78402,0 +111560,L'uomo chi mangia la terra,46567,66753,7 +111561,Jonas,38850,52415,8 +111562,,133783,1151242,9 +111563,Alexandra / Stephanie,226188,2684,0 +111564,Tarneja,25499,11851,2 +111565,Alvin's Mother,179066,8637,16 +111566,Williams,91583,1234253,5 +111567,Elise Clifton-Ward,37710,11701,1 +111568,Alcalde,378087,145414,1 +111569,Jim Crawford,268875,114097,5 +111570,Leslie Bloom,17332,46074,7 +111571,Officer,10053,62572,18 +111572,Christine Everhart,1726,57451,7 +111573,Terry Knapp,121154,19901,10 +111574,Charlie Stoker,86825,1247,2 +111575,,128237,1107943,6 +111576,Duplicate,312174,1400589,1 +111577,"Chudy, urzędnik opiekujący się Scopem na Australii 458",91691,1148,15 +111578,Nikki Flange,16066,79127,5 +111579,Kendall,246218,1094672,2 +111580,Harlon,300090,931945,4 +111581,Driving Teen,45132,110183,24 +111582,Bobby Verdugo,93511,20190,5 +111583,Day Deputy in Hospital Prison Ward (uncredited),28433,93624,15 +111584,Beauty,49038,28412,1 +111585,English Cabbie (uncredited),52440,1090669,61 +111586,Muto,134350,2541,0 +111587,Murdo Carvell,43499,135356,7 +111588,Ana,182228,1742651,11 +111589,Herrera Mother,28304,89928,10 +111590,Derek,32790,168778,9 +111591,Mandy Sparkledust (voice),136799,1704770,15 +111592,Gladys Foster,22894,58929,11 +111593,Batley,3023,29645,7 +111594,Delivery Man,145220,55469,32 +111595,Cal,124054,1079366,2 +111596,Padlaura,150223,1808004,13 +111597,Kavi,308529,74750,5 +111598,Son of Ares,32657,184842,71 +111599,Officer Stone,14505,6110,8 +111600,,33436,135628,23 +111601,Brown Eyes (French Story),3059,29957,10 +111602,Eleanor,35026,1307604,5 +111603,Glória,192210,130040,4 +111604,Alanna,289190,1357753,3 +111605,le père de Jacqueline,55424,64541,5 +111606,Rip Darrow,28304,7683,1 +111607,Fidel,6069,9631,7 +111608,Dieter,8371,8202,6 +111609,Jim,98115,110283,4 +111610,James Miller,151062,1685469,6 +111611,Carla Alberini,82481,563087,3 +111612,Lab assistant,89606,34759,4 +111613,Jessica,72545,118593,6 +111614,Tranc,17940,164485,15 +111615,Jack,14552,61563,19 +111616,Juan Robles,25376,1331805,19 +111617,Tank Officer (as John Duvall),116554,1214788,20 +111618,Flossie,38769,1031272,10 +111619,Maggie Swann,263855,11705,1 +111620,Coach Walden,382951,68180,8 +111621,Graham,270672,1400685,2 +111622,Gabriel,85430,1391205,3 +111623,Mary,8199,11150,4 +111624,Giuseppe da piccolo,46128,134961,10 +111625,Alyce Connellan,62837,1408750,16 +111626,Greg Bilson,183825,79247,7 +111627,Johan,2012,50557,4 +111628,Flanagan,37084,96137,6 +111629,Nick Nikas,429200,227564,2 +111630,Edward,92269,4966,3 +111631,Willy Hawkins,98289,40965,9 +111632,Arnold Kline,241239,1377670,12 +111633,La reine abyssine,70090,25154,1 +111634,Himself,142478,121684,6 +111635,Lisa Hines,8617,39556,3 +111636,Jumanji,80280,1602315,19 +111637,Abu Adeep,16047,1147086,8 +111638,,63376,1486677,7 +111639,Jonah,16342,55467,2 +111640,Mike,77165,52255,9 +111641,Aida Soufi,461088,1861914,0 +111642,Dr. McEvoy,40060,52590,7 +111643,Dick Malloy / Agent 077,38681,89162,1 +111644,,218508,63704,3 +111645,Hera,320736,1421418,3 +111646,,362617,1149827,2 +111647,Boss Huller,94803,2895,0 +111648,Oncologist,293660,177885,19 +111649,Reece,390059,937913,7 +111650,,134215,35778,5 +111651,Michael Andropolis,146322,3392,1 +111652,Grant,86828,71403,2 +111653,Adele,192137,485005,0 +111654,Lydia,444193,2133,4 +111655,Tudsbury,16410,109864,10 +111656,Marie Saldano (uncredited),4982,1645157,107 +111657,Charlie the Chef,35626,6542,4 +111658,Jesse Abrams,84184,62861,1 +111659,American Scientist,2966,1077901,15 +111660,Stevie,287903,1544924,18 +111661,Jeffery Jay,14809,228953,3 +111662,Sex-Head,284564,15274,15 +111663,,461805,1152,2 +111664,Idaho,365942,53969,13 +111665,Mrs. Moore,73873,210473,11 +111666,Mikser,346443,566108,5 +111667,Freak,25625,76505,11 +111668,Miss Myers,30496,24243,10 +111669,Katelynn,116463,92086,7 +111670,Gunnars,7551,20220,5 +111671,Claire,360606,117995,4 +111672,Madame,352372,586,1 +111673,Elizabeth Collins Stoddard,62213,1160,1 +111674,Douglas,153541,1082093,2 +111675,Paco,11577,8259,16 +111676,Golden Flower,45935,226557,4 +111677,Calisto,100270,114461,0 +111678,MC at Strip Club,10804,82552,18 +111679,Yseult Lespinglet,14644,20080,1 +111680,Showgirl,25633,1138764,14 +111681,Black Jack,45227,238487,2 +111682,Solal,201365,1244,0 +111683,,423093,28514,2 +111684,Maria Cross,94348,37158,9 +111685,,110001,563822,20 +111686,Bruce Cutler,173153,4175,2 +111687,,47448,1271180,14 +111688,Dad,55343,16697,5 +111689,Andreas,175339,29175,3 +111690,Henry,376501,62747,2 +111691,Urologe,1421,11550,9 +111692,"Yukichi Morikawa, the Father-in-Law",133160,13283,3 +111693,Ted Adams,46007,13295,1 +111694,Antoine,14142,75633,3 +111695,Jürgen Hefor,82941,43198,6 +111696,Queen Victoria,10204,8534,11 +111697,Eva,365709,1528381,13 +111698,Sign Painter,52122,117029,16 +111699,Professor Robert Callaghan (voice),177572,2505,7 +111700,Choi,321191,1096793,4 +111701,Man in Straw Hat's Wife,53406,148045,2 +111702,Prof. Merrity,31984,14372,2 +111703,Káj,16174,60293,2 +111704,Pilar,76163,46128,15 +111705,Ben Baker,209244,58225,1 +111706,Juggler,43809,1448528,16 +111707,Ruba,201124,148016,1 +111708,Gerda,37468,117739,3 +111709,Drag Race Spectator,339419,1650200,52 +111710,Announcer (uncredited),90465,31771,14 +111711,Sgt. Snake Ming,25074,239009,18 +111712,Ignaz,335837,62892,8 +111713,"Elżbieta, dziewczyna Marka",49588,90760,1 +111714,Killa,43987,25004,0 +111715,Masked Man,300187,102396,12 +111716,Maureen,36691,52442,26 +111717,Sanae Otani,21966,78266,13 +111718,Captive Man,345925,1486215,6 +111719,Geri Sanders,25241,77228,1 +111720,Johnny Toussard,124042,76314,5 +111721,Oonagh,262958,1307014,1 +111722,Young Doctor,4964,107770,17 +111723,Joey Buttafuoco,19754,85154,1 +111724,,360603,1241137,6 +111725,Spadino Anacleti,356296,1864753,7 +111726,Bennett,44265,8223,0 +111727,Alkali Guard,246655,180996,77 +111728,,84508,1083311,14 +111729,,86942,2410,3 +111730,Burt Hanson,43256,19153,1 +111731,Jane Eyre (younger),22744,34210,3 +111732,Maid,29272,1276265,6 +111733,Miles,122857,1044952,10 +111734,Himself,55225,1593240,9 +111735,Young Tam,56329,1189922,11 +111736,Ken's Wife,77930,83352,15 +111737,Funeral Attendee,152737,1496731,19 +111738,Gertie Trinke,9541,57893,1 +111739,Rance Macklin,96089,104625,3 +111740,Nurse,256740,138608,7 +111741,,64204,3508,10 +111742,Rice,48677,4776,2 +111743,Daniel,6023,18688,3 +111744,Luigi,22182,88470,1 +111745,Griffin,15534,20212,1 +111746,Fletcher,44389,78190,5 +111747,Harold Gridley,34082,82388,1 +111748,Charlie Blanche,188161,12549,13 +111749,Pool Daughter (uncredited),184345,1286743,11 +111750,Nilüfer,30634,106622,4 +111751,Brother Tang / Leonardo (voice),26963,96670,4 +111752,Wife,338676,1378657,11 +111753,A & R Man #1,69,86938,28 +111754,Don Kim,15092,91387,7 +111755,Aditya Pankaj Garewal,46432,55064,1 +111756,Dan Duva,332979,151431,14 +111757,Mangst,122487,32422,4 +111758,Restauratrice chinoise,35025,1668056,25 +111759,Esmeraldo Carvalhal,132608,1271571,8 +111760,Dr. Hartman,77964,52176,13 +111761,Cafe Waitress (as Emma Lyttle),52452,146012,13 +111762,Lewis,392818,1386221,2 +111763,Mace 'Sandman' Moutron,128644,6280,0 +111764,Photographer (uncredited),31411,97225,13 +111765,Mrs. Pascoe,413998,1248292,8 +111766,Franky,167810,1454369,9 +111767,Adeline Gratin,68637,587159,4 +111768,Aditi Wadia (as Genelia),14467,87358,1 +111769,Elena,72057,564824,1 +111770,Jenny,16090,34757,13 +111771,Toby,45132,51663,7 +111772,Himself (archive footage) (uncredited),22447,152814,33 +111773,Sara,10063,343,1 +111774,Lucius,40085,103107,9 +111775,,198511,2369,9 +111776,Escamillo,47959,1185236,13 +111777,Bill Lee,2742,27811,0 +111778,,391757,234990,15 +111779,Ståle,360249,1648970,11 +111780,Hiram Coburn,46567,18841,0 +111781,Nick,63348,1108859,2 +111782,Oberscharführer Voss,336050,1353785,7 +111783,1st Twin,273106,1519557,12 +111784,Bonecruncher / Lout #2,267935,61187,14 +111785,Michelle,393659,103285,2 +111786,Max Pierson,18070,49327,9 +111787,,49106,237779,9 +111788,Vol,22792,1242258,6 +111789,Elora Lund,29829,140180,6 +111790,Initials PP,35025,937641,29 +111791,Carol,34496,1320567,6 +111792,Tuoba Lie's Man,217923,1436260,25 +111793,The Other,32708,62296,2 +111794,,77057,1063885,4 +111795,Zuleika,45179,559727,2 +111796,Waitress,302699,55615,7 +111797,Fausta,106944,1568246,9 +111798,Aircraftsman,44087,224026,31 +111799,Dean Talon,71885,67850,1 +111800,Avionics Engineer,177203,37093,6 +111801,"Jai Arnott (segment ""Acho que Estou Apaixonado"")",211166,133212,7 +111802,Hotel Doctor,76494,1785189,29 +111803,The Boss,380731,2047,0 +111804,Brother Divine,72096,172109,33 +111805,Kid (as Yuen Lung),45197,62410,1 +111806,"Suzanne, la tante de Simon",60824,24402,12 +111807,"Théodière, le deuxième ministre",63717,235633,6 +111808,Isabelle Cahill,7445,54479,5 +111809,Paul Hunter,40633,14976,6 +111810,,85377,136193,6 +111811,Lois,92393,1331981,4 +111812,Didier,63401,1606881,12 +111813,Geneviève,73562,19936,9 +111814,Delores,26486,1676597,19 +111815,Mrs. Worthington,43385,121323,9 +111816,Guido,43432,1023889,7 +111817,Interviewer,243683,1398056,34 +111818,Dorothy Bluebell,177043,7632,3 +111819,Sgt. Luke Schermerhorn,60551,15978,7 +111820,Officer Clayton,16131,74587,3 +111821,Lucy,260030,1317159,3 +111822,,88273,1442702,23 +111823,The Girl,79596,587539,1 +111824,Marc Mulheren,84340,1231717,7 +111825,Apple,310135,76877,2 +111826,Chorégraphe #2,352025,1784156,23 +111827,Physicist #2,266856,1503903,21 +111828,Littleton,44869,96722,21 +111829,Mathieu,1561,17593,4 +111830,Juliette,13741,59807,4 +111831,Hot Servant,156711,1349746,41 +111832,Aravind's Cousin,86718,580626,9 +111833,"João , o Mendigo",296288,1839909,17 +111834,Native Warrior,38404,120342,11 +111835,Cashier,45013,1817422,50 +111836,Megan,84105,88933,20 +111837,Cop #2,5638,81566,29 +111838,Franck Adrien,59118,14606,0 +111839,Tom,244801,1312686,5 +111840,,27276,84045,24 +111841,Marvin,97614,1207363,23 +111842,Silver Dollar (Tribal Chief),177043,16004,8 +111843,Savy,27696,1937,2 +111844,Hendrik Feldkamp,114790,36837,1 +111845,Galliano,315319,124624,14 +111846,Shawn,24978,55638,0 +111847,Mrs. Hunter,108723,1056756,22 +111848,Zylak,283995,142298,40 +111849,Art Bublin,73501,18262,12 +111850,Sloan,232462,128096,3 +111851,Additional Voices (voice),177572,54698,16 +111852,Mr. Fakur,375012,1178738,4 +111853,Rocky Rockford,250332,83397,51 +111854,Erwann Moenner,64362,21171,0 +111855,Agnese,75532,575522,1 +111856,Store Manager,44470,178650,16 +111857,Johnson,131039,62712,4 +111858,Extra (uncredited),3059,1349871,60 +111859,Vocero,264525,946533,10 +111860,Lisa,244458,84223,2 +111861,Pastor Rick,379441,1470,10 +111862,Wolfie,24150,130227,36 +111863,Sam,35113,39679,8 +111864,,145220,16303,60 +111865,,439050,1619957,3 +111866,General Serov,64483,82513,2 +111867,Surf shop customer,345915,1622671,33 +111868,Hotel Switchboard Operator (uncredited),54139,113655,18 +111869,Verdier,10484,39884,8 +111870,Emilio,132122,37195,2 +111871,Gösta Andersson,51141,107907,1 +111872,Pat,83995,599473,8 +111873,Ciężarna,314371,92652,13 +111874,Noah's Wife,2567,216778,50 +111875,Headwaiter (uncredited),43522,29274,71 +111876,Jeune femme cabine,98277,1849120,43 +111877,Jim Wyatt as a Child,61985,67371,5 +111878,Nico,110992,1050964,1 +111879,British Officer,85442,1717048,13 +111880,,117550,1111995,13 +111881,Facteur,271919,13697,6 +111882,Tim,147722,1075172,26 +111883,Dirty Belly,55534,941974,22 +111884,,124597,1675545,20 +111885,J. Harold 'Fog Horn' Murphy,153165,78773,17 +111886,Aide,206647,1168129,51 +111887,"Eun-Ji, Mi-Jin's daughter",13855,140335,6 +111888,Mayor,24331,67905,9 +111889,Blai,438634,1010010,13 +111890,Bryan English,195867,230,1 +111891,The Astronomer,241071,19,0 +111892,Petronas Dancer,243683,1398201,88 +111893,Andre,13542,1073482,10 +111894,Nurse Theresa (uncredited),1938,97042,11 +111895,Sarah,7555,35551,1 +111896,Anna,321315,1418982,2 +111897,David Carver,10004,61828,7 +111898,Patrick Smash,21605,1306785,0 +111899,Bachelorette,268920,1754447,60 +111900,Matt Pandamiglio,84340,113373,0 +111901,Jane,154441,112184,1 +111902,Nisha,13986,76233,2 +111903,Mr. Feldman,86825,51918,11 +111904,Viscount Deerhurst,352733,31739,9 +111905,Sally,213755,1751948,8 +111906,Trailer Trash Mommie,33343,1188786,17 +111907,Sheriff Hafferty,11096,19152,5 +111908,Malcolm,34496,1320564,2 +111909,Screaming Man,312174,1400601,16 +111910,Ki-Chul,396535,1530559,10 +111911,Tsunehiro Kawajiri,31512,13283,17 +111912,Detective #2,11338,8844,27 +111913,Riz Raizada,19623,86020,4 +111914,Pilo,157409,941301,4 +111915,El tabernero,122525,1039947,6 +111916,Diana Kelper,30155,105783,1 +111917,Gendarme,127812,140411,24 +111918,Dennis Kowalski,244458,75074,5 +111919,Teenage Girl,69165,107983,6 +111920,,254869,114981,48 +111921,Defense Secretary Swenson,31067,2698,8 +111922,Daft Jamie,52203,30188,8 +111923,Teardrop,39013,16861,1 +111924,Bride's Mother,80596,29258,43 +111925,Charlie Kaiser,59738,121638,16 +111926,Chaney,87516,2231,2 +111927,Solomon Moto,366170,1221105,10 +111928,Jonathan Bellah,14750,70569,0 +111929,Officer Meyers,20444,31117,7 +111930,Alison,244458,118036,4 +111931,"Gégé, le bistrotier",63717,237782,4 +111932,Dudù,84056,141111,7 +111933,Madame Lucia,35032,3340,11 +111934,,5165,1184834,20 +111935,Viking First Mate,43833,990435,19 +111936,First Waiter,14589,1468186,74 +111937,Karai (voice),1273,1339,5 +111938,Panteley,376188,1190182,7 +111939,Wolf / Javier Bardem Look-A-Like / Police Officer / Hellboy / Batman / Beowulf / Prince Caspian,13805,198150,5 +111940,Prostitute,38027,1404660,32 +111941,Paramedic #2 (voice),9297,1077841,8 +111942,Druze Warrior,157843,1199614,27 +111943,Puss in Boots (voice),810,3131,4 +111944,,41970,1359568,0 +111945,Hildebrand Johnson,987,3151,0 +111946,Josh Harmon,336775,1521489,14 +111947,Ralph,208869,1375554,10 +111948,"Maria Lefevre, tarot reader",325385,1585779,10 +111949,Liza,93935,1590332,6 +111950,Joao,17566,217924,6 +111951,Omar,187028,1187037,0 +111952,,237303,34066,3 +111953,Troy,33343,57133,5 +111954,Wendell Rohr,11329,4483,2 +111955,Professor Lillian Friedman,276401,19492,7 +111956,CID Inspector Mahesh Jadhav,192573,1172858,2 +111957,Oda Schaefer,82708,23282,11 +111958,Peter McCloud,212713,1197163,9 +111959,Himself / Mark 'Pappy' Jeung,48375,74036,0 +111960,,44716,1807465,17 +111961,Janne Dahlman,15472,93236,18 +111962,Beach Party Girl,77930,1784682,81 +111963,Lucinda,21481,87573,6 +111964,Agent Shaddus Peyser,23719,28633,8 +111965,"Henchman Monte, Posing as The Singing Kid",134238,940057,18 +111966,Bassem Marwan,46738,1150158,8 +111967,,361380,1442430,15 +111968,Dolly (dance-hall girl),84772,931242,6 +111969,Sister Hortenzia,20907,89640,2 +111970,Dr. Henry Stein,28071,99566,0 +111971,Puppeteer,103620,1651045,19 +111972,Katya,47851,663595,3 +111973,Ronald,193177,1911,10 +111974,Officer Marge McNally,68684,1849989,27 +111975,Mike Armstrong,95037,111464,5 +111976,Haskins,74525,5044,8 +111977,Krishnan's Uncle,398786,1380127,14 +111978,Valeria,58074,125357,4 +111979,Madison Walker,68174,20376,1 +111980,Bully,227306,117020,46 +111981,Stephen Nix,40465,74225,5 +111982,Julien,39413,145160,12 +111983,Jana Kaisler,48118,1116048,11 +111984,Kathryn Archer,264560,44935,1 +111985,Jay,13185,78064,3 +111986,영은(Yeongeun),67025,235338,4 +111987,Jang Young,180252,123664,8 +111988,David Spritz,6963,2963,0 +111989,Narrator,281615,29492,1 +111990,Catherine Morland,18093,72855,1 +111991,Miss Brand,43759,109701,2 +111992,Lepridon,92269,3088,2 +111993,Natasha,39517,3930,12 +111994,Frankie Doran,167073,1544914,24 +111995,Terry,93263,4515,6 +111996,Harriet,29136,1236553,10 +111997,Nurse Betty,344147,1367474,6 +111998,Scotty,2186,11641,2 +111999,Sikh Man (uncredited),27637,1724707,53 +112000,Urick,9914,60418,13 +112001,Hi-Hatz,59678,85067,13 +112002,Larry,100088,30612,13 +112003,Paula Atsuko Ebner,38154,97563,2 +112004,Mr. Doyle,62837,1472,5 +112005,Elena Polakov,367006,1641,1 +112006,,272165,59945,3 +112007,Alphonse LaFleur (voice),13354,9807,0 +112008,Gong-Gong,206197,1506482,18 +112009,Sarah Harriman,283686,12041,1 +112010,Poliisi,101838,1029088,21 +112011,Narrator (voice),43065,2714,0 +112012,Wilkins,94135,33220,10 +112013,Trading Post Clerk,176867,1198701,33 +112014,Charlie,69217,1811,0 +112015,,73835,1572533,12 +112016,Drunk (uncredited),17820,29987,14 +112017,Army Pilot,18651,1467400,56 +112018,Vladie,76757,93111,22 +112019,Robert Murphy,57680,60118,9 +112020,Creek (voice),136799,59919,3 +112021,Agent Hutchinson,52454,128003,2 +112022,Marcello Mastroianni,215741,1440747,2 +112023,Jack Sargent,64678,8213,10 +112024,Saul Atkins,26758,14579,4 +112025,Narrator (voice),365997,72129,1 +112026,Ruby,7229,1003,1 +112027,Giansanti,142320,149349,9 +112028,Detective,112083,21510,9 +112029,Felix Leca,68822,20113,2 +112030,,86321,1866322,7 +112031,,11643,14060,17 +112032,Frank,78691,50880,10 +112033,Himself,26465,544013,0 +112034,Nik,26841,235992,1 +112035,Volunteer,1116,1896861,25 +112036,Len,395982,1475127,3 +112037,Joleen,14349,6885,2 +112038,Jeanie,8988,47281,15 +112039,Tweetie,10109,63587,9 +112040,Audrey Bennett,2830,28640,8 +112041,Vittoria,41427,126441,3 +112042,Albert Londres,286512,46280,7 +112043,,68715,552659,13 +112044,Felicia,9959,53923,3 +112045,Mrs. Landreth,120357,99329,9 +112046,Le vigile hypermarché,343702,1472079,11 +112047,Sgt. Lindsey,26881,549251,10 +112048,Tenshinhan,39101,100124,7 +112049,Govend,188765,229932,1 +112050,Baronin Sandorf,50181,75,0 +112051,Co-Ed (uncredited),43546,1306178,23 +112052,Telephone Operator,127812,932463,45 +112053,,48341,20327,11 +112054,Young Melanie,13493,1634773,14 +112055,Coroner Nate Brown,53949,138248,22 +112056,Jim McGinnis,27446,81168,1 +112057,Dr. Wonka,118,113,11 +112058,Mugger,9352,5727,9 +112059,Svensk Lieutenant,11832,1116664,12 +112060,Ma Finney,358076,87685,8 +112061,Prisoner (uncredited),213681,1771582,53 +112062,Black Dragon,127329,100585,5 +112063,Col. Jack Knowles,51434,6355,0 +112064,,295621,1372554,2 +112065,Axel Bellmann,46513,15440,7 +112066,Yamagishi,282069,82875,15 +112067,Marina Golubeva,60189,126968,0 +112068,Marsha Dixon,138977,1182316,6 +112069,Jamie's Grandad,110115,1115634,4 +112070,Officer Clark,61908,121205,13 +112071,Reception Nurse,7942,1089427,28 +112072,,33611,119949,14 +112073,Private Shimizu,1251,33517,3 +112074,Paul,127803,211828,4 +112075,Munchkin,27358,931653,6 +112076,Erin,83899,138010,0 +112077,Leo Kronk,43849,39801,5 +112078,Himself,68721,1234512,20 +112079,Louie - the Hairdresser,157898,1429730,22 +112080,Claire,56653,17257,1 +112081,Manfredi Anacleti,356296,128456,6 +112082,Animool,64328,533061,17 +112083,Marianne,52999,552030,4 +112084,Jessica,6183,235176,28 +112085,"Mac, Owner of Macs Bar",121636,14028,2 +112086,Mrs. Peets,43131,8637,4 +112087,Himself,15258,6008,75 +112088,Gavel (voice),378236,34395,23 +112089,Lumberjack,113148,1895924,8 +112090,Keith,277237,1229255,7 +112091,Boat Driver,58251,1424327,7 +112092,"Prince Kasatsky, later Father Sergius",47190,544742,1 +112093,La standardiste (uncredited),1421,1723450,41 +112094,Pauline Ivanchenko,75262,277657,7 +112095,Shakespeare Audience (uncredited),206197,130843,38 +112096,Blaine,23964,43292,11 +112097,Livia,315872,1409556,8 +112098,Capt. Moreau,20674,28412,1 +112099,Kaitlin Wrigley,103014,188104,2 +112100,Frances,24050,11664,1 +112101,Vascara,354133,1496074,16 +112102,Phillips Minion,10025,1504712,20 +112103,Sam,18747,1415787,18 +112104,Bruno,13437,64344,5 +112105,Stephanie Davis,50647,1797614,30 +112106,Dr. Eak,10389,551618,31 +112107,P.K. Age 12,13823,75789,6 +112108,Sister Elisabeth,286595,1352760,6 +112109,Luke,18442,43265,11 +112110,Matthew,334527,1097817,11 +112111,Sarah Loveless,49500,214811,11 +112112,Reporter 5,27450,1229223,22 +112113,Francis Spiegelbauer,37911,119083,6 +112114,David Copperfield,141640,12791,0 +112115,Andrea,253258,567138,2 +112116,The Rake,445602,1113263,6 +112117,Azanu,12427,1811521,4 +112118,Gordon Harris,73348,14564,6 +112119,Lisa,82481,563088,4 +112120,Freeman,61908,30553,8 +112121,Crystal Vichycoisse,426230,1215797,11 +112122,Yann,329819,5442,4 +112123,Banana Man,42242,1212973,21 +112124,Ayanda,340627,1486604,1 +112125,Professor,19482,1334717,8 +112126,Shaheen's Aunt,81435,1164340,12 +112127,Conner Flaherty,128598,1088196,9 +112128,Female News Reporter,307479,1394591,7 +112129,Lt. Comm. Talbott,53619,14029,8 +112130,Khadija,21567,101856,3 +112131,Paul,1833,95604,9 +112132,Madeline,246917,1474723,6 +112133,Monster Ellie,6933,51458,12 +112134,Wife of the Justice of the Peace (uncredited),31773,9090,56 +112135,Detective Dibronski,331962,18313,10 +112136,Ashley,397837,1353827,16 +112137,Ellen Salpakari,41142,125631,8 +112138,Agent Frank Hurd,243935,11805,7 +112139,Specialty Dancer,14589,101772,35 +112140,Indígena del guajolote,14430,1120517,26 +112141,Himself,366696,1753490,16 +112142,Barbara Weston,9981,61114,2 +112143,Amorina's Man,1481,1844331,20 +112144,Mrs. Patterson,1790,19110,9 +112145,,335874,3266,2 +112146,Sheriff Reilly,9963,6908,6 +112147,Jorge Wardell,14977,53252,6 +112148,Molly,262958,1401120,9 +112149,Toby,117120,116265,2 +112150,Daniella,398891,106817,3 +112151,Giovanni Busacca,55823,12259,1 +112152,Tanya,22447,123497,6 +112153,Jean-Claude Ibert,3051,30125,5 +112154,Le grand écuyer,126958,1083445,10 +112155,First-Nighter,132928,1185019,40 +112156,Donna valigetta,379873,1879750,8 +112157,Officer Watson,157351,91658,9 +112158,Igor,61541,121333,5 +112159,Col. Jipa,32594,1310637,5 +112160,Inmate Thug,209112,1696241,117 +112161,Aargh the Awful,27270,1195777,12 +112162,David Boies,14050,42157,2 +112163,Metropolis Citizen,209112,1467216,47 +112164,organizzatore della sfida,44933,1192088,11 +112165,Suresh Sinha,53767,125354,1 +112166,,38322,1869050,47 +112167,Jane,8998,3910,8 +112168,Policeman,14589,1432396,64 +112169,,279096,1378243,8 +112170,Charles Pocket,121674,936774,12 +112171,Audree Wilson,271714,59662,8 +112172,Marie Lindell,141267,106660,2 +112173,Official,146926,1166920,12 +112174,Minister Uriel,408755,169920,8 +112175,Laura Vellum,124042,105704,2 +112176,Dir. Randel,377290,1643039,22 +112177,Tian Nan 3 Tiger's #1,40081,62424,12 +112178,Himself - Comedian,98438,1018030,4 +112179,Collins,44463,9095,6 +112180,Joe,329010,535450,7 +112181,Officier,258384,1367880,14 +112182,Killer,106256,295908,6 +112183,Lily,450530,1588665,3 +112184,Lyle,179826,1391874,19 +112185,Penryth,336890,1597338,28 +112186,Zach Longo,245706,1458839,7 +112187,"Bofing, l'oncle",71329,1561020,4 +112188,Prison Matron,12594,42296,18 +112189,'French' Kate,335450,130494,4 +112190,Giakoumis,198890,1146265,9 +112191,,413232,1233127,31 +112192,Emma Pagent,11404,141355,9 +112193,Young Enzo (uncredited),215881,1205409,14 +112194,Newscaster,102841,80206,6 +112195,Bambina,162056,1176796,6 +112196,Whitty,84071,65019,2 +112197,Barthélémy Karas,9389,8784,0 +112198,Thunder's men/Civilian,64316,119454,20 +112199,Mrs. Masters,42703,4075,22 +112200,John McKinny,138496,944315,6 +112201,Ana Maria,210653,119301,1 +112202,Chi Siu Tien's grand daughter,54503,1270114,6 +112203,Bar Hostess,3782,136382,19 +112204,Nealy,174278,7074,11 +112205,Girl-Robin,306952,180279,15 +112206,The Court Jester,28367,12659,17 +112207,Private (uncredited),52440,130060,36 +112208,Emma,330947,1423663,25 +112209,Alba at Nine and Ten,24420,1393536,28 +112210,Doorman,128669,115769,38 +112211,"Greta, Hannu's Wife",219335,222539,3 +112212,Brutus Bombastic - Chief Criminal,141868,1357465,5 +112213,Mrs. Hampstead: Staff of Nutbourne,83015,559081,9 +112214,Nachrichtenüberbringer,201429,124616,8 +112215,Kid at Ben Eagle show,256962,1789159,47 +112216,Nick Cellantano,121354,2771,5 +112217,Trendy Mum,11404,80369,12 +112218,,14804,1901807,27 +112219,Robert Marley,75761,291133,9 +112220,LaVerne Shumann,38432,10487,2 +112221,Joe Goodis,89756,87295,0 +112222,Jack McGee,26881,19139,2 +112223,Lt. Marta Robbins,11045,18285,4 +112224,Jack Boomer,39001,4175,5 +112225,Romero,12279,884,19 +112226,Rumänischer Grenzbeamter,3716,5125,5 +112227,Richard Devlin,86603,194040,2 +112228,Bram Wagtmans,223551,567000,0 +112229,"Ted, Gregory's Assistant",267483,1315170,8 +112230,Potter,1271,1177316,45 +112231,Shintaro Matsui,121725,1105808,2 +112232,"Max, Detective",65211,13298,7 +112233,Sideburn Guy,156711,1349747,42 +112234,,79216,1082026,1 +112235,Rob,241742,1465477,7 +112236,Jill,335970,1718133,39 +112237,Colin Morris,11338,7487,11 +112238,West Indies Club Patron,14589,1186118,78 +112239,Mark,58467,1704723,19 +112240,Teresa,336882,1544540,11 +112241,Monty,19989,85406,7 +112242,Sacha,78340,1163658,6 +112243,Frat boy,380124,1075467,17 +112244,La Manna,106256,120117,5 +112245,Meng SiFan,394051,113311,1 +112246,Seph,359870,224194,0 +112247,Cheerleader #2,8669,1281022,29 +112248,Dave,199056,54834,1 +112249,Goretto,77673,24459,9 +112250,Guard,66741,1301262,13 +112251,Jim Younger,83354,41719,9 +112252,Leo Gelhorn,47561,72056,5 +112253,Garde,62755,1708558,7 +112254,Robert Marquales,80264,1933,6 +112255,"Chuknovsky, Icebreaker Pilot",8063,82796,9 +112256,Wu Ba,14539,116636,3 +112257,Rao-Sahib,101185,113,3 +112258,Clara,97024,129521,4 +112259,Julie Gardner,52864,3380,0 +112260,Vikki,4893,18809,1 +112261,Mrs. Lange,81232,36819,9 +112262,Cabman Alf Perry,28425,100770,19 +112263,Ned Baker,161187,57340,10 +112264,President Roosevelt,65035,23076,16 +112265,Amy,270672,212985,3 +112266,Max Coleman,21208,90455,7 +112267,,53407,89615,11 +112268,Mary,3291,31510,18 +112269,Mrs. Sharon,33345,18765,5 +112270,Douchová,36919,1437840,7 +112271,Mayor Urbano Malagón,41298,102304,3 +112272,,359154,1010010,5 +112273,Irina Saizew-Müller,379019,1838949,19 +112274,Andy Garth,47739,104625,8 +112275,Lugge,2195,23181,7 +112276,Simon,387957,95224,6 +112277,Jennifer Curtis,51947,69810,3 +112278,Captain Teague Sparrow,285,1430,12 +112279,Eddie,21968,88147,1 +112280,Brit,11917,35551,5 +112281,Maja Paradis,9572,57361,2 +112282,Toko,10087,63134,3 +112283,The Purser,102384,2922,7 +112284,Spiritual Dr. Morriset,62838,17832,3 +112285,Tonny,2061,1019,1 +112286,Classroom Scout Girl,257344,1683831,39 +112287,Jae-Hyun Kim,376252,587675,2 +112288,Doctor,94135,151125,4 +112289,Jean-Benoît Houde,359413,1055514,7 +112290,Taxi Driver,64115,1158777,1 +112291,Additional Voices,24432,61373,13 +112292,Tarlow,13551,16851,3 +112293,Copper (voice),9948,60734,3 +112294,William Gibson,425774,1501495,32 +112295,Chief James E. Davis,3580,10132,8 +112296,Father Ndlovu,15013,77688,18 +112297,Stewardess (uncredited),177677,1671024,74 +112298,Geographical Society Delegate,89086,121300,20 +112299,Olympias,1966,11701,1 +112300,Hiro,97614,930327,19 +112301,criminale che estorce Giacobetti,75001,240920,10 +112302,Bill Franklin,50725,2712,5 +112303,Bill Halligan,41495,119258,12 +112304,Bindhu,332827,584252,7 +112305,Dr. Jordan Fisher,53870,155282,5 +112306,Giuliana,187737,14276,0 +112307,Jerome King,43931,77278,2 +112308,Charles Chevalier,42501,24814,2 +112309,Reporter,239566,999605,31 +112310,Dr. Obrusánszky Borbála,407965,1655883,6 +112311,Arturo,403450,1274996,1 +112312,Mr. Schyler Vandervere,43499,141510,9 +112313,Bob Mitchell,86236,12850,5 +112314,Howie Gold,18722,58214,25 +112315,junger Mann im Club,53364,1089474,5 +112316,Linda,94725,33613,7 +112317,Max,51285,118331,2 +112318,Advocate Wehner,99229,1020672,1 +112319,Juge Grizzly (voice),126319,20285,16 +112320,LCpl. Richard Guerrero,44943,55091,15 +112321,Mr. Kyrke-Smith,21927,59692,6 +112322,The Bride of Cana (Judean Story),3059,29258,9 +112323,Dante,79836,141830,3 +112324,Josef Stalin,56448,3087,0 +112325,Local Gal,6023,1162288,21 +112326,,57458,1581034,6 +112327,Holiday Inn Bar Keep,41505,1188761,13 +112328,'Bull' Stanley,32716,99466,3 +112329,Bond Trader #2,30361,1769243,10 +112330,,153196,1213398,7 +112331,Ben,88478,189230,0 +112332,Tom,12759,73619,5 +112333,Father Superior,11799,108688,9 +112334,Jeff's Mam,32577,1000768,18 +112335,Isto Virtanen,18279,108474,5 +112336,Marcie,35977,116436,2 +112337,Swim Coach,11247,1776453,20 +112338,Herself - Storyteller,128216,1332923,11 +112339,Suzy Songbird,318922,1361414,15 +112340,Bandit,377170,1002189,20 +112341,Tod Ramsey,75315,3381,1 +112342,Governor Lew Wallace,80193,14969,4 +112343,Marmaduke (voice),38579,887,0 +112344,Strip Please Gang,15092,1402687,85 +112345,Used cars business owner,346646,573794,14 +112346,Background actor,52454,1630350,67 +112347,Emilio,353686,928812,10 +112348,Apollo,37958,43265,11 +112349,Ed Burrows (as Joe DeSantis),74527,95012,8 +112350,Mel Dorado (voice),49013,1117784,32 +112351,Roland Weary,24559,27116,7 +112352,,62397,1894270,23 +112353,Mlle. Kitty,28044,94105,9 +112354,Bertrand,76097,1663988,11 +112355,Christian com 15 anos,428645,1717347,5 +112356,Duchess of Devonshire,104211,140515,13 +112357,Professor Clarence Peterson,383140,2295,2 +112358,Pvt. Dean,133715,168052,4 +112359,Himself,22779,1860530,1 +112360,Baev,143380,929675,9 +112361,John Fareri,254918,12640,1 +112362,Olivia,299780,1379274,24 +112363,"Ruriko, Koji's girlfriend",111398,10070,4 +112364,Lea,79550,5148,4 +112365,Charlie,280617,1522144,7 +112366,74th Street Neighbor,78096,1428550,8 +112367,Hip Bridesmaid,6557,203430,14 +112368,Hypnotist,33788,12643,3 +112369,Solicitor,105902,10021,4 +112370,Konsul,155325,1208142,11 +112371,Ratko Volvic,25450,20190,0 +112372,Susan Fleming,43526,122910,10 +112373,ARZU YILDIZ,295748,130400,5 +112374,Halil Dede,48763,145344,2 +112375,Artemis (voice),15359,5916,3 +112376,Erwin Gotz,42460,23962,7 +112377,Harold Perreau,13279,74570,3 +112378,Roger North,75761,17005,5 +112379,Townswoman / Old Lady,62764,1091868,21 +112380,Ted,336691,1547696,13 +112381,Ezra,384682,59841,14 +112382,Davide,109979,1186846,12 +112383,Yashvardhan 'Major' Rampal,35907,35780,1 +112384,Alice Bloom,34334,13446,3 +112385,Blindr Spokesperson,347630,1695656,26 +112386,Shopper with Car (uncredited),345922,639817,19 +112387,Vaughn Koester,65456,101792,4 +112388,Ellen Martin,28448,19797,11 +112389,Bahadur,32740,86023,7 +112390,Samuel Cowley,28110,12298,9 +112391,Lt. Peg Whitcomb,48412,96458,3 +112392,Miami Babe (uncredited),323675,1591185,58 +112393,Jonathan Waring,30022,1208,1 +112394,Eva,243940,33397,4 +112395,,85836,1082509,11 +112396,,174552,1210599,1 +112397,Jane,2993,29428,2 +112398,Ellen,19398,1060228,5 +112399,Kitty,331075,1583614,4 +112400,Young Bobby,13072,27974,2 +112401,Girl in Alley,300667,1790368,19 +112402,Chief Inspector Jones,37710,10669,3 +112403,Dance Hall Dancer,8988,1742406,73 +112404,Kim,15527,63680,7 +112405,Alex,47120,16801,4 +112406,Rev. D. Simpson / Guest in First Restaurant / Station Cop / Movie Spectator (uncredited),22943,148003,39 +112407,"(segment ""Miminashi Hôichi no hanashi"")",30959,552669,53 +112408,Buddy,329135,1435700,5 +112409,Mother,9987,61512,8 +112410,Mario Vargos Garza,319910,59215,14 +112411,Maj. Mallory - Clark Field,15807,2496,8 +112412,Gilbert Carrington,5881,46275,7 +112413,Will Guthrie,277713,1409655,10 +112414,Tracy Benson,107985,1200855,15 +112415,Corporal Jean Watt,45398,133124,12 +112416,Demian Carthy,188102,62526,5 +112417,Pete's Dad,294272,235023,19 +112418,Cherise,53953,103286,9 +112419,The Celebrity,246133,132856,10 +112420,Thérèse Desqueyroux,110323,2405,0 +112421,Ron Witwicki,38356,14721,25 +112422,Bartender Rick,266425,1313140,13 +112423,Anui,171759,1021981,7 +112424,Adam,46883,40863,3 +112425,Second controller,26405,1105503,14 +112426,Tibi Balog,338312,42074,1 +112427,Portly Barber,24619,1130024,24 +112428,Kumi Kawajiri,31512,130654,4 +112429,postman,59147,27392,4 +112430,Enid Osborne,53798,123120,5 +112431,Masterson,219466,1230,2 +112432,Petey,35626,931644,8 +112433,Bessie Green,53792,33277,3 +112434,Master Kwan,10473,39829,4 +112435,Osle (voice),19594,67711,12 +112436,Specialty Dancer,11939,1155164,11 +112437,Sam Klieber,22051,95975,5 +112438,Extra (uncredited),189682,4165,10 +112439,Tyrone Purvis,14414,2047,0 +112440,Casino Patron / Roadblock Driver,268920,1755069,74 +112441,Herself,15258,194772,99 +112442,Elise,62838,128206,4 +112443,Efrem,324670,1664955,24 +112444,Stella,330770,544666,2 +112445,Ann Lemp Deitz,130507,2670,1 +112446,Medusa,21533,77040,6 +112447,Ilinca,32601,1130128,7 +112448,Laredo,96133,564603,9 +112449,Milo,38916,3209,10 +112450,Leah,52221,54470,1 +112451,CIA Analyst,59961,936404,11 +112452,Reece Duncan,77645,96284,4 +112453,Pete,262357,4139,2 +112454,Detective Miller,38065,1625032,8 +112455,Pierce,263115,467645,3 +112456,Cameron Marshall,295588,205335,3 +112457,Mère Angélique 2,65898,40582,11 +112458,Keith Rose,15020,231,10 +112459,Chen-Lin,348025,97576,7 +112460,"Bobby, Vic's Son",37481,103322,16 +112461,Rachel Donnadieu,52713,146540,1 +112462,Doktor Cornelius,2454,25133,9 +112463,Louise's decorator friend,27102,18212,7 +112464,Moyra Luciano,82077,7906,3 +112465,Federale,263115,17041,63 +112466,Customer Hair Salon,80545,97889,14 +112467,Re Agesilao IV,222517,49895,2 +112468,Cameo,280690,932503,6 +112469,Sergeant (uncredited),15807,143544,30 +112470,The Witch,51349,47426,3 +112471,Cattle Buyer,53574,34574,6 +112472,Orville Kruger,59744,93655,8 +112473,Wabschke,10626,44484,6 +112474,Mikhail Slyudin,96724,1470867,35 +112475,Greta Bowie,1586,141789,11 +112476,Police man,89462,33135,3 +112477,Martin,48594,151162,3 +112478,Mother,33407,81404,2 +112479,Detective Sebastian,52520,8177,2 +112480,Jinny Macintosh,23853,7401,8 +112481,Brian,104108,1337186,2 +112482,Mortis,37813,118583,2 +112483,Edgar Martinez,32526,28869,7 +112484,Mechanic,4982,96793,64 +112485,Moses / Vladimir,30366,4826,10 +112486,DJ,168259,224092,38 +112487,Aladdin,18098,58319,2 +112488,Teahouse Proprietress,20530,131022,13 +112489,"le forain, animateur de boxe",84035,19647,9 +112490,Literature Teacher,22881,94854,12 +112491,Man at Gym (uncredited),59828,97999,14 +112492,Kurtz (vioce),71444,553097,3 +112493,Coroner,57100,65354,4 +112494,Muthu and Maharaja-Muthu's Father,66247,91555,0 +112495,Funeral Attendent,379959,1604110,24 +112496,,112244,122655,3 +112497,Roberto,51976,1094173,2 +112498,"(segment ""Miminashi Hôichi no hanashi"")",30959,552666,50 +112499,Basurita,45191,1582410,9 +112500,Roxanne,151509,150062,9 +112501,Jerry Allen,45679,30539,4 +112502,Dr. Ray,9918,21083,14 +112503,,15776,1565324,18 +112504,Lawyer,62143,145238,20 +112505,Elaine Coombes,42448,1081772,12 +112506,Ruth,130593,66431,1 +112507,Mr. Grant,43489,27733,9 +112508,Trudy,142391,1117269,8 +112509,Niya,26873,96509,0 +112510,Eero Takkunen,20164,82857,3 +112511,Seaweed J. Stubbs,409447,1026889,15 +112512,Ben,353686,65769,8 +112513,Jakob,254007,1304172,1 +112514,Ellen Monks,425774,1707750,10 +112515,Lawrence Bidley,120977,117697,7 +112516,The Leningrad Cowboys,11475,106172,10 +112517,Minor Role,43806,88999,42 +112518,,334298,1621704,11 +112519,Nancy,37206,126669,4 +112520,Dom,308639,1521445,6 +112521,Tânia,54384,150515,0 +112522,Kreml,321303,1040126,13 +112523,Far,56937,116387,9 +112524,Bud Forester,3686,33547,2 +112525,Yukino Yajima,45489,554501,15 +112526,German Machine Gunner,150712,1422281,42 +112527,Newscaster,291871,1362823,8 +112528,Harris,123109,68180,9 +112529,Djata,364410,1524667,7 +112530,Professor Blaine,110980,34036,4 +112531,Stick,30091,111195,1 +112532,Johnny Johnson,92307,3799,0 +112533,Mr. House,174188,52997,4 +112534,,194853,1164472,5 +112535,Königin/Böse Stiefmutter,410774,46163,2 +112536,Serdar,17288,81580,0 +112537,Jack Jarvis,259695,91030,18 +112538,Vera,61950,3300,6 +112539,Dr. Patel,416256,113567,9 +112540,Tanya,109354,932267,5 +112541,Longcoat,54804,1256066,22 +112542,Bald Cashier / Bank Robber with Derby,53410,148033,6 +112543,Philippe Carioux,78210,20676,7 +112544,Tsui Tung,146926,6701,2 +112545,Adam,192137,1023139,2 +112546,Mrs. Nan Raymond,34650,99751,11 +112547,,241982,32707,4 +112548,Trevor / Singing Bear (voice),429838,1734262,13 +112549,Max's Mother,203833,42432,20 +112550,Missy,400174,134658,13 +112551,Eugene Domingo,430973,238157,1 +112552,Music Performers,134238,121033,40 +112553,Mr. Waterman,417678,211958,8 +112554,Receptionist (voice),809,12071,18 +112555,Valerio Spagnolo,142320,57345,1 +112556,Marco,243935,1602637,11 +112557,Saïd,295314,1026733,2 +112558,Son of Achamma,134474,1332749,14 +112559,Eliza,76203,467633,6 +112560,Mabel MacKenzie,45215,132493,4 +112561,Captain Miller,252916,34365,5 +112562,Adrián,80280,1031744,4 +112563,Ordóñez,25376,1331799,9 +112564,Osata,46069,134682,5 +112565,Max Eastman,39824,53494,4 +112566,Allen,9812,1091176,18 +112567,Martin Wooderson,140489,22125,2 +112568,Jacques,45132,4724,3 +112569,Green Arrow (voice),342917,1217648,3 +112570,Gil Sparrow,104602,39757,1 +112571,Alicia,304372,210773,6 +112572,Ethan Hill,399894,54649,2 +112573,Gazet,63989,7275,3 +112574,Nancy Sterngood,10829,14794,3 +112575,Cheryl,30361,52315,17 +112576,Marti Dietz,128270,1232582,28 +112577,Homeless Man (voice),24238,218000,6 +112578,Mr. Prince (voice),309809,22226,2 +112579,Amina Harjan,31031,94308,1 +112580,Female Paramedic,97614,1207367,27 +112581,,327231,76331,13 +112582,Jose de Montares,78318,92907,14 +112583,Glob (voice),12903,26485,0 +112584,Abby Hanover,51481,142108,0 +112585,Wok,21138,33353,10 +112586,McDinkle,77067,937371,6 +112587,Narrator,5721,15949,11 +112588,Vecina (uncredited),42502,1719370,23 +112589,Signora Fiorini,50363,31696,2 +112590,Nervous Patient,176627,13854,27 +112591,Uncle Max,52741,55267,5 +112592,Conor,412202,1425934,1 +112593,First Mate Lemaris,131815,105338,2 +112594,Ulysse,258363,1865780,6 +112595,Katy Coombs,6976,51729,2 +112596,Post Modern Review Staff,13092,55466,13 +112597,Gus O'Toole,32558,14831,5 +112598,,260522,119211,4 +112599,General der Infanterie Hans Krebs,613,8801,11 +112600,Prof. Dupont,44099,130222,9 +112601,Elsa,330275,19360,1 +112602,Connie,31913,157531,5 +112603,Sérgio,37050,366785,3 +112604,,376934,1355675,13 +112605,"Mammy, Her Mother",125700,1200638,2 +112606,The Sicilian,91259,52622,10 +112607,Himself,410965,60736,1 +112608,Ryūrei Ashio,2487,25463,2 +112609,Teddy,246403,9640,2 +112610,Det. Staynor,10594,65771,6 +112611,Zohra,1164,18060,34 +112612,Thierry Richard,23857,552404,0 +112613,Gail,184098,540281,17 +112614,Tom,84449,56385,0 +112615,Nana the Dog,120672,1379973,7 +112616,Kim,7547,18974,1 +112617,Lex Luthor / Joker (voice),353595,31531,7 +112618,Étienne,26152,28463,0 +112619,Brooke,8457,82791,23 +112620,Lina Inverse,125510,40325,1 +112621,Lasses bror,76846,3853,7 +112622,Sebastien,6077,47793,0 +112623,Jacques,19103,8945,1 +112624,Pussycat Doll,4551,1680758,50 +112625,JK Dixit (CDI Director),353464,239728,11 +112626,The Creep,98065,1136483,2 +112627,Miss Lucky Vista,249264,15008,2 +112628,Lio,14019,76291,4 +112629,Johnny 'Cokebottles' Costello,119213,3201,5 +112630,A.J. Verne,41495,20368,7 +112631,Nanon Zanzi,27503,31550,1 +112632,J.B. Johnson,99846,11163,0 +112633,Vice questore Ruini,52808,11128,3 +112634,George Kellerman,20444,3151,0 +112635,Jonathan,121662,19047,0 +112636,Ray (voice),10198,12077,5 +112637,"Carlo, Bartender at the Dell",36786,116565,17 +112638,Mrs. Anaheim,28304,17755,6 +112639,Un antiquaire,33436,585663,20 +112640,Mo Falcone,128270,1289021,30 +112641,Hara Jubei,14753,18056,3 +112642,Louis Zamperini,227306,85065,0 +112643,Punk Skateboarder,193893,163839,46 +112644,Bárbara,282983,724188,0 +112645,Madre,140,132999,11 +112646,"Giri, Neetu's father",33146,110202,10 +112647,,36246,4990,8 +112648,Councilman's Wife (uncredited),3580,1230878,61 +112649,Anna Marie Hoover,88794,5309,6 +112650,Tony,239562,119280,12 +112651,Dominic,225285,16700,2 +112652,Helen,19918,17191,27 +112653,TCBY Girl,376660,84468,14 +112654,Astronaut John Pope,266314,64825,5 +112655,Himself,191502,83097,16 +112656,Le Marocain,277839,51100,5 +112657,Ed,49853,48480,2 +112658,Green Dragon (voice),16390,1248,10 +112659,Guillermo Coppola,84089,145000,2 +112660,,16447,1490176,7 +112661,Sexy Society Girl,228066,1244469,5 +112662,Opera House Wife,96724,1834,48 +112663,Pru,377428,1456202,9 +112664,Myra,150338,85941,13 +112665,Dirk Cooper,85580,932340,4 +112666,Donkeyman,52859,22603,8 +112667,Rocket Expert,5172,1240490,43 +112668,Don Salvo,31111,107625,4 +112669,Muk Li San,13849,1086860,7 +112670,,83346,706070,1 +112671,Dr. Ed Danzer,214756,103545,23 +112672,Music Supervisor,244534,1445606,6 +112673,Calvin Meyer,245703,9880,6 +112674,Paul Rodriguez,64456,94894,5 +112675,Victim 1,76203,1344359,47 +112676,Carolyn Cooper,257344,13636,7 +112677,Hank,189621,30495,10 +112678,Samantha,84340,71815,13 +112679,La bergère (voice),22504,1458874,3 +112680,Victor Crowley,11908,62596,3 +112681,Allison,98066,86624,7 +112682,,197057,1176984,1 +112683,Boone Caudill,43367,83314,1 +112684,Rick,12525,1566,7 +112685,Don,58918,6451,5 +112686,Fred,32610,590533,25 +112687,Gerald Tovar - Sr. Zombie,24927,1045070,12 +112688,Colonico,123961,29363,6 +112689,Afghan Village Man,272878,1631177,13 +112690,Harris,252746,83753,0 +112691,Himself,2179,22304,2 +112692,Peggy Tracewell,171308,199748,7 +112693,Doorman Oscar,10025,62074,15 +112694,L'Elégant,66447,24366,0 +112695,Tatjana,58416,5999,0 +112696,Rabbi,299780,1379267,10 +112697,Himself,67273,550680,0 +112698,Thief #1,17386,1045553,14 +112699,Carla,187010,970249,3 +112700,"Irina, wife of Andrei Sokolov",88564,1039631,1 +112701,Major Banks,26796,1979,2 +112702,le directeur de Paris-France,75066,24933,15 +112703,Ralph,10739,1571035,18 +112704,Joan Madigan,51209,1817,4 +112705,Tenente Tommassini,37710,229667,9 +112706,Kevin / Subject #28,29151,2978,6 +112707,Uncle Frank Kelly,52661,8254,1 +112708,alte Dame mit Mütze,75969,1810545,42 +112709,Riccardo,1691,37020,13 +112710,Ashley,60965,1216411,29 +112711,,264454,1309621,2 +112712,Uncle George,185934,19400,9 +112713,Dushan,36811,26860,10 +112714,Chinook Pilot No. 2,193756,1283042,14 +112715,Teacher,290762,1337754,19 +112716,Anabel Sims,43441,116838,2 +112717,Jimmy,65650,454,4 +112718,Leechee,22476,105646,4 +112719,Don Peppino,53654,16761,6 +112720,Guard (uncredited),28000,1344888,60 +112721,Court Bailiff (uncredited),14615,1421138,88 +112722,Franklin,18044,102748,5 +112723,Vicky - Corny Collins Council,2976,1290636,40 +112724,Roland,365942,79211,12 +112725,Sonomi Daidouji,31347,122660,12 +112726,Businessman,206647,1599247,35 +112727,Olivia,276906,971273,2 +112728,Aunt Hilda,15674,43301,3 +112729,Mrs. Stamper,17640,43824,9 +112730,Lotus Land Dancer,32657,1397694,85 +112731,Party Guest,81110,121060,18 +112732,Ethel,59704,192838,9 +112733,Vicki,50506,99208,6 +112734,Pelymov,63304,567589,12 +112735,Detective Po,365222,65966,5 +112736,Landlady,25551,84487,6 +112737,Sam,297633,1399555,6 +112738,Amir,312221,1537626,10 +112739,Journaliste BTV,5881,117795,14 +112740,Viktor Keller,6183,32254,4 +112741,Commissario Arpino,106155,24478,3 +112742,Stephanie's Mother,9675,14105,12 +112743,Yard Sale Attendee,91679,1782574,13 +112744,James Farmer Jr.,14047,77278,3 +112745,Helen,24578,17787,7 +112746,CJ,332168,1488675,4 +112747,Storyteller,18098,27554,4 +112748,Hans - Hotel Receptionist,75363,8239,22 +112749,Sinade,96106,68667,6 +112750,Joe Manditski,51209,5576,2 +112751,El Charro,264525,18468,17 +112752,Brenda - Corny Collins Council,2976,1619409,42 +112753,Victor Costa (voice),52264,136152,13 +112754,Sophie enfant,2566,26107,10 +112755,Nadya,145220,56323,2 +112756,Juke Joint Musician #4,14047,1046723,44 +112757,David Helmet Yar,46729,1522465,7 +112758,Denise,397717,1481156,23 +112759,Australian Soldier,127560,1381322,28 +112760,Man at Dice Table,55604,125842,41 +112761,Colin,51828,74036,15 +112762,Kevin Munchak,5172,1462,8 +112763,Ivan,6972,12210,15 +112764,Prostitute,58080,1089658,6 +112765,Tripp Coley,262841,429,0 +112766,Max,166161,1146942,5 +112767,Clara Willis,252746,2265,8 +112768,Mark Murdock,53861,13550,1 +112769,Cassie,22396,1009819,11 +112770,대원군 (Daewongun),41441,87090,2 +112771,Reggie Wayne,273481,206919,5 +112772,Student,19398,1469196,30 +112773,Don Cesar de Vega / Zorro,111759,109088,0 +112774,"Mrs. Thomas, landlady",20806,89895,12 +112775,Robert der Teufel,798,11933,6 +112776,Max Vatan,369885,287,0 +112777,Hans,309929,1631016,7 +112778,Chie,234284,186341,8 +112779,Cadillac Tom,13442,10843,5 +112780,Robert Benson,55638,64998,2 +112781,Assistant Director,4551,982098,32 +112782,Jungle Tracker,14207,62477,15 +112783,Mr. Peterson,3638,13728,11 +112784,Flynn,107430,153911,4 +112785,Jane Doe,57749,37292,6 +112786,Gabriel 12 Months,227156,1412928,11 +112787,David,60071,68527,4 +112788,Banger,263115,1191027,58 +112789,,285135,1081488,8 +112790,Lilliana Zorska,185156,10606,0 +112791,Dave Allister (age 7),18671,109707,12 +112792,Shigeko Shizuma,185987,91288,2 +112793,Aparto no onna,18148,1203802,15 +112794,,87204,116500,8 +112795,Dr. Cornelius,240745,1986,9 +112796,l'agent Travis,269173,1056072,7 +112797,Buurvrouw,5899,27836,11 +112798,RR Information Clerk,32552,30530,4 +112799,Helander,224813,1207775,7 +112800,Ollinger,11577,1107,8 +112801,Sir Charles Eggerston,30374,40529,5 +112802,Gunilla,145247,135692,3 +112803,Commandant Van Zy,13823,75787,23 +112804,Sosiaaliviraston virkailija,62900,4830,15 +112805,Giovanni,50531,120020,1 +112806,Athena,37958,103554,2 +112807,Officer Anne Oshenbull,40034,123711,2 +112808,Gangster,440777,1754600,31 +112809,Autograph Girl,326,58393,19 +112810,Jordan Donovan,26131,10399,0 +112811,Xavier,161073,145871,2 +112812,Katie,305932,1389035,2 +112813,Seattle Musician / Guy In Nashville Bar,360592,1512205,10 +112814,(voice),63498,572441,5 +112815,Deepak Suri,20623,35779,4 +112816,Marcu,2009,1628055,20 +112817,Campanula,37100,1184459,10 +112818,,353879,81869,2 +112819,Captain Steve,445727,1772092,1 +112820,Wei Kun,108665,1136492,4 +112821,Cheechee,325189,1160310,6 +112822,Capt. Genaro,118283,51377,8 +112823,,49574,543724,6 +112824,Rose,14457,57418,7 +112825,,301671,1786513,4 +112826,,64499,239946,4 +112827,Father Pierre,81215,1050256,3 +112828,,137312,1001384,3 +112829,Tia Amparo,80280,1602325,25 +112830,Himself,73241,1106333,6 +112831,Kenneth Phillips,23107,34625,2 +112832,Ben,23855,60205,13 +112833,David Riley,75595,587438,7 +112834,Japanese Tourist #2,402582,1075069,20 +112835,Dee Foster,198176,141753,0 +112836,Panel Discussion Moderator,65509,3288,10 +112837,Miguel,40978,135627,15 +112838,Hong Te Min,88922,1163366,8 +112839,Waiter,146216,1332482,53 +112840,Debbie Winslow,38579,20750,11 +112841,Dandelion Jinn (voice),116711,1273228,13 +112842,Alina,178446,928148,10 +112843,Charlot,34280,55920,3 +112844,Wilhelm 'Billy' von Huber,61473,15789,0 +112845,Nathan,219247,1204027,6 +112846,Claire Shepard,15577,59860,6 +112847,Joe Canton,43753,4965,0 +112848,Aling Sally,46773,1523010,20 +112849,Matthew,1278,10692,0 +112850,,27276,551843,34 +112851,Riot #3 (uncredited),326285,1621149,24 +112852,Gwen Marlowe,43849,98462,0 +112853,Joe,397422,552252,15 +112854,Rod Hamilton,37038,4786,5 +112855,Detective Wong,18747,1138772,17 +112856,Snobby Prince,38770,66884,5 +112857,Pfandleiher,10565,11258,10 +112858,Tyler,19423,81097,2 +112859,Nick,246741,1286794,3 +112860,"Barbara, la balayeuse",63717,237781,1 +112861,Sössökoski,89330,89511,4 +112862,John,257444,52,0 +112863,Paul Lazzaro,24559,5372,1 +112864,Boy Selling Letter (uncredited),50073,106805,14 +112865,Algy Longworth,38433,3364,3 +112866,Holborn Policeman,80596,931244,49 +112867,,88176,46192,13 +112868,Alice Raymond,153161,129328,2 +112869,Mr. Summers,55604,89013,67 +112870,Eileen,260672,1068,3 +112871,Woman at Truckstop,245703,1609622,20 +112872,Jane,169782,237022,2 +112873,Anwar Baashha,49074,584668,10 +112874,Sean,92635,582740,9 +112875,Serena,269795,76850,7 +112876,Mother,14088,1190330,4 +112877,Hanukkah Party Guest,356752,1841531,54 +112878,Todd,118957,169901,14 +112879,Florence,327528,180691,6 +112880,Koji Miller,345069,1325691,5 +112881,Repairman,72642,1000718,3 +112882,Mary W. Hotchkinson,228647,31770,14 +112883,Major Minnies,67794,8225,9 +112884,Alte Dame,9803,1542797,26 +112885,Jack Starkey,99846,16412,4 +112886,The Governor,186971,2310,3 +112887,Rod Holt,115782,12260,8 +112888,Abby,370178,1385063,2 +112889,Yeon-Hee's mom,31850,1191711,8 +112890,il nonno,121516,4962,7 +112891,"Tóth Ferenc, szocialista",86732,146822,13 +112892,,76829,24752,7 +112893,Корявый,57770,86640,8 +112894,Rose Lorkowski,13090,9273,0 +112895,Manning,130881,608601,3 +112896,Himself,282268,12073,9 +112897,Father Fleming,79094,40201,1 +112898,Bill,73943,50398,2 +112899,Joey's Family Member,356752,1841504,25 +112900,,312831,17078,8 +112901,Himself,173301,1295979,5 +112902,Nellie Vanderpark,10710,1778248,7 +112903,Maître d',311291,1264817,10 +112904,Le Chauffeur,96921,71363,3 +112905,Paul Secchi's Boy,1481,1731382,11 +112906,Dumb Lou,27144,1462922,5 +112907,The Jogger,84228,1082353,9 +112908,Carlos,49961,81749,7 +112909,Christina,13739,22310,12 +112910,1st Company Promoter,80596,9926,10 +112911,Longinus Podbipieta,31273,107865,7 +112912,Spencer,13802,126458,45 +112913,High School Principal (uncredited),156700,1342054,54 +112914,Santiago,183832,120705,13 +112915,Blair Linsford,72474,16016,1 +112916,Jang Sa-jung,285213,110388,1 +112917,Kristoff (voice),326359,221611,3 +112918,,123949,80998,4 +112919,Anna,31021,107516,1 +112920,Young Ethel Ann,13957,11617,13 +112921,monsignore,108535,3281,11 +112922,Mietek,375742,489961,6 +112923,Alex,9981,61408,19 +112924,Young Danny Greene,51209,219664,19 +112925,Wong Kar Mun,10389,65261,0 +112926,Alex's Aunt,13542,1187577,16 +112927,Sergio,159638,1141398,0 +112928,Dwayne Whitt,351365,9597,4 +112929,Mike Bonnert,55922,215444,7 +112930,Angel Macias,56601,60255,4 +112931,Mr. Higginson,47535,36666,14 +112932,Don Duyns,69974,557684,3 +112933,Narumi Takasu,38154,553890,5 +112934,Sailor,49500,40898,13 +112935,Himself,324173,15832,7 +112936,Mr. Jefferson,82650,16559,12 +112937,Laura Barozzi,75336,1862817,8 +112938,Mrs. Washburn,11045,13567,5 +112939,Ronno (voice),13205,74287,6 +112940,Lizzie,54525,38703,0 +112941,,47200,1510928,6 +112942,Invitado a fiesta (uncredited),45191,975962,17 +112943,Dutch,38356,21088,11 +112944,Terri Perry (voice),62211,52601,7 +112945,Larry Symonds,41479,21163,6 +112946,Lo psichiatra,110447,129076,11 +112947,Himself,312221,1746887,41 +112948,Rosa,38340,45523,5 +112949,Tom / Thomas,48770,27428,0 +112950,Big Guy,286657,1353941,7 +112951,Steve Trevor,297762,62064,1 +112952,Albert Grimes,10733,2846,10 +112953,Jazmine,109391,1204700,33 +112954,Devika K. Samtani,58051,81093,4 +112955,Piccolo,65973,85286,0 +112956,Dinho,448763,1848646,9 +112957,Federale,263115,1516873,64 +112958,Street Schizo,8852,35824,15 +112959,Sunshine Goodness,116977,5958,2 +112960,Himself,2771,1007589,9 +112961,Terry,15534,15675,4 +112962,Sir Turnbull,3024,10925,4 +112963,"Merlin, American Soldier",8429,54935,6 +112964,McCreary,335509,1208,0 +112965,,64928,1673511,16 +112966,Frankie Avalon,239566,1457266,41 +112967,Billy Jackson,61550,12901,0 +112968,Newswoman on TV,10077,62935,14 +112969,Delivery Boy,53387,96725,7 +112970,Isabelle Cheroy,430365,130448,5 +112971,Charlie Gordon,29146,19153,0 +112972,Elvis Presley,45120,105002,0 +112973,Higgins,262958,1401547,20 +112974,Tin Tin Law,11636,63585,6 +112975,Jesse Tucker,25674,94074,1 +112976,Nita,174645,1157593,6 +112977,,218508,80608,8 +112978,Courtney,76494,589162,18 +112979,,143876,544626,5 +112980,Misha,24675,15762,3 +112981,Elderly,338421,1629645,20 +112982,Chains Cooper,21338,2714,1 +112983,Himself,85984,9208,9 +112984,Deacon,55604,134868,27 +112985,Julian 'Jule',83729,843448,5 +112986,Ole Andreson,48775,562603,6 +112987,Juanita (voice),88557,936989,1 +112988,Maury McCaslin,5928,95598,10 +112989,Tim Rourke,297853,1790429,17 +112990,Joey,91679,1782609,48 +112991,Bo,32080,15186,8 +112992,Kroll,259728,1192880,24 +112993,Deepak,13802,58776,26 +112994,Nicholas Moore,443053,1764360,6 +112995,Kylie,123103,1078608,3 +112996,Mercy Graves (voice),17074,41420,9 +112997,Marie,32604,20577,1 +112998,Shelly (uncredited),44943,205011,54 +112999,Ignacio,319910,54789,5 +113000,Earl Jennings,200505,53256,4 +113001,Deputy Hedge,91333,939457,5 +113002,Homeless Man,198277,1375271,36 +113003,Wilhelm Winter,178446,23182,0 +113004,Ed,147722,8516,4 +113005,Carrie (voice),57737,571336,4 +113006,Pastor Galswells (voice),3933,113,8 +113007,,106623,142134,5 +113008,M.C. at Dance Competition Finale,14072,1033173,8 +113009,Karin,219247,9212,9 +113010,Chan Cheung's friend,117506,148892,10 +113011,Mrs. Beach - Stephen's elderly cook,30014,34749,6 +113012,Margo,340027,213001,4 +113013,Chewy,316154,1840869,8 +113014,Ens. Tyson,109441,6725,7 +113015,Cal Percell,7547,52886,2 +113016,Emperor of the Night (voice),39045,15152,3 +113017,Himself,9951,60833,7 +113018,Principal Kent,302699,58741,28 +113019,Darlinghurst Hangman,425774,1707956,63 +113020,Man in Hotel Lobby,55604,569144,58 +113021,Frieda,18826,207218,6 +113022,Mrs. Wainwright,112284,120740,18 +113023,Sheba Jackson,62132,1417567,3 +113024,Le gendarme du fourgon,68822,39444,23 +113025,Police Officer #2,28090,189816,23 +113026,Fred,94820,1003242,3 +113027,Mr. Scott,102949,31695,6 +113028,Maj. Bergen,36089,117027,7 +113029,Nikki,155341,1869472,5 +113030,"Miss Ling, Wong's Secretary (uncredited)",118139,34760,11 +113031,Mrs. Hill,151062,58068,2 +113032,General Fang,10204,57831,16 +113033,Drive-in guard #3,9080,769,15 +113034,Mr. Wickfield,141640,3545,7 +113035,Shrek (voice),48466,12073,0 +113036,Garage Attendent,84352,930763,15 +113037,,47448,226278,11 +113038,Doctor,35392,114233,11 +113039,Warder,99229,1529145,11 +113040,Man in Webb's Office,104427,115995,13 +113041,Count (voice) (as Lenny Weinrib),23544,90298,2 +113042,Tatiana Pegova,71051,560154,1 +113043,Security Guard #2,290764,1378543,17 +113044,Hospital Intern,25551,106805,14 +113045,TV Presenter,295964,1412845,24 +113046,Izumi Tôyama,11838,1241458,30 +113047,Wedding Master of Ceremonies,74314,540363,17 +113048,Ruth Connors,7980,53486,7 +113049,Sal,77930,162849,7 +113050,Meg Cummings,15022,22082,1 +113051,Jennifer,242033,224180,0 +113052,"Louie, Fletcher's Son",84336,1779822,20 +113053,Maggi's Uncle,63376,146937,5 +113054,,64526,1632766,12 +113055,Jason,19501,57675,1 +113056,Theo,142115,1183782,1 +113057,le duc d'Orléans,11540,36925,6 +113058,The Creature,260030,1424442,12 +113059,Charles IX,3059,1647611,36 +113060,Security Guard,92496,1016503,32 +113061,Baumgarten,31890,1640,17 +113062,Tamiko's father,112244,1197735,6 +113063,Kamala,40127,1331691,2 +113064,"Undetermined Part (script name, Kelly)",257081,115772,24 +113065,Black Child (uncredited),22584,1044677,20 +113066,Jordan Blake,46014,24937,0 +113067,Kim,46261,3897,0 +113068,,19501,7796,6 +113069,Crown Prince Wu Luan,14449,64436,2 +113070,Tony Mantell (Teenage Frankenstein),116327,1063288,2 +113071,Woody Invincible,24916,132739,0 +113072,Julián,33273,544718,16 +113073,Henderson Davis,86254,105595,3 +113074,Young Biddy,16075,82638,3 +113075,Herself,2890,28733,4 +113076,Simon Stacy,102382,930322,18 +113077,Party Planner,258509,75318,30 +113078,The Mother (voice),309809,56226,15 +113079,Matthew Coe,42250,238923,2 +113080,,51549,133699,20 +113081,Jenny Travile,49060,38581,1 +113082,Brad Wilson,2132,21861,3 +113083,Wayne Rink,10096,58741,7 +113084,Cracker's woman,19989,85407,9 +113085,"Don Alfredo, panadero (uncredited)",122019,1031939,12 +113086,Lola,50318,25345,12 +113087,Yusuf,7445,167862,10 +113088,Hooker #1,120605,91657,5 +113089,Fatima,157843,1204268,35 +113090,Perriman,41559,532,3 +113091,Grace Sutherland,16784,4726,2 +113092,Mazelin,62675,19647,8 +113093,Stevie,40229,1434838,6 +113094,Cura,80280,1602310,17 +113095,Joey Faust,31634,95734,1 +113096,Mike,245739,80536,3 +113097,Milla von Siering,82708,49018,8 +113098,Kelvin,21001,47096,2 +113099,Durjan,402672,1243973,9 +113100,Geschäftsfrau,75969,1902091,40 +113101,Greg Pope,403431,59841,5 +113102,Sage Sinister,34204,1386113,7 +113103,Lazarillo de Tormes,103216,21237,1 +113104,,340961,1196268,9 +113105,Zrinka,99861,1196961,26 +113106,Gene Vidal,8915,3061,3 +113107,Wendy,331075,1759495,5 +113108,,26125,1479882,8 +113109,Louis Goezman,68023,24381,13 +113110,Jake,195022,1180698,5 +113111,Alva,28859,162169,7 +113112,,35572,1662168,1 +113113,Maboroshi taishi (as Jôji Oka),62855,236106,2 +113114,,327231,571547,9 +113115,Snapper McGee,170936,121303,4 +113116,Jonathan Stoker,86825,1271789,17 +113117,Woman at Book Stand (as Brenda Thomas Denmark),47186,171079,17 +113118,,87296,147417,10 +113119,Tomás/Tom Creo/Tommy,1381,6968,0 +113120,Bailiff,4982,78885,37 +113121,Bar Man,71670,1736432,26 +113122,Oberoi (as Sebastián Fernández-Armesto),75244,229634,7 +113123,Bowyer,24486,27822,16 +113124,Sugar Plum,218351,29987,11 +113125,Minor Role (uncredited),29872,30117,10 +113126,,256907,53375,3 +113127,Lujo,259728,569973,16 +113128,Marcy,298584,1352022,5 +113129,Rodney,63273,29934,5 +113130,Ubasute Old Woman #2,329440,1522261,9 +113131,Saeko,382170,128042,10 +113132,Nurse at the maternity ward,39284,1026167,14 +113133,Simon,148,1610,2 +113134,Funeral Director,10299,2101,16 +113135,Carmelo,301272,1382323,7 +113136,Barry O'Connor,229328,220448,3 +113137,Hiroshi Nakamura,18722,553428,13 +113138,Detective Mercer,4413,18288,1 +113139,Girl at Concert,11172,1781199,55 +113140,Harrison,22387,1234783,6 +113141,Cheryl,245706,92572,11 +113142,Earl Hooker,26119,12518,5 +113143,Dick Cvetic,49508,111593,8 +113144,Const. Prowse,19846,1876859,9 +113145,Beauty ( Yesterdays Tochter ),6934,51466,3 +113146,Pop Crane,12920,10823,2 +113147,Detective Moe Tillman,66193,991865,12 +113148,Lumberjack,79329,586549,27 +113149,Janet,146322,95788,3 +113150,Psychic Woman's Daughter,16083,79215,11 +113151,Woman at Locksmith's,1640,1331793,43 +113152,,293516,127016,6 +113153,Jānis Lidmanis,144331,1192365,4 +113154,Major Rod Gilchrist,14531,56100,10 +113155,Kate Winters,324930,1500685,1 +113156,Himself,15258,159699,90 +113157,Soldier,72638,1238719,49 +113158,Solbritt,129359,105102,15 +113159,Azbest,153266,83266,1 +113160,Sham,405473,1800029,20 +113161,Bartender,252682,13007,9 +113162,Fran,12525,9780,2 +113163,Suspect #2,335778,1105251,31 +113164,Vera Mitchler,286532,1256118,16 +113165,,49492,142335,1 +113166,Shakila Bano,218898,1246530,6 +113167,Dr. Charcot,341490,4289,2 +113168,Bethany,363807,1539398,4 +113169,Toraji,252874,1288246,0 +113170,Alexi Darling / Roger's Mom / Ensemble,15199,1641971,14 +113171,dance teacher,32237,1077269,7 +113172,Erik Erikson,76380,559947,5 +113173,Eddie Lee - Police Detective (uncredited),174278,1750,12 +113174,L'autostoppeuse,3423,32324,6 +113175,Amber,193610,974317,2 +113176,Donald,189682,97981,2 +113177,Dolly,55177,63563,3 +113178,Himself,13241,1879798,8 +113179,Wee Roddie,1404,16908,9 +113180,Anthony,301224,1361564,6 +113181,,19812,1441810,26 +113182,Shirou Fujimoto (voice),201223,9708,9 +113183,Bobby the Dik Dik (voice) (as David Smith),10527,1077844,39 +113184,Prof. Peter Lang,19010,64671,3 +113185,Natalia,107287,1808856,7 +113186,Abby Louise Jensen,40205,123846,0 +113187,Adam,101242,1026719,0 +113188,Detective Will Ganz,66193,150666,1 +113189,Lt. Cmdr. O. Tannen,156603,34320,6 +113190,Governor Tait,40916,14361,10 +113191,Street Cleaner,210940,1903,9 +113192,Vegeta,38594,122501,1 +113193,Michelle Greene,227700,13363,3 +113194,Chad Bixby,127808,9208,1 +113195,Lt. Walter Cohen,264321,30613,3 +113196,Dr. Eugene Landy,271714,13242,2 +113197,Phil-Fatso,39345,106359,11 +113198,Dithering / Renee Auberjonois,31473,9807,7 +113199,Camilla Swanson,156597,226833,2 +113200,Robert Nerra,78028,7036,0 +113201,Bus Driver (uncredited),14615,1271024,100 +113202,school teacher,189151,1419911,16 +113203,Lord Durant,42242,1039,4 +113204,Masami Shin'ichi,38154,18056,0 +113205,Carla Ross,45874,998685,9 +113206,Young George Lockhart,370234,101808,14 +113207,Joe - Kelly's Accountant,52661,6841,18 +113208,Monica,92465,994243,3 +113209,Percy Phillips,33511,1798881,14 +113210,Pontiero,16999,81135,6 +113211,Fausto Zoppi,42216,24606,7 +113212,Cadet,64674,1083697,5 +113213,Chief Superintendent,42057,49813,8 +113214,Ernesto,265717,120153,6 +113215,Taşo,24426,106784,2 +113216,Aunt Helen,84892,15091,10 +113217,Tamina,9543,59620,1 +113218,,173577,1188972,5 +113219,Senn (voice),16873,15033,7 +113220,Pearl Younger,259975,166120,12 +113221,Lucas Dylan,10055,3035,3 +113222,Poker Player #2,14669,1265876,17 +113223,Teacher Li,11537,26727,3 +113224,Mrs. Gloria Anderson,94182,99349,4 +113225,Jill Randall,18998,21216,2 +113226,Thomas Dickson,1773,19020,0 +113227,Dancer,38322,1714162,66 +113228,Lt. Wormsley,54318,150396,7 +113229,Tailor Fitter,53798,13968,7 +113230,Army Base Doctor,1724,111203,43 +113231,Satoshi Tezuka,363354,1105808,7 +113232,,241982,38898,5 +113233,Penelope,12540,76527,4 +113234,,63215,1520915,35 +113235,Charlie,169794,1152010,5 +113236,Florence,47525,139065,3 +113237,Jeff Mosley,375355,1612442,6 +113238,Mrs. Jensen,9664,58429,6 +113239,,62397,89283,17 +113240,Policeman,13436,1656893,32 +113241,Himself,4140,34962,6 +113242,Teacher,92663,1166328,4 +113243,Father,2965,29073,7 +113244,Mrs. Fay Cheyney,53857,31550,0 +113245,Hunter,186759,62864,24 +113246,L'homme à la pipe,59118,1171394,34 +113247,Captain Henry St. James,43354,12248,0 +113248,Vogel,7229,53202,8 +113249,Funcionario,110001,563822,27 +113250,Mrs. Richards,277688,12408,7 +113251,Melody (singing voice),13004,85433,5 +113252,Nancy Fuller,141418,1362204,2 +113253,Kuno,16177,1171407,14 +113254,Julián,127424,105226,3 +113255,Brigitte,16374,80477,11 +113256,Neighbor Ann,20,101,3 +113257,John,1418,16978,7 +113258,Elgin Clark,38761,1750,3 +113259,Alberto,119374,647347,0 +113260,Andi,180299,1202416,13 +113261,Le pêcheur qui ressemble à Pierre Arditi,343702,24816,5 +113262,Nightclub Patron,198600,1746022,13 +113263,First Saleslady,3937,103938,14 +113264,Sheriff Virgil,207699,38161,4 +113265,Abigail,144271,140196,2 +113266,Giovanni,84097,30264,8 +113267,Ms. Carmichael,142402,1117082,13 +113268,Lara (voice),146381,66442,9 +113269,Mussolini Duck,166610,362742,1 +113270,Lena,346672,1781402,7 +113271,Umekichi,74581,134682,1 +113272,Michael,33305,34971,4 +113273,Dietmar,308671,46216,8 +113274,Technical Adviser (Charlie),4932,4361,18 +113275,Dr. Tito Daka,125249,30686,2 +113276,Mover,28178,103296,10 +113277,Herb,11338,707,4 +113278,Officer Dobbs (lead chase car driver),10694,9290,2 +113279,New York Police Officer #2,2355,1089178,27 +113280,Volodya,104810,543868,1 +113281,Iain,26656,95947,4 +113282,Bos,104674,98452,4 +113283,Robert Carlton as a Child (uncredited),105548,1796884,15 +113284,Store Clerk,74549,46944,17 +113285,Hide His Medication,51036,1879501,38 +113286,Richard Nixon,301348,1979,0 +113287,Adriana / Justine,64225,1694165,6 +113288,,38154,121797,14 +113289,Peter Kilbourn,107250,190936,9 +113290,Preacher's Wife,41283,1173474,17 +113291,Wollivan,140607,11184,30 +113292,Großvater Matthias,13305,77433,5 +113293,Frank Deford,271664,8977,2 +113294,John,76203,1299192,26 +113295,Klasse 3c,61035,1446104,30 +113296,Mabel Stoddard,18446,152863,5 +113297,Billy Russoti / Jigsaw,13056,17287,1 +113298,Female Guard,310135,1501941,9 +113299,Mayor Turkey Lurkey (voice),9982,27726,7 +113300,Chilam,1579,62477,4 +113301,Fintly McCallahan / Idea Pants Guy (voice),109451,1597629,12 +113302,Jordan Cardozo,61168,9464,4 +113303,Anna Vorontosov,248469,4090,0 +113304,The Russian,7220,135352,29 +113305,Bart Bogardus,30054,9112,4 +113306,The Mime,92496,1684443,4 +113307,Madame Dupree,44888,108719,6 +113308,Jakie Rabinowitz - Age 13,939,9643,6 +113309,Partygoer,150117,22811,16 +113310,First Order Officer,140607,25663,48 +113311,Older Kiowa,55534,222560,9 +113312,,28465,84228,2 +113313,Cecil Mills,13169,1812,2 +113314,Receptionist,16022,170293,19 +113315,Stonecroft,25551,96701,15 +113316,Paquitín,331642,138717,5 +113317,Himself,15258,10713,30 +113318,,315362,79255,9 +113319,The Hitter / Gates,323675,53330,20 +113320,Lila,254918,118377,9 +113321,Murray,50318,4521,8 +113322,Paramedic #2,293863,1239253,32 +113323,Turret Gunner,424488,1837294,45 +113324,Coco,18955,51100,0 +113325,Doctor's Wife,14552,569549,24 +113326,Vijay,146270,85683,5 +113327,La pianiste,41211,1670725,25 +113328,Dina,102668,1031788,19 +113329,Fence (uncredited),28000,153387,21 +113330,Mr Allen,18093,209658,6 +113331,Tänzerin,277968,1898504,40 +113332,диджей Макс,25936,86864,5 +113333,Terry,37292,37445,5 +113334,,85327,12074,2 +113335,Tatsuya Urayama,139692,20332,0 +113336,Ray Tanner,14916,11357,1 +113337,Matthew,30361,1379641,7 +113338,,315841,571573,12 +113339,Jhangir,39816,1082437,1 +113340,Jeff,447758,7060,2 +113341,La jumelle patineuse,20200,19360,6 +113342,Extra,365339,1538178,6 +113343,Lucy,220488,113311,2 +113344,Katie,72766,211993,3 +113345,Shuttle Co-Pilot,19995,1180936,17 +113346,James,4413,83242,19 +113347,Sisse,12831,73908,2 +113348,Teller,43829,1159649,43 +113349,Ben Carson,22683,9777,0 +113350,Doctor,198652,135096,14 +113351,Cooke (uncredited),76203,1438284,57 +113352,Heike Petersen,11664,47238,2 +113353,Parhomenko,132759,120235,6 +113354,Dwight Knowles,198227,29594,4 +113355,Guy Childers,312669,77700,4 +113356,Andrei,277396,937,4 +113357,Jonesy (as Dick Moore),125666,10165,8 +113358,Diego,8088,33411,5 +113359,Dick Onarecker,343795,168679,11 +113360,Kalle Berg / Antero,107525,108476,1 +113361,John Napoleon Darling,120672,1379974,8 +113362,Jacqueline,76821,1972,4 +113363,,27276,82899,22 +113364,Rodman,24486,20243,9 +113365,Coffeeshopbesitzer,130739,1805300,32 +113366,Sandy,10044,62417,4 +113367,Coachman,78318,111991,25 +113368,Cal,70583,558911,3 +113369,Saravanan,372226,1641938,11 +113370,Legionnaire,22999,144021,10 +113371,Anna Gretz,15468,2807,2 +113372,Stutz,210940,151644,5 +113373,collega di Diego,325690,149349,16 +113374,Pierre (le Guérissologue),21778,4275,3 +113375,Pat Maris ('61),20536,532890,6 +113376,Himself,366696,1753483,10 +113377,General Dodonna,330459,43138,20 +113378,Beth,7551,52925,10 +113379,Sheriff,262522,1460855,9 +113380,Henriette,260312,27980,6 +113381,Cat Demon,75948,125775,11 +113382,Thomas Brown,177902,89686,0 +113383,Himmler,58587,1331098,6 +113384,Big Boss,228355,14596,7 +113385,Mutant Child,263115,1821498,77 +113386,Herman Koller,36971,116588,2 +113387,Sean,177047,74541,6 +113388,Henri,468707,1810257,4 +113389,Commissioner Anthony X. Russell,4931,4958,2 +113390,Derek,58467,154883,16 +113391,Nick,95675,63311,2 +113392,Drama Queen #2,38322,1187060,26 +113393,Shigalyov,37710,28345,23 +113394,Nickels,17577,12714,8 +113395,Holly,18548,182085,1 +113396,Rick Colton,23178,63941,6 +113397,Sasha,14695,4433,9 +113398,Himself,36883,933403,1 +113399,Chief Buchwald,6973,16851,7 +113400,Herself,8886,56200,5 +113401,Bloody Rain assassin,18758,1277137,11 +113402,Sandy,59744,1425325,18 +113403,Tad Lincoln,43806,1468194,28 +113404,"Młodszy aspirant Zbigniew Chyb ""Benek""",74919,235493,1 +113405,Steve,13802,1657172,40 +113406,Xian,19545,1481410,28 +113407,,331354,43323,8 +113408,Nålen,133458,116501,16 +113409,Stacy Everheart,46020,134511,4 +113410,Kissing Partygoer,199575,1438862,21 +113411,Emmanuel Stoker,26516,47773,11 +113412,Mohan Sharma,14159,85451,8 +113413,Rose Harrison,41171,4038,0 +113414,Cera,24554,35224,12 +113415,Track Vet,27573,127069,16 +113416,Lucie,9539,20197,0 +113417,Mrs. Chanler,153161,50836,12 +113418,Frau Marx,73775,3734,3 +113419,Roger,239563,155549,22 +113420,Hank Weiss,10274,10132,3 +113421,Annette,61935,65476,4 +113422,Jesse James,27349,3087,1 +113423,Funmilayo Ransome-Kuti,325803,1428025,11 +113424,Jinn Mom (voice),116711,1410479,24 +113425,Mac,27045,88460,3 +113426,,408550,1658141,12 +113427,Estate Lawyer,237584,1034504,14 +113428,Nangi (voice),269149,1456290,27 +113429,Science Teacher,13258,155532,10 +113430,Himself,253337,110878,5 +113431,Alice,4538,38809,5 +113432,Cafe Owner (uncredited),297762,1284323,78 +113433,Dominick Bertolo,53654,55821,3 +113434,Silvio Sasselli,193641,11223,3 +113435,Oana,6417,19998,1 +113436,Todd,107499,1093258,2 +113437,Inspector Rudolf Geiger,29161,5274,3 +113438,,94696,86752,7 +113439,Col. Cassian,56804,1865132,20 +113440,Chloe Hamon,12855,10690,0 +113441,1st Man at Lunch Counter,25241,1765270,15 +113442,,438597,1736784,3 +113443,Tou-Bou Bardo,47065,48810,9 +113444,Lord Arthur Dilling,53857,19406,2 +113445,Mrs. Palino,16164,82141,14 +113446,Valentina,79743,1169502,3 +113447,Teacher Inn,57627,1070768,2 +113448,Mito Bosiya,214938,1199623,5 +113449,U.S. soldier / German soldier / Kaiser's chauffeur,53423,21306,5 +113450,Antoine,85735,932524,5 +113451,Man falling during 'Gripped',16171,79884,34 +113452,Joseph,174000,196866,2 +113453,Louis,51971,26100,3 +113454,G.B. Singh,275269,140683,10 +113455,,85658,1291102,1 +113456,Yong-sik,18704,42799,2 +113457,Nursing Home Resident,284293,1465495,11 +113458,папа Александры,85729,590133,2 +113459,Maria,82481,433309,30 +113460,Rudi,318922,677,10 +113461,Oliver Studebaker,325133,973651,19 +113462,Andy L. Shaeffer,118283,76519,0 +113463,Kim,137683,121935,7 +113464,Corporal Guarding POW's on Ferry,75363,1290419,18 +113465,Mariette Benazzi,84035,930440,1 +113466,Lethe's Mother,58790,133716,8 +113467,Moshidi Motshegwa,60665,1056287,4 +113468,Francis (as Jean-François Derec),56589,583309,10 +113469,Tyler,68184,113868,0 +113470,(uncredited),2966,1328597,22 +113471,Siddhappa Naidu,111836,109743,4 +113472,Il barbiere,315319,1087610,28 +113473,Tim,74,59690,18 +113474,Additional Voice Talent (voice),145316,167295,7 +113475,Lt. Richard Saville,44536,12282,1 +113476,Ally Sheedy,44389,12851,9 +113477,Florentina,44591,101505,6 +113478,Pam Thomas,296456,171754,4 +113479,Nickie's Lawyer,18530,182944,11 +113480,Shizuko - Oyuki's daughter,92950,1279379,3 +113481,Narrator - Fisk Junior,18117,18325,0 +113482,Iggy Pop,111479,236082,9 +113483,Nowy,18575,83266,1 +113484,Joe,375082,8874,1 +113485,Joris,270024,546875,1 +113486,Duncan,347630,1513866,1 +113487,The Monster,31280,1452392,8 +113488,Darren,44754,17487,8 +113489,Young Alexander,1966,4738,8 +113490,Holden,20648,131125,3 +113491,Ruby Diamon,30385,106195,2 +113492,Змей Горыныч (озвучка),83865,81000,7 +113493,Riley,1452,1224391,12 +113494,Tommy,76864,135722,9 +113495,,110001,54129,18 +113496,Man-in-Oil,23739,3265,4 +113497,Creature,291865,1448514,5 +113498,Aunt Lucinda Spiderwick,8204,23709,5 +113499,Mage King,274857,1370854,24 +113500,Richard Marcus,134201,45042,5 +113501,Sheriff / Narrator,188161,16937,12 +113502,Jackie Johanson,205798,25308,1 +113503,Cristina Forzano,183073,39768,3 +113504,Ralph,33563,51533,1 +113505,Security Merc,262841,1809694,20 +113506,Drug Addict,240832,1426348,15 +113507,Young Jane,38684,927703,7 +113508,Channing Taylor,134201,27994,0 +113509,Elektriker,72054,564817,14 +113510,Additional Voices (voice),159824,1340664,21 +113511,Sonny Liston,69903,42156,18 +113512,Amin,95516,20806,11 +113513,Mae Braddock,921,9137,1 +113514,Bela (voice),159824,71403,13 +113515,Zanutto,69278,17094,3 +113516,"Pitcarin, Rodney-Marlborough Hotel Manager",104556,30280,8 +113517,Paul,224944,1642128,5 +113518,Woo-Jin,338729,1350000,10 +113519,Floyd (as William Regnolds),73313,114957,10 +113520,Ray,41574,106145,5 +113521,,10484,1352760,22 +113522,Hale,390059,1379720,11 +113523,Bobby Novak,46830,236485,8 +113524,Himself (uncredited),13092,8784,21 +113525,Gabriel Martin,14979,3131,1 +113526,Narrator,318224,71797,2 +113527,Daise,73624,1056819,7 +113528,Captain,156603,12502,7 +113529,Grocer,328589,204802,28 +113530,Ayanna,352025,1483385,6 +113531,Himself,36432,115349,5 +113532,Avery,14123,1231005,5 +113533,Parole Officer/ Agitated Man,12994,62562,4 +113534,Angela Rivera,307081,2038,6 +113535,Philip J. Fry (voice),7249,23679,2 +113536,Scrawny Kid,345922,1542831,45 +113537,Grateful Dead Fan Musicians,228970,1495094,51 +113538,David Stein,228205,1374151,16 +113539,Mike Powers,17687,97775,4 +113540,Heinz Grabowski,2169,22188,6 +113541,,68715,96805,12 +113542,Watch,9928,129193,4 +113543,,27843,1014998,5 +113544,Eva,47186,552219,14 +113545,Tomek,14558,140654,7 +113546,Ministerin Bodicek,210913,48121,5 +113547,Le chambellan,25353,37650,4 +113548,Charly,80280,1324222,11 +113549,Major Paul Krenner,31634,3347,2 +113550,Barskin,42532,6841,6 +113551,,27351,147896,5 +113552,Pooja,58051,85693,7 +113553,Bartender,45219,56924,15 +113554,,26864,1458392,10 +113555,Col. Melvin Hatfield,185273,13969,4 +113556,"Bima, Sarman's Aunt",402672,1239762,5 +113557,Victor Dreissen,4134,34868,0 +113558,Judge James Trumbell,225499,29259,2 +113559,Pauline,328589,135420,14 +113560,,176321,67254,6 +113561,,8079,77234,17 +113562,Louis Antonizzi,64605,15975,5 +113563,Douglas,22447,17356,25 +113564,Dog Walker #2,15092,80886,41 +113565,Mr. Gallagher,18595,49486,1 +113566,Billy Rich,361050,58058,1 +113567,Young Tory Bodeen,24810,1818099,11 +113568,Capannelle,62036,26263,5 +113569,Aki,30449,84263,3 +113570,Alyosha,54514,150794,3 +113571,The Earl of Manchester,31675,6599,2 +113572,Jenny Porter,68472,20189,1 +113573,Carella,47794,55636,0 +113574,Bartholomew,274479,1168858,31 +113575,Bethanee Scott,409502,1779360,17 +113576,Wilmotts,452142,1202683,18 +113577,Eliot,48805,141206,26 +113578,Gaby,138977,1182318,10 +113579,Kerrys,44877,148284,4 +113580,,86942,97935,2 +113581,Marc Bensoussan,72917,25342,3 +113582,Oxford Chancellor,120747,2438,4 +113583,Grandmother,49943,124273,8 +113584,Young Danish guy 2,199602,1871538,13 +113585,Harry Hannan,37923,6355,0 +113586,Times Square Bystander,102382,1266290,60 +113587,Himself (uncredited),365942,1670765,59 +113588,Girl on scooter,253257,1295282,5 +113589,Juan Cardoza,456781,123812,12 +113590,Fabienne,85442,35000,1 +113591,Pvt. Jackson,133715,1215007,6 +113592,Sekine Sensei,11838,552516,23 +113593,Stephanie,46972,66496,6 +113594,Aphrodite Girl,32657,999790,15 +113595,,392832,1153722,6 +113596,,100791,225174,5 +113597,Reporter #1,264644,1239345,16 +113598,Klutch,46667,83435,5 +113599,1950s Financial Advisor,293863,77315,24 +113600,Third Hooker,40028,104289,12 +113601,Harriet Pringle,285400,3367,7 +113602,Mooseblood,5559,2632,6 +113603,Jeremy,96987,84897,0 +113604,Martin,41923,55790,0 +113605,June,97614,5606,5 +113606,Alice (uncredited),10488,98306,20 +113607,Dinner Guest,418437,983953,13 +113608,Baker,450530,1386160,15 +113609,Victor Semlitsch,41619,23121,10 +113610,Morgan,270400,458905,17 +113611,Barbara,6023,1005147,12 +113612,Anna Himmler (voice),267310,1115219,6 +113613,Arno Lieberman,72054,19358,8 +113614,Charlie,245891,1737,9 +113615,Stig O'Hara,16378,80484,2 +113616,Bob Bannerman,104602,6679,4 +113617,,11534,71976,2 +113618,Reporter,27523,98455,3 +113619,Jackie,26123,1288767,16 +113620,Marcus Lickermann,245706,3541,22 +113621,Prison Bus Guard / Correctional Officer (uncredited),213681,1771586,58 +113622,Thick Thug,210047,122258,14 +113623,Antonius,335778,142290,6 +113624,Grace Augustine,76600,10205,3 +113625,Vincent,13652,43436,6 +113626,Monitor,12124,71361,2 +113627,Lt. Russell Walker,17657,57138,4 +113628,Seaman Louie Parker (uncredited),40765,6937,6 +113629,Denise,13484,86624,4 +113630,,228339,1262857,1 +113631,Danny's tutor,18763,83560,16 +113632,,79678,104156,3 +113633,Helen,35197,113971,7 +113634,Lori,199056,46814,6 +113635,,37959,116321,7 +113636,Rachael Donahue,73661,74935,4 +113637,George Z. Jones,29835,40433,1 +113638,Brother,91527,53676,4 +113639,Officer Everson,30941,83187,8 +113640,Pavel,26116,94699,8 +113641,Janecek,23964,172844,20 +113642,Billie Joe Armstrong,89492,95866,13 +113643,Maggie,15759,78718,4 +113644,Lucia,43200,129304,3 +113645,Mr. Weston,44945,150433,5 +113646,Jack Musker,87293,20212,4 +113647,Martha,33102,1748650,8 +113648,1st Vampire,29129,38903,2 +113649,Himself,16800,13017,13 +113650,Betty Skolnick,21029,92810,3 +113651,Scruffy Chou,248376,118745,12 +113652,Ravencroft Guard,102382,1364346,51 +113653,Ines,279179,57361,2 +113654,Annette Taylor,228028,154839,8 +113655,,424014,27392,3 +113656,Ewan Tavendale,277713,1204379,3 +113657,Vega (voice),13653,1084274,14 +113658,Stupid Joe,47863,83350,12 +113659,Dr. Osman's Nurse,24420,1393538,30 +113660,Sybil,35405,34266,2 +113661,Martin,67822,70440,2 +113662,Tawn,82153,1789755,4 +113663,General Hemmer (voice),16873,1248,1 +113664,Maria,41115,125493,0 +113665,Michael Laffont,68987,20173,0 +113666,Fat Lady with Vanishing Cream,157343,14030,21 +113667,Wes,51036,18326,6 +113668,The Mother,310135,585934,12 +113669,University Student (uncredited),336890,1903975,29 +113670,Honey,34598,177333,5 +113671,,185987,90347,15 +113672,Lisen,41764,105102,21 +113673,Yvonne Orlac,28261,99252,1 +113674,zio di Pietro,82350,1003921,2 +113675,Mark Robinson,5237,236336,7 +113676,Hannah,92391,220235,2 +113677,Staten Island Girl (uncredited),274479,1542699,66 +113678,Arne Gyrdson,57438,226172,3 +113679,Olo,18575,2830,0 +113680,The Ancient One,284052,3063,5 +113681,Einar,56937,225813,7 +113682,Rebel MP,330459,75076,61 +113683,Radio Announcer,44415,146339,11 +113684,Michael,51999,3061,0 +113685,Cao Cao,12289,65277,6 +113686,Dr. Najjar,340027,103330,9 +113687,Minion (voice),38055,212,4 +113688,Zia di Checco,35554,92095,9 +113689,Yuria (voice),105231,20330,1 +113690,L'abbé Félix La Margelle,55370,11216,3 +113691,Prince Zhao,14539,1174458,8 +113692,Square Dance Caller #2,5172,1668478,54 +113693,Hair Stylist,40983,10403,4 +113694,BV,330947,30614,1 +113695,Professor Bromley,42329,69764,3 +113696,Shawn,362180,32266,4 +113697,Mrs. Dorothy 'Dottie' Wingate,90932,13992,2 +113698,Giovanna,38285,100058,6 +113699,Court Clerk,357130,954443,9 +113700,"Elvira, il putanùn",77000,1077256,17 +113701,Theatre Doorman,171308,104306,13 +113702,Amy Bradshaw,540,22121,0 +113703,Su Wu / Wing Wu / Wan Wu (voice),81003,66655,10 +113704,แม่นาค,184219,1167603,1 +113705,Nora,433244,221116,4 +113706,Frank Gannon,28280,16644,0 +113707,May,42634,30559,5 +113708,North Korean Lieutenant General,387845,1299218,19 +113709,Truck Driver,834,172844,15 +113710,La belle-mère ('Le divorce'),98302,1969,11 +113711,Miss Hannigan,21780,10733,13 +113712,,343140,1310288,13 +113713,Walter Ferroni,60018,32312,0 +113714,Fat Laki,173294,1380903,10 +113715,,137504,1530414,21 +113716,Killer,109213,97823,7 +113717,Cerrillo,116312,125222,9 +113718,Pallbearer,198652,186212,15 +113719,Head of School,48118,549115,17 +113720,Henry Sager,53931,83314,0 +113721,Official reformatory,44655,186642,7 +113722,Herr Sesemann,58757,228347,7 +113723,Dr. Sims,22387,7666,4 +113724,Helen Owen,15661,18354,1 +113725,Betty Miller,285400,115990,3 +113726,Alec Baldwin (voice),3989,34521,5 +113727,Teacher,142216,1176790,28 +113728,(uncredited),43459,1711163,10 +113729,Marquis de Varennes,43252,13966,21 +113730,,27276,551864,55 +113731,Kate Webber,128637,105164,10 +113732,Noah,19989,9641,6 +113733,Honma's Fiancee,12622,555195,12 +113734,Punker #2,27549,31528,19 +113735,Violet (voice),286940,851784,2 +113736,Al (uncredited),53576,590533,11 +113737,Anthony 'Tony' Preston,12617,35321,1 +113738,Prison Guard,65904,77375,5 +113739,Doctor,62397,1894273,26 +113740,Akilonius,245950,1207403,5 +113741,Миша,213683,237784,2 +113742,Vincent Baraduc,66447,1977,1 +113743,Morgue Assistant,94674,211259,6 +113744,Goneril,134155,1796921,9 +113745,Marcel Thibodeau,41277,1041895,29 +113746,Leslie Lyon,82134,173030,10 +113747,Alicia,282983,1428880,3 +113748,Lakshmi's husband,393562,1255110,6 +113749,Davis,76494,20580,15 +113750,Jerome,41762,110530,3 +113751,Dheenadhayalan,69401,148360,0 +113752,Solicitor-General (as Frederic Worlock),31324,14509,8 +113753,English Bartender,8247,81097,15 +113754,Kentaro Omoi,124994,134263,3 +113755,Bikini Girl (uncredited),323675,1769814,55 +113756,Yukari,53701,60763,2 +113757,Shipwrecked Crewman (uncredited),99934,120818,4 +113758,Ann Grant,39943,93902,1 +113759,Alsuna,322148,98195,6 +113760,Volunteer,1116,1896868,32 +113761,Philip,8556,55347,2 +113762,Parisa,420743,1588616,10 +113763,Susana,11205,132444,17 +113764,Lorraine,51049,14702,4 +113765,Jacob,44047,21315,3 +113766,Meg (Segment 5),244117,467633,19 +113767,N.B. Lund Ferdinansen,433082,41903,5 +113768,Aude Amiel,52713,146541,3 +113769,Band Member 3,85350,1467981,60 +113770,Sandy,11584,1551150,15 +113771,Red,26390,39390,6 +113772,Casey Beldon,13788,51992,0 +113773,Ching Lung / Stone,18741,18897,0 +113774,"David, Bellboy",15788,78783,7 +113775,Sing Girl (uncredited),118139,1001020,10 +113776,Donna,150208,1130009,8 +113777,Maria,61552,13804,5 +113778,Gwen,13022,84556,6 +113779,Tas-Tee Liquor Store Owner,14923,1386340,8 +113780,Narblik,283995,1411625,24 +113781,Gang Girl,31700,88523,4 +113782,Elizabeth Austin,78265,31550,0 +113783,Muriel,48207,1738367,9 +113784,Kwai,338421,1627422,15 +113785,Mike,68684,205114,17 +113786,XL,142106,973644,15 +113787,Stella,103972,102887,0 +113788,Fielder in cowpat,48131,388,8 +113789,Cheetah (voice),353595,34985,11 +113790,Sherman Benny,24150,11804,10 +113791,Renee,166161,1429663,11 +113792,Hemingway Jones,24123,17637,2 +113793,Dr. Donovan MacLeod,85640,2493,0 +113794,Paul,85350,1467540,14 +113795,Dora Winton,41599,86001,1 +113796,Rudi Dassler,359483,44639,2 +113797,Director,299165,103996,3 +113798,Dziennikarka Jowita,49588,142524,5 +113799,Captain Good,12450,72256,2 +113800,Denver Parton,426670,1716517,18 +113801,Willi Kolb,3962,34383,0 +113802,Vaudevillian Veteran,32610,1076230,21 +113803,Uncle Beppy,128270,176740,25 +113804,Reverend Edward Snow,34078,91260,2 +113805,Nancy,58664,232388,12 +113806,,85327,56930,4 +113807,Carrie Williams (voice),62211,482044,19 +113808,Dr. Craig,20312,17645,19 +113809,Jee Hagadorn,188826,2464,2 +113810,Marie,329724,146637,10 +113811,Megan,21431,200972,10 +113812,Himself,24235,884,3 +113813,Herself,27629,83400,27 +113814,,194853,1091459,7 +113815,Auditionee,2976,1752735,95 +113816,Mrs. Catherine Tremayne,1938,7642,4 +113817,Jimmy,13957,76104,7 +113818,Sandra,170689,23671,3 +113819,Jane Hardy,53950,74636,0 +113820,Ben,12575,5600,1 +113821,Kim Hyeon-gon,53514,1299516,8 +113822,Bishop,399894,1658145,14 +113823,Hill,42402,113709,8 +113824,Sean Donovan / Father Horton / Colonel Millard Butler,186584,6972,5 +113825,Beth,14262,76498,7 +113826,Samuel,322443,15760,3 +113827,Ruby,1253,62976,15 +113828,Sachiko,27351,464228,1 +113829,Army Coach,43812,121066,68 +113830,Susan Crane,29116,85847,9 +113831,,84771,27005,4 +113832,Doctor Pierre Gerrard,64568,113,3 +113833,,113040,1056225,0 +113834,Sucy Manbavaran (voice),182131,1164932,2 +113835,Office Worker,18569,34818,44 +113836,Mary Cohen,121888,228151,6 +113837,Figurant restaurant,121539,1759919,13 +113838,Helen Justineau,375366,59620,0 +113839,Elizabeth,403130,93792,1 +113840,"Ellsmere, the Artist (uncredited)",96107,114402,13 +113841,Sari,73099,148038,11 +113842,Claire Ford,18651,165165,13 +113843,Hospital Guard #2,2001,1781698,32 +113844,Glory Dogs Drummer,23367,95378,22 +113845,Arno,217412,1166752,6 +113846,Benoît,61267,1276781,11 +113847,Captain Urbina,8988,1741967,45 +113848,Door Man (uncredited),8414,1891665,19 +113849,,10754,66476,16 +113850,Gleaner,369894,1464310,12 +113851,Dr. Lange,128900,576477,29 +113852,,36246,228075,6 +113853,Aubrey Posen,353616,221098,5 +113854,Brandmand,356326,1874737,27 +113855,se stesso,81787,1757133,16 +113856,Patrik Agrell,141267,92408,4 +113857,Sascha,8064,5853,7 +113858,,246417,1810501,3 +113859,Littlefoot,339526,1465465,0 +113860,Donna,9993,61636,10 +113861,Detective Patterson,23683,159657,3 +113862,Evie Wallace,75090,37153,0 +113863,Prison Clerk,45610,1437111,24 +113864,Sangwa,57654,1811547,2 +113865,Brendan Bates,377428,21429,2 +113866,Coroner at Killing (uncredited),27973,34270,28 +113867,Joan the Model,17258,1869984,26 +113868,Virgin Mary,215797,73931,1 +113869,Heinrich Buff,52475,1156677,27 +113870,Subordinate Clerk Saito,3782,980381,7 +113871,Exterminator #1,2742,1395313,18 +113872,,332872,1651929,19 +113873,César Ripoll,365709,1185976,8 +113874,Melvin Melville,24801,8343,6 +113875,Girl (uncredited),76465,84635,11 +113876,le travesti,42021,994193,4 +113877,Pillowcase Man,329440,1777432,24 +113878,Nurse,55167,1384987,9 +113879,Stéphanie,330171,5077,2 +113880,Chris,35197,194961,12 +113881,Python's wife,18899,1627373,14 +113882,D.J. Bravo,70006,133382,4 +113883,Terry,242131,13965,7 +113884,Snowy,238302,76242,8 +113885,Rob,10521,1572034,16 +113886,K. Rock,26390,1117437,18 +113887,Mr. Crimmin,43806,112364,15 +113888,Himself (Archive Footage),450875,533174,1 +113889,Biddy,121674,234924,11 +113890,Gary,84348,928453,0 +113891,Doctor,16175,79912,18 +113892,'Cotton' Valletti,15794,78794,6 +113893,Nico,24619,1850001,8 +113894,The Valkyrie,76341,1232126,16 +113895,Don Huertero,10425,22462,11 +113896,Prof. Damon,174195,89661,3 +113897,The Doctor / Rex,14869,24045,4 +113898,,375199,1427892,6 +113899,Local Dragon,182127,131732,8 +113900,Randy,268920,1038379,6 +113901,Cpl. Doskis,35392,25579,12 +113902,Laurianne Beaulieu,11421,232137,1 +113903,Dr. Baxter Stockman,98566,143328,18 +113904,Doris,49850,6083,5 +113905,,44436,130845,4 +113906,Libby's Friend,45132,1363399,37 +113907,Joshua,170689,28743,6 +113908,Pepe,56232,128480,11 +113909,Ram Avtaar Rathi (Senior Inspector),280690,85879,8 +113910,William 'Steamboat Bill' Canfield Sr.,25768,98034,1 +113911,Loretta Bell,6977,41249,6 +113912,Celia,299165,24730,4 +113913,Melanie 3,9843,59866,15 +113914,Ingrid Thorburn,411741,119592,0 +113915,Lukas,352890,1561256,25 +113916,Köck,277967,78240,5 +113917,Glory Lorrain,19676,76416,2 +113918,Willie,157847,98804,2 +113919,Nikolai Vasilyevich,63291,1189304,2 +113920,Raymond,121674,61367,18 +113921,Om Prakash Makhija,8079,35742,0 +113922,Kogar the Gorilla,85916,99596,8 +113923,Garth Lafayette,411741,1880197,6 +113924,Mama Bridges,43473,1195363,7 +113925,Mary - Chemo Nurse,337549,15509,12 +113926,Alexander,395883,557921,4 +113927,Opposing Player #2,7233,166940,14 +113928,Lanna Taskey,20210,1779985,15 +113929,Bugatti,62397,129619,5 +113930,Arun,56901,76793,0 +113931,Plaid Shirt,43092,936,8 +113932,Elena,46920,9627,9 +113933,June,9993,61644,18 +113934,Grandmother,291907,1317588,4 +113935,Brunette Mannequin (uncredited),175027,229663,13 +113936,Alexandre,380731,1360309,7 +113937,Jonathan,81274,1379564,4 +113938,Lee Carey,202941,245,1 +113939,Phil,298935,60195,4 +113940,Dr. Fredericks,1247,5658,7 +113941,Sylvia,62472,1484673,15 +113942,CIA Agent,13580,223349,20 +113943,Miep Gies,128396,1253916,7 +113944,Sam Phillips,69,424,8 +113945,James,244801,1280061,1 +113946,Tom,82624,1127914,5 +113947,Female Crew Officer,19898,48883,17 +113948,Yuan Zhen,217923,138114,3 +113949,Dad,85350,569,2 +113950,Patmore,13580,9874,10 +113951,Mr. Greenwood,44208,72060,6 +113952,Little Joe,273578,78298,3 +113953,Charlie Gilson,127564,82216,0 +113954,moglie di Jerry,82080,51744,14 +113955,Greenie,9541,17401,7 +113956,Fernanfo,1810,9872,3 +113957,Diego,48594,1145895,13 +113958,Kamil,109671,147046,3 +113959,Rayon,152532,7499,2 +113960,Laura,61528,6639,4 +113961,Martin,29923,105253,5 +113962,Garotinho,42473,438076,28 +113963,Girl on Tony's Staff,170517,1745605,30 +113964,Rhino Guard (voice),9502,57742,19 +113965,James,312221,127070,18 +113966,Raviv,397422,1109702,16 +113967,June Chandler,193878,1205281,3 +113968,Guardia,31299,107928,4 +113969,Pitkä-Jussi,55495,116155,13 +113970,Connie,336691,1547692,7 +113971,L'agent immobilier,59118,1684448,21 +113972,Riku Matsuzaki,83389,1124537,11 +113973,Laurie,298865,1228355,12 +113974,Sandor's Houskeeper,53851,103016,15 +113975,Major Barnett,43009,45291,10 +113976,Mindy,85350,1467528,10 +113977,,134209,1879700,4 +113978,Elizabeth,10425,59315,2 +113979,Jane Hammond,174751,524,0 +113980,Juke Joint Musician #3,14047,1267795,43 +113981,Binda Sha,39943,103176,9 +113982,Hippolyta (voice),15359,12519,4 +113983,Officer Allen,154537,84955,14 +113984,,375742,1564302,35 +113985,Pepe [ペペ] (voice),56391,553793,9 +113986,Joakim Hershagen,80059,6002,6 +113987,,24837,1035347,4 +113988,Graphologist (uncredited),2993,29433,12 +113989,Robert,16791,1281,1 +113990,Moose Simmons,445727,1505875,3 +113991,Dance Instructor,14072,1033171,6 +113992,Jacqui,122843,42645,11 +113993,Sally,79316,1027298,11 +113994,Woman,173153,77868,10 +113995,Miner at Colliery,28421,1505860,39 +113996,James Chalmers,71503,126565,9 +113997,Eric,319910,85613,19 +113998,Franzi,209248,1097115,5 +113999,Mabel Fine,85411,75713,8 +114000,USS Omaha Sonar Tech #1,52454,1630271,21 +114001,Alfgar,44398,10027,5 +114002,Gen. Bogan,31067,6197,3 +114003,Calvin Hooyman,215379,1073473,9 +114004,Himself,157117,154783,29 +114005,Le chef de la sécurité du supermarché,15712,1710074,18 +114006,Tiniara,29903,112419,4 +114007,Horita - fisherman,43113,955005,18 +114008,Kamala,302435,1042249,8 +114009,Dean,1481,1844332,21 +114010,Nestor,81409,1430285,10 +114011,David Bouchard,417489,142995,1 +114012,Jose Maria Corcoran,79372,4119,6 +114013,Dan Kelly,38978,1619132,7 +114014,Lucile,28739,106949,19 +114015,Andrew,34128,111945,4 +114016,Cult Leader,66925,564320,9 +114017,,419522,1336863,27 +114018,Toby,12796,51881,5 +114019,Mike Potter,103902,1014586,3 +114020,Prison Chaplain,20806,10462,8 +114021,Tunde,157384,205923,11 +114022,Greta's boyfriend,106944,129575,8 +114023,Roberto Nanni,120972,46528,3 +114024,Kenraali Gustafson,55759,223074,3 +114025,Susannah Cahalan,340027,56734,0 +114026,Farmer,30982,143578,2 +114027,Billie Moore,130717,147962,3 +114028,,210068,86022,11 +114029,Declan,184098,120560,16 +114030,Babette Paccoli,79362,23169,4 +114031,Captain Tweedy,47882,30240,3 +114032,Mme d'Ortemont,63224,37444,1 +114033,Lt. Cmdr. Juarez,97632,1021528,4 +114034,tovaryš Jíra,82279,544878,1 +114035,Charlie,22943,13848,1 +114036,Deputy Shirl Cash,24619,31005,6 +114037,Nick,28026,58543,5 +114038,Angela Garland,264080,115488,13 +114039,Jacob,87826,935500,8 +114040,Frank,43938,6579,5 +114041,Shan Ho Kuan,46114,62421,5 +114042,Diana Lethaby,26491,10731,2 +114043,Amanda (voice),330947,1549114,28 +114044,Father Clarke,285840,573773,2 +114045,Hospital Official,30637,12819,13 +114046,Sarah Goodwin,23692,42174,0 +114047,Pastor Colson,8988,1223862,31 +114048,Max Farrell,102630,112285,7 +114049,Duke of Waverly (uncredited),52440,348606,38 +114050,Will 'Rock Man',239018,928594,4 +114051,,373200,131513,4 +114052,Sitter in Bath Studio,80596,175974,37 +114053,Newsreader,302036,1274017,7 +114054,Dodd,220674,1206334,4 +114055,Steve Fisher,221981,152831,1 +114056,Hélène,1421,17030,3 +114057,Ann,262542,1461118,2 +114058,Anna,277355,118200,6 +114059,Policier speaker,5511,68371,14 +114060,Phil Coopers,273481,167145,9 +114061,Gretchen Holman,218351,98444,9 +114062,Глеб,335819,226708,7 +114063,Walter,150657,1131340,6 +114064,Lakmé / Dagmar,18352,133296,34 +114065,Produtora Amaury,70666,1863904,47 +114066,Showroom department head,105210,1049014,16 +114067,Middle-aged womand,43741,1356007,9 +114068,Lord Sopespian,2454,7370,11 +114069,Hubble (voice),21765,4756,2 +114070,Billings,10900,11086,8 +114071,Roy Campanella's Father,132328,95012,9 +114072,Matrose,3716,1406152,22 +114073,Court-Martial Board Member (uncredited),10178,103357,23 +114074,Presiding Officer,118889,74877,20 +114075,Ngai Wing Chung,11647,130562,8 +114076,TV Evangelist,117942,98714,18 +114077,Ballerina,83714,929946,8 +114078,Jessica,56596,1163118,3 +114079,Marion Warner,149515,148836,1 +114080,Natural Scientist,115023,23116,8 +114081,Gabriela,46920,137753,5 +114082,Jesse Allen,12912,78197,7 +114083,Stanley,39194,3460,1 +114084,uncredited,60759,134137,22 +114085,Danny Bowman,19587,59238,3 +114086,Mrs. Bunting,175822,74622,3 +114087,Fight Spectator (uncredited),28000,1598135,38 +114088,Le dragueur,55836,223233,4 +114089,Duck's Mother (voice),90110,19781,6 +114090,Amber,42941,59263,2 +114091,Cherie Blair,1165,15737,4 +114092,Nubian Slave,31561,106991,11 +114093,Baby Pig,14029,103184,14 +114094,Himself,360283,95867,2 +114095,Johanna,204965,1187348,3 +114096,Lady on the Bus,32044,116489,7 +114097,Game Pup,169726,29909,10 +114098,Isko,46773,1147017,13 +114099,Glorf (voice),27042,97001,4 +114100,Nito,12622,13281,7 +114101,Mike O'Malley,30644,106664,0 +114102,Lulù,63179,236563,4 +114103,Old Man in Car,1164,1681184,37 +114104,Banker at Demonstration,67375,30202,39 +114105,,109379,938627,1 +114106,Johnny,52859,975692,11 +114107,Bill Foster,15090,825,2 +114108,Felicia,93263,79073,8 +114109,Will's father,29907,1369,5 +114110,Ana,337758,110973,2 +114111,Tall Man (uncredited),47914,37723,16 +114112,The Girl at the coffee door,84228,1082356,13 +114113,,289183,124873,5 +114114,Abraxas,37926,1104,0 +114115,Mariana,224233,1244780,4 +114116,Timmy,138977,1182322,14 +114117,Vicki Summers,293970,19961,2 +114118,Capt. Rousselot,3513,32361,10 +114119,Graduation Attendee,2001,1781349,78 +114120,Vance Fowler,42648,656,6 +114121,Vincent,369885,1698108,29 +114122,2nd Council Official,31875,1181938,7 +114123,Mutter Lukas,248933,1079939,18 +114124,,239534,145396,2 +114125,Calvin Bridges,206328,51547,6 +114126,Sis Sheldon,229610,1103870,12 +114127,Usup,19277,65831,8 +114128,Bandenboss Werner Maurer,262945,10254,0 +114129,Elizabeth Stocton,46695,1185377,2 +114130,Jax-Ur,49521,37698,17 +114131,Director Dick,20430,114271,14 +114132,Kindergartenbetreuerin,308174,1888465,49 +114133,David,88486,105337,1 +114134,Monk Wu Sun,186881,240171,1 +114135,Galadriel,122,112,17 +114136,Hank,43754,34839,4 +114137,Ernst Röhm,102155,85988,11 +114138,Valene Burns,189888,13652,3 +114139,Edith Heller,43434,49204,20 +114140,Pedro Campos (joven),337101,1407605,3 +114141,Kwan,45452,57831,1 +114142,Promotionsprüfer,52475,16719,13 +114143,Best Man (uncredited),44115,1613044,22 +114144,Sideswipe (voice),38356,1736,16 +114145,Himself,144680,1023583,16 +114146,Detective McGahey,9828,4728,9 +114147,Mun's grandmother,10389,231008,6 +114148,Manuel 'Rocky' De La Cruz,331962,1706102,14 +114149,Maddy Underwood,29108,1426907,4 +114150,,198890,1146261,12 +114151,American POW (uncredited),227306,1394478,78 +114152,HD Walker,37932,190900,5 +114153,Lucy Burns,49007,1518,4 +114154,Boy in Dream (uncredited),18333,994407,7 +114155,Sonny,82684,66741,5 +114156,Judge,147722,12502,17 +114157,Captain Fitzgerald,53231,145838,3 +114158,Fats Donner,50669,87457,3 +114159,Brian Muldoon,107250,1351508,15 +114160,Poor Mother's Elder Daughter (uncredited),36874,100047,6 +114161,Sheena,85350,1327013,51 +114162,Viktor,95140,180686,12 +114163,Terry Monroe,333663,28846,1 +114164,1st Lt. Tom Pullings,8619,19655,2 +114165,Rubin Pritchard,26514,1465098,9 +114166,Bejbina,74199,571466,2 +114167,Himself (uncredited),15199,6165,18 +114168,Chou Wing Ling,21519,943779,9 +114169,La grand-mère d'Anatole,68822,589540,18 +114170,Cynthia,21968,1655536,5 +114171,Celina,147815,203751,6 +114172,Alex,72875,567332,7 +114173,LAPD Officer Boggs (uncredited),44943,1205895,49 +114174,Jeweler,181574,99043,6 +114175,Graham Parker,89492,1144176,20 +114176,Amigo Fiestero,80280,1602318,20 +114177,Incacha,61988,135066,3 +114178,Elisa Bowers,72753,53862,2 +114179,Lillibet,65035,1220090,20 +114180,Lieutenant Norman,72638,34625,17 +114181,Rigger,42725,102441,8 +114182,Marguerite de Navarre / The Mountain Girl,3059,1167757,39 +114183,Eve,310137,212198,0 +114184,Lisa Mattson,13279,11703,2 +114185,Kauneuskilpailuvoittaja 2,55756,54769,15 +114186,Garret,26688,71467,12 +114187,,37959,1210833,10 +114188,Stacy,272072,1324630,4 +114189,Steven's Friend,26486,1676665,34 +114190,himself,82627,928339,1 +114191,,73835,126986,4 +114192,Saloon Guy (uncredited),57201,1429470,19 +114193,Nurse Nagamatsu,65456,1295141,3 +114194,Himself,29101,1515926,18 +114195,Rapaz que avisa do show,296288,1839920,27 +114196,,334651,1453311,5 +114197,Constance Strickland,77949,29235,4 +114198,Ian,54893,1077375,7 +114199,Rusher of Din - Woman Under Dryer,36751,42168,19 +114200,Alfredo Jorio,84865,147159,1 +114201,Selina Fong,9056,56830,1 +114202,Major Carrie Farris,49521,1272970,22 +114203,,38099,119655,21 +114204,"Lieschen, das kranke Mädchen",10626,47360,9 +114205,Aunt Louise,128270,1820212,21 +114206,Dr. Martin Koppelman,104528,160634,7 +114207,Robin's Mother,85430,9292,2 +114208,Marie,13728,119199,1 +114209,Trace,107319,1041557,0 +114210,Dan,113119,1073054,4 +114211,FBI Agent,51823,144674,13 +114212,Graduate Student,381008,1589612,25 +114213,Julien,59349,229238,2 +114214,Himself,267955,42386,2 +114215,,239534,1251643,3 +114216,,34019,1122587,13 +114217,Sean,57326,58794,10 +114218,Luisa Manfredi,242240,233183,0 +114219,Mrs. Dorian,57412,21878,7 +114220,Clint Duran,100669,1022801,10 +114221,,293516,68166,3 +114222,Katey George,262088,938921,2 +114223,Óscar,119409,1253385,3 +114224,Blonde,28115,99751,7 +114225,Helen Nasseros,36288,4431,1 +114226,Carol,34806,55536,6 +114227,Pirouze,43464,10159,5 +114228,Poor Schlub,91679,1252008,39 +114229,Emelia (voice) (uncredited),8276,78906,18 +114230,Cassie (older),14552,569550,25 +114231,Colonel Anderson,3291,12797,12 +114232,Agent Frankie Miller,14452,105900,1 +114233,Michael,174162,40550,1 +114234,Zach Douglas,38237,83699,4 +114235,Peter Eureka,25551,96722,12 +114236,Howard,35558,154195,13 +114237,The Collector,362439,1409017,10 +114238,Anchorman,186869,1862897,22 +114239,Father Liam,1420,3896,1 +114240,Hector,45013,1391321,31 +114241,Vampire Council #3,346672,183737,13 +114242,Daan,345438,80631,1 +114243,Buck,262357,1169115,4 +114244,Il Maresciallo,44658,237794,5 +114245,María / Laura,172457,1042728,0 +114246,Jack Licavoli,51209,15183,11 +114247,Cedi Lilliehjelm,87992,1069786,2 +114248,Herself,142168,4885,2 +114249,Busboy Who Finds Body,186869,1862914,44 +114250,John,80560,1175672,4 +114251,Marijken Bruegel,57829,88256,3 +114252,Lou,232672,1274510,9 +114253,Nadine Story,40028,10826,0 +114254,Franziska,198511,10255,3 +114255,Inspector Zenigata (voice),15371,616,4 +114256,Bobby Moynihan,214756,452205,21 +114257,Motor Girl,188858,1170305,4 +114258,Frau Angelika Raubal,102155,15942,14 +114259,Queen La of Opar,225503,13562,5 +114260,Gossip in 'Ice Cold Katie' Number,43514,11498,18 +114261,,334651,83847,4 +114262,2ème Policier de la visite nocturne,5511,1664787,18 +114263,La femme,52555,1303696,3 +114264,Female Guest,66447,10500,3 +114265,Caitlin Jones,68387,79152,11 +114266,Ruby,139718,13568,0 +114267,Penny Morris,43790,9066,1 +114268,Brock,183662,1153795,15 +114269,Mark,26881,567076,14 +114270,School Cheerleader,246655,1433019,27 +114271,Lewis,26517,100510,6 +114272,Sezer,82501,62447,4 +114273,Kwong,11636,70690,11 +114274,Christella Burke,138486,3336,1 +114275,"Red, Joe's Mechanic",125736,941240,15 +114276,Henrique,19548,22312,3 +114277,Chief jailer,286545,1352656,8 +114278,Angela,207850,1099603,6 +114279,Tommy Chan,90956,82385,3 +114280,Rosemary,227156,212208,6 +114281,,241982,1277001,8 +114282,Conde de Guadalmedina,13495,17093,4 +114283,Pedro,12221,73755,2 +114284,himself,190940,85063,18 +114285,Madame Firmin,76115,577650,16 +114286,Jerry Steinwald,19794,51382,2 +114287,Tom,22582,21125,0 +114288,Ruth Chandler,15356,21525,2 +114289,Proteus Prindle,172443,1362720,1 +114290,Himself,16800,10931,20 +114291,Green Day (voice),35,95868,14 +114292,Mike Brennan,354979,1492918,13 +114293,Lucy Thorpe,224204,1270458,4 +114294,,392832,8776,2 +114295,Frank Schultz,31548,110940,7 +114296,Hero,39347,42802,0 +114297,Tongue Guy,39536,567588,1 +114298,Douglas Mitchler,286532,992427,6 +114299,Dumas,213755,70759,1 +114300,Jacob Wade,43250,3785,0 +114301,Antoine,10268,64542,4 +114302,Veronica Flame,11719,52087,2 +114303,,57977,132449,1 +114304,Young Girl (uncredited),128215,1825797,18 +114305,Jeff Thomas,257907,130485,9 +114306,Mostyn,29705,50998,5 +114307,Mr. Rivetti,98566,17194,25 +114308,Nurse,32540,109331,19 +114309,Mario,57489,866390,1 +114310,Principal Dwight (as Andy Daly),369883,95875,4 +114311,Kodeni,35110,94027,4 +114312,Captain Kennedy (uncredited),17136,34365,50 +114313,Ted Barclay,119801,15013,4 +114314,Geoff,18739,1212181,4 +114315,Hoppy,307081,1070339,5 +114316,Himself,144680,1847924,12 +114317,Bill,109886,12147,0 +114318,Moby,11205,62410,1 +114319,Angela Oakhurst,2355,882,3 +114320,En konstabel,87654,1477352,16 +114321,Jacques Chevalier,3476,32089,2 +114322,Scott Cheaver,16005,81197,5 +114323,Mr. Carter,216374,14427,3 +114324,McKibble,19766,83772,8 +114325,Amanda Young,11917,2138,8 +114326,Scrat,21044,5713,1 +114327,Cmdr. Davidson,29100,93910,4 +114328,Inspector Satbir,56901,110707,6 +114329,Greer,18070,17396,10 +114330,Himself,410718,1060492,18 +114331,Vincenzo Corallo,217648,12329,0 +114332,Cop,260947,1304142,12 +114333,Sleepy Arkelian (as Bernard Punsley),99909,95298,2 +114334,Omar,31216,11861,3 +114335,Bus Driver,18843,89548,42 +114336,Frenchman (uncredited),32552,1119591,26 +114337,Marcelo criança,70666,1863881,10 +114338,Traded Beaver Baseall Player (uncredited),90465,93624,17 +114339,Mitsuko,12720,73675,3 +114340,William's Boss,2577,1498967,16 +114341,Ed Roden,43562,81182,6 +114342,Chris Jones,100910,8253,1 +114343,George Pollard,67375,96721,16 +114344,"Bruce Benton (segment 2 ""Terror Over Hollywood"")",41035,89526,9 +114345,Maman,59163,73937,2 +114346,Madame Blanche,14753,27778,5 +114347,Dani,57342,71296,4 +114348,Birthday Party Guest,413232,121323,26 +114349,lo psichiatra dell'ospedale,121516,1085172,14 +114350,Manfred Schreiber,82598,8252,0 +114351,Cloe,14123,93379,3 +114352,Nate Merritt,19235,84344,1 +114353,Ellen,2687,26996,11 +114354,Bill,20825,144525,5 +114355,La Signora,107035,1041300,3 +114356,"Mr. Whitehead, President of Trojan Construction",49158,4958,3 +114357,Thomas,203186,1198313,8 +114358,Hephaestus,32657,43263,38 +114359,Steven Prince,107985,14887,4 +114360,Jill,209406,99182,7 +114361,Jing,68063,238658,2 +114362,Omar's Head of Security,241254,1388486,22 +114363,,257831,221974,14 +114364,Amedeo,61799,45982,0 +114365,Francesca,91070,13635,7 +114366,Sam,40034,101765,8 +114367,Grinko,6687,2282,5 +114368,Macrobius (as Antonio Molino),93492,102096,10 +114369,Nate Rickard,274820,1503294,7 +114370,President of the United States (as Mr. Walter Huston),29705,19020,11 +114371,Muriel,47794,28246,2 +114372,Ella,207270,11617,0 +114373,Hot Girl #2,376292,1267277,7 +114374,Prankster Bus Driver,14552,569553,29 +114375,Sam,107985,1278130,36 +114376,Billy Caldwell,53209,148843,3 +114377,Glišo,259690,1810511,11 +114378,Jo Anne,6973,71561,32 +114379,Joe Doyle,127812,32430,4 +114380,Himself,374460,9191,9 +114381,Marie,11330,1348452,14 +114382,G Money,70586,59844,11 +114383,Bully #2,25132,947564,12 +114384,Nurse Montgomery,10055,62599,19 +114385,McSween,42402,29645,7 +114386,Zhang Zhizhong,25626,1624097,18 +114387,Cristina,331354,114460,3 +114388,Track Suit Friend (uncredited),156700,1841396,42 +114389,Caretaker,190876,81822,1 +114390,Guido,448763,592367,2 +114391,Himself / Bellboy (uncredited),15788,69951,2 +114392,Giovanna,48254,9235,2 +114393,Hamdo,126090,1346388,6 +114394,Graduate Student,381008,1589608,21 +114395,Dittmar Rigule,121793,5168,2 +114396,Kyoichi Mikami,108634,1029739,1 +114397,,59147,28782,8 +114398,Lucy,24963,11768,1 +114399,Cum Posey,74942,52057,6 +114400,Sullivan,44001,19414,8 +114401,Moat,19995,30485,7 +114402,M3 Soldier,294254,1488513,22 +114403,Ginger,7288,1582853,13 +114404,Kuzhandaivelu,330418,1293540,5 +114405,August,62289,4688,0 +114406,Struthers,17038,5176,1 +114407,El chofer,127702,942179,4 +114408,Justin,341895,1657802,16 +114409,Herself,253337,1308174,12 +114410,Lt. Sharon Valerii,69315,77209,9 +114411,Kuzz Viller/Federico Partibòn,43548,1090077,6 +114412,Rees,266856,1414711,14 +114413,Tony Shane,94744,80875,1 +114414,herself,82627,928340,2 +114415,Lily Stevens,30624,46617,0 +114416,News Reporter,84184,1224996,18 +114417,College Girl,356752,1841515,38 +114418,Himself,453053,9656,3 +114419,giocatore di Poker,43548,1606424,28 +114420,Maitre,51800,145789,6 +114421,DSS Worker,300667,1359352,15 +114422,Martha Perkins,31509,981090,10 +114423,Jackson,345918,172873,10 +114424,Denver House Chambermaid,43821,1182826,45 +114425,Anjali Sharma Khanna,11854,55061,1 +114426,,133783,1476849,8 +114427,Joey,356752,1345418,0 +114428,German Officer (uncredited),297762,555133,67 +114429,,240334,1084606,2 +114430,Avrom Kandinsky,151431,29675,2 +114431,Clinic Patron (uncredited),206647,1186597,78 +114432,Lance,13477,53926,4 +114433,Puzzlehead / Walter,18634,113304,0 +114434,Lt. James Fletcher,369885,1651384,34 +114435,Lachie - 5 Years,14868,77717,5 +114436,,79580,82513,1 +114437,American Native Indian,240832,1426918,55 +114438,Himself,36325,1096495,1 +114439,Aleksandr Feodorovich Kerenski,204802,1623852,10 +114440,Chinnasami,66526,545009,6 +114441,Simmons,38769,544585,14 +114442,Detective,42709,12997,15 +114443,Mom-Ginny,306952,121757,16 +114444,Sandra,252773,1357411,5 +114445,Adam Belinski,52270,29519,0 +114446,Diana Dietrich,13653,74909,1 +114447,Stranger in Airport,32588,298410,7 +114448,Homeowner,304372,52481,34 +114449,Claire Winslow,25426,93746,0 +114450,Denis,329805,38871,6 +114451,Barbara (uncredited),54139,14108,24 +114452,,99599,1719972,9 +114453,Нюхин,409082,86664,3 +114454,Sofi Kozma,13788,13724,6 +114455,Aris,12432,129876,4 +114456,Ex-Gonzalo,98586,1080147,15 +114457,Detective 1,293670,1203792,7 +114458,se stesso,142320,1779008,30 +114459,Irène,186988,69489,0 +114460,Chief,102144,5792,5 +114461,Elliot Baker,402446,92404,0 +114462,Bodo,8556,682,12 +114463,Detective,127812,1050210,27 +114464,,27904,1415468,3 +114465,Jack,168259,1880146,22 +114466,Elliot Wilhelm,4551,18918,12 +114467,Rose,45013,1625774,28 +114468,The Mortician,43700,129778,5 +114469,Mr. Coleman,73348,129995,12 +114470,Tommy Logan,179603,1509,3 +114471,Riker's Prison Guard,2001,1102616,66 +114472,Allegra Rori Recchi,41110,31071,5 +114473,Doctor,8652,1232910,5 +114474,Laurent Messala,3476,32093,9 +114475,Phillip Warren,101320,21624,1 +114476,Mexican Bounty Hunter,86472,49895,8 +114477,Alain,336811,24041,0 +114478,Beautiful Actress (uncredited),43522,1262420,44 +114479,Mrs. Stimler,54107,8903,5 +114480,Job Centre Guard,374473,1859551,14 +114481,Sudeep,244610,1376416,14 +114482,Roland,75623,143596,4 +114483,Soldier / High Priest,104430,34047,13 +114484,Jo,20718,86034,1 +114485,,112675,1651,4 +114486,Train Conductor,183825,119542,39 +114487,Attila,183015,64417,7 +114488,Edmund,80324,40914,4 +114489,Tim Jones,331313,65717,2 +114490,Geoffrey,32166,7471,9 +114491,Nicolette,16177,1112246,2 +114492,,210068,55070,7 +114493,Restaurant Patron #1,339403,98775,16 +114494,,42944,129142,0 +114495,Mrs. Snow,866,52313,10 +114496,Chalieff,82098,14121,4 +114497,Volunteer,1116,1896867,31 +114498,Prof. Heiss,3145,12819,7 +114499,Japanese NCO,127560,75748,15 +114500,Damisi,333352,1539940,31 +114501,King,360249,527696,6 +114502,Kenichi Nakamura,135799,76933,0 +114503,Officer,43821,1075172,23 +114504,Paul Mangin,27112,96994,0 +114505,Thwarted Guy,26688,96020,9 +114506,Donato,227975,52583,0 +114507,Stephen,35395,114252,0 +114508,Vänrikki Nappulan vaimo,55761,4830,8 +114509,,241982,1139757,2 +114510,Japanese Officer,127560,1615809,12 +114511,Pünktchen,798,11927,0 +114512,Hotspur Shaner,33923,14361,14 +114513,Bagga,20132,85694,10 +114514,Bettina,74103,301285,2 +114515,Gus,42640,102502,2 +114516,il frate sul patibolo,103216,1377952,14 +114517,Chief O'Hara,76681,16119,5 +114518,Carolina,231176,206409,13 +114519,Armando Zavanatti,325645,12259,1 +114520,Lord Rhodes,10204,27660,7 +114521,Jim Mitchell,107593,95017,11 +114522,Father Avila,1381,1173,3 +114523,Captain Mike Ryan,359471,60650,3 +114524,Kyle Kingman,31605,98102,7 +114525,Reality House Girl,13827,1763429,7 +114526,Himself,27637,1724687,19 +114527,Culebra,102629,1031255,3 +114528,Julia,110261,29541,1 +114529,Carpenter,341957,1470817,12 +114530,Ramona,38327,120154,5 +114531,Mara,10529,1298377,12 +114532,Jackie Hoffman,31377,1285,1 +114533,Connolly,33272,9443,7 +114534,Candace,226269,585936,1 +114535,Alien (uncredited),283995,1806602,50 +114536,Juninho,154441,1135307,6 +114537,Bartender,20028,29987,10 +114538,Lt. Cover,19968,1079554,11 +114539,Dario,58773,55912,0 +114540,Chan Chuen Chung,25425,1341,0 +114541,Staatsanwalt,130544,2311,1 +114542,Mater,13934,15897,0 +114543,Cake Seller at the Fair,186227,29603,32 +114544,Madison,11247,59180,13 +114545,Bob,266425,1313143,15 +114546,Stela,40859,583635,10 +114547,Enseignante mosquée,39358,1717262,16 +114548,Ellen Shaw,133716,103097,2 +114549,Trevor,27417,101543,0 +114550,Ray,90992,168776,0 +114551,District Attorney Eric Lowell,74437,82348,3 +114552,Sheena,20916,86305,2 +114553,Crow's wife,18899,105421,16 +114554,Assistant Prosecutor,4982,1527995,61 +114555,Elsa Maxwell (uncredited),43491,1170498,17 +114556,John-John,58396,228515,6 +114557,Don Lupe Chávez,82767,31796,3 +114558,Mathilde,30508,901,1 +114559,"Mack, the Bartender",42191,105457,8 +114560,,49522,1247018,20 +114561,Sarah,309879,119413,5 +114562,Matt 'Axe' Axelson,193756,11107,3 +114563,Mark,95516,52891,5 +114564,Street Merchant (uncredited),76203,1438304,69 +114565,State Trooper,10710,1235959,20 +114566,Geldy,395914,1614745,5 +114567,Uncle Ba,24163,990778,7 +114568,Margaret Miller,60853,85042,3 +114569,,329868,89283,7 +114570,Newsreporter,18273,184311,7 +114571,Walter / Manolo Flamingo (voice),145220,360193,8 +114572,Willford,27105,86369,8 +114573,Ella Barnes,218582,32431,6 +114574,Anniversary Cake Usherette,3937,87826,24 +114575,Anna Thompson,85602,10458,3 +114576,Angelina Jorio,84865,931401,3 +114577,Melanie Rocamora,59117,228875,3 +114578,Stockbroker (uncredited),43522,89658,66 +114579,Herbert Morton,148326,1121715,6 +114580,Frank Parker,159128,32029,0 +114581,William Thomas,20544,17764,5 +114582,Prostitute (uncredited),274857,1786731,50 +114583,Ruth,352960,1106411,2 +114584,Cate,146313,210814,8 +114585,Col. Webson,161602,9874,6 +114586,12-Step Meeting Member,14976,1020057,23 +114587,Philipp's mother,36672,44304,15 +114588,Médico clínica,53739,1356320,16 +114589,Lenore Coltrane,26293,95038,2 +114590,"Михаил Натанович, программный директор",25936,86878,6 +114591,Jazmin,213983,1198613,1 +114592,Consuelo of Claghorne,57866,1018113,13 +114593,,142085,1073076,1 +114594,Mover,130507,120734,14 +114595,Lip Hop Fat,118139,30017,7 +114596,Peck,49343,9191,2 +114597,Tun,30305,106034,4 +114598,Louis Servidio,241239,984629,20 +114599,Dessie,262958,962560,14 +114600,Donna,323673,74679,4 +114601,Esmeralda,58611,103172,1 +114602,Joy 'Ma' Newsome,264644,60073,0 +114603,Tourist,98644,1029125,8 +114604,Karen,35626,101398,6 +114605,Pam,37534,1546660,18 +114606,Dolores,95136,7906,5 +114607,Suspect (Cameo),204553,20519,15 +114608,Adrienne,298865,1499543,7 +114609,Selenia (voice),26505,77948,8 +114610,Trixie,53358,1384203,8 +114611,Jester,27886,72900,11 +114612,Alfonso,330171,31384,8 +114613,Roy Tucker,32029,193,0 +114614,Megasis / Captain Canine (voice),149910,3492,16 +114615,Kim's thug,18763,83693,15 +114616,Trabajador 1,52943,1732631,7 +114617,Guard,310135,1716337,22 +114618,Cavanaugh,93263,6355,4 +114619,Dr. Mills,121401,69764,4 +114620,Peter NIss,77882,656,1 +114621,Midori,53064,1107767,0 +114622,Capt. Franklin Buchanan,109475,126905,6 +114623,Grocery Shopper,10071,56685,17 +114624,Hala,31547,97274,5 +114625,Emile Costa,26131,158126,8 +114626,Joe Walsh,76468,171737,4 +114627,Javier J. Rivera,4982,40543,15 +114628,,12206,1197288,21 +114629,Brakeman (uncredited),15794,589641,56 +114630,Diallo,47226,1564562,10 +114631,,176321,48062,3 +114632,Moderator,5881,4391,6 +114633,,74674,1445122,24 +114634,Todd,91391,939592,1 +114635,Jennifer,11610,54754,7 +114636,Yun Hong-yeon's mother,142499,553705,5 +114637,Clem Cattini,26796,55466,5 +114638,Susanna Suomies,224813,1210344,5 +114639,So & So,283445,5296,1 +114640,Himself,297814,983578,1 +114641,Himself,374460,1536415,23 +114642,The Cop,16077,79189,6 +114643,,55776,116162,5 +114644,Reporter (uncredited),31984,1845974,32 +114645,Hyperbius,286789,5968,3 +114646,Santos,206563,112110,9 +114647,Marcus,13960,98775,5 +114648,Jesse Bascomb,241574,45363,3 +114649,Pat Remson,99909,18802,7 +114650,Leo Bellarts,8915,76101,8 +114651,Esther,2012,50556,3 +114652,Todd,98066,180789,14 +114653,Herself - Model,327083,207606,5 +114654,Ma jeune,11403,59750,6 +114655,Thierry Arronax,2966,29094,3 +114656,Mann mit Kind,10749,50314,4 +114657,Cowboy (as Dean Danger),85916,1547897,7 +114658,Archie Lee Samples,93116,102439,7 +114659,Johann 'Schani' Strauss II,62567,30774,1 +114660,Anger,18209,1125461,10 +114661,Médico #2,31022,1681778,2 +114662,Mark,228028,80289,4 +114663,Himself,209112,1018992,29 +114664,Man with Dog,374473,1766048,19 +114665,Matt,86168,199909,4 +114666,William,334132,1468979,7 +114667,John Craig,96793,67449,0 +114668,Lorelei,218784,67599,3 +114669,,109587,1055270,20 +114670,Elizabeth Buff,52475,142658,26 +114671,Damon Richards,5289,42711,13 +114672,Amanda 'Mandy' Jenkins,267483,1315166,1 +114673,Jasmine 'Jas',16151,79706,18 +114674,Karen,360605,1256036,4 +114675,Genie of the Lamp,18098,5723,7 +114676,John Connor,65595,820,2 +114677,Peggy Dobbs,25738,7632,1 +114678,Adam 'Shep' Goodman,11354,24173,6 +114679,Farmer Gene Green,16296,19968,4 +114680,Jessie White,295656,81217,1 +114681,Reporter,31984,1236452,14 +114682,Maisey,277355,1476862,10 +114683,,409903,86664,5 +114684,Emma,12432,78681,0 +114685,Terry Clayton,229221,1081269,1 +114686,The Walker,29805,140445,18 +114687,Ben's Father (uncredited),284289,1365517,6 +114688,Businessman on Street (uncredited),2503,1500999,34 +114689,Teacher,447758,211897,28 +114690,Carl Blanton,224885,8395,1 +114691,Preacher Weatherby,42703,4965,6 +114692,Binky,18616,59284,3 +114693,Squadron Leader Barry Clinton,41312,12729,3 +114694,Mr. White,242310,990136,13 +114695,Christina,26517,100507,2 +114696,San'er,375599,232808,2 +114697,Himself,53380,4429,8 +114698,Амалия Аркадьевна,57770,1175938,5 +114699,Radio Technician,39195,4610,4 +114700,City Engineer,5965,46930,18 +114701,Wayne Colson,16164,11155,2 +114702,Dean,194407,80236,11 +114703,Laura Anderson / Richardson,104041,3830,1 +114704,Dr. Samuel Basch,78318,11502,10 +114705,Mona,82941,4636,5 +114706,Lehrer Bremser,798,11938,11 +114707,Anandan,134477,591155,7 +114708,Saroja,329135,1306580,9 +114709,"Valya, Fedya's wife",49574,120241,2 +114710,Chester Creek,56948,229745,5 +114711,Aunt Klara,8316,46992,6 +114712,Blind Al,293660,122750,5 +114713,Grant,336004,1046665,31 +114714,Brian Ross,44895,52474,1 +114715,Coach Byrnes,17927,4492,10 +114716,Oyster Boy,137321,1656059,20 +114717,Tiny,142946,79742,7 +114718,Clarisse,1818,19270,3 +114719,Shannon,384682,1718319,29 +114720,Turles,39101,90496,2 +114721,Samuel,834,12367,10 +114722,Peter Hulderman,68976,5739,9 +114723,Robbie,255278,1292114,3 +114724,Medical Examiner,243568,184567,15 +114725,Deputy Neale,24150,9312,12 +114726,Old Man,377170,1223527,18 +114727,Senhor Dobbins,42473,5732,15 +114728,Jenny,21141,59175,8 +114729,Agda Kjerulf,225244,135592,1 +114730,Ryan,287281,1353905,4 +114731,Arthur Wyndham,13788,17605,4 +114732,Armie,339403,1371397,11 +114733,Miss Sally Green,153161,1274103,18 +114734,Eileen,126841,1084816,2 +114735,Zdravko,385654,1314527,5 +114736,Danny,36251,1689929,15 +114737,Lana Lang,49521,213049,9 +114738,Officer Brennan,21627,3174,7 +114739,Casper,356326,228218,5 +114740,,255160,77608,7 +114741,Max Wade (uncredited),36612,56924,12 +114742,Donna Lawrence,276550,2684,1 +114743,"Ronald Wyatt (segment 4 ""The Man Who Collected Poe"")",41035,3785,0 +114744,Limo Driver,347945,1549116,11 +114745,Nicolas Dubuc,359413,549533,5 +114746,General Garcia,19827,20163,2 +114747,,34763,1064957,7 +114748,Holly,16022,534231,17 +114749,Black Magician Girl (voice),72013,1124543,14 +114750,Sandro Rubizzi,75336,69037,3 +114751,Richie,96133,72661,7 +114752,Main in Blue Suit / Jason,295723,1418244,15 +114753,Comandante Munoz,456781,100062,15 +114754,,254869,1413269,63 +114755,Jane Barclay,38724,87519,10 +114756,Dr. Simpson (uncredited),15794,30162,33 +114757,,45441,13256,6 +114758,Man in slippers,64736,86151,9 +114759,Kat,360737,1561755,4 +114760,Jeff Woods,114577,169421,0 +114761,Adam,25707,94137,2 +114762,Delarue's Gang,266285,1459817,44 +114763,avvocato,3520,84251,15 +114764,Mexican Woman in Lift,206647,983710,14 +114765,Troy Pasternak,14782,32205,7 +114766,Himself,69019,98539,1 +114767,Caruso,43000,28189,5 +114768,Petra Wetzel,58995,59962,3 +114769,Karen Clarke / Susan Hamilton,21927,2155,0 +114770,Adolph (as Gerrett Wallberg),81720,1184610,3 +114771,Red Haired Girl,35197,91539,11 +114772,Nick Douglas,40826,11147,0 +114773,Carole Ann,206296,1714289,6 +114774,Mrs. Henry Adams,153165,34184,20 +114775,Herself,6575,73952,23 +114776,,57458,1581029,2 +114777,Dieter-Miguel,140554,1707836,29 +114778,Yasuo Nanbu,61984,1129848,11 +114779,Dana Cannon,31462,66107,0 +114780,Ahitofel,2734,27641,15 +114781,Paul Smear,354287,1010912,43 +114782,Adela Racoviceanu,2009,1178620,13 +114783,Brooke,10739,20388,13 +114784,Boss of Mendez,106747,91264,20 +114785,Nurse,329865,1442445,46 +114786,Wenlock (voice),15906,89552,3 +114787,Bridget Fitzgibbon,272663,13299,3 +114788,Marlow's Wife,293167,1063263,32 +114789,Meek Man,98125,4119,9 +114790,Yashvin,70881,3364,8 +114791,Amy,73424,1368802,9 +114792,Owl (voice),24926,25627,8 +114793,Landlady,42242,164770,20 +114794,Sovereign Leader (uncredited),283995,1358965,60 +114795,Anne,1589,18015,3 +114796,Le patron de l'Amour Flou,89287,144792,2 +114797,Waitress,268920,1749828,51 +114798,Bernhard Landau,20017,73671,4 +114799,Jackl,296225,33082,4 +114800,Sister Mary Brigid,225499,8515,6 +114801,Last Soviet Head of Atomic Energy,319092,1890112,15 +114802,Mac Radner,325133,19274,0 +114803,Susan,1164,112,1 +114804,Bobby Shad,6575,64342,24 +114805,Maria,31128,1611434,5 +114806,Crank,118760,584597,3 +114807,Aeradio,4893,29305,11 +114808,Burlington Potluck Guest,356752,1841544,68 +114809,Jimmie Lin,74525,16103,7 +114810,"Arkadina, an actress",184795,12266,2 +114811,Magazine Editor,17111,60858,8 +114812,Flanagan,1640,886,16 +114813,Additional Voices,15213,1441533,30 +114814,Nico Giraldi,52913,21708,0 +114815,Philippe Guérande,29082,102847,1 +114816,Sir Guy of Gisbourne,71066,150636,8 +114817,Dr Tom Baker,4809,2493,1 +114818,Alfred Rutherford,181574,94854,2 +114819,Vicky,21141,19200,5 +114820,Finckelgruber,118,568396,22 +114821,Student in Drapes,246655,1796419,70 +114822,Italian Naval Chaplain Vanzano,257081,117735,22 +114823,Rudina,82624,913626,2 +114824,Victor 'The Destroyer' Bragg,29801,37250,4 +114825,Simo Prc,337758,1315418,3 +114826,Alex Rose,7288,7399,0 +114827,Capt. Wallker Randall,330711,7036,3 +114828,Melissa,91679,74687,2 +114829,Nives,382873,569933,6 +114830,Shokdor the Orc,31221,1563458,7 +114831,Einar,336885,107701,1 +114832,Candy,41932,98563,7 +114833,Lisa Wyatt,64183,62513,4 +114834,Politician,43806,30217,40 +114835,Holly,18932,83920,0 +114836,Surveyor,197737,88728,38 +114837,,16015,1445191,8 +114838,Señorita Plasini,36785,590943,1 +114839,Himself,43065,19266,1 +114840,Wednesday,54227,29908,1 +114841,Frazer,46228,1007834,2 +114842,Eddie,18998,54791,7 +114843,Gifford,37254,117188,4 +114844,James Rhodes / War Machine,99861,1896,8 +114845,Indian Brave,42703,178343,26 +114846,Chad Valley,352890,1561255,23 +114847,Halima,17295,1055191,4 +114848,Abbot Godwin,78522,99420,11 +114849,Numbers' Man,228647,34818,40 +114850,Pastor Merril,354859,104040,22 +114851,Secretary,46448,107234,6 +114852,Andre,392818,1614892,3 +114853,Fredrick (Ranch Member),245703,144160,14 +114854,Chaudhary Om Singh,14159,85724,12 +114855,Scott,56906,111518,0 +114856,Chrs Webb,15020,76638,6 +114857,Pernilla,193523,1167004,5 +114858,Masao's mother,112244,131013,1 +114859,Mrs. Farrell,97598,50836,6 +114860,Aunt Connie,791,11831,8 +114861,Lily,295964,1900947,16 +114862,Paz Padilla,481,6538,5 +114863,Constable Larry Young,176867,41134,11 +114864,Dalton,233487,1268987,6 +114865,Natari,62472,1484676,23 +114866,Blacksmith,9287,46947,6 +114867,Landlord,125490,1179450,29 +114868,Chantal,445,132429,13 +114869,Marie,393407,1185769,10 +114870,Paolo,298722,128117,5 +114871,Allison,251227,1163462,1 +114872,Otar,121848,104806,6 +114873,Katherine,98364,131477,8 +114874,Susan,17175,173251,7 +114875,Don Domenico Laurenzi,105906,32677,3 +114876,Nathan,74465,523952,13 +114877,Brian,9756,31166,1 +114878,Belladonna,167810,5685,8 +114879,Admitting Nurse,41402,1529491,22 +114880,Chanel Simmons,37609,131724,1 +114881,,103215,46392,5 +114882,барменша Куинни,65089,47422,7 +114883,"Samuel Blake, Jr.",13680,74933,11 +114884,Myra,48805,115692,10 +114885,Nathalie,98277,1172560,35 +114886,Singer in Brox Sisters Trio,229221,1427099,11 +114887,Colonia Woman,318781,1694304,31 +114888,Henrietta Lacks,424600,87932,2 +114889,Willy,25038,62715,1 +114890,Sokratis,163018,490877,2 +114891,Pao,330459,1728956,51 +114892,Commissario Torri,58402,97684,2 +114893,Salvatore Sperlazzo,167583,37745,6 +114894,,131478,1285570,2 +114895,Orion,19350,83423,5 +114896,Meggie Folchart,2309,23775,3 +114897,Desk Sergeant,22901,1717916,10 +114898,Man at Station,56154,1058695,27 +114899,Sawada,376538,136875,6 +114900,Herself - Model,327083,1248830,16 +114901,John the Baptist,102428,1030580,3 +114902,Background Break Dancer,10362,1116540,31 +114903,Hunter,27873,36409,0 +114904,Group of singers,54111,1769720,10 +114905,Skerritt,152748,30613,4 +114906,Bronny Taylor,257345,8329,1 +114907,Daniel Kottke,115782,526,6 +114908,Mr Lo,31027,87950,7 +114909,Chef de Clinique (voice),126319,544716,14 +114910,Long Congyu,63441,1140546,17 +114911,L`Araignee,6935,51494,1 +114912,Jake Flannigan,44890,13578,2 +114913,Policeman (uncredited),2503,1209055,43 +114914,,224714,984951,0 +114915,Sonja,341559,1496480,6 +114916,Mai Nishio,60160,230655,2 +114917,Magohachiro Kibe,20527,95345,5 +114918,Edward Bird,407559,938121,6 +114919,Segoynia Savaka,102841,45476,1 +114920,,194853,563713,1 +114921,Lawny,381645,149000,14 +114922,Vanya Fedoskin,75262,270909,5 +114923,Lucienne,64407,30721,1 +114924,Mme Castle,43457,3367,4 +114925,Françoise,50350,63895,7 +114926,Detective Ramirez,331962,1568024,9 +114927,Dr. Emil Hamilton,49521,31028,12 +114928,Mrs. Merkle,50506,45863,2 +114929,Mère Angélique n°1,65898,27980,5 +114930,Air Marshal Gosport,43833,42081,10 +114931,"Tobias ""Four"" Eaton",283489,587020,2 +114932,The wife,43773,240240,0 +114933,Aid 2,43459,174449,20 +114934,Cristian,297288,72779,5 +114935,,31462,57359,19 +114936,Snakehead's henchman,10610,1039927,19 +114937,Vendor,344906,4992,20 +114938,Chelsea Brown,284296,5916,1 +114939,Dancer,274479,1542697,15 +114940,Attina (voice),13676,116315,10 +114941,Josh,297466,1182087,1 +114942,James Howard at 16,52360,13995,9 +114943,Ban-ban,343140,130645,7 +114944,Rory,248633,92803,6 +114945,Additional Voice (voice),177572,176035,29 +114946,Herself,393367,1660179,10 +114947,Koda Singh,15761,6500,12 +114948,Enn,341689,136127,8 +114949,Nikki Collins / Margo Martin,30022,95622,0 +114950,Eunuch,60488,544585,14 +114951,Mario,82481,1127381,9 +114952,Walter,128311,1168177,12 +114953,Lisa Simpson (voice),35,5586,3 +114954,Marina,62732,126968,0 +114955,Young girl arguing,222388,1076736,10 +114956,Cyrus Warkins,108869,3640,6 +114957,Himself,15089,1471556,2 +114958,Elenka,84030,575101,8 +114959,Reena Jacobs,88518,104511,3 +114960,Andre Hayworth / Logan King,419430,1200864,6 +114961,Alan James,30082,9626,1 +114962,Frass Canyon Pourer,9675,12545,13 +114963,Marianne,90086,36938,2 +114964,Professor Hughes,426265,1981,1 +114965,District Attorney,11247,1223695,32 +114966,Maureen Monette,13668,3196,4 +114967,,63414,1781711,6 +114968,Will Jackson,78265,45291,5 +114969,Harriet Stevens,87514,16131,7 +114970,,202984,1185280,9 +114971,Damian Wayne / Robin (voice),321528,1164238,2 +114972,Dante Rothemere,76757,1394350,48 +114973,Sakamoto's Wife,1904,19861,19 +114974,H.W. Manfred,47003,6637,1 +114975,Jacob Nicks,289723,98351,1 +114976,Campbell Henchman #2,220820,1206147,10 +114977,Nene,336011,1104350,5 +114978,Aunt Louise,105902,45465,3 +114979,Holly,6023,448,0 +114980,,5618,51948,11 +114981,Dancer,85446,932093,4 +114982,Liz,73198,1040467,3 +114983,Mary,126127,30003,0 +114984,Tatya Vinchu,192573,123316,0 +114985,,343809,1541182,5 +114986,Godwin's mother,332662,109266,6 +114987,Dominique,38792,24690,10 +114988,Bertram,13305,22593,9 +114989,Barbara Baildon,56942,1181412,5 +114990,Melvyn Orton,34151,56819,0 +114991,Lady De Winter,41609,29623,0 +114992,Gunther,12128,1295919,9 +114993,,244956,552649,12 +114994,Pastor Dyer,134806,3173,3 +114995,Mark,2764,27959,3 +114996,Eddie Vibes,53172,26473,4 +114997,Lawrence,253283,1789194,9 +114998,Buck Falin,76094,88672,5 +114999,Bogdana,195544,124625,7 +115000,Hamilton Lux,100669,23346,2 +115001,Rosa Carrisi,132122,55758,1 +115002,Princezná Barbora,208436,1081605,8 +115003,Langer,16356,15578,7 +115004,Additional Voices (voice),130925,1013165,25 +115005,Maggie Faris,126889,139150,8 +115006,Taurus,17421,2716,5 +115007,,329216,92843,4 +115008,,270081,27641,8 +115009,Herself,76686,1098644,8 +115010,Mother (voice),43580,1357561,5 +115011,Elme,383618,1281937,6 +115012,Zeke,118889,130218,55 +115013,Herr Kastner,946,14361,6 +115014,Newt,13574,133,5 +115015,Portland,125490,1179445,25 +115016,Mark Dyson,51054,21521,3 +115017,Kari Kuuva,423078,1700417,2 +115018,Shelly Klein,22076,35545,5 +115019,Sandi,4644,62065,9 +115020,Darius,38237,94089,2 +115021,Linda,8556,679,3 +115022,Zach Danner,7871,53232,1 +115023,Dr. Reinhart Kissel (as Karl Lindt),86768,5802,7 +115024,Dr. Ferdie Pacheco,69903,3142,2 +115025,Greenstreet,328429,71610,3 +115026,JP,260528,1351971,8 +115027,Minister (uncredited),28571,12356,26 +115028,Eric,32091,21343,1 +115029,Jiabao,67021,240160,0 +115030,Robert Mallory,77949,17287,1 +115031,Madame Gastier,62675,548347,5 +115032,Evan,242310,1286329,12 +115033,Àlex,81414,932056,4 +115034,Peppe,82481,1127390,25 +115035,Lee Carlton,32716,109611,1 +115036,Vinicio Altopascio,165159,55799,13 +115037,Rehmat,31031,85605,3 +115038,,418378,1209531,2 +115039,Russian Sergeant,171337,231869,6 +115040,Ivan Whiskey / Cyborg 001 (voice),127544,144100,1 +115041,Ministre,281968,1424905,4 +115042,Teacher,24914,56348,4 +115043,Molly,156711,1226263,9 +115044,Clotilde,26810,124987,13 +115045,Rick Cooper,23964,4095,9 +115046,Tim,271718,51857,18 +115047,High School Student,24655,1538594,15 +115048,Martha Bradley,89720,1379208,5 +115049,Albain,227200,99210,11 +115050,Sam Childers,45610,17276,0 +115051,Katherine,11096,10696,2 +115052,"Martin, the Furniture Man",47921,8729,7 +115053,Tyler,48836,1228437,5 +115054,Nurse Yôko Kawaguchi,12720,1025312,8 +115055,Charles Larson,18638,106217,8 +115056,Madre de Felipe,280045,144737,4 +115057,Produce Joe,31150,11769,5 +115058,PLA delegate,25626,56861,46 +115059,Capt. Yamoto,3115,30568,6 +115060,Smith,203351,1186519,8 +115061,Kyle Hansett,29896,231875,4 +115062,Vanessa,169298,54203,8 +115063,Yamamoto,402455,1091668,26 +115064,Priest,79113,1161925,15 +115065,Danielle,167221,5077,3 +115066,Pod (voice),51739,21200,11 +115067,Fatso Nagel,35926,4965,5 +115068,Ol'lem Taylor,133382,20959,3 +115069,Serge,52049,48576,2 +115070,Matthew,67822,956637,7 +115071,Robin,252028,527097,5 +115072,Kala Shetty,141603,1039607,11 +115073,Joel Lynch,358199,8608,7 +115074,herself,190940,76233,11 +115075,Rossignol,64407,237763,2 +115076,Dudi,318052,110360,2 +115077,Atendente Kely,70666,1863885,14 +115078,L'homme à la cage,1899,20965,9 +115079,Harmony Jones,55604,14001,6 +115080,Audrey Macklin,98066,81364,1 +115081,Hugo Lubota (as H.H. von Twardowski),28480,3007,11 +115082,Dave Hall,48885,99926,3 +115083,Gina Lopez,5289,21430,12 +115084,Rookie Cop,156700,111678,16 +115085,Simon,2861,20285,2 +115086,Leval,64437,21680,7 +115087,Lola,47876,69570,9 +115088,Friend Tim 3,348320,1869098,29 +115089,Gil,128154,1293281,4 +115090,Keigo Minohara,391004,1320678,0 +115091,Young Ruth,42188,989325,9 +115092,Russell De Keifer,2001,163794,16 +115093,Killian's Father,286372,61839,3 +115094,Jane Eastwood,30792,33105,2 +115095,Tanya Borodoff / Spot White / Marjorie Lang,178341,2434,1 +115096,Simon József,96411,42077,0 +115097,Nadya,345775,1587694,7 +115098,District Attorney's Investigator,47882,1047311,13 +115099,Psychiatrist,140825,27443,7 +115100,Chris,237171,1046375,8 +115101,Minor Role,43806,121412,65 +115102,Sally Orr,59838,3340,9 +115103,Reporter,240913,101063,23 +115104,Asterius,2454,25134,14 +115105,College Student,205891,575698,8 +115106,Darrin,77625,64202,10 +115107,Sgt. Paul Widdens,14215,77701,3 +115108,Sally Morgan,108224,149015,3 +115109,"Tartu, Tarzan's Adopted Son",76084,159552,2 +115110,Donnie the Guide,117251,73609,6 +115111,Alan's Partner,328589,80420,23 +115112,Lieutenant Okubo,1251,33520,6 +115113,Randy The Car Dealer,413052,1848595,8 +115114,The Wife,49110,70767,0 +115115,Jan Lambert,35683,78837,2 +115116,Franco Merendino / Django,121329,127040,0 +115117,Silvia,107073,1125454,3 +115118,Mel,28943,1333,2 +115119,Resistance PA Announcer (voice),140607,1572106,75 +115120,Sunfish 'Charlie Back and Forth' (voice),127380,7929,20 +115121,Mrs. Sidley,86049,12001,3 +115122,Local Newscaster #2,245703,1609624,26 +115123,,41967,1394877,3 +115124,Goon #2,284564,1836943,23 +115125,Angela,95136,1833020,16 +115126,Olivier,27019,23393,4 +115127,Nora Thomas,257907,1298419,5 +115128,,248747,1257028,8 +115129,Bruce Byers,417936,1652407,10 +115130,Guillermo,362703,10963,7 +115131,,163077,139299,1 +115132,Erik Suomies,224813,1210340,0 +115133,Marge Crew,62768,147514,5 +115134,Toni,121636,1300129,8 +115135,Woman Shopper,268920,1559700,12 +115136,Officer Cross,259997,131252,17 +115137,Dr. Giggles,14126,77270,12 +115138,Watson,133255,89264,5 +115139,Joel Hopton,156597,67713,4 +115140,Countess Olga Mironova,53853,125482,1 +115141,Museum Curator,35395,98103,5 +115142,,153420,72932,1 +115143,Conductor,277968,39905,12 +115144,Guy,63831,51325,2 +115145,Seeker Wolfe,72710,1273236,17 +115146,Desk Sergeant,3580,1498427,36 +115147,Irak Agent,43434,1117778,19 +115148,Pelham Vetch,44669,5041,5 +115149,Prisioneiro,70666,1826653,59 +115150,Capt. Parsons,24094,18262,29 +115151,Robert Bentley,110830,1888942,6 +115152,Farmer (voice),30060,1458295,10 +115153,Diane,128270,1820222,45 +115154,Vasco Leitão,49961,143135,0 +115155,Ned Trescott,199155,44728,3 +115156,Ethan - Drummer,10330,1575803,18 +115157,Rival Skater #3,20210,220241,18 +115158,Jan Verbeek,14019,76284,1 +115159,Richard,16985,20379,2 +115160,,47448,92104,16 +115161,Male Carrie,13805,981262,12 +115162,Lucas,347666,972158,6 +115163,Anna,211059,980211,0 +115164,#3 naisveteraani,55759,148323,15 +115165,Martin Flam,29832,13101,0 +115166,Poliisi,101838,1029085,18 +115167,American Soldier,38625,120924,7 +115168,,285685,1633654,14 +115169,Lt. Gil Farrand,155724,7004,1 +115170,Avinoam,35623,1195671,9 +115171,Rodeo Girl / Dancer,228205,1156046,13 +115172,Upworth,126889,1486488,7 +115173,Lowell,31899,1021841,13 +115174,Motel Proprietor,41574,1583291,13 +115175,Abner Beech,188826,20215,1 +115176,Margaret / Melissa / Mary,12994,55536,1 +115177,Nick Barbella,28000,14505,5 +115178,Hip Hop Teacher,51836,77361,2 +115179,Dr. Emma Temple,10320,20,2 +115180,Mike Frato,51209,97188,13 +115181,Glen Foy,9815,8435,1 +115182,Arthur,274857,56365,0 +115183,Alex Steiner,203833,7804,16 +115184,Anne Marie,295964,227454,3 +115185,Ramón,26971,942471,4 +115186,Jaan Mohammad,248698,6500,4 +115187,Automobile Owner at Gas Station,52122,13357,12 +115188,Little Jack 'L.J.' Byrnes,693,1003454,12 +115189,Emily Alman,221135,2021,4 +115190,Thaddeus,335778,1400178,18 +115191,Tony Rill,49353,44828,3 +115192,Tobias,261112,1304489,4 +115193,Prison FBI Agent,245703,31528,23 +115194,Wei Chin,81937,20904,3 +115195,Llewellyn Crossbinder,32021,8516,6 +115196,Francis Bacon 'Beezy' Anderson (as George Breakston),43846,121175,12 +115197,Count de Varville,139176,29263,3 +115198,Mother,25941,1835533,33 +115199,Richard,62492,129759,3 +115200,Le docteur,46326,40969,7 +115201,Zander Kelly,335970,18326,2 +115202,Gabriel,296313,93236,3 +115203,Bhanumathi,134477,1006403,4 +115204,Панночка,57230,86694,1 +115205,Max Lawrence,126418,131232,2 +115206,Julie,27019,24541,1 +115207,Beverly Franks,115565,6684,1 +115208,EHC Client for Mike,71670,75344,14 +115209,Caterer,98349,1017368,18 +115210,gestore di casseforti,43649,129635,16 +115211,Xiao Feng,309820,1130195,4 +115212,Mrs. Venible,87388,13026,2 +115213,Digby,29805,14760,17 +115214,Ele mesmo,448763,1848647,10 +115215,SI,237672,591135,23 +115216,Ian,73565,1226767,23 +115217,Eric Swan,42204,80742,0 +115218,Costantina,55823,12520,2 +115219,Xiaohui,64156,76811,2 +115220,Simon,60420,84221,3 +115221,Nurse 'Nosey' Parker,153165,33034,10 +115222,Lao Hu,64156,15156,5 +115223,Mac,13090,18324,4 +115224,Julie,149232,1557641,7 +115225,Kid Tracy,17303,995176,9 +115226,Scott,15476,171243,2 +115227,Lajunen,62825,1381436,3 +115228,Bike Group Leader,32577,1121491,8 +115229,Shooter Parker,218784,59410,6 +115230,Prehistoric Lucy,240832,1426899,43 +115231,Capt. Valery,18214,61151,9 +115232,Abo,38594,122661,14 +115233,Businessman,206647,1599245,34 +115234,Molly,21780,38670,6 +115235,RT-42,90395,78902,4 +115236,Daryl (voice),48567,1228380,2 +115237,Diwaker,77864,6497,3 +115238,Tenneson's Secretary,262841,1043662,28 +115239,Dick #1,9958,60977,8 +115240,le docteur,76703,579795,5 +115241,Detective Garza,22803,124304,5 +115242,Jackson Lamb,37686,3497,3 +115243,,57701,107727,0 +115244,Kommissar Axel Kersten,103396,38140,0 +115245,Rubén,85549,50928,0 +115246,White Boy,48838,83356,10 +115247,Lisa,284296,168452,14 +115248,David Campanella,132328,1234854,11 +115249,Nigel,356900,59231,6 +115250,Melle,9287,53371,4 +115251,Nina Ostroff,89008,85825,0 +115252,Venetti,51601,3140,10 +115253,Squadron Commanding Officer,97630,81685,28 +115254,Friend Derrick (uncredited),419430,1754537,33 +115255,Interviewee,32694,109578,19 +115256,Félix,29192,228710,0 +115257,Denise,21752,55029,8 +115258,Raju Mechanic,14072,141328,4 +115259,Fireless Cooker Customer (uncredited),80771,13996,18 +115260,le commissaire Mallet,76871,37309,6 +115261,La Crochue,59349,38501,4 +115262,Himself,410718,1702131,29 +115263,Sora Rosa,43211,129341,4 +115264,Steven,257176,154668,3 +115265,Tyler,18843,82626,7 +115266,Bar waiter,199602,1476539,10 +115267,Lothar,74103,571183,0 +115268,British P.O.W. (uncredited),227306,1394475,75 +115269,Lino Massaro,34280,15397,0 +115270,Honest Joe,52867,40463,11 +115271,Jüngere Stiefschwester,216647,1307581,3 +115272,Greene,43754,28410,10 +115273,Divina,7304,52416,13 +115274,Finsherman,246655,1796432,84 +115275,,423093,937009,1 +115276,Jimmy Harris,333663,1077843,14 +115277,Cindy,19053,155419,13 +115278,Gojira / Maser Tank Pilot,12636,1135826,4 +115279,Erin,308269,1447887,10 +115280,Jean de Cent Acres,61217,37919,4 +115281,Kitjo,17985,31960,2 +115282,Lord Charles Benson,13802,93125,31 +115283,Danny,268174,1316667,16 +115284,Wagner,114242,46710,4 +115285,Prof. Dr. Werner Haase,613,4534,21 +115286,"(segment ""Miminashi Hôichi no hanashi"")",30959,142489,32 +115287,Richard Sullivan,69165,151447,1 +115288,Himself,36432,115346,1 +115289,Additional Voices (voice),328111,86007,29 +115290,Maria Fareri,254918,1252420,11 +115291,Dirk's Friend,13777,75282,36 +115292,Delivery Man 2,52034,237182,15 +115293,John Pallet,19665,123307,20 +115294,Jules Calvert,41171,55174,7 +115295,Ryuken,105231,85285,4 +115296,Mary Sanders,80648,58312,0 +115297,Sarah (uncredited),88005,1644661,32 +115298,Purushotaman's wife,70988,144787,1 +115299,Tommy Cahill,7445,131,1 +115300,Eddie (voice),8355,15760,28 +115301,Dan Supple,425774,1707941,47 +115302,Harvey,15674,52508,2 +115303,Lt. 'Long John' Wynn,72638,81168,8 +115304,Eleanor Roosevelt,8915,1956,6 +115305,Saskia,1259,37054,13 +115306,Uncle Pao,58414,122816,10 +115307,Alijt,19398,1469188,18 +115308,Nan Perry,13580,29545,1 +115309,Bernie Meckler,37923,45921,8 +115310,Abby,17100,27561,6 +115311,Richard Goddard,84727,21030,2 +115312,King Ramayana,34082,5795,7 +115313,General Renning - 'Icarus',20674,13731,11 +115314,Bank Manager (uncredited),48838,1221066,20 +115315,zia di Martina,356758,1501811,6 +115316,,124080,158737,2 +115317,Frendlander,102444,3785,0 +115318,Ogata Shingo,46492,68411,1 +115319,Psychiatrist,10739,1232496,9 +115320,,146521,1772155,8 +115321,Aurore,17630,65572,1 +115322,Evalon,19898,28273,8 +115323,Meg,55632,51072,4 +115324,Police Lieutenant,25738,82837,10 +115325,John Bridges,66741,1301260,7 +115326,Thunder Monkey,9787,59174,16 +115327,Josie Albertson,245906,1333687,13 +115328,Daiyo,3115,30564,1 +115329,Mr. Faulkner,188102,1366358,25 +115330,Gary (uncredited),369524,1808633,45 +115331,Interviewee #4,28090,1719894,41 +115332,Romeo,138496,1147388,5 +115333,Hector Rincon,44943,145539,11 +115334,Ruby,417678,1423419,12 +115335,Pat Buttram,103168,21460,7 +115336,Bulma Briefs,39107,122193,3 +115337,Prudence Trabert Steckler,143092,1185550,2 +115338,Father,47342,1837871,28 +115339,Himself,23524,124069,8 +115340,Narrator (french version) / Récitant (voice),49954,25116,8 +115341,Rich Terenzi (as Michael Siegel),16296,1706337,6 +115342,Denny,429200,1196493,16 +115343,Tang Weiyong,76349,1184600,20 +115344,"Mrs Yu, Sky's mom",49199,1575155,11 +115345,Carla Donner,62567,235544,2 +115346,Rayna's Friend #1,356752,1841492,9 +115347,Monsignor Collins,110502,102829,13 +115348,Hauptmann Feigl,178446,28532,12 +115349,Pino,161545,1026959,11 +115350,Molly,18506,94185,8 +115351,Merriman,53865,5831,9 +115352,Girl,3941,34450,7 +115353,Albert Runkel,36612,2672,3 +115354,"Liz, la mère de Laura",283726,9893,5 +115355,Herself,53380,9292,3 +115356,Vernon,11247,112049,23 +115357,El Negro,14430,1521656,24 +115358,Ana,243683,58395,18 +115359,Yoshitsugu Otani,209032,74377,7 +115360,Metropolis Citizen,209112,1691935,50 +115361,Horrible,10178,4307,11 +115362,Meredith,128270,1820216,31 +115363,Sergeant Shan's driver,13807,237122,14 +115364,Tiffany,318922,1531925,16 +115365,Tommy Organ,13576,1449383,8 +115366,Herself (archive footage),438137,1825977,2 +115367,Dog,25855,1489156,5 +115368,,61799,1851883,9 +115369,Paulie,16342,1335169,7 +115370,Madge Kehoe,167073,477,4 +115371,Dettweiler,228066,34546,6 +115372,Colonel Andrews,156711,9145,4 +115373,Montoya,82,16867,3 +115374,,17985,1439598,20 +115375,Sen Chiu,29398,16103,9 +115376,CNAC Anchor,329865,1752149,16 +115377,Christopher,246127,450366,8 +115378,Mr. Whitely,28044,14658,8 +115379,Reaver,263115,35546,25 +115380,Theresa Russo,26736,85759,3 +115381,Horst,1661,36688,7 +115382,Don Maurizio,58011,1377952,16 +115383,Clint,23966,2234,2 +115384,Tara,68716,56824,3 +115385,Mikako Nagamine,37910,1308714,2 +115386,Country DJ (voice),1640,18305,48 +115387,Baxter,19766,27752,6 +115388,Kenji,17911,1110616,7 +115389,Otto,91390,26563,3 +115390,The Major,19661,9865,5 +115391,Air Ministry Officer,43833,131029,22 +115392,,44442,1275870,2 +115393,Beth,84184,71552,4 +115394,Officer Trubiano,83899,928453,15 +115395,Varius,113743,118222,6 +115396,State Trooper,268920,1754452,63 +115397,Page / Elf / Nobleman / Nobleman's Son (voice),809,12079,12 +115398,Finton Coin,6947,10692,14 +115399,Joe,345924,84897,4 +115400,Geisha robot,315837,1179243,7 +115401,Women,15909,1076563,12 +115402,Le voisin du dessus,15712,145126,30 +115403,Harry Winters,37126,199917,7 +115404,Wade,157847,1206062,6 +115405,Paul Scarff,73027,29305,8 +115406,Josh,71668,205204,3 +115407,Soda Fountain Clerk,256962,1214847,17 +115408,Helena,157919,58370,6 +115409,,85656,1135891,7 +115410,Marika,35554,120130,1 +115411,Team Leader Yoo,362974,1494834,4 +115412,Trish,33009,55619,13 +115413,Le comte de Cerisy,2002,20578,14 +115414,Pilar,57342,961,5 +115415,Kanan,413421,933160,3 +115416,,293109,1364519,2 +115417,fratello più giovane di Samantha,43211,27401,13 +115418,,57203,99814,1 +115419,Bob Dalton,259975,12123,6 +115420,Faat's doctor patient,37702,1173605,13 +115421,Chief Galen Tyrol,105077,77222,17 +115422,Finkelberger,122487,3757,16 +115423,,362463,1458926,10 +115424,Young Dino / Christian G. Durango,95136,174203,7 +115425,Skylar Hathaway,161482,155752,1 +115426,Captain Lawrence,14008,16591,13 +115427,Matt,87302,127596,5 +115428,Doom-Head,284564,3901,10 +115429,Logan Buchanan,40205,219998,2 +115430,,196469,3129,0 +115431,Kayla,291866,1379123,7 +115432,Wayne,246218,963313,0 +115433,Саша Белый,56372,87409,6 +115434,Brickyard Bouncer,241254,1388482,18 +115435,Rodeo Announcer #2,33541,1395871,36 +115436,"Giuliana,figlia del cav. Cecconi",38286,78674,5 +115437,Le chauffeur de Letellier,38883,24040,5 +115438,Marija Mulahasanović,152861,1133425,4 +115439,Mrs. Kelly,25918,85997,10 +115440,,56971,120638,4 +115441,Jollop,57215,43524,12 +115442,Jimmy Bosley,9471,1897,3 +115443,Maria,62755,1708546,3 +115444,Micro,13056,4201,6 +115445,Maria Barda,288526,1031163,5 +115446,Whimpy,98094,1327447,5 +115447,Hulking Zombie,747,211413,19 +115448,,54900,142854,0 +115449,Mickey Stranger,69717,1747845,10 +115450,Denise de Frontiac,10910,85346,12 +115451,Friedrich,19996,85418,8 +115452,London Busbee,256962,95136,4 +115453,Mike - Monteray Tavern Porter,31899,34280,19 +115454,Guard,186869,1504087,9 +115455,,408550,1658133,5 +115456,Judge Black,32610,30002,3 +115457,Barbara,58790,160273,5 +115458,San-Wol,385261,93996,5 +115459,Ana,44282,1279654,5 +115460,Mr. Payton,258255,43902,6 +115461,Dinner Guest,418437,1177469,16 +115462,Mara,2966,29091,1 +115463,Laurie Roberts,4982,17832,13 +115464,Linda,99859,1487246,14 +115465,Justice of the Geese,54491,19545,18 +115466,German,79234,240563,0 +115467,Henry Burroughs,4983,40185,3 +115468,Vennad Käärid,321303,1396222,3 +115469,Fike's mother,63538,109117,6 +115470,Animal Instincts Detective,9870,23532,19 +115471,Detective Danton,41505,127068,8 +115472,Boy in Hospital,41171,1355601,48 +115473,Jacqueline Reynolds,84105,131009,11 +115474,Siya Agasthi (as Tena Desae),157129,1447782,3 +115475,,340961,581662,15 +115476,Waitress,31428,1019060,13 +115477,Shin (voice),105231,1037692,2 +115478,Finnegan,228066,1014931,7 +115479,Marga Himmler (voice),267310,15122,2 +115480,Polycarp,81030,14980,6 +115481,Salustiano,40859,8600,6 +115482,Sun-yi's Mom,128246,93996,4 +115483,Father Flood,167073,388,3 +115484,Quinn,17082,1196099,9 +115485,Betty,188468,19328,2 +115486,Gomez,435,14331,18 +115487,Shanghai Lily,875,2896,0 +115488,Chamberlain,70090,557945,8 +115489,La grand-mère,340616,11217,2 +115490,,8088,102229,24 +115491,District Nurse,86979,197235,7 +115492,,78450,1559776,8 +115493,"Mogila, Chief ensign RN",271234,1322770,3 +115494,Detective Chan Chun,19528,70106,0 +115495,Bintou,203715,934299,1 +115496,Stephanie's Party Guest,31993,120217,14 +115497,Parminder,218784,929511,23 +115498,John,222339,78912,1 +115499,Miss Alden,39130,339617,15 +115500,Charles Z. Culloran,17640,3338,6 +115501,Hip Chick,293861,1355798,2 +115502,Samantha,24797,39126,4 +115503,Fat Carl,24163,1191766,8 +115504,Tennis Boy,1717,18797,10 +115505,la concierge,70119,1273511,10 +115506,Miss Piggy's Receptionist,64328,5081,2 +115507,Bruno Baldini,5481,26700,1 +115508,Mrs. Arbuthnot,111582,1015322,10 +115509,Vanessa Martinez,184098,210665,19 +115510,Willy Hidaka,27045,1546927,9 +115511,Joe DeRita,85411,78567,7 +115512,Commandant Delcour,238781,77860,3 +115513,Gordon Walker,28290,857,10 +115514,Bertie's No. 1 Man,111302,80546,6 +115515,Rakesh,276935,84957,1 +115516,Joe Hayes,40761,87750,2 +115517,"John Carter, Assistant Secretary of War",53860,17756,5 +115518,Momma B,224885,3713,2 +115519,Gazelle (voice),8355,19278,18 +115520,Himself,11024,1212818,10 +115521,Don Silvio,146596,1124445,2 +115522,Dr. Clyde L. Star,175171,34317,11 +115523,Isabelle,1917,19933,0 +115524,Carriage Driver,59704,229670,14 +115525,ACP Ranjeet Singh,276846,691,2 +115526,Jack Kidman,75623,135993,7 +115527,Mr. Lloyd,22387,13976,21 +115528,Beauty Shop Operator,188468,106584,14 +115529,Der junge Polizist,10458,25848,3 +115530,Maggie,280092,89109,8 +115531,Carter,11376,240260,10 +115532,Paparazzi #2,258509,1370998,26 +115533,Lilly Blake,43075,81293,6 +115534,Trevor - 17 Years Old,302699,1729076,22 +115535,Club Goer,77930,1784648,54 +115536,Watchman,31022,1681779,3 +115537,(voice),126319,89042,23 +115538,Katherine,229182,2206,0 +115539,SS Cadet Instructor,11248,10849,16 +115540,Spectator,406052,1676156,14 +115541,Director,369406,1872417,25 +115542,George - Chauffeur (uncredited),10178,131448,30 +115543,Cal,10710,110931,12 +115544,Blagoje Marjanovic 'Mosa',57419,226140,1 +115545,,292830,85035,1 +115546,Man in Auditorium,82781,6753,2 +115547,Keegan,46883,983343,5 +115548,Smiley Joe Bishop,42298,34008,17 +115549,'Grandpop' Logan,335498,17753,2 +115550,Schottischer Tourist,328032,1329,14 +115551,Guido,116437,1078035,0 +115552,Syracuse Scout (1989),16996,1579399,33 +115553,Bar Patron,140607,4318,62 +115554,Russel,70586,155934,8 +115555,Quentin,19610,84918,6 +115556,Casting Director,25890,1324,5 +115557,Ludovic,92424,230401,7 +115558,Елена,332512,1290965,2 +115559,Woman at Party,369885,1651377,42 +115560,Chief Burton,391375,7004,4 +115561,Carol Brown,49609,64838,1 +115562,Maggie,71120,69130,1 +115563,Bee (voice),5559,52141,23 +115564,Herself (Little Egypt),103732,1318684,3 +115565,Duke,187516,2097,3 +115566,Arthur Babcock,45335,10596,5 +115567,Amish Man,74549,1167029,20 +115568,Engineer,115109,111991,31 +115569,Brother Li,41378,240158,3 +115570,Thomas,39415,1625135,12 +115571,Summer,214086,76999,3 +115572,Detective Norden,18472,107811,11 +115573,Simon,377691,82537,3 +115574,Dr. Singe,24749,11064,4 +115575,Wendy McKim,43346,118239,0 +115576,Captain Pterro,330459,1229255,33 +115577,,402612,89640,10 +115578,Mrs. Laura McCoy,59828,100779,9 +115579,Sandra,38282,74115,7 +115580,Corrections Officer,336011,1560253,23 +115581,Encarna,299165,25221,5 +115582,Agent Brinkman,73501,1539,11 +115583,,76202,4521,3 +115584,Spectre,65674,27393,8 +115585,Terkel,10797,66843,0 +115586,Acting Student (uncredited),31913,170830,22 +115587,Mother in Law,1579,4364,5 +115588,Nikolai Zaleshoff,34944,2094,3 +115589,Michael Allen,135713,1103651,1 +115590,Grace,17046,72316,7 +115591,The Mayor,38787,10525,2 +115592,Андрей Пчёлка,143073,1190055,2 +115593,Interviewer,30478,1376318,10 +115594,Brandt,72710,1273239,23 +115595,,57011,227616,1 +115596,Billy 'Shiner' Simpson,28943,3895,0 +115597,,315252,150468,3 +115598,Prison Warden,36335,1196677,8 +115599,Antonov,390880,224489,3 +115600,Second girl in Holland (as Greta Yoltz),110887,1527310,14 +115601,Field Reporter,168259,1880151,43 +115602,Postmistress,22404,95631,11 +115603,Commissioner Alberto Berado,39943,85361,8 +115604,The Interviewer,16378,10593,10 +115605,Self/Dionysus,98048,97561,0 +115606,,293092,1364476,5 +115607,Lectora de labios (Lip Reader),8088,2759,9 +115608,Himself,76494,1212446,22 +115609,Lily Portman,286521,38024,3 +115610,Scary Godmother / Ruby (voice),48567,74360,9 +115611,Mia (23 Years Old),87516,95358,16 +115612,Two Blades,15067,141543,6 +115613,Ajay,356482,113693,4 +115614,Ben Jacobs,369894,123813,4 +115615,Harry Aldrich,18495,18156,1 +115616,Johan Falk,141267,92403,0 +115617,Kai Koss,24821,7742,6 +115618,Narrator - Haiti (voice),173205,112,0 +115619,Samantha,317214,84613,7 +115620,Agent Damage Report,12279,1595131,30 +115621,Bum (uncredited),28668,97999,23 +115622,Sergeant Burke,8954,20562,9 +115623,Lorraine Baker,11007,5958,4 +115624,Diego,100270,224733,7 +115625,Asb,21780,1013950,11 +115626,,37959,70626,4 +115627,Faith,11131,26071,2 +115628,Receptionist,18998,90131,18 +115629,Farmer's Daughter 1,13849,73355,13 +115630,Johnny Christopher,74911,6937,0 +115631,Businessman in 'Carmen',47959,1426033,20 +115632,Ray,20312,1062,3 +115633,Аристарх Растопчин,57770,230280,7 +115634,Ella,97794,932252,2 +115635,Le notaire,39413,145163,15 +115636,Harri,33481,110756,2 +115637,Justin,194722,85139,4 +115638,Mr Cheung,2463,25246,1 +115639,Cody,24939,74302,1 +115640,,15776,3884,7 +115641,Rodolfo,12412,126988,21 +115642,Taylor,229594,3034,1 +115643,Kyle Williams,22894,8169,6 +115644,Countess Esmeralda,19725,6638,2 +115645,Rui Ninomiya,56232,84046,4 +115646,Father Higgins,18684,83827,6 +115647,Steve Sawyer,46830,66645,10 +115648,Nightclub Patron,228647,164809,16 +115649,,126250,1119435,15 +115650,Roy King,8988,8785,6 +115651,Tom Greenleaf,1586,218899,7 +115652,Niemeyer,72054,585,9 +115653,Mrs. Newell,14750,149550,17 +115654,Aunt Lidia,113178,11782,3 +115655,Jarvis (butler),162862,30262,8 +115656,Karen,64936,1117288,2 +115657,Barry X. Brady,45679,14452,5 +115658,Narrator,56143,8515,2 +115659,Detective,14589,975306,51 +115660,George Talbot,2687,21731,3 +115661,British Army Officer (uncredited),43497,1230014,18 +115662,Connie Vaughn,11358,31391,8 +115663,Walter Godfrey,27629,1944,18 +115664,Film Executive,214756,1759635,73 +115665,Park Kim,336890,1903968,17 +115666,Bob Bernard,52867,109945,3 +115667,Logger,335970,1717911,26 +115668,Dan,67509,1051673,7 +115669,Judy Grant,337789,165636,1 +115670,Germ Junior,260528,1004846,4 +115671,Judy Montgomery,176867,1000941,5 +115672,Girl (uncredited),65488,1636752,14 +115673,Chris,49853,1160767,16 +115674,The Graverobber,3145,30766,5 +115675,Ted,300654,26852,6 +115676,Esther,21208,77517,2 +115677,Reporter,71503,563099,19 +115678,Shy Screenwriter,310593,1474114,19 +115679,,152948,9611,2 +115680,Droid,76757,1218685,50 +115681,,2143,132929,51 +115682,Tim,38303,1215836,10 +115683,AVM Saravanan,69404,545009,9 +115684,Missy,333367,69225,5 +115685,Leslie Ann Walker,31263,150227,2 +115686,Charly Matteï 20 ans,37645,228718,36 +115687,Janik's Sentry,177677,1529494,21 +115688,Megan,40221,6714,14 +115689,Dr. Cas Pepper,230428,3037,1 +115690,Ying Chang,108665,930251,5 +115691,Emily Fitzjohn,43016,80255,2 +115692,Mona,378446,68816,1 +115693,Hippie (uncredited),47342,1837872,30 +115694,Sheriff,116232,80569,17 +115695,Mr. Moon,76203,120253,23 +115696,Henry Fletcher (as Jason Robards),255388,100078,8 +115697,Billy,47638,2176,0 +115698,Issachar,24272,140572,11 +115699,On Camera Musician,198277,1424211,41 +115700,Tracey Hughes,384682,81364,1 +115701,Helga Ulmann,20126,9766,3 +115702,Kilroy,102362,565426,6 +115703,Anchor 2,270654,1425204,25 +115704,Berg-Ejvind,70800,8741,0 +115705,Hitchhiker Dodge,80473,6575,0 +115706,El Caribe Party Patron #3,2001,1781715,55 +115707,Antoine,155128,32377,4 +115708,Sgt. Cordero,56527,155698,0 +115709,Meir Wolf,74666,1163018,6 +115710,Nick,1662,1241,4 +115711,'French' Dandy / Desk clerk,53403,29274,4 +115712,. General Buck,123961,14505,8 +115713,Kati von Kraj,8316,139161,16 +115714,,285935,1766385,5 +115715,Emily Bung,5060,40949,5 +115716,Diana Mitchell,16444,104300,2 +115717,Mike Paddock,15935,75123,1 +115718,Les chefs des 'girls',262454,114344,6 +115719,Daphne,194722,552525,9 +115720,Jake Fallon,38202,51576,0 +115721,Gary Scott,24150,3901,24 +115722,Homeless Woman,25330,29051,6 +115723,Fake Daughter At Airport (Guest Appearance),38022,110102,9 +115724,Gösta,76864,131493,13 +115725,Radio operator,367006,1532480,9 +115726,Trife,13185,78062,0 +115727,Sir David Conway,27112,97244,4 +115728,Sunny,20430,106708,11 +115729,Henry taylor,44388,18313,6 +115730,Todd,385372,92619,3 +115731,Fernando,193610,979216,10 +115732,Winetta,47956,81897,5 +115733,Koichi Kido,127372,93892,7 +115734,Kevin Mulville,84336,73287,6 +115735,,162899,1144873,5 +115736,Lady Clarisse de Cagliostro,15371,613,5 +115737,North Korean Army Sergeant 2,387845,1591377,15 +115738,Jottie Tucker,45219,1550296,12 +115739,Military Submarine Official,246655,83029,59 +115740,Cab Driver,1724,53577,29 +115741,Detective Vitale,4413,18070,2 +115742,Death (uncredited),22792,206,0 +115743,Wu Gong,67021,240174,2 +115744,Dr. Jonas Carson,20473,85199,1 +115745,青年大雄,265712,1521540,22 +115746,Niran,49597,76478,4 +115747,Jeff Milton,46570,76238,5 +115748,Ned Gold,16996,539,8 +115749,Dr. Strobel,25684,25808,7 +115750,,1661,7556,10 +115751,Nurse (uncredited),15092,1895703,78 +115752,Taxi Driver #1 (uncredited),92848,33179,11 +115753,Chie-tako,125513,9705,8 +115754,Ganpat Ramchandra Belwalkar,378227,84956,1 +115755,Mr Fu,117506,1618041,14 +115756,Yun Jae-cheol,21708,87790,1 +115757,Borut Kadunc - Bomba,152861,1133424,2 +115758,,27276,551850,41 +115759,Officer,35392,114232,10 +115760,Young Girl,384682,1867726,32 +115761,Edna's Fiancé / Second Thief,30982,21305,4 +115762,Lioness (Akam),48180,140019,14 +115763,Umbuto,102841,31366,14 +115764,Iris (voice),115223,934292,7 +115765,Grace Harrington,53209,9093,5 +115766,Ricky,82350,1892907,6 +115767,Kassie Robideaux,24411,1084848,12 +115768,Herself,200655,86395,0 +115769,la reine rouge,5590,34595,5 +115770,Lee Michaels,42168,124131,4 +115771,Robert,76203,39390,10 +115772,Nana,77877,10401,1 +115773,John Clancy,339527,4173,0 +115774,Jeff,33360,24495,2 +115775,Jean-Jean,52369,145299,5 +115776,Wendy,13763,34061,7 +115777,'Curly',197737,133342,14 +115778,Lisa,277237,57578,5 +115779,Video Store Clerk,16358,20405,11 +115780,Tom Benedict,58076,14029,4 +115781,Emelie,329010,33397,0 +115782,Halley Brandon,84105,505710,1 +115783,Durwood Cable,11329,52374,5 +115784,Doug,11795,114939,7 +115785,Science Team Member #1,329865,1123270,37 +115786,Nadine,42420,128111,2 +115787,Earl Frank,23397,588,4 +115788,James Stephen,15163,55467,12 +115789,Spanners Watson,17303,81585,2 +115790,Timmy,43656,139759,11 +115791,Man in Stadium,227306,1361564,51 +115792,Det. Bernie Callo,5289,12055,8 +115793,Pikku Myy,293271,1364783,7 +115794,Finch,153163,85990,18 +115795,Tien Yeng Yen,19528,1620912,12 +115796,Linnux (voice),333667,59258,3 +115797,"Melody ""Jupiter Music"" Malloy",23853,55422,1 +115798,Josh Gibson,74942,34,1 +115799,Святой Валентин,47812,139460,5 +115800,Junkie,403429,1640626,9 +115801,Court Attendee,339994,1593370,23 +115802,Mayor Shelby,384450,591531,7 +115803,"Ramon, crewman",125666,85490,3 +115804,Natasha Romanoff / Black Widow (voice),169934,186341,6 +115805,Hendricks,41574,1205153,1 +115806,Orphanage Kid,5123,1781823,33 +115807,Osiris,205584,29092,8 +115808,Darcie Chapman,440597,1753914,11 +115809,Julia Abramov,26116,94695,3 +115810,Abbu,43464,30272,4 +115811,Caitlyn Crisp,363807,892734,1 +115812,Al Mercer,37911,40201,0 +115813,Ellen Okin,11338,69056,2 +115814,Voice Cast,222935,36821,45 +115815,Mr. Frank,76101,41042,1 +115816,,288977,4783,11 +115817,Charles,162458,1153830,4 +115818,Judge Cox,103432,84327,7 +115819,Irene,19661,153471,13 +115820,"Himself, Cameo Appearance (uncredited)",32552,13566,38 +115821,Police Officer,336011,1560252,22 +115822,Baggage Man,55604,1016646,43 +115823,Frank Kavanaugh,24619,5576,0 +115824,Becker,18638,84760,11 +115825,Édith,11399,19936,8 +115826,Emily Carson,175386,84659,2 +115827,Himself,23319,781,10 +115828,Bing Crosby,172413,59196,3 +115829,Ed,125943,540,0 +115830,Air Force Sergeant,43009,145535,11 +115831,Prince,58414,65197,3 +115832,Hector,280092,1317566,20 +115833,Minerva Clay,43525,11498,8 +115834,Davidson,114982,41207,6 +115835,Tina,12763,60034,5 +115836,Donnie McAndrew,181753,20495,2 +115837,Himself,128140,1161075,0 +115838,Rocco,3556,32787,3 +115839,Aryan Brotherhood inmate,10425,65131,21 +115840,Bianca,48254,120116,9 +115841,Chernung,43209,49609,3 +115842,Bears Bugs (voice),156389,31771,0 +115843,George Warbeck,29542,100461,4 +115844,Alexei Karenin,96724,9642,1 +115845,Cassie,42023,2958,5 +115846,Chloe (voice),328111,25703,4 +115847,Bike Teen #1,272878,1683755,26 +115848,Leo,277190,225048,1 +115849,Pretty Blonde,273481,1260554,17 +115850,Aphrodite Girl,32657,127127,27 +115851,Lidewij Vliegenthart,222935,133931,6 +115852,Busby Berkeley,139718,95293,16 +115853,Joanna,186606,1750940,26 +115854,Landestrainer Hessen,233639,1279897,10 +115855,Sharice,86838,109560,13 +115856,Samuel,288980,9777,1 +115857,,17985,1439599,21 +115858,Cantinflas,261101,59129,1 +115859,Bank Teller,34598,1497676,12 +115860,Victim #2,295723,1418246,18 +115861,Iwomura,62472,17540,6 +115862,Noelle,277688,1030995,15 +115863,Hotel Doorman,293863,70176,21 +115864,,13653,1816294,9 +115865,Álvaro Costa,12221,1159861,7 +115866,Betty,14833,22252,6 +115867,Captain of Guards,48156,1338752,8 +115868,Sheriff Emery,14254,27111,5 +115869,Bar Man (Red Beard's Friend),76170,1320015,15 +115870,Nurse #1,46695,1185418,8 +115871,Mike,343173,1647127,11 +115872,Bookmaker,35025,113611,16 +115873,Connie's boyfriend,16523,103,6 +115874,Picone,107052,1292214,19 +115875,Bill Firpo,23719,2963,0 +115876,Anne,171213,234797,6 +115877,Dr. Max Sporum,47758,2435,1 +115878,Kelly,58763,1198809,1 +115879,Clubman (as Lionel Watts),35852,114838,12 +115880,"Bud, Bus #16 Driver",250332,385470,63 +115881,Sallah Shabati,116762,10501,9 +115882,Momo à 30 ans,337,6557,12 +115883,Harper,63493,550317,7 +115884,Phyllis McKinley,274060,133227,7 +115885,Marianne,4516,37765,9 +115886,Plant Detective (uncredited),15794,1595378,58 +115887,Ted Wheetly,37708,80407,5 +115888,Carlos' partner / Sócio de Carlos,206563,1372457,13 +115889,Hildegard,53256,10255,23 +115890,Kanda,1251,33524,11 +115891,Narrator (voice),105325,35219,2 +115892,Jesse,339342,1023428,2 +115893,Wôlney,117534,55824,8 +115894,"Bill, Himself",125736,981413,6 +115895,Record Hop Dancer,2976,1752723,85 +115896,Virgil,51290,143768,0 +115897,,220005,1204943,4 +115898,Yonabaru,90351,73428,7 +115899,Dave,64720,81665,16 +115900,Gambler,21449,134264,9 +115901,Bobby Baker,72096,1139752,45 +115902,Jilet,332534,70578,7 +115903,eversti Oskari Tossavainen,55763,222324,2 +115904,,410259,1467388,4 +115905,Pop,203819,190826,5 +115906,,418378,1036368,7 +115907,Eva,128089,5644,0 +115908,Rinaldi,413998,17839,4 +115909,Lisa,18836,10431,1 +115910,Benemerita,58013,120322,4 +115911,Timmy Turner,146712,3272,0 +115912,Kelly's grandmother,49199,1178817,12 +115913,Ms. Glenda,343795,1386122,10 +115914,Mom (voice),28275,56881,4 +115915,Elke,302118,79449,3 +115916,Young David,52044,231439,0 +115917,Rose,78177,144530,17 +115918,Darth Vader (voice),330459,15152,13 +115919,Hausmeister,75969,36755,46 +115920,Jed Harper,110980,227460,12 +115921,Marco,28665,206517,5 +115922,Alex,28997,609937,1 +115923,Father Thomas Roth,36375,13578,0 +115924,Lise,378607,1566571,2 +115925,Ming Li Fu,35026,1653243,20 +115926,Jillian Morris,258193,1224170,3 +115927,Cardinal Del Monte,159810,31384,3 +115928,Mrs. Petit,56558,967133,54 +115929,Rosie Rivers,115565,3141,3 +115930,The Judge,51358,89014,6 +115931,(voice) (uncredited),10193,86007,43 +115932,,356486,1522125,6 +115933,"Vincent, le ministre",63717,237780,0 +115934,Mameha,1904,1620,6 +115935,Biggs,15022,67453,13 +115936,Lorraine,52894,101902,4 +115937,Makoto Sunakawa,356156,1470127,2 +115938,Captain Jefferson Addis,27105,19111,4 +115939,Elizabeth Brown,63260,1089964,6 +115940,Prostituierte,130739,1100362,26 +115941,Richard,240832,90060,5 +115942,Gamma (voice),24589,7960,2 +115943,Mr. Clay,3580,1356750,11 +115944,Himself - Primal Scream,64780,1641685,2 +115945,Principal Brill,342472,1257818,13 +115946,Katy,10760,55092,11 +115947,Himself,40873,1487,4 +115948,Karl,28943,53917,4 +115949,Vormiston Alma,286267,931475,2 +115950,Carabiniere,52914,1174520,20 +115951,TV Reporter,26469,1510795,9 +115952,Indian,105059,1683138,38 +115953,Diana 'T.N.T.' Jackson (as Jeanne Bell),85673,2575,0 +115954,Zoe,95504,111988,3 +115955,Dave Webster,105059,1680236,13 +115956,Embele,10760,66541,13 +115957,Ellie Layton,6933,42160,11 +115958,George,407448,1692050,44 +115959,Yancey Huggins,70192,7685,3 +115960,Holz (gardener),44502,1321350,4 +115961,La chanteuse,2002,130712,8 +115962,Shin / Shun (voice),79707,19588,2 +115963,Ramanna (Raman),393562,85047,0 +115964,Himself,40863,134686,2 +115965,Dante,51250,53572,8 +115966,Betty Gallop,120977,1368291,8 +115967,,27276,551844,35 +115968,Inès,85735,1177120,14 +115969,Herself,191502,6941,4 +115970,Doctor (uncredited),86838,970238,31 +115971,Hysterical Woman,32657,25946,21 +115972,,23898,1464532,2 +115973,Tommy Karlsson,15179,232400,8 +115974,Lenka,84030,223442,9 +115975,Chief Paj Mab,100814,84230,4 +115976,Patient,246127,1508655,14 +115977,Dr. Camare,64807,156874,15 +115978,Vermieter,14804,1363015,19 +115979,Graham,126712,52176,9 +115980,Singer,32610,1467396,24 +115981,Voix Anonymous26 (voice),98277,22165,34 +115982,Newsboy,3937,34185,12 +115983,Frank,13196,5472,2 +115984,Nellie,121636,7167,4 +115985,Angela Dalton,13842,11164,5 +115986,Coach Attendant,109716,119542,49 +115987,Steve Hanson,23964,40922,14 +115988,Hannah,364410,1060671,0 +115989,Pump Iron,51036,1879479,32 +115990,,255772,1122044,10 +115991,Barman Cha Cha Boom,416445,1790387,2 +115992,John Conyers Jr.,407448,10964,20 +115993,Ho Ka-On's inner personality,14016,105421,11 +115994,Passenger,338676,588323,12 +115995,Mary,73873,33394,8 +115996,Screaming Girl,365942,129713,16 +115997,Barfly,105059,1507184,29 +115998,"M. Bérard, le père de Pierre",3423,35050,12 +115999,Ravi Patel (18/19 years),87827,1133849,8 +116000,Carla Frye,261273,1261375,2 +116001,,33558,71200,2 +116002,Gretchen,14457,87158,2 +116003,Michaelangelo,147939,1127745,1 +116004,Lucian Randall,74437,571940,7 +116005,Badri Prasad,170838,174606,7 +116006,Young Hiro,870,13256,7 +116007,,8079,616995,24 +116008,,340176,1711407,16 +116009,,205864,122428,1 +116010,Mrs. Townsend,92848,940166,10 +116011,Venustiano,183827,1096850,9 +116012,Phuchit - age 14,13436,1656874,11 +116013,Simon Garden,32577,4581,0 +116014,Simen,56937,74721,4 +116015,Cop,104427,30196,14 +116016,Amelia Brooks,277687,5151,3 +116017,Himself,417870,972671,34 +116018,Bernardo,60173,36218,1 +116019,,34181,579200,12 +116020,Clenard Childress Jr.,235450,1270744,1 +116021,Shireen,257214,1278741,8 +116022,"Muten, Roshi",38594,122663,20 +116023,Dumas (as Gérard Zimmerman),84823,21173,1 +116024,Stage Manager (uncredited),29094,33698,13 +116025,Weird Old Man's Mistress,283995,1806601,33 +116026,,68192,70551,3 +116027,Bird Clan Leader,310135,6064,36 +116028,Hans Backovic,327389,1217006,18 +116029,Quentin,206284,56676,4 +116030,Crowder,5183,41958,6 +116031,Soldier 1,255160,1424687,36 +116032,Charlotte Halsted,71700,203630,3 +116033,Pamela Gibson,94468,27964,1 +116034,Adrian Wang,47405,1184823,0 +116035,Lui-même (archive footage),8930,225582,3 +116036,Sonja,175331,1157935,11 +116037,Sabina Spielrein,48231,116,0 +116038,Colm Donnelly,312831,73288,2 +116039,Bridesmaid (uncredited),242042,1655062,45 +116040,Albert,58244,44150,5 +116041,Wet T-Shirt Contestant (uncredited),83896,1064041,14 +116042,French critic,79526,587382,3 +116043,Kid at Party,96936,116088,26 +116044,Airport Passenger,70585,556436,8 +116045,Sally Tever,68976,39552,10 +116046,Duke,94009,120462,12 +116047,Leon,170603,74354,10 +116048,Simmons,57680,77522,15 +116049,David North / Agent Zero,2080,82093,9 +116050,Sam,13058,76242,0 +116051,Security B,7483,20044,8 +116052,Marie Vallières de Beaumont,37779,8293,0 +116053,,182843,12259,0 +116054,Louis B. Mayer,2567,4171,16 +116055,Susie,42499,97929,2 +116056,Shaman Murtagh,44680,82646,1 +116057,Matsui,163,1923,14 +116058,Lee Walker,92848,990654,8 +116059,Green Witch,55347,235849,10 +116060,"(segment ""Kurokami"")",30959,552644,9 +116061,"Sári, Slaughterhouse Worker",436343,1715630,10 +116062,Stormtrooper,330459,1728984,94 +116063,Divina,29054,98438,13 +116064,Ginette - La moglie di Glauco,56693,53768,1 +116065,Nico,172457,1155086,2 +116066,Nino Rappi,108535,30832,8 +116067,Johnny C. MacElroy,14505,175630,3 +116068,Mikkel,2061,297106,13 +116069,Jegorka,14489,141642,5 +116070,Nurse,115109,148565,32 +116071,Badi Basim,354287,122280,7 +116072,Leena - as child,51423,144137,2 +116073,Emily Micallef,283384,9560,3 +116074,Dr. James G. Kent,25551,26660,5 +116075,Lena Braake,41619,19234,0 +116076,Oblio's Mother (voice),23544,90301,5 +116077,J.J. Montague,75564,76501,2 +116078,Martha Matthews,218582,88461,8 +116079,Far,15776,1563,1 +116080,Michael,238593,1325715,3 +116081,Lung Chi-Keung / CK Long,127329,62410,1 +116082,Stevie Wayne,791,11826,2 +116083,Maurice Braithwaite,18774,13329,4 +116084,Malvina,81787,27163,1 +116085,Le maître de cérémonie,6077,47796,2 +116086,Farmer,291865,188426,3 +116087,Marlin (voice),127380,13,1 +116088,Stella,303542,1385644,3 +116089,Tony Laredo,35404,89982,5 +116090,Natalie Drummer,296523,51072,3 +116091,Thomas Hogg,332283,1674731,10 +116092,Janine,253154,34070,5 +116093,Chef mécanicien,86727,538228,5 +116094,Elvis,15073,109834,5 +116095,Frank,289723,1218174,4 +116096,Pi Patel (11 / 12 Years),87827,935504,2 +116097,Thandi,15907,111177,2 +116098,Simon O'Reily,15486,57829,1 +116099,Helen,18072,11110,14 +116100,Lt. Cmdr. Phillip Francis Queeg,132961,69010,2 +116101,Harrison,131039,1282754,11 +116102,,48495,80180,3 +116103,le prince charmant,5590,20030,1 +116104,Col. Buck Rogers,23331,33359,0 +116105,Mario Machado,6341,44050,12 +116106,Kovacs,72313,89527,5 +116107,Sara,23619,56844,1 +116108,Eric,403330,1223703,7 +116109,Spencer,102222,154440,9 +116110,Cora,118134,96054,17 +116111,Mike's Gang Member,90616,1740110,40 +116112,Rez,12279,64775,12 +116113,Father Minnell,57683,6564,7 +116114,Young Libby,49815,160405,6 +116115,Bilal,38021,377743,8 +116116,,264264,124992,10 +116117,Minnow Hayes,41556,141687,3 +116118,Hartigan,189,62,5 +116119,,246417,1602401,1 +116120,Barner,26881,42824,13 +116121,Veselinov stric,67633,38001,5 +116122,,197057,1118279,3 +116123,Arthur,72898,24299,2 +116124,Miran Bastürk,332759,520561,8 +116125,Ásta,87229,67811,4 +116126,Won Ming,38034,1178957,13 +116127,Other Council Guard,1271,70786,54 +116128,Himself,312221,1746888,43 +116129,,317246,943480,8 +116130,Widow Jones,94570,1090546,0 +116131,Jay,270654,143427,35 +116132,Cousin Charlotte,157898,1171903,37 +116133,Sommelier,397422,181876,19 +116134,Jim,377428,1237422,12 +116135,,79781,100653,2 +116136,López,79775,6774,3 +116137,Ivan Kolar - Iva,259728,5725,1 +116138,Himself (voice),110392,10722,0 +116139,Christina,3104,15645,1 +116140,,1421,1723440,27 +116141,Officer Jack,354979,63204,23 +116142,,108535,27390,30 +116143,Olson (voice),269650,219752,11 +116144,Slug O'Donnell,118134,74875,3 +116145,Ed,153161,956518,44 +116146,Bar Patron,360592,1512190,16 +116147,Samantha,157919,85756,9 +116148,Rabatteur,383064,236643,5 +116149,Rubio,41115,125499,7 +116150,TV Journalist,13802,3550,12 +116151,le ministre,64481,35046,8 +116152,Herself,12994,43927,7 +116153,Harry Patterson,408616,5049,4 +116154,Jimmy Hawkins,188507,929136,5 +116155,Detective lieutenant,39779,98450,14 +116156,Karen,384737,4174,2 +116157,Cyber Beauty,76757,1394341,41 +116158,le maire,39978,57541,9 +116159,Ekspeditrise,10119,63751,16 +116160,Padre,26323,88672,4 +116161,John,38850,6860,6 +116162,Sydney,24123,124312,11 +116163,Ma Deok-Soo,435366,123820,4 +116164,Joan McNamara,262528,539795,4 +116165,Gavin Rilley,75090,49915,14 +116166,Melissa,19551,146832,7 +116167,Officer Dickerson,73700,56112,8 +116168,Himself,269797,1323,8 +116169,Graham,31773,96721,10 +116170,,51285,120243,4 +116171,Nori (Voice),285733,94481,2 +116172,Orazio,79506,45036,2 +116173,Poe,11577,41269,10 +116174,Nightclub patron,43113,1075447,54 +116175,Jake Thorne,36983,11357,0 +116176,Joanne,10176,64092,1 +116177,Social Worker,4982,143237,39 +116178,Henchman Horan (uncredited),91961,96058,13 +116179,,11534,71977,3 +116180,Major Lenard,875,13346,8 +116181,Jen,42684,128631,8 +116182,,294483,1586915,16 +116183,Rafa,80280,141018,3 +116184,Maxine Manning,25407,93718,1 +116185,Queen Mother,3478,32060,6 +116186,Doctor,229297,7278,30 +116187,Agent Reichert,334527,1865496,10 +116188,The Daze Drummer,23367,95398,45 +116189,Angel-A,11227,57121,1 +116190,Courtney,37269,117308,2 +116191,Félix,49084,544116,4 +116192,Loomis-Fargo Shift Supervisor (uncredited),213681,1370999,63 +116193,Dale Elwell,26323,20365,2 +116194,Lúcia Helena,227932,228054,6 +116195,Valdemar,16356,80406,2 +116196,Man in Black Stunt Actor,40990,1567896,17 +116197,Ann,110909,3127,0 +116198,Busboy,1586,1321651,13 +116199,Prime Minister,177677,2441,8 +116200,FBI Agent (uncredited),213681,1771588,61 +116201,Girl in Library,15671,1446617,10 +116202,Alfred Pennyworth (voice),123025,159572,19 +116203,Henri Marchand,15468,24422,4 +116204,"Dr. S.J. 'Walter' Carew, Hospital Administrator",153165,33033,7 +116205,John H. Watson,342588,1253008,1 +116206,Randy,27561,60973,5 +116207,Sacha,4948,35214,10 +116208,Malagrida,65898,24814,0 +116209,Enrico Giusti,369245,56843,1 +116210,Eun-Soo,25597,93994,0 +116211,Mrs. Flimsey,35026,981192,15 +116212,Bobby,32080,175922,13 +116213,Srul Katz,369697,5587,8 +116214,Himself,173467,3267,18 +116215,Bob Potter,103902,42393,2 +116216,Alfredo als Kind,3870,34042,16 +116217,Lauri,468707,1365271,3 +116218,Sam Philips,25834,26667,1 +116219,Monsieur Pouchonnaud,18381,227604,8 +116220,Oki,86261,127720,0 +116221,Archie,146238,3218,11 +116222,Violent Man,108664,1044768,4 +116223,Eugen Gauß,115023,5847,4 +116224,Carver,33272,110423,3 +116225,Maria,11056,5313,1 +116226,Arvid Øvrebø,336882,73548,4 +116227,Blane,59744,980378,11 +116228,Pargol,375012,230087,6 +116229,Bruno,57544,37574,1 +116230,Michelle,7547,52887,12 +116231,Alice Brent / Lily Conover,38964,83796,1 +116232,Marva Munson,5516,43853,1 +116233,Mollie (voice),815,15886,2 +116234,Theresa (as Ratanya Alda),27230,80135,15 +116235,Robber,32044,1405572,9 +116236,Wes,30402,126422,3 +116237,Darlin' Cleek,65599,543729,5 +116238,,52612,35970,5 +116239,Lisa Henson,31380,1337235,2 +116240,Karie Linbeck,93313,14357,4 +116241,Stage Passenger,147829,1272193,27 +116242,General Nick Fury,14611,56758,7 +116243,Esmeralda,190341,1580365,5 +116244,Monica,58013,1321064,6 +116245,Elizabeth Prideaux,11012,5320,8 +116246,Dr. Kapadia,76684,35759,8 +116247,Silas,75300,10135,9 +116248,Gerald Hobson,33673,124090,11 +116249,Dennis Lawrence,193177,19739,2 +116250,Killer #2,109610,98080,14 +116251,Mother,277687,174093,5 +116252,Foreign Correspondent,329865,1349338,40 +116253,Sergeant Bernard,108726,1412630,5 +116254,"Mr. Hillman, Race Marshal",20174,31265,4 +116255,Lia Picchioni,255456,1160687,2 +116256,Third Robber,11045,1538414,11 +116257,Sylvia,121824,20491,6 +116258,Emily,9843,59862,12 +116259,Emmadel Jones,27629,20391,1 +116260,Embassy Official,6687,23608,8 +116261,Sal,25973,26457,1 +116262,Kirkeministeren,56858,117961,11 +116263,Mme Morane,4191,35248,8 +116264,Julian Dowden,77949,1674638,18 +116265,Alyona,307649,1318905,2 +116266,Judge Wilson,99909,33025,33 +116267,Perkins (uncredited),186227,2099,37 +116268,Adele,53399,6588,5 +116269,Director of the Theater,77534,143693,1 +116270,Max,129518,1089971,5 +116271,Ammalia,3870,34039,13 +116272,Dr. Maki,43113,123381,4 +116273,Gruba,200796,1121111,6 +116274,Pearson,220674,7031,2 +116275,Registry Clerk,37926,106759,14 +116276,Father On Bus,381645,1860892,29 +116277,Reles,293167,1370567,13 +116278,Corteggiatore Valeriana,56804,128417,29 +116279,Leoncavallo Borghese,51104,2770,5 +116280,Country Band Member,228205,1549540,18 +116281,Moussa,82501,1125108,8 +116282,Radio Tokyo Man,227306,1179405,47 +116283,Lou,63681,3829,1 +116284,Jincey Baker,4809,39555,2 +116285,Ashby,52736,999924,4 +116286,Telephone Benefits Advisor,374473,93211,12 +116287,Giulio,60014,230348,1 +116288,Funeral Director,146216,102853,12 +116289,Trigger,27986,99347,2 +116290,John Hull Double,378441,1797412,25 +116291,Detective,43113,552175,50 +116292,Magnus,46930,137823,0 +116293,Moran,72638,2673,52 +116294,Lock Up Trooper,19995,986734,15 +116295,Zoe,61528,74440,14 +116296,,78450,1559773,5 +116297,Tuomas Mikael Saraste,18279,108476,1 +116298,Nuevo Alcalde,14430,69865,12 +116299,,130957,23137,15 +116300,Portia,34469,263259,13 +116301,Jimmy The Face,354979,1636770,19 +116302,Jeff,177085,6106,1 +116303,Eddie 'Golden Boy' Simpson,28943,12793,5 +116304,,295273,65354,8 +116305,Billy's Brother,24469,97505,6 +116306,Sally,84226,1418447,8 +116307,Salim,35623,1195668,4 +116308,Frau Kersten,82157,1207317,5 +116309,Receptionist,75101,1523991,10 +116310,Deacon Tull,134806,6701,8 +116311,Buzzy Kerbox,291,4328,6 +116312,Un mendiant,156326,11595,7 +116313,Mrs. Granek,42231,1359432,9 +116314,Michael 'California' Random,61581,15139,0 +116315,Travis,401060,995198,3 +116316,Deok-soo,313108,68903,1 +116317,Mère Vanessa,255913,1308642,20 +116318,Foster Lambert,49018,208524,7 +116319,Kalkantes (as Giampaolo Rosmino),81409,1211167,13 +116320,Halyme,44246,133818,3 +116321,Guitar,164558,1052140,6 +116322,Pam,141643,1115154,13 +116323,Luke Collins,228205,928572,1 +116324,General Benito Mesci,82368,33471,2 +116325,Andrew Hahn,13163,4602,5 +116326,,288694,19465,9 +116327,,195544,1862856,17 +116328,Actor in Show,132928,119549,39 +116329,Vince,190853,587142,7 +116330,Mrs. Cora Hallet,19971,65284,2 +116331,Maureen Gault,107250,5937,7 +116332,"Mr. Swanson, the Florist (as Houseley Stevenson Sr.)",36375,99217,12 +116333,jogger,59147,15918,5 +116334,Parkington,4893,13327,13 +116335,John Howard Barrington,41591,14502,0 +116336,Retainer,14537,1499600,10 +116337,Gary Smith,259695,1904,7 +116338,Mrs. Costello,4703,12969,4 +116339,Clarice,335145,52475,6 +116340,Ferlin (uncredited),69,1381675,37 +116341,Kitano,35856,9192,5 +116342,Lissy,24810,1818100,12 +116343,Johnny Hallyday,382589,35084,7 +116344,Zeynep,37570,141974,1 +116345,Dr. Bastien,50942,955362,13 +116346,Chinese Cook (uncredited),175027,1595022,14 +116347,Liliana,46920,27411,2 +116348,Tim (Segment 3),244117,154784,18 +116349,1st Lt. James Wilson,37468,117747,12 +116350,Mia,94352,1067237,0 +116351,Lucas,270400,1456035,8 +116352,Dr. Walter Carew,153169,33033,6 +116353,,176321,1444297,2 +116354,Dr. Baker,61550,161420,14 +116355,Wagon Train Leader,183825,116494,55 +116356,Brooke,311764,8256,3 +116357,Ana,317168,553146,8 +116358,Nico 1,161024,374448,1 +116359,,104810,239127,2 +116360,Stage Driver,197737,1095107,19 +116361,Infant Ricky,27414,1206250,38 +116362,Green Arrow / Oliver Queen (voice),411802,1217648,3 +116363,Clerk,11509,13003,7 +116364,Capt. H.A. Harris,26283,3338,6 +116365,Frank - Dad,20421,168292,6 +116366,Dr. Death,34518,77193,0 +116367,Alex Honk,80125,16808,0 +116368,Frank Grieves,301228,51120,0 +116369,Badly,338421,1629644,19 +116370,Pilot,10005,61862,19 +116371,Pastor,91186,1163187,13 +116372,TV Talkshow Host,355008,1533189,12 +116373,Himself,63472,1271,4 +116374,Caldwell,73194,8516,4 +116375,Catherine,403570,1667888,17 +116376,Futuristic NYPD,269173,1358596,20 +116377,Townswoman Gossip (uncredited),14615,1010448,37 +116378,James Tyler,36807,27540,5 +116379,Alice,70587,141526,0 +116380,Sheriff Jim Reston,25241,30785,4 +116381,Tim,56942,166258,4 +116382,David Bratcher,13358,22133,10 +116383,Greta Molina,239513,106800,7 +116384,Dr. Al Cade,26142,17695,8 +116385,Martha,337104,11902,6 +116386,Bob Sperry,67531,1150482,3 +116387,Bear,152748,82945,5 +116388,Jessie,147132,20373,0 +116389,Club Patron (uncredited),330947,1650328,59 +116390,Esther,76207,282150,1 +116391,Monika,200796,1182096,7 +116392,English Doctor,419192,1840223,4 +116393,Dawn Philipps,11161,68395,3 +116394,Sadie,17038,9599,8 +116395,Principal Thompson,82631,10182,2 +116396,,172008,1182599,15 +116397,Himself,53367,147981,7 +116398,Annika,141267,1485934,14 +116399,Malachi 'Mal' Johnson,11509,2047,3 +116400,Freeman,175027,5832,6 +116401,Keita Nakahara,41261,125944,3 +116402,Gordon,24986,148959,3 +116403,Terran,270654,1424248,10 +116404,Padre Mundo,79779,18469,2 +116405,Henri,382501,51325,3 +116406,Herself (archive footage),318224,121366,20 +116407,Lisbeth Flood,77650,19967,3 +116408,Nina,337758,226142,4 +116409,Security Officer #2,146216,1590341,57 +116410,Thug #1 / Officer Fitzgerald,297853,1790425,13 +116411,David Carver,36427,21246,4 +116412,Dr. Snodgrass,280617,1522146,9 +116413,Football Broadcaster (uncredited),13912,153277,22 +116414,Lena,76846,381674,1 +116415,Himself (takes bow at end),47703,9603,2 +116416,Ebenholtz,125926,1640,6 +116417,Velaga,75162,1563606,15 +116418,Hrysanthi,163018,1144912,4 +116419,Tino,41610,141557,7 +116420,Jim,3061,29989,4 +116421,Karl,3104,30421,6 +116422,Meng,17111,1629434,5 +116423,Sabine,2861,28611,0 +116424,Himself,4140,204499,8 +116425,Karen,44732,1396423,5 +116426,,294047,51999,2 +116427,Don Don,85265,1371193,13 +116428,Gail (voice),11795,1408166,12 +116429,Sheriff,86920,69249,5 +116430,,8079,109621,19 +116431,Gabe,313922,209513,7 +116432,The Reeker,14457,87159,8 +116433,Checco,374416,114366,0 +116434,The Spirit of the West (voice),44896,18082,7 +116435,Himself,15260,1527179,10 +116436,Buzz Aldrin,44578,47297,1 +116437,Earl Ramsdale,149515,1181154,3 +116438,Forest Ranger,185460,6916,2 +116439,Officer Reid,327528,76528,5 +116440,Blueprint Dancer,243683,1398191,81 +116441,Segawa,38010,87657,24 +116442,,47448,1481764,19 +116443,Valerie Mills,34231,61892,4 +116444,Redford,83666,1105079,9 +116445,Col. Holt,29398,14833,4 +116446,himself,52918,84384,0 +116447,Pug Face Crusher,29610,4520,16 +116448,Dr. Phillips,40807,61187,15 +116449,Inspektor Wald,2993,14502,4 +116450,Soo-Mi,10201,1212270,18 +116451,Burlington Pedestrian,356752,1841532,56 +116452,Blanche Maxwell,38027,14947,1 +116453,Dennis Simmons - Doorman (uncredited),43522,124875,78 +116454,Kaneko,98631,137028,7 +116455,Mr. Zabek,395982,588550,6 +116456,Japanese Athlete,227306,1394434,35 +116457,Betty (voice),286372,1352336,15 +116458,Virginia Mason,12591,53122,8 +116459,Papa,62688,559985,5 +116460,D.S. Clarke,240733,75060,6 +116461,Swiss Police Officer,240913,1410499,22 +116462,Capt. Strickland,29054,91537,5 +116463,Sumo Servant,17386,13006,11 +116464,,56095,1173741,7 +116465,Le fils Courge (voice),137193,25347,1 +116466,Paca,126550,56923,2 +116467,Menzies,29805,1240346,26 +116468,Sandra Jones,271404,1660452,13 +116469,Angel,413337,126242,6 +116470,Chula,38404,115077,6 +116471,Millie Lerner,3291,31507,3 +116472,Steve Coogan,63578,4581,0 +116473,Istwan,209248,47272,9 +116474,Young Man in Crowd,38027,16483,33 +116475,Ünal,4887,40022,5 +116476,Mad Dog Jiro,90351,239554,2 +116477,Dr. Broden,19661,153460,8 +116478,Jack / Jack Strong,18698,29642,1 +116479,Franc,5177,41904,2 +116480,Stevenson,336890,1357229,11 +116481,Mrs. Fred V.,4932,1755,9 +116482,Pop Morris - Stage Doorman,28044,120811,12 +116483,Ruby,52850,4573,7 +116484,Walter Bradley,89720,189313,8 +116485,Valler,19946,26700,1 +116486,Kazumasa Kodai,391642,1565630,4 +116487,David Macdonald,44902,16898,2 +116488,Dr. Hopkins,9667,978,8 +116489,Ippolit,63958,150734,15 +116490,Christelle,152989,1179882,14 +116491,Neurologist,19398,1280766,27 +116492,Mrs. Krieger,42293,31444,3 +116493,Ahimaz,2734,27654,32 +116494,Azenhawke,19350,114897,14 +116495,Philaine,9787,28412,2 +116496,Tom,69921,101908,0 +116497,Natalie,28026,70557,11 +116498,Masha,31442,119570,5 +116499,Generaldirektor Tidemann,54769,590700,8 +116500,Albert Edwards,10918,134895,15 +116501,Genine,363439,1521372,5 +116502,,73835,1137527,21 +116503,Producer (voice),13654,4250,12 +116504,Michele,284296,120831,22 +116505,Boy,39356,122765,0 +116506,Cockney News Vendor,109716,1673520,81 +116507,Father,324440,16809,4 +116508,Anita,395883,1674352,7 +116509,Toni Donne,26533,70035,1 +116510,Dr. Harris,40146,1055181,5 +116511,Mila Yugorsky,7304,29930,6 +116512,Pekka Puupää,120280,232309,0 +116513,"Aurore, Le médecin de Saint-Pierre",86727,9893,2 +116514,Policier municipal 1,13312,81051,8 +116515,Mermaid (uncredited),213681,1771610,78 +116516,Reporter (uncredited),44115,1390549,27 +116517,Robert Toulon,26962,3034,0 +116518,Billy Bones,83191,16752,11 +116519,Tané,74126,145250,0 +116520,Mrs. Mitchell,308032,54478,22 +116521,Josef,133458,1097230,4 +116522,Clarke,179288,61510,12 +116523,le professeur,79343,236136,5 +116524,(uncredited),28433,4094,13 +116525,Princess Shcherbatsky,96724,19123,21 +116526,Ray Shoesmith,14096,76366,0 +116527,,372113,1186540,5 +116528,Bowler,147722,14664,15 +116529,Latif's Father,62630,946350,7 +116530,Admiral Sommers,43093,93170,5 +116531,Paulette,4375,9919,2 +116532,Nightclub receptionist,59408,38099,8 +116533,Lily Hobart,75595,36594,0 +116534,Olivia,100110,64062,7 +116535,Pippi Långstrump,11626,70066,0 +116536,Mrs. Abbott,104720,10926,18 +116537,Dasha,51285,143735,0 +116538,Liza,149170,99287,1 +116539,Margo Mash,82626,55567,6 +116540,Filip Willems,17845,73381,2 +116541,Knute - Age 7,43812,101740,10 +116542,Business Man Plane,240832,1366325,20 +116543,Danilo,241140,1426802,4 +116544,Billy,210047,130253,2 +116545,Circus Owner,72032,33820,9 +116546,Michael,141418,1528094,5 +116547,"Kiichi Watanabe, Kanji's Brother",3782,1121643,9 +116548,Komiko,312669,1455770,10 +116549,Alan Conway,13802,6949,0 +116550,Night Watchman,27814,1856465,8 +116551,Lenas mor,76846,231924,5 +116552,Ruthie Hacklin,48949,1184797,4 +116553,Evelyne,18955,83970,7 +116554,Donna (Duke's mother),158990,6465,4 +116555,Jamie Dodd,10087,12763,0 +116556,Anita Biddle,58462,1474984,12 +116557,Racer X,7459,28657,2 +116558,Ms. Moore,78461,395517,6 +116559,Eric Molinar,25407,37884,2 +116560,Nick,5123,41296,9 +116561,Rodeo Announcer,18843,89551,41 +116562,Sharon,17577,163439,14 +116563,Gestapo,111744,51651,10 +116564,(voice),16137,79555,10 +116565,Sven,345438,1102351,8 +116566,Secretaria vicepresidencia TV MX,264525,1238408,26 +116567,Hospital Scrub Woman,51571,5738,5 +116568,Fair Patron,71866,63508,9 +116569,Bjarne,15838,77529,0 +116570,Le juge,2029,72090,13 +116571,,15776,1565318,11 +116572,Eiko Nakaoka,14087,547987,2 +116573,Romey,128364,1066450,2 +116574,King Gaston IX,62692,86695,0 +116575,Billy Birkmire's Father,120357,1176932,16 +116576,Woman,43811,33034,37 +116577,The Little Girl (voice),309809,851784,11 +116578,The Queen,111759,1052840,5 +116579,Lady Cynthia Darrington,37581,6598,0 +116580,Barbara Drake,65488,218664,8 +116581,Information Officer,3072,30611,10 +116582,Agent Mingozzi,20126,98774,14 +116583,Francisco Mega (as Ribeirinho),97110,379289,1 +116584,Debbie,24655,15503,10 +116585,Helen Crane,37481,29910,2 +116586,Himself,16800,31058,11 +116587,Matt Dunbar,55728,11628,12 +116588,Goonelle,4930,40163,10 +116589,Football Fan at Game,43812,119549,84 +116590,Photographer,56558,130496,53 +116591,Singer,3087,30275,8 +116592,Marian Hardwick,85009,41516,7 +116593,"Ghost samurai (segment ""Chawan no naka"")",30959,33730,67 +116594,Mère Supérieure,286595,20081,3 +116595,Aslak,84944,931477,0 +116596,Jenny Scott,2071,12656,3 +116597,Kelly Mandrakis,10053,59697,6 +116598,Country Groomsman,405473,1800041,37 +116599,Dink Heimowitz,84305,62,1 +116600,Publisher,67272,79171,0 +116601,Lilly,45949,1146888,5 +116602,Brett,16890,129759,5 +116603,Enormous Orphan,51247,1225358,15 +116604,Joey,40034,44990,11 +116605,Master of Ceremonies,28363,2907,10 +116606,,57983,232403,6 +116607,Viscountess,114155,4959,7 +116608,Nefer's Maid,24973,1747682,55 +116609,Charles Langdon,120747,32434,9 +116610,Ricky,16839,1119,12 +116611,Logan / Wolverine,76170,6968,0 +116612,Margo Foster Kane,29510,10606,4 +116613,Berkeley,11046,183207,6 +116614,Himself,340053,37572,3 +116615,Man (uncredited),14615,4303,23 +116616,Clara,4285,36011,3 +116617,Lavinia Tate,351365,55893,6 +116618,Lou Toback,4982,15854,5 +116619,Dicey,52360,590532,12 +116620,Afrikaner Minister,13823,75781,17 +116621,Passenger,30644,106670,10 +116622,le curé,142979,3281,6 +116623,Jo Turner,91181,122910,3 +116624,,88491,985079,9 +116625,Bigotes,254869,1423085,39 +116626,Harrison,294690,1390548,25 +116627,Cleon Doyle,147106,11859,3 +116628,,14217,1342694,6 +116629,Marthe,52045,10500,0 +116630,Assistant,39536,567590,2 +116631,Helen's Party Guest,157898,1429731,26 +116632,Loki,284053,91606,1 +116633,Pop,40087,54564,4 +116634,,218772,1203504,4 +116635,"Alp-Öhi / Alp-Ochi, Heidi's Grandfather",58757,5039,1 +116636,Principal Richard Tyler,345922,14329,5 +116637,Warren,198001,4971,2 +116638,Jack Horne,333484,7132,3 +116639,,349441,1163018,1 +116640,Iranian Ambassador,146216,27650,25 +116641,Atlanta Braves fan (uncredited),5915,1533630,21 +116642,Mme. Lucretia Borelli,28044,120809,7 +116643,Driver in Scotland,10761,1216581,21 +116644,Police Lt. Eckhardt,268350,21510,5 +116645,Anna,7511,10401,9 +116646,Lord Percival Graves,10804,5049,2 +116647,Matt,18040,82629,2 +116648,Jay Grayson,206284,987572,7 +116649,Gang Sangman,62439,63442,14 +116650,Marcia,63360,1231959,4 +116651,Waid,63190,2960,1 +116652,Le Président de la république,98277,1425961,31 +116653,Franca Fossati,142979,10623,1 +116654,Kristin,19794,74611,5 +116655,Bone Breaker,263115,9452,16 +116656,Photographer (uncredited),4982,1368459,104 +116657,Sid (voice),10193,12901,29 +116658,Baby Michael,354979,1835243,41 +116659,Uğur,44105,145375,0 +116660,Miami Backstage Guard,26670,95980,13 +116661,Lily Prine Berniers,108869,21876,2 +116662,,126315,1096781,2 +116663,,188524,187096,1 +116664,,58570,123654,2 +116665,Produzent,130739,1805297,30 +116666,Denise,31421,21143,7 +116667,,302472,1172858,3 +116668,Michael Aarons,191322,170231,6 +116669,Maurizio,235208,1799895,8 +116670,Colonel South,33789,18262,5 +116671,,375742,1564299,32 +116672,Marshall,425591,399681,2 +116673,Mung,167221,1159937,5 +116674,Sam Hooper,16661,98000,7 +116675,Mr. Grosch,27230,54246,10 +116676,Johnny Portugal,6643,11163,3 +116677,Himself,72898,19794,6 +116678,Luke - Target Keeper (uncredited),16442,1082319,93 +116679,Girl's Mother,13090,210157,17 +116680,Paisley Winterbottom,79113,206393,6 +116681,Siegfried Pitschmann,265432,1876,2 +116682,George Spahn,381737,52622,9 +116683,Catastrophe,440508,1846436,5 +116684,Bartender,158739,163905,7 +116685,Sheriff Brooks,339419,20982,2 +116686,Colin,42934,54447,0 +116687,Janey Rath,28290,132099,9 +116688,the saleswoman at the bathroom,132332,37147,12 +116689,Pam,147773,3051,2 +116690,Membre de la cour,68023,38901,17 +116691,Sam,22387,82835,7 +116692,Luther Wicks (as Dick Jones),72474,67371,4 +116693,Rocket (voice),378236,1859938,24 +116694,Jacobson,5172,18999,10 +116695,Antonino,153561,27460,2 +116696,Monk Neng Ren,75948,572084,3 +116697,Pinocchio (voice),136619,1153704,1 +116698,Buck Lipscomb,16442,30297,7 +116699,Giovanna,142320,1253993,13 +116700,Judy,330947,58643,15 +116701,Sylvio Dipietro,417489,33668,4 +116702,Soldier (uncredited),227306,1394476,76 +116703,Jacques Grandin,33489,77860,2 +116704,Polizeiinspektor,145244,29427,8 +116705,Andrea,76059,1125625,1 +116706,Roc,21371,1102575,3 +116707,Soldier,8988,1741981,60 +116708,,256356,27275,3 +116709,Paul Wagner,38461,120716,10 +116710,Ken aka 'Kentucky',182035,550315,0 +116711,Commissario Polizia,38285,118503,8 +116712,"Dame Ellen, Lady-in-Waiting",24442,21878,10 +116713,Ellen,38027,86367,5 +116714,Specs alias Marty Kubek,45679,106102,11 +116715,Isabel,336004,1267285,12 +116716,Bob,268174,82121,15 +116717,Harry,64428,109200,5 +116718,Don Ciccio,59230,1001017,8 +116719,Phol,57627,226566,3 +116720,,15761,1188841,10 +116721,Ray Gibson,38237,1736,0 +116722,"Lachchuram Kaphanchi, Makhkhan's Father",96159,1108794,15 +116723,Melek,220002,97274,1 +116724,Julián,280840,102228,5 +116725,Michael Stanley,159701,1116795,11 +116726,Rolf Schmidtbauer,85469,848,7 +116727,Spitz,136743,49487,2 +116728,Svens Mamma,86980,131075,5 +116729,Inspector Barlowe,29368,103685,8 +116730,Dr. Aaron Conners,271718,19278,1 +116731,Claudia,327383,1451410,5 +116732,Cindy,300669,1451101,4 +116733,"Jacinto, carriage driver",167707,1130529,6 +116734,Concertmaster,63291,929600,8 +116735,Smooth Walker,23096,35516,1 +116736,Cassidy,50669,14835,4 +116737,,175924,44712,3 +116738,Nurse,11358,1055157,40 +116739,Bill Philby,76211,4304,7 +116740,Kamps,159514,32558,4 +116741,Domingo,351809,15598,10 +116742,Masseur,217412,1543395,9 +116743,Mrs. Borst,73194,9073,25 +116744,Anita Colby,88794,65871,17 +116745,,153420,20708,11 +116746,Lily Fontaine,202941,165176,13 +116747,Udel,405473,1800027,15 +116748,Yamauchi,99188,96563,5 +116749,Officer Ron Miglioriti,19971,125649,3 +116750,Ezra Turner,11321,57755,3 +116751,Madre de Juan Carlos,210653,186586,11 +116752,Tamaki,35451,114304,0 +116753,Solomon Northup,76203,5294,0 +116754,,358199,1505209,16 +116755,Nick's New Avatar,49524,84849,18 +116756,Stunt Police,25941,1835518,27 +116757,Barry Rankin,9815,28848,10 +116758,Burmin,87759,1294143,1 +116759,Edwin Dacres,192990,69764,3 +116760,Beth Ganz,66193,101091,9 +116761,Spanish Police Officer,169758,1685382,11 +116762,9 Year Old Tammy,14923,1386344,15 +116763,John Maddux,125990,89025,4 +116764,Mae,264080,29910,5 +116765,Pvt. Wolsey,294690,1390545,23 +116766,Creature,9987,61514,10 +116767,Newark Radio Operator,18569,30530,8 +116768,,47046,1601527,3 +116769,Seedy Man,32577,4317,25 +116770,Henchman,134238,33971,30 +116771,Serfer,153266,144972,3 +116772,John,403130,19197,3 +116773,Jenkins,43833,27942,3 +116774,Sierra,317198,142115,4 +116775,Julia,76333,114463,1 +116776,Cookie Winchell,30644,104333,2 +116777,Chess Onlooker,182127,83556,29 +116778,Barber,250535,1115,4 +116779,Manuscript Woman,206296,1606394,12 +116780,Party Guest at Marie Antoinette Room,175065,121323,5 +116781,Chief of security,394645,23429,3 +116782,Man Kissing Girl,10362,1758907,37 +116783,Chiyo,209032,20705,12 +116784,Laranjinha `Wallace´,7343,8605,1 +116785,Nathanael,96888,1011137,1 +116786,,88953,227400,7 +116787,Chastity,53358,1384213,9 +116788,Maître Simon,11680,585663,10 +116789,le maire,4974,579270,12 +116790,Kim Do-il,37284,1420826,2 +116791,Simon Bannion,134238,589218,8 +116792,Ray,11172,155209,13 +116793,Müslüm Durulmaz,30634,74376,0 +116794,Helen / Bridesmaid,157384,1180095,6 +116795,Duncan Fletcher,32195,76621,1 +116796,Bjorn,286873,1205278,1 +116797,Leutnant Esteridge,8398,2203,3 +116798,University Boy,428493,1819918,10 +116799,August Nicholson,6947,2039,5 +116800,Hugo,57311,225896,4 +116801,Rose (as Sinead Cusack),126927,11281,7 +116802,,88273,1265218,25 +116803,Jessie Coutances,76829,69810,5 +116804,Soldier Playing Ocarina (uncredited),80941,89735,31 +116805,Tracey,13849,106049,2 +116806,Herself - at Banquet (archive footage) (uncredited),33740,120306,76 +116807,Faith Beckett,5965,46918,5 +116808,Louise,381255,1572628,4 +116809,,78258,583489,6 +116810,,410259,8395,2 +116811,Irene Weishaupt,42206,9931,3 +116812,Attilio Turchese,75336,43241,7 +116813,Ahrolan Paavo,286267,1352107,1 +116814,Young Lily,18898,1489319,15 +116815,Pawn Shop Owner,45610,133284,23 +116816,Damon Miller,262542,1461116,1 +116817,Maguy,79034,136761,0 +116818,Emperor Akbar,44519,121863,1 +116819,Auste's Friend,310568,1588820,9 +116820,French General,150712,145872,19 +116821,John Rotman,107781,49825,0 +116822,Sam,79833,219902,9 +116823,Tony,315837,856126,18 +116824,Ragan,26376,103620,9 +116825,Billy Creel,41468,14573,9 +116826,Steven Weed,148615,104385,3 +116827,Héctor,53739,102226,8 +116828,Vescovo,56804,1865135,22 +116829,Fa / Moose,18763,119460,11 +116830,,248087,1257073,10 +116831,Greg,429238,1194966,6 +116832,Tommy Williams,70327,1059871,1 +116833,Nurse Telling Crowley It's a Girl,124115,68653,21 +116834,2nd Twin,273106,1519558,13 +116835,Morris Shapiro,29161,103060,7 +116836,Operator,3580,1047161,17 +116837,Ratna Prabha,55283,237225,2 +116838,Orestes,9703,20508,6 +116839,Arto Suominen,141971,108477,2 +116840,Mrs. Xiao,20846,86633,4 +116841,Seltzer,31258,98164,6 +116842,Ram Prasad,33146,110200,9 +116843,Ermintrude,16455,34901,7 +116844,Mr Chan,31027,239961,5 +116845,Li Zongren,25626,77303,16 +116846,Amal,50674,48,0 +116847,Commissario Dario Mauri,105906,36913,0 +116848,Drag Race Spectator / Bar Patron,339419,1650174,43 +116849,,88529,224662,7 +116850,Marjorie Scott,97767,2434,0 +116851,Thomas Jefferson,195068,13823,9 +116852,Chairman,142216,66200,15 +116853,Nina,77412,581964,8 +116854,Priest,167073,1544909,33 +116855,Golda,94170,89784,1 +116856,,142656,134406,14 +116857,Mara,186630,98790,5 +116858,Dicky,333484,1748372,33 +116859,정용준 (Yongjun Jeong),267466,63438,1 +116860,operatore al crematorio,109979,229573,8 +116861,Herself,25111,13312,2 +116862,Perc Gessant,198176,128198,7 +116863,Buglione,288313,124624,5 +116864,Himself,14923,32600,43 +116865,Boy on London Street,257344,1260011,29 +116866,Anna,88953,140618,0 +116867,Karpenko,102197,59899,7 +116868,Sister Erika,41619,4618,11 +116869,Himself (as Dr. Scott Parry),97724,1388670,21 +116870,Monk Dao Kong,66756,1109778,8 +116871,Venus,106136,1039632,3 +116872,Nagarjuna / Radha Mohan,253533,237052,2 +116873,Minor Role,28421,30196,15 +116874,Ambassador George Oswandu,67696,2246,5 +116875,Jean-Frank,84105,1869973,16 +116876,Victor,48587,231,6 +116877,Physicist #3,266856,1503904,22 +116878,Gordon,304613,1553819,8 +116879,Samuel Bass,76203,287,9 +116880,Coach Vansky,62837,52483,18 +116881,Stan,28704,52849,4 +116882,Lucía,201765,231486,9 +116883,George / Exterminator,56669,7140,8 +116884,Mirror / Dresser (voice),809,71857,14 +116885,Thad,17038,133591,6 +116886,,315252,1070388,6 +116887,MOB Dancer,243683,1398073,50 +116888,Amy,55632,3128,7 +116889,Talyda,39024,1028466,1 +116890,,16017,1442261,16 +116891,George Jorgensen Sr.,94551,161288,3 +116892,Antonya Raskolnikov,43891,13824,3 +116893,Carson Wheetly,37708,118364,1 +116894,Lucienne Talbot,42825,89088,1 +116895,Detective Cobb,86254,9276,12 +116896,Samuel,18955,83971,8 +116897,Sally Dolan,185289,31259,5 +116898,Éomer,122,1372,15 +116899,Peixeira,49974,1808450,7 +116900,Allison Kaufman,102222,1110282,8 +116901,Noble #4,62764,58170,19 +116902,Cavalcade Patron,25625,106671,12 +116903,Lucy Hawking (Age 6),266856,1503909,34 +116904,DeWitt Pynchon,227717,2698,5 +116905,Floyd,23823,123796,3 +116906,Leah,16342,1335167,5 +116907,Mabel (Carrot Film),340101,235837,40 +116908,Arthur Sargent,196065,40178,2 +116909,Captain Hefter,38162,11398,4 +116910,Anna,9352,20259,18 +116911,Travis Clayborne,86543,170230,4 +116912,Giovanni,310126,120020,1 +116913,"La patronne de ""L'ange gabriel""",68822,582141,19 +116914,Joseph (singing voice),16366,206047,11 +116915,Jerry Beaver,50647,1358567,29 +116916,Judge,207021,41946,3 +116917,Himself - Go Go Boy,97724,1388661,12 +116918,Franz Geller,109716,29137,3 +116919,Croc (voice),81003,89112,8 +116920,Brian Firestone,46830,1122282,6 +116921,Yunus,14076,42208,2 +116922,Lt. Whitehead,32634,8520,19 +116923,Kunimatsu,14525,128481,10 +116924,Eddie Shannon,34652,1937,0 +116925,Krall,188927,17605,7 +116926,Paul,116463,69395,1 +116927,Billy Joe,30708,78399,4 +116928,Gendarme-Dieppe,369885,1698116,32 +116929,Dorothy Vandermeer,77949,66791,13 +116930,,422005,221682,7 +116931,Johnny Ramirez,26323,13352,0 +116932,Edda,8588,1318523,7 +116933,,70278,1853152,6 +116934,Party Guest,72105,1507448,47 +116935,Holm,116019,1062704,2 +116936,Hank Prosner,14703,39057,4 +116937,Teenager,419459,1454365,13 +116938,Mary Worth,60965,85156,5 +116939,,63899,932878,5 +116940,Builder,394645,76283,13 +116941,Will Francis,1253,9642,0 +116942,Mr Claus,150657,66606,0 +116943,Thantos,21481,58791,3 +116944,General Caulfield,117251,129101,10 +116945,Martin,148,1670,8 +116946,Helene's Dance Partner at Flammarions' Party,31993,122984,35 +116947,Conchita,58732,130332,5 +116948,Monica Tepper,24632,205082,3 +116949,von Nogay,36264,209780,3 +116950,Chancellor,177677,1562092,44 +116951,Steph,364379,1523860,8 +116952,Joe,250638,1619,0 +116953,Mrs. Bolton,43385,20126,7 +116954,Girl on Tricycle,3580,1569718,18 +116955,Frode,15177,77983,11 +116956,Oracle Fish,126963,1024388,5 +116957,Technical Adviser (Rance G.),4932,1895,24 +116958,Raja Manikyam,125835,586629,6 +116959,"(segment ""Miminashi Hôichi no hanashi"")",30959,552660,43 +116960,Killer,57654,1811552,7 +116961,Headmistress Band - Drums,84994,1223325,4 +116962,Prostitute,10915,76236,14 +116963,Ruth Lanier,9846,4761,7 +116964,George Jones,245700,19903,17 +116965,"Dr, Kugler",142712,22623,9 +116966,Lee Min-ki,2015,135850,5 +116967,Danielle Warren,48495,87570,1 +116968,Lily,352164,444211,2 +116969,Murray Burns,42623,14832,5 +116970,Pai,83897,930828,3 +116971,Mr. Bryant,242042,1295668,26 +116972,Hiram Porter Dunn,52440,9067,3 +116973,Dive Bartender,6557,2256,24 +116974,Neil,345922,1783261,27 +116975,Pierre,17658,6012,0 +116976,Himself,125736,1271015,31 +116977,Luigi,105509,132196,3 +116978,Highschooler,428687,1589138,12 +116979,Grandfather,13823,75785,21 +116980,Q,21138,202065,7 +116981,Jerry,11614,70027,1 +116982,Bruno Markowitsch,85469,675,0 +116983,Michiko Hirayama,50759,76976,1 +116984,Angela Chen (voice),17074,15100,15 +116985,,327231,88911,4 +116986,Nell Van Dort / Hildegarde (voice),3933,30364,3 +116987,Herself,326255,1633753,1 +116988,Canadian Major,49609,14509,10 +116989,Nacista ve smokingu,18352,227151,14 +116990,Naome Sager,53931,226621,2 +116991,Joe Castro,72474,78309,7 +116992,Johnny Vitelloni,128270,55962,20 +116993,Skye Rotter,140652,560298,0 +116994,Anchorman,31397,1266705,13 +116995,Sancho Panza,46813,934255,1 +116996,Jaqueline,180371,55826,4 +116997,Taani,14072,81928,2 +116998,BBW Member,167810,1793184,28 +116999,Lisa Palmer,205587,81217,6 +117000,Bob Younger,183825,14565,2 +117001,Waitress #2,126516,1529735,13 +117002,Cop,246355,108676,1 +117003,Secretary,111960,9875,9 +117004,Vince Dorne,288281,1188239,7 +117005,,155325,1616648,22 +117006,,444623,116005,1 +117007,Leopold,62688,150734,4 +117008,Herself - Model,327083,1248832,10 +117009,Oriol,110001,1062326,2 +117010,Tobey Crawford,286971,27103,3 +117011,Webber,12594,58565,12 +117012,Cynthia Stanhope,68097,78859,4 +117013,Squadron Leader Peter Moon,41312,85934,1 +117014,Steel (voice),286567,1180979,1 +117015,,338079,78697,8 +117016,William Shakespeare,43252,14029,17 +117017,Brook Watson,81687,2099,8 +117018,Monk,46114,1587739,12 +117019,Fru Hansen,87654,1271176,14 +117020,Susan,27886,1531023,9 +117021,Aviator Lundborg,8063,37777,2 +117022,Primar,11122,48081,8 +117023,Footman,31993,89033,19 +117024,,79216,235422,5 +117025,Nanaji,109001,565890,7 +117026,Judith,186971,132182,2 +117027,Gruss,27270,998535,2 +117028,Angeline,387957,1591664,8 +117029,Liz Morgan,341174,78861,14 +117030,Chambliss,168676,39970,9 +117031,Lady Alice Risborough,22404,108804,6 +117032,Jeun a la piscine,121539,1759921,15 +117033,ittle kid,362974,1278162,6 +117034,,127098,11523,1 +117035,Himself,144680,584562,9 +117036,Madeleine,16444,119361,17 +117037,Linda Fentress,75622,32,3 +117038,Elena,168259,73269,16 +117039,H. Fritzche,613,38486,37 +117040,Juha,124979,1270127,1 +117041,Clip from 'Hollywood Revue' (archive footage),33740,30236,28 +117042,Carla Sanford,46145,116493,1 +117043,Geezer (uncredited),28000,96240,78 +117044,Judy Adams,32552,8237,1 +117045,Senior Insp. Chan Kwok-Wing,11636,18897,0 +117046,Policier BAC 3,13312,81054,12 +117047,,19812,123637,8 +117048,Johannesburg Onlooker,99861,1760869,42 +117049,Thug Jumped On By Boltie,45132,1363400,42 +117050,Maria Kennedy,33511,82639,7 +117051,Joe Greer,125736,5788,0 +117052,Rabbi,270650,1359959,27 +117053,Bit Role,108222,120700,43 +117054,Harry,95516,17072,6 +117055,Thick Woman,9252,1596427,21 +117056,Ingrid,65795,1350,1 +117057,Carlos,76333,578368,2 +117058,Leanna,302042,1378866,11 +117059,Linda Petersen,88005,1230173,13 +117060,Beat Box,85350,1467978,57 +117061,Michel,187602,237847,13 +117062,Shige,27276,545488,2 +117063,Undertaker,62143,91663,32 +117064,Barney,331642,1470500,4 +117065,Takeo's father,356156,225663,3 +117066,Alistair,228066,1371041,8 +117067,Turkish Controller,20674,1089948,31 +117068,Joan Sutton,26182,19967,4 +117069,Heidi,41733,3196,4 +117070,Bill,79094,37125,8 +117071,Sheriff Meeks,159128,67580,6 +117072,Madison,52913,581710,9 +117073,Trixie Stone,17241,52018,2 +117074,Kyle,362765,961834,3 +117075,Brunnhilde / Valkyrie,284053,62561,5 +117076,Venla,55495,1839564,8 +117077,,361380,74358,1 +117078,Irma Berger,368342,43202,3 +117079,Sadiye,10821,1174584,13 +117080,Eric Coenen,53472,1241993,1 +117081,Sylvia Obino,5767,45457,11 +117082,Carmela,105509,40165,8 +117083,Ole Swensen - 2nd Swede,197737,99468,34 +117084,Sarah Sunderson,9890,60017,12 +117085,Jeremy,219345,60203,4 +117086,Z-Bob,14505,53493,0 +117087,Niky,84348,1090694,25 +117088,Paul's Secretary,169355,1716674,15 +117089,Orange,214129,1307376,18 +117090,,15830,588175,11 +117091,Eric,403431,62861,4 +117092,Delegate,285181,1151458,14 +117093,,283711,1016315,3 +117094,Tonton Yves,59163,185395,5 +117095,Pfleger,6183,48515,20 +117096,Jean-Michel,14126,62507,2 +117097,First-Nighter,132928,1284767,29 +117098,Yuriko,52034,237167,1 +117099,Pert,288521,932646,1 +117100,Strix,68737,1356538,17 +117101,Simonetta,93863,999820,5 +117102,Sugita,18722,553441,41 +117103,Jay Wendell,112287,1054379,3 +117104,Nanny Candidate,226701,1079850,12 +117105,(uncredited),145481,1686099,17 +117106,Kim Hye-Jin,367882,1239675,8 +117107,Francisco,431093,224506,6 +117108,Hany,81435,226440,2 +117109,Danny,13777,1284,0 +117110,Frank Lucas,4982,5292,0 +117111,Narayana Rao's sister-in-law,353533,580662,13 +117112,Parquero,136752,1208801,14 +117113,André / Superintendent,153272,47851,6 +117114,Salon Proprietor,61644,5170,16 +117115,Cassandra,203264,74612,4 +117116,Broker,43811,233118,47 +117117,Sloman,339527,98215,10 +117118,Marguerite,64481,6548,5 +117119,Metz,367412,1451545,4 +117120,Amy,405050,1428396,4 +117121,Stacia,262357,112327,7 +117122,Lou Avery,26036,74542,1 +117123,Edgardo Salazar,214129,585888,17 +117124,Bea,336806,83897,4 +117125,Savannah Cook,301566,1382839,5 +117126,Station Guard,1116,150584,36 +117127,Winnie-the-Pooh (voice),36162,86664,1 +117128,,200117,32312,0 +117129,Gaston de Nerac 'Paragot',223655,112972,1 +117130,Kakugari,43967,555155,7 +117131,Miss Saunders,151062,99067,5 +117132,Buster Billings,939,21510,7 +117133,Donna,82622,928298,9 +117134,Rachel Jackson,112284,17755,6 +117135,Gotham Desk Cop,209112,1696231,114 +117136,Paul,9736,25116,4 +117137,Elena Díaz,365709,591924,7 +117138,Store Customer,203186,1198312,7 +117139,Detective (uncredited),27349,151521,22 +117140,Jane Hawkins,31421,136899,0 +117141,Collins,18569,99350,27 +117142,Sgt. Kat,25536,1173600,4 +117143,Tsotsi,868,13091,0 +117144,Court Bailiff (uncredited),14615,148429,58 +117145,Man in Canteen (uncredited),103938,942165,16 +117146,Cura,14430,76874,7 +117147,Kate Barker,49172,9207,0 +117148,Skolelæreren,20372,225825,5 +117149,Colonel John Harker,25385,29909,2 +117150,,125264,1092940,17 +117151,Ha Yoon-joo,204553,240145,12 +117152,Martin Daniels,2778,28164,1 +117153,Mindy,246917,104368,4 +117154,Luis,222339,107322,6 +117155,Hiroshi Kurosawa,18722,553422,8 +117156,Reporter,43821,117036,36 +117157,,54959,1032793,11 +117158,Columbo,360626,2314,1 +117159,Rosella (Diálogos),13283,1497223,11 +117160,Ms. Jenkins,55638,1628344,9 +117161,Peter,109453,17342,10 +117162,Fred Jensen,86297,129482,5 +117163,Himself - White Party Promote,97724,1388668,19 +117164,Thad Goodwin - 1938,118889,13976,8 +117165,Private Fike,19995,154153,12 +117166,Photographer,39048,121889,10 +117167,Himself,70027,15178,25 +117168,Daughter,312174,1400593,4 +117169,Detective Elmer,402582,1315219,16 +117170,Antonio,82481,567975,11 +117171,Mr. Graham,215928,75129,2 +117172,Zelda (voice),9948,60739,8 +117173,Policewoman,246741,1780262,9 +117174,Funeral Attendent,379959,1604095,8 +117175,Ellie Carver,10004,61830,10 +117176,Police Sergeant,242224,96464,14 +117177,Damolini,5511,326033,15 +117178,Edgar,134155,33705,7 +117179,Luther Perkins,69,425,9 +117180,Student,128311,1070195,14 +117181,The wacky,131027,1092620,1 +117182,Dan,7871,53233,2 +117183,Heidi,43912,135172,1 +117184,Becky Devers,45219,132533,10 +117185,Bianca's Band,312221,928158,58 +117186,Aunt Suzi,74666,51095,10 +117187,Black Giant,23739,90540,6 +117188,Kienzl,62567,2313,5 +117189,Malhombre,65674,100913,13 +117190,,130957,6093,17 +117191,Himself,145154,110380,7 +117192,Cissy Houston,319096,80622,5 +117193,Lt. Franz Von Klemme,37308,8544,5 +117194,Bachelorette,11247,1776458,31 +117195,,436,1343352,15 +117196,Photographer,56558,121122,34 +117197,Joe The Gardener,69903,58649,7 +117198,Sebastian,21533,85811,14 +117199,Amel Ben Saoud,44155,1319817,7 +117200,Ms. Lee,229304,1432841,3 +117201,Psychologist,72875,5139,2 +117202,Lil Waters,157343,30214,4 +117203,Siebenter Geschworener,269165,10254,6 +117204,Daisy,218784,52365,8 +117205,Agashi (voice),14945,137029,6 +117206,himself,190940,35742,27 +117207,Victoria,62522,59154,2 +117208,Yoji Miller,345069,590818,8 +117209,Kahnitz,12575,38608,5 +117210,Stephan,8888,4536,11 +117211,Cop (as Anthony Armatrading),18206,103033,5 +117212,Derek,84178,88597,2 +117213,Giudice,138273,14151,2 +117214,Stan,137683,130227,4 +117215,Dancer,25973,1265470,13 +117216,Party guest,45800,88462,14 +117217,Paul von Siering,82708,1597840,9 +117218,Man in Restaurant,122271,1735913,14 +117219,Miss Philips,38417,120389,3 +117220,Big Mouth Kay,24163,1415347,9 +117221,Young Guardsman,326285,1812214,19 +117222,Francis,12540,1118082,9 +117223,Dad,70327,1059873,3 +117224,,161299,38597,1 +117225,Townsman,105059,1581072,30 +117226,Office Worker,242076,1271113,10 +117227,(voice),255772,1603930,12 +117228,,27276,551838,29 +117229,Blind Enchantress,263341,113948,5 +117230,Train Driver's Wife,16151,79700,12 +117231,Richard,18189,1215144,5 +117232,Officer Willis,16171,79879,28 +117233,Jill,395982,192838,7 +117234,Ohara,3782,34377,3 +117235,"Sini Ketonen, mother",249703,1013969,0 +117236,Allan Neyman,8010,568531,14 +117237,Tom as a Boy (uncredited),17687,120822,11 +117238,Winks,307479,49915,4 +117239,Guido,137315,509344,0 +117240,Choreographer,59962,1408200,34 +117241,Receptionist,16083,79212,7 +117242,Himself,16378,10557,14 +117243,Zeke Baylor,13649,77196,9 +117244,,3549,1127466,15 +117245,,362154,554931,17 +117246,Ezra,51167,38582,2 +117247,Yashka the Gypsy,41979,127406,1 +117248,Narrator,64204,238715,0 +117249,Daniel,291871,8214,4 +117250,Nouvel auxiliaire,77338,1632531,19 +117251,Selwyn,65603,8260,4 +117252,Piatã / Junior,173443,17289,2 +117253,,205349,1137504,6 +117254,Thane,80410,63566,7 +117255,Hotel Lobby Extra,55604,1208035,69 +117256,Ajay,155308,42803,0 +117257,Iyemon Tamiya,68715,70131,0 +117258,Elinor Smith,8915,76070,7 +117259,Lassparri (as Walter King),37719,1219018,7 +117260,Mrs. Lind,180635,8515,5 +117261,Trim Houlihan,42648,41214,3 +117262,Chemo Patient (uncredited),40807,1457270,37 +117263,Passenger,29907,71733,8 +117264,Col. Forsythe,57412,34748,4 +117265,Spiral Beach Band Member,8669,1281031,38 +117266,Gavin Kossef,15577,38941,3 +117267,Karl,261112,1479335,8 +117268,Bruno,296288,1839907,14 +117269,Julián,105584,231170,1 +117270,Tomás (voice),14405,77888,11 +117271,Radio Announcer,152737,1617613,16 +117272,Generale Barnes,24351,58475,2 +117273,Henri,300690,1286329,3 +117274,Comedian,69635,141076,3 +117275,,14753,114725,16 +117276,Cemetery Caretaker,14904,1230272,10 +117277,Chad,5759,45398,1 +117278,Rick,270654,57686,7 +117279,Trixie,201676,74370,6 +117280,Sgt. DeVaca,45522,40390,10 +117281,Harland Osbourne,14047,1229689,14 +117282,Reed Haskett,62837,10823,4 +117283,Shun Izaki,25716,105405,5 +117284,Heather,15045,77803,9 +117285,Namgun,65881,227638,2 +117286,Celestine (voice),126319,851784,28 +117287,Aurélie Laflamme,359413,1508579,1 +117288,dottor Bernarinis,338438,1046561,10 +117289,Manuel,18722,183239,31 +117290,Detective #1 (uncredited),162862,30136,13 +117291,Manolo,96133,42844,13 +117292,Nameless,32654,109506,2 +117293,Old Man Arcane,290825,60286,5 +117294,le serveur Dill,252102,1377177,10 +117295,City Party Committee Secretary,57781,240556,8 +117296,Ted,85350,32239,5 +117297,Japanese Businessman,32577,9192,28 +117298,Johnny Dolan,190269,30157,5 +117299,Dan Farrell,226167,13021,0 +117300,Maybelle's Store Dancer,2976,1724945,73 +117301,Siostra Karolina,314371,1575916,19 +117302,Himself,84318,1084976,9 +117303,Des,270654,1097941,13 +117304,Hackley,120259,2101,18 +117305,Young Brad,116979,1835159,8 +117306,Puffs,316776,1436391,3 +117307,Pop,316268,2714,1 +117308,Samuel,76543,579295,4 +117309,Dunne,25918,91218,8 +117310,Barbie (voice),10193,63978,12 +117311,Ed,317198,1141258,5 +117312,Detective Alois,127812,946334,21 +117313,Preacher Taggart,188826,117458,6 +117314,Betty,1381,2517,7 +117315,Pigmy,42725,6451,6 +117316,Davenport,62720,120816,9 +117317,De Lica,26516,187749,16 +117318,Jennifer Jones,16080,2133,0 +117319,L'ami du père,64944,21664,9 +117320,Sandy Leung,58414,65938,1 +117321,Murphy,105551,77160,6 +117322,Song Jiaoren,76349,1614347,21 +117323,Second Ferret,116554,96993,19 +117324,Rose (Archivist),181533,8263,17 +117325,David Brewster,2017,20696,6 +117326,,15936,21007,12 +117327,Dr. Abendroth,125490,56890,2 +117328,Russian Policeman,2503,944548,23 +117329,Diane,301348,1535375,11 +117330,Howard,343140,986480,9 +117331,Sgt. Kelvaney,92716,37712,8 +117332,Cyrus Kinnick,265208,11665,1 +117333,Le camelot,43904,142918,3 +117334,Kirchingerwirt,11122,38459,5 +117335,Alfred,47120,44652,2 +117336,Irina Polushubkova,64268,93549,6 +117337,Captain Higgins,286709,25879,14 +117338,Kelly,14907,77624,1 +117339,Girl on the Bus (uncredited),284052,1689329,40 +117340,Nancy Keeshin,78096,17346,2 +117341,Richard's Racing Crew,339419,1650176,44 +117342,,424014,107625,6 +117343,,116312,1296267,26 +117344,Madeleine,206647,121529,2 +117345,George Thomas Sullivan,43504,104996,6 +117346,Gibbs,281215,13729,6 +117347,Mother,47342,1837870,27 +117348,Richard Guyot (voice),197854,1213848,14 +117349,,82745,189656,3 +117350,Frankie Huber,231540,5208,3 +117351,Major von Stomm,95169,34755,7 +117352,Peter,244539,486,4 +117353,Tiberius,206514,10173,2 +117354,Father Glendinning,283384,130365,19 +117355,Spoonie,15936,15033,2 +117356,Masonesque Murderer,16083,79239,25 +117357,The Baron,50318,382,1 +117358,Marion Hillyard,109251,10083,2 +117359,Mike,11376,5530,2 +117360,Shiny,238302,67600,4 +117361,Marisa,82080,1872182,16 +117362,Attorney at Trial,171446,1208020,13 +117363,Waitress,18072,1567499,22 +117364,,204007,186703,6 +117365,Hye-ji,387886,1067849,1 +117366,Travis Parker,25674,164630,10 +117367,Guy Sangster,369885,1247,5 +117368,Jess Hilts,9841,59818,1 +117369,Cyrkowiec,157178,1138527,4 +117370,malcom De Vere,55032,656,2 +117371,Bernard,78340,2417,1 +117372,Grand Rabbin,1986,1156768,20 +117373,Clint,228970,129868,28 +117374,Estelle at age 14,108723,1446339,23 +117375,Jinbê,58878,96552,6 +117376,Dr. Anne Bonney,38460,100581,10 +117377,Amber,358724,1506902,1 +117378,Trigger,76757,1089920,34 +117379,Man with Red Tie,287636,1193605,17 +117380,Grandma Leonora,72207,1561705,21 +117381,,307649,238130,5 +117382,,73835,933331,16 +117383,Kaito (voice),357390,1253008,2 +117384,Alice,80368,1229467,11 +117385,Peter,140222,84300,3 +117386,Slave Spiritual Singer 1,76203,1344363,51 +117387,Silo Officer,209112,1390506,104 +117388,Nannina,177104,553896,1 +117389,Hamlet,106848,937,1 +117390,Charles,38027,173172,10 +117391,Robert Beattie,26301,7868,2 +117392,Su Qui,309820,1606719,5 +117393,Teacher,26882,96533,6 +117394,Granny,42709,1219410,12 +117395,Linda,19719,1817,4 +117396,Himself - Comedian,98438,1018041,1 +117397,Ted Gunther,90563,4353,2 +117398,Carla's Family #9,2143,132905,27 +117399,La reine,25353,2415,1 +117400,Vera,12536,1294,6 +117401,Doll Shopkeeper,41505,61099,19 +117402,Shirley,81475,1090417,9 +117403,Josie McBroom,9843,59860,6 +117404,Shannon Wallace,45610,133286,5 +117405,No5 Orange Manager,293660,51940,30 +117406,Mrs. Ridgefield,124115,29953,12 +117407,Man With a White Hat in the Cyclecar Driven by Juris Pakalninsh,257534,137757,8 +117408,Ryan,243935,27858,17 +117409,,38359,86753,6 +117410,Prabhas,63414,237045,0 +117411,L'étudiant Assas,85429,932040,12 +117412,Another Bystander,10362,1758884,12 +117413,Velos,9914,58762,7 +117414,Le professeur de danse,329712,1517230,5 +117415,Parker French,28448,30488,12 +117416,Delphine,72465,141635,4 +117417,Alok,41252,125931,9 +117418,"Shirley O'Brien, Gabe's Secretary",184328,135445,5 +117419,Prophet Samuel,42040,26663,2 +117420,Dr. King,192623,59401,10 +117421,Village Man (uncredited),7096,119783,20 +117422,Catherine,86828,3967,1 +117423,David Nootzie,3563,58477,32 +117424,Tracey Alexander,79466,29717,5 +117425,Jaco (voice),303857,1256603,8 +117426,Nomura,402455,82869,9 +117427,The Master,34100,8400,1 +117428,Carl Trask (uncredited),144475,3341,19 +117429,Zee (voice),9297,1579,9 +117430,Omar,339547,1465525,1 +117431,Announcer #2,57215,35509,11 +117432,Parker,183258,17328,1 +117433,Lee,222872,2059,0 +117434,,455043,1355203,3 +117435,Nisha's father,63414,585404,4 +117436,Judge Marvin Goodman,19754,1219890,11 +117437,Lopez,424488,1289925,17 +117438,Candy,416256,1514497,13 +117439,Bridesmaid,87428,203233,22 +117440,,65904,544265,7 +117441,Paula,302528,2676,7 +117442,Mercy Bennett,45020,168529,8 +117443,Henry,22396,30963,25 +117444,Jennifer,38157,132557,6 +117445,Ryan,260947,47628,14 +117446,Onomichi no ishi,18148,551805,21 +117447,Guy Prince,64972,6396,5 +117448,Charles Galloway,241930,97844,1 +117449,Zack Allen,10916,8894,2 +117450,Jacob,16131,58744,15 +117451,,224951,1171755,5 +117452,Ase Beck,1790,19111,3 +117453,Dr. Halperin,240913,30044,6 +117454,Lee,13596,1811260,31 +117455,Paparazzi,331161,1459150,24 +117456,Kid,74057,47879,4 +117457,Trinity,24914,530,2 +117458,Ruker,1825,33016,7 +117459,Officer at Border Crossing,1164,5365,14 +117460,la douairière à la Party d'Ames,52270,3367,11 +117461,Mr. Neyman,244786,781,6 +117462,Derek Sullivan,69165,80245,3 +117463,Calvin Dillwaller,21753,76621,4 +117464,Francesca,8429,4426,11 +117465,Władysław Kargul,8211,22932,10 +117466,Nancy Weston,28170,99937,1 +117467,Lale,336804,1481832,1 +117468,José de la Cruz,44591,85427,5 +117469,Julie,9298,80419,3 +117470,Wanda Goronski,80560,123012,0 +117471,Fils Punk - Jules,26566,592719,13 +117472,Gudin,68023,142446,2 +117473,Megaminds's Father (voice),38055,15009,6 +117474,Mom,77875,1471865,19 +117475,Theo Papadopoulos,173294,1788069,5 +117476,John McCanless,104297,32791,0 +117477,,321142,14947,2 +117478,Richard,263855,17402,4 +117479,Moran,47794,1081829,16 +117480,,38099,119648,14 +117481,Commodification Montage Dancer,8915,1461425,18 +117482,Hannah,10761,11705,1 +117483,Sanders,24094,60292,16 +117484,Heli Pilot,60935,1334215,15 +117485,Black Mask,76341,1734183,38 +117486,Waitress (uncredited),203321,1876181,17 +117487,Myeong-su,25649,141857,3 +117488,Golden Nuggets Girl,5646,1529463,1 +117489,Elevator Operator (uncredited),31773,1199823,50 +117490,Kirkland,24392,91563,1 +117491,The Count of Maldorais,45522,18766,1 +117492,Lee Dong-hee,180252,1299351,5 +117493,Henry,25988,382,5 +117494,,59572,1120652,6 +117495,Haley Dubois,73501,19496,7 +117496,Alexa,243683,59592,4 +117497,Himself,366696,1753493,18 +117498,Lynne,43158,71266,9 +117499,Dustin,64678,11665,2 +117500,Zorba,280617,1035407,2 +117501,Protopopov,46827,135180,9 +117502,Kanfatya,86279,87330,3 +117503,Frenchy Fairmont,28894,3754,2 +117504,Cleolanta,154371,30282,6 +117505,Sebastian,56596,1163120,9 +117506,Duchess of York,26808,192908,10 +117507,Unicom CEO,25643,583061,14 +117508,Julienne,54156,1654797,4 +117509,Tommaso,48254,72050,5 +117510,,85327,15900,6 +117511,Marmon,143380,935194,10 +117512,Vinogradova,65142,240532,6 +117513,Tom,139244,73287,4 +117514,Luisa,72419,43358,6 +117515,Christine Thayer,1640,9030,9 +117516,,182843,25810,4 +117517,Ching-fang,57100,126735,1 +117518,Ah Wong,87894,1066898,7 +117519,Buckwheat,16135,79511,16 +117520,Himself - at Banquet (archive footage) (uncredited),33740,9067,89 +117521,Margaret,14642,5131,4 +117522,Birthing Nurse,98066,1084575,25 +117523,Saïd Al Bezaaz,125623,42441,7 +117524,,28917,52647,1 +117525,Bodor,42132,125162,6 +117526,Ingunn,15440,71612,2 +117527,Countess Olga,53851,99458,17 +117528,,20646,136879,19 +117529,Snake,1661,4936,4 +117530,Nuria,347666,114463,2 +117531,María Teresa,120303,590516,5 +117532,Isaac Goldstein,19338,1209922,20 +117533,Mr. Larson,156700,948762,5 +117534,Lem (as George Stamper),43594,1585596,7 +117535,Adam Clayborne,86543,103898,1 +117536,Fisk,359471,1509227,18 +117537,uncredited,37126,18763,13 +117538,Frank Mitchell,90590,161297,3 +117539,Wife,48717,1184305,3 +117540,Bailey,180607,4691,1 +117541,Hattie Pearl,132363,66586,4 +117542,Officer #2,101325,1560984,24 +117543,Simon,53256,3702,1 +117544,Alice Russell,243568,213589,7 +117545,Father (Mr. Benjamin Fine),42623,137269,6 +117546,Bethany,417870,94428,10 +117547,Al,96433,95313,4 +117548,Teacher,270303,76677,23 +117549,,28090,1189173,56 +117550,Okiku,74126,1092937,6 +117551,Abercrombie,90932,141520,6 +117552,Alberto,17386,1045552,13 +117553,,53767,1889234,13 +117554,Middle Henry,42703,83411,17 +117555,Isabel Parades,14063,7430,4 +117556,Ariane Kerner,338,4794,3 +117557,Fertility Doctor,18908,88146,7 +117558,Courtroom Spectator (uncredited),70368,90333,11 +117559,Uncle George,140814,164452,7 +117560,Miranda,82341,933327,3 +117561,Malik,30402,820,0 +117562,Didier,137182,115742,1 +117563,Young Jackson,337073,1481005,6 +117564,Rebecca Miller,60086,90032,6 +117565,Gary Bicknell,54804,151142,2 +117566,Little Girl at the Parade,186227,1368291,21 +117567,Fashion Show Attendee,119801,1191818,13 +117568,Bouncer,71670,1739824,21 +117569,Dominic Badguy,145220,17835,0 +117570,Rolfe,8325,64,0 +117571,ACP Agnel Wilson,42966,6519,4 +117572,Il nonno,60193,132190,1 +117573,Official (uncredited),31984,1407894,17 +117574,,296225,1548543,10 +117575,Boy,20766,113505,1 +117576,Marcia Grantland,33923,12505,21 +117577,Lasse,40785,6283,0 +117578,Lawyer,34977,17756,14 +117579,,458428,1820239,3 +117580,Jack O'Leary,78734,18156,2 +117581,Kiina,22259,80109,7 +117582,Schalterbeamter,264729,51651,10 +117583,,222388,68276,0 +117584,Bambino,109417,1148762,11 +117585,Deacon Nasby,174946,103947,5 +117586,Annie,215881,92614,3 +117587,Airport Security Agent,213681,1771553,30 +117588,Snowboarder,206647,1599266,59 +117589,Mary Elizabeth,84892,52404,5 +117590,Moumou,58396,227768,2 +117591,Courtney Robinson,70404,59240,7 +117592,Tanner,206647,139549,9 +117593,Ricky Lu,331313,198149,21 +117594,Grellier,29705,47396,6 +117595,Cute Guy,8008,53582,13 +117596,Kana,1690,1154564,13 +117597,Dr. David Fielding,118716,96250,0 +117598,Pete,54893,931286,8 +117599,Joyce,80320,70564,3 +117600,Razor Baby,29542,1084791,12 +117601,Joan,10761,8183,8 +117602,Marty,32298,1229488,12 +117603,Chris Barry,29083,17444,1 +117604,Miko,1589,17781,7 +117605,Dancer at Gala,37710,1755035,51 +117606,Sergeant,252680,29934,14 +117607,Lalloo Prasad,46387,222767,6 +117608,Roy Darwin,53792,19550,4 +117609,Himself,318224,1661473,21 +117610,Steve,40368,556932,13 +117611,Luba,71322,565510,0 +117612,Burcu,361181,1254547,2 +117613,Viola's Maid (uncredited),174925,103017,24 +117614,Louie Dumbrowsky,252916,14034,7 +117615,Richard Hoover,773,17141,0 +117616,Studentka Iwona,382155,480656,15 +117617,La mère de Sarah,270400,17463,13 +117618,Ally,276550,111887,6 +117619,Roy Pulsipher,49524,1229,0 +117620,Corrie,5928,19434,1 +117621,Judge Mackin,51249,68180,9 +117622,Judge Lee,55725,176695,12 +117623,Sherm,354857,1214063,10 +117624,Mr. Braithwaite,298931,1402312,8 +117625,Minty,238302,64449,11 +117626,Rocker Zack,335970,1617174,58 +117627,John Durston,28001,99368,3 +117628,Khan,160261,85459,9 +117629,Arthur,19053,155826,17 +117630,Benjamin Brown,111479,1223454,16 +117631,Sherry,63139,75330,4 +117632,Michael Francisco,42187,93919,4 +117633,Soul One,10921,78148,7 +117634,Giulio / Narrator,84056,109143,1 +117635,ICU Nurse,331161,1459154,17 +117636,Tochter,18912,83867,2 +117637,Nurse,153161,121323,26 +117638,Student with Smartphone,329865,1646450,26 +117639,Sophie,4974,449990,13 +117640,Carla,335051,56654,3 +117641,Baba Ifa,325803,1428029,16 +117642,Asst. Radio Operator Chester,15807,95017,17 +117643,,11328,1444498,46 +117644,Detective en Guadalajara,210653,236220,5 +117645,Godzilla,3115,235722,23 +117646,Felipe Sagún,54236,1693895,14 +117647,Kaali,66247,584125,8 +117648,Agnes Beckwith,369019,1266312,2 +117649,Panurgus,93492,5817,2 +117650,Police Officer,91679,104648,28 +117651,Mary Saunders,114348,927637,5 +117652,McCann,333484,55086,12 +117653,Gracinha,97110,1076439,4 +117654,Esmeralda,80304,928347,6 +117655,Senator,177677,1529474,16 +117656,Hanukkah Party Guest,356752,1841526,49 +117657,Carla Jeans Mother,6977,5151,10 +117658,Politician,35026,55099,24 +117659,Buck,293660,215887,10 +117660,Inspector Sarten,30014,34279,11 +117661,Charlie Walker,233490,116579,2 +117662,Miss Woodville,89242,15736,2 +117663,Jens Krumborg,53693,73213,2 +117664,Dakin,93676,1782149,13 +117665,Lisa,303636,912632,4 +117666,Chief Francois Tiny,344147,1488894,4 +117667,Palmer Harris,25918,83442,5 +117668,The Archangel of Basketball,39129,14414,1 +117669,,2143,132933,55 +117670,Jocko,66125,33184,2 +117671,Punker/Simmons,40028,106665,18 +117672,Carla,373397,118763,4 +117673,Pick,218351,32437,3 +117674,Lotus Land Dancer,32657,1398169,90 +117675,Gabby,39345,10409,1 +117676,Dawn,308024,79649,7 +117677,Elliot Gibson,218778,1203524,14 +117678,Himself,2890,28729,0 +117679,Shopkeeper,218443,235424,3 +117680,Blake Richards,39779,11163,4 +117681,Ellis,24199,91345,0 +117682,Rene Cartier,71885,82338,6 +117683,UDI-mannen,382125,135120,3 +117684,Trumpeter #1 (Studio Band),244786,1503721,19 +117685,Lyuba,142746,933190,1 +117686,One of The Brian Sisters,108222,1277032,30 +117687,Dana,62289,59153,3 +117688,Judge,46190,100919,6 +117689,Aunt Gladys Linden,70753,8834,4 +117690,Cornelius 'Corny' Van Tuyl,77412,29259,1 +117691,Edith,1922,20002,9 +117692,Kiss Me-Feel Me,9899,8263,9 +117693,Skitter,24556,91786,7 +117694,Alfio Tamburini,43211,89193,1 +117695,Pilot,291866,1311057,10 +117696,Shay Baker,394822,1133684,2 +117697,Sandy,12855,81076,10 +117698,Dr. Mahmoud,43923,20644,9 +117699,Dmitriy Nagiev,267481,583453,3 +117700,Headmaster Nash,138372,21624,0 +117701,Mrs. Samuel,83354,11025,3 +117702,"Jean Balestra, le pianiste",76642,46783,3 +117703,Major Smith,130957,23008,3 +117704,Mary Murray,9756,47570,6 +117705,Gloria McIntosh,118443,49001,8 +117706,Wounded British Soldier (uncredited),297762,1635870,91 +117707,Ingegärd,128900,105099,27 +117708,Komiser,148697,1127942,5 +117709,Waitress,125490,1060114,22 +117710,Mother at Dentist,1164,582605,44 +117711,Sister,92663,1802663,5 +117712,Vääpeli Körmyn vaimo,55754,223075,10 +117713,Speakeasy Patron (uncredited),13912,30117,6 +117714,Gabrielle Chandebisse,141955,18998,1 +117715,Dorothy Mears,27114,222574,6 +117716,Mrs. Harrington / Receptionist (voice),1267,1077828,9 +117717,Prevodilica,126090,1156173,9 +117718,Amie de Carlos,43434,1128383,23 +117719,Sam Chernen,36612,95315,14 +117720,Neighbor (uncredited),53387,89600,10 +117721,Kathi König,42293,4619,0 +117722,Frieda Barton,69266,43976,6 +117723,Chad,84348,1039529,14 +117724,Captain Scarcelli,40221,58214,5 +117725,Sofia,13506,235681,4 +117726,Pepi the Poisoner,19725,20056,14 +117727,Detective Lovejoy,28090,100106,11 +117728,,299828,1255149,3 +117729,Dyrektorka,342765,1254517,5 +117730,Aida,381255,1572631,7 +117731,,75578,211214,15 +117732,Aftab Qureshi (as Ratan Rathore),103640,1169118,4 +117733,Dave Welnke,286532,132856,12 +117734,Giacomo,58080,101201,5 +117735,Clem,85648,2853,6 +117736,Eduardo,8272,22821,5 +117737,Wendy Sorenson,10694,173184,18 +117738,Sundown Whipple,43250,34130,11 +117739,Lucy,27561,60970,4 +117740,Priest,47186,66297,5 +117741,Martin Van Buren,112284,96721,16 +117742,,416569,1419363,3 +117743,Ball Guest (uncredited),52440,975597,29 +117744,Technical Sergeant Immanuel T. Evans,23861,37446,2 +117745,Window Repairman's Helper,98349,1017366,15 +117746,Zafer,69610,102912,3 +117747,Paige Thomas,364690,968006,3 +117748,Gang Member,87593,935284,2 +117749,Agent Andrews,359471,167109,5 +117750,Dad (uncredited),262841,110472,35 +117751,black noodle man,31850,998412,7 +117752,Kalikan firing-squad officer,43354,6600,10 +117753,Walt Gordon,200505,8687,8 +117754,Dole,88390,12312,4 +117755,L'assistant de production,340616,1716535,13 +117756,Motome,85836,117975,2 +117757,Groggins,29212,101943,8 +117758,,44442,1275869,0 +117759,Drew,66113,61905,9 +117760,"Tian Sheng, First prince",10109,63583,2 +117761,alokas Pelle Friman,55756,143125,3 +117762,Bragadin,122023,12517,9 +117763,Yue Siu Bo,28366,66717,0 +117764,Jared Tolson,10274,1162,2 +117765,Anderson,257447,78895,3 +117766,Taylor,83896,937751,11 +117767,Jo,2195,23170,1 +117768,Ziemowit,35021,6643,0 +117769,Woman at Party,85350,1467994,68 +117770,Le médecin,22618,1177002,10 +117771,Tellioğulları'ndan Zekiye,38794,121423,4 +117772,Piper,198365,87243,0 +117773,Ellen Shawnessy,65488,11025,6 +117774,Maxie,14387,115606,14 +117775,3rd Boy,10299,567255,18 +117776,,175924,11512,0 +117777,Mrs. Summers,55604,1010448,37 +117778,Taylor McKessie,10947,180279,5 +117779,Alsina,116312,1489873,22 +117780,"Tina, paziente della clinica",43211,306471,17 +117781,Lt. Marris,14695,8350,10 +117782,Dealer,268920,1360013,5 +117783,Captain Von Schoenvorts,27085,24498,1 +117784,Juror,214756,154937,47 +117785,,238307,225174,4 +117786,Suzuki,33333,110268,9 +117787,Igor,68634,127858,0 +117788,,4948,32092,11 +117789,Belka (voice),260310,86866,1 +117790,Kristen Tilson,12767,37917,4 +117791,Minotaur,37958,112692,8 +117792,Rosamund O'Mara,20301,34210,5 +117793,Crane,11795,71298,2 +117794,Stu,246741,1286796,4 +117795,Steph,136466,1105793,2 +117796,,253533,148052,17 +117797,Blue Squadron,330459,114253,35 +117798,Venusian Guard,33472,1580379,18 +117799,Zebedee,24432,1327,9 +117800,Porter (uncredited),32552,120793,29 +117801,King Lothar,9503,21743,15 +117802,Cyril,63831,238044,1 +117803,Menina 2,248543,1799342,13 +117804,Peyton Howard at 18,52360,1251776,10 +117805,Amir Hussein,159636,52763,0 +117806,King Henry IV,106851,8223,0 +117807,Teddy,1116,15497,1 +117808,Harriman,29705,12729,8 +117809,Young Edward Fudge,241739,1397448,4 +117810,Mr. Green,281124,34084,9 +117811,Erica Moore,73612,70241,3 +117812,Flint Sky,1579,17681,8 +117813,Medic Goldshmidt,93856,109786,4 +117814,Staff Sgt. Oberron,56527,27763,8 +117815,Madre Superiora,61217,232660,7 +117816,Popernick,78789,20795,2 +117817,Marcello Lupi,72279,224981,1 +117818,Emily Manning,157152,27268,2 +117819,'Two-Gun' Gertie Baxter,57684,34509,14 +117820,Snakehead's henchman,10610,81671,18 +117821,Bikini Dancer (uncredited),15092,1895678,66 +117822,Ice Cream Patron,381008,1784723,32 +117823,Martin Larner,31597,65618,7 +117824,"Sonnie, Bellboy (as Sonny Sands)",15788,78780,4 +117825,Filippo d'Arborio,4286,24597,3 +117826,"Ugo, fratello di Giovanni",56804,120153,15 +117827,Phebe,76203,29933,42 +117828,Marine,105077,82391,20 +117829,Hooper,85350,1467976,55 +117830,The Younger Daimon,85656,1135890,4 +117831,Braddock,19621,5049,0 +117832,"Jack, Singing Telegram Boy",98125,556861,13 +117833,Co-Ed (uncredited),43546,1278362,22 +117834,CIA Agent (uncredited),177677,1363049,71 +117835,,83346,929464,3 +117836,French Barman (uncredited),52358,120701,9 +117837,Patsy,274479,1271784,45 +117838,Julián García (uncredited),42502,31887,26 +117839,Nightclub patron,37911,861,8 +117840,Glee Club Member,19587,1337618,11 +117841,Pavloff,53853,3245,12 +117842,,342011,1509712,8 +117843,Dr. Victor Frankenstein,3072,27888,1 +117844,Emmit,59006,6575,11 +117845,Mr. Fitzgerald,70498,19426,5 +117846,"Barney Polacek, Cab Driver in Boston",20444,72680,6 +117847,"Słowikowski ""Słowik""",369444,1538881,6 +117848,Girello,82080,1871601,18 +117849,Mechanic,85196,1376758,11 +117850,Lilac,71139,9576,7 +117851,Saloon Girl (uncredited),16442,89726,35 +117852,Carter,27114,120756,14 +117853,Bitte,56596,1163121,15 +117854,Sam Cahill,7445,2219,0 +117855,Twitchy Kyle,186606,1750929,18 +117856,Dr. Mercer,21159,25816,4 +117857,Lillian Gilbreth,33839,13577,1 +117858,Paul,49343,18065,3 +117859,Ushna,8014,20197,0 +117860,,322443,1715,6 +117861,Anna Sage,28110,9599,3 +117862,Osborn Butler,102382,928619,41 +117863,Warren Stamp,39845,22132,10 +117864,Party Goer #3,199575,1438898,33 +117865,Himself,173467,16431,12 +117866,Alisa,13185,78063,1 +117867,Himself - Roaster,296192,87281,9 +117868,Hal Moffet AKA 'The Creeper',84720,931198,0 +117869,"John Hellberg, Annika's Father",31304,116509,2 +117870,Proprietor,393732,209151,6 +117871,Caroline Brooks,43546,129520,1 +117872,Frankie McPhillip,43896,35849,4 +117873,Miss Mark,76829,157254,4 +117874,Prince Hapi,10204,1100,13 +117875,Phillip Weeks,42669,96758,3 +117876,Aunt Gwen,15907,111179,5 +117877,Dr. Sue,335970,1212467,13 +117878,Claire Miller,14750,65552,6 +117879,Himself,394668,64813,13 +117880,Linda,28031,1812,1 +117881,Dispatcher,102382,1479737,39 +117882,Albert Osborne,88794,81681,14 +117883,Lenaka,340627,1113974,5 +117884,Rosita,270015,115991,4 +117885,Ab Sadovsky,101998,81801,17 +117886,Nancy Liggett,36786,84232,6 +117887,Arlene Parker,79521,14575,7 +117888,Penny Hale,43157,95624,0 +117889,Maid,206328,42000,7 +117890,Leo,16090,120749,9 +117891,Mouse / Hunters / Audience Member (voice) (uncredited),29020,33923,1 +117892,Mr. James B. Allenbury,31773,30156,4 +117893,Willy Borlotti,48805,1740095,12 +117894,Schwein,10659,121011,12 +117895,Mrs. Peabody,40719,144370,12 +117896,Fujikuro,56191,105816,5 +117897,,68192,1341809,4 +117898,,393521,1594798,5 +117899,Beaver Dad,21044,87057,7 +117900,(singing voice),261112,1479337,10 +117901,Makarand,14159,92686,17 +117902,Drooling Idiot,21619,87717,11 +117903,Afonya,20934,86745,3 +117904,Bentley Drummle,16075,97432,13 +117905,Tom Conovan,151310,105018,9 +117906,Barney Fife,151937,27726,3 +117907,Joseph,212713,103107,5 +117908,Nurse,36691,1167492,24 +117909,Himself,148807,1046088,1 +117910,Mikey,380124,1569984,12 +117911,First Ferret,116554,2272,18 +117912,Toos,108501,1197581,3 +117913,Lucia,43989,3809,7 +117914,General #3,267935,1497865,9 +117915,,92132,1190697,4 +117916,Gerald's Double,44746,1514111,17 +117917,Col. Fairchild,19665,41256,15 +117918,Zoé,300,4286,4 +117919,Yusuf Ziya Ocak,30634,106620,6 +117920,Sechster Geschworener,269165,5796,5 +117921,Peter Braley,229221,89519,4 +117922,Mama Tiny,17978,32774,10 +117923,Freddy,145668,27803,1 +117924,Hanni Bolwieser,122487,9931,0 +117925,Katy Anderson,92848,120549,5 +117926,Ahmed,98203,1109596,7 +117927,Himself,15260,223514,7 +117928,Monsieur TSF,15457,24501,4 +117929,Colonel at wedding,37628,30306,12 +117930,Jimsy Augustine,381691,1620957,1 +117931,Titus,35656,1348163,16 +117932,Frank Garmin,246403,60286,4 +117933,Lieutenant Greitzer,285,1224149,26 +117934,Duncan,172828,77089,0 +117935,Hattersley,30496,72858,6 +117936,Aurelia,508,118763,29 +117937,Lieutenant,143169,1224149,5 +117938,Hospital Patient (uncredited),2503,118385,40 +117939,General van Dorff,70864,994402,5 +117940,Gaku,35451,114306,2 +117941,Steve,19017,141399,9 +117942,Baby Face Castenega,84337,96058,5 +117943,Chiffinch,7548,52888,4 +117944,Don Attilio (Il Muto),76115,577648,14 +117945,,662,589138,10 +117946,,57701,101436,1 +117947,Soraya,8932,931681,0 +117948,Herr Pogge,798,11930,3 +117949,Elton's Fare,47186,1299570,37 +117950,Énekes,86732,1037942,1 +117951,Sir Wilkes,46806,6074,2 +117952,fanciulla rapita,338438,1462360,19 +117953,Himself,173467,15152,16 +117954,Gaby's brother,190876,1298395,10 +117955,Moïse / Grégory Liubov,170689,56024,0 +117956,Pauly,33134,1014586,5 +117957,Yeti,8014,6497,2 +117958,Taylor,36251,39995,18 +117959,Yang Yuncong,10703,66761,0 +117960,Uncle Qin,121823,131732,12 +117961,Mr Lodge,425774,1707944,50 +117962,Marta Weiss,19338,1441202,6 +117963,Kara,168259,997887,9 +117964,Gary Age 13,64328,1302468,38 +117965,Julie Rawlings,11897,19109,3 +117966,Sam,241254,3036,2 +117967,Ranger on Telephone,18569,90369,13 +117968,Renzo Shima (voice),201223,555099,4 +117969,Sadie,32166,51390,4 +117970,,10484,1676559,31 +117971,Mickey,26688,96024,19 +117972,Spencer,220515,1173,3 +117973,Scrooge,142391,550359,9 +117974,Rose Gershwin,43491,30273,7 +117975,Bhavani,329135,1435699,4 +117976,Pato,58244,1467539,11 +117977,Yoshihiko Arisawa,38625,120917,0 +117978,Na Jung-Nim,407887,496937,10 +117979,Marczyk,157178,7114,5 +117980,"Louise Poirier, the shop-assistant",151068,935328,1 +117981,Hüso,27211,590781,5 +117982,Wiktor,342765,127852,2 +117983,Al Finkelstein,245906,6105,11 +117984,Kyle,74035,425055,0 +117985,Richard,18739,1665,0 +117986,No Seung-joo,108972,1046863,5 +117987,Bob,10739,11669,5 +117988,'Mac' McIntire,102144,13297,3 +117989,Talk Show P.A.,10330,1124108,28 +117990,Kevin,58244,1504595,14 +117991,Susan Williams,70327,1059872,2 +117992,Joon-Ki's sister-in-law,267466,1335774,7 +117993,Juicy Mouth,168027,1237618,10 +117994,Uncle Roger,414610,156082,5 +117995,Russian Security,82,77351,15 +117996,Lenora Cruz,361018,1363622,3 +117997,Eric,311764,1106865,8 +117998,Chester,128215,553478,5 +117999,Karaoke bar patron,306952,1511993,53 +118000,Eddie,38356,58925,32 +118001,Councilman,98566,118756,14 +118002,Baron Tante Teufel,245324,1646,0 +118003,Maria,107443,233128,2 +118004,Brooke,290999,1326440,2 +118005,Charlie Wilson,304613,24898,4 +118006,Giddings,75564,1399611,13 +118007,Male Porn Star #3,15092,145560,55 +118008,Vincent's Grandfather,154972,233931,15 +118009,Passant,344120,1497329,9 +118010,Marion Davies,50008,29369,2 +118011,Juggler,29694,70654,10 +118012,Mama Rossini,39495,80599,7 +118013,Dilek,51334,150437,4 +118014,College Girl,356752,1841518,41 +118015,David Perkins,58903,90198,2 +118016,Narrator,262988,2226,2 +118017,Gianni Moraldi,329868,1172757,4 +118018,Tschapa,130957,1092493,9 +118019,Anna,23628,84464,1 +118020,Lin Hung,62762,1427157,7 +118021,Diana,17956,1170985,20 +118022,Minor Role,43811,111287,38 +118023,Aunt Blanche,74314,83237,5 +118024,Jack Hatch,34138,55779,1 +118025,Lord Provost,64868,47397,4 +118026,Gabbar Singh,111836,237048,0 +118027,Restaurantgjest,87654,227255,13 +118028,Detective Thompson,116327,95563,7 +118029,Alison Taylor,206328,158754,2 +118030,Sam James,30082,1140620,3 +118031,Pop,30941,91982,9 +118032,Stepan Molodtsov,65545,550740,2 +118033,Jacques,51759,144518,2 +118034,Rita,39039,14078,2 +118035,Saotome ex-girlfriend,352694,1254820,8 +118036,Kev Adams,382589,1165008,5 +118037,Sophie,24986,1339,0 +118038,Sheriff Benson,252916,85996,6 +118039,Detective Gibbs,9568,15070,3 +118040,Angelika Hurwicz,72421,1034302,6 +118041,Curly,3144,30755,5 +118042,Peppino,60193,94418,0 +118043,himself,289960,1229948,3 +118044,Haden,333091,231547,4 +118045,Deputy Prime Minister David Carlton,9298,4391,2 +118046,Rebekka,54356,150473,2 +118047,,288694,1356797,1 +118048,Himself (uncredited),4964,43120,31 +118049,Himself - Host,31067,83786,0 +118050,Rev. Elija Bliss,44690,20959,1 +118051,,197210,1650226,5 +118052,Solicitor to the Prince,70734,1618648,13 +118053,Srgnt. Steadman,294690,1390550,28 +118054,Farmer,64868,41998,5 +118055,Kevin,13390,6614,0 +118056,King George V,25143,5473,4 +118057,,229134,1047204,13 +118058,Himself,413579,164180,5 +118059,Vandalo,182415,1300918,12 +118060,Poop Jr. (voice),378236,1859935,13 +118061,Stephen Neale,21451,7124,0 +118062,Robin,43158,129295,5 +118063,Edith Guetz,2029,20851,1 +118064,Luke Ribisi,20106,6556,7 +118065,Reporter (uncredited),28000,134635,61 +118066,Lulu,80472,593084,1 +118067,Lilly,18442,52396,2 +118068,Lefort,66447,35899,9 +118069,Police Instructor,212996,612216,11 +118070,Jack Jefferson,17978,15152,1 +118071,Donna Aboukassis,270403,51095,5 +118072,,303398,86225,2 +118073,Courtney,20196,22554,4 +118074,,36236,1465376,16 +118075,Suzie Simmons,13484,80750,2 +118076,Suora,109979,1901690,14 +118077,Arun,413547,1280400,4 +118078,Luisa,241239,5887,6 +118079,Caretaker,45013,1452092,57 +118080,Lorelei,28068,31700,1 +118081,Witness Miller,42267,31463,12 +118082,Steward 2,97051,188284,15 +118083,Young Norah,13090,1803313,15 +118084,Gabriel Marcassus,105576,24366,0 +118085,Arielle (voice),286372,1352338,16 +118086,Frances,29108,102943,2 +118087,Cop on Street,78691,1802974,21 +118088,Lecturer / Goat-Man / FDR,20521,10697,3 +118089,Kamal Ekambaram,76788,144789,12 +118090,Gouverneur,7085,38124,5 +118091,Carl,18843,1905160,34 +118092,Simmons the Technician (uncredited),31984,972937,28 +118093,Violeta,85544,970559,2 +118094,Elise Freeman,32845,1507453,6 +118095,Jill Levitan,336775,16845,5 +118096,,96985,1297974,1 +118097,David Raybourne,31922,37041,0 +118098,Matt (as Jonathan Trent),18206,78662,3 +118099,Graf Grünne,457,6260,10 +118100,Zwerg 1/Zwerg 2/Riese,5393,31531,17 +118101,Himself,380057,509193,1 +118102,Margo,41496,126713,3 +118103,Woman in the Shelter,340101,1502441,48 +118104,Sam,145244,4969,1 +118105,Happy,59828,14574,5 +118106,Santa,12591,65236,0 +118107,,48341,82875,9 +118108,Second Stage Guard,134238,932310,43 +118109,Louis,14476,5414,5 +118110,White,55032,196275,8 +118111,Martin,33786,111364,6 +118112,Sheriff,10066,62753,13 +118113,,172004,27585,5 +118114,Woman,85196,1485209,10 +118115,,229134,39165,10 +118116,Marie,82157,1207312,0 +118117,Lara Lor-Van,49521,8786,11 +118118,Borja,331354,1434231,1 +118119,George,24578,11278,3 +118120,Frank Marston,4938,40202,2 +118121,Doctor,14430,109627,11 +118122,Henchman,39276,121191,13 +118123,Dushkan,25450,87003,2 +118124,Joey the Mule,43369,136898,10 +118125,Joy,86829,979432,8 +118126,,375742,1564298,31 +118127,Fish Out of Water (voice),9982,40347,2 +118128,Minor Role (uncredited),28000,110539,93 +118129,Kid #1,40990,1414722,18 +118130,Coronel Aponte,163706,1145327,10 +118131,d'Artagnan,64046,238487,0 +118132,Kern,82098,32552,2 +118133,Claire,62297,229606,6 +118134,Glorf (voice),27042,97003,6 +118135,Stacey,335869,31838,5 +118136,Eda,397717,1722982,24 +118137,Taylor Hillridge,70821,82785,0 +118138,Le docteur,3423,1078953,13 +118139,Matangi,75162,933087,3 +118140,Jeff Castle,26758,30844,5 +118141,Zeus,37958,114019,4 +118142,Extra in Swimming Pool (uncredited),31411,122982,9 +118143,Alfred Coleman,22029,96308,7 +118144,Leo Sullivan,9959,17941,8 +118145,,267977,1600866,0 +118146,Lady Scott (voice),38055,1364656,9 +118147,Vice Det. John Gentile,199373,157015,13 +118148,le beau-père,4279,35958,18 +118149,Tarquinho,267579,1315421,2 +118150,Hermann,279090,1335231,7 +118151,Sarpedon,81409,544210,14 +118152,Commendator Pecorazzi,121510,106346,7 +118153,,78323,583735,4 +118154,Angela,302802,587935,9 +118155,Sheriff Harris,55604,932309,57 +118156,The Pharmacist,305127,92754,5 +118157,Guido,42679,56843,0 +118158,Percy Shelley,332283,230680,2 +118159,Marchese Daniele (as Daniele Varcas),71133,39020,9 +118160,Eric,285245,106654,5 +118161,Jim Cramer,1726,203468,14 +118162,May,50086,1015809,2 +118163,Jason,253283,972294,7 +118164,Giovannino,169069,131683,0 +118165,Second Captive,85494,94780,7 +118166,Francis Patrick 'Tiny' Murphy (bush pilot),32921,8729,3 +118167,Père palestinien,1986,1070663,17 +118168,Joyce Su,334074,564035,13 +118169,Dancing Bachelorette,243683,1398054,33 +118170,Pili,411638,1787126,6 +118171,Police Desk Sergeant,64928,34294,23 +118172,Model House Tenant,91679,1058651,59 +118173,Mourner,2001,1673610,85 +118174,Luke's Father,35026,938807,8 +118175,Lila's Father,153854,1296203,7 +118176,Negro,11647,235189,12 +118177,Bomb (voice),153518,62862,2 +118178,Himself,173467,71766,14 +118179,Mary Warren,206197,5526,1 +118180,Yu Nian's Lover,88922,239079,9 +118181,Jason,296025,1011103,8 +118182,Zach,413417,109441,5 +118183,Kiet,168259,57207,8 +118184,Lloyd,59296,1214673,12 +118185,Monkey Jaw,1579,42019,25 +118186,Mme. Durand,57866,21878,10 +118187,"Flore, l'infirmière",152989,1179880,11 +118188,Waiter,288281,1346694,14 +118189,Cindy,302666,1158832,1 +118190,Eben Folger,43470,4302,3 +118191,Himself,111332,32747,13 +118192,Peter Heg,96497,9133,0 +118193,Machi,139519,1296199,7 +118194,Melman (voice),10527,14409,2 +118195,Liverpool Joiner,29805,166796,45 +118196,Heathcliff / Spike (voice),193650,33923,1 +118197,April O'Neil (voice),1273,11863,1 +118198,Corin,19103,151797,7 +118199,Guest with the Grand Duke,18651,1269196,78 +118200,Harry Stuhdreher-One of The Four Horsemen,43812,1317954,12 +118201,Kurt Devlynn,253250,41755,1 +118202,April,39013,6726,5 +118203,Woman's Escort,31993,56924,38 +118204,Daffodil's lover,33338,73774,4 +118205,Ms. Grunion (voice),82703,19,3 +118206,Gale,47462,1334122,1 +118207,Camille Desfeuilles,286512,233531,3 +118208,Santa Kid,41171,1392756,46 +118209,Crocket,76297,26457,3 +118210,MI6 Intelligence Officer,146216,1169007,29 +118211,Dorian Holley,13576,1449376,3 +118212,Kommandant,126415,51741,4 +118213,Detective in Locker Room,49524,1592996,14 +118214,Val Stevens,121848,4110,0 +118215,Mikos Stenopolis,5421,33807,0 +118216,Elena,33273,587930,5 +118217,The Girlfriend,89722,937760,0 +118218,Spuds,40799,1776671,6 +118219,Horseman - Pestilence,246655,1623329,16 +118220,Ung Erlend,57438,226171,2 +118221,Leung Sheung,182127,986480,6 +118222,Himself,267955,76113,3 +118223,Antonia,45949,5759,4 +118224,Caterina,58400,586953,5 +118225,Winchester Rep,616,7676,2 +118226,Boy,147722,1271019,27 +118227,Amiconi,62397,1089569,14 +118228,Boy at St. Mary's,61225,1542824,25 +118229,Damon,192137,1218088,4 +118230,Irma Hornady,85009,106583,4 +118231,Biker,335970,1687922,68 +118232,Polish man 2,323315,1882875,5 +118233,Masseuse,70074,946356,16 +118234,Kat,300690,213395,1 +118235,Melvin,142402,1117077,11 +118236,Kamrern,128946,1088223,19 +118237,Liam,362180,1419616,3 +118238,Hans Faste,33613,143391,15 +118239,Dr. Daniel,287483,536822,4 +118240,Capt. Von Barring,21840,87956,2 +118241,Claire Porter,222461,222139,3 +118242,Jules,39345,13591,5 +118243,Marian Hardy,116232,90075,1 +118244,Snyder,146216,191747,38 +118245,Thomas Wayne (voice),321528,34947,10 +118246,Edgar's Niece,88794,1258702,16 +118247,Juan,114333,103517,4 +118248,,292033,1177579,5 +118249,"Simran ""Sim"" Chopra",20296,85715,6 +118250,Lucia,206647,28782,4 +118251,Older Rachel,39334,122678,2 +118252,Inya,1691,37016,9 +118253,Athena,290762,1512451,11 +118254,,40146,1055173,8 +118255,Steven Connolly,1259,37049,5 +118256,Boy at Football Game (uncredited),42345,1584544,9 +118257,Country cousin,128669,30274,8 +118258,Doc Madison,28115,3140,3 +118259,Cousin Florence Lascelles,157843,1383391,5 +118260,Susan,209401,1723617,19 +118261,Cannonball Taylor,7459,1856,19 +118262,Madame Laffont,26152,146495,19 +118263,Himself,37038,132879,15 +118264,Goldwyn Girl (uncredited),108224,64838,13 +118265,Jared the Airport Security Guard,302699,466505,11 +118266,Madame Gaillard,1427,17069,5 +118267,Waitress / Katie,88005,94098,8 +118268,Jared Quinn,184710,1167734,4 +118269,Kathy Palmer,27036,96816,4 +118270,Madre di Adalberto,59040,1871294,20 +118271,Hanna Schiller,1247,678,8 +118272,,236368,120638,3 +118273,Michael Andrews,356500,81683,6 +118274,Neomorph,126889,1792879,16 +118275,John Brown,43806,31497,37 +118276,Lou Daniels,130917,3142,4 +118277,Tiger-Brown,42837,4344,2 +118278,Lewis Romero,9286,53185,7 +118279,Molly,39053,3141,2 +118280,So Hwa / Yon Hwa,32158,1237976,2 +118281,Rishabh,66702,42802,0 +118282,Nils Ekholm,72785,48572,3 +118283,The Brute,105539,32192,6 +118284,Man in Orange Suit,76640,968889,16 +118285,Detective David Tapp,176,2047,1 +118286,Max,302802,1008541,0 +118287,Fujiko Mine,30143,109747,2 +118288,Bus Driver,166671,108,4 +118289,Mitsuko Muto,134350,1018945,2 +118290,Sheriff Dave Newsome,1586,41247,5 +118291,Anna Shetty,347807,85730,0 +118292,le marié,78210,1904024,10 +118293,Lt. Colonel Ed Walsh,333352,13079,12 +118294,Mike,447758,1665083,19 +118295,Samantha,414977,212044,0 +118296,Mac Brody,43117,45369,6 +118297,Cole,92635,916072,5 +118298,Billy Corbett,171738,1154282,3 +118299,Lord Wicked,32654,70108,11 +118300,Scribe,1966,146140,28 +118301,Médico,296288,571469,10 +118302,Anna Altmann,114790,46039,0 +118303,Colins,118957,272408,12 +118304,Baron Manfred von Richthofen,84285,29426,0 +118305,Maid (uncredited),37628,1483345,24 +118306,Kim,90590,158949,7 +118307,Daníel Sævarsson,37700,118345,2 +118308,Janine,10071,41091,2 +118309,Sovéskur sendiráðsmaður,72596,1114546,35 +118310,Typist #1,28131,99793,14 +118311,Connie Blake,53949,108298,8 +118312,Hua Manlou,64304,94972,5 +118313,,17007,37043,3 +118314,,254435,592656,4 +118315,Dr. Semsar,420743,1587289,8 +118316,Molojec,31273,107885,32 +118317,Captain Ratter,75363,1023537,9 +118318,Helen,122928,1099007,8 +118319,Hat Thief,11509,235345,16 +118320,Dog,336004,9779,7 +118321,Chinese Doctor,240832,1086249,33 +118322,Emperor Li,14449,76913,1 +118323,Sarah (Geneva Student),266856,1503911,36 +118324,Deborah,214,2676,5 +118325,Silent Wife,310593,105920,24 +118326,Кот Ученый (озвучка),83865,238487,6 +118327,Joseph,32088,24696,7 +118328,Gaulist (uncredited),22584,1472994,26 +118329,Maudie McMinn,17144,1063,1 +118330,Gregory Lind,94468,5694,0 +118331,Betty Vogel,105945,1039207,3 +118332,,284189,1158662,7 +118333,,202238,90263,5 +118334,Toppers faster,21282,137362,16 +118335,Mr. Smith,49009,228,3 +118336,Maria,540,56457,16 +118337,Mrs. Chopra,16987,1019964,14 +118338,Luna,265226,1543964,9 +118339,Acme Driver Bill,250332,90369,25 +118340,Captain Davy Jones,58,2440,4 +118341,,86985,1523039,23 +118342,FBI Special Agent Scanlon,213681,168452,4 +118343,Enfant gare,98277,1849113,36 +118344,Security Guard,60965,232050,23 +118345,Jerry Cohan,3087,19020,2 +118346,Elk,45522,105049,9 +118347,Teacher,301804,128628,5 +118348,Mickey Dunn,4931,69026,13 +118349,Chryseis,81409,237380,6 +118350,Ambro Trader,301228,43554,10 +118351,Uta,239619,142653,1 +118352,Uncle Antoine,74689,1191548,3 +118353,Waterfront Cop,52520,211958,9 +118354,"""Stager""",65713,86693,10 +118355,Post Office Cashier,76543,112825,10 +118356,Daniel Massu,72278,109474,0 +118357,Kat,257345,183926,10 +118358,Haley Davis,407531,1330040,4 +118359,Malia,82631,112742,5 +118360,Julian Garrison,24939,59150,2 +118361,,244956,20337,15 +118362,Mr. McCandless,37686,1115118,16 +118363,Kamil's father,341007,1706336,6 +118364,Lieutenant George Muffat,144111,113513,4 +118365,Neli Casaccio,146596,98509,6 +118366,John The Baptist,142984,55206,6 +118367,Jonathan Wilk,35921,40,0 +118368,Sandman,50318,61649,14 +118369,le passant refoulé par le taxi,64934,550034,4 +118370,Billy Bedlam,80368,26854,7 +118371,Italian Captain,59230,1145327,7 +118372,Joe Thomas,257907,1221913,1 +118373,Cao,458335,5659,3 +118374,Heather Hills,82650,1006731,7 +118375,Interviewee,32694,97351,25 +118376,Seaka,9914,54627,9 +118377,Volodja,257534,1297697,5 +118378,Frodo Baggins,122,109,0 +118379,Sgt. John North,97618,87400,0 +118380,General Viljoen,18927,1150519,6 +118381,Himself,45576,570199,4 +118382,Desert Siren No. 1 / Alien Hocker / Parking Attendant,38134,1690413,10 +118383,Security Guard,31634,1235962,12 +118384,Himself,383809,1581916,3 +118385,Jennifer,29101,1112246,14 +118386,Prison Phone Operator,171446,89662,17 +118387,Alva Hodson,45938,19616,7 +118388,Grandma,241742,1552955,9 +118389,Police Photographer,6973,193285,24 +118390,Sasha,14123,93376,0 +118391,Diane,110909,5578,2 +118392,Vanzi,64465,22383,0 +118393,Phillip Woode,22307,157506,4 +118394,Vivian Claremont,245906,34901,14 +118395,Waiter,23397,1893430,15 +118396,,205864,1094739,5 +118397,Moody,13954,76538,6 +118398,King Soloman,227325,1354722,9 +118399,Giulia,41427,126440,1 +118400,Chief Gary Benson,26801,97007,7 +118401,Mrs. Raines,78691,136482,13 +118402,Cool Papa Bell,56601,20959,15 +118403,Juicy Burgers Worker,31462,1896,17 +118404,Woman #1 / Lacey,88005,440414,22 +118405,José,134238,161702,15 +118406,Dalton Joiner,140222,970216,6 +118407,Marguerite,58081,10262,3 +118408,Manfred,147360,590146,3 +118409,Nagamaki Host,218778,1254620,31 +118410,Neighbor,308269,1447888,12 +118411,Vernon Castle,18651,30181,0 +118412,Frau Besig,1655,18399,1 +118413,Governess,24973,133459,58 +118414,Ms Greeley,343934,11150,5 +118415,,84774,86762,8 +118416,Grandma,294093,1420249,4 +118417,Frau Becker,203833,571188,18 +118418,Julie,337958,395846,2 +118419,Reporter,19545,235386,31 +118420,Ryan,335869,39391,2 +118421,Bruce,22051,1634919,19 +118422,Reynaldo,222339,105082,5 +118423,Philippe Fouquet,40693,20113,2 +118424,La mère de Milana,54155,1158464,9 +118425,Andi,352498,1562959,11 +118426,Dente,70666,1635952,57 +118427,Miss Bryar,72847,115366,13 +118428,The Great Escapo,145220,91606,9 +118429,Bernie Fishbine,82868,1206,0 +118430,Dieter Bohlen (voice),9551,57916,1 +118431,Inshû Manjôme,39123,63706,6 +118432,Supreme Leader Snoke,140607,1333,8 +118433,Cowboy Hat,152748,79416,12 +118434,Visitor in Tussauds,27112,83910,13 +118435,Jebin,236808,1187398,0 +118436,Stefan,293982,1366022,12 +118437,Edward Cross,414067,63859,4 +118438,Ted's Court Gallery (uncredited),214756,1586843,38 +118439,Peter Pam,389630,1538801,6 +118440,Blinker #1,25132,1104323,22 +118441,Nastasya Filippovna,63958,238308,2 +118442,Col. Guarjarado,1810,50574,12 +118443,Marion Cotillard,382589,8293,1 +118444,Sergei,70881,80567,2 +118445,Bruckner (as Jason Robards),74911,100078,3 +118446,Francis Roman,99313,26887,3 +118447,Thomas Jefferson at 11,52360,1044770,17 +118448,CIA Agent (uncredited),177677,1322312,72 +118449,Olivier,44680,131337,6 +118450,'Fuzz' Cameraman,14923,52260,22 +118451,Ian,24123,44221,1 +118452,Himself (Cameo Appearance),329135,1435702,8 +118453,,52612,4395,8 +118454,Matty Asher / Dead Matty,38134,1774039,4 +118455,Jim Scott,242382,34597,1 +118456,Dawn Campbell,1599,3489,5 +118457,Bob's Wife,16005,1189227,10 +118458,Mr. Hau,2463,1415786,8 +118459,Benson Tropp,37301,30527,4 +118460,,175791,120132,1 +118461,Mary,79995,6588,1 +118462,,406992,59841,6 +118463,Declan Fitzpatrick,33314,3035,0 +118464,Muharrem,4887,90282,0 +118465,Anderson,61430,48961,5 +118466,Franklin,55152,558445,13 +118467,Hellie Cooper,24927,169576,4 +118468,Tama,209032,553069,17 +118469,Mike,200511,50095,2 +118470,Dimitri,29108,118600,9 +118471,Alexandra,400552,5645,6 +118472,Sjöfn,320736,110903,1 +118473,Kommissar Milewski,75969,3841,22 +118474,Pfandleiher,226001,23750,3 +118475,Taxi Driver,428493,1452666,8 +118476,Petrakis,331958,1260072,1 +118477,Horatio - Crewman (uncredited),22584,97043,23 +118478,Alan Stewart,40085,12312,5 +118479,Neil Anderson,2979,85819,1 +118480,Pandi Ravi,372226,1114581,1 +118481,Doug,28741,101812,1 +118482,Rango (voice),44896,85,0 +118483,Jovan,284154,31648,4 +118484,Charlie Williams,4982,3977,19 +118485,Himself (archive footage),136786,6648,1 +118486,Corman,241927,418,2 +118487,Nordic Vampire #2,346672,1905796,36 +118488,Monaco,61217,232661,9 +118489,,53693,1443153,16 +118490,Don Rosenberg,141733,62172,4 +118491,General Archer,14008,1393344,8 +118492,voice,86700,933508,2 +118493,Muhtar,140485,545841,3 +118494,Stranger,14615,121224,11 +118495,Detective Sam Wagner,27999,7664,0 +118496,Mustafa Na'amne (as Loai Noufi),128154,1058085,3 +118497,Michael 'Mike' King,75315,14965,2 +118498,,73835,1606270,17 +118499,Widow Blake,81687,2929,9 +118500,Rival Gang Leader,42553,29959,4 +118501,Matt,42187,1488887,8 +118502,Peter,43526,1675048,5 +118503,Dando's mother,24424,132115,12 +118504,,11196,1167833,12 +118505,Humphrey Baxter,140032,85359,6 +118506,assistente del sindaco,43548,1140832,27 +118507,Dr. Nathan,65456,188334,2 +118508,Pudgy,44669,95668,6 +118509,US Officer p.o.w,227306,1328711,53 +118510,Long,25784,111185,1 +118511,Yuhara,25659,571501,3 +118512,Frank Rogers,20361,85983,5 +118513,Richard D'Angelo,150338,15635,10 +118514,Susan Howard,52360,115366,19 +118515,Raphaël,255913,78221,9 +118516,Herself,43514,80994,9 +118517,Kid,52943,1825709,12 +118518,Rival Gang Member (uncredited),42553,8841,16 +118519,Trucker,3716,1406140,19 +118520,John,241374,47178,2 +118521,Vladislav's Victim,246741,1780273,26 +118522,Frank,81182,973,1 +118523,Richard,202215,18177,2 +118524,Paul Julius Reuter,109716,13566,0 +118525,TV Announcer,30155,1577206,11 +118526,Marlon,115276,30433,6 +118527,Elliot,18208,77000,5 +118528,Gala Waiter,209112,1696236,123 +118529,Lionel,24170,24816,2 +118530,Ben Ragan,45215,13578,3 +118531,Alain's Redhead,244580,136500,13 +118532,Goku,126963,103551,24 +118533,Bum,345915,60286,18 +118534,Ruslan,76438,235115,3 +118535,Seine Haushälterin / Housekeeper,55544,2898,2 +118536,Whitey Colton,60140,4071,2 +118537,Bogdan,56292,508582,7 +118538,Carmen,2009,1628035,18 +118539,Sean's Mom,339994,1593374,28 +118540,Doctor anciano,362178,1549534,5 +118541,Donald Duck,67130,78077,4 +118542,Joe Gill,35381,11065,14 +118543,Debbie,97630,1215663,27 +118544,Il dottor Marini,66893,227308,7 +118545,,77986,558015,4 +118546,Frank Scacciapensieri,83714,6541,4 +118547,Restaurantbesitzer,269258,234907,5 +118548,Mr. Tong,248376,1622944,21 +118549,Hayil Gate Keeper,157843,1159405,34 +118550,Maki,84508,1083307,10 +118551,Glader,198663,1415410,19 +118552,Mrs. Acres,154537,19455,5 +118553,Helen,240745,1660460,15 +118554,Lauren,177677,41894,7 +118555,,19812,121522,9 +118556,Butch Lorado,53576,90000,4 +118557,Wounded Warrior,168616,1150495,0 +118558,Fr. Mike Corridan,340275,3036,6 +118559,Lili,1254,19119,0 +118560,Miriam Chatwill,47410,5942,2 +118561,Mathilde,393407,4273,5 +118562,Officer Ritter,165864,58058,4 +118563,Issac,84577,10843,2 +118564,Futuristic police,269173,37293,16 +118565,Detective Charles Mendoza,33592,56183,3 +118566,,285685,1359582,9 +118567,Josífek Zajíc,18352,1191846,23 +118568,Sun Toya San,118139,85848,1 +118569,Deflated Husband,32577,11108,11 +118570,Sylvester Josephson,19661,34597,3 +118571,Louise,177047,59860,3 +118572,,296313,4459,10 +118573,Georges Sand,129553,86104,3 +118574,Tracy Meltempi,44388,46423,2 +118575,Neighbor Girl (uncredited),52360,33716,26 +118576,Bridget Sullivan,243568,1685904,6 +118577,Master Blackwood,10257,56861,4 +118578,Angelo Pincelli,38792,14814,2 +118579,The Child,70575,558880,1 +118580,Contest Winner,58244,1050988,26 +118581,Helen Kushnick,30330,8534,0 +118582,Doctor,44716,1119438,9 +118583,Major Domo Flammand,31532,30262,10 +118584,뇌전 (Noejeon),41441,1307608,3 +118585,Taxi Driver,10077,62939,18 +118586,мл. лейтенант Игорь Суслин,72614,1093400,1 +118587,Prof. Mallroy Baynes,6980,51756,9 +118588,Joep,115929,225048,1 +118589,Ernest (voice),126319,2192,1 +118590,John,110502,21510,2 +118591,Rawley Barrett,13437,1273502,8 +118592,Junkie,27814,1856477,13 +118593,,85836,1369184,14 +118594,Beth Raymond,6933,27855,0 +118595,Teresa,57996,1894242,20 +118596,Menchu,80280,256062,7 +118597,Awards Presenter,173294,1231420,21 +118598,Naval Ensign (uncredited),22584,115308,12 +118599,Bart,230211,52167,4 +118600,Margaret,354857,1251103,14 +118601,Motya,280422,1337735,2 +118602,Bridesmaid,157384,1077583,10 +118603,Dan Miller,24731,1084740,6 +118604,Turkish Spy,207636,952815,11 +118605,Phoebe,180305,1212271,9 +118606,Pontius Pilate,335778,22109,4 +118607,Lt. Lally / Philosophical Biker,15316,568321,17 +118608,Jodi Chang,10829,67020,2 +118609,Zhenya,429174,1305990,0 +118610,Vasili Buslai,10235,67503,1 +118611,Capt. Baker,17306,81596,1 +118612,,60199,2171,5 +118613,Buzz Jones,111582,30006,3 +118614,Belgian Butcher (uncredited),297762,1743005,102 +118615,Minor Role,28421,1186832,38 +118616,Police Captain 'Iron Balls' Delaney,30941,14562,3 +118617,"Anker, flute player",39284,541562,9 +118618,,13506,80999,11 +118619,Chief Ted Nallen,68387,61164,31 +118620,Olja Miranovski,148034,6781,4 +118621,Sniper,333385,1381389,21 +118622,"Maréchal, the book maker",66812,1556292,13 +118623,Old Ouside Attendant,29610,98527,7 +118624,Yancy,32068,69934,7 +118625,Philip Evans,15794,78793,5 +118626,Revisor,72054,82537,4 +118627,,71725,1136709,7 +118628,Himself,148807,1088703,4 +118629,The Girl,32708,1153608,1 +118630,Iris,97051,29221,0 +118631,Driver,23515,1440859,12 +118632,Jake,11509,1269,2 +118633,Michele Mercier,9629,6103,9 +118634,Hector,32286,58982,2 +118635,Thomas A. Edison,43811,12147,0 +118636,Leslie Jenkins,98066,74930,8 +118637,Loony Bin Jim,13056,6806,4 +118638,Lucy Hawking (New Born),266856,1503907,29 +118639,Roger,172828,17401,3 +118640,,317246,1412428,1 +118641,Shane Gulliver,14531,86133,1 +118642,Rat Girl,375366,1885894,12 +118643,"Samal, sorella di Asa",8939,584306,0 +118644,Corrado,5165,41781,4 +118645,Lorenzo Marin,231176,1467351,9 +118646,Diner Patron,26518,1284629,9 +118647,Kovil Kutty,147815,1266840,9 +118648,Charles Lepicard,59434,24379,1 +118649,Bob Hanson,22894,6065,1 +118650,Colin Ware,21544,5472,0 +118651,,27276,551860,51 +118652,an examination professor,49961,1189337,22 +118653,Stella,262958,1537737,24 +118654,Princess,65131,99261,2 +118655,Greg,62492,11365,1 +118656,DI Craig Stokes,55846,114019,4 +118657,Dana,369883,1690581,15 +118658,Joseph Emery,146315,41687,2 +118659,Casey Caraway,393732,1008607,0 +118660,,62614,121780,3 +118661,Bus Driver,168616,16909,4 +118662,Percy Nilegård,38789,79171,2 +118663,Piotr Korolewski,168819,7120,4 +118664,Adolphus Cusins,38770,35321,1 +118665,David's Father,8368,8654,5 +118666,Korrok (voice),75761,24362,14 +118667,Dr. Carmichael,38269,98458,3 +118668,"Dr. Balakrishnan,",134474,1292669,15 +118669,Dee Bishop,41857,4299,1 +118670,Carla (voice),172385,1335646,16 +118671,Wei Kong,10275,1342850,11 +118672,The Bar Owner,63831,45152,4 +118673,Jake Bryant,83735,931219,1 +118674,Kalai,368006,215912,16 +118675,Robert,12169,77860,0 +118676,Ken,46368,44792,9 +118677,Gervais Beaulieu,11421,32885,2 +118678,Dart Girl,71866,1103656,4 +118679,(as Santiago Borrutxaga),110001,1696391,32 +118680,Bill Turner,183218,34285,2 +118681,Olivier Voke,64437,2168,3 +118682,Maria Elena,352094,232262,9 +118683,Manager,107705,304586,5 +118684,McLeod,3484,32139,7 +118685,Tunnel Rat,17421,1214184,18 +118686,,85658,1291103,3 +118687,Joshua,101325,27972,1 +118688,Additional Voices (voice),269149,1610449,35 +118689,Dr. Samuel,403570,1238225,13 +118690,Mayor Claire,8464,55155,6 +118691,Himself,142478,12243,7 +118692,Truck Driver,39995,1089978,2 +118693,Kioki,1415,18975,6 +118694,M. Persinnet,300,4292,10 +118695,Anne,255343,228714,5 +118696,The Wasp,14609,15761,1 +118697,Gleb Golubev - son,60189,230719,2 +118698,Chirrut Imwe,330459,1341,3 +118699,Gonzales - Henchman,176867,34103,31 +118700,придворный\пациент доктора,65131,589048,9 +118701,Marissa,50647,113224,11 +118702,Janos,8316,49767,10 +118703,Gloria,382591,1576994,3 +118704,Himself,84309,1855573,5 +118705,Suki,97614,1207360,18 +118706,Adjudant Caesar,42641,38046,3 +118707,Tourist (uncredited),337339,1807063,74 +118708,Vito (voice),411221,19854,6 +118709,Constance,18442,101250,1 +118710,La femme de l'ambassadeur,34280,34675,11 +118711,Mr. O'Hara,36634,22603,10 +118712,,62741,81000,4 +118713,College Freshman,228970,1463282,54 +118714,Joseph,293380,78439,2 +118715,Cammie,64720,938309,6 +118716,Jonah Seimeier,252724,144227,2 +118717,Doug,274504,1547513,17 +118718,Vendor,424661,1706742,11 +118719,Journalist (uncredited),206197,1084956,45 +118720,Rudy,346443,1138605,2 +118721,"Catherine ""Keechie"" Mobley",44190,10023,0 +118722,Jackson,43489,98571,3 +118723,An American soldier,8429,54937,8 +118724,Dewey Kid,23367,95400,48 +118725,Onur,37570,238939,0 +118726,Leonardo,98566,1163622,5 +118727,Carina,28062,136758,6 +118728,Ibu Hatela,141603,53362,9 +118729,Jim Cotton,166161,1429470,9 +118730,Mitsuo,27843,68988,3 +118731,Rebecca,1382,53891,7 +118732,Olivia,173847,78533,1 +118733,Marcheron,74822,34679,5 +118734,Mulgarath,8204,1733,2 +118735,Hotel Maid,172445,1395652,5 +118736,Mary Richards Cronin,252724,21277,0 +118737,The Woman Who Rocks the Cradle,3059,8828,0 +118738,Rita,391618,4371,10 +118739,Delamotte,4516,27880,4 +118740,Superman/Clark Kent,142064,175922,0 +118741,Dr. Tunde Jonathan,30139,105762,1 +118742,Colonel Salim,28270,122007,5 +118743,Miya,332827,1658595,11 +118744,Harry (as The Merry Macs),33541,1423925,6 +118745,Trentenne,43544,129576,11 +118746,Marcia,228205,129104,4 +118747,Kader,28417,1125197,6 +118748,Aidan (voice),15906,59311,4 +118749,,347835,23915,5 +118750,Mrs. Emily Hardy,43846,117414,2 +118751,Madame,42188,6019,11 +118752,Eva,337,6552,7 +118753,Er Zagaja,52914,1647407,11 +118754,Lester Brady,34650,14452,6 +118755,Mr. Fiorello,167073,1233146,19 +118756,Tommy Skakel,56744,1357300,2 +118757,Doctor (scenes deleted),26503,29433,8 +118758,Sonjas Mutter,114931,1073539,3 +118759,Suzette Micheline,52847,82407,0 +118760,,37959,1117062,8 +118761,Dixie Pomeroy,42678,120758,4 +118762,Christie,76640,1144930,12 +118763,Gijs,24199,91346,2 +118764,Gigolo in Beach Hut,28682,101604,16 +118765,Niima Scavenger / Forest Stormtrooper (voice),140607,60279,76 +118766,SWAT Officer,273481,92754,24 +118767,Gus,14012,424,6 +118768,Hagman,75138,390552,3 +118769,Johnny Krieger,262522,3491,8 +118770,Yasemin,271954,1380698,7 +118771,Nurse Mary Lamont,153165,41245,2 +118772,Willa Mae,43142,39551,3 +118773,,60457,97880,8 +118774,Major Chauhan,140883,84956,5 +118775,Sacha,12169,236615,10 +118776,Rakesh,80281,1080015,8 +118777,Festival Committee Member,130507,3245,27 +118778,Aunt Morgan,116780,13568,2 +118779,Enrico Puzzo,15640,22383,6 +118780,Pascagli,27973,106091,19 +118781,Dish Vendor,99909,119548,42 +118782,Tony,91571,1352,0 +118783,Railroad Telegrapher,250332,227974,29 +118784,,412103,1701474,3 +118785,Carol Wainwright,9890,60020,17 +118786,Prof. Walter Zarrow,277710,8975,0 +118787,Dame de service,54155,1182987,16 +118788,Pätkä,120280,232310,1 +118789,Anna Greene,227700,527313,1 +118790,Edoardo,49850,556722,2 +118791,Favorite of the Harem (uncredited),3059,1522077,80 +118792,Mel,171337,1156307,5 +118793,Inmate Socked by Saint Louis (uncredited),72602,4303,6 +118794,sè stesso,42441,56218,7 +118795,Larry,84060,1129686,7 +118796,Lucille,126832,7032,2 +118797,Allgood,5552,12983,8 +118798,מיכאל,43083,129243,5 +118799,Marcie,16985,1251213,11 +118800,Carsten,294483,1366984,13 +118801,Erica Long,284296,17773,3 +118802,Lucille Gordon,121848,20365,1 +118803,Santo,58615,1607203,10 +118804,Himself,211411,203696,0 +118805,Girl,31993,1467331,28 +118806,George Clews,15264,100920,11 +118807,Manny,30036,34094,13 +118808,Chica,109477,1873426,3 +118809,Nadia,37645,432189,22 +118810,Sylvia,16985,31507,7 +118811,,126227,825,1 +118812,Pat Damiano,128270,4691,1 +118813,Tin Lung / Er Long,37030,1059241,2 +118814,Pete Duckman,354287,75711,1 +118815,Monique,369885,1348474,8 +118816,Radha,353533,1103227,14 +118817,,238436,1272931,4 +118818,"Mr. Carmichael, Val's editor",48136,136129,7 +118819,Jessica,325712,1647554,6 +118820,Evelyn Fletcher,126083,82383,5 +118821,Irene's Girlfriend,18651,1064444,28 +118822,Louie,100528,129549,14 +118823,Rudy Kosterman,26204,14063,4 +118824,Saloonmusiker,1659,18451,15 +118825,Young Diana (8),297762,1829985,7 +118826,Gina,11643,24602,6 +118827,Chris,38065,1496067,9 +118828,Valerie,45726,103079,5 +118829,Rupert,173294,87096,12 +118830,"Andzia, żona ""Maho""",382155,1522829,24 +118831,Sancho,94182,11496,7 +118832,Nasty Alien (voice),86828,280,16 +118833,Flower peddler,96702,141342,13 +118834,Woman In Apartment,136466,164094,0 +118835,Kira,226140,61778,11 +118836,Billy Minsky,42648,827,7 +118837,Student #1,13600,1559187,19 +118838,Matilyn,118293,1147576,3 +118839,Mor,56937,74723,10 +118840,Crystal Allen,13972,8170,3 +118841,Connie Warren,242382,1269633,13 +118842,Marie,8588,64986,6 +118843,Elvis Presley,40047,6856,0 +118844,Billy Raduziner,18070,95645,14 +118845,Her Father,51358,10525,2 +118846,Girl on Train,62143,280847,39 +118847,Joan Deerfield,6973,4038,2 +118848,Eve 'Evie' Tozer,19606,29710,1 +118849,Magazine Interviewer,256924,17039,7 +118850,Lords Melchett / Frondo,51247,11275,3 +118851,Valentina's grandmother,142757,1117922,4 +118852,Alicia,14660,35472,2 +118853,Evil Eye,183039,109864,3 +118854,Bob Jensen,40205,76828,5 +118855,Lex Luthor (voice),17074,6574,5 +118856,Joey Matthews,72313,44728,0 +118857,Hill,245175,1218183,7 +118858,Brandy,94176,39552,1 +118859,Laura,28209,100112,8 +118860,Filippo Santilli,54309,1789277,9 +118861,Achille Frossin,65646,1161042,6 +118862,Molly's Mom,302528,1470351,16 +118863,Dario,81787,1332413,7 +118864,Paramedic,55825,33192,7 +118865,The Foot,43700,129776,2 +118866,Gabe,369033,64825,4 +118867,Carly Jones,10066,25837,0 +118868,Marco,151911,4958,1 +118869,Perce,88012,84364,12 +118870,Rooster,109417,31136,2 +118871,Bette Lustig,18633,58068,10 +118872,Geneviève Mazet,8070,18208,9 +118873,Bogdan Bilogorac,284154,36651,2 +118874,Barbulovic 'Barbool',71725,1047159,3 +118875,Gwyneth Hayden,296456,22082,1 +118876,Girl #1 at End,48885,1020079,10 +118877,Ceku,24426,66981,1 +118878,Dancer,185111,1663380,6 +118879,Flugpassagier,217412,1817100,27 +118880,Bill,39800,8785,7 +118881,First Worker,168541,1047221,14 +118882,"Moorhouse, a Pilot (uncredited)",103938,122984,15 +118883,Eugénie Clark,332794,1774432,14 +118884,Messenger #2,290764,1449091,13 +118885,,54959,141336,14 +118886,Trooper with Joe,41234,153638,15 +118887,candidato al miracolo,315319,1293959,6 +118888,Natasha,18214,1267675,8 +118889,Balloon Game Carnie,5172,982297,52 +118890,The Iceman,95169,975692,12 +118891,Sheriff Colin Baker,11577,14253,21 +118892,Messenger,1271,68278,16 +118893,Maj. Royal B. Demming (as James Milhollan),19968,93798,7 +118894,Ginés,331642,30358,6 +118895,,293654,1257143,0 +118896,"Fjellmannen, the Killer",21786,1332335,5 +118897,Drunk Santa,268920,1754441,41 +118898,Himself,377151,1579119,4 +118899,Indira,40998,141705,1 +118900,Therese (jung),277968,1898497,23 +118901,Corey,250332,1090630,11 +118902,Helena,40785,106657,2 +118903,Native American,43700,554683,10 +118904,Dr. Jones,94365,91725,7 +118905,Shirley Buell,239566,1457015,29 +118906,Imperator Furiosa,76341,6885,1 +118907,Spade Chandler,47342,12950,3 +118908,Mr. Henry Nobley,156711,30710,1 +118909,Anthony Zamperini,227306,20588,7 +118910,Ferdyshchenko,63958,86636,3 +118911,Dr. Joseph Jefferson 'Doc' McCord,30054,53010,5 +118912,Elisabeth Turhapuro,55776,116159,1 +118913,Clint,198663,1395491,12 +118914,Waldemar Rekowski,10754,66462,3 +118915,Monroe County (uncredited),339403,1200780,45 +118916,Daniel,374473,1554383,0 +118917,New Reporter,257344,1129795,33 +118918,Sadie (uncredited),46623,1468833,19 +118919,Undertaker,62143,199918,34 +118920,Wayne Szalinski,11425,8872,0 +118921,Sal,26390,569,2 +118922,Ariel,174487,276614,1 +118923,영은 (Yeongeun),267466,1256349,2 +118924,Hades (voice),15359,17485,6 +118925,Eva Miller,406992,4090,1 +118926,Jared,359412,1717272,24 +118927,Policeman,42553,89608,5 +118928,,220005,198523,2 +118929,Captain,75622,21505,19 +118930,Orrie Masters,34651,93944,2 +118931,"Herself, Cameo Appearance (uncredited)",32552,20391,41 +118932,Student,240832,1118743,27 +118933,Jugs,23515,115589,7 +118934,Delegate Herrera,146238,75604,9 +118935,Marc,137726,1653,0 +118936,Drunk at Bar,48636,2334,9 +118937,Chuck E. Duck,130925,84494,5 +118938,Madre,110447,1139380,10 +118939,Ray,72847,95017,14 +118940,Sophie Bird / Peggy Bird (voice),153518,24357,23 +118941,Angry man,11626,38103,8 +118942,Alex Jenkins,71945,30048,4 +118943,Laura,82662,124623,1 +118944,John,946,14359,4 +118945,Agent Joe Merriweather,339527,47296,1 +118946,Clara,431093,144275,0 +118947,L'hôtesse de l'air,10795,1632523,15 +118948,Danielle Bricart,76651,534896,2 +118949,Pete,127493,191260,7 +118950,,79678,133800,4 +118951,Crying Nurse,73565,962438,22 +118952,Carine,138502,1108964,6 +118953,Tattooed Debt Collector,330947,1650307,38 +118954,Carlos,80389,87265,12 +118955,,33611,228803,15 +118956,Ray,17622,84865,5 +118957,Henchman,58411,227801,13 +118958,Special Appearance (Song),276846,585438,8 +118959,Himself,366696,1753470,2 +118960,Nelson,40978,135624,11 +118961,,13506,96264,8 +118962,,1421,1723447,36 +118963,Willie Spears,28421,6933,5 +118964,Roderick Rodney Stanton,257302,26700,3 +118965,Vladimir Ilich Lenin,204802,589738,0 +118966,Justice of the Peace Floyd,63317,6463,5 +118967,John Sager,53931,95599,4 +118968,Yee's friend,117506,1178844,11 +118969,Joel Shore,91419,82216,0 +118970,Macedonian Guard #1,354287,1747835,51 +118971,Murat,109671,145328,1 +118972,Minor Role,120657,124554,13 +118973,Demon,20919,1099017,9 +118974,Himself - Comedian,98438,215301,5 +118975,Man Ching,11647,70703,14 +118976,Ian,36421,25668,0 +118977,Andy Spector,102630,16644,0 +118978,,260094,35106,2 +118979,Hubert Hawkins,11839,70668,0 +118980,Young Josh,280092,206505,26 +118981,Elena Lange,332759,1100362,1 +118982,Horace,429238,1364346,13 +118983,Neighbor Woman,333371,1354257,5 +118984,Dancer,377428,591210,10 +118985,Kitten / Cat Judge,67162,78077,4 +118986,Angelica Chaste,94894,6726,1 +118987,Mr. Vincent,286521,78404,9 +118988,Sarah Highman,41733,11705,2 +118989,Ex-Girlfriend (uncredited),59962,211685,40 +118990,Killer Colin,204255,17078,6 +118991,Himself,13516,939074,6 +118992,Camael,50126,61545,3 +118993,Paige Walling,89008,2229,4 +118994,Seaman Morty Beatty,53949,1668696,15 +118995,Prince Stelio,19918,3969,8 +118996,Townsman,134238,121301,22 +118997,Mrs. Tappan,26688,96021,14 +118998,Monica McNeil,23096,56933,2 +118999,Michelle 'Shelly' Fenton,194101,195389,8 +119000,Boy's Mother,43829,2780,26 +119001,Grumpy Operator,123103,1260901,14 +119002,Jörg Niemeyer,42260,3757,5 +119003,,143876,1290967,6 +119004,Jimi Hendrix,192133,37934,0 +119005,Lisa LaMotta,228034,1677399,18 +119006,Lauren,426230,1001536,8 +119007,Mrs. Birch,79113,1113163,8 +119008,Russ Wilder / Agent,205798,157987,3 +119009,Ed Ainsworth,142216,28413,8 +119010,Valera,34869,113334,4 +119011,Nathalie,72465,566081,3 +119012,Sandra's stepmother,99261,1262837,5 +119013,Mrs. Gong,291871,1362829,14 +119014,Dr. Judas,70988,560038,4 +119015,Johnny,27196,122913,8 +119016,Neneng,64450,1522640,16 +119017,Irate Motorist (uncredited),163376,3,5 +119018,,112244,552641,4 +119019,Borislav,366736,1287127,6 +119020,Jenny,382591,1635750,8 +119021,Isabel,53739,19907,0 +119022,Betty Catroux,245775,1156455,6 +119023,Momoko,17457,144487,14 +119024,Alex,18616,83351,0 +119025,Josimar,12811,1827458,17 +119026,Melanie,2989,29369,1 +119027,Uncle Steve,85350,71658,65 +119028,,15830,1025545,10 +119029,Grim Knight Dancer,243683,964776,55 +119030,Gu-seul,348689,1278162,6 +119031,Phil,200727,203575,7 +119032,Himself,28036,87794,2 +119033,Adrienne,26679,18240,12 +119034,"Mrs. Edwards, mother",38269,1014944,11 +119035,Víctor,56815,225010,0 +119036,Joe Leeds,46421,81168,2 +119037,Vater,199615,8796,4 +119038,Annie,351242,15091,2 +119039,Le conspirateur français,19548,19647,9 +119040,The Stalker,289723,112532,10 +119041,President,53851,97776,10 +119042,Dr. Glendon,27970,40180,0 +119043,,278717,1334387,2 +119044,Nancy Crane,175065,2670,1 +119045,Shigeko Takeuchi,55192,131013,6 +119046,Henry M. Stanley,89086,12147,0 +119047,Talya Krozac,28712,101704,2 +119048,Winnetou,9629,33543,1 +119049,Wilson,28894,11496,8 +119050,Elke,8556,22686,9 +119051,Terry,20842,156531,5 +119052,Young Cole,57201,1452636,35 +119053,Drillbit Taylor,8457,887,0 +119054,Tita (voice),177714,1160232,4 +119055,Helmut Ades,75969,8802,13 +119056,Tad / Subject #59,29151,9998,11 +119057,Jack Salmon,7980,13240,1 +119058,Little Girl,94874,20759,8 +119059,Society Vampire #1,346672,1905792,31 +119060,Beatriz's friend,332872,588275,33 +119061,Reuben Windsor,206328,37043,5 +119062,,38154,2541,10 +119063,Traviata,96118,246347,4 +119064,German Soldier (uncredited),297762,1824294,76 +119065,Miss Fontaine,84105,1869974,23 +119066,Garde 1 / Gardien Zoo (voice),52264,1449296,11 +119067,Oskana Rowan,442949,1762641,8 +119068,Tuan,364810,1593878,3 +119069,Charles IX,126958,1083442,6 +119070,Deputy Pike,242076,34541,11 +119071,Liza,16563,118231,11 +119072,Deborah,107146,79924,2 +119073,Luke,11496,15140,0 +119074,Zachary Teller,57993,12147,0 +119075,Francis,24671,9029,3 +119076,Philippe,14555,222569,5 +119077,Hooters Girl,3563,1083899,20 +119078,Mindy,72096,73210,18 +119079,Kenji Kenmochi,43095,96551,1 +119080,"Mr. Mullins, Floor Manager",118134,115995,5 +119081,Stewardess,31128,1611439,11 +119082,Santa Claus,58391,11263,4 +119083,Martin,34449,38131,9 +119084,Ernst Kessler,19740,85146,4 +119085,Celia,251227,1221680,7 +119086,Prime Minister Stolypin,46827,8937,4 +119087,Fruzan,48763,59754,0 +119088,Dale,351065,19143,3 +119089,Betty Grogan,42683,80994,1 +119090,Lex,126323,21660,2 +119091,Natalie,56596,115926,5 +119092,Harry,244801,1280063,3 +119093,Le Commissaire,57382,226020,2 +119094,Indian History Teacher,87827,1271651,18 +119095,Barton,56533,44728,5 +119096,Max,110713,150467,0 +119097,Mrs. Jeanette Moore,36375,5738,14 +119098,Alice Hunt,6947,10205,4 +119099,Ethelbertha,252746,127635,10 +119100,Male Orderly,3580,62101,45 +119101,,72054,1439247,26 +119102,First Sergeant,15414,49813,14 +119103,Markus Hansen,1539,17373,1 +119104,Beatrice Darcy,33117,4356,7 +119105,Hal,42552,1275241,8 +119106,Goyo,33774,237953,2 +119107,Camille Tyler,36807,116299,4 +119108,Hwa-Ok,229304,1314072,2 +119109,MMA Fighter,76544,1188571,2 +119110,Dolly,268350,1290476,12 +119111,Prof. Elena Carranza,296626,95517,5 +119112,Dirt Bike Rider,312221,1746959,60 +119113,,318359,1098335,4 +119114,morbror Knut,128946,213518,18 +119115,Stella's Friend (uncredited),68976,29814,14 +119116,Flemming,268735,29237,10 +119117,Mother,405670,1647917,3 +119118,Aleksandr 'Sasha' Popov,26116,94694,2 +119119,Reet Sool,318184,1413690,6 +119120,Kevin Chun,201485,1183607,1 +119121,Joe Knight,47739,2647,9 +119122,Detective,218443,86725,4 +119123,Man In Bar,47186,1230891,38 +119124,Gossip,36236,232893,3 +119125,Teresa,105384,141838,7 +119126,Taj,15013,77686,15 +119127,,154442,1722914,9 +119128,Pescivendolo,288313,72778,7 +119129,Coach Amross,119738,26485,2 +119130,Ghanian General Henry Anyidoho,30527,13106,7 +119131,Laura Tomley,34672,126235,1 +119132,Sherman,152570,229958,9 +119133,Tina Shenk,11007,59449,14 +119134,Tiny Smith,180819,940179,2 +119135,Chaplain,14531,1423214,13 +119136,Background actor,52454,1630324,52 +119137,Sergeant Ngan Tung,212996,592329,4 +119138,Liz,182097,1164910,0 +119139,'Red' Wildoe,118444,6837,2 +119140,Glen Bateman,13519,4093,11 +119141,Ivitch,114982,1060184,2 +119142,Nisikanta,35790,1661205,6 +119143,Eva,331962,1443612,4 +119144,Lyonya's mother,49577,1687765,5 +119145,Lighthouse Man,256962,1819131,62 +119146,Governor Carla Williams,53870,113286,7 +119147,Réal Fournier,41277,1575500,11 +119148,Sheriff Grady,258353,60293,5 +119149,Sen. Joseph McCarthy,75145,10671,1 +119150,Skunk,228028,16846,3 +119151,Man with Cigar (as John Watkins),40368,556925,5 +119152,Lolita,308,4433,7 +119153,Susie Escham,18530,1225652,12 +119154,Zvyozdochka,41581,126968,1 +119155,Sir Maddox,273879,24714,1 +119156,Deputy,42267,1500628,14 +119157,Heironymous Merkin,131799,81409,0 +119158,Dan,266425,1313157,30 +119159,Jefferson Harper,43783,14028,3 +119160,Hausmeister,315335,1407936,7 +119161,Tamao Serizawa,25716,74377,1 +119162,Avó,436339,1204146,5 +119163,Teresa Ferraro,270650,1359949,19 +119164,Ellen Creed,42066,46617,0 +119165,Steve Jobs,186606,15033,0 +119166,A.T.S. Sergeant Bell,45398,104923,11 +119167,Banker,52784,536999,6 +119168,Georgia LeFlore,216153,58074,1 +119169,Matt Varrett,91333,209764,13 +119170,Izumo Kamiki (voice),201223,225999,6 +119171,Ms. Darbus,13649,19262,8 +119172,Unfriendly Houseguest (uncredited),244539,1508819,27 +119173,,332872,1898780,12 +119174,Security Nightclub,49853,1648779,21 +119175,Le père-maître 2,65898,1166156,13 +119176,Leon,61765,24421,3 +119177,Yang Yang,362178,1549531,2 +119178,Adna,319340,1418653,2 +119179,Captain Sullivan,250066,141762,8 +119180,Montgomery Hughes,41505,127069,9 +119181,(voice) (uncredited),157843,96900,6 +119182,,284048,1062000,3 +119183,Jules Langley,26204,8633,12 +119184,Max,172548,204904,3 +119185,Boy with Mother (uncredited),17136,1594346,30 +119186,Quinn,17622,1028846,11 +119187,Deva & Shiva,69428,148360,0 +119188,Soubrette,147618,1129186,7 +119189,,288694,1286340,10 +119190,Analytical Guy (uncredited),157829,1123004,25 +119191,Ervin Herold - pilot,19757,1297995,8 +119192,June Phigg,63315,30882,2 +119193,Herr Herrfurth,201429,23131,4 +119194,Vitaly,57209,225681,0 +119195,Bailiff,3145,30769,7 +119196,Frau auf Spielplatz,308174,1174111,9 +119197,La cafetière,290316,1062338,8 +119198,Princess Theresa,62692,1472757,1 +119199,Thomas,235260,1423214,11 +119200,Big Italian Kid (uncredited),156700,1842211,49 +119201,Nezuni Redhawk,106136,1039678,7 +119202,Karl,207699,1308809,11 +119203,Cléante,11680,37177,7 +119204,Widow Mary,72096,83665,22 +119205,Julius Nex / Raw Jaw,264646,1434459,7 +119206,Charles Merchant,4613,8930,3 +119207,Donald Duck,19715,78077,0 +119208,,47211,3513,6 +119209,Herself,393367,230427,8 +119210,Bruno X / Clifford,38916,91725,3 +119211,Tailor,9470,1173216,6 +119212,Julie Parker,30996,95236,0 +119213,,299165,1697807,28 +119214,Vierter Geschworener,269165,26912,3 +119215,Harbin,28894,102327,10 +119216,Alice Quincy,108282,1542576,21 +119217,Lord Ingram,38684,126458,28 +119218,Gilbert,14387,84357,3 +119219,pułkownik Pirinow,370264,93409,6 +119220,,316885,1662447,8 +119221,Waitress,43256,97257,8 +119222,Rita Hauser,9076,1874,1 +119223,Hardcastle,30637,93172,12 +119224,Layla,13574,9788,2 +119225,Polly,13058,1463197,12 +119226,The Girl,105539,14434,2 +119227,Dr. Bates,16083,79213,9 +119228,Mario,26841,235991,0 +119229,Dr. Sparling,259183,10018,3 +119230,Detective Flores,6145,7248,6 +119231,Reverend Stephens,109491,1495342,15 +119232,Arthur's Helper 1,59726,55353,14 +119233,Itaparica,70815,102553,3 +119234,Rodolfo,28212,4826,0 +119235,'Owly' Morrison,116554,17354,7 +119236,Billy Dargin,425774,1673475,3 +119237,Lucrecia Lascurain,264525,1233728,21 +119238,Peaches,244403,132354,7 +119239,Brenda Dean Paul,174309,1691845,5 +119240,Nick,88478,213202,2 +119241,Miyuki Aizawa,60160,551591,7 +119242,Hester's Father,51994,31923,9 +119243,Shadow Man,52395,3201,5 +119244,Wild Tokyo Joe (uncredited),256962,1247272,57 +119245,Pierre,12807,72428,2 +119246,Bo,18843,84272,3 +119247,Chloe,92657,1154456,1 +119248,Juno,261249,19779,12 +119249,Walter,157305,1211934,0 +119250,,38362,144612,6 +119251,Chow Lok-Yun,11960,71064,3 +119252,Saxe,150712,106584,4 +119253,,79216,932882,2 +119254,Nightwing / Dick Grayson (voice),411802,76621,12 +119255,Baba,409550,237323,4 +119256,Joanna Clay,92716,102966,11 +119257,Drug Dealer,28026,1225944,16 +119258,Harker,226672,16644,1 +119259,Proboscz,39331,118762,2 +119260,,85729,932525,12 +119261,Vladimir Lenin,56448,12150,2 +119262,Ngor's doctor,24163,1593279,10 +119263,Seaman Irving Goldfarb,257081,3163,11 +119264,Current Affairs Reporter,16151,79701,13 +119265,Gene Hausler (as Aldo DaRe),197785,17752,1 +119266,Kathy,85735,65572,4 +119267,Lawyer,68797,136648,3 +119268,Jose Hernandez,121351,96713,2 +119269,Bellboy (uncredited),43522,120793,43 +119270,Cheerleader,232100,1267386,11 +119271,Prince Samarki,172259,94089,1 +119272,Pinche Tino,25376,1331800,11 +119273,,38010,1052343,16 +119274,Father O'Dowd,357130,118203,3 +119275,Jenny,42837,9898,5 +119276,Fred Gooding,88012,3463,2 +119277,Georgia King,38303,52775,3 +119278,Hsiao-Fen,99599,1719810,4 +119279,,175739,1264371,4 +119280,Donna,40978,135618,3 +119281,New Year's Eve Partygoer #1,10362,1758895,26 +119282,Oss,64627,920,2 +119283,Armando Bigotti,38310,120107,4 +119284,"Himself, Cameo Appearance (uncredited)",32552,4068,22 +119285,Newspaper Staff,43855,33178,20 +119286,Stee,297265,972040,6 +119287,Hellcat Thug 1,339403,1635146,32 +119288,,113432,582286,1 +119289,President Westwood,30817,8874,3 +119290,Minec,31542,1037919,2 +119291,Lola,171213,17882,0 +119292,Choreograaf in nachtclub,67499,223977,7 +119293,Sarah Fischer,167012,18285,0 +119294,Yuri Yegorov,291866,2368,6 +119295,Carat,181456,48416,29 +119296,Mr. Satan,126963,68916,16 +119297,le régisseur,76703,579801,12 +119298,Archie,137093,192,1 +119299,Female Gang Member,25941,95721,23 +119300,Clarke,43829,103620,16 +119301,Bert C. Matthews,43809,8731,4 +119302,Lena,104810,1118042,0 +119303,Kenyan Teacher,246655,1796431,80 +119304,MC,167810,1231532,10 +119305,Young Madison,68174,550474,13 +119306,Butch,179154,1030312,16 +119307,Stanley Q. Hamish,14527,1282548,7 +119308,,49514,22226,21 +119309,Ainhoa,53739,224731,1 +119310,Nick Fury (voice),169934,224454,11 +119311,Su Lin,9461,115916,3 +119312,Extra (uncredited),94009,4165,16 +119313,Amanda,10521,83873,13 +119314,Rod Lacy,60547,51717,4 +119315,President Wilson (voice),30061,52374,17 +119316,Nottingham,43868,5831,2 +119317,A Barber,87296,1167993,17 +119318,Master Sergeant Sweet,11600,100703,2 +119319,Strip Club DJ,293660,7624,29 +119320,Lucas,456101,1383869,11 +119321,Avantika,20968,1054415,9 +119322,Mamie,74436,30952,6 +119323,Mrs. Elizabeth Keckly,161187,171754,5 +119324,nonno Augusto,75336,1462357,10 +119325,L'avocat de la défense,34280,25182,7 +119326,Susan Griffith,147829,123120,2 +119327,Don Antonio Prieto,214129,1269272,7 +119328,Ruth Obre,242631,68088,2 +119329,Miss Kenyon,48627,19781,2 +119330,Reporter on TV Screen,47906,59161,8 +119331,Willy,29416,102959,4 +119332,,327225,1359769,10 +119333,Primitivo,332354,264955,0 +119334,Yasugorô,58878,228547,8 +119335,,242240,132194,5 +119336,Dr. Charles Evans,26801,13969,8 +119337,Timo,362758,222299,5 +119338,Escort,161545,128464,12 +119339,Attorney Nabbish,119213,21125,6 +119340,Gibson,60269,76186,19 +119341,Juan,185180,98756,1 +119342,Infermiere,42441,231988,14 +119343,A Hustler,267483,1083600,12 +119344,Casino Patron,71670,551932,40 +119345,Ned Buntline,43499,70035,1 +119346,Sharon,19398,87345,2 +119347,Victor,48153,2097,11 +119348,Nat,299780,378,0 +119349,Police Officer Pegasee,64928,121066,27 +119350,Rose,47525,46774,5 +119351,Telephone Operator,108222,1246620,14 +119352,Mark Haydon,67748,1172836,11 +119353,Sam Floyd,4882,236486,12 +119354,Chaperone,170603,2072,13 +119355,Surova,148622,1175938,7 +119356,Bérénice,101904,1029287,3 +119357,Vivian Loder,27446,22948,3 +119358,Zack,14983,81311,5 +119359,Grissom,217948,229288,6 +119360,Zeuf,82684,113818,7 +119361,Mr. Evans,128311,156066,5 +119362,Seher,452606,1797944,8 +119363,Jason,209263,53589,13 +119364,Sean,19918,34489,9 +119365,il venditore di ceramiche,103216,1186443,11 +119366,Keith,16171,79885,36 +119367,Noisy Lady in Audience,171446,89732,24 +119368,,264269,1311034,4 +119369,1st Robber,141868,1123098,8 +119370,Cavanna,76200,23480,3 +119371,Tommy Skinner,62441,1212181,15 +119372,The Girl,69065,71733,6 +119373,Roland,13728,14606,0 +119374,Antonio,142320,101556,5 +119375,Henry Madden,97910,30234,4 +119376,Paul Watterman,4365,37597,1 +119377,Admiral Ichimaru,1251,1172152,17 +119378,Billy The Kid,35026,82304,4 +119379,The Bashaw,14815,39036,6 +119380,Good Morning Baltimore Dancer / Welcome to the 60's Dancer,2976,124360,90 +119381,Senator Titcombe,121003,80236,8 +119382,,53128,994415,4 +119383,Han Wu,226672,1276627,11 +119384,Kiki,69619,1189927,6 +119385,Rose,58704,60749,2 +119386,François,152989,78124,16 +119387,Avvocato Priori,105384,1495138,5 +119388,Chan Cheung,117506,78869,0 +119389,Veronique von Gutzow,85699,13805,6 +119390,M. Déloyal,378446,135665,2 +119391,Himself,21671,10872,0 +119392,Death Larsen,131039,3129,2 +119393,Barry Allen / The Flash,222619,124546,0 +119394,Sergeant Nicola Capece,105906,52657,5 +119395,Channel Ten Reporter,85435,1292008,14 +119396,Tyrone Flemmings,334527,1536202,22 +119397,policeman,75262,86847,16 +119398,Himself,86284,1473194,6 +119399,Yura,57809,588041,12 +119400,George McGowan,8144,40975,6 +119401,,418378,1693887,8 +119402,Maria Domenico,20003,48958,6 +119403,Rae Dawn Chong,44389,13312,10 +119404,Lanky,50416,1042872,6 +119405,Life Guard,121003,32430,9 +119406,,88273,6135,10 +119407,Mechanic,330459,1713824,45 +119408,Esha's Uncle,63825,131258,7 +119409,Jeff Slocum,89086,4302,3 +119410,Graham,73565,1213289,13 +119411,,15464,85881,1 +119412,Chandu,157293,1170145,6 +119413,Club Singer,167810,1736502,34 +119414,Galaxy Scout,82679,453,11 +119415,The Cowardly Lion (voice),59981,26485,4 +119416,Vietnamese Child,2080,1353652,48 +119417,Paul Leblau,59349,13692,8 +119418,Pastor Wilson,188161,103833,16 +119419,Komisarz Igor Rosłoń,382155,237832,12 +119420,Technical Adviser (Girl with Harold),4932,40177,32 +119421,Vittorio,315319,120322,4 +119422,Police Officer (uncredited),209112,1729054,145 +119423,Sayako,248087,119244,4 +119424,Keira St-George,19676,31383,1 +119425,Helen of Troy,211139,5962,2 +119426,Husband,204922,1376050,6 +119427,Himself - Storyteller,128216,201782,13 +119428,poacher (voice),56391,1333022,15 +119429,Kneel,67499,114756,6 +119430,Ren Bishi,25626,1624093,12 +119431,Francis Tanaguchi,48852,2249,3 +119432,Karen,50647,17696,7 +119433,,153420,96476,8 +119434,Judge Geary (uncredited),43522,589217,33 +119435,Falwick,57278,107634,3 +119436,,327231,64971,15 +119437,Biker Dad,773,86204,24 +119438,Sylvia,229328,182327,4 +119439,The instructor of a flight school,155941,74195,5 +119440,Master Zhuang San Tai,46124,119457,4 +119441,Young Flint (voice),109451,173428,15 +119442,Mr. Warneke,26516,14508,6 +119443,Guy with Clipboard,6023,7234,18 +119444,Ethan,186759,54691,5 +119445,Saskia,122843,66446,1 +119446,Aniela,156627,1721907,11 +119447,Le médecin,13312,81049,6 +119448,The King,43759,13819,5 +119449,The Girl,10165,110727,4 +119450,Roy Pena,41497,126724,3 +119451,Ronnie Winslow,77822,1083619,10 +119452,Grace,14138,79126,0 +119453,Fanny Rosa,137357,14298,0 +119454,Chico,13911,10799,2 +119455,Vlad Baumann,33339,80375,0 +119456,Dr. Grace Trevelyan-Grey,341174,4726,11 +119457,"Bovinelli, l'elettricista",77000,235003,3 +119458,Soldier,128866,1088065,13 +119459,Willi,262945,32522,7 +119460,Bert,298584,206112,2 +119461,DIG Dinakar,49074,1336610,11 +119462,Captain Ross,13056,44248,12 +119463,Kostas,321315,1418981,1 +119464,Donna del Segno,31542,1757146,28 +119465,Ma Barbella,28000,40618,3 +119466,Magdalena,31299,107927,3 +119467,Fukuhara's wife,14525,553807,12 +119468,Nick's Club Fighter,71120,68559,22 +119469,Grant,20047,21315,2 +119470,Paul Mantz,265741,925,4 +119471,Lieutenant Hacker U.S.N. - Communications,17744,108277,14 +119472,Jay,232100,1267376,1 +119473,Gabe Moreno,185289,89750,3 +119474,Ms. Kawasaki,153,1770,4 +119475,Servant to Briseis,81409,114421,17 +119476,District Receptionist,82631,1573787,19 +119477,Himself - Storyteller,128216,184475,12 +119478,William,10870,1366311,7 +119479,Bhagyamathi,73578,237040,1 +119480,Barfly,96132,6784,10 +119481,The Girl,120605,1447050,6 +119482,Chester Wylie,53864,32433,7 +119483,Himself,18893,3036,13 +119484,Mala,203539,1185917,9 +119485,Calvin Motts,48852,20959,1 +119486,Nicolas,65795,69310,0 +119487,Jack Corbett,45156,4515,8 +119488,Commissioner Lariesier,39943,14358,7 +119489,Francey,27973,14965,4 +119490,Mme Harker,58462,18277,5 +119491,Tak Bai,45013,165827,24 +119492,Chris,205724,11702,1 +119493,Deb Moseley,284537,10431,6 +119494,Agent Bothwick,59962,211907,19 +119495,Captive Girl 1,310137,208059,10 +119496,Father Mould,149509,63791,16 +119497,Nai,287170,1353677,2 +119498,Raven-Haired Beauty,193610,1577503,12 +119499,Klara Kjøbmand,16014,3402,3 +119500,Montana,306952,1511997,58 +119501,Gloria Waylon,95140,30436,2 +119502,Paul Turner,157919,2879,3 +119503,Klara,11248,45588,23 +119504,Rose Gammon,110148,1907,1 +119505,Fireman,22447,16376,20 +119506,Susan,51999,10912,1 +119507,Elsa,226001,1180685,1 +119508,Col. Cowen,29398,103733,7 +119509,Ojciec,38875,235493,6 +119510,,246320,587184,8 +119511,Arturo,227348,1105711,1 +119512,Tatewaki Asano,27031,70131,6 +119513,,12622,553332,24 +119514,Monsignor Callisto,315319,105341,32 +119515,Prison Warden (uncredited),72602,10806,8 +119516,Herself,13516,939084,22 +119517,Louie,166904,14034,7 +119518,Gwen Turner,43913,29930,2 +119519,Arthur Frayn / Zardoz,4923,40043,5 +119520,Gareth Tyce,89086,32128,2 +119521,Liliana (voice),89247,1074713,8 +119522,Monica,85230,4996,5 +119523,Yokai (voice),177572,81178,15 +119524,Sam Perkins,335450,30157,3 +119525,Granion's Aid,125510,57733,8 +119526,Feminist,28031,80591,10 +119527,Нечипор,20879,86706,2 +119528,Carl,32298,28637,3 +119529,Uri,93856,173269,7 +119530,Tate,290764,1400512,6 +119531,Mary Ann (as Hal Roach's Rascals),190352,1055292,2 +119532,Starfire / Killer Frost (voice),22855,81667,9 +119533,Lincoln (uncredited),24238,75722,11 +119534,Sergeant (uncredited),16442,131003,83 +119535,Nancy Burton (as Karen Witter),205798,100613,10 +119536,Goggles,7233,165959,11 +119537,Mr. Tainer,96936,1818444,17 +119538,Wong,28209,100113,9 +119539,,439050,240240,1 +119540,Erik Jenner,29212,103240,4 +119541,English voice of Wanda,162877,1144866,4 +119542,Himself,13516,939077,10 +119543,Liquor Store Cashier,68387,551476,24 +119544,Luke Anderson,185564,1225873,4 +119545,Menshikov,376188,86663,3 +119546,Hwa-yi,214910,1207629,1 +119547,The Monster,3072,8319,2 +119548,George Hacker,42619,17580,5 +119549,Reformatory Guard (uncredited),28000,153295,54 +119550,Himself,170279,220717,5 +119551,Burgess Dog Walker (voice),81188,936667,16 +119552,Major,52360,90369,31 +119553,Herself,85984,13991,5 +119554,custode,98025,1664483,14 +119555,Nan Hudson,99863,20391,4 +119556,Midwife,76438,578842,4 +119557,Pierre Jolicoeur,338189,1267396,7 +119558,Colin (voice),35,23211,7 +119559,Lady in Political Entourage,56558,121323,8 +119560,Puget,59118,134512,20 +119561,Tanten / The Lady,158900,239349,4 +119562,Stiva Oblonsky,96724,15576,4 +119563,Bettan (as Anna von Rosen Sundelius),30149,997642,6 +119564,Secretary,142402,1117092,24 +119565,James 'Capper' Regan,242332,29313,2 +119566,Romy,13788,22122,2 +119567,Patrick Woodroffe,13576,1449377,4 +119568,Player,92309,52038,3 +119569,Kitty Mendoza,24199,91354,8 +119570,Bully,102382,995205,55 +119571,Bob Vernon,119010,1620449,6 +119572,Eddie,407448,1719596,43 +119573,Harry Connors,121354,34119,7 +119574,Amanda Foster,9914,60415,3 +119575,Janie Jones,73700,17140,0 +119576,Miguel,107028,937884,3 +119577,David Richmond,226354,37168,0 +119578,Miss Coatsworthy,16373,120173,11 +119579,l'homme sans visage,4443,37303,1 +119580,Erika,382995,26516,3 +119581,,18725,96890,7 +119582,Ashley Freund,9286,27775,8 +119583,John K. Butzin,255491,1117,4 +119584,Hostess,42571,128228,12 +119585,Yasujiro Wataya,1164,18056,16 +119586,Helena,105902,95512,2 +119587,Young Sister,405882,1717904,15 +119588,Bestuzhev,63538,1190350,4 +119589,Liu Yufang,10703,41894,12 +119590,Navaron,267852,1557711,10 +119591,,70807,40564,13 +119592,Kaley,244316,210126,4 +119593,Dorothy,47508,225973,0 +119594,Police Commander Johns,315837,1397347,35 +119595,Ukrainian Thug,93856,88052,8 +119596,Billy Watson,89086,30218,43 +119597,Janice Rhodes,145135,1350210,19 +119598,Kato,36175,151027,4 +119599,,85126,19139,9 +119600,,258384,1042680,25 +119601,Graham,413391,19996,4 +119602,Tammy,14923,17414,7 +119603,Erik Kirsch,11677,11951,1 +119604,Marin,12422,1152086,10 +119605,Gigi (as Karen Lee),14016,224028,5 +119606,Chisum,11577,40433,5 +119607,Commissario Rovere,106256,119996,2 +119608,Bright Noah,39230,100124,2 +119609,Sandra Sellani,99261,34043,1 +119610,Northend Newspaper Vendor (uncredited),259695,145560,24 +119611,Sir John Killigrew (as Marc MacDermott),50329,98026,6 +119612,Emma,35908,112377,9 +119613,Une admiratrice à New York,332794,1860412,26 +119614,Sheldon Levine,25473,103036,13 +119615,Hostage Girl,209112,1691981,66 +119616,Desk Sergeant,5060,238167,15 +119617,Himself,374460,20049,2 +119618,Kendall,13991,58754,11 +119619,Grace,268174,1316668,17 +119620,Arturo,362703,22462,6 +119621,Mrs. Peachum,42837,5038,4 +119622,Jeremy,393172,225418,4 +119623,Jason,43741,71586,7 +119624,Fumiya Takemura,14525,63694,0 +119625,Paul Badger,225499,89813,10 +119626,Shishou,125513,1241722,9 +119627,Amber Allen,169730,91613,2 +119628,Gloria Forrest,62837,36926,6 +119629,General Garnett,118900,34320,13 +119630,Doc. Ruzenka Beránková,65904,544260,0 +119631,Mr. Parvulescu,48116,1017306,7 +119632,Primrose Porterhouse,252746,102362,4 +119633,Palmer,12920,52,4 +119634,Dr. Bob Grayson,50549,30551,3 +119635,Patricia Hadley,100528,33360,3 +119636,,25998,1178902,2 +119637,Sgt. Bernessa,19096,1064452,6 +119638,Jean-Jacques Garnier,35008,1025171,7 +119639,Lola Ramsby,43157,229632,3 +119640,Leslie,40983,7504,14 +119641,Todd Ambro,301228,9145,4 +119642,Madame Flore (uncredited),110887,98040,17 +119643,,296313,111599,7 +119644,Gino,110992,1050966,3 +119645,Gunnar's mother,51141,570230,11 +119646,Chelle Ringell,199373,58006,4 +119647,Shiv,228355,1125098,1 +119648,Dr. Samuel Sterns / The Leader,1724,1462,4 +119649,Davis Servant Girl #2,425774,1707960,66 +119650,Robert Elliot,86600,5563,0 +119651,Philippe de Cantel,118536,100074,11 +119652,Jeff,176,2141,13 +119653,Manny Garcia,435737,1223707,2 +119654,Pat O'Leary,78734,992912,9 +119655,Siostra zakonna,314371,1583944,18 +119656,Sgt. Fitzgibbon,45132,45415,46 +119657,Dr. Aldo Spidini,5481,44961,3 +119658,Santion's Wife,319910,1270179,8 +119659,Roger Bannister,9890,45566,5 +119660,,11328,1444508,56 +119661,Mob Boss,179398,154917,4 +119662,Migrant #2,273481,1794930,32 +119663,Trey,115283,54729,5 +119664,Seamus,37206,489467,6 +119665,Rosemary,1253,6238,12 +119666,Woody Ricks,168027,1064,2 +119667,Jose Yero,82,40543,7 +119668,,11328,1444489,37 +119669,,264036,81003,8 +119670,George Copeland,16090,38232,6 +119671,"Emma, an American Reporter",30527,13549,1 +119672,Eloise Edgewaters,227717,85941,9 +119673,Sgt. Chris Zanoba,204994,115550,5 +119674,Rino,62397,1894264,12 +119675,Ship Waiter,167073,1544912,36 +119676,Highway Patrol Officer,27114,141029,18 +119677,Joe Krozac,28712,13566,0 +119678,Carolyn Talbot,147829,1242900,12 +119679,Perkins,94135,95125,9 +119680,,282553,54884,2 +119681,Fix Attendant,246741,1407149,15 +119682,Moroccan Resident (uncredited),331313,1767219,48 +119683,Danny (Waring chauffeur),30022,30005,4 +119684,Jack,47962,1071376,7 +119685,Schlomo's Mother,1986,20445,8 +119686,,36246,58604,11 +119687,Gladstone,302666,4004,7 +119688,Karoliina,287301,1248569,1 +119689,"Benjamin Frank Mahoney, President Ryan Airlines Co.",18776,129995,3 +119690,Man in white suit,54146,99247,4 +119691,Mr. Greenway (voice),312100,15832,10 +119692,,46572,19646,2 +119693,Dot,253286,45391,0 +119694,Baron 3,274857,101923,40 +119695,Ann West,120977,82383,6 +119696,Lasse,29923,1287263,1 +119697,Landlady,9470,119426,2 +119698,Rebecka,24647,148629,2 +119699,Trueblood Vampire,43935,568048,11 +119700,Lord Charles Fox,15163,5658,4 +119701,Yennefer,57278,1138542,4 +119702,John Suen,343140,72732,14 +119703,Miss Bidermeyer,37725,59195,11 +119704,Old Waiter (Fernando),58244,1504593,23 +119705,Andrew Van Tassel,44754,4756,3 +119706,Trish,16066,29097,4 +119707,Wyatt Thomas,201485,1183606,0 +119708,grevinnan Else Rinner af Stolpe,128946,383443,15 +119709,"Gertrude, une ""prêteuse"" du milieu",74878,100033,4 +119710,Slug,39102,83930,2 +119711,The Buzzard,144792,33003,4 +119712,Himself,222370,57690,0 +119713,,11972,1303020,14 +119714,Jimmy,22396,1724769,23 +119715,Mother Bartlett,31509,145109,4 +119716,Emergency Room Doctor,9963,20496,12 +119717,David Kelleher,255491,783,7 +119718,Nancy Hesketh,50364,77287,2 +119719,"Walter ""Shep"" Shepherd",14694,2505,2 +119720,Deena Dayalan,53883,223160,3 +119721,Paddy Nolan,51947,40008,15 +119722,,29832,28637,6 +119723,Narrator (voice),36540,21877,3 +119724,Lisa,15640,38458,10 +119725,NASA Scientist,365942,87232,61 +119726,Court Clerk,11364,18274,9 +119727,Bao,188507,1203089,9 +119728,Senhora Arquitecta,49974,139032,11 +119729,Paige,105768,51800,4 +119730,Elizabeth Carter,254047,53929,0 +119731,Eric,330947,1317889,35 +119732,(uncredited),29259,101320,11 +119733,Molly Cabot,184267,148819,10 +119734,Hells Angel,16378,53396,13 +119735,Kalina,18178,550007,4 +119736,Lt. Driscoll,46872,10162,2 +119737,Yogurt Girl,84184,109741,12 +119738,SS Bellocona's Captain,176627,121247,21 +119739,Kathleen,67669,42122,1 +119740,Sam Fulton,13996,19538,3 +119741,Father Time / Baby Bear,30059,105636,0 +119742,Svend,17985,1348441,12 +119743,Annie,508,7063,16 +119744,Julia,156180,227544,9 +119745,Bee (voice),13798,70069,10 +119746,Detective Satô,117212,1200241,10 +119747,Inspector Vishal,39347,86013,2 +119748,Anatoli Knyazev,209112,208296,10 +119749,Begonia,184155,230885,5 +119750,Chase,434873,1754135,8 +119751,Narrator (voice),2692,30801,9 +119752,Danny Sinclair,26267,76227,1 +119753,Miriam,86413,89299,0 +119754,David,52520,587020,3 +119755,Malke Reichman,362463,1518297,6 +119756,Manuel,10749,4796,1 +119757,Minor Role,28421,34098,12 +119758,Patty,147132,1073525,4 +119759,Larry,347630,1449106,34 +119760,"Mr. Murata, kimono store owner",111398,134320,11 +119761,Referee,257447,1696935,22 +119762,Michael Flaherty,249969,18805,7 +119763,,16015,1445190,7 +119764,Susy,299165,589146,1 +119765,Himself,288130,884,1 +119766,Waldo Pepper,19740,4135,0 +119767,Tenente Danuzia,227964,1665820,9 +119768,Scarlett O'Donnell (Adult),16996,41087,1 +119769,Wild Joe,290555,95638,3 +119770,Martina,1724,964764,10 +119771,Dr. Rochelle,40028,101874,4 +119772,The Maid,193959,1174192,5 +119773,Glory,10433,139,1 +119774,Brittney,417406,1604964,3 +119775,Deputy Waller,72474,94293,10 +119776,Matru,139521,85063,1 +119777,Kumota-san (Sumo OB),51581,133886,12 +119778,Günter,118497,227399,2 +119779,,189472,54146,3 +119780,Station Porter,3164,1193340,11 +119781,,8776,1402409,11 +119782,Jamal Webber,13680,31137,6 +119783,Bernard Montgomery,399790,5473,5 +119784,Justin Chang,193893,87822,1 +119785,Dr. Reinhardt,344147,69098,1 +119786,Fraine,83588,121566,2 +119787,Architect,55604,103068,22 +119788,Cy Miller,72313,7685,3 +119789,Bridget,49446,45400,5 +119790,,252059,591298,1 +119791,Robbie,227156,1412942,19 +119792,Herself,23128,110914,1 +119793,Heavy #1,14669,1574235,18 +119794,Idriz,177155,87013,2 +119795,Lola de Castro de la Fuente de Espramadura 'La Belle Abbesse',45213,996588,2 +119796,Britt,353979,1718496,6 +119797,Virreina,122019,1032549,7 +119798,Nam Bo-ram,36164,936836,3 +119799,Tee Cha,19274,1134726,3 +119800,Security Guard,188102,1239427,16 +119801,American G.I.,19996,1764137,33 +119802,Palace Hotel Manager,111479,1001687,46 +119803,King Tut (voice),82703,225863,17 +119804,J.T. Langston,35381,71198,3 +119805,Charles,27112,113,10 +119806,Ivanitsky,77986,125737,1 +119807,Storekeeper,67375,116494,48 +119808,Henry Crocke,81110,2638,1 +119809,Native Henchman (uncredited),43889,137404,15 +119810,Michael McCallister,291164,36189,3 +119811,Sarah,297633,1758075,7 +119812,Ines,47848,939104,7 +119813,Official,35032,114402,12 +119814,Flier,81110,1186118,20 +119815,Nicki,11930,1034302,4 +119816,Armed Kitchen Guard,127585,139622,45 +119817,Tung-Tung's mother,92989,1656522,3 +119818,father,73099,232401,5 +119819,Frank,55725,1766584,18 +119820,Baron Brokdorf,63538,99312,5 +119821,Gabriel,16999,17292,1 +119822,Elsa Middleton,43895,1170215,2 +119823,Ramón,127468,1084788,1 +119824,Biffen Johansson,37731,79059,6 +119825,Control,13580,4973,6 +119826,,24140,50282,14 +119827,Father,46930,137825,1 +119828,Niño (uncredited),140,586106,16 +119829,Notario,42502,942341,12 +119830,Annie,59349,136757,10 +119831,Hofrätin,24140,6810,12 +119832,Lecturer,43811,120708,52 +119833,Ted Delacorte,72823,47079,2 +119834,Georges,14650,16927,0 +119835,Jean Auchincloss (uncredited),77012,116493,11 +119836,,38326,931812,2 +119837,Naomi Armitage,21769,114906,0 +119838,Kid Coy,28297,100326,10 +119839,,54804,117110,27 +119840,Andrea,56068,1017981,8 +119841,Frederik VI,88273,230033,7 +119842,Cheryl,12247,71890,9 +119843,Séverine,266030,1319779,5 +119844,Chuck,11247,1357697,27 +119845,Rachel,253851,23882,5 +119846,General Oliver O. Howard,28323,6577,0 +119847,Ove Ternberg,28062,403172,8 +119848,Owen,84105,1869972,14 +119849,,172705,1747105,11 +119850,Miss Peebles,14703,142244,5 +119851,Bowen,88390,120105,6 +119852,Shirley,56725,19434,3 +119853,Peter Warrington III,90799,1071200,7 +119854,Agente di viaggi,379873,120154,27 +119855,Japanese Soldier,256962,1543952,43 +119856,Carl Hough,13519,64796,18 +119857,Stanisław Pasyk,298040,1145,9 +119858,David Lee,72140,565187,14 +119859,Dubose,171594,97279,3 +119860,Ray Mathews,21619,24516,6 +119861,Charlie Kelmeckis,84892,33235,0 +119862,Harry - Newspaper Editor,33112,120818,11 +119863,Larry (voice),9904,21125,5 +119864,Spottswoode (voice),3989,31162,4 +119865,Wyatt,233490,1234153,3 +119866,Sister,92663,1802664,6 +119867,,315252,1409038,5 +119868,,74674,1445125,27 +119869,Trisha,110598,10437,0 +119870,Robyn,323929,1423662,2 +119871,,127257,1084299,5 +119872,Tom Macy,357130,4353,1 +119873,avvocato,44933,1203706,9 +119874,Val,215016,44712,2 +119875,Jack Stone,82237,1193858,5 +119876,Lily,300690,1427680,0 +119877,Dr. Langham,269173,1248,12 +119878,Sweetie Belle,201676,212631,7 +119879,Lu,186881,131955,5 +119880,Man in Basket,74,167756,14 +119881,Stan (voice),9904,37157,13 +119882,Le policier 2,445,6024,12 +119883,Buck Ware,43522,30279,6 +119884,Stacey Jones,34138,122876,4 +119885,Chi-tak,76544,1365908,12 +119886,Tam's Mom,56329,1189924,13 +119887,Man Behind Mask,258509,1471841,31 +119888,Dr. Elliot Stein,92562,98187,0 +119889,Jay Wheeler,242042,100,1 +119890,Satellite,8340,54608,0 +119891,Alexander Woollcott,43790,116776,7 +119892,Interpreter Coppa,37710,120322,34 +119893,9th Grader,262841,1809690,18 +119894,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,37233,16 +119895,,42441,1871506,18 +119896,Teen Girl #2,293660,1676741,17 +119897,Lucas Mateus,373397,147106,1 +119898,Angela Vicario,163706,27163,1 +119899,Fighter,71120,1872245,21 +119900,Jason Bourne,2503,1892,0 +119901,Rose,18072,1779400,13 +119902,Marcella,82662,928464,2 +119903,Martin,103620,993897,5 +119904,Harmon,43809,29626,62 +119905,Holly,48495,166452,4 +119906,Joe Garson,179818,3243,1 +119907,Martin 'Stuff' Nelson,335498,30211,1 +119908,Amanda the Yoga Girl,15092,71517,56 +119909,Norberto Villarreal,56601,492081,6 +119910,Sarah,43155,19967,9 +119911,Doxey / Le douanier américain / Le douanier mexicain,10870,47829,9 +119912,Man in Crowd (uncredited),1165,79939,28 +119913,Ring Announcer (uncredited),43522,1317055,83 +119914,J. Homais,45184,30234,5 +119915,Capitano,53805,147183,13 +119916,Seta,101242,208341,1 +119917,,47448,92051,2 +119918,Celeste,356757,931963,4 +119919,Briggs,105768,83186,6 +119920,Gojun Pye,370687,51965,2 +119921,John Kipling,25143,10980,0 +119922,Kapitan,79234,994438,10 +119923,Kill Family Dad (uncredited),184345,1172222,12 +119924,,293412,575938,7 +119925,Professor Josef Stock,96713,14563,4 +119926,Sara Gallagher,179154,1785189,10 +119927,,104945,628316,7 +119928,Ace No. 1 / Tod,38134,1144716,8 +119929,Red Fraker,85644,193,0 +119930,Maulwurf,8948,1478076,5 +119931,,422603,1535506,10 +119932,Miss Copeland,39130,83237,16 +119933,Mahoud Baroudi,44099,108991,2 +119934,Bill Sullivan,1247,380,4 +119935,Lucia Salvemini,105384,1121911,3 +119936,Nurse Telling Jenkins It's a Boy,124115,1185019,37 +119937,Manuel,8053,36633,11 +119938,Sandwich Girl,86828,1437582,20 +119939,Harry Taylor,106573,30002,4 +119940,Sonia,155308,35754,2 +119941,Blonde Doll (Upjohn's Girl),42734,50901,13 +119942,Cameron Pratt,8270,54218,22 +119943,Wes,19509,84763,0 +119944,Headwaiter,128669,1091940,20 +119945,Pussycat Doll,4551,1220575,49 +119946,Antonio Leon,359412,131946,4 +119947,Baron Hallberg,219335,1517366,6 +119948,,155128,239666,5 +119949,Betty Tanager,14422,16858,3 +119950,Raver,17216,1141810,8 +119951,Wanda Saknussemm,31397,58277,0 +119952,Painted Boy,375366,1886316,11 +119953,Jack,66125,1284,8 +119954,Armando,82481,965,6 +119955,John Dyckman Brown III,80941,37446,2 +119956,Gail Ross,13836,19307,28 +119957,College Student (uncredited),85350,1106543,79 +119958,Hughes,29805,11843,10 +119959,Dr. Burgess,73565,12211,11 +119960,Homura Akemi (voice),152042,81245,2 +119961,George,117999,1518587,4 +119962,Cotinha,45179,1607508,6 +119963,Trucker,14843,42746,6 +119964,President Karzai,354287,2282,13 +119965,Maya,70278,1370513,2 +119966,Lars Schmeel,1818,1010125,10 +119967,Woman Skeleton 3,315855,1592923,31 +119968,Batman / Two-Face (voice),177271,963818,4 +119969,Sparkle,88036,224842,5 +119970,Emma,345916,203096,2 +119971,Mor,15776,234403,3 +119972,Bruno,10795,54291,13 +119973,Hélène Joncour,14753,116,0 +119974,The She-Monster,44693,975870,2 +119975,Little Richard,239566,427978,15 +119976,Scarlett,290762,1363045,10 +119977,Money,440777,1754594,16 +119978,Bertrand Morane,1421,17028,0 +119979,Party Guest,128669,122984,30 +119980,Bob Leadly,84905,8830,2 +119981,News Reader,19901,61911,9 +119982,Schlunegger,16436,49444,9 +119983,Debutante,31672,934932,9 +119984,Gary Rossington,335970,1717376,43 +119985,Tomax,17421,35219,7 +119986,,314371,1583951,29 +119987,Han,168259,61697,13 +119988,Wedding Guest (uncredited),274479,1360003,64 +119989,Huo Xiaolan,334298,588057,0 +119990,Laura,1247,16859,3 +119991,Aggie,49334,92698,4 +119992,Lor-Em,49521,2320,18 +119993,Генерал Калязин,37603,23442,3 +119994,Larry Rose,15640,65870,20 +119995,Sean,233490,1440058,9 +119996,Claire,19794,21197,10 +119997,Driver Whose Car Hit Sleepy,99909,117772,39 +119998,Andrée Bellair,110160,574833,5 +119999,Bill Bradford,52864,20364,1 +120000,,289183,56273,6 +120001,Prinzessin,11161,68397,5 +120002,,382170,1405926,11 +120003,Colin,211144,58374,2 +120004,Clay,14923,28638,11 +120005,La Grise (voice),126319,1171904,0 +120006,Macduff Child 1,225728,1674158,23 +120007,Catherine Crocker,42472,15197,1 +120008,Mary's Mother,374021,1016206,5 +120009,Nurse Patty Wrenfield,188102,180928,17 +120010,Jana,385654,569938,3 +120011,Pink,30492,106432,0 +120012,Gushken,90351,1018088,4 +120013,Sam Sheridan,399894,932696,8 +120014,Postman Delivering Rod,116232,1105269,13 +120015,Sylvia,114096,154901,11 +120016,Maura Fitzgerald,253273,17258,0 +120017,Ken,294652,1317341,9 +120018,Mortimer,27112,97247,7 +120019,Emperor Louis Napoleon III,78318,4113,3 +120020,Ernest Trend,21627,32035,4 +120021,Il giocatore di biliardo nel bar,315319,287863,33 +120022,(as Ivano Silveri),46658,137068,8 +120023,Hooverville Man,921,472349,50 +120024,Signorina Corvino,41610,31614,3 +120025,Princess Evelyn,55190,181230,0 +120026,Amber,101325,17265,8 +120027,,53693,579153,14 +120028,Peach (voice),127380,19,23 +120029,Lucas,97051,1224022,5 +120030,M. Souchon,21070,103398,14 +120031,May,71125,326,0 +120032,Jordan,87148,100820,7 +120033,Henrietta,31277,7631,16 +120034,Uncle Possum,5928,82613,9 +120035,Terence 'Terry' O'Neill,179066,32923,1 +120036,Kim,11376,52848,3 +120037,Seated Nightclub Patron,43809,1208020,29 +120038,Ältere Frau,341745,22852,7 +120039,Rustom Rusi Billimoria,392271,35747,1 +120040,Mort Geary,28894,4965,7 +120041,Alex,22007,2155,0 +120042,Young Boy (voice) (uncredited),5915,211705,22 +120043,Danielle,50849,44434,10 +120044,Crook (uncredited),3059,1496,70 +120045,Minoru Oosawa,121725,233523,7 +120046,Martín Villalba,353713,136150,5 +120047,Lois Lane,1452,7517,2 +120048,Concierge,946,14365,10 +120049,,77564,305000,4 +120050,Edrio Two Tubes,330459,1260677,52 +120051,Ada Brantline,52362,39800,3 +120052,Ivan,63304,543873,3 +120053,Dr. Deere,42216,14264,12 +120054,Mitch,119738,576041,4 +120055,Robyn Starling,22582,35224,2 +120056,Quincy,356483,1378128,5 +120057,Joe,374618,1554759,4 +120058,Mrs. Tucker,105981,1467884,4 +120059,Deputy Dan,27358,235784,4 +120060,Priest,19336,134295,8 +120061,Clambone,332280,1302090,43 +120062,Butch - Keating's Hired Hand,111470,117679,45 +120063,Marcus Howston,14977,83859,1 +120064,Casimir,28437,1547,7 +120065,Jackie Truman,12085,3897,2 +120066,Santiago,265563,93650,3 +120067,Himself,63144,553507,2 +120068,Swearengen Jones,43489,16766,7 +120069,Jane,303360,1399829,4 +120070,Mr. O'Donnell,26123,87003,11 +120071,Paula,329550,112309,40 +120072,Reporter at Dock,89086,100800,34 +120073,Court Announcer,80410,1235591,15 +120074,Ronnie,240913,92619,7 +120075,Kreiger,259593,14361,10 +120076,Corporate Bliss Receptionist,21583,588695,7 +120077,Vetch,9795,53119,4 +120078,Jean age 15,31011,1335454,9 +120079,Jesse James,38807,6937,12 +120080,Police Officer 1,284305,119972,7 +120081,GL Martin Mutschmann,11204,22664,8 +120082,Brawling Man #1,199575,1438847,18 +120083,Pinky,265208,1206,7 +120084,Football Player,43812,127629,50 +120085,Grim,286873,1416301,21 +120086,Marbot,258384,298988,9 +120087,Nicola Ruoppolo,38310,80230,1 +120088,Detective Sgt. Garrison,72313,5248,2 +120089,Kate Lawson,15527,7796,3 +120090,Tariq Khan,1404,16905,5 +120091,Lance,4644,1513308,12 +120092,Russell (voice) (uncredited),24589,80676,4 +120093,Tamir,76493,2282,8 +120094,Logan / Wolverine / Weapon X,2080,6968,0 +120095,Katherine Lane,336167,35241,4 +120096,Fisherman,84178,1191823,6 +120097,Neurotic patient,96713,35504,6 +120098,Marc Antony,43902,51310,2 +120099,CIA Chief,257344,92777,23 +120100,Anna,31011,9824,1 +120101,Man in Hotel Lobby (uncredited),73430,1176510,24 +120102,Tailor,78318,1072771,28 +120103,2nd Schoolboy,85442,1717050,23 +120104,Johnny Burke,43022,1937,14 +120105,Princess Papoola,156603,120339,4 +120106,Battling Burrows,183039,96602,2 +120107,Guy in Hallway,18392,551513,12 +120108,Hillary,3081,14108,11 +120109,Judge Cranston,27443,33007,5 +120110,Montana Smith,132939,133832,6 +120111,Herb,5748,45315,5 +120112,Ben,309879,110875,1 +120113,Lindstrom,28320,12714,6 +120114,Wally,257450,1387577,1 +120115,Sawyer Sukkivan,4641,38706,2 +120116,Ed,285869,6074,2 +120117,,73628,527096,6 +120118,Flower Girl,242042,1514036,42 +120119,Bernard,145244,50003,9 +120120,Louise,27989,5344,0 +120121,,293654,562728,6 +120122,Poreotics Dancer,243683,1398207,94 +120123,Lucas,245703,33192,2 +120124,Wade,146216,59039,18 +120125,Hot Woman,381054,183073,6 +120126,Michelle Knight,336845,343,1 +120127,Harry,43119,50574,5 +120128,Zabava Putyatishna (voice),33534,146913,1 +120129,Underwood,328589,388,9 +120130,Dr. Donaldson,56942,225242,3 +120131,Frantz,15090,1868697,11 +120132,Roarke,10596,1627161,20 +120133,Adjudant-chef Lavelle,10795,1356,18 +120134,Satbir,330431,1439075,3 +120135,Man in Restaurant,8414,54888,7 +120136,Fred Simmons,13484,62862,0 +120137,Rick,85200,1709371,6 +120138,[Unknown],408381,84227,6 +120139,Takumi tanashi,81560,1041474,2 +120140,Le boucher,22136,228887,7 +120141,Escolástico,106887,1302056,8 +120142,Coluche,14419,76858,0 +120143,Erwann,14688,7275,7 +120144,Lawyer (uncredited),39345,131667,24 +120145,Josie Pye,397520,1663785,8 +120146,Bugs Bunny (voice) (uncredited),32552,33923,12 +120147,Dexter Kane,97618,564876,1 +120148,Deputy Gwynne,24150,1162029,34 +120149,Cousin Josh,424600,84116,6 +120150,Alex,18836,9976,7 +120151,Nicole Piper,343795,1378650,5 +120152,Karen Gaffney,331313,52848,1 +120153,Rosie York,16442,13997,8 +120154,Carol LaRue,230182,131619,2 +120155,,105860,1184984,13 +120156,Alice,336850,1457536,3 +120157,Hot Girl,193610,158155,15 +120158,Platoon Commander Huggs,12412,41556,11 +120159,Joy,19398,87346,4 +120160,Radio Preacher,18040,82632,7 +120161,Pvt. Gottschalk,108345,9109,4 +120162,Helicopter Pilot,146216,1396602,58 +120163,Pfarrer Breiser,248933,48087,15 +120164,Texarkana MC,69,1074187,23 +120165,Cook,87827,16927,10 +120166,Mrs. Kroll,42796,5738,5 +120167,Jade,264555,1220763,4 +120168,Chris Brander,10033,10859,0 +120169,Guy,21778,76820,0 +120170,,72733,83165,3 +120171,Dylan,24432,11669,1 +120172,Special Delivery Boy,153162,1422117,30 +120173,Beth,112161,70304,13 +120174,Herself - Co-Host / Narrator / Clip from 'Cynthia',33740,3635,11 +120175,Holt (as Tahitia),109466,1046562,7 +120176,Key Flo,377587,17840,5 +120177,Greybeard,274857,52398,30 +120178,"Otomo, the gang boss",26936,96637,5 +120179,Helen,35113,3293,0 +120180,Michael Cheung,58570,940339,0 +120181,Gédéon,114982,1060185,3 +120182,Mariana,8053,259,10 +120183,Cherry,168022,1272220,7 +120184,Jimmy Cavello,1662,94182,10 +120185,Pivoine,58309,142443,1 +120186,Her Husband,51364,144004,4 +120187,Priest,37628,175484,11 +120188,,77057,1368313,13 +120189,Tasha,294652,227454,2 +120190,Power Ring (voice),30061,34982,10 +120191,William T. Marshall,113700,88462,0 +120192,Winnie,140554,45265,4 +120193,Nikolai Rostov,149465,99282,7 +120194,Alfie,25385,10596,5 +120195,Detective Vogel,403431,17141,3 +120196,Birthday Wellwisher,193899,8828,5 +120197,Taylor,301368,207201,9 +120198,Jury Foreman,3580,170185,23 +120199,Clive,34806,29020,3 +120200,Coward sheriff,79094,128435,5 +120201,Qureshi,142412,110707,2 +120202,Şaban,236041,97272,0 +120203,,24258,1134107,6 +120204,Brigade-leader Roslov,49577,142505,1 +120205,Abin Sur (voice),14011,35219,13 +120206,Stooie - Detention Kid,2976,1752342,67 +120207,Pieman,14262,76503,12 +120208,Ryan Davis,193893,543505,0 +120209,Music Maids Member,43809,1556476,65 +120210,Hotel Clerk,360592,1512184,9 +120211,Himself,24792,93810,1 +120212,Michalak,224,2815,6 +120213,Sasha Tolstoy,36811,37058,4 +120214,Miles,258509,1552637,20 +120215,,31275,1853875,9 +120216,Arnie Green,252682,104895,1 +120217,Annie,301804,1186839,8 +120218,Stewardess #6,318781,1441997,26 +120219,Heather Langley,44470,35224,7 +120220,Dr. Ivan Chebutikin,277396,3359,5 +120221,,38099,119612,17 +120222,Karen,149793,33741,2 +120223,Cloche,169355,1366645,14 +120224,Student,47404,1130451,25 +120225,Liza,158598,1139975,2 +120226,Kavita,304274,223167,3 +120227,Mickey Wright,140222,96066,0 +120228,Tammy Strate,94204,229031,3 +120229,,320453,555061,11 +120230,Hiroshi Kijima,135799,74377,1 +120231,Nurse #2 (uncredited),15807,121208,28 +120232,American Machine-Gunner,19996,1764148,45 +120233,Himself,9951,117259,12 +120234,Captain Alan 'Wes' Westcott,134435,78792,0 +120235,Andy,11547,65171,11 +120236,Judge Harper,10917,16857,7 +120237,Mr. West,32928,1093970,1 +120238,Gus,44470,1196848,14 +120239,Valerie Russell,64129,69810,2 +120240,Laurie Strode,24150,21318,0 +120241,,188640,1191606,16 +120242,,137312,971273,1 +120243,Dirk,53256,28422,4 +120244,Degas,369885,1651413,31 +120245,Walter,18843,37431,10 +120246,Le prophéte,58133,5274,2 +120247,Daniel,257176,19717,1 +120248,Capt. Geoffrey Overton,139826,152463,11 +120249,Ellen Austen,120357,30242,3 +120250,Locandiere,222517,118496,1 +120251,Detective Chris Gillespie,27999,50303,4 +120252,Armistice Day Reveler at Theatre (uncredited),242631,927616,28 +120253,,129229,1088727,2 +120254,Penny / Goth Chick,76101,585677,9 +120255,Bill Buck,1969,9880,6 +120256,Julien,34840,580246,8 +120257,Radio announcer,57866,1162736,6 +120258,Burly DeVito,78364,18854,4 +120259,Coffee Shop Owner,56599,72395,5 +120260,,64784,81865,10 +120261,Deputy Dana,8464,4572,5 +120262,Lethariot,12182,71554,6 +120263,TV Announcer,4550,1299317,11 +120264,Jason Brooks,74779,1001979,2 +120265,Carmen,272878,1527312,4 +120266,Mrs. Shannon,120977,30261,3 +120267,Alexei Vronsky,96724,27428,2 +120268,Hiroshi Inagaki,53064,1107775,8 +120269,Herself,83587,1137453,6 +120270,Soldier,8988,1741970,49 +120271,Pfandleiherin Schwabe / Pawnbroker Schwabe,28480,47173,1 +120272,,198890,1129639,3 +120273,Biker,334538,80349,8 +120274,The Warden,48156,2646,2 +120275,Patrick,153854,1140130,2 +120276,Rico,24392,91559,8 +120277,Les Hopkins,90563,9601,6 +120278,Caroline,171213,1153639,11 +120279,Natalie McMillan,31276,234753,1 +120280,"Marie, la mère de Vincent",63717,3784,5 +120281,,334298,1621707,15 +120282,Benno,70752,48481,0 +120283,David,37813,74633,0 +120284,Moneypenny's Boyfriend,206647,1599239,19 +120285,Equerry,1165,83550,11 +120286,General,19545,30475,10 +120287,Elizabeth Craven,53953,58395,10 +120288,Joanne,62132,1452744,14 +120289,Fiona Campbell,18283,41226,2 +120290,Fan Choy,29694,12815,2 +120291,Jonathan,380124,1569980,7 +120292,,85673,985447,8 +120293,Botschafter,285181,1029800,3 +120294,Pietro Scotti,117913,33638,0 +120295,Andy,26688,47628,13 +120296,,88953,1537390,9 +120297,Herself (uncredited),13092,3051,19 +120298,Ambrose Porterhouse,252746,1042265,6 +120299,Judith Messerman,18208,12931,1 +120300,Madge,42122,20300,3 +120301,Winnie Cheung,343140,26739,2 +120302,Kansas Farmer Witnessing Airplane Crash,43812,589728,20 +120303,Dad / Mr. A&M (voice),1387,42708,3 +120304,Jacek,294483,49767,2 +120305,Faith Healer,378441,1268937,4 +120306,Moxie (voice),136799,1512790,13 +120307,Liz Tennant,150338,16047,8 +120308,Harris,46513,191601,11 +120309,Nora,360592,200673,1 +120310,Mollie the Giraffe (voice),38317,52792,15 +120311,Hungry,375366,1654738,23 +120312,Pork Man / Slaughterhouse Owner,15003,1059942,8 +120313,Arbor,194101,1169852,0 +120314,Marie,218425,209579,1 +120315,Annegret,80125,37411,7 +120316,Rifat Bi,11854,78248,10 +120317,E.R. Doctor,149509,1432096,26 +120318,Dr. Smiley,156356,13361,6 +120319,Zia,34496,77764,5 +120320,Directeur internat,1986,95537,12 +120321,Adella / Andrina (voice),13676,15762,5 +120322,Lucy,42267,175037,7 +120323,Edith Potter,560,7643,4 +120324,Narrator (voice),289207,16412,1 +120325,Bingo Hall Attendant,91679,1782587,26 +120326,Walter Calloway,277388,11067,1 +120327,Fatima,6935,51502,10 +120328,Lady Cop,312221,1614447,20 +120329,The Champ,66175,103385,5 +120330,Serrano,128089,1282003,4 +120331,Lucrèce,118293,28139,1 +120332,Doctor,7972,53454,14 +120333,Customer,10921,78149,8 +120334,Officer Murdock,70863,179508,17 +120335,Yukio Daitokuji / Sutekichi,27276,80863,0 +120336,Tommy Sinclair,31713,99348,4 +120337,Трус,330878,86720,4 +120338,Su Li-Zhen,844,643,4 +120339,Pearl,130717,86827,2 +120340,Lilla,131027,25449,4 +120341,Doktor Cvetković,284154,111067,9 +120342,Additional Voices (voice),82703,64450,47 +120343,Habibie,172705,121996,0 +120344,Karen Amalfi,88005,15091,6 +120345,Sonny,301348,9656,3 +120346,Chicago Radio Operator,18569,1466149,30 +120347,Talmudiste,393407,223532,6 +120348,Reuben,24272,140569,8 +120349,Lt. Robert Finch,43016,69555,3 +120350,Dr Skalpel,358511,56530,8 +120351,,295748,121423,4 +120352,Walter,23823,147895,6 +120353,British Soldier,121823,1102425,19 +120354,Oskar Schell,64685,929136,0 +120355,Joe's Assistant,85673,1155517,5 +120356,Skelly,37254,101023,5 +120357,Dawn Starlight,43499,30289,2 +120358,Berui (voice),14945,114918,9 +120359,Undetermined Supporting Role,43806,77160,38 +120360,Necla,296901,590772,2 +120361,Фрейлина Оринтия,27935,1038585,9 +120362,Coach Shaw,32139,5176,9 +120363,Chirurgo padre di Giulia,195544,257406,10 +120364,Erica Weiss,206296,1714291,10 +120365,Masafumi Kasai - Owner,52302,17540,3 +120366,Buddy Swanson,156597,60077,3 +120367,Dr. Mueller,44099,31209,8 +120368,,146521,1772152,7 +120369,Detective,128669,95311,24 +120370,,74674,1445108,9 +120371,A.G. Skinner,54491,21063,11 +120372,Naomi Collins,62213,1096866,13 +120373,Alicia,239562,220011,14 +120374,Mr. Bates,369406,1495799,13 +120375,Mia,85435,962438,5 +120376,Mrs. Karmann,40060,87685,5 +120377,Real Estate Agent,213681,51456,15 +120378,Chan Kam-Wah,42120,83631,4 +120379,Anna Hoffman,13542,230814,7 +120380,Smart EMT,312174,1400598,11 +120381,Secundus' Answer Box (voice),37926,119121,7 +120382,Kyle,13689,1214865,7 +120383,Rachel Buff,15022,8691,2 +120384,Mitchie Torres,13655,85138,0 +120385,DJ Raika,22025,1367228,10 +120386,,177354,227877,2 +120387,Gunnar,10529,2372,3 +120388,Dr. Andres Briones,95358,213660,7 +120389,Ford Lumber Buyer (uncredited),76203,1438684,93 +120390,Aurick,322922,1838047,18 +120391,Lou Markeim,250332,583305,61 +120392,Miss Quentin,287636,125025,3 +120393,Lena (Voice),68179,56731,3 +120394,Thodoros,331958,932757,5 +120395,Stuart Thatcher,55725,1174218,15 +120396,,344560,480,4 +120397,Duke Vanderhaus,312497,77164,10 +120398,Tonino,82806,7542,2 +120399,Himself,173465,1266243,6 +120400,Kai Westerburg,177979,21995,0 +120401,Akio Kazama,83389,58604,8 +120402,Himself,84309,1855571,3 +120403,Mannequin maker (uncredited),37628,1527315,19 +120404,Terence Granville,3484,32137,3 +120405,Benson,27085,106096,9 +120406,Dr. Jess Rogers,53949,16421,3 +120407,Sara,47848,21541,1 +120408,Kesätyttö (Summer girl),124979,1531740,8 +120409,Henry,384594,203637,1 +120410,Fraygauzen,51275,143666,8 +120411,Drowsy,82237,34185,9 +120412,Pregnant Soccer Mom #1,19794,1365681,14 +120413,Clip from 'Idiot's Delight' (archive footage) (uncredited),33740,88867,96 +120414,Himself,36883,52837,6 +120415,Tommy Tessler,36288,73194,6 +120416,Nancy,310123,1478222,4 +120417,Pierre Cassini,78210,77860,1 +120418,The Black Man,83831,6487,0 +120419,Frank,24123,4134,5 +120420,Tom Miller,42187,1488888,9 +120421,John Colter,41604,8258,5 +120422,Narcisse,20481,79648,5 +120423,Kolohnát,84030,544481,17 +120424,Ambassador,51759,999884,5 +120425,Tereza,360737,5510,5 +120426,Church Goer,426670,1716518,21 +120427,Himself,18893,15310,11 +120428,Madge Norwood,43075,3380,2 +120429,Miss Missouri Martin,72096,159753,6 +120430,Guy in Bar,268920,1754426,30 +120431,,88273,3882,9 +120432,Sarah Torrance,76640,59817,4 +120433,Stacy,9787,19197,3 +120434,Car Salesman,34598,1497672,7 +120435,Wallace Bryton,246403,15033,1 +120436,Barry,67748,79091,7 +120437,Kid with Braces,2267,1112033,10 +120438,o.A.,5646,44588,13 +120439,Jolene,283384,1384535,14 +120440,Sandro,258751,1300672,7 +120441,"Piera, moglie di Giobatta (episodio ""Italian Superman"")",68882,544826,17 +120442,1st Drunk (as Edward Olmos),86975,587,5 +120443,Samwise Gamgee,1361,7505,4 +120444,Enrique,140,1602,1 +120445,Ghost on the Highway,10389,231013,11 +120446,Jamie (voice),81188,234479,5 +120447,Dan Unger,6589,26485,2 +120448,L'homme de la plage,277839,1496510,14 +120449,Reece,340937,1644736,2 +120450,Tui,345915,1272974,30 +120451,Lt. Michael Forman,424488,1837297,8 +120452,Fern Hooten,54107,140356,6 +120453,"Fjellmannen, the Killer",15440,224369,7 +120454,Clemira,70747,559502,1 +120455,Himself,216153,1375706,11 +120456,Amie des mariés,255913,1679024,34 +120457,,98582,6534,11 +120458,Mr. Wheaton,98289,10027,7 +120459,Sgt. Van Wyck,177085,3911,6 +120460,Capitaine Fauré,8276,9005,4 +120461,Psychiater,11139,68314,5 +120462,,164366,91716,1 +120463,Cameo,61400,35068,8 +120464,Beast-Man,100661,1481215,6 +120465,Ido Ulman,49689,1073785,2 +120466,Lula,9939,43757,0 +120467,Courbassol,55370,35001,11 +120468,Schecter,91477,83314,3 +120469,Manolo Estrada,77650,29273,2 +120470,Jay,397422,1102453,9 +120471,Himself,90125,572314,6 +120472,Ms. Brand,70585,13920,2 +120473,Ana,39840,125278,0 +120474,Monroe,79935,588335,15 +120475,Felix,44389,52930,6 +120476,G2,19766,55422,1 +120477,Amos,303360,79795,1 +120478,Pike,244316,1235532,11 +120479,Jimmy,15838,6123,3 +120480,הגר,43083,129247,9 +120481,Howard Foxhugh,18690,93799,10 +120482,,126250,1443735,24 +120483,,62896,116160,5 +120484,Michael,55563,8167,1 +120485,Owen Allen,7547,825,3 +120486,Arjun Prasad,55283,215910,0 +120487,Himself,135679,502188,1 +120488,Liza / Tiger Lily,273106,1519549,6 +120489,Il tenente Franz Mahler,43195,12497,1 +120490,Willy Dunne,354287,1041440,4 +120491,Birgit,352890,1561243,10 +120492,King Carney,6972,29092,4 +120493,Marcel Sigouin,41277,234935,13 +120494,Woman 3,274857,176217,43 +120495,Samantha Wise,6948,50347,2 +120496,Edwina Burke,87516,58643,12 +120497,Ron,10071,62837,12 +120498,Alex,291871,1518915,16 +120499,Reporter (uncredited),31984,29305,23 +120500,Suzanne Chaudard,56589,91485,3 +120501,Rachel Colman,68720,20365,3 +120502,Lester Sweyd,185291,18364,7 +120503,,156988,36028,5 +120504,(uncredited),17295,1510525,8 +120505,Anna,110525,14655,2 +120506,Young Actress in Show,132928,126657,16 +120507,Office worker,320588,1538581,31 +120508,Mr. Ludlow - Farmer (uncredited),44869,81182,13 +120509,Ginger Timpleman,2355,4778,7 +120510,Headwaiter,120109,1015446,16 +120511,Jason,103620,19300,23 +120512,Secretary,369033,1517281,31 +120513,Harvey,28455,27544,2 +120514,Emily Callaway,11096,501,1 +120515,Catherine,47444,1068136,0 +120516,General manager Niu,219572,1562576,9 +120517,Allan Henriksen,16014,41903,6 +120518,Hilda / Tavern Maid,104430,97989,3 +120519,Real Harvey,2771,27976,4 +120520,Lisa,54752,520,4 +120521,,253395,53512,5 +120522,Tom Collins,1833,19392,3 +120523,Capitaine Valard,247500,24545,2 +120524,Ezekiel Stane / Technovore (voice),169934,19588,2 +120525,Liao Kong,10275,1342847,6 +120526,Fernander,426265,1650301,5 +120527,Petro,110980,30112,3 +120528,,317246,7370,5 +120529,Paramedic,17654,203421,24 +120530,Turista,118658,1526119,2 +120531,"Kitahama, Okono",2487,142472,12 +120532,,69401,1326967,7 +120533,signora Cecconi,38286,224209,7 +120534,Nurse,18569,98964,51 +120535,Boy (voice),43580,1357560,4 +120536,Captain,10596,26069,5 +120537,Delbert Butterfield,10918,7400,11 +120538,B.R.E. Receptionist,304372,1323781,30 +120539,Ray,340881,40275,8 +120540,Bruce Banner / Hulk,99861,103,2 +120541,Mr. Potato Head,130925,7167,7 +120542,Lord Haizen (voice),125510,144104,14 +120543,Tagge,32029,12149,2 +120544,Sid Gorman,28712,14658,10 +120545,Kaylee,347630,1597855,7 +120546,Theatre Audience,118943,1086711,10 +120547,Newscaster,62472,235386,14 +120548,Sabra Cravat born Venable,46623,40954,1 +120549,Norma,151911,3610,0 +120550,Sharon Serrano,56491,120975,3 +120551,Commissario Betti,106155,85338,0 +120552,Bugs Bunny (voice),236112,33923,1 +120553,Casey,108222,30005,7 +120554,Phonebooth Stranger,427680,1758536,7 +120555,Restaurant patron,43457,121323,8 +120556,Lola Chong,142061,46774,12 +120557,Filotti,11972,1303019,12 +120558,Howard Markby,322518,3197,3 +120559,Dougie Simpson,24731,112558,7 +120560,Benzinaio,43646,49458,6 +120561,Connie,39013,1163719,9 +120562,Bülent,10565,1856,7 +120563,Jim,87587,1232540,10 +120564,Marilyn-Ditsy Girl,310593,1585133,11 +120565,Theo,151043,160371,8 +120566,Prince,13805,54593,8 +120567,Gordon Block,53689,144985,8 +120568,Vesko,110608,70876,5 +120569,,101995,932604,3 +120570,Nuria,29338,69529,2 +120571,Carhartt Man,290764,206398,15 +120572,Wanda Bradley Sledge,10917,78604,5 +120573,Regula,49853,1041249,6 +120574,Mr. Mott - Bank President,153228,120736,9 +120575,Rita,94182,1329453,19 +120576,Bar Patron (uncredited),244539,1508822,24 +120577,Whitey (as Billy Benedict),166904,1263061,6 +120578,The Grandmaster (uncredited),283995,4785,58 +120579,Boy,27966,588991,21 +120580,Amanda,354832,1232324,2 +120581,Peach,39998,239319,0 +120582,Bejo,180299,142018,4 +120583,Payal Malhotra,39839,81927,7 +120584,Gus,20200,19866,0 +120585,Sheriff Fred Grant,179603,102066,6 +120586,Joseph,175334,1368022,3 +120587,Alice Della Rocca,53399,128748,0 +120588,Guerilla (uncredited),63304,86685,7 +120589,General Hadley,203351,6804,0 +120590,Engineer,48333,972860,12 +120591,Frau auf dem Parkplatz,277968,1898510,47 +120592,Julie,345922,1783264,33 +120593,Himself,24792,93813,3 +120594,Camille,243683,58965,5 +120595,Brigadiere Esposito,124202,55912,5 +120596,Himself,29144,84292,0 +120597,amante di Dedé,108535,1042797,27 +120598,Katie's Girl (uncredited),27349,43873,19 +120599,Bruno,154441,1137886,11 +120600,Jonas,269795,589650,2 +120601,Sezar,65795,1854047,4 +120602,Dr. Harlow and Thompson,257450,1322391,9 +120603,Louie Dumbrowsky,156603,14034,9 +120604,Stanley Huang,206197,113308,5 +120605,Narrator (voice),173205,76792,9 +120606,le chef d'orchestre,12089,25182,15 +120607,Martin Hinrich,10458,17546,5 +120608,Oliver Pike Harmsworth,62143,47480,17 +120609,Herself,72711,1147931,4 +120610,Steven,62492,59690,6 +120611,Dr Barton,84993,65024,2 +120612,Mother,127560,3069,30 +120613,Madame Mantis (voice),396330,59401,12 +120614,Security Guard,31634,58513,9 +120615,Funeral Attendent,379959,1604108,21 +120616,Geologist,55604,96722,21 +120617,Jean Campbell,18283,1324197,7 +120618,Der Sportler,119820,1071147,18 +120619,Demetrius,2349,24071,20 +120620,Hope Ryden,339419,1650208,19 +120621,Ion,110001,30357,0 +120622,Alma George,62441,11110,5 +120623,Haruo Kasuga,35435,1248372,7 +120624,Madame Ralton,287391,20884,4 +120625,Rosebud (voice),70587,134658,17 +120626,Dino (uncredited),20301,3345,14 +120627,Seppä Ilmarinen,233917,148011,7 +120628,Colleague,21583,1798996,10 +120629,O'Grady,43809,34186,34 +120630,Louise,280004,1336774,12 +120631,Angel Dumott Schunard,1833,19393,4 +120632,Black woman,45649,133400,12 +120633,Additional Voice (voice),177572,1296646,43 +120634,President Kim,45098,96634,11 +120635,Harry,47878,105087,4 +120636,,206574,230039,2 +120637,,289159,117757,1 +120638,Dan Gilbreth,50549,117724,14 +120639,Suneo,265712,90567,6 +120640,The Sultan,19725,14469,5 +120641,Emma,88036,8851,0 +120642,Pops,22585,4093,5 +120643,Strap Davis,43319,3338,5 +120644,Admiral Rochon,132363,936403,25 +120645,,53407,1714698,18 +120646,Tinette,58757,228354,17 +120647,Miki,1922,48791,1 +120648,,107705,239127,8 +120649,,103875,1161019,3 +120650,Diane Lindstrom,44129,141451,9 +120651,Gavde,21571,6497,2 +120652,Stephanie,45243,61182,11 +120653,Cole,53953,33355,2 +120654,James Gentry,186759,1367216,30 +120655,,85656,76165,11 +120656,Helen,41171,103877,18 +120657,Nyland Smith,3484,29259,1 +120658,Wedding Guest (uncredited),214756,1570734,97 +120659,Reżyser Richard Martin,314371,97416,0 +120660,Stella Hadley,100528,20366,1 +120661,Blanche,139463,57449,1 +120662,Support Group,222935,1672076,30 +120663,Ярослав,335819,101433,1 +120664,Anti-Returned Activist,227094,935913,12 +120665,Fattu Fatim,20742,86554,8 +120666,,20381,117431,3 +120667,,101352,140457,0 +120668,Oldsman,257912,40039,3 +120669,Dr. Kodama,43095,213468,18 +120670,Sheldon Snake,17303,441040,6 +120671,Ogre Baby (voice),810,76745,32 +120672,,325428,1462255,3 +120673,,50032,1365437,8 +120674,Himself,68721,74086,21 +120675,Selene's Father,834,1216568,16 +120676,Tara Adair,75778,128741,7 +120677,Himself,160297,4995,8 +120678,Lambert,277190,1331396,6 +120679,Riyadh el-Azzawi,43434,1117777,17 +120680,Isabel Baxter,332283,1181313,4 +120681,Maresciallo del carretto,56853,128251,22 +120682,Pi (voice),132601,3272,0 +120683,Katz,35623,1195666,2 +120684,Gerald Foster,54801,33220,7 +120685,Caroline,285848,559579,4 +120686,Bedouin Sorcerer,182097,545784,2 +120687,Art Williams,85648,15417,3 +120688,Phineas P. Hook,134238,30017,2 +120689,Tsvi,336029,1158500,12 +120690,Molly,295588,66537,12 +120691,Mang Axel,46773,1523004,14 +120692,Eunkyoung,86266,577394,6 +120693,Brothel Keeper,85844,123858,2 +120694,Campoloni,64465,7277,1 +120695,Moondoggie,65416,77149,1 +120696,Billy Pawnell,24411,72312,2 +120697,Micke Pinola,150208,1130006,5 +120698,Jacqueline,39800,44079,9 +120699,Mrs. Dell,16996,11152,30 +120700,Capt. Bruckner,75162,4765,0 +120701,Acar,44246,133820,6 +120702,Eliza Mensey,425774,1188743,5 +120703,Chris,67693,4499,9 +120704,Andrew the Beater,10433,27736,6 +120705,Mrs. McKay,120259,88461,12 +120706,Captain Ali,354859,1122855,20 +120707,Tony Rickards,14096,1381689,1 +120708,Blueprint Dancer,243683,1398175,77 +120709,Icelan,6341,51347,5 +120710,Sebastian Burrows,39286,19923,2 +120711,Claire,9963,38425,10 +120712,Mrs. Stanton,62132,1452743,13 +120713,Greg,45729,78036,13 +120714,Moglie Binetto,374416,1749081,13 +120715,Apartment Responder,80720,121127,27 +120716,,185987,548024,3 +120717,Shelley - Corny Collins Council,2976,83277,45 +120718,Arthur,314420,31268,4 +120719,Fouget,242683,93123,10 +120720,Louis Martin,194407,120816,6 +120721,King,85628,227399,2 +120722,Mr. George Wilson,13358,9208,1 +120723,Mr. Cheng,47647,64662,9 +120724,One of the Three Greeks,28293,128160,10 +120725,Anna Parisi,363483,164930,1 +120726,Doctor,104954,24604,7 +120727,Martina,42674,128408,1 +120728,Ashley Winnington-Ball (uncredited),266433,62001,11 +120729,Stella,11509,12516,25 +120730,Sokovian SUV Driver,99861,1760898,61 +120731,Queen of England,10804,1840450,21 +120732,Goldie,17978,19215,3 +120733,Captain Smollett,83191,55689,4 +120734,Girl,381737,1848805,21 +120735,Virumandi,66340,93193,0 +120736,Ace,19342,11149,0 +120737,Nancy Deans,78522,1680292,12 +120738,Sutro,36373,2698,7 +120739,Teacher (uncredited),156700,1842217,53 +120740,Evey,139930,143047,2 +120741,Leonora,82745,279486,4 +120742,Cissy,374614,1366416,7 +120743,Prêtre,13739,1120711,9 +120744,Frank Johnson,28663,112722,5 +120745,vecchietta,77000,59640,4 +120746,Sean McNally,38901,6905,3 +120747,Elderly Man with Walker,8270,54226,29 +120748,Bill Lauder,321039,160351,15 +120749,Dalores,76101,133401,3 +120750,Capitano Castelli,55823,24379,3 +120751,"Lieut Cmdr. Chester Potter, M.D., U.S.N.",17744,1936,4 +120752,,38010,583881,19 +120753,Fania,319179,1415220,2 +120754,Estelle,86980,140565,16 +120755,Tanizaki Hideko,46492,136380,3 +120756,Olga Bollini,231176,1266279,8 +120757,Scott Davis,107593,16531,13 +120758,Piers,13802,237408,44 +120759,Franks Mutter,167330,1831163,12 +120760,Singer,3941,34449,4 +120761,Mary,64328,9273,0 +120762,Prime Minister Manuel Godoy,96935,31989,2 +120763,Police Sgt. Miyashita,43113,97203,9 +120764,Diane Lawrence,193177,6780,12 +120765,Andrew (8 years old),244786,1503842,32 +120766,Juan,1418,16977,6 +120767,Max,8281,16350,3 +120768,Rachel Matthews,77585,20381,4 +120769,Colonel Grigio,82654,6949,5 +120770,Monica,12540,58953,3 +120771,Laird,239056,1193274,4 +120772,Luther,3513,31164,1 +120773,Paul Barton,95358,32791,12 +120774,Jessie,92393,1031929,1 +120775,Elena,49073,141757,2 +120776,Arthur Collings,80596,96994,33 +120777,Scriptwriter,104427,83398,17 +120778,Girl In Car,128270,936970,47 +120779,se stessa,75336,16021,20 +120780,Dr. Fallon,173153,27267,4 +120781,Howard 'Hojo' Jones,123770,2053,3 +120782,Глеб,253192,1289504,6 +120783,,88529,150303,3 +120784,Chauffeur (uncredited),47758,120701,16 +120785,La Mère de Rosaria,12422,109714,7 +120786,Barlow,37935,1713945,9 +120787,Roberts,75564,1399615,17 +120788,John Williams,238972,24047,1 +120789,Denise,77875,1922,3 +120790,Aslak,360249,1635742,7 +120791,Queen's Guard,297762,1890450,49 +120792,Bassist (Nassau),244786,1451543,14 +120793,Walter Tortoise (voice),13017,2047,0 +120794,Cayate,73984,283080,17 +120795,Cab Driver,167810,89626,7 +120796,Shelby's Waitress,71825,1051115,14 +120797,Paula's Grandpa,329550,1155933,48 +120798,Tex,67669,3710,2 +120799,Commissioner D'Elia,27703,98778,6 +120800,,35572,1662171,4 +120801,Kitty Langley,29094,30225,0 +120802,Turaga Nokama (voice),19325,158609,11 +120803,Miles,128917,1088201,4 +120804,Fergus Passmore,120357,3383,6 +120805,,329805,1099236,9 +120806,Konsta Pylkkönen,62775,148388,0 +120807,City Cop #1,13823,107038,34 +120808,Bertil,30583,572060,0 +120809,Red Bull,9572,37246,1 +120810,Stan (voice),13517,587096,4 +120811,Mookie,8199,15033,2 +120812,"Lillian ""Lil"" Lambert",248706,9560,2 +120813,Tono,58918,5170,2 +120814,Ingrid,14029,29920,6 +120815,Addolorato,3520,132487,9 +120816,Reporter,7551,1104568,15 +120817,Mother by Elevator (uncredited),17136,144370,46 +120818,Robert Wentworth,85507,13823,6 +120819,A Nationalist,85715,1870843,10 +120820,Headmaster,174162,1217752,5 +120821,Cinzia,41427,126446,8 +120822,Miss Nadine Price,56558,7641,7 +120823,Mia,79054,1298299,3 +120824,Mike,273084,1588955,3 +120825,Bob Burns,335970,1718144,42 +120826,Leng Xue,16074,79166,5 +120827,Caesar,134475,14488,6 +120828,Older Woman,84944,1303603,9 +120829,Stacy,62768,1096930,8 +120830,Cattleman at Meeting,75315,188722,41 +120831,The Barfly,414977,1676776,24 +120832,Etienne,54156,1175248,5 +120833,Soo-Yang,86261,564849,3 +120834,Harold Fine,42623,12446,0 +120835,Carl Kolchak,32021,7333,0 +120836,Lada,63281,83835,1 +120837,Pan Am Executive #2,2567,1229676,32 +120838,Maurie,354979,1636776,8 +120839,Howard Wakefield,369894,17419,0 +120840,Charity,332979,1009885,11 +120841,Jared - DEVGRU,97630,210271,21 +120842,Chatty Exhibition Guest (uncredited),2288,1232670,7 +120843,Susanne,303636,1505122,7 +120844,Kiley Bradshaw,132422,9278,1 +120845,Deu,25855,135347,0 +120846,Charlotte,178446,146057,4 +120847,Leah Tyman / Liza Steward,239513,121764,1 +120848,Pascale,72465,19382,5 +120849,Priya,69428,141705,1 +120850,Interpol Agent Martin,10610,60533,15 +120851,Marianne,27102,96970,8 +120852,Suki Yaki,21449,10068,1 +120853,Freddie Bauer,54107,57350,3 +120854,Dean Longo,23853,78887,10 +120855,Antoine Lavau,38021,16927,1 +120856,Philippe Challes,72917,20669,0 +120857,Jim Harwood,78362,55779,0 +120858,The Boy,120729,1434017,7 +120859,Gorik,300187,86237,8 +120860,Francesca Moretti,46660,1232126,6 +120861,Ellie,238593,1325716,4 +120862,Russian Refugee,76757,1394356,55 +120863,Simon,332286,10917,1 +120864,Dr. Pauline Whittier,417678,15563,2 +120865,Johann Kaspar Goethe - Vater,52475,6093,5 +120866,Janey Kirkland,348507,127488,2 +120867,Atkins,204040,100763,11 +120868,Anselm,273879,24714,2 +120869,Mr. Alfred,59231,49835,3 +120870,Robert,85494,30453,0 +120871,,38099,119646,12 +120872,Vicar,53524,208920,12 +120873,Spiro Gregory,149793,103449,4 +120874,Andrew Margolis Jr.,82687,36801,4 +120875,British Soldier,1116,1232089,70 +120876,Natalie,33786,82326,5 +120877,"Nidhiki, Whenua",21379,52283,3 +120878,Luna,359025,1456183,6 +120879,Albino Woman,331962,1432518,17 +120880,Pekka Puupää,61070,232309,0 +120881,JonBenet Ramsey Auditionee / Herself,430826,1801191,2 +120882,Max,2274,20814,2 +120883,Sergeant,72638,34610,53 +120884,Public Prosecutor,4279,35003,11 +120885,1977 Doctor,335970,942302,53 +120886,Lola,446345,1679237,1 +120887,Mother Abigail Freemantle,13519,15532,3 +120888,Dr. Acharya,82243,88815,6 +120889,,180162,60634,2 +120890,Larkin Ravenwood,109491,59219,12 +120891,Herr Bartsch,259616,1511759,4 +120892,"Michael, an orderly",40060,1091366,13 +120893,Jérôme Sauveur,72375,18178,5 +120894,Admiral,77060,237286,6 +120895,Jim Batten,31385,17825,15 +120896,Delivery Man,10077,62941,19 +120897,Princess Anna,10804,20810,7 +120898,Rodney Poulgrain,15935,78958,13 +120899,Tom Trove,173634,85996,12 +120900,Cathy Dunlan,26558,1625710,1 +120901,Ophelia,28238,210098,4 +120902,Dr. Raju,48838,145997,7 +120903,Diggs,52452,146009,10 +120904,Alberto,26323,1170368,17 +120905,Claire Jacobs,274820,326,4 +120906,George,120729,1482567,12 +120907,Lumberjack (uncredited),93313,1421138,12 +120908,Camera Phone Guy,91679,1782593,36 +120909,Misty,11908,123149,4 +120910,Girl at Drive-In,14750,1199088,23 +120911,Abiah Smith,268875,34280,11 +120912,,62783,86726,0 +120913,Baba Chamatkar,192573,995393,3 +120914,François Jaubert,63764,39208,0 +120915,Ángel,98582,82700,1 +120916,Monelle,127812,13359,11 +120917,Valentine,246860,37917,1 +120918,Britney,257447,1696921,17 +120919,Madre di Beatrice,182415,1017266,14 +120920,Hairles Hamster Henchman (voice),116977,1178792,19 +120921,Officer Benjamin Clawhauser (voice),269149,41565,16 +120922,Lt Col. Rogers,127372,1435850,13 +120923,Cutter,315837,109833,6 +120924,Winifred Trent,186227,8232,16 +120925,Jacob,31031,107754,4 +120926,Nickolas 'Nicki',54548,70880,4 +120927,Shannon,44877,82639,2 +120928,Terezinha,303982,1475114,6 +120929,Zwangerschapsdocente,58396,228512,3 +120930,Prof. Wojciech Falkowski,47535,60414,4 +120931,Teniente,63615,956692,3 +120932,Hooker,13807,26778,10 +120933,Le baron Renaud,45000,25157,7 +120934,Sonia,82083,1431798,18 +120935,Furturistic Worker (uncredited),16320,80449,42 +120936,Beach,144183,91280,1 +120937,Freund 1,5393,61969,21 +120938,maisteri Kronberg,62775,93004,1 +120939,Pete,79054,1298297,2 +120940,Trey Anderson,360606,1854673,13 +120941,Lt. Cmdr. Tom Sedgewicke,20674,12688,7 +120942,Michelle,370234,21321,2 +120943,Miss Wilcox,6976,106628,10 +120944,Bobby,281418,38405,6 +120945,Hüsamettin,31547,77349,2 +120946,Martine,56947,35962,5 +120947,Cookie,14457,20373,4 +120948,Major,69903,16017,22 +120949,Le garagiste,5511,1664780,12 +120950,Pin Me Sister,10760,1371879,21 +120951,Patricia,62297,4287,7 +120952,Robin,66668,19492,5 +120953,Toyoshiga,73043,71641,3 +120954,Bank Customer,68750,1179482,11 +120955,Tourist,1164,1524845,25 +120956,Manju Kakkad,33556,1026839,5 +120957,Homais,273510,78427,9 +120958,,24426,106786,3 +120959,Sam Murach,1247,7447,2 +120960,Station Man,1673,91217,5 +120961,Elsie Kipling,25143,36662,3 +120962,Car Guy,242224,1413770,22 +120963,Seismic Soldier,293167,1521489,26 +120964,,284467,18647,2 +120965,Spartan Soldier (uncredited),1271,101218,82 +120966,Party Guest,244534,81341,12 +120967,"Angelo Bertoli, detto l'""Americano""",173177,120630,3 +120968,Johnny Burke as young boy (as Timothy Rooney),43022,164794,10 +120969,Cooper Tilson,12767,6065,0 +120970,Erol,336804,1055330,7 +120971,Principal Mulray,70695,68180,15 +120972,Himself,156220,1147112,0 +120973,Berix / Vastus,22259,19506,9 +120974,Señora Plasini,36785,1054437,2 +120975,Léone,61991,28254,1 +120976,Mrs. Whipple,14615,34268,16 +120977,Mrs. Sophie Baker,33729,129551,2 +120978,Calypso,28297,97043,12 +120979,Department store shopper,43470,121323,10 +120980,-,28656,101476,7 +120981,Bruno,32390,5079,10 +120982,Jack Il Dark,22025,57756,12 +120983,Anna,102629,573817,1 +120984,Caleb Barnes,53882,9045,0 +120985,Adalgisa Cavallari,43548,232888,7 +120986,Puck,2349,24064,11 +120987,Samir,16996,986634,18 +120988,Himself - at Banquet (archive footage) (uncredited),33740,103366,90 +120989,State Trooper,268920,1445249,80 +120990,Cotton's Parrot (voice),285,21700,30 +120991,Narrator (voice),128625,4038,1 +120992,Korg / Surtur (mo-cap),284053,55934,11 +120993,Dolores Barreto 'La motivosa',41298,1070129,8 +120994,Sgt. Meadowlark,150712,1240252,3 +120995,Benjamin Wormser,2993,29429,5 +120996,Bambi,266082,1818839,17 +120997,Lily,73700,3713,6 +120998,Edi Rainer,16436,40526,3 +120999,1965 Kid,335970,1493208,73 +121000,Trevor Cooper,218778,1581097,12 +121001,Rev. Jake Owens,426670,29512,4 +121002,Frank Reno,22408,41214,1 +121003,Emily Junk,353616,130640,3 +121004,Poliisi,101838,1029084,17 +121005,Fang Kang,46124,62427,5 +121006,Mike - Junkie,26558,1625714,5 +121007,Lee,54752,3223,5 +121008,Ben Davis,118549,11033,6 +121009,Mucki,6076,20619,17 +121010,Miss Rosemary Turnbull,47882,29953,5 +121011,Parshuram (Parshya)/Parvati (Paro),302435,222767,4 +121012,Britt Reid / The Green Hornet,250332,103672,1 +121013,Abnegazar (voice),408220,136152,11 +121014,,67177,32827,2 +121015,Steve,97767,86003,14 +121016,Tatão,97110,1012162,2 +121017,Millan,49717,142682,1 +121018,Sonja West,28820,46636,8 +121019,Nadine Brock,71140,560301,10 +121020,Jonah,263115,1788170,72 +121021,Gemma Taylor,14868,9827,2 +121022,Jessie Scott,117942,137866,4 +121023,Emily,250066,22123,2 +121024,Apostle Andrew,64942,141206,4 +121025,Andre - Henchman,176867,2659,21 +121026,Lee,288710,29862,3 +121027,Anya,57781,99287,3 +121028,Ramos,15468,39461,6 +121029,Maria,141145,1114245,3 +121030,Chris,7972,53441,4 +121031,"Mr Bourriol, le pharmacien",76642,11219,4 +121032,Sol 'Knuckles' Lanzetta,36634,16761,4 +121033,Bar Patron,333663,1589524,21 +121034,Tony Brown,337073,1481907,10 +121035,Dryad,21533,1093944,18 +121036,Pew,83191,20056,12 +121037,Conchita,329718,229932,1 +121038,Ma Davis,182899,20369,4 +121039,Government Agent,387957,4353,12 +121040,John Knox,43875,18586,8 +121041,Fredrik,336885,79329,3 +121042,Rita,52452,97049,3 +121043,Amber Von Tussle,409447,1098962,1 +121044,Drummer,76341,1734196,53 +121045,Katherine,6972,33449,2 +121046,Skateboarder #1,58467,1704726,23 +121047,Miner at Colliery,28421,32573,50 +121048,Rocco,186988,7707,2 +121049,Donald Duck,32428,78077,3 +121050,The Shadow,2309,56475,9 +121051,Young Amy,10055,62591,10 +121052,Doug,19053,190208,11 +121053,Dragon,17725,1827931,16 +121054,Sandra,229182,956385,6 +121055,Sir Harvey Russelrod,171075,11130,4 +121056,Ute,212503,1196885,2 +121057,Dr. Wachenstein,55563,55267,4 +121058,Gen. Ivolgin,63958,1148,5 +121059,Jeff,206197,1506478,12 +121060,Baby Shower Guest,19794,1030701,25 +121061,Avvocato,160844,121014,7 +121062,Dog Catcher #2,41759,179566,13 +121063,General Choi's aide # 1,11653,1615012,18 +121064,Customs Officer #3,14126,1086557,11 +121065,Colleague Up Top #1,58244,1504598,34 +121066,,77057,551569,25 +121067,Thomas the Watchman (uncredited),31984,153066,29 +121068,Claire,26688,78324,2 +121069,Ted Milner,1586,16327,3 +121070,Mike's Gang Member,90616,1740112,42 +121071,Phylo Percadium,76757,178622,10 +121072,The young beggar (as Gol Gotai Karimi),129277,68201,2 +121073,Lutkus,55681,91315,8 +121074,Regan,134155,1796922,10 +121075,Butler Vasconcelos,101342,1088234,12 +121076,Max,125063,1289114,0 +121077,Mrs. Porter,43385,233509,10 +121078,jako Petro,406449,1650373,3 +121079,Festőművész,128043,1086320,4 +121080,L'Americain Manater,206647,1102369,66 +121081,Shane Jones,44732,67850,1 +121082,Roger Shumann,38432,2493,1 +121083,Kathleen Walker,50875,2517,1 +121084,Westmark,254193,6715,11 +121085,Janis,68387,184571,9 +121086,Finnegan,57215,225698,13 +121087,Zoran,1253,21662,9 +121088,Krupashankar,325555,42208,3 +121089,Sui-Lan,37451,10075,4 +121090,Vilka,257534,1297699,7 +121091,Li Ji,12289,96614,4 +121092,Andreij,303542,8769,4 +121093,Ed Mullen - Darwin Player (uncredited),13912,33378,17 +121094,CBGB's Rocker,5123,1781842,55 +121095,Maria,16022,501,9 +121096,Tanya Yazzie,31263,938560,5 +121097,Cyrus Hershberger,46667,23586,3 +121098,Lussurioso,23750,1926,1 +121099,Black Jack Mallard,104720,4304,8 +121100,Aaron,364088,1514243,3 +121101,Allison McLeod,59882,11494,3 +121102,Michel-Ange,52705,1366818,5 +121103,Agustín,139519,941301,4 +121104,Charlie Chan,38460,34747,0 +121105,GI paratrooper,65787,9208,4 +121106,Dude,142989,1118147,0 +121107,Young Richard,317557,1683151,6 +121108,,69310,555366,45 +121109,Marie,265208,120251,21 +121110,Susan,125300,20005,1 +121111,Marie Brooks,374461,11317,2 +121112,Russell Dazzle,123103,1327733,13 +121113,Vasquez,333484,1168097,5 +121114,Brigida,355008,59174,6 +121115,Rives,43753,42162,3 +121116,Sidney Buckland,29805,12517,11 +121117,Wes,72710,176491,25 +121118,Flora,42852,40947,5 +121119,Keita Matsuyama,133160,80754,0 +121120,Nawel,295314,17475,5 +121121,"(segment ""Miminashi Hôichi no hanashi"")",30959,552673,57 +121122,Mr. Pinky's Customer,2976,1752076,106 +121123,Leonid's Father,148622,96513,6 +121124,Cynthia Potter,43846,29623,5 +121125,Charlotte,91390,234040,10 +121126,Philippe,70119,136745,4 +121127,SS-Gruppenführer Hermann Fegelein,613,3491,8 +121128,Avery,88390,144604,7 +121129,Wu Xie (as Han Lu),411442,1382332,1 +121130,Himself,159138,81943,2 +121131,Marc,204771,1187205,5 +121132,Waiter in First Restaurant / Station Cop (uncredited),22943,89783,18 +121133,Alcalde Alfredo García,14430,143175,10 +121134,Edward 'Romeo' Harper,174278,39799,0 +121135,Mark,58462,2876,2 +121136,Train Victim,26517,100509,5 +121137,Priest / MC,205584,1535058,32 +121138,Sandy's Entourage (uncredited),28739,1156046,20 +121139,Conspiracy Buff,74,182280,12 +121140,Alex Mann,23830,19866,3 +121141,Tori Pattersen,288668,57372,2 +121142,Sergeant,94009,4303,15 +121143,Ribold,48791,27764,4 +121144,Бывалый,330878,544618,5 +121145,Caroline,12182,71552,4 +121146,Keller Dover,146233,6968,0 +121147,Baron von Magnus,78318,89727,26 +121148,Charlie,70712,239574,2 +121149,Andreas Tanis,834,978,6 +121150,Garrett Flaherty,128598,1088193,7 +121151,Morao,33273,1412356,24 +121152,Woman,98368,1028461,1 +121153,Rebecca Myers,9648,70456,5 +121154,Tommy Gibbs,22029,9811,0 +121155,Sigint Tech,324670,1676636,21 +121156,Restaurant patron (uncredited),330947,1568721,57 +121157,Raphael - Wacky's Baby,14589,128983,29 +121158,Gepäckträger,267035,33082,6 +121159,Jackie Jackson,51994,145133,3 +121160,,237303,81683,1 +121161,Heather,21431,221673,4 +121162,Bartender,56154,1045919,19 +121163,Levi (voice),16366,34982,14 +121164,Tom of Warwick,18978,1880445,12 +121165,Baptist,15073,16867,2 +121166,,15468,32077,9 +121167,Dr. McPhee,181533,17835,8 +121168,,126315,1096780,1 +121169,,51334,999758,2 +121170,Hairdresser,15019,39187,10 +121171,Maya,381008,34200,5 +121172,Korppu,25335,82857,5 +121173,High Priest,13486,169795,19 +121174,Emile J. Keck,84397,10798,1 +121175,Dr. Jaelki,142984,5950,5 +121176,James 'Gil' Gilmore,80168,13576,1 +121177,Dark Figure,10389,231010,8 +121178,Dr. Gerta Von Vertesberg,259997,1302536,24 +121179,Brydie White,192990,36819,0 +121180,Studio Core Member #2,244786,1503845,35 +121181,Yung,270774,26724,4 +121182,Annuccia Jorio,84865,128235,0 +121183,Rufus,32338,1329,2 +121184,Marcus Vipsanius Agrippa,206514,29306,8 +121185,Citizen,24973,1507184,38 +121186,Linda (as Maurin Melrose - Marina Berti),117913,24602,1 +121187,Director (Guest Appearance),236808,292250,3 +121188,News Camera Man (uncredited),213681,1771571,44 +121189,"Sorin, her brother",184795,19463,4 +121190,Steve Faith,85200,63116,4 +121191,Orville Wingait,43390,115457,2 +121192,Grungy Guy's Girlfriend,405473,1800022,9 +121193,Ava Bannerman,295656,1378741,6 +121194,Ling Ling Kung,37702,1619923,18 +121195,,264036,23440,4 +121196,Remy,13061,10872,0 +121197,Narrator,44693,161040,7 +121198,Asst. District Attorney,34127,111464,9 +121199,Arthur,98250,1201,8 +121200,Peters Mutter,58757,93453,4 +121201,Woman of Dark Visage,42242,5657,10 +121202,Teo #2,18897,83813,4 +121203,Doctor (as Jirô Kumagai),52302,552169,7 +121204,Quincy,210047,59262,6 +121205,Erik Hauge,87654,935339,0 +121206,Joanne,140846,5699,1 +121207,Wayne Financial Employee,209112,639817,131 +121208,Rodriguez / Acorn Mascot / Umpire (voice),9982,61425,19 +121209,Fara,96106,1281096,13 +121210,Dr. Dustin Diablo,30002,8902,4 +121211,Paul,12247,71893,6 +121212,Paden,11509,8945,0 +121213,Jim Davis - Henchman,377170,1198701,34 +121214,Léon,274483,93532,2 +121215,Odello,48852,101765,15 +121216,Danny,10596,65798,9 +121217,Tommy,3539,32410,8 +121218,Dormouse,25694,103622,25 +121219,Mia (10 Years Old),87516,1605398,15 +121220,Kenneth,924,10182,1 +121221,Vivien,398891,145836,1 +121222,Kowalski (voice),10527,12098,13 +121223,Derek Baxter,48706,2969,5 +121224,Dr. Joseph Winter,89325,8945,1 +121225,Родион,85729,224488,6 +121226,Alex's Cousin,214129,1490776,16 +121227,Bruno,274483,992623,3 +121228,Alberic,28068,30963,9 +121229,Monica,266082,1646375,7 +121230,Sam,76203,1273239,43 +121231,Ben Martin,185564,54789,1 +121232,Jake Carter,171581,237740,0 +121233,SS Officer Checking Passes,41597,32119,24 +121234,Geoffrey,369885,1651392,38 +121235,Krager,57680,97598,16 +121236,Sadie Day,31899,12025,3 +121237,Jon,29108,51805,10 +121238,Le sentencieux (voice),22504,25958,5 +121239,Mayor William Dudley,140648,7633,3 +121240,Antonia,331641,803460,4 +121241,Susan,128437,256754,7 +121242,Ivan,381645,20284,3 +121243,la servante,43878,11532,8 +121244,Stryver,17831,5832,3 +121245,Max,51976,1094177,6 +121246,Dorothy,258480,1545516,32 +121247,Dudley Frapper,180929,827,1 +121248,,63215,1520910,29 +121249,,56942,1765704,10 +121250,Tad,15639,200406,8 +121251,Grandmother,12279,11318,7 +121252,New Rita,70863,886142,22 +121253,Assistant Coach Hunk Anderson,43812,1204352,54 +121254,Nuri,81549,87256,1 +121255,Zoe,39213,94098,3 +121256,Emily Gaunt,30014,105506,3 +121257,Vakama,21379,59312,6 +121258,Henry,390526,78431,1 +121259,Hedy LaRue,22682,131566,3 +121260,Officer Johnson,31445,992912,9 +121261,John,41578,6474,0 +121262,Consuela,345915,1254331,22 +121263,Sergeant Major (uncredited),44943,167109,60 +121264,Su Chen,11537,119457,9 +121265,Camera Guy,369406,1872419,26 +121266,British soldier (uncredited),297762,1820018,79 +121267,Biscuit,157293,1170147,10 +121268,Party Guest,43811,98047,65 +121269,Teri,59507,59807,1 +121270,Stronzolo,222517,69444,9 +121271,Young Paulette,85883,81468,4 +121272,Barbara Winslow,38579,1252312,12 +121273,Doctor Bruce Banner,14611,9289,2 +121274,"""Baby"", Mistress of Killi",320910,150199,11 +121275,Deidre Saxby,428493,9138,4 +121276,Kanjibhai,135718,85033,0 +121277,Jocelyne,52045,37920,1 +121278,Director Hung,91186,62410,15 +121279,McKeever,47882,30217,15 +121280,Carson,23096,141244,12 +121281,Ben,18613,6640,4 +121282,Rangasamy,49074,237638,5 +121283,Dancer,43809,121236,18 +121284,Detective Ruiz,397422,12798,11 +121285,Kevin Tughan,72094,1665,3 +121286,Detective Joyce,20481,31925,4 +121287,Actor as 'Union Officer' (uncredited),51303,33383,11 +121288,Hijacker (uncredited),107430,6772,18 +121289,il dottore,121516,228158,6 +121290,Richard Bullit,20106,22306,0 +121291,Mouratet,55370,24461,10 +121292,Old Woman,48118,115284,10 +121293,U.S. District Attorney,52864,20370,13 +121294,Leonard,91390,55152,2 +121295,Hera,32657,1218928,17 +121296,Miek (voice),30675,106776,5 +121297,"Fox, Swan #2 (voice)",13517,1267241,13 +121298,Vincio,41427,126443,5 +121299,Second Villager,27966,1030251,25 +121300,Kay Summersby,399790,1830202,12 +121301,Moderatorin,75969,220743,14 +121302,Zaida,92285,32304,0 +121303,Pvt. Neumann,7454,35863,4 +121304,Raffi Segal,287483,1363563,5 +121305,Ace,41932,4604,3 +121306,Jacob's Friend #3,289712,567616,11 +121307,Nadine,352890,1561244,11 +121308,Alphonse Noyard,54563,124080,1 +121309,Frau Saurion,256311,5759,9 +121310,Phone Sex Operator,352890,1561252,20 +121311,Turnkey,150712,34332,20 +121312,Raja,64784,224462,5 +121313,Kazumi Tokunaga,11838,552502,6 +121314,Hassan,59935,230086,4 +121315,Dennis,157351,658,2 +121316,Himself,17073,93735,3 +121317,Alexsandra,362703,38670,2 +121318,Crime Scene Tech,142402,1117084,15 +121319,Denise,1482,36190,3 +121320,Paramedic #1,48281,5921,15 +121321,Cubby,227325,20959,6 +121322,Iagoo,238985,81182,3 +121323,Deputy John Rowley,38807,124552,4 +121324,Anthony Reece,123770,50235,4 +121325,Jeff Roth,31462,13310,14 +121326,Demonswill,45132,15218,16 +121327,Son Goku,39103,90496,4 +121328,Horace Peter Hemingway,43903,30002,4 +121329,Radnor's Wife,20674,82220,20 +121330,Gurun,24647,589356,11 +121331,Kep,49853,1648789,32 +121332,Oblio (voice),23544,75345,6 +121333,Mr. Wellington,51249,1230,0 +121334,Mila,99738,1153528,3 +121335,Samantha's Boyfriend,10097,63369,19 +121336,Genaro,127864,1076591,12 +121337,Mary McGinnis,64202,8437,5 +121338,Prof. Rawlston Jennings,302036,1417182,5 +121339,Julis Schmitke,314635,15486,1 +121340,Augustus,376501,53969,10 +121341,Lashan Cowhand (uncredited),75315,2098,20 +121342,Enrique Amorós,43751,37525,7 +121343,La Chelo,254869,1423079,31 +121344,Chris Mulligan,197737,30495,2 +121345,Marshal Hoot Gibson,285946,538370,2 +121346,Himself,56533,143186,0 +121347,James,17236,47628,1 +121348,Marcela,82265,231940,6 +121349,Ben Wade,38807,16055,9 +121350,Phantom Virus,15601,74614,4 +121351,Vorarbeiter,79362,18711,11 +121352,"Dr. 'Egghead' Squires, Messinger Inst.",153165,13976,12 +121353,Allister,271718,1490112,16 +121354,Karl,508,17289,21 +121355,T.J. Hornbeck,156335,124634,9 +121356,Bones Lafferty/John Quincy Addams/Boss Crook,107596,86369,10 +121357,Sean,18088,82636,0 +121358,Porcello,44741,1041214,7 +121359,Belga Line Steward,244201,43845,13 +121360,Magnus O'Leary,55694,922,6 +121361,School Classmate,15092,1209705,23 +121362,Inmate,69,1400931,21 +121363,"Eric Landor (segment ""Disembodied Hand"")",26811,3796,6 +121364,Job,246415,1439316,3 +121365,Dance Contestant,157343,1016036,13 +121366,Meg,24971,5969,3 +121367,Charlotte's Aunt,23367,95403,50 +121368,Meche,42502,102305,2 +121369,Peter Kürten,386100,3841,2 +121370,Leonard,14142,84897,7 +121371,Shift Manager,97051,207453,14 +121372,,372113,223938,1 +121373,Sam's College Boyfriend,85350,1467975,54 +121374,,49446,142316,3 +121375,Simone,40817,73475,7 +121376,Abundio,198795,84240,14 +121377,Eleanor Packer,28564,13577,2 +121378,Susan,85024,1204276,1 +121379,Lauren,64130,55256,3 +121380,Father Duffy,72638,3155,2 +121381,Rajeshwari Pathak,33124,86077,2 +121382,Mestre António,167707,536707,3 +121383,Tori's Valet,70368,1188444,4 +121384,Carl Donahue,19017,103069,3 +121385,Bull,46448,130617,3 +121386,Jess Wheatley,83965,149438,1 +121387,Jessica,82134,593044,4 +121388,Chief Inspector Wong Kai Fai (OCB),2463,63582,4 +121389,Kimball 'Big K' Ward,11351,1340628,10 +121390,William,332936,85142,6 +121391,Michael Myers,24150,9832,2 +121392,Detective,112558,1833946,8 +121393,Megamind (voice),38055,23659,0 +121394,Brooke,405388,1163789,4 +121395,Pinkberry Worker,284293,1391352,15 +121396,Kwan Sai Wing,56329,1175809,4 +121397,Bill,266425,1313145,17 +121398,,216046,93543,3 +121399,Rolf,99545,1547,6 +121400,Man in White,62301,216330,2 +121401,Roberta Shaw,195269,68764,9 +121402,Schmitt,9914,60416,10 +121403,Stefano,53805,229273,16 +121404,Carmelo,403450,1285101,13 +121405,Menka,18178,82759,1 +121406,พี่มาก,184219,226564,6 +121407,Max,52859,955691,27 +121408,,276165,67849,1 +121409,Opera Police,177677,1562091,41 +121410,Matthew,29798,71520,1 +121411,Sanders' Nurse,67375,85738,50 +121412,Zuccalà,173847,147191,15 +121413,Lotera,348537,100259,10 +121414,Nicky,94874,157169,0 +121415,Alma Nanni,120972,1434258,2 +121416,Bear,18387,13952,5 +121417,Bombmaker's Assistant,13979,963077,5 +121418,Shoushi,64784,100128,8 +121419,Security Guard #1,58244,101220,25 +121420,Richard,37929,119134,6 +121421,Max,301875,21633,11 +121422,Police Chief Auditionee / Himself,430826,1891521,39 +121423,Katya,45273,1332250,14 +121424,Klara von Oettingen,447236,1368669,2 +121425,Dr. Carver,52991,30279,4 +121426,Dr. Ralph Therman,264080,2112,10 +121427,Cecilia,18082,937505,5 +121428,Ariel,96888,1011139,3 +121429,Amir,238204,1470018,2 +121430,Hickey Gang Member,111470,1811852,41 +121431,Macpherson,60269,1218962,6 +121432,Mrs. Phillips,22020,58808,8 +121433,Mark Corso,183258,211427,4 +121434,Hallie Richmond,32195,78197,2 +121435,Twin,277968,38459,9 +121436,Clerk,331588,36699,16 +121437,Cheetah Chrome,111479,10989,1 +121438,Angela,332286,85143,2 +121439,Brigitte,223946,35137,7 +121440,"William ""Bootstrap Bill"" Turner",58,1640,3 +121441,Connie,85640,178360,6 +121442,Patrick,73873,1266585,10 +121443,Le médecin / The doctor,68822,1540664,30 +121444,Himself,391995,219861,1 +121445,Mitru,14066,94349,4 +121446,Wedding Guest,242835,1191818,18 +121447,Silent Banker (uncredited),80771,121247,15 +121448,Ed Wong,19629,21629,3 +121449,Tina,86820,10871,2 +121450,Art Walker (as Matt Le Nevez),15810,75488,4 +121451,Andy,229182,49918,3 +121452,,400610,1486681,7 +121453,Léon,33095,533762,4 +121454,,60199,27008,9 +121455,Günter Reisch,2692,22911,12 +121456,Sharon,82929,187538,6 +121457,Mike,369406,1539094,18 +121458,Ronnie,130739,49767,13 +121459,Carney Boy,6972,1209256,10 +121460,Ville,164419,965718,2 +121461,Hooker,20674,1217903,9 +121462,Preacher,94725,182715,11 +121463,Alice,156180,115172,5 +121464,Harry the Hawk / Silver the Horse / Patches the Horse / Rodeo Longthorns / Ranch Steer (voice),18843,71857,18 +121465,Père de Marc,85735,18770,10 +121466,Bollie Prindel / Roodown,140607,946696,20 +121467,Alex Sperling,31880,116295,2 +121468,Dancer,57438,226197,39 +121469,Lemonade Stand Kid,87428,1202534,25 +121470,Michelle Roberts,15486,78260,2 +121471,Kenner,11358,110525,21 +121472,May,9056,1338,2 +121473,András Várnai,17780,82359,3 +121474,,261538,107963,3 +121475,Head ER Nurse,41171,197795,40 +121476,Handsome Pants-Catcher,302699,57633,21 +121477,Le patron de la boutique,33436,48417,18 +121478,Mattia,22182,88469,0 +121479,Coach Zeffer,55728,167823,6 +121480,Blind George,157847,1765438,17 +121481,Atticus (voice),65759,1335308,14 +121482,Lady Ruby,151431,8238,5 +121483,Sekretär,267389,26426,11 +121484,Girl without brother in New York,67272,571547,8 +121485,Sidney,10165,47773,2 +121486,Young Adonis,312221,1421229,48 +121487,Markowski,369444,1538883,8 +121488,Samantha 'Sam' Callen,36983,121764,1 +121489,Russian Officer,91480,100253,5 +121490,Tantrik,301671,1243976,1 +121491,Father Rodriguez,283445,38571,6 +121492,Marcello Agost,38792,53660,1 +121493,Gangster,49943,86951,5 +121494,,201429,21750,11 +121495,Eleanor Stone,43821,20124,1 +121496,Agent Fred Foreman,29260,82837,5 +121497,Rico (13 Jahre),311301,1430484,9 +121498,Migi,282070,91870,3 +121499,L'agent Satellite,98277,1017267,6 +121500,Vena,27270,76465,1 +121501,Paul,76784,27961,4 +121502,Mond (voice),12697,17546,8 +121503,Henry R. Hocknell Jr.,13834,11064,4 +121504,Pat Dixon,43514,30269,6 +121505,Halloween Dancer,11247,1776534,53 +121506,Tony Contiella,13173,58224,12 +121507,Paris Hilton,96936,38406,29 +121508,,662,1167683,6 +121509,Sam Fairman,42703,12827,7 +121510,,63215,1520901,10 +121511,Midwife #1,152748,71565,19 +121512,Kathryn Munson,263115,21215,8 +121513,Jeanne,17483,40060,3 +121514,Caroline Hall,156335,930692,1 +121515,Astronomer,62472,1117087,27 +121516,,137504,1530415,23 +121517,Border Guard,263115,1244938,88 +121518,Thomas Hartmann,46178,82536,1 +121519,Jacob Gallery,39766,7333,0 +121520,,54858,1136764,4 +121521,Dana,269173,999790,2 +121522,Stage Mother,43809,1187283,59 +121523,Justin,71670,74427,2 +121524,Feggy,207699,982316,8 +121525,Scout Master,9956,60916,18 +121526,Casino Patron,268920,1466628,109 +121527,Holt Ramsey,288281,32747,2 +121528,General Sline,9080,44998,2 +121529,Greta,330588,32131,6 +121530,First Administrator,424600,1648618,38 +121531,Above and Beyond Worker,13090,1244933,19 +121532,Sgt. Cord,41551,94293,4 +121533,,18908,1440941,16 +121534,Dulce de la Rosa,67328,180705,2 +121535,Himself,329690,13922,8 +121536,Bells,26914,932328,11 +121537,Scooby-Doo / Fred (voice),13355,15831,10 +121538,Samuel Adams,104067,1110548,4 +121539,Peter,26914,932331,14 +121540,Amanda,39436,553193,16 +121541,Captain savage,277778,1066,4 +121542,,299165,1697806,27 +121543,Ramon,27137,75946,5 +121544,Nicholai Chernoff,10274,64675,14 +121545,Old Judge,13580,56875,12 +121546,Chudy,31021,46246,3 +121547,,182843,52087,1 +121548,Inspecteur de police,28212,35085,8 +121549,Lizard Boy,263115,1821512,39 +121550,Dia,38031,76792,15 +121551,Mike Cutter,354287,1711173,17 +121552,Tanya,48319,181851,1 +121553,Joan of Arc / Female Dancer,20521,30882,15 +121554,Matt,238749,136963,2 +121555,Guy Bennet,20200,7693,3 +121556,Aggie / Geraldine (voice),213110,13924,4 +121557,Hloupá zena,18352,77378,9 +121558,Himself,13516,939080,16 +121559,Csámpás Rozi,63625,560237,5 +121560,Prison Officer,4550,1117877,8 +121561,Bikini Dancer (uncredited),15092,1895699,70 +121562,Policeman,54804,1637458,13 +121563,Fred Barrett,1938,13994,5 +121564,EMT #2,120802,1818386,37 +121565,Zach,51736,1178301,3 +121566,Jeroo,249914,85672,0 +121567,Sergei,91070,21593,11 +121568,Parsons,204255,206912,2 +121569,Alain Posche,121936,7693,3 +121570,Bob,31385,1050217,12 +121571,Manuela,121510,102218,5 +121572,Drina,278348,21124,0 +121573,Patsy Gallagher,5413,43132,1 +121574,Lexus,304336,28639,1 +121575,Monkey,90034,20113,4 +121576,,58447,1325478,6 +121577,Vater Wand,140554,1707838,31 +121578,Pvt. Cotton,133715,100318,3 +121579,Lily,18569,89101,7 +121580,Monteray Tavern Maitre'd,31899,1286628,34 +121581,Erika,73099,568083,3 +121582,MAJ. Brickerson,463800,152820,4 +121583,Dr. Jason Love,4893,14261,0 +121584,Pamela,12796,172191,8 +121585,Avv. Cerullo,105906,1071993,1 +121586,Dite,38027,88161,16 +121587,Beast Boy,460135,60227,8 +121588,John Ross,223485,3075,4 +121589,Writer,87827,28847,9 +121590,Cashier,43811,141586,46 +121591,Estevez,22894,21049,14 +121592,Jenny's Son,51999,1361549,15 +121593,,15776,1433092,13 +121594,Geri Nicholas,54982,39464,7 +121595,Bonnie Hopps (voice),269149,5149,8 +121596,Steklyashkin,41581,131209,4 +121597,Paul Guetz,2029,18177,2 +121598,Ronnie,35626,931643,2 +121599,Miriam,137093,20747,8 +121600,Carolyn,142216,42335,19 +121601,Barksdale,118953,34818,9 +121602,Philippe,76207,19084,10 +121603,Clip from 'A Date with Judy' (archive footage) (uncredited),33740,579763,73 +121604,Bounty Hunter,310135,1890932,47 +121605,Debbie Waserman,312669,1662557,17 +121606,Vicky Caldwell,94671,2138,2 +121607,Cognato di Saverio,53486,120635,16 +121608,Alan Caulfield,9471,10866,16 +121609,Aunt,14552,69122,3 +121610,Sam,11636,1136791,16 +121611,,33340,937647,7 +121612,Manon Lescaut,132332,130702,0 +121613,Stourley Kracklite,17238,6197,0 +121614,Emma,95516,73525,7 +121615,Bar madam at Ginzan hotspring,111398,123858,9 +121616,Ayu,70057,38280,2 +121617,Barbara,318922,2165,11 +121618,Lela Wilson,61049,154433,4 +121619,Mr. Gaunt,128270,146331,34 +121620,Norma,82481,1127382,10 +121621,P.K. Age 18,13823,10822,0 +121622,Reporter,98566,1412785,23 +121623,Ji-hye,270759,1464070,9 +121624,Louise,98870,14698,3 +121625,Osgood,265208,7133,6 +121626,The Deadgirl,23966,96327,7 +121627,CeCe,298751,203740,8 +121628,Le prêtre,88486,32677,6 +121629,Gendarm Förtsch,12523,36013,2 +121630,cameo,94555,1241035,6 +121631,Anna,15476,155752,9 +121632,(uncredited),127521,1084852,10 +121633,Dana,270383,20980,5 +121634,Cornwall,46915,55037,10 +121635,Randy Stevens,76785,21127,2 +121636,Sceriffo,121329,22477,5 +121637,Lee Gershwin,43491,82349,4 +121638,Jim - Police Sergeant (uncredited),44875,120734,13 +121639,School Administrator (uncredited),300667,1315752,24 +121640,Bartender,47057,4887,6 +121641,Woman on the Beach,108017,1167484,11 +121642,Rick,26642,287,0 +121643,Ann Gorman,31167,105506,1 +121644,Matthieu Cohen,57382,226021,5 +121645,Martin Mortinson,250332,103108,35 +121646,Cameron,270383,53286,6 +121647,Bud Day,18638,102315,6 +121648,Tad Gruzsa,10425,2975,1 +121649,Magdalena,133458,132245,6 +121650,Dancer at Gala,37710,1755034,50 +121651,Prinz Viktor,266568,231835,4 +121652,Shim Soo-Bin,296633,1278162,7 +121653,Mr. Leach,6591,44435,10 +121654,Himself,142478,148745,5 +121655,"Tomo, Oharu's Mother",43364,134399,1 +121656,Principal Purdy (voice),82703,537,6 +121657,Marine (uncredited),44943,1205885,41 +121658,Lady Edwina Hogbottom,21780,13637,2 +121659,Advisor,168259,78804,42 +121660,Dreier,26873,96516,7 +121661,Chief Petty Officer Steve Stevens,177190,131813,5 +121662,Tobi,261036,2387,3 +121663,Preacher,41283,1225650,18 +121664,Tim,39053,59841,4 +121665,Himself,338063,1581560,11 +121666,Anna Ancher,128900,1045302,5 +121667,Captain Warren Jensen,35564,2115,13 +121668,Ferrero,82662,94255,5 +121669,Nurse,19338,1299080,14 +121670,Lotta,44552,1081839,4 +121671,Le postier,11912,39334,3 +121672,Slave (uncredited),76203,1438308,74 +121673,,85327,17187,0 +121674,Dream Girl,80941,1472518,33 +121675,Record Producer,6575,8265,34 +121676,Lewis Gardner,77585,523952,1 +121677,Will Castle,7220,53200,13 +121678,Feyzo,27211,97272,0 +121679,Leah Diehl,11142,50683,1 +121680,Joana,167874,1149603,1 +121681,Young Lulu,27137,1185444,7 +121682,Willie Monroe,281215,2047,10 +121683,Head Dentist (voice),126319,3905,31 +121684,Hans,206237,74,1 +121685,Migrant #6,273481,1794927,36 +121686,Duane,13802,184875,17 +121687,Erlanger,26891,45693,9 +121688,Patricia,310972,74361,8 +121689,Himself,64450,1522643,21 +121690,Agent Kiley,2503,78110,22 +121691,Marge,4551,3283,29 +121692,Anne Shaw,33541,30415,3 +121693,Maggie,54660,821,1 +121694,Nat (voice),13956,76098,3 +121695,Divine Intention Dancer,243683,1398154,68 +121696,'Big Irv' Klopper,46830,26715,4 +121697,Rodrigue,35025,554591,27 +121698,Elizabeth Almond,28571,95271,8 +121699,Vincent Dardis,94348,9186,8 +121700,Police captain,30624,4074,7 +121701,Private Petrovich,15616,84952,4 +121702,Sexton,60281,1171568,6 +121703,Deputy Police Commissioner (uncredited),90461,89729,14 +121704,Kenny,85350,1104323,24 +121705,Zwilling 2 – Diego,75969,1902104,57 +121706,Detective Donovan,43228,108289,5 +121707,Donna Rosa d'Alvadorez,72611,86708,3 +121708,Priest,19765,124141,3 +121709,Liam O'Leary,10097,2039,0 +121710,Mr. Smee,273106,1519548,5 +121711,,25936,86873,9 +121712,Professor Szabo,24397,61110,9 +121713,Sheriff,22396,152599,10 +121714,Mumbly,335970,1718156,59 +121715,Kathy,14029,99549,4 +121716,Elena,142320,234814,14 +121717,German Prisoner #3,19996,1764169,55 +121718,Major Buchan,16444,109850,11 +121719,Dan,221240,80420,3 +121720,Daiju Mononobe,35435,1248371,9 +121721,Miltos,47778,65897,1 +121722,Mrs. Koppelman,104528,1229461,6 +121723,Pastor,10917,141052,14 +121724,Stanley,219345,11764,9 +121725,Shalini,4253,35794,7 +121726,,115427,402999,5 +121727,Melo La Qualunque,161545,1496178,13 +121728,Young Joy,274479,972492,17 +121729,Judit,348537,1423493,8 +121730,Danny,299780,1363063,20 +121731,Abigail Doone,29286,25173,5 +121732,Wally Webb,82781,82754,12 +121733,Harley Sullivan,28303,4958,1 +121734,Hilda,81541,80933,0 +121735,Detective Hank Havenhurst,44027,5293,1 +121736,Plunkett,987,41243,15 +121737,Trapper Willis,41604,4965,6 +121738,John,27450,1348858,9 +121739,Jenny,55712,41273,2 +121740,O'Connor,24486,1589813,14 +121741,1978 Older Woman,55347,65749,21 +121742,Brains (voice),38356,117187,20 +121743,Nathan,1807,19206,11 +121744,Jerry Fanon / Eddie,47561,5563,1 +121745,Simon,105077,61545,7 +121746,Myca Cruz,391757,1602205,3 +121747,Crying Boy,24619,142635,37 +121748,Alien Cop (voice),9982,9657,16 +121749,USSE Bridge Crew,188927,1897710,47 +121750,Pool Mom,179826,1404646,23 +121751,Harold,80596,30766,34 +121752,Lauryn,98369,38666,2 +121753,Vendor,2577,26197,2 +121754,,295273,1628639,17 +121755,Crow (as Big Punisher),109466,183255,1 +121756,Oncology Receptionist,73565,1046233,18 +121757,Dr. Perry,27122,130840,7 +121758,Mochilera,121929,1886067,9 +121759,Bonnie's Mom (voice),77887,24358,13 +121760,Translator,5206,42092,3 +121761,Buck,15613,12548,12 +121762,Prudence,4688,38944,5 +121763,Bachiller Sansón Carrasco,145481,100927,4 +121764,Miss Wilcox,179066,1186862,22 +121765,Oberst Krüger,3577,48711,8 +121766,Umeko Suzuki,104744,134814,1 +121767,Serveur des Deux Magots,77338,204675,30 +121768,Bachelorette,137093,1046200,13 +121769,Victoria,85442,199748,7 +121770,shérif Steve Marley,20106,16922,3 +121771,,257831,592067,19 +121772,Lew,244580,1275,10 +121773,Gonzo,340187,1454097,4 +121774,Lady Bracondale,53231,1006951,2 +121775,Sword fighter twin,64316,83556,14 +121776,Australian Tourist #2,10488,1077898,13 +121777,Rogers,175035,9067,4 +121778,Lady Violet Ormsby,43889,77670,4 +121779,Interrogator,318781,1694294,17 +121780,Charlie Turner,396392,2547,3 +121781,"David Holtzmann, Gertrude's Attorney",52959,94296,9 +121782,,293122,1045993,5 +121783,Sadia Khan,1404,16902,2 +121784,López,107073,1481494,6 +121785,Reporter (uncredited),42825,9097,13 +121786,Franklin Morello,146243,1338009,11 +121787,,205349,1187769,11 +121788,Freund 2,5393,43125,9 +121789,Takasato,197854,110662,11 +121790,Prof. Newberry,51736,1088483,10 +121791,Renata,10986,67970,4 +121792,Antonia,137315,1107182,1 +121793,Slick,11509,4785,26 +121794,George Calloway,109251,46099,4 +121795,Hambo,231082,1070745,4 +121796,Nora Helmer,42457,29545,1 +121797,Alexander Richter,8888,56652,4 +121798,Mossberg,71670,1266053,9 +121799,Twiggy,41380,1615230,13 +121800,Contrôleuse Mumbai,352025,1784150,14 +121801,,87204,1671,6 +121802,Helen Dale,112655,99827,1 +121803,Moe,297668,1145892,6 +121804,Tina Williams,70046,23504,2 +121805,Sophie,55853,551796,15 +121806,Overweight Cop,339403,76540,28 +121807,Papanda,21036,1077335,1 +121808,Nat,33272,144081,8 +121809,Le plombier qui vient réparer la fuite (uncredited),29259,1855554,18 +121810,Hannah,21780,8185,5 +121811,Daniel Dolphin,51800,1317371,11 +121812,Mr. Tanner,56601,14888,12 +121813,Jeff Sanford,251227,1197362,4 +121814,Daphne / Natasha,20558,15761,4 +121815,школьница №1,76746,225682,3 +121816,Fernanda,159638,56732,4 +121817,Emily,369894,1376880,5 +121818,,60316,136797,2 +121819,,13506,302432,10 +121820,Mimi (voice),79707,82055,6 +121821,,220005,223038,3 +121822,Tom Coburn (as James Farley),134238,14420,13 +121823,,71336,32626,5 +121824,T.C.,35626,77347,11 +121825,Pilot,76757,91932,59 +121826,Mario Romani,83802,3418,12 +121827,Printer,85699,1315210,22 +121828,Stable Boy,11509,51851,17 +121829,Rory O'Suaird,408616,43138,6 +121830,Aravind's friend,86718,580682,4 +121831,Aman Mehra,11854,42802,3 +121832,Mr Wong,11636,236076,31 +121833,Mary Best,81660,204462,1 +121834,scenes deleted,46586,1482572,16 +121835,Claire,364379,1164003,2 +121836,,43967,1681,14 +121837,SIn,32168,16962,0 +121838,Marito,123103,971898,11 +121839,Ole Duke,340275,2202,18 +121840,Dokter,394645,233884,15 +121841,Carson Drew,47882,16766,2 +121842,Guide,123103,1049536,8 +121843,Terri,131689,165293,1 +121844,Commissioner Lum Chi Chow,39943,14533,4 +121845,Standing Bear,41604,127032,3 +121846,Lightnin' Bill Jones,168217,1156984,0 +121847,Madame Daslay,128917,77226,1 +121848,Carol Bloom,34334,52475,4 +121849,Sadie,424661,1428070,1 +121850,Lyn,85200,1709368,2 +121851,Young Johnny Cash,69,429,13 +121852,Chase,330947,1423664,26 +121853,Jan,2349,20270,7 +121854,Sloan,2486,25441,12 +121855,Cop at El Station,31913,16525,13 +121856,,254689,962438,7 +121857,Barbara Creedon,12601,1827140,5 +121858,Jeff,70351,128174,8 +121859,Carter Scott,13991,77912,1 +121860,Gabby,23340,89999,2 +121861,Victoria's Grandmother,71866,101231,7 +121862,Danny,78563,1001626,2 +121863,Christopher S. Hawley,13561,1316523,5 +121864,Baldy Schultz,111582,13357,14 +121865,Jef,137182,1106963,6 +121866,Charlie,70151,213914,8 +121867,Sierra Leone Representative,329865,229561,31 +121868,Man in Cantina (uncredited),44869,10806,18 +121869,Kirikou jeune homme (voice),21348,87427,6 +121870,Kevin,137200,127387,5 +121871,Military Officer,6687,1129801,11 +121872,Grace,111605,106791,2 +121873,John,214756,13240,0 +121874,Young Vince,18586,83270,1 +121875,Biskup,73775,3702,10 +121876,Abahachi,8366,18072,0 +121877,Roommate,60965,232046,15 +121878,Polizeihauptmeister Schmitt-Jahnke,11930,35264,7 +121879,Cat,13807,12466,5 +121880,Cafeteria Girl - Another Girl,38322,1321099,23 +121881,Himself,13586,7028,0 +121882,Dr. Roland Cook,193878,67685,2 +121883,Anka,374475,117656,5 +121884,Candace,128270,1689289,29 +121885,Ernő Blaskovich,447236,225932,1 +121886,король Сигизмунд,365544,235097,2 +121887,Himself,245394,100197,7 +121888,The Emperor,217923,1436115,6 +121889,Club Steward (uncredited),17136,89188,38 +121890,Solomon 'Beauregard' Bennet,45211,21708,0 +121891,Nurse - Dialysis,38448,78285,4 +121892,Chewey,316042,1574442,8 +121893,Gloria,158908,15565,2 +121894,Paul White,33592,18181,0 +121895,Martin,76829,2565,0 +121896,Mr. Monsour,45431,156271,12 +121897,,44716,1807470,28 +121898,Margaret Windsor,206328,104057,4 +121899,Peggy,64015,1575171,4 +121900,Dr. Cory,65891,13399,3 +121901,Iraqi Rug Man,424488,1378256,41 +121902,Jojo Parker,150065,1031067,5 +121903,(as Mª Dolores Tovar),130457,72890,10 +121904,Shuzo Yamakoshi,105210,80865,8 +121905,Fermín,300601,560254,6 +121906,Koen de Geyter,14019,76283,2 +121907,Gwen,19398,1469186,10 +121908,Tamiya Ryoko,282069,110058,2 +121909,Stark,24731,3982,5 +121910,Jacques,14650,8789,2 +121911,Andrea Phillips,109424,2229,1 +121912,"Edward ""Eddie"" Miller",25551,85940,1 +121913,Giridhara Parthasarathy,330418,1271650,6 +121914,Bride,34672,126229,18 +121915,Judge B. Bennet Galloway,14423,65827,5 +121916,Nemo (voice),127380,1559638,2 +121917,Catwoman / Batcomputer (voice),177271,983368,9 +121918,Darren Mason,12591,3085,9 +121919,Korogodsky's wife,62731,236375,6 +121920,Woman Leaving Apartment (uncredited),20301,8829,12 +121921,Lewis Skolnick,21029,62036,0 +121922,Bartosz (age 12),36402,1234518,6 +121923,Pundit,214756,203207,52 +121924,Workman,85715,1461065,12 +121925,Bloody Rain assassin,18758,1175525,12 +121926,Takeo,402455,1602464,24 +121927,Tall Man,50942,157847,3 +121928,Grace,229297,67837,4 +121929,Pete Morgan,30624,35320,1 +121930,Le détenu qui assiste le gardien à la fouille (uncredited),29259,13697,17 +121931,Sir Dinadan,18978,1880444,9 +121932,Johann Krauss,293982,38773,17 +121933,Dock Watchman (uncredited),28668,95311,13 +121934,Nanny (voice),13654,97170,11 +121935,Harold White,158150,11867,1 +121936,Frankie McCarthy,137491,64618,2 +121937,Sammi,34734,61134,3 +121938,General Chao (uncredited),4820,20904,15 +121939,,11328,1444486,34 +121940,Julie,72648,119967,3 +121941,Tour Guide / Camp Ogre / Ogre Naysayer / Baba Witch / Melty Witch / Witch Guard #2 / Butter Pants (voice),10192,64151,30 +121942,Jessup,353979,55425,8 +121943,Susan Pevensie,2454,5529,2 +121944,Mr.Freischutz,188468,34758,10 +121945,Breitstein,53792,4119,13 +121946,Krishna,63825,1339967,8 +121947,Ward Andrews,31324,3361,2 +121948,Klára,436343,1183134,5 +121949,Himself,191502,1214745,17 +121950,Lt. JG H. Paynter Jr.,10178,85940,8 +121951,Hanae,43113,136384,21 +121952,Lt. Smithson,150338,1219270,7 +121953,Papo,15934,4204,7 +121954,Magda Venni,42436,1252737,3 +121955,Silent Girlfriend,44746,63606,14 +121956,Nori,346490,1563439,1 +121957,"Donald Kenneth ""Deke"" Gentry",242835,2090,0 +121958,англичанка,57701,137624,10 +121959,Doris,87302,1185039,4 +121960,Pilastro,42579,128250,7 +121961,,441881,86022,4 +121962,Young Mangu,341007,81837,5 +121963,Gulag Guard (uncredited),145220,11115,61 +121964,Astrid,57438,226183,21 +121965,Rama,180299,113732,0 +121966,Mr. Gaunt,30014,105507,9 +121967,Chambermaid,99374,2926,6 +121968,Катя,31418,108046,0 +121969,,37502,588068,3 +121970,Lem Tustine,34796,1231648,0 +121971,Peters,100528,37448,12 +121972,Ida Combs,4413,1142303,18 +121973,Thompson,83995,97641,7 +121974,Lauren,26469,92747,4 +121975,Brigadiere Finanza,255456,231988,7 +121976,Harry Proctor / 'Old' Joe,43441,11998,13 +121977,Math Professor,381008,1784729,37 +121978,Tania,36402,105562,2 +121979,Lusia,375742,1564287,17 +121980,Katharina Kneißl,12523,1194043,8 +121981,Robert Clayton,42252,3084,0 +121982,Ivan,374473,1650251,8 +121983,Sam the Seed / Beggar Su,49642,68676,0 +121984,Dr. Julia Hoffman,62213,1283,2 +121985,Marianne,1427,17075,18 +121986,Chae Strachan,277713,95716,7 +121987,Maya Dolittle,18843,31031,0 +121988,Dancer,78177,583267,14 +121989,Bill,260947,105641,2 +121990,Clara,377853,142689,3 +121991,Danny,287587,21127,3 +121992,,70327,111956,5 +121993,Piccolo (voice),303857,85286,5 +121994,Sophie,359870,1334639,13 +121995,Himself,325365,1427065,1 +121996,"Ettore, il padre di Leo",182415,119350,5 +121997,Oscar (voice),105965,28410,2 +121998,La maîtresse,54155,76905,12 +121999,Yang Tin Choi,88922,1078833,11 +122000,The Vuvalini,76341,75540,19 +122001,Shingo no yuujin,46492,134346,8 +122002,Lon Gordon,102362,23346,29 +122003,Richard Dunn,39414,8447,0 +122004,Michael Scott,417406,65166,5 +122005,Pietro,162282,1300918,8 +122006,Thomas Allen aka Killer Burke,262528,27035,8 +122007,Lenochka,149170,584065,15 +122008,Charles Aiken,152737,2955,2 +122009,Martha Rockne,43812,96141,9 +122010,Maggie Baker,73198,29224,0 +122011,Stuart,60071,101908,6 +122012,Cornelius Vanderbilt,28448,1039,10 +122013,Guy Bush,61225,14700,6 +122014,Officer,310133,1653010,10 +122015,Marten - Bartender (uncredited),16442,95728,23 +122016,Alberto,277688,52957,13 +122017,Darryl Jacobson,413279,1672488,3 +122018,Phillip Danville,89269,70004,1 +122019,Harald Berger,71041,118861,1 +122020,Ko Chow,42120,1619,0 +122021,Himself,198306,17835,0 +122022,Moll,36212,551591,1 +122023,Elite Hunt Club Client,71670,1283938,30 +122024,Brigham,78362,929104,5 +122025,Minor Role,43806,52175,73 +122026,Ned McCarty,27443,64212,2 +122027,Camilla,36674,1309329,1 +122028,Drive-In Manager,14750,166387,20 +122029,Desmond,33005,15564,2 +122030,Linc,340190,1467349,1 +122031,Narrator,110491,1049459,2 +122032,Don Pablo Gonzales,80592,30496,5 +122033,Lance Lancaster,84105,43244,7 +122034,Barjak,90406,3347,5 +122035,Tristan,228331,82453,8 +122036,Brian Parks,435,6070,7 +122037,Juliette Ashotovna,256520,107667,2 +122038,Becky Thatcher,74705,29847,5 +122039,,57924,231635,2 +122040,Milk Bar Man,16151,79725,39 +122041,Ezra Stiles,19740,52995,5 +122042,Additional Children's Voices (voice),62211,1340664,23 +122043,Sheriff,128215,1825792,14 +122044,Polizist,91390,2315,16 +122045,Speaking Tube Passenger,382591,1777483,17 +122046,Mexican Man,105059,1683131,27 +122047,Sanitorium Worker (uncredited),326285,1546231,20 +122048,Frank,63493,181701,8 +122049,Ryan,75090,57286,8 +122050,Social Worker,76494,98628,17 +122051,,70575,79498,2 +122052,Siena,9675,1571682,17 +122053,Killain,31672,24495,3 +122054,Big Mike,120605,2372,1 +122055,El Cabillo (uncredited),5494,5576,15 +122056,Himself,410718,1702101,8 +122057,Waiter,43252,3163,19 +122058,Police Officer #2,18530,557841,16 +122059,Concerned Father,2295,20503,8 +122060,Змей,56372,177129,4 +122061,Wirt Kolber,79362,586675,10 +122062,Charity,21780,147424,12 +122063,Count Cagliostro,15371,58158,6 +122064,Mr. Jones,5060,92042,14 +122065,Party Guest,128669,100800,31 +122066,Narrator / Sylvester / Pimp Lucius / Dr William T. Perry / Reverend Mosley James Evans / Beeno / Interviewer,151509,94158,0 +122067,Terry's NYC Assistant,14923,1386366,61 +122068,Gianni,431244,1064531,5 +122069,Davout Hossein,169881,20619,7 +122070,Doctor,153,238826,18 +122071,Frau Oberin,4955,40251,2 +122072,The Dude,201485,544166,8 +122073,Cal Konitz,285840,1038002,5 +122074,Omkar Singh,192675,123317,9 +122075,Detective Eddie,73313,385420,13 +122076,Moira,86647,1280591,7 +122077,Alex,233490,1828989,12 +122078,Karabatyr,364684,1867072,4 +122079,Mrs. Julia Judson,82178,1033183,7 +122080,Abu Siri (as Farid Chawki),47324,139463,0 +122081,,359154,1507963,6 +122082,Yôji,27351,87662,6 +122083,Agostino Antoniucci,325645,27433,2 +122084,Jay Lyons,34482,155456,10 +122085,Minister,6687,33403,7 +122086,Bartender,45273,1122360,8 +122087,Benny,11205,87841,4 +122088,Dr. Anil Chatterjee,9959,20644,9 +122089,,295273,107775,18 +122090,Herrscher,104172,1384091,2 +122091,Angelo,241855,27199,10 +122092,Lady in Waiting,24973,94991,44 +122093,Stern Woman,32577,137283,16 +122094,Bruce Wayne / Batman,64202,34947,1 +122095,Cocoa Leaf,1579,17685,12 +122096,Chi Chi,39107,122192,10 +122097,JF,270886,520398,3 +122098,Patricia Terrazas,37628,150342,2 +122099,Aunt Martha,10025,62075,16 +122100,Jerry Cardozo,243935,15757,3 +122101,Pub Man (uncredited),297762,1702759,87 +122102,Herself (archive footage),253337,1788331,19 +122103,Isabella Wendell-Jefferson,82650,129986,13 +122104,Karen Morris,38749,368,3 +122105,Mari,46930,137815,3 +122106,Léa,1254,132429,7 +122107,Man Dancing with Alice,264309,14290,22 +122108,Le Capitaine Valorgueil,45213,3784,7 +122109,Garret,19604,1132075,0 +122110,Otto Falk (uncredited),15472,338484,35 +122111,Aadu,70122,1205546,2 +122112,Man Restraining Johnny in Courtroom Fight,26323,14419,13 +122113,Helmut Keating,107250,38442,26 +122114,,255160,66027,3 +122115,,217412,559791,30 +122116,Doug,32298,77263,8 +122117,Max (voice),328111,52849,0 +122118,Beth Buchwald,22051,9827,1 +122119,Lindsay Edgecombe,397837,934243,1 +122120,Donnie,15810,152548,1 +122121,Bobby,5183,41960,12 +122122,Ernie,347630,1695653,22 +122123,Fred Lakehorn,30155,105784,4 +122124,La journaliste,382589,1613219,14 +122125,Bean,16839,224282,1 +122126,"Eddie, Bellboy",15788,78781,5 +122127,Professor,65509,94884,7 +122128,Customer (uncredited),25736,120740,9 +122129,Terence Aloysius 'Slip' Mahoney,178569,89989,0 +122130,Glen Prichard,405882,1783678,24 +122131,Polizist Schmitz,8332,4886,3 +122132,Skullface,323679,1452924,7 +122133,Un journaliste TV,332794,1795614,27 +122134,Fighter Number 19,110552,1298706,7 +122135,,116857,8830,1 +122136,Mrs. McGonigle,27629,5738,22 +122137,Gedeonovsky,149170,86851,6 +122138,Durand (as Ludwig Hart),31324,127524,11 +122139,John,28739,48312,1 +122140,Mann (voice),9551,1716872,7 +122141,Riya Thapar,20132,81926,4 +122142,Brad Whitford,4551,78460,39 +122143,Gill MacBean,229757,3383,1 +122144,Lady Maria Byrne,169782,34901,3 +122145,Trevor,429200,1879648,14 +122146,Alisa,23855,5916,1 +122147,Sarah,395763,548704,9 +122148,No Balls Hadley,48852,77225,22 +122149,Annie,45725,134082,0 +122150,Pusher / Salesman,5552,35083,13 +122151,First Naval Officer,40804,11842,10 +122152,Detective Pye,425774,1707886,22 +122153,Inspector Man,9056,1277930,11 +122154,Jen Davis,274504,38024,6 +122155,Pearl - Detention Kid,2976,1752338,64 +122156,Lukas,256740,1592165,13 +122157,Leonard Scott Levy,52395,103071,8 +122158,Missionary,126550,15992,11 +122159,Coronel Ortiz,418072,1020981,12 +122160,Natasha,316776,1436394,6 +122161,TJ,401060,1631630,6 +122162,,32764,562655,11 +122163,Floyd,181574,142605,4 +122164,Mr. Rivers,20210,4443,13 +122165,Luo Ping-An,14538,62410,0 +122166,Mercedes,9815,1163,6 +122167,The Oracle,24149,91286,3 +122168,Federale,263115,1334321,65 +122169,Man With Shotgun,79329,586537,15 +122170,Ephraim Pontipee,16563,1059599,6 +122171,,199879,144128,0 +122172,Sgt. Spurlock,82485,149653,15 +122173,,32298,17419,28 +122174,Liam,390526,6163,3 +122175,Rose,45610,590269,31 +122176,President's Aide,68721,51464,44 +122177,Anne's Father,30174,146092,10 +122178,Kvinden i netto,356326,34867,11 +122179,West,399612,1307013,4 +122180,Franny,244783,1813,0 +122181,Funeral Family,71503,563105,27 +122182,NSA Agent Edward Ballinger,27338,43311,5 +122183,Zoraida,92796,24499,5 +122184,Marcelino,329718,3131,0 +122185,Friend,160324,1167137,5 +122186,Freddie,23692,16557,12 +122187,Voice in Crowd,354979,1636790,53 +122188,Electrician,70046,7679,19 +122189,Samuel,381356,145121,1 +122190,Henchman Tim / Trooper,377170,30112,15 +122191,Josette,200331,21876,2 +122192,Narrator,244117,3391,13 +122193,Frank,289278,87663,3 +122194,Peter,193523,64975,4 +122195,Mrs. Wellington,33345,12513,6 +122196,Wade Mooney,24810,110472,4 +122197,Zachary Beaulieu,11421,71507,0 +122198,The Exorcist,48846,649,5 +122199,Tommy,23515,1440855,6 +122200,Katia,79034,19646,3 +122201,Smoke,33931,111991,10 +122202,Thompson / Narrator,33673,8233,4 +122203,Mum,39356,122762,18 +122204,Edward,14142,84904,18 +122205,USSE Bridge Crew,188927,1897713,51 +122206,Dentist,10044,1265950,13 +122207,Mrs. Mathews,200331,7632,6 +122208,Loki,63736,87295,2 +122209,Lizzie Bisco,13600,82143,10 +122210,Sally Bullock,26204,101768,9 +122211,Emile,13061,21198,1 +122212,Danny Jones,448847,65301,3 +122213,Hildchen,41619,36836,3 +122214,Adam Raki,22051,12791,0 +122215,Jonah,45244,1605661,5 +122216,Blonde hair gangster,403429,1480637,8 +122217,Mama Odie (voice),10198,15899,7 +122218,Lieutenant Colonel Boot Miller,8988,18082,5 +122219,"Chiho Tanemura (segment ""Chiho"")",26693,96048,0 +122220,Millie's Pal,32716,1534719,11 +122221,Crying Woman 1,414977,1676773,16 +122222,Skippy,55730,6474,1 +122223,Himself,72105,33321,17 +122224,Dylan,16455,2440,2 +122225,Max,12447,3799,1 +122226,Mr. Abernathy,28001,99378,14 +122227,Student bully,54503,1609486,7 +122228,Major Koerner,58995,3617,6 +122229,Embassy Secretary,318781,146716,15 +122230,(voice),28090,174563,59 +122231,Soldier (uncredited),337339,1556723,54 +122232,Herself,338063,1581556,7 +122233,un homme des secours,45527,67979,5 +122234,Jimbo,15022,82582,25 +122235,Damien,16022,11355,0 +122236,Conrad Ruppert,368342,49767,5 +122237,Girl #1,104391,20492,0 +122238,Fergus Carroll,86543,1953,6 +122239,Eve,315855,32891,27 +122240,Michael,46883,150956,9 +122241,Júlia,436339,1062697,4 +122242,Queen Remini,16999,81134,4 +122243,un'invitata al matrimonio,43646,120114,13 +122244,Kathryn Yarnell,70404,117085,3 +122245,Winnie the Pooh (voice),24926,25627,7 +122246,Red,8008,38941,11 +122247,John,747,11117,13 +122248,Lewis,8270,8447,1 +122249,Anésia Shirley,420703,1692964,8 +122250,Troll,287281,1353917,10 +122251,Mary Marlowe/Mary Carlton,105548,100047,1 +122252,Boy choosing team,261112,1479333,5 +122253,Nicolas Merevsky,190853,24041,2 +122254,Spike Malone,60140,118257,5 +122255,Henchman,39276,108026,5 +122256,Olympia,47863,552243,7 +122257,Baroness Hilda Spandermann,61541,101995,4 +122258,Michael,66668,84522,2 +122259,Janku,6417,49672,2 +122260,Billy,1428,2295,4 +122261,Tilak,61203,85891,1 +122262,Liz,211144,1511137,7 +122263,Paula Brown,177902,9071,1 +122264,,38359,929601,8 +122265,Mom,20164,11070,13 +122266,April Reign,9568,169639,10 +122267,Ready Eddie,1950,52117,6 +122268,Fred Taylor,40633,115330,7 +122269,Caleb,184267,8835,17 +122270,Ali,227348,141374,6 +122271,Himself,4832,39657,5 +122272,USSE Bridge Crew,188927,1641530,41 +122273,Marlee,11329,3293,3 +122274,,5319,110102,9 +122275,Cowboy,105059,1683136,35 +122276,Councilman,19545,1112075,18 +122277,Alex Danyliuk,413052,236851,1 +122278,Twinkleton,116977,32598,9 +122279,Medynsky,279543,99262,8 +122280,Madre Roberto,110447,556989,18 +122281,Duncan,295588,23881,8 +122282,Austin Ames,11247,62747,2 +122283,"Łukasz Niepołomski, miłość Ewy",156627,7121,6 +122284,Inmate 106,94365,121578,10 +122285,Victor,300983,583938,3 +122286,Abilene,335970,1717902,18 +122287,Dr. Branko Kojović,284154,938627,10 +122288,Old Woman,125344,1028952,5 +122289,Marschall Radetzky,457,6261,11 +122290,Ana,107287,400,0 +122291,Ian Hammond,18774,1857921,14 +122292,Candela,303542,1484767,6 +122293,Marcel,126676,3784,0 +122294,Himself,360283,95866,1 +122295,Richard,239566,21179,26 +122296,,252845,25815,4 +122297,Joanne Xavier,3574,3242,1 +122298,Queen Bee,19174,108867,2 +122299,Girl on Rum Boat (uncredited),39048,229663,11 +122300,Madame Cliston,62675,24942,7 +122301,Jeff Tuche,369776,16922,1 +122302,Officer Tucker (voice),13640,19506,12 +122303,A-Lister,405388,1647204,8 +122304,One-Love,7233,198797,7 +122305,Fiancée du père,85735,139820,9 +122306,Rudy,85265,278923,3 +122307,Tom,67375,951571,34 +122308,Suicide Witness,19587,1774105,12 +122309,Hauptmann,2734,27671,50 +122310,Bill Lachman,8272,19752,8 +122311,Julia,352719,97039,7 +122312,Peggy,358980,1204963,8 +122313,Reporter on TV,44943,200406,29 +122314,,23289,41907,14 +122315,Johnny Utah,257088,972356,1 +122316,Ashberry,20481,1127183,9 +122317,Nurse Nina,9667,72003,22 +122318,Warden Powell,53781,121247,4 +122319,Johnny Sylvester (at 30),61225,162901,15 +122320,Nelsinho,154441,228020,7 +122321,Ludovic Berbek,14753,34918,8 +122322,Lady in Carnegie Hall Audience,174769,121323,5 +122323,Jane,107430,165381,1 +122324,Cousine,356191,1331786,14 +122325,Gerlinde von Habermann,4921,6263,2 +122326,Newsreel Cameraman (uncredited),14615,119255,98 +122327,Man At Gas Station,228970,1495088,40 +122328,Beppe Rotella,226936,543583,13 +122329,Earl Fowler,339408,1514474,16 +122330,Lt. Tom Wayne,140887,4165,3 +122331,,19812,1441808,23 +122332,Мама Вани,332512,1429678,7 +122333,Pop Bass Player,11172,1077875,5 +122334,Mom,142989,107364,7 +122335,Jacques,10524,38559,1 +122336,Terry Love,123961,140833,5 +122337,Glenda,30921,97881,14 +122338,Beau,170517,16066,25 +122339,Miguel,25598,1121,9 +122340,Kitty Wildenbrück,40130,16021,0 +122341,Hairdresser,142979,4962,5 +122342,Betty,28340,100487,3 +122343,Roundhead / Blockhead,10044,26724,3 +122344,Terumichi Nishida/Camus,22025,1321508,2 +122345,Michael Scanlon,45324,12834,4 +122346,Samir,8276,54278,8 +122347,Ludwig's Girl (uncredited),118245,128360,10 +122348,король,63449,86671,3 +122349,Linda Whitfield,206296,54124,4 +122350,,88176,1357015,11 +122351,Wolf (voice),810,12106,23 +122352,Caroline,126927,112465,9 +122353,Himself,48375,15277,2 +122354,Saddle Artisan,75315,103947,33 +122355,Sarah Cooke,40387,8226,2 +122356,Brammetje,115929,1064503,4 +122357,Lt. Robin Crusoe,54227,61303,0 +122358,Bill Farrell,43117,30778,0 +122359,Alex Taylor,295581,144852,1 +122360,Annalachmi,66340,584496,1 +122361,Secrétaire Nikola,98277,1849112,32 +122362,Richard Briand-Charmery,44522,11544,0 +122363,Marco,394403,1376403,7 +122364,Illeana,21481,87571,4 +122365,Julie,235662,139065,9 +122366,Violet,16131,50346,16 +122367,White House Reporter (uncredited),68721,1429470,104 +122368,Pop Drummer,11172,1077877,7 +122369,Massimo,9981,61406,11 +122370,Goran,303636,1831208,8 +122371,Greg,92657,17242,2 +122372,Rick,315880,1646438,5 +122373,Abraham Laing,29989,4783,0 +122374,Al Grossman,36288,5251,4 +122375,"Samir aka ""The American""",7483,52685,4 +122376,Paolo,86838,6752,7 +122377,Himself (Archive Footage),450875,587,5 +122378,Oleg,79743,1169505,6 +122379,Make-Up Woman,1691,45568,15 +122380,Caster Shades (uncredited),109491,1045389,39 +122381,Cindy,304372,84299,35 +122382,Julia,383538,1673647,9 +122383,Beech,85442,10595,30 +122384,Chen Geng Yun's wife,121823,1019770,11 +122385,The Priest of Mazière,286595,1352762,8 +122386,Le père,48431,45152,3 +122387,Tita,32601,1130127,6 +122388,Harold Hellman,45874,46428,3 +122389,Snuff Movie victim,9843,59869,17 +122390,Hundemann,3539,32422,5 +122391,Michelle,17926,68495,8 +122392,Red (voice),153518,58224,0 +122393,Bob O'Leary (as a boy),78734,199468,22 +122394,The Girl,155096,939144,1 +122395,Osric,125705,81681,8 +122396,One of the Three Greeks,28293,101890,9 +122397,Rajan,310567,117729,8 +122398,Herself,105583,96082,16 +122399,Detective,48281,114473,23 +122400,Annie,374618,1554760,5 +122401,JonBenet Ramsey Auditionee / Herself,430826,1801193,4 +122402,Paolo,431244,24288,4 +122403,Harrison,75564,1399613,15 +122404,The Joker (voice),396330,216973,15 +122405,Simona,77958,232944,0 +122406,Miles,37254,6575,7 +122407,Hannah,377428,83423,5 +122408,Mazzetti,66966,71140,4 +122409,Sgt. Zack,46872,89582,0 +122410,Na-mi's brother (young),77117,1410299,12 +122411,Jeanne,690,10356,1 +122412,Abby,24886,935183,1 +122413,Le fumeur,58133,3614,4 +122414,Sean's Father,339994,1221560,14 +122415,,188180,210515,9 +122416,Jörgen Ramberg,80059,79258,8 +122417,Pschiratrist,33788,20380,7 +122418,Wendy,133953,1368000,5 +122419,Shirley Sales,94874,165934,5 +122420,Mahmut Yayladali,49834,1133958,3 +122421,Swimming team (Perth's friends),292625,1758602,14 +122422,Robert,320588,10581,7 +122423,Gaines,24756,21675,7 +122424,Hand-Washing Cancer Patient,3782,1201022,37 +122425,Bradley Tozer,19606,11065,2 +122426,Barbara Olmstead,259292,95624,1 +122427,,25936,238524,11 +122428,Sarah,72419,47852,2 +122429,Pregnant Nancy,12912,121714,14 +122430,Ice Cream Girl,179826,1404651,25 +122431,Charlie Mack,3291,31512,15 +122432,Criança na escola2,117534,1902462,33 +122433,Confidante (Il Muto),76115,577652,18 +122434,Jimmy The Cheese,243935,1452418,25 +122435,Don,309024,31028,4 +122436,Uzlinka,15387,37170,11 +122437,Lt. Cmdr. Jeff Conway,48412,19153,0 +122438,Richard Mansfield,24486,23346,1 +122439,Ed,35197,113972,8 +122440,Brianne,244610,94859,5 +122441,Dr. Donni McGuinness,61473,49425,3 +122442,Tamara Schuster,217412,45749,4 +122443,Ellen,262945,17844,4 +122444,Gute Fee,263260,121386,3 +122445,Bruno,2566,26105,8 +122446,Klooster,153272,69563,8 +122447,,142656,213479,2 +122448,Music Foundation Director,130507,33025,21 +122449,Ambrose,9981,61403,10 +122450,Bill - the Dog,242332,1277346,11 +122451,Laura,83770,193045,12 +122452,Kristen,254575,5480,5 +122453,Avvocato Natale Calia,167583,24606,4 +122454,Harrison I. Keath,43390,16421,9 +122455,Morita-san,18722,553432,20 +122456,Jim 'Jimmy' Jessop (Hannah's son),114348,87459,2 +122457,Diamond's Statuesque Stripper,354979,1835264,47 +122458,Sgt. Danek,2994,1336159,6 +122459,Timmy,15664,78499,3 +122460,Ercole Preziosi,44933,89193,0 +122461,Ossolinski,31273,107882,29 +122462,Thad,43656,118131,10 +122463,Ginko,21959,63694,0 +122464,Barbara,23830,167293,11 +122465,,197210,543868,1 +122466,The Raptor,146679,1004238,3 +122467,,16447,126741,4 +122468,Fasani,259695,1193456,20 +122469,Aleksey,34869,113332,3 +122470,Nurse Bogie,35320,64679,23 +122471,Del Chillman / Sir Ian Locksley / Harpoon Gunner,12902,34982,5 +122472,Random Guy's Girl,13596,1811264,30 +122473,Georg de la Croix,175339,73,2 +122474,Anna,13506,96313,2 +122475,2. huovi,55495,1839563,7 +122476,Teen Ugly (voice),13517,1267239,15 +122477,Skeletron,310135,571569,5 +122478,Prinz Otto,3478,32061,8 +122479,Sir Ulrich of Germany,26643,1183967,16 +122480,Elizabeth McGrath,42752,13962,9 +122481,Police Officer,90616,1740107,35 +122482,,16077,51329,7 +122483,Reverend Carter,16186,1062609,12 +122484,General Choi's aide # 2,11653,1615013,19 +122485,Julian Cristoforou,86049,38772,2 +122486,Mrs. Fletcher,104427,99329,6 +122487,,27276,551866,57 +122488,Javier,205724,1696733,11 +122489,Himself,15258,1926,32 +122490,Whitaker,294690,130797,11 +122491,Joseph,108822,19076,3 +122492,Estella Fitzjohn,43016,55643,5 +122493,Far,21786,116387,8 +122494,Sir Angus McNally,83015,1834940,17 +122495,Rabbi Belsky,52221,1166,4 +122496,"Pamela, Maisie's sister",27917,554132,6 +122497,Du-hyeon,116488,115290,1 +122498,Radio Car Cop,250332,1042201,28 +122499,Steve,85196,935901,0 +122500,Uncle Mike,51249,304845,8 +122501,Dr. Larry Lupin,13483,4443,5 +122502,Bus Driver,56816,937721,5 +122503,Francœur (voice),77459,66841,1 +122504,Renegade Set Photographer,91679,63469,64 +122505,Dickie Pilager,18711,2955,0 +122506,Alzira,216369,108454,4 +122507,Vasiliovich Alexminitch,212713,50764,14 +122508,Lawrence Ferlinghetti,156277,11085,5 +122509,Mary,175035,13577,2 +122510,Minor Role,43806,557087,43 +122511,Officer James,360606,83186,2 +122512,Beth,24625,17141,3 +122513,Jasmine Rain,285840,1842539,14 +122514,Mrs. Randall,27414,1107162,5 +122515,"Gran, kurator",60899,231919,7 +122516,Michael Ancher,128900,69180,4 +122517,VV,101998,1177628,6 +122518,Copain adolescente,98277,1849119,42 +122519,Nelson,352327,85170,4 +122520,,56666,35743,2 +122521,Altoum,177677,1562081,30 +122522,Apollo Awards Presenter,13092,74156,5 +122523,Man in Top Hat's Sweetheart,53406,21301,4 +122524,Good Samaritan,445602,1853352,12 +122525,Vovka,148347,572081,2 +122526,Fatty,141868,89602,0 +122527,Takehiko,86520,127394,1 +122528,Guard #2,335778,1058078,14 +122529,,71725,1047266,9 +122530,Eddie Cordero,131475,77164,3 +122531,Ariel Castro,336845,58650,2 +122532,Pierre,75969,18161,16 +122533,Atife,44246,47785,9 +122534,Luís,248543,1041385,5 +122535,Nikola Trumbo,294016,18050,3 +122536,Offizier,199615,4455,3 +122537,Dorri,1640,2677,45 +122538,Lucka,19765,1385340,2 +122539,Himself,319073,1036319,1 +122540,Pilot #2 - Lt. Kirkman,59197,85096,10 +122541,Françoise Dreyer,67509,235658,12 +122542,,288788,1362385,4 +122543,Hammer,51036,1879505,42 +122544,Menalippe,297762,1310711,13 +122545,Hilda's Dad,206197,108923,32 +122546,Fletcher,68123,21997,8 +122547,Patrick,338676,28657,1 +122548,Receptionist,17483,42646,15 +122549,Angela Lucetti,63493,62072,4 +122550,Patterson,43752,69248,3 +122551,Joji Yazaki,25716,35642,23 +122552,Taxifahrer / Sigmund Jähn,338,1350135,11 +122553,Store Employee (uncredited),26182,921738,15 +122554,Chairman,109716,3369,14 +122555,Zhi Cao,10275,1342853,14 +122556,Park Janitor,387399,1849540,17 +122557,Alfida (voice),292014,77517,7 +122558,Wesley,45874,12410,2 +122559,Mia,24886,133979,5 +122560,Kyle,374614,30051,4 +122561,Christopher Leiningen,61988,10017,0 +122562,Voice Actor,48585,7763,1 +122563,Maurane,32390,124467,7 +122564,,413644,66062,1 +122565,Suzie,268174,4734,9 +122566,Jasper,83079,1218882,8 +122567,Detective,78691,1434981,14 +122568,Grant's Son,14916,1844905,8 +122569,Chuck,89751,1191474,4 +122570,En Sabah Nur / Apocalypse,246655,25072,4 +122571,Albert Fisher,28533,101103,7 +122572,,404567,1660478,5 +122573,Cyrus Modi,103332,20644,9 +122574,Brice,37653,47829,9 +122575,Dirigent,9803,135677,25 +122576,"Brice, le maton",59118,77195,13 +122577,Mrs. Morandi,42438,134541,2 +122578,Лиля,57701,226707,4 +122579,Gersteker,104376,1727514,12 +122580,Chef Sally,72207,1375338,13 +122581,Old Shatterhand,3686,6102,0 +122582,Bit Part,18651,121127,65 +122583,Alison,19509,69399,1 +122584,,53693,1176616,22 +122585,Roxane Dancer,1966,1116115,43 +122586,Alfred's Child,1723,1215659,11 +122587,Montgomery,359412,22227,3 +122588,Fubuki Kakuyoku,16907,1243955,8 +122589,,47448,1796595,7 +122590,Sudimack,14979,81829,5 +122591,,340119,78697,5 +122592,Hannah,23750,53487,19 +122593,Sarah (Segment 4),244117,73569,16 +122594,Kujo,33333,72932,0 +122595,Karl,12605,71514,0 +122596,Tome,74126,1082345,8 +122597,Pee Wee Spencer,216153,47458,5 +122598,Rongar,7234,52131,11 +122599,Kralahome,43471,5248,3 +122600,Mrs. Bellini,263873,1308334,9 +122601,Prostitute,268920,1754442,42 +122602,(as Michele Calcin) Miriam,98250,1016515,9 +122603,Radha,14159,125200,10 +122604,Additional Dialogue (voice) (as John Bentley),10527,183507,42 +122605,Elma,12811,1827456,15 +122606,Alonzo,309581,172096,5 +122607,Alberto,12221,544608,4 +122608,Katie,37206,126670,5 +122609,Neelakandan's mother,237672,1199024,13 +122610,Dog Walker #1,15092,105672,40 +122611,Fabrizio Colombo,42441,1178214,10 +122612,Danny Dixon,35977,56439,3 +122613,Actor,277710,1466175,21 +122614,,336549,587911,8 +122615,Dr. Bernice Falkowska,47535,33395,3 +122616,Laura,270400,100371,4 +122617,Priest,20941,1603,6 +122618,Homeless Man Hit By Car,15356,1173,12 +122619,Cuchi Cuchi,56948,933266,7 +122620,Emma MacNeil,17911,82497,1 +122621,"(segment ""L'uomo dei 5 palloni"") (uncredited)",99095,34264,5 +122622,Bunt Cavatt,43811,102064,2 +122623,,224951,551476,4 +122624,Ryan,72638,1551921,43 +122625,Surfer 1,332567,1686692,2 +122626,Cassidy,26688,54499,1 +122627,"Tillie Bank, country girl",22943,89610,0 +122628,Dead body,341490,1886272,3 +122629,Dr. Susan Elters,69075,29460,1 +122630,Jack Mautner,239091,98452,3 +122631,Maître Jacques,11680,24629,1 +122632,Andrè Breton,59249,37191,1 +122633,,239534,238845,1 +122634,Commissario,62034,1135561,12 +122635,Adam Garrett,109441,12313,2 +122636,Policeman,13436,1656902,41 +122637,Rosina Perez,48202,150943,5 +122638,Chenchen,362154,1174686,9 +122639,Elevator Starter (uncredited),29872,104714,13 +122640,Logan / X-24,263115,6968,0 +122641,Frank Fuhrmann,167330,1351386,24 +122642,"Donald Hall, Chief Engineer Ryan Airlines",18776,34365,5 +122643,Film Director,83761,930120,0 +122644,Minister,29286,1420346,14 +122645,Chief Zhong,66759,1163380,8 +122646,"Ong Cop, M. Tigre",74714,131368,4 +122647,Goff,102362,61329,8 +122648,Dr. Jonas Ruben,19338,174580,21 +122649,Amber,227094,144302,2 +122650,Angry farmer,11626,26231,7 +122651,"Fernand, Clerk",74689,545675,5 +122652,Reverend Rosenkrantz,73194,22603,7 +122653,Hakan,115276,112429,3 +122654,Kid #3,40990,1182659,20 +122655,Jean Harlow,2567,77070,12 +122656,Carmela,82083,78707,10 +122657,Meredith Mainwaring,10918,3489,3 +122658,Carla,379873,1366286,3 +122659,,256356,102121,5 +122660,Moises,258363,258,0 +122661,Joe Cody - Man in Black,40990,950433,4 +122662,,35790,1211314,8 +122663,Jean-Claude,83079,24496,6 +122664,Charlie Riggs,246299,124853,1 +122665,Jenny,36229,8790,4 +122666,Glavonjin komsija,33611,4641,8 +122667,The Wedding Planner,122843,144250,0 +122668,Father Bernard,5494,20800,5 +122669,Sven Swanson,264309,29978,3 +122670,Solange,28673,31700,2 +122671,Sara,25973,20980,10 +122672,Simon Templar,152393,10222,0 +122673,Shavers,146238,53650,3 +122674,Patrik Angrell,24023,92408,2 +122675,Benzedrina - a Convict,104427,103017,22 +122676,Himself,157117,10215,19 +122677,Bogdan,57419,110965,11 +122678,Taylor,369894,1247723,7 +122679,Natalie,508,47714,19 +122680,Training Agent McClane,85414,1149610,7 +122681,Lady,282086,449644,2 +122682,Client #1,23830,170977,10 +122683,Aldo,34280,21236,5 +122684,David Wong,343140,87621,3 +122685,Caitlyn,147773,52792,6 +122686,Joséphine Cortes,260312,37920,1 +122687,Betty,43432,1021562,10 +122688,Cop #3,344906,1632090,22 +122689,Marine Sentry Sgt. Joe Duffy,257081,106095,16 +122690,Mobstone,176983,553286,18 +122691,Mason (voice),10527,12080,15 +122692,Himself,293262,80757,15 +122693,Ryosuke Nonomiya,52047,145251,1 +122694,Tommy,20028,11031,7 +122695,Jury Foreman,214756,1593121,33 +122696,,52612,78421,4 +122697,Jack,242076,3036,0 +122698,Bruce Tanner,104083,8633,4 +122699,Doctor in Plain Clothes (uncredited),156700,1764373,40 +122700,Eilif,128900,225840,14 +122701,Man Saying Dagwood May Be a Jerk,3937,145828,20 +122702,Himself,293262,115350,12 +122703,Gigi Griesmayr,11664,572,4 +122704,Marie,64450,1127802,14 +122705,Min Sakul,140607,1370630,38 +122706,,330947,13604,67 +122707,Thomas Seaton,78522,98654,0 +122708,Body Double,30361,1769247,23 +122709,Frederick Dorrit,47084,10726,11 +122710,Arbie,17287,81577,0 +122711,Lily,220488,482101,3 +122712,Flier,81110,90369,13 +122713,Dash,93116,78415,6 +122714,Capt. McClung,43752,19414,4 +122715,Nanette,7972,18998,9 +122716,,19621,1054299,24 +122717,Phyllis (voice) (as Anna Olson),13517,1571364,3 +122718,Coach Fortier,79778,62912,9 +122719,Marceroux ('Le divorce'),98302,39645,12 +122720,Min Wead,46189,70035,2 +122721,,22701,1187649,11 +122722,Josh,364690,1670959,10 +122723,Convention Facilitator,284293,151435,13 +122724,Joe,17985,234401,6 +122725,Cheryl,113882,56895,0 +122726,Ed Muhl,294016,88949,9 +122727,Frank Roberts,25598,110,1 +122728,Lilian,22447,15736,9 +122729,"Herself, Cameo Appearance (uncredited)",32552,7331,36 +122730,Josephine Bonaparte,43252,3340,18 +122731,,38359,86847,5 +122732,Emmet Frum,387399,1619444,22 +122733,Trixie Lane,85420,30618,13 +122734,Wil,3554,32775,7 +122735,Lori,5915,28044,18 +122736,Himself,366696,1753486,12 +122737,Lynn,360205,937554,3 +122738,Harry Bell,105059,161719,16 +122739,Dennis,10761,61659,3 +122740,Mme. Dufresne,242683,96141,9 +122741,poliisi,442752,1761849,41 +122742,Mary Roff,124042,814434,3 +122743,Kelly,44877,73525,5 +122744,Herself,103215,59620,10 +122745,Chief Elder's Assistant,227156,1412940,17 +122746,signora Motta,173177,1083107,6 +122747,Helen Ashby,38461,56528,9 +122748,Yuliya,370687,1268136,9 +122749,Andrew Jessel,50761,40206,0 +122750,Tante Inge,314635,1630509,9 +122751,Cammy,186759,1427681,12 +122752,Al,49609,127520,5 +122753,D.I. Hannah Siddiq,338518,1047650,4 +122754,Don Giusto Provenzano,167583,9768,2 +122755,Ivan Ramenko,48805,118586,13 +122756,Morthond,23739,52903,5 +122757,Rina,234284,122660,6 +122758,Louie Dumbrowsky,174195,14034,2 +122759,Roderick,19255,52419,10 +122760,Charles Straus,35921,31260,9 +122761,Motel Clerk,294652,1883849,27 +122762,Mme. Muscat,144792,128966,2 +122763,Detective,19846,1876866,14 +122764,narkom,102197,30405,4 +122765,,63260,50787,16 +122766,Rodolphe,43878,133184,3 +122767,Shivaji Rao,49028,138399,1 +122768,Piroska,163942,1210033,0 +122769,Mrs. Patterson,288668,92582,3 +122770,Himself,390782,1101349,1 +122771,Religious Woman,270654,1425205,28 +122772,Lt. Colonel William Lennox,38356,19536,4 +122773,Dr. Komal,347807,86069,8 +122774,Passenger,30091,65121,3 +122775,Wendy Cooper,76494,9281,2 +122776,Petter,33091,111342,4 +122777,De Simone,41610,129635,11 +122778,Ivan,207636,98034,2 +122779,Bob,83059,929134,2 +122780,Nurse,10389,231009,7 +122781,Pope,354287,3062,41 +122782,Mrs. Moore,242631,2772,7 +122783,Thornton Reed,43790,30537,9 +122784,Doyle,323929,71658,11 +122785,Fred,140894,1763888,7 +122786,Frank,85009,543349,2 +122787,Mason,178809,2053,2 +122788,Rick Robinson,18035,63502,0 +122789,Gun Store Clerk,4413,4890,32 +122790,Roy,56264,97823,8 +122791,British Soldier,1116,1896894,71 +122792,Henchman,176867,198219,24 +122793,Finn,140607,236695,1 +122794,Lt. Col. Count von Stauffenberg,102155,161340,7 +122795,Rotkäppchen,9803,36745,15 +122796,Frankie Cheeks,9286,37700,4 +122797,Larsen,116439,2201,2 +122798,Roger O'Neal,84105,60091,9 +122799,Uncle,14552,32597,30 +122800,Dana,153795,85178,6 +122801,Relator,222030,69310,4 +122802,Steven Wells,267852,1117517,7 +122803,Babysitter,37497,117814,6 +122804,The Nutcracker (voice),49852,1834,9 +122805,,103713,1034672,2 +122806,Vicky,122677,102956,9 +122807,Sal Gricky,352960,87426,8 +122808,Pierre,252682,9807,7 +122809,Aga,43464,6933,8 +122810,Karlson (uncredited),44129,141448,11 +122811,Raj Kamal,21570,86014,1 +122812,Claire,345918,82809,2 +122813,Major's sidekick,271677,35756,7 +122814,Léon,54832,12268,5 +122815,Johann Schneider,41619,565530,1 +122816,Deepa,69428,1335335,10 +122817,,12573,53863,16 +122818,Ond,66926,995626,3 +122819,Sanna,413430,1559605,2 +122820,Dick Bronson,43688,33776,8 +122821,Anna,62297,147296,0 +122822,Dionysus,32657,1369075,40 +122823,Governador,30127,228023,9 +122824,Tim Boyle,12412,24045,5 +122825,Dub,42472,13875,6 +122826,Random Guy,13596,1802145,29 +122827,Da Hai,377447,1468979,2 +122828,Policeman,30941,28039,41 +122829,Doctor (uncredited),156700,1636795,38 +122830,Mrs. Jamison,79816,217991,4 +122831,Katie,22136,113617,1 +122832,Daniel Jensen,62838,32362,19 +122833,Arnold Valecross,463906,1736,3 +122834,Party Cop,78691,17858,20 +122835,Frenchman in Hotel,18651,1422328,55 +122836,Boy (uncredited),39979,68330,28 +122837,Invitado a fiesta (uncredited),41298,975962,29 +122838,Junior Clemson,27916,1090179,5 +122839,Pregnant Mother,16151,79716,29 +122840,Heather,387399,1849545,21 +122841,Albert,80941,1264621,9 +122842,,278095,131207,7 +122843,,27805,1031101,2 +122844,Espn,232672,1028454,10 +122845,Carmela Ginetta,53654,111166,8 +122846,Club Doorman,4964,64342,14 +122847,Perkins,352719,94114,11 +122848,Wirt,248933,50038,16 +122849,Rafa,348537,1271600,1 +122850,Zigzag - French Girl,150712,141587,36 +122851,Chicken,117999,88094,3 +122852,"Jussieu, un parlementaire",75066,229268,11 +122853,Eine Zimmervermieterin,206237,11931,4 +122854,Chen Lie,62071,1180151,15 +122855,Fadinard,99875,150603,0 +122856,Priscilla,35826,10938,1 +122857,Gigliola Duranti,38327,120152,3 +122858,Hamish Bond,37311,11492,0 +122859,Han Suk-hie,24822,92678,1 +122860,Bjorn,10529,1084758,10 +122861,Daniel Dorfman,169068,77262,6 +122862,Pianist (Studio Band),244786,171766,17 +122863,Marjorie Corder,43882,5826,1 +122864,Little Girl in Shelter,19996,1764161,52 +122865,Male Cop on TV,2976,59602,28 +122866,Officer,51049,24046,8 +122867,Kirsten Beck,39001,42377,2 +122868,"Niankoro, le fils",71329,1605722,1 +122869,Christoph Schneider,142712,40501,2 +122870,Zarzalli,62397,1894268,19 +122871,Tamar,354859,1802424,18 +122872,Sovereign Admiral,283995,26048,34 +122873,Mother,2965,29075,8 +122874,Evan,154537,990158,10 +122875,Detective Strecker,25807,14451,5 +122876,Jennifer,29611,97621,6 +122877,Lycan 2,52520,85505,14 +122878,Bertil Fred,41076,1889070,9 +122879,Goose,86252,933065,0 +122880,Brandon Russell,32790,20377,5 +122881,Clay's Dad (as James Macdonald),39781,1188456,14 +122882,Le juge Hoppenot,247500,146487,4 +122883,Finkel,123961,8937,2 +122884,Karen,70863,10402,9 +122885,Raju,21566,1734985,8 +122886,Abbot Jianxing / Ye Cheng,60568,1168161,3 +122887,Bobby Hayes,49524,4724,2 +122888,Le légiste,13336,231332,9 +122889,Air Marshal Wilf Curtis,19665,61162,19 +122890,Father,27599,79260,3 +122891,Hector Passmore,12483,53119,9 +122892,Katrina Corelli,31265,40576,4 +122893,Jeremy Neuman,127803,1085819,9 +122894,Pi Patel (5 Years),87827,1133846,3 +122895,Maggie Stryder,72710,3713,4 +122896,Lenny,18072,1371,4 +122897,Himself / David Bowie,172413,21290,0 +122898,Self,348857,1217563,1 +122899,Takuetsu,68715,125721,6 +122900,Jimmy Espinosa,14142,48071,5 +122901,Kelly Foster,74465,1245,1 +122902,Terry's Jazz Quintet,149509,1432731,36 +122903,Jonathan 'Johnny' Reynolds Jr.,33112,7125,2 +122904,Marie,109391,1204693,26 +122905,Chef Didier,105965,23789,4 +122906,Groupe Nightclub,12422,1865048,16 +122907,Efterpi Barda,288526,1016206,7 +122908,Gilly,59965,77278,11 +122909,President Laura Roslin,69315,1581,5 +122910,Dorian,125490,14902,7 +122911,Tony,81522,1279653,4 +122912,Amy,43895,987012,6 +122913,The Alpha,399894,83367,9 +122914,Extra (uncredited),54139,32791,20 +122915,,53128,994414,3 +122916,Omura's Bodyguard,616,92495,16 +122917,Ajay's mother,13986,146971,4 +122918,,80281,91557,4 +122919,Kodjo,3716,1406141,11 +122920,Captain Tom Mulvaney,36634,14579,14 +122921,Mason,112304,17782,2 +122922,Madam Kao,25074,57057,2 +122923,Britney,68184,476866,9 +122924,Nixon Aide,127585,60906,50 +122925,Short Sleeves,59965,991960,29 +122926,Gene Gene The Dancing Machine,83802,1548434,15 +122927,Antoine,305455,1387873,6 +122928,Hoo Hoo - Detention Kid,2976,1290632,59 +122929,Ungarischer Bauer,3716,125271,27 +122930,la cantante lirica,43211,232888,7 +122931,Miss Goff,45627,83436,7 +122932,Cristina,351809,592476,3 +122933,Ingrid,359870,9144,6 +122934,le 2ème détective,11912,36915,12 +122935,Lady Matsudaira,43364,134402,6 +122936,,99361,1153016,8 +122937,Black Convict (uncredited),179818,89101,9 +122938,Dr. Livingston,5172,3909,22 +122939,Anton,44716,52398,0 +122940,Kwan,186759,212003,25 +122941,Monty,365753,1528557,3 +122942,Aunt Ethel,1125,154224,19 +122943,Funeral Goer,216374,1207891,13 +122944,Judge,354979,1153680,14 +122945,Renate,374475,43349,16 +122946,Andrzej,11502,28834,0 +122947,,246829,126986,4 +122948,Twin Vampire,29128,102946,5 +122949,Anthony,113178,51657,0 +122950,Kathryn,353728,1697393,10 +122951,Worm,88390,1678197,13 +122952,Dennis Mangenelli,14137,176628,2 +122953,Soumya,381691,1115745,5 +122954,Head of Intelligence,12796,11857,3 +122955,Himself,41569,1197945,5 +122956,Ira Glatt,336890,33293,15 +122957,,43095,134625,11 +122958,Malabar the Mighty,27503,14485,2 +122959,Serenella,121998,1891819,10 +122960,Printer (uncredited),1421,27225,47 +122961,Shiva / Vikram Singh Rathore,102632,35070,0 +122962,Luna,17681,54427,4 +122963,Fritzchen,210052,1630632,5 +122964,Chuck,192210,1271,1 +122965,Lysander,37958,79505,10 +122966,Lamont,137528,1334151,5 +122967,,264269,1309267,1 +122968,Ishimine,48609,16103,8 +122969,Third Granduncle Chen,121823,62419,0 +122970,Magde,337758,1563444,10 +122971,Dancer,73241,100552,10 +122972,Mya Rockwell,24150,210355,18 +122973,Raoul,91690,1018784,0 +122974,skipper,103260,35322,1 +122975,,77564,150827,3 +122976,Policier,77338,1171433,25 +122977,Himself,413782,228554,10 +122978,Hutch,540,1826585,23 +122979,Ororo Munroe / Storm,246655,1253199,13 +122980,Dr. Stella Dickens,28820,35215,1 +122981,Girl in Street,11584,178446,13 +122982,Lorelei's Assistant (uncredited),28068,95655,16 +122983,uomo nel sogno,302802,88469,13 +122984,Cletus,36299,10825,3 +122985,Marshall 'M.O.' Ogden,298540,15564,3 +122986,Benjy Compson,287636,17051,1 +122987,Susan,426253,1251570,7 +122988,special courier,55495,1839571,16 +122989,Councilman Blackmon,308639,119870,5 +122990,Luna,35025,113613,5 +122991,Dancer,59962,1288837,36 +122992,Jailer,43829,2016,5 +122993,Travis,26899,54834,4 +122994,,441728,4001,6 +122995,Jean Price,9667,6473,4 +122996,Shimada Hideo,282070,1185386,5 +122997,Eusebio Duval,86154,71408,3 +122998,Jess,290762,69597,0 +122999,Tim (Segment 2),244117,53493,10 +123000,Severino Carugato,169069,590159,4 +123001,Hessian Col. / Von Heisel,259593,9084,9 +123002,Nora Bryce,312497,1400939,6 +123003,Mrs. Erica Hunter,23692,7632,1 +123004,Dr. Kettler,329865,135993,14 +123005,Audrey,443007,1249300,1 +123006,"Muzaffer, the movie-maker",52072,107521,2 +123007,Dr. Reeves,334890,1695143,7 +123008,Polly Parsons,407559,86232,2 +123009,Festival Goer,5759,1741930,10 +123010,Charlotte Stroemann,72917,78534,1 +123011,Anthony Stowe,20411,15111,0 +123012,Ronnie,253258,1292111,5 +123013,Umpire #3,18722,553451,51 +123014,Günther,400552,20266,5 +123015,Elizabeth Turner,339408,14698,4 +123016,Withins,127560,1380509,7 +123017,Emma Tate,45556,148428,1 +123018,Satoru Kanzaki,198993,65510,10 +123019,Russell / Bucky (voice),84805,1244717,2 +123020,Kid #4,147939,1127752,8 +123021,Santa,103014,185111,3 +123022,Firùz,317389,32675,3 +123023,Felician,104674,1816956,9 +123024,polizziotto Ciccio Smith,131507,53462,3 +123025,Ashley,326,37979,14 +123026,Abe Pickett,30054,93622,17 +123027,Cooper,30644,106668,7 +123028,Gary Hargrave,107250,44172,3 +123029,Harriet Marlett,99767,587954,3 +123030,Marzdone Mobilie,28170,99939,3 +123031,Pete Morrison,156335,1181316,18 +123032,Himself,34506,15903,0 +123033,Gefängnisdirektor,145244,9920,10 +123034,Dennis Van Welker,17745,1062,1 +123035,Aapo,362758,1474188,3 +123036,Rasheed,233490,1753368,11 +123037,Frau Moellemann,36672,23282,13 +123038,Gina,54893,210259,1 +123039,Knaggs,44265,3418,3 +123040,Choi Sun-hee,54659,102269,1 +123041,Tommy De Coco,114096,15183,1 +123042,Freddy Fry,16058,79108,11 +123043,Amina,99698,745528,1 +123044,Frank,214756,17200,9 +123045,Judge Wood,134435,34279,4 +123046,Nina (as Susan Scott),195385,100415,1 +123047,Katie,157354,999605,3 +123048,Carmen Getit,4551,1680753,47 +123049,Ms. Mynard,14642,80784,10 +123050,Detective Snell,175822,1489860,5 +123051,,126315,1096782,3 +123052,Emily Davison,245168,37983,9 +123053,,333884,553180,7 +123054,Jordmoren,20372,1270295,4 +123055,Astarte,13486,141464,6 +123056,Studio Guide,80032,128000,8 +123057,Jan Baalsrud,20372,225777,0 +123058,Kouki,43635,129701,1 +123059,"Constance ""Connie"" Allenbury",31773,13577,2 +123060,Bethanny,259997,1302538,27 +123061,Medical Student,27966,18907,41 +123062,DJ Juice,10362,1758891,21 +123063,Tony,115276,75076,1 +123064,Eric Harris,409502,1661268,13 +123065,Ratcher,24351,55412,1 +123066,Raymond,68822,11221,3 +123067,Himself,125736,1271001,11 +123068,Dr. Mordrid,1877,27993,0 +123069,Diego,63190,57345,0 +123070,USSE Bridge Crew,188927,1897709,46 +123071,Boyfriend on Phone (voice),8414,17051,12 +123072,Charlie,390059,1486957,10 +123073,Kirk (uncredited),14029,102013,19 +123074,"Penelope ""Penny"" Carrol",20325,30003,1 +123075,Deborah Greenleaf,88288,19216,1 +123076,Young Matt,10096,63373,8 +123077,Mrs. Taylor,413417,30366,3 +123078,Andromace,81409,1179796,8 +123079,Evert Gullberg,33613,70069,10 +123080,Commissioner at Hearing,43812,30216,80 +123081,Viondra Denniger,312497,74423,1 +123082,Crazy Man C,94525,1178587,5 +123083,Reporter,41932,75344,4 +123084,Chris,19235,84560,8 +123085,Reporter,47882,2673,8 +123086,Ζωή,16803,80876,0 +123087,McKenna,377428,1292329,7 +123088,Isabelle,28320,51042,8 +123089,,264269,1309268,2 +123090,Ulido,35002,103608,5 +123091,Faye,192133,64986,10 +123092,Sir Francis Jamison,37451,111664,7 +123093,Jue,24357,21063,0 +123094,Cocktail Waitress,51828,1258227,23 +123095,The Boss,53048,19839,1 +123096,Emilie Ashurst,56853,10981,17 +123097,Doctor Honey,3563,54634,15 +123098,Patty Murphy,297853,87108,6 +123099,Joey Langley,30036,3337,10 +123100,Henri Giroux,41277,85163,12 +123101,Tom,44960,166529,10 +123102,Chauffeur bus,98277,1849118,41 +123103,Cratch,21533,43299,4 +123104,Claudius,206514,937,0 +123105,Dispatch,378018,1120842,12 +123106,Simone,85442,28254,5 +123107,Diana McBain,71320,105296,3 +123108,Dragan Armanskij,15472,92897,19 +123109,Justin,83384,205854,6 +123110,Mavayya,111836,565890,5 +123111,Thennappan,66247,91549,6 +123112,André,11227,2408,0 +123113,Meteorologist,49837,142889,3 +123114,'Knuckles' Hogan,77645,7347,3 +123115,W.J. Weatherby,123283,1077702,7 +123116,Old Tim,137357,131447,5 +123117,Barnes,193177,15413,5 +123118,Sigrid Freesmann,231540,37411,6 +123119,La gardienne,366566,35137,8 +123120,,256836,1355223,4 +123121,Detective,53172,1364241,15 +123122,Little Boy,33224,50306,14 +123123,Allen Herrick,27114,1111755,8 +123124,Franz,264729,1439851,14 +123125,Alte Dame,11930,22633,9 +123126,,74645,25815,7 +123127,Land Lady / Lady at Bus Stop / Madam / Big Dyke (voice),90110,559891,5 +123128,Hannah LaForche,64720,938292,5 +123129,Adjutant,45398,1282,15 +123130,Business Man @ Plant,7871,1294400,11 +123131,Sgt. Greene,69165,1325981,8 +123132,Osamu Nishio,60160,4990,3 +123133,Dot Lancaster,14923,172605,2 +123134,Wilson,242382,84634,12 +123135,Ms. Grimwood,13350,5826,5 +123136,John Day Griffith (Sentinel managing editor),36786,3383,4 +123137,Noah,95015,98571,1 +123138,Mouser,120172,1071592,3 +123139,John's Wife,42599,94156,4 +123140,Urfalı Apdi,148697,1078371,6 +123141,Ray,87229,110902,10 +123142,Yumiko Seki,135799,118577,7 +123143,Zach,301729,1421629,2 +123144,Driver,44363,131824,8 +123145,Girl,21057,124478,7 +123146,Himself / Agent Smith,14543,1331,1 +123147,Armandina Régner de Montfleury,262786,103183,3 +123148,Michael Jeffery,192133,39659,3 +123149,Lila,103332,212154,6 +123150,Olav,339944,1566009,3 +123151,Elias de Leeuw,223551,1263641,8 +123152,Luisa,166207,1396363,19 +123153,Stone Talk,55156,213441,9 +123154,Female Cashier,75595,1775990,18 +123155,Bill Dalton,167262,349,3 +123156,Josiah,333484,62784,19 +123157,Georgie,340881,59252,5 +123158,Sarah,408755,210909,4 +123159,Gloria Perkins,5165,1184827,8 +123160,Mother of Sick Child,1116,1896880,48 +123161,Scheherazade,47310,124880,11 +123162,Anne,352327,1491854,7 +123163,CIA Agent (uncredited),337339,1716520,50 +123164,Ginny Simms,80720,143455,10 +123165,Naoko Yanagisawa,31347,1247943,15 +123166,Mike Coozeman,8277,54598,4 +123167,Francis Henry 'Frank' Sullivan,43504,216636,5 +123168,Fred / Creature,43753,108179,6 +123169,Salman,280030,41316,13 +123170,Enzo,443053,1343828,9 +123171,Mike Pilsbury,82401,84844,0 +123172,Marie Tustine (as Dawn O'Day),34796,19327,4 +123173,Lora,36214,145927,1 +123174,Fox,12783,16358,3 +123175,Lilith Beresford,13483,5313,3 +123176,Restaurant Proprietor,71503,563103,25 +123177,Nhanderu,12811,1827454,13 +123178,Coach Farris,295588,32747,2 +123179,Birgit,9943,50315,13 +123180,Boyan,99642,42071,3 +123181,M. Calmel / M. Dead-For-Two (voice),118293,13692,5 +123182,Ryan Hui,440597,1310760,4 +123183,Bank Employer,4613,4175,9 +123184,Eric Palmer,205587,1348957,15 +123185,Apollonia,13763,191104,1 +123186,Cmdr. Cross,143092,94315,9 +123187,Mécanicien,4191,3517,11 +123188,Renatino,66700,545233,5 +123189,Corky,180819,153337,4 +123190,Chavez,38340,5401,0 +123191,"Himself, associate to David Lean",142478,71023,3 +123192,Adam Hurt,216374,1181353,1 +123193,,362154,1562570,14 +123194,Phaedra,37665,87934,15 +123195,Amy Myer,45693,70696,0 +123196,Nicholas Pinter,45013,78144,39 +123197,Dummy (voice),13798,66790,4 +123198,Padre José,140,1605,4 +123199,ACP Afaaque Bhaagran,188640,72118,2 +123200,Harris,40085,96722,12 +123201,Pilot,102382,1218185,64 +123202,Seinikubu Chief,81296,133886,6 +123203,Le planton,258384,140365,27 +123204,Snakehead's henchman,10610,1624032,20 +123205,Kwasind,238985,102306,10 +123206,Wilson,1724,1366369,47 +123207,l'espion magicien,12089,580229,16 +123208,Rory Shenandoah,84184,62064,14 +123209,Wallace,38027,1018319,11 +123210,Doktor,779,11585,3 +123211,Seth,4882,1351567,19 +123212,Kim's thug,18763,62424,12 +123213,Julia Lee,71147,30609,2 +123214,Großmutter,254007,1304174,5 +123215,Frau im Zugabteil,277968,1446647,33 +123216,Frat Boy #1,339403,1635137,23 +123217,Kathy,50647,63220,10 +123218,Ruth Ingram,26983,96733,6 +123219,Old Man Carl,199056,13726,8 +123220,Duchess of Waverly (uncredited),52440,1905151,34 +123221,Jean-Loup,90930,29432,2 +123222,,85126,164882,13 +123223,Richard Scarry,81660,1085051,0 +123224,Wedding Guest (uncredited),214756,1759669,90 +123225,,419522,1898299,24 +123226,Bill Rockne - Age 14,43812,1673805,46 +123227,Claire's Mother,38065,146474,3 +123228,Dr. Tom Wallace,70322,111957,1 +123229,Tony Stark / Iron Man,68721,3223,0 +123230,La Première Dame,15414,6684,3 +123231,Ozaki Taicho,17895,82973,11 +123232,uncredited,37126,1482567,16 +123233,Inspector Tominaga,43113,30568,0 +123234,Anna-Maria Sulza,111480,19646,1 +123235,Cameron Thayer,1640,18288,7 +123236,Hosticka,12594,61216,5 +123237,Marjorie,58467,15012,12 +123238,General Byron,31675,13331,12 +123239,Ilonka,209248,935970,6 +123240,Ung kvinde der skal giftes,56858,498130,8 +123241,David Cummins,45627,51764,1 +123242,Isadore Marks - Student with Glasses (uncredited),84971,106805,9 +123243,Mrs. Kelly Hatfield,114348,288940,3 +123244,Clairy Blomstedt,53689,929654,1 +123245,Joel,55632,11678,2 +123246,Sam,258363,47296,1 +123247,Kelly,11509,28633,36 +123248,Additional Voices (voice),82703,950773,43 +123249,Un mafioso,33436,579458,24 +123250,Policeman,347630,1255553,35 +123251,Eli Frost,307081,1502320,11 +123252,Juan Sanchez Villa-Lobos Ramirez,8010,738,1 +123253,Bidder at antique auction,18725,130561,13 +123254,Fireman,53417,21310,9 +123255,Harry,81120,591020,4 +123256,Ellen,72105,1502861,42 +123257,Dave,44472,41042,1 +123258,Oreste Saclà,39979,100683,14 +123259,Jürgen,94336,1001694,14 +123260,Rancher Shirt,9828,12834,4 +123261,Lou,222858,70422,5 +123262,Himself,16800,939010,26 +123263,Prom Goer,268920,1754457,70 +123264,Bongo Drummer,43045,1186328,9 +123265,Marianne,26152,38404,18 +123266,Darren Cook,301566,1382835,1 +123267,Murilo,82745,567574,1 +123268,Kamil Pasa,10821,1004821,8 +123269,Frankie Stevenson,371504,1474032,8 +123270,Pandy,15981,79004,1 +123271,Young Nat Turner,339408,1622084,22 +123272,Sue,109213,1144718,3 +123273,Scrilla,187596,37947,9 +123274,Harvey,31277,41217,15 +123275,Barry Allen / The Flash (voice),14011,41686,1 +123276,Pier,13574,17867,4 +123277,Jane,49712,69054,3 +123278,López Carrión,116312,30831,23 +123279,Dan Stadler,11358,2250,26 +123280,Lana,168541,170306,2 +123281,Georgia Rawlins,6643,39555,9 +123282,Mrs. Louise Ann Fuller,54139,4070,9 +123283,Simard,26566,32890,14 +123284,Shoji Kanzaki,223391,76933,1 +123285,Marcos,17317,57421,26 +123286,Julie the Babysitter,2267,203664,13 +123287,Roberto,110447,124754,4 +123288,Brook Manville,26323,2927,7 +123289,Kerry,176,2133,7 +123290,Dev Harvey,125490,29384,4 +123291,Alexis,208305,438290,3 +123292,The Looking Glass (voice),44283,6844,2 +123293,Dorm Buddy,4688,1232505,14 +123294,Michael,360737,1165938,6 +123295,Security Guard #2,58244,108302,41 +123296,Francis,1116,1896858,22 +123297,Railway Clerk,223655,584084,12 +123298,Evans,60269,110484,20 +123299,Chaplain,219335,1517367,13 +123300,Daphne (voice),302960,15761,3 +123301,Velma,21956,96339,1 +123302,Yue Jin,12289,1623404,20 +123303,Lada,46982,1183363,5 +123304,Caretaker,38987,198642,4 +123305,Sarah,21413,50346,5 +123306,Extra (uncredited),3059,17660,51 +123307,Lt. (jg) Franklin,44890,9208,1 +123308,Choreograph,140554,1707841,40 +123309,Leslie Brough,9675,12075,15 +123310,Eddie Martin,28110,99724,8 +123311,,10754,66470,10 +123312,Jane,273106,1519571,26 +123313,Principal,125087,23915,2 +123314,Mara,79550,59224,0 +123315,Gus (as Sig Rumann),147722,2497,7 +123316,Kit Locksby,41073,12282,4 +123317,Emma,426264,86477,2 +123318,Shazhana,336811,1457454,3 +123319,Gran (voice),146381,477,4 +123320,Himself,41886,1110612,0 +123321,Himself,104744,224662,2 +123322,Sam Stone,9287,57155,2 +123323,Madame Iovine,37420,93644,4 +123324,Marcy,39979,225392,4 +123325,Blind Soldier,11248,107398,13 +123326,Mean Lion (voice),26264,61981,6 +123327,Tillotson,138486,106101,6 +123328,Lt. Frank Baum,197624,71900,0 +123329,Omunique,14423,35705,6 +123330,Hardbody on Stairs,52736,45356,20 +123331,Hannah,29151,80591,20 +123332,Toyo,3782,34378,4 +123333,,57781,86666,10 +123334,Prime minister,65131,239715,7 +123335,,28917,132078,2 +123336,Jill,85431,7401,3 +123337,Pedro,30127,87341,0 +123338,Simsar Cafe,148697,590773,4 +123339,Patty,2355,172017,23 +123340,Hot Guy (uncredited),270303,1588364,27 +123341,Wurzel,21343,83674,5 +123342,Annibale,142320,76344,18 +123343,Pilot,16082,79956,11 +123344,Lucy,2503,204167,14 +123345,Leningrad Cowboy,30366,1076423,3 +123346,Jeff,146373,80292,6 +123347,Doamna Radu,2009,39961,4 +123348,,317246,1043886,4 +123349,Nick Powell,9785,503,0 +123350,Ted,358076,170169,9 +123351,Juliette,8276,5470,0 +123352,Juan,382598,1884494,10 +123353,Balthazar,209244,1372292,19 +123354,Masha,277396,23709,2 +123355,Serge,79435,6018,1 +123356,Eric McNally,16240,59216,4 +123357,Henchman,134238,137405,34 +123358,Arthur,60269,15326,28 +123359,Ashley,104859,1037301,6 +123360,Construction Man,9542,207982,13 +123361,Krissy,5965,46928,16 +123362,Himself,47426,141680,5 +123363,Raymond Greenwood,16082,66804,1 +123364,King Edgar,5494,4001,12 +123365,Eduarda,55700,937210,3 +123366,Gloria Wellaby,58411,8263,1 +123367,Cross Tree Townsman,42701,544145,9 +123368,Reporter,24619,1850008,26 +123369,Paulette,12089,580227,7 +123370,Major Cosio,44591,1043528,8 +123371,Haluk,37586,133822,2 +123372,Vishnu,37438,79003,0 +123373,"Tina, Bridesmaid",45692,12505,10 +123374,Becky Westlake,383535,135409,1 +123375,Alastair Campbell,1165,124686,10 +123376,Fangz,264646,23680,9 +123377,Fred Flintstone / Knight (voice),36868,106102,3 +123378,Dr. Garrison,284052,1782075,19 +123379,Dr. Alan McMichael,201085,56365,3 +123380,Court of Owls Grandmaster (voice),321528,130081,8 +123381,Luutnantti Anni Maria Sievänen,55761,223077,7 +123382,thug,32091,1615354,11 +123383,Vindici,23750,2040,0 +123384,Maurie Green,124527,10462,4 +123385,Ling (Age 4),10389,551620,33 +123386,Hélène,354105,47965,3 +123387,Billy Herndon,161187,1218790,9 +123388,Head Counselor,68737,1392953,30 +123389,Haruo Nami,39123,146785,12 +123390,Fred Deverne,190269,29273,1 +123391,,1838,1441407,29 +123392,Justine,149170,1329276,13 +123393,Hipster Dancer (uncredited),12182,1584998,22 +123394,Mike,49514,237163,19 +123395,Captain,81477,106663,9 +123396,Prince Tverskoy,96724,997569,20 +123397,Ben,349948,1488534,3 +123398,Kostya,49574,142499,0 +123399,Stella,55725,1829339,14 +123400,Walter,327389,85545,7 +123401,Studentenspacko,75969,1902100,53 +123402,Gwen Williams,86608,115990,1 +123403,Justice Charles Montague,104067,1110547,3 +123404,Hyde Park Nutter,16171,79886,38 +123405,Maginty,13056,980805,14 +123406,Pres. Emilio Aguinaldo,359105,1065168,1 +123407,Doug (voice),269149,165787,22 +123408,Bobby,31919,559313,0 +123409,Sally,251227,559060,6 +123410,Dia's Parents,38031,6217,18 +123411,Police Officer,374473,1462484,13 +123412,Chuck's Dad,30411,58495,2 +123413,Henson,84226,74302,3 +123414,,195544,1107185,24 +123415,Julián,331642,1320171,7 +123416,Beatriz,361146,1890673,4 +123417,Mrs. Wells,11247,7401,6 +123418,Westlake's Receptionist,128669,146898,39 +123419,Kal,28031,14,2 +123420,Goli's Henchman,46403,150686,10 +123421,Katie,374473,1182598,1 +123422,Mary,216156,1227509,2 +123423,Joey D,243935,4521,13 +123424,Wounded Vampire,42941,134610,11 +123425,Michael,374614,1569762,10 +123426,Bubi,9803,46029,0 +123427,Richard,145135,168400,7 +123428,Kenji Kinami,79382,63694,3 +123429,Akemi,3146,30564,1 +123430,Bens Vater,49853,52266,11 +123431,Kay Lemp,124115,33021,1 +123432,Samantha Hobbs,168259,1533850,23 +123433,Student #1,10521,1572020,18 +123434,Queen Mary Hospital Nurse,182127,1440445,28 +123435,Jay K,45273,233474,13 +123436,Shuttle Crew Chief,19995,1019578,18 +123437,Edi Brenner,248933,23172,11 +123438,Psychologist,30941,119778,11 +123439,Security Guard #2,186759,1505304,33 +123440,Keibiin,11838,79458,8 +123441,Pretty Girl,47312,103483,13 +123442,Daniel / Subject #46,29151,55470,13 +123443,La vedova del Roccella,103218,9766,11 +123444,Chittiappa Gowda,77864,1047711,5 +123445,Catherine Eddowes,24486,14947,5 +123446,Sheriff's Secretary,6977,51734,12 +123447,Mann bei Direktorin,2241,565530,16 +123448,Cortez Gang,268920,1755079,95 +123449,Dr. Richard Powell,378018,6074,4 +123450,Zelda,277355,25448,5 +123451,Rose Montgomery,38850,54882,7 +123452,Russell (voice),319924,1258699,8 +123453,,452606,1797951,26 +123454,Biddy Hall,425774,1707749,9 +123455,Heesch,73775,577775,7 +123456,Marion Rowan,39517,10699,3 +123457,Elena Teopoulos,108535,18847,4 +123458,,77057,72391,9 +123459,Lobo Jackson,177043,4307,1 +123460,Female Corporal,333352,1584777,26 +123461,Moeder Boecke,47231,69338,4 +123462,Gabi,68123,104092,10 +123463,Fairfax,64167,22169,6 +123464,,355111,59312,7 +123465,Dhameer,331313,1739700,19 +123466,Burt (as Anthony Brubaker),52661,15850,11 +123467,Dan,47201,52374,5 +123468,James,109417,98397,8 +123469,Adil Khan,139582,52263,0 +123470,Christoph,128856,1089466,8 +123471,News Reporter,186869,1862913,43 +123472,Shiori Takizawa,392882,1602225,6 +123473,Customer,328589,1214797,36 +123474,Mrs. Susan Smith,413232,30185,5 +123475,Luis,151911,78850,2 +123476,Everett,24655,3142,2 +123477,,35572,1662175,10 +123478,Klasse 3c,61035,1445785,28 +123479,Extra in Nightclub Scene,43594,1142312,3 +123480,Vice President's Analyst,68721,1314963,42 +123481,Jacky Roll,10915,146997,5 +123482,Dave Boyle,322,504,1 +123483,Diana Stuart,27144,97236,2 +123484,Undercover Cop,94809,97931,4 +123485,Blackie,60759,22169,5 +123486,Grem (voice),49013,3266,7 +123487,Cop,921,8362,59 +123488,"Mac ""Macbeth"" Wilson",23853,2130,0 +123489,Sgt. Ben Puzo,87514,4307,3 +123490,Perla,14430,974929,16 +123491,Alice Lidell Hargreaves,16356,18017,5 +123492,Juanita (como Victoria Ramirez),55735,571298,4 +123493,Monica,94170,10190,4 +123494,Mary Haines,13972,5344,11 +123495,Bigote,166207,1036781,7 +123496,Sean Cullen,354287,59233,21 +123497,Tanya,253154,98087,11 +123498,Mickey Hopkins,15148,588,2 +123499,CDC Worker,33005,65643,15 +123500,"Hans, Spring Director",40130,1019914,11 +123501,Vito,35554,120135,6 +123502,Davey,242097,153716,8 +123503,Nadare Roga,16907,100124,6 +123504,Vänrikki 'Napero' Pienimäki,55756,223073,5 +123505,Stephan The Creepo,339342,1168716,11 +123506,Neighbor,71725,1047280,15 +123507,Parent,10053,62570,14 +123508,Luise Treskow,212530,55762,1 +123509,,384373,1582129,2 +123510,Cassandra,44877,66442,3 +123511,Sho Fukamachi / Guyver,197854,1686,1 +123512,Robin,190955,80002,13 +123513,Robert Fitzgerald,105833,146521,2 +123514,Doctor Steven,50318,59270,4 +123515,Baxter Slate,48852,64457,2 +123516,Indie Guy,320588,1494539,37 +123517,Marching Soldier (uncredited),16442,93624,89 +123518,Aunt Eula Beaurevel,106016,83260,3 +123519,Vlado,241140,1426801,3 +123520,Greg Sommers,8460,55876,4 +123521,April,403431,209,14 +123522,Editor,237584,1544806,22 +123523,Minister,150117,126042,10 +123524,Gilly,27381,65765,5 +123525,Kiran,22429,88795,7 +123526,Lee,21554,164847,8 +123527,Graduate Student,381008,1589614,27 +123528,Mrs. Ambrose - Stephen's houseeper,30014,19784,4 +123529,Doctor,56800,1271226,7 +123530,,408550,1658142,13 +123531,,338312,225934,12 +123532,Noriko Somiya,20530,95504,1 +123533,Sam Brockington,132328,20959,1 +123534,proprietario del bar,371942,1859519,11 +123535,Jennifer Ayers,17332,64908,6 +123536,Mrs. Winconis,40060,7520,8 +123537,"Joe Wayman, Ambulance Driver",153165,32430,6 +123538,Sigurd,48791,69773,15 +123539,,78323,97368,1 +123540,Boo Boo / Titus Twimbly,85916,44766,3 +123541,Commercial Actor #1,193893,1381712,65 +123542,Dr. Tom Dolan,271664,9175,8 +123543,Danny,324150,98804,4 +123544,Viktor Ryder,264061,33031,1 +123545,Edward Bartlett / Python,31985,41122,7 +123546,Boss,25653,1977,4 +123547,Brawling Drunk,8988,1472397,57 +123548,Rocky,53048,80868,3 +123549,Lotte,315855,1592949,57 +123550,Sakamoto,127560,1381319,23 +123551,Party Guest,149793,82860,19 +123552,Lucienne,8049,36513,5 +123553,Maddie Stewart,137776,49425,1 +123554,Sathyabama,368006,584504,6 +123555,Bella,369883,1690573,14 +123556,State Trooper (uncredited),97614,1207370,31 +123557,Howard Mason,39779,5403,2 +123558,Dr. Jonas,50126,27110,13 +123559,Antonio Pane,209413,73864,0 +123560,Rusty's Girl Friend,23515,1440861,11 +123561,Himself,28036,99915,0 +123562,Himself,241618,219396,1 +123563,JR,83125,142316,0 +123564,Mia,22615,47714,5 +123565,Bank Manager,182499,7013,9 +123566,Background,408508,1707547,10 +123567,,121530,1518858,11 +123568,General 1,274857,1530153,27 +123569,Receptionist,391375,1033126,9 +123570,Gus Sampson,1790,19107,7 +123571,Emil Breton,22307,97561,3 +123572,Herself - at Banquet (archive footage) (uncredited),33740,93805,79 +123573,Drug room door security (uncredited),4982,1358403,89 +123574,Phoebe,259694,1734930,20 +123575,Big Man,13058,197126,11 +123576,Spider,70863,65831,8 +123577,Reyhan,284250,1522705,0 +123578,Tv Chainsaw Psycho Killer,16092,79279,3 +123579,Son Goku,39102,90496,3 +123580,Don John,9474,39461,11 +123581,Crew Woman,24357,15762,6 +123582,"Narrator (voice, uncredited)",7288,518,26 +123583,Jim Broadswell,322443,140409,7 +123584,K. K.,372226,550166,4 +123585,,299165,1697803,24 +123586,Noriko Hirayama,18148,95504,2 +123587,Marcel,110898,59119,1 +123588,Lil Rice,130717,1353636,7 +123589,Bai Xi,226672,1276628,12 +123590,Camper (uncredited),251227,1286550,35 +123591,Lorraine,34598,57418,4 +123592,,126516,1309414,15 +123593,Dr. Reza,375012,1289605,9 +123594,Anders Stille,377290,57014,7 +123595,"Friederike "" Fritzi "" Scholz",3577,33040,1 +123596,Alice,153102,77749,2 +123597,The Reaper,109074,1606823,3 +123598,Emilio Canepa,29113,3345,8 +123599,Jimmie,175035,19406,1 +123600,Postman,104062,42672,2 +123601,Chloe Brasher,242835,7684,2 +123602,,62896,116158,7 +123603,Officer #2,1164,92932,15 +123604,Harry Tristan Dean,28270,3895,0 +123605,Jim,28421,100763,8 +123606,Mrs. Hirsch,21250,30585,12 +123607,Mr. Schaeffer,9568,1297931,14 +123608,Senator Pamlo,330459,195666,27 +123609,Saloud,936,14265,7 +123610,Gilbert Markham,30496,10881,1 +123611,Tiger,8008,6091,3 +123612,Yoko (voice),297466,1357752,3 +123613,Bob,43354,115059,5 +123614,l'inspecteur de police,50350,20115,9 +123615,,71725,1136710,10 +123616,Catherine,283445,1485774,11 +123617,Emmanuel,81215,1050255,1 +123618,Samuel Hamon,352025,38559,3 +123619,Counselor to Charles IX (uncredited),3059,1406784,103 +123620,Station 9 (voice),267852,1388531,11 +123621,Dr. Acula,32623,120520,0 +123622,Mrs. Ibbertson,83015,1781106,27 +123623,"Clementine, Actress in Show / Linda's Maid",132928,89101,6 +123624,Polly,81687,83477,5 +123625,,205864,1603889,6 +123626,Goon #5 (uncredited),339403,1386322,53 +123627,Russ,381645,1410501,10 +123628,Detective Rios,17386,1045551,9 +123629,Madeleine,2989,6929,0 +123630,Cheerleader (1989),16996,1579592,45 +123631,Audrey at Age 3 (uncredited),28000,121640,20 +123632,Franklyn Ambruster,49844,30181,2 +123633,Bruce Banner / The Hulk,284053,103,7 +123634,Natalie,12683,88038,14 +123635,Helmut,311093,15371,5 +123636,Ting / May,63081,589064,0 +123637,Megan Wendell,112287,930332,2 +123638,1st Supreme Court Justice,63505,78169,4 +123639,Prime Minister,280030,52685,11 +123640,,47046,1498161,0 +123641,Jimmy Legs,58,64102,21 +123642,Kardinal Schuster,61212,4958,4 +123643,Todd Sauser,45431,58881,11 +123644,Don Ramiro,122019,1075467,3 +123645,Dennis Jennings,47057,3214,0 +123646,James Holloway,132363,77069,19 +123647,L'inspecteur principal,690,10357,2 +123648,Ashton Prince of Castlebury,79113,209326,1 +123649,Nicolas III,390357,88808,1 +123650,uomo nel sogno,302802,76339,11 +123651,Greta,28656,52611,0 +123652,Harold Dixon,302828,39520,2 +123653,Philippe Lebrix,29577,4121,3 +123654,,84508,1083310,13 +123655,Minor role,86284,6355,8 +123656,Marie Gagnon,190876,109619,6 +123657,Ted,27886,1531021,6 +123658,Nicolo Paganini,191820,227932,0 +123659,Josie,18595,83278,0 +123660,Steve Gray (District Attorney's Office),177043,137389,9 +123661,Hila's Father,96888,1011142,8 +123662,Officer,115109,1216356,27 +123663,Captain Oh,41714,3129,0 +123664,Susie,28847,102169,3 +123665,Head of Nation,206647,1404403,42 +123666,Clayton,76493,4764,5 +123667,Employment Woman,45610,1844619,19 +123668,Barfly (uncredited),121230,103807,12 +123669,Lady in TV Audience,17640,1191818,13 +123670,Sam Smith,116723,104561,0 +123671,Anführer der Philister,2734,27666,44 +123672,Betty (voice),149910,12110,10 +123673,Marja,55257,5999,2 +123674,Zhong Qiu Ping,46124,1398074,2 +123675,King Frederick II,212530,29180,0 +123676,Oiran,45384,1267679,11 +123677,School Janitor,6973,1505345,22 +123678,Arsène Lupin,11540,17497,0 +123679,Nikolai Starobogatov's son,71393,143360,7 +123680,Volontario garibaldino,56853,1201345,27 +123681,Eliot Stone,13025,81098,4 +123682,Science Nerd,14123,1446417,24 +123683,Keller's Driver,47404,385470,37 +123684,Cody,10053,62569,12 +123685,Marthe Grangier,63764,34595,1 +123686,Le collègue de Vincent,85429,932043,16 +123687,Ray,123634,1078398,0 +123688,Wendy,2267,428222,12 +123689,Nora,34100,101045,3 +123690,Cabbie (uncredited),43497,100763,14 +123691,George Hathaway,43268,120816,8 +123692,Naomi,47171,62754,1 +123693,Alice Park,17317,115688,3 +123694,Misako,20530,131018,9 +123695,Singer - Sons of the Pioneers,134238,146504,39 +123696,Gary,186991,81051,1 +123697,Jimmy Briggs,174594,8728,6 +123698,Cookie,28421,2934,10 +123699,Kevin,25921,62753,6 +123700,Miss Nardis,38962,121727,6 +123701,Lucius / Narrator (voice),5928,16523,14 +123702,Ola Muluski,412209,1802462,12 +123703,Commissioner,175822,27944,10 +123704,Sharon,240913,1214816,2 +123705,,228339,1277477,7 +123706,Claire,267623,4166,2 +123707,,110001,1696387,29 +123708,Clan Head 1 (uncredited),274857,1516140,66 +123709,La vecchia Lolotta,43379,592525,0 +123710,Kaja,77381,1366036,2 +123711,Stefano Bertoni,45990,33807,4 +123712,Gloria,22615,57096,8 +123713,Michael Woods,6980,51750,0 +123714,Santiago,344906,1325939,12 +123715,Fanny,110160,20197,6 +123716,Adam,336666,1457012,2 +123717,,71393,935421,12 +123718,Joe,377170,589218,30 +123719,Tom's Father's Voice,56669,72637,15 +123720,Luis,263855,66914,10 +123721,Jhanvi Choudry,158780,120429,5 +123722,Alice,74661,572290,11 +123723,Charlotte,290999,1361560,10 +123724,Terrified Gal,1724,80969,12 +123725,Nick,163814,133333,4 +123726,Pet Shop Vendor,4538,1797592,20 +123727,Bulchar,5494,48903,8 +123728,Eden Moore,58244,205,0 +123729,Himself,173467,9032,8 +123730,Gretchen,18585,16859,1 +123731,Althea Keane,29117,19413,2 +123732,,284274,23680,7 +123733,Matt,388243,1213398,3 +123734,Nam,57627,127449,1 +123735,Luchy,107287,565854,5 +123736,Rachel Starbird,42182,127539,1 +123737,Cecile Andrews,252724,4003,3 +123738,Agent Hicks,369885,1651374,40 +123739,Han-ki,25649,64453,0 +123740,Alec,81232,65524,1 +123741,Le client de la boite de strip-tease,35025,1861964,18 +123742,Joaquín,98582,34057,2 +123743,Hermann,237171,50544,3 +123744,Angry Mouse (voice),269149,1462583,38 +123745,Claire Grandjean,452142,1221056,7 +123746,Hedwig,92988,15122,1 +123747,Dancer,4982,1200994,72 +123748,Michael Burnett,7555,36189,7 +123749,Hunk Houghton,15697,3442,2 +123750,,172004,21833,4 +123751,Felix Ferne,369406,1382473,0 +123752,Waitress,331313,1355111,22 +123753,Himself,27637,1522379,44 +123754,Claire,4644,1513307,8 +123755,Al,24625,1005339,8 +123756,Angus,133448,1097176,9 +123757,Surachai,13436,81039,3 +123758,The Prince / Nicholas Charles,49852,142389,4 +123759,Ying,40346,565456,9 +123760,Hider,188927,1366510,17 +123761,Renée (voice),23566,92078,4 +123762,Turisthotellpiken,87654,1465413,22 +123763,Hattie,27138,195061,3 +123764,Rose,26505,61604,4 +123765,Matt,273481,16851,2 +123766,Sanford Clark,3580,56419,41 +123767,Barber,8935,1174366,5 +123768,Clip from 'The Pirate' (archive footage),33740,1005050,57 +123769,,46658,137069,6 +123770,Ina Lohmann,3577,1156161,13 +123771,Mona Canon,129359,1089149,14 +123772,Grace McKee,337751,1639,2 +123773,Pope,13836,59238,4 +123774,Old House (voice),13798,112854,12 +123775,Bernard Ranley,18690,30228,11 +123776,Grant,47412,113927,1 +123777,Avis,9968,61160,7 +123778,Tourist Lady,10829,73456,6 +123779,Majors,88390,1678196,8 +123780,Timothy,186227,940628,13 +123781,Debbie (uncredited),82990,156785,13 +123782,Le douanier,103597,82284,8 +123783,Sharon Lutz,333385,969635,22 +123784,Stef,60784,210262,2 +123785,Ume Itô,84508,118985,5 +123786,George,14029,27398,0 +123787,Bertrand Russell,353326,18325,4 +123788,Mitzi Cole,55922,153818,0 +123789,Squirrel / Hawk,54491,1212443,16 +123790,Toni,253257,1292108,4 +123791,Sergeant Kerby,24486,1242012,10 +123792,Gort,34205,44150,6 +123793,Daniel Fowler,98250,91776,5 +123794,Tom Ward,68737,25130,2 +123795,Vince,207270,17343,1 +123796,Bill Walker,38770,29520,3 +123797,Anton Saitz,42206,3757,2 +123798,Mrs. Long,26376,120809,12 +123799,Cameron,17978,11066,9 +123800,Ben Foley,14435,17770,6 +123801,Clete,59189,228973,4 +123802,Boat Tunnel Guide,293863,61187,22 +123803,Acteur,382589,1569196,24 +123804,Faruq,14159,76793,5 +123805,Kang Joon-soo,313628,1250842,1 +123806,Auctioneer,228205,84792,19 +123807,Herself,385114,1302140,3 +123808,,73835,1206772,18 +123809,Le juge,1899,20966,10 +123810,Mère Claire,283726,1480809,21 +123811,Brewis,59678,103351,3 +123812,Anthony,45610,1844638,27 +123813,il primo agente,103218,126975,8 +123814,Valerie,62694,2772,18 +123815,Detective Mazurek,32166,1561391,7 +123816,Lee,311764,54728,7 +123817,Himself,173467,71521,27 +123818,Mark,203780,94375,1 +123819,Herself,407806,1212959,7 +123820,House Keeper,109439,945426,20 +123821,Gail Allen,98125,3610,1 +123822,Sam,157351,151229,7 +123823,Mr. Kimbal,20983,4689,2 +123824,Moshe,131903,60223,6 +123825,Sly,54779,151111,2 +123826,Mr. John,60759,134144,15 +123827,Barman,9843,59867,18 +123828,,289183,54769,8 +123829,Chachika,150223,1478447,10 +123830,Doug Glatt,336890,57599,0 +123831,Sheriff Marcus Ashley,195867,56265,3 +123832,Lame Man,30973,10511,15 +123833,Ishimaru Ishida,60160,553817,9 +123834,Handmaiden (uncredited),157843,1486976,14 +123835,Fleance,225728,1544741,13 +123836,Passer-by (uncredited),22447,1687937,36 +123837,,88953,227151,16 +123838,Doron (voice),16873,16896,2 +123839,Pinky,413452,467645,3 +123840,Bar Patron,57684,30240,16 +123841,William Bruce,255491,76996,5 +123842,Martin,20372,128653,2 +123843,Judith Chandler,147903,96300,1 +123844,Old Man #2,9953,60885,18 +123845,,255772,1355570,4 +123846,Father Doug,184345,5726,10 +123847,Fiske,38769,30276,5 +123848,Amanda,323674,1106411,3 +123849,Ray,85435,59116,13 +123850,Marta,209244,1367318,18 +123851,Mrs. Ma Yu-Ping,62071,1180976,4 +123852,Ellen,88558,85346,6 +123853,Chris Deford,271664,80205,5 +123854,Hal (Co-lead),277710,1423490,22 +123855,Louise Saitta,84425,17576,4 +123856,Maj. Rama Safti,115109,10922,1 +123857,,3549,64125,13 +123858,Cockney News Vendor,109716,1125676,21 +123859,,126516,1093453,6 +123860,,13506,1977,6 +123861,Spinks,348389,1707352,9 +123862,Harold,21029,170185,10 +123863,Dr. Wells,27501,97990,5 +123864,Dion - Werewolf,246741,1089230,28 +123865,Keith Richards,128270,1457581,15 +123866,Jennifer,86254,61995,14 +123867,Sarah,37929,119135,10 +123868,Lesbian Hitwoman,23853,45379,12 +123869,John Warren,2977,29237,10 +123870,Princess Nandini,192675,85892,7 +123871,"Thompson, the Dry Cleaner",39219,115330,7 +123872,Detective James McParlan,42345,194,2 +123873,Six Chick,10096,1564984,22 +123874,Virginia O'Donnell,75626,456907,2 +123875,Capt. Alofson - Psychiatrist,4820,13786,13 +123876,Octavia - Wife of Antony,71266,1705079,5 +123877,Claude,157351,145143,5 +123878,Psicólogo,125619,1293073,11 +123879,Young Heathcliff,36597,1555747,18 +123880,Toby (6 yrs),200727,1734966,18 +123881,Engländer,126415,36852,5 +123882,Jim Wilkes,68193,93638,1 +123883,Allard,5590,24652,10 +123884,Ralph Valmont,2994,9920,3 +123885,,199879,95635,2 +123886,Pepe,9753,58975,7 +123887,Manu,13734,28463,2 +123888,Émile,8281,24385,4 +123889,Special Appearance,14134,69709,12 +123890,"Javadi, Naser",266102,1464454,10 +123891,Louis Carbonelli,44593,532,8 +123892,Olivia,93676,1690518,16 +123893,Juez,145481,237471,5 +123894,Mr. Miller,51994,39186,5 +123895,Ray Jones,17282,229023,5 +123896,Tim,31150,183519,10 +123897,Himself,85910,1428,0 +123898,Becky,366045,1463652,3 +123899,Student in Drapes,246655,1796420,71 +123900,Awkward Reacting Boy (uncredited),28178,1519595,16 +123901,Luo Gang,334298,15170,2 +123902,Nalu,13285,59312,11 +123903,Angela,282963,1230426,7 +123904,Rollins,7085,5565,3 +123905,Laura,254047,58312,3 +123906,Maggie Verne,31915,3094,0 +123907,Abuela Emilio,18120,24922,13 +123908,Henry Chatwill,47410,14731,0 +123909,Jefe de seguridad,264525,89445,13 +123910,Harlan Banks,8382,23880,0 +123911,Max Hollander - Maler,8888,11610,2 +123912,Hades,11633,84508,8 +123913,se stesso,142320,1778996,29 +123914,Emmanuel,213842,31164,3 +123915,Alma Wishoff,169869,1240834,11 +123916,Donald Goldman,108282,24323,18 +123917,Ally,8981,1602370,8 +123918,Dr. Douglas,17209,84080,8 +123919,Favorite of the Harem (uncredited),3059,1050223,82 +123920,Ryo,15003,1059939,6 +123921,the ship's captain,132332,148345,9 +123922,Oil Wrestler,71120,98572,11 +123923,Col. John Hardesty,139826,4029,5 +123924,Matt Cordell,28090,80579,0 +123925,,45441,127892,5 +123926,The Young Policeman,43976,1493007,3 +123927,Street Santa,61550,233303,12 +123928,Hunter Shape,19898,132185,20 +123929,Mariano,47201,5401,1 +123930,Reilly,184741,30157,3 +123931,Choi Jung Hak,52418,974270,5 +123932,,143946,108021,4 +123933,Sondra,15090,31242,4 +123934,Martin Bormann,102155,933693,17 +123935,"Brad, Their Son",82696,224183,5 +123936,Emy,72875,567331,5 +123937,Dominik Schwarz,119816,36863,11 +123938,Padre di Monica,77958,550283,4 +123939,Princess Margaret/Hekuba,34052,111741,2 +123940,Pashko,168541,82496,5 +123941,"Artem, Professor of Scientific Atheism",34869,113331,2 +123942,Dr. Standish's Servant (uncredited),92848,29974,14 +123943,Man on Crutches,2567,159056,45 +123944,Le prétendant,3423,54402,14 +123945,Friedhelms Mutter,178446,18035,14 +123946,Det. Michael Bryer,60599,3129,2 +123947,,133788,129076,1 +123948,Frederic,310135,92172,4 +123949,Lt. Sam Waterton,111014,7013,6 +123950,Nurse,10362,171754,23 +123951,Bruce Barkow,35381,19728,13 +123952,Pappan / The Dad,158900,41903,0 +123953,,85729,932512,5 +123954,,27276,551868,59 +123955,Arvo,258585,1314865,1 +123956,Young Sam,178809,72765,19 +123957,Marcel,39284,69656,2 +123958,Thorko (voice),89247,938639,1 +123959,Frank Machin,18774,194,0 +123960,il cancelliere,43548,1680429,9 +123961,Das Küken,338,17373,14 +123962,Dorota 'Dor',112531,1055098,3 +123963,Sir Isaac Newton,43252,10800,3 +123964,,84774,545770,4 +123965,Pursy Will,9953,1245,1 +123966,,329206,145095,6 +123967,Daniel Culp - Prisoner '8612',308032,132157,2 +123968,Carlo,37581,99347,6 +123969,Rebecca,58467,34543,2 +123970,Topher,140222,986808,4 +123971,Barry Hearn,377516,19996,3 +123972,Birgit,65771,544022,2 +123973,Angelica,265226,128748,1 +123974,Waitress,48281,944649,20 +123975,Deunan,11633,68918,0 +123976,Belvine Lee Smith,84942,18262,0 +123977,Father Harlan,32235,1733,1 +123978,Little Krista,376660,1560377,13 +123979,John Rambeau,131898,18735,0 +123980,Cherie St. Claire,84105,460636,12 +123981,Christina Larsson,86600,27611,5 +123982,Sebastian,58757,28066,11 +123983,Vittoria,319910,77122,1 +123984,Hannes Haljandi,339944,137693,7 +123985,Heather,68721,113745,78 +123986,Mr. Westlake,128669,34285,7 +123987,Te Wheke,42123,64093,1 +123988,Lissy,70192,109410,1 +123989,호진(HoJin),67025,16264,2 +123990,Jenny - Farmwife,86979,1402966,10 +123991,Adm. Rolland,11046,39741,4 +123992,Natalie,34560,84952,7 +123993,Javi,109690,43321,0 +123994,,57548,1264354,9 +123995,Mary,141733,50774,6 +123996,"Камиль, дежурный электрик",143883,86863,4 +123997,Harold Hardman,62441,10779,6 +123998,Madison,105528,204507,9 +123999,Nance Residence,310888,1560226,10 +124000,"Porky Pig, O'Mike",84601,33923,1 +124001,Marek,309879,1626187,10 +124002,Robby,204712,68190,0 +124003,Lower Class Pedestrian (uncredited),76203,1438288,61 +124004,Seaton Brookstone,14862,21316,4 +124005,Jonathan Davenport,39240,11512,0 +124006,"Herself, Wife",45576,570197,1 +124007,Bartender (uncredited),110887,89102,20 +124008,,65904,544264,6 +124009,Nobleman (uncredited),274857,1654739,68 +124010,Judyta Kozłowska,143240,112308,0 +124011,Ava,189,10912,6 +124012,Reporter (uncredited),268875,17759,12 +124013,Svärmodern,28062,6657,5 +124014,Nobuo Yamaki,121725,1018944,10 +124015,Carol,156700,61182,14 +124016,Grandpa Heffley,60307,27112,12 +124017,Georgie (as Monty Landis),45335,44823,6 +124018,Old Woman,84420,1039417,1 +124019,Leigh Michaels,31428,27964,0 +124020,Mrs. Hammerbotham,54491,14837,4 +124021,Pablo,16092,79289,1 +124022,Stormtrooper,330459,164614,70 +124023,Gérante du restaurant,110160,543211,15 +124024,Dr. Krench,30921,29383,9 +124025,General Globus,11248,940,5 +124026,Clare at Six and Eight,24420,39518,19 +124027,Sunny St. Cloud (voice),13355,11074,7 +124028,Shuichi,320453,72932,1 +124029,Mattia Balossino (child),53399,1837337,4 +124030,Master Wang,217923,1436153,17 +124031,Female noble #2,48180,140021,16 +124032,Clip from 'Idiot's Delight' (archive footage),33740,11492,29 +124033,Danserinnen,20372,1270302,16 +124034,"Kreutz, student",51144,69656,10 +124035,"Raggi, il dottore",73697,146793,7 +124036,Fabian,74103,511138,3 +124037,Minoes,25797,23229,0 +124038,Dave,96333,6576,3 +124039,Bruce McNabb,12450,13079,5 +124040,Nina Andersson,21041,92412,8 +124041,brigadier / printing worker,75262,544511,19 +124042,Cop (uncredited),206197,1506498,44 +124043,Mother Superior (as Carloni Talli),70734,1262579,10 +124044,Linda,135686,942283,1 +124045,Inga,99361,1417110,1 +124046,,69310,138734,43 +124047,Mary,152748,1233885,16 +124048,Nisha,63414,1065777,2 +124049,Motasser,98203,111636,11 +124050,Arun,254420,1544619,3 +124051,Ryan,371003,1310521,1 +124052,Nerio Winch,14400,48791,3 +124053,Peggy Savalas,108789,24690,3 +124054,Pulaski,49524,11516,9 +124055,Renegade Receptionist,91679,1782594,37 +124056,Mara - wife of Luciano,80443,229080,2 +124057,svyaschennik Okhrokhine,150223,48665,9 +124058,Elderly Farmer,70046,6772,15 +124059,Fritz,31542,1757144,26 +124060,Whitey Lake,88075,11033,3 +124061,Edmond Delhurst,68347,137161,8 +124062,Ally,50725,129228,19 +124063,Bodley,278334,107550,6 +124064,Prison Guard,39979,1091542,20 +124065,Hark,339408,91671,12 +124066,"Legs, Stripper 2",414977,1676782,33 +124067,Norman,351065,190961,14 +124068,,315252,1248648,8 +124069,Ole,19812,121554,3 +124070,Nicolaes Jonghelinck,57829,13919,2 +124071,T. J. Jackson,359412,53185,11 +124072,Jim Fulton,59744,1444837,10 +124073,Banker Clanton,59882,14975,7 +124074,Div. Inspector Raymond Lam,10753,1346975,2 +124075,Gérard,20108,143033,2 +124076,Bill,106131,129759,1 +124077,Himself,44260,556527,2 +124078,Courtroom Interpreter (voice),339403,1723,41 +124079,Kostya Denisov,65545,550741,3 +124080,Leung Yuet Lin / Soso,25655,115610,2 +124081,Michael Finkel,245706,21007,0 +124082,Susan Davies,45377,9599,0 +124083,Madison,68684,64622,21 +124084,Bekkie Stander,18927,13549,2 +124085,Keiko Hashizume,376538,13252,1 +124086,Philippe,2029,28190,8 +124087,Zorbek,11142,10744,3 +124088,Deputy Fallon (uncredited),71668,10182,14 +124089,Cooper,333484,85419,14 +124090,The Amazing Krudsky (voice),12903,4201,4 +124091,Young Oliver,55347,235847,6 +124092,Deana,65599,40385,8 +124093,Alberto,44655,186612,5 +124094,Voodoo Dancer,243683,1398061,39 +124095,Suzanne,79048,19161,1 +124096,Young Masseuse,310593,4636,6 +124097,Slip Stream,17421,81847,17 +124098,Dr. Wilson,27259,97433,10 +124099,Kristine Linde,42457,8227,4 +124100,Dr. Charley Nichols,36361,6837,0 +124101,Gina Fois,14804,1086275,10 +124102,"Police Officer (segment ""Dead Stop"")",319396,53932,6 +124103,,15674,10859,6 +124104,Bartender,270650,1359967,33 +124105,Japonés,8329,1619946,16 +124106,Diana,359870,47699,5 +124107,,138502,1392152,12 +124108,Emmanuel Lewis,13280,75308,13 +124109,Lady Irene Herrick,28425,25173,5 +124110,Salla,101838,1029077,4 +124111,Francis 'Colt' Moran,46570,102101,3 +124112,Sam,13185,76242,2 +124113,Gudmund's Mother,206390,227406,10 +124114,Will,38303,222129,8 +124115,Adam,176,2128,6 +124116,Flammarions' Party Guest / Stephanie's Party Guest,31993,1186118,43 +124117,Sully,244316,349,3 +124118,Granny,26505,12021,1 +124119,Little Boy,24655,1394109,17 +124120,Attilio,43544,1173627,14 +124121,Hunky Actor,8414,205600,11 +124122,. Montgomery Brantley,268875,2930,7 +124123,Dr. J. Neuhartt,55152,113,1 +124124,Himself,211085,58022,1 +124125,The Boo,207402,1190287,4 +124126,Carl,34652,78309,6 +124127,Young Ben,11321,235547,5 +124128,Herself,26366,14,0 +124129,Baseball Player / Pitcher,367732,1537760,19 +124130,Alex,52039,557579,3 +124131,Mamadou,203715,566740,7 +124132,Sherrif Williams,301729,59116,6 +124133,Jim,382995,84233,1 +124134,Neil Klugman,42604,24318,0 +124135,Jarvis,97598,1371301,8 +124136,Master Wei Cang Long,46124,119645,8 +124137,Laura,36992,1485181,7 +124138,Sako's friend,46982,1537648,18 +124139,Dr. Masada,43113,18613,1 +124140,Carl,13551,12538,15 +124141,Cindy,358895,1720846,19 +124142,,37959,1194396,6 +124143,Leffe,30149,74699,8 +124144,Gauthier,64983,11216,4 +124145,Dr. Ulmer,356500,77324,11 +124146,Abigail Manet,33314,1169644,6 +124147,Stunt Youth,25941,1835516,24 +124148,Nun,16135,79526,31 +124149,Wolf J. Flywheel,26182,10798,0 +124150,Richi,378087,1283862,4 +124151,Eve,235260,1698783,18 +124152,Washington D.C. Pedestrian (uncredited),76203,1140085,71 +124153,Maj. Nelson Gray,330711,9880,2 +124154,Farley,21250,43125,10 +124155,Zwilling 1 – Antonia,75969,1902103,56 +124156,Sandy,44389,105647,0 +124157,Yakov (uncredited),184795,576467,10 +124158,Mrs. Daphne Hardy,46026,131431,4 +124159,Tom Cassidy,51947,139913,10 +124160,Newscaster (voice),13640,103219,11 +124161,,293412,8349,2 +124162,James,204553,17120,13 +124163,Katja,327389,44296,14 +124164,Ludwig ('The Singing Bone'),28367,29427,14 +124165,Rashid,207270,1518110,7 +124166,Maggiordomo,162056,556759,9 +124167,Road Runner (voice),74961,573544,0 +124168,,149868,1173677,5 +124169,Old Man,10362,1758894,25 +124170,Railroad Detective #1,33541,133342,31 +124171,Albee,3087,30279,13 +124172,Young Mother,145135,968185,14 +124173,Raymond (voice),393559,20082,4 +124174,Caitlin,192023,1172455,2 +124175,,57889,83544,4 +124176,Séverine,329724,983929,9 +124177,Kahveci Ali,452606,592094,13 +124178,Barbara Baxter Dimly,14123,231661,37 +124179,Bo-Kyung,376252,1374515,6 +124180,Stephanos,211059,1482520,4 +124181,Pickles,319986,1430949,5 +124182,Saloon Prostitute (uncredited),333484,1711524,45 +124183,,38099,119649,15 +124184,Fatima,19725,117557,12 +124185,Wescott,249021,968742,5 +124186,Cpl. Harold Lamar,28553,6717,6 +124187,Kelly,8270,43286,36 +124188,Pedro,183827,120705,5 +124189,Charvin,76198,21170,10 +124190,Driver (uncredited),49524,1259597,31 +124191,Amna,341007,1706334,2 +124192,Marta,20126,42407,7 +124193,John Esponja,80280,1061539,16 +124194,Inmate Thug,209112,1696234,116 +124195,La mère d'Angela,11227,1658517,8 +124196,"C.O. Lind, handlesmann",77922,1196408,6 +124197,Fireman,300187,1148696,10 +124198,Adolescente,98277,1849128,51 +124199,Yasmin (voice) (as Chloe Moretz),173205,56734,10 +124200,,15830,1106160,12 +124201,Enrico's Father,199985,1180542,3 +124202,Doo-chao,15067,141545,8 +124203,Andy Kasper,23855,28472,0 +124204,Old Man,39995,1089979,3 +124205,Aurelia Jungherz,61035,79449,7 +124206,Announcer,165718,1221102,7 +124207,Hoodlum,21449,108026,6 +124208,Woman 1,17111,1629447,18 +124209,,8776,1402407,8 +124210,Christie,334299,149873,8 +124211,Gala,159667,1159343,6 +124212,"Doc Langer, Veterinarian",37481,6805,11 +124213,Maximilienne de Poussy,63876,146195,7 +124214,Himself,123283,1077700,3 +124215,Lily Álvarez,431093,969412,7 +124216,Sergeant Chakhlov,64393,1112012,2 +124217,Bobby,226701,157136,10 +124218,Frank Brooks,31042,54681,0 +124219,Alex,12449,24558,5 +124220,Austin,62522,103944,6 +124221,Fitzsimmons,29212,89898,9 +124222,Duncan McKay,40466,124795,2 +124223,Pepper Potts (voice),169934,1254147,3 +124224,Slave Buyer (uncredited),76203,1438316,84 +124225,,11328,936477,28 +124226,Brion,38743,61259,11 +124227,Wilhelm Grimm,28367,14729,0 +124228,,13017,74688,4 +124229,Joe Turtle,19661,117696,14 +124230,Ringsider,75315,1041747,35 +124231,Edward Haddington,226354,80112,3 +124232,Poise Secretary,10096,1622612,37 +124233,Colonel Francis Chesney,72611,143725,1 +124234,Karl-Heinz,11930,70954,0 +124235,Judy Jetson (voice),17009,148120,3 +124236,Bowen,88075,148742,7 +124237,Ian,398891,225377,6 +124238,Lambert Woman,280092,1580200,22 +124239,Tuffy,10070,21858,5 +124240,Bus Driver,332806,1663953,6 +124241,Dr. Jakobs,7871,1294398,9 +124242,Acteur,382589,1859514,21 +124243,The Surgeon (uncredited),70753,13345,8 +124244,Haldene,85442,121360,9 +124245,Cayce Bridges,52395,12851,0 +124246,November,3539,17068,1 +124247,Goob,289232,1603858,9 +124248,Reza,83430,1129444,7 +124249,Il becchino,20414,128471,13 +124250,Father O'Neal,60965,232038,1 +124251,le Colonel,82098,229268,6 +124252,,410634,1685977,1 +124253,,87204,90605,4 +124254,Dwight Chapin,301348,55089,5 +124255,Fisherman of God,128767,106819,9 +124256,Granny,13600,7320,21 +124257,,322455,1420583,2 +124258,Bob the Broker,91070,1572052,22 +124259,Lucek,329550,553246,39 +124260,Bit Part (uncredited),22584,12354,10 +124261,Fraser,44877,1060136,11 +124262,Viejo Letrina,25376,1331812,25 +124263,Detective Greenspan,59738,3174,17 +124264,Cop #2 (as Joseph Bertot),313922,1732070,20 +124265,La Goulue,10910,67445,5 +124266,Mike,345489,1883905,9 +124267,Hotel Manager,163,1361236,23 +124268,Pascal,412202,1288730,3 +124269,Fader med skadat barn,60899,131493,16 +124270,Taylor,47739,115075,11 +124271,Waitress Brenda,9779,90723,31 +124272,,140231,76450,4 +124273,Theater Supervisor,334299,1508678,11 +124274,Lucio Malatesta,13437,59179,6 +124275,Jonathan,200727,1734963,16 +124276,WW2 Nazi Vampire Extra,246741,1780278,36 +124277,"Singer, Terry Angeleus",37084,116846,9 +124278,Milton,111470,1196675,12 +124279,Peaches,10748,66443,11 +124280,U.S. Lieutenant,37813,25099,5 +124281,Soldier,74,89375,25 +124282,Additional Voices,15213,164494,35 +124283,Farmhand,47508,78057,3 +124284,Raw Stank,43700,129779,7 +124285,Seníor,87229,139674,13 +124286,Ig Perrish,149509,10980,0 +124287,Evelyn,309024,138242,8 +124288,Himself - Piano,37038,116647,9 +124289,Anandi,87827,1271647,14 +124290,Lt. William McShane,50849,100955,6 +124291,Far out Man,25111,63208,0 +124292,Sheikh Harb,157843,1907169,31 +124293,Tin Soldier #2,238302,1209731,16 +124294,,441728,63608,5 +124295,,116312,228489,28 +124296,Charlie Brown (voice),227973,1393177,1 +124297,Roberta,73869,509344,5 +124298,King David,20304,21355,0 +124299,,297745,120638,2 +124300,Barfly,377170,121062,23 +124301,Mr. Keenan,156700,141956,11 +124302,Rusher of Din - Sleeper,36751,116114,11 +124303,Middle Eastern Cabbie,71670,62389,15 +124304,Dr. Matthew,66045,617,1 +124305,Entertainment Reporter,156597,1392152,17 +124306,God,27470,10798,12 +124307,Receptionist,280617,1522145,8 +124308,Jordan,187596,1009885,17 +124309,Leila Williams,341174,234982,4 +124310,Corny Collins Director,409447,1719718,20 +124311,Coast Guard Cutter: Coast Guard Spotter Lucas,10780,166393,12 +124312,Jury Member (uncredited),14615,128328,36 +124313,,254435,1365797,5 +124314,Stanley,24559,91979,13 +124315,,15464,52263,4 +124316,,36236,120027,24 +124317,Clark,7085,51891,9 +124318,Himself,383567,1226529,1 +124319,,295273,552084,12 +124320,Milton Jackson,14615,33178,10 +124321,,38164,1288760,10 +124322,,77673,38505,25 +124323,Bookkeeper (uncredited),1976,116661,32 +124324,Ádám,393134,1606637,3 +124325,Ian,176079,55494,3 +124326,Cynthia,49876,111323,4 +124327,Georgia,71503,563104,26 +124328,Dr. Web Spencer,118716,137389,2 +124329,Ream,48489,140596,0 +124330,Trent / Charmaine,38322,53336,1 +124331,Surfer,302666,93759,18 +124332,Alex,48153,27166,5 +124333,Person at Market,38031,119416,12 +124334,Skylar,261037,208296,3 +124335,Duke Weaselton (voice),269149,21088,6 +124336,Ed--Fingerprint Man,68976,30539,11 +124337,Father,209266,8198,1 +124338,Constable Briggs,28421,14690,25 +124339,Party Guest,259997,148268,32 +124340,Film Critic,104251,20830,4 +124341,"Rick, First Victim",58411,133441,7 +124342,Gina Deloach,43670,62760,7 +124343,Amanda Righetti,20126,51744,5 +124344,J'onn J'onzz / Martian Manhunter (voice),14011,15860,5 +124345,Drummer,205584,1272938,29 +124346,,108664,1044767,2 +124347,Timmy Mezzy,46830,66645,9 +124348,Herries Family Member,186227,34128,36 +124349,Tano,75162,1563609,18 +124350,JR,73424,1544188,8 +124351,Mr. Gao,220488,1174366,7 +124352,Nightclub patron,120357,121323,14 +124353,Mr. Harris,305932,1432555,10 +124354,Ricco,267931,10212,3 +124355,Platon,71322,101691,1 +124356,John,39053,4764,0 +124357,Mitsuko Kawai,12205,71642,1 +124358,Seki Sekiguchi,55192,68411,7 +124359,Chief Riptide,340275,1531593,24 +124360,Himself,39827,96410,4 +124361,Corky Withers / Fats (Voice),34193,4173,0 +124362,Johnny Petrie,183412,10135,1 +124363,Marie,32720,1383725,1 +124364,Amber,413337,1675348,7 +124365,Hercules / Attalus,211179,980234,0 +124366,Jamie,158739,16484,3 +124367,Pixie Teammate,120802,216899,22 +124368,Professor Tarakanov,26841,96519,5 +124369,Mr. McTavish,17236,81505,5 +124370,Emilia,335031,1451770,1 +124371,Op Center Staff,19995,1207265,48 +124372,Stazi,18070,95643,8 +124373,Dear John,42725,71562,4 +124374,Bandini,424488,1476972,35 +124375,,64204,1646174,11 +124376,City Editor Jim Cobb,186268,34423,12 +124377,Sicherheitsdienst Notalarm,140554,1707842,41 +124378,Lt. Aye,7555,52948,6 +124379,Tank (voice),15653,18,5 +124380,Grindle,51036,141195,8 +124381,,414827,1676370,2 +124382,Billy Bob 'Elly May' Clemson,27916,99251,10 +124383,Josh Garfield,12171,578939,5 +124384,Bottle Nose Man,24619,202830,25 +124385,Vladimir Filat,383535,173269,5 +124386,Eileen,354857,1251087,9 +124387,Aldanish,99819,1021740,4 +124388,,11196,1444547,31 +124389,,64942,240105,3 +124390,Charlotte,139463,3930,5 +124391,Stomper (voice),32202,34721,5 +124392,Race Spectator,134238,1141760,17 +124393,Marie,305455,1073338,2 +124394,Simon McCullough,9030,1118,3 +124395,Poker Friend,38031,119415,20 +124396,Beach Guy,77930,1784661,69 +124397,Eleanor,225044,85825,0 +124398,Fürst Theodor,374319,2344,3 +124399,Charlie,19551,146830,3 +124400,Dynamite Wong,85673,1144746,4 +124401,Femme bar,52369,1789824,15 +124402,Millie DeLeon,15156,57991,1 +124403,Cafe Owner,39493,561641,2 +124404,Tim,330115,540,7 +124405,Antoni Pochron,156627,209781,9 +124406,Gas Station Attendant,85564,8954,6 +124407,Ministry of Defence official,339362,1526639,19 +124408,Sélim,63665,237671,3 +124409,James Wagley,23843,2536,0 +124410,Coach Reynolds,286372,1352340,11 +124411,Policeman,22943,1599036,47 +124412,Bob Worley,95807,66554,4 +124413,Frank,193610,25129,3 +124414,Mort,103332,3131,4 +124415,Tripp,62046,18352,0 +124416,Mme Boudart,12089,317535,13 +124417,,38362,144614,8 +124418,Ferryman,31273,107877,24 +124419,Jodi,253283,92572,2 +124420,Choo Sang-bak,257331,572225,4 +124421,Myra Polsen,77641,12445,1 +124422,Burlington Potluck Guest,356752,1841541,65 +124423,Sven,9943,52105,4 +124424,Death Dreamer,47956,4965,3 +124425,Boeuf,78563,77909,5 +124426,Bus Driver / Jail Orator / Small Fag / Prospector / Mexican Official / President / Man in Elevator (voice),90110,161728,4 +124427,Hidir,197297,145352,0 +124428,Prinzessin Elisabeth,457,6250,0 +124429,Col,337958,1331901,7 +124430,Fai,2805,134728,5 +124431,Mark Fossie,125759,22108,1 +124432,,247218,120135,2 +124433,Peppino,31542,54793,6 +124434,Stanley Banks,22968,12147,0 +124435,Sheriff,298865,33341,11 +124436,Security Guard,167810,1793180,23 +124437,Tom,196255,224197,2 +124438,La collègue de Marie-Jo,12513,72594,7 +124439,Velvet,63877,81725,3 +124440,Troy,104108,1002642,4 +124441,La Gardienne,33704,220582,5 +124442,Lehrer Höfi,226693,2341,3 +124443,Deputy,30155,1082985,18 +124444,220 Tom,232672,20818,21 +124445,Sophia Thatcher,54660,44845,4 +124446,Courthouse Mob Protester,268920,1578720,65 +124447,Jamie,79120,1562478,2 +124448,Jensen - Sergeant at Police Desk,35895,134614,12 +124449,,353641,1364928,6 +124450,Ethan,98339,7002,1 +124451,Otis,31991,102412,2 +124452,Salim,83729,25409,1 +124453,,329227,1435932,5 +124454,Susan Allison,61348,33259,0 +124455,Evan / Subject #28,29151,17441,7 +124456,Commercial Director,153,1276607,12 +124457,,361183,1513955,1 +124458,D,157293,211790,4 +124459,Roberta (as Dakota Goldhor),58251,1628500,8 +124460,The President,3087,1384809,19 +124461,David Archer,64129,136787,7 +124462,Thomas,130507,980330,25 +124463,Investor,11024,1228374,11 +124464,Pecos,175386,14970,7 +124465,Sokovian Family,99861,1760891,57 +124466,,132705,1050186,0 +124467,,44104,20044,4 +124468,Commis. Stevens,3574,33007,8 +124469,Darla,21214,87282,3 +124470,Ged,9795,11023,0 +124471,Frank Hill,399894,2714,1 +124472,François Etcheveria,162374,23388,0 +124473,Young Bastian,362180,1790561,7 +124474,Minor Role,87060,10655,19 +124475,Consuelo,99004,37585,2 +124476,,46712,974732,3 +124477,Joe Ogden,250332,34333,52 +124478,,92132,47430,3 +124479,,81435,129501,4 +124480,Peter Tilson,16005,1189226,8 +124481,Judith Fellowes,14703,236465,6 +124482,Matt Morales,424488,72985,1 +124483,Jillian,109391,1204684,15 +124484,Veronica,277558,17140,0 +124485,,47200,1510925,1 +124486,Bartender,15022,1216151,30 +124487,Ma Mott,52362,97777,1 +124488,Mimic Bug #1,33005,23493,17 +124489,Trudy Epner,13196,8792,5 +124490,The dog,13653,1816298,13 +124491,Petch,15003,1044538,11 +124492,Apartment Manager,242631,114402,13 +124493,Vater,10311,32552,5 +124494,,23289,1443323,20 +124495,Mrs. Laura Winters,100528,95263,7 +124496,Head Porter,31993,96720,20 +124497,Acid Woman in Black,30492,35634,9 +124498,Police Station Witness,36373,43824,16 +124499,Suzie,94725,9572,3 +124500,Foy,188161,41686,4 +124501,Little John,403570,59116,7 +124502,Party Guest,132928,1208035,35 +124503,Iachimo,240745,569,3 +124504,Teacher,1942,121727,13 +124505,Nandini,161179,76233,1 +124506,Mel,262357,7134,6 +124507,Carmine,166262,120634,3 +124508,Annie Gallo,100063,105296,2 +124509,Tracy,182035,117646,5 +124510,Helen Lawson,3055,30124,6 +124511,Amigo de Carlos,187442,1171286,3 +124512,Zeke Thompson,22371,85139,2 +124513,Herself,90125,237537,2 +124514,Brother Sum,9470,1173223,8 +124515,Corporal Stoddard,173456,32925,15 +124516,Sam,97365,1123784,7 +124517,Henry (uncredited),36334,83149,14 +124518,Dick Barrymore,133382,8874,6 +124519,Ben Norell,267654,856,1 +124520,Ethan,339994,116088,0 +124521,Dancer (Red's),57201,1459004,45 +124522,Wendy,16996,86624,14 +124523,Auste's Friend,310568,1588823,12 +124524,Junior #1,540,1826583,19 +124525,,264036,587622,10 +124526,Padre Manolo,140,1603,2 +124527,Denny Mamoto,39061,1327728,10 +124528,Donal,43875,22606,19 +124529,Annie Gunn,361050,164930,0 +124530,Spinden,70667,17476,10 +124531,vodník,82716,1041329,3 +124532,Lucía,107073,1125451,0 +124533,Hanna Ben Moshe,7483,52684,1 +124534,Sgt. Tim Cole,14878,82125,4 +124535,John Marshall,254869,7447,3 +124536,Aunt Martha,42288,74874,2 +124537,Sheela,381645,1512542,16 +124538,Marc Dixon,246917,1528489,9 +124539,J.C. Anderson,112083,20368,5 +124540,Elevator Boy,171446,34269,6 +124541,Amnon,2734,27636,9 +124542,Patti Young,108391,32225,0 +124543,Mrs. Sanders,67375,8522,21 +124544,Himself,419192,1209543,3 +124545,Ms. Squibbles (voice),62211,11806,15 +124546,Maîtresse Gloria,382591,196544,13 +124547,Fernando (voice),328111,545087,15 +124548,Dinh,177335,128487,4 +124549,Benson (uncredited),52440,22603,13 +124550,Poreotics Dancer,243683,1398214,97 +124551,Elizabeth Tremayne,204800,51189,2 +124552,Gigi Alì,82083,232884,3 +124553,Frank Petersen,88005,8349,28 +124554,Bar Dude,425591,209513,10 +124555,"Lumura, Samurai in red",62762,933083,12 +124556,Holly,84305,18974,5 +124557,U.S. Embassy Clerk,333354,1685662,9 +124558,Ann,18283,1324199,11 +124559,First-Nighter,132928,121323,18 +124560,Fenner,18898,1176107,13 +124561,Kenan Evren,52150,145399,2 +124562,Reporter,109716,95311,50 +124563,Jimmy Ross (as Steven Flagg),29116,103070,17 +124564,Cummings,348389,10993,5 +124565,Woman with Champagne,203833,1130367,26 +124566,George,306952,1511969,26 +124567,Nurse Margie,242042,62072,16 +124568,Eiichi Kanamura,52728,1106078,3 +124569,Small Devil,8929,933495,3 +124570,,11328,1444509,58 +124571,Sam Fuller,375355,212686,0 +124572,Yan Lebu,62071,1178947,16 +124573,Lieutenant Besnard / Bandit Chief,132332,1469855,6 +124574,Marianne,44716,4460,1 +124575,Glory Eden,223497,30003,0 +124576,Ewa,293982,1583092,20 +124577,Larry,140846,164180,4 +124578,Charley,198001,27770,5 +124579,Bill Grayson,109258,2771,5 +124580,Mrs. Carol Edwards,181876,55156,0 +124581,Export manager,50761,21944,10 +124582,Brandy,120932,4966,3 +124583,Marie Kröyer,128900,1158267,1 +124584,Foggle/Guardian Angel,335970,9657,5 +124585,Franck,48601,144779,3 +124586,Rocker,75969,14637,61 +124587,,63215,1520909,28 +124588,Anna Karenina,96724,116,0 +124589,Diner Proprietor (uncredited),170234,1235622,11 +124590,,253395,79764,4 +124591,Paul Karlsson,145194,92403,3 +124592,Cecilia,22182,44649,7 +124593,Mr. Spottsford,46190,29719,5 +124594,Katharina Schneider,142712,22185,0 +124595,Sarah Ramsey,155724,104873,3 +124596,Mrs. Borowski,266285,1084896,16 +124597,Maggie,747,120931,12 +124598,Sr. Anísio,373397,1168435,6 +124599,Spencer Van Moot,48852,41274,4 +124600,Jean-Paul Dossena / il Nizzardo,95096,27647,2 +124601,Sorority Chick Becky,15476,202946,10 +124602,Gianna Pertinente,439998,1507975,8 +124603,Stephie,46020,1055499,7 +124604,Joyera,13495,25026,13 +124605,Davis,83995,10462,5 +124606,Moroccan Mother,29101,1275957,24 +124607,Walter,107073,1481470,4 +124608,giocatore di poker,41608,1587928,6 +124609,Phil,51736,1178305,7 +124610,Bosun,40804,79359,12 +124611,Sucharzewski,8332,14634,11 +124612,Security Guard,31821,574106,6 +124613,Mary,48339,17258,4 +124614,Türlich,9274,37034,0 +124615,Receptionist / Mrs. Beeks,15022,1149612,32 +124616,Bobby Hartmann,270007,8197,3 +124617,Marite,147287,1125709,1 +124618,Himself,374460,1444273,10 +124619,Swimming team (Perth's friends),292625,1758606,18 +124620,,204007,1186317,3 +124621,Dr. Lamm,24140,44474,4 +124622,Mrs. Edie Kerry,121636,97257,5 +124623,Duque,145481,51428,6 +124624,Lola,70074,235492,9 +124625,King Nebuchadnezzar,33201,10647,2 +124626,Stage Manager,11172,1781159,28 +124627,,255898,1265149,2 +124628,(voice),10857,95109,3 +124629,Old Woman,186759,1505306,35 +124630,Kamesennin Muten Roshi,39324,1452499,10 +124631,A clergyman,84772,97990,4 +124632,Dinner Guest,418437,154648,15 +124633,Farid,295314,143403,4 +124634,The Handsome Man,40978,135625,12 +124635,Angus Ferguson,249969,33022,3 +124636,Shopper #2 (as Alexandra Hale),20430,1489350,9 +124637,,168295,213519,11 +124638,Phil's Wife,87428,32905,10 +124639,Christian,13733,24501,3 +124640,Trevor McManus-Johnson,28535,74151,2 +124641,Ryan Taylor,442949,1762637,4 +124642,Tina (voice),366143,59450,5 +124643,Bob Havens,89720,77520,9 +124644,Dr. Munger,254575,3712,2 +124645,Ambrose,254193,67580,0 +124646,Deputy Sheriff (uncredited),109491,186922,41 +124647,Rain Tolk,318184,79759,2 +124648,H. Quinlan,257345,227577,13 +124649,Maruja,110001,24978,9 +124650,,236808,1336122,4 +124651,E.A. Smith,47739,5792,5 +124652,Orderly,16080,117490,7 +124653,Minor Role,32610,1423338,26 +124654,Buddy Heckum,319910,59238,6 +124655,Kadhir's Father,24448,91634,2 +124656,Himself - Titan Director,97724,1388674,25 +124657,Hannah Marris,14432,3127,2 +124658,,11328,1444487,35 +124659,Phil,345915,1754031,13 +124660,Schizo the Hotel Clerk,90120,61956,6 +124661,Mary,426253,26513,0 +124662,Janis,220724,1136865,9 +124663,Diamond Skinner,327749,12042,7 +124664,le chef des médécins,5590,37990,7 +124665,Eva Lorenz,202183,166,3 +124666,Padre di Diego,325690,8772,10 +124667,Slavik,62616,97369,3 +124668,Hardware Man (uncredited),14615,29961,87 +124669,Bernard Gardner,60420,93035,5 +124670,Carl Dribble's Attorney,103432,97147,25 +124671,Nora,325133,1496393,9 +124672,Kamdar,25499,593022,8 +124673,Smiling Man (voice) / Tommy (voice),169314,106443,1 +124674,Student in School of Life,24973,38238,16 +124675,Chobi,18143,74091,0 +124676,Narrator,123777,953191,0 +124677,Ed Chilton,44562,884,2 +124678,Bing,145244,1019917,4 +124679,Ignazio,44741,50003,1 +124680,Diana,15285,2165,3 +124681,Ken Tani,18214,99846,0 +124682,Gertrude,103332,516,3 +124683,Polo,327383,1061514,7 +124684,Josh,443319,1524501,5 +124685,Michael Clark,407448,77078,16 +124686,Anders,103578,24631,2 +124687,Sitton,111014,60907,3 +124688,James Rayburn,46190,12308,2 +124689,The Colored Singer,28293,953424,7 +124690,Sam,83965,149837,2 +124691,Mongul (voice),22855,34934,18 +124692,Ylva Sundkvist,76864,558207,3 +124693,Clare Abshire,24420,53714,1 +124694,Tara' s ex-boyfriend,413882,1758518,8 +124695,Cat Heart Eyes (voice),378236,1859939,32 +124696,Waylon Jennings,69,421,6 +124697,Ganesh,76788,580223,6 +124698,critique d'art émission TV,24170,22163,11 +124699,Lauren,30929,107329,6 +124700,Sexpot,181456,1370568,13 +124701,Truck Driver,86709,435837,6 +124702,Nuccio,44741,92827,8 +124703,Evalita,21030,821,0 +124704,Helen,99875,1021831,4 +124705,Nick Boxer,78339,583768,0 +124706,Ashley Gee,72140,207450,8 +124707,vääpeli Pippurinen,148435,1305366,5 +124708,Dabula Manzi,13823,75784,20 +124709,Military Brass,279096,1380096,12 +124710,Mrs. Preston,37481,117766,12 +124711,Ant,13960,94103,1 +124712,David Mann,408755,205335,1 +124713,Sgt. Burch,10055,4494,5 +124714,Harry Payne Bosterly,28001,33855,13 +124715,Stationmaster,9252,39864,17 +124716,Dr. Osborn,352733,1134282,7 +124717,Tom,31042,13786,7 +124718,Partygirl on Phone,28671,56383,6 +124719,Lady at Kiffmeyer's table in train dining car,45800,9072,8 +124720,Barry B. Benson,5559,16377,0 +124721,Myles,47410,138878,8 +124722,Teddy Big,47647,12466,4 +124723,Pete - Pilot,36089,24313,6 +124724,"Danny, a townsman",28775,32494,10 +124725,Pugh,50374,10775,7 +124726,Svabo,109587,110968,2 +124727,,284048,1117803,2 +124728,,99599,1609496,5 +124729,Francesca Conchiglia,4921,30379,1 +124730,,266558,1377014,4 +124731,Kathy,122192,66147,3 +124732,Zhang Ting,16687,1184079,8 +124733,Marine Molinari,184341,202930,13 +124734,Frate Francesco,131507,120637,0 +124735,Bar Baxter #2,13169,21131,7 +124736,Himself,15260,1121439,8 +124737,Elena,36249,37046,3 +124738,Sister Serpent,284564,42000,7 +124739,Barsad,17831,13819,8 +124740,Dennis,83284,936415,0 +124741,Charlie Waters,32044,827,1 +124742,Oscar,74674,148720,4 +124743,,218772,32673,2 +124744,Floris,129518,1089969,2 +124745,Gavin,128215,1202909,8 +124746,Chrissy,14505,1213127,7 +124747,Kryzhnev,88564,1467099,15 +124748,Michaels,51823,68559,6 +124749,Fats Delaney,75315,120178,52 +124750,Young College Guy,199415,1179656,11 +124751,Antara Vashisth/Tammana,21905,87773,1 +124752,Varrnez,37665,66252,13 +124753,Teri Hart,59722,162096,1 +124754,Lidy van Oosterom,53472,232636,4 +124755,Temperance,156711,1349725,18 +124756,Scarpa,34151,43773,3 +124757,Armando,38461,120545,14 +124758,Mabel,141868,89563,1 +124759,Lt. John Stevens,81110,89991,6 +124760,Turner,340187,1572583,2 +124761,Brad,93935,4689,3 +124762,Bartender,46806,185805,5 +124763,,31418,584049,11 +124764,,25936,368684,10 +124765,Abel Mularchy,16171,79868,17 +124766,Katana Chef,356752,1841511,32 +124767,Sam,213755,179763,3 +124768,Eduardo (voice),172385,1271,4 +124769,Marco Frazetti,122192,1152987,14 +124770,"Fernando ""Pino"" Solanas",132227,71353,0 +124771,Baron,43868,8729,6 +124772,Frank,124115,4119,13 +124773,Suni,94135,117540,15 +124774,Dominic Gray,257447,83367,7 +124775,Herself (archive footage),253337,28767,1 +124776,Ringsider,75315,1062527,25 +124777,Kanji Watanabe,3782,7453,0 +124778,Yoshio Onodera,83389,19590,6 +124779,Veena Hesse,293082,55958,3 +124780,Young Sam,107985,1200857,17 +124781,Reporter (voice),223551,1263643,10 +124782,FBI Agent Tom Hilary,14041,31028,1 +124783,,52560,100395,2 +124784,Max,26267,8924,2 +124785,Prime Minister's Bodyguard,177677,199139,68 +124786,Sasha's Mom (voice),260001,82653,17 +124787,Keith,211144,205053,6 +124788,Priya,32740,77234,2 +124789,Bob,38987,1075037,5 +124790,Realtor,277687,1356261,6 +124791,Perry White (voice),17074,10477,14 +124792,High Priest of Bel / Friend of the Musketeer,3059,13359,44 +124793,Kiza,15303,15265,3 +124794,Cedric „Ceddie” Errol - Lord Fauntleroy,38602,76546,0 +124795,Clive Davis,319096,6576,4 +124796,Menelik Bugatti,62397,1894265,13 +124797,Colby,40458,126422,2 +124798,Mackie (voice),123025,154106,17 +124799,Erich Pommer,11440,169,4 +124800,Travis / Victor Vanno,38962,92010,5 +124801,Franz,352890,1561254,22 +124802,Corrigan,139718,13871,28 +124803,Silvio,39958,96553,4 +124804,Mary's Friend,425774,1707957,64 +124805,ATL Twin,122081,1635134,9 +124806,Jacob,329010,212184,3 +124807,,142656,125009,11 +124808,Nangong Yan,11653,131931,7 +124809,Mickey,14669,18313,7 +124810,Thelma,189,1486488,49 +124811,Dale Harrison,268350,120050,2 +124812,Clinton,51250,91508,7 +124813,Erik (voice),65759,15274,3 +124814,Bakha Slick,440508,1846445,12 +124815,Electronics Vendor,4538,1797587,17 +124816,Dr. Baali,60807,589654,5 +124817,Crackhead,45610,1262132,22 +124818,Saki Vashtal,198993,122578,7 +124819,Smiling Man,81937,971464,4 +124820,Hakime Touyama,38625,120922,5 +124821,Fred / Scooby-Doo (voice),16390,15831,0 +124822,Efsun,332788,1255742,1 +124823,Detective France,35908,114929,10 +124824,Sam,294652,12210,3 +124825,(uncredited),43522,121097,14 +124826,Grandma,10070,12543,16 +124827,American commando,50849,5565,13 +124828,Little Jigme,259997,1302540,29 +124829,Sulochana,276935,85872,4 +124830,Sidney J. Munsinger,418772,1243,1 +124831,Theo,159514,45758,3 +124832,Cackling Witch (voice),10192,112821,26 +124833,Dr. Kramm,12206,79,10 +124834,Le détective,181456,70166,18 +124835,Albino Floating Man,331962,1706105,16 +124836,Nun,16135,79528,33 +124837,Esa Haanpää,173865,93566,1 +124838,,362617,932628,7 +124839,Kip,13280,19975,3 +124840,Jack Neilson,18530,557311,8 +124841,Chauffeur,118889,120793,34 +124842,Michal Wolodyjowski,31273,1145,6 +124843,Mariano Escobar,66447,69549,8 +124844,Bordello Reporter,87302,1680292,13 +124845,Baba Chamatkar,304134,995393,8 +124846,Joanna Merritt,63333,85896,1 +124847,Mavis,52850,45588,11 +124848,Picasso,94348,28657,3 +124849,Natalie,204384,1013973,5 +124850,captive surgeon,88564,929666,12 +124851,Zero Bridge Police,113038,1050503,9 +124852,Lawyer (uncredited),369524,1808630,42 +124853,Maximilian the Great,44626,1905,2 +124854,Narrator (voice),9514,1494315,13 +124855,Union Leader,103073,1032660,9 +124856,James Prestley,87516,7133,6 +124857,Teenager,31385,1298422,7 +124858,Faujdar Velankar,103073,691,2 +124859,Brigadista,2143,132915,37 +124860,Stoner Girl,45132,1334091,47 +124861,Court Attendant,43846,29267,17 +124862,Isabelle Carrington,5881,46277,9 +124863,Miss Simpson,25694,8232,23 +124864,1st Policeman,32577,1452674,19 +124865,IAB kid (uncredited),15022,1038425,42 +124866,Chantal,138502,233884,4 +124867,,86942,37251,4 +124868,Nick,401164,1253636,10 +124869,The Mauler (uncredited),43522,100796,60 +124870,Jamie's mum,508,1220981,28 +124871,Banker,4982,1232501,28 +124872,Piano Player,10918,134904,24 +124873,Troy,322266,174331,5 +124874,Bonnie Cisco,18998,1533326,17 +124875,Karol / Virgilus,153272,12647,1 +124876,Polo,18082,129460,7 +124877,The Mayor (voice),123025,29443,32 +124878,Doc Robinson,42473,18678,18 +124879,Sir Christopher Strong,37581,2923,1 +124880,Refugee (Uncredited),40998,234925,6 +124881,Young Man at Dance,167073,1544915,39 +124882,Reporter #1,312221,1746876,23 +124883,Convent Housekeeper,328589,72307,19 +124884,Kay Jordan,43849,123120,4 +124885,Psycho,338312,64416,3 +124886,Agnes,167882,153694,2 +124887,Phillip,336882,4457,2 +124888,Abel Morales,241239,25072,0 +124889,Jokko Barrat,96133,32673,0 +124890,Councilman #3,30385,76501,6 +124891,Oberin,269258,33041,7 +124892,Mario's Assistant,157898,1429732,27 +124893,Angel,41857,123631,9 +124894,Himself,324181,218022,3 +124895,Scary Guy,242033,1277017,7 +124896,Tolliver - Jack's Gang Member (uncredited),59882,117679,13 +124897,Raglin,250535,135184,18 +124898,Henryk Kwinto,56078,55971,0 +124899,,4344,1123126,10 +124900,Kalyani’s husband,169364,1846470,4 +124901,Ela mesmo,448763,1848654,18 +124902,Pete,98094,1499900,7 +124903,,88953,570293,10 +124904,Nightclub Attendee / Climax Player,315855,117051,38 +124905,,11196,1444546,29 +124906,The Runner (uncredited),3059,9096,89 +124907,Bryant,28280,38567,2 +124908,David Brown,19887,11851,4 +124909,Hot Servant,156711,1349739,34 +124910,,50028,2712,3 +124911,Third Go-Go Dancer,28170,1861054,12 +124912,Achille Fould,78318,120748,31 +124913,Domingos,54384,1112010,3 +124914,Nick Brady,17927,29020,1 +124915,Cameo Appearance,316654,1505913,10 +124916,,430973,1727209,11 +124917,Martin,4964,41089,7 +124918,o.A.,5646,43876,6 +124919,Tiberon,124054,29459,0 +124920,Prison Guard,29638,98909,11 +124921,Enzo,81522,27440,11 +124922,Rimma,51276,1638433,8 +124923,Gerald Cline,42045,29385,4 +124924,Joyce Gabriel,32021,166191,12 +124925,Alain,64481,85015,7 +124926,La Badie,43367,97284,6 +124927,Sergeant Collins,172908,153197,10 +124928,Wood / Ernesto (voice),57089,31549,14 +124929,Dr. Laurience,30640,2922,0 +124930,Muthuvel,372226,585397,6 +124931,Zombie (uncredited),82654,141746,34 +124932,Doc,362844,5892,4 +124933,Nevil Shed,9918,60507,11 +124934,French Waiter (uncredited),28571,120217,15 +124935,Raghuvir Singh,160261,232828,10 +124936,Lady Macbeth,115427,1086293,1 +124937,Cliente,2861,1895452,13 +124938,Ishibashi,352694,225730,4 +124939,Petey,188468,30005,6 +124940,,60199,1064,7 +124941,Mrs. Barber,66113,502,2 +124942,Tux Shop Employee,218778,112049,28 +124943,Johnson,30941,175017,26 +124944,Beau,398289,8891,1 +124945,Slave Girl,1271,1330776,74 +124946,Michèle Louvier,74822,9893,1 +124947,Inspector Ram,21571,43416,3 +124948,Diana the Temptress,205798,114882,5 +124949,Mr. Panky,90461,85897,13 +124950,Cathy,78522,52316,6 +124951,Sean,17622,7431,2 +124952,Warden Sugiyama,17467,1134729,7 +124953,Prine,207641,1071690,13 +124954,Creature,224944,1642137,12 +124955,"Chick, the 1st AD",340101,1225230,22 +124956,Puraj,291866,1321927,15 +124957,Motel Clerk,7547,52880,17 +124958,,255898,239680,0 +124959,Passenger (uncredited),47653,1415419,12 +124960,Soldier #1,318781,1694306,35 +124961,,19552,1275918,9 +124962,Esaminatore commissione vaticana,315319,120153,13 +124963,German Pilot (uncredited),297762,1651414,71 +124964,Army Captain,150712,99464,29 +124965,Perkins,38792,20053,13 +124966,Das Dienstmädchen,131366,49211,0 +124967,Alvin,113148,22226,1 +124968,Little Birdie (voice),81003,1453790,15 +124969,Jimmy Besant,85507,96068,4 +124970,Dinner Guest (uncredited),85350,1163308,78 +124971,The Mechanic,4538,23393,11 +124972,Officer,24094,97446,3 +124973,Sgt. Brown,217948,2651,8 +124974,Aedin,205939,1188324,2 +124975,Randy,385750,22224,6 +124976,Dahai,187022,15170,0 +124977,Boomer,52485,54564,4 +124978,Millburn,70981,28847,8 +124979,Erik,44680,30608,5 +124980,Chris Evert,271718,46986,29 +124981,Gabriel,72660,566884,2 +124982,Vocal Assist (voice),21449,9565,11 +124983,Monk Rau,17566,234365,3 +124984,Ida,250638,1674844,2 +124985,Fritz Bennecke,12412,4920,16 +124986,Max Connellan,62837,1205174,15 +124987,Senator Schumer,424488,1183804,52 +124988,Chet,385372,1094568,1 +124989,Amos Slade (voice),9948,34982,13 +124990,Carl Bartender,359412,139197,23 +124991,Legs McNeil,111479,169244,11 +124992,Gerda - the Chief Matron,81541,10464,9 +124993,Roberto,335053,112901,4 +124994,Buford Pusser,25473,10671,0 +124995,Martin,118889,83993,48 +124996,,14537,552644,16 +124997,Gloria,258751,234619,6 +124998,Philip Sussman,1723,18860,2 +124999,Mr. Smith,258251,53917,4 +125000,Sir Griswold,11839,29363,6 +125001,Count Bodinsky (uncredited),73430,124506,12 +125002,"Helle, Steffens mor",76312,47153,3 +125003,Wallflower at Jamboree,18446,102441,12 +125004,Sarah,64720,1907,13 +125005,Louis (voice),10198,110884,3 +125006,Candy,340275,1531590,21 +125007,Velma,24615,86314,2 +125008,,41967,177950,2 +125009,,153196,1283560,9 +125010,State Trooper,14589,29626,84 +125011,,181456,1158111,23 +125012,Robin McDougal,142106,29221,1 +125013,Youssouf,13728,47822,5 +125014,Tala,15264,89691,10 +125015,Sarah,13163,20751,1 +125016,The Rev. Hector Matthews,75363,140109,5 +125017,Albert Foster,153161,144381,36 +125018,Frère Gerolamo,42021,994194,6 +125019,,81560,1087690,6 +125020,Canadian national team captain,184155,10744,6 +125021,Little Girl,149509,1432087,20 +125022,Paige Tashman,69560,222492,11 +125023,Creative Executive,42231,1121299,11 +125024,Ellen Grady,36361,9283,3 +125025,Mandy,115276,1325961,9 +125026,,325039,1145979,2 +125027,Cow Farmer,55433,222378,11 +125028,Martin,223946,54296,6 +125029,Conducteur,295964,1445249,13 +125030,Dirt Bike Rider,312221,1746962,64 +125031,Olga,89921,219339,5 +125032,Heinie,122709,8496,4 +125033,Pastor's Son,188161,85419,32 +125034,Cranbourne,83015,1834956,32 +125035,Teddy,28071,99569,4 +125036,"Terry, Friendly Inmate",13058,1060136,25 +125037,Lynka,27270,105988,5 +125038,Intrepid Commander,14916,1430523,5 +125039,Machete,12279,11160,16 +125040,Ben's Father,14552,8654,5 +125041,Biggs,102668,197514,8 +125042,Mhen,43209,57208,6 +125043,Ray,68472,543530,0 +125044,,373397,560276,8 +125045,James Summers,29829,22093,3 +125046,,79216,86836,3 +125047,Ian Paisley,408616,9191,0 +125048,Nasri,24424,132104,0 +125049,Ryan (voice),9904,60227,6 +125050,Rev. Elmer Simon,115109,103068,15 +125051,Detective Chief Anderson,191465,19426,8 +125052,Militiaman Kristaps,257534,1297686,1 +125053,Nicki Moore,96936,10990,2 +125054,Chiu,20342,66717,2 +125055,Charlene,14207,58184,6 +125056,Red,64483,238534,6 +125057,Josie,93313,77160,9 +125058,Hausmeister (voice),12697,1118191,9 +125059,Mr. Arthur Graham,225244,13376,3 +125060,Carroll Rennard,4983,40056,1 +125061,Dr. Stephen Strange,284052,71580,0 +125062,Stanley Moon,18209,56819,1 +125063,Good Queen,59075,228792,9 +125064,American Tourist,262338,1379268,13 +125065,Receiving Marine #1,424488,1624227,22 +125066,,188640,1428333,18 +125067,,19552,1275930,21 +125068,Sea Pig,26688,96033,28 +125069,Chief Clark,173662,14001,9 +125070,Rageaud,5881,2412,2 +125071,Sunglasses Pilot,293167,1840498,29 +125072,Lord Thomas Belmont,79113,1162698,7 +125073,,273868,12520,2 +125074,Himself (Roastmaster),333103,55638,0 +125075,Homeless Man,329440,1777418,18 +125076,Beautiful Girl on bicycle,109391,962262,40 +125077,Tringham,62761,212578,12 +125078,Riccardo,21135,9768,2 +125079,Balmoral Head Ghillie,1165,200332,16 +125080,Larita Whittaker,16899,10860,0 +125081,The Visitor,56816,111217,0 +125082,Reporter (uncredited),31984,1845953,25 +125083,Coto,86126,932915,2 +125084,Cellist,62567,1027241,7 +125085,,83459,240598,7 +125086,Dr. S.J. Carew,153163,33033,9 +125087,Prisoner (uncredited),339403,1635157,54 +125088,Tony Gazotti,34977,32430,7 +125089,Baggage Man,14589,1023934,67 +125090,Tallulah / Princesa Luciana (Diálogos),13283,1497230,9 +125091,Tom Gilpin,10025,62076,18 +125092,El Caribe Party Patron #1,2001,204339,53 +125093,Beast Warrior,63706,992386,7 +125094,Butler,229297,1418983,18 +125095,Bob Taylor,146233,83854,10 +125096,Riley - Airplane Workman,47404,121066,35 +125097,Passerby as Train Moves,94182,96061,35 +125098,Joska (voice),20715,5587,0 +125099,Mathai,398786,1574335,11 +125100,Lee,85350,1467548,22 +125101,Shimbei Tanaka,37053,140102,2 +125102,Devlin,21041,32357,2 +125103,Dave Brown,75622,57755,0 +125104,L'autista,124202,69785,2 +125105,Inspector Gordon,133941,103055,11 +125106,Curtis' Secretary,1125,111513,21 +125107,Segismundo,27457,87833,1 +125108,Kosmetikerin,6076,42439,19 +125109,Himself,164558,1146050,2 +125110,Nightclub Guest,179066,1353645,43 +125111,Ruth C.,42188,116,2 +125112,Mary Forbes,74585,39554,0 +125113,Rexing Bull (voice),77887,8071,7 +125114,KC,10033,17401,19 +125115,Deema,18836,71871,2 +125116,Mitsuko Kajima,127372,19857,4 +125117,Kid in Window,2295,576173,12 +125118,Angelo Korvac (uncredited),36634,4960,22 +125119,Hiam Mashrawi (as Khawlah Haj),128154,1293282,5 +125120,Army Sergeant,80596,40952,45 +125121,First driver,59142,99939,6 +125122,Sid Weinberg - Casting Director,31913,157476,11 +125123,Research Assistant,14916,1844909,9 +125124,Linus Caldwell,298,1892,2 +125125,Bobby Jay Jones,79735,51519,2 +125126,Maria Pavlovna,26873,96512,3 +125127,Louise Ferrand,21145,2415,0 +125128,Manager,385261,96634,6 +125129,Brian,40252,29462,1 +125130,,198890,1298053,11 +125131,Himself,145154,89289,6 +125132,Director (1967),128216,1332941,34 +125133,Paul Landers,28761,10477,3 +125134,Steven Roper,128241,30433,4 +125135,Mrs. Mc Sween,183832,30159,6 +125136,CDC Spokesman,270654,51582,27 +125137,Heart,32654,70106,3 +125138,Penelope Bryte,43931,62760,3 +125139,Vikki,67748,1172846,19 +125140,Hi Holler,31509,1409203,13 +125141,,121173,1186654,2 +125142,Horseman - Famine,246655,1547887,17 +125143,Grave Robber,24973,8516,9 +125144,Rock Fan,108723,1446338,21 +125145,Garfield (voice),16460,15831,0 +125146,Scott Henderson,37992,83253,2 +125147,Nilo / Omar,83430,1129443,5 +125148,Fifer Pig,109298,112406,1 +125149,String's Mother,19116,7401,7 +125150,Om Batra,33146,72118,1 +125151,Daniel,121822,8210,0 +125152,SS-Brigadeführer Wilhelm Mohnke,613,1846,14 +125153,Detective Tashiro,12622,58158,13 +125154,"Pascal Amoretti, le puisatier",84875,239231,0 +125155,Bertha Mason,38684,21965,35 +125156,Jazzy Dee,284296,5726,7 +125157,Mrs. Graham,5172,235348,19 +125158,Ross Kingsley,99374,128621,0 +125159,Farouk,4893,21609,4 +125160,Ferrando,187442,1171285,2 +125161,Loomis,24749,2047,5 +125162,Ryuuta,14088,547986,2 +125163,Seance Man 1,27259,97442,19 +125164,Plant Manager,1724,1366359,32 +125165,Kelly,43935,568047,10 +125166,Mary MacDonald of Dunbrae,142150,73286,7 +125167,Daniel Newcombe,87516,129101,4 +125168,Halloween Dancer,11247,1775892,52 +125169,,92060,1448801,6 +125170,Chambers,48207,140030,3 +125171,Mrs. Peterson,21544,11831,6 +125172,Lt. Bill Horton,247691,12312,13 +125173,Tominachiro Kobayashi,46149,135133,5 +125174,Bookstore Teen,112161,110183,10 +125175,Ann Gilbreth,50549,82170,0 +125176,Emily Asher,109491,1059597,9 +125177,Zombie,310135,1389916,46 +125178,Yuka Kazama,45489,554502,16 +125179,Braddock Cornerman,921,1336359,23 +125180,Dana,260672,29711,4 +125181,Chantal,204765,82119,3 +125182,Splinter (voice),1273,10134,2 +125183,Journalist Konopke,386100,1771658,19 +125184,Mallabee,40826,7685,1 +125185,,366759,106786,4 +125186,Dr. Skye,347258,214979,8 +125187,Amos as a Child,184267,1170317,14 +125188,Jackie Kennedy,132363,96625,16 +125189,Warden,69,408,22 +125190,Player Eating Bonnie's Chicken,43812,1027243,65 +125191,Mary Kendall,106573,2491,1 +125192,Owen Jessop,155724,6074,5 +125193,Ralf Lieberman,72054,83257,0 +125194,Brigadiere Solmi,56068,1706002,9 +125195,Radu,52021,1566,0 +125196,,31067,1461,16 +125197,Dr. Nils Hellstrom,17875,6564,0 +125198,Alan,112161,41089,1 +125199,Dr. Andrew Nordell,22968,40623,9 +125200,Rod Mitchell,51481,57251,6 +125201,Restaurant Client,46930,137817,5 +125202,Monica,84727,7465,3 +125203,,38034,109270,5 +125204,Waitress,26518,1111812,3 +125205,,83491,929661,12 +125206,Brooke,77930,582816,3 +125207,Fight Spectator,28421,1550460,13 +125208,Yanire,335053,138716,17 +125209,Jane Melahat,307020,1166717,4 +125210,Razor,225283,1360152,4 +125211,Maisie,52358,34244,6 +125212,Demonstrator #2,326285,1812245,26 +125213,Kelly,445602,1590309,5 +125214,Indian Ambassador,30374,1746827,12 +125215,Soldier at Party,369885,1281195,20 +125216,Secretary,27114,121323,3 +125217,Store Manager,33729,13968,11 +125218,Boston,868,2614,15 +125219,Wilfried Tuche,369776,544685,6 +125220,Bob's Boss,18998,181028,15 +125221,Calvin,103332,17142,0 +125222,,47448,1796597,9 +125223,"Juliette, la femme du train",139159,584357,6 +125224,Ma Callahan,4111,34750,9 +125225,Mary Beth,19740,4038,1 +125226,Hamoun's Grandmother,43761,1339661,11 +125227,Joseph Bradley,97630,3497,5 +125228,Bradley,27085,96176,3 +125229,Ho Wing Keung,19528,74193,8 +125230,David,129966,47826,1 +125231,,31244,44800,2 +125232,Sonjas far,356326,1460369,9 +125233,Herself,245909,1281378,1 +125234,Rhonda - Detention Kid,2976,1752334,58 +125235,Lirin (voice),155765,1244459,10 +125236,Sam Chamberlain,107985,10882,5 +125237,Ospite agriturismo,325690,1495203,14 +125238,Damon,321160,31137,12 +125239,Cadet Thomas 'Tiger' Flaherty,110502,129999,3 +125240,Doctor,356191,136558,5 +125241,Masino,121998,1891817,9 +125242,Marie,124501,550552,0 +125243,ICE Leader,238589,102657,10 +125244,Commercial Actor #2,193893,1381720,66 +125245,District Attorney,250332,105810,8 +125246,W.S. 'Fluke' Holland,69,589756,17 +125247,West Indies Club Patron,14589,171111,63 +125248,Gussie,39219,89101,11 +125249,Miss Havisham,121674,1283,1 +125250,Pudgy / Masa / Sara,24675,60739,5 +125251,Molly,120802,1410658,28 +125252,,166207,1115304,12 +125253,Shirley Hirsch,270650,53647,2 +125254,Taxi Driver,278867,1138285,8 +125255,Linda,101852,39464,9 +125256,Ratso / Frank (voice),13517,1018015,1 +125257,Cha Myung-ho,375599,1557181,8 +125258,Tanya Kasabian,381737,1848803,16 +125259,,276123,1330010,6 +125260,,15830,1439650,18 +125261,Federico Hermil,4286,19615,6 +125262,Fortunato,162282,146464,2 +125263,Adam Erwin,69535,450366,6 +125264,Maria,274857,1815692,33 +125265,,267481,20239,13 +125266,Remingtons' Child,174594,1321407,3 +125267,Marcelo,70666,52583,0 +125268,Geißenpeter,9274,57100,4 +125269,Gwen Abbott,72823,34437,3 +125270,,180162,182610,6 +125271,Smalls Patron,4982,240799,68 +125272,Cinderella (Singing),14128,1483727,10 +125273,Giovanni,8882,72790,18 +125274,Himself,164558,1052108,4 +125275,She,43987,109646,1 +125276,Will Turner,285,114,1 +125277,Jimmy Wren,63186,12811,3 +125278,Sgt. Orville C. King,19968,14883,2 +125279,Lieutenant's Assistant 1,143169,1118629,3 +125280,Loulou,39415,16927,1 +125281,Larry,312221,1575991,22 +125282,Double D,20439,108438,8 +125283,13-year-old Brenner,257344,1496755,14 +125284,Riri,72898,1958,3 +125285,Hostage,359471,1509234,26 +125286,Himself,173467,1058,15 +125287,Emily Hargroves,236324,98272,2 +125288,Camper (uncredited),251227,1018804,22 +125289,Eva Delectorskaya,153397,39459,0 +125290,Rosie Redmond,173456,93698,11 +125291,Victor,106573,1175664,6 +125292,Melman,12631,47126,5 +125293,Bert Whalley,62441,58693,4 +125294,Poldo,66893,262301,3 +125295,Alodia,117869,144737,3 +125296,Holy Mother,80410,158587,4 +125297,Chastity,64678,1329537,11 +125298,Headwaiter at Garden Cabaret,264309,9096,9 +125299,Drew,288980,1321881,10 +125300,Dancer,118889,98047,59 +125301,General Phil Sheridan,78734,12022,8 +125302,Valentina,12432,129877,8 +125303,Eric,348320,1004851,21 +125304,Himself,324173,77075,10 +125305,André Hazes,327237,1388985,1 +125306,Ofelia,296626,1375335,6 +125307,Somerta,430365,1774304,8 +125308,James Thomas,373541,1215883,2 +125309,Pastor,73775,1167392,19 +125310,Carlo Portarena,265226,1524909,10 +125311,Marthe Delteuil,110160,86612,11 +125312,Ma King-Sang,365222,80374,3 +125313,Lord Freddie Fitzmore,322460,2964,6 +125314,,253533,565889,12 +125315,Steven Hamilton,22881,1039342,18 +125316,Himself,329243,19767,4 +125317,Zachary Beaulieu 6 à 8 ans,11421,69369,4 +125318,Reporter,256092,1338704,11 +125319,Receptionist,25053,80864,7 +125320,Ichabod,290825,11702,4 +125321,,353879,1495605,7 +125322,Mia Scarlett,19629,1546102,6 +125323,L'assistante médicale,63831,1689510,8 +125324,Marina,30127,55029,4 +125325,Ricky Gregg,119694,23626,3 +125326,Anthony,246011,52860,11 +125327,,116312,59136,17 +125328,Rosarinho,49974,1223496,2 +125329,Kalfaktor,1655,18402,3 +125330,Pharmacist,77381,1537342,7 +125331,L'infirmière,13312,19165,5 +125332,Sal Carvello,48949,1004,7 +125333,Zac Hobson,10176,64091,0 +125334,Parade Girl,325712,1526177,15 +125335,Madame Tutli-Putli,35253,114356,0 +125336,Marjorie,1259,83438,19 +125337,Il comandante della piazza di Verona,43195,1311119,7 +125338,Pendlebury,15935,61905,6 +125339,Craps Player,12594,153946,23 +125340,Joe's Girlfriend,21338,13443,15 +125341,Jakob,246655,1239510,43 +125342,Chifon,340275,1181354,51 +125343,Hauptmann Hoffmann,47536,29540,1 +125344,Ricky Coo,10521,59843,15 +125345,Li (voice),14411,1335620,8 +125346,Man at Nightclub Entrance,52437,1045763,41 +125347,Tee,44877,76242,1 +125348,Christian,3051,15196,3 +125349,Louis Brière,359413,58012,9 +125350,Schauspieler,198511,5266,6 +125351,Sgt. Phil O'Hara,44140,45232,2 +125352,,222517,1699953,22 +125353,Nymphet,29610,97621,21 +125354,Khaled,8932,931685,5 +125355,Tony Scott,242382,39608,0 +125356,Lou,228970,1495076,21 +125357,Allie,360603,65220,1 +125358,Bob Hornsby,44463,3246,2 +125359,Arumuga Chettiyar,76788,560038,7 +125360,Iza,82448,2343,3 +125361,Ines,58615,224209,6 +125362,Sarah Morgan,67328,51577,3 +125363,Bartender #2,304372,156978,37 +125364,Uri,50674,231657,8 +125365,Kelli,70586,558923,9 +125366,,175924,9257,4 +125367,Sgt. Lindstrom,39519,136549,9 +125368,,248747,80997,12 +125369,Gen. Yepanchina,63958,22590,9 +125370,La Génisse,45213,25166,5 +125371,Sgt. Lybarger,138486,115550,7 +125372,Nurse Parker,153161,33034,24 +125373,,148265,1305782,6 +125374,Ruby Mae Sayre,118900,83904,8 +125375,Beach Goer (uncredited),44943,1205881,36 +125376,Mary Jane Kelly,24486,12812,8 +125377,Female Scientest,279096,138970,9 +125378,Evelyn,133458,1097231,11 +125379,Captain Grant,42703,8726,15 +125380,Girl In Hospital,79329,586540,18 +125381,Caiera (voice),30675,89545,6 +125382,Benny Feely,1420,17025,11 +125383,Vanessa,190955,8691,4 +125384,McNulty,90406,37448,2 +125385,Maureen,6557,404,5 +125386,Michaela Cazaret,126927,25787,0 +125387,Typing Sportswriter (uncredited),13912,30010,20 +125388,Kung Hrothgar,2486,480,11 +125389,Mirko,79034,20442,1 +125390,Locker Guy,11247,1583282,36 +125391,Journalist,53870,99208,12 +125392,Vickie,65156,30618,0 +125393,Matt Goodgroome,104720,2642,11 +125394,First Agent,30941,1177754,25 +125395,Joseph,377287,70312,3 +125396,Himself,245394,34900,17 +125397,himself,82627,928343,5 +125398,Kurt Westin,401222,87442,6 +125399,Max Vandenburg,203833,224167,4 +125400,podnarednik,259728,133020,22 +125401,Seyyit,126560,145352,1 +125402,Lew - Mechanic Thug,250332,1550497,53 +125403,(uncredited),174946,1363817,6 +125404,Mari Koski,141971,108475,8 +125405,Uncle,321191,945428,5 +125406,Dream Vampire Girl #1,65416,184165,9 +125407,Toke,72054,112317,11 +125408,Clipper,53573,148510,4 +125409,Denise Martin,45726,103936,13 +125410,Roy Schaefer,128154,1011137,0 +125411,Frieza,39107,115305,4 +125412,Dr. White,12645,56930,7 +125413,Zahoor,113038,1056208,3 +125414,Pundit,214756,1598859,55 +125415,Stephen Byrne,30014,39799,0 +125416,Lance Hackett,27221,27752,6 +125417,Plant,44303,5953,1 +125418,Lenore,16320,36137,15 +125419,Marcie,147132,1043662,3 +125420,Himself,15258,545847,17 +125421,,199879,540,1 +125422,Fireman,53417,21306,6 +125423,Lady / Nurses / Dod,62967,236342,1 +125424,Santa (voice),312100,68812,4 +125425,Sr. Reynosa,37609,31394,13 +125426,Toa Tahu / Toa Onua / Grallock The Ash Bear (voice),19325,74363,4 +125427,Detective (uncredited),31773,30243,63 +125428,Barfly (uncredited),43880,97999,16 +125429,Doug,195022,1180702,10 +125430,Mr. Auerbach,3563,97065,22 +125431,Ligue de Angélica,299165,231170,10 +125432,Seymour,100770,14955,3 +125433,la collègue de Jacqueline,55424,54324,8 +125434,Jersey,62755,1507586,2 +125435,Martin,277237,30433,3 +125436,Leon Tingel,57326,98298,5 +125437,Gallagher,28297,30527,2 +125438,Manzel hloupé zeny,18352,55732,32 +125439,Thanatos,19371,57116,1 +125440,Takis,3701,33866,8 +125441,Sheriff (uncredited),213681,1771607,75 +125442,Captain Clegg,24150,1275650,37 +125443,Jennifer Aird,258480,1545500,13 +125444,ColoniaMan,318781,1694310,43 +125445,Zombie,246741,1780284,43 +125446,Ray,332286,131735,9 +125447,Chuck (as David Condon),174195,120211,9 +125448,Police Detective in Alley (uncredited),28668,34837,14 +125449,Jerome Ades,75969,1844,0 +125450,Diana,277778,1298306,9 +125451,Aunt Mimi (voice),172385,13299,11 +125452,Catherine Huang,206197,1285414,7 +125453,Meredith Quill,283995,209578,15 +125454,Kirk,27443,35322,8 +125455,Additional Voices (voice),130925,206777,18 +125456,Rumpelstiltskin / Priest / Krekraw Ogre (voice),10192,118489,8 +125457,Michel,690,10355,0 +125458,Insp. McIver,161602,97425,5 +125459,Bastien,27102,96968,4 +125460,Rosemarie Braddock,921,14890,8 +125461,le boucher,1568,5444,0 +125462,,322614,1421244,1 +125463,Himself (archive footage),184363,994271,2 +125464,Mikey,140814,37151,8 +125465,Captain Caleb Simpson,74911,32218,5 +125466,Hamlet,125705,55152,0 +125467,Remingtons' Child,174594,1380183,2 +125468,Yasuuri Daimao tencyo,81296,234365,3 +125469,Hidalla,61950,19774,1 +125470,Isis,205584,57830,11 +125471,,85656,132133,9 +125472,,100791,1018835,6 +125473,,285532,1350320,6 +125474,Barbara,149926,1796,4 +125475,Miss Thompson,37451,30191,12 +125476,,101376,1704677,1 +125477,Doris's Mother,320588,1446841,35 +125478,Anna Kemper,308174,55882,7 +125479,Saigal,192558,946248,3 +125480,Alice,139244,1110403,3 +125481,Sinclair,344906,137421,13 +125482,Munyurangabo,57654,1811546,1 +125483,Kruger,987,922,5 +125484,Bobby Shaw Carver,14983,77661,2 +125485,Roberto,83229,1544223,6 +125486,Sheriff Dexter Murray,100669,94766,9 +125487,Biagio,128657,131638,6 +125488,Mrs. Otto (as Else Jannsen),28115,99750,5 +125489,"""Kiełbasiany Dżolero""",382155,1636697,27 +125490,Megan Stewart,63197,236595,1 +125491,Gus Roth,41949,1924,1 +125492,Malloy's Lover,38681,49896,9 +125493,Zeitungsmann,1655,18409,10 +125494,Himself,27637,1516948,21 +125495,Yun-tae,25649,547971,2 +125496,Genesis Shareholder,365942,1548734,30 +125497,Vennad Käärid,321303,1418969,4 +125498,James,101766,138336,4 +125499,Kevin Dornwinkle,28340,100486,0 +125500,Jonathan,403330,82629,12 +125501,Organ Player,371645,1622075,15 +125502,Kyle Robertson,209244,128013,8 +125503,Jack,408616,1281,2 +125504,,37633,1501044,5 +125505,Teizaburo Sekiya,127372,236090,8 +125506,Alfred Pennyworth,142061,159572,15 +125507,Paul,102961,45501,1 +125508,Donovan's Assistant,29117,34423,9 +125509,,11421,1177308,5 +125510,Anton,87654,1477351,12 +125511,Malcolm McNair,77949,85071,16 +125512,Jolly Jumper (voice),35026,77928,26 +125513,"Ann Rogers (segment ""Creeping Vine"")",26811,106995,5 +125514,Stephen,40217,65758,8 +125515,Mr. Charles Tremayne,1938,2435,3 +125516,Slats,27966,117771,14 +125517,Lisa,13805,212225,13 +125518,(uncredited),43459,1031550,19 +125519,Chief Long Tianji,60568,576050,7 +125520,Dave,260947,1233494,9 +125521,Crystal,15285,52478,5 +125522,Bartholomew 'Bart' Winslow,236399,142206,4 +125523,Malcolm Adekanbi,308639,587506,0 +125524,Sister Eileen Menlo,68387,203639,28 +125525,Mailman,6023,104942,22 +125526,Prisoner,60269,187073,22 +125527,Sword Master's Assistant,616,1593814,32 +125528,Collins,1825,33017,8 +125529,Barka,109261,3591,10 +125530,Kolhii Announcer (voice),19325,106829,10 +125531,RAF Officer,369885,1076454,54 +125532,Bank Manager,198652,1179385,10 +125533,Professor,3520,32377,4 +125534,Mike,2195,23172,3 +125535,,145220,51331,66 +125536,Theater Director,280092,2127,13 +125537,Donatello / Additional Voices (voice),1273,19505,7 +125538,Léo,152989,1179885,22 +125539,Lucy,23048,119219,14 +125540,Coroner,104644,152711,7 +125541,Ballet Dancer,352890,1561247,15 +125542,Yee,10389,576415,43 +125543,Journalist,25626,18897,0 +125544,Lord Southcliff,175822,97217,6 +125545,Mrs. Vinton,65777,12728,4 +125546,Peggy Carrington (uncredited),13912,1145664,15 +125547,Himiko,86520,76976,0 +125548,Kim,7511,52783,3 +125549,Fedka,37710,1196960,22 +125550,Dr. Warren Pritchard,114872,14518,4 +125551,Oxana,121824,26723,4 +125552,Maisie,1589,17778,5 +125553,John Galagher,80343,1646007,5 +125554,Mrs. Gomes,31977,85607,6 +125555,Marcel,187602,1169488,9 +125556,Rico,311301,569349,2 +125557,une infirmière,26036,587875,7 +125558,Annie Newton,9785,59237,1 +125559,Blix,26574,95682,5 +125560,Danny Ormerod,297265,1759662,21 +125561,Officer Gannon,268920,1754446,55 +125562,Cole Clayborne,86543,20746,3 +125563,Bachan,90992,545488,3 +125564,Clayface / Basil Karlo (voice),411802,1082094,11 +125565,Ele mesmo,448763,5714,11 +125566,Prince John/ Hnup Wan ''Hunp'',29694,14501,15 +125567,Trampas,89330,148388,0 +125568,Alex Torini,383535,20176,4 +125569,Sis,46059,556062,7 +125570,Michele,54166,237340,7 +125571,Detective,28363,100582,9 +125572,Gary,30934,41961,8 +125573,Inspector Shih,88922,1140548,6 +125574,El Nacional,95134,1004060,4 +125575,Warden (voice),38055,18999,10 +125576,Sherry,22615,28744,4 +125577,1st Officer,23750,1272810,15 +125578,Yonkers Joe,14669,9046,0 +125579,Sandu,48116,1030524,2 +125580,David Byrne,111479,1544453,38 +125581,Capt. von Prum,30298,37777,4 +125582,Demented Mongol,9471,1585297,18 +125583,,332872,1738110,27 +125584,Lila Barton,99861,1405570,47 +125585,Sarah,365339,112327,3 +125586,Bruna,27703,31612,5 +125587,Helena,83481,82455,8 +125588,Mystery Man,246655,1604604,91 +125589,Norm,54396,938748,6 +125590,,359807,1101310,11 +125591,Bud Rogers,20361,35590,6 +125592,Quinn,232100,1267383,7 +125593,Rita Phipps,358076,46944,2 +125594,Stedman,52991,18803,1 +125595,Doktor Cemal,74879,459443,0 +125596,Herself - Ex-Girlfriend,15584,1051828,4 +125597,Safty (uncredited),76203,1438310,77 +125598,Jesus Christ,30973,31166,1 +125599,Miss Caroline,254065,3978,2 +125600,Mr. Fallon,2355,107770,18 +125601,Lyubov,57781,107667,1 +125602,Charlie,8292,76528,13 +125603,Kang Jin-Chul,376252,1256249,5 +125604,Luca,63989,40937,2 +125605,Mr. Snelling,82237,120463,6 +125606,Middle Ronnie,14923,1386337,4 +125607,Dr. Walter Rhodes,71041,38140,3 +125608,Liam Donovan,50875,117165,13 +125609,Himself,76494,968922,24 +125610,Mark,72642,138620,0 +125611,Lefty,31984,112977,5 +125612,"Julius de Koster, Jr.",37340,14503,4 +125613,Sorority Girl,285270,1367908,14 +125614,Larry,231082,930981,5 +125615,,413806,240540,3 +125616,,72614,1165647,6 +125617,Niobe,297762,1813935,26 +125618,Mrs. Goldfarb,414977,60142,14 +125619,Dimitri,91480,83476,2 +125620,Pueblerina (uncredited),198795,30308,29 +125621,Moomin,293271,55469,0 +125622,Thompson,290999,1361562,12 +125623,Seo,73306,13256,9 +125624,Woman at Day Centre,328589,190516,24 +125625,Guitar Man,224282,157859,9 +125626,Princess Hwawan,315439,93997,3 +125627,,41187,1888573,8 +125628,Man at Newsstand,104427,100589,23 +125629,Pierre Del Rio,240832,2960,3 +125630,The Senator,27470,4353,7 +125631,Hunter,82990,141382,12 +125632,Billy,98025,1007636,4 +125633,Jack Scott,56709,28238,0 +125634,Arcade Ticket Taker,293660,1683942,18 +125635,Eugenio Normale,439998,1258076,2 +125636,Matt Owen,135713,1103653,3 +125637,Raul,29299,183005,6 +125638,School Cop,16996,131821,26 +125639,Sir Ravenhurst,11839,8727,2 +125640,German Delegate,15371,142706,14 +125641,Holmes,41234,13968,18 +125642,,73208,127261,10 +125643,Lynched Man,239566,1457261,40 +125644,Cab Driver,72096,1139747,30 +125645,,10754,66472,11 +125646,Mr. Hugh Shanway,249264,89982,5 +125647,Cavalry Sergeant,11509,4080,8 +125648,Carol Henley,152393,1633210,1 +125649,Glader,198663,1415431,31 +125650,Raoul,44522,26890,4 +125651,John Grant,26405,131507,0 +125652,College Principal,63825,1614392,12 +125653,Owen Shaw,337339,114019,9 +125654,Buzz Mitchell,58467,1704720,13 +125655,Francesco,235208,124628,5 +125656,TV Weatherman,13279,1668476,16 +125657,,31462,129317,28 +125658,Telephone Repairman (uncredited),28668,95274,7 +125659,Herb Sunderson,9890,19208,8 +125660,Speedy's Freundin,9803,564804,29 +125661,Harry,8008,53574,2 +125662,Agent Kathryn Smith,34729,1689910,8 +125663,Vishveshwara Rao,372226,1289211,7 +125664,Ida Frandsen,55589,222682,1 +125665,Kar-Ling,37702,12672,1 +125666,Silvia,182415,1165383,1 +125667,Shang,177335,228,1 +125668,Rothaarige Frau,613,1474678,56 +125669,Liu Dong,16074,79156,2 +125670,Achille Papin,11832,1429989,6 +125671,padre Carlo,58615,1876320,15 +125672,Telegrapher,56154,113516,20 +125673,Mob Leader,147829,110204,19 +125674,King's Servant,80410,1468203,18 +125675,Master Shi Chen Chung,108665,1166561,8 +125676,,119172,128481,1 +125677,Vic Rood,26204,13399,8 +125678,Dr. Powers,29872,33033,7 +125679,Bob Younger,42706,5010,4 +125680,Realtor (uncredited),103938,1186117,10 +125681,Londinium Fighter (uncredited),274857,1030276,55 +125682,Tina,13836,53261,5 +125683,Randy,186606,1750935,22 +125684,TV Talk Show Host,79869,162182,2 +125685,Kahe Sasaya,43364,122430,8 +125686,Lloyd Hurley,93511,37204,6 +125687,Melissa,317114,290112,7 +125688,Marta Proietti,42441,1178213,9 +125689,Dennis,86838,18472,12 +125690,"John, l'Anglais",89287,937003,3 +125691,Schoolgirl in Orphanage (uncredited),47758,2935,11 +125692,Will Coffey,31078,115730,4 +125693,Simpson,30374,151623,11 +125694,Amber,244316,1184434,7 +125695,Soldier,150712,117046,26 +125696,Pooneh Baraheri,15577,164945,12 +125697,Hadras,285,429401,27 +125698,Connie Varrett,91333,275597,12 +125699,Far,15838,119412,6 +125700,Veri,44527,223478,4 +125701,Vitantonio,79836,1015739,8 +125702,Nick,309879,1264237,4 +125703,Laura Stanhope,91181,77158,0 +125704,Gus Panas,16232,7004,5 +125705,Stage Manager at Benefit,18651,67369,29 +125706,Party Guest,288521,1146958,16 +125707,Additional Alien Dialect (voice),140607,1743678,83 +125708,Zach Little,32716,5465,7 +125709,Mabel's Husband,53387,13848,0 +125710,Dr. Grant,189197,13525,14 +125711,Jules,382501,1295193,5 +125712,Martha,359412,1820494,14 +125713,Geisha,143946,1200886,6 +125714,Debutante,3059,1119768,28 +125715,Holm,277968,13514,8 +125716,Steinmann,259830,221981,3 +125717,Milan,10484,24464,6 +125718,Louis Hayward,139718,39799,21 +125719,Kelsey,384682,1376425,21 +125720,Himself,111332,1071680,14 +125721,Director Hirata,134350,1098600,4 +125722,Edgar,43817,131561,6 +125723,Deputy Haywire,134238,557086,37 +125724,Himself,151870,1351085,7 +125725,Sarah Palmer,14435,5915,1 +125726,van der Woude,163,1924,15 +125727,Captain Diaz,26861,57991,4 +125728,Parma's Mother,103640,956782,6 +125729,Barry Webb,333663,78890,11 +125730,Bomb Squad Man,195269,158560,14 +125731,Cassandra,37534,20767,3 +125732,,379959,1416383,1 +125733,Joe Montague,75564,932663,0 +125734,Letty Ortiz,337339,17647,3 +125735,Natasha,122928,1064568,10 +125736,Waitress,44287,203731,9 +125737,Chanting War Boy / Red Flare Warrior,76341,1734178,31 +125738,Gus,121822,206905,5 +125739,,461088,1704033,3 +125740,Himself,125736,1271003,12 +125741,,362617,1261491,3 +125742,Ma Braden,1420,17026,12 +125743,The Baker,24272,133499,6 +125744,Himself,61487,95484,0 +125745,Åsa,140818,1042521,9 +125746,Julian Marquet,267793,54500,7 +125747,Dead Civilian (uncredited),44943,1205889,45 +125748,Colin,12449,119201,9 +125749,Jim Wyatt,4441,37286,3 +125750,Meredith,238593,1325714,2 +125751,Judge,21070,579539,11 +125752,,356156,1486221,7 +125753,Soledad,98203,325709,6 +125754,,415358,35780,1 +125755,Janet,232462,136298,4 +125756,,361380,569211,2 +125757,Elroy,126927,85935,2 +125758,Chupadogra (voice),38579,16431,9 +125759,Paul Maddens,49522,7060,0 +125760,Takashi,13391,81243,8 +125761,Giuseppe,64965,55912,1 +125762,Sawyer,401164,17443,1 +125763,Man,134238,1660482,48 +125764,,315057,234125,2 +125765,Alex,308024,36801,1 +125766,,255160,1898243,30 +125767,,172011,1265676,1 +125768,Hotel Manager,108222,95729,20 +125769,Tony Flagg,29872,30181,0 +125770,Larry,107499,20503,5 +125771,Young Ball Player,18722,553435,32 +125772,Police Commissioner Mahesh Jadhav,304134,1172858,7 +125773,Dewart,64720,74242,3 +125774,C.I.A. Director,97630,4691,15 +125775,Bandit (uncredited),289720,1358974,15 +125776,Dale,122930,5576,2 +125777,Djoeke,19398,1469187,16 +125778,Lt. Caroline Bradley,97632,168931,2 +125779,Maurice / Roger,54491,88948,12 +125780,Otto,781,3702,7 +125781,Jake,26505,116088,2 +125782,,125264,1200886,19 +125783,Jack,237584,25072,1 +125784,Train Steward,41597,93578,34 +125785,Fu Manchu,240745,1378544,17 +125786,Abdul,189,1393520,30 +125787,Regina,11056,10690,0 +125788,Agent Owen Sacker,117905,8894,3 +125789,Reporter (uncredited),1726,1209723,77 +125790,Bartholomew Van Steed,46563,129676,5 +125791,Kane,21041,48968,3 +125792,,125229,83203,7 +125793,Kunde Buchhandlung,61035,1170030,25 +125794,Tony,96132,1195189,11 +125795,Butcher,97024,1190485,9 +125796,Joy (voice),21250,35224,8 +125797,Gangster in Car,26376,84639,26 +125798,Sally Brown (voice),227973,1393182,10 +125799,Willow (voice),153518,1529997,18 +125800,Officer Jacobi,987,14834,11 +125801,Helen Hampton (uncredited),52440,90377,23 +125802,Welsh Teacher,9298,143892,11 +125803,,28746,1203930,7 +125804,Kaufmann 1,266044,548167,24 +125805,Alexander,8948,18725,0 +125806,Jansson,41764,403172,22 +125807,Yvonne,77338,19370,3 +125808,Lenny,43022,2647,9 +125809,Michelle,7515,52853,12 +125810,Karl Eisendorf,3563,179508,31 +125811,Duryodhan,118809,1046675,2 +125812,Paulette,135652,220013,9 +125813,Commander Drew,288668,158126,8 +125814,Cousin Randy (voice),10198,7885,21 +125815,Worm,17796,1196133,13 +125816,Peter Jackson,10004,9976,5 +125817,Valya,38332,120241,4 +125818,la vieille fermière,5590,25842,9 +125819,Tubby Wadlow,16410,1607217,16 +125820,Milbane,175171,30280,14 +125821,Jennifer,17927,214695,18 +125822,Mãe de Paulo Ricardo,296288,1475557,6 +125823,Asim Noyan,30634,99314,1 +125824,Sebastian,311093,76996,3 +125825,Raji Reddy,34763,585404,4 +125826,Steve Hill,56558,1154468,23 +125827,Lita Huntley (as Alvis Maben),38962,121728,7 +125828,Chernobyl Historian,319092,1890101,4 +125829,Commissario Auricchio,41610,80230,1 +125830,Ornshaw,48207,140029,2 +125831,Martindale,83995,69764,6 +125832,Amnesiac,58244,78687,30 +125833,Nurse Hendricks,17209,81462,4 +125834,The Subjects Banjo,15810,933016,7 +125835,Kathy,140846,931876,10 +125836,Professor Heliotrope,217057,59234,11 +125837,Luther,11248,14465,6 +125838,Jenny,79816,1518,2 +125839,Princess Aida,84831,653,3 +125840,jako Hawrylukowa,406449,136640,26 +125841,Dr. Jean-Marie Beauchemin,69765,557089,2 +125842,Nobile,50196,33549,11 +125843,Beast Warrior,63706,1044954,12 +125844,Kommissar Seiler,8332,5233,2 +125845,Detective (uncredited),43522,1239954,76 +125846,New Year's Eve Stranger,293863,1261371,20 +125847,Russ Irwin,4551,1680745,37 +125848,Quinoga,18447,1212967,10 +125849,Mikulski,36807,14721,6 +125850,Cardinal Mazarini,64046,47918,6 +125851,Cab Driver,28090,1039429,7 +125852,Tom,22396,1681295,21 +125853,Charlie,116463,820,0 +125854,Jackie Nolan,339312,1464974,5 +125855,Girl,98368,1028463,3 +125856,Ranger Fowler,44682,217889,9 +125857,Kenny,14750,144304,4 +125858,Simone,197696,14061,1 +125859,baarimestari Lehikoinen,442752,935863,32 +125860,Lord Airlie,1165,994133,9 +125861,Cai Mao,12289,1623407,25 +125862,Zaya,205584,1278500,3 +125863,Waiter,19719,85117,21 +125864,Flatty,88811,25472,2 +125865,Ethan,4413,37154,12 +125866,Carl Swanson,13090,4728,9 +125867,Admiral Fournet,354859,1003,15 +125868,Mrs. Beakley,10837,90301,7 +125869,Line Butter,45132,98653,33 +125870,Miss Cordelia Channing,54570,131726,2 +125871,,52188,145521,2 +125872,Charlotte Buckwald,411741,449513,9 +125873,David Raymond,339527,42191,6 +125874,Dwight Eisenhower,88794,113231,7 +125875,Smoove Move (voice),77950,19767,6 +125876,Doctor,20174,85773,5 +125877,Fujiwara no Tadako,21325,149404,0 +125878,Himself,23319,112884,8 +125879,Joan,345915,1046202,23 +125880,herself,57809,139454,3 +125881,Phillip,73262,111420,1 +125882,Maria,9956,28779,12 +125883,,68192,125855,0 +125884,Mailman,118900,117036,16 +125885,Black Youth 2,39517,1544524,1 +125886,,244783,2453,2 +125887,,19725,167449,16 +125888,Naso,1721,103617,6 +125889,Mari,339944,1566007,1 +125890,Diana's Sister,31509,1409194,8 +125891,El Fugitivo,353713,1033027,2 +125892,Der Zauberer,5393,15903,0 +125893,Althea,340275,1531594,26 +125894,Narrator,51120,943044,2 +125895,Dr. Scalambri,47096,27442,6 +125896,Pollyanna,136386,130714,12 +125897,,170998,35756,6 +125898,Makis,215658,1223383,2 +125899,Sophie,367732,15423,2 +125900,Mountie,3580,1172813,28 +125901,,254689,135483,2 +125902,Chinese Man I,10077,62937,15 +125903,Farrell,250332,1201662,68 +125904,Bartender,28553,58058,8 +125905,,43773,1193561,4 +125906,Old Hager,43473,89264,1 +125907,Rajko,57419,38000,10 +125908,Ensemble,18506,1027491,9 +125909,Louis Gaines,132363,35013,23 +125910,Humphries / Magic Mirror (voice),809,12098,19 +125911,Ben Johnson,10053,9048,4 +125912,Tanaka,62762,124777,9 +125913,Hard Hat Dandy,16131,79421,9 +125914,Irina,27409,55670,3 +125915,Sara,167956,1169324,3 +125916,Mildred 'Mibs' Goodhue,84397,11165,0 +125917,Lt. Gold,9959,54246,7 +125918,Claudio,21752,87833,0 +125919,Wendy Wyckham,10596,65801,14 +125920,"Mabel, a 'Fancy Woman'",98536,104800,10 +125921,Marina,85544,1211665,0 +125922,Jackie Blue,291336,1362169,1 +125923,Dancer,1271,190088,61 +125924,Bill Williams,64972,74036,0 +125925,Chico,129851,1090554,5 +125926,Motel Receptionist,42634,15413,8 +125927,(voice),211387,1108,5 +125928,Smitty,74430,6905,2 +125929,Inmate 093,94365,1469930,9 +125930,Rob,82687,3492,3 +125931,Luca,23619,313610,5 +125932,Marco Cirulli,68063,101556,3 +125933,Lazerus,14452,105902,3 +125934,Alejo,359025,87265,3 +125935,Attorney Craig Carlson,46421,7685,1 +125936,Himself,27621,86303,10 +125937,Kommissar Lukas,54524,506932,4 +125938,Delia,55177,5481,6 +125939,Jason 'Woods' Valley,4613,57755,2 +125940,Colleen,65066,1717860,5 +125941,Policeman,26376,1432396,53 +125942,Helicopter Pilot,59965,1669797,28 +125943,Nuran Ocak,30634,59754,3 +125944,Clip from 'Hit the Deck' (archive footage),33740,1093717,13 +125945,Koleniko,58,11283,19 +125946,"Glasha, cleaner",75262,588108,20 +125947,Backstage Man,132928,34818,34 +125948,Philotas,1966,79505,27 +125949,Bus Driver Betty Borman,11351,43859,15 +125950,Frances Arbuthnot,111582,143670,7 +125951,Shannon,82520,131871,6 +125952,Jail Receptionist,245706,150212,21 +125953,Bess' Mother,183662,18706,5 +125954,Mr. Smerconish,429238,14103,5 +125955,Cal Spangler,60662,7219,2 +125956,Constable Green,32932,15578,7 +125957,Bud Klieg,284537,24435,17 +125958,Mary Blalock,20544,26467,2 +125959,Fernández,36785,588881,0 +125960,Himself,156908,1138121,2 +125961,Marty Klinkenberg,128215,1825795,16 +125962,Stariji policajac,259690,1303098,14 +125963,Anthony,241742,95988,6 +125964,Lauren,305932,1585171,16 +125965,The Little Fat Boy (uncredited),134475,1450278,15 +125966,Mercer,125490,1225057,32 +125967,Tommy,310888,1438278,5 +125968,Adam's Mother,42819,132549,1 +125969,Pavel,1691,37018,11 +125970,Himself,71381,86726,10 +125971,Samad,24756,1132667,11 +125972,Iris Dupin,260312,4885,0 +125973,Big man from brigade,49577,1687764,3 +125974,Male Cop,49524,9466,26 +125975,Moritz,279179,4795,1 +125976,Davina Gilmore,40218,183147,4 +125977,The Photographer,37633,236947,7 +125978,Ms. K,24619,6450,14 +125979,Dr. Vera Kent,286971,20275,9 +125980,Herself,173467,489,19 +125981,Bojan,76163,67246,16 +125982,Sus,18908,32683,0 +125983,Clive Messerman,18208,118076,3 +125984,Gunnar,51141,131493,12 +125985,National Guardsman (uncredited),245703,1158069,34 +125986,Roy,356752,32029,6 +125987,Apartment Tenant,45013,1818029,43 +125988,Himself,116327,8331,8 +125989,Serge,220820,62715,5 +125990,Colleen Collette / Girl Clerk #2,246403,1459885,7 +125991,L'officier de police,375355,127005,5 +125992,Master Zhong Jian Jun,46124,239091,1 +125993,The Doctor,53766,132320,5 +125994,Le narrateur,31670,133140,3 +125995,Himself,72105,4139,23 +125996,Dr. Reich,144792,116187,17 +125997,Cheery Lab Tech,17332,20089,10 +125998,Jacky,15457,22306,2 +125999,Michael Gewa,437838,1385587,1 +126000,Willy Corduran,37628,1090794,6 +126001,Martinez,85648,1629332,5 +126002,Neenah,50674,575928,7 +126003,Anna,1912,35534,4 +126004,Cowboy Boss,167956,1169326,5 +126005,Simone Fortini,267557,47828,2 +126006,Maria Cecconi,43372,1011225,2 +126007,,64204,14725,5 +126008,Poliskollegan / The Police Colleague,158900,92418,5 +126009,Mailman,242631,34209,19 +126010,Vivian's Sister,10075,62890,15 +126011,Taylor Anthony,6933,7351,2 +126012,Louise,17985,40421,5 +126013,Miss Marsh,91583,189377,9 +126014,Ling Ka Fai,69619,1147121,3 +126015,Ripper (as Pasqualino Salemme),14029,99545,15 +126016,Himself,326255,1633754,2 +126017,Airline Passenger,52122,5738,10 +126018,Godfried,345438,938392,9 +126019,Ann Colby,78734,120758,6 +126020,Queen Milena,53230,8834,3 +126021,Henry Strangler,38031,1125,5 +126022,German Lady #1,4538,1797586,15 +126023,Helen,360606,61182,3 +126024,Alim,55177,16756,0 +126025,MOB Dancer,243683,1398069,48 +126026,Lois Lane,126712,243805,1 +126027,Woman Neighbor's Husband,26955,96664,9 +126028,Hannagan,37954,83801,6 +126029,Swipes McGurk,147876,55278,3 +126030,Leona Fox,345003,1478276,9 +126031,Tigellinus,96951,1353813,4 +126032,Drax the Destroyer,283995,543530,2 +126033,Mechanic,185564,48136,9 +126034,Mayor Salizar,5965,46929,17 +126035,Mother in 'Our American Cousin',109716,1176930,25 +126036,Fire Chief Albert Risley,140648,4958,6 +126037,Herluf C,5177,1566,6 +126038,Tenshinhan,126963,122726,10 +126039,Grand Duke Peter,53853,14868,2 +126040,Townsperson,151062,102395,7 +126041,Agnes,20372,116378,1 +126042,Prof Flynn,18548,20766,3 +126043,Kevin,12432,129878,9 +126044,Jeff,11547,84763,4 +126045,Funda,49828,89760,1 +126046,Le médecin,12249,71937,6 +126047,Nina,10458,5511,1 +126048,Norma,273610,304282,7 +126049,Detective Hernandez,253154,1018947,9 +126050,Mutter Voss,156954,1146495,6 +126051,Antigoni,47683,1750910,2 +126052,Mrs. Skinner,84295,930690,5 +126053,Phil,10096,20754,24 +126054,Pim,342472,1112038,11 +126055,Master Lee,365222,1164789,14 +126056,,175739,1016054,5 +126057,Grandmother,110980,34749,8 +126058,,58611,228153,21 +126059,Beatrice,201085,1845453,16 +126060,Uncle Henry Jones,183827,17753,1 +126061,Trooper Zblocki,286532,1198148,15 +126062,Homme de cour,151826,1172640,11 +126063,Himself,26326,1112128,13 +126064,Nurse,29290,141093,12 +126065,Stepan Emelyanovich (voice),81604,557269,2 +126066,Dr. Weiss,177203,7030,7 +126067,Sprinkles,118677,56903,2 +126068,Jill Johnson,10053,38670,0 +126069,Danny Doherty,242310,157015,11 +126070,Ray,86828,145997,3 +126071,Melvin B. Tolson,14047,5292,0 +126072,Red Bamboo Naval Officer,3115,227622,11 +126073,Herself,13092,9030,9 +126074,Jungle Bob,19766,85159,10 +126075,Granny O'Flaherty,82191,24815,2 +126076,Deputy Sheriff Jim Kane,30708,119855,20 +126077,Diener der Frau von Massow,266044,1822970,20 +126078,Stiefmutter,263260,1138626,2 +126079,Himself,81435,1357162,7 +126080,Young Dwight,24810,1818102,15 +126081,Rubber Face,31548,1070703,10 +126082,Officer Jeff,15189,56758,13 +126083,Gene Hausler (as Aldo DaRe),197785,12022,2 +126084,produttrice concorso musicale,35554,7547,16 +126085,Lucy Tyler,35129,15532,4 +126086,Lamboo Aata,141603,86245,2 +126087,Inspector Heinrich,31472,26120,9 +126088,Bar Guy,77930,1784653,60 +126089,Leilani,13338,89846,3 +126090,Lexi,352498,1562961,16 +126091,Agent Cole,245703,62784,12 +126092,Talia,351211,1181426,5 +126093,Carl Black,377587,51944,1 +126094,Cereza Desdemona,106747,67599,8 +126095,Albert,47745,89661,5 +126096,Verkäuferin HO-Markt,338,17411,15 +126097,"Dyrektor cyrku ""Dorina""",157178,1138501,2 +126098,Ling,14449,1183500,8 +126099,Paulie Bleeker,7326,39995,1 +126100,Bill Witherspoon,70863,53286,21 +126101,Catlett,47561,12951,2 +126102,Jeremy Weber,27740,543586,1 +126103,Christophe,343702,20082,8 +126104,Casey Eastman,39824,52869,3 +126105,Glenn,10096,2252,25 +126106,Goldie / Wendy,189,5915,13 +126107,Frank Hirsh,38724,11128,4 +126108,Brent Willoughby,168676,980,2 +126109,Moses,59678,236695,2 +126110,Monogram Shirtmaker (uncredited),188468,2930,21 +126111,SS major,50849,33818,12 +126112,Peter Highman,41733,3223,0 +126113,Kenny,45133,132244,1 +126114,Car Chase Cop / Gang Leader,2179,154697,12 +126115,Lyle Wainfleet,19995,98215,11 +126116,Merlin,34193,198320,4 +126117,Singer at the Party,111470,1811847,27 +126118,Marylynn,138544,1273240,6 +126119,Sholanda,347630,1547996,24 +126120,Lucy Delgoosy,84105,1340866,17 +126121,Mr. Herkheimer,42325,34279,8 +126122,Eleonora,128657,147590,14 +126123,Nora,15936,12547,7 +126124,Alaric Chichester (as Tyrrell Davis),162862,1000007,5 +126125,Lulu,58664,155983,9 +126126,Franco Casagrande,94809,240014,3 +126127,,69310,1340,23 +126128,John Forrester,42852,108637,34 +126129,Alphonse Doinel,259,3597,9 +126130,Alvarez,59861,98292,9 +126131,,284467,1751,7 +126132,Wheeler,53524,95015,14 +126133,Jacques Attali,14419,6020,6 +126134,Mary Helton,13911,126753,7 +126135,Richard Wippe,308671,14637,1 +126136,Lawyer De Ribbis,11048,24478,2 +126137,,83346,74294,5 +126138,Dynamite Schultz,176627,148402,31 +126139,Paula la nana,370741,533398,3 +126140,Porter,249021,937398,13 +126141,Greek,21338,87405,13 +126142,Rob,384682,1718321,31 +126143,Home Nurse #1,55347,235854,26 +126144,Li Tieniu,413198,140478,8 +126145,Bit Part,18651,1467406,77 +126146,Laetitia Rance,64357,82923,0 +126147,Sailor's Girl Friend,34127,132493,12 +126148,Arch Deans,32143,8487,0 +126149,Chefe do tráfico de armas,180371,1181800,8 +126150,Taxi Driver,10488,1077901,17 +126151,Sarah,246320,1281819,4 +126152,Yonca,10565,66045,3 +126153,Makeup Artist,10330,181876,29 +126154,Aschenbrenner,277967,44567,2 +126155,Regina Jones,269795,1610860,13 +126156,,173577,102,6 +126157,Sang-Hoon,31850,108538,0 +126158,Molly Newman,65777,67615,3 +126159,Luigia,372640,3124,3 +126160,Hot Servant,156711,1349738,33 +126161,Warszawiak,8211,54074,7 +126162,Jackson Davies,347127,1334840,6 +126163,Alguacil,13495,78882,15 +126164,Dr. Quilly,148451,8499,4 +126165,Vitale,84449,1108733,9 +126166,Président,15414,2441,2 +126167,Rachel Prescott,17745,35317,16 +126168,Mr. Aaron,44754,1892,1 +126169,Tom Buckley,340101,237455,1 +126170,Town Crier,98369,1042516,7 +126171,O'Connor,223497,30005,4 +126172,Bully,6341,43010,14 +126173,Flo,91690,123989,3 +126174,Jelle Hûn,260528,229040,1 +126175,Young Robin / Jason Todd (voice),40662,1128886,12 +126176,Burt Gordon,360626,8499,4 +126177,Lizzie Borden,120854,151073,8 +126178,Shauna Welnke,286532,63234,2 +126179,Jack,55632,53820,0 +126180,Maggie,377428,1055157,6 +126181,Roller Bull,5123,1781812,21 +126182,Warden Iger,22803,21142,6 +126183,Female Guest,236399,175776,12 +126184,Ella (uncredited),101838,34052,38 +126185,Lieutenant Erkki Takala,374883,1166131,4 +126186,Caroline Service,290379,47678,4 +126187,"""Kalafior"", kumpel Bronka",38869,32699,6 +126188,Ally,50318,1011906,26 +126189,Manolito Barragán,254869,1042768,8 +126190,H H Turner,15044,9142,11 +126191,New Receptionist,22020,102951,17 +126192,Mindy,34205,51989,9 +126193,Avvocato,43648,141557,3 +126194,Sergio,325690,23961,1 +126195,Ma Murch,46059,66071,8 +126196,Viking,274857,1815691,37 +126197,Record Executive,1665,18517,5 +126198,Me. Fitzpatrick,16147,79623,19 +126199,Special Appearance,337876,110850,8 +126200,Van Tonder,76264,16758,3 +126201,Hennessey,1723,21153,9 +126202,Julia Endersol,35724,43942,0 +126203,Babe,57684,40178,5 +126204,Louis Blanchard,70074,288,6 +126205,Michelle,305342,202845,3 +126206,Luigi,257081,95725,18 +126207,Himself,73241,7491,1 +126208,Pedro - the Informant,14589,94401,45 +126209,Joan,28340,1795290,17 +126210,"Gus, Handyman",108869,140584,8 +126211,Doris,15045,31031,12 +126212,Clara,80280,45060,0 +126213,Laurence Bakewell,30934,30766,10 +126214,Dutch Schmidt,140887,10527,2 +126215,Andre,52358,2638,2 +126216,Rick,2989,29374,4 +126217,Nick Proctor,224204,1270456,3 +126218,Jessie (voice),286940,125025,4 +126219,Yakuza,104277,132776,5 +126220,Manny the Mechanic,74,37157,16 +126221,Mike Hanson,13163,10859,2 +126222,"Yasaku (segment ""Miminashi Hôichi no hanashi"")",30959,99247,24 +126223,Admiral Greenhouse,53949,34084,18 +126224,Ben Hart,1259,37048,4 +126225,,358199,1505208,15 +126226,Bobo,286709,1087135,10 +126227,Siobhan,42941,1200413,20 +126228,Vicky,211158,52721,1 +126229,Christelle Mattei,37645,583502,19 +126230,Zane Levy,61168,9998,3 +126231,Sonya Baranilkowa,78507,29554,4 +126232,Samual,354133,1496062,2 +126233,Ian,365753,1569795,7 +126234,Yoko,40029,1580815,5 +126235,Darlene Hamilton,128841,63155,0 +126236,Frank Malone,356500,28743,4 +126237,Leningrad Cowboy,30366,1076422,1 +126238,,303966,110724,11 +126239,Matteo,306555,1192849,3 +126240,,11328,1444488,36 +126241,Curt,71139,1192762,8 +126242,Karen Hood,86241,400,2 +126243,Woman with dog,18843,64672,36 +126244,,48882,143288,3 +126245,Marie de Flor,43880,98462,0 +126246,Will Atenton,69668,8784,0 +126247,Chanel,37725,4570,7 +126248,"Miss Redfern, John's Secretary (uncredited)",96107,7641,17 +126249,Raffaele,228290,120322,6 +126250,Mayor Mawell,80468,33197,6 +126251,Michael Lutz,24731,27141,11 +126252,Mayor's Husband,27470,97835,15 +126253,Safinaz,31547,121423,6 +126254,Jones' Assistant Whitfield,37710,94958,31 +126255,Shamal Kristal,111479,1223451,13 +126256,Oscar Engel,43849,9084,6 +126257,Carl Jenkins,19203,59238,2 +126258,Peacock,62143,1189244,8 +126259,Sam James,37534,117885,2 +126260,,166253,78920,3 +126261,Riccardo Finzi,165159,119991,0 +126262,Himself,44038,27991,4 +126263,Dominique,540,6278,3 +126264,Rudolf Kienast,82941,40526,2 +126265,Meyer,122192,54922,10 +126266,,248211,1182686,1 +126267,Himself,33481,110789,39 +126268,Mrs. Hannigan,270303,1588355,9 +126269,Tom,413391,7058,2 +126270,Erik Weihenmayer,96011,56857,0 +126271,Soccer Dad,9779,1237729,26 +126272,The Marx Brothers,20625,1614687,10 +126273,Jun,340176,1256851,6 +126274,Sören Kröyer,128900,1640,0 +126275,Arthur,34806,41217,7 +126276,Capt. Tom Churchman,31385,26847,0 +126277,Tootles,273106,1519560,15 +126278,Zeke,42640,13359,3 +126279,Older Woman,222858,9292,11 +126280,Portly Cop,2001,1781694,23 +126281,Ovidio Ceciotti / Raf Benson,58611,119991,0 +126282,Lincoln,40649,142162,3 +126283,Mayur,157293,1170149,12 +126284,Cryo Vault Med Tech,19995,397312,13 +126285,Newspaperman in Office,89086,122979,24 +126286,Amy Albany,244580,18050,1 +126287,Lana Lang (voice),123025,15423,9 +126288,Montgomery Brantley,268875,2930,8 +126289,,87296,30474,16 +126290,(voice),306966,1257573,8 +126291,Tom,78094,152507,3 +126292,additional voices (adr loop group),8355,451877,24 +126293,Fatty,222220,1566181,8 +126294,Armless Concubine,1271,1330753,48 +126295,le détective,93863,557945,7 +126296,Major Mark Baird,38269,1004977,2 +126297,Mickey,43727,1496719,4 +126298,Doris Thompson,140418,595213,1 +126299,"Karol, synek Hanki",155426,1271856,5 +126300,Myriam,3476,32094,10 +126301,Narasimha,161179,84956,0 +126302,Vegas Showgirl #1,10918,134901,21 +126303,Gianluca De Ceglie / Alexio / Ivanov,152100,582900,1 +126304,Crewman,49837,142894,8 +126305,Frankie Walburn,257907,87825,2 +126306,Furniture Delivery Man 1 (uncredited),237584,98873,31 +126307,Henry,31991,44222,0 +126308,Killer,9076,1646,5 +126309,MOB Dancer,243683,1290652,51 +126310,Lorraine Dennis,27446,97771,2 +126311,Marshal Lee Sims,26758,40180,3 +126312,Ann's Father,20,658,11 +126313,,52943,1725319,10 +126314,,118257,6818,9 +126315,Eric Richman,9779,6858,8 +126316,Billy Taggart,11351,1225512,13 +126317,Rosita,76864,544706,12 +126318,Renee,345925,87722,0 +126319,Galileo,198795,1026994,20 +126320,John / Johnny,139463,29528,3 +126321,Sir Wilkes,59191,6074,2 +126322,Dietz,27085,96189,4 +126323,Justine Roberval,290365,1579217,3 +126324,Cecil Watterman / Simon Watterman,4365,13640,2 +126325,SDF L:t. Gen. Katsumasa Mikumo,36243,1106204,6 +126326,Himself,148807,238714,2 +126327,Susan,172828,1186023,16 +126328,Bill,371181,207939,8 +126329,'Letterboxed' Customer,38908,1088250,3 +126330,Anny,267931,567627,6 +126331,Miss Coggins,245700,65449,16 +126332,Kathleen Flannery,1662,32,3 +126333,Banquet Guest (uncredited),274479,1774109,65 +126334,Nick Taylor,277237,97416,6 +126335,,41252,125930,8 +126336,,146521,270391,0 +126337,Prof. Salvator,43685,549136,4 +126338,Jessie Bannister,51036,1796,1 +126339,Alex,88478,19538,1 +126340,Justiina Puupää,61070,232311,2 +126341,K.P. Prakashan,134477,141704,2 +126342,Dewey Stevens,103260,7077,10 +126343,Sagnac,42542,1015798,9 +126344,,127445,1084695,8 +126345,Helen Stacy,102382,156989,15 +126346,Miho,43635,129704,4 +126347,Mom (voice),9297,11514,5 +126348,Diane,104108,1759089,5 +126349,Jack Singleton,14833,77339,1 +126350,Trey Reynolds,44593,40979,3 +126351,Hugo,109690,112901,2 +126352,Magic,1125,15568,9 +126353,Poor Mother (uncredited),36874,145109,1 +126354,Richie,36251,117999,7 +126355,Kuzyakin's Father,27925,99259,5 +126356,Una bagnante,57996,544826,16 +126357,Mike Connors,336265,31268,3 +126358,Rebeca,199415,187536,3 +126359,Trucker,88005,52267,7 +126360,Joe Agnew,60140,33777,6 +126361,,315841,1039220,13 +126362,Kim's thug,18763,1168161,13 +126363,Thomas Leyton,337101,79001,2 +126364,,84771,14672,3 +126365,Brückenwirt,26891,61471,13 +126366,Bruno Merk,82598,14015,5 +126367,Robot,107319,1073850,10 +126368,Lærer,10119,63754,8 +126369,Judge,128111,564849,4 +126370,Neil Armstrong,44578,3072,0 +126371,Soldier,150712,385470,39 +126372,Colonel Steinhager,4375,9908,1 +126373,Oscar Lorkowski,13090,74151,3 +126374,Mrs Hardy,10482,11110,3 +126375,Vernon,43817,55578,7 +126376,Ezhuthachan,237672,1332765,21 +126377,Grandma Lynn,7980,4038,2 +126378,Vassily 'Bizon',56212,223799,1 +126379,Carmen,14029,99551,5 +126380,Teacher/Mr. S,265712,112278,15 +126381,,240334,130036,1 +126382,Stella,27259,24239,1 +126383,Cesare,42225,69488,7 +126384,L'oncle Dom / Le prof de gym,118293,91271,9 +126385,Dr. Ross,40807,41436,6 +126386,New Orleans Sheriff (uncredited),1976,120785,22 +126387,Grant,31277,167919,2 +126388,Train Passenger,144792,1062654,16 +126389,Maximilian Volt,41076,1889069,8 +126390,Ali,397717,1620981,17 +126391,Danny Bonner,132939,29284,5 +126392,,126516,134355,17 +126393,Lady Trench,241374,129038,3 +126394,Beck,14916,1430522,4 +126395,Herr Landauer,119820,238212,3 +126396,Johnny Harris - Songwriter,43903,567272,7 +126397,Patsy,42533,1214531,9 +126398,,264036,86726,5 +126399,Godzilla/JSDF Officer/Comic Editor in background,19336,235722,15 +126400,Julia,84228,66636,0 +126401,Siegfried,41619,32585,2 +126402,Brig. Gen. Warren Black,31067,1037,12 +126403,Jeff,323435,1453617,6 +126404,Joe,390587,63364,0 +126405,Herself,81538,1156403,4 +126406,Shane Patton,193756,23498,7 +126407,,86321,1903064,11 +126408,Emilio Sanchez,352094,145216,3 +126409,Girl,115109,1471365,24 +126410,Nigel (voice),9904,1926,2 +126411,Dhaniram (Inspector),353464,101827,6 +126412,Garda 2,360205,1511043,8 +126413,Violet,222030,979116,3 +126414,Auditionee,2976,1617303,93 +126415,Dag Snerensen,84060,1129683,4 +126416,Oberleutnant,613,50752,44 +126417,,329805,1145002,10 +126418,Charles IV's Page,341962,1470854,9 +126419,John Vukovich,9846,59872,2 +126420,Doc (Voice),68179,64342,11 +126421,,100791,143627,8 +126422,Lt. Cmdr. Waite,19096,6937,8 +126423,Karen,295588,1515525,13 +126424,Major Quive-Smith,22404,3361,2 +126425,Debbie,89492,41087,1 +126426,Paula Roberts,9568,1224245,12 +126427,Larry the Cucumber (Markus the Scribe) / Jean-Claude Pea (Peaoni Brother #2) (voice),273296,78298,4 +126428,Deputy Dodd,137528,1764647,13 +126429,Skeletron BMX Guard,310135,1716345,39 +126430,Policeman,14589,1289041,70 +126431,Prado Museum Guard #2,145220,13014,25 +126432,Nicholas,82,1665,10 +126433,Secretary General Barnes,24756,20217,3 +126434,Lois,33343,1188779,6 +126435,Tyrone,2017,1640,2 +126436,Nainen pankkiautomaatilla,148478,143131,10 +126437,Mr. Quimby,42305,4093,2 +126438,Jérémie,186971,1001626,7 +126439,Chow Cheung-sheng,11960,21908,0 +126440,,278095,119048,3 +126441,Talent Agent,2976,20739,34 +126442,,377447,130985,6 +126443,Sarah,23515,1440870,18 +126444,Nancy,8008,53576,5 +126445,Schwester Celeste,358980,50781,3 +126446,Susan,407531,101024,7 +126447,,225503,147985,13 +126448,Hostage Girl,209112,74312,65 +126449,marco,58832,206737,1 +126450,Игорь,76746,101442,2 +126451,Mariano,73160,929726,2 +126452,Ortho Clegg,32634,4316,9 +126453,Morty,117120,83814,1 +126454,Daphne,63273,17774,4 +126455,Inspector Carney,36373,79247,1 +126456,Mme Taupin,75066,37183,14 +126457,Thundercloud,34651,113710,12 +126458,Wyatt Leigh,116973,3361,2 +126459,,64044,38131,10 +126460,"Cindy, Babysitter (as Liz Morton)",30082,214496,4 +126461,Saddam Hussein / Faoaz,62630,117314,3 +126462,Guerilla,118497,1294282,3 +126463,Will (uncredited),11577,7767,36 +126464,Bartender,10710,53778,16 +126465,Insp. Philip Millard,107250,8536,1 +126466,himself,254446,1291612,5 +126467,Toni,48937,37583,1 +126468,Augustus Caesar (uncredited),181533,1683958,23 +126469,Kree Monk (uncredited),283995,1769802,56 +126470,Old Woman,75761,1192855,16 +126471,Lt. Colon,190955,11315,9 +126472,Tomoko,45505,1278190,2 +126473,Gillian Tanager,14422,37153,4 +126474,Klasse 3c,61035,1446107,33 +126475,District Judge,10097,42600,14 +126476,Funk,33102,58528,5 +126477,Youri,61686,109473,1 +126478,Rick,23048,56124,10 +126479,Woman in Black,16182,79929,3 +126480,Fusssoldat,2734,27673,52 +126481,Alex,56596,28846,0 +126482,Hope,445916,62000,3 +126483,César (voice),9385,5185,4 +126484,Elsie,241374,130385,0 +126485,Jérôme Doré,18381,227600,4 +126486,Margaret Smith,68050,528,3 +126487,Kevin Ratner,145135,1393310,10 +126488,The Four Marx Brothers,13912,1614687,23 +126489,Xue Bing,64304,238977,4 +126490,Perry White,1452,8924,5 +126491,Hawkins - the Valet,151086,29602,3 +126492,Gilles,283726,147041,3 +126493,Lily,407559,47720,0 +126494,Abby Morrison,21753,50346,0 +126495,Amy (as Ana Claudia Talancon),18206,7351,1 +126496,Bar Fly,179105,1161665,2 +126497,Jimmy,156711,20471,11 +126498,Naoko,43635,129705,5 +126499,Daniel MacQueen,69717,21343,2 +126500,Older Sydney,339419,1650167,22 +126501,Commentator,8414,18236,10 +126502,Gibbs,59744,98578,5 +126503,Eagle,11653,1102078,14 +126504,The Sister Team,131360,1429298,11 +126505,Heimdall,284053,17605,3 +126506,Lorenzo,27711,76673,9 +126507,Jimmy,18238,82806,1 +126508,Alice Quinn,2771,82105,13 +126509,Henry Cromwell,239018,38709,11 +126510,Sasà,41427,126450,13 +126511,Hannah,14400,7276,6 +126512,Ben,45875,5938,1 +126513,father wolf / Kaa (voice),59803,932356,4 +126514,Outer Office Secretary,179066,1031220,13 +126515,Old Yamballi Woman,63706,1072593,8 +126516,Charu Mohanty,20623,1607090,23 +126517,Dominguero,59117,228878,19 +126518,Hero Robot #2,13529,86606,1 +126519,Spinger,53524,29616,10 +126520,Theatre Actor,245700,1754638,52 +126521,Mary Elison,11046,67916,2 +126522,Paul,86703,933544,4 +126523,,80435,204904,0 +126524,Ronnie,105902,26690,8 +126525,in Paris,54898,213560,1 +126526,Rick / Bulk (voice),40662,31549,11 +126527,"Zhukov, the Menshevik",204802,1623845,8 +126528,Volker,11795,1282189,9 +126529,Capt. Will Stone,40765,88671,0 +126530,Soldier #2,98644,1029131,13 +126531,Meg Giry,76115,577646,9 +126532,Wong,284052,30082,3 +126533,Prince,10103,127566,10 +126534,Control Tower Technician,188927,1516834,22 +126535,Ragazza dai capelli biondi,296491,100681,5 +126536,Bit Role (uncredited),43419,1095430,17 +126537,Paul Banton,29116,6102,8 +126538,Skiff (voice),16866,57599,1 +126539,Jimmy Kabinsky,137491,21123,3 +126540,Shirley Goldsmith,247691,165402,5 +126541,Office Worker,157898,34008,46 +126542,E.J. Farnsworth,86600,4966,6 +126543,Kirk,295884,78041,0 +126544,Princess Nicole,79466,95157,11 +126545,Dr. Murray,80368,6104,3 +126546,Martín - newly-married husband,36971,131867,3 +126547,Nails Nathan,17687,95771,5 +126548,Helmi,51423,124283,5 +126549,Sybille Simon,130233,4619,7 +126550,,329550,1604347,51 +126551,Greg Pettis,94874,106747,6 +126552,David,52044,231440,1 +126553,pastor Adams,45227,99293,5 +126554,Tennis Player 1,15044,1184965,16 +126555,Ryokan no jochuu,18148,1200886,19 +126556,,51549,83528,21 +126557,Liam Segal,10694,59190,16 +126558,Beautician,25074,1413335,22 +126559,Pierre,4146,16927,0 +126560,Ens. Franklin,48412,129482,9 +126561,Chucho (uncredited),37628,553164,25 +126562,Patti,77875,139,2 +126563,Natalia,61580,1138756,0 +126564,,34019,135023,7 +126565,Myron,19621,3129,2 +126566,Detective Amanda Watts,18442,44711,10 +126567,,224951,981307,7 +126568,Santiago,18447,4305,6 +126569,Otto Bauer,109716,30234,4 +126570,TV-Moderatorin,277968,1898498,27 +126571,La femme aux objets,20200,54168,13 +126572,Party Guest (uncredited),73430,148419,19 +126573,Le magistrat,151826,1172641,17 +126574,Maggie,58197,85143,3 +126575,Paul Carmichael,108012,72056,2 +126576,LaRoche's tall sgt,140276,14666,5 +126577,,320873,1427453,7 +126578,Luca,53648,1002932,4 +126579,Lancaster,56744,167035,7 +126580,Photographer,252746,213990,12 +126581,,40146,1055178,13 +126582,Sir Francis Ravenscourt,47312,6599,8 +126583,Adele,356757,129077,2 +126584,Kermit the Frog / Jack Rabbit / Chico (voice),15909,64180,0 +126585,Ravelli,26182,10799,1 +126586,Jörg / Hitler,80125,56600,6 +126587,Veronica Van Cook,301566,136913,6 +126588,Joe Gould,921,13242,2 +126589,Jailbreak (voice),378236,1772,2 +126590,Security Guard #1,189,1406695,46 +126591,Kingsley,45243,13242,5 +126592,April,29695,98959,13 +126593,Dougal,16455,80535,3 +126594,Cab Driver,10362,1401102,45 +126595,Photographer (uncredited),57684,120544,20 +126596,Touchstone,19103,658,5 +126597,Lucille Odom,180576,49824,2 +126598,Dash Hammer,47342,18666,4 +126599,Penny,48838,82639,9 +126600,Sharon,274479,1223750,25 +126601,Tyler Williams,24469,972306,3 +126602,Real Estate Agent,26293,95044,8 +126603,Commendator De Salvo,59040,1166735,28 +126604,Ms. Robinson,8272,1214060,7 +126605,Albert,82679,1148130,1 +126606,Timothy Bryan,250332,121059,62 +126607,Lt. Colonel Sawyer,299730,1379210,1 +126608,,325428,1427182,1 +126609,"Fadeich, chief of landing place",71393,239124,8 +126610,Nausheen,224282,1041987,12 +126611,Govornik,259728,54621,25 +126612,Dave,15189,27104,3 +126613,Security Officer (uncredited),331313,1767217,45 +126614,Remedy Williams,186585,1168903,6 +126615,Natascha (young),166666,1148272,3 +126616,Himself,36883,13474,8 +126617,Tim,340684,82103,2 +126618,Le bourreau,45000,94937,6 +126619,Headmistress,38322,38333,5 +126620,TV Reporter,262841,98818,19 +126621,Singing Group,133255,1298431,10 +126622,Mark,18557,92171,2 +126623,Himself,453053,142589,5 +126624,Lucy,11172,163934,16 +126625,Ramundo,62755,1415701,5 +126626,David Roberts,245700,109861,19 +126627,Clyde Alexander Shelton,22803,17276,1 +126628,Michael O'Brien,31445,83474,2 +126629,Clea,41360,33850,4 +126630,Ice Cream Vendor (as Mark Ubell),117509,98385,13 +126631,General Antiope,297762,32,2 +126632,Kito,189151,84619,2 +126633,,47046,120258,2 +126634,Julie,67693,49729,10 +126635,Redhead,11045,73753,8 +126636,Klaus Heinemann,7210,8204,4 +126637,Jeannette Desmereau,120497,30155,0 +126638,The Hippy,86838,87115,25 +126639,Daniel Webster,43806,12784,55 +126640,Divine Intention Dancer,243683,1398148,66 +126641,Himself,413782,72540,5 +126642,Japanese Typhoon Captain,17911,1345403,16 +126643,Kwan,338421,100585,8 +126644,Novi,54396,938749,7 +126645,Garota do Banheiro,248543,1877261,11 +126646,Gabriele Bagnoli,45990,119996,1 +126647,Skeets Harrigan,108222,70820,4 +126648,Detective,25551,54683,17 +126649,Mombelli's brother-in-law,62397,382758,6 +126650,Margot Ots,46931,137561,5 +126651,Vojnik 1,118658,110960,7 +126652,Carmine,64784,121628,2 +126653,,278095,583290,4 +126654,Lincoln Anderson,133953,1368001,6 +126655,Buurvrouw,5899,1873121,14 +126656,Randolph Stone,43821,34497,8 +126657,,264454,1309624,6 +126658,Madison Kramer,31377,20480,6 +126659,Nobutada,616,9194,12 +126660,,334175,1464766,5 +126661,Mrs. Kurokawa (voice),149870,722,13 +126662,Valerie Harper,253484,1295540,5 +126663,Leon (voice),126319,1505895,21 +126664,,49961,143130,21 +126665,Sportlehrer Stalin,12128,16722,10 +126666,Kevin,109453,83141,8 +126667,Her Father,53417,21305,2 +126668,Twin in Boardinghouse (uncredited),52440,1905155,56 +126669,,265351,1432025,10 +126670,Young Naomi,306952,1511968,25 +126671,Man in window,109354,107824,4 +126672,Sanne,65771,544021,1 +126673,Little Phoenix's father,309820,1381289,6 +126674,Anna,114155,8443,12 +126675,Maria II,11799,14812,1 +126676,Kaor,59197,1065264,12 +126677,Herself,63144,1624623,18 +126678,Missouri D.A.,41505,1575424,17 +126679,Outer Party Announcer,1984,139765,7 +126680,,81463,1295820,7 +126681,Dr. Fromm,114872,35193,5 +126682,Judith,239513,943113,9 +126683,Lady of the Lake,274857,1815693,20 +126684,Rob Austin,126934,60459,5 +126685,Gilda,53619,1033087,11 +126686,Johnny,24978,92943,8 +126687,Dancer (uncredited),98328,24880,15 +126688,Flora Ransom,49843,43798,2 +126689,Jack LeBeau,26881,29712,8 +126690,Mr. Chen,2463,25249,3 +126691,Bobby,407,5497,1 +126692,Mrs. Bucket,118,1283,7 +126693,Le docteur (voice),137193,19069,3 +126694,Student Dancer,38322,1869058,56 +126695,Cameriera,60199,230727,1 +126696,Dirt,14137,5950,6 +126697,Mrs. Funk,14123,1446422,33 +126698,Naco,102629,1398508,17 +126699,Agent Hannigan,27358,931651,1 +126700,Antoine,13734,41029,0 +126701,Jack Denison,54982,61962,9 +126702,Young Chev,15092,116446,15 +126703,Merle,400552,18943,4 +126704,Himself,293262,65605,0 +126705,Dancer,1271,1330768,63 +126706,Howie,329010,1613990,8 +126707,Mo Hong-Gab,285213,25003,8 +126708,"Lim, Gye-jin (North Korean Senior Colonel)",407887,86330,2 +126709,French Maid (uncredited),28571,1671167,14 +126710,"Mike Ryan, Sullivan's Hospital Cafe",153165,30240,18 +126711,Dr. Burton,33839,30512,4 +126712,Boudu,14644,16927,0 +126713,Greg,58467,62123,8 +126714,Angie,51290,143769,1 +126853,král,82279,213324,4 +126715,Second Butler (uncredited),44875,1176510,12 +126716,Marco Sciarra,206647,1381616,11 +126717,Mary,117531,13556,1 +126718,Ela Delahay,72611,566705,4 +126719,Jeremy,251232,229634,2 +126720,Tom,289712,19277,6 +126721,Student (uncredited),15022,117587,45 +126722,Detenuto,56853,1878955,21 +126723,Karen,24625,1533,1 +126724,Cairo Shoe Shop Vendor,246655,1796394,39 +126725,Gawking Guy,2295,880,6 +126726,The Monster,3144,30751,0 +126727,Mr. Starling,340101,19901,24 +126728,Dr. Daryl Moffet,284537,504,8 +126729,Sondra,115283,56322,3 +126730,"Clip from ""Gigi"" (archive footage)",33740,10508,42 +126731,Anwalt,6076,47779,7 +126732,Avis,60551,141995,3 +126733,Nina,8270,54207,15 +126734,Mrs. Ravensdale,87428,86267,19 +126735,Ryoji,38010,1070447,5 +126736,John Lawrence,274060,18802,1 +126737,"Maréchal, the bookmaker",66812,1556292,14 +126738,Ellan,24409,91587,1 +126739,Duke,84337,633744,3 +126740,Yvonne Fair,239566,110742,10 +126741,Thomas,157351,65727,6 +126742,Skinny,58414,74193,6 +126743,Professor Adams,33563,57854,6 +126744,Mary,29424,1206160,14 +126745,Black Hand Leader,112708,1134691,11 +126746,Iguman,259690,1496909,10 +126747,Hex Mortimer,13802,1256561,10 +126748,Johnson,10425,30613,8 +126749,Sadie's Singer,4688,1659311,19 +126750,Skip,94725,1295108,5 +126751,Noble 'Mase' Mason,147106,862,0 +126752,Daniel,127286,17648,5 +126753,Ruth's Mother,286521,149550,19 +126754,Crusader,289720,955264,10 +126755,"Igor, the radio operator",28209,39332,5 +126756,Emily Prime,303867,1386409,2 +126757,Young Ali,293262,1392203,14 +126758,Austin,256740,1507337,12 +126759,Ruth Waters,157343,114767,1 +126760,,80276,1486367,12 +126761,Polizist,10626,50594,16 +126762,Mr. Hot Bacon,18189,1224338,14 +126763,Hero,10070,58115,9 +126764,Eli,81232,591299,2 +126765,Jane,63315,63239,7 +126766,Killer Santa,27414,15988,14 +126767,Macaire Leemaster,231616,15905,6 +126768,Matka Ewki,298040,107517,12 +126769,Helen,75622,60073,13 +126770,avvocato Luciano Taddei,56804,1282493,14 +126771,Walter,1164,17482,20 +126772,Webb Yancey,175386,14451,6 +126773,Kylie,407173,1477962,3 +126774,Bit Part,18651,1317660,47 +126775,"Buck Hastings, a townsman",28775,1635876,11 +126776,Lucia Alarcon,69535,7007,4 +126777,Sarah Shagal,3053,29490,4 +126778,Bækkel,16014,98060,11 +126779,St. john,13823,11857,28 +126780,Billy Hibbs,71503,75467,4 +126781,Mousey,55663,161733,7 +126782,Gloria,11172,171673,24 +126783,Local Sheriff,13957,76105,8 +126784,,11196,206475,32 +126785,Himself (archive footage),253337,44549,28 +126786,Annie - Cook #1,18569,34268,18 +126787,Kicks Johnson,118549,3160,5 +126788,Worried Worker,10482,79502,15 +126789,Sarah,18586,5887,5 +126790,Ice,22450,35549,2 +126791,,289679,1104740,8 +126792,"Ferdinand ""Freddie"" Rézeau",24685,92304,7 +126793,Gloria,242097,21010,7 +126794,Greg,244316,26089,16 +126795,Payton / X-Ray,42182,1214427,4 +126796,Mr. Saunders,21927,948173,9 +126797,,63215,130032,19 +126798,"Himself, Cameo Appearance (uncredited)",32552,29962,39 +126799,Tyler Evans,364690,1271473,0 +126800,,253192,86863,3 +126801,Joey,345922,1783268,41 +126802,Prikhodko's wife,107705,86676,6 +126803,Hank Johnson,115054,19426,4 +126804,Street Entertainer,42242,1169,22 +126805,Ishwar,14705,35747,2 +126806,Mugger,284052,1785904,24 +126807,Coroner (Phoenix),273481,307885,25 +126808,Man #3,9953,60882,15 +126809,Maksood,25528,55708,7 +126810,,144651,33067,1 +126811,Woman in Truck,228970,1263516,56 +126812,"Nico, le régisseur",382589,1808482,19 +126813,Pharmacy Punk,75622,1004781,8 +126814,Schoolmistress,44087,766752,32 +126815,Claude,107028,14101,4 +126816,Mrs. Goto,36214,1057931,5 +126817,Drunk (uncredited),1976,1044381,23 +126818,Paul Revere,9286,1328755,17 +126819,Charlotte,28704,12519,1 +126820,Detective Johnson,381645,55779,1 +126821,"l'inspecteur Maffeux, de la brigade des mœurs",59434,19647,10 +126822,Adam,53256,6086,2 +126823,Mr. Marks,9899,16165,10 +126824,Shelby,71668,74618,2 +126825,Father,91527,105444,0 +126826,Matsu-chan - Fisherman,43113,1117087,19 +126827,Hitman,134350,121576,11 +126828,Martin Mathias,26517,15057,0 +126829,Himself,276536,40900,7 +126830,Menina da Mesa ao Lado3,117534,1902452,28 +126831,vecchia passeggera,107052,130616,13 +126832,Paul,12696,18490,4 +126833,Paul de Bursac,22584,99323,13 +126834,Aurora's Husband,93858,999815,5 +126835,Jerome Bellamy,51049,116579,5 +126836,Himself,90231,1750483,19 +126837,Chester V (voice),109451,62831,3 +126838,,27276,551840,31 +126839,Michael McCausland,70772,537,7 +126840,Chauffeuse,75363,568361,13 +126841,Nacho,172457,1533667,9 +126842,Himself,15258,186808,69 +126843,Jared,205724,59297,8 +126844,The Priest,65674,8606,1 +126845,Dr. Michaels,40649,1018954,10 +126846,Tenisha,431093,1753142,11 +126847,Butcher,26810,124982,8 +126848,,14210,85923,11 +126849,Bertha,189,237405,19 +126850,Diana Barry,397520,1386502,4 +126851,Cashier,304372,1720606,20 +126852,Stephanie Jacobs,36960,74423,1 +126854,,427095,1142987,5 +126855,Michael Ovitz,30330,4515,10 +126856,Henry,28969,29463,5 +126857,Siri,74154,116925,1 +126858,Ma,51442,41240,1 +126859,Wheeler,166221,38560,2 +126860,Sveta,57209,225687,4 +126861,,236007,85668,3 +126862,,128671,8828,5 +126863,Issac,24625,1236034,5 +126864,Vanessa Adler,359412,1006733,12 +126865,Declan - Werewolf,246741,1161585,30 +126866,Himself,142161,1121626,3 +126867,General Kingston,27840,99128,7 +126868,Ana,260030,1050122,9 +126869,Translator,10710,77587,23 +126870,Ewa Staniak,239103,1384,6 +126871,Antonia,84354,141628,2 +126872,(voice),16171,79890,42 +126873,Henry Heikkilä,55748,223068,1 +126874,Millicent Wetherby,43256,31550,0 +126875,Mr. Spitzer,43441,8240,4 +126876,Princess Johanna,68191,106625,6 +126877,Natasha,83435,723555,0 +126878,Kenneth,126250,1025543,13 +126879,Охотник,27935,236836,5 +126880,Sergeant,31273,107880,27 +126881,Fast Food Kid 1,242224,1413783,30 +126882,L'institutrice,96921,5470,1 +126883,Mr. Salomone,46806,4175,1 +126884,Corpse,58918,1577016,15 +126885,Holger,75969,1286852,39 +126886,Dylan Sanders,9471,69597,1 +126887,Chikako's neighbor,43113,1479147,70 +126888,Marie,77381,1537341,6 +126889,,188180,125628,0 +126890,Axel Bomasch,41597,114833,5 +126891,"Graciela, the Mute Girl",44641,144534,3 +126892,The Guard,186971,228716,15 +126893,Bev,310133,20187,3 +126894,Tim Fink,7233,33654,2 +126895,Mik,13436,81040,4 +126896,3rd Youth,31264,136417,15 +126897,Donnie Gishler,259695,51300,9 +126898,Salih,37570,935169,5 +126899,Bessie,376501,1804235,11 +126900,Jimmy,33272,110425,4 +126901,"Tanya, 'Cabin Crew'",86254,144975,5 +126902,Alice,320343,1444243,5 +126903,Goliath,42040,33807,6 +126904,Jackie,37301,195003,9 +126905,Marguerite,104644,66223,2 +126906,Maybelle's Store Dancer,2976,1752713,72 +126907,herself,190940,37233,20 +126908,,104471,11523,0 +126909,giudice,356758,1260894,5 +126910,Welcome to the 60's Dancer,2976,1752776,123 +126911,,11328,1444504,52 +126912,Tiffany,4551,43893,28 +126913,Iska,190341,1580363,3 +126914,Thug,18725,70690,8 +126915,Silent Gangster in Car,26376,2659,34 +126916,princ ospalý,160106,1071357,5 +126917,Annushka,96724,1561789,29 +126918,Lemonade Stand Kid,87428,1271681,26 +126919,Reporter,57100,1371118,11 +126920,Lavender 'Popeye' Wolfmeyer,11354,38940,5 +126921,Carol Powell,85564,7401,8 +126922,Leah,381073,1593044,18 +126923,"Poirier, an old man",151068,1870855,15 +126924,Casino Waitress,71670,1739854,28 +126925,Pensionsmädchen,277968,1898501,35 +126926,Footman,149793,133100,26 +126927,Harley Quinn/Poison Ivy,460135,15762,2 +126928,John Grant,105059,51719,40 +126929,Steven Price,66881,76501,3 +126930,Aegis Crew,76757,1394342,40 +126931,Таня,49653,1386475,4 +126932,Bonnie (voice),77887,1096415,12 +126933,Thomas Miller,31377,60393,0 +126934,Carmilla,18238,141492,5 +126935,Figlio del sindaco,139563,32662,5 +126936,Alex,40990,62709,14 +126937,Samantha,29151,164094,21 +126938,Yoon Jung,172474,1158710,0 +126939,Herself,447758,1216526,37 +126940,Andrew Wyke,4520,3895,0 +126941,Hedda Hopper,294016,15735,2 +126942,Max,159095,85718,2 +126943,Margherita,42571,128220,2 +126944,Yegorushka Korsunsky,96724,1390505,30 +126945,Hotel Desk Clerk,179603,120544,12 +126946,Dr. Davis Barker,28820,102117,5 +126947,Cinderhella,68684,967540,33 +126948,Adm. Moffett,46189,99749,5 +126949,Barbara Colhoun,83015,1834941,19 +126950,1949 Cop,239566,1691429,65 +126951,Trooper Cronin,41234,124882,16 +126952,Second Base,61644,79740,12 +126953,,116312,97669,30 +126954,Platoon Commander,256962,1819132,63 +126955,Mauled Cameraman (Dave),246741,1628130,45 +126956,Scully,40221,168323,4 +126957,Riley,336004,1717265,21 +126958,Major Kathleen Sparr,1724,68277,6 +126959,Col. Petrovic,81895,27659,5 +126960,Mitch,40807,40009,8 +126961,Dr. Solomon F. Moses,91607,5251,2 +126962,Mo,171698,1223718,3 +126963,Himself,180383,1388079,2 +126964,"Georges Castagnier, dit ""Jojo""",84035,1653,0 +126965,Arthur Steed,245168,2039,4 +126966,Tim Brady,47914,42290,9 +126967,Voisine,12422,1055228,13 +126968,Max Engel,287903,1259762,5 +126969,Agent Nance,26486,34457,10 +126970,Brittany,1807,19202,7 +126971,Arrapaho,42416,2376,6 +126972,Alex Spencer,150657,1126585,3 +126973,,172008,1182602,19 +126974,Janet,44470,176956,15 +126975,Wife,51364,89929,2 +126976,Hanna (voice),182131,1247793,6 +126977,Mrs. Mary Quincannon (uncredited),15807,2772,23 +126978,Pipe-smoking whistling sgt,140276,10610,4 +126979,Martin Kurtz,32088,14277,2 +126980,TNT Detective,2001,1781733,88 +126981,Sandra,104041,214660,4 +126982,Tortured Soul,216374,1207887,5 +126983,Cop,241855,1335208,9 +126984,"Sean Morris, Hollister's Aide",53870,12055,9 +126985,Jon Arbuckle,16460,19513,7 +126986,Lady Macbeth,119844,18021,1 +126987,Éowyn,122,502,13 +126988,Twigson (voice),33407,110597,1 +126989,Diana Heller,195269,1275224,8 +126990,Catlin Gatley,21619,53889,9 +126991,Bartender,39995,174733,4 +126992,Brownie,16066,57795,3 +126993,Teenage Stephen Elliott,274504,1190668,9 +126994,Sicora,25376,46861,16 +126995,Yim Wing Chun,25645,1620,0 +126996,,246829,93722,5 +126997,Nina,284279,1351014,1 +126998,Sid (voice),79218,5723,2 +126999,Backstage Actor,112083,121257,12 +127000,Immortan Joe,76341,26060,3 +127001,Derek Beaugard,22371,88699,6 +127002,Radio Announcer (voice) (uncredited),87123,126549,15 +127003,Mimaki,86520,1200125,7 +127004,Margarita Osyanina,49106,1004790,5 +127005,Young Laura,74549,1316645,24 +127006,Halup Kilev,28325,31775,9 +127007,Soldier,279096,1380103,16 +127008,Kenshiro (voice),105231,66155,0 +127009,Harold,273743,20495,4 +127010,Dr. Patel,284052,6975,16 +127011,Roosevelt Stokes,28553,2975,2 +127012,Miles Archer,47342,27539,2 +127013,Pilot,102382,1454093,43 +127014,Nudge,339116,1504015,9 +127015,Co-star,336011,1560245,13 +127016,Davenport,38874,258,2 +127017,Senator Hubert Morrison,94568,87517,5 +127018,poliziotto alla frontiera,75001,1079514,5 +127019,Soldier #2,19398,1469198,32 +127020,Ann,19794,114604,17 +127021,Bert,98094,133804,4 +127022,Himself,25111,2878,1 +127023,Himself,407806,1025680,13 +127024,Older sister,405882,1364121,11 +127025,Gimli Slider Waitress,246403,23658,8 +127026,Tracy Collins,71945,105747,2 +127027,Sultana,319993,1112874,9 +127028,Agent Mike Arlen,442949,1762640,7 +127029,Mrs. Mills,140814,993689,2 +127030,Gail,189,5916,4 +127031,Ken Dakota,108789,6783,0 +127032,Receptionist,204839,1297931,9 +127033,Miss Pross,17831,82412,2 +127034,Allan Pinkerton,42706,7676,3 +127035,Wallerschenk,79362,233964,2 +127036,Butch (voice),18843,2048,26 +127037,Jenny Henderson,242097,8857,1 +127038,Himself,14923,25503,62 +127039,,24403,91580,2 +127040,,284467,83974,5 +127041,Jeannie,119694,18285,6 +127042,Graziella Luciano,82077,13333,0 +127043,Alan,416635,1681428,4 +127044,Adiyodi,237672,1292671,20 +127045,Swimming team (Perth's friends),292625,1758608,20 +127046,Valdemārs Baumanis,144331,1192361,0 +127047,Officer Tim Rand,250332,33233,34 +127048,Red Bamboo Scientist #1,3115,229225,12 +127049,Cantor Zanvel Reichman,362463,1518296,5 +127050,Cowboy,105059,160598,28 +127051,Dynamite Dick,167262,71562,7 +127052,Raul,80304,8688,3 +127053,Zeb Taylor,84772,931241,5 +127054,Malagodi,62349,128227,3 +127055,Ärztin Stefanie,308174,17726,24 +127056,Burgemeester van Weezel,25797,28896,2 +127057,Ash,166161,124577,12 +127058,,203072,234129,4 +127059,Mom,72912,1302461,9 +127060,Mrs Stukely,80596,11135,50 +127061,Mona,266102,1312266,5 +127062,Jessie Eastwood,44540,12656,1 +127063,Alberto,251555,31422,1 +127064,Agravaine,19957,394525,13 +127065,Tony,29338,97691,4 +127066,Flint,189,84791,24 +127067,Calvin Glover,32526,1176946,4 +127068,Estate Agent,328589,40633,22 +127069,Prison Guard,3580,120859,29 +127070,Welcome to the 60's Dancer,2976,1752786,130 +127071,Sebastian,5048,26258,6 +127072,Himself,9951,1692544,16 +127073,Mrs. Winters,273167,100099,7 +127074,Chris Bradley / Bolt,2080,1330,8 +127075,"Dr. Clint Forrest, Jr.",130507,11998,6 +127076,Ryan,381008,1589596,7 +127077,Newsboy,43812,1342200,24 +127078,Herself - Model,327083,145634,22 +127079,Mrs. Brice,32610,120735,18 +127080,Bóbi,45179,559729,1 +127081,First controller,26405,1105501,12 +127082,Wife,42139,931321,4 +127083,Chief Constable,32577,1242012,13 +127084,Kemp,2355,1089176,21 +127085,Emily's Daughter,3081,1185450,10 +127086,Dancer,18843,1905159,32 +127087,Frau von Ehrenhardt,4955,41000,13 +127088,Martha Feeny (Jude's Mother),4688,38949,10 +127089,Secretary of Defense,127585,44237,51 +127090,Lucky,40373,188477,3 +127091,,133783,1476860,23 +127092,Dona Teresa Lacayo,95358,95263,8 +127093,Henry Coville,49762,142758,7 +127094,Peter Allendine,60853,78792,2 +127095,,256930,1401369,8 +127096,Miss Borg,85656,228077,15 +127097,Josh Learner,8954,56418,3 +127098,Dawson,62330,235139,3 +127099,Hanna's Vater,10500,35670,9 +127100,Prince Albert,51247,388,7 +127101,Horacio,69278,555976,2 +127102,"Freddie Ugo, Rhinestone Owner",16551,5372,3 +127103,Feldman,26841,128719,4 +127104,Myerson,43880,5832,2 +127105,Lt. Paolo,82485,60881,12 +127106,Tattooed waiter,40985,2313,9 +127107,Colonel Chaiko,16082,43553,2 +127108,Ost,31131,591572,6 +127109,Jessie,46972,1067963,5 +127110,Dixie,43046,40403,11 +127111,Jack,13957,290,1 +127112,M. Noverre,134480,110204,14 +127113,Bridgette,353728,1374432,17 +127114,Nancy McLeod,29805,1738559,21 +127115,Signora funerale,109979,67175,7 +127116,Busker,392660,172303,9 +127117,Supermarket Customer (uncredited),354979,1636784,69 +127118,Joy,426265,1757740,10 +127119,Iris,98339,17018,2 +127120,Rico Sarno,79500,91537,6 +127121,Southern Officer,65488,1750,12 +127122,King (voice),59297,553794,7 +127123,Jack Tate,45556,26086,0 +127124,,172386,1155659,4 +127125,Marshall P. Jose,236808,130111,2 +127126,Signora Zuccalà,173847,70083,6 +127127,Judge Robinson,6145,10981,7 +127128,Grisha,280422,1337741,8 +127129,Engineer (uncredited),126889,1872492,21 +127130,Brother,48156,117737,4 +127131,"«Kopalych», Nikolai Pavlovich Starobogatov, former engineer",71393,1189304,1 +127132,Can,31412,1092827,5 +127133,,16017,1444468,7 +127134,,25626,1287732,38 +127135,Yoneuchi,131739,13283,2 +127136,H. P. Piretti,41619,57852,6 +127137,Martha Gilbreth,50549,48958,2 +127138,Haydar Bey,126560,1280604,3 +127139,Park Victim,90616,44762,15 +127140,,293412,15110,1 +127141,Luo Changyu,12276,72017,2 +127142,Trade Agent,16320,80438,28 +127143,Jackie Faraday,84209,56780,13 +127144,John,94204,36422,2 +127145,David,42188,1615300,21 +127146,Simon,63273,74036,3 +127147,Last Guy,170517,16669,17 +127148,Nadan,60488,78849,5 +127149,Mallick,278334,53,4 +127150,Attanasio,53486,146464,7 +127151,Raj Chaudhary,277229,86303,2 +127152,Echeverria (gardener),44502,233533,7 +127153,Dr. Hendricks - the Coroner,228647,120556,50 +127154,Koji,218508,226740,4 +127155,Katie,405388,221192,2 +127156,Dean,5638,81556,17 +127157,Mayor,6589,21134,5 +127158,"Himself - Climatologist, Ohio State University (as Jason Box Ph.D.)",84185,1175507,7 +127159,Himself,105583,110589,5 +127160,Fergie,4551,20497,44 +127161,Corporal,42242,174643,15 +127162,Young Woman,146243,589656,7 +127163,Pig Announcer (voice),81003,155403,12 +127164,Ray,57201,62752,13 +127165,Wayne,31428,15515,11 +127166,Darcy,313922,2387,9 +127167,Françoise Martin,70090,237869,5 +127168,Billy Two Hats,32143,146713,1 +127169,Dr. Faisal Khan,393445,1254503,5 +127170,Young Groom,10482,19655,14 +127171,Doctor,115109,30136,29 +127172,Paramedic,299780,1379272,21 +127173,Don Luis Gonzales,80592,589726,3 +127174,Uncle Pete,409536,21278,4 +127175,Herself (Archive Footage),450875,555315,6 +127176,,115427,1042223,7 +127177,Richard,16022,3266,7 +127178,Mr. Masters,42703,33969,21 +127179,Lucius,51800,1045910,2 +127180,Maria Krafft,29043,102674,4 +127181,Nathaniel Shepherd,365942,64,4 +127182,Red McCauley,336890,1903969,19 +127183,Cesare Domenichini,43548,129589,1 +127184,General Terry,75622,11107,2 +127185,Carlo Di Rudio,56853,544831,11 +127186,Jimmy,297853,21385,11 +127187,Dancer,10096,1239752,40 +127188,Rose Kennedy,6023,47777,9 +127189,Jose,156547,1287067,13 +127190,Emmy Lou Lee,43809,129328,6 +127191,,109587,1055267,12 +127192,Yakuza Boss,4291,36080,11 +127193,Russian Scientist,146216,1465954,49 +127194,Aladdin,422906,49357,6 +127195,guy filming a brawl (uncredited),48962,1018064,14 +127196,Lily,32716,1187918,8 +127197,Count Von Asterburg,68191,41231,2 +127198,Daisy,15414,195525,8 +127199,Jerónima de las Cuevas,29272,16974,2 +127200,Alice d'Abanville,5881,44079,1 +127201,Maya,31216,1184848,6 +127202,Alice,170689,17522,1 +127203,Director on Mosfilm,71381,125871,7 +127204,Dr. Harbison,65650,15412,10 +127205,Brian,44115,1178035,13 +127206,,218508,1723888,7 +127207,Himself,15258,545852,55 +127208,Adam Eddington,126934,57136,2 +127209,Captain Ryan,96132,102101,4 +127210,Henrik,219335,1317592,12 +127211,Private Jeffers,128612,1087439,4 +127212,Cécile,9736,8791,1 +127213,Kirk,74527,29719,5 +127214,Lilac (voice),15906,74368,11 +127215,Trish Anderson,50725,58312,12 +127216,Joe Greer,42476,102640,5 +127217,Leung Ho,338421,1615891,11 +127218,Lotus Land Dancer,32657,62133,84 +127219,Spike Duval,112708,31368,6 +127220,Beppe,39436,1448626,11 +127221,Francesca Landers (as Paula Corday),184802,106099,4 +127222,Rosalind Bruce,43497,33741,0 +127223,,353879,1374337,10 +127224,Photographer,98125,29579,10 +127225,Doberman,23957,127738,7 +127226,Clara Thomas,20544,17773,3 +127227,Marcel,44256,586742,11 +127228,Transsexual (Asian) #1,1271,1330777,75 +127229,Additional Voice (voice),16866,185065,14 +127230,Mr. Davis,130507,34277,20 +127231,Thorn,193040,1173459,4 +127232,Maid at Motel,32657,153849,57 +127233,Komal Singh,32740,110144,5 +127234,Mąż kochanki kuriera,314371,85905,22 +127235,"Angel, the Guard",51349,86940,6 +127236,Tom Lincoln,43806,30017,23 +127237,Barnes,13652,8785,9 +127238,Thomas Bardo,13848,9029,1 +127239,Aleksa,76757,33394,12 +127240,Dave,294652,1485596,10 +127241,Otto,64936,97561,1 +127242,"""Mozzarella""",124202,235871,6 +127243,Domenico,56853,34491,1 +127244,Print Reporter,417870,1810482,26 +127245,Shaggy Rogers,67900,26457,3 +127246,Πάνος Φλωράς,297560,932753,2 +127247,Weird Old Man,283995,1806600,32 +127248,Lukas,273,3872,0 +127249,Masters,83995,91663,23 +127250,Woman X / Chikako Sugawara,70322,1269103,12 +127251,Rosie,84305,4937,4 +127252,Peter,240913,98274,14 +127253,Lady with Baby Carriage,10362,1617456,11 +127254,French Captain Pinning Medals,150712,120545,11 +127255,Boxer's Henchwoman #2,15003,1059946,12 +127256,Sebastian,64454,32059,1 +127257,Drug Addict,222487,1207914,2 +127258,,265351,150279,5 +127259,Hung,40346,592329,4 +127260,Mie,19812,121553,2 +127261,,38099,119651,18 +127262,Dorothy (voice),59981,128206,0 +127263,Ramazan,31547,556047,1 +127264,Muzzy Van Hossmere,32489,97832,3 +127265,Start Girl Claire,21044,82785,9 +127266,Santuzzi,53853,115770,14 +127267,Stenographer,354979,1835281,64 +127268,Håvard,13318,225840,4 +127269,Troupe,19995,1207263,43 +127270,Himself,85910,1429,2 +127271,Captain Roach,45335,1947,10 +127272,Pythona,17421,81843,12 +127273,Mr. Larrabee,257574,975536,4 +127274,Madre de Luis,54236,1005046,13 +127275,,168814,64496,0 +127276,,33201,24712,6 +127277,Dragon Gunship Pilot,19995,173391,20 +127278,Sadie's Singer,4688,1085462,17 +127279,Andy,39800,5129,1 +127280,Bendetto,121401,127610,6 +127281,Flora,54804,77165,10 +127282,Kind Woman,424488,106799,55 +127283,Fred. der Esel-Stimme,78694,10254,2 +127284,,419522,1898303,28 +127285,Wayne Caraway,393732,2053,3 +127286,Sailor Mars / Rei Hino,37100,57734,2 +127287,Kaiti,331958,1119889,2 +127288,Trey,45013,141181,23 +127289,Betty,45610,1386161,11 +127290,Miki,98631,120689,10 +127291,,58757,228353,16 +127292,Karl Hulten,27450,2628,0 +127293,Emily Rothgraber,42305,30519,6 +127294,Manu,344120,1077537,2 +127295,Mrs. Ellis,42325,34182,4 +127296,Peter,102362,1272981,31 +127297,Suegra de dominguero,254869,1423096,55 +127298,Gabe Hassan,14041,76309,2 +127299,Laughing-Gassed German Soldier,85715,1449309,9 +127300,Baker (voice),286940,61962,8 +127301,Check In,2577,128645,12 +127302,Doc (Holiday),42204,73234,7 +127303,Skip,9787,1810,7 +127304,Travis,71668,1757221,16 +127305,Kae,13436,1656883,22 +127306,Mia,11328,1348447,17 +127307,Hip Hop Boy (as Daniel Chacon),15022,190365,26 +127308,Zombie Car Tech,337339,1718174,36 +127309,Kato Takatora,1450,26756,6 +127310,Himself,300210,932736,2 +127311,Olinto Fossati,142979,37191,2 +127312,Police Officer,2001,211964,90 +127313,1940s Officer #1,293863,1366661,17 +127314,Hugo,31890,79866,4 +127315,Father Murder,284564,56890,2 +127316,Herself,67273,1245,2 +127317,Azuma,12622,3317,0 +127318,Sybille,42206,37345,7 +127319,Javier,205724,1696737,12 +127320,Katie Wong,19629,117776,2 +127321,Commandant Lydie Timonet,71191,562158,4 +127322,Mercedes,353728,1697396,13 +127323,Dr. Bergson,42325,22600,1 +127324,Dr. Vickery,153161,101490,41 +127325,Ens. David Barnes,10005,61855,12 +127326,Séraphin,4443,24652,3 +127327,Evelyn Bailey,332079,82383,6 +127328,Beth,241254,137424,4 +127329,Prostituierte,88176,19525,7 +127330,US Marshal,273481,1006144,22 +127331,Welcome to the 60's Dancer,2976,1461425,119 +127332,Gu Weibang,394051,1587572,2 +127333,Tyler Jackson,1969,20309,2 +127334,Nancy Barklay,130900,82405,1 +127335,Zeynep,44246,133823,13 +127336,Delphine,54898,26101,0 +127337,Lammert,27637,1724683,13 +127338,Kunio Hamada,12205,58449,2 +127339,Adam Kirk,58244,38941,1 +127340,Reporter,339419,1650219,62 +127341,Jasmine,213095,33817,1 +127342,Tester,90616,1692083,18 +127343,Greeting Message Violinist,70981,1272933,24 +127344,Chris R,17473,81925,9 +127345,Italian Woman,59678,176188,4 +127346,Colin Hanton,33511,1798885,15 +127347,Ling Yunzi,63441,1114203,2 +127348,Setsu,77057,581143,11 +127349,Sam Ward,128437,7333,1 +127350,Maguire,118283,7169,6 +127351,Tweedledee,25694,30157,18 +127352,Flick,23512,110581,5 +127353,Andersen,452142,52639,8 +127354,Colonel Frank Reichert,172520,113006,1 +127355,Toshi Yamashita,18722,82875,5 +127356,Clare Bennett,43809,237562,1 +127357,Bob Blake,133255,160890,0 +127358,Cocò,265226,15480,3 +127359,Punter,115276,1742839,15 +127360,Marcus Bohem,9785,41297,5 +127361,Fish Halman,15092,11077,17 +127362,Brian Bretter,9870,19278,4 +127363,Lolla,87654,1477356,21 +127364,Pops Racer,7459,1230,5 +127365,Rose Hill Christmas Tree Shopper,68721,1735545,37 +127366,Reed Youngblood,28110,1735,11 +127367,Prison Warden,171446,89501,3 +127368,jako Stepan Szuma,406449,1650383,19 +127369,Rickie Lee,63877,149594,4 +127370,Warship Sailor,257081,1007946,32 +127371,Svens Mutter,3962,34391,5 +127372,MI5 Officer,84336,1322313,16 +127373,Sophie's father,220488,1622028,13 +127374,Mr. Francis,33801,142271,7 +127375,(as Nadine Roche),1421,1111116,30 +127376,Himself,43514,4110,0 +127377,Courtroom Clerk,301334,1893934,22 +127378,Little Joey,193893,1094160,11 +127379,Monsieur Arthur,84035,70257,4 +127380,Mulher que Afonsinho tenta conquistar,117534,1247852,13 +127381,Joe 'Loser' Kearns,42725,6905,2 +127382,Kashi,402455,235724,21 +127383,Vicky,39217,85889,4 +127384,Pâté / Narrator (voice),77459,1091885,8 +127385,первый министр,63449,1853253,6 +127386,Captain Perez,296523,1181296,12 +127387,Mr. Kavon,79466,15744,16 +127388,Joaquín Góñez,43432,105217,3 +127389,'Joseph',43434,1117772,11 +127390,Otec Šebek,15387,124141,0 +127391,Judge Dixon,35977,41280,7 +127392,Scuggs,43923,1719594,21 +127393,Deputy Wyatt,325173,95192,12 +127394,David,72648,2883,7 +127395,Grandma Bunny,38303,71727,2 +127396,Olaf (uncredited),152570,29978,11 +127397,Op Center Staff,19995,1207264,46 +127398,Sabine Müller,212503,23524,1 +127399,Sissy,166161,1169977,0 +127400,Mr. Douglas,52914,5255,3 +127401,Diploma / Roggiani,38850,19210,3 +127402,Lode,182545,1165643,5 +127403,Edward Anthony Heller,211729,1275,2 +127404,Cop,1724,1366357,28 +127405,Ma Leeds,91961,128400,2 +127406,"Barbara Hemingway, aka Joan Grey",43903,30001,2 +127407,Laurie Munroe,28437,100794,3 +127408,Donald Tuche,369776,544683,5 +127409,Perfect Date Audience Member (uncredited),4592,1263449,20 +127410,Antonis Kokovikos,163791,147220,1 +127411,Tenshinhan (voice),303857,122726,7 +127412,Quincy,921,234,37 +127413,Senator Cook (as Dr. David Gordon),359412,1388486,17 +127414,Dennis,142216,1176786,22 +127415,Hailey Reynolds,325173,1426494,5 +127416,"His Excellency, Governor Rex Hunt",45562,385,0 +127417,Mr. Lege,80596,7640,22 +127418,Dr. Sanders,27966,95728,5 +127419,Rigby,109453,11826,5 +127420,T.C.,152748,1037391,8 +127421,Brooke,15261,78031,1 +127422,Cattleman at Meeting,75315,121254,47 +127423,Professor Babish,86703,129122,1 +127424,The O'Monahan,225499,89525,11 +127425,Max,31162,96311,5 +127426,,227552,1094420,17 +127427,Aneta as a child,104081,1035542,1 +127428,Slick Novak,43457,30846,2 +127429,Jonas,227156,1017347,2 +127430,Professor Bell,73348,13786,13 +127431,Lt. Robert James,10005,61852,5 +127432,"Hugo, Duke of Burgundy",58905,78193,13 +127433,Lydia Harris (voice) (uncredited),153,5215,21 +127434,,11328,1444500,48 +127435,,202662,231618,3 +127436,Jimmy,11338,56183,23 +127437,Ashizawa,72826,82963,4 +127438,Music Video Dancer,4551,23591,55 +127439,Ernest Jones,48231,1012902,21 +127440,Ben Ashir,85602,9872,5 +127441,Will Campbell,65599,543731,12 +127442,Kyle Johnson,63326,78414,2 +127443,Himself (uncredited),322400,932497,5 +127444,Mikey,39545,43464,2 +127445,Skymnos,80988,590899,3 +127446,Macdonwald,225728,72705,19 +127447,Tommaso,356461,1501197,5 +127448,Adelaide,96118,70276,2 +127449,Marty,27886,1050370,1 +127450,Skype CIA Agent (uncredited),329865,1540241,60 +127451,Harvey Severson,212934,46906,6 +127452,Sandro,57342,55912,0 +127453,Major Rufus Cobb,43829,40180,4 +127454,Scallion #3 (voice),268893,1406358,4 +127455,Teacher,117452,1070388,0 +127456,Dandung,39024,235425,2 +127457,Fan at Convention (uncredited),369524,1781701,47 +127458,St. Thomas Hospital Girl,8382,56734,9 +127459,,340961,30832,7 +127460,Mr. Cheezle,9900,58478,5 +127461,Beth Anders (as Julia Adams),38808,31169,1 +127462,Bob (warehouse worker),90616,1692099,31 +127463,Himself - McFly Band Member,10025,62068,9 +127464,Hessu Rämö,217038,1201669,6 +127465,Jesus,1896,19803,2 +127466,Complainant,103073,35820,8 +127467,Matt,261249,89527,11 +127468,Mr. Polkowisz,186869,1862896,21 +127469,Lucky,20364,85889,2 +127470,Waiter,101325,1825285,25 +127471,Karim,142528,41206,5 +127472,sa fille,1568,17614,1 +127473,Gabrielle de Polignac,99579,19163,2 +127474,Bodega Cashier,102382,94432,36 +127475,Dr. Renald,149509,62919,17 +127476,Carmen,56339,226832,1 +127477,Cult Dude,84348,1090692,23 +127478,Gêmea 2,70666,1863894,28 +127479,Cell-Mate,88005,1301577,25 +127480,Idris,104485,1408726,6 +127481,Tammy,85350,110990,28 +127482,Co-Pilot,15807,70985,1 +127483,Tony,82495,5419,0 +127484,Isabelle,38322,211474,9 +127485,Captain Emmett,268920,3911,3 +127486,Maria Durling,93562,998695,4 +127487,Dylan,345489,1883904,8 +127488,Court Lady,217923,1436403,53 +127489,Lycan Pack Leader #3,346672,1905751,17 +127490,Ronald Reagan,132363,4566,15 +127491,Nicky's Girl (uncredited),4982,1454306,100 +127492,Landlady,126516,145250,5 +127493,Vaudevillian Veteran,32610,30243,36 +127494,,273096,1443630,11 +127495,Chris,20640,1206583,13 +127496,Dr. Harvey,178927,98001,8 +127497,Bank Manager,5289,42708,7 +127498,Stephen Richard Rojack,131861,38761,0 +127499,TV Host,344147,1476098,11 +127500,JonBenet Ramsey Auditionee / Herself,430826,1801197,8 +127501,Rogers,177203,6197,3 +127502,Matto,1721,4973,3 +127503,Elsa Shahn,12796,27932,2 +127504,Becker,125521,87583,5 +127505,Host of Stumble Inn,288521,1420993,18 +127506,Ted Dillard,1976,20367,6 +127507,Girl on Plane (uncredited),336890,1903977,31 +127508,Arthur Clennam,47084,15576,1 +127509,Marito geloso,43646,1085185,4 +127510,Gino,15640,88442,13 +127511,Danielle,7972,53448,7 +127512,Ronald White,1125,9299,18 +127513,Gomez Addams,107596,41230,0 +127514,Gina,68123,13923,12 +127515,Inspector Sampson,28421,30228,4 +127516,,98631,233523,11 +127517,Bronach (voice),110416,1326574,5 +127518,Tony,49199,65986,10 +127519,Hilmi,81549,592098,8 +127520,Turk,19335,50570,10 +127521,Nandini,5319,87773,0 +127522,Moccasin Mary,43319,56923,7 +127523,(voice),63498,1035976,6 +127524,Réalisateur,337,6555,10 +127525,Raymond Paine,42648,4765,0 +127526,Mumtaz,42966,85576,3 +127527,Archie,79935,125029,3 +127528,Martha,244201,130092,10 +127529,Erika-Ryža,437830,1330575,5 +127530,Coco,61267,1276783,13 +127531,Coach Alonzo Stagg,43812,1673793,18 +127532,Omar,109391,1204702,35 +127533,"Agnes, the Maid",114872,120005,6 +127534,Mog,21533,43933,5 +127535,Nina,419522,1689523,2 +127536,Teacher,56558,29953,42 +127537,Bruno,30449,33412,0 +127538,Samuele,53805,126447,4 +127539,Paul,278334,10822,1 +127540,Brando Volpi,303542,1878452,8 +127541,Bio Bob,188102,1845743,26 +127542,Bonnie (voice),10193,1096415,13 +127543,Ray's Friend,38031,32300,25 +127544,Photographer,56558,1422302,27 +127545,Nicky,16342,1335168,6 +127546,Cabbie,19827,19839,10 +127547,Stack,272878,1367013,17 +127548,Caroline Gund,42819,350,4 +127549,Maitre D,13802,86479,20 +127550,Mrs. Columbo,39495,148600,10 +127551,Claudius,261439,8606,2 +127552,Carey Ross,272663,176860,5 +127553,Wolf,90387,1048008,3 +127554,Ashley,205724,1084848,5 +127555,Jack Gordon,61151,94334,7 +127556,Lt. Steve Maryk,10178,37446,1 +127557,Quino,43459,96973,1 +127558,Leadfoot/Target (voice),38356,31531,23 +127559,Mrs. Robbins,49391,1733105,20 +127560,Lydia Rawlings,2966,29097,6 +127561,Walter Speckman,120370,199586,0 +127562,Leonid Lisenker,56292,6079,8 +127563,,369019,1266314,9 +127564,Pony Girl,77930,1093123,27 +127565,Vangjel,276123,1330007,3 +127566,Reporter,58244,101219,19 +127567,Steve,37269,117309,3 +127568,Panshin,149170,240374,5 +127569,The Lawyer,49762,60205,11 +127570,Missionary,99819,1021737,1 +127571,Verpleegkundige,74661,572287,8 +127572,Weasel,55563,9996,9 +127573,Whiny Beaver Boy,21044,52868,2 +127574,Elsa,2516,25634,1 +127575,Delores,88036,110742,6 +127576,Ahmed (voice),393559,1615540,5 +127577,Rocker,335970,1718452,86 +127578,Himself,300210,544960,1 +127579,Dr Elisabeth Arnold,42619,40168,3 +127580,Jamie Martin,87428,85825,3 +127581,Man / EPA Driver (voice),35,156910,18 +127582,,266568,1313437,9 +127583,Rancher (uncredited),121230,34505,13 +127584,Himself,15258,545856,89 +127585,Norita,97548,584336,4 +127586,Headwaiter (uncredited),43522,119549,72 +127587,Miriam 'Mimmi' Wu,15472,234908,20 +127588,Additional Voice (voice),177572,1502452,41 +127589,Roisin Hanlon,1404,16901,1 +127590,Chavez,23823,39660,7 +127591,Martha Stewart,257344,1218610,25 +127592,Guy Gibson,66925,564325,4 +127593,"Konstantin Treplev, her son",184795,2076,3 +127594,Dante,7220,6908,28 +127595,,327528,535181,7 +127596,Picture Hanger,179066,32435,39 +127597,Sgt. Smith,249021,66554,2 +127598,José,17893,56468,2 +127599,Perlasca,226936,78697,6 +127600,Andrew,280583,1496438,2 +127601,Himself,284052,1480047,28 +127602,Jackie Flaherty,55725,39388,2 +127603,Sara Sandoval,1969,3136,1 +127604,Charlie Nelson,80316,2672,2 +127605,Tommy,112130,820,0 +127606,Will,169800,1152019,0 +127607,Beatrice,409696,15091,3 +127608,Malti Srivastava,317720,20045,2 +127609,Hoshiko,329440,1522254,4 +127610,Teller,19971,1491525,10 +127611,,124597,82480,14 +127612,Biker,1420,15498,21 +127613,Rath (voice),408220,1298380,12 +127614,Shemeikan äiti (Shemeikka's mother),124979,1531737,5 +127615,Pete Egan,9785,59238,3 +127616,Mr. Earnshaw,36597,2449,9 +127617,Herself,104739,1866928,1 +127618,Princess Novemali,56135,589002,13 +127619,Washington,128657,120188,8 +127620,Thomas Mackelway,8080,6383,1 +127621,Christella,44690,21144,2 +127622,Alan,38031,20289,6 +127623,Agent Pike,26486,17867,12 +127624,Betsy Bartlett,55604,30155,2 +127625,Charlie,222858,212,6 +127626,Juan Luna,359105,1064538,12 +127627,Landlady,122221,1195204,9 +127628,Himself,212063,74296,5 +127629,Charlotte,65579,1834,1 +127630,,74481,86078,2 +127631,Baby Neptune,19255,84412,13 +127632,Smith,132859,1003524,8 +127633,Guadalajaran Mother (uncredited),293660,1475531,46 +127634,News Anchor #2,540,1826582,18 +127635,la cigale,65612,15200,1 +127636,Smith,220674,1206336,6 +127637,Sig Mickelson,3291,8447,1 +127638,Elaine,150117,45588,13 +127639,Paula Cooper,168552,1150434,3 +127640,Over-It Sister,26688,96019,8 +127641,Col. Rostinov,139718,16074,15 +127642,Tom Fowler,43022,4966,6 +127643,un aubergiste,4279,34831,16 +127644,Darya Greenwood,16082,6588,5 +127645,Hungarian Client,71670,74595,25 +127646,Baltasar,308174,1888500,41 +127647,Albin,43900,14242,5 +127648,Himself,377151,1579116,1 +127649,Robert Dégrieux,132332,9746,1 +127650,Banboku,45987,122430,12 +127651,Baltimore,348611,277081,2 +127652,The Black Boy (uncredited),90461,1271339,15 +127653,Hasslert,193756,98953,10 +127654,Latin Dancer,129530,1157088,6 +127655,Mrs Hackett,62143,79641,35 +127656,,37419,556472,2 +127657,Miller Huggins,61225,5063,7 +127658,M. Janin,134480,129426,12 +127659,Joe,86975,146798,1 +127660,Stunning Young Woman,242042,94427,40 +127661,Heiroku,45987,134258,4 +127662,Donny Dion,11887,208956,6 +127663,Tyzenhauz,31273,107892,40 +127664,San Lung,37030,1336,0 +127665,Yuri Aikawa,22025,1082634,1 +127666,Lt. Roth,86970,21091,7 +127667,Eddie,384737,62,1 +127668,Blue Rita,86647,1021449,0 +127669,Robert Genaro,83785,147119,3 +127670,Japanese Tourist #11,402582,1194714,19 +127671,Jae-hyeok,12650,73252,3 +127672,Ricco,1661,4795,1 +127673,,256907,1148844,2 +127674,Riddon,85494,115308,2 +127675,Edith Harcourt - Daughter (uncredited),36874,1119397,3 +127676,Lohmann,8383,46251,5 +127677,Travis,18898,1623644,19 +127678,Tommy Tricker,32038,178952,0 +127679,Shirley,156388,95624,0 +127680,Smugler,29923,1647,4 +127681,Ramrod,207699,1196847,2 +127682,Captain Dunn,37254,120560,18 +127683,Donny,72105,1771,4 +127684,Joseph Corso,183258,5168,2 +127685,Skip Robinson,52485,44828,0 +127686,Anioł Rafael,155426,1116064,3 +127687,Herself,81538,1156404,5 +127688,,293109,1364473,4 +127689,Bruce Banner,14609,9289,2 +127690,Monroe,50318,18514,3 +127691,Barra,64526,27198,2 +127692,District Attorney (voice),37992,86356,12 +127693,Mrs. McCarney,56154,88999,28 +127694,Lastbilschauffören,27599,22331,9 +127695,Associate Judge (uncredited),42825,1331750,11 +127696,Robert Peders,8414,54883,2 +127697,Judge James K. Hardy,116232,29259,0 +127698,Neptune's Net Girl,68721,1171861,24 +127699,Captain Excellent,39414,10859,2 +127700,Pollux,13486,10673,5 +127701,Marsha,347630,1695658,29 +127702,Caesar,65211,100326,9 +127703,Grace,22579,88941,0 +127704,Middle Class Man,13058,1589684,37 +127705,Dr. Wayne Talbot,39130,99749,6 +127706,Willie Martin,132939,151470,2 +127707,Carolina,183073,32379,4 +127708,Uncle Tat,40346,70437,2 +127709,June,59006,5916,4 +127710,,155597,1586010,16 +127711,Captain Peng,289720,182948,6 +127712,Jim Averell,77645,108992,2 +127713,Barnaby,228066,1670,9 +127714,Maggie Jackson,43321,543105,6 +127715,Liz Henshaw,214100,1185769,2 +127716,Jerzy Burski (young),224,2811,4 +127717,Juez Fortuna Lacalle,25376,1016570,8 +127718,Himself,430156,1151261,6 +127719,Judith,21198,25345,1 +127720,Kenji Murai - Professor,52302,30469,4 +127721,Louis,37340,26557,3 +127722,Hanna,148,98,0 +127723,Cammie,91679,1782602,42 +127724,Baby Melman (voice),10527,89819,22 +127725,Man who hires Wells,6977,17401,8 +127726,Johann Rettenberger,54524,78233,0 +127727,Sophia Allen,344255,1197119,3 +127728,Rudy Sciacca,44933,1853761,6 +127729,Whitey,18998,1224672,9 +127730,Monsieur Bébé,52264,145679,6 +127731,Gary,115283,18328,6 +127732,"(segment ""Miminashi Hôichi no hanashi"")",30959,552656,38 +127733,Young Hee,25597,93995,2 +127734,Fritz Haber,15044,27397,10 +127735,Sílvia,436339,109713,6 +127736,Sneed,119364,3799,1 +127737,Bishop Allen,12182,111446,17 +127738,Herself,383809,1583059,5 +127739,Bobbie,30155,1086574,15 +127740,Performer in Tuxedo,83802,40206,7 +127741,Julien,48601,1152095,8 +127742,Noah Percy,6947,3490,2 +127743,Catalina,125619,1293071,9 +127744,IMF Operator,177677,934049,22 +127745,Cookie,16890,59882,2 +127746,Billy,68822,1403301,12 +127747,Brian,14904,110407,6 +127748,Woody,72596,79825,20 +127749,Older Goat Herder,209112,8666,126 +127750,Lucia,339530,141464,9 +127751,Soledad,40859,130041,1 +127752,Scrat (voice),46247,5713,0 +127753,Himself,140554,1518244,16 +127754,Cang,55208,1193839,4 +127755,Senate Chairman,142145,1630213,9 +127756,Henchman Benson,25953,26029,6 +127757,Guard,1726,1209417,22 +127758,Reinhardt,60071,5417,7 +127759,Man who doesn’t want to pay his bill,104277,58609,8 +127760,Granny O'Grimm,57091,160823,0 +127761,Mayor,260528,21449,6 +127762,Bobby,43923,58225,2 +127763,Himself,417870,567241,22 +127764,Lt. Richard Webb,41551,4073,3 +127765,Brian,21431,223015,8 +127766,Mercenary 2,70981,1074616,15 +127767,Man at Window,278706,1334333,7 +127768,Dean Lyman Brockwell,23152,100919,9 +127769,Martín,365709,1185970,9 +127770,Michele Labruzzo,167583,25819,3 +127771,Concert Goer,10025,228431,21 +127772,Ella,94739,954005,5 +127773,Balmoral Switchboard Operator,1165,1265372,18 +127774,Hazel,332839,98285,1 +127775,Tyler Ross,26131,37041,1 +127776,,46572,1014913,3 +127777,Hero,222220,1566182,11 +127778,Tribesman Awanata,201485,206334,6 +127779,Seven Old Men,11633,1120477,11 +127780,Chiara's Dad,153854,1302834,9 +127781,Little Richard,19505,1260782,6 +127782,Rose O'Connor,227325,29384,8 +127783,,404567,105159,2 +127784,Ramona Hodges,276550,106949,3 +127785,Bart Thompson,55663,197477,0 +127786,The Mountain Girl's Brother (uncredited),3059,137402,71 +127787,"Zé (segment ""A Musa"")",211166,1925,1 +127788,Allison,381008,1034504,4 +127789,Maria,297736,9138,1 +127790,Yat-Wah's Boss,18725,83624,5 +127791,Silvio Lugo,256474,17341,7 +127792,Agent (uncredited),2503,1434599,41 +127793,Koji Morita,111398,33764,1 +127794,Sarah,207270,42216,6 +127795,Randy,31150,7623,4 +127796,Ray Walsh,291413,98804,4 +127797,Herself,100085,1023405,2 +127798,Sales Clerk,30361,156711,8 +127799,Anton,126712,34837,6 +127800,,19621,1381181,22 +127801,Eddie,15934,72983,3 +127802,Kevin,1116,1656687,18 +127803,Ernest DeGraff,39130,113513,12 +127804,Dalton Trumbo,294016,17419,0 +127805,Sissy,9352,1646100,14 +127806,Lotus Land Waitress,32657,204975,31 +127807,La Comtesse Sabine Muffat,66812,1343805,5 +127808,Diana Fernandez,4253,35795,8 +127809,Police Clerk,146233,1407899,21 +127810,Ray Reighton,180759,1504458,2 +127811,Ken,16058,78956,6 +127812,Atlasan,154371,40577,12 +127813,François - Butler,127812,81942,22 +127814,Joscha,203539,32866,3 +127815,Stacie,9893,60072,3 +127816,Logan / Wolverine,127585,6968,0 +127817,David,45949,1146887,2 +127818,Saunders,42703,151864,18 +127819,,280422,1337738,5 +127820,Dr. Joe Coburn,51054,10169,2 +127821,Mali Bauer,296225,1097115,5 +127822,Greg Straffer,45431,149468,7 +127823,Troy,2196,7058,7 +127824,Dr Stukeley,13802,33191,18 +127825,The Maid,3782,1152713,15 +127826,Tea Gardner,366170,1221100,4 +127827,Dato,82321,927754,2 +127828,Billy (as Claudio Martinez),54388,980729,4 +127829,Venkatesh,39816,965200,0 +127830,John,246133,4764,3 +127831,Rin,27276,121786,65 +127832,"Reza, the husband",45899,1104854,9 +127833,The Burglar's Accomplice,53407,148049,1 +127834,Present,16412,44151,1 +127835,Nina,117629,1169892,4 +127836,Joe Devine,26486,7447,1 +127837,Gideon,72207,58952,14 +127838,Orville Turner,193177,1818,8 +127839,Serena (cygnet) / Paramedic / Newscaster,54491,60739,9 +127840,Bar-Jonny,49717,1089960,9 +127841,Lt. Harry Faversham,104485,29760,0 +127842,"Tom Merriam, 3rd Officer",40765,106104,1 +127843,Bill Wazakowski,325133,54728,18 +127844,FBI Agent Chung,414610,94121,10 +127845,Harrie de Haringman,25797,78803,5 +127846,Andrei,49009,94699,1 +127847,Giovanni,158598,1139976,3 +127848,Female Tourist (voice),10527,173428,35 +127849,Elaine,16342,16901,0 +127850,,133941,31992,8 +127851,Lisa,365339,10485,1 +127852,Nigel,28677,42217,2 +127853,John Reid / The Lone Ranger,57201,53807,1 +127854,Miron,51276,143667,3 +127855,Thomas De La Plata,68247,8924,1 +127856,McCoy,56725,780,1 +127857,Messenger,14449,1183501,9 +127858,"Lottie Callahan, a.k.a. Lurline Cavanaugh",4111,34744,1 +127859,Vicki,40229,182038,1 +127860,Mean Dealer,265208,98175,22 +127861,Dr. Ranney Grahame,29835,105018,2 +127862,Jason,70247,558178,0 +127863,"Léon Dessertine, mandataire en viandes et ancien de l'assistance",78377,24379,2 +127864,Gota Washio,25716,226738,19 +127865,Jock Guy,369033,56164,20 +127866,Cabella,134782,1100033,0 +127867,Silva,11577,31321,27 +127868,Joffre,47703,9609,1 +127869,pubblico Miss Agro Pontino,53486,1878970,15 +127870,Rose's Mum,199575,1438860,20 +127871,Tchangalo,32604,5117,4 +127872,Deputy,42701,544144,8 +127873,Himself,58467,1704740,42 +127874,Shy Youth,32610,85958,32 +127875,Nadya's mother,65142,86676,10 +127876,Powell,172520,1366551,11 +127877,Kevin Finney,111014,2879,0 +127878,Joshua Y. Edwards,26516,26660,7 +127879,,135536,1102446,4 +127880,Evans,149793,1091312,16 +127881,"Yuri, Russian Astronaut",435,559897,23 +127882,Riverguy 1,87952,129561,4 +127883,Sergeant Dominick Benti,31597,588,4 +127884,Dancer,59962,1566370,35 +127885,Old Lady,193893,80634,68 +127886,Marjorie Dunfour,93676,4726,1 +127887,Nessio,23750,1225436,21 +127888,Girl in Boutique,64936,1106461,7 +127889,Algernon 'Algy' Longworth,161602,5825,3 +127890,Jung's Secretary,48231,46028,7 +127891,,78318,980385,40 +127892,Mrs. Lord,242382,71779,8 +127893,Miss Logan - Andrews' Receptionist,176627,589672,20 +127894,Frau Neidhart,122487,26952,15 +127895,"Curly, a rube",84708,13357,7 +127896,Hanukkah Party Guest,356752,1841525,48 +127897,Cora Corman Fan,11172,1246221,65 +127898,Josette,114982,1060183,1 +127899,Jacques,31890,108563,7 +127900,Mitzi,67822,36173,1 +127901,Gerry Ryan,45020,3085,3 +127902,,63414,586628,11 +127903,Gonçalo,48962,139035,4 +127904,,19725,96585,15 +127905,L'Oncle (voice),21348,87428,7 +127906,Dr.Flueli,12631,149370,7 +127907,Mr. D,35320,10859,1 +127908,Dancer,11172,1781192,43 +127909,Tommy Corbin,300769,130496,4 +127910,Cuddles,130925,214701,14 +127911,Scarlett (3 yrs),290762,1640427,18 +127912,Sakae Aiba,55192,30772,10 +127913,Andy,7972,1233,0 +127914,John 'Kit' McKittrick,26533,81970,0 +127915,Kouji Hashimoto,134350,1098601,5 +127916,,85844,1604148,9 +127917,,123949,1081520,5 +127918,Marie-Laurence,14688,13688,0 +127919,Chinese Grandpa,102382,4893,47 +127920,Astor,113091,51533,0 +127921,Ray,34672,17140,6 +127922,Himself,326255,1633760,8 +127923,Ken (Sushi Chef),59962,1048580,25 +127924,Racist's Wife,19912,94428,8 +127925,Barbie,39495,4098,2 +127926,Guild,256092,1895155,23 +127927,Batman (voice),14011,23958,3 +127928,Coctail Customer,31899,11033,38 +127929,Gen. Carbajal,78318,20370,17 +127930,Alfie,38031,4173,1 +127931,Gage,333385,1272847,12 +127932,Roos,345438,87678,0 +127933,Saplingjack 1 / Listening Man / Pancho (as Victor Andrés Trelles Turgeon),315855,1123270,14 +127934,William,32610,141520,13 +127935,Barnes,102949,103529,4 +127936,Wonder Woman (voice),15359,41292,0 +127937,Terrian Scientist (voice),16873,91302,18 +127938,Joshua Leonard,289923,26852,7 +127939,Hoofcommissaris Stienstra,348320,139570,11 +127940,Perkins,49391,192934,8 +127941,Сохатов,57770,86946,9 +127942,Joseph Bar Elhanan,288977,121546,8 +127943,Frida,104376,119209,2 +127944,Mikey O'Connor,229328,116263,2 +127945,Mr. Ebrahimi,375012,965673,3 +127946,Rudder (voice),127380,17287,9 +127947,Debbie,231082,1070736,6 +127948,Lee Yiu-wah,182127,116423,11 +127949,Joe,42542,44103,11 +127950,Jack,10870,67715,2 +127951,Blockade Soldier,53870,63566,18 +127952,Natasha,1415,18658,8 +127953,Motel Manager,1586,1225492,14 +127954,Producer's Secretary,170517,1745602,24 +127955,Piet Müller,13542,1035098,3 +127956,Janine Lyncort,172908,28608,1 +127957,Alison's Friend,36691,115979,20 +127958,The Kid,31146,6807,1 +127959,Milton,397717,1348164,22 +127960,John,290714,1361062,6 +127961,Uncle Kenny Thomas,201485,109676,3 +127962,Captain Beecher,27717,98833,9 +127963,Zachariah Finch,44415,146335,7 +127964,Olympic spectator / Japanese Olympic team member (uncredited),227306,1394477,77 +127965,Father Sevatino,54166,227385,6 +127966,Cille,310602,1546096,11 +127967,Cockcroft Guest #3,266856,1503915,41 +127968,Mrs. Lopez,81477,1416154,5 +127969,Diggs,128437,30272,4 +127970,Indian Teenage Boy,257344,1252850,48 +127971,Himself,329690,440414,9 +127972,Ossie Paris,15020,109686,2 +127973,Otello Torquati,75532,367246,7 +127974,Theodore 'Ted' Parkson,29236,103366,1 +127975,"Joe, Detective",65211,90074,8 +127976,Jeanne,369883,1428070,9 +127977,Roy Lane,130717,80647,0 +127978,Blackie's Defense Attorney,28564,14658,10 +127979,Robert Deal,16214,26715,1 +127980,Newland Archer,110540,29815,1 +127981,Jason From Acting Class,17926,1171859,12 +127982,Dennis,815,188452,12 +127983,Main Gauche,436340,1744820,7 +127984,Paco,77673,146354,10 +127985,Mala,218898,77234,1 +127986,Jane,94820,1003241,2 +127987,Kevin,130739,1384558,22 +127988,Shizuko Sonobe,168295,24551,3 +127989,Ben,80941,104034,6 +127990,Hildegard Knef,11440,7059,0 +127991,Himself,25568,1553394,5 +127992,Penny Appleby,64568,30043,0 +127993,Johannesburg Onlooker,99861,1760868,41 +127994,Young Bertha,111479,1223452,14 +127995,Prefect of Police,127812,30417,7 +127996,Banning,33343,40061,11 +127997,Lin,17223,1166917,0 +127998,Canteen Lady,86828,37892,8 +127999,Jane,2196,22809,1 +128000,Tyler,172897,6859,3 +128001,Luzi,248933,894116,1 +128002,Herself,63144,1624620,15 +128003,Skaketti,309581,74957,4 +128004,DJ,27079,96901,3 +128005,Sunny Daze,18682,83436,5 +128006,Mr. Benton,6976,12689,3 +128007,Surgeon,74549,52490,21 +128008,Orderly in Hospital (uncredited),52440,111585,17 +128009,Reve Walsh,76468,10080,1 +128010,Jeronima de las Cuevas,270470,30927,2 +128011,Juan Pablo de Osuna,99004,29327,0 +128012,Bambi's Mother (voice),13205,74285,11 +128013,le barman,34840,580245,7 +128014,'Ma' Logan,197737,34749,13 +128015,Piotr Rasputin / Colossus,127585,84222,16 +128016,Johnny Valenzo,116780,124847,4 +128017,Young Socialite (uncredited),96107,25787,16 +128018,Jack Klug,7871,1047773,20 +128019,Young Martha,333385,1674311,18 +128020,Panama,46326,69971,4 +128021,Waify Girl,39781,8700,13 +128022,Lee,270672,1400687,6 +128023,Dao Kong,10275,1342852,13 +128024,Yoga Instructor,9870,41091,21 +128025,Panelist,157723,7399,3 +128026,Clay,230179,53152,13 +128027,Frederikke,274990,47153,2 +128028,Executiva,448763,1848677,46 +128029,Leah Kilbourne,62768,1327879,6 +128030,Michael Curtiz's Secretary (uncredited),32552,1159354,9 +128031,Driver (uncredited),284052,1540271,61 +128032,Maj. William Sherman Foster,25388,193,0 +128033,Mr. Werner,103432,40380,10 +128034,Dean Richardson,426265,2202,2 +128035,,339419,1650213,59 +128036,Eddie,224282,1209858,6 +128037,Dr. Donald 'Don' Winthrop,153169,22091,4 +128038,Oliver Chamberlain,107985,7060,2 +128039,Navaro,24619,1850003,13 +128040,The Bullet Farmer,76341,44838,12 +128041,Fletcher,13991,78341,9 +128042,Ruth Cvetic,49508,103928,10 +128043,Tommi Turmiola,201124,148370,3 +128044,Pete,42819,9195,9 +128045,Female Traveler,127585,198751,56 +128046,Slave Buyer,288980,928638,6 +128047,James / Jams,53999,1681700,9 +128048,Deputy Jenna West,54243,150201,2 +128049,David Jenkins,2687,4783,2 +128050,Himself,366696,1753559,29 +128051,Rami,318052,1414723,1 +128052,Luísa,53042,71283,1 +128053,Attila,10565,28115,5 +128054,Padre,2012,50558,5 +128055,Wilbur,21250,84172,1 +128056,,4024,28676,3 +128057,Gatekeeper #5,295723,1418226,14 +128058,Sam,23385,90047,4 +128059,Annika,50875,52776,2 +128060,Alice,85735,78216,0 +128061,Eric van Earnewoude,223551,1112245,14 +128062,Samuel Turner,339408,53807,1 +128063,,124115,1249528,24 +128064,Lawyer,256092,1693067,24 +128065,Harry Guild,65787,85409,8 +128066,On-Camera Narrator,43009,8634,9 +128067,Seo Do-cheol,346646,68903,0 +128068,,428687,1776850,28 +128069,Merle Crowe,11358,534315,23 +128070,Taxifahrer,277968,1898502,36 +128071,,35652,225082,3 +128072,Lee Sang-jin,209764,127848,10 +128073,Crystal,42944,43903,3 +128074,Singer at the Party,111470,1811849,38 +128075,General Duncan (uncredited),16442,105810,60 +128076,Ben,284289,225692,1 +128077,Old Esther,17347,13506,7 +128078,Denitzi,295964,1027457,18 +128079,Valeriya,72949,99263,3 +128080,"Guy, taking of hostage",10103,138531,11 +128081,,142656,131018,3 +128082,Waters,43157,13966,6 +128083,Foreman,147829,89730,51 +128084,,28465,169469,4 +128085,Mrs. Harriet Mason,18569,83260,3 +128086,Mu Wan-Ching / Hsiang Yao-cha,66759,119439,1 +128087,Minarai,21057,90567,8 +128088,Pierre,58704,144100,1 +128089,,31462,1221174,25 +128090,охотник,63449,237521,11 +128091,Balaraman,134474,584638,4 +128092,Mrs. John Pulham,96107,117414,5 +128093,,63568,1190345,3 +128094,Pang,53805,1423306,17 +128095,Kleph,37420,101244,11 +128096,Count de Verneuil,223655,47662,5 +128097,Colin McMurray,10761,9013,2 +128098,Reverend Dikran Antreassian,354859,1603,3 +128099,Eunice (voice),159824,53122,8 +128100,"Dona Fulana (segment ""Dona Fulana"")",211166,10055,2 +128101,Second Teamster,147829,590519,17 +128102,Willard,19661,12950,7 +128103,Very Butch Doorman,33343,1188785,16 +128104,Hollywood Racetrack Patron (uncredited),15092,1895700,71 +128105,Larry Houdini,70772,63732,1 +128106,(uncredited),60014,129340,19 +128107,Bukharin,56448,1924,3 +128108,Ivan Reisz,14147,6573,3 +128109,Ballroom Dancer,137321,1654649,13 +128110,Lana,1595,1812,0 +128111,Georg Ots,46931,137843,0 +128112,Ellen Jones,29835,85848,0 +128113,Mary Hon,11647,12672,2 +128114,Начальник Колонии,57770,1341809,4 +128115,Nawal,46738,77498,0 +128116,Elise,226701,154491,4 +128117,Random Neighbor,193893,1381675,55 +128118,"Muten, Roshi",39101,618,10 +128119,Armando Bruza,39845,78994,2 +128120,Walter Judd - Townsman Mob Defendant (uncredited),14615,1371322,71 +128121,Tourist (uncredited),10488,1643131,22 +128122,,11391,137370,12 +128123,Assassin,56095,62414,15 +128124,,48210,1631532,5 +128125,Divorce Lawyer Dardignat,259,3596,8 +128126,Irving Netcher,107973,13733,5 +128127,Asha,82243,630358,0 +128128,Karl,111480,35045,8 +128129,Giuliana Hermil,4286,35956,1 +128130,Donk,79778,33353,11 +128131,Rocky,168541,38001,8 +128132,Malidictes,76757,11276,23 +128133,Janet,8270,17832,4 +128134,,11664,2315,8 +128135,Justin / Grim,11547,16847,9 +128136,Bodyguard,12594,109667,21 +128137,Sam,16240,6437,20 +128138,"Pierre Chandebisse, Victor's Nephew",141955,3545,6 +128139,Grand-mère,148327,941842,13 +128140,,253533,35780,16 +128141,Zana Fan,91679,1186623,51 +128142,Corelli,16090,14361,8 +128143,Himself - Photo Assistant,84185,1131489,1 +128144,Kay,62392,39762,13 +128145,Manny,151043,4353,6 +128146,Old Frank,17347,585,3 +128147,Sessom,27717,50837,3 +128148,Himself,43065,1248728,11 +128149,Lead Singer,19918,64710,23 +128150,Warren Buffet 9 Year Old Friend,438137,1825978,4 +128151,Dr. Richman,69075,1200356,5 +128152,Lap Dancer,4964,125574,26 +128153,Lilith / Sr. Catherine,27696,35634,0 +128154,Lodger Bringing Blanket,153161,121060,31 +128155,Nick Debrett,42242,15152,3 +128156,Mrs. Proctor,224204,1270452,1 +128157,Franz,9274,57101,5 +128158,,52560,21731,0 +128159,British POW Officer,227306,1394456,56 +128160,Tourist #2,98644,1029121,4 +128161,Joses,335778,15598,16 +128162,James Bower,4529,12151,0 +128163,Gambler with Glasses (uncredited),73420,63382,6 +128164,,53767,1032108,8 +128165,Charnetski,40649,157633,6 +128166,President Ellis,68721,6573,10 +128167,Jeremy (Pizza Guy),293660,1417031,13 +128168,Henrik Otto Donner,379335,1568233,2 +128169,Mara Harper,59965,49,4 +128170,Reverend Millward,30496,26258,8 +128171,Zoe,199056,999605,5 +128172,Melanie,75969,48495,12 +128173,Sprenger,3037,6644,5 +128174,Himself,43065,61824,5 +128175,Holly Dreyer,56669,71447,4 +128176,Serezha Karenin (as Philippe de Lacy),120831,1197526,3 +128177,la mamma di Francesco,62713,1840013,5 +128178,Hjördis' väninna,60899,231923,11 +128179,Katsumata,39123,225730,4 +128180,Brita,41206,93902,1 +128181,Michael,49712,378,4 +128182,Housekeeper,13668,81070,9 +128183,The Theater Director,38787,13953,4 +128184,Kája,18352,143551,20 +128185,Umi Matsuzaki,83389,87637,14 +128186,,284467,6451,6 +128187,Meelis,82708,1271591,15 +128188,Seth Dharam Dayal Teja,103236,1028469,4 +128189,,167874,1153676,2 +128190,Chantel,26390,145145,7 +128191,Hipster He,169068,1738448,16 +128192,Mirror Queen,62764,15109,26 +128193,Koyama,248087,1475955,11 +128194,OsCorp Department Head,102382,73933,58 +128195,Frank,79500,16841,0 +128196,Louise,18595,1779823,11 +128197,,282086,1179811,8 +128198,Col. Gregor McGregor,43889,134876,5 +128199,Jerome,322548,1719607,15 +128200,Office Worker,130278,180103,0 +128201,Christine,17658,82183,4 +128202,Teddy Harwood,13374,107040,6 +128203,Jock Reily,38920,75403,2 +128204,Dolman,109610,1327908,4 +128205,Mary 'Mac' Mackenzie,12591,28660,2 +128206,"Mrs. Clara Cass, Philip's Mother",217948,7667,2 +128207,Stenographer (uncredited),111042,9596,11 +128208,Mr. Dixit,378227,1567639,6 +128209,Kyle Masterson,50725,73457,6 +128210,Kills Enemy,55534,37430,25 +128211,Meyer,60153,230650,2 +128212,Lt. William Harris,227306,1394446,10 +128213,L'ami,52555,1345410,4 +128214,Beats,59678,1672692,26 +128215,Oliver Myerhoff,40041,1067,6 +128216,Jesse James Jr.,43829,231256,10 +128217,'Honest' Harry Kritzer,36786,82860,8 +128218,Gabriel Verlaine,12601,22630,3 +128219,Dispatcher,19017,141397,7 +128220,Jimmy McGee,44287,21029,3 +128221,Hortense,436340,1744817,4 +128222,Mrs. Lampenbogen,257831,26247,3 +128223,John Greer,26502,95563,3 +128224,Steve Ireland,20644,32428,0 +128225,Tyler's Friend,24469,1319616,11 +128226,Specialty Tap Dancer,94739,1283599,4 +128227,The Sheriff's Lieutenant,115972,184981,10 +128228,Herself,15258,161903,40 +128229,Himself,16800,939009,25 +128230,Principal,125264,33135,2 +128231,Cousin Isabel,363841,962249,5 +128232,Sheriff Paraday,49353,40207,4 +128233,Colonel Katherine Powell,333352,15735,0 +128234,Dicklicker,63773,8354,4 +128235,,142770,86691,8 +128236,James Carter,228074,4973,3 +128237,Gertrud Ljungberg,51141,564049,2 +128238,,311417,176104,6 +128239,Max Jacobs,31835,29579,5 +128240,Omitsu (as Kyôko Aoi),58878,228546,5 +128241,Man in Audience (0:56),171446,1009,8 +128242,Jennifer March,65787,29644,5 +128243,Waitress,15534,205783,6 +128244,Ryoh Mukai,18722,90348,6 +128245,Tom Whitman (age 47),75204,574142,3 +128246,Durza,2486,18023,3 +128247,Oz,78307,93821,0 +128248,Simon,99859,26854,6 +128249,Tony Garthwaite,51619,121003,2 +128250,Emily (Segment 2),244117,6279,8 +128251,Lida,148622,86957,1 +128252,Deputy Sheriff,23590,121238,5 +128253,Mrs. Carlyle,49500,13333,3 +128254,Crake (as Jock O'Mahoney),147903,160432,10 +128255,Young Father,145135,1329618,13 +128256,Father Thomas,79316,36221,2 +128257,Pill Box,105503,5695,4 +128258,Albert Einstein (voice),82703,14639,22 +128259,Alireza,37181,1265705,7 +128260,"Henri, petit fils d'Auguste",65887,24597,7 +128261,Jeff - Reporter on Train,43812,179327,72 +128262,Penny,157424,118362,1 +128263,Gerard - Ortega,298,60573,22 +128264,Phantom of the Opera,30002,34973,3 +128265,Heather Banks,89269,183384,4 +128266,Clown,53399,105868,9 +128267,Susan Ireland,20644,13577,1 +128268,Allan Quatermain,12450,723,0 +128269,Meg,259694,41087,8 +128270,David Preston,259183,12689,1 +128271,Claire,24886,135532,3 +128272,Mrs. Petrie,540,11318,8 +128273,Nishigandha Dasgupta aka Nishi,20092,85035,0 +128274,Dowager,413232,987012,16 +128275,Another Senator,2567,224077,58 +128276,Peter,283445,1485771,10 +128277,Ryder,309024,116088,1 +128278,Kane,242310,21942,5 +128279,Dr. Kahn,23628,90395,2 +128280,Himself,9815,59539,18 +128281,Matt,371462,73288,2 +128282,Party Hostess,360606,1366610,10 +128283,Nicole,16996,146516,12 +128284,Bailiff,4982,1455760,50 +128285,One Eyed Jack,266285,1459399,29 +128286,Carl,51800,1063332,5 +128287,Il professore,182415,88469,2 +128288,Franziska Wildenbrück,40130,33816,2 +128289,Translator,81232,591302,8 +128290,Leslie Taylor,14833,55256,3 +128291,Astro 'Nut' Local,5172,79228,51 +128292,Seikabu Chief,81296,76932,4 +128293,Masa Taguchi,20530,131013,3 +128294,Hana,14087,547990,7 +128295,Mrs. Morwood,139455,4452,3 +128296,Baburao Ganpatrao Apte,20359,85033,2 +128297,Agent Wilson,52864,84640,12 +128298,Colonel Plotti Balotti,354287,592712,23 +128299,Daughter,9828,191228,24 +128300,Himself - Dermatologist (as Dr. Derek Jones),97724,1388688,38 +128301,Jack,55825,75131,1 +128302,Red army's warrior,25626,20654,28 +128303,Trooper Hancock,9542,44686,10 +128304,,224951,90725,2 +128305,Salesgirl,335145,69122,8 +128306,Dewey Roberts,56558,82676,2 +128307,Pluto,67162,5462,2 +128308,Distinguished Home Guard,369885,1651393,48 +128309,Bill Ringa,4820,13565,3 +128310,Gabriel,95015,11499,0 +128311,Encarna,331642,114460,1 +128312,Prince Vladimir / Vova,169355,5832,4 +128313,Sven's colleague,15179,997641,10 +128314,Neil,209406,39125,2 +128315,Teen,2976,1752747,102 +128316,"Red, Fight Timekeeper",75315,34243,28 +128317,Martin (voice),35,6035,17 +128318,Nurse Gloria,11364,1198730,12 +128319,,53693,127723,12 +128320,Harlon - Age 9,300090,1384814,12 +128321,Ania,25936,932354,8 +128322,,265314,87265,1 +128323,Babette LaVern,171075,1666,2 +128324,Grandpa Chapman,27414,97718,11 +128325,Cisco,86820,5293,0 +128326,Benji Dunn,177677,11108,2 +128327,Sherry,13022,76070,3 +128328,Mrs. Maschek,52251,1363769,2 +128329,Maya,75745,87358,1 +128330,Johnny,4580,15200,1 +128331,Dancer,10096,928295,39 +128332,poacher (voice),56391,240500,16 +128333,,113739,217773,3 +128334,Madge Moore,60759,563068,11 +128335,Mita,7549,52909,13 +128336,Ukpik (voice),233423,97299,14 +128337,,69310,74946,40 +128338,Lucky (voice),18843,77075,33 +128339,Sébastien Douglas,64362,38449,2 +128340,Auction Man,81660,35518,9 +128341,Maria,40978,135619,4 +128342,,264454,56654,1 +128343,Kiyoko Ishikawa,70322,1029310,2 +128344,Chad Davis,68721,1735547,51 +128345,The Dad,129363,1089163,2 +128346,Sally,426264,192908,3 +128347,Psychiatrist,64720,1409984,17 +128348,,358901,1507227,1 +128349,Ray Canucci,354287,2171,15 +128350,Lica,70666,572450,34 +128351,Female Corpse on Tarmac,82654,1612617,23 +128352,Anne Brockton,44000,130000,3 +128353,Afghan Soldier,86709,933580,10 +128354,Serge,49084,146288,3 +128355,Pete,27966,1420472,13 +128356,Song Jiaoren,69310,99687,15 +128357,Record Hop Dancer,2976,441718,84 +128358,Commander Cavendish,55032,41998,3 +128359,Guy #1,49920,54883,4 +128360,Petronas Dancer,243683,1398197,85 +128361,Hee-joong,53514,150242,1 +128362,Ivan,33511,1798886,18 +128363,Dad (Steven),10900,67704,4 +128364,Preacher,277713,1243491,9 +128365,Susie,18088,7055,6 +128366,Mrs. Diaz,409502,231014,4 +128367,Dr. Franks,17209,2714,3 +128368,Nadia / Valérie,18897,20081,2 +128369,Jacques (uncredited),31773,1090669,24 +128370,Adele - Mrs. Delancey Wright,73430,11025,6 +128371,Public Defender,186869,1504095,16 +128372,Bill Forsythe,304372,26008,18 +128373,Dave,6575,177475,8 +128374,Radio Commentator,921,166529,47 +128375,Harry,67822,11066,0 +128376,SA-Mann / Ruinenkeller,613,43738,46 +128377,Strauss,218425,109333,3 +128378,Mr Wilson,62728,83814,12 +128379,Kate,96936,1367842,14 +128380,Myrtle Kane,117999,29791,2 +128381,Basilio,82265,81848,8 +128382,Norman,182349,33286,0 +128383,Prince Omar Abdul Yussef El Rahid,43548,80875,10 +128384,Willie,65066,3171,2 +128385,Danny,277558,460802,4 +128386,Christiansen,11046,38358,5 +128387,Phaon,286789,91638,1 +128388,Phillips Minion,10025,62077,19 +128389,Robin,15805,34979,2 +128390,Katherine,153795,10690,0 +128391,The Doctor,281979,20049,1 +128392,William 'Moe' Early,33117,34287,6 +128393,,53767,618696,12 +128394,"Dagwood "" Dag "" Bumstead",3941,34179,1 +128395,Carol Ostroff,89008,19,3 +128396,Carmen La Qualunque,161545,226832,9 +128397,Mitsuko Taguchi,125264,143367,3 +128398,Sophie Maes,13092,19537,3 +128399,Doctor (uncredited),156700,1636764,59 +128400,Earl,41574,27804,0 +128401,Half Asleep Man,1550,25988,9 +128402,,74154,588032,8 +128403,Celia Turner,13279,74571,6 +128404,Barbro,162382,1413678,4 +128405,Tzimas,47683,1750918,8 +128406,Major,103938,975120,6 +128407,Lt. Galban,331962,4443,3 +128408,,162877,1154748,3 +128409,Lynn Driver (voice),30060,1613400,9 +128410,,88273,1397125,37 +128411,Paul Sheridan,31555,4091,0 +128412,Dooly,244316,32751,13 +128413,Old Salt,71805,1644928,13 +128414,Max Novardis,9950,4255,10 +128415,Marcos,98586,19828,14 +128416,Idek,31890,80154,14 +128417,Sarah,351242,10871,0 +128418,Chauffeur,22020,100290,7 +128419,Johann Simon,215740,1316628,4 +128420,Young Veronica,277558,1285537,7 +128421,Brad,16985,77521,10 +128422,Vader van Marie,12135,1356144,7 +128423,Rev. Samuel Blake,60965,232047,17 +128424,Stiefschwester Annabella,266568,53846,3 +128425,Cinema Usher,9664,58427,8 +128426,Ekaterina Filippovna,15661,59237,3 +128427,Additional Voice Talent (voice),145316,86006,8 +128428,Suzy,92496,1684444,5 +128429,Shop assistant,85549,1080024,3 +128430,Yoyo / le millionaire,90228,548816,0 +128431,Gallagher,13836,112049,24 +128432,Nurse,16022,2151,31 +128433,Team Leader Hong,18374,93996,3 +128434,Squirrel,77534,582229,6 +128435,Yomoshichi,68715,118408,7 +128436,Zingarina,32604,18514,0 +128437,Ditch,373247,1228886,7 +128438,Danka Shchus,41979,86737,0 +128439,Hangar Officer / Starkiller Technician (voice),140607,283842,69 +128440,,57977,69310,0 +128441,,140231,55063,6 +128442,Milo Beck,293082,1389550,6 +128443,Uncle Curtis,13058,25135,7 +128444,Blanche,315252,1409398,1 +128445,Kremlin Security Officer,146216,1511954,45 +128446,Sorority Girl,325133,144216,26 +128447,Robert Dickinson,76198,23076,9 +128448,Dottore Sanguedolce,101231,30832,4 +128449,Bao Tong,41378,1418633,15 +128450,Lee Nan-Young,385261,1711062,9 +128451,Franck,41211,1609185,16 +128452,Mrs. Collier,22307,51791,6 +128453,Starker Mann,104172,1384104,10 +128454,Support Group,222935,1672080,34 +128455,Nurse Susan Peterson,285841,2229,3 +128456,Policeman Stevens,44626,8233,9 +128457,Cocktail Waiter,31899,30240,32 +128458,Max's Neighbor,98349,98186,8 +128459,,168295,1136510,10 +128460,Pakistani' Home Minister,101783,82076,7 +128461,Richard Hartung,58166,5646,4 +128462,Esther Clouston,47459,25789,8 +128463,Col. Kalishnakov,35632,114457,3 +128464,Darcy,15935,7249,12 +128465,R2-D2,330459,1214513,12 +128466,Charandas,96159,72118,0 +128467,Minerva Mayflower,9292,3664,5 +128468,Omar,82501,1125107,7 +128469,Woman sitting at bar at Florida Club,29100,121323,13 +128470,Grandpa Clayton,45800,17753,2 +128471,The Network (voice),107985,2440,51 +128472,Predator,12594,1196494,10 +128473,Kärran,19181,1097786,3 +128474,Shaman,79580,81000,0 +128475,Manichi,402455,230860,20 +128476,Anetta,47778,1762724,4 +128477,Eddy,232672,58478,7 +128478,Arthur,59726,9191,2 +128479,Anderson,5965,46919,7 +128480,Dr. Cornelius,2080,1353641,30 +128481,Matthieu,13312,81048,4 +128482,Lily,335509,85997,3 +128483,Risso,12422,43814,0 +128484,Big Happy,102668,53257,12 +128485,The Mother,168647,80622,1 +128486,Irene Santini,14669,21366,5 +128487,Victor,24657,67003,3 +128488,Hishuru,70368,12249,2 +128489,Pichon,195068,33033,10 +128490,Tricia Bentley,4931,40168,4 +128491,Girl Walking Through Glass,369885,1264641,21 +128492,Christy,17926,1008729,10 +128493,Roy,62289,785,7 +128494,Michael 'Beau' Geste,189621,29522,0 +128495,Nico,115929,1064512,14 +128496,vecchietta,77000,124619,6 +128497,Begoña,17893,967163,11 +128498,Himself,173467,638,20 +128499,Lantern Man,62472,97204,13 +128500,Anya Salik,127728,1085655,3 +128501,Unna,33495,130875,14 +128502,Will Stanton,2274,23498,10 +128503,Miki,282069,120434,8 +128504,Amy,75761,576223,7 +128505,Psychiatrist #2 (uncredited),15794,83621,40 +128506,Angelina,77137,282200,5 +128507,Johtokunnan jäsen,62900,936894,12 +128508,Dr. White,301325,16327,5 +128509,Meredith,37301,4958,0 +128510,Beth Throgmorton,43327,13637,2 +128511,Staris,277778,98174,3 +128512,Delivery Room Doctor,7326,1582010,28 +128513,Gloria McCloud,212713,161795,8 +128514,Buck Cluck (voice),9982,1201,4 +128515,Matsuo,36063,58665,5 +128516,Tobias,77930,86498,11 +128517,,662,1167681,4 +128518,Vital,330333,71378,1 +128519,Spiral Beach Band Member,8669,1281029,36 +128520,Anne Phillips,345915,126932,5 +128521,Stuffy Croupier,32657,1678985,81 +128522,Sam Beal,270015,3347,8 +128523,Adam,84577,26970,4 +128524,Holy Man,56135,26665,11 +128525,Hungry,375366,1886299,33 +128526,,375199,150688,5 +128527,Rainer Ybarra,284537,1142720,10 +128528,Henchman #6 (uncredited),109439,150194,30 +128529,Baby Poppy,136799,1704766,6 +128530,FBI Agent Jerome Ripley (as Donald Blakely),131966,90337,2 +128531,Jane Froman,65787,30124,0 +128532,Bradley,345916,34199,7 +128533,Simpson,44463,30017,5 +128534,John Marino,11643,68898,4 +128535,Gen. Benedict Arnold,208434,33484,4 +128536,Gas Station Customer,210910,1291700,6 +128537,Belle (as Bunki Z),59744,1039470,14 +128538,Vincent Hardwick,85009,6972,3 +128539,Ahmed Effendi,44099,15676,5 +128540,Colette Mooney,255491,10399,2 +128541,Himself,160297,61632,6 +128542,Fight Spectator (uncredited),28000,121327,55 +128543,China Princess (voice),59981,146748,9 +128544,Pedro,55735,200079,7 +128545,Manfred,147360,1312412,7 +128546,Gargoyle #2,29345,103588,10 +128547,Eva Matteï,37645,144958,11 +128548,Allison Connors,279692,17832,1 +128549,l’amiral Aulenti,42021,91971,3 +128550,Robbie,24050,2053,3 +128551,Tony,86643,80495,2 +128552,,44442,591284,6 +128553,Philip,126250,517,0 +128554,Ray Melendez,15613,83781,13 +128555,Himself,135679,1103546,0 +128556,Maya,133715,1046192,9 +128557,Taxi Driver,7942,6239,12 +128558,Soldier,128866,1088066,14 +128559,Algy Longworth,140418,117697,3 +128560,Joe Peters,28561,8233,0 +128561,Raven,33112,33743,10 +128562,Je-na,45098,1257584,16 +128563,,258384,1876862,31 +128564,Léon,65887,44509,3 +128565,Boothe,293660,1717,11 +128566,Randy's Husband,302699,1454295,29 +128567,Governor of Virginia,52360,100346,46 +128568,Hombre Atractivo #2,280840,1338956,10 +128569,Roman Romero,92988,996617,0 +128570,Liesel Meminger,203833,1008607,1 +128571,Gabriel,254575,42206,3 +128572,Joe Morgan,175065,30005,3 +128573,,16015,1445197,22 +128574,Therese,277968,400,4 +128575,,15776,587064,5 +128576,Reporter,47882,2776,9 +128577,Bartender,28090,1719890,35 +128578,fornitore di mozzarelle di Giacobetti,75001,994274,7 +128579,Amante di Monica,98025,100937,8 +128580,The Accusing Dead,76341,144677,39 +128581,Hulda,30583,260441,4 +128582,MAP 31,185111,1138806,1 +128583,Police Inspector Oscar Piper,84971,30537,2 +128584,Herself,7942,1089426,14 +128585,John Ruskin,245700,1394375,10 +128586,Commuter (uncredited),28178,928638,15 +128587,Alter Mann,130739,697,14 +128588,Heather,13991,1231373,10 +128589,Vanya Cherenko,26116,90118,11 +128590,Waiter,51828,79550,25 +128591,Mrs. Alice Shenstone,120676,98036,8 +128592,Japanese Fighter,10044,62426,17 +128593,,256930,231749,7 +128594,'Sailor Boy' Hansen,51601,3341,4 +128595,Penelope,278706,1334327,1 +128596,Lt. Cmdr. Clinton T. Nash,109441,8632,5 +128597,Long Qi,248376,63585,1 +128598,Juan Vargas,14430,7370,0 +128599,Warden,39840,125280,2 +128600,Jessica Moreau,52395,27964,1 +128601,Robyn Crawford,319096,954656,3 +128602,Nikki,318922,118036,9 +128603,Deputy,4882,1774942,24 +128604,Sojiro Seta,221732,225730,4 +128605,King Leonidas,1271,17276,0 +128606,,189364,400,3 +128607,Kohei,74126,131014,1 +128608,Lyamin,29299,235869,3 +128609,Salva,119409,1631185,4 +128610,Mary,194101,78329,3 +128611,Stuart Stratland Jr.,71825,20833,2 +128612,la secrétaire de la directrice,77776,268826,6 +128613,Selena Biatz,125521,143502,3 +128614,Ross,133448,1001523,8 +128615,Dexter,159667,1849486,11 +128616,Actor,15043,77796,1 +128617,Avengers Gang,91548,1648797,15 +128618,Betty Wright,43075,30558,1 +128619,Mother,1904,19857,9 +128620,Max,376570,1044197,4 +128621,Jones,15414,213339,5 +128622,,37939,1204780,10 +128623,Judge Irwin,1717,4173,6 +128624,Márta,260826,70913,3 +128625,Elliot the Dragon (voice),294272,31365,14 +128626,Gothmog & Witchking of Angmar,122,1365,18 +128627,Brynhild Fluga,57438,226198,40 +128628,Gibson,79113,1346954,11 +128629,Solange Beauregard,6591,45471,4 +128630,Corporal Lucken,90461,34574,8 +128631,Talia,59861,1216606,12 +128632,Hidayet,126560,1320694,5 +128633,Mother,26826,235640,4 +128634,Chrysagon,42664,10017,0 +128635,Pink Stripe,224944,1210467,3 +128636,Captain Oldknow,49391,19923,11 +128637,High School Student (uncredited),302699,1754491,35 +128638,Melanie,304613,1387081,6 +128639,Nurse (uncredited),263115,1711523,95 +128640,Ralph Woods,27196,79928,16 +128641,Pornstar on Strike,15092,54725,22 +128642,Lori Tanner,41759,12851,0 +128643,Norm Spellman,19995,59231,6 +128644,Emile,167424,1481199,32 +128645,Dr. Morell,102155,12157,6 +128646,Doc Miles,15092,20309,2 +128647,Eda,76097,1663989,12 +128648,Hossler,4882,39772,5 +128649,Omori Guard,227306,1394458,58 +128650,Pedro,6557,50466,8 +128651,,49961,143134,13 +128652,Kasheegann,354979,1835244,51 +128653,Greaser Chick,47342,1837862,20 +128654,Father Bob (uncredited),19286,101032,14 +128655,Balmoral Maid,1165,1704619,13 +128656,Party Girl,336011,1087135,7 +128657,Cris,362579,224513,1 +128658,Flasher,159638,1060742,9 +128659,Johnny Mad Dog,8929,933492,0 +128660,Little Girl,43806,34210,46 +128661,,177354,83675,5 +128662,Mary Angelus,20301,81181,4 +128663,Pettigrew,38770,1196060,22 +128664,Cmdr. Dowling,91477,12308,1 +128665,Man in Ape Suit,225503,1109656,11 +128666,Kolega,65904,1436640,9 +128667,Margaret Stuart,45556,1127868,10 +128668,"Helmut, der abstürzt",9677,58482,3 +128669,Phil Gayley,61151,8724,0 +128670,General #2,267935,40009,8 +128671,Reporter,79329,586533,12 +128672,Caroline Abbott,59704,1283,2 +128673,La Bomba,65674,3091,6 +128674,Mutant,831,1244683,11 +128675,Dominican Priest,168259,1880149,34 +128676,Virgil Brooks,294016,31164,14 +128677,Michael Flores,33339,110505,2 +128678,Det. Thomas Branch,5289,65808,20 +128679,Al,84355,113373,3 +128680,Helene,295964,23459,1 +128681,Melanie 1,9843,7577,8 +128682,Johanna Pasquali,382597,129168,1 +128683,Franz,147287,2725,2 +128684,Chen Huan,183039,66884,0 +128685,Denise,27414,97619,8 +128686,Chinese Waiter (uncredited),369524,1610941,40 +128687,Bobby,352164,1611048,5 +128688,Grandpa,31821,2716,5 +128689,Brenda Hesson,82684,123725,3 +128690,Frédéric,29128,104211,0 +128691,Lieut General Strathairn,14531,742,15 +128692,Delivery Man 1,52034,237181,14 +128693,Uncle Sam,19235,84792,7 +128694,Concho,37954,15699,8 +128695,Large Rude Student,107499,824,6 +128696,Father Leone,209112,1189226,107 +128697,Dance Extra,118889,1208020,32 +128698,Diana Cavendish (voice),182131,1072774,3 +128699,Goon,49074,583956,15 +128700,Ambassador,107319,1170118,8 +128701,Recepcionista,254869,99811,15 +128702,Kevin Bannerman,295656,1110009,7 +128703,Zwilling 2 – Diego,75969,1902105,58 +128704,Lou Rubia,93457,133853,2 +128705,Carnival Girl,2080,205474,20 +128706,Motel Clerk,195269,1475077,13 +128707,Stylist,15616,115979,15 +128708,Supervizor,126090,1072887,11 +128709,Onkel Anders,19812,121556,5 +128710,Sarah MacMillan,56151,82412,1 +128711,Dr. Moreau,29168,63210,8 +128712,Medical Examiner,90616,1692069,12 +128713,Additional Voices (voice),130925,84495,19 +128714,Headmaster,31027,87944,4 +128715,Inspector Koichi Zenigata,30143,616,4 +128716,Simon Pryor,32540,10993,3 +128717,Himself / Donald Duck (voice),22752,78077,8 +128718,Sue McCready,46667,74542,2 +128719,Maersk Alabama Crew,109424,1323776,15 +128720,Neighbor,40060,1091367,14 +128721,Edward Weldon,42752,2932,1 +128722,Cop In Ring (uncredited),921,955655,66 +128723,Beppa,159474,1046996,6 +128724,Trellick,318922,119783,7 +128725,Mary,358980,104015,9 +128726,,369054,59750,1 +128727,les filles en bikini,252102,1377187,14 +128728,Tammy,45013,1818024,35 +128729,Mr. Hughes,253310,144227,6 +128730,Хома Брут,57230,86663,0 +128731,Mina,17046,60415,2 +128732,Grover Girl,32657,1507603,43 +128733,Banda Sua Mãe / baterista,70666,1863890,24 +128734,Ted Healy,85411,20982,5 +128735,Senior,103731,1472,7 +128736,Highway Officer,10744,22132,9 +128737,Siostra zakonna,314371,1537081,15 +128738,Biscuit,26574,43774,1 +128739,Frau Herrfurth,201429,22855,5 +128740,Passerby (Dunellen),244786,1503837,25 +128741,Loki,7237,52146,8 +128742,Actor Dick,327528,1330110,12 +128743,Jenny,40807,387183,12 +128744,Danieli,382598,54170,8 +128745,James' Girl,119364,101431,10 +128746,Mrs. Coburn (as Myrtle Steadman),134238,1130948,11 +128747,William Smith,53524,16940,0 +128748,Charlie,18651,1038184,12 +128749,Mickey,54242,89563,0 +128750,Alan,150117,1016119,8 +128751,Megan,291866,1272229,4 +128752,La voisine,59118,1540300,30 +128753,Natari,62472,552169,16 +128754,Contessa di Meina,112885,9071,3 +128755,Receptionist Tineretului,2009,983490,9 +128756,At Dance (uncredited),42553,1525632,21 +128757,Julia Swedenhielm,76380,539818,3 +128758,Sanger,38433,100589,8 +128759,Judge Bob,66668,4253,6 +128760,Engravatado 1991,73624,114482,5 +128761,Ann Sinclair,31713,99752,2 +128762,Ernest,61580,1150097,3 +128763,Claudia / Vera,48594,67262,1 +128764,Carmen,188858,102222,2 +128765,Danielle,280092,188081,6 +128766,Carly Moss,50161,1269479,7 +128767,Edith Keating,111470,132494,5 +128768,Fluzy (uncredited),921,64308,61 +128769,Nadine,87587,935272,4 +128770,Pauline,70585,13567,4 +128771,Laina,284289,110421,2 +128772,Kylie Swanson,156597,6613,0 +128773,Charlie Parkins,108282,12308,11 +128774,Jane,225503,1027912,1 +128775,D.D.,265208,63522,5 +128776,Mary Sue,356752,1501784,55 +128777,Dr. Niles Nelson,27966,96701,3 +128778,Dr. Perkins,13162,537,2 +128779,The Psychiatrist,29128,24303,12 +128780,Tina Schaffner,6443,49740,2 +128781,Jan,153272,1873604,4 +128782,Tommy Santorelli,21138,8395,1 +128783,Daryl Hall,257344,181408,66 +128784,Dr. Otto / Rudd Hardtact / Laughin' Jack / Guy Dandy / Auntie Nelda / Ernest P. Worrell,69061,12899,0 +128785,Himself,374460,1119834,18 +128786,Polonski,42242,100624,8 +128787,Former KGB / Militiaman / Visa and Registration for Foreigners Office employee,109354,97368,2 +128788,Mme. Elzevir,63333,1081635,5 +128789,Chomomma,120802,1070339,15 +128790,François,63989,120385,1 +128791,Tiger,313922,1371041,4 +128792,Nina Andersson,141267,92412,21 +128793,Schincaglia,371942,1547216,5 +128794,Courtney,32124,108916,4 +128795,Lorna Price,59965,126932,8 +128796,la fille de la terrasse,168496,104087,4 +128797,Astrid,19398,229797,12 +128798,Ab Parker,26533,95724,5 +128799,Fowler Slave,339408,1622089,29 +128800,Strode,9042,109439,7 +128801,Roman Armitage,419430,13732,38 +128802,Dingy Worthington,137321,147472,16 +128803,Linda Watkins,414610,1362743,3 +128804,Dick Grayson / Nightwing (voice),321528,55148,4 +128805,Leikskolakennari,268618,1156499,6 +128806,Crane Operator,70046,594495,21 +128807,Michelle,235046,1216163,0 +128808,Australian POW,227306,1394467,67 +128809,The Baroness,96724,302165,14 +128810,Guard at Invite Table,297762,1562095,50 +128811,Policeman's Wife,2001,590493,73 +128812,"Miss Dean, receptionist",41591,166961,20 +128813,Bill,32790,188607,10 +128814,Girl with Lot,105059,1683140,44 +128815,Gedya,150223,1870824,2 +128816,Wedding Baby,10330,1575806,33 +128817,"Gennaro ""O'Mbroglione""",107052,45983,16 +128818,Technician,14669,146329,4 +128819,College Student,205891,1188270,7 +128820,Fat Chan,26005,130505,7 +128821,Clelia,82481,1127315,24 +128822,Kantoor Zombie,90231,1148606,6 +128823,Himself,160297,82442,7 +128824,Ginger,42448,83313,6 +128825,Demetria Rosemead 'Dinky' Hotchkiss,10760,66537,6 +128826,Danny,88005,1389550,20 +128827,Amelia,14432,76877,6 +128828,Narrator,147538,109314,1 +128829,Anne,572,7743,1 +128830,un agent de police,78377,24501,10 +128831,Skipper,227200,569211,1 +128832,Mrs. Hengen,43670,6200,6 +128833,Lord Malice (voice),44283,56890,1 +128834,Dr. Fairchild,28775,30849,15 +128835,Doctor,181574,1489667,13 +128836,"Ivan Zotov, director of trading post",71393,119211,5 +128837,Nadia,264729,1042728,4 +128838,Bobby Giordano,297853,36055,3 +128839,Elizabeth,11096,1951,3 +128840,Juggernaut's Contact,29805,125039,22 +128841,Fran McCarg,43321,8254,2 +128842,Additional Voices (voice),82703,992381,38 +128843,Mitchell,118760,65344,4 +128844,Bikini Babe (uncredited),213681,1771575,48 +128845,Himself - Presenter,460870,221787,1 +128846,DJ Aziz,83342,1057527,8 +128847,Det. Sidney,301876,185391,6 +128848,Greta Jones,68097,104412,5 +128849,Halima,295314,1380886,3 +128850,Mönichkirchnerwirt,11122,238216,7 +128851,Brandt,56292,17604,1 +128852,Dr. Frances,416256,168913,10 +128853,Madame Foin,51945,24807,4 +128854,Raul's Guest,40978,135628,16 +128855,Pastor Rosier Pile,16442,4302,1 +128856,Son of Ares,32657,1678716,67 +128857,Le chef de bureau,43904,142919,5 +128858,Salomon August Andrée,72785,2201,0 +128859,Lucille Gould,921,14893,11 +128860,Lt. Jerzy,13614,82313,2 +128861,Leila - The Moro Princess,222932,1538778,4 +128862,Inspector Martell,90590,1171678,2 +128863,Nicole Carrow,9841,59817,0 +128864,Rose,240913,5047,8 +128865,Otto,76097,145035,9 +128866,Director Fengler,107445,28437,6 +128867,Little Havana Man,323675,1156259,44 +128868,,350779,1489234,4 +128869,Shir,318052,1414724,3 +128870,Viviane Gobillot,66966,39156,2 +128871,Paione,286789,1079615,7 +128872,Benny,291164,11486,7 +128873,Father Abbot,7096,3548,18 +128874,LuAnn Potts,356486,590308,3 +128875,Stina,39284,123464,6 +128876,Mary,27696,98745,1 +128877,Antigen Scientist (uncredited),52520,8210,26 +128878,Agent Daniels,16164,583278,15 +128879,,27904,1415469,4 +128880,George,10760,66540,10 +128881,Stas (voice),38325,1269288,2 +128882,Tommy Cash Age 9 (uncredited),69,77518,38 +128883,Caretaker,360205,1511041,6 +128884,Elena,31462,13029,16 +128885,Birte,210913,1194709,2 +128886,Tony Morelli,105551,96053,10 +128887,Prof. Gellendorf,98612,1317696,8 +128888,Binz,176983,46691,12 +128889,Kostas,49940,306173,8 +128890,Ken's Wife,3638,1517868,14 +128891,Lewis Clark Dobbs,53949,103503,9 +128892,Herself,380058,1232217,3 +128893,Taxi Driver,8270,54238,35 +128894,,73984,1003384,16 +128895,Shameless Woman (as Peggy Sands),11338,95428,34 +128896,Kevin Ames,142402,1117086,17 +128897,Yannick,85743,1273008,0 +128898,Conny,35304,87663,3 +128899,Ustaša terorista,67633,5725,3 +128900,Lieutenant John Forsythe,10733,32239,16 +128901,Terry's gangster,19528,118751,16 +128902,Dr. Phillip Hamilton,317114,559280,4 +128903,Yee Mong,40346,67221,1 +128904,Pumber,70046,54014,22 +128905,Ramirez,147575,1126166,2 +128906,Leningrad Cowboy,30366,1076426,6 +128907,Madame Giry,76115,516105,6 +128908,Tsar (voice),160046,549389,3 +128909,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1891531,43 +128910,Nicole (uncredited),29259,70119,16 +128911,Walter,42182,9632,2 +128912,Frau Hüpenbecker (voice),9514,1642148,6 +128913,Sheba Shayne,34459,2230,0 +128914,Tom Barnes,270015,96302,15 +128915,Jom Rachan,43209,81039,2 +128916,Three Provinces Champ,11537,1166104,7 +128917,Ahmet Onur,77862,1252061,8 +128918,Mahir's Accomplice,69610,112510,1 +128919,Leon (voice),13391,129701,2 +128920,Bob Kenton,43023,79633,2 +128921,'Pretty' Ricky Conlan,312221,1537624,7 +128922,Maurice,65887,544199,2 +128923,Annarita Rinalduzzi,38327,120155,6 +128924,Filippo,73872,20591,5 +128925,Oli,49514,109298,12 +128926,Chuckles,62764,1091866,10 +128927,Profesor,67633,4641,9 +128928,Fisherman,68737,1300745,11 +128929,Maries Mutter,231216,1082,2 +128930,Julia,1922,20000,7 +128931,Elderly Peer,91583,183834,15 +128932,April Burns,1550,3897,0 +128933,Fenster,298584,1573607,8 +128934,Legatt,52454,979618,6 +128935,Gries,12594,65831,11 +128936,,74481,85041,1 +128937,Ugly Sister,250535,10701,16 +128938,Karine Cassard,11399,69222,4 +128939,Marino Peluria,439998,1420169,3 +128940,Mickey Moran,32610,1937,0 +128941,,133783,1476848,6 +128942,Tang Chi-Shan,68004,1582533,3 +128943,Lawyer,189,58942,42 +128944,Bouncer,306952,1511961,17 +128945,Lieutenant,128866,1088060,8 +128946,Janet,150117,1484404,23 +128947,Lashan Henchman,75315,1179586,38 +128948,Heo Il-rak,321191,1510020,11 +128949,Michael Anderson,279606,21043,3 +128950,Customs Officer #1,14126,1048503,9 +128951,"Parthenia ""Parthy"" Hawks",31548,108986,5 +128952,Cole Hillman,38761,19181,2 +128953,Scraps,204040,30496,8 +128954,Chrissy H.,159770,1208342,2 +128955,Jonquil,50761,14277,7 +128956,Governor Hughes,94365,21315,6 +128957,Deputy,14047,52885,10 +128958,Billy,14301,41686,0 +128959,Connie,15830,202578,3 +128960,Dr. Caroline Caldwell,375366,515,2 +128961,Herself,329690,18980,4 +128962,,64725,1052200,18 +128963,Otto,31670,17497,0 +128964,Nicola Palmieri,43200,120135,0 +128965,Joe Larsen,381073,41089,1 +128966,Peggy Denny,173662,37445,6 +128967,Young Rodney (voice),9928,133814,14 +128968,2nd Restaurant Owner / Banks' Butler (uncredited),22943,30018,27 +128969,Pau PukKeewis,238985,176860,2 +128970,Dan Macklin,96089,30848,6 +128971,Paradise Waiter,22901,969950,14 +128972,Mobster A,91186,239010,17 +128973,Robert,312497,33343,21 +128974,Young Masao,21966,1016156,12 +128975,Himself - Oasis,64780,143210,3 +128976,Lt. J.G. Max Siegel,109441,3381,0 +128977,Bhola Prasad,46387,239064,13 +128978,Ben Dupont,28730,84490,17 +128979,Sam,13848,87714,5 +128980,Soldier (uncredited),19995,1207287,71 +128981,L'amant de la patronne,258384,36212,8 +128982,Austin Jacoby,308639,40377,12 +128983,Mr. Satan,38594,122191,13 +128984,Felipe,248543,1471570,2 +128985,Alarm Man,186869,1862895,20 +128986,Whis,126963,78402,4 +128987,Dora,308,4432,6 +128988,,61904,1073411,4 +128989,Tara,14349,1285,1 +128990,Helen - Jack Frye's wife,2567,51538,51 +128991,Himself,15258,74686,74 +128992,Travis,206197,1506479,14 +128993,Debbie,4592,169665,12 +128994,Winky,154371,125847,2 +128995,,222517,1699949,23 +128996,Benzanirul,2009,145241,7 +128997,Doctor Mindbender,14869,18916,12 +128998,Brenda Sax,64942,15917,5 +128999,Mickey Duka,7220,1898,9 +129000,L'entraîneur,383064,1762752,7 +129001,Marni,38303,40462,0 +129002,Erich Kempka,613,5204,32 +129003,Tatsumi,87296,1167986,14 +129004,Adelita,367147,169287,7 +129005,Annie,57775,559973,3 +129006,Waiter,72638,121330,44 +129007,Sourpuss Soldier,150712,978055,52 +129008,Richard Moreau,69065,96994,2 +129009,Aunt Vanessa,229297,20300,6 +129010,Ninotchka Kaprova,540,22126,10 +129011,Radio Operator,176867,34008,35 +129012,Patient,24973,43836,26 +129013,Ritu,96147,1196297,6 +129014,Julie Cassidy,24090,137971,5 +129015,Ruth Collins (voice),21159,91820,9 +129016,Fumiko Hirayama - his wife,18148,131016,5 +129017,Ridley Wilmott,13025,81100,6 +129018,Cab Driver,293863,65808,8 +129019,Jor-El,1452,3084,8 +129020,Tall Mercenary,42764,128678,10 +129021,Fusco,83342,902,3 +129022,Lipstick girl,237584,1544805,18 +129023,John Philipps,11161,4941,1 +129024,Policewoman,10265,64505,10 +129025,Maitre D,189,1094233,43 +129026,Henry,298584,1205239,6 +129027,Yoo Chul-Hwan,387845,1591367,7 +129028,Tarzan,77930,135352,10 +129029,Mrs. Hofbauer,62567,32431,8 +129030,Newark Cab Driver,47186,87707,28 +129031,Cynthia - Massage Client,209263,200237,16 +129032,Ingrid,572,7745,4 +129033,Arnold White,33592,1820844,13 +129034,Biology teacher,20342,1630651,11 +129035,Jan Groves,28775,101957,2 +129036,Beth Clayton,77877,221809,2 +129037,Mob (uncredited),2503,1165238,38 +129038,Jean Cabot,134480,104805,10 +129039,Becky Thatcher,42473,1038,13 +129040,Himself,336775,1230,18 +129041,Company Executive,290762,2050,5 +129042,Hostess,24625,41129,9 +129043,Roy McCormick,7233,78029,0 +129044,Chairman Yoshida,352694,13250,3 +129045,Akari Kinoshita,25659,72764,1 +129046,Soldier,11600,100705,3 +129047,Mand på avisredaktion,76312,1266462,19 +129048,Claudi,11930,4927,1 +129049,Mr. Wilkins Micawber,141640,50807,3 +129050,Johnny Spodak,44470,88507,6 +129051,Farmer's Daughter 2,13849,1086862,14 +129052,Chef Ming,62838,1690528,34 +129053,Kara Erol,123611,1052885,3 +129054,Post Office Attendant,112083,89729,8 +129055,Mulcahy,117251,96591,18 +129056,Matt Sawyer - Fighter (uncredited),75315,1204352,15 +129057,Bahattin,109671,145367,2 +129058,Theo,147287,1083954,0 +129059,Moche,31890,55470,2 +129060,Jeannie Lawson,37451,39000,6 +129061,Andreas Giese,42460,12150,0 +129062,Lady Hester Stanhope,144613,108102,3 +129063,Optimus Prime (voice),38356,19540,12 +129064,Thursday Ragan,45215,19020,1 +129065,Mr Parker,245739,47632,4 +129066,Farid Haq,393562,1699686,10 +129067,Grace Andrews,8398,54830,1 +129068,King Ghidorah,19336,1488357,18 +129069,Filip's mother,199644,1179810,4 +129070,Earthly Vampire,29416,30678,8 +129071,uncredited,60759,567224,27 +129072,Sally,207699,1308745,14 +129073,Mike,44510,108055,0 +129074,Helena Varga,252144,1214934,2 +129075,Jack Cameron,16412,74036,0 +129076,Emily,24020,90772,5 +129077,,225614,1187788,5 +129078,Lola Loving,339419,146025,6 +129079,Rebecca Femm,31592,994475,5 +129080,White power inmate (uncredited),354979,1375981,85 +129081,Jessica,353616,1107298,11 +129082,Ryuichi,180299,2542,11 +129083,"Champa, Chameli's Mother",96159,587092,6 +129084,"Himself - director, Motion Picture Producers & Distributors Association (archive footage)",135313,196157,1 +129085,Ferris,12483,18070,15 +129086,Paul Kerr,48967,24264,0 +129087,Inspector Stagnos,84831,20277,2 +129088,Dixie Gordon,45800,67370,11 +129089,Karla Davis,29611,104344,3 +129090,Joe Lynch,44363,11023,1 +129091,MP#2,294690,1390544,21 +129092,Charulata,35790,550859,1 +129093,Hermano de Eugenio,199851,1191993,3 +129094,Dixie (voice),9948,21986,0 +129095,Nandini J. Rai,101783,85035,2 +129096,Foglár,94663,125753,5 +129097,Streetcar Conductor,18651,1467405,76 +129098,Bellows,61109,13966,9 +129099,Chief Inspector Derek Newsome,381518,939,9 +129100,Clarisse,377362,55107,1 +129101,,334298,482101,8 +129102,Ded,82624,563731,7 +129103,,99242,1266721,1 +129104,Sarah's Minion,251227,1807056,16 +129105,Ethan Dalloway,34204,67601,3 +129106,Bruce,25903,4756,1 +129107,"Valeria, la domestica",58611,1891738,11 +129108,Leo Schneider,42168,46946,2 +129109,Joanne,149910,1292329,5 +129110,,70278,580835,5 +129111,Soldado,82767,1718444,10 +129112,Cassie's Mother,14552,429557,10 +129113,Additional Voice (voice),8355,97051,31 +129114,Luca,356482,1200059,3 +129115,Policeman (uncredited),29872,34294,11 +129116,Candidat,77338,1179883,22 +129117,Lyubava (voice),81604,565309,0 +129118,Emily Braley,229221,97989,3 +129119,RPG Nerd,7326,52414,27 +129120,Vincenzo Tomassi,40465,28951,4 +129121,Dean,137093,98953,5 +129122,Vincent,18088,19775,1 +129123,Gin (voice),92321,1254052,1 +129124,Mika,62838,1362526,31 +129125,Smythe,57597,11915,7 +129126,Gary Parker,18557,76068,1 +129127,Russel,142106,1179849,10 +129128,Harkrider,147829,34208,13 +129129,Young Cole,70575,558879,0 +129130,Stan,12449,584657,10 +129131,'Judge' Robert Garvey,15264,4303,2 +129132,Boy,40373,1844919,4 +129133,Taighe,262958,1401539,15 +129134,Radio Voice,332286,155293,8 +129135,Bambi,196065,10660,4 +129136,Specs,49018,2128,5 +129137,Chief Hong,41378,1042681,9 +129138,Cameron Hooker,413337,987572,2 +129139,Michael Cattrall,5460,1436949,12 +129140,,51549,110500,15 +129141,Jennifer,19237,51536,4 +129142,Persephone,13668,1224825,12 +129143,Jean Herbillon,258384,18766,3 +129144,Сауна (Оле),47812,7590,7 +129145,Pando,43432,105738,13 +129146,Singing Telegram Boy,42298,1263061,13 +129147,"Morrison, undercover detective",27144,1104794,11 +129148,Detective Simon,40139,14069,10 +129149,Pritch,2397,1860,5 +129150,Arina,14489,141643,6 +129151,Sgt. Hall,19010,60649,4 +129152,Al,268875,120046,9 +129153,Prof. Koo,11653,65278,11 +129154,Daniel Young,120212,71010,4 +129155,Eleonora,3870,34037,12 +129156,Editor (uncredited),31773,233117,58 +129157,Allen,13022,93119,8 +129158,Wallace,117251,31514,13 +129159,Catherine,21070,36912,10 +129160,Connie Adair,20174,10487,1 +129161,Monsignor De Angelis,17669,8536,1 +129162,Deputy Benson,44936,1432694,6 +129163,Father O'Dowd,52991,74875,5 +129164,Grille,10659,46029,13 +129165,Vingh,15749,1325691,4 +129166,Devon,227266,1404066,2 +129167,Dress shop owner (uncredited),37628,1506665,28 +129168,Irena Soldanis,38433,120440,6 +129169,Himself,410718,1702104,9 +129170,Wieland Schwarz,9690,675,8 +129171,Tart (voice),231082,104458,9 +129172,Ovington,22682,138179,7 +129173,Toka Kirishima,433945,1149337,2 +129174,Whitey,89145,1263061,8 +129175,Zaida,15934,210826,9 +129176,Himself (Judas Priest),123691,235437,2 +129177,Ernesto,43544,7542,3 +129178,Julia Jenz,30554,100870,2 +129179,Balashov,184155,23442,2 +129180,Mitch,252102,1287561,1 +129181,Pat Nguyen,37645,144260,18 +129182,Concentration Camp Guard,41597,30930,23 +129183,Turkey Shoot Participant (uncredited),16442,96061,95 +129184,Whitney Fordman,49521,1025970,28 +129185,Porter,120109,213830,11 +129186,Corporal Savage (uncredited),16442,90369,38 +129187,Farmer,339408,489697,41 +129188,Himself,173465,1266233,1 +129189,Sarah,391375,118533,7 +129190,,311417,113360,1 +129191,Edo,255160,1898237,22 +129192,"Agnieszka Kwiatkowska ""Meluzyna""",369444,1258671,2 +129193,News Reporter,354979,1835280,63 +129194,Mao,322922,589,6 +129195,Nelson,34598,17444,0 +129196,Onion,317723,1413108,8 +129197,James Alden,178927,124309,0 +129198,Bartender,127564,111827,9 +129199,Sheryl O'Connor,34334,3196,1 +129200,Nikrotis,5040,40622,4 +129201,Heikichi Nakao,37213,117066,7 +129202,Nickens,232672,53256,4 +129203,Penthiselea,297762,1831281,24 +129204,Bud Herman,11338,47773,9 +129205,Joseph Bruno,26861,1037,1 +129206,Howard Saint,7220,8891,1 +129207,,24837,97131,0 +129208,Travel Agency Boss,288788,115896,9 +129209,Baby in Stroller,13777,75273,27 +129210,Tax Collector,183825,119549,58 +129211,,60125,23659,10 +129212,Mayhem,109417,1071483,10 +129213,Tim Lockwood (voice),109451,3085,2 +129214,Don Fabrique Borusta,111759,32138,6 +129215,Terry,239563,127048,8 +129216,Airport Screener,41733,150,6 +129217,Mr. Abe Goldstein,157343,129545,37 +129218,Brenda Stone,83896,22074,2 +129219,Miss Mathews,40139,52615,7 +129220,Shirah,288977,297502,1 +129221,Mendoza,440777,1754596,20 +129222,Himself,105583,1088703,13 +129223,Marcus Corvinus,834,2220,2 +129224,Lindsay Walker,271826,19962,2 +129225,William,7972,12514,12 +129226,Social Worker,312221,557505,54 +129227,Policeman Dempsey,3937,124875,22 +129228,Fire Captain Harrison Risley,140648,189636,9 +129229,Young Deborah,24094,97453,10 +129230,Oskar Åbb,116019,1062708,6 +129231,Niles,5721,45101,2 +129232,Herr Behr,49853,10254,15 +129233,Evan,362439,1507579,7 +129234,Dumisani,103012,65887,3 +129235,Herself,124071,4038,2 +129236,Le gardien de l'hôtel,274483,1367034,12 +129237,Sister Mary of the Sacred Heart,11131,68288,4 +129238,Lester,33472,30111,0 +129239,Esmeralda,148636,3136,2 +129240,Fluke (voice),127380,17605,8 +129241,Spy Woman,310593,1383392,10 +129242,Falco,245950,1317108,1 +129243,Harley Quinn / Dr. Harleen Quinzel (voice),17074,34978,7 +129244,"Joe, Detective",72313,12310,7 +129245,Jones,44087,938201,15 +129246,Thoth,24973,20099,11 +129247,Phillip's Girl,92496,1794805,19 +129248,Danny,27138,94286,12 +129249,Frozen Man,338676,1663854,16 +129250,Stephanie,322266,1425686,8 +129251,Captain Zip (voice),77887,7929,17 +129252,Lisbeth Salander,15472,87722,1 +129253,,332354,972158,8 +129254,Wolfi,279179,1221642,8 +129255,,320873,576165,4 +129256,Pressman,117212,120348,16 +129257,Jean,8281,24421,2 +129258,Nelli,92465,994244,4 +129259,Friend of Florence,315664,1186597,7 +129260,Jäger,410774,44393,4 +129261,Mamaji,87827,1271648,15 +129262,Homeless Guy (uncredited),263115,1514475,91 +129263,Mr. Fletcher,4953,2047,2 +129264,le réceptionniste,79435,587181,9 +129265,Peppy Museum Employee,36817,170252,8 +129266,,126516,1449321,14 +129267,Caleb Holloway,296524,527393,4 +129268,Bobby Hartford,40983,15626,0 +129269,Jennings,40761,190,8 +129270,Attending Doctor,264644,1517741,14 +129271,Sandra,82481,1127392,27 +129272,,74674,1445124,26 +129273,Brittany,172828,1288264,15 +129274,Mr. Morland,18093,188426,8 +129275,Chloe Patterson,69668,1001947,7 +129276,Cipolloni,62397,1894267,16 +129277,Geek / Jeffrey / Dr. Geekman,18633,4175,9 +129278,Scratte (voice),8355,87055,11 +129279,Pedro,236737,1382984,7 +129280,Anne Kennedy,21893,3971,0 +129281,Toby,198062,1138600,5 +129282,Beatrica,96118,231918,6 +129283,Michael Bloemstein - MNU Alien Civil Affairs,17654,967458,19 +129284,Boo,36299,7268,8 +129285,MP Colonel,43989,93722,8 +129286,Bubba,335970,177403,29 +129287,Actress (uncredited),53419,21313,6 +129288,Call Girl,220820,61562,26 +129289,Polska,269173,1379064,8 +129290,Cauchon,83475,86706,11 +129291,Commander Collins,13956,60232,13 +129292,Xian,19545,552175,29 +129293,Lily Munster,30002,41240,2 +129294,Prison Inmate (uncredited),369524,1808634,49 +129295,Nicki,70807,35435,4 +129296,Fecchia,48250,131663,5 +129297,Nils,383618,1581394,3 +129298,Frankie Twiggs,374461,8175,10 +129299,Faye Medwick,42168,83170,3 +129300,Party Guy,347630,1695669,48 +129301,Cesare Proietti,42441,69036,0 +129302,John,153,1771,3 +129303,La vieille Ronce (voice),137193,17901,4 +129304,Tiefoo,19277,79239,13 +129305,Francine,43281,129435,4 +129306,Placid Lake,14868,77714,1 +129307,Jane Rutter,340584,37260,0 +129308,Marie,57993,14965,2 +129309,Saeed,252171,146411,3 +129310,Banker at Demo,67375,120708,37 +129311,Nash,9542,10431,2 +129312,Nancy,66125,19538,1 +129313,Cleevers oom,268853,1648881,4 +129314,Linda,287903,1331652,2 +129315,,153420,131192,5 +129316,Il commedator Benzi,106623,5248,1 +129317,Singer,43809,1556459,20 +129318,Mial Scurlock,10733,177905,12 +129319,Biggz,59678,1672658,17 +129320,Emily's Roommate,19918,208307,17 +129321,Tour Guide,13991,1560892,13 +129322,Dr. Acland,24486,1225740,15 +129323,Mr. Willoughby,43384,34279,9 +129324,Glenn Woods,6980,41465,4 +129325,Mini Ace Frehley (uncredited),13477,1056117,18 +129326,Ms. Suggs,218778,38334,5 +129327,Julián,18120,374832,8 +129328,Dave Holland,72094,113970,4 +129329,Widder Douglas,42473,12430,14 +129330,Le commissaire,27053,543623,11 +129331,Koichi,1904,19860,17 +129332,Juf Ina,115929,228589,5 +129333,Snow Vase,263341,1583307,3 +129334,Street Punk (uncredited),47342,1458878,33 +129335,Commissionaire,87060,975344,13 +129336,Arthur Skridlow,23096,9597,17 +129337,French Girl in Dieppe,369885,1651427,66 +129338,Corinne Cavanaugh,36258,36197,3 +129339,Maggie,141643,1115141,1 +129340,Lucie Hennebelle,12449,19119,0 +129341,Fritz Wendel,83119,97935,5 +129342,Andrew Kissel,78096,32600,0 +129343,Hellman,147106,3785,2 +129344,Compton's Secretary,55604,33034,20 +129345,,336199,1529062,6 +129346,Sarah Walker,45156,66446,4 +129347,Older Native American Man,268920,1158069,48 +129348,Jo Ann Robinson,205361,30485,2 +129349,Iris Winterton,44087,20055,4 +129350,Kalle Päätalo,109861,148388,1 +129351,Scooby-Doo / Fred / Lachlan Haggart,12902,15831,0 +129352,Kipster,31127,1055701,11 +129353,Benny,19661,197151,12 +129354,Eleanor Espere,43131,97980,3 +129355,Mrs. Norton,371181,173001,11 +129356,Semo,175331,1028804,3 +129357,John Webster,93676,1353302,8 +129358,Maidmasher / Cook,267935,110902,17 +129359,Tanja,29568,1350846,4 +129360,Cpl. Clearboy,45522,6914,6 +129361,MacDonald,30708,19968,8 +129362,Marvyn Kornberg,19754,1457276,13 +129363,Turkish Worker (uncredited),297762,1824299,96 +129364,Arthur Lewis,241239,1370819,10 +129365,Grandmother,77381,1537343,8 +129366,,97088,1307569,8 +129367,,41416,126719,3 +129368,Marcia,39995,113552,1 +129369,Dieu,78258,65583,3 +129370,Monica,38328,120158,7 +129371,Tee-Tee,340275,1531605,44 +129372,Marie,91259,26142,3 +129373,Sissy,152748,1285848,13 +129374,Hood,96132,102121,13 +129375,Singer,18651,1467396,39 +129376,Charles Augustus 'Slim' Lindbergh,18776,854,0 +129377,Colin Brewer / The Creature,46368,1470861,6 +129378,Huurmoordenaar,16177,114756,3 +129379,Helena Karlatis,130948,133209,2 +129380,Pyromaniac,81541,592056,4 +129381,Whiz,107319,105082,5 +129382,Forest Animals (voice),73723,124748,16 +129383,Nelson,19398,132458,8 +129384,Mr. Turlington,85350,1228756,47 +129385,Himself,15258,160263,80 +129386,Tapio,230179,148012,9 +129387,Mrs. Fitts,337789,12025,4 +129388,Chiyo,124994,108021,1 +129389,Chris Vaughn Sr.,11358,38571,7 +129390,Tom Lynn,126927,6972,1 +129391,Frank,132928,975810,8 +129392,Brother (Ricky) at 14,27414,1206248,36 +129393,King Yeongjo,315439,20738,2 +129394,Emily,14145,115146,2 +129395,Borelli,43935,94182,13 +129396,Scotty,26899,4442,5 +129397,John Marvin,168217,96725,1 +129398,Du's thug,40081,127804,18 +129399,Director Tsui,91186,26760,14 +129400,Fake Porter,11248,1220360,12 +129401,Himself,42225,1002718,6 +129402,Carlota Cervantes,37628,177785,5 +129403,Simon,14669,141961,14 +129404,Red,203351,77321,1 +129405,Isabelle 'Belle' Williams,11045,15758,0 +129406,Nephew's Girlfriend,53392,1393252,6 +129407,Tommy Gaunt,213443,90000,6 +129408,Novel,70575,3027,8 +129409,Spinetti,58611,32673,5 +129410,Buddy Crawford,43792,103671,6 +129411,Stanley Belt,24062,3663,0 +129412,,31512,131190,21 +129413,Himself,15258,6105,42 +129414,ACP Yeshwant Thakur,117099,37234,2 +129415,Banker,26323,97776,18 +129416,Dr. Emil Kovac,341201,14060,5 +129417,Ana,32635,953,3 +129418,Jade,14123,93377,1 +129419,Nico 2,161024,105743,2 +129420,Kwame,25973,233191,3 +129421,Professor Fitzgerald (as Gordon DeMain),110980,89017,5 +129422,Master of Ceremonies,43792,40178,5 +129423,Rail Hobo (as BJ Grogan),335970,1718146,45 +129424,Fanshawe,399790,1830204,13 +129425,Alan,119738,53336,3 +129426,Henry Arbuthnot,196789,5832,3 +129427,Fighting Boy (12 yrs old),1271,1089921,25 +129428,Sarta Bionda,209413,1882002,9 +129429,,206197,206902,21 +129430,Mary,314011,229792,3 +129431,Herself,14923,25884,64 +129432,Şaban Aga / Dilaver,123601,97272,0 +129433,Jane - Age 22,50549,122637,17 +129434,Michio Hayasaki,32234,18056,0 +129435,Helena Kurcewiczówna,31273,10695,0 +129436,Jack Larson,94176,35322,8 +129437,Mr. Hodges,46014,22093,6 +129438,Barney the Deputy,31275,165704,4 +129439,Mr. Kremp,32139,53552,5 +129440,Paula Chase,10739,8893,3 +129441,King (voice),10192,8930,6 +129442,France,46915,1220073,13 +129443,Charlie Brown (voice),31718,124023,1 +129444,Langham Maitre'd,295964,93848,19 +129445,Himself,151870,1743387,6 +129446,Slim - Bazooka Player (uncredited),72602,1053791,9 +129447,Shela,19661,6930,1 +129448,"Milena Tatour, Anna's mother",48118,72708,1 +129449,Frank,2567,164630,25 +129450,Molly Quinn,396392,65220,0 +129451,Lucia Corlane,249264,44881,1 +129452,,317246,283391,2 +129453,Count Kaledine,183932,992683,13 +129454,Ruth Seaton,116780,75355,7 +129455,Kona,115712,1129823,3 +129456,Ali (vendor),43354,21877,9 +129457,Matka Piotrusia,82027,591419,6 +129458,Air Traffic Controller,102382,281638,38 +129459,Himself,411013,1799843,9 +129460,Jean Jacques,116463,60874,14 +129461,Frankie (voice),9836,59788,19 +129462,Sondheim,22998,14641,7 +129463,V-Section,369885,1448206,44 +129464,Skinhead,381645,1814863,13 +129465,Mrs. Hong,331588,1455769,14 +129466,Achim,36672,697,11 +129467,"Himself - conductor, Hollywood Bowl Orchestra",135313,204946,8 +129468,Benny,257450,46927,2 +129469,Terry,309024,1614451,10 +129470,Ogushi,143946,106165,27 +129471,Chichi,28268,213511,1 +129472,Xun You,12289,1623409,27 +129473,Asuna Watase (voice),79707,1116333,0 +129474,Zena,30921,106487,5 +129475,Dog Walker,114779,934288,10 +129476,Cherry Bomb,284564,44936,3 +129477,Pappa Ek,133458,224369,18 +129478,Frank Boggs,85126,73022,1 +129479,Princess Elizabeth,300155,190895,0 +129480,X,231762,370383,0 +129481,Madre di Giacomo,79836,34027,5 +129482,Jud Morgan,108224,1310222,5 +129483,Looking Glass General - 'Alice',20674,15152,2 +129484,Linda Hughes,76286,148603,2 +129485,Madame Belly,18189,3138,4 +129486,Mickey Mouse,67162,2106,1 +129487,Paxian Ru,16999,55507,5 +129488,Ghost,54700,81295,1 +129489,Dayna,10362,979432,17 +129490,"Snyder (""The Picture"" segment)",45577,69249,8 +129491,Sea Captain's Daughter (voice),16440,154684,3 +129492,Mary Brogan,59726,216819,4 +129493,Yoav Pollak,270646,1321909,2 +129494,Derek,13551,17051,4 +129495,Martine Graff,35008,1070002,9 +129496,Marina,60281,18182,1 +129497,,130957,74183,13 +129498,Dunk Girl,76543,515821,11 +129499,Danny,8270,54210,16 +129500,Special Appearance,15761,86075,8 +129501,Father Joseph Bedelia,18214,157582,3 +129502,Mère de Momo,337,6548,3 +129503,Detective Horiguchi,117212,240013,11 +129504,Cliente,14430,1521657,25 +129505,Tulo (voice),16873,962545,26 +129506,Kim,45302,1051811,4 +129507,Butch,53573,148509,3 +129508,Zabi,193756,1283060,40 +129509,Gaulist (uncredited),22584,120700,25 +129510,,143946,1201027,8 +129511,,51267,86866,2 +129512,,286595,122571,4 +129513,Recruiting Sergeant,80596,73245,16 +129514,No Pupils,315837,1200415,25 +129515,,27904,935291,0 +129516,Herzog Max von Bayern,459,6254,3 +129517,Riku,101838,1029076,2 +129518,First Policeman,28170,99943,7 +129519,Jake Lever,52221,95746,2 +129520,Cilla Perl,19338,1579258,16 +129521,First Cop,81475,1090419,15 +129522,Gabriel Mann,60665,1056284,1 +129523,Kitty Lennihan,121003,12025,4 +129524,Brakeman,79735,8496,9 +129525,Frosty (voice),49013,1443765,42 +129526,Herself,2890,28732,3 +129527,Kat,271718,1486957,28 +129528,Eddie Murphy,319096,1099766,8 +129529,Dr. Hicks,52827,120785,7 +129530,,89659,1167894,3 +129531,,48375,140372,5 +129532,Boy,32610,105795,29 +129533,Avalon Greene,84105,98285,0 +129534,Telephone Repair Man,153163,22606,22 +129535,,313676,1324446,4 +129536,Alter Mann,10749,26602,6 +129537,Spectator,279096,1386307,28 +129538,Jeune inspecteur,8276,1420366,15 +129539,Natascha Kampusch,166666,17022,0 +129540,Teacher,188598,1776752,10 +129541,Inmate 488,94365,1080034,11 +129542,Smylla,269258,1417518,17 +129543,Driscoll,52859,3383,1 +129544,Tommy,43812,978032,83 +129545,"Bandyta Płaza-Spławski, wspólnik Pochronia",156627,1110194,2 +129546,Daniel,194101,1278754,9 +129547,paziente ospedale,142320,585365,12 +129548,Reporter,26376,1030251,18 +129549,Sheriff Davies,183412,236653,10 +129550,the narrator,140032,40,7 +129551,Himself,117942,42545,9 +129552,Walking Mother,13777,75272,26 +129553,Mike,413391,1525047,0 +129554,La femme qui cherche du travail,181456,1524418,28 +129555,King Pellinore,18978,30706,4 +129556,Interviewee,81576,928924,3 +129557,Vasily Lukich,96724,214019,26 +129558,Commander Quigley,80775,6102,2 +129559,Officer,24973,1155980,47 +129560,Claire,283726,123989,1 +129561,Benjamin Robert Haydon,245700,30328,5 +129562,Sheriff,11496,1525612,14 +129563,,38099,119657,23 +129564,Monica,43923,177022,15 +129565,Norbert/Jésus,393407,54291,8 +129566,Hal Trent,3941,34451,8 +129567,Ehrmann,6183,21831,26 +129568,Samur,296491,32679,8 +129569,Amy,94352,1001711,5 +129570,Prisoner,440777,1754593,15 +129571,Monsieur Olsen,118150,238768,3 +129572,Le policier,1986,1195666,13 +129573,Aubrey,63348,1496341,3 +129574,Carmen,95134,98002,3 +129575,Eric Meijer,44115,639,14 +129576,Bobby,9966,53117,8 +129577,Kim,63877,86929,1 +129578,Kráľ Pravoslav,208436,1093790,2 +129579,Il capo dei ribelli,63179,132198,6 +129580,Square,426265,1625680,4 +129581,Kazuki,43635,13256,10 +129582,Mrs. Lee,69310,71057,12 +129583,Shimazaki,88271,33135,7 +129584,Grandmother,74,103079,10 +129585,Delilah (Banks' maid),22968,2790,7 +129586,Tooley,5183,8434,4 +129587,Himself - Roaster,334461,7167,11 +129588,Young Antonio,8194,38673,1 +129589,,17895,1193393,12 +129590,Fievel Mousekewitz (voice),27653,34199,0 +129591,Martin Krafft,33673,124089,10 +129592,Katja,56596,934151,1 +129593,Sato,402455,80865,19 +129594,Pete,409536,884,2 +129595,Bridget,71672,563643,2 +129596,Dame #2 (uncredited),44869,117723,14 +129597,,113432,1057153,0 +129598,Annabelle,95169,100802,6 +129599,Policjant (as Bartek Topa),82027,68828,9 +129600,Marie-Laure,61267,1276782,12 +129601,Rachel,353257,216936,3 +129602,Stagecoach Whip,266285,1459343,12 +129603,Agis,35396,935617,5 +129604,Uro'er,2061,1348454,12 +129605,Ramsden,6972,34657,23 +129606,Theodorus Andronikos,9703,2957,11 +129607,Josh Higgins,43440,89728,6 +129608,Párroco,378087,1146047,9 +129609,Jeannie Rockne - Age 10,43812,103068,52 +129610,Portence,156711,1262554,17 +129611,Phoebe,62837,108247,11 +129612,Charlotte,237796,17006,4 +129613,Antonello,439998,582900,9 +129614,Tavern Waitress,24973,1747654,21 +129615,Mitus (as Gosha Kutsenko),97672,29839,1 +129616,Astrid,10075,1874,2 +129617,Charles,153795,211429,4 +129618,Charlotte Stassen,42532,34472,5 +129619,Sue Walters,134435,94765,1 +129620,The experimenter,662,9962,2 +129621,Carrie,50506,203227,7 +129622,Soriano,335053,15601,13 +129623,Dancer,94525,1657453,6 +129624,Nicole,19237,115731,6 +129625,Mr. Goodenow,94225,18871,12 +129626,Zotik,83444,939188,6 +129627,Batman (voice),353595,963818,1 +129628,Ray,13836,7679,41 +129629,Sarah Sargeant,210609,9994,4 +129630,Hélène,79435,50,0 +129631,Henry Hecht,43022,21510,7 +129632,,31512,20335,18 +129633,Ellen,1382,4975,8 +129634,Jun,11553,69829,4 +129635,The Count's Henchman,31003,1545667,8 +129636,Eric,84348,1090693,24 +129637,Ellen,252102,1287562,2 +129638,Helga's Father,206390,1188864,7 +129639,Young Farmer,44190,99754,6 +129640,Inspector Carson Fong Yik Wei,19528,78869,1 +129641,Hospital Receptionist,42709,166144,7 +129642,Darsteller Filmset,27637,1124383,8 +129643,Marja-Leena,40660,124265,3 +129644,Max Lasker,41206,125807,5 +129645,Joe Romano,29695,81685,3 +129646,Ministre,98277,1563196,21 +129647,Glyptodon Boy,21044,35475,4 +129648,Nurse,18569,1466151,37 +129649,Igor,390880,932353,1 +129650,Zoe,34806,16866,0 +129651,Vidhi,280690,239693,9 +129652,himself,33916,135658,0 +129653,Donna,111605,18750,0 +129654,Guard,26376,14664,41 +129655,Papy Paul,8276,54277,7 +129656,Manolakas,10604,65896,6 +129657,Elias,15036,59270,0 +129658,Capitano Rolli,187737,1064720,5 +129659,Exodus,67174,227160,0 +129660,Driscoll,31390,141,0 +129661,Filippo Lievi,369245,1541248,6 +129662,Dr. Connelly,295588,17490,11 +129663,,411081,1512173,4 +129664,Naomi,399612,566331,3 +129665,Ernst Augustin,61035,49100,22 +129666,Craig,21001,86983,0 +129667,John Utterson,3016,29584,6 +129668,Aurora,114172,1477662,2 +129669,Wilbur,27916,1090174,4 +129670,Carpetbagger #4 in Montage,183825,1204352,37 +129671,Abby,31277,1213604,3 +129672,Huckleberry Finn,42473,53088,12 +129673,Susy Belmont,31118,116982,3 +129674,Max,27480,76940,3 +129675,Tex Watson,381737,1193606,4 +129676,JVC Alto Jazz Saxophone Player (uncredited),244786,1503851,42 +129677,Karen,225044,139194,12 +129678,Cesar,425591,147960,8 +129679,Infermiere 1,110447,1752452,24 +129680,Regina,259616,228902,3 +129681,,104343,1270263,1 +129682,Frankie Callan,27122,76315,1 +129683,Maria / Silvana / Caterina,329868,70119,1 +129684,Xavier LaFlamme,336890,71507,2 +129685,(uncredited),4497,1470498,15 +129686,Ticket Girl,9893,54881,20 +129687,Hugo Almada,370741,232142,7 +129688,"Patrik, Cecilias man",129359,576478,5 +129689,Angie Grieves,301228,1382197,6 +129690,George 'Blue Chips' Packard,27470,1937,11 +129691,Justin,318553,1421423,7 +129692,Dr. Leonard Chaney,40139,5403,0 +129693,Walter Kaufman,96107,2502,8 +129694,Girls School Dancer,38322,1267374,54 +129695,"Sóskúti, gépész",8776,125196,7 +129696,Jéssica,303982,1422048,3 +129697,,337012,45749,12 +129698,Voice Cast,222935,1585158,41 +129699,Bust Somebody,51036,9354,31 +129700,Lady Jane Greer,46586,106151,12 +129701,Elisabeth,187252,1167748,0 +129702,Débora,34588,1247858,19 +129703,Stand-In,186759,1505305,34 +129704,"Hopkins (segment ""Creeping Vine"")",26811,9874,3 +129705,,188981,1198334,3 +129706,"Finn Malmgren, Meteorologist",8063,549541,6 +129707,Qès Amrah,1986,20443,6 +129708,Prof. Chen,1899,1335535,2 +129709,,65713,86667,4 +129710,Laurinha,97110,535740,6 +129711,Françoise,76871,36315,4 +129712,Extremis Soldier,68721,1735575,99 +129713,Tom,53693,1140881,25 +129714,April,159701,1235967,12 +129715,Charlotte,4964,963429,9 +129716,Bone,27873,29094,4 +129717,"Камиль, дежурный электрик",25936,86863,4 +129718,Ashley Moon,239018,1223160,5 +129719,Belediye Başkanı,81708,106786,2 +129720,Rocky,25655,1356199,15 +129721,Party Girl #2,258480,1651834,44 +129722,Milena,371459,4635,1 +129723,,1838,73093,20 +129724,"John, Gail's Butler",98125,34090,22 +129725,Josephine Jardin,285840,59882,0 +129726,Guard at Desk,6947,11614,15 +129727,Dorm Neighbor,244786,52939,11 +129728,Party Girl,77930,1186515,73 +129729,Poliziotto,60046,5968,3 +129730,Tom Trevethan,43093,116140,8 +129731,Actor,15043,12901,0 +129732,Grader,7972,20318,15 +129733,Erol Taş,197297,145352,2 +129734,Pastor Roberts,38546,44240,4 +129735,Louie,49110,2561,4 +129736,Detective #1/Side Effects,312174,1383170,5 +129737,Tuure Hilarius Ruokonen,442752,1364481,1 +129738,Nick Di Paolo,369524,144226,27 +129739,Max,14142,18975,2 +129740,Edgar Allan Poe,70436,3036,0 +129741,Ms. Song,321191,150126,3 +129742,Mary Seton,43875,117694,17 +129743,Dancer,10096,168925,38 +129744,Clips from 'The Wizard of Oz' and 'The Harvey Girls' (archive footage),33740,9068,14 +129745,Anthony 'Tony' Wade,170234,44833,4 +129746,Vernon,24963,16476,17 +129747,Sam,1251,33521,7 +129748,Briton Biker,240745,1660698,26 +129749,Tim,348320,1243498,7 +129750,Max,360603,42276,2 +129751,Steve,345915,62,0 +129752,Rochel Meshenberg,18290,82885,0 +129753,Himself - McFly Band Member,10025,62069,8 +129754,Jirô Horikoshi (voice),149870,24045,5 +129755,Larry,375355,176215,4 +129756,L'homme au visage cassé (voice),356161,20795,3 +129757,2nd Lt. Blair,43407,23086,13 +129758,Harada,72592,58675,18 +129759,Rochegude,37645,1064454,28 +129760,,124597,235380,15 +129761,Nellie,200324,97992,6 +129762,Captain of Flight 36,45726,116564,11 +129763,Drew McNaughton,267852,1388529,6 +129764,Doctor Omar,42678,30290,2 +129765,Valerie Weston,26486,49148,3 +129766,Destiny (voice),127380,95102,6 +129767,Howard Hathaway / The Mikado,218351,1208005,4 +129768,Grey LeBlanc,19277,65806,1 +129769,Chardonnay,39356,1753257,5 +129770,Dolores,82265,54149,0 +129771,Bobby Walker,44129,880,0 +129772,Prince Nelidov,149170,82796,11 +129773,Simon,406052,6213,21 +129774,Herself (Archive Footage),448449,1539026,2 +129775,Bill - Prisoner Dispensing Clothing,26376,33179,16 +129776,Doña Leonor,353713,263403,4 +129777,Nelson,232462,27811,0 +129778,,393521,1867486,7 +129779,Beeea,29192,228711,1 +129780,Joe Dix,43741,1244926,5 +129781,Young Girl (Alisa),222935,1672067,20 +129782,Burned woman,24979,567586,1 +129783,Reverend Angus Paddie,15081,69764,3 +129784,Girl at the Marriage Market (uncredited),3059,1304062,100 +129785,Convict (uncredited),15794,1289627,59 +129786,Jack Ulrich,24757,96173,3 +129787,Curious Guard Bob,63762,96464,6 +129788,胖虎,265712,1521537,19 +129789,,127445,1014629,3 +129790,,12622,554244,19 +129791,Indian,105059,1683137,36 +129792,Arzt,14804,1510760,14 +129793,Egg tradesman,121462,1419474,8 +129794,1st Fisherman,395992,1373280,6 +129795,Warren,42634,9806,10 +129796,Frederick Krauss,19338,984850,5 +129797,Joe Thanks,10915,15140,0 +129798,Lucky Leo,284564,3801,16 +129799,,44716,1232755,15 +129800,Brandt,105945,1046436,7 +129801,Young The Kid,310135,1501944,11 +129802,Marta,277778,1334135,10 +129803,Winthrop Peabody Jr.,288521,27733,2 +129804,,289183,108471,7 +129805,BBC Announcer (uncredited),52520,115177,28 +129806,HotShot Dealer,265208,570706,20 +129807,Kansas Barfly,75315,1422281,50 +129808,Seán,262958,27176,6 +129809,"Ensign Ralston, U.S.N.",17744,83128,3 +129810,André (Ruth's husband),158990,963109,13 +129811,Lydia Stille,377290,1374818,6 +129812,Tarek,35623,52690,0 +129813,Natre's neighbor,17111,1629452,24 +129814,Stephen Jones,32996,24937,0 +129815,St. Clair Bayfield,315664,3291,1 +129816,Elizabeth,13022,61350,11 +129817,John Howlett,2080,63295,15 +129818,Dadi,5319,35783,5 +129819,Tony McVane,43833,3359,0 +129820,Sam,58547,71552,11 +129821,Himself,55027,225223,6 +129822,(as José María Muñoz),110001,1061787,3 +129823,Droopy,87194,67230,2 +129824,Joshua Welling,62392,40623,9 +129825,Herself,14505,56824,10 +129826,Harry Owens and His Royal Hawaiians,43783,1377198,9 +129827,Algy Longworth,38437,3364,3 +129828,Communications officer,24392,1656598,11 +129829,Murphy,49524,118590,12 +129830,Veteran Scientist,435,21021,19 +129831,Martha,220515,9565,2 +129832,,77185,305092,7 +129833,Harry Foster Malone,40957,20602,2 +129834,Wade,18774,1247280,9 +129835,Gwen (voice),21250,35159,7 +129836,Haring Bantayan,67174,1226025,7 +129837,Helene Peterson,43149,30241,1 +129838,Wilbur Peterson,40957,2649,10 +129839,Toni,100088,9921,3 +129840,Lt. Dire,17386,8954,2 +129841,Sebastian Tasi,228294,76834,3 +129842,Kimber,184866,143047,3 +129843,Commando,1724,1075146,14 +129844,Mrs. Brisebois,18381,227602,6 +129845,,19621,107246,18 +129846,Hopscotch Girl,1724,1366382,65 +129847,,201429,1574108,12 +129848,Kolka,83444,239124,8 +129849,Emily,126442,208160,4 +129850,Congressman Mandeville,143092,83465,5 +129851,Bertie's No. 2 Man,111302,34098,7 +129852,Mannaja,19946,85338,0 +129853,dono do retiro de fados,49961,143136,9 +129854,Narrator (voice),45556,58169,15 +129855,Tonto,139718,1229431,30 +129856,Junko Yagisawa,108634,1176977,5 +129857,madre di Elena,108535,1016040,5 +129858,Dinah,236395,85847,5 +129859,Sara Northrup (voice),318224,33653,4 +129860,Ranger Rick Dickerson,17306,130801,19 +129861,Marie-Jeanne Metzer,329809,1033671,8 +129862,Kommissar Lohmann,12206,12324,4 +129863,Malcolm Foxworth,236399,1585738,8 +129864,Eddie (uncredited),84903,4960,8 +129865,,182843,5813,7 +129866,il cherichetto,121516,102013,10 +129867,Madame Vandersexxx,9352,20584,5 +129868,Old Man with Radio,8053,76136,6 +129869,Aldo,58013,120019,0 +129870,Kimberly Kresby,9890,60016,10 +129871,Dr. Pierre Elzevir,63333,11031,4 +129872,Jim Taylor,46513,136532,6 +129873,Bob Clark,3580,155018,26 +129874,Duccio,60018,55912,1 +129875,Pan-chan,21036,1241485,2 +129876,"Saverio, il padre di Rosalba",53486,120134,3 +129877,Tommy Tyler,35129,16897,1 +129878,T.R. Paige,121003,17753,1 +129879,Janine,296626,2393,7 +129880,Kate Lamar,38808,96498,9 +129881,Driver,107705,87083,11 +129882,Jim Braddock,921,934,0 +129883,Lehrer Büttner,115023,38459,11 +129884,Dr. Han,340027,61187,14 +129885,Werner,30941,27515,12 +129886,Carmelo,167583,240914,5 +129887,"Sue ""of the Dubervilles"" Dubois",43670,51536,2 +129888,Baby Roy,239566,15564,20 +129889,,63859,41749,10 +129890,Townswoman (uncredited),14615,34184,53 +129891,Franz Munzer,39407,45380,2 +129892,Herbert Wilhelm Peters,177979,1075570,2 +129893,Bartender,3937,95949,23 +129894,Rocket Rick Ragnarok (voice),17009,173219,8 +129895,Daisuke Jigen,30143,82508,1 +129896,Donna,26510,1555729,4 +129897,Rusty Griswold,158382,1429686,3 +129898,Sandra,123359,1102267,8 +129899,Docteur Charcot,334317,113603,8 +129900,Judge Bernstein,28290,5248,4 +129901,Young J.R.,69,77332,18 +129902,Sergeant Peter O'Gaffney,102384,2010,3 +129903,Hal Look-Alike,55347,235855,27 +129904,Mine Fukuda,43877,136360,6 +129905,Ann Marai,17845,82423,4 +129906,Woman with Pipe,26491,1356007,14 +129907,Mike Fogarty,26283,34279,7 +129908,Ariane,201365,1105030,1 +129909,Lycan Pack Leader #1,346672,1781390,15 +129910,Carter,47876,57352,7 +129911,Böller,11664,11258,1 +129912,The Judge,47876,30123,4 +129913,Phuchit Puengnathong,13436,1267892,1 +129914,Vince Castor,38162,532,3 +129915,Ikuo Matsumura,14217,63696,1 +129916,Record Hop Dancer,2976,1086460,88 +129917,"Dagwood "" Dag "" Bumstead",3937,34179,1 +129918,Esposo Rosita,107073,1481496,8 +129919,Слава,83456,86861,1 +129920,Sunshine,99324,34185,8 +129921,Commander Vince Elliott,29290,58423,2 +129922,Margaret,68174,343,3 +129923,Supermarket Woman (Jane),226701,1860633,7 +129924,Customer,242097,1779786,17 +129925,platoon commander,88564,543724,3 +129926,Frank,314065,572135,12 +129927,Cecilia Albright,41028,58530,3 +129928,Lloyd,273610,38707,2 +129929,Justice of the Peace (uncredited),31773,948509,25 +129930,Mark's Mother,95919,65354,7 +129931,Gotfredsen,11391,73930,6 +129932,George,370178,76940,7 +129933,таксист,47812,101691,11 +129934,Angus Kilbourn,107250,1834258,10 +129935,Laura,64805,8925,0 +129936,Hippie,85543,933324,3 +129937,Eugen Manz,277968,24440,10 +129938,Mr. Connors,7980,155081,15 +129939,Justin,9472,15033,4 +129940,Marty,17258,71347,31 +129941,Dom Frollo,148636,194,1 +129942,Ash,33343,1188793,25 +129943,Montse,284305,67052,0 +129944,Annabelle,40466,1195590,4 +129945,Mircalla / Carmilla Karnstein,31472,108087,4 +129946,,303398,6217,5 +129947,Mrs. Banks,76297,13567,2 +129948,,19552,1275926,17 +129949,Eugene Scott,28155,8351,0 +129950,Marilina,469172,1862605,9 +129951,Malcolm / Big Momma,38322,78029,0 +129952,Jimmy's Father,322,4739,19 +129953,James,240733,1017259,0 +129954,Christopher,8588,5049,0 +129955,T. Vernon Isopod,42669,2922,7 +129956,Janet Porter McClenahan,177190,114767,1 +129957,Jancsi (voice),41078,42077,1 +129958,Nat Lucas,32716,1156984,10 +129959,Giorgio da piccolo,46128,134956,5 +129960,Paul Lang,368342,113999,1 +129961,Strip Club Girl,28090,1719895,42 +129962,Elaine Gavin,42794,1024957,1 +129963,Rema,244783,1345418,4 +129964,Boy at Airport,82654,1359659,18 +129965,Sam Pegler,46623,46711,7 +129966,Hetty,217775,114755,4 +129967,Lili,156015,19936,9 +129968,Cynthia West,33009,59642,3 +129969,Dad Blake,23590,100806,4 +129970,Scatter,21968,6772,4 +129971,Wally 'The Fox' Benton,90465,105636,0 +129972,Gym Teacher,10330,64829,16 +129973,Mélanie,152989,1171510,3 +129974,Mrs. Nair,31977,87301,7 +129975,Restaurant Hostess,10761,66561,17 +129976,"Viktor Mikhailovich, musician",83459,240369,3 +129977,Mob Member,57201,967071,50 +129978,Samurai Warrior in Dojo,256962,1789156,50 +129979,Teacher Lee,257331,1472200,8 +129980,Katie,291866,220236,0 +129981,College Principal,109001,110096,8 +129982,Joaquín,348537,35722,7 +129983,Nello D'Amore,92586,231022,7 +129984,Jake Neely,13834,2047,0 +129985,Angelina,8556,17718,0 +129986,Max Schmeling,111744,1844,1 +129987,Slim Grissom,79645,6914,1 +129988,Police Officer,360606,1512176,11 +129989,Helen McBain,71320,1087584,4 +129990,Herself,123283,1077701,4 +129991,Danny DePasquale,38743,2055,0 +129992,Fred,77964,109776,12 +129993,Le juge,15712,553215,13 +129994,Himself,8847,56080,0 +129995,Himself,123283,1077703,8 +129996,Pete,41556,239271,7 +129997,MOB Dancer,243683,1398068,46 +129998,Brad,38916,4156,4 +129999,Officer Gomez,44945,132218,19 +130000,Elizabeth,3556,32785,2 +130001,Betty,188468,13992,3 +130002,Sartana Rivera,106747,56731,5 +130003,Kevin,251419,106393,6 +130004,Josie,119893,220064,0 +130005,Lee,297265,1759662,18 +130006,Marco Serra,330171,133215,9 +130007,Judge James K. 'Jim' Hardy,43808,29259,0 +130008,Rachel (voice),16366,80414,3 +130009,Dr. Van Kessel,80316,24556,5 +130010,John Mason Jr. - One Year Old,18569,1466153,48 +130011,Uncle Hubert,32996,100769,5 +130012,Commissioner Blades,340275,9464,16 +130013,Al,126083,145828,6 +130014,Tween Dory (voice),127380,1695064,29 +130015,Comte de Vandeuvres,66812,545451,1 +130016,Jackie Leavey,424488,36190,7 +130017,Sonseeahray 'Morningstar',37292,48958,2 +130018,Felicity,54491,1217658,17 +130019,Frieda (voice),15242,130918,7 +130020,Guan Yu,14538,69636,5 +130021,Mary Kubicek,424600,1704655,10 +130022,Danny,150117,39189,4 +130023,Frank,13920,15824,5 +130024,Cathy,151509,1026225,1 +130025,Carlene Carter,69,431,14 +130026,Journalist,16171,79861,9 +130027,Le contrôleur ('Le mariage'),98302,1285426,7 +130028,Second Bride,43809,115366,11 +130029,National Security Advisor,97630,8435,16 +130030,Binx Davy,15982,2224,1 +130031,"Park Chang-yi, the Bad",15067,25002,1 +130032,Shane Daniels,28465,23880,0 +130033,Tulip/Crosby,34052,111740,0 +130034,Captain Nemo,2966,3895,0 +130035,Kaí,267579,258,0 +130036,Sarah,337104,1232889,13 +130037,O'Henry and Narrator,167882,14831,5 +130038,The Lady at the Cemetery,84473,104212,4 +130039,Rigzang Wangchuk,259997,12224,33 +130040,Pete's Bandmate,356752,1841500,20 +130041,Groupie 1,170759,1004832,20 +130042,Seal,257344,1683845,52 +130043,Himself,207021,19137,2 +130044,Alan Wythe,213443,12308,3 +130045,Kayla Silverfox / Silver Fox,2080,21044,3 +130046,James,48204,40863,1 +130047,Judy Sanders,41759,133772,8 +130048,Mac,27999,133738,7 +130049,Heather Hudson,2080,77561,11 +130050,Mrs. Quayle,2516,25641,9 +130051,Captain O'Malley,70863,181975,7 +130052,Signorelli,95136,1833019,15 +130053,Miyuki,11838,70670,5 +130054,Her Mother,47653,10531,5 +130055,Blond Milton,39013,1163722,16 +130056,Man / Dog (voice),279598,86753,3 +130057,Ryan,76101,55084,0 +130058,The Bum in the Next Bed (uncredited),28668,110204,4 +130059,Denver,30708,6462,10 +130060,Moutamin,16638,89065,8 +130061,,53688,457438,5 +130062,Keith Ritson,51209,980,10 +130063,,57419,1050851,21 +130064,Julie LaVerne,31548,145959,4 +130065,Zekith,27840,99136,4 +130066,Richard Ekström,33613,107577,12 +130067,Lt. Rossmore,81475,38171,5 +130068,Craig,42307,127733,1 +130069,Scella pezzata,42416,128073,1 +130070,Store Clerk,28090,47463,14 +130071,Male Student,370755,929906,9 +130072,DSP Pannalal Chohaar,192675,85881,2 +130073,Fra Diavolo,183073,9768,2 +130074,National Guard's officer,151068,1147551,7 +130075,Guard (voice),191850,1533264,3 +130076,Lukas Schnell,303856,1327195,3 +130077,Chris (finale),417820,1839708,9 +130078,Rancher Dusty King,75315,89729,9 +130079,Vaughan,7548,52891,10 +130080,Themselves,393367,1660175,2 +130081,Mike 'Monkey',42725,83463,1 +130082,The Duke of Albany,134155,1377256,4 +130083,David Hoffman,13336,14606,0 +130084,Mose,43821,589812,20 +130085,John Aaron,3291,31508,6 +130086,Miss Poppy,20521,9206,2 +130087,,53883,130114,5 +130088,Gossip,364088,1523167,10 +130089,Commerciante,78340,1163660,12 +130090,Jill Bioskop,5552,44078,0 +130091,Hackett,126712,97222,8 +130092,Suzanne,85431,55253,7 +130093,Doubling,20742,86560,12 +130094,Mrs Clare,101915,1220122,16 +130095,Lilly Herbish,274060,83477,5 +130096,Herself,245394,117352,4 +130097,Jiale,188598,1186919,3 +130098,Evelyn Silverman,268321,12139,7 +130099,Prisioneiro 2,70666,1863913,60 +130100,Young Vivian,10075,62887,13 +130101,Ruan Sternwood,93828,78050,9 +130102,Doña Puri,284305,982296,6 +130103,Léon,8281,47822,9 +130104,Dave,6964,12988,6 +130105,"Peola Johnson, Age 19",47921,1010217,5 +130106,Shinji Tsutsumi,248376,223535,18 +130107,DJ (Club Liv),397422,1772622,30 +130108,Drue Van Allen,194407,14974,0 +130109,Brent Mustangburger (voice),49013,188559,13 +130110,Eugene,398289,77164,7 +130111,Angela Reynolds,325173,946263,2 +130112,Horner,131039,180999,6 +130113,Big Bad Wolf,109329,31771,1 +130114,Anberber as a child,12427,1811526,9 +130115,TV Announcer,9252,1596419,16 +130116,1° Chierichetto Ultrà,315319,1405272,11 +130117,Buba Kastorskiy,41979,230280,5 +130118,Rusher of Din - Sleeper,36751,116110,7 +130119,Neera,42418,128094,0 +130120,The Bride,2861,18484,9 +130121,Timothy the Birthday Bird (voice),153518,1340664,21 +130122,,69310,1635792,46 +130123,Wahab,46738,1644509,18 +130124,Gen. Merle Rupert,264321,1272,4 +130125,Dr. Betsy Nolan,83802,1548435,17 +130126,"Dr. Clinton Forrest, Sr.",124115,20368,10 +130127,Pop Cardetti,20325,125364,2 +130128,Connors,133255,1096829,6 +130129,Carla - the Real Friendly One,508,9205,27 +130130,Banda Sua Mãe / Baixista,70666,1863892,26 +130131,Ernesto,129363,1089161,0 +130132,Captain Joseph Paul Beaulieu,23178,44188,3 +130133,,37429,59753,3 +130134,Primario,110447,1752450,21 +130135,The Minister,123969,228123,0 +130136,Stock Exchange Chairman,109716,14691,71 +130137,Soldier 1,5237,928727,11 +130138,Admiral Statura,140607,2131,18 +130139,Yoon Young-hwa,209764,75913,0 +130140,Clarence,21030,30613,6 +130141,Gigliola,3520,31895,1 +130142,Cathie's Flatmate,237,1841,12 +130143,Himself,142161,1121625,2 +130144,Barman,35026,1164143,10 +130145,Jimmy,36691,518,1 +130146,Nobel Schroeder (voice),9514,1877,3 +130147,Josh,150117,28847,0 +130148,Sally,179398,1102260,0 +130149,Armond Kaputo,38743,121143,6 +130150,Villager Fan #2 (voice),10192,1181220,31 +130151,Ludde,128946,550129,6 +130152,Atlas,107596,1647142,19 +130153,Edeldame,1659,18443,8 +130154,"(segment ""Chawan no naka"")",30959,34690,68 +130155,,49961,143121,18 +130156,On Street / At Dance (uncredited),42553,1380993,14 +130157,The Nurse,31161,107707,1 +130158,Miss Jane Murdstone,141640,20300,4 +130159,Joey,244268,49918,4 +130160,Leader of His Orchestra,80941,1227384,25 +130161,Hannah Harriman,283686,1181403,5 +130162,Soyan,320343,1444195,2 +130163,Doctor,378441,1797401,13 +130164,Harry,48717,1184303,1 +130165,Kim,17669,113891,7 +130166,Eiko's Father,124994,1008449,5 +130167,Charles D'Aubigny,27635,7125,0 +130168,TSA Zombie,82654,1195616,13 +130169,Marta,72984,1764690,6 +130170,Sheriff Bowman,40466,51931,7 +130171,Michelle,72105,114602,21 +130172,Gott,150056,697,4 +130173,Dr. Kensaku Ijuin,12561,72817,0 +130174,Robin Crew,62768,46423,0 +130175,Fred Blake,248639,51762,0 +130176,Himself,173467,1035,22 +130177,Diane Lovering,50079,31550,0 +130178,Sullivan,28663,88728,12 +130179,Latino Kid,272878,1517847,25 +130180,Le client de la boutique de musique,181456,134749,31 +130181,Sophia Booth,245700,72307,2 +130182,,282024,97368,2 +130183,Henrik Vanger,15472,87723,3 +130184,Mrs. Lucy Talbot,39130,13354,10 +130185,Betty,369033,576223,10 +130186,Tanaka,1904,9192,18 +130187,,47795,10338,10 +130188,Constable Nelson,425774,1707892,24 +130189,Georges,63876,11189,4 +130190,Elaine Corday,140887,126753,4 +130191,,386100,72852,16 +130192,Hanks Dad,347031,158126,5 +130193,Glen,198277,1423882,22 +130194,Joe Plaice,8619,26131,18 +130195,Machiko Shima,19336,239047,3 +130196,George Maxwell,148326,1056790,4 +130197,Erica London,118549,78853,1 +130198,Queen (voice),146381,11616,5 +130199,Judge L. Powell,11358,27112,22 +130200,小夫,265712,1521538,20 +130201,Mrs. Monet,216374,935266,14 +130202,Alexander Zalachenko,15472,92645,26 +130203,Suga Sasahara,27031,1076218,8 +130204,"King George VI, aka 'Bertie'",65035,42627,0 +130205,Reaver,263115,52904,22 +130206,Pierre Arronax,2966,18352,7 +130207,Car Salesman / Man at Bus Stop / Negro Gentleman / Big Fag / Police Officer / Tank (voice),90110,25626,2 +130208,Leningrad Cowboy,30366,69552,2 +130209,OJ,17082,20372,1 +130210,Ambush Henchman,183825,990401,30 +130211,Tiina,33481,110760,8 +130212,Mestizo,115531,7505,4 +130213,Hélène Verger,54832,583281,1 +130214,Batman / Bruce Wayne,142061,27811,0 +130215,Mercenary Girl / Exis,179105,203203,4 +130216,Himself,276536,89289,8 +130217,Turk,206563,1262084,6 +130218,Mr. Sampson,99374,4966,4 +130219,Suicide,22585,2456,3 +130220,Mountaineer (uncredited),16442,100806,65 +130221,Soul Fleur,72710,35198,10 +130222,Snitter (voice),30060,5049,0 +130223,Sonar Tech #1,52454,1630273,24 +130224,Elaine Clifford,1259,37052,11 +130225,Anna,76203,1031785,21 +130226,Shorty,8988,19195,9 +130227,Dan Lawton,15022,17040,6 +130228,UK Muppet Performer (voice),145220,1504913,52 +130229,Bitten Man,278706,1334332,6 +130230,Col. Gen. Alfred Jodl,102155,178920,18 +130231,Lucy Carrigan,4688,38940,0 +130232,Charlie,10070,62820,13 +130233,Ciro,43989,108900,0 +130234,Newborn,172785,1266597,7 +130235,Spoldier (uncredited),16442,592941,80 +130236,Panel Beater,228294,217046,5 +130237,Roger Thornberry,5804,1284159,1 +130238,Il comandante in primo,43379,1606808,13 +130239,"Link, a pirate",154371,34094,11 +130240,Candice,426230,131520,7 +130241,Przewodniczacy Komisji,10754,1405,20 +130242,Judge,58414,64662,13 +130243,A.D.A. Nelson (as Indigo Nichols),95807,1213577,6 +130244,Gotham Desk Cop,209112,1000800,115 +130245,Weltkenner,104172,3970,1 +130246,Roberto,74718,1191731,5 +130247,Lew Welch / Dave Wain,156277,52801,8 +130248,Youngsun,284135,83122,2 +130249,Babsie,43419,141605,5 +130250,James Bond,206647,8784,0 +130251,Landlady,258480,1544787,20 +130252,Harry's Friend #2,10330,4741,21 +130253,,45987,123381,11 +130254,Bobby Matthews,540,22128,6 +130255,Mufti,376047,1607422,5 +130256,Trailer Park Resident,186869,1862905,32 +130257,Müfit,179715,979407,2 +130258,Charlie Boudre,42402,96448,4 +130259,'Chump' Cosgrove,116554,190383,1 +130260,Mary,345003,1838596,20 +130261,Krzysiek Buk,369444,1538880,1 +130262,Mrs. Fakur,375012,1668234,8 +130263,Ernesto,112304,4442,11 +130264,Lady Spencer,12783,44079,4 +130265,Maria,223485,1440629,5 +130266,John,508,7060,12 +130267,Ibrahim,157843,1106196,11 +130268,"Marta, Housekeeper",62720,38246,8 +130269,Chun's brother-in-law,25645,1616857,11 +130270,Homer Howard,57684,19401,2 +130271,Detective,120357,14455,15 +130272,Sandra,70752,559552,1 +130273,Charlotte,78572,584567,1 +130274,Ah Guang (Ricky's Mate),17467,229303,13 +130275,"Kołota, kierownik szkoły",168819,1145,7 +130276,Janis,80316,5729,3 +130277,Chano,48502,140602,0 +130278,Soul Pearle,72710,1273240,30 +130279,Kimmy,45243,543140,14 +130280,Julot,3513,32360,9 +130281,Simon Peck,43268,150082,7 +130282,Arzt,1838,19358,9 +130283,Aurélie,85429,932034,2 +130284,Tanya,26518,1186733,2 +130285,Stormtrooper,330459,67810,87 +130286,Himself,400668,1239060,13 +130287,Nurse,12912,64918,15 +130288,Lyn,244610,1034504,10 +130289,Voice Cast,222935,183066,39 +130290,German Sailor looking for Capt. Hardt,75363,100770,19 +130291,Bean Dip,51036,1879506,43 +130292,Mrs. Fitzpatrick,25551,145832,23 +130293,Akram,157129,1788304,5 +130294,Rosario La Mata,94182,30272,6 +130295,,265180,1414819,9 +130296,Maloney,99909,30279,18 +130297,Funda,179715,581414,4 +130298,,31275,1853882,13 +130299,Maid,174925,133571,13 +130300,Pullman Porter (uncredited),92848,213830,13 +130301,,128767,1132936,10 +130302,Belfast,332806,64916,4 +130303,Taoist Priest Rui Yun,217923,1436151,16 +130304,,313646,142334,2 +130305,Soniya,381691,1620961,8 +130306,Caitlyn,11247,1776449,18 +130307,Mózes's father,294640,56300,2 +130308,Birkebeiner,360249,1648968,9 +130309,Ashley,317114,1762543,9 +130310,Ali,17725,41379,2 +130311,,203124,119592,1 +130312,Edgar Bellamy,49502,115376,5 +130313,Webb,253286,1170659,1 +130314,Otto Frank,128396,24548,1 +130315,Special Forces Commander,2080,91404,47 +130316,Rohit/Raj Chopra,16987,78749,0 +130317,Erin,83896,930821,5 +130318,,47238,1153525,1 +130319,Boy in Montage,18651,120822,33 +130320,Harris,38417,117769,2 +130321,Frankie 'Acey' Kile,28712,12156,9 +130322,Dennis,8988,945486,22 +130323,Sol Rama,284052,1372694,13 +130324,Auntie Shui,375170,1609485,6 +130325,Pauline,18595,1053261,13 +130326,Gene,19235,84785,2 +130327,Annie,41759,60390,7 +130328,Margaret,82737,14593,2 +130329,Julian Rowan,39517,42627,18 +130330,Smokey,35113,113758,3 +130331,Jenny,358076,1505088,13 +130332,Bathsheva Sosialit,116762,8787,2 +130333,Tasos,371818,1592860,6 +130334,Charlie,9843,14409,0 +130335,Sonja,300487,124283,1 +130336,Mr. Allen,8619,47643,12 +130337,Mark,90387,44651,1 +130338,Louis Holland,131475,51801,1 +130339,Bob Ferguson,82687,233298,12 +130340,Nurse,10596,65805,11 +130341,,48375,51298,6 +130342,Muriel,84097,85847,7 +130343,Monsieur Bayle,39413,145159,10 +130344,Chantu/Reshma Chowdhury,20916,86779,1 +130345,Additional Voices,9948,60740,15 +130346,Eason Jordan,28730,9048,10 +130347,John Leyton,26796,1359449,8 +130348,Timothy Crocker,28448,87957,4 +130349,,12622,555200,20 +130350,Robert Kissel,78096,56675,1 +130351,Hero (uncredited),19995,584868,74 +130352,Francis Riley,224885,83271,4 +130353,,38359,239720,1 +130354,Matthew Blake,134806,1100322,6 +130355,Dana,262522,2165,1 +130356,Horst,327389,172809,11 +130357,Chief of Police Ronnie Lamb,45562,2451,9 +130358,Alma Sanders,25241,93422,5 +130359,Birdman,33005,1088975,5 +130360,Emerald,45935,56816,5 +130361,Gang Leader,8292,59713,17 +130362,Boston Market Employee (uncredited),156700,1842196,41 +130363,Jesse,101242,1026725,4 +130364,Dusty Dinkleman,10033,21594,3 +130365,Opera Director,177677,1562087,36 +130366,,15776,1565317,10 +130367,Male Itsuki's Mother,47002,139366,6 +130368,Roxie,369885,1473990,33 +130369,Herself,323555,126875,6 +130370,Tanya,62688,558019,2 +130371,Gigi,138273,13328,3 +130372,Susan Merril,3686,33548,7 +130373,"Dorothy (segment ""La Fortuna"")",211166,1246,5 +130374,Rosita,96133,150617,3 +130375,Nikki Fletcher,13374,947207,7 +130376,Sergent Chef Chaudard,56589,24387,0 +130377,Nurse Hodges,1640,61830,33 +130378,soldat poète émission TV,24170,287671,10 +130379,Nobita,265712,932986,27 +130380,John Pritchard,111042,152713,1 +130381,Hank,100110,2714,0 +130382,Robert,114172,28848,3 +130383,"Masha, his daughter",184795,155545,9 +130384,Anika,289720,1358971,5 +130385,Johnny Cousin,37038,2463,0 +130386,Edward Gilder,179818,13358,5 +130387,Hilde,17175,156818,3 +130388,Aunt Agatha (as Vera Vague),68097,103448,8 +130389,Flirting Homeless Man,19719,85109,15 +130390,Lena Warner,286971,1689264,16 +130391,Wolf,30996,1547063,7 +130392,Gazeth,42542,1015795,6 +130393,Russan Daughter,246415,1439323,8 +130394,Colonel Dent,38684,1089522,29 +130395,John Evans,98368,1028460,0 +130396,Woman in ER Waiting Room (uncredited),59965,1480130,32 +130397,Frau von Krahl,266044,1139466,16 +130398,Bobby Drake,65488,13995,9 +130399,La jeune femme du cimetiere en tenue de tennis,1421,1723439,26 +130400,Princess,155128,236582,2 +130401,"Sethuraman, Athreya and Manikandan",368006,85720,1 +130402,Customer,30361,99619,19 +130403,Additional Voices (voice),82703,1207488,37 +130404,Chelsea,63197,236599,5 +130405,Sister Marguerite,286595,4166,1 +130406,Garin,354859,2441,8 +130407,Himself,103215,88587,4 +130408,,228339,1262855,0 +130409,Ursula Desfontaines,66967,3783,0 +130410,John Thorpe,18093,1124,7 +130411,Nurse Raskin,124042,1327723,10 +130412,,337012,43135,6 +130413,Tee,17111,1629437,7 +130414,Goldie,53792,1324775,10 +130415,Николай,365544,1567383,8 +130416,Yasin,336804,520561,9 +130417,Valérie,55853,551795,14 +130418,Raj,52221,83223,9 +130419,,155597,1586009,15 +130420,Nuch,17111,1629439,10 +130421,Julie Stewart,23385,73707,5 +130422,Dr. Sui,127521,62503,9 +130423,Reverend Greet,16182,16697,7 +130424,Karen,14823,1035071,7 +130425,War Rig War Boy,76341,1554064,33 +130426,Tanya,44945,1583619,12 +130427,Dr. David Rivera,39779,5401,1 +130428,Diane,18072,1749206,17 +130429,Schwester Erna,613,96313,36 +130430,Photographer,19794,101808,31 +130431,Cheung Siu-Wing,26005,130503,5 +130432,Judge Jawbreaker (voice),59981,8318,8 +130433,David,228676,22111,4 +130434,Honey,316154,1670425,2 +130435,Telescope Gal,28340,1795338,20 +130436,Trish,47462,1334123,4 +130437,Masayuki Wada / Alexander Jagi,22025,235147,4 +130438,Antonio Esposito,177104,119795,8 +130439,Vater Pupslied-Mädchen,140554,1141694,43 +130440,Dianne,360737,1569355,3 +130441,Tv news cameraman,51036,1879510,51 +130442,John Ruskin,114155,16700,2 +130443,,381767,79331,1 +130444,Biker Chick,45610,1738306,15 +130445,"Brasset, Lackey",72611,125855,8 +130446,Guillaume,68822,1606865,13 +130447,Maitre d' (uncredited),33112,120061,22 +130448,Yoeri,61935,91528,5 +130449,Beth,11012,1093411,18 +130450,Rafael Rosillo,107443,86351,1 +130451,Alejandro as a child,325385,1174841,7 +130452,Princess Neytiri,19995,8691,1 +130453,Elton,126712,126017,12 +130454,Goon,49074,1339741,14 +130455,Emily Irving,15213,1075016,15 +130456,Erronens (uncredited),1976,1145556,39 +130457,,327655,45453,2 +130458,Katie,359245,892734,2 +130459,Sermet Bey,10821,66982,2 +130460,Tobakshandlare Örn/Dansbandssångare,53689,141619,7 +130461,Greensleeves (voice),36751,101606,4 +130462,Hector,104644,977079,6 +130463,Teddy Talbot,15697,40393,5 +130464,,4291,552606,13 +130465,Grandfather,42179,6593,1 +130466,Ian,89481,20766,6 +130467,Malik,65055,967617,8 +130468,News Photographer,27381,11161,15 +130469,Sven,86980,106654,17 +130470,Leng Xue,16074,79157,3 +130471,"Sam, Black's Butler",25507,96259,9 +130472,Kim,192137,1283527,6 +130473,Inspector Hinds,55681,131738,7 +130474,Hospital Receptionist,21208,90460,15 +130475,,354667,1497111,1 +130476,Stevie extra (uncredited),33343,1188795,27 +130477,Jim MacLaine,27196,96407,0 +130478,Killikrates,64428,31545,0 +130479,Pierre (le chef des Cheveux Propres),21778,132542,2 +130480,Perfidia,19350,21430,0 +130481,Man at Club (uncredited),17136,1345833,17 +130482,Anthropologist,102841,157359,18 +130483,Boathouse Chef,6557,180495,23 +130484,Ellen McGillvray,79833,201665,2 +130485,Emma Busbee,256962,1639,1 +130486,Eric,48153,17183,7 +130487,Prince Karl Franz,68191,26155,1 +130488,Evelyn Smith,74911,93718,1 +130489,Leader of the Wild Bunch,9474,18071,7 +130490,Thomas Wilson,1247,16327,10 +130491,The Preacher,393172,15854,2 +130492,Ra,205584,118,6 +130493,Buzz O'Donnell,207402,1190283,2 +130494,Master Xiu,121823,1102421,15 +130495,Anya,9914,60412,4 +130496,Hye-Rin,242458,1418578,2 +130497,Mandy,18189,86929,6 +130498,Fido,3539,17545,9 +130499,Harry Lincoln,85483,1208,2 +130500,Kid listening to Farina,190352,1055293,8 +130501,Himself,13516,110,19 +130502,First Colonel,40804,1230452,11 +130503,Shiva,49074,585276,7 +130504,Caetana,377362,1363253,3 +130505,Quincas,49961,143128,8 +130506,Soborevsky Vasily Osipovich,51284,81000,7 +130507,Phong,55208,556911,2 +130508,Wayne (voice),159824,884,4 +130509,,55589,298328,6 +130510,Himself,141803,491911,0 +130511,Margaret,20047,206808,5 +130512,"Paolo Fabbris, detto ""Paolone""",43211,1885525,12 +130513,Tommy Atkins,56533,159530,7 +130514,Various,9948,15761,14 +130515,Lisa Deets,419430,928307,12 +130516,Lily,18898,83815,2 +130517,Emily,75510,33006,6 +130518,Topless Woman,367732,1286897,18 +130519,,270400,54168,11 +130520,Barry's Dad,22447,174723,29 +130521,Holly Parker,35683,34519,0 +130522,Joseph Dobbs,82465,40202,1 +130523,Mirka,80324,589244,2 +130524,Nasuada,2486,25448,13 +130525,News Reporter,270654,1425207,32 +130526,le collègue de Simon,15712,71490,5 +130527,Le vendeur,22136,228888,8 +130528,Himself,400668,1821654,1 +130529,Princess / The Goose,51349,143976,2 +130530,,74481,85027,12 +130531,Eve,36968,77897,5 +130532,Himself,366696,1753561,31 +130533,Helga,57438,226199,41 +130534,Policier centre de rétention,15712,6784,23 +130535,George Kellum,24331,558312,7 +130536,"Ilyukha Verekhov, cross-eyed bandit",41979,1190224,6 +130537,Weaner Pup (voice),65759,1445418,20 +130538,Vanya,88564,1467090,4 +130539,"Pitufo, the Guinness records freak",63066,1867442,10 +130540,Harry Greer,36373,164974,14 +130541,Penny,19766,85156,3 +130542,The Queen,245739,34901,5 +130543,Pappy Creighton,44890,30551,4 +130544,Max,90616,1692066,8 +130545,Professor Ursula (voice),182131,55662,4 +130546,Buttercup (voice),27300,112329,12 +130547,Landry,79892,544402,4 +130548,Pauline Hastings,413232,34746,6 +130549,Millie Harris,8247,52783,3 +130550,Annie,27259,97431,2 +130551,Short Ghost,32428,31771,4 +130552,Bridgette Hanson,9963,58412,2 +130553,Lorraine Bennett,97598,98574,4 +130554,Principal Ingles,93511,1578,7 +130555,Sally Haines,130917,2109,5 +130556,Réceptionniste Riviera,10484,19647,15 +130557,Willie,117942,97619,14 +130558,Julie,98066,90719,20 +130559,Carøe,310602,121521,6 +130560,Agnes Stark,315664,971329,4 +130561,Leone,48778,27980,8 +130562,Ernest Eddison,300769,148876,9 +130563,Taylor,24886,1829619,4 +130564,Maria Sbravati,5482,44969,5 +130565,Dómari,72596,236799,26 +130566,Sandy,347807,37234,10 +130567,William Marble,36519,10921,0 +130568,A Prizefighter,899,13792,6 +130569,Dan,49084,544117,5 +130570,Driver,78734,30496,24 +130571,Geeter,27739,98876,8 +130572,Mr. Wayne,52437,145987,4 +130573,France,359413,1157804,2 +130574,Harold,76465,11496,7 +130575,Chris-Ann Brennan,115782,999605,11 +130576,Andie,183662,147056,4 +130577,Koda Dad,101185,5004,2 +130578,Officer French / John Ramsey Auditionee / Himself,430826,1801198,9 +130579,Doakes (scenes deleted),97829,94433,4 +130580,Annie Montague,75564,549056,6 +130581,Juno MacGuff,7326,27578,0 +130582,Detective Emily Sanders,6973,6885,1 +130583,Hélène,25500,10500,1 +130584,'Tenny' Tennison,74314,2930,4 +130585,Lemm,149170,1601623,7 +130586,,74674,1445114,15 +130587,,19552,1275915,6 +130588,News Reader,339362,1526638,17 +130589,Walter Corwin,55784,98930,6 +130590,Mönch Volmar,50722,1086,1 +130591,Banquo,133448,1229025,3 +130592,Butch,34796,1006522,7 +130593,Judge,9899,1232,7 +130594,Third Jellybean (uncredited),27986,1056670,15 +130595,Ropy,49073,1013749,8 +130596,Jack's Class,17258,707346,37 +130597,Tsar Nicholas II,46827,1327,2 +130598,Jonas Schuster,217412,1202152,2 +130599,Suzy - la serveuse,8281,54327,0 +130600,Auctioneer,190876,1298393,3 +130601,Preacher Caleb,109466,19767,0 +130602,Akiko Glitter (voice),378236,53397,7 +130603,The General,76533,66786,0 +130604,,267977,137029,5 +130605,He,46891,122029,0 +130606,Alan Garner,45243,58225,2 +130607,Board Chairman,216153,83197,7 +130608,Nadia 2,18897,134746,5 +130609,Child,125344,1081149,3 +130610,Kat Ho,343140,1516593,6 +130611,Elizabeth Benton,244610,453588,0 +130612,Jon,54396,938747,5 +130613,,64044,545609,12 +130614,Marianne,336666,1837166,6 +130615,Award Ceremony Narrator (voice),1726,163671,9 +130616,Aunt Milly Forrest,92848,85956,3 +130617,Eliza Reed,38684,548169,12 +130618,Sasha,63838,235993,0 +130619,Albert,136386,21422,7 +130620,Scharführerin,103396,36987,14 +130621,Tom - Radar Operator,25953,121209,10 +130622,Claudius / Ghost,28238,2387,1 +130623,Konsul Jonathan Reynold,267035,12745,1 +130624,Jerry Rix,258480,1545503,17 +130625,Uomo truffato al casinò,38362,144617,11 +130626,Tina the babysitter,27102,96969,6 +130627,Kyle,64720,1472,4 +130628,Veronica,413417,1328184,4 +130629,Himself,406431,1451393,8 +130630,Commissioner Michael Barrows,39943,19328,0 +130631,Jenny von Loeben,1294,16783,1 +130632,Haris Mulahasanović,152861,111125,3 +130633,Ksiądz Józef,406449,549372,16 +130634,Lieutenant Xiao Yu,311324,1785743,17 +130635,Football Urchin,203833,1445750,14 +130636,Frank Sr.,45132,1133460,14 +130637,Devi lal's Mother,280690,87304,11 +130638,Professor Sinha,41903,110086,6 +130639,Sweater Guy,14207,1286660,14 +130640,Kashinath,28805,78924,3 +130641,Hoody,2503,1280236,32 +130642,Bingo Announcer,9756,58921,14 +130643,Jolie paysanne,151826,231243,12 +130644,Izo Okada,37053,80704,0 +130645,"Policjant ""Łysy"" (niewymieniony w czołówce)",314371,1583956,35 +130646,Dixie (voice),89247,1074711,3 +130647,"Buster, der Hund",78694,1504828,6 +130648,Karen,128270,1543856,32 +130649,Rictor,263115,1769757,34 +130650,Gail Borah,5915,13152,13 +130651,Billy,24469,45051,4 +130652,Debbie Harry,111479,50463,2 +130653,Kevin's friend,101852,1500895,11 +130654,Jennifer,40029,244214,1 +130655,Blotch / Arnie the Alligator / Monkey (voice),15909,196826,4 +130656,Marge,39334,122679,3 +130657,,285935,1766388,9 +130658,Nick,65055,53117,4 +130659,Attorney Carey,87612,16766,3 +130660,Cocher Avine,151826,138828,13 +130661,Rachelle,280030,1259987,2 +130662,Stéphanie,39413,132431,9 +130663,Taksówkarz,31856,568272,4 +130664,Chris Riley,11172,18,3 +130665,"Pierre, le Docteur",86727,24903,1 +130666,Jue Gow-Jik,186881,238985,4 +130667,"Créu, the maid",108712,1491365,4 +130668,X-Ray,42182,1318089,5 +130669,Dorcas,16563,15973,7 +130670,Tuoba Lie's Man,217923,1436262,26 +130671,Monk,18898,1623643,18 +130672,Singing Inmate,62694,144399,27 +130673,Visored Cop at Riot,9959,17194,22 +130674,Flashy Boyfriend,47310,138393,5 +130675,Jigna,135718,1116113,6 +130676,Samuel Anders,69315,83456,12 +130677,,148615,78463,17 +130678,Rose,63876,18197,5 +130679,Peshto,44566,81678,3 +130680,Sheila Wright,5460,43446,4 +130681,Ari,141015,130260,1 +130682,Mosso Arnau,348537,1110505,12 +130683,Procurio,54406,23429,6 +130684,The Giant (voice),57089,18,9 +130685,Narrator,34588,87340,9 +130686,Tony Stark / Iron Man (uncredited),1724,3223,66 +130687,,339367,35068,1 +130688,Indian (uncredited),42640,113710,10 +130689,Courtroom Spectator (uncredited),27986,8516,16 +130690,Mumbles,16066,14950,1 +130691,Franklin Armstrong (voice),227973,1393184,12 +130692,Hanna,53256,15122,0 +130693,Anna,92311,157531,4 +130694,Zeno,76757,1394355,53 +130695,Department Head Kim,367882,1538984,4 +130696,Yutaka Daimon,85656,52809,1 +130697,Dr. Norton,26036,106506,3 +130698,Melissa,20919,92651,4 +130699,Charlie,172908,1520757,9 +130700,Kid,32764,60898,12 +130701,Professor,89116,70132,0 +130702,Jimmie Allen,218351,3243,0 +130703,BBQ Guest (uncredited),89492,1677900,25 +130704,Ellie Banks,22968,7639,1 +130705,Oliver Webb,31835,30156,2 +130706,Billy,17483,81954,8 +130707,Amma Treadeau,109491,19492,3 +130708,,8070,3589,12 +130709,Hooded Man,318781,1094741,33 +130710,Lord Francisco del Ruiz,16432,8318,2 +130711,Jeff,194407,14868,1 +130712,Sir John Cowell,67375,1193858,44 +130713,Jeannie McMahon,354287,39117,14 +130714,Leona,33923,41255,2 +130715,Nils Bjurman,15472,21193,4 +130716,Dr. Pender,56154,34497,8 +130717,George Parkman,78522,1148573,3 +130718,Taxi Driver #3 (uncredited),92848,117772,16 +130719,Rhonda Berry,19688,4038,0 +130720,German Machine Gunner,150712,34448,49 +130721,Emma,224778,109151,3 +130722,Dallas,82485,211492,8 +130723,Marcus,97683,71467,2 +130724,Cuendet,287391,932571,7 +130725,Banki,19506,72202,3 +130726,Toa Kopaka / Hewkii (voice),19325,74362,1 +130727,Judith Gopnik,12573,105304,3 +130728,Matey,34796,120811,5 +130729,Granley,43419,29762,16 +130730,Bhau Galande,94935,84956,0 +130731,Big mma thorton,14882,4721,10 +130732,The Lawyer,186971,40304,12 +130733,Jon,79550,27737,5 +130734,Lakshmi Narayanan,24448,450954,5 +130735,Chaz Waverly,343284,59238,2 +130736,Frau Bow,39230,549565,16 +130737,La mère,51971,145086,4 +130738,King Jaywardhan,192675,35779,5 +130739,Rocky,28000,3636,0 +130740,,419522,1853725,25 +130741,Kal,34205,157041,2 +130742,BJ,15022,504953,16 +130743,Himself,15258,34517,100 +130744,Soba shop owner,143946,552008,24 +130745,Marie (Teen),218425,1312168,7 +130746,Cop #1,14142,1219312,20 +130747,Profesor Javier,125619,119671,1 +130748,Rory Parker,159128,1181345,7 +130749,Ménar,52045,24563,4 +130750,Brett,14459,15339,4 +130751,Sheila Robinson,59738,1048670,5 +130752,,322614,1610549,6 +130753,Officier Norbey,209244,1223187,24 +130754,Carruthers,35908,10182,0 +130755,Uncle Charles,24939,9979,4 +130756,Nisha,285860,1382494,7 +130757,Trudy,159514,87678,8 +130758,Yacht Guest,169355,1271019,18 +130759,Sun,86647,1280586,2 +130760,Carlos,284305,112901,2 +130761,Himself,15258,15452,83 +130762,Kirsten Maybach,332759,1326795,3 +130763,Henry,413391,1213279,3 +130764,,80281,148052,10 +130765,Theatre Audience,118943,86400,6 +130766,Rosa,14976,946221,3 +130767,Idiza-Typ,75969,1902106,62 +130768,Greenburg,46059,78416,4 +130769,Locataire appartement,39358,1630992,11 +130770,Father Patrick,225285,71281,4 +130771,Stephon,309581,78062,3 +130772,Eddie,271164,1302426,6 +130773,Lucan,336149,101923,2 +130774,Antía Feijoo (teenager),332872,1457866,10 +130775,Juan,352327,59129,2 +130776,Nellie Bly,345003,1478271,1 +130777,Dilys Rhys-Jones,10918,134892,9 +130778,Mason (as Wm. H. Ruhl),357529,139178,6 +130779,Bronsky,125541,1081479,0 +130780,Ellen,127286,18022,1 +130781,Tanya,18472,58393,6 +130782,Captain Jim Osher,6973,122282,26 +130783,Ikuko Matsubara (6 years old),12205,71644,4 +130784,Noah Wilder,2267,23417,0 +130785,Butcher,125490,141459,26 +130786,The Captain,142391,112120,4 +130787,Alexandra,136386,66441,3 +130788,Major Bill Hocks,54166,33723,4 +130789,Clyde,187010,177905,5 +130790,Zaza,242683,30155,0 +130791,,27276,551849,40 +130792,Burt Dorfman,169068,827,1 +130793,David - Father,10008,61948,17 +130794,Lenny,291164,4688,6 +130795,Ben Hastings,19618,4960,4 +130796,Director,43987,147852,9 +130797,Frank Harris,435,6067,4 +130798,Nurse,19286,97753,9 +130799,,25998,1178900,0 +130800,Max,29117,86003,7 +130801,Turbo Général,310135,1501943,10 +130802,Tony Knowles,377516,1651874,12 +130803,Netje,57829,1886753,8 +130804,David,239563,66580,12 +130805,Park Sung-bae,408620,68903,1 +130806,Sharon Gallagher,5413,43134,9 +130807,Vinod Chopra,25499,6497,0 +130808,Kathy Quinn,55989,16850,1 +130809,Stephanie's Party Guest with Dog,31993,34331,22 +130810,Night Club Singer,9993,61641,16 +130811,Mrs. Roberts,56558,120057,6 +130812,Chuck,226672,1276625,7 +130813,Clip from 'The Great Ziegfeld' (archive footage),33740,33022,55 +130814,Riley Morgan,186585,34046,5 +130815,Le cadre coléreux,53404,38913,17 +130816,Security Guard,80343,1646012,14 +130817,Schoolbus Kid,229182,1343799,9 +130818,Li Ying Wu,41378,1114834,5 +130819,Jimmy's Buddy #2,54318,1293764,16 +130820,,88486,104127,5 +130821,Voltrano,47096,53462,3 +130822,Marshall Ross,77641,98520,0 +130823,Subbi,34763,586625,5 +130824,Brander,114242,36433,8 +130825,Dodge,9287,389763,5 +130826,Thérèse Gauthier,110573,236906,0 +130827,Bruno Lemoine,2029,16922,5 +130828,Referee (uncredited),43522,85898,35 +130829,Homeless Man,26518,1284628,8 +130830,Krestyanka,150223,1870838,25 +130831,Brenda,167012,6200,4 +130832,Black Boy at Tree,56154,1145556,31 +130833,Pierino,31542,1037924,8 +130834,Charuseela's mother,353533,582184,15 +130835,Alice,40465,509640,1 +130836,Buzz Lightyear,213121,12898,1 +130837,Himself,173465,1266241,5 +130838,Pierre (la prof de guitare-couture),21778,62531,7 +130839,Aragorn,122,110,2 +130840,Moisha Yudelson,939,14289,4 +130841,Vlad,38322,1215365,11 +130842,Kiran,315256,110223,2 +130843,Hank Morrison,44486,602161,2 +130844,,63215,1520904,20 +130845,Miguel Prieto,214129,113248,4 +130846,,106623,18340,7 +130847,,335340,144261,5 +130848,Jules Daly,79113,150587,0 +130849,Casino Patron,268920,1286436,72 +130850,Scotty,52859,190772,24 +130851,Ed McGaffey,30054,4078,9 +130852,Marie,8981,3294,3 +130853,Jorgelina,57489,928976,0 +130854,Marty,389630,21125,3 +130855,Spartan General,1271,1330749,40 +130856,,85715,1870847,14 +130857,Lt. Floyd (uncredited),41468,44998,14 +130858,Jacques,44155,6554,4 +130859,Laura,59118,1768819,17 +130860,Taboo,4551,1240932,46 +130861,Anna,82098,796326,8 +130862,Fifi aka Fanny,81110,120778,11 +130863,Usherette,3937,1454837,19 +130864,Glenstorm,2454,25135,15 +130865,Social Services,83666,3063,7 +130866,Eudora,255491,175583,8 +130867,Kaleo,51800,1317370,10 +130868,Brooke Madison,169298,6674,11 +130869,Dean Proffitt,10780,6856,1 +130870,Artur de Castro,97110,1031750,7 +130871,Spanish Police Officer,169758,1685381,10 +130872,Court Attendee,339994,1593379,35 +130873,Grandma,336666,1837168,8 +130874,Guard,262958,1537747,35 +130875,Sgt. William Ward,10733,15374,7 +130876,Mrs. Green,242631,94114,16 +130877,Vladimir Andreevich Kushak,72949,86664,5 +130878,Kate,323673,1423419,6 +130879,Fats Walsh,43046,82189,6 +130880,Sgt. Rock,46875,89582,1 +130881,Principal,21955,118482,9 +130882,Daniel Kiefe,59961,418,13 +130883,Max Zettl,85699,18072,0 +130884,Viji,69404,147324,1 +130885,Eph Clinton,43075,8830,9 +130886,Grietje,35639,996595,3 +130887,Shorty,121230,104714,9 +130888,Spiridione,59704,229669,13 +130889,The Big Bad Wolf (voice),57089,9657,3 +130890,Lang Lang,94820,146137,1 +130891,Aida's Father,461088,1418884,1 +130892,Mowgli (child) (voice),59803,86836,13 +130893,Lenny B. Dalton,251544,69807,0 +130894,Cheshire Cat,25694,29760,1 +130895,Vicki,79500,1184128,1 +130896,Stella Elizabeth Matthews,68987,230632,1 +130897,Co-Ed,116979,1835162,16 +130898,Freelong,109610,190066,3 +130899,Wendy,70585,158157,10 +130900,Nicole,385750,221606,7 +130901,Young Jebediah,405882,1783662,16 +130902,Teela,37238,117144,1 +130903,Sophy Murdock,174925,35505,3 +130904,Depositor (uncredited),1773,2501,10 +130905,Matthews (voice),269650,1319572,6 +130906,Gladys Aylward,37451,4111,0 +130907,Sam,233487,1281286,11 +130908,the Princess,4286,18218,7 +130909,Zagor,44105,1078918,4 +130910,,85126,115766,15 +130911,Dick Myers,9918,60510,16 +130912,Turanchoks,26873,96521,12 +130913,Claire,103597,20710,3 +130914,Major Andrea Rossi-Colombotti,3520,5676,0 +130915,Dude is Boxer,306952,1511956,9 +130916,Reet Haljandi,339944,137715,6 +130917,Virginia,37911,101479,7 +130918,Farid,2309,21660,8 +130919,Butcher (as Kingfish),58411,227802,14 +130920,Gareth,19957,85348,8 +130921,Ana Maria,56948,933265,6 +130922,Frannie,253283,57451,0 +130923,Grace Diamond,25918,94343,1 +130924,Mon Mothma,330459,139654,10 +130925,Nizam,9543,2282,1 +130926,Mrs. Samuels - Jesse's mother,43829,8515,11 +130927,Lala Ashok - Sherkhan's friend - Usurer,103236,1033156,8 +130928,Servant,62764,1015448,20 +130929,Gerfaut,395767,10917,5 +130930,Harriet,41234,125848,12 +130931,Rachel,68193,111830,2 +130932,,88953,1351477,17 +130933,L'avvocato Rossi,66893,99530,6 +130934,The Moor,289720,126802,11 +130935,Popsie,43855,2502,14 +130936,Don Anselmo,61799,234392,3 +130937,Det. Sgt. Bates,29094,103185,8 +130938,Mandy,21544,69122,1 +130939,Young Zachariah,86838,2839,23 +130940,Marco,284013,589579,3 +130941,Mokichi Satake,55197,213484,0 +130942,Eddie,107430,85210,8 +130943,Zette,1976,97042,11 +130944,,19552,1275912,2 +130945,Ricky Thomas,35626,74674,3 +130946,,11196,15082,19 +130947,Melville,242131,3368,11 +130948,Crazy Man B,94525,1657455,7 +130949,Thermal,59965,572038,20 +130950,Himself,410718,102786,3 +130951,Michael,35626,29348,10 +130952,Alisha Briggs,36960,116549,4 +130953,Himself,229296,1280994,5 +130954,Talos (voice),269650,1319573,7 +130955,Orlick,16075,2220,7 +130956,Alojz,259728,1192879,9 +130957,Dora Hammer,12617,5827,7 +130958,Thelma,120657,1361269,8 +130959,Guy Fawkes,8464,16857,2 +130960,Hazel Dawn,98364,1017383,5 +130961,Carolyn Green Rothstein,43022,113585,1 +130962,Male Technician #1 (voice) (uncredited),177572,1502453,45 +130963,Agent Rachel Knowles,8382,17191,11 +130964,Anran's Father,288788,1174366,10 +130965,Ayumi,72592,147880,4 +130966,Dean Sitlong,25450,19190,5 +130967,Neighbor's wife,126516,145253,8 +130968,Dr. Reynolds,30374,120613,10 +130969,Helicopter Pilot,209112,1685460,98 +130970,Father's Mother,114444,215281,6 +130971,Helen,118134,1066900,7 +130972,Étienne,61267,9005,8 +130973,,86647,1640659,11 +130974,Loise,320343,139820,1 +130975,Concubine #2,1271,1330760,57 +130976,Sue Jensen,40205,59185,4 +130977,Lok,18763,148884,6 +130978,Scout,340881,76229,1 +130979,Bo,107319,1559622,7 +130980,Victor Eriksen,141267,1176256,19 +130981,Daniel,2196,15576,0 +130982,Wendy,80280,1031748,8 +130983,Miles Montgomery,121234,165082,7 +130984,Down There!,283995,105657,26 +130985,Kelly,128866,1088056,4 +130986,Atkins,11795,104387,15 +130987,(archive footage),33740,37446,40 +130988,Marvin 'Gramps' Livingstone,149910,7907,21 +130989,Jampala,8014,53621,3 +130990,Glassman,227306,970534,20 +130991,Mantis (voice),81003,19274,2 +130992,Chul-Soo / Wolf-Boy,128246,150698,0 +130993,Gallagher,43142,58423,6 +130994,Teddy,71503,156082,14 +130995,Saverio Crispo,330171,94255,5 +130996,Philly,158870,17490,3 +130997,JonBenet Ramsey Auditionee / Herself,430826,1801192,3 +130998,Don Alfonso,128557,9768,3 +130999,Man at Elevator (uncredited),14615,1374524,28 +131000,,279159,1335340,3 +131001,Teller,232462,137684,5 +131002,Charles,382501,1071606,4 +131003,Jens,53256,71589,19 +131004,Doug,220500,1205410,1 +131005,Policeman,4982,1659312,67 +131006,Bar Waiter,89269,937000,7 +131007,Johnny Pacheco,15934,222487,6 +131008,Father McCarthy,425774,1272223,54 +131009,,273096,1443631,12 +131010,,115427,1086298,15 +131011,Detective Alice Sands,14565,72003,5 +131012,Racing Secretary,118889,103068,15 +131013,Helen Burns,38684,970737,16 +131014,Mimi,168496,3783,5 +131015,Shizuo Enokizu,42170,76975,1 +131016,Educateur 1,63831,1125175,6 +131017,Jules,293452,122237,5 +131018,Mme Masson,76200,14147,18 +131019,Bob,28421,132701,55 +131020,The kid,14457,33706,11 +131021,Peter Latham,42456,41218,1 +131022,Jo Ann (Segment 1),244117,1473746,17 +131023,,40146,1055179,14 +131024,Cop at Car Accident (uncredited),28668,124882,9 +131025,"Johnny, Joe's Friend",56154,1035639,44 +131026,Josephine,104427,30214,2 +131027,Two Punch Hogan,108222,1422458,40 +131028,Robert,245175,1263719,3 +131029,Billy McQueen,180576,6677,3 +131030,The Son,135390,66790,0 +131031,Undressing Neighbor,280617,1851693,27 +131032,Colin,411081,213315,2 +131033,Randall,14349,57755,3 +131034,John Collingwood,18405,3417,7 +131035,Capt. Armand,62392,106102,12 +131036,Ripper,67693,70254,8 +131037,Tania Wilson / Lady Terminator,61904,1073407,0 +131038,Gawky Kid,2976,1752760,110 +131039,Harry P. Archer,185934,19414,2 +131040,Soldier,121674,1673059,31 +131041,Volunteer,1116,1896865,29 +131042,John,182499,44248,2 +131043,Principessa Consuelo Caracciolo,63186,4959,1 +131044,Woman at Twin River,332979,1481006,18 +131045,,14537,119185,12 +131046,Luciana,84056,78532,3 +131047,Red Rugby Robot,85656,76164,3 +131048,Cory,202337,21475,5 +131049,Daisy,6972,1532525,26 +131050,Alice,98557,154000,12 +131051,Misaki,340176,1711441,20 +131052,Wayne Montgomery,293625,102474,1 +131053,Jeffrey,339403,56448,19 +131054,Dr. George Dumurrier,2993,9762,1 +131055,Neil Walker,274479,51329,1 +131056,Colonnello Lombardi,37710,69036,6 +131057,Driver,262841,1508117,27 +131058,Gunnhild,57438,226191,30 +131059,John,8366,16722,5 +131060,Tavern Owner Pete,16083,79210,4 +131061,Tony's thug,24163,1593278,6 +131062,Darryl Coltrane,26293,15338,1 +131063,Tom Custer,47914,21523,12 +131064,Herself (Voice),42093,2896,0 +131065,Mrs. Andrews,1790,15746,10 +131066,Alec Holmes,98289,10922,0 +131067,,252096,1287370,1 +131068,John Wrigley,103014,43431,4 +131069,Jung Yoon-hee,408620,1701050,8 +131070,Paul,68822,117895,10 +131071,,329206,88495,5 +131072,"Bien-Phu, un employé de la ferme",65887,566171,5 +131073,Wolfgang Amadeus Mozart,79362,586677,13 +131074,Daniels,94182,14664,17 +131075,Irene,15177,77984,12 +131076,Richard Young,13092,104795,25 +131077,Martinette,2132,650356,7 +131078,Maho Ağa,27211,77349,1 +131079,Uliano Beffardi,110447,72782,2 +131080,Ryo Bakura,366170,65424,6 +131081,Chad,198062,141433,1 +131082,Lalah,39230,124484,7 +131083,Luke,11577,5048,23 +131084,Judy Barclay,228647,123120,1 +131085,Postman,351043,18262,5 +131086,,118443,30614,9 +131087,Car Dealer,11475,4429,12 +131088,Thomas Jeremiah,77067,585782,3 +131089,Fumi,216363,24551,1 +131090,Gijs,217775,27831,2 +131091,Federale,263115,1502870,61 +131092,Coach Bettlebom,67693,1107,4 +131093,Kristen,356752,1501741,12 +131094,presidente della commissione di laurea,43211,1871293,21 +131095,Will Stockdale,19968,65562,0 +131096,Aïcha,28417,1125200,10 +131097,De Lawd / Adam / Hezdrel,95015,1276503,2 +131098,le photographe,90930,938897,6 +131099,Philip J. Fry / Dr. Zoidberg / Prof. Hubert J. Farnsworth (voice),15060,23679,0 +131100,Daniel,12513,28463,1 +131101,Sonia,122192,576402,13 +131102,Zooey,81232,3051,0 +131103,Agent Ho Mai-Wa,38034,119426,2 +131104,Himself,146730,112994,3 +131105,Roque,49073,141758,3 +131106,Ken,79316,1271773,10 +131107,Nick Spano,254918,83721,7 +131108,Smart Ass Kid,32657,144852,58 +131109,Junior Technician (as Sarah Burkharat),68721,1383576,38 +131110,,402612,1637681,12 +131111,Thérèse Rambert,77776,24393,4 +131112,Hildeke,35016,1416106,7 +131113,Diner Patron,242090,1375093,5 +131114,Dad,317144,1414164,6 +131115,Off-Screen Reporter (voice) (uncredited),28000,33722,29 +131116,Mary Brighton,31277,1229940,8 +131117,Housekeeper,86825,128211,12 +131118,Blanca,84848,931360,3 +131119,Aglaia Papamitrou,163791,106822,10 +131120,René Krauss,11677,1876,3 +131121,Uncle Otis,40957,866,6 +131122,Market woman (uncredited),1271,1330784,86 +131123,Captain Tom Barton,28658,33230,3 +131124,Hard Master,14869,105047,17 +131125,Boy Student,16320,80430,20 +131126,"Superman, alias Clark Kent",106358,45229,0 +131127,J. J.,76494,928235,26 +131128,Richard 'Mack' McAllan,29705,88671,0 +131129,Girl at Party,72105,1502858,38 +131130,Return Unit Nurse,227094,1431050,9 +131131,Thistle Jinn (voice),116711,31006,15 +131132,Roubaix,289126,77284,5 +131133,Jihah,18514,75913,1 +131134,Masao,16231,80133,10 +131135,Colonel Dugraj Singh (Rani's father),20495,691,4 +131136,Will Bakke,135713,1103650,0 +131137,René,39415,1625139,15 +131138,Alexandra Farrow,29979,44151,5 +131139,Helen Lovejoy (voice),35,6007,19 +131140,Paulo,74822,24763,10 +131141,Good Morning Baltimore Dancer / Welcome to the 60's Dancer,2976,1752726,89 +131142,Frank Moses,146216,62,0 +131143,Willson,12683,60650,9 +131144,Uncle Mick,27480,1484502,9 +131145,Brown,43142,15699,5 +131146,Le lieutenant Grinval,29259,103399,5 +131147,"Special Appearance in ""Chinta Ta Ta Chita Chita"" song",102632,528638,15 +131148,,133941,1024351,12 +131149,Sonia Rand,10077,2462,8 +131150,Cadet,24973,111488,42 +131151,Maj. George Porter Houston,43365,19400,5 +131152,Ronnie,29907,141477,1 +131153,Barbara the Tailor,9779,77898,29 +131154,Homeless Man,64685,171567,12 +131155,Bob,52021,1088209,6 +131156,"US Marine, Store Customer",108812,118508,10 +131157,Jeanne-Baptiste,43931,82104,8 +131158,"Dr. Page Whitehead, Ph.D.",259997,967540,6 +131159,Wade,98066,56251,2 +131160,Penny Abbot,120478,1072141,0 +131161,Ely,11496,102032,4 +131162,Ryusuke Kenta,363354,1015727,11 +131163,Cockney Soldier (uncredited),16442,148868,42 +131164,,418378,225429,3 +131165,Jimmy Markum,322,2228,0 +131166,Fintan,262958,1537739,26 +131167,Karin,4285,13805,2 +131168,Dr. James 'Jimmy' Kildare,153169,2007,0 +131169,Viola,30535,224316,3 +131170,Bobby Saint,7220,53198,7 +131171,Melanie,60505,6240,4 +131172,Pied Piper,16652,94247,2 +131173,,197057,1176987,5 +131174,Hakim,60488,18646,11 +131175,Herself (voice),447758,34901,4 +131176,Krampus (voice),287903,35981,14 +131177,Dan,188161,60286,15 +131178,Gohara,376538,82478,4 +131179,Tracy,38783,936609,7 +131180,Volvo-Driver,91628,32650,7 +131181,Max,15316,17051,0 +131182,Miss Patience Nodbury,38460,8232,9 +131183,Grandfather Kuzya,171337,6949,0 +131184,,8079,42802,20 +131185,Lt. Druggin,51601,14451,3 +131186,Emily,70436,59860,2 +131187,Oka,125264,96804,8 +131188,Woman Neighbor,26955,96663,8 +131189,Darcy,91333,86268,1 +131190,Purkovitza,214938,1199620,1 +131191,Rossi,34151,20070,8 +131192,,393939,41381,5 +131193,(voice),16171,79894,46 +131194,Panzer Tank Commander,294690,1390554,34 +131195,Glen,429238,1653354,12 +131196,Richard Barry,43268,34129,4 +131197,Juni Cortez,12279,57675,3 +131198,Ma Pollard,407448,143013,41 +131199,Jung Su-ji (young),77117,1257593,10 +131200,Agapia Nikas,429200,1879645,8 +131201,,80281,85588,12 +131202,Senator Gillham (uncredited),2503,195198,35 +131203,Arlen Sutter,24632,1065793,5 +131204,Bill,26293,95046,10 +131205,Captain Pacheco,317168,116995,9 +131206,Da Yong,20342,1630648,8 +131207,Премьер-министр РФ,457307,1815369,2 +131208,Doyle Standish,25330,58019,1 +131209,,247436,1282920,1 +131210,Sam Malko,65211,94334,3 +131211,Mikel,201765,224870,7 +131212,Trick or Treater Secretary,330947,1171557,27 +131213,Grim Knight Dancer,243683,1398106,53 +131214,Thomas Thayer,6977,1194944,15 +131215,Announcer,257454,945387,14 +131216,Michael Turner,13072,33260,7 +131217,Lizzie Flynn,16373,74622,7 +131218,Jack Cutter,252888,4250,6 +131219,Klaus Heinrich,335837,1408951,10 +131220,Francesca,196789,103490,8 +131221,PC McClintock,245739,25441,9 +131222,Toni Tora Pleura,420703,1692962,1 +131223,Professeur Jean-Pierre Nemur,142528,37605,3 +131224,Clip from 'Meet Me in St. Louis' (archive footage),33740,13991,59 +131225,Dama,268920,1755073,77 +131226,Josh,277687,45396,4 +131227,Holden,267931,139631,12 +131228,Wigottschinski,28480,100896,4 +131229,Meegan Wright,45431,149453,9 +131230,Rusty,241574,92627,8 +131231,Marion,4344,7161,1 +131232,Man in wheelchair,45649,61153,5 +131233,Dr. Shwarzstein,270383,62919,11 +131234,Captain January,148326,1095430,1 +131235,Beauty Shop Staff Member (uncredited),188468,936702,23 +131236,Peter,136386,76242,0 +131237,Skeets,246299,950398,7 +131238,Isaki,248087,105403,7 +131239,Woman,104466,28964,1 +131240,Hector,80304,81957,8 +131241,Succubus,246741,1780281,40 +131242,TV interviewer,171308,5171,12 +131243,Veronica Martin,64328,80591,14 +131244,Cmd. Edward Plank,34766,52043,2 +131245,Arcadius Lemay,16147,79616,12 +131246,Mike Madden,447236,231050,9 +131247,Tom Frost,2742,65,2 +131248,Malinche,53945,58780,6 +131249,Otis,230179,74225,8 +131250,Ruth,128215,188923,3 +131251,Nicholai,245891,1105706,19 +131252,The Rat King,49852,1241,2 +131253,Jamie's Father,5753,44728,13 +131254,Kalina Buzhayev,2001,143978,12 +131255,,185987,548025,7 +131256,Anthony Ferraro,270650,1359950,21 +131257,Myles Falworth,24442,3150,0 +131258,,124597,1675540,12 +131259,Girlfriend in car,106131,1207046,4 +131260,Adukwu's Sister,44943,989249,33 +131261,,103875,1749280,7 +131262,Olmo Dalco,3870,16927,1 +131263,Simone (uncredited),5767,584484,14 +131264,Musketeer #2 (voice),23566,74364,18 +131265,Club Member (uncredited),17136,1045089,47 +131266,Magwitch,266425,1313150,23 +131267,Deborah,260001,24305,10 +131268,Young Diana (12),297762,1590758,8 +131269,Lieutenant Ito,1251,72202,4 +131270,Marek's Friend,158947,1784281,4 +131271,Scott Greeber,31462,118946,6 +131272,Nino Meciotti,221527,37583,1 +131273,Kolazonta,50126,1225394,12 +131274,Crawdaddy,22029,9222,11 +131275,Soldier,43829,932309,42 +131276,Vicky,326285,1332680,5 +131277,Bargirl,33481,110770,19 +131278,Colonnello Di Maggio,58701,132190,0 +131279,Funeral Goer,216374,1159034,8 +131280,,222517,1699954,28 +131281,Evvie Glasgow,93313,1031219,6 +131282,,13506,29832,9 +131283,,96133,85982,5 +131284,Ramona,43649,129744,2 +131285,,441881,1837828,8 +131286,Vanessa,27095,96929,1 +131287,Halina,418757,1567550,3 +131288,Woman in Car,22901,127154,15 +131289,Wiley,45874,14835,10 +131290,Randy 'Scoop' Pruitt,104602,16102,6 +131291,Lucia,209413,1289945,1 +131292,Salvatore Aianello,177104,28256,0 +131293,Adrienne,408024,1656099,8 +131294,Grand Inquisitor Silecio,1381,230,4 +131295,Executed Prisoner #1,19996,1764139,35 +131296,Thenmozhi,300983,88167,2 +131297,Brigitte Lebeau,180607,35082,4 +131298,Soldier,1724,1224149,53 +131299,,43095,1663039,15 +131300,John George Diefenbaker,19665,123302,9 +131301,Mom,84333,167197,7 +131302,Barack Obama,397717,1620979,0 +131303,Hashimoto Hiroichi,248376,1102674,9 +131304,"Himself, film historian",135313,938901,5 +131305,Diaz,10999,48136,13 +131306,Tim Walker,23512,28099,9 +131307,Helen Gandy,88794,3489,5 +131308,,44716,1445074,32 +131309,Gordon Shakespeare,49522,63608,4 +131310,Jack,32834,1046793,2 +131311,Arnold,147829,30527,4 +131312,cleaning lady,53042,147107,10 +131313,le secrétaire de l'évêque,8070,39440,5 +131314,Emilio,57327,225928,2 +131315,Fielding,17640,108275,7 +131316,Woman in Beach Hut,28682,41074,14 +131317,Kate,244268,3141,2 +131318,Frat Boy #4,189,1406568,27 +131319,Court Lady,217923,1436402,52 +131320,Principal Caden,7980,17867,14 +131321,,17479,1619502,4 +131322,Waiter (uncredited),53853,120701,15 +131323,Japanese Engineer,127560,1380563,20 +131324,On. Conversani,379873,131632,4 +131325,Kingsley,213842,4987,0 +131326,Harper,100110,1023516,3 +131327,Rosco's Party Date,1481,1844336,27 +131328,Sarah Barcant,13542,448,1 +131329,Sheriff E.W. Bascom,66175,132708,8 +131330,Duan Lan Quan,14539,66761,2 +131331,Elizabeth,129383,984866,1 +131332,Brad,14782,97854,6 +131333,Layton T. Montgomery,5559,1230,5 +131334,Shuba,66526,545010,7 +131335,Ernst von Pfuel,266044,550554,23 +131336,Chowder,257088,559195,5 +131337,,83459,143708,6 +131338,KB,24978,92944,9 +131339,Daniel,136146,23958,1 +131340,Emily,337073,1481002,3 +131341,,72094,49735,1 +131342,Webster,21544,64680,8 +131343,Padre,284305,16867,3 +131344,Krzysztof Cedro,149511,1433307,3 +131345,Vigilante Seguridad,254869,37574,45 +131346,Mr. Gaitonde - Editor,41903,110199,9 +131347,Gavin Chan,308032,1310760,12 +131348,Mick,54893,2695,3 +131349,Doctor,102382,1358468,57 +131350,Michael Anthony,61541,11492,1 +131351,Caroline,407173,104635,2 +131352,Yamazaki,16231,80130,6 +131353,César,8329,54519,4 +131354,Welcome to the 60's Dancer,2976,1752783,128 +131355,,329227,1152,6 +131356,Master Liu Heung,18731,240171,9 +131357,Karl Ots,46931,137835,3 +131358,Bus Driver,8669,1281020,21 +131359,Lt. Tom Lamar,38808,39753,3 +131360,Lise,2861,28627,4 +131361,Voice Over,26298,95058,1 +131362,Doktor Plama,31856,1050337,0 +131363,Kisha,184345,154000,2 +131364,Santiago Nasar,163706,145327,4 +131365,Spike,24554,43125,13 +131366,Pundit,214756,82287,68 +131367,Ruby,32029,107339,11 +131368,Curtis,310888,1068094,8 +131369,Karl Sugerman,72140,20163,3 +131370,Officer Gingrass,322548,1112417,7 +131371,Maybelle,137182,1106961,2 +131372,Junior Detective,87293,1209470,11 +131373,,11330,1444512,18 +131374,Woodrow,294272,1291961,8 +131375,Imprenditore (boss locale),56339,120656,11 +131376,Bonita Friml,79008,73931,0 +131377,Apprentice,379019,1513658,11 +131378,Tasha,323675,65196,6 +131379,Binder Ransin,88375,1184725,13 +131380,Himself,43514,8724,4 +131381,Eric,67669,10210,6 +131382,Police Ofcr. Charlie Dunnigan,54139,111578,0 +131383,Professor Harris,55712,35159,3 +131384,Brigadiere Lepri,103218,105114,3 +131385,Carol Heasman,118121,92434,3 +131386,Marsha Davis,185273,214626,3 +131387,The Colonel,17614,1170096,4 +131388,Ursus,151826,16927,0 +131389,Нина,330878,139456,1 +131390,AJ,35558,968429,7 +131391,Reporter,267035,26843,7 +131392,Security Guard #2,16240,62674,16 +131393,Bobby,55563,66986,3 +131394,Himself,333103,19767,5 +131395,Lorna,8899,73328,0 +131396,A.C. 2 Wailes,41312,1208202,5 +131397,Boy in Park,65066,1717861,7 +131398,Dean Singer,13442,5723,1 +131399,Penny,314065,1278555,3 +131400,Frank,17347,87675,1 +131401,Márcia,34588,326448,8 +131402,Louie Dumbrowsky,70313,14034,2 +131403,Frank Cousins,121003,29259,3 +131404,Detective Pronzini,71376,17580,1 +131405,Beto,248543,1463061,8 +131406,Clay Benitez,132608,1301911,10 +131407,Jeremy,320343,1299232,8 +131408,Kellnerin,130739,1805301,33 +131409,Mumble (voice),65759,109,0 +131410,Cameron,244539,103,0 +131411,Greek 'cousin',936,52755,13 +131412,Holmes Scott,43075,30016,10 +131413,Minor Role (uncredited),31509,1409208,18 +131414,Beth Gordon,53766,8629,0 +131415,Burlington Potluck Guest,356752,1841540,64 +131416,Une amie,12446,1356417,14 +131417,Prince of Wales,144613,565354,2 +131418,Habberman,57201,17401,29 +131419,Hannah,335869,1625019,10 +131420,Prof. Komenev,277968,1720500,28 +131421,Henchman in Car,111582,1271016,18 +131422,A Captain,95169,1363812,10 +131423,Max Cooperman,70006,55089,10 +131424,Alicia,48502,140605,3 +131425,Joe,371462,1290466,1 +131426,1st Lt. Richard A. Kellogg,37468,117748,13 +131427,Horatio,28238,56102,6 +131428,Dinner Guest,245700,156356,46 +131429,Erica Dainton,145162,89534,3 +131430,,169343,1151394,2 +131431,Vampire Council #2,346672,25730,12 +131432,Ma,246415,1439317,4 +131433,Switchboard Operator,127812,33361,35 +131434,Lt. Cmdr. Farber,143092,4307,7 +131435,Larry Reed,407448,1377458,2 +131436,Mme Dambreuse,5183,41959,11 +131437,Miranda's Father,10804,111329,16 +131438,Mr. Ledyard,170234,13343,6 +131439,Valerie,260001,1224148,9 +131440,Joe Bob James,267931,41341,11 +131441,Ingrid,28209,100116,6 +131442,Bridesmaid,87428,967540,23 +131443,Arthur Pennigton,24411,65885,7 +131444,un reporter,77964,110139,11 +131445,Prison Chief Guard,63773,79735,3 +131446,Nasir,320588,466505,5 +131447,Long-Haired Thug,388862,188654,11 +131448,Ben Stone,4964,19274,0 +131449,,264309,1329661,7 +131450,Hellcat Thug 2,339403,1635134,33 +131451,Lille-Per,19812,121552,29 +131452,Student,37534,117887,6 +131453,Sappai,53883,1671470,6 +131454,Young Perdiccas,1966,1650965,13 +131455,Promotion Division Manager,38221,144797,5 +131456,Camila,7343,52536,7 +131457,Sarah,140846,17495,2 +131458,Rhonda,11172,13635,17 +131459,Ambient Room Tech / Troupe,19995,42286,82 +131460,Oma Bode,259358,13740,6 +131461,,170998,86022,8 +131462,Sight,109417,1046145,9 +131463,Miner / Otsuka,54146,96637,0 +131464,Giudice,43648,99790,6 +131465,Oliver,4285,36012,5 +131466,,109587,1055268,13 +131467,Jack,168259,1880145,21 +131468,Anthony,26331,6972,5 +131469,Inspector Raab,3164,1779228,5 +131470,MNU Guard,17654,1138169,38 +131471,Da Lisi Guard,217923,1436275,34 +131472,Extra (uncredited),3059,132320,54 +131473,Tilly,15090,1868696,10 +131474,Dave,37497,117813,5 +131475,Elderly Asian Man,64328,165214,28 +131476,Dylan,38356,18352,10 +131477,Secret Service (uncredited),1165,30451,26 +131478,Board Member #1,62213,10657,19 +131479,Angel O'Hara,47739,40177,3 +131480,Interview / Man in restaurant,224813,121781,12 +131481,Riccardo,54309,125695,5 +131482,S.J. Tuohy,22881,66658,4 +131483,Nonna,376716,86866,5 +131484,Colonel Weber,329865,2178,2 +131485,Store Clerk,388243,1643635,11 +131486,Boxer,135286,1102257,2 +131487,Le routier,10294,163838,5 +131488,Dancer,8988,1742398,67 +131489,Museum Director,163,73475,21 +131490,Prince Dokado,10703,64896,7 +131491,,229134,1049841,4 +131492,Benny (voice),286940,1340685,5 +131493,Leo,9550,25246,1 +131494,Merci Sanchez,271185,1322689,8 +131495,Chico (voice),63498,588830,2 +131496,Willard,27137,117458,6 +131497,Andrews (uncredited),16442,14666,75 +131498,Louie Miller #7033,28297,14574,7 +131499,Bystander,62472,134264,19 +131500,Dr. Harris - Psychiatrist #1 (uncredited),15794,82749,51 +131501,Stan Coulter,235092,27393,2 +131502,Danny,25060,93090,1 +131503,Additional Voice (voice),10193,84493,35 +131504,Saint Puerto Rico Enforcer,7220,1215401,31 +131505,Philippe,57311,21177,3 +131506,Parfyon Rogozhin,63958,126863,1 +131507,Easly (as Mike Warren),57215,99583,6 +131508,,79025,45982,1 +131509,Gladys Presley,40047,7632,1 +131510,Don Vito,52238,144618,6 +131511,,246829,71296,2 +131512,Dr. Karen Ainsley,358895,1492238,18 +131513,Sexy Santa Annie,265208,1285499,23 +131514,Mother,20766,6885,2 +131515,Himself,191502,6818,9 +131516,Nancy Birch,146233,19492,5 +131517,Cigarette Girl,24062,162283,8 +131518,Mayor Swanson,73661,568241,5 +131519,Prof. Jonathan Jones,74924,71728,0 +131520,Sam Cartier,79778,582968,6 +131521,Papà di Marta,42892,55912,0 +131522,Detenuto amico di Scalia (uncredited),73827,16318,13 +131523,Neighbor Girl,52360,85957,34 +131524,Daggi,42293,73926,4 +131525,Ricky,119409,15601,10 +131526,Rita Monroe,16428,18285,2 +131527,Angela's friend,31522,18218,3 +131528,Hesther Shaw,41996,14298,0 +131529,Angelo Cammarota da giovane,56853,555528,4 +131530,John Houston,319096,27748,7 +131531,Messerschmidt,18569,13361,33 +131532,Blackbeard,18977,20100,0 +131533,Richards Man #2,360924,1737940,7 +131534,Ronnie,394822,1043835,11 +131535,2nd Bruiser (uncredited),25953,165148,15 +131536,Joe,8281,22312,5 +131537,Rod,59744,76519,1 +131538,Sir George Barton,120977,14688,4 +131539,Airport Backpacker,127585,56418,58 +131540,Police Officer - SWAT (uncredited),59678,578690,30 +131541,Presiden Soekarno,39061,1829162,5 +131542,Gei,338421,1143686,13 +131543,Joe the Witch Doctor / Poacher #2 (voice),10527,18863,19 +131544,Manfred,85564,46930,3 +131545,"Kannai - a Guard (segment ""Chawan no naka"")",30959,118984,61 +131546,Calvin Marshall,45675,19195,0 +131547,Himself,366696,1753482,9 +131548,Kalique Abrasax,76757,89822,5 +131549,Josef Walzer,359483,50185,5 +131550,Jesus,19342,75599,14 +131551,Bern,16131,79416,2 +131552,Masha,141733,66446,3 +131553,Diana's Father,42614,100803,8 +131554,Floyd,15148,12644,5 +131555,,14284,1195359,5 +131556,Oreste,226936,1609153,11 +131557,D'Artagnan,41609,13294,1 +131558,Belle Dorset,33923,111581,3 +131559,Commi Tech / Marine Soldier,330459,1514130,57 +131560,Tom O'Henton,28090,129663,17 +131561,Peter Andre,208434,82835,6 +131562,Ronnie,401060,972294,5 +131563,James J. Starrow,67375,1467460,49 +131564,Miao Miao,219572,1151657,2 +131565,Penny Gayle,31127,1055696,5 +131566,Pretty Tony,102668,1031779,3 +131567,Versalus,153272,1873606,10 +131568,Abraham,8199,51996,5 +131569,Corporal (uncredited),43142,102790,15 +131570,Doctor Marco Salvi,98025,544723,1 +131571,Merlin (voice),810,10713,7 +131572,Eliza,346170,173879,1 +131573,Chairman of the Federal Reserve,413052,980746,6 +131574,Mi-ran,257331,1263930,6 +131575,Argentine Reporter,10829,25313,11 +131576,Marthe,63224,543622,7 +131577,Rahul,13986,35742,0 +131578,Melania,99642,54327,1 +131579,Hansen,11869,70795,2 +131580,The Duke,111470,997751,31 +131581,Captain (voice),159304,591947,0 +131582,Bruce,15316,622844,9 +131583,Policeman,14387,84444,7 +131584,Peachum,42837,78,3 +131585,Uomo d'affari,226936,931928,7 +131586,Marian Tygarth,44001,95263,4 +131587,Cameron Kincaid,15148,11665,1 +131588,Creeper,90465,14574,7 +131589,Bernard Latour,37653,41029,2 +131590,Masked Party Guest,149793,98047,39 +131591,Isa,49717,142683,2 +131592,King Nabonidus (Babylonian Story),3059,29961,17 +131593,Kid in SUV,1726,1209706,40 +131594,W.D. Marshall,70046,21485,3 +131595,Abby Reed,174162,7634,0 +131596,,375794,55392,2 +131597,The Aunt,76533,292249,2 +131598,Rent Party Guest (uncredited),31913,3418,27 +131599,Pedro Adler,22897,1259762,11 +131600,Song Tianyin,334298,1094210,1 +131601,Pablo,47211,583708,1 +131602,Fuki'e,36917,1285657,6 +131603,Kenji Kimura,55192,213494,5 +131604,Faina,57996,5813,3 +131605,Le 1er antiquaire,82327,1129857,8 +131606,Scientist,28340,1795350,28 +131607,Miller (uncredited),52440,98495,14 +131608,Walter Perrera,100661,582744,3 +131609,Maria,19725,47590,13 +131610,Golem 4,52369,1789822,13 +131611,,315841,553323,11 +131612,Val Carson,149793,46617,1 +131613,Gennaro Scognamiglio,42441,64799,5 +131614,Paulo,70666,1471570,53 +131615,,31512,1168491,23 +131616,Seth Gale,43806,50573,13 +131617,Apparao,353533,146147,11 +131618,Willey,22007,35981,1 +131619,"Bachir ""Yachine""",110992,1050967,4 +131620,Dr. Paul Martin,111960,118426,2 +131621,Jacky Morestel,13739,43998,5 +131622,Tyler,109439,1208438,16 +131623,Starszky Pan,82027,592915,7 +131624,T-Bone,31867,150,6 +131625,Bonny,382951,167290,9 +131626,Desk Policelady,48118,1578104,15 +131627,Vicki,156700,1136940,17 +131628,Riccardo Spagnolo,142320,5412,0 +131629,Kate McCulloch,9756,58919,12 +131630,Marco Palma,95096,85338,0 +131631,Man Taking Sergei to Ivan,91480,119547,11 +131632,Trotskyite Slapping Poppa Rosen (uncredited),28564,4120,17 +131633,Mummy,52021,154582,4 +131634,Alice Leonardo,24331,189624,3 +131635,Arthur,83890,2047,2 +131636,Nuuskamuikkunen,293271,1364785,11 +131637,Smitty,47878,30621,3 +131638,Teologo,161545,543583,20 +131639,The Boy,168647,944734,2 +131640,Neil,1819,19274,4 +131641,Elliot Wade,28859,8350,1 +131642,Assistant warden,17467,240185,9 +131643,Woman in Car,52021,1088215,14 +131644,Robot Girl,243683,1397782,21 +131645,Plante,30174,1438966,15 +131646,Friedrich Hoprecht,10626,48007,3 +131647,Mikhail Mikhailovich,43489,39801,5 +131648,Jim DeSouza,128270,1670935,38 +131649,Quinn,84907,60901,4 +131650,,49322,1040511,3 +131651,Roberto da Costa / Sunspot,127585,1010189,18 +131652,Kim Lee (Keyboards),23367,95360,9 +131653,Selma,10119,63761,0 +131654,Branwen,336149,1581212,11 +131655,Han Dae-young,21442,63445,5 +131656,Schultz,53576,1509,2 +131657,Dr. Clark,414610,1104698,7 +131658,Dr. Terry McCormick,52454,87079,0 +131659,Rick Smolan,203819,1023139,1 +131660,Himself,23524,236674,2 +131661,Dave,228970,1495077,22 +131662,Mr. Kane,106635,98047,16 +131663,,57548,1092640,5 +131664,Annalisa,61035,232203,8 +131665,Jose Bustamente,70667,121546,7 +131666,Himself,81435,1357165,11 +131667,Mandy,336004,82944,30 +131668,Oleg Yugorsky,7304,52414,1 +131669,Aurelio,245891,5723,7 +131670,John W. Grant,337789,91260,7 +131671,Evaristo,100270,264955,5 +131672,Pia,14459,34627,0 +131673,Frankie,8981,3065,2 +131674,Ego,283995,6856,12 +131675,Andrew,71668,59843,8 +131676,Nybliven mor,60899,6659,17 +131677,Marcel Maurin,37454,18559,8 +131678,Pedestrian Runner (uncredited),283995,1767219,51 +131679,Ben,32088,136004,6 +131680,Tim (Segment 6),244117,73210,1 +131681,Royal guard,76757,1052603,28 +131682,Lisa,8852,554008,7 +131683,Woo So-young's husband,4550,150697,18 +131684,Yusuf-Ben-Moktar,50329,1356923,12 +131685,Lothar,73775,7829,4 +131686,Greg,252773,72950,3 +131687,Razia,46387,78248,11 +131688,Aeka,14829,60757,2 +131689,Earl Gaines,132363,53258,1 +131690,Thompson,47003,1573982,4 +131691,,20646,70134,12 +131692,Police Officer,11205,1034456,20 +131693,Burt,79935,26999,4 +131694,Grace Goodwin,118889,13822,11 +131695,Aunt Bae,319096,116299,10 +131696,Mr. Angelo,50590,6163,3 +131697,,149868,1173683,12 +131698,Edwin Dingle / Buzzy Bellew,34127,70668,0 +131699,,62616,120243,6 +131700,John Agoglia,30330,14784,6 +131701,Gail Richards,106355,96719,1 +131702,Himself,266782,7904,8 +131703,Nobody,9474,15140,0 +131704,Himself,28036,78021,7 +131705,Milos,10087,63144,18 +131706,Bob (uncredited),27986,13968,19 +131707,Alice Mitchell,13358,131645,4 +131708,Karoliina,201124,88851,4 +131709,Van,27986,98022,11 +131710,Young Rey,140607,1709047,19 +131711,Father of Crying Girl,43751,103987,2 +131712,Daniel Kies,322148,1522729,1 +131713,Gambler (uncredited),36634,115995,20 +131714,Uncle Benny,44562,13726,4 +131715,Tamás Várnai,17780,42068,1 +131716,Roberts,118948,96722,7 +131717,Crook,3059,1044969,29 +131718,Cain's court,45273,154937,7 +131719,Sheriff Larabie,31991,4942,1 +131720,Coroner,347031,76624,4 +131721,Masha,41703,127121,0 +131722,Bobby,10053,49271,3 +131723,Sayapin,72949,237794,1 +131724,Vera,114790,38267,4 +131725,,31275,1853894,20 +131726,Naokazu,402455,235294,13 +131727,Wulfrik,7234,52127,6 +131728,Himself,157117,92312,32 +131729,Burke Ramsey Auditionee / Himself,430826,1891544,53 +131730,Jean Pringle,90465,33360,2 +131731,Gilda,189,57674,20 +131732,Klara,163791,1568513,11 +131733,Awasis,24709,203677,1 +131734,Mary,101915,1252220,14 +131735,Luk Fu,182127,1440436,27 +131736,Sweet Cakes,116977,53929,5 +131737,Gary,98557,84115,4 +131738,Salesperson (uncredited),246655,1327614,92 +131739,Chuta Tamura,25716,1417325,8 +131740,School Girl,4809,226626,9 +131741,Ansford,45875,2454,2 +131742,Beefeater,245739,214812,10 +131743,Geppetto (voice),39045,41217,1 +131744,Mr. Green,12591,3712,5 +131745,Finch,40252,1239478,6 +131746,Beatrice,82662,225262,6 +131747,Sami,35856,235134,3 +131748,Jazz Musician,229297,1418994,21 +131749,Mark Breslin,5413,43133,4 +131750,Batú,56948,8597,3 +131751,Buck Henderson,30054,94315,8 +131752,Timmy McGrath,51947,1249639,9 +131753,Mother,154442,33728,0 +131754,Ciro,8882,72789,7 +131755,Viktors,116432,1189690,5 +131756,Ele mesmo,448763,1848671,40 +131757,Grey,12783,55470,5 +131758,The Street Singer,42837,11638,7 +131759,Jacob Branson (uncredited),126889,17051,18 +131760,Verleger,198511,9894,7 +131761,Brigadier Kaiser,37710,381663,39 +131762,Riku Sundman,61070,103866,6 +131763,Radióloga,53739,1085405,11 +131764,Gisles Guard,360249,1648977,15 +131765,,296750,68973,4 +131766,Fedor's Father,319092,1890099,2 +131767,Frozen Husband,193893,1381628,43 +131768,Thomas,251232,1430142,13 +131769,Karen Weston,152737,3196,8 +131770,Jennifer,316042,43310,5 +131771,Christine,37653,34000,5 +131772,Chung-bae,107976,109060,1 +131773,Dr. Jallings - Science Investigator,102382,93053,22 +131774,Recep İvedik,32926,144191,0 +131775,Smoker,47794,1600353,17 +131776,Story-Telling Officer at Party,81110,32192,15 +131777,Costa,59118,1644526,16 +131778,Chief of Detectives,4413,1333232,21 +131779,Alice,20107,78030,3 +131780,Himself (archive footage),318224,1450888,18 +131781,Pat Mullins,67460,1242792,5 +131782,Ben,177335,1284066,5 +131783,Cpl. Thompson,46872,3342,3 +131784,French Maid,80720,1672451,30 +131785,NYC Crime Witness (uncredited),337339,1718163,34 +131786,Julie Vale,24331,87120,1 +131787,co-worker,189151,227615,15 +131788,Megan,14435,222141,7 +131789,Elisa,20357,2038,2 +131790,Amedeo,81775,117950,0 +131791,Jacques Piccard,276909,1351681,3 +131792,Walters,61430,38050,6 +131793,Mr. Fillmore,272693,588231,7 +131794,Bruno Lüdke,103396,10254,2 +131795,Oozegirl,44436,130848,7 +131796,Veena Varma / Veena Sinha,53767,646938,5 +131797,John Bishop,174751,3061,2 +131798,Violet,27450,230909,11 +131799,Seoul Probation Officer,128111,573794,5 +131800,Bobby Matthews / Bobby Matthias,289225,1357881,3 +131801,Sid,85673,105081,3 +131802,,104945,36909,1 +131803,Actrice,382589,1824575,20 +131804,Vicky,6023,163664,13 +131805,"The Honorable Hiram J. Sellers, Mayor",94176,30512,5 +131806,Square-Dance Caller,33541,1745818,51 +131807,Himself,98566,1412784,22 +131808,"Pearl, Girl on the Tube",340101,1713690,41 +131809,Charles Bovary,273510,19923,5 +131810,Slater,73424,123512,6 +131811,Rolf,30876,44961,2 +131812,Bud Black,2179,7470,4 +131813,Delicious,135652,74354,4 +131814,Ethel Landreth,120357,145826,5 +131815,,64784,1451779,9 +131816,Grenadier Spiller,212530,13377,11 +131817,House of Blues Emcee,10330,1575805,32 +131818,Morris,48677,4520,7 +131819,Robert,344039,58907,7 +131820,Official at Prague Steel Works,41597,97237,32 +131821,William T. Lafferty ( aka Willie the Wino),255388,120741,9 +131822,Dobie,1673,102267,4 +131823,,86985,1159456,15 +131824,Laurence,52049,27980,8 +131825,Cal,118889,123576,39 +131826,Dino,14669,28033,12 +131827,Eva,14078,76331,3 +131828,Hilda Parra,80717,590877,1 +131829,Rosa Maria,95536,213290,1 +131830,Man in Comercial,135390,3853,4 +131831,Wes Harding,30641,78198,0 +131832,Vlachos,213842,20277,6 +131833,Wong Wa-Po,41380,62410,3 +131834,Inspector Gilson,32080,170970,12 +131835,Frank Roloff,324408,41965,1 +131836,Pelagia,80324,589242,0 +131837,Dr. Frederick Bronski,22998,14639,0 +131838,Joe #2 (uncredited),25953,1631703,13 +131839,Dewey Revette,296524,129868,11 +131840,Stefano D'Archangelo,99261,39467,0 +131841,Male hostage,11636,1467341,30 +131842,Kang-jae,18704,64880,1 +131843,himself,40873,3284,8 +131844,POW Scout,315855,1592944,51 +131845,Lawyer,354979,1563273,37 +131846,Philippe,12169,66839,12 +131847,Henchman,23590,557086,6 +131848,Mae Coleman,20521,86267,4 +131849,Elmer Fudd as Siegfried (voice),53217,147117,1 +131850,Molly Reins,85414,69210,1 +131851,Barbara Blandish,79645,15655,0 +131852,Constance,39982,146470,4 +131853,Eric Weiss,26961,63210,0 +131854,Foreman Jay,215379,78962,13 +131855,Chick Morgan,174769,11439,3 +131856,Receptionist,193610,1319530,13 +131857,Kay Kyser,80720,1024198,0 +131858,Chinese Soldier in Demo,228647,10344,27 +131859,Susan Merrick,227700,1278555,13 +131860,Mari de Lise,148327,81430,10 +131861,Bruce Wayne / Batman (voice),321528,183812,1 +131862,Rhonda,11247,9788,4 +131863,Val,37269,51456,9 +131864,Anja,14357,1016977,5 +131865,Omar,84479,280872,3 +131866,Carroll Oerstadt,7551,8767,3 +131867,Sid Rourke,25941,15498,4 +131868,,49954,143081,0 +131869,Himself,410718,1702121,22 +131870,David,24397,174313,11 +131871,Célestine (enfant) (voice),126319,1505894,20 +131872,Cassidy,253257,936970,2 +131873,Virologist,51999,39970,11 +131874,Cecil,9953,60874,5 +131875,Voice of Trees,79329,586544,23 +131876,Diane Lee,18932,92813,3 +131877,Kyle,360737,1569359,8 +131878,Albert,179398,83530,1 +131879,Wilma Q. Gammelgaard,59861,12931,15 +131880,Esther,136582,1096268,9 +131881,,188524,138585,3 +131882,Entitled Teen,365942,1371849,23 +131883,Kevin,27196,1213668,12 +131884,Hanly Blyton,43711,1214517,5 +131885,Russian Submarine Sailors,246655,1796433,87 +131886,Shigaru Yoshizawa,116303,130656,4 +131887,Uncle Frank Stinson,256740,48,2 +131888,Haylee,236324,1315950,11 +131889,Hotel Clerk,55604,116494,71 +131890,Ravel,70981,30082,11 +131891,Padre de Angélica,299165,1377949,7 +131892,Roy,284279,77976,0 +131893,Goblin/Elrond,1361,16417,6 +131894,Ammon,35002,106630,7 +131895,"Ddalgook (""Hiccup"")",43987,1190229,6 +131896,Prostitute,403429,1640623,5 +131897,Italian Gendarme at the 'Maria Ann',257081,30203,33 +131898,Jean Freud,48231,1089492,29 +131899,Brother Geraghty,239563,40477,4 +131900,Bobfried Kimbel,15640,6090,15 +131901,Myrtle,987,1076602,17 +131902,Theo,97614,1207369,30 +131903,Bradley Wallace (as De Witt Jennings),147722,138219,29 +131904,Stella,163814,62866,2 +131905,Paul Summer,7916,60650,7 +131906,Cooking Show Host,116979,14800,20 +131907,Sierra Kuchinko,119893,1071199,3 +131908,Jenny Mercer,23397,9207,1 +131909,Curly,273106,1519556,11 +131910,Janie Magray,45431,1219397,5 +131911,Journalist,47959,58764,24 +131912,Timmy Moser,40087,106359,7 +131913,Gus,213443,80569,8 +131914,John Brigson,277713,122648,8 +131915,Shaul,35623,1195670,7 +131916,Rui,12453,72287,2 +131917,Corporal Dooley,239566,97446,11 +131918,Young Eric,127560,225692,0 +131919,Mrs. Gladys Foreman,48627,109407,3 +131920,Ramsey,337339,1251069,8 +131921,Kadambari,320910,91548,2 +131922,Steve Dunlap,109122,47079,0 +131923,"Shimazaki, the waiter-thug",43113,235381,13 +131924,Kelsi Nielsen,13649,84952,14 +131925,Maura Prince,86979,1934,0 +131926,Sam,285270,558466,1 +131927,Roger le Catalan,44256,15397,1 +131928,Hickie,316042,46906,7 +131929,Voyeur,332168,1765663,1 +131930,Salim,44519,229249,0 +131931,Sheriff Gordon,85564,591,2 +131932,Yukie Fujikaze,16907,222340,5 +131933,Deke,128866,1088058,6 +131934,o.A.,5646,44576,8 +131935,Shanti,53767,52973,0 +131936,Fred,106573,33178,5 +131937,Bane (voice),411802,59784,0 +131938,,22701,1056613,4 +131939,Samantha Lane,19912,21858,4 +131940,Pilot,31915,58494,6 +131941,Jocelyn,38987,216778,10 +131942,Guy #1 / Guy #2 / Fluffy Guy / Ticks Announcer / Left Hand Characters,32536,1599578,0 +131943,No / Tomas Katz,16171,27678,0 +131944,Madero,1810,2756,7 +131945,Jason Cross,11887,200823,10 +131946,Mme. Mélikian,26810,72590,15 +131947,Midwife,200727,1428992,25 +131948,Charlie Hays,158967,35350,0 +131949,Emil Maurice,102155,178916,16 +131950,,73208,1213708,5 +131951,Shane,38317,2680,9 +131952,Malar,341895,1473119,1 +131953,Allergy Actor,15019,211586,17 +131954,Kevin,75090,475571,13 +131955,Fisherman,41597,554381,28 +131956,Rita,4497,37507,6 +131957,Lily,356483,69225,8 +131958,Father,176,2143,15 +131959,Granny Vane,120977,118265,5 +131960,Taira no Tadamori,45987,134386,8 +131961,Gaspar,299165,1372967,8 +131962,Track Suit Russian,242310,1338215,15 +131963,Rollo the Knife Thrower,28261,32437,5 +131964,Carl,323370,127701,5 +131965,Spyros' Friend,48210,1119919,4 +131966,Rosie,15019,1160,0 +131967,Ted Danson (uncredited),72105,12836,29 +131968,Miss Lucy,42188,39658,6 +131969,Roughneck,262841,1368501,13 +131970,Rita,405473,1157316,44 +131971,General O'Shauncey,177566,1157261,8 +131972,Sankeshwar aka Circuit,19625,85889,1 +131973,Charlize Wang,220488,125769,5 +131974,Fantasy Baseball Guy,4964,116805,25 +131975,"Himself, Cameo Appearance (uncredited)",32552,4114,33 +131976,Rabbit,77534,29837,0 +131977,Agostino,403450,1872724,9 +131978,Mrs. Kelmeckis,84892,61114,8 +131979,Ilham,24424,132105,1 +131980,Cuddles Walker (dance-hall singer),40719,83620,5 +131981,Dr. Ira Gold,9987,7676,0 +131982,Chicken George,400174,1628687,12 +131983,Katsuya Ishida,60160,1132014,4 +131984,News Department Director Baek,362974,16288,2 +131985,Buckliger,1659,2377,13 +131986,Magdalene Shaw,337339,15735,16 +131987,Emiliano Zapata,1810,3084,0 +131988,Polizeibeamtin,61552,1073988,13 +131989,Herself (voice),378441,1362643,7 +131990,Mother,341490,80920,1 +131991,Dancer,32845,1334091,4 +131992,Meatdripper / Lout #3,267935,1476033,15 +131993,Mike Lewis,37462,1357721,5 +131994,Janelle,58832,98275,2 +131995,Red Henderson,244786,16506,31 +131996,Pappy Hatfield,268350,592972,9 +131997,Umpire #1,18722,552542,19 +131998,Samatha Bai,270774,64439,2 +131999,Nancy Sperling,31880,51456,7 +132000,polischef,37731,141623,9 +132001,Kerri,31821,80591,1 +132002,Vivica,18843,27775,11 +132003,Tin Tin Yin,188836,937835,4 +132004,William Fox-Talbot,80596,50998,30 +132005,Hitchy,131360,582416,6 +132006,Shojiro Toda,94659,213484,1 +132007,Joo-yeon,346646,1294642,10 +132008,Kensaku Kitajima,88529,125721,6 +132009,Moses,43252,50837,24 +132010,Pundit,214756,84792,34 +132011,Swig,126083,101886,7 +132012,Undercover Hooker,14923,1386350,27 +132013,Sędzina,155325,1138735,24 +132014,Danny Camper (uncredited),251227,1286524,32 +132015,Rick,43656,6807,13 +132016,Dennis,397717,1301729,16 +132017,Deputy,43821,1042201,26 +132018,Léna,1818,18218,1 +132019,Klaus,8556,32254,5 +132020,Mrs Han,19482,145363,2 +132021,young Ling Hoi Yee,69619,143930,5 +132022,Gaddis,32029,54682,7 +132023,Arguing guy,222388,1326242,11 +132024,Laser,25132,557921,10 +132025,C-Rayz,26390,60488,14 +132026,Barry,210302,5293,0 +132027,Rinaldi Vivaldo,30993,229709,2 +132028,Luanna,37497,117810,1 +132029,Owen Taylor,70404,107491,4 +132030,General Shao,311324,99687,5 +132031,Himself,8886,46392,4 +132032,Herself,14761,1308767,4 +132033,Taylor Elizabeth Berry,19688,1223171,5 +132034,Walter Ames,40719,1505416,13 +132035,le couple en lune de miel,252102,947426,12 +132036,Dylan Marvil,34482,112472,3 +132037,Extremis Soldier,68721,1544394,90 +132038,Doris Reid Weaver,212713,44881,3 +132039,Motel Manager,263115,1609622,33 +132040,Gertie,2516,3930,6 +132041,Umeno Sonobe,168295,1092519,6 +132042,,297298,225188,3 +132043,,28917,59252,4 +132044,Stunt Police,25941,29333,28 +132045,Thumper (voice),13205,74284,3 +132046,Isolina,90228,9919,1 +132047,Young Jamie,22901,1779956,17 +132048,Gravedigger,261439,3463,7 +132049,Digger Pescatore,259695,7133,10 +132050,Seki,14164,147880,14 +132051,Roger Lloyd,10594,65769,8 +132052,Ursula,9528,5309,0 +132053,,342011,999996,4 +132054,,293092,79763,4 +132055,Other Mother in Store,27414,1206242,31 +132056,,72375,28255,0 +132057,Geoffrey Crisp,16444,14261,1 +132058,Jean-Pierre,71732,71491,2 +132059,Sun Jingshi,76544,57831,4 +132060,Charles Crocker (uncredited),43522,147963,37 +132061,Jon Aldrich,18495,15112,0 +132062,Editor Gunnigan,250332,33972,70 +132063,Sheriff Aaron Whitaker,49354,51377,0 +132064,Zio di Checco,35554,120134,7 +132065,Herself,410718,1702124,26 +132066,Ali,177697,1160210,7 +132067,Detective,28090,131119,18 +132068,Channel 7 Reporter,19719,85106,13 +132069,Maria,227383,1261438,1 +132070,Mary,19238,54830,1 +132071,Girl on Tony's Staff,170517,101976,15 +132072,Gang Member,20766,39520,7 +132073,Enola / Margaret / Pamela,201085,111090,6 +132074,Don,64627,23721,1 +132075,Midge Mallon,34127,77675,2 +132076,,188684,1588320,5 +132077,Draft Board Chairman (uncredited),16442,84640,76 +132078,Duane,73098,176031,2 +132079,Tarsilla,73697,51840,0 +132080,Lorna,1691,33656,2 +132081,Bartender,288281,1878321,11 +132082,Mavericks Spectator,82684,928577,10 +132083,Yuki,1690,1265216,9 +132084,Brunette Girl,45729,109783,17 +132085,Jasper,20304,6735,5 +132086,Doctor,225728,1451332,28 +132087,Xarsis,277778,23631,8 +132088,Ellen Weihenmayer,96011,11884,5 +132089,Viola Peabody,179826,1216606,3 +132090,Chairman of Earth Committee,19545,1008470,7 +132091,,85656,67093,5 +132092,Major Domo,43252,8730,22 +132093,Therapist,3638,12438,5 +132094,Greeley's Secretary,43806,1016646,50 +132095,Melissa,69921,15552,2 +132096,,265934,1248802,10 +132097,Beatrice,124202,70962,7 +132098,Rodeo Announcer #1,33541,13969,37 +132099,Rucker,147106,1523611,13 +132100,Ferdinand,70670,1144062,16 +132101,Scott,69217,76038,1 +132102,Nurse Svetlana,76493,999817,9 +132103,Niklas,76864,231926,8 +132104,Gabrielle,382501,82923,1 +132105,Phil Shaw,257447,1020684,24 +132106,Harry,2267,173994,9 +132107,"Gallup, Mrs. Gage's Butler",179066,5831,7 +132108,Egy munkás,128043,1086321,5 +132109,Ms. Waters,8617,96554,12 +132110,Jimbo,54388,1146142,5 +132111,Danny's Mom,343934,61114,4 +132112,Mitsumasa Kodai,391642,115700,2 +132113,Sax Player,33481,110762,11 +132114,Detective,62046,97446,15 +132115,Le fils de Valérie,152989,1179889,27 +132116,Brian O'Rourke,77822,1140111,15 +132117,Decorator,281124,1340119,10 +132118,Babourg,86727,48278,4 +132119,Elvire,237796,4885,2 +132120,Xiao,315855,1592925,34 +132121,Dr. Leonard Cook,252853,24937,0 +132122,Chen Ching / Tai Song,42120,1193722,7 +132123,Joshua,167424,1822698,12 +132124,Filippo Sella,165159,1854344,11 +132125,,16843,172780,2 +132126,Cindy,411741,1727108,8 +132127,Beverly,406052,80405,11 +132128,Thug,60173,230664,5 +132129,Iraqi Child in Car,424488,1837288,38 +132130,,96106,1281099,16 +132131,Virgil Travis,29542,104132,0 +132132,Julie Patimkin,42604,1452155,5 +132133,Melanie Stryder / Wanda,72710,36592,0 +132134,Uncle Jim,246011,79416,16 +132135,Vitaly,390880,77666,9 +132136,Anna's mother,104954,102154,6 +132137,Isabelle Guérin,53404,4390,0 +132138,Joe Niemand,5237,77681,6 +132139,Ernest Lincoln,85483,44261,5 +132140,Sasha,1691,37017,10 +132141,"Winnie, Girl in Pub (uncredited)",47312,70564,19 +132142,Chip Carson,20473,27493,0 +132143,Betty Jean 'BJ',85200,1709370,5 +132144,Tara,23048,82096,11 +132145,Frederick Treves,263065,27116,0 +132146,Jai,39781,1224166,7 +132147,Perückenmacher,52475,1881183,29 +132148,,408140,9145,2 +132149,Karen Graves (voice),62211,5149,16 +132150,Marcos Santiago,243683,1397762,14 +132151,Lynn Berry,245703,1227167,31 +132152,Purin,176983,146452,24 +132153,Jacques Gauthier,91380,3509,4 +132154,Douglas Dainton,145162,26557,4 +132155,Diana Brockhurst-Lautrec,140648,40168,1 +132156,Himself,26465,21355,3 +132157,Thanasis Birbilis,296344,1031166,1 +132158,Margot Frank,128396,1409179,2 +132159,,125229,125011,4 +132160,Cathy Mallory,174769,30225,1 +132161,Vision,14613,220787,7 +132162,Inspector,166207,1199334,10 +132163,French Girl - Dieppe,369885,1603495,35 +132164,Pete Harris,27114,3246,7 +132165,Mikey,17622,84864,4 +132166,Stoneface,170603,101752,4 +132167,Sean,297265,97505,8 +132168,Olivia,13946,1039594,4 +132169,Lawyer Beaumont,343795,20309,8 +132170,"Dominitlla, la sposa",43646,129743,5 +132171,Charlie,79935,179510,6 +132172,Inge Brunner,32764,37069,3 +132173,Camper (uncredited),251227,1286534,26 +132174,Carme Puig,1896,19822,8 +132175,Butch,252916,556861,10 +132176,Detective Inspector Carberry,60759,14823,8 +132177,,103215,59620,7 +132178,Lana Edmond,274504,55085,1 +132179,Kimoto,402455,1417538,11 +132180,Barbara,33095,182054,7 +132181,Sr. Besugot,137614,1144988,7 +132182,Kickboxer,51999,1471026,20 +132183,"Herself, Daughter",45576,570198,2 +132184,Robert McDaniels,118443,180682,2 +132185,Maud Milligan,72096,8900,10 +132186,Ferry Dan / The Great Seanachaí (voice),110416,37169,4 +132187,Chancellor Gordon,395883,2047,2 +132188,Peanuts / Jinks Murphy,85420,7503,2 +132189,Grace Park,310001,1013165,2 +132190,reporter Virgil Whitaker,77964,103451,5 +132191,Roosevelt,82679,1142720,5 +132192,Leader,66741,52189,11 +132193,Inspector Watkins,46448,14503,1 +132194,Commander Aldrin,13956,146186,12 +132195,Sam Heppner,151431,79358,3 +132196,Reece,313922,1081875,3 +132197,Valerie McCabe,20312,43247,18 +132198,Carmen,1418,16980,9 +132199,Frank,86664,305332,4 +132200,Olga Gurova,271234,1322777,6 +132201,Ignacio,83430,1129448,13 +132202,Francie Koln,46943,10670,5 +132203,Napoleon Bonaparte,43252,2778,13 +132204,Astérix (voice),9385,34676,0 +132205,,261871,235999,4 +132206,Eva,42679,35127,7 +132207,Pretty-to-Goth Girl,7326,59181,22 +132208,Lurdes,53042,109714,4 +132209,Art,222858,44043,4 +132210,Francísco,85544,1086356,3 +132211,Director,15086,24454,6 +132212,Angelique,181456,1263596,16 +132213,Cowboy,73984,116140,18 +132214,Achim Weber,324408,44567,0 +132215,Alana (voice),13676,81667,6 +132216,Chancellor's Security Aide,177677,1562095,47 +132217,Franz Merkl,122487,45882,2 +132218,Im Na-mi (young),77117,93995,1 +132219,Vanessa,98096,104111,1 +132220,Chef,75244,54447,10 +132221,,14537,552165,15 +132222,Monster Victim,53949,1668698,16 +132223,"Michiko, daughter",49308,590248,0 +132224,Subject #2,29151,2694,18 +132225,Warren Worthington III / Angel,246655,1452045,12 +132226,Pink,128437,16017,3 +132227,Queen Henrietta Maria,31675,38998,3 +132228,Hurricane House Guest,77930,1784646,49 +132229,Mrs. Beatty,397520,1373080,9 +132230,Hanna-Riikka,20160,85386,5 +132231,Angry Nightclub Patron,198600,121323,12 +132232,Pushy Tabloid Reporter,68721,574355,29 +132233,,144421,1120754,2 +132234,Baby,52661,101431,6 +132235,Victoria Anastasia Wilomirska,214909,88867,0 +132236,Wife,331313,1767211,34 +132237,Shadow,91679,131772,41 +132238,Canteen supplier,332827,1535506,20 +132239,Plastic Surgery Doctor,351065,3720,19 +132240,Helen Brown / Hally Fitzgerald,63260,230671,1 +132241,Young Man with Gun,25551,34181,13 +132242,Jeremy,279690,121868,2 +132243,Harvey Bellinger,14569,2222,0 +132244,Don Bonner,45562,1419355,5 +132245,Redhead,19794,82956,19 +132246,Friar Tuck,71066,565354,6 +132247,,42852,47680,35 +132248,,127445,1014628,2 +132249,Merchant (uncredited),274857,1654737,45 +132250,Jacques Frémont,78210,72090,4 +132251,Max,406052,1453680,0 +132252,Ed Murphy,55604,1196675,11 +132253,Lilah 'Lily' Gustafson,42191,14965,1 +132254,Clémence,319340,1348474,4 +132255,George Lieberhof,71825,3265,5 +132256,Matt Jackson,78265,16016,2 +132257,Wendy,866,13010,6 +132258,Elvis,1661,18491,5 +132259,Shige,20530,131019,10 +132260,Catherine,11376,72865,12 +132261,Zio Modesto,363757,120129,6 +132262,Randal Graves (voice),282247,23630,1 +132263,Begum Mussarat Jahan,67794,195399,7 +132264,Young Boy,424600,1704670,29 +132265,Batman / Bruce Wayne (voice),300424,963818,0 +132266,Auguste Maroilleur,65887,11544,0 +132267,Peggy,190269,104018,3 +132268,,32158,1135865,4 +132269,General Zyniker,354859,1802426,26 +132270,Joe 'Lightning' Little,72431,35013,1 +132271,Kahill,9286,33352,18 +132272,Ozias,288980,1579772,11 +132273,Vater Xaver,37405,18051,3 +132274,Lui même,252773,231473,2 +132275,Rae,51426,12309,7 +132276,Cliff Moore,42683,3341,6 +132277,Frank,5123,206452,29 +132278,Urbain Randal - l'oncle et tuteur de Georges,55370,112758,5 +132279,трактирщик,63449,22823,8 +132280,Melissa,38913,102893,1 +132281,Verteidigerin,130544,45197,2 +132282,Bartender,26736,1350652,7 +132283,Ted,14750,124717,9 +132284,Angar Chand,20364,691,6 +132285,Helen,17457,64434,1 +132286,Clete,332839,469462,5 +132287,Joshua Collins,62213,39683,12 +132288,Julie,12513,59627,3 +132289,Judge,206390,1188862,1 +132290,Bob's Father,30411,44790,7 +132291,Dahlia,85564,1225098,5 +132292,Chalice,24397,26723,1 +132293,Markovics,197849,70499,3 +132294,Luc,212756,559582,10 +132295,Reporter (uncredited),1726,1209719,71 +132296,Robin,17175,1699128,8 +132297,Ooley,102668,188347,11 +132298,Xellos,125513,81244,5 +132299,Policeman,10204,62831,9 +132300,Rebecca Fisher,82626,928328,3 +132301,Len,344039,7026,1 +132302,Franck,11227,5079,2 +132303,Louis,4380,36816,16 +132304,,348315,211012,11 +132305,Mrs. Klopp,25241,1765269,14 +132306,Brandon Miller,18051,60705,1 +132307,Jefferson,266285,1338475,25 +132308,Mrs. Albertson,8669,184388,22 +132309,Thor,14609,87176,8 +132310,Diablito,151310,1096850,11 +132311,Bickford Shmeckler,33563,11663,0 +132312,Paige's Friend,45610,1539987,9 +132313,Infirmière,283726,1690043,8 +132314,Christen,4592,38333,8 +132315,Cooke,10999,1103,7 +132316,Inner Child,315855,1592924,32 +132317,Connie Nevins,244201,81167,5 +132318,,246417,1810500,2 +132319,Seaman,145247,1314274,15 +132320,Billy at age 11,108723,1372289,9 +132321,Pensionsbesitzerin,277968,64018,30 +132322,Waitress,2080,1353656,53 +132323,Valerie,62527,53485,7 +132324,Woo-Jin,338729,86330,4 +132325,Jeffrey,277710,39390,6 +132326,Judge,150712,96721,6 +132327,Lucas,359245,47441,6 +132328,Maid (uncredited),4459,8829,7 +132329,Julio,74,75604,9 +132330,Clint,84348,1039533,6 +132331,The Speaker,84944,1364509,8 +132332,Jerry Randolph,29424,1206162,16 +132333,Rebel General Jin Song,11653,113792,9 +132334,Journalist Wahrig,1294,5756,9 +132335,Pop,25407,94929,3 +132336,Park Ji-won,214910,587675,9 +132337,Neils Hirsch,286971,1172147,12 +132338,Front Desk Clerk,369033,1519583,16 +132339,Н. Е. Жуковский,419601,1461692,3 +132340,Woman at Barricades,173456,2934,18 +132341,Berger,32139,108942,12 +132342,Garth Pancake,5516,18999,3 +132343,Mike 'Magic Mike' Martingano,77930,38673,0 +132344,Barbara,428687,1341112,13 +132345,Verba,36530,115530,1 +132346,,108222,1142371,32 +132347,High Priest,31264,136409,5 +132348,Mrs. Caputo,92389,1391891,5 +132349,Pascale,130739,1100364,23 +132350,Jonathan,8270,54221,25 +132351,Glenda,57201,1178981,51 +132352,Taxi Driver,374475,1437321,13 +132353,,67633,1308519,24 +132354,,255160,550007,9 +132355,Cecchina,65718,71139,2 +132356,Marianne Dashwood,315010,150245,1 +132357,Eeva,287301,147747,2 +132358,Narrator,37339,253,1 +132359,Gillian Jones,335869,14226,4 +132360,Bobby Witkowski,262338,1396601,16 +132361,Chairman Whistle,18747,124777,12 +132362,Art Curator,345915,1177469,37 +132363,Abou Tarek/Nihad,46738,970213,5 +132364,Angelina,209244,51975,3 +132365,Market Owner,44415,146337,9 +132366,Local Newscaster #1,245703,1609623,25 +132367,2. Pretty Boy,9252,1596415,15 +132368,School Band Member,10748,561257,31 +132369,Joo-hee,214209,1077269,1 +132370,Dog Boy,27381,68167,16 +132371,Ms. Hopkins,347630,1695631,17 +132372,Ben Phillips Jr.,293452,429,3 +132373,Ambassador Mosby,52314,145754,4 +132374,,293270,1320732,3 +132375,Ingrid,62838,1160,14 +132376,Minor Role,120657,948509,11 +132377,Ambulance Attendant,30941,1196053,43 +132378,Todd,22007,78659,3 +132379,Captain,94811,13969,7 +132380,Curtis,25038,37822,4 +132381,Purvis,10087,63140,17 +132382,Kostya,63291,929599,5 +132383,Leah Shade,134394,25414,1 +132384,,349441,584198,7 +132385,James,253286,1293656,2 +132386,1st Hardman,32577,1426334,23 +132387,Barney,31913,175008,18 +132388,August,344039,12978,6 +132389,Vater,26642,19752,1 +132390,Il Boss,378570,4808,3 +132391,Le père,136582,44234,7 +132392,Tony,15356,1128104,13 +132393,Party Attendee,285270,1367904,10 +132394,Manuel(7 years old),469172,1862602,1 +132395,Leschenhaut,4930,40,2 +132396,Bernard D. Elf,238302,7060,0 +132397,Slave Girl,1271,1330773,69 +132398,Uncle Joe,43075,8519,7 +132399,Layne Abeley,34482,120617,11 +132400,Greg,228970,114000,8 +132401,Mr. Abner,44562,4976,0 +132402,Tommy Lawson,43497,1229203,3 +132403,Oréus Mailhot,16147,38526,4 +132404,Juror,27717,1529060,11 +132405,Brownie,41599,3679,5 +132406,Trent Friend,38322,1677587,44 +132407,Chun-mi Kim,21966,1408881,17 +132408,Nathaniel Zib,264646,31903,2 +132409,Kay Greylek,37911,5729,1 +132410,Councillor,17725,1828513,26 +132411,On Camera Musician,198277,1424214,43 +132412,Ray Bennett,58918,418,0 +132413,Math Professor,381008,1589610,23 +132414,Doctor in Baghdad,424488,1129399,48 +132415,Signora Buzzi,77000,1851061,18 +132416,Alexander / Driver (voice),23566,84490,15 +132417,Saori,11838,552513,20 +132418,Winslow Wynn,200324,137402,5 +132419,Ulysses,104674,2758,1 +132420,เอ,184219,1167606,2 +132421,Kid,174751,1505458,10 +132422,Butch Cavendish,57201,886,2 +132423,Beatka,10754,66478,17 +132424,Frank,408616,1034702,11 +132425,Jeanette,11328,1254379,18 +132426,Maud Watts,245168,36662,0 +132427,Sheriff Orville,63317,14253,3 +132428,Dr. Wilcox,100024,74423,1 +132429,Stash,15022,21735,9 +132430,Signe Fred,41076,565184,7 +132431,John Shepherd,326045,13022,1 +132432,Reporter,26376,1673505,73 +132433,Kui (as Yiu Cheung Lai),24916,123654,3 +132434,Narrator (voice),333372,549037,1 +132435,Steven,271718,56446,8 +132436,Holler Man,41505,82858,11 +132437,Maya,302036,1384004,2 +132438,Clarinettist,245700,1205278,41 +132439,Lisa,40252,1381828,4 +132440,Бухгалтерша,46187,937667,5 +132441,"(segment ""Chawan no naka"")",30959,226742,72 +132442,Laughing Girl,82654,164860,15 +132443,Leone Merrick,126418,103498,4 +132444,Woman #2,327389,1191706,17 +132445,Surveyor,197737,1237210,40 +132446,Grand Duke Michael,120831,262394,4 +132447,Bergen,86647,35045,8 +132448,Jung-mi,132957,1254424,5 +132449,Mite-no-Tetsu,52728,1106079,4 +132450,Mary Lane,297853,1790453,30 +132451,Mental patient (laughing),11205,116906,8 +132452,Bar Patron,352498,1536926,13 +132453,Upstairs Beehive Man,107985,1278137,49 +132454,Matron,23107,121208,16 +132455,Staquet,2786,23701,13 +132456,Little League Announcer,232672,1202534,23 +132457,Police Superintendent,28533,101102,5 +132458,Deputy Karl,131689,154331,5 +132459,Depot Supervisor,9828,56358,14 +132460,Connie,284537,31507,12 +132461,Casper,377691,76555,1 +132462,Mia,46420,136347,1 +132463,,198511,1649916,8 +132464,Peanut,5123,1781835,46 +132465,Comic Con Attendee (uncredited),214756,1759665,84 +132466,President Richard Nixon,127585,7013,28 +132467,,197057,124757,2 +132468,Jean Jacket,9828,8767,0 +132469,Fabius Maximus,113743,3361,2 +132470,Furniture Store Manager,55433,222379,12 +132471,Prince Karl (singing voice),68191,232024,11 +132472,Dr. Brian Newmeyer,44661,1067,6 +132473,Rachel Turner,11364,1589479,11 +132474,Jim the photographer,31118,1066934,7 +132475,Patrick Gaffney,331313,1739696,12 +132476,David Lattimer,69898,157404,5 +132477,Ahmed,56807,225007,1 +132478,Carlson Hotel Bellhop,25807,133436,8 +132479,El Monstruo,210653,102304,9 +132480,,63376,113810,6 +132481,Russell Hughes (uncredited),15794,94400,41 +132482,Shô (voice),51739,225730,1 +132483,Himself,9951,1692548,21 +132484,Dr. Trey Campbell,206183,41687,2 +132485,La belle invitée (uncredited),51971,1730830,17 +132486,Gravedigger,10918,134908,28 +132487,Madame Lacalles,178341,103490,10 +132488,Old Amos (voice),336029,562949,8 +132489,Vince,37269,51750,1 +132490,,257831,23357,17 +132491,Tran,9993,61638,13 +132492,Tony Salerno,51209,7004,14 +132493,Chief of Police,73027,14015,3 +132494,Herself,53367,147980,4 +132495,"Helen, the Maid",74525,94114,11 +132496,Head Monk,14207,2249,10 +132497,Benzinaio,10986,129635,6 +132498,LeRoy Mason,53781,89010,3 +132499,,321779,107942,2 +132500,Spectator - Sullivan Fight (uncredited),43522,103932,73 +132501,Private Hailey Hamamori,15616,35467,5 +132502,Himself,16203,79981,0 +132503,Sasaki,134350,45992,6 +132504,Bunny,333663,43596,13 +132505,Mrs. Drake,16234,102734,19 +132506,Al Olsen,262528,134863,7 +132507,Sangaile's Mamos Drauge,310568,1203628,5 +132508,Lord Peter Willens,46586,85348,4 +132509,Gay,281215,53011,13 +132510,Marian Sykes / Angel Cupid,397837,1677354,17 +132511,Cordelia,134155,1391610,2 +132512,Parker Wyndham,34766,28416,4 +132513,Representative,4279,11216,6 +132514,Gali (voice),176983,934840,27 +132515,Biker Baldy,4291,36077,7 +132516,Edna,73348,153490,16 +132517,Hank,30708,4316,14 +132518,JP,123634,1078404,1 +132519,Remi Vogel,241927,1098732,6 +132520,Businessman in 'Carmen',47959,554601,21 +132521,Sir Oliver French,89086,33698,11 +132522,Lt. Stockwell,35001,95009,8 +132523,Tony Miranne,274479,25616,4 +132524,Bejby,74199,1247353,4 +132525,,441728,72305,4 +132526,James,413762,1376078,2 +132527,Shane Hawkins,107985,17123,40 +132528,Lieutenant De Rosa,38162,105089,7 +132529,Barbara,225044,23959,1 +132530,Pauline French,122221,39783,1 +132531,Helenka,84030,77430,21 +132532,Prince Semyon,74436,87546,4 +132533,Jalil,64850,82925,2 +132534,Prince Rajanya Paikparra Munsingh,184267,1004060,4 +132535,Brijesh,276935,1640728,7 +132536,Young Carla,85265,1215111,11 +132537,Friedrichs Anwalt,3037,147634,11 +132538,Miho,189,78324,18 +132539,Mr. Lebreaux,18208,17490,10 +132540,Wall-Enberg,37731,134376,5 +132541,Brendan,62838,8171,23 +132542,Mrs. Bradley,70436,11213,7 +132543,Passerby,335970,175630,31 +132544,Carol Fancy,12796,83129,4 +132545,Blakely,17577,5538,1 +132546,Oilman in New York,55604,103501,55 +132547,Stage Actor Joyce,2771,28640,8 +132548,Desk Clerk,413232,474632,39 +132549,Beardo,71670,150673,13 +132550,Beth,59231,950832,7 +132551,Chi Ta Po,186881,244430,0 +132552,Bimeter,43692,584084,6 +132553,Bonnie,213121,1096415,7 +132554,Sergeant of Police,94182,104806,18 +132555,Martineau,35908,114925,4 +132556,Soccer Pal Diana,9779,59180,14 +132557,Marsham,42852,127024,8 +132558,Hanif,174487,5471,0 +132559,Dottor Bissanti,42674,1839537,17 +132560,Karin,82708,1828321,13 +132561,Benjamin,65496,64751,1 +132562,Christopher Columbus,259593,14979,8 +132563,Dr. Clare Wyatt,30640,88460,1 +132564,Cardigan,21250,131157,9 +132565,Vanessa,101325,219174,4 +132566,Advocate Dhingra,20742,35780,0 +132567,,284053,7624,28 +132568,,145244,1187778,13 +132569,Don Davies,45377,2077,1 +132570,Inka,63938,16777,3 +132571,Grandfather Pigo [ピゴ] (voice),56391,86752,11 +132572,Sheriff Parker,46193,2097,5 +132573,Frey Sokol,58251,227567,2 +132574,Mrs. O'Brien,37929,119131,2 +132575,Helga Hornung,103396,23344,1 +132576,Conrad,323679,123512,2 +132577,Headmistress,29161,29918,12 +132578,Don Miller - One of The Four Horsemen,43812,96716,14 +132579,Himself,100247,1142371,2 +132580,Iggy,3144,30754,4 +132581,Doctor,26644,1422627,5 +132582,Amanda McCord,2397,24518,2 +132583,,358901,1677140,3 +132584,Rabal,82350,1044225,11 +132585,Balram,125727,1323233,3 +132586,Homer,57201,59847,33 +132587,Nurse,29101,1515927,19 +132588,Geoffrey McAllan,29705,108680,9 +132589,Father (voice),77762,935193,5 +132590,Woman at Door,18072,177594,24 +132591,Chamseddine,46738,130022,15 +132592,George Brasno,38769,120812,12 +132593,Serpent,64304,240040,9 +132594,Doctor,438634,1589574,10 +132595,Lumberjack,113148,1173620,6 +132596,Betty Rubble (voice),48874,88622,2 +132597,Martine,16374,80472,2 +132598,,42441,1871507,19 +132599,Fernando Robles,32546,17094,0 +132600,Pietro,175334,1356923,4 +132601,Der Samurai,254007,115421,2 +132602,Mrs. Thomas,14660,78199,6 +132603,Emily (Segment 6),244117,3019,0 +132604,Carlo Bernini,369245,7541,2 +132605,Tony Cerillo,301729,1821758,8 +132606,Kyle,251227,1111108,18 +132607,Bread Salesman,49220,590863,14 +132608,,38164,16314,6 +132609,Horse Race Bit (uncredited),45800,122984,17 +132610,Takuan,31372,108019,3 +132611,Mary Valdi,48846,106639,2 +132612,John Sanders,22450,38560,0 +132613,Constable John Gray,73772,17202,5 +132614,Cesar Tan,137321,79072,8 +132615,Le voisin excentrique,366566,7275,9 +132616,,62363,55620,12 +132617,Caven (uncredited),86643,107002,13 +132618,Captain Phineas J. Tucker,3563,707,3 +132619,,380124,1224954,18 +132620,Norio Kawajiri,31512,46691,3 +132621,,211233,226030,3 +132622,Iris,89751,98459,1 +132623,,57983,235666,2 +132624,Deputy Marshal Cochran,147829,131003,45 +132625,Reporter,33541,101181,27 +132626,Yoshito Nagumo,124597,1080279,0 +132627,Punker Ghoul (as Steve Donmeyer),38134,1286725,9 +132628,Cory Foster,40087,81895,2 +132629,William Barstow,226354,10727,7 +132630,Mr. Stuart,37311,5737,13 +132631,Ingrid Asch,19430,1057866,5 +132632,Himself,324173,7167,13 +132633,Lillian,189,1406570,28 +132634,Himself - at Banquet (archive footage) (uncredited),33740,13994,67 +132635,Little Mike,334527,1865497,12 +132636,Himself,164558,1052109,0 +132637,,267977,225578,6 +132638,knížepán,82716,592076,4 +132639,Giles,362439,1149597,2 +132640,Police Secretary,9828,1021808,22 +132641,Denise,42684,128629,5 +132642,,11196,1444539,17 +132643,Sam,313922,61178,2 +132644,Alice Reed,17136,7639,1 +132645,,353533,1640551,20 +132646,Sandy,23516,239581,2 +132647,Simone,79048,83847,4 +132648,Power Plant Security,177677,1483038,58 +132649,Fred G. Duncan,3563,10182,4 +132650,T.B.,27973,89750,11 +132651,Mrs. Byrne,167073,1233821,26 +132652,Becky,210910,1194703,3 +132653,Tante Mietzel,12696,15124,7 +132654,Mother Dog,14405,15761,12 +132655,Yolanda,354979,1636760,15 +132656,Husband,44690,156869,13 +132657,Shawn,76757,1383511,39 +132658,Pitbull,8882,1882933,15 +132659,Party Cop #2,258509,1278911,23 +132660,Toma,28323,161149,3 +132661,Bartol,259728,1156502,13 +132662,Charles Bates,148615,12422,1 +132663,Sarge,46773,1508265,6 +132664,Simon Darre,57438,47177,25 +132665,Principal Conway,102382,1657460,32 +132666,1st Kid,23367,20816,34 +132667,Tyler,2687,26993,8 +132668,Allison,378018,168610,1 +132669,Karl Jackson,214756,78789,24 +132670,Griffin (voice),159824,60950,5 +132671,Elevator Mexican #1,325173,1452087,21 +132672,Yôko Godai / Saki Asamiya II / Sukeban Deka II,45489,554498,5 +132673,Andy,23830,56675,6 +132674,Nancy,375742,1564284,11 +132675,Village Girl,98644,1029128,10 +132676,George,48775,1171055,1 +132677,Parthy Hawks,17820,11025,7 +132678,Mallock the Malign (voice),33427,110634,5 +132679,Tan Tjin Han,39061,1355497,4 +132680,Denise,9966,14698,2 +132681,Ruby Montgomery,33557,4784,0 +132682,Bunzo Sasahara,27031,96800,3 +132683,Danny Trejo,145220,11160,20 +132684,Shannon,96936,18662,11 +132685,Sa-pa-mi engineer,45098,1311148,3 +132686,Aran,15712,1890115,22 +132687,Detective,30361,32543,21 +132688,,137072,55364,3 +132689,Skip Jones (voice),13355,83414,2 +132690,Karim,446345,1774373,2 +132691,Falcão,40859,213617,5 +132692,,17985,1439597,19 +132693,Kirilin,204802,1337143,4 +132694,Joe,27886,145168,4 +132695,Paul,168031,10610,3 +132696,Young Gorcík,19765,1529145,10 +132697,Bag Lady,45013,1818013,22 +132698,Rommel,85651,36152,1 +132699,Sally,28026,99406,3 +132700,Lo Tinto,42641,115770,6 +132701,Phillip Winter,390,5266,0 +132702,Schuman,4441,37289,6 +132703,Manuel,9753,58970,2 +132704,Nuna,54514,228265,5 +132705,"Frankie J, Bandleader",121636,1016551,9 +132706,Himself,157117,78300,15 +132707,"Jean, the soldier",151068,1337144,8 +132708,Debraj Sahai,31977,35780,0 +132709,Princess Carolyne Wittgenstein,129553,14262,1 +132710,American Native Indian,240832,1426919,57 +132711,Nana,34806,113223,9 +132712,Go Go Dancer,77930,1633358,43 +132713,Annika Giannini,15472,79270,16 +132714,Pete,31548,25176,13 +132715,начальник РОВД,335819,52761,9 +132716,Bart Hodges,111470,13558,19 +132717,George,24777,124244,2 +132718,,38164,126975,5 +132719,VIP Guest,308529,1748388,7 +132720,Hans Hubermann,203833,118,0 +132721,Dr. Robert MacPhail,44140,40203,3 +132722,Babban Hussain,248698,85889,2 +132723,Tammy,4960,1639,5 +132724,"Mr. Kaga, foodstore owner",111398,1121628,10 +132725,Handcuffed Man,9828,23958,5 +132726,Man in Top Hat,53406,89615,3 +132727,Siru Miettinen,408203,1419363,2 +132728,Tom (Voice),14787,34982,0 +132729,Uncle Lu,95919,69830,9 +132730,Little Alva,31867,211937,8 +132731,,91261,86676,1 +132732,Iso-Antti,80472,148385,2 +132733,Tracy,10011,62000,11 +132734,Girl with Zolotov,61109,148533,19 +132735,,222517,1207946,25 +132736,Dewey Roberts as a boy,56558,30277,5 +132737,Rose Brentmann,46189,30558,12 +132738,Young Emma,10521,1337521,12 +132739,Brigadier Shekhar Sharma,14134,6497,5 +132740,Kamal,266373,4305,6 +132741,Gary,74430,160905,1 +132742,Zack Barnes,52741,44990,1 +132743,John Taylor,226968,1242112,1 +132744,SGT. Simmons,68387,106979,21 +132745,Banger,263115,1821500,57 +132746,Kim Ulander,54022,4690,1 +132747,Man #2,26358,95235,11 +132748,Jury Foreman,26376,119542,38 +132749,James Sveck,93676,116606,0 +132750,Paolo Casalotti,38310,27433,0 +132751,Dr. Susan Bonnert,55922,1378565,14 +132752,Tim O'Rourke (uncredited),33025,30496,11 +132753,Kadir Barachi,90231,544098,10 +132754,Stagehand (uncredited),53419,21310,10 +132755,(voice),16137,79556,11 +132756,Medusa,32657,139,12 +132757,Mário,194853,130036,16 +132758,Dalton,244580,68122,6 +132759,Eugene - Waiter,40957,86371,15 +132760,Uncle,121462,1420968,10 +132761,Chad Brown,17306,180110,4 +132762,Grandfather,229182,8949,4 +132763,Adam Lemp,124115,4113,4 +132764,Military Brass,279096,1380095,10 +132765,Texas Rancher (uncredited),75315,1198883,18 +132766,Pvt. Goro,43407,129509,8 +132767,Office Boy,34588,1839771,30 +132768,Clancy,65787,7684,3 +132769,Clerk,260001,979412,18 +132770,Klaus Meisner,347945,11086,5 +132771,Himself,198308,17835,0 +132772,Himself,61487,15425,7 +132773,"Bertrand, l'ingénieur du son",109261,93531,5 +132774,Rhombus,15073,92428,3 +132775,Masht Hassan,43984,931289,0 +132776,Jerry McGinnis (uncredited),86360,55278,5 +132777,Marie,45949,238262,3 +132778,Gloria,317557,1683153,9 +132779,Angry Lesbian,31821,574105,3 +132780,Sgt. Vincent Degetau,14878,62095,2 +132781,Karen Novotny,65456,543508,1 +132782,Bruce the Bear (voice),38317,62066,14 +132783,Helicopter Pilot,10488,33182,18 +132784,Bettina Ralton,287391,3830,1 +132785,Julie Keefer,45215,10606,2 +132786,Angus,37254,17328,0 +132787,Joe Wilson,14615,12147,1 +132788,Donald Odegard,21627,1173316,9 +132789,Bearded Russian,4551,113008,36 +132790,Trevor,9958,107555,11 +132791,Arnault Delahaye,72822,583494,7 +132792,Lapin,142770,560102,2 +132793,Lydia,83059,929132,0 +132794,Sairaanhoitaja,101838,1029099,28 +132795,Yip Koo Shing,37702,956575,15 +132796,Dance Instructor,38322,42743,3 +132797,Pall Bearer,71503,563110,32 +132798,Soldier,1724,1366363,38 +132799,Ambulance Corps Commanding Officer (uncredited),103938,33698,18 +132800,Mrs. Monrell,31324,83260,3 +132801,Blofeld's London Helicopter Pilot,206647,1599241,20 +132802,Himself,43065,4600,2 +132803,Mrs. Ruth Connors,125736,1112942,27 +132804,Nicole,270851,1003801,4 +132805,John,179812,108037,8 +132806,Stacy,343284,1682328,5 +132807,Big Mama,18899,1139049,7 +132808,Hunter,66881,549060,13 +132809,Jack Winters,324930,1500691,7 +132810,Meg Foster,15090,77868,3 +132811,Dr. Maggie Sorenson,30374,74155,1 +132812,,327231,1027724,14 +132813,Roz Harmison,9815,58016,2 +132814,Phil,374614,1475818,9 +132815,Red,111302,1619147,5 +132816,Juana,264729,1439853,16 +132817,Two Fingers (voice),10198,1340669,15 +132818,Sam's Wife,49642,142601,4 +132819,Himself,72711,1147926,2 +132820,Truck Driver,127812,120443,28 +132821,,29568,1350847,6 +132822,Captain Keller,1163,11064,2 +132823,Frank V. Bailie,90461,89527,5 +132824,,252845,95091,10 +132825,Mother,53417,21314,5 +132826,Raphael,9956,85,0 +132827,Angel,156981,1138215,2 +132828,The Man,105539,100244,4 +132829,Edward Soriano,98203,1493027,19 +132830,Junket,921,116081,57 +132831,Narrator,10946,8198,4 +132832,Peter Manning,33224,9111,1 +132833,Jef Costello,5511,15135,0 +132834,Jean-Michel Varenne,348025,17896,5 +132835,Pierre Malaquet,62675,24501,0 +132836,Elmer Laydon - One of The Four Horsemn,43812,120704,13 +132837,The Gardener,178927,930678,12 +132838,Camera Guy,391757,1602211,10 +132839,Dorothy Prentice,53864,103015,8 +132840,Milovan Jaksic 'Jaksa',255647,1050848,19 +132841,Postman Delivering Pigeons,109716,1171424,70 +132842,Cheer Coach,4688,1229623,12 +132843,Pat Poker,35026,24832,4 +132844,Rachel,206284,1196539,5 +132845,Soldier 2,434873,1879712,10 +132846,Asad-ed-Din - Basha of Algiers,50329,108103,13 +132847,Shane,16313,111482,0 +132848,Night receptionist,2009,114159,10 +132849,Nebraska,121230,19414,7 +132850,Attorney General,169298,1333918,17 +132851,DJ,142989,1118148,5 +132852,Kim Baker,11007,148615,9 +132853,Dentist,182127,1440321,23 +132854,Seaman Fred Johnson,53949,148602,14 +132855,Bill,13561,1316525,6 +132856,Sead Mulahasanović - Sid,152861,77608,0 +132857,Captain Jonathan Clark,74436,8487,0 +132858,Michael,82191,593170,9 +132859,Jason Mountolive,42215,11282,3 +132860,Menina 1,248543,1181799,12 +132861,La mère de Sullivan,82327,1052246,5 +132862,Phil Winter,2204,5266,0 +132863,Kristi,52736,106798,1 +132864,Kolya,38332,142499,0 +132865,Hispanic Thug,354979,1835284,66 +132866,Frank Valente,84655,5401,1 +132867,Father Mark Campbell,417406,27737,1 +132868,Cheesie,231540,5201,4 +132869,Pedro,1969,48136,8 +132870,Bobbi Prescott,10900,4441,2 +132871,Policeman (uncredited),15794,1213157,26 +132872,Bert Melville,108222,80649,18 +132873,Punk Employee,214129,1611028,21 +132874,Klaus,13305,77435,7 +132875,,336549,115541,4 +132876,,297298,592119,5 +132877,Paul Manning,4932,6837,0 +132878,Nightclub Patron (uncredited),27035,121323,11 +132879,Terry Jeffries,64191,2167,6 +132880,Kid,336811,583853,1 +132881,Stray Dog,68737,219303,28 +132882,Radio Technician,53851,120701,16 +132883,Knacker,99229,592769,10 +132884,Inspector,277713,79648,4 +132885,Gas station attendant,145247,1314275,16 +132886,,296491,37748,11 +132887,Nicolas,89560,1066144,4 +132888,Louis,92424,65569,0 +132889,Hungry,375366,1886284,32 +132890,T.J.,39129,74354,3 +132891,Claudia,26962,1320767,7 +132892,Film buff Charley,45649,1246891,7 +132893,Mrs. Casey,200727,78285,24 +132894,"Senator John Russell, Sr.",1247,245,6 +132895,Tris,12182,4433,3 +132896,Christian Bodin,44937,131766,1 +132897,курортница-театралка,63300,1190646,3 +132898,Nick Jones,10066,62747,4 +132899,Max Herman,147876,9084,6 +132900,,361380,1532533,8 +132901,Ryan Edward Turner,26014,6952,0 +132902,Father,44510,1839352,3 +132903,,333367,38560,9 +132904,Farmhand (as 'Buster' Keaton),51357,8635,0 +132905,Takushî no Untenshu,36917,96049,5 +132906,Janet Morello,146243,67837,0 +132907,Monkey,182127,63581,38 +132908,Frankie Fiorello,167073,1455758,17 +132909,Paula,6877,520,1 +132910,Dr. Hamilcar Barcas (voice),197854,57735,13 +132911,,33009,58478,9 +132912,Priya,368006,225388,3 +132913,Narrator (voice),36129,87001,2 +132914,Mary,56151,7381,7 +132915,Wayne,294652,92714,24 +132916,A Prospective Tenant,36519,29601,6 +132917,,185987,237157,17 +132918,Master Wong Sam-tai,45197,1700384,5 +132919,Jackie,4413,37158,17 +132920,Taub,369697,2694,9 +132921,Woman,43514,1472993,15 +132922,Lu Hsiao-ni,95919,126716,3 +132923,The Little Lady's Mother,42553,128163,2 +132924,Menelaus,47446,2264,4 +132925,John - Factory Watchman,43833,584082,18 +132926,Roo (voice),14885,90453,10 +132927,Mr. Birkenshaw,290379,145838,7 +132928,Himself,24235,2294,2 +132929,Michelle,405050,152486,2 +132930,Dr. Martin Blake,65650,114,0 +132931,Jimmie Williams,156335,67370,4 +132932,Eerste moeder,58396,228517,9 +132933,Teacher,85265,1501618,23 +132934,Marianne,377290,1643044,26 +132935,Jocquin,167424,110364,6 +132936,Kayo Horikoshi (voice),149870,227611,2 +132937,Grandma,358353,1145730,8 +132938,High School Student (uncredited),302699,1754501,38 +132939,Le Marchand De Tableau,37189,28255,3 +132940,Vyvyan Alistair Montague,62143,249,14 +132941,Jacobo,11024,1462,6 +132942,Rupert 9v,40864,124868,4 +132943,Nupelda,271954,1259583,4 +132944,Ein Polizeikommissär,206237,48039,2 +132945,Izumi Shinichi,282070,1018944,1 +132946,Widow Nanini,62397,1598604,4 +132947,Mark Allen,197583,71198,1 +132948,Roger,73313,99754,9 +132949,Commissar Yevstryukov,83444,8475,2 +132950,Boltun,19277,1179787,5 +132951,Father,154442,551781,1 +132952,Joan,32395,49971,11 +132953,Prisoner (voice),38055,1454420,13 +132954,Green Snake / Qing Qing,75948,64434,4 +132955,Dr. Stumpfegger,613,234536,31 +132956,"Kimball, Rod (voice)",80089,1781150,1 +132957,Tomonojo,168994,134321,2 +132958,Doctor,179603,1274076,11 +132959,Ernest Graeber,186584,8544,6 +132960,Village Dad (uncredited),1726,1096679,76 +132961,Cecily,126934,1077900,8 +132962,Nadine Chevalier,3476,6250,0 +132963,Benjamin Keynes,14878,82124,0 +132964,J.J.,10265,21911,1 +132965,Tourist,1164,1317410,27 +132966,Herself,142168,4687,0 +132967,Expensive Car Guy,193893,1381725,70 +132968,Backup Singer,4551,1680747,42 +132969,Mr. Granek,42231,104944,8 +132970,Robert Danvers,42599,12446,0 +132971,Un joueur de poker,5511,54395,23 +132972,Max,312669,1607562,11 +132973,Hamir (voice),9904,60232,12 +132974,Ruth Taylor,42683,93698,3 +132975,Serveur restaurant,121539,1759914,8 +132976,Drunk Superhero,405473,1800035,31 +132977,Jules,49559,257627,4 +132978,Dilek,336804,1481837,8 +132979,Škrga,341559,487490,5 +132980,UK Additional Muppet Performer (voice),145220,1504918,58 +132981,la madre di Paolo,38328,1657583,11 +132982,Père Rockeur - Roberto,26566,123921,9 +132983,Huang,45935,12462,6 +132984,Le capitaine du guet,126958,140352,11 +132985,Suzanne,62978,236547,4 +132986,Sammy Benson,55638,116446,0 +132987,Man loading drum onto ship,274325,1577109,14 +132988,Paul Linden,43092,91617,0 +132989,Danielle,92391,1071125,4 +132990,Brigitte,18955,49168,6 +132991,Carl Holt,46421,1214133,4 +132992,Mambino,31397,1295,8 +132993,,44238,1055117,3 +132994,Joe,294254,1112417,15 +132995,Donny De Bona,296456,25311,5 +132996,Kalle,73099,568088,13 +132997,Joe Wayman,153163,32430,4 +132998,Ivan's mother,70966,99291,3 +132999,AMW Host,15935,78961,16 +133000,HM The Queen Mother,1165,15736,3 +133001,Tussan Lyyti,286267,1352109,6 +133002,,332354,1444927,9 +133003,"Madeleine, Joyce's Maid",106635,1176931,11 +133004,Unfeeling Woman (uncredited),14301,1738932,9 +133005,Francine,110160,79613,22 +133006,Simon Foster,12617,274679,12 +133007,Jack Durant,6163,1954,4 +133008,Marylou / LuAnne Henderson,83770,37917,2 +133009,Pete Prindle,172443,109088,0 +133010,Von Dorn,74911,80621,2 +133011,Warren,49787,109439,4 +133012,L'employé du zoo,85429,57559,8 +133013,Geronimo,85651,299276,11 +133014,Additional Voices (voice),82703,217777,35 +133015,Cesca Giggles,12279,3136,5 +133016,Edgar Hirsthwit,77949,947789,27 +133017,Captain Aditya Arya,196852,52263,0 +133018,Yona,125623,1878926,12 +133019,Mann in Zivil,82157,22379,7 +133020,Viktoria,9639,14638,5 +133021,Laurie,196235,12851,1 +133022,Ashley Harrison,369052,43928,1 +133023,Party Guest,157898,88462,33 +133024,Catherine,269795,29097,6 +133025,"Juliette, dite ""La fleur""",78377,24931,1 +133026,Dr. Morris,78383,21624,3 +133027,Shankar,49028,110707,3 +133028,Klaire,235662,108696,2 +133029,Mulang,10703,96959,10 +133030,Diner Cook (voice),1273,19303,3 +133031,Cal,97051,202958,8 +133032,Stjarnblom,377290,92579,14 +133033,"Uma Futori, the priestess daughter",50696,136880,5 +133034,Penrod,285,1056117,29 +133035,Yvonne,190955,933271,11 +133036,La vedova Warren,46567,1008487,8 +133037,Carol Medford,6069,49822,9 +133038,Fleur 10 ans,12169,146080,16 +133039,,56599,34375,12 +133040,Carmichael,80320,19968,7 +133041,Psychiatrist,325302,1622142,4 +133042,Lead Goon,66925,564331,15 +133043,M.C.,1125,181080,11 +133044,Rudolph Tyner,48841,87118,3 +133045,Deathstroke (voice),396330,31531,5 +133046,,56942,1356547,15 +133047,Hwa-yeon,257331,140335,3 +133048,Jane Avril,10910,44715,2 +133049,Zelgadis Graywords,125513,122726,3 +133050,Mutter Pelzer,83729,68368,19 +133051,Ghost,225283,1209239,5 +133052,Germain Lesage,41277,46275,0 +133053,Conway (pilot),18569,8521,4 +133054,Martin Wittman,48118,25723,12 +133055,Chad Penrod,21029,16180,7 +133056,Adam Johnson,151043,20156,1 +133057,Motome Chijiiwa,14537,76977,3 +133058,"Lord Nicholas ""Nick"" Dorset",91583,2076,2 +133059,Dowager,42989,144361,11 +133060,"Lena, girl in Holland",110887,1527309,12 +133061,Mr. Pumblechook,121674,80536,8 +133062,,47190,1663170,9 +133063,Taylor Brooks,10594,17774,0 +133064,Eduviges Diada,198795,975199,7 +133065,Betty,78177,571251,24 +133066,Bernhard,142712,1326316,8 +133067,Chief Insp. Sam Mok,19528,236076,13 +133068,,5165,1184831,16 +133069,Mrs. Clack,6947,1956,6 +133070,Judge Janovich,268321,91495,8 +133071,Razvan - Caver,9042,1178619,12 +133072,Masafumi Umezawa,294651,58675,3 +133073,Seizo Hayashi,20530,131020,11 +133074,Ignacio,47959,1426038,33 +133075,Django,126415,22383,0 +133076,Himself,61487,545113,3 +133077,,41416,126716,0 +133078,Hans Brandt,29043,102672,2 +133079,Sgt. Anderson,10841,2536,4 +133080,Regina,75623,500085,5 +133081,Ship's Officer Bringing Serum,176627,977837,32 +133082,Dr. Ouélet,315837,1137,4 +133083,Ben Foster,382589,11107,6 +133084,Clementine,14047,60387,29 +133085,Himself,241170,12640,2 +133086,Juror,339994,1593375,30 +133087,Sullivan,82327,6082,1 +133088,Flight Attendant,340488,70785,4 +133089,Brenda Gray,86186,195895,7 +133090,Manoj,97683,1102513,5 +133091,Prison Camp Commander (uncredited),16442,89733,92 +133092,David,340215,1630256,2 +133093,,391778,53377,11 +133094,Bruce,15189,60255,1 +133095,Chizu Yamauchi,55197,131016,6 +133096,Heidi,63360,236985,14 +133097,Avv. Antonio Bellocampo,101231,2091,2 +133098,Nadina Kalenin,81030,88460,2 +133099,,96985,1297978,4 +133100,Millie,109453,4038,2 +133101,James,51999,1125,2 +133102,Graham Ives,125409,7791,2 +133103,Blinde Christian,128900,142906,15 +133104,FBI Agent Killbourne,5172,9629,5 +133105,Blahka,14423,1129883,11 +133106,Goro Sawada,141819,25648,3 +133107,Альбина Петровна,63300,86668,2 +133108,Mister Baby / Zookeeper / Additional Voices (voice),52264,1449407,19 +133109,The Commissioner,37628,31882,10 +133110,Bob Swanson Sr,13075,8350,5 +133111,Zach,17483,61256,0 +133112,Demetrius,182129,29069,4 +133113,Mona,6145,35028,10 +133114,Detective (as C.L. Lefleur),89659,54564,4 +133115,Tetsuya,382170,134844,4 +133116,Peter,140846,14886,6 +133117,News Anchorman,2976,1752316,24 +133118,Volunteer: Joey,447758,1379277,6 +133119,Navy Captain,37254,86566,13 +133120,Otets Igorya,252034,99269,9 +133121,Talmudiste,393407,6020,7 +133122,Dr. Houchins,343795,169588,14 +133123,Gorman,62761,217123,9 +133124,Swaminathan,134474,930730,2 +133125,Pistachio,37645,51508,5 +133126,Ursula Weber,88176,26835,5 +133127,Raghuvaran's Son-Zamindar,66247,237629,2 +133128,Eleanor Dare,348544,1104751,4 +133129,Fürst Ramigani,71041,50544,6 +133130,,58570,137143,5 +133131,Inspector Regan,28044,33855,4 +133132,Viscount Gilbert de Varèze,31532,2436,2 +133133,Helen Rogers,28115,93718,1 +133134,Helen Dawson Frye,91181,19021,5 +133135,Robert Mideau (le Cave),59434,32100,3 +133136,Father Umbrillo,16135,6818,4 +133137,Bus Passenger,268920,1755077,86 +133138,Himself,95756,231473,3 +133139,Pete,145135,1236010,22 +133140,Agnieszka,154575,589272,2 +133141,Billy the Butler,27501,97983,8 +133142,Skip,167810,1793171,15 +133143,Austrian Scientist,2966,1521626,18 +133144,Gibson,24709,1058619,6 +133145,Alfred Pennyworth,209112,16940,6 +133146,Max Seigel,185291,240772,6 +133147,,15776,14110,15 +133148,Albert,64239,24629,2 +133149,Vishakha,303281,146957,3 +133150,Caps,19342,20959,2 +133151,Margarethe Simon,215740,28453,3 +133152,Maggie O'Hara,52203,1023942,9 +133153,Аня,20963,86869,7 +133154,Himself (archive footage),390296,1700432,1 +133155,Pretty Boy Gleason,184328,27035,7 +133156,Student,8272,35028,18 +133157,Carla,456781,942827,17 +133158,Mrs. Ortega,227700,1034509,18 +133159,Sy,359471,1103625,9 +133160,Chester Lamb,95140,175206,1 +133161,Ryo,13391,9705,5 +133162,Helena Domenico,20003,85449,7 +133163,Johnny Crackow,72096,6396,15 +133164,Judah,24272,140579,18 +133165,Chaflan,184341,59129,10 +133166,Kate,356842,11291,0 +133167,Waitress,167810,1083168,38 +133168,Bus Barker,157898,1198701,36 +133169,Policeman #2,29923,6763,9 +133170,Charles Regnier,4266,28150,2 +133171,"Maj. Eric Coulter, MD",43241,85774,3 +133172,Julian,395883,137426,3 +133173,Eva Ståhlgren,141267,104976,11 +133174,Gosia,74921,83264,1 +133175,,90351,120348,11 +133176,,96106,1281106,22 +133177,Federal Agent,11338,16294,15 +133178,Vladica,148034,1043210,7 +133179,Dr. Petry,73194,8519,13 +133180,Officer Belome,169298,484993,21 +133181,Papa,9956,7862,10 +133182,moglie del giudice Parenti,43649,100410,9 +133183,,84823,1620095,11 +133184,Arsene Lupin,171594,108991,0 +133185,Mr. Greville,45938,39952,5 +133186,Nong Jinsun,7549,52899,2 +133187,Sister,165718,1276790,2 +133188,David,323929,204904,3 +133189,Franklin Birch,146233,18288,6 +133190,,52560,146220,3 +133191,Teenage Girl,268920,1209709,61 +133192,6th Sister,64304,238978,17 +133193,Lois Grant,26801,96287,1 +133194,Young Jonathan Blake,81687,80567,0 +133195,Airport Operations Manager,18569,124855,22 +133196,Claire,242224,220442,3 +133197,Teddy,333484,56680,10 +133198,Herself,114577,1059016,3 +133199,Marina Rodrigues,130900,137907,3 +133200,Lisa,22136,228884,2 +133201,Camille,58400,59638,1 +133202,Nona Mayfield,30054,37469,2 +133203,Background,408508,1707545,8 +133204,Daniel,16175,79902,7 +133205,Dorshka (uncredited),36612,2772,8 +133206,Reenie,5638,81560,21 +133207,Walter,83770,18288,10 +133208,Daxos,1271,17291,8 +133209,Gregory Gallea,29398,73149,3 +133210,Fake Sam Seed / Fake Beggar So,49642,1088190,7 +133211,Loco,415255,1677214,6 +133212,Northey,15935,75984,3 +133213,Tom Vincent,14669,9275,10 +133214,Al Williams,199155,9110,6 +133215,Giant Russian,371741,1394238,18 +133216,Rog,152532,60881,15 +133217,Ele mesmo,448763,1848669,38 +133218,Dr. Zand,126934,1687444,7 +133219,,63326,142607,3 +133220,Caterina,46128,130537,1 +133221,State Trooper (as Dave McMahon),41591,126997,10 +133222,"Paule ""Folcoche"" Rézeau",24685,20080,0 +133223,El Smiley,21191,87264,2 +133224,Rosenverkäufer,75969,1394310,26 +133225,Doogal,24432,27974,0 +133226,Marjo,306323,1588792,2 +133227,Mikey,10744,52647,3 +133228,Senator MacVickers,73430,11502,7 +133229,Hostess,59961,37769,16 +133230,Man in Stagecoach,134238,145187,24 +133231,Detective Anne Hastings,15476,46774,8 +133232,Porter Halstrom,46885,86442,7 +133233,,110608,1050082,9 +133234,Police Superintendent,21070,1655,17 +133235,George Jorgensen Jr. / Christine Jorgensen,94551,160948,0 +133236,Train Passenger,183825,1179584,31 +133237,Burly 1,440777,1754599,26 +133238,Police Officer #1,18530,1017085,15 +133239,Major Sam Huxley,51426,18803,0 +133240,Schiller,62567,541888,9 +133241,Lord Scott / Prison Guard (voice),38055,18864,8 +133242,Yakichi Ogiya,43364,33731,7 +133243,The Voice,308639,131772,16 +133244,Goldie,128437,397265,10 +133245,Ana,41115,6405,12 +133246,Dr. Drury,28425,8516,1 +133247,"""Zuza""",425961,908548,2 +133248,Nephew,99329,146629,3 +133249,Sgt. Smith,60269,23,3 +133250,Lovey Lou,72096,722,1 +133251,Giuliana,57996,227315,6 +133252,Myrl Redding,16331,3036,0 +133253,Llio,96106,72661,7 +133254,Bar Patron,360592,1512200,26 +133255,Alvin C. York,16442,4068,0 +133256,Wanda,16214,1206322,13 +133257,Ilsa,241258,1494506,5 +133258,Barmann,53364,1513886,9 +133259,Additional Voice (voice),16866,211412,11 +133260,Madame de Saint-Ange,64827,239898,0 +133261,Mrs. Peterson,353686,1699502,12 +133262,Clancy,43809,3262,14 +133263,Audition Girl,24469,1579245,24 +133264,Roulette Dealer,71120,1872243,17 +133265,Annabel Allison,104556,40174,0 +133266,Crane Stewart,26805,13977,4 +133267,Neil Price,54804,22159,0 +133268,La Lechiguana,127424,1054437,4 +133269,Meneer Pastoor,25797,1413316,13 +133270,Ellie Brilliard,10005,10691,7 +133271,Slave Boy (uncredited),76203,1066609,81 +133272,Barney the Security Guard,256347,120875,9 +133273,Colette,202215,136761,1 +133274,Uģis,116432,1189688,3 +133275,Malia,47065,58793,7 +133276,Miss California,773,17412,21 +133277,Bob,20825,164431,6 +133278,Pastor Victor,284564,43774,4 +133279,Clyde Burton - the Detective Escort,26376,95311,39 +133280,,413806,99282,4 +133281,Marina Weston,64084,164636,2 +133282,Soldier,68737,1392957,34 +133283,(uncredited),333484,980,46 +133284,Laura,28592,99516,1 +133285,Li Wan,220488,1364234,8 +133286,Tanja,50318,89142,30 +133287,Arturo Colonna,46586,21609,5 +133288,Decky Ortega,79735,161568,7 +133289,Dana Jacobs,419459,213001,0 +133290,Sibyl Chase,99283,13963,3 +133291,,180162,2878,4 +133292,,141015,28511,5 +133293,Hot Dog Girl,59408,1215888,9 +133294,Candidato al miracolo,315319,1605200,9 +133295,Bartender (uncredited),331313,1767214,41 +133296,Party Girl #1,258480,1545517,33 +133297,Nightclub patron,43113,1481412,58 +133298,Pat Williams,166393,1147891,0 +133299,Le gradé du centre de rétention,15712,131992,16 +133300,,257302,1140027,12 +133301,Fortunata,73697,105352,3 +133302,Rico Rodriguez,8988,59251,11 +133303,Pat,130593,7028,3 +133304,Platoon Leader,2080,1205880,34 +133305,Miss Plunder,75244,133498,6 +133306,Nick Nickelby,15036,8198,2 +133307,Bachelorette #2,11247,92327,29 +133308,Vörubílstjóri,115712,42673,2 +133309,Kalin,91548,197226,5 +133310,"Jessie Pullman, Age 18",47921,2777,2 +133311,Offended Businessman,19719,85108,14 +133312,Dr. Freud,49852,1815738,10 +133313,Himself,70027,46433,8 +133314,Cassie Willis,7445,36662,9 +133315,Чех,37603,1147555,4 +133316,Her Ladyship,42122,153080,2 +133317,Beck Weathers,32648,28633,2 +133318,James Toback,312497,1155121,8 +133319,Warwick,70587,16846,1 +133320,Eric Cartman / Stan Marsh (voice),16487,34517,0 +133321,Sang-woo,211579,1197942,3 +133322,Acme Truck Driver,250332,1450110,37 +133323,Mona,103236,623417,5 +133324,Scorekeeper (uncredited),336890,1754365,34 +133325,,57889,235981,9 +133326,Odell,63317,182647,6 +133327,Philip,92496,1684442,3 +133328,Young Noah Daly,266425,1283943,10 +133329,Tante Lisbeth,61035,1445779,16 +133330,Earl J. Dawson,81720,1003567,2 +133331,Großmutter,8954,56422,12 +133332,Helén Andersson,24023,5024,10 +133333,Bahattar Singh (72) / Inspector Tehattar Singh (73),147767,35070,0 +133334,Detective Phil Butler,43022,6836,4 +133335,Enforcer,18387,61144,6 +133336,Padrastro Frank,26971,1108098,6 +133337,Han Do-kyung,408620,17120,0 +133338,Matteo,379873,232741,15 +133339,Craig,146238,222121,14 +133340,"Rudy, Bartender",88375,14786,14 +133341,Chelo Estrada,77650,4069,5 +133342,Hanna,114438,17547,4 +133343,I.A.Y.B. Guy,306952,1472898,47 +133344,Cockney News Vendor,109716,120463,79 +133345,Borisenko,35405,39036,5 +133346,Lionel Logue,65035,60414,10 +133347,Hulda Tiirikka,286267,1352108,4 +133348,Beth,289712,1215416,9 +133349,,305147,1165713,6 +133350,Young Hopps (voice),269149,1610446,25 +133351,Red Dougal,69784,11130,5 +133352,Selene,52520,3967,0 +133353,Peresvet,62616,101433,0 +133354,Female Police Officer on Bluff,8457,1182085,28 +133355,Livingston Dell,163,1898,12 +133356,Manuel's Mother,469172,73756,2 +133357,Phil Hayes,76640,82093,10 +133358,Woodhouse,42045,96228,5 +133359,Mail Man,39517,109322,7 +133360,Lada (as Láda Ondrej),82040,592931,2 +133361,Applegate,103938,13344,5 +133362,Darsie,203321,121721,5 +133363,Flint,83191,55636,2 +133364,John Davis,43526,14868,0 +133365,August,416256,1680199,3 +133366,Abraham Lincoln,16135,79502,6 +133367,Cesare Marchetti,217648,5676,1 +133368,Paul Beaurevel,106016,19550,2 +133369,Du's thug,40081,1135161,17 +133370,Harris Enzmann,312497,6575,2 +133371,Bill Stultz,8915,29234,5 +133372,Clem Broderick,46184,107684,2 +133373,Fred,30974,143389,3 +133374,Jackie,82520,928134,4 +133375,Agent Poole,146238,1614471,17 +133376,Zeb,118889,1423308,51 +133377,Marvin Boggs,146216,6949,4 +133378,Turtle Devil,75948,15170,6 +133379,Inspector Sikander,76684,42803,7 +133380,Dist. Atty. Slater,26801,33856,11 +133381,"Wilma Belding, Waitress",20174,34509,3 +133382,Nunzia La Moratta,33495,128235,2 +133383,Carey Jackson,107593,19406,1 +133384,Himself,269797,16178,2 +133385,Boris,78340,1163657,5 +133386,'Tough Tony' Burke,229638,3163,7 +133387,Walter,121516,119992,8 +133388,Duncan,147773,83852,0 +133389,Wolfgang,75101,1523990,9 +133390,,15830,1439649,16 +133391,British Naval Officer,52859,540363,17 +133392,Bill Edison,56154,78305,9 +133393,Cecília,96411,603619,3 +133394,Rollerskating Waitress #1,11247,1776499,33 +133395,Geisha,315837,1848076,28 +133396,Don Palmer,28452,100851,2 +133397,Bethany,14123,204665,16 +133398,Christie,11338,21519,17 +133399,Sumitra Devi,304274,20045,4 +133400,Male Prefect,14012,53807,2 +133401,David,337104,3129,0 +133402,Agent Stalhuth,7551,52924,8 +133403,Star Trek Funeral Minister,10918,134897,17 +133404,Junior Joad,298865,136963,8 +133405,Lupe La Rosa,13827,72985,5 +133406,Pintus,72279,55914,4 +133407,George Adams,43546,8727,2 +133408,C.K. Williams (age 40),199647,17051,0 +133409,Soldier,65787,34610,12 +133410,JP Perrot,76609,72428,2 +133411,Muriel the Cashier,16131,79423,12 +133412,Himself,23319,16377,0 +133413,Baer Cornerman / Undercard Boxer - Feldman,921,15230,24 +133414,Homeless Man,30361,156085,26 +133415,Emily,38340,948150,2 +133416,Roger - Stephanie's Gigolo,31993,116746,18 +133417,Silke,42293,45734,7 +133418,Shaughnessy--Policeman,72313,18391,6 +133419,Charles Earnshaw,72823,153392,12 +133420,Carnival Barker (uncredited),17978,7077,15 +133421,,46492,136386,11 +133422,Proprietor,373514,3339,4 +133423,Hilary,232672,98285,3 +133424,Cake Girl,214756,1759636,75 +133425,Will,254193,58019,1 +133426,Policeman in Drina's Apartment (uncredited),27973,120785,23 +133427,Helen Capel,101320,37045,0 +133428,'Jartsa' Matikainen,18279,92428,7 +133429,Mr. Randall,31377,69807,2 +133430,Dr. Flout,23628,90407,14 +133431,Camila,215881,3713,4 +133432,Harry,94725,2047,0 +133433,Lisa Marie,73353,175743,3 +133434,Saito,13391,40451,16 +133435,Larry,41402,85419,5 +133436,Edith Tree,28031,13333,0 +133437,Indian,105059,1683139,43 +133438,Edward Wilde,14207,6677,3 +133439,Gen. Leo Fitzjohn,43016,12446,0 +133440,Silvana,82341,933329,7 +133441,Fotograf Grüner,3577,1156155,11 +133442,Officer Williams,77585,582316,2 +133443,Bosco (voice),38579,2628,6 +133444,Dumb Guy,108222,120046,23 +133445,Airman,41312,40965,18 +133446,Victoria Lambert,353686,77826,9 +133447,Jack McCall,47914,56117,13 +133448,Child (uncredited),72856,589812,11 +133449,Liz,378441,40646,18 +133450,,11328,1444502,50 +133451,Daniel Gale,50364,11288,1 +133452,Priscilla King,176670,4301,3 +133453,Coffee Shop Worker,222935,1672073,27 +133454,Bank Guard,91583,52205,19 +133455,Post Office Clerk,109716,29124,89 +133456,Enzo,23619,544216,19 +133457,Young Jane,340584,1074125,4 +133458,Gryphon,25694,134268,3 +133459,Kayla's Dad,92391,1071133,13 +133460,Steward on Dock (uncredited),31773,34128,49 +133461,Meri,60677,124266,1 +133462,Balloon Man,10204,158079,17 +133463,Man in the Woods,50838,33348,3 +133464,La Motte,11813,25333,3 +133465,Herself,2204,1722388,7 +133466,(voice) (as G. Vitsin),90001,86670,2 +133467,Goto,282070,13275,10 +133468,Da Lisi Guard,217923,1436281,40 +133469,Gambler,377170,190775,27 +133470,Jamie Dillen,361050,20980,2 +133471,Music Video Director,38916,4790,7 +133472,John Geste,189621,47178,2 +133473,Dr. Lynn Denlon,214,2677,3 +133474,Arthur,27573,82167,11 +133475,Detective (uncredited),176,1630461,16 +133476,Judge (voice),82703,352,16 +133477,Barry,41733,57130,11 +133478,Mr. Nezzer (King Xerxes) / Mr. Lunt (Haman) / Pa Grape (Mordecai) / Scallion #1 / Phillipe Pea (Peaoni Brother #1) (voice),273296,78297,3 +133479,Himself,14923,105681,46 +133480,Brito,303982,1053977,9 +133481,Mrs. Spepk,17956,135170,9 +133482,Bohemund,28437,8516,6 +133483,Allan,186606,1356010,13 +133484,Sam,29798,104915,9 +133485,Basil Valentine,72096,29445,11 +133486,Tu Ba,107891,124002,5 +133487,Clarius Barbaroux,43900,543929,2 +133488,Tatsu Watanabe,3782,123858,16 +133489,Sharish,19495,18702,5 +133490,Arsene Lupin III (voice),15371,109746,0 +133491,Mrs. Margaret Davidson,44140,130333,7 +133492,Dr. Vernon Stone,54801,5,2 +133493,Blue Squadron,330459,1238461,37 +133494,Monsomerda,58080,132262,7 +133495,Edward 'Eddie' Greer,125736,124853,3 +133496,,31275,1853877,10 +133497,Hermann Goering,102155,14786,15 +133498,Morning Show Host,70670,1093941,14 +133499,Mikkel,122368,1076065,1 +133500,Corporal Colin Spence,58076,4958,0 +133501,Hombre,123359,1102269,10 +133502,Charles,23516,239580,1 +133503,Jimmy,14019,76292,7 +133504,Seated Reporter on Train,26376,81292,42 +133505,Squadron Leader Macbeth,49609,113759,12 +133506,un ouvrier,4580,21175,5 +133507,Nira,270646,1321448,1 +133508,Oscar,452142,529302,17 +133509,Zhao Kuang,11653,120725,3 +133510,Joseph 'Joey' Martin,73551,245484,4 +133511,Géronimo,14644,16873,4 +133512,Tahee,209032,1174071,10 +133513,Ma Mabley,14874,102,3 +133514,Mrs. Jefferson,1833,63279,12 +133515,Vicky/Raju Malhotra,54959,77235,0 +133516,Boromir,10529,17638,5 +133517,Gary Supernova (voice),68179,52997,1 +133518,Hector,55735,571302,11 +133519,Brian,72648,63426,10 +133520,Abuela,47211,1315321,5 +133521,Heidi,11046,83739,16 +133522,Dr. Lubbeck,20640,31209,9 +133523,Mary O'Halloran,167882,200543,7 +133524,Suzy,52358,82315,0 +133525,,341490,1182235,7 +133526,"Thomas Hacklin, Jr.",48949,3085,0 +133527,Luca Altieri,105860,36913,0 +133528,Sappho's Nurse,286789,1128183,11 +133529,Stephen,414977,207442,8 +133530,Tom,250535,1538851,6 +133531,Bus Conductress,114444,1115627,9 +133532,Dhan Kuber,14159,85047,14 +133533,Buster Macauley .,234868,1270223,1 +133534,Mandelbrot,12085,63296,6 +133535,Magda,280840,955,0 +133536,Slim,96433,97282,9 +133537,Hal Nichols,6557,50464,6 +133538,Helen Alexander,133941,32380,4 +133539,Shipboard Party Guest,335509,30513,9 +133540,Social Worker,26293,95045,9 +133541,Mohamed Ben Saoud,44155,1186226,5 +133542,Foreman,39779,123405,13 +133543,,81463,1480661,11 +133544,Jackson,4893,140167,8 +133545,Kevin,367732,66580,4 +133546,Gruber,177697,1125648,9 +133547,Grandma,24554,35109,3 +133548,Gurney (uncredited),43522,30160,86 +133549,Gynecologist,267466,553838,8 +133550,Robert Lee Parton,426670,76546,3 +133551,Nightclub manager,43113,1478373,68 +133552,NKVD Officer,19996,85415,5 +133553,Spawn,295627,1368961,6 +133554,Bert - the Farmer,27966,80546,23 +133555,Danny,57201,1382010,20 +133556,Colleen,13596,63661,28 +133557,Anne Marie 5 år,377290,1643035,18 +133558,Yuppie Man,79329,586534,13 +133559,Bonnie,246917,1528490,10 +133560,Attila,3870,55636,5 +133561,Elizabeth Morales,241239,1468597,21 +133562,Freddie,33786,111366,8 +133563,Mary Smith,64047,229792,3 +133564,Sgt. Chevalier,6081,47848,9 +133565,Zorda,53851,89999,5 +133566,Burgess,48207,140031,4 +133567,,202662,586251,1 +133568,Iwao Nishina,363354,107961,6 +133569,Baron Mansfield / Lucas Romer,153397,5658,3 +133570,Jabrielle,285860,1382493,2 +133571,,102949,32830,7 +133572,Frank,71503,166489,12 +133573,Sasha,22998,584985,14 +133574,Young Woman 2,242042,1347307,14 +133575,Dance Observer,157343,126836,38 +133576,,156988,1019917,8 +133577,Warren Fitzpatrick,25551,82749,22 +133578,Scott Rafferty,23692,14416,6 +133579,Hotel Guest #1,245906,1456193,26 +133580,Nastya,71381,118336,0 +133581,Black Cloud,41468,137003,12 +133582,Young Eden Starling (voice),13459,569535,3 +133583,Max Washington,1125,95758,15 +133584,Kashibai,362045,77234,3 +133585,Baker (voice),16366,236327,12 +133586,Stu Rudell,103432,40004,16 +133587,Herself,123283,9560,9 +133588,Executive Police Officer,43113,1483784,33 +133589,Mom,123109,946356,10 +133590,Kuramori,282069,58604,6 +133591,Member Of The Press,108723,1446353,34 +133592,Geneva Carson,71885,71676,2 +133593,Fornara,77000,1021659,20 +133594,,23289,1267482,9 +133595,Julia Barker,69917,557447,0 +133596,Terry Perrish at 15,149509,1432758,38 +133597,"Pat, Jack's Colleague",17258,114470,10 +133598,Detective Derm,32166,6575,3 +133599,Nai Jan,39907,228620,0 +133600,Starkiller PA Announcer (voice),140607,175854,72 +133601,Ashur,13486,152244,20 +133602,Bob,189,12799,11 +133603,Riccardo,5482,29429,0 +133604,Pixie Croffman,120259,199128,6 +133605,Abraham,132363,1199000,3 +133606,Himself,67273,4135,1 +133607,Sam,387558,1035907,4 +133608,Benjamin Knox / Bonk,16234,9290,10 +133609,Gardian #2,39840,1437321,4 +133610,Fred Winslow,28484,40180,3 +133611,Sutton,127560,201391,3 +133612,Diane,8194,37155,8 +133613,Novice Monk Mansel,10473,65624,3 +133614,Jo-Ann Ellis,246860,56734,2 +133615,Police Station Reporter,146233,1689984,28 +133616,Lumberjack #2,79329,586530,8 +133617,Ackerman,12796,55636,13 +133618,Mrs. Cooper,20644,3367,4 +133619,Louis 'ZigZag' Fletcher,13442,1003386,6 +133620,Member Of The Press,108723,1446346,29 +133621,Rika Umezawa,294651,72494,1 +133622,Michael Morrell,29116,29655,1 +133623,Nurse Billie Jean Green,4809,13978,4 +133624,,243473,554273,0 +133625,,65958,130450,5 +133626,Dr. Magnus,109716,4071,5 +133627,La patronne du beuglant,258384,1367883,19 +133628,Fumi,27372,108021,4 +133629,Rachel,373977,1434826,8 +133630,Carnation,93116,113660,0 +133631,Sheryl Hoover,773,3051,1 +133632,Bus Passenger,156700,25147,22 +133633,Geneviève Massu,72278,10500,1 +133634,Gwen Doyle,16214,35,4 +133635,Dancing Girl,24469,1319619,15 +133636,Nell,334538,27578,0 +133637,The Coast Guard,44566,8690,6 +133638,Marie (jung),8556,55348,11 +133639,Matthias,308174,49767,2 +133640,Mr Lambert,150049,1295589,1 +133641,Ayako Ozawa,43635,99669,9 +133642,French General (uncredited),42641,13346,7 +133643,Derek Jameson,60935,31164,4 +133644,Young Jake LaMotta,228034,1375499,7 +133645,Claire,73532,53507,3 +133646,Joe,208305,56977,1 +133647,Francois Pignon,30163,24501,1 +133648,Harold,41949,3129,3 +133649,Henry,3057,221018,8 +133650,Nauczycielka,82027,17575,3 +133651,,86985,236639,8 +133652,Sister Maria,128089,73756,3 +133653,Skipper (voice),145316,825,1 +133654,Bernie,15189,1896,2 +133655,Carlo Valli,267557,120129,4 +133656,Stella Radner,325133,1581096,23 +133657,Cem,295748,74376,1 +133658,,9550,1620872,8 +133659,Luisa,23619,1741923,8 +133660,Alfonso (uncredited),365942,1670750,46 +133661,Jillian,360784,83423,4 +133662,Krzywonos,31273,107634,15 +133663,,117212,1200244,17 +133664,Himself,125736,1271014,30 +133665,Greg Walsh,108723,252,3 +133666,Tom Baron,31206,34287,3 +133667,Marlana,49073,1116386,10 +133668,Bernard F. Goldsmith,247691,7502,1 +133669,Little Wu,87894,1360387,9 +133670,Traffic Cop,250332,589218,56 +133671,Chris,44943,1153536,30 +133672,Latif Yahia / Uday Hussein,62630,55470,0 +133673,Himself,33317,110350,0 +133674,Head Waiter,340101,390184,26 +133675,George,338421,21912,7 +133676,Dr. Isaacs (uncredited),28571,975597,21 +133677,Marty,93935,244424,1 +133678,Maud Brewster,131039,9206,1 +133679,Kenraali Gustafson,55761,223074,1 +133680,Lori,137528,1196009,4 +133681,"Himself, Cameo Appearance in Judy's Dream",80032,82216,15 +133682,Cat,167810,8170,2 +133683,Himself,376394,1407145,1 +133684,Tippy,21029,94978,6 +133685,Slater - young,13569,1657172,4 +133686,Santa Claus Auditionee / Himself,430826,1891552,61 +133687,Ameena Horn,44140,130332,4 +133688,Bill Randa,293167,1230,3 +133689,Natalie,73313,39552,12 +133690,Francis Costello,18899,35084,0 +133691,Marcello,35016,236418,24 +133692,Tetsu,87296,227622,9 +133693,Maria,27283,1052661,3 +133694,Fuld mand,56858,568938,9 +133695,Diane,81232,77287,4 +133696,Berlin Royal Academy Representative at Train Station,28367,101232,19 +133697,Little Girl,68737,1392949,25 +133698,Himself,76686,1098643,7 +133699,Vicky Khanna,347807,85731,2 +133700,Tom Bradley,292294,10161,3 +133701,Hesse,352733,75264,5 +133702,Cliff,345925,102703,9 +133703,Weinstein,62046,87707,6 +133704,Barker (uncredited),31773,33776,37 +133705,Korea General Shen,11653,1615011,16 +133706,Doc,13823,12647,1 +133707,Man at Gordo's (uncredited),37628,583103,14 +133708,"Grove, Bentley's Butler",179066,30184,4 +133709,Gretched (voice),10192,43775,9 +133710,Chloe,323673,94482,2 +133711,Old Gorcík,19765,61151,11 +133712,Liz,40229,980774,2 +133713,Araber,36672,70887,14 +133714,Herself - Roast Master,334461,3138,2 +133715,Woman in Car Chase,90590,1073192,8 +133716,Ralph Farley,86363,31208,5 +133717,William Colby,257444,11678,1 +133718,Train Passenger,56154,141139,29 +133719,Reverend Hugh Purslow,77949,940,6 +133720,Abla,31413,1108183,6 +133721,Mazelli,3476,20113,4 +133722,Susan,81475,29541,1 +133723,Keeleys Dad,24469,91644,9 +133724,Mr. Jones,32932,4783,0 +133725,Himself,172004,6818,1 +133726,Sam Kulhane,55505,158045,4 +133727,Zantec,46436,237349,11 +133728,Donley,14979,81830,7 +133729,Teacher (uncredited),48627,94114,15 +133730,Joe the Postman,339362,1526636,15 +133731,Sue Shaun,105077,1511127,18 +133732,Doris / CEO / Spike / Dmitri / Laszlo / Fritz / Petunia (voice),1267,166654,17 +133733,Woman with Man at Race Track,118889,99458,46 +133734,"Frank ""Mossy"" Mostin",206284,7166,2 +133735,Hustler,3144,30758,8 +133736,Erster Geschworener,269165,48488,0 +133737,Floyd Miller,70192,116845,5 +133738,Keith Clayton,77877,80289,3 +133739,McCary,35404,109844,15 +133740,"Voix, sons et bruitages des animaux",21348,145439,27 +133741,Mr. Kemper,207699,1308811,13 +133742,Liviu,116439,11390,0 +133743,Sally,320588,10871,4 +133744,,206574,1339113,1 +133745,Mrs. St. Maugham,66022,45465,3 +133746,,78450,1559774,6 +133747,Sadie,91679,985024,1 +133748,Townsman,55604,1045763,72 +133749,,11854,1835337,15 +133750,,427095,1712271,1 +133751,Molly O'Leary,78734,125841,3 +133752,Marching Soldier (uncredited),16442,19410,88 +133753,Frankie Campbell,921,40693,25 +133754,Ron Troupe (voice),166076,110884,15 +133755,Ivan,25388,41224,4 +133756,Loo Song,87894,13341,3 +133757,Clara,469172,1862606,13 +133758,LIz Powell,28263,1886627,8 +133759,Steve Shriver,8988,38673,3 +133760,Miss Fairfax,48207,91489,19 +133761,Mickey,35626,37157,5 +133762,Manu,65496,543836,3 +133763,Stig Helmer's Mother,24647,231918,8 +133764,Mikey,145668,1049940,7 +133765,Benoit,76651,2566,3 +133766,Mrs. Maude Osgood,229221,1427102,17 +133767,Oompa Loompa,118,1295,14 +133768,Sanjay Jagtap,397365,1653479,5 +133769,Mrs. Ulman,25983,100552,1 +133770,Sadie,242033,82662,1 +133771,Hawkins,27970,2099,7 +133772,Sam Wilson,41551,90517,0 +133773,Count de Savignac,31532,90380,3 +133774,Ted,9968,1771,6 +133775,Ziegler,58995,5012,5 +133776,Teresa Raffo,4286,26662,2 +133777,,296344,1260725,5 +133778,Diane Robinson,53861,181250,4 +133779,Elise,251227,1163458,0 +133780,Sister Mary Leonard,225499,117723,12 +133781,Sergeant Botha,13823,8784,33 +133782,Townsman,62764,1225492,23 +133783,Richard White,1452,11006,3 +133784,Dorothea,8316,553005,11 +133785,,334175,1464771,10 +133786,Skinny Alcoholic,34869,86636,7 +133787,JB Chauffeur,239566,1457282,54 +133788,Prostitute,199463,55005,13 +133789,Lia,248633,74673,3 +133790,C.K. Williams,199647,139358,4 +133791,Cookie,295656,58398,2 +133792,Himself,150049,1295597,9 +133793,Stewardess #5,318781,1632896,25 +133794,Librarian,9756,58917,10 +133795,John Ellis,42325,97007,3 +133796,Jeff,132859,90333,2 +133797,General Ward (voice),293167,79344,22 +133798,Buel Jaggers,25473,83806,7 +133799,John Sands,24351,23880,0 +133800,Customer,51828,1016119,24 +133801,Hotaru's Grandfather (voice),92321,65438,2 +133802,,321142,2629,5 +133803,Ludmilla,211,10239,4 +133804,Himself,245394,11275,1 +133805,Xu Xian,75948,89409,2 +133806,Gloria,15838,4460,7 +133807,Joe Dickson,22606,89010,2 +133808,Stormtrooper,330459,46362,78 +133809,Carol,110830,137684,2 +133810,Boston Newscaster,214756,1224996,41 +133811,Krishnan's mother,398786,1622882,12 +133812,Mendez,106747,76961,10 +133813,Cece,193610,1031261,7 +133814,,66178,174158,1 +133815,Maclain,26961,101024,1 +133816,Miss Andrews,82631,928356,8 +133817,Shingo - Etsuko's brother,92950,96552,8 +133818,M. Pomeroy,58462,17485,6 +133819,Russian Girl,85442,70961,28 +133820,Ashton,43811,29625,7 +133821,le gardien du parc public,78377,24500,5 +133822,Tasha,304336,54499,2 +133823,Casey,260001,11365,7 +133824,Policeman,94182,1673559,29 +133825,(voice),63498,166857,8 +133826,,125264,131020,16 +133827,Paizinho,12124,71364,5 +133828,Nora Winthrop,30934,18764,2 +133829,le Réceptionniste de l'Hôtel Favard,32338,2417,5 +133830,Johnny Trinno,14137,157059,3 +133831,Roosevelt's Secretary,147722,30513,22 +133832,Red Cross-sister,80059,277436,10 +133833,Helen,149926,20242,14 +133834,Frankie Wheeler,107942,54470,0 +133835,Norma,924,4568,10 +133836,Molly,44389,18750,7 +133837,,321779,1419744,8 +133838,Jean-Baptiste Poquelin - enfant,66949,545655,3 +133839,,361183,591852,7 +133840,Kona um nótt (as Bryndís Petra Bragadóttir),26880,96527,5 +133841,Nellie Romano,116385,7632,1 +133842,Stefan Huhn,6183,48526,33 +133843,L'élève Ducobu,68637,553198,2 +133844,Liz,81996,193601,5 +133845,Antonia,289198,1357758,3 +133846,Diana Ross (uncredited),4982,1645156,106 +133847,,279096,1293392,20 +133848,Cook 'Em in the Owen,51036,1879500,37 +133849,Margot,334538,1043662,5 +133850,Wiebke Reed,2692,30792,6 +133851,Le primeur,382589,968377,25 +133852,Himself - Roaster,296192,56585,8 +133853,Bertha,24655,79248,4 +133854,Paul Melly,381518,55469,6 +133855,"Florence, l'ancienne maîtresse",64407,24462,5 +133856,Barbara Ramme,85435,8892,2 +133857,Press Agent,43200,235207,9 +133858,Gilly,120259,30529,17 +133859,Alex,68716,52480,0 +133860,Ossi,35735,11263,2 +133861,Detective Arresting Rocky (uncredited),28000,16069,36 +133862,Barbara,214093,1295964,6 +133863,Billie Offer,1950,69597,1 +133864,Todger Fairmile,38770,10925,14 +133865,,278095,126864,6 +133866,Dr. Christian Skaas,26533,37884,2 +133867,Wynelle Coddle,31146,1841257,15 +133868,Dempsey,128241,221978,3 +133869,Borgmann,157420,38312,2 +133870,Philippe's Supervisor,22618,950499,4 +133871,Romany O'Rattigan,41468,110941,5 +133872,Umbopa,12450,17818,4 +133873,Clausewistz,27457,550453,0 +133874,Victoria Bodeen,24810,4174,0 +133875,"Diana ""Ann"" Boyce-Smith",103938,31550,0 +133876,Young Peter Parker,102382,558928,9 +133877,Alice,142507,213211,0 +133878,Moss,9993,41785,5 +133879,Cubitt,62728,45050,8 +133880,Evelyn,40925,108916,6 +133881,Sterkowitz,336199,71930,7 +133882,Mr. Pitt,49500,39741,6 +133883,Stormtrooper,330459,81663,65 +133884,Honda,35113,113757,2 +133885,Dr. Roland Emerson,194722,4139,5 +133886,Mme Diogène,11799,11535,2 +133887,Remco van Leeuwen,73123,82453,2 +133888,Anne Goupil,43026,5767,6 +133889,Cornell,253154,55275,8 +133890,Moe,59006,3982,9 +133891,Claudia (Beatriz's mother),332872,138701,6 +133892,Bulleteer,145963,89756,1 +133893,Manuel,121929,1112960,1 +133894,Sgt. Roberta,35632,114459,6 +133895,Dagmar Randel,377290,47072,4 +133896,Soso,142798,1117981,0 +133897,Diane,239018,87819,13 +133898,Stranger,49844,10924,6 +133899,SC019 Police Commander,206647,230681,21 +133900,Denise,152532,29933,10 +133901,Op Center Staff,19995,33311,47 +133902,Marques,334527,39391,8 +133903,,124597,1178800,6 +133904,Chi Chi,39101,122192,5 +133905,Mick Coneley,425774,1707869,14 +133906,Radio Announcer (uncredited),17136,1395871,40 +133907,Charlie,274479,1230891,37 +133908,Velociraptor,24556,15831,15 +133909,Gov. John H. Dirks,281124,34320,4 +133910,Stoller,248633,1283949,10 +133911,Elsie,1404,16911,12 +133912,,42355,1089570,2 +133913,Ben,426230,115974,1 +133914,Pharmacist (uncredited),17136,103068,41 +133915,(voice),16137,51103,19 +133916,Miss Montgomery,107430,70286,5 +133917,l rappresentante di medicinali,103218,148251,4 +133918,Dr. Paul Stewart,3146,6725,0 +133919,,354667,1497112,3 +133920,M. Mazzolani,81654,37193,3 +133921,Hanako Kim,21966,148286,6 +133922,Item Number,34763,1488800,9 +133923,Willow,207270,583815,4 +133924,Chef Sunil,62838,82417,33 +133925,,175739,1364450,1 +133926,Pomona,358982,1507491,7 +133927,Professor Z (voice),49013,3491,6 +133928,Danny,137528,1764648,15 +133929,Lola Veloso,61035,232199,1 +133930,Murugan,372226,1122109,9 +133931,"Beppo, the Opera Theater Manager",77412,95725,6 +133932,Nana (voice),10527,64445,11 +133933,Boone,30780,122727,7 +133934,Sushma,302435,1563545,9 +133935,Pointing Kid,325712,1879674,17 +133936,Lawyer,428687,1776840,17 +133937,,175791,1158285,3 +133938,Scott,17038,228371,3 +133939,Andy Bradley,86186,56895,0 +133940,"(segment ""Miminashi Hôichi no hanashi"")",30959,552649,28 +133941,Angry bmw driver,25518,147043,13 +133942,Little Boy (uncredited),86360,1055297,11 +133943,Mike King,11897,12149,14 +133944,Pat,339362,53367,4 +133945,Ubasute Old Woman #3,329440,1777435,26 +133946,ER Doctor,41171,61948,21 +133947,Mlađi policajac,11373,1054782,13 +133948,Kevin Gillmore,3055,15978,8 +133949,Bhawana,157293,1170148,11 +133950,Nat's Mom (voice),13956,76096,2 +133951,Zio Arduino,356757,1501800,3 +133952,Zacharias,293380,11033,6 +133953,пляжник,63300,1190398,4 +133954,F'd Up Dog,14923,1386342,12 +133955,Annie,42706,58866,7 +133956,Father Henri,42501,2369,3 +133957,Osvaldo,12811,1827448,3 +133958,Susy,38920,1777490,6 +133959,Lewis Sinton,23107,52176,11 +133960,Bobby Z,10425,32224,3 +133961,Diner Patron,242090,19797,6 +133962,Heavenly Blues,42725,8949,0 +133963,Chris,42709,9323,8 +133964,Alonzo,97936,6609,2 +133965,,42944,129146,4 +133966,Jury Foreman,13493,1634771,10 +133967,Flora,21794,87892,3 +133968,Julianne,84105,106490,4 +133969,Cpl. Bates,5237,136309,10 +133970,Elsie,22447,18998,4 +133971,Penelope 'Ping',354832,1111851,4 +133972,Guru,42623,137270,7 +133973,Mr. Loonie - Liquor Store Owner,322,3265,9 +133974,50's Tough,32657,987572,66 +133975,Callie,80320,855,2 +133976,Owen,41402,113505,0 +133977,Chris Graham,226630,8183,1 +133978,Mahjong Player,21519,134704,12 +133979,Stan,334538,67979,4 +133980,Chan Kar-Fu,118381,43661,0 +133981,Surveillance Guard,127585,522169,42 +133982,Wendland,201429,23342,3 +133983,Vigilantes,61985,1506824,10 +133984,Frederico Caprelli,263873,1308335,10 +133985,Bai Ling,413198,1590275,5 +133986,Vera,125490,136969,13 +133987,David Stillwell,19661,8487,0 +133988,Rosita Jean D'Ur,33923,17752,1 +133989,Mrs. Connell,27973,99329,17 +133990,Katya,8414,23459,0 +133991,Pretty Boy,263115,1821523,17 +133992,Levar Gordon,2979,117173,5 +133993,Yolanda,199415,1179652,2 +133994,Marjorie Lowman,82237,83477,1 +133995,Ape (voice),26264,8930,5 +133996,Restaurante Owner,102629,1254445,16 +133997,Kid with Footballer,48838,1894243,21 +133998,Miller,192990,1173408,13 +133999,Singing Alexa (Voice),285733,1390007,1 +134000,Charlie Bartlett,8669,21028,0 +134001,Klapprath,338,697,7 +134002,,84823,1620090,5 +134003,Favorite of the Harem (uncredited),3059,100040,78 +134004,Antoine,83229,25062,4 +134005,Restaurant Passerby (uncredited),284052,1744095,55 +134006,Allison,353728,7005,6 +134007,Arthur,157152,30861,4 +134008,Amos Hartman,73194,975692,16 +134009,Teacher,2080,79351,46 +134010,Keith,321160,174792,5 +134011,Fighter,71120,1872246,23 +134012,Computer Guy,120802,168872,13 +134013,Pam,1991,16850,6 +134014,Himself,70027,98539,27 +134015,Jack Shapiro,2001,20564,6 +134016,Purity League Manager,31899,948509,17 +134017,Caleb Moat,98250,1016502,6 +134018,Katie,31875,1649856,5 +134019,Herself,458618,1224937,1 +134020,Mickey House,358511,1506063,1 +134021,Mrs. Sherwood,64015,1140989,3 +134022,,38154,544088,13 +134023,Professor Dr. Karl Lorenz,122435,32004,0 +134024,Lynn,13090,25884,5 +134025,,31462,45329,30 +134026,Kai Koss som barn,24821,111536,4 +134027,McCulloch,42852,202272,29 +134028,Himself,89606,1551656,1 +134029,Bert Connolly,83995,9874,3 +134030,Clémence,129966,21577,2 +134031,Gulyakin,132759,1096116,5 +134032,Allard,80410,107810,3 +134033,Pregnant Woman,13483,1201220,17 +134034,Musa,41187,222543,1 +134035,Borstal Girl 2,62728,1720898,18 +134036,Prof. George Edward Challenger,2982,4113,3 +134037,Nathan M - Werewolf,246741,33305,31 +134038,Deputy Hanson,205587,9296,11 +134039,Mr. Solakian,209244,593053,27 +134040,Teen Naomi,306952,1511981,38 +134041,National Space Agency Spokesperson,302036,207304,6 +134042,"Alik, Dina's Father",49943,235060,2 +134043,Panikkar,237672,131261,15 +134044,Rudy Lopp,32609,72059,3 +134045,,282024,238523,1 +134046,Generale Foster,50849,4958,11 +134047,Úlfar Kjeld,72596,139674,10 +134048,Butterworth,183832,1045919,12 +134049,Liu Jin-xi,70057,1341,0 +134050,Doris,37731,55004,4 +134051,General Swanwick,49521,9464,29 +134052,Red,89751,31705,5 +134053,Kelly,244534,15091,1 +134054,,44328,11523,1 +134055,Leslie Peterson,59738,159877,11 +134056,Chief Wilson,31128,16555,4 +134057,,79892,13843,13 +134058,Young Hugh Porteous,120676,1196079,11 +134059,Masashi Okuno,99188,58449,2 +134060,Steve Burden,138308,40201,0 +134061,,88491,985074,4 +134062,Zenon Kar,34766,90772,0 +134063,,76312,1433898,24 +134064,The Boss,287281,1108129,6 +134065,Roy Ash,12617,7682,10 +134066,Kyousuke Kamijou (voice),152042,1254561,8 +134067,Fred,67748,1172845,18 +134068,Man Passing on the Sidewalk (uncredited),28178,1500999,12 +134069,Big Ronie,32845,543530,2 +134070,Kate Baker,11007,5149,1 +134071,Vecino,42502,11979,14 +134072,Kevin,116894,126877,1 +134073,Mark,21431,223012,1 +134074,"Lehmann, SED-Kreisleitung",167330,49306,19 +134075,Dr. Doxey,35026,1653241,19 +134076,Bennie Lee Fudge,241739,124546,3 +134077,,353879,106951,4 +134078,Hungry,375366,1886302,36 +134079,Student Passerby,347630,1695665,41 +134080,Pete,10710,1778254,21 +134081,Jeff,27671,98633,1 +134082,Lara's Friend,1640,1331790,32 +134083,Nexdhet,172475,7333,1 +134084,TV Reporter,149509,141774,22 +134085,,53693,558253,13 +134086,Esmeralda (voice),13517,1571366,6 +134087,Mrs. Emily Gray,157898,1033183,8 +134088,Statist,1655,18413,13 +134089,Ravi Kumar,325555,72118,1 +134090,Paulo,67509,1051672,9 +134091,Clip from 'Suzy' (archive footage),33740,2638,32 +134092,the chief justice,51549,58675,7 +134093,"George, 10th Duke of Bristol",99567,13340,1 +134094,Staff Sergeant (uncredited),1726,1209725,80 +134095,Patrick,59726,49735,0 +134096,Chris Washington,419430,206919,0 +134097,Laurie Webber,207641,68225,3 +134098,Tommy Benson,153162,199468,40 +134099,Tante Ella Paisley,106635,20369,6 +134100,Simon,97365,1123785,8 +134101,Sgt. Ernest Gruber,139826,186939,9 +134102,Bree,15022,74197,19 +134103,Harry,208869,1246267,14 +134104,Rosie,86828,1483728,5 +134105,Short order cook,308639,1381706,15 +134106,Doctor Tennant,301804,583457,11 +134107,Invitata Matrimonio,59040,1108286,21 +134108,Uncle Ali,113038,1056207,2 +134109,Jerry Roach,341174,27545,9 +134110,Private (uncredited),16442,101882,25 +134111,Bride,42139,931318,1 +134112,Cecilia De Bellis,38327,44648,2 +134113,Xiao Wei,219572,1291460,4 +134114,Butterfly,102961,1397084,6 +134115,Zeb / Zeb's brother,22396,102121,13 +134116,First Train Conductor,14554,93628,13 +134117,Lieutenant Kinsey,53619,860,10 +134118,,126250,1476774,22 +134119,Man in the Mask,10665,60509,5 +134120,Mr. Barrie,43526,29601,8 +134121,Jamie,42267,13622,11 +134122,Blanquette,223655,14298,3 +134123,Neely O'Hara,3055,27446,1 +134124,Commando,146216,1504934,17 +134125,Cammi's Husband,9675,22132,14 +134126,Narration,374460,477,3 +134127,Luc,54155,7709,8 +134128,Rebecca Cartwright,32540,109323,11 +134129,Bart Hammond,53574,90074,4 +134130,Mela,228290,1262796,9 +134131,Sweeney,7445,824,12 +134132,State Councillor Itô,124994,106165,6 +134133,Akash,422603,1071561,8 +134134,Earnie,43440,12504,9 +134135,Himself,68721,1336882,23 +134136,Barbara,55032,18915,5 +134137,Sergeant Dylan Cohan,257344,98394,15 +134138,,236368,67176,4 +134139,Will,76297,477074,1 +134140,Party Guest,106256,1692864,12 +134141,Dr. Stephen Arrowsmith,28673,101549,1 +134142,Father Innokentiy,376716,86870,8 +134143,Prof. Barker,23152,37884,4 +134144,Fania Oz,336029,524,1 +134145,Dug (voice),72962,10,2 +134146,Mme Fontarosa,37645,11217,14 +134147,Felice A. Beato,57683,58647,5 +134148,Oden-ya no onna,18148,115655,12 +134149,Captain Sao Feng,285,1619,4 +134150,Extra,425774,1707958,71 +134151,Betsy Loveless,49500,11356,4 +134152,Nami,176983,90133,2 +134153,Adam Jones,295964,51329,0 +134154,Giles,13058,1261071,21 +134155,Viljo Suomies,224813,1210350,11 +134156,Freddie,106618,15202,2 +134157,Dr. Rice,272892,1325971,5 +134158,Mr. Hollar,8619,199975,14 +134159,Torch Singer,8915,1651109,15 +134160,'Dusty',40799,88978,2 +134161,Caesar,46931,137845,2 +134162,Luba,317168,544597,10 +134163,Vanir,7237,52145,7 +134164,Bill O'Brien,94009,33003,5 +134165,La joueuse de curling,41211,543555,21 +134166,Charlie Figueroa,197583,64351,9 +134167,Screw-On Head (voice),213110,13242,0 +134168,Nowotny,24140,91276,8 +134169,Bouncer,10804,1404642,19 +134170,Townswoman Defendant (uncredited),14615,1079576,42 +134171,Maggie,43752,1221197,7 +134172,Yansci 'Jenny' Dolly,107973,64838,0 +134173,Teenage Luis,97794,1128305,5 +134174,German Sailor Girl 2,348320,1614339,27 +134175,Future Angel (uncredited),9471,67849,22 +134176,Frank Gilbreth,50549,78304,7 +134177,Emma Mandrake,114779,1215797,6 +134178,Grün,73775,36601,16 +134179,Teacher,16523,187494,11 +134180,Bebe,45431,550903,24 +134181,Dhanno,58051,95505,8 +134182,Nurse Mindy,62838,24967,11 +134183,Susan Dunn,52440,77158,0 +134184,Pauvre,469172,5275,16 +134185,Julep,62492,53755,9 +134186,Body,312174,1400602,17 +134187,Eric Sacks,98566,886,2 +134188,Himself,16666,570799,2 +134189,John Emmett,86768,3088,1 +134190,Chhotu,109001,1045391,5 +134191,Police Officer,236399,1725448,14 +134192,Trisha,22897,12931,6 +134193,Gabba,405473,1539215,45 +134194,,32891,1187306,3 +134195,Agnes Muller,15044,73357,12 +134196,Detective Perkins,28155,99880,6 +134197,,285935,1360911,1 +134198,Nishi (voice),21712,90155,0 +134199,Matt Rankin,86363,2096,3 +134200,Donna Ralston,44115,20879,5 +134201,Navarro,96333,42316,4 +134202,Gordon Beldon,13788,1736,8 +134203,Stylz,98557,562922,9 +134204,Flores,11799,3267,7 +134205,Bengt Brink,51423,135726,8 +134206,Taylor McKessie,13649,180279,5 +134207,Mrs. Cope,51828,15094,16 +134208,Ove Poulsen,73775,39251,1 +134209,Snowboarder,206647,1599267,60 +134210,Bruce,333385,1054306,8 +134211,,9550,1620869,6 +134212,Detective Wong,47647,588144,5 +134213,Oil Co. Director Warren,156335,2501,8 +134214,Gerald Montgomery,126550,50573,6 +134215,Hsiao Hsing,105703,1591117,3 +134216,NYC Waiter,258480,1545515,30 +134217,Veronica,59051,15276,0 +134218,Tin Man/Officer Lawdale,14833,147,0 +134219,Police Officer,87293,1209476,18 +134220,Tuchowski,58166,11954,14 +134221,,378485,1677387,3 +134222,Marcus Jones,266425,1313136,8 +134223,Augenarzt,379019,212928,5 +134224,Celino Bleiweiss,2692,30788,2 +134225,Nadya Alliluyeva,56448,15887,1 +134226,Phoebe,120587,1112484,1 +134227,Scherazade,60488,31975,1 +134228,Chief Zhang,219572,1562577,11 +134229,Max Rockatansky,76341,2524,0 +134230,"(segment ""Miminashi Hôichi no hanashi"")",30959,552654,35 +134231,Viktor,335837,1454472,3 +134232,Ben,11908,59231,0 +134233,Nate,319924,51803,9 +134234,Jacobelli,166262,235364,2 +134235,Persephone (voice),15359,14723,10 +134236,Lead Officer,102382,115975,34 +134237,,43967,100127,18 +134238,Police Chief Auditionee / Himself,430826,1891516,37 +134239,Toby,37932,109577,4 +134240,Gen Douglas MacArthur,139826,65568,4 +134241,Chic,4380,21127,6 +134242,Ray,250066,62645,6 +134243,"Lhikan, Krekka",21379,74362,2 +134244,Director,242631,34365,21 +134245,Heidrun Heider,315335,11257,9 +134246,Russian Dream Girl,316154,1842091,16 +134247,Dunston,2516,25637,4 +134248,Jace Mercier,9629,1090597,7 +134249,Doffen,284279,47176,2 +134250,Anton Dubechek,118059,4119,3 +134251,Diva,310593,1316817,27 +134252,Jupiter Jones,76757,18973,0 +134253,Vistor's Room Guard,26376,131003,70 +134254,,9550,1517431,4 +134255,Mayor (voice),38055,1448984,22 +134256,Harbor Patrol Sgt. Denny,47404,1240252,12 +134257,Andrea Cass (uncredited),10918,134909,29 +134258,Montague L. 'Monty' Brewster,43489,88462,0 +134259,Friar Anselmo,16432,9140,4 +134260,Markus Kreczi,54524,557863,3 +134261,,365065,1526009,5 +134262,Gavin,67748,1599504,22 +134263,Leon Mercier,94348,1003,2 +134264,Mrs. Warren,29835,105021,6 +134265,Himself,311585,78021,1 +134266,Gutierrez,82350,1330867,5 +134267,Ms. Son,180252,980225,7 +134268,Mrs. Hathaway,183825,2780,10 +134269,Hearn,90406,89091,6 +134270,Himself,366696,1753495,20 +134271,Ajay Sharma,54256,105650,0 +134272,Rosie,38415,120825,2 +134273,Signor Bonelli,43912,24696,8 +134274,,74154,146149,10 +134275,Dr. Kelli Raymond,22450,56128,1 +134276,Foreman (uncredited),15794,141064,31 +134277,Gas Station Attendant,142216,1176791,29 +134278,Sinta,39061,1297503,11 +134279,Lumberjack #1,79329,175183,6 +134280,Stark,362844,33041,3 +134281,Ben Dowler,4882,1774937,18 +134282,Timothée,381356,78124,2 +134283,Pardo,289198,118370,2 +134284,Floatie Dupre,31146,2229,2 +134285,Lamia,31216,157817,8 +134286,Paul,77930,1074867,8 +134287,Man at Club (uncredited),17136,1594339,13 +134288,Grandpa,12591,73022,3 +134289,Don Stober,55784,15668,1 +134290,Courleigh Fleming,27501,97987,1 +134291,Marian,356900,164945,1 +134292,Allan 'Whitey' Snyder,337751,77210,11 +134293,Amanda Berry,336845,206301,4 +134294,,62731,568339,12 +134295,"Georgiana Cavendish, Duchess of Devonshire",12783,116,0 +134296,Voice Cast,222935,146392,40 +134297,Edwin Hall,43811,96722,9 +134298,,137504,1530411,17 +134299,Peter Lapham,20301,4958,2 +134300,,77057,33731,3 +134301,Bilal Khan,314389,86020,5 +134302,Bank Teller,16171,79895,47 +134303,Monica,222935,1279375,10 +134304,Adam Michaels,358982,1507489,5 +134305,Customer,214756,3896,14 +134306,Daphne Blake,15601,15761,3 +134307,Additional Voices,21057,613,11 +134308,Charles Golphin,167951,106724,3 +134309,William Ginter Riva,1726,12708,18 +134310,Coixo,137614,1076591,2 +134311,,265314,17689,5 +134312,Det. Lt. Bradley,46421,6462,6 +134313,Agnes Hirsh,38724,76980,6 +134314,Jim Wade as a Boy,28564,149132,12 +134315,Andy Hertzfeld,115782,20220,9 +134316,,173577,80491,4 +134317,Sgt. Steele,38978,152507,8 +134318,Old Man on Rocker,43821,88653,40 +134319,Herself,21671,7404,14 +134320,Mr. Bird,159770,216057,4 +134321,Kimya hocası,31408,562159,5 +134322,Sgt. Maureen Downey,168027,10227,8 +134323,Lao Er,46124,1158036,10 +134324,Himself,63144,1624629,27 +134325,Adiane,20986,112277,5 +134326,Eun-hye,25649,4263,6 +134327,Count Anton 'Tony' Hohenfried,62567,2495,4 +134328,Kitty,70881,41516,3 +134329,Commissioner Barbara Gordon,16234,52929,3 +134330,Eliška,82716,1288636,0 +134331,"Charlie Marshall, crime boss",36373,6931,2 +134332,Harvey,32044,1513132,18 +134333,Joe Keats,26849,84486,0 +134334,,65614,119216,8 +134335,Rocío,331641,1270686,0 +134336,Troy,332936,83859,8 +134337,Stewardess,38221,1117081,7 +134338,Fireman,53417,13848,0 +134339,Truck Driver in the Station,31412,1888396,10 +134340,Alkali Bill,89647,1250223,4 +134341,Himself,14286,84386,8 +134342,Teacher's Assistant,306952,1511984,43 +134343,Flight Attendant,240832,1426355,19 +134344,Bob Adams,16876,2250,8 +134345,Master's assistant,18758,1140548,5 +134346,Journalist,67272,222066,9 +134347,Blammy,13058,1589554,16 +134348,Knute Rockne,43812,3155,0 +134349,Giuseppe Cocuzza,66700,141114,1 +134350,Hunter,26267,94984,4 +134351,Carpenter,60281,82945,7 +134352,Ewa,7210,52007,3 +134353,le notaire Lebel,46738,38526,3 +134354,Michelle's Mother,336845,1385045,7 +134355,Elderly Man at Restaurant,142402,1117088,19 +134356,CeCe,38916,47882,0 +134357,Sally Garner,96702,932646,1 +134358,Wendell,57201,1184011,21 +134359,Junior,9953,60875,8 +134360,,77185,81003,4 +134361,Mickey Mouse (voice),53219,2106,1 +134362,Bryant,22029,99880,8 +134363,Sophie,285135,204975,4 +134364,Kyle,71672,1442051,6 +134365,Lucy's Neighbour,27259,97435,12 +134366,Skillet - Detention Kid,2976,1752340,66 +134367,Scrap meat contractor,81296,308445,11 +134368,Jennifer,5123,1222175,12 +134369,Jacquet,68822,1402955,25 +134370,Ben Ginsberg,14050,12438,1 +134371,Léon's Mother,188858,1170304,3 +134372,Freda Hanson,29829,112355,4 +134373,Mr. Buckley,44869,30216,24 +134374,Denver Radio Operator,18569,117772,41 +134375,Eric Swenson,86360,102502,3 +134376,Martina Schaffer,367006,53585,6 +134377,Leslie,44754,1220763,18 +134378,Aguilar,12645,31384,4 +134379,Diane Polley,128216,113286,17 +134380,maid,1568,17631,3 +134381,Tango Inaba,14537,125721,6 +134382,Eve,374618,94861,6 +134383,Schölli,254007,1304175,6 +134384,Gaby Duval,46007,134429,2 +134385,Gudrun Himmler (voice),267310,1314856,3 +134386,Anandan's wife,134477,591074,8 +134387,Priest,14881,168083,11 +134388,Buddy Bruckner,180305,518627,4 +134389,Man in Billiard Hall with Full Packet of Cigarettes,81120,3605,30 +134390,Constable George Matson,90030,151875,1 +134391,Brigstocke,72094,78329,5 +134392,Kelly,264309,150638,1 +134393,Girl in Bath Tub (uncredited),118245,1133401,8 +134394,Colonel William Mortamus,72431,17419,0 +134395,David Holmes,2982,29284,6 +134396,Beauty Pageant Audience Member,428687,1776847,25 +134397,Reuban Knat,142145,1274,1 +134398,Dancer,323675,1502670,34 +134399,Sentinel Prime (voice),38356,1749,7 +134400,Lorena,249457,1340058,4 +134401,Oliver,120802,455033,3 +134402,Dorkin,40804,9912,6 +134403,,238307,1163091,1 +134404,Sarah,1922,19997,3 +134405,,124597,1675542,17 +134406,Billy,35113,56619,14 +134407,,11328,1444476,21 +134408,,127445,1084678,5 +134409,Trevor Anderson,14977,83860,2 +134410,Carla,436,5973,14 +134411,Zuckie,15794,83812,9 +134412,Young River,16320,80428,18 +134413,H. M Soeharto,172705,1155281,2 +134414,un visiteur de la galerie,74878,580701,7 +134415,Samantha Tangent,49950,1128315,9 +134416,Lloyd Harris,32044,4785,10 +134417,Mike Bradley,70051,1205174,3 +134418,Joe Dirt,335970,60950,0 +134419,Tommy 'Tombs' Perello,7304,21798,5 +134420,Brandon Tartikoff,30330,20211,8 +134421,Peggy Carter,99861,39459,14 +134422,Georg Brandes,128900,225914,17 +134423,Zoe,199575,1196822,4 +134424,Doktorsha,184155,93548,9 +134425,Richard,70554,9979,1 +134426,Roxanne,289190,1357755,4 +134427,Sir Patrick Fitzgerald,53231,1405539,9 +134428,Roberto,18082,112209,6 +134429,Convict,104427,68653,18 +134430,Sposito,121510,52657,2 +134431,Gen. Howard,44921,81180,6 +134432,Enza Sessa,20414,8776,1 +134433,Hunter Calloway,290825,86654,3 +134434,Young Guy,360592,1512194,20 +134435,Older Orphan Boy,51249,593051,12 +134436,Zivkovic,57419,111058,6 +134437,Mother (Mrs. Fine),42623,2752,1 +134438,Tony Childress / Jesus,64942,8654,1 +134439,Nurse,93828,24243,14 +134440,Trixie,7459,6886,1 +134441,Cousine,104674,1816953,8 +134442,Milek Wertbowsky,19757,235688,9 +134443,Yippee 'Yip',97910,8729,5 +134444,Yanek Drzazga,68646,140654,0 +134445,Security Wraith,174188,59843,8 +134446,Walter Brenner,116780,94198,3 +134447,Alpher,184155,97368,3 +134448,Landremont,39413,35911,4 +134449,Khushtar,346838,1483038,4 +134450,Yvan,274483,586191,7 +134451,Red Hair,11636,130606,25 +134452,The Phynx,139718,1174353,24 +134453,,153196,1283558,5 +134454,Jim Lassiter,134806,228,0 +134455,Barbara Sebanek,22396,24730,4 +134456,Mangte Tonpa Kom,284288,593025,4 +134457,Landlady,43364,134401,5 +134458,Guard,310135,85195,24 +134459,"Gerald Tovar, Jr.",24927,5695,2 +134460,Carl,461955,82190,3 +134461,John Ramsey / John Ramsey Auditionee / Himself,430826,1510810,25 +134462,The Leningrad Cowboys,11475,1076417,9 +134463,Show Backer at Rehearsal / Nightclub Headwaiter,43809,34818,57 +134464,Andre,25646,78890,3 +134465,Katsumoto,616,3899,1 +134466,Blanca,287587,21124,9 +134467,Grandma,131799,12658,8 +134468,Eunice,181574,146025,7 +134469,Sandra Anderson,22894,61114,3 +134470,Judge,18927,83619,11 +134471,Majin Buu,126963,100126,11 +134472,Turner Simmons,88042,212184,5 +134473,,38326,550077,5 +134474,Aryan Khanna,134215,52263,1 +134475,,103875,64437,5 +134476,Jake,300667,77090,16 +134477,Andy Lopez's Wife,16083,79217,13 +134478,Lady Henrietta Kingsclere,41073,288221,6 +134479,Clifford Reynard,333663,1371848,18 +134480,Col. Coe,6341,7768,11 +134481,Thomas,55853,1138,1 +134482,Seneschal Higginbottom,278316,17838,8 +134483,Harbor Employee,246655,1099770,86 +134484,Laurence,32390,48577,4 +134485,Steven Seagull,332567,1677480,11 +134486,The Realtor,16014,202572,13 +134487,Gideon Jackson,148031,65605,1 +134488,Himself,126016,230253,3 +134489,Jesusín,127864,962179,8 +134490,Sam Lucas,107146,12149,1 +134491,,127257,109361,3 +134492,The kid (uncredited),369524,1808632,44 +134493,Denise Baker,228034,3128,17 +134494,Dolle,50318,1012144,11 +134495,Body,40127,1577027,8 +134496,Ray,34729,1689913,16 +134497,Prison Photographer,171446,34187,18 +134498,Erika Schmidt,43000,1857,9 +134499,Anwar,21567,85973,4 +134500,John,341689,1399749,9 +134501,Joel,384682,1429453,10 +134502,Nonnie Hopkins,331588,515,2 +134503,Riker's Desk Guard,2001,122257,43 +134504,Customer,14904,1484516,11 +134505,Adam Duncan,11058,52414,3 +134506,Chaz Young,192623,232499,6 +134507,Secretary,186869,1862908,36 +134508,Ellis,45726,1213238,10 +134509,Female Neighbor,29136,1793072,17 +134510,Amy,60965,19538,4 +134511,,17985,1439594,16 +134512,Nun,16135,79524,29 +134513,"Clara, Helen's roommate",362463,1518300,12 +134514,Öreg Hegedüs,86732,1504893,15 +134515,Hitchhiking Biker,62132,935841,16 +134516,Horse,380124,1569982,9 +134517,Adam Carlyle,150247,30846,4 +134518,Wendy,337789,101006,8 +134519,Marianne,86497,133717,3 +134520,Julia,280045,1035307,2 +134521,Hiker,291871,1362828,13 +134522,Martelli,94248,98102,1 +134523,Quess Paraya,16157,1462944,6 +134524,La maîtresse du chien,12169,20118,15 +134525,,202238,1041434,3 +134526,Claire,169355,1151398,6 +134527,Margherita,315872,67323,2 +134528,Mrs. Meyers,36361,157269,6 +134529,Scarred from knife,43987,129973,5 +134530,Elyot Chase,99283,19406,1 +134531,Le Planton,382598,1578135,12 +134532,Jane,20430,38674,8 +134533,Kim Lessing,69560,12547,6 +134534,Le pêcheur sympa,343702,1508643,17 +134535,Carmel,18595,37058,2 +134536,Lorenzo,173847,136288,5 +134537,Danny,358353,1477243,13 +134538,John Chivery,47084,55469,9 +134539,,135670,1103522,1 +134540,Jason,20648,131123,8 +134541,Princess Helene,26643,83390,3 +134542,Sam,55294,53200,6 +134543,Heinz,30,20661,0 +134544,Bubbles,232672,118593,11 +134545,Bukka Reddy,49028,109743,2 +134546,Ernest,152736,622844,6 +134547,,8070,1189054,11 +134548,Akro,122677,1115655,7 +134549,Mercenary #1,238302,60232,10 +134550,Policeman 2,301334,1893944,24 +134551,Little Flora,248376,1622940,14 +134552,Kominsky,62838,1210,20 +134553,Emperor Maltazard (voice),26505,46392,7 +134554,Villager,108017,1292075,5 +134555,Mr. Shim,321191,1044800,9 +134556,Philip 'Pip' Pirrip,121674,225692,0 +134557,Steve Lacey,19618,16002,1 +134558,Williamson,42123,64091,2 +134559,Martin,24971,9768,2 +134560,Webcam Teen,91679,1071704,61 +134561,Lieut. Mike O'Bannion,80775,8233,7 +134562,House,250066,1394617,12 +134563,David,346672,587020,1 +134564,Sosa,13653,74910,2 +134565,Parking Lot Woman,274479,1464956,40 +134566,Flavia,169683,119366,2 +134567,Glory,177335,23882,0 +134568,Katie's Girl (uncredited),27349,88907,20 +134569,German Officer (uncredited),72638,2907,21 +134570,Nanny,170759,1153026,15 +134571,Thomas' Mother,316885,71354,7 +134572,Dean Joshua Updike,74924,30228,5 +134573,Brian Knox,35977,558234,18 +134574,Prado Museum Guard #1,145220,1711,36 +134575,Neighbour,256092,1338706,13 +134576,Pvt. Okuda,43407,129507,6 +134577,Himself,35428,86872,15 +134578,Josina žena,259690,559493,5 +134579,Narrator,45120,10565,4 +134580,Martine Desdoits,1421,136761,10 +134581,Gilly Hopkins,331588,1008607,0 +134582,Reaver,263115,1814863,19 +134583,Rachel,253283,1141410,6 +134584,Annika Giannini,33613,79270,3 +134585,Blossom Royal,198176,1178521,9 +134586,Mother,83540,1020044,1 +134587,Benny,17317,983608,11 +134588,Norma,28425,68642,17 +134589,Patrick,71732,72254,5 +134590,Young Charlotte,387399,138770,10 +134591,Trainer (as Creighton Mark Johnsom),391757,1602209,8 +134592,Grunt (voice),411221,1396383,9 +134593,Il capitano Meucci,43195,980399,6 +134594,Detenuto,379873,1569345,13 +134595,Doctor,395992,591302,15 +134596,Nordine,37645,1048764,23 +134597,Freddie Spearman,4982,16861,7 +134598,Naughty Teacher,145135,1393315,27 +134599,Michaela,18613,8786,2 +134600,Dr. Beck,414610,21315,1 +134601,Serving Girl in Black Scarf,76714,12776,16 +134602,Molly McGrath,286567,49,4 +134603,Hiker,291871,1362830,15 +134604,Constable Haagen,333354,2047,1 +134605,Dr. Hale,9667,120833,18 +134606,Officer Clancy (uncredited),170234,144127,12 +134607,Togusa,315837,101015,3 +134608,Monica,68193,550522,5 +134609,Roy Mueller,39001,4443,6 +134610,Prof. Franck,43491,29137,5 +134611,Lt. Scottie Hallam,180929,26662,5 +134612,Van Vrinken,152570,1104843,8 +134613,Olaf,21533,114894,9 +134614,Lt. Ralf Barfuss,186869,11086,1 +134615,James Caldwell Demarest,62720,5403,3 +134616,,362154,1562569,13 +134617,Rika Mikami,36075,553623,0 +134618,Jimmy,1726,95698,23 +134619,Detective Hirokawa,37939,82461,4 +134620,stalker,142320,1271400,21 +134621,Antonio Gomez,56853,1389992,10 +134622,Everett Hammond,168217,29580,8 +134623,Perrine,129966,581208,5 +134624,Yeon-an,54111,1010892,4 +134625,Damon,51823,10843,5 +134626,Buster Evergreen,250535,1296781,17 +134627,Kenji Shimazu,31512,79460,8 +134628,Vinnie (voice),9836,59787,18 +134629,Concert Audience Member,335970,1718162,69 +134630,Sam (uncredited),87612,98571,6 +134631,Lance Gordon,38962,99355,4 +134632,Small Role,18651,1467399,51 +134633,Sir James,24442,10925,5 +134634,Wheeler,23966,96326,5 +134635,Sheriff Gordon,28820,97684,2 +134636,Cop Sergeant,240832,61623,24 +134637,Esther Hoffman,19610,10400,0 +134638,Edwin,90387,18490,5 +134639,Venusian Guard,33472,1246621,16 +134640,Primo Sidney,42473,1193328,20 +134641,Jake,63326,996224,7 +134642,,310602,1553545,14 +134643,Cécilia,57307,54165,3 +134644,Mario - the Maitre D',157898,106091,24 +134645,Fighter,71120,1872247,25 +134646,Neighbor,339994,1593378,34 +134647,Sara,118640,28660,0 +134648,Ida Goldman,108282,129551,10 +134649,The Doctor,331161,1459152,14 +134650,Waitress,44087,87859,27 +134651,Neighbor,203833,1195041,28 +134652,Pretty Girl,62728,1542375,16 +134653,Kate Veatch,9472,15286,1 +134654,Richie,94204,2231,1 +134655,,44716,1442884,16 +134656,Cheerleader / Guinevere / Woman (voice),810,936669,37 +134657,Judge Jonathan David Hancock,35404,100919,9 +134658,Bank Manager,16083,79230,19 +134659,Sitcom Girl,42188,487393,20 +134660,Aunt May,102382,35,8 +134661,Natalie Crawford,286971,59156,6 +134662,Grandpa Longneck,24556,9601,10 +134663,Tullk,283995,2478,25 +134664,Шахматист в гостинице,20871,1189304,11 +134665,Jessie Mae Jarrett,54796,57905,1 +134666,Jane Crown Jones,47863,1331988,13 +134667,Member of countermeasure meeting,43113,1481122,73 +134668,Moira Yulin,29542,98817,1 +134669,Raghav's father,393562,52768,3 +134670,Bobby Nye,78691,26142,8 +134671,le chauffeur de taxi,62012,4817,3 +134672,Sir Dennis of France,26643,1542481,12 +134673,Mickey Mouse,45665,2106,0 +134674,Ellen Frye,201485,1183609,5 +134675,Anton Wörndl,12523,18711,4 +134676,Stine,33340,937646,6 +134677,Francisco,338438,45984,6 +134678,Daria,138544,209038,0 +134679,Daisuke Uehara,128169,91873,1 +134680,Young Paul,242310,1315801,7 +134681,Jenny,32609,18765,1 +134682,Corporal Hector Negron,12412,10964,2 +134683,Lt. Howards,75162,1563603,7 +134684,Jackson,127560,1205492,11 +134685,Dr. Lynn,169794,159849,2 +134686,L'Allemand,103597,20853,6 +134687,Police Captain,179826,1367502,26 +134688,Adam Sessler,120802,1236316,20 +134689,Frank's father,171648,1479324,7 +134690,Horace Debussy 'Sach' Jones,156603,33024,1 +134691,Amy,71670,563641,12 +134692,Supergirl,460135,1644095,3 +134693,Tommy,262958,1401544,17 +134694,Docent Frątczak,31856,146879,10 +134695,,186971,1605813,30 +134696,Vespucci,406992,35516,7 +134697,,31462,4606,21 +134698,Carmen,162282,8776,1 +134699,Matt Busby,62441,15336,3 +134700,Telmo,82968,147100,1 +134701,Kap (Vic),64450,934088,4 +134702,Maria Escobar,307081,1089873,22 +134703,Charlie,44945,1799474,30 +134704,,110608,1050084,11 +134705,Arian,211139,980234,1 +134706,Malcolm Young (voice),86305,1248,0 +134707,,64328,60093,41 +134708,Restaurant Patron / Dancer,45013,1539476,45 +134709,Grant,92635,21315,2 +134710,Yaki Cooper,168552,1150433,1 +134711,Silvia,77137,227521,3 +134712,Schwester Sirin,308174,1006787,23 +134713,Mary,100770,1025618,6 +134714,Diner Lady (uncredited),277710,1457224,40 +134715,Cassius Clay aged 18,69903,174373,10 +134716,Kenny,254869,95607,37 +134717,"Colin Williams (segment 1 ""Enoch"")",41035,106612,7 +134718,Detective Harvey Bullock (voice),17074,33492,13 +134719,Stefanie,52039,145209,1 +134720,Grantland D. Farns,249264,13994,3 +134721,Galuppi,84097,148871,5 +134722,Duquesa,145481,37841,7 +134723,John Bigelow,78318,939737,21 +134724,Lou,257447,1696905,9 +134725,Chief Lu,60568,229302,5 +134726,D.J.,91548,1418957,7 +134727,Matt,77875,119807,9 +134728,Oscar,119364,40191,4 +134729,Voice,55624,1414419,3 +134730,Matze,130739,5600,1 +134731,Junky Girlfriend,241254,1388485,21 +134732,Kindly Alien (voice),86828,383,19 +134733,Gallery Guest (uncredited),96724,1536116,53 +134734,Jeremy,405882,1364494,26 +134735,Lam Lok,18747,20519,0 +134736,Lauren,16996,114602,11 +134737,Tiny Shorts Guy,10761,60633,12 +134738,Jane Spofford,6069,4038,2 +134739,Lyla,126323,54499,0 +134740,Biki,155597,51744,3 +134741,Vanessa,279179,1328431,7 +134742,Perry,266425,1313144,16 +134743,Private Wilbur,340275,122546,48 +134744,,375742,1564293,25 +134745,Seleznyova,57775,1878412,4 +134746,Dolores del Paso de Lastre,69060,961830,3 +134747,Briggs,38684,186164,34 +134748,Renato,43646,119991,0 +134749,Sailor Venus / Minako Aino,37100,111372,5 +134750,Jessica,359255,1508171,1 +134751,April,28340,1795292,18 +134752,Юрий Проскудин,46010,1190345,4 +134753,Agent Crawley,48843,46899,2 +134754,Harry,358895,134424,11 +134755,Guiseppi,26182,95725,10 +134756,John Ramsey / John Ramsey Auditionee / Himself,430826,1891536,47 +134757,Carlita (voice),115223,936991,9 +134758,Reza,180299,1307923,14 +134759,Susan,180607,205797,2 +134760,John Mark Karr / John Mark Karr Auditionee / Himself,430826,1891565,68 +134761,Referee,71120,1872174,12 +134762,Mrs. Ong,188598,1776747,6 +134763,Passerby (uncredited),14615,1152729,65 +134764,Fred McSweeney,91627,83411,4 +134765,Various roles,41076,576473,6 +134766,Ming,118131,1066898,5 +134767,Restaurant Patron,77930,1784678,77 +134768,Herself,27637,1724705,50 +134769,Peter Weyland,70981,529,2 +134770,Anne de Villemont,4930,40056,1 +134771,Radio Listener (uncredited),28000,1315621,33 +134772,Jacques Grandier,42215,24699,7 +134773,Dancer,10096,1220575,45 +134774,Sarcastic Teacher,22881,226537,13 +134775,Deni,11358,71128,6 +134776,Ärztin,94336,49766,7 +134777,Mobster (uncredited),4982,118389,96 +134778,Daddy Stone,46420,76940,4 +134779,Bettina Giacobetti,75001,282086,1 +134780,Usherette,97797,143690,9 +134781,,73208,24682,9 +134782,Leanne,21141,15905,17 +134783,Arnet McClure,25426,91725,1 +134784,Slim - a Guard,14589,33969,23 +134785,John Graham,352719,93123,2 +134786,Adam,235260,1698776,17 +134787,,74674,1122494,16 +134788,Abbas,43984,1351402,3 +134789,Sam Corwin,73348,1750,5 +134790,Mr. McIntyre,51571,85736,10 +134791,Toivo Kärki,32099,108855,7 +134792,"Laura, la governante",43195,15136,3 +134793,Detective Shibusawa,12720,68973,2 +134794,Michelle,115283,56731,8 +134795,Jack Woodman,19665,1242148,28 +134796,Detective Loki,146233,131,1 +134797,Tom Wade,229610,103071,2 +134798,'Shorty' Cameron,207178,16531,5 +134799,Emma McFee,13079,78119,3 +134800,NY1 News Anchor,102382,1480047,45 +134801,Joe,151431,1131502,4 +134802,"T. L. ""Biff"" Grimes",76465,5788,0 +134803,Himself,15258,122807,28 +134804,Ambassador Larry Smith,16082,10657,9 +134805,Sandlot Kid #1,15213,1075013,6 +134806,Gordon,85494,95010,4 +134807,Linda,1450,1570199,17 +134808,Officer Jang,18374,1128004,5 +134809,Diana Joven,74192,955,3 +134810,Tatyu Vinchu (voice),304134,123316,6 +134811,Bully,85265,1494958,26 +134812,Ted Hayden aka Gat Ganns,40799,4165,0 +134813,Aaron Tyler,23683,51670,1 +134814,Abilene Judge,75315,90333,32 +134815,Crewcut Hunk,39345,27763,14 +134816,Jennifer Linden,43092,15201,3 +134817,,194853,930476,15 +134818,Marty,371446,60874,6 +134819,Ben,37269,97844,11 +134820,Chewing Native,89086,97045,29 +134821,Lisa,271718,552243,27 +134822,Military Guard,28710,1162540,11 +134823,Gautham,69635,85720,0 +134824,Aunt Betty,19794,58928,18 +134825,Detective Vincent,30361,5502,5 +134826,,52560,56145,5 +134827,Flashback Dancer (uncredited),222872,97880,8 +134828,Mickey O'Malley,71140,11885,3 +134829,Mr. Caine,142216,37712,3 +134830,Dr. Castillo,56815,225013,3 +134831,Sarah Hawks,93828,127558,5 +134832,Tagria,150223,1870827,14 +134833,. Andy,18682,83434,3 +134834,President Ulysses S. Grant,148031,16558,5 +134835,Hideo Nomoto,37939,21499,2 +134836,Arnold,32235,9629,10 +134837,Neidhart,122487,26507,5 +134838,Schlomo (adult),1986,20438,2 +134839,Mr Yao,220724,1357804,11 +134840,Charlie,26405,42841,4 +134841,Constable Jenkins,74314,103185,9 +134842,Cavalry Lieutenant Collins,26502,38761,7 +134843,Gabriella,51250,82662,5 +134844,Mr. Penprase,3023,218364,18 +134845,Janet,8981,3077,9 +134846,Queen Mary,65035,20300,4 +134847,Kawalerowicz,72421,41965,4 +134848,Sweet Beaches Dancer,243683,1398165,71 +134849,Dracula,340684,1468344,8 +134850,Rhonda,74465,54708,10 +134851,Anton Kalenin,81030,130222,9 +134852,Diane,22897,104998,7 +134853,Morgan,40229,1434837,5 +134854,Melissa,17216,37014,2 +134855,Niala,196235,1237528,9 +134856,Jed,21583,56251,5 +134857,Michelle,43753,129803,9 +134858,Nihat Abi,64468,145733,2 +134859,man confessing to Franciscan monk,59147,4955,6 +134860,Reaper,34796,131047,8 +134861,Michael Cohen,10362,144582,6 +134862,German Lady #2,4538,1322085,16 +134863,Puppeteer,9870,1579469,24 +134864,Woo-Jin,338729,1347525,5 +134865,Kyle Cummings,15022,86046,14 +134866,,268099,1316482,2 +134867,Toma Fujihira,19506,45999,2 +134868,Attendant,52437,1468404,28 +134869,la mère,76821,580594,8 +134870,,188640,85891,5 +134871,Father (voice),77294,935193,5 +134872,Calf (voice),91673,1391938,3 +134873,Patrick Bales,5460,43444,2 +134874,"Galen, son of Kainen",10529,1032340,13 +134875,l’homme dans l'ascenseur,39978,25182,10 +134876,Plimpton,288980,6573,2 +134877,Marie Palesi / Mary Magdalene,64942,1137,0 +134878,Himself,23524,93283,6 +134879,Baronin / Baroness,28480,100898,8 +134880,Turkish Controller,20674,149507,32 +134881,Лёша,20963,86860,0 +134882,Sophie,50161,232597,4 +134883,Jerry H. Young,81110,13576,0 +134884,Lap Dancer,4964,99803,27 +134885,Jennifer,42941,134608,8 +134886,Carmela,61799,4959,1 +134887,President des Tribunals,124013,1270375,5 +134888,Mr. Kim Tin Chun,18763,62427,10 +134889,Orm,360249,1018,4 +134890,Isabelle,70815,123256,4 +134891,Maddox,22020,100294,5 +134892,Boxman,14669,1574238,22 +134893,Kathleen,348631,1499329,16 +134894,Farm-hand,11656,1192604,12 +134895,Lefty Jones - Orderly,28433,54938,7 +134896,Rozina,198890,1146414,13 +134897,Henneberg,374475,20266,14 +134898,Corporal Jim Montgomery,176867,8726,4 +134899,Isabelle,181456,42934,0 +134900,Mayor,26962,22018,6 +134901,Killian,286372,1327853,0 +134902,Kylie (Sunshine's wife),158990,82341,11 +134903,Acne Faced Boy,10604,16566,9 +134904,Mickey's Gym Doorman,312221,101615,36 +134905,Le notaire,101330,39098,3 +134906,Aditya,413882,142626,1 +134907,Johnny Ray,356500,1041440,2 +134908,Cooper Harris,9352,54414,1 +134909,Malcolm,282963,7400,3 +134910,Alice,88042,3141,2 +134911,Casey Wells,9812,11155,0 +134912,Aunt Milly Forrest,43808,85956,8 +134913,Oficial,95536,130713,8 +134914,Bartender,29260,3338,6 +134915,Topaz,284053,15298,29 +134916,Dr. Gina Atwater,14830,1310333,4 +134917,General Verdugo,37308,29282,3 +134918,Pete,415633,1164758,6 +134919,stage director,48962,141594,11 +134920,Mabouloff,2963,11523,0 +134921,Strict Nurse,55347,235853,25 +134922,Narrator,159142,18307,1 +134923,H.G. Wells,79833,29527,0 +134924,Adal,83342,1057525,7 +134925,Nickie Grace,18530,31383,2 +134926,Maksim Perepelitsa,174720,1190179,0 +134927,Jay Chan,43931,205862,7 +134928,Jeannie,93562,10487,1 +134929,HP,86985,6134,3 +134930,Helén Falk,141267,5024,8 +134931,Tina,118957,138010,0 +134932,Evo's Mom,22579,930457,4 +134933,Queen,68191,30538,8 +134934,Trent,11584,22490,8 +134935,Sofya,77986,278180,3 +134936,Colonel Fitz,364410,378,1 +134937,B-Dawg (voice),149910,1185799,2 +134938,Lickboot,22582,65598,3 +134939,Anne Parkson,29236,81282,2 +134940,Mrs. Schmidt,34127,120170,15 +134941,Peter Binda,55989,78439,6 +134942,Anna,352327,974169,3 +134943,Jay,97614,56365,2 +134944,Paul,210052,1630634,7 +134945,Tej (as Chris 'Ludacris' Bridges),168259,8171,5 +134946,Hung's man,53168,1135966,7 +134947,"Danya, night salesman",218443,1262335,0 +134948,Tayho,67174,223190,1 +134949,Le Boucher,39358,20442,3 +134950,Carl,44690,60606,4 +134951,Quad Student,38322,1869034,27 +134952,Mother Squirrel (voice),28118,1283,0 +134953,Wheezer (as Hal Roach's Rascals),190352,1055291,1 +134954,Bearded Man,315837,1774435,23 +134955,Tom,362180,1790563,9 +134956,,85126,21523,7 +134957,Lasses ex-flickvän,76846,342911,8 +134958,School Teacher,51999,1409657,21 +134959,Heller,195269,28004,1 +134960,Prison Warden,179603,33362,7 +134961,Ng Tung / Fatman,37984,25251,4 +134962,Hôichi,51890,45993,2 +134963,Staff Sergeant Skeer,43670,5576,3 +134964,Greg,68684,562583,20 +134965,Le loueur de chevaux / The Stableman,54563,150922,9 +134966,Densel,31713,81973,6 +134967,Piccolo,38594,85286,6 +134968,Esposa de Macario,122019,83394,1 +134969,Kid #2,147939,1127750,6 +134970,Desk Guard,52520,208677,22 +134971,Newscaster,72105,1502863,45 +134972,Sydney,27338,5274,2 +134973,Tai Bo,21519,1174365,4 +134974,Terrence Lucas,4982,164382,30 +134975,Unferth,10529,175203,6 +134976,Lo,36628,116526,0 +134977,The Shopkeeper,414977,825,4 +134978,John Lovett,308032,132712,13 +134979,Yesterday,6934,2609,0 +134980,Bill Fordham,152737,3061,3 +134981,Himself,209112,1217309,37 +134982,Fred - Mechanic,176867,119255,36 +134983,Captain,113638,1057614,1 +134984,Woman (uncredited),33025,1080623,16 +134985,Jodo,15371,617,9 +134986,Krankenschwester,10500,17718,11 +134987,Security Officer,44945,1738267,31 +134988,Detective Wilson,105902,5570,10 +134989,Ruthven,43875,233117,9 +134990,Reiger,26358,1370,1 +134991,New Year's Celebrant (uncredited),88075,121323,12 +134992,Hombre Atractivo #1,280840,1316023,9 +134993,Goff,3087,30280,14 +134994,Retty Priddle,101915,130414,20 +134995,Roy,20842,565515,6 +134996,Spud (voice),27300,1226830,1 +134997,Pashow,8340,54610,2 +134998,Fritz Messing,13668,18082,1 +134999,Sveta,371459,1554021,8 +135000,Subalterno,335053,1061545,29 +135001,Lt. Bennett,118900,194923,17 +135002,Herself,37315,117418,7 +135003,Ayse,1294,683,4 +135004,Luc,402446,58014,4 +135005,"E. O. ""Frosty"" Frost",239519,5792,3 +135006,Bessam's wife,12113,41645,15 +135007,Steve,48959,26862,2 +135008,Teddy,177902,1167388,11 +135009,Shatuo Zhong,217923,1254211,7 +135010,Big John,403570,112705,9 +135011,George Johnson,40761,120070,6 +135012,Byron Wilder (Channel 8 traffic reporter),10694,27448,3 +135013,Krestyanka,150223,1158688,26 +135014,Popescu,52021,555533,7 +135015,Mike Rodgers,15613,418,1 +135016,,36246,1402854,13 +135017,Hot Girl,158382,1522583,4 +135018,,84016,1151218,7 +135019,Mrs. Parry,83015,1386385,25 +135020,Stuart,23830,66580,5 +135021,Kyle,14923,1214127,10 +135022,Jonas Muller (voice),9389,590963,14 +135023,Agatha Alden,82178,8232,8 +135024,Bart Leadly,84905,8496,6 +135025,Resturant owner,76864,6283,10 +135026,Grandpa Harold,72207,1080265,20 +135027,Faye (voice),330947,35081,21 +135028,cancelliere del giudice,73827,556758,18 +135029,Hubert's Wife (uncredited),359412,1506243,25 +135030,,191476,18054,3 +135031,Nurse in Dr. Forrest's Office,124115,1079577,17 +135032,L'interne,10484,579294,16 +135033,,44436,130849,8 +135034,Le Locataire diabolique,49271,11523,2 +135035,Vedalam's Sidekick,362150,544893,14 +135036,Cecco / Pirate / Indian,273106,1519561,16 +135037,Bessie,21250,87819,11 +135038,Seymour,414977,155173,5 +135039,Local News Reporter,5172,109529,33 +135040,Debbie,54396,938745,3 +135041,Virology Technician (uncredited),51999,207004,24 +135042,Luis,924,51036,14 +135043,Joe Cantwell,37315,19153,1 +135044,Pipo,35025,1435355,23 +135045,Background actor,52454,1630348,65 +135046,Koichi Todome,30198,105816,0 +135047,Max Brogan,15577,3,0 +135048,Ana Khesarian,354859,1021684,1 +135049,Tony Hunt,45562,70903,6 +135050,Corrado,22182,88471,3 +135051,Himself,324181,102937,14 +135052,Kenji nomura,81560,1041475,5 +135053,Penguin (voice),353595,78798,10 +135054,Chuzara,20880,94636,3 +135055,Servant,104477,1401868,1 +135056,Pinkie Wingate,90932,9066,0 +135057,,14217,223290,15 +135058,,461088,1830647,7 +135059,News Producer,74,505,5 +135060,Gabby Emery,335872,158833,3 +135061,Eloisa,35395,114254,2 +135062,(uncredited),68822,1187536,36 +135063,Ms. Green,168022,1272221,8 +135064,Yung Fei,38099,119643,0 +135065,Receptionist,91391,558291,6 +135066,Embassy Staffer,318781,1195518,42 +135067,Mr. Logue,12855,43304,3 +135068,Julie Richman,19053,79741,2 +135069,arbetsförmedlare,49940,544708,13 +135070,Gerhard Schorn,82941,932670,4 +135071,Jewel,33557,6587,2 +135072,Detective Kate Tunney,9785,59240,6 +135073,Paula,21001,53561,3 +135074,Fa,147590,1619,0 +135075,Marie-Anne Gagnon,16147,79608,2 +135076,Mercedes,130457,144764,3 +135077,Sam Tucker,45219,31551,0 +135078,,128120,1086400,1 +135079,Farge,70119,1510581,7 +135080,Bowling champion,18381,227608,12 +135081,Messenger,89086,1469280,31 +135082,Otets Aleksandr,51275,125737,0 +135083,Natasha,405670,1647914,1 +135084,Hopwood,19621,1408411,7 +135085,Theodore,9950,5302,17 +135086,Sally,69165,100560,4 +135087,Sari,124517,1080198,0 +135088,Thierry,98277,1849105,18 +135089,Savannah Snow,109491,1074676,10 +135090,Phil Dreyer,56669,21731,2 +135091,Slapping Girl,23367,95368,18 +135092,Rob,56809,1833800,7 +135093,Herself,411013,1799842,8 +135094,Marc-Antoine Lebrun,157787,77735,4 +135095,Rose,71139,133456,12 +135096,Ritzie,37731,107634,13 +135097,Anna,206237,82789,0 +135098,Julia Ramírez,84354,98239,9 +135099,Robert,262454,24379,1 +135100,Flipz,109417,1046144,7 +135101,Connie Bailey,13912,97980,4 +135102,Kyle,26688,34202,18 +135103,Pvt. Arikawa,43407,30567,5 +135104,Parking Officer,48281,219630,19 +135105,Ernst Åkerblom,41764,6001,8 +135106,Joi,45243,1256326,21 +135107,Jogger,214756,1743022,51 +135108,Roy's Friend,356752,1841501,21 +135109,Turtle Wong,47647,1329775,3 +135110,Himself,281590,1340883,1 +135111,Mr. Das,115109,95967,19 +135112,Store Clerk,360592,1512201,27 +135113,Poke,13519,3205,29 +135114,Miss Hansen,140825,35589,3 +135115,Une girl,258384,39471,28 +135116,Hannah,374618,1315036,1 +135117,Himself - The Band,14770,76136,1 +135118,Moça que tem namorado,296288,1839930,33 +135119,Mark Jones,62441,224192,11 +135120,Jack Benson,55638,14671,5 +135121,Valérie Fournier,41277,1575504,19 +135122,Hugo Lombardi,117550,1111991,3 +135123,"Uncle Roger (segment 1 ""Enoch"")",41035,39952,5 +135124,Adam Konitz,54523,101575,2 +135125,Ajani,340275,1531597,31 +135126,Riot Police Officer / Bartender (uncredited),340275,1531623,69 +135127,Himself,206657,143470,1 +135128,Moist,14301,53863,3 +135129,L'homme du bar,12446,24545,13 +135130,Klaras Grossmutter,58757,46765,8 +135131,Berliner at Window,145220,8436,29 +135132,Alvin Firpo,23719,56159,2 +135133,Himself,190940,224223,21 +135134,Isabella,18165,63522,2 +135135,Commissario Giordano,163,8772,26 +135136,Heather,19918,59237,3 +135137,Belfrage,197785,5792,5 +135138,Martin,261112,1304488,3 +135139,,128671,100804,2 +135140,Andy - Thug,250332,124882,33 +135141,Hindu Girl,57993,129427,7 +135142,King Charles I,31675,12248,1 +135143,Chris,55730,1233,3 +135144,Mrs. Baker,21765,28640,0 +135145,Dad,20034,86480,9 +135146,Frank,304372,39465,17 +135147,Student,336011,1560248,18 +135148,,282024,96516,3 +135149,Gut,21338,87402,8 +135150,Emmanuelle,28573,97929,0 +135151,Marty Faranan,86838,72466,0 +135152,Himself,172004,38909,9 +135153,Connor,330011,1251119,7 +135154,Susie Sachs,118245,96740,1 +135155,Cliff Parsons - Keller's Pilot & Asst.,47404,84234,11 +135156,Baseball Player,367732,1537755,12 +135157,Big Al,243935,1271,2 +135158,Proprietaria del negozio di giocattoli,57918,306471,6 +135159,Abbie Santini,26517,100508,3 +135160,Mr. Sehgal,21566,109173,3 +135161,Mel,314420,1405969,3 +135162,Carl's Mother,51800,1317369,9 +135163,Lord Mere,43850,12689,3 +135164,Teresa,246133,82381,12 +135165,,135286,1344593,5 +135166,Саша,20963,86862,2 +135167,Yomoshichi,84508,1024335,4 +135168,Mochilera,121929,1886066,8 +135169,Senora Messina,123961,121354,7 +135170,le prêtre Rafael jeune,68202,1745067,7 +135171,Rose,33557,11164,3 +135172,Katie Jones,201485,96023,2 +135173,,143068,1118286,4 +135174,Joanne Smith,70772,559659,9 +135175,Soldier at Roadblock,245703,1411644,27 +135176,Alicia Roberts,95140,59928,9 +135177,Poppy ghost,62439,1296101,8 +135178,The Brian Sisters,38769,1298835,16 +135179,Commissario,103218,27272,2 +135180,Al (Theatre Company),32088,2440,8 +135181,Auditionee,2976,1752728,92 +135182,Eric Sarin,222461,6623,2 +135183,Gyuumao,126963,126690,21 +135184,Eddie,15356,80661,16 +135185,Harpist Assassin # 1,9470,1173224,11 +135186,Viktor,146416,142508,2 +135187,Robert Michael Giles,267852,1388525,4 +135188,Konstanze Dornhelm,9010,56572,3 +135189,Mr. Kaiser,43931,1215617,13 +135190,Guy Burgess,120729,27554,0 +135191,Himself,26326,80492,9 +135192,Graciela,51976,1094174,3 +135193,Jason,387957,88905,13 +135194,Senator,89086,83993,28 +135195,,243473,1038909,1 +135196,Mona Jensen,22140,83011,5 +135197,,402612,125365,9 +135198,Barak,19495,84734,7 +135199,Luke Rivers,19989,27763,0 +135200,Mathurine,237796,955,3 +135201,Bob Selkirk,42871,98450,8 +135202,Padua - Horn's Assistant,35921,54450,12 +135203,Le policier,59118,1395705,35 +135204,Drex (voice),149910,8265,18 +135205,Dr. Nyman,345925,72305,3 +135206,The Girl,53419,21301,2 +135207,Penelope Wilson,23853,12134,4 +135208,Aum,17111,1629445,16 +135209,Manuel Valdes,40826,124743,4 +135210,Lip Gloss Girl,237584,1424380,17 +135211,Sachbearbeiterin,12575,53028,10 +135212,Marv Brickman,274479,1080882,44 +135213,Asher,431093,1394235,2 +135214,Yoko Shimazaki,101752,1028525,4 +135215,Trish,62492,28640,2 +135216,Mrs. Jones,83015,1200463,28 +135217,,79580,587511,5 +135218,Old Man,30708,8496,16 +135219,Filha de João,248543,1877260,14 +135220,Fiona,11247,38334,1 +135221,Noel Riordan,83714,9029,1 +135222,,31018,33,6 +135223,Nalle,19181,1024803,11 +135224,,29832,212,5 +135225,Crony,72574,566645,17 +135226,Tyree,11509,20495,30 +135227,Mrs. Marie Roark,26323,3380,1 +135228,Pharmacist,8899,586276,9 +135229,,47448,1111984,15 +135230,Samon Yotsuya,68715,72393,9 +135231,Sin,50318,53768,18 +135232,Com.te Ed Straker,267497,108277,1 +135233,Stan,16996,35236,17 +135234,Tony Krum,170517,7505,0 +135235,Pushpa Bhargav,20623,1661735,16 +135236,Carolina,348611,34408,3 +135237,Mum,55343,1216423,6 +135238,Frau Ivanescu,217412,1421622,12 +135239,Bernie von Beam / Artie Fol (voice),33427,34982,3 +135240,Pete Perkins,8053,2176,0 +135241,Aerobics Instructor,9779,169511,33 +135242,Fourth Woman,11161,59407,10 +135243,Saucy Wood Nymph,10482,3971,10 +135244,Young Filippa,11832,1429988,3 +135245,Himself,324173,32600,2 +135246,Frank Sirrianni,71320,73022,1 +135247,,22701,143348,7 +135248,Cassey Jordan,44634,18284,1 +135249,Art Buyer,33481,110766,15 +135250,Arlene,239519,14655,4 +135251,Herself (uncredited),15199,9209,19 +135252,Jamie Bennett,508,5472,8 +135253,Loven,377290,1309637,8 +135254,Mulray,62761,121417,13 +135255,Prisme,49084,544115,2 +135256,Miner at Radcliffe Colliery,28421,543546,37 +135257,,268618,41169,5 +135258,Lee Jung-chool,363579,20738,0 +135259,Anja,291907,1362892,3 +135260,Porter Lee Austin,27196,6840,2 +135261,Wife,56599,91288,1 +135262,Sarah,19719,85095,3 +135263,un jeune gars,18826,71811,7 +135264,Kate,71866,60073,2 +135265,King (voice),15906,172776,7 +135266,Seok Du,82469,1097452,6 +135267,Wallis,238398,62561,2 +135268,Man on Train,332872,119972,16 +135269,,153420,556787,12 +135270,Peri,15534,34490,2 +135271,Laughing Psychiatrist,47057,90200,7 +135272,Francisco,41115,125502,10 +135273,Tina,151509,1549537,8 +135274,Igor,241140,938096,2 +135275,Eva Khatchadourian,71859,3063,1 +135276,Luthor 'Suitcase' Simpson,110148,92276,2 +135277,Kevin,20055,19225,2 +135278,Bully Bason,151431,43791,11 +135279,Frat Boy #2,339403,1455813,24 +135280,Acid Woman in White,30492,98146,12 +135281,Ay,353462,2282,1 +135282,Grover Girl,32657,1507601,41 +135283,Engineer,42476,103069,8 +135284,Li Feng-bo,57100,1133858,3 +135285,Karen Boyer,9080,56933,3 +135286,Wild Wright,38978,110486,15 +135287,Frank Veldini,74057,35516,3 +135288,Rose Gonzalo,340187,1422977,3 +135289,Salvatore Mancuso,106155,281143,6 +135290,Roméo,73562,79033,1 +135291,Det. Frank Shaw,17317,6864,2 +135292,Fong Fong,16687,1184076,2 +135293,Kurt,409536,1340883,6 +135294,Luster,287636,1502947,16 +135295,Henchman (uncredited),331313,1767216,44 +135296,Sadie,89492,41090,3 +135297,Peggy Grant,987,4038,2 +135298,Arthur Keats,25736,7668,3 +135299,Annie,332079,2934,15 +135300,Charlie,31428,1412168,15 +135301,Mila,113091,20403,1 +135302,Cameron of Lochiel,189682,108103,9 +135303,Hassan's Wife,43984,1088243,1 +135304,Brewer,183832,948848,11 +135305,Mrs. To,26005,130502,4 +135306,Scag,107319,1559621,6 +135307,,54959,146971,8 +135308,Catalina Guzman,16382,7351,0 +135309,Martha,99318,11498,3 +135310,Pris,13946,99014,3 +135311,Strip Joint Stripper,354979,1835262,45 +135312,Eduardo,10710,111214,9 +135313,Friedl,359483,42877,7 +135314,Phelps,1723,8875,6 +135315,Albagon (voice),35177,18364,6 +135316,Georgia,126927,34901,8 +135317,Wade Wilson / Deadpool / Weapon XI,2080,10859,4 +135318,Hélène,52049,131827,5 +135319,Cemsit,31412,556907,1 +135320,Samson,2241,27627,15 +135321,Noah,236324,1896138,12 +135322,Lily,84348,111692,3 +135323,Himself,13516,939082,20 +135324,Nais,211139,30664,6 +135325,Nurse,114444,1115626,8 +135326,Coffee Shop Patron,84228,1082355,12 +135327,Tom Barkley,184578,47881,6 +135328,la fille qui tapine,64407,39441,6 +135329,Joe,238749,44103,5 +135330,Hostess,323675,1604964,29 +135331,,116312,1459203,29 +135332,Frau Becker,19029,203526,7 +135333,Tusse,9943,38392,12 +135334,Teaterpedagogen,33786,111365,7 +135335,BBC Interviewer,43711,994133,10 +135336,Alex Martin,91627,44933,2 +135337,Himself,37003,82426,2 +135338,Neil Fletcher,6972,1371,3 +135339,Micaela (Loes Kamma),121888,1172554,2 +135340,Begzada,177155,1140904,6 +135341,Yeongbin Lady Lee,315439,150126,7 +135342,Annie Tolgen,89269,204468,3 +135343,Guard,1726,78299,13 +135344,Scooby,359870,1807042,17 +135345,Driver,27873,227099,8 +135346,Limo Driver,41733,142373,8 +135347,Pock-Face,76170,1205489,12 +135348,Heather Fasulo,6948,51536,0 +135349,Narayanan,69401,583956,5 +135350,Pearl Farmer,14047,55314,4 +135351,DJ,348320,1869093,24 +135352,Fat Amy,353616,221581,1 +135353,Corner Man,71120,1872176,14 +135354,Bit Part,18651,1179587,67 +135355,Empress Chi Chi's Attendant,33343,1188790,22 +135356,Moo Myeong,293670,1263930,2 +135357,Mr. Wall,101998,1177638,22 +135358,Dokter Victor Verbeecke,68444,13514,4 +135359,Eliza,315010,590939,14 +135360,Notre Dame Coach Harper,43812,95666,43 +135361,May,10753,1338,1 +135362,Himself,128190,112200,0 +135363,Himself,14923,78576,54 +135364,Jessica,14569,1607174,5 +135365,,38359,86836,4 +135366,Damon (voice),115223,936990,8 +135367,Young Oliver,107985,206155,12 +135368,Alan Kramer,366631,52703,5 +135369,Young Tsotsi,868,13111,14 +135370,Wardrobe Designer (uncredited),10096,83920,49 +135371,Sister Giulietta,83782,131329,3 +135372,,335340,1452465,1 +135373,Rep. George Jansen,109441,3461,12 +135374,Jack,13827,57755,3 +135375,,408550,1658135,6 +135376,Wilbur Wright,10204,887,24 +135377,Chernov,242310,52762,16 +135378,Laura,204771,1187202,2 +135379,Jake,34729,1689915,20 +135380,,295621,76309,0 +135381,Will,64678,34111,6 +135382,Toby,322548,1231532,10 +135383,Tom,41171,125686,5 +135384,Herself - James's Wife,84185,1341529,9 +135385,Alex,339419,1498512,18 +135386,Mom,85350,4687,1 +135387,Estes,169298,1011071,6 +135388,Ogre Baby / Tourist Girl / Villager Girl (voice),10192,76744,25 +135389,Nightclub Master of Ceremonies,228647,120716,15 +135390,Eetla (as Katariina Lauk-Tamm),46857,137537,0 +135391,Bill,60307,51533,9 +135392,Ellen,260947,79905,5 +135393,Marty,58,4030,13 +135394,Chief,168616,55584,5 +135395,Himself,28036,99917,10 +135396,Osborne,255388,12502,6 +135397,Prof. Siletski,22998,12515,5 +135398,Dolly,27443,95965,3 +135399,Patrick,11024,13922,4 +135400,"Moore, a Pilot (uncredited)",103938,1027243,14 +135401,Background Break Dancer,10362,1758904,35 +135402,Irene,87311,36169,1 +135403,Joanie,44936,131764,2 +135404,Diner Patron (uncredited),244786,1503849,40 +135405,Beaver Girl (voice),8355,125025,20 +135406,Nurse,246355,108677,2 +135407,"Special appearance in song ""Kaal Dhamaal""",20132,85693,12 +135408,Wilhelm,58166,934378,8 +135409,Mutant Elite,33005,223291,18 +135410,Roman Pearce,337339,8169,4 +135411,Chief Ramón Garza,256474,40481,2 +135412,"Clip from 'Dance, Fools, Dance' (archive footage)",33740,32436,54 +135413,Mikey,307081,72988,10 +135414,"Fritz Kümmel, Koch",122435,1001883,6 +135415,Detroit Bartender,20536,163029,8 +135416,Elise Laird,95807,35551,1 +135417,,277631,131120,7 +135418,Norman,39194,98477,3 +135419,Anna,30844,109548,8 +135420,Kosh,34672,62245,5 +135421,,124517,1885266,3 +135422,Abschnittsbevollmächtigter Mauder,259358,6086,1 +135423,Crazy Horace,267931,169653,14 +135424,Dr. Jan Matuschek,122435,53886,4 +135425,Elizabeth,20846,16578,3 +135426,Barbie,227200,74358,0 +135427,Himself,144680,1847922,11 +135428,Mr. Mason,56558,34286,14 +135429,Bodyguard (uncredited),2288,30450,15 +135430,Deven Chaudhary,277229,42803,0 +135431,Orloff,229134,34596,1 +135432,Makino,16907,85285,11 +135433,Audition Girl,24469,1579248,27 +135434,"Massimo ""Max"" Totti",14096,1381690,2 +135435,Dr. Elliott,74777,216570,14 +135436,Stewardess,351242,1328264,9 +135437,Viper 1,1726,1209419,29 +135438,Basketball Player / Party DJ,306952,1511974,31 +135439,Mitch Becker,254047,1371251,1 +135440,Reuter as a Boy,109716,10165,11 +135441,Doctor,41380,1179221,18 +135442,Rebecca Mercer,38162,13445,2 +135443,Mister Potato / Frank (voice),52264,96119,26 +135444,Dr. Evazan,330459,17078,21 +135445,Lorna Miller,74527,10487,1 +135446,Jennifer,137683,18974,1 +135447,Lily,352719,39802,10 +135448,Yakuza Gunman,315837,1848092,36 +135449,,143073,1118292,7 +135450,Sacco - Theatre Guard,58402,240914,7 +135451,Mr. Baker,20312,521,8 +135452,Arnould,74822,2168,4 +135453,Louise Potter,43656,54887,1 +135454,Viscount,101998,67713,21 +135455,Olka,425961,82312,5 +135456,Canon,80280,1602305,15 +135457,Jen Coburn,134238,1021847,1 +135458,Hassansin Whip Man,9543,169691,10 +135459,Pond-Jones,273167,656,6 +135460,Suegra de hombre suicida,41298,987346,18 +135461,Mo Pleasure,13576,1449381,6 +135462,Kevin Rawley,693,887,9 +135463,Atsuko Kagami,189151,83526,0 +135464,Mother of Tzimas,47683,1750917,7 +135465,massaggiatrice,42892,1178700,12 +135466,,126250,1476772,20 +135467,Hoss,4257,111931,16 +135468,Robert Lincoln,43806,106576,61 +135469,Spoon Guy / Banana / Queen of France,32536,109314,1 +135470,Howard Debater #1,14047,16460,46 +135471,Major,72638,1014834,51 +135472,Olli,36229,104243,7 +135473,Zeke Carmody,34651,30512,5 +135474,Aymé Pigrenet,10268,21175,0 +135475,Asier Urruticoechea,33273,1117804,12 +135476,Betty Duncan,42542,4160,2 +135477,Flapping Eagle,177043,5401,0 +135478,Bryson (uncredited),28000,29284,91 +135479,Kirsten,96333,58711,8 +135480,First Commuter,37923,25503,12 +135481,Bunkmate Jo,9779,64470,22 +135482,Frederic 'Freddie' Osborne Senior,53798,14563,0 +135483,Paul,57307,108973,1 +135484,Marilou Bilderberg,16177,27960,9 +135485,Actor,308032,57412,10 +135486,Vecino,42502,1723112,11 +135487,,65898,1166156,12 +135488,Faster Doudle,8619,134692,19 +135489,Heston Secretary (as Erika Bianchi),38681,97929,10 +135490,Younger Antonio Luna,359105,1240550,15 +135491,Police Chief Auditionee / Himself,430826,1891515,36 +135492,Amélia Castanho,132608,127662,6 +135493,Shadi Shin,366170,1679,15 +135494,Old Seyward / Murderer,133448,1097177,10 +135495,,12453,72292,10 +135496,Bob Marvalle,4365,16180,6 +135497,"""Tenny"" Tennison",38437,2930,6 +135498,David,67314,225004,4 +135499,Madeleine Love,27983,153582,4 +135500,,65614,566835,7 +135501,Brendan,232672,1428393,14 +135502,Hi-jacked Van Driver,128637,1087600,5 +135503,Model T,44869,4119,5 +135504,Turanga Leela (voice),15060,18980,1 +135505,Mrs. Ahn,96936,1392128,18 +135506,Jim Stanton,60086,79497,2 +135507,Giulia,79995,11110,3 +135508,Dr. William Larson,19850,2955,1 +135509,Specialty Dancer,14589,1468191,86 +135510,Boy chief,294093,1420250,5 +135511,Ron Woodroof,152532,10297,0 +135512,Mme Vachon,1917,19936,4 +135513,Twimble / Wally Womper,22682,188729,4 +135514,Sydney Stanhope,31280,129051,4 +135515,The Girl,51358,121146,1 +135516,Eckman,33729,138106,6 +135517,Victor Taveras,28665,101522,4 +135518,Carlotte Eagan,413669,93897,2 +135519,Travis,194722,54730,8 +135520,The Father,84228,84702,6 +135521,Cody,79869,52477,4 +135522,Milly,290762,3051,1 +135523,Don Twombly,38579,3905,14 +135524,Van (voice),49013,21125,37 +135525,Kevin's Mom,13991,77917,4 +135526,Valdi,72596,102610,11 +135527,Stylist,243683,59230,28 +135528,Himself,394668,1611361,8 +135529,Amy,26123,111920,12 +135530,,109587,1049498,23 +135531,eddy Roosevelt Dangos - Age 8,118059,87824,10 +135532,Soldier (uncredited),2080,1643129,61 +135533,Deputy Garman,9843,59861,5 +135534,Abraham Rothstein,43022,24820,13 +135535,Undercover Cop (uncredited),94809,68330,17 +135536,Lily Anderson,341886,20980,2 +135537,Junior Oriol,150065,48530,10 +135538,Dane,42941,72099,6 +135539,Norah,50780,72129,2 +135540,Nazim Tahir,44751,90515,3 +135541,George Simon,53792,29578,0 +135542,Alicia,48594,576180,9 +135543,Aurore,130055,4166,2 +135544,Anthony's Henchman,49074,588032,13 +135545,Oine,77057,581147,22 +135546,The Leningrad Cowboys,11475,69552,2 +135547,Emily Maurier,88320,10653,7 +135548,Amy Lorne,89337,105671,2 +135549,Factory Worker,290714,1361061,5 +135550,Riach,142150,199942,12 +135551,Mayor's Daughter / Fille du Maire,38742,121146,2 +135552,Beggar Monk,27276,63706,3 +135553,Himself,189556,1170732,0 +135554,Brisbane Landlord phone vocal,13777,75151,40 +135555,Homeless Man,369894,110045,13 +135556,,214938,1199624,6 +135557,Morkubine Porcupine / Coach (voice),9982,61411,13 +135558,Young Husband,81660,53863,6 +135559,Raphael,257454,1298090,15 +135560,Nikki,271718,503103,4 +135561,La copine 1,41211,1670730,27 +135562,Old Woman,353686,64242,16 +135563,Kishen,61400,35070,0 +135564,Mr Crick,101915,79934,17 +135565,Maria Caine,20361,19270,1 +135566,Tony,1819,19277,7 +135567,,117550,1111996,14 +135568,Lisa Berndle,946,3360,0 +135569,,88273,1547791,35 +135570,Charlie Boyd,41171,2157,6 +135571,Mandy,136386,1105701,10 +135572,Erlend,57438,226193,34 +135573,Ram,191112,53676,0 +135574,Sidney,17258,13951,24 +135575,Fleurette,156988,1074077,2 +135576,Nightclub Patron,43113,1198478,60 +135577,Baloo (voice),59803,229736,0 +135578,Cafe Waiter Jean-Michel,37710,4392,16 +135579,Patch (voice),13654,1253195,3 +135580,Snowboarder,206647,1599272,65 +135581,Shane,82485,87741,4 +135582,Siegfried,94674,1121528,3 +135583,Mira,212503,912632,3 +135584,Carl,16563,1017521,18 +135585,Mariko Farnwell,293082,1217870,7 +135586,Krister,102256,111363,1 +135587,Aya,203715,132429,0 +135588,Jim Deakins,43367,2090,0 +135589,Christina,26962,1320766,5 +135590,Himself,157117,143470,28 +135591,Mary Magdalene,30973,72708,9 +135592,Shanghai's friend,269173,1326945,14 +135593,Rock Mullaney,35381,2482,2 +135594,Finn,33134,1128156,3 +135595,Pledge Gomez,107811,936308,6 +135596,Death Star Technician,330459,67367,43 +135597,Samantha (voice),321528,15761,11 +135598,Boy in Church (uncredited),74,38673,13 +135599,Chris,93856,49915,0 +135600,Andrea Von Strucker / Viper,27460,59642,2 +135601,Guest,83599,95087,3 +135602,Don Miguel de las Cuevas,29272,976270,10 +135603,Miss Ettie Coombes,27970,20369,5 +135604,Jessica,33784,111348,1 +135605,Janice Hooker,413337,84617,3 +135606,Herself,15258,185797,38 +135607,Fight Spectator (uncredited),28000,569144,57 +135608,Faat's horny patient,37702,1160576,12 +135609,"Arjun, (Swetha's Brother)",362150,580223,5 +135610,Jesus Christ / Cardinal de Lorraine,3059,8842,31 +135611,Gassot,28212,26959,7 +135612,Doc Keller,147722,34348,6 +135613,Horace Debussy 'Sach' Jones,116160,33024,1 +135614,Herself,27637,46163,33 +135615,Jefferson Jones,27349,84629,15 +135616,Lebon,31993,128160,9 +135617,Brormand,16014,1023,8 +135618,Sappho,286789,29910,2 +135619,Arwa,317214,226439,4 +135620,,352199,3124,1 +135621,Woman in Porsche,9673,36765,4 +135622,Lara,31942,103130,4 +135623,Gerichtsarzt,52475,144346,33 +135624,collega,66700,1313397,7 +135625,Andrea,68063,229571,1 +135626,Joe Horn,44140,69026,5 +135627,William,376292,1281327,5 +135628,Juan Manuel Cotelo,76010,1193421,1 +135629,Mamoru Kodai,61984,58596,7 +135630,Tom,18072,75076,8 +135631,Army Officer,194407,141029,12 +135632,Carney Boy,6972,208282,7 +135633,Carl Mauth,11204,7830,3 +135634,Virginia,355008,27004,7 +135635,Dilip Buwa,20742,85891,6 +135636,Capt. Ben Lorrison,151310,85437,1 +135637,Perla (voice),83201,76744,7 +135638,Nefer,259835,1302195,4 +135639,Mr. Newby,21451,96722,14 +135640,Connor Watts,270774,9656,1 +135641,Pressefrau,61035,1204512,42 +135642,Virgil Malloy,163,1893,5 +135643,Gemma,65579,1019026,10 +135644,Jack Hull,378441,571731,2 +135645,Kristy Cutler,29611,104350,2 +135646,,270081,116975,3 +135647,Anna,162458,445843,5 +135648,Lily,1116,1896877,44 +135649,Vasilis,27599,568071,10 +135650,Sara,24821,7743,10 +135651,Dr. Medlin,69668,56618,9 +135652,Frankie,113178,51659,2 +135653,Coach Freddie Coward,345922,56903,2 +135654,GGSA Showcase Audience Member,38322,123703,6 +135655,Clayton Drumm,22396,21181,0 +135656,German Officer,72638,88464,36 +135657,Ralph Compton - 14 years,15013,3292,3 +135658,Felix,46169,135255,6 +135659,Lee,76543,579296,8 +135660,,182799,176628,2 +135661,Hector,14695,6862,1 +135662,Davey Danner,15006,148096,2 +135663,Consuela Moroni,111480,35043,3 +135664,Quinceañera Guest,268920,1659999,71 +135665,Anton,3104,26703,5 +135666,Townsman,134238,1324821,46 +135667,Dunce on Paris Bus,16135,79529,34 +135668,vankilan pastori,442752,1761839,30 +135669,Mark Bellis,49502,7124,0 +135670,Winnetou,7085,33543,1 +135671,,8070,26109,13 +135672,Sports Announcer,209112,1214961,77 +135673,Jill,11425,18973,7 +135674,Grace,209263,1567662,18 +135675,DJ Dan,395982,1464254,5 +135676,,390376,1626465,5 +135677,Mike McAlister,13484,54710,3 +135678,,262987,28256,0 +135679,Chief (voice),9948,43125,11 +135680,Young Maria,202214,1184334,5 +135681,Herself,84184,1255201,10 +135682,Sir Anthony Spencer,52959,25536,2 +135683,Członek komisji etyki lekarskiej,298040,8719,11 +135684,Taira Torodai,45987,134383,0 +135685,Police Captain,102382,1224691,35 +135686,R.I.P.D. Evidence Clerk,49524,1593000,16 +135687,Preacher Yoder,74549,1537477,18 +135688,Admiral Raddus (voice),330459,1213640,28 +135689,Inspector Peters,44902,10027,5 +135690,Aardvark Girl Cindy,21044,87058,8 +135691,Doug,45649,87312,16 +135692,John McClane,57816,225161,0 +135693,Anthony,52034,237166,0 +135694,Sean Gilmartin,153397,1220123,12 +135695,Ernie,21214,87281,2 +135696,Sergeant Harry Parsons,16442,125842,17 +135697,Captain of the Gateg / Bodyguard of the Princess Beloved,3059,1366743,46 +135698,José Luis Torrente,254869,10847,0 +135699,Diane Lerner,40807,5657,4 +135700,Chief Guard,25126,93209,4 +135701,Benedetto,119364,106806,9 +135702,,461088,1286623,4 +135703,,285685,1603579,12 +135704,Coolhand,19277,21414,4 +135705,Himself - Co-Host,33740,854,10 +135706,Shen,311324,1279598,10 +135707,Thad,17100,55588,3 +135708,Russell,398289,141774,11 +135709,Peter Musselman,193756,108532,12 +135710,José,121929,1886064,4 +135711,Teo,38289,119993,2 +135712,Amy Hopkins,31462,7906,1 +135713,Oine,58878,228549,9 +135714,The Pastor,359245,1508117,7 +135715,Carrie Valentine,37581,144361,5 +135716,Anna,9539,59612,1 +135717,,31462,91332,22 +135718,Lauri,362758,1519265,6 +135719,Lockett,15022,103783,18 +135720,Harold Nicholas,54982,52057,3 +135721,Mr. Daimler,397837,935201,7 +135722,Maria,63958,235877,16 +135723,Violaine Rachat,72375,130890,7 +135724,Steven Grimes,37308,6836,4 +135725,Reuther,27085,190449,14 +135726,The Friendly Neighbor,3059,1440224,45 +135727,Heloise Casey,249969,111581,5 +135728,Nina,42307,103994,3 +135729,Lorenzo,206647,226388,28 +135730,Jed,216580,98804,6 +135731,Jan,214086,105646,5 +135732,Amal,35790,13752,0 +135733,,33003,52849,2 +135734,Měsíčník,84030,1579660,6 +135735,Ferro's sister,128557,38511,2 +135736,Reggie X,333663,132355,7 +135737,Richter bei Witeks Prozess,224,2823,14 +135738,Linda Rawlings,72251,1219610,3 +135739,Detective MacKenzie,90465,34365,8 +135740,Ernst Schwarzenbach,201429,23644,6 +135741,Mark Wallace,5767,3926,1 +135742,Narrator/Graduation Announcer (voice),5559,12077,2 +135743,Shooter,65367,97936,4 +135744,Louise Forte,19235,84790,5 +135745,Keith Richards,192133,1192760,11 +135746,Alberto,82999,929045,6 +135747,Madame Hydra / Viper,76170,94064,6 +135748,Exotic Dancer,120802,1038456,19 +135749,Landers,237171,50780,6 +135750,Flier,81110,88462,19 +135751,l'operaio che raddrizza il quadro,43211,1885528,22 +135752,Frau Meckel,3577,1339475,16 +135753,Delivery Man 4,52034,144930,17 +135754,Gustav Fiers / The Gentleman,102382,9289,20 +135755,Doug Jones,68684,158231,15 +135756,Homeless Guy,345915,1528857,32 +135757,Olivia Karloff,53860,80237,2 +135758,Uuno Turhapuro / Hugo Töttersberg,62900,116157,1 +135759,Gabriel 12 Months,227156,1412927,10 +135760,Cash Zachary,6643,50962,2 +135761,Giri Rajan,341895,1473469,11 +135762,"Jonathan, as a boy",42764,128681,13 +135763,Himself - Kaninchenzüchter,27637,1724685,15 +135764,Ira Einhorn,125990,51805,0 +135765,Lilac Son,16320,80442,32 +135766,Dr. Vera Kropotkin,70498,10559,3 +135767,Keen,198277,1424191,33 +135768,Helena,39286,8925,9 +135769,Officer,80771,9091,13 +135770,Juana,10733,1328408,17 +135771,Charles Dillon (scenes deleted),218351,29600,6 +135772,Jacki's Mom,28026,110877,10 +135773,,52147,145394,1 +135774,Kristen,6964,20388,8 +135775,Ruth Carver,286521,3092,1 +135776,Stewardess,301348,1603909,15 +135777,Harilaos Bardas,288526,1122173,2 +135778,Francesca,95096,132571,3 +135779,Marcel Marx,73532,20853,0 +135780,,31011,137472,18 +135781,Nol,128900,1158286,25 +135782,,188684,1663038,12 +135783,Henriette Mendel,459,6815,11 +135784,Master's assistant,18758,1134506,9 +135785,Dancer,108222,1671175,41 +135786,Senator Jackson Crenshaw,61341,655,1 +135787,Mean Drunk,78691,7679,17 +135788,Frank,337958,1583396,10 +135789,John,237171,99520,4 +135790,Little Jamyang,259997,1302541,30 +135791,Sami,13733,77131,1 +135792,(voice),28090,1719906,58 +135793,FBI Agent,257088,6474,6 +135794,Muzyk,155325,1616643,15 +135795,Buddy Casino,1659,18439,6 +135796,Construction Foreman,98339,185149,12 +135797,Sgt. Sam Croft,43142,45232,0 +135798,Minor Role,38770,1411100,26 +135799,Rosalba,53486,88081,2 +135800,Geisha,148371,1273701,5 +135801,Jacob Terry,182899,100243,3 +135802,Le livreur,343702,62447,10 +135803,Lady Sybil,18978,166961,11 +135804,Lady Pond,80596,11127,21 +135805,Skip,19053,551904,22 +135806,Courthouse Spectator (uncredited),214756,1759638,77 +135807,,71725,1043255,11 +135808,Havaldar Hatella,39347,35819,3 +135809,Taylor,38908,1088252,5 +135810,Woman at Smith Home,413232,30263,21 +135811,Kim-Ly (voice),77950,83586,10 +135812,Policeman Caves,48118,20522,14 +135813,Gaysh,42725,6587,3 +135814,,347328,95561,3 +135815,Captain Shearing,339312,1287074,3 +135816,,165402,37233,1 +135817,Music Producer,330947,1281682,34 +135818,,8079,85881,21 +135819,Billy,40346,92833,8 +135820,Bandar-log / White cobra (voice),59803,1048653,7 +135821,Lindsay Rollins,9966,61134,11 +135822,Voice Actor,333352,95639,28 +135823,Pie Carver,10004,61831,6 +135824,Dr. Morgan Chambers,44545,31263,10 +135825,Pauline Hood Allison,142145,91373,5 +135826,Mahshid,43761,1339648,2 +135827,Babette,29054,15007,8 +135828,Mrs. Hester,109491,1495340,14 +135829,Beggar,11656,3857,5 +135830,Tia Polly,42473,10607,10 +135831,"Pio, figlio di Simona",82080,1872183,23 +135832,Johnny Angel,46227,127544,5 +135833,Janice Allen (uncredited),80168,997111,20 +135834,Henrik Ek,2180,22331,2 +135835,Hayden Emery,146315,68890,0 +135836,Mr. Baker,29805,39741,47 +135837,Vincenzo Buonavolontà,24189,2166,0 +135838,Character,3580,39388,4 +135839,Cara Shim,24756,63241,14 +135840,Mann (voice),9551,1331922,8 +135841,Lakshmi (Raman's Sister),393562,1064472,4 +135842,Ah Kun/Xu Shuangkun,62071,239079,2 +135843,Jake Abernathy,22606,89014,8 +135844,Zofe,10659,136800,16 +135845,Geli Raubal,102155,35668,1 +135846,Cooper,13991,84833,15 +135847,Sokolov,40709,235992,11 +135848,Buddy Baker,33729,57138,3 +135849,Ilyas,31412,145409,3 +135850,Karl Hooten,54107,31005,7 +135851,Herself - Model,327083,1248824,19 +135852,Mrs. Jerry Armstrong,118900,30114,6 +135853,Orin,336149,1443861,6 +135854,Pauline,111839,27125,8 +135855,Akiko Miwa,20530,131016,6 +135856,"Szombathy, osztályfõnök",42132,124143,10 +135857,Ham Actor,43809,1021841,52 +135858,Amelia Morgan,37954,119245,9 +135859,Mama Popchik / Mrs. Updike,85420,96283,6 +135860,Sandy,189682,8519,6 +135861,,386100,8199,6 +135862,Lord Tarleton,15163,8785,7 +135863,Helga,186755,1505293,6 +135864,Lauren Conrad,91070,1224510,15 +135865,Betty,59296,10223,5 +135866,Dan Gallo,271185,15033,2 +135867,Villar,12422,72254,5 +135868,,293109,121781,3 +135869,Bobby Barry,8325,1471,5 +135870,Charlie Bontempo,39845,4517,1 +135871,Minister Lee,73772,16700,2 +135872,Donald,359025,7166,8 +135873,Philip,83342,145384,4 +135874,Jessie,20047,147382,6 +135875,Agent Kevin Donnelly - ATF,7551,52926,14 +135876,Camper (uncredited),251227,1286547,31 +135877,Highschool Student,440597,1753913,10 +135878,Ma Cassidy,10870,1423350,11 +135879,Fight Referee,7549,52905,9 +135880,,162899,1144874,6 +135881,Marie,73262,16783,0 +135882,Jack Thompson,204040,29260,1 +135883,Shizuka Matsutani,148371,108018,0 +135884,Additional Voice (voice),10193,84495,33 +135885,Alastair,189682,1196416,3 +135886,палач,63449,86700,12 +135887,Sweat Shop Agent,68721,54679,54 +135888,Glass,91390,4173,0 +135889,Baby Rose,323929,1724361,10 +135890,Lieutenant Williams,142150,29239,14 +135891,Matthews (voice),312100,1215931,11 +135892,Linda / Gitali,42057,39658,3 +135893,Denise,91690,73828,1 +135894,Tae Yang,82469,1097451,5 +135895,Kimura,43095,70131,3 +135896,Hendricks,370234,1194700,15 +135897,1st Bruiser (uncredited),25953,88683,17 +135898,Dr. Kinier,345003,1448094,14 +135899,Max Rourke,10320,1284159,1 +135900,Alison Olsen,13092,205,10 +135901,Detective,56558,1240252,32 +135902,Anna Bomasch,41597,14298,0 +135903,Percival Montgomery Hower,42678,128437,10 +135904,Madre di Claudia,183964,9893,3 +135905,Man eating the mushroom,151730,1131937,0 +135906,R. Parsons,1984,9221,5 +135907,Hartshorn,75622,13726,18 +135908,Keith Ripley,14979,192,0 +135909,Capt. Seth Parton (Union officer),37311,12353,4 +135910,British Sergeant,18651,30136,50 +135911,Train Conductor,43903,95728,8 +135912,Marombeiro 2,448763,1848676,45 +135913,Taunting Classmate,23169,1188567,16 +135914,,293654,1257287,10 +135915,Marjukka,366249,208016,5 +135916,Pronk Oryx-Antlerson (voice),269149,1318201,24 +135917,Marc Beaulieu,283701,47820,2 +135918,Doris Scott,43045,113510,10 +135919,Kreon,26679,140900,0 +135920,Afro Guy,306952,1511985,44 +135921,Patricia Cartwright,77882,94800,4 +135922,Damon Phillips,10025,62066,6 +135923,Hacker,317144,1412289,5 +135924,Herself,191502,7404,12 +135925,Dave Hargroves,236324,1224186,8 +135926,Wagner,19430,10254,8 +135927,Commander William Adama,105077,587,0 +135928,Katherine Duncan,78403,87934,0 +135929,Nigel Adler,333352,1140169,23 +135930,Young Policeman,223551,437742,6 +135931,Private Paavo Saastamoinen,374883,1555433,3 +135932,Big Mac,182415,1853086,8 +135933,Mirko Talhammer,377847,1133520,1 +135934,Lydia,22387,122910,14 +135935,Cameo,210940,579763,11 +135936,Captain Joe,62392,30228,6 +135937,"Brad, Red Bluff Sheriff",43250,6462,10 +135938,Carioca,227964,1665824,10 +135939,Madejski,342765,1345428,4 +135940,Grouch (uncredited),14615,29263,57 +135941,Laura,47535,1399148,10 +135942,Druve,86980,934148,7 +135943,Dan,45431,191462,23 +135944,Andrejs Voss,49009,63764,8 +135945,Restaurant Patron,77930,1784660,68 +135946,Dawn,95675,120932,1 +135947,Chico,100063,564977,6 +135948,Ruby,83588,929826,3 +135949,Nurse Stewart,40807,63563,21 +135950,Blonde Hooker,56264,104437,14 +135951,Dancer,4982,1659311,74 +135952,Sherman (voice),82703,558928,1 +135953,"Florencia ""Flo"" Fuentes",353616,1160310,10 +135954,Cabbie,261036,20632,4 +135955,Cole Younger,183825,33022,0 +135956,Un tueur,98277,1849102,13 +135957,Gina,31128,121023,3 +135958,Andrei Gorchakov,1394,1090481,0 +135959,Cloakroom attendant,63291,631879,9 +135960,Savitri Puri,18673,13753,2 +135961,Maria Callas,47959,20234,0 +135962,Becca,244539,1183867,7 +135963,Student at Leaf Rally,42734,9274,12 +135964,Angelo Bruno,45679,98164,14 +135965,Amy,156981,1358664,7 +135966,Narrator,10946,44257,1 +135967,The Make-Up Artist,340101,1865827,23 +135968,Teacher Lian,11537,1173757,8 +135969,Orchestra Conductor - Paris,18651,1287807,44 +135970,la jeune femme au chien,76651,140361,11 +135971,Annette Agudo,98203,1167134,13 +135972,Sammy,176079,1158418,5 +135973,Robert Newman,11204,65642,1 +135974,Ernst,161243,28586,0 +135975,Malin Erikson,15472,83899,17 +135976,Sir Augustus Wall Callcott,245700,16273,30 +135977,Tiffany,390059,1702793,12 +135978,Rodney Copperbottom (voice),9928,3061,1 +135979,Presentatrice Grande Fratello,103758,8776,6 +135980,Himself,367735,933558,1 +135981,Detective,38769,95299,18 +135982,Fideo,1428,27643,9 +135983,Richard Sharpe,75137,48,0 +135984,Andy Zachary,6643,50967,11 +135985,Worth,60759,199917,17 +135986,Al Lowell,9779,11367,5 +135987,"Attou, la jeune femme Peul",71329,1324502,3 +135988,Himself,72711,1147927,3 +135989,Moon-ho Jang,108972,115290,1 +135990,Baron Walter,45213,36917,4 +135991,Wayne,268920,60875,21 +135992,Paddy,52859,1045090,22 +135993,,88273,544495,38 +135994,Dudley Dawson (Booger),21029,87003,1 +135995,Slave Girl,1271,84586,66 +135996,Lauren,24655,99885,1 +135997,Katya,142770,86844,5 +135998,Annmarie De Carlo,297853,29091,2 +136134,Jack Evans,427045,125909,8 +135999,Additional Voice (voice),177572,950773,35 +136000,Josh Bigsby,119010,1068925,3 +136001,Confused Woman,447758,1564075,34 +136002,Clip from 'Speak Easily' (archive footage) (uncredited),33740,34747,98 +136003,Катя,47812,139454,0 +136004,David,295964,1155724,10 +136005,Jeb Stryder,72710,227,3 +136006,,44716,98062,27 +136007,Lillian,51736,1178300,2 +136008,Dr. Wilhelm von Huber,61473,4512,2 +136009,Doctor,21605,23076,11 +136010,Jussi,92465,994246,0 +136011,Gatch,22682,949598,11 +136012,,19552,1275931,22 +136013,Jerry Wheeler,242042,1224173,12 +136014,Merriman Lyon,2274,6972,0 +136015,Various roles,41076,581341,3 +136016,Pui's first boyfriend,53168,1136392,8 +136017,Brenner,277967,39905,1 +136018,Woman at Vigil,146233,1689985,29 +136019,Angie,6973,35028,16 +136020,Lyle Ace,246011,1331271,17 +136021,Helen,63333,651765,11 +136022,J.T.,32868,109737,4 +136023,Barshee's Henchman,43829,1411422,36 +136024,Annie Rowley,29094,103187,9 +136025,The Judge,26376,33025,36 +136026,,283711,1268919,5 +136027,Barbie (voice),77887,63978,1 +136028,Davanna Girl (voice) (uncredited),40028,45002,19 +136029,Police Officer,383140,1563213,15 +136030,Himself,19244,84391,0 +136031,Ana,168541,1575325,4 +136032,le clochard qui ramasse les pièces,84035,589087,6 +136033,Art Critic,413232,89691,37 +136034,Very Attractive Woman,4932,1243732,34 +136035,,67633,88054,20 +136036,Berit,76846,83885,3 +136037,Kuze / Hideo,315837,10692,1 +136038,Roy Edwards,93828,3064,3 +136039,Philippe Tailliez,332794,18178,3 +136040,Dylan,14123,1224173,7 +136041,Yutaka Hirose,36243,554073,8 +136042,HR Staffer #1,331313,1767209,32 +136043,Grandmother (Voice),285733,1028331,5 +136044,Christine,414453,1724563,8 +136045,Harry,280092,17858,11 +136046,Mika,36063,1127076,2 +136047,Rose Halshford,322518,17743,1 +136048,Karen Braden,74836,1057911,0 +136049,Additional Voices (voice),328111,35159,22 +136050,Karl,81616,1359124,6 +136051,Clip from 'The Wizard of Oz' (archive footage),33740,9070,35 +136052,,188524,187066,2 +136053,Michèle,137726,39068,1 +136054,,44436,130844,3 +136055,Enrico,12412,5723,6 +136056,Panna Elzhbeta,17935,82514,0 +136057,Himself,366696,1753491,4 +136058,Himself,47911,115128,0 +136059,Correctional officer,336011,1373344,17 +136060,Thatcher,71805,1404642,15 +136061,Giacomo,50531,120025,2 +136062,Victor,383140,100586,5 +136063,Samantha Krueger,312497,52394,19 +136064,,96106,72888,10 +136065,Aunt Lascelles,157843,1211881,19 +136066,Isabel Bradley,56135,20124,1 +136067,Sailor,18638,60881,12 +136068,Sang Hee Pak,13279,74576,12 +136069,Wanda,42045,15500,7 +136070,Calcedonia,310126,9242,3 +136071,Bastian's Father,362180,1434242,12 +136072,Egle,42674,128410,4 +136073,Jonathan Adams,68097,14847,1 +136074,Howard,19989,7676,5 +136075,Judith Nelson,27061,96860,2 +136076,Mr. Inebriated,304372,1720614,23 +136077,Police Officer,91679,1646418,29 +136078,Paz del Rosario,418072,1300569,2 +136079,"Pomeroy (segment 3 ""Hollywood 1936"")",75903,17580,6 +136080,Mrs. Lake,137321,205257,11 +136081,Robert,305342,8945,5 +136082,Cleopatra,34469,1173033,8 +136083,Evil Queen,59075,10168,0 +136084,Blanca,436,5891,2 +136085,Trailer Park Resident,186869,1862904,31 +136086,Richard,18040,25527,0 +136087,Tess,33786,111367,9 +136088,First German,25388,659,13 +136089,Gabi,85350,1467916,35 +136090,Dutch,121006,12147,0 +136091,Major Harris,52827,2098,5 +136092,Fire Hydrant (voice),9928,14991,20 +136093,Stacy Hirano (voice),71689,11024,4 +136094,Clara,121674,1088620,17 +136095,John,244458,1046154,7 +136096,Amber,345922,1560246,36 +136097,Dick Allen,1976,34180,15 +136098,Young David Copperfield,141640,942588,2 +136099,Old Firehand,9629,58217,0 +136100,Commissario Vinciguerra,60014,89193,0 +136101,Alison (The Liberty Maid),48706,17495,2 +136102,Horatius (uncredited),112284,955809,24 +136103,Kurt Wolf,107250,52397,27 +136104,Luis Blanco,58587,227071,2 +136105,Secret Service Agent (uncredited),14050,1016433,11 +136106,J.T.,11509,53285,33 +136107,Emmy,73873,17022,7 +136108,Alexa's Boyfriend,302042,1384316,6 +136109,Skrall / Bone Hunters / Vorox,22259,23680,1 +136110,Casanova,122023,20049,0 +136111,Pukey Nicholls,11798,85065,8 +136112,Jean-Georges,85735,51508,2 +136113,,166262,78679,10 +136114,Bobby Fountain,31146,40271,6 +136115,Bridge Keeper,11656,573295,8 +136116,EHC Guard,71670,1739858,43 +136117,Corporal Kono,227306,1059787,39 +136118,Lydia,193893,174133,10 +136119,Maria Joana,95536,1544346,2 +136120,Grünspan,511,7113,7 +136121,Tadek Dudala / Szymek,52920,112412,10 +136122,Quartermaster (uncredited),22584,120545,9 +136123,Domenico,137315,120323,2 +136124,Natari,62472,1185640,17 +136125,Gerry Cooper,38920,75398,5 +136126,Agent Two,297853,27690,34 +136127,Francesco Perricone,205349,127040,0 +136128,The Yemenite,78233,139447,3 +136129,Romain,6077,47799,4 +136130,Dr. Werner Vogler,121888,1050993,1 +136131,Gulab Singh,21566,944934,9 +136132,Eddie / The Monster,90030,179107,6 +136133,Steven,11096,31512,7 +136135,Charlotte,241071,53485,3 +136136,Masaos Mutter,4291,13257,3 +136137,Luo Peng,62071,1178832,7 +136138,Marcus Alcantara,327225,1431527,4 +136139,Ditzy Sister,26688,96037,32 +136140,Young Ryan,18051,1525092,3 +136141,Mammut,90231,88050,11 +136142,Kyle Hartmann,270007,65838,1 +136143,Marie-Lou,117678,21577,2 +136144,Hysterical Student,540,53828,21 +136145,Dr. Day,138372,938003,11 +136146,Serious Girl,8981,56472,11 +136147,Specs,280092,2128,3 +136148,Fudge,207699,1308808,10 +136149,Frances,36597,115684,12 +136150,,398452,1261519,2 +136151,Tommi Drexler,9690,58555,12 +136152,Paul,14422,78404,6 +136153,Michael Dingman,10710,57191,6 +136154,Rusher of Din - Sleeper,36751,1583186,23 +136155,,42852,1463147,16 +136156,Sir Evelyn Jordan,172908,94782,5 +136157,Carl,19794,1542,22 +136158,Himself,181454,1735508,4 +136159,Boström,116019,1062703,1 +136160,Trevor Adams,16876,11107,1 +136161,Martha,18082,82667,0 +136162,Pablo,102629,938784,12 +136163,Little John,115972,29909,4 +136164,Sai Mun Tsui Suet,37702,1415225,14 +136165,Mayor Barkov,395914,1118249,8 +136166,Gallo,206647,1385592,15 +136167,Sathyadev's father,300983,130111,8 +136168,Tondaleo,41932,104929,8 +136169,Jack's Mum,204255,1739046,11 +136170,Betsy Patterson,195068,34742,0 +136171,Insp. Chung,49514,54615,1 +136172,Lorraine,354133,1496068,8 +136173,Hattie Blake,58732,114403,4 +136174,Jimmy,3291,31514,20 +136175,Field News Reporter,32657,1507607,51 +136176,Gustavo (as Jaime Mir Ferry),299165,1381460,15 +136177,Lucio,362579,15601,3 +136178,Storm Shadow,14869,25002,8 +136179,Carly,83896,231056,12 +136180,Knecht Alois,11869,33082,4 +136181,Master Yao,64316,26727,5 +136182,Kai Shiden,39230,85286,14 +136183,le cafetier,14650,5444,6 +136184,Dr. Hendricks,17209,27688,9 +136185,Mr. Slade,57412,14968,9 +136186,Immacolata Meneghelli,138273,13333,0 +136187,,36253,1699714,6 +136188,Romain Goupil,14419,82188,4 +136189,Cornelius,96118,1022633,10 +136190,Support Group,222935,1672084,38 +136191,Steve Lombard,49521,50217,14 +136192,Mexican Doctor,38269,370407,14 +136193,Raul,300669,1669337,6 +136194,Clip from 'Gigi' (archive footage) (uncredited),33740,20603,80 +136195,Redd Tucker,29896,51965,0 +136196,Ringside Fan (uncredited),921,1053296,62 +136197,John (as DeWolf Hopper),23107,2776,9 +136198,Tough Teenager,4982,1431403,48 +136199,Reporter at Fight,52437,34818,36 +136200,Man At The Hotel Bar,228970,1202473,45 +136201,Dr. Osman,24420,1393537,29 +136202,Maître Labaume,10268,54324,6 +136203,Camilla,73697,44104,2 +136204,uncredited,37126,92011,15 +136205,Αλίκη Μαυρογιαλούρου,297342,1312677,3 +136206,Paul,34128,19392,2 +136207,Patricia,47794,532270,1 +136208,Sergeant No Il-Kwon,387845,1375944,8 +136209,Taxi Driver,2355,162539,25 +136210,,323552,12217,1 +136211,Monk's bikini babe #2,10425,65128,19 +136212,Polizist III Bahnhof,6183,1732230,23 +136213,Michela Nardini,8951,56844,2 +136214,Wallace,4882,39773,6 +136215,Armand,49762,142757,6 +136216,Inmate,48281,5923,22 +136217,Wendy McCready,46667,137111,7 +136218,Harry St. Columb,131764,47178,5 +136219,Danilo,180371,137373,1 +136220,Captain,52859,106154,4 +136221,CD Shop Owner,69404,237603,6 +136222,Telly,369406,1539096,23 +136223,Alice,233487,1268985,2 +136224,Vääpeli Körmy,55756,147771,0 +136225,"Bugs Bunny, Wile E. Coyote",102161,33923,0 +136226,Bailiff,18569,120811,34 +136227,Dr. Carter,63333,138248,7 +136228,Zoey Sandin,158015,131781,3 +136229,Dr. Anna Straus,29146,31114,2 +136230,Hubert,359412,62,1 +136231,Klaussner,130233,22930,8 +136232,,21571,85451,0 +136233,Policeman,264309,1371321,14 +136234,Young George,40368,556926,7 +136235,Sonja Stilano,16058,9827,2 +136236,Garbage Scow Skipper (uncredited),10780,1210,21 +136237,Lineman (uncredited),172445,1096850,9 +136238,Charlie,55720,27031,9 +136239,Philip,407448,1711168,45 +136240,Priscilla,274479,50234,13 +136241,Amélie,92424,73937,6 +136242,Miranda,5048,40899,4 +136243,Dr. Julia Flynn,97632,206756,3 +136244,Chico (voice),315465,1254135,4 +136245,Courtney Collins,283445,27855,0 +136246,Security Guard,80545,39678,11 +136247,Louise,51971,1730829,16 +136248,Robert Tual,309929,132069,2 +136249,Tony Moroni,79678,206,0 +136250,Esmee,87022,87345,1 +136251,Maggie Sergeant,210609,51315,0 +136252,Headmaster,51212,39953,3 +136253,Cock,90034,537581,10 +136254,Larry Fine,85411,3212,1 +136255,Maggie Shaw,26881,41246,4 +136256,Abdi the Consul,44773,543785,7 +136257,,47448,1197756,17 +136258,Said's mother,67,765,3 +136259,Barbara Moorehead,40041,7071,1 +136260,Dr. Rustam Pavri,19625,85972,7 +136261,Thorne,15414,55636,1 +136262,Zoe,216580,1333935,0 +136263,Elder,47410,138883,15 +136264,Himself,40863,552397,6 +136265,Mrs. McLeavy,198652,1179386,13 +136266,Girl in Car,40387,96177,9 +136267,Najma,14159,35778,4 +136268,Mr. Ulman,25983,119232,7 +136269,,143073,239715,9 +136270,,63260,230675,9 +136271,Newald Krutchens,177566,1157260,6 +136272,Michael,92060,82702,0 +136273,Lecture Attendee,98349,590496,16 +136274,Xander,322922,60650,8 +136275,Capataz,25376,138760,23 +136276,Radford,14457,11867,6 +136277,Alberto,64725,83146,7 +136278,Ewan,214100,1496263,8 +136279,Tarp Penny,126550,9112,3 +136280,,261871,562640,8 +136281,Veteran,20766,529,4 +136282,Eden Starling (voice),13459,59070,1 +136283,Birthday Party Guest,413232,115995,18 +136284,Glader,198663,1415428,29 +136285,Labo - Gang Member,26558,1625712,3 +136286,,345915,48530,11 +136287,Michal,42040,20768,4 +136288,Mike,90616,1487596,9 +136289,Farmhand,30982,148036,3 +136290,Chris Cleek,65599,144160,1 +136291,Doctor,259695,38709,14 +136292,Bella Sotto,57683,826,3 +136293,Murchison,89242,21608,3 +136294,Kathy Etchingham,192133,39459,1 +136295,Chloé,30974,144760,0 +136296,Attorney Goo Pil-ho,435821,1293080,4 +136297,Squishy,51800,1317374,14 +136298,Ana,411638,79288,2 +136299,Natalie,56906,94792,3 +136300,Stanley Philipps,11161,3036,0 +136301,Herbie Fine,42623,9808,4 +136302,"Riitu, Kallen äiti",362151,1517103,2 +136303,Sun Yat Ming,118139,30686,6 +136304,Juror,18569,10529,16 +136305,"Tim, Police Desk Sergeant",36786,82750,14 +136306,Québécois Female Singer,312669,1662558,19 +136307,Bikini Girl (uncredited),323675,1769811,52 +136308,Yard Sale Attendee,91679,1782572,11 +136309,Julien,4146,3581,4 +136310,Sallay,203819,77562,7 +136311,Herald Trumpeter,47508,1364105,14 +136312,Mrs. Hammond,39308,1213462,10 +136313,Mex,42023,16475,0 +136314,Mario,251555,115932,6 +136315,Tante Thérèse,24685,18219,6 +136316,Friend,160324,80536,3 +136317,Curious Student,148284,1343041,9 +136318,Pretty Girl,39053,221944,7 +136319,Appu Khote,25801,35819,2 +136320,Iris,86252,1090741,5 +136321,Spider Lady #3,256962,1819142,71 +136322,Boom Boom,10053,62566,16 +136323,Walter Bush,14292,17646,3 +136324,Dr. Benjamin,284293,79991,7 +136325,Elaine Monetti,20003,27263,9 +136326,Nana,66812,545450,0 +136327,Heidi Philipps,11161,68398,6 +136328,Peter,24821,71610,8 +136329,La dame de Pique,2002,7691,9 +136330,Club Security 1,137145,1106891,9 +136331,Kim Sa-hee,363579,1631995,9 +136332,Glover,12085,17401,5 +136333,Hitchhiker,21141,83306,9 +136334,Mike,38526,228101,2 +136335,Le Grand Hotel Clerk,354287,1816345,52 +136336,Larry Cook,78383,42993,11 +136337,Smittie,11358,1216570,18 +136338,Edward Henry 'Denry' Machin,43369,12248,0 +136339,Pharmacist,14449,1183502,10 +136340,Discipline Master,188598,1776746,5 +136341,Amber,291336,1362170,3 +136342,Welcome to the 60's Dancer,2976,1228290,118 +136343,Second Gangster at Pirate's Club,46026,96058,10 +136344,John Moesby,107104,173785,2 +136345,Mossy (voice),110416,1442867,7 +136346,l'institutrice,64805,2415,2 +136347,Boris Black,64685,1292449,15 +136348,Joe Warr,23512,2296,0 +136349,Le barman,5511,277526,7 +136350,Navy Cadet,52454,113782,42 +136351,Samir,317,4638,3 +136352,Violet Grey (voice),227973,1393180,6 +136353,Himself (archive footage),253337,1419322,29 +136354,Younger Sun-yi,128246,83036,2 +136355,Young Sydney White,10760,66543,15 +136356,Diane,40229,27106,4 +136357,Sir Robert Morton,77822,3609,0 +136358,Supervacuo,23750,70903,4 +136359,Aunna,294690,1390541,18 +136360,James Brown,239566,172069,0 +136361,Marty Burlsworth,379441,2203,2 +136362,Dr. John Marlowe,118236,51762,0 +136363,Yuro,39766,10134,2 +136364,Mischa Auer,43172,39801,1 +136365,Sgt. Steve McFadden,324670,175690,10 +136366,Graziedei,9950,7168,5 +136367,Child Hunter,19898,132181,10 +136368,Maggie Malloye,231616,1218238,7 +136369,Mary Beth,88641,171213,4 +136370,Lino,18214,1205991,12 +136371,May,272072,1324629,3 +136372,Toni,72596,79827,4 +136373,Tracy,40693,113704,9 +136374,Warden Taylor,51601,84640,7 +136375,Nodari,128412,935001,5 +136376,Mei (Schoolgirl),329440,1777420,20 +136377,Newspaper Reporter,43113,1478372,77 +136378,Jeanne,197089,72255,5 +136379,Himself,159138,1140577,0 +136380,Rudnik,65002,24540,3 +136381,Pozi,131932,1093952,2 +136382,Guenevere,18978,13333,1 +136383,Hailey,62838,17140,10 +136384,Silvano Baracchi,43211,119991,0 +136385,Adolfo Blin / Don Felisberto Fernandez,44502,115932,3 +136386,Tenor in Operetta (uncredited),130900,67288,13 +136387,Cayenne,15671,88619,3 +136388,Sheriff Sean Kilpatrick,133328,194,0 +136389,Percy Nilegård / Magnus,16076,79171,2 +136390,Brandi Cox,37708,118362,0 +136391,Michael,85265,939090,4 +136392,passeggero all'areoporto,156547,30303,12 +136393,Denise Campeau,41277,1497332,37 +136394,Commander Tai,11636,116423,23 +136395,,143068,586221,0 +136396,Eve (uncredited),346672,221116,41 +136397,,444623,1283655,2 +136398,Gonnie,42346,119901,1 +136399,Sergeant Gallagher,310001,145360,4 +136400,Plainclothesman,28421,88778,7 +136401,"Maybelle, Parkson's Maid",29236,103369,9 +136402,Man on TV (uncredited),5421,43193,12 +136403,Amtsdiener / Clerk,28480,46737,12 +136404,Paul McNally,31977,85593,4 +136405,Shopping Girl / Beach Goer (uncredited),323675,1427009,69 +136406,Leonora Fiske,42066,95263,5 +136407,Annina,403450,20589,14 +136408,Aunt Cass,18375,35515,3 +136409,Town chief,64316,1173752,17 +136410,Mike Kellerman,77067,585780,0 +136411,Baby Dennis (voice),159824,1271681,18 +136412,Captain Jégu de Kerveguen,74714,66029,1 +136413,Danny de Koning,73215,91348,2 +136414,Prisoner One,145220,1082302,47 +136415,"Iron Wolf, Taiwan druglord",127329,105665,12 +136416,Dave Hatcher,17386,583562,1 +136417,Ann Wakefield,26758,85485,6 +136418,o.A.,5646,44587,12 +136419,Minakawa,37053,140105,4 +136420,Lauren Findley,30641,106640,1 +136421,Madison Lee,9471,3416,5 +136422,John,10521,59872,10 +136423,Sol,258751,224513,2 +136424,Winston Carmichael,108012,186769,5 +136425,Topan,180299,1180616,15 +136426,Teseo Formigoni,82083,3281,4 +136427,Isabelle,1278,10912,1 +136428,Mehmet,52150,142785,9 +136429,2nd Commercial Guy (voice),73723,167756,12 +136430,Laura Riera,186755,109003,2 +136431,Damas Dancer #2,268920,1754428,36 +136432,Brady,132939,15975,1 +136433,Edward,76203,1344357,44 +136434,Sharley,205891,129928,2 +136435,Вика,31418,108048,2 +136436,Dr. Sierra,77650,582418,8 +136437,Aman,76438,578840,0 +136438,Toby,335970,1378244,9 +136439,Johannesburg Driver,99861,1367843,35 +136440,Dick Acombar,77165,44980,4 +136441,Chiko,8064,16250,0 +136442,Pete Hamilton,109258,8608,11 +136443,Joey Brenner,84348,1090686,11 +136444,Josh Cohen,331161,1459157,18 +136445,Jason,45211,72888,9 +136446,John,345915,111678,3 +136447,George Tatum,40368,140850,0 +136448,Baron Sadoja,53230,13359,5 +136449,Fat Jones,90406,4078,11 +136450,Colleen,138544,1347310,3 +136451,Crawford,38322,590183,28 +136452,Kate Jones,41479,3416,1 +136453,Sam,347630,1484887,44 +136454,Sy,450530,9640,7 +136455,No. 18,28656,101474,5 +136456,Isobel Duchannes (uncredited),109491,1347310,24 +136457,,192301,89563,1 +136458,Pausanius,1966,20286,18 +136459,Caroline Kampenfelt,271185,58045,9 +136460,Himself,324173,16165,9 +136461,Mike Ballard,149600,74539,2 +136462,Marilyn,298865,209723,3 +136463,Agente 2,53805,1853725,22 +136464,Shah,193756,123102,4 +136465,Deloris Jordan,60457,32395,1 +136466,Lucy,27259,36219,7 +136467,Cida,34588,1091459,6 +136468,Mrs. Carbery,49391,3306,18 +136469,Ashe,13580,39741,8 +136470,Demeter,32657,52396,37 +136471,Olivia,67794,21245,0 +136472,Avery,188826,8949,4 +136473,Sidney,272426,233680,7 +136474,Kate Mason,19371,84613,2 +136475,Chief Engineer Josif Mantz,367006,15198,2 +136476,Lighting Assistant,78177,1534,13 +136477,Matron,20640,85956,10 +136478,Howard,183015,57353,3 +136479,Austin Millbarge,9080,707,1 +136480,Marshall,177047,11367,8 +136481,Princess Lala,34082,83400,2 +136482,Stella,36960,61265,13 +136483,Waiter,199602,1387157,3 +136484,Stagecoach Gunman,266285,1459344,13 +136485,Narrator,109354,86725,0 +136486,Museum director,140818,79333,7 +136487,Himself,400668,1239058,6 +136488,Danielle,348631,210181,14 +136489,Striking Seaman (uncredited),33025,89691,13 +136490,Frozen Wife,193893,1381627,42 +136491,Fireplug Crusher,29610,58040,5 +136492,Clara Jobs,115782,21818,10 +136493,Chad,227266,1371860,1 +136494,Eli Bence,243568,1252215,16 +136495,Don Brice,32610,1035801,8 +136496,Hipster,320588,1538579,28 +136497,Miss Idell,37311,30952,7 +136498,Pfarrer,102272,26900,4 +136499,Himself (archive footage),142478,12242,9 +136500,Jake,298751,189230,2 +136501,Jess,169726,2463,3 +136502,Dicey Character,32298,1330119,25 +136503,Galatea Dunkel / Helen Hinkle,83770,32798,9 +136504,Sophie Freud,48231,1089489,26 +136505,Jim Hart,9846,29368,9 +136506,SWAT Team Member (voice) (uncredited),356326,1180791,34 +136507,Charles Forbes,170517,164791,8 +136508,E-Tuk,25855,1489163,12 +136509,Info lady,376252,1572353,10 +136510,Dr. Franks,10594,60042,9 +136511,Lieutenant Saraoui,10795,62447,17 +136512,Dennis,444193,76513,1 +136513,Lindsey Salmon,7980,53485,6 +136514,Nyx,84575,930993,3 +136515,"Harry Andersson, Stinas man",60899,2201,6 +136516,Laundry Truck Driver,22999,34162,15 +136517,Josephine Weaver,250332,30415,38 +136518,Hans Friedlich,94348,1215401,11 +136519,Howard Cosell,184341,173277,8 +136520,Bliss,4191,24903,4 +136521,Arlene Terry,31445,99349,5 +136522,Greg,100024,74290,0 +136523,,43645,1083107,9 +136524,Lady Godolphin,131764,120173,8 +136525,,293189,1867765,3 +136526,Minivan Boy,22894,1125192,12 +136527,Phil,176124,997845,10 +136528,Tanya Wells,365753,1569799,11 +136529,"Nicolle (segment ""Vampire"")",26811,106996,7 +136530,Eugene Benedict,25674,12518,3 +136531,Jazz Singer,1125,18284,13 +136532,Eloïse,8282,38501,6 +136533,Yannis,79728,587904,1 +136534,Shin-hyo,147533,1334566,1 +136535,Kiosk Woman,33333,79456,10 +136536,Konrad,12128,71389,1 +136537,Drag Fan,1481,1233262,40 +136538,Dr. Long,55347,44059,14 +136539,UK Muppet Performer (voice),145220,102757,51 +136540,Petey,203264,115218,5 +136541,Peter Campbell,53953,58058,0 +136542,"Lord Mountdrago (""Lord Mountdrago"" segment)",45577,40,0 +136543,Officer,81435,1357164,10 +136544,Jeff,221801,938182,4 +136545,Hector Lavoe,15934,47775,0 +136546,Waitress,15371,553107,20 +136547,Howard Sloane,33224,12355,10 +136548,Woman in Charity Shop,76543,579298,12 +136549,Alice,54155,1158461,3 +136550,Wolf (voice),77859,57735,3 +136551,Lauren,248268,1286162,3 +136552,T,228028,1237603,13 +136553,Tommy 3 Years Old,274479,1658341,29 +136554,Rasheed,17317,210700,7 +136555,Sovéskur sendiráðsmaður,72596,1114545,34 +136556,arabischer Juwelier,308174,1394312,17 +136557,Şevket,123611,562159,1 +136558,Mallory Grace,8204,33397,3 +136559,Jimmy Kimmel,214756,78303,19 +136560,Simon Feck,55728,6008,11 +136561,Himself,15258,61961,87 +136562,Poeta,78854,131624,2 +136563,Funeral Attendant,379959,1604109,23 +136564,Old Shatterhand,7085,6102,0 +136565,Michael Hobbs (voice),312100,558928,5 +136566,Marilina,183962,1868382,9 +136567,George Ruth Sr.,61225,3217,14 +136568,Elegant Lady in Boardinghouse (uncredited),52440,1905152,42 +136569,Reverend Jim,37269,1215048,8 +136570,Adelina,155597,1286510,2 +136571,The Waitress,45875,134072,11 +136572,Heinrich,59962,1844,8 +136573,,185987,33732,11 +136574,Gordon's Maid,53766,148803,8 +136575,Slave Spiritual Singer 2,76203,1344364,52 +136576,Sarah,82990,1790409,7 +136577,Prune,26152,146492,15 +136578,Nurse at Dentist's,1164,1681247,48 +136579,Jimmy,118889,89313,47 +136580,Romeo Mongrain,66584,79612,3 +136581,Joan Brenson,73313,13296,3 +136582,Rockpile Convict,26376,13825,46 +136583,Mullins,8852,123016,9 +136584,Conrad (Teenager),217412,1136786,23 +136585,Hitomi Kawamura,45505,81352,1 +136586,Bern Venters,134806,9976,2 +136587,Кима,72614,566708,3 +136588,Siri,86980,92416,14 +136589,Rajiv Julka,14751,78922,2 +136590,Koldo,80280,126771,2 +136591,Jack Travis,46189,103413,7 +136592,Jason,9471,14407,7 +136593,Angela,44741,35956,0 +136594,Iris,38031,58016,14 +136595,Lena Doyle,147106,6450,1 +136596,Nursie,51247,201488,8 +136597,Dottor Achilli,82083,69444,9 +136598,Nathalie la blonde,65646,239342,1 +136599,Park Ranger,258193,1299062,8 +136600,Tenente Salimei,183073,21229,1 +136601,Fr. Crispin,256962,72968,6 +136602,Vicky,82817,230152,6 +136603,Lord Stanley,108222,14691,21 +136604,Maidservant,62143,95632,27 +136605,,329216,163869,8 +136606,Military Commandant at Novokursk,91480,100595,8 +136607,Colonel Bagosora,16374,35014,5 +136608,Times Square Cop,102382,176658,33 +136609,Rachel,286971,1578317,18 +136610,Kate Webster,251732,8226,5 +136611,Journalist,298695,1128178,9 +136612,Harry,19621,23,4 +136613,Frantz,187602,38871,4 +136614,Security Guard,6589,50587,8 +136615,Birthday Party Mom,45013,148995,40 +136616,Emil - Bartender (uncredited),22584,119986,31 +136617,Nina,82495,79514,2 +136618,Travis,71670,587438,4 +136619,Motorist in Park,20174,45164,7 +136620,Gunvald Larsson,315362,52398,2 +136621,Madly-Céphise,63401,1606879,6 +136622,,126250,1476773,21 +136623,Warrant Officer Darrel Harrison,27983,37446,2 +136624,Anna Witting,15759,78717,2 +136625,Carl,367412,1451540,3 +136626,Shu,126963,1681,14 +136627,Himself,324173,56910,4 +136628,Loris Harrow,13600,504,6 +136629,,218772,51740,3 +136630,Nicky,21343,177,3 +136631,Silent Wolf,263341,1341,1 +136632,Policeman,17317,1676739,28 +136633,Hape Höfel,315335,1124925,8 +136634,Boggis,49391,9191,2 +136635,Bengt Danielsson,70667,63764,3 +136636,Subway Riders,27814,1856480,16 +136637,TV Dad (voice),35,179632,20 +136638,Rev. Wilson,42062,127520,6 +136639,John Doyle,58664,97600,4 +136640,,203072,16777,3 +136641,Bea Davis,36527,58063,2 +136642,Sanne,58396,228513,4 +136643,Dr Murdock,228074,30769,4 +136644,Marguerite de Bourgogne,79892,148589,0 +136645,Lei's mother,18758,125301,7 +136646,Inspector Smythe,61430,10925,4 +136647,il notaio,58611,228149,8 +136648,Senator Roark,189,6280,7 +136649,Himself (Archive Footage),450875,1241252,0 +136650,Nathan Lloyd,10594,13473,1 +136651,Juliet Stoker,1586,206652,12 +136652,Henry Fiuli,9950,60800,13 +136653,Lorenzo,419522,1438973,10 +136654,Psilene,37817,279486,1 +136655,Kommentator,62688,122539,6 +136656,"Shôgakusei no Akane (segment ""Kashiwagi"")",26693,96050,2 +136657,Sergo,56448,20070,5 +136658,Intern,153161,34818,37 +136659,Eli Skinner,94176,50306,9 +136660,Himself,15725,76113,1 +136661,Hotel Porter,98349,185705,9 +136662,Mrs. Flanagan,28071,99562,6 +136663,Rome Policeman,240745,1466168,31 +136664,Anne Shirley,397520,1130510,1 +136665,Buurvrouw,5899,27881,12 +136666,George Caldwell,59895,30216,8 +136667,Miss Newberry,121003,9073,6 +136668,Camper Driver,5237,635804,15 +136669,Nihal,140485,1112587,0 +136670,Col. Reed,4820,14508,12 +136671,Mrs. Gray,43489,88461,6 +136672,Randy,423377,187494,9 +136673,Interpol officer in van,10610,137146,22 +136674,Luis,39781,104381,9 +136675,Alonso,323675,1126417,14 +136676,Mother,310119,8786,3 +136677,Munchkin Suitor (voice),59981,78798,7 +136678,Amber Cross,414067,169725,2 +136679,Narrator,388055,4038,1 +136680,Sir Cuthbert Ware-Armitage,38792,29427,14 +136681,Megan Russell,158150,1525601,7 +136682,Soul,10604,65893,5 +136683,Ebbey,88558,39393,7 +136684,Pei-Pei's Mom,10330,112288,11 +136685,First Pedestrian,31899,119549,46 +136686,Hollywood Boulevard Type,26486,1416443,38 +136687,Marius,346672,10920,3 +136688,2nd opinion doctor,19398,1469195,35 +136689,Ship's Captain,24973,4074,41 +136690,Ari,13486,141463,3 +136691,Julia,34469,124618,10 +136692,Le commissaire divisionnaire,19548,24379,1 +136693,Vladimir Kozant,48118,175910,3 +136694,Leraar,25797,211092,14 +136695,JJ,29798,63206,0 +136696,"Canadian Bat, Man!",290825,34947,18 +136697,"Maria 'Angel' Barker, aka Mrs. Brown",44208,2896,0 +136698,Joie,109886,10165,6 +136699,Larry,13946,6446,6 +136700,,256907,1110118,6 +136701,Pandit Omkarnath Dhar,275269,35780,1 +136702,Timmy,39800,1251975,6 +136703,The Killer,9841,59827,11 +136704,Giacomo Fiori,43989,55914,2 +136705,Narrator,23207,2224,2 +136706,Wendy Franklin,50725,1772,1 +136707,,133788,59270,2 +136708,General Gustav,277778,1334134,6 +136709,Villager Fan #1 (voice),10192,1784323,27 +136710,Melanie,44933,35127,7 +136711,Hospital Cook Hamit,74879,1001783,14 +136712,Doctor at Medical Symposium,51571,569144,13 +136713,Zed Starkovitch,209244,44176,20 +136714,Romulus Augustus,9703,25663,7 +136715,Carl,25941,1148519,10 +136716,Tim Hickey,259695,39389,8 +136717,Sgt. Grimaldi,122677,1112908,6 +136718,Pugile,43211,129339,11 +136719,Uncle Pete,47962,1071375,6 +136720,Alexi,26116,94698,7 +136721,Heidi,9274,50683,2 +136722,Himself,394668,1611362,9 +136723,Girl at the Pool,429838,1618515,15 +136724,Mungus,413391,74245,7 +136725,Alekos' father,47778,1762726,9 +136726,le patron du PMU,37653,71377,11 +136727,Nick the Custodian,2567,1089927,54 +136728,Legend,50161,990,5 +136729,Gray,12171,26259,3 +136730,Park Won-jae,36164,1240218,2 +136731,Mia,56596,106657,7 +136732,Spider Victim,75761,213837,32 +136733,Herself,23128,17265,7 +136734,Special Appearance,76788,1339825,15 +136735,Daddy Foxx,92309,5050,0 +136736,,270081,90740,1 +136737,Sadie,278632,92175,2 +136738,Oh-Jot,13855,1120766,7 +136739,Beautiful Assassin,13805,28639,6 +136740,Young Ben (voice),110416,1442869,10 +136741,Harris,100770,16275,4 +136742,Anoppi (Juha's mother),124979,1531738,6 +136743,Commander,204040,29600,13 +136744,,31018,14888,3 +136745,Gopal,90634,35742,0 +136746,Marlene,21030,54044,7 +136747,Arthur Moore,38783,29370,5 +136748,Frankie Scannapieco,33436,3265,3 +136749,Construction Kid,156700,1842173,8 +136750,Tom Hanson,10274,2224,0 +136751,Jonathan Livingston Seagull,56150,18643,1 +136752,Homer,84249,1534584,2 +136753,Jay Braddock,921,14889,7 +136754,Mark Binney,30141,18325,3 +136755,Joe Friselli,44087,132598,8 +136756,Geun-shik,4550,1255409,17 +136757,Martin,42346,935235,4 +136758,Steve,3563,20818,7 +136759,Driver,41283,18918,0 +136760,Bruce Lindsay,375082,17421,10 +136761,Fred Peters,242332,99330,7 +136762,Clifford Sturges,58411,26510,0 +136763,Bob Casey,43809,9067,3 +136764,Stella Masen,68976,103441,1 +136765,Constable Hawthorn,425774,1707959,65 +136766,Herb Backett,43384,2097,7 +136767,Jett,358724,1506904,3 +136768,Rangeela,12273,11851,2 +136769,Gordon,460135,78798,13 +136770,Prof. Mihailescu,48116,111910,8 +136771,Chuck Deems,80720,88462,5 +136772,Billy Shaw,53931,3347,5 +136773,Nurse,30929,100997,9 +136774,Burt Wilson,19371,83976,4 +136775,Mrs. Bennett,5421,1180374,6 +136776,Ziad,8932,931684,4 +136777,Administrator,47186,1232502,39 +136778,Norman Strick,38749,33,1 +136779,Andrés Cabrera,42502,31796,3 +136780,Seamus O'Grady,9471,15009,12 +136781,Rojar,24351,56097,5 +136782,Wabeek,238985,97146,13 +136783,Ilmari Vouvila,109861,210515,4 +136784,Steve,266400,3555,3 +136785,Claire Lindquist,27034,96816,5 +136786,Mordechai Jefferson Carver,19187,6163,0 +136787,Alex,227094,557840,0 +136788,Cora Corman,11172,58754,4 +136789,Mathieu,361571,1649159,7 +136790,Rogue Cop,290825,19302,19 +136791,Himself,32451,1137250,3 +136792,,81463,1480663,13 +136793,Bell Hop,99283,120701,5 +136794,Drunk Driver,100275,1542593,13 +136795,Krebs - 2d hurt worker,47404,86356,7 +136796,Riley Wade,43250,7301,1 +136797,June,18040,46774,5 +136798,Mrs. Lloyd,22387,99329,22 +136799,Johnston (Credits) / Chris Johnson,118134,951965,4 +136800,,406992,9188,4 +136801,Grambo,66925,97619,6 +136802,Jake Spencer,11351,46927,4 +136803,Alice Rollins,9779,59183,17 +136804,Funeral Attendent,379959,1604106,19 +136805,Mrs. Craven (uncredited),47921,1264629,11 +136806,Gertrude,125705,7571,1 +136807,Skinner,128081,1094119,2 +136808,Wendlan,60269,1632866,27 +136809,Max Wagner,109716,11998,2 +136810,,41787,10767,0 +136811,Brian Bender,186759,68842,9 +136812,Zampano,124157,1251581,8 +136813,The Giver,227156,1229,0 +136814,Louise,192210,101625,7 +136815,Ivan,245891,1110069,28 +136816,Nardi's son,99261,1175382,7 +136817,Izzy Huett,101915,66431,6 +136818,Sexy Hipster Tourist (uncredited),337339,1653352,76 +136819,Burlington Potluck Guest,356752,1841546,69 +136820,Duffy - Referee (uncredited),43522,89729,34 +136821,Monte (voice),14405,77886,5 +136822,Fishing Instructor,31773,2930,7 +136823,William Dalton (voix),50166,33645,3 +136824,Tony Blair,408616,10881,3 +136825,Doctor,242224,1123198,18 +136826,Barney Cull,228558,92574,8 +136827,Jerry James,38901,1811,2 +136828,Mayor,76640,1033495,17 +136829,Eddie,339403,1237,8 +136830,Hal,79869,1263640,5 +136831,"Alvin, Child at Christmas Party",179066,930681,29 +136832,Zeke Freeman,184098,71530,9 +136833,Zhou Yunfen,295273,74421,3 +136834,Church Lady,371645,1622076,16 +136835,"(segment ""Yuki-Onna"")",30959,552646,16 +136836,Lorna Roman,29100,35254,1 +136837,Apathetic,4923,40044,7 +136838,Matthias,36672,115879,2 +136839,,73827,69068,15 +136840,Killian's Mother,286372,1352332,4 +136841,Stelios,1271,17288,5 +136842,David Cameron,11440,221018,3 +136843,,52323,1370,1 +136844,Katherine,102444,46780,2 +136845,Guten 'Gus' Edway,31397,68527,1 +136846,Becca,270851,886142,11 +136847,Golem 2,52369,1789819,11 +136848,Lucy Calhoun,147876,3242,4 +136849,Harry Nelson,425774,1707894,26 +136850,Ostap Bulba,17935,236369,2 +136851,Tang Fung,49199,20519,4 +136852,Anne Sullivan,1163,15675,1 +136853,Pilot,1721,239203,5 +136854,Nishida,101929,224662,0 +136855,Kaisha,8276,54279,9 +136856,Helen Jacobs,249021,1289272,4 +136857,Wes Tancred,74527,93105,0 +136858,Marilla Cuthbert,397520,11829,2 +136859,Jaime Feld,227700,1232067,9 +136860,Roadkill Driver,10066,62752,11 +136861,O,231762,1267015,1 +136862,Kanou,119172,929305,2 +136863,Sergeant Claire,30941,84707,29 +136864,Comanche Chief (uncredited),1673,18585,8 +136865,Brooklyn,84577,66579,3 +136866,Bug,23367,95356,6 +136867,La Claire,228647,105505,4 +136868,The Shadow (as Andy Maclennan),111302,1188616,4 +136869,,88953,1537389,6 +136870,Giuseppe Marchini,165159,52657,1 +136871,Train Conductor,18651,30217,41 +136872,Kyôko Nakamura / 'Okyô',45489,82874,10 +136873,Tancredi Ciraulo,121998,1076595,3 +136874,,320453,235233,9 +136875,John Holmes,156360,74875,9 +136876,Sgt. John Libbey,139826,25129,0 +136877,Sophie MacDonald,56135,10606,3 +136878,Ice,9812,2683,6 +136879,Reverend Guy Roy Davis,356900,21163,4 +136880,Binky the Clown,73501,15661,13 +136881,Tobacconist,22387,2929,8 +136882,Justin,14432,43265,8 +136883,Karin Åkerblom,41764,47153,3 +136884,Clifford Cassidy,33025,89989,7 +136885,Királylány (voice),41078,1086293,8 +136886,,38164,127040,0 +136887,Sal Paradise / Jack Kerouac,83770,32987,1 +136888,Salvatore Trapanese,52914,240910,12 +136889,Tatsuemon Kanamura,52728,7455,1 +136890,Aurore Gagnon (10 years),16147,79606,0 +136891,Bacarozzo,356296,238066,10 +136892,Pvt. Griggs,44140,130334,8 +136893,Brooke,43938,58356,1 +136894,Rayna's Friend #2,356752,1841493,10 +136895,Ed Wheeler,144475,1017631,14 +136896,Bäckersfrau,58757,228349,12 +136897,Setoro,234284,144655,9 +136898,Scotty,36691,115977,18 +136899,Mr. Maris,26142,58637,10 +136900,Julien,76268,586138,2 +136901,Julio Bordiola,86154,932925,2 +136902,North Platte Radio Operator,18569,1027243,36 +136903,Dave,388243,159489,6 +136904,Maryjane,45013,25703,3 +136905,ispettore PS,379873,1044768,12 +136906,Mrs. Katagiri,34019,533325,5 +136907,Fertility Doctor,214756,352,15 +136908,Sach 'Turkey' Horace Debussy Jones,89145,33024,1 +136909,,142656,1441644,8 +136910,Henry,68174,200483,10 +136911,Pete Smalling,99312,95043,5 +136912,Young Charlie,29136,4736,11 +136913,Butler (uncredited),31773,141520,53 +136914,Tanimura,98631,9671,8 +136915,Sr. Cadet Officer,14008,212665,11 +136916,,293412,18181,4 +136917,Judy Sanford,41495,126679,8 +136918,Kapitan Wolniewicz,25667,235493,4 +136919,Audition Girl,24469,1579246,25 +136920,Elke Ackerman,28068,21542,2 +136921,Howard Hughes,2567,6193,0 +136922,Marcel,59424,237151,3 +136923,Autumn Love,114577,210343,9 +136924,Nancy Perkins,32790,204964,6 +136925,Randy Goldman,192623,212686,3 +136926,Hilding Öster,129359,145693,7 +136927,Mark,15316,207509,14 +136928,,73043,560191,2 +136929,Tramp,22494,1301293,8 +136930,,190940,105444,6 +136931,Jack,295964,55467,15 +136932,Private Baker,89242,14371,1 +136933,Femme devant miroir,98277,1849126,49 +136934,Celebrity-Bräutigam,6076,47780,10 +136935,Dancer,11172,1634331,30 +136936,Florence Bell,157843,14464,4 +136937,Pang Ying,334298,88495,6 +136938,Police Officer,268920,1718665,103 +136939,Eula Varner,40085,855,4 +136940,David Callaway,11096,380,0 +136941,Ms. Huck,104859,1037299,4 +136942,Ballroom Dancer (uncredited),121674,1742640,43 +136943,,324572,114756,6 +136944,,202984,1185270,4 +136945,Jenna,71672,64305,3 +136946,Evan,107781,110799,4 +136947,Dwight,27573,88550,4 +136948,Dr. Schlenna,43514,94110,17 +136949,Ghost Soldier,225728,1774535,22 +136950,Siren,50329,68653,9 +136951,,131478,1285571,3 +136952,Tome,402455,1071783,15 +136953,Victoria Guzman,163706,1145329,15 +136954,Aldo,186630,89283,6 +136955,Ben,188927,65779,14 +136956,Fallon,253283,167604,5 +136957,Kankkunen,55495,1839573,17 +136958,Youssef,1595,156739,13 +136959,Maggie,18739,33399,3 +136960,Honey Lemon (voice),177572,589162,6 +136961,Viktor,83459,1283677,11 +136962,Coleman,150065,1462,3 +136963,Andi,15189,34847,0 +136964,Ogre Baby / Villager Kid (voice),10192,76743,24 +136965,Gaston,140470,939680,12 +136966,Driver,80389,2461,0 +136967,Pool Reveler / Party Goer (uncredited),331313,1767233,54 +136968,Le danseur,12446,1356425,22 +136969,Lehrer,58757,228350,13 +136970,Detective Hirama,282069,2541,10 +136971,Joanne,62039,159614,4 +136972,"Слава, диктор",143883,86861,3 +136973,Mackie,156326,150603,1 +136974,American Businessman,7549,52906,10 +136975,Telegrapher (uncredited),43522,1271053,26 +136976,профессор-археолог Николай Георгиевич Мальцев,20871,86671,4 +136977,Professeur,436340,1744821,8 +136978,Rick Bailey,24090,137969,2 +136979,Alice Rutter,340584,1475744,5 +136980,,334298,116636,12 +136981,Ken,260001,73149,11 +136982,Cop,62046,1330719,17 +136983,Tosh,47878,11701,12 +136984,John,85743,1273011,3 +136985,Rudy,25038,33396,9 +136986,Officer James,258193,1299061,7 +136987,Valerie Stanton,29116,30233,0 +136988,Sissy Hammer,99846,75346,2 +136989,Tommy,287301,124867,3 +136990,Paulette Girard,42191,93902,2 +136991,Moran's Henchman (uncredited),53576,89662,13 +136992,Chaz Jr,218784,231547,7 +136993,Political Pundit,8414,95781,14 +136994,valkotakkinen mies vankilassa,442752,1761853,45 +136995,Robin,22051,121757,14 +136996,,410259,283807,5 +136997,Lily,19255,19,5 +136998,Young Detective,6687,569842,10 +136999,Thierry Raynal,92257,239396,2 +137000,Johnny Tsunami,24020,11398,6 +137001,Woman in Bed,291164,1185039,9 +137002,Gannon,54099,36055,1 +137003,Coffeeshopgast,130739,1787116,34 +137004,Commander Shih,38099,62427,4 +137005,,256836,1355224,5 +137006,Chip Woolley,197583,22108,0 +137007,Clarkson,208869,63071,11 +137008,Facteur,310567,1197124,7 +137009,Roger Piggott,65603,90163,6 +137010,Bernard Buffet,245775,1315535,11 +137011,Jim Noble,87293,59299,2 +137012,Detective Garcia,419430,1299674,37 +137013,Inga Dyson,51054,10774,1 +137014,camorrista alla sala biliardo,11048,45983,16 +137015,Juror,27717,178413,13 +137016,Harry Berg,12631,36790,2 +137017,DA Joe Lobruto,6145,11064,2 +137018,Tom Garrison,105059,166358,39 +137019,,61533,38583,1 +137020,Vera,254188,158136,0 +137021,Yuan Shikai,69310,1619,1 +137022,Friend of Jack,24199,91353,7 +137023,Carmen,117120,571728,8 +137024,Invitée,85883,1293916,11 +137025,Olaf,89921,30898,6 +137026,Mick Flagg aka Mike Pierce,72823,40433,0 +137027,British Soldier,1116,1466856,73 +137028,Soren,11137,18025,2 +137029,Girl in Fountain Line (uncredited),83965,37917,4 +137030,Reporter No. 1,87343,1360969,10 +137031,Angelo (voice),77950,40481,4 +137032,Maj. W.G. Roberts,15807,111464,12 +137033,Messenger Boy (uncredited),61151,1263061,11 +137034,Lisa Muller,4459,14168,2 +137035,Graham,417936,84841,3 +137036,Aristeidis,331958,1123686,4 +137037,Sonal Roy,20623,78923,19 +137038,,48959,162398,10 +137039,Genji Takaya,25716,46364,0 +137040,Kitten,156603,940179,12 +137041,Vilander,51141,575502,9 +137042,Gina,39495,67515,12 +137043,Dale Ogden,27501,97992,7 +137044,Female Skier,17306,553762,20 +137045,Eddie Decker,298158,1465158,4 +137046,Marybeth,11908,70899,1 +137047,Max Waxman,9846,157169,10 +137048,Richards,33134,1128162,13 +137049,Michael,22051,142263,11 +137050,Felix,19181,1097799,13 +137051,,111836,85693,9 +137052,Sheriff Bob Massey,176670,110204,5 +137053,Dr. Grogan,43016,4973,4 +137054,Trolley Lady,13802,8443,4 +137055,Lence's sister,337758,1563451,16 +137056,Mrs. Troll,31713,39802,5 +137057,Yankee Clipper (uncredited),28293,1276276,14 +137058,Michael Townsend,42669,33278,2 +137059,Clarissa,7980,113926,13 +137060,Yôichi Hatta,256930,45999,1 +137061,,63215,1520919,41 +137062,Choi Myeong-ju,32168,545756,2 +137063,Joe X's Blowsy Blonde,4932,128201,7 +137064,Movie Spectator (uncredited),22943,133099,45 +137065,Captain Hardt,75363,3001,0 +137066,6 year old Albert,188161,1542940,34 +137067,Helena,182129,10168,5 +137068,,32286,7353,0 +137069,Ma-nyeo,4550,1256494,4 +137070,Man With Cigar,266285,47969,26 +137071,Mrs. Austen,2977,477,2 +137072,Iva,130055,5470,1 +137073,Creature,224944,1642136,11 +137074,Marjorie Guthrie,5638,81553,14 +137075,Mrs. Smalls,9843,13920,4 +137076,Mrs. Fine,120259,17662,20 +137077,Himself,151870,1165390,0 +137078,,37959,110500,5 +137079,Fulvio Canfora,315319,233334,0 +137080,Kitty (uncredited),26758,4301,10 +137081,Schwarzen Witwe,75578,13508,17 +137082,Himself,36883,136479,9 +137083,Christian Rubi,16436,90523,11 +137084,Paul,39992,1050993,5 +137085,Richard,212481,1196875,1 +137086,The Chief,393732,10132,2 +137087,Dancer,8617,159913,13 +137088,Stan,14527,2456,4 +137089,Helen Robinson,34650,89684,4 +137090,Shop Keeper,99329,1200621,2 +137091,Tara,23739,987186,7 +137092,Gene Simmons,4551,57756,19 +137093,Ken,259694,496470,6 +137094,"Gulabo, Nathulal's Wife",96159,35816,14 +137095,Injured Red Shirt,188927,936932,27 +137096,Nicola 'Niki' Renda,44933,132419,1 +137097,Mick Jagger,128270,1192761,14 +137098,Libby,7942,9030,1 +137099,Benjiman Walling,213914,21246,3 +137100,Marika,114172,1364782,1 +137101,Ikudayisi,225283,1373733,1 +137102,Lyra,22051,16181,6 +137103,Kurt Posel,203819,65054,9 +137104,Harvey Blinton,48281,188632,3 +137105,Rosebud,80264,231773,7 +137106,Driver,51939,2296,0 +137107,James Crowley - One of The Four Horsemen,43812,1550963,15 +137108,,14284,595477,2 +137109,Frederick's Mother,157898,8515,15 +137110,Nathalie,82501,132182,3 +137111,Valeria,245950,1888580,3 +137112,Nick,17725,76943,9 +137113,Airport Background,351242,1569909,11 +137114,Old Man in Montage,18651,171030,72 +137115,Gabe,115276,40479,17 +137116,Himself,63144,1437339,8 +137117,Nakoma,362703,33527,4 +137118,Cuca,1896,101,3 +137119,Cobrina,95037,1949,11 +137120,Alliance Pilot,16320,80444,35 +137121,Burt Craven,19946,31779,8 +137122,Marie-Anne Caron,16147,79609,5 +137123,Mr. Chan,202214,45329,11 +137124,E. Clay Benham,57684,3363,4 +137125,Charles,111960,5825,5 +137126,Spellek,54570,30719,6 +137127,Belle,169726,29902,0 +137128,Tom,79935,179881,12 +137129,"Lajos Tót, chief fireman",8776,56295,1 +137130,Mrs D'Urberville,101915,8227,19 +137131,Araya Souren,23155,23987,2 +137132,Rouault,273510,42996,8 +137133,Sgt. Paul / The Witch / The Old Man,28592,55636,4 +137134,Earthforce Navigator,10916,106728,14 +137135,Dancer,85446,932095,6 +137136,Nora,59040,46116,9 +137137,Teacher Assistant,22051,18282,21 +137138,El Caribe Party Guest,2001,1461320,82 +137139,Anya,339342,1478377,10 +137140,Sam Gervasi,48967,34257,4 +137141,Johnny Hyland (uncredited),28000,82189,73 +137142,Shipping Customer,113038,1056211,6 +137143,McCall,30054,135197,15 +137144,Han-Deuk,280019,1171953,8 +137145,Robert Gross,2567,1213786,10 +137146,Nathan Stillo,140652,145319,2 +137147,Marvin Gaye,189359,1475588,1 +137148,Spirit Squad Girl,428687,1776843,21 +137149,(voice),16137,79550,0 +137150,Joe - Institution Patient (uncredited),244539,1508818,25 +137151,Pontius Pilate,30973,107399,4 +137152,Coverall Man (uncredited),370755,1650175,26 +137153,Bumboat Girl,52859,1172830,38 +137154,Bumboat Girl,52859,1671457,35 +137155,Nurse of hamoun's grandmother,43761,1339650,3 +137156,,110001,56467,23 +137157,Thanh,25784,143434,3 +137158,,143073,544623,5 +137159,Kane,359471,1194120,8 +137160,Walter Neff,6069,49820,6 +137161,Winnie Marble,36519,41516,1 +137162,Julian Nava,93511,587,15 +137163,Claude William Hope,103938,14868,2 +137164,Edmonds,5928,4974,12 +137165,Carter Eastman,39824,68527,1 +137166,Soldier (uncredited),293660,1683960,43 +137167,Bum,9899,60141,14 +137168,Lt. Burke,67377,20392,2 +137169,Ceilidh Band,1116,1896884,54 +137170,Police,41187,1888571,5 +137171,Pastor,110525,31209,8 +137172,Dr. 'Doc' James,77964,96721,10 +137173,Sarah,219466,90755,5 +137174,Lord of Armour,10257,18897,11 +137175,Louisa Risca - also spelled Louise Riska,70753,1170316,5 +137176,Reverend Longway,9959,61011,11 +137177,Rupert Eastwood,30792,107012,3 +137178,Cyborg (voice),396330,65640,10 +137179,Shankar Narayana,80276,89153,4 +137180,Martin Lovell,186268,95733,13 +137181,Sam Hagood,38432,12427,7 +137182,Kyle,32790,1026218,8 +137183,Teddy Gardner (announcer),128669,1451973,12 +137184,Gu Zhutong,25626,96862,22 +137185,Diana Rivers,38684,302165,5 +137186,Franssou,13739,4166,1 +137187,Mark Avery,9981,35554,5 +137188,Joan Marshall,35404,114291,18 +137189,Virgil Malloy,298,1893,6 +137190,Berno Berni Sr,58615,225258,3 +137191,Jeff Reigert,13173,22226,0 +137192,Cockney News Vendor,109716,2941,16 +137193,Oliver,49343,1197824,4 +137194,Wayne,413417,557887,6 +137195,Claire Lefrançois,23857,208079,2 +137196,Ginette,44522,145074,6 +137197,Sandra,10362,5025,3 +137198,Lottery Announcer,24420,193040,24 +137199,Alex,316776,1436389,1 +137200,Rita,4538,66443,8 +137201,Oliver De Boys,19103,76215,3 +137202,Geronimo,37238,27747,0 +137203,Coverly,20301,85902,7 +137204,Vinny Ravenna,59231,943602,9 +137205,Mountie,3580,1378664,50 +137206,Ben,363890,19384,2 +137207,Noah Vosen,2503,11064,2 +137208,Carlos,1655,18406,7 +137209,Arthur,21837,87952,1 +137210,Brigitta Sirny,166666,4460,2 +137211,Cotton,58,1715,12 +137212,Hunter,13493,64145,8 +137213,Catherine,20047,1169284,3 +137214,Special Forces (uncredited),263115,1116699,99 +137215,,74126,1072014,10 +137216,Hanna Reitsch,47536,45467,3 +137217,,349441,16604,5 +137218,Brandon,41809,60005,1 +137219,Bank Customer,391375,1613246,12 +137220,Teacher,267466,1171574,4 +137221,Stormtrooper,330459,1728968,86 +137222,Kimberly,333663,1736792,10 +137223,Stix,88036,15543,2 +137224,la femme de la voiture,60824,1425950,11 +137225,Kid in Park (uncredited),337339,1641617,61 +137226,Highway Patrol Officer,272878,1683796,33 +137227,Mart Owner,304372,1500222,25 +137228,Alex Reed,68347,229714,1 +137229,Nathan,136582,1151806,5 +137230,,1421,1723427,12 +137231,Doctor,179066,14658,8 +137232,Party Babes,166221,173879,20 +137233,Reporter at Boxing Commission Hearing (uncredited),28000,85776,65 +137234,Willy Stronz,130233,5796,2 +137235,Lightfoot,30708,9112,3 +137236,Singlet,94340,27752,0 +137237,Jeff,37497,117809,0 +137238,Rachel,272892,176823,2 +137239,Stooge Moe,95037,6777,7 +137240,Stanley,127286,34715,4 +137241,Unemployment Clerk,48949,168638,18 +137242,Fatali Khan Khoyski,371741,59764,6 +137243,Billie Wingate,90932,125847,5 +137244,Katie Morris,258193,1299060,0 +137245,Col. Valachev,51434,920,1 +137246,,187022,1174686,5 +137247,Rick Daigle,128215,23534,11 +137248,Elena,71133,132478,3 +137249,Truman,23830,2171,4 +137250,Gerald Laird,153397,192846,10 +137251,Kristina,389614,592421,3 +137252,Insane Officer 'Eden',19898,46216,9 +137253,Trenchard,131737,4391,1 +137254,Rick Cabot,1640,18269,5 +137255,Coby,28510,17199,4 +137256,,168295,97629,8 +137257,Mike Figuerola,76640,40481,5 +137258,Stacey,107985,1278135,47 +137259,Scavenger,42552,1648475,13 +137260,Sheriff Ben Owens,30054,7301,1 +137261,Maginty,13957,76107,10 +137262,Gen,14088,90568,0 +137263,Nathan G - Werewolf,246741,1780274,32 +137264,Stilleto,81463,101471,4 +137265,Himself,13591,1926,0 +137266,Lindsay,43875,32139,14 +137267,Julie Fareri,254918,98306,10 +137268,Beth,62761,82437,14 +137269,Tom,363890,85519,6 +137270,Security Guard Jiro Suzuki,12720,73677,5 +137271,Rodriguez,42623,151908,11 +137272,,336549,1339676,13 +137273,Bit Girl,18690,91211,13 +137274,Butch (as Bennie Bartlett),186268,556861,10 +137275,Sanjay,339994,1466581,5 +137276,Illingworth,29907,1229902,12 +137277,,337012,117165,9 +137278,Blonde Bachelorette,77930,1784603,24 +137279,Mrs. Mabel Loftus,35895,159553,6 +137280,Incense Vendor,397717,1722986,29 +137281,Mestre José Santana,97110,143135,0 +137282,Dentist Prisoner,57924,1076805,5 +137283,Ray Arcel,184341,380,0 +137284,"le docteur Fumet, le médecin personnel de Beaufort",75066,117901,6 +137285,Herself,209112,1696037,38 +137286,Jack Flack / Hal Osborne,48677,12850,1 +137287,Jakobsson,49940,74709,1 +137288,Herman Melvin,37731,1640,2 +137289,Old Lady,344120,1497332,7 +137290,Aaron Gault,312497,967696,5 +137291,Don Carlos,65674,10169,0 +137292,Herself,83802,153609,14 +137293,Tommy,84249,1534585,3 +137294,Doorman,27973,4303,16 +137295,Jill Johnson,30554,10556,0 +137296,Brit,122081,78030,3 +137297,Aunt Kimberley,276906,52119,3 +137298,Edvard Roivas,88126,935863,2 +137299,Suocera di Giovanni,58013,1525818,9 +137300,Viktor Parkov,368342,213581,6 +137301,,105991,1265891,4 +137302,Bert Krakauer,210913,1163517,6 +137303,Sly Baron (voice),302960,56890,7 +137304,Bearded Biker,42533,98082,10 +137305,Navy Officer (uncredited),1421,18363,50 +137306,General Ansari,196852,128728,9 +137307,Lord Clive Cheney,120676,145838,3 +137308,Doctor,30941,1747350,37 +137309,,218772,1125592,5 +137310,Ann,70278,1413688,1 +137311,Doctor Bell,80775,15953,4 +137312,Himself,157117,69230,12 +137313,Man in Garden,56942,1747723,7 +137314,Mrs. Perkins,48207,164903,14 +137315,Lee Wai Yam,1550,1594623,21 +137316,Sara,317,4636,1 +137317,Monkey (voice),38317,19292,5 +137318,Sonny,70586,62644,0 +137319,,36243,33517,11 +137320,Bernadette,1421,18480,6 +137321,"Frederick, Duke of the Germans",58905,29536,14 +137322,Miss Jenkins,67375,981098,25 +137323,Reporter (uncredited),213681,1771564,38 +137324,Watch-Guard,16131,79429,21 +137325,Fred Boggis,49391,85718,12 +137326,Willemijn,129518,927675,8 +137327,Luke,121401,81074,3 +137328,Young Man,167073,1229849,41 +137329,Theodore Crawford,6145,4173,0 +137330,Mother,155308,110146,1 +137331,1940s Officer #2,293863,1459145,18 +137332,Bill McDonald,69903,3087,13 +137333,Thenmozhi,66526,86077,1 +137334,Himself,69019,555500,0 +137335,Tony Lango,116160,93623,5 +137336,Archer's Woman,20766,1297771,9 +137337,Rev. Rufus,22029,109086,3 +137338,Don Guadalupe,44655,185795,0 +137339,Melissa,58400,126984,2 +137340,Tess,262958,1182597,11 +137341,Ellen Andrews,196257,56881,0 +137342,,54503,1174703,8 +137343,Junior Bougon,430058,90681,4 +137344,Jean Tithe,104674,1482948,6 +137345,Additional Voice (voice),177572,1196879,46 +137346,Ethan,18585,32458,2 +137347,Pascal,198130,129765,3 +137348,Detective Sabrina,188102,119760,12 +137349,Garance,13652,38863,3 +137350,Dr. Sundstrom,32082,786,5 +137351,Laura,308174,18938,3 +137352,,143946,1201029,13 +137353,Himself,43065,2675,4 +137354,Carrie,273610,110930,5 +137355,Yasukichi - Fisherman,43113,1479148,17 +137356,Mr. Curry,28437,100796,9 +137357,,35652,1299282,5 +137358,UK Additional Muppet Performer (voice),145220,65294,54 +137359,Nadia,187028,1187038,2 +137360,Rothgar,10529,5049,4 +137361,Carmine Ferraro,270650,47774,5 +137362,,255772,58996,8 +137363,Phil Hubert,31445,108076,6 +137364,Castleman,86472,33820,6 +137365,Doug,384021,209674,0 +137366,Detective Sam Steele,142402,155968,3 +137367,,117550,44416,12 +137368,Ceilidh Band,1116,1896883,52 +137369,David Armstrong,336265,1186713,5 +137370,Peter,44746,43034,16 +137371,George,7515,31837,8 +137372,"Doña Eulalia, esposa de Don Ramíro (uncredited)",122019,585988,22 +137373,Gorilla,38404,52178,10 +137374,,340961,574159,16 +137375,Dancer,19995,1207267,51 +137376,Lorena Fanchetti,17906,21657,3 +137377,Donner vom Berge,130957,32617,8 +137378,Johann Petzmacher,457,591911,13 +137379,Mémère,39415,238958,7 +137380,Bose Babu,170838,1805265,4 +137381,Mrs. Betti,39436,236737,12 +137382,Dr. Briar,11321,156818,12 +137383,,8079,76233,25 +137384,Brenda,285860,1234291,6 +137385,Collègue Chapelle,35025,1768828,26 +137386,Middle-aged Matmaker,14525,80865,13 +137387,Hugo Barnstead,76465,2672,3 +137388,,53688,141619,2 +137389,Herbert,230179,388,7 +137390,Bert,111479,92843,42 +137391,River Policeman,121674,1516453,35 +137392,Sophie Bennett (voice),81188,1364655,8 +137393,,393939,1609059,1 +137394,Matron Hilda MacFarlane,20806,39740,1 +137395,New Recruit,72638,133230,42 +137396,Speaking Wind,1579,42021,27 +137397,Grace Huang,206197,1400908,17 +137398,"Franklyn Marsh (segment ""Disembodied Hand"")",26811,113,0 +137399,Sydney Policeman #2,13777,75121,24 +137400,Nina,11584,155917,10 +137401,Elizabeth Faro,69035,1533,0 +137402,Hung,10753,110844,7 +137403,Grandmother,110115,229364,2 +137404,Gary / Gavin / Gabriel,12994,10859,0 +137405,Ralf,49940,112853,11 +137406,Desperate Dad,199575,1438836,16 +137407,Tanja,16014,1569,10 +137408,Pazzo sul treno,59040,26700,3 +137409,Keith,65055,145543,7 +137410,Polizist Brandenburg,269258,36730,19 +137411,Cora Norman,28325,76493,2 +137412,Herself (uncredited),4964,8170,33 +137413,Blackbird,323679,2144,3 +137414,Rob McLaughlin,52827,33004,1 +137415,,27276,551853,44 +137416,Ruben Lentov,82448,1852,2 +137417,Freddie (uncredited),175035,942165,8 +137418,Ismet Ogan,354859,25095,21 +137419,Mrs. Breen,55448,17488,6 +137420,,31275,1853885,15 +137421,Matilde,102362,1272980,26 +137422,Saverio O' Trappetaro,56853,72784,24 +137423,Peggy John,33729,10190,5 +137424,Christophe,121539,1759895,3 +137425,Angelo Muro,297853,164657,10 +137426,Dieter Hofmann,167330,1831165,14 +137427,Himself,173467,1,2 +137428,Saburo,105210,1417317,12 +137429,,118257,15189,14 +137430,Daphne St. Claire,4592,22090,10 +137431,Juiz de Paz,296288,1839932,36 +137432,Raisa,284306,1497980,2 +137433,The Four Marx Brothers,13911,1614687,9 +137434,Declan,405473,1800025,13 +137435,Izmir,91628,1094449,8 +137436,,279543,1008345,12 +137437,Hong Bong-han,315439,79574,6 +137438,Old Baltazar,43685,549135,3 +137439,Joanna,3081,16051,9 +137440,Evelyn Stanton,19017,101756,5 +137441,Sterling,13954,76536,2 +137442,"Lui-même - 63 ans, un fermier solitaire",8930,1192631,0 +137443,Panhandle Phillips,118443,189896,1 +137444,Judge,195269,102751,10 +137445,Captain Marvel (voice),43641,3035,1 +137446,Sue Bhatnagar,403867,1115720,1 +137447,Crowley,99859,9140,5 +137448,Gemma,255456,147176,5 +137449,questore,108535,103777,12 +137450,Cop,260947,1304143,13 +137451,Prodnose,118,1588373,20 +137452,Horace Debussy 'Sach' Jones,180819,33024,1 +137453,The Therapist,242090,12836,2 +137454,Eva,72655,72560,6 +137455,Morgan Roberts,64130,84522,0 +137456,Rita,342213,1471525,5 +137457,Satomi (voice),149870,3905,14 +137458,Katie Armstrong Jordan,95504,30155,0 +137459,Bad Jim,102949,100861,5 +137460,Barn Dancer (uncredited),31509,88867,21 +137461,Sig.ra Casalotti,38310,120111,10 +137462,Dr. Mather,55236,29137,7 +137463,Dean Bartons,295656,129298,3 +137464,Baseball Player,82781,172156,7 +137465,Old Man,102668,199272,16 +137466,Primary Care Doctor,284293,1232484,12 +137467,Deputy Lance,335970,1718143,41 +137468,Ulf,83729,32411,6 +137469,Kea,155341,1136481,1 +137470,Max Carson,77664,134340,2 +137471,Nick Scott,394822,15336,3 +137472,Drag Fan,1481,1230327,38 +137473,Rabbia,49712,103062,11 +137474,Jon Savage,8272,1233,1 +137475,Żona pacjenta pierwszego przeszczepu,298040,140664,15 +137476,David,75233,1668754,6 +137477,Saburô Kurita,143946,1082753,10 +137478,Billy,55563,42700,2 +137479,Catherine,73984,15753,1 +137480,эпизод,20879,1773945,13 +137481,,340176,1627500,14 +137482,John Hayes,12247,71895,12 +137483,Graham McClintoch,194817,653,6 +137484,Fox spirit,75948,1184167,10 +137485,Looter (uncredited),45527,1063979,6 +137486,Jess Stearns,15759,78722,11 +137487,The Covey,173456,85410,3 +137488,Addison,97614,8783,0 +137489,Lucienne Saint Laurent,245775,15481,9 +137490,Pietro Monetti,20003,10164,4 +137491,Shelly Hunter,224251,40980,2 +137492,Johnny - Henchman,176867,1494862,37 +137493,Didier,61267,35882,7 +137494,John Brady,40041,4776,0 +137495,Pilot Officer T.B. 'Septic' Baird,41312,90624,2 +137496,Beckinsale,10087,56100,7 +137497,Keith Novac,302036,1384005,4 +137498,Mrs. Dwyer (voice),282247,1363658,4 +137499,Deputy Kyle,11509,1885589,37 +137500,Gary,78364,84848,7 +137501,,118760,202983,13 +137502,Diógenes Bravo,41298,29518,0 +137503,Natassia,142106,1179848,8 +137504,Ivar,88059,141980,0 +137505,Milicjantka,375742,968176,4 +137506,Deborah,82631,1573776,16 +137507,Durack,403570,109440,12 +137508,Wirt Willi,374247,1265053,6 +137509,Bob Willard,56151,11496,5 +137510,,14217,1716972,12 +137511,Impiegato Elgi,315872,1010113,12 +137512,Wayne,253154,1025444,6 +137513,Alex,19237,343,8 +137514,,345915,1224954,12 +137515,Sergeant,22999,22099,5 +137516,Jessica Hadley,12483,21711,4 +137517,Emily,228676,1051408,1 +137518,Griselda The Witch,72984,9599,5 +137519,Nurse (uncredited),156700,1842181,31 +137520,Michiko Hirai,105210,35643,14 +137521,Beatriz's friend,332872,1651933,35 +137522,Counselor Tetra / Ug,12525,19260,1 +137523,Erik,336806,1833056,9 +137524,Cicciona che fa footing,41610,306471,14 +137525,Barbie / Corrine (voice),23566,74358,0 +137526,Donnie,210047,57387,4 +137527,Cook (uncredited),134475,364526,12 +137528,Kyoko,89116,110058,1 +137529,Secretary,40387,33093,8 +137530,Bar Patron (uncredited),302699,1674440,18 +137531,Nano,141015,1114055,6 +137532,Lili Richter,8888,17067,0 +137533,Wendy,43550,125718,2 +137534,Uncle Costello,267931,4520,2 +137535,Mrs. Gray,42476,1652470,13 +137536,Ken (voice),10193,2232,4 +137537,William H. Seward,161187,52374,3 +137538,"Hegedüs Bálint, szocialista",86732,70499,10 +137539,Warren,103332,17421,14 +137540,le chanteur des rues,76651,579732,13 +137541,The Boy,105539,984873,1 +137542,Micki Salinger,42094,80928,2 +137543,Dr. Mark Rhodes,30289,52374,3 +137544,Designer,72592,228076,9 +137545,Iris,114577,58953,6 +137546,Emma,24486,10223,6 +137547,Embassy Guy,80389,1986,8 +137548,Naomi,205891,1128522,1 +137549,Christopher,39414,18793,4 +137550,Neger,9803,1542794,20 +137551,Fast Food Kid 5,242224,1413781,34 +137552,Eirik,15440,87880,11 +137553,Hakan,367492,1247474,1 +137554,British newscaster,52520,115177,7 +137555,Black Cook on Glencairn,52859,589730,18 +137556,Massi,293861,1271949,3 +137557,Shuter,3164,30979,8 +137558,Superman / Alfred (voice),300424,19508,8 +137559,Freier,6183,48514,14 +137560,Doctor Fedelmann (as Mme. Paquerette),183932,589540,12 +137561,Bert McCausland,70772,237383,8 +137562,Francesco Mancini,285840,1842575,17 +137563,Toshio,11838,552504,10 +137564,Butler,92496,1781893,21 +137565,,340961,262384,10 +137566,Rug Dealer,242683,89691,11 +137567,Ambulancefører,356326,1874736,26 +137568,"Raniero, Giovannino, Ivano",56804,89193,0 +137569,Jasmine,13162,180327,6 +137570,Lil' Man,150065,62646,8 +137571,Mrs. Lovett,139244,34901,2 +137572,Libertad Iris,116312,97643,12 +137573,Chifano,17386,17653,4 +137574,Garoto briguento,361146,1890677,6 +137575,Kosti,56135,13905,9 +137576,Nathan,50942,954794,14 +137577,Photographer Roman Ferde,52920,112415,9 +137578,Boy,43829,1234690,40 +137579,Jason Hunt,24632,1954,0 +137580,Elise,31011,98,3 +137581,Dr. Rolf Meineke,42460,26589,10 +137582,,31275,1266804,16 +137583,Rolle,49940,47073,10 +137584,"Cookie (as Wm. ""Bill"" Phillips)",43319,94337,14 +137585,Allan,140818,73637,1 +137586,Claudia,5165,41779,0 +137587,Man on Telephone (uncredited),43522,1000083,58 +137588,Deb Fountain,31146,6907,5 +137589,Polack (uncredited),28000,134308,19 +137590,French Soldier,369885,1651431,69 +137591,Father (as Edward Cassidy),110980,117586,10 +137592,Cliff Kirtland,42476,121144,1 +137593,David,28417,1091350,12 +137594,Shaoran Li (voice),31347,1221438,2 +137595,Camacho,68202,55259,9 +137596,Agente del carcere di Sagunto,73827,100932,6 +137597,Dave,16171,52888,35 +137598,Herself,324181,1775299,15 +137599,Marianne,13739,22307,11 +137600,Himself,22752,94433,0 +137601,Len Riley,257447,1429050,10 +137602,,243473,255923,5 +137603,Boss Skua (voice),9836,57829,6 +137604,Peeto,66125,83772,5 +137605,Herr Kaan,233639,13812,4 +137606,Gwen Phillips,10407,18892,1 +137607,The Witch,27409,5564,7 +137608,Bernd,98612,1117773,6 +137609,Dan Sherry,412202,125660,4 +137610,Nora Stanley - Housekeeper,12617,21878,14 +137611,LCpl. Corey Simmons,44943,66741,16 +137612,La compagne de Philippe Tailliez,332794,1860425,29 +137613,"Lee, The Unhappy Wife",82696,928637,10 +137614,Gourry Gabriev,125513,553282,2 +137615,,117534,1902450,23 +137616,Lucia,356461,9627,0 +137617,Clifford,24123,83530,12 +137618,Smoking Cricketer,16151,79714,27 +137619,Marcos,34588,132075,2 +137620,Josh,65579,1017301,7 +137621,,14210,58794,2 +137622,Concierge,83729,43738,10 +137623,Jenny,35626,931646,12 +137624,принцесса,27935,99288,6 +137625,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1801200,12 +137626,Sidney,47143,136170,1 +137627,Barfly (uncredited),14669,1017323,24 +137628,Michelina,47848,939103,5 +137629,Andreas Berthoni,8316,1846,14 +137630,Emma Lemp Talbot,130507,81018,4 +137631,Hercule Poirot,6081,47851,1 +137632,Bill Murray the K.,16378,1532,8 +137633,Radio Man,199575,57795,5 +137634,Jim Howie,32068,10169,2 +137635,Himself,23367,7487,37 +137636,L'inquilino,43231,9741,2 +137637,Henry,86131,1273694,6 +137638,"Emi, lead exotic dancer",43113,238630,11 +137639,Zafer Pavlou,334074,11953,14 +137640,Charlene,354979,1835259,42 +137641,Undertaker,19274,26727,9 +137642,Marilyn Marsh,43792,237562,0 +137643,Twan,151509,1709639,5 +137644,,32764,238556,9 +137645,,155325,1616635,7 +137646,'Cheerio' Chester,44087,115068,26 +137647,Mr. Roberts,56558,103068,10 +137648,Himself (archive footage),184363,1633919,9 +137649,Uncle Fester,107596,19426,2 +137650,Bando,37437,6609,1 +137651,Iceman,45335,1171862,9 +137652,Jimmy Wilson,20210,52474,6 +137653,,69428,585086,4 +137654,Nelly,57311,15200,0 +137655,Leif,140818,71186,2 +137656,Lt. Dodet,38154,61515,7 +137657,Morali,186991,1139484,9 +137658,Nephthys,205584,105838,9 +137659,George Harvey,7980,2283,4 +137660,Squint Calloway,105059,10608,3 +137661,"Саша, администратор",143883,86862,2 +137662,Herself,27637,1724692,28 +137663,Lisette,16921,84705,12 +137664,Lionel Webb,333663,1105706,12 +137665,Evarts Heilne,239519,89703,6 +137666,Kira Bedik,13468,17140,1 +137667,Briseis,81409,45034,5 +137668,Representative,376252,223348,15 +137669,Michele Weinberger,36249,58369,1 +137670,Mrs. Smash,21605,33399,7 +137671,Paulina,4380,16866,1 +137672,Chauka/Sid,363413,1521297,1 +137673,Nurse Adele / Doll Girl #2,49018,188081,8 +137674,Voice of Madison (voice),113148,90492,5 +137675,Young Arthur 2 Yrs,274857,1865309,12 +137676,Louise,24955,136758,3 +137677,Martha - Ireland's Maid,20644,88999,11 +137678,Trench Sentry,297762,1890511,41 +137679,Beatriz (teenager),332872,1651932,14 +137680,John,117550,1843632,15 +137681,Claudia,82481,1127384,14 +137682,Nick,94894,9275,3 +137683,Miss Monet,345922,110014,4 +137684,Lorraine Lionello,43213,17920,1 +137685,Albert Finch,355008,17835,0 +137686,Otto,79008,4965,3 +137687,Bodhi,257088,25616,0 +137688,,228339,1277475,5 +137689,Plant Manager,7871,1294399,10 +137690,Managing Editor,89337,171005,12 +137691,Mrs. Garan's Assistant,345918,1043662,7 +137692,Chateaubriand (voice),65958,3784,2 +137693,Keioniusu,105210,2542,6 +137694,Lilibeth Simone,33314,108213,2 +137695,Lance,9893,35236,12 +137696,Faith,28026,15309,2 +137697,Reunion Classmate,11172,1781228,71 +137698,Kiran,92391,1071127,6 +137699,Mrs. Crabtree,114577,68751,5 +137700,Tittle Tod,42252,1811,2 +137701,takaa-ajava vanginvartija,442752,1386186,46 +137702,Nola,112961,4730,0 +137703,Herself - Manager,18094,103217,5 +137704,Anke,75969,1902084,36 +137705,Patient,153162,154178,37 +137706,Piston,42533,33058,5 +137707,Abe Greenberg,46059,18861,11 +137708,Vanessa,288980,15566,3 +137709,Roger,9914,60419,15 +137710,poliisi,442752,1761845,37 +137711,,4344,1123123,7 +137712,Tessa,356842,135420,4 +137713,Lehrer Olsen,1838,19357,8 +137714,Steve Victor,13073,15416,5 +137715,Resurrection Joe,30637,113,2 +137716,Medic,2577,30082,17 +137717,Hanukkah Party Guest,356752,1841527,50 +137718,Lawyer,85126,160969,3 +137719,Tina,78854,27271,1 +137720,Alfredo's Tutor,70734,1618647,12 +137721,Odysseus (voice),82703,18864,21 +137722,Teetsi / Poacher #1 / Elephant (voice),10527,60279,18 +137723,Introductory Narrator (voice),27717,19404,15 +137724,Rose,41608,33928,2 +137725,Dumont,82501,1125109,9 +137726,Yoav,288977,119224,6 +137727,Assistant District Attorney Van Slack,14589,4071,3 +137728,Annemarie Warnkross,75969,1902099,52 +137729,Additional Voices (voice),82703,1504904,45 +137730,Susan,110980,34757,9 +137731,Soni,276846,629064,6 +137732,Student,43812,1492162,53 +137733,Saul,36597,73947,14 +137734,Joseph Goebbels,613,8796,3 +137735,L'adjudant Cornac,61765,24500,8 +137736,Addict Mother,11358,168500,30 +137737,Dr. Soma,43095,97629,5 +137738,Ann-Marie Di Verney,86643,185928,5 +137739,Capt. Zappi,8063,39004,13 +137740,Felix Deitz,130507,90517,5 +137741,Martin Grenville,35564,14671,8 +137742,Apartment Guy,48281,20196,16 +137743,Reichsführer SS Heinrich Himmler,613,8799,9 +137744,Inspector Sullivan,84352,601406,7 +137745,Narrator - Cambodia (voice),173205,72208,11 +137746,,57811,260762,3 +137747,,22701,1187648,10 +137748,Boyle,8619,1077820,8 +137749,Bully #1 (voice),9297,61403,15 +137750,Rajeem,331588,1833901,9 +137751,Trumpkin,2454,22970,7 +137752,Young Peter (uncredited),1640,1331797,51 +137753,Williams,9461,82832,8 +137754,Akris,190341,1470913,2 +137755,Well Dressed Woman,215379,1385281,19 +137756,Simon Peter,30973,10210,3 +137757,Nicky Grant,111479,11367,27 +137758,Burser,58,140452,23 +137759,Jane Barnet,42242,35341,5 +137760,Alison Wentworth,40087,22434,0 +137761,Signora Pioppi,3870,15385,8 +137762,Chubby De Coco,114096,7004,2 +137763,Amanda,274504,1723561,16 +137764,Maximo Oliveros,46773,1200478,0 +137765,Stockbroker,18651,115995,24 +137766,Jezebel (voice),38579,20497,5 +137767,The Coach - Principal Cleveland,107430,9601,10 +137768,Rags,175171,106095,10 +137769,Gigi,82341,120108,0 +137770,Adolf Hitler,139862,23750,7 +137771,Koltsov,111839,4252,6 +137772,Abdi Şakrak,80961,97272,0 +137773,Sackville,7548,52889,8 +137774,Mountain Twins,39982,1072158,7 +137775,Ethan Cooper,413417,1719070,0 +137776,Tankwärterin,277968,1158436,39 +137777,Graveyard Gus,47194,27737,1 +137778,Maria,83229,1544224,7 +137779,Nérée Caron,16147,79612,8 +137780,Dr. Maro,362439,1367569,8 +137781,Sophie / Voice of Paw-Paw,54662,16860,0 +137782,Himself,105583,1082853,10 +137783,Huntz,99909,33024,4 +137784,"Manzo, il maggiordomo",82080,1156614,22 +137785,,218508,2544,11 +137786,Kapıcı İsmail,80961,590782,2 +137787,Al,21583,58330,6 +137788,Clara,10740,8256,5 +137789,Ted,86643,55708,11 +137790,Shane,17082,552084,4 +137791,Himself,76176,17338,1 +137792,Caroline Reid,66113,58430,3 +137793,Sean,380124,1304335,11 +137794,Freddie's Father,42614,29952,10 +137795,Egyptian Street Vendor,246655,1796400,47 +137796,Shizue,134350,587658,3 +137797,Wilson,987,1213215,21 +137798,Aditya Shrivastav,117099,77235,0 +137799,Wallace,45211,100930,10 +137800,Julie Dreyer,56669,13920,1 +137801,Dr. Bierd,45800,30417,7 +137802,Leslie Thomson,158967,1115987,5 +137803,Simon,57829,1886757,11 +137804,,413992,1066283,5 +137805,Kond,66926,995627,4 +137806,Miranda,222339,142965,7 +137807,Student,239563,1274507,13 +137808,Jennings (uncredited),52440,13557,50 +137809,Customer,299780,1379268,12 +137810,Serena,54491,368,2 +137811,beggar (uncredited),50196,38593,7 +137812,Nicolai Griforiew,12206,591494,11 +137813,Factory Foreman (uncredited),14615,111287,35 +137814,Angie,121154,1216171,13 +137815,,38269,1818052,25 +137816,Dr. Pardo,120129,976039,8 +137817,Young Peyton Howard,52360,130003,48 +137818,Kazuko Enokizu,42170,72605,3 +137819,Director TV MX,264525,76855,11 +137820,Pompiste,344120,224816,5 +137821,1st Dwarf,26643,1747708,21 +137822,Policeman at Accident,99909,980330,38 +137823,Dave Markowitz,9890,16165,7 +137824,Padre di Carlo,58400,1093684,7 +137825,Tonya Baykova,94696,86895,3 +137826,Michael,99367,89885,11 +137827,Prof. Rafal Wilczur / Quack Antony Kosiba,68797,591277,0 +137828,Timmy Beesley,159469,50997,7 +137829,James,48319,54453,2 +137830,Karen Fields,24059,4430,3 +137831,Melita Machmann (voice),174309,1691848,8 +137832,Jimmy,27573,962997,8 +137833,Henry Brocklehurst,22744,10924,6 +137834,Michael (archive footage) (uncredited),52520,100,27 +137835,,32891,1187309,1 +137836,Dylan,426230,1833231,22 +137837,Ari,468707,232398,5 +137838,Andy Borchert,133183,14633,1 +137839,,43095,1663038,10 +137840,Johnnie Mack,42703,165373,11 +137841,Ezra (uncredited),76203,1438681,90 +137842,Dexter,159667,1849487,12 +137843,,227552,78837,0 +137844,Will,364379,1523859,7 +137845,Toplofty,31473,65598,10 +137846,Teen Ely,306952,1511975,32 +137847,Charlie Gant,11897,3265,13 +137848,Ben Stroud,18447,117395,5 +137849,Lore Schulz,19430,36841,1 +137850,Tall - White-haired Cafe Lounger,14554,102327,15 +137851,Nudist,92496,1795182,27 +137852,Kate Brewster - the Squire's Niece,31509,1409205,14 +137853,Susan Hardy,236324,589,0 +137854,Boy(s) (voice),227306,1394423,25 +137855,,377447,234641,7 +137856,L'homme de l'entrepôt,377853,7278,9 +137857,Ryoko Matsuzaki,83389,119244,5 +137858,Ted,22897,27545,13 +137859,Kang Soo-ha,142499,25002,3 +137860,Ernest Lane,43849,78847,1 +137861,Aura,7234,52126,5 +137862,Heleen Kleingeld,4134,34870,2 +137863,Ronald Roberts,151086,27906,1 +137864,Quentin,156015,1187191,8 +137865,Lauren,20432,88677,3 +137866,Royanna,254188,430313,13 +137867,Helen Kalahan,35656,1533,2 +137868,Shannon,84226,27855,5 +137869,Hélène Aughain,54563,3508,0 +137870,,66897,1270774,8 +137871,le Chef Dill,252102,1377171,8 +137872,Schwester Amelie,130233,3840,4 +137873,Otávio,70666,1694021,39 +137874,Mr. Fitch,39130,13361,18 +137875,Uncle Donnie,43670,25147,9 +137876,John Dodge,46189,4303,3 +137877,Aunt Delia,128669,1678682,11 +137878,Narrator (voice),97707,6818,2 +137879,Il prete,43646,52657,2 +137880,Lisa (double),46885,977522,13 +137881,Bridget / Jodi,343921,84698,3 +137882,Josie,193893,19961,2 +137883,Jimmy,30941,15534,10 +137884,Roner,13600,82145,12 +137885,Maria,1640,18289,41 +137886,Aleksey,307649,120234,0 +137887,"Prince de Namours de la Bonfain, Marietta's Uncle",43894,34748,4 +137888,Psychiatrist,101342,1321625,11 +137889,Martha,72847,1185411,10 +137890,Orrin,27873,81877,7 +137891,Detektiv,170759,5554,17 +137892,Benjamin (voice) / Farmer Jones (voice),815,4935,4 +137893,Mario,121539,50217,2 +137894,Vicar,172908,12000,3 +137895,Syd March,125490,572541,0 +137896,Paramedic #1,322518,1562521,12 +137897,SS Officer,102155,431085,25 +137898,Skomakeren,20372,123959,6 +137899,Előd,66926,932261,2 +137900,Susanna Dahlin,269306,70276,1 +137901,Man at Club (uncredited),17136,135827,24 +137902,General Villanova,85602,9221,2 +137903,Meditation,51036,1879481,33 +137904,Samantha 'Sam' Powell,205587,21657,2 +137905,Prof. Rodriguez,28063,99529,4 +137906,Deputy Moon,42402,96142,9 +137907,Young Tony Washington,31385,1378398,10 +137908,Igor,313896,1325764,14 +137909,Preacher,41932,131667,13 +137910,Kelly,39356,1753256,4 +137911,Alice,387399,138774,6 +137912,Sabrina,2241,23123,9 +137913,Valentine Louzon,102362,17882,4 +137914,Chuck,78364,83362,9 +137915,Lillian,45244,550855,2 +137916,Sardeep's Wife,18548,62230,9 +137917,Norma,28425,94114,14 +137918,"Maria Garden, Roichards Braut",175339,1406818,4 +137919,Michele Spagnolo,142320,25819,2 +137920,Jon Carpenter,79329,586521,11 +137921,,14284,106844,9 +137922,,74674,1445134,35 +137923,El Caribe Bouncer #1,2001,1546180,51 +137924,Padre di Giada,226936,555715,10 +137925,Border Patrol,356752,176785,73 +137926,Ben,28677,78730,0 +137927,Teenage Twins,107985,1200859,19 +137928,Queen Of England,102841,1196400,20 +137929,Walsh,24921,25657,2 +137930,Spence Palmer,40465,50686,3 +137931,Wilhelm,20017,5266,0 +137932,Dumby Red,27018,96770,1 +137933,"Himself, Cameo Appearance (uncredited)",32552,70668,34 +137934,Hortência Jardim,227964,1437139,0 +137935,Henri Cotillard,327389,91407,9 +137936,Helen,87428,82988,13 +137937,Portier,33481,110776,25 +137938,Ens. Jim Kent [Ch. 1],170936,155268,8 +137939,"Mrs. 'Soda' Gallo, Landlady",121636,89841,3 +137940,Yuka,55615,122662,0 +137941,Waiter,23830,206626,13 +137942,Kang Min-gil,37502,138508,2 +137943,Waitress,540,154395,13 +137944,Miss Simpson,31472,590799,5 +137945,,219666,1330569,5 +137946,Ryan's Girlfriend,18898,1623645,20 +137947,Jared,50780,205854,4 +137948,Clem Waters,281124,1221916,1 +137949,Woman at Bar,22897,131361,24 +137950,Admiral Ackbar (voice),140607,1729665,63 +137951,Captain William Maynard,37238,117145,2 +137952,Verity Thwaites,10748,66446,17 +137953,Dr. Charles Evans,44001,2435,2 +137954,Mellersh Wilkins,196789,9067,1 +137955,Bruno,42571,105870,4 +137956,Duncan,293970,111678,5 +137957,Mr. Hudson / Spud / Additional Voices (voice),123025,19506,26 +137958,,113432,102616,2 +137959,Terry Hausman,128311,1225911,15 +137960,Andre,274479,1658352,34 +137961,,139582,10510,6 +137962,R.D. Spear,291558,14969,5 +137963,Skoczylas,155426,1519441,7 +137964,Angela James,66340,467845,4 +137965,Detective Burt Jerpis,402582,1139648,15 +137966,Josh Bates,74924,109223,9 +137967,Kim,378018,88902,5 +137968,Johnny,119409,10847,1 +137969,Adelson,154441,55103,4 +137970,Man,264393,150306,6 +137971,Himself,253337,1308173,10 +137972,Denise Frankel,15577,15852,2 +137973,Father Shellnut,75761,79584,12 +137974,Howard,43119,103054,4 +137975,Dean Murdoch (as Paul J. Spence),53358,147967,2 +137976,Himself,43065,11770,3 +137977,Reporter,109716,119739,68 +137978,Jennifer,190250,1176429,1 +137979,Jeanine,76059,46453,7 +137980,... Corinne's Mother / Fancy Dress Girl #1 (voice),23566,74370,5 +137981,M. Hughes,45649,11659,1 +137982,Laney the Babysitter,13596,115217,17 +137983,Tolik,203780,29839,0 +137984,Jason Parker,7916,51799,6 +137985,Ron LeFlore,216153,2390,0 +137986,Majordomo,31993,1198373,17 +137987,Phil,345922,1783263,31 +137988,L'inspecteur Carel,64407,109345,0 +137989,Commercial Director,18722,553433,21 +137990,Moongaze Ginji,30198,227622,5 +137991,Miss Bagley,251419,144167,5 +137992,Celebrity-Braut,6076,45625,9 +137993,Lilli,6076,6672,6 +137994,Nadia,102197,582512,3 +137995,Jesse,332839,81685,3 +137996,Helicopter Pilot,263115,1685460,89 +137997,Didrek Sutare,57438,226187,26 +137998,Julie Ann Winslow,28484,10487,2 +137999,,12622,555207,32 +138000,Sarah Webber,49815,8828,1 +138001,Nakanishi,36175,93892,5 +138002,,47448,1796599,10 +138003,Nikki,84226,1052112,6 +138004,Mr. Goodwyn,12447,41280,4 +138005,Oxenby,42122,9126,5 +138006,,110608,1050081,8 +138007,Dutchman,107146,39036,5 +138008,,81435,226127,3 +138009,Bancroft,115616,10669,0 +138010,Announcer,128215,110554,15 +138011,"Rabichon, le restaurateur",78377,1655,9 +138012,Flight Lt. Redmond,49609,1086915,7 +138013,Toby,120587,1112483,0 +138014,Granny (voice),57089,515,4 +138015,Gidget Maida,142216,1176783,14 +138016,Dillon,26358,95233,4 +138017,Daniel's Friend #2,21208,90459,14 +138018,Dima's daughter,270774,1590377,8 +138019,Cuisinier,41277,1575512,31 +138020,Will Gleason,49158,12410,2 +138021,Mizuki Segawa,197854,112138,2 +138022,"Min Li Foo, le blanchisseur chinois / Mathias Bones, le joyeux croque-mort (voix)",50166,34676,2 +138023,Benito Mussolini,100814,81974,1 +138024,,278935,230269,7 +138025,Police Officer Bergin,228647,121118,48 +138026,Courtney,59296,21595,9 +138027,Allistar Smythe,102382,107770,13 +138028,Constable Grant,141733,230794,8 +138029,Bharat Singh Bisht,441881,86009,2 +138030,Jannicke,15440,87879,0 +138031,Dr. Patel,209401,1835584,23 +138032,Gaoler,140470,120701,16 +138033,Maksim,280422,1337740,7 +138034,Foreign Minister Deval (uncredited),42825,103176,14 +138035,Boyle,12683,942,4 +138036,Réceptionniste,329809,1505472,6 +138037,Chico - Rasario's Henchman,94182,141129,24 +138038,Trailer Park People,186869,1862901,28 +138039,Carlotta Vance,39130,89610,0 +138040,Waiter,142402,1117091,22 +138041,Elderly Woman,54804,1406458,7 +138042,Jin,25695,94107,1 +138043,Sister Paulette,256962,1512146,24 +138044,Becca Cruz,361018,1513534,8 +138045,Parnell,277710,1281250,24 +138046,Zetha,27717,225520,14 +138047,"Chounan, Sadao",135335,1065417,2 +138048,Posh Restaurant Diner,393445,1635843,10 +138049,"Patrick Muldoon, Jr.",2611,18793,11 +138050,Friars Club Member (uncredited),369524,1808636,51 +138051,Ishwar Singh 'Tubby' - Rahul's Secretary,161227,55069,2 +138052,Hans Brenner,248933,44567,2 +138053,Joyce,29108,3077,14 +138054,Additional Voice (voice),10193,52699,34 +138055,Juror (uncredited),14615,240805,39 +138056,Esther (voice),273296,1528164,1 +138057,Ellen,13993,65760,6 +138058,Laura,333884,88710,4 +138059,Pharmacy Assistant,109439,225694,14 +138060,conductor,63300,1724785,13 +138061,Sebastian,1912,35538,11 +138062,Old Lady,55433,222372,5 +138063,Man in Straw Hat,53406,148035,1 +138064,Military Operator,387845,79577,17 +138065,Bobby Walden,92311,1195898,5 +138066,,5559,1740811,24 +138067,Nicole,361571,559584,11 +138068,News Anchor Frank Mills,231616,1081135,9 +138069,Teenager,256092,1338715,15 +138070,Jan 'Cat' Boellard,228968,133212,3 +138071,"Allan ""Allu"" Kajander",87992,1444039,4 +138072,Livilla,206514,13475,7 +138073,DC Valet,257344,1683859,63 +138074,"Robert Dudley, Earl of Leicester",11788,16940,1 +138075,Chief Boyardee,30411,44933,4 +138076,Lawson Pines,9953,16856,2 +138077,Inzirillo,170689,93331,8 +138078,la mère de Jacqueline,55424,2412,6 +138079,Yoshimura,3115,18615,0 +138080,Dr. Karros,7006,51801,5 +138081,Riordan,19621,53353,9 +138082,Vizinho,48962,1051816,16 +138083,Edvard Wolner,60935,79332,6 +138084,Danny Dale,7006,51802,6 +138085,,115427,1078344,9 +138086,Waiter #1,330947,1650310,40 +138087,Tecla Memeo,262786,147590,6 +138088,Daughter of Lee Yiu-wah,182127,1440453,32 +138089,J.T.,48319,2219,0 +138090,Alex Toulon,26962,94554,2 +138091,Master Tie,248376,62410,2 +138092,Beaumont,332488,1445664,3 +138093,,452606,1797949,23 +138094,Barbara Stupple,126754,42195,1 +138095,Mary Halsey,47312,13637,3 +138096,Tina,4380,36814,14 +138097,Ron,273511,14700,5 +138098,Percy Petunia,142106,33533,6 +138099,Cole,110608,1049358,0 +138100,Joe Mulligan,281418,3035,2 +138101,Maggie Helms,277687,1079395,7 +138102,Raoul,226968,940922,7 +138103,Frank Miller,80941,13995,3 +138104,Myra,20432,204408,5 +138105,,50032,1555012,6 +138106,Clarence Darlington,13279,54714,9 +138107,Lovely,72648,153548,5 +138108,Apa,42132,1042223,7 +138109,MechaniKong/Gorosaurus,39276,1482691,20 +138110,Artur,77600,144972,3 +138111,Bassam,12113,25072,8 +138112,Jungle Jim,133716,94936,1 +138113,Virgil O'Riley,323149,63364,1 +138114,Shante,68174,550472,9 +138115,CJ,4257,55638,13 +138116,Veselushka,20934,86789,6 +138117,Sandra,408381,74618,0 +138118,Bonnie Javoer,81600,592174,4 +138119,Sam,41831,52477,1 +138120,King Gustav,10804,740,9 +138121,Amuro Ray,16157,40327,1 +138122,Captain Forsyth,348631,25383,7 +138123,Flora,116385,543105,5 +138124,Gabriel,300601,574223,5 +138125,Lila Milford,212934,196694,7 +138126,Seaman Olaf Swanson,257081,4303,13 +138127,Le maire,59349,39179,5 +138128,Roman,192023,1172456,3 +138129,Straker,27873,93800,2 +138130,Daphne,33586,50463,0 +138131,Corporal Penning,6973,51682,8 +138132,,293654,86864,5 +138133,Acey Holman,101998,4572,16 +138134,Bill Kronin,35852,33032,1 +138135,Italian Minister,10710,147371,22 +138136,Mel,35197,77822,4 +138137,Oliver,16151,79710,22 +138138,Boyd,174278,12502,9 +138139,G. Walter Henderson (as Clyde Hopkins),172445,1375801,4 +138140,Rose,62728,127558,4 +138141,Classroom Kid,375366,1886320,15 +138142,Susan Garthwaite,51619,100784,1 +138143,Moseby's Secretary,10407,89934,3 +138144,Agent Grazer,10274,64680,19 +138145,Belinda,120457,979116,1 +138146,Robert,52360,1422389,39 +138147,Himself,266782,59919,5 +138148,Brandon,308269,1447878,6 +138149,Drunk Gambler,91259,54564,9 +138150,Middle-aged Patient,27276,67091,5 +138151,Female Freak,158015,1186027,14 +138152,Ruth Earp,43369,5826,1 +138153,Pete V. Morales,26516,129492,13 +138154,Gil,31821,23630,0 +138155,Nonna Rosa,121998,20589,4 +138156,Tsuruko Oba,189151,545488,3 +138157,Männikkö,224813,1210345,6 +138158,Elderly Mother,44634,154217,4 +138159,Flamenco Dancer (voice),378236,63522,8 +138160,Train Passenger,56154,1422442,26 +138161,"Hulda, Shimi's Mother",412363,1769122,18 +138162,Anna,275696,20354,1 +138163,Dorotea la Cuarraca,198795,553146,8 +138164,Pamela Blackwell Marshall,35404,114287,3 +138165,,410259,1465051,3 +138166,Carrie A. Nation,147876,89100,10 +138167,Charles,13802,1875310,2 +138168,Bonnie,18633,3978,5 +138169,Melissa,380856,1211067,9 +138170,Ruth Halimi,238781,54675,1 +138171,Kissing Concubine #2,1271,1330764,59 +138172,Jess Harris,272693,110930,4 +138173,Frank Andre,56151,231487,4 +138174,Parminder Prakash,4253,35777,2 +138175,The Director,229254,6283,3 +138176,Egyptian Official,24973,1024978,52 +138177,Jay Corky,9893,60074,6 +138178,Harry,240733,1275946,4 +138179,Ghazi Hammoud,256969,167862,8 +138180,Girl at the Marriage Market (uncredited),3059,103017,101 +138181,Winfried / Toni,374475,49795,0 +138182,"Genevieve, Farrell's Wife",25633,94029,5 +138183,Movie Theater Patron,10739,28005,15 +138184,Clerk,53410,29274,4 +138185,Faye Pridgeon,19505,2535,4 +138186,Janek's father,39936,82313,3 +138187,Seeker Burns,72710,558466,33 +138188,Latonya Williams,150065,109560,4 +138189,Collaborator,107985,110076,44 +138190,Minister of fish,16171,79858,4 +138191,Herself,14923,3138,47 +138192,Karen Bird,322548,70456,0 +138193,Himself,4257,1633323,17 +138194,Danny Andrews,134355,170573,3 +138195,Himself,15258,5587,2 +138196,Larry,53172,1005,14 +138197,,107916,1042761,14 +138198,Girl Scout,4613,155621,10 +138199,Pope's Girl (uncredited),323675,1628107,53 +138200,Fumio's Mother,19336,1488354,9 +138201,Abel Turner,13279,2231,0 +138202,Kid #3,147939,1127751,7 +138203,Manny,14123,1446411,11 +138204,Sandra,107781,180687,8 +138205,Aunt,46387,623417,10 +138206,Josie,274325,1222277,15 +138207,Zeng Shuai,329206,1094210,1 +138208,Balto (voice),25913,34521,0 +138209,Donna Marie,95136,16484,4 +138210,Symeon Kurcewicz,31273,107901,49 +138211,le docteur Jalabert,63224,114970,4 +138212,Lenora Baldwin,107973,95021,8 +138213,Mrs. Jamieson,64047,183201,5 +138214,Supply Driver,1724,1366365,42 +138215,Envy,18209,22,5 +138216,Dylan (voice),132601,43120,1 +138217,Ed Wainwright,9890,60021,15 +138218,Susana,122525,263403,2 +138219,JJ Samson,323665,58873,11 +138220,Mr. Arias,157424,1334181,9 +138221,Nun,16135,79527,32 +138222,Glen,286532,1194944,14 +138223,Sailor-Subject,28437,100799,8 +138224,Mitchell Berger,14050,27545,8 +138225,Shabazz,46436,190194,8 +138226,Donald Farfrae,238792,17648,3 +138227,Thomas - Headwaiter (uncredited),33112,14455,20 +138228,Clara,228198,1262710,0 +138229,Himself,406431,89402,2 +138230,Ray Kriley,100088,10194,11 +138231,Isabelle,92424,37920,5 +138232,Lt. Cmdr. Dodson,91477,4966,4 +138233,Shigeko Kodai,391642,226711,3 +138234,Il Commissario Manghera,48935,141557,2 +138235,Pietje,35016,1416134,31 +138236,,182843,236559,3 +138237,Kid on Beach #2,52454,1630310,36 +138238,Officer Walter,187596,109708,14 +138239,Hoffman's Wife,12113,58787,16 +138240,Paul Quinn Debater #1,14047,1392598,19 +138241,,21057,552681,12 +138242,Roslyn Lookalike,1481,1844339,30 +138243,Alessio Spano,56435,12329,2 +138244,Buzz,397717,999498,20 +138245,Papi (voice),14405,41798,3 +138246,le réalisateur,92586,12329,3 +138247,Леша,83456,86860,0 +138248,Reese Marino,274820,1503296,9 +138249,Jane Austen,2977,1813,0 +138250,Jim Ryan - Bartender,60547,116135,9 +138251,Mildred Croft,43142,14575,4 +138252,Trevor Stryder,72710,129868,20 +138253,Jasmine Wu,23096,123057,3 +138254,Hilda,264309,1120315,21 +138255,Dr. Victor Dahlman,94551,213641,7 +138256,Kummun Kalle,109861,125592,8 +138257,Muley (as Charles Briggs),35392,114230,8 +138258,Jenine,168022,1272218,4 +138259,Chicão,70666,1863886,15 +138260,Mr. Borst,73194,30262,24 +138261,Brian O'Connor (uncredited),168259,1480862,51 +138262,Nigel Dennis,49843,30766,4 +138263,Patty Winters,30034,106504,1 +138264,,362045,85879,8 +138265,Undersecretary,37420,105725,8 +138266,Duke,33541,30111,0 +138267,Matthew Morgan,201749,3895,0 +138268,,73043,117463,1 +138269,Deer Tai,10109,63582,6 +138270,Doyle,312831,93209,3 +138271,Kid,7085,51890,8 +138272,Edson,107096,6701,2 +138273,Himself,390747,1662634,13 +138274,Freddy,26491,71580,8 +138275,Alicia,10760,41345,20 +138276,Chase,20055,10869,9 +138277,Himself,266782,16376,10 +138278,Kasarov,9812,2295,7 +138279,Old Gentleman,43346,97568,6 +138280,Marisol,121329,100681,7 +138281,Lafayette,52360,34334,51 +138282,Himself,95756,1006756,4 +138283,Sheriff Hall,10770,18841,0 +138284,Snotty Concierge,10596,65800,8 +138285,Joachim Stiller,94674,1121529,4 +138286,Reporter,24619,1141810,33 +138287,Stephen,168814,150609,3 +138288,Sunshine Farmer,5172,41885,4 +138289,Roller Girl (uncredited),397717,1722993,41 +138290,Secretary,133121,945403,8 +138291,Superior Court Judge (uncredited),332079,557087,11 +138292,Tommy Settergren,11626,70068,2 +138293,Bear (voice),36129,86752,0 +138294,Camillo Tinacci,43544,129575,8 +138295,Panhandler,43809,33923,23 +138296,Prison Doctor,183825,33705,53 +138297,,70322,1029323,7 +138298,Herself,417870,81726,31 +138299,Melvin R. Foster,96252,29260,0 +138300,le gradé chez Simon,15712,123609,7 +138301,Commission Doctor,69903,567105,20 +138302,Mrs. Carroll,70587,112052,3 +138303,Juanita's Mother,20304,1779452,11 +138304,Sekretär,119820,141721,11 +138305,Vecina de hombre suicida (uncredited),41298,1744096,28 +138306,Íñigo Balboa,13495,50994,2 +138307,Jean-Christophe,12513,72090,4 +138308,Phelan,2080,190856,23 +138309,Gora,79234,994429,4 +138310,Herself (as Kerstin Wolgers),13798,1090523,11 +138311,Don Diego,1969,160375,7 +138312,,52612,146280,9 +138313,Fagin - the Carson Butler,149793,121095,25 +138314,Victini (voice),88557,24651,3 +138315,Young Robbie,302699,1754478,24 +138316,Herself,186079,1168786,0 +138317,Maya Akemi,125264,1056056,7 +138318,Pilot,54804,97887,11 +138319,Ali-Agha,92663,48665,3 +138320,Harmon,53573,8635,0 +138321,Twin Girl 2,351065,1827514,22 +138322,Gordon Halliwell,10804,10655,5 +138323,Johannes Fagerholm,116019,1062707,5 +138324,Nazi Officer,57924,23799,6 +138325,Nose Noseworthy,25132,93219,6 +138326,Mr. 'Doc' Roberts,64928,16766,6 +138327,Tänzerin,140554,1707840,39 +138328,Elle-même,222297,1294431,7 +138329,Afonsinho,117534,115170,2 +138330,DeLeon,27105,153680,6 +138331,Agent Halpern,329865,72873,3 +138332,Andrew,84333,41089,2 +138333,Georgina,419430,1660452,8 +138334,Dragon / Animals (voice) (uncredited),10192,15831,34 +138335,The Narrator (voice),256962,1361841,48 +138336,Evan,15189,109183,14 +138337,Reber,188765,1186811,2 +138338,Devil (voice),9286,19384,16 +138339,Salon Owner,47186,88763,16 +138340,Louis Stevens,15797,18702,0 +138341,Ali,59935,70152,0 +138342,Maribel (voice),292014,1257028,3 +138343,Himself,342052,1471141,1 +138344,Luca,33107,1458392,6 +138345,Harry Beaton,18283,1324196,5 +138346,Col. Jason Grant,14916,1754,0 +138347,Иван (озвучка),83865,931253,0 +138348,Lady At Airport,39219,121323,13 +138349,Charlie,16077,20981,4 +138350,Gawaine,19957,30187,9 +138351,Jack Harrington,48281,60096,6 +138352,Margaret,337104,202660,11 +138353,Johnny Bernstein,64972,31903,4 +138354,Himself,415542,87281,1 +138355,Woo-Jin,338729,1263930,7 +138356,Mrs. William Sheffield,36634,89659,16 +138357,Winnie Chik,21519,1356188,6 +138358,,2143,132927,49 +138359,FN-9330,140607,957038,51 +138360,Polizist Wagner,8332,55166,7 +138361,Professor Samuel Norman,240832,192,1 +138362,,129229,1088728,4 +138363,Sean Voight,47540,71198,2 +138364,Angry Woman,330947,1650306,37 +138365,Камиль,35428,86863,2 +138366,Kelly,109453,57172,13 +138367,Coroner,14452,6542,4 +138368,Mayor Nathan Keane,266285,378,7 +138369,,305147,143675,0 +138370,Aisling (voice),26963,96673,1 +138371,Atsushi Dōjō,363354,119241,1 +138372,Ignacio,325173,1592534,6 +138373,Tao Kuei,11537,134684,11 +138374,Hammil - tall spy boss,47404,1510,6 +138375,Ali,31670,47335,2 +138376,Andrea Andropolis,146322,563092,9 +138377,Ataman/ Ivan Judanovich,133121,15030,2 +138378,Mei Mei,118984,1068911,1 +138379,Praktikant bei Bruce Berger Records,75969,1153028,69 +138380,Viking no 1,44680,131339,9 +138381,PC O'Ne,299780,318970,8 +138382,Kira,336029,1394332,3 +138383,Tiwana,179154,1169341,13 +138384,Kyle Halsted,71700,53117,0 +138385,Duca Lamberti / Lucas Lamberti,183962,32364,0 +138386,Conner,290555,117642,1 +138387,Butterfly McQueen,139718,11500,12 +138388,"Françoise d'Aubigné, Marquise de Maintenon",152539,19068,2 +138389,2nd Hardman,32577,1563381,24 +138390,Erzebet Bathory,8316,1146,0 +138391,Nelly,246860,39906,8 +138392,Alexander Blondell,414977,180422,6 +138393,Troupe,19995,1207250,32 +138394,Mrs. Webb,82781,58184,9 +138395,Peter Tate,351365,153413,7 +138396,Ray Reardon,18190,13548,0 +138397,"George, the Gas Station Attendant",42623,151864,9 +138398,Bráðavaktalæknir,131343,79832,4 +138399,Tom Jessup,214756,3911,12 +138400,Morris Day,41762,57907,2 +138401,German Officer in Kieler Hof Hotel,75363,32119,21 +138402,Roger,122843,1488236,2 +138403,Starkey,273106,1042691,9 +138404,Older Man,8457,22250,39 +138405,Umberto,315319,1531547,15 +138406,PC Finkerton,250535,1125,8 +138407,Perry White,209112,2975,7 +138408,Mary Madigan,51947,985248,8 +138409,Headmaster,75244,23076,1 +138410,,266558,1377013,3 +138411,Shirley's brother,140883,130990,0 +138412,Tom Baker,11007,67773,0 +138413,Actor in 'Patria',18651,90067,37 +138414,Philip,84340,1046140,15 +138415,Milo Boyd,27573,17276,0 +138416,Old Woman,274991,1347841,4 +138417,Spectator,279096,1386305,26 +138418,Layton,25919,79416,3 +138419,Himself,157117,146572,11 +138420,Jo Stengel,39130,32138,9 +138421,Murray,343934,91508,21 +138422,Clubber,262338,1363049,12 +138423,Roman Kogler,82941,907352,0 +138424,Sheila Mangan,84496,1045490,10 +138425,Extra,41171,1392754,42 +138426,Adjutor Gagnon,16147,79615,11 +138427,House of Lords Messenger,91583,1217434,16 +138428,Lord Beaverbrook,80596,251,4 +138429,Infirmière 1,204765,1690043,8 +138430,Drake,31634,108240,6 +138431,Arks,27018,85620,3 +138432,Melissa,120802,1020027,11 +138433,Himself,15258,15903,7 +138434,Bryce Mercer,37581,179577,7 +138435,Johnny Impact,60173,106480,6 +138436,Clip from 'A Date with Judy' (archive footage) (uncredited),33740,29260,71 +138437,Sing Song,6972,57609,21 +138438,Officer MacDunner,5289,181067,15 +138439,Luc,76821,274577,7 +138440,Polyester Poontang,131799,13637,1 +138441,Karen Sandler,239498,51456,6 +138442,Blonde,18238,141540,14 +138443,Dr. Leonard Gillespie,153169,17753,1 +138444,,288694,128456,13 +138445,Sandy MacKenzie,53949,16762,2 +138446,Joe Toro,7220,1223998,14 +138447,Danny DeMarco,42023,97315,4 +138448,Izzy Woods,16985,134248,1 +138449,Mae Bright,417678,55153,7 +138450,Small Role,18651,96444,74 +138451,Tadasuke Rokkô,143946,125009,9 +138452,Chris Marsh,44545,136180,4 +138453,Gochu,371741,1569923,14 +138454,,314371,1138285,26 +138455,Detective Sergeant,20174,85774,6 +138456,Archie,156988,980378,1 +138457,Sasaki,61984,1117059,15 +138458,Stephanie,65650,76536,17 +138459,Carlos Villar,59961,2049,14 +138460,Charles,13842,146023,8 +138461,Jerry O'Farrell,45875,44103,5 +138462,Mrs. Greville,45938,3672,3 +138463,Denise,69217,116538,6 +138464,,353898,223167,2 +138465,Lacie Wood,296456,14990,7 +138466,Amédée Frossin,65646,11596,7 +138467,,48882,1190350,4 +138468,Sadie MItchell,427673,1442430,1 +138469,Sara,22476,33292,2 +138470,Himself,144680,1416476,21 +138471,,96958,1043349,2 +138472,Pat Shanahan,111470,133342,22 +138473,,271495,23442,7 +138474,Ruben Santiago Jr.,133382,34111,1 +138475,,53407,1893381,9 +138476,The Secretary,305127,1265480,4 +138477,Tommy,127728,1292258,10 +138478,Building Supervisor (uncredited),209112,1062375,140 +138479,,19812,107559,10 +138480,,200481,1554785,1 +138481,David Herman,92285,1203929,3 +138482,Lefty Maginnis (Voice),15213,3905,0 +138483,Tomoko Morikawa,133160,545825,4 +138484,Elena Bardi,101231,26662,0 +138485,Barfly,105059,1683143,48 +138486,Doctor,21567,101862,10 +138487,Soldier in Hospital (uncredited),4820,1752,18 +138488,Sun-hwa's lover,85959,69378,5 +138489,Captain Lancaster,53524,32556,8 +138490,Himself,99657,1653805,2 +138491,Greg Sherman,251544,111202,2 +138492,Blofeld's Chauffeur,206647,1599276,70 +138493,Doll (voice),13798,1150010,6 +138494,Grace Roberts (as Mary Lou Treen),48627,106584,6 +138495,Miss Nettie,121923,174632,10 +138496,Levi,24272,140571,10 +138497,Satsu,1904,19859,16 +138498,Äiti,73099,568084,6 +138499,Mrs Yamamura,88271,1112345,10 +138500,Julie,361018,1513535,9 +138501,Sgt. Montford,60269,213667,23 +138502,Delarue's Gang,266285,1459811,38 +138503,Elizabeth,286372,1352328,1 +138504,Uncle Pete Tucker,45219,96302,11 +138505,Scott,77625,58000,9 +138506,Officer Harrison,9667,32224,12 +138507,Laura,92393,1037763,3 +138508,Princess Annika / Troll / Wife #3 (voice),15906,74358,0 +138509,Mehrak,44773,543783,5 +138510,Red Bamboo Commander,3115,30470,7 +138511,Shobha,16987,1252781,12 +138512,Lou Ann Norton,8053,31717,3 +138513,Claude,375082,1723658,7 +138514,Darian Franklin,376660,1224115,2 +138515,Sylvia,364088,1523162,2 +138516,Eriko Yamazaki,296750,129700,2 +138517,Taxi Driver,13185,137472,9 +138518,Lucien,44522,145073,2 +138519,Marga,69974,557682,1 +138520,Ledward,126889,1371541,11 +138521,Ted,403431,2,2 +138522,Frank Holly,151310,53010,8 +138523,Martin,41559,88949,4 +138524,Roslyn,1481,206384,2 +138525,Vicky's Girlfriend,39217,35795,5 +138526,Charlie Petunia,142106,187919,5 +138527,Lumpy (voice),14885,77484,6 +138528,Milo Huntington,79113,1004890,5 +138529,Avvocato Camilli,109979,131624,5 +138530,Freddy Brewer,46368,1470859,1 +138531,Doorman,33481,110790,40 +138532,Dios,122019,106086,27 +138533,Michael,6391,55053,8 +138534,Doug Kampenfelt,271185,418,12 +138535,Nickie,381015,586000,0 +138536,Ma Silsby,23107,29953,10 +138537,Maria,314285,1405669,6 +138538,Dr. Burton,84892,3234,9 +138539,James Jesse / The Trickster,222619,2,1 +138540,Jessica Brake,119592,1688368,2 +138541,Rolland,31221,1364346,6 +138542,Piloto avión,254869,36281,46 +138543,,156988,97114,7 +138544,Madeleine,66447,73937,6 +138545,Maître Pierre Ferrault,10795,146487,21 +138546,Artus,313074,441790,8 +138547,Suzy,70666,1697358,43 +138548,Nurse,115109,117034,26 +138549,Christian,45132,558904,38 +138550,1st Marketing Guy (voice),73723,156136,9 +138551,Jimmy,40465,73060,8 +138552,Shirley,71503,563098,18 +138553,Mr. Harlow,188102,43429,22 +138554,Boss Keung,13807,83820,8 +138555,Bart Trinke,9541,15903,4 +138556,Gazi,196852,1191606,11 +138557,Policeman,13436,1656891,30 +138558,Woody,175171,89747,9 +138559,Jack Schaeffer,149910,54594,25 +138560,First Captive,85494,932265,8 +138561,Palola,43783,141996,7 +138562,Young Human Soldier,205584,1535053,26 +138563,Chelsey,385372,108694,16 +138564,Dolly,70881,339617,7 +138565,,103875,1376105,6 +138566,Bernard Dalvik,27622,5832,4 +138567,Bernard Fripp,47682,10730,0 +138568,Ambulance Interne,153165,229957,22 +138569,Mr. Barry,29083,59196,3 +138570,Morton,14565,4138,2 +138571,Kenny,18763,1174365,17 +138572,John Carlton,105548,11493,2 +138573,Polizist I Klinik,6183,48510,11 +138574,Neptune,82,4812,14 +138575,Kurt Ingston,99545,103449,0 +138576,Professor,12128,4925,11 +138577,Mary,41234,13353,2 +138578,Reaver,263115,1821521,26 +138579,Nancy,21627,51577,3 +138580,Mrs. Hsu,424600,1704654,9 +138581,Waldorf (voice),15909,64181,2 +138582,David Blake,8010,11885,4 +138583,Johnson,27443,4316,7 +138584,,237171,1017981,7 +138585,Frau,75969,1759637,68 +138586,Dr. Peter Burden,63333,1318707,8 +138587,Additional Voices (voice),331588,1833913,18 +138588,Mr. Mueller (uncredited),28000,126658,51 +138589,Link's Backup Singer / Teen,2976,1504146,21 +138590,Eugene,1550,17490,8 +138591,Vanderpark Nanny,10710,181090,25 +138592,Colonel Bob,256962,18271,12 +138593,Lauren Stinger,115283,17628,4 +138594,Col. Escobar,44022,29273,2 +138595,Joel Bell,10008,61945,14 +138596,,165402,78749,0 +138597,Damon Swank (voice),13640,136930,10 +138598,Virginia Stuart Cunningham,62694,8725,0 +138599,Volodya (voice),38325,1269289,4 +138600,Alf (voice),413770,53366,9 +138601,Lyuda Beletskaya,65545,550739,1 +138602,Ele Mesmo,448763,1848668,36 +138603,Coach,117509,106421,10 +138604,Extra (uncredited),3059,13969,56 +138605,Clip from 'On the Town' (archive footage) (uncredited),33740,109614,78 +138606,Sara Rask,33280,212069,2 +138607,,335897,1454624,4 +138608,Joe the cook,26405,1105502,13 +138609,Mr. Ching,10389,551605,16 +138610,Jack's Ex-Girlfriend,4538,524,7 +138611,la cliente inconnue,76821,580597,11 +138612,himself,306464,1071607,3 +138613,Hélène Perkins,10795,5470,2 +138614,Jennifer Harnsberger,264560,6407,3 +138615,,293516,1026959,5 +138616,Shobijin,3115,1482683,9 +138617,,353641,108856,3 +138618,Prof. Elisabetta Paliani,54309,231995,3 +138619,Ashley - 4 Years Old,68387,1868456,34 +138620,Françoise Berthier,289126,20081,3 +138621,Harvey Yates,20625,34818,6 +138622,Pequeñita,325385,1775353,8 +138623,Shawn Black,45273,125335,15 +138624,Pierre,83119,703622,6 +138625,Passionate Preacher (uncredited),69,77522,44 +138626,Alan Speck,88005,15543,5 +138627,Expl. Bank Manager,1969,51906,11 +138628,LTTE Fighter,40998,150197,8 +138629,Joe D'Costa,121598,1664858,20 +138630,Karma,8341,54617,4 +138631,Agnieszka,224,2807,0 +138632,Lee Yiu-Wah's daughter,182127,1440505,41 +138633,Amanda,44943,108696,23 +138634,Joe,22396,1877029,22 +138635,Bloody Stranger,158015,56679,6 +138636,cousin,59147,18514,0 +138637,Luri,39308,1245452,5 +138638,Maxime - Dubreuil,13652,1003,1 +138639,Viktoriya Goncharova,267481,932351,2 +138640,Albert,114096,200537,8 +138641,King,36299,4138,0 +138642,General Fire-Wind,10703,73774,5 +138643,Zorianna Kit,1726,90721,54 +138644,Dealer at Craps Table,1726,1209703,33 +138645,Maureen,66125,85350,9 +138646,Benigna,264729,102222,8 +138647,Professor Baek,264746,138521,2 +138648,Maj. Wild Bill Donovan,72638,20364,3 +138649,Robert,101352,575854,4 +138650,First Brother,55534,222563,11 +138651,Isabella,235208,1203205,14 +138652,Rik,27462,97799,4 +138653,Nachtklubbesitzer,42260,73671,7 +138654,Bertoli,106155,100683,7 +138655,,186971,1605811,28 +138656,Mrs. Rafferty,1116,1896878,45 +138657,Nikulás,72596,1114529,3 +138658,,155605,1200879,7 +138659,Red Wagon (voice),378236,61425,27 +138660,The Musketeer of the Slums / Babylonian Warrior,3059,100245,22 +138661,Radio Operator,255160,1898234,19 +138662,Business Guy,150117,40665,25 +138663,Stiff,102256,1343376,5 +138664,,285803,125931,6 +138665,German Ambassador,318781,11951,7 +138666,Train Watchman,31993,1175664,15 +138667,Himself,173465,1266247,9 +138668,Mr. Fitzsimmons,64936,200689,8 +138669,Soldier,297762,1890458,54 +138670,Kitty Weaver,39219,40174,1 +138671,Gordon Townsend,271718,1219901,3 +138672,Bus Driver,21583,1798998,14 +138673,Kim Moon-Sook,54659,1245069,5 +138674,Tajdin,188765,1388967,3 +138675,Will the Krill (voice),65759,287,9 +138676,First Husband in Motel Room,39219,84229,12 +138677,Mrs. Apple,29146,8493,4 +138678,Hector,302666,1358092,14 +138679,Trampas,121230,41755,1 +138680,Saloon Patron in Undershirt (uncredited),53392,1373133,7 +138681,Friend of Jimmy,335970,1298790,21 +138682,Yacht Guest,169355,1269827,22 +138683,Gen. Regules,78318,3247,35 +138684,Dr. Stephen Kildare,153161,17756,6 +138685,Mrs. Hume,34127,7643,10 +138686,Tiziano Tiraboschi,169069,128247,5 +138687,Editor Purtiainen,293085,1352106,4 +138688,Hunter,398289,156011,9 +138689,Cop (Buzz),186869,1862890,14 +138690,Claude Petersdorf,204384,938344,7 +138691,Julia Banks,418437,5916,0 +138692,Sarah's Brother,365942,83225,19 +138693,Russ,335869,1504965,3 +138694,Herself,201419,1536685,5 +138695,Amanda Cooper,29872,30003,1 +138696,,12622,552586,31 +138697,Police Chief / Chef de police,38742,10525,1 +138698,Dr. Turbeville,424488,11855,13 +138699,Emma Breslin,241574,41516,0 +138700,Sallie Carr,76229,30538,4 +138701,Nelda,32635,109467,2 +138702,"Ingenieur Moniak, Vertreter Witkas auf der Baustelle Huta Katowice",224,2824,15 +138703,Mouse,25694,90333,21 +138704,Flutningabílstjóri,72596,1114536,17 +138705,Crimson,45935,148351,0 +138706,Mark,69921,1465471,4 +138707,Donnie,15639,28638,4 +138708,Pub Regular,32904,1157296,10 +138709,Francis Mahoney,142946,22131,3 +138710,Mikhail Valdin,38433,30686,5 +138711,Rowf (voice),30060,94021,1 +138712,Sheriff,75315,30539,5 +138713,Megan,39982,96880,9 +138714,Noriko Mamiya,389972,84028,1 +138715,Soldier in Hospital (uncredited),4820,10134,16 +138716,Lew Nyack,18684,4960,4 +138717,Wierszull,31273,107875,22 +138718,Chance O'Brien,146926,57255,0 +138719,Katherine Creighton,88375,5320,1 +138720,Himself,338063,1581557,8 +138721,Zhu Gao,334298,26724,5 +138722,Becky,24939,92855,0 +138723,Girlfriend,58664,1213604,14 +138724,Otto,120497,34086,7 +138725,New Father,41733,298410,15 +138726,Lobo,157409,98251,5 +138727,Mutter Hedwig,75969,1089480,35 +138728,Howard / Uncle Seymour Coffins,24150,59673,29 +138729,Prime Minister Rupert Mountjoy,49876,41236,1 +138730,Adela,81022,69311,1 +138731,Lyon Burke,3055,13946,3 +138732,Fenge,48791,5168,0 +138733,Vittori,76829,39004,2 +138734,Marsha Barlow,67696,1524890,6 +138735,Mikihisa Komaki,363354,130656,4 +138736,Elderly Wife 2,242042,1687032,35 +138737,Uncle Lloyd (uncredited),10178,88887,37 +138738,Announcer,239566,228702,49 +138739,Gareth,172008,229634,2 +138740,Anita Boyard,142012,87117,2 +138741,Francois Patusset,92257,239231,5 +138742,Phyllis,46184,135355,4 +138743,Yves Saint Laurent,221667,16790,0 +138744,Queen Victoria,245700,36668,15 +138745,Bangkila,67174,548181,2 +138746,le commissaire Fernand,44256,24684,2 +138747,Judge Turner,76203,180422,16 +138748,Real Estate Agent,300667,163664,21 +138749,,53767,140804,7 +138750,Danny Cash,50318,830,7 +138751,Music Maids Member,43809,1556462,33 +138752,Himself,17073,7795,0 +138753,Fast Food Kid 2,242224,1413785,31 +138754,Country Club Member (uncredited),29872,122984,15 +138755,President Adair T. Manning,10005,9979,6 +138756,Jon Krakauer,32648,49965,3 +138757,Junkie,2061,4457,10 +138758,James,53459,109318,5 +138759,donna Serena,108535,32066,15 +138760,Lori,83384,157176,10 +138761,Jonathan Tilton Scofield,270007,119687,7 +138762,Joan Davis,43172,218442,2 +138763,Jean,64847,1455165,3 +138764,Charwoman,36335,1196678,9 +138765,Carol,23628,90400,7 +138766,"Fernand ""Noël"" Sarrazin, nougatier",76642,69958,0 +138767,Miki,282070,120434,7 +138768,Horse,37725,59713,6 +138769,Lucy,8332,38720,5 +138770,Diana,82481,1127386,19 +138771,Matt,5759,45396,0 +138772,Bennett Brewer,32395,27428,3 +138773,Col. Von Weisshagen,21840,141,6 +138774,Toshikazu Shindo,131739,117974,3 +138775,Nikki Stevens,76785,50877,6 +138776,T.J. Padmanagham,104602,80575,5 +138777,Gail Friedman,44945,19492,4 +138778,Pentagon General Hastings,246655,32031,54 +138779,Cooper,37686,21089,7 +138780,Draco (voice),321528,21490,9 +138781,Troupe manager,41380,1359892,12 +138782,The School Mistress,75363,2924,2 +138783,Police captain [cameo],172972,1346976,6 +138784,,110001,1189118,4 +138785,Jeff Morgan,35908,94146,1 +138786,Mr. Jones (uncredited),1773,8517,11 +138787,"Dr. Audlin (""Lord Mountdrago"" segment)",45577,10029,5 +138788,Kirill,279543,235983,4 +138789,Ma Bell,33005,1710213,7 +138790,Bob,79526,55850,1 +138791,Domingo,355008,557579,5 +138792,Joe Corey,122677,102953,4 +138793,Saamikannu,357706,1306567,5 +138794,Reggie B,17317,1676732,21 +138795,,77473,1651532,1 +138796,Kayla,8316,50293,13 +138797,Lord Cyril Cleeve,81895,31922,3 +138798,,211233,1197469,5 +138799,Jill,277710,14984,9 +138800,Jonah,314011,1231158,6 +138801,Hungry,375366,1885999,26 +138802,Uniformed Officer,74777,1632516,11 +138803,Prostitute,22396,100900,12 +138804,Mercedes,326,52478,4 +138805,Abril,123359,1102268,9 +138806,Mr. Thompson,1819,3392,3 +138807,Lily Micelli,15639,593,6 +138808,Major Laramore,49521,4095,23 +138809,Agathe,37633,84429,2 +138810,Himself,333103,150810,1 +138811,Kobayashi,18722,553446,46 +138812,Typ mit Handpuppe,75969,1902107,63 +138813,Steve,78383,67602,5 +138814,Maya Dolas,20742,85668,3 +138815,High School Student (uncredited),156700,1842213,52 +138816,Park In-gi,101766,150697,1 +138817,Superman / Clark Kent,1452,17271,0 +138818,Beggar Lee,42552,1648473,11 +138819,Henry Lowndes,120109,19550,2 +138820,Wedding Czar,14976,1520857,14 +138821,Park Section Chief,3782,134406,29 +138822,Jim Barron,247691,9872,11 +138823,Lt. Tyler Laughlin,59197,59645,0 +138824,Isacco Sathas,61217,24696,15 +138825,Himself - at Banquet (archive footage) (uncredited),33740,8635,85 +138826,MSgt. Otis V. McKinney,28553,8349,0 +138827,Monk,17111,1629449,20 +138828,Jack Sanders,28455,11512,1 +138829,,336549,99262,11 +138830,Pitrella,65048,5813,1 +138831,Hank Harris,326,21127,18 +138832,Hip Hop Group 'Zeale',23367,95390,38 +138833,Drew Pritchard,135708,79416,7 +138834,Dreng til vejfest,356326,1874722,14 +138835,Thomas 'Tom' Ditmar,112558,13259,2 +138836,Black Prince,78028,5168,1 +138837,Betty Hill,86598,6461,1 +138838,Restaurant Patron,77930,1784676,75 +138839,Eva,76714,5682,11 +138840,Sandra,56815,225012,2 +138841,Holly,314420,1090687,1 +138842,Laney,428687,1335646,1 +138843,Tommy Haley,25918,11033,3 +138844,Lic. Vidales,366860,1040937,4 +138845,,354667,1246552,2 +138846,Summerville,259975,1324653,16 +138847,Fukusuke Nakamura,46069,134677,1 +138848,Mike Appletree,60420,61659,7 +138849,Carlos,133458,359523,14 +138850,,409903,86897,3 +138851,An actress,151068,1075591,4 +138852,Sarah Deverill,169726,145546,4 +138853,Christine Godon,6077,47802,7 +138854,,1421,1723443,31 +138855,Joy Elder,104602,4514,2 +138856,Pecora,43419,13359,14 +138857,Holly,271039,1328188,6 +138858,Capt. Briggs,10770,40568,1 +138859,Cpl. Butler,150712,33233,16 +138860,Grigory Barovsky,348389,3491,6 +138861,Officer Vaughn,456101,145181,9 +138862,Sheriff Robb,284289,780,3 +138863,Heidi Katz,26486,134711,16 +138864,Reporter,27381,15074,19 +138865,Hogan,81110,3371,5 +138866,Young Hephaistion,1966,1650058,9 +138867,Marquis of Worcester,26808,28477,7 +138868,'Bow' Timberlake,112284,82216,1 +138869,Bhasakar (Young),91527,980172,2 +138870,Arthur,55343,26707,2 +138871,Gisela Sulzer,29161,103059,6 +138872,Mr. Press,29117,103054,8 +138873,Sammy,380856,131946,0 +138874,D. Miguel,130457,237355,6 +138875,Charlie Ross,52454,37011,8 +138876,Elise,137182,82423,0 +138877,Andrzej Woyda,370264,24524,1 +138878,Thunder Fist,263341,61705,9 +138879,Jamil Ahmadinejad,16016,15087,2 +138880,Reef,319986,1430948,3 +138881,Will Langley,15090,1630007,7 +138882,Aanchal Reddy,303281,237040,4 +138883,Chanteur mariage,255913,1714059,27 +138884,Thug (uncredited),38654,1050234,24 +138885,Bud Brewster,115054,105633,0 +138886,"Lawrence ""Larry"" Valentine",3563,32895,1 +138887,Worker in pottery,199463,258011,8 +138888,Ehemann Shanti,330588,128382,3 +138889,Samuel Cope,51828,116606,8 +138890,Judith,285869,35345,5 +138891,George Anderson,104041,2090,0 +138892,Masako,89462,1888139,6 +138893,Dr. Kirk Langstrom (voice),411802,31549,9 +138894,Burrows' Manager,899,13790,3 +138895,Steph,147773,1190917,11 +138896,Gretchen,78734,85991,12 +138897,Lt. Cmdr. Fox aka The Skipper,118444,14732,6 +138898,Mainframe (voice) (uncredited),283995,76594,62 +138899,Jacob,430250,84215,2 +138900,Dana (voice),159824,56159,12 +138901,Col. Mikkelson,14008,7009,15 +138902,Malakai,19277,154649,2 +138903,Arturo,280840,16867,1 +138904,Rasmus,268712,38772,5 +138905,Martial,97365,47822,2 +138906,Panth Pratinidhi,362045,941482,9 +138907,Abraham,235260,122199,20 +138908,Labis,198890,932753,1 +138909,Wei Ling Soo's Assistant,229297,236622,11 +138910,Storekeeper,27480,1179648,8 +138911,John Hanks,43806,110204,20 +138912,Diane,44389,162607,13 +138913,Vera Brandt,29161,99550,4 +138914,Ryoji Suzuki,37213,117067,8 +138915,Prof. Jeet Saxena,54256,109738,2 +138916,Fred Smye,19665,17645,4 +138917,Maria,114096,41284,3 +138918,Delba,106887,1302051,2 +138919,Jonathan Rodgers,69075,1200358,7 +138920,President,20674,2641,3 +138921,Brody,13025,81102,9 +138922,Slave Auctioneer,1579,1331670,34 +138923,Murphy (voice),13640,54427,14 +138924,Scat Pack Girl #2 (uncredited),214756,1759685,102 +138925,The Earl of Strafford,31675,67917,6 +138926,Giant Man,270303,1588360,21 +138927,Girl in library,199575,1438891,31 +138928,Ekaterina Golovkina,395992,932267,5 +138929,,155386,1136500,1 +138930,Tracy Kress,9841,59819,2 +138931,Mike Fagle,12573,1118717,12 +138932,Emma,301334,1723619,15 +138933,La Grange,66949,168567,2 +138934,Herman Lantang,39061,1206436,1 +138935,Morton Dykes,50549,1064724,16 +138936,Carmine Mancuso,13072,1894,5 +138937,Nelson Quinn,109453,1181361,9 +138938,,220005,1204944,5 +138939,The BFG,267935,1577027,16 +138940,Professor Sterling,31509,97981,15 +138941,Bank Teller (uncredited),5915,1608789,24 +138942,Ticket Lady,10201,1216510,10 +138943,Patsy,20,2322,9 +138944,Porter,203264,10182,3 +138945,U.S. Marshal Cole,147829,30279,50 +138946,Jérôme,32338,20850,9 +138947,Lily Blane,108222,64838,3 +138948,Linda,62688,1300371,3 +138949,Tabuca,338438,1307064,7 +138950,Angela Donatelli,13056,35551,2 +138951,Agent Saunders,8382,49877,4 +138952,Caroline,40041,39568,5 +138953,Al,13477,518,14 +138954,Bubbles,27561,1219130,2 +138955,Soldier,150712,119544,17 +138956,Monk Wu Ming,66756,930251,7 +138957,Maggie Walker,44129,14892,5 +138958,Omura's Secretary,616,1593809,27 +138959,Chris Burns,47171,214818,3 +138960,Chief Inspector Aronsson,145247,114580,22 +138961,Himself,24979,32907,0 +138962,Lonnie,290764,1307751,19 +138963,D.J.,19582,15029,3 +138964,Le paysan,377287,5082,7 +138965,Rachel,10096,55258,26 +138966,Clip from 'A Date with Judy' (archive footage) (uncredited),33740,137907,87 +138967,Fred,11024,33260,0 +138968,Sheriff (voice),49013,15902,28 +138969,Nico,122192,88469,5 +138970,Snowboarder,206647,1599268,61 +138971,Anna,142320,1162466,22 +138972,,135536,1003035,5 +138973,Petronella Van Daan,128396,94189,5 +138974,Executive Police Officer,43113,1201033,34 +138975,Amanda,70807,559682,2 +138976,Dillon,28704,6860,3 +138977,Charles IV,341962,1470848,1 +138978,Narrator (voice),15089,59603,0 +138979,Iris,15810,9827,0 +138980,Louise Loring,179603,3242,0 +138981,George,273896,149096,5 +138982,Fillmore / Combat Ship (voice),49013,116317,18 +138983,Shaggy (voice),13355,16418,5 +138984,tt0104140,123691,235436,1 +138985,,264264,1347011,16 +138986,Bernard Latour,246320,41029,1 +138987,Kenneth Branagh,381518,11181,13 +138988,Alan,155128,107223,3 +138989,Rogers,37954,24549,5 +138990,Constable McLaughlin,425774,1707924,38 +138991,Mary,58547,5916,2 +138992,Heather,35320,1872361,13 +138993,Joe Lawson,44087,138179,25 +138994,President Henry Clark,69152,128674,5 +138995,Will,198062,77870,0 +138996,Critico Picci,330171,44650,11 +138997,Minor Role,28421,103753,46 +138998,Terttu Anneli Hirvola,55500,564296,4 +138999,Lexxi,24411,156381,6 +139000,Rose,196255,80592,1 +139001,Rachel,169800,1152023,4 +139002,"Mercedes in ""Carmen""",47959,1426030,17 +139003,Doctor,331958,1146148,6 +139004,Trent's Secretary (uncredited),32552,105571,28 +139005,,85656,58616,10 +139006,Wolf (voice),91673,99282,2 +139007,Bunny,15013,77691,21 +139008,Corporal Harry Baker,49609,235729,4 +139009,Martha,97794,1128306,8 +139010,Mr. Todd Rankin,429238,1325715,4 +139011,Superman / Clark Kent (voice),17074,68122,0 +139012,Nicole,21481,87576,10 +139013,Frankie Valet,13836,1665036,38 +139014,Lawyer,41505,127071,21 +139015,Shirô Mizunuma,83389,1124535,7 +139016,Inez,128637,1087602,9 +139017,College Student,306952,1511967,24 +139018,Frank,53172,1103,6 +139019,Angry Subway Patron,271718,168452,23 +139020,Mr. Hyde,3023,34103,3 +139021,Gwynplaine - enfant,151826,1172638,9 +139022,"Laura, Bobby's Mom, Dr. Simpson",45875,12812,0 +139023,Karen,258353,1175501,2 +139024,architecte émission TV,24170,20082,7 +139025,Lt. Jimmy Pierce,31067,1896,10 +139026,Best Native Diver,121848,1127088,12 +139027,Vera,97797,1014980,3 +139028,Adelie Chica (voice),65759,1026727,31 +139029,X-Rays,186869,58649,8 +139030,Policeman (uncredited),20644,975306,17 +139031,Konno,208700,151093,7 +139032,Petrova majka,148034,38004,2 +139033,Peaches,157919,31171,4 +139034,Kustennin,9703,47643,12 +139035,,11391,1395135,15 +139036,Lord Melton,115972,936,8 +139037,Lahoma,74942,53918,4 +139038,Yalka,242458,908548,10 +139039,Admiral Sellings,2965,29069,3 +139040,Secretario de gobierno,264525,112131,9 +139041,Polo Shirt,14669,1574236,20 +139042,Jules Biggs,6980,51751,1 +139043,Gwen Parkinson,40041,26490,3 +139044,Victim #1,295723,1418245,17 +139045,Fokich,83444,39794,3 +139046,Justin Franklin,63988,183645,6 +139047,Kip Miller,31377,66571,11 +139048,Melvin Purvis,28110,8258,1 +139049,Lance,84993,108925,4 +139050,Senior Naval Officer,205724,76802,10 +139051,Marie Müller,13542,111179,11 +139052,Aden,42418,128095,2 +139053,Polly,337958,1461107,3 +139054,Tarık,296901,142766,1 +139055,Ganthet (voice),17445,16476,6 +139056,Karine Oram,126889,37158,5 +139057,Mathieu,110160,559582,13 +139058,Sandy,77645,12311,6 +139059,Lauren,59962,368,0 +139060,Tibet,8064,53842,1 +139061,Edik,421741,1614310,8 +139062,Eric Whitehall,274820,1039523,12 +139063,Moritz,61552,1151733,11 +139064,God,174188,83586,3 +139065,Higgins,264309,120818,6 +139066,Dill (voice),27300,109314,18 +139067,Paul Stanton,72574,52995,18 +139068,Ficky,272426,56603,6 +139069,Donnie,13842,146020,0 +139070,Ash Ketchum (voice),115223,111767,4 +139071,Vincenz,12696,4796,5 +139072,Officer Rucka,209112,1561419,64 +139073,jako Niemiec,406449,1650378,11 +139074,Professor Jeffries (voice),13354,658,7 +139075,Himself - Mohini's Father in a movie,46403,86062,9 +139076,Shopping Cart Zombie,66925,564332,16 +139077,Mr. Adams,16996,1579617,50 +139078,Mathieu,117678,25348,1 +139079,Capt. Bill North,61049,32791,3 +139080,Emerald Queen,48180,140014,8 +139081,Dr. Gunthen,3037,3934,3 +139082,Tsu Shin,47212,59110,6 +139083,Jackie,158870,1140233,2 +139084,Izaak 'Ike' Koffin,101669,115730,2 +139085,Miranda Green,10804,26071,3 +139086,Mary Price Hilton,20806,94156,0 +139087,Fat Freddie,21968,981005,3 +139088,Hannah,215016,33488,6 +139089,Shush Theatre Woman,237584,1544810,27 +139090,Bob Krayton,205724,126101,13 +139091,Doyle,43228,81284,12 +139092,Ray,360784,28846,1 +139093,Le journaliste,22136,37650,5 +139094,Mugdim,126090,1334946,3 +139095,Bunny Mom (voice),9502,946051,21 +139096,Lolita Cassard,11399,69221,0 +139097,Wendy,362541,139,1 +139098,Mrs. Rutledge,43806,13822,17 +139099,Felix Korogordsky,62731,86725,4 +139100,Lady Forsythe,27970,99327,10 +139101,Sheila,62492,220038,11 +139102,Vaudier,60106,2417,6 +139103,Hunter Leader,19898,1846,7 +139104,Aleksei Sytsevich / The Rhino (Uncredited),102382,13242,7 +139105,"Mi nokichi (segment ""Yuki-Onna"")",30959,70131,11 +139106,King Yan,14539,1174456,6 +139107,Judge of the Court,3059,121247,25 +139108,Abram Joffe,321303,137652,20 +139109,Mellor,22494,207199,5 +139110,Monty Mulligan,102949,15139,0 +139111,Specialty,43497,29283,11 +139112,Miss Russell,242310,58793,10 +139113,Samchiel,50126,57748,9 +139114,Dead Civilian (uncredited),44943,1205907,61 +139115,lui-même,64357,581121,12 +139116,himself,112072,1053813,0 +139117,Natasha Solovyova,27925,99266,3 +139118,Lou the Jew,345915,6163,6 +139119,Алик,213683,99269,0 +139120,Fletcher,367412,18999,2 +139121,l'auteur,63876,26367,8 +139122,Behounek,8063,239127,11 +139123,Mr. Robbins (voice),411221,114461,3 +139124,Sheriff Dentler,294272,17490,7 +139125,Alan DeShields,337751,22133,6 +139126,,118257,3776,1 +139127,Grace,403130,1749866,8 +139128,Lala,26864,27058,0 +139129,German,197737,120706,37 +139130,"Ginger D'Amour, Party Girl",25633,94032,11 +139131,,83761,1720051,2 +139132,Mrs. MacPhail,44140,115367,11 +139133,Man Wheeling Knute's Wheelchair,43812,2659,45 +139134,Brendan Lynch,294652,3061,0 +139135,Ray Borden,47739,10609,2 +139136,Schoolchild (voice),38055,1454400,11 +139137,,295273,1291458,19 +139138,Ceilidh Band,1116,1896885,55 +139139,The Deacon,189888,5004,1 +139140,Elliot,221801,1206830,3 +139141,,124080,158737,1 +139142,Guard,262958,1401112,7 +139143,,73144,219579,1 +139144,Dr. Charles P. Boyd,332079,239022,12 +139145,Police Commissioner,250332,34505,7 +139146,Salomonsen,13630,309260,8 +139147,Guitar Center Guy,2179,7399,5 +139148,Eva,63340,153395,5 +139149,Robert,49559,577430,9 +139150,Himself,150049,1295591,3 +139151,(Himself),78999,21111,0 +139152,Tom the Plumber,102668,154932,15 +139153,Amanda,93856,496410,5 +139154,Kate,1253,10731,10 +139155,Tracey,344906,21321,10 +139156,Sgt. Ned Coleman,264321,6197,5 +139157,Teresa's Mother,217948,40165,7 +139158,,85836,1267701,12 +139159,Abhay,61203,165425,0 +139160,Cornelius,277688,10367,6 +139161,Farhad's Grandmother,286532,1395198,24 +139162,Young Bruce Wayne,209112,1511243,13 +139163,Greg Blue (voice),153518,1032886,26 +139164,Messenger,43875,90074,21 +139165,Cleaning Woman,171308,1217118,14 +139166,Karaoke Girl,329289,1297174,5 +139167,Ysel,180644,1845736,3 +139168,Lisa,48254,128408,7 +139169,Foreman Ross,147829,119258,10 +139170,Father Andy,10097,8785,2 +139171,Himself,90125,587856,5 +139172,Marcia Zarrow,277710,515,3 +139173,Dr. Heinz Doofenshmirtz (voice),71689,104644,11 +139174,Antti Arhamo,18279,108471,3 +139175,Julian Gordon,222220,32923,2 +139176,Moryc Haber,36264,107865,1 +139177,Wallace Curtis,59895,13995,1 +139178,Maggie Sutton,18651,82412,2 +139179,Miss Scatcherd,38684,195383,15 +139180,Crank,9928,83349,6 +139181,Nabil,95516,78019,3 +139182,Stan Peters,9890,60018,14 +139183,Lisa,117942,1066311,5 +139184,Scientist,28340,1543107,29 +139185,Night Watchman,103947,1189937,0 +139186,Rochus Misch,613,33043,26 +139187,Ola Falk,141267,1485936,20 +139188,Dagnija,116432,1189687,1 +139189,Young Man on Bus,308,4442,12 +139190,Rebel Leader,10257,64441,10 +139191,Angie,43205,124741,2 +139192,Sitas Freundin Katja,167424,1817737,19 +139193,Daniel's Friend #1,21208,90458,13 +139194,Mel,11376,176217,8 +139195,Hal,198652,24709,4 +139196,Bob,32091,31837,13 +139197,Thing 2 (voice) (as Lewis Morford),43580,1357562,7 +139198,Le vigile,334317,24465,4 +139199,Sing,9470,57607,0 +139200,Zina Vanacore,85602,14262,4 +139201,Minor Role,43806,3370,44 +139202,Aaron Levy,228034,2055,9 +139203,Jerry,43158,129297,8 +139204,Jake,390777,61659,5 +139205,Julio Scallini,6081,11033,8 +139206,Jackie Russell,4932,40179,4 +139207,BIMP Secretary,285181,1208130,19 +139208,Neighbour,169364,1293062,3 +139209,Tyler 'Dance Machine' Jones,50725,58368,16 +139210,Pierre,42132,1414377,4 +139211,Jenna Clark,4380,36810,8 +139212,Kelly,345054,1557207,7 +139213,Captain Adelaide Brooke,281979,30083,2 +139214,Themselves,90465,1147657,13 +139215,Jonathan,313922,1707097,22 +139216,Mike Wilson,921,14887,4 +139217,Buck (voice),8355,11108,8 +139218,Vet,8988,1741960,37 +139219,Thelma,103432,32774,2 +139220,Maid,43806,1271047,48 +139221,Emma Neuman,127803,1085816,1 +139222,Gretchen,341174,1770249,20 +139223,Blum,28090,15864,9 +139224,Turaga Dume,21379,27124,7 +139225,Mosso Mar,348537,1621789,13 +139226,Governor's Assistant,60965,173794,18 +139227,Communications Operator #3,329865,1293485,44 +139228,Secretary,87343,1260782,8 +139229,Dan Ballard,27443,70820,0 +139230,Johnny Sutter,24632,1065796,7 +139231,Lance,270650,1359956,25 +139232,Stanley MacLaurel,43889,89670,0 +139233,Glenn Barry,353686,90576,11 +139234,,391899,500427,1 +139235,Frandsen (as an older man),31048,78416,6 +139236,Referee McAvoy,921,65808,19 +139237,Albert,42499,97685,6 +139238,Colin,83125,1044255,1 +139239,Fernie Flores,93511,89499,9 +139240,,24140,22531,15 +139241,Erik Lund,199374,71154,2 +139242,Publisher,67272,92416,1 +139243,Old Man,273879,179028,3 +139244,Arzt,217412,564048,14 +139245,Sgt. Bleeker,43407,14529,14 +139246,Mama Tucker,45219,89928,6 +139247,Johnson,33931,2496,6 +139248,New York Reporter (voice),270946,973651,13 +139249,Doorman,149793,120739,33 +139250,Hucks,39356,1753266,20 +139251,Edouard,162458,1109781,1 +139252,Sagy (Diálogos / Canciones),13283,1497225,12 +139253,Roger,91443,1451161,6 +139254,Principal Morris,72753,55154,6 +139255,Marty,13836,122853,19 +139256,Theatre Audience,118943,1086710,2 +139257,Park Jeong-min,209764,150126,2 +139258,Filippo,42892,129112,8 +139259,Jack Taylor,237756,208296,5 +139260,El Bachi,56647,3483,3 +139261,Sabo,334394,1146840,6 +139262,Ray Cawley,75595,78499,11 +139263,Dr. Ryan,27966,96721,19 +139264,Lucie Giroux,41277,1293493,41 +139265,Tony,316654,1386199,4 +139266,Caretaker,216156,1730419,6 +139267,Kitty Butler,26491,22809,1 +139268,Mutant Twin #1,2080,1353658,57 +139269,Ned Land,2966,29092,2 +139270,Herself,245394,7056,16 +139271,Sally Clark,53766,30000,2 +139272,Mom,301325,180425,7 +139273,Master Bua,43209,116421,4 +139274,British Trooper POW (uncredited),127560,1086523,31 +139275,Jeff Powers,103201,38560,0 +139276,"Onda Keita, younger",218508,132807,6 +139277,Susan the Waitress,4592,66499,17 +139278,Dan 'Dash' Dashiell,17306,41687,0 +139279,Riley,18774,1111831,18 +139280,Selma,88375,77081,7 +139281,Dandy #2,188161,1224543,24 +139282,Florence Banner,26491,57449,3 +139283,Frida,56596,70095,13 +139284,Constable Bright,425774,1707953,60 +139285,Murder Lounge Girl,284564,1386930,27 +139286,,54959,53377,13 +139287,Mrs. Mavis Pegler,46623,74874,11 +139288,Camarero,140,1061872,12 +139289,Clark (butler),31324,85937,7 +139290,Mom Schneider,80032,13963,2 +139291,Ami,140652,971519,6 +139292,Eun-su,95453,25001,0 +139293,Mike,17473,81922,6 +139294,Il barone Maurizio Di Vittis,108535,11223,10 +139295,Ulf,10075,62879,5 +139296,Immigrant (uncredited),273481,1670765,40 +139297,Construction Worker (uncredited),2503,1456745,36 +139298,Col. Michael Riker,179103,16766,6 +139299,Michel-Phoenix,63401,38903,10 +139300,Nera,2974,13905,2 +139301,Corporal Bill Hardsock,176867,30005,3 +139302,Giacinta,47096,25810,2 +139303,Carlos,206563,55015,11 +139304,Stenz,117251,76512,14 +139305,Concert Vendor,11172,1781195,47 +139306,Kenny,78362,201392,9 +139307,Warren Stone,185291,3265,5 +139308,Scrat (voice),17963,5713,0 +139309,Doctor,52920,146877,4 +139310,Peter Kroon,141267,931605,15 +139311,,189364,3623,0 +139312,Moran's Henchman (uncredited),53576,148416,14 +139313,Ana,435707,958,1 +139314,Mrs. Clara Topper,44875,9071,3 +139315,Himself,76176,61658,3 +139316,Juliette Laurier,89756,8791,1 +139317,Woman on Train (uncredited),369524,1383789,48 +139318,Ralph Bundt,59115,66523,11 +139319,AK,49028,932822,12 +139320,Iris Doriot,395763,1802431,7 +139321,Hamnarbetare,82448,928019,21 +139322,Alice Faye,106821,94928,7 +139323,Maid 1,274857,1355139,44 +139324,G.A.,157293,1148398,8 +139325,Paparazzi Photographer,256092,1338429,8 +139326,Dōkai,2487,25462,1 +139327,Anna,60281,41529,5 +139328,Trinity,113091,145245,3 +139329,Will's Mother,29907,1517090,10 +139330,Ralph,17606,3131,1 +139331,Herself,413782,34374,7 +139332,Walter Curly,412202,73288,5 +139333,The Pitchman,112304,1070870,13 +139334,Connie McBride,255388,84485,2 +139335,50 States Girl,14123,1446427,36 +139336,Sally Lockhart,46513,26076,0 +139337,Rioter,195763,1175999,2 +139338,Bartender Smoking Cigar,53392,89602,5 +139339,Directrice école,283726,1164979,19 +139340,Hordred,30126,83468,8 +139341,Lurch,107596,9600,6 +139342,Soldier 3,52034,237175,9 +139343,Omar,317214,1412401,3 +139344,,138522,1153589,1 +139345,Betty Catroux,221667,1315501,5 +139346,Gou-ichi Takata,14226,73427,0 +139347,Henry,408272,1732420,12 +139348,Marie-Paule,44155,239421,12 +139349,Elinor,204255,1121198,3 +139350,Policeman (uncredited),58402,98774,8 +139351,Assistant réalisateur,382591,193341,10 +139352,Frank Brown,340224,27492,1 +139353,Releches,33273,28511,6 +139354,Jimmy,11358,104040,12 +139355,Girlfriend,33345,554192,7 +139356,Young Boxer,97614,1207358,13 +139357,Skeet,15316,1085944,10 +139358,Otac,341559,1303306,8 +139359,Ananya,329135,1435701,6 +139360,Himself,82481,579763,18 +139361,Freddie / Treddle,25528,918980,10 +139362,Adrien,64481,72254,0 +139363,Kaspar,32099,108852,4 +139364,Tracy Baxter,42251,127609,1 +139365,Korean-am teenager,9968,61163,13 +139366,Vera Delmage,180576,6721,4 +139367,Dr. Burke (uncredited),82654,1091868,30 +139368,Gerold,9503,1230,0 +139369,Dancer,146270,86283,4 +139370,Arzt,167424,1822706,24 +139371,Agnes Carpenter,69898,7071,7 +139372,Khader Boualam,247500,1048770,5 +139373,Bonnie's Mom (voice),10193,24358,22 +139374,Kathy the Babysitter,40368,556924,4 +139375,Pfc. Franke,7454,69751,7 +139376,General's Aide,3146,235385,10 +139377,,11196,1444541,22 +139378,Persian Chamberlain,1966,1650983,41 +139379,Lt. Cmdr. Pete Vincent,44890,10608,3 +139380,Lisa,90387,5499,2 +139381,Mrs Chan,212996,554183,5 +139382,Mononc - Luc Tardif,26566,574835,5 +139383,Marie,12135,73380,0 +139384,Susan Gale,42996,22090,1 +139385,Gilroy,56264,27993,6 +139386,Additional Secretary,10005,61860,17 +139387,Brinn Howarth,383538,1386222,3 +139388,François,285858,227598,1 +139389,Don Peppino - il proprietario del garage,94809,41166,11 +139390,Mr. Henneman,80032,2648,5 +139391,Tourist Woman in Vatican,9352,1390260,22 +139392,Baker,242131,14658,6 +139393,Bonnie Muller,75595,7517,5 +139394,Evelyn Heath,42288,10606,0 +139395,Tom,288521,1204348,6 +139396,Leo,379441,2536,7 +139397,Himself,379019,1780119,21 +139398,Charlie,85673,16936,2 +139399,Seth,78563,146378,1 +139400,Soldier,128866,1088063,11 +139401,Danker,59142,2771,4 +139402,Sarah Barton,333091,141687,1 +139403,Nate Conyers,407448,1863666,30 +139404,Spencer Tracy,2567,1218282,19 +139405,Ewald von Demandowsky,11440,44637,8 +139406,Munsu,211579,115290,4 +139407,Ellen Miles,47739,13026,1 +139408,Ruddock,169726,1000152,11 +139409,Treet,70500,1262138,10 +139410,,293094,232311,1 +139411,Barney Benesh,4931,16101,5 +139412,Rusty - Metropolis Cop (uncredited),209112,99166,150 +139413,Mr. Spitzer,54570,19553,10 +139414,Specialty Girl (uncredited),15092,98294,79 +139415,Evan 'Scribe' Wright,54102,6906,3 +139416,Marie Tinne,68444,39847,2 +139417,Sam,200511,1181361,0 +139418,Himself,111332,900,2 +139419,Horatio,125705,21179,6 +139420,Stefano,159474,95040,2 +139421,Seymour,96433,3663,3 +139422,Franz,296313,82537,5 +139423,Kate,96987,1011211,9 +139424,Herb Blake,43390,40178,5 +139425,Karina,200796,1182095,5 +139426,Robinson,47404,34317,40 +139427,Harry Pinow,28178,50588,9 +139428,Bill Kiowa,46570,31896,1 +139429,Renkin,304372,20211,14 +139430,Andrews,257912,22063,2 +139431,"Bill - ""Fuzz"" Cop",14923,1386346,20 +139432,Flying Monkey,25645,1121642,7 +139433,Bubbles,381645,1718149,27 +139434,Mrs. Samuel 'Nancy' Edison,56154,20366,2 +139435,Additional Voices (voice),82703,15373,44 +139436,Dr. Chen,300187,116278,3 +139437,Felipe,152989,1179878,8 +139438,Pete Danner,42215,16431,1 +139439,Cornelia,9943,37343,7 +139440,Camilla Anderhage,24647,64974,4 +139441,Four-Star General V. Lewton,13836,59641,25 +139442,Allan-a-Dale,71066,1471629,7 +139443,L´Assistant,3476,24303,11 +139444,Det. Robran,19846,1322888,6 +139445,Geneviève,49559,9765,2 +139446,Actrice,35025,1598493,19 +139447,College Girl,356752,1440577,34 +139448,Counselor,35626,117277,16 +139449,Patrick Jeskow,315335,44651,4 +139450,Megha,304134,78920,2 +139451,Gypsy Woman,16182,79935,17 +139452,Hunter #2,2080,1353653,50 +139453,Teenage Corinne Walker,50875,527313,6 +139454,Patron Star-Treck,10484,46475,14 +139455,Manute,189,352,8 +139456,Mrs. Potts,192990,140147,10 +139457,GSDF Officer,43113,552169,46 +139458,Gaira (Green Gargantua),3146,235722,18 +139459,Drina,27973,528,0 +139460,Betylla,370687,530395,7 +139461,"Edna, a Secretary",53410,21301,1 +139462,Deputy Hart,98250,164901,4 +139463,Secretary,98094,103878,11 +139464,Tía de Magdalena,31299,980594,10 +139465,,231009,1266168,4 +139466,Nightshade / Lady Shiva (voice),22855,81668,15 +139467,Jeannie,15019,84035,6 +139468,,44716,1026077,39 +139469,Roberts,55846,40900,13 +139470,Il produttore cinamatografico,120972,25811,7 +139471,Christine,121539,1074504,0 +139472,"«Luzga», Sergey Basargin, former military intelligence captain",71393,549384,0 +139473,Jaidev,218898,53676,4 +139474,Robbi,64526,129621,4 +139475,Nancy Puelma,56815,141624,4 +139476,Henchman Nick,182035,34811,7 +139477,,398452,545090,5 +139478,Fausse Kristin 3,382591,1785337,22 +139479,Joe Eliot,67375,105454,19 +139480,Assistant Defense Attorney (uncredited),14615,33855,97 +139481,Jared's Secretary,10274,64679,18 +139482,Dr. P.J. 'Phil' Winston,45692,2496,6 +139483,Dagger Peak,10703,1613797,17 +139484,Josh,400465,6715,1 +139485,Booker,76163,51576,6 +139486,Dr. Conner's Patient,271718,1427948,17 +139487,Baron Frankenstein,3104,5,0 +139488,Elin,10119,63756,9 +139489,A Lady-in-Waiting,20650,100047,3 +139490,Christian Krogh,128900,73638,3 +139491,Jensen,84449,8186,1 +139492,,336549,99258,6 +139493,Zip Elvin (voice),302960,2,5 +139494,Thomas,11205,18897,0 +139495,Susan Crosby,230428,131009,3 +139496,Felice Zanchi,42436,233334,4 +139497,Yuliya,57809,23441,8 +139498,Pundit,214756,1224494,56 +139499,Sedas Bruder,167424,1822700,16 +139500,Himself,52903,1263735,3 +139501,Trenyce,98557,138323,3 +139502,Kelly,8852,158986,5 +139503,Speakeasy Bartender (uncredited),13912,1240252,11 +139504,Adam,96936,72992,13 +139505,J.D.,435,6069,6 +139506,Clementine Templeton,128598,117818,0 +139507,Ann,65123,236854,3 +139508,Adelaide,409696,8930,5 +139509,Monty,54491,3266,5 +139510,Emma,89481,930332,8 +139511,Nurse Billy,284052,1785902,18 +139512,Jessie Rickey,46623,4073,9 +139513,Kitty Cat/Lion,107596,1647153,25 +139514,Proprietario Ristorante,379873,1091599,30 +139515,Sonar Tech,52454,1352296,45 +139516,Jane Trimble,187219,59794,9 +139517,Plinth,76757,1368433,32 +139518,Inspector Burke,179818,90000,4 +139519,Ayesha,283995,1133349,8 +139520,Customer At Counter,19053,164713,14 +139521,Allen Parker,47739,93741,12 +139522,Joanna,508,168197,37 +139523,Bill,10739,159879,12 +139524,Merritt Andrews,43049,83391,0 +139525,,182843,120646,6 +139526,Dawn,229702,134082,0 +139527,Mikeova mati,259690,1301978,15 +139528,Maria,125666,83990,1 +139529,Hasting,318922,75076,13 +139530,Constance,156711,1349724,16 +139531,Zé Elétrico,40859,55015,2 +139532,Herself,63144,1025682,23 +139533,Jonathan,215579,40638,5 +139534,4th Amigo,4982,1001804,59 +139535,Soldier #1,19398,1469197,31 +139536,Sawmill Owner,27409,5816,9 +139537,Ted Pratt,15935,23,4 +139538,,320299,7275,1 +139539,Tuna Cassera,44470,985548,8 +139540,O'Reilly,25528,1064359,6 +139541,MUDr. Arnost Rýdl,80094,138551,1 +139542,Ananda,224233,1293440,3 +139543,Steve,79316,1265767,7 +139544,Judy Blake,71996,105072,8 +139545,Rhidges,43142,40185,7 +139546,Mrs. Edith Chapman,80316,96271,4 +139547,Co-Worker,330115,1198191,16 +139548,Mario Fujiwara,72592,1112407,11 +139549,Sarah Deprez,319340,1357411,8 +139550,Dutton,80473,178446,7 +139551,Financial Advisor,293863,43431,23 +139552,Matte,11925,72690,5 +139553,Mrs. Jones,815,15889,10 +139554,Candy,122081,67599,2 +139555,Louis,187602,1169484,0 +139556,Danny,79500,59551,8 +139557,Thorne Fletcher,175998,88887,4 +139558,Minor Role,43806,1543059,33 +139559,Bo,220488,1279598,6 +139560,Jake,10596,12132,0 +139561,Sailor Bob,205724,1504759,16 +139562,Madame Irina,14979,61860,14 +139563,Nikolai,45243,67206,20 +139564,Backwoodsman (uncredited),52360,30510,25 +139565,Berto Del Prà,43548,119991,2 +139566,Kai,138191,931441,2 +139567,Nick,19423,62522,0 +139568,Capt. Henry 'Hank' O'Hara,87514,10017,0 +139569,Miss Robey,560,7642,3 +139570,Henry Thompson,89551,1071193,5 +139571,Catering Assistant (uncredited),213681,1771589,62 +139572,"Murai Yoshio, the colleague",36246,137029,12 +139573,Michael Jeffrey,19505,1954,2 +139574,Il sergente delle guardie,43379,227308,8 +139575,Mandarin Guard,68721,1735560,60 +139576,Sloan's Dinner Companion,11172,1781220,63 +139577,himself,306464,52139,1 +139578,Kenny,403330,76537,9 +139579,Gretel,72984,135174,1 +139580,,255772,1329262,11 +139581,,105352,1380400,7 +139582,Nobuyuki Kuninari,45384,19590,5 +139583,George Gilner,43923,84407,7 +139584,Clip from 'Toast of New Orleans' (archive footage),33740,232024,47 +139585,Priya Apte,208756,78920,0 +139586,Professor Klimov,26873,96515,6 +139587,Detective Blanchard,256092,1325838,21 +139588,Selma Olsson,128946,550130,1 +139589,Dabral,196852,53375,16 +139590,"Jack V. Merrick, Jr.",77964,4958,1 +139591,Pahoo,43753,27742,2 +139592,Heathcliff (voice),177572,193254,17 +139593,Gina Flaherty,55725,59203,11 +139594,Luke,34734,81097,4 +139595,"Biff Bailey (segment 3 ""Voodoo"")",26811,83754,8 +139596,Teddy Weizak,13519,3027,19 +139597,Ken Stanley,54801,101720,6 +139598,Rabbi Nachter,12573,14669,7 +139599,Girl At Funeral Sequence,23319,103437,2 +139600,Young Ryan,60965,232045,13 +139601,Læge (uncredited),356326,1034508,33 +139602,,253533,213430,10 +139603,US Weapons Technician,246655,1796436,90 +139604,Nahasch,2734,27662,40 +139605,Inspector Lau Kin Ming,11647,20372,4 +139606,Jamshed 'Jimmy' Mistry,316654,591067,6 +139607,Barbara Leslie Forbes,108812,14500,0 +139608,Lambik,56344,223971,2 +139609,Rima,437830,237831,1 +139610,Amy Dorrit,47084,120932,0 +139611,Régine,78340,35908,2 +139612,Vanessa,49853,1335464,9 +139613,Shimon Shabati,116762,226575,3 +139614,Car Salesman,91679,1782589,30 +139615,Garbageman,33005,2714,3 +139616,Charlie's Wife,17725,186025,20 +139617,Swaraj,191112,1171679,3 +139618,Helmut (voice),9514,1642155,9 +139619,cc 1966,844,1622,10 +139620,Mariano de Trani,11813,538228,7 +139621,Himself,324181,568585,7 +139622,Shop manager,46982,1537641,7 +139623,Tess Cassidy,43319,94033,6 +139624,The Grandmother,336804,150616,6 +139625,Speed Dennis,223497,74875,3 +139626,Jimmy Ortiz,78307,79993,2 +139627,,38164,128250,4 +139628,Honey Moon,156015,21176,10 +139629,Le patron de la guinguette,68822,278796,6 +139630,Emma,41496,54470,4 +139631,Producer,26486,1174794,43 +139632,Shopper (uncredited),213681,1771566,39 +139633,Yfirmaður Björgunarm,131343,42671,2 +139634,,36615,1415467,4 +139635,,48882,93543,0 +139636,Jack,8366,36863,6 +139637,Nelly,87587,34612,2 +139638,Mingo,16320,80426,13 +139639,Rookie,268920,1181296,9 +139640,Victor Prynne,99283,3364,2 +139641,Milena Trecz,32559,480657,1 +139642,Masseuse,28209,100114,10 +139643,Technical Adviser (Joe X),4932,40176,20 +139644,Bill Clark / Mike Lewis,29467,78792,1 +139645,Knut Haugland,70667,559195,2 +139646,,393939,98105,3 +139647,Ray,252682,1290924,8 +139648,Himself,44260,116488,0 +139649,Governor,37329,12502,10 +139650,Courgette (voice),393559,1615534,1 +139651,Frederick Winterbourne,4703,38162,1 +139652,Belle at Ice Cream Festival,191068,30779,7 +139653,Crone / Librarian (voice),160046,1298527,4 +139654,Dr. Rutter,360284,29685,4 +139655,Teresa,12221,73756,3 +139656,Anya,42132,1414379,5 +139657,Bob Kasabian,381737,1090375,8 +139658,Jason Fuller,141418,1362210,6 +139659,Desiree,17144,996826,7 +139660,Percival,19957,85347,7 +139661,Martinez,95358,1197855,11 +139662,Girl-Chaser in Park (uncredited),76465,43823,9 +139663,Jeune femme piscine,98277,1849123,46 +139664,Chatteris,42852,37861,7 +139665,Eddie Bendix,27034,85437,0 +139666,Dina,218688,1203440,1 +139667,Micky Plumm,73501,13021,5 +139668,Cheerleader,232100,1267387,12 +139669,,279096,1430587,39 +139670,Shop Clerk,66022,148631,7 +139671,"Jang, Hak-soo (South Korean Navy Lieutenant)",407887,73249,0 +139672,,67633,1043261,11 +139673,Coroner,26283,117036,13 +139674,Mom Racer,7459,4038,3 +139675,Store Detective,98125,95729,12 +139676,Lulu,24123,25540,3 +139677,Justin,36628,116528,2 +139678,Shopping Girl,303281,1576505,8 +139679,Himself,119433,176031,0 +139680,Maks,327982,562730,1 +139681,Cruella (voice),13654,89042,4 +139682,Mrs. Dubois,43670,4,5 +139683,Sylvia Murdoch,76207,300191,3 +139684,Drunk,204040,14664,14 +139685,,375742,1210138,30 +139686,Flora,403450,1097436,2 +139687,Maria,75532,560297,3 +139688,Thakur Ajay Singh (Chacha),45533,85655,4 +139689,Christa Lorbeer,328032,45820,3 +139690,Bruce Cabot,24150,111693,26 +139691,Senior Inspector Yu,18747,1132615,16 +139692,Hunky,197737,1235622,25 +139693,Gabriel Service Sr.,290379,29259,2 +139694,Jude Law,119213,6473,1 +139695,Jody Simms,53949,140822,12 +139696,Penguin (voice),396330,78798,6 +139697,Hugo Alfvén,128900,55886,8 +139698,Glory the Child,76341,1456888,25 +139699,Kara,76494,63234,16 +139700,Ariel,259894,1323486,8 +139701,The Detective,62143,217914,7 +139702,Jenny Kido,243683,1189078,10 +139703,Wedding Band,242042,1687004,32 +139704,Hattie Breckenbridge Peyton,131360,1182938,4 +139705,Johnny,56906,33297,4 +139706,Corporal,125063,989216,5 +139707,Emily,84348,1090687,13 +139708,,293189,1867764,2 +139709,,271495,559975,6 +139710,Gendarm Grasser,12523,15121,13 +139711,Megumi Takani,221732,84028,5 +139712,Radioman 2nd Class A.J. 'Sparks' Sparks,43752,19440,6 +139713,David Whitlock,15613,36602,3 +139714,Ftatateeta,31561,30126,3 +139715,Eric Gorman,39311,2495,1 +139716,Man in Chicago Cafe,47186,170924,34 +139717,Thérèse Saroyan,1818,19269,2 +139718,Jane,177474,14575,3 +139719,Oregon Undertaker,9843,59868,16 +139720,Snowman (voice),286532,4175,4 +139721,On Looker,72574,566382,10 +139722,Luigi,2001,1781704,39 +139723,Soo Ahn,396535,1278162,5 +139724,,204007,1186319,8 +139725,Dani,258751,1183859,1 +139726,Nicole Balland,336811,584518,2 +139727,Damon,12912,152820,8 +139728,Cody,44363,62596,5 +139729,Silent Husband,310593,37974,25 +139730,Mavrandoni,10604,65897,8 +139731,Haha,28268,145253,2 +139732,El Santo,58447,1296067,3 +139733,Eddie,37935,1109,8 +139734,Prostitute,32904,109836,7 +139735,Lizzie (voice),49013,381,29 +139736,Hackler,8008,36325,10 +139737,Sojo / The Black Samurai (voice),16390,24362,5 +139738,Gramp Fry,43759,3155,0 +139739,Tina,134475,34742,0 +139740,Himself,130993,1310863,3 +139741,Anton,149170,1601625,9 +139742,Dr. Clay Haskett,62837,18688,2 +139743,Rodolphe Boulanger,45184,10508,3 +139744,Alex,79343,54228,0 +139745,Gaylord Ravenal,17820,39601,0 +139746,Percy,12575,36010,3 +139747,Saki Matsumura,41261,125947,8 +139748,Macbeth,119844,51812,0 +139749,Colonel Jessie Pratt,128612,21505,2 +139750,Twinkie (uncredited),168259,58197,47 +139751,Irina,219247,1204028,7 +139752,Japanese Cyberpunk Woman,71670,1186027,22 +139753,Jason,359245,172833,3 +139754,Feral Kid,375366,1886312,22 +139755,Matt,84348,66681,15 +139756,Roadkill (Voice),44896,658,4 +139757,Himself,146730,2106,1 +139758,Hitchhiker,45649,78211,20 +139759,Doctor,7942,133038,24 +139760,Ann Hogan,9981,46074,16 +139761,,11328,1444494,42 +139762,Aunt Millie Forrest,43846,1079577,10 +139763,Pat Malloy,80193,588991,5 +139764,A Police Informer,37368,30686,3 +139765,Trabajador 2,52943,1701590,8 +139766,Tamara,123109,78434,4 +139767,Ophelia,312497,54819,24 +139768,Man in Office,52437,1076230,11 +139769,Pump Operator,127560,113650,19 +139770,Honkey Tonk Announcer,18843,63797,40 +139771,Rabbi Josh Drexel,37923,8875,7 +139772,Station Master,176627,121066,30 +139773,Deanna Warren,48495,87569,0 +139774,,391438,236273,1 +139775,,315467,1019259,1 +139776,Vietnamese Captain,127585,1671572,47 +139777,Mitchell,295581,1368783,10 +139778,Arnes,70800,122600,2 +139779,Henry,11012,567549,20 +139780,Davis Roman,64972,3266,3 +139781,Mrs. Strong,18698,91654,6 +139782,Sig. ra Zaccarelli,419522,120181,11 +139783,Ben,301876,1005324,9 +139784,Julie,17796,64999,5 +139785,Dennis Scott,43882,10018,4 +139786,Алексей Бобриков,37603,143665,2 +139787,Fourth Robber,11045,1533813,12 +139788,Startop,16075,195690,14 +139789,Sancho,25426,12054,4 +139790,DJ,138544,1206600,14 +139791,Sophie,8247,37917,10 +139792,Majbritts farmor,76312,578989,7 +139793,Tabita,86154,932926,4 +139794,Wayne 'Mad Dog' Dobie,10433,380,0 +139795,Duke Emerald,257907,1298420,7 +139796,Adhikesavan's Sidekick,69401,1319836,9 +139797,,134209,1646276,3 +139798,Bernardo,48209,234187,9 +139799,Pongo (voice),13654,54447,5 +139800,Elin Nordenson,41764,74710,14 +139801,Jonathan Thompson,341957,1288585,8 +139802,Aljona,14489,141640,0 +139803,Timmy Valentine,46420,1546153,8 +139804,Sphinx,21533,116575,8 +139805,Dave,398891,69415,4 +139806,,64526,238068,9 +139807,Max Jerry Horovitz (voice),24238,1233,1 +139808,Gun shop clerk,41578,879,4 +139809,Pappau Master,8079,53974,3 +139810,Ben Mac Bean,229757,84233,3 +139811,William Jones,205481,79856,4 +139812,Russell,68750,52705,6 +139813,Minoru nishio,81560,33517,1 +139814,Rod Dailey,288668,1444832,7 +139815,Montgomery 'Scotty' Scott,188927,11108,4 +139816,First-Nighter,132928,50836,36 +139817,Schama,2734,27656,34 +139818,,327231,1211746,8 +139819,MCPO Neil 'Spaz' Callaghan,10005,57995,0 +139820,Bobby,23196,2683,0 +139821,Themistoklis,163791,1601467,7 +139822,Ralph Richards,85602,6593,7 +139823,Rudi Miller,167882,19207,1 +139824,Hanif's daughter,135718,232536,5 +139825,Anat,205584,1036288,7 +139826,Ted (voice),72105,52139,2 +139827,Sister Della Rosa,95136,162641,11 +139828,,31061,146440,1 +139829,,366860,1532119,10 +139830,Wole,2577,26202,5 +139831,Sagy,13283,1497225,3 +139832,Derby buyer,315841,1276612,5 +139833,Dr. Lucy Hall,435,6068,5 +139834,Flanagan,28071,23604,7 +139835,Jacob Mayhew,10921,72421,12 +139836,Principal Becher,87826,19974,5 +139837,Goliath the Gorilla,72313,100341,9 +139838,John J. Macreedy,14554,12147,0 +139839,Hospital Nurse,353326,1738236,9 +139840,Radio Operator Peterson,15807,129502,16 +139841,Aunt Lorraine,427045,35704,4 +139842,Luxmi,357706,1144345,2 +139843,Bénévole du quai de la soupe,15712,1465001,21 +139844,Řezáč,6079,47837,4 +139845,Herself,189225,225931,2 +139846,Mr. Higgins,8619,7025,13 +139847,Karen Kelly,51036,1212036,14 +139848,Perry Kelvin,82654,54697,4 +139849,Actress Backstage Who Locks Her Door,171446,1364000,12 +139850,Truelove,14387,132100,9 +139851,Mrs. Higgins,44463,2018,3 +139852,Record Store Patron,320588,1371070,32 +139853,Vocalist - Opera Montage,98328,1711365,12 +139854,Shirley,29542,1084790,10 +139855,Michelle,10362,12052,1 +139856,Paul,74585,6679,3 +139857,Girl on Boat,259075,31780,6 +139858,Pauline Stuart,244539,164396,6 +139859,Mike Rossini,126083,78850,2 +139860,Gen. Bon Phouma,79466,161790,12 +139861,Mrs. Murdo,13600,5960,2 +139862,Cindy Coley,262841,39388,2 +139863,Psicanalista,34588,1839755,16 +139864,Jason Hodges,429238,1162677,0 +139865,Trinity,9958,60972,5 +139866,Prime Minister Inagaki,124994,123381,7 +139867,Ron Butz,233490,2222,16 +139868,Col. Spencer,108003,1769041,6 +139869,Mando,168259,1451616,41 +139870,Old Man,55433,222376,9 +139871,Nalia,300769,1362722,5 +139872,Do Chang-hak,408620,1044800,4 +139873,Røde,17985,1348438,11 +139874,Dr. Bradford,31275,103459,2 +139875,Warner Pitts,188826,469462,0 +139876,Mr. Wu,33338,1183509,11 +139877,Harry Pearson,26768,96179,6 +139878,Waiter with Sugar,228647,30280,17 +139879,Mann,48333,1090201,14 +139880,Hall Porter,36335,936929,10 +139881,Big Bob,22615,78018,3 +139882,Damien (voice),24238,8783,2 +139883,Angus McCulloch,9756,37168,8 +139884,Susan,36691,51856,5 +139885,Capt. Michael Savern,6163,14903,6 +139886,Stenographer,46190,1636752,12 +139887,Neighbor Boy,270303,1588357,18 +139888,Thunder Pai,64316,1616826,8 +139889,Additional Voices (voice),269149,1610452,40 +139890,Aurevoir,62692,237286,3 +139891,Clubber Girl,103620,1562397,18 +139892,Schroeder (voice),31718,124037,2 +139893,Telegrapher at Reuters,109716,132701,83 +139894,Old Ada,17347,43650,4 +139895,Beth Sohapi,101669,5915,1 +139896,Fujikida,264393,63707,5 +139897,Keoga,68097,85989,10 +139898,"Jimmy Clayton, Jazz Bandits bandleader",38769,34745,2 +139899,Matthew Wakefield,38850,6164,1 +139900,Christopher Oram,126889,8289,2 +139901,Beach Goer (uncredited),323675,1460211,54 +139902,Emily Creed,42066,2926,3 +139903,Lloyd Vanderwheel,402582,52933,7 +139904,Bretton,174645,1157595,10 +139905,Dante,159474,5567,3 +139906,David Fox,10294,36422,1 +139907,Horatio Robinson,43395,4343,4 +139908,Himself,329690,76669,10 +139909,Himself - CBS News Foreign Correspondent (archive footage),319092,1890105,7 +139910,Reno Marmaid,32044,128000,8 +139911,Home Minister,139582,1106490,8 +139912,Iraj,375012,1375501,2 +139913,White House Ticket Man,127585,1448201,61 +139914,Police Officer,413391,228704,6 +139915,Sjoerd de Wit,25797,1903226,10 +139916,Erzähler,135832,130685,0 +139917,Deputy,38065,86037,7 +139918,Emil (voice),3933,34905,14 +139919,Cook,32657,1678983,77 +139920,Wounded Bird (voice),44896,84225,12 +139921,Prison Governor,28421,3370,27 +139922,Rahul Khanna,11854,35742,0 +139923,Reporter,72592,934114,17 +139924,Cleatis,4613,38572,12 +139925,Terravex Worker,262841,1809714,32 +139926,Lute Player,42242,116102,13 +139927,Sergei Narbekov,65545,550738,0 +139928,Jaiko,265712,1469455,8 +139929,Hirsch,336050,1644786,9 +139930,C.J.,10011,61997,6 +139931,Star,52894,197057,8 +139932,Busboy,72096,154227,17 +139933,Detective,28421,120767,24 +139934,Himself,329690,87281,3 +139935,Melbourne Detective #1,13777,75263,16 +139936,,364833,238524,2 +139937,,33611,1045405,19 +139938,Jeong Yeonsu,62439,235338,16 +139939,Marcello,9943,17544,9 +139940,"Pvt 'Ski"" Wronski",51426,15699,11 +139941,Don,207699,1196850,3 +139942,Robert,64568,35064,1 +139943,Finnegan,88641,13526,3 +139944,Dapper Man,239056,6168,11 +139945,Steve,59962,232525,6 +139946,Billie Ross,28280,30609,1 +139947,Professor Magnus Norko,293085,1303537,3 +139948,Glenn (Aged 4 ),321039,1506297,6 +139949,,353641,1364925,5 +139950,Cook,100528,87519,11 +139951,Jerry Russo,26736,97600,4 +139952,,44442,1275872,4 +139953,John Morgan,11137,54834,7 +139954,Chief Tom Reddin,93511,157582,12 +139955,Cao Hong,12289,1623402,16 +139956,Mike Murphy,72638,992913,13 +139957,Uncle Meat,24150,35516,9 +139958,Wick Treadway,17926,27811,9 +139959,Sujal,20507,1001828,11 +139960,Anselmo,31542,1037922,5 +139961,,202239,235682,5 +139962,W.E.,331588,1557745,8 +139963,John Cologne,14142,5576,0 +139964,Chief Elder,227156,5064,1 +139965,Mr. Elkins,31913,1178327,16 +139966,Wilson,44022,10158,0 +139967,Moïra,12169,79514,9 +139968,Bald Man,10475,5617,9 +139969,Scott,268174,1298380,11 +139970,Jon,343283,133472,2 +139971,Herself,76686,1098638,2 +139972,Shirō Sanada,61984,234645,3 +139973,AD Aki Maruo,36243,646797,4 +139974,Jack Black,2179,70851,0 +139975,,202238,37505,8 +139976,Schoolyard Kid (uncredited),25132,1112455,19 +139977,,285685,1350676,2 +139978,Mrs. Kalish,32080,1570190,14 +139979,,80539,225315,8 +139980,Atwood,294690,90630,2 +139981,Winterbottom,325803,1428026,13 +139982,Himself,62732,1160305,9 +139983,Rita,9956,1102,2 +139984,Judith,18774,1163139,6 +139985,Larry,122857,177061,13 +139986,Dr. Matsutani,59861,1752,6 +139987,Prince Tuan Zhengchun,66759,1163379,7 +139988,Liisa,55167,222329,5 +139989,Captain Stacy,102382,5724,14 +139990,Elderly Husband 2,242042,1192581,36 +139991,Fellow Reveller,53403,33949,1 +139992,Flash (voice),269149,1223658,41 +139993,Maria (Priest's Mistress),115531,2750,1 +139994,Test subject,76757,1394333,29 +139995,,42441,1871505,17 +139996,Trailer Park Resident,186869,1149336,27 +139997,Julie Thompson,50327,67848,0 +139998,Chauncey Boyd,19203,67850,1 +139999,Trunks/Gotenks,126963,1686,15 +140000,Iris Bentley,64167,47742,9 +140001,Garda 1,360205,1511044,9 +140002,Gustavo Brambila,13996,6862,4 +140003,White Goodman,9472,7399,2 +140004,Capo armigeri,61217,26284,23 +140005,Seth Bishop,142145,1116422,7 +140006,Herself,27629,103443,28 +140007,Guy Lapointe,246403,85,5 +140008,Gwen,307479,27136,1 +140009,The Priest,64847,150320,7 +140010,Myra Leeds,46421,14730,0 +140011,Col. Quaritch's Mech Suit (uncredited),19995,60656,77 +140012,Nirmal Kumar,397365,76793,1 +140013,Carol Flemming,360626,13026,5 +140014,Ma Feng,413198,126778,2 +140015,Shiva,69404,237697,2 +140016,Corporal Bruckner,25385,95085,10 +140017,Himself (voice),35,31,11 +140018,Jessica,325205,1426719,2 +140019,blin bling,18475,61658,0 +140020,Spike,201676,94479,4 +140021,Charles Archibald - Allenbury's Lawyer (uncredited),31773,100042,28 +140022,Alan Brockman,418772,37154,4 +140023,Ed,228970,1272612,10 +140024,Joseph Thompson,335869,88949,7 +140025,Fahrlehrer,2169,4936,4 +140026,Alex,1807,19195,0 +140027,Shaun,299780,1145665,4 +140028,Eun-Hee,229304,932764,1 +140029,Welcome to the 60's Dancer,2976,1752779,125 +140030,Charles Malik,35129,5251,2 +140031,Forklift Chick,1481,1844337,28 +140032,Policía,53739,1702187,14 +140033,Anna,268853,1648879,2 +140034,Red,58918,15105,4 +140035,Indi Mitchell,43757,1153740,2 +140036,Museum Curator,179066,948509,26 +140037,Hecuba,47446,6598,0 +140038,Dr. West,240733,20817,7 +140039,Becchina,162056,70488,7 +140040,Quinn,15285,112604,0 +140041,Timmy,23719,138988,9 +140042,Gary,390777,61110,2 +140043,Sven,102256,53,2 +140044,Yingying,10389,65265,3 +140045,Sukie Ridgemont,6069,1160,3 +140046,Lisa,11206,586692,5 +140047,Tobias,53364,50041,3 +140048,Luther (as Buck Flower),54388,54564,6 +140049,Vance Jeffords,28304,14974,0 +140050,Beaulah's Assistant,56558,1421303,63 +140051,,83456,126864,12 +140052,Rocky,24556,52698,5 +140053,John H. Claudius,267389,37777,1 +140054,Katherine Harris,14050,4784,3 +140055,Paparazzi,331161,1459153,25 +140056,Border Guard,41733,1733288,16 +140057,Webster,27259,526,3 +140058,Costabile grande,85038,148255,15 +140059,Sara Rabinowitz,939,14288,3 +140060,Dixon,17978,5255,6 +140061,Maureen Casey,249969,2670,0 +140062,Mr. Chandler,103432,1820,6 +140063,BJ,360924,1670910,5 +140064,Latha,148284,237689,5 +140065,Herself,16612,48874,0 +140066,Lloyd Acheson,23855,76470,7 +140067,Man at Demonstration,81120,1462495,21 +140068,Standardiste émission,109261,587464,7 +140069,Tomas,229254,1068313,0 +140070,Tank,28366,134855,9 +140071,Lt. Ray Makonnen,27717,98829,4 +140072,Bailey Graffman,9779,59176,4 +140073,,1483,1089698,3 +140074,Paul,62838,29222,5 +140075,Pamela,214129,1052351,5 +140076,Waiter,289723,1358981,15 +140077,conduttrice talk show,142320,121023,23 +140078,Remy,31867,9642,0 +140079,Alex,49847,142950,3 +140080,De Beer,217775,28896,3 +140081,Mail Girl,40034,179940,13 +140082,Engel,8556,55349,13 +140083,Sonia,80304,589162,2 +140084,Astronaut physician,8410,55744,2 +140085,Dirk - der Hotelpage,15640,37246,4 +140086,Freddie Roman,369524,164222,17 +140087,Contact,75090,61963,11 +140088,Alesha Popovitch (voice),33065,110031,0 +140089,Alan Wilson,59735,217394,8 +140090,Huddy,4882,39774,7 +140091,TV Newscaster,195269,1686793,18 +140092,Tirica,278935,84149,1 +140093,Sylvie - swimming pool girl,68360,1427616,2 +140094,Capt. Hadron,59197,1235973,13 +140095,Koreman,14916,77635,2 +140096,Helen,70575,33936,5 +140097,Jack,22396,37572,17 +140098,Paul Stanton,62132,1452742,12 +140099,Peter,20359,86011,9 +140100,Wanda,69,53265,32 +140101,Ronnie's Mom,8457,105788,14 +140102,Dock Master,123961,85864,11 +140103,"Evie, the barmaid",53865,946773,11 +140104,Clark Davis,20583,56265,1 +140105,Qole,347096,1210153,5 +140106,Johnny Eager,41495,82216,0 +140107,Land Surveyor,104376,1117921,1 +140108,Herself,383809,1616089,6 +140109,Janet Benson,5559,8534,7 +140110,Staffer #2,358895,1720845,17 +140111,Le père de Samuel,382591,72270,35 +140112,Machiniste / Stagehand,38531,89602,0 +140113,Page Boy (uncredited),43522,105795,31 +140114,Yukito Tsukishiro / Yue,31347,77927,5 +140115,Judge Filo Cedillo,9846,94892,11 +140116,Walter Davis,384682,24047,6 +140117,Abigail (uncredited),294254,1673619,23 +140118,Demon,48145,560052,7 +140119,Silverio,15797,1181001,3 +140120,Tyler,117251,22125,7 +140121,Wedding Guest,14976,1698392,33 +140122,Bonnie,32195,5888,4 +140123,Sweet Beaches Dancer,243683,1398162,70 +140124,Herself (uncredited),128216,98,36 +140125,'Baby Face' Martin,27973,4110,2 +140126,Wanda,157354,6944,1 +140127,Negotiator,11636,1223076,32 +140128,Father's Son,110115,1115636,8 +140129,Party Husband,14292,963962,8 +140130,Greta,178446,2343,2 +140131,Bernard,39415,25148,18 +140132,Phil,16151,79695,6 +140133,Julia Caine,7006,51800,4 +140134,Pentagon Scientist,246655,6752,81 +140135,Jason,24756,93719,1 +140136,Apple Woman,25053,148352,3 +140137,Penelope White,239566,98818,22 +140138,Earl of Clincham,54406,2440,3 +140139,Nemo age 9,31011,150543,11 +140140,New High Priest,13486,68501,18 +140141,Grossfield,22029,1314029,10 +140142,Jaskier,57278,1145,2 +140143,Åke's father,125926,138069,1 +140144,Rachel,174611,1105465,0 +140145,Additional Voices (voice) (as James Williams),15213,1371531,34 +140146,German Doctor,19996,1764126,15 +140147,Natalie Hawkins,254065,9788,1 +140148,Greg's Friend,228970,1495075,20 +140149,Hotel Service Agent #2,383538,1851867,15 +140150,Oswald,134155,1350666,12 +140151,Felix Clare,101915,1206337,9 +140152,Grilov,43891,34748,6 +140153,Norma's husband,3405,31896,4 +140154,Harriet,48131,1198828,9 +140155,Daisy,45610,1907,2 +140156,Newswriter,377290,1643045,27 +140157,Mme. Zarka,43546,124736,15 +140158,Rudy,36919,138551,5 +140159,Alex Carlson,10096,21532,5 +140160,Checker Box Bartender,6973,76543,33 +140161,Mel,280092,167139,17 +140162,Quincy,49514,60533,18 +140163,Albu,10075,62884,9 +140164,Alikersantti Hönö,55759,125587,12 +140165,Barbara Barry,43268,95624,0 +140166,Linn,16032,67737,13 +140167,Marie Becker,13336,84440,1 +140168,Roger,91186,25246,0 +140169,Filip,199644,1179814,8 +140170,Steve the Pirate,9472,21088,9 +140171,Manfred,9483,19231,2 +140172,,32928,144821,2 +140173,Miller,51823,71913,8 +140174,Lady Sophie Fitzmore,322460,45465,2 +140175,Homeless Man on Bench,339403,1635144,30 +140176,Vice Principal Sludge,14123,119699,22 +140177,Belle,35026,113617,3 +140178,Sorbier,4443,9908,4 +140179,Sandra Hayes,28820,41342,4 +140180,Miss Johnson,26123,21214,17 +140181,Jenny,11664,70150,3 +140182,Sonny,297853,1790449,28 +140183,Amalie,199374,559137,5 +140184,Singing Men of OHIO,381008,1784720,29 +140185,Alexis Danella,37534,37405,9 +140186,Ernesto Martel,8088,72631,3 +140187,Housekeeper,144792,589729,15 +140188,,297745,131670,5 +140189,Max Milton,43792,5832,10 +140190,Ed - 1st Hurt Worker,47404,114400,17 +140191,Kontantinos (Gus) Boulis,45324,10210,10 +140192,Frank Secchi,1481,1844328,16 +140193,,315362,135724,10 +140194,Charles Fraser,52959,59964,4 +140195,,57701,126864,5 +140196,Vesoul,13507,15482,9 +140197,Monsignore,43211,129337,6 +140198,Chiara,134782,203867,4 +140199,Helen Higgins,17003,1005538,5 +140200,Imran Pathan,14159,53675,2 +140201,Donald Horner,441728,2039,2 +140202,Claire Parker,44388,3237,3 +140203,Dino (voice),38356,11886,36 +140204,Michael Carpenter,146313,33667,2 +140205,Wade McCurry,116340,71885,0 +140206,Elaine,18530,43257,5 +140207,Jhoomri,25801,35810,1 +140208,Marco,40817,17839,2 +140209,Pug (uncredited),147876,1250223,12 +140210,Sweetness O'Hara,150065,37153,0 +140211,Brennan,10770,45222,3 +140212,Ernst,35977,13661,14 +140213,Detective Antonio Ri,12412,1241,3 +140214,Ricky,233490,1828990,13 +140215,Sir Charles Lytton,936,14261,0 +140216,,88491,985077,7 +140217,Robert,61528,18023,1 +140218,Danica Schwartz,206296,1714290,9 +140219,Barb Weaver,200505,9560,5 +140220,McKinney,19968,6463,12 +140221,Alla,449131,557281,4 +140222,,51104,32791,3 +140223,La gendarmette,26152,146493,16 +140224,Carl Lundbeck,340101,496470,7 +140225,Vincent Canelli,33224,13566,0 +140226,Tia (voice),145316,72754,11 +140227,Pete,179812,1088729,14 +140228,Oliver,301224,1382184,5 +140229,Jack Turner,5552,61614,10 +140230,Jean Cunningham,371462,211621,5 +140231,Anthony John,41206,29522,0 +140232,Rebecca,12855,29784,12 +140233,Burke Ramsey Auditionee / Himself,430826,1891548,57 +140234,Clerk,29805,1231983,30 +140235,Jacques de Bascher,221667,16269,3 +140236,Barb,82679,63220,8 +140237,Man Reading War Declaration Headline,108222,120199,37 +140238,Väiski,32099,53508,2 +140239,Ghost Face's first kill/Student,54503,1175310,4 +140240,Billy,26679,140902,3 +140241,Empress Catherine II of Russia,128767,50,5 +140242,Fred Durkin,175386,8729,4 +140243,Georges Herbillon,258384,237845,15 +140244,Rika Ikeuchi,41261,125948,10 +140245,Airman Filroy,53619,8331,6 +140246,Mike MacGregor,73527,43311,3 +140247,Gothic Girl,15022,1218168,36 +140248,Steve,64627,36434,3 +140249,Zoey,443053,1764363,10 +140250,Detective,104427,120704,21 +140251,FBI Agent,4982,1182724,27 +140252,Axel Nygen,34181,72912,4 +140253,Man Abandoned by Whitey,55604,34168,44 +140254,Alexander 'Alex' Kerner,338,3872,0 +140255,,327225,1432559,16 +140256,Lt. Earl D. Toland,133715,161002,11 +140257,Frank's Father,289278,79197,4 +140258,young Barbara Gordon / Batgirl,16234,15762,6 +140259,Radha,19887,927964,5 +140260,Mme d'Onneville,63224,584301,6 +140261,Elisabeth Asch-Freitag,19430,26835,4 +140262,Ann Stewart,31555,10487,3 +140263,Melanie Lubota,28480,28988,5 +140264,,38326,67320,1 +140265,Gendarm Anton (als Johannes Fretzer),119820,1071145,10 +140266,Landlady (voice),269149,1447307,31 +140267,Savannah,112161,1153536,12 +140268,Akiba,31890,77637,16 +140269,Fufumi,14525,120689,3 +140270,Alice Raymond,153162,129328,6 +140271,Party Guest,43811,1208020,33 +140272,Marie,9959,61010,12 +140273,Sita,167424,54533,0 +140274,Joon-ho,77117,1293080,16 +140275,Turkish Worker (uncredited),297762,1735654,86 +140276,Marija,382873,1279767,11 +140277,Prasus,31280,31949,7 +140278,,134215,86074,11 +140279,Barnaby Jones,447758,16273,14 +140280,Tita,80280,1602320,21 +140281,Jetty Treffz,280004,67287,1 +140282,Joe Dombrowski,42683,30553,10 +140283,Rowley Jefferson,60307,111922,3 +140284,Polina,260584,1303567,2 +140285,Harry Bosco,1825,33014,5 +140286,Mirai Yashima,39230,125285,5 +140287,,252845,24300,1 +140288,Daddy,21030,30621,5 +140289,Young Woman,80410,27593,8 +140290,Wilder,353728,549533,3 +140291,The Centre (voice),14011,65827,6 +140292,Prisoner 333,94365,1074668,12 +140293,Marie,49853,1335462,7 +140294,Nikki Chandler,70351,93746,5 +140295,The Businessman,4538,1532,3 +140296,Mila,35021,586161,8 +140297,Nonancourt,99875,1021832,5 +140298,Cafeteria Dancer,38322,1869040,34 +140299,il padre di Baracchi,43211,1014936,16 +140300,Joe the Supervisor,340275,35026,38 +140301,Ellen,82626,928330,7 +140302,Jake Miller,184710,1167735,0 +140303,Dr. Woodward,37686,114674,14 +140304,Young Eric,192023,1172458,6 +140305,Deena Jones,1125,14386,1 +140306,John Ridley,26116,67247,12 +140307,Camille Rowe,382589,1128902,4 +140308,,325428,1462257,5 +140309,Ava,362439,1466540,3 +140310,Eddie,91259,27748,5 +140311,Ashley,32395,37153,14 +140312,Genesis Shareholder (uncredited),365942,1670763,62 +140313,Herr Paradis,9572,36010,5 +140314,Mrs. Horrell,11577,31266,28 +140315,Inna Maksimovna,61966,67320,2 +140316,James Howard,52360,127520,15 +140317,MushMouth,15045,31135,2 +140318,Anabeth,38274,78805,2 +140319,Catalina,55735,15007,0 +140320,Bill Gates,186606,58528,1 +140321,Motorist,50916,30018,2 +140322,Danielle,2771,1229502,18 +140323,Elf Elder's Wife (voice),287233,35159,4 +140324,Slippery thief,32233,1164448,6 +140325,Mrs. Cole,65891,89037,5 +140326,Cornelia Van Gorder,27501,97988,2 +140327,John,85196,45634,1 +140328,Himself,23524,90227,1 +140329,Fünfter Geschworener,269165,1506043,4 +140330,Joe,130717,120701,9 +140331,Custodian,94525,1112467,0 +140332,Jasper B. Biggley,22682,83452,2 +140333,Additional Voices (voice),328111,1662456,30 +140334,Tove,48791,1114530,19 +140335,Clarence,25919,166061,1 +140336,Crew Chief,15807,30212,4 +140337,Jane Jetson (voice),17009,34178,2 +140338,Juan,125619,1293066,4 +140339,Honorable Calvin H. Blackwell,35404,30279,6 +140340,Mr Woozis,22943,30195,5 +140341,Brother Tiger,248376,1265974,15 +140342,Jed Thomasson (as Don Douglas),38460,96257,4 +140343,Sergei Boetnikov,70864,238768,6 +140344,Deputy Joe Bob Brentwood,13519,99906,23 +140345,Tiger Kid,75880,96609,1 +140346,Agito Makishima / Guyver III,197854,67471,4 +140347,Se stessa,120922,225550,14 +140348,Anthony Scarfo,190955,73381,5 +140349,Himself,105583,930709,7 +140350,Gregorio,117869,222587,2 +140351,Detective Seki,43113,87544,8 +140352,Earl Typhoon,60173,36821,3 +140353,Hélène Doulean,76198,6014,2 +140354,Bill Houston,84097,34119,2 +140355,Björn,75969,71597,15 +140356,Peter Pevensie,2454,5528,1 +140357,Doña Inês,12422,38341,1 +140358,Ray's Friend,38031,6970,24 +140359,Groom,264397,1309488,12 +140360,Drag Fan,1481,1844342,33 +140361,Charles Monroe,295723,1375729,4 +140362,Doctor Dan Proctor,42288,127631,4 +140363,Young Policeman 1,242224,1145374,15 +140364,Reporter,53870,61547,11 +140365,Sheilda Posnick (Segment 4),244117,93015,14 +140366,Los Olivos Waitress,9675,1571681,16 +140367,Audrey Villeneuve,359413,1287272,11 +140368,Lady Elizabeth Fordyke,100770,97571,0 +140369,L'ambassadeur,34280,3513,8 +140370,,20646,17282,8 +140371,Dr. Pakora,45013,1818009,21 +140372,Thijs,292035,145587,1 +140373,Sally Parker,61541,31550,0 +140374,Kathy Baughman,397717,40279,3 +140375,Nana,144111,108719,0 +140376,Michael Cavanaugh,36258,58794,2 +140377,Police Chief Martin Belman,72823,94882,6 +140378,Excavation team leader,11658,1137390,41 +140379,"Maureen ""Mo"" Simmons",16232,9780,1 +140380,Dr. Charun,63081,1062865,2 +140381,Bis,9543,54810,7 +140382,Wedding Guest,306952,1511973,30 +140383,Direttrice Carcere,379873,1875067,29 +140384,Frank,20047,179954,7 +140385,Daughter at Market (3 / 5 years old),1271,1330756,51 +140386,Frances Elliott,130900,87685,0 +140387,Sarah,291865,1362813,1 +140388,Karl Nielson,77794,38037,7 +140389,Tiffany Madison,10053,55775,1 +140390,Hiren Sanghvi,20623,85972,11 +140391,Alisha,29538,77234,1 +140392,Marco,10749,66638,3 +140393,Galina,72949,99287,2 +140394,Thor Odinson,284053,74568,0 +140395,Espinoza,333385,37149,10 +140396,Chief Fan Zhi Long,107891,1133986,4 +140397,Warden,104427,13823,20 +140398,Seaman 1st Class - Bridge,17744,1126165,12 +140399,Empress Wan,14449,1339,0 +140400,Frank,253284,63214,2 +140401,Larry Kelly,47959,16940,1 +140402,Dr. Gregory 'Greg' Lane,153165,82676,3 +140403,Cameron,20210,17401,10 +140404,Young Pawnee,55534,222562,10 +140405,Tomassian,130948,103106,5 +140406,Tony (uncredited),43790,106805,10 +140407,Annie Nicole,65509,7523,2 +140408,Jon,56596,63764,2 +140409,Ole,38769,102502,8 +140410,Red Dog,66125,1465889,6 +140411,,107916,1042759,12 +140412,Tanaka,362844,133921,8 +140413,Lou the Bartender,256962,125845,54 +140414,Dilbag Singh,12273,85874,9 +140415,Sean,298865,1228336,5 +140416,Amelia,834,12358,7 +140417,Charles 'Chuck' Anderson (as David Condon),178569,120211,6 +140418,Miranda Trewella,111960,5826,0 +140419,Austrian Secret Service Chief,73420,13345,2 +140420,Peddler,57829,1886758,12 +140421,,276123,1330008,4 +140422,Monty Oberoi,55376,88593,0 +140423,Clotilde,55700,1086695,1 +140424,Apple's Mom (voice),385372,932030,20 +140425,Farrah,253258,1175394,3 +140426,"Slim, Junk Yard Suprv.",250332,1289041,58 +140427,Coroner Eisler,11248,1075627,7 +140428,Otto,264729,1439849,11 +140429,Security guard,125490,1053294,27 +140430,Galina Ivanova,16082,15735,3 +140431,François,62684,235807,5 +140432,Brother Nan,121823,74192,13 +140433,Big Head,49199,1615007,13 +140434,Amber,222388,1326240,8 +140435,Panchito,77650,256448,6 +140436,GCU Football Player (uncredited),209112,1729055,146 +140437,Himself,212063,80742,4 +140438,Polizist,8329,54522,6 +140439,Mika,394403,22699,2 +140440,Edward R. Murrow,3291,11064,0 +140441,Martin's Mother,270886,81468,9 +140442,Colonel,421741,237511,3 +140443,Gertrude,28238,108579,2 +140444,Sophie,361571,1384924,13 +140445,Foreman,179826,1240490,27 +140446,Sailor (uncredited),10178,12298,33 +140447,Patron restaurant,85735,114711,16 +140448,Father,75244,9126,2 +140449,Townsman,377170,1276434,25 +140450,Natasha,219666,1341701,6 +140451,Blood Splat Mom,354979,1835275,60 +140452,'Rowdy' Dow,112284,854,5 +140453,Herself,4832,39654,2 +140454,Clip from 'Gigi' (archive footage),33740,112972,20 +140455,Ben Tildy,30708,199813,9 +140456,Cully Briston,85644,4774,1 +140457,Nuju,21379,82816,1 +140458,Photographer,13777,75280,34 +140459,Victor Ulman,25983,74133,3 +140460,Jun-oh,107976,68903,0 +140461,Logger,335970,1632933,24 +140462,Ross Sylibus,21769,1254113,1 +140463,Lizzy,340103,1130510,1 +140464,Shing,289720,63585,4 +140465,Fire Chief,316268,31234,9 +140466,Christiane Kerner,338,4792,1 +140467,Emily Conlee - Ghost,70636,571570,6 +140468,Jane,48885,1790536,9 +140469,Taned,33495,130870,7 +140470,Olivier Vergnaut,35025,1366182,17 +140471,Duncan,43550,129604,0 +140472,,283711,124992,4 +140473,,354296,1496448,4 +140474,Flemming,45326,45363,5 +140475,Policeman (uncredited),35852,67449,15 +140476,Man at Race Track,118889,120708,53 +140477,Bills,126963,20664,3 +140478,Geronimo,27470,97836,19 +140479,Sylvia Douglas,30993,120673,5 +140480,Inspector Pierson,42298,21510,3 +140481,Munro,75137,79648,3 +140482,Master Tigress (voice),9502,11701,2 +140483,Stage Manager,122221,85069,6 +140484,Chad Mansen,20411,86046,6 +140485,Extremis Soldier,68721,1622657,102 +140486,Student #3,13600,82149,16 +140487,Janne,366249,226030,1 +140488,Coughing Man (uncredited),2288,1402622,9 +140489,Mari Sugiura,41261,125945,6 +140490,Leo Manicucci,343934,47774,19 +140491,Daffy Duck / Porky Pig / Robber / Pirate Trick-or-Treater / Clerk / Police Dispatcher / Officer Flaherty (voice),234377,33923,1 +140492,Dr. Ernst Prell,84104,1077357,0 +140493,Martin,17622,38941,1 +140494,Himself,84318,1084974,8 +140495,Rusty Potter,41468,3442,4 +140496,Carmen,308,4431,4 +140497,jako Petro Hapyna,406449,1650373,13 +140498,Jonathan Kent,209112,1269,24 +140499,Soldier,329865,1810156,71 +140500,Anita Cunningham,31913,2207,3 +140501,,48341,1248524,5 +140502,T-Shirt Boy,375366,1886313,10 +140503,Sergeant Thomas Forbes,336004,1717267,25 +140504,The neighbour Åke,82448,928013,12 +140505,Bibi,242097,151759,11 +140506,Eugénia,32390,50,2 +140507,Eva,18238,137325,4 +140508,Raul,65795,544041,2 +140509,,71393,935420,11 +140510,Greenbaum Kid,72105,1204326,22 +140511,'Salt of the Earth',412363,1528179,16 +140512,,114108,1431399,1 +140513,Gallery,24411,90112,9 +140514,Jiang Gan,12289,1190213,18 +140515,Cafe Proprietor,184741,34208,13 +140516,Pharaoh (voice),72013,558670,9 +140517,Bogovich,277968,34383,11 +140518,Anna,31128,1611438,9 +140519,Junkie,17317,1676740,29 +140520,Chinatsu Kanzaki,223391,127220,3 +140521,Crewman (as Greenstreet),49837,142898,11 +140522,Young Oscar Madly,353728,1260011,5 +140523,Amber,26882,53938,2 +140524,Katy Dandridge,70864,563087,2 +140525,Bob,435,1215803,15 +140526,Jack,359870,1807043,19 +140527,Editor,15472,6301,29 +140528,Anthony Lawrence,55032,9208,1 +140529,Alistair MacKinnon,46513,7031,2 +140530,Asia,1665,18514,2 +140531,Nadine,8951,10916,1 +140532,Beautiful Girl,206296,1393776,11 +140533,Anwar Khan,28805,86064,5 +140534,,20646,10071,20 +140535,J.D.,156268,60949,0 +140536,"Herself, Finnish Minister of Education",352208,1609628,2 +140537,Private Doctor,4982,4892,54 +140538,Charlotte (voice),105965,22082,10 +140539,Mère de famille yacht,382591,201898,25 +140540,Rotti Largo,14353,7004,1 +140541,Jessica,9568,58045,5 +140542,Old Man - Eli,20766,3087,3 +140543,Sean Braddock,35977,14782,0 +140544,Miller,57829,88191,7 +140545,Oggy,230182,45525,7 +140546,Maria,282768,34043,1 +140547,Camille,27102,18484,3 +140548,Miitary Academy Commandant,94251,97007,15 +140549,Mr. Bennett,5421,574029,5 +140550,Bryce,334527,10689,7 +140551,Mary Cooper,294254,3127,6 +140552,Erwin Rommel,139862,8198,0 +140553,Gossiping Irish Neighbor,118134,1079576,14 +140554,Jonah,4964,21007,6 +140555,Max 'Hammer' Dubois,18722,352,3 +140556,French Heavy #1,295964,1760023,20 +140557,L'Américain,336811,4764,16 +140558,Stella Bernard,52867,4970,4 +140559,Youth,52437,1468405,29 +140560,Janitor,354979,1835272,56 +140561,Juror,18569,1422863,35 +140562,Svenja,11376,127874,9 +140563,Edie Ingram,26983,96736,11 +140564,The Bellboy (uncredited),51303,122978,7 +140565,Father McNally,87428,3085,6 +140566,Braid,4375,33723,7 +140567,Eileen O'Brien,43783,64838,1 +140568,Maria,13823,65409,7 +140569,Slava,376716,86861,2 +140570,Anne Lachaume,61361,16925,3 +140571,Vampire Hunter #2,89337,44178,10 +140572,Landlord,139463,6645,12 +140573,Wardell,48609,1538,7 +140574,Sub-Inspector Inderjeet Singh,413547,52263,2 +140575,Kate,49787,142798,1 +140576,,88273,1547787,28 +140577,Head Staff Nurse,13802,78285,34 +140578,Great-Aunt Sadie,358199,2772,5 +140579,Steve,230428,180942,2 +140580,Salon Manager,48706,1646,9 +140581,Carole,8325,3967,3 +140582,Board Member,109716,1186832,54 +140583,"Felix ""Einstein"" Winterberg",332759,66062,0 +140584,Joe Atterbury - the Harmonica Player (uncredited),75510,85778,8 +140585,Irina,184155,59900,4 +140586,Sachiko,42170,1087690,7 +140587,Rita,97797,490022,4 +140588,Dante,9900,20819,2 +140589,News Reporter,329865,83029,11 +140590,Police Chief O'Connor,285840,21091,9 +140591,,173494,1871452,6 +140592,Isä / Intiaanipäälikkö,203072,52355,2 +140593,Adult David Moran,15356,7676,8 +140594,Mudjekeewis,238985,95010,7 +140595,Turkey Post Supervisor,52454,1630312,39 +140596,Commander Cox,46020,122363,5 +140597,Michele,156547,1071456,5 +140598,Rolf,18044,102751,11 +140599,Wirt,313896,24440,4 +140600,Lilli,49853,1335463,8 +140601,Tommy,31165,7169,3 +140602,Russian Interrogator,19996,1764134,30 +140603,Xiao Yu,187022,24044,2 +140604,"Donald Lyndsay, MP",11012,10747,7 +140605,Hooker,18826,1212123,13 +140606,Rick,84226,1330,4 +140607,Colonel Driscoll,12412,61962,8 +140608,Holcomb,52395,39430,9 +140609,Karl Abraham,48231,1089484,18 +140610,Narrator (uncredited),29020,121039,2 +140611,Cook,242097,82779,12 +140612,Roberto Duran,184341,25616,1 +140613,Rebecca,75233,574245,2 +140614,Keith 'Buzzsaw' Brady,307081,1502322,13 +140615,Catherine Sloper,28571,8725,0 +140616,Gérard,285181,35077,9 +140617,Mayor,28068,31753,5 +140618,Bennington,40218,10074,6 +140619,Farmer,209032,1192408,18 +140620,Martha,2196,22811,4 +140621,Sonny,18908,119336,10 +140622,Driver,19827,56183,12 +140623,Cody,367732,231983,5 +140624,Ann Murray,244201,20366,3 +140625,Herself,175171,92900,4 +140626,Principal Keeper,26376,120818,13 +140627,Notary,228970,1495082,31 +140628,Maître Elysabeth Feldman,10795,136761,14 +140629,Aethril,10529,944870,11 +140630,Sergeant O.K. Deadhead / Sergeant Donovan,53619,22092,0 +140631,Himself,63144,1624627,24 +140632,McGruber,24709,54238,7 +140633,USSE Bridge Crew,188927,1696921,43 +140634,Goran,193893,1381388,14 +140635,Janey,224944,1210465,0 +140636,Kimi (voice),233423,78687,11 +140637,Dave King,5721,45104,5 +140638,Simbad 3 ans,329805,1650411,16 +140639,Paul Chouard,42871,40401,13 +140640,,262522,27995,11 +140641,Bill Weller,17956,15253,5 +140642,,65958,93434,7 +140643,Lucius,105210,66155,0 +140644,Mike,48587,63812,4 +140645,Sussana,211879,1104862,2 +140646,Jim Stanton (voice),16873,36422,9 +140647,Zia di Gigi,82341,232888,4 +140648,,142770,86826,7 +140649,Doctor Wu (as Wang Xueqi),68721,77303,14 +140650,Girl that sits next to Si-Eun in class,54111,118695,8 +140651,Health Inspector,343934,477074,24 +140652,Gurov,156141,93409,5 +140653,Sul,13600,2641,4 +140654,Anna,12446,1178457,17 +140655,Gen. Heinz Guderian,102155,12154,5 +140656,,214938,1199630,13 +140657,Miss Piggy / Fozzie Bear / Animal / Sam Eagle (voice),145220,97185,4 +140658,Sidney Miller,42494,121042,3 +140659,Un gardien,33436,13697,25 +140660,,390376,1626466,7 +140661,Hawaldar Sadhuram,337876,1485723,4 +140662,Fred,150736,228930,0 +140663,Party Guest,128669,1678686,23 +140664,,334651,212085,3 +140665,Yasuko,45987,108025,3 +140666,La vieille dame,337107,1458317,4 +140667,Bec Rosenberg,119213,58150,2 +140668,Louis Dainard,37686,12260,5 +140669,Geisha,315837,1848086,31 +140670,Raimundo Ramírez,84354,1061534,4 +140671,Finnerty,117251,1579,3 +140672,Tom Hutchinson,77882,51881,5 +140673,Pregnant Woman,413882,1758523,13 +140674,Sheila,374473,1243489,5 +140675,Salesgirl Olga,6557,1558649,17 +140676,Zachary Lowenstein,55725,1732210,21 +140677,Goyal / Tauji,209410,35791,1 +140678,Jared Tannenhill,235662,94421,5 +140679,Wilson,303982,550148,5 +140680,Prison Director,80389,238139,13 +140681,Blondel,58905,8729,6 +140682,Mr. Rader,54752,68108,7 +140683,Barker (uncredited),31773,14290,38 +140684,Senior Gang,376252,566375,3 +140685,Elvire Galipeau,62363,3537,2 +140686,Dr. Harding,44099,85937,7 +140687,Micky,112130,3085,3 +140688,Hashim,174645,235425,2 +140689,Přemek,74199,571467,3 +140690,Dr. Linstrum,38417,120392,6 +140691,Perry's Dad,82654,982065,7 +140692,Kathy Connors,31700,4430,0 +140693,Zoe,93856,87879,3 +140694,Louise,29111,102949,3 +140695,Toulouse,12089,24421,1 +140696,Saleslady,43155,121321,13 +140697,Policeman,169656,1726739,5 +140698,Jele,259690,1581227,9 +140699,Clown,52122,1221381,18 +140700,Saleswoman,103620,1209944,17 +140701,Ida Marangon,41110,134220,9 +140702,Morg,38048,63492,4 +140703,Steven Keaton,215579,67015,1 +140704,Stan Saldin,62132,1452741,11 +140705,,110608,1050080,7 +140706,Landem's Chauffeur / 2nd Robber,141868,1086622,7 +140707,Edith Hollander,128396,1066410,9 +140708,Emily,10739,77644,17 +140709,Reaver,263115,78890,27 +140710,Russ Underwood,63858,78852,6 +140711,Ursula Vaughan Williams,328589,47468,2 +140712,Tom,33272,110419,0 +140713,Mrs. Figgins,16410,1197504,13 +140714,Dan Mushin,141733,93646,9 +140715,Rosamaria,33107,270,3 +140716,,64736,93547,7 +140717,,37126,1415871,9 +140718,American P.O.W,227306,1394468,68 +140719,Bell Boy,214086,1653759,8 +140720,Kelsi Nielson,11887,84952,8 +140721,R / Subject #3,29151,22227,16 +140722,Patricia Parker,18214,160349,2 +140723,Osman Baba,367492,1110448,4 +140724,Norma,3405,9871,0 +140725,Loretta,184098,15899,8 +140726,Emily Ann Faulkner (Child),3081,27446,2 +140727,John Dyckman Brown II,80941,20368,5 +140728,L'inspecteur,54155,128638,15 +140729,Саша,83456,86862,3 +140730,Laurel,35052,968290,4 +140731,,189472,100667,0 +140732,Susan,263627,84270,6 +140733,Stone (voice),136368,133607,6 +140734,McGregor,75564,549060,11 +140735,Ancha,20941,1660431,4 +140736,Nurse Fay McMahon,198652,855,1 +140737,Hermes Conrad (voice),15060,31549,4 +140738,Small Boy 2,370755,1650216,16 +140739,Reggae,82519,62123,2 +140740,Daniel Winston,15794,8632,7 +140741,Allan,147829,557087,11 +140742,Hope,10041,62357,1 +140743,Richard Baines,71099,5479,3 +140744,Salva,82999,96480,3 +140745,Winston,228331,140493,9 +140746,Waldgeist Lyab,14482,1164661,5 +140747,"Gambler in ""Lucky Guy""",43522,90074,10 +140748,Lt. Albert Lussan,27003,96741,2 +140749,Sergeant,30941,1747352,42 +140750,Bellboy,56558,986341,62 +140751,Bakaro,10087,63142,14 +140752,Clips from 'Reckless' & 'Suzy' (archive footage),33740,82315,36 +140753,Léa / Naomi,14400,59373,2 +140754,Personnel,330459,1713832,46 +140755,Jeremy,10760,66538,7 +140756,The Kid,308,4451,16 +140757,Svärdslukerskan,57548,95565,3 +140758,,229134,1203576,14 +140759,Dubai Girl (uncredited),1726,970218,68 +140760,"Madame Brissard, la belle-mère acariâtre",110573,1050001,4 +140761,Red Rock,34651,100918,4 +140762,Mother,36253,103648,3 +140763,U.S. President,210940,39816,4 +140764,Karl Agathon (archive footage) (uncredited),105077,77223,31 +140765,Nishiwaki,50247,20829,11 +140766,Talon,47065,47859,8 +140767,Zhou's lover,78450,582557,2 +140768,Emily,11321,5916,1 +140769,Markevitch,139718,30272,2 +140770,Bob,119592,86566,6 +140771,Clyde,42941,134609,10 +140772,Ingrid Donnelly / Olga,89921,12820,2 +140773,Ashley,68387,41421,1 +140774,Dick Christie,11610,10555,2 +140775,Carl (voice),1267,16846,4 +140776,Mrs. Longene,30941,123633,20 +140777,Baldy Gunder,28894,34285,4 +140778,Louise,185934,111432,7 +140779,,88953,1537397,24 +140780,Chung,29352,94972,2 +140781,Berger,447236,235309,7 +140782,Andrea,195544,128015,0 +140783,Mali,75162,1563604,13 +140784,Perry White,106358,30216,4 +140785,Glorioso,31127,1055700,10 +140786,Adela,51548,145026,2 +140787,Joanno,74822,15184,9 +140788,Russian Girl,85442,1717051,26 +140789,Rosalba,68202,52605,0 +140790,Himself - Psychologist (as Dr. Gregory Cason),97724,139329,0 +140791,The Favorite of Egibi (uncredited),3059,1395652,104 +140792,Masked Woman,347630,1695663,37 +140793,Lady Julia Fish,144183,58079,9 +140794,Levon Wally,284564,1642765,9 +140795,Sarah,403330,1225045,13 +140796,Young Yaakov Washington,118397,1067718,1 +140797,Steve McGowan,8144,32673,0 +140798,Himself,344170,1647874,1 +140799,Vince,32139,108940,10 +140800,Jackie,16182,22810,14 +140801,Ira,307649,94064,1 +140802,Jackie Burke,369524,380,1 +140803,Ulysses Ford,133382,23626,8 +140804,Madam Caroline,38027,1762430,19 +140805,Rocker,20296,85730,1 +140806,Pueblerina (uncredited),198795,1066889,30 +140807,Chateau Dancer (uncredited),297762,1743575,64 +140808,Woman Skeleton 2,315855,1325675,30 +140809,News Anchor,86820,1480047,4 +140810,Batmite (voice),300424,5129,9 +140811,Herself,145220,237405,42 +140812,King Ghidorah,19545,552170,34 +140813,Sentinel Peter / Labcoat Jenny (voice),109451,1046494,11 +140814,Tom,77949,239020,3 +140815,50 Cent,137093,62644,16 +140816,"Prezenterka czołówki / Kelnerka w lokalu ""Pod Złotym Leszczem""",31856,1103822,11 +140817,John Ferguson,256347,55596,3 +140818,Nuria,264729,1439850,12 +140819,Bartender,105059,1204286,20 +140820,Marta,214138,1198776,1 +140821,,105584,103517,9 +140822,Lila,153854,1140128,0 +140823,Pancho Lopez,183827,29260,0 +140824,Mr. Bull (voice),149910,23791,9 +140825,Hannah,121662,57576,1 +140826,Rambo Weiler,377847,16811,4 +140827,Sgt delvecchio,41497,126722,1 +140828,Jackson Burke,75174,43547,5 +140829,Dream Girl (uncredited),40978,97621,19 +140830,Marshal Conrad,80320,2755,5 +140831,Doc Quillan,38807,34317,15 +140832,Myra Shelton,64725,46780,1 +140833,Helen Drood,78691,1161,1 +140834,Thijs,348320,1375712,2 +140835,Hacer'in Abisi,80961,97276,3 +140836,Tin Soldier #1,238302,1215869,12 +140837,Schnaps,82708,137791,2 +140838,Steve,31672,27166,4 +140839,Andrei Bolkonsky,149465,99311,4 +140840,Stunning Tejana,10733,180524,19 +140841,Squire Bartlett,31509,145108,3 +140842,Mr. Kelly,61550,233304,13 +140843,King,28366,100585,6 +140844,Extra,69060,1486583,18 +140845,Vincent Bugliosi,381737,1848802,15 +140846,Siv Matsson,145194,3854,1 +140847,Weert,55433,222371,4 +140848,Diamantina,191312,1171836,2 +140849,The Champ,52437,1468401,9 +140850,Lou Sr.,9956,8351,4 +140851,Fernand,8049,20670,8 +140852,Lucy Morgan,37954,85042,2 +140853,Niv Lek,140607,1256215,46 +140854,,218772,38596,1 +140855,,231009,25780,1 +140856,Ryan Brewer,32395,27104,4 +140857,Ferdinando Gerace,52808,33810,7 +140858,Marino Puzzo,199887,1180346,2 +140859,Laurent,92424,37919,9 +140860,Concert Attendee,5123,1781843,58 +140861,Prince Sancho,16638,24819,5 +140862,Chase,85350,1467923,36 +140863,Dr. Tony Verity,29398,16006,6 +140864,"Jacques Mazel, pilote d'avion, leur fils",84875,258032,5 +140865,Second Playgoer,157898,98047,31 +140866,Ted,40807,440439,18 +140867,Joan of Arc,43252,89088,1 +140868,Magistrate,257831,137035,11 +140869,Thomas Geiger,93828,18616,2 +140870,Estanislao,36785,1195525,4 +140871,Doug Van Housen,30492,26457,3 +140872,Gritzi,25330,7210,7 +140873,Howard Stark,1726,104669,28 +140874,Kruger,43205,93163,3 +140875,Saul Femm,31592,1128374,9 +140876,,131478,1199913,1 +140877,,222517,1687230,24 +140878,Sally,37534,117889,13 +140879,,269258,41594,33 +140880,Voytek Frykowski (uncredited),381737,204650,25 +140881,Carlos,264397,266,2 +140882,Marilyn Wade,28859,1743,0 +140883,Christopher Tracy,33345,21037,0 +140884,Ghoul,58664,1543532,17 +140885,Tracy,117509,98365,3 +140886,Stiefmutter,266568,2340,2 +140887,,338079,368961,6 +140888,Prince Nicholas,129553,9928,13 +140889,Hoon,279159,1335339,1 +140890,Pat,27917,97424,2 +140891,Donald,55735,159480,1 +140892,Paramedic,33788,111590,6 +140893,Reformatory Warden George Niles (uncredited),28000,96701,32 +140894,,441043,1373137,2 +140895,Giovanni E. 'Johnny' Columbo,41552,13294,0 +140896,Devin,347258,208931,3 +140897,Hargrave,30496,562312,5 +140898,Man in Montage,18651,1208020,34 +140899,Chase,323929,1423664,6 +140900,Tofu,52369,939466,6 +140901,Flight Attendant,1726,1005698,52 +140902,Niles,320588,1180698,12 +140903,Chester Underwood,108224,26160,7 +140904,Himself,125736,185862,8 +140905,Adriana,341745,235175,2 +140906,Lizzy Braakhoven,16177,211114,13 +140907,Himself,123283,856,1 +140908,Charlie,186759,85139,3 +140909,Inspector Greenham,44000,63000,2 +140910,Salbach,11142,64015,6 +140911,Peasant Who Robs Tatiana,91480,29267,9 +140912,Lloyd,13836,129661,11 +140913,Fritz,64454,13812,2 +140914,Minnie,108535,1327544,23 +140915,,26301,2518,4 +140916,Elisabeth,39358,4154,0 +140917,Little Girl (uncredited),3059,148394,88 +140918,Show Announcer,26486,113781,35 +140919,Elsa,274857,150587,26 +140920,le malade solitaire,76651,32090,10 +140921,Shala,27462,97621,3 +140922,Master Shi's daughter,108665,240164,3 +140923,Maya,323675,81364,2 +140924,Sheriff Steiner,22419,21523,4 +140925,Himself,16800,939005,21 +140926,Giles,120729,36804,5 +140927,Regan,46915,10168,5 +140928,Anita de la Vega,77650,4118,1 +140929,Kelly,8669,88620,16 +140930,Luc,170759,207601,9 +140931,Scotty Pale,13173,539,10 +140932,Norodeen,422906,3641,4 +140933,Maria,7220,20767,6 +140934,Danny,30708,119796,2 +140935,Baritone in 'Lazy Acres' Number,111470,124879,42 +140936,Jeff,94055,6678,3 +140937,Pyle,29907,141450,6 +140938,Stefan,85442,34594,8 +140939,Mary Lou,139463,1394373,7 +140940,Salis,74950,49444,5 +140941,Vito Killer,167583,1125592,10 +140942,Sid (voice),8355,5723,2 +140943,Max Hare,58159,227462,3 +140944,Sarah,376570,1331981,2 +140945,"Sonia, l'amante",142320,1779018,20 +140946,Mark Hoffman,11917,36055,1 +140947,Garbage Truck Driver,14142,84905,19 +140948,Himself,157117,95076,9 +140949,Lt. Rossini (as James Abbe),70734,1618653,18 +140950,Trouble,21338,87403,10 +140951,Mrs. Bowery,367147,427,8 +140952,Lucy Lefroy,2977,29238,11 +140953,Junior Guy,376660,1782867,18 +140954,Club Hopper #2,443007,1763917,7 +140955,Nurse Evans,43256,82615,7 +140956,Maid,174594,29958,5 +140957,Veli,258585,124285,2 +140958,Prince Goffredo,5165,1066208,10 +140959,Ben Jones,184802,196732,3 +140960,Clive,233487,1268988,7 +140961,Roz,8272,452,15 +140962,Youth,408381,1657539,7 +140963,Cindy,17956,33689,6 +140964,,191312,15601,3 +140965,Evil Tree #1 (voice),810,1335621,28 +140966,Michael Weiss,167424,23986,2 +140967,,64792,16264,4 +140968,,27276,551852,43 +140969,Greta,9084,57321,2 +140970,Amelia Bissonette,28001,20126,1 +140971,Annika and Tommy's father,11626,71356,5 +140972,Earl of Dorincourt,38602,12248,1 +140973,Dr. Austin Sloper,28571,12689,2 +140974,,104251,123852,3 +140975,Sylvain,12513,72592,5 +140976,Juan Preciado,198795,1527103,6 +140977,Joe Toy,156700,1108907,0 +140978,Hella Wuolijoki,62614,234129,0 +140979,Heavy Duty,14869,31164,7 +140980,Opaz (voice: French version),11572,2369,3 +140981,Camille,82327,126726,0 +140982,President's Assistant Jennifer,257344,60959,11 +140983,Sperm Bank Receptionist,98066,111122,21 +140984,Prem,76684,85027,1 +140985,Elise,115929,1064501,2 +140986,Turner,75564,1399612,14 +140987,Jeannie Tyne,59881,591944,2 +140988,Kramer,64084,15628,7 +140989,Pee-Wee Herman,60977,5129,0 +140990,"Sir John, Director",43882,111664,6 +140991,David,560,7645,6 +140992,Buck,42267,8262,3 +140993,Winthrop Peabody Sr.,288521,1189949,5 +140994,Rory Calvin,169869,83131,9 +140995,Angela,87908,114257,4 +140996,Pigeon Lady (voice),9928,148111,8 +140997,Mathilda,19029,36059,2 +140998,Yasaburo Himeji,141819,237323,11 +140999,Lexus,10476,45245,7 +141000,Peter Sinclaire,32868,19195,2 +141001,,18729,3635,11 +141002,Reina Ariana (Canciones),13283,1497233,16 +141003,Scientist,424600,1704676,35 +141004,,455601,60278,1 +141005,Don Cardigan,12085,12836,3 +141006,Françoise,64850,82119,3 +141007,Louie Dumbrowsky,178569,14034,2 +141008,Dave Courtney,239091,100768,0 +141009,Restaurant Patron (uncredited),41479,126913,11 +141010,Little boy,339408,1488909,30 +141011,High Lama (voice),13354,20904,5 +141012,Monje,362178,1549535,6 +141013,Bond Trader #4,30361,80245,12 +141014,Joven Periodista,31299,1570840,16 +141015,Fisk Senior,18117,11390,3 +141016,Putty Nose,17687,120537,8 +141017,Mako,40029,1141872,4 +141018,Dr. Claire Landis,359471,1009275,17 +141019,,4266,35878,10 +141020,Jack Oberman,85009,8608,8 +141021,Doctor,9274,1499656,9 +141022,Joanne,24469,8309,2 +141023,Elvira,82481,1127393,28 +141024,Chili Palmer,4551,8891,0 +141025,American General,19996,1445346,19 +141026,,415358,232535,5 +141027,Dutour,41211,544566,7 +141028,Ethan,242090,45407,0 +141029,Christine,8383,22703,4 +141030,Filippi,62397,1699706,18 +141031,Coach Towers (as Major Raymond G. Moses U.S.A.),67531,1150483,6 +141032,Gap-sun,65881,1296075,4 +141033,Shop owner,33253,1098342,2 +141034,innkeeper,50196,1074082,6 +141035,La Tabaccaia,82341,933330,8 +141036,Madame Bernard,70734,1618644,5 +141037,Matt,8998,19974,5 +141038,Sandor,301876,649,8 +141039,Quick Kick,17421,60851,9 +141040,Paramedic #1,300187,1380019,13 +141041,Riff,21141,101243,4 +141042,Joe Kellerson,32684,11033,3 +141043,Tim Horn,14554,29313,6 +141044,Bennie,29101,28896,0 +141045,Chi-Raq,340275,36811,1 +141046,Marco,128657,1087670,13 +141047,Dancer,11172,1276887,35 +141048,Alexa Cooper,302042,1323878,2 +141049,Ellen,7088,51936,1 +141050,Boy,31915,1394109,10 +141051,Sophie,243683,73410,9 +141052,Sorority Girl,77930,1375147,63 +141053,Principal Hersch,11058,40385,7 +141054,Vaquero,18447,1838853,14 +141055,"Magdalena, Szymons Ehefrau",226693,45659,5 +141056,Al Petalis,10145,6906,7 +141057,Dennis Pearson,60759,101720,3 +141058,Spooky Man,115023,1079955,9 +141059,Sarah,359471,1180941,14 +141060,Silent Ray Harris,322,4012,10 +141061,Jimmy Lait,63340,4774,0 +141062,Vera Keller,189197,31383,9 +141063,Sayo Kashima,2487,25465,4 +141064,Antonio Carrera,21062,112949,0 +141065,Danny Fuller,27036,64212,2 +141066,Abuzer,197297,143304,5 +141067,Dobrynya Nikitich (voice),33534,110848,5 +141068,Anna,74661,572284,3 +141069,Xavier,183015,136195,4 +141070,Per Jensen,16016,42095,0 +141071,Ramona,166262,124625,8 +141072,Frank Allen,36334,39816,3 +141073,Sylvia,364379,1523857,4 +141074,Loud Drunk at Paper Doll Club,25551,29579,11 +141075,,43976,234408,7 +141076,,8014,1084911,8 +141077,Detective Chief,188468,89729,18 +141078,Doctor (uncredited),156700,1739418,45 +141079,Armed Townsman (uncredited),59882,975306,10 +141080,Deputy,75315,95949,44 +141081,Martha Douglas,113525,6587,2 +141082,Flavia,406992,520615,8 +141083,Woo-Jin,338729,1141056,2 +141084,,97088,6261,7 +141085,Julia,57209,225684,5 +141086,Goetz Hildebrand,12696,49795,3 +141087,Servant,24973,1462194,50 +141088,Subject #40,29151,21127,15 +141089,Gustaw Kramer,56078,88536,1 +141090,Himself (uncredited),44123,31309,3 +141091,Judge Pendergast,245906,6168,7 +141092,Charlie Dick,42045,228,1 +141093,Wild Boar (voice),91673,236836,1 +141094,Thérèse,148327,944416,6 +141095,Marty Madison,1125,2047,3 +141096,Taxi Driver,2288,23607,5 +141097,Ramona,2132,13924,4 +141098,The Lover / The Artist,47310,138390,1 +141099,Singer in Brox Sisters Trio,229221,1427100,12 +141100,Soldier #3,82654,1676052,10 +141101,Joseph,17306,1179076,15 +141102,Bill,68629,15864,2 +141103,Judge Blaidsell,243568,1329373,10 +141104,School Band Member,10748,1157690,30 +141105,Tom Scavelli,30996,1547062,6 +141106,Barilli - Seven-Up,32080,6565,4 +141107,911 Operator,85414,149665,4 +141108,Willie Thorne,377516,1651872,10 +141109,Annie Jo,28303,16182,9 +141110,Train Passenger,56154,1556234,35 +141111,Brad Sheridan,239519,7124,0 +141112,Mud,103731,10297,0 +141113,Cooper,304372,58461,26 +141114,Herself (Voice),383914,236631,2 +141115,Marc,361571,18178,4 +141116,Sheila Winthrop,28658,33741,1 +141117,Young Heinrich Himmler (voice),267310,1451456,7 +141118,Xie Tianfu,62071,244354,6 +141119,-,29128,102947,11 +141120,Himself,172004,21833,8 +141121,Ray Brock,5638,14542,2 +141122,Uncle,10362,1758909,44 +141123,Clio,3556,32784,1 +141124,Specialty Dancer,18283,24880,14 +141125,Marcella,217648,230671,4 +141126,,229134,1263761,15 +141127,Commissioner Latham,103168,50837,6 +141128,CIA Agent,177677,1562098,50 +141129,Cafeteria Girl #1,38322,1212539,21 +141130,Police Officer,3146,30475,7 +141131,Student Fan,30411,97621,16 +141132,Minor Role,43833,1462628,37 +141133,Girl at Market,1271,1177458,52 +141134,Brita,87654,227270,6 +141135,Glader,198663,1415436,32 +141136,Officier,258384,1367881,16 +141137,Trujillo,101006,1801267,2 +141138,Oracle,19350,60606,13 +141139,"Shinzaemon, Oharu's Father",43364,134263,2 +141140,Judge (uncredited),15794,105025,53 +141141,Lou Gehrig,61225,157015,5 +141142,Stevie Olivares,71120,929435,4 +141143,Scratchy / Mr. Burns / Rev. Lovejoy / Ned Flanders / Lenny / Skull / President Arnold Schwarzenegger / Kent Brockman / Principal Skinner / Dr. Hibbert / Smithers / Toll Booth Man / Guard / Otto / Kang (voice),35,6008,5 +141144,Grandma Josephine,118,52313,16 +141145,Jonathan Harris,44631,1171862,14 +141146,Cousin Itt,107596,33853,15 +141147,Mike Rice,57103,10020,1 +141148,ACP Uday Yadav,20623,1095287,12 +141149,Peter,44936,131763,0 +141150,Aggy,348389,97576,1 +141151,Makhotin,96724,137905,16 +141152,President's Secretary (uncredited),112284,948509,20 +141153,Abusama,98203,56256,9 +141154,Oficer Polityczny,25667,1097126,5 +141155,Officer Richard Lymangood,6341,11511,3 +141156,Head Judge,205584,27752,14 +141157,Jennifer Ross,31150,107780,0 +141158,Mikica Arsenijevic 'Balerina',255647,1050786,18 +141159,"Tsuma, Yasuko",46492,136381,4 +141160,Zilov,72949,128285,0 +141161,Sully,343921,1274510,5 +141162,Sam Toovey,16182,71949,1 +141163,Train Waiter,206647,1363060,68 +141164,Colour Sgt. Muir,45562,27323,8 +141165,Himself,256561,1296896,6 +141166,Daniel,1640,454,3 +141167,Amar,38022,85458,0 +141168,Jeanne,136582,68816,2 +141169,Señora recomendando caldo de zopilote. (uncredited),122019,1514445,21 +141170,Sappho,175339,100051,0 +141171,Donald Sinclaire,32868,18999,3 +141172,,49106,141641,11 +141173,Bag Lady,9899,60142,15 +141174,Lee Jang-Hwan,296633,1293080,1 +141175,Manny Arnold,28564,96058,11 +141176,Franz Paccoli,79362,48087,5 +141177,Dan Woolf,2288,9642,1 +141178,'The Greek' Wiseguy,297853,592016,39 +141179,Shellie / Delphine,13285,74370,12 +141180,Lt. Alex Dinardo,85009,29718,0 +141181,Troy Bolton,10947,29222,0 +141182,Iraqi Man in Car,424488,1681449,37 +141183,Adele Matthews,150338,3830,2 +141184,Enormous Orphan,51247,1229040,14 +141185,Tina,2830,28639,7 +141186,Young Woman,38237,1316380,5 +141187,Emile (voice),77459,1820910,7 +141188,Williams,44631,106101,10 +141189,Bernard Shaw,28730,21505,8 +141190,Joey's Family Member,356752,1841506,27 +141191,Mr. Wiener,13073,76764,2 +141192,Coach Malone,60307,111931,14 +141193,Ayushman Thakur,228355,85676,3 +141194,,85729,238693,10 +141195,Himself,145154,1122375,2 +141196,jako Antek Wilk,406449,1650374,4 +141197,"Mr. Blake, Fred's Father",248639,80236,6 +141198,The woman,662,9961,1 +141199,Addy,245891,1222298,17 +141200,Simone Hanot,270024,1319926,4 +141201,Customs Officer,240832,139168,21 +141202,Nicole,74950,112950,0 +141203,Don Yeyo,20941,1723689,21 +141204,Peter Cooper,45156,71530,2 +141205,Miss Nancy Montague,104067,100040,2 +141206,Moving Man,118889,133342,36 +141207,The Snake / Cat (voice),86700,49734,0 +141208,Johannes Smeds,61121,125585,1 +141209,Chirkoff,38322,2220,13 +141210,Hotel Manager,34151,42568,10 +141211,Bishop,10916,98950,8 +141212,,289679,1358893,10 +141213,Doctor Running Away (uncredited),44943,1205901,52 +141214,Emiliano,302802,1385137,2 +141215,Carmen Ramos,38874,955,0 +141216,James Gralton,262958,1307013,0 +141217,Officer LoveJoy,267931,130024,4 +141218,Lana,52736,74352,5 +141219,Logan,384737,1585216,8 +141220,Geronimo,37292,1229431,9 +141221,Brad,241855,1335207,8 +141222,May Conner,369524,9599,8 +141223,Det. Sgt. Mitchell,37929,75394,19 +141224,Mandakini (Manda),35790,1197448,4 +141225,Moreau,27061,3831,3 +141226,Иона,409082,13706,4 +141227,Herself,27637,1724691,27 +141228,They China Food! Waitress,75761,1769871,25 +141229,Ami Rantanen,186292,1364492,2 +141230,Kirk Otto,28115,3339,4 +141231,Rancher,37292,70990,4 +141232,Airman Lucy Turner,53619,148603,1 +141233,Xeno,31131,3785,2 +141234,Madhusudan Patil,86279,85589,2 +141235,Chief Justice Hayes,332079,33278,9 +141236,Gudrun,43912,135176,5 +141237,Von Darnstadt,109716,1427103,78 +141238,Sadie,31835,35504,7 +141239,Sean Jones,326,60005,3 +141240,Boris / Hardik,191562,35747,1 +141241,Sibella Dracula,13350,19548,3 +141242,Marshall,109439,1230,5 +141243,Convention Attendee,37315,1191818,10 +141244,Louis Cabanel,204768,24629,7 +141245,Officer Scotty,397422,211800,8 +141246,,64736,86636,6 +141247,Joy,13689,20189,2 +141248,"Dr. Clinton Forrest, Jr.",124115,11998,6 +141249,Necati,41187,115011,2 +141250,Small Boat Captain (uncredited),80771,1023934,19 +141251,Jean,381255,6554,1 +141252,Michael Garibaldi,10916,52301,1 +141253,Ian Macdonald,189682,14485,1 +141254,Guardia Civil,100270,28511,1 +141255,Comandante John Walesa,95536,6949,3 +141256,Dr. Clark,176627,590550,12 +141257,Big Henry,42703,153501,16 +141258,Stiv Bators,111479,21180,6 +141259,John Wraith / Kestrel,2080,82092,5 +141260,Booley,97767,133207,3 +141261,Ned Moore,36375,93624,15 +141262,Syndicate Chairman,43046,50574,8 +141263,Brenda,139455,88902,4 +141264,Nate,72710,71913,34 +141265,Thomas Wayne,209112,47296,45 +141266,Roman,16022,6564,24 +141267,Robert French,42669,13358,10 +141268,Sarah,18392,42558,5 +141269,Andrew,16022,886,27 +141270,Patricia Krenwinkel,381737,1848800,6 +141271,Dorky Geek,52736,1081815,12 +141272,Payaso,93511,1231304,14 +141273,Emily Foster,32921,94850,2 +141274,Cynthia,344906,1367946,16 +141275,Mrs. Abby Frazer,32634,30552,10 +141276,urologo,40817,124682,15 +141277,Samantha,52741,55277,2 +141278,Claire's Friend,16523,1575431,16 +141279,Harry Fabian,36288,380,0 +141280,Herself,15258,105788,41 +141281,Conti,295964,7030,14 +141282,Michelle,351065,55833,2 +141283,Motorcycle Cop,45431,550900,15 +141284,,38034,1134502,8 +141285,Bob,33563,68842,3 +141286,Mina von Kraft,91380,5793,2 +141287,Eugenia,374247,1404416,3 +141288,Professor Brett Fletcher,45211,14276,1 +141289,Townsman,55604,1152705,38 +141290,Ubermortal Vocals (voice),1271,1077782,80 +141291,Stephanie,10761,66555,7 +141292,Paulo Small,45013,1215144,14 +141293,Isaac Shepherd,326045,206405,5 +141294,Angus Haggart / Volunteer #2,12902,31549,7 +141295,Tori Jensen,45675,112327,2 +141296,Ramona,330171,954,3 +141297,Jenny,335872,1052112,6 +141298,Herself,306598,1643330,2 +141299,Esther,17347,87676,2 +141300,Alex,198130,146718,0 +141301,,37603,86870,5 +141302,,165534,204238,0 +141303,Howard Loftus,29542,976457,9 +141304,Tito Beppi,27507,14481,0 +141305,Jon,10529,934136,15 +141306,Policeman,250535,1228665,15 +141307,Ens. Barney Harding,10178,41720,13 +141308,Mrs. Nancy Harrison,53864,30233,3 +141309,Oscar of the Waldorf (uncredited),16442,120708,74 +141310,Welfare Benefits Advisor,374473,1650250,17 +141311,Martin Chatfield,183171,84230,4 +141312,Krabbeke Slijk,12135,1165551,9 +141313,"Don Beaulieu, age 10",23178,20220,7 +141314,Mr. Savaka,102841,14064,10 +141315,Soldier Vesklin (voice),16866,82806,8 +141316,Charlie Bowdre,11577,1270,22 +141317,Rui,12221,73754,1 +141318,Germán,33273,116082,4 +141319,Randy,14874,52514,9 +141320,Maata,47226,1546416,2 +141321,Bastien Paolini,37645,1376844,26 +141322,Holly,7980,63676,10 +141323,Angela,157919,41421,0 +141324,Shopper (uncredited),213681,1771592,65 +141325,Vivian Daniels,394822,1865731,7 +141326,John,75761,110909,1 +141327,Maggie,1922,19995,0 +141328,Zwölfter Geschworener,269165,49433,11 +141329,Narrator,86520,97629,4 +141330,James Strang,21893,29528,1 +141331,,75018,9979,3 +141332,Capt. Mantelli,43142,133738,13 +141333,Mrs. Weston,146313,225865,10 +141334,Marjorie Byrne,30014,2021,1 +141335,Lisa Lynch,337549,110080,0 +141336,,289278,135695,12 +141337,Adan Äiti,40660,124261,4 +141338,Thak,424661,84222,3 +141339,Subha Srinivasan,86718,85883,1 +141340,Marchand,242683,100588,8 +141341,Grandpa Foster,59962,59179,13 +141342,Junkie's Girlfriend,78691,1782966,27 +141343,Digna,49920,61084,1 +141344,Detective,64084,151232,9 +141345,Rover,387999,1504537,5 +141346,E Sa,39907,57209,4 +141347,Vanessa,347630,1624501,32 +141348,Rhea Prakash,4253,35776,0 +141349,Bridgett,157424,210573,7 +141350,Harry,27470,7332,13 +141351,Il persuasore,110447,72786,9 +141352,Cop at Police Station,78691,1802970,16 +141353,Hsiao Hsien,147590,68557,2 +141354,Jack Roth,71825,2641,1 +141355,Professor Ezeka,209401,1693761,14 +141356,Jenny Carden,65777,45466,1 +141357,Son Goku,39101,90496,3 +141358,Himself,21671,199445,9 +141359,Halloween Reveler,419459,1371018,12 +141360,Sophie,256924,549981,6 +141361,Halvard Solness,268536,12900,1 +141362,Mr. Hobart,142216,99829,7 +141363,Sara,395767,128748,4 +141364,Kokeszko,8211,54073,2 +141365,Gas Station Attendant,31445,94897,19 +141366,Shill,33642,131285,2 +141367,Jürgens,7210,44366,11 +141368,Mulher do Supermercado,248543,637852,10 +141369,Santini,142320,1024806,8 +141370,Ku Hsin-Chuan,25074,121394,7 +141371,(uncredited),145481,240203,18 +141372,Indian Clerk,237584,1544812,29 +141373,Christopher Rose,196359,7166,2 +141374,Ashley Newell,119738,992374,8 +141375,Lisa,73565,152523,8 +141376,Female Victim #1,33005,550398,13 +141377,Club Singer,99859,19995,7 +141378,,369373,1228245,3 +141379,Hank Fairbanks,264080,50967,8 +141380,Mathias,343878,1475414,1 +141381,Camille Lansing,31899,219054,8 +141382,Chesty,126083,1271944,9 +141383,Marie,76543,209488,5 +141384,Hanna Kajaste,141971,108473,7 +141385,,57701,128719,11 +141386,la signora Ottavia,315319,1510630,35 +141387,Asia,53805,124623,2 +141388,Henry,59006,143425,12 +141389,Mitya,79611,562730,2 +141390,Arlie,107319,100603,2 +141391,Barnes,220674,1206337,7 +141392,Kim Mi-hee,64792,1256494,5 +141393,Herself,14770,86395,5 +141394,Linda,50647,4491,1 +141395,Kingugidora,36247,1135826,4 +141396,Geli,210913,231820,10 +141397,Data Ocean,179105,205345,0 +141398,Mildred,99767,1359100,8 +141399,El Caribe Party Patron,2001,118641,91 +141400,Blanca Juarez,45013,3627,5 +141401,Cody Hines,82929,199298,2 +141402,Boa (voice),79853,1082610,0 +141403,Psychiatrist,338767,1463028,7 +141404,Julie,68822,7568,7 +141405,Mark,26518,95604,0 +141406,Redhead,63281,238693,8 +141407,Harry Compton,55604,2495,5 +141408,Himself,15258,545857,97 +141409,Donald Middleton,43895,20501,1 +141410,Old Man Peterson,16066,79131,10 +141411,Himself,15258,88450,48 +141412,Pirate / Indian,273106,1519568,23 +141413,,305147,147268,2 +141414,Hauptmann Karpow,82708,13737,7 +141415,,44933,1853766,15 +141416,Kay Bentley,179066,31550,0 +141417,Savin,68721,18473,7 +141418,Leningrad Cowboy,30366,1076421,0 +141419,Julian,107811,183066,8 +141420,George Shapely,59142,1231325,2 +141421,Wojciech Winkler (age 12),36402,574071,3 +141422,Theo Wilkins,64605,13566,0 +141423,Küchenchef Krohn,379019,25435,4 +141424,Robespierre (voice),82703,12071,14 +141425,Theissen,41619,130449,13 +141426,Lyle,158870,239107,0 +141427,,27276,551863,54 +141428,Turpin,105059,151547,17 +141429,Le serrurier,85429,16873,18 +141430,Liu Jin Yi,10703,237256,9 +141431,Tiffany's Dad,13374,178068,10 +141432,Anne Leslie,108812,3360,1 +141433,Lo psicologo,43571,129620,3 +141434,Boy,43812,30222,81 +141435,Tsireya,76600,1896363,17 +141436,Geo,185354,2807,1 +141437,Pittsy,13056,7013,8 +141438,Baljeet Rai (voice),71689,1214403,10 +141439,Pixel,24273,5915,1 +141440,King Quilok,16999,81136,7 +141441,Kindly Neighbor (uncredited),3059,139240,92 +141442,Agent Phil Coulson,1726,9048,8 +141443,Himself,114577,88059,8 +141444,Grace,83430,683,0 +141445,Power Line Repairman,25241,1765275,19 +141446,Policeman (uncredited),61151,90074,12 +141447,Vladimir,104427,13821,4 +141448,Svetko,75969,1524919,50 +141449,Kellner,150056,71597,10 +141450,Philip Gascon,16428,12688,4 +141451,Henderson (as Robert Emmet O'Connor),37719,10806,8 +141452,Captain of the William Brown,43419,30212,4 +141453,Chung Chun-tao / Ah Tao,91186,87840,1 +141454,Ma Anders,38808,153266,8 +141455,Talon (voice),321528,23958,5 +141456,,266782,206,13 +141457,Eric Reisner / Little Nobody,337339,928572,12 +141458,Tony Stark / Iron Man / Ultron,14613,71535,5 +141459,Elaine,9959,61017,17 +141460,France,62675,1433383,14 +141461,Maria,25598,3124,2 +141462,Assistant Commissioner Wong Kai Fat (as Hui Shiu Hung),45303,63582,3 +141463,Gye-hwa's mother,321191,496937,8 +141464,Tyrone - Detention Kid,2976,1752335,60 +141465,Betty Ross,1724,882,1 +141466,Vera,133523,576270,1 +141467,Father,332567,16841,4 +141468,"Agnes, junge Frau in Auschwitz",167424,144344,8 +141469,Festival Panelist,65509,61069,9 +141470,Marhakereskedő,63625,1259963,11 +141471,Katrin's Mother,352890,7161,7 +141472,Neng,40127,1331695,6 +141473,Renegade Worker,91679,1782595,38 +141474,,196469,6784,5 +141475,,45935,1407127,11 +141476,Molly,12536,15746,3 +141477,Fat Man,310137,1541161,8 +141478,Sadler,56709,522,1 +141479,La petite fille,258384,1146133,30 +141480,Tony,155341,1242151,2 +141481,Conroy,179603,1088898,10 +141482,Limehouse Roustabout,52859,1427105,30 +141483,Hotel Manager,31899,29263,10 +141484,Mulloy,177203,2449,4 +141485,Richard Kingman,43241,98458,5 +141486,Trudy,381518,1361414,16 +141487,Lieutenant,52358,33022,10 +141488,Charlie McCready,46667,108984,0 +141489,Polly,110588,1050031,7 +141490,Emmerrich Johnson,29100,34497,3 +141491,Mo 'Silvertongue' Folchart,2309,18269,0 +141492,Turkiyyeh,157843,1907174,36 +141493,Katrin,197175,26330,4 +141494,Camille,377853,1480403,20 +141495,Gerry Bennett,38761,7302,1 +141496,Angles Carson,186268,46418,3 +141497,Lin Mu,41378,1615354,13 +141498,Javier,339362,989603,11 +141499,Teano,13058,1589682,36 +141500,Giselle,58,2452,27 +141501,,252059,1459887,2 +141502,Thief #1,335778,1180134,26 +141503,Club Patron,10362,1639432,42 +141504,Béatrice,64225,1034731,3 +141505,Tommy Sinito,51209,227233,23 +141506,Xiahou Jun,12289,1299620,21 +141507,Eiji's father,36075,1180043,5 +141508,Himself,140554,37408,9 +141509,French Peasant (voice),82703,36821,27 +141510,Francine - Hooker,43117,141597,5 +141511,Himself,271718,179512,22 +141512,Smiling Pallbearer,328589,1529370,27 +141513,Marvin,200505,14721,15 +141514,Gary Crosby,285400,83434,8 +141515,,22701,1024336,12 +141516,Eva,303636,1831209,13 +141517,la grand-mère de Mélanie,17630,36513,5 +141518,Beast / Prince (voice),81604,128298,8 +141519,Lea,306555,235532,6 +141520,Himself,144680,229077,8 +141521,Cindy,274479,93015,10 +141522,Hotel Receptionist,80596,67615,26 +141523,Capt. Budlowe,227717,35847,7 +141524,Rich,270851,162610,6 +141525,Conor,276401,5530,0 +141526,Joe,52122,153537,8 +141527,DDA William Beachum,6145,30614,1 +141528,Samurai Ensemble,616,1593827,46 +141529,Abby,224251,196707,4 +141530,operaio con mignolo fasciato,107052,1854449,14 +141531,Comanche Lance Bearer (uncredited),1673,18584,7 +141532,Morozik,83444,728828,7 +141533,Family doctor,19398,41357,26 +141534,Kyriakos,374021,932888,2 +141535,Tall Man - a Detective,27114,124855,19 +141536,First Policeman in Bank,33472,3262,11 +141537,Sebascki,86647,44411,9 +141538,Harry,103014,113930,7 +141539,Louis,285858,66608,10 +141540,Gena,31162,928474,14 +141541,Bo,117942,1628378,20 +141542,Trent,6557,1214403,7 +141543,,252096,1287371,3 +141544,Rich Charleton,8080,9464,3 +141545,,86647,1640660,12 +141546,Chugs,26688,79793,10 +141547,Sarah,10033,62251,16 +141548,Dr. Tom Melby,87516,5296,11 +141549,Joan,268174,35232,4 +141550,Cabe Attucks,2966,31164,8 +141551,Slobs,10476,1560860,10 +141552,Ela mesma,448763,1694022,33 +141553,Aaron Berg,245169,1166834,5 +141554,Ludva,36919,137077,6 +141555,Andy,63360,205534,12 +141556,Oona,39545,66745,0 +141557,Darren Muluski,412209,1677239,2 +141558,Joe Meek,26796,96279,0 +141559,Maternity Nurse,52437,153266,30 +141560,Dyrektor więzienia,91691,2831,1 +141561,Louanne,166621,595213,0 +141562,,141635,1272256,5 +141563,Beer Pong Guy,85350,1467963,49 +141564,Carlos,339362,1436886,14 +141565,Mark Miller,42187,190626,10 +141566,Namikawa's Associate,19545,1059891,12 +141567,Roy,44669,94337,7 +141568,Maður í staur 2,115712,1130814,4 +141569,Chandramukhi,96147,1003360,8 +141570,,354296,1496447,2 +141571,Dazey,1481,77335,3 +141572,Scientist,28340,1795340,21 +141573,Feri,190341,1580367,6 +141574,Emmeline--As A Child,228074,1039355,5 +141575,The Joker (voice),17074,2,6 +141576,,422005,124873,5 +141577,"Lou Forbes, Farrell's Assistant",25633,15744,8 +141578,Tong Lai Yu,25655,63582,18 +141579,,330418,584461,12 +141580,Male Cop,369894,1275806,14 +141581,Doctor,173294,174398,20 +141582,Amiga de Katrina 3,448763,1848659,24 +141583,Giana O'Neill,105077,40376,8 +141584,Quentin,1969,18324,3 +141585,Don Corrasco,58402,3090,1 +141586,Darcy,288281,11148,0 +141587,Ana,445993,1656659,3 +141588,Yan,338421,74193,9 +141589,kusk,41764,91454,34 +141590,Hélène,34840,269903,5 +141591,Himself,63144,1624612,6 +141592,Seargent Mark,110552,57208,1 +141593,Welcome to the 60's Dancer,2976,1752792,135 +141594,Iscovich,13836,1367112,36 +141595,Sally Fleming,11012,67798,5 +141596,Driver / Wedding Guest,268920,1413402,87 +141597,Aunt Mimi,184741,30214,7 +141598,Kochanka kuriera,314371,1583946,21 +141599,Japanese Anchorman,5172,1104811,46 +141600,Soldier 1,434873,1904094,9 +141601,Salesgirl,67018,103192,2 +141602,Henry,59115,84815,2 +141603,David Parton,426670,1548299,13 +141604,Jose Fontarosa,37645,134216,24 +141605,Jim,75101,1523983,1 +141606,Warrior,32657,1519437,82 +141607,Dando's sister,24424,132114,11 +141608,,42441,1223739,12 +141609,Miss Thompson,88075,34268,9 +141610,,84508,136359,9 +141611,Charwoman,76380,1543183,13 +141612,Mädchen Dorfschule,61035,1445784,27 +141613,Jill Bateman,47386,138772,5 +141614,Drug Dealer,4982,1193142,63 +141615,Silas,57680,10939,6 +141616,O'Dowd,174751,19277,7 +141617,Jusse,89330,226954,3 +141618,Simone,31993,1287296,5 +141619,Major,4529,5797,7 +141620,,79678,82141,2 +141621,Toshiko Kenmochi,43095,554325,2 +141622,Skate Kid,41574,108168,18 +141623,Guard,61908,120200,16 +141624,Jin's ex-lover,8652,1145852,4 +141625,Dom,89287,42741,0 +141626,Moses,95015,1463216,3 +141627,Cocoanut Grove Vocalist #3,2567,218947,30 +141628,Bertha,133382,4810,7 +141629,Lila,413992,17606,3 +141630,Miami,186268,93623,5 +141631,Reverend Moon,24777,93310,3 +141632,Astronomer,104700,11523,0 +141633,Ravani,31264,136410,7 +141634,Gustav,51141,558175,7 +141635,Dan White,10139,16851,3 +141636,Beaumagnan,11540,16923,3 +141637,Mrs. Greenleaf,88288,2640,6 +141638,Fedor's Son,319092,1890100,3 +141639,Himself,145154,114831,5 +141640,(uncredited),29259,1448493,9 +141641,Lady Minster,241374,1180034,7 +141642,Sid,37929,119130,0 +141643,Chauffeur,42206,32863,5 +141644,Paul Ratier,329718,145121,3 +141645,Elisabeth Reimann,265432,49047,6 +141646,Capt. Hendrickson,16090,14978,5 +141647,Regan,293863,20188,6 +141648,Mr. Frye - School Principal,178587,179398,8 +141649,Scooby-Doo / Scrappy-Doo,37211,16422,0 +141650,Lucien Dancret,76651,150603,1 +141651,Himself,453053,5953,10 +141652,Skyler,426230,210695,13 +141653,Caesar,276935,1325622,5 +141654,Robert S. Levitt,61168,14409,2 +141655,Fairview Motel Manager (uncredited),43049,2101,10 +141656,Father,16791,15739,2 +141657,Le commandant Gilles,56589,73445,4 +141658,,172457,1599150,11 +141659,Rubio,274857,1014931,6 +141660,Aristote,79728,76858,2 +141661,Medical Director,51571,16766,7 +141662,Cardinal Berchet,356296,7037,9 +141663,Belle Starr,259975,43975,1 +141664,Nisha,290762,1251463,9 +141665,Rough,62143,10596,22 +141666,Vampiress,218784,1313564,14 +141667,Forense,332872,1023096,18 +141668,Additional Voices (voice),49013,7879,41 +141669,Man at Race Track,118889,32193,31 +141670,,118794,1125697,1 +141671,,133783,1150872,7 +141672,Lo’ak,76600,1663672,12 +141673,Tijuana Fight Promoter,312221,1746878,29 +141674,Chard Davies,14977,83861,4 +141675,Lt. Franken,19661,98797,11 +141676,Old Butler / Cop,50775,148036,5 +141677,Ring Girl,332979,1643248,12 +141678,Officer Murphy,27414,987934,26 +141679,The BFG,267935,40900,1 +141680,Himself,83587,1137448,14 +141681,Speedy,257907,593759,11 +141682,Evie,39978,10262,4 +141683,Roy Sturges,86472,42844,13 +141684,Himself,55225,1593230,1 +141685,Mickey King,28131,3895,0 +141686,Brig,45875,134069,8 +141687,Ray Boone,29979,51539,4 +141688,Juez,110001,24979,22 +141689,Ben,70585,3492,0 +141690,Heinrich,109716,1533162,46 +141691,Pyramus,2349,24069,18 +141692,Himself,26486,3203,41 +141693,Willie Benton,290379,2928,10 +141694,,38289,118499,6 +141695,Father of Maria II,11799,557983,13 +141696,Eloisa,317168,1464662,2 +141697,Bektman,423988,43720,7 +141698,Kathy Martinez,44943,1188048,62 +141699,Sauls Diener,2734,27667,45 +141700,,116312,37512,24 +141701,Arnie Blondestone,75761,13242,2 +141702,Wachmann der Sowjetarmee,167330,1323642,15 +141703,Eduards Andersons,144331,1192366,5 +141704,Woman in bar,8270,54214,19 +141705,Keaton,213095,36913,0 +141706,Hotel Guest in Hallway,169355,1157004,20 +141707,,19812,77536,13 +141708,Detective Joey Cullen,331962,124909,13 +141709,,386100,1323642,14 +141710,PJ No. 2,193756,1283065,45 +141711,Maria's friend,12811,1827453,12 +141712,Donald,277688,6719,2 +141713,Elisa,191312,1171835,0 +141714,,228407,1345986,3 +141715,Kerkerwache,9803,57852,16 +141716,Marion,39545,10080,4 +141717,The Gentleman,98065,1136482,1 +141718,Russian Rocket Crewperson,9080,25308,7 +141719,Hyun-sook,257331,1304595,0 +141720,West Indies Club Patron,14589,115995,24 +141721,June Tolliver,76094,528,0 +141722,Christina Weber,324408,33041,2 +141723,,194853,1175188,2 +141724,Dave,127728,1085653,1 +141725,Girl Student,16320,80431,21 +141726,"First wife (segment ""Kurokami"")",30959,85307,0 +141727,John Walsh,76468,36170,0 +141728,Burn (voice),77950,52792,7 +141729,Agatha,300690,1427681,5 +141730,Assistant commissioner,130948,1019919,8 +141731,Justin,209244,209125,21 +141732,Havaldar Sakharam,192573,1295924,4 +141733,Emmanuelle,28209,35319,0 +141734,Himself - Interviewee,318224,37203,1 +141735,Kitty Brady,51947,5826,4 +141736,Kid #1,147939,1127749,5 +141737,Miss Thorn,13600,82150,17 +141738,Ådne,171648,76920,1 +141739,Himself,18893,938983,7 +141740,Police Sgt. Farley,54139,9596,11 +141741,Ricardo Treviño,56601,1028870,7 +141742,Private (voice),10527,12097,14 +141743,The husband,43773,1193558,1 +141744,Genevieve,8071,146532,3 +141745,Indian Student in Boardinghouse (uncredited),52440,32195,43 +141746,"Dr. Heim (segment 2 ""Terror Over Hollywood"")",41035,63000,12 +141747,Nicki / Prince Nickolas,42537,8630,0 +141748,Leung Fu,18731,227782,4 +141749,Doug,109439,21180,3 +141750,,360603,128386,5 +141751,Christina Adams,31377,108034,10 +141752,Jack,24993,4942,4 +141753,Amelia,274504,1723560,15 +141754,Soľný Princ,208436,1191425,1 +141755,Denzel Crocker,146712,4095,2 +141756,Himself,18893,938986,20 +141757,Tokiko Hirai,254679,111690,0 +141758,Tiago - the Boy,100661,1481214,5 +141759,Margaret Abbott,45714,240214,9 +141760,Tony Ferguson,69668,23534,18 +141761,Dancer,11172,1781191,41 +141762,"Parker, Smitty's Publisher",98125,93123,35 +141763,Mario,43231,5676,1 +141764,John Doyle,406052,118463,9 +141765,Chi Chi,14164,78324,3 +141766,Russian Minister of Defense,337339,53573,22 +141767,Mr. Goodman,71668,1062,7 +141768,Notaire Maddad,46738,196737,4 +141769,Kate,101915,75070,13 +141770,,461088,213373,2 +141771,Dr. Neal Wright,116780,16420,1 +141772,Pierre's Wife,294819,30664,5 +141773,Coachman,31472,30584,8 +141774,Banker (uncredited),56135,557087,18 +141775,Samuel,4964,36801,20 +141776,Studio Band Saxophone Player (uncredited),244786,1503858,52 +141777,Moving Man,74314,1045763,19 +141778,Eric Staufer,15601,78317,2 +141779,Kyôjûrô Sakura,58878,228544,1 +141780,Gus,40744,94337,5 +141781,Muzzi,77000,7542,2 +141782,Um Ibrahim,56807,225006,0 +141783,Narrator / Father (home video release) (voice),23544,10594,0 +141784,Himself,21671,58225,3 +141785,Van Huffel,20411,82738,12 +141786,Cap. Previn Fedorov,2397,24517,1 +141787,Oil Man,55604,1023934,60 +141788,Movie Spectator / Party Guest (uncredited),22943,1393258,16 +141789,Pelton (uncredited),43419,30158,26 +141790,Jesse,38274,68122,1 +141791,Morgan,12763,143324,6 +141792,Dory Lansing,59735,100608,5 +141793,Clay Hampton,259997,116467,13 +141794,Hattie (uncredited),29872,11498,14 +141795,Josiane,57307,34637,2 +141796,"Adelmo, il padre di Giovanni",56804,1853758,9 +141797,HooPee,101838,1029074,1 +141798,Lea,197624,1298266,2 +141799,Prostitute,190955,1835618,16 +141800,Rebel General Meng Jie,11653,138498,8 +141801,Said,67,25087,7 +141802,Mujer Convertida,84354,98236,12 +141803,Rainer,352890,1561242,9 +141804,Esther (singing voice),273296,1528165,2 +141805,Tom,25973,9777,0 +141806,Jon Jon,307081,1078613,8 +141807,Purser (uncredited),178341,85897,14 +141808,Young Anna,362057,1567103,7 +141809,James Bonham,10733,46772,9 +141810,Marina,148347,139454,0 +141811,Mr. Hunt,17046,1250,6 +141812,,348315,1440602,17 +141813,Quentin Collins / Charles Collins,71945,56930,0 +141814,Himself,361750,83995,1 +141815,Detective,228496,1191314,5 +141816,Dancer,118889,171111,56 +141817,Tony,16987,55070,11 +141818,Snake Hunter #2,7555,1296117,15 +141819,Belinda Blair / Flavia Brent,26670,21619,4 +141820,Marco,356758,59270,0 +141821,Lotus Land Bellhop,32657,1507598,29 +141822,Glar (voice),16866,235815,7 +141823,Maria Victoria,255343,1512786,7 +141824,Himself,410718,57563,4 +141825,Passepartout / Lau Xing,10204,18897,0 +141826,Nan Astley,26491,18067,0 +141827,Buy Buy Baby Salesman,239563,1297399,27 +141828,The uncle,129277,1891593,3 +141829,Tappi Suojanen,32099,88917,11 +141830,Hashimoto,363579,1457189,4 +141831,Louis Crépin ditTartuffe,181456,19069,8 +141832,Leo Tolstoy,36811,290,1 +141833,Emma Callan,27122,32798,0 +141834,Aurora,429838,1734251,6 +141835,Det Blanchard,256092,1325838,7 +141836,Aiden,352164,1516554,7 +141837,Nellie Lopez,117905,1773052,7 +141838,Bilal,381073,1593038,11 +141839,,47448,1796600,12 +141840,Major Parker,80193,105946,7 +141841,Yuya Omori,14217,1176552,10 +141842,Gavin Briar,60599,78190,8 +141843,Anselme,11680,70194,9 +141844,il falsario,3520,12341,18 +141845,Viktor Goldstein,178446,44533,3 +141846,Capt. Brad Parker,64129,82216,0 +141847,Marinică,141241,1054582,1 +141848,Duncan Smithie,73772,28848,1 +141849,Hansom Driver,413232,1676765,27 +141850,Cadwell,298584,1192278,10 +141851,Abby,41402,56734,1 +141852,"la ""logorroica""",109979,1123312,9 +141853,,73554,101734,3 +141854,,46572,24478,5 +141855,José,186755,24975,1 +141856,Rosanna Travis,10733,25933,5 +141857,Green,67102,1053372,5 +141858,Laurento,100088,37448,5 +141859,Caê,34588,1839758,20 +141860,Flight Attendant,172897,1644661,8 +141861,Viviane,202215,1033671,4 +141862,Bernice Bennett,12637,5960,5 +141863,Mr. Davis,43759,22093,7 +141864,Trench Officer - British,297762,1824289,45 +141865,Klegg,19350,115245,17 +141866,Unicom Executive,25643,1219446,13 +141867,Emma,32577,17286,1 +141868,,96106,103617,21 +141869,Beautiful Girl,377587,1589833,15 +141870,Le collègue syndicaliste,329712,1161031,4 +141871,DeShawn,120605,1074596,3 +141872,Le médecin,334317,14606,1 +141873,Omon Yayamata (voice),63486,239450,5 +141874,Frits Großvater,1838,15088,6 +141875,Detective B,57100,1594514,13 +141876,Calvin,254188,212768,9 +141877,Dancer,4982,1532386,70 +141878,Man Dying in Elevator,83802,58513,9 +141879,Jonas,33784,111350,3 +141880,Gracie Trey,206284,113926,0 +141881,Club Receptionist,13849,1086859,5 +141882,Melanie,375366,1611984,3 +141883,Officer #2,45875,82647,13 +141884,Laura,351809,1438824,4 +141885,Himself,18128,2632,0 +141886,Stormtrooper (voice),140607,19303,81 +141887,Foley,78094,12536,0 +141888,Colonel Farewell / Narrator,38807,14518,3 +141889,Bill,141267,927972,22 +141890,Himself - Yoga Instructor,97724,1388676,27 +141891,Maja,16017,71155,2 +141892,Joe,132426,1244926,5 +141893,Young Drona,19623,55071,3 +141894,Young Evelyn,10320,17628,13 +141895,J.D. Walker,44690,1464036,8 +141896,Rachel,388862,1516834,9 +141897,Welcome to the 60's Dancer,2976,1752791,134 +141898,Van Martin,2132,21860,2 +141899,Kathy,124501,8442,2 +141900,Dr. Yeager,172828,18271,8 +141901,Vladimir,87759,42124,2 +141902,Robin Abbott,168027,1175764,4 +141903,Bar Owner,3782,552167,32 +141904,,45441,132776,14 +141905,Alice,369406,63313,8 +141906,Dottie Piper,272693,19,9 +141907,Waiter,19918,550902,24 +141908,Fantasy Sharon,11610,1462229,10 +141909,Catherine Sebanek,22396,14464,2 +141910,Skinhead Leader,270650,1169522,20 +141911,Kim,132518,1095689,0 +141912,la voisine attentionnee,77673,25126,13 +141913,Weird Dude,228970,1379621,43 +141914,Sonja,356326,589027,3 +141915,General Dussier,63304,624813,6 +141916,Caid,99698,1188417,4 +141917,Esmeralda,14430,1521654,20 +141918,Anwar,144229,108890,5 +141919,Mrs. Smith,50073,29974,9 +141920,Philippe Doré,18381,83182,2 +141921,Self,140595,36802,0 +141922,Girl at Zoo (voice),270946,1340664,15 +141923,Sandra,39992,107187,2 +141924,Wilma Carlyle,150247,165087,6 +141925,Eva,209263,15886,0 +141926,,301671,1041406,6 +141927,Ruthie Valdez,55720,200065,2 +141928,May Wynn,10178,137993,4 +141929,Witness for Peace,2143,132917,39 +141930,Sonia,62349,235208,5 +141931,Piano / Ginger Girl (uncredited),214756,1516760,104 +141932,Bernard V. Loomis,40633,46711,3 +141933,Phil,27283,112944,1 +141934,Peter Kranz,613,50143,20 +141935,Chekov,188927,21028,6 +141936,Angus,156711,1349734,29 +141937,Gas Station Attendant,42709,927858,13 +141938,Lev,408509,83866,9 +141939,Policía,481,6535,2 +141940,Tatjana,374475,128859,4 +141941,Poker Buddy,32657,1678612,54 +141942,Sonny Weaver Jr.,200505,1269,0 +141943,Lena Mathers,18190,6714,1 +141944,Niklas Michalke,75969,104243,7 +141945,Law Form Party Laby,270654,1424893,20 +141946,Steven,286709,502608,2 +141947,Psycho-Head,284564,37027,13 +141948,Maxwell,222858,153943,2 +141949,Dorothée,54156,583985,3 +141950,Kemal Tanaçan,77862,120879,0 +141951,Michelle,1807,19204,9 +141952,Óscar,335053,1206196,20 +141953,Bride,10389,551623,36 +141954,Herself,422550,1622660,1 +141955,,81787,1862815,12 +141956,Wilbur Stanley,27629,72059,3 +141957,Paul,228970,1218218,2 +141958,Emmy,98277,1849103,14 +141959,Mary Patterson,52203,8226,6 +141960,Periodista entrevistador,80717,225408,6 +141961,Matron Barker,20806,88317,5 +141962,Wong Kwok Chu (as Lee Kwok Lun),14016,224027,4 +141963,Federal Agent,268920,1755086,108 +141964,Cesar,188357,1169983,3 +141965,José,6077,35083,8 +141966,Lucilla Powell / Gretchen / Indian,259593,226642,3 +141967,Lenny,11798,990,13 +141968,Xenomorph / Neomorph,126889,61784,15 +141969,Bo'sun Red,43149,131047,4 +141970,Santi joven,74192,23215,2 +141971,Vietnam MP Guard,127585,1691154,34 +141972,Dominic,456781,1450800,20 +141973,Singing Basketball Player,198277,1423913,29 +141974,Jacques Laroche,26566,32885,0 +141975,Dr. Richard Warren,44000,89526,9 +141976,Verelli,171308,94021,8 +141977,Sheriff,42701,98633,6 +141978,Claire,40807,122876,17 +141979,Ebba Bergman,41764,248282,31 +141980,Policeman at Bowling Alley,99909,119542,35 +141981,Wren,82679,191228,0 +141982,Richard Matheson,32932,1214345,5 +141983,Belle,43880,977228,6 +141984,The Man,352372,1422654,2 +141985,Sara,300596,958,3 +141986,Dan Hopkins,56558,70820,1 +141987,Kevin Sorbo,456781,51965,3 +141988,Tracey,107682,12672,4 +141989,Carmen,16432,27468,1 +141990,Zach,334527,10692,3 +141991,Zhu De,69310,99692,14 +141992,Terry McGinnis / Batman,64202,76621,0 +141993,Mrs. Verma,55376,11849,7 +141994,Guest #1,48281,186500,12 +141995,Roullot,197696,47085,6 +141996,Pignataro,58402,39151,4 +141997,Jury Member,339994,1593371,25 +141998,Dwight Eisenhower,399790,21134,2 +141999,Cathy Tuche,369776,2412,2 +142000,Referee,52437,8782,35 +142001,Dutch Lady,245700,1798376,70 +142002,Bethany,71668,1041508,18 +142003,Jenny Jurwich,209112,1272969,19 +142004,Abby,55725,928905,9 +142005,"Susan, Lawyer",45556,1127872,14 +142006,Dario,161024,106781,6 +142007,Janet Wheeler,80468,1251103,7 +142008,,205349,1187768,4 +142009,Wade,137145,9832,4 +142010,Monster,49847,1187587,4 +142011,Stephen 'Steve' Archer,47921,76974,1 +142012,Reporter,130507,43823,11 +142013,Griffin's Secretary,28421,1420994,19 +142014,Mary,64965,955,0 +142015,Kendal,48836,1811120,11 +142016,König Tobald,268712,8799,4 +142017,Himself,131822,1093735,0 +142018,Jacques,690,10359,4 +142019,Peters,70863,205213,5 +142020,se stesso,371942,120107,10 +142021,Raoul,54156,40305,6 +142022,Sing-Along Bar Host 2,85265,1495839,18 +142023,Lizzie,244403,1327013,8 +142024,Extremis Soldier,68721,590821,95 +142025,,279543,240536,13 +142026,Doc,18051,82653,2 +142027,,78258,583490,7 +142028,,110001,1696388,30 +142029,Saran,317,4641,6 +142030,Veronica,417936,1584610,9 +142031,Minor Role (uncredited),43850,117413,12 +142032,Photojournalist,339419,1650196,49 +142033,Doris,196235,15532,0 +142034,,1838,568824,19 +142035,Gordon's Friend (uncredited),271718,1553053,31 +142036,Aiden,147132,134673,5 +142037,La juge aux affaires familiales,15712,51106,14 +142038,Woman,42701,26142,1 +142039,Julia,34092,111859,5 +142040,Sheriff Larkin,99846,12692,6 +142041,Foyer Student,246655,1796406,61 +142042,Det. Vincent Cusack,87388,34691,3 +142043,Ángela,79775,587962,4 +142044,Fern,21250,73016,6 +142045,Carmen,38328,44649,1 +142046,Ruby,12767,3196,3 +142047,Senator Robertson,132363,1407751,27 +142048,Simcox,174925,13359,12 +142049,,195544,1898729,26 +142050,Grace De Tessant,19255,37158,2 +142051,Greg,19794,928594,6 +142052,Biker Girl,259830,1340731,7 +142053,Williams,22396,996571,14 +142054,Père de Momo,337,5079,2 +142055,Le beau-père de Michael,246320,2197,7 +142056,Girl at Concert,11172,1781205,56 +142057,Mrs. Archer,110540,148877,7 +142058,Himself,430156,1610929,2 +142059,Dr. Victor Sinclair,10066,62750,9 +142060,"Detective James ""Sonny"" Crockett",82,72466,1 +142061,Wedding Photographer,84340,210160,6 +142062,Stathis,211059,1194928,2 +142063,Pedro Páramo,198795,7304,0 +142064,Second Announcer,125736,126549,23 +142065,Dist. Atty. Ray Willis,46421,82863,3 +142066,Student 1,52475,1824922,17 +142067,Franck Rabou,37645,144956,9 +142068,Crack Whore,90120,25298,9 +142069,Matt Foster,15090,1328,1 +142070,Barabba,42438,69036,0 +142071,Joanne,391375,4493,1 +142072,Tom Nowak,67102,28078,3 +142073,John Silver,49418,1341809,0 +142074,Briton Biker,240745,1660694,24 +142075,Sean,19501,55464,0 +142076,Mr. Bucket,118,1284,8 +142077,Ratliff,40085,22602,11 +142078,Giardino,55823,228744,7 +142079,Sapateiro,49961,143138,5 +142080,Female Prison Guard,405473,1800020,6 +142081,Katsutoshi Yoshida,51549,4990,3 +142082,Inspector Tanner,86647,37145,10 +142083,Ron,59678,11109,0 +142084,Arnold,26914,124717,7 +142085,Hatice / Ayperi,300490,1153569,1 +142086,Yoshihisa Igarashi,223391,27778,2 +142087,Mormóni,72596,1114543,32 +142088,"Ian Paisley, Jr.",408616,1307013,8 +142089,postikonttorin kassanhoitaja,442752,53507,15 +142090,John Dowling,37462,89064,9 +142091,Young Clive Messerman,18208,206905,11 +142092,Theatre Actor,245700,65451,32 +142093,Orchard Nurse,48231,1089480,13 +142094,TC,220724,65934,5 +142095,Tío de Carlos,187442,976651,4 +142096,Vivian Davies,40925,2958,3 +142097,Warren,54388,163280,1 +142098,Ryan,20983,3034,0 +142099,Regidor,335053,15598,15 +142100,Literary Club Host,171446,935649,20 +142101,Biology teacher,54111,1769717,6 +142102,L'homme du train,336811,149870,8 +142103,Loretta,188468,34742,0 +142104,Dr. Sam Maitland,12450,11282,3 +142105,Don Jaime,4497,14821,2 +142106,Candy Store Girl,13090,1654001,16 +142107,Shilpa,196852,1700876,8 +142108,Concierge,70695,94622,9 +142109,Glue Boy,23367,95376,20 +142110,Esther Hagadorn,188826,86232,5 +142111,,106417,1491122,5 +142112,Brady,17175,21722,6 +142113,Princess Coo-Coo,14262,10371,4 +142114,Jan Skrzetuski,31273,6643,2 +142115,Tough Tony Banks,27470,14882,0 +142116,Doug Billings,45243,21180,3 +142117,Gidi,35856,235133,2 +142118,Therapist's son,67272,231931,10 +142119,Na'vi Child,19995,1207249,31 +142120,,116857,100045,0 +142121,Chris Guthrie,277713,1060671,2 +142122,Merel,140894,234235,1 +142123,Old Aurora,93858,109714,1 +142124,Committee Member,2989,47458,8 +142125,,85836,68704,1 +142126,Marcus Portius Cato,34469,4690,2 +142127,Carrick Grey,341174,41436,12 +142128,Elliot,32226,4255,3 +142129,Michelle Black,128598,1088192,1 +142130,Mabel Anderson,43903,13568,0 +142131,Hattie,121006,82315,1 +142132,Herself,70027,38225,7 +142133,,73835,119992,2 +142134,Kazik,49009,6082,9 +142135,Рассказчик,457307,1815368,3 +142136,Rachel,17038,1309757,9 +142137,Yemi,225283,1145665,0 +142138,Xiao Qiao,12289,118724,7 +142139,Lt. Coberly,27549,51547,7 +142140,Col. James Moore,242631,77114,3 +142141,,104945,1057898,5 +142142,Gunderson,298751,92782,1 +142143,Daiki Tazaki (voice),364111,1253008,2 +142144,Michal,284343,55047,6 +142145,Robert Charlton,62441,237027,16 +142146,Johnny Hollis,44087,118802,3 +142147,Jim Boone,82313,4735,0 +142148,,94336,231835,5 +142149,Piero Peluria,439998,1258076,0 +142150,Cindy Cartwright,103850,558148,3 +142151,as Bianca,41213,28828,1 +142152,"Antoine Sarrazin, le frère de Fernand",76642,258213,5 +142153,Rummelplatzpächter,262945,36342,9 +142154,Frank Brand,133328,8229,1 +142155,Salome,64942,1011906,14 +142156,Indian Major in Boardinghouse (uncredited),52440,98445,57 +142157,Real Estate Agent,29161,103062,10 +142158,Mike,17258,1194262,7 +142159,Hatfield,236395,80236,6 +142160,Combat Carl / Combat Carl Jr.,213121,1101,3 +142161,Paul,1595,4942,1 +142162,Romy,333367,9824,2 +142163,Harbor Master,246655,1193060,85 +142164,"Frasquita in ""Carmen""",47959,1426029,16 +142165,Vinny Gorgeous,243935,75604,6 +142166,Stacey,228970,163013,17 +142167,,71393,935418,9 +142168,Lovebot (uncredited),283995,1482685,61 +142169,,153196,28299,6 +142170,Mrs. Håkonsen,71805,1269951,7 +142171,Ebenezer,142150,8979,1 +142172,Gen. George Carnaby,11046,251,8 +142173,Kløsen Executive #3,14569,106458,6 +142174,Assistant,225285,1264238,13 +142175,Mayor Eaton,28452,30351,7 +142176,Moll,36214,551591,0 +142177,Noel,41301,63548,8 +142178,Puppet Master / Announcer / Mascot / Singing Villain (voice),810,12098,36 +142179,La mère de Georges,445,6014,2 +142180,Gas Salesman,7483,52689,9 +142181,Therapist,411741,1502783,16 +142182,Detective,331313,1235973,23 +142183,Bager,21282,399957,12 +142184,Helmsman,16320,80435,25 +142185,Midwife,152748,71565,20 +142186,Jasper,243683,1290588,11 +142187,Krista,40205,144853,6 +142188,,375742,1564285,14 +142189,FBI Director Hill,51823,21246,12 +142190,2ème client Night-Club,5511,1664788,21 +142191,Introductions,45577,133248,10 +142192,Directory of History Film (uncredited),53419,14438,5 +142193,Suki Yaki,100814,34086,2 +142194,jako Hawryluk,406449,107879,5 +142195,Shinnojo Mimura,20527,12670,0 +142196,Ella Sue Canfield,147903,105796,9 +142197,Francesca,116236,70119,1 +142198,Ninja Trainer,92496,94089,40 +142199,Dao Chang,40081,1114203,4 +142200,Thomas / Dydimus,335778,440879,17 +142201,Ralph Turpin,26204,2096,5 +142202,Mirka,175331,1028806,9 +142203,,276846,53362,12 +142204,Miriam,335778,1528816,29 +142205,Schmendrick,6575,41089,25 +142206,Suzy,9993,61643,17 +142207,Janet,91583,120490,8 +142208,,104945,119435,10 +142209,Lance,21338,5176,4 +142210,Ross's Aide,1724,1366377,59 +142211,le colonel McLean,33360,11842,4 +142212,Colonel Adachi,1251,156963,13 +142213,Italian Man,156700,1842177,19 +142214,Lt. Kirk,61049,94315,6 +142215,Roseann Fisher,19754,64678,6 +142216,Candace,80468,1352022,10 +142217,Brett,68347,1339157,10 +142218,Meggy,11798,59076,6 +142219,Defense Atty. Adams,95807,1037912,7 +142220,Venkula,217038,148385,4 +142221,Kirstie MacMorrow,54318,150394,4 +142222,Jessica,18044,27136,2 +142223,June,17100,81239,8 +142224,La statua che prende vita,43379,136436,6 +142225,Barbara,121895,82306,4 +142226,McMasters' Defense Attorney,55604,14455,46 +142227,Head of Nation,206647,1599257,45 +142228,Cheese,77067,585781,2 +142229,Tony,34598,51662,3 +142230,Actor,48145,6649,12 +142231,Dave (voice),270946,6949,4 +142232,Gwupigrubynudny-landians,16171,79859,7 +142233,,50028,14698,4 +142234,Naomi,118957,144286,7 +142235,Geel Piet,13823,192,3 +142236,Simon,72655,25038,4 +142237,Lauren,71672,1116281,4 +142238,Lolita (uncredited),13802,17018,48 +142239,2nd Terrorist,83229,1544227,11 +142240,Reuben Tishkoff,163,827,13 +142241,Daniel,82990,87220,11 +142242,One of Two Porters,14554,96705,14 +142243,Diane Szalinski,11425,23706,1 +142244,Fru Ashild,57438,226195,36 +142245,Himself,376394,1559482,3 +142246,Jan,49920,65421,6 +142247,George Weaver,50838,77164,2 +142248,Josh Davidson,43752,83435,5 +142249,shintoto,129383,225739,0 +142250,Philippe Legorjus,76609,2406,0 +142251,Stephen Tremayne,204800,35189,1 +142252,Extremis Soldier,68721,1619994,97 +142253,Maureen's Daughter,21619,87716,8 +142254,Francis Freeman / Ajax,293660,1047649,2 +142255,Tibi Vámos,13616,42067,2 +142256,,94803,1565960,9 +142257,Marsha,27739,72838,1 +142258,,149868,1173679,7 +142259,Parson,55152,1477609,18 +142260,Young Susan Lauder,321039,1506298,7 +142261,Dennis Wilcox,37301,29363,7 +142262,Count de Grissac,127812,14688,3 +142263,Wylie,121401,30428,0 +142264,,254869,1150406,35 +142265,Rae Flowers,13519,8534,30 +142266,The Runaway,90616,9452,0 +142267,Edith,209271,506085,6 +142268,,121640,766,1 +142269,Special Appearance,403867,1607316,8 +142270,Shimei,234284,215919,7 +142271,Jimmy Harper,20521,19225,1 +142272,Deputy Martin,14435,39391,4 +142273,Flash Girl (uncredited),214756,1759659,81 +142274,Mrs. Pringle,48885,147090,0 +142275,Toru Onoda,93891,1185129,3 +142276,Yvonne / Yan Yan,31027,66762,3 +142277,Country Groomsman,405473,1800039,35 +142278,,458428,1820238,2 +142279,Ronald,69075,1181464,13 +142280,Damien,343702,93531,7 +142281,Delphine Duchannes,109491,452,8 +142282,Jackie Leighton,17640,41226,2 +142283,Cookie,4191,35246,15 +142284,Makoto Kawamura,105833,1175875,1 +142285,Taejo Togokahn,7459,112013,16 +142286,Laura Hampton,104556,99367,9 +142287,OSS Agent #2,12279,57471,31 +142288,The Fleet Captain,257081,18586,14 +142289,Ipsalata (uncredited),27717,106998,16 +142290,Pedro-Peter,73896,102306,5 +142291,Checkpoint Soldier,5237,928731,18 +142292,Chip (Voice),14787,77293,2 +142293,Skotos,21533,37698,3 +142294,Pastor Timmons,12591,61961,4 +142295,Rodman,112973,1056090,6 +142296,Old Cab Driver,46190,34279,8 +142297,Interviewer,46891,4138,8 +142298,Rafart,35025,78479,7 +142299,,372113,213345,4 +142300,Mons. Ascanio La Costa (episodio L'Ascensore),68882,45982,0 +142301,The Unknown Comic,83802,1548431,8 +142302,Makler,75969,1902095,45 +142303,La mère d'Eugène,68822,582139,4 +142304,Mackie / Mac Daniels,81274,31530,3 +142305,Glòria,83481,24974,7 +142306,Trey,13493,1237531,11 +142307,Cynthia,51442,230946,6 +142308,Marco Brezzi,240832,1138749,31 +142309,Glove Factory Worker (uncredited),326285,1621150,22 +142310,Herself,323555,21366,7 +142311,Phoebe,192133,1188325,5 +142312,Frau Huller,94803,35420,1 +142313,Convict,51601,600741,13 +142314,Student,409447,1720657,22 +142315,Sara,266425,1313139,12 +142316,Donovan Peck,62837,1447863,17 +142317,Gabe,17483,77448,7 +142318,Le héraut,49398,53776,11 +142319,Angela,378570,1879916,9 +142320,Azzam,62630,234907,8 +142321,Mutter im Kindergarten,308174,1888506,48 +142322,Sonja Rentoft,87654,935340,1 +142323,District Attorney,34127,4071,8 +142324,Vigo,12449,17499,3 +142325,IPNN Newscaster #2,47412,138892,10 +142326,Drone Pilot,209112,1190987,18 +142327,Danny,67977,157753,1 +142328,Glixen,37725,20179,10 +142329,Crash (voice),79218,57599,5 +142330,Senior Syrian Officer,317214,76309,6 +142331,Freddie Young,4375,12726,4 +142332,Himself,376394,1559489,10 +142333,Sergeant Ramirez,383140,1509228,14 +142334,Susumu Kodai,61984,12670,1 +142335,Doctor Checking Eyes,72638,30201,45 +142336,Agent Bukowski,49588,82313,2 +142337,Sarah Didonna,289923,9300,2 +142338,Kassim,64428,10029,6 +142339,Majka,118658,559493,4 +142340,Katsuji Musubi,14088,1190333,8 +142341,Classmate (uncredited),15022,207225,38 +142342,Himself,15260,83138,4 +142343,Diatryma Mom (voice),8355,43775,23 +142344,Dez,7304,27545,9 +142345,Police Driver (uncredited),17136,120734,28 +142346,Riley Simms,127493,50463,1 +142347,Richard,214093,6020,4 +142348,Archbishop's driver,15371,552680,8 +142349,Toru Aizawa,60160,230654,0 +142350,Roger DeBris,9899,60136,5 +142351,,128671,100047,0 +142352,North Korean boy solider,11658,1564078,36 +142353,,48375,51329,7 +142354,Judge,129851,51741,6 +142355,Ogre,21029,70254,14 +142356,Skeet Shoot Handler (uncredited),4982,122549,101 +142357,Bull Webster,11719,18841,0 +142358,Bull (as Wong Kwong Leung),69727,122820,4 +142359,Scott,153795,11864,1 +142360,Rei,53701,94018,1 +142361,Charlotte (voice),10198,110885,4 +142362,Lilas,64437,39881,2 +142363,Soldier 4,52034,237176,10 +142364,Manya Surve,188640,52971,3 +142365,Doro,330588,1667331,2 +142366,Tim Dorson,45215,4303,8 +142367,Governon Brighton,285946,121247,8 +142368,Анжела,83456,107727,5 +142369,Officer Thomas,193893,1381698,61 +142370,Katherine,42852,93805,1 +142371,Hildy Parker,371181,1511519,18 +142372,Rafa,208869,1192218,3 +142373,Vänrikki Nappula,55761,223073,4 +142374,Roman,48587,5925,1 +142375,Soldat,10626,38171,14 +142376,Yeon Gaesomun,65881,551682,7 +142377,Alonzo,338438,32679,18 +142378,Miller,25038,79012,10 +142379,Anne Florio,128588,10476,3 +142380,"Father Christmas (Third, 20-th Anniversary Release)",13396,141450,3 +142381,,121530,1518860,17 +142382,Victor Charlton,185156,104349,8 +142383,Ahimelech,42040,80620,9 +142384,,62855,1136164,1 +142385,portiere dell'hotel,109979,224376,6 +142386,Detective Cloud,266425,1313135,6 +142387,Himself,250769,1229159,0 +142388,Peter Porter,222461,1207881,4 +142389,Atticus,81895,8318,1 +142390,Friedrich Louis Vogel,266044,5860,3 +142391,Kawasaki,140509,117975,0 +142392,Barabbas,235260,90547,27 +142393,Liang Hong,248376,1571927,19 +142394,R.M. Lucas (uncredited),3081,1185452,19 +142395,Ivan Timofeevich (neighbor Sokolovs),88564,659977,2 +142396,Leo,1116,1896855,14 +142397,Suit Store Employee,187028,1728950,14 +142398,Mary,85024,1277853,0 +142399,Helen Colley,42852,568017,13 +142400,Mr. McFarland,1807,19207,12 +142401,Quasimodo (voice),79599,73489,0 +142402,John Tibeats,76203,17142,4 +142403,Towne's Secretary,107593,113655,15 +142404,"Maese Nicolás, barbero",145481,234660,9 +142405,Joseph Lee,32068,15531,3 +142406,Alessandro,126250,72789,6 +142407,"Richard Aldrich, Producer",52959,16554,1 +142408,Same Shirt Girl,10330,1575802,14 +142409,Paula Jordan,39130,104728,8 +142410,Kwajalein Guard,227306,1394450,49 +142411,,246417,1810502,4 +142412,Karenin,70881,8727,5 +142413,David Owen,15661,504,0 +142414,Little Girl,24756,1175136,13 +142415,Nerh-Nerh,57382,67714,0 +142416,Joanna,323665,44830,2 +142417,Palace Soldier,24973,1747655,22 +142418,Le mari,72898,18766,8 +142419,,31418,584051,13 +142420,Kellnerin Lucy Hansen,103396,67195,8 +142421,Saudi Translator,435,6075,14 +142422,Chief of police box,10103,63441,4 +142423,Jay,4964,449,5 +142424,Christopher Welling,361018,1508173,2 +142425,Governor's Aide (uncredited),14615,29626,93 +142426,Mark Hayes,12247,71896,13 +142427,Woman,25126,42607,3 +142428,Ralphie 'Woofer' Chandler,15356,78144,6 +142429,konstaapeli Mutka,20164,93004,15 +142430,Sathya's father,368006,1339140,7 +142431,Dalton Ames,287636,130253,11 +142432,,211561,19534,0 +142433,Lady Rosamund Godolphin,50329,930690,5 +142434,Mrs. Frampton,49500,1217907,2 +142435,Nicola Ciraulo,121998,72782,0 +142436,Steve Karnes,43093,89582,0 +142437,Spinster,62143,106628,26 +142438,Peg,127564,1221520,10 +142439,Luna,255160,1668083,10 +142440,Kozlow's Tech,59965,1432984,22 +142441,Police Chief Auditionee / Himself,430826,1891511,32 +142442,Lucy,42066,11494,2 +142443,Captain Kurt Bergman,25385,1933,1 +142444,Da Lisi Guard,217923,1436276,35 +142445,Steve (uncredited),43491,87390,18 +142446,Chen Chih-Tao,147590,83560,4 +142447,Shane Santini,31377,108035,12 +142448,Angela,38883,137387,4 +142449,Coralie,14644,74115,9 +142450,Arya,2486,7055,2 +142451,Crash,3539,16808,0 +142452,Hotel Secret Service #1,383538,1569580,14 +142453,Bill,168616,572135,3 +142454,Cheryl,14142,29930,15 +142455,Berry Lady (voice),116711,95691,21 +142456,Buddy Endrow,12912,56778,2 +142457,Dexter,178809,1196734,15 +142458,The Schoolmaster,95169,3245,9 +142459,Phil,109439,51329,0 +142460,Anna Cartullo,397837,1604285,11 +142461,Community (voice),227156,183814,22 +142462,Daniel,296288,1839839,7 +142463,,255772,1363814,5 +142464,Jadranka,186755,1417625,3 +142465,Le frère de Camille,82327,230069,10 +142466,,455043,1800792,5 +142467,Lardo,212996,70437,3 +142468,Orderly #2 (uncredited),3580,1307739,73 +142469,Velma Dinkley,67900,86314,1 +142470,TV director,48962,121447,9 +142471,Groa Guttormsdotter,57438,226177,11 +142472,,293654,223527,9 +142473,Officer #1,347031,1561286,9 +142474,Vanessa,34729,155023,19 +142475,Felix Hoffman,27196,12829,10 +142476,,86321,1903060,6 +142477,Lydia MacMillan,56151,30225,0 +142478,Nightclub Table Extra,64928,34094,28 +142479,Broker,43811,113516,23 +142480,Leo (warehouse worker),90616,1426831,30 +142481,Ted,1481,1844327,13 +142482,Nancy Drew,47882,14870,0 +142483,Chic - a Gangster,27966,997751,31 +142484,Sarah Elliot,365942,90755,5 +142485,Roxane Dancer,1966,1651012,44 +142486,Constable Javed Shaikh,20742,86013,4 +142487,Aidan Hall,23169,965205,8 +142488,Darius,2309,7321,15 +142489,Shannon,301368,969635,6 +142490,Brendan Loomis,259695,1293892,12 +142491,Catherine,363439,56152,1 +142492,Mme. Moreau,134480,96141,11 +142493,Principal Harvey,206197,78404,8 +142494,Lt. Barney Greenwald,10178,12515,5 +142495,Lt. Guilford,109475,198886,3 +142496,Mr. Knight,25834,193365,11 +142497,Dwayne Tisdale,343921,133980,4 +142498,The experimenter,662,9963,3 +142499,Witness (uncredited),3580,1504568,69 +142500,,72054,1439242,20 +142501,Lipstick-Face Demon,280092,73417,14 +142502,,214105,1198742,1 +142503,Parks,41574,930313,3 +142504,Prof. Porter,225503,148053,7 +142505,Exilda Lemay,16147,79614,10 +142506,Police Officer,272878,58733,11 +142507,Benny,34205,1213263,8 +142508,Abuelo,8329,543335,10 +142509,Chief Miller,62132,1452735,5 +142510,Tiffany,70695,998571,7 +142511,Dashing Restaurant Man,302699,1754485,34 +142512,Herself,366696,1753496,21 +142513,Liam,212756,63364,3 +142514,Prosecutor,18927,939816,13 +142515,Jeune a la piscine,121539,1759923,16 +142516,Green Lantern,2771,27973,16 +142517,Cleo Trumbo,294016,2882,1 +142518,Psychiatrist,293452,4758,11 +142519,Cocktail Waitress,265208,1450383,16 +142520,Diasparro,42579,78710,5 +142521,Homeless Man,216156,79888,5 +142522,Piotr Rasputin / Colossus (voice),293660,80507,9 +142523,Il Ministro,71133,225189,7 +142524,Une fille à la guinguette,68822,144743,16 +142525,Pete,67130,31771,1 +142526,Gary,195022,1180701,9 +142527,Alfred D'Angelo,47115,22821,7 +142528,DI Steven Thorpe,47535,141551,9 +142529,Chaz Sr,218784,13101,15 +142530,Man Kissing Girl (uncredited),203321,1876176,15 +142531,Sołtys,8211,26923,6 +142532,Alice Harvey,339145,84247,0 +142533,Emily Walters,441728,3092,1 +142534,Gustav,798,51251,12 +142535,Gideon,253154,93538,2 +142536,Amanda Morel,208529,49148,4 +142537,Hit-and-Run Truck Driver,51357,13953,4 +142538,Suske,56344,223969,0 +142539,Cüneyt,52150,145401,4 +142540,Gerry,42934,62932,3 +142541,Ben,198663,969045,8 +142542,Capa's Sister,1272,24618,10 +142543,Joey Williams,82929,928931,1 +142544,Michael Carter,403570,11355,0 +142545,Serge Foulon - un cameraman,332794,1774013,21 +142546,Captain of the Castle Queen (uncredited),28571,112009,25 +142547,Gerold,9503,1371,2 +142548,Doctor Fettle,5060,40960,9 +142549,Vicky,138502,1063768,1 +142550,David Goodman,18045,51539,2 +142551,Dennis,29083,102865,11 +142552,Manuel Rodrigueu,3941,34452,9 +142553,"O""Neal",2611,554391,13 +142554,Herself,100085,1023404,1 +142555,Lily Li / Herself,68004,12672,2 +142556,Himself,318973,1538726,1 +142557,Morgue Detective (uncredited),3574,1420897,15 +142558,Holly,41171,58168,11 +142559,Ralph Compton - 11 years,15013,77680,6 +142560,Captain Marriott,47794,81074,14 +142561,Max Kalish,32080,178874,6 +142562,,94803,1207391,4 +142563,London,7515,10860,1 +142564,Sam,172897,41421,4 +142565,Ray Singh,7980,54810,9 +142566,Dibble's Customer,244201,14030,14 +142567,Хозяин гостиницы,27935,1090508,10 +142568,Henri,63876,15395,1 +142569,Adm. Rogers,143092,98503,8 +142570,Ranko,135335,1102165,11 +142571,Alex O'Donnell,16996,87741,7 +142572,Thug (uncredited),293660,1451618,45 +142573,Josiane,151826,8925,2 +142574,Amy,97051,74251,3 +142575,Pharmacist,47143,239636,5 +142576,Maria Jolanta Wilczur,68797,591271,1 +142577,"Chiho Tanemura (segment ""Chiho"")",26693,80792,3 +142578,Zia Elide,379873,1372353,6 +142579,Bridesmaid,43809,1468551,54 +142580,Lonny,197611,935081,6 +142581,Judge,9667,58475,17 +142582,Nyx (voice),269650,1319571,5 +142583,Taxifahrer,9010,22531,9 +142584,Guard (uncredited),15794,215709,16 +142585,"Father John Callahan, C.S.C",43812,8841,3 +142586,Sex Ed Teacher,7326,1366470,26 +142587,,151652,1374210,1 +142588,,365323,1527063,3 +142589,Viktor,280422,1337734,1 +142590,,343809,1541180,3 +142591,Inspector Holcomb,90465,20368,5 +142592,Dr. Scott Blumeth,16239,94602,3 +142593,Sjimmie,19398,211078,15 +142594,Brett (as Kristopher Van Varenberg),205724,1044952,17 +142595,Zoo Visitor / Father with Baby in Sling (uncredited),38317,1588593,21 +142596,Superintendent,67531,999884,8 +142597,Astronaut Commander,8410,55743,1 +142598,Lester (as Anthony Gradwell),38681,935071,7 +142599,Elinor Dashwood,315010,56103,0 +142600,Mr. Baildon,56942,216245,1 +142601,1# Poolshark,33481,110764,13 +142602,野比大助/大雄爸爸,265712,1521538,24 +142603,Mother,34193,154431,10 +142604,Felipe,436,5895,6 +142605,Bridget (voice),9904,21197,3 +142606,Gita Patel,87827,55062,5 +142607,Miguel,418437,1366811,11 +142608,Dancing Witch / Wagon Witch #1 (voice),10192,3138,11 +142609,Wyatt the Pizza Guy,258509,1046665,19 +142610,Nabal,2734,16382,17 +142611,Stephanie,82395,47757,6 +142612,Frank,97767,16004,11 +142613,,296313,6120,8 +142614,Ian O'Shea,72710,105727,2 +142615,Beffy,252888,3042,5 +142616,Apple Bloom,201676,1027643,9 +142617,Roy's Avatar,49524,209197,5 +142618,Merc Driver (as Ben Blankenship),168259,1093707,36 +142619,Carter Andrews,178927,1234783,5 +142620,Emma,2295,23658,5 +142621,,72054,1439246,25 +142622,Nowart,105077,172871,15 +142623,Nikita,97797,557379,2 +142624,Chief of Detectives Hap Lynch,4931,31503,12 +142625,Anna,59046,228755,2 +142626,Saria,39308,199883,1 +142627,Man Wanting to Buy Roark's Casino,26323,120818,12 +142628,Dora Baldini,5481,44959,0 +142629,Emily,352186,1279279,6 +142630,Doncella,32934,236103,1 +142631,Mustafa,10821,1174579,5 +142632,Shinobu,43967,218142,4 +142633,Gobey,43806,165760,68 +142634,Dillon,241742,1223707,4 +142635,Pyotr Timokhin,75262,1190224,13 +142636,Angustias,95134,1004061,5 +142637,Jordan,36299,5503,1 +142638,Billie,333367,139135,4 +142639,Benny Cummings,108282,22437,19 +142640,Chief Carver,231616,12132,4 +142641,Eliecer,51976,1094176,5 +142642,Jim Caighn,59828,41755,1 +142643,Stephen,207270,281413,3 +142644,Persian Prince,1966,27420,37 +142645,Seth,353979,1330,0 +142646,Additional Voice (voice),177572,186605,20 +142647,Maggie,86838,1170657,14 +142648,Ricky The Dragon (voice),217057,887,1 +142649,Tong Po,24993,222508,5 +142650,Siostra zakonna,314371,34137,17 +142651,Karaoke Bar Patron,239562,567102,11 +142652,Tante Ida (voice),393559,1776043,9 +142653,Rupert Grimm,208529,37041,2 +142654,Bill,5123,1781815,24 +142655,Lui,47096,3784,5 +142656,Captain Thomas Hamilton,54318,18616,3 +142657,Emperor Franz-Josef,280004,1336777,18 +142658,Cappelletti,249457,1880593,12 +142659,Gabby,337549,78334,2 +142660,Helen Cardigan,33673,87545,5 +142661,Ingrid,51828,1035194,11 +142662,David Powell,68387,62920,33 +142663,Ouri,64784,933722,1 +142664,Reginald Barrow,71147,1519925,6 +142665,Hugo Barnstead,180635,27733,4 +142666,Jakob,352890,1561245,13 +142667,Papa Louis,18651,1038474,11 +142668,Nick Bradley,43385,8253,1 +142669,Papa,31473,3160,3 +142670,Byron Cole,28448,3982,6 +142671,Grace Greenlaw,90563,29519,5 +142672,Adult Brendan (voice),26963,96672,6 +142673,Matt,16563,99443,17 +142674,Carey Macklin,96089,111593,7 +142675,Kate Riley,84337,89936,2 +142676,Victor Chandebisse / Poche,141955,35321,0 +142677,D.C. Hicks,338518,1316598,9 +142678,Brian Pemberton,47535,195206,11 +142679,Dal'noboyschik,49653,579743,15 +142680,Madame Jacquinot,334317,1449639,7 +142681,John Nardi,51209,7132,1 +142682,Barkilphedro,151826,2410,5 +142683,Minister,270383,20380,10 +142684,,436339,1019089,7 +142685,Paschal,9503,944548,13 +142686,Professor Uberoth,29695,4520,1 +142687,Victor Hyde-Brown: Staff of Nutbourne,83015,202272,2 +142688,Griffin Keyes,38317,32895,0 +142689,Thomas,330275,225479,5 +142690,Ross,60420,132963,8 +142691,Nora Bayes,108222,590740,6 +142692,Wang,62071,1134979,14 +142693,Secretary,31445,1675902,11 +142694,The Niece,39992,1480948,9 +142695,Bruno,198511,2310,2 +142696,Mary Livingstone,43875,90377,15 +142697,Stormtrooper,330459,1228940,89 +142698,Nava the Wolf Shaman (voice),25913,141,3 +142699,Eric 'Rick' Masters,9846,5293,1 +142700,Boingo the Bunny (voice),57089,43120,10 +142701,Annette DeTamble,24420,95635,2 +142702,Dominick,49314,3999,0 +142703,Dr. Snow,40060,16523,6 +142704,Csilla,158942,144495,0 +142705,Lt. Acosta,29100,5042,6 +142706,Harold Carpenter,69898,20906,2 +142707,,378435,1778475,3 +142708,Psychiatrist,101852,56358,8 +142709,Belinda,86049,12021,1 +142710,Mac,20411,86045,5 +142711,Anne,67018,1137846,0 +142712,Doctor (uncredited),82767,1458464,18 +142713,Sarah,35016,113588,1 +142714,Dr. Karl Truftin,19237,79025,0 +142715,Billy,42472,12410,5 +142716,Fats Garvey (as Edward S. Brody),28712,32437,8 +142717,Marty Nelson,76229,12310,5 +142718,Kitty Walker,6947,20750,11 +142719,Helen's First Admirer at Party,157898,942165,32 +142720,(voice),193650,19540,3 +142721,Mackie Messer's Gang Member,42837,12378,10 +142722,Général de Gendarmerie Jérôme,76609,20086,7 +142723,,348315,210978,5 +142724,Dwayne (voice),27300,15033,10 +142725,Alexander,24657,38127,0 +142726,Officer Tim,63762,112666,4 +142727,Dr. Jacobs,27966,33705,20 +142728,Franco Giacobetti,75001,119991,0 +142729,Magnolia,68202,159657,11 +142730,Eddy,31821,149484,15 +142731,Cat,90034,548717,6 +142732,Headmaster,139272,1110448,4 +142733,Kate Vogel,241927,87020,4 +142734,Policeman,181456,76826,19 +142735,Karen Adams,16876,129984,9 +142736,Diner Waitress,239566,1407731,50 +142737,Gimmy Aday,20986,79004,9 +142738,Dallow,62728,43547,7 +142739,Deena Schuster,50647,200237,13 +142740,Vito,24731,194802,8 +142741,Micaela da bambina,121888,1366238,8 +142742,Chang Mantian,64304,1133986,13 +142743,David London,318781,1194577,44 +142744,Dylan,365339,1169115,0 +142745,Ted Younger,64942,2178,2 +142746,Crystal,456781,1355738,14 +142747,Himself,97643,36423,0 +142748,Francesca,76864,396609,7 +142749,Cooper,268920,368,0 +142750,Simeoni,362758,1519264,4 +142751,Sorrowful Jones,47876,6837,0 +142752,Astrid,126250,123637,2 +142753,Susan Aarons,115626,1219500,6 +142754,Gunnar,230295,76383,1 +142755,Jason Higgs,193177,16897,0 +142756,Blueprint Dancer,243683,1398195,83 +142757,Peter Dugan,43846,90333,13 +142758,Macduff,119844,73284,4 +142759,Translator - Shura,354287,1816340,35 +142760,Voice (uncredited),1726,1209727,82 +142761,Akela,29352,99536,3 +142762,Manny,256474,1100144,6 +142763,Dottor Giacomo Surace,231176,48377,14 +142764,Young Patrick Braden,1420,17020,6 +142765,Edward Rochester,22744,40,0 +142766,Grandpa,26514,6577,0 +142767,Devil,280690,42802,1 +142768,Hung's girl,40346,1160576,11 +142769,Billy Canton,10917,287,1 +142770,Clumsy Office Boy,100247,6777,3 +142771,Lawyer,380856,122545,10 +142772,Colonel Hazem Ashraf,172008,52685,9 +142773,Surfer,330115,1837457,18 +142774,Sgt. Archie Sparks,17144,10430,4 +142775,Metcalfe,62761,235969,3 +142776,Don Vincenzo,173847,1330099,16 +142777,Joe Choynski (uncredited),43522,30204,82 +142778,Examining judge,4191,1083979,17 +142779,Abigail McBride,10087,30435,6 +142780,Lui Chang,107891,1420035,11 +142781,Ms. Carrier,314283,1405647,5 +142782,Stan Marsh,16486,34517,0 +142783,Molly (voice),328111,1662455,16 +142784,Compadre Bulmaro,79779,590312,3 +142785,Calamity Jane,35026,4529,2 +142786,jako Marysia Skiba (c. Macieja),406449,1650389,23 +142787,Ben,1589,17783,8 +142788,Redford,179812,1162327,4 +142789,Teijo Littlefoot,322548,212934,4 +142790,G-Man,27966,980330,38 +142791,Jack,112456,55779,1 +142792,Fisherman #1,256962,162180,45 +142793,"Zhu De, PLA Cmdr-in-Chief",25626,543169,10 +142794,Marc Jarvis,399612,116264,1 +142795,Vincent,39345,3418,6 +142796,Roberto,264397,1096780,4 +142797,Harry Dunson,66175,113654,7 +142798,Gina the Goth,6557,78080,9 +142799,Carl,75101,1523985,4 +142800,Agent Hobbs,51823,16214,2 +142801,Lucia,167935,1149643,0 +142802,Wind,32654,21909,1 +142803,Mutter,13305,77434,6 +142804,Porter Nash,55846,14887,1 +142805,,404567,1238521,4 +142806,Salpetre,42216,36210,14 +142807,Komendant MO,38869,32696,4 +142808,Le pompiste,2786,23480,14 +142809,Christian,3549,32685,4 +142810,Lacey,35683,133628,7 +142811,Gabriele Kröcher-Tiedemann ('Nada'),43434,2339,9 +142812,fratello più vecchio di Samantha,43211,100955,14 +142813,Bennie,333884,1016415,5 +142814,Erin,63217,205082,4 +142815,"Natasha, Girls' Mother",49943,939582,3 +142816,German Major,16442,87546,15 +142817,Johannes Weinrich,43434,16811,1 +142818,Old Story Teller,1579,17686,13 +142819,General Rykov / Shank / Claims Officer,31397,119375,5 +142820,Jean,52454,211900,4 +142821,Beauregard Billings,84575,848678,1 +142822,Regret,72096,2876,0 +142823,Fidanzata Calciatore,48805,1882767,8 +142824,Lieutenant Colonel J.C. Neill,10733,36637,18 +142825,Chin Chin,18758,134883,3 +142826,Mrs. Flamhaff,10096,62595,17 +142827,Delio,42674,128417,11 +142828,Prince Hal of Wales,24442,6836,6 +142829,Bárbara,331354,935765,6 +142830,Keeley,24469,91645,8 +142831,Officer Randy Randazzo,68684,1602373,28 +142832,Richard Auger,41277,1375201,10 +142833,"Ruth, at Christmas Party",179066,209969,21 +142834,Gemma,353728,1210466,4 +142835,Salvatore Chiarelli,43200,107626,2 +142836,Stephanie Kendrick,1976,119404,13 +142837,Steve - Maritime Commissioner (uncredited),44869,93624,19 +142838,Policía (uncredited),42502,1664704,19 +142839,Himself / Joe Simpson,43514,121018,1 +142840,Jan,270650,1359961,29 +142841,The Minister,3081,1185451,13 +142842,Guildenstern,120729,649,8 +142843,Himself,19244,84392,1 +142844,Nellie,49391,1604466,19 +142845,Dr. Isabel Maru,297762,3623,6 +142846,Lorelei Wright,312497,1383004,15 +142847,Kate,62492,1816955,14 +142848,Rachel,349948,150832,2 +142849,Hodges,44890,12310,5 +142850,Michel,197175,38907,2 +142851,Buzz Wanchek,16090,79246,2 +142852,Templeton / Lurvy (voice),21250,81178,2 +142853,Native,39276,97204,15 +142854,Lt. Margaret 'Racetrack' Edmondson (archive footage) (uncredited),105077,32202,26 +142855,Boone,456781,237747,0 +142856,Cleopas,335778,77823,12 +142857,Guest Appearance,341420,1478687,10 +142858,Cathy,47186,51384,19 +142859,Gina,18633,87227,1 +142860,,247354,1279013,4 +142861,Tony Wolf,41932,100618,12 +142862,Ray Carter,9471,418,4 +142863,Stéfanie Bellair,110160,143595,3 +142864,Thumley,29694,13790,13 +142865,Dennis,81475,1008015,8 +142866,Herself,126016,1218653,5 +142867,Roosje,24199,88048,6 +142868,Erik Svenson - pilot,19757,23265,7 +142869,Himself,151870,1165401,4 +142870,Rental Car Attendant,157829,157059,22 +142871,Trish,59962,151254,9 +142872,"Karl, 'Cabin Crew'",86254,945955,10 +142873,Keith,266400,1224723,4 +142874,Papa Saulino,37083,116848,4 +142875,Construction Worker (uncredited),337339,1804451,48 +142876,Sally Cameron,208434,12309,3 +142877,Roger,2778,28166,6 +142878,Vidar,346672,21193,5 +142879,John Foley,28452,100853,4 +142880,Popat,214938,1199621,3 +142881,Артем Колчин,56372,224281,2 +142882,Officer Lister (voice),9297,36811,12 +142883,Filthy,125063,1232334,1 +142884,Burnett,62755,514,1 +142885,Street Thug,51036,99857,52 +142886,Junko / Ah Shun,41378,1575556,2 +142887,Thief (Tamil version),148265,141076,8 +142888,Gil Highdecker,70863,18708,24 +142889,Jonathan Alcott,41211,7062,4 +142890,Lady-in-Waiting (uncredited),41609,3340,16 +142891,la chanteuse noire,50350,578714,10 +142892,Mrs. Garvey,1586,59199,6 +142893,Tommy D.,42188,37625,1 +142894,Stormtrooper,330459,71538,67 +142895,Preceptor,21070,932514,12 +142896,Berndt,246860,1204265,10 +142897,Priest,205584,1535051,24 +142898,Shawna Cawley,75595,1137888,13 +142899,Le gosse,43904,142915,4 +142900,Le chef des Cheveux Sales,21778,16927,4 +142901,Han Mei,263341,1408146,12 +142902,Amanda,77877,550317,6 +142903,Adelina Saulino,37083,79731,1 +142904,Pianist,277968,1898505,41 +142905,Elizabeth,97206,31717,2 +142906,Mason,85350,931944,0 +142907,Le commissaire,33436,26879,5 +142908,padre Amerigo,310126,131632,6 +142909,Lindsay Roberts,40208,10826,0 +142910,Maria Espinoza,169298,967625,18 +142911,"Silab, the Will o' the Wisp (as BJ 'Tolits' Forbes)",67174,1486754,4 +142912,,49961,143120,17 +142913,Eli,118677,44735,0 +142914,Himself,36883,10367,0 +142915,Desmond,15689,78548,1 +142916,Gjino,276123,1330012,1 +142917,Lynch,250332,33855,69 +142918,Marcelina criança,203217,1683031,13 +142919,Brendan Mullen,17137,11007,1 +142920,Valerie,367732,1363744,6 +142921,Lt. Danny,261037,55205,8 +142922,Patroller,76203,1295668,46 +142923,Madge Gorland,25736,19413,5 +142924,Spencer Ludlow,276401,8785,3 +142925,Aarthi's friend,236808,1424311,6 +142926,Duke Davis,94739,939684,0 +142927,Alex Bell,53999,60715,10 +142928,Metro Policeman Double,383538,1851865,12 +142929,Fellow Conscript,203833,1445755,32 +142930,,315467,240,5 +142931,Narrator,56143,4958,1 +142932,Adam Gund,42819,4173,7 +142933,Gordon Szalinski,11425,52043,4 +142934,Tiago (voice),172385,992427,10 +142935,Miguel de Alvarado,16432,64416,7 +142936,Claudia,251555,972286,7 +142937,Rebecca Prescott,11897,11025,17 +142938,Mark,48636,1466240,2 +142939,,63401,1606882,15 +142940,Brookes,15073,3064,0 +142941,Sgt. Dobbs,217948,14562,5 +142942,Manager,46387,86057,14 +142943,Pa Cox,6575,10361,4 +142944,Josée,32338,114953,6 +142945,Claire Miller,31377,1063,3 +142946,Dirty Fred,216521,111446,0 +142947,la Mère de Jack,32338,67905,7 +142948,Margot Chapelier,157787,100371,0 +142949,Priest,107430,165897,14 +142950,Netta,347328,1400689,6 +142951,The Trained Soldier,55343,1154773,4 +142952,City Councilman,332280,30036,42 +142953,Scott,1665,18515,3 +142954,Future Wade (voice),51786,61981,7 +142955,"Zhao Di, Old",12276,72018,3 +142956,Slave Girl,1271,119250,71 +142957,The Coolie,42678,84229,9 +142958,Portiere Hotel,59040,31544,19 +142959,Stephanie,105768,1121961,5 +142960,Dee Dee,19912,1905541,17 +142961,,47190,543624,11 +142962,Sam,339403,1370972,15 +142963,Deunan Knute,269650,201838,1 +142964,The Minstrel,20650,8830,2 +142965,,209413,237806,5 +142966,Purcell Avery,42871,2646,6 +142967,Felipe Riva,268920,1983,20 +142968,Søvnforsker Arne,5177,234741,9 +142969,Pauline,55853,551790,9 +142970,Bambi,253154,236695,0 +142971,Dream Chaser Pilot,365942,1529184,10 +142972,Felix,129115,1187535,4 +142973,,190883,1171452,2 +142974,Cop (uncredited),47882,120200,24 +142975,Brendan (voice),26963,96669,0 +142976,Luc,408024,1615537,9 +142977,Background Dancer for Title Song,21570,1170143,13 +142978,Mayor Stevenson / Weather Man (voice),123025,15831,33 +142979,General McKee,1450,136039,7 +142980,Evelyn,10320,5606,5 +142981,Abrasax Alien,76757,1394330,21 +142982,Sheriff Travers,270015,31260,7 +142983,Penche-à-gauche,43000,70142,4 +142984,Todd,44634,66101,3 +142985,Outlaw,174000,18272,3 +142986,Prince Phanong,79466,20904,1 +142987,Ben,20357,5472,0 +142988,The Amazing Racist,156268,1137588,4 +142989,POW CAMP Soldier,294690,1390500,9 +142990,,34280,70718,10 +142991,Adrian Pryce,87516,82191,3 +142992,Forest Ranger,84944,103866,3 +142993,jako Zosia Głowacka,406449,1650372,1 +142994,Andrea,301804,572407,9 +142995,Willie Green,19174,109086,1 +142996,Himself (archive footage),132150,566295,3 +142997,Dani,280840,1531132,3 +142998,Sybill,102961,1397088,10 +142999,,289278,282708,9 +143000,Club Bartender,167810,1394330,33 +143001,Chuy,272878,1527313,16 +143002,Lieutenant West,102629,2224,2 +143003,Giovannini,58011,120276,8 +143004,Nash,334074,517,0 +143005,Abrika,206647,89624,26 +143006,Inge (as an older woman),31048,2207,4 +143007,Libby Atenton,69668,3293,2 +143008,Booker,149515,128324,2 +143009,Dev,42057,16756,9 +143010,Leslie,55433,222375,8 +143011,Vieille Dame (voice),52264,1449405,12 +143012,Pete Jones,255869,42746,1 +143013,,79234,994440,13 +143014,FBI Agent,38322,1869043,39 +143015,Sandra,62012,583223,4 +143016,Nurse,20028,85491,6 +143017,Second Policeman,28170,181949,8 +143018,Father-in-Law,38749,52463,7 +143019,Grandma Bridges,43753,129804,10 +143020,Alex Purvis,73215,227768,0 +143021,Sherm,13090,15900,8 +143022,Madame Vrack,76651,35879,8 +143023,Krankenschwester,130739,569366,24 +143024,Cashier,56596,1163123,16 +143025,"Piccio, Pepe's Nephew",39979,1091541,19 +143026,Frederik Losensky,133183,38624,7 +143027,Manson Camp Kid (uncredited),381737,1848807,27 +143028,Fisherman at the Beach,108017,559948,9 +143029,Narc Officer in Hallway (uncredited),4982,1463961,80 +143030,Uschi,10659,48509,10 +143031,Squints,21138,88599,4 +143032,Blanche,78028,138013,2 +143033,Pete,747,11115,5 +143034,Grace Harrington,75626,575788,3 +143035,Bus Conductor,340101,293843,28 +143036,,154207,2372,1 +143037,WGHP News Anchor - Video,32657,1507606,50 +143038,Aunt Ramona,38303,10205,1 +143039,Lennard,294483,44639,5 +143040,Bradley,133255,593759,4 +143041,Pallbearer,198652,1179388,17 +143042,Yelena,303542,67320,5 +143043,Security Man,86828,1132153,22 +143044,Charlotte Cole,16784,11870,5 +143045,Kari,102382,190895,24 +143046,Suzanna,46228,27578,1 +143047,"Sam Sheepdog, Ralph Wolf (voice)",148356,33923,1 +143048,Doctor,16214,109412,15 +143049,Vlad,63281,80999,0 +143050,Carl Pronger,331313,14721,7 +143051,Jonas,211158,44533,0 +143052,Muumipeikko,293271,1279821,5 +143053,Billy Chapman (age 18),27414,97716,3 +143054,Eli Chelarin,89337,5274,1 +143055,Rex,87302,555068,0 +143056,Admiral Raddus,330459,100085,29 +143057,Fuji,218508,76976,16 +143058,Kersantti Jantunen,55756,223076,13 +143059,Gaunt,170548,29305,4 +143060,François Tellier,76200,27440,2 +143061,Nicole,61552,3932,6 +143062,Internet Troll (voice),378236,87281,15 +143063,Baymax (voice),177572,66580,0 +143064,,1661,38968,13 +143065,Henry Chilcet,22387,134872,18 +143066,,358901,1507228,2 +143067,Donoso Cabral,16432,1418518,5 +143068,"Radio DJ ""The Lemur""",14923,109365,35 +143069,Lisa,123949,81003,0 +143070,Niko,87826,89402,6 +143071,Anna Hesse,293082,115888,5 +143072,Basil Underwood,106635,11493,0 +143073,Captain of SS Periwinkle,46026,34747,3 +143074,Dr. Parineeta,66702,35745,1 +143075,Casey Jacobs,317144,1181313,0 +143076,Eva's Dad,343795,1279102,6 +143077,Glader,198663,1415408,18 +143078,Pushkin,12594,27037,20 +143079,Kaneda,1272,9195,5 +143080,Julius,126127,106805,6 +143081,Zoe,344039,36594,2 +143082,Lena Engstrom,63858,995606,8 +143083,Jan Burres,5915,2229,5 +143084,Man at Hotel Desk,127812,98047,40 +143085,Naevius Sutorius Macro,206514,655,12 +143086,Ivete,82968,1018913,6 +143087,Homily (voice),51739,56322,13 +143088,Chief,53576,1065087,8 +143089,Conover,153161,975343,38 +143090,Ultra Max Prison Guard (uncredited),337339,1804418,39 +143091,Dottore,38285,7547,13 +143092,Edmond,20421,86111,2 +143093,Dr. O'Connor,121354,2646,6 +143094,Akiko Fuji,418029,147417,5 +143095,Noguchi,3782,7454,6 +143096,Eddie,13836,11159,16 +143097,Older Elder,146926,1166919,7 +143098,Dr.Devlin,339312,29239,8 +143099,PC Primus,1253,933684,11 +143100,Himself,43491,1238762,9 +143101,Himself,88042,16832,14 +143102,Anthony,332979,1616703,22 +143103,Cosmetics Lady,168027,1523211,13 +143104,Lord Southwood,43692,140109,5 +143105,Wyclef Jean,4551,4246,16 +143106,,264036,1308677,7 +143107,Nate,384682,1109702,8 +143108,Greenfield,24624,96895,10 +143109,G.P. Bentley,179066,9067,2 +143110,Colonel Darnell,297762,143892,30 +143111,Ceasar,70863,11160,1 +143112,Jogger,40258,17496,10 +143113,John J. Sheridan,10916,2547,0 +143114,Cheryl,348507,53924,6 +143115,Xiaochun Ye,270724,572043,1 +143116,Pierre,72465,17499,1 +143117,Paul Trenton,288503,44261,3 +143118,Nick Decker,298158,141,2 +143119,Freddy,14400,5079,5 +143120,Pompey,34469,38026,3 +143121,Himself - Officer Obie,5638,81548,9 +143122,,53407,148760,17 +143123,Indian at Cross Tree,42701,544142,5 +143124,Stuart Miller,218784,10872,9 +143125,Old Lady on Street (uncredited),31913,1209678,28 +143126,Francois Pignon,10484,24501,0 +143127,,346723,550394,6 +143128,Cookie,20583,1735,3 +143129,Guy in Crowd,16996,1494736,38 +143130,Well Dressed Man,215379,1385277,18 +143131,Stock Boy,354979,1835274,59 +143132,Mrs. Christopher,181876,131449,1 +143133,Mr. Sickle,342472,75604,9 +143134,Joni,39781,76070,3 +143135,Bar Patron,24619,989813,31 +143136,Queen Elizabeth I / Asphyxia XIX,51247,8436,2 +143137,Latigo,43319,4080,9 +143138,Janik Vinter,177677,92429,9 +143139,General Zod,49521,335,2 +143140,Wedding Guest,43809,173693,55 +143141,Charles Alberts,82631,129101,3 +143142,Robert - Hat Check Man at Party,20644,87825,14 +143143,Sanjay,331313,1739695,11 +143144,Herself,37514,117844,1 +143145,Mario Carlotti (as Edward Phillips),175334,117584,6 +143146,Young Girl on Plane,330115,1837456,15 +143147,Danielle,70695,36594,0 +143148,Himself,329243,15832,5 +143149,Barnaby Fielding,44001,130003,10 +143150,(France),1926,4532,2 +143151,John Stenton,2274,21179,8 +143152,Hot Potato #2,30411,106252,18 +143153,Freshman,411081,1864378,6 +143154,Tiger,64316,119605,9 +143155,NASA Student (uncredited),365942,1670757,54 +143156,Himself,18094,103214,3 +143157,,260094,1302705,4 +143158,Corporal Tonc,330459,1371050,41 +143159,Solly,94340,1001701,3 +143160,Le dragueur,11227,582861,5 +143161,Sandy,269173,1388903,18 +143162,Nellie Blane,43821,95301,18 +143163,Butch Hopkins,215881,58371,10 +143164,,47324,1620573,13 +143165,Tove,75233,563065,3 +143166,Queen Gorgo,1271,17286,1 +143167,Simbad,317389,103921,1 +143168,Tammy,15936,999605,10 +143169,Father Williams,30996,1547066,11 +143170,Proctor,131737,28848,4 +143171,KIM Yu-shin,65881,96484,0 +143172,Maureen Duffy,245706,171472,26 +143173,Dr. Eve Saks,152532,9278,1 +143174,,214105,1198741,0 +143175,Sweet Lou,20210,84763,3 +143176,Doyle,11329,12538,7 +143177,Emma Glavey,98364,20624,6 +143178,Jean,72602,1295583,5 +143179,Mamma,41493,33190,3 +143180,Pizza Dog,246655,1796417,68 +143181,Akiss (uncredited),42040,21708,7 +143182,Woodfoot,127564,19411,2 +143183,"Harriet, the nurse",8429,54941,13 +143184,Pothinus,31561,93900,4 +143185,Jason,186759,1216132,18 +143186,Aledo,180418,96686,1 +143187,Taxi Driver,12796,82558,14 +143188,"Davis, Fowler's Butler (uncredited)",43808,96721,15 +143189,Joyce,38987,3063,1 +143190,"Тася, дочь Сретенского",83461,55512,1 +143191,Filippa,11832,1429995,29 +143192,Captain Hector Barbossa,58,118,16 +143193,Group Captain 'Tiger' Small,41312,10018,0 +143194,McGurk,2143,132887,8 +143195,Kiki,408509,1679095,6 +143196,Trixie Odbray,147876,179384,5 +143197,Vic,76494,2632,10 +143198,Rip off Gei,64316,1173757,16 +143199,Doctor,18045,82646,7 +143200,Agent Gibs,24756,182201,6 +143201,Lyle Massey,18722,553429,14 +143202,Jackson,324670,1402671,22 +143203,Lucia,98025,1016069,6 +143204,Minister,222935,27692,16 +143205,Hilguegue,57382,114712,3 +143206,Barry Huggins,315872,1241,1 +143207,Grace (as a child),242631,196408,12 +143208,Harlan,107319,106178,9 +143209,Ed Janis,18927,1073485,9 +143210,Elisa,331962,1568025,12 +143211,Young Guy,1724,1366361,31 +143212,Youngblood,85651,540965,2 +143213,Himself,43491,1353261,10 +143214,Detective,301804,101847,4 +143215,Wounded Soldier,150712,127520,13 +143216,Mike,332079,30272,3 +143217,Dr. Spencer,10071,46920,5 +143218,Officer Grabowski,264644,86237,7 +143219,Krisha,323929,150929,0 +143220,Herr Bredow,11869,48038,3 +143221,Himself,15260,1513167,12 +143222,Nanna,18072,8326,10 +143223,Fidelia,127424,1084477,7 +143224,Angela,13072,1634913,10 +143225,Catherine,89492,55536,6 +143226,Gingerbread Man/Cedric/Announcer/Muffin Man/Mongo (voice),809,12080,9 +143227,Neighborhood Kid (uncredited),25132,1112460,25 +143228,Cowboy Dick,286532,191202,5 +143229,Homily (voice),51739,39187,16 +143230,Lu Paes,70666,1040906,35 +143231,MaleTelaa,37645,144957,10 +143232,Chin Do's father,25425,1134726,5 +143233,Kommissar Haupt,177979,48371,4 +143234,Margello Verziera,46567,1008488,11 +143235,Gianluca,419522,1650400,4 +143236,MNU Mercenary (uncredited),17654,1137847,42 +143237,,335897,7828,8 +143238,Finetti,43548,1692865,20 +143239,Sexy Girl (uncredited),10066,1094514,14 +143240,Eden Drebb,37405,220753,0 +143241,Albano,216369,930771,5 +143242,Dr. Carole Nelson,27966,2434,1 +143243,,11909,579216,4 +143244,Transforming Dust Devil in Dream Sequence (uncredited),5237,42175,5 +143245,Themselves,16666,570800,3 +143246,Mortimer Toynbee / Toad,127585,1284084,23 +143247,Schmolk,58995,9927,4 +143248,Boss Fay,13807,20519,2 +143249,Mr. Crampfurl,110227,2549,7 +143250,Capitaine Barthas,10795,20081,16 +143251,,89445,1667526,7 +143252,Godfather,43459,30304,7 +143253,Kamal al-Issawi ('Ali'),43434,1117770,4 +143254,Barn Girl #1,58467,1386672,29 +143255,Esposa Nuevo Alcalde,14430,112214,19 +143256,Violet,393562,1699688,12 +143257,Reporter,109716,1421013,39 +143258,Rose Bianco,84655,16757,0 +143259,Mall Patron,38322,1869041,36 +143260,Joe Gordon,28663,121364,13 +143261,Willie Clark,119694,2314,1 +143262,Spring,156360,1040564,11 +143263,Brad,310972,206405,3 +143264,Safari member,104973,1057470,8 +143265,Le Chuchoteur / The Whisperer (voice),83201,12071,8 +143266,Sao Mei,38034,119468,3 +143267,Mr. So (as Cheung Siu Fai),18747,72732,4 +143268,Bernstein Chandler,31913,84878,6 +143269,Schmidt,88288,35322,7 +143270,Mutter Spaghetti,1912,46309,18 +143271,Io (Voice),68179,43775,12 +143272,Thumper's Sister (voice),13205,42160,9 +143273,Michael Axford,250332,120818,2 +143274,Jacob,31890,17482,13 +143275,Bill Martin,93935,3017,7 +143276,Agent Ray Dawson,26486,76476,11 +143277,Actor,218784,60846,13 +143278,Ratchet (voice),9928,17141,16 +143279,Allison Densmore,91607,30618,1 +143280,Dr. Paul Linstrom,43241,108299,2 +143281,portiere dello stabile,165159,100932,4 +143282,,324572,211236,5 +143283,Johnny Faro,69035,110,2 +143284,Benefits Supervisor,3563,32905,8 +143285,Tom Houdini,18189,8695,3 +143286,911 Man,45132,78021,40 +143287,Katie Madden,43896,136151,3 +143288,Mechanic,334527,982098,23 +143289,Terry's Jazz Quintet,149509,1432727,33 +143290,Colonel Thomas F. Brown,252916,178408,2 +143291,,188684,1200219,10 +143292,Himself,413782,131201,11 +143293,Grandma Delores,87428,170804,16 +143294,Killer Kane,23331,33777,3 +143295,,64454,50981,16 +143296,Juanjo,53739,574223,5 +143297,Tom,268174,53116,6 +143298,Senator Vaspar,330459,57012,26 +143299,Dadima,60392,630988,5 +143300,,83732,930019,0 +143301,Agent Jackson,405882,62784,3 +143302,Alex,48116,1030523,1 +143303,Walker Paige,251227,1286522,10 +143304,Robin,4551,20373,27 +143305,,332354,1444929,13 +143306,Yu Jishi,25626,25246,2 +143307,Game Show Host,35826,1219832,13 +143308,Maggi Jackson,362026,1283,1 +143309,Bouboule,29259,103401,7 +143310,Jelena Ljubisavljević,284154,32358,3 +143311,Butch Williams (as Bennie Bartlett),178569,556861,7 +143312,George Washington,52360,541888,14 +143313,Chuck Connors,147876,29260,1 +143314,Bates - Intern,153163,29626,27 +143315,Slave Girl,1271,1330771,67 +143316,Steve Miles,43319,16420,4 +143317,Maddy,101998,1177623,1 +143318,Lord Dundas,15163,104795,13 +143319,Doll / Jill (voice),809,936669,20 +143320,1978 Museum Staff,55347,159068,19 +143321,Duke Edward,30844,1168885,6 +143322,Cop at Protest,2976,5941,25 +143323,Rob Moscone,44945,82631,21 +143324,Gangster Prankster / Luther,29054,102690,3 +143325,Miss Scandanavia (uncredited),11338,1213767,35 +143326,Mrs. Cassidy,33025,99329,6 +143327,Mrs. Broomstead,51249,20765,7 +143328,Krampus,287903,1048610,9 +143329,Mr. Taylor (uncredited),48627,30539,13 +143330,,264264,1031246,4 +143331,Bessie Mae Curtis,94176,20624,7 +143332,Geheimrat Schlüter,54769,20865,0 +143333,Ron Klain,14050,1979,0 +143334,Joe,40368,556933,14 +143335,Jim Martin,24874,79396,1 +143336,Civilian (uncredited),44943,1205902,55 +143337,Dennis Wilson,271714,83276,4 +143338,Card Dealer,377170,29274,39 +143339,Vlad,127521,1084850,7 +143340,Suzanne Quoirez,14555,146492,7 +143341,Katerina Schrammel,42537,35504,5 +143342,Annie,26983,96734,7 +143343,,9503,553005,18 +143344,Luke,58467,73700,17 +143345,Noah,195022,1180695,1 +143346,Mama Lucas,4982,15532,11 +143347,Mal,237584,1544808,25 +143348,Dr. Matson,52122,21877,1 +143349,Marsha Reynolds,321039,1365231,21 +143350,Sam's Mom,186759,1219121,19 +143351,Ichi,19506,83526,0 +143352,Andrew Hunter,42599,39950,2 +143353,Commissioner,61988,16412,2 +143354,,85327,84762,11 +143355,Miguelito,352094,145219,6 +143356,Mrs. Vincent,286521,1344349,8 +143357,Clem Hall,30054,8519,12 +143358,Model (uncredited),32552,166961,19 +143359,Babis,87908,107836,0 +143360,Eugene Skinner,9664,58431,4 +143361,Frank,36229,36014,3 +143362,Sôichi Negishi / Johannes Krauser II,22025,79037,0 +143363,Party Official Anchor,11248,1322114,21 +143364,Protester,50647,1492804,28 +143365,Aristotle Sarajos,936,132476,10 +143366,Mary,369033,1218223,5 +143367,Profalla - Schuldiener,58166,24440,11 +143368,Himself,407806,1236595,2 +143369,Agent Shah,148284,961268,6 +143370,Bud Cowan,91138,1370,0 +143371,Town Gossip,10299,90230,23 +143372,Bianca,17927,81164,4 +143373,Hiroko's Grandfather,18722,97629,15 +143374,,327231,1137377,6 +143375,Choong-seop,387886,108538,4 +143376,Committeeman,56558,120816,56 +143377,"Ray Mason, Radio York commentator",48959,28476,4 +143378,Nicolas,67314,5440,3 +143379,Herself,105583,1306541,18 +143380,Tom Bellamy,333352,936404,16 +143381,Miss Pappalardo,146970,30664,5 +143382,Mr. Chan,9993,930817,19 +143383,Michael Lane,336167,137750,3 +143384,Julie Herrick,28425,30133,2 +143385,Bob,28063,39020,7 +143386,Nathan Robbins,193040,1173456,1 +143387,Mya Edwards,159701,3128,2 +143388,Gian's Mother,265712,1252635,14 +143389,"Rajnák, igazgatóhelyettes",42132,125365,11 +143390,Phil,85200,55930,7 +143391,Noreen,184345,1294,4 +143392,Gabrielle,13713,81786,9 +143393,Julian Rome,22076,13548,0 +143394,Riga,8340,54612,4 +143395,Mike,18044,21298,1 +143396,Armand Tucker,17317,62842,1 +143397,Martha Kirkland,116340,85011,1 +143398,Dorothea Garibaldi,37609,16217,8 +143399,Daredevil Dan,116977,76669,1 +143400,,80660,5920,1 +143401,Louise,54832,25160,4 +143402,Jessica,36968,27144,8 +143403,Everett,13022,39545,10 +143404,Janet,16005,169337,11 +143405,Najid,311324,35434,13 +143406,Damiano,363757,59270,1 +143407,Himself,406431,83522,5 +143408,Laura,364379,1523858,6 +143409,Carlita (voice),88557,936991,9 +143410,Nurse,101242,1026730,8 +143411,Herbert Trent,27549,1232373,9 +143412,Leo,112961,1159,1 +143413,Esteban Fuentes,63260,53950,2 +143414,The Bridegroom of Cana,3059,633744,33 +143415,Rick,228970,1330039,13 +143416,Ras,52452,75846,4 +143417,Police Officer,24094,97464,27 +143418,Silver,167424,36551,4 +143419,Chalker,118889,89662,42 +143420,Lydia,4948,6250,0 +143421,Girish Karnad,253533,113810,5 +143422,Engineer #2,19665,123308,23 +143423,Ely B. Windgate,79521,29601,10 +143424,Bulma Briefs,39148,122193,4 +143425,Liu Bei,14538,94972,6 +143426,Herself,253309,1408696,3 +143427,Wilbur Whateley,65891,923,1 +143428,Riley,13991,77916,3 +143429,,68715,133604,10 +143430,Adrian Sinbad,44773,41687,0 +143431,Marcy,266741,1212620,6 +143432,The Salesman,58467,1704727,25 +143433,Kim,70074,1083165,11 +143434,Jessica,56804,8776,2 +143435,informatore di Malgradi,356296,1448287,16 +143436,Sally Campion,13519,98944,24 +143437,Maggie,59191,10386,3 +143438,Ewa Pobratyńska,156627,1137925,0 +143439,Jess Peel,51619,118239,4 +143440,,139571,1304639,7 +143441,Earl,141733,6074,5 +143442,Narayana Rao,353533,545595,4 +143443,Jimmy Testagross,76785,12260,4 +143444,Dr. Dan Wharton,28433,37448,3 +143445,Charlotte,43741,17521,3 +143446,,285532,83147,4 +143447,2nd Tugman,47412,138894,12 +143448,Steve Jobs,115782,18976,0 +143449,,320873,1427450,2 +143450,John Popper,88583,65505,2 +143451,Hostage,359471,1509235,28 +143452,Miss Jane MacVickers (uncredited),73430,120710,29 +143453,Malcolm,397422,1344380,18 +143454,Sasha,352498,1492326,1 +143455,Gavin David,333484,52885,29 +143456,Maya,310123,1495913,1 +143457,,143073,86711,8 +143458,Darrell,300090,131006,2 +143459,Agent Curtis,413052,5918,5 +143460,Bobbie,83735,79008,3 +143461,Thompson,75564,1399610,12 +143462,Gabriel,57215,152607,2 +143463,Ben,366548,1531256,2 +143464,Jody Maida,142216,1176781,12 +143465,Leche/ Wounded Man,21191,57410,6 +143466,Cathy Gallagher,5413,43135,8 +143467,Anna,40817,124683,10 +143468,Otis B. Driftwood,37719,10798,0 +143469,Tara,10748,118039,15 +143470,1. Kriminal-Inspektor,88176,18964,8 +143471,Dr. Gracia Scott,128612,77013,1 +143472,Polish Police Archer,246655,1796398,44 +143473,Mailroom guy #1 (glasses),253077,53684,12 +143474,Transsexual (Arabian) #3,1271,1330778,76 +143475,Vanessa,84060,1129685,6 +143476,'Sweater' Woman,286521,116691,26 +143477,André,39415,38901,2 +143478,Michael,8617,55464,4 +143479,Denise,9993,61635,11 +143480,Mrs. Cubano,18208,25654,7 +143481,Sigrid Drusse,22140,935445,2 +143482,Mr. Wiggins,292294,2101,7 +143483,Hessler,35405,10657,7 +143484,Natan,38021,5079,2 +143485,Jorge,121929,1727875,5 +143486,Blonde Cutie,87123,144400,13 +143487,Court Attendee,339994,1593373,27 +143488,Eli Caine,20361,85985,10 +143489,Agent Doug Carlin - ATF,7551,5292,0 +143490,Allan Karlsson,145247,74699,0 +143491,Lida,52520,65345,6 +143492,Holly,11577,3174,11 +143493,Bridesmaid (uncredited),263115,1711524,101 +143494,General #1,267935,198615,7 +143495,Rupert Rodnight,13802,68307,32 +143496,Swan,388764,932680,4 +143497,Rich,199056,67711,7 +143498,The father,129277,1891594,4 +143499,Manell,111960,40964,8 +143500,Mage (uncredited),274857,1270840,70 +143501,Siva,75162,1563602,12 +143502,John Munn,16131,20212,4 +143503,Cass,36299,21315,9 +143504,Herself - Host,98438,26996,2 +143505,Ella Mae Zook,74549,174119,12 +143506,Creepy Clockwork Chorus (voice),48466,140970,11 +143507,Cop,70006,52483,2 +143508,Liz Alman Parks,221135,161023,5 +143509,Kim Cha-in,408620,1155298,3 +143510,Tejinder Rajpal,177358,35779,1 +143511,Himself,410718,223,7 +143512,,289232,1548315,7 +143513,"Сэм Пэнти, художник",65089,1600854,1 +143514,Maude Mockridge,183171,21878,7 +143515,Sailor,47900,1308078,5 +143516,Bunny Fan 2 (voice),9502,1448991,24 +143517,Dr. Charles Decker,43023,3796,0 +143518,Gary Hinman,381737,32204,13 +143519,Jimmy,17240,117657,6 +143520,Ben Wilson,37420,8447,0 +143521,,164366,88808,0 +143522,Himself - Russian President,57809,588040,11 +143523,Mrs. Tifton,87123,29315,4 +143524,Sheriff Howard,86825,53916,8 +143525,Mary,3061,29985,0 +143526,Aramina (voice),23566,92077,3 +143527,Lisa,13792,26057,2 +143528,Brett McIntosh,70404,158375,6 +143529,Jasper,76203,16460,33 +143530,Col. Weissner,11046,119360,15 +143531,Hendrickje Stoffels,66082,40938,1 +143532,Mohan,2577,26201,4 +143533,Phuchit's Father,13436,1647928,7 +143534,,19621,617651,19 +143535,Dimitri Nicolov / Danis Nicolov,13336,238393,5 +143536,Dr. Lewis,74836,1057915,5 +143537,Irma,26204,86346,13 +143538,Barfly / Workman,197737,1045763,41 +143539,Valerie Stresemann,43395,83262,5 +143540,Juiz Thatcher,42473,106121,16 +143541,Jerry Farlander,19255,8447,4 +143542,Mother,109886,34213,7 +143543,Alfredo Cardozo,38461,15666,4 +143544,Kissing Man,242224,1413776,28 +143545,Fa Moon Lau,37702,1619922,17 +143546,Edward Ferrars,315010,221018,4 +143547,Wilma Flintstone (voice),42515,145257,4 +143548,Fighter 1,71503,219634,21 +143549,Dino/Mourad,44155,22306,0 +143550,John Dessark,229757,89813,5 +143551,Savannah,330947,147084,19 +143552,Markus,74103,112241,9 +143553,Madame Bessie,49762,142759,8 +143554,Mr. Pricklepants,130925,10669,12 +143555,Luke,47462,139620,10 +143556,Le manager Montecarlo Bay,41211,1186075,10 +143557,Veronica,2001,1781717,60 +143558,Prisoner of War,256962,1819135,66 +143559,Police Chief,385261,139493,4 +143560,,84771,189494,1 +143561,"Miss Williams, Bridesmaid",45692,96816,9 +143562,Mrs. Cratchit,229056,39802,9 +143563,Critic,49522,87525,6 +143564,Bøffen,11391,225920,8 +143565,Rafael,331962,1706116,21 +143566,Alfred,115712,1061943,1 +143567,Orderly #1,146216,1402411,31 +143568,Colonnello dei Carabinieri,41610,295908,9 +143569,Lena,311291,11855,3 +143570,Wirt,167330,1249400,17 +143571,Sun-hee's friend,54659,1108918,4 +143572,Nagachika Narita,209032,149405,0 +143573,ZOO-Direktør,21282,68454,10 +143574,Frédéric Dumas,332794,1185235,10 +143575,Hawk Dove,82191,41236,0 +143576,Midwife,48205,37065,6 +143577,Nemo Nobody,31011,7499,0 +143578,Dick Summers,42703,10158,1 +143579,Kimberly,15671,147892,7 +143580,Susan,260947,328,3 +143581,Russell,253235,1224384,11 +143582,Xao,146926,68559,3 +143583,Ben Gunn,83191,109,3 +143584,Prof. Betz (as Umi Raho),38681,25816,5 +143585,Virginia Lofton,44540,90423,2 +143586,Robbins,30361,52023,3 +143587,Cocktail Waitress,298,1115997,18 +143588,Médico,299165,1062244,18 +143589,Juggler,131360,30496,13 +143590,Reverend Zombie,11908,19384,12 +143591,Bruno Winter,10834,5266,0 +143592,Lidija,341559,1496481,7 +143593,Dr. Stephanie Lake,64202,2713,3 +143594,Krishna Veni / Priya,253533,225312,4 +143595,Carlos,68123,1450840,6 +143596,,72054,1439241,19 +143597,Pitonisa Lola,131932,1482622,11 +143598,The Colonel,157843,1907176,38 +143599,Großmutter,231216,1857,1 +143600,Zagarella,64465,584175,8 +143601,Blanche Ingram,22744,8241,11 +143602,Régis Hempel,320318,43649,7 +143603,Lyndsey,415633,1678284,5 +143604,Anton,47962,55668,1 +143605,Bull,33642,161715,4 +143606,Osvaldo,17974,3281,1 +143607,,400552,4797,8 +143608,Dr. Druten,49354,133738,3 +143609,Hostess Rebecca Fornier,13173,80591,17 +143610,Dakota,306952,101565,42 +143611,Harris,7548,1709,14 +143612,,54858,937844,5 +143613,Dance,10096,1223005,43 +143614,Bearded Face,20766,1297772,11 +143615,Judge Bingham,242131,150082,3 +143616,NASA Security (uncredited),365942,1650132,64 +143617,flygmekaniker,76380,321845,9 +143618,Michel,39415,35524,3 +143619,Claudia,2001,1781689,17 +143620,Perdiccas,1966,20289,22 +143621,Slug (voice),27653,34982,9 +143622,Dancer,103620,1446851,24 +143623,Eddie,22584,4302,1 +143624,maalaispankin johtajatar Kaarin Forssell,442752,222329,10 +143625,Inmate 178,94365,8396,4 +143626,Matroskin the Cat (voice),77762,99282,1 +143627,Mike,128270,1816960,41 +143628,Marvin,142216,504,10 +143629,Larry Burgess Jr.,7233,88076,12 +143630,Vicky / Rafik's Sister,9959,61014,15 +143631,Dr. Allen,7871,195078,19 +143632,Angel / Phone Store Employee (voice),378236,587697,16 +143633,Social Worker,5915,46596,11 +143634,Swaraj,21566,1105803,10 +143635,Rachel,14976,14892,1 +143636,Sharon,73424,6832,1 +143637,Himself,23524,236679,10 +143638,Insp. Tansill,27450,183218,17 +143639,David Junior,11354,62880,8 +143640,Teacher,104376,235876,6 +143641,Tommy Banks,22968,6725,8 +143642,Kate,301875,582722,8 +143643,"Himself, film historian",135313,109255,2 +143644,Michael,14435,1114307,14 +143645,Zeynep,179715,130400,0 +143646,Doug,213681,77089,7 +143647,Koijirô Arash,53064,1107769,2 +143648,Finot,144111,89744,10 +143649,Dave,27035,7683,3 +143650,Funeral Attendent,379959,1604103,16 +143651,Monsieur Paul,74822,26163,6 +143652,Lab Asst,80596,5825,28 +143653,Reporter (uncredited),31773,1081955,33 +143654,Tiit Kuusik,46931,137849,13 +143655,Julia,26808,25655,4 +143656,Narkomanka,15303,111062,10 +143657,,252059,1459891,6 +143658,Ms. Crenshaw,91070,99007,19 +143659,Elliott Plumm,73501,109441,3 +143660,Isabelle,336811,983929,12 +143661,La femme du jardin,343702,1338472,21 +143662,Drunk PartyGguest (Bluffer),21570,87713,9 +143663,Party Guest,41171,1330755,43 +143664,Mai,9993,61634,9 +143665,Jeanne-Marie,4930,35043,3 +143666,Gertrude Lawrence,52959,5823,0 +143667,Bob,10055,58352,4 +143668,O'Brien,72638,1551922,48 +143669,Tom Rockett,4644,74036,2 +143670,Wiggenhern,244580,39659,12 +143671,Judge Axel,27740,86368,4 +143672,Hector,140814,110505,1 +143673,Robin,2771,27972,10 +143674,Eric,359255,1508173,4 +143675,Arthur Waldo,62761,18359,1 +143676,Mr. John Porter,4809,33484,3 +143677,Backup Detective,3580,223280,47 +143678,Joe Louis,4982,154228,29 +143679,Zhang Liao,12289,1623403,19 +143680,Kumar Khan,99819,1021741,5 +143681,2nd Nurse,149926,1803812,18 +143682,Richard Brinsley Sheridan,12783,47653,2 +143683,Herself - Model,327083,209198,4 +143684,Jenny,38022,88814,3 +143685,Nerissa (voice),132601,60949,7 +143686,Jane,80720,1668907,29 +143687,Taka,315841,134813,7 +143688,Alberto's friend,106944,41094,6 +143689,Lauren,45243,78324,9 +143690,Reporter,921,20196,29 +143691,Clubber,419459,1689288,17 +143692,Herself,325712,1879676,20 +143693,Harry (Date 2),405473,82410,24 +143694,Harrison - the Lawyer (scenes deleted),43385,34180,13 +143695,Vicino,193641,39019,6 +143696,Ben Eagle,256962,21343,5 +143697,Mang Andoy,64450,1522641,17 +143698,Harry Rawlinson,37581,47178,4 +143699,Argonit,208436,26519,10 +143700,Eddie Smith,50073,67370,0 +143701,Richard DFadier,26516,3381,0 +143702,Lorena,26971,43328,3 +143703,Judy Parker,28730,3127,3 +143704,Wor,74919,1096974,5 +143705,Christy Moriarity,82684,1951,2 +143706,Ralphus,136386,142289,4 +143707,Jock Ramsay,147722,30495,2 +143708,Sarah Carson,77664,57418,0 +143709,Bonnie,60422,6751,8 +143710,Winston Moseby,10407,1158858,9 +143711,Dean York,385372,63681,4 +143712,Yu Chang,118139,30016,4 +143713,Manuel Carrega,59118,16972,4 +143714,Diego,49850,556721,1 +143715,John Sparrow,5183,20770,10 +143716,Mundakkal Kunjikrishnan Nambiar,237672,1199055,12 +143717,Cheerleader / Dancer #6,11247,1776510,42 +143718,Trilby Drew,51303,143820,1 +143719,,11328,1444507,55 +143720,2nd Youth,31264,136416,14 +143721,Troy Cooper,209406,80019,6 +143722,Grenouille (12 Jahre),1427,17077,8 +143723,Марта,27937,1190712,1 +143724,Mrs Coleman,245168,85073,14 +143725,Mr. Williams,11338,22861,19 +143726,Tobe,298865,82755,1 +143727,Väg-Gunnar,14357,135698,4 +143728,Marek's Uncle,158947,1784284,7 +143729,Mad Harriet,460135,81667,11 +143730,Boy with Camera,1452,1252837,17 +143731,Xu's wife,70057,78870,11 +143732,La mère,690,10358,3 +143733,Dr. Kirkor,10821,1174585,14 +143734,Father at the maternity ward,39284,6648,11 +143735,Western Sheriff,72574,566557,12 +143736,Marshall Grant,69,426,10 +143737,Businessman,47057,11076,12 +143738,Singer [cameo],42120,126852,14 +143739,Himself,346106,87281,1 +143740,Lady (voice),159304,1044418,1 +143741,Receptionist,214756,1360004,49 +143742,Gary Hunt,31428,11786,4 +143743,Dr. Haggis,44265,27993,4 +143744,Perra de Ceci,107073,1481500,12 +143745,Suzume Katakura,36175,115647,0 +143746,Burgomaster (as J. Russell Powell),134475,119547,5 +143747,Stig-Helmer Olsson,19181,79056,0 +143748,Sofa Girl,257447,1696931,19 +143749,Menelaos,46278,135671,5 +143750,Taxi Driver,16171,79856,2 +143751,Spice,352186,969140,3 +143752,Antoinette 'Toni' Vigran (uncredited),28668,89746,22 +143753,Minister,43811,217757,61 +143754,Dr. Francis Trevelyan,273167,14729,1 +143755,Ältester bei Schama # 2,2734,27670,49 +143756,Daikichi Nakaoka,14087,138752,3 +143757,Akemi,35110,20526,1 +143758,Salesman,64936,219430,6 +143759,Dotty Otley / Mrs. Clackett,26670,14837,0 +143760,Cherry's Cabbie,128669,120178,37 +143761,Paul Winkless,31428,20913,1 +143762,Bennett,424488,1322236,20 +143763,Ako,2197,23304,3 +143764,Blonde on Rooftop Bench at Junior's Second Party,288521,82315,11 +143765,Himself,83802,39991,0 +143766,Liza-Lu Durbeyfield,101915,225545,5 +143767,Cédric,266082,1354628,12 +143768,Whitey,55604,85900,8 +143769,Graf,75578,575725,14 +143770,Mr. Farrell,11247,19151,22 +143771,Laura,16177,1621053,12 +143772,Krassky,4580,29915,0 +143773,Victim 1,206574,1339118,8 +143774,Actor-Stage Manager (uncredited),51362,10525,4 +143775,Major del Rio,151911,1072771,11 +143776,Young Rachel,295723,1418256,26 +143777,Joan Frost,2742,351,1 +143778,Beth Braddock,35977,22489,10 +143779,Pierre,330275,4290,4 +143780,Doro,318781,1694291,5 +143781,Julia,1116,15504,8 +143782,Probation Officer,242042,1679368,22 +143783,Jamie Stewart,23385,39970,1 +143784,Maeve - Liam's Mother,10097,63361,9 +143785,Chic Wymore,24062,57329,3 +143786,Army Warrior (uncredited),205584,1535065,38 +143787,Lionel Fougerole,430365,1774303,6 +143788,Lázaro,40859,103667,11 +143789,Julien (voice),10527,6730,8 +143790,Doc Morton,169869,9857,2 +143791,Sang-yong,53514,1252369,6 +143792,Himself,307931,1393838,3 +143793,Bell,263472,224513,2 +143794,Security Guard,87293,1102496,8 +143795,Processor,12279,1218266,25 +143796,Charley Siringo,45211,102101,4 +143797,George,120109,11502,7 +143798,Andrew Undershaft,38770,6599,2 +143799,,100791,1027114,10 +143800,Colin,156700,1370567,13 +143801,Benny,145247,1314260,2 +143802,Sigurd Eskeland,20372,118055,7 +143803,Kimie Nakaoka,14087,547988,4 +143804,Stranger,23382,76543,3 +143805,Baker,285270,205335,6 +143806,Jeremiah Peachum,156326,11543,4 +143807,Betty Ann,126947,64857,4 +143808,Noble #1,62764,115596,16 +143809,Officer LeFlore,693,1462,6 +143810,Miss Pringle,86828,28475,11 +143811,Lieutenant Hutchins,1904,17342,14 +143812,Court attendee,339994,1593369,22 +143813,Al,13574,4764,3 +143814,Lauren,232672,69597,0 +143815,Alan,169794,171727,7 +143816,X-Wing Pilot,330459,1322312,47 +143817,Tracy Turnblad,409447,1660959,0 +143818,,71336,124757,4 +143819,Silvia,53486,67175,13 +143820,Kelly Balland,336811,933813,15 +143821,,14804,1901805,26 +143822,Millard Kensington,108282,75315,14 +143823,Grace,74942,77279,7 +143824,Emily (10 years old),58462,1396124,9 +143825,Orangutan trainer (uncredited),51362,13953,1 +143826,,26125,94958,9 +143827,,17985,1439600,22 +143828,Phil Woodward,44129,2955,2 +143829,Teddy Barnes,47386,138768,0 +143830,American Stoner,1690,16847,14 +143831,Felicite,273510,208507,7 +143832,"Lovas, ""Malacpofa""",42132,1093236,8 +143833,John Ramsey Auditionee / Himself,430826,1891501,23 +143834,Magd Johanna,266568,42930,5 +143835,Luca / Additional Voices (voice),14411,12077,9 +143836,Turk Malloy,163,1894,6 +143837,Himself,320589,230253,14 +143838,Inspector,104041,21520,5 +143839,Quinn,128081,1094120,3 +143840,John Quincy Winterslip,413669,129676,4 +143841,Bar Patron,331161,1459158,21 +143842,,412202,1669185,12 +143843,poliziotto collega di Vannucci,54309,237057,15 +143844,Tabaccaio (uncredited),56068,228864,13 +143845,Lavinia Penniman,28571,2433,3 +143846,Sniper Chief Giordani,37710,27401,37 +143847,Detective,1665,10743,6 +143848,Jerusalem,400174,327,6 +143849,Aili,51423,11070,3 +143850,David,183015,53279,1 +143851,Minnie,132714,232415,1 +143852,Alvin Murdock,334074,1221076,11 +143853,Little Henry,42703,14786,14 +143854,Camilo,78318,14533,16 +143855,UPS Guy,145220,5530,27 +143856,Judy,103620,54817,8 +143857,Attendant,25645,1102674,14 +143858,Abby,369033,1442975,14 +143859,Winnie the Pooh (voice),36540,34759,0 +143860,Dr. Neyer's Nurse,13483,428440,12 +143861,Meghan Orlovsky,293660,1493223,15 +143862,Mary Fleming,43875,100325,16 +143863,Yana,295964,1900954,17 +143864,Mary Wilton,1938,20144,2 +143865,Hamid Hamoon,43761,1339660,10 +143866,Himself,9951,1692551,24 +143867,New York City Police Officer (uncredited),331962,1202712,34 +143868,Louise,18072,116,2 +143869,Dedê,108712,933139,6 +143870,Bit Part,94182,1673561,31 +143871,Madame Mazelli,3476,32091,7 +143872,Mark Wayne,40649,127544,1 +143873,Marjory Morgan (adult),118953,104155,8 +143874,Mrs. Mulcahey,76465,2929,6 +143875,Bini Troll / Nora Troll (voice),136799,76744,38 +143876,Fai-Fai,18665,119875,3 +143877,Muffy St. Jacques,14262,76494,0 +143878,Wilson Jr.,15156,53184,0 +143879,Omar's Brother,187028,1728947,11 +143880,,134215,6498,3 +143881,Georgia Mirabeau,4592,31715,4 +143882,Brett / Chet (voice),73723,3980,14 +143883,Himself,51311,1109541,8 +143884,Police Captain,4982,150932,35 +143885,Becky,385750,15091,4 +143886,Betsy Tverskaya,96724,47720,6 +143887,Chava,20941,145059,0 +143888,Lucy Burrows,183039,105790,1 +143889,Michel,76207,32044,8 +143890,Paziente,335051,1853724,13 +143891,Monica Weston / Susan Dumurrier,2993,29395,0 +143892,Octavius,245950,1888591,6 +143893,German Lover,5544,24422,4 +143894,Ben Reynolds,85414,13022,3 +143895,Young Victor,2080,1353634,14 +143896,American Major,19996,1764138,34 +143897,Mrs. Mozeley,45562,77287,11 +143898,Carlos (as Mark Cavell),38808,13874,10 +143899,Ricky,25625,106673,7 +143900,Marrone,117534,769308,9 +143901,Libby,45132,27578,1 +143902,Joanna,38303,51992,4 +143903,NY Cop,3563,166029,28 +143904,Clan Akkaba Disciple,246655,1796392,36 +143905,Fernand Lacaud,168496,34583,3 +143906,Valentine,16374,80474,6 +143907,Саша,57770,1692665,3 +143908,Matt Clark,138372,1108829,3 +143909,Lars,33510,55636,5 +143910,Snow White as a child,59075,135174,3 +143911,Alberto,299165,1094049,13 +143912,Freund von Marcel,130739,1805292,27 +143913,Wei Xiao Fu,219572,1562578,12 +143914,High School Student (uncredited),156700,1842200,43 +143915,Mr Cummins,245168,1435230,23 +143916,Mrs. Beecroft,19846,1230276,8 +143917,Police Commissioner,37083,106506,6 +143918,Grace Greenlaw,90563,13577,4 +143919,Music Lover,5123,1781349,52 +143920,Lt. Connely,42709,73022,2 +143921,Kenny,25941,225610,13 +143922,The Albino,54514,119050,4 +143923,Scottie,22051,203739,16 +143924,Fast Eddie,227325,33527,7 +143925,Pharmacist (uncredited),10918,134910,30 +143926,Himself - at Banquet (archive footage) (uncredited),33740,12308,94 +143927,Commissario,62034,84250,2 +143928,Agent Reese,224282,141748,4 +143929,Genya's Friend,111479,1797585,40 +143930,Yang,76544,1210414,7 +143931,Holly Maddux,125990,3489,2 +143932,Water Prisoner (voice),83201,118489,4 +143933,Malcolm Travers,44000,1212174,4 +143934,Alice,17209,10871,2 +143935,Han Bodeen,24810,117431,6 +143936,Mrs. Jones,205481,18345,3 +143937,Kenneth,293863,60719,10 +143938,Gwen Stacy,102382,54693,1 +143939,Graduation Guest,102382,7624,19 +143940,Yasu,315841,135376,8 +143941,Al McCoy,31899,14451,6 +143942,G.A.,157293,1170150,13 +143943,Fairy Tale Queen,300769,1381499,7 +143944,Doctor,16151,79694,5 +143945,Jimmy,227306,1394427,28 +143946,Elmer Lamb,268875,34293,1 +143947,pappagallo #2,193641,50786,9 +143948,Minister Cheng,56095,68677,1 +143949,Santo,317168,236241,0 +143950,,341490,1886273,8 +143951,Pall Bearer,71503,563113,35 +143952,Tchude Chief,2172,22229,1 +143953,Dr. Eli Eon,21780,27762,4 +143954,Kelly Pittman,417936,1702392,12 +143955,Irene,400174,1628686,10 +143956,Car Rental Manager,351242,1273859,12 +143957,Inspector on Train,41597,1290419,20 +143958,Prince Varan (voice),33427,110635,8 +143959,"Amanda Amoretti, la fille cadette",84875,931402,7 +143960,Kotaro Amon,433945,1202404,3 +143961,President Ward Pennington,27840,99125,6 +143962,Michael Whouley,14050,5724,5 +143963,April,82679,530618,4 +143964,Sergeant Cross,55846,63141,6 +143965,Polizeichef,11373,69148,5 +143966,Karli Fichtner,85469,15486,3 +143967,Robin McAllister,113175,50398,0 +143968,Soo-jung,54690,70337,0 +143969,Janet,540,22124,4 +143970,Herself,253337,1788327,14 +143971,Jåmpa,77922,227269,1 +143972,Kenneth,33134,1128163,14 +143973,unknown,6636,50930,3 +143974,Outlaw,72574,566383,11 +143975,Micha,299715,930288,2 +143976,,67633,1043267,23 +143977,Ike Stapleton,34651,100945,8 +143978,Tony,47212,176976,1 +143979,Rudi Souza,106546,154548,3 +143980,Jeong-in Yeon,116488,37940,0 +143981,NYC Nurse,214756,1759594,44 +143982,Gordon,7942,7028,3 +143983,Lucas,63612,145414,4 +143984,Jason Carson,71885,56153,5 +143985,Commander Finnegan,188927,17305,21 +143986,,341689,1537048,11 +143987,Sarge,13934,15900,6 +143988,Himself,63144,1624610,5 +143989,Defensor,69060,106087,6 +143990,Selma,332534,1452408,8 +143991,Michi Nussmbaumer,6076,32931,11 +143992,Sevitsky,35405,114285,6 +143993,Carmen,114333,1808833,5 +143994,Gute,73147,32297,1 +143995,Lorna,122930,11150,0 +143996,Inspector Legrand,64568,93951,4 +143997,Sindre Aa,70670,558254,5 +143998,Dae-hee - Hong-ju's husband,19482,4259,13 +143999,Nikko Regas,4820,4112,4 +144000,Aokigahara Police Sergeant,329440,1777436,28 +144001,"Homer, Tennant's Aide",53865,85897,3 +144002,Curro Garrote,13495,6535,8 +144003,Company Clerk,75174,935295,12 +144004,Santos (uncredited / archive),168259,90634,48 +144005,Commander,68721,57251,77 +144006,Kate,150117,1261125,21 +144007,Robert Fallon,80368,378,1 +144008,Beau,137145,1106889,7 +144009,Clip from 'The Band Wagon' (archive footage),33740,589000,16 +144010,Tejesember,338312,1092609,5 +144011,Mr. Livingston (uncredited),43688,128401,11 +144012,Frau Meternagel,201429,23113,7 +144013,Harry Compton,15013,5168,0 +144014,,103301,240326,0 +144015,Toastmaster,43811,141510,16 +144016,Narrator,99453,3063,1 +144017,Student Pedestrian,339403,1635150,35 +144018,Private Wilson,294652,62752,7 +144019,Hannah Marie (voice),48567,74365,5 +144020,Camilla,239056,1291703,9 +144021,,42430,1286615,4 +144022,Donut Cop #1,15092,978844,38 +144023,Margaret,98864,161769,8 +144024,Robert Bradford,8292,6074,12 +144025,Muneo 'Genesis' Suzuki,12720,1091279,9 +144026,Adele (uncredited),369524,57823,37 +144027,Noel Faraday,29113,78052,0 +144028,Charles Castle,26644,10881,1 +144029,Mr. Perkins,360605,110141,7 +144030,Crime Scene Paramedic,23382,90045,8 +144031,Oncle Charlot,78340,583309,3 +144032,Young Liv,10521,1337520,11 +144033,Veterinarian,53767,1033882,6 +144034,Letícia,73160,589364,4 +144035,Mr. Benet,242042,1278784,11 +144036,Ron Werner's Attorney,103432,134000,24 +144037,Miller,227306,103351,9 +144038,Madoka Kaname (voice),152042,936275,0 +144039,Himself,144680,21200,4 +144040,Farmer Boy,43829,121175,31 +144041,Sarah 'Salome' Davis,127808,2769,0 +144042,,185987,86858,5 +144043,Marcus Portius,34469,107626,14 +144044,Herbie Fenton (singing voice),285400,24937,14 +144045,The Viper,207402,1190281,1 +144046,Kendu Wallace,331962,1699413,20 +144047,Operator,61984,1469272,16 +144048,Jeff,198663,512316,11 +144049,Himself,413782,72609,8 +144050,Jake,73424,1544186,3 +144051,Dog (voice),149910,1612130,15 +144052,Park Kyeong-Won,155941,105429,0 +144053,Cap. George Tanner,2397,24519,3 +144054,Gargoyle,29345,21052,9 +144055,Chet Jones,77645,93974,9 +144056,Mike,330011,1332382,1 +144057,Hideki Saji (singer of Tetrapod Melon Tea),22025,87662,13 +144058,Guy,14874,62712,8 +144059,,84823,1620092,8 +144060,Nikki Davies,37517,1518,5 +144061,First Bartender,32044,19446,12 +144062,Damián,282983,105217,1 +144063,American Orderly,44087,82558,21 +144064,Jacinta,120129,16406,7 +144065,junge Frau,52475,1881185,36 +144066,Herself,181454,1735509,6 +144067,Party Guest,151043,111215,15 +144068,Roberta King,371181,1834752,16 +144069,Brother Tomas,28484,89691,8 +144070,Gabi (voice),172385,52775,12 +144071,Frits Großmutter,1838,19356,7 +144072,Narrator,109466,21411,2 +144073,Ilham Akbar Habibie,172705,581684,6 +144074,Japanese Capt.,62755,1514068,6 +144075,Mitsumushi,21325,149406,3 +144076,Velma Dinkley (voice),302960,86314,4 +144077,Bishop Arnaldo,9503,162413,11 +144078,Poise Party Guest (uncredited),10096,1622623,48 +144079,Poldo,63178,236559,5 +144080,Jésus,377853,586191,7 +144081,Lillian,86829,11902,4 +144082,Alejandro Vega,418072,1446289,7 +144083,Lady in Car / Boss Lady / Small Dyke / Lady in Elevator (voice),90110,552625,3 +144084,Detective,15092,58620,50 +144085,Amy Fisher,19754,69597,0 +144086,Lord Cutler Beckett,58,2441,10 +144087,,280030,1113146,9 +144088,Roderick Raskolnikov,43891,2094,1 +144089,Marga,82999,17523,0 +144090,Janice,336890,1377874,21 +144091,Allan Grey,779,11583,0 +144092,Dresser,44502,17824,10 +144093,Himself,393367,55934,5 +144094,Stash,27470,29426,27 +144095,,84508,1083309,12 +144096,Joe Dalton,11175,72680,8 +144097,Xenia,112044,1064420,0 +144098,Officer Stewart,32166,6437,2 +144099,Medical Delivery Guy,10071,62840,19 +144100,Zdenka,382873,1581227,13 +144101,,335874,37421,4 +144102,Michael Hawkins,23169,968974,13 +144103,,84771,27514,8 +144104,Roberto,8882,72783,9 +144105,She Crosses The Water,55534,173866,19 +144106,Capt. Farragut,2965,29071,5 +144107,"Людмила, дочь профессора Мальцева",20871,86672,5 +144108,Gabriel,286369,9188,5 +144109,Jean Melville,252888,4301,1 +144110,Ford,70981,71083,9 +144111,Morgan Haley,3164,134613,7 +144112,Janja,2197,23307,7 +144113,Jimmy,244580,131735,11 +144114,Future Monique (voice),51786,2535,9 +144115,Wang Zhenlin,63441,1344379,14 +144116,"Chiang Kai-Shek, young",69310,1622,7 +144117,Officer Hart,165864,20759,5 +144118,Silo Officer,209112,1696221,103 +144119,Pinto,174278,569861,10 +144120,Grizzled Sergeant,10204,8930,18 +144121,Marshal Bat Masterson,147903,30115,13 +144122,Daughter,3061,29992,7 +144123,Brit Alwood,88518,147396,1 +144124,Woody,279096,1262848,2 +144125,Jeune femme soirée 2,382591,1199531,12 +144126,Himself,217925,4720,2 +144127,Ladro,43648,102121,2 +144128,Ana,1418,958,2 +144129,Detective Trupo,4982,16851,3 +144130,Dean,16996,25944,31 +144131,"Aspirant Mirosław Saniewski ""Metyl""",74919,105893,4 +144132,Brand X Lunch Lady,116977,9599,16 +144133,Powdah,43419,3152,1 +144134,Spade Cooley (as Spade Cooley King of Western Swing),173634,121242,13 +144135,Anita Asher,146243,238661,5 +144136,,56095,65976,5 +144137,Michelle,259694,155422,17 +144138,Inês,101342,1808414,15 +144139,Stripper Zombie on Chain,66925,564330,14 +144140,Igor,228066,10980,1 +144141,"Annabel ""Ann"" Brady",229638,103949,2 +144142,Bill Bob,11403,117885,4 +144143,Monica,375794,1672139,7 +144144,First Order Officer,140607,178630,67 +144145,Himself,41994,212,0 +144146,Silvio,43670,1550750,8 +144147,Jeep Driver (uncredited),14029,100956,18 +144148,Sonia Logan,71700,58370,1 +144149,Olivia,121822,999605,3 +144150,Motorcycle Dick,9958,60980,10 +144151,Saskia Jonghelinck,57829,1886750,4 +144152,Josephine 'Jo' Hill,118444,91206,3 +144153,,340176,1711406,15 +144154,Lois Scudder,15189,14406,7 +144155,Teen (uncredited),47882,392621,27 +144156,Mercé,116312,107781,5 +144157,Natalya,1690,33936,3 +144158,Police captain,67021,229302,4 +144159,Karl Marsen,41597,4112,2 +144160,Fany,391618,4374,8 +144161,The Screamer,316154,1771,6 +144162,Elizabeth Tudor,43875,279042,2 +144163,Naomi Vaughn,262357,62760,5 +144164,Tristan,170759,3841,3 +144165,Phyllis,4913,25540,4 +144166,Sandy,7210,52010,7 +144167,Ol’ Mose,186606,56183,8 +144168,Ferreiro,42473,1405827,26 +144169,Aoki Tomio,51581,68704,2 +144170,Caryanne,33592,231531,11 +144171,Mrs. Redfield,38027,98963,17 +144172,Mike O'Donnell (Teen),16996,29222,0 +144173,Remson Sr.,99909,20368,10 +144174,,14537,110310,11 +144175,Indian Joe,62033,241865,9 +144176,S.H.I.E.L.D. Agent,119569,39389,3 +144177,Hakan,294483,1327274,14 +144178,Queen Rosalind,11137,8436,3 +144179,Tony,53576,95725,5 +144180,Appa Ali Apsa (voice),17445,15992,7 +144181,Jacq,47171,136348,2 +144182,Detective Aaron Sayles,88518,936233,4 +144183,Simone,74661,1409685,14 +144184,Francesco Bernoulli (voice),49013,1241,4 +144185,Li Bo,30806,67212,3 +144186,,88273,591209,29 +144187,Mr. Henry Chang,875,13342,3 +144188,Col. F.E. Cochrane,6341,56890,7 +144189,Ducky,24554,91022,4 +144190,Gristletoe Joe,26809,1123657,6 +144191,,416569,1132168,5 +144192,Dr. Jacob Lane,52520,9029,1 +144193,Marrying Priest,19719,85113,17 +144194,Worker for George,186227,22606,23 +144195,Gumboot Dlamini,868,13106,11 +144196,Vikki,58790,21562,12 +144197,Marco Belchior,336890,51937,10 +144198,Elise age 15,31011,129395,7 +144199,Franco Sola,75001,134214,4 +144200,Chen Chang Xing,121823,56861,4 +144201,Yaël,1986,20441,4 +144202,Suraj Khanna,45533,42802,1 +144203,Earl Monroe,60599,38951,10 +144204,Esquire Starlet (uncredited),2567,1674596,59 +144205,Tonny,11328,1019,0 +144206,Mueller (the commandant of a concentration camp),88564,1467091,5 +144207,Gen. Cummings,43142,2669,2 +144208,Rocky Papasano,39495,13565,1 +144209,Hellboy,214756,1077806,71 +144210,Liam,371003,1285828,5 +144211,Older Goat Herder,209112,162169,125 +144212,Stacie Conrad,353616,999790,6 +144213,Boris Breton,121793,134412,9 +144214,Taylor McKessie,11887,180279,5 +144215,The Bedouin Chief,70734,1618652,17 +144216,Mia,30139,591785,3 +144217,Waiter,103620,74501,10 +144218,Cheerleader (1989),16996,557778,40 +144219,Kid,141145,1114243,1 +144220,George Bunting,175822,1072381,2 +144221,Giovanni,81522,5567,10 +144222,,11058,1037730,6 +144223,James Cleverill,86828,42663,7 +144224,Ernie,69165,152769,5 +144225,Johnny Danko / Dick Cummings,85420,13473,9 +144226,Tanja,210913,10239,1 +144227,Sam Bennett,121230,108023,8 +144228,Sōsetsu Kazahana,16907,131106,4 +144229,Math Chair,381008,1589598,12 +144230,Michel-Ange (as Albert Juross),52705,146518,1 +144231,Prete Divina,110447,1483243,19 +144232,Gladys Valée,329819,1029292,10 +144233,Communications,10916,25867,11 +144234,Bouncer,2001,1463961,69 +144235,Gordon Roberts (Framing Story),41035,24340,11 +144236,Brock Christian / Alien Pervert / Co-Pilot,38134,1521014,12 +144237,Roartak,277778,1334137,13 +144238,Padre Ángel,120129,104980,3 +144239,Hazel (as Ning Chang),72074,564891,1 +144240,LP the Horse / Pig / Diamond the Horse / Rattlesnake (voice),18843,1216346,19 +144241,,416569,88854,4 +144242,Jan Pastorek,48118,124511,8 +144243,Maxwell McAllister,18035,585,3 +144244,Wei Ben,12289,1436148,24 +144245,Wasted Guy,26688,96039,34 +144246,Mable,43155,33361,10 +144247,Julie Reichert,46121,59240,4 +144248,John,376570,83456,3 +144249,Riah,59965,1432979,18 +144250,Lt. Driscoll (archive footage),262988,14562,10 +144251,Dan Biermann,203539,36730,8 +144252,Fat Rat,253154,1878707,14 +144253,Robert Graves,48131,13472,4 +144254,Olympic Club Member (uncredited),43522,1458223,21 +144255,Dasha,63281,559975,7 +144256,Alan Davis,44000,5570,11 +144257,Don Carlos de Castilian,141955,24483,7 +144258,Alphonse Gunderman,50181,73,5 +144259,Davy,53472,549352,3 +144260,Jacob Helm,60420,21028,0 +144261,Logan,41360,150195,3 +144262,Young Henchman,20055,158390,7 +144263,Little Frankie,134238,992587,7 +144264,Black Prisoner on Death Row (uncredited),28564,213830,18 +144265,Johnny Ryan,27034,7683,3 +144266,Gary,272892,1048992,6 +144267,Donald Pines,26204,198055,11 +144268,Molly,139571,1110910,4 +144269,James Bonomo,70074,16483,0 +144270,Marcel Massanet,42216,26890,15 +144271,o.A.,5646,44585,10 +144272,Jane McBride,53231,1197283,7 +144273,Roy Dixon,338518,975,3 +144274,Passer-By,328589,1247386,33 +144275,Marsha,121923,997068,13 +144276,Papa (voice),12697,3742,4 +144277,EHC Guard #1,71670,1739821,19 +144278,Staiano,315319,236870,20 +144279,Reinette,37189,117008,0 +144280,Saint Just,27635,81187,8 +144281,Officer Morgan,52454,1582713,41 +144282,"Doktor Tomasz Piechocki, ortopeda",210487,40917,0 +144283,Gas Thief,70583,558912,4 +144284,David / Adam / Wesley,41505,1244,1 +144285,Victoria Vandecape,295723,1418165,8 +144286,Anna Wimschneider,10129,14632,0 +144287,Teresa Agnes,198663,115150,2 +144288,Soldier Sam,24432,19278,5 +144289,Aino Tammik,321303,1418973,9 +144290,Ellie,33107,51992,0 +144291,Jeffrey,90231,237150,0 +144292,herself,306464,24357,2 +144293,Miss Rapier,21605,9139,4 +144294,Tucker,152532,18324,4 +144295,Burlington Potluck Guest,356752,1841539,63 +144296,Merry,41171,182955,16 +144297,National Guardsman Mike,407448,1863670,35 +144298,"Mary, the Mother (Judean Story)",3059,29954,6 +144299,Bob Stone,302699,18918,0 +144300,Samurai Ensemble,616,1593818,35 +144301,Alain Valentin,12446,21170,4 +144302,Lew Agry,43114,89834,2 +144303,Sheila,64428,121727,4 +144304,Saoirse (voice),110416,1442866,6 +144305,Buddha (voice),70587,211599,14 +144306,André,44155,35608,11 +144307,Jerome Underwood,108224,34280,6 +144308,Peterchen,1655,18405,6 +144309,Vronka,169068,52854,8 +144310,Ally,43935,568045,8 +144311,La mère d'Antoine,305455,51102,5 +144312,Fernando,337339,1814862,19 +144313,,356486,131420,7 +144314,Ed Grey,30806,17199,2 +144315,Jacoby,189,1091423,36 +144316,Maria Giannakoudaki,47241,234812,2 +144317,One Million,30059,105637,2 +144318,Amy Nelson,396392,1399273,2 +144319,Rolf Swedenhielm,76380,578532,0 +144320,The Human Pizza (uncredited),52868,62596,10 +144321,Sikong Zhaihua,64304,930251,12 +144322,Liam,405473,1800033,27 +144323,Rusher of Din - Office Executive,36751,116117,14 +144324,Dora Nichols,82178,742536,3 +144325,O'Toole,20674,113888,13 +144326,,186971,1605816,33 +144327,Chief Washington,280617,1522143,6 +144328,Professor Carleton,10760,66542,14 +144329,Herron,27717,98828,2 +144330,Bill Hodson,45938,190526,8 +144331,Club Dancer (uncredited),4982,98214,86 +144332,(uncredited),25132,1093510,26 +144333,Marianne Beauséjour,369885,8293,1 +144334,Fenoglio,226936,32562,3 +144335,Mr. Watson,49502,89209,12 +144336,Capt. Schultz,22998,1062,4 +144337,Scoutmaster (uncredited),48627,6805,17 +144338,Kuruppu,237672,1272837,5 +144339,Barbara,273610,61182,9 +144340,Lola Fandango,43049,14575,4 +144341,Dr. Lan Zeng,226672,589340,2 +144342,Keitel,256311,40526,3 +144343,,185987,1087690,9 +144344,Hot Hostess,70863,1610309,12 +144345,Monty Beragon,202241,529,2 +144346,John / Judas,43158,104385,1 +144347,,17282,589885,8 +144348,Cheri Garrison,322518,1431605,7 +144349,McGhee,44022,13298,7 +144350,Publican 13,107985,91662,54 +144351,Gardner Elliot,365942,77996,0 +144352,Freight Supervisor,237,3076,11 +144353,Clotilde Armenta,163706,61743,7 +144354,Teresa,59006,59192,3 +144355,Generalfeldmarschall Robert Ritter von Greim,47536,39955,5 +144356,Charles Mackley,28110,15213,6 +144357,Kent,179288,61963,9 +144358,Kinbei Kanamori,168295,125009,7 +144359,Driver of Car,40258,1123091,7 +144360,"Sir Giles (segment ""The Reluctant Dragon"") (voice)",22752,117697,4 +144361,Whisper Boyfriend,293660,1442429,23 +144362,Herself,37514,117848,5 +144363,Arthur Marsh,7555,18328,8 +144364,Mrs. Palamino,10033,62247,9 +144365,State Trooper,14589,980038,26 +144366,Dexter,12683,27737,3 +144367,Martha Sabel,98612,7152,0 +144368,Samurai Ensemble,616,228561,40 +144369,Henry Smedhurst,29368,2091,1 +144370,Museum Information Lady,17258,144270,27 +144371,Hot Coed,13596,1183867,25 +144372,Hector,178595,1294285,2 +144373,Detective Francis Kirk,18442,25849,9 +144374,Jim Hudson,419430,17401,5 +144375,(voice),16137,79557,12 +144376,Clubman,35852,114835,8 +144377,Jasmine,381518,550552,14 +144378,Keno,63317,9600,4 +144379,Max Alvarez,103201,17401,5 +144380,Captain Davis,156700,25884,15 +144381,Jessie Cassidy,33025,31550,0 +144382,Jen Craven,210910,1194702,2 +144383,Headwaitress (uncredited),32552,1045645,6 +144384,Dale,137528,1764645,7 +144385,Vicky,28340,98580,2 +144386,Party Door Guard,323675,1769773,25 +144387,Strip Club Worker,293660,1683953,31 +144388,Mary Haskins,9918,25933,9 +144389,Christine Jesperson,1382,16860,0 +144390,Motard 2,52369,939471,8 +144391,Sonay,336804,1481836,5 +144392,Herself,284296,2395,10 +144393,Black Doug,109439,51944,9 +144394,Susan (uncredited),76011,95301,14 +144395,,365709,1528382,15 +144396,,115616,93839,6 +144397,The Conceited Man (voice),309809,17835,6 +144398,El Paso Sheriff,6977,51732,9 +144399,Un coinvolto nella rissa,43231,1375837,7 +144400,Charles Roberts,257574,19739,2 +144401,The Deputy,63317,1083499,8 +144402,Professor,435041,1332333,2 +144403,Oedipus,340275,1160256,32 +144404,Timo,345438,567000,6 +144405,čert,82716,1044744,2 +144406,The Mummy,357106,98969,3 +144407,Jai,21566,85683,7 +144408,Loïc,30974,96928,1 +144409,La mère,35025,2744,2 +144410,Pirate / Indian,273106,1519565,20 +144411,Matty,257344,570775,9 +144412,Ram,28270,122004,4 +144413,Mr. Walters / 'The Toad',13442,17485,3 +144414,Waiter,52437,103753,32 +144415,,218508,68704,14 +144416,Elderly Woman at Restaurant,142402,1117089,20 +144417,Abbie,84178,221944,3 +144418,Emily Boyle,127286,20300,2 +144419,Hospital Nurse,46695,1185420,11 +144420,Phoenix,15534,2956,0 +144421,Carl Scudder,15189,6863,8 +144422,Naama,63938,148383,5 +144423,Commentator,71120,1872173,9 +144424,Robert 'Bibi' Bonnard,178587,50997,3 +144425,Darwin Mayflower,9292,20766,4 +144426,Pilot,24357,123532,5 +144427,Mannequins / Beast (voice),62764,15831,32 +144428,Hugh,169068,202899,10 +144429,Karen,456101,94309,4 +144430,Himself,425003,1219901,1 +144431,Usher,376660,1782871,20 +144432,Greg,225044,164452,11 +144433,Bobby,38433,27164,10 +144434,Suzanne,230211,78801,8 +144435,Therapist,122928,91670,7 +144436,Berenger,258251,1232688,9 +144437,Monitor,30174,1875585,18 +144438,Dr. Neville (from Churchtown),32921,9091,12 +144439,Winston Churchill,157843,6970,15 +144440,Nikki's Mother,19918,990986,20 +144441,Galkina,27925,86681,2 +144442,Alissa,305342,1308820,10 +144443,Centurion,335778,1180136,22 +144444,Jimmy 'Pinche' McLaine,16092,79292,5 +144445,Tina - Alien Mom (voice),9982,11514,12 +144446,The Bear,30478,1376316,8 +144447,Doctor,18774,1223017,15 +144448,Angela Paylin,14976,164094,13 +144449,Paul,13561,74658,1 +144450,Fiona,44933,1853762,8 +144451,Daniela Hooper,227700,1795082,15 +144452,Robert Flycht,14078,76329,1 +144453,Ushi Hirosaki,170279,43721,0 +144454,Miss Tawa,325803,1428018,2 +144455,Louis Birot,44256,115107,10 +144456,Sergio,269173,78909,5 +144457,Samuel,51999,8435,3 +144458,The D.A.'s Valet,250332,939842,20 +144459,Stacy,251419,196749,4 +144460,Oda,128900,46134,22 +144461,Buddy (as Don Opper),78691,35092,3 +144462,Takis,47110,935617,3 +144463,Captain Dodge,169355,30160,21 +144464,Tommy Dorsey,40916,534016,11 +144465,Martha,407448,1863668,33 +144466,Makia,42996,15950,5 +144467,Laura Chartoff,46972,11518,10 +144468,Sr. Valoquia,342684,105217,3 +144469,Aliena / Ida,86985,67737,4 +144470,Model,8088,102223,12 +144471,Coco,69278,131867,0 +144472,Derrick Perrish,149509,1736,3 +144473,Dyanne Stein,129332,106669,4 +144474,Eric,1807,19196,1 +144475,Cheryl,64084,1624934,10 +144476,Mark Hales,68347,99806,0 +144477,Dennis Earle,17275,41042,1 +144478,Kelly Taylor,39957,54499,0 +144479,Henry,1381,5924,9 +144480,Mrs. Sarah Wyatt,46623,18737,5 +144481,Jade,32233,1612556,11 +144482,Gloria,159701,56358,5 +144483,Mrs. Parvulescu,48116,1254081,6 +144484,Sattar Singh (70),147767,71090,4 +144485,Police Constable 94-B,80596,3359,20 +144486,Isobel Hawking,266856,73845,19 +144487,Teresa,109391,1124419,1 +144488,Mildred,111470,87519,16 +144489,Joan Madou,40985,4111,0 +144490,Vosk,70500,1120059,7 +144491,Narrator,29416,16413,12 +144492,Thomas,26810,124978,3 +144493,Dory - Mother,20421,1815277,3 +144494,Princess Sorokina Senior,96724,1795834,46 +144495,Johanna Parry,209271,41091,0 +144496,Lei Yifang,295273,109434,4 +144497,Mrs. O'Keefe,262958,1401548,22 +144498,Brett,98557,76667,2 +144499,Mrs. Jordan,183825,29953,41 +144500,Heartstopper,16175,79915,21 +144501,Johnny,23096,141243,11 +144502,Joker (voice),123025,2136,18 +144503,schlechtgelaunte Kellnerin,277968,1898509,45 +144504,Justin Wood,105528,84215,2 +144505,TK,371645,1153006,7 +144506,Gaster,197854,229191,8 +144507,Hausbesitzer,130544,23668,5 +144508,Cookie,8965,26994,9 +144509,Hemşire,81549,120680,5 +144510,S.P. Champlain,59838,82863,5 +144511,Irene Molloy,43141,4090,1 +144512,Toa Pohatu (voice),19325,82816,9 +144513,Judge George Lee,90461,30002,3 +144514,,38164,53462,1 +144515,Gianluca Recchi,41110,1035738,8 +144516,Outlaw,183832,1003817,28 +144517,Beth Raymer,84305,15556,0 +144518,Nightwing / Dick Grayson,411802,76621,8 +144519,Padre Amerin,81775,3784,4 +144520,Fake Santa #1 (voice),312100,14991,9 +144521,Tom Jr.,49354,32786,6 +144522,Oskari,230179,124870,1 +144523,Well Fed Woman,20766,1297776,14 +144524,,265351,999758,11 +144525,Yolda (voice),14945,213474,2 +144526,John Freeman,253273,25532,3 +144527,Col. Fred Parkson,4820,41756,9 +144528,Mary-Belle Monahan,48202,117766,1 +144529,French General's Aide,81110,1354938,16 +144530,Entrevistado,84354,127248,11 +144531,,18908,77525,13 +144532,,278660,1572790,1 +144533,,58692,52761,3 +144534,Lin Chua,220820,1104321,15 +144535,Herself,42093,1776542,6 +144536,Dr. Annie Jones,304336,58150,3 +144537,,200117,66753,5 +144538,Raksha (voice),59803,86896,6 +144539,le producteur,64357,35077,9 +144540,Madame Jezebel,384450,1582300,12 +144541,Mrs. Thompson,45227,22831,7 +144542,Miss Patchett,41996,20127,5 +144543,Flossie,28297,100325,6 +144544,"O ""Gringo"" (segment ""Texas"")",211166,11355,10 +144545,Raghunath Namdev Shivalkar,146270,85881,0 +144546,Sultan Mirza,42966,42803,0 +144547,Mickey,445727,66540,4 +144548,Gallo's Accomplice,206647,1545546,16 +144549,Ognev,126523,550524,2 +144550,Jerry,83714,18313,6 +144551,Mrs. Deirdre Greevey,20521,20188,12 +144552,Antonio Lopez de Santa Ana,10733,263,4 +144553,"Гаврила Петрович Шереметьев, «Хмырь»",20871,86670,1 +144554,Opera Stage Manager,177677,1562086,35 +144555,Judith,82817,10500,1 +144556,Maurice,12089,24540,5 +144557,Donna Cooper,64191,13636,2 +144558,Dr. Andrew Sheldon,229610,14868,1 +144559,,238436,590606,1 +144560,,16017,1444472,13 +144561,Mrs. Wallace,323370,1214164,2 +144562,William Cassidy,266433,2320,1 +144563,Ingun,10119,63760,13 +144564,Paul Zabrinczski,17657,18709,10 +144565,Roger,72847,95734,9 +144566,Un animateur radio,258363,174798,7 +144567,Sia,275060,292214,12 +144568,,183946,1167117,4 +144569,Susanne,378607,76922,7 +144570,Yak,38107,88979,3 +144571,George Masoud,46943,156358,6 +144572,,238925,15917,3 +144573,Lou,105059,190760,31 +144574,Mrs. Fuddle,3937,34184,8 +144575,Eric,233490,515510,4 +144576,Party Guest,43811,1458223,74 +144577,Burned Village Child,1271,1089929,32 +144578,Guitar Player - Sons of the Pioneers,134238,223606,28 +144579,Laura,107781,166809,5 +144580,Armed Robber,102382,1286873,49 +144581,Ben Hobbes / Biker,45610,60081,21 +144582,Sarah,38282,4885,1 +144583,Emmeline Foster,228074,14500,0 +144584,Stan Lee,1726,7624,12 +144585,Veronica,408272,25540,0 +144586,,197057,81000,0 +144587,Capt. Gunnarson,30034,14579,3 +144588,Indian Girl #2,33541,1816054,55 +144589,Thug #2,77930,1784633,37 +144590,Lonnie,21141,101244,6 +144591,Caliban,246655,18818,48 +144592,Toll Collector on Henry Hudson Parkway (uncredited),17136,81974,33 +144593,McGinnis,103938,30157,4 +144594,La mère d'Ahmed,336811,1647911,11 +144595,Gabriel,285270,54834,2 +144596,Manolito Gafotas,72900,567515,0 +144597,Frank Castle / The Punisher,120605,11155,0 +144598,Nscho-tschi,9629,22476,2 +144599,Caroline Strauss,280004,1336776,15 +144600,Sheba Hart,1259,112,1 +144601,Amitabh Sinha,323426,35780,1 +144602,Barista,304372,1417248,21 +144603,Dr. Charles Livingstone,28533,34651,1 +144604,Donna,254047,22252,2 +144605,Sheriff Parker,23590,1090872,7 +144606,Teenage Boy,268920,1755081,97 +144607,Comically Tall Man,13058,305750,31 +144608,Boy,43812,118638,49 +144609,Jervis Langdon,120747,50833,7 +144610,Ivan Druganov,18998,182951,5 +144611,Physio Patient (uncredited),284052,1366885,35 +144612,Jane,1922,14464,5 +144613,Roger Davis,15199,87927,0 +144614,Nick Steele,33789,155018,1 +144615,Terence Aloysius 'Slip' Mahoney,252916,89989,0 +144616,Madam Rita,151431,109865,10 +144617,Euguenio,265563,946857,4 +144618,Gabby,32124,108918,8 +144619,,267483,1315175,15 +144620,Leif,126250,3398,5 +144621,The Appraiser,42678,121318,13 +144622,Herself (as Cristina Kirchner),47426,141678,3 +144623,Vice President,230179,8536,3 +144624,Scientist,52520,168540,17 +144625,Hank,23855,24360,6 +144626,Stariji policajac,11373,1523632,12 +144627,Vanessa,260001,1240486,5 +144628,,85836,1369182,9 +144629,Mary Bowdin,257907,89942,3 +144630,Mrs Allen,18093,65448,5 +144631,Tony - Prisoner in Death Row,26376,89691,60 +144632,Lőrincke,8776,1177343,9 +144633,,330333,71491,4 +144634,,83732,930025,4 +144635,Marc,329724,14606,3 +144636,Rose,52959,42572,6 +144637,"Василий Алибабаевич, ""Алибаба""",20871,86669,3 +144638,Tom,66125,55900,3 +144639,Busfahrer,217412,1106520,16 +144640,Ali Federman,159701,99241,1 +144641,Anna Sofie Schindler-Moll,83209,10627,4 +144642,Olivier,223946,1285939,9 +144643,Plant Detective (uncredited),15794,179327,52 +144644,"""Dub""",435041,1191678,3 +144645,Pracownik stacji benzynowej,155325,395016,20 +144646,Madame Pette,369885,1651402,41 +144647,Rayna's Friend #5,356752,1545707,15 +144648,Cattaneo,14400,49947,13 +144649,Lindy Hopper,369885,1379275,26 +144650,Zellner,152748,558860,14 +144651,Anna,381255,586757,2 +144652,Ferdinando,159474,24684,11 +144653,Edith,122023,9827,1 +144654,Curl Nose,1579,17683,10 +144655,Miss Jezzard: Staff of St. Swithin's,83015,142345,5 +144656,,173577,219215,3 +144657,Ward,308032,236851,11 +144658,Miriam,369524,2207,10 +144659,Mose Miller,343369,27690,7 +144660,,293092,1364474,2 +144661,Prince Luitpold,3478,80692,17 +144662,Biker / Victim (uncredited),5421,87680,10 +144663,Smug,18898,1228956,9 +144664,Rose Starling,340101,12539,12 +144665,Sid LeMaire,93313,13361,8 +144666,Edna Turnblad,2976,8891,0 +144667,Co-Pilot,335970,1316670,51 +144668,Interviewee (as Nigel West),81576,928921,0 +144669,John Bradley,179603,1208,1 +144670,Agnes,129359,6292,12 +144671,Tailor,8935,118742,4 +144672,Professor Leo Sullivan,86297,4093,2 +144673,Cop,18843,81142,35 +144674,Groupie #3,40208,98581,13 +144675,Sacha Keller,121936,51100,0 +144676,Referee,71120,1872175,13 +144677,Mildred Monterossos,16240,54652,18 +144678,Nymph Warrior,32657,1507605,47 +144679,Resistance Medic (voice),140607,1729809,77 +144680,Joe Meadows,54242,89521,1 +144681,D J Fontana,40047,42157,7 +144682,,53693,1443155,18 +144683,Francine Evans,12637,66776,0 +144684,Un homme en soirée,221667,1649191,15 +144685,Fast Food Clerk (voice),809,1571793,15 +144686,Jacob,23048,54729,4 +144687,Lita,241071,130782,1 +144688,Bob Music,17275,34515,2 +144689,Wife on Airplane,27629,107678,24 +144690,Ga-rim,147533,1867385,4 +144691,(uncredited),56068,102864,17 +144692,Sebastian (voice),13676,67392,1 +144693,Dark Son,168616,587354,2 +144694,The Kommandant,116554,10746,2 +144695,Rev. Alex St. John,58411,227793,2 +144696,Peckinpaugh (as Emil Meyer),37084,14579,8 +144697,Luca,378570,1381776,2 +144698,Nick,13534,141,4 +144699,Himself,97724,1388690,40 +144700,Al Fountain,31146,1241,0 +144701,Bob Rosen,40368,104528,3 +144702,Gen. Torres,116973,89999,8 +144703,Dr. Cyrill Kipp,55922,707,9 +144704,Plumber (uncredited),14615,589728,18 +144705,Alice,60422,7517,2 +144706,Marjorie Worden,85483,18365,0 +144707,Maresciallo Marra,60014,538006,4 +144708,Scarecrow (voice),59981,707,1 +144709,Sara Wilson,921,14892,10 +144710,Roy,375355,1612445,9 +144711,Drunken Seaman (uncredited),32684,93623,5 +144712,Ranger,362180,1752991,10 +144713,Mrs. Vera Preston,118900,14686,3 +144714,Boris,393407,47820,2 +144715,Dolly,94551,16059,8 +144716,Tama Shimamura,176143,19221,0 +144717,Reggie Drake,54242,150191,5 +144718,Anitas Tochter,3870,34040,14 +144719,Me Martinelli,37645,24537,29 +144720,Dylan,255343,55493,2 +144721,Milan,67633,110968,7 +144722,Miss Dove,4809,39554,0 +144723,Heather,45020,56677,4 +144724,Marta Assante,52808,1087376,12 +144725,Gang Member,87593,935282,0 +144726,Lorenzo,306555,27274,1 +144727,Josiah Brown,53231,148029,4 +144728,Tish,184098,63234,10 +144729,Arturo Merlino,379873,89193,0 +144730,Yi-jeong Park,4550,554330,7 +144731,Michelle,10071,51856,9 +144732,Mr. Harriman F. Spritzer,409447,155403,13 +144733,Madhu's Father,66292,86784,4 +144734,,129533,1028331,4 +144735,Mac,10165,19217,0 +144736,Kingsley Willis,35404,2496,4 +144737,Detective (uncredited),144475,117036,17 +144738,Amber Von Tussle,2976,29221,9 +144739,Barbara Norris,76286,16102,3 +144740,Bi-Plane Mechanic (uncredited),2567,1372185,64 +144741,Capt. Bootz,72638,133277,46 +144742,Black Magician (voice),72013,1257710,13 +144743,Stephane Leheurt aka Fane,64437,28281,1 +144744,Leo,134782,1100035,2 +144745,Florence,3554,32774,6 +144746,Оринтия,63449,1853256,10 +144747,Mutant Child,263115,1821491,81 +144748,Driver's Friend,47186,552216,8 +144749,Castle,32609,80620,2 +144750,Reverend Foote,10761,65568,11 +144751,Zofe Uta,374319,42439,9 +144752,Amalia,44527,229261,3 +144753,The Mole King,62670,8212,2 +144754,le professeur Lantier,58928,17498,4 +144755,Skin Specialist,30141,3712,11 +144756,Joe Bergman,94009,85899,11 +144757,,60807,1684888,8 +144758,Amanda,134308,3489,1 +144759,Soong Mei-Ling,25626,69033,15 +144760,Tsakalos,80988,65896,1 +144761,Mrs. Dolley,14589,13996,18 +144762,Gonkurô the Mountain Storm (voice),63486,239451,6 +144763,albert,60106,62447,1 +144764,Dimas,136752,1208791,4 +144765,Frank,127728,1085657,5 +144766,Cedar Lemons,277710,1456660,11 +144767,Inger,315362,76390,4 +144768,Seymour (voice),9836,59785,14 +144769,Solo,21371,87466,0 +144770,Mickey,47231,138206,1 +144771,"Евгений Иванович Трошкин / «Доцент», Сан Саныч Белый",20871,86664,0 +144772,,110001,3813,12 +144773,Melinda Gates,186606,113224,2 +144774,Mr. Big (voice),269149,34521,17 +144775,Tyrone,135652,149010,2 +144776,Colonel Sam Synn,61341,26066,0 +144777,Commissario,54309,1173836,14 +144778,Henry DeTamble,24420,8783,0 +144779,,137504,554324,14 +144780,(as Laura Rocca),81409,98793,16 +144781,Mrs. MacDonald,53953,15500,12 +144782,Joe Jr.,14669,4729,2 +144783,Mamma Grazia,146596,1124446,4 +144784,Frau Corazon,85469,588317,4 +144785,,190883,1086711,0 +144786,ICU Doctor,21208,44191,20 +144787,Josai,4413,37148,5 +144788,marinaio americano,11048,100414,10 +144789,Loki,328032,5649,4 +144790,Wreathmaker,79329,586529,7 +144791,,190341,1531735,8 +144792,Rómulo,106887,1302052,3 +144793,Murray,22585,30861,2 +144794,Cecil Gaines (15),132363,1198999,7 +144795,Henry,14457,11086,5 +144796,Garret,8382,112285,8 +144797,Seaman Wyatt (Radioman),53949,115772,13 +144798,Lieutenant Beckman U.S.N. - Communications,17744,41734,13 +144799,Energumeno,160844,141111,8 +144800,Maureen,2143,21978,3 +144801,Breslow,45875,21724,15 +144802,,299165,1697808,29 +144803,Jasper Cates,18375,37822,1 +144804,Inspector Daya,285803,85658,4 +144805,Mrs. Lewis,57680,11794,8 +144806,Cmdr. Tim Mackey,10005,29068,2 +144807,Stormtrooper,330459,1408401,91 +144808,Track Announcer,7326,144438,24 +144809,Hirokawa Takeshi,282069,2542,7 +144810,Neighbour being questioned by Police,256092,1338741,17 +144811,Jacob Shorter,28320,56389,4 +144812,,56971,131670,6 +144813,Policeman,52021,1088210,8 +144814,Joe Mackins,73873,27428,2 +144815,Dr. Creason,181753,22437,6 +144816,Pensteman,45874,160899,5 +144817,Twisted Tin Soldier,75204,81430,11 +144818,Astronaut Hans Walters,36530,115541,14 +144819,Marcos,306966,1031744,5 +144820,Reashaun,142989,1004915,4 +144821,Chiyo,1904,19855,4 +144822,Fat Girl with Sailor in Nightclub (uncredited),242631,95301,27 +144823,Richie,68716,91609,7 +144824,Nurse Gomez,41171,192709,44 +144825,Dr. Wong,10071,62833,13 +144826,Alvaro,15664,78498,2 +144827,Albert,429200,1673586,17 +144828,,265314,89445,7 +144829,Tyler,176124,211599,2 +144830,Mr. Evans,352186,60205,13 +144831,US Park Officer,209112,1695992,89 +144832,Tadeusz,14558,66460,9 +144833,Mag Kiln,20880,1004043,0 +144834,Éric,12169,578081,7 +144835,American Consul,102384,138219,8 +144836,Doctor,171337,1334197,10 +144837,Willie Colon,15934,40543,2 +144838,Partisan,1271,115596,17 +144839,Ralph Maida,142216,18666,1 +144840,Jimmy,20047,5576,0 +144841,Dr. Vögeli,277968,65075,17 +144842,Julius Streicher,102155,45252,10 +144843,Bar Patron,268920,1011212,91 +144844,,140509,72932,7 +144845,Lieutenant Marin,52021,555532,5 +144846,Gunner Corbin,54318,1142100,13 +144847,Ken (as Lam Suet),45303,25251,4 +144848,Hillard,105077,198607,16 +144849,Locksmith,19971,1761543,11 +144850,Bank director,199602,1287557,2 +144851,Owen's Mother,41402,20047,11 +144852,Miss Wong,365222,932680,4 +144853,,378503,1754821,6 +144854,Joy Watkins,19901,1391737,12 +144855,Captain,89086,131003,40 +144856,Moglie De Salvo,59040,1706562,33 +144857,,360603,1300639,9 +144858,"Decalin, Captain of tanker ""Yamal""",271234,235682,4 +144859,The Hobo,98369,116514,4 +144860,Wayne,135686,947464,4 +144861,madre del bambino,43649,126631,11 +144862,Private Investigator,443319,1797630,10 +144863,Taxi driver,332827,1551198,8 +144864,Totsky,63958,238313,11 +144865,Jo Ann,44626,5730,1 +144866,,27053,1460959,19 +144867,Pastor,24420,1239413,22 +144868,"Biagi, Radio Operator",8063,10254,5 +144869,Detective,117905,1218891,11 +144870,Bones,252680,85477,21 +144871,Cockney News Vendor,109716,1353601,44 +144872,Leonid Filimonov,148622,239722,0 +144873,Yoshino Kôda,315846,87637,13 +144874,Cyclops (voice),810,136530,39 +144875,Lynn Cameron,44945,2229,1 +144876,Vadim Nezhinski,2001,20563,2 +144877,Der Weiße Helge,9803,18400,17 +144878,Ashlyn Halperin,9286,58393,9 +144879,Angel Boland,5748,45309,0 +144880,Ah Jung,105703,228914,2 +144881,Jane Kauffman,88583,10767,1 +144882,Himself,74935,1206804,0 +144883,Nikola,168541,85643,11 +144884,Helen the Lunch Mom / Yoga Instructor (voice),153518,1226302,15 +144885,Revolucionario (uncredited),198795,583103,24 +144886,Jess,18898,83818,5 +144887,Nils,129518,45747,3 +144888,Young Fighter at Gym (uncredited),28000,165721,69 +144889,Betty,312138,85626,4 +144890,Fingers,5965,46920,8 +144891,Guard Wolf / Additional Voices (voice),269149,1610451,39 +144892,Commissioner Chow,42120,140481,5 +144893,Luis,136752,1208797,10 +144894,Man in Alley,333385,1160627,24 +144895,Stevie 'The Rose' Rosellini,94894,26485,0 +144896,Stoner,306952,1511990,50 +144897,,118257,18627,2 +144898,Jess Warner,94551,101032,5 +144899,Tori Frederking,50725,20374,3 +144900,But! Boy (uncredited),16442,17759,21 +144901,Don Lucho,378087,928777,10 +144902,Gaëlle Faroult,139159,121533,0 +144903,Russian Police Officer,146216,1684513,26 +144904,The Assassin,180299,1379749,7 +144905,Queen Hippolyta,297762,935,5 +144906,Mikey Gaffney,331313,1739697,13 +144907,Sergeant Van Meer,16083,79228,16 +144908,"George ""Poppy"" Rose",48627,2638,0 +144909,Gary,336265,1165061,12 +144910,Baird,53792,1324778,18 +144911,Michael Oher,22881,112560,1 +144912,Mrs. Babson,106635,1176933,14 +144913,Vincent Yost (uncredited),31713,7074,10 +144914,Detective,43113,1481125,43 +144915,Erik (voice),65759,1340664,13 +144916,Claire,13058,1548606,18 +144917,Jimmy Dolan,43268,9070,1 +144918,Teenage Alice,284537,1461683,13 +144919,Det. Lt. Sims,19618,3088,0 +144920,,101995,115011,0 +144921,Seminar Presenter,239566,129868,27 +144922,Oana,1253,21657,2 +144923,Professor,5123,47085,13 +144924,Undercover Cop,429200,1521876,20 +144925,The Son,76533,152814,1 +144926,Stormtrooper,330459,19506,73 +144927,"Vic, General Store Owner",37481,16172,14 +144928,Pinstripe Mafioso,127585,64674,32 +144929,,74674,1445126,28 +144930,Oddbod,5060,96372,11 +144931,Mabel Chilton,44562,6199,5 +144932,Nestor,381356,1572960,5 +144933,Dentist,91186,118742,11 +144934,Sylvia,348315,45749,1 +144935,Sparky,10011,62007,12 +144936,Ranch owner,125673,100804,3 +144937,Another Janitor,53410,148035,5 +144938,Joey (uncredited),48627,1024619,19 +144939,J. Parnell Thomas,294016,97446,12 +144940,Detective Kuroda,12720,4994,0 +144941,Sailor Jupiter / Makoto Kino,37100,81851,4 +144942,Young Cathy,36597,1555749,19 +144943,Curtis Carey,43385,31551,2 +144944,Viki,150657,91977,8 +144945,News Reporter,52454,1630261,14 +144946,Martin Benson,5559,8246,8 +144947,Head of Security,84994,1223323,1 +144948,Jess,58547,20381,13 +144949,Nun,42634,14789,9 +144950,Stockwell,359412,543530,2 +144951,Aunt Rita,85580,932337,1 +144952,,206277,134467,3 +144953,Woman in Theatre Powder Room,73313,121323,18 +144954,Douglas Hollister,38157,132553,4 +144955,Mr Wang,844,1178957,11 +144956,Lab Technician,16320,80437,27 +144957,Ezaburo Yamamura,46149,135130,1 +144958,Patsy Ellis (as Ann Faye),84905,1438635,7 +144959,Femme Aveugle,469172,1862608,17 +144960,Nightwatchman,35543,30163,6 +144961,Suchitra Sumanth,76788,123068,10 +144962,Mina Andrée,72785,550539,6 +144963,Chloe,197611,4038,1 +144964,Louis B. Mayer,50008,20277,7 +144965,Marynarz,31856,7114,5 +144966,курортник-дикарь,63300,559944,5 +144967,Jason,373247,62752,6 +144968,Sonny,35689,1951,1 +144969,,261871,225174,7 +144970,Sue Ellen Gamadge,37315,87685,6 +144971,Corinna Marston,4938,10774,3 +144972,Kyuta's Mother (voice),315465,27788,11 +144973,"Rene Müller, Polizist",167330,72221,22 +144974,Gordeya (voice),81604,1829813,7 +144975,Colonel Haïtham Saïd,43434,1117775,14 +144976,Himself,8079,53978,9 +144977,Lisander (as Giovanni Javarone),105860,1073145,5 +144978,Cotty,122081,79504,4 +144979,George Edwards,130507,80569,26 +144980,Mischief John,274857,6969,14 +144981,Dr. Randolph West,27840,99139,11 +144982,Voice From TV (Voice),427680,1758547,15 +144983,Beth Forbes,28894,102324,3 +144984,Raoul Lecorps,259,3595,10 +144985,,327909,125682,4 +144986,Trasker,17640,115330,14 +144987,Maj. Timothy Forrest,139826,1123198,8 +144988,Red Riding Hood,87302,64445,12 +144989,Bob Bratt,75363,1023534,11 +144990,The Corporal,84626,204112,2 +144991,Library Researcher,24420,1393529,12 +144992,Egon Olsen,11391,47151,0 +144993,Amanda,14695,50346,3 +144994,Ivan,30619,86726,0 +144995,Gant Henchman,11897,5048,21 +144996,Albert Markovski,1599,17881,0 +144997,Ezra,108003,30706,3 +144998,Soldier in Corona,340101,1865852,38 +144999,Gustav Buff,52475,1268543,28 +145000,,3549,202606,11 +145001,Liselot,19398,1469189,19 +145002,Owney,73313,89661,17 +145003,CIA Director,19665,11086,11 +145004,Jesus,43158,8536,0 +145005,,315837,183500,22 +145006,The Earl of Essex,31675,10074,9 +145007,Donnie,345915,54711,20 +145008,Boss Lady,17940,82520,5 +145009,Indian Chief Kowanen,68097,2097,11 +145010,Marco,8882,72788,5 +145011,Naval Officer,52454,1630332,44 +145012,Robert Barnes,218582,8729,3 +145013,Erika,79743,1169501,2 +145014,Bryan,42599,583743,13 +145015,Carl Granger,173662,14831,3 +145016,Mara,26752,587443,0 +145017,School Secretary,30174,1763721,17 +145018,Junkie,353686,1111108,17 +145019,At Ice Cream Festival,191068,17753,5 +145020,James Wylie,175386,33022,0 +145021,Jury Foreman,9667,23608,21 +145022,Akiko Kobayashi,135799,1251907,9 +145023,Coffee Patron (uncredited),331313,639817,52 +145024,Woman at Station,56154,1422109,16 +145025,Patti Smith,111479,1175394,36 +145026,Radio Detective,52395,33014,12 +145027,,265351,239258,4 +145028,Alain de Xantras,72375,41035,9 +145029,Madam Law,334557,1173600,5 +145030,Reaver,263115,1309902,20 +145031,Woolsey,38437,120456,14 +145032,Alfredo,282983,1313220,5 +145033,Stache,57201,6951,14 +145034,Reina,60599,221600,4 +145035,Abbot Kongxing,60568,1109778,9 +145036,,54503,1615009,12 +145037,Roman,33788,72095,1 +145038,Robert,374614,159386,1 +145039,Joon-soo's girlfriend 2,313628,1296705,7 +145040,Marcus,370178,1184955,1 +145041,Mariko,11838,552501,4 +145042,The Skipper,12638,920,0 +145043,Grave Digger,8988,1741965,42 +145044,Himself,366696,1753560,30 +145045,Belle,144271,1069224,1 +145046,Jenny,59115,83862,0 +145047,Roulette Player,33481,110792,42 +145048,Driver,5123,239794,30 +145049,Robert,48836,21721,3 +145050,,359152,210766,3 +145051,Naco Bartender,86472,1074078,12 +145052,Ferdinando,42441,1178212,8 +145053,Miles Hardwicke,49844,119670,5 +145054,Bride / Eve,282762,1133011,1 +145055,Old Ventura,93858,999813,2 +145056,,285935,1766384,3 +145057,Gisela,19398,88342,13 +145058,Ryan Beckett,5965,18702,0 +145059,Hélène Aubertin,292387,77191,2 +145060,Mori,284135,33517,1 +145061,Inspector Sayyed,33460,110712,8 +145062,Pierre,86985,296028,2 +145063,Jim Hawkins,26612,3894,1 +145064,Tracy,387957,1077253,10 +145065,Pere Dominic,3051,9221,4 +145066,Jack,338676,52886,2 +145067,Geschworener,225244,51270,7 +145068,Inspector,43833,1462633,27 +145069,Mental Hospital Nurse,68174,120251,7 +145070,Maksym,31273,37354,38 +145071,Robert W. Gardner,13834,59926,8 +145072,Brooklyn Webster,18843,110473,5 +145073,Lise,147360,1125746,2 +145074,Anna,122192,44649,0 +145075,le maître d'hôtel,76703,39496,7 +145076,Max Sturm,110525,120706,6 +145077,Eusebio,342213,1386558,7 +145078,Verpleegster,298396,73380,11 +145079,Telephone Operator (uncredited),28433,78934,9 +145080,Antonietta Masetti,31742,125424,0 +145081,Grandpa Quill,283995,2518,16 +145082,Social Worker,210047,77264,11 +145083,Pedestrian (uncredited),339403,1635160,48 +145084,Martina,356758,1469306,1 +145085,Mutant Twin #2,2080,1353659,58 +145086,Chantal Legorjus,76609,4529,6 +145087,Halpern,43281,2245,2 +145088,Enfermera Quimioterapia,280840,100667,4 +145089,Calise,62522,52116,5 +145090,Henny,267793,62171,14 +145091,Harry Goldsmith,247691,19440,6 +145092,EMT (uncredited),209112,1594986,148 +145093,Varia,2172,110106,10 +145094,Himself,296194,43120,3 +145095,Nogueira,30127,55036,6 +145096,Lilith,42941,18658,1 +145097,Pete Hartofilis,36691,6437,9 +145098,Dary,49853,1648796,41 +145099,Gary Hamilton,77165,14277,0 +145100,,421365,980211,6 +145101,Tabaqui (voice),59803,86841,3 +145102,Police Man,40465,920,7 +145103,Hot Dog Kid,13374,979671,14 +145104,Oscar,33314,16459,12 +145105,Orui,73043,27788,0 +145106,Taylor Fisher,68684,1429172,10 +145107,,11328,1444501,49 +145108,Junior,332354,1331701,7 +145109,Elise,289225,1785298,13 +145110,Sadie,105059,153395,15 +145111,Mad Dog,354979,5293,1 +145112,,49653,1386485,12 +145113,Capt. Alidze,40985,135169,11 +145114,Kaminski (jung),277968,137791,22 +145115,Mitarbeiter Puma,359483,143197,4 +145116,Velma 'Cindy Lou' Calhoun,70313,3161,3 +145117,,33009,55089,6 +145118,Latrell,1550,62520,17 +145119,Goodtime Nate Fishkin,72096,7140,48 +145120,Zwilling 1 – Antonia,75969,1902102,55 +145121,Lou Salome,19029,26723,5 +145122,Miriam Pendergast,245906,41640,8 +145123,"Peppino ""il Gobbo""",11048,1861524,17 +145124,,72933,55784,6 +145125,Nowikow,370264,1542295,7 +145126,Shelly Wilson,36817,102570,4 +145127,Joe,47758,4355,7 +145128,Motorcyclist,64725,1007636,15 +145129,Lindsay,172897,1639,5 +145130,Dick Harbinger,76681,10671,0 +145131,Madre,42225,225392,2 +145132,Bogdan,324670,1151794,25 +145133,SP Cheung Man Yiu,19528,1175810,6 +145134,Vivi Santi,108535,1074940,25 +145135,Harsha,303966,927966,5 +145136,Lesbian Lover (uncredited),508,47468,35 +145137,Jorge,102382,1650216,28 +145138,Margit Kauriloff,442752,1761835,25 +145139,Charlie (as Chico Lourant),124597,1051831,5 +145140,Psychologist,75101,1523988,7 +145141,Noah Weaver,343369,1233560,1 +145142,Christian,33134,1079573,2 +145143,Bloody Rain assassin chief,18758,1139707,8 +145144,Desolata,3870,34035,11 +145145,Scruffy Man #2,199575,1438877,26 +145146,Ivan,59962,64674,18 +145147,Barber (uncredited),151062,5472,10 +145148,Guy,77439,59096,4 +145149,Dalibor Vrána,36919,72795,0 +145150,Christian Prouteau,76609,23669,5 +145151,Paul McFee,13079,16841,4 +145152,Moonbeam,33541,34472,34 +145153,"(segment ""Bico"")",8985,1456424,2 +145154,Macbeth,133448,2387,0 +145155,John Fordman 'Johnny' O'Hara,36634,50304,5 +145156,Duty Cop at Party,149793,1291802,13 +145157,Matvey,96724,29412,34 +145158,Paul White,10760,55779,9 +145159,Thug Leader,215743,1295711,3 +145160,Mi-ra,257331,96466,7 +145161,Mourner (uncredited),86825,1589746,18 +145162,Katrina,310137,1537527,7 +145163,Chin,80343,516518,9 +145164,Jéferson,30127,225082,7 +145165,Dinky Winks Jr.,12279,1231768,32 +145166,Junibel,429238,1719210,17 +145167,Special Agent,262841,33049,33 +145168,Anna Held,43522,4116,8 +145169,,235092,2264,9 +145170,Fred Anderson Jr.,173662,9865,2 +145171,Abuela,54236,1555019,4 +145172,Ulysses,73700,58461,10 +145173,Ringsider,108222,1181275,36 +145174,Barker Simmons,88042,1144353,6 +145175,Elien,15387,1080768,12 +145176,Joan Dennison,54570,1277230,12 +145177,Dr. Cox (uncredited),365942,1654004,47 +145178,Sergeant Carnelli,6973,17051,4 +145179,Harry Osborn / Green Goblin,102382,122889,3 +145180,Bennett,10900,67696,7 +145181,la mère d'Adrien,64481,55927,10 +145182,Tiger Ann Parker,76422,272773,1 +145183,Jenny Lofton,54660,27964,5 +145184,Alfredo (as Gilbert Grosso),40978,136073,10 +145185,James,228331,23626,1 +145186,Merab,39013,46814,3 +145187,Thing 1 (voice),43580,150739,6 +145188,Cheyenne Mortenson,70821,303020,2 +145189,Stanley,230179,126801,11 +145190,,18908,1440940,12 +145191,Cody,142402,1117095,27 +145192,Mr. Saxena/Sirjee,16987,6217,2 +145193,Himself,226632,1231717,0 +145194,Kidnapper,49712,1166314,24 +145195,,11972,1303018,7 +145196,,38359,625707,7 +145197,Fred Winters,40799,124634,5 +145198,Stuart,276401,19278,2 +145199,Mantis,283995,139820,7 +145200,Bonnie (voice),44896,5151,16 +145201,The General,1904,10885,12 +145202,Turanga Leela (voice),7249,18980,3 +145203,Dr. Luther Brooks,28433,16897,5 +145204,Viscount Ronald River-Clyde,104556,47178,3 +145205,Yazaad Qureshi,275269,1179627,6 +145206,Mrs. Van Dyke's Child,174594,1321410,9 +145207,Alberto,42420,17839,3 +145208,The Monk-Dun Huang,32091,1623,6 +145209,Anna Le Page,194817,1163674,5 +145210,Terje Vigen,108017,8741,0 +145211,Strip Club Patron,77930,1784659,67 +145212,Alarid,1164,122306,33 +145213,Lorraine,20430,177898,13 +145214,Comandante dei vigili,60046,12329,2 +145215,,299165,1697810,31 +145216,Gwen French,38724,16759,3 +145217,Mayor Henry L. Jensen,247691,29719,8 +145218,Sonja Ralston,44115,51988,4 +145219,Gallery Visitor,245700,139444,64 +145220,Dr. Carpenter,74777,1395236,13 +145221,Herself,25568,1553392,3 +145222,Mrs. Dabney,97024,2018,6 +145223,Sabri,344120,239118,1 +145224,Hula Dancer at Equator Club,31899,1205499,43 +145225,Old Doctor,285840,190355,13 +145226,Annabeth Chase,32657,109513,2 +145227,Miss Adebayo,209401,1065549,5 +145228,Himself,326255,1633758,6 +145229,"(segment ""Miminashi Hôichi no hanashi"")",30959,552661,44 +145230,Señora 2º,52943,237481,5 +145231,Doris Stevens,49007,42279,9 +145232,Jan Rudinski,71725,1047204,1 +145233,Vel,72663,1009079,1 +145234,Sarah Kellogg,77625,56694,6 +145235,The Spider Lady,126712,138471,3 +145236,Mazie,118134,141304,11 +145237,Дедушка Магомед,335819,124268,6 +145238,Kathryn Rose Thompson,294093,1420247,2 +145239,Colonel Rhumbus,9080,10939,8 +145240,Barbara Ann Green,52867,4514,1 +145241,Nurses (voice),9389,1180477,10 +145242,George,42734,1146141,9 +145243,Ting Tsz-chung,334557,1450373,4 +145244,Tech,195269,62915,16 +145245,Kathy,83714,4734,5 +145246,Andrew 'Andy' Hardy,116232,1937,2 +145247,Karen Philips,48412,91639,1 +145248,Jerome Malley,82465,2091,0 +145249,Caroline,229297,57514,5 +145250,Grat Dalton,259975,33059,7 +145251,Tabitha (BLOB),347630,1695648,14 +145252,The Elder (uncredited),3081,1125735,18 +145253,Izumi Naruse (Voice),364111,1357295,6 +145254,Rebekah Jackson,362026,1516700,6 +145255,Herself (uncredited),322400,543116,4 +145256,Pastor Marvin Winans,319096,1088201,9 +145257,Reporter,109716,120703,75 +145258,Mr. Rogue,218778,110141,16 +145259,Poliziotto,41610,100941,16 +145260,Quick Stop Cashier,14976,120831,7 +145261,Dr. Hans Frick,72419,8197,0 +145262,Theotis Bliss,44690,1484152,5 +145263,Sveta,62732,230720,2 +145264,First Elevator Operator (uncredited),17136,133230,42 +145265,Dewey,35381,590,9 +145266,Tania,9993,61642,15 +145267,Jadranka,382873,1455347,3 +145268,Sook-young,279159,1076617,2 +145269,German,81522,26532,9 +145270,,251555,964,10 +145271,Janine,135708,16307,3 +145272,Sille,21282,1077852,14 +145273,Corey,4191,24299,2 +145274,She,17609,4273,1 +145275,"Clarence, Earl of Emsworth",144183,11390,3 +145276,Grimes,204040,25176,10 +145277,Gunnar Volt,41076,141618,0 +145278,Eliza de Feuillide,2977,29235,6 +145279,Commander Yu,455043,62410,2 +145280,Nina,109453,4430,6 +145281,American Contractor 2,48243,929508,3 +145282,Harry Horner,14750,1345506,13 +145283,Leonard,142989,86577,6 +145284,ober,35016,1351367,26 +145285,Ethel,48791,3967,5 +145286,Benny Goodman,97829,82408,9 +145287,Adolf Hitler,116554,72310,3 +145288,Exploding Angel Bookie,1481,1844333,22 +145289,Claire Wheeler (voice),62211,119592,13 +145290,Brian,2061,21183,9 +145291,Dwight Stifler,8277,26975,1 +145292,,105860,1019919,9 +145293,NASA Expert,5172,1448096,44 +145294,Doctor,91548,1418959,14 +145295,WW2 Nazi Vampire Extra,246741,1129689,39 +145296,Dave,370755,1650162,25 +145297,Richard K. Fox,209293,6575,5 +145298,Kane Osaki,17386,65198,7 +145299,,45441,2544,9 +145300,Prof. Torricelli,70734,1618651,16 +145301,,104251,1127065,7 +145302,Max (voice),32202,14795,11 +145303,Antoine,362180,1382870,13 +145304,Himself,26465,1056119,5 +145305,Maurice Levine,4809,41720,7 +145306,"Михаил Натанович, программный директор",143883,86878,5 +145307,la jeune femme dans l'escalier,79435,587179,6 +145308,Herself (archive footage),393367,1660174,1 +145309,,49398,578332,14 +145310,Pavloo,85715,1706581,13 +145311,Ed Ferguson,64456,14508,4 +145312,,317246,31321,7 +145313,Joe Monetti,20003,55821,3 +145314,Producer,44458,26724,4 +145315,,86321,1903061,8 +145316,Whistling Jack Kileen,47914,40207,4 +145317,Shipping Clerk,258480,1545504,18 +145318,Leslie,10999,1183969,9 +145319,Micheail,1116,15502,7 +145320,Samantha,156981,1575344,5 +145321,Michelle McGee,68387,134178,2 +145322,Judge,37628,1043462,13 +145323,Yoda (voice),140607,7908,57 +145324,Wasabi (voice),177572,87822,5 +145325,Maya,19116,116910,5 +145326,Maxoye,276220,933314,6 +145327,Himself - McFly Band Member,10025,62071,11 +145328,Maitre d',2567,81430,39 +145329,Mrs. Carpenter,102841,45863,2 +145330,,195544,119350,19 +145331,Schoolboy Extra,42852,143635,21 +145332,Miss Nieven,35052,11281,7 +145333,Çocuk Oyuncu,452606,1797950,22 +145334,Hombre en cabaret (uncredited),210653,583104,13 +145335,Candy Williams,104083,83442,10 +145336,Worker,182127,1440458,35 +145337,Manso,119364,83810,7 +145338,Gat Morgan,19618,69319,6 +145339,Jesusín,254869,1423064,2 +145340,Big Guy,343173,17072,8 +145341,Siri,56937,109914,3 +145342,Jack Blackburn,111744,6487,3 +145343,Miss Cecilia Landis,20644,85956,9 +145344,Jesse,11045,67913,3 +145345,Henry Caine,7006,51799,2 +145346,Lynn Bedik,13468,39388,2 +145347,Fantasma 2,60120,1188435,4 +145348,Charles Forestier,118536,8516,3 +145349,Policewoman,9274,1270535,8 +145350,Skinhead,394822,1385061,13 +145351,Mr Deakin,77292,22169,0 +145352,Meten,115276,67210,13 +145353,Will Leathwaite,186227,29817,9 +145354,Pa Grape,275136,78297,3 +145355,Pathologist,124501,109651,7 +145356,Himself,61487,35824,5 +145357,Antiques dealer (uncredited),37628,31599,18 +145358,,52360,1472510,30 +145359,Spitter,9793,59297,9 +145360,Brad Hayes,84892,27104,7 +145361,,329206,1291458,3 +145362,l'achéteur,4443,11221,7 +145363,Woman at Party (uncredited),40978,135629,18 +145364,La Spack,52369,2415,0 +145365,Street Performer,51999,20699,12 +145366,Grace,280092,1400838,16 +145367,Eben Adams,32558,7664,1 +145368,Five and Dime Patron,268920,1288831,78 +145369,Drug Store Clerk,27966,1422893,36 +145370,,323665,1036825,14 +145371,Ed,331588,1833904,13 +145372,Maria Goldstein,61168,10742,1 +145373,Eddie the Bat Boy,61225,1735983,10 +145374,Joseph P. Garrity,357130,29579,5 +145375,Onaka,46069,1065416,6 +145376,Alfred Pennyworth (voice),411802,110800,6 +145377,Jane,96133,931991,4 +145378,Narrator / Hillbilly (voice),145760,1190697,0 +145379,Himself,74510,55638,0 +145380,Philippe (voice),23566,13472,1 +145381,Man with Microphone in Back Seat of Car (uncredited),15794,40577,36 +145382,Nice Official,51999,71770,16 +145383,Young Woman,41171,298754,51 +145384,,143068,1118285,3 +145385,Yee's colleague,32233,1172955,5 +145386,William Stryker,127585,1056053,15 +145387,Sang,25074,1109778,14 +145388,Himself,256628,108222,2 +145389,Wann,313074,1402674,11 +145390,Uomo sulla slitta,42416,71302,5 +145391,Alfonso Abruzzo,4982,75604,9 +145392,Emily,367732,1451705,9 +145393,Coach Mark Maddox,13680,26008,9 +145394,Madam Marie,102841,70089,5 +145395,Chanda,45244,550853,0 +145396,Suleman,271677,1032629,13 +145397,M. Pinelli,4266,24540,6 +145398,Dr. Roman Bosch,58166,8199,2 +145399,Pru,332839,143425,4 +145400,Natalie,301804,49425,3 +145401,Ravager (uncredited),283995,1806603,59 +145402,Semyonych,62688,125737,1 +145403,Arivazhagan,341895,1315576,15 +145404,Sofia,58400,1093685,8 +145405,un gendarme,64437,119377,13 +145406,Rico,13383,1530457,5 +145407,Gus,43157,9069,5 +145408,,264264,1291458,18 +145409,Bar Patron (uncredited),214756,928638,36 +145410,Mother,39840,129656,3 +145411,Matt,25536,1357559,10 +145412,,62614,125799,2 +145413,Janitor,335970,1352567,17 +145414,Paul Berry,29083,102853,5 +145415,Diner Patron,26518,1284627,6 +145416,vedova Adami (episodio L'Ascensore),68882,94799,12 +145417,Carlo Colombo,42441,266937,3 +145418,哆啦A夢,265712,1521122,16 +145419,Leopard Lady (uncredited),109491,1682510,34 +145420,Dao Xing,66756,69636,0 +145421,Banker,146216,1529085,50 +145422,Pastor Erikson,405882,90117,1 +145423,,264264,1628639,19 +145424,Sir Frederick Travers,28425,30136,8 +145425,Mystery Lady,102841,41251,12 +145426,Peder,60935,76611,10 +145427,Nira's husband,270646,1259880,3 +145428,"Jimmy, 'Internet dad'",152989,1179888,26 +145429,Leo,95177,107766,1 +145430,Girl on Boat,259075,556747,7 +145431,Iraqi Car Driver,424488,1837291,43 +145432,Military Police,279096,1380106,18 +145433,Gudfinna,70800,1167484,3 +145434,Simeon / Slave Trader (voice),16366,6106,8 +145435,Nikki Slater,248633,1283805,4 +145436,Watch Sergeant,17317,131418,14 +145437,Eileen Fox,30644,106667,6 +145438,Hunter,116463,1037373,18 +145439,Lead Conspiracy Guard,246655,1796383,20 +145440,Henri Dieudonné,23857,1035597,3 +145441,Waitress,347945,1549115,10 +145442,,69352,142785,1 +145443,Lea,31821,15423,7 +145444,Harpist Assassin # 2,9470,118745,12 +145445,Pablo,331354,971606,9 +145446,Palm Reader,151911,148518,14 +145447,Pool Party People,9885,20374,6 +145448,Alvarez,343173,1395104,13 +145449,Prime Minister's Wife,177677,1562110,67 +145450,Raider,100110,42745,2 +145451,Black Fox,11839,95013,11 +145452,Sudanese representative,329865,1548738,32 +145453,Niels,44716,88543,5 +145454,Kaja,32559,480658,2 +145455,Meredith,158150,45428,9 +145456,Leo 'The Lion' Sporino,312221,1537627,12 +145457,Mustache Cop,75761,1769861,20 +145458,Captain,272878,1380492,12 +145459,Matthew Carson / Newman (voice),77664,85199,5 +145460,Natasha Lytess,337751,6368,5 +145461,Alvin,44190,25177,13 +145462,Ship Captain (uncredited),51303,148416,9 +145463,General Rafael,25426,1856642,6 +145464,Hanks,19017,141395,4 +145465,Barbara Pratt,8270,19958,6 +145466,Chester (voice),411221,1700953,8 +145467,Bruce,2186,11357,0 +145468,Police Officer Mulligan,27973,14453,15 +145469,Marianne von Krausnitz,3577,18545,9 +145470,Ferdinando,303982,1674715,2 +145471,Local #3,22551,89291,2 +145472,Terrible Tommy,134397,165844,7 +145473,Taneli,306323,138741,3 +145474,Red,97767,136894,10 +145475,Claudio,285840,1278643,15 +145476,Laura Garcia,221801,113648,1 +145477,Amy,11096,1789205,8 +145478,Sam Foley,79735,14732,5 +145479,Vault Guard,16320,80440,30 +145480,Valerka Meshcheryakov,41979,127405,2 +145481,Santhosh,74154,108216,0 +145482,Agatha Cromwell,34204,8857,2 +145483,Swindler,37189,26101,4 +145484,Cop #1,354979,1636787,57 +145485,Jon,180418,1162998,3 +145486,Agnieszka,200796,140664,4 +145487,Clive Henderson - Entomologist,17654,1351857,23 +145488,Herbet Zieler,40130,1019911,6 +145489,Bank Chairman,256092,56449,18 +145490,Man on Phone,118760,1734735,10 +145491,Halstead,152570,131025,6 +145492,Maximus,43692,4113,0 +145493,,264560,10859,4 +145494,Mazie (voice),38579,54693,1 +145495,Ling Ling Hei,37702,1398251,19 +145496,Mason,49508,45291,2 +145497,The Student-gambler,435041,556853,4 +145498,Whitmore,11939,1155163,7 +145499,Brigsby Bear fan,403431,1180701,16 +145500,Jeremy Taylor,104973,52063,0 +145501,Son,45649,202949,9 +145502,News Cameraman (uncredited),1726,1209729,84 +145503,Andy Campbell,345922,95101,0 +145504,Eli,7547,52884,10 +145505,Cal,150065,177144,9 +145506,quartet,72640,1487400,5 +145507,Patrick,82134,77036,9 +145508,Guiderius,240745,4012,8 +145509,Dionne Warwick (voice),1387,1194207,4 +145510,Silk Miller,84772,931240,3 +145511,Baktashy - The Shepherd,103539,1556838,3 +145512,Head Waiter,135390,252340,5 +145513,Miss Fleetie,128364,174639,6 +145514,le trompettiste,50350,57738,14 +145515,Marco,54099,63109,3 +145516,cameriere italiano a Brisbane,61799,16318,10 +145517,Pumpkin Witch / Palace Witch (voice),10192,109869,13 +145518,Super Soldier #1,293660,1127280,27 +145519,Political crony,78734,13969,17 +145520,Michelle / Young Bruce Wayne / Kevin Ridley / Anchor Trish / Additional Voices (voice),123025,15762,24 +145521,Sylvia,11205,67690,3 +145522,Clerk,179066,29961,57 +145523,Ayudante del juez (Judge's Assistant),29338,87248,8 +145524,Undetermined Secondary Role,186227,1382960,35 +145525,Sarah,202214,230578,12 +145526,"Christina von Heyroth (""Prinsessan hovineito"")",60678,72482,2 +145527,Grandma Katherine,72207,42000,18 +145528,Raj Malhotra,39839,35780,0 +145529,Chris Vaughn,11358,18918,0 +145530,Peg Mooring (voice),33427,63312,12 +145531,,62363,1038501,16 +145532,Al Dalby,22792,1065,3 +145533,Fish Hunter,1579,42013,19 +145534,Aaron Riley,82679,234984,6 +145535,Chin Chen,38034,62418,1 +145536,Professor,43812,96721,77 +145537,Robert Mars,146313,15234,0 +145538,(uncredited),54139,6679,14 +145539,Linda,84993,1165430,0 +145540,Nita St. James,43354,41240,1 +145541,The Prime Imperator,76341,66055,28 +145542,Indian,33541,127032,23 +145543,Wayne Monroe,23340,120004,4 +145544,,33009,21798,8 +145545,Sarah,359255,1487622,5 +145546,Nan Britton,104720,5698,6 +145547,Eve - aka Madame Françoise,157898,50836,47 +145548,,25626,1211897,31 +145549,First Order Officer,140607,1408809,54 +145550,Alonzo,376501,61535,8 +145551,Vernon Presley,40047,123720,2 +145552,Lloyd Henreid,13519,15860,4 +145553,Doc Nagobads,14292,6074,4 +145554,Hiroko Uchiyama,18722,91289,2 +145555,Jim Halsey,9542,2878,0 +145556,Sarah Davis,2778,2453,2 +145557,Michal,2734,27638,11 +145558,Himself - Son,15584,1051829,5 +145559,Tetzel,213635,10021,1 +145560,,9568,103,17 +145561,Ben Stiller,63578,7399,10 +145562,Russian Lead Driver,337339,1517833,24 +145563,Marisa,16022,41729,14 +145564,Spider,55681,1086568,11 +145565,Charlie the Bartender (uncredited),32021,157316,19 +145566,Victor,273896,929202,1 +145567,Sam Urdell,37923,14574,3 +145568,Himself,371084,51944,1 +145569,Father Denis,1116,2468,46 +145570,Lavinia Hall,206197,1385063,2 +145571,Swami Yogadachi,91181,13356,7 +145572,Ahmed,52555,24696,1 +145573,Beach-Head,17421,81841,8 +145574,,376934,1074005,1 +145575,Mrs. Johnson,43470,34268,7 +145576,Achmed,174645,553544,12 +145577,Adam,97206,52480,1 +145578,Van Mier,2080,94350,25 +145579,Troy,16197,1317397,5 +145580,Hans Lucas,43026,3776,5 +145581,Agent Solano,336845,3977,6 +145582,Hotchkins,255647,23346,3 +145583,Diego,43544,128419,21 +145584,Brigadier Cavillan,37710,24542,15 +145585,Happy,32235,11085,6 +145586,Travis Freeman,295588,207509,0 +145587,Naomi Caldwell,94671,6929,1 +145588,Dançarina de Frevo,70666,1863905,48 +145589,Capt. Kane of the Suva Star,38460,120716,8 +145590,Cee Bee Beaumont,85916,1070234,1 +145591,Isaac Turner,339408,1055236,8 +145592,The Mouse (Voice),81684,55466,5 +145593,,329216,105000,5 +145594,Dr. Tad Johns,53949,85409,4 +145595,Vivek,16985,1224166,9 +145596,Dr. Paul Lindstrom (flashback),38269,108299,22 +145597,lazlo kovacs,2786,66716,18 +145598,Sam Hardie,81120,1799151,23 +145599,Saltemarsh,121154,71084,8 +145600,White Sharecropper #1,14047,37829,35 +145601,Bix - Corny Collins Council,2976,1237750,55 +145602,Frank,24874,25309,7 +145603,Hudson,287587,74949,4 +145604,Frankie,211144,83211,8 +145605,Reporter at Precinct,3580,1755878,54 +145606,Fred,2786,20420,3 +145607,Judge Spencer Mainwaring,80720,2922,1 +145608,Radio Announcer (voice) (uncredited),48885,99916,11 +145609,,145220,974,62 +145610,Editor #5,14923,1386352,31 +145611,Le capitaine Thélis,258384,37143,4 +145612,,297745,141114,4 +145613,Gang Member,10044,62424,16 +145614,Lars,99367,49271,6 +145615,Gary,9968,1462,2 +145616,Background actor,52454,1630325,53 +145617,Omar,23367,95357,7 +145618,Danielle Breton / Dominique Blanchion,22307,20011,0 +145619,Princess Myagkaya,96724,70904,10 +145620,"Marie-Dominique, aka Marie-Do",54563,150921,8 +145621,Socorro,64450,100522,9 +145622,African-American Servant,118889,1154469,65 +145623,Horemheb,24973,30290,1 +145624,Pierre Bergé,221667,51325,1 +145625,Older Son,98368,1028464,4 +145626,Ali,200505,9278,1 +145627,Gustafsson,154671,3857,0 +145628,Pinchback,179288,124909,2 +145629,Сергей Королёв,220669,1069919,0 +145630,Earl,291164,7164,5 +145631,Miss Andrew,77060,99282,4 +145632,Zozo's father,49220,590854,5 +145633,Girl #1 at Play (Bee),10710,1778256,31 +145634,Lena,318781,10990,0 +145635,Harold Canterbury,93263,8924,3 +145636,Shelby,325133,56734,3 +145637,Malcolm,174162,152289,3 +145638,Speakeasy Patron at Slot Machine (uncredited),13912,88728,19 +145639,,44436,130847,6 +145640,Celia,10748,36594,8 +145641,Delarue's Gang,266285,1459814,41 +145642,Xeno (as Joseph Marco),93492,100690,5 +145643,George Hernandez,61908,108272,12 +145644,Crank,9793,16429,13 +145645,"Jarvis, Beatrice's Butler",47921,540363,9 +145646,David,95675,71580,0 +145647,Virginia Ducci,27703,26662,0 +145648,Larry,11321,54696,9 +145649,,218508,551777,12 +145650,Luce,315855,1592928,40 +145651,Un inspecteur,690,1620086,7 +145652,Mr Anderson,85446,8212,10 +145653,Lock,107096,1041315,4 +145654,Congressman Hardison,118283,1123031,10 +145655,,284048,1209369,4 +145656,Austin - Safari Client (uncredited),43388,50764,9 +145657,Sheriff,133255,1096831,8 +145658,Patient,76493,1223718,12 +145659,Stagehand (uncredited),53419,21306,3 +145660,Nancy Shepherd,326045,74370,8 +145661,"Samuel, Carriage Driver",61109,87825,10 +145662,Max,344039,1193604,3 +145663,Singer in First Restaurant / Pianist in First Restaurant / Guest in First Restaurant / Prisoner / Movie Theatre Pianist / Wigged Servant / Guest in Second Restaurant / Society Guest / Guest Imitating Ford Sterling (uncredited),22943,89601,34 +145664,La City Councilman (uncredited),3580,1367102,58 +145665,Mooney,89751,35189,2 +145666,General Child's Wife,339408,1609286,36 +145667,Cedric Ward,184098,55638,14 +145668,Luis,135686,1103588,6 +145669,Ms. Turner,325592,1813533,3 +145670,Ichiro Hirata,22899,111962,5 +145671,Gun Shop Owner,13090,1006144,18 +145672,Wang Jiamei,334557,1450372,1 +145673,Königin Ute,42512,550725,1 +145674,Ernesto Dueñas,33273,942100,15 +145675,Seniorinne 1,9483,27500,5 +145676,Tanamashu,54227,30719,2 +145677,Maribel,352094,1308394,7 +145678,Eleanor Rigby,276401,83002,1 +145679,Wife at Grave,51999,1476728,22 +145680,Insurance Agent,64720,1394795,12 +145681,May,38964,47684,6 +145682,Galleritøsen,72054,564816,13 +145683,Man loosing his hat,33481,110780,30 +145684,Wayne Enterprise Executive (uncredited),209112,1636801,134 +145685,Jake Wyer,28263,27811,1 +145686,Nazar Duma,292656,99259,3 +145687,Oasis Man,7483,52690,10 +145688,Harem Girl,60488,101772,19 +145689,,91261,1802699,3 +145690,Nacho,26864,96483,8 +145691,Coach Keith,17927,8265,11 +145692,,154442,551829,5 +145693,Biancaneve,222517,228160,0 +145694,Elizabeth,40029,1072139,9 +145695,José Rodriguez,341174,59251,7 +145696,Thomas Rourke,399894,12796,0 +145697,Alzheimerpatientin,167424,238127,18 +145698,Onimo,37053,72605,6 +145699,Nicky Duvalle,52847,30686,3 +145700,Stephan Marcus,14400,27764,7 +145701,"(segment ""Miminashi Hôichi no hanashi"")",30959,552655,37 +145702,Andrzej,259645,7116,1 +145703,Federal Agent,11338,8555,31 +145704,Homer Bean,40957,1229744,8 +145705,Cop taking notes,20126,142271,11 +145706,Kurier,314371,1277198,3 +145707,Priest,298751,66580,6 +145708,Arman,59935,230085,3 +145709,Coroner,10900,67708,11 +145710,Eliza,292033,18345,3 +145711,Chris Raleigh,86970,6575,1 +145712,Hundebesitzerin,254007,36786,7 +145713,Nils Kant,196027,226852,4 +145714,Assistant Principal Heather Wiggins,352498,971273,8 +145715,Patient Who Wants To Keep Her Doctor,381073,1593040,13 +145716,Lotte,18238,57578,3 +145717,Little Miss Julie,230266,1377303,3 +145718,Cadet Lt. Molony,110502,162185,10 +145719,Gen. Ivolgina,63958,238310,6 +145720,Hojo Ujimasa,209032,136193,16 +145721,Dhani,66702,120429,2 +145722,Dr. Omar Olson,55922,61961,8 +145723,,73578,585404,9 +145724,Richter Raines,2355,55636,5 +145725,Manu Borelli,29259,25333,2 +145726,Fitzgerald,76203,109765,34 +145727,Matt Schneider,158150,169469,6 +145728,Mrs. Connelly,7288,52313,2 +145729,La niña,19936,1240549,5 +145730,Harry Hill,228558,143060,0 +145731,Dead Soldier,85715,1270918,3 +145732,Party Girl,77930,1784683,82 +145733,"(segment ""Kurokami"")",30959,552641,6 +145734,Prison Guard Jamberg Saivon,13173,22224,18 +145735,Chris (voice) / George Clooney (voice) / Danny Glover (voice) / Ethan Hawke (voice) / Others (voice),3989,34518,1 +145736,Flirtatious Student,36691,115973,14 +145737,Steven,37653,23984,8 +145738,Volunteer,1116,1896870,34 +145739,Carrie Virginia,28303,40179,8 +145740,Shaleen 'Shali',14467,86220,4 +145741,Sy,252682,863,11 +145742,Mujer de Malatesta,13495,98357,11 +145743,Technician,224813,1210351,16 +145744,Mlle. Nicolle,134480,131441,7 +145745,Detective Sergeant John White,5413,74056,5 +145746,2nd Maiden,31264,136414,12 +145747,Bambi LeBleau,33343,8963,2 +145748,,88953,1537391,11 +145749,Gutiere Baltazar,43685,99261,1 +145750,Sophia,157919,9825,5 +145751,Himself (Brokedown Cadillac),13836,1673240,34 +145752,Langdon Tharp,103332,4581,7 +145753,,24837,1035348,5 +145754,Gordie Miller,23964,33293,5 +145755,Ricardo,102444,14905,14 +145756,Unseen Ravager,283995,16848,31 +145757,Sergeant Evans,77949,1102427,17 +145758,Shopkeeper's wife,218443,14593,2 +145759,,208309,2830,1 +145760,Macduff Child 2,225728,1715073,24 +145761,Ana Carballo,365709,1185966,5 +145762,The Fox (voice),309809,1925,13 +145763,Camposanto / 'The Stranger',129851,97684,0 +145764,,381767,1460359,3 +145765,Lady Mabel Airlie,65035,8228,6 +145766,Dorothee Kranz,613,39908,29 +145767,Grimal,1427,17072,9 +145768,Susy,147575,30902,4 +145769,Criança2 - Glória,117534,1902455,30 +145770,Marina,116236,1052769,4 +145771,Chrissie Read,371504,72305,2 +145772,EMT,7220,78116,20 +145773,Machete Cortez,106747,11160,0 +145774,Roman,168259,8169,4 +145775,Evelynn,348631,52396,11 +145776,Prof. Korntheur,257831,1376398,12 +145777,Daisy,242042,38940,0 +145778,Mme. Souchon,21070,579415,6 +145779,Ben Lucas,204922,5472,1 +145780,Mrs. Pat Rogers,51426,8631,4 +145781,KW (voice),16523,54470,2 +145782,Will,21141,55464,14 +145783,assassin 2,4550,25004,20 +145784,'Cookie' Morrow,98289,30769,5 +145785,Rolf,320736,566681,5 +145786,Train Passenger,56154,1556245,45 +145787,Rollo,7326,11678,9 +145788,Xiao Dou,362154,1562563,3 +145789,Lulu,414977,14990,3 +145790,Henry,322460,123900,11 +145791,Taniguchi,38010,58450,7 +145792,Bron,339526,71520,10 +145793,Lady Riva Hardwick,15013,9139,5 +145794,Tour Girl,242097,92691,13 +145795,Ebeneezer Scrooge,229056,11172,2 +145796,Matthew Hendricks,14254,59926,6 +145797,Army Recruiter,39013,1163727,20 +145798,Stéphanie,300,4273,1 +145799,Tant Berg,27599,116510,5 +145800,Kanning's mother,34181,1109198,9 +145801,Sadie,4964,41090,8 +145802,Paige,379925,53485,2 +145803,Rochefort,41609,84230,12 +145804,Carla,207641,230587,12 +145805,Barry Davis,66469,17444,0 +145806,,11421,81822,3 +145807,Zhang Wu,413198,544791,9 +145808,Natalya,38332,355391,3 +145809,Capitaine Nathalie Vasseur,395763,1348474,4 +145810,Philipp,36672,36746,10 +145811,Uncle Paul,128270,28002,22 +145812,Dougie,118690,19996,3 +145813,Muchisute,53064,1107771,4 +145814,Nurse 2,255160,1898252,40 +145815,"(segment ""Miminashi Hôichi no hanashi"")",30959,552657,40 +145816,Frank's Lawyer,80389,83721,14 +145817,Reporter #3,264644,1357824,18 +145818,Civil Servant,11012,84927,13 +145819,Scooby Doo / Shaggy,17681,58272,0 +145820,Mariano Escobedo,78318,90000,15 +145821,McCarthy,9956,3084,3 +145822,General X,116977,26042,21 +145823,Jermaine - Detention Kid,2976,1752337,62 +145824,Harris,10999,999672,12 +145825,J.B. Christians / Rat Fink,31258,1049226,3 +145826,Cpl. Charles Devon,222872,62032,2 +145827,Karen Murphy,59965,112561,1 +145828,Nina,139463,110080,4 +145829,Mrs. Lowe,1673,18582,1 +145830,Tutti,18598,125047,4 +145831,Joey Dunne,200727,1734965,17 +145832,Jill,22387,940166,15 +145833,Himself,104744,2544,6 +145834,,333352,1584775,21 +145835,Ted Thurber,284537,21088,7 +145836,Tim Hood,142145,191921,3 +145837,Strip Club DJ,87428,1219901,27 +145838,Captain Shafer,103201,21523,6 +145839,Blackbird's Kid Brother,16164,81801,5 +145840,Tom Kupfen,118549,5401,0 +145841,Security Guard,262841,1259515,25 +145842,Clan Akkaba Disciple,246655,1796391,35 +145843,Hansel,72984,243399,0 +145844,Dr. Gustav Mueller,96713,97981,3 +145845,Joseph - Gray & Isabel's Butler,56135,12157,10 +145846,,148622,86853,10 +145847,Fairy Godmother / Drizella / Mary / Beatrice / Countess Le Grande / Daphne (voice),14128,6035,4 +145848,Himself,90125,1024815,0 +145849,Dodd,128241,96841,2 +145850,Le Garçon De Café,37189,20799,2 +145851,Rainey,5915,46594,4 +145852,The Preacher,186971,5847,5 +145853,Andrew Herzberg,384737,1436976,11 +145854,Sheriff Weinbacher,244458,25074,6 +145855,Cotton,94225,213659,1 +145856,Charles-Henri Rougemont,37653,72089,7 +145857,himself,30966,107375,3 +145858,Margaret Gordon,29286,34756,9 +145859,Wolfgang's Grandmother,166666,146859,7 +145860,Ms. Maximoff,246655,929943,50 +145861,Tom,23512,3070,8 +145862,,1838,1441398,16 +145863,Heidi,257454,14500,7 +145864,Waitress,242033,1131215,4 +145865,Himself,15258,7166,64 +145866,Yemi,61528,35013,5 +145867,Dallas,9812,82406,4 +145868,Mrs. Hills,82650,37979,14 +145869,милиционер Рябов,121688,97368,3 +145870,Hal Walters,81463,136503,0 +145871,Felix Gumm,12279,11159,15 +145872,Vincent,77583,1773377,5 +145873,,9550,1620870,7 +145874,Martha Adams,183825,89528,8 +145875,Case Walker,391757,64856,1 +145876,Reynolds,424488,1837296,49 +145877,,92968,1184420,2 +145878,Soe Hok Gie,39061,121964,0 +145879,Bee,63139,16217,3 +145880,Marshal Lightning Tyrone,60547,37448,2 +145881,Homily Clock,110227,63998,5 +145882,Son of Ares,32657,1678977,70 +145883,Referee,16240,80185,14 +145884,Joanna's Touring-Friend,5767,45458,13 +145885,Preacher,4882,39770,3 +145886,Florida Hotel Clerk,157343,119549,41 +145887,Himself (Brokedown Cadillac),13836,1673233,32 +145888,Ares (voice),15359,658,2 +145889,Samantha Crumb,66668,14405,0 +145890,Effie Schneider,47882,164779,4 +145891,Georges,26152,53203,12 +145892,Dr. Lawrence Gordon,176,2130,0 +145893,Trick or Treater Parent Catwoman,330947,1650318,46 +145894,Older Maid,16175,79914,20 +145895,Lady of the House (voice),413770,77165,6 +145896,Rex Merrick,45679,78304,2 +145897,Peggy,48207,1666442,11 +145898,Tony,297668,40176,2 +145899,Kayako,382170,109662,5 +145900,Margaret Baker,73873,83437,4 +145901,Al Carol,47739,15625,14 +145902,Dr. Hauser,12206,29139,12 +145903,Liu Xiao-Tian,70057,83644,7 +145904,Mc Sween,183832,8519,5 +145905,Patrick Wheeler,152748,11107,2 +145906,Dr. John Nichols,153102,23608,8 +145907,Second Young Lady,245700,1467145,37 +145908,Theodore,74549,1820115,3 +145909,Luther,435,2683,16 +145910,Old Lady (voice),810,116315,40 +145911,Jail Bird Lunt,37710,942,38 +145912,,84823,1620089,4 +145913,Aldobrando,252845,38115,6 +145914,Deputy Virgil,11175,389763,6 +145915,Penelope,85446,217055,5 +145916,Convenience Store Clerk,263115,1436978,41 +145917,Franky,176983,112276,7 +145918,Maître Wang,1899,20961,5 +145919,Newspaper librarian,29113,85941,10 +145920,Dolores,255647,1851073,14 +145921,Pretty Willie Williams,94251,41750,4 +145922,Jackson,22020,1207150,6 +145923,Killer (voice),411221,1606634,13 +145924,Endicott,987,160969,19 +145925,Sergeant at Station,1116,1896886,58 +145926,Edie Smegmite,93116,131281,8 +145927,le courtisan à Versailles,68023,4275,14 +145928,,378435,93390,2 +145929,"Village woman (segment ""Yuki-Onna"")",30959,110300,14 +145930,Boy's Father,10389,64385,18 +145931,Arnold Claxon,79466,164830,14 +145932,Inspector,43877,7453,9 +145933,ATL Twin,122081,1635146,8 +145934,Nita,24624,62504,16 +145935,Sister Judith,21208,80969,12 +145936,Sergio,41427,103147,12 +145937,Jacob Palmer,463800,964251,2 +145938,Elena Gombrowicz,101342,1625806,3 +145939,Biggs,70586,62,2 +145940,Linda,256311,1294376,10 +145941,Gary Carter,257345,59841,5 +145942,Judy,310972,71763,7 +145943,Mrs. Miracle,246011,1063,2 +145944,Joseph,377362,1572261,4 +145945,Bürgermeister Hermann,203833,65054,8 +145946,Paul,83430,1073985,11 +145947,,8070,3524,14 +145948,Angie,156360,13568,5 +145949,Drag Fan,1481,1196017,34 +145950,Antonio Biscaglia,41110,125489,2 +145951,Harry Lee,939,14290,5 +145952,Jack,32834,1046792,1 +145953,Dr. Ruth Stern,19338,1477507,22 +145954,Deputy Anders,159128,986808,4 +145955,Travis,11358,77164,16 +145956,Sonny Luso,88518,103595,6 +145957,Charlie Allnut (archive footage) (uncredited),34082,4110,9 +145958,Cristian,136752,1131252,0 +145959,Julien,190853,1171437,3 +145960,Georges Flammarion,31993,29578,2 +145961,Orme Wilson,147618,148843,1 +145962,Fiddler,174751,1505459,14 +145963,Grey Wolf,216580,97058,8 +145964,Sheriff,260947,121611,7 +145965,Judge Kayle,307081,1271784,16 +145966,Kwiaciarka,31856,40622,9 +145967,Auctioneer,147829,265594,25 +145968,Mãe de Diana,296288,1694036,8 +145969,Kullervo,233917,125601,8 +145970,Head Butler,16175,79917,23 +145971,Jérémie,8282,51325,2 +145972,Audrey,8965,49818,3 +145973,Dean,8457,1061111,15 +145974,Sergeant Mills Evans,15616,145319,7 +145975,Young Trixie,7459,42160,6 +145976,Julio,82265,617651,5 +145977,Himself,51311,1109537,4 +145978,Liesel's mother,203833,7059,5 +145979,,362154,1562566,8 +145980,Jean,238589,61861,7 +145981,Thomas,1481,1426136,14 +145982,George Llewelyn Davies,866,13012,8 +145983,Linzman,144792,148866,9 +145984,"James Calvert, aka 'El Gringo'",37368,4303,5 +145985,Tony,299165,1099464,25 +145986,Dina,49943,1081845,1 +145987,Pvt. Lazitech,133715,1433439,7 +145988,Chang / Beard,45452,1427539,8 +145989,Judge Cato Laird,95807,21163,5 +145990,Unicom Executive,25643,168540,12 +145991,Shantanu Mane,302435,1775251,5 +145992,Stefano Nardini,8951,56843,0 +145993,Indian (uncredited),33541,127032,13 +145994,Judith,150736,268826,2 +145995,Ferragut's Wife - Dona Cinta (as Mle. Kithnou),183932,1381510,7 +145996,Albert Fielding,24094,97444,0 +145997,Bun,34019,1122586,12 +145998,Pete Kelly,43321,8634,0 +145999,Mohawk,263115,83367,14 +146000,Jackson Foster,40761,82749,4 +146001,"Stan, the Barfly",149509,117997,28 +146002,Bald Man,345925,19654,4 +146003,Casino Trashy Woman,11358,1773104,35 +146004,Benny,31167,56924,3 +146005,Ho Chung-ping,343140,1619,1 +146006,,279096,1386334,35 +146007,Jorma,76864,113536,5 +146008,Tom,258947,1311462,2 +146009,Babsy (as Sally Sullivan),81463,1021680,2 +146010,Pooh/Tigger (voice),14885,12077,2 +146011,Mrs. Caraquet,104644,117479,9 +146012,Claudia,395763,1021684,2 +146013,Katarina,3513,32358,5 +146014,Sharman,20507,86242,2 +146015,Ian,59296,984422,7 +146016,Countessa Valentina 'Val' de Allegro Fontaine,27460,97783,1 +146017,Swan Bostrom,93313,4302,3 +146018,George Curtis,41234,8730,4 +146019,Maurice Schlapkohl,47758,8729,6 +146020,Laura,291164,3711,2 +146021,Alby,198663,78062,3 +146022,Club Bouncer / Himself,19918,3209,21 +146023,Margarida,53042,108454,3 +146024,Mrs. Coyle,55448,58068,9 +146025,Rihards Dekšenieks,144331,1192363,2 +146026,Beatrice Hathaway / Katisha,218351,1208006,5 +146027,Ankita,228355,88797,4 +146028,Drug Dealing Monkey,45243,1428580,22 +146029,Amico di Armando,42674,128420,14 +146030,Tall Girl,39519,136554,14 +146031,Thadeusz M___ / Ostler,315855,8789,5 +146032,Kinderhasserin,1912,46312,23 +146033,David Hamilton,21927,29409,2 +146034,Inspector Prentice,21451,87547,4 +146035,Pier Luigi,128657,228158,3 +146036,PM Cardi,235208,1862986,12 +146037,Aunt Pulle,274990,1024878,9 +146038,Themroc's Sister,7014,28611,2 +146039,Florie,71503,215335,6 +146040,Lucky (voice),13654,195325,15 +146041,Thorne - Her Husband,65874,1281803,3 +146042,Woman Sitting with Nick in Cafe,14589,1468177,21 +146043,Capt. Klaus Mueller,19996,85411,0 +146044,Frank Davis,28155,15213,2 +146045,Alon Silberg,125623,77131,2 +146046,Hy Gordon,4551,17342,8 +146047,Iris,33623,427932,0 +146048,Tuckdriver,14882,77520,8 +146049,Oberschwester,178446,571188,19 +146050,"(segment ""Miminashi Hôichi no hanashi"")",30959,552676,60 +146051,Robert Hawking (Age 17),266856,1361963,8 +146052,The Commandant,71336,562603,3 +146053,Юрий Гордеев,332512,80999,0 +146054,Caroline Lofton,44540,80018,3 +146055,Gin O'Malley,58918,17782,6 +146056,Tommy Woodcock,36527,73489,0 +146057,Madge Taggart,35895,148439,7 +146058,,280422,1337737,4 +146059,Karen,9568,1213044,6 +146060,Rabbi,6557,550851,16 +146061,Susanne,365942,53971,14 +146062,Mr. Finlay,146322,558312,7 +146063,Mr. Bradkin,106573,119402,9 +146064,Tony Chavez (a cop),35895,16004,9 +146065,Chief Massey,172259,47759,3 +146066,Waitress (as Christina Anne Aceto),257447,1419993,11 +146067,,124115,927616,33 +146068,Eva,195385,1184381,4 +146069,Bill Stevens,27966,82382,2 +146070,Elena,16997,29479,7 +146071,Frank James,43821,4958,0 +146072,Mrs. Murray,58664,183426,8 +146073,Dr. Richard Andervs,267852,62867,12 +146074,Music Maids Member,43809,1556463,42 +146075,Oficial (uncredited),82767,179489,17 +146076,Reverend Whittaker,60965,152566,11 +146077,Sheriff Baskin,39013,39520,4 +146078,Robbie's Friend,72251,1580163,7 +146079,,137504,1530410,16 +146080,Max,9471,10959,9 +146081,Fist Bump,378236,209505,22 +146082,Clerk,116463,1231352,5 +146083,Ball Guest (uncredited),52440,119542,24 +146084,Dahar,69075,1200357,6 +146085,Nurse Sam,46729,1449399,10 +146086,Lowborough,30496,27635,13 +146087,Barfrau,167330,1643632,18 +146088,Agnès,329805,1485710,5 +146089,Maj. Andy Pepperis,138486,2098,8 +146090,Carla,249457,67323,2 +146091,Scipio,17978,6561,11 +146092,Courtney Rutherford Hopkins,331588,12041,5 +146093,Madre di Irene,186988,129108,12 +146094,Marisa,300596,16975,6 +146095,Gwendolyn,10596,65804,7 +146096,Devin Pyles,347127,1392775,2 +146097,Marcia Blaine,43045,101176,2 +146098,Tanja,36672,13805,12 +146099,Feral Leader,178809,1068995,5 +146100,Grandma Olson,35558,14106,10 +146101,Leah,74437,153254,8 +146102,Ata,420743,1418889,5 +146103,Captain Richard O'Malley,146233,1470,9 +146104,Slegger Lau,39230,1222049,18 +146105,Zora,246422,23383,3 +146106,Virginia Brush,76465,33741,2 +146107,Nar - Maxi's friend,46773,1523000,10 +146108,Dale Petmecky,24619,1850002,10 +146109,Club Frisker,19053,551910,25 +146110,Thomas,142712,928468,15 +146111,Chief Charles R. Dugan,26801,89729,6 +146112,Prosecutor,301334,1097456,21 +146113,Tatako,14525,553968,9 +146114,Urbenin,61266,232842,2 +146115,Ignacio,140,1606,5 +146116,The Businessman (voice),309809,5443,18 +146117,Himself,37003,33684,1 +146118,Teenage Exodus,67174,1228390,9 +146119,Steve Laurin,41277,1571019,42 +146120,Capt. Dennis Bourke,43407,40207,12 +146121,Ivan (voice),72204,238487,1 +146122,Father Bracken,25941,440943,12 +146123,Patti,127560,2227,4 +146124,Himself,156908,1138123,4 +146125,Brandon (voice),429838,1734264,14 +146126,The High Sheriff of Nottingham,71066,1321148,9 +146127,Sunny,54814,85454,3 +146128,Minor Role,43806,33178,31 +146129,Snow Boarder,78362,88709,6 +146130,Sami,32497,109282,2 +146131,,67633,1043211,16 +146132,Ji Eun-Soo,83754,1330300,4 +146133,Hannah Jelkes,14703,20141,2 +146134,Lo Santo Chui Siu-Fung,39998,83631,4 +146135,Buffy,353728,6588,7 +146136,Senator,64454,1429877,11 +146137,,57996,1894240,13 +146138,Professor Song,86261,240948,2 +146139,Will,323674,169244,6 +146140,Merlin,19957,85345,5 +146141,Первый министр (озвучка),83865,86940,3 +146142,Anju Kapoor,4253,35790,3 +146143,Gérard,57308,53203,2 +146144,Sgt. Martin Wrenn,105981,95276,2 +146145,Burnie,64948,98435,3 +146146,Penny Hamlin,326285,20767,12 +146147,Ludovico,12412,27208,12 +146148,Screaming voice,43149,3242,7 +146149,The Dad,14457,1089170,10 +146150,Will,238749,63859,3 +146151,John Hayden,157343,2927,20 +146152,,155325,1138079,27 +146153,Jean-Louis,39415,1505253,8 +146154,Kennedy,248633,1283950,12 +146155,,400610,83552,3 +146156,Lord Douglas,121003,8240,5 +146157,Robert,38875,591247,4 +146158,,61904,1073410,3 +146159,Col. Cascio,31067,4942,6 +146160,Nipote del cieco,38285,7547,12 +146161,Harry,27091,65769,0 +146162,Terry,102362,37149,5 +146163,Audience Spectator,38322,1869039,33 +146164,Jessica,225285,576084,3 +146165,2ème inspecteur,5511,32372,10 +146166,Master Sergeant Douglas,329865,1646463,39 +146167,First Attendant,228647,1467200,25 +146168,Mr. Squires,54570,89744,9 +146169,Raymond,41416,96958,5 +146170,Stupid Girl,222858,38334,12 +146171,,441728,1205278,3 +146172,Thin Herdsman,11656,48574,4 +146173,Elina,245692,1574461,5 +146174,Vittorio,47848,38593,8 +146175,Scott's Teacher,246655,12851,25 +146176,Paul,28482,44980,0 +146177,Sarah,236399,62716,10 +146178,Jill,85350,931947,32 +146179,Tina Weymouth,111479,1797596,43 +146180,Engle,63333,15992,10 +146181,Borlai,402612,64412,3 +146182,Girolamo Fumagalli,30449,1167895,6 +146183,,36236,1079329,19 +146184,Dr. Krolly,360284,4496,6 +146185,Yakuza Henchman,4291,115659,16 +146186,Magnolia Hawks,31548,77158,0 +146187,Banquo,225728,14887,2 +146188,Mason Masters,18826,52854,8 +146189,Editor,61541,21510,7 +146190,Delivery Man 3,52034,237183,16 +146191,Penny Peterson (voice),82703,42160,2 +146192,Luisini,48805,1898627,19 +146193,Kenneth Waters,43711,47698,2 +146194,Halliday,49850,556727,8 +146195,Cockcroft Guest #1,266856,1503918,44 +146196,Sheriff,62213,10207,16 +146197,Policier métro,305455,1293458,7 +146198,Himself,15258,194756,96 +146199,Hiroshi's Father,253232,7453,6 +146200,Lizard,242076,1277051,5 +146201,,23289,1443325,23 +146202,Tramp,135390,70069,3 +146203,Danny,44129,19299,7 +146204,Art Class Professor,1691,44434,14 +146205,"Miss Fletcher, Morgan's Secretary",30022,105571,7 +146206,Riva Palacio,78318,103493,18 +146207,Nervous O'Toole,42989,40943,2 +146208,Chita,332079,3367,5 +146209,(as Nike Anderson),167874,72662,3 +146210,Priestly,14843,49624,3 +146211,Courtney,13596,204913,16 +146212,Amir,101325,170740,13 +146213,Grant,26574,69718,0 +146214,Tiffany,10025,62072,14 +146215,Arzthelferin,75969,1902101,54 +146216,Long Neck Woman,1271,1330780,78 +146217,La madre,107287,234665,3 +146218,Dr. Louis Hanot,270024,1121550,3 +146219,Esakki Muthu,70988,1292322,7 +146220,Bodri,338312,235309,2 +146221,Red Byers,35977,99600,17 +146222,Renard,436340,1744823,10 +146223,Simone,81616,7161,9 +146224,Walker,86643,120484,4 +146225,Reporter #3,442949,1762638,5 +146226,Kitty Carmody,42669,105797,6 +146227,Rocky Balboa,312221,16483,1 +146228,journalist,140032,43824,1 +146229,Antonio,1381,11868,6 +146230,Colonel Hammond,39308,135096,9 +146231,Hangar Officer / Starkiller Stormtrooper (voice),140607,1160219,73 +146232,My,364810,210135,1 +146233,"Horace E. Bixby, Riverboat Captain",120747,88672,6 +146234,Mike,35826,1334989,8 +146235,Cha Woo-Sung,83754,1322013,2 +146236,Helle,72054,234911,12 +146237,Spoldier (uncredited),16442,2650,79 +146238,Yu Ji-yeon,24822,28662,0 +146239,Margaret Cox Ruskin,114155,477,5 +146240,'Tenny' Tennison,140472,2930,4 +146241,Russian Assassin (uncredited),337339,568546,31 +146242,Christopher Giles,246860,1121400,5 +146243,Moat,76600,30485,8 +146244,Principe Azzurro,222517,1207943,8 +146245,Jorgen,17240,117654,2 +146246,Teen Lover at Orphanage,27414,1028711,33 +146247,Tommy,388764,1395940,6 +146248,Mona,382125,1576787,12 +146249,Rarity / Princess Luna,201676,74360,3 +146250,Nurse Mills,30141,3897,4 +146251,Jerry Harmon,9890,24535,6 +146252,Capt. Curt Kuchta,296524,1327175,6 +146253,Steve,364690,1656033,7 +146254,Col. A.J. Bullard,72431,18288,4 +146255,Phil,84450,1329902,7 +146256,Black Phoenix / White Dragon Jr.,10109,20652,0 +146257,Lady,43850,994475,10 +146258,"""Круглый""",336484,1112309,3 +146259,Policeman 1,301334,1683124,23 +146260,Roberto,53648,4818,0 +146261,Kain,34935,126690,4 +146262,Dr. Fibrian,24094,2714,14 +146263,Pato,148615,783,8 +146264,Snakehead Mama,286709,113948,9 +146265,Michael,30002,47881,5 +146266,Frank,24578,117133,9 +146267,Grazziano,12787,27116,5 +146268,Guy Walking on Bridge,157829,1791280,14 +146269,Mrs. Henrietta Carraway,335450,148783,2 +146270,Tanya,385372,1585213,13 +146271,Mrs. Goodwin,23692,861,3 +146272,Frédéric,2861,543843,8 +146273,St. Claire,42216,7317,10 +146274,Himself,53367,4786,3 +146275,Frau Lehmann,103396,27604,13 +146276,Mrs. Walters,40744,111401,8 +146277,Al Cody,86829,1023139,6 +146278,Fiore,37100,122726,8 +146279,Captain Marco Cabrera,324670,84754,8 +146280,Millicent - Rosalie's Maid,32610,590532,34 +146281,'Flo',11939,1045604,9 +146282,Hammerstein - the Hotel Manager (uncredited),28293,13966,23 +146283,Senator (uncredited),73430,1450040,14 +146284,Mae,339994,13924,9 +146285,Harvey Dent / Two-Face,123025,51930,3 +146286,Shauna,239056,936970,2 +146287,Zozo's sister,49220,590857,8 +146288,Demolition Man,130507,3262,17 +146289,Eric,291351,222143,5 +146290,,62614,76321,4 +146291,E-4 Radioman,20674,190593,28 +146292,Charlotte,72251,85215,11 +146293,Geetha,69428,584278,8 +146294,Quinn Andrews,21753,84076,1 +146295,Sandy Powers,83896,217272,1 +146296,,85126,4512,8 +146297,Tom Cruise Guy Fan,51036,1879472,25 +146298,le barman du Baggerz,209244,128209,29 +146299,Frank,44389,39012,2 +146300,Claire's Friend,16523,187281,10 +146301,Le patron d'ELP Sécurité,97365,1123786,9 +146302,Charlie Kate Birch,71099,4800,0 +146303,Gadarine Nazarian,98644,77498,1 +146304,Mrs. Blair,54198,150083,2 +146305,Himself (archive footage),184363,1135824,1 +146306,Young Simon,82448,928009,5 +146307,Eli Morton,251227,1286552,5 +146308,The Skipper,102384,120755,6 +146309,Dave Proctor,224204,1270464,5 +146310,Fumaça,278935,1130505,4 +146311,Businessman,206647,1599251,36 +146312,Craig,360205,1511040,4 +146313,Shige Mamiya,50247,134307,5 +146314,EHC Collector #1,71670,1739820,17 +146315,John,19754,27141,17 +146316,,105760,55981,9 +146317,,77862,120879,7 +146318,,205349,1008489,5 +146319,Sir Reginald,2002,977279,16 +146320,Terance,162862,1360412,10 +146321,Mrs. Cutter,248469,608128,6 +146322,USS Invincible Researcher,52454,1630308,31 +146323,Pitbull,311301,1430482,4 +146324,Branch Rickey,74942,52995,3 +146325,Kate,14983,1204864,8 +146326,Nickie Charles Jr.,14589,149106,13 +146327,,441043,28151,1 +146328,Tatouius,49398,13843,8 +146329,Prick Automaton Cop,51036,15443,12 +146330,Marie Davenport,54022,7796,8 +146331,Shelley Beetle,62670,47901,12 +146332,Carl,77875,6065,6 +146333,Miss Parker,27338,119171,1 +146334,Dave,16058,60005,3 +146335,,10754,66473,13 +146336,Carolina,4592,12041,0 +146337,José Iturbi,80941,129512,12 +146338,Amy Tyler,32540,109320,6 +146339,Stan,22999,89670,0 +146340,Darrow,351901,58058,4 +146341,,92060,44762,7 +146342,Wang Jing Wen,844,12671,2 +146343,Manny (voice),8355,15757,0 +146344,Doctor Rogers,127560,1380561,17 +146345,Periklis,374021,1146148,4 +146346,Mark,239498,961755,7 +146347,Chris Stewart,137776,122616,2 +146348,Zeke,440777,71521,33 +146349,Susan,422472,74673,1 +146350,Chad Foster,38783,1234578,1 +146351,Gaby,440777,1465683,9 +146352,Katja,88059,1706878,3 +146353,Schmidt,289010,1108268,5 +146354,Marie-Claire Wagtmans-De Ruyter,223551,69497,2 +146355,Dan,24272,140575,14 +146356,Shav Mei,81549,592095,3 +146357,,27276,551858,49 +146358,Ethan,17457,60533,13 +146359,Annabel,116463,1691467,4 +146360,La Femme,9539,59618,7 +146361,Tobio,16231,80128,4 +146362,Superintendent Cobham,60269,10025,4 +146363,Hick Boy,150712,1375218,31 +146364,Sailor,335509,30197,7 +146365,Veronica,39286,954,8 +146366,,15830,1439656,20 +146367,New York Pedestrian / Tourist / Girl at Flower Stand (uncredited),337339,1593392,32 +146368,Susy,1986,20447,10 +146369,Mahmoud,44398,9287,8 +146370,Fyodor Fokin,142881,1118054,2 +146371,Charles De Montfort,78028,31196,5 +146372,Miss Tomkinson,64047,135420,4 +146373,Lei Xun,60568,240150,0 +146374,Vivian Bancroft,115616,10504,8 +146375,Marty,403130,1749867,11 +146376,Edith Eastwood,30792,39740,1 +146377,Herself (Matilda The Hun),103732,102607,2 +146378,Young Miss Shephard,328589,1529372,31 +146379,Tánger Soto,21447,37946,1 +146380,Maniaco,52914,1071993,17 +146381,Rudi,262945,36856,5 +146382,Overmyer,37686,55755,15 +146383,Chelo,46436,237346,4 +146384,Damrod,122,1668317,26 +146385,Plunger Man,14123,35554,34 +146386,High School Girl,15671,80036,11 +146387,Emily Barnes,21481,80405,9 +146388,Henry Mahoney,343972,1240252,8 +146389,Thunderbolt (voice),13654,13473,0 +146390,Garoto que joga copo em Julia,296288,1839912,20 +146391,Zeki,197297,1127942,6 +146392,Shinichi Katagiri,101752,1028523,2 +146393,Jen Kaznyk,37686,113926,9 +146394,Rochelle Nelson,224903,218569,1 +146395,Fred Dobbs,25738,35849,2 +146396,Pedro Cruel,49974,138326,6 +146397,Harry Walden,92311,1936,1 +146398,Grandma Rena,426670,196902,20 +146399,Sharpay Evans,10947,67600,2 +146400,Livreur pizzas,382591,1797568,36 +146401,"Suleima, kalifi Abu Kabun tytär",148435,1305365,4 +146402,Jouko Takkunen,20164,116157,4 +146403,Busty Lady,92496,1180068,23 +146404,le chirurgien,64481,18177,4 +146405,Luke Appling,43440,215042,8 +146406,Melanie Pröschle,6443,7161,1 +146407,Chris,23830,549316,12 +146408,Op Center Staff,19995,54492,50 +146409,Shoichi Aoyama,125264,213519,4 +146410,Roger,14422,78406,9 +146411,Dr. Hamilton,109453,112560,12 +146412,Marion,147106,131725,4 +146413,,46572,38386,6 +146414,Sarah,81232,211847,5 +146415,,69310,99689,20 +146416,Adam Sandler,284296,19292,9 +146417,Club Butler,62143,10029,42 +146418,,107705,240781,9 +146419,Sanim,25855,1191290,3 +146420,Yvette Maudet,66966,3783,1 +146421,Martin,72054,85912,3 +146422,Visiting Room Guard #1,245706,1378543,27 +146423,Himself,15258,1206,0 +146424,Freddy Paulin,41764,112866,13 +146425,Linda,11364,41670,3 +146426,Dave,1922,1323612,10 +146427,Sister Team,131360,13562,10 +146428,Indrid Wardin,364690,1670935,1 +146429,Capitan,82767,11977,8 +146430,Urzędnik sądowy,155325,930907,8 +146431,"Brita, sjuksköterska",60899,231918,3 +146432,,4146,32092,7 +146433,Zombie,248633,1201762,8 +146434,Arno,8281,76278,8 +146435,Farmer (uncredited),14615,248225,26 +146436,Jake Ray,42552,106745,0 +146437,Latent,32395,1157294,12 +146438,Tina Webster,117905,1795681,5 +146439,Ameria Wil Tesla Saillune (voice),125513,550087,13 +146440,Donald Clarke,91551,25663,1 +146441,Joanne Kilbourn,107250,19957,0 +146442,Hoffmann jun.,14804,233969,8 +146443,Himself,140554,1707823,12 +146444,Emperor Hirohito,127372,1169235,9 +146445,Vegeta,65973,122501,2 +146446,Mr. Hardy,183827,7666,4 +146447,Yousuke Obata,174712,110502,2 +146448,Frank Milo,10433,1532,2 +146449,Katja,146216,1922,1 +146450,Policeman (uncredited),76465,133277,10 +146451,Baron Josef von Ullrich,118245,76974,0 +146452,Man,109716,1673515,34 +146453,Sergeant Provenzano,2001,150932,22 +146454,Colonel Robert E. Lee,43806,13823,56 +146455,Italo Bombolini,30298,5401,0 +146456,Fauji Mama,330431,944430,4 +146457,Vincent Loringer,147360,4289,1 +146458,Lacy,157847,71565,4 +146459,Miller,8144,53951,3 +146460,Vasili Gubanov,142881,1020723,0 +146461,Ethan,302699,1754481,27 +146462,Róbert Hesp,447236,1715613,4 +146463,Mrs. Lee,375082,137323,3 +146464,La princesse,25353,93593,2 +146465,J. Maxwell Bloomhaus,33117,94110,5 +146466,Wedding Guest,28299,121323,12 +146467,Captain of the Guard,60488,45380,7 +146468,Jessica Lindstrom,21753,69399,2 +146469,Bulten,145247,1314263,8 +146470,Samantha,85350,1327009,4 +146471,Taxi driver,16171,79873,22 +146472,Himself,430156,53820,5 +146473,Driving Deado,49524,1263937,24 +146474,Sabrina,391375,1613244,11 +146475,,97672,83831,6 +146476,Dwayne,9870,221945,9 +146477,Macedo,119374,147108,4 +146478,Maskenbildnerin,130739,1805298,31 +146479,Christine,8998,2229,0 +146480,,83491,93548,7 +146481,Simon Jenkins,43503,8728,5 +146482,Man with Dog,11338,33883,24 +146483,Jay Grobart,42472,16475,0 +146484,Male Reporter,10320,1214389,14 +146485,Сашка,365544,1567380,3 +146486,Andy,10119,63762,1 +146487,Clark Griswold,158382,54812,1 +146488,Troy,326,55788,6 +146489,Vaso,142798,1117982,1 +146490,Sol Wexler,128140,1161083,7 +146491,Carlo Mascarpone,9950,17923,2 +146492,Willie Little,43365,9208,2 +146493,,63194,1407301,1 +146494,PJ Brill,107811,523952,11 +146495,Pooja,13986,76232,1 +146496,Dr. Jean Horton,128644,42186,7 +146497,Nobleman at Court,20650,8837,4 +146498,Fidel,106887,1302058,10 +146499,,45949,54794,10 +146500,Jimmy,11196,15086,3 +146501,Miyako Mizuki,104374,108018,1 +146502,Rodeo Spectator,33541,179327,52 +146503,Charlie Jones,26405,212559,15 +146504,Flo Banks,27470,97832,1 +146505,Shao Tien-hao,41378,240659,0 +146506,Florrie Moran,32610,980296,6 +146507,Cleaning lady,45649,1089887,14 +146508,Witness for Peace,2143,132918,40 +146509,Lotus Land Dancer,32657,1476624,83 +146510,Bikini Shop Customer,323675,1769768,21 +146511,Jane,42941,134607,7 +146512,Maime Trotter,331588,8534,1 +146513,Lookout Dunbar,97632,1001736,5 +146514,José Constantino Esqueda,46193,5401,3 +146515,Member of Band,38769,1250223,24 +146516,male hologram,10921,78152,13 +146517,Kapitänleutnant Willi Schlueter,45398,32059,1 +146518,Deputy Ralston,11358,91404,15 +146519,Lady in the Limo,8414,118125,18 +146520,Barney Kelly,131861,19411,4 +146521,Patty,29832,56322,2 +146522,procuratore della Repubblica,301272,1850977,11 +146523,Charlie Sargent,52827,112009,6 +146524,Barbara Lonigan,14782,10399,4 +146525,Anna,102155,990582,23 +146526,William,131764,30228,4 +146527,Sir Francis Walsingham,11788,8979,2 +146528,Nurse Adams,42215,250,5 +146529,Police Chief Ensio Suutari,20164,125625,5 +146530,Audrey (voice),73723,212208,2 +146531,,79151,150899,1 +146532,,134209,1174316,5 +146533,Vincent van Gogh,10204,20824,22 +146534,Mr. Davis,71503,101851,2 +146535,Chihuahua Lady,286521,1655891,25 +146536,Flamingo Diner Patron,356752,1841550,74 +146537,Taeng-Onn,39907,228626,6 +146538,"Seung-Hee, daughter of mob boss",54555,87890,2 +146539,Police Chaplain,2001,133452,25 +146540,Wenzel,119820,1071144,8 +146541,Party Guest (uncredited),28571,1216356,23 +146542,Júlio,12422,1005681,8 +146543,,369054,432040,2 +146544,Protester (uncredited),209112,1892479,151 +146545,Li Jiamin,14226,83644,4 +146546,L'heureux,273510,96176,6 +146547,Margot,59881,52697,3 +146548,,307696,15509,2 +146549,Misty,60125,97881,9 +146550,Marianne,3051,1628643,11 +146551,Himself,81435,1357161,6 +146552,Павел,260522,227084,0 +146553,Video Store Clerk,10071,62836,14 +146554,brigadiere,301272,226527,4 +146555,,11643,12329,12 +146556,Pirate at Auction (uncredited),44631,97999,15 +146557,Buck,41234,3140,8 +146558,Rene,121173,189996,0 +146559,Nola,345915,223133,29 +146560,Mr. Essex,32610,89729,15 +146561,,41121,125529,2 +146562,Aurore Gagnon (6 ans),16147,79611,7 +146563,George,17258,105303,21 +146564,Liza,57781,109117,0 +146565,Mel Anderson,3055,14573,7 +146566,Kid #1 / Young Ted's Voice,72105,1502852,31 +146567,Peter Taylor,257345,4724,0 +146568,Scratch,38322,1346703,14 +146569,Himself,51311,1109540,7 +146570,Second Dream,32654,64434,4 +146571,Dennis Wilson,381737,1601651,10 +146572,Laurenzio Fiorello,167073,225897,18 +146573,музыкант Лемисон / Боб Тейлор,65089,1600864,5 +146574,Daisy,374473,1650254,3 +146575,Hannah,40217,63545,9 +146576,Count's Son (voice),23544,90300,4 +146577,Prof. Pickering (uncredited),95504,95666,18 +146578,Ishihara,73306,72932,0 +146579,Velma (voice),12903,86314,3 +146580,Train Conductor #2,266285,1459405,35 +146581,Labros,87908,935632,1 +146582,Yip Tao,17082,1174366,7 +146583,Nelly Bain,26758,20418,1 +146584,Drachmann,128900,579195,28 +146585,Frau Johler,119820,238093,6 +146586,Man with a movie camera,127585,9032,29 +146587,Doctor (uncredited),156700,1636767,37 +146588,Bunson,156356,1210694,5 +146589,Bill O'Leary,241239,1986,7 +146590,Waitress (uncredited),4964,1821747,36 +146591,Black Widow Spider / Mrs. Plum (voice),3933,34902,10 +146592,,180162,23532,7 +146593,Funeral Attendent,379959,1604112,26 +146594,Custodian,9828,156602,20 +146595,Chie,216363,82873,2 +146596,Cassie's Father,14552,569546,12 +146597,Laura Britton,36612,1031275,15 +146598,Grandfather Stone,55534,32648,1 +146599,Financial Speculator,202214,147899,15 +146600,Blake,77439,11867,1 +146601,Hisano Asano,42170,86859,5 +146602,Gabriel,82662,78672,4 +146603,Liputin,37710,1452351,21 +146604,Tony Meneghini,92586,102026,4 +146605,Heiko's Wife,227975,15480,3 +146606,Sister,92663,1802667,9 +146607,Frau Hermann,88176,94324,3 +146608,Handler / Cornerman at Fight,75315,955691,48 +146609,Prostitute #2,186759,1505303,32 +146610,Georgette,42487,87476,5 +146611,Teacher,141418,583885,8 +146612,Corrigan,29805,10224,6 +146613,Capitán Diego Ruiz,353713,125212,3 +146614,Brody James,391757,78553,2 +146615,Coach (voice),27300,6916,16 +146616,Kindergarten Student,13436,1656886,26 +146617,Ran,8652,123408,2 +146618,Scientist,39123,496263,11 +146619,Salon Customer,13058,1589712,41 +146620,Marie Jensen,266285,1459336,9 +146621,Policier,85883,1177300,9 +146622,Choirboy B. Jones,198600,82387,1 +146623,Kōgaiji (voice),155765,1686,11 +146624,Umigame,39148,122191,1 +146625,Peter,39414,51382,7 +146626,Sam the Beaver,54491,165453,6 +146627,Lt. Fontaine,25388,15184,7 +146628,Reverend Rupert Palafox,86979,7317,6 +146629,Mahesh - Tina's dad,55376,222270,11 +146630,Cockney News Vendor,109716,1467863,41 +146631,British Ambassador,273167,96994,5 +146632,Himself,106821,514757,4 +146633,Vilain,76163,15111,5 +146634,CEO,198277,52602,18 +146635,Taxi Driver,27450,121112,13 +146636,Polly Benedict,43846,11495,6 +146637,Patricia McLaughlin,5413,3282,13 +146638,Rashida,253235,1522168,23 +146639,Mr. Widgren,51144,47179,6 +146640,소희 (Sohee),41441,1256494,5 +146641,Liam,148,1669,7 +146642,Clint,26502,133738,9 +146643,Pablo,48145,570733,4 +146644,Sexström,62900,1034493,9 +146645,Young Habibie,172705,1155284,4 +146646,Cissy,34598,1497673,8 +146647,Detective Diane Kershman,259997,38333,4 +146648,Lucy Fowler,7547,15852,0 +146649,Frosty Welch,94251,69951,3 +146650,Line Butter's Girlfriend,45132,85101,34 +146651,Lucy's Mother (voice),240832,1164329,50 +146652,George,6557,12833,4 +146653,Bit Part,150712,128942,22 +146654,'La Dame aux Camelias' (archive footage) (uncredited),181456,17882,33 +146655,CJ,414910,1488675,0 +146656,Fred Klein,19754,1504143,12 +146657,The Maid,53407,148051,3 +146658,Tina,54804,1014459,3 +146659,Joe Lorkowski,13090,1903,2 +146660,Bus Driver,74,1215988,23 +146661,,39493,1176539,4 +146662,Jimmy Kilmartin,213443,72059,1 +146663,Hildur's Mother,206390,1167484,12 +146664,'Captain' the Policeman,176627,34294,16 +146665,Lt. Anders,97632,1021529,6 +146666,Niiskuneiti,293271,1364782,6 +146667,,229134,50786,9 +146668,Yuri,345915,6734,19 +146669,Elf Girl,233487,84295,8 +146670,Vivek,14134,1673820,15 +146671,Dr. Eric Harvey,84626,52023,1 +146672,Jim,14138,81333,3 +146673,Ing. Antonio Berlinghieri,116236,32312,0 +146674,Single mother,104277,1039343,4 +146675,Hank's Father,10475,1886271,13 +146676,Røde,11328,1348438,5 +146677,Maude,62838,5586,26 +146678,Le contrôleur,139159,1167058,11 +146679,Recep İvedik,31061,144191,0 +146680,Jesse,34092,82454,7 +146681,Cao Shaolun,413198,78875,1 +146682,Rose Ross,223485,1046903,3 +146683,Glader,198663,1415426,28 +146684,(voice),160324,11115,7 +146685,Himself,18893,99278,2 +146686,Prinzessin Friederike,268712,52916,6 +146687,Noëlle,2029,231426,9 +146688,Sheriff,22551,89290,1 +146689,,246829,119350,3 +146690,Pablo,319910,1717825,22 +146691,Philippe,15797,59213,5 +146692,Whiplash One (voice) (uncredited),1726,1209731,86 +146693,Heather,28178,1158532,8 +146694,Confused Tech,246655,9039,79 +146695,Parent,38322,1869047,45 +146696,Screaming Diner,32657,1236411,80 +146697,Daphne,45752,15761,2 +146698,Mrs. Popper,88583,8493,3 +146699,Himself,123334,1284242,0 +146700,Mr. Morgo,406052,11160,3 +146701,Biology teacher,174162,85838,7 +146702,Pulan,30876,56876,1 +146703,Moving Man (uncredited),47758,105455,12 +146704,Wardrobe Mistress,340101,1865888,44 +146705,Patrick,48601,77195,9 +146706,Cowgirl,411741,1503678,18 +146707,Henchman Dodds [Ch. 4],170936,2098,10 +146708,Col. Quinnovieres (uncredited),42641,100595,9 +146709,Current Girl #2,291866,1592855,16 +146710,team manager,121516,100937,17 +146711,Un Belge,33436,38172,13 +146712,Tamizh's Father,362150,1114589,4 +146713,Senator Birney,47906,19550,4 +146714,Paolo Coniglio,106256,27433,0 +146715,Nikos,37590,1165743,2 +146716,Apache Navigator,14869,209680,21 +146717,Black Tiger Dao Tian-Du,40081,88351,0 +146718,Derek (as Mike McClerie),87302,552467,1 +146719,Lucas Mattei,14688,35530,5 +146720,Annabel,1259,37058,17 +146721,Martine,4443,37306,2 +146722,Mr. Hunt,58244,58169,7 +146723,Additional Voices (voice),328111,84213,23 +146724,Land Rush Starter,134238,121233,54 +146725,Pinky,13912,10800,1 +146726,Asgardian God (uncredited),99861,1371439,71 +146727,Sophia,85544,567541,1 +146728,Sartine,68023,35527,8 +146729,Paolo Anselmi,82481,45982,0 +146730,Guard (uncredited),15794,1022158,28 +146731,Prostituee,34092,111857,8 +146732,Nannerl Mozart,62116,585965,0 +146733,"Detective Chun, Jae-in's uncle and boss",54555,1286419,5 +146734,"Henri Lauzet-Duchet, le gouverneur de la Banque de France",75066,572393,5 +146735,Clothilde Lapiower,329682,1073782,8 +146736,Flapper Girl,921,219393,55 +146737,Ants Saareste,321303,1264586,8 +146738,Sara,13836,1285,1 +146739,Burke Ramsey Auditionee / Himself,430826,1891540,49 +146740,,170998,146937,2 +146741,,104374,1093423,5 +146742,Officer,134201,1771035,16 +146743,Kelly Rice,22803,35705,7 +146744,Маша,428398,1178489,1 +146745,Michael,50849,22312,7 +146746,DJ Johnny Flash,2169,18400,5 +146747,Leung Chi Man,18763,1597344,20 +146748,Csotesz,128043,1086318,2 +146749,Sam 'Store-Teeth' Morrison,32921,136895,10 +146750,Capt. Nicholas 'Nikki' Nieterstein,53860,4355,4 +146751,Zag,371645,1671694,22 +146752,Linda,103433,1038364,0 +146753,,9550,1620879,15 +146754,Andrea,197335,120107,2 +146755,"Mr. Richards, the Dubbing Editor",340101,1865893,45 +146756,Alan,118293,231457,2 +146757,Stacie,77875,10860,1 +146758,Lucien Roupp,99313,2168,5 +146759,Mr. Markovic,241071,9048,2 +146760,Jan Gintult,149511,1140520,4 +146761,Scarlet - the Maid,104427,669208,19 +146762,Doktor Hüsrev,38547,120683,4 +146763,Jeffrey,183662,967692,13 +146764,Karnock,43470,89524,2 +146765,Ordered to be beheaded,56095,1175310,14 +146766,Dean Armitage,419430,11367,2 +146767,Solicitor,19846,1487893,7 +146768,Apple Grocer Shopper (uncredited),354979,1098036,83 +146769,George Spiggot/The Devil,18209,18266,0 +146770,Himself,50647,22224,18 +146771,Sarah,270400,939099,1 +146772,Dave's Crony,294652,1883815,18 +146773,Präs. Baxter Harris,4257,7633,5 +146774,Bendegúz,63625,560235,0 +146775,Akiko Sôma - Student,52302,1185636,6 +146776,Beom-soo,214910,1292971,5 +146777,Smrutika 'Simmy' Naidu,393562,1643582,2 +146778,Бен,211928,128312,1 +146779,Mr. Borden,96702,80236,5 +146780,Morris,238589,1000981,6 +146781,Nai Muang,39907,126804,16 +146782,Sarah,172828,94098,1 +146783,Anna,270654,20374,1 +146784,Bar Patron,140607,52860,61 +146785,Judith,267793,1315947,19 +146786,April,14830,15762,7 +146787,Thug,18725,52908,6 +146788,General (voice),177572,21132,10 +146789,Geri,39345,14702,0 +146790,Nurse Mary Oxford,40028,83151,13 +146791,Dante,42674,128416,10 +146792,Juliette,121895,534985,3 +146793,Mrs. Meers,32489,1221907,9 +146794,Верка,92132,1619152,7 +146795,Officer Landers (voice),9297,32895,11 +146796,Test Subject #3,58244,1504601,40 +146797,Natalie Standish,25330,10080,2 +146798,Billy Herne,235092,653,3 +146799,Calvin,13805,1114053,4 +146800,Nick Sturm,7210,52011,9 +146801,Roger,63681,36911,0 +146802,Valeria,374416,1608972,1 +146803,Charlie,30708,19426,11 +146804,Sam French,28263,14416,0 +146805,Fay Templeton,3087,30271,4 +146806,Daphne,9655,14415,5 +146807,Daniela,50531,1486001,6 +146808,Mike Van Kerland,17654,136309,28 +146809,Officer,35392,50310,9 +146810,Gabe Ruskin,284537,8210,5 +146811,Chiquita (as Maria Casajuana),110887,89910,4 +146812,Stripper 1,280617,1851692,26 +146813,Russische Ärztin,613,18946,52 +146814,Hızır Kaptan,38547,90282,3 +146815,Bank Official,63273,974455,7 +146816,Peter,9893,60080,19 +146817,Amy Hunt,24632,41743,1 +146818,Prisoner,26376,119548,63 +146819,Euan Falcon,17926,65561,0 +146820,August Walrat,277968,11248,46 +146821,junge Frau,75969,1902092,41 +146822,Schoolteacher,48118,1299596,16 +146823,Päivi,20160,148044,11 +146824,General Kutyna,177203,21089,1 +146825,Reporter,5172,92756,31 +146826,Edward,348631,1865179,18 +146827,Dr. Thompson,20,2320,7 +146828,Dylan,374473,1650252,2 +146829,Ruth Webster,33931,46617,1 +146830,John McNeil,43806,44833,26 +146831,Rev. Arthur Stotheby,42871,179352,15 +146832,Pvt. Casey,72638,43823,22 +146833,Bob White,354287,934,53 +146834,Lady Teazle,12783,73462,8 +146835,Sills,424488,1155724,5 +146836,Eddie Baxter,50669,18643,2 +146837,Salvatore Pappalardo,146970,49458,3 +146838,Mme Dietrich,78789,19382,8 +146839,,90351,138445,8 +146840,Romolo's Attorney (uncredited),28000,1947,12 +146841,Det. Newhouse,125990,31839,8 +146842,Baba / The Father,334394,1496324,2 +146843,Evelyn,78177,179303,18 +146844,Nick,381073,1593041,14 +146845,Gregori,245891,968977,14 +146846,Dark Elf,287903,1207290,19 +146847,Claire Vigneaux,12446,19161,1 +146848,Rival Gang Member / At Dance,42553,97991,11 +146849,Jenny Dahlquist,16876,69855,4 +146850,Clark Tilden,77964,30279,8 +146851,Mexican Gardener (uncredited),15092,1423261,75 +146852,Bisbee,43811,34238,27 +146853,Hungry,375366,1733480,24 +146854,James Boggs,397717,122257,15 +146855,Eddie Stolzenberg,254918,14886,6 +146856,Pavlo,10604,24696,11 +146857,Naga the Serpent,125521,1462944,2 +146858,Mr. Teavee,118,23429,12 +146859,Analyst D. Pleasence,13836,1349629,17 +146860,Johnny Cash,69,73421,0 +146861,,287628,1475593,4 +146862,White Knight,25694,4068,4 +146863,NYC Doctor,214756,1224543,32 +146864,Arab Client,71670,1738257,16 +146865,Foxy,25074,1173605,20 +146866,Barrister Rakesh,82243,110085,9 +146867,Industry Man,80596,14501,24 +146868,Abraham Lincoln,11897,2669,16 +146869,Elvis,366860,1482953,9 +146870,Otoku,46069,134680,3 +146871,John Taylor,266856,16273,31 +146872,Paymaster,73194,89102,32 +146873,Полковник,72614,1190992,2 +146874,Michele,82481,1127316,8 +146875,Mi Lo,112708,149407,2 +146876,Mariane Hargis,40983,125128,8 +146877,Margo,180418,16971,0 +146878,Jan Zurakowski,19665,55595,18 +146879,Head Nurse Betty Watson,78383,3391,2 +146880,Lucien,46326,24476,3 +146881,Kate,21141,79793,1 +146882,Old Hatice / Old Ayperi,300490,145394,4 +146883,Schultz,271718,59842,14 +146884,Georges Hugon,66812,545452,3 +146885,The cop,78450,228915,1 +146886,,327225,1313538,18 +146887,,199887,1180347,3 +146888,Long Haired Fiend,49018,139631,15 +146889,Doorman,56558,1291802,26 +146890,Caroline Swann,13169,9281,1 +146891,Barb Vaughn,284537,18284,15 +146892,Himself,148807,930709,3 +146893,Paul,102362,1045964,13 +146894,Club Bouncer,105906,240914,4 +146895,Onkel,83459,1190350,4 +146896,David's Mother,4413,95522,29 +146897,Layla,25450,211944,11 +146898,Barney - MacFay's Bodyguard,14589,81974,36 +146899,Child Alexander,1966,20278,6 +146900,The Guardian,260030,102385,5 +146901,Carola,64454,1158271,10 +146902,Direttore del residence,38285,69444,11 +146903,Extremis Soldier,68721,1735569,80 +146904,,185987,142454,4 +146905,,61217,1383042,29 +146906,Warren Zell,71825,4690,10 +146907,,371818,18848,3 +146908,Jack Dalton,11175,68447,4 +146909,Travel agent manager,64882,552072,5 +146910,Jack Byrnes,693,380,2 +146911,Frau von Massow,266044,1439662,12 +146912,Minor Role,43833,31298,20 +146913,Mrs. Hamer,79521,1000336,8 +146914,Sudie,42472,160340,9 +146915,Anna Jurin,21198,19163,0 +146916,Young Cade,24810,589596,13 +146917,Na'vi (uncredited),19995,103259,81 +146918,Ragioniere,161545,68163,10 +146919,,375742,1041739,19 +146920,Delivery Man,185154,1540054,8 +146921,Amelia,1164,270,4 +146922,Hülya,101217,102908,1 +146923,Dr. Alex Cross,94348,80602,0 +146924,Dazey's Father,1481,1844325,10 +146925,Clarissa Ashe,1969,1218243,5 +146926,Douglas,1164,17478,8 +146927,Josef,4893,6612,5 +146928,Vikar,277968,1337802,32 +146929,Roxanne (as Rainbeaux Smith),21955,45480,7 +146930,Charlie,139244,1041777,5 +146931,Man Running in Courtroom / Policeman at Bowling Alley,99909,931793,40 +146932,Various,9948,60741,10 +146933,Mr. Marinier,18381,227601,5 +146934,Boss (as Edward Campbell),126841,11451,5 +146935,'Frenchy' Jourdonnais (Riverboat Captain),43367,30847,5 +146936,Thad Goodwin Jr. - 1861,118889,30219,10 +146937,Frank Jones,24050,14888,7 +146938,,77564,557379,6 +146939,,413644,1324161,2 +146940,Rental Attendant,333354,1661025,6 +146941,Christine Jacobson,4644,7796,5 +146942,Sheriff Harry Brill,42871,106506,5 +146943,Valére,11680,70193,8 +146944,Security Guard,10425,65121,6 +146945,Grey Wolfmeyer,11354,53917,9 +146946,Joan De Vesci,258251,20057,1 +146947,Flight Attendant,209112,1696038,99 +146948,Marilyn Hull,378441,1307014,0 +146949,General Hewlett,120837,940628,4 +146950,Bride's Electrician Boy Friend,209410,1295874,4 +146951,Alice Kepley,259694,118545,0 +146952,Mavis Hunt,45562,96408,1 +146953,Mike,27917,105813,13 +146954,Foued,97365,1033672,5 +146955,Hollom,8619,229672,10 +146956,Papa B,38150,119783,5 +146957,Sergeant,31445,95311,10 +146958,Booker,302666,132355,8 +146959,Kadankov,11376,33938,13 +146960,Natasha,293861,212044,1 +146961,Dr. Walter Chambers,50662,67913,2 +146962,Amie convive,255913,1714096,35 +146963,Rikiya Kumagiri,25716,1645163,30 +146964,Father,246415,1439314,1 +146965,Bruno,308671,10923,5 +146966,Duke Kipiani,371741,25503,3 +146967,Abu-Lias,24424,132107,3 +146968,Angela Klatt,39407,78848,1 +146969,Juge,382591,105493,14 +146970,Spyros' Wife,48210,1129935,3 +146971,Commentator,38920,1714643,7 +146972,Red Queen Girl,45522,1364518,14 +146973,Betty,111960,936928,6 +146974,Steve Mensah,245706,139030,20 +146975,Trick,47186,552220,21 +146976,Veteran Miner (uncredited),19995,107969,61 +146977,William P. Harley,262528,40433,0 +146978,Delilah,22968,2790,11 +146979,Killer Kennedy,175171,32430,3 +146980,Nancy Shaw (uncredited),419430,1689241,17 +146981,Der Graf,48205,2310,1 +146982,Sid,213755,1422741,14 +146983,Anna Símová,80094,25717,0 +146984,Nekro-gang member,48636,46312,6 +146985,Christine Maurel,59118,59826,3 +146986,Léon,78340,1163659,7 +146987,Captain Marvel / Solomon Grundy (voice),22855,35219,11 +146988,Georgianna,9953,13549,6 +146989,PT Master,341895,1470729,8 +146990,Peg,296025,77133,6 +146991,Rita,253235,1327296,9 +146992,Alexander (voice),16523,17142,12 +146993,Josephine 'Jo' Elliott,242332,144398,3 +146994,German Soldier (uncredited),297762,1824297,75 +146995,Vicky Spivak,393521,95541,2 +146996,Leah,3638,33430,4 +146997,Alura (voice),166076,48163,10 +146998,Olivieri,82662,232108,3 +146999,Empleada de Guadalupe (uncredited),44655,1514445,9 +147000,,36246,1009983,10 +147001,Policeman / Guest in Restaurant (uncredited),22943,2016,44 +147002,Frank,142712,20619,10 +147003,Miss Hunter,53524,12657,6 +147004,Stewart,17258,212797,29 +147005,Henry William Pickersgill,245700,20243,29 +147006,Technical Adviser (Married 14 years),4932,100019,21 +147007,Elise's Driver Mauro,37710,1626334,36 +147008,Fritz Neumann,61035,44329,23 +147009,Maureen,255491,82988,9 +147010,Nick,434873,74608,3 +147011,Tim,197624,1298267,3 +147012,Henry Drummond,37301,4765,2 +147013,Walter Rayburn,103168,1033086,5 +147014,Arturo,12645,101522,6 +147015,Jai,10610,1624031,13 +147016,Librarian,10594,65778,16 +147017,King,1579,1331672,36 +147018,Mazie Palmer,174946,932646,2 +147019,Colonel Crookshank,73933,135352,5 +147020,Molly Byrd,153169,30242,2 +147021,Susan Heffley,82650,46074,3 +147022,[Extra],38099,62414,3 +147023,,155605,33135,1 +147024,,320453,115652,6 +147025,Don,6963,6575,6 +147026,Third Man,1963,1074064,4 +147027,Laure,89560,4274,1 +147028,Gabriella Montez,11887,67599,1 +147029,D.S. Terry Hicock,25941,8397,6 +147030,Gérard,300,4291,9 +147031,Clive Edmonston,17669,44098,3 +147032,Oklahoma City College Debater #1,14047,1040679,22 +147033,Sokovian Family,99861,1756778,56 +147034,Marie-Claude,38792,39646,5 +147035,Conrad,10594,65773,13 +147036,Jeff,22579,1494056,9 +147037,Dr. Masani,13196,9147,7 +147038,Marion - the Barmaid,186227,1198259,8 +147039,Barbara,267793,87284,18 +147040,Moreau's Roommate,20674,169293,21 +147041,Sam Vaughn,47404,111464,27 +147042,Doctor Williams,29286,589728,11 +147043,Troy Martindale,25941,591346,15 +147044,Father,49038,1034805,2 +147045,Rod Davis,33511,1798879,10 +147046,Yone Hattori,18148,136381,11 +147047,Gettel,54570,4969,8 +147048,,109354,150730,6 +147049,1st Elder Electryon,11633,1120476,10 +147050,David,58414,227805,5 +147051,Korin,1904,113948,20 +147052,Laurence,14419,1035744,7 +147053,Himself - Yoga Student,97724,1388677,28 +147054,Yoyo enfant,90228,1161221,2 +147055,,273096,1443629,10 +147056,Gina Calabrese,82,65421,8 +147057,,63568,237501,0 +147058,Nick Collins,86709,1904,0 +147059,Evelina Andreoletti,262786,1054038,1 +147060,Angela,315880,1345953,8 +147061,Otis,42045,1230,6 +147062,Tomber (voice),49013,1117785,20 +147063,Teresa Russo,217948,99374,0 +147064,Ma Yongzhen,248376,100585,0 +147065,Merit,24973,14500,0 +147066,Tommy,11547,1348582,8 +147067,Young Lovell,101852,236302,5 +147068,Decker (voice),411221,1607,7 +147069,Max Shaw,11058,1228341,5 +147070,Kim,229594,39596,6 +147071,,31462,11076,23 +147072,speakerine TV,24170,149869,8 +147073,Policeman,14589,951965,81 +147074,Céline,57307,81124,9 +147075,,128120,1124068,0 +147076,Maya,7515,17442,4 +147077,Don Pedro Vargas,35032,37884,2 +147078,Lenora,156277,34408,3 +147079,Himself,35428,238687,12 +147080,Olek,382155,1636699,29 +147081,Bowling Alley Employee #6,179826,1635196,33 +147082,Michelle,10011,61998,7 +147083,Priscilla,15003,1044536,5 +147084,Elvira,20126,1090000,10 +147085,Secrétaire JLH,152989,1179884,18 +147086,Regret,47876,64930,3 +147087,"Penelope, la fidanzata di Checco",374416,1879935,8 +147088,Heimleiterin,269258,19911,9 +147089,American Sergeant,19996,1385266,46 +147090,Allen,14552,569548,20 +147091,Forensic Investigator Simms,19901,1128161,17 +147092,,49106,929467,13 +147093,Dora - The Little Rabbit,39436,129442,15 +147094,,284189,24832,1 +147095,Long-haired Hood,45132,1358928,36 +147096,Bernd,318781,1694292,10 +147097,Broder,50725,60488,20 +147098,Prince Belshazzar,3059,29959,43 +147099,Micah,440777,1318195,5 +147100,Colette,209406,221840,3 +147101,Gertrude,261439,1304968,5 +147102,Maj. Cassidy,20674,6280,0 +147103,Witchdoctor,55152,93952,15 +147104,Angela Aniello,132122,1094537,7 +147105,,63472,1461,12 +147106,Sod Buster (voice),44896,15318,15 +147107,Bank President McInnes (uncredited),43522,33705,81 +147108,Tanya,20648,151261,4 +147109,Valerie,329440,183048,7 +147110,Dr. McWaters,28340,43115,6 +147111,Thereminspielerin,277968,1842440,38 +147112,Sheriff,43811,14664,15 +147113,Customs Warehouse Guard,41030,126017,14 +147114,Sylvia,122271,1075841,0 +147115,Rosa,110447,1752446,12 +147116,Sophie Moor,119820,22686,0 +147117,Comte Ginori,126958,1083441,5 +147118,Pig-Pen (voice),227973,1393183,11 +147119,Mall Cop,317198,1548736,9 +147120,Iddy,59075,12659,1 +147121,Dick Carlton,13580,23076,9 +147122,Dr. Ehlers,269258,13812,10 +147123,Schmidt,34127,94110,4 +147124,Rory O'Shea,31165,5530,0 +147125,Taxi Driver (voice),116711,52860,6 +147126,David Wiley,45679,78309,3 +147127,Kadhir's Mother,24448,544889,6 +147128,,293094,150981,4 +147129,,98277,134520,52 +147130,Dina Byrnes,693,10401,5 +147131,Tomek's father,346443,1117814,8 +147132,Dr. Raxlen,345925,1359997,5 +147133,Barb,89492,174514,12 +147134,,340961,1074070,6 +147135,Maggie,76163,27084,14 +147136,Party Guest,244534,1445658,11 +147137,Diablo (voice),14405,587,6 +147138,Niña Medeiros,8329,111090,13 +147139,Gino Monetti,20003,13566,0 +147140,Young Steven,107985,1200851,10 +147141,Agnes,263873,1308333,8 +147142,Brunette Girl,50916,1027314,3 +147143,Oscar Pormenor,377287,8789,4 +147144,1er complice,690,1711541,6 +147145,Chairry,60977,232085,3 +147146,Mr. Holland,88558,169549,10 +147147,Diana Pines,26204,12445,6 +147148,Lisa Marie Presley,322548,1274510,5 +147149,Rhoda,48207,1627888,12 +147150,Tsotsi's father,868,13108,12 +147151,Will,29907,141476,0 +147152,Denny Tani,18214,1045069,7 +147153,Midget in Pool,33541,1236259,44 +147154,Confederate Soldier (uncredited),109491,1682515,43 +147155,Juanjo,411638,229241,3 +147156,Arcade Guy,429200,33521,18 +147157,Aarohi Kesav Shirke,192558,130991,1 +147158,Jane's Aunt,6557,169906,28 +147159,Melissa,10761,60928,5 +147160,Kevin,291866,559457,14 +147161,Gower,18774,96372,20 +147162,Blue geisha,414547,1678517,3 +147163,Dancer,26809,97600,4 +147164,Second Lieutenant,46872,1263,10 +147165,Show Girl,413232,1471639,17 +147166,Mr. Beech,67216,60883,9 +147167,Can-can dancer,3023,1580381,9 +147168,Dwight Arno,8954,103,4 +147169,Fiona,227156,1121786,3 +147170,Matilda,345003,110027,16 +147171,La padrona della pensione,43231,126555,3 +147172,Don Sebastian,111759,8841,2 +147173,Paramedic,73565,1112872,26 +147174,Neighborhood Mom,331313,1656906,25 +147175,Parent (uncredited),331313,1767218,47 +147176,La mère,187602,25166,14 +147177,Setsu,168994,131013,4 +147178,Policía,299165,1170945,19 +147179,,131194,47886,10 +147180,Orderly (uncredited),284052,1729054,34 +147181,Isabel,97683,1039525,4 +147182,Erica Stern,57597,153996,16 +147183,,287587,111683,10 +147184,Sir Thomas Forsythe,27970,13343,4 +147185,Himself,449674,52849,1 +147186,Homeless man in stairwell,397717,1290726,18 +147187,Théodore,285848,123922,5 +147188,Edward Bryant,32540,109322,10 +147189,Martin,15177,77978,5 +147190,Louise Tredwell,59115,427,8 +147191,Mars Father,20196,1329280,12 +147192,Joëlle Goulain,109261,229136,2 +147193,Himself,319092,1890097,1 +147194,Tom Gillespie,413232,67685,2 +147195,Bouncer,1450,74931,19 +147196,Monica,190955,8293,2 +147197,Jolene,332936,52605,3 +147198,Aurélie Coquille,72375,21965,2 +147199,il procuratore,3520,589787,16 +147200,Drag Fan,1481,1844343,36 +147201,Dylan,296626,1298900,10 +147202,Bag Woman,60125,1100330,6 +147203,Judge Blake,111470,103895,10 +147204,Тётя Полли,74705,99289,4 +147205,Groom,405473,1800037,33 +147206,Marty,367147,582722,2 +147207,Reporter,43821,121122,28 +147208,Aleksandar Tirnanić 'Tirke',255647,226139,1 +147209,,273,3877,6 +147210,Piglet (voice),14885,5247,3 +147211,Pedro,13383,223080,1 +147212,Wagon Driver,209112,1696226,108 +147213,Pig Server / Rabbit (voice),81003,135795,13 +147214,Sol,344656,1477314,1 +147215,Jacky,334299,1508676,9 +147216,Sarah Tipton - the Daughter (uncredited),75510,19327,9 +147217,Wiley,71140,168402,6 +147218,Herself,157117,101684,30 +147219,Madalena,198890,1259971,0 +147220,Nicole,277710,1175394,8 +147221,Tulio (voice),172385,17289,7 +147222,Tänzerin,5748,45318,9 +147223,Whittier,12540,72723,0 +147224,Nomad,232731,78814,4 +147225,Borg,214756,523952,31 +147226,Superintendent,68822,103890,11 +147227,,76940,226829,4 +147228,,271495,1265149,1 +147229,Corey Ellman,429200,10431,1 +147230,Ottobang,238985,106102,15 +147231,Kwon,284135,564849,3 +147232,Katharina,128856,1089465,6 +147233,Joe,360284,1226695,7 +147234,,285532,142134,7 +147235,Henry Mays,51836,70775,5 +147236,Augusta Bertram,5183,10978,0 +147237,"Bartholomew, the bee man",47404,14968,4 +147238,Gérard Postelle,4266,28189,7 +147239,Tola (as Jeff Weston),31397,93922,10 +147240,,91067,939117,5 +147241,Police 1,427680,1758538,10 +147242,Hombre suicida,41298,90263,16 +147243,,65958,77906,4 +147244,Tony,174712,54690,0 +147245,Pepperl,296225,45819,3 +147246,Bekir,197297,20728,3 +147247,Vanessa's Receptionist,359412,1352662,22 +147248,,352197,1511747,4 +147249,Christabel 'Christy' Sloane,193878,7331,1 +147250,Deputy Features Editor,220674,1206333,1 +147251,Detective Rousch,35683,15373,5 +147252,Snide Reporter #2,379441,1748375,11 +147253,Ralph Twiller,177902,34086,7 +147254,Sarah O'Brien,24671,2206,0 +147255,Mary,55632,40036,5 +147256,Himself,340053,1248901,2 +147257,Tia,38150,11291,13 +147258,Ernest,54563,18767,6 +147259,Chauffeur taxi,305455,1165294,14 +147260,Isabella,314065,1355139,7 +147261,Gevatter Tod,9765,5844,8 +147262,Nick Steinwald,19794,7002,1 +147263,Tim,134238,1106999,16 +147264,Annie,27095,66838,2 +147265,The Girlfriend,76533,564418,5 +147266,Pimp,21968,1655539,9 +147267,,13506,224116,13 +147268,Scott Summers / Cyclops,246655,1034681,9 +147269,Himself,384262,1646177,3 +147270,Achmed,26116,22019,4 +147271,Col. Hawks,79466,82837,13 +147272,Thug #1,33005,1476699,12 +147273,"Настя, жена Леши",83456,932351,9 +147274,Tommy (voice),12697,73996,1 +147275,Judy Maida,142216,15746,2 +147276,Darrell Cartrip (voice),49013,942993,11 +147277,Miles Tonkin,45215,104711,15 +147278,Esperanza,239562,81703,6 +147279,The Kid,440777,1754590,12 +147280,Mike,440508,147,8 +147281,Mrs. Gaunt,128270,1820218,35 +147282,Lily,366548,1285313,3 +147283,Cicero,38027,937883,8 +147284,Nebbercracker (voice),9297,884,1 +147285,Lily Hoggett-Egburry,115109,223051,12 +147286,Timothy,413998,1674153,12 +147287,Marisol De La Cruz,331962,1154053,18 +147288,Mrs BJ Spence,29694,40961,18 +147289,Desmond,17725,1318524,23 +147290,Anuradha,96147,623417,9 +147291,Maria,11925,72686,1 +147292,Valter Hein,321303,1424978,19 +147293,Grandma,323929,1724362,13 +147294,Hal,5172,6905,7 +147295,Tish,14843,81164,4 +147296,Steve,302699,78433,5 +147297,Youth center supervisor,14357,1156993,9 +147298,Chubby Geek,30139,1667623,4 +147299,"Piera, la madre di Giovanni",56804,1865129,10 +147300,Dottoressa Sironi,374416,70234,2 +147301,Bellboy,45838,8635,1 +147302,Baran,188765,1186810,0 +147303,"Antoinette, Charles' Wife",141955,749,8 +147304,Ludovico,56853,133217,14 +147305,Hanna Mills,38048,17743,0 +147306,Bridget Vatan,369885,51988,4 +147307,Humlan,96118,6657,0 +147308,Meen / Oom,63081,1062864,1 +147309,Sandra's Daughter,16022,200065,15 +147310,Grandpa,85715,592960,1 +147311,Theo Jensen,142012,164361,8 +147312,Schwester,308174,1888490,25 +147313,Killer Sills,425591,43934,16 +147314,Cowboy Bob,119893,48313,5 +147315,,267977,1414612,1 +147316,Elena / Ana,105584,400,0 +147317,Richard,403330,989607,11 +147318,Snowplow Driver,97614,1207366,26 +147319,Music Foundation Director,130507,89727,13 +147320,Eve,92635,75346,1 +147321,,181456,1524417,26 +147322,Ludo Van Dam,164366,143716,5 +147323,Clara,56647,224731,5 +147324,BC #1,37534,59824,8 +147325,Dr. Robert Fortness,76229,12282,2 +147326,Kenzo Horino,88271,1437832,4 +147327,Zehra,37586,930616,6 +147328,,33333,1061236,12 +147329,Alicia Frank,51049,9259,6 +147330,Louise,92251,20798,5 +147331,Skarney,57683,147,4 +147332,,177564,1160010,1 +147333,Sergeant (uncredited),16442,94337,82 +147334,Dara Lavin,286971,1266054,13 +147335,One of the Weazels (uncredited),172443,8630,10 +147336,Taro Seki,176143,85993,1 +147337,Professor Raghuvansh Shastri,28805,150012,4 +147338,EHC Guard #2,71670,1739823,20 +147339,Female Reporter,336890,1903970,20 +147340,Katie,59962,123725,11 +147341,Teresa,58615,150617,5 +147342,Dolores,343934,14911,17 +147343,Vincent's Wife,378018,1791801,11 +147344,Santiago,300601,1103794,11 +147345,Jo Hyun-woo,435821,1257899,1 +147346,Penelope,20625,2434,7 +147347,Bodyguard (uncredited),14615,34448,99 +147348,"Miller, bookseller",30014,78778,14 +147349,Gangster,27966,126836,48 +147350,Holly Hills,60307,1254435,7 +147351,B & B Landlady,107985,137471,31 +147352,Doctor,65839,125737,5 +147353,Isabelle,121539,1759912,4 +147354,Mme Van der Busch,55370,1019367,16 +147355,Thimblerigger,76438,454589,1 +147356,David,44680,131335,0 +147357,Rauf,4887,5120,1 +147358,"Dr. Carter, Psychiatrist",45692,13979,7 +147359,Detractor,408537,1208240,7 +147360,,340961,1176150,14 +147361,Barbie,424488,1407899,21 +147362,Douglas's Crony,43806,33855,71 +147363,Dan,65650,31711,5 +147364,Black Eagle,108224,1310223,8 +147365,Colin,42684,128630,7 +147366,Mishima,118293,24378,0 +147367,Penny,216374,91538,7 +147368,Himself,18893,938984,16 +147369,Iesa,203217,567575,6 +147370,Metropolis Survivor (uncredited),209112,1283943,149 +147371,Roger,138222,975947,8 +147372,Handsome Man,330947,1163308,23 +147373,Sasha Mushkin,64268,549545,3 +147374,Narrator (voice),30973,290,0 +147375,Mlungisi,13823,75790,26 +147376,Loogie,25132,76098,7 +147377,Ashok Bansal,81551,86014,0 +147378,Sandy Hubbard,28586,100606,6 +147379,Boy in Wedding,73194,1271030,28 +147380,Colby Price,9966,12643,4 +147381,Crowder's Man,5183,41961,13 +147382,Ip Man,365222,1341,0 +147383,Mme Agnès,132332,37444,3 +147384,Giggles,347258,88386,6 +147385,La reine de l'hémisphère nord,47143,4813,2 +147386,Singing Boy,318781,1694309,39 +147387,Lawrence Kennard,53864,114097,5 +147388,Piero Del Papa,11614,1441039,14 +147389,Latina Girl,323675,1399126,40 +147390,Antonio,302802,1385139,3 +147391,Tavern Waitress Marci,16083,61058,17 +147392,Charlie Cartwright,11643,6972,1 +147393,Ram Avtaar,39839,55066,5 +147394,Biggs,31472,47857,14 +147395,Blé,52369,1789823,14 +147396,Evert-Jan Kroonenberg,16177,78803,4 +147397,Police Officer,8988,1741957,29 +147398,Branco,2061,21194,6 +147399,Alicja's father,32559,1387,5 +147400,Henry Jackson,61550,14416,1 +147401,Tony Toponi (voice),27653,35349,6 +147402,Joy Birch,146233,1371108,14 +147403,Vaidyar,237672,1296865,18 +147404,Yôichi Ryû (as Yusuke Iseya),31512,70209,2 +147405,Pithiviers,56589,37457,1 +147406,Plainclothes Cop,107250,1567169,22 +147407,Sean Mills,239018,33706,2 +147408,Philip Ames,97767,12022,5 +147409,Paul,176,2134,8 +147410,Chief Okonji,209401,1508112,13 +147411,Richard Lestrange,31472,88892,3 +147412,Old Neighbor,5123,1781821,28 +147413,Woman,259761,1302131,1 +147414,Danielle 'Danny' St. Claire,24090,52365,0 +147415,Lucy,267483,1315168,6 +147416,Soeur Anna,16147,79621,17 +147417,Mme Lloyd Rogers,77964,133227,6 +147418,Kathryn / Kay,75623,29930,2 +147419,Lancelot,7096,53013,10 +147420,John Cronan,109424,15824,3 +147421,Waters,318922,55466,6 +147422,Mr. Festinger,38749,44792,6 +147423,Young Dancer,262958,1537742,29 +147424,ABV,2241,5844,8 +147425,Brianna,32845,1507454,7 +147426,Granddad,18072,39186,11 +147427,Crystal the Capuchin,74465,1428580,12 +147428,,25518,37647,9 +147429,Vanessa's Friend #1,7326,1313741,29 +147430,Goom,136087,1105162,2 +147431,Officer Simonetti,37083,82779,10 +147432,Iwa,84508,1083304,2 +147433,Taramis,29903,127609,3 +147434,Aspiring Actress,177902,104199,17 +147435,Mr. Kaufmann,80389,4029,3 +147436,Lips Haggarty,26801,101886,5 +147437,Policeman,46436,57165,10 +147438,Boy,43812,1249528,57 +147439,The Mom,14457,1089169,9 +147440,Wife of Mendez,106747,1265929,15 +147441,Goldwyn Girl (uncredited),156356,64838,7 +147442,Police Sergeant,32540,109327,15 +147443,Guran,41522,65345,1 +147444,Black Lycan Sidekick,346672,1781409,21 +147445,Professore Michele Belcore,101231,22383,1 +147446,Marie,204965,1187355,13 +147447,Student 2,395992,1829361,14 +147448,Charlotte,13954,25946,7 +147449,Victoria,107287,1808859,10 +147450,Sosnowski,81313,591422,2 +147451,Insurgent,9793,59298,11 +147452,Heath,107942,86919,3 +147453,Delores,371181,104646,2 +147454,Louise,17046,9015,4 +147455,Frau Profalla,58166,45734,13 +147456,"Mrs. Deirdre Biddulph (segment 1 ""Werewolf"")",26811,122922,15 +147457,Iraqi Girl,34734,1228378,6 +147458,Tuschi,83729,135075,4 +147459,Ake,113660,89513,1 +147460,Merche,348537,102222,4 +147461,Robert Evans,128311,1168174,8 +147462,Nathaniel Rulough,161187,85484,15 +147463,,148371,1812015,12 +147464,,22701,1187643,15 +147465,Esteve,438634,1149067,2 +147466,inmate,88564,1040008,16 +147467,Mistress Shaw,76203,1981,11 +147468,Ray Mellette,76468,59945,5 +147469,Professor Von Lander,28068,99560,10 +147470,Congressman Parker,127585,934847,25 +147471,Nikolai Krasotkin,342588,1325962,7 +147472,Kelly Carson,81895,31921,2 +147473,Barbara Noble,31984,1248522,6 +147474,Willa (Adult),137321,2639,9 +147475,Harden,332488,1869695,5 +147476,Himself,103215,46392,8 +147477,Howling Man,40258,1123092,11 +147478,Little Girl,9030,129713,12 +147479,Paul Hassel as a young lieutenant,27003,96743,7 +147480,Huang Han,41378,1625479,14 +147481,Stephanie,114377,78044,0 +147482,Sarah Ragdale,29638,104458,0 +147483,Anne,150736,44078,1 +147484,Repo Man,252682,29383,12 +147485,Danny,44593,141675,2 +147486,,329227,141683,4 +147487,In-woo's wife,83013,994248,5 +147488,(uncredited),4497,39008,14 +147489,Begger,25074,62414,11 +147490,Steve,109213,105183,1 +147491,Eva Marceau,312497,210904,25 +147492,George Peakes,19665,123306,17 +147493,Harrison Lloyd,316268,1410542,8 +147494,Molly,54525,1254435,1 +147495,Xian,19545,1479153,26 +147496,Vivien Mason,32067,59017,2 +147497,Major Guardino,57597,73022,2 +147498,Jack Dillon,118889,32128,1 +147499,Michael Gallagher,5413,43131,0 +147500,Gloria Ducci,27703,5969,3 +147501,Billie Jean Davy,15982,33488,0 +147502,Interviewee,17654,1086507,13 +147503,L'interviewé énérvé,62675,48417,18 +147504,Aila,6935,51501,9 +147505,Announcer (voice),322487,1459703,7 +147506,Ollie,63096,40393,5 +147507,Nellie,21250,29220,3 +147508,,84771,15860,7 +147509,,69471,1284,1 +147510,Security guard,45452,118355,4 +147511,Titania,21533,1598009,11 +147512,Elsa,61361,56241,2 +147513,Dr. Edward Pretorius,14510,99036,3 +147514,Herself,383914,130030,1 +147515,Michelle,13493,80597,1 +147516,Herself,276120,28640,3 +147517,Herself,105583,105056,19 +147518,Joseph Balsamo aka Count Cagliostro,92796,40,0 +147519,Jack Kehoe,42345,738,0 +147520,,166262,1147817,5 +147521,Tim Holstein,16014,4467,7 +147522,Caitlin,346170,1507239,2 +147523,Dr. Nora Haley,59735,25306,1 +147524,Oliver Campbell,321497,10822,0 +147525,Barry Walls,19846,75889,4 +147526,Ravi,419459,77090,7 +147527,Manager,8383,1493489,9 +147528,Miss Selby,65777,101723,5 +147529,Bereś,155426,1519412,1 +147530,Extremis Soldier,68721,1735574,98 +147531,Karlsfeld,368342,1535437,13 +147532,Laurie,8194,5916,3 +147533,Milena,255160,228803,6 +147534,Herself,393367,1660177,7 +147535,Sameer's Girlfriend,20495,77236,3 +147536,George Sylvester,46145,97146,3 +147537,Nop,50086,1072040,1 +147538,The English Lord,108017,1264222,2 +147539,,62741,235924,1 +147540,Bhairav,5319,43415,10 +147541,Russell,13022,45210,7 +147542,Girl in Panama,110887,1051382,3 +147543,Firefighter #2,295723,1418261,31 +147544,'Arizona' Frank Bailey,80193,14664,2 +147545,Laurie,21955,99831,1 +147546,Kendall Brown,122221,199917,7 +147547,Anatole,68822,36911,24 +147548,Claretta Petacci,61212,102362,2 +147549,Angela,31522,18197,1 +147550,Inbasekaran,63825,85519,1 +147551,Czar Nikolai I,47190,48058,4 +147552,Ed / Campus security,260947,1169522,8 +147553,Shaul Cooper,168552,1150432,0 +147554,British Soldier (uncredited),297762,147641,94 +147555,Agnon,280617,1522142,3 +147556,Schmidt Putzi,102155,178971,24 +147557,William 'Bill' Gridley,49844,3151,1 +147558,Janovich,11329,14331,10 +147559,Marine Biologist,17911,1110617,11 +147560,Lem's father,34796,32139,2 +147561,Sketch Artist,4413,73569,27 +147562,Dirt Bike Rider,312221,1711690,61 +147563,,153196,1283561,10 +147564,Desmond,43045,151651,0 +147565,Isaburo Sasahara,27031,7450,0 +147566,,255772,1603926,1 +147567,Himanshu,280690,6519,4 +147568,Denis,17479,150018,1 +147569,Maj. Chapman,293167,20286,6 +147570,Mexican Father,41611,1096850,5 +147571,Nick Papadopolis,188468,4969,17 +147572,Reanimated Dead Guy,75761,60081,17 +147573,Kadir,123601,1078377,2 +147574,the Prince,4286,36018,8 +147575,Lab Technician,16320,80436,26 +147576,The fourth boy,330770,1616032,6 +147577,Julia,81312,105562,1 +147578,Himself,245394,1251776,15 +147579,Dr. Arthur Hohler,28663,30847,9 +147580,Mother (voice),1387,1539683,2 +147581,Terlizzi,58013,129535,11 +147582,Joseph's Dad,70587,63564,10 +147583,Priest,117212,1181047,8 +147584,Himself,40863,552393,5 +147585,Mirko,48254,1664128,10 +147586,Dr. Värava,21208,10841,6 +147587,Aoi Okita,391004,1321981,2 +147588,Amanda Chase,10739,6886,2 +147589,avvocato Modica,121998,1891815,8 +147590,Nathanael,30973,107405,12 +147591,Sister Irja,15179,1200231,9 +147592,Bertuccio's Mother,28710,1162537,6 +147593,Shopper #1,20430,1489351,10 +147594,Karlo,62731,235097,2 +147595,Mr. Munday,9471,8930,6 +147596,Bob,351065,51383,4 +147597,Teacher,56558,85738,60 +147598,Cynthia,124042,44203,6 +147599,Justin,272878,1279814,1 +147600,Mrs. Dyole,13957,76109,12 +147601,Dr. Clairebourne,20919,62357,3 +147602,Andy,352186,85139,0 +147603,,51549,96558,17 +147604,Erwin Kim,376660,1560379,5 +147605,Doris Strelzyk,58995,13724,1 +147606,Sushma,210068,78248,5 +147607,Laura Rosen,41556,3897,0 +147608,Doctor (uncredited),37628,180174,32 +147609,Bandleader,23096,7172,15 +147610,Wedding Guest,14976,1534627,30 +147611,Officer Forster,339403,1371261,22 +147612,Ragnar,47956,35320,1 +147613,,297298,1373503,7 +147614,Scientist #2,2966,1521627,19 +147615,,289183,93565,2 +147616,G-5 Co-Pilot,102382,963767,29 +147617,Ray,27561,82703,8 +147618,The Man (uncredited),78177,583260,23 +147619,Uehara,26936,3317,8 +147620,Coffee Barista,84228,1082354,11 +147621,Mr. Higgins,16444,119342,5 +147622,Mary Saunders,28455,82630,7 +147623,Wilma Rappi,108535,19270,9 +147624,Gretchen Mol,64942,8293,7 +147625,Anne,164288,82423,0 +147626,Queen Jayanti,19623,35743,2 +147627,Jean Marie Straub/Flavia,292387,1267831,3 +147628,Ruskin's Father,245700,2258,11 +147629,Drew Macallister,399894,1323453,5 +147630,Betty Hammer,99846,45469,1 +147631,Landry,296524,60881,13 +147632,Higgins,156597,54195,15 +147633,Bob Younger,27349,2454,7 +147634,DI Bailey,48838,1665,6 +147635,Professor Ferlach,268212,28886,3 +147636,Kjelketrekker,20372,1270303,19 +147637,Kid Talking About Miles,23367,95365,15 +147638,Shelly Hunter,14782,1817,3 +147639,Taylor,19255,84409,8 +147640,Girl #1,97683,1193687,9 +147641,,289278,1069765,11 +147642,Man in Bar,53387,89603,5 +147643,Himself,157117,13007,2 +147644,Marylin Monroe,152989,228951,19 +147645,City Hall Records Man,322518,69857,11 +147646,Qusay,62630,549331,15 +147647,Henry,56809,1833803,11 +147648,Charlie,86023,10727,1 +147649,Mike Lambert,29365,3381,0 +147650,il capitano della nave,103216,122022,8 +147651,Mark,301804,11155,2 +147652,Jeffrey,272693,1426221,14 +147653,Carl Wilson,271714,116295,9 +147654,,246829,126994,6 +147655,Ginge,239845,454282,3 +147656,WW2 Nazi Vampire Extra,246741,1780280,38 +147657,Maria Palmer,28452,100842,5 +147658,Young Martine,11832,202575,5 +147659,Priester,298396,95618,3 +147660,"Pauline, cashier",10834,22612,2 +147661,George,86980,106655,2 +147662,Maritschi,277967,238260,6 +147663,Ed,82520,167564,5 +147664,Cast Member,38770,1463148,23 +147665,Fiat Driver,206647,123548,39 +147666,Mom,77875,1477895,20 +147667,Suzanne,405473,1338898,4 +147668,Eisuke Kato,46149,135132,4 +147669,Eliška/Hana,19765,72865,0 +147670,Thug,13960,1606734,12 +147671,Jerry,27966,2673,15 +147672,Paige,142391,200794,5 +147673,Cale,117251,38673,0 +147674,Zoe,6964,3910,3 +147675,Malachi,70500,94020,3 +147676,Hyozo,45384,151093,10 +147677,Godolo,222517,91545,11 +147678,Jenny Hoffman,49343,42335,1 +147679,Ursula,43912,135173,2 +147680,Johnny Finney,42619,161366,8 +147681,J.D. Cahill,30708,4165,0 +147682,Superman (voice),22855,68122,1 +147683,Lord Kirkside,38654,1065887,13 +147684,Silviu,39840,125279,1 +147685,Mrs. James O'Flaherty,315664,1196986,16 +147686,Cass Michaels,37038,40159,1 +147687,Kevin Richter,57100,52,2 +147688,Fata Turchina (voice),136619,1888075,9 +147689,Mr. Bledsoe,342472,1651954,10 +147690,Sabata,8144,50782,2 +147691,Princess Merkalova,96724,1252934,13 +147692,Millie,25241,1765264,9 +147693,Make Out Girl,85350,1467928,40 +147694,Kidnapper,19621,1062323,15 +147695,Albert Cole Jr.,52437,145985,3 +147696,Letty Fan,168259,1534800,24 +147697,Hernandez,75174,59674,7 +147698,Leigh Hartley,145162,15196,0 +147699,Monsieur Klerdene,62675,24500,6 +147700,Kenny,17725,122589,3 +147701,Irving S. Blanchard,19968,8608,3 +147702,Guest at Junior's First Party,288521,13968,19 +147703,John Anderson,260947,23899,4 +147704,Man Yelling from Apartment House (uncredited),28663,117036,14 +147705,Jimmy,137182,88806,5 +147706,Coach Rehmer,213914,11086,2 +147707,Ratownik pogotowia,314371,1583953,31 +147708,Karim le nain,277839,1576045,7 +147709,,58447,1202127,9 +147710,"Marcel Pitou, l'évadé des HLM",78377,25182,6 +147711,L'agent de Police,10294,124086,6 +147712,Audrey,417936,1475034,11 +147713,Himself,414749,1217825,11 +147714,Gandhi,332488,1445665,4 +147715,Hans Himmler / The Monster,3164,30980,9 +147716,Patrick Moore,304336,1736,5 +147717,Joseph Welmar,40693,103358,8 +147718,Carl,102362,1179646,32 +147719,Ethel Winter,199155,9878,8 +147720,Mazie,120357,85847,8 +147721,Jo,41923,4160,1 +147722,Old Lady / Additional Voices (voice),52264,85294,25 +147723,Deputy,98250,200203,13 +147724,Stephen Harding,41505,127048,4 +147725,,44442,1275871,3 +147726,Jo / Harvey,219345,559838,1 +147727,Grace Collier,22307,41258,1 +147728,Gossip,286267,1289109,13 +147729,Peter,298751,1272291,9 +147730,Stage Manager,313922,1384017,12 +147731,George S. Kaufman,185291,4765,1 +147732,Max Kohn,98349,201629,0 +147733,,52251,1142677,5 +147734,Cantinero,14430,236686,13 +147735,USSE Bridge Crew,188927,1512174,44 +147736,Ens. Tommy J. Hanson,43752,4300,1 +147737,'Granny' Whitman,244201,13816,4 +147738,Mauno Munalukko,55495,116161,2 +147739,Valentin,142757,1117921,1 +147740,Primarlehrerin,14804,1901790,13 +147741,Santiago Guzman,352094,9211,2 +147742,Gail the Television Reporter,6575,43775,30 +147743,Kimiko Yamamoto,92950,1179488,0 +147744,Banker,8886,6264,8 +147745,Vivian Hill,332411,28412,2 +147746,Clayton,42473,6463,17 +147747,Mand i bil,356326,1442256,15 +147748,Birgit,164366,87845,2 +147749,Lady Sarah's Butler,6972,110485,33 +147750,David Riven,12601,73060,2 +147751,,293094,1364480,3 +147752,Jamal,27711,98808,2 +147753,Renata,199644,1080766,1 +147754,Olita,116432,1189689,4 +147755,Breakdance Teacher,159667,1849488,16 +147756,Gagan's Henchman,197737,1173173,30 +147757,Dad,246127,5274,5 +147758,Présentateur,25518,41526,10 +147759,Tammy,409447,1686510,18 +147760,James,76543,1665,2 +147761,Herself,345176,1721397,1 +147762,Commander,52454,1630313,40 +147763,Eduardo,57489,928977,3 +147764,Keiko Kusakabe,104776,95579,0 +147765,Nitongu,2966,1521621,11 +147766,Lydia West,70498,3830,2 +147767,Marília,34588,1839753,15 +147768,Nurse,190352,142410,10 +147769,Natalie Vanderpark,10710,56322,4 +147770,Tamara Vasilyevna,47851,109117,0 +147771,Patsy Ramsey Auditionee / Herself,430826,1891550,60 +147772,,31275,1853881,12 +147773,David,345918,84497,1 +147774,M. Pernot,142528,48405,4 +147775,"Paul, the sailor",84636,124515,3 +147776,Count Myshkin,63958,80999,0 +147777,Schmieriak,9252,558819,5 +147778,Customs Officer Andrews,27917,11139,12 +147779,Waitress,83384,53281,11 +147780,Evgeniy,57809,582484,1 +147781,Sabine,49559,348101,8 +147782,Esther Stermer,128140,1161081,5 +147783,Pap,27986,1111256,10 +147784,Pfleger,94336,843448,11 +147785,Anna Luini,73869,147837,2 +147786,Jack,74430,109761,4 +147787,Harry Morgan,37954,81970,0 +147788,,265934,70633,3 +147789,Lover,83714,929947,9 +147790,,105584,1598645,6 +147791,Himself,111332,496,4 +147792,Casino Cocktail Waitress,71670,1394330,38 +147793,Molly,1819,11661,0 +147794,Blodgett,42216,190526,9 +147795,,314462,1245824,1 +147796,Perkins - the Butler,104427,544585,16 +147797,Diedre,43470,13978,6 +147798,Jake,186292,1763388,6 +147799,Elysse Dumar,382951,205176,6 +147800,Himself,413579,1072042,2 +147801,Ma Powers,17687,2018,6 +147802,Owen Daybright,43384,13784,0 +147803,Mark Christopher,224903,210128,4 +147804,Detective,127812,13558,37 +147805,Charlie Mills,246415,1439319,6 +147806,Colonel Helmut Bauer,354287,1538091,24 +147807,Himself,8847,56085,5 +147808,Himself,27637,1724706,51 +147809,Technical Adviser (Man who loses coat),4932,40210,22 +147810,Blonde Girl,50916,1421223,4 +147811,Phuchit - age 8,13436,1656872,9 +147812,Zebedee,16455,1327,0 +147813,Brodersen,11391,114718,7 +147814,Mort Springer (as Lawrence Tolan),72474,161650,6 +147815,Plumber,57866,590519,11 +147816,Wee Willie Winkle,121598,113693,12 +147817,Stark,51036,86006,9 +147818,Nellie Cohan,3087,30273,6 +147819,Nick Ferraro,33673,7685,6 +147820,Œufcoque Penteano,122662,456935,3 +147821,Hüsamettin,31405,77349,4 +147822,Juanito,44591,131055,3 +147823,Cesar Harker / Eric Harker,317168,993241,1 +147824,Fire Chief,45431,113068,17 +147825,Steve Heller,36691,31028,8 +147826,Monk Wu Ren,66756,83631,9 +147827,Tom,330947,90451,11 +147828,Pete,124054,1085088,9 +147829,DeeDee Brown,239566,4721,7 +147830,Herself,43514,65284,11 +147831,George Denham,40957,3151,1 +147832,Aunt Charlie,408272,59401,5 +147833,Poutulik (voice),233423,73610,4 +147834,Malin,289278,115926,2 +147835,Randy,72207,1745405,23 +147836,Inspector,61950,27392,2 +147837,Pig Farmer,413998,1894994,25 +147838,Dracula,13483,35029,10 +147839,Arthur Fairbrother,50761,15387,4 +147840,Sergeant Parker,27105,5048,3 +147841,Waiter,122271,1735912,13 +147842,Joshua Shapiro,187219,4512,0 +147843,Roberto,147590,213438,3 +147844,Dawn Sorenson,59738,191468,2 +147845,Massie Block,34482,1562503,0 +147846,Nadia,374614,153818,6 +147847,Ring / Stitch Girl,440777,1482685,17 +147848,,265351,1021444,8 +147849,Bouncer,13849,1086858,4 +147850,Conspirator Guard,246655,1547888,21 +147851,Sgt. Griffin,40217,185805,2 +147852,,73554,569514,1 +147853,Cliff Thorburn,377516,1304469,7 +147854,,268735,128741,4 +147855,Peppo Briggs,196789,47178,5 +147856,Jake Redman,269795,1706812,15 +147857,Georgie Herman,105551,34416,7 +147858,Gardener (uncredited),45800,89736,16 +147859,Snr Insp. Chan,37984,72732,8 +147860,Igor,252034,139459,2 +147861,Naima,74666,1703701,8 +147862,Inspector Stack,40146,24325,6 +147863,Rosita,436,5899,9 +147864,Mr. Mambutu,173914,521916,0 +147865,D'Arcy - Singer,67375,102075,20 +147866,(uncredited),80168,130496,16 +147867,"Onassis, il barista",77000,7541,1 +147868,Young Simon Templar,463906,1636818,14 +147869,Gail,30361,24695,4 +147870,C.Y. Sanford,96433,109772,10 +147871,Jesse Tilson,12767,73568,5 +147872,Queen Elizabeth I,11788,15735,0 +147873,Earl,456101,112053,3 +147874,Christopher 5-8 yrs old,246127,1260011,9 +147875,Paul McCartney,6575,70851,16 +147876,Ken,77930,66743,6 +147877,ältere Hippiefrau,75969,1902088,38 +147878,Fadela,2742,27812,5 +147879,Ramakant,310567,933160,1 +147880,Dr. Crowther,29398,5732,2 +147881,Peixeira,373397,1195286,14 +147882,Liddell,25551,81180,9 +147883,Himself,319073,1559453,5 +147884,Salinas,337879,572475,3 +147885,Ragetti,285,1711,14 +147886,,261538,224666,1 +147887,Rey,140607,1315036,0 +147888,Kayla's Sister / Emma,2080,92175,39 +147889,Riley,253277,90033,0 +147890,Frank Burnham,38432,45363,10 +147891,Thomas,197082,8789,1 +147892,Abel,17175,15757,2 +147893,Valya,142746,1117910,4 +147894,Nadia,19898,43202,3 +147895,Jasmine,104859,1037300,5 +147896,The aunt,66897,100033,4 +147897,M. Golden,58487,22306,1 +147898,Jérémie,82817,928933,4 +147899,El Zorro,43778,1349319,7 +147900,Stremov,96724,1411355,39 +147901,Saul Stermer,128140,1161082,6 +147902,Keihänen,32099,108859,12 +147903,Father Fogerty,55681,193677,6 +147904,Vilas Pandit,15761,284463,13 +147905,Reporter (uncredited),28000,1389140,34 +147906,Antxon Elorza 'El Profesor',33273,1117803,11 +147907,Lynn Hardy,53574,1200195,3 +147908,Jed (voice),14411,12080,10 +147909,Japanese Poet,370755,68973,7 +147910,Mrs O'Meara,35001,30552,6 +147911,Herself,383809,1581915,2 +147912,Streetcar Boy,9953,60886,7 +147913,Joe Daniels,25834,119169,4 +147914,"Anna Lappalainen (""Prinsessa"")",60678,236960,0 +147915,Ada Tildon,376501,10399,4 +147916,Gary Brown,87514,101429,6 +147917,William Dalten,8915,70445,9 +147918,Preacher,16997,1128269,10 +147919,Base Commander,245703,97446,29 +147920,Cop,76785,580629,7 +147921,Woman in Stagecoach,134238,144378,23 +147922,The Cook,3081,89101,12 +147923,Insp. Penbury,36335,100343,3 +147924,Jambi,60977,44809,5 +147925,Matsumoto,870,13250,1 +147926,Timo,20164,148353,10 +147927,Annie Dray,29362,51072,1 +147928,,259075,1192090,11 +147929,Mendes,294483,45972,4 +147930,Warden B.W. Oswald,178569,2101,5 +147931,Soledad (archive footage) (uncredited),140,73572,15 +147932,Father,31542,1757139,21 +147933,Burke,262841,7497,6 +147934,,86985,87909,7 +147935,Party Girl (uncredited),76011,31259,9 +147936,Theodore Roosevelt (uncredited),43499,12022,10 +147937,Diego,325690,88469,0 +147938,Herr Karl,259358,5512,4 +147939,Morrie,14422,14408,0 +147940,Aaron,91548,83978,12 +147941,Mr. Wyncoop,18530,14902,19 +147942,Andre,137683,1187107,9 +147943,Sgt. Lena Mae Riggi Basilone,189197,24291,10 +147944,Susan Allen,12912,1246,1 +147945,Saito,315837,75748,9 +147946,Accuretta Executive,38356,206334,22 +147947,Captain James T. Kirk,188927,62064,0 +147948,Captain Mills,77949,1182304,26 +147949,Mining Camp Boy,16320,61305,34 +147950,Wendy-Werbemutter,217412,1890753,24 +147951,Jimmy,286369,1352324,3 +147952,Scuzzi,48852,4521,10 +147953,Ice Kool,8382,62817,1 +147954,Gary,67748,1172848,21 +147955,Gus,239563,38951,17 +147956,Muriel Kiler,103432,153510,1 +147957,Narrator,84617,6599,0 +147958,"Myers, Bill (voice)",80089,85286,4 +147959,Gina,79506,33928,3 +147960,Jorge Villalobos,693,52957,10 +147961,"Daniel, Hollister's Advisor",53870,28004,8 +147962,Father Glaise,77728,14324,2 +147963,Tony,40208,45232,3 +147964,Fina Valdes,40826,124742,3 +147965,Fausse Kristin 4,382591,1795280,23 +147966,Angus Palmer,149793,141067,40 +147967,Old Teammate #1,193893,1381492,37 +147968,Augusto Moser,165159,41063,7 +147969,Kate,52859,1551024,32 +147970,Daniel,39982,5147,5 +147971,Shaukat Vashisth,21905,85881,0 +147972,Margo,38916,14668,2 +147973,Terrence,7288,1226471,15 +147974,Hiro Hamada (voice),177572,515510,1 +147975,Marcos,20941,1484103,10 +147976,Mitch,122192,47796,12 +147977,R.B. 'Bob' Pulsifer Jr.,84397,58093,3 +147978,Aunt Peggy,246011,12110,3 +147979,George 'Gusty' Gustafson,42191,19404,5 +147980,Midori Washio,30198,105818,1 +147981,Sam,109391,1086486,23 +147982,La journaliste,110160,61947,7 +147983,Marcelina,203217,1185619,1 +147984,Jaime Guillón,58587,24923,3 +147985,Boy Oliveros,46773,1201002,2 +147986,Ignace / Herve / Moussa / Basile / Sidiki / Arsene,203715,51636,2 +147987,Comic Book Store Jerk,45132,559457,21 +147988,Jerry Stokes,22404,7639,1 +147989,Brooke,358724,1584419,4 +147990,Maria,92465,994245,5 +147991,Moglie Carugato,169069,46547,10 +147992,Nascien,302026,1524215,5 +147993,Himself,34512,1570878,2 +147994,Bjorn,44680,131336,4 +147995,Marcus Green,24094,97468,33 +147996,Orderly (uncredited),16442,122978,43 +147997,,11534,71978,4 +147998,Flint Lockwood (voice),109451,19278,0 +147999,Miss Stevens (receptionist),35852,114834,5 +148000,Himself,151870,1165395,2 +148001,Henchman Blackie,285946,117675,12 +148002,Specialist Ennis Long,6973,51684,10 +148003,Mami Sekiguchi - Singer,52302,30564,1 +148004,Stacy Thompson,25132,52852,1 +148005,Josien Schippers,81600,592173,0 +148006,Emilia,74661,572283,0 +148007,Vincent,118293,585717,4 +148008,Frida Bluhm,51349,143978,10 +148009,Tatsuya Ishizuka,56232,228076,8 +148010,Annique Wilkes,68193,550520,3 +148011,Karen McCoy,2047,326,0 +148012,Scrooge McDuck,10837,21874,0 +148013,Dan Phillips,109424,37154,7 +148014,Marianna,359025,220573,4 +148015,Leila Hope,307081,1423519,3 +148016,Brewster's Maid,2567,1177460,57 +148017,Assistant Secretary,29610,1080265,14 +148018,Mimi,174487,502,3 +148019,Mutter,10311,49414,4 +148020,Gerta Rauss,7326,52457,8 +148021,Ilona,197849,539775,2 +148022,Melissa Norman,10055,56734,2 +148023,Tom Williams,334890,1695142,6 +148024,Kartar,160261,931768,6 +148025,Soldat 2,613,1151383,40 +148026,Stupid EMT,312174,1400595,8 +148027,Captain Michael Howard,47412,138888,5 +148028,Parent,38322,1869052,49 +148029,Tada Cuda,26517,95603,1 +148030,Bunny Fan 1 (voice),9502,1448990,23 +148031,Officer Washington,253851,552139,6 +148032,Shadow 3,270759,232824,6 +148033,Charlie's Friend,85350,1467925,38 +148034,Lutetia Receptionist,11012,19081,22 +148035,Jean,81220,1346157,3 +148036,Julie,36375,88975,5 +148037,Grandpa Mordecai Tarleton,351365,6462,3 +148038,,115427,125402,8 +148039,Osnat 'Ossi' Wolf,74666,19942,3 +148040,Narrator (voice),77859,55663,4 +148041,,325039,31639,3 +148042,Nonna di Andrea,195544,67141,8 +148043,Lily,32091,108826,7 +148044,Warehouse Realtor,4960,126713,14 +148045,Tania,18514,145362,4 +148046,Elliot,23628,90394,0 +148047,Karine,271826,559581,7 +148048,,11196,1150553,20 +148049,Beaumont,48838,19704,18 +148050,Mao Zedong,25626,560190,5 +148051,Ellen,209263,558917,12 +148052,Jordan,43811,96257,42 +148053,Ellie Phimister / Negasonic Teenage Warhead,293660,1492326,6 +148054,Mme. Moutiers,26810,5318,7 +148055,Paige,393172,1323878,3 +148056,John L. 'Johnnie' Smith,50079,34293,3 +148057,Dominic Toretto,337339,12835,0 +148058,Zachary Gray,126934,49623,3 +148059,Martha,5899,27882,1 +148060,Young Boax (voice),59297,1443203,8 +148061,Creel,15794,4074,11 +148062,Inmate 346,94365,29861,5 +148063,Frank,134201,1223813,7 +148064,Kyungjin / Yejeon,85525,138505,4 +148065,Evelyn Hill,166221,6929,8 +148066,Alumni,417820,1854493,10 +148067,Ángela Vidal,8329,34793,0 +148068,Tomík,6079,47835,9 +148069,,186971,1605810,27 +148070,Welcome to the 60's Dancer,2976,1752797,139 +148071,"Paola, figlia di Antonio (episodio Il Cavalluccio Svedese)",68882,1159526,13 +148072,,438012,1747321,2 +148073,Kid-William Harrison,334527,1865503,21 +148074,4th Old Lady at Seance,81120,1411472,22 +148075,Gladys Harley,262528,258715,2 +148076,Taylor,416256,1680200,4 +148077,Shelby,10476,132078,5 +148078,Mihoshi,14829,112138,9 +148079,Arresting Officer,19587,131946,6 +148080,Jehovah's Witness,328589,55465,7 +148081,Sarah Brown,111479,1223453,15 +148082,Steven,82519,40259,5 +148083,Second Pharisee (uncredited),3059,1269185,90 +148084,Pete Marchettis,19335,18646,5 +148085,Detective Brian Larson,9785,540,4 +148086,Mitch,36251,189896,10 +148087,Scott,71670,207396,1 +148088,Owney Price,37301,18870,10 +148089,Pharmacist,436,5905,12 +148090,Student,49521,1371141,30 +148091,Gabriel,414453,28042,3 +148092,Sam,256962,15854,7 +148093,Vicente,63615,16441,0 +148094,Robert Manners,36786,116560,7 +148095,Robert Bonting,29094,99461,3 +148096,Laura,34840,23671,4 +148097,Dodge Petersen,88005,4495,0 +148098,Tucker,936,14263,5 +148099,The County Sheriff,924,11161,16 +148100,Ivan #2,91070,1224681,14 +148101,Dr. Rameau,31324,29661,4 +148102,Justin,9655,58368,6 +148103,Larry Fenwick,142216,1176787,23 +148104,le peintre de la place du Tertre,54832,11187,9 +148105,Tillotson Henchman,138486,4078,5 +148106,The Tod (voice),30060,79357,2 +148107,Giuseppe Mazzini,56853,72782,15 +148108,Mark King,193610,12795,4 +148109,Boris,243683,120323,19 +148110,La nounou,283726,1690042,7 +148111,Gandalf,1361,6593,3 +148112,Dr. Huber,290911,19575,4 +148113,Newmann,110525,2497,7 +148114,Stab,239845,1274943,4 +148115,Bal-Re,43987,84786,2 +148116,Ned Fouler,250275,149484,2 +148117,Master Chao Chi-Chih,11537,118745,5 +148118,Schneewittchen,9803,16718,8 +148119,An Chen,1899,78870,1 +148120,Maximilian Van Devere,42216,6599,2 +148121,Mrs. Roxanne MacDonald,20521,1596767,14 +148122,Hassan,28417,100743,0 +148123,"Captain, le Commandant",86727,24421,0 +148124,Jason Tripp,68720,5832,5 +148125,Herself,81538,1156402,3 +148126,Escribano Andretta,25376,1331806,20 +148127,Waitress,13436,1656890,29 +148128,Kramer,93263,12518,1 +148129,Bardsley,31324,117199,9 +148130,Dr Jameson,69784,2435,3 +148131,Major puri,101783,932822,9 +148132,Paul,297265,1221459,14 +148133,Emma Marsh,142402,968006,4 +148134,Samson / Samson's Killer,64983,16927,1 +148135,Newscaster,47057,13314,8 +148136,Dancer,170517,1745603,26 +148137,Writer,31273,107873,20 +148138,Betty,99324,86346,4 +148139,Morishima Kyoju,17895,82969,4 +148140,Threatening Cairo Vendor,246655,1796399,45 +148141,Wise Fish,13285,65799,7 +148142,Aldrich Killian / The Mandarin,68721,529,3 +148143,Stu,209244,1068811,11 +148144,Professor Durant,23096,141242,10 +148145,Dean,1420,17024,10 +148146,Bernadette,310888,1560230,4 +148147,Ha Seong-sik,108972,141857,4 +148148,Scotty MacDougall,34651,82835,6 +148149,"Nekichi Futori, the chained son",50696,76975,0 +148150,Ellie,30361,12812,1 +148151,Derek O'Grady,15616,65769,10 +148152,Elliot Shephard,266741,37041,1 +148153,Aristides Katoppo,39061,1028467,2 +148154,Mildred Eldridge,59189,5052,5 +148155,,22752,1281232,16 +148156,CAOC Analyst,1726,1209714,62 +148157,Ellen,48836,141182,4 +148158,Jack Bolton,10947,94146,6 +148159,Blog Girl,320588,1267375,18 +148160,The Beast (voice),29058,1466913,6 +148161,Alex,279690,1336329,4 +148162,Holly Simmons,86186,168542,6 +148163,Mark Baker,11007,60393,10 +148164,Harry Wood,79521,87697,6 +148165,JVC Saxophonist (uncredited),244786,1503855,47 +148166,Marlène,408024,136761,2 +148167,Richard,222388,1326244,13 +148168,Emergency Doctor,42293,70887,5 +148169,Detective Chewing Gum,37992,22093,8 +148170,Hong Kong Officer (uncredited),284052,1785921,52 +148171,Junkie,215881,1588229,13 +148172,Hanák Eszter,13616,563861,6 +148173,Romolo,28000,2770,4 +148174,Saverio Tambasco,56853,124754,8 +148175,Dad with Newspaper,381518,147255,23 +148176,Gina,61113,42324,2 +148177,Sister Hannah,72648,1646191,8 +148178,Opal Ann,28303,21459,3 +148179,Rasheeda,340275,1531582,7 +148180,Amhad Beg - Prime Minister,184267,9091,12 +148181,Detective Kalkowitz,224282,11512,3 +148182,Tom,8888,1047052,6 +148183,,155597,36934,11 +148184,Edward Bell Wilson,1247,1892,0 +148185,La psychologue du Raid,382597,54168,7 +148186,Michael Reed,23830,65731,1 +148187,Himself,15258,1224119,105 +148188,Heather,266433,1010054,8 +148189,Pa Wilder,16890,121718,8 +148190,Javier Cordero,15156,96320,5 +148191,China,374473,1766059,6 +148192,Orville,21030,2222,1 +148193,Юлия Николаевна Туполева,419601,549586,4 +148194,Allan 'Chad' Chadwick,31445,2438,1 +148195,Goliath - a Stagehand,53419,21303,0 +148196,Raul Lono,146926,195751,9 +148197,David Kellum,24331,5892,0 +148198,Janet Hill,5965,46924,12 +148199,The Baron,1904,11398,11 +148200,Arthur A. Straus,35921,18647,3 +148201,Count Poniatowski,229134,22479,2 +148202,Guan Dao (Dragon Gang Head),17467,1415225,12 +148203,Duke of Clarence,15163,13014,8 +148204,Dilsey,287636,18284,9 +148205,Ship Computer Voice (voice),70981,1390388,25 +148206,Guard,323675,1690514,42 +148207,Death Row Guard,26376,34294,33 +148208,Ralph Dillard,182228,655,0 +148209,Barney Hill,86598,15152,0 +148210,Hon Sam,11647,26724,1 +148211,Paul mit 8 Jahren,12696,74007,9 +148212,Melanie Tolman,43049,21876,2 +148213,Det. Insp. Jackson,19846,80267,3 +148214,Jay Follet,122698,40202,1 +148215,Emma Blakemore,300187,117995,4 +148216,Melora,13551,4726,6 +148217,Leonard,84105,1366370,21 +148218,Yolanda Vega,50318,565447,20 +148219,Eddie The Mime,246133,1034681,2 +148220,Andy,120802,19302,0 +148221,Hairless Hamster Henchman (voice),116977,154106,20 +148222,Beans (Voice),44896,52848,1 +148223,Steven Warren,101320,58293,2 +148224,Nazmiye Demirel,52150,575460,5 +148225,Chazz (Date 3),405473,1800031,25 +148226,Lanie,47194,141038,9 +148227,Arai,32690,131021,6 +148228,Patti,91070,71402,6 +148229,Nurse,13442,1661019,8 +148230,troubadour,55495,1261199,3 +148231,Tree,25111,87152,3 +148232,ADG (Law and Order) Kapoor,33460,110709,5 +148233,King Ferdinand,16638,89064,6 +148234,Vicky,11553,21911,0 +148235,1999 Prime Minister Machiko Tsuge,12636,30564,5 +148236,Charley,24078,16431,3 +148237,Dante,56725,16119,2 +148238,Blockhead,10257,64440,8 +148239,David Haddad,246422,129765,14 +148240,Melanie,173499,19910,0 +148241,,378435,133818,1 +148242,"Francesco detto ""Mariolino""",315319,1880534,17 +148243,Kindly Old Lady,10918,134906,26 +148244,Chip Daniel,142115,1183781,0 +148245,,169343,1151395,3 +148246,Tabala Zo,140607,1709053,39 +148247,Noelle,2125,6720,2 +148248,John Ashwood II as a Boy,52440,7505,2 +148249,Metro Policeman,383538,1635222,11 +148250,Rich,26679,140903,10 +148251,,256356,21181,1 +148252,Shina Sakaguchi,264393,150296,3 +148253,Kōji Tanaka (voice),357390,1096528,4 +148254,Missy Armitage,419430,2229,3 +148255,Phillippa 'Flip' Gayley,61151,1103870,9 +148256,Comte de la Blache,68023,82793,9 +148257,Frank Jessup,1938,10158,0 +148258,,220005,1204945,6 +148259,Web Bomb! Host,279096,1840816,40 +148260,Gladys 'Ma' Grissom,79645,179383,7 +148261,Leper at Death Valley,199463,557052,2 +148262,Col. Ben Wilder,45302,8655,3 +148263,Mohammed Ali Paula Abdul Rahim,19187,16214,3 +148264,Judge,335498,30215,10 +148265,Katherine Garrison Geary,36334,37445,8 +148266,Grandfather,341490,22228,10 +148267,,14210,1000983,8 +148268,Chefin,11373,4635,2 +148269,Jessie Aarons,115626,63107,7 +148270,Fleeing Suspect (as James Ha Chim Si),69727,556938,1 +148271,Gus Miller,51476,56924,5 +148272,Caroline,42599,1163674,9 +148273,Chicken Chaser at Barbecue,22020,45105,16 +148274,Frank,169298,11160,0 +148275,Lil' JB,2179,55673,9 +148276,Ralph Hargrove,47003,9923,2 +148277,Mónica,140,101,10 +148278,,265351,146443,3 +148279,Joe Martinez,128795,56449,1 +148280,himself,24479,7187,1 +148281,Tommy,24363,21028,2 +148282,Honma,37939,1309327,8 +148283,Angelo,56853,129875,2 +148284,Mia,4955,3762,4 +148285,voice,86700,933510,3 +148286,Lady Elaine Strong,37581,9071,2 +148287,Athena,33009,34070,12 +148288,Mother at Market,1271,1330755,50 +148289,Professor Iwamoto,418029,30568,6 +148290,Commercial Actor #3,193893,1381721,67 +148291,Silvio,273481,1018947,11 +148292,Lucy Gatlin,440777,1484694,32 +148293,"Un client chic de ""L'ange Gabriel""",68822,1322980,20 +148294,Hannah,226140,61911,14 +148295,Emil Landauer,16436,48087,6 +148296,Captain Joe,113119,228532,2 +148297,Ramona Ryerdon,48136,87519,5 +148298,Nagase,127560,9195,25 +148299,Tammy Larsen,19286,86922,2 +148300,Ilie Moromete,32601,557862,0 +148301,Mr. Nixon,65650,51930,7 +148302,Zia Ernestina,59040,128474,6 +148303,Bill the Water Truck Driver,28739,31268,9 +148304,Chris Marino,55294,55494,2 +148305,Spectator in Alley - Murder Scene,14589,1417927,58 +148306,Rivero,40826,124745,6 +148307,Claire,173662,109407,4 +148308,,241982,204676,3 +148309,Agatha,64948,240099,2 +148310,Chen Shen,362178,1549530,1 +148311,,105703,1609496,4 +148312,Mabel,24163,1593277,5 +148313,Jackson,10999,156869,11 +148314,Drive-in guard #1,9080,1223,13 +148315,Telephone Informer / Friend at Barney's,171446,116307,25 +148316,Noah,424661,1683718,10 +148317,Himself,145220,138986,37 +148318,Penelope,157919,530,2 +148319,Pugazhendhi's Mother,66526,545011,9 +148320,James Hammett,49500,20056,0 +148321,Taylor,834,12372,14 +148322,Hamlet,8010,53591,8 +148323,Big Don,50318,1411813,19 +148324,Tony Washington,31385,116147,1 +148325,Barto,13788,132213,5 +148326,Elisabeth Vogel,117550,1056322,0 +148327,Nisse Pettersson,154671,79256,3 +148328,Karen Cooper,50364,47646,0 +148329,Officer James,381015,1510492,8 +148330,Marisa Di Giovanni,56369,5790,1 +148331,Greg's Date (Pretty Girl in Car),270303,558930,14 +148332,Colonel Charles Poletti,59230,14830,3 +148333,Fighter,71120,1872244,20 +148334,Herself - Model,327083,1248825,18 +148335,Second Record Executive,258509,1390021,17 +148336,Zoe,286521,1186840,7 +148337,Shelley,14531,1240144,7 +148338,Steve Trevor,161620,102640,1 +148339,Walker,23107,133277,15 +148340,Judge Coughlin,243568,175317,12 +148341,Goonda,20364,1101394,13 +148342,Colonel Kota,28263,1202801,6 +148343,Paavo Luuki,264061,85490,4 +148344,Tess,329819,1363549,5 +148345,Claudia Pazzo,48609,2051,5 +148346,Hospital Visitor,277710,1476066,38 +148347,Nestor,9703,10727,5 +148348,Billie,54491,92525,8 +148349,,327237,45754,3 +148350,Rosemary,254188,304282,3 +148351,Ivan,70966,559988,0 +148352,Young Lisa,80219,27578,5 +148353,Neurologin,14804,1901793,15 +148354,Melinda,84348,1090696,27 +148355,Stationary Saleswoman,4413,28030,30 +148356,Marta Rýdlová,80094,588796,2 +148357,Reaver (uncredited),263115,1454299,97 +148358,Tai Lung (voice),9502,6972,9 +148359,Shelly,91391,61102,2 +148360,Porter,186227,984873,10 +148361,Kostas Dounas,9779,59177,9 +148362,Billy The Kid,42402,3636,0 +148363,Linda Workman,371446,6944,2 +148364,Atlanta Cop (uncredited),339403,1634622,43 +148365,Vance Evans,13649,233298,11 +148366,Fake Santa #4 (voice),312100,1219677,13 +148367,WPC Boyle,250535,586286,9 +148368,Marble game player,269173,1388891,15 +148369,Narrator,24479,1979,0 +148370,Winnetou,3686,33543,1 +148371,Epione,297762,62976,22 +148372,Alden,32139,6717,0 +148373,Akram,15761,1637729,9 +148374,Himself,15258,1539,56 +148375,Bar Buddy,49521,1235591,31 +148376,Herself,329690,46393,1 +148377,T.R. Polk,17745,588,14 +148378,Borstal Girl 1,62728,570323,17 +148379,Carla's Family #1,2143,132897,19 +148380,Claudia Leith,9846,1177733,14 +148381,Party Guest,32489,1191818,16 +148382,Himself,191502,8984,15 +148383,Forensics Guy,146233,52490,17 +148384,Barbara Collier,24150,20011,16 +148385,Bradford,146926,64198,4 +148386,Liz Wirth,14554,12309,2 +148387,Sarah,35656,1557630,6 +148388,Gordon,68202,2224,1 +148389,Second Man,74629,3982,9 +148390,Mustafa,139272,1110446,2 +148391,Ispettore Capo Ministero,107052,9920,1 +148392,Pepper Spray Vendor,4538,1797590,19 +148393,Agamemnon (voice),82703,9657,20 +148394,Jack McCallister,291164,5950,1 +148395,Jo Jones,100910,30003,0 +148396,Emanuelle,28682,41127,0 +148397,Sachiko,48341,552553,2 +148398,Gunner,1724,180996,49 +148399,Joe,222890,73035,0 +148400,Jack,33102,32029,0 +148401,Mother,16659,77561,9 +148402,Dr. Juliet Bryce,312497,44151,4 +148403,Himself,55027,225220,3 +148404,Dancer (Red's),57201,1760471,46 +148405,Joe Sullivan,266433,88269,3 +148406,Maggie Adams,197737,95314,1 +148407,Suited Man,297762,1040480,53 +148408,Remy,33314,1814491,10 +148409,J,252746,5825,2 +148410,Hillsman,144229,14905,8 +148411,Luísa,83897,930827,2 +148412,Communication SEAL Perry,193756,1283054,33 +148413,Nina Kirova - sociologist,19757,544260,2 +148414,Vater,53364,7828,8 +148415,Stacy,40034,102453,9 +148416,Dr. Jack Benning,17657,126903,13 +148417,Lawyer,123634,1078407,5 +148418,Jimmie Zara,11887,113868,9 +148419,Felice Stuart,45679,68088,1 +148420,Mister,158908,1070339,0 +148421,Himself,16800,14942,15 +148422,Perfect Being (voice),218784,6818,16 +148423,Helen Paige,84720,233325,1 +148424,Ernie,147722,98001,12 +148425,Cheerleader (1989),16996,1448031,44 +148426,Sjors,19398,1469190,20 +148427,Bertha Beetle,62670,8212,3 +148428,Gimli & Treebeard (Voice),122,655,5 +148429,François,27053,11544,0 +148430,Groundskeeper,127585,1240748,31 +148431,Terence Fletcher,244786,18999,1 +148432,Cleo,365753,1485331,5 +148433,Dr. Bauer,40785,1068313,6 +148434,Caetano,49961,143139,2 +148435,Student,56558,1550963,29 +148436,The Musician,42553,99464,3 +148437,Pottsy,36373,7685,5 +148438,Mrs. Lowry,9664,58432,12 +148439,Scotty,52736,80245,0 +148440,Jenny Hill,151062,31140,0 +148441,First Aunt,31532,83237,6 +148442,Hotel Patron (uncredited),331313,1767231,53 +148443,Joel,122698,932374,4 +148444,Ronny,43923,1719593,20 +148445,Technical Adviser (Meat Eater),4932,104036,30 +148446,Dorian,222339,72863,4 +148447,The Debutante's Mother,414977,64245,25 +148448,The Homeless,56596,74387,11 +148449,Hurla,7234,52130,10 +148450,,42501,1849690,10 +148451,Nicodemus,235260,10701,6 +148452,Nightclub Waiter,26376,120703,67 +148453,Deenu Chacha,341007,1241613,4 +148454,Pierre,352719,22099,13 +148455,Ippei Tamaki,143946,128023,3 +148456,Prof. Dr. Baum,12206,71648,1 +148457,Jack Foster,9914,23880,0 +148458,Supply Sergeant,72638,3262,34 +148459,Mitja,33481,110757,4 +148460,Talk Show Host,1415,32600,11 +148461,Henry's Wife,96702,34749,6 +148462,Jack,24199,91347,4 +148463,Helen Ditmar,112558,10539,1 +148464,Maurice Spender,49876,29427,5 +148465,Mike Markkula,115782,20212,1 +148466,"Marie Mazel, son épouse",84875,94950,4 +148467,Vandenmeer,39195,81799,3 +148468,"Tokyo, Merrick's Gardener",126418,97008,7 +148469,Father of Little Girl,186227,29601,29 +148470,Dr. Albert Marconi,75761,6574,3 +148471,Jim Wilson,64456,95563,7 +148472,Bar Patron,360592,1512198,24 +148473,Violinist (as Sergio Garcia),319910,1717813,18 +148474,L'inspecteur,53179,18767,6 +148475,Amos Hart,57684,33178,10 +148476,kunimasa Yasuda,51549,13283,2 +148477,Marjorie Tait,40916,108432,8 +148478,Jorge,229559,34021,1 +148479,French General,81110,1535461,14 +148480,Thor,63736,240945,0 +148481,Frederica Burkhardt,37468,117738,2 +148482,Vance,146216,1015568,22 +148483,Otto,24657,3857,2 +148484,Camille,20107,61178,4 +148485,Betty,123109,51975,8 +148486,Freez,1415,32599,10 +148487,Uncle Morris,26469,2141,5 +148488,Hipster Girl,320588,1402320,27 +148489,Sweetman,16182,27822,4 +148490,Audrey Bennett,19901,79966,3 +148491,Maria da Luz,82968,71283,3 +148492,Лев Николаевич Толстой,83456,23442,6 +148493,Courtney,84577,520615,7 +148494,Marge Dennison,31605,26483,1 +148495,Boy,227306,1394440,43 +148496,Cecilia,68202,1745065,4 +148497,Mary,19587,56757,2 +148498,Woman being chased through the woods,18731,122815,18 +148499,Senator Norman Grant,266314,16896,1 +148500,Amitrano,107052,23734,4 +148501,(uncredited),29259,3517,12 +148502,Nurse Wilson,228205,1549537,14 +148503,Julie,55376,222272,13 +148504,Hillary,239562,20189,3 +148505,Direktor Konservatorium,14804,1901787,11 +148506,Jack Poynt,45302,44222,0 +148507,San Francisco Editor,28712,12022,6 +148508,The Seeker / Lacey,72710,9824,1 +148509,Matty Newton,13788,66646,7 +148510,Plumber / Conrad,204839,104926,11 +148511,Harpy,83995,930411,14 +148512,,18893,85,22 +148513,Guard,310135,229561,20 +148514,,124597,1589755,27 +148515,Rochelle,71668,1827266,19 +148516,Will Morgan,87060,93578,24 +148517,Ben,112961,18473,2 +148518,Susan Mandeville,64972,2713,2 +148519,Nora Charles,14589,13577,1 +148520,Reporter 3,27450,1759713,20 +148521,Matheson,13836,16857,8 +148522,Alida De Bronkhart,46014,97777,2 +148523,Gabriel 3 Months,227156,1412929,12 +148524,Charlie,135652,92617,3 +148525,,57458,1581036,7 +148526,Suzu,64784,554513,3 +148527,Frank Wagner,141267,92404,1 +148528,Cop #2,354979,1636791,58 +148529,Lindsey,241258,23229,3 +148530,Principal Karl Verge,68684,31837,3 +148531,Young Elena,345924,135267,8 +148532,Joe,17820,1238069,10 +148533,Kid Saying Fight,256962,1819141,70 +148534,Masashi,38010,105403,1 +148535,Butch,75880,590536,12 +148536,Roman Bulkin,4551,162172,23 +148537,Himself,23524,90803,4 +148538,Moers,452142,47712,4 +148539,Leni,58251,53938,3 +148540,Encarna,127864,16971,0 +148541,Urija,2734,27643,18 +148542,Nick,54093,103351,6 +148543,Monique Meijer,44115,142185,11 +148544,James Harrison,12645,9880,3 +148545,Fussel / Andreas,400552,7805,2 +148546,Tennessee Faris,126889,62862,3 +148547,Pipsa,164419,143506,3 +148548,le troisième marin,61109,8521,7 +148549,Martha,43470,9073,8 +148550,Farmer's Wife,27966,130092,49 +148551,Norman Foster,6145,21882,8 +148552,Nurse,46190,88318,14 +148553,Jeanette,27196,29796,3 +148554,Flughafenpersonal,2204,22616,6 +148555,David,8998,11355,1 +148556,(voice),28090,44054,51 +148557,Jackie Logan,51212,15200,1 +148558,Woo-Hyung,64882,531736,10 +148559,Gabriel (voice),50126,1692490,2 +148560,Tom Sawyer,74705,270894,0 +148561,Waitress (uncredited),37628,1514445,27 +148562,Romeo,43880,10802,3 +148563,Francois,290370,227047,8 +148564,Herself,36944,116519,1 +148565,Editor (as Sidney Bracy),31411,80546,3 +148566,Cowboy in Saloon (uncredited),75315,117677,17 +148567,Ferb Fletcher (voice),71689,25663,1 +148568,Woman Giving Birth,259694,208664,22 +148569,Emil Hatchew,34729,62715,4 +148570,Elder,47410,138885,17 +148571,Czarek,200796,83266,0 +148572,Tiger,31473,6844,1 +148573,Guitarist (as LJ Klink),313922,1732065,14 +148574,Red Crocker,176867,3341,8 +148575,Bystander #2,10362,163794,10 +148576,Susan Watkins,83,644,0 +148577,Gustavo,51836,60601,4 +148578,Eléonore,77338,1632523,15 +148579,Angry Hombre #1,111479,1041480,47 +148580,Zale Ring Announcer (uncredited),28000,34423,94 +148581,Kwong,42552,62311,1 +148582,Whitey Bimstein,28000,110940,8 +148583,"Cindy Consuelo, Party Girl",25633,94034,13 +148584,Derek Sommers,318922,120560,4 +148585,Mrs. Taylor,18843,169462,15 +148586,Bill King,96107,18803,4 +148587,Donald,328589,55471,13 +148588,,317246,7372,6 +148589,Takuya Nishikawa,18722,553427,12 +148590,Gretta James,198277,116,1 +148591,Fang Ying,63441,1140990,4 +148592,Tea Lady (uncredited),284052,1785933,66 +148593,Sidney Gill,91607,89750,4 +148594,Richis,1427,4566,14 +148595,Parrot (voice),79853,236836,2 +148596,,278738,1335495,4 +148597,Petra,53256,25432,5 +148598,Elisabeth von Österreich,3478,6250,1 +148599,Little League Annoucer's Grandma,232672,1570863,27 +148600,Big Justin,313922,59297,6 +148601,Zeuge Lauterbach,421958,65054,6 +148602,Rebecca Buchwald,22051,27563,3 +148603,Principal,43967,81859,22 +148604,Shiva,121598,108216,4 +148605,Joyce Arden,106635,3380,1 +148606,Cockerell,2309,23776,7 +148607,Nora,79995,6974,2 +148608,Angie Kramer,228028,1009885,14 +148609,Laowang,68063,74540,8 +148610,Firefighter (uncredited),6972,1673483,44 +148611,Gitsy,1415,2838,2 +148612,Mr. Harrington (voice),1267,1077827,8 +148613,Chad,176124,1521370,9 +148614,Ainsley,11908,26852,11 +148615,,60014,1600190,16 +148616,Oak Room Waiter,258480,119225,31 +148617,Dan Legget,28663,88462,1 +148618,Sergei,118737,77821,3 +148619,Linda (voice),159824,52119,10 +148620,Arthur Relph,25143,88392,5 +148621,Jake Kilrain (uncredited),43522,84229,68 +148622,Jill,305342,1181314,7 +148623,Tania,257454,1060370,9 +148624,Brunette Woman,383538,1376003,20 +148625,Professor Clark,239018,1063013,6 +148626,Princess Elizabeth,46758,1605328,10 +148627,Виктор Марьянович Рябушкин,31059,29832,2 +148628,Carla,8556,55346,1 +148629,Felipe,296288,1689172,0 +148630,Gerald,85564,58000,4 +148631,Helenka Vránová,36919,11684,1 +148632,Le reporter à la Mela,352025,1784148,11 +148633,Shin Hayata,418029,129509,2 +148634,Annuanciata,65131,99264,3 +148635,Milan Agustin,32604,1315003,5 +148636,Hit Driver,55825,114334,5 +148637,Sheila O'Monahan,225499,13991,0 +148638,Dr. Zeitman,63333,12157,3 +148639,Cobb,39779,4093,5 +148640,Лёша,253192,86860,0 +148641,Cobra,171759,18702,4 +148642,Mala,103236,35743,1 +148643,Fred Nickells,28535,35516,1 +148644,Mili,18352,1537581,5 +148645,Hikon (as Gene Peterson),238985,1821049,14 +148646,Leena,20164,148350,8 +148647,Thelma Cleland,23096,16217,5 +148648,Glader,198663,1415423,26 +148649,Mohawk Priest,68097,83912,12 +148650,Karin Bjørge,55612,82753,2 +148651,Divorce Judge,52437,80569,6 +148652,Mahogany,3554,32715,0 +148653,Asian Translator,13483,1674492,16 +148654,Lui-Même,2786,26959,7 +148655,"Marco Muha, a friend of Kondrat Perepelitsa, postman",174720,560102,2 +148656,Don Paolo Conti,83782,18340,2 +148657,Himself,42093,12150,1 +148658,Cadaver,444193,7073,5 +148659,Sharpay Evans,13649,67600,2 +148660,Prisoner (uncredited),28000,26028,81 +148661,Ali,55283,215912,1 +148662,Mother,338189,136761,2 +148663,,175924,3977,8 +148664,Young Girl at Bus Station,23385,543261,6 +148665,Bob,56191,550910,6 +148666,G.I.,19338,1330572,29 +148667,Waitress,21431,25555,2 +148668,Ellen Pinsky,47863,139542,1 +148669,Alcalde Fernando Castillo,80717,590883,9 +148670,Crewman (as James),49837,142895,9 +148671,Gardien 1,59118,1581129,23 +148672,Mr. Potato Head (voice),10193,7167,9 +148673,Susan Heller,204839,44151,1 +148674,Locksmith Customer,64685,1601831,20 +148675,Clark Kent / Superman,142061,136530,4 +148676,Shoji Tsutsumoto,25716,1029220,9 +148677,Dr. Wang,10071,62834,11 +148678,Rocky,2195,23171,2 +148679,Miss 'Toddy' Todd,44087,93167,2 +148680,Agent Epstein,301729,555945,9 +148681,,352197,46392,9 +148682,Tetsuya Yoshioka,162006,121797,3 +148683,Victor,245891,187857,15 +148684,Marius,64968,1018784,1 +148685,Kimie Fujisaki,139692,33729,3 +148686,,154442,1564893,10 +148687,Joe Loop,4551,7866,6 +148688,Miss Dallas O'Mara,98536,3380,3 +148689,Austin,323370,52801,3 +148690,The Ghost,316042,1574443,9 +148691,Mom,312174,1400591,2 +148692,Silvio's Wife,273481,1554976,14 +148693,Szymek Pałta,168819,66460,6 +148694,Chantal Ricardi,79836,1075761,6 +148695,Chloe,210047,59860,0 +148696,Johnny,398786,1296632,4 +148697,Maid,44303,1195237,4 +148698,Makiko,14525,79456,2 +148699,Harry Faversham - age 10,104485,1197526,9 +148700,emigrato italiano da Gela,61799,103627,4 +148701,Lisa,137093,131934,10 +148702,Onorevole Limongi,43200,1135594,8 +148703,Philip Krauss,407448,93491,1 +148704,Mr. Tenet,58244,81427,12 +148705,Alice,337104,114843,3 +148706,"Mr. Novak, Hotel Manager",15788,78778,1 +148707,Abby,169800,1152024,6 +148708,,77057,106165,18 +148709,Seki,43113,87544,25 +148710,Agent Stan Mitchell,302699,27031,17 +148711,ChubbChubbs (voice),27042,96998,1 +148712,The Archbishop,10235,593091,4 +148713,Robert,93676,1782151,17 +148714,Nicola,27409,97684,0 +148715,Eleanor,414453,7489,2 +148716,Edward,67375,83993,35 +148717,Karol,143240,32696,4 +148718,Mary,25707,47742,4 +148719,Dr. Martinez,339116,98844,7 +148720,,105352,1422736,4 +148721,Sam,330011,1376611,2 +148722,Tommy,114444,1068699,1 +148723,Tracy,88641,11521,6 +148724,Leo 'Butcher' Bremer,43046,93664,3 +148725,Dr. Salomon,10311,9932,7 +148726,Acrobatic Cheerleader (uncredited),80032,38129,12 +148727,Dan,183825,144387,52 +148728,Diretora,70666,54977,9 +148729,Troy Nixon,32694,120560,27 +148730,Jack Ward,68737,1392952,29 +148731,"Mother (segment ""Kurokami"")",30959,142492,4 +148732,Stan Jalard,72655,3829,0 +148733,Young Old Maid,202941,1198577,10 +148734,Olson,27085,1214791,7 +148735,Bulma,14164,4730,4 +148736,Buddha (voice),149910,1280881,11 +148737,,340961,14814,2 +148738,Simone,76642,144740,10 +148739,Alexander Bumstead,3941,30223,2 +148740,Mick,83995,936,13 +148741,Officer Gene,20055,1457264,8 +148742,Jack Ruskin,281215,11786,11 +148743,,99599,143036,6 +148744,Guidatore del camioncino,10986,1402877,11 +148745,Breiser,248933,48087,5 +148746,Frau Wiegelmann,61035,33682,10 +148747,Archie,122081,224228,5 +148748,Garrett Schweck,17926,26473,7 +148749,Joydeb,35790,1832102,10 +148750,Madame,122857,1149783,17 +148751,Trooper (as Brad Williams),11509,60677,6 +148752,Stanislas,380731,85412,4 +148753,Officer Crypants,312174,1400588,6 +148754,Waitress #1,126516,1203800,12 +148755,Monica,412209,977993,11 +148756,Ruhaana's Mother,275269,1245859,9 +148757,Stacie Kanares,171594,78052,1 +148758,Hob Danvers,120615,70985,0 +148759,Buck,411741,1862554,11 +148760,Jenny Bunn,194817,36819,1 +148761,Mrs. Thomas,9352,57402,15 +148762,Jan,147360,47163,10 +148763,Fist Baby,287281,1256748,8 +148764,Sarah Connor,65595,2713,1 +148765,Officer Jones,367732,1537758,16 +148766,Uncle,300654,49271,2 +148767,Police Officer,53882,148643,8 +148768,Philip Cohen,369697,3968,2 +148769,Jun Saito,391642,929358,11 +148770,Helena Davis,71503,179415,24 +148771,Leonardo DiCaprio,253533,589654,7 +148772,Ami de Philippe,77338,224148,12 +148773,Slade,43205,14371,1 +148774,Arashi,104251,81108,2 +148775,Kris (voice),28275,27726,3 +148776,Jack Newsome,264644,1277188,1 +148777,Akhnaton,24973,20392,5 +148778,Campagnolo,10986,118499,9 +148779,Corsican,266285,37758,3 +148780,Takako,50247,143367,7 +148781,The Lorax / The Once-ler (voice),38060,33482,1 +148782,Ted Riley,17640,13294,0 +148783,Hannah,11509,2165,18 +148784,Cheerleader (voice),810,205030,38 +148785,Herself,414749,1229932,10 +148786,Commanding officer,32921,3364,7 +148787,Young Yoni,112130,67778,4 +148788,The Hooker,86838,1170656,21 +148789,Elliot Grey,341174,56680,6 +148790,Welcome to the 60's Dancer,2976,1752765,115 +148791,His Car,51036,1879508,46 +148792,Mars Inhabitant (uncredited),365942,1458290,60 +148793,Harry,1912,35537,10 +148794,,366736,1584553,3 +148795,Sarah Engel,287903,3051,1 +148796,Marie,83384,2517,4 +148797,Damian,8292,2687,15 +148798,Tom Ryan,4257,14886,2 +148799,Sitcom Girl,42188,1081470,19 +148800,Lucy,25921,94350,5 +148801,Abby Gerhard,258480,34490,3 +148802,John Constantine (voice),408220,127712,0 +148803,Aide to Stephen Douglas,43806,105810,57 +148804,Françoise Quoirez dite Sagan,14555,4529,0 +148805,Robert Curtis,28658,30181,0 +148806,Tom Keefer,45215,4302,0 +148807,Dan Winterslip,413669,33007,9 +148808,Genevieve 'Gen' Sullivan,43504,95021,4 +148809,Jimmi Wolf,40208,1686809,11 +148810,Henchman Hank Davis,186585,95733,10 +148811,Ivan,303636,1428297,12 +148812,Tough Girl,7326,209723,20 +148813,"Tony, Craig's Brother (as Christopher Hargreaves)",21001,97179,6 +148814,Florist Boy,124115,1102200,19 +148815,Springbreak Party Girl,102629,1031258,9 +148816,Mayor Wilson,19766,76181,5 +148817,"John ""The Hitcher"" Ryder",8398,48,0 +148818,Marcus Garrison,322518,141222,8 +148819,Javier,64678,166995,15 +148820,Curly,28712,4969,3 +148821,Willy Darin,23397,2048,2 +148822,Gyunei Guss,16157,20664,5 +148823,Shawenhick,64437,82289,5 +148824,,11330,1444515,20 +148825,Richard Parker,102382,55152,4 +148826,Ryo-Ohki,14829,112140,5 +148827,Frightened Sailor,58,82636,28 +148828,Lopez,42640,1096850,8 +148829,Mac Deford,271664,160351,6 +148830,Red Eagle,29083,102852,4 +148831,Metropolis Governor,209112,1695971,82 +148832,Kendrick,31221,107792,2 +148833,Reaver,263115,1813995,30 +148834,Evil Clown,24094,97461,23 +148835,Cat,388764,99691,3 +148836,Employee,97797,1014983,11 +148837,Golem,71444,1243319,5 +148838,Charlotte Goodall,14703,12445,3 +148839,Heinz Guderian,139862,28368,8 +148840,Randy Hughes,42045,15412,3 +148841,Det. Sean McKinney,28090,2055,5 +148842,Frank,35113,185822,9 +148843,Herbert Jothan,111042,85736,8 +148844,Princess Patma,44631,239296,3 +148845,,2143,132930,52 +148846,Security Officer,146216,67212,24 +148847,Andi,174645,1157594,8 +148848,Steve Bradford,46190,5788,0 +148849,Miss Miller,74525,121323,13 +148850,Margaret Ann Russell,1247,11701,1 +148851,Capt. Morgan,73194,14970,31 +148852,Troy Hamilton,120370,47297,2 +148853,Detective Anderson,27501,141586,9 +148854,Felisa,44655,186603,4 +148855,,17582,1358559,2 +148856,Flashback Voiceover (voice),20432,1099737,8 +148857,Rolando da Gesso,61217,103062,12 +148858,Ezra Carter,69,428,12 +148859,Man-ji,257331,21689,1 +148860,Jack Beauregard,9474,4958,1 +148861,Christina,16186,208316,7 +148862,Superintendent Raymond Li,9056,1346975,9 +148863,Hayato Yazaki,14537,118993,8 +148864,Jimmy Dougherty,337751,1362995,8 +148865,Reba Richards,99324,82349,1 +148866,,408550,1658138,9 +148867,Entrance Guard,47404,34187,23 +148868,Farmer,36299,1582754,12 +148869,Santiago's Mother,183832,581350,23 +148870,Majeed,24963,1188481,8 +148871,Ollie,50073,34759,4 +148872,Young Eric,388243,1592200,10 +148873,Alex Lumberman,16876,64471,11 +148874,President of Western Union,67375,12502,12 +148875,Keira,24469,1319615,10 +148876,Milo Henchman #3,29101,1516710,23 +148877,Rick,40229,1269925,10 +148878,garbageman (uncredited),334074,1523067,17 +148879,Neighbour,245700,174700,67 +148880,Dr. Nash,204922,2983,2 +148881,Charlie,22901,18023,0 +148882,Masa,315841,142494,1 +148883,Marin,2786,22167,9 +148884,Hauptscharfuhrer Sandel,259728,432771,15 +148885,"Susana ""Bragas Sucias""",72900,567517,5 +148886,Hank Marlow,293167,4764,4 +148887,Andreas' Girl,13058,1589716,44 +148888,Maurice 'Baron' Courtelin,31532,112972,0 +148889,Dave Hall,70586,1438026,16 +148890,Matilda,73257,8170,1 +148891,Joel,134435,136180,5 +148892,Mutter im Küchenspot,217412,1890755,26 +148893,Little Mo - Detention Kid,2976,1752339,65 +148894,Harry,2143,132894,16 +148895,,18908,563909,18 +148896,1er inspecteur,5511,1117806,9 +148897,Sir Ralph Skelton,41073,118426,3 +148898,Angelica Pena,52936,3130,2 +148899,Welcome to the 60's Dancer,2976,1752771,121 +148900,Quinn,14123,118544,6 +148901,Jarod,27338,42722,0 +148902,Ella MacQueen,69717,1190275,8 +148903,Matt,13836,149824,20 +148904,Sam Becker,295723,435044,1 +148905,Peggy Bell,39195,43372,9 +148906,Amelia Lockhart,48333,158131,1 +148907,,39493,121751,10 +148908,"Hermes, extended cast",7249,31549,4 +148909,Victors moeder,319179,51487,7 +148910,Carol Larson,121354,50760,3 +148911,Michel Lafortune,110160,38529,4 +148912,Francine,72460,109981,7 +148913,Ethel Andrews,94739,92900,1 +148914,Claude,96333,65019,5 +148915,Hammer,20625,10798,0 +148916,Musiel Byrd-Jeter,339419,1650214,12 +148917,Julia,18070,95642,6 +148918,Yae Sugito,117212,142485,1 +148919,Don Chafas,45191,1040937,3 +148920,Waiter,72096,119867,16 +148921,Catherine,10268,25166,14 +148922,,322548,109741,13 +148923,David,110992,1050965,2 +148924,U.N. Jefferson,21029,10939,9 +148925,J.C. McGill,31167,30115,7 +148926,Cham-bok,285213,1330446,9 +148927,Reyhan,10821,1174581,7 +148928,,45949,1291952,6 +148929,Proud Parent (uncredited),206197,1286905,40 +148930,Shorty the Greek (uncredited),28000,15975,28 +148931,Gentleman,1420,1266585,19 +148932,Jack,356900,21029,3 +148933,Young Alan,27941,1099652,4 +148934,,131815,103513,8 +148935,Marthe,5618,24393,0 +148936,Lenny,30149,132502,5 +148937,Samson,340616,1588307,9 +148938,Ugo di Clarendon,61217,26155,10 +148939,Funeral Minister,13483,1674439,14 +148940,Angus Woolf,153397,75066,9 +148941,The Vuvalini,76341,1734171,21 +148942,Anita,269306,7569,2 +148943,Dr. Blöchinger,6183,7153,6 +148944,Theo,39517,103351,17 +148945,Briareos,11633,70098,1 +148946,Van Brun,43388,94198,3 +148947,Hella,158900,1140262,1 +148948,David O. Selznick,11440,25074,9 +148949,,361183,82422,2 +148950,Gardien 2,59118,562156,24 +148951,Pina Parenti,165159,592632,9 +148952,,437253,1744989,7 +148953,Deadeye,104720,148868,21 +148954,Roy Grone,41283,51944,11 +148955,Ferdinando Scarano 'O'Barone',11048,27647,6 +148956,Assistant Hotel Manager,13092,1547937,22 +148957,Jim Halsey,8398,54834,2 +148958,Gas Station Attendant,95504,30238,13 +148959,Old Doctor,263115,51551,44 +148960,Jim Stansel,50647,282835,21 +148961,Small Role,18651,1467403,71 +148962,Blueprint Dancer,243683,1398173,76 +148963,Guard,2047,21084,3 +148964,Chen,290764,1269910,8 +148965,Patricia Lanyard,149793,14689,3 +148966,Bennett,81616,16811,8 +148967,mies junassa,442752,1761834,24 +148968,Themselves,257907,1298423,12 +148969,Chain gang guard Tu Ying,10275,556698,7 +148970,Dave Kalama,291,4326,4 +148971,Chadwick,90616,1692070,13 +148972,Domiziana,231176,129062,10 +148973,Pavel,24624,62508,8 +148974,Kaizad Khambatta,316654,35736,3 +148975,,14210,90429,4 +148976,Motorcycle cop,33481,110773,22 +148977,Fukikae,11838,552519,26 +148978,Cha Zhiliang F.G. sqad member,62071,1424102,11 +148979,Vincent,55424,22306,4 +148980,Grant,26882,96530,1 +148981,Coach Stubbs,98066,8693,13 +148982,Johnny Johnny,19946,556745,4 +148983,Gerald LeFlore,216153,67893,6 +148984,Niehoff,212530,28886,3 +148985,Bandit Leader at Monteray Tavern,31899,17759,21 +148986,Nurse Nozhki,30141,33457,9 +148987,Greg,40208,1774115,4 +148988,Biker (uncredited),15092,1895706,86 +148989,Ragini,191112,1171680,4 +148990,Police Captain,387957,3142,4 +148991,Young Kyle Vogel,105945,39728,2 +148992,Goli,46403,86017,4 +148993,Steve Keiver,73313,40433,0 +148994,Kaleb,50674,237455,6 +148995,Small Girl,370755,1650157,19 +148996,Duncan Phipps,10804,10983,4 +148997,Argyle,29054,83187,6 +148998,Beth Colman,84708,30133,2 +148999,Archie Brody,29510,94847,11 +149000,Comandante,79779,127825,6 +149001,Alex,172457,1637851,10 +149002,Zoned out Clubgoer,27814,1856503,20 +149003,Aunt Karen Turner,8617,7523,9 +149004,Den gamle,11328,1348440,7 +149005,Steve Morgan,205076,107185,1 +149006,(uncredited),133941,592056,13 +149007,Ye Xiang Lun,20342,17380,0 +149008,Marie,344120,35082,6 +149009,Aristotle,1966,290,7 +149010,,12622,555206,30 +149011,Electrician,51276,1638441,13 +149012,Shareholder,57201,56267,31 +149013,Marilyn,45431,43068,6 +149014,Terry's Bass Player,149509,1432726,32 +149015,Welcome to the 60's Dancer,2976,1752762,112 +149016,Honey Wiggen,121230,34285,4 +149017,Sergeant Tatoche,42641,102327,5 +149018,Mrs. Warby,60269,217111,24 +149019,Missy,112161,78044,14 +149020,Robert Renaud,19850,57082,6 +149021,,202984,67315,0 +149022,Jisook,86266,927756,5 +149023,Policewoman,262338,1396616,19 +149024,Rossi,256092,1325836,5 +149025,Therese,58384,113534,2 +149026,Inari,366249,147733,3 +149027,Lauren Palmer,205587,1272862,8 +149028,Nikita Demidov,376188,1190350,0 +149029,Kinha,12811,73749,10 +149030,,151652,1374212,3 +149031,Mike,72574,12406,0 +149032,Julie Wong,19629,117775,0 +149033,Mademoiselle Eva,33623,8293,3 +149034,Amneris Pagliughi,221527,99528,3 +149035,Hector,109439,1323612,19 +149036,Peters,109610,138877,9 +149037,Ricardo / Vitriol (voice),89247,1021607,6 +149038,Pallbearer,198652,1179387,16 +149039,Ralph Follet,358199,13726,3 +149040,Daniel Gordon,237,3071,6 +149041,Lois Lane,145963,560295,0 +149042,Dr. Harriman,96716,21197,2 +149043,Scarred Soldier (uncredited),369885,1651432,70 +149044,Nancy Langley,45692,115990,2 +149045,Radio Announcer,152737,3211,15 +149046,The Mom,129363,1089162,1 +149047,The Blackbird / The Bishop,111302,14481,0 +149048,Himself,33481,110793,43 +149049,Curly,42871,83912,9 +149050,,49398,55919,13 +149051,Apotheker,308174,226994,16 +149052,Señor corpulento,52943,100913,3 +149053,Submariner,39276,134264,17 +149054,Replay (voice),26505,20497,12 +149055,Jane Palmer,27036,83796,0 +149056,Bella,18613,19961,6 +149057,Employment Support Allowance Assessor,374473,1650236,7 +149058,Loretta Blueblood,322548,223334,18 +149059,Isabela,117534,1024133,12 +149060,Katie Malone,48836,1192145,7 +149061,Uncle Willie McLeod,59882,30512,4 +149062,Carrie,139571,1090687,8 +149063,Hamlet,120729,177987,9 +149064,Marriage License Bureau Clerk,149793,22606,18 +149065,Lone Paparazzo,48838,147255,19 +149066,Hazel,113091,1223883,4 +149067,Maid,243683,158441,35 +149068,Gudrun Nyman,2180,22330,1 +149069,'R.G.',28417,231278,8 +149070,Captain Medley,9667,176227,13 +149071,Queen Carlotta,14262,10373,3 +149072,Shiva,109001,149958,0 +149073,Dr. Leopold X. Steinberg,11939,2497,6 +149074,Ken Hood,86241,1037,3 +149075,Tekin Yayladali,49834,1133960,5 +149076,Kirikou jeune homme (voice),21348,87426,5 +149077,Janice,70587,58151,2 +149078,Lopez,94182,33253,13 +149079,Oma Crash,3539,23340,6 +149080,Muhammad Ali,373546,87817,6 +149081,Lem's mother,34796,222575,3 +149082,Radio Announcer (voice),88005,1139648,12 +149083,Party Doorman,209112,1692050,80 +149084,Blind Violinist,28068,99559,8 +149085,le second marin,61109,30238,6 +149086,Reo Seki,176143,30686,2 +149087,Liz,46883,1887377,7 +149088,Mulgrew,189,1406676,34 +149089,Sgt. Comstock,324670,77164,4 +149090,Father Griffin,82465,1241168,4 +149091,Lynn Grayson,43119,89037,8 +149092,Warren,242224,79715,5 +149093,Shanti Andía,369567,136150,1 +149094,Dr. Robert Selbie,29368,30766,3 +149095,Pledge Aguilar,107811,146516,10 +149096,Burns,200447,83397,11 +149097,Kate,6341,12407,2 +149098,Wiggy - Barfly (uncredited),29094,98495,12 +149099,Sadie,4688,38942,3 +149100,Lady Gresham,49391,17477,13 +149101,King Dunchaid,286873,93919,22 +149102,Record Hop Dancer,2976,1404613,83 +149103,Halpern's Deputy Director (uncredited),329865,1099770,62 +149104,Claire's Mum,47186,552215,4 +149105,Tino,274479,1774096,61 +149106,Mustached Henchman,149793,97226,34 +149107,Mr. Wilson,22020,1207147,2 +149108,Paula,334527,1865502,19 +149109,Lug Head,38322,933182,60 +149110,,16032,1087002,9 +149111,Horseman Turpeinen,55396,148385,2 +149112,Sile Doty (as Robert Wilke),126550,2096,7 +149113,Tricia Wilkes,138372,557216,6 +149114,Alice,59726,229696,3 +149115,Dalton Voss,10694,6719,4 +149116,'EOD' Paul,193756,1283059,39 +149117,Jun-hee,31850,1545421,10 +149118,Doris Dumbrowski,100910,10539,5 +149119,Laure,85429,69150,4 +149120,La pédopsychiatre,204771,1187204,4 +149121,Maren,298935,935,0 +149122,Megan Leavey,424488,51072,0 +149123,John Cabot,184267,144048,11 +149124,Audience Spectator,38322,1869045,42 +149125,Schindewulf,128270,1820211,16 +149126,,274127,1327771,5 +149127,Shashi,413421,81928,1 +149128,Joe Chaney,41857,56015,8 +149129,John Wheeler,40387,14729,1 +149130,Tara,209410,1192903,3 +149131,Patricia Ellis,46885,1505419,10 +149132,Fat Randy,284564,1634620,18 +149133,Craig Gilner,43923,132712,0 +149134,Angela,98870,54470,0 +149135,Roy,14881,68681,6 +149136,,110001,1382975,10 +149137,Herself,15258,175979,45 +149138,Bernard,344906,9290,0 +149139,Yoshitsune,39123,46691,2 +149140,Shaobao (voice),137200,60739,1 +149141,Becky Fishman,2355,1089177,22 +149142,Adell Modell,2355,170348,10 +149143,Dorona,349441,1134920,3 +149144,Tani,38010,1342694,9 +149145,,28761,2629,4 +149146,,247436,1282919,0 +149147,Veronica,27112,97242,2 +149148,Queen Victoria,51247,6199,6 +149149,Alikersantti Sulonen,55759,108853,11 +149150,Clayton Farnsworth,49762,521,0 +149151,Gail Richards,44875,13568,0 +149152,Kelin,103539,1556836,1 +149153,Car Driver,299780,37293,9 +149154,Herself / Trinity,14543,530,3 +149155,Inspector Kadam,16987,85683,4 +149156,Adolph Hitler,100814,141408,0 +149157,Miner in Mob,176867,931793,30 +149158,Theoliver Jeter,339419,155109,11 +149159,Zak,218425,1274942,0 +149160,Der Handwerker,131366,49214,2 +149161,Charlotte,78789,4529,0 +149162,Ethel Briggs (voice),413770,4154,2 +149163,Ni Tang,182127,1440176,13 +149164,Gil McNamara,295656,1081488,11 +149165,Momo,82495,55327,7 +149166,Bob Masen,68976,12312,6 +149167,Dr. Rosen,339116,89376,4 +149168,Erik's mother,224813,1210349,10 +149169,Jane Stacy,96433,115990,1 +149170,Annabel Stormgren,373977,127734,4 +149171,Professsor Schikowsky,167330,72852,16 +149172,Spanish Tenor in 'Viva La Vide' Number,111470,1811848,28 +149173,Lead Monster,14145,1365247,7 +149174,Barfly,75315,940057,22 +149175,,66187,15135,0 +149176,Camilla,12432,129881,10 +149177,Kellnerin,10311,2730,9 +149178,Voice Of Jenna's Mom,19719,85116,19 +149179,Darren,117942,1066313,6 +149180,Tricia,97614,59618,22 +149181,Heather,1599,52848,14 +149182,Mia,508,7059,1 +149183,Club Goer / Pedestrian,77930,1784652,59 +149184,Klas Fredén,315362,47068,8 +149185,Mian Abdullah,121598,85593,9 +149186,SWAT Team,356326,1874731,21 +149187,Sir John Gresham,89086,19329,8 +149188,Sam,208869,25438,0 +149189,Elsa Valentin,12446,20080,0 +149190,Windows Repair Man,98349,205136,14 +149191,Landlady,72785,120985,10 +149192,Gas Station Attendant,12707,950617,9 +149193,Pentagon Elevator Guard,127585,1320015,44 +149194,Det. Stringer,18998,1504833,16 +149195,Mr. Stevens - Editor,80771,8728,5 +149196,Nicola,84056,80230,0 +149197,Warm-And-Wholehearted,358511,1603092,6 +149198,Debt Collector,330947,1650320,48 +149199,Becky Salt,107985,1200853,13 +149200,Bit Role,138308,121208,8 +149201,Helen Anderson,53459,18066,3 +149202,Pepe,270015,111487,10 +149203,Karen,1640,18286,6 +149204,Eeyore (voice),13682,19540,5 +149205,Clarisse,11540,10912,2 +149206,Dan,381032,45398,0 +149207,Gail Abernathy-McKadden-Feinberger,353616,9281,4 +149208,Rita's Guard #1,86647,101474,5 +149209,Apartment Kid,21619,87719,14 +149210,Papa,43000,1958,1 +149211,Caitlin,159201,53485,4 +149212,Robin / Carrie Kelley,142061,42160,1 +149213,Boxing Spectator (uncredited),312221,1657695,73 +149214,Nekro-gang member,48636,1772477,5 +149215,Mike's team member,25536,1138772,3 +149216,Charles Lindbergh,88794,6164,12 +149217,The Dwarf Bobby,45875,134074,14 +149218,Morrissey,2687,6326,6 +149219,Jeff Pierson,129798,1116202,1 +149220,Giant Man,335970,1906,14 +149221,Minor Role,32610,1468784,20 +149222,Pepito Alvarez,37329,14533,2 +149223,Gung,34082,30416,4 +149224,Actor (uncredited),53419,1393347,13 +149225,Chief Crowfoot,272663,81182,8 +149226,Guard,22396,51429,24 +149227,Sarah,177047,11825,4 +149228,Klim Yarko,292656,543873,2 +149229,Judas-Jack,448847,116265,8 +149230,Mrs. Smith,99909,1176928,31 +149231,Pete,66881,1016110,21 +149232,Amber Regan,9286,77052,12 +149233,Queen Maria Luisa,96935,132785,4 +149234,Anna,162374,136757,3 +149235,Kuvetli,200331,9221,8 +149236,Fred Grogan,27144,97238,6 +149237,Naai Jan,14818,228620,8 +149238,Chad Danforth,13649,67602,4 +149239,,305147,86847,3 +149240,Ferragut's Son - Esteban (as Michael Brantford),183932,935639,8 +149241,Scottish Punk,341689,1688077,15 +149242,Japanese Translator,227306,1205489,37 +149243,Buddy Conner,204839,3710,3 +149244,Medical Assistant Anatoliy Lukich Demiyanenko,51284,86954,2 +149245,Gertrud Claudius,267389,558550,4 +149246,Doris,22752,81282,1 +149247,Charlotte 'Charlie' Duval,71147,46423,1 +149248,Amante del comandante,60046,132478,4 +149249,Pasquale,8882,72785,3 +149250,Ray,9953,60876,9 +149251,Head Master,91186,1163180,4 +149252,Maersk Alabama Crew,109424,58475,13 +149253,Jen,18206,39481,2 +149254,Hélène Kuragin,149465,99258,12 +149255,Riitta Maras,291907,1146052,1 +149256,Claire,428687,1534954,11 +149257,Dad Asparagus (voice),268893,42223,1 +149258,General Doar,9795,27143,13 +149259,The Ghost,43700,129777,3 +149260,Klein-Felix,147360,39323,8 +149261,Marianne,209263,2229,1 +149262,이정민,257296,138531,4 +149263,Mr. Tripp,83015,115604,29 +149264,Auctioneer,118889,29579,12 +149265,Hughie,54318,11451,11 +149266,Countess of Chell,43369,2924,2 +149267,Goose's Mom,347630,1695651,18 +149268,Mr. Carlson,179154,60287,9 +149269,Herb Redneck,12412,16861,20 +149270,,83761,1720054,5 +149271,Tiffany's Trainer,4257,18895,10 +149272,Habib,76207,235952,5 +149273,NCOIC of Pallbearers,8988,1741963,40 +149274,Françoise,54563,150916,2 +149275,Aunt,356191,1211538,11 +149276,Alexander Newski,10235,67502,0 +149277,Parole Officer Hernandez,13075,4808,6 +149278,Brooking,356483,93934,3 +149279,Em,99367,118545,3 +149280,Vice Principal Metz,45725,61980,4 +149281,CIA Supervisor,209112,1374130,112 +149282,,4380,143324,17 +149283,Myra Hagen,174195,130951,4 +149284,Chelsea,387999,590308,0 +149285,Jan Dawson,64456,5740,3 +149286,Hal Mitchell,51249,222122,3 +149287,Theatre Manager,3937,34278,11 +149288,Dung,364810,1525247,2 +149289,Marie,24023,106660,11 +149290,Dr. Who,39276,227622,4 +149291,Advocaat Waldack,44751,88154,9 +149292,,341689,89387,6 +149293,Dan Hammer,25407,3155,0 +149294,,238925,1273678,2 +149295,Mr. David,25625,10370,1 +149296,Schumi,9572,57999,4 +149297,Lieutenant Connix,140607,1399531,16 +149298,Martin,125619,1293064,2 +149299,Tex Richman,64328,2955,9 +149300,Dongou,14088,1190334,9 +149301,Charlie,12855,81074,8 +149302,,175791,120019,4 +149303,Bob Cerv,20536,4445,5 +149304,Pimp Clate Johnson,199373,62644,7 +149305,Claire,353979,133979,2 +149306,,392818,31268,5 +149307,Woman Auctioneer,1579,1331671,35 +149308,Checkout Chick,242224,1413772,21 +149309,,130957,22589,10 +149310,Waitress,418969,1836223,6 +149311,Major Jackman,338518,974,6 +149312,Manager of Carlton Hotel,42599,11131,10 +149313,Mum,22447,37058,3 +149314,,123949,1081523,8 +149315,Martha McKay,333385,84223,1 +149316,Dwight Butler,94365,573773,2 +149317,Police Insp. Giuliani,68822,24474,8 +149318,Officer Bern,14457,1089171,12 +149319,Blimp Lebec (bush pilot),32921,30272,4 +149320,Bama Dillert,38724,4299,1 +149321,Richard Semco,258480,496470,4 +149322,Dareios,37958,99183,9 +149323,Ichiro Aoyama,125264,1082753,11 +149324,Obi-Wan Kenobi (voice),140607,3061,56 +149325,Bela Makhija,8079,35777,4 +149326,Pharmacist,45227,240369,12 +149327,Elliot Bradley,86186,12889,3 +149328,The Neighbor,186971,32512,14 +149329,Miles Moss,398137,22063,3 +149330,Headwaiter,98125,1471375,20 +149331,Brandon,109391,1204686,17 +149332,Carl,192210,47879,6 +149333,Shopkeeper,35052,188454,13 +149334,Yves Faroult,139159,5082,4 +149335,Woody,51442,6451,2 +149336,Rafael,98582,3483,0 +149337,Moe Williams (archive footage),262988,7684,8 +149338,Pest's Nan,59678,1249937,24 +149339,Cora,376501,1804236,12 +149340,Thomas Müller,212503,52266,0 +149341,Hephaistion,1966,7499,3 +149342,Allums,18927,1368475,14 +149343,Karellen,373977,4391,5 +149344,Дедушка Сергея,65545,1341809,7 +149345,Stepka,207636,1190484,7 +149346,Le paysan,12249,71933,2 +149347,Pai,228198,1338430,4 +149348,Greg Ellenbogen,266741,78685,4 +149349,,332872,1344142,37 +149350,Haruno Fuji,19545,1059889,5 +149351,Navy Corpsman,424488,1349720,11 +149352,Han,9793,59293,1 +149353,"Himself, others",282268,10707,4 +149354,Stall Holder,16182,27172,18 +149355,Türkin,170759,1072105,10 +149356,Paco,228034,84217,19 +149357,Party Girl,222388,1326246,15 +149358,Amber,14565,20381,6 +149359,Maria,166262,27282,13 +149360,Queen of the Lair,37254,117189,9 +149361,Debbie Forrester,228034,14698,4 +149362,Marge Mavalle,4365,37600,7 +149363,Mrs. Jean Kellerson,32684,12498,4 +149364,Elmendorf,5494,43680,4 +149365,Cowhand Sitting on Train,33541,120199,35 +149366,Lou the Florist,17956,155576,21 +149367,Indian Manager,237584,100062,11 +149368,Chuckie,15749,526,1 +149369,Fée Clochette,292387,1151455,5 +149370,Zhong Ling-erh,66759,21929,9 +149371,Andy Jones (uncredited),121230,14453,17 +149372,Mrs. Gordon,71376,65471,3 +149373,Sugar Daddy in Theatre,157898,116187,39 +149374,Bernardo Molina,370741,140602,8 +149375,Stella,189197,114843,12 +149376,(Auntie) Abacus Fong,25645,94076,3 +149377,Terrell,184098,83231,13 +149378,Theatre Patron,237584,1544803,15 +149379,,88273,1547785,21 +149380,Heracles,37958,43292,12 +149381,King Alexander,57419,213382,23 +149382,Burleigh,12783,1427529,12 +149383,Himself,51311,1109542,9 +149384,Bernie Amos,48333,1090196,6 +149385,Christopher,28209,100109,3 +149386,Hulk,14613,60279,6 +149387,,32158,125708,7 +149388,Alex Monet,33305,1108860,2 +149389,Mr. Jonathan,22020,88150,0 +149390,Her Royal Highness,26796,1544407,10 +149391,,183946,177008,2 +149392,Sönderby,39284,8741,5 +149393,Le père de Georges jeune,445,6023,11 +149394,Claire,126323,78430,1 +149395,Hollywood,120802,57412,2 +149396,Lindsey Lewis,174188,84223,1 +149397,Stranger on Street (uncredited),32684,14791,6 +149398,Motorcycle Policeman (uncredited),90932,1240252,9 +149399,Daniel McCandles,45693,65475,2 +149400,Kumi,208700,87637,8 +149401,Julie Rostina,37084,11029,4 +149402,Christina,39845,21318,6 +149403,Medication Nurse,3580,1409321,46 +149404,Aki,13280,198149,6 +149405,Woman in restaurant,224813,1210352,17 +149406,Angel,131907,1089049,2 +149407,Morgana,249457,1880590,3 +149408,,32891,55119,2 +149409,,380856,72450,1 +149410,"le Bosco du navire ""Flora""",65718,19647,4 +149411,,44716,1807475,38 +149412,Wirt,409696,109,1 +149413,Ed Bannon,61049,10017,0 +149414,Cai E,69310,25246,0 +149415,Quarry Cop 1,240745,138988,21 +149416,David,390547,1110505,1 +149417,,65898,40582,6 +149418,Lu Xiao Yu,20342,85962,1 +149419,Bedford College Dignitary,157343,148419,28 +149420,Mrs. Clennam,47084,33448,6 +149421,Anna Baragli,9292,1533,2 +149422,księgarz,370264,1068465,9 +149423,Geppetto (voice),136619,931513,8 +149424,Николай Тимофеевич,409082,86663,9 +149425,Karen,407448,481337,10 +149426,Kanichi,137504,213468,7 +149427,Tom Taylor,39957,49918,3 +149428,Powell,259830,28743,0 +149429,Hans,2742,20175,11 +149430,Mr. Phillips,397520,131335,6 +149431,Paranoid Caller #1,24963,96498,16 +149432,Lars Knutson Rockne,43812,4119,8 +149433,Ship Slave (uncredited),43419,589730,28 +149434,Pietro,151911,128198,10 +149435,Mary Ansell Barrie,866,8329,5 +149436,Elly Brewster,87514,94814,5 +149437,Dead Man,199575,1438876,25 +149438,Soldier 2,338676,1114061,8 +149439,Branson,239562,53256,4 +149440,Shinzo Kotabe,409550,115700,6 +149441,Coffin maker,45227,86847,6 +149442,Scott McKenna,54243,59451,3 +149443,Arlene,22307,1537247,9 +149444,Agitator on Demonstration,81120,107434,27 +149445,(voice),41077,125360,2 +149446,Viktor Iliazarovich,36695,86940,6 +149447,Milk Man,16131,79431,23 +149448,Harold Koble,80264,3798,1 +149449,Suzie - the Stenographer,31445,33034,15 +149450,Judge (uncredited),86838,1599175,32 +149451,George,156388,87479,2 +149452,Atty. Theresa Janice 'T.J.' Harlow,65280,18331,1 +149453,Bourreau,9539,59613,2 +149454,,109587,1055266,10 +149455,Iris,35304,57015,1 +149456,Scott,26042,123333,5 +149457,Merchant Qadeer Abdul (uncredited),274857,1502373,54 +149458,Callie O'Malley,330711,265904,7 +149459,Claudia,435707,102222,5 +149460,Chi,172972,990443,3 +149461,Ramesh Tandon,353464,1285549,3 +149462,Polizist II Bahnhof,6183,48517,22 +149463,La petite fille,21348,1838953,16 +149464,Town Sheriff,41591,83993,15 +149465,Tom,214086,228,1 +149466,Waitress,84184,1584972,15 +149467,Chloe Carpenter,146313,18475,1 +149468,Dr. Panglos,74645,6784,2 +149469,Blind Mag,14353,76689,3 +149470,Casper (voice),39345,108939,19 +149471,Swimmer,86658,35621,6 +149472,Anky,10008,7577,6 +149473,Benny's Grandma,429238,96223,20 +149474,Stage Manager,2976,1202533,32 +149475,Dr. Holloran,73873,2039,5 +149476,Italian in Rio,77137,130876,8 +149477,Himself,144680,1416461,6 +149478,Washu (voice),34935,552600,22 +149479,Mr. Geldon,262841,53119,15 +149480,Security Guard,921,216758,58 +149481,Mom,345922,1815382,46 +149482,Mrs. Kobayashi,115283,208316,11 +149483,Yun Gye-soon,363579,1010877,2 +149484,Lucy,8325,4687,1 +149485,Aicha,10910,1080220,6 +149486,Alex Prieto,214129,1004776,1 +149487,Nicky,358076,4156,12 +149488,Robert Jordan,83229,1544222,2 +149489,Cole,456781,14700,7 +149490,Wong Tin Bar,45197,1699608,4 +149491,Felipe,448763,92196,5 +149492,Laura Blacker,293452,1220028,9 +149493,Genesis Shareholder (uncredited),365942,1670768,68 +149494,H.S. Arts Student,38322,1090695,65 +149495,Lasse the Skinhead,76864,260361,4 +149496,Remedial Trainee,122271,1735910,11 +149497,The Presence,131799,148585,6 +149498,Himself,9541,2888,6 +149499,,332872,1261487,25 +149500,Anna Barton,11012,1137,1 +149501,"Himself, Cameo Appearance (uncredited)",32552,18802,37 +149502,Huo Yi,217923,1436140,8 +149503,Mike Norris,183662,7497,1 +149504,Karen,17258,1483633,8 +149505,,64928,1673512,17 +149506,Cally,44047,20387,0 +149507,Premachandran,134474,1099267,6 +149508,Deputy Sheriff,5516,16459,8 +149509,,49522,127164,8 +149510,Jackson,337073,1481003,4 +149511,Music Teacher,5638,36927,28 +149512,Rose,8008,11277,1 +149513,Ticket Agent,14589,96302,27 +149514,Frau Nagelbeere,6183,48524,32 +149515,Jo Beswick,149926,1213704,1 +149516,(France),1926,20042,3 +149517,Husnija,126090,1050274,2 +149518,Faelan,336149,1581207,8 +149519,Monique,83788,32365,2 +149520,Kanga (voice),13682,60739,3 +149521,Po (voice),9502,70851,0 +149522,Hutch,20430,20402,4 +149523,Ola Katherine O'Hara,150065,171941,2 +149524,Romano,25376,1241396,10 +149525,Penguin (voice),300424,78798,5 +149526,мл. сержант Мятников,72614,271868,5 +149527,Salon Client #2,47186,159838,15 +149528,Rabbit Devil,75948,56863,7 +149529,Danny,20107,475571,0 +149530,Himself - Photographer,97724,1388656,7 +149531,Kaihime,209032,589923,1 +149532,Corporate Lawyer,102382,1333666,61 +149533,Tipsy Diner Who Cannot Pay (uncredited),47653,21310,10 +149534,Private Locklear,289723,84218,6 +149535,Jane,29054,58042,10 +149536,Himself,324181,77120,4 +149537,Oscar McGonigle,31835,30018,8 +149538,Hammerhead,16214,116749,9 +149539,Lt. Dick Ryan,106821,152713,6 +149540,Drama Trainer,38579,120794,17 +149541,Brade,413669,132536,6 +149542,Peter,35977,57686,4 +149543,herself,289960,102,1 +149544,Philippe Cousteau,332794,145121,1 +149545,Jasiek,382155,1636689,19 +149546,,69352,20727,3 +149547,Blind Lemon Jefferson,63773,56183,5 +149548,,344120,18178,12 +149549,,128671,145109,3 +149550,Gérard,71630,1973,1 +149551,Gefängniswärter,6183,48522,31 +149552,Backstage Fan,229297,1418859,16 +149553,Clay,176124,1080212,3 +149554,Guest Gala Dinner,49853,801,45 +149555,Receptionist,7288,16502,19 +149556,Phoebe,406052,1676154,5 +149557,Bum 2,169656,1316307,8 +149558,Louise Harper,32021,9809,1 +149559,Sarge (voice),49013,15900,19 +149560,Iris,58081,8776,1 +149561,Steve Harper,47739,97007,13 +149562,Kate Ransome,38460,120712,1 +149563,Ilsarel,245950,1888602,8 +149564,Blond Knight (voice),59297,1221032,6 +149565,Warden's Clerk,26376,974832,37 +149566,Pharmacy Customer,59726,1185477,11 +149567,Stanley Krum,170517,92908,4 +149568,Aldo,43544,24603,10 +149569,Friedrich Zeitz,214081,512991,2 +149570,Andrzej Winkler,36402,46246,1 +149571,,314371,1583948,25 +149572,O'Rourke,18051,41269,6 +149573,Himself,15258,166789,79 +149574,David,70981,17288,1 +149575,Paz,2503,25616,5 +149576,"Himself, engineer",142478,1117368,8 +149577,Hari Dada,208637,85589,0 +149578,Anthony 'Tony' Halton,44208,19550,2 +149579,Louie Dumbrowsky,116160,14034,2 +149580,Zeleznicar,71725,51889,5 +149581,Barillo,1428,5293,8 +149582,Camp Director (as Dave Ketchum),94225,55458,8 +149583,Yeoman Halliday,48412,8262,6 +149584,Rosy,77165,1121969,8 +149585,Cafe Girl,13058,1589710,39 +149586,Cocoa,429838,135787,7 +149587,Krauss,179603,1274075,8 +149588,Simone Picard,25388,50,2 +149589,,12206,46192,17 +149590,Pat,336890,449,9 +149591,Priya,310123,1065777,3 +149592,,237303,1224384,6 +149593,Brain the Dog (voice),19766,34982,12 +149594,Officer Hawk,98066,1784668,26 +149595,Nikola,337758,980147,1 +149596,Scott Grogan,119694,21731,2 +149597,Mike (voice),411221,64515,10 +149598,Joris,90231,1264827,8 +149599,Monkey (voice),273202,1416549,5 +149600,Tour Guide,37923,27098,10 +149601,Mrs. Aldea,2009,1628026,14 +149602,Mordecai,354857,222169,1 +149603,Fortune Teller [cameo],107682,77319,6 +149604,Father O'Neill,222872,5139,1 +149605,Mary,345924,1489441,6 +149606,Fan Yau,94348,83458,10 +149607,Boninger,53256,147634,7 +149608,Matthew Cullen,333484,66743,9 +149609,Youngho,85525,84910,1 +149610,Alanso Richter,83361,10661,2 +149611,Joanne,9963,18794,5 +149612,Arlevia Jessup,191465,80253,3 +149613,Mrs. Emily Hardy,43808,117414,4 +149614,Client,97797,1014985,13 +149615,Cherub,287903,1485708,10 +149616,House Manager,440597,1631063,7 +149617,Louise,144792,19327,7 +149618,Monster Shouter,13519,14414,22 +149619,,73628,569893,0 +149620,Failan,18704,20652,0 +149621,Fly,24163,25245,2 +149622,Carrie Carson,18189,77462,8 +149623,Vic,26656,55900,2 +149624,Bambi,76681,15274,6 +149625,Leonidas' Father,1271,1089920,14 +149626,Dr. Earl W. Tarr,3580,1986,32 +149627,Young Man at DTI,11012,1093413,21 +149628,,4344,1123122,6 +149629,Billy Flynn,57684,14563,1 +149630,Giovanni da Cantalupo,61217,94419,5 +149631,Phil Branch,82313,53969,11 +149632,General Tadamichi Kuribayashi,1251,3899,0 +149633,Telegrapher,67375,147525,41 +149634,Oom Lambertus,4134,34872,4 +149635,Onlooker,10804,35593,14 +149636,Otelci Irfan,44105,90282,3 +149637,Janine - la bonne d'Yvette,66966,19269,3 +149638,Anselmo,54236,147498,2 +149639,Poordevil,43367,30299,7 +149640,Herbert,298396,1378356,14 +149641,Analía,101006,1801269,3 +149642,Babakhan,364684,1822089,3 +149643,Hungry,375366,1744117,27 +149644,Janet Playfair,31472,40921,2 +149645,Heather,9890,1216355,20 +149646,Howard the Duck (voice),283995,13922,17 +149647,Cooper,427045,1397001,9 +149648,,409903,119570,4 +149649,Gabe Ugliano,32657,532,11 +149650,Panfilo Crisostomo,93511,21049,3 +149651,,121530,1195789,1 +149652,Golo Moser,277968,27985,6 +149653,Casino Trashy Woman,11358,1773110,36 +149654,,270081,174710,2 +149655,The Tarman,20034,10673,2 +149656,Åke's mother,125926,239349,2 +149657,Lady in Revolving Door,18651,1271204,52 +149658,Jamie Palamino,10033,20189,1 +149659,Chef,317723,1413110,9 +149660,Bike Park Teen,272878,1683793,32 +149661,Captain Graff,55728,7672,13 +149662,Zach,198277,1424201,35 +149663,Rob Cole,169881,30319,0 +149664,Tan,292625,1536085,1 +149665,Anna,293380,2021,5 +149666,Surinder Sahni,14072,35742,0 +149667,Sonny,443053,1764361,7 +149668,Mayor Leodore Lionheart (voice),269149,18999,5 +149669,Eagle Thornberry,74057,1039,1 +149670,Burlington Potluck Guest,356752,1841543,67 +149671,Makewi,331161,81388,1 +149672,Julien,330275,25342,7 +149673,,126250,1476771,19 +149674,Harvard Dean,14047,1392597,17 +149675,Federale,263115,1714701,62 +149676,Emmanuel 'Manny' Bergman,27381,7167,13 +149677,Ann Duverall,151310,44881,2 +149678,Timmy Price,47115,15252,0 +149679,,37284,1344674,1 +149680,,202238,1184371,2 +149681,Dr. Miller,29424,103822,5 +149682,Enrico Perito,47212,62715,8 +149683,Trudy,11798,1252521,17 +149684,Miranda,21481,31029,2 +149685,Olson (voice),269650,1319570,4 +149686,Koichi / Elder Keita,218508,555190,0 +149687,Mesaul,25518,93907,3 +149688,Rodrigo,136466,1105794,3 +149689,Joe Belley,85883,79612,2 +149690,Ab Doderer,228968,93236,7 +149691,Dr. Yoko,43877,1078265,8 +149692,No Sideburns,156700,1332746,20 +149693,Postville Police Chief,20153,85736,4 +149694,Linda Warren,206197,1232484,13 +149695,Lynn,60422,6913,0 +149696,Ruth Guthrie,152748,108916,1 +149697,Real Estate Broker,4982,131391,42 +149698,Herself - Storyteller,128216,1332926,16 +149699,Tad,24050,21594,4 +149700,Mrs. Rigby,192990,40947,9 +149701,Giddy,59075,81416,7 +149702,Beach Victim,90616,1692084,20 +149703,Andy,30680,12549,6 +149704,Victors Tante,319179,233884,4 +149705,Tom King,86236,13726,2 +149706,Henchman #1,109439,108699,27 +149707,Richard Sharpe,70133,48,0 +149708,Drake Hostess,258480,1545512,27 +149709,Soldier,5753,100269,9 +149710,Interviewer,75101,1523989,8 +149711,Patient,51999,143419,9 +149712,Jamie Stryder,72710,77334,6 +149713,Satoshi Oosugi,35435,1248374,3 +149714,Pedestrian,28090,1719885,24 +149715,Fatso,117506,1396948,19 +149716,John A. Keller,47404,40180,2 +149717,Otis Campbell,151937,25627,5 +149718,Voice of Icarus,1272,59151,9 +149719,Himself,51311,1109534,1 +149720,Hairdresser,107250,54793,19 +149721,Col. Weatherby,253250,89813,7 +149722,Cathy (as Michèle Lourie),140825,1113513,5 +149723,Obby / Mantell,8965,15831,8 +149724,President,35026,17482,7 +149725,Vartija,101838,1029090,23 +149726,Nick,60125,170173,2 +149727,,94696,933196,4 +149728,John Aird,258480,1545501,14 +149729,,254869,59540,26 +149730,Dr. Haseem,362057,1567105,14 +149731,MNU Mercenary,17654,1029029,32 +149732,Wakinyah Creature,24090,137970,4 +149733,Tony Vincenzo,32021,14063,2 +149734,Davy Crockett,10733,879,1 +149735,Huoyi's Man,217923,1436290,46 +149736,Donna,3563,212691,14 +149737,,38154,551502,22 +149738,Inspector Wong Chi Shing,11647,66717,0 +149739,Larry,13162,52480,4 +149740,Sedalia Postmaster,183825,108436,33 +149741,Johnny,394822,116264,5 +149742,High Horse,55534,117434,23 +149743,"Phillips, Sports Writer",18774,249,11 +149744,Valerie,70586,108696,7 +149745,Dellenbach,9389,1295637,9 +149746,Yukio's Mother,27276,128024,62 +149747,Kyuta (Teen) (voice),315465,1018944,2 +149748,Spinna,340275,1531604,42 +149749,Hasim,65579,119792,8 +149750,George Weaver,73194,95728,17 +149751,Bryce,50725,56679,14 +149752,Agent One,297853,1790426,14 +149753,German Machine Gunner,150712,1422283,48 +149754,Donald,271718,132157,11 +149755,Lakshya,302472,222767,1 +149756,funzionario di polizia,11048,32676,11 +149757,Party Guest (uncredited),22943,1373120,12 +149758,Aya Amamiya,55197,213495,3 +149759,Kopelkin,200331,18861,1 +149760,Payne,10077,35013,2 +149761,Barber,45215,147525,13 +149762,Pavel's father,260584,1047981,3 +149763,,60199,6240,8 +149764,Skip McCoy (archive footage),262988,12149,7 +149765,Andrew,17216,34489,0 +149766,Parasoldier Leader (voice),166076,10884,11 +149767,Grandmother Hathaway,161482,78740,9 +149768,Kathrin Fitz,364410,10981,2 +149769,Leo,58384,1016025,3 +149770,Agent Hot Rod,12279,1595128,26 +149771,Shemp Howard,85411,31365,2 +149772,Jamie Fitzpatrick,82631,1579,1 +149773,Acme Driver Charlie,250332,89937,44 +149774,Girl Student,16320,80432,23 +149775,Shin Kazama,198993,57733,0 +149776,Amazon Army,297762,1857866,34 +149777,,188180,52357,6 +149778,Toussaint,274479,105762,9 +149779,Vinny,35626,1322070,14 +149780,Daponte,371818,1125959,5 +149781,Second German,25388,1125467,14 +149782,Octavia,97088,49293,2 +149783,Mavis (voice),159824,77948,2 +149784,Lane,24123,126252,17 +149785,Jamie,137145,1106890,8 +149786,Iosef Tarasov,245891,71586,2 +149787,,209413,1486002,7 +149788,Eddie Vedder,171648,1504855,4 +149789,Moana's Fiancé,94727,1840031,2 +149790,,58692,224489,2 +149791,Sword Master,616,1116512,21 +149792,Narrator,52949,1905,0 +149793,"Kume, Samurai in blue",62762,990468,11 +149794,Cara Evans,128311,936571,4 +149795,,166253,35756,5 +149796,criança 3 - Tamara,117534,1825690,31 +149797,Ralph,24801,76101,13 +149798,Himself,15258,53601,78 +149799,Erin,54525,150832,5 +149800,Yamazaki,148371,142489,6 +149801,Sean,40804,236020,2 +149802,Don Thomson,158967,44792,1 +149803,Penny,308,3063,3 +149804,Euboea,297762,1272968,19 +149805,Jürgen the Groundsman,203833,22945,22 +149806,Jean Winters,25941,146768,14 +149807,Ines,374475,7152,1 +149808,Henry Maxwell,147722,34447,16 +149809,Rebecca,81616,2339,7 +149810,il cinno,77000,1851060,16 +149811,Jasmine,15285,1863184,11 +149812,Gar Boni,42752,4110,7 +149813,Doris (voice),10192,44127,17 +149814,Nairomian Crying Woman,209112,1696264,121 +149815,Dick,232672,166029,18 +149816,,231009,105348,7 +149817,Tom Ryan,32540,109321,9 +149818,Scotty Sheldan,130900,125847,5 +149819,Himself,15045,51962,11 +149820,amica di Anna,81787,1074828,4 +149821,Parish Priest,1404,16907,7 +149822,Henry Hirota,42062,96259,9 +149823,Penny Hardesty Pope,266314,7571,3 +149824,David Baker,86600,29069,4 +149825,Don Milgram,12573,55257,6 +149826,Mayor Akerman,270851,1062,3 +149827,Constable Whipple,176867,133275,7 +149828,,267977,1600867,2 +149829,Laura,154441,1135305,3 +149830,Harris,47745,86402,6 +149831,Dave Weston,89647,1231648,7 +149832,,16017,1303088,15 +149833,Sora (voice),16873,1015616,28 +149834,Nicholas,173294,186197,13 +149835,Pat's Mother,122271,7320,7 +149836,Carioca Singer (uncredited),28293,939707,22 +149837,Sammy,153854,1140129,1 +149838,Rory,318553,1411153,9 +149839,Policewoman,16151,79697,9 +149840,Megan Hanson,9963,61098,4 +149841,Elise Tisserand,76821,18219,3 +149842,D S Raj Murthy,42057,165425,2 +149843,Laverne,18446,35036,8 +149844,Mantis,263341,91378,11 +149845,Wang Junshi,311324,25246,3 +149846,Will Lawson,15527,11511,2 +149847,himself,395479,230551,1 +149848,Helena,55495,1839565,9 +149849,Leif,228970,1223463,4 +149850,Steve Elliott,43546,105636,0 +149851,Driver,322,4735,15 +149852,scagnozzo del Clan dei marsigliesi,43646,1735883,12 +149853,Celia Lamphere,560,7639,0 +149854,Max Doyle,58664,80641,0 +149855,Mrs. Reitman,37665,10223,2 +149856,Himself,269797,670,10 +149857,Bellboy,280617,1731870,21 +149858,Narrator (voice),173205,3896,5 +149859,Police Commissioner,183258,939,8 +149860,Maggiore Venturi,55823,103777,6 +149861,postman's mother,390930,72607,5 +149862,Omaki,68715,106159,4 +149863,Pablo Rego,28656,101471,2 +149864,Theodore Honey,43882,854,0 +149865,Doctor,347979,1096488,5 +149866,Herself,181454,1167892,0 +149867,Police Lt. 'Steve' Stevens,34977,10806,9 +149868,Man in Low Rider,370755,37149,11 +149869,Binion,43503,96142,6 +149870,French Girl in Paris,109716,1464780,67 +149871,Himself,333103,1260036,3 +149872,Helen Edmonds,6591,50628,9 +149873,Maitre d',13996,59060,7 +149874,"безработный юрист Генри, доктор права",207696,32626,4 +149875,Kipling Flynn,6972,12536,20 +149876,Clip from 'Hit the Deck' (archive footage),33740,39603,23 +149877,Dr. C.O. MacQuillan,34651,95668,11 +149878,Melvin,405388,1647203,7 +149879,Lars,44716,3398,7 +149880,Togo Railey,9918,60509,12 +149881,Tae-Moo,280019,1336801,6 +149882,Director Kurayami / Dark Director,45489,135131,7 +149883,Andrew Carter,257345,1456341,4 +149884,Henderson,131039,44208,12 +149885,Daniel Severin,19754,114473,9 +149886,Elizabeth Swann,58,116,2 +149887,,186971,1605805,20 +149888,Turgut Özal,52150,90290,7 +149889,Police Chief / Police Chief Auditionee / Himself,430826,1891509,30 +149890,Herself,81538,1156401,2 +149891,Prison Head,4550,39258,6 +149892,David Albertson,245906,1397404,12 +149893,Ambulance Driver,112708,99682,12 +149894,Fred,61644,1168997,3 +149895,,285685,1635351,10 +149896,Valet Parker,22881,1490448,21 +149897,Le chauffeur de taxi,85429,932038,10 +149898,Editor #2,14923,1386351,28 +149899,Nico (voice),172385,134,3 +149900,Adams - Washington Chronicle Editor (uncredited),31773,105810,35 +149901,Carl Schaffner,73027,522,0 +149902,Craig,84892,48463,17 +149903,Pete Regazolli,325133,54697,5 +149904,Thierry,24170,18177,3 +149905,Background Break Dancer,10362,1758902,33 +149906,Miss Evans,3554,13026,5 +149907,Lt. JG Jorgensen (uncredited),10178,40185,20 +149908,Army Captain Brackett,56154,4077,12 +149909,,78258,583487,5 +149910,,355111,33053,3 +149911,Courtroom Sheriff,245706,17193,17 +149912,Tara,73198,1040469,4 +149913,John Burn,65787,19181,1 +149914,Richie Furst,146238,12111,2 +149915,le conducteur de l'estafette,12089,39506,17 +149916,Herself,128216,1126724,38 +149917,Speed Dugan,118953,17759,3 +149918,Chunky,88012,202297,7 +149919,,43967,67471,17 +149920,,172008,1182598,14 +149921,Woman in robbers cave,199463,11917,10 +149922,Emily Wolfmeyer,11354,41292,3 +149923,Karl Plesser,86768,62549,6 +149924,Rembrandt,38322,62646,7 +149925,Stunt Boy on bike,25941,1835528,32 +149926,Danny Reynard,333663,1736791,9 +149927,Bolia,225044,176817,7 +149928,Waldemar Konar,49588,136660,8 +149929,Ronald Fontaine,28061,1375837,5 +149930,Sharifa,205584,75893,19 +149931,Burt,401164,170635,5 +149932,Russell,91390,7678,7 +149933,Jason,91391,939591,0 +149934,Barb,85350,1377614,73 +149935,Dock Worker,16131,79425,14 +149936,Le Toscan,38027,1021400,22 +149937,,257302,1129974,9 +149938,Leonardo Nanni,120972,1357252,1 +149939,Past,16412,30861,2 +149940,Crazy Homeless Man,3563,21485,23 +149941,Laina Päätalo,109861,1845755,3 +149942,Gilead,301875,1223718,10 +149943,Rich,71376,1498258,5 +149944,Fighter,71120,1872248,27 +149945,Marcel,210615,15184,2 +149946,Miss Temple,38684,1089517,17 +149947,Father's Posthumous Buddy,315855,1592947,53 +149948,Rachel,39195,39568,6 +149949,Herself,16428,117091,5 +149950,Sven Skoogh,15179,57013,1 +149951,Bharati,38022,88813,7 +149952,Pavlinka,82040,107943,5 +149953,Devin Roberts,296523,224181,1 +149954,Mercy Humppe,131799,201407,5 +149955,Roman's Neighbour,81223,1139026,3 +149956,,125264,1082345,13 +149957,Livornese,65048,9762,2 +149958,Dream Girl,92496,1794817,24 +149959,Troupe,19995,1207251,35 +149960,Logan,79094,544725,6 +149961,Robert,14650,77284,8 +149962,Captain,30844,109546,5 +149963,Mrs. Demooth,73194,56528,12 +149964,Josh,294652,37289,5 +149965,Jonathan Blake,81687,10922,3 +149966,Laurenz Schmidt,1914,5233,4 +149967,Miguel Kaba,333354,1261694,4 +149968,Mercedes,83430,956987,10 +149969,Peppi 'The Great Butterfly' Grotta,12412,17839,10 +149970,Perrin McKee,80264,589091,4 +149971,Clara,92251,3783,0 +149972,The Chief,55615,223309,5 +149973,Kim,70351,65165,9 +149974,Denis Robert,320318,54291,1 +149975,,42501,380003,17 +149976,Allie,70575,210305,3 +149977,Purishkevich,46827,25666,6 +149978,Akaza,53064,1107770,3 +149979,Magd Liese,153717,1041604,10 +149980,Capt. Ramsey,67669,27763,0 +149981,Club Bouncer,246741,1780265,18 +149982,Slave Trader,115023,40526,6 +149983,Sheriff,304372,1176892,27 +149984,,81435,226439,1 +149985,Mapes,38808,85490,11 +149986,Naima,138502,1108970,8 +149987,Liza Manchester,33592,1226358,10 +149988,,38189,2178,3 +149989,Park Girl (uncredited),337339,1593390,33 +149990,Lee Hwan,280019,1299351,1 +149991,Ferdinand,5048,40900,7 +149992,Honjô (voice),149870,13250,4 +149993,Slave Guard (uncredited),76203,1438307,73 +149994,Le garçon à la bibliothèque,85429,932041,13 +149995,Martin Weir,4551,518,13 +149996,Nurse Kate,204922,564035,4 +149997,Russian Soldier,91480,1361162,12 +149998,Worker #1,16175,79907,14 +149999,Scott Fischer,32648,44990,0 +150000,Maxwell Wizard Wallace,5123,2157,4 +150001,Pierre's Restaurant Patron,43441,121323,5 +150002,Brody,18070,88031,12 +150003,Mr. McCarney,56154,2099,55 +150004,Kathy Caldwell,73257,1245,0 +150005,Lila,37665,22223,4 +150006,Sarah Lambert,169869,12134,5 +150007,Stan,34806,41297,1 +150008,William Jones,293863,3,2 +150009,Market boy #2,1271,1330782,81 +150010,Algy Longworth,140470,3364,3 +150011,The Bosom,5646,44582,4 +150012,Raffaele Cacace,106155,240665,4 +150013,Coat Check Girl,62213,219763,24 +150014,Harold Gideon,33592,544816,7 +150015,Clement,166883,2566,3 +150016,Major Harvey,77794,11859,0 +150017,District Attorney Baldwin,242332,589217,8 +150018,The Mayor,11175,1753684,9 +150019,Little Girl,24202,91350,5 +150020,Executed Prisoner #3,19996,1764141,37 +150021,Manu's friend wife,41252,125926,4 +150022,Vladmir,270774,222881,10 +150023,Matka Kacpra,342765,136734,7 +150024,Rehabilitation patient,262338,1396600,15 +150025,Mabel,99863,148520,8 +150026,Avocate partie civile,329809,1377433,4 +150027,"Dr. Blake (segment ""Vampire"")",26811,77312,4 +150028,Ayşe Dinçer,77862,582601,2 +150029,Steve Watts,333352,84497,1 +150030,Miss Silken,58462,65756,13 +150031,Marc,42664,24685,7 +150032,Miss Adams,29872,139322,8 +150033,,142881,931907,3 +150034,Jimmy Wade,28859,76133,4 +150035,Himself,451709,1795140,1 +150036,Ape Suited Party Guest,40983,26283,15 +150037,First Order Stormtrooper,140607,19506,71 +150038,Etsuko Kugitani,36175,128478,3 +150039,Annabelle Fritton,10748,66441,0 +150040,Last Little Girl,36373,115852,17 +150041,Neighbor (uncredited),53387,89562,11 +150042,Smitty,52859,8731,2 +150043,Hinge,30492,106433,1 +150044,Augustin Haussy,46563,2313,7 +150045,,224951,1210485,3 +150046,Hunter Brute,19898,132186,21 +150047,Richard,31003,24264,5 +150048,Johan,51423,11045,1 +150049,Captain William Denninger,312497,12792,3 +150050,Scrat (voice),8355,5713,12 +150051,,28482,1396497,11 +150052,,41416,150609,6 +150053,Luc Cote,290365,1539219,4 +150054,Nancy Kingman,264080,30043,12 +150055,Kenny,32044,1879983,21 +150056,Mr. Wu,362154,25246,1 +150057,Juana,436,5890,4 +150058,Strutanu,403429,1640627,10 +150059,Modelo rubia,80717,590880,5 +150060,Greek Listening to Radio,179066,1177921,54 +150061,Reverend Henry Stebbins,33112,935845,8 +150062,1960s Hippie Photographer,293863,1459147,29 +150063,,151652,1374211,2 +150064,Marchese di Villa Sparina,33495,130876,16 +150065,Lundström,72785,568682,7 +150066,Mark,176,2135,9 +150067,Dawson,11509,16433,22 +150068,Miss Tipton,40087,1298539,8 +150069,Shakespearean Actor,312669,1662554,14 +150070,Deputy Joe,9287,68446,9 +150071,Court Officer (uncredited),15794,1468172,24 +150072,Cocosecco,77000,543583,5 +150073,Narrator - Afghanistan (voice),173205,1813,3 +150074,Mr. Dickens,213914,28871,5 +150075,Fifth Doctor,419786,47513,2 +150076,Wedding Guest (uncredited),146315,968006,6 +150077,,276906,4175,5 +150078,Sybill Scott,50849,5969,8 +150079,,124075,1434106,4 +150080,Robert,11404,32357,6 +150081,Mme Marais,10268,25346,3 +150082,Shane Roshto,296524,1371237,8 +150083,,52612,20082,2 +150084,Sabine Faroult,139159,49168,3 +150085,Ismaël,64383,20442,1 +150086,Ferri,159211,105341,6 +150087,Himself,121170,57492,2 +150088,Black Eyed Soldier,13486,141470,15 +150089,Nicole,369406,1539088,17 +150090,"James (segment ""La Fortuna"")",211166,91369,4 +150091,Woman,147829,29974,37 +150092,Grandfather,64328,8854,25 +150093,Cafe Lounger,14554,1472667,11 +150094,Pedestrian,268920,1718441,88 +150095,George Saden,4923,33401,6 +150096,Girlfriend in Bar,100275,1323877,12 +150097,,109587,1045424,16 +150098,Donnie,62289,2877,6 +150099,Pilot David,206647,1725801,82 +150100,Bachelorette #2,193893,1381665,50 +150101,Gunnery Sgt. Ben Honeywell,39519,9626,1 +150102,Dr. Knaak,14804,1901795,18 +150103,Cooper,73027,93948,6 +150104,Dutch Contractor,354287,87915,39 +150105,Blow,118760,548089,2 +150106,Tieg,207641,13079,11 +150107,,337549,113528,8 +150108,Guy at Fair,188161,570785,27 +150109,María,42502,180318,5 +150110,Carlos Riquelme,55720,76961,0 +150111,Book Release Emcee,85350,1467542,16 +150112,Nurse Potter,336265,1194703,11 +150113,Yang Lu Chan,121823,1136300,2 +150114,Küster,313896,225907,11 +150115,"Anna, la bonne",55836,18488,2 +150116,Burak,37731,87725,10 +150117,Baby Ugly (voice),13517,1571369,9 +150118,Elisabeth,5899,46451,3 +150119,Mike,11330,21196,8 +150120,Man with Dog,118,47712,28 +150121,Jeannot,64437,13692,6 +150122,Nashby,17640,134614,11 +150123,Larry Martin,120588,14028,2 +150124,Pam,359870,1266503,18 +150125,Anka,71670,1266054,11 +150126,Policier BAC 2,13312,81053,11 +150127,News Anchor,63493,550318,9 +150128,Face Paint,156700,183073,28 +150129,אלוהים,43083,129233,0 +150130,Neptune's Net Boy,68721,1171688,25 +150131,Cecil Gaines,132363,2178,0 +150132,Ramesh,61203,545637,2 +150133,Jack Bryer,17956,169301,24 +150134,Doris Cleavley,340101,1439488,19 +150135,Reuben Kraditor,10362,562949,4 +150136,Tierney,72638,1447952,25 +150137,Alexi Berka,48118,7572,4 +150138,The Unknown,27501,951965,11 +150139,Adolf Hitler,111744,8801,9 +150140,Elias Morales,241239,1417739,16 +150141,Cora,293863,87816,9 +150142,Lucy,159095,587823,0 +150143,Servais Mont,3476,21181,1 +150144,Accountant / Friend,190876,81467,8 +150145,Elena,81022,590943,0 +150146,Jack Hamilton,153161,120716,9 +150147,,19082,110589,1 +150148,Tunston,183832,540363,4 +150149,Prom Teen #4,263115,1838558,48 +150150,Cécile,38021,50,0 +150151,,14804,1901808,28 +150152,Double D,66925,24516,5 +150153,Tony,28682,101599,8 +150154,,134372,98631,4 +150155,Khanna,39347,86017,4 +150156,Sante,155597,1586006,10 +150157,Kid Roberto,264397,1325575,15 +150158,Trial Spectator (uncredited),28000,1468520,37 +150159,Son Gohan,39103,90496,9 +150160,Karen's Mother,322548,54478,11 +150161,Betty Stuart,109475,12519,0 +150162,Nelson,61581,27382,4 +150163,Karl Le Barron,315855,1592940,49 +150164,Solitaire Man,280617,1522153,17 +150165,Bernard Humbert,8070,11550,1 +150166,Michèle Charpin-Vasseur,10930,67532,1 +150167,Agent Wesson,66741,152855,8 +150168,Grandma Belle Hatch,34138,201798,5 +150169,Receptionist,137321,187538,29 +150170,Mrs. Klosterman,142216,91842,9 +150171,Miriam Deering,10299,8725,1 +150172,Police Officer #1,347127,1483783,9 +150173,Orlac,2974,3001,0 +150174,Archibald 'Biscuits' Touie,18446,10430,4 +150175,Harry,9690,684,0 +150176,T.J.,228970,82945,27 +150177,Cassandra,12427,1811524,7 +150178,Alexander Müller,212503,585492,5 +150179,Coco,91259,160371,0 +150180,Gendarme (uncredited),22584,588565,17 +150181,Man in Crowd at Betting Payout,81120,21877,12 +150182,Glenn Russell,43503,4347,0 +150183,Lucas,98277,1849104,15 +150184,Clerk (uncredited),26182,930690,16 +150185,Murray (voice),123025,105641,25 +150186,,253395,92428,2 +150187,Concert Rocker,393445,1699114,9 +150188,Shintaro,402455,224411,12 +150189,Arighis,9503,118617,10 +150190,Xu Chu,12289,1623405,22 +150191,Arthur Jones,34138,110553,2 +150192,Aziza,288977,220236,3 +150193,Young Girl Friend,36236,44439,8 +150194,Rezeptionist,70807,72221,7 +150195,Cowardly Lion / Rastus / Snowball,47508,1041497,13 +150196,Conchita,70712,270,4 +150197,Himself,21671,559457,7 +150198,Papa Angelo,30941,1660811,27 +150199,Daniel Latimer,48207,25638,0 +150200,Rita Kosterman,26204,4800,3 +150201,Captain,13823,75786,22 +150202,Low Light,17421,81178,0 +150203,Anne Burnett,75363,39800,4 +150204,Harry Wharton / Jerome K. Bentley,26849,14564,2 +150205,Freddie,37126,108093,3 +150206,Rory,1116,1412879,15 +150207,Himself,180383,10743,0 +150208,Tonton,8064,1133520,10 +150209,Agent Van Beek,74561,102516,2 +150210,Mechanic,117506,1595057,20 +150211,American Businessman (uncredited),45610,77109,32 +150212,Anna Freud,48231,1089488,25 +150213,Mr. Thomas,31277,1539,13 +150214,Sheriff Jess Holmes,62033,82863,5 +150215,Mrs. Williams,37665,82988,11 +150216,Alexandra,277839,549323,8 +150217,Himself,181454,1345429,1 +150218,Cross-Eyed Painter,81522,38593,16 +150219,Ragazza 'paradiso',61217,1181527,17 +150220,West Indies Club Waiter,14589,70939,66 +150221,Guru,322548,1517843,14 +150222,Kyle Duncan,78403,935286,4 +150223,Rachel Hazes,327237,128859,2 +150224,Hamburger Vendor,175171,33178,13 +150225,Ofer Levi,16019,77820,0 +150226,Sylvia,409536,36190,3 +150227,Samantha,13805,47884,11 +150228,Stefania,121516,45196,3 +150229,Friggi,72596,1011837,8 +150230,Chief Detective Araki,12622,555193,10 +150231,Dmitrievich,63958,235980,14 +150232,Miss Plimpton,86168,33093,5 +150233,Secretary,28421,133276,35 +150234,Carlotta,265717,223621,3 +150235,Sheriff,6948,51539,6 +150236,Dr. Köpf,85699,1349591,13 +150237,Willy Wormser,10626,32585,4 +150238,Carroll Barber,86241,30613,0 +150239,Tina Sharma,30695,87358,1 +150240,Lt. Mitchell,74525,3262,15 +150241,Sir Harry,18506,155209,4 +150242,Rifle Boy,5237,543128,13 +150243,Blofeld's Guard,206647,229320,72 +150244,amico di Luciano,82083,1853102,22 +150245,Chief Rauhuia,248469,82613,4 +150246,Lieutenant Sefla,330459,41044,34 +150247,Zombie,134656,1099827,5 +150248,Vicky,380856,1312970,7 +150249,,177564,18228,2 +150250,Marcel,130739,105775,18 +150251,Otto,302118,17543,5 +150252,Odd's Mother,179826,10839,8 +150253,Himself (archive footage),61487,13604,11 +150254,Henning,29805,1738566,44 +150255,Detective,85656,554073,14 +150256,Various (voice),322487,198540,8 +150257,John Brooks,340103,63812,4 +150258,Muscle Man,92496,1795189,37 +150259,Ian Gilmour,84336,18993,7 +150260,Woman at Craps Table,1726,183037,34 +150261,Babysitter,1421,18481,7 +150262,Mithran,368006,586625,10 +150263,Veuve Adèle Maurin,37454,117668,4 +150264,Davina,447758,9138,7 +150265,,83761,1720056,7 +150266,Dr. Stern,27358,235786,2 +150267,The Girl's Father (Modern Story),3059,29951,3 +150268,"DeSouza, the Team Manager",21567,101864,12 +150269,Line,50181,1609752,7 +150270,Czarina Elizabeth,229134,1133860,7 +150271,Kid's Aunt,243683,1398053,31 +150272,José El Leproso,4497,37511,11 +150273,Uncle Prentiss,27629,85902,12 +150274,Felipe Torrente (archive footage),254869,12089,38 +150275,Wedding Guest,14976,1318900,34 +150276,Gerald Levert,405621,66145,3 +150277,Michèle,63401,19936,13 +150278,Lucius,335778,10993,1 +150279,Geschäftsmann Orloff,83729,147634,13 +150280,Safinaz,38547,120682,1 +150281,Mine Paymaster,333484,1718658,35 +150282,Kim Jin-mo,396535,1164499,9 +150283,Aaron Boone,20481,4138,0 +150284,Miki Miki's Mother,169656,110989,6 +150285,Girl in Womanizer's Meeting,205798,103968,15 +150286,The Virginian,121230,20501,0 +150287,Karan Kapoor,4253,35747,1 +150288,Zenek,200796,127853,3 +150289,,18729,14065,5 +150290,Young Priest,9963,180355,20 +150291,Sean,124501,1813141,3 +150292,Cathy,79120,1562479,4 +150293,The Leningrad Cowboys,11475,69553,3 +150294,Restaurant Patron / Pedestrian (uncredited),330947,1650323,51 +150295,Gregg Williamson,29424,103818,1 +150296,Justin,273510,1125580,13 +150297,Jerome,65123,1190345,0 +150298,Johannesburg Cop,99861,1171654,34 +150299,Todd,27989,15033,3 +150300,Robert,159211,84706,2 +150301,Henchman Joe,40799,124636,7 +150302,Il padre di Loredana,98025,120637,12 +150303,Jo,101929,70131,2 +150304,Tarzan,73551,6102,0 +150305,Captain Teague,285,1430,31 +150306,Alvino Rey,97829,1709448,12 +150307,Millie,24273,238320,5 +150308,Dylan,369406,1539090,19 +150309,,277934,225186,2 +150310,Jenny,302042,1227612,13 +150311,Alisdair Keith,55177,65771,7 +150312,"Kevin, 6-8 Years",71859,1431169,4 +150313,Larry the Cucumber,275136,78298,1 +150314,Esteban,145247,1122546,12 +150315,Deputy Lauro,68750,134859,10 +150316,Akulina,149170,1601626,14 +150317,Himself,5172,14991,39 +150318,Casey Cordero,272693,1277583,3 +150319,,366736,1584555,5 +150320,Viola Hastings,174925,1170316,7 +150321,"Sandía, the video club owner",63066,1867446,14 +150322,Johnnie,123846,77335,2 +150323,,89445,27797,5 +150324,Car Lot Associate,262841,168458,23 +150325,Capitaine Peton,382598,56226,7 +150326,Poker Friend,38031,55689,17 +150327,Marty,1599,14721,8 +150328,Isabelle,195385,145052,8 +150329,Tricia,340937,1377052,3 +150330,Attorney,219345,101377,8 +150331,Government Spokesperson,227094,1052900,10 +150332,Marija,385654,1301978,4 +150333,,270081,1422628,5 +150334,Himself (archive footage),184363,1567685,11 +150335,Emmaline Duchannes,109491,20300,7 +150336,Emily,18739,1712724,7 +150337,Terry,297265,7321,7 +150338,Clara Tollerman,290555,70441,6 +150339,Caspar,313896,1240938,6 +150340,The Fallen,233208,1282038,2 +150341,Ron,54022,1241,0 +150342,Lead Singer,290762,1640425,15 +150343,Mary Katherine (M.K.) (voice),116711,71070,1 +150344,Conchita,45227,1190646,14 +150345,Miss Josephine 'Jo' Spiggins,291558,117073,2 +150346,Don Piper,343795,17244,2 +150347,Fanning,333484,144160,13 +150348,Splinter (voice),98566,4252,9 +150349,Henderson,14552,5576,2 +150350,Richard I. Field,50079,4071,2 +150351,,24426,1421737,5 +150352,Riley,241254,1280,7 +150353,Jimmy Chan (as Sen Yung),38460,82385,3 +150354,Madame De Farge,17831,89928,5 +150355,Samolo,75162,49882,20 +150356,Cap,36737,52703,1 +150357,Véronique Chambon,34013,81821,2 +150358,Phil Morrison,34623,14452,5 +150359,Walter,175035,1042307,5 +150360,Ruth,5638,81555,16 +150361,Eastern Suburbs Mum 1,242224,1413768,8 +150362,,20646,72933,9 +150363,Alexander Trofimovich Petrykin,75262,1191198,3 +150364,Allison Look-Alike,381008,1784731,38 +150365,Jimmy Graham,352719,7505,3 +150366,Celeste Santana,26861,52002,2 +150367,(uncredited),43459,31877,13 +150368,Johnny,124157,125105,9 +150369,Orange Stand Counterman,43809,30530,13 +150370,Steve,38282,87899,5 +150371,,124517,1885269,7 +150372,Barney Newmark,186227,81934,5 +150373,,112244,118989,2 +150374,Señor Gaspar Mendoza,259292,31878,8 +150375,Dan,46420,136349,5 +150376,Abby Reed,39824,203516,2 +150377,Jesse Garrett,201485,37822,7 +150378,Rag. Casoria,56068,37193,3 +150379,Todd Armstrong,76286,22092,0 +150380,Bad Boy,13436,1656878,15 +150381,John Ramsey / John Ramsey Auditionee / Himself,430826,1891499,21 +150382,Kitano,104374,1309472,3 +150383,,149145,109142,3 +150384,Hubus,48778,2407,4 +150385,Peaches (voice),79218,144216,7 +150386,Julie Adams,43491,30269,1 +150387,,375742,1564290,22 +150388,Pastor Arthur Mitchell,14423,8687,8 +150389,Ming,88811,1735839,7 +150390,Mari,131907,144764,5 +150391,(voice),28090,1719903,53 +150392,Stranger,116437,1466293,3 +150393,Osman,17288,980198,1 +150394,Phuchit - age 11,13436,1656873,10 +150395,Scatem Doc,24749,16564,7 +150396,Greta Heinrich,28367,22090,4 +150397,Ned Gold (Teen),16996,42289,4 +150398,Ulvhild,57438,64972,38 +150399,Stiefschwester 2,5393,17414,23 +150400,Freddy,448847,1796126,11 +150401,Rikosteknikko,101838,1029082,15 +150402,se stesso,75336,32375,19 +150403,Ed Solomon,10071,18589,4 +150404,Rzedzian,31273,107866,8 +150405,Bomber Navigator,72431,1286552,14 +150406,Himself,137853,1375250,1 +150407,Cocktail party attendee [cameo],107682,56739,9 +150408,Supt. Newhouse,1942,3359,0 +150409,Teddy Ratliff,59738,168618,1 +150410,Gold Exchange Clerk,43811,33178,31 +150411,Roadside Service Station Owner (uncredited),14615,103753,74 +150412,USSE Bridge Crew,188927,1405540,48 +150413,Alison Scott,4964,25541,1 +150414,Pale Face,116437,1466297,5 +150415,Medical Office Doctor Phnom Penh,49853,1648786,28 +150416,Dani,188507,1016067,8 +150417,Bobby Stilwin,41611,50306,3 +150418,Journalist,31011,1670,10 +150419,,321142,71010,1 +150420,Rascal,325189,1426657,9 +150421,Pan Mlody,82027,592917,10 +150422,Jones,424488,1837281,27 +150423,Hugo,13318,73553,2 +150424,Sugiko,52047,131017,3 +150425,Riley Lawson,15527,34486,1 +150426,Jesse Conner,204839,33848,5 +150427,Léa,85429,48406,0 +150428,Kota,294651,1116510,2 +150429,Bob,158990,21315,9 +150430,Prince Stelio's Gang,19918,1337696,25 +150431,Danai,40127,1331693,4 +150432,Danna Kapoor,253484,1295524,4 +150433,Yvonne,53364,18947,4 +150434,Kenji Sawada,376538,21502,2 +150435,Smithy,22387,29522,0 +150436,Roy Agry,43114,91708,10 +150437,General Lohring,34449,10459,2 +150438,Timmy Burns,1550,17487,5 +150439,Hec Faulkner,371645,4783,0 +150440,Milagros,329805,1650413,17 +150441,Barbara Staton,33801,101327,4 +150442,Nicole,34280,112198,4 +150443,Yu Hao,20342,1630647,6 +150444,Reception Clerk,99229,138850,3 +150445,Sunday,38303,564629,13 +150446,Vishti,48180,140016,10 +150447,Emily (Segment 1),244117,206966,6 +150448,Parker Dray,419430,1234823,21 +150449,Vitalic,171337,1156309,9 +150450,Farley Connors,87293,47628,5 +150451,Diego,257912,936403,6 +150452,Bruce Springstein / Scorpion,331313,10872,4 +150453,Ludo,6077,47801,6 +150454,Isabelle,281968,1424906,5 +150455,le roi,5590,9741,2 +150456,Soldier,74,31132,26 +150457,Ruby,4882,39769,2 +150458,Don Michaelson,5753,45363,0 +150459,Yaël Gonzales,10795,72327,19 +150460,,296491,935976,9 +150461,Elevator Operator,42305,162283,7 +150462,Harriet,17258,11870,16 +150463,,51104,18323,4 +150464,Elizabeth Hawker,46885,1173280,11 +150465,Sheriff,43811,30530,22 +150466,Fire Dancer,243683,1398065,43 +150467,,4932,1138764,33 +150468,Fausto Alarcon,273481,36634,8 +150469,,202239,544623,3 +150470,Hostess,331313,1635194,35 +150471,Eric,255869,84848,3 +150472,"Petr Vasilyevich, Boss",65142,240596,9 +150473,Christoph,9352,50175,8 +150474,Arturo,228290,59270,1 +150475,Homeless Man,12182,62861,10 +150476,Witek,224,2812,5 +150477,Mrs. Katrina Lanzetta,36634,115991,6 +150478,Training Spectator (uncredited),28000,1152705,30 +150479,Miki Hokuto,83389,20330,3 +150480,Dr. Valerie Crane,57680,18248,2 +150481,Toby,37929,119136,11 +150482,Gene Krupa,97829,245910,11 +150483,Thomas George Bracken,50549,11439,5 +150484,Shuhei Hirayama,50759,33135,0 +150485,La belle-mère de Juliette,41211,1670618,13 +150486,Scottie Tate,41402,1753329,18 +150487,Frazzled Mom,427673,1147823,8 +150488,Sylvia,71496,563080,0 +150489,Goldwyn Girl (uncredited),108224,95314,15 +150490,Private McManus,72638,2501,16 +150491,Mother (voice),33065,110036,7 +150492,"Tony, Duke of Breck",107973,14029,4 +150493,Brígida,53739,143227,10 +150494,Physicist,319092,1890109,10 +150495,Infirmier accueil,152989,1146848,15 +150496,Mikhail Oreshkin,278095,235916,0 +150497,,23898,1492895,4 +150498,Old Ned,56151,103895,9 +150499,Lionel Savinet,290316,16923,4 +150500,Thomas 'Tom' Bailey,10761,18352,0 +150501,Mr Lee,375355,1349720,3 +150502,Madam Amy,142984,52031,7 +150503,Niculae,32601,1130129,11 +150504,Gary Stevens,108789,33807,1 +150505,Black,86603,88150,5 +150506,Lei Ming,62762,584527,0 +150507,Nena,1896,131085,15 +150508,Officer Lopez,456101,1842114,8 +150509,Frenchman (uncredited),32552,1159355,10 +150510,Un gendarme,68822,1448493,29 +150511,Wesley,203217,1674715,14 +150512,,86942,18561,1 +150513,Nancy Byrne,167073,1504465,12 +150514,Police Officer,304372,1720650,36 +150515,Crowder,147829,14451,5 +150516,Official - Griffin / Baer Fight,921,129466,18 +150517,Harriet Cathcart,77949,15094,7 +150518,Michael Service,290379,113513,5 +150519,Maria,426230,35552,9 +150520,Bob (uncredited),1976,1132123,40 +150521,Sara,329289,58369,0 +150522,First Alabama Man,72638,110204,23 +150523,Buffy,52661,98608,3 +150524,Sgt. James,151509,39390,3 +150525,Bear,15067,1024395,7 +150526,Detective Nugent,6973,1470,12 +150527,Steve's Dad,63578,1422627,9 +150528,Montoya,9787,59253,11 +150529,Louisa Musgrove,99859,1487246,13 +150530,Kinjal,196852,931417,3 +150531,Tom Crandell,153162,34046,16 +150532,Tramp,32021,99825,7 +150533,Shelly,39072,6913,1 +150534,Peyker - Efsun Anneanne,332788,145726,3 +150535,Les,60125,96595,3 +150536,"Ollie, Paul's alcoholic father",86497,6665,7 +150537,Professor Lina (voice),16873,2165,10 +150538,Lurlene,21030,87007,4 +150539,Klaus,1661,45662,6 +150540,Beetie,39495,123010,4 +150541,Miss Piggy / Fozzie Bear / Animal / Sam Eagle / Marvin Suggs (voice),64328,97185,18 +150542,Smith,91583,14948,4 +150543,Tara,35002,113543,1 +150544,Cpl. Floyd,41468,956518,11 +150545,Vinny / Fernando,74395,14331,3 +150546,Cable Car Heavy,206647,14637,55 +150547,Patrice,158870,170906,6 +150548,Dominic,90616,1776385,10 +150549,Lori Corbett,50126,70175,6 +150550,Petr Petrovich,26873,96513,4 +150551,Monika,48636,1281505,1 +150552,,166253,109173,4 +150553,Asura,181656,90496,0 +150554,Idaho,111479,6862,17 +150555,Roy,9966,32597,1 +150556,Zucco,89086,1469277,17 +150557,Warden,29467,95668,10 +150558,Mrs. Biddle,6069,49821,8 +150559,Les Hirsch,23169,24360,7 +150560,Etienne (as Edwin Nelson),104674,89040,5 +150561,Masked Party Guest,149793,1216356,28 +150562,Mutant Janitor (uncredited),47342,138629,18 +150563,Zeb Rawlins,6643,30527,5 +150564,Luisito,82265,23215,11 +150565,Assistant Stylist,243683,1397812,27 +150566,Álvaro,120129,1028692,10 +150567,Chrissy P,369033,1647320,27 +150568,Gina,40990,18514,1 +150569,Bouncer Richie,246741,1495631,24 +150570,Dad Morgan,228647,107684,2 +150571,Red West,40047,8394,3 +150572,Fiona,9690,58554,10 +150573,Él mismo,415255,1677217,9 +150574,Samurai Ensemble,616,1593826,45 +150575,Groomsman (uncredited),157384,209848,16 +150576,James,227306,1110812,36 +150577,Dancer/Slave Girl,104430,13577,5 +150578,Woo-Jin,338729,1532399,16 +150579,Princess,115109,1471366,30 +150580,Joshua,50416,78797,1 +150581,Karl Tammik,321303,1418968,2 +150582,Capt. Bill Tennant,53865,32428,0 +150583,Mia,300667,1790376,22 +150584,Hashimoto,256962,11398,2 +150585,Commonwealth,76757,1388891,31 +150586,Trina (as Movita Castenada),25807,939707,14 +150587,TV interviewer,27196,8901,11 +150588,sluha,84030,77381,18 +150589,Pete,24020,56120,2 +150590,Driver,268920,1601439,84 +150591,Cherry Lane,128669,143406,1 +150592,Lenny Bar,20200,47820,14 +150593,Karcsi nagyapja,13616,125402,5 +150594,Eddie Nells,38783,25309,4 +150595,Defence Barrister (as John LeMesurier),936,14264,6 +150596,Luca,210913,1108185,7 +150597,Le commanditaire,377853,1105278,21 +150598,,96958,111793,0 +150599,Wynn,381073,1593042,16 +150600,Clemens Trunschka,157420,8198,0 +150601,Mrs. Rose,241239,126713,17 +150602,Shimura Asako,17895,82968,3 +150603,Anne MacKee,26142,77133,1 +150604,Marengelen,37590,1165742,1 +150605,Daniel,108712,55012,16 +150606,Gang Leader,29611,12974,11 +150607,lesbica,108535,103084,16 +150608,Gary Danziger,19610,84915,3 +150609,Sheriff July Johnson,41857,12950,2 +150610,Elinor,253258,131871,7 +150611,Chef de Village,19809,85202,5 +150612,commander,100594,89485,2 +150613,Mère de Ramakant,310567,1304413,4 +150614,Disciple,182127,1440455,33 +150615,Shiela,10921,154395,14 +150616,Minister of Finance,2994,29427,4 +150617,Hatfield Carnes,18447,2778,2 +150618,Detective O'Halloran,3574,103620,10 +150619,Will Turner,58,114,1 +150620,Grant Coleman,70404,14737,1 +150621,Cederberg,80059,6294,9 +150622,Lois,176627,97980,3 +150623,Pastey Jones,186606,1294982,17 +150624,Robert (voice),30060,26858,15 +150625,,81541,572282,13 +150626,Sex Offender,146233,1689981,25 +150627,Nicholas,67748,186550,4 +150628,Suk-Jin,267466,1335772,5 +150629,Uncle Fyodor (voice),77294,86836,0 +150630,Archie (as Earnest L. Hudson),63773,8874,9 +150631,Himself,15258,80742,52 +150632,Le gros homme,271919,1324189,5 +150633,Mr. Kolbe,18530,201811,10 +150634,Little Girl on Santa's Lap,27414,1206237,27 +150635,Sędzina,155325,1616651,23 +150636,Lotte,8948,1391164,6 +150637,Roy Bishop,42187,127555,2 +150638,Rosália,12811,1827455,14 +150639,Nick,307081,1502323,17 +150640,Hank,1659,18405,1 +150641,Frank King,294016,1230,5 +150642,un volontaire,4279,34581,14 +150643,Alana,39845,21215,7 +150644,Médico,299165,1381459,17 +150645,Doc's Wife,370755,1650142,23 +150646,Miriam Wheeler,26823,96366,3 +150647,Paolo,43648,27433,0 +150648,Dealer,169656,1726735,11 +150649,Yuko,377447,1110520,5 +150650,Uncle Arthur,38654,6599,1 +150651,Fiona Champyon,98250,7631,10 +150652,,15830,1439657,21 +150653,Benek,284250,1238865,2 +150654,Noé,382598,1668006,3 +150655,Jimmy,407448,1026889,12 +150656,Sheriff,22602,88652,4 +150657,TV Reporter,29989,20304,5 +150658,Young Patient,27276,9671,6 +150659,Attorney Lang,407448,239271,19 +150660,Treffle,48778,35527,5 +150661,Fort Guard,377170,1003897,28 +150662,Sarah,33272,110421,1 +150663,,105860,1140028,12 +150664,Anna Ioannovna,376188,239720,6 +150665,Jur Kurcewicz,31273,107899,47 +150666,Corporal Fitter,44087,97425,16 +150667,Melanie,117251,58168,9 +150668,Tunç Sözeri,77862,582604,6 +150669,Wally,101185,37055,4 +150670,Alphonse Maréchal,74878,15397,0 +150671,Donkey (voice),810,776,1 +150672,Inspector Simmons,74753,10021,3 +150673,Clinton James,181753,10939,3 +150674,,332872,1042791,20 +150675,Geoff Goddard,26796,52891,4 +150676,Lisa,63190,67320,2 +150677,,19812,89962,24 +150678,sig själv,262713,549526,1 +150679,,141603,1115098,13 +150680,Mr. O'Donnell,215928,12536,1 +150681,Halloween Dancer,11247,568656,48 +150682,Cuthbert,16171,79857,3 +150683,Edna Philby,76211,95312,4 +150684,Dr. Bill Dowd,262841,539,8 +150685,Odette Simone,33314,6450,4 +150686,Monique Laroche,10204,17522,2 +150687,Co-worker,13668,21051,11 +150688,Tisa,27462,97797,1 +150689,President of Capitol State (voice),136368,18999,5 +150690,Le dermatologue,204771,1187207,7 +150691,José Angelo,206563,52583,5 +150692,Zak,84348,98632,1 +150693,"Andy, Delia's Lover",108812,1234544,11 +150694,The Companion,76533,276118,3 +150695,Kidnapper,19621,1408414,17 +150696,Randall Flagg,13519,2977,2 +150697,brigadiere Silvio Camurati,173177,119991,0 +150698,Fighter (uncredited),274857,1361968,61 +150699,Ike Weber,52362,5739,8 +150700,Extra (uncredited),3059,29962,63 +150701,Stefen Kadar,144792,128401,12 +150702,Godfrey,9753,59389,11 +150703,Taylor,300667,1076915,13 +150704,,88273,1433475,19 +150705,Pvt. Baldy,46872,137580,6 +150706,Cleve Jones,10139,46593,1 +150707,Dallas' Girl,77930,84894,45 +150708,,235092,47384,22 +150709,3M Worker,10710,1219576,14 +150710,Al Rasheed Manager,28730,58511,21 +150711,Amy Nightingale,240913,22082,0 +150712,Gabriel Tavernier,184351,16055,6 +150713,,393079,120571,2 +150714,Grover Norquist,45324,190941,15 +150715,Joshua Fleet,245906,62831,3 +150716,Sam,921,42308,46 +150717,Nick,9812,6383,2 +150718,Nicky Barnes,4982,9777,16 +150719,Betty,17209,54044,6 +150720,Willi Hilfe,21451,87546,2 +150721,Eric,221801,1206831,5 +150722,Street Thug #1 (uncredited),15092,1510858,58 +150723,Dr. Simpson,191465,70990,2 +150724,Claire,65156,9599,4 +150725,Bewährungsbeamter,54524,28605,5 +150726,Brothel Punter (uncredited),274857,1771785,56 +150727,Marie,363483,200870,5 +150728,Mrs Farmer,5172,12519,1 +150729,Siegal,88390,152585,12 +150730,John 'Ghost' Wakefield,75752,89809,0 +150731,,278738,1436998,5 +150732,Kuroda,104776,1734703,2 +150733,Cato,49073,1013750,6 +150734,Kiosk Karsten,11196,1018,7 +150735,Travis,16921,2234,3 +150736,Desk Clerk,45838,89609,2 +150737,Mike Hacker,55663,222888,4 +150738,Shanti,7551,33655,6 +150739,Cocoanut Grove Vocalist #1,2567,146084,28 +150740,Inspector Pantaleão,101342,1055133,10 +150741,Chief Berrigan,119364,11998,2 +150742,"Rondell, a Pilot (uncredited)",103938,1186118,17 +150743,Jack Mills,191322,42157,1 +150744,Michal,412363,1672770,0 +150745,padre Benedetto,301272,24290,5 +150746,,68192,99285,2 +150747,El Casper,21191,87263,1 +150748,Velida,211179,796326,1 +150749,Drunk Girl,10070,62818,11 +150750,Customs Agent,63706,550114,13 +150751,Kate Lloyd,60935,17628,0 +150752,,148371,1623419,13 +150753,Linda,773,17420,19 +150754,Rosie Mee,74465,1046348,4 +150755,Ann O'Connor,34334,4160,2 +150756,Shelby,22681,11617,0 +150757,Beat It Gang,39356,89847,24 +150758,Deputy Sheriff Dave,183825,14970,54 +150759,Older Rabbit,116979,110425,1 +150760,Detective Loomis,193603,146417,4 +150761,Pai,436339,1159622,1 +150762,Jefe de funcionarios,110001,30358,5 +150763,Dwight Bradley 'Brad' Masen,68976,12308,0 +150764,Head of Nation,206647,1477143,49 +150765,,71725,1043261,8 +150766,Jude Sawyer,125409,1081332,1 +150767,George,44869,30217,22 +150768,Filkins' Mom,8457,194372,21 +150769,Henry,256311,677,1 +150770,Policeman,62675,44407,19 +150771,Sheriff at Plantation (uncredited),1976,110204,21 +150772,Wiebrand Zijlstra,94674,1004866,2 +150773,Deckard Shaw,168259,976,12 +150774,Master Ou,141138,240174,3 +150775,Nisse,24647,589355,10 +150776,Lime Orism,76757,1394351,49 +150777,Gintoki Sakata,245917,144655,0 +150778,Narrator (2001 Restoration),19354,1464322,1 +150779,Doria,235662,1217003,7 +150780,Beth,213914,81684,1 +150781,Benjamin Brewster,52314,8655,3 +150782,Toilet Guy,102362,226112,33 +150783,Sulu,188927,68842,5 +150784,Sally Diamon,30385,103842,0 +150785,Jay,19166,94137,5 +150786,Shinichi Kunida,46149,135131,2 +150787,Mati Gueta,44511,584171,3 +150788,Himself - Interviewee,76142,2090,4 +150789,Harvey Lansing,26119,1339141,12 +150790,,444623,86151,3 +150791,Sally Ride,177203,201665,5 +150792,Le supérieur,65898,1660662,15 +150793,Rhian,103433,440916,4 +150794,Terkel's Mum,10797,66844,1 +150795,Newspaper Man,369885,1651390,46 +150796,Himself (Professor Tim Ball),3048,29898,0 +150797,Dale,50647,117891,25 +150798,Himself,9951,60804,3 +150799,Mr. Goshdashtidar,7942,53362,4 +150800,Cop #7 (uncredited),49524,1198454,34 +150801,Professor Bill Girdler,100669,1164,4 +150802,Holly Hills,82650,1254435,5 +150803,Mayaway,36530,115533,4 +150804,Olaf,335837,1497341,11 +150805,Draper's Shop Tracy,38448,135434,7 +150806,,37213,115659,11 +150807,Pearl Sequiera,20623,86420,2 +150808,Marie Goldman,37645,76820,3 +150809,Prokurator Janusz Koprowicz,319999,1147,1 +150810,Chloe Beale,353616,29221,2 +150811,Stud,45013,98920,25 +150812,Boy's Mother,10389,551607,19 +150813,Gasmer,23964,33339,8 +150814,Stewart,179066,148006,25 +150815,Upscale Austin Woman,330947,1517547,24 +150816,Physical Therapist,284052,202775,21 +150817,Himself,47426,141679,4 +150818,Eric,45649,154888,18 +150819,Dziewczyna,314371,1583947,23 +150820,Tersh Jeterax,210940,82676,7 +150821,Koslowski,11346,43738,6 +150822,Ville Alfa,33481,16767,6 +150823,Ji-tae,128246,587675,3 +150824,Valmiki,125835,148052,7 +150825,Moon Willis,18446,16119,10 +150826,Mrs. Vogelhuber,62567,977583,11 +150827,Det. Faye Brooks,46121,47769,2 +150828,Dog,26146,117794,1 +150829,Peggy Braden,10025,1294,3 +150830,Anthony Galban,331962,1607562,29 +150831,Gustav,356326,1518349,2 +150832,Vampire Witch / MC,246741,1542446,16 +150833,,278316,1232745,3 +150834,Marilyn,55632,21818,9 +150835,Clara Manni,93863,39274,0 +150836,Billie McCandless,5915,4726,1 +150837,Jim,16151,79376,23 +150838,Peikkaaman,66340,580842,5 +150839,Estefania,331354,132446,10 +150840,Ophelia,15982,79007,3 +150841,Волшебник,27935,1090481,0 +150842,Pussy's Bouncer,6973,61532,29 +150843,Dagley,359412,71518,10 +150844,,116312,37586,19 +150845,Alberto Annovazzi,43372,14814,1 +150846,Manuel - Rosario's Henchman,94182,153296,22 +150847,Robert Cecil,11788,13014,3 +150848,Filkins,8457,19195,5 +150849,Alph,38027,1762433,24 +150850,Beast Master,37958,105496,22 +150851,Jill Barker,245706,72855,2 +150852,Lars-Erik Barring,27622,98443,9 +150853,Murat,157559,556047,4 +150854,Dr. Smith (uncredited),53576,80546,9 +150855,Karl Bern,110525,83253,3 +150856,,92989,1719830,12 +150857,Musician,80324,589248,7 +150858,Maitre d'Hotel (as Vincenzo Salomone),49850,556733,16 +150859,Himself,123074,37935,1 +150860,Melissa Barnes,47386,74131,1 +150861,Les Phillips,264080,44880,6 +150862,"Gunnar ""Gäddan"" Gärdin",145247,92429,4 +150863,Evan Lazlo,262522,65334,4 +150864,Stella Bainbridge,200447,13997,10 +150865,Professor Plötz,82708,48087,6 +150866,"Peter Schuman, Interrogator",19338,52374,1 +150867,Vince,9690,5201,1 +150868,Vito Lucia,32080,15183,3 +150869,Fusako Owada,85844,24551,0 +150870,Witch Kid in Party Scene,107596,1647152,24 +150871,Vigilante (uncredited),61985,34837,12 +150872,Parson Tringham,101915,20425,7 +150873,Jay,2295,19302,2 +150874,Black Devert,179105,23646,6 +150875,Driss,77338,78423,1 +150876,Bar Patron,140607,1399527,60 +150877,Dave Kohl,198277,217371,2 +150878,Télésphore Gagnon,16147,79607,1 +150879,Theatre Audience Spectator,131360,1329662,16 +150880,Maggie,239563,55536,1 +150881,Zarz,7237,30553,6 +150882,Kathy,239566,19,25 +150883,Christine Downs,27045,24321,0 +150884,Mutant Child,263115,1821490,82 +150885,Dancer,170517,1214943,16 +150886,Zeb,168217,5465,4 +150887,Stephen Lake,1942,245,2 +150888,Maggie's Mom,60965,232051,24 +150889,Ignazio Bolognini,56435,3268,3 +150890,Wilbur,112083,5831,6 +150891,Antoine,130055,1090753,5 +150892,Kame Sen'in (voice),303857,554387,4 +150893,Collaborator,107985,34551,43 +150894,Thomas,5899,46452,4 +150895,Fantuzzi,139563,38593,8 +150896,Michael,104644,8606,0 +150897,Cat (singing),90034,1197879,3 +150898,Konrad Koch,58166,3872,0 +150899,Bonejangles (voice),3933,531,13 +150900,Brandon,314283,1216132,2 +150901,Genesis,263472,1078608,1 +150902,Miguel Sulza,111480,87065,5 +150903,Mary Lou,61644,1247415,8 +150904,Savitri Rathore,14467,95506,10 +150905,Animal,28026,46772,4 +150906,Henry Austen,2977,29234,5 +150907,Zimmerman,20196,174426,7 +150908,Pia Bongers,25797,1245226,9 +150909,Lump Hudson,5516,43858,5 +150910,Julian,334527,1865499,16 +150911,Gangsteri,62900,1498236,19 +150912,Goofy,67130,5462,3 +150913,Dr. Elton Monet,33305,137161,3 +150914,,57203,26086,0 +150915,Diana,18467,83155,5 +150916,Badi Ekrem,31408,77349,6 +150917,Wedding Guest,14976,102429,29 +150918,Elviretta,4286,36019,9 +150919,Ruta,131861,15645,7 +150920,Witch,30126,105733,5 +150921,Padre Rentería,198795,105130,5 +150922,Ah Tad's SWAT buddy,18763,1173757,9 +150923,General Kajima,127372,233695,5 +150924,Selma,15936,55536,9 +150925,Sarah Balham,53459,18031,2 +150926,Young Donny,87428,1218506,20 +150927,Gavin Merchant,293660,62915,14 +150928,Judge Rider,67375,11502,13 +150929,,84771,199264,2 +150930,Jim,46660,129527,0 +150931,Alexander Cartwright,103850,1427294,8 +150932,Lloyd Stothers,413992,1506790,6 +150933,Professor Walch,72207,1477296,24 +150934,Ms. Marlowe,44265,21143,5 +150935,Sam,50318,148144,15 +150936,Fille,41493,74736,7 +150937,Chance,70981,228968,10 +150938,Guy in Diner,85350,204904,62 +150939,Dead Child on Road,199575,1438921,43 +150940,"Bakery no musume, Kazuko",135335,1102164,8 +150941,‘The Amazing’ Yen,298,1900,10 +150942,Booking Agent,32610,103501,28 +150943,Tomas Eldan,246127,17051,0 +150944,Greg,12540,65769,5 +150945,Lt. Domingo,39519,136552,12 +150946,Ethan Learner,8954,73421,0 +150947,Busboy,193610,1577501,9 +150948,Ryan,77930,1447863,13 +150949,Mackie Messer's Gang Member,42837,13908,12 +150950,State Trooper Bob,44287,256170,13 +150951,Himself,15258,43120,18 +150952,Smith,344906,1050090,17 +150953,Henri,76871,39180,3 +150954,Bad Boy,13436,1656876,13 +150955,Henchman Joe,183832,34165,21 +150956,Tommy,85350,1467501,3 +150957,Officer Allen (uncredited),31713,121126,15 +150958,Receptionist,44027,136134,9 +150959,'Flash' Harry,14387,47722,2 +150960,Eleven Snowflake,177043,57138,2 +150961,Joyce,381737,156989,19 +150962,Ha Choon-hwa (young),77117,1295457,2 +150963,Rosa Garland,46513,39459,9 +150964,jako Hela Głowacka,406449,1650385,20 +150965,Drew Patterson,15671,1223726,1 +150966,Michel,295964,78423,9 +150967,Howard,287903,28638,4 +150968,Mr. Keller,218784,298410,4 +150969,Dr. Leaner,89481,63073,4 +150970,Ben,378018,553479,9 +150971,Nemai,125727,1192816,2 +150972,Ayalew,12427,1811522,5 +150973,Chris Calloway,82519,3490,0 +150974,Ben Dinuccio,28131,4969,2 +150975,Buyer,76203,156955,37 +150976,Thrasher,26809,74930,9 +150977,Richelieu,41609,1905,6 +150978,Himself,217925,46590,1 +150979,Terence 'Terry' McGinnis / Batman,16234,76621,0 +150980,Dan Howard,120588,1072319,6 +150981,Janice,157351,1518,3 +150982,Jane,91679,228141,0 +150983,Sam,63217,209151,2 +150984,,40130,27390,10 +150985,Ria,15092,39126,10 +150986,Herself,15261,67600,6 +150987,Pecos Hill,43114,8262,6 +150988,,376934,1078989,12 +150989,Ernest Holm,215379,335,0 +150990,Lucia,362439,1523655,4 +150991,(voice) (as A. Polevoy),90001,1417509,1 +150992,Patrick Esposito Di Napoli,21581,71038,2 +150993,Corinne,162382,1413676,2 +150994,Nikolay Klimov,106546,14700,2 +150995,Ed Powers,178927,8517,11 +150996,Alice Klieg,284537,41091,1 +150997,Father,180050,557862,0 +150998,Chewbacca Double,140607,1709041,13 +150999,Kenny,87428,32907,17 +151000,Santiago,48502,140604,2 +151001,Jason Council,9959,26718,21 +151002,Craig,13596,41565,8 +151003,Fanny,288980,5131,5 +151004,Paul Secchi,1481,107474,6 +151005,Zoran,15712,1744121,9 +151006,Frikk,360249,1648971,12 +151007,Gallery director,44793,234030,6 +151008,Frances Triebverbrecher,50725,43115,23 +151009,Julia Meade,56292,11705,12 +151010,Will,216580,1105832,12 +151011,Cocoanut Grove Patron,2567,30617,27 +151012,Pippi,51144,550142,4 +151013,Viper 2,1726,195442,30 +151014,Magda,71133,30664,4 +151015,Daphne,43833,1144087,7 +151016,Koji Komoto,208700,84725,1 +151017,Eric Plummer,61581,67900,6 +151018,Miranda Kilroy,352094,1178995,4 +151019,Don Pietro,335051,57345,2 +151020,Sea Butterfly,13285,74368,5 +151021,Sofía Beltrán 'La chofi',41298,1718461,7 +151022,Himself,157117,78296,25 +151023,,134215,85451,8 +151024,Mob Dancer,85446,1430895,11 +151025,Adolf Hitler,47536,12248,0 +151026,Finance Company Man (uncredited),26182,29579,19 +151027,Bledá dívka,18352,588760,13 +151028,Belana,53486,239942,9 +151029,Alex Confex,35016,1311608,10 +151030,The Kidnapper,49110,21411,2 +151031,Freddy Beenstock,16410,37875,6 +151032,Herself,37514,117846,3 +151033,Meredith,425591,202845,5 +151034,Himself,8847,56081,1 +151035,Kandy Kane,206197,1506485,22 +151036,U.S. Officer P.O.W.,227306,1394457,57 +151037,"Starszy aspirant Jacek Goc ""Gebels""",74919,1147,0 +151038,Mason,259830,94956,2 +151039,Ellen Lucas,33339,110504,1 +151040,Peter Quill / Star-Lord,283995,73457,0 +151041,Rick,176124,1104770,11 +151042,Mini,14134,86031,7 +151043,Squadron Leader Bill Ponsford,41312,99355,12 +151044,Mark Sanders,29695,19393,8 +151045,,142499,1010892,2 +151046,Jörgen,82679,9656,12 +151047,,77673,1664057,19 +151048,Mr. Callahan,84892,11161,15 +151049,News Anchor,199373,1042684,18 +151050,Luis Brenner,248933,213596,3 +151051,,64961,12005,7 +151052,Jörg,369885,1651418,39 +151053,Stan Tilson,16005,159041,6 +151054,Sandra,20221,941639,3 +151055,Female Fan,266856,1503913,39 +151056,Russischer Soldat,613,143674,57 +151057,Fighter,71120,1798148,33 +151058,Major Agatha Doyle,45326,68759,2 +151059,Rhonda Malone,46830,121639,1 +151060,Student (uncredited),23152,12311,8 +151061,Harrison,28482,30963,8 +151062,Andy Brewster,82687,19274,0 +151063,Polític,390547,1621791,5 +151064,New York Pedestrian / Bus Passenger (uncredited),284052,1461332,62 +151065,Beatrice,172828,5960,5 +151066,Pichler,277967,44652,8 +151067,Guillaume Vautier,354105,48997,1 +151068,Olivia,206563,108916,3 +151069,Zoey,76493,1772,4 +151070,Kaptah,24973,14501,3 +151071,Kageyu Saito,14537,76975,1 +151072,Mary Jane Howard,102668,6735,2 +151073,Woman outside Bodega,1550,192602,22 +151074,Ben,209266,1192758,0 +151075,Tommy Durocher,359413,1508581,4 +151076,The Wicked Witch of the East,47761,128003,5 +151077,Donna Baron,94671,169337,9 +151078,Dancer,33541,1208039,57 +151079,Stew,23107,94337,14 +151080,Minna Bernays,48231,1089487,24 +151081,Phelps,144471,151845,9 +151082,Thaxted,131799,1093720,2 +151083,Melissa,76094,17755,4 +151084,Himself,160297,19980,10 +151085,Iain the Socialist,13777,75256,8 +151086,Roundsman Blevins,28437,100800,13 +151087,Toby Wilson,204994,95733,7 +151088,Beth Engel,287903,1252003,6 +151089,Rodrigo,40978,135620,5 +151090,Gloria (voice),10527,9575,1 +151091,Bill,15045,15564,3 +151092,Fog Horn - Taxi Driver,153162,78773,29 +151093,Mei,44773,543789,11 +151094,Vernon,15013,75564,10 +151095,Royal Page,65035,3555,17 +151096,Anton - Werewolf,246741,82666,27 +151097,,15776,1565331,27 +151098,,36615,1294150,2 +151099,Spaceman,33563,26457,5 +151100,Gaston Greiner,144111,14519,2 +151101,Emma,40850,1856228,4 +151102,,53701,133049,4 +151103,Dick (as The Merry Macs),33541,1423926,7 +151104,Harry Parker (as William Peacock),60759,940011,9 +151105,Grant Holloway,116385,2644,7 +151106,Janine,11799,589794,10 +151107,Calvin Joyner,302699,55638,1 +151108,Policeman at Station,1942,33220,19 +151109,Himself,417870,9779,15 +151110,Russian Scientist,2966,1521624,16 +151111,Margaret,387558,10652,2 +151112,Jessie,130925,3234,13 +151113,The Boy,315723,1304662,2 +151114,Günther,197175,32863,1 +151115,Doctor,52302,1185639,9 +151116,Hat Check Girl,14589,1276330,30 +151117,Missoula,26574,80745,4 +151118,,123949,1079143,2 +151119,,18178,585464,6 +151120,Grannen,336806,930582,6 +151121,Ciarli Ciaplin,317723,1413104,5 +151122,Police Officer,14750,1657357,19 +151123,Sheriff Detweiller,9664,33403,7 +151124,Nim,172386,137429,1 +151125,Trixie,384450,144593,11 +151126,Country Bridesmaid,405473,1800043,39 +151127,Ryan,244786,970216,3 +151128,Boyce,69668,13550,4 +151129,Isaac,184098,11702,0 +151130,Richard Hornig,3478,24597,9 +151131,Townsman - Dawson's Friend (uncredited),14615,1272193,44 +151132,Adam,17956,98950,13 +151133,Himself,16800,938998,9 +151134,Andre,397717,1104350,11 +151135,Rose,33623,582057,8 +151136,Cap. Harry/John Cluster,72875,567333,9 +151137,Rory,134656,1099826,3 +151138,McAllister,157898,20364,1 +151139,Magda,63578,224286,6 +151140,Dominick Rossini,39495,18860,3 +151141,Alec Leamas,13580,5341,0 +151142,Gerard,47959,238390,8 +151143,Angie Scacciapensieri,83714,16935,0 +151144,Mike,319910,1717812,17 +151145,Edwin Epps's Slave (uncredited),76203,1438309,76 +151146,The Woman,36113,57912,2 +151147,Stetson,70046,69502,7 +151148,Nick,23048,64342,3 +151149,Frank,139159,223532,5 +151150,Boddington Receptionist,146216,1563887,41 +151151,Molly Roth,41949,57449,0 +151152,8-year-old Noah,57680,991318,7 +151153,Mona Mödlinger,85699,12776,4 +151154,Marta Boghosian,354859,21041,4 +151155,First Elderly Member,77822,975344,16 +151156,Chef Slava,13596,133072,22 +151157,Tiel,265208,76543,12 +151158,Tommaso Lo Presti,403450,575480,17 +151159,Laura Moretti,21062,586271,2 +151160,Gene (voice),378236,51990,0 +151161,Lim Hyeon-bin,83013,578818,3 +151162,Vater Voss,156954,1005461,5 +151163,Waiter,41171,1392751,31 +151164,Miriam,31031,52969,0 +151165,Dr. Jan Falkowski,47535,18616,0 +151166,McCollum,28297,14976,15 +151167,un infirmier,64481,1528891,12 +151168,Mark,192023,1172454,1 +151169,David Bartlett,31509,13789,1 +151170,Young Girl,1963,16262,3 +151171,Kim,82684,207401,4 +151172,Emil,75204,574145,8 +151173,Camcorder / Cave Rake,445602,1757114,13 +151174,Ah Wai (as Stephen Chiau),69727,57607,0 +151175,Young Mark,96987,1011208,5 +151176,Nurse in Operating Room,30921,104609,16 +151177,Marv Merchants,12536,67711,0 +151178,"Alice, l'attrice straniera (as Taina Berjll)",71133,1140887,8 +151179,2nd Bio Man,146926,128189,11 +151180,rejibu Chief,81296,1249688,8 +151181,Lee Joon-young,435821,974270,0 +151182,Billy,149910,1680886,22 +151183,Richard (voice),1387,75027,1 +151184,Spud / Bus Driver (voice),110416,96670,8 +151185,,87953,213438,1 +151186,Jacques Boudet,78210,583329,5 +151187,Sir Fuckalot,7210,48687,13 +151188,Young Killer,49712,1885610,29 +151189,Julie Gifford,106135,146783,3 +151190,Manhatten,80410,21430,2 +151191,Iron-Steel,25425,65976,6 +151192,Nellie,17258,68642,6 +151193,Tine,128900,1158279,19 +151194,Principal,336806,70066,8 +151195,Jean Pierre,173847,1105260,11 +151196,April,146373,3196,1 +151197,Iride,58701,57497,3 +151198,Servant,76757,1394343,46 +151199,Luis,64934,35896,2 +151200,Lisa,98557,58150,0 +151201,Audience Member (uncredited),345922,1574936,54 +151202,Stephen Perrian,47535,40638,13 +151203,Irene,408537,1659288,3 +151204,Bob Adams,20625,144061,4 +151205,Evelyn Riske,82631,18686,11 +151206,junge Frau,130739,1805291,25 +151207,,335340,24365,2 +151208,Count Karneyev,61266,142508,3 +151209,Choi,116488,1326172,3 +151210,Himself,180383,1388080,4 +151211,Henrietta Lacks Neighbor,424600,1704668,27 +151212,Will McKinley,98289,10020,3 +151213,Ruth's Uncle,16563,61101,19 +151214,Miss Julia,392271,85470,3 +151215,Additional Voices,15213,171297,27 +151216,Al,68347,116487,3 +151217,Jolly Woman,118,30320,30 +151218,Chicky,22579,1495519,10 +151219,Kishore Samtani,58051,142627,10 +151220,Additional Voices (voice),82703,84080,33 +151221,Alterplex Narrator (uncredited),423988,1819783,9 +151222,Doris Miller,320588,35,0 +151223,Peter,397422,1607044,5 +151224,Uomo in macchina,106256,120027,10 +151225,Famor,3549,32729,8 +151226,Lt. Dennis M. Foster,43752,12312,9 +151227,Japanese Soldier,256962,1707343,42 +151228,,124597,1186291,13 +151229,Django (uncredited),188161,134,42 +151230,(as Carlos Lloret),299165,1460274,14 +151231,Gail,24094,97452,9 +151232,,418378,1648564,5 +151233,Boris,380731,1643335,8 +151234,Ena,22447,47729,10 +151235,Space People Eat My Mom And Dad,51036,1879473,26 +151236,Joe Williams,85648,1503769,12 +151237,Barista,306952,1511959,13 +151238,Le receleur anglais,55370,1841965,23 +151239,Mr. Chips,42852,3609,0 +151240,,129229,1190266,0 +151241,Fanty,16320,80427,14 +151242,Misty,25111,95428,5 +151243,Jimmie Walker,369524,31366,14 +151244,Marta,258751,572443,4 +151245,Le médecin-légiste,10795,6557,23 +151246,Tom Jeffords,37292,854,0 +151247,jako Mykoła Mełenczuk,406449,1650382,14 +151248,Miss Sue,22881,8534,2 +151249,Weaponers (voice),17445,43125,12 +151250,"Gayle, Angry Mom",58428,90777,5 +151251,Sheriff,186869,1862910,40 +151252,Pageboy at Ball (uncredited),112284,1055290,21 +151253,Christopher Thomas,143144,1118347,3 +151254,Mikes,163791,1444368,9 +151255,Miss Patty,25784,1542133,7 +151256,,86321,10057,0 +151257,Chief Prison Guard,109439,165827,22 +151258,Head of wine factory,128412,1489474,3 +151259,Susie's Soldier,239566,1457281,53 +151260,TV Announcer,31428,1299570,9 +151261,Joey's Family Member,356752,1841507,28 +151262,Inspector Andrés,131932,1482625,14 +151263,Joe Kidd,14881,190,0 +151264,Pfarrer,119820,23528,7 +151265,Mauli / Abhay Singh Nimbalkar 'Prince',304274,84957,1 +151266,Ballard,61985,1307855,15 +151267,Aldo,38286,120019,0 +151268,Bobby,1550,15543,1 +151269,Musician,25855,1489161,10 +151270,Flora,116385,24827,6 +151271,El Mallorquín,131932,1093953,3 +151272,Yuri,10916,43461,15 +151273,Sally Potter,27196,87416,18 +151274,British Soldier,1116,1896889,64 +151275,Oliver Tubbs,36463,30211,2 +151276,Bertie Brennan,10097,63360,7 +151277,Taylor Kilbourn,107250,1608052,11 +151278,Meredith Vickers,70981,6885,5 +151279,Mr. Buttinger,101998,210221,15 +151280,Tun,17111,81253,0 +151281,Mr. Bates,10330,537,7 +151282,,172548,989219,6 +151283,Denise,78571,52442,3 +151284,Willie,83896,1187312,8 +151285,Capt. Paul Raine,257377,18647,1 +151286,Raj,298787,969597,1 +151287,Henry Baker,11007,85140,5 +151288,Chan Ka Kui,10753,18897,0 +151289,Matt Bannister,40744,93105,1 +151290,Czarine Elizaveta II,63538,99263,7 +151291,Olive Dee 'Harley' Klintucker,58918,18285,1 +151292,Bruno,78854,121732,0 +151293,Huguette,10268,64547,11 +151294,Julien,71496,563084,4 +151295,,47324,1620569,8 +151296,Sam,237,3075,10 +151297,First Trial Court Clerk,26323,1420952,19 +151298,Dominatrix (uncredited),7515,208944,15 +151299,Mad Man,13436,1284822,21 +151300,Don / Fat Mutant / Additional Voices (voice),123025,23680,11 +151301,Narrator (voice),56154,1091289,52 +151302,,74674,1445118,20 +151303,Paulo,180371,225099,2 +151304,Richard Morton,4459,10608,0 +151305,Anatol,400552,44639,3 +151306,Michael Stevens,334890,1448222,2 +151307,Convent Demon,405882,73410,13 +151308,Mr. Gorman,80771,20370,11 +151309,Officer Samuels (as Richard Pinner),20174,85775,9 +151310,Lois McDormick,30993,1730666,10 +151311,Tiger Haynes,118131,14481,0 +151312,Hodges (guard),28297,3338,14 +151313,Peter,10201,51329,8 +151314,Bordenave,144111,5832,6 +151315,,324572,114755,1 +151316,,94803,3000,11 +151317,Gisele,168259,90633,14 +151318,Himself,53380,13663,12 +151319,Sandy,1253,7060,4 +151320,Mirko,120922,1091604,11 +151321,James,199575,60005,1 +151322,Policeman,246741,1334712,10 +151323,ICU Nurse,21208,90465,21 +151324,Egypteren,16047,1147081,3 +151325,Hank (voice),127380,18977,3 +151326,Bérangère,9736,581208,10 +151327,Mulatto Woman,76203,1344345,30 +151328,Sgt. Rossi,45522,2314,2 +151329,Isabelle,60420,1293753,9 +151330,Benny Pistone,93457,1072,7 +151331,Asylum Dr. Gordon,41591,8633,4 +151332,Boss Lee,62762,1134800,14 +151333,Doug Stilwin,41611,40433,1 +151334,Colonel Demin,96724,1242809,38 +151335,,32234,934113,3 +151336,Toma,83475,556851,6 +151337,John 'Johnny' Stone,87612,95296,2 +151338,Rebecca,343934,88706,23 +151339,Camilla Fritton / Carnaby Fritton,10748,4757,1 +151340,Puck,63401,1606880,9 +151341,Pavel's Driver,2001,1554915,67 +151342,Jack Moran,76011,82129,1 +151343,Zoe,27873,1338127,9 +151344,Lucy's Driver,240832,1426905,48 +151345,Jack Wood,215928,123879,3 +151346,,85729,80996,11 +151347,Emily Barstow,226354,145116,1 +151348,Ivar,8471,81483,4 +151349,Chanteur opéra,77338,1632535,28 +151350,,25626,1340,33 +151351,Vice-Admiral,217923,1436157,20 +151352,Mrs. Hubble,121674,70961,21 +151353,Mary Ann Coneley,425774,1658650,15 +151354,,75018,32586,2 +151355,Lola Snow,52437,85900,5 +151356,Magnet Girl,76640,200465,15 +151357,Architetto,226936,1432001,8 +151358,Doctor,55589,222685,5 +151359,Herself,312221,1746889,47 +151360,Carlos,31299,1426410,7 +151361,Shelly,75761,514154,10 +151362,Lt. Kathleen Nash,6163,45753,2 +151363,Mamá de María,42502,1664326,8 +151364,Howard,146322,14905,5 +151365,Michel Boudriau,38883,22306,0 +151366,POV Performer,91679,236028,56 +151367,Martin,259616,22743,1 +151368,Uncle Henry,16839,2629,9 +151369,Sophie,38684,84926,22 +151370,Mr. James Smith,50073,30215,8 +151371,bird chirps,72640,1487395,1 +151372,Pfarrer der Frauenkirche,11204,67546,6 +151373,Konditor Schneider,8948,572646,3 +151374,Red Riding Hood (voice),57089,17265,0 +151375,Patrol Officer,27276,551828,15 +151376,Þorgeir,26880,96523,0 +151377,Farero (voice),177714,1027769,3 +151378,Blonde in Hell,27814,1096097,6 +151379,Reed Standish,25330,4443,3 +151380,,252059,1459888,3 +151381,Hittite Officer (uncredited),24973,106102,14 +151382,Padre di Diego,53805,78447,15 +151383,Major Esdras,132608,1046025,3 +151384,Prof. Groeteschele,31067,5587,7 +151385,Weasel,285946,1163254,9 +151386,Salvador Dali (voice),13654,1359944,13 +151387,Mr. Dark,30141,142204,12 +151388,Telki edzõ,13616,125435,3 +151389,Clerk at Inpound Office,11045,10872,9 +151390,Nathalie,43281,53905,1 +151391,Joe,31548,98568,3 +151392,Doña Mercedes,38244,23877,8 +151393,Gerrit Dou,214641,39952,1 +151394,Trevor,172520,1487029,7 +151395,Il Vescovo,11972,1303003,5 +151396,Mrs Champion,149926,1216369,22 +151397,le pirate,79372,9067,3 +151398,,325428,1427183,2 +151399,Sacerdote,41298,1104719,17 +151400,Matt,278632,1371104,7 +151401,Island Girl 2,9753,58978,10 +151402,Woman Exiting Emmadel's Home,27629,121323,21 +151403,Mariner,245700,65303,49 +151404,Phoenix / Wen-Ching,127329,148890,0 +151405,Otto,258585,93004,4 +151406,Helen Hayes,27777,98971,2 +151407,Double Talking Convict,26376,126836,71 +151408,Flight Sergeant,81110,1535462,21 +151409,Dean Walker,13075,11160,3 +151410,Husband Leaving Train,244201,119548,16 +151411,Alexa,387999,1745924,4 +151412,Arif,117120,150072,6 +151413,Vladi,45243,1716,19 +151414,French Officer (uncredited),22584,120703,32 +151415,Amber,347630,183073,4 +151416,Mrs. Gey,424600,1546539,18 +151417,Young Owen,374461,1678709,9 +151418,Jiisan (voice),21712,90159,2 +151419,Richard Benson,132928,30237,5 +151420,Douglas Riper,20106,61985,1 +151421,Yuko Kodai,391642,80755,5 +151422,Stranger,377587,214108,9 +151423,Della Deane,37725,133196,4 +151424,Gloria O'Neil,12855,81071,4 +151425,Gunn,100088,4774,0 +151426,Lisa,8457,41087,1 +151427,Andy Hacklin,48949,133846,11 +151428,Casey,383140,1273742,11 +151429,Prince Alexander Stofani,32996,109898,7 +151430,Soviet Delegate,15371,553099,10 +151431,McKendrick,11509,12889,27 +151432,Mrs. Scarff,73027,567809,7 +151433,Allison,253284,557580,1 +151434,Hector - Barber (uncredited),14615,90333,49 +151435,Harold Tracey,84496,37712,8 +151436,Mrs. Webb,21780,86048,14 +151437,Rodrick Heffley,60307,90498,1 +151438,Lee Jin-Tae,11658,16962,25 +151439,Sketchy Man,259997,1302509,28 +151440,Lt. Sanderson,7445,1333907,16 +151441,Pompo,53805,23367,5 +151442,Fred Beehouse,229610,85958,10 +151443,Artist,169355,19552,19 +151444,Lab Tech,23628,90402,9 +151445,Reiko,18585,80864,5 +151446,Osama Bin Laden,97630,1061516,10 +151447,Actor,16151,79720,33 +151448,Carlito Kane,169298,783,3 +151449,Corrine,52454,109503,9 +151450,Dr. Coopersmith,37923,119113,6 +151451,Joyce,47638,194418,8 +151452,Tuptim,43471,30289,2 +151453,Dr. Dobbyn,60269,1605161,15 +151454,"Fred Colton, Police Sound Man",36634,22093,15 +151455,Judge Reynolds,239563,1397945,25 +151456,The Dutch Businessman,1690,33938,5 +151457,Nicole,87936,119668,8 +151458,Steven,17473,81924,8 +151459,Schneider,52475,146063,11 +151460,Lawyer,354979,1636764,38 +151461,Noriko Mamiya,50247,95504,0 +151462,Lee Jin-Seok's grandaughter,11658,1254059,30 +151463,Reaver,263115,1838548,29 +151464,Chinese Anchorwoman,5172,1016954,49 +151465,John Graham,174195,34084,7 +151466,Officer Mehar,345922,466505,6 +151467,Hyresvärd,377290,1097786,12 +151468,Hasan Ağa,123611,590773,2 +151469,Senator Jummy Simpson,90799,33033,6 +151470,Jost,11248,42276,10 +151471,Himself,21671,983578,13 +151472,Jimmy John Wilson,48627,1646730,9 +151473,Policjant z urwaną ręką,91691,591265,9 +151474,Mary Morriss,425774,1707912,34 +151475,,127257,992978,2 +151476,Minister,6023,1376588,15 +151477,The Older Sister,191068,100045,0 +151478,Mr. Rene Salmon,64928,30215,7 +151479,Paula,72875,567330,1 +151480,Annie,146313,87280,7 +151481,Shopkeeper with Gun,51999,1531097,18 +151482,Peter,29101,107204,4 +151483,Margaret,59678,1233838,18 +151484,Stevie,27196,96697,9 +151485,,438597,1642341,6 +151486,,31027,1619293,8 +151487,Norman Clark (as Ernie Orsatti),56533,112572,11 +151488,Jerry Cavanaugh,33923,19400,13 +151489,Erik Selvig,99861,1640,17 +151490,Jyn Erso,330459,72855,0 +151491,,105760,13843,6 +151492,Horst Schlämmer / Uschi Blum / Gisela / Angela Merkel / Ronald Profalla / Ulla Schmidt,27637,66893,0 +151493,'Bat' Smithers,111470,1344747,23 +151494,Captain,24731,12852,3 +151495,Higen,616,1116510,19 +151496,Floor Manager,51828,971049,26 +151497,Sally Jones,37929,36042,1 +151498,Mrs. Nixon,65650,150972,8 +151499,Rachel,24123,142736,8 +151500,,206157,9994,2 +151501,Dr. Milton Lippman (as Joe Mell),52867,83913,10 +151502,Prisioneiro 3,70666,1863914,61 +151503,,74481,52974,6 +151504,Aditya Ishwarchand Thakur,31364,35070,1 +151505,,19552,1275928,19 +151506,Webb,831,120070,10 +151507,Moody,333484,10128,30 +151508,Eve,239056,973816,8 +151509,Paro's Friend in song 'Chammak Challo',102632,1246781,12 +151510,Déa - enfant,151826,1172637,8 +151511,Dancer,11247,63680,61 +151512,Irina,123103,84778,5 +151513,Coach Palmer,17306,670394,10 +151514,Frances,300667,58643,7 +151515,Warden,257344,1683860,64 +151516,Marco,47120,1041572,7 +151517,Mac's Secretary,157898,1429728,9 +151518,Angus (voice),333667,1926,2 +151519,Luke Miller,73348,29718,2 +151520,Inky,269795,1383834,4 +151521,Mrs. Barthory,1691,45571,18 +151522,Connor,345054,1424712,2 +151523,Maren Zeidler,2692,22974,11 +151524,The Father,4538,76793,10 +151525,Eva,394645,939150,1 +151526,,301671,1120251,10 +151527,Eric Carson,29168,63204,1 +151528,Tony Gaudio,1877,42547,3 +151529,Valmir,82624,1127916,9 +151530,Doreen,30996,1547067,14 +151531,Chan Cheung's friend,117506,64383,9 +151532,One of the Oreos,19610,84916,4 +151533,Ibis,76757,971049,14 +151534,Amyak,39308,1173728,3 +151535,Man,134238,121250,38 +151536,Dean Sawyer,42734,14361,10 +151537,Gypsy Child,16182,79937,21 +151538,Marchesa di Mola,70734,1068405,2 +151539,Special Agent John Downing,38202,8192,1 +151540,Maria Quinn,87388,55635,0 +151541,Hannes,157420,20270,5 +151542,Zoltan,181456,26959,30 +151543,Mike,22579,1503647,13 +151544,June Daley,142946,387,1 +151545,El Huron Bodyguard (uncredited),15092,99145,88 +151546,Himself,61550,233302,11 +151547,Maður á hesti,72596,2311,7 +151548,Morha,27270,163241,3 +151549,,124075,1434104,1 +151550,Prof. Quincy Adams Wagstaff,13912,10798,0 +151551,Marthe,145191,1122426,2 +151552,Penny,30934,107003,9 +151553,Col. Marshall,85610,1096127,3 +151554,George,85230,1582,4 +151555,Freund 3/Zwerg 3/Bote/Wolf 2,5393,78798,18 +151556,Trixie (voice),10193,109869,17 +151557,Dorothy Saunders,108282,931941,16 +151558,Emmanuelle,361571,1664569,3 +151559,Maria,46128,10777,4 +151560,Himself,36325,1096497,3 +151561,Burke,40925,84841,7 +151562,Sasuke Uchiha,16907,82056,2 +151563,Nino,73872,132419,1 +151564,Maksim Lavrov,267481,1257118,1 +151565,Andrej,49940,579249,4 +151566,Ticket Agent,3937,30280,13 +151567,Det. Lt. Pringle,45726,81179,3 +151568,Oceania Store Owner,118957,62744,16 +151569,,217341,83222,4 +151570,Luna,24775,65196,7 +151571,R.C.,12526,21044,3 +151572,Young Joe,424600,1704666,25 +151573,Cherubini,48805,141114,15 +151574,Motorcycle Cop,310133,1507368,5 +151575,Jack Burden,1717,9642,1 +151576,Officer Ted,157351,49275,8 +151577,Various,18809,149979,5 +151578,David,13544,833802,0 +151579,"Mizuhara, Omitsu's husband",126516,213511,1 +151580,,338079,1383088,2 +151581,The Fool,46915,5049,1 +151582,Intern #2,369033,1442976,25 +151583,Laurie,110909,41087,4 +151584,Cyril,4688,38947,8 +151585,German Machine Gunner,150712,14752,33 +151586,Camera shop clerk,43751,100702,10 +151587,Evie Spangler,60662,14704,1 +151588,Nina,228331,10478,0 +151589,Herself,19610,84919,8 +151590,Band Groupie,97683,1102515,7 +151591,,267481,587159,14 +151592,Aunt Florentine,66967,15385,1 +151593,Victim's Friend,226630,58804,5 +151594,Kelly,219345,163869,6 +151595,Parviz,79466,51348,10 +151596,Nativity Watson,36807,6944,7 +151597,Corey Jr.,41030,140411,7 +151598,John Worthing,241302,47654,0 +151599,,27276,551851,42 +151600,Dr. James 'Jimmy' Kildare,153162,2007,0 +151601,Marty Miller,322460,8255,3 +151602,Maggie Barnes,2274,23496,6 +151603,Ruthie Day,190269,1016036,4 +151604,Will Lane,202941,1935,0 +151605,Lexie,63197,236597,3 +151606,Jeff,67693,124783,2 +151607,King Peppy (voice),136799,4175,20 +151608,Jack Edwards,159701,239945,0 +151609,Dr Goldschein,182228,145812,7 +151610,Alice (English),18917,94959,1 +151611,Hoplite Soldier #2,37958,1066472,26 +151612,Casey Price,47115,58332,8 +151613,Himself,84309,17051,7 +151614,Barry Safchik,31377,108036,13 +151615,Jurgen Kreiner,378607,1249928,6 +151616,Denethor,1361,16412,2 +151617,Tschakko,9803,59333,2 +151618,Harry Flournoy,9918,51684,5 +151619,,74171,571446,4 +151620,Kati,164419,53512,1 +151621,Rabbit (voice),24926,40352,2 +151622,Himself,140554,1707821,10 +151623,Himself,266782,11669,11 +151624,Tono,481,6523,0 +151625,Bernd,1912,6085,9 +151626,Doctor Blaine / Doctor Bowers,85420,40176,10 +151627,Maresciallo Tagliaferri,95096,98788,1 +151628,Yuri,13336,52346,10 +151629,Johns Hopkins Student,424600,1704669,28 +151630,Henry Petosa / Freddy Ace,115565,8654,0 +151631,Robert Kaluza,296524,60677,10 +151632,Puppetteer,25425,65975,1 +151633,,16843,201862,0 +151634,Marilyn Stonehurst,108282,940312,17 +151635,Himself,40863,18897,0 +151636,Soldier,3146,552170,12 +151637,Maxoye,276220,5418,2 +151638,Judy,24927,989675,9 +151639,Lorenzo,1428,20231,6 +151640,Mr. Joshi,21570,629478,8 +151641,George,121923,12440,5 +151642,Inez Millholland,49007,15887,10 +151643,Holden,226140,67979,7 +151644,Quiz Master,203321,1773021,13 +151645,Franz,136466,945442,4 +151646,Stella Forsberg,28062,79270,4 +151647,Risto Vierikko,141971,89512,9 +151648,O'Keefe,75300,17874,4 +151649,Alibe Silver,83191,7063,8 +151650,Lyubava (voice),33065,110032,1 +151651,Herr Fink,119820,91276,12 +151652,Prof. Luigi Pelosi,152100,119993,3 +151653,Teenage Twins,107985,1200858,18 +151654,Eric Whitlock,34078,83807,0 +151655,Anna,390059,15556,1 +151656,Hell's Angels Director of Photography,2567,141762,35 +151657,Dan W.,369033,1647318,24 +151658,Raven,42852,7383,27 +151659,Giuseppe Sobreroni,169069,27272,2 +151660,Teal Eye (Blackfoot Princess),43367,231228,2 +151661,Mrs. Bogardus,20153,85738,10 +151662,Photographer,56558,1491962,33 +151663,Lloyd Crane,65282,24556,5 +151664,Annie,226701,71128,0 +151665,Fred Garland,46513,30710,1 +151666,,85126,15186,12 +151667,Akaza - the Father,137504,1423502,5 +151668,Vivian,263472,13023,4 +151669,Once,91691,83264,0 +151670,Cholo,227348,1117232,5 +151671,Detective,127812,921738,14 +151672,Camille,259694,968350,14 +151673,Raver / Vampire Bodyguard,45273,1275665,10 +151674,Ancil Hoffman,921,1226313,21 +151675,Mrs. Radcliffe,2977,15737,15 +151676,Orderly in Maitland's Office,257081,14454,26 +151677,Claire Ruth,61225,11084,1 +151678,A.K.,172396,27763,0 +151679,Cricket Boy,113038,1056212,7 +151680,George M. Cohan,3087,5788,0 +151681,Desk Clerk,26283,95017,9 +151682,Cop #1,12594,95192,8 +151683,Himself,150049,78938,2 +151684,Deputy,72912,68180,5 +151685,Pink Guy,320588,1538578,26 +151686,Jill Simmons,33339,1024398,4 +151687,Stewardess,17796,14990,9 +151688,Militant woman,3023,97257,15 +151689,Ilona,20160,148038,3 +151690,Young Odd,179826,1291693,22 +151691,Sam,47863,154584,14 +151692,Swami Ji,285803,52773,3 +151693,Louise Scarangelo,13312,73714,2 +151694,Jim Clarke,207641,107461,15 +151695,Fernando,117534,225099,0 +151696,Phillip Dudley,4441,37293,9 +151697,Ramon / Lovelace (voice),65759,2157,1 +151698,Jon Koski,87293,10127,0 +151699,Frederick Philipson,274990,4456,6 +151700,Yosho,14829,84508,6 +151701,Jake,250332,126836,66 +151702,Himself (voice),378441,1643917,6 +151703,Martín Saldaña,13495,1033064,10 +151704,Kevin (1989),16996,1579575,34 +151705,Roddy,216580,1333941,11 +151706,Thug #1,45132,1207723,44 +151707,Helipad Soldier,53870,59185,21 +151708,,38154,93892,12 +151709,,219666,1153620,4 +151710,Anthony Hopkins - mathematician,19757,138843,1 +151711,Hermes,32657,79149,39 +151712,GM Pilot,284053,1813771,21 +151713,Il carabiniere (voice),136619,126398,6 +151714,Danny,1404,480,8 +151715,Society Lady,267793,101336,17 +151716,Ivan's chief,70966,240543,4 +151717,Dwyer,23966,82819,6 +151718,,34181,202598,11 +151719,Willie,10918,134894,13 +151720,Catherine Turner,339408,1205388,15 +151721,Hotel Visitor / Pool Revelor / Party Goer (uncredited),331313,1767220,49 +151722,Carla Vesari,4820,19534,1 +151723,Rahul Malhotra,54814,52763,0 +151724,Erebêtâ no Onna,11838,552507,14 +151725,Marie Antoinette / Egyptian Woman (voice),82703,1054484,11 +151726,Barlow,294690,1390501,13 +151727,The Rat,1415,32598,7 +151728,Psychiatrist (uncredited),15092,34485,74 +151729,Lacey,281418,94098,3 +151730,Miss Great Britain,55694,1286729,12 +151731,Redneck Joey,48319,22113,8 +151732,Saleslady,43441,8638,12 +151733,Michelle Morris,1125,15566,7 +151734,Damiana,127424,1084475,5 +151735,Mall Mother,38322,51751,19 +151736,Ingrid Cortez,12279,17832,1 +151737,Toby McLean,198227,87459,1 +151738,Lillebror,33407,110598,0 +151739,Master Roshi,14164,1619,0 +151740,Mike Rofano / Fred Morton,26801,16766,2 +151741,Danny DeMarco,265208,16501,2 +151742,Knight of Ren,140607,1345950,55 +151743,Tegan,369406,1265629,6 +151744,Michael,291871,928577,3 +151745,Vera,358724,1506903,2 +151746,Mrs. Laura Alden,178927,921146,1 +151747,Madame Chin,29100,102915,7 +151748,Andras,102362,1187,27 +151749,Daisuke Ido,17189,144942,3 +151750,Oliver,83015,1834959,35 +151751,Fat Lady at Charity Bazaar,21451,564871,11 +151752,Ward Hill Lamon,161187,109174,1 +151753,,235092,88614,14 +151754,,27276,551861,52 +151755,FBI Agent,57100,942165,10 +151756,Hospital Receptionist,153,30562,22 +151757,,17582,1619150,4 +151758,Duc di Salins,64605,50835,8 +151759,Interrogator #2,24094,97447,4 +151760,Sander,31264,136411,9 +151761,Megan,222890,84466,4 +151762,Lloyd Thomas,121923,18647,2 +151763,Cord,23739,90539,1 +151764,Licia,93492,1174012,8 +151765,Wedding Guest,14976,205797,31 +151766,Secretary of Space Drake,154371,130423,5 +151767,Nelle Marchettis,19335,84485,3 +151768,Herself - Model,327083,1248829,20 +151769,Lord Willens-Hortland,46586,27929,19 +151770,Juliette,73562,19937,0 +151771,Matushka Alevtina,51275,93548,1 +151772,The Minister,11832,579203,22 +151773,The Triton (prologue) (as Uni Apollon),183932,1381507,1 +151774,Charles Kaznyk,37686,518628,2 +151775,Ruthie,9953,60877,11 +151776,Andy Moon,354287,1394670,8 +151777,,114982,1060187,5 +151778,le premier ministre,5590,34594,6 +151779,Josh,32124,108919,9 +151780,le grand-père d'Adrien,64481,24477,11 +151781,Herself,269797,3242,9 +151782,Ellis,266856,1052256,13 +151783,Anna,243935,106791,10 +151784,Renee Kyte,149600,61186,4 +151785,Denny,17287,84275,4 +151786,Airport Traveler- US (uncredited),213681,1771580,51 +151787,Flora,66893,1095726,4 +151788,Mrs. Saunders,67794,1013092,5 +151789,Grandfaher Magomed,335819,124268,5 +151790,Jack Mitchell,29424,103821,4 +151791,Gagarin,171337,1156306,2 +151792,Father,338189,1650717,6 +151793,Sting,5559,982,22 +151794,Grace,109453,1107486,14 +151795,Cameron,57749,61777,2 +151796,Sophia Davis,302042,1384315,4 +151797,Tanka,31162,1257000,10 +151798,Porthos,64046,235981,3 +151799,Finn,46026,131386,6 +151800,Newsboy at Train Station,18651,1467402,70 +151801,Tango's Woman,4982,1218227,46 +151802,Tribunal Chairman,32577,71584,17 +151803,Vandersteen,52045,145235,3 +151804,2nd Marketing Guy (voice),73723,73476,10 +151805,Kees Popinga,37340,4113,0 +151806,François,48601,32827,4 +151807,Sub-Section Chief Ono,3782,96552,8 +151808,Cabo Mendoza,97593,104483,0 +151809,Paul Kedes,76714,4765,2 +151810,,336484,1112311,7 +151811,Yumi Kohama,21057,933722,4 +151812,Roland Spremmberg,140554,45268,36 +151813,Lois Lane (voice),14011,26467,10 +151814,,17582,1358560,3 +151815,Bernd Wand 1983,140554,1707834,27 +151816,Zaneta,356191,1527552,1 +151817,Front Desk Clerk,115626,92619,8 +151818,Mary,23107,1262420,12 +151819,Greg,9870,1520267,14 +151820,Ruth,83588,81726,6 +151821,Captain Leary,56527,12132,5 +151822,Mr. Chow,45243,83586,4 +151823,Helper,9252,1322958,22 +151824,Claudine (voice),52264,5657,16 +151825,Chuck,14907,578782,2 +151826,Devi lal'w Mother,280690,87304,10 +151827,"jako Romek Głowacki, brat Zosi",406449,1650377,9 +151828,Dr. Thomas Richter,8888,169,3 +151829,The Skull (voice),19594,13472,5 +151830,Erika,33786,111362,1 +151831,Duke (voice),328111,156962,1 +151832,Liv,88486,39672,3 +151833,Hasse,2061,21193,5 +151834,,27276,551857,48 +151835,Jane Ashton,18283,121765,4 +151836,Stefan Schmidt,212503,6644,4 +151837,Tucker,924,20196,11 +151838,Jenny Fisher,35826,13023,2 +151839,Brooke,1415,10871,9 +151840,McClosky,128644,11765,4 +151841,Ford Daughter (uncredited),76203,1438683,92 +151842,Claire Whitmore,112083,120050,2 +151843,Butch Roberts,13802,1232094,29 +151844,Duke's Driver,23750,31493,20 +151845,Alma Borg,18333,11916,1 +151846,Smoke,88375,7077,11 +151847,Himself,17302,81581,1 +151848,Reporter,26881,567079,19 +151849,General Fu Zuoyi,25626,1624096,17 +151850,Helen Frayne,43855,165165,3 +151851,Angelo,330115,1017347,2 +151852,Emilia,85543,932376,1 +151853,Amy,88390,16158,19 +151854,Dr. Rosemary Myers,86131,16131,3 +151855,Hamilton Burgess,14047,31135,5 +151856,joanna goodman,37865,10431,1 +151857,Danny Klempner,54139,30551,7 +151858,James Stewart of The Glen,142150,47778,11 +151859,Kate,13834,2713,2 +151860,Jackie Chesney,72611,558049,6 +151861,Sarah Chen,72094,25540,6 +151862,Captaine Edward Teach alias Blackbeard,69784,18646,4 +151863,Monique - Maxi's friend,46773,1523001,11 +151864,Lui Fook,55156,65944,8 +151865,Himself,15258,12219,84 +151866,Tenzing Norgay,211088,1304681,2 +151867,Goodenow,94225,1176578,3 +151868,Ignasi Solé,1896,19828,14 +151869,Police Sergeant Barry Clive,91181,83476,1 +151870,George Lowe,211088,1304682,4 +151871,Col. Hector Phyffe,90799,14563,1 +151872,Hotel Clerk,53853,29987,13 +151873,Mother,324440,578948,3 +151874,Coach Burt Cotton,22881,1472,6 +151875,Sally,99318,1209491,7 +151876,,225503,1210953,9 +151877,Frau Baumann,130739,1805286,17 +151878,Seth Holcomb,31509,100041,11 +151879,Host,123109,1820643,13 +151880,Ryno de Marigny,2002,4704,1 +151881,Tetsuo Horino,88271,239649,1 +151882,,241340,67676,0 +151883,Dr. Herman,270650,1282198,17 +151884,Prescott,12536,18917,1 +151885,Guy Who Runs Into Store,253077,176031,7 +151886,Outpost Tech,324670,25730,15 +151887,Charlotte,263115,1788169,37 +151888,Gypsy Horse Trader,36597,1234388,17 +151889,Mme Delacre,78789,19363,5 +151890,Son Of Man At Gas Station,228970,1495097,55 +151891,The Joker (voice),411802,963818,2 +151892,Bus Hustler,83588,1066329,9 +151893,,301671,35759,11 +151894,He Yi Chen,334132,109434,1 +151895,Mum,225283,1373734,6 +151896,Marcus,33784,111349,2 +151897,Paul,140846,964421,9 +151898,Arbo,226001,49842,0 +151899,Bobo,42062,11544,0 +151900,Queen Athena (voice),13676,1461217,11 +151901,Gustin,166883,12269,7 +151902,Deerfoot,131360,1319258,14 +151903,JD McQueen,31277,81390,0 +151904,,265180,1151383,8 +151905,Dorothy,167073,1228351,21 +151906,Taxi Driver,38681,128435,8 +151907,Lord Mo Cong,186881,240174,2 +151908,Maitre D',28455,100864,9 +151909,Рада,50186,237447,1 +151910,Professor Aditya / Gabbar,337876,35070,0 +151911,Dean E. L. Martin,239018,156818,14 +151912,(uncredited),43778,941204,10 +151913,Chirin's Mother (Voice),77859,1241730,2 +151914,Olga,60677,79768,7 +151915,Himself,111332,56338,15 +151916,,69310,134184,19 +151917,Carole Landis,106821,33229,1 +151918,Mutter,2241,10257,1 +151919,Shouting Man,24469,1579239,17 +151920,Dollar-Hanna,61121,232397,0 +151921,le co-détenu,76207,23480,11 +151922,Kate,169794,1152009,4 +151923,Tomi Hirayama,18148,134307,1 +151924,1st Physician,7096,649,19 +151925,Robot Courtesan,283995,1772601,48 +151926,Frank,32068,78309,5 +151927,Fraternity Pledge,33343,1188783,14 +151928,Jornalista,48962,1184333,17 +151929,,125835,586628,10 +151930,Murano Satomi,282069,559413,4 +151931,Marty,87826,31903,2 +151932,Young Tommy,21138,87148,3 +151933,Minor Role,41597,953446,25 +151934,David,11247,80582,15 +151935,Ay (voice),82703,78311,18 +151936,Herself,157117,82242,8 +151937,Taxicab Driver,120109,119255,17 +151938,Driver,14142,81687,12 +151939,Amar Apte,208756,587090,2 +151940,Chief Tawanka,42764,7862,2 +151941,Pierce,75623,1678388,8 +151942,Voice reading the court's decision,51141,252340,14 +151943,The Ghost,37702,118352,6 +151944,Young Cilla Perl,19338,1579267,25 +151945,Darryl,62761,3070,8 +151946,Watchman,43821,1184115,19 +151947,,25716,1039354,29 +151948,Ganesh / Vedhalam,362150,148360,0 +151949,Himself,410718,1702114,14 +151950,Afghan Interpreter,272878,1370998,8 +151951,"Lucien Butard, der Hausmeister",124013,69549,3 +151952,Victor Randall,156356,3364,1 +151953,Melanie,86254,63275,13 +151954,Howard,205891,56676,3 +151955,Bonnie,97593,73663,3 +151956,La prof de danse,12446,1356427,23 +151957,Haim,270403,139447,4 +151958,Marty,10407,12688,5 +151959,,188524,77496,0 +151960,Homeless Man Behind Tree,270303,1151497,15 +151961,John Worthy,277778,1334132,1 +151962,Nikki / Craps Table Girl #1,153795,1592589,9 +151963,David Wilder,2267,16327,3 +151964,Victor Breitmann,64383,19162,3 +151965,Vet,14904,40046,7 +151966,Sameer Kapoor,347807,86009,1 +151967,Sidney,167410,1149019,2 +151968,Bosco,20623,86018,14 +151969,Elegant Guest,60071,6944,8 +151970,Bob McReed,16296,80103,5 +151971,McGuirr,67102,1053373,6 +151972,Deserting Father,921,166488,56 +151973,Father Mattia,46658,234297,5 +151974,Nordic Child #3,346672,1905799,39 +151975,,391778,122498,13 +151976,Jessica,26688,83285,3 +151977,Adult Molehog Male (voice),8355,1214603,17 +151978,The Many Voices (voice),76341,1445417,58 +151979,Dr. Richard Malcolm,32021,12312,16 +151980,Vares,150208,232400,0 +151981,Janet Greenville,35564,160736,11 +151982,Martha Cutting,108345,68088,1 +151983,Mechanic,8988,1472348,70 +151984,Adrienne,19398,1147364,11 +151985,vedoucí Šubrt,6079,47838,8 +151986,Ice Berg,151431,40952,8 +151987,Pvt. Carqueville,138486,1108912,4 +151988,Han Gong-Ju's father,229304,1128004,7 +151989,Justin,241254,1363623,14 +151990,Son of Chan Sei Mai,182127,1440522,45 +151991,Savannah,381032,1140222,7 +151992,Liz,141643,1115147,6 +151993,Martha,151043,1293646,9 +151994,Sarah,73565,81682,1 +151995,Thug (uncredited),38654,1830449,23 +151996,Rebecka,117499,1762399,5 +151997,Prime Minister,43868,2497,5 +151998,,49106,22823,12 +151999,The Invisible Man,17287,84271,11 +152000,Marcus Brutus,34469,27421,12 +152001,Man Under Car,16921,84702,9 +152002,Daniel Kagan,246422,16349,6 +152003,Halloween Dancer,11247,1775884,50 +152004,Nightclub Dancer,43809,106104,63 +152005,Conor,275060,5530,2 +152006,Bangun,180299,1155281,3 +152007,Amanda,29610,104336,4 +152008,Iwaki,12622,85939,4 +152009,Grace,401060,1217590,8 +152010,Bradbury,90120,106911,3 +152011,Friedrich Monroe,390,5274,1 +152012,El Diablo,13383,223081,2 +152013,Spitzer,82598,2344,13 +152014,Peter Willems,87349,12726,0 +152015,Carlton De Witt,43522,29127,4 +152016,Himself,374460,53304,8 +152017,Little Boy Who Walk Like Bear (as Jack Bighead),60853,1683126,5 +152018,Curtis,49502,106153,11 +152019,Michael Kohlhaas,186971,1019,0 +152020,Bonnie,130925,1096415,6 +152021,Photographer (uncredited),213681,1771572,45 +152022,Norman,29108,32808,7 +152023,La fille de Claudine,53404,1664197,16 +152024,Larissa Morgan,55681,98871,1 +152025,,31418,584043,4 +152026,Winslaw,45556,52374,4 +152027,Teacher,188598,1776755,12 +152028,Rikki Simms,14809,52933,1 +152029,Himself - at Banquet (archive footage) (uncredited),33740,12147,100 +152030,Natalie Fiennes,24963,103328,13 +152031,Convention Attendee,76494,1084211,28 +152032,Un ufficiale boemo,43195,38914,4 +152033,Clem Batchman,97936,1061218,3 +152034,Neighbour,328589,1049226,26 +152035,Bob,27916,1090173,6 +152036,Krug,18405,39520,0 +152037,Miss Shoebridge,49502,142345,9 +152038,Patricia Fulford,34151,1249,6 +152039,Jim Kelly,43022,3442,5 +152040,On Camera Musician,198277,1424209,39 +152041,Elliot,60422,132157,1 +152042,"Gabriella, l'hostess",82481,5683,1 +152043,Yuangui Mei,270724,99689,0 +152044,Charles Stanton,183171,19550,2 +152045,Dr. Bentel,74830,209,3 +152046,Nurse,157829,1455769,15 +152047,Principal Fetchit (voice),9982,12900,15 +152048,,187022,1523950,6 +152049,Ellen Tigh,105077,19740,6 +152050,Nonna,42674,228151,19 +152051,Steven,9753,58983,14 +152052,Angeliki Barda,288526,1356354,6 +152053,"Саша, администратор",25936,86862,2 +152054,Eric's Valet,131360,1123937,15 +152055,,116762,583498,5 +152056,Luba,108003,5961,1 +152057,Mrs. Chandler,103432,40186,3 +152058,Young Jake,13834,37696,10 +152059,Steve Lopez,17332,3223,0 +152060,Shin Ota,79382,1062345,5 +152061,Kirby - Alien Kid (voice),9982,61428,9 +152062,Rock Slag / Green Goose / Triple X (voice),42515,16417,0 +152063,Θόδωρος Γκρούεζας,297342,932888,2 +152064,Malika,17479,150019,2 +152065,Linda,245739,62965,2 +152066,Uncle Mike,119213,34691,4 +152067,Imperial Officer,330459,1713831,56 +152068,Gaston de Bastonet,43419,24820,10 +152069,Sir Ulrich of Germany (voice),26643,16417,22 +152070,SoHo-Kunstgallerienbesitzer,277968,1898506,42 +152071,Cynthia McClary,44129,23627,10 +152072,General Hawk,14869,6065,0 +152073,Singer / Dancer,101783,77236,6 +152074,Nina,319513,1415725,1 +152075,John,134308,172496,2 +152076,Nathan,65579,117132,2 +152077,Rosalie,57201,1760467,41 +152078,Ji-Hye,64882,126743,3 +152079,Macario,122019,116992,0 +152080,Onkel Leo,82157,34300,6 +152081,Francine,214100,1694987,11 +152082,Hutch Lawton,183218,37885,5 +152083,Alice,28303,101479,13 +152084,Solly Wellman,33923,85988,5 +152085,Xiao Gong,299828,109434,2 +152086,Carter,55728,7268,14 +152087,Thomas,44527,72320,2 +152088,Auto Shop Boss,250066,101847,11 +152089,Matte,24023,1478585,9 +152090,Charles Atlas,38162,2778,1 +152091,Detective Tom,37992,89729,9 +152092,Bon,18595,1264961,7 +152093,Speedy,169298,53257,19 +152094,Giulio,265717,147173,8 +152095,Moving Man,24420,115582,21 +152096,Mimi,66584,90677,4 +152097,Himself,411013,1799840,6 +152098,Taxi Cab Driver,262841,83424,24 +152099,Lea,318553,1216579,6 +152100,Steve Chambers,213681,887,1 +152101,Doc Grissom,79645,104630,8 +152102,Rose Hill Deputy / Extremis Soldier,68721,1463664,36 +152103,Mac the Mouse,37929,119138,15 +152104,Rev. Karl Hartman,9987,1646,4 +152105,Dawn,32904,1696958,4 +152106,Himself,67367,201,2 +152107,Young Memphis Woman,274479,1774084,57 +152108,a devout soldier,88564,1467096,11 +152109,Mutant Child,263115,1821497,74 +152110,Osugi,31372,106160,6 +152111,Lt. Cmdr. John Challee,132961,8212,3 +152112,The Bird,30995,1207028,6 +152113,Cian,262958,70684,21 +152114,Himself,97724,1388669,20 +152115,Mr. Smash,21605,4318,8 +152116,Det. Wilson (uncredited),31713,40221,13 +152117,German Girl (voice),174309,2339,2 +152118,Sánchez Blanch,19936,20285,4 +152119,Mariolino Brusco,11972,71140,3 +152120,Himself,84318,1084973,7 +152121,Jackie,83384,4690,3 +152122,"Karen, The Bartender",82696,1951,12 +152123,,65713,543944,5 +152124,Professor Herbert Weisse,70864,84251,3 +152125,Destiny,429838,1699796,5 +152126,Antonio's Father,8194,53940,11 +152127,Joe Meehan,30708,13038,13 +152128,Preacher,57201,1112414,37 +152129,Una turista,58611,228154,19 +152130,Thérèse Bourgoine,98203,17882,0 +152131,Corporal Stacey,252916,14454,4 +152132,Arthur (voix),24170,24903,6 +152133,Lee Yiu-Wah's son,182127,1440506,42 +152134,Police Inspector,28063,99530,8 +152135,Ratchet,249021,122504,7 +152136,Sam Martin - Taxi Driver,144475,105454,8 +152137,Himself,390747,1662633,12 +152138,Professor Mancinelli,98025,100680,10 +152139,Rosemary,40130,43885,4 +152140,Mr. Carroll,5804,172705,5 +152141,Nate,10521,23821,2 +152142,Himself,27629,82280,26 +152143,Peter Moosebridge (voice),269149,1374597,30 +152144,Sheriff H. A. Douglas (as Erick Bockemeier),82313,927751,12 +152145,British Soldier,1116,1896887,62 +152146,Party Guest,229221,121323,8 +152147,Hatsumomo,1904,643,1 +152148,Durmel,76703,579796,6 +152149,Collins Tuohy,22881,112561,5 +152150,Girl at Bar (uncredited),118245,145832,7 +152151,Concert Goer / 70s Pedestrian,335970,1718441,76 +152152,Maintenance Guy #1,15092,78021,49 +152153,Rich Guy,27573,133046,15 +152154,Cooky,90406,130335,12 +152155,,68123,1311386,13 +152156,Ozzie P. Boone,179826,10872,5 +152157,Amber,358353,1505816,12 +152158,Tony Norton,85420,69129,11 +152159,Voyageur au bout du rouleau,382591,1795288,30 +152160,,47795,10332,7 +152161,Eik,268618,586286,1 +152162,,317246,1412429,3 +152163,Duke / Xamot / Blowtorch / Lift Ticket,17421,19546,3 +152164,Zylak's Frenemy,283995,1494146,45 +152165,Joseph Signoret,28061,101549,3 +152166,Ivan Puzharski,168676,173269,4 +152167,Hombre,115665,105771,6 +152168,Mira Tesser,125490,19957,6 +152169,Ellen Baker,77012,95624,1 +152170,Mr. Black,31324,95757,10 +152171,Hale Caesar,76163,53256,11 +152172,Peter,405050,1399368,3 +152173,Doc Curtis,94176,35849,6 +152174,Carla,264729,106817,2 +152175,Ernie (uncredited),15794,95017,42 +152176,Tal,12182,449,7 +152177,Dr. Kang,7288,55253,23 +152178,Prosecutor,186869,993245,17 +152179,,11328,1444478,24 +152180,Himself,83995,930412,18 +152181,Christina,1415,9315,4 +152182,Mrs. Schlitz,285860,1243831,3 +152183,Jamie,325712,1879670,11 +152184,Jules Goldfarb,260672,12900,2 +152185,Two Dog,150065,1784350,20 +152186,Tante Inez,35032,3366,3 +152187,Rhonda,285860,515636,9 +152188,Stéphanie Tuche,369776,544684,3 +152189,Venelia,297762,1009999,18 +152190,Cindy Roberts (uncredited),300669,1737804,11 +152191,Day,253154,1878708,12 +152192,Hollywood musician,335970,1560335,63 +152193,Cally Henderson (archive footage) (uncredited),105077,168525,27 +152194,Osgar,313074,60348,4 +152195,Miltos' mother,47778,1762723,3 +152196,Pawnbroker,128669,985275,36 +152197,Himself,15260,45052,1 +152198,Shilo Wallace,14353,57674,0 +152199,Tano,403605,1679986,6 +152200,Inspektor,57775,96517,2 +152201,Mike Menary,27196,97206,1 +152202,Kate,3638,1922,0 +152203,Jake,263472,1626948,7 +152204,l'embaumeur,33360,19647,9 +152205,Tracy,131689,1093519,9 +152206,Director de la prisión,110001,1027769,14 +152207,Another Prisoner,250535,1561567,21 +152208,Hr. Richard,6183,1685312,36 +152209,The King ('The Singing Bone'),28367,4071,16 +152210,Baby Mumble (voice),9836,15274,7 +152211,José,335053,118206,0 +152212,Jackman,159770,1208343,3 +152213,Charley,51945,72327,5 +152214,Tally Raymond,42796,161315,3 +152215,Tony,332286,54024,4 +152216,Anna Owens,43471,77158,0 +152217,Carly,339994,1242776,3 +152218,Mike - Waterfront Policeman,3574,124554,12 +152219,Žena u taksiju,382873,1581229,15 +152220,princ Velen (hlas),84030,1233577,20 +152221,Lady Essex,11788,15094,14 +152222,Reet,92391,1071131,11 +152223,"Mao Tse-Tung, young",69310,20654,5 +152224,Earl,80596,2925,29 +152225,Teja,218898,89153,0 +152226,Dr. Nyack,23628,90401,8 +152227,Brian,13596,133967,14 +152228,Gabe,197611,1177754,7 +152229,Fishman's Girl (uncredited),31287,1070234,6 +152230,Lt.Schott,168676,1422586,8 +152231,Robert Carlton,105548,89733,14 +152232,Chester,381645,1694082,9 +152233,Kwon Yoo,435366,1253391,0 +152234,Flora Miguel,163706,27188,9 +152235,The Judge,31993,93123,8 +152236,ACP Yashvardhan,75745,52971,0 +152237,Mr. De La Cruz,87826,22075,4 +152238,,242240,1277214,7 +152239,Elango,330418,584250,1 +152240,Mrs. Stillwell (as Adrienne Pearce),153102,136298,7 +152241,Aoki,33333,110500,1 +152242,Becks,24150,9996,15 +152243,Himself,318224,1661474,22 +152244,Connie,84993,70754,3 +152245,Joan Butterfield,80771,95314,1 +152246,Ellie O'Hara,51209,51975,12 +152247,Geneviève,8071,149007,4 +152248,Roy Timberlake,43525,8725,1 +152249,Cannibal,1691,45572,19 +152250,District Attorney,14615,77114,2 +152251,Hewitt,84352,199919,11 +152252,Cura,264729,1439854,17 +152253,Captain Chris Hanson,51104,12150,0 +152254,Mark Kobold,8247,115729,11 +152255,Redakteur,53256,147639,13 +152256,Bryce Arbogast,12085,4443,7 +152257,Cordelia (uncredited),50012,21625,10 +152258,Casey Carlyle,13374,49961,0 +152259,Odins,42664,93163,6 +152260,Boy with Cap,10389,551604,15 +152261,Valka,49009,72466,0 +152262,Wentworth,243984,76184,1 +152263,Johnnie Flodder,11084,68181,1 +152264,Carol Hammie,132363,60033,24 +152265,Olivia,8998,4491,3 +152266,Aihara,61984,1040475,8 +152267,Lou Farnsby,47404,85358,1 +152268,Old Lady,59744,137831,13 +152269,Raphelson,117251,28633,4 +152270,Meatball,10178,18391,9 +152271,Bernie,14565,65395,3 +152272,Francis Benoit,23855,15029,3 +152273,Spring Renfro,277388,5606,4 +152274,Hazel Haskett,62837,972951,7 +152275,Debbie Johnson,61168,150061,8 +152276,Roy,340103,100,5 +152277,,126250,76392,23 +152278,"John Bank, Tillie´s father",22943,14435,3 +152279,Kwajalein Guard,227306,1394454,54 +152280,Himself,140554,996617,17 +152281,Wong Low Get,118139,13566,0 +152282,Elder,31131,1155106,5 +152283,Third Alabama Man,72638,1046806,47 +152284,Marshal Anderson,28303,83806,6 +152285,Lady Fitzhugh,49609,8232,11 +152286,Commander Surin-Jaw-Khong,39907,1649569,14 +152287,Step-Brother (uncredited),166221,1328,17 +152288,SAC Guard,20674,58112,24 +152289,Rinka no saikun,18148,131019,13 +152290,Spirit 2,360205,1511042,7 +152291,Military Aide,19545,235381,11 +152292,Gavin / Ambulance Driver,18633,38572,14 +152293,Dr. Jessen,58166,5204,3 +152294,Michael Lanyard,149793,76974,0 +152295,Reporter,229297,1419293,27 +152296,Sonya,413232,140091,14 +152297,Niima Scavenger (voice),140607,1473715,80 +152298,Chuck Blayden,19335,84486,7 +152299,Simi,303360,15293,2 +152300,Lolly,3520,32380,8 +152301,Galia Einburg (voice),125510,57735,13 +152302,Torsti,88059,89504,1 +152303,Al,65066,40176,1 +152304,,264036,1080512,11 +152305,Brenda Patimkin,42604,46597,1 +152306,Mickey Callahan,51601,1299051,6 +152307,Georgie,40633,69026,5 +152308,Hollis,69903,8258,15 +152309,,264264,87637,20 +152310,Mrs. Bickerdike,43889,2934,10 +152311,,148615,14852,15 +152312,Gino,332936,1108,5 +152313,Salims Nachbarin Ute,83729,6271,11 +152314,Arthur,48319,31032,7 +152315,,186971,1605807,23 +152316,Prof. Evan White,37534,1284,4 +152317,T.J.,270672,1400686,5 +152318,Tad Rutherford,181574,132860,3 +152319,Delivery Woman,245891,1359352,23 +152320,Charley Barker,29510,8253,1 +152321,Pop pop,91070,5950,9 +152322,Woman,28533,101101,4 +152323,Elevator Operator,33729,8521,10 +152324,Gin,325592,1543277,1 +152325,Ali,110992,1050963,0 +152326,Dancer,11172,1781168,34 +152327,Damon,9667,74056,9 +152328,Store Owner,1164,1681199,39 +152329,Noll 'Dink' Turner,27035,2090,2 +152330,Anna,11832,1114530,11 +152331,Abner,294272,1435850,9 +152332,Janne,219335,1457792,11 +152333,Chizuru,94659,145253,4 +152334,Antoñito,254869,1423066,9 +152335,Strong Room Guard,91583,1230588,14 +152336,,127257,46853,6 +152337,Krishna Mehra / Krrish / Rohit Mehra,32740,78749,0 +152338,Eyepatch-wearing Two Spies boss,64972,16119,16 +152339,The Rabbiter,33272,105835,5 +152340,Ad Agency Executive #1,243683,116972,36 +152341,,83195,1258444,2 +152342,John Wilson,304613,27737,2 +152343,Mrs. Higgins,61908,95667,22 +152344,Himself,27637,1724688,23 +152345,Jakobina Munchhausen,27937,99291,5 +152346,Sheriff Fox,9287,72680,8 +152347,Cafe Patron,222388,1326245,14 +152348,Damas Dancer #4,268920,1754431,38 +152349,Lille,128900,579204,2 +152350,First-Nighter,132928,105810,24 +152351,Ladyboy in the bar,277839,1362684,20 +152352,Le Basque,10795,93532,24 +152353,Patrick Consalvo,105384,1354253,6 +152354,Evelina Pileggi,167221,225301,2 +152355,Gracie Martin,32996,109896,3 +152356,Pavel,143169,43508,2 +152357,,331354,102222,7 +152358,Joey,94248,84978,4 +152359,Wasp,14611,15761,1 +152360,Bill,103433,64294,1 +152361,Pizza Harris (voice),12526,72637,6 +152362,Duchanness (uncredited),109491,1198988,30 +152363,Don Paolo,99261,31350,2 +152364,Hank - King Ranch Foreman,75315,1095107,24 +152365,Check-In Mitarbeiterin,217412,1543389,7 +152366,Passenger Carl (voice),127380,12,17 +152367,Peter Gallagher,29801,63941,3 +152368,Hoag,123109,6906,2 +152369,Seu Zé,420703,936458,3 +152370,Ronny,81463,1480665,6 +152371,Wayne Kellwin,68976,2644,8 +152372,,412851,1670470,9 +152373,Swim Coach,10594,65776,15 +152374,Bryan,14983,1017780,4 +152375,POV Sound Person,91679,1782614,54 +152376,Fred Haymes,258480,1213105,8 +152377,Jeweler,22404,89727,10 +152378,Lina Inverse,125521,40325,1 +152379,Selma,30036,30552,11 +152380,Lilith 'Lily' Prescott,11897,8857,8 +152381,Sarah's father,54804,29307,23 +152382,Ray,221240,71010,2 +152383,Slicker,56558,115772,57 +152384,William,137182,220295,3 +152385,Cody Griffin,83965,1002567,0 +152386,Henchman,149793,96724,44 +152387,Waitress,268920,1711523,83 +152388,Lindsay Walker,336691,1469802,4 +152389,Jack,351242,222121,5 +152390,Video Biographer,54804,26862,25 +152391,Beaver Son,21044,87056,6 +152392,Chuck,11584,55554,4 +152393,"Nukui, the Fan",870,13254,5 +152394,Olivia,2002,121529,12 +152395,Barman,70666,1863883,12 +152396,Head Nurse,31161,545767,5 +152397,Luis,9956,40481,7 +152398,Pepe,15640,18841,2 +152399,Konrad,75969,1902096,47 +152400,The Man,189,1226245,47 +152401,Mili,73147,568334,2 +152402,Bald Pirate,42242,5695,17 +152403,Sub-inspector Anant Velankar,103073,11851,0 +152404,Katsue Yagisawa,108634,1176976,4 +152405,Lester,32526,106711,11 +152406,M. Valentin,27053,97251,1 +152407,Ling's Mother,10389,551619,32 +152408,Mini Submarine Officer,43093,32303,7 +152409,Judge at First Trial,26323,17756,20 +152410,Donacha,1116,15499,4 +152411,Banamex Teller (uncredited),213681,1680188,56 +152412,Ana,267931,205720,7 +152413,Freddie,44223,47702,1 +152414,Janine Cullen,331962,23931,2 +152415,Priest,91391,939594,8 +152416,Himself,324173,1446719,3 +152417,Mary Black,128598,1087381,5 +152418,,94696,39793,8 +152419,,11196,1444537,11 +152420,Bobbie Adams,23692,1106347,9 +152421,Han Jae-Sun,407887,227430,3 +152422,Gus,9843,11108,1 +152423,Tom,68184,205267,2 +152424,Gudrun,57438,226188,27 +152425,Alison's Friend,4964,154826,18 +152426,Randall,2295,23630,1 +152427,Jeanine,82519,21215,1 +152428,Toot Braunstein / Princess Clara (voice),36736,15762,4 +152429,Antoine,61267,32657,0 +152430,Cynthia,30996,1371268,5 +152431,Waitress,1550,1594630,24 +152432,Preacher,14882,25414,12 +152433,Luke Cromwell (The Silver Kid),60547,50962,0 +152434,Foster,40466,931760,5 +152435,Melinda Ledbetter,271714,9281,3 +152436,Uncle,91527,980174,5 +152437,Beatriz,300690,1328064,7 +152438,Chris Vogler,60599,27545,6 +152439,Geo ordenador,33273,100258,19 +152440,Walter Adair,75778,34715,3 +152441,Barn Dancer (uncredited),31509,1364153,22 +152442,Eric Brashingham,131360,34755,2 +152443,Sergeant,121674,202032,29 +152444,Police Inspector,31428,152727,8 +152445,The Beast,409696,1028318,6 +152446,Le patron,12249,71936,5 +152447,Kevin Riley,333354,7498,3 +152448,Ms. Wolk,345054,82340,11 +152449,,92657,95977,4 +152450,Da-hye,346646,1222951,11 +152451,Sportscaster,336890,51990,16 +152452,Tim,374475,1339195,6 +152453,DC Protestor,209112,1201979,92 +152454,Goo Yoon-Gil,387845,1347779,2 +152455,'Einstein' Price Egerton,116554,210940,6 +152456,Jasmin,83342,133261,5 +152457,Sir Olden (as Doug Chapman),188927,1081488,30 +152458,,284048,1346875,5 +152459,Mann (voice),9551,1320204,9 +152460,Immortal Warrior,173443,87341,0 +152461,Michael C. Williams,289923,26853,8 +152462,Brad Twersky,336775,83699,16 +152463,Proposing man,53514,1143491,4 +152464,Dario,258751,440879,3 +152465,Guadalupe,70712,76857,3 +152466,Prince Pondicherry,118,58776,18 +152467,Laura,44282,144214,4 +152468,Monique,9655,58369,7 +152469,"Clara, la prostituta",43195,224456,9 +152470,,12622,555208,33 +152471,Lethe,174000,29931,5 +152472,Simone,356482,227123,7 +152473,Marcus,99367,86626,13 +152474,Sangaile's Father,310568,1588817,3 +152475,Midwife,13823,75773,10 +152476,,154442,138748,6 +152477,Meg Loughlin,15356,78139,0 +152478,Art,46773,1371195,7 +152479,Wooldoor Sockbat / Jew Producer (voice),36736,19506,6 +152480,Colonel Ticonderoga,19014,65562,2 +152481,Annie,20648,41421,1 +152482,Mustached Bettor at Race Track,118889,96060,52 +152483,Lifeguard,118957,1828715,15 +152484,The Barber,47758,30264,8 +152485,Arthur,45725,134084,2 +152486,Bestatter,203539,1185918,12 +152487,Pegah als Kind,1912,35543,17 +152488,The Lady,18035,1275,5 +152489,Gertle,44119,37014,1 +152490,Police Personnel,52302,552178,11 +152491,Jean Grey / Phoenix,246655,1001657,8 +152492,Flemming (Age 5),293863,1459142,12 +152493,,282086,137021,10 +152494,Ditte Lorensen-Coteret,329809,32683,2 +152495,Mace Bishop,41857,854,0 +152496,Camilla Pocket,121674,962885,14 +152497,TOC Sr. Air Officer,193756,1283050,29 +152498,Hugo,78028,1434017,12 +152499,Howard Clinton,118059,77114,2 +152500,Maura,73872,132843,4 +152501,,270081,1510999,4 +152502,,41783,78879,2 +152503,British Soldier (uncredited),297762,1756412,101 +152504,Storm,205724,15111,0 +152505,Annie Cameron,44945,60458,2 +152506,Remingtons' Child,174594,1380189,4 +152507,Majbritts nye fyr,76312,1266460,14 +152508,Morane,4191,2369,5 +152509,Ruth,72648,44897,4 +152510,Reporter at Dock,89086,1468095,36 +152511,Undertaker,35026,230212,9 +152512,Policier municipal 2,13312,81052,9 +152513,Victoria Spencer,113525,10938,1 +152514,Matsuno,248087,124401,2 +152515,Patty,128270,1820219,37 +152516,,104277,1210836,9 +152517,Aaron,456101,104482,1 +152518,Da Lisi Guard,217923,1436273,32 +152519,Carl,113739,1634650,7 +152520,Francois,238589,18270,2 +152521,Benny Rodriguez,21138,8540,2 +152522,Donald Wegman,18045,82647,8 +152523,Loadmaster,424488,1837282,33 +152524,Carlos,209251,3483,0 +152525,Baby Gloria (voice),9836,59786,15 +152526,Terence O'Brien,51947,194,11 +152527,Smithfield Butcher (uncredited),121674,1358943,51 +152528,Dancer,11172,1781172,36 +152529,Herself,142168,1641,3 +152530,Sensei (Teacher),28268,1072014,8 +152531,Russell Linden (as Mike E. Kaplan),86241,10416,12 +152532,Fusssoldat,2734,27672,51 +152533,Kaak Salesman,49220,590862,13 +152534,Consul Triton Crassus / The Mailman,31397,106480,6 +152535,Cattleman at Meeting,75315,1822955,51 +152536,Minor Role,28421,1422947,33 +152537,Angela,42552,1084494,7 +152538,Radio Announcer,325712,1879671,19 +152539,,37959,31080,3 +152540,Sarah Reeves,267793,112601,5 +152541,Old Gaucho,42819,132552,6 +152542,Diana,137093,2453,4 +152543,Mathew J. Clark,31835,104805,6 +152544,Hoochie 1,9298,57197,8 +152545,Timothy Hawking (Baby),266856,1503910,35 +152546,,92060,1897702,4 +152547,Ellie,412209,1472783,1 +152548,Howard Simpson,74714,9221,0 +152549,Velma Von Tussle,409447,52775,3 +152550,Timpson,327389,53119,5 +152551,Bai Wuxia/Wu Sha,10275,1342843,3 +152552,Claes Palmstierna,24647,93381,5 +152553,Tom Hanlon,56558,127521,16 +152554,Joachim,55612,222727,8 +152555,Bearded man,42701,131311,4 +152556,Murray Stuart,244539,245,5 +152557,Carlson,42532,108172,7 +152558,Barabba's mother,42438,20887,3 +152559,,122368,3891,4 +152560,,265180,1414818,7 +152561,Coach Murphy,16996,84407,13 +152562,Herrenhofwirt,26891,67010,11 +152563,Serveur tea room,382591,45849,28 +152564,Henri Pepi de Bordeaux,64928,96053,9 +152565,Steve Dawson,208869,95047,6 +152566,"Bryan, a Gangster",25507,96261,12 +152567,Goggles / Turtle #1 (voice),15909,64185,3 +152568,Professor Ookubo,52047,33135,5 +152569,Anton,19996,85412,3 +152570,Steph Wendell,112287,1054378,1 +152571,Police Officer,108723,1446344,28 +152572,Dr. Karen Murphy,9987,24695,1 +152573,Engel - X-49 Workman,47404,67369,16 +152574,Himself,181533,6968,19 +152575,Detective Oh,16371,80459,2 +152576,Sophie,277710,37917,2 +152577,Adam's mother,74921,1085696,4 +152578,Aokiji,176983,84508,15 +152579,Truck Driver/Chet (voice),5559,44114,20 +152580,Vicky Chadda,444713,227849,8 +152581,Andrew 'Juddy' Judson,82178,8517,4 +152582,Cleo Sabraf,55435,119143,7 +152583,Secretario general,45191,1460902,12 +152584,Grim Knight Dancer,243683,1398116,58 +152585,Prisoner (uncredited),213681,1771599,68 +152586,Mrs. Stanard,345003,1132612,13 +152587,Police Insp. Mulvaney,31167,13977,4 +152588,Toby,9655,58371,11 +152589,Pierre,85735,146288,3 +152590,Nick,153162,223268,18 +152591,коммивояжёр-фармацевт,207696,1190191,2 +152592,Old Man,1963,20265,2 +152593,Armand,255913,66032,5 +152594,Patrizia Calozzi,137315,1107183,3 +152595,Niharika,80281,85721,1 +152596,Bobby Williams,93935,14423,12 +152597,Franck Del Rio,152989,41031,6 +152598,Sybil,27138,106054,13 +152599,Eddie Elstead,120615,95010,11 +152600,Dr. Kendall,78307,1397904,4 +152601,Arttu Peltomaa,339944,125629,12 +152602,Georgina Scott,109453,23931,7 +152603,Pharmacy Security Guard,75622,78321,7 +152604,John Jr.,85196,1485206,6 +152605,Soldier,24973,30515,54 +152606,Dwight Collier,24810,152831,3 +152607,Louis,75595,215186,17 +152608,Aureleo Joe / Cotton Joe,146970,32679,7 +152609,Mehdi,266102,52685,8 +152610,Maroush,76493,81840,7 +152611,Padre,9274,2315,11 +152612,Technical Advisor (Realtor),4932,40178,25 +152613,Wallace Sturtz,149509,63564,14 +152614,Reese,112161,21321,9 +152615,Old Woman in Pajamas,270303,1588347,13 +152616,Mary Gillespie,27999,101481,8 +152617,Mr. Popo,39103,110669,6 +152618,Jonathan Shannon,440597,11864,1 +152619,Dr. Bill Foster,81477,8331,0 +152620,,256916,948520,5 +152621,Captain Boss Starkey,147829,29260,0 +152622,,188180,88853,5 +152623,Anna Norrie,133783,82352,3 +152624,Coldyron,31127,1055694,1 +152625,Baron Georg Marissey,53851,24820,4 +152626,Géraldine,186991,1174837,7 +152627,,438012,222322,1 +152628,Daphne,17681,30695,1 +152629,Řezáč mladší,6079,11685,7 +152630,Jim Norman,28131,99789,9 +152631,Miss Harris,331588,6944,4 +152632,Irene Chase,119801,4098,3 +152633,Zhao Jun,107891,1420034,7 +152634,Steven Emory,28851,102181,0 +152635,"Sutter, the Ghost Writer (as Harold Minjer)",177190,1005423,2 +152636,,188684,1529751,11 +152637,Spaulding,45875,134079,19 +152638,Colleen,244580,343,9 +152639,Sophie,303636,1036879,1 +152640,Carpetbagger #3 in Montage,183825,1022158,46 +152641,Adi,2009,39960,3 +152642,Carly,248268,228276,1 +152643,Romero,239056,110505,7 +152644,Tony Thrust,142106,1179853,14 +152645,Wyndham Best,340101,1486582,18 +152646,Maryanne Gleason,239513,944605,11 +152647,Chloe,322922,1014696,11 +152648,Kei Nagai (voice),357390,93803,1 +152649,Credit Manager,62046,149653,14 +152650,Kate's Girl (uncredited),27349,101756,18 +152651,Üfzgür,75969,1327590,32 +152652,Bradley Teegan,359412,1508566,7 +152653,Pete Marker,42252,1272,9 +152654,Jukes,81687,19329,13 +152655,Snake,212996,1134730,6 +152656,Napoleon Bonaparte,195068,4113,2 +152657,Reporter 1,27450,90768,18 +152658,Adem,346490,1046854,4 +152659,Gus Palukas (as Parkyakarkus),285400,1028239,5 +152660,South Carolina Victim,52395,92841,11 +152661,Young Guy,41171,179274,30 +152662,,31512,132935,19 +152663,Truck Driver,97767,13856,13 +152664,Sidney,35404,95668,12 +152665,Ross,348389,937,7 +152666,Richard Thurlow,90932,12308,3 +152667,Jean Grey / Phoenix,76170,10696,2 +152668,"Invitée, Joueur de cartes",85883,94883,10 +152669,Henry as a Boy,96702,1010097,8 +152670,Milo,13777,75129,5 +152671,Cynthia Shade,134394,973519,2 +152672,La Mère,9539,59616,5 +152673,Mudbud (voice),149910,25144,4 +152674,Webb,102444,12485,11 +152675,,339350,13014,1 +152676,Costabile piccolo,85038,545137,4 +152677,Baby's Dad,339403,1635138,13 +152678,Dakota,403130,1749868,12 +152679,Traudl Junge,613,5644,1 +152680,,265934,1665083,5 +152681,Comedian,69635,91549,4 +152682,Grandfather,336806,1140804,7 +152683,Sergeant Mackenzie,141733,142736,7 +152684,,17985,1439596,18 +152685,Kirsten Dunst,96936,205,28 +152686,Ruth,16563,10929,12 +152687,Grandfather,74,56442,11 +152688,Miss O'Schmunsler (voice),38060,567110,2 +152689,la midinette,63876,70119,9 +152690,Marilyn Maxwell,159667,43257,2 +152691,George Lytton,936,9208,2 +152692,Sad Dork,13596,77912,19 +152693,May Collingwood,339312,1239728,1 +152694,Marlon Thomas,55922,60601,4 +152695,Jo-Jo,4688,38943,4 +152696,Crusader,289720,1358970,9 +152697,Mayfield,323675,8169,5 +152698,Gianni,297288,72769,0 +152699,Капитан Калтыгин,37603,235959,0 +152700,Mrs. Fielding,125063,143090,3 +152701,"бывший вор, вставший на честный путь",20871,86679,14 +152702,Susie,288521,1446020,10 +152703,Flaminia Longheroni,82083,103160,1 +152704,Diener,2974,29249,5 +152705,,330947,5576,6 +152706,Seth Webster,50506,19210,1 +152707,Nymph I,18392,551510,8 +152708,Princeton Dream Girl,251419,1680292,8 +152709,Bandit Brother,215379,1385280,12 +152710,Dave Davies,46586,136977,3 +152711,Papa Bear,30059,16422,6 +152712,Sophie Bascomb,371181,116571,14 +152713,Mihoshi,34935,112138,9 +152714,D I Smythe,42057,13633,4 +152715,Randy,19053,2963,0 +152716,Giuseppe,263873,1308332,7 +152717,Domenico,1394,38127,1 +152718,Maggie Stratton,130917,855,2 +152719,Michael Nichola Darling,120672,1197526,1 +152720,William (Will) Hallowell,274325,30613,1 +152721,Józsika,13616,1569659,10 +152722,Conall,286873,133212,0 +152723,,241140,1045408,11 +152724,Dunne,239519,81284,7 +152725,Boško Simonović 'Dunster',255647,144637,5 +152726,,135536,89283,3 +152727,"Der Vater, Der Obrist",48205,51398,3 +152728,Train Passenger (uncredited),3580,1278389,64 +152729,Komodo,384450,1582296,9 +152730,Senator Rockford,227700,588323,10 +152731,Angela Dunning,936,8238,4 +152732,Ronald Reagan,118640,93004,2 +152733,Linda,26679,1088122,9 +152734,Lulu ('L'enfance'),98302,60688,1 +152735,Fashionista 1,40205,233264,7 +152736,Hot Girl (uncredited),270303,1588363,26 +152737,Joker,128081,1094125,7 +152738,Jack Ganzer,49060,12791,2 +152739,Sweet Beaches Dancer,243683,1398158,69 +152740,Eileen,16171,79863,10 +152741,Raphael,98566,64295,3 +152742,Himself,16666,570796,0 +152743,Cottrell's Wife,22396,31700,15 +152744,Jeremy Walling,213914,43426,0 +152745,Pieter,90231,1742815,14 +152746,Jessica Höfel,315335,5645,3 +152747,McMasters' Butler,55604,544585,19 +152748,Marie,227200,221843,6 +152749,,365065,1465465,4 +152750,Police Sgt. Art Collins,31167,9596,2 +152751,Sila,61035,1445781,18 +152752,Sally Rose,64807,326,5 +152753,Ricky,207641,86322,4 +152754,Tukaram,86279,984951,1 +152755,Sergeant Chan,212996,1135238,16 +152756,,231009,28256,0 +152757,Zoreh,54415,95696,2 +152758,Doctor,324670,1586918,23 +152759,Uncle Willy,2567,29468,43 +152760,Takeo Gouda,356156,1693,0 +152761,Katya,142757,1117923,10 +152762,Delivery Guy,19918,221672,11 +152763,Hunter Weasel,19898,132184,19 +152764,Relative at Mrs. Gage's,179066,80236,42 +152765,Poole der Butler,3024,29657,6 +152766,Dist. Atty. Judson,1938,2771,9 +152767,Alan Curtis,37126,11128,0 +152768,,41783,1342,1 +152769,Count Karol de Lavud / Duval,120303,100322,6 +152770,Frank Spedding,28943,2641,1 +152771,Zwillinge Lea und Mia,308174,1888498,35 +152772,Jean,134397,1098989,5 +152773,Pierre,52049,6020,3 +152774,Stormtrooper,330459,59661,88 +152775,Ayse,197297,145352,1 +152776,Dr. Gibbs,43503,30215,8 +152777,Miranda,37254,110607,17 +152778,Japanese rocker,45098,1311154,10 +152779,Мэт Поттер,74705,1191198,3 +152780,Hoodlum,14589,84639,37 +152781,Himself,96712,136886,0 +152782,Jumpin' Joe Dugan,61225,2547,11 +152783,DeeCee,17940,1293721,12 +152784,Trev,13792,37289,1 +152785,Daniel,264397,1149167,6 +152786,The Warden,16997,6916,8 +152787,Hyo-min,264746,571172,1 +152788,Dr. Dutch,53931,45232,1 +152789,"Kishi, gangster in nightclub",43113,1023931,27 +152790,Opernregisseur,9010,18415,4 +152791,Diana,47410,133810,3 +152792,Michel,73474,234117,2 +152793,Fat Lady,31397,1266703,11 +152794,Cassidy Merteuil,5460,43443,1 +152795,Old Chan,18741,62427,4 +152796,Himself,376394,1559488,9 +152797,Crown Prince Mirko,53230,90067,1 +152798,Charles Kendrick Walker,314065,1333739,10 +152799,Diana Tremont,31509,1409192,7 +152800,,341689,26209,4 +152801,Jack Fast,72140,91371,6 +152802,Charity,409502,1661267,12 +152803,Stomper (voice),32202,109066,4 +152804,Supermarket Cashier,125063,553274,8 +152805,,125229,554326,2 +152806,Ruby,44099,30225,0 +152807,Patti Szalinski,11425,11902,3 +152808,Tuoba Lie's Man,217923,1436264,27 +152809,Capt. Jess Torno (Chaplain,25807,85940,6 +152810,Policeman,85200,42090,11 +152811,Ben Tuttrie,262338,39661,21 +152812,Allan Kelley,29058,98450,0 +152813,Technical Adviser (Mountain Climber),4932,30551,29 +152814,Jasper,339408,1622085,23 +152815,Court Clerk Reading Verdict,26376,124882,27 +152816,Marty (voice),159824,53684,20 +152817,Adam Benaïm à 18 mois,73562,910946,4 +152818,Lady-in-Waiting (uncredited),51759,95314,8 +152819,Mrs. Isobel Service,290379,131726,3 +152820,Alan,116894,135993,6 +152821,Pee Wee Simser,30708,30848,12 +152822,Terry Cahill,53358,164866,0 +152823,Janette Hynes,26405,131508,3 +152824,,62397,1864700,8 +152825,,49653,1386481,8 +152826,Nathan,26123,94769,2 +152827,Max,94135,7192,1 +152828,Bull McDowell,75510,131813,4 +152829,Deputy Winston,367147,18271,3 +152830,Mlle. Roland,96724,1795832,33 +152831,Sheriff Hodge,383538,2712,2 +152832,Jeanette Harrison,258480,236053,15 +152833,Renaud / Hippolyte,101904,25342,1 +152834,Mme. Lescuyer,26810,33160,17 +152835,Uncle Shrimp,253154,2683,1 +152836,Whitney,156597,1427474,20 +152837,Jonathan Stoker,86825,1271788,16 +152838,Zolotov,61109,39801,4 +152839,Mamen,258751,1261491,8 +152840,Marie-Jo,39415,1625138,14 +152841,Himself - Storyteller,128216,1239390,0 +152842,,56666,1013894,3 +152843,Pete Bonner,41206,3341,7 +152844,Louise,4516,37629,3 +152845,Bartender,10075,62892,18 +152846,Vigilante Seguridad,254869,1423069,18 +152847,Earl,72574,182576,5 +152848,Haruna's Manager,870,137029,9 +152849,Firestorm / Black Lightning (voice),30061,63235,16 +152850,Anna,41427,44976,2 +152851,Edie Athens,4551,139,1 +152852,Artie,418437,1816404,17 +152853,Orderly (uncredited),284052,1502439,37 +152854,David,148451,19687,6 +152855,Jack Boone,82313,906406,6 +152856,Anne Lind,94468,157230,6 +152857,Bernie Oakman,88375,8233,5 +152858,Shazaam,24149,91285,2 +152859,Evan Maxwell,159667,1226195,3 +152860,Simon,13792,75539,3 +152861,Finlay,127560,1640,2 +152862,Organizadora Gigantes,438634,1886451,11 +152863,Bobby Green,2001,73421,0 +152864,Anne Britt,13318,85152,1 +152865,The Man,32708,557267,0 +152866,Jason,434873,1229669,5 +152867,Gianna S,9673,58464,5 +152868,Waxie Moon,338063,1581574,13 +152869,Richard Dwight Jr.,53792,18907,16 +152870,The Mage,274857,469759,1 +152871,Jette,16015,77543,4 +152872,Ilmari Hukkanen,408203,125632,5 +152873,Renny,25426,1239281,8 +152874,Lili Wong,38461,120719,13 +152875,Doctor Pratt,62143,12446,6 +152876,Policeman (uncredited),22943,1170869,28 +152877,Zeb Andrews,16442,993409,18 +152878,Hospital Nurse,46695,1185421,12 +152879,Jim Davey,223497,87459,1 +152880,Anatoly,388862,1848567,10 +152881,Mimi Smith,33511,5470,2 +152882,,42430,84170,2 +152883,Helena de With,149511,562651,6 +152884,Hollywood Stepmom,232672,60959,24 +152885,Doctor,224944,1010052,2 +152886,Gishirō Tsukamoto,2487,25466,5 +152887,Tina Malhotra Khanna,11854,35776,2 +152888,Herself,333103,1218610,10 +152889,Man at Church (uncredited),16442,116494,71 +152890,,31011,220141,22 +152891,Maj. Richardson,67377,14261,0 +152892,Shopkeeper,54146,142490,1 +152893,Moroccan Daughter,29101,1516712,26 +152894,Hipster,36691,115976,17 +152895,Six Chick,10096,60073,20 +152896,Louise,10484,558333,11 +152897,Eve,35656,1557632,10 +152898,Aunt Carrie,50073,32431,7 +152899,,137504,1529757,15 +152900,Chief Chattez,61049,50574,8 +152901,Troublegum Posse 2 - Phat Jimmy,198277,1423906,27 +152902,,375742,1564295,27 +152903,Himself,212481,11184,2 +152904,Carmen,127864,1091128,1 +152905,"Wedderburn, the Innkeeper",28425,88778,12 +152906,Eva,255913,1714057,24 +152907,Blonde Boy,72875,551184,18 +152908,,362617,24974,4 +152909,Himself,157117,533061,3 +152910,Lucy,53459,70815,4 +152911,Benjamin,21214,87285,7 +152912,Female Racer,168259,1364893,25 +152913,Ruth Manchester,5767,45454,8 +152914,Tonto,57201,85,0 +152915,Ezra O'Keefe,411741,986808,3 +152916,,73628,527094,4 +152917,Sallý,87229,1114142,8 +152918,Federale,263115,1822971,12 +152919,Capt. Elizabeth Lochley,10921,52312,1 +152920,Jurandir,40859,55101,8 +152921,Tassista,85038,1293962,14 +152922,Carolina Moon,48852,107339,12 +152923,Jan Jarmokowski,40218,5658,5 +152924,Irwin Bloom,55730,27545,5 +152925,Ben,18755,83532,2 +152926,Brian,266856,205258,7 +152927,Mary (voice),286940,7796,1 +152928,Rick Flagg (voice),14011,571309,8 +152929,Vern Haskell,28894,11128,1 +152930,Luo,45935,1174366,10 +152931,Airport Background,351242,1662463,15 +152932,Marcel,31993,120390,7 +152933,Sayoko,116303,130654,0 +152934,"John, the Butler",42288,94929,8 +152935,Ulosottomies,101838,1029104,32 +152936,Judge James V. Hulbrook,68976,29259,4 +152937,Lord Krishna,135718,35070,1 +152938,Grieg,39943,78849,5 +152939,"Sherman, SWAT Commander",16214,51330,8 +152940,Danny Collins,256924,1158,0 +152941,"Bruno, le collègue de Marion",15712,228196,6 +152942,Martin,71125,1811,3 +152943,Computer Nerd,1724,41089,36 +152944,Young Cassander,1966,1650067,11 +152945,Helmuth,114444,1115623,3 +152946,Anna Buff,52475,44888,23 +152947,"Goubi, le ""bredin"" du village",78377,37457,0 +152948,Angie Warfield,27105,15746,11 +152949,"""Budyń""",382155,1636706,34 +152950,Mara Canà,48805,51744,2 +152951,Mary Pruitt,79775,1276,2 +152952,главврач психбольницы,330878,238704,9 +152953,Charlie Wright,51823,18992,0 +152954,Gretchen,359255,1508175,7 +152955,Sandra,9943,16718,0 +152956,Dr. Mabuse,12206,77,0 +152957,Dog Announcer (voice),9982,6008,18 +152958,Mrs. Gurkel,17906,82487,7 +152959,Darts Guy,246655,1796415,66 +152960,Champa,157409,1138744,2 +152961,Female Warden,340101,137978,31 +152962,La sig.ra Piranesi,58611,52661,4 +152963,Anthony,419459,1689285,10 +152964,Red,14435,170145,12 +152965,Un journaliste BFM,98277,1017269,8 +152966,Cap'n Andy Hawks,31548,83474,2 +152967,Marco B.,83342,1057528,9 +152968,Gorman - Workman,250332,121245,39 +152969,George Watson,142216,73586,18 +152970,Steven Tyler,4551,37935,5 +152971,Linda,157351,10860,1 +152972,Captain Almeron Dickinson,10733,1325915,13 +152973,CR Leslie,245700,1503071,24 +152974,Ilona Varis,107525,147733,0 +152975,Scott McHale,36960,8549,8 +152976,Abu the Genie (as Joseph Turkel),18977,592,5 +152977,Nicola,59156,84250,2 +152978,Lydia Matveevna,71393,93548,3 +152979,Tomas,145547,1018,2 +152980,Doctor #1,9987,61519,15 +152981,Socket,65599,543728,10 +152982,Dr. Matt Younger,67696,16897,0 +152983,Head Nurse,239513,948581,12 +152984,Uncle Joey,346170,154837,3 +152985,General Rufus Fogg,53619,8632,3 +152986,Puerto Rican Teenager,146322,4808,13 +152987,Sally,18387,38160,3 +152988,Tea cafe boss,18763,134704,22 +152989,Militia Leader,259830,2302,8 +152990,Thaddeus' Friend,118889,135827,72 +152991,The Warden,27470,16523,8 +152992,Daisy,318359,1557115,1 +152993,Schoolgirl,29161,1760086,21 +152994,Pirjita,84944,931475,2 +152995,La Perla,65674,100724,9 +152996,James the Butler,6166,48327,0 +152997,,49907,550267,4 +152998,Lisa,26042,82745,2 +152999,Her Mother,270336,112510,2 +153000,Sgt. Roy Tarlton,6163,552686,5 +153001,Jeffrey Greenberg,60599,19511,9 +153002,Trevor,45013,593051,18 +153003,Colin,116979,1835160,9 +153004,Mark,82624,928301,0 +153005,,109587,559496,14 +153006,Tucker,49018,59117,6 +153007,Snoopy,284564,1836941,19 +153008,Yaeli,17614,82100,3 +153009,Ruby Carter,75880,103616,0 +153010,(voice),160324,1836,8 +153011,Rudy James,29083,12899,0 +153012,Marie,227262,586664,7 +153013,Walter Wodlowski,16240,80187,17 +153014,,58692,228265,7 +153015,,37055,1207309,1 +153016,Esther Malone,44693,131283,4 +153017,County Clerk,339419,1650188,45 +153018,Gwenyth Lloyd,13241,1879799,10 +153019,Officer Bindara,192023,1172457,5 +153020,Majoor De Keyzer,44751,44366,10 +153021,Chemistry Teacher,7326,229679,19 +153022,,197210,1615033,3 +153023,Hovmesteren,87654,1477353,18 +153024,Azad,29805,693,14 +153025,Caligula,51144,550129,0 +153026,Swiss Boy Friend,91583,1692503,20 +153027,Emmett Fitz-Hume,9080,54812,0 +153028,Dancer,10096,1212446,41 +153029,Terri,15749,78318,3 +153030,Aline Cooper,78364,28246,5 +153031,SPC Cook,263855,1235307,12 +153032,Basketball Concession Owner,17258,169093,33 +153033,Priest,13072,106816,4 +153034,,107705,240598,10 +153035,Maire,37206,935,1 +153036,Raymond Wilkins,59895,88887,3 +153037,Townie's Friend,71866,935531,6 +153038,Federal Man #2,157343,1075172,10 +153039,,169343,1151393,1 +153040,Tiepolo,44933,1853758,4 +153041,Vic Centauro,51209,227232,22 +153042,Walker,84105,14889,5 +153043,Detective Kimura,134350,20335,9 +153044,Patti Ratteree,184578,87120,2 +153045,Cop's Wife,2001,1781730,84 +153046,Chidori,209032,559416,13 +153047,Harper Finkle,26736,142108,5 +153048,Bit part,332872,1651934,36 +153049,Oliver,42684,22821,2 +153050,Greg Proffitt,10780,1037633,7 +153051,Darling,377691,63769,2 +153052,Banquet Guest (uncredited),39311,8515,7 +153053,Costello's Bodyguard,267931,83367,5 +153054,Dame Claude,11680,236974,11 +153055,Ellie Tynan,47906,30618,1 +153056,Chris Hartley,77949,1674640,21 +153057,Reuben,187219,1903,2 +153058,le mari,209244,97845,17 +153059,Raymond,11012,1066372,10 +153060,Rachelle,343702,81821,3 +153061,Buster Heavy,47342,1837867,23 +153062,Naomi Waldack,44751,553353,6 +153063,Wolf,144792,29987,8 +153064,Hannah,239619,124709,0 +153065,Corrina Ramsey Parker,76422,80989,3 +153066,Ephor #5,1271,29468,24 +153067,Paramedic,63139,77109,5 +153068,Himself,9951,60828,0 +153069,Sam Minns,16410,588668,9 +153070,Raymond Thomas,168217,1313114,2 +153071,Contortionist,1271,1330766,60 +153072,,343809,1541178,1 +153073,Chris,25450,212604,13 +153074,Billy Radd (uncredited),40765,97043,5 +153075,Older Woman Tourist,10488,1077900,15 +153076,Dee (voice),323968,1286437,1 +153077,,153795,41249,7 +153078,Brutus / Regent Guard #2 (voice),23566,89547,14 +153079,Teenage Roger,274504,512749,8 +153080,Old Dressman,8079,35821,13 +153081,Dr. Diane Brady,24749,32225,1 +153082,Harvey,43849,1035801,7 +153083,Hotel Desk Clerk at Ritz,31993,88464,24 +153084,Doctor (uncredited),284052,1599280,51 +153085,George,32166,20402,5 +153086,Young Josh Lambert,49018,1067761,12 +153087,Elvis,138496,76940,4 +153088,Antonella Molinari,54309,120109,4 +153089,Bagu,310135,96591,6 +153090,Fight Commissioner's Assistant (uncredited),28000,1130451,47 +153091,Boxer,2577,26199,14 +153092,Wurst,12128,71390,2 +153093,Vartija,101838,1029092,24 +153094,Mom,355890,114470,3 +153095,Saverio,82662,1178411,8 +153096,waiter,28455,1032530,10 +153097,Hal Fields,55347,290,1 +153098,Juror,16186,114850,13 +153099,Bellino,122023,7063,6 +153100,Sebastian,85743,1273009,1 +153101,CAOC Analyst,1726,150669,61 +153102,Fonse Sonnenstatter,17008,44461,8 +153103,Else-Kristin Grillhagen,128946,120985,5 +153104,Bethany,112456,2165,2 +153105,Christie - Wife #6,10761,56447,15 +153106,McGonigle,99318,13977,8 +153107,Army Intel Guy,193756,1094319,22 +153108,Doug Shapiro,11908,155649,6 +153109,Thomas,97630,239271,13 +153110,Doctor,18072,73847,18 +153111,Roque,37817,55009,0 +153112,Norma,2143,132893,15 +153113,Daniela Berg,6076,38720,12 +153114,Lacey,188507,35027,7 +153115,Ma,140814,1113461,0 +153116,Shizuo Matsutani,148371,1080008,2 +153117,Russell,25646,44100,5 +153118,la sœur de Rachel,59507,588159,5 +153119,Minor Role,31993,1331767,31 +153120,Giacomino,249457,1880591,5 +153121,Gauthier d'Aunay,79892,24905,2 +153122,Dr. Maynard,20153,4077,7 +153123,,67633,1043266,19 +153124,Prison Officer,294652,234354,14 +153125,La madre superiora,66893,1050319,9 +153126,,105760,136741,1 +153127,Drinker / Cripple (uncredited),53392,14419,8 +153128,Rebecca,109453,6886,0 +153129,Courtroom Spectator (uncredited),339419,1650222,65 +153130,Leo Brody,42094,58661,3 +153131,Himself,97724,1388682,32 +153132,John,413998,1674154,13 +153133,Nurse Theresa,65650,40036,2 +153134,Brothel procuress,37702,94076,9 +153135,Robot (voice),13640,78798,6 +153136,Passant Philatelie,70752,223483,9 +153137,Jazz Musician,229297,1418996,23 +153138,Animal,41932,44818,5 +153139,Mamman,28062,99523,2 +153140,Jean Paget,88558,77165,0 +153141,Footman (uncredited),52440,121095,30 +153142,Kate Hodge,68163,1202898,1 +153143,,437253,234812,2 +153144,Chelsea,169068,66623,5 +153145,The Householder,193899,17753,0 +153146,Girlfriend,304372,1205257,10 +153147,Ravello,42216,109143,6 +153148,Monk Wu Zhi,66756,1356191,6 +153149,Undercover Cop (uncredited),4982,1224052,83 +153150,Enfermera UCI,280840,1749486,11 +153151,Dr. Vickery,98066,49201,12 +153152,Sebastian,261249,93105,1 +153153,Cynthia Skyes,55922,20188,5 +153154,Ayesha's Father,276935,53107,6 +153155,Mary,225044,52475,6 +153156,Colombian Check-In Girl,339362,124318,10 +153157,Pompous Senator,142145,1056876,8 +153158,Kapıcı Şemsi,80961,97273,4 +153159,Liza,32338,82096,3 +153160,Mall Victim,158739,977334,8 +153161,Brittany,311093,73534,7 +153162,Buurvrouw,5899,211133,13 +153163,Detective Jones,407448,1150232,31 +153164,Wilma Krankheimer,32021,165659,9 +153165,Abilash,172828,159468,6 +153166,Harry's Girl,102362,1167280,17 +153167,Bubbles (voice),153518,1332495,13 +153168,Hübsches Mädchen,11925,67737,6 +153169,Miner,87060,553228,21 +153170,Townsperson,7980,1427684,18 +153171,2nd Cop,242033,1277014,3 +153172,Schäfer's Sprinter #3,318781,1694297,20 +153173,Bridesmaid,13777,75274,28 +153174,Rezeptionist,12575,5761,4 +153175,Kenia,71672,116931,0 +153176,Nikolai Andreyevich Bolkonsky,149465,144834,10 +153177,James,33586,27107,3 +153178,Dolemite,19174,45474,0 +153179,Groupie,330947,1650309,39 +153180,Wolf / Pilot / The Captain,315855,79623,6 +153181,,335340,1452468,4 +153182,The Mute Invalid,315855,68816,26 +153183,Madame Grangier,63764,1969,4 +153184,Crocodile Gang Boss,9470,1287732,16 +153185,Stormtrooper,330459,60279,72 +153186,Clark,98066,34398,15 +153187,Virginie,57342,63895,7 +153188,Bates,86643,153127,6 +153189,Windegger,122487,3755,3 +153190,Naosuke,68715,1132449,16 +153191,Lehrerin,4955,41003,16 +153192,Young Bo,24078,92999,1 +153193,Anna,284293,7517,3 +153194,Miss Baxter,196065,59369,8 +153195,Acteur,35025,1347982,14 +153196,Lady with the Phone,74718,143132,3 +153197,Morgan Le Fey,7096,1283,1 +153198,Gül,37586,150440,4 +153199,Jeff Hale,43157,1231648,11 +153200,Hank McCoy / Beast,246655,3292,3 +153201,A,4024,3508,0 +153202,Talhante,49974,1195282,4 +153203,Fleshlumpeater,267935,55936,3 +153204,Pawnbroker,81120,123903,14 +153205,Artjom Tscheremnych,107445,239793,1 +153206,Lehrer,26891,23750,14 +153207,Alice Prentiss,28363,100581,5 +153208,,205864,1194905,4 +153209,Mc Coy,43829,14968,9 +153210,Cynthia,19166,5023,8 +153211,Fillmore,69065,249,4 +153212,Abby,185564,963946,8 +153213,Abby Vos,423988,1030261,1 +153214,Serge,197089,72320,1 +153215,Akiko Sugiyama,55192,213492,1 +153216,Madre de Delba,106887,1302053,4 +153217,Denise,138502,1108967,7 +153218,Shurik,435041,86690,0 +153219,Mrs. Turley,42703,170804,23 +153220,Cenda,46982,544206,4 +153221,High Judge,43252,99461,10 +153222,Lebedev,13506,235063,17 +153223,Sandy,28320,21294,5 +153224,Son Goten,39107,90496,0 +153225,Yasmin,14123,93378,2 +153226,The Vicar,42837,222836,6 +153227,JR's Cellmate,294652,1238460,17 +153228,Miss Appleton,382591,1288594,6 +153229,Dr. Amusa,46059,6561,5 +153230,Math Professor,381008,1784739,39 +153231,Caesar Hawkins,42678,30184,7 +153232,East Texas Tech (uncredited),365942,1794829,51 +153233,,370741,589796,10 +153234,Dalia,50531,133214,5 +153235,Prince Johann,53853,81934,5 +153236,Max,52369,145871,2 +153237,Herself,68721,14670,22 +153238,Al Capone,56264,1164,1 +153239,LSD Vision,6575,1763429,38 +153240,Sean Tuohy,22881,74428,3 +153241,Football Player (uncredited),209112,1645569,135 +153242,Ian Scott Fife,62143,14107,12 +153243,,237303,3977,0 +153244,Himself,53367,3974,11 +153245,Bessie,38684,444008,11 +153246,Woman from the red house,18381,227606,10 +153247,Stole,34449,38130,6 +153248,Grandma,13258,93490,4 +153249,Akseli Koskela,103751,16778,0 +153250,Joël,150736,21659,3 +153251,Lila,329805,1164460,14 +153252,Gram,134656,220348,4 +153253,,25626,99689,36 +153254,Doctor,36335,45250,14 +153255,Ronald McDonald,20196,159087,10 +153256,Jack,86643,1196810,8 +153257,"Fred, the District Attorney's Chauffeur (uncredited)",17136,121098,36 +153258,Maggie,14527,1219161,5 +153259,Flood Extra (uncredited),104430,4165,11 +153260,Your Own Feedback Consultant,358511,1803942,7 +153261,Ann,251421,153335,2 +153262,-Chief Warrant Officer,6163,48313,3 +153263,Harper Jason,109170,55568,5 +153264,L'avocat,53404,19164,7 +153265,Cousin Jacey Jackson,61550,156780,6 +153266,Club M.C.,34193,1440891,8 +153267,Wheel Chair Patient,9987,61521,17 +153268,,271677,86302,1 +153269,Amante di Jimmy (as Maria Rosaria Della Femmina),63186,1760382,6 +153270,Tree Voice,79329,82704,21 +153271,Stubbs,11788,30328,17 +153272,заведующая детсадом,20871,86676,9 +153273,One of The Brian Sisters,108222,1277034,29 +153274,Sir Henry,12450,1035098,6 +153275,Jacob Small,73194,89736,15 +153276,Mr. Webb,95504,30530,11 +153277,Nai Thongmen,39907,228623,3 +153278,Spats,2611,30621,5 +153279,,374021,1392850,10 +153280,Himself,63144,1246284,30 +153281,Allison Lang,14695,1813,0 +153282,Noble,84655,13401,2 +153283,Acteur,35025,1284449,31 +153284,Catherine,13710,25346,6 +153285,Marco,193641,80230,4 +153286,General Pecheur,55628,19439,6 +153287,Eily Bergin,1420,16901,14 +153288,Talent Agent,2976,963406,36 +153289,Leandro,302802,1273667,1 +153290,,298522,81683,3 +153291,Frank Nielsen,1450,17291,8 +153292,Lui-même,222297,1294426,3 +153293,Himself,360341,90388,2 +153294,Diana,16022,32,1 +153295,Diomedes,293380,12517,9 +153296,Mr. Browne,16171,79875,24 +153297,Smith - the Architect,55604,103068,48 +153298,Fiedler,13580,18216,2 +153299,Tamagi,26936,96639,7 +153300,Chris,417820,231666,1 +153301,Reaver,263115,1821515,31 +153302,Slow Jeremiah,174751,1194214,9 +153303,Nicholas Porter,29805,65,5 +153304,Flo Bentley,120588,22948,5 +153305,Barbara,40368,556931,12 +153306,Downey,17927,71725,15 +153307,News photographer,224813,1069989,14 +153308,Major Francis Monogram (voice),71689,567615,5 +153309,Asiye,452606,1797948,17 +153310,Gen. Umberto Nobile,8063,29903,3 +153311,,280422,1337736,3 +153312,Cab Driver (uncredited),121636,1947,12 +153313,,79580,587517,11 +153314,Plumber,85196,1485208,8 +153315,Coda,53945,10254,0 +153316,Louise von Plessen,88273,34867,8 +153317,Herself,347630,1695666,42 +153318,Kay Wright,18557,9376,5 +153319,Todd,134435,30112,8 +153320,Jess Walters,177566,1140635,7 +153321,Cabbie,102841,101429,17 +153322,Lou,10744,97798,11 +153323,,14284,1195360,7 +153324,April Rimbauer (5 yrs),16175,58412,8 +153325,Oberst Krenzer,34449,37777,3 +153326,Henry Chinaski,10475,2876,0 +153327,Taiga Narumi,25716,506447,15 +153328,Cloten,240745,21028,5 +153329,Doc,75315,1232540,49 +153330,Marcella Feroci,42674,128409,3 +153331,Captain Crab (voice),35395,98106,7 +153332,Mercy McBee,42703,35,4 +153333,Mosquito,81522,3556,12 +153334,Taki Nunomiya,254679,1054260,1 +153335,Nora Clitheroe,173456,14974,0 +153336,Larry Daley,181533,7399,0 +153337,Park Myeong-sin,108972,1046864,8 +153338,,188180,999637,7 +153339,Hardware Clerk,46190,40393,11 +153340,Charlie,62761,27752,6 +153341,Girl,170517,1745597,19 +153342,Roger Brown,70670,76547,0 +153343,"Katherine ""Kitty"" Pryde / Shadowcat",127585,27578,6 +153344,Jaller (voice),19325,52718,0 +153345,Rocky,26153,86009,4 +153346,Cath,18739,47730,2 +153347,Tom Pruitt,79775,21163,1 +153348,Cindy Lou,30411,74954,10 +153349,Peggy Ann Snow,34193,13567,1 +153350,Billy Hunter,89756,1152784,4 +153351,Trevor,381073,1593039,12 +153352,Hausmutter,10748,9139,19 +153353,Dean Saunders,25941,59075,3 +153354,Shane,31821,133627,4 +153355,Stan,75300,1472,1 +153356,"Danielle ""Dani"" Miller",73348,97013,3 +153357,Graduate Student,381008,1589601,15 +153358,Henry,26223,883,1 +153359,Happy Drunk,268350,29987,8 +153360,Restaurant Diner,186869,1862915,45 +153361,,102858,79504,1 +153362,Hospital Killer,131815,8927,6 +153363,Mikhail,18472,52761,2 +153364,Miroljub,371459,135448,3 +153365,la patronne,68202,20187,10 +153366,Wade Farrow,91627,65404,3 +153367,Amy Kasse,125700,1200623,6 +153368,Yuliya,51276,1163600,9 +153369,John Kumalo,231392,54565,1 +153370,Goff,75244,105349,4 +153371,Rob Cokran,397837,1480597,8 +153372,Mike,36251,174580,16 +153373,Detective Sunshine,9568,58044,4 +153374,Mr. Ogawa,125264,213479,6 +153375,Vater,61552,48711,4 +153376,Whittaker,29510,9309,6 +153377,Nina Vasquez,41171,955,3 +153378,Mui Age 10,19552,151165,1 +153379,Invitato,23619,1741928,21 +153380,"Podkomisarz Krzysztof Magiera ""Nielat""",74919,1138082,3 +153381,Lara,119409,1446766,2 +153382,Profesor Milczarek,31856,87236,6 +153383,Bystander,43821,30530,16 +153384,Dr.Surush,43761,1339656,7 +153385,Ti Yi-er,18731,67221,1 +153386,Yun Hong-yeon,142499,20737,0 +153387,Orderly (uncredited),284052,1660249,44 +153388,Bouncer,427673,1796797,9 +153389,Shoshi,144271,1076791,3 +153390,Gentaro Fujimoto,402455,584143,10 +153391,Sylivia,41479,112562,5 +153392,Mrs. Widgren,51144,557053,7 +153393,Alison Hoffman,75595,38703,1 +153394,Athos,41609,18803,3 +153395,Constable Balk,113638,1240252,0 +153396,Himself,253337,1308171,9 +153397,Cecil Y. Walsh,59828,19414,4 +153398,Greta,240913,1847765,11 +153399,Nigel Armine,44099,20364,1 +153400,Tie Ju,248376,1209782,5 +153401,Cavalry Sergeant,118889,99464,57 +153402,Varaldi,62397,1894266,15 +153403,Jack,73565,1228880,24 +153404,The Gentleman,105539,119542,7 +153405,Remi's friend Bertrand,27102,96971,9 +153406,Greg Abernathy,383535,60089,3 +153407,Kerala Village President,66247,93194,9 +153408,Claudia,51036,1218880,3 +153409,Christian VII,88273,1013156,3 +153410,Jae-pil,53514,148413,3 +153411,Trevor Leigh Davies MP,11012,102761,14 +153412,Apollo,32657,1507600,35 +153413,Shûji Ôkura,31512,226826,6 +153414,Lieutenant,51601,34008,11 +153415,,202984,1185278,7 +153416,Scientist,22939,1711,4 +153417,Rudy's Attorney,274479,73194,56 +153418,Na Keow,136087,64357,0 +153419,Gazda (voice),41078,22787,4 +153420,,124597,140299,2 +153421,Himself,28036,5695,6 +153422,Helene 2 years,72875,568023,12 +153423,Mother of Emily,10320,167098,16 +153424,Jenny,9352,49961,2 +153425,Drummer (Quartet),244786,1503838,27 +153426,Sergeant Bormann,13823,19901,24 +153427,Little Harry Goubenek,45679,15949,10 +153428,Lady Ingram,22744,74622,10 +153429,Pope,357851,9315,4 +153430,Lady in the bathroom,21214,87287,9 +153431,WWII Pilot,369885,1651417,59 +153432,Landlady's daughter,122221,12657,10 +153433,,416569,143505,6 +153434,Z-4,90395,29536,6 +153435,Single O,90395,102502,0 +153436,Natalie,12536,59662,7 +153437,,46492,136384,9 +153438,Eric,121822,74541,4 +153439,Jean-Pierre,51828,1449869,18 +153440,Captain Collins,240913,25944,15 +153441,Brian,119738,437100,1 +153580,,124075,155439,3 +153442,"President, Worldwide Theatrical Production, Warner Bros.",14543,10952,4 +153443,Miss Malkin,75903,45466,2 +153444,Susan,196235,21398,7 +153445,Amy,82687,4496,14 +153446,Juliette,101352,1071382,5 +153447,Ripkuna,15907,19299,8 +153448,General Ned Almond,12412,31512,22 +153449,Policeman (uncredited),27036,77022,6 +153450,Emily,169758,13241,1 +153451,Mark,46190,40380,4 +153452,Ollie,44960,7180,3 +153453,Giovanni,122192,25819,8 +153454,Justin Long,186606,1168908,3 +153455,College Girl,356752,1087135,37 +153456,Angie,326045,173027,7 +153457,Prince Regent,26808,19923,1 +153458,Cavit Bey,297298,145290,2 +153459,Airport X-Ray,41733,142374,14 +153460,Warrier,237672,930730,3 +153461,Luciano Baietti,42579,69036,0 +153462,Lukas,21837,87954,3 +153463,arkkiviisun laulaja linja-autossa,442752,1761851,43 +153464,Raphael's Mother,14589,1312993,69 +153465,Boldini,189621,32428,7 +153466,Miner - Townsman Mob Defendant (uncredited),14615,1204352,54 +153467,Jacky,204768,16927,0 +153468,Sir Roderick Femm,31592,34331,8 +153469,Hausmeister Hochhaus,2349,16725,23 +153470,Male Nurse,280092,1833632,25 +153471,Motorcyclist's Girlfriend,64725,1314451,14 +153472,Número Guardia Civil,100270,1533666,6 +153473,,352199,73475,3 +153474,Alexandros,47795,150570,0 +153475,Tina Alvarado,78364,16217,8 +153476,Ikran Clan Leader (uncredited),19995,1186027,79 +153477,Camper (uncredited),251227,1286529,23 +153478,Toshi Iwamoto,18585,143364,4 +153479,Farmer,43829,105454,25 +153480,Sophie Stern,133183,578947,5 +153481,Keller,59961,92404,3 +153482,Estrella,28859,138961,6 +153483,Nadir Bhindra,295723,1418155,5 +153484,Brin Madly,353728,43277,2 +153485,Johanna,20361,85986,11 +153486,Housekeeper,31216,150469,4 +153487,Kim,10265,56862,2 +153488,Network Executive #1,14923,21290,36 +153489,Restaurantgjest,87654,1477360,28 +153490,"Bryony, Grid Girl",88478,1521222,4 +153491,Frankie,21765,1132183,10 +153492,Ray,429200,1425799,4 +153493,Herself - Storyteller,128216,7800,10 +153494,Ine Hatano,20527,19857,3 +153495,Gavin,294272,1372,3 +153496,Soldier #1,142150,210065,13 +153497,Magdaleena,58391,85386,2 +153498,Nikki,137683,1224170,10 +153499,Military Official Brown,246655,1015896,58 +153500,Jung Sang-Ha,280019,139493,2 +153501,Nishiwaki,45489,81281,2 +153502,Garcia,94182,115770,12 +153503,Bar Fight Guy,157829,1102535,17 +153504,Ali,24955,92895,0 +153505,Realtor,158967,1115988,6 +153506,Pete,127614,1095236,1 +153507,Séverine Ferrandot,329819,17074,3 +153508,Cois,182545,91716,2 +153509,Chris Abeley,34482,1018657,12 +153510,The Chief,271404,142019,7 +153511,Hombre X,264525,1070128,12 +153512,Club Goer,77930,1460212,65 +153513,Maria Grazia,116236,1348208,6 +153514,Young Michael,85265,1524133,12 +153515,Esther Georges,45213,132491,3 +153516,Al,80168,14028,6 +153517,Elizabeth,2929,28972,0 +153518,John Rogers,131360,30292,3 +153519,Rookie Cop,88042,935722,13 +153520,Minikah,68097,29814,9 +153521,,46567,1008490,17 +153522,Man at Bar,32044,74763,17 +153523,Curley,49334,82558,5 +153524,Dr. Batiste,41171,37158,14 +153525,Vi,363807,1469128,2 +153526,Krishna Verma,33556,35068,1 +153527,Greg's Friend,228970,1495074,19 +153528,Jakob,259728,1301980,21 +153529,Therapist,7515,52849,6 +153530,Lillian Wang,47405,97032,1 +153531,Rory,23367,95370,19 +153532,,274131,31989,2 +153533,Alix,49920,51733,0 +153534,Eric Kulhane,55505,84769,0 +153535,Gawain MacSam,5516,9562,2 +153536,Alan,20842,48805,0 +153537,Mandy,35826,1228203,11 +153538,Dr. Andrew Johns,285181,45849,11 +153539,Deado #8 (uncredited),49524,1579759,30 +153540,Foy,278334,1376094,7 +153541,Jonathan,70585,126471,7 +153542,Diana,296288,1371607,3 +153543,O' Connell,359412,1820506,19 +153544,Yellow Moccasin,35001,73572,1 +153545,Dwight Fairchild,63360,62019,2 +153546,Amy Blake,43809,123120,5 +153547,Handan,236317,145389,2 +153548,Paco,280045,231028,3 +153549,Passenger,330947,1650312,41 +153550,Liz,227871,1263323,1 +153551,Derek,42684,128634,11 +153552,Clayton Harding,13092,1229,11 +153553,Mädchen,104172,1384109,14 +153554,Messerschmitt,16444,119353,13 +153555,Dominique,61430,35658,10 +153556,Zinaida,64483,143634,4 +153557,Forest,122081,1194368,7 +153558,Mountain Hawk,18512,14731,5 +153559,Marion,378446,1578025,4 +153560,Nurse,18072,3303,20 +153561,Chloe Richards,24619,9206,1 +153562,Valerian,206647,1599253,38 +153563,Prostitute,30929,100102,10 +153564,Parmenion,1966,20282,14 +153565,Lizzie Borden,243568,6886,0 +153566,Mercenary 4,70981,1074618,18 +153567,Acton Ryder,131351,28633,5 +153568,Claudine,29128,104217,8 +153569,Duke,19740,1242989,10 +153570,Laura,211158,71984,4 +153571,Tracy,232672,591834,6 +153572,Levi,131737,974,2 +153573,disponent Grillhagen,128946,557054,4 +153574,Railway Porter (uncredited),33112,89747,25 +153575,Le diable,45000,97251,8 +153576,Gunther,167424,6644,3 +153577,Ted,402446,55589,6 +153578,Roland,20357,16702,3 +153579,Lisa,1481,1844324,8 +153581,Big Boy,25674,58744,9 +153582,André,99819,1021742,6 +153583,Marcella,56804,1830373,17 +153584,"Yuko Kirishima, the yakuza girl",36246,127892,1 +153585,Paul,326,27124,11 +153586,Lady Edwina Esketh,115109,13577,0 +153587,Sandy MacKinnon,61049,86356,5 +153588,,25801,55062,3 +153589,Himself,400668,1821656,3 +153590,Sherry,18015,1291806,9 +153591,Virgílio,361146,1054884,1 +153592,Control Cámaras,254869,1423088,43 +153593,Reclametekenaar,268853,46450,3 +153594,Second Life Representative,265226,238260,11 +153595,Inquisidor (uncredited),122019,589795,11 +153596,Nikki,71670,81703,7 +153597,Herby,179288,1651130,7 +153598,Cypress Triad Gangster (uncredited),15092,1527746,63 +153599,Go-Go Dancer,11247,1776545,63 +153600,Father,26826,96384,3 +153601,Madison,50318,1222219,27 +153602,Dr. Stach,62392,151676,17 +153603,Flight Attendant,334074,1488053,18 +153604,Cooper's Prom Date,268920,1415436,43 +153605,Heldon,28000,83806,6 +153606,Frozen Corpse,308269,1447889,13 +153607,Vater Bief,73775,1167390,18 +153608,Amery Herries,186227,13343,12 +153609,Tad,313922,1194966,10 +153610,Hollywood Walker (uncredited),297762,1824300,82 +153611,Imah Lahoud,320318,228719,3 +153612,Rider / Roper,33541,1464600,33 +153613,News Editor,369019,62972,7 +153614,Reporter,214756,131849,60 +153615,Brady,325189,973385,1 +153616,,194853,229254,14 +153617,Iris,5048,40901,8 +153618,Gary the Dentist,157829,58942,23 +153619,Hrefna,341490,1013122,12 +153620,,25626,20640,34 +153621,Paolino,73697,1662942,4 +153622,Lucy,426253,4766,3 +153623,Viswanathan,169364,584639,1 +153624,Johnny Haslett (uncredited),19618,2758,11 +153625,Leila,6183,22687,1 +153626,Entomologist,222487,1207912,0 +153627,Sergeant / The Kaiser,53423,148065,2 +153628,,81435,76309,0 +153629,Dablone / Toblerone,69152,44222,6 +153630,Charlie,39978,20800,6 +153631,Hinx,206647,543530,7 +153632,Leena,51423,87722,0 +153633,Member of Parliament,109716,29600,47 +153634,,134474,1332738,19 +153635,Boy at Party,49712,1174392,30 +153636,Himself,15258,74296,61 +153637,Townsman,134238,1381975,45 +153638,Khandagle,140883,583520,7 +153639,Hippie Chick,47342,138627,15 +153640,Fritzi Wagner,33339,84223,5 +153641,Eva,289232,1312266,4 +153642,,2692,30802,11 +153643,Capt. Schubert,32021,14847,3 +153644,The Campbell Chieftain,189682,29580,7 +153645,Báez - Inspector,25376,1331801,13 +153646,Waiter,18774,1218962,16 +153647,Mr. Reynolds,28304,2755,7 +153648,Harvey,4882,39777,10 +153649,Dan Conlon,175171,81182,8 +153650,Emma Machielsen,81600,91527,1 +153651,Marchand,30174,1763719,16 +153652,Waxwell,88375,160548,12 +153653,Hautavainio,150208,232401,1 +153654,Marvin Landisman,71825,4040,0 +153655,Cha Yeon-Soo,280019,1336799,4 +153656,Maris,22585,80742,6 +153657,Nerka,375742,1290106,10 +153658,Danny - Post Office Paymaster,43812,89728,31 +153659,Michaels,24392,1328821,6 +153660,L'enfant aux yeux bandés,56653,1469925,4 +153661,Eleanor Weston,175027,87858,7 +153662,Stripper,1420,17022,8 +153663,Detective Rice,402582,1637662,23 +153664,Cmdr. Marder,29805,740,12 +153665,Valto,88126,148019,3 +153666,Claudine André,76703,237869,2 +153667,Mulville's Driver / Gunman,84336,1592216,17 +153668,Dr. Matwick,140648,224073,11 +153669,Steve,924,15232,4 +153670,Samuel Heckler,7980,1212194,16 +153671,Bartender,31128,1205991,10 +153672,Jeune homme Kibboutz,1986,1500879,21 +153673,"Molly Byrd, Superintendant of Nurses",153165,30242,8 +153674,Justice,117098,1329373,5 +153675,Eun Choong-ho,408620,1295417,9 +153676,FBI Man (uncredited),73430,6937,28 +153677,Gopi Ma,135718,1045403,7 +153678,John Merritt,98289,41998,14 +153679,Charlie Young - Carston's Lawyer,52864,95729,9 +153680,Blonde Frau,80125,998517,14 +153681,A / Subject #3,29151,81681,17 +153682,Frank Brancato,51209,7168,17 +153683,Nelly,211059,1482519,3 +153684,Doctor,102949,12742,3 +153685,Настя,47812,94064,10 +153686,L'officier des gardes,126958,1083444,8 +153687,Col. Koh Lip,10005,61858,15 +153688,Lilia,277839,17475,6 +153689,Jacqueline,7871,53234,3 +153690,Eye,17796,1174003,16 +153691,Katina 'Tina' Dangos,118059,1066753,5 +153692,The Boy,241071,84300,4 +153693,Man #1 / Chip,88005,157009,21 +153694,Temp Agency Counselor,38908,1136149,7 +153695,Homme métro,187602,1169491,12 +153696,Kia,9655,58370,9 +153697,Dave,26679,1088124,13 +153698,Cristina Bonelli,42438,21606,4 +153699,Vice-Principal,31512,127222,11 +153700,Track Suit,156700,1842172,6 +153701,The Bishop,96132,31898,8 +153702,Niña,16092,79293,6 +153703,Tug Medic,47412,138890,8 +153704,Dr. Rick,17927,83231,5 +153705,Wounded Bear Mr. Smith (Attorney at Law),177043,15666,4 +153706,Cottrell,58076,113759,7 +153707,Sam Brooks,10594,65775,10 +153708,Billy Bones,26612,936,2 +153709,Triad mahjong player,222216,70690,9 +153710,Mrs. Featherby,10837,15098,5 +153711,국장(Guk Jang),245597,945428,2 +153712,Dancer,25973,1015932,12 +153713,Rudy,15045,77799,1 +153714,Jyotsna Gokhale,103073,585191,1 +153715,Aunt Marilyn,4592,38334,9 +153716,Yull,348689,1320503,3 +153717,Costatino,82080,1408870,19 +153718,Suzie Pullbrook,24655,102448,13 +153719,Observer Leslie Wiggins,43497,115289,7 +153720,Meghna (as Manjari),14467,150435,2 +153721,Frankie (voice),1267,963235,21 +153722,Sailor at Canteen,264309,1371320,10 +153723,Reporter,127812,30280,20 +153724,Engineer #1,19665,64475,22 +153725,Anna,73027,567810,10 +153726,Mary T. Jenkins (Modern Story),3059,29953,5 +153727,Narrator (voice),36162,556920,0 +153728,,10484,35523,23 +153729,Miyumi / Miss Mirimoto (voice),16390,11024,4 +153730,Taksówkarz,278867,1138285,9 +153731,Clea,17926,148707,6 +153732,Barn Dancer (uncredited),31509,100040,17 +153733,Parking manager,81463,102096,15 +153734,Ruth,309024,31715,6 +153735,Tom McShavie (as Sean Patrick McNamara),14123,129952,21 +153736,Mechanic,10294,58019,2 +153737,Jason R. Reid,48949,14792,6 +153738,Malin's Mother,289278,111362,10 +153739,Himself - Narrator,384130,1225228,1 +153740,Prinz Humperdink,5393,9657,15 +153741,Pinka,2734,27639,13 +153742,Rex,72105,74949,3 +153743,Candidato,195522,1175907,2 +153744,,153196,1283564,14 +153745,Kim Brady,28452,100850,1 +153746,Demetra,12279,84481,14 +153747,Dow,13544,929401,3 +153748,Deep Bibble,13285,44150,10 +153749,Rufus,43753,129807,14 +153750,Principal Maynard,331588,38672,15 +153751,Fran Madison,324670,1246,3 +153752,Weapons auction buyer,220488,71051,11 +153753,Reeve,17457,21909,2 +153754,Un frère Carmoni,72655,23984,7 +153755,Madam - Nishiyama's neighbor,43113,1481151,74 +153756,Bucky,15045,60506,4 +153757,Dr. Henry Barlow,67696,10173,3 +153758,,63215,1316257,11 +153759,Dancer (Red's),57201,1760470,44 +153760,May,51601,80994,2 +153761,C.M. Sanjeevayya,55283,91557,6 +153762,Jenna,7511,6857,1 +153763,Wilson,14047,159948,18 +153764,Letterblair,110540,2126,12 +153765,Harriet Herriton,59704,351,4 +153766,Young Sailor,33931,95623,7 +153767,Principal,273610,15105,11 +153768,Neha's Brother,60392,929089,7 +153769,Jerry,112456,1054839,5 +153770,Denver Kinnaird,41468,98503,6 +153771,Mayuko Tanka,128169,82898,3 +153772,Investigator Granger,22881,142374,10 +153773,Elder Ammon,159638,75178,6 +153774,direttore,302802,1862083,23 +153775,Winston,13090,5365,6 +153776,Chen Mou,248376,1622943,20 +153777,Submarine Officer,75363,10925,15 +153778,Tae-Gwang,242458,1078674,6 +153779,"Рамирес, младший коп",143876,1165830,3 +153780,Criada Francesa,45191,1685476,13 +153781,Charlie Watts,128270,1294531,42 +153782,Rachel,59507,76820,0 +153783,Mattia Balossino,53399,509344,1 +153784,Krupieeri,293271,125595,15 +153785,Max Dreyfus,43491,11169,3 +153786,Betty,42941,102744,5 +153787,June Raskob,91181,222574,4 +153788,Dhansukh,46403,35819,5 +153789,,58692,82718,1 +153790,Judge Bowling Green,43806,984870,9 +153791,Cynthia 'Cookie' Charles,153169,138145,3 +153792,Mayor,381518,32357,8 +153793,Ellen Seberg,49353,21876,2 +153794,Mr. Johnson,38908,121611,2 +153795,Police Commissioner,262528,101878,13 +153796,Drache,10659,59336,14 +153797,Orderly,45013,1818039,51 +153798,Medical Receptionist,239563,1070750,21 +153799,Mayor,25551,118319,10 +153800,Værelseskammerat,76312,1024854,10 +153801,Drummer,76341,1734194,51 +153802,Un tueur,98277,229611,12 +153803,Christopher,11832,229176,20 +153804,Business Man with Mistress,84228,1026877,10 +153805,James Dean,16135,79505,10 +153806,Anchorman,88005,11889,14 +153807,Rouault,45184,94070,12 +153808,Dr. Helen Chase,37992,2780,11 +153809,Timmy's Dad,280617,1522151,15 +153810,Bailiff,97024,3371,7 +153811,,155325,1616655,28 +153812,LT. Johnson,140222,1561416,7 +153813,Henryk Wald,246860,169,6 +153814,,37959,43666,12 +153815,Sarah,381737,1315946,20 +153816,Anais,242683,108986,3 +153817,,19552,1275929,20 +153818,Tony Stewart,304613,62596,3 +153819,Jean Lucas,10484,16927,1 +153820,Captain Dutton,6972,77335,16 +153821,Nageswar Rao / Seetharamudu / Bittu,253533,149958,0 +153822,Pam,137683,154826,8 +153823,Dillon,102222,51682,1 +153824,Announcer at Benefit,18651,32193,31 +153825,,45949,1309014,9 +153826,Lily Emery,36612,14450,4 +153827,Juez (uncredited),82767,186620,16 +153828,Gary,36992,1485178,4 +153829,,94663,1352173,10 +153830,Zoe,16320,9576,1 +153831,Chloe,16342,80385,3 +153832,Nugie,32044,71347,23 +153833,White,257912,41421,1 +153834,Teresa,220724,1357798,7 +153835,Miguel Ernesto Alvarez,80304,7372,9 +153836,Trudy,5559,52119,9 +153837,Mr McCance,29108,480,5 +153838,Gustav Kanning,34181,209398,6 +153839,Mr. Gautsch,257831,91276,8 +153840,Ebenezer Jackson,27739,98870,0 +153841,Betty Carfax,41312,126120,4 +153842,Clavius,335778,12763,3 +153843,Ben Avery,109251,51963,5 +153844,Margot Shelby,20028,277570,0 +153845,Chip's Mother (voice) (as Louise Roche),142115,1291255,5 +153846,Infomercial Nancy,14923,1386349,24 +153847,,88273,1444692,27 +153848,Kyle Van Der Klok,24150,233298,33 +153849,Myer Prince,1723,982077,10 +153850,Jennie Wreitz,323673,31363,0 +153851,,43751,1117120,9 +153852,Doug,264644,43258,19 +153853,Mr. Sanders,128311,94149,9 +153854,Fishmonger,52850,1214693,6 +153855,Franny,8998,3234,4 +153856,Filippo,42679,128443,9 +153857,Andronico,105906,1125591,9 +153858,Samuel Z. Cutter,153169,10411,7 +153859,Dr. Sherman,271185,81726,15 +153860,Miller Brown,151062,7678,1 +153861,Goran,14400,230400,8 +153862,Ryo Urushibara,25716,1084911,18 +153863,Butch's Dad,325712,1879677,18 +153864,Desk Anchor,127585,198540,53 +153865,Yoga Student (uncredited),15092,1781965,72 +153866,Exit Guard,47404,157335,26 +153867,Radio Announcer,2567,115596,37 +153868,Ivan Fleekov,12450,47969,7 +153869,Lewis Coach,921,1225377,22 +153870,Madeleine,15414,42279,9 +153871,,49907,32312,0 +153872,Farmacêutico,296288,481155,19 +153873,,38027,1762438,31 +153874,Annie,85350,955807,41 +153875,Jack,18387,45415,1 +153876,Lisa Denton,105059,4301,1 +153877,Victoria Mitchell,128216,62525,29 +153878,Lucien,201749,1123785,7 +153879,Martha Raye,106821,106572,2 +153880,Tomas Mejia,78318,120342,49 +153881,,102858,143674,2 +153882,Jacques,34840,28281,0 +153883,Detective #2 (uncredited),162862,100763,11 +153884,Sang-Shik's Wife,26955,96662,7 +153885,Closet Client,232672,1398012,25 +153886,Ricky,82350,297300,7 +153887,"Slattery, Guard #2",9987,61517,13 +153888,Nozomi,25053,21688,0 +153889,Random Neighbor's Wife,193893,1381688,56 +153890,Rosemeyer,11046,26557,13 +153891,Johanna,4955,11535,9 +153892,Stephanie,38317,57451,10 +153893,Seeker Sands,72710,1273235,16 +153894,Evan,10330,1542,12 +153895,Jin,414453,68842,0 +153896,,40146,1055175,10 +153897,Mort / Phil Henderson / Patrolman,18633,61981,4 +153898,Manager Hotel Pushkin,6687,1129800,9 +153899,Pearl,43809,231216,8 +153900,Ana,136752,1208794,6 +153901,Arvid Stjärnblom,377290,87663,2 +153902,Mara,33495,124679,11 +153903,Krupp,11614,556744,6 +153904,Mary Masterson,35564,91332,7 +153905,Encarnacion,82999,116587,4 +153906,"Zappacosta, il capostazione",107052,134215,8 +153907,The Doctor / David Wang,18665,224918,4 +153908,Abraham Lincoln,188161,15832,21 +153909,Retirement Home Director,302528,10210,11 +153910,Bates,128669,29580,25 +153911,Jason Menlow,99374,40173,2 +153912,Police Reporter,2001,1473075,59 +153913,Cleve Marshall,35404,7683,1 +153914,Carmen,36288,92774,8 +153915,Raymond Dabney,97024,19406,0 +153916,C.P. Kennedy,205587,51298,13 +153917,Kentucky Booster,9918,1633666,19 +153918,Dancer (Red's),57201,1760468,42 +153919,Dr. Higgins,12483,61824,16 +153920,Chloe,268174,40978,2 +153921,Dorothy,447758,20300,3 +153922,Himself,95756,31656,1 +153923,Jo Wilf,369697,1166,11 +153924,Monsieur Henri Milan,131781,37143,9 +153925,Meeper (voice),27042,96997,0 +153926,Det. Sgt. John Steele,19846,37286,1 +153927,TV Reporter 1,64450,1014719,19 +153928,Sean Stover,30641,106641,2 +153929,Kid in SUV,1726,1209705,39 +153930,Donald Thornton,266333,29382,0 +153931,Dr. Higgins,31280,109865,5 +153932,Arthur Lempereur,61765,3829,0 +153933,Dani,56647,224733,8 +153934,Tony,293863,144852,7 +153935,Ivan - Pole,197737,939680,26 +153936,Carla,419459,81321,6 +153937,Nicholas,12124,71363,4 +153938,Reece,295964,29528,6 +153939,Keyboard Player,9870,53607,26 +153940,Ben Crane,12920,6856,0 +153941,Joker (voice),40662,31531,4 +153942,Eddie Dibson,43440,96243,4 +153943,Han,110261,19137,0 +153944,Mollie Kilduff,47115,1218072,5 +153945,Six Chick,10096,88072,19 +153946,TJ,196235,23533,4 +153947,Biff Atkins,57597,1676189,19 +153948,Sergeant Sands,69560,7144,10 +153949,Tsai Chu-sheng / Himself,68004,56861,1 +153950,Läkare,60899,231928,15 +153951,Kanga (voice),14885,60739,5 +153952,Sir Pent,256962,1237876,19 +153953,The Dream,316154,6384,3 +153954,Tsui Lik,365222,1202564,6 +153955,Sheriff Ferguson,12767,73569,6 +153956,Charlie,124597,1051831,7 +153957,Claire,361571,54818,5 +153958,Ellsworth,257450,203390,11 +153959,Julia,32559,480659,3 +153960,Sara Corsini,39992,19562,4 +153961,Amber,9793,55463,10 +153962,Abbé Breuil,329718,16441,5 +153963,Bookshop Proprietor,2309,79502,10 +153964,Himself,128140,1161077,2 +153965,Miss Kelly,167073,42601,7 +153966,Inn Waiter (uncredited),27003,97999,9 +153967,Maiden,273879,1327656,4 +153968,Chester Conway / Sylvester 'Lester' Conway,90461,129549,6 +153969,George,259694,111683,7 +153970,Stepbrother,46891,980192,3 +153971,Nurse Walters,401222,222247,7 +153972,Musa,56807,1014017,2 +153973,Darious Thorestensen,24619,65123,18 +153974,Julius Hench,319910,7132,2 +153975,Ella,13655,133328,6 +153976,Himself - The Band,14770,76135,3 +153977,Suzy,40087,1646183,10 +153978,Porteiro do prédio,117534,1902464,34 +153979,,50032,42645,9 +153980,Tiny,42062,3383,2 +153981,Mr. Parks - Druggist,32610,116661,23 +153982,Vet,8988,1741962,38 +153983,Don Tino,374416,1879940,15 +153984,Mélanie,41211,54292,2 +153985,,74481,35747,4 +153986,Nancy Himmel,17745,82344,13 +153987,Officer Dan,7288,21505,9 +153988,Bobby,8617,53368,1 +153989,Rork,218582,32437,9 +153990,Bondi,403605,1503670,9 +153991,Staff Member #2,312221,232749,51 +153992,,239798,1274877,0 +153993,Steve Rockford,26376,16523,3 +153994,FBI Agent #1,245703,29932,21 +153995,Man on bus,101998,1226195,26 +153996,Jane Langley,45692,83796,1 +153997,Boy,427680,1758466,2 +153998,Silvono,175822,95028,9 +153999,Rafiq Mabroz,196852,53979,15 +154000,Signora Orragi,4930,40165,12 +154001,Henry,377428,46898,15 +154002,Osgood,42023,150780,9 +154003,Rebecca,7515,52848,5 +154004,,412363,1769119,10 +154005,Operaio,82662,1334050,10 +154006,James,445602,1066204,4 +154007,Dan,443319,588335,8 +154008,Lone Cop,9828,59675,18 +154009,Halloween Dancer,11247,1776533,51 +154010,Erin,322922,1838039,16 +154011,Kirill,245891,9452,16 +154012,Yuji Kawamoto,41261,79037,9 +154013,Jules,64983,1958,6 +154014,Gail,17745,56731,10 +154015,"Théoden, King of Rohan",122,1369,12 +154016,Gisa,81541,1189550,17 +154017,,9550,1620878,14 +154018,Larry Shaw,113700,1057660,2 +154019,Mr. Jensen,9664,17354,5 +154020,Dan,24170,2192,4 +154021,Helen's Maid,157898,1286627,14 +154022,Wilhelm Jerusalem,52475,23182,3 +154023,Jenny Hill,38770,20141,10 +154024,Grand Duke Basil,214909,8240,7 +154025,Sheriff Cole,91333,158575,10 +154026,Mary Meh (voice),378236,38334,5 +154027,Chief Justice / Offscreen Narrator,63505,11783,2 +154028,Auctioneer,76115,231671,11 +154029,Driver,302699,1754483,32 +154030,Himself,123691,235434,0 +154031,Himself - Roaster,334461,74036,7 +154032,Hamad,157843,1907172,33 +154033,Ernie,84575,930994,4 +154034,Luca,58518,17839,1 +154035,Elderly Woman,245891,1405915,25 +154036,Tracie Jackson,219247,1001947,2 +154037,Trina,128866,1088054,3 +154038,Austin,157898,14688,3 +154039,Police Officer,172520,1585120,13 +154040,Rower,38285,14148,4 +154041,Terence Aloysius 'Slip' Mahoney,193435,89989,0 +154042,"Muriel, Ellis's Friend",340101,1202971,46 +154043,The Man,315723,2192,1 +154044,The Captain,11832,142906,16 +154045,Himself,38404,120337,1 +154046,Zhanna,78464,1063494,3 +154047,Zee,42706,3208,8 +154048,Phil,310137,14700,1 +154049,Terry,79778,27141,8 +154050,Birthday Woman's Friend,14923,60074,50 +154051,Ken,268174,13591,8 +154052,Nahoko Satomi (voice),149870,5081,7 +154053,Dr. Weiss,284052,84073,20 +154054,Kissing Teenager,199575,1438858,19 +154055,Jocasta Constantine,90406,18847,3 +154056,,77057,1209311,16 +154057,Bobby Bailey,118131,29261,3 +154058,Richard Zygelman,72278,1071597,3 +154059,,361183,1162656,3 +154060,Herta Rosseni,6591,18545,1 +154061,Courtroom Spectator,43821,117677,37 +154062,Christine,133941,27611,1 +154063,Leonard,289712,1042516,10 +154064,Additional Voices,21057,554420,10 +154065,König,410774,22856,3 +154066,Dona Hermínia,227932,1185618,0 +154067,Saxophonist #2 (Studio Band),244786,1398714,18 +154068,Sir John Ashwood,52440,78854,1 +154069,Kit Preston,12617,8237,0 +154070,Reverend Abraham,34231,19384,3 +154071,Lewis,147773,161932,10 +154072,Pavel Novak,48118,71248,5 +154073,Barbara Drummond,32082,10168,1 +154074,Ricky Wong,67460,1242792,2 +154075,Darrell,98066,65829,3 +154076,Abigail,348631,117995,6 +154077,Phileas Fogg,10204,4581,1 +154078,Symphony Appreciator,5123,1469246,43 +154079,Beatriz,74718,535740,1 +154080,Lieutenant Mitaka,140607,229634,28 +154081,Elsa,145191,1122429,5 +154082,Maître Larieux,37653,39283,10 +154083,Vickie,245906,5578,16 +154084,Mechas,258363,112129,2 +154085,Bill,43829,80545,17 +154086,Visitor Room Guard,26376,133277,49 +154087,Pageant MC,773,35521,9 +154088,Florence,76651,556944,5 +154089,Grace Mitchell,427673,175756,6 +154090,Chloe Styles,289225,1634772,7 +154091,Dr. Munce,10145,33,6 +154092,Jovem 1 do 'Eu Nunca',296288,1839914,22 +154093,Flo Allen,229638,80994,1 +154094,Himself,329690,15832,11 +154095,Jeff Constant,39127,10697,4 +154096,Nathulal,96159,601881,13 +154097,Shop Assistant,371462,1563626,9 +154098,,11664,4925,7 +154099,Ranganayaki,66247,549602,1 +154100,Smitty Jacobson,188102,180942,8 +154101,Jay-Jay,26142,1223812,13 +154102,Javier,161024,96479,5 +154103,The Spirit of Man,43252,29522,0 +154104,Mr. Schwartz (uncredited),33025,29987,14 +154105,o.A.,5646,33775,5 +154106,Skipper (Qantas Sloop),6972,23,14 +154107,Richard,97365,1033673,6 +154108,Dervos,200331,1905,9 +154109,Dean Olson,35558,1232325,9 +154110,Spa Attendant,401164,1817453,13 +154111,Caroline Bascomb Compson,287636,19257,13 +154112,Hotel Clerk,28270,122008,6 +154113,,162899,1144871,3 +154114,"Diogo Álvares, Caramuru",70815,87341,0 +154115,Gym Assistant,55846,1497913,24 +154116,Adam's Mom,270383,1369071,14 +154117,Bill Locomotiva,10915,67455,2 +154118,,188640,85676,9 +154119,Molokh,13486,62539,14 +154120,Dalila Di Lamar,46567,29918,15 +154121,Tony Song,354287,1647129,18 +154122,Blake,29611,104351,4 +154123,Olga,87123,74874,0 +154124,Calendar,41903,93290,3 +154125,John,75595,62911,9 +154126,Uncle Kamal Bhatia,27621,693,3 +154127,Gabby Colussi,253484,1085816,1 +154128,Minor Role,43833,77672,17 +154129,Marcus McDonald,371504,58654,4 +154130,Bartender,153161,121244,28 +154131,Jane Moynihan,29117,89731,3 +154132,Jimbo,30996,549532,15 +154133,Sideshow,387999,1745928,6 +154134,Roger Morgan,11897,40202,7 +154135,Namorada da Mãe de Diana,296288,1489045,9 +154136,TNT Cop in Shootout,2001,1781726,79 +154137,Sundown (uncredited),59882,89746,14 +154138,Alia,121598,87377,14 +154139,Florida Hotel Bellboy,157343,986341,42 +154140,Ben Hoffman,13542,16758,4 +154141,Lily,227156,1272862,8 +154142,George Davis,327749,2141,4 +154143,Stucchi,226936,225298,2 +154144,,49522,1548524,17 +154145,Himself,406431,113521,10 +154146,Nate,336666,1457013,3 +154147,Three G's,326,109686,5 +154148,Yuma,32068,37723,6 +154149,Herbert,82157,1207315,3 +154150,EHC Client,71670,1584029,37 +154151,Kareem,15476,93602,4 +154152,Rosie,347630,1290125,39 +154153,Karl Stevens,209244,56930,9 +154154,Pvt. Jordan Reid,61341,1338247,6 +154155,Ann Patterson,69668,3489,1 +154156,Ahmed,85602,1385262,8 +154157,Truck Driver,42709,164657,11 +154158,Patrizia,298722,78713,9 +154159,Dolly Mishra,14705,37233,1 +154160,Agustín,289198,1145866,4 +154161,Al Cooley,41206,13297,6 +154162,Detective Ramsey,90465,34285,6 +154163,,104374,1619187,11 +154164,Veda,202241,38940,1 +154165,Salah,35623,103006,10 +154166,Constance Schuyler,167882,13997,3 +154167,Toby (12 yrs),200727,1398633,11 +154168,Pete Porter aka P.P. Porterhouse III,175065,115457,0 +154169,Jeff Hale,16356,36067,0 +154170,Tommy,298584,1573611,13 +154171,Jonathan,364088,1231532,1 +154172,Det. Mallory,74777,551461,3 +154173,Larry Gopnik,12573,72873,0 +154174,Chauffeur (uncredited),419430,1754535,30 +154175,Sarah Morris,205481,47627,1 +154176,Isa,214129,1495472,15 +154177,,88953,592065,8 +154178,Derek,138544,1108829,5 +154179,Child,1421,1723449,39 +154180,Reporter,143946,226747,28 +154181,Left Siamese Twin,26643,188147,7 +154182,Don Jose Castanares,80592,124634,6 +154183,Leka,193893,56448,15 +154184,Eloise,46806,95039,3 +154185,Kurmanjan Datka (18-25),295914,1372346,1 +154186,Miss Elk Ridge,68721,37252,48 +154187,Attarea's Slave (uncredited),3059,1106626,98 +154188,Bhowana,71041,26253,8 +154189,Wild Johnnie Brodrick,137357,96487,3 +154190,Dum (voice),2805,135839,12 +154191,Support Group,222935,1672079,33 +154192,Stephen Chandler,18044,32205,3 +154193,Danny LaGattuta,1723,1004,5 +154194,Martha Kent,1452,2639,7 +154195,Giovannone,82350,1892908,9 +154196,Princess Salme,24094,97470,35 +154197,"Bronek Sikora ""Szklarz""",38869,1537019,3 +154198,Keiko,332662,1168128,5 +154199,Sgt. John Danforth,4820,4960,8 +154200,Raghavan,341420,1540756,2 +154201,Arthur Auguste Angel (voice),201223,1241498,8 +154202,Glenn Phillips,77583,124839,0 +154203,Basilli,303542,121732,2 +154204,Mrs. Kaufman,127803,573987,2 +154205,Ricky,195022,1180699,7 +154206,Gangster,345922,1445679,18 +154207,Tim Salanger,1825,33015,6 +154208,Carlos Dantas,38461,103051,3 +154209,'Popsy' - a Businessman,87123,948509,9 +154210,Donna Marta Capitelli,50196,25791,10 +154211,Burke,11358,63566,17 +154212,Max,272878,1683802,15 +154213,Trevor,334074,55364,19 +154214,Matteo,64942,59269,6 +154215,Ellen's Mother,4960,77013,13 +154216,Dudie,279090,39588,1 +154217,Mrs. Janey McCurdy,12483,1185259,14 +154218,Mrs. McKenzie / Gimli Slider Waitress,246403,23658,9 +154219,Bert,85200,1574428,9 +154220,Al Richie,207178,116564,6 +154221,Little Nadine,376660,1698098,11 +154222,Evil Samara,10320,107791,11 +154223,Jo Wilder,2267,20810,2 +154224,Aunt Ellen,195068,9073,5 +154225,Tiny (voice),153518,198150,11 +154226,Amit,16987,230441,13 +154227,Henry Millens,32526,74608,5 +154228,Le traducteur,59118,1563099,22 +154229,Ada,58615,28258,2 +154230,Eva (voice),172385,1335647,17 +154231,Nightclub Patron,120109,1208020,9 +154232,Cherry Pie Pulowski,55681,1086564,3 +154233,Agent Neil Shaw,24756,62817,0 +154234,Leonard Ripken,35683,538321,3 +154235,Makoto Sugihara,25716,85004,21 +154236,Molo,76084,388960,9 +154237,Aberthol,336149,937120,4 +154238,Michael Aleen,285841,143593,1 +154239,Elliot,55347,21633,4 +154240,(uncredited),45191,589844,15 +154241,Alton,22881,1040864,16 +154242,Kissing Couple In Park (uncredited),88005,1644662,29 +154243,Carl Pusser,107262,41214,1 +154244,Garrett,41301,1656032,7 +154245,Police Chief P.F. Baker,43228,136126,9 +154246,Dance Master,87827,1271649,16 +154247,Dr. Madge Honey Badger (voice),269149,108253,13 +154248,William Hardy / The Cherokee Kid,46623,6725,4 +154249,Maria,103758,1034712,1 +154250,Vicky,54814,169249,2 +154251,Bradley,36992,1485179,5 +154252,Charlie Hook,2516,21605,0 +154253,Roberts (Groom),62720,98497,10 +154254,Elmer Fudd,349045,23679,3 +154255,,140883,629478,8 +154256,Clark Field Control Officer (uncredited),15807,101882,22 +154257,Cemetery Manager,216156,1277310,11 +154258,Marianne Agudo Pineda,98203,142965,1 +154259,Alice,298722,223621,4 +154260,Oliver Hardy,126832,207144,3 +154261,Andrew Scott,28510,16644,1 +154262,Ballard Weeks,105059,50308,8 +154263,Sarah,6183,48509,8 +154264,Consul,42996,5832,9 +154265,,208309,1158769,5 +154266,Natalie Gilbert,255496,31647,1 +154267,Julian Manet,33314,90553,9 +154268,Bess,69903,567104,5 +154269,Black Infantryman,239566,1347294,33 +154270,Alexander Latoor,55612,115737,3 +154271,Kendra Eldridge,59189,18913,2 +154272,Himself,437752,109708,1 +154273,Ackerman,325803,1715,5 +154274,Troupe,19995,1207259,39 +154275,Young Poppy,374461,1330999,8 +154276,Pi Song,219572,1365909,10 +154277,Oliver Young,192623,14592,5 +154278,Stooge Larry,95037,89613,8 +154279,Cortland,56533,12692,9 +154280,Doctor Easter,122662,89832,1 +154281,Grand Duchess Gloriana XIII,49876,11127,0 +154282,Sir William Porterhouse,31592,10921,2 +154283,Nils,111017,258011,7 +154284,Nanny,46806,5823,0 +154285,Regan,30780,106980,3 +154286,Shorty,24554,75323,8 +154287,,27351,223290,3 +154288,Jon,265432,17405,5 +154289,Tractor Operator / Troupe,19995,91443,19 +154290,Bunny Fox,46570,100683,4 +154291,Alexander,64454,1103699,8 +154292,David als Heranwachsender,2734,27634,6 +154293,Policeman,246127,29470,12 +154294,Joe DiMarco,247691,7124,0 +154295,Jennie,987,19097,20 +154296,Two Ton,21138,1113299,8 +154297,Forstander på ungdomshjem,76312,6142,8 +154298,Skye,86820,1012144,1 +154299,Tim Benton,290379,17753,1 +154300,Policeman #1,27549,30032,22 +154301,Mr. Hamilton (as Pierre Watkins),25953,30216,7 +154302,Mateusz Birkut,224,1386,1 +154303,Herself,36325,1096499,5 +154304,Julia,85507,89101,7 +154305,Maresciallo,101231,5813,3 +154306,Narrator,447758,1221053,0 +154307,Garry Marshall,212934,43774,9 +154308,Dad,91391,137228,3 +154309,Himself,125736,1271005,14 +154310,Sean Anderson,72545,27972,0 +154311,,18729,198886,2 +154312,Marta,82341,933331,9 +154313,Bullseye,35392,94127,2 +154314,Quill,45132,85096,8 +154315,,376716,86878,10 +154316,Gen. Lewis Meyers,39766,85895,1 +154317,French Maid (uncredited),28571,1184839,13 +154318,vader,35016,1004868,12 +154319,Himself,9951,117256,11 +154320,Gopal's lawyer,90634,86057,9 +154321,Santa,146712,72045,7 +154322,Harvey Milk,10139,2228,0 +154323,Mr. Pelli,117499,1303596,7 +154324,Prison Officer,294652,1883811,15 +154325,Preacher,414910,1676536,2 +154326,Big Mike,9624,5170,8 +154327,"Bąk, wiceminister MSWiA",49588,2831,7 +154328,Thorvald,47956,18589,0 +154329,Pirate Gun Captain,42242,135189,18 +154330,Centaur (voice),365942,36804,21 +154331,Mohit Dewan,413547,69711,3 +154332,Edgar,29923,105255,8 +154333,Lee,389630,36422,2 +154334,Härski Hartikainen,62900,116158,5 +154335,Gary,74921,1085694,2 +154336,Roseline (voice),108048,32092,1 +154337,Matty Stanek,48949,4887,3 +154338,,88273,82537,13 +154339,Ellis Jones,293863,91520,1 +154340,Himself,76494,557830,23 +154341,Aino,325205,1426721,4 +154342,Viscount Gort,13241,1879800,11 +154343,Julie Cote,60599,119499,7 +154344,Corbett Denlon,11917,51042,11 +154345,Crowd Member at Rodeo,18843,1905158,31 +154346,,327237,144199,5 +154347,Pierre Blanc (as Billy Daniels),131764,116746,7 +154348,Harry Woodruff,59895,34119,10 +154349,Johnny Stark,30036,35322,8 +154350,Count Nurin,63304,1391343,11 +154351,Cole,293167,74242,10 +154352,Allen Brewer,32395,517,0 +154353,Michael Age 6,60457,239966,7 +154354,Fegan Floop,12279,10697,17 +154355,Lorena,377587,81703,2 +154356,Suren Bhagwat,20916,86017,4 +154357,Kate Kendall,29483,103994,2 +154358,Johnny Ramone,111479,183070,30 +154359,Nell,68139,39028,2 +154360,Ann Archer,26204,10190,1 +154361,Rudy Mackenzie,9667,8784,6 +154362,Martin Baughman,397717,1669773,35 +154363,Jean-Louis Maurel,59118,16374,2 +154364,Larry Randall,32610,13977,19 +154365,Jenna Danville,89269,74288,0 +154366,Alfred Davidson,44140,12515,1 +154367,George Bastian,84903,144125,6 +154368,Capt. Alfred Kern,36530,564897,15 +154369,Julio,13653,66957,3 +154370,Fighter,440777,1754597,21 +154371,Molly (voice),10193,97051,20 +154372,Mischa,63578,177,3 +154373,Notaire,2566,26109,12 +154374,,206277,1309129,1 +154375,Politician,461955,1120189,6 +154376,Слава,20963,86861,1 +154377,Inspector Koch,19335,5248,2 +154378,Armand - the Chef (uncredited),33112,115770,28 +154379,Nobu-chin,73306,234641,2 +154380,Pharaoh,24272,74933,5 +154381,Market Trader (uncredited),245700,1295992,71 +154382,Beatrice 'Bea' Pullman,47921,30155,0 +154383,Jimmy,218778,201841,27 +154384,Hank Cahill,7445,9880,3 +154385,Sebastian,14432,1577027,11 +154386,Jo Conway,43790,14689,3 +154387,Dr. George Wilton,42325,34422,5 +154388,Benny Lockhart,203321,480,7 +154389,Eugene,49314,11477,1 +154390,Ilse,4955,26300,3 +154391,Arthur Havisham,121674,1220087,10 +154392,Lady Gray,42460,3672,1 +154393,Arize,209401,1835581,15 +154394,Ed,105059,78087,12 +154395,Mikaduki Shizuka,14525,27788,4 +154396,Sergente Visicato,183073,32312,0 +154397,Monsieur Grenouille,52264,145678,5 +154398,Homeless Guy,195269,1324714,19 +154399,Inspector Razia Khan,102632,1238179,5 +154400,,188981,97210,1 +154401,Mrs. Annie Call,62392,17755,5 +154402,,73578,237686,5 +154403,"Dima, Russian Kingpin",270774,115876,9 +154404,,172011,1265675,0 +154405,Det. Lt. Barney Nolan,30034,8254,0 +154406,Rotxo,76600,1615098,16 +154407,Woman,82654,1548179,26 +154408,Sgt. Todini,67377,5813,6 +154409,Chuck E. Duck,130925,19754,4 +154410,,109587,1055265,9 +154411,Anne,26643,104200,20 +154412,Nanny,52440,14299,6 +154413,Hürmüz,38547,120680,0 +154414,Georgia,369883,1540602,8 +154415,Tough Looking Man,11404,40478,10 +154416,John,6023,47297,7 +154417,Himself,390343,1299773,1 +154418,Emmanuel Lombard,369885,27397,6 +154419,Counsellor Cheung,9056,1346976,10 +154420,Mrs. Claire Nevins,109258,88461,7 +154421,"Déodat, The Painter",90930,39180,4 +154422,Killivalavan,320910,584718,6 +154423,Professor Harris,14207,148189,9 +154424,João Ernesto Praxedes,254439,1086110,0 +154425,Nathan,57326,947174,12 +154426,Narrator,36247,80131,7 +154427,Barman,84336,149991,21 +154428,Himself (as James Brown and The Famous Flames),76286,7172,6 +154429,,362682,1519030,4 +154430,Himself,417870,16450,30 +154431,Rocks,298751,11702,0 +154432,Dr. John 'Jack' Wilson,38964,187122,7 +154433,Hilda Wagner,147618,413599,3 +154434,Danny,305932,455033,1 +154435,Callum O'Neill,51828,75073,7 +154436,Timmy's Mom,146712,51800,4 +154437,Anna,298722,78533,3 +154438,le jeune automobiliste,12089,11191,18 +154439,Nina,279090,1052246,5 +154440,"Carlos ""El capi""",172457,1155089,6 +154441,Mounir,28417,24042,1 +154442,Safari Member,104973,1083149,9 +154443,Red Fox,130957,23265,1 +154444,Eli,179812,984614,2 +154445,Park Shin-woo (voice),209764,1330423,11 +154446,Larry,86838,10692,8 +154447,"Bae Doo-Sang, mob boss of the Whacker gang",54555,528339,7 +154448,Curson,200324,96061,4 +154449,Alice - College Coed (uncredited),88288,48958,10 +154450,"Alfred, kjelketrekker",20372,1270298,11 +154451,Herself,253337,1046723,26 +154452,Carlo,217648,5968,7 +154453,Dr. Jekyll / Dr. Hyde,3016,29578,0 +154454,Soldier,150712,1422280,25 +154455,Michelle,45505,1620,6 +154456,Judge Drake,27986,117074,4 +154457,,54236,228499,7 +154458,Klara Sesemann,58757,228346,6 +154459,Mr. C.,298865,418,10 +154460,Rita,33102,189883,6 +154461,F.J. Wilson,85648,16558,4 +154462,Clara,167707,1159602,2 +154463,Oskar Backström,116019,1062706,4 +154464,Geesje Wieringa,4134,34869,1 +154465,Principal,18843,5494,16 +154466,John Maitland,176670,16896,2 +154467,Arthur,53354,73394,1 +154468,Tyson,35110,78423,10 +154469,Sebastiano,356296,59269,3 +154470,Guards,51349,110034,7 +154471,Maszynista,157178,1138526,3 +154472,Hassan,74666,1112593,5 +154473,Goth Chick,49524,1186622,10 +154474,Officer Ryan,419430,143264,16 +154475,Były chłopak dziewczyny z psem,314371,1482162,5 +154476,Mitch Crandall,35564,118463,14 +154477,Hustings - Kutscher,38602,150864,13 +154478,Woman,134238,148870,29 +154479,Elizabeth,19823,2684,1 +154480,Leonard Edwards,14387,132101,11 +154481,Press Conference Moderator,312221,16486,25 +154482,Mildred Bissonette,28001,99367,2 +154483,Schanowski,83729,36010,7 +154484,First Playgoer,157898,120708,25 +154485,'Punch' Pandian,357706,130111,3 +154486,Roberto,127445,27459,0 +154487,Baron of Espinhosel,74718,278799,2 +154488,Mahmoud,16047,1147083,5 +154489,Herself,27637,1480773,22 +154490,,88285,42134,1 +154491,Pussycat Doll,4551,151246,52 +154492,Soraya,203217,228028,5 +154493,1960s Cab Driver,293863,1187262,34 +154494,Lu Xiaofeng,64304,240168,1 +154495,Portier,10311,10624,8 +154496,Johannesburg Onlooker,99861,1760867,40 +154497,Turkish Worker (uncredited),297762,1785923,90 +154498,Carol,15316,54586,15 +154499,Džems Raudziņš,144331,1192367,6 +154500,Gun Dealer,4413,1630464,28 +154501,Teague,13991,84076,5 +154502,Tanya,206197,1473432,29 +154503,Lenny,58918,1577014,12 +154504,Patsy Ramsey / Patsy Ramsey Auditionee / Herself,430826,1891528,42 +154505,Mrs. Parrington,173294,4573,2 +154506,Musketeers Gang Member / At Dance (uncredited),42553,30555,20 +154507,Dan Hatch,36983,50398,5 +154508,Comte de Verchemont,10087,44560,8 +154509,Reepicheep,2454,1926,19 +154510,Rafa Mora,254869,1423078,30 +154511,Cunilingless Girlfriend,86658,142256,4 +154512,Miguel Parada,166621,128324,2 +154513,Morgue Tech (uncredited),6973,1649292,42 +154514,Girl Jumping on Bed,15316,999605,12 +154515,Frank Andes,27114,120267,16 +154516,Tony,312669,19278,3 +154517,Chen Dong,364324,993784,4 +154518,Neighborhood Kid,25132,1112459,24 +154519,Candida,47848,141112,6 +154520,Abe Dale,7006,51797,0 +154521,Dr. Eli Blumfield,26142,55257,4 +154522,(voice),16137,79554,9 +154523,Marco,206647,124628,30 +154524,Cassie,22494,1772,2 +154525,Carl Wayne,145668,63214,5 +154526,Richard Morgan,383140,104342,10 +154527,Thomas,67748,1172841,15 +154528,Fretin,6935,51506,14 +154529,Aunt Sophie,110227,3362,4 +154530,Police Lieutenant,30941,1373202,45 +154531,Customer,46982,1537646,12 +154532,Himself,119738,1009931,0 +154533,Gas Station Attendant,55825,1352565,3 +154534,Wirtin,248933,23180,14 +154535,Jana,26826,96382,1 +154536,Himself,453053,16832,9 +154537,Jed,32068,12850,4 +154538,Detective Jason Magida,26301,5694,0 +154539,Perseverancio,198795,102302,10 +154540,Laurie,203186,1198309,2 +154541,Ugly Stepsister (voice),809,44127,17 +154542,Han Solo,140607,3,3 +154543,Peggy,266425,1313146,18 +154544,Himself,297668,1238805,7 +154545,Alessandro,9956,1169,11 +154546,ICU Nurse #2,55347,44578,23 +154547,uncredited,60759,98495,24 +154548,Samuel,14642,38951,5 +154549,Werksfahrer,267389,1307218,9 +154550,Professore,226936,586478,4 +154551,Ulrike,91390,8790,14 +154552,Sgt. James Shattuck,139826,190826,13 +154553,Capitaine Worriss,14531,51120,2 +154554,Frank Matters,22939,11108,6 +154555,Katherine,67977,1063816,2 +154556,Francois,22999,14029,3 +154557,Buchhändler,52475,48828,39 +154558,Julia,22387,10926,17 +154559,Rick Stokes,10139,57093,9 +154560,Hero Robot #1,13529,86605,0 +154561,Riley,183258,10881,0 +154562,Principal Godeman,125926,3857,7 +154563,Henry,1595,17859,5 +154564,Paquita,41608,1127378,7 +154565,Harrison,15163,118617,16 +154566,Chefredakteur,27637,1421534,10 +154567,Backwoodsman (uncredited),52360,100078,27 +154568,Restaurant / Pedestrian (uncredited),258480,1545524,41 +154569,Helen Rhodes,43117,66836,12 +154570,Anusha,308165,1115720,3 +154571,Colorado Skate Shop Owner,20210,36423,23 +154572,l'Individu,65612,35323,2 +154573,Special Agent,268920,1749826,47 +154574,Pilot,15807,2673,0 +154575,Gloria,49717,1089958,3 +154576,Emily,117251,125025,2 +154577,Man at speed date,42571,128226,9 +154578,Jill,192210,3196,3 +154579,Le jeune homme (uncredited),181456,2170,32 +154580,Nick,64678,1382031,16 +154581,Max Goof (voice),15653,61983,1 +154582,Michael Fishwick,33511,1235008,8 +154583,Teja,41903,119270,10 +154584,Katya,70966,20892,1 +154585,S.S. Hahn,3580,25879,3 +154586,Homebrew Member,186606,1750927,16 +154587,Heiner,3577,40634,12 +154588,Lara,338,4793,2 +154589,On Camera Musician,198277,1424208,38 +154590,The General,51947,7640,5 +154591,Princess Natasha Romanova,273167,39754,2 +154592,Policeman,43811,93500,58 +154593,Melody,30680,85144,5 +154594,Anne Beck,10795,32511,6 +154595,Bel,29108,33394,1 +154596,Mrs. Mosely,218784,46074,11 +154597,Dixie Lee,46623,10606,2 +154598,Larry,362541,9378,3 +154599,Batseba,2734,6726,3 +154600,Wm. 'Borax' Horton,89647,1285064,6 +154601,Dr. Wayborn,182499,110887,3 +154602,Bonnie,413337,1675345,4 +154603,Mark,163814,33355,5 +154604,Detective Hansen,304372,7497,7 +154605,Girl in Bed (as Brittany York),55694,142955,15 +154606,Karl,171873,1299013,3 +154607,Mitsuko Watanabe,49258,238805,3 +154608,Nozomi Osako,79382,135374,2 +154609,Louis Canetto,25633,14502,3 +154610,Gogi,194393,1174608,8 +154611,Gaius Julius Caesar,34469,23958,0 +154612,Touny,82598,996598,9 +154613,Bernie Myer,45693,28004,3 +154614,Times Square Bystander,102382,132310,59 +154615,,64156,134029,4 +154616,Kim Sohee,32237,1233711,0 +154617,District Attorney Harold Horn,35921,5249,4 +154618,TV News Anchor,257344,1683850,55 +154619,Sir Wilhelm / Robin Hood,55495,116158,1 +154620,Junkie,21968,159798,10 +154621,,391438,941342,5 +154622,Bekir,44105,133822,1 +154623,Man on the Street,105059,1683128,25 +154624,Rae Odom,180576,2179,6 +154625,Nicky,305342,94098,2 +154626,Rico,90231,1248704,17 +154627,Officer Fernandis,270650,1359963,30 +154628,Woman,9828,59089,23 +154629,Priest,19621,1408413,13 +154630,Detective Stevens,418437,1584924,9 +154631,Raul (voice),810,12071,25 +154632,Steve Morgan,22584,4110,0 +154633,Trevor Slattery,68721,2282,6 +154634,Young Nick (voice),269149,60739,18 +154635,,52188,145520,1 +154636,Mr. Goodman,25038,203538,13 +154637,Patricia Morgan / Patricia Gordon,28482,100910,3 +154638,General Li Yuanhong,76349,15170,6 +154639,Stunt Boy on bike,25941,1233266,31 +154640,Loket,57548,140814,10 +154641,Ciara,6023,47298,8 +154642,Donovan,183832,148866,9 +154643,Joy Ryan,99909,80994,0 +154644,Jane,18836,32290,0 +154645,Captain America,14611,87174,0 +154646,Frank Hallet,19971,8349,1 +154647,Ela,236317,145499,0 +154648,Treville,41609,5832,11 +154649,Zoe,1991,20494,1 +154650,Tito,32286,1159,1 +154651,Narrator,112912,67447,1 +154652,Lady with lorgnettes,223655,20127,14 +154653,Sunset Strip Girl (uncredited),193893,1285499,73 +154654,Thierry Bertinet,452142,120649,10 +154655,Father Rorick,921,14905,14 +154656,Himself,44038,130081,2 +154657,Prof. Hatfield,110980,123576,6 +154658,City Jail Cop,312221,1272973,26 +154659,,107916,1042755,8 +154660,Himself,324181,568583,12 +154661,Hausmeister Lohmeier,203539,10923,6 +154662,Himself,245226,21385,1 +154663,Cabbie,80720,47001,22 +154664,shinsui,129383,137028,3 +154665,Dr. Smith,11653,1297728,20 +154666,Tyler Adams,51481,935201,7 +154667,John Caine,43385,43821,5 +154668,Krissy Thompson,321039,45404,1 +154669,Nevin Şenses,148697,121423,1 +154670,Thelma Furness,65035,1232673,9 +154671,le capitaine,147360,40897,5 +154672,Man Recommending Motel,16090,17759,10 +154673,Shasha,2197,23303,2 +154674,Himself,253337,410,2 +154675,Miss Madrigal,66022,20141,0 +154676,Rygart Arrow,55435,89879,9 +154677,Girly,152736,939125,5 +154678,вахтёр,83456,932352,10 +154679,Young Speed Racer,7459,65202,7 +154680,Gustavo,384737,52904,10 +154681,Drag Fan,1481,1844341,32 +154682,Pintel,58,1710,8 +154683,Himself,410718,1702111,10 +154684,Enfant brune 11 ans,18897,992163,8 +154685,Girlfriend,359255,1508189,9 +154686,Edward,241374,8727,1 +154687,Duke,245175,592343,6 +154688,le commissaire,91690,97084,5 +154689,Mary Todd Lincoln,43806,4970,2 +154690,Putter,15982,5586,2 +154691,Dr. Enríquez,120303,107288,0 +154692,Hospital Patron,331161,1459160,23 +154693,Louise Kendall,413998,302165,2 +154694,Office Boy,18569,1035639,43 +154695,Mourner (uncredited),121354,97999,9 +154696,,231009,1077276,6 +154697,Chica colombiana,8329,1031748,17 +154698,Chief Ozobia,209401,1835582,16 +154699,Fitchum,174751,17289,5 +154700,Caroline (Ranch Member),245703,555652,13 +154701,Gun Enthusiast,354979,1636796,11 +154702,Florence,329724,17522,2 +154703,Chris Williams,21431,94769,5 +154704,Stripper,256740,1744721,11 +154705,Takuetsu,84508,1083306,6 +154706,Bruno,68716,21132,4 +154707,Mr. Hartman,78318,34447,48 +154708,Erik,14357,76750,1 +154709,Officer Hunter,220820,220056,24 +154710,Perfetta,59704,229668,12 +154711,Shinichiro,48341,9193,1 +154712,Halloween Dancer,11247,1776532,49 +154713,Vietnamese Priest,86838,111185,20 +154714,Joe - a Policeman,124115,34209,23 +154715,Jon Stewart,21587,12219,0 +154716,,52612,119199,10 +154717,Infantry Captain,43829,96257,33 +154718,BIMP Receptionist,285181,240383,18 +154719,Archili,128412,1050364,4 +154720,Princezná Maruška,208436,11684,0 +154721,Lt. Curtis,29290,141087,5 +154722,Nicola - a Child,71266,1047595,6 +154723,Lady Eastlake,114155,7056,0 +154724,Fox Booth Girl (uncredited),214756,1759683,100 +154725,Himself,13516,939079,12 +154726,Claudia,301224,1356513,2 +154727,Ptáčková,6079,47839,6 +154728,"Pascal, le jeune journaliste",221667,1075113,16 +154729,Dr. Carew's Secretary,153162,148527,22 +154730,Marching Doughboy,108222,131003,49 +154731,Cardenal,79779,1151368,8 +154732,Mars Vegas Singer (singing voice),15060,52139,11 +154733,Schutzmann Kilian,10626,47126,7 +154734,,256836,1355222,3 +154735,Liseanne Mills,358895,17640,6 +154736,FBI Head,257088,147638,12 +154737,Daryl Van Horne,6069,514,0 +154738,Private Saigo,1251,33515,1 +154739,Well-Wisher at Bridal Shower (uncredited),95504,121323,16 +154740,un journaliste,90930,938898,7 +154741,,188684,30772,9 +154742,Tony,44690,133855,3 +154743,Proprietario Agriturismo,43544,1871281,19 +154744,Coleman,76829,649,6 +154745,Karim,64383,67145,6 +154746,Rolfe Brent,43895,34119,4 +154747,Townsperson,24619,1850012,36 +154748,Bonnie,41831,205,0 +154749,Himself,130993,1111386,12 +154750,Tomas Mascardo,359105,1350111,20 +154751,Arlecchino,159474,132261,8 +154752,Rene,43692,3242,1 +154753,,133783,1439381,11 +154754,D.C.P. Bajirao Singham,285803,42803,1 +154755,Alois Kugler,17008,21743,3 +154756,Minnehaha,238985,115991,1 +154757,Ralph Houk,216153,165148,12 +154758,Le Chinois,12249,71935,4 +154759,Ann Dunham,397717,15852,2 +154760,Allen Devlin,226630,30613,0 +154761,Clint,47201,7502,4 +154762,Missy Lofton,44287,9206,0 +154763,Robey's Friend,64084,133968,8 +154764,Mark,74103,571189,8 +154765,Daddy-O,134732,116742,0 +154766,Frank Toy,156700,17039,3 +154767,Mary Follet,358199,35,1 +154768,Neil Martin,285135,25376,3 +154769,Queen Boadicea,341689,2227,2 +154770,Mayor,103432,1183497,28 +154771,News Reporter #1,62046,1330722,20 +154772,,155325,1616647,21 +154773,Young Girl,1550,1594631,26 +154774,Gregory,12594,73035,1 +154775,Everett Millais,114155,90451,3 +154776,Hostess #2 (uncredited),323675,1282418,49 +154777,Skipper Day,23964,152831,7 +154778,Dr. Vidal,102841,40209,11 +154779,Cockney,197737,100763,20 +154780,,118257,145352,16 +154781,Creasy,49712,349,0 +154782,Mademoiselle Divine des Airelles,2002,20577,7 +154783,Daniel,71672,563642,7 +154784,Det. Sgt. Poultry,180929,79735,6 +154785,Pop,109587,4641,3 +154786,Gregory,185156,218125,4 +154787,Linda (as Stacey Maxwell),94170,1240830,5 +154788,Will Gallagher,25426,93749,2 +154789,Boston Brand / Deadman (voice),408220,32897,3 +154790,Kursteilnehmer,308174,1529318,38 +154791,,200117,120637,4 +154792,Alt. Rory,271185,1322687,7 +154793,John Alexander,133941,14277,0 +154794,Major Buxton,16442,2496,5 +154795,Emily Parris,206197,929905,0 +154796,Randy Cambell / Flaming Reg Cambell / Colonel Calamity Cambell,17303,81582,0 +154797,Rose Evans,27443,83796,1 +154798,Mr. Levenstein,8277,26510,3 +154799,Françoise,27053,1522985,29 +154800,Cleve Van Valen,11897,8487,5 +154801,,314285,1069590,4 +154802,Omitsu,126516,1082749,0 +154803,Frau Keller,6183,36836,2 +154804,Chris McConnell,11584,2717,2 +154805,Poreotics Dancer,243683,1398213,96 +154806,Dr. Kay Lambert,110502,31169,1 +154807,Michal,81312,589512,0 +154808,Natalia Landauer,83119,7632,2 +154809,Hartley Madison,45800,12308,4 +154810,Kissing Concubine #1,1271,1330762,58 +154811,Boku Pak,14087,547991,8 +154812,Billy Rocks,333484,25002,4 +154813,Employé ambassade,98277,1849106,22 +154814,Alleluja,156988,80875,0 +154815,Stærh,433082,41905,8 +154816,Garsiv,9543,20286,4 +154817,Ann,20,98,0 +154818,Policier - chauffeur de taxi,5511,44408,13 +154819,Georg,336882,1544541,12 +154820,Dorothea Grimm,28367,29545,2 +154821,Clara Varner,40085,109410,1 +154822,Señá Rita,122525,1173614,3 +154823,Lizzy Thomson,158967,928134,7 +154824,Lisa,17606,350,2 +154825,Connie Torres,13655,85759,2 +154826,Eve Kingsley,89086,94036,1 +154827,Nurse Margaret (uncredited),52440,1540998,37 +154828,,347106,112854,5 +154829,Mookie,17927,1254620,23 +154830,Yamamoto's mother,131739,70627,6 +154831,"Bruce Wayne, aka Batman",125249,148249,0 +154832,Herself,70027,1490040,14 +154833,Camélia,31262,3063,1 +154834,Dr. Gier-Stimme,78694,37412,4 +154835,Pilate's Orderly,335778,1074586,21 +154836,Dexter,181533,1428580,20 +154837,,55424,76820,2 +154838,Alice,407,5499,3 +154839,Dick Norman,170936,121292,7 +154840,Sara,71672,563644,1 +154841,Nairomian Crying Woman,209112,1424325,120 +154842,Visitor,81296,564893,10 +154843,Frank James,40852,99235,2 +154844,Anne-Marie,42457,45465,5 +154845,Police Officer,210047,1193595,12 +154846,Sara Olson,35558,41743,2 +154847,Antoine Hébert,69535,38524,1 +154848,Alexei Borisovich,262447,545601,1 +154849,Crossroads MP,294690,60362,12 +154850,Townsman Deputy - Dawson's Friend (uncredited),14615,1291267,69 +154851,Stone,9624,8655,4 +154852,Zehnter Geschworener,269165,44469,9 +154853,Joel Carter,53860,30233,1 +154854,Rey Ciso,285840,190919,3 +154855,Morris Townsend,28571,12151,1 +154856,Julia Finsbury,62143,71733,3 +154857,Dr. Jonathan Neyer,13483,3229,7 +154858,Happy Taylor (uncredited),15794,179098,23 +154859,Le médecin de garde,139159,73650,9 +154860,Lady Lisa,257344,78030,5 +154861,Jack,19551,47297,0 +154862,Dojo Fighter,257447,1698764,27 +154863,Auntie,54982,61010,6 +154864,Uncle Pedro,108712,1491368,7 +154865,Tika,13283,1497227,5 +154866,Professor Bhole Shankar Tiwari,33460,87549,2 +154867,François' friend,8897,221669,3 +154868,Philip,33407,110599,4 +154869,Davis,254188,9634,15 +154870,,373838,1257123,7 +154871,Street Vendor (uncredited),337339,1015060,47 +154872,Paola's husband,3405,4968,7 +154873,Slushy Douche,218784,1336796,25 +154874,Nathan Davies,40925,130838,0 +154875,Insp. Fung Chak,56329,116423,15 +154876,Serveuse française pub,382591,584333,29 +154877,Judith Lorillard,329682,586757,2 +154878,Narration (voice),45205,131191,7 +154879,,125727,1788905,4 +154880,Ole,19181,79057,1 +154881,Richie Phillips,38303,112574,12 +154882,Mike,274857,1646438,32 +154883,Young Carolina,4592,75330,11 +154884,Mike,240913,1371831,16 +154885,,31418,584044,5 +154886,Merry Levov (age 8),326285,1621144,15 +154887,Fedya Yurchenko,267481,225670,4 +154888,Aunt Cecilia,129359,123464,4 +154889,Cassandra,14505,7401,6 +154890,Party Guest,157898,121257,16 +154891,Ken-ichi Takata (voice),14226,76931,2 +154892,Blind Mice / Heckler / Evil Tree #2 / Guard #2 (voice),810,12097,18 +154893,Tommy Rock,156360,148860,2 +154894,Long Beach Nose Punch Triad,15092,1202981,30 +154895,Lily,312669,1662556,16 +154896,,47211,1401456,11 +154897,Tommy,19053,2234,3 +154898,Goofy (voice),53219,5462,0 +154899,James' Sister,199575,1438812,9 +154900,Chris Nolan,42231,121759,2 +154901,Vinodhini,147815,1306580,11 +154902,Kurmanjan Datka (50),295914,1372349,4 +154903,Mrs. Banks,77060,240532,2 +154904,Sarah McClellan,57680,1902,3 +154905,Junya Kawano,208700,121716,6 +154906,Thelma & Selma,10918,6199,14 +154907,Daniela,18082,62282,3 +154908,Direttore ufficio shanghai,24189,238779,5 +154909,Connie Lamont,166621,29986,4 +154910,Fleetwood Yak (voice),333667,16431,4 +154911,Sanae Isono,39123,85938,9 +154912,Max Heller,288503,41274,4 +154913,Ilmari Kianto,32099,108860,13 +154914,Tommy,37929,9384,4 +154915,Clark,28465,64674,1 +154916,Officer Cunningham,280617,1522147,10 +154917,Jesse Allen (7 years),12912,205934,6 +154918,Victoria Ware,43522,65284,1 +154919,Church Patron,424600,1792637,39 +154920,Antonio,13477,21200,3 +154921,Yuriko,340176,1711442,21 +154922,Ulv,57438,226196,37 +154923,Roland Neal,43075,31702,3 +154924,Hippolito,23750,1108142,11 +154925,Detective Howard,73313,82510,14 +154926,Odin,63924,62911,4 +154927,Michelle,52736,100462,8 +154928,Cytomander,20986,553954,6 +154929,Claire Dunn,39414,14406,3 +154930,Spectator,52437,33855,40 +154931,School Girl,96936,934243,25 +154932,Officer Walsh,4982,176790,66 +154933,Polizeichef,267654,27319,7 +154934,Doctor Morse,24331,85922,4 +154935,Saleem,397717,1617697,12 +154936,Dancing Girl,24469,1319620,16 +154937,Poseidon,37958,34502,1 +154938,Mrs. Kehoe,42345,153694,5 +154939,Lee Quong,1550,1594620,19 +154940,'Gat' Brady,229638,16766,0 +154941,Heinz Gödicke,167330,49021,1 +154942,Enid,189682,1627010,5 +154943,Vladimir Andreevich,60189,23442,5 +154944,,340176,1326518,8 +154945,Hush,32067,4430,1 +154946,Richard Nearly,259997,123795,1 +154947,FBI Director Chapman,257088,170231,7 +154948,Zen,15003,135347,0 +154949,Professor Brighton,31277,21479,7 +154950,Parthenon Janitor,32657,118002,61 +154951,,206157,115888,4 +154952,Schauspielerin im Theaterstück,53256,147635,8 +154953,Saraswati Batra,33146,52973,0 +154954,Tina Walsh,291413,64136,6 +154955,School Principal,188598,1296405,4 +154956,,78323,583734,3 +154957,Eric Irvin,92257,992827,8 +154958,Sunny,98870,1018982,1 +154959,Rodeo Spectator,33541,1000660,29 +154960,Mr. Morrissey,428687,1454386,20 +154961,Jim,69075,32197,14 +154962,Dr. Murray,16890,21197,4 +154963,Johnny Gilpin,36612,95017,16 +154964,Gayla Williams,70046,47757,4 +154965,Pfc. Franklin Fairchild Bean,28553,6952,1 +154966,Dr. Trent,108345,93624,5 +154967,Jay,7515,51303,7 +154968,Alf,60759,228487,16 +154969,Maria,26182,1013177,11 +154970,,284246,31656,1 +154971,Jiro Tanikawa,139692,120804,2 +154972,Egasak,82492,928078,2 +154973,Narrator - Sierra Leone (voice),173205,77948,2 +154974,Jokou,52047,1082345,9 +154975,Charley Gray,121923,104907,6 +154976,Young Bower,19898,132183,13 +154977,Wobbly,147106,151521,6 +154978,Ophélie,101352,1071383,6 +154979,Köchin,82157,21750,8 +154980,Grilyo,274991,143725,2 +154981,East End woman,65035,47570,19 +154982,Mouse,58411,219630,11 +154983,Eldad,6391,41644,4 +154984,Stephen,15486,27754,4 +154985,Narrator,114499,63670,1 +154986,Estragon,40373,931885,1 +154987,Victor,6947,1479,9 +154988,Kriminalassistent Bruehl,103396,36570,12 +154989,Ponsard,68822,550796,9 +154990,Lucas Arno,8954,56419,7 +154991,,222517,1699952,21 +154992,Paul,58547,17402,7 +154993,Axel,220820,16644,0 +154994,The Penguin (voice),411802,74337,15 +154995,Jimmy,9785,33352,16 +154996,Eleanor Wayne,52437,77158,0 +154997,Hero Hungry,375366,1886308,38 +154998,Motorcycle couple,8270,54224,27 +154999,Linda,25941,1188881,16 +155000,,63215,1520907,24 +155001,Server at party,10425,65130,18 +155002,Policeman,42709,927865,21 +155003,Stover,29398,45615,8 +155004,Mönch Willem,75578,211020,9 +155005,The Priest,39495,153470,14 +155006,Jessica,410537,1704842,3 +155007,,144651,1121246,0 +155008,Viviane,321160,4721,2 +155009,Stillwater Jr. / Stillwater Sr.,413232,1383464,15 +155010,EMT,62046,1330720,18 +155011,Bachelorette Tiffany,259694,1352662,15 +155012,Takashi,21029,16060,12 +155013,Slave Girl,1271,1330769,64 +155014,Lupinsky,22998,169133,11 +155015,Hubert Bonnisseur de la Bath,111480,24363,0 +155016,Vickie Johnson,75564,1399608,7 +155017,BBW Member,167810,1304663,36 +155018,(uncredited),43459,1027089,12 +155019,Jennifer Holmes,2982,10190,1 +155020,Sweetheart,1125,56523,20 +155021,Gabriel,78571,59251,7 +155022,Tony (as Nathan Corddry),272892,127048,3 +155023,Gallagher Jablan,2979,117175,7 +155024,,241982,44654,7 +155025,Violinist,43419,8496,13 +155026,Shimada Hideo,282069,1185386,5 +155027,Alexa (Voice),285733,74358,0 +155028,(voice),53222,32657,0 +155029,Georges Seurat,10910,113,14 +155030,Christine,343921,74617,6 +155031,Andre,80343,1646011,12 +155032,,321315,1620695,3 +155033,Bazine Netal,140607,113968,32 +155034,Q,206647,17064,5 +155035,Toribio Aldrete,198795,31224,12 +155036,Macho,418072,1685107,9 +155037,,170998,287270,7 +155038,Ben,244268,12074,0 +155039,Ilse Grabowski,2169,22189,7 +155040,Businessman in 'Carmen',47959,1426032,19 +155041,Paul Rodman,9779,232,13 +155042,Linda,97051,35515,9 +155043,Chandra Mahalanobis,353326,1370832,7 +155044,Prison Skin Head,354979,1636803,29 +155045,Headmaster,29108,1073161,6 +155046,Amy (uncredited),35656,76999,21 +155047,Wendy,54752,8437,0 +155048,Walter Hewel,613,21743,22 +155049,Maria,47778,1762725,6 +155050,Vargas (as Tony Zamperla),93492,72662,7 +155051,Paco,65674,25536,4 +155052,Le chanteur finlandais,12249,47822,9 +155053,Sam Sparks (voice),109451,1772,1 +155054,Himself,17302,2778,2 +155055,Pedestrian (uncredited),337339,226960,40 +155056,Barker,26358,15251,6 +155057,Lori,34806,207250,8 +155058,Japanese Sergeant,88558,1069544,2 +155059,Rachel,304372,211540,16 +155060,Sheila,141643,1115142,2 +155061,Oscar Werner,445916,1391810,4 +155062,Sana Azim,46432,85470,0 +155063,Squeegee Girl,8008,53581,12 +155064,Brandon Hua,226672,1276624,3 +155065,Olga,104376,235972,9 +155066,,35572,1359153,6 +155067,Teen #1,2295,177165,10 +155068,Karlson,45326,119884,10 +155069,Barry,20718,9976,5 +155070,Tom Whitman (age 10),75204,89885,1 +155071,Martina,132939,47080,4 +155072,,424014,107220,5 +155073,"(segment ""The deep"") (archive footage)",49954,106612,4 +155074,Rita,30155,1086576,16 +155075,Harlem Junkie (uncredited),4982,1502783,108 +155076,Guruji,285803,6217,5 +155077,Garvey,140470,130060,7 +155078,Wally,177335,15417,3 +155079,Paul,20304,15234,3 +155080,Mario,58518,65571,0 +155081,Miria,39356,122760,22 +155082,'Brains',121006,9091,6 +155083,La padrone di casa,117913,1853910,7 +155084,Conde Duque de Olivares,13495,1610,7 +155085,Lily,46026,123569,8 +155086,Male witness on rainy day,43113,131201,29 +155087,World Hub Tech,99861,1583054,48 +155088,Race Starter,168259,1578220,27 +155089,Marcia Sherman,40693,83622,3 +155090,Douglas,10087,1071690,20 +155091,Enjou Tomoe,23155,90134,8 +155092,Rodeo Spectator,33541,153505,49 +155093,Cool Man,331313,1767207,20 +155094,Tootie,30349,47774,2 +155095,Fish,166621,74875,5 +155096,Birdie,371504,1221763,12 +155097,Coroner,61430,100944,13 +155098,Angelique Bouchard,62213,10912,5 +155099,Alte Frau in Siebenbürgen,167424,1822704,22 +155100,Cousin John Clayborn,53857,47178,8 +155101,Stripper,3782,1481114,36 +155102,Donnell Lewis,168027,64856,1 +155103,Diane Tremayne Jessup,1938,14500,1 +155104,Kyuubey (voice),152042,1157126,5 +155105,Himself,163,62,18 +155106,Edward,232100,1267379,4 +155107,,25499,1661877,10 +155108,,20646,63706,5 +155109,Elevator Operator (uncredited),33025,89672,8 +155110,,65048,131952,3 +155111,Dr. Siskin,340027,64915,12 +155112,Dominik,204384,1207245,10 +155113,Santetsu Yasui,163870,119241,2 +155114,Dr. Liddledick,25111,80742,4 +155115,Jamie Tanner,331161,582653,16 +155116,Hunter,55534,222564,12 +155117,Dr. Vaseegaran / Chitti,148284,91555,0 +155118,Denny,17473,81919,3 +155119,Roy Dillen,361050,224182,3 +155120,Mikey O.,24978,60432,5 +155121,Ferragut's Niece - Pepita,183932,1381511,9 +155122,Diana,9795,59313,10 +155123,Regina,3870,7710,4 +155124,Commando,1724,185853,15 +155125,Sergeant Cohan's Mother,257344,1461424,61 +155126,Noé,130055,1090750,3 +155127,Ebbo von Siering,82708,7822,1 +155128,,88953,1537395,21 +155129,Woody,16154,937572,6 +155130,Smitty's Daughter,52859,1671460,40 +155131,Big-breasted Woman,46930,137826,12 +155132,,48495,142741,2 +155133,First Cop,107596,1647143,20 +155134,Herself,329243,66555,3 +155135,Press Conference Reporter,4413,1014572,23 +155136,Young Placid,14868,77713,0 +155137,General Abalgamash,13486,107550,11 +155138,Interviewee,448992,68,1 +155139,3rd Monteray Tavern Bellboy,31899,119544,22 +155140,Himself,14108,1712687,4 +155141,läkare på akuten,76047,46866,4 +155142,Jennifer,38244,1579,5 +155143,Sally,73565,17258,3 +155144,Althea Cornish,13241,1879801,12 +155145,,321142,1722492,4 +155146,Rodney Pringle,48885,147092,2 +155147,Castanys,116312,1142298,15 +155148,Capt. M.L. Gallagher,40034,106806,6 +155149,le lieutenant de police,15712,49278,3 +155150,Sally Rider,23853,2453,3 +155151,,348315,1378357,15 +155152,,149145,24385,4 +155153,,196469,1937,3 +155154,Waiter,921,219630,42 +155155,Dennis,82929,928936,8 +155156,9 Year Old Ronnie,14923,1386343,14 +155157,Bathurst,75244,1085558,12 +155158,Giovannino,169069,1018848,6 +155159,Porky,30492,106434,2 +155160,Carlos,11056,1602,4 +155161,Joanne Godfrey,239091,248412,1 +155162,Byfogden,87654,1271560,17 +155163,Annie,86543,164343,8 +155164,Minor Role,33541,13791,47 +155165,Giovanna,159474,994523,7 +155166,Amico di Armando,42674,1871279,16 +155167,Harry,156711,1349733,27 +155168,Grandpa Dracula,30002,99825,1 +155169,,36236,1037701,23 +155170,Asa's friend,46982,1183257,14 +155171,Alec Nichols,132422,56857,0 +155172,Shop Keeper,169068,200163,13 +155173,Frankel,66741,1301258,4 +155174,Daniel,373397,1157324,7 +155175,Abell,22076,55931,6 +155176,Maks,390880,143665,6 +155177,Teacher 1,77949,582918,28 +155178,Manager,9787,17604,18 +155179,Achuthan,237672,545009,16 +155180,Dick's Student,78177,156692,20 +155181,Carnell,42267,156971,8 +155182,Raoul Bienveneda,31462,152704,13 +155183,Sailor (uncredited),22584,1119591,18 +155184,Nick Snowden,51836,59216,0 +155185,Chief Minister / Sarang,96147,71090,2 +155186,Prison Barber,209112,1696223,106 +155187,,229353,80757,1 +155188,Mischa,426264,177,8 +155189,靜香,265712,1521536,18 +155190,Shubhankar,33124,86014,1 +155191,Mary Somerville,245700,72305,4 +155192,Califano,107052,120117,5 +155193,Ricky,270221,1607378,4 +155194,Lizzie Allen,27501,97989,3 +155195,Johnny Allegro,44669,3152,0 +155196,Piero,46920,5412,1 +155197,Herself,325712,1879669,13 +155198,,74154,588030,3 +155199,Christine Eisley,310972,1118081,1 +155200,Amboss,9252,1596412,6 +155201,Mr. Ames,27966,240841,7 +155202,Kazuo Hagiwara,45489,553947,11 +155203,Jean-Daniel Pothey,37645,24563,33 +155204,Narrator,308639,2178,9 +155205,Child Vampire,246741,1780266,19 +155206,Silvia,70666,559176,1 +155207,Detective Sergeant Burnley (voice),413770,17476,7 +155208,Buddy MacGruder,44801,6474,8 +155209,Batgirl (voice),177271,116315,6 +155210,Dori Lawrence,43670,38581,0 +155211,marito donna ubriaca,82341,93126,13 +155212,Saleslady (as Alice Taafe),174925,103904,15 +155213,Joe Huff / John Stone,21338,87400,0 +155214,Rob,14459,39545,1 +155215,Amanzio Rastelli,58060,41527,1 +155216,Young Boy,101325,1560981,17 +155217,Dawn,94251,85900,6 +155218,Himself,359459,78437,2 +155219,Ron Lake,44895,21416,2 +155220,Scagnozzo del Poeta,78854,128456,5 +155221,Jeune de quartier 1,277839,934313,19 +155222,Roddick,75623,1569227,9 +155223,Mark Phipps,14063,13021,3 +155224,Mehdi,10565,48512,2 +155225,Wounded Soldier at Hospital,256962,1789175,36 +155226,Vääpeli Körmy,55754,147771,0 +155227,Trum Cogdall,43806,22606,24 +155228,FBI-Agent Judd Walters,70404,60294,5 +155229,USSE Bridge Crew,188927,1287589,42 +155230,Byron Truax,188826,1098072,7 +155231,vypravěč,51902,138520,0 +155232,Pasha,193893,232749,13 +155233,Lawrence Bowen,33557,880,8 +155234,Jules,39781,1231,0 +155235,Telephone Man,339419,1333571,41 +155236,Antonino Percuoco 'Manomozza',11048,70201,4 +155237,Maj. John Boulton,208434,35320,0 +155238,Alymbek Datka,295914,1372348,3 +155239,Mrs. Swicker,222858,101777,9 +155240,Lt. Eric Minott,38154,174235,6 +155241,Clint Stewart,132939,50962,0 +155242,Dilli,63825,229982,9 +155243,Waitress,291871,1362822,7 +155244,Mr. Brown,264309,98001,4 +155245,Logos,12279,1595130,28 +155246,Dozer - Editor #1,14923,10872,26 +155247,Cage Security Guard / Bouncer,257447,1567039,16 +155248,Ana Moreau,59961,453272,6 +155249,Cinderella (voice),14128,81667,0 +155250,Lorenzo,85230,985438,11 +155251,Man with Dog,118,39185,27 +155252,Captain Yanata,88558,1069552,12 +155253,Coach Powers,295588,17874,9 +155254,Phil's Bogart impression (voice),61151,4110,10 +155255,Little Boy Kyle,333385,1547859,19 +155256,Harlan,315855,1050988,20 +155257,Lalu,310567,1291350,2 +155258,,338079,1461573,10 +155259,Moe,72648,161568,9 +155260,Steve Fisher,35826,33533,4 +155261,,57419,1050850,20 +155262,Linguist Teacher,70981,1272932,20 +155263,George 'Mitch' Mitchell,51476,106104,0 +155264,,402612,1037800,2 +155265,Xuan Kong,10275,1342851,12 +155266,Goofy,32428,5462,2 +155267,Pete,34729,1621373,12 +155268,Taylor Sutton,334890,1695141,5 +155269,W. Harmie,45219,94929,4 +155270,Guest,45838,1127782,5 +155271,Infirmary Nurse,263115,1711522,53 +155272,Vojnik 2,118658,1526121,8 +155273,Bruno,65416,7085,3 +155274,Ivo,16177,211101,6 +155275,Yutani,24392,1328820,7 +155276,Lt. White,27717,19613,8 +155277,Jimmy,85350,1467543,17 +155278,Suzanne Knipper,338189,121529,3 +155279,D.I. Alice Frampton,25941,1246,1 +155280,Mrs. Parker,5060,106628,16 +155281,Maham Anga,14073,225162,6 +155282,Podcast (voice),8954,1178792,13 +155283,Éric,122192,52346,11 +155284,Hans - Gauss' Assistant,109716,96720,35 +155285,Raza,257214,466505,2 +155286,Hope,14053,221840,2 +155287,Hostess,31273,107889,36 +155288,Oh Su-hee,4550,980225,16 +155289,Marshall Mallow (voice),59981,12791,3 +155290,Linda,16151,79713,26 +155291,Mrs. Graham,352719,21878,6 +155292,,156896,1285239,1 +155293,Big Daddy,24556,61981,3 +155294,Cigarette Girl,43321,40177,11 +155295,Nurse,26376,1046807,32 +155296,Bobby Beausoleil,381737,1451919,7 +155297,Lena,138977,1182320,12 +155298,Himself,417870,1079697,35 +155299,Ticketverkäufer,269258,1000978,15 +155300,Mr. Mack,105528,141226,4 +155301,Kirk,135708,9656,1 +155302,Joseph of Arimathea,235260,1485959,33 +155303,Mechanic Drug Dealer (uncredited),4982,1579312,91 +155304,Dr. Hall (uncredited),27259,47930,22 +155305,Professor Mehring,277968,62296,20 +155306,Tom Thompson - Prisoner 2093,308032,969045,20 +155307,Bruce Jones,237756,29092,6 +155308,Yeo-Wool,435366,93995,1 +155309,Garcia,5511,112760,16 +155310,James Neely,298228,98960,2 +155311,Alex,433244,97604,1 +155312,Giandomenico Fracchia / La Belva Umana,41610,27433,0 +155313,Will.i.am,4551,82092,43 +155314,Garcia,29638,104465,4 +155315,Mr. Nizby,80941,14968,10 +155316,Katia,153541,112308,3 +155317,Police Officer,2001,1569578,65 +155318,Padre Estaban,56601,11159,1 +155319,Frederic Chopin,129553,127914,5 +155320,Herself,385114,1066880,1 +155321,Second in Command of the Endurance,49837,142893,7 +155322,"PFC Bill ""Hoosier"" Smith",189197,54414,6 +155323,Herself,400668,1821660,9 +155324,Tybald,42664,154432,10 +155325,Sun Yat-sen,76349,57054,9 +155326,Frank,73208,8225,4 +155327,Jenny,28303,60158,2 +155328,Sylvia Dickerson-Barnes,72207,67837,5 +155329,Princess Alessandra Bellagamba (voice),83201,964079,9 +155330,Carrie Wannabe,306952,1511957,10 +155331,Gansmer Guest,330947,1650321,49 +155332,,121173,114228,7 +155333,Johnny Vang's Bodyguard (uncredited),15092,92489,62 +155334,Ravn,5206,1181,1 +155335,Nur - Efsun Teyze,332788,1446044,4 +155336,Bulle,12206,71650,3 +155337,Lee,9953,59671,4 +155338,Servant with Tray (uncredited),29117,1176510,13 +155339,Arango,419459,1689286,11 +155340,Dancers,42139,931323,6 +155341,Le fétiche sur le toit,21348,1838901,10 +155342,Extra (uncredited),287903,1544925,21 +155343,Gabe,408755,169920,9 +155344,Detective Hagitani,12720,73676,4 +155345,El Cojo,4497,32153,9 +155346,Gray Wheeler,13668,9278,0 +155347,Himself,111332,1729,9 +155348,Spud,30478,106384,2 +155349,Himself,448449,1832743,7 +155350,Maruju,125264,123384,5 +155351,Marie Morgan,118953,146505,1 +155352,Effie Ferguson - Party Guest,30014,7210,12 +155353,Professor Fitz,2567,65,6 +155354,Cristalero,52943,30555,11 +155355,Councilman,19545,235382,15 +155356,,63215,1520906,23 +155357,Ulrike,64454,1429875,7 +155358,Algy Longworth,140472,3364,3 +155359,Police Inspector Mingozzi,94809,98774,16 +155360,Anne,4644,140,3 +155361,Cheryl's Dad,228970,1495084,36 +155362,Tina Alvis,245706,1289020,16 +155363,Stormtrooper,330459,95639,74 +155364,Steven,114577,53257,2 +155365,Matt,108003,82388,0 +155366,Questore,103218,225107,1 +155367,Soldier,8988,1472380,54 +155368,,134215,110102,7 +155369,Reunion Guest (uncredited),302699,1754496,36 +155370,Martin 'Brakes' Erkamps,228968,1263515,5 +155371,Sirocco Club Dining Extra (uncredited),43808,1233127,14 +155372,Man #2,9953,60884,17 +155373,Child,27276,551823,7 +155374,Seifullin,49943,86636,6 +155375,Annette Ancello Donnetti,134144,397765,1 +155376,Bar Fly,197737,557086,32 +155377,Colaboracion Especial,347666,126771,9 +155378,Artemis,297762,1767343,17 +155379,Chi Siu Tien/Chess player,54503,95672,1 +155380,Reiko,140509,135374,4 +155381,Nicholas Pappalas,76465,30272,5 +155382,А. Н. Туполев,419601,240487,1 +155383,Marnie Piper,34205,43893,0 +155384,Young Cesco,43817,132220,13 +155385,Gwen,237,3069,5 +155386,Second Waitress,340101,1865843,33 +155387,Larry Teter (town barber),37481,3339,10 +155388,Organ Player,371645,1671692,20 +155389,,63260,571155,11 +155390,Jackie,5767,14061,5 +155391,Nyc theater girl,106136,1039677,6 +155392,Inge Altenberg,31048,53755,0 +155393,Terry,82083,51739,7 +155394,Doctor,28031,11074,13 +155395,Alexis Spencer,68684,1148626,11 +155396,Emily Bundy,84903,87516,7 +155397,Himself (uncredited),15199,19393,17 +155398,Bellhop,8617,26852,22 +155399,Slovenly Beaumonde Man,16320,80447,39 +155400,Chico (voice),14405,55259,4 +155401,Angelina,385372,83274,8 +155402,McLeod,403570,1667887,16 +155403,Asher,248268,1717286,4 +155404,Nancy,18682,1031142,6 +155405,Band Groupie,97683,1102516,8 +155406,Saloon Hostess,105059,1946,46 +155407,Maid,28263,1886630,11 +155408,Samson (voice),9904,2628,0 +155409,Baze Malbus,330459,77301,7 +155410,,41783,74946,3 +155411,Young German Soldier,19996,1764142,38 +155412,Clara,13336,77192,12 +155413,James,10071,8687,3 +155414,General James Roberts,44661,8349,1 +155415,Hoi,11636,130562,24 +155416,Ronin Tien Yeng-Yee,19528,63585,4 +155417,Peeping Tom,156268,146977,5 +155418,אברהם,43083,129245,6 +155419,Himself,83802,55432,4 +155420,Garrett,183832,29260,1 +155421,Rosalind Peters,43346,142385,2 +155422,Mrs. Gogan,173456,2929,6 +155423,"John Henry, Jay's Father",358199,53010,12 +155424,Luke,53950,18281,5 +155425,Paolo,38328,69490,2 +155426,Loreen Duke,11329,80615,16 +155427,Anais,99875,13897,2 +155428,,244956,76975,5 +155429,Tim (Segment 1),244117,1142720,5 +155430,Young Sidney,13092,74154,0 +155431,Reporter One,64328,1231705,32 +155432,Husband #1,193893,1381481,35 +155433,Pierre,67509,81125,2 +155434,Duessa,31280,1163924,3 +155435,Flora,238705,35102,1 +155436,George,24078,18999,4 +155437,Robert Hawking (Age 8),266856,1503908,33 +155438,Le chaffeur de taxi,47226,1564564,12 +155439,Kristen McKay,10665,882,0 +155440,Karel,199644,1179813,7 +155441,"Dr. Martin Luther King, Jr.",205361,2954,0 +155442,Kitty,11247,99932,66 +155443,Sergeant - father of Masha,56212,143730,2 +155444,,285685,1639461,8 +155445,Halvdan,57438,226184,22 +155446,Mrs. Hurley,45800,112365,13 +155447,Lela,325189,519735,3 +155448,Johanna von Ingelheim - Age 10-14,9503,587203,6 +155449,Embla,280583,1496440,5 +155450,Batistì,31542,1037917,0 +155451,Himself,28036,93090,9 +155452,"Larsson, läkare",60899,11917,9 +155453,avventore,77000,1851056,9 +155454,Aruhan,96724,1347005,28 +155455,Becky,385372,1585211,10 +155456,Bob Clews,15264,8496,7 +155457,Sadie,356752,1841496,16 +155458,Cätly,339944,1821366,11 +155459,Captain Jack,46020,60286,2 +155460,Professor,41932,1429569,6 +155461,Süleyman Demirel,52150,145371,1 +155462,Monsieur Dupont,38792,37131,0 +155463,Ray Thomas,383140,1582461,16 +155464,Mr. Lewis,87060,27944,12 +155465,Jean Darr,25551,3340,3 +155466,Luther,148451,1266705,9 +155467,Ali Jacobs,419459,1473432,2 +155468,Waitress,214756,1384708,30 +155469,Muriel Orvis,101998,91402,12 +155470,Karthik,353533,1052322,8 +155471,Martin,116463,1691468,12 +155472,Gilbert,13710,64541,2 +155473,,40081,1140546,14 +155474,Agile Dancer,39345,50719,16 +155475,Thomas Connors,29872,2672,4 +155476,Alfred Pennyworth (voice),321528,24813,3 +155477,Ishihara,62762,26741,10 +155478,Shukichi Sugiyama,55192,33135,2 +155479,Nadège,44155,114952,9 +155480,First Amazon,39308,1397928,6 +155481,,37340,1173407,9 +155482,,378503,1754824,8 +155483,Johnny Luna,2611,1228768,8 +155484,Kid / Valet,195269,110476,12 +155485,Martinez,84823,238957,2 +155486,Bertrand Bérard,3423,32322,4 +155487,Mmm Bacon,75761,1214757,24 +155488,Warship Sailor,257081,1186116,25 +155489,Charles 'Charlie' Roark,26323,8728,3 +155490,Anica,67633,110964,4 +155491,Blue Bikini Babe,52454,77756,34 +155492,Nadia (voice),13956,37045,5 +155493,Librarian,78691,7401,7 +155494,"Gustav, 'Cabin Crew'",86254,1225977,9 +155495,Audrey,167556,1465183,3 +155496,Mrs. Fenner,27973,34268,18 +155497,Margot,315855,119388,1 +155498,herself,276120,6352,1 +155499,Michael Tarlow,31597,22131,3 +155500,Himself,376391,1010101,8 +155501,Hannah Rinaldi,255491,53862,0 +155502,Waitress,21950,31024,10 +155503,Mal,16320,51797,0 +155504,Lynnette,85431,967139,5 +155505,Loganathan,53883,584791,4 +155506,Leon,14126,965913,7 +155507,Nancy,14029,548193,12 +155508,Peter,364410,45396,3 +155509,Driver (uncredited),82696,928638,13 +155510,Rose,29136,7673,3 +155511,Schreiner Christof,12523,13812,11 +155512,Donkey,298751,59842,7 +155513,Woman,50838,31383,1 +155514,Rusty Williams,173634,144365,9 +155515,Second Jellybean / Rejected Suitor (uncredited),27986,80545,18 +155516,,422005,1047928,4 +155517,Warren Maxwell,38027,2091,0 +155518,L'impresario Veraldi,120972,564590,4 +155519,Max Portesi,193641,30719,5 +155520,John Garnett,13960,65827,7 +155521,,111239,143090,4 +155522,Kutscher,82708,1828324,18 +155523,Ruby,200727,74442,5 +155524,Ellen Lacey,19618,83262,2 +155525,Lady Tremaine (voice),14128,89042,5 +155526,Himself,15258,53402,33 +155527,Clinton Fitzer,3563,884,5 +155528,Lisbeth,186971,228884,1 +155529,Dječak,118658,1196554,1 +155530,kořenářka,160106,575103,7 +155531,Ryan,18898,83817,4 +155532,Betty Pike,288281,20047,3 +155533,Al-Saleem,12113,16607,9 +155534,Cucuy,1428,11160,5 +155535,Will,411081,133333,3 +155536,Commissaire Chameille,140825,26879,4 +155537,Bettor in Pub,28425,2936,13 +155538,Sub-Inspector O'Neill,425774,1707920,37 +155539,Conrad Dean,14147,129985,4 +155540,Denise,83729,1255200,9 +155541,start,332280,230808,39 +155542,Male Receptionist (uncredited),87826,1588955,12 +155543,Dr. Straus,54662,23625,6 +155544,Joy,41171,1392757,47 +155545,Michael Cruise,20196,184498,3 +155546,Polly Williams,40916,47503,6 +155547,Eric,28592,25333,2 +155548,Lovely miss,422603,1699992,7 +155549,,105584,1666942,4 +155550,Mr Li's dead mother,45452,1119170,11 +155551,Gwen Terasaki,119926,14701,0 +155552,Maid,238792,976738,4 +155553,Christine,43692,1095811,3 +155554,Karen,145135,156875,6 +155555,Elizabeth Dexter / Witch,12683,101092,12 +155556,Monk,285213,138527,4 +155557,Marie Boudreau,69765,557088,0 +155558,,375384,1158115,4 +155559,Superintendent Linn,238398,1272846,4 +155560,Rawdilly,416256,1212319,5 +155561,Silas,223485,17288,0 +155562,Julie,81475,189624,0 +155563,Joel,39781,73135,12 +155564,Officer Adams,31150,2545,14 +155565,Patrick,8371,54750,3 +155566,"Moonja, Maham's Son",402672,130589,4 +155567,Tim,314283,53286,3 +155568,Cassandra,47446,35341,2 +155569,Dr. Logie,270383,5009,12 +155570,Mrs. Potato Head (voice),77887,61964,9 +155571,Linda Metzger,17956,4430,4 +155572,Carl Tanner,244786,1451540,7 +155573,Fiona Strike,52238,544726,2 +155574,Terry,924,7431,7 +155575,John Gillmore,266373,3090,1 +155576,School bus driver,11960,1016315,5 +155577,Teresina,31542,1037923,7 +155578,,28746,224077,5 +155579,María,241968,587931,0 +155580,Officer Mansoor,173205,1230897,8 +155581,Lt. S. Jordan,321039,1507140,17 +155582,Goalie,14123,1446415,17 +155583,Sreykeo,49853,112727,1 +155584,German Soldier,369885,1651414,56 +155585,Lieutenant Bud Vogel,105945,1106112,5 +155586,Woman in Black,60173,230661,0 +155587,Giuliana,187737,93124,3 +155588,Robert,31074,1028352,3 +155589,Kabir,139582,79003,1 +155590,,51619,10655,6 +155591,Secretary to District Attorney,43855,13968,11 +155592,Apostolis,87908,147799,7 +155593,Ali Munsif,224282,57452,1 +155594,Narrator,32532,109314,0 +155595,Himself,410718,6193,0 +155596,Nathaniel,45132,112286,25 +155597,Burke's Mother-in-Law,25643,116549,4 +155598,Reno Blake,28484,78793,4 +155599,Murl,179288,335,3 +155600,man listening the proclamation,55495,1839577,22 +155601,Le rédacteur en chef,445,6015,3 +155602,Jerry,290764,1452000,10 +155603,Natchez,37238,102306,3 +155604,Major Andros,53851,3363,6 +155605,Secretary,33792,1508012,6 +155606,Coach Brody,32139,86187,4 +155607,Schulze,10841,553499,14 +155608,attachée de presse,8282,23390,10 +155609,The Bureaucrat's Wife,173494,1871448,2 +155610,Havana Nights Girl,77930,101687,23 +155611,Derek,301876,29409,4 +155612,Basileus (as Burton Anthony Perez),188357,20565,2 +155613,Police Officer Crest,325712,1782720,16 +155614,Baby Jack Lemoyne,70074,60881,14 +155615,Angel Mercer,8292,8169,1 +155616,Yong-sang Jo,21966,2541,11 +155617,Helen Ruth,61225,17187,2 +155618,NGU,28510,78552,2 +155619,Persian Emissary,1271,181247,42 +155620,Edmond,2861,18177,1 +155621,Shaggy (voice),302960,26457,2 +155622,Maja,239619,1184974,3 +155623,Bruno Battaglia,95136,15789,0 +155624,June Robeson,25373,7634,2 +155625,Phil Moscowitz,21449,13251,0 +155626,Anne Neville,345003,1239372,4 +155627,Renaldo,334527,1465480,20 +155628,Marisol Pagan,78307,563413,1 +155629,,373200,138734,6 +155630,Officer Fitzgibbon,283995,1806599,47 +155631,Mother's voice,379925,1190133,4 +155632,Himself,55027,18802,1 +155633,Commander John Forrester,24331,90477,2 +155634,Himself,245394,1214466,10 +155635,Manny,158870,65639,7 +155636,Tsar (voice),72204,143722,2 +155637,Maybelle Carter,69,427,11 +155638,Ink Spot / Swifty (voice),13676,43125,13 +155639,Mikael Blomkvist,33613,6283,0 +155640,Yasmine,87587,935273,6 +155641,Young Helen Perl,19338,1579273,28 +155642,Billionaire,168259,1880148,33 +155643,Old Woman in London Apartment,257344,1673617,47 +155644,Young Tisha,49815,94774,8 +155645,He Fen,41378,1140546,12 +155646,postman / devil,390930,230659,1 +155647,,40817,1409555,19 +155648,Ramada Waiter,209244,1286675,16 +155649,Xiao Ge Zi,70057,1113443,9 +155650,Rosencrantz,120729,1179385,3 +155651,Philippe,80220,24781,2 +155652,Captain Richards,9753,58973,5 +155653,Young Florist,145220,973385,44 +155654,William Dalton,11175,16647,3 +155655,,73835,29327,10 +155656,Bus Passenger,33541,98047,45 +155657,Laura,31880,58168,6 +155658,Rachel Winacott,322518,1431606,9 +155659,Maria,73872,258039,6 +155660,Preacher,333484,1301772,22 +155661,Committee Woman,43385,153260,11 +155662,Eva Werner,84831,42400,4 +155663,Kim Heum-soon,65881,578838,8 +155664,Japanese Tourist #3,402582,109419,24 +155665,Gertie,4111,34746,5 +155666,Zuco,104954,563809,5 +155667,,77057,1200697,10 +155668,,23289,287752,10 +155669,Bob Kline,221135,31903,1 +155670,Sergio,81787,236080,3 +155671,Grace,29424,1206158,11 +155672,Lady Thiang,43471,25173,4 +155673,Miss Hofer,96713,590740,7 +155674,Dr. Brockton,44000,31550,0 +155675,Izumi Okuno,99188,33517,0 +155676,Jim Halsey,20381,2878,0 +155677,Lila Wate (uncredited),109491,946356,33 +155678,Herself,118690,219769,2 +155679,Masuda,134350,52809,7 +155680,Witt,52360,32192,44 +155681,Deputy Conners,10011,62009,14 +155682,Security Guard (voice),366143,1529875,3 +155683,Lisa Hayes,308639,55314,11 +155684,Police Sheriff,287636,62862,8 +155685,Manolo,72900,3621,2 +155686,Enviado de la inquisicion (uncredited),122019,30306,16 +155687,Man at the Party,110160,143593,14 +155688,otac kuma Spasoja,148034,111072,16 +155689,Doctor Harcourt (uncredited),36874,1062048,7 +155690,Detective Man,42120,553881,9 +155691,Metropolis Citizen,209112,1691946,53 +155692,Girl with Fur Hat at Railtrack,162382,1413680,7 +155693,Cameron York,335872,1226195,8 +155694,Sandra,264397,1238952,18 +155695,Yvonne,214100,221981,3 +155696,Second Go-Go Dancer,28170,1861053,11 +155697,Sadie,353686,94098,2 +155698,segretario dottoressa Sironi,374416,1851926,10 +155699,Cassandra Nightingale,32790,4493,0 +155700,Clémence,151826,587174,6 +155701,Beth,29365,13354,4 +155702,Det. Vincent Durano,5289,42706,5 +155703,Charles,15285,76627,7 +155704,Deke,66659,418,1 +155705,Judge,20644,89729,12 +155706,Xiao Hui,187022,1186922,3 +155707,Bogey,139718,50762,29 +155708,Dick 'Dickie' Williams,95874,22091,5 +155709,Pavel,321779,136812,1 +155710,Blondie Shiraga (South Block),17467,1612530,5 +155711,Jared,358895,1497076,8 +155712,Chairman Jo,346646,88298,9 +155713,Chitra's Brother,69401,1326966,3 +155714,Barbara Chanler,153161,1068162,5 +155715,Gieki Murase,163870,121797,4 +155716,Pamela Wagner,53953,1112033,15 +155717,Nino,57544,10847,0 +155718,Warren,334527,984629,6 +155719,,224951,228640,6 +155720,Soldier,115109,1469029,20 +155721,Jacques,65958,13689,3 +155722,Party Guest (uncredited),1726,1209721,73 +155723,Smitten Bunny (voice),9502,1448983,16 +155724,Nick Daley,181533,61263,11 +155725,Susan,30637,106625,1 +155726,"Gui (segment ""Inútil Paisagem"")",211166,52583,11 +155727,Mandrake (voice),116711,27319,10 +155728,Cairo Club Doorman,64928,34187,25 +155729,Grandma,329440,937534,13 +155730,Mitch,19286,30928,4 +155731,Herself,245394,1214108,13 +155732,Uniformed Officer,74777,1393343,10 +155733,Albert,12169,146287,4 +155734,Annie Hayes,12247,71887,1 +155735,Dr. Botkin,46827,2076,3 +155736,Prinzessin Amélie,374247,36323,1 +155737,Toni,17974,21235,3 +155738,Mary Sinclair,256924,516,1 +155739,Gertie Waxted,34977,13577,1 +155740,Collie Entragian,10004,2372,9 +155741,Himself,105583,1092211,20 +155742,Jean le sculpteur,79435,39673,4 +155743,Peter,28820,90563,0 +155744,Rickson,154441,1091453,8 +155745,Recovery Ranjit Kumar,111836,113810,7 +155746,Jenny Krase,10077,62932,5 +155747,Dieb,3405,11223,10 +155748,Subodh Malgaonkar,155308,86508,4 +155749,Eva,30,20663,2 +155750,Herself,352025,1784157,25 +155751,Fat German sergeant / Field Marshal von Hindenburg,53423,14438,4 +155752,Mary,38602,1068158,7 +155753,Catherine Gunther,90563,50,1 +155754,Darryl - Police Officer (uncredited),44875,120473,14 +155755,Additional Voices,14830,34520,10 +155756,Sir Henry Forrester,89086,29580,12 +155757,Donatella,301272,258039,2 +155758,Aldo,50531,120019,0 +155759,Ting,270774,1110520,11 +155760,Tara,51828,235837,14 +155761,Henchman #12 (uncredited),331313,1740121,50 +155762,Otis,94874,590,7 +155763,Vincent Loringer,147360,5789,6 +155764,Aphrodite Girl,32657,168554,24 +155765,Megan / Sophie,14660,78197,0 +155766,Herzl,35856,235131,0 +155767,Aria Noble,125490,64623,15 +155768,Cida,21752,1091459,11 +155769,King,70874,86752,0 +155770,"indiano ""Nuvola Bianca""",75336,31544,13 +155771,Valeria,36236,6014,1 +155772,Jane Eyre,38684,76070,0 +155773,John,336806,1457428,0 +155774,Riley,82622,864924,3 +155775,Trash's Father,69152,102121,8 +155776,Carla,21752,1239016,6 +155777,Noora,62825,1381435,2 +155778,Young Bower's Father,19898,7805,12 +155779,Giuseppe Di Noi,73827,45982,0 +155780,Choi Min-suk,37284,117349,0 +155781,Profesor Jan Nielubowicz,298040,2825,10 +155782,Dennis as child,444193,1766866,9 +155783,Amy,101852,87164,12 +155784,пациент,43680,239715,6 +155785,Corpse in Mortuary (uncredited),18333,227855,8 +155786,Mark,17473,81918,2 +155787,David Collins,321039,1507139,14 +155788,Mum,52850,55645,2 +155789,Carly Whitten,193610,6941,0 +155790,Johnny Lambert,27917,2246,1 +155791,Police Officer İzzet,74879,1001777,8 +155792,Travis / Japheth,104430,9087,0 +155793,Frank Wyndham,8852,554009,12 +155794,Officer Hicks,8617,66560,14 +155795,Miss Bailey,2516,25642,10 +155796,,100791,125871,1 +155797,Judite,82968,73756,7 +155798,Himself,329690,74036,12 +155799,Nagi,234284,1241566,10 +155800,Antoine de Suze,121793,6015,3 +155801,Jill Deverne,190269,587953,0 +155802,Nicole,109391,1204699,32 +155803,Dr. Strauss,54139,6931,8 +155804,Professor Mikhail Konstantinovich,36695,81005,1 +155805,Prostitute,215741,70083,3 +155806,,69310,21914,38 +155807,Tom Holt,44661,16430,2 +155808,Pastor Herman,100669,124131,8 +155809,Gillian Grady,45527,34485,0 +155810,Judas,235260,1196020,15 +155811,Singer,293452,1546078,14 +155812,Joker,142061,2136,3 +155813,Retiring Collage President (uncredited),13912,2933,7 +155814,Sun-wha,85959,127720,3 +155815,Suzanne,354105,1722463,5 +155816,Laura,16175,79911,17 +155817,Cleopatra,43252,13579,5 +155818,Aryan,192558,88804,4 +155819,Angie,200505,2165,6 +155820,,92132,939188,2 +155821,Man at Club (uncredited),17136,1072437,12 +155822,Ajax (voice),82703,1214171,30 +155823,Annie,193893,1214835,9 +155824,Victoria Riolobos,209244,1218281,7 +155825,,288694,130497,7 +155826,Udo Gries,70807,148556,0 +155827,Deke Abrams,274820,1503297,10 +155828,Tian Nan 3 Tiger's #2,40081,1134732,13 +155829,Baronin Wulffen,457,6259,9 +155830,Maitre d',11172,155077,25 +155831,Gen. William Tecumseh Sherman,11897,4165,11 +155832,une danseuse,84035,32324,8 +155833,Flunkie,302699,1285756,30 +155834,Dane,390059,469462,5 +155835,Bengt,280583,1496439,3 +155836,Simone,44793,1035532,7 +155837,Beebe (as Howland Chamberlin),73313,96137,15 +155838,Nicolas,330770,1440182,1 +155839,Himself,17401,60992,0 +155840,M. Limoges,381356,7285,16 +155841,Politimester,21282,70350,7 +155842,Autoilija,62900,148020,13 +155843,Joshua,68347,159647,5 +155844,Carmela,8429,54929,0 +155845,Nat,150117,9827,1 +155846,Stephanie,23515,1440857,3 +155847,Major Dunnett,70133,10747,8 +155848,The Master Passion / Nursemaid / Aunt Chance,315855,400,7 +155849,Bumboat Girl,52859,1427105,31 +155850,Hiroki Ikeuchi,41261,125951,14 +155851,Senator,54491,35219,14 +155852,Lt. Joe Conti,168676,2203,7 +155853,Ettore,5165,1184830,15 +155854,Lucy Gessler,202241,6832,5 +155855,The Edge,54093,60603,13 +155856,The Youngest,346646,1442583,12 +155857,Nate - DEVGRU EOD,97630,75131,25 +155858,Dr. Yosuke Ishikawa,70322,1324182,3 +155859,Mayor,86920,96762,8 +155860,Maria,28571,88570,4 +155861,Prisoner,1984,51879,12 +155862,Futuristic police officer,269173,93778,26 +155863,Kit,345924,87280,1 +155864,Native Warrior #1,30876,1477516,6 +155865,Andy Goodwynn,231616,210520,1 +155866,Testut,21070,1509562,16 +155867,,315467,31070,4 +155868,Chiu Wai Ling,10389,65263,2 +155869,Philomène Barbaroux,43900,544204,4 +155870,Marine Guard,59961,55205,15 +155871,Young Girl #1,290764,1186622,18 +155872,Astronomer,62472,1201018,28 +155873,Waitress at Party,10096,1564989,27 +155874,Lindsey Carter,239498,439253,10 +155875,Mona,82448,142681,9 +155876,Uncle (Pizza Place),243683,65808,32 +155877,,14210,68913,10 +155878,Roxanne,31078,52291,5 +155879,Namorado de moça que tem namorado,296288,1839931,34 +155880,Georges,71496,563085,5 +155881,Gerhart,75969,1756489,34 +155882,Caitlin,159667,220989,5 +155883,Spencer,259830,85067,4 +155884,Alvin Fuddle,3941,34181,5 +155885,Kapteeni Yrjö-Ylermi-Armas Kuortti,55761,53509,3 +155886,,79580,119823,13 +155887,Ataman,376716,86873,7 +155888,,54236,1170035,8 +155889,Moon,20304,58924,6 +155890,Young Ventura,93858,544608,3 +155891,Костя,56372,224488,7 +155892,George,77875,17276,0 +155893,Brad,70695,1281307,16 +155894,Mutant Child,263115,1821494,79 +155895,Seiji - Kimiko's boyfriend,92950,996689,6 +155896,,141635,1106411,7 +155897,Construction Worker (uncredited),339403,1483666,46 +155898,Parker Wilson,28178,1205,0 +155899,Anaesthetist,27966,1464494,37 +155900,Toya Shimada,20527,1098347,6 +155901,Dr. Rosenthal,103332,827,8 +155902,Bell,102629,84197,8 +155903,Nelly (voice),21765,328,5 +155904,Feldwebel Tornow,613,6086,23 +155905,Veikko Hallberg,219335,1372549,4 +155906,"(segment ""Taylor's shop"" / segment ""The merchant of Venice"") (archive footage)",49954,10074,6 +155907,Court Lady,217923,1436406,54 +155908,Williams - Butler (uncredited),33112,939842,15 +155909,Boy Piano Player (uncredited),115109,104074,22 +155910,Cye (uncredited),39495,14069,19 +155911,Aunt Agnes,157898,89100,20 +155912,Waitress,70074,550471,10 +155913,,119926,1449809,4 +155914,Customer Seeking Record (uncredited),26182,9073,17 +155915,Edward Enfield,3016,29581,3 +155916,Newsreader,134656,1099828,6 +155917,,278717,1334388,3 +155918,Lulu/Mimi,844,12672,5 +155919,Meindert,16177,211005,5 +155920,Merche,236737,102222,3 +155921,Bob,11795,1408165,11 +155922,Professor Eom,21442,1235476,8 +155923,Makoto Shishio,221732,31078,3 +155924,Harvey Raymond,108222,119755,12 +155925,Inspector Truscott,198652,4786,0 +155926,Jin Juiling,64304,544461,2 +155927,Naomi Tate,45556,214556,5 +155928,Bates,102444,938430,10 +155929,Milo,8965,19506,0 +155930,Marie O'Riley,72140,60698,4 +155931,,79580,590127,14 +155932,Kiril,79743,1169504,5 +155933,Calista,8199,17442,1 +155934,,256836,1355221,2 +155935,Vernon,45120,35344,3 +155936,Japanese Sportscaster,18722,553439,38 +155937,Hrbek,55448,37157,12 +155938,Jack,355890,1602747,1 +155939,Barkeeper,130739,141778,15 +155940,"(segment ""Miminashi Hôichi no hanashi"")",30959,552664,47 +155941,Daniel,218728,6084,2 +155942,Jason Macmichael,79329,586527,3 +155943,Damian Claus,19187,43120,2 +155944,Sheriff,3574,2501,14 +155945,,343809,1541181,4 +155946,Mr. Binckley,13848,5897,6 +155947,Peter Lassally,30330,31032,7 +155948,Kanhaiya,353464,1543145,9 +155949,,217923,1279191,55 +155950,Dewdrop,6575,61263,37 +155951,Frenchman,6687,150792,6 +155952,Mr. Foxx,21431,29445,14 +155953,,320299,15200,3 +155954,Vicar,48131,145874,5 +155955,Phillis,198277,121757,9 +155956,,256930,134829,2 +155957,NCO Staff Duty (as Brian A. Bowman),32526,1176954,18 +155958,Mink / Cavalcade Patron,25625,9292,3 +155959,Pueblerina (uncredited),198795,940876,28 +155960,Det. Sam Leonard,29236,89525,5 +155961,Tomley's Assistant (uncredited),28668,120746,12 +155962,Chandra Weaver,128866,1088051,1 +155963,David,204965,112241,8 +155964,Ivan Pavloff,127812,14533,9 +155965,Tallulha,11496,228148,5 +155966,Piero,42436,1031218,7 +155967,Disoriented Gym Patron,87826,57370,9 +155968,Tony,168541,140171,6 +155969,Adm. Frank Petersen,30817,6573,2 +155970,Mike McKinney,213681,58224,5 +155971,Javier Villareal,13279,19487,5 +155972,Security Officer,31397,19687,12 +155973,Abdelhadi,99698,1188419,7 +155974,Rhino (voice),81003,59843,7 +155975,Mrs. Blake,53864,13965,10 +155976,School Playdate Parent,89492,1449120,21 +155977,Long Rob,277713,1409653,5 +155978,Phil Ross,33592,29368,4 +155979,Joel-the-Mole,90086,11414,3 +155980,Police Captain M. J. Donelly,84720,34234,2 +155981,Fish Peddler (uncredited),28571,133230,24 +155982,Walston Rey,45729,27993,0 +155983,The Painter,47921,95725,8 +155984,Monsen 2,70670,1093937,12 +155985,Rebecca,105528,149334,5 +155986,Judge,214756,85170,13 +155987,Wendy,20034,86477,3 +155988,Nestratov,142770,86851,0 +155989,,352199,124624,2 +155990,Dr. Thomas Becker,9667,10823,2 +155991,Rikospoliisi,186292,53512,7 +155992,Landlady (as Helena Phillips),57866,134807,12 +155993,Soldier 3,255160,1898250,38 +155994,Thomas,378441,1362638,19 +155995,Naoyuki Sakuta - Skipper,52302,18607,0 +155996,Madame Bartholdi,3087,30281,15 +155997,Harry Carter,264080,151657,16 +155998,Teen Carl,22683,1586411,6 +155999,Baby Lu,338676,1663867,18 +156000,Sheriff Clyde Boston,18671,86003,5 +156001,Rafe Covington,35381,15112,0 +156002,Father Juilliard / Padre Juilliard,206563,8349,7 +156003,,77673,35590,16 +156004,Generalfeldmarschall Wilhelm Keitel,47536,4961,4 +156005,Officer Wainright,78461,584094,7 +156006,Max Baumer,86603,45615,9 +156007,Mary Sciales,131351,93620,4 +156008,Gracie Kane,106635,14870,7 +156009,Willis O'Brien,32235,41886,8 +156010,,48341,137029,6 +156011,Mrs. Grant,100063,41216,3 +156012,Vesa Rajala,173865,125587,0 +156013,,128120,1054115,3 +156014,Jeannine,69217,23504,4 +156015,Soldier with Letter to Maximilian,78318,119542,34 +156016,Church Parishioner,297853,1790461,40 +156017,Colonel Green Jameson,10733,88059,8 +156018,Targus,31131,75787,8 +156019,Actor,259694,971388,12 +156020,Judge,8316,44329,19 +156021,Sommelier,98066,112322,18 +156022,Young Ajay,155308,85454,3 +156023,Abu Azali,98203,1076721,14 +156024,,262447,1040027,4 +156025,Bob,17306,550359,17 +156026,Mrs. Harris,43526,108804,9 +156027,Åke,125926,1264156,0 +156028,,314462,1489298,2 +156029,Frizzy-haired woman in street (uncredited),42553,30779,18 +156030,Yin Yang,76163,1336,9 +156031,"Lothar, The Guard",402672,1637847,10 +156032,David Bower,24341,34986,0 +156033,Raj,245739,53362,7 +156034,Tom Ferramenti,11048,16647,7 +156035,Mrs. Wayne,84295,34213,7 +156036,Mark Dessau,19235,84789,4 +156037,Sally,329010,1587566,5 +156038,Olley Troll (voice),136799,1784322,41 +156039,Wild Arms,339526,87822,7 +156040,Ramona Hawks,31915,136105,4 +156041,Miss Pena,138544,1605578,7 +156042,George,301875,18271,7 +156043,Maiko,208700,1255308,3 +156044,Colonel Hamilton,70436,2039,3 +156045,Jin-gu,86261,115290,1 +156046,Aimé Perel,153272,1004601,2 +156047,Angela Walker,383140,54182,3 +156048,Fusion Bouncer,405473,1800034,29 +156049,Teddy,73775,20270,5 +156050,Catherine Winslow,77822,80255,3 +156051,Girl With Pram,66113,556086,5 +156052,Yia Yia,9779,59178,11 +156053,Stepan Stepanovich,71051,939188,3 +156054,Dashenka,14482,1164664,8 +156055,General Nhuan,127585,1300745,46 +156056,Barbara Covett,1259,5309,0 +156057,Father of the Bride,405473,1710416,41 +156058,la serveuse du restaurant de l'hôtel,252102,1377169,7 +156059,Vartan Boghosian,354859,743,17 +156060,Lotte,11328,1348448,19 +156061,Jake,41556,11702,4 +156062,Lee,403605,1297561,2 +156063,Freedman,44522,145076,8 +156064,Himself,104744,33730,3 +156065,Dignitary,157843,1907162,30 +156066,Luigi,57996,1082124,4 +156067,Elton Corey,122677,96250,1 +156068,Street Singer,103236,1029300,9 +156069,Clifford Pepperman,248706,6837,3 +156070,Clip from 1951 version of 'Show Boat' (archive footage),33740,1238069,65 +156071,Walter,15068,77881,4 +156072,Nick,53256,41276,17 +156073,Robbie Ferrier,74,503,3 +156074,"Power, Super druglord",127329,66717,9 +156075,,325892,1464464,4 +156076,Mani,366170,224413,13 +156077,The King,51349,110035,5 +156078,Himself,326255,1633762,10 +156079,Tammy,24874,30882,4 +156080,Dr. Elliot,336691,98923,14 +156081,Alison,15022,20373,3 +156082,Narrator (voice),114982,3776,9 +156083,Psychiater,273,3876,5 +156084,Slade,66659,66055,2 +156085,Andrew Jennings,243568,20215,8 +156086,the Lonedale operator's daughter,130450,100045,1 +156087,Abuela,8329,1619939,9 +156088,Caius Lucius,240745,6198,11 +156089,Bella - la maîtresse possessive de Gérard,47489,25256,2 +156090,Prince Alexandre,45213,37130,6 +156091,Tony (as David Hall),52661,161356,8 +156092,Trucker,3716,1406149,20 +156093,Rosetta,50196,29544,5 +156094,Man on Quayside,38770,27941,24 +156095,Faye Burton,66175,20144,1 +156096,,27925,240835,11 +156097,Alan Mooney,255491,21043,3 +156098,Tecla Nuvolone,20414,128465,7 +156099,Nimrod,117629,1169893,5 +156100,Arnold 'Arnie' Millard,5172,1539,12 +156101,Fujiwara no Tokinobu,45987,125009,2 +156102,Fight Club Boss,293660,1683952,25 +156103,'Izzy' Levinson,116554,1892771,8 +156104,Masakazu Misaki,234284,126698,3 +156105,Puccio,53805,229274,7 +156106,Jasper Cooper,48495,209769,5 +156107,Ms. Janet Darrode,45729,5131,2 +156108,Louis Connelly,5123,1244,2 +156109,Lotta Legs,11175,68445,1 +156110,Nelly,400552,586664,1 +156111,Felix Gaeta (archive footage) (uncredited),105077,59312,28 +156112,Achim,8371,28368,0 +156113,Nelson,277558,48463,5 +156114,Jennifer,43923,1719596,25 +156115,Madge,141643,1115145,4 +156116,Marina,56150,44404,2 +156117,Deputy Connor,60086,79500,10 +156118,Eva,282768,1343614,5 +156119,Billy Ringel,18273,55616,6 +156120,Allison,23692,140253,11 +156121,Sammy,333352,1332516,24 +156122,,314388,27999,5 +156123,Biker Mirek,314635,1630510,10 +156124,Oliver Cromwell,31675,194,0 +156125,Herself,10739,137386,14 +156126,Syd Nathan,239566,105303,5 +156127,Wart,116385,120447,10 +156128,Allen,64204,110589,1 +156129,Alison,63360,158131,9 +156130,Bruno,44282,144212,0 +156131,Betty,48636,2316,3 +156132,Sophie,23823,147893,2 +156133,Warden Kvetch,422906,1947,5 +156134,Miguel,18836,13657,5 +156135,USSE Bridge Crew,188927,1858370,39 +156136,Janna,24202,1276,1 +156137,Head Cook,268920,1755070,75 +156138,Big Earl,135652,65827,1 +156139,Claire Garwood,108282,41245,5 +156140,Shonbeck,294690,1207319,5 +156141,Miss Augustine Sifert,18671,144370,15 +156142,Amma,72596,1114530,6 +156143,Zurich,426265,984055,0 +156144,Kenji Miyazawa,26368,73139,0 +156145,Norman,10201,82666,2 +156146,Detective Lazaroff,19587,64924,7 +156147,Wife,98368,1028466,6 +156148,Escribiente,69060,1043508,13 +156149,Militair,90231,1202649,13 +156150,Catherine,75622,8256,12 +156151,LA Muppet Performer (voice),145220,946673,59 +156152,Artsy Bartender,17240,117658,7 +156153,Harry's Pal in Billiard Hall,81120,51879,18 +156154,Ulysses Klaue / Klaw,99861,1333,20 +156155,Tarnell,277388,9880,3 +156156,la client de l'hôtel,76821,580596,10 +156157,Abby Morse Borden,243568,11829,5 +156158,Jasněnka,82279,141651,0 +156159,Pooja,14752,78920,4 +156160,Jazz Sethi,42057,82107,5 +156161,Greg Heffley,60307,89819,0 +156162,Lou,268920,16460,23 +156163,Klara,82448,928011,8 +156164,Raymond Le May,64605,96284,4 +156165,Mustafa Ali,297298,1373501,1 +156166,Darian,82622,928295,6 +156167,Alan Emmerich,256347,41517,6 +156168,Delivery Man,300187,1148697,9 +156169,Tom Palmer,5721,45100,1 +156170,Conte Filippo Gaggia,37710,5412,10 +156171,Edgar Wallace (voice) (archive footage) (uncredited),133941,18502,16 +156172,,334175,1464767,6 +156173,Billy,68387,100372,18 +156174,Campo Elias,68202,8695,8 +156175,Osman,123611,97272,0 +156176,Ed the Bully,61473,945409,4 +156177,Jake Breslin,241574,98450,2 +156178,Donguri,14088,1190332,7 +156179,Mikolaj 'Miko',112531,136558,0 +156180,Soldier #2,318781,1694307,36 +156181,,186971,1605812,29 +156182,Joe Kwan,11636,64436,4 +156183,Tony Endicott,10475,1835010,7 +156184,Narrator,10946,2387,0 +156185,Laro,150712,30236,5 +156186,,15830,1439648,14 +156187,1st Terrorist,83229,1544226,13 +156188,Yankee Clipper Banjo Player (uncredited),28293,122978,24 +156189,Himself,32451,1137248,0 +156190,Major Donald Craig,25385,18735,0 +156191,Himself,13516,559378,15 +156192,Governor Devlin,195269,107491,7 +156193,Reema,22448,88803,1 +156194,Farmhand,120657,589728,9 +156195,Steven,50725,173833,22 +156196,Elena Lincoln,341174,326,10 +156197,Reporter,29907,108277,14 +156198,Pani Jola,31856,140223,3 +156199,Local station police-in-charge,375599,1096793,5 +156200,Emma,10521,1813,0 +156201,Det. Sgt. Christopher Kelvaney,30036,82216,0 +156202,Logan,403431,1872334,7 +156203,Bridegroom,16131,79434,26 +156204,Peake the Gardener,47404,975126,15 +156205,Samantha,165159,120632,2 +156206,Old Man,58428,121952,3 +156207,,254869,1248277,67 +156208,Zakes Abbot,20034,86044,0 +156209,Jean-Philippe,13713,35084,1 +156210,Nuria,17893,26279,4 +156211,Alfred,88005,44054,15 +156212,Anjooran's Advocate,134474,584644,11 +156213,Garçon tir,64944,572242,10 +156214,Dunkel,52360,133342,33 +156215,Sherry,8008,27578,0 +156216,Jeanne,52264,19068,0 +156217,Herb Pennock,61225,6951,19 +156218,Harmony,98115,111446,0 +156219,Nello,23619,55914,0 +156220,Bride in Black,280092,62851,9 +156221,Ghoul,20842,565520,13 +156222,Peter,80219,5920,1 +156223,Danny,316885,1662447,9 +156224,Manager,14907,22018,8 +156225,Himself,13516,46590,1 +156226,Anna Cameron,2288,1204,0 +156227,Jamal,98557,206378,8 +156228,Charlie,297762,1125,11 +156229,Thunderbolt Buddha,27245,68973,1 +156230,Patrick,140825,1113514,6 +156231,Petronas Dancer,243683,1398199,86 +156232,Ennio,186988,1878882,8 +156233,Keith,345054,92843,9 +156234,Mirjam,75233,116388,7 +156235,Student,369883,1540604,17 +156236,Danny Koo,9056,118745,13 +156237,Astinos,1271,17292,6 +156238,Jane Austen (voice),18093,11855,0 +156239,DC Paramedic (uncredited),209112,1019098,139 +156240,Tilcuate,198795,31321,9 +156241,Owlman (voice),30061,4512,2 +156242,Cartel Guy,272878,1683786,29 +156243,Tom Dougherty,42345,2516,4 +156244,Karen Cooper,24927,1087006,7 +156245,Secondo avvocato di Elena,108535,50829,13 +156246,Geri (voice),13929,10,0 +156247,Woman in Parking Lot,107250,2676,25 +156248,Charles Xavier / Professor X,2080,2387,62 +156249,,16017,1444471,12 +156250,Arcykapłan Mefres,5040,930838,7 +156251,Elena Santos,44943,17647,13 +156252,Lank,202941,98102,9 +156253,,95919,1063128,5 +156254,Artur Ramos,44591,50968,2 +156255,Alphonso,335053,590317,1 +156256,Carla,340215,1630265,8 +156257,Amico di Armando,42674,128415,15 +156258,Lawyer,198277,163545,31 +156259,,44933,1853769,17 +156260,Mel,35689,3201,6 +156261,Orsini,79892,588204,9 +156262,Infant,80720,1672453,33 +156263,Daniel,297736,75071,2 +156264,,109379,1295552,0 +156265,Irene Melody,82313,36810,3 +156266,Denise Oher,22881,53260,8 +156267,,154442,1722912,8 +156268,Curnow,38978,29769,10 +156269,Amanda Gore,83896,33336,4 +156270,Brenna,245950,1888584,4 +156271,Mr. Harkin,37686,104046,23 +156272,Peruzzi,58773,130876,4 +156273,Eddie,397717,124909,10 +156274,Herself,417870,124501,16 +156275,Darcy,58467,11826,4 +156276,Karen Frandsen,55589,209389,2 +156277,Landgerichtsdirektor Dr. Schleffien,103396,26912,11 +156278,Frau,11204,4619,9 +156279,Joven Hernando,359105,1234526,13 +156280,Celestina,243683,1234191,52 +156281,Sun Na,44458,71057,1 +156282,Mrs. Goodson,20107,8900,9 +156283,Irene Bennett,20003,30124,1 +156284,Anton,5899,46450,2 +156285,Frau März,10645,32818,2 +156286,Ashley,264555,212198,1 +156287,Party Guest (uncredited),213681,1370997,42 +156288,Josef Breuer,19029,29068,0 +156289,,1838,1045281,13 +156290,Phil - DEVGRU,97630,1140093,24 +156291,Catina,82481,69529,5 +156292,Claire,8617,55463,2 +156293,Maria Macklin,96089,90520,1 +156294,Terry,18044,39353,6 +156295,Charles Dillon,218351,14290,7 +156296,Cindy,43727,3713,1 +156297,Lincenses & permits officer,52808,1008489,14 +156298,,77673,1664059,22 +156299,Josephine Budlick,99229,1747320,12 +156300,Minor Role,87060,1023534,20 +156301,Julie Kohler,4191,14812,0 +156302,Krish Thapar,20132,52971,2 +156303,,49653,143747,14 +156304,Cecy,340101,30318,15 +156305,Pedro,76864,382490,6 +156306,Doris,64805,85017,3 +156307,The Aviator (voice),309809,18177,14 +156308,Martha Kent,49521,2882,4 +156309,Jenny,9993,51671,6 +156310,Uber Poontang Girl / Bikini Girl #2,231082,98666,7 +156311,Coffee Shop Patron,306952,1511983,41 +156312,Missy,335970,1514065,8 +156313,Vlad Chocool,116977,1211,12 +156314,Moroccan Father,29101,1516711,25 +156315,"Georges, le chef de chantier",3423,115470,15 +156316,Major Crandle,116463,557804,3 +156317,Wallace,254439,1640385,6 +156318,Saltaperico,198795,22767,23 +156319,Joaquin,37609,1720591,7 +156320,Molly,360605,1512122,2 +156321,Qing Yi,20342,85963,3 +156322,Jason Todd / Red Hood (voice),40662,49624,1 +156323,Joseph Kellogg,77625,4139,1 +156324,Darrell Brent,255496,31137,2 +156325,Lydia,359255,1508172,3 +156326,Della Street,144475,1071202,4 +156327,Nicole,118677,928134,5 +156328,Josee,107942,3237,2 +156329,Emi,14164,78325,9 +156330,Veera,422005,1657883,2 +156331,Himself,320589,1487,7 +156332,Verwundeter Soldat,613,938247,49 +156333,Wendy Robertson,5237,27008,1 +156334,Bonnie,37269,65639,5 +156335,Missy Rose,72856,1388781,6 +156336,Machette Victim,199575,1438866,22 +156337,The Babadook,242224,1399367,25 +156338,Şaban,31405,97272,0 +156339,Zio Umberto,369245,236080,7 +156340,Nando,42441,101556,4 +156341,Jeff Ackley,77625,67523,8 +156342,Mother Angelica,82178,94332,6 +156343,Viking king,140818,92429,10 +156344,Sabor,43778,1349317,6 +156345,Jim Younger,183825,11128,3 +156346,Sheriff Brock,14552,17401,16 +156347,A noblewoman,50196,1056322,4 +156348,Simon Goldberg,11204,1876,5 +156349,Iceman,17082,148892,6 +156350,Jeffrey White,125666,83822,2 +156351,Pvt. Nelson,294690,1367225,6 +156352,Zarra,111839,17289,2 +156353,Gene Kline,167556,1211977,0 +156354,Tess Byrne,62838,10860,7 +156355,Harold (uncredited),97614,1207371,32 +156356,Jimmy,31067,31511,14 +156357,Tyler,84348,1039527,16 +156358,Test Subject #2,58244,1504600,39 +156359,Jack's Secretary,9914,60420,14 +156360,Gregor,102362,1164,15 +156361,Selma Darin,23397,8534,6 +156362,Ana,15303,111060,2 +156363,Club steward,35852,92011,13 +156364,Chives,36817,7073,6 +156365,Karl Bockerer,24140,38967,0 +156366,Steve,360284,135715,12 +156367,Bill Clarke,4938,40203,5 +156368,Marigo,276123,1330005,0 +156369,Uncle Panikos,173294,1788071,17 +156370,Lionel Tressilian,50329,29261,2 +156371,Marc Laroche,26566,105932,1 +156372,,31512,131108,22 +156373,Buck,174751,172150,6 +156374,Sprzedawca hot dogów,314371,82313,2 +156375,Viggo Johansen,128900,2244,6 +156376,Eva,19918,34486,5 +156377,Jason,57326,40348,7 +156378,Jim (voice),10857,11859,1 +156379,Volodya,76438,236369,13 +156380,Gilmer,43158,91981,6 +156381,Luzi,377847,1186434,6 +156382,Fritz Bauer,294690,1268971,29 +156383,Mrs. Bandini Jr.,343934,1240487,13 +156384,Lone Rider,42706,8962,9 +156385,Italian Anchorwoman,5172,1668468,45 +156386,Eriol Hiiragizawa,31347,1679,8 +156387,Philippe Douvier,6081,5255,5 +156388,Michelle Jordan,44634,55314,0 +156389,Drunk Cowboy in Dance Hall,8988,1741973,52 +156390,Taku's mother,21057,1133286,6 +156391,Elizabeth,70636,559059,3 +156392,Sabine 'Lutschi' Dettner,140554,1186434,32 +156393,Officer Dave,187596,824,3 +156394,District Attorney,26376,20368,4 +156395,le chauffeur de taxi,70119,1814106,11 +156396,Joe (elevator operator),20644,3339,15 +156397,Patrick,78572,24299,0 +156398,Tarvis,169298,23899,13 +156399,Kerri,17038,183384,4 +156400,Grand Moff Tarkin,330459,40638,16 +156401,Travis Welker,339530,6213,1 +156402,Doctor Malik,328589,55472,12 +156403,Natalie,279606,1951,2 +156404,Mrs. Axel,27740,11494,6 +156405,Ms. Briganza,11854,87304,8 +156406,Anna,9252,57000,1 +156407,Larry Underwood,13519,68528,32 +156408,Sayaka,26936,20330,1 +156409,Jimmy,121923,176511,12 +156410,Barbara Magnaghi,58060,1281129,5 +156411,Saloon Woman,20361,37129,9 +156412,Hash-Slinger,157343,34332,26 +156413,Isa Barelle,56947,54675,2 +156414,Lance,113148,46593,0 +156415,Apostle Thomas,64942,8774,10 +156416,Hot Servant,156711,1349742,37 +156417,Gina Carbonara,10482,111657,7 +156418,Homi Wadia,54814,86228,5 +156419,Second Lecturer,43811,29579,55 +156420,Sargon / Greegan,76757,1394331,25 +156421,Woodley's Secretary (uncredited),43419,998961,20 +156422,Seaman 1st Class - Bridge,17744,184980,10 +156423,Judge Copeland,241574,191775,1 +156424,The Dictator,240334,1257190,0 +156425,Joe Harris,121354,12515,0 +156426,Carol Forrest,43241,30291,1 +156427,Joe Roberts,25598,52,0 +156428,Sgt. Tisbert,244610,78665,1 +156429,Soldier,1724,38564,54 +156430,Jack Hanson,14053,90475,5 +156431,Doctor Kuni,4964,83586,16 +156432,Darth Vader,330459,25451,14 +156433,The gossip (a Norman peasant),132332,37183,8 +156434,Andriy Bulba,17935,93536,3 +156435,Whittaker (uncredited),10178,3342,35 +156436,Herbert Hopewell,226354,2467,4 +156437,Bailiff,262338,1396602,17 +156438,Ukki,55500,1201669,3 +156439,Danish Father,267935,105864,11 +156440,Diamond Stripper,354979,1835265,48 +156441,Nadine Franklin,376660,130640,0 +156442,Tom Blankenship,103731,9880,3 +156443,Alison,127493,506085,3 +156444,Government Agent,271677,1807331,8 +156445,Nelly,39415,17882,0 +156446,Terry Griffiths,377516,1651873,11 +156447,James Proudstar / Warpath,127585,121868,19 +156448,Detective Zhong Wen,219572,18897,0 +156449,Ellen R. Ewing,74437,30155,0 +156450,Manda,68822,15137,1 +156451,Clarkson Stanfield,245700,1345950,18 +156452,Newspaper reporter,166621,89732,13 +156453,Pappan,127901,1109318,1 +156454,Mary Rivers,38684,36672,6 +156455,Mariko Yashida,76170,1156024,4 +156456,Viktor,410118,527696,3 +156457,Shauna Roberts,341957,1356785,2 +156458,Frank Catton,298,1897,4 +156459,Lucas,348631,102742,9 +156460,Sokovian Family,99861,1760890,55 +156461,Stripper (uncredited),15092,1895702,73 +156462,Conway,97051,11512,6 +156463,Sara Ballard,72642,1000708,2 +156464,Gen. Webster,10841,522,1 +156465,Isabelle,398891,113223,2 +156466,Chief of Police,39979,1091538,11 +156467,Nightclub patron,58076,121323,9 +156468,Nurse in Swiss hospital,2963,1860008,4 +156469,Divya,303281,35745,7 +156470,Charlie,60422,1345418,10 +156471,Himself,276536,37317,2 +156472,Young Tyler,9935,931944,6 +156473,Tyler Green,29801,33321,2 +156474,Samuel,242224,1277195,1 +156475,Man,340215,1630260,5 +156476,Sarah,52044,231441,2 +156477,Lawyer Hu Ly Fa,88922,124002,3 +156478,Rider,43757,1153745,7 +156479,Dusty,133255,1096828,1 +156480,Himself,394668,76245,1 +156481,Skull,58918,135571,9 +156482,Judy Schneider / Judy LeRoy,80032,8857,1 +156483,Astronaut (uncredited),283995,7624,55 +156484,Mr. Brock,84105,1727020,18 +156485,Ford Bond,921,5922,6 +156486,,282024,240563,4 +156487,Claire 7 ans,283726,1690062,12 +156488,Dr. James 'Jimmy' Kildare,153163,2007,0 +156489,Bill Orcutt,326285,1124950,14 +156490,Judge Eden,27717,98830,5 +156491,Jessie Dage,23964,42707,2 +156492,Pekka,141971,108471,0 +156493,Rosemary,78461,231856,8 +156494,Cafe goer / Club goer (uncredited),330947,1367906,54 +156495,Chicanery Night,76757,114252,30 +156496,Wedding Party (uncredited),369524,1641546,30 +156497,Kevin Savage,322,4733,13 +156498,Smoking Teacher,2976,29216,39 +156499,Invité,85883,227604,12 +156500,Sarah Hurst,16899,115679,10 +156501,"Highwater, Guard #1",9987,61494,19 +156502,Dr. Fritz Hagedorn,54769,37734,2 +156503,Marine (uncredited),44943,1205886,42 +156504,Sen. Remmy,74911,93628,9 +156505,Mrs. Depew,406052,1676159,20 +156506,Sven Ahern - Barber (uncredited),14615,985275,84 +156507,Son,339408,1622094,37 +156508,Jenna Zombie,218784,52404,18 +156509,Sprzedawczyni lisów na targu,8211,26931,12 +156510,Fu / Tiger,42120,26784,1 +156511,Dvotcha,23964,1576968,19 +156512,Clara Cardell,15264,111431,4 +156513,Elna,154671,563837,1 +156514,Police Officer,39048,13358,9 +156515,Alfredo,98586,121689,12 +156516,Royce,112973,154176,8 +156517,Popeye,21435,21177,5 +156518,George,139463,36666,9 +156519,Danny Gopnik,12573,105305,4 +156520,Young Mother,10389,551626,39 +156521,Varvara-krasa,20934,86803,0 +156522,Raghu's Friend 1,209410,1295875,5 +156523,Aleksey,71381,101433,1 +156524,Paulette Nanteuil,76703,238605,1 +156525,Mason's Secretary,283384,1384536,18 +156526,Éric Masson,59434,145073,4 +156527,Jefe de tierras de montaña,106887,1302054,6 +156528,Woman in Search,1116,1397977,41 +156529,Himself - Various,18809,8930,0 +156530,Drunk Driver,10004,61838,15 +156531,Ken Adams,321039,113006,2 +156532,Elderly Man (uncredited),293660,87209,42 +156533,Mrs. Salt,118,1370651,24 +156534,Svetlana,150056,1191238,5 +156535,Caroline Thomas,61348,71727,1 +156536,Beardsley (uncredited),16442,117046,77 +156537,Himself,320589,74329,15 +156538,Emma,122857,1018982,5 +156539,Lilian Bentley,64167,20300,3 +156540,Samantha,18586,1812,7 +156541,Father Ahearn,30036,24938,7 +156542,Kir,62616,82718,1 +156543,PR Exec #2,9541,1892,12 +156544,Sadi,341007,1706333,1 +156545,Fusion,405473,1346501,28 +156546,Casey,158750,17225,2 +156547,Kelly Davison,83899,558055,5 +156548,Ashik Kerib,92663,1802653,1 +156549,Ace,6877,21180,3 +156550,Shayla,323675,1377385,17 +156551,Silent Bob,2295,19303,3 +156552,School Guard,2267,1134012,11 +156553,Edmund Sparkler,47084,229634,12 +156554,Boom Boom,10425,22132,20 +156555,Mi-yeon 1,85959,1077269,1 +156556,Jack,24409,89979,6 +156557,Marja,124979,1364446,2 +156558,Peyman,37181,559566,3 +156559,Clyde,54318,1166385,19 +156560,Wolf (voice),809,12106,11 +156561,Karakush,58905,103493,15 +156562,Riff (voice),333667,77330,8 +156563,Teenage Milly,290762,1640424,14 +156564,Graf Peter,153717,1134590,4 +156565,Brent Hoover,40087,2883,1 +156566,Muscle Woman #2,316154,83055,13 +156567,,265314,1099283,6 +156568,Eli,55735,105079,10 +156569,Herself,43514,46617,7 +156570,Brian Reader,448847,136039,2 +156571,Col. Petrov,19996,7073,4 +156572,Joe,132928,1000083,19 +156573,Arielle,82485,59263,0 +156574,Browning,87516,17838,10 +156575,Horatio J. Hammond,76211,39816,6 +156576,Buddhist Sailor,87827,966327,20 +156577,,313676,70124,8 +156578,,224951,1037844,0 +156579,Billie,156277,7517,0 +156580,"Rita, Al's Daugther",17956,33655,11 +156581,Princess Yan Feier,14539,72730,0 +156582,La Policière,160160,1142295,9 +156583,,218508,1200125,10 +156584,,469172,1112004,20 +156585,Zach,132426,182838,4 +156586,Masaharu Kitaoji,141819,2541,6 +156587,Edward Piggott,9648,102603,6 +156588,Michael,924,4177,2 +156589,Jung Chul-jin,24822,240081,3 +156590,Ruth,418969,60158,3 +156591,Cole Gardner,153228,4303,2 +156592,Sami,306323,1029074,1 +156593,Fowler,26502,544425,13 +156594,Charlie Bucket,118,1281,1 +156595,Barton,46193,4965,7 +156596,Minister Fistermeister,3478,5801,18 +156597,Charlie,95504,87751,4 +156598,Paul,337107,1215398,3 +156599,James 'Jim' Duff (as Don Douglas),25507,96257,5 +156600,Grace Moore,242631,82407,0 +156601,Auctioneer,315855,115596,54 +156602,,373838,583453,0 +156603,,86321,444956,4 +156604,,79234,994441,12 +156605,Pluthner,28484,100920,10 +156606,Dr. McDonnell,51571,40529,1 +156607,"Sunil Mitra, the Selector",21567,101863,11 +156608,Lotus Land Dancer,32657,1398165,86 +156609,Tactical Team Leader,2503,199298,25 +156610,Doctor,121942,1413,2 +156611,Zara Ali,14076,1559929,4 +156612,Magic Show Audience Volunteer,228647,1296299,36 +156613,Jeremy,26768,96182,9 +156614,Phil Hirschkop,339419,1461038,10 +156615,Sara Kester,10274,64673,12 +156616,Extra in Restarant / Extra at Wedding Reception,124115,931793,29 +156617,Detective,362057,80301,13 +156618,Girl in Jeep,47878,557537,14 +156619,Divina Madre,110447,17882,0 +156620,Professor,96702,8519,11 +156621,Teacher (uncredited),14703,153315,10 +156622,Rocco,52736,157998,11 +156623,Barney Flood,77650,33230,4 +156624,Mrs. Metz,200447,115366,7 +156625,Yu's mother,20342,1173379,4 +156626,Ticket Vendor,3580,182680,42 +156627,Welcome to the 60's Dancer,2976,1513682,113 +156628,Coroner Hooks,24150,87108,23 +156629,,49907,24599,2 +156630,Sue,24554,40389,10 +156631,Jason Argyle,5460,43442,0 +156632,Annie Meacham,10917,141047,6 +156633,Monk,58905,39801,16 +156634,Mikhail,57809,588038,9 +156635,Vishal Thakur,45533,86013,2 +156636,Austin,348611,76999,5 +156637,Tanya Rider,23853,8336,6 +156638,Edith Cushing,201085,76070,0 +156639,Himself - Co-Host / Narrator / Clips from 'Take Me Out to the Ball Game' - 'Singin' in the Rain' and 'An American in Paris',33740,13294,3 +156640,Pascal,360737,38720,7 +156641,Lew Brady,28090,16119,13 +156642,Clarissa Huston,40624,16484,2 +156643,Comic,214756,170835,25 +156644,Laura's Grandpa (uncredited),263115,1026877,90 +156645,Sadie Brenner,211144,203630,4 +156646,Karl,5172,1668328,28 +156647,Carl Berner,55612,1480253,11 +156648,Senior Inspector Liu Chi Chung,25655,26784,3 +156649,"Edina Hamilton (segment 3 ""Hollywood 1936"")",75903,46780,5 +156650,Gen. Neville,32716,13823,12 +156651,Bessie,22744,7381,5 +156652,Sameer Behl,30695,78245,0 +156653,First Western Union Messenger,157898,106805,51 +156654,,199985,1601110,7 +156655,Treuberger,122487,73671,7 +156656,Detective Reilly,48949,8875,15 +156657,carabiniere che traduce Di Noi in carcere,73827,1139899,19 +156658,Juiz,35435,83937,2 +156659,Blake MacNaughton,24632,1065792,4 +156660,Warren,42634,159519,7 +156661,Jenny Thierolf,18530,12041,1 +156662,Gertrude Frossin,65646,236533,2 +156663,AJ,323675,83586,4 +156664,Gabe,273404,17328,2 +156665,Suzanna,40978,65667,6 +156666,James,79995,47653,6 +156667,Medicine Man,92341,1016595,10 +156668,Court attendee / Paparazzi,339994,1593368,20 +156669,David Clarke,122677,102955,8 +156670,,18729,141,6 +156671,"Bobby Lechuga, el Fox Terrier",69060,31599,8 +156672,"Michael ""Mike"" Denton",5753,45346,1 +156673,Ogilvie,201085,8537,14 +156674,Sushant Modi,14467,150438,7 +156675,Christopher Archer,308032,11665,3 +156676,Oolong,38594,122373,17 +156677,Oolong,39148,122373,2 +156678,Dr. Phil Look-A-Like / Love Guru,13805,1114054,10 +156679,Holly,46420,63313,3 +156680,Dancer,11172,1363088,38 +156681,Zoe,144111,13965,9 +156682,Homeless Man,8457,1586954,33 +156683,Catherine Kagan,246422,53905,8 +156684,Newswoman,288668,101093,11 +156685,,64526,1862708,10 +156686,Boss,334298,1183233,4 +156687,Regan,42941,59183,22 +156688,Billy at age 3,108723,1446329,7 +156689,Arend te Pas,73123,46460,4 +156690,Aunt Dorothy,287903,1909,8 +156691,Carmen,209112,1622651,22 +156692,Det. Sgt. Mark Brewster,30034,103071,2 +156693,,359807,1450749,6 +156694,Heinrich Stehlke,368342,118586,7 +156695,Silhouetted John,113137,149660,6 +156696,Johnny Dutton (bush pilot),32921,33022,1 +156697,Spoonie,250066,37149,7 +156698,Karen Chelios,15092,47987,14 +156699,Suzi,27629,15983,10 +156700,Jim Wilson,31042,43822,8 +156701,Camarero,342213,1471526,8 +156702,Korean Train Passenger,99861,1760884,51 +156703,Becca,361018,1513534,6 +156704,fadista,49961,143114,11 +156705,Nadine (as Dominique Troyes),40978,135621,8 +156706,Pedestrian (uncredited),337339,1805149,57 +156707,Un agent,27053,1460964,27 +156708,Lab Technician,3072,1076574,8 +156709,Mayor Artie Worth,29054,13423,4 +156710,Vivica,325712,2535,1 +156711,Middle-aged woman,43741,1356007,10 +156712,Natalie,27671,98634,2 +156713,Alison,258947,1349908,3 +156714,Goethe,259830,1354500,9 +156715,Weasel,74830,5296,4 +156716,Viola Gruber,20846,3094,2 +156717,Adam Müller,266044,67422,9 +156718,Hamilton,45132,74957,6 +156719,,63899,932874,1 +156720,Amadou / Obama,84479,23301,0 +156721,Rick,253851,15371,8 +156722,Karen,245706,15370,10 +156723,Katelyn,82401,21711,1 +156724,Jim Forman,51476,1211248,7 +156725,Tiger,31258,1048881,5 +156726,Stephen Landis,31078,15112,0 +156727,Kay Nelson,77012,114956,5 +156728,John Xerxes Archley,153163,30215,10 +156729,Priest,60173,230662,2 +156730,Лёля,20963,86868,6 +156731,Victor,22551,62095,0 +156732,Old Major (voice),815,14501,8 +156733,,43095,1200222,12 +156734,Crush (voice),127380,7,12 +156735,David,46972,2171,0 +156736,Fred,334890,1695148,13 +156737,First Man (uncredited),3081,1185453,20 +156738,Holt,233487,1017259,1 +156739,Prinzessin Elisabeth,313896,73004,2 +156740,Ike,93116,185407,4 +156741,Lodi,93863,5964,4 +156742,Carol Welling,361018,1513533,4 +156743,Mr. Russell,29835,40221,7 +156744,Clip from 'The Great Ziegfeld' (archive footage),33740,95314,15 +156745,,185987,17282,18 +156746,Malcolm Dodds,38031,126042,26 +156747,Orderly (uncredited),15807,1564774,29 +156748,Han Cho Bai,146216,25002,8 +156749,,56095,119457,10 +156750,Venus,52705,146519,2 +156751,Mafia Goomba,335970,1718445,82 +156752,Blake,293970,118895,9 +156753,Larry Sokolov,10744,17402,6 +156754,Prisoner,28090,11160,37 +156755,Médico,48962,147106,7 +156756,Prince Edvard,11137,68307,1 +156757,"Gus, Bartender (uncredited)",28668,119258,16 +156758,Adult Bo,24078,15851,0 +156759,Megan,173499,1156241,5 +156760,"Lord Hugh ""Hughie"" Porteous",120676,262394,5 +156761,Dubai Beauty (uncredited),1726,1209717,67 +156762,Dave,167810,77335,5 +156763,Inge,8906,13740,0 +156764,Rowdy Townsman (uncredited),84772,98045,7 +156765,Metro Man (voice),38055,287,1 +156766,Jean,7288,12967,5 +156767,Mary Ellen,343934,1093919,22 +156768,Gabriel,22894,79072,2 +156769,Marie,297762,1256710,29 +156770,Rude Man,18093,188433,16 +156771,"Guillaume, fils de Pierre",4146,35004,10 +156772,Wenzel,226001,1444639,5 +156773,Alexandros,47792,225962,4 +156774,Lance Grayden,336775,141429,4 +156775,,333884,127015,6 +156776,Polish Politico,19996,1764154,49 +156777,Door Guard,1427,1516661,22 +156778,Otcho,39123,80754,7 +156779,Jefferson,206563,130036,10 +156780,Jim Buchanan,126083,2435,0 +156781,Henry,43241,1213238,6 +156782,David Woodbury,99312,21246,4 +156783,Red,83802,985251,1 +156784,Maria,444713,1040950,7 +156785,Rita,358895,1720847,20 +156786,Higgy,3563,54883,34 +156787,Vecina (uncredited),42502,1483345,22 +156788,Carrie Madison,70500,42174,1 +156789,Tom,146380,1044945,4 +156790,Bislane,9389,1059106,7 +156791,Himself,209112,79086,68 +156792,Melody,430250,1699398,3 +156793,Lt. Damico,29113,79246,2 +156794,Mrs. Millicent McMurtrey,86979,39028,3 +156795,Bobby,101242,1026726,5 +156796,,375742,1564305,38 +156797,Himself,15258,545853,58 +156798,Tonda Metz,194393,104412,1 +156799,Old Lady,310135,1716340,31 +156800,Schultzy,44669,70990,3 +156801,Hot Dog Vendor,59965,1432981,31 +156802,Daisy Heath,99318,14869,0 +156803,Frank Murphy,6341,6355,0 +156804,Walter Nottingham,113175,1218926,4 +156805,Man on Radio,273896,1568215,7 +156806,Mary Turner,179818,31550,0 +156807,Paramedic,22881,1024312,20 +156808,,408550,1658140,11 +156809,Approved School Principal,64167,3545,10 +156810,Schneiderin,4955,40996,10 +156811,,134372,107766,0 +156812,Sheriff Bambi,146970,100861,1 +156813,Jud,38761,114232,7 +156814,Apostle James,64942,1105263,11 +156815,Charlie Daines,25707,23346,0 +156816,Gérard,381356,71377,9 +156817,Casting Agent,243683,172883,24 +156818,Emmet Keogh,68247,7194,5 +156819,Vamanos,101363,587,0 +156820,Patrick,443007,1763912,2 +156821,Ship's Officer,48231,142545,16 +156822,Baseball Announcer,152737,57770,17 +156823,Pilote Air France,352025,1784153,19 +156824,Ramsey,138222,56542,3 +156825,Sebastian,44022,24827,4 +156826,Donna Peyton,52122,83787,14 +156827,Jorge Valdano,226163,1211596,1 +156828,Il nonno Finard,31542,1757131,13 +156829,Ingrid,195385,37746,9 +156830,Sille,294483,1366985,15 +156831,Adam Puckett,50942,108774,4 +156832,Keshav,14705,85668,4 +156833,Setsuko Toda,94659,134373,0 +156834,Guerilla,118497,1087953,4 +156835,Aya,58878,213483,3 +156836,Sylvain,12449,54291,2 +156837,Senior Police Official,69775,566793,3 +156838,Mike Lewis,298158,94984,3 +156839,Romulus,14066,8783,0 +156840,Smythe (maid),162862,981098,9 +156841,Gaston,27053,24379,7 +156842,Jan Otis,67102,1053370,1 +156843,Tech-Stylz Dancer,243683,1398202,89 +156844,Himself,47426,141677,2 +156845,Camarera de TGIF,38317,60959,20 +156846,Claire,112161,56824,7 +156847,Barney Remington,83354,12156,5 +156848,Cleo Callahan,323149,1264589,2 +156849,Dale Davenport,293863,152820,19 +156850,,342011,73572,2 +156851,Barbara Kirstenburg,42215,1018924,8 +156852,Wealthy Servant,205584,1535061,34 +156853,James,2274,23497,7 +156854,Minister,78691,74420,25 +156855,Betty Rhys-Jones,10918,4154,0 +156856,Washerwoman,151068,1870854,13 +156857,Glenda Lansing,15092,1729745,42 +156858,Tendo,317557,16760,5 +156859,Ed - Photographer,157343,121122,14 +156860,Cynthia,99374,83390,5 +156861,,149154,1497140,2 +156862,Guard,65123,566730,9 +156863,,285935,1766387,7 +156864,High Priest,95015,1198793,10 +156865,Himself - Roastmaster,296192,52139,2 +156866,Graswander Toni,54769,46557,5 +156867,Ruth Manning,4932,40056,1 +156868,Anak,358980,132261,7 +156869,"John, Prince of England",58905,1080053,10 +156870,Father Stephan,72984,2076,2 +156871,Skylar,385372,1585214,14 +156872,The Wife,47310,138395,8 +156873,Richard Harmon,102057,61303,0 +156874,Big Frank,52859,148402,25 +156875,Mario,62034,131306,3 +156876,The Yacht: Crew Helmsman,10780,1444178,11 +156877,Klara Häberle,367596,1085786,3 +156878,Farmer Pilkington,815,15888,9 +156879,Richard Maxwell,185291,14574,3 +156880,Henchman,26502,190775,14 +156881,Good Samaritan,293863,41746,30 +156882,The Driver,30091,2296,0 +156883,Richard,33510,1104994,3 +156884,Lorraine,152989,1179879,9 +156885,Opera Lighting Technician,177677,1430505,26 +156886,Happy Simpson,377170,1017631,8 +156887,Athena Mulvain,109018,82405,0 +156888,Pentuer,5040,1130975,6 +156889,Elizabeth,399612,1021684,2 +156890,Tatya Tukaram Tendulkar,147767,85450,3 +156891,Lorrell Robinson,1125,15563,5 +156892,Tobias 'Dobbs' Steiger,11142,68324,2 +156893,Marnix Laureys,17845,82422,5 +156894,Dr. Thurisaz,328032,1086,10 +156895,Skye,66113,556087,13 +156896,,143068,82796,2 +156897,Kim Ok-Hyang,385261,1386540,7 +156898,Auntie Kam,91186,1163182,6 +156899,Al,38724,15992,11 +156900,la segretaria di Del Prà,43548,1871602,25 +156901,"Zdzisław Talarek, rozwodzący się mąż",155426,1074009,10 +156902,Incoming Watchman (uncredited),14615,95311,56 +156903,stripper #1,319340,1494520,10 +156904,Mr. Su,362154,25251,6 +156905,Second dissolved sailor,43113,235722,40 +156906,Skip,27886,1050371,2 +156907,Special Appearance (Song),276846,1641478,9 +156908,Omura,616,52909,14 +156909,He,17609,5293,0 +156910,Tom Roberts,26326,98569,1 +156911,Alexander Burnham,4809,41719,5 +156912,Caroline,127728,1085656,4 +156913,"Marlene, moglie di Antonio",56068,1002593,5 +156914,Police officer,15472,1136696,27 +156915,Wulfric,10529,54738,2 +156916,Captain America,58447,1015993,1 +156917,Señá Paca,166207,1396365,20 +156918,Member of Band,38769,5461,21 +156919,Pissaro,9950,60801,18 +156920,Jason,15664,78500,6 +156921,Clara Chevalier,42501,20882,0 +156922,Dr. Manning,29416,12315,1 +156923,Gerry,334527,17183,4 +156924,Clerk,109716,1181054,15 +156925,Joseph Hoffman,75595,37204,6 +156926,Sophie Pryor,32540,73355,8 +156927,Catherine Oswandu,67696,1206261,1 +156928,Steamer Captain,10204,13633,10 +156929,Mark Polley (age 11),128216,1332939,32 +156930,Annie Sue / UK Muppet Performer (voice),145220,1228891,49 +156931,,47200,1510929,7 +156932,Unna,8556,12776,15 +156933,Favorite of the Harem (uncredited),3059,1307853,83 +156934,Tidy,153228,164974,8 +156935,Vigilante Seguridad,254869,19854,44 +156936,Presentatore,22182,149349,9 +156937,Duece Man,354979,1636772,26 +156938,No. 8,15003,127841,3 +156939,Pavlik,83475,13713,4 +156940,,208309,1427194,4 +156941,Gin,20439,131199,7 +156942,Bouncer,9893,60081,18 +156943,Himself - Roaster,296192,440414,6 +156944,Hotel Employee Hanging Mosquito Netting,94182,87371,26 +156945,Capt. Thomas Rawson,257377,19463,3 +156946,Max (voice),12697,68190,2 +156947,Trooper #1 / Transport Driver,17940,172855,16 +156948,Emma Bovary,273510,1518,1 +156949,Ethel Saxon,42752,128494,12 +156950,,57781,240827,9 +156951,Whorehouse owner,42837,1416220,14 +156952,Dan Freeman,62330,174942,0 +156953,Nick,82401,21402,2 +156954,Reina Ariana (Diálogos),13283,1497232,15 +156955,The Girl (as Renee Adoree),38787,29973,1 +156956,Welcome to the 60's Dancer,2976,1752781,127 +156957,Shabby Woman,167073,1359384,34 +156958,Eloisa,120303,1032548,2 +156959,Don Esteban Ferragut (prologue) (as Alex Nova),183932,1381508,2 +156960,Krasnevsky,17935,7107,9 +156961,Nathan G - Werewolf,246741,1423817,33 +156962,New York Pedestrian (uncredited),284052,1277053,47 +156963,The Lord Provost,73772,113,9 +156964,Giles Perry,328589,110076,37 +156965,Jason,71687,148100,1 +156966,Tzar (voice),116733,86700,2 +156967,Tires burner,45649,556018,21 +156968,Guy,150117,1284159,11 +156969,Doc Snyder,1659,18400,0 +156970,Android 18,38594,122660,12 +156971,Twirling Stevie,33343,1188791,23 +156972,Harry Pierpont,28110,18071,5 +156973,Police Officer,336011,1560249,19 +156974,SkyBax Patrolman (voice),35177,19547,9 +156975,Kazuki Joushima (Voice),364111,9708,5 +156976,Safar,168259,492791,20 +156977,Professeur Théorêt,23857,565637,7 +156978,Ibrahim,373247,62487,3 +156979,Soldier,13486,141472,17 +156980,Don Chase,47863,169349,11 +156981,Michael Davison,119694,1765915,8 +156982,Mr. Binford,5928,14884,2 +156983,Detect. Lieutenant Mandel,36375,46711,3 +156984,SpongeBob SquarePants (voice),74,78798,27 +156985,Wainwright,373977,17782,11 +156986,Herbert Dunstan,22968,18586,5 +156987,Griselda,127424,1041040,1 +156988,Himself,374460,7879,13 +156989,Stump,9793,59299,14 +156990,Wally Kamin,26486,4253,18 +156991,Woman of Venus,36530,115536,7 +156992,Nora,8954,56421,11 +156993,Dekan,5123,41293,6 +156994,Kelly,344039,1470403,8 +156995,Johnny Ryan,45020,1894,0 +156996,Juanita (voice),115223,936989,1 +156997,Clarence Earl Gideon,63505,4958,0 +156998,Slattery,125666,101886,7 +156999,Tommy McAlpine,63762,135483,3 +157000,Boy Chico,64450,1200477,12 +157001,Colonel Hampton,14531,36666,11 +157002,Jack Simon,383140,1169157,9 +157003,Keyboarder,61035,1446121,48 +157004,Newsboy,332079,106805,22 +157005,Chiang,21519,1356189,11 +157006,Amber,256740,57674,3 +157007,"Mab, Queen of the Old Ways / The Lady of the Lake",7096,8436,2 +157008,Guardia Civil Ministerio Bienestar Social,25376,1331815,28 +157009,Melek,3716,5500,3 +157010,Andrea De Luca,335051,1786478,6 +157011,Tiny Tony,340275,1531609,49 +157012,Tara,9890,20388,21 +157013,,69310,548608,39 +157014,Prince of Darkness,42204,68091,1 +157015,Dr. Diabolo (Framing Story),41035,16523,1 +157016,Shrek (voice),10192,12073,0 +157017,Max,55712,21484,4 +157018,General Stander,18927,16758,5 +157019,Principal,28068,99557,4 +157020,Jeremy Rodock,90406,5788,0 +157021,Timo Vaski,61070,1403857,5 +157022,Miss Charlotte,75244,182054,8 +157023,"Old man (segment ""Chawan no naka"")",30959,20829,66 +157024,Mercy,62143,102661,31 +157025,Laurie,73772,63141,4 +157026,Himself,27637,1516685,20 +157027,Used Car Lot Guy,72207,1561416,27 +157028,Jenny Townsend,42669,96740,1 +157029,Ghost in the Hospital,10389,231011,9 +157030,Bob Champion,149926,5049,0 +157031,Lieutenant Patrick O'Reilly,27144,24549,3 +157032,,156988,628316,4 +157033,Lucky Luciano,33357,27647,8 +157034,Seth,50647,15009,2 +157035,Walker,117251,4512,5 +157036,Stella Papparonis,118444,76979,1 +157037,Flip Rhinelander,76714,163367,6 +157038,Chas Chandler,192133,281413,8 +157039,Boo's Girlfriend at Wedding,107593,8857,8 +157040,Ann,7085,25341,2 +157041,Beth Winter,89325,3092,0 +157042,Spooner,62492,205129,5 +157043,Thief,46982,1537644,10 +157044,Rhodes,14207,21182,5 +157045,Jens,196027,1176194,1 +157046,Tobias,140894,587415,2 +157047,Venom,38317,83586,8 +157048,Mahasangram,94935,101825,6 +157049,Lute Johnson,93562,109846,3 +157050,Oscar,352164,455033,3 +157051,Sgt. Stone,61049,2096,9 +157052,Glove Factory Worker (uncredited),326285,1621146,21 +157053,Ting-Ting,92989,1656521,2 +157054,,284189,13191,5 +157055,Steve Braddock,289198,48312,6 +157056,Dave,193893,1381393,18 +157057,Hunter,31221,1613035,10 +157058,Heavy One,48838,1323612,16 +157059,Carl Doyle,448847,1796127,12 +157060,Charlie Newcombe,42619,100648,9 +157061,Saiva,8471,1620,0 +157062,Tej,42057,1227784,11 +157063,Rod (voice),27300,20212,3 +157064,Jack Rodgers,55505,45206,3 +157065,Mobley,44190,34279,5 +157066,Himself,338063,1352419,1 +157067,Gloria,59678,1399746,20 +157068,Abby,84340,54470,1 +157069,Agamemnon,81409,128243,2 +157070,Mr. McLeavy,198652,47137,3 +157071,Himself,183218,192248,0 +157072,"Immacolata detta Imma, figlia di Fosca",58011,1878440,15 +157073,Crying Baby (voice),38055,1454441,16 +157074,,130948,976293,12 +157075,Ricky Rodriguez,123770,20495,2 +157076,Sailor,70667,122556,12 +157077,Kemal,10565,16809,1 +157078,Shawn Furst,253484,1295541,6 +157079,Vitória,117534,127110,5 +157080,Gabrielle,253310,1257387,1 +157081,Fairy,189151,46691,11 +157082,Miss Tagg,80596,20055,5 +157083,,297298,147049,4 +157084,,78323,583732,0 +157085,Brian the Set Designer,9899,60144,16 +157086,Dyrektor więzienia,382155,1636688,18 +157087,Female Drill Instructor #1,424488,1837278,24 +157088,Set,205584,17276,2 +157089,Harriet MacKyle,72096,14415,2 +157090,Brother Abernathy,126947,83826,5 +157091,Mr. Barry (uncredited),206197,27680,42 +157092,Valérie,4974,19888,2 +157093,Himself,157117,72860,4 +157094,Moni,11930,56603,11 +157095,Doggy Bag,35025,114710,12 +157096,Jack,40217,11357,0 +157097,Sye,413052,182280,3 +157098,Background Break Dancer,10362,1758906,36 +157099,Fur Trader,174751,75131,13 +157100,Aida Rodriguez,369524,1524033,25 +157101,Toymaker,12279,16483,4 +157102,Maynard,18684,83826,5 +157103,Leo,26116,90112,9 +157104,Fisherman #1,3146,97204,15 +157105,,44716,3410,26 +157106,Bud Dorson,45215,95276,9 +157107,Harvey,46729,52288,2 +157108,полицейский,330878,143633,14 +157109,Hal Jordan (voice),17445,22227,0 +157110,,356156,1812963,8 +157111,István,352917,1177074,3 +157112,Cliff,44000,41961,5 +157113,George (Intern),384594,145264,3 +157114,Channel 7 Cameraman,19719,85096,22 +157115,Sister,97797,566727,8 +157116,Vegeta (voice),303857,122501,1 +157117,Jung So-Yool (young),385261,1278162,8 +157118,The Ranger,9841,59822,4 +157119,Harry Gregg,62441,1205630,12 +157120,Big Jim,14387,132102,12 +157121,,24837,1035346,2 +157122,Kal,85435,212368,12 +157123,Benito,30174,557604,1 +157124,Inspector Giuranna,64725,55757,4 +157125,Anchor Ted (voice),123025,5176,22 +157126,Annie,1819,19275,5 +157127,"Kiryanova, starshiy serzhant",49106,239487,6 +157128,Police Officer,381645,1413402,23 +157129,Bernie's Mother,3563,39114,17 +157130,Optometrist,137321,1367015,17 +157131,Sheriff Ramsey,63988,116579,2 +157132,Sludge,104297,10194,6 +157133,Victoria,82999,681098,1 +157134,,195544,1311610,20 +157135,Girl in Bed,51999,1810360,19 +157136,Court Clerk,67375,115772,46 +157137,Chelsea Parker,10748,66442,9 +157138,Yvon Brunet,41277,132821,9 +157139,Karen Summers,29398,103728,1 +157140,Greg,17175,52270,4 +157141,Oyuki,402455,13280,8 +157142,New York Club Patron,18283,38761,15 +157143,Elephant (voice),79853,143725,3 +157144,Donnagon Giggles,12279,17403,8 +157145,Sir Walter Raleigh,43252,2437,16 +157146,Dan,44115,1511951,15 +157147,Paul Morrow,79778,169741,2 +157148,John McKenzie,336199,10692,1 +157149,Alekos,47778,1119908,2 +157150,Freddy,25921,93111,0 +157151,Mary Ellen,285869,55575,4 +157152,Mara,48254,1664127,8 +157153,Jenny,182127,142643,7 +157154,Colaboracion Especial,347666,143599,10 +157155,Himself,15258,1215782,106 +157156,Mr. Pritchard,26514,1465100,11 +157157,Boss,38916,44818,8 +157158,,79836,32562,2 +157159,Manell,41301,76101,11 +157160,,84823,1620091,6 +157161,,284048,565347,1 +157162,US Platoon Commander,354287,33396,44 +157163,Rose,65156,12025,5 +157164,Horatio,8010,53592,9 +157165,Man in Car,270886,146092,8 +157166,Voditel Moskvicha,79234,994435,9 +157167,Bob,31118,1066933,4 +157168,Estelle,128917,1088203,7 +157169,Daimon's father,85656,68704,12 +157170,,412103,1453803,2 +157171,Director,19398,1469199,33 +157172,,51549,1060301,22 +157173,Hindu Woman,115109,88999,25 +157174,Bus Driver,338676,1493396,9 +157175,Fire General,66756,548610,11 +157176,Dr. Murakami,52728,1119125,9 +157177,Leo Bloom,9899,4756,0 +157178,,27276,551842,33 +157179,Manuel,43544,87899,18 +157180,Bowling Alley Patron,179826,1155332,29 +157181,Dave Hanson,16296,80246,2 +157182,Helper,104376,86940,4 +157183,Blind Mice (voice),10192,12097,19 +157184,Col. Vershinin,277396,27554,6 +157185,Security Guard,339403,1635145,31 +157186,Tanya Malichite (voice),42515,15098,6 +157187,Weaner Pup (voice),65759,1445419,21 +157188,Lucía Navarro,365709,1151375,6 +157189,Kie Hirano,391642,83526,1 +157190,Johnny Sutherland,124527,109848,3 +157191,Governante,43211,129340,9 +157192,Spinning Jenny,341689,1363583,16 +157193,Richard Grace,8204,37041,4 +157194,Klara,394403,47785,1 +157195,Tony,19286,129013,10 +157196,Grégoire Duval,247500,28463,0 +157197,Sam,508,25663,20 +157198,Mann mit Cowboyhut,70807,45265,8 +157199,Coach 'Pop' Warner,43812,1369254,17 +157200,Commandant Verdier,162374,54623,6 +157201,Huger,1976,20370,10 +157202,Dillon,375366,1108724,6 +157203,Unteroffizier Lindenberg,19430,1226527,10 +157204,Reporter #2,213681,1771556,32 +157205,Himself,18893,884,12 +157206,Molly,44223,130525,2 +157207,Gibson,20106,33161,9 +157208,Tonico,180371,1173773,5 +157209,Teen with Pinups,6575,96349,33 +157210,Doug Hallerton,17640,82129,1 +157211,Insurance Salesman,28001,99377,10 +157212,Viola Crisantemi,48805,1898616,22 +157213,Jane,75622,1036825,5 +157214,Mata Nui,22259,2391,3 +157215,Scott,4380,36811,11 +157216,Cíntia,254435,123251,7 +157217,Encarni,131932,1093956,8 +157218,Trisha,345922,1783265,35 +157219,Arpita Raj,39839,110197,6 +157220,Old Woman,37929,119139,16 +157221,Stella Peck,13680,26467,2 +157222,Captain Niemi,77068,34514,3 +157223,Woman,72096,1139751,42 +157224,Eno,11577,8962,9 +157225,Zerui (voice),14945,184460,10 +157226,"Andre Charlot, Producer",52959,24320,8 +157227,Lise Winters,245169,543715,6 +157228,Himself,63144,1624625,21 +157229,Slivko,293167,1142720,11 +157230,Kayla,229702,558917,2 +157231,Le rasta blanc,12169,54291,14 +157232,Jim Redbird,104083,96973,3 +157233,Officer Hernandez,318553,1482501,14 +157234,Cherry McMahon,131861,7302,1 +157235,Carla Stanley,264080,161255,0 +157236,Paul's Father,58462,55152,8 +157237,Police Captain,2267,963962,15 +157238,Moema,70815,227543,2 +157239,Ari,46920,72246,3 +157240,Jean-Paul Chance,15468,3784,1 +157241,Orville 'Flash' Perkins,65488,18391,4 +157242,Lindy,88390,58649,11 +157243,,289159,1357683,2 +157244,Dr. Flynn - Intern (uncredited),27973,103789,21 +157245,Nancy,42533,1183536,8 +157246,Sirene,384450,1582293,6 +157247,Sister Helen,34672,90723,17 +157248,Student,56558,1234691,41 +157249,Third Thief,30982,89615,6 +157250,Extra (uncredited),3059,117644,49 +157251,Freedom Lovelace,387957,16523,5 +157252,Free Greek-Potter,1271,90467,36 +157253,,62855,1585139,4 +157254,Raghuvir Pathak,33124,6217,3 +157255,Woman in Opera Box (uncredited),51759,82315,10 +157256,Tillie Maynard,345003,1478275,8 +157257,Il-Gwang,293670,68903,1 +157258,Pappa,30583,572062,3 +157259,Michelina,48805,141112,4 +157260,Miss MacKenzie,8981,56471,4 +157261,Master of Ceremonies at Dance Palace,246299,1036289,9 +157262,William,251232,1001702,0 +157263,P.J. Rooney,194407,30236,3 +157264,Zombie,66925,564327,10 +157265,Herself,61487,7621,4 +157266,Dorothy,121329,1074070,2 +157267,Lucretia Terry,85640,31550,2 +157268,Seraphina,52868,1685446,9 +157269,Himself,133704,11159,2 +157270,Party Guest (uncredited),190269,82315,6 +157271,Jeeves,82237,5831,0 +157272,,288694,1356803,6 +157273,Kaori Ozawa,43635,129707,7 +157274,Terry,52358,72059,1 +157275,Ginny,121354,170600,8 +157276,Hocha,19495,84735,8 +157277,Reichsarzt SS Grawitz,613,39586,34 +157278,Tatiana,54893,58742,4 +157279,Julius,52452,23628,2 +157280,Grand Duke,18651,117735,14 +157281,US marine,10265,64503,12 +157282,Kamidake,14829,112278,13 +157283,Pilot,239566,207090,34 +157284,Anthony,302104,1021416,2 +157285,Cop Nick,2976,982098,18 +157286,Le médecin,55836,223232,3 +157287,Álex,300601,1271600,1 +157288,Stan Li,374473,1766052,21 +157289,Mike,20186,126171,2 +157290,"""Bergus""",382155,1636705,33 +157291,Coast Guard Commander,296524,76544,16 +157292,Dancer,325173,1900163,23 +157293,Ultrasound Tech,239563,61013,20 +157294,"Johnson, fishing customer",22584,94293,7 +157295,Black Infantryman,239566,1457021,32 +157296,Robyn Davidson (young),203819,1318714,4 +157297,Dr. Sander Halvorson,60935,4455,2 +157298,Harriet Vanger,15472,46866,11 +157299,Christine Doinel,259,3507,2 +157300,Peter,31867,77334,5 +157301,M. Castle,43457,85990,5 +157302,Stephanie,31993,8637,6 +157303,Creature 1,338676,1493395,6 +157304,Camille,52049,554877,4 +157305,Rasta 3,348320,1869087,16 +157306,Ed Bronson (blacksmith),111470,95276,7 +157307,Sinhue,24973,26155,4 +157308,Dancer (Red's),57201,1760469,43 +157309,Kate,25921,75671,1 +157310,Pole Dancer,29101,973810,15 +157311,Marion,15712,84429,2 +157312,Lafe Prentiss,270015,89527,5 +157313,Bit Part,94182,1471678,21 +157314,Mr. Peachy,65777,33267,2 +157315,Kong Rong,12289,1297520,15 +157316,Paul,41171,1332125,12 +157317,Maicol,303982,1689170,7 +157318,Female Cashier at Airport,213681,1771554,31 +157319,Bhupati Dutta,35790,550860,2 +157320,Agent Troy Rolands,366045,12055,6 +157321,Olaf,352890,5852,24 +157322,Doctor,256740,129868,8 +157323,Richard Wells,11058,380,2 +157324,The Farmer,13849,60348,11 +157325,Rand,30374,133087,8 +157326,Young Girl,338676,1493397,10 +157327,Debbie Goldstein,15639,1276225,9 +157328,Tourist,333354,1685663,12 +157329,Bikini Babe (uncredited),213681,1771597,66 +157330,Doc (voice),411221,1700955,12 +157331,Recai,140485,582602,2 +157332,Jamie,186227,1249583,14 +157333,Nai Hoi Dam,14818,57274,2 +157334,Lt. Col. Love,279096,1380105,17 +157335,Himself,186079,1168789,3 +157336,Pasha,99738,1153527,2 +157337,Aaron Boyle,358982,1475270,10 +157338,Herself,27637,7823,34 +157339,Young Pierrot Cyr,209293,1192790,8 +157340,,85673,947522,6 +157341,Col. Blake,15807,18586,10 +157342,Kiyone Makibi,14829,112139,10 +157343,Jake,79743,1166041,1 +157344,Chatter Telephone (voice),10193,59357,16 +157345,De Lautruc,1976,120702,18 +157346,Hartmut Mackowiak,91628,17721,0 +157347,Kate Fletcher,84336,12214,2 +157348,Production Designer,14543,9343,7 +157349,Gagen,50674,100893,4 +157350,Elliot Fisher,19754,58406,5 +157351,Man at Station,56154,1421016,33 +157352,Rafal's Father,149511,1103810,7 +157353,Himself,16231,80125,1 +157354,Mr. Freeze,15805,16074,1 +157355,Duck / Side Hack Rider (voice),90110,98549,1 +157356,Henry Hall,425774,1707752,13 +157357,Léon,8071,149009,6 +157358,Frobisher,40633,19414,4 +157359,Queen Wilhelmina,65035,643171,18 +157360,Private Evans,220820,1070188,13 +157361,Gabi,9673,58462,3 +157362,,48882,240566,1 +157363,Bondar,390880,562730,0 +157364,Tony,30996,107478,13 +157365,Mini (at 6),413547,1769812,6 +157366,Rose,334890,1695149,14 +157367,L'homme du village,21348,1838958,22 +157368,Hennie van Oosterom,53472,211068,5 +157369,Doris Mann,5060,40951,6 +157370,Doctor Charles Foster,41505,11755,10 +157371,Mr. Kishan,82243,647022,8 +157372,Regina,42309,87736,6 +157373,Bill Rumer,1259,30316,8 +157374,Harley,32029,151463,14 +157375,Hardy Ragan (as Joseph Sawyer),45215,3341,11 +157376,Kyogen Player #3,616,1593808,26 +157377,Paul Gordon,53950,124783,7 +157378,,225244,18544,8 +157379,Resnick,36288,44827,7 +157380,AIM Ping Pong Girl,68721,1699796,69 +157381,Taxi Driver,74753,143823,10 +157382,Mitch,241254,1388480,17 +157383,Carla,16240,80189,22 +157384,Dylan Matthias,289225,1850508,12 +157385,Flathead,25684,987053,6 +157386,Allergy Doctor,356842,1715051,6 +157387,Sam Weston,9981,61400,7 +157388,Girge,55435,222351,6 +157389,Justine,83079,230454,7 +157390,,8776,1402408,10 +157391,Deputy Winston,298584,93792,7 +157392,Capt. Eduardo Rusca,359105,1022455,3 +157393,Ester,166262,124618,6 +157394,Priest,21583,1304143,12 +157395,Eddie Dugan,26390,1205,0 +157396,Edgar 'Wolf' Larson,227717,103671,1 +157397,Cheung Tin-chi,365222,1183808,2 +157398,Finlay Murray,9756,2467,5 +157399,Lucy Pemberton,118889,120710,75 +157400,Jagger Daniels,63340,9811,1 +157401,Eegah,31287,10460,1 +157402,Le Kabyle,57382,48514,1 +157403,Gun Salesman,6877,52997,10 +157404,Delarue's Gang,266285,1459816,43 +157405,Himself,15258,10403,3 +157406,Medic,5638,81563,25 +157407,Rat Face Blake (as Kyle James),60547,8498,6 +157408,Master Durand,308529,15111,3 +157409,Madame Arnulfi,1427,680,16 +157410,Alisa,84774,99264,1 +157411,Clell Miller,42706,95638,12 +157412,Kumiko Takeshita,37939,111235,1 +157413,,380856,4688,2 +157414,Colonel Bernes,237171,10459,1 +157415,Vittorio,77958,482503,3 +157416,Trevor Rees-Jones,1165,15738,5 +157417,Perp in Precinct,2001,189756,83 +157418,Agag,2734,27655,33 +157419,Olga,114438,1058633,3 +157420,Mooney,166221,170773,7 +157421,Britt-Marie,48145,6657,0 +157422,Marsha Hunter,224251,10767,0 +157423,Lee Yiu-wah's wife,182127,1334856,25 +157424,Sumanth,76788,150687,3 +157425,Newscaster,41574,1583294,16 +157426,Batta no Miyoshi (voice),63486,239452,7 +157427,Tony Rome,26204,4347,0 +157428,Detective,268920,1438305,89 +157429,It,48488,1309679,3 +157430,John Ottway,75174,3896,0 +157431,Bernardo,1969,962981,10 +157432,Soldier #2,80410,1766753,13 +157433,Morgana,12594,73036,2 +157434,Thudd (voice),35177,4201,3 +157435,Cody Alberts,82631,1032439,12 +157436,Yamashita,123961,1752,13 +157437,Cookie Divine / Cavalcade Patron,25625,10375,4 +157438,"Evseev, the policeman",63584,1150902,3 +157439,Brian Tani,18214,65198,6 +157440,Detective,128669,3262,21 +157441,Javier,59858,229938,0 +157442,Jeff Leblanc,128215,5918,12 +157443,Romeo Tan,137321,18472,10 +157444,Ricardo Barroni,37719,10802,4 +157445,Jillker,96118,3857,7 +157446,Kreshnik,82624,1127917,10 +157447,,45935,551671,9 +157448,Security Guard,312221,1590589,66 +157449,Sirovina,110608,110979,3 +157450,Cpl. Lee Imlay,44943,149484,2 +157451,Sun Yi,24756,65739,2 +157452,Neal Mottram,105902,3785,0 +157453,Moa,2180,79255,6 +157454,Grey Mortimer,293625,1343264,5 +157455,Anne Scott,125736,13568,1 +157456,Maartje Pool,98536,81293,9 +157457,Girl on Boat,49853,1648792,35 +157458,Dr. Daniel Platt,44661,160118,3 +157459,,428645,1717349,7 +157460,Jacky Timmendorf,85699,37411,9 +157461,Female Porn Star,15092,135586,52 +157462,Eva (voice),270946,1257563,7 +157463,Beth Colter,41604,10191,2 +157464,Prime Minister of the Peace Government,30527,106496,5 +157465,Tonderai,13823,75779,15 +157466,Cataline Stone,18015,42209,1 +157467,Guido Rosetti,3513,19875,6 +157468,Dwight Crouch,312497,1400941,17 +157469,Joy,28665,133328,7 +157470,Dr. Mengele,19338,72858,2 +157471,Himself,201419,1536689,8 +157472,Bill Reynolds,63096,9865,1 +157473,Franck,122192,45152,4 +157474,Uncle Fa,58414,112988,11 +157475,María,391618,226431,5 +157476,Mr. Bateman,198652,96179,5 +157477,Yuri Shirai,45489,554500,13 +157478,Coach,376252,1572351,8 +157479,Mr. Meacham,294272,4135,5 +157480,Lester Mitchell,35564,160959,12 +157481,Kierownik sali,375742,22931,7 +157482,Old Oliver,264397,1324061,8 +157483,Lilac Young Tough,16320,77870,17 +157484,Dale,10694,1237,6 +157485,IVES,191850,586000,1 +157486,Claire Simon,296626,1164259,1 +157487,Roger Voisin dit Roger-La-Honte,55370,24477,4 +157488,Cole,300667,1496672,10 +157489,Inn Landlord,111960,936927,10 +157490,,222517,1699955,29 +157491,Genevieve,181456,34595,5 +157492,,182799,6681,3 +157493,Hugh,371645,939388,8 +157494,Old Woman,216374,1207886,4 +157495,Pieter,228331,1854,4 +157496,,77673,109516,27 +157497,"Zhou Enlai, young",69310,109809,6 +157498,Steve,358353,87003,6 +157499,Chuck,254188,43774,12 +157500,Librarian,378441,1221046,3 +157501,Red Beard,76170,109750,14 +157502,,47795,10333,6 +157503,Young Biddy,121674,1405914,27 +157504,Usher (uncredited),43522,121098,51 +157505,J.C. Cole,36299,4942,5 +157506,,261508,1305040,4 +157507,Chief Morrow,41574,1084045,12 +157508,Blonde Driving Roadster,4882,14990,26 +157509,Hannah,93263,74276,9 +157510,Lt. Storrow,151310,117449,12 +157511,Reporter on Train,43812,562908,34 +157512,Pranab Halder,413547,1417494,5 +157513,,334175,1464769,8 +157514,Le Blessé Ivre,64944,49277,13 +157515,Noah Pasture,33005,1710214,9 +157516,Gabriela,263115,65421,5 +157517,Jim Beale,347945,141961,1 +157518,Jeremy,84305,11866,3 +157519,"Sidney, the Butler",200447,544585,14 +157520,The Cat,142402,8395,0 +157521,,176321,48044,4 +157522,Eeyore (voice),14885,19540,1 +157523,New Art Teacher,23367,95384,29 +157524,Sonia,39217,81869,2 +157525,Nari,49028,94567,10 +157526,Regis,100770,11840,9 +157527,Brigadista,2143,132916,38 +157528,Fran,28031,4430,11 +157529,Concert Fan,5123,590493,44 +157530,Frankie Pierce,62033,1157671,11 +157531,,310133,1841010,16 +157532,Charlie Chan,28044,13342,0 +157533,Arthur Watson,10610,7400,1 +157534,,186606,1168911,9 +157535,Rodri,72875,568021,10 +157536,Ray Henderson,297265,19775,3 +157537,Undine,43594,1010217,2 +157538,Devani,375366,1361876,8 +157539,Hybrid,105077,125581,13 +157540,Telephone Caller,376579,1322031,8 +157541,Abhijeet Patnaik,20623,86076,8 +157542,Renaud (uncredited),43522,22099,41 +157543,Mark Cardigan,33673,1905,2 +157544,Visor (as Nick Rutherford),156700,1180701,27 +157545,Laureen,213755,1218891,10 +157546,Bud,397422,11516,24 +157547,Himself (archive footage),184363,1903779,7 +157548,Captain Griffiths (uncredited),52440,42574,18 +157549,Wilbur,18682,83435,4 +157550,Spectator at horse race (uncredited),133941,1140946,15 +157551,Gwendolyn (uncredited),43157,121220,10 +157552,Vicar,49500,12517,8 +157553,Child,323675,1381988,46 +157554,Jan Voigt,167330,928150,7 +157555,Abbey,186759,45445,11 +157556,Dobbs,150065,177219,16 +157557,Judge Neal Hefner,46623,30512,13 +157558,Charles E. Murdock,57684,13977,11 +157559,Drill Operator (voice),13640,35035,13 +157560,Alberto Mingolarra,365709,1153755,4 +157561,Joy Longo,245706,73569,32 +157562,Nio (Ibu Soe Hok Gie),39061,1296726,8 +157563,Agent Mitchell,76640,43464,9 +157564,Dr. Susan Hadley,191322,13920,2 +157565,Tokuichi Shôkei,2487,227629,7 +157566,Norbert,9673,19929,7 +157567,Sandrine Cote,60599,35082,15 +157568,Anton Grobler,17654,1148656,27 +157569,Tsitsikore,150223,935011,4 +157570,Silver Dart Shi,263341,1296430,8 +157571,Chandrakant (Chandu),15761,85668,2 +157572,Próspero,264729,1610,7 +157573,Veronique,4930,24301,5 +157574,Madlyn,27019,1531625,5 +157575,Tony the Drunk,331161,1611554,13 +157576,Frank Chambers,25736,81970,1 +157577,Johnny Dalton,84397,4347,2 +157578,Harry Helgesen,55612,222726,7 +157579,Grandmother,47794,1275258,13 +157580,Fleming Meeks,72096,1139750,41 +157581,Moon Grey,69152,103180,2 +157582,Kate,358076,30489,14 +157583,Katsutoshi Ota,56232,146785,5 +157584,Townsman with Sedalia Sheriff,183825,1317660,36 +157585,Judge,128215,14905,7 +157586,Lyle,19053,100557,18 +157587,Kader,266082,69197,5 +157588,Lucky Luke,10870,1844,3 +157589,"Nick Garcos, the Greek",97910,30272,3 +157590,Agent Miller,245703,167564,9 +157591,Jason,89492,41088,2 +157592,Mussolini,61212,522,0 +157593,Officer Johnson,1640,18293,14 +157594,Doris,24578,117134,10 +157595,Little Giraffe (voice),10527,1224835,37 +157596,Asya,31412,556475,2 +157597,(uncredited),145481,106279,16 +157598,Streetwalker (uncredited),17136,34509,11 +157599,Yoshio,36917,1285658,9 +157600,Chad (uncredited),213681,90341,46 +157601,Kate Moore,222461,17236,0 +157602,Shop Owner,157843,60841,32 +157603,EMT,226140,1225906,9 +157604,Neighborhood Friend #1,85350,1327011,12 +157605,Tony,27381,9046,3 +157606,,252845,1071136,9 +157607,Mr. Phelpmitter,242042,60875,7 +157608,Marshal Randon,78318,29600,33 +157609,JSDF Lieutenant Togashi,12636,1131961,3 +157610,Hank,47525,1881559,6 +157611,Sid,69075,85516,9 +157612,Mutant Soldier,127585,1519259,35 +157613,Lunch Room Counterman,153163,1196675,28 +157614,Jerry,56339,15915,4 +157615,Herself,315850,114845,11 +157616,Red Pierre,82313,212689,2 +157617,Ben's Brother,11321,8177,4 +157618,Kenyon,77964,1302263,14 +157619,Cavallo Pazzo,42416,128075,3 +157620,Adam Harris,77583,436771,1 +157621,Lee,73098,59255,0 +157622,,144651,1886692,6 +157623,Gildersleeve,99909,13968,20 +157624,Gangster,27966,1198701,44 +157625,Sonia,166393,1147894,2 +157626,Flight Attendant #1,75174,574091,8 +157627,Thea Lemp Crowley,130507,93970,3 +157628,Rostoloni,29610,15995,10 +157629,Smoke - Red's Horse,377170,1161102,37 +157630,Devine,4380,28633,10 +157631,Lester Ballard,152736,87954,0 +157632,Herself,37514,117845,2 +157633,John Hall,345918,39520,3 +157634,,358901,1009320,5 +157635,Mrs. Jefferson / Woman with Bags / Ensemble,15199,1227233,10 +157636,,44442,1275874,7 +157637,Jeanne Marwan,46738,84573,1 +157638,Himself,406431,1650622,13 +157639,Smoke Frog,1579,17684,11 +157640,Jake,56725,64120,0 +157641,Servant,73348,151864,15 +157642,Minor Role,47404,12431,28 +157643,Claire's Friend,16523,1213279,15 +157644,Willie (as Zachary A. Charles),65282,218449,3 +157645,Celine,14452,1566393,7 +157646,Frances O'Gilvie,131457,20365,2 +157647,Construction Worker,339419,1634017,33 +157648,Lawrence,49354,18071,4 +157649,Luiz (voice),172385,56903,13 +157650,Rupert,156711,1349735,30 +157651,Alan's Mother,38031,1217907,28 +157652,Lester,40466,76453,11 +157653,Gülendam Yaylali,49834,89760,1 +157654,Himself,6963,1223819,9 +157655,Cate Parker,270851,19144,0 +157656,Kenny,82519,1284159,3 +157657,Nicole,67693,6240,1 +157658,Shelby Bale,271164,1322604,3 +157659,Dr. Maria,222935,1431805,8 +157660,EMT #2,101852,1500894,10 +157661,Gail,39013,126488,10 +157662,Leo,369883,1540601,3 +157663,Larry Finkelstein,65509,68842,0 +157664,Policeman,53392,89601,4 +157665,George,336011,38026,8 +157666,Background actor,52454,1630347,64 +157667,,408550,1658137,8 +157668,Rat Judge (voice),126319,13242,30 +157669,Herself,42093,1776536,3 +157670,Antique shop asst. (uncredited),37628,1703326,29 +157671,Корнилов,61966,927730,4 +157672,Police Officer,46885,133798,12 +157673,Daisy,3937,34214,3 +157674,Dr. Imberman,15534,2207,5 +157675,"Cha Young-Jae, second mob boss, Seung-Hee's father",54555,1222431,10 +157676,Rose,49391,992276,14 +157677,Sonia,4948,45523,3 +157678,John Pulham,96107,11169,3 +157679,Emily,52221,1214060,8 +157680,Milt Duffield,37292,50971,6 +157681,Interviewee (as Jewel),32694,51860,7 +157682,Chitra,69401,545010,2 +157683,Sgnt. Walker,54318,41785,8 +157684,Sven,319513,116202,2 +157685,Edele,7304,31167,10 +157686,Manabu Mikami,25716,1059877,11 +157687,Jorge's Mother,102382,1657471,44 +157688,Lena Marina friend,62732,236811,7 +157689,Cashier (uncredited),44869,118258,17 +157690,Pharmacist,393732,7010,8 +157691,Police Officer,379959,1604094,6 +157692,Ms. Darbus,10947,19262,7 +157693,Anja,124979,100987,4 +157694,Goodwin's Mercenary,42764,128674,7 +157695,Officer Mike,15189,1018947,12 +157696,Alfonso - the Cook,31445,9096,14 +157697,Ilsa,43912,135174,3 +157698,Bikini Girl (uncredited),88005,1672731,33 +157699,Prince Jacques,62692,235682,2 +157700,Chencha,14430,36638,27 +157701,Gen,30402,52365,4 +157702,Chick,72856,127560,1 +157703,,38326,229355,4 +157704,Cooper,178809,829372,10 +157705,Lem - Jack's Gang Member (uncredited),59882,30112,12 +157706,Frank Phillips,28452,72888,9 +157707,Tommy,118984,123879,5 +157708,Gus McNeal,111582,102064,6 +157709,Al,37269,65423,10 +157710,Judy Arnolds,16358,10696,4 +157711,Thomas,5915,20258,9 +157712,Lucasta,71866,230060,3 +157713,Smalltown Resident,64328,1937,7 +157714,Tommy's Father,114444,70010,4 +157715,Young Guard,146216,1611250,42 +157716,Andy,88478,61788,3 +157717,L'amie d'Anna,352025,1321012,8 +157718,Boca,16232,18313,2 +157719,Amar,78233,16609,1 +157720,Airport Patron,351242,1569908,10 +157721,Oliver,4257,147,9 +157722,Dr. Ross Harkness,28775,101958,1 +157723,,285135,119151,5 +157724,,137504,1530413,20 +157725,Terapeut,75233,1668753,5 +157726,News Reporter,288281,1878320,9 +157727,Sjukvårdsbiträde,60899,231927,14 +157728,Giancinta,27507,98017,4 +157729,Senatore Leandri,197177,2091,1 +157730,Beatrice,120657,17755,5 +157731,Brad - Corny Collins Council,2976,1232505,48 +157732,Un carcerato cantore,75532,575523,5 +157733,Aihara Fusako,46492,125723,6 +157734,Michael Morgan,228647,14868,0 +157735,Saloonmusiker,1659,18452,16 +157736,Ralph,34652,16133,4 +157737,Sara Divine,44690,175888,6 +157738,Ramón,327383,87015,3 +157739,Becks,31380,1337248,8 +157740,Lady Ada Fitzgerald,53231,1319161,8 +157741,,254869,1423091,47 +157742,Committeeman,56558,95729,31 +157743,Nikawa,18722,236315,39 +157744,Engineer,57201,22250,32 +157745,Spencer,5206,1642,11 +157746,Toyman (voice),13640,31531,3 +157747,LeMarc,78318,4343,11 +157748,Alice,26331,21462,6 +157749,Melissa,237303,180524,7 +157750,Jimuin,18148,1090917,18 +157751,Carolina Cotton,103168,1033085,2 +157752,Balloon Seller,4266,13697,15 +157753,Motorcycle Punk #1,54523,55799,10 +157754,Announcer,57684,103503,15 +157755,Mr Garland,425774,1707914,35 +157756,Pavlaras,301491,1133244,2 +157757,Kesavan,49074,283294,4 +157758,Bartender (uncredited),244786,1360008,50 +157759,Policeman,224204,1270462,9 +157760,Fisherman (uncredited),121006,97999,10 +157761,Gojira,12561,82879,8 +157762,Lotus Land Waitress,32657,21430,16 +157763,"Kubota, Head of Children's Land",19336,1156129,4 +157764,Jane,150117,199523,18 +157765,Mo Potter,43656,2555,6 +157766,l'inspecteur principal,54832,543752,7 +157767,Dr. McFarlane,16410,3673,14 +157768,Van Der Beck,41211,39884,6 +157769,Defense Attorney,27622,30417,13 +157770,Theatregoer,43809,135827,61 +157771,Public Defender,354979,1835242,36 +157772,Hospital Patient in Wheelchair (uncredited),156700,1636759,36 +157773,Sternwood,47342,6701,6 +157774,Donut Cop #2,15092,1777773,39 +157775,Fake Gomez,107596,1647137,13 +157776,Herbert Miesbach,130233,54465,3 +157777,Jacques,28417,41035,7 +157778,Babe Ruth,61225,1230,0 +157779,Announcer,145220,1504910,38 +157780,Jang's Lieutenant,240832,1587629,36 +157781,Marie,52741,58277,9 +157782,Ms. Spencer,428687,1395348,5 +157783,Lady Marian,71066,930690,1 +157784,Kalmár Péter,41689,56299,6 +157785,Nick,44869,94401,25 +157786,Jornalista 2,448763,1848673,42 +157787,se stesso,75336,32312,17 +157788,Camille,35908,114930,11 +157789,Finnick (voice),269149,8396,10 +157790,Captaine Anne Providence,69784,19216,0 +157791,Toll Road,76163,74748,10 +157792,Dora,78705,1018729,1 +157793,Sherri,290999,1361561,11 +157794,Myyjä valokuvausliikkeessä,62900,147770,16 +157795,Nelly Bro,39284,70277,4 +157796,Spark Member,8008,36601,14 +157797,Professoressa di Greco,41427,126449,11 +157798,Mutter Heidi,75969,147643,23 +157799,Anita,31835,108511,9 +157800,Knees Down,104859,52940,2 +157801,The Book,64353,95093,0 +157802,Mme Raffart,10484,364611,10 +157803,Homesteader,333484,1440347,42 +157804,Mahesh,14752,78922,6 +157805,Porteley,9474,4661,12 +157806,Punk #1 (as Brian Degan Scott),16296,1706343,10 +157807,Huriye,157559,97274,3 +157808,Aragorn,1361,6609,1 +157809,Alex Haley,400174,2975,3 +157810,Doctor Bloch,109074,1606822,2 +157811,Edward Wilson Jr.,1247,37632,15 +157812,Frank Allenborg,37462,40952,6 +157813,Policeman,43346,10462,4 +157814,,63859,93672,8 +157815,Bernice,198001,10409,0 +157816,Barbara Holloway,116385,3830,3 +157817,Bailey,348631,1475774,5 +157818,Onkel Albert,231216,67010,4 +157819,Audrey,224243,221553,0 +157820,Detective Winn,8617,17605,7 +157821,La mère d'Anne-Sophie,85429,932036,7 +157822,"Irma, la servante",64407,24771,4 +157823,Football Player,23628,90412,20 +157824,Mrs. Doctor Graves,76681,7631,1 +157825,El Greco (Domenico Teotocopulo),270470,3754,1 +157826,Jim,203186,66538,4 +157827,Armelle,101904,1029285,0 +157828,Adam,395883,7447,0 +157829,Forrest Barrow,71147,1519927,7 +157830,Kiyohiro,12622,46582,6 +157831,Rosen,56491,169469,12 +157832,Ryan's Friend,101325,1027188,18 +157833,Seong-kyeong (voice),396535,1058011,15 +157834,Tía Antonia,122525,1055630,4 +157835,Red Bamboo Scientist #2,3115,235386,13 +157836,Ghost,60120,1188434,0 +157837,Bram,2764,27958,1 +157838,Clay Jeffords,28304,87750,8 +157839,,85836,80865,8 +157840,Hank,37932,9657,0 +157841,German Lieutenant,297762,1171527,59 +157842,Himself,84318,163554,2 +157843,Cristina,235208,235213,13 +157844,Hedy Galili,114779,59174,2 +157845,David,340627,1373733,2 +157846,Little Raymond,109391,1204671,3 +157847,Sen. Frederici,43499,18586,6 +157848,Twitch (voice),10193,167295,24 +157849,Lou Gibson,40761,40212,5 +157850,Female Blooper Anchor #2,187596,1353304,16 +157851,Jong-Il Hong,26955,96659,2 +157852,Pappan (as Cesar Sarachu),28062,115932,3 +157853,Komanisa,56191,65424,4 +157854,Sandri,49712,119996,10 +157855,crickets,72640,1487396,2 +157856,,448847,1247,0 +157857,Mitchell,67102,1053376,9 +157858,George,91391,45398,4 +157859,Wladyslaw Gec,329550,127853,47 +157860,Himself,8079,35793,7 +157861,Gonzalez (as Jose Torvay),44022,30307,5 +157862,Grandpa,55534,18260,13 +157863,Editor #3,14923,143073,29 +157864,Aunt Martha Hubbard,22606,88999,3 +157865,Parker Selfridge,76600,1771,7 +157866,Alien,266433,1206517,10 +157867,Leslie Collier Osborne,53798,8629,1 +157868,Charles Hasso,25407,88319,7 +157869,Detective Gonzales,417406,1683440,2 +157870,West Indies Club Waiter,14589,195086,57 +157871,Hans,212503,1323318,12 +157872,Mr Manners,245700,1222025,39 +157873,Spartak,277237,1743462,13 +157874,Ayan Sanger,393445,85034,1 +157875,Captain Blanche,169298,1333916,12 +157876,Dalia,106256,55654,1 +157877,Cleide,286789,1142407,13 +157878,Dr. Bernie Feld,82696,4495,1 +157879,Pauline/Emilie,156015,38341,3 +157880,Deputy,22602,88981,6 +157881,Thomas Garvin (uncredited),112503,5816,7 +157882,Anne Weber,80220,588688,0 +157883,Juror,27717,102825,12 +157884,Situ Meitang,76349,1338063,12 +157885,,352197,1511744,2 +157886,Mysterious girl (voice),17566,151183,4 +157887,,44104,1164938,2 +157888,Raufer,48778,38898,2 +157889,Salomon,2734,27644,19 +157890,Skid Johnson,105551,4091,1 +157891,Mother Theresa,59051,14794,3 +157892,J.J.,413452,55899,4 +157893,Jay Tee Barrow,95140,59713,6 +157894,Naoji Kageyama,216363,33135,0 +157895,Josh,18598,23497,3 +157896,Arnold Rothstein,43046,34117,5 +157897,Dr. Jarvis,9812,2169,5 +157898,Lieutenant,257534,1297695,4 +157899,Colonel Fineman,38432,1944,6 +157900,Kel Mahmut,31408,556048,0 +157901,Mi-Jin,13855,75914,2 +157902,,65713,1190217,3 +157903,Laura,20312,56895,17 +157904,Olympia,87908,114255,6 +157905,Kowalski,81223,209780,1 +157906,Uber Presumptouous,426230,131870,16 +157907,Jake,20432,34502,4 +157908,Hector,102858,5576,0 +157909,,92060,1897704,11 +157910,Rick,28739,1334173,11 +157911,Ajawac,238985,83912,12 +157912,Ali Baba,18098,17328,9 +157913,Angry Cowboy,188161,1244933,29 +157914,Andy,28178,20376,4 +157915,Doctor Jacquin,86825,73937,9 +157916,U.S. Marshal Stebbins,55604,13977,30 +157917,Sherry Grice,58790,55196,3 +157918,Karen,365753,21858,0 +157919,Tracy,9993,112,0 +157920,Andre Speier,142012,135650,6 +157921,Older Man,41505,156666,23 +157922,,51334,1291746,3 +157923,Lala (voice),105965,74929,5 +157924,Besi,403605,1304642,5 +157925,Bedri,346490,1287127,5 +157926,Annabelle Wallace,399894,94309,4 +157927,Dick,29054,24519,9 +157928,Sissy,117452,87345,2 +157929,Grześ,155325,1211521,1 +157930,Grandma Longneck,24556,35109,4 +157931,Cafe Violinist (uncredited),47653,141132,7 +157932,Jury Forman,186869,1862912,42 +157933,Rebecca Shafran,146238,59620,1 +157934,Angelo Torancelli (The Boy),12412,1457293,19 +157935,Andrew,14976,171375,26 +157936,Cindy,58414,227807,12 +157937,Soapy the Safecracker (as William Phillips),174195,94337,5 +157938,Sung-ki Kim,21966,132776,16 +157939,Jennifer,203351,1854445,11 +157940,Rae,11509,16217,29 +157941,Bruno Heimann,98612,5860,5 +157942,,23452,1204781,4 +157943,Jung Chae-san,363579,25002,10 +157944,Cousin Wife,46891,980193,5 +157945,Maestro,66925,20196,8 +157946,Un joueur de poker,5511,1664789,22 +157947,Forensic Officer (uncredited),331313,1744039,55 +157948,Arzt,76097,129171,10 +157949,Basher Tarr,298,1896,9 +157950,Waterlord,37438,86022,4 +157951,Allison,27417,101544,1 +157952,Victor Feldman,193387,29792,5 +157953,Secret Service Agent,383538,1851869,17 +157954,Janet Bryant,6591,50627,8 +157955,Little George,62132,1452737,8 +157956,Mae Blythe Agridowski,41495,29315,6 +157957,Wife of Cato,34469,1173036,17 +157958,Alliance member,41378,1140990,17 +157959,Hymie King,294016,17401,15 +157960,1st Deconsecration Minister,5638,81557,18 +157961,Robert Uva,243935,206905,15 +157962,Jane Kangaroo / Mother Who / Baby Who / Cindy Lou Who (voice),29233,15098,1 +157963,Rufus,371446,52904,11 +157964,Tony Monetti,20003,34981,5 +157965,Gabrielle,57311,25838,1 +157966,Junkyard Amputee Woman,316154,1842090,15 +157967,Severin von Kusiemski,162877,1144865,1 +157968,Dustfinger,2309,6162,4 +157969,Sister,92663,1802668,10 +157970,Howard,2196,22810,2 +157971,Mr. President,106747,6952,11 +157972,Charlie Gill,51476,13357,4 +157973,Renate Hammelböck,27637,31444,3 +157974,Doctor,193756,1283052,31 +157975,Eden Pedecaris,14815,11850,1 +157976,Agor Singh,99545,29036,4 +157977,Kontrolleur Jörg,130739,44393,6 +157978,Eugenia,104431,1036283,1 +157979,Steven Mottola,44943,58330,7 +157980,Ingrid Fleming,11012,8436,2 +157981,Jenny (as Lori Beth Edgeman),61348,1377992,6 +157982,Boy #1 at Market,1271,1330757,53 +157983,Bruno,42679,227242,6 +157984,Bekir,31413,117640,1 +157985,Bess,122081,221606,6 +157986,Aladeen / Efawadh,76493,6730,0 +157987,,320453,13283,3 +157988,Livy,47525,41292,0 +157989,Smuggler Vasu,169364,1864083,7 +157990,Undertaker 1,22447,95708,12 +157991,Wes,30680,59671,2 +157992,Emma,53953,35800,4 +157993,Michael Frakes,14809,21213,7 +157994,Shambu,341895,1470726,3 +157995,,74674,1445110,10 +157996,Himself (archive footage),2692,22979,0 +157997,Rodrigo,180371,95149,0 +157998,Min-hee,387886,1542545,7 +157999,Aadi,329135,1115225,1 +158000,Laura,10475,3141,2 +158001,Detective Rydell,7304,9046,3 +158002,Zoé,52264,145677,4 +158003,Rioter,326285,1621147,16 +158004,Gibson,921,138877,51 +158005,Thomas,172008,52888,4 +158006,Ellis,20640,29626,12 +158007,Vikram,27621,1213398,4 +158008,Bill Slim - grave digger,192990,189302,8 +158009,Lennart,44552,69645,2 +158010,Mrs. Rose Arbuthnot,196789,133227,2 +158011,Rita Basanez,352498,1431805,10 +158012,Deputy (uncredited),108224,29313,18 +158013,Pyare Mohan,39217,86009,3 +158014,Peggy (uncredited),42941,25414,14 +158015,Storekeeper,43880,34574,10 +158016,Motorcycle couple,8270,54225,28 +158017,Kate,288952,2617,0 +158018,'Blind' Date,412363,1109623,14 +158019,Cook,42871,96302,14 +158020,Un homme en soirée,283726,1649191,23 +158021,,79234,994439,11 +158022,Sam Hernandez,50350,147591,13 +158023,Himself - Guitar,37038,116652,14 +158024,Pastor,8988,1741947,19 +158025,Quixley,14983,993483,7 +158026,Mr. Douglas,52360,1013377,21 +158027,Mrs. Webb (uncredited),95504,102002,22 +158028,Mr. Dwyer (voice),282247,140909,5 +158029,Комариха,20879,86708,10 +158030,Editor Flink,230295,67987,4 +158031,Mevrouw Ellemeet,25797,88044,7 +158032,Count Geza von Közsnöm,335837,44567,0 +158033,Irene,190853,2759,6 +158034,Mr. McSwatt,16659,38665,4 +158035,Galaxy Rose,152393,40924,3 +158036,Ranger Tom,55784,219692,7 +158037,,128237,447207,5 +158038,Hanna,130739,1071512,10 +158039,Entourage Member,197696,93015,2 +158040,Mr. Jauo-Pinto,44877,2957,6 +158041,,227552,1036241,15 +158042,Anne-Laure,9736,13191,8 +158043,Plunkett,17669,105499,15 +158044,The Leningrad Cowboys,11475,1076413,4 +158045,Jørgen,3549,32684,3 +158046,Amber,105768,1200669,8 +158047,Inspector Vishwas Kulkarni,316654,86020,5 +158048,La mexicana,56948,562279,4 +158049,Onlooker at Debate,43806,2936,27 +158050,Tony,163630,79952,0 +158051,Theodora Fitzgerald,53231,8629,1 +158052,Eva,336890,17486,1 +158053,Derek,83588,41556,5 +158054,Holland,273404,170842,10 +158055,Max Ballister,17317,983604,5 +158056,Doctor,48205,47253,5 +158057,Cowboy at Table,188161,1367771,31 +158058,Russian Sniper (uncredited),245891,1553053,32 +158059,Dr. Sato,22899,150307,3 +158060,Hotel Desk Manager (uncredited),33112,96701,17 +158061,Yogoro Sasahara,27031,72540,2 +158062,Ward (as Lee Burton),112503,85982,4 +158063,Inga,360249,1648981,18 +158064,Shichirou,181656,84505,1 +158065,Superintendent Hawk,30934,101720,3 +158066,Evelyn Miesbach,130233,22738,10 +158067,Second Cabbie,32489,2784,12 +158068,Detective,102630,172734,9 +158069,Mollwitz,103396,39854,7 +158070,,188640,86014,13 +158071,Itsuki Fujii - young,47002,144238,1 +158072,Mrs. Lindquist,27034,96817,8 +158073,Jaguar London,25855,1489158,7 +158074,Zelda,352186,1286908,11 +158075,Orderly,48231,1089482,15 +158076,Malin,256593,1295285,3 +158077,Bulma Briefs,39101,122193,8 +158078,Abby,47525,69855,8 +158079,Young Herbert,121674,1674640,28 +158080,Choi Donghyun,211579,84910,2 +158081,Princess Woronzoff,229134,1263759,8 +158082,Kevin Brewer,13991,3272,0 +158083,Luisa,300596,224728,1 +158084,Tammy,284296,66623,5 +158085,Bert,29146,14671,5 +158086,Elisa,325690,586953,4 +158087,Sausalito Piano,153,1185077,14 +158088,Ed McCaskey,18047,1232,5 +158089,Heo Moo-hyuk,362974,1223316,0 +158090,German Hotel Clerk,354287,1184774,46 +158091,Young Recruit,616,1116509,18 +158092,Footman,31993,120755,49 +158093,Reed's Manager,184741,89729,14 +158094,Venezuelan Delegate,435,6073,12 +158095,Frank Reynolds,106573,148843,3 +158096,Des King,45562,79934,10 +158097,Troy Haines,26486,333,14 +158098,,76651,557945,16 +158099,(voice),16137,79562,18 +158100,Jack O'Leary (as a boy),78734,30218,21 +158101,Russian Officer,146216,81508,36 +158102,Dimitri,79048,32089,0 +158103,,49522,1548525,21 +158104,Harvey Crown,93828,973,8 +158105,The Woman,54700,23931,0 +158106,Ludwig Hauptman,80343,66055,1 +158107,Tarquinio Maccaresi,325645,1174722,6 +158108,Penelope,394822,1546864,6 +158109,Luis,82265,115482,12 +158110,Ashley Martinez,32526,62525,8 +158111,Detective Boyer,286709,141034,16 +158112,Jerry Masucci,15934,53940,5 +158113,Harry Jameson,74527,19968,4 +158114,Spunk,72856,1388780,5 +158115,Suor Margaret,155011,1136032,7 +158116,Warni Hazard,25807,30234,2 +158117,MaîtreVivonne - le notaire,55370,1841959,22 +158118,Maw,9287,22556,3 +158119,Kirby - Alien Kid (voice),9982,61426,8 +158120,Freddy Javashankar,447758,1600495,32 +158121,Brick,238398,1272848,6 +158122,Baseball,6935,51493,0 +158123,Rohan Potdar,166225,1172572,3 +158124,Paula Haller,27034,83796,1 +158125,Reginus,49398,1125195,12 +158126,Elliot,225044,84409,10 +158127,Hanni,382125,123455,1 +158128,Doctor,90461,30216,11 +158129,Young Lisa Jobs (uncredited),115782,1340664,16 +158130,Glasses,22551,5621,5 +158131,Pvt. Tokumaru,43407,129508,7 +158132,Alumni Guest Student (uncredited),277710,1557954,39 +158133,Lt. Henry Becker,3145,8223,4 +158134,Mr. Caruthers,85230,290,1 +158135,Shaks,92391,587115,1 +158136,Marfa Timofeyevna,149170,1601624,8 +158137,Mandarin Studio Technician,68721,1265796,33 +158138,Teenage Pete Ross,49521,1272971,27 +158139,Mayor of Kiev / Opposition Leader (archive footage),319092,1890111,13 +158140,,148265,1064957,7 +158141,Fingers,19846,1876864,13 +158142,Jon,13058,1589717,45 +158143,Le réceptionniste,57382,226022,6 +158144,Hana,356191,1522822,9 +158145,Tribunal President,13580,74690,11 +158146,Tourist,11161,68396,4 +158147,Madelon,27635,44881,3 +158148,,38269,1120723,31 +158149,Roblos - the Police Chief,28438,85899,8 +158150,Allie Smith Riggs,246299,287378,0 +158151,Bobby's Friend,2001,990108,76 +158152,Mr. Rader,54752,167178,8 +158153,Young Troll,34204,550359,8 +158154,Buzz Lightyear (voice),10193,12898,1 +158155,,265351,1255122,6 +158156,Fighter,71120,112159,26 +158157,Capt. Spear,46189,20368,10 +158158,Himself,7942,1089425,13 +158159,,261871,225670,9 +158160,Arnold,12279,78341,11 +158161,Winnie Eddington,15044,15556,4 +158162,Diana Waits,26914,932323,2 +158163,Jazz Musician,229297,1418995,22 +158164,Mrs. Clara Shaw,87514,82170,4 +158165,James,50590,117167,4 +158166,принцесса,63449,1853252,4 +158167,Pierre Bléreau,6077,14610,13 +158168,General Yuan Shikai,76349,1173005,5 +158169,Sidney Murdoch,187219,24271,8 +158170,Uncle Monk,18747,231429,23 +158171,"Pietro ""Beppo"" Donnetti",134144,1150903,0 +158172,Student,23966,1352022,13 +158173,Ineke,140894,46468,4 +158174,Meriadoc Brandybuck,1361,16418,7 +158175,Charlie Cameron,11364,15417,6 +158176,Casanova's Mother,122023,95896,12 +158177,Bernard,1599,4483,1 +158178,Willem,67499,237151,5 +158179,Sheriff,16214,103789,12 +158180,Himself - Co-Host / Narrator / Clip from 'Singin' in the Rain',33740,13295,6 +158181,Deputy Al,22602,88980,5 +158182,Ellen Thomas,14422,78405,8 +158183,Rick Michell,124581,114035,1 +158184,Genesis Shareholder (uncredited),365942,1670764,66 +158185,Magistrate,44000,11131,6 +158186,Kunde Optiker Wand,140554,34189,45 +158187,Pretty Pink,340275,1531601,39 +158188,Waitress,242090,1374984,3 +158189,The Form of David Hasselhoff,283995,28238,43 +158190,Benny,37038,116646,8 +158191,,86985,1523037,19 +158192,Billy,13763,1205357,6 +158193,Desdemona,44006,10978,1 +158194,Fat Woman,199463,123464,15 +158195,Russian Scout,19996,1764135,31 +158196,Housekeeper,21481,59195,12 +158197,Young Tommy,42188,142389,8 +158198,,255898,1383059,1 +158199,Mr. Shelton,106136,91725,4 +158200,Reed Bowman,43319,82170,1 +158201,"Lasse, Pär's Father",31304,589209,3 +158202,Ranger #1,25977,102779,9 +158203,Art teacher,27137,175317,11 +158204,Birkenbaum,191536,1189549,4 +158205,Le patron du bistrot,44256,550796,14 +158206,Payton Jory,69903,1213153,6 +158207,Rasta 2,348320,1869090,19 +158208,Stalin,156141,111377,1 +158209,News Anchor Deanna Russo,424488,1191824,57 +158210,Naîve Girl #1,26688,96034,29 +158211,Ralph,10407,27515,7 +158212,,390376,227674,6 +158213,Mrs. McPhail (uncredited),114155,47570,15 +158214,Raft Steerer,43806,131047,29 +158215,Pop Rockland,343972,109725,5 +158216,Danny,174611,212059,1 +158217,Philip Stadling Jr.,27230,1119772,6 +158218,Maitland Ashley (uncredited),6972,1673479,42 +158219,Lem,86603,54564,4 +158220,Sheriff,40799,88652,8 +158221,Pepita,99095,5790,4 +158222,Congo,1116,962560,16 +158223,Luis,370755,946953,12 +158224,Ravencroft Guard,102382,1047655,50 +158225,Mrs. Broomell,15661,13023,7 +158226,Edmond,74878,10268,1 +158227,Pit Boss,265208,20582,11 +158228,Star Roberts,53953,58908,5 +158229,,38154,1248335,8 +158230,Lund,345775,1510579,6 +158231,Gail,18088,57574,5 +158232,Melody,382598,1577002,5 +158233,Kit Kat,9292,16560,6 +158234,Duke,117509,1686799,4 +158235,Romain,171213,2245,4 +158236,Zoony,48852,14069,27 +158237,Stone,54779,151108,0 +158238,Martin Fenton,194101,549520,10 +158239,Additional Voices,15213,1441535,31 +158240,Russian Guard,19996,1385265,26 +158241,,322443,1027457,2 +158242,"Maud, sjuksköterskeelev",60899,231925,13 +158243,Tobe,156597,1427484,25 +158244,Kendra Burroughs,206284,77822,6 +158245,Dee,33339,1024399,6 +158246,Linda Paige Esterbrook,132928,30233,1 +158247,Denise Wokowski,251544,68848,3 +158248,Avvocato Franciosa,379873,586942,7 +158249,,208309,223445,3 +158250,Wilson,241254,139197,8 +158251,Akli,14650,231278,10 +158252,Brother Liu,248376,1622945,22 +158253,Harold Bissonette,28001,13954,0 +158254,Costco Man,146216,1684550,52 +158255,Ephram Yoder,74549,159109,11 +158256,Mahir,236317,109085,1 +158257,James Calendar,252888,5255,4 +158258,Oklahoma City College Debater #2,14047,1392600,23 +158259,Christopher,384160,1180696,1 +158260,Hoi,334557,1617527,10 +158261,Pin,57627,226569,6 +158262,"Capt. Abraham Lewis Kolodny, MD",35392,86368,3 +158263,Autohändler,197175,10620,5 +158264,Zach,279096,1262854,3 +158265,Ангел,146521,1093020,9 +158266,Partier,17483,81962,17 +158267,Jonas,22093,88307,1 +158268,Max,323679,1404086,5 +158269,Marquis de Géran,4279,17578,3 +158270,Supervisor,102444,101851,3 +158271,Mycroft Holmes,342588,40451,2 +158272,Gavin Harris,9815,4941,12 +158273,David,258353,96555,3 +158274,Stormy Llewellyn,179826,56542,1 +158275,Helene Schuster,217412,68368,3 +158276,"Louis, un truand",65887,23480,10 +158277,Victor Raven,87148,35824,0 +158278,,83195,617505,1 +158279,Himself,16378,1428,5 +158280,Romano,44658,5676,0 +158281,The Carpenter (uncredited),80941,1196675,32 +158282,Film Festival Emcee,376660,61187,16 +158283,Louco,278935,55027,5 +158284,Carla's Family #7,2143,132903,25 +158285,Reginald (voice),146381,658,6 +158286,Black and Tan Soldier,1116,56622,10 +158287,Himself,70027,557823,6 +158288,"Hollack, Chauffeur",798,11935,8 +158289,Zack,81274,4976,2 +158290,Annabella,30496,53515,14 +158291,Kumarapillai,134477,585112,10 +158292,Kharitosha,292656,1461121,6 +158293,Anthony Irine,58547,53650,5 +158294,Twittering Female on the Moors,62143,127363,38 +158295,Elron,5516,1509209,12 +158296,Hazel,4960,2206,1 +158297,Maya,19350,155426,15 +158298,Capt. Hugh Chesterton 'Bulldog' Drummond,140472,102687,1 +158299,"Gruen, the handler",84708,8496,8 +158300,Mock Turtle,25694,2638,10 +158301,Volleyball Coach,44945,63238,15 +158302,Doug,70863,19302,3 +158303,Chen Leong,326,11677,12 +158304,Mokie Killion,31127,1055698,7 +158305,,335340,1452469,6 +158306,,63215,1167611,36 +158307,Nancy,42623,71240,2 +158308,Anne Marie,377290,1643038,21 +158309,Mr. Austen,2977,2505,3 +158310,Hara (voice),51739,14837,12 +158311,Matson,59744,15988,9 +158312,Minoru Uchida,27372,145251,6 +158313,Jill,141643,1115146,5 +158314,Nam,25784,143435,4 +158315,Sheriff Taylor,4882,1774939,20 +158316,Shotgun Steve,333385,150,6 +158317,Archbishop,129553,32120,12 +158318,Silvia Godo,81463,1295819,1 +158319,Intercept Officer,10999,2053,18 +158320,Betsy,82929,169263,3 +158321,Fergus,11839,96739,9 +158322,Horatio Biggs,142391,1117265,1 +158323,,364833,228845,3 +158324,Police Driver,47404,1472513,38 +158325,Oko,31372,108021,5 +158326,La mère jeune,39413,145158,8 +158327,Mike Jones,1164,18052,19 +158328,,117550,1111994,11 +158329,John,103432,16126,20 +158330,Julian,26962,94702,4 +158331,Tutmes,211139,14148,3 +158332,Kathy,59744,16201,2 +158333,Jacob Witting,15759,4690,1 +158334,Capt. Thompson,41552,89834,5 +158335,Donald Himmel,17745,42363,12 +158336,Bootlick (voice),27653,167667,11 +158337,Maggie,77246,5578,3 +158338,Emil Blonsky / Abomination,1724,3129,2 +158339,Mary Daisy Dinkle (voice),24238,3051,0 +158340,Skims,46436,15140,0 +158341,Katie,227348,90596,7 +158342,Deputy Lem,90461,1184115,9 +158343,Terry Ann Wolfmeyer,11354,11148,0 +158344,Brianna,11247,84613,7 +158345,Mike Belaggio,9950,60799,12 +158346,Ellis,103731,1034681,1 +158347,Himself,315850,78303,4 +158348,George,39958,22541,2 +158349,Himself,27866,55638,0 +158350,Giovanni Doria,74585,12151,1 +158351,Isis / Julia (voice),89247,1021608,4 +158352,Cort,17240,117659,8 +158353,Mangus,37238,51763,8 +158354,Freddie,221240,23608,8 +158355,Arden's Mother,13551,6721,7 +158356,Saplingjack 2 / Man with Upturned Face,315855,131335,23 +158357,,141819,554175,13 +158358,,445840,224732,4 +158359,François Veber,72822,16927,9 +158360,Aunty Gracey,39356,15298,11 +158361,Teresa,127257,19819,1 +158362,Big Head,17082,116423,18 +158363,Fred Taylor,274060,2672,2 +158364,George,59115,931104,1 +158365,Richard Hartley,29286,30510,7 +158366,Shop Assistant,51276,1638440,12 +158367,Miss Dodd (Kyne's nurse),36786,15942,15 +158368,Nelson Hart,59722,229684,2 +158369,Hisada,53701,31082,0 +158370,Sgt. Augustus Wilks (as Noah Beery),60551,30297,6 +158371,Good Samaritan,85414,1333162,12 +158372,Constable Tewsbury,28421,30145,52 +158373,Rachel Marshall,225285,3971,1 +158374,Esther,377853,1062338,6 +158375,Ricardo Domingos,130900,14979,6 +158376,English voice of Severin,162877,211412,5 +158377,Mona,11142,68326,5 +158378,"M. Roderick Moran, Jr.",43457,585141,6 +158379,Himself,105583,1094057,17 +158380,,57203,306116,2 +158381,Aiden Kater,14147,116573,5 +158382,Ginpei Momoi,104374,142491,2 +158383,McNally,5494,231272,10 +158384,Tommy Sanz,26486,4252,7 +158385,Saša Mašlán,15387,135680,7 +158386,The Girl,27012,1038524,2 +158387,Jewish Accountant,203833,1277224,17 +158388,Dr. Max Patel,19995,95697,10 +158389,Ramirez,1726,62037,25 +158390,Pensionswirtin,54548,1112394,7 +158391,Aubrey Davison,83899,27995,9 +158392,Cat Stevens,41608,15140,0 +158393,Hagen,42512,47172,5 +158394,Gabi,10659,207597,11 +158395,Liri,295058,1438541,4 +158396,Sonny,32139,108941,11 +158397,Major Walters,223655,1044009,6 +158398,Himself,123283,1077699,2 +158399,Gila Levi,16019,583762,2 +158400,Richard Swersey,1382,16861,1 +158401,Simon di Clarendon,61217,820,1 +158402,Teacher,255278,198615,8 +158403,Savannah,84184,93377,6 +158404,Leena,51800,1283568,1 +158405,Amy Noble,87293,1209469,3 +158406,Jude Rawlins,6643,50966,10 +158407,Selva Nayagam,63825,238027,6 +158408,Del Olson,39824,22053,7 +158409,Herb's Wife,31913,1276096,17 +158410,Tia,59678,236698,10 +158411,Sumner,348389,935,2 +158412,Robert Newsome,264644,3905,4 +158413,Himself,18893,151077,4 +158414,Carrie,274479,12519,6 +158415,Arrietty (voice),51739,85176,7 +158416,Adam,204922,1332971,5 +158417,General (uncredited),16442,13969,59 +158418,Himself,15260,147907,5 +158419,,78318,120745,29 +158420,Castor,206514,2449,11 +158421,Louis Bernard,5804,72873,3 +158422,Caliph Alquazar,82430,113,0 +158423,Sheriff,9474,45035,9 +158424,Midori Iwata,73306,124128,4 +158425,Lance Regan,357529,103108,4 +158426,,15464,85693,3 +158427,Antoine,33704,76825,0 +158428,Steve Wozniak,186606,1215525,12 +158429,Blaise,245706,163784,12 +158430,Le Morvelous,37645,239118,17 +158431,Frank Lucas Bodyguard (uncredited),4982,1343823,94 +158432,Japanese Captain,19096,30239,11 +158433,Knud,18908,1186,5 +158434,Sen. James McKinley,274060,30211,4 +158435,Johnny Balraj,316654,85034,2 +158436,Ernest Scarnes,105059,4965,4 +158437,Willoughby Wendling,38769,14968,9 +158438,Chief McClelland,363890,3197,3 +158439,Henchman Steve,377170,117036,11 +158440,Yi-Soo,338729,240145,0 +158441,,238436,545538,3 +158442,María Dolores,331642,1405734,2 +158443,Toulour's Butler,163,76340,25 +158444,Businessman,18548,107405,6 +158445,Pepillo,166207,1396348,1 +158446,Ramon,93116,119883,5 +158447,Marie,36229,32421,1 +158448,Dean Frederick Masterman,79833,162250,5 +158449,Jimmy,72638,120822,26 +158450,Mikalojus Konstantinas Čiurlionis,219666,1204408,0 +158451,Caféhausbesitzerin,24140,146859,13 +158452,Bar Dude,6557,72994,25 +158453,Datou,375599,1557180,7 +158454,Pip,16075,65524,0 +158455,Tabatha,298751,20354,4 +158456,Lil Logan,179603,112365,4 +158457,Joe Harris,63493,17178,0 +158458,Deputy - Jack,107430,99880,9 +158459,,202984,1185269,3 +158460,Richard,171873,6266,2 +158461,Alberto,300596,34021,0 +158462,Bruce Lee,365222,1173223,10 +158463,Diner Waitress,69,1215995,20 +158464,Weed Salesman,26518,932632,7 +158465,Miguel 'Sugar' Santos,17003,86381,0 +158466,Rajan,139582,35782,2 +158467,Horvath,254007,212928,3 +158468,Frieda,82868,39015,3 +158469,Captain Greer,15616,68180,9 +158470,Toby,14695,6858,8 +158471,Caroline,154537,1135404,2 +158472,Thomas Alva 'Tom' Edison,56154,1937,0 +158473,Margot Valldal,336882,212069,5 +158474,Big Thelma,340275,1531598,34 +158475,Mr. Mallory,28155,3142,3 +158476,Ice Harpy,75948,70706,5 +158477,Lincoln,123961,1423166,4 +158478,Grandfather,331962,1681737,23 +158479,Cora,58615,228166,7 +158480,,201429,23048,10 +158481,Sadist,277355,9192,4 +158482,Lyman,85009,1399998,14 +158483,General Shang,329865,21629,4 +158484,Drover / Guest / Waiter (uncredited),6972,162758,43 +158485,Pavel,40218,97935,3 +158486,,335340,1452467,3 +158487,Riccardo Sogliani,104954,3090,2 +158488,Stella Matteï,37645,35917,15 +158489,,63578,1422627,8 +158490,Leader,111470,932309,35 +158491,Rudy Sanders,426670,1548303,17 +158492,Background Break Dancer,10362,1758898,30 +158493,Rough Man,290764,1277017,22 +158494,Grenouille (5 Jahre),1427,17076,7 +158495,Little Boy in Shelter,19996,1764145,42 +158496,Yūgi Mutō (voice),72013,1124535,3 +158497,Barbara,19827,162923,4 +158498,Young Chris Grandy,10096,154694,15 +158499,Lili Oelze,1914,233761,6 +158500,,19552,1275924,15 +158501,Football Announcer (voice),27300,6067,15 +158502,Tomaschewski,218688,1203442,3 +158503,,81220,52119,1 +158504,Martin,40208,101273,1 +158505,Debbie,16214,97720,16 +158506,Himself,9951,1692552,25 +158507,Linda,72766,58356,1 +158508,Assistant Principal,186759,60397,21 +158509,Mrs. Price,20806,87747,10 +158510,Himself,329243,122962,12 +158511,Nacho,131932,1093954,4 +158512,Inspector Forrest,195385,101240,7 +158513,le maître d'hôtel,110573,38376,9 +158514,Renata,12412,21965,4 +158515,Older Woman,74,33500,8 +158516,Loan Officer,13996,176035,9 +158517,Ele mesmo,448763,1848662,29 +158518,Tony,425591,109,1 +158519,Mathayus,13486,78036,0 +158520,Georgio,40139,1146140,3 +158521,Stone (voice),57089,63208,13 +158522,Schreiber,44190,14791,11 +158523,Whisper Girlfriend,293660,1602420,22 +158524,,20646,72455,13 +158525,James Houston,31445,67685,7 +158526,Marianne,54715,39117,1 +158527,Birgit,67499,927675,2 +158528,Ballroom Dancer,137321,1795363,32 +158529,Princess Cadance,201676,74365,10 +158530,Lee Joo-hee,92499,1106149,4 +158531,Himself,32836,109708,0 +158532,Ann Carter,39048,14974,0 +158533,Stella Radner,325133,1581097,24 +158534,Himself,200311,40900,1 +158535,Hija de Macario (uncredited),122019,553157,17 +158536,Big Baby Chips,43700,77755,9 +158537,Smiling Man to Whom Lee Sings,94182,29274,34 +158538,Gustav Morell,15472,55002,10 +158539,La mère de Charlotte,53179,147475,8 +158540,Chow,25074,1134504,21 +158541,Le commissaire Pezzoli,72655,18560,1 +158542,(voice),41077,42077,1 +158543,Neighbor Girl,52360,89732,49 +158544,Buck Cameron / Kyle,345918,172096,8 +158545,Julie,82520,140253,3 +158546,Ibrahim,171698,230023,0 +158547,Fridolf Olsson,128946,550140,0 +158548,Bartender,313922,1732071,21 +158549,David,125623,21769,3 +158550,Seda,167424,1822697,11 +158551,Alva Nykvist,41764,231934,23 +158552,Norah,33792,9072,9 +158553,Detective Worner,227700,1220103,11 +158554,Singer in Brox Sisters Trio,229221,1427101,13 +158555,Ida Magnus Reuter,109716,88569,1 +158556,John Kelly,425774,1217075,12 +158557,Ah-Lung,26005,130500,2 +158558,Takiji,45384,1180452,9 +158559,Rip off Gei,64316,26724,4 +158560,Enid (aged 19),43711,1244126,7 +158561,Dinner Guest,16151,79723,37 +158562,Mr. Pricklepants,213121,10669,5 +158563,Anchor Carla / Female Mutant (voice),123025,15761,15 +158564,Kobata,137504,89177,4 +158565,Felipe Buencamino,359105,1085210,7 +158566,Adult Pete,294272,3496,15 +158567,Joan,47962,1071373,4 +158568,Rey,46773,1523009,19 +158569,Roald Amundsen,8063,738,0 +158570,Background actor,52454,1630326,54 +158571,Kerstin (as Francette Maillol),99361,118187,2 +158572,Lil (as Ella Rose),99361,1140190,4 +158573,Young Maidservant #2,205584,1535059,33 +158574,Victor Webster,235092,20393,0 +158575,Darien,44389,7036,8 +158576,Colonel Neilson,38433,29578,0 +158577,David Dolores Frank,158990,9315,3 +158578,Mobbi,43379,233185,3 +158579,Sam,268920,1755076,85 +158580,Refael,393521,145313,4 +158581,Himself - Dermatologist (as Dr. Tim Jochen),97724,1388659,10 +158582,Wendy,11171,49961,2 +158583,Gargantua,41591,133440,19 +158584,Blacksmith,72984,1764695,10 +158585,,254869,234520,62 +158586,,278458,584196,2 +158587,Raft Instructor,264397,1325581,17 +158588,USS Argonaut Officer,52454,968742,23 +158589,RC,20742,86559,10 +158590,Russel Belial,320343,1333162,3 +158591,Max,16523,80576,0 +158592,Galbreath,43811,17759,44 +158593,Eric,213681,1696150,12 +158594,Henri Ferré dit 'Le Nantais',44256,11544,0 +158595,Mary,49852,18050,0 +158596,Amber Thomas,169730,939358,0 +158597,Dr. Khan,340027,62173,11 +158598,Frank Beardley,27983,4958,1 +158599,Clyde / Lieutenant,72032,38624,1 +158600,Ulloa,19936,34057,3 +158601,Terje's Friend,108017,1341675,8 +158602,Entwhistle,250535,1392499,14 +158603,,288694,1356807,11 +158604,Young Woman,424600,1704657,12 +158605,Verkerke,62297,81141,3 +158606,Ari Up,341689,568371,13 +158607,Joan,147773,2956,7 +158608,Breaker,14869,5419,5 +158609,Kathleen Davis,97598,95624,1 +158610,Mrs. Dobbs,25738,95271,3 +158611,Hermann,268212,39854,9 +158612,Deckard Shaw,337339,976,1 +158613,Goolaj,6972,1673475,35 +158614,Small Role,18651,1467397,43 +158615,Nancy Grey,43811,107445,18 +158616,Rampling,355008,107185,11 +158617,Jaguar Bombay,25855,833802,2 +158618,Blackjack Dealer,11358,1773112,38 +158619,Specs Green,28115,99749,0 +158620,Tommy Smith,42683,16766,9 +158621,Murdered Settler,134238,1271045,20 +158622,Al Atwood,121234,29579,6 +158623,Ikuko Hamada (16 years old),12205,71643,3 +158624,Mr. Aloysius O'Hare (voice),73723,71403,4 +158625,CNN News Reporter,5172,1424325,34 +158626,A German Officer,85715,1438242,7 +158627,Fuzzy Wuzzy Native (uncredited),104485,1276503,13 +158628,A Woman in the Street,315855,1592937,48 +158629,Himself,40863,58797,7 +158630,Martin Snyder,40633,5788,1 +158631,Yakov,383140,1582462,17 +158632,herself,190940,35068,19 +158633,Walter Munsif,224282,1209859,7 +158634,Head thug,46114,1178815,8 +158635,(voice),255772,1603932,14 +158636,Bookie (uncredited),22744,100763,13 +158637,Ángela,136752,985156,8 +158638,Myrtle Allsop,6972,10756,22 +158639,Rapping Boy #2,23367,95367,17 +158640,Outdoors,105059,161449,11 +158641,Harald Vanger,15472,87725,9 +158642,Valet,365942,1670751,27 +158643,Townsman on Porch,134238,990401,25 +158644,,138611,1020746,1 +158645,Carrie,272892,1221716,7 +158646,Superintendent Ray Martin,262338,1239834,11 +158647,Pete Peterson Jr.,48202,102795,3 +158648,Anne-Marie,187602,49070,2 +158649,Inspector Basilio Lérida,401895,102094,2 +158650,Vicki,323929,1724360,4 +158651,Tammi,179812,145615,0 +158652,Professor Spats,42648,9069,9 +158653,Narrator,152113,19536,2 +158654,,84771,545310,5 +158655,Brumaire,284564,130618,21 +158656,Bee Larry King,5559,44127,13 +158657,Douglass,244316,879,5 +158658,Max Vermiglio,82083,1872192,20 +158659,Keiko,98631,1018945,1 +158660,Mater (voice),49013,15897,1 +158661,von Berg,3484,32138,5 +158662,Alison Pratt,8270,54217,21 +158663,Angel,29638,85209,7 +158664,Luigi,128657,147591,7 +158665,Thomas Sanders,67375,30234,4 +158666,Luc Seynaeve,17845,82421,3 +158667,Le beau-père de Juliette,41211,185391,14 +158668,Shelby Shaw,34729,70755,9 +158669,Porter,31993,34609,13 +158670,Paul Quinn Debater #2,14047,936403,20 +158671,Al Alcorn,115782,62562,12 +158672,Clay Ferguson,79094,39020,3 +158673,,63215,1398485,47 +158674,Professor Hornstein,146238,82167,4 +158675,,96035,1356601,1 +158676,Sergeant Mushtaq Saddiq,333352,41044,11 +158677,Mickey Borden (archive footage),124115,81970,11 +158678,Callie Hacker,25473,8492,10 +158679,Himself,417870,183257,21 +158680,,17282,1407405,3 +158681,Taslima Jahangir,15577,73336,7 +158682,,241982,1139712,9 +158683,Philip Ashley,413998,237455,1 +158684,Simbad enfant,329805,1186996,15 +158685,Michael,177979,1323889,9 +158686,Sylvia,225044,1210613,4 +158687,Don,24202,2283,0 +158688,Mitch Adams,321039,1221888,11 +158689,Jaffar,188765,1389068,4 +158690,Slip Mahoney,184328,89989,0 +158691,Gloria,40217,40385,7 +158692,Young Girl,198277,1835618,47 +158693,UK Additional Muppet Performer (voice),145220,1504916,56 +158694,Mrs. Croffman,120259,5738,9 +158695,Townswoman Gossip (uncredited),14615,1370580,20 +158696,Chen Shuen,40081,229303,1 +158697,Natasha (as M. Lobachyova),83614,929849,5 +158698,Yasmine,17495,124512,1 +158699,Sol,61035,1445782,19 +158700,Ulli,64961,15139,1 +158701,Katie,26688,84227,27 +158702,John Spingler,33923,111586,19 +158703,Officer Stanwyck,356500,936404,10 +158704,Yvonne,9655,51989,10 +158705,Frank Riley,113525,7505,3 +158706,Hollis Lucetti,63493,18288,3 +158707,Kitty,41609,105733,13 +158708,Harry Furst,146238,11512,5 +158709,генерал Бурдун,20963,86874,12 +158710,Myron,230182,165721,6 +158711,Ronnie,82655,17192,7 +158712,Cop,240832,226023,26 +158713,Homeless man,396535,1418581,7 +158714,Linda,68750,42707,4 +158715,Police sergeant,22968,89982,6 +158716,Abby,78461,145836,2 +158717,Wooden's Boy,14882,77521,9 +158718,Governor Wallace,11577,4765,6 +158719,Jeff's Mate,31672,934931,6 +158720,Clara (vrouw van herbergier),56344,13506,10 +158721,Leslie Williams,340103,1690480,3 +158722,Lynn,74430,15659,3 +158723,Mateo,98582,1103794,5 +158724,Young Thomas,294254,1719998,28 +158725,Pam Abramoff,45324,11164,1 +158726,Thomas Westfall,132363,61363,5 +158727,Nirjara Bharadwaj,56969,120429,1 +158728,Mrs. Kiefer,58244,1504596,15 +158729,Police Constable,59678,1672707,29 +158730,Mr. Zakaria,271677,10510,5 +158731,Rooselvelt Steele,114577,58924,1 +158732,Heidi Schoichet,17906,7796,2 +158733,Anya,225285,1264235,10 +158734,Slip Duncan,179103,89989,4 +158735,Trey,323929,1423660,12 +158736,Nurse 1,255160,1898251,39 +158737,Lucky,240745,1660461,16 +158738,Party Guest (uncredited),76011,121323,11 +158739,Inspector John Acheson,37710,6162,2 +158740,Additional Voice (voice),177572,1371667,42 +158741,Joe Wilson,112083,3156,0 +158742,Herself - Belarmino's wife,154019,1466041,2 +158743,Bernadette the Dog,1550,1594637,29 +158744,The Woman,37438,87297,2 +158745,MacTavish (voice),197725,80678,2 +158746,Hebron,5040,40619,3 +158747,Geeta,76684,110198,5 +158748,Schatzmeister,10748,13014,20 +158749,Grover Girl,32657,209210,45 +158750,Ragazza nella mercedes,44933,1597738,10 +158751,Mme Barelle,56947,39148,3 +158752,Capt. Steve Lorford,253250,8633,4 +158753,Snips,201676,74359,13 +158754,Himself,26465,153997,7 +158755,Gian Piero,9981,61405,13 +158756,D'Anna Biers (archive footage) (uncredited),105077,20584,29 +158757,Pakistani Porter,14387,117397,16 +158758,Elisha,270403,10917,2 +158759,,244956,125078,6 +158760,Scott Teller,19238,17271,2 +158761,Bub,31150,58552,9 +158762,Mr. Sweet,196257,155874,4 +158763,Zeng Jun,63441,544797,1 +158764,,27053,1460965,28 +158765,Eddy,243683,1278721,3 +158766,Reese Paxton,16997,8544,0 +158767,Coach,10070,9290,1 +158768,Ashe,1969,10480,4 +158769,,25716,1405921,26 +158770,,153420,235724,10 +158771,Elpida,163018,1119900,1 +158772,French Heavy #2,295964,1631708,21 +158773,Sandra,18208,49961,4 +158774,Dean of student affairs,83013,64454,8 +158775,Bell Wing,122662,144100,6 +158776,Orderly #2,146216,1684519,32 +158777,Dr. Stauffer,41206,13786,9 +158778,Simone Marijnissen,94674,27533,1 +158779,Sgt. Roberts,44875,34234,9 +158780,"Paul, garage owner",10834,1494808,5 +158781,George,270383,1406035,13 +158782,Mr. Tuttle,8270,5922,9 +158783,La Flèche,11680,18770,3 +158784,Shorr,82598,22531,14 +158785,Pvt. 'Loudmouth',189197,127048,16 +158786,Johan,3104,21608,7 +158787,Ruth Carter,31675,47567,14 +158788,Lily,377432,1226189,6 +158789,Commissioner James 'Jim' Gordon,15805,34973,6 +158790,Guide Chapelle,39358,20673,8 +158791,Dancer,19995,1207271,55 +158792,Holly Fields,361050,1513594,6 +158793,Thug Sergeant,127560,1205489,27 +158794,Robert Quayle,26768,96176,1 +158795,Taisto Hietalahti,118640,79757,1 +158796,Inoue,40029,124002,2 +158797,Girl sacrificed at the beginning,28071,1336175,9 +158798,,26125,1219758,4 +158799,Ilan,125623,1794006,13 +158800,Pera,71191,51112,3 +158801,Felix,73943,1627909,6 +158802,Bengt,35304,73086,2 +158803,Perry,41759,9632,3 +158804,Matt Lashan,75315,97007,7 +158805,Ali,62630,446906,4 +158806,Narrator (voice),95756,37759,0 +158807,Karol Borowiecki,511,7107,0 +158808,Dr. Joiner,153163,1201461,21 +158809,Marie-Antoinette,68023,73937,12 +158810,Malik,15761,42803,1 +158811,Günther von Kluge,139862,8199,5 +158812,Foreign Minister,155941,136193,4 +158813,Frat Boy,49950,84217,14 +158814,Professor Saldana,48836,33386,10 +158815,Oscar Björk,128900,1068313,12 +158816,Giacomo Boselli,221527,1118739,5 +158817,German Soldier (uncredited),16442,1201662,54 +158818,Cello Vampire #3,346672,1905790,29 +158819,Thomas,237584,9828,2 +158820,Retardoe,16131,79433,25 +158821,Mrs. Hargrove,142402,1117090,21 +158822,Caravaggio,159810,44646,1 +158823,The main shop-assistant,151068,1869238,3 +158824,,98203,939090,27 +158825,Marc,336811,1462340,13 +158826,Blonde,297853,1790427,16 +158827,Leloopa,1790,10767,2 +158828,Mamadou,17630,147042,9 +158829,Himself,191502,1926,8 +158830,Jo,44256,24753,12 +158831,Henry Pulling,5183,8224,1 +158832,Father,149657,1130877,0 +158833,Batgirl,460135,1382995,6 +158834,Willoughby,33541,29642,1 +158835,Edna Curtis,63505,3242,3 +158836,Belinda Ali,69903,88350,8 +158837,Deputy Thorpe,91961,99350,10 +158838,Volodya Smirnov,65142,99272,2 +158839,Pete,121230,3140,10 +158840,Richard de la Croix,175339,50944,1 +158841,Student #3,15909,1076560,8 +158842,Vito,255160,1898232,17 +158843,Sheriff of Slocum / Deputy Thompson / Henchman Dave / Horseman,156335,121254,16 +158844,,22701,1056614,8 +158845,Big Guy,233490,1060474,14 +158846,,32237,16263,6 +158847,Molly,21141,101245,10 +158848,Miguel Santion,319910,96553,10 +158849,Rayna,356752,1442829,1 +158850,Julie Ross,101669,2687,12 +158851,Nobu Tamura (as Toyoko Takahashi),50247,131019,10 +158852,Padre di Veronica,58013,128227,10 +158853,Hank,16240,80186,15 +158854,Deputy O'Mally,13493,39125,12 +158855,Emma Louise Glasgow,93313,14686,5 +158856,Eleanor,17978,13724,2 +158857,Ksiezna,35021,67278,4 +158858,Dr. Hans Halvorsen,29290,141086,4 +158859,,62616,235610,7 +158860,Persian General,1271,1330758,55 +158861,Pat,5767,45455,9 +158862,Debbie Stone,16296,20363,1 +158863,La vendeuse,12446,544684,15 +158864,Ken Stanizke,333352,38085,13 +158865,,17582,1358558,1 +158866,ER Nurse,73565,1338903,21 +158867,'Punch Teacher' Kid,64328,1504920,35 +158868,German Coach,9472,28238,18 +158869,Giuseppe Maria de Macopanza,48145,8744,6 +158870,Jones,44631,153238,8 +158871,Little Charles Aiken,152737,71580,10 +158872,King Nikita,53230,262394,4 +158873,Alien / Couple at Bar,75564,549058,9 +158874,Uncle Ben,102382,8349,26 +158875,Angela,237584,1098706,19 +158876,Anthony Lucas,379441,53185,9 +158877,Angus,10087,63138,9 +158878,Tara Laykin,222890,78237,1 +158879,Donna Mitchler,286532,11850,7 +158880,One of The Nicholas Brothers,108222,103934,46 +158881,Susye,13689,51536,6 +158882,Anka,102362,1272978,23 +158883,Jane,300654,150954,5 +158884,Kin / Buriken,16907,83933,13 +158885,,342163,1020145,4 +158886,Camarero ciego,8088,102228,23 +158887,,31018,31508,7 +158888,Lucienne Ivry,110573,1050000,2 +158889,Rich,65650,134397,14 +158890,Bob Peet,148326,1121652,3 +158891,Man in Store,105059,1683144,49 +158892,Cashier (uncredited),15794,121258,15 +158893,Customer (uncredited),80771,130187,14 +158894,Matt Moran,43046,15998,10 +158895,Defense Attorney,339994,64057,11 +158896,Valentina Ivanova,261101,1304459,6 +158897,Body Guard,2001,207297,71 +158898,Patricia Gorman,407531,1231380,3 +158899,Victor Barker,5413,18993,3 +158900,Steve Ringer,157420,20496,4 +158901,Boy in the Car Accident,10389,551613,25 +158902,Detective Reginald Hammond,138544,557804,13 +158903,Jarvis,26405,108090,10 +158904,Susan Cummings,159469,3360,0 +158905,The General,924,15071,15 +158906,Harry Hamilton-Paul,67794,63611,8 +158907,Dr. Diego,259292,1319185,10 +158908,Gabe,76494,80595,11 +158909,Ela,94527,55980,2 +158910,Young Deunan,11633,124476,7 +158911,Rufus Ingersoll,153165,141510,13 +158912,Mario,100270,234532,4 +158913,Brigadista,2143,132910,32 +158914,Earl Carpenter,98864,9633,11 +158915,Mr. Rothman,11247,21722,24 +158916,Analyst,211387,1294883,7 +158917,Ed the Watchman (uncredited),27035,34209,12 +158918,Himself,19244,84393,2 +158919,Man Working in McMasters' Office,55604,1208020,34 +158920,Himself,390409,1512824,1 +158921,Achim Gundel,140554,45662,33 +158922,Peter,79550,155523,1 +158923,Young Lucie,362057,1567104,8 +158924,,46187,47423,3 +158925,,373200,71051,0 +158926,Doctor,293970,983604,14 +158927,Sheriff Kretzer,310133,4724,0 +158928,Chiu Tai-Pang,220724,66717,3 +158929,Blue Eight,330459,1724987,98 +158930,Vidar Pettersson,141267,1478584,7 +158931,Sa5m's Mom,23367,94309,28 +158932,Frisco,66925,564322,1 +158933,Jonathan's father,290365,1753724,11 +158934,Football Player,43812,1673815,64 +158935,Gustave Lambert,209293,68311,11 +158936,Marcella,302802,45196,24 +158937,,204007,589594,0 +158938,Dock Worker,16131,79424,13 +158939,Tequila Goon 4 (uncredited),339403,1309899,52 +158940,Padjo,1589,29459,9 +158941,Young Rowan,244316,1792249,19 +158942,TeeDee,17940,1293718,10 +158943,Мерим,330878,238204,12 +158944,Beatrice,12617,13577,3 +158945,Jeff,20842,12715,2 +158946,Raymond Barnell,9968,57755,4 +158947,Uniformed Officer,74777,1632441,9 +158948,Kalique Coder (uncredited),76757,1394361,64 +158949,,38154,58665,16 +158950,Taxi Hippie (uncredited),11610,552445,13 +158951,Himself,106256,230352,7 +158952,Mrs. Schleffler,33923,15942,16 +158953,Kevin,14527,10859,0 +158954,British POW,227306,1394469,69 +158955,Officer Greg,343934,1226277,20 +158956,Ernie,22901,39186,3 +158957,Herself,13576,90778,1 +158958,McCann,4982,1218171,33 +158959,Kip Mayfield,30054,105633,3 +158960,Kon,109391,1204679,10 +158961,Trendy Girl,14123,101565,26 +158962,Himself,144680,1847925,14 +158963,Kim (finale),417820,15838,7 +158964,Professor,18392,551517,17 +158965,Natalya Sergeyevna,142770,560127,4 +158966,Master,134350,129706,13 +158967,May Cheung,14016,52575,3 +158968,Stanley Irving,15213,25503,17 +158969,Jackie Gardner,60420,83701,4 +158970,"Albert, Valentine Stationmaster",30708,30299,18 +158971,murasaki,54548,238265,8 +158972,Cheston,36691,44735,2 +158973,Matthew,235260,583919,28 +158974,Waitress,45132,1270862,35 +158975,,264264,552084,6 +158976,Irene,17317,429557,9 +158977,,76202,3266,0 +158978,Custodio Interrogatorio,25376,1331813,26 +158979,Wemmick,121674,1125,6 +158980,Omelette Man,82655,928456,4 +158981,Cavalcade Patron,25625,77250,16 +158982,Aaron,414453,1088483,6 +158983,George O'Donnell,75626,83976,0 +158984,John Elliott,148326,1121713,7 +158985,Madonna,16135,79506,11 +158986,Lisa,89481,110080,10 +158987,Taxifahrer,277968,1454086,48 +158988,Karen Hunter,84104,1077358,1 +158989,Claw Miller,128795,45222,4 +158990,George Scanlon - Ballot Stuffer,250332,137405,48 +158991,La Precious,15092,1435946,44 +158992,Suor Vincenza,155011,129964,5 +158993,Alokas iivanainen (as Samuli Edelman),55756,92428,6 +158994,Arnold Pepperell,16182,59074,6 +158995,Duke,9655,38673,1 +158996,Dilek,31412,1202109,4 +158997,Mother on the Bus,40807,86530,24 +158998,Madea / Joe / Brian,380124,80602,0 +158999,Sugar Wolf,43700,77759,1 +159000,Death,54415,1717,3 +159001,Julia,4516,37763,7 +159002,Fritz,262945,26498,6 +159003,Scary Man,7871,1294402,13 +159004,Traffic PC,54804,1637459,20 +159005,Lt. Barry,133716,83915,6 +159006,Franz Deutscher,203833,1193609,19 +159007,Max Baer,921,14886,3 +159008,The doorman,120605,1381547,4 +159009,Morris,54804,189433,9 +159010,Mrs. Laureen Faulkner,3081,31505,5 +159011,Gelman,27573,1214054,5 +159012,Android 18,126963,122660,18 diff --git a/demo/install/resources/movies_csv/Movie Crew Map.csv b/demo/install/resources/movies_csv/Movie Crew Map.csv new file mode 100644 index 0000000000..a5e66d629b --- /dev/null +++ b/demo/install/resources/movies_csv/Movie Crew Map.csv @@ -0,0 +1,130712 @@ +id,Job,Department,Movie,Crew Member +1,214,12,11704,12881 +2,70,12,435,54267 +3,265,12,129,19595 +4,214,12,35543,89702 +5,283,12,32044,10415 +6,214,12,11859,1091 +7,214,12,10005,61844 +8,265,12,292625,1095116 +9,214,12,69668,4700 +10,214,12,144111,13570 +11,163,12,613,44314 +12,214,12,15671,143059 +13,163,12,544,7409 +14,163,12,1726,113674 +15,214,12,229134,1179391 +16,283,12,13279,2324 +17,214,12,14881,19423 +18,372,12,332411,39822 +19,70,12,19757,1521323 +20,265,12,187028,1728939 +21,214,12,19244,13234 +22,283,12,10134,1408462 +23,163,12,244786,1395180 +24,214,12,14510,27992 +25,265,12,43976,1493011 +26,214,12,14088,1316314 +27,265,12,77585,1624239 +28,283,12,10761,16363 +29,214,12,94725,57777 +30,214,12,124517,1615472 +31,265,12,68193,80014 +32,214,12,131360,9078 +33,214,12,870,13246 +34,214,12,47540,1045125 +35,144,12,64928,1570440 +36,265,12,30666,1207501 +37,283,12,270774,1127910 +38,214,12,2110,59 +39,214,12,393443,1157604 +40,214,12,428493,1729571 +41,283,12,258480,15426 +42,265,12,10918,67468 +43,214,12,5172,41893 +44,214,12,28665,3954 +45,265,12,90616,1139978 +46,265,12,444713,1714235 +47,265,12,522,7145 +48,283,12,4516,28690 +49,214,12,259075,935976 +50,283,12,188161,7494 +51,214,12,80775,29634 +52,265,12,310602,42095 +53,283,12,1690,33932 +54,214,12,127864,1128094 +55,322,12,47342,1552878 +56,322,12,14372,11268 +57,214,12,12525,35087 +58,214,12,46872,70567 +59,299,12,333371,1636661 +60,283,12,31880,31464 +61,214,12,13596,448477 +62,214,12,187596,35180 +63,214,12,393263,8007 +64,214,12,167810,9250 +65,265,12,205891,1188277 +66,283,12,10950,19680 +67,214,12,58428,31268 +68,283,12,302042,1318157 +69,283,12,450530,495 +70,214,12,325263,92935 +71,214,12,285946,148571 +72,214,12,11832,70639 +73,214,12,256836,1300939 +74,214,12,42094,14090 +75,265,12,12279,59839 +76,283,12,26688,45841 +77,163,12,25983,1015884 +78,283,12,983,14746 +79,265,12,31385,1378402 +80,163,12,13542,1050713 +81,265,12,9260,57048 +82,214,12,147876,8502 +83,265,12,329286,552254 +84,214,12,10145,18311 +85,214,12,13551,3953 +86,265,12,62837,10809 +87,214,12,35292,36804 +88,283,12,24750,1221 +89,214,12,98349,1017353 +90,265,12,62046,66865 +91,283,12,205587,5328 +92,283,12,28176,3275 +93,214,12,601,489 +94,214,12,30666,1207500 +95,283,12,395992,6044 +96,265,12,469172,1862611 +97,300,12,2525,25807 +98,214,12,100770,97570 +99,214,12,64847,58160 +100,214,12,4520,9642 +101,214,12,10724,190 +102,214,12,94352,2710 +103,265,12,45527,1896719 +104,300,12,414910,1765638 +105,265,12,283995,113674 +106,214,12,339994,955583 +107,265,12,22803,85561 +108,300,12,114790,1568005 +109,265,12,17473,1330242 +110,214,12,227156,1211382 +111,283,12,10804,668 +112,214,12,293516,35114 +113,265,12,214756,570785 +114,214,12,163,1888 +115,214,12,287587,1031201 +116,214,12,43641,89596 +117,389,12,266856,1746699 +118,214,12,109466,21411 +119,265,12,2976,17219 +120,214,12,106635,4123 +121,283,12,146233,19689 +122,214,12,41312,3607 +123,265,12,228066,1371042 +124,265,12,42739,11687 +125,214,12,30959,552307 +126,163,12,755,37334 +127,283,12,241258,6479 +128,214,12,21371,1102569 +129,214,12,285270,1126626 +130,214,12,10529,61156 +131,214,12,381645,517 +132,265,12,131194,2942 +133,265,12,20648,62270 +134,283,12,9841,59815 +135,283,12,17144,60055 +136,283,12,10567,7903 +137,265,12,8669,50770 +138,214,12,337339,11874 +139,265,12,39982,1363170 +140,265,12,3549,19353 +141,214,12,340881,1468976 +142,214,12,10326,2487 +143,163,12,336890,1494787 +144,283,12,19912,13061 +145,214,12,43139,1167476 +146,271,12,57749,1411220 +147,214,12,28340,100492 +148,214,12,146216,24309 +149,265,12,187028,1728937 +150,265,12,325385,132792 +151,214,12,200,2387 +152,214,12,338079,1363151 +153,393,12,5123,1781848 +154,214,12,64454,37313 +155,214,12,39024,1580060 +156,214,12,258480,465 +157,214,12,236737,27451 +158,214,12,329724,1033926 +159,214,12,7288,34883 +160,214,12,244458,39120 +161,214,12,18586,39823 +162,283,12,6557,2532 +163,283,12,13596,9545 +164,283,12,392660,1073037 +165,231,12,336890,1206449 +166,271,12,30361,1769249 +167,214,12,83389,1062013 +168,393,12,294272,1660709 +169,265,12,428687,1731668 +170,265,12,16175,3027 +171,70,12,97910,29098 +172,265,12,122019,1031507 +173,214,12,63498,37569 +174,271,12,73562,928260 +175,214,12,352327,1209172 +176,70,12,254193,1324074 +177,214,12,13437,16787 +178,283,12,274504,19689 +179,265,12,11880,43676 +180,163,12,241258,1544261 +181,214,12,10972,67683 +182,214,12,173467,1211133 +183,265,12,40990,1567888 +184,214,12,150065,1141546 +185,214,12,142412,1117183 +186,214,12,11449,69495 +187,283,12,18387,8864 +188,214,12,117550,98755 +189,283,12,148,2635 +190,214,12,340101,9021 +191,214,12,206296,1188751 +192,214,12,13946,938102 +193,214,12,16997,107183 +194,283,12,9289,10340 +195,265,12,210047,1292995 +196,265,12,26936,73143 +197,214,12,121234,26024 +198,322,12,109439,109994 +199,70,12,773,575076 +200,144,12,105509,1682630 +201,283,12,9717,91366 +202,283,12,16005,3965 +203,265,12,110146,43146 +204,214,12,9451,17173 +205,214,12,48202,102429 +206,284,12,34231,1460045 +207,283,12,53714,1544252 +208,214,12,5559,35666 +209,214,12,13834,64756 +210,283,12,6977,1484 +211,265,12,287903,1443683 +212,214,12,70554,10058 +213,127,3,45527,1587976 +214,214,12,450530,1305790 +215,283,12,638,7731 +216,265,12,330947,1095303 +217,315,12,74,109994 +218,265,12,345637,7879 +219,214,12,43499,231250 +220,214,12,55347,131399 +221,283,12,11017,999 +222,283,12,13539,4952 +223,283,12,8869,6052 +224,265,12,3309,1529469 +225,214,12,481,6524 +226,214,12,266425,1121630 +227,393,12,11397,1552531 +228,214,12,15762,7681 +229,214,12,93562,231258 +230,70,12,32274,938427 +231,265,12,12599,73046 +232,214,12,40139,19707 +233,214,12,345922,1116283 +234,214,12,338421,26767 +235,214,12,316654,223853 +236,214,12,293660,10859 +237,214,12,30307,96725 +238,271,12,326359,1046477 +239,214,12,53209,1124670 +240,265,12,407559,175511 +241,364,12,12273,1705305 +242,265,12,330947,1018660 +243,214,12,18417,58103 +244,265,12,9905,589662 +245,214,12,376501,1471435 +246,214,12,60599,21706 +247,283,12,227306,6410 +248,214,12,10999,1091 +249,214,12,3037,4219 +250,214,12,239566,339 +251,214,12,14931,16298 +252,214,12,43434,1117767 +253,283,12,76494,3965 +254,214,12,28656,46644 +255,214,12,158947,1351006 +256,265,12,27711,19707 +257,214,12,10269,10400 +258,315,12,73835,1606277 +259,214,12,234155,1058959 +260,265,12,187028,1728940 +261,265,12,298584,1116092 +262,265,12,949,639 +263,283,12,2604,3191 +264,214,12,235199,488 +265,283,12,29101,3923 +266,214,12,108282,1043479 +267,214,12,4133,5724 +268,322,12,312174,1400608 +269,214,12,17295,589385 +270,214,12,6687,17083 +271,283,12,29345,103585 +272,214,12,14069,1693275 +273,214,12,56906,1031253 +274,265,12,83714,18311 +275,265,12,6557,50461 +276,214,12,244801,1280059 +277,265,12,25501,6476 +278,283,12,1665,1262 +279,214,12,405670,1853243 +280,214,12,12528,915 +281,265,12,22998,1123036 +282,214,12,2017,20689 +283,214,12,2084,21341 +284,70,12,52936,1617 +285,214,12,172385,5718 +286,265,12,5206,119105 +287,214,12,347031,1602137 +288,271,12,169656,48769 +289,265,12,2503,29401 +290,265,12,834,3958 +291,214,12,199647,17051 +292,283,12,2567,2242 +293,214,12,10053,62559 +294,283,12,10440,1046 +295,163,12,9426,1439500 +296,265,12,308174,18904 +297,265,12,35052,16928 +298,283,12,101998,190936 +299,214,12,26298,95058 +300,144,12,35651,32508 +301,283,12,10491,2031 +302,214,12,1595,17046 +303,70,12,83015,1062061 +304,214,12,11358,54242 +305,283,12,341689,5669 +306,214,12,205891,88039 +307,265,12,297762,211962 +308,163,12,2280,23965 +309,265,12,381015,1659284 +310,214,12,17577,1423828 +311,265,12,241855,1093640 +312,271,12,18937,61955 +313,214,12,63360,1214396 +314,315,12,38978,112460 +315,265,12,32609,16513 +316,283,12,62764,19689 +317,214,12,407448,51686 +318,214,12,4338,17231 +319,214,12,4478,34695 +320,265,12,14295,1516277 +321,214,12,82626,914286 +322,214,12,61934,30103 +323,70,12,339419,1650223 +324,265,12,24825,1078097 +325,214,12,1717,2260 +326,283,12,146216,3965 +327,214,12,376501,53074 +328,214,12,288281,130750 +329,372,12,297814,1023606 +330,214,12,28273,15216 +331,70,12,21955,1330206 +332,300,12,2105,57084 +333,70,12,340215,1429480 +334,214,12,8247,11695 +335,393,12,274479,1608767 +336,214,12,307931,53077 +337,283,12,89591,1121428 +338,214,12,89591,59853 +339,214,12,12129,12863 +340,214,12,256474,1245126 +341,283,12,394645,1580124 +342,163,12,390747,1392864 +343,214,12,1926,20029 +344,265,12,433244,1731670 +345,214,12,23566,92085 +346,214,12,103433,30055 +347,283,12,157843,59668 +348,214,12,60285,11438 +349,315,12,3989,34528 +350,315,12,98066,1412973 +351,214,12,125413,6349 +352,271,12,286192,1711832 +353,214,12,10467,9168 +354,214,12,2001,20567 +355,70,12,171308,1743854 +356,214,12,334527,1611776 +357,318,12,203351,1854470 +358,265,12,435,15364 +359,283,12,409,5489 +360,214,12,26688,938041 +361,214,12,193756,13240 +362,214,12,14467,52763 +363,214,12,418437,66963 +364,283,12,809,12090 +365,265,12,24469,466 +366,372,12,56292,75476 +367,214,12,1966,2360 +368,265,12,85984,938837 +369,287,3,64215,1354342 +370,265,12,98066,991706 +371,214,12,86391,1152090 +372,214,12,268174,1316665 +373,265,12,13092,1123130 +374,70,12,58251,1880052 +375,214,12,12599,65431 +376,214,12,395982,532053 +377,214,12,2144,3392 +378,214,12,258193,6869 +379,214,12,403431,62861 +380,214,12,77875,7213 +381,283,12,141733,1318157 +382,214,12,44303,5953 +383,214,12,315335,674 +384,214,12,108017,362320 +385,214,12,10491,1428 +386,265,12,16077,467 +387,214,12,54287,97710 +388,265,12,37534,25139 +389,265,12,28068,37498 +390,283,12,55694,4022 +391,214,12,130948,56035 +392,214,12,82448,51478 +393,265,12,274479,1279645 +394,265,12,27526,1307 +395,214,12,312221,207419 +396,286,3,443007,1763908 +397,214,12,340881,1468978 +398,287,3,42487,29801 +399,214,12,1381,376 +400,214,12,42614,109853 +401,214,12,331161,1142953 +402,214,12,37084,108999 +403,271,12,46567,100407 +404,322,12,331313,1445855 +405,283,12,171337,1318817 +406,163,12,316154,29217 +407,265,12,12767,12631 +408,283,12,227156,39123 +409,163,12,46738,1051320 +410,214,12,5289,115362 +411,214,12,9354,12065 +412,214,12,213110,1197578 +413,283,12,68737,2031 +414,283,12,184345,1521110 +415,214,12,10257,64431 +416,322,12,188102,1845786 +417,283,12,127380,57673 +418,214,12,9550,607 +419,214,12,20648,62268 +420,214,12,41610,582412 +421,315,12,290764,1554971 +422,265,12,10735,58071 +423,271,12,809,1678654 +424,265,12,875,13335 +425,283,12,374475,5747 +426,144,12,42683,1613579 +427,265,12,112722,1258193 +428,214,12,257345,1525141 +429,283,12,228205,5914 +430,214,12,8932,931687 +431,70,12,21159,91792 +432,70,12,11902,15256 +433,214,12,44754,2226 +434,214,12,336804,54318 +435,127,3,339403,1463691 +436,214,12,838,1776 +437,265,12,142012,1460574 +438,214,12,75300,431491 +439,214,12,75300,1219685 +440,372,12,120478,1072868 +441,214,12,78691,35088 +442,214,12,102629,226940 +443,265,12,42188,2036 +444,214,12,96724,2236 +445,214,12,215373,1097495 +446,214,12,25684,103129 +447,283,12,26486,1034748 +448,265,12,4520,41377 +449,214,12,26558,28283 +450,214,12,28938,8209 +451,214,12,9343,23555 +452,70,12,4147,10955 +453,70,12,24453,1392678 +454,214,12,253235,6890 +455,271,12,21849,5259 +456,265,12,401164,298 +457,265,12,11788,66129 +458,299,12,2675,1674669 +459,214,12,244117,1539389 +460,214,12,256092,1325840 +461,163,12,38965,82346 +462,265,12,284288,1763415 +463,214,12,102428,45545 +464,283,12,114577,1031357 +465,214,12,15325,20212 +466,214,12,194101,1547727 +467,265,12,80280,37950 +468,214,12,9918,770 +469,214,12,983,9578 +470,214,12,10770,25320 +471,265,12,24752,122194 +472,265,12,20438,5952 +473,70,12,30995,1547063 +474,265,12,245891,94456 +475,283,12,322922,1317159 +476,214,12,27230,55127 +477,214,12,11133,10058 +478,70,12,31083,141474 +479,214,12,9956,60912 +480,214,12,339342,1168717 +481,214,12,84496,101887 +482,283,12,223551,1261648 +483,265,12,48231,69883 +484,300,12,114790,1568006 +485,214,12,10491,56158 +486,214,12,9950,60789 +487,214,12,834,3952 +488,322,12,703,10445 +489,214,12,20304,21355 +490,214,12,218443,7592 +491,265,12,149883,1108649 +492,214,12,138191,1108168 +493,214,12,13681,70190 +494,214,12,40087,171170 +495,214,12,229610,1082564 +496,283,12,6980,752 +497,214,12,10937,2871 +498,265,12,525,8859 +499,214,12,10915,4986 +500,214,12,332283,1106694 +501,283,12,38027,1263 +502,118,12,638,9531 +503,214,12,340488,87260 +504,214,12,321315,1406412 +505,214,12,9835,35510 +506,283,12,11137,4023 +507,265,12,245706,287 +508,283,12,219466,9002 +509,389,12,12,1556631 +510,214,12,3172,20842 +511,265,12,15179,76370 +512,322,12,1586,1611812 +513,283,12,19338,2678 +514,214,12,17175,65816 +515,214,12,426230,82885 +516,214,12,8583,9181 +517,265,12,10351,5140 +518,214,12,8340,1566431 +519,214,12,11058,17451 +520,372,12,82929,27709 +521,283,12,20210,13585 +522,26,12,8870,1464344 +523,214,12,1991,5911 +524,214,12,10747,14777 +525,214,12,1628,1650 +526,214,12,47540,139080 +527,271,12,15697,1584291 +528,214,12,5319,42804 +529,283,12,224944,1572857 +530,265,12,378607,473485 +531,283,12,50126,1692491 +532,265,12,40688,1542943 +533,265,12,237756,1116278 +534,214,12,12144,39056 +535,214,12,58757,12736 +536,214,12,252102,1292992 +537,214,12,27276,67078 +538,265,12,25674,961264 +539,214,12,21214,77356 +540,322,12,20438,1447831 +541,283,12,2100,3965 +542,265,12,72912,1037908 +543,271,12,12102,1180131 +544,286,3,179105,1288894 +545,214,12,24978,92938 +546,214,12,283686,969242 +547,322,12,354979,1835298 +548,372,12,297762,8748 +549,214,12,300090,1384816 +550,214,12,58790,107301 +551,265,12,26390,15366 +552,214,12,7288,22302 +553,283,12,14019,76258 +554,265,12,60665,6895 +555,214,12,49018,51613 +556,214,12,82696,928632 +557,127,3,142145,1116420 +558,283,12,54660,8337 +559,265,12,14979,16830 +560,265,12,284289,961101 +561,372,12,336882,1478705 +562,300,12,82448,927991 +563,144,12,11206,1461989 +564,372,12,153,19770 +565,214,12,76829,32071 +566,265,12,15749,68612 +567,163,12,444713,1768802 +568,265,12,33005,65643 +569,214,12,3587,13563 +570,214,12,10973,11030 +571,265,12,25941,1203105 +572,265,12,48609,14093 +573,265,12,43473,89266 +574,265,12,332411,63425 +575,214,12,1073,15245 +576,265,12,381737,1228498 +577,265,12,56669,24052 +578,70,12,180929,7690 +579,214,12,5257,42382 +580,286,3,36264,591257 +581,214,12,12796,68424 +582,106,3,337339,1552517 +583,265,12,2666,4767 +584,214,12,7288,7399 +585,283,12,195796,1318157 +586,214,12,10394,12954 +587,214,12,42701,514 +588,283,12,62213,1302 +589,214,12,387886,1770588 +590,160,3,408381,1464310 +591,214,12,256347,84348 +592,283,12,1420,1302 +593,214,12,9471,12842 +594,214,12,27036,43777 +595,214,12,43727,1555491 +596,286,3,239845,1035162 +597,214,12,299,2000 +598,265,12,378441,64047 +599,227,12,7220,1762663 +600,70,12,9289,2108 +601,214,12,10476,6482 +602,214,12,75761,576216 +603,265,12,307081,200043 +604,214,12,8340,54607 +605,265,12,43923,1397322 +606,265,12,147773,1242109 +607,214,12,26505,56234 +608,283,12,1624,2399 +609,265,12,94348,1015921 +610,214,12,13075,234847 +611,214,12,23805,7768 +612,393,12,263115,1757619 +613,214,12,270007,1327891 +614,265,12,23628,90417 +615,214,12,257345,59998 +616,231,12,40466,1760121 +617,372,12,55612,559147 +618,70,12,26946,52140 +619,265,12,251227,1194301 +620,214,12,64972,6887 +621,163,12,312831,63371 +622,271,12,42231,1359433 +623,214,12,32143,10829 +624,214,12,287483,53092 +625,265,12,18493,937749 +626,214,12,103689,2335 +627,315,12,243935,1414919 +628,283,12,606,668 +629,214,12,40346,35452 +630,214,12,152113,1121053 +631,214,12,5748,4590 +632,214,12,298787,1376941 +633,265,12,7326,52448 +634,265,12,42683,2663 +635,214,12,308,4447 +636,265,12,405473,1464519 +637,271,12,48885,99947 +638,283,12,38554,6119 +639,265,12,2046,7779 +640,214,12,48594,1121989 +641,214,12,18,60 +642,214,12,983,7751 +643,214,12,6977,51737 +644,265,12,76163,45830 +645,214,12,144229,15196 +646,214,12,213914,177669 +647,322,12,1966,1733783 +648,283,12,116979,59668 +649,265,12,332411,43583 +650,214,12,258480,590074 +651,265,12,117251,1074867 +652,214,12,8916,56269 +653,214,12,2309,23765 +654,214,12,2608,27240 +655,214,12,97794,1128300 +656,214,12,345775,108842 +657,283,12,9902,76014 +658,231,12,332411,60862 +659,283,12,101998,933333 +660,283,12,9475,2242 +661,70,12,9613,80684 +662,300,12,368006,1640309 +663,214,12,85644,12011 +664,318,12,194,1551975 +665,70,12,29805,10589 +666,283,12,127560,37281 +667,283,12,8619,11295 +668,214,12,3513,16589 +669,265,12,2907,20169 +670,265,12,39103,122194 +671,283,12,36758,3686 +672,265,12,68347,20181 +673,372,12,1481,75963 +674,214,12,7299,2209 +675,283,12,198227,118448 +676,7,3,339403,1635338 +677,214,12,857,9987 +678,214,12,1498,147407 +679,214,12,113148,999821 +680,271,12,11517,51449 +681,214,12,243940,84348 +682,214,12,430365,60 +683,214,12,278706,1640386 +684,214,12,8619,2690 +685,265,12,76101,55084 +686,265,12,88794,51385 +687,214,12,93313,13570 +688,214,12,8080,9183 +689,214,12,85414,199939 +690,163,12,26636,93599 +691,163,12,207270,1518048 +692,214,12,44287,1125211 +693,265,12,21380,937463 +694,283,12,9918,60504 +695,214,12,9593,40437 +696,214,12,16876,37334 +697,214,12,392011,1554530 +698,283,12,296524,3965 +699,318,12,11639,1825213 +700,214,12,27230,1409438 +701,163,12,10440,6990 +702,214,12,94671,41892 +703,283,12,36691,2952 +704,214,12,35572,1662184 +705,214,12,30792,107011 +706,214,12,173205,77234 +707,214,12,4291,544325 +708,214,12,178809,985636 +709,231,12,84340,1388233 +710,214,12,183962,39886 +711,265,12,9613,40148 +712,322,12,8414,1891691 +713,214,12,378485,1193081 +714,393,12,11247,1556515 +715,70,12,28000,68417 +716,265,12,262522,53866 +717,214,12,35790,1172912 +718,265,12,68193,12477 +719,214,12,8368,54741 +720,70,12,166621,1020761 +721,283,12,270303,1397716 +722,214,12,7304,6893 +723,265,12,125510,126270 +724,214,12,13834,75870 +725,214,12,53358,1384217 +726,393,12,279690,1630968 +727,315,12,11046,952485 +728,265,12,144680,1125891 +729,265,12,213681,72106 +730,265,12,315010,1443051 +731,265,12,94671,4506 +732,214,12,270303,1397714 +733,265,12,244539,103 +734,214,12,24273,1899 +735,265,12,307931,212 +736,214,12,245891,52605 +737,70,12,320588,1324839 +738,214,12,4953,201 +739,286,3,45527,23808 +740,214,12,20439,1346095 +741,214,12,8368,54743 +742,214,12,8014,1193 +743,283,12,3784,1263 +744,265,12,23739,1120770 +745,265,12,83599,20182 +746,214,12,45132,5952 +747,283,12,76203,6410 +748,265,12,110992,1050962 +749,214,12,345775,1130169 +750,214,12,147903,18573 +751,214,12,38509,68602 +752,265,12,9835,15307 +753,214,12,115054,11030 +754,214,12,128169,1086442 +755,283,12,306966,1400876 +756,283,12,7454,1113 +757,70,12,307479,1409854 +758,214,12,78568,50516 +759,283,12,263115,1526589 +760,265,12,1595,17860 +761,70,12,68193,1127860 +762,231,12,278632,1188274 +763,70,12,9059,57526 +764,283,12,11056,59396 +765,265,12,203321,1463176 +766,214,12,98870,1728384 +767,265,12,14505,1658500 +768,214,12,52475,17012 +769,322,12,9716,1661560 +770,214,12,25407,124504 +771,214,12,345922,1718785 +772,70,12,260001,1324839 +773,265,12,10425,16830 +774,214,12,29798,63185 +775,322,12,9716,1661558 +776,283,12,9296,1341396 +777,372,12,398786,1665419 +778,127,3,339403,76674 +779,364,12,77246,1328165 +780,283,12,59678,16363 +781,214,12,338312,64818 +782,214,12,33107,55085 +783,214,12,18937,65410 +784,283,12,50463,897 +785,214,12,91459,1869709 +786,265,12,3291,31518 +787,393,12,273481,935493 +788,283,12,24392,91561 +789,214,12,154972,43710 +790,265,12,231145,62161 +791,265,12,220809,1205890 +792,214,12,2180,22324 +793,214,12,64678,969958 +794,70,12,52661,46618 +795,214,12,2124,12882 +796,283,12,8467,7415 +797,214,12,286873,1516045 +798,283,12,24420,54777 +799,214,12,110992,56840 +800,214,12,4986,2993 +801,214,12,17074,1211813 +802,214,12,33592,64058 +803,214,12,227262,50355 +804,70,12,13205,1115032 +805,283,12,425774,1707972 +806,265,12,230179,1504427 +807,214,12,310431,1492072 +808,214,12,77859,1127437 +809,214,12,75336,565407 +810,214,12,68387,32733 +811,214,12,227306,10950 +812,214,12,51284,7592 +813,214,12,21208,1130038 +814,214,12,4887,40027 +815,214,12,10929,57134 +816,283,12,181533,5363 +817,283,12,277710,2952 +818,322,12,77949,1402101 +819,265,12,203819,37273 +820,283,12,10050,961165 +821,265,12,328111,169082 +822,214,12,310123,126765 +823,265,12,15592,20622 +824,231,12,392386,1239154 +825,214,12,56292,15344 +826,214,12,36797,35696 +827,214,12,9987,61495 +828,214,12,337339,12835 +829,372,12,41171,985774 +830,393,12,167,494 +831,70,12,47194,27737 +832,163,12,11172,1477266 +833,214,12,458428,1820251 +834,214,12,12453,64637 +835,214,12,184155,1167225 +836,265,12,60125,1073639 +837,283,12,20,2324 +838,214,12,180305,36425 +839,214,12,128169,135380 +840,372,12,73099,568079 +841,214,12,203264,1193160 +842,214,12,77875,582624 +843,214,12,264553,1149935 +844,214,12,7555,16486 +845,214,12,210910,1194701 +846,283,12,1966,5328 +847,214,12,8064,53852 +848,214,12,408024,1847626 +849,324,3,91673,1327678 +850,214,12,103620,20674 +851,214,12,13574,17735 +852,214,12,60599,74534 +853,214,12,330947,1089521 +854,214,12,12103,376 +855,163,12,203321,1876194 +856,265,12,6,20784 +857,214,12,179154,1040898 +858,214,12,10550,18691 +859,283,12,70500,1120181 +860,283,12,18209,10340 +861,265,12,469172,1608746 +862,283,12,62630,1325 +863,214,12,241254,84876 +864,163,12,271404,1133331 +865,214,12,175998,109704 +866,283,12,10803,7511 +867,214,12,9272,57094 +868,265,12,2288,4183 +869,214,12,62764,54419 +870,271,12,151826,1172636 +871,214,12,69315,227330 +872,214,12,179105,1288893 +873,127,3,339403,1635196 +874,372,12,82865,1402054 +875,214,12,140554,34189 +876,283,12,23367,13585 +877,214,12,42120,26767 +878,214,12,31522,3778 +879,265,12,45527,876526 +880,265,12,186869,14639 +881,322,12,262522,1460865 +882,265,12,10425,65111 +883,214,12,102630,56032 +884,265,12,2567,6193 +885,214,12,310602,1511511 +886,283,12,283701,4406 +887,214,12,266400,1313042 +888,265,12,3577,33039 +889,372,12,241742,1034735 +890,315,12,77459,64399 +891,214,12,95504,1470181 +892,283,12,11232,4023 +893,214,12,75,510 +894,283,12,22881,1720 +895,70,12,35651,17424 +896,214,12,9882,2162 +897,214,12,15616,41551 +898,322,12,18,75804 +899,265,12,390747,1126877 +900,214,12,417820,231713 +901,372,12,37958,53476 +902,214,12,52661,21024 +903,214,12,340103,66074 +904,283,12,28340,1795355 +905,283,12,122928,1099013 +906,214,12,228205,25046 +907,70,12,140554,53849 +908,283,12,45556,1127865 +909,214,12,146238,6193 +910,283,12,435,6052 +911,214,12,99567,13340 +912,271,12,3962,34389 +913,214,12,74585,12329 +914,214,12,84318,1084960 +915,214,12,12289,11404 +916,265,12,10947,57614 +917,214,12,180383,1388082 +918,265,12,34506,1247747 +919,283,12,348631,435006 +920,265,12,7555,59839 +921,265,12,280092,62775 +922,214,12,334557,1190198 +923,214,12,67748,549312 +924,393,12,273481,1559873 +925,265,12,17590,6928 +926,214,12,82929,61490 +927,265,12,40229,1477837 +928,265,12,26405,1479442 +929,283,12,12113,474 +930,265,12,9877,59961 +931,265,12,95015,4123 +932,214,12,244786,66726 +933,265,12,9836,29018 +934,265,12,57683,45830 +935,214,12,324440,1481998 +936,214,12,22448,88802 +937,163,12,280092,1125685 +938,214,12,28031,59623 +939,214,12,13794,75589 +940,322,12,240832,1412921 +941,214,12,263341,66125 +942,163,12,166221,1053572 +943,214,12,6440,5325 +944,214,12,261112,1361335 +945,309,12,8619,1619107 +946,214,12,58878,237158 +947,283,12,2503,3501 +948,265,12,18620,66983 +949,265,12,37958,231829 +950,214,12,167810,23485 +951,214,12,1640,137064 +952,214,12,188927,15346 +953,265,12,71670,1182913 +954,318,12,116463,1691500 +955,214,12,2080,7200 +956,265,12,377447,1335456 +957,265,12,47911,1555469 +958,214,12,286521,24205 +959,214,12,39519,35320 +960,214,12,18493,68994 +961,214,12,6978,94089 +962,214,12,4443,35152 +963,214,12,411741,119592 +964,214,12,338518,1396576 +965,283,12,14534,25830 +966,163,12,24405,956462 +967,214,12,12584,49929 +968,322,12,857,1413042 +969,214,12,91067,933088 +970,283,12,74,495 +971,214,12,323426,87347 +972,214,12,130055,53206 +973,214,12,71805,69253 +974,214,12,7515,897 +975,214,12,48210,65836 +976,214,12,12763,56996 +977,214,12,29475,68754 +978,214,12,52728,89167 +979,271,12,331354,1086794 +980,163,12,163,1117840 +981,265,12,12144,488 +982,214,12,20357,9157 +983,265,12,429238,931970 +984,214,12,35626,74671 +985,214,12,21159,70567 +986,214,12,334074,11472 +987,283,12,12102,954445 +988,214,12,24831,7723 +989,70,12,298865,1498423 +990,283,12,142216,14845 +991,70,12,59181,558148 +992,214,12,111479,77121 +993,265,12,394822,951484 +994,214,12,4140,34956 +995,318,12,121598,1659970 +996,283,12,70006,59932 +997,283,12,19898,1314066 +998,265,12,16281,69888 +999,322,12,213681,1771618 +1000,214,12,9890,14929 +1001,214,12,200505,8858 +1002,214,12,53714,88661 +1003,214,12,190955,1030402 +1004,163,12,263115,58357 +1005,283,12,9877,1379594 +1006,283,12,364410,7786 +1007,265,12,105,488 +1008,214,12,239562,80602 +1009,163,12,378441,1797398 +1010,214,12,158015,865 +1011,283,12,20766,6410 +1012,214,12,77067,939448 +1013,214,12,323675,9778 +1014,214,12,9314,57265 +1015,271,12,13965,76214 +1016,214,12,379,1224 +1017,163,12,14295,1516279 +1018,214,12,311764,1643985 +1019,283,12,260030,1045437 +1020,214,12,53693,135949 +1021,283,12,365942,60665 +1022,214,12,367412,1287961 +1023,214,12,25241,93415 +1024,265,12,231145,1047303 +1025,70,12,31044,62045 +1026,214,12,18902,436621 +1027,214,12,241239,1468519 +1028,214,12,45807,10520 +1029,283,12,52736,1544205 +1030,214,12,3078,29341 +1031,214,12,285908,936318 +1032,265,12,70500,6341 +1033,214,12,55347,236605 +1034,214,12,12599,73048 +1035,322,12,55846,1404870 +1036,322,12,33613,1455312 +1037,214,12,356326,1874685 +1038,271,12,382125,1678086 +1039,214,12,161880,149374 +1040,283,12,1715,4023 +1041,265,12,10550,36618 +1042,214,12,174958,67 +1043,214,12,3089,11435 +1044,214,12,336882,934171 +1045,265,12,8672,35007 +1046,214,12,11259,339 +1047,214,12,85411,20720 +1048,393,12,5915,19156 +1049,214,12,11104,57617 +1050,315,12,16938,1292380 +1051,283,12,10440,59702 +1052,322,12,84226,1418445 +1053,265,12,365942,29015 +1054,271,12,1942,1324933 +1055,214,12,41552,109727 +1056,283,12,10491,1433225 +1057,283,12,109451,7903 +1058,265,12,17258,6449 +1059,214,12,25855,1489164 +1060,214,12,336890,1375896 +1061,214,12,1267,16844 +1062,283,12,15489,19679 +1063,214,12,267852,1388531 +1064,372,12,1966,75477 +1065,265,12,43935,10953 +1066,214,12,28001,120449 +1067,214,12,460135,105642 +1068,283,12,9441,2242 +1069,214,12,18736,380639 +1070,265,12,15013,77693 +1071,322,12,613,1425868 +1072,393,12,9425,1196709 +1073,265,12,75174,1046155 +1074,214,12,14676,102232 +1075,283,12,228108,1176357 +1076,265,12,94671,1040895 +1077,265,12,336004,230179 +1078,214,12,691,10467 +1079,265,12,15584,1667221 +1080,214,12,2397,21479 +1081,283,12,24469,1319622 +1082,214,12,157424,1301656 +1083,265,12,38554,38415 +1084,214,12,13763,1614967 +1085,163,12,428687,1731666 +1086,265,12,257344,1473410 +1087,214,12,82626,68773 +1088,214,12,262945,12737 +1089,265,12,47212,4170 +1090,265,12,4478,2691 +1091,214,12,332979,8215 +1092,70,12,81687,88972 +1093,214,12,109354,41049 +1094,283,12,8064,53857 +1095,214,12,10740,66731 +1096,271,12,42542,1486902 +1097,271,12,41298,1507536 +1098,214,12,45098,1311157 +1099,214,12,10693,2106 +1100,163,12,285181,33505 +1101,283,12,27259,9002 +1102,265,12,24238,1309225 +1103,265,12,1896,19809 +1104,265,12,27196,65305 +1105,214,12,2087,10770 +1106,265,12,16066,38656 +1107,70,12,27814,1856484 +1108,214,12,13925,7879 +1109,214,12,14977,24953 +1110,265,12,71859,1619473 +1111,214,12,28345,8502 +1112,265,12,16092,79286 +1113,214,12,335778,1186631 +1114,283,12,2140,21937 +1115,214,12,259997,1302510 +1116,265,12,201676,1183747 +1117,214,12,28,3170 +1118,214,12,4253,35771 +1119,214,12,21828,88115 +1120,265,12,9950,60791 +1121,214,12,25855,57274 +1122,372,12,79113,127499 +1123,214,12,13162,1209428 +1124,283,12,70667,3081 +1125,265,12,277710,99435 +1126,315,12,145135,1417868 +1127,265,12,72912,1037909 +1128,265,12,10918,67467 +1129,214,12,138522,5268 +1130,214,12,29116,103074 +1131,70,12,34598,17444 +1132,214,12,104528,1138337 +1133,214,12,340187,1567534 +1134,393,12,256347,1533529 +1135,265,12,2186,7623 +1136,265,12,256962,1819153 +1137,265,12,244786,66727 +1138,214,12,64944,64628 +1139,300,12,18282,14654 +1140,70,12,297853,1790463 +1141,214,12,204255,71773 +1142,214,12,364088,1523171 +1143,265,12,252171,1454384 +1144,271,12,154575,1674762 +1145,93,12,435,1392108 +1146,271,12,47324,1620546 +1147,265,12,202241,2862 +1148,265,12,94727,13335 +1149,287,3,44960,563116 +1150,214,12,390343,1798947 +1151,214,12,9959,2997 +1152,214,12,340027,6885 +1153,378,3,339403,1463809 +1154,318,12,13205,1815507 +1155,70,12,40368,1494667 +1156,214,12,72105,570789 +1157,214,12,41495,126676 +1158,70,12,14537,237158 +1159,265,12,20842,99116 +1160,265,12,291865,1401939 +1161,214,12,227973,1302779 +1162,283,12,25643,1034748 +1163,214,12,280092,2127 +1164,214,12,26880,1602278 +1165,265,12,38404,89508 +1166,214,12,45610,1125217 +1167,283,12,52454,1205579 +1168,214,12,30054,24939 +1169,214,12,10103,1351 +1170,70,12,16410,71023 +1171,265,12,352327,1491841 +1172,214,12,35,57572 +1173,283,12,71859,3192 +1174,265,12,21208,967446 +1175,70,12,393732,1780240 +1176,214,12,75174,571133 +1177,214,12,193756,96357 +1178,265,12,19255,52015 +1179,214,12,101852,151263 +1180,283,12,11370,1581158 +1181,271,12,118,1855225 +1182,214,12,118677,1018472 +1183,144,12,76871,18567 +1184,163,12,257345,1543589 +1185,214,12,23739,33096 +1186,283,12,7980,474 +1187,265,12,11788,66130 +1188,283,12,11472,2874 +1189,214,12,17144,1436528 +1190,318,12,10733,1417408 +1191,299,12,15,1733276 +1192,214,12,29872,30174 +1193,214,12,228647,1098541 +1194,271,12,21135,1125487 +1195,265,12,29083,102871 +1196,214,12,16997,939362 +1197,214,12,132939,100578 +1198,70,12,392271,1765170 +1199,214,12,5206,18828 +1200,214,12,45562,999544 +1201,214,12,29896,1518453 +1202,214,12,214086,2210 +1203,265,12,20287,56967 +1204,265,12,281590,1340883 +1205,214,12,10425,65113 +1206,283,12,158908,1046729 +1207,318,12,59115,1830891 +1208,214,12,9286,21585 +1209,300,12,13965,76211 +1210,283,12,242,3275 +1211,163,12,283445,1412973 +1212,265,12,14254,30383 +1213,231,12,169934,1187909 +1214,265,12,345922,10830 +1215,271,12,43379,1606804 +1216,214,12,73144,568336 +1217,214,12,339419,16398 +1218,265,12,11446,69485 +1219,214,12,28068,97634 +1220,283,12,242,3276 +1221,372,12,5393,43086 +1222,107,12,311324,1790518 +1223,214,12,19957,30174 +1224,265,12,1833,19315 +1225,214,12,19855,18250 +1226,358,12,6933,1117311 +1227,214,12,12220,3026 +1228,265,12,343173,1448353 +1229,214,12,7514,52838 +1230,265,12,9030,43095 +1231,283,12,278632,1425466 +1232,214,12,140607,489 +1233,214,12,9472,7399 +1234,214,12,24757,43901 +1235,214,12,29825,68602 +1236,214,12,298,1888 +1237,214,12,106049,1149939 +1238,214,12,8270,4504 +1239,265,12,68721,1117748 +1240,265,12,226188,128979 +1241,265,12,29368,120131 +1242,70,12,98277,1849131 +1243,70,12,31428,1258116 +1244,214,12,427095,127920 +1245,39,3,339403,1609288 +1246,214,12,14164,57607 +1247,372,12,69974,557664 +1248,389,12,15653,1767061 +1249,163,12,170279,1665916 +1250,318,12,11096,957566 +1251,265,12,15045,51962 +1252,214,12,87516,21035 +1253,214,12,76640,10952 +1254,214,12,12289,1117854 +1255,214,12,15258,83341 +1256,265,12,13550,3986 +1257,214,12,323674,1281424 +1258,214,12,11664,49301 +1259,283,12,28665,3965 +1260,163,12,14644,21171 +1261,214,12,46261,10828 +1262,214,12,19338,583076 +1263,283,12,3587,1530 +1264,265,12,19235,84799 +1265,214,12,323673,1282778 +1266,265,12,764,11359 +1267,283,12,13567,1426219 +1268,265,12,11979,41551 +1269,214,12,9483,57659 +1270,214,12,92257,1756246 +1271,372,12,336804,1574315 +1272,214,12,43670,548408 +1273,214,12,283384,1429300 +1274,214,12,22279,996989 +1275,214,12,5516,5174 +1276,214,12,310137,1537529 +1277,265,12,315837,12183 +1278,214,12,32577,10876 +1279,214,12,10077,21479 +1280,37,3,368006,1640328 +1281,283,12,399790,3501 +1282,214,12,5279,9789 +1283,214,12,26566,6987 +1284,265,12,258480,1531843 +1285,214,12,414977,1200655 +1286,214,12,211,13529 +1287,265,12,169934,40343 +1288,265,12,16356,21085 +1289,214,12,5393,10905 +1290,214,12,176,2146 +1291,214,12,3682,33650 +1292,214,12,15935,966288 +1293,214,12,1833,380 +1294,214,12,267466,1293598 +1295,214,12,43635,129699 +1296,214,12,126889,578 +1297,299,12,63144,1450298 +1298,214,12,21671,313123 +1299,265,12,86825,6488 +1300,322,12,10491,1433626 +1301,271,12,27599,1644997 +1302,271,12,37645,144848 +1303,265,12,122081,622844 +1304,265,12,267935,489 +1305,214,12,28425,11431 +1306,214,12,51209,77804 +1307,214,12,276906,1331165 +1308,214,12,312831,56662 +1309,214,12,329712,5425 +1310,214,12,312221,16483 +1311,300,12,41733,74567 +1312,214,12,405882,560279 +1313,214,12,334538,27578 +1314,265,12,300669,23541 +1315,271,12,16410,20135 +1316,214,12,2323,7681 +1317,265,12,14945,1123071 +1318,265,12,174188,18382 +1319,214,12,28902,1671051 +1320,283,12,59935,5137 +1321,265,12,193,2384 +1322,265,12,9475,4184 +1323,214,12,117531,94305 +1324,214,12,253337,1288836 +1325,214,12,18776,69028 +1326,265,12,159667,1849489 +1327,265,12,44945,22815 +1328,265,12,10950,1639187 +1329,265,12,10070,1892 +1330,283,12,157,1826 +1331,214,12,62764,166278 +1332,231,12,71859,1020053 +1333,214,12,9385,57544 +1334,265,12,9950,60784 +1335,265,12,111839,51807 +1336,265,12,85837,1023344 +1337,214,12,33339,5382 +1338,318,12,398633,1623935 +1339,214,12,118677,232004 +1340,265,12,10070,6627 +1341,214,12,6,71417 +1342,70,12,49013,8103 +1343,214,12,34078,139915 +1344,265,12,47057,138004 +1345,214,12,982,13776 +1346,70,12,37936,12478 +1347,283,12,9358,561 +1348,265,12,340101,1865911 +1349,214,12,4703,39012 +1350,214,12,83732,52358 +1351,214,12,41591,122906 +1352,265,12,15902,1196244 +1353,214,12,12289,118732 +1354,214,12,251555,968298 +1355,214,12,332794,20074 +1356,214,12,24397,1385922 +1357,372,12,109379,1597020 +1358,393,12,298584,1619735 +1359,214,12,11232,409 +1360,265,12,131764,14972 +1361,214,12,100669,1632791 +1362,265,12,172828,1155520 +1363,231,12,332411,52469 +1364,283,12,68629,67702 +1365,283,12,445993,1311274 +1366,283,12,277713,1454623 +1367,214,12,188598,1186918 +1368,214,12,34652,113582 +1369,283,12,259975,12048 +1370,144,12,43806,9107 +1371,214,12,85350,6510 +1372,283,12,352164,1400876 +1373,214,12,325205,1426715 +1374,163,12,9716,6990 +1375,283,12,8470,545 +1376,70,12,29263,55099 +1377,286,3,298787,1376946 +1378,214,12,180929,1660384 +1379,271,12,113255,1758275 +1380,214,12,402672,78751 +1381,214,12,31867,19282 +1382,265,12,296225,590735 +1383,214,12,58080,3778 +1384,163,12,10320,49907 +1385,70,12,4147,1470940 +1386,265,12,126127,3238 +1387,214,12,102,1016 +1388,163,12,8342,22812 +1389,214,12,28063,99525 +1390,214,12,36432,115355 +1391,265,12,59861,60246 +1392,231,12,362703,1560220 +1393,265,12,244458,1125216 +1394,265,12,376660,109429 +1395,265,12,23128,8970 +1396,393,12,284053,1543191 +1397,214,12,122081,79533 +1398,214,12,182127,1167602 +1399,283,12,56596,1077406 +1400,163,12,284289,1462037 +1401,265,12,203264,84107 +1402,214,12,26149,1011476 +1403,318,12,30666,1832368 +1404,214,12,18209,13284 +1405,70,12,246403,1161120 +1406,300,12,300596,1718169 +1407,214,12,52867,1931 +1408,265,12,251227,1163462 +1409,271,12,269173,1400095 +1410,163,12,9426,948498 +1411,214,12,31532,29595 +1412,265,12,29611,1086463 +1413,286,3,441728,1424338 +1414,283,12,325189,38700 +1415,283,12,177047,39123 +1416,214,12,16137,1098470 +1417,283,12,1691,37013 +1418,265,12,10406,6935 +1419,214,12,27035,4123 +1420,265,12,14372,7681 +1421,265,12,239566,1114890 +1422,283,12,86768,117009 +1423,214,12,35025,113612 +1424,265,12,12182,23541 +1425,214,12,39435,12278 +1426,265,12,11428,41355 +1427,283,12,49009,61860 +1428,300,12,14430,1521659 +1429,214,12,249,3388 +1430,214,12,64942,964477 +1431,283,12,209406,1314170 +1432,214,12,60106,56788 +1433,214,12,6023,47285 +1434,214,12,84569,115613 +1435,265,12,302699,1397011 +1436,393,12,9785,1575862 +1437,214,12,104251,137495 +1438,283,12,16432,42469 +1439,214,12,298228,98865 +1440,265,12,94671,1106272 +1441,283,12,19765,1602144 +1442,283,12,1579,17674 +1443,410,12,634,1767782 +1444,214,12,266030,20432 +1445,265,12,38303,38415 +1446,214,12,47312,6601 +1447,265,12,8617,59923 +1448,214,12,10162,64048 +1449,214,12,14945,1123063 +1450,214,12,47794,71097 +1451,265,12,225728,59839 +1452,214,12,4285,4526 +1453,283,12,287636,1336706 +1454,214,12,13551,3956 +1455,283,12,109251,1533595 +1456,271,12,129359,932284 +1457,214,12,327935,121422 +1458,214,12,21849,2746 +1459,214,12,338063,1581566 +1460,322,12,1271,1394759 +1461,214,12,2525,25799 +1462,214,12,139455,94460 +1463,283,12,29825,2952 +1464,265,12,11979,8299 +1465,214,12,322518,585882 +1466,265,12,173205,533023 +1467,265,12,86709,869 +1468,265,12,276906,1331170 +1469,214,12,9542,1439500 +1470,283,12,16164,14912 +1471,265,12,188927,1106751 +1472,283,12,10999,1097 +1473,214,12,274990,559146 +1474,214,12,331075,1136808 +1475,70,12,236395,1014034 +1476,283,12,11979,15326 +1477,214,12,6980,51757 +1478,283,12,265226,1310818 +1479,70,12,1278,69561 +1480,265,12,29698,18073 +1481,214,12,335053,931206 +1482,265,12,8840,56060 +1483,265,12,243568,1313919 +1484,214,12,38322,17144 +1485,265,12,225728,1307 +1486,300,12,10364,1461646 +1487,265,12,41402,12234 +1488,214,12,1550,17491 +1489,214,12,327,79535 +1490,214,12,374319,17013 +1491,283,12,1813,21517 +1492,372,12,413998,1661581 +1493,214,12,63958,238316 +1494,214,12,62441,55483 +1495,265,12,12763,60027 +1496,214,12,949,1254 +1497,265,12,257344,4485 +1498,283,12,75229,63751 +1499,214,12,241254,1367059 +1500,214,12,264525,76864 +1501,283,12,64215,1354340 +1502,214,12,1890,10829 +1503,265,12,21208,8303 +1504,214,12,413421,1785021 +1505,265,12,117251,15364 +1506,393,12,280092,1533529 +1507,372,12,214938,1597059 +1508,265,12,154972,54204 +1509,214,12,3597,11697 +1510,163,12,244458,37022 +1511,315,12,190955,1405323 +1512,214,12,28448,184399 +1513,214,12,89756,943469 +1514,265,12,10921,67458 +1515,283,12,209401,474 +1516,214,12,301325,61111 +1517,214,12,12831,73909 +1518,214,12,127913,1104957 +1519,271,12,27523,1014404 +1520,214,12,52270,2428 +1521,163,12,197082,1824203 +1522,214,12,12696,74010 +1523,214,12,64215,225153 +1524,214,12,15936,66531 +1525,214,12,303636,1412503 +1526,372,12,33107,56248 +1527,214,12,452606,109083 +1528,283,12,70670,76571 +1529,265,12,10744,66706 +1530,214,12,383140,1509228 +1531,265,12,24619,17209 +1532,214,12,76397,578787 +1533,372,12,392271,1765168 +1534,214,12,866,12997 +1535,283,12,277713,1325 +1536,214,12,28273,1092557 +1537,70,12,103012,1181401 +1538,283,12,1966,1113 +1539,265,12,9902,8303 +1540,214,12,11502,69635 +1541,265,12,221667,1055900 +1542,214,12,426264,53614 +1543,214,12,16890,44023 +1544,214,12,408381,148929 +1545,214,12,10020,12824 +1546,271,12,212530,1196914 +1547,163,12,10440,59970 +1548,70,12,8467,57871 +1549,265,12,137528,1764639 +1550,214,12,795,376 +1551,163,12,275696,1448106 +1552,265,12,365942,109429 +1553,214,12,45013,150955 +1554,163,12,310133,1458717 +1555,70,12,15849,1108294 +1556,214,12,26030,3831 +1557,265,12,41733,54211 +1558,265,12,10467,68602 +1559,286,3,87952,150956 +1560,265,12,11377,39726 +1561,283,12,75174,561 +1562,283,12,242310,1321169 +1563,283,12,93856,1335153 +1564,283,12,354859,1338387 +1565,271,12,444713,1646079 +1566,214,12,403,5707 +1567,70,12,98277,1130033 +1568,315,12,125736,555890 +1569,70,12,97051,86535 +1570,214,12,11003,29015 +1571,214,12,315882,1281424 +1572,214,12,9070,56899 +1573,265,12,369885,23779 +1574,283,12,408509,41025 +1575,214,12,419430,291263 +1576,283,12,2731,1730017 +1577,265,12,42941,1066333 +1578,70,12,264397,1196195 +1579,214,12,12575,72886 +1580,214,12,373546,85178 +1581,283,12,230179,1275731 +1582,214,12,167810,73453 +1583,265,12,210047,33341 +1584,214,12,121539,1074508 +1585,214,12,5060,41828 +1586,214,12,31561,101373 +1587,214,12,34231,1197416 +1588,214,12,228074,14293 +1589,265,12,332979,1014925 +1590,214,12,2611,11505 +1591,214,12,40807,19274 +1592,214,12,86820,8570 +1593,214,12,12289,586335 +1594,163,12,58251,42434 +1595,214,12,15089,77867 +1596,300,12,578,66222 +1597,300,12,1647,60032 +1598,271,12,27599,64963 +1599,214,12,14811,13563 +1600,265,12,17209,3953 +1601,214,12,64678,1619917 +1602,70,12,262522,1460854 +1603,214,12,25983,1015891 +1604,214,12,58903,1428663 +1605,283,12,340275,5290 +1606,214,12,19244,84388 +1607,322,12,8470,1598762 +1608,315,12,5915,1608789 +1609,214,12,66526,583970 +1610,389,12,755,1897891 +1611,265,12,66125,72902 +1612,214,12,954,9183 +1613,283,12,11247,20540 +1614,214,12,259694,56718 +1615,214,12,209112,282 +1616,214,12,6976,30904 +1617,214,12,14400,661063 +1618,265,12,24090,62585 +1619,372,12,9816,34968 +1620,214,12,44801,1151 +1621,214,12,9953,60867 +1622,265,12,84944,222298 +1623,214,12,41171,38577 +1624,372,12,47194,1351465 +1625,214,12,345069,76424 +1626,214,12,4253,35770 +1627,265,12,10610,64425 +1628,265,12,330115,1496223 +1629,214,12,98349,1017354 +1630,214,12,10139,8215 +1631,163,12,84944,931473 +1632,415,3,345915,1707415 +1633,214,12,9613,58186 +1634,265,12,1813,18596 +1635,214,12,9950,26208 +1636,283,12,315664,19993 +1637,271,12,275269,1465888 +1638,283,12,41505,16491 +1639,372,12,20312,1424447 +1640,214,12,360249,79335 +1641,214,12,13805,52259 +1642,287,3,383538,1783019 +1643,265,12,6077,47791 +1644,283,12,45610,5328 +1645,214,12,10063,60864 +1646,214,12,11472,11222 +1647,214,12,13480,87671 +1648,214,12,13440,1031586 +1649,271,12,8340,1566435 +1650,283,12,109391,1204707 +1651,214,12,39308,29664 +1652,214,12,43594,1686545 +1653,214,12,134480,9054 +1654,214,12,13483,26473 +1655,283,12,66125,12203 +1656,315,12,297762,40838 +1657,271,12,28,123 +1658,214,12,172847,1179251 +1659,214,12,433034,1027086 +1660,283,12,6171,1720 +1661,271,12,270774,1877784 +1662,214,12,131366,49210 +1663,214,12,241930,1277529 +1664,283,12,24801,2678 +1665,265,12,345922,95101 +1666,265,12,4248,59839 +1667,214,12,14411,12062 +1668,214,12,72917,20665 +1669,214,12,131737,61096 +1670,214,12,197297,1323385 +1671,163,12,46738,5426 +1672,265,12,352208,1573777 +1673,300,12,9032,1613969 +1674,214,12,197696,1015885 +1675,265,12,11653,20642 +1676,70,12,98277,1688432 +1677,265,12,94348,1138845 +1678,214,12,345438,1444796 +1679,283,12,16806,599 +1680,283,12,326,6044 +1681,283,12,5289,5362 +1682,283,12,339530,29940 +1683,265,12,135313,1095734 +1684,214,12,339547,507840 +1685,214,12,24679,190 +1686,70,12,362703,1560223 +1687,163,12,14273,1496890 +1688,214,12,329718,1437423 +1689,214,12,340187,1567535 +1690,283,12,9785,14377 +1691,214,12,1480,45279 +1692,265,12,154972,1114476 +1693,283,12,1381,5914 +1694,265,12,30973,7228 +1695,214,12,263472,13023 +1696,283,12,187596,1034748 +1697,214,12,28325,53188 +1698,214,12,106747,1040895 +1699,265,12,188927,1636657 +1700,265,12,23730,1746084 +1701,271,12,1902,19904 +1702,214,12,17906,82485 +1703,265,12,205939,1191534 +1704,70,12,7515,1398193 +1705,214,12,16876,80960 +1706,265,12,71859,1065913 +1707,214,12,77117,123017 +1708,214,12,5482,44966 +1709,214,12,309879,1621468 +1710,214,12,11848,70707 +1711,372,12,12289,993813 +1712,214,12,14752,78917 +1713,265,12,227156,37756 +1714,214,12,12831,1015 +1715,283,12,18238,1014915 +1716,214,12,18642,4123 +1717,283,12,371645,1583552 +1718,265,12,9828,59656 +1719,318,12,10066,1775949 +1720,283,12,238,949 +1721,283,12,448847,1181410 +1722,299,12,126889,1649534 +1723,283,12,55846,53680 +1724,214,12,260947,1304136 +1725,70,12,9475,23226 +1726,214,12,116979,61120 +1727,265,12,9441,4038 +1728,214,12,373397,560271 +1729,265,12,149883,1217563 +1730,70,12,109439,1065353 +1731,214,12,60547,43818 +1732,214,12,67018,1147041 +1733,214,12,325712,1084537 +1734,163,12,330459,1679517 +1735,214,12,90125,20247 +1736,214,12,24757,40609 +1737,214,12,11058,20567 +1738,214,12,69,408 +1739,265,12,285685,1350675 +1740,214,12,361018,1513532 +1741,284,12,33613,1455313 +1742,214,12,103215,1033140 +1743,163,12,413998,1337752 +1744,214,12,164366,1180434 +1745,214,12,110588,19707 +1746,372,12,9828,6896 +1747,214,12,7980,1128253 +1748,265,12,152532,56759 +1749,214,12,9589,21886 +1750,283,12,64942,1011907 +1751,214,12,102961,98136 +1752,283,12,46992,1464117 +1753,214,12,49521,556 +1754,271,12,15653,1767054 +1755,214,12,59965,1257754 +1756,214,12,1904,19862 +1757,315,12,102382,1399484 +1758,214,12,41038,30453 +1759,265,12,139826,172329 +1760,214,12,11485,6994 +1761,214,12,1715,414 +1762,214,12,98368,1580060 +1763,214,12,11983,3222 +1764,214,12,68179,58327 +1765,214,12,13567,1426219 +1766,214,12,84209,11472 +1767,231,12,361750,1257503 +1768,214,12,10543,49831 +1769,214,12,96132,5398 +1770,214,12,82492,928072 +1771,318,12,227975,1775653 +1772,70,12,48281,1813309 +1773,214,12,17175,36616 +1774,265,12,365942,94459 +1775,214,12,10134,33008 +1776,214,12,11531,23420 +1777,214,12,75204,381393 +1778,214,12,31682,45279 +1779,265,12,9870,59918 +1780,265,12,127585,6184 +1781,214,12,8070,1650 +1782,214,12,85411,2461 +1783,214,12,2288,5342 +1784,214,12,228290,1133329 +1785,265,12,176,51030 +1786,214,12,15486,75727 +1787,214,12,105077,1115253 +1788,214,12,244268,131400 +1789,271,12,95516,570498 +1790,283,12,25388,25801 +1791,214,12,242224,1364808 +1792,214,12,8951,56841 +1793,214,12,10207,1269 +1794,265,12,2662,60500 +1795,214,12,20312,46399 +1796,214,12,45335,11472 +1797,214,12,242310,38551 +1798,283,12,47955,598 +1799,214,12,35052,1080784 +1800,214,12,13092,590074 +1801,214,12,209406,1320300 +1802,283,12,36968,230138 +1803,283,12,35200,51380 +1804,214,12,786,11654 +1805,214,12,49018,90591 +1806,163,12,44363,1206429 +1807,214,12,95134,108106 +1808,214,12,72648,181647 +1809,265,12,13667,1117353 +1810,214,12,4285,36003 +1811,214,12,40368,101297 +1812,318,12,178809,1857685 +1813,265,12,10071,62557 +1814,318,12,93856,1857019 +1815,214,12,116351,1540127 +1816,265,12,78383,61899 +1817,214,12,40087,99500 +1818,283,12,218778,17612 +1819,214,12,96238,1069799 +1820,283,12,42709,1413484 +1821,283,12,4806,7534 +1822,214,12,17175,1537851 +1823,214,12,11600,13234 +1824,214,12,28851,102179 +1825,214,12,272878,144483 +1826,214,12,11358,31710 +1827,214,12,275136,1567415 +1828,265,12,25132,113864 +1829,214,12,14242,31654 +1830,214,12,11216,2378 +1831,372,12,16171,79854 +1832,214,12,348631,32733 +1833,265,12,28437,30968 +1834,214,12,121929,98253 +1835,283,12,55433,81828 +1836,265,12,77964,1529469 +1837,163,12,444713,1768800 +1838,265,12,37929,1357524 +1839,393,12,9946,1767315 +1840,283,12,80304,41080 +1841,214,12,210910,1194704 +1842,214,12,267310,1314857 +1843,271,12,48116,1114503 +1844,214,12,340684,1472146 +1845,265,12,128866,1665450 +1846,283,12,339408,1571009 +1847,214,12,259183,592416 +1848,144,12,204994,8344 +1849,214,12,15092,3953 +1850,214,12,94348,21022 +1851,214,12,7863,57596 +1852,214,12,24556,90864 +1853,214,12,14945,80938 +1854,127,3,339403,1635204 +1855,265,12,46286,1563890 +1856,265,12,321315,1095303 +1857,265,12,16066,79137 +1858,322,12,9946,1432030 +1859,265,12,67822,1378067 +1860,283,12,2898,230436 +1861,214,12,28155,19266 +1862,283,12,34838,390 +1863,214,12,27138,1206058 +1864,214,12,252773,1186277 +1865,163,12,329010,1288789 +1866,214,12,10774,66714 +1867,214,12,116488,1326174 +1868,231,12,10320,20223 +1869,283,12,18514,2324 +1870,265,12,25682,17209 +1871,214,12,6973,455 +1872,271,12,74430,231258 +1873,265,12,8847,56076 +1874,265,12,42188,465 +1875,283,12,28452,1202360 +1876,358,12,41733,1564997 +1877,265,12,17622,19809 +1878,214,12,29260,33019 +1879,415,3,3104,18758 +1880,214,12,228108,63717 +1881,265,12,110588,1050028 +1882,283,12,88273,1167829 +1883,214,12,9464,17231 +1884,214,12,270470,3754 +1885,214,12,338063,1439345 +1886,70,12,25473,119851 +1887,214,12,76686,1098633 +1888,214,12,119213,35179 +1889,163,12,1950,52015 +1890,214,12,817,1227 +1891,283,12,12,61419 +1892,214,12,47404,34752 +1893,283,12,200,2399 +1894,214,12,47065,94672 +1895,214,12,28295,12011 +1896,70,12,17170,193763 +1897,265,12,9366,57464 +1898,214,12,12106,71262 +1899,265,12,10320,8880 +1900,299,12,354287,1551807 +1901,214,12,36325,1096490 +1902,214,12,11917,2147 +1903,70,12,15560,1459115 +1904,70,12,16296,1706329 +1905,265,12,23169,53478 +1906,265,12,43434,1117769 +1907,265,12,434873,1859550 +1908,163,12,241254,1367054 +1909,283,12,9425,6044 +1910,214,12,70667,3056 +1911,283,12,108726,1304543 +1912,214,12,16342,60322 +1913,287,3,434873,1455543 +1914,163,12,27150,136475 +1915,322,12,57749,1411240 +1916,283,12,32657,5363 +1917,214,12,10918,23863 +1918,214,12,19235,84802 +1919,214,12,37645,59 +1920,214,12,245775,111312 +1921,214,12,2453,27006 +1922,283,12,220820,1168178 +1923,70,12,19757,1521324 +1924,283,12,15556,3192 +1925,214,12,39781,5371 +1926,70,12,28293,1194446 +1927,214,12,18977,101225 +1928,265,12,42094,14093 +1929,214,12,30641,1131840 +1930,214,12,935,257 +1931,214,12,19912,21585 +1932,322,12,4248,1597212 +1933,283,12,84336,16363 +1934,283,12,46786,33144 +1935,214,12,22398,52989 +1936,214,12,301348,64058 +1937,214,12,209244,5371 +1938,214,12,15356,1128099 +1939,214,12,100270,1034171 +1940,283,12,48949,8337 +1941,70,12,18990,29665 +1942,265,12,7343,52533 +1943,214,12,387558,1643378 +1944,214,12,10394,9157 +1945,300,12,11377,1499673 +1946,214,12,397365,1653486 +1947,265,12,9613,43382 +1948,214,12,213110,1197577 +1949,265,12,313922,1642954 +1950,283,12,2084,34555 +1951,214,12,868,13081 +1952,265,12,59387,81613 +1953,393,12,10096,1398132 +1954,265,12,40807,40383 +1955,214,12,30082,53711 +1956,214,12,140825,40532 +1957,214,12,11129,60322 +1958,265,12,8391,20182 +1959,214,12,11639,55983 +1960,214,12,88486,20935 +1961,265,12,37929,1357525 +1962,214,12,15073,79284 +1963,214,12,88390,1493455 +1964,265,12,336004,1535396 +1965,214,12,131737,82587 +1966,163,12,8342,1743676 +1967,214,12,73642,57632 +1968,283,12,9953,41677 +1969,107,12,11247,1776547 +1970,214,12,222220,1269086 +1971,265,12,277558,1509663 +1972,214,12,78233,583399 +1973,214,12,1833,17828 +1974,214,12,38303,58375 +1975,70,12,413421,231004 +1976,214,12,28902,9021 +1977,214,12,2267,12433 +1978,214,12,339419,4855 +1979,265,12,241855,1325202 +1980,214,12,97206,24953 +1981,271,12,422005,1697081 +1982,214,12,11358,11695 +1983,214,12,102222,1031253 +1984,283,12,12499,1535952 +1985,318,12,173153,1554961 +1986,265,12,74585,3248 +1987,214,12,363757,50629 +1988,357,3,337339,1649512 +1989,265,12,345915,1084929 +1990,70,12,197082,1410756 +1991,283,12,10549,29419 +1992,265,12,10041,62345 +1993,214,12,416569,1657865 +1994,214,12,31773,3633 +1995,227,12,17209,1855387 +1996,283,12,1691,19662 +1997,283,12,11472,3275 +1998,265,12,13092,73524 +1999,214,12,13946,11419 +2000,214,12,9951,60819 +2001,265,12,664,8701 +2002,283,12,6951,598 +2003,265,12,407448,19658 +2004,70,12,28775,1767186 +2005,283,12,237756,12203 +2006,214,12,23599,29766 +2007,389,12,10204,40846 +2008,265,12,287,4054 +2009,214,12,206296,1188752 +2010,283,12,134394,1319119 +2011,214,12,39130,3248 +2012,163,12,58918,1189022 +2013,283,12,22007,1323081 +2014,214,12,25132,2294 +2015,283,12,121824,3965 +2016,271,12,39308,1481299 +2017,214,12,189,1106272 +2018,283,12,9966,13585 +2019,283,12,2100,2121 +2020,283,12,157424,1334178 +2021,214,12,92321,1817521 +2022,214,12,333352,1486911 +2023,322,12,258193,1367367 +2024,300,12,424488,1494760 +2025,214,12,26963,59448 +2026,214,12,15356,1128098 +2027,214,12,10937,50871 +2028,318,12,163,40838 +2029,265,12,12622,73143 +2030,214,12,315335,4035 +2031,283,12,59935,979226 +2032,265,12,11547,981950 +2033,389,12,384737,95845 +2034,214,12,124054,236844 +2035,283,12,32868,957027 +2036,70,12,5753,1522492 +2037,133,3,129229,1088720 +2038,318,12,1647,1617026 +2039,227,12,857,1461635 +2040,283,12,310888,1280965 +2041,214,12,194,2402 +2042,214,12,220005,1176829 +2043,214,12,70712,559404 +2044,315,12,263115,1426313 +2045,318,12,27259,32257 +2046,214,12,15616,17211 +2047,283,12,7459,2953 +2048,265,12,12763,11477 +2049,214,12,54388,44571 +2050,214,12,19618,33019 +2051,214,12,29224,336328 +2052,265,12,258480,63308 +2053,265,12,37929,1357527 +2054,214,12,20438,321 +2055,283,12,17609,1329466 +2056,214,12,33511,29228 +2057,214,12,1578,16514 +2058,163,12,414977,1676784 +2059,283,12,443319,1674422 +2060,389,12,2924,1803792 +2061,214,12,28026,1322486 +2062,318,12,2047,1562215 +2063,265,12,1049,15150 +2064,265,12,19995,20294 +2065,283,12,60106,583565 +2066,271,12,74585,1606804 +2067,70,12,37481,8344 +2068,283,12,17771,19993 +2069,372,12,98094,1379168 +2070,214,12,13542,23824 +2071,214,12,55846,948992 +2072,214,12,12247,45745 +2073,265,12,82703,928657 +2074,214,12,55612,66997 +2075,265,12,405473,62181 +2076,283,12,22683,1486960 +2077,214,12,121674,55940 +2078,214,12,75174,40223 +2079,265,12,30973,107416 +2080,214,12,105,1059 +2081,265,12,7555,1495655 +2082,283,12,91607,954445 +2083,265,12,194101,62955 +2084,214,12,347096,1085735 +2085,214,12,522,1899 +2086,214,12,45132,66263 +2087,318,12,10665,1775955 +2088,283,12,122,1325 +2089,214,12,45610,1053663 +2090,214,12,46247,5718 +2091,214,12,71866,564082 +2092,70,12,84708,993407 +2093,214,12,244783,1046134 +2094,265,12,2503,29402 +2095,214,12,43727,112749 +2096,372,12,37936,1327726 +2097,163,12,336882,57016 +2098,214,12,92389,3428 +2099,265,12,34560,112596 +2100,283,12,324670,2532 +2101,214,12,18620,172993 +2102,265,12,84892,82132 +2103,372,12,330459,123292 +2104,364,12,76341,1066819 +2105,163,12,29101,56915 +2106,283,12,341689,10969 +2107,214,12,482,1180131 +2108,214,12,419522,575797 +2109,70,12,43817,1840866 +2110,214,12,5638,44545 +2111,214,12,86241,9789 +2112,214,12,28036,98335 +2113,163,12,284296,84932 +2114,214,12,78233,1066197 +2115,214,12,41764,331220 +2116,214,12,70436,60471 +2117,70,12,31275,1853899 +2118,214,12,144229,15135 +2119,265,12,20842,442697 +2120,214,12,212481,1089880 +2121,214,12,48594,51896 +2122,283,12,13600,25365 +2123,214,12,413421,81928 +2124,214,12,634,2236 +2125,372,12,206647,11268 +2126,214,12,10596,32343 +2127,70,12,18,8375 +2128,214,12,252102,1236222 +2129,265,12,173205,1265219 +2130,322,12,259830,1354499 +2131,318,12,42418,1484329 +2132,214,12,7326,6949 +2133,214,12,221667,1033926 +2134,214,12,412851,1316018 +2135,372,12,10265,64488 +2136,265,12,52894,33008 +2137,214,12,415255,1203176 +2138,214,12,92257,1875735 +2139,265,12,73723,52361 +2140,214,12,108003,9861 +2141,265,12,201581,1183664 +2142,214,12,29058,85767 +2143,214,12,35623,52919 +2144,214,12,259695,6193 +2145,214,12,11915,24456 +2146,265,12,187028,1728938 +2147,283,12,10020,1615297 +2148,265,12,13169,6511 +2149,214,12,79372,10004 +2150,214,12,273868,33788 +2151,214,12,37083,96159 +2152,214,12,113038,1056202 +2153,214,12,8410,54901 +2154,214,12,3028,1093 +2155,283,12,73262,710 +2156,214,12,76163,16486 +2157,163,12,337339,1631516 +2158,214,12,177677,500 +2159,265,12,7972,53473 +2160,214,12,549,6590 +2161,214,12,22029,19266 +2162,265,12,394822,1562472 +2163,265,12,210092,76418 +2164,214,12,64784,1451785 +2165,214,12,17386,33009 +2166,214,12,98339,1124948 +2167,163,12,2288,18274 +2168,283,12,773,6959 +2169,372,12,371645,1535692 +2170,214,12,43372,53626 +2171,214,12,46387,110224 +2172,214,12,7299,11695 +2173,265,12,8665,3 +2174,265,12,393732,1780235 +2175,214,12,10466,489 +2176,214,12,85350,564 +2177,214,12,63441,70676 +2178,214,12,270774,1877770 +2179,214,12,43266,8502 +2180,265,12,24420,113982 +2181,265,12,295964,1307 +2182,214,12,805,12012 +2183,214,12,14019,76254 +2184,231,12,270774,1877772 +2185,265,12,353979,1017209 +2186,372,12,15936,78977 +2187,315,12,9771,1567681 +2188,283,12,250066,893948 +2189,283,12,76543,3081 +2190,283,12,224251,2678 +2191,214,12,42542,128148 +2192,393,12,294652,1485232 +2193,214,12,147287,1083954 +2194,214,12,174751,50988 +2195,283,12,28448,547 +2196,322,12,2300,61208 +2197,214,12,379873,999811 +2198,214,12,201223,1319221 +2199,214,12,212756,1528010 +2200,214,12,17711,380 +2201,214,12,46758,1605316 +2202,214,12,44682,1317051 +2203,214,12,77864,85670 +2204,214,12,30973,107415 +2205,283,12,49009,1046370 +2206,283,12,6145,3965 +2207,265,12,11056,62927 +2208,283,12,49018,1276602 +2209,163,12,298935,1389972 +2210,283,12,352327,5914 +2211,70,12,362703,1560225 +2212,214,12,4516,4401 +2213,70,12,184795,1581818 +2214,70,12,228205,1391337 +2215,214,12,19740,57139 +2216,163,12,21619,87720 +2217,163,12,2280,23964 +2218,70,12,49038,1457657 +2219,214,12,262841,12770 +2220,163,12,2989,1448342 +2221,214,12,52847,94115 +2222,214,12,68179,61379 +2223,265,12,1165,15729 +2224,372,12,397837,60584 +2225,283,12,5,3118 +2226,214,12,84569,930988 +2227,70,12,39867,945609 +2228,265,12,14459,76192 +2229,214,12,69315,77208 +2230,214,12,287587,208519 +2231,283,12,13842,13585 +2232,214,12,1793,18378 +2233,372,12,245700,1798337 +2234,163,12,5,37333 +2235,214,12,210047,1292992 +2236,214,12,109424,54417 +2237,214,12,28586,101225 +2238,265,12,341689,23446 +2239,372,12,47065,94672 +2240,283,12,74629,19680 +2241,214,12,2323,1093 +2242,283,12,198652,1179381 +2243,214,12,115712,1054338 +2244,283,12,28,8337 +2245,265,12,10708,18311 +2246,144,12,43850,1529444 +2247,265,12,38322,376 +2248,214,12,410537,1522313 +2249,214,12,29343,102429 +2250,265,12,19996,85411 +2251,214,12,25862,14446 +2252,283,12,44945,1024910 +2253,265,12,113038,682687 +2254,283,12,27150,16516 +2255,265,12,11045,29015 +2256,214,12,156360,89089 +2257,214,12,87587,935269 +2258,214,12,616,9185 +2259,214,12,52264,226075 +2260,214,12,24756,60401 +2261,265,12,1715,59839 +2262,70,12,66881,549051 +2263,283,12,286873,1014915 +2264,214,12,173467,140909 +2265,214,12,5804,39515 +2266,214,12,37126,133868 +2267,283,12,86254,12942 +2268,265,12,87593,45407 +2269,265,12,228205,66120 +2270,214,12,14979,17209 +2271,265,12,364088,1523169 +2272,214,12,298787,1376940 +2273,214,12,1452,3805 +2274,214,12,23967,673 +2275,214,12,365065,72968 +2276,284,12,14510,1449508 +2277,214,12,17956,49284 +2278,163,12,329718,1437424 +2279,107,12,8852,1839385 +2280,214,12,51371,8635 +2281,214,12,3081,31499 +2282,283,12,109417,31128 +2283,214,12,20213,7385 +2284,163,12,39053,75625 +2285,214,12,13848,27991 +2286,214,12,43209,57207 +2287,214,12,298751,78977 +2288,271,12,273106,1519572 +2289,214,12,391995,2211 +2290,214,12,245692,20674 +2291,214,12,5618,23508 +2292,265,12,68347,127542 +2293,70,12,290714,97542 +2294,214,12,112991,59723 +2295,271,12,28304,95864 +2296,300,12,35001,1373780 +2297,214,12,169760,1337625 +2298,214,12,9539,51323 +2299,271,12,259728,569953 +2300,214,12,53217,457819 +2301,271,12,45527,40609 +2302,214,12,10665,21036 +2303,283,12,12113,2952 +2304,265,12,294254,1511129 +2305,214,12,6023,47286 +2306,265,12,5413,43142 +2307,265,12,9803,59342 +2308,283,12,9843,2325 +2309,283,12,321039,1506295 +2310,265,12,376660,29015 +2311,214,12,22784,102429 +2312,214,12,178809,69374 +2313,322,12,3172,60569 +2314,214,12,14868,75937 +2315,214,12,26299,41135 +2316,283,12,11618,20540 +2317,214,12,397717,1080589 +2318,214,12,7916,23799 +2319,163,12,103597,6817 +2320,70,12,340215,1630291 +2321,393,12,284289,1538204 +2322,283,12,68050,897 +2323,283,12,408616,1599387 +2324,271,12,238,6099 +2325,415,3,339403,1635190 +2326,318,12,4248,1667272 +2327,214,12,378441,1362648 +2328,214,12,6145,50139 +2329,70,12,117,1354109 +2330,214,12,233487,109583 +2331,283,12,334527,1021206 +2332,265,12,25646,65814 +2333,214,12,47426,1467027 +2334,265,12,300667,1497842 +2335,70,12,333385,1619915 +2336,214,12,24645,92116 +2337,265,12,16164,1307 +2338,265,12,100110,1023502 +2339,283,12,346672,1626017 +2340,283,12,76640,60665 +2341,214,12,288710,60050 +2342,160,3,419192,1406072 +2343,214,12,15092,3954 +2344,283,12,16993,8426 +2345,389,12,1481,1844356 +2346,265,12,101325,1560951 +2347,415,3,25953,100991 +2348,265,12,26376,4123 +2349,160,3,423988,1523034 +2350,283,12,67696,14141 +2351,214,12,332979,935521 +2352,265,12,11517,71423 +2353,214,12,2397,21478 +2354,265,12,4146,35558 +2355,389,12,339403,1635299 +2356,265,12,6687,37951 +2357,214,12,19348,20835 +2358,283,12,11622,2215 +2359,214,12,187028,94431 +2360,265,12,1382,53895 +2361,214,12,9843,59855 +2362,265,12,97051,29221 +2363,372,12,315465,1591444 +2364,265,12,55681,1898928 +2365,214,12,169934,1693212 +2366,214,12,9607,2359 +2367,214,12,308529,9196 +2368,214,12,269494,1452552 +2369,265,12,3087,4123 +2370,283,12,69315,5363 +2371,214,12,10929,58403 +2372,163,12,365942,1125546 +2373,283,12,11137,25729 +2374,214,12,79743,1166041 +2375,214,12,14029,4955 +2376,214,12,9495,39973 +2377,329,3,441881,85053 +2378,283,12,22897,1484 +2379,70,12,82865,87364 +2380,283,12,9977,61335 +2381,214,12,28,8331 +2382,265,12,2567,59839 +2383,283,12,744,6347 +2384,265,12,13495,17003 +2385,283,12,293970,19689 +2386,214,12,12276,72022 +2387,70,12,9555,1422972 +2388,283,12,24397,35145 +2389,163,12,444713,1705301 +2390,214,12,6687,51070 +2391,300,12,664,9992 +2392,318,12,6947,1573110 +2393,283,12,29151,5328 +2394,214,12,253258,1292109 +2395,283,12,245703,1337656 +2396,214,12,88922,21918 +2397,163,12,345069,1478651 +2398,214,12,138222,1493527 +2399,265,12,11607,56967 +2400,214,12,20096,12847 +2401,265,12,62764,59700 +2402,144,12,51144,1606885 +2403,214,12,434873,1310518 +2404,283,12,9846,1639063 +2405,283,12,312221,19156 +2406,283,12,289278,1428002 +2407,214,12,146,1351 +2408,163,12,32904,1325914 +2409,214,12,339403,2236 +2410,318,12,374473,1650288 +2411,283,12,101852,1500901 +2412,214,12,4580,38169 +2413,214,12,97365,1123783 +2414,283,12,206647,10907 +2415,214,12,12639,34494 +2416,214,12,21619,1000102 +2417,214,12,44129,16731 +2418,214,12,96159,1331049 +2419,283,12,325133,19156 +2420,214,12,22803,582624 +2421,214,12,76543,1003946 +2422,214,12,5494,43676 +2423,214,12,13855,543812 +2424,214,12,27873,286 +2425,214,12,16999,1168991 +2426,214,12,36299,1046010 +2427,214,12,35052,955583 +2428,70,12,9352,4856 +2429,271,12,5881,46293 +2430,283,12,19176,4023 +2431,214,12,84617,100888 +2432,163,12,241258,66518 +2433,70,12,323929,1733200 +2434,300,12,114577,1059052 +2435,70,12,331161,1446132 +2436,70,12,9059,14335 +2437,265,12,9716,67094 +2438,214,12,15325,78112 +2439,214,12,21208,9556 +2440,214,12,133941,1085928 +2441,265,12,89008,230690 +2442,214,12,337104,1082434 +2443,214,12,86168,34359 +2444,214,12,169881,1519282 +2445,265,12,285858,38517 +2446,214,12,101998,724464 +2447,214,12,369697,1183421 +2448,372,12,10008,61923 +2449,214,12,16058,79111 +2450,283,12,9352,1586327 +2451,214,12,287903,61091 +2452,70,12,81003,1397895 +2453,214,12,9563,7200 +2454,214,12,241927,1244274 +2455,372,12,98339,378260 +2456,214,12,58,770 +2457,214,12,252171,1454381 +2458,214,12,32338,937260 +2459,214,12,285860,1519924 +2460,283,12,16307,750 +2461,214,12,1691,16847 +2462,265,12,394822,1592885 +2463,265,12,6636,50923 +2464,214,12,11777,36131 +2465,214,12,332354,1444928 +2466,160,3,463800,1418328 +2467,214,12,31347,104721 +2468,393,12,82624,1600783 +2469,265,12,321528,10949 +2470,283,12,178,21374 +2471,271,12,84636,41713 +2472,393,12,213681,1578886 +2473,283,12,2613,38699 +2474,163,12,102222,1315991 +2475,70,12,38950,1483720 +2476,271,12,210653,1302025 +2477,265,12,37254,73702 +2478,163,12,371003,1544340 +2479,265,12,203321,69450 +2480,283,12,15934,1142383 +2481,283,12,1966,62778 +2482,214,12,14765,52349 +2483,283,12,32049,1833608 +2484,214,12,1911,42006 +2485,214,12,15982,18878 +2486,163,12,329440,1777439 +2487,283,12,340275,1732077 +2488,214,12,57011,76173 +2489,283,12,315664,1190164 +2490,214,12,12479,28154 +2491,214,12,95504,457566 +2492,265,12,11056,1307 +2493,318,12,73424,1104802 +2494,265,12,10395,8880 +2495,283,12,140,3682 +2496,283,12,52021,31631 +2497,163,12,11045,21932 +2498,315,12,9716,1661567 +2499,283,12,39519,1768 +2500,214,12,36635,95944 +2501,214,12,54893,1069108 +2502,265,12,224944,1642139 +2503,214,12,76864,420416 +2504,214,12,42120,26726 +2505,163,12,9946,1186326 +2506,214,12,291413,52259 +2507,214,12,89921,69541 +2508,214,12,22894,948296 +2509,283,12,407,5594 +2510,283,12,409502,1129412 +2511,265,12,10070,62805 +2512,265,12,164331,16830 +2513,283,12,267310,1116773 +2514,163,12,340027,1397970 +2515,283,12,10407,1227 +2516,265,12,34078,1473024 +2517,214,12,51275,1090935 +2518,265,12,9787,7467 +2519,265,12,10458,67498 +2520,271,12,134201,1001817 +2521,214,12,41522,1351549 +2522,214,12,9889,7407 +2523,214,12,12279,2294 +2524,214,12,113119,1073056 +2525,70,12,17692,13370 +2526,214,12,210092,35325 +2527,214,12,28739,69806 +2528,283,12,68684,1658518 +2529,265,12,1995,20513 +2530,214,12,23637,101590 +2531,214,12,12454,20423 +2532,70,12,12311,30252 +2533,372,12,215579,1217198 +2534,265,12,36797,12962 +2535,393,12,246655,1712631 +2536,214,12,180299,142025 +2537,163,12,246860,1423728 +2538,393,12,228066,1574036 +2539,231,12,75778,1357870 +2540,214,12,262785,1306680 +2541,214,12,217925,339 +2542,70,12,26405,1479440 +2543,283,12,311324,547 +2544,216,12,9352,1768426 +2545,283,12,83899,1594 +2546,214,12,2428,24803 +2547,283,12,10055,23653 +2548,214,12,99374,30174 +2549,163,12,310137,1537531 +2550,265,12,45556,1127859 +2551,214,12,13549,29648 +2552,318,12,48231,1643413 +2553,214,12,81409,51730 +2554,283,12,204922,16363 +2555,163,12,18056,982461 +2556,214,12,253533,1060280 +2557,283,12,141733,1379594 +2558,214,12,381054,1483093 +2559,214,12,22398,1244914 +2560,214,12,332411,63721 +2561,214,12,9841,59810 +2562,265,12,9264,57065 +2563,214,12,34496,1320558 +2564,214,12,66894,1249962 +2565,214,12,82501,17426 +2566,265,12,17609,19353 +2567,283,12,9495,4023 +2568,265,12,283995,1154553 +2569,393,12,8619,1492942 +2570,214,12,834,68602 +2571,283,12,1647,23545 +2572,214,12,83899,56666 +2573,214,12,241574,1866815 +2574,214,12,201223,1315181 +2575,214,12,27031,7450 +2576,214,12,11403,66263 +2577,283,12,71099,1046456 +2578,163,12,8247,91161 +2579,265,12,308024,45407 +2580,265,12,10070,62803 +2581,214,12,8332,44744 +2582,214,12,66340,584495 +2583,214,12,173205,1562712 +2584,265,12,810,12107 +2585,265,12,62213,114479 +2586,214,12,432883,1732311 +2587,70,12,38775,121339 +2588,265,12,72912,791276 +2589,214,12,10008,61929 +2590,265,12,94874,1526866 +2591,271,12,43459,1511651 +2592,214,12,26298,3776 +2593,214,12,86820,1075100 +2594,214,12,9629,51893 +2595,271,12,238,1625346 +2596,214,12,63139,17211 +2597,163,12,12103,51446 +2598,389,12,251227,1286591 +2599,214,12,188927,15344 +2600,265,12,26390,16830 +2601,265,12,134368,131119 +2602,265,12,236737,1361932 +2603,283,12,40221,5776 +2604,283,12,345918,1462300 +2605,70,12,62837,1399695 +2606,214,12,146381,41286 +2607,322,12,1902,1830646 +2608,283,12,19042,1814504 +2609,283,12,38322,5290 +2610,214,12,10063,35581 +2611,318,12,118957,1828721 +2612,283,12,300,1125145 +2613,283,12,84577,30876 +2614,265,12,10739,66733 +2615,265,12,84340,1511487 +2616,265,12,403119,4584 +2617,372,12,173189,1023606 +2618,163,12,22029,1483730 +2619,214,12,3423,32317 +2620,393,12,5413,1556960 +2621,283,12,288977,1338387 +2622,70,12,22307,1432800 +2623,70,12,99861,1512798 +2624,214,12,132328,1095228 +2625,214,12,127372,1095403 +2626,214,12,166671,1328 +2627,214,12,8329,17083 +2628,231,12,8414,1891670 +2629,70,12,188927,186721 +2630,214,12,428493,1729570 +2631,163,12,329440,146439 +2632,214,12,56292,500 +2633,283,12,1942,2288 +2634,68,12,82745,928725 +2635,214,12,16058,49362 +2636,265,12,613,8803 +2637,283,12,334074,53680 +2638,214,12,27443,98505 +2639,265,12,257344,6874 +2640,283,12,168676,178539 +2641,214,12,36325,69362 +2642,283,12,9981,14377 +2643,214,12,20715,946417 +2644,214,12,37958,46088 +2645,70,12,40087,1646184 +2646,265,12,6557,50459 +2647,393,12,9716,6996 +2648,214,12,64568,30700 +2649,214,12,108282,62052 +2650,214,12,103689,43709 +2651,265,12,331161,1446133 +2652,265,12,238749,1127214 +2653,265,12,17137,81295 +2654,214,12,71503,138867 +2655,214,12,117999,39996 +2656,265,12,14510,204150 +2657,214,12,772,11505 +2658,214,12,194407,10914 +2659,283,12,283445,1486960 +2660,214,12,5206,18827 +2661,214,12,245536,1708141 +2662,271,12,188102,556824 +2663,214,12,378227,1565617 +2664,214,12,7972,53459 +2665,214,12,43594,1686546 +2666,265,12,13852,42382 +2667,155,3,354133,1496093 +2668,214,12,61548,6468 +2669,283,12,27332,12866 +2670,265,12,419459,1284099 +2671,70,12,10674,1813971 +2672,393,12,8869,1231084 +2673,283,12,56906,1034658 +2674,70,12,16235,8928 +2675,265,12,124115,4123 +2676,214,12,29108,1240642 +2677,393,12,257345,1533529 +2678,271,12,197,43161 +2679,70,12,42094,14091 +2680,271,12,447758,1779635 +2681,214,12,8204,1257754 +2682,214,12,94568,1002551 +2683,214,12,11895,12991 +2684,265,12,257345,1030966 +2685,214,12,2994,5398 +2686,265,12,210092,1193686 +2687,265,12,9539,1146814 +2688,315,12,74126,1476159 +2689,163,12,7555,68758 +2690,163,12,412851,1472431 +2691,163,12,29424,1477209 +2692,214,12,4978,40345 +2693,372,12,97794,1128302 +2694,271,12,2604,3184 +2695,214,12,11800,71263 +2696,265,12,20715,1234464 +2697,214,12,337104,53894 +2698,214,12,202337,1630217 +2699,214,12,319340,1440448 +2700,214,12,24625,7627 +2701,214,12,32044,9789 +2702,214,12,279096,938435 +2703,214,12,1427,673 +2704,283,12,13654,937490 +2705,372,12,44303,590833 +2706,393,12,1647,63674 +2707,214,12,20919,62342 +2708,265,12,11017,67809 +2709,283,12,23823,102657 +2710,214,12,43902,8636 +2711,214,12,69401,1326965 +2712,214,12,354859,15906 +2713,265,12,378441,84378 +2714,214,12,44287,79651 +2715,265,12,10703,66771 +2716,283,12,190955,2952 +2717,265,12,201419,1036428 +2718,214,12,11907,38546 +2719,214,12,165,1059 +2720,214,12,9889,7396 +2721,214,12,300,4277 +2722,283,12,1165,1602319 +2723,315,12,21159,91800 +2724,265,12,9651,20009 +2725,214,12,858,12922 +2726,265,12,323929,1733203 +2727,283,12,171213,278032 +2728,70,12,118760,63924 +2729,163,12,34598,946610 +2730,214,12,12103,12050 +2731,283,12,413452,53899 +2732,271,12,43596,46337 +2733,300,12,38322,60070 +2734,265,12,36751,1 +2735,214,12,345003,64468 +2736,214,12,44436,77656 +2737,214,12,9366,5162 +2738,283,12,14457,137198 +2739,214,12,37958,72106 +2740,214,12,1420,9021 +2741,265,12,94348,954441 +2742,372,12,35026,1364223 +2743,163,12,634,9150 +2744,214,12,102,6146 +2745,107,12,311324,1755140 +2746,214,12,226354,1177723 +2747,265,12,4986,11302 +2748,214,12,341174,188534 +2749,287,3,378018,1762269 +2750,265,12,99859,18335 +2751,265,12,40879,3727 +2752,70,12,307931,1489787 +2753,393,12,118,1855223 +2754,265,12,380057,509193 +2755,214,12,364410,56915 +2756,283,12,13849,1035047 +2757,283,12,300596,942871 +2758,283,12,10193,963497 +2759,214,12,11186,13596 +2760,283,12,312138,96295 +2761,315,12,9032,1533708 +2762,214,12,25646,94048 +2763,265,12,38579,9250 +2764,214,12,2196,22808 +2765,315,12,44943,1403390 +2766,214,12,8470,2147 +2767,315,12,163,1409825 +2768,214,12,10008,61925 +2769,214,12,12103,10764 +2770,214,12,10796,21932 +2771,214,12,755,68802 +2772,214,12,86186,1024835 +2773,265,12,16371,80455 +2774,70,12,30175,57465 +2775,214,12,1995,1993 +2776,214,12,245703,999763 +2777,214,12,231176,120128 +2778,284,12,181454,1735501 +2779,214,12,293863,35180 +2780,265,12,67748,70524 +2781,214,12,83389,1417 +2782,214,12,284293,1190971 +2783,214,12,410537,1061756 +2784,214,12,18133,65043 +2785,265,12,6933,51453 +2786,265,12,213681,1413501 +2787,283,12,287,897 +2788,214,12,3085,346617 +2789,214,12,210302,1193908 +2790,214,12,93492,567766 +2791,214,12,230179,228399 +2792,214,12,275696,146836 +2793,214,12,276819,1294423 +2794,265,12,24150,59839 +2795,265,12,310133,4724 +2796,265,12,10849,6994 +2797,214,12,2637,27549 +2798,214,12,14878,1275842 +2799,163,12,290714,1503516 +2800,283,12,320588,66493 +2801,214,12,43497,14860 +2802,214,12,414453,3288 +2803,214,12,69165,33009 +2804,283,12,227973,45848 +2805,214,12,84735,31143 +2806,70,12,47194,21320 +2807,214,12,339527,9543 +2808,283,12,255491,1037914 +2809,271,12,64215,1354330 +2810,283,12,248933,11944 +2811,214,12,270221,1301333 +2812,163,12,19996,1764156 +2813,265,12,78318,4123 +2814,70,12,32604,1885091 +2815,163,12,11024,15218 +2816,214,12,4365,102429 +2817,214,12,1817,12987 +2818,144,12,51141,1606885 +2819,214,12,152042,1257407 +2820,315,12,525,122131 +2821,214,12,378227,84956 +2822,214,12,8368,54744 +2823,283,12,19116,54777 +2824,265,12,208968,552566 +2825,214,12,28178,3498 +2826,231,12,257444,265297 +2827,214,12,33923,50311 +2828,265,12,31083,4135 +2829,372,12,268174,164938 +2830,214,12,119409,10847 +2831,265,12,93350,4135 +2832,283,12,9529,5630 +2833,163,12,59935,6100 +2834,322,12,62630,1423439 +2835,214,12,10947,38696 +2836,283,12,15556,5328 +2837,214,12,334,1809 +2838,322,12,10733,1128354 +2839,265,12,10055,62577 +2840,265,12,121674,1878847 +2841,214,12,19901,51542 +2842,214,12,12513,5069 +2843,70,12,41970,1359570 +2844,393,12,167073,1266571 +2845,214,12,61527,53360 +2846,271,12,31275,1853900 +2847,214,12,102841,1243695 +2848,283,12,325133,6410 +2849,265,12,26954,19707 +2850,372,12,334074,564209 +2851,283,12,286709,2952 +2852,214,12,86254,42368 +2853,214,12,31875,55419 +2854,214,12,3577,33037 +2855,214,12,45714,68426 +2856,214,12,360283,935853 +2857,214,12,2047,1151 +2858,214,12,333103,87281 +2859,214,12,12720,73680 +2860,214,12,12279,5911 +2861,265,12,8584,56719 +2862,265,12,16066,79136 +2863,214,12,15143,11505 +2864,214,12,75622,11107 +2865,214,12,102222,56032 +2866,271,12,262522,1460856 +2867,283,12,42703,1884065 +2868,284,12,2662,1406792 +2869,265,12,163,1296 +2870,283,12,279690,35145 +2871,265,12,19757,49517 +2872,265,12,216580,136972 +2873,214,12,345775,1544254 +2874,214,12,7014,51835 +2875,322,12,284052,1662334 +2876,214,12,205587,979152 +2877,265,12,15560,1439903 +2878,265,12,135708,1103628 +2879,214,12,304134,1172858 +2880,127,3,387399,1449066 +2881,265,12,57412,1125695 +2882,283,12,42684,496733 +2883,70,12,37929,108641 +2884,214,12,75948,577422 +2885,214,12,332741,1532333 +2886,214,12,53210,457819 +2887,70,12,858,4701 +2888,214,12,287281,1353906 +2889,265,12,120672,13335 +2890,70,12,63831,1125171 +2891,283,12,158908,4023 +2892,214,12,9778,36615 +2893,214,12,9828,59652 +2894,214,12,13586,110071 +2895,214,12,187022,73141 +2896,214,12,220820,1275655 +2897,214,12,292625,225153 +2898,214,12,407,5126 +2899,393,12,100669,1632793 +2900,265,12,410718,1032 +2901,283,12,53172,119179 +2902,283,12,122,1016176 +2903,214,12,12796,1238926 +2904,214,12,8072,1488989 +2905,283,12,315837,23424 +2906,214,12,5721,4590 +2907,283,12,540,7415 +2908,271,12,166076,34945 +2909,214,12,38303,7398 +2910,214,12,12720,67083 +2911,265,12,283995,1582747 +2912,214,12,94348,44741 +2913,265,12,343173,54205 +2914,265,12,10714,63065 +2915,214,12,11633,229503 +2916,265,12,22404,8502 +2917,322,12,336890,1844321 +2918,214,12,140,952 +2919,214,12,11446,66605 +2920,283,12,277558,1014789 +2921,214,12,22051,1102578 +2922,214,12,413882,131836 +2923,214,12,222935,25046 +2924,283,12,269258,124693 +2925,265,12,616,9196 +2926,300,12,51209,38578 +2927,214,12,322487,1799669 +2928,322,12,10391,1404852 +2929,265,12,274479,1551817 +2930,163,12,61035,17080 +2931,283,12,2687,23580 +2932,283,12,329724,89630 +2933,214,12,195796,108893 +2934,214,12,10050,20567 +2935,214,12,269795,67482 +2936,283,12,10860,1087388 +2937,214,12,4964,3184 +2938,283,12,194,1470641 +2939,283,12,49013,57673 +2940,265,12,312174,1383170 +2941,214,12,62213,16729 +2942,214,12,32904,1216403 +2943,214,12,145316,1153846 +2944,265,12,7555,17211 +2945,214,12,16436,1303337 +2946,214,12,330115,9994 +2947,389,12,14,1586941 +2948,214,12,417936,589410 +2949,214,12,112991,96919 +2950,214,12,20766,6468 +2951,163,12,295964,72898 +2952,214,12,10796,57134 +2953,271,12,48202,988933 +2954,265,12,227262,1254749 +2955,265,12,24554,91028 +2956,283,12,203833,53346 +2957,214,12,101929,1132462 +2958,70,12,11472,11711 +2959,265,12,238749,1130509 +2960,214,12,142989,1118136 +2961,214,12,10025,376 +2962,214,12,8064,1788613 +2963,214,12,340101,34001 +2964,265,12,9900,19292 +2965,265,12,367735,1373058 +2966,283,12,6980,51759 +2967,214,12,56212,1627682 +2968,410,12,8619,1767782 +2969,214,12,229,1557 +2970,214,12,275269,99710 +2971,214,12,20916,110241 +2972,283,12,2887,1730 +2973,214,12,356500,1756283 +2974,286,3,413782,1673997 +2975,283,12,54093,23424 +2976,214,12,13440,16294 +2977,214,12,113638,109853 +2978,214,12,86979,1497760 +2979,265,12,10425,17208 +2980,283,12,10872,1530 +2981,214,12,72251,973608 +2982,214,12,82627,928332 +2983,283,12,425774,1708044 +2984,283,12,10142,1263 +2985,318,12,11812,1726440 +2986,322,12,202337,1404923 +2987,200,3,395992,1769930 +2988,214,12,3513,16590 +2989,265,12,63144,27710 +2990,322,12,9286,1408790 +2991,283,12,24559,3806 +2992,214,12,1850,5382 +2993,322,12,2503,1406854 +2994,214,12,84348,1061518 +2995,214,12,11912,41837 +2996,393,12,4982,1473182 +2997,214,12,319999,1427398 +2998,283,12,60935,14912 +2999,214,12,139519,17735 +3000,13,12,378441,1797477 +3001,265,12,97051,74957 +3002,265,12,11798,70523 +3003,265,12,60281,1803176 +3004,163,12,77459,59 +3005,372,12,177047,63658 +3006,214,12,2259,673 +3007,214,12,123103,57049 +3008,70,12,252680,1661906 +3009,265,12,49950,1128309 +3010,214,12,31913,47773 +3011,214,12,280030,1448240 +3012,214,12,18082,45831 +3013,70,12,102222,1394055 +3014,265,12,68737,1392959 +3015,283,12,293167,7232 +3016,283,12,9746,2242 +3017,214,12,44115,57583 +3018,300,12,297762,1032069 +3019,265,12,428355,62161 +3020,214,12,12540,58846 +3021,214,12,143169,1979 +3022,283,12,38922,598 +3023,265,12,9602,58148 +3024,214,12,14134,35742 +3025,70,12,10201,957558 +3026,283,12,54093,1014915 +3027,214,12,263627,1108745 +3028,214,12,10796,15004 +3029,214,12,2132,21849 +3030,214,12,291871,1273859 +3031,214,12,4024,35152 +3032,283,12,29101,43640 +3033,324,3,419522,229571 +3034,283,12,227975,23927 +3035,163,12,11456,58471 +3036,271,12,1049,15151 +3037,372,12,17216,1018091 +3038,214,12,9928,1470237 +3039,214,12,66741,70556 +3040,214,12,45273,986910 +3041,389,12,98066,1759316 +3042,265,12,105945,1039204 +3043,214,12,418437,1899 +3044,265,12,8665,20295 +3045,214,12,6163,48309 +3046,214,12,307081,51612 +3047,283,12,10400,23545 +3048,214,12,301876,1015789 +3049,214,12,239566,1428 +3050,214,12,10652,62038 +3051,265,12,419459,56534 +3052,214,12,935,240 +3053,163,12,402446,131059 +3054,265,12,31867,114409 +3055,163,12,392271,1169588 +3056,214,12,25934,46611 +3057,214,12,9904,60214 +3058,283,12,20439,1380702 +3059,265,12,9803,59347 +3060,70,12,37923,70765 +3061,265,12,12247,71882 +3062,283,12,31385,1127864 +3063,214,12,259728,1206345 +3064,70,12,36758,1213180 +3065,265,12,213681,54710 +3066,70,12,340027,1662852 +3067,214,12,287903,90281 +3068,265,12,11600,31520 +3069,271,12,147722,8502 +3070,389,12,264525,1857584 +3071,70,12,20287,1390303 +3072,214,12,76203,967387 +3073,214,12,279159,1758122 +3074,283,12,73247,15409 +3075,271,12,85640,1682639 +3076,214,12,5421,31775 +3077,214,12,151310,10790 +3078,214,12,102362,11874 +3079,265,12,189,59839 +3080,265,12,26323,1529469 +3081,265,12,20715,1808703 +3082,265,12,293982,1583083 +3083,70,12,325385,992842 +3084,214,12,36325,115279 +3085,271,12,22582,1395352 +3086,214,12,333354,1661026 +3087,214,12,8398,865 +3088,265,12,2567,30714 +3089,283,12,225728,474 +3090,231,12,2288,65457 +3091,127,3,339403,1635203 +3092,283,12,23223,1300921 +3093,214,12,10425,65117 +3094,214,12,425591,47099 +3095,265,12,32274,1872840 +3096,265,12,18317,55982 +3097,214,12,14945,1123064 +3098,322,12,102382,1360116 +3099,265,12,370234,1409855 +3100,214,12,35,1128339 +3101,265,12,295964,21390 +3102,318,12,9928,1805189 +3103,214,12,17926,3953 +3104,283,12,52520,1034748 +3105,371,3,339403,1635316 +3106,214,12,103640,35770 +3107,214,12,257345,84348 +3108,393,12,69,1532301 +3109,271,12,20325,1530899 +3110,214,12,36968,67809 +3111,214,12,9951,60811 +3112,322,12,95516,1411145 +3113,214,12,443319,578 +3114,265,12,24469,55418 +3115,265,12,46286,1563886 +3116,214,12,23367,55444 +3117,70,12,37534,40608 +3118,163,12,16839,43710 +3119,393,12,10320,54777 +3120,214,12,62394,2359 +3121,214,12,334527,1619486 +3122,214,12,118381,56808 +3123,214,12,128270,99898 +3124,214,12,82,639 +3125,283,12,244268,2952 +3126,214,12,1164,4447 +3127,214,12,378441,71773 +3128,214,12,340027,63777 +3129,214,12,245703,16398 +3130,214,12,169934,1693210 +3131,265,12,340215,1630278 +3132,265,12,56292,41330 +3133,318,12,55420,1799865 +3134,265,12,122081,9196 +3135,214,12,9308,25455 +3136,70,12,1902,1476614 +3137,265,12,35052,578 +3138,214,12,160160,1114377 +3139,214,12,38164,332350 +3140,214,12,8270,4507 +3141,214,12,77930,1074867 +3142,265,12,71866,1103654 +3143,70,12,28571,1461517 +3144,283,12,14047,2215 +3145,283,12,82650,5362 +3146,107,12,11358,1773148 +3147,265,12,15749,1219835 +3148,265,12,51549,1053029 +3149,214,12,30082,1470186 +3150,265,12,49524,71230 +3151,283,12,12499,7185 +3152,271,12,45562,999557 +3153,283,12,336804,5137 +3154,214,12,45577,133237 +3155,214,12,345918,1211214 +3156,318,12,15653,1767057 +3157,214,12,126712,34112 +3158,214,12,244580,977206 +3159,214,12,43268,555890 +3160,265,12,11798,55418 +3161,265,12,14945,1123070 +3162,214,12,150338,153293 +3163,214,12,1662,93011 +3164,214,12,442752,238473 +3165,214,12,9366,949 +3166,265,12,413782,1673991 +3167,214,12,203833,144483 +3168,214,12,33611,1054802 +3169,214,12,251,3427 +3170,70,12,40229,1477835 +3171,214,12,12764,33008 +3172,283,12,78403,211900 +3173,214,12,157351,108916 +3174,265,12,241258,1560026 +3175,283,12,117,1262 +3176,315,12,76203,1561051 +3177,265,12,47194,1351473 +3178,160,3,413421,1785033 +3179,214,12,57749,1205936 +3180,389,12,163,1727321 +3181,214,12,1807,10687 +3182,214,12,111836,1186813 +3183,265,12,15935,78963 +3184,265,12,49524,65690 +3185,214,12,270303,1397717 +3186,283,12,424600,119179 +3187,271,12,260522,1303424 +3188,214,12,11536,69767 +3189,214,12,46190,103668 +3190,265,12,408755,72405 +3191,300,12,287,4054 +3192,283,12,333484,5914 +3193,214,12,100110,58252 +3194,265,12,128270,6488 +3195,214,12,33343,40440 +3196,265,12,302528,1193081 +3197,214,12,9495,32035 +3198,372,12,2567,50354 +3199,214,12,109391,1281412 +3200,283,12,291164,67702 +3201,265,12,42764,1766554 +3202,393,12,354859,1457427 +3203,214,12,111042,26024 +3204,214,12,49847,142952 +3205,214,12,55720,9995 +3206,163,12,291865,1857755 +3207,265,12,294652,1180649 +3208,265,12,231145,139280 +3209,214,12,44155,51323 +3210,163,12,297853,1308983 +3211,214,12,17622,43901 +3212,214,12,49787,81328 +3213,214,12,32634,233495 +3214,70,12,2454,1477203 +3215,283,12,22476,928588 +3216,214,12,97683,33341 +3217,214,12,340027,20222 +3218,214,12,46830,1385535 +3219,214,12,223391,1300498 +3220,214,12,49508,33019 +3221,283,12,59419,1046729 +3222,214,12,298935,935267 +3223,265,12,28293,3238 +3224,265,12,48231,32467 +3225,265,12,13380,148119 +3226,214,12,11899,70773 +3227,271,12,30666,1219531 +3228,271,12,15653,938101 +3229,214,12,296524,10952 +3230,265,12,9611,9263 +3231,265,12,25941,69881 +3232,70,12,68193,1331941 +3233,214,12,300596,79283 +3234,70,12,66881,549026 +3235,322,12,241254,1404198 +3236,214,12,339419,4857 +3237,214,12,39276,18604 +3238,214,12,493,6776 +3239,372,12,7555,1018082 +3240,286,3,422548,1155986 +3241,315,12,635,9176 +3242,265,12,52936,1613658 +3243,283,12,6145,54777 +3244,300,12,180576,83412 +3245,214,12,43753,104323 +3246,214,12,11862,17698 +3247,265,12,45205,132498 +3248,214,12,57005,240283 +3249,283,12,436,1624027 +3250,265,12,365942,54873 +3251,214,12,14979,17211 +3252,265,12,167073,6226 +3253,271,12,37929,1489816 +3254,214,12,106887,1606211 +3255,283,12,10198,89030 +3256,214,12,8842,24051 +3257,214,12,198277,321 +3258,231,12,298584,1053661 +3259,163,12,253310,1423986 +3260,214,12,273106,1242547 +3261,393,12,263115,1527912 +3262,214,12,14047,13309 +3263,214,12,68750,538715 +3264,214,12,11908,70892 +3265,265,12,73215,1544511 +3266,393,12,2675,1674667 +3267,265,12,98339,59855 +3268,214,12,224944,1210464 +3269,214,12,1956,10687 +3270,214,12,402672,233068 +3271,214,12,13788,865 +3272,265,12,120,1310 +3273,265,12,275696,1169759 +3274,214,12,51212,11203 +3275,265,12,44115,15729 +3276,214,12,12154,9196 +3277,265,12,295964,59839 +3278,214,12,28671,101536 +3279,315,12,11370,1581164 +3280,70,12,283995,1718579 +3281,214,12,245906,1281376 +3282,214,12,92393,1109997 +3283,214,12,12121,376 +3284,214,12,36786,108295 +3285,283,12,254193,4906 +3286,318,12,634,1418317 +3287,214,12,16999,592190 +3288,283,12,9953,2031 +3289,214,12,461955,1833825 +3290,265,12,572,7740 +3291,70,12,21711,1864176 +3292,214,12,417489,77816 +3293,393,12,8292,1540645 +3294,214,12,4993,4123 +3295,265,12,205587,62739 +3296,265,12,405473,1800048 +3297,214,12,111017,29098 +3298,265,12,41574,1583301 +3299,265,12,21627,32035 +3300,214,12,330459,1174045 +3301,214,12,248376,548474 +3302,214,12,142012,135650 +3303,271,12,139582,1113440 +3304,214,12,10783,7779 +3305,265,12,57201,2444 +3306,265,12,9771,11000 +3307,214,12,34326,1605344 +3308,214,12,157293,233068 +3309,163,12,382589,586297 +3310,283,12,17796,7903 +3311,214,12,220488,74528 +3312,372,12,103597,1646873 +3313,214,12,303542,933273 +3314,283,12,25528,1120181 +3315,265,12,58013,1525820 +3316,214,12,212996,548474 +3317,214,12,82999,929055 +3318,214,12,14,8215 +3319,70,12,27814,1392240 +3320,214,12,24645,81729 +3321,214,12,2982,7506 +3322,271,12,22803,54896 +3323,283,12,105965,1085296 +3324,214,12,81188,1056758 +3325,283,12,2125,21822 +3326,214,12,329712,1177691 +3327,214,12,55604,10004 +3328,265,12,16876,80959 +3329,214,12,163376,234678 +3330,214,12,188161,52139 +3331,214,12,277713,1018991 +3332,265,12,244,3248 +3333,283,12,31913,1046 +3334,265,12,71670,76467 +3335,214,12,6589,21635 +3336,214,12,93856,90591 +3337,70,12,18447,17907 +3338,271,12,4923,111843 +3339,214,12,3933,510 +3340,372,12,97365,89629 +3341,358,12,28893,102342 +3342,214,12,65759,58140 +3343,163,12,294016,1555795 +3344,214,12,127329,548474 +3345,214,12,393559,1817863 +3346,214,12,242,3220 +3347,214,12,16358,2706 +3348,163,12,245700,55808 +3349,214,12,338189,1015839 +3350,265,12,9470,57616 +3351,214,12,224,2801 +3352,214,12,35001,26959 +3353,265,12,69,414 +3354,163,12,336882,93335 +3355,214,12,8414,54893 +3356,214,12,117905,1196279 +3357,163,12,276906,1331172 +3358,214,12,97683,70646 +3359,214,12,9076,46431 +3360,214,12,14254,8701 +3361,283,12,100669,156827 +3362,265,12,109417,31121 +3363,265,12,37254,30904 +3364,214,12,285,770 +3365,144,12,10657,1537036 +3366,271,12,30637,1607278 +3367,214,12,244316,18344 +3368,214,12,9820,56106 +3369,271,12,13580,74695 +3370,265,12,5753,29700 +3371,214,12,87936,131689 +3372,214,12,257450,101488 +3373,214,12,173153,4006 +3374,214,12,13763,1614968 +3375,214,12,54256,593165 +3376,214,12,137853,1375249 +3377,284,12,163,1409837 +3378,214,12,3423,32318 +3379,265,12,9343,49497 +3380,265,12,209112,10951 +3381,271,12,48145,6650 +3382,265,12,9030,21036 +3383,214,12,112973,1056089 +3384,214,12,32338,20085 +3385,283,12,40990,230138 +3386,214,12,4254,35737 +3387,214,12,169343,1311649 +3388,265,12,10610,18897 +3389,265,12,38269,51730 +3390,283,12,332794,1015894 +3391,163,12,206574,98202 +3392,214,12,9343,27042 +3393,214,12,52203,133868 +3394,214,12,9426,22302 +3395,214,12,5881,46295 +3396,265,12,10008,20691 +3397,283,12,32577,5489 +3398,244,3,418437,1472651 +3399,265,12,70981,1018939 +3400,300,12,9882,5286 +3401,265,12,63736,236844 +3402,214,12,49950,1128313 +3403,318,12,141,1547357 +3404,214,12,5481,33788 +3405,214,12,146243,1327833 +3406,265,12,23169,11288 +3407,315,12,10198,1464406 +3408,214,12,193,2381 +3409,283,12,302026,1382242 +3410,214,12,113638,32427 +3411,265,12,14945,1123069 +3412,265,12,82077,27153 +3413,372,12,11361,62928 +3414,214,12,11610,13269 +3415,214,12,9532,21585 +3416,214,12,34598,42367 +3417,214,12,59296,53016 +3418,284,12,20132,35739 +3419,283,12,28169,1172673 +3420,214,12,9953,52469 +3421,283,12,41590,959421 +3422,163,12,283995,1349452 +3423,214,12,90034,1197888 +3424,70,12,71805,837430 +3425,283,12,6557,2031 +3426,318,12,435,1574657 +3427,283,12,27549,938123 +3428,265,12,82624,72051 +3429,265,12,7515,77750 +3430,283,12,10063,62687 +3431,283,12,18998,11758 +3432,265,12,341689,45770 +3433,265,12,363479,201028 +3434,283,12,3716,5594 +3435,214,12,7445,72106 +3436,214,12,402672,1637849 +3437,214,12,3476,32084 +3438,214,12,291,4319 +3439,283,12,203833,4222 +3440,265,12,62046,1330723 +3441,214,12,365942,2184 +3442,322,12,9716,1661559 +3443,214,12,10466,664 +3444,214,12,10425,8167 +3445,283,12,40229,935903 +3446,283,12,3036,3311 +3447,214,12,331075,1759497 +3448,163,12,16096,1102854 +3449,200,3,378018,1600634 +3450,214,12,10391,4611 +3451,265,12,290999,1361565 +3452,214,12,286873,52223 +3453,265,12,11618,488 +3454,265,12,25983,1401939 +3455,214,12,59231,63714 +3456,214,12,327,13246 +3457,214,12,10198,61416 +3458,318,12,239566,1564157 +3459,265,12,216580,1465736 +3460,214,12,94727,10092 +3461,214,12,9087,3026 +3462,283,12,14869,25729 +3463,70,12,147722,88972 +3464,214,12,23739,102232 +3465,214,12,10137,931 +3466,214,12,429174,1293486 +3467,13,12,17057,51809 +3468,283,12,116463,30874 +3469,283,12,15873,1263 +3470,265,12,16005,44741 +3471,214,12,39001,54797 +3472,271,12,23544,1697682 +3473,283,12,187596,54777 +3474,299,12,8916,1780710 +3475,214,12,339527,33624 +3476,300,12,9835,35510 +3477,214,12,805,12011 +3478,265,12,42701,102429 +3479,214,12,12516,72609 +3480,214,12,312221,16485 +3481,265,12,345922,1527656 +3482,214,12,338767,111392 +3483,214,12,573,2636 +3484,214,12,73873,515 +3485,214,12,180299,1001662 +3486,214,12,42512,67 +3487,265,12,7972,53470 +3488,300,12,4547,12770 +3489,214,12,188927,58189 +3490,265,12,8672,72469 +3491,214,12,84209,16514 +3492,214,12,240745,937171 +3493,214,12,3072,30091 +3494,283,12,16137,63129 +3495,214,12,339367,85894 +3496,372,12,35052,958863 +3497,214,12,22615,41532 +3498,214,12,13506,1594374 +3499,283,12,11889,970 +3500,265,12,345922,9778 +3501,214,12,422603,989480 +3502,283,12,19765,1602156 +3503,214,12,39833,2766 +3504,283,12,5928,1263 +3505,214,12,397365,227704 +3506,265,12,179103,1529469 +3507,214,12,7916,43901 +3508,70,12,47194,1351467 +3509,265,12,42709,12997 +3510,231,12,71859,155527 +3511,214,12,1833,10965 +3512,283,12,79218,45848 +3513,214,12,19238,568259 +3514,214,12,1579,2461 +3515,214,12,251555,1286910 +3516,214,12,94365,118639 +3517,265,12,7220,6895 +3518,265,12,193756,6890 +3519,70,12,38654,932936 +3520,214,12,4191,35954 +3521,144,12,25241,1765288 +3522,70,12,13042,7971 +3523,300,12,40466,1222233 +3524,372,12,22894,587841 +3525,214,12,351211,995456 +3526,214,12,22894,69928 +3527,214,12,21519,46323 +3528,214,12,5646,44570 +3529,265,12,19423,1313785 +3530,214,12,89720,99897 +3531,214,12,10222,64681 +3532,265,12,14878,75572 +3533,265,12,139455,1234099 +3534,214,12,328111,65674 +3535,214,12,72431,1219884 +3536,214,12,13477,21968 +3537,283,12,16075,2073 +3538,214,12,50153,41704 +3539,214,12,18477,1029002 +3540,271,12,12103,59961 +3541,214,12,140648,12476 +3542,214,12,72710,6468 +3543,265,12,38987,1384172 +3544,70,12,8414,1891668 +3545,214,12,12079,71332 +3546,265,12,106049,1149935 +3547,214,12,15199,111406 +3548,283,12,302699,436 +3549,265,12,9613,31516 +3550,214,12,76115,110071 +3551,322,12,78691,1408550 +3552,283,12,60855,1396495 +3553,300,12,10708,1428974 +3554,214,12,339342,148678 +3555,265,12,76333,17003 +3556,214,12,262958,15491 +3557,214,12,142216,1176795 +3558,283,12,8617,13061 +3559,214,12,38509,120606 +3560,265,12,297762,1821143 +3561,300,12,28178,229813 +3562,214,12,146,1614 +3563,163,12,275696,1448108 +3564,265,12,329286,84834 +3565,214,12,75336,565408 +3566,214,12,14945,1123061 +3567,214,12,67531,122969 +3568,214,12,205587,42994 +3569,265,12,20941,8531 +3570,214,12,38718,32035 +3571,283,12,186869,1839554 +3572,265,12,188102,1384916 +3573,214,12,53042,5268 +3574,70,12,2001,1738175 +3575,214,12,148284,1666862 +3576,214,12,118,1298 +3577,214,12,4887,1788613 +3578,265,12,91333,939455 +3579,70,12,124115,14446 +3580,214,12,63376,230013 +3581,283,12,266285,2952 +3582,214,12,7343,8557 +3583,214,12,63838,7592 +3584,214,12,27265,2997 +3585,283,12,45522,1263 +3586,265,12,51209,227224 +3587,214,12,10344,2093 +3588,214,12,15794,1221528 +3589,214,12,41522,82506 +3590,265,12,3173,31036 +3591,214,12,9598,11651 +3592,214,12,340119,1466976 +3593,393,12,1073,1792645 +3594,283,12,9963,9545 +3595,283,12,9890,1046 +3596,214,12,368006,1136780 +3597,214,12,59961,19282 +3598,214,12,32577,7019 +3599,163,12,170279,1653565 +3600,163,12,398633,1623889 +3601,163,12,405670,1553205 +3602,265,12,12106,11359 +3603,214,12,41604,66224 +3604,163,12,267935,1102140 +3605,283,12,10134,1812181 +3606,283,12,2731,278032 +3607,214,12,25796,11708 +3608,318,12,9472,1567960 +3609,265,12,296288,1839939 +3610,118,12,17935,34007 +3611,214,12,258147,43903 +3612,214,12,262786,1306687 +3613,214,12,262338,1442575 +3614,265,12,314065,57159 +3615,265,12,6023,47292 +3616,214,12,75446,1087737 +3617,283,12,101325,2121 +3618,214,12,15440,1206695 +3619,214,12,3172,31708 +3620,214,12,309581,88843 +3621,265,12,22894,957874 +3622,322,12,285685,1618899 +3623,214,12,3478,32049 +3624,214,12,78233,1066198 +3625,265,12,13848,66243 +3626,214,12,714,10666 +3627,214,12,11930,674 +3628,322,12,5,1401374 +3629,265,12,84178,45407 +3630,163,12,2613,26487 +3631,265,12,370755,16296 +3632,214,12,14052,15247 +3633,214,12,42309,949743 +3634,283,12,62211,963497 +3635,283,12,241239,58855 +3636,214,12,9993,61625 +3637,214,12,45533,133178 +3638,283,12,42231,1263 +3639,163,12,381008,1246119 +3640,265,12,43923,968733 +3641,283,12,98066,39123 +3642,214,12,31044,12116 +3643,214,12,5206,42099 +3644,265,12,362439,46915 +3645,265,12,365065,1526011 +3646,214,12,2034,21146 +3647,265,12,91679,93022 +3648,214,12,189,2294 +3649,265,12,12476,72412 +3650,214,12,42418,2871 +3651,265,12,2503,11694 +3652,283,12,32080,1639063 +3653,214,12,9286,57134 +3654,163,12,73424,158455 +3655,265,12,19901,51030 +3656,214,12,1715,5325 +3657,214,12,28665,46088 +3658,70,12,39938,88972 +3659,265,12,12477,1116327 +3660,231,12,1589,61927 +3661,283,12,32068,1263 +3662,214,12,1986,20432 +3663,322,12,93350,1857016 +3664,283,12,9882,21517 +3665,283,12,151043,1726179 +3666,214,12,54563,2304 +3667,214,12,67693,1330202 +3668,214,12,387558,1564559 +3669,271,12,414977,1676785 +3670,214,12,411741,1673677 +3671,227,12,264525,1857586 +3672,214,12,82999,929053 +3673,214,12,15045,2043 +3674,214,12,2486,6040 +3675,265,12,259694,969283 +3676,214,12,138372,35561 +3677,265,12,134397,194189 +3678,163,12,15749,1018754 +3679,315,12,418437,1497973 +3680,214,12,137093,23541 +3681,214,12,46420,82611 +3682,283,12,19116,1034748 +3683,214,12,24655,1081863 +3684,214,12,102444,1056616 +3685,283,12,132328,1095230 +3686,214,12,890,14616 +3687,283,12,11584,960923 +3688,163,12,371003,1544342 +3689,265,12,459295,1225028 +3690,163,12,39957,77812 +3691,283,12,99,3629 +3692,70,12,69,230247 +3693,214,12,422,5679 +3694,214,12,256740,995354 +3695,70,12,445,39233 +3696,283,12,2084,474 +3697,283,12,58060,59445 +3698,214,12,158483,1417 +3699,214,12,25643,19282 +3700,283,12,186971,41025 +3701,283,12,44896,2215 +3702,214,12,64456,89927 +3703,214,12,19342,78336 +3704,214,12,347096,107796 +3705,265,12,241254,94047 +3706,70,12,127585,131516 +3707,214,12,1251,4746 +3708,265,12,13056,61899 +3709,214,12,237584,57203 +3710,283,12,28452,1643880 +3711,283,12,17464,12942 +3712,214,12,352025,938084 +3713,283,12,128270,805594 +3714,283,12,334527,1176357 +3715,393,12,245168,1266571 +3716,214,12,35921,1297 +3717,214,12,11854,35737 +3718,214,12,9828,59660 +3719,265,12,10274,64664 +3720,214,12,153795,16831 +3721,214,12,128154,1200246 +3722,283,12,107319,1559626 +3723,214,12,51358,10520 +3724,70,12,17457,66125 +3725,283,12,22007,859 +3726,214,12,9287,57168 +3727,393,12,296524,1641657 +3728,214,12,148,93 +3729,107,12,167810,1793207 +3730,214,12,103236,610747 +3731,214,12,29083,92200 +3732,271,12,41076,1889078 +3733,163,12,244316,1426229 +3734,214,12,103938,11435 +3735,372,12,16066,79143 +3736,214,12,54102,6374 +3737,214,12,42599,1293412 +3738,265,12,14543,9340 +3739,265,12,13480,17835 +3740,265,12,283995,1645447 +3741,214,12,1278,3056 +3742,163,12,393732,1776154 +3743,214,12,12289,1117860 +3744,214,12,9425,1888 +3745,265,12,83718,1617 +3746,70,12,370234,1621857 +3747,265,12,140883,1113720 +3748,283,12,256092,30874 +3749,214,12,246133,937938 +3750,265,12,46094,9184 +3751,214,12,1690,16847 +3752,300,12,2976,29206 +3753,214,12,15356,1128100 +3754,214,12,204255,1186596 +3755,214,12,11175,30826 +3756,163,12,109491,956249 +3757,389,12,263115,1634506 +3758,214,12,329289,1548027 +3759,70,12,332872,1623701 +3760,265,12,8584,56720 +3761,214,12,14531,1252935 +3762,372,12,28026,1546554 +3763,214,12,135713,1103642 +3764,70,12,15762,1116736 +3765,315,12,9835,1127909 +3766,214,12,30640,3601 +3767,214,12,27840,99116 +3768,286,3,413782,939542 +3769,283,12,6976,7755 +3770,214,12,112722,1838190 +3771,214,12,9821,1307 +3772,214,12,103432,1033803 +3773,214,12,140509,1112603 +3774,214,12,11589,19422 +3775,214,12,337958,75548 +3776,214,12,8491,46945 +3777,214,12,212063,83344 +3778,318,12,70981,1537723 +3779,214,12,6963,29 +3780,214,12,9428,5655 +3781,214,12,10475,56377 +3782,214,12,4887,34189 +3783,214,12,310137,202003 +3784,283,12,353979,893948 +3785,318,12,286192,1711838 +3786,214,12,2135,3718 +3787,265,12,5608,45622 +3788,265,12,403119,1658457 +3789,265,12,281590,552254 +3790,214,12,337,4897 +3791,283,12,17170,21517 +3792,214,12,117942,98541 +3793,283,12,98339,16363 +3794,70,12,86241,30591 +3795,214,12,59408,1590420 +3796,214,12,64807,1123424 +3797,214,12,266102,6371 +3798,163,12,18890,1815291 +3799,214,12,201085,61091 +3800,283,12,222935,1328148 +3801,214,12,132227,71353 +3802,214,12,16373,8617 +3803,214,12,27145,6100 +3804,283,12,1294,5747 +3805,265,12,1452,54211 +3806,284,12,77949,1402102 +3807,214,12,288977,173150 +3808,265,12,12144,1 +3809,283,12,9664,3501 +3810,214,12,20623,1661740 +3811,271,12,65898,1810246 +3812,214,12,16442,4123 +3813,389,12,188102,1845788 +3814,214,12,27409,1324695 +3815,265,12,3574,4123 +3816,283,12,407448,25365 +3817,214,12,56937,934171 +3818,283,12,7299,1113 +3819,283,12,240832,2186 +3820,283,12,12101,7511 +3821,283,12,10665,13061 +3822,265,12,311324,37436 +3823,372,12,382125,1674151 +3824,271,12,76651,58233 +3825,283,12,287903,2532 +3826,214,12,18613,20182 +3827,214,12,52705,3778 +3828,214,12,11204,68585 +3829,300,12,1715,18789 +3830,70,12,40466,1571745 +3831,214,12,49950,1128312 +3832,372,12,172828,1155522 +3833,283,12,45013,39123 +3834,265,12,39992,103178 +3835,372,12,330459,77511 +3836,283,12,63215,1012678 +3837,70,12,25132,1741165 +3838,214,12,1986,20434 +3839,283,12,297853,8864 +3840,283,12,37628,1043452 +3841,283,12,49018,9545 +3842,214,12,2107,58183 +3843,265,12,60599,1499778 +3844,271,12,10549,1609735 +3845,70,12,329712,5443 +3846,214,12,1251,190 +3847,214,12,43809,21507 +3848,283,12,122081,7481 +3849,214,12,34598,42368 +3850,214,12,382589,66840 +3851,193,12,356752,172993 +3852,214,12,17744,12149 +3853,315,12,38356,66696 +3854,214,12,9736,37634 +3855,283,12,42787,1263 +3856,214,12,62764,1125540 +3857,214,12,14705,115235 +3858,265,12,14979,67236 +3859,214,12,128081,62659 +3860,283,12,50838,74532 +3861,214,12,58,2448 +3862,265,12,430156,1251309 +3863,214,12,5172,41887 +3864,214,12,58428,101542 +3865,283,12,11058,7232 +3866,214,12,15745,4937 +3867,214,12,283686,969241 +3868,214,12,325645,32309 +3869,163,12,54845,57098 +3870,163,12,320588,1405645 +3871,283,12,8204,599 +3872,265,12,351211,51032 +3873,214,12,19898,4016 +3874,214,12,19174,45474 +3875,214,12,22881,47285 +3876,265,12,63045,1056029 +3877,265,12,134656,75131 +3878,214,12,2300,8858 +3879,214,12,9953,52990 +3880,214,12,82153,62927 +3881,265,12,44115,1034679 +3882,283,12,395883,1382242 +3883,214,12,248087,1537403 +3884,214,12,47190,1195656 +3885,214,12,53766,8636 +3886,265,12,458428,1820252 +3887,283,12,393562,1108802 +3888,271,12,469172,1862608 +3889,214,12,28448,76706 +3890,163,12,207270,27291 +3891,265,12,38027,1762440 +3892,283,12,12171,6232 +3893,214,12,18056,959314 +3894,214,12,58060,933273 +3895,163,12,101006,32168 +3896,265,12,213681,94825 +3897,265,12,102629,78108 +3898,214,12,392882,1870570 +3899,163,12,377447,1737876 +3900,214,12,406431,1511483 +3901,265,12,277710,1562470 +3902,214,12,11570,13780 +3903,283,12,25241,93418 +3904,214,12,12479,21220 +3905,265,12,27681,1176974 +3906,214,12,82485,56032 +3907,283,12,272878,1720 +3908,283,12,38162,1544205 +3909,214,12,32058,75690 +3910,214,12,36737,82506 +3911,214,12,146233,1122643 +3912,214,12,250066,232858 +3913,214,12,81188,35666 +3914,214,12,223946,1404673 +3915,265,12,3476,32085 +3916,265,12,13279,74580 +3917,214,12,8929,56835 +3918,70,12,788,11711 +3919,265,12,32904,1212184 +3920,70,12,340027,1482541 +3921,214,12,105077,227330 +3922,271,12,54563,1052402 +3923,265,12,23853,554 +3924,300,12,2288,1407850 +3925,265,12,24559,14825 +3926,214,12,4923,19665 +3927,214,12,74777,551463 +3928,265,12,4140,2706 +3929,214,12,58732,127778 +3930,214,12,13090,428915 +3931,214,12,4580,20718 +3932,214,12,1924,20010 +3933,283,12,11077,13585 +3934,214,12,8247,38657 +3935,214,12,301334,27562 +3936,283,12,31913,1113357 +3937,214,12,66756,70676 +3938,265,12,15258,37221 +3939,393,12,316042,1567300 +3940,214,12,11333,49453 +3941,70,12,414977,1676785 +3942,283,12,24420,23545 +3943,214,12,314371,43553 +3944,265,12,1271,54211 +3945,70,12,327225,1432552 +3946,163,12,2300,1477241 +3947,283,12,214,2678 +3948,214,12,166221,101872 +3949,265,12,10739,1268 +3950,214,12,16839,18596 +3951,214,12,4520,41375 +3952,265,12,139455,130405 +3953,214,12,11185,68493 +3954,214,12,36175,1124109 +3955,265,12,10733,5541 +3956,214,12,4978,39056 +3957,214,12,138222,1493526 +3958,214,12,19765,213337 +3959,214,12,265208,21932 +3960,265,12,408381,1325204 +3961,214,12,660,9863 +3962,214,12,124157,1293792 +3963,70,12,117534,5659 +3964,214,12,388243,1622331 +3965,283,12,22894,7415 +3966,265,12,153854,556877 +3967,265,12,2567,34340 +3968,214,12,351211,56666 +3969,214,12,374461,61921 +3970,265,12,284564,1680443 +3971,214,12,27351,464233 +3972,214,12,5393,43088 +3973,265,12,121674,10723 +3974,265,12,225728,968632 +3975,214,12,64526,57301 +3976,214,12,113148,64141 +3977,214,12,337958,152461 +3978,70,12,278632,121574 +3979,214,12,24739,2721 +3980,214,12,11830,69167 +3981,70,12,330947,1650335 +3982,283,12,32872,2532 +3983,70,12,8665,55600 +3984,265,12,173205,1447392 +3985,214,12,83897,876106 +3986,283,12,15661,4023 +3987,214,12,30143,78175 +3988,265,12,9438,30771 +3989,265,12,188161,1361021 +3990,287,3,434873,97617 +3991,214,12,47886,30652 +3992,214,12,91067,939108 +3993,163,12,10391,1190889 +3994,214,12,336004,63781 +3995,265,12,15258,83339 +3996,214,12,14047,81730 +3997,214,12,76084,592943 +3998,265,12,423122,1373058 +3999,214,12,9928,5718 +4000,214,12,184578,8487 +4001,214,12,64792,239792 +4002,214,12,8382,23880 +4003,265,12,9943,60701 +4004,214,12,242310,63721 +4005,271,12,74879,572595 +4006,214,12,52109,33008 +4007,283,12,245703,6410 +4008,214,12,341491,1301958 +4009,214,12,43938,12833 +4010,315,12,14683,1595271 +4011,271,12,2503,1344142 +4012,265,12,10900,56095 +4013,265,12,241258,1377410 +4014,265,12,14452,23880 +4015,214,12,9042,7406 +4016,283,12,263472,7494 +4017,372,12,9274,57102 +4018,214,12,371645,1193051 +4019,315,12,219233,1493667 +4020,214,12,11795,71300 +4021,214,12,43141,89905 +4022,214,12,364690,1670918 +4023,265,12,42537,13335 +4024,214,12,26502,141297 +4025,283,12,345922,1345610 +4026,214,12,3057,29937 +4027,214,12,338,4799 +4028,214,12,268321,58206 +4029,283,12,47536,390 +4030,265,12,86825,1004836 +4031,214,12,142402,1117098 +4032,163,12,10691,1607164 +4033,163,12,36758,141569 +4034,214,12,45610,59700 +4035,214,12,44657,3239 +4036,300,12,8470,60032 +4037,244,3,339403,1635163 +4038,372,12,31947,998152 +4039,214,12,14881,190 +4040,214,12,27144,97233 +4041,214,12,2625,1205 +4042,283,12,142061,1116126 +4043,265,12,63144,550669 +4044,283,12,15019,60946 +4045,214,12,295723,1070382 +4046,214,12,15934,1137532 +4047,265,12,25473,933462 +4048,283,12,188927,765144 +4049,231,12,98066,41551 +4050,214,12,18312,57970 +4051,265,12,47911,65918 +4052,300,12,52661,76160 +4053,214,12,323426,1642002 +4054,8,12,4147,59425 +4055,214,12,292625,1180432 +4056,309,12,8470,1598765 +4057,283,12,34469,8313 +4058,214,12,414977,1342601 +4059,70,12,211059,1185220 +4060,265,12,10761,19286 +4061,283,12,332411,30876 +4062,265,12,245706,376 +4063,214,12,157354,2178 +4064,286,3,407448,15493 +4065,214,12,52959,34359 +4066,364,12,98536,34752 +4067,265,12,11636,18897 +4068,214,12,114982,8570 +4069,315,12,14372,998152 +4070,214,12,375366,1611990 +4071,271,12,53766,588447 +4072,265,12,76533,579261 +4073,214,12,341007,1706352 +4074,265,12,50838,1015898 +4075,214,12,10821,66979 +4076,163,12,329712,1451497 +4077,214,12,24150,27735 +4078,322,12,10326,1446663 +4079,214,12,44458,56739 +4080,265,12,307931,1043234 +4081,214,12,12206,68 +4082,214,12,303867,109314 +4083,214,12,61908,109709 +4084,214,12,17796,58085 +4085,322,12,7299,1433747 +4086,283,12,40952,1205654 +4087,214,12,53882,51702 +4088,214,12,377151,1640923 +4089,265,12,14430,1373695 +4090,70,12,76333,85552 +4091,163,12,336882,1637000 +4092,283,12,206647,1551773 +4093,214,12,129,1417 +4094,214,12,110146,75770 +4095,393,12,222935,1726763 +4096,214,12,2887,28711 +4097,214,12,41590,5720 +4098,214,12,87826,32895 +4099,283,12,10865,7902 +4100,265,12,277710,1562473 +4101,214,12,36245,37456 +4102,283,12,88005,546 +4103,214,12,75446,1087734 +4104,265,12,75174,62238 +4105,372,12,121674,60316 +4106,271,12,54523,100406 +4107,283,12,1073,1484 +4108,265,12,12763,57431 +4109,315,12,353462,1554239 +4110,296,3,442752,1761888 +4111,283,12,293863,3965 +4112,265,12,302528,1492777 +4113,318,12,22803,1547032 +4114,214,12,17622,1122007 +4115,214,12,127585,11092 +4116,214,12,14041,23119 +4117,214,12,9441,28 +4118,271,12,169298,1407253 +4119,265,12,18417,31710 +4120,214,12,112961,47277 +4121,265,12,11058,40513 +4122,214,12,269650,1070680 +4123,214,12,1904,931 +4124,227,12,12103,1529603 +4125,283,12,17770,8337 +4126,214,12,11215,17698 +4127,214,12,51367,10520 +4128,70,12,56906,86047 +4129,70,12,10999,17310 +4130,214,12,338438,1179391 +4131,265,12,284053,58190 +4132,70,12,75564,76501 +4133,214,12,49950,21035 +4134,70,12,277355,1413094 +4135,214,12,291413,56908 +4136,214,12,13380,590466 +4137,214,12,32390,73395 +4138,214,12,72545,70788 +4139,265,12,222935,1208354 +4140,372,12,48118,228521 +4141,214,12,11677,32497 +4142,265,12,139455,206596 +4143,214,12,139244,69986 +4144,214,12,47143,35524 +4145,318,12,14128,1726809 +4146,283,12,333352,2623 +4147,214,12,15003,1094682 +4148,265,12,59678,1455948 +4149,214,12,14181,550 +4150,283,12,19898,7232 +4151,214,12,13654,67396 +4152,265,12,51955,62162 +4153,265,12,43434,52733 +4154,214,12,55784,1060479 +4155,214,12,264454,1309618 +4156,265,12,84340,1776889 +4157,283,12,338676,1018073 +4158,283,12,82679,765144 +4159,265,12,253154,1616265 +4160,283,12,354859,119178 +4161,265,12,262522,53867 +4162,214,12,15,40 +4163,214,12,145220,62758 +4164,214,12,1369,12882 +4165,265,12,14868,75939 +4166,214,12,37368,8500 +4167,163,12,73424,1158913 +4168,214,12,21570,988711 +4169,265,12,1452,60245 +4170,214,12,157898,106602 +4171,265,12,10096,11814 +4172,214,12,28176,2871 +4173,271,12,43195,1286520 +4174,214,12,332827,587728 +4175,372,12,64215,1091281 +4176,265,12,40047,46433 +4177,372,12,392271,1765167 +4178,214,12,9274,25507 +4179,214,12,38157,23862 +4180,265,12,307081,65559 +4181,214,12,287636,622844 +4182,214,12,43384,12304 +4183,265,12,49158,103129 +4184,214,12,10109,63572 +4185,265,12,81463,1480651 +4186,214,12,10753,62416 +4187,283,12,84340,1398132 +4188,214,12,84848,56375 +4189,214,12,214,2147 +4190,283,12,8916,1377373 +4191,214,12,230266,1290785 +4192,214,12,419459,1394657 +4193,127,3,383538,1635222 +4194,214,12,336811,66840 +4195,265,12,118,38020 +4196,70,12,254193,1299867 +4197,214,12,11622,16938 +4198,265,12,37725,43560 +4199,214,12,25643,62539 +4200,214,12,621,8880 +4201,265,12,7515,65823 +4202,300,12,29259,40581 +4203,214,12,72785,47061 +4204,265,12,383140,1582465 +4205,214,12,16523,6955 +4206,214,12,49158,935976 +4207,265,12,285908,1671255 +4208,265,12,11953,18604 +4209,284,12,3597,1790567 +4210,163,12,330947,1539850 +4211,283,12,45988,1443840 +4212,214,12,11547,59883 +4213,283,12,301875,236608 +4214,214,12,245692,67717 +4215,265,12,265208,64058 +4216,287,3,378018,1199959 +4217,283,12,15613,6479 +4218,283,12,265180,1414821 +4219,214,12,11939,3633 +4220,70,12,2897,9951 +4221,271,12,954,1416013 +4222,214,12,172385,535878 +4223,214,12,786,9987 +4224,265,12,26514,1465101 +4225,214,12,31850,1654638 +4226,214,12,12483,61824 +4227,214,12,22051,64179 +4228,214,12,43792,9055 +4229,265,12,14642,106025 +4230,322,12,10999,60569 +4231,214,12,41110,1145014 +4232,214,12,10087,63124 +4233,214,12,77875,65114 +4234,214,12,19157,63658 +4235,265,12,29698,6374 +4236,283,12,388243,1563654 +4237,265,12,120478,236844 +4238,214,12,10070,62799 +4239,265,12,174188,954932 +4240,265,12,10921,33045 +4241,214,12,9966,61122 +4242,70,12,38322,1551707 +4243,214,12,82684,616781 +4244,265,12,44945,45829 +4245,300,12,74,74567 +4246,163,12,330947,1440741 +4247,283,12,1271,17612 +4248,214,12,13649,65310 +4249,214,12,209271,94451 +4250,163,12,2105,57084 +4251,283,12,13788,60935 +4252,265,12,17216,1141807 +4253,214,12,55433,222353 +4254,265,12,176,51029 +4255,214,12,403605,1353149 +4256,265,12,71805,12649 +4257,214,12,7511,3953 +4258,214,12,394645,69915 +4259,214,12,11103,7847 +4260,214,12,42191,127576 +4261,393,12,11812,436 +4262,322,12,11880,1424942 +4263,214,12,429238,1733799 +4264,214,12,23223,1104915 +4265,299,12,369885,1551807 +4266,372,12,264525,1857568 +4267,265,12,198663,91161 +4268,214,12,318781,1018991 +4269,265,12,50225,51702 +4270,214,12,2721,20030 +4271,265,12,44115,465 +4272,231,12,257444,1497978 +4273,358,12,29083,92211 +4274,265,12,99861,113672 +4275,271,12,84030,1535895 +4276,70,12,24469,1126742 +4277,214,12,14881,14825 +4278,214,12,18665,552205 +4279,214,12,174751,50984 +4280,70,12,94182,86186 +4281,214,12,124501,991016 +4282,271,12,12273,1705307 +4283,214,12,54093,79135 +4284,214,12,50153,41705 +4285,214,12,9667,1461 +4286,214,12,28176,3219 +4287,283,12,158967,1326474 +4288,163,12,2034,19769 +4289,214,12,11024,18953 +4290,214,12,9648,59440 +4291,214,12,107985,2236 +4292,214,12,65488,130233 +4293,214,12,175331,1028543 +4294,265,12,19235,84800 +4295,70,12,44000,1558153 +4296,265,12,62046,71877 +4297,214,12,9076,32635 +4298,214,12,14449,1183510 +4299,214,12,37686,28977 +4300,144,12,32610,1585489 +4301,265,12,57201,1706 +4302,265,12,367735,95459 +4303,265,12,64215,1095114 +4304,70,12,376570,1610493 +4305,265,12,339403,35179 +4306,265,12,22554,5988 +4307,265,12,102629,1031253 +4308,265,12,23566,92083 +4309,214,12,28061,49900 +4310,265,12,101325,1560945 +4311,214,12,49258,63692 +4312,265,12,343934,1226277 +4313,283,12,105,597 +4314,283,12,10925,2724 +4315,265,12,33740,14942 +4316,214,12,15073,79282 +4317,286,3,413782,1673998 +4318,214,12,20,93 +4319,214,12,3513,11268 +4320,163,12,332286,93043 +4321,214,12,32328,13594 +4322,372,12,12683,99809 +4323,283,12,58,2215 +4324,265,12,85230,59004 +4325,214,12,101998,19931 +4326,265,12,376570,1610492 +4327,163,12,340103,105835 +4328,300,12,3989,5626 +4329,214,12,116979,967484 +4330,214,12,42062,86186 +4331,214,12,22007,17208 +4332,265,12,13792,75549 +4333,265,12,12763,10830 +4334,318,12,13205,1739794 +4335,214,12,265180,1040898 +4336,214,12,305932,53177 +4337,283,12,112961,67702 +4338,214,12,14983,162467 +4339,265,12,1589,1231613 +4340,214,12,103433,236844 +4341,265,12,49391,132212 +4342,265,12,20312,1424448 +4343,163,12,85350,1001361 +4344,214,12,266400,273123 +4345,283,12,201085,23545 +4346,214,12,365222,1167602 +4347,265,12,25983,1015890 +4348,271,12,156627,1721906 +4349,107,12,375366,1740767 +4350,265,12,17654,82196 +4351,283,12,858,1046 +4352,214,12,601,488 +4353,214,12,25538,1772962 +4354,214,12,411013,1799844 +4355,214,12,152737,941867 +4356,214,12,10238,11909 +4357,214,12,300669,7623 +4358,107,12,284052,1785935 +4359,283,12,8491,1263 +4360,214,12,390526,1262557 +4361,214,12,43931,5140 +4362,364,12,76341,75575 +4363,265,12,8954,56416 +4364,214,12,12182,57245 +4365,214,12,11011,1091 +4366,265,12,141,554 +4367,214,12,25500,56883 +4368,214,12,11630,18389 +4369,214,12,268920,52993 +4370,283,12,3104,390 +4371,265,12,47955,14929 +4372,214,12,13823,67434 +4373,163,12,22881,1117311 +4374,265,12,50126,1222910 +4375,265,12,109466,1046556 +4376,214,12,411638,1818501 +4377,283,12,13596,960543 +4378,214,12,41505,51691 +4379,214,12,76312,3396 +4380,372,12,2453,1052422 +4381,214,12,59965,21036 +4382,214,12,15749,34970 +4383,265,12,28110,1093 +4384,214,12,11972,4411 +4385,214,12,59181,1129542 +4386,214,12,254193,31268 +4387,283,12,339408,1521110 +4388,214,12,44000,31252 +4389,231,12,216580,1465737 +4390,393,12,921,6876 +4391,265,12,17209,3959 +4392,265,12,8588,55419 +4393,265,12,47504,1755011 +4394,214,12,56669,17797 +4395,265,12,102362,1106628 +4396,283,12,7980,42360 +4397,214,12,333385,1160627 +4398,214,12,42252,9169 +4399,70,12,87349,15382 +4400,214,12,17046,81263 +4401,265,12,1963,16282 +4402,127,3,461955,1410307 +4403,214,12,3716,5127 +4404,214,12,58244,72903 +4405,163,12,9427,1258107 +4406,265,12,35052,62983 +4407,214,12,9624,23880 +4408,283,12,8588,10969 +4409,214,12,68976,554822 +4410,265,12,14945,1123066 +4411,214,12,13162,1532320 +4412,214,12,2046,3953 +4413,107,12,395992,1813932 +4414,214,12,9703,5398 +4415,231,12,9716,1265 +4416,214,12,210302,1979 +4417,265,12,177155,1334941 +4418,214,12,40998,78747 +4419,214,12,11839,50577 +4420,214,12,302828,1223078 +4421,214,12,43761,120227 +4422,163,12,280092,1401857 +4423,127,3,442752,1386186 +4424,283,12,10710,2242 +4425,271,12,9836,1745232 +4426,214,12,15592,58070 +4427,214,12,242076,1075764 +4428,265,12,6978,21725 +4429,283,12,12412,119178 +4430,214,12,56669,72559 +4431,7,3,339403,1635275 +4432,214,12,84577,1075764 +4433,214,12,47143,1590639 +4434,358,12,9472,1450713 +4435,214,12,383140,1169157 +4436,214,12,20361,1088499 +4437,214,12,29365,103668 +4438,265,12,16137,958519 +4439,283,12,125520,474 +4440,322,12,109424,1405429 +4441,265,12,117534,1747603 +4442,265,12,85472,1307 +4443,214,12,36432,115354 +4444,214,12,82990,84348 +4445,283,12,10053,13585 +4446,214,12,38055,574003 +4447,214,12,429238,81068 +4448,265,12,24619,45830 +4449,214,12,390526,128616 +4450,214,12,246011,930998 +4451,322,12,240832,1367829 +4452,163,12,43817,1827573 +4453,214,12,295314,1178576 +4454,214,12,124963,1336666 +4455,214,12,287636,952397 +4456,214,12,14979,24205 +4457,214,12,45964,161309 +4458,214,12,5332,33390 +4459,271,12,130925,1443479 +4460,107,12,274857,1278601 +4461,393,12,6557,1355535 +4462,214,12,105584,13833 +4463,265,12,32657,84127 +4464,214,12,206574,98190 +4465,214,12,1624,339 +4466,70,12,47194,1351475 +4467,214,12,64215,1354336 +4468,214,12,88005,1006866 +4469,283,12,84942,1325559 +4470,214,12,16239,108915 +4471,214,12,373397,1727052 +4472,372,12,241927,1244275 +4473,265,12,10425,45829 +4474,214,12,308,4446 +4475,265,12,10900,5602 +4476,265,12,21950,102429 +4477,214,12,75622,1024274 +4478,214,12,392882,1870571 +4479,214,12,181656,1165231 +4480,214,12,7006,43901 +4481,265,12,29907,141474 +4482,70,12,10204,1472328 +4483,214,12,94348,17211 +4484,214,12,228558,4584 +4485,283,12,1966,3192 +4486,163,12,336004,1438028 +4487,283,12,13853,2031 +4488,284,12,16074,79162 +4489,265,12,428355,24177 +4490,286,3,422550,1155986 +4491,214,12,10409,55904 +4492,214,12,56601,1291345 +4493,214,12,22007,16830 +4494,271,12,406431,1650624 +4495,271,12,66668,52042 +4496,214,12,201223,1136045 +4497,214,12,311324,54211 +4498,70,12,91679,1536581 +4499,283,12,1986,1342608 +4500,265,12,49950,7713 +4501,372,12,223485,1486939 +4502,214,12,578,5322 +4503,214,12,297702,1636840 +4504,214,12,43390,94115 +4505,214,12,5279,43388 +4506,214,12,9314,30209 +4507,265,12,3291,28632 +4508,265,12,9298,57202 +4509,214,12,1482,36188 +4510,283,12,10391,3965 +4511,322,12,10145,1403529 +4512,214,12,329865,39454 +4513,265,12,416569,5981 +4514,315,12,19244,84389 +4515,231,12,71859,888594 +4516,163,12,2567,7531 +4517,214,12,26679,95995 +4518,214,12,360249,6760 +4519,283,12,75595,959742 +4520,265,12,130925,7879 +4521,214,12,67,758 +4522,214,12,336004,4584 +4523,214,12,19174,1016528 +4524,214,12,36094,67066 +4525,271,12,55495,116155 +4526,157,3,322487,1821790 +4527,70,12,254679,1831340 +4528,214,12,119172,1069298 +4529,214,12,14088,1316313 +4530,214,12,310126,120024 +4531,214,12,9904,60216 +4532,393,12,177572,1461416 +4533,214,12,64784,1451788 +4534,214,12,2604,1117320 +4535,265,12,2300,1477240 +4536,214,12,262454,1093443 +4537,214,12,1554,17519 +4538,265,12,43241,51730 +4539,214,12,18990,29664 +4540,214,12,9956,60916 +4541,214,12,341174,41332 +4542,214,12,42402,15671 +4543,214,12,62034,1538520 +4544,396,3,55505,1447503 +4545,214,12,81616,45135 +4546,214,12,82448,915068 +4547,265,12,36785,116199 +4548,265,12,10849,6993 +4549,283,12,4476,21517 +4550,265,12,44414,1127653 +4551,265,12,18665,552204 +4552,214,12,22051,1057657 +4553,70,12,7555,65191 +4554,271,12,2613,1213174 +4555,265,12,330947,1018975 +4556,348,12,77459,1821414 +4557,214,12,401222,998227 +4558,265,12,10590,20720 +4559,214,12,31385,592883 +4560,283,12,335778,1338387 +4561,283,12,50725,224387 +4562,283,12,241254,9545 +4563,214,12,364379,1523861 +4564,214,12,31671,16514 +4565,300,12,1586,60896 +4566,283,12,172828,1289046 +4567,283,12,82448,19919 +4568,214,12,163870,1120202 +4569,265,12,4133,4767 +4570,214,12,788,2157 +4571,283,12,30844,1195356 +4572,214,12,8948,41723 +4573,214,12,405882,16644 +4574,265,12,1813,17630 +4575,283,12,54022,5328 +4576,214,12,284135,150975 +4577,214,12,237584,1621355 +4578,214,12,3035,1557 +4579,214,12,419522,50629 +4580,283,12,16659,1392727 +4581,265,12,12528,62929 +4582,214,12,15371,78174 +4583,214,12,132122,15133 +4584,214,12,18569,3248 +4585,214,12,33611,1056294 +4586,70,12,170936,11438 +4587,265,12,11058,31520 +4588,214,12,11364,15344 +4589,283,12,6440,5328 +4590,283,12,9664,7786 +4591,265,12,9894,8859 +4592,265,12,26323,4123 +4593,265,12,30995,1371269 +4594,214,12,16066,79134 +4595,214,12,329440,39454 +4596,214,12,279096,133368 +4597,283,12,12536,933574 +4598,214,12,21566,1540331 +4599,214,12,26961,1019711 +4600,265,12,82696,40383 +4601,214,12,39766,1321444 +4602,265,12,49847,62345 +4603,214,12,49391,10747 +4604,214,12,179826,7775 +4605,70,12,102222,1121985 +4606,265,12,4441,37274 +4607,214,12,178,2182 +4608,283,12,613,710 +4609,214,12,129966,586297 +4610,265,12,31586,9250 +4611,214,12,26689,60587 +4612,70,12,246403,135334 +4613,214,12,101852,80207 +4614,93,12,42418,1127855 +4615,214,12,352197,1055233 +4616,214,12,9815,59526 +4617,214,12,42453,63670 +4618,214,12,329865,554 +4619,283,12,28263,1886632 +4620,214,12,330333,1398142 +4621,214,12,198652,220051 +4622,364,12,70046,272150 +4623,214,12,318553,1591268 +4624,283,12,302528,190936 +4625,265,12,1589,1481527 +4626,214,12,237756,22808 +4627,214,12,508,7019 +4628,163,12,177572,1112517 +4629,214,12,37917,190 +4630,265,12,209263,75625 +4631,214,12,2046,7780 +4632,214,12,103689,32463 +4633,283,12,37686,6052 +4634,163,12,308174,62290 +4635,214,12,338189,1034358 +4636,265,12,4982,40375 +4637,283,12,96936,1313484 +4638,214,12,83714,18342 +4639,265,12,98125,120449 +4640,214,12,44945,14409 +4641,163,12,244316,1796688 +4642,214,12,60855,62901 +4643,214,12,64398,67 +4644,70,12,47426,1365886 +4645,265,12,49391,68334 +4646,70,12,42267,1226304 +4647,283,12,330459,474 +4648,265,12,337958,1583404 +4649,214,12,2669,2384 +4650,318,12,77930,1536630 +4651,214,12,242097,1201 +4652,265,12,11172,1296 +4653,214,12,51881,148267 +4654,265,12,307081,1124533 +4655,322,12,52454,1630393 +4656,214,12,128154,1086430 +4657,214,12,11511,9184 +4658,318,12,2567,1574657 +4659,300,12,8467,55164 +4660,214,12,109417,33624 +4661,214,12,27941,108738 +4662,265,12,258480,948288 +4663,265,12,8942,991786 +4664,214,12,69060,1060230 +4665,283,12,1539,11944 +4666,271,12,245700,1434863 +4667,214,12,327528,69845 +4668,283,12,22267,2952 +4669,163,12,244458,1424052 +4670,283,12,362703,1314170 +4671,283,12,16784,7494 +4672,283,12,19621,41388 +4673,214,12,38303,74729 +4674,214,12,141,1588 +4675,214,12,209263,230690 +4676,214,12,259695,880 +4677,214,12,69266,9181 +4678,163,12,360784,1514419 +4679,265,12,413998,7017 +4680,265,12,858,2162 +4681,214,12,8870,1296 +4682,372,12,316654,1676027 +4683,214,12,9555,57958 +4684,214,12,15325,928406 +4685,214,12,11917,2146 +4686,70,12,14047,1392618 +4687,265,12,949,376 +4688,265,12,393732,931703 +4689,214,12,31995,10921 +4690,214,12,2486,2043 +4691,214,12,408755,1660967 +4692,265,12,6557,21146 +4693,271,12,16638,961284 +4694,214,12,29382,103690 +4695,265,12,18111,22040 +4696,265,12,394822,1114957 +4697,37,3,383538,1851882 +4698,214,12,10063,62686 +4699,300,12,2662,60500 +4700,265,12,9779,66963 +4701,214,12,9803,57003 +4702,214,12,49642,65981 +4703,283,12,17771,7800 +4704,214,12,17082,81222 +4705,372,12,17654,1272983 +4706,265,12,184098,6874 +4707,214,12,19754,21961 +4708,214,12,29787,66876 +4709,244,3,413421,1785032 +4710,214,12,73723,5720 +4711,283,12,481,6530 +4712,214,12,10103,63431 +4713,372,12,327,36081 +4714,265,12,194101,210705 +4715,283,12,10193,57673 +4716,283,12,253257,66493 +4717,265,12,172828,93189 +4718,283,12,14430,7364 +4719,214,12,1589,1517810 +4720,214,12,27150,14137 +4721,265,12,259395,62161 +4722,214,12,84333,1313359 +4723,283,12,62837,19689 +4724,283,12,28510,25757 +4725,283,12,138222,1034748 +4726,389,12,9472,1567956 +4727,265,12,99567,38061 +4728,214,12,14262,76510 +4729,214,12,10897,66883 +4730,163,12,31146,956624 +4731,265,12,4953,10830 +4732,265,12,82687,15892 +4733,214,12,58133,66852 +4734,214,12,2293,7779 +4735,163,12,110416,1545138 +4736,214,12,9030,56737 +4737,265,12,329286,60149 +4738,322,12,284052,1632604 +4739,265,12,325385,1193081 +4740,214,12,230266,135118 +4741,214,12,17170,50855 +4742,231,12,39907,31037 +4743,271,12,36785,116207 +4744,271,12,10724,1642433 +4745,265,12,15907,2986 +4746,214,12,11639,12401 +4747,163,12,10219,52042 +4748,265,12,329010,994455 +4749,393,12,206647,36108 +4750,283,12,105,598 +4751,271,12,107073,1481501 +4752,214,12,41378,70676 +4753,214,12,118257,592944 +4754,283,12,4913,1034748 +4755,265,12,7555,1307 +4756,214,12,429200,94457 +4757,265,12,173205,1852960 +4758,214,12,29424,103816 +4759,244,3,45527,40608 +4760,214,12,9943,16822 +4761,214,12,46930,137832 +4762,214,12,764,11359 +4763,214,12,236737,1074327 +4764,283,12,114096,1221 +4765,265,12,268920,1491120 +4766,214,12,10178,4081 +4767,283,12,206563,111100 +4768,393,12,134201,1396513 +4769,214,12,26954,97859 +4770,70,12,11202,948764 +4771,214,12,33788,12232 +4772,265,12,4960,15906 +4773,70,12,31127,6728 +4774,214,12,31713,20098 +4775,214,12,340027,62240 +4776,283,12,251227,255801 +4777,214,12,35292,36615 +4778,214,12,201223,1316798 +4779,214,12,85640,543946 +4780,214,12,102382,7626 +4781,214,12,341077,1554130 +4782,372,12,341689,1677701 +4783,214,12,10303,3392 +4784,214,12,9312,43518 +4785,214,12,9366,8246 +4786,283,12,9042,3965 +4787,265,12,28774,1621220 +4788,283,12,19594,1322149 +4789,283,12,18506,2678 +4790,214,12,41142,108847 +4791,265,12,169934,1693200 +4792,214,12,42709,70366 +4793,214,12,38807,124504 +4794,214,12,286873,65586 +4795,265,12,199575,75725 +4796,214,12,306555,1306688 +4797,283,12,339547,68079 +4798,214,12,334,4762 +4799,265,12,314065,69986 +4800,214,12,15316,622844 +4801,283,12,16899,970 +4802,265,12,21742,94235 +4803,214,12,896,12160 +4804,271,12,511,7102 +4805,214,12,42739,15586 +4806,265,12,55156,105418 +4807,214,12,4960,35180 +4808,393,12,283445,1533529 +4809,283,12,1272,4249 +4810,214,12,71670,6867 +4811,214,12,82655,928455 +4812,214,12,52369,939460 +4813,393,12,8053,1708831 +4814,214,12,13834,75868 +4815,214,12,31413,145518 +4816,410,12,419430,1552063 +4817,361,3,339403,1635162 +4818,322,12,145135,1417888 +4819,214,12,205939,1085735 +4820,284,12,15472,1455313 +4821,265,12,312221,959114 +4822,283,12,40990,1567891 +4823,214,12,4344,40476 +4824,214,12,305932,1396859 +4825,163,12,5,37335 +4826,372,12,343173,1403459 +4827,70,12,140276,8501 +4828,393,12,17209,1176480 +4829,318,12,59962,1551703 +4830,265,12,10053,62557 +4831,70,12,13794,1049993 +4832,265,12,41283,54735 +4833,283,12,243940,39123 +4834,214,12,10003,1034749 +4835,265,12,358982,1505528 +4836,163,12,206647,8784 +4837,214,12,43514,86186 +4838,283,12,13763,1614970 +4839,265,12,9543,2446 +4840,265,12,61984,135238 +4841,214,12,12171,60261 +4842,372,12,14945,590303 +4843,163,12,383538,78217 +4844,214,12,6443,40475 +4845,214,12,177047,983720 +4846,214,12,277710,1462 +4847,214,12,28665,68602 +4848,265,12,71859,1884 +4849,265,12,15089,1447982 +4850,214,12,55420,222330 +4851,283,12,16232,51557 +4852,265,12,3087,2663 +4853,214,12,3072,4052 +4854,265,12,18731,105418 +4855,214,12,42267,52952 +4856,265,12,72711,1585959 +4857,214,12,10005,61848 +4858,283,12,84354,1161649 +4859,265,12,10033,10830 +4860,318,12,401164,1817472 +4861,265,12,122,1307 +4862,214,12,5279,12438 +4863,283,12,39800,1607207 +4864,372,12,70670,1123791 +4865,265,12,59961,5292 +4866,265,12,16066,79138 +4867,265,12,11172,1588 +4868,214,12,277778,114620 +4869,163,12,246741,55936 +4870,265,12,339419,1031201 +4871,322,12,2613,1800148 +4872,283,12,35337,8753 +4873,214,12,209244,1222229 +4874,265,12,119213,1152 +4875,283,12,81182,1398505 +4876,214,12,327528,69168 +4877,214,12,42182,17208 +4878,214,12,374416,120128 +4879,214,12,4476,21864 +4880,214,12,18045,1015545 +4881,214,12,39310,36188 +4882,214,12,123103,16847 +4883,214,12,39781,1313359 +4884,214,12,393079,134507 +4885,214,12,12454,3560 +4886,214,12,11206,3754 +4887,214,12,14543,76985 +4888,265,12,369366,1874668 +4889,214,12,11379,1059 +4890,214,12,10087,63127 +4891,265,12,42267,1500630 +4892,271,12,406431,1511482 +4893,283,12,122,61624 +4894,283,12,71825,11658 +4895,214,12,399790,126179 +4896,214,12,10142,1254 +4897,214,12,119010,169549 +4898,214,12,539,2636 +4899,265,12,43441,22598 +4900,214,12,25330,52042 +4901,214,12,157843,937171 +4902,265,12,77459,54204 +4903,214,12,193523,1173858 +4904,214,12,8847,56079 +4905,244,3,340101,1544665 +4906,265,12,264644,465 +4907,265,12,11003,66814 +4908,214,12,168676,131184 +4909,214,12,15256,1746321 +4910,283,12,412202,983911 +4911,214,12,985,5602 +4912,283,12,1922,19993 +4913,265,12,380057,1721517 +4914,214,12,15258,83343 +4915,214,12,11084,21441 +4916,107,12,356752,1841566 +4917,214,12,54242,89563 +4918,214,12,10299,18392 +4919,265,12,277967,71294 +4920,265,12,71859,73524 +4921,163,12,241254,132210 +4922,214,12,157351,1493530 +4923,214,12,25834,11289 +4924,265,12,3291,2946 +4925,265,12,253257,3110 +4926,214,12,113038,1056201 +4927,214,12,14885,1127831 +4928,283,12,241927,1318157 +4929,389,12,14145,1416996 +4930,271,12,227975,1775628 +4931,163,12,364410,1492886 +4932,271,12,29161,1099090 +4933,214,12,42664,18591 +4934,214,12,10872,770 +4935,214,12,4133,34849 +4936,271,12,11056,1418152 +4937,214,12,90030,29639 +4938,214,12,339312,1464979 +4939,265,12,336004,45832 +4940,214,12,393562,81087 +4941,299,12,8619,1619108 +4942,265,12,10204,56719 +4943,214,12,114719,49453 +4944,283,12,34496,1087623 +4945,265,12,15016,1005882 +4946,393,12,177677,1486198 +4947,214,12,68737,41289 +4948,292,3,339403,1635290 +4949,214,12,26936,31077 +4950,283,12,76203,1337656 +4951,265,12,9495,57708 +4952,214,12,21148,35475 +4953,214,12,9292,10933 +4954,214,12,87827,42736 +4955,214,12,139455,65753 +4956,265,12,330115,1308983 +4957,214,12,374618,1554760 +4958,265,12,13493,66896 +4959,214,12,16137,1098471 +4960,214,12,43252,7506 +4961,214,12,179715,1162242 +4962,70,12,336890,1721090 +4963,287,3,378018,1415897 +4964,163,12,2001,1319040 +4965,271,12,13678,1297469 +4966,214,12,146233,74038 +4967,283,12,136368,966797 +4968,214,12,57100,53218 +4969,214,12,37181,229931 +4970,70,12,339403,1278125 +4971,265,12,59961,1050643 +4972,214,12,169656,70799 +4973,214,12,9816,24051 +4974,283,12,14452,1094289 +4975,214,12,21950,86165 +4976,265,12,76163,67759 +4977,265,12,378441,62955 +4978,214,12,44303,6955 +4979,214,12,117,1254 +4980,214,12,328032,1544898 +4981,265,12,66113,63969 +4982,214,12,390991,84633 +4983,283,12,2108,1097 +4984,265,12,1595,6510 +4985,265,12,35052,47333 +4986,144,12,69605,8235 +4987,283,12,198663,3311 +4988,283,12,16659,1013424 +4989,160,3,405473,1371493 +4990,265,12,25653,231494 +4991,214,12,9963,61090 +4992,265,12,22803,983949 +4993,283,12,16358,6996 +4994,214,12,11397,11874 +4995,214,12,128215,1035749 +4996,283,12,356500,238120 +4997,214,12,253154,1098037 +4998,214,12,16486,34517 +4999,70,12,4703,664 +5000,283,12,8915,971393 +5001,265,12,10066,62739 +5002,214,12,17464,33009 +5003,214,12,45556,80682 +5004,214,12,56601,1291348 +5005,265,12,36175,232815 +5006,283,12,329712,1182173 +5007,372,12,20919,1099016 +5008,70,12,80592,98968 +5009,70,12,38920,1777488 +5010,214,12,135286,5781 +5011,214,12,10917,69048 +5012,286,3,245394,1792300 +5013,283,12,10351,938123 +5014,265,12,72711,93984 +5015,214,12,275060,1167896 +5016,214,12,9470,57607 +5017,214,12,41505,1318512 +5018,364,12,334538,91339 +5019,283,12,15616,13585 +5020,214,12,15616,45830 +5021,214,12,10871,869 +5022,214,12,210653,1302466 +5023,265,12,19101,1511139 +5024,214,12,10013,62017 +5025,265,12,218425,1312175 +5026,214,12,67,1125679 +5027,214,12,42987,39009 +5028,214,12,29638,98670 +5029,265,12,65787,8502 +5030,372,12,19996,588338 +5031,70,12,16083,79249 +5032,214,12,50725,40375 +5033,286,3,195796,1598795 +5034,214,12,361380,141707 +5035,214,12,10484,16927 +5036,214,12,80276,229972 +5037,372,12,37710,1538090 +5038,283,12,24094,1313055 +5039,163,12,294652,1485598 +5040,283,12,9963,60946 +5041,214,12,392818,933405 +5042,214,12,82519,756648 +5043,265,12,10946,43096 +5044,265,12,102362,59522 +5045,214,12,280030,53093 +5046,214,12,47065,77806 +5047,214,12,75233,1080782 +5048,315,12,407448,1789305 +5049,393,12,544,1568216 +5050,283,12,25520,3192 +5051,265,12,10077,52609 +5052,393,12,263115,1821916 +5053,214,12,8391,55660 +5054,372,12,37003,1670366 +5055,214,12,63281,1612377 +5056,93,12,13380,2874 +5057,214,12,39176,39106 +5058,322,12,14,1753775 +5059,300,12,8852,1190889 +5060,265,12,166221,42368 +5061,214,12,81560,1041473 +5062,283,12,8840,6347 +5063,265,12,352498,33341 +5064,70,12,10204,148886 +5065,265,12,79707,122179 +5066,271,12,336804,1574322 +5067,214,12,655,9882 +5068,214,12,31347,1352122 +5069,214,12,8584,4507 +5070,283,12,10543,495 +5071,214,12,128842,17295 +5072,283,12,351211,1034748 +5073,283,12,268174,1208698 +5074,214,12,30624,106602 +5075,214,12,1926,20030 +5076,265,12,327225,1019359 +5077,283,12,273404,1011188 +5078,265,12,17170,2211 +5079,214,12,36691,1884 +5080,214,12,339994,1706502 +5081,214,12,7353,52608 +5082,214,12,4538,38804 +5083,214,12,110608,1050075 +5084,214,12,37514,117840 +5085,214,12,118257,1818792 +5086,393,12,294254,1481552 +5087,214,12,17209,3956 +5088,214,12,13596,448476 +5089,283,12,56292,765144 +5090,214,12,152042,1315179 +5091,393,12,15019,1014915 +5092,265,12,12767,73570 +5093,214,12,11950,457 +5094,214,12,19855,85276 +5095,214,12,866,12998 +5096,265,12,11330,69015 +5097,372,12,77459,1681511 +5098,322,12,11397,1452689 +5099,70,12,42252,47926 +5100,214,12,20424,27033 +5101,70,12,55152,102609 +5102,189,3,339403,1355971 +5103,283,12,1574,17635 +5104,283,12,11202,9585 +5105,283,12,9778,5328 +5106,271,12,14873,1116915 +5107,265,12,122081,153933 +5108,315,12,55347,236612 +5109,163,12,2300,14715 +5110,372,12,28263,103148 +5111,214,12,253263,1292126 +5112,214,12,99846,101892 +5113,163,12,343934,16296 +5114,214,12,73144,568337 +5115,214,12,47792,10319 +5116,214,12,310568,1398227 +5117,214,12,3291,31511 +5118,271,12,29224,1092612 +5119,214,12,23367,95959 +5120,265,12,227156,971001 +5121,283,12,195796,1379594 +5122,214,12,7326,52446 +5123,265,12,28110,30904 +5124,231,12,91679,1782619 +5125,265,12,284052,15004 +5126,283,12,413547,1108802 +5127,286,3,392882,1104914 +5128,163,12,413547,1718139 +5129,283,12,93856,1335154 +5130,160,3,49074,1770451 +5131,265,12,10379,2236 +5132,214,12,71133,27378 +5133,372,12,37254,117197 +5134,283,12,272693,1176357 +5135,283,12,70046,959257 +5136,214,12,109587,229536 +5137,214,12,693,380 +5138,265,12,1966,954881 +5139,364,12,1586,1462820 +5140,214,12,263115,11092 +5141,372,12,40466,1760122 +5142,214,12,298722,1145014 +5143,283,12,3933,5489 +5144,283,12,120,1016176 +5145,214,12,20210,18350 +5146,265,12,193756,964875 +5147,265,12,105077,2385 +5148,265,12,44363,52989 +5149,265,12,362057,1494190 +5150,214,12,15239,78021 +5151,283,12,16358,13585 +5152,214,12,79871,123200 +5153,265,12,241258,1525141 +5154,283,12,4923,14141 +5155,265,12,51939,7467 +5156,283,12,3024,29650 +5157,163,12,307931,131799 +5158,271,12,16432,1418509 +5159,70,12,296941,1457039 +5160,163,12,365065,1526013 +5161,214,12,259997,1302509 +5162,283,12,2087,598 +5163,214,12,44502,229247 +5164,214,12,1833,19314 +5165,214,12,16135,53678 +5166,265,12,22477,6993 +5167,163,12,20941,145063 +5168,214,12,297762,18953 +5169,214,12,41211,937260 +5170,283,12,127560,1317282 +5171,358,12,1966,1733782 +5172,265,12,24756,101164 +5173,265,12,296288,1839938 +5174,283,12,8329,967367 +5175,214,12,6183,1844 +5176,214,12,38310,120099 +5177,265,12,16232,664 +5178,265,12,246403,1093640 +5179,214,12,14159,35771 +5180,214,12,9607,8965 +5181,283,12,69,434 +5182,322,12,10710,1126348 +5183,265,12,5393,43095 +5184,214,12,9977,55904 +5185,214,12,9292,551 +5186,214,12,37329,70567 +5187,265,12,14750,109876 +5188,214,12,39356,55941 +5189,214,12,128215,83415 +5190,265,12,157843,1202849 +5191,127,3,339403,1511252 +5192,271,12,1942,1138068 +5193,214,12,3423,32071 +5194,214,12,24918,67675 +5195,265,12,35052,73240 +5196,163,12,65759,59781 +5197,265,12,167073,1531843 +5198,283,12,2267,6347 +5199,283,12,82990,494 +5200,265,12,40990,1379420 +5201,144,12,59231,63714 +5202,214,12,52868,35475 +5203,214,12,108723,1205943 +5204,214,12,86413,933247 +5205,163,12,302528,18904 +5206,144,12,179103,1622153 +5207,283,12,10071,434 +5208,214,12,429200,1462979 +5209,214,12,157829,83002 +5210,283,12,12716,28690 +5211,70,12,19423,40608 +5212,214,12,16281,15000 +5213,163,12,9950,60785 +5214,283,12,171337,1318818 +5215,214,12,55420,45459 +5216,265,12,272693,104659 +5217,214,12,21828,20629 +5218,214,12,1164,1115008 +5219,214,12,85350,931948 +5220,214,12,76211,30286 +5221,214,12,71670,11641 +5222,231,12,216580,1114295 +5223,214,12,28169,78023 +5224,300,12,351211,1056043 +5225,286,3,142478,1117364 +5226,299,12,924,1551675 +5227,265,12,13567,74671 +5228,214,12,38437,99325 +5229,265,12,178,20784 +5230,265,12,26491,95535 +5231,283,12,23196,5776 +5232,271,12,102384,1536228 +5233,160,3,387399,1531775 +5234,283,12,2323,6347 +5235,214,12,74879,1531858 +5236,214,12,132601,1396311 +5237,283,12,370178,930784 +5238,214,12,773,17173 +5239,214,12,341886,1573319 +5240,231,12,400174,1630215 +5241,214,12,267931,2712 +5242,214,12,1450,953512 +5243,214,12,63858,41408 +5244,283,12,123109,2325 +5245,265,12,12591,59834 +5246,265,12,12593,1458353 +5247,348,12,284053,1412753 +5248,214,12,145813,457819 +5249,214,12,110412,1591026 +5250,214,12,356500,41845 +5251,214,12,43938,1066767 +5252,214,12,94204,1001529 +5253,214,12,28859,99897 +5254,214,12,33340,224591 +5255,214,12,150065,1141548 +5256,214,12,10008,61932 +5257,214,12,133458,83884 +5258,265,12,333103,57604 +5259,265,12,138372,937940 +5260,214,12,116488,142424 +5261,265,12,383538,1437178 +5262,231,12,572,1174 +5263,214,12,9664,8676 +5264,265,12,285270,1367914 +5265,214,12,664,9987 +5266,271,12,110416,1544255 +5267,163,12,1428,954600 +5268,283,12,12412,5290 +5269,265,12,366631,1130509 +5270,214,12,266285,1015 +5271,214,12,49018,995456 +5272,265,12,101325,1560957 +5273,265,12,58,2443 +5274,283,12,376501,1301658 +5275,214,12,54893,582824 +5276,265,12,216153,1242196 +5277,93,12,42418,23828 +5278,214,12,1942,834 +5279,214,12,202214,147899 +5280,283,12,92496,1016502 +5281,214,12,38286,120022 +5282,283,12,278621,1415884 +5283,283,12,1640,20540 +5284,271,12,25376,93652 +5285,322,12,15476,13036 +5286,265,12,276906,1331166 +5287,300,12,2323,1077893 +5288,214,12,4832,6193 +5289,214,12,45019,56829 +5290,214,12,413782,1332320 +5291,265,12,297814,62161 +5292,283,12,9296,6410 +5293,393,12,19255,1212071 +5294,70,12,37581,30174 +5295,231,12,48281,1179333 +5296,265,12,13792,75544 +5297,283,12,102629,59668 +5298,283,12,53150,1746079 +5299,265,12,47386,138771 +5300,214,12,212503,1434401 +5301,214,12,26180,57614 +5302,265,12,213681,54417 +5303,214,12,76757,8528 +5304,364,12,128866,1665452 +5305,214,12,796,11874 +5306,70,12,47426,1847718 +5307,265,12,110146,1485238 +5308,265,12,94671,1106273 +5309,265,12,38356,865 +5310,283,12,8988,2952 +5311,214,12,81475,238742 +5312,318,12,18843,1868976 +5313,70,12,254679,72501 +5314,265,12,407806,17455 +5315,70,12,19209,1365512 +5316,214,12,24746,116653 +5317,214,12,312831,56664 +5318,283,12,131966,949 +5319,214,12,5491,8891 +5320,214,12,297633,1399551 +5321,372,12,121598,1117880 +5322,283,12,15476,1392975 +5323,70,12,246860,1423727 +5324,265,12,23048,52805 +5325,214,12,296025,70896 +5326,214,12,286789,27851 +5327,214,12,21765,138616 +5328,214,12,524,7170 +5329,283,12,921,14912 +5330,283,12,7299,546 +5331,300,12,17332,8703 +5332,265,12,284053,7624 +5333,265,12,103731,1018975 +5334,265,12,43751,1387114 +5335,214,12,25695,131400 +5336,283,12,45649,1317573 +5337,283,12,271185,1493973 +5338,265,12,144680,1416459 +5339,214,12,43670,65782 +5340,214,12,14554,22598 +5341,214,12,41590,4700 +5342,214,12,369820,589383 +5343,214,12,19200,3658 +5344,265,12,1589,1234384 +5345,265,12,91679,1717752 +5346,265,12,15016,92083 +5347,265,12,401164,1817552 +5348,271,12,8888,56653 +5349,214,12,14011,1233653 +5350,214,12,193,2383 +5351,214,12,378441,1362644 +5352,214,12,203819,37276 +5353,265,12,329865,1018975 +5354,283,12,45556,1127864 +5355,214,12,196359,99665 +5356,70,12,178587,2089 +5357,265,12,1966,11204 +5358,214,12,10075,56839 +5359,214,12,359245,1493848 +5360,214,12,817,551 +5361,200,3,337339,1907218 +5362,214,12,11003,20821 +5363,283,12,42045,1484 +5364,283,12,63217,1516101 +5365,265,12,6,7719 +5366,214,12,16151,79686 +5367,214,12,9966,52451 +5368,265,12,362439,42368 +5369,214,12,21132,34849 +5370,144,12,10727,1584259 +5371,271,12,8329,1457164 +5372,214,12,356500,986415 +5373,214,12,8079,35742 +5374,214,12,340187,1579529 +5375,372,12,329440,1017343 +5376,214,12,177902,14972 +5377,214,12,52827,19395 +5378,70,12,330947,1650336 +5379,214,12,9385,24530 +5380,214,12,56906,57900 +5381,163,12,20312,35142 +5382,318,12,11975,1857388 +5383,283,12,13681,1530 +5384,70,12,16096,8971 +5385,214,12,301325,1382448 +5386,393,12,809,1377373 +5387,214,12,12255,23862 +5388,214,12,149870,1417 +5389,283,12,9423,18457 +5390,214,12,8617,59920 +5391,160,3,461955,1410307 +5392,214,12,69775,88802 +5393,214,12,48210,1066925 +5394,214,12,10265,64483 +5395,265,12,390747,548205 +5396,214,12,12447,51703 +5397,214,12,77117,1295480 +5398,214,12,42231,1121299 +5399,265,12,14878,56095 +5400,283,12,286873,1162253 +5401,214,12,117251,20294 +5402,283,12,312669,119179 +5403,283,12,310568,1598441 +5404,265,12,213681,56461 +5405,214,12,75761,58245 +5406,271,12,36243,1041470 +5407,214,12,67748,549311 +5408,265,12,371181,952425 +5409,214,12,10603,58408 +5410,265,12,14181,57430 +5411,283,12,10900,67702 +5412,214,12,89325,230690 +5413,265,12,244783,62238 +5414,283,12,30690,31464 +5415,214,12,1427,53643 +5416,214,12,35623,1087458 +5417,214,12,42501,19052 +5418,214,12,347807,86009 +5419,283,12,694,2288 +5420,214,12,277355,1075095 +5421,214,12,2454,5524 +5422,265,12,17046,15246 +5423,70,12,226188,1108577 +5424,265,12,29146,136509 +5425,214,12,20210,57048 +5426,214,12,264393,1830585 +5427,214,12,1819,19282 +5428,265,12,24090,62577 +5429,214,12,81475,259069 +5430,271,12,20221,81733 +5431,214,12,11361,69140 +5432,283,12,9950,1484 +5433,214,12,9703,12507 +5434,265,12,3682,59839 +5435,214,12,64807,13426 +5436,283,12,172847,1039317 +5437,214,12,572,7738 +5438,214,12,246133,1001546 +5439,283,12,38579,45848 +5440,265,12,45013,1583643 +5441,265,12,332079,98968 +5442,283,12,120854,1156050 +5443,134,3,381015,1828360 +5444,283,12,45431,63459 +5445,214,12,82817,53206 +5446,214,12,35026,54288 +5447,214,12,339408,1301687 +5448,265,12,259694,1397011 +5449,265,12,377170,1529469 +5450,283,12,302528,933333 +5451,283,12,196469,67702 +5452,214,12,7972,53476 +5453,283,12,19338,1325 +5454,283,12,157351,3965 +5455,214,12,4832,39649 +5456,265,12,345925,1489060 +5457,214,12,26486,11957 +5458,214,12,325039,1303423 +5459,283,12,14476,3501 +5460,265,12,415542,37261 +5461,214,12,18684,2766 +5462,265,12,13807,64487 +5463,372,12,18392,66488 +5464,364,12,37003,1370831 +5465,214,12,60665,112749 +5466,265,12,414977,14639 +5467,271,12,105860,103118 +5468,214,12,18899,25236 +5469,70,12,49521,1459033 +5470,265,12,9543,57465 +5471,214,12,28,8330 +5472,283,12,20287,1730 +5473,283,12,25834,11458 +5474,214,12,44754,2997 +5475,322,12,522,1614189 +5476,283,12,4641,38699 +5477,214,12,40649,1176852 +5478,283,12,333354,1594173 +5479,214,12,33025,10601 +5480,265,12,376660,1749869 +5481,214,12,330459,489 +5482,283,12,96936,236608 +5483,214,12,57005,1760587 +5484,358,12,8467,12774 +5485,265,12,72711,224497 +5486,214,12,159128,996135 +5487,214,12,1926,223 +5488,265,12,9945,60704 +5489,265,12,167935,1035730 +5490,214,12,45527,23799 +5491,214,12,150201,1448868 +5492,265,12,324181,78720 +5493,214,12,1254,5425 +5494,70,12,329010,1587602 +5495,214,12,74924,12011 +5496,163,12,8619,6866 +5497,214,12,1662,7490 +5498,214,12,101998,17426 +5499,214,12,135652,1102871 +5500,265,12,13596,40513 +5501,265,12,348689,1621108 +5502,265,12,19545,136508 +5503,265,12,300090,982702 +5504,214,12,75595,589230 +5505,214,12,13505,21635 +5506,283,12,9286,5362 +5507,324,3,468707,1447791 +5508,214,12,3173,31038 +5509,214,12,9951,60820 +5510,265,12,38417,120388 +5511,214,12,8915,115102 +5512,265,12,256962,150660 +5513,265,12,341077,1113941 +5514,265,12,30091,7467 +5515,265,12,22894,116357 +5516,214,12,43646,32309 +5517,214,12,423377,1754601 +5518,163,12,257450,1718314 +5519,265,12,11800,1032 +5520,163,12,20941,1723680 +5521,265,12,117905,115533 +5522,271,12,151431,20135 +5523,271,12,8906,71411 +5524,214,12,108726,1412622 +5525,265,12,12289,1117864 +5526,214,12,44932,30689 +5527,265,12,24825,1274156 +5528,265,12,41522,58175 +5529,283,12,85446,224387 +5530,283,12,2259,4023 +5531,214,12,280617,229164 +5532,283,12,2274,2532 +5533,265,12,4978,13596 +5534,283,12,1586,561 +5535,214,12,66193,1195345 +5536,214,12,7445,54419 +5537,393,12,322,1375530 +5538,214,12,433,2106 +5539,214,12,10611,66121 +5540,231,12,98066,1346113 +5541,214,12,296025,1173190 +5542,265,12,152532,1287616 +5543,214,12,168259,75826 +5544,214,12,289225,1850517 +5545,265,12,47065,61689 +5546,265,12,82622,928290 +5547,214,12,105077,1115250 +5548,283,12,31875,982978 +5549,214,12,189,1040895 +5550,214,12,168259,8181 +5551,265,12,24405,4507 +5552,214,12,34052,111743 +5553,265,12,9870,52042 +5554,214,12,160261,981205 +5555,214,12,23048,57431 +5556,214,12,98355,158079 +5557,283,12,127493,2532 +5558,214,12,257081,8502 +5559,283,12,10344,956983 +5560,283,12,11321,1021206 +5561,214,12,153141,1668731 +5562,214,12,26331,18378 +5563,214,12,90395,148862 +5564,214,12,18405,35581 +5565,271,12,55433,222361 +5566,214,12,10937,23393 +5567,265,12,41402,961101 +5568,283,12,50725,45841 +5569,265,12,68721,113674 +5570,265,12,83770,1776 +5571,265,12,352372,543726 +5572,265,12,69165,47979 +5573,214,12,23239,544966 +5574,214,12,42701,20921 +5575,214,12,1950,329 +5576,214,12,127372,1104811 +5577,214,12,409,5486 +5578,265,12,284053,113674 +5579,214,12,90461,19405 +5580,36,12,5955,46813 +5581,265,12,5172,41892 +5582,265,12,375366,70522 +5583,283,12,172385,45848 +5584,214,12,21380,29394 +5585,214,12,414453,1731647 +5586,283,12,333663,7232 +5587,62,3,418437,1586400 +5588,318,12,311324,1335482 +5589,214,12,2179,22302 +5590,214,12,9423,869 +5591,283,12,38749,23349 +5592,163,12,326359,1443211 +5593,214,12,32085,1226 +5594,70,12,48609,14091 +5595,265,12,52696,85055 +5596,214,12,59965,1328141 +5597,300,12,11645,1306909 +5598,214,12,30690,28 +5599,265,12,84626,43517 +5600,214,12,10008,61924 +5601,265,12,12538,1307 +5602,283,12,13162,434 +5603,163,12,54752,41184 +5604,124,3,339403,1635229 +5605,214,12,89591,23863 +5606,265,12,345925,1673707 +5607,70,12,287903,1409487 +5608,283,12,180929,597 +5609,214,12,3037,2335 +5610,283,12,5123,2031 +5611,127,3,339403,1309899 +5612,214,12,140,309 +5613,265,12,409536,65918 +5614,214,12,10047,60 +5615,265,12,123109,15729 +5616,214,12,9803,46029 +5617,231,12,352094,1091336 +5618,214,12,208700,1353231 +5619,214,12,31995,67 +5620,214,12,157843,64058 +5621,163,12,327389,475380 +5622,283,12,39219,1416039 +5623,214,12,75363,115373 +5624,214,12,318973,1630371 +5625,70,12,246299,18573 +5626,265,12,25953,70567 +5627,70,12,122677,30680 +5628,283,12,10916,12942 +5629,265,12,33511,118168 +5630,214,12,115782,1148261 +5631,214,12,11011,2043 +5632,322,12,203833,124707 +5633,231,12,392386,933557 +5634,265,12,64928,2663 +5635,163,12,103597,36518 +5636,283,12,167810,549480 +5637,70,12,280092,1417867 +5638,214,12,152113,1121056 +5639,271,12,167810,1045125 +5640,214,12,8282,20488 +5641,214,12,17009,13620 +5642,214,12,86825,893 +5643,214,12,10869,5836 +5644,70,12,79593,1640573 +5645,214,12,239563,36427 +5646,214,12,2071,2043 +5647,214,12,37301,165752 +5648,300,12,329865,51689 +5649,393,12,664,20540 +5650,265,12,9260,1461 +5651,214,12,253257,67355 +5652,265,12,13596,37021 +5653,265,12,61400,233070 +5654,68,12,204802,1623839 +5655,265,12,7980,82197 +5656,214,12,70057,1136396 +5657,283,12,118677,5328 +5658,214,12,17895,82951 +5659,283,12,2135,6044 +5660,300,12,43596,1546261 +5661,315,12,111839,1053187 +5662,265,12,37003,59949 +5663,214,12,147829,9054 +5664,70,12,47194,1351463 +5665,283,12,130925,84493 +5666,214,12,248087,552532 +5667,265,12,10362,31515 +5668,265,12,322,1296 +5669,214,12,1259,8448 +5670,214,12,5899,21441 +5671,393,12,188927,1155432 +5672,283,12,112304,59668 +5673,214,12,24927,92844 +5674,214,12,4133,34857 +5675,214,12,82679,168798 +5676,322,12,13056,1447161 +5677,214,12,41115,18839 +5678,283,12,16066,76203 +5679,163,12,300654,1085083 +5680,265,12,298584,1577697 +5681,70,12,14047,1392617 +5682,214,12,43849,109853 +5683,70,12,403119,1394055 +5684,265,12,11449,30904 +5685,70,12,33364,1464775 +5686,300,12,17590,56790 +5687,300,12,10320,49907 +5688,283,12,6068,7185 +5689,70,12,8906,4219 +5690,214,12,10207,1899 +5691,70,12,30996,1371269 +5692,283,12,7551,2215 +5693,283,12,55534,959072 +5694,214,12,271185,1493979 +5695,214,12,157409,1075100 +5696,299,12,188927,1638547 +5697,283,12,772,2874 +5698,214,12,11307,57139 +5699,271,12,49717,1089955 +5700,214,12,19610,3805 +5701,214,12,100088,32299 +5702,322,12,2323,30869 +5703,214,12,82655,898556 +5704,318,12,9475,1800197 +5705,214,12,15697,30174 +5706,214,12,4551,8305 +5707,265,12,15179,57016 +5708,214,12,12599,73047 +5709,163,12,265180,1414820 +5710,265,12,44129,18789 +5711,214,12,38509,27038 +5712,214,12,132601,87130 +5713,231,12,257450,116409 +5714,214,12,1811,22115 +5715,265,12,13965,76199 +5716,283,12,127372,1409490 +5717,214,12,69404,581195 +5718,265,12,49524,42994 +5719,214,12,37779,935703 +5720,214,12,96238,62271 +5721,265,12,19545,30771 +5722,283,12,11351,1192007 +5723,265,12,9981,4769 +5724,271,12,42502,1475844 +5725,283,12,9314,58583 +5726,283,12,339994,1317573 +5727,300,12,9475,23226 +5728,214,12,19255,16297 +5729,214,12,11161,68389 +5730,283,12,186971,1144124 +5731,214,12,14886,3222 +5732,283,12,159211,1301334 +5733,214,12,44945,132209 +5734,214,12,242224,1364805 +5735,214,12,56596,1163116 +5736,214,12,1659,17732 +5737,389,12,9514,1642565 +5738,214,12,312221,16487 +5739,265,12,6023,47291 +5740,265,12,345003,998473 +5741,322,12,197,63371 +5742,163,12,19971,43811 +5743,214,12,11161,68388 +5744,214,12,10173,23880 +5745,214,12,28466,16547 +5746,214,12,13668,36427 +5747,214,12,59981,73411 +5748,163,12,20438,1018091 +5749,214,12,76397,578788 +5750,265,12,9472,57634 +5751,348,12,77459,1574077 +5752,214,12,11450,2948 +5753,214,12,360784,21036 +5754,214,12,5638,81537 +5755,214,12,203264,84108 +5756,265,12,9274,57102 +5757,214,12,2830,18976 +5758,144,12,9539,1638383 +5759,283,12,9675,21691 +5760,283,12,9042,47205 +5761,214,12,286521,65401 +5762,396,3,354133,1496086 +5763,283,12,97630,2073 +5764,265,12,333385,1287627 +5765,214,12,62837,47286 +5766,214,12,9948,60729 +5767,265,12,37935,121495 +5768,214,12,67696,955886 +5769,214,12,8988,120606 +5770,214,12,390343,1598098 +5771,265,12,11561,6994 +5772,265,12,16999,56839 +5773,265,12,82684,2947 +5774,265,12,2321,10999 +5775,265,12,116463,1188277 +5776,214,12,6183,1851 +5777,265,12,230179,986415 +5778,283,12,109614,2952 +5779,315,12,60599,1400485 +5780,265,12,97630,19658 +5781,265,12,170517,16412 +5782,169,3,82077,6964 +5783,214,12,8669,6737 +5784,214,12,49258,72509 +5785,214,12,362057,52259 +5786,214,12,64786,126795 +5787,214,12,230266,1290784 +5788,283,12,351211,3965 +5789,389,12,13056,1708325 +5790,318,12,10796,1646252 +5791,372,12,14295,47277 +5792,214,12,44682,1317050 +5793,393,12,13600,1555215 +5794,372,12,55735,1345669 +5795,214,12,48231,3056 +5796,265,12,83,1467442 +5797,214,12,434873,1375066 +5798,214,12,33427,59644 +5799,265,12,12720,73679 +5800,163,12,56669,23649 +5801,214,12,8014,45135 +5802,283,12,59726,45125 +5803,283,12,274483,1367029 +5804,214,12,9968,56171 +5805,389,12,12103,91161 +5806,283,12,49521,1486960 +5807,214,12,12144,40345 +5808,163,12,26636,149963 +5809,265,12,49018,999763 +5810,265,12,141733,84021 +5811,214,12,56725,935536 +5812,300,12,9504,4183 +5813,214,12,271039,1328181 +5814,372,12,35623,10899 +5815,214,12,262522,568267 +5816,214,12,17971,12863 +5817,283,12,26173,7511 +5818,315,12,137504,1530401 +5819,318,12,11351,1597213 +5820,163,12,362541,1193908 +5821,214,12,5482,44965 +5822,283,12,25132,5914 +5823,214,12,252680,1116038 +5824,214,12,42966,87347 +5825,214,12,25473,90055 +5826,265,12,10391,2487 +5827,214,12,12697,74002 +5828,214,12,401164,1468093 +5829,284,12,2105,1724866 +5830,200,3,337339,1769930 +5831,214,12,318973,1001799 +5832,372,12,3716,1568283 +5833,283,12,223485,37281 +5834,214,12,42487,101225 +5835,265,12,17654,1573064 +5836,214,12,293262,1392208 +5837,214,12,12631,51246 +5838,214,12,10775,65994 +5839,214,12,33333,138862 +5840,300,12,10724,4699 +5841,214,12,290379,84034 +5842,214,12,81001,25184 +5843,265,12,197611,30904 +5844,300,12,11577,1419936 +5845,214,12,78734,8502 +5846,283,12,6933,80605 +5847,265,12,423122,56159 +5848,214,12,1726,10850 +5849,214,12,394723,938781 +5850,265,12,179826,1411540 +5851,214,12,5804,45648 +5852,214,12,3078,2662 +5853,214,12,220809,1205893 +5854,265,12,8617,52371 +5855,214,12,5123,2184 +5856,214,12,12526,61090 +5857,318,12,69668,1537720 +5858,265,12,280840,1051295 +5859,214,12,39510,1037807 +5860,283,12,4248,546 +5861,70,12,48885,99921 +5862,214,12,11633,1690 +5863,318,12,11236,1823500 +5864,283,12,11547,1204439 +5865,265,12,36432,115356 +5866,265,12,29787,1391435 +5867,214,12,75778,1258215 +5868,265,12,284296,1252207 +5869,283,12,283995,1345610 +5870,214,12,45133,132242 +5871,214,12,11428,10058 +5872,283,12,46738,966444 +5873,271,12,15285,229519 +5874,214,12,286372,1117098 +5875,372,12,4344,40484 +5876,265,12,24238,92736 +5877,265,12,10204,1472329 +5878,322,12,12783,1427522 +5879,214,12,277558,104832 +5880,127,3,339403,1635221 +5881,214,12,171738,1312455 +5882,214,12,190955,66840 +5883,271,12,435,1574658 +5884,265,12,10596,17209 +5885,265,12,293262,1181321 +5886,271,12,14430,1521652 +5887,283,12,10529,7800 +5888,393,12,76170,1527913 +5889,214,12,360784,1514418 +5890,214,12,8340,1205469 +5891,214,12,137528,1196004 +5892,271,12,107985,122277 +5893,265,12,16687,18897 +5894,70,12,154972,1441217 +5895,214,12,69152,53188 +5896,283,12,82448,105472 +5897,214,12,175334,100047 +5898,70,12,13676,1205986 +5899,214,12,24746,62513 +5900,265,12,280092,1030966 +5901,214,12,5967,26013 +5902,265,12,325133,40383 +5903,265,12,301876,201028 +5904,214,12,257831,36964 +5905,265,12,13056,22141 +5906,214,12,33107,1129513 +5907,214,12,79593,4146 +5908,283,12,73562,928258 +5909,214,12,267852,1388532 +5910,214,12,407559,1075095 +5911,265,12,82492,33341 +5912,144,12,1976,50311 +5913,214,12,17136,8501 +5914,214,12,13551,74534 +5915,265,12,74430,3777 +5916,283,12,207270,1518589 +5917,214,12,11196,5985 +5918,214,12,10362,60187 +5919,265,12,59197,236844 +5920,214,12,227306,3184 +5921,37,3,356752,1841593 +5922,265,12,11788,70502 +5923,265,12,2662,61647 +5924,283,12,76170,436 +5925,265,12,25983,1015887 +5926,315,12,4133,18689 +5927,214,12,362154,1562574 +5928,214,12,10351,1204030 +5929,265,12,11879,11302 +5930,283,12,137145,30874 +5931,265,12,10857,67272 +5932,389,12,2662,1603329 +5933,214,12,51275,1607589 +5934,214,12,38769,8502 +5935,265,12,48677,7690 +5936,265,12,103731,965155 +5937,214,12,11450,4135 +5938,265,12,469,6404 +5939,214,12,28178,1205 +5940,214,12,196469,57838 +5941,214,12,94935,1662196 +5942,265,12,460135,110643 +5943,265,12,42941,1182913 +5944,271,12,282268,1383350 +5945,322,12,1624,62545 +5946,265,12,19348,6511 +5947,214,12,228970,46588 +5948,265,12,293982,1583082 +5949,70,12,59297,78340 +5950,214,12,55922,1261221 +5951,283,12,19754,1308255 +5952,372,12,367412,1496105 +5953,389,12,544,1780231 +5954,283,12,11855,3192 +5955,300,12,11618,11655 +5956,214,12,52021,1059147 +5957,214,12,17796,58084 +5958,283,12,3057,29941 +5959,283,12,378018,1116035 +5960,315,12,14811,66754 +5961,265,12,273106,1257970 +5962,107,12,381008,1784767 +5963,214,12,28,8333 +5964,277,3,64215,1354352 +5965,265,12,26558,78021 +5966,214,12,82684,323 +5967,283,12,9286,5363 +5968,70,12,9495,8528 +5969,214,12,146970,21230 +5970,283,12,14979,61860 +5971,265,12,268920,63522 +5972,265,12,46247,5720 +5973,70,12,179826,1394970 +5974,283,12,72431,25729 +5975,214,12,198663,1257754 +5976,163,12,285270,1103646 +5977,265,12,38579,376 +5978,214,12,262338,5985 +5979,271,12,413998,1895003 +5980,214,12,403431,62854 +5981,214,12,46286,51702 +5982,214,12,17622,1122009 +5983,70,12,82,8386 +5984,265,12,25646,94046 +5985,214,12,14295,2890 +5986,214,12,9950,4232 +5987,214,12,116463,589183 +5988,283,12,28774,91366 +5989,283,12,17175,59668 +5990,214,12,10097,19665 +5991,214,12,6644,11435 +5992,265,12,116463,589183 +5993,214,12,42329,66759 +5994,214,12,353728,1500501 +5995,214,12,4344,40475 +5996,214,12,206296,2163 +5997,265,12,71859,15726 +5998,214,12,43670,3658 +5999,283,12,112991,3192 +6000,265,12,256962,72970 +6001,214,12,91186,1100745 +6002,214,12,12446,55808 +6003,214,12,351211,565269 +6004,214,12,87296,18604 +6005,214,12,12526,72641 +6006,214,12,89008,321 +6007,265,12,188102,1845745 +6008,214,12,46286,15344 +6009,265,12,352327,1491843 +6010,283,12,53459,2073 +6011,214,12,16164,12997 +6012,214,12,34193,1120113 +6013,214,12,86768,933697 +6014,214,12,12158,776 +6015,265,12,79113,51702 +6016,322,12,44115,1394730 +6017,214,12,61400,53677 +6018,214,12,2321,16298 +6019,265,12,285270,1367910 +6020,214,12,419459,20743 +6021,214,12,82079,76045 +6022,214,12,11636,56720 +6023,214,12,302036,538295 +6024,265,12,8942,16863 +6025,265,12,10003,42995 +6026,214,12,24801,130569 +6027,358,12,66894,1472650 +6028,283,12,12,7903 +6029,214,12,91067,939109 +6030,283,12,11329,1034748 +6031,70,12,27966,33019 +6032,163,12,44363,1462812 +6033,214,12,107445,7592 +6034,214,12,286657,1354695 +6035,265,12,20361,1470169 +6036,265,12,367735,933558 +6037,214,12,48118,323375 +6038,214,12,10550,65615 +6039,101,3,50387,47638 +6040,214,12,245891,11266 +6041,265,12,49521,3805 +6042,283,12,10336,1319401 +6043,265,12,7220,20305 +6044,227,12,405473,1800051 +6045,214,12,26533,50311 +6046,283,12,301334,16899 +6047,70,12,31275,1853900 +6048,214,12,330459,166291 +6049,283,12,92285,103871 +6050,265,12,25872,94288 +6051,214,12,66893,234569 +6052,214,12,13823,376 +6053,283,12,100669,91366 +6054,283,12,52454,211900 +6055,214,12,223485,37270 +6056,265,12,394822,1815655 +6057,283,12,7006,23811 +6058,214,12,54660,12955 +6059,214,12,35,1128337 +6060,322,12,354859,1884735 +6061,214,12,10193,7879 +6062,214,12,264560,63553 +6063,214,12,9948,60726 +6064,214,12,77338,142982 +6065,214,12,28323,3452 +6066,265,12,1624,4506 +6067,214,12,118677,1018467 +6068,283,12,9426,7800 +6069,265,12,184098,59922 +6070,214,12,122081,1089527 +6071,160,3,312174,1400606 +6072,214,12,1859,2428 +6073,214,12,244403,983720 +6074,214,12,29376,13288 +6075,214,12,1498,1122495 +6076,265,12,12247,71877 +6077,214,12,17332,12922 +6078,70,12,72648,102972 +6079,214,12,22051,236604 +6080,283,12,16342,1089828 +6081,283,12,578,12435 +6082,70,12,332872,1125115 +6083,214,12,322443,1193191 +6084,214,12,52395,63904 +6085,265,12,10063,5140 +6086,271,12,47046,1601520 +6087,214,12,175331,87893 +6088,292,3,339403,1635295 +6089,214,12,10154,3222 +6090,214,12,1640,4232 +6091,265,12,1995,2523 +6092,283,12,2525,25801 +6093,265,12,13279,74581 +6094,214,12,45191,1623713 +6095,214,12,195796,1714346 +6096,70,12,11370,57900 +6097,214,12,370755,43387 +6098,265,12,40863,74200 +6099,214,12,42764,41859 +6100,214,12,10710,16731 +6101,214,12,139826,1124030 +6102,163,12,419459,1729057 +6103,214,12,48609,14090 +6104,214,12,405882,1783687 +6105,283,12,9352,1322483 +6106,265,12,90125,154857 +6107,214,12,1164,223 +6108,265,12,30973,107417 +6109,265,12,15936,78970 +6110,265,12,38322,78029 +6111,214,12,27102,6100 +6112,283,12,298935,41654 +6113,283,12,74629,19679 +6114,231,12,8414,1891677 +6115,214,12,234155,1624806 +6116,214,12,13437,1326197 +6117,265,12,227156,2095 +6118,265,12,11472,11712 +6119,265,12,10440,6994 +6120,283,12,393445,1364353 +6121,70,12,152042,1816778 +6122,214,12,78177,583260 +6123,214,12,338,4804 +6124,265,12,21451,14972 +6125,214,12,70981,915 +6126,265,12,11003,1298 +6127,214,12,65759,20629 +6128,214,12,29318,1026618 +6129,283,12,45649,16337 +6130,214,12,302026,12183 +6131,163,12,290764,1572612 +6132,70,12,1924,1430394 +6133,214,12,90125,53394 +6134,214,12,2611,18350 +6135,70,12,43252,7506 +6136,265,12,124071,5090 +6137,283,12,253310,9545 +6138,214,12,41505,63984 +6139,214,12,2087,21373 +6140,372,12,76788,1721400 +6141,214,12,201676,1183748 +6142,214,12,320736,79812 +6143,70,12,284053,1793535 +6144,214,12,9953,60860 +6145,163,12,283445,1346251 +6146,214,12,56143,8500 +6147,265,12,13056,60786 +6148,107,12,79593,1772273 +6149,271,12,696,10445 +6150,265,12,1691,52358 +6151,283,12,142989,1118144 +6152,70,12,32604,20016 +6153,265,12,333385,1619916 +6154,265,12,9951,60804 +6155,265,12,14069,1133288 +6156,214,12,13842,58148 +6157,283,12,194722,2325 +6158,214,12,266687,1085919 +6159,283,12,336050,1644759 +6160,214,12,13946,1039598 +6161,283,12,345003,71716 +6162,283,12,338676,6530 +6163,214,12,982,1931 +6164,214,12,4982,578 +6165,265,12,297762,79242 +6166,265,12,69165,1188703 +6167,283,12,314065,1016176 +6168,214,12,31380,1337237 +6169,70,12,40466,566360 +6170,271,12,1539,17366 +6171,214,12,27973,13570 +6172,283,12,25682,1120181 +6173,214,12,10011,61988 +6174,163,12,244786,1533516 +6175,271,12,325712,1653957 +6176,214,12,53407,44879 +6177,214,12,1049,376 +6178,214,12,323675,31121 +6179,283,12,88036,31128 +6180,214,12,177566,30053 +6181,214,12,85317,23430 +6182,300,12,311324,54250 +6183,214,12,72574,57435 +6184,214,12,29362,46088 +6185,283,12,47493,10471 +6186,70,12,580,1559470 +6187,265,12,213681,54873 +6188,163,12,365065,1526014 +6189,265,12,43923,53079 +6190,163,12,137528,1450503 +6191,214,12,216580,1395211 +6192,214,12,27265,11369 +6193,283,12,110146,1485232 +6194,214,12,253337,1308180 +6195,315,12,13075,79429 +6196,214,12,36992,1039360 +6197,265,12,201676,62903 +6198,214,12,3563,4505 +6199,283,12,33427,110645 +6200,163,12,37710,6047 +6201,214,12,19754,85155 +6202,265,12,38509,15248 +6203,265,12,39995,113880 +6204,214,12,82079,1445700 +6205,214,12,11873,70841 +6206,214,12,121688,1074635 +6207,214,12,11591,58231 +6208,265,12,336890,957826 +6209,214,12,38448,17016 +6210,214,12,1950,323 +6211,214,12,15935,75136 +6212,265,12,240881,1561731 +6213,214,12,11236,50871 +6214,265,12,178809,55592 +6215,214,12,16176,93329 +6216,389,12,359412,95845 +6217,283,12,10750,16516 +6218,283,12,7326,6044 +6219,283,12,146243,561 +6220,214,12,28586,101226 +6221,265,12,393732,1636994 +6222,214,12,26889,20835 +6223,214,12,27507,1497 +6224,318,12,8292,1537720 +6225,265,12,241254,21003 +6226,372,12,19398,76481 +6227,214,12,403431,1724979 +6228,214,12,53209,34742 +6229,70,12,10364,1586040 +6230,393,12,318781,1533490 +6231,214,12,6575,41039 +6232,214,12,152100,120128 +6233,214,12,19545,18604 +6234,214,12,74525,102500 +6235,214,12,214756,19282 +6236,214,12,15177,77970 +6237,214,12,10354,190 +6238,214,12,1589,67431 +6239,265,12,58903,56032 +6240,70,12,285840,1510472 +6241,283,12,11370,43679 +6242,214,12,24756,1175137 +6243,265,12,5413,462 +6244,214,12,76788,519324 +6245,214,12,199647,952397 +6246,214,12,48153,24756 +6247,214,12,342472,1225911 +6248,265,12,403,5322 +6249,283,12,13681,32400 +6250,214,12,166221,1023501 +6251,283,12,339419,6410 +6252,214,12,1452,9032 +6253,265,12,34482,77897 +6254,283,12,273106,1519553 +6255,214,12,315837,937174 +6256,214,12,124054,30053 +6257,214,12,12637,16514 +6258,214,12,9308,57244 +6259,389,12,9352,1586392 +6260,265,12,51209,227092 +6261,393,12,205584,989750 +6262,214,12,71120,36148 +6263,265,12,79707,1116327 +6264,214,12,4832,39650 +6265,214,12,323426,550165 +6266,265,12,69,410 +6267,265,12,66125,554 +6268,214,12,413452,1281371 +6269,271,12,12276,993813 +6270,70,12,29058,1344189 +6271,283,12,393732,1021206 +6272,265,12,12831,73910 +6273,214,12,26036,2091 +6274,265,12,264553,1332307 +6275,163,12,260001,1762483 +6276,265,12,259761,1302131 +6277,214,12,121824,35180 +6278,214,12,19996,19893 +6279,214,12,381737,973608 +6280,271,12,9352,1586393 +6281,283,12,10033,7415 +6282,283,12,228108,1021206 +6283,214,12,9516,57777 +6284,214,12,205891,1188272 +6285,265,12,369885,57465 +6286,265,12,8282,54319 +6287,214,12,18283,9055 +6288,214,12,239845,59044 +6289,283,12,366045,1462300 +6290,214,12,333371,1636657 +6291,214,12,76757,9339 +6292,214,12,308529,41355 +6293,214,12,1374,16514 +6294,283,12,19398,1307424 +6295,265,12,35200,194 +6296,214,12,26390,22815 +6297,214,12,32684,109699 +6298,265,12,21671,552254 +6299,283,12,331354,1473842 +6300,265,12,13596,61899 +6301,265,12,26331,58102 +6302,214,12,73697,570176 +6303,214,12,10917,69047 +6304,265,12,4497,37498 +6305,214,12,60281,1089521 +6306,265,12,325302,1465613 +6307,271,12,9028,1709072 +6308,300,12,6933,51449 +6309,265,12,9292,17169 +6310,214,12,391757,55078 +6311,265,12,18133,210341 +6312,265,12,9613,59716 +6313,300,12,2675,136 +6314,265,12,120,1309 +6315,283,12,117120,1301330 +6316,265,12,413579,2997 +6317,214,12,7014,51836 +6318,214,12,38775,121338 +6319,163,12,194,2421 +6320,163,12,167073,69374 +6321,265,12,346672,402272 +6322,214,12,15321,9149 +6323,283,12,18405,965592 +6324,265,12,14435,103867 +6325,214,12,280092,90591 +6326,265,12,102222,1394057 +6327,214,12,177677,15344 +6328,265,12,283445,1030966 +6329,214,12,53358,216436 +6330,322,12,345922,1387191 +6331,214,12,279690,1485161 +6332,265,12,19010,98132 +6333,214,12,113178,51666 +6334,265,12,46567,73631 +6335,214,12,2108,21643 +6336,265,12,1427,17081 +6337,231,12,403,2359 +6338,283,12,330115,45841 +6339,227,12,263115,1192510 +6340,265,12,331075,1136328 +6341,214,12,9495,1127815 +6342,214,12,301875,4447 +6343,214,12,16232,15150 +6344,214,12,5559,44118 +6345,283,12,9079,23349 +6346,70,12,82465,12955 +6347,214,12,24442,955886 +6348,265,12,18633,59418 +6349,322,12,4147,1558700 +6350,283,12,27332,6347 +6351,265,12,263472,66223 +6352,265,12,169760,1337626 +6353,214,12,336850,1211340 +6354,214,12,10585,13596 +6355,214,12,7459,9340 +6356,300,12,11017,11014 +6357,163,12,9946,57532 +6358,214,12,14695,816 +6359,283,12,476,6479 +6360,265,12,45610,1020053 +6361,214,12,76651,11553 +6362,265,12,40990,72747 +6363,214,12,45522,8406 +6364,315,12,155597,1570295 +6365,315,12,9716,1128228 +6366,214,12,13333,46323 +6367,214,12,56095,1133995 +6368,265,12,11358,57342 +6369,163,12,257444,1497973 +6370,283,12,28730,561 +6371,265,12,144680,5953 +6372,393,12,15019,928588 +6373,214,12,33592,9169 +6374,283,12,13965,76203 +6375,265,12,4551,37932 +6376,70,12,41171,1392762 +6377,265,12,27346,16525 +6378,214,12,44690,107065 +6379,283,12,76397,578791 +6380,265,12,327389,62585 +6381,214,12,380058,1569818 +6382,283,12,9059,5776 +6383,214,12,36236,5398 +6384,214,12,41609,30174 +6385,265,12,28176,1 +6386,265,12,332168,1177898 +6387,265,12,27573,223989 +6388,265,12,55347,236611 +6389,70,12,1986,33009 +6390,70,12,43817,961165 +6391,283,12,71672,2678 +6392,214,12,82492,928075 +6393,214,12,2963,11523 +6394,265,12,364690,1524920 +6395,214,12,429238,169046 +6396,214,12,13550,7228 +6397,214,12,418029,1685029 +6398,214,12,89325,1192558 +6399,214,12,138191,1074959 +6400,214,12,70981,578 +6401,283,12,68347,1126724 +6402,214,12,51104,85453 +6403,163,12,8342,1743677 +6404,283,12,33107,45841 +6405,214,12,39415,1433941 +6406,214,12,153795,550112 +6407,372,12,9987,61497 +6408,283,12,320011,1016024 +6409,299,12,339527,1566123 +6410,318,12,8414,1465333 +6411,214,12,135670,1103518 +6412,214,12,4882,39765 +6413,70,12,29449,1016873 +6414,265,12,182499,98565 +6415,214,12,9894,50728 +6416,265,12,56601,63775 +6417,214,12,332283,1747579 +6418,214,12,271714,47333 +6419,214,12,3478,32050 +6420,163,12,285181,45135 +6421,265,12,987,14825 +6422,300,12,11645,1309305 +6423,265,12,327389,61824 +6424,144,12,21135,1671233 +6425,265,12,358982,967225 +6426,286,3,370213,1815245 +6427,283,12,55720,17674 +6428,265,12,9771,58183 +6429,107,12,329865,1810168 +6430,265,12,2061,1348784 +6431,283,12,341689,1664466 +6432,214,12,211144,1391803 +6433,265,12,47386,138770 +6434,163,12,37710,76482 +6435,214,12,11589,78082 +6436,271,12,29224,1092635 +6437,283,12,214081,45148 +6438,283,12,27941,1099648 +6439,214,12,27739,98519 +6440,214,12,20312,27555 +6441,265,12,15179,1873048 +6442,322,12,8869,1429257 +6443,283,12,46286,7495 +6444,214,12,102632,1191609 +6445,265,12,62046,1393578 +6446,214,12,299828,57618 +6447,265,12,560,7646 +6448,265,12,481,6525 +6449,283,12,168676,29940 +6450,265,12,135670,29014 +6451,214,12,264729,79002 +6452,214,12,522,1382732 +6453,214,12,33364,30174 +6454,70,12,156711,53925 +6455,214,12,43434,18904 +6456,265,12,83714,4504 +6457,318,12,1586,1611813 +6458,176,3,439998,1145013 +6459,214,12,2924,2184 +6460,214,12,115565,28154 +6461,214,12,79707,74091 +6462,214,12,127521,1193191 +6463,70,12,408381,49729 +6464,214,12,323435,74426 +6465,322,12,29136,1896777 +6466,214,12,107073,1481474 +6467,70,12,28730,136477 +6468,214,12,9950,60780 +6469,214,12,155765,555549 +6470,214,12,138372,60148 +6471,214,12,9389,53229 +6472,214,12,11472,69527 +6473,214,12,393559,1817866 +6474,214,12,27276,551821 +6475,214,12,43441,89905 +6476,214,12,26514,44690 +6477,214,12,405473,1397973 +6478,214,12,371003,1544343 +6479,265,12,101325,1560961 +6480,283,12,316042,18457 +6481,265,12,415542,87281 +6482,265,12,26390,1117435 +6483,283,12,393732,68651 +6484,70,12,436,5879 +6485,214,12,245906,1192700 +6486,163,12,24086,52042 +6487,265,12,8954,56414 +6488,214,12,9828,59661 +6489,283,12,5279,668 +6490,265,12,101325,1560954 +6491,214,12,82767,1623713 +6492,283,12,365222,1611577 +6493,271,12,336890,1872503 +6494,70,12,10671,1308320 +6495,214,12,28974,13848 +6496,214,12,5511,2577 +6497,214,12,11886,57314 +6498,163,12,193756,143894 +6499,283,12,207641,23828 +6500,214,12,177677,58433 +6501,271,12,183412,1419628 +6502,214,12,171446,72061 +6503,214,12,62694,37361 +6504,283,12,424488,1057785 +6505,214,12,120172,1071589 +6506,70,12,73194,555890 +6507,127,3,339403,1566669 +6508,214,12,9301,1073 +6509,214,12,83896,137749 +6510,283,12,179154,3965 +6511,265,12,10897,2211 +6512,214,12,5393,43087 +6513,214,12,332979,1670662 +6514,283,12,31146,51954 +6515,163,12,1452,1121617 +6516,163,12,320736,67454 +6517,214,12,84720,993407 +6518,265,12,10663,19292 +6519,214,12,17926,62511 +6520,214,12,269173,1575766 +6521,271,12,282268,1383351 +6522,214,12,9389,53228 +6523,214,12,22899,7459 +6524,214,12,924,15220 +6525,214,12,106747,2294 +6526,393,12,313922,1476167 +6527,265,12,104720,8502 +6528,265,12,21352,6889 +6529,214,12,705,8502 +6530,265,12,17332,8703 +6531,214,12,1450,1355 +6532,214,12,9785,4507 +6533,265,12,213110,17311 +6534,265,12,11370,1581157 +6535,214,12,83588,929825 +6536,300,12,41963,950637 +6537,265,12,82520,928132 +6538,265,12,72912,552966 +6539,214,12,10050,56327 +6540,214,12,14615,10601 +6541,283,12,286372,1375922 +6542,265,12,264644,1310031 +6543,214,12,7459,8528 +6544,214,12,64456,89793 +6545,265,12,352327,1491839 +6546,214,12,100770,69559 +6547,214,12,87194,137486 +6548,214,12,340488,52960 +6549,214,12,11247,68773 +6550,265,12,323674,45405 +6551,300,12,266373,1539048 +6552,283,12,157351,1034748 +6553,214,12,16214,12955 +6554,214,12,7942,4584 +6555,214,12,262988,12405 +6556,283,12,10425,65118 +6557,214,12,239018,136555 +6558,163,12,9928,71730 +6559,163,12,177047,1462275 +6560,214,12,408203,1295700 +6561,214,12,79316,2043 +6562,214,12,29903,52134 +6563,300,12,172011,1463983 +6564,214,12,127901,1374159 +6565,265,12,9803,59346 +6566,283,12,10774,1046 +6567,214,12,9298,57203 +6568,70,12,37926,115257 +6569,265,12,66894,59839 +6570,283,12,14137,67702 +6571,214,12,1165,15727 +6572,214,12,25376,84714 +6573,283,12,273404,3686 +6574,214,12,323426,35780 +6575,265,12,18111,82689 +6576,214,12,332979,1670663 +6577,214,12,613,673 +6578,214,12,12536,35972 +6579,265,12,32657,61647 +6580,214,12,38987,995423 +6581,214,12,31258,30981 +6582,214,12,809,12106 +6583,214,12,10783,9248 +6584,214,12,258251,34967 +6585,214,12,5172,41895 +6586,265,12,258480,59839 +6587,265,12,232672,11772 +6588,283,12,38922,597 +6589,214,12,128270,5162 +6590,318,12,9514,1642567 +6591,214,12,121674,9021 +6592,214,12,11960,71066 +6593,214,12,110573,1427869 +6594,372,12,441728,1060635 +6595,70,12,25376,938781 +6596,372,12,21619,1597556 +6597,283,12,41171,52341 +6598,214,12,110115,1115632 +6599,283,12,242076,30876 +6600,214,12,413279,10850 +6601,283,12,336890,1035176 +6602,214,12,45211,14267 +6603,214,12,43773,399947 +6604,214,12,374618,112092 +6605,283,12,245700,16363 +6606,214,12,41211,94909 +6607,214,12,172847,1159030 +6608,322,12,329865,1384399 +6609,70,12,14534,1437639 +6610,214,12,12171,41286 +6611,283,12,245706,5669 +6612,214,12,38325,238618 +6613,214,12,10044,62416 +6614,283,12,345925,1020057 +6615,265,12,26864,1801312 +6616,214,12,285935,1766382 +6617,265,12,58903,1003527 +6618,214,12,45692,4123 +6619,265,12,10047,62528 +6620,214,12,107891,96550 +6621,265,12,302528,23824 +6622,283,12,19688,1701614 +6623,265,12,72207,52042 +6624,214,12,185934,1496834 +6625,265,12,257450,1103562 +6626,214,12,322785,1464110 +6627,372,12,393134,1853406 +6628,214,12,5767,13284 +6629,214,12,1818,18196 +6630,214,12,418969,1220799 +6631,393,12,293167,1543191 +6632,214,12,328429,1533795 +6633,283,12,172,2084 +6634,214,12,44693,131280 +6635,214,12,228074,14292 +6636,214,12,281590,551884 +6637,265,12,135708,64141 +6638,214,12,10760,66530 +6639,214,12,30174,1189783 +6640,265,12,16164,59839 +6641,265,12,24123,43095 +6642,214,12,56068,1291070 +6643,214,12,75174,39515 +6644,70,12,1691,1545803 +6645,265,12,184098,147711 +6646,214,12,87481,15158 +6647,214,12,110887,9078 +6648,265,12,452372,1238136 +6649,214,12,22267,5952 +6650,214,12,46145,84238 +6651,265,12,76163,45829 +6652,283,12,112961,1535952 +6653,283,12,864,5776 +6654,214,12,12289,11401 +6655,265,12,22881,51449 +6656,214,12,91334,939440 +6657,144,12,10409,1586980 +6658,214,12,11832,70640 +6659,214,12,7972,13521 +6660,214,12,331161,995353 +6661,214,12,148408,1208451 +6662,214,12,8954,2621 +6663,214,12,340103,57203 +6664,214,12,45156,983949 +6665,214,12,17622,62901 +6666,214,12,94874,1526865 +6667,283,12,345925,58855 +6668,163,12,755,5911 +6669,283,12,27414,2724 +6670,318,12,42418,1186736 +6671,163,12,17654,128 +6672,265,12,13562,89089 +6673,283,12,43141,936700 +6674,214,12,106049,1149938 +6675,265,12,60665,1056273 +6676,214,12,339994,1673684 +6677,214,12,1647,28867 +6678,70,12,97206,1341507 +6679,70,12,24405,71235 +6680,283,12,63493,59668 +6681,265,12,47342,1837875 +6682,265,12,341077,1554136 +6683,265,12,15143,63714 +6684,265,12,165,488 +6685,283,12,33273,6531 +6686,265,12,32029,30592 +6687,70,12,275696,1302899 +6688,283,12,1715,5328 +6689,283,12,326285,3965 +6690,214,12,36245,1246038 +6691,214,12,10643,50661 +6692,214,12,113175,182908 +6693,70,12,246403,19302 +6694,364,12,408381,1657547 +6695,265,12,11618,2209 +6696,163,12,302699,63263 +6697,70,12,22803,79249 +6698,214,12,11236,2871 +6699,283,12,50126,5362 +6700,265,12,323679,1267385 +6701,265,12,19053,551917 +6702,214,12,388764,1167602 +6703,271,12,241639,1276648 +6704,214,12,43228,31252 +6705,214,12,616,500 +6706,271,12,10391,1242939 +6707,372,12,298865,1498421 +6708,214,12,341007,1706351 +6709,265,12,35200,102232 +6710,283,12,15936,78981 +6711,265,12,14531,363761 +6712,299,12,5413,1556961 +6713,214,12,41283,69617 +6714,265,12,78028,1776 +6715,318,12,4982,1399484 +6716,265,12,297762,1121617 +6717,231,12,312831,1532264 +6718,214,12,98870,1464835 +6719,214,12,419430,1037124 +6720,214,12,7515,24953 +6721,214,12,10275,1342856 +6722,214,12,205587,37162 +6723,214,12,395982,1290491 +6724,283,12,32166,4023 +6725,214,12,60422,1078114 +6726,214,12,87349,15378 +6727,265,12,271714,4447 +6728,214,12,67,1125680 +6729,214,12,4520,957967 +6730,271,12,286192,1711833 +6731,283,12,14522,32984 +6732,214,12,7085,51893 +6733,283,12,18098,598 +6734,214,12,38055,60929 +6735,214,12,11959,62585 +6736,265,12,147773,20743 +6737,271,12,76871,41837 +6738,214,12,17144,101788 +6739,283,12,40208,71718 +6740,214,12,37926,85203 +6741,214,12,17906,82484 +6742,214,12,9475,769 +6743,214,12,10663,20821 +6744,214,12,114982,3560 +6745,283,12,2675,5669 +6746,214,12,18774,72709 +6747,265,12,217923,109429 +6748,214,12,171337,1024276 +6749,214,12,9717,12808 +6750,214,12,199415,1618549 +6751,265,12,37719,1497 +6752,283,12,61548,5328 +6753,271,12,9568,1546551 +6754,214,12,419430,84348 +6755,214,12,277355,1159030 +6756,265,12,19898,17080 +6757,265,12,459295,7404 +6758,70,12,323929,1733201 +6759,265,12,772,52042 +6760,214,12,12632,73173 +6761,393,12,12499,1536087 +6762,214,12,10257,64426 +6763,214,12,13596,62161 +6764,214,12,9076,56919 +6765,265,12,257344,71600 +6766,214,12,99698,1125522 +6767,265,12,232672,4485 +6768,214,12,193756,17211 +6769,214,12,1448,17250 +6770,265,12,14295,1516275 +6771,163,12,376660,21062 +6772,315,12,7220,1573621 +6773,214,12,49334,114830 +6774,214,12,33134,1014589 +6775,214,12,143169,54417 +6776,271,12,285685,1613803 +6777,163,12,82,944682 +6778,283,12,253310,1276602 +6779,214,12,301348,2130 +6780,286,3,76438,413089 +6781,283,12,3037,4222 +6782,283,12,189197,12228 +6783,214,12,12273,88142 +6784,214,12,242097,29705 +6785,283,12,141,1594 +6786,265,12,27346,101605 +6787,214,12,131739,1328381 +6788,214,12,43471,2439 +6789,265,12,64454,46037 +6790,214,12,11354,24176 +6791,214,12,268099,73645 +6792,214,12,4613,38577 +6793,160,3,405473,1330110 +6794,214,12,12289,71067 +6795,107,12,343173,1715546 +6796,372,12,85230,1585227 +6797,70,12,122081,1719404 +6798,265,12,25768,10520 +6799,265,12,70046,1011288 +6800,214,12,42206,2725 +6801,214,12,25501,49831 +6802,214,12,61548,8975 +6803,214,12,16436,1334044 +6804,265,12,101325,1560949 +6805,283,12,4592,1398505 +6806,283,12,16131,1262 +6807,300,12,31146,956624 +6808,214,12,91334,939444 +6809,271,12,46094,1408466 +6810,283,12,189,5914 +6811,283,12,258363,5914 +6812,265,12,340215,1630284 +6813,318,12,2613,1800152 +6814,214,12,44115,1102067 +6815,214,12,302802,1385132 +6816,214,12,115712,1161460 +6817,283,12,1125,495 +6818,271,12,18,8390 +6819,283,12,322443,1021206 +6820,214,12,329865,17825 +6821,283,12,270899,41025 +6822,393,12,1586,1611811 +6823,214,12,50838,74531 +6824,214,12,217923,66769 +6825,214,12,21786,934171 +6826,214,12,12759,19707 +6827,283,12,9945,1324476 +6828,265,12,98349,71797 +6829,70,12,413421,1439074 +6830,265,12,9815,59522 +6831,214,12,117212,1711771 +6832,214,12,9287,57169 +6833,214,12,197082,3559 +6834,214,12,15940,1462378 +6835,214,12,375012,1733919 +6836,283,12,14254,495 +6837,318,12,284564,1836960 +6838,265,12,4982,930 +6839,265,12,193756,968496 +6840,265,12,68737,61091 +6841,214,12,53882,1097598 +6842,214,12,7459,1091 +6843,214,12,15387,213337 +6844,231,12,356752,1841608 +6845,214,12,17687,8502 +6846,265,12,71825,59723 +6847,214,12,244268,1475286 +6848,214,12,390343,27710 +6849,322,12,54845,95848 +6850,214,12,25335,5981 +6851,265,12,76163,16830 +6852,283,12,12573,928414 +6853,214,12,9890,60010 +6854,265,12,10760,97547 +6855,315,12,145135,1417867 +6856,214,12,194853,1175180 +6857,214,12,43157,556859 +6858,271,12,77381,1537339 +6859,214,12,6557,4504 +6860,214,12,395883,1385132 +6861,214,12,4955,41006 +6862,163,12,42204,56224 +6863,214,12,28115,19099 +6864,265,12,122928,1018664 +6865,214,12,319999,1427399 +6866,389,12,318553,1647033 +6867,283,12,21132,960543 +6868,283,12,635,3191 +6869,214,12,81225,584713 +6870,127,3,383538,1825160 +6871,265,12,31586,3030 +6872,214,12,143169,1058615 +6873,265,12,169934,113672 +6874,265,12,63273,1005952 +6875,214,12,397422,977941 +6876,372,12,251227,1286556 +6877,265,12,118,1296 +6878,214,12,256836,1309564 +6879,265,12,10077,62686 +6880,265,12,834,1248221 +6881,265,12,32049,68693 +6882,70,12,180383,1388089 +6883,265,12,365942,21156 +6884,214,12,46387,110226 +6885,214,12,7515,1398188 +6886,265,12,274479,57634 +6887,214,12,2625,27542 +6888,214,12,11321,51612 +6889,265,12,110830,1050715 +6890,299,12,425774,1708033 +6891,214,12,9471,1588 +6892,214,12,36634,109727 +6893,214,12,71859,2946 +6894,265,12,14286,84375 +6895,283,12,11232,5328 +6896,214,12,283701,958519 +6897,283,12,246011,77250 +6898,265,12,423377,1754609 +6899,214,12,817,12073 +6900,214,12,38099,46323 +6901,283,12,30175,23905 +6902,214,12,430826,1617 +6903,372,12,167073,1192791 +6904,372,12,313074,1402658 +6905,393,12,93350,17635 +6906,245,3,444713,1323121 +6907,214,12,42307,940630 +6908,265,12,244783,3498 +6909,286,3,448449,1832740 +6910,283,12,9472,546 +6911,271,12,91459,1871117 +6912,214,12,52358,1355209 +6913,214,12,1661,1073 +6914,265,12,14435,40513 +6915,372,12,9914,60407 +6916,283,12,52395,8864 +6917,265,12,12255,71957 +6918,214,12,228205,1439277 +6919,283,12,345918,928272 +6920,214,12,26593,11435 +6921,214,12,22752,2106 +6922,70,12,117534,565227 +6923,265,12,228066,11812 +6924,214,12,1497,200992 +6925,283,12,781,710 +6926,283,12,127560,1317283 +6927,265,12,104528,1274156 +6928,265,12,8869,56151 +6929,214,12,84892,52445 +6930,372,12,9298,57201 +6931,214,12,29286,34358 +6932,322,12,263115,1821932 +6933,214,12,13090,12032 +6934,265,12,85446,54507 +6935,214,12,43432,6525 +6936,265,12,44303,52693 +6937,214,12,117942,1066309 +6938,265,12,351242,1417301 +6939,214,12,101669,65753 +6940,271,12,43316,1612835 +6941,214,12,755,11420 +6942,214,12,11302,68938 +6943,214,12,13542,23825 +6944,70,12,30363,28752 +6945,315,12,155597,1586002 +6946,286,3,31380,1337238 +6947,214,12,78854,56841 +6948,265,12,345922,11655 +6949,265,12,6341,7768 +6950,265,12,113038,1056204 +6951,214,12,54384,1522890 +6952,283,12,205724,1607207 +6953,70,12,15045,1614529 +6954,214,12,26149,1468019 +6955,214,12,11456,23213 +6956,70,12,28031,1516271 +6957,265,12,14452,1252429 +6958,322,12,1647,1339219 +6959,214,12,19423,43901 +6960,214,12,26581,30169 +6961,283,12,34193,598 +6962,265,12,8204,60268 +6963,214,12,352890,969845 +6964,214,12,55192,552000 +6965,214,12,5279,43387 +6966,214,12,16083,4232 +6967,265,12,8270,8701 +6968,283,12,154,1803 +6969,144,12,2567,1684368 +6970,265,12,244786,1319040 +6971,70,12,312831,74441 +6972,214,12,43778,1023088 +6973,214,12,56068,1291071 +6974,214,12,87908,147821 +6975,214,12,243940,1525141 +6976,265,12,32044,28715 +6977,214,12,246741,55934 +6978,214,12,256474,1201896 +6979,265,12,482,6779 +6980,265,12,326,12066 +6981,214,12,9080,339 +6982,265,12,334538,1658461 +6983,265,12,10805,66883 +6984,389,12,13849,1413954 +6985,283,12,17007,2045 +6986,214,12,323674,1423421 +6987,214,12,45273,1108433 +6988,214,12,7972,53457 +6989,214,12,88273,1015 +6990,214,12,62720,14446 +6991,214,12,26805,34494 +6992,163,12,413547,142632 +6993,322,12,1578,1494667 +6994,214,12,924,15219 +6995,214,12,152042,1315180 +6996,214,12,371003,1419130 +6997,283,12,169298,1333914 +6998,214,12,323679,1423463 +6999,214,12,15616,17209 +7000,283,12,32029,7511 +7001,163,12,26636,1438614 +7002,283,12,28178,7415 +7003,318,12,348631,1827318 +7004,214,12,17209,1273863 +7005,265,12,57683,17209 +7006,265,12,336691,1547708 +7007,214,12,12994,8215 +7008,214,12,283701,1276839 +7009,283,12,10409,79100 +7010,265,12,14286,84378 +7011,214,12,27573,11874 +7012,271,12,264525,1857568 +7013,265,12,62764,1817119 +7014,265,12,118,57465 +7015,265,12,9470,57618 +7016,283,12,33107,224387 +7017,265,12,241855,1001659 +7018,214,12,45273,1122359 +7019,214,12,52850,71572 +7020,107,12,284052,1278601 +7021,214,12,397422,1480620 +7022,214,12,16659,37269 +7023,265,12,109424,1046160 +7024,214,12,346672,1203578 +7025,322,12,8292,1339219 +7026,286,3,87229,79815 +7027,214,12,187028,930021 +7028,214,12,11697,8500 +7029,214,12,8556,5651 +7030,283,12,304372,5914 +7031,265,12,245700,73524 +7032,214,12,16342,41532 +7033,265,12,300654,2862 +7034,283,12,1813,14096 +7035,214,12,961,10520 +7036,265,12,109424,120606 +7037,214,12,28110,12882 +7038,265,12,11337,6993 +7039,214,12,9968,20305 +7040,393,12,354859,1533490 +7041,265,12,145220,52934 +7042,214,12,43645,57301 +7043,318,12,463800,1833830 +7044,214,12,344147,102428 +7045,214,12,32331,12955 +7046,283,12,1966,4023 +7047,214,12,15749,3183 +7048,265,12,72912,55592 +7049,214,12,374475,1386894 +7050,214,12,9956,27219 +7051,214,12,27276,551820 +7052,265,12,10201,11655 +7053,214,12,7445,1117438 +7054,283,12,285,2215 +7055,214,12,25682,591576 +7056,214,12,353533,116924 +7057,214,12,110416,96676 +7058,214,12,24238,92735 +7059,265,12,72313,43818 +7060,214,12,90110,1188446 +7061,265,12,245891,80788 +7062,300,12,9428,72964 +7063,265,12,60281,1018975 +7064,283,12,173205,83114 +7065,265,12,47065,61681 +7066,214,12,42430,1776962 +7067,214,12,28263,1479440 +7068,214,12,16005,16304 +7069,214,12,341689,17114 +7070,315,12,6947,1573111 +7071,214,12,329682,1437299 +7072,283,12,10724,668 +7073,265,12,34560,1673596 +7074,283,12,17609,4406 +7075,214,12,65416,543176 +7076,214,12,286873,1040873 +7077,118,12,21567,101866 +7078,214,12,21734,7660 +7079,214,12,11959,44827 +7080,214,12,616,9184 +7081,214,12,572,7736 +7082,265,12,174188,9612 +7083,70,12,30308,933697 +7084,107,12,121674,1319943 +7085,271,12,41213,1777274 +7086,265,12,9667,2946 +7087,214,12,322785,71303 +7088,283,12,66193,1099648 +7089,284,12,16074,79163 +7090,300,12,11172,72964 +7091,214,12,416635,1681429 +7092,265,12,68721,15004 +7093,214,12,9274,49301 +7094,410,12,329865,26678 +7095,214,12,269149,69798 +7096,265,12,38322,58145 +7097,214,12,98339,1067267 +7098,265,12,38950,33009 +7099,214,12,381645,45054 +7100,214,12,1381,8374 +7101,70,12,301804,1610493 +7102,283,12,76170,1046729 +7103,283,12,6417,49670 +7104,157,3,28820,44955 +7105,283,12,12450,29940 +7106,214,12,9966,61125 +7107,294,3,381015,1828364 +7108,214,12,151310,1317250 +7109,214,12,32143,1086310 +7110,265,12,65282,98968 +7111,214,12,31162,1627935 +7112,214,12,152113,66150 +7113,214,12,10070,62808 +7114,265,12,37917,56192 +7115,214,12,939,8502 +7116,271,12,81003,1452488 +7117,265,12,1498,20119 +7118,283,12,239566,19689 +7119,70,12,19757,1521326 +7120,214,12,13056,869 +7121,214,12,11259,6159 +7122,214,12,14945,1123065 +7123,70,12,8414,1891672 +7124,214,12,89921,1059065 +7125,214,12,24150,16848 +7126,214,12,110115,1115631 +7127,283,12,59861,546 +7128,300,12,79593,4146 +7129,214,12,35572,114380 +7130,214,12,227306,11701 +7131,214,12,36089,34112 +7132,163,12,56292,120015 +7133,265,12,36489,1313945 +7134,318,12,55420,1799869 +7135,271,12,176,1001817 +7136,214,12,47878,29875 +7137,265,12,10354,347 +7138,214,12,121003,82413 +7139,214,12,70351,49888 +7140,214,12,69103,2106 +7141,214,12,208091,1979 +7142,214,12,31527,2891 +7143,283,12,221667,1206731 +7144,283,12,15144,1097 +7145,271,12,11618,1765803 +7146,160,3,339403,1538232 +7147,163,12,244316,1426230 +7148,265,12,72648,1646196 +7149,265,12,10761,19288 +7150,70,12,63831,1125173 +7151,214,12,10173,10056 +7152,283,12,25643,54777 +7153,214,12,172705,1155289 +7154,214,12,1790,19100 +7155,214,12,105860,21230 +7156,265,12,392386,552243 +7157,283,12,263115,434 +7158,214,12,268920,368 +7159,283,12,2990,1262 +7160,214,12,38448,1252225 +7161,322,12,132363,1407748 +7162,163,12,397837,1818608 +7163,214,12,91333,104832 +7164,214,12,121598,1640603 +7165,214,12,97683,26457 +7166,214,12,126090,1599791 +7167,283,12,80125,4222 +7168,70,12,356326,1874698 +7169,163,12,11397,35693 +7170,70,12,393732,262636 +7171,315,12,89492,1552363 +7172,283,12,407559,53648 +7173,283,12,922,15426 +7174,300,12,122081,94541 +7175,265,12,139455,1281265 +7176,265,12,69315,20249 +7177,265,12,259975,13594 +7178,214,12,11933,42116 +7179,214,12,508,2236 +7180,283,12,4592,5328 +7181,265,12,16164,18844 +7182,214,12,57597,91659 +7183,214,12,9639,1318341 +7184,265,12,59961,60472 +7185,214,12,169934,1693211 +7186,271,12,260522,1303425 +7187,283,12,47493,3311 +7188,265,12,298865,935933 +7189,214,12,8064,53856 +7190,231,12,15749,954441 +7191,214,12,193756,50769 +7192,214,12,221667,1055806 +7193,265,12,427680,1758450 +7194,214,12,11653,56720 +7195,372,12,251227,1286557 +7196,358,12,1427,8803 +7197,318,12,77930,1784685 +7198,214,12,78568,72669 +7199,265,12,312831,1532262 +7200,214,12,55720,2707 +7201,214,12,228496,1337320 +7202,271,12,56937,1412146 +7203,283,12,21927,1094392 +7204,214,12,256962,72967 +7205,265,12,58396,228523 +7206,265,12,54893,1077372 +7207,163,12,170279,1665917 +7208,214,12,15653,71849 +7209,283,12,693,6410 +7210,214,12,9953,60866 +7211,70,12,28448,1130132 +7212,265,12,25643,54419 +7213,214,12,26880,6759 +7214,214,12,9885,60000 +7215,214,12,949,638 +7216,214,12,11296,7726 +7217,163,12,264553,1332308 +7218,283,12,207699,1308814 +7219,214,12,154442,1722922 +7220,214,12,10425,62775 +7221,265,12,1813,11772 +7222,265,12,205939,107796 +7223,214,12,31867,114408 +7224,214,12,84154,556153 +7225,214,12,24927,1597558 +7226,283,12,11788,1430071 +7227,265,12,13848,244625 +7228,214,12,18671,19099 +7229,271,12,80713,1394791 +7230,214,12,250574,84348 +7231,214,12,254193,1097956 +7232,214,12,27270,33008 +7233,214,12,27462,97796 +7234,372,12,9966,61119 +7235,214,12,13600,60246 +7236,283,12,11880,62215 +7237,265,12,99861,57027 +7238,70,12,356752,1841619 +7239,283,12,14979,81828 +7240,265,12,52021,19707 +7241,214,12,395992,2210 +7242,214,12,9286,21586 +7243,283,12,1450,959742 +7244,70,12,179826,140118 +7245,283,12,83430,1129439 +7246,315,12,8916,574003 +7247,214,12,13805,35694 +7248,214,12,10070,62810 +7249,283,12,403119,238120 +7250,214,12,35052,2862 +7251,364,12,134201,1366427 +7252,393,12,418437,1712631 +7253,265,12,5924,34494 +7254,283,12,2637,7495 +7255,372,12,57597,1515865 +7256,214,12,218778,1188380 +7257,271,12,52661,231258 +7258,214,12,378435,110331 +7259,70,12,185153,583508 +7260,283,12,332354,1451817 +7261,214,12,307081,20907 +7262,214,12,109213,107301 +7263,372,12,128866,1665451 +7264,214,12,9034,5162 +7265,283,12,16551,16570 +7266,283,12,16320,76015 +7267,214,12,43346,107454 +7268,214,12,109491,47286 +7269,214,12,11960,26724 +7270,214,12,216363,1602834 +7271,214,12,198993,555548 +7272,214,12,23966,96324 +7273,70,12,11358,1773127 +7274,283,12,7548,668 +7275,265,12,42684,54873 +7276,214,12,271714,46588 +7277,214,12,45649,1096441 +7278,265,12,11980,54601 +7279,214,12,18731,1336 +7280,283,12,257088,561 +7281,283,12,245891,4023 +7282,214,12,29355,12020 +7283,283,12,22683,2215 +7284,214,12,110491,1049450 +7285,265,12,14531,1231203 +7286,214,12,300669,11359 +7287,214,12,90590,101425 +7288,283,12,13834,35145 +7289,265,12,15749,10828 +7290,214,12,6687,1129797 +7291,283,12,11547,1001764 +7292,322,12,272693,1709326 +7293,214,12,387886,1770590 +7294,283,12,64678,1516456 +7295,265,12,9624,58207 +7296,214,12,31027,96616 +7297,214,12,241254,17211 +7298,214,12,354133,932139 +7299,265,12,50838,3490 +7300,265,12,246133,1281684 +7301,265,12,45556,1127860 +7302,214,12,41441,1307612 +7303,214,12,315837,7626 +7304,283,12,131737,29940 +7305,322,12,256962,1819166 +7306,163,12,18405,56282 +7307,214,12,12807,73744 +7308,214,12,36960,1510940 +7309,214,12,43931,60187 +7310,214,12,2241,5864 +7311,214,12,2280,3388 +7312,283,12,14976,58855 +7313,214,12,59962,2888 +7314,283,12,76170,3311 +7315,214,12,28736,12863 +7316,315,12,10567,65857 +7317,214,12,82448,840072 +7318,70,12,41171,14336 +7319,372,12,316154,1127473 +7320,265,12,30641,68607 +7321,283,12,42418,1192007 +7322,286,3,370213,1815246 +7323,214,12,414977,997743 +7324,214,12,11618,490 +7325,214,12,3870,5820 +7326,70,12,70500,1425844 +7327,265,12,102222,971109 +7328,26,12,16083,1384895 +7329,265,12,11908,70895 +7330,214,12,20287,12882 +7331,315,12,13205,1815498 +7332,214,12,10529,20305 +7333,214,12,5638,81518 +7334,214,12,8556,673 +7335,214,12,16866,62983 +7336,214,12,48502,40894 +7337,214,12,42345,6835 +7338,214,12,3780,34373 +7339,214,12,195269,65243 +7340,214,12,448992,1783758 +7341,214,12,2675,136 +7342,214,12,2196,22967 +7343,322,12,11247,1452689 +7344,214,12,11516,43993 +7345,283,12,354287,1429626 +7346,214,12,303542,1333166 +7347,70,12,344147,1496032 +7348,214,12,28775,41704 +7349,283,12,9298,1113 +7350,214,12,59965,21035 +7351,283,12,140509,1342698 +7352,214,12,26149,1257935 +7353,318,12,10657,1840134 +7354,265,12,180299,142023 +7355,265,12,10440,6993 +7356,163,12,2742,6202 +7357,265,12,47426,1666530 +7358,214,12,96888,20435 +7359,265,12,389972,1831332 +7360,214,12,70090,254996 +7361,214,12,1415,32608 +7362,372,12,13092,1117291 +7363,283,12,383140,1450499 +7364,214,12,58159,2106 +7365,214,12,42542,1015789 +7366,265,12,307081,1506016 +7367,214,12,63578,1128520 +7368,322,12,243568,1685939 +7369,214,12,43143,61821 +7370,214,12,12606,56887 +7371,214,12,101669,41896 +7372,214,12,16997,1128264 +7373,214,12,172386,31136 +7374,214,12,4806,18389 +7375,214,12,137182,65478 +7376,283,12,302042,63459 +7377,283,12,251227,1286586 +7378,283,12,49009,1539305 +7379,265,12,45610,582624 +7380,214,12,1662,42006 +7381,70,12,11902,1193 +7382,214,12,142320,575797 +7383,283,12,8247,1593 +7384,214,12,13827,75884 +7385,265,12,254869,1423062 +7386,393,12,76170,970836 +7387,393,12,374473,1317283 +7388,283,12,2355,6479 +7389,265,12,10930,67535 +7390,393,12,395883,1570581 +7391,214,12,260030,1045428 +7392,160,3,45527,113194 +7393,214,12,43491,1004059 +7394,214,12,24150,102352 +7395,214,12,16077,57464 +7396,265,12,12247,71876 +7397,265,12,42517,8333 +7398,265,12,81541,1354939 +7399,265,12,9968,6891 +7400,286,3,369697,51085 +7401,214,12,252034,139459 +7402,265,12,13965,76197 +7403,214,12,16999,997178 +7404,271,12,102382,72964 +7405,214,12,177566,79390 +7406,265,12,7511,20646 +7407,214,12,134350,1418284 +7408,265,12,348631,79149 +7409,283,12,13551,54777 +7410,214,12,66741,1322445 +7411,283,12,10201,5490 +7412,214,12,178809,1138934 +7413,214,12,8942,47099 +7414,318,12,13056,1708311 +7415,283,12,40466,1037914 +7416,283,12,75,545 +7417,214,12,30363,9884 +7418,265,12,134806,228 +7419,352,3,339403,86118 +7420,214,12,10692,9202 +7421,214,12,28592,33096 +7422,214,12,1694,27992 +7423,214,12,18682,94115 +7424,322,12,2662,1453320 +7425,271,12,26252,1549759 +7426,214,12,38654,9169 +7427,214,12,30141,2706 +7428,265,12,1726,937174 +7429,265,12,2186,11359 +7430,214,12,2046,7628 +7431,283,12,1966,1328731 +7432,214,12,16135,1252225 +7433,214,12,40879,1078475 +7434,265,12,14452,60401 +7435,214,12,180305,84348 +7436,214,12,69605,45279 +7437,214,12,17332,81696 +7438,214,12,375012,1733918 +7439,214,12,15356,61497 +7440,358,12,43641,1172894 +7441,265,12,336890,54734 +7442,265,12,122928,888594 +7443,283,12,10077,25755 +7444,163,12,260001,1324841 +7445,214,12,408024,1847624 +7446,214,12,17622,1122006 +7447,415,3,104700,11523 +7448,271,12,27814,1856490 +7449,286,3,84626,1154128 +7450,214,12,312221,16486 +7451,214,12,222297,1138401 +7452,70,12,9836,59769 +7453,214,12,31634,1206135 +7454,372,12,419192,1688383 +7455,283,12,77246,495 +7456,372,12,10119,63749 +7457,214,12,82626,914284 +7458,283,12,24679,423 +7459,214,12,2577,173 +7460,265,12,257444,1497976 +7461,265,12,11788,70503 +7462,214,12,73424,1544185 +7463,214,12,26252,9750 +7464,283,12,171581,1311274 +7465,283,12,58372,4023 +7466,214,12,10805,8879 +7467,214,12,131737,61095 +7468,322,12,379019,1780191 +7469,283,12,1984,13320 +7470,265,12,105325,7879 +7471,265,12,1271,2293 +7472,283,12,4338,5914 +7473,300,12,2001,60187 +7474,214,12,4497,37497 +7475,214,12,314388,73141 +7476,214,12,290825,1331168 +7477,163,12,8204,1473756 +7478,214,12,12412,5281 +7479,265,12,173467,74426 +7480,214,12,12767,6116 +7481,265,12,14830,87173 +7482,214,12,51141,368106 +7483,214,12,103731,554 +7484,214,12,336775,86047 +7485,214,12,172828,146836 +7486,265,12,86838,465 +7487,265,12,33427,110643 +7488,265,12,284296,18783 +7489,214,12,18094,1434549 +7490,214,12,18586,39821 +7491,214,12,12106,57439 +7492,265,12,11531,26849 +7493,265,12,263472,65622 +7494,271,12,129,78376 +7495,214,12,28774,66806 +7496,70,12,32082,68939 +7497,214,12,89591,23861 +7498,283,12,244117,94470 +7499,214,12,3037,73923 +7500,214,12,18238,63127 +7501,265,12,9613,43383 +7502,214,12,196235,1176351 +7503,322,12,413998,1895010 +7504,283,12,15762,6493 +7505,214,12,4592,36131 +7506,107,12,213681,1771617 +7507,214,12,49950,1128310 +7508,300,12,413998,1895004 +7509,214,12,423988,69031 +7510,214,12,64784,1451786 +7511,265,12,7555,16830 +7512,214,12,425774,1707965 +7513,283,12,18890,13585 +7514,214,12,18079,938780 +7515,214,12,340684,1468855 +7516,303,3,337339,1421687 +7517,107,12,10590,1744057 +7518,214,12,9890,60013 +7519,265,12,1640,69306 +7520,214,12,208700,1353232 +7521,214,12,38916,27098 +7522,214,12,28510,37710 +7523,265,12,9532,57430 +7524,214,12,387558,1643380 +7525,271,12,131366,1550883 +7526,214,12,11633,1694 +7527,214,12,810,12106 +7528,318,12,405473,1800050 +7529,214,12,103875,71056 +7530,214,12,13550,1016541 +7531,214,12,287587,1475895 +7532,265,12,219466,52159 +7533,214,12,265180,1293486 +7534,265,12,257345,1544261 +7535,214,12,168259,12835 +7536,315,12,10590,1550836 +7537,214,12,123025,34936 +7538,70,12,85196,1485210 +7539,214,12,320910,550165 +7540,271,12,17209,1399556 +7541,265,12,109439,59833 +7542,265,12,75300,193599 +7543,214,12,267931,1316223 +7544,214,12,14019,76249 +7545,107,12,418437,1816408 +7546,214,12,173205,113525 +7547,214,12,6951,53007 +7548,163,12,59962,11014 +7549,70,12,117534,225099 +7550,283,12,329010,94470 +7551,214,12,242,2871 +7552,214,12,109491,47287 +7553,265,12,30374,85453 +7554,214,12,339419,5472 +7555,265,12,177047,999832 +7556,214,12,158947,1784275 +7557,214,12,377447,105396 +7558,214,12,109453,116567 +7559,214,12,15875,8500 +7560,214,12,13312,939460 +7561,214,12,265226,1029114 +7562,265,12,1715,5326 +7563,214,12,180383,1388081 +7564,283,12,406052,1516479 +7565,265,12,75174,893 +7566,144,12,31146,1336060 +7567,283,12,8915,1127855 +7568,214,12,11547,69804 +7569,315,12,212530,1196917 +7570,214,12,29376,9055 +7571,265,12,22682,14523 +7572,70,12,122081,1719407 +7573,214,12,17577,955071 +7574,283,12,9555,12203 +7575,283,12,38150,81828 +7576,283,12,106747,5914 +7577,265,12,3638,1296 +7578,265,12,1165,6373 +7579,70,12,328111,237759 +7580,265,12,10257,64424 +7581,163,12,34723,49826 +7582,214,12,128081,194553 +7583,214,12,13591,1926 +7584,214,12,97630,51686 +7585,300,12,19209,8915 +7586,107,12,17209,1855388 +7587,265,12,52395,4170 +7588,214,12,352208,17087 +7589,265,12,10208,64183 +7590,214,12,6038,4507 +7591,283,12,1165,19993 +7592,144,12,297762,1824234 +7593,214,12,10075,57152 +7594,283,12,10193,84493 +7595,271,12,10484,66270 +7596,318,12,62728,1733786 +7597,214,12,8981,58326 +7598,318,12,857,1662360 +7599,163,12,245700,24178 +7600,214,12,12309,57097 +7601,214,12,385114,1584424 +7602,214,12,922,4835 +7603,214,12,342472,1800388 +7604,70,12,32657,1734859 +7605,214,12,16296,80251 +7606,283,12,9563,3192 +7607,214,12,54227,2106 +7608,214,12,269173,239663 +7609,299,12,228066,1574043 +7610,265,12,35651,724464 +7611,265,12,33273,979785 +7612,410,12,263115,1360433 +7613,265,12,9471,25600 +7614,214,12,35852,114830 +7615,265,12,966,14523 +7616,372,12,58013,1397754 +7617,214,12,37665,937703 +7618,393,12,333352,1609843 +7619,214,12,345918,1668608 +7620,265,12,11171,45769 +7621,283,12,26390,5914 +7622,107,12,924,1035176 +7623,214,12,284564,37021 +7624,214,12,10077,56032 +7625,214,12,23223,9202 +7626,214,12,34806,29 +7627,214,12,410718,11091 +7628,214,12,227306,1143709 +7629,70,12,230179,1504426 +7630,214,12,83899,83858 +7631,214,12,171337,65248 +7632,214,12,38742,10520 +7633,265,12,59678,70522 +7634,214,12,354859,2095 +7635,283,12,94725,11658 +7636,214,12,26603,38937 +7637,107,12,9472,935278 +7638,214,12,295964,5382 +7639,214,12,39979,1052172 +7640,265,12,393445,1705460 +7641,193,12,112722,219396 +7642,214,12,349028,1417215 +7643,36,12,339403,1635341 +7644,265,12,24831,102429 +7645,283,12,87826,961165 +7646,265,12,376660,1626019 +7647,265,12,38950,33008 +7648,283,12,262338,2635 +7649,271,12,379019,1780141 +7650,214,12,8247,376 +7651,283,12,11045,6493 +7652,265,12,50674,1042805 +7653,283,12,258363,39123 +7654,265,12,22477,6994 +7655,163,12,19688,1643804 +7656,214,12,137321,5575 +7657,214,12,91679,1554054 +7658,163,12,8342,1500323 +7659,283,12,283995,7232 +7660,214,12,773,4855 +7661,283,12,1969,949 +7662,70,12,336004,1413505 +7663,271,12,92635,97859 +7664,214,12,129851,100402 +7665,300,12,194,1415038 +7666,265,12,339419,999763 +7667,283,12,98277,1017246 +7668,214,12,2288,6476 +7669,283,12,356842,19993 +7670,214,12,32328,13620 +7671,283,12,4011,2874 +7672,372,12,354859,947694 +7673,265,12,329865,1646476 +7674,214,12,65887,937668 +7675,214,12,15560,77863 +7676,283,12,11798,3081 +7677,265,12,10162,64046 +7678,214,12,41402,20063 +7679,283,12,216580,1161580 +7680,214,12,209764,1293083 +7681,214,12,172386,1155650 +7682,265,12,9428,887 +7683,271,12,49097,1545053 +7684,163,12,276906,1331171 +7685,283,12,11058,2678 +7686,214,12,142402,1116500 +7687,214,12,285213,132177 +7688,265,12,44716,1174 +7689,265,12,14505,1658497 +7690,214,12,180383,938837 +7691,214,12,369885,30 +7692,265,12,56669,1202 +7693,265,12,241254,102400 +7694,214,12,16436,7843 +7695,214,12,11101,17732 +7696,322,12,76203,1393457 +7697,163,12,7555,55357 +7698,283,12,13437,60056 +7699,163,12,369366,1555617 +7700,265,12,205891,13668 +7701,300,12,153,1125607 +7702,265,12,94671,66120 +7703,214,12,39781,53277 +7704,265,12,75300,183760 +7705,214,12,70436,554 +7706,214,12,9677,58484 +7707,200,3,395992,1642267 +7708,283,12,41505,155152 +7709,283,12,2666,1392727 +7710,265,12,140,93 +7711,214,12,116780,39761 +7712,214,12,120972,5679 +7713,322,12,44363,1451418 +7714,265,12,21191,258 +7715,214,12,121998,1089534 +7716,214,12,10733,5162 +7717,107,12,10733,1313484 +7718,283,12,864,12971 +7719,214,12,97365,17496 +7720,322,12,27265,75706 +7721,300,12,1950,92301 +7722,283,12,332411,30874 +7723,214,12,43143,133868 +7724,214,12,291,4336 +7725,283,12,26149,2952 +7726,214,12,289712,73453 +7727,265,12,415542,1688144 +7728,214,12,108869,14523 +7729,214,12,318973,1494189 +7730,214,12,154972,112096 +7731,214,12,31498,993407 +7732,300,12,10710,57098 +7733,70,12,206647,81517 +7734,214,12,143169,965960 +7735,283,12,239845,8313 +7736,283,12,28665,1034748 +7737,318,12,227306,1866370 +7738,265,12,7459,1296 +7739,265,12,13056,937174 +7740,214,12,34459,180528 +7741,271,12,30363,1186069 +7742,214,12,1966,75476 +7743,214,12,773,17144 +7744,214,12,30091,1468946 +7745,214,12,8457,16158 +7746,265,12,79593,18389 +7747,214,12,22803,17276 +7748,214,12,4476,9181 +7749,214,12,39356,55940 +7750,265,12,4960,71556 +7751,265,12,9787,23541 +7752,214,12,43923,57343 +7753,144,12,297762,1824233 +7754,271,12,110416,1544254 +7755,214,12,2989,6929 +7756,214,12,78403,30053 +7757,265,12,174645,1157601 +7758,214,12,15725,110524 +7759,70,12,8358,10955 +7760,283,12,7551,4023 +7761,214,12,24411,56032 +7762,265,12,181533,10956 +7763,214,12,8665,11302 +7764,271,12,76788,1721401 +7765,265,12,417936,1652414 +7766,214,12,31277,810040 +7767,70,12,274857,1528429 +7768,283,12,48153,598 +7769,163,12,346672,4854 +7770,214,12,283701,33505 +7771,70,12,5753,1522493 +7772,283,12,9016,7903 +7773,283,12,76,3723 +7774,214,12,5955,18691 +7775,231,12,98066,56252 +7776,214,12,343934,56158 +7777,214,12,397365,1653485 +7778,214,12,16082,13521 +7779,389,12,118,1737955 +7780,214,12,15936,78975 +7781,372,12,2567,1739541 +7782,214,12,445993,1377410 +7783,107,12,98066,1759324 +7784,271,12,82767,1623733 +7785,231,12,298584,1474174 +7786,193,12,413782,1082638 +7787,389,12,14430,1520421 +7788,265,12,7304,61119 +7789,214,12,13580,18854 +7790,127,3,339403,1635194 +7791,322,12,10796,1754419 +7792,372,12,187028,1728934 +7793,283,12,15022,1303221 +7794,322,12,258251,1348597 +7795,265,12,15749,1277353 +7796,214,12,13090,4855 +7797,214,12,106747,1040897 +7798,271,12,72204,1449424 +7799,283,12,5237,1286663 +7800,265,12,70074,1103515 +7801,214,12,315837,1378249 +7802,214,12,340684,1472144 +7803,283,12,26593,78390 +7804,214,12,32044,22035 +7805,214,12,1578,11472 +7806,283,12,11855,4023 +7807,318,12,103332,1547223 +7808,214,12,14295,36188 +7809,318,12,8870,1190662 +7810,265,12,52369,54205 +7811,283,12,26293,19662 +7812,393,12,286873,1553461 +7813,214,12,26962,112834 +7814,70,12,241254,1367057 +7815,283,12,10929,5362 +7816,415,3,445602,1853355 +7817,265,12,42418,489 +7818,214,12,284289,3392 +7819,265,12,291871,1518920 +7820,214,12,63498,1345578 +7821,214,12,16921,984411 +7822,214,12,14262,76507 +7823,283,12,23599,1190236 +7824,163,12,54563,18196 +7825,214,12,159727,1141553 +7826,214,12,2300,57132 +7827,214,12,40807,1149550 +7828,214,12,227156,51843 +7829,214,12,64725,12737 +7830,214,12,2525,5398 +7831,214,12,15013,46296 +7832,214,12,246011,57515 +7833,214,12,6069,1059 +7834,214,12,9550,1351 +7835,214,12,109610,35329 +7836,292,3,339403,1635294 +7837,265,12,310133,1458718 +7838,214,12,12707,5810 +7839,214,12,4978,664 +7840,214,12,9816,18389 +7841,271,12,227975,29824 +7842,283,12,88005,935278 +7843,284,12,664,1400539 +7844,214,12,1450,1120537 +7845,214,12,98025,21230 +7846,265,12,5332,43383 +7847,70,12,47194,1351469 +7848,299,12,9352,1551675 +7849,265,12,25655,1025715 +7850,265,12,336004,65814 +7851,214,12,14703,32790 +7852,70,12,48207,1679409 +7853,265,12,14459,75136 +7854,283,12,108365,36525 +7855,283,12,4978,597 +7856,214,12,279690,35145 +7857,283,12,96724,474 +7858,214,12,6163,48310 +7859,214,12,30014,101496 +7860,283,12,257088,1450144 +7861,214,12,329440,1622445 +7862,283,12,601,597 +7863,214,12,17295,557864 +7864,265,12,51549,237310 +7865,265,12,429838,1371672 +7866,214,12,41097,1197468 +7867,214,12,239513,12477 +7868,214,12,25568,94237 +7869,214,12,67509,52739 +7870,214,12,1443,1776 +7871,283,12,18616,137198 +7872,163,12,347031,66488 +7873,214,12,1969,59 +7874,214,12,4012,35141 +7875,214,12,323426,35793 +7876,318,12,107250,1834281 +7877,214,12,1165,15728 +7878,214,12,407887,148676 +7879,322,12,345922,1815645 +7880,231,12,298584,1295448 +7881,265,12,9613,43384 +7882,214,12,8382,17208 +7883,283,12,44000,10340 +7884,214,12,60269,3056 +7885,214,12,156388,1145507 +7886,372,12,334538,75870 +7887,283,12,71700,62857 +7888,107,12,264525,1857579 +7889,214,12,120497,21311 +7890,283,12,38920,3108 +7891,265,12,121006,1497 +7892,70,12,42231,1359433 +7893,214,12,14138,81328 +7894,283,12,39013,19689 +7895,214,12,110146,946767 +7896,214,12,12631,37900 +7897,214,12,55505,36148 +7898,214,12,8053,18186 +7899,265,12,10004,3027 +7900,163,12,334538,1500500 +7901,214,12,49940,1545308 +7902,214,12,123283,1077696 +7903,214,12,4547,37926 +7904,283,12,2742,7800 +7905,265,12,76101,63653 +7906,214,12,11120,2690 +7907,214,12,244783,1128690 +7908,265,12,36361,14825 +7909,214,12,9815,59527 +7910,265,12,10025,10570 +7911,283,12,315846,1342698 +7912,214,12,4134,34873 +7913,127,3,339403,1635223 +7914,107,12,399790,1830189 +7915,214,12,82077,1392238 +7916,214,12,28673,101546 +7917,214,12,239103,1273916 +7918,265,12,9541,59839 +7919,107,12,38027,1762445 +7920,214,12,150065,42138 +7921,214,12,372226,550165 +7922,214,12,13075,4857 +7923,214,12,376501,113746 +7924,214,12,8665,55599 +7925,283,12,2565,3806 +7926,214,12,83899,1106691 +7927,214,12,67328,156029 +7928,70,12,2105,7409 +7929,214,12,42093,1401396 +7930,283,12,97365,89630 +7931,214,12,10714,11302 +7932,265,12,41522,68607 +7933,271,12,17609,1400322 +7934,214,12,125521,1462945 +7935,318,12,2675,1573110 +7936,214,12,27629,2662 +7937,265,12,18665,548474 +7938,283,12,109251,23349 +7939,393,12,176,1817646 +7940,214,12,51549,1634158 +7941,283,12,82684,13064 +7942,300,12,274857,9148 +7943,214,12,285908,936316 +7944,214,12,71672,1225665 +7945,214,12,122857,1099074 +7946,214,12,157829,1167896 +7947,265,12,7304,6891 +7948,265,12,82624,682687 +7949,214,12,18417,83061 +7950,393,12,15019,139929 +7951,265,12,343934,119152 +7952,214,12,274483,1367025 +7953,265,12,29083,57072 +7954,265,12,12454,5624 +7955,283,12,79113,1193192 +7956,231,12,360283,1655892 +7957,265,12,423988,1659213 +7958,214,12,146243,1327832 +7959,214,12,310888,53638 +7960,265,12,27970,1108294 +7961,214,12,43268,8502 +7962,283,12,137145,30876 +7963,283,12,29136,1803 +7964,300,12,32088,1656021 +7965,214,12,26581,90077 +7966,265,12,450530,1323533 +7967,214,12,25918,4081 +7968,393,12,277713,1533490 +7969,322,12,76163,1437721 +7970,265,12,167810,1276360 +7971,214,12,18634,113303 +7972,214,12,11351,56350 +7973,265,12,310137,1076024 +7974,283,12,366045,551521 +7975,283,12,196469,16337 +7976,107,12,31146,1841292 +7977,372,12,13092,1123133 +7978,214,12,330947,16398 +7979,214,12,11172,46347 +7980,265,12,401164,1817426 +7981,283,12,301804,1276602 +7982,265,12,341077,1554135 +7983,265,12,9882,59979 +7984,283,12,11370,91366 +7985,214,12,42040,14535 +7986,265,12,9963,57965 +7987,70,12,336691,1547702 +7988,318,12,4806,1538079 +7989,283,12,169,1097 +7990,70,12,214756,1367679 +7991,214,12,325385,1427094 +7992,283,12,2805,552421 +7993,283,12,284289,60665 +7994,214,12,6964,17698 +7995,214,12,42871,30919 +7996,283,12,290999,1262388 +7997,70,12,10204,117214 +7998,265,12,40990,977722 +7999,265,12,4953,40249 +8000,163,12,56906,226940 +8001,283,12,265208,41675 +8002,214,12,86168,10770 +8003,283,12,68721,7232 +8004,265,12,9314,57267 +8005,271,12,10008,1399556 +8006,214,12,87587,935267 +8007,163,12,278316,228834 +8008,283,12,37672,1072006 +8009,265,12,5393,43098 +8010,214,12,36325,96169 +8011,214,12,127913,79812 +8012,283,12,126889,51922 +8013,214,12,34650,19322 +8014,265,12,82696,215541 +8015,271,12,11645,1197674 +8016,265,12,3580,41892 +8017,214,12,16997,1128263 +8018,214,12,31264,136404 +8019,214,12,227700,1320499 +8020,214,12,46286,62511 +8021,265,12,186585,70567 +8022,70,12,333367,9824 +8023,214,12,345003,1838599 +8024,283,12,210047,94470 +8025,265,12,11137,68310 +8026,283,12,296025,13585 +8027,265,12,20715,225939 +8028,214,12,15935,75991 +8029,322,12,169,1423772 +8030,214,12,42187,127552 +8031,214,12,4111,34742 +8032,393,12,293660,1466537 +8033,70,12,336691,1547699 +8034,214,12,130957,1092489 +8035,283,12,379,1227 +8036,214,12,19688,57082 +8037,265,12,1450,1120540 +8038,265,12,122081,71332 +8039,265,12,284564,1680440 +8040,214,12,10897,38023 +8041,214,12,23515,230094 +8042,265,12,99861,113674 +8043,283,12,260947,156832 +8044,214,12,3172,31709 +8045,283,12,343934,805594 +8046,214,12,126319,59447 +8047,265,12,42517,8331 +8048,286,3,413579,1672757 +8049,163,12,63831,31011 +8050,214,12,215373,5724 +8051,372,12,337107,1681853 +8052,283,12,20544,23905 +8053,372,12,9514,48140 +8054,214,12,2567,66185 +8055,265,12,340101,15726 +8056,265,12,99861,7624 +8057,70,12,14217,39821 +8058,214,12,10708,2043 +8059,357,3,337339,1408386 +8060,322,12,638,9388 +8061,163,12,67822,1485470 +8062,214,12,147815,78747 +8063,70,12,188927,8850 +8064,214,12,16996,20742 +8065,265,12,65545,1687729 +8066,214,12,8079,53973 +8067,214,12,6079,11687 +8068,214,12,62764,77288 +8069,70,12,179826,1294886 +8070,265,12,22051,1102580 +8071,265,12,11377,57526 +8072,265,12,156711,1547762 +8073,284,12,46738,1536650 +8074,214,12,262786,1306689 +8075,214,12,10077,52036 +8076,214,12,7548,6949 +8077,265,12,9667,68693 +8078,265,12,76465,4123 +8079,214,12,7085,51892 +8080,265,12,97910,4123 +8081,265,12,9095,56969 +8082,214,12,8942,20487 +8083,214,12,403429,937514 +8084,127,3,383538,1851893 +8085,214,12,158942,1086286 +8086,214,12,288281,223752 +8087,283,12,24657,9888 +8088,214,12,10053,2043 +8089,283,12,24625,2952 +8090,214,12,1247,380 +8091,163,12,1691,1605889 +8092,271,12,4516,4400 +8093,214,12,29117,4109 +8094,214,12,92321,1817517 +8095,214,12,73723,570211 +8096,265,12,334,4767 +8097,315,12,25768,1547449 +8098,315,12,284053,1401784 +8099,70,12,166221,1188039 +8100,283,12,15356,61501 +8101,214,12,10986,32309 +8102,322,12,68387,1868473 +8103,214,12,16154,79729 +8104,265,12,418990,448526 +8105,265,12,19766,1212336 +8106,265,12,69315,1220834 +8107,300,12,11351,64744 +8108,214,12,20126,70886 +8109,214,12,49974,940810 +8110,265,12,213681,1771613 +8111,214,12,36657,7200 +8112,214,12,6977,2997 +8113,265,12,244458,550604 +8114,214,12,86829,1223 +8115,163,12,16938,1724912 +8116,265,12,49847,557855 +8117,214,12,153854,1468093 +8118,214,12,9836,58140 +8119,283,12,13668,1034748 +8120,214,12,54022,1521771 +8121,214,12,580,15663 +8122,372,12,226188,564601 +8123,214,12,31118,89192 +8124,214,12,9779,47285 +8125,265,12,10761,52681 +8126,214,12,83899,565269 +8127,214,12,5881,1059147 +8128,265,12,10632,41332 +8129,283,12,102,4477 +8130,214,12,164558,165899 +8131,214,12,363757,575797 +8132,214,12,6183,1847 +8133,214,12,50779,66593 +8134,214,12,9613,224 +8135,265,12,1647,21635 +8136,283,12,264644,11295 +8137,265,12,425774,1707968 +8138,283,12,140818,76571 +8139,214,12,48489,1135341 +8140,283,12,102629,960380 +8141,214,12,37710,4507 +8142,214,12,60086,154499 +8143,214,12,19855,52309 +8144,214,12,82687,56158 +8145,214,12,98566,54843 +8146,214,12,16074,79158 +8147,271,12,81110,1535455 +8148,265,12,13042,7879 +8149,283,12,352186,1412306 +8150,265,12,9441,1381730 +8151,214,12,37984,25236 +8152,265,12,10929,23420 +8153,271,12,47889,1604116 +8154,265,12,14370,14777 +8155,265,12,219466,73517 +8156,214,12,14830,35268 +8157,214,12,19244,84390 +8158,283,12,65759,17610 +8159,163,12,412851,1087893 +8160,265,12,1271,1102071 +8161,214,12,32690,20832 +8162,322,12,26390,1407210 +8163,283,12,303636,1547006 +8164,315,12,11472,1562448 +8165,214,12,229254,63747 +8166,283,12,31586,2874 +8167,283,12,107811,13585 +8168,214,12,9298,2238 +8169,214,12,43875,30174 +8170,214,12,205584,67759 +8171,70,12,42231,1315226 +8172,214,12,117251,511 +8173,283,12,245775,63129 +8174,265,12,9260,57049 +8175,214,12,327528,1170534 +8176,265,12,3682,8303 +8177,163,12,10925,74817 +8178,164,3,354287,1551797 +8179,214,12,79382,1062346 +8180,70,12,15559,1459115 +8181,163,12,325302,1281328 +8182,70,12,44283,1235078 +8183,214,12,45556,943469 +8184,283,12,16643,6479 +8185,70,12,59744,37366 +8186,214,12,310431,1492073 +8187,283,12,290764,224387 +8188,271,12,977,5030 +8189,265,12,418990,552566 +8190,214,12,4688,38938 +8191,214,12,13649,57614 +8192,214,12,262,376 +8193,214,12,44921,117423 +8194,214,12,343934,52160 +8195,214,12,277968,4780 +8196,214,12,238749,139614 +8197,214,12,5804,45647 +8198,107,12,11370,1798044 +8199,214,12,45132,1169254 +8200,283,12,3595,3275 +8201,265,12,70074,61921 +8202,265,12,99859,1085564 +8203,214,12,86608,4165 +8204,283,12,42309,63459 +8205,283,12,12104,6347 +8206,214,12,10050,62515 +8207,214,12,42251,102429 +8208,214,12,2172,69253 +8209,283,12,374614,435006 +8210,283,12,87293,1102488 +8211,265,12,257344,11772 +8212,283,12,428687,29941 +8213,214,12,273096,1034265 +8214,214,12,273404,1445358 +8215,265,12,28851,98616 +8216,214,12,47900,1132529 +8217,214,12,9563,5379 +8218,214,12,354133,1496064 +8219,283,12,9778,19680 +8220,265,12,63498,15246 +8221,265,12,9673,5651 +8222,214,12,110001,1074571 +8223,214,12,53230,1497 +8224,214,12,19338,1484703 +8225,265,12,329865,115033 +8226,214,12,209112,79243 +8227,318,12,14181,1545528 +8228,214,12,330333,229568 +8229,265,12,201085,1382496 +8230,214,12,423377,1754602 +8231,214,12,35,162931 +8232,265,12,7555,51030 +8233,214,12,352327,1288398 +8234,214,12,9827,29923 +8235,214,12,22894,1125191 +8236,283,12,15022,1303220 +8237,214,12,773,4857 +8238,265,12,7326,23541 +8239,372,12,9843,59853 +8240,214,12,308529,1654830 +8241,214,12,44936,1432700 +8242,214,12,302699,8181 +8243,283,12,10119,63751 +8244,214,12,11101,5238 +8245,265,12,110261,33009 +8246,271,12,73348,948764 +8247,214,12,10915,4669 +8248,214,12,15616,45829 +8249,231,12,270774,1877773 +8250,214,12,89492,41039 +8251,214,12,76059,99322 +8252,214,12,285840,190919 +8253,322,12,62630,1408405 +8254,265,12,9779,74038 +8255,265,12,82687,57634 +8256,265,12,375366,1346142 +8257,214,12,14983,993483 +8258,265,12,88641,1354400 +8259,214,12,28437,3428 +8260,265,12,237756,1272156 +8261,214,12,10783,29525 +8262,214,12,11653,56719 +8263,214,12,270403,20433 +8264,214,12,274479,1027025 +8265,265,12,14878,1272158 +8266,214,12,131343,43404 +8267,214,12,277713,559991 +8268,315,12,213681,72110 +8269,283,12,41714,2952 +8270,214,12,30695,53677 +8271,214,12,121674,590074 +8272,214,12,46758,1100017 +8273,214,12,47792,10316 +8274,265,12,345922,113666 +8275,214,12,349028,1211208 +8276,214,12,19142,10949 +8277,271,12,12631,1722908 +8278,214,12,339342,1168711 +8279,214,12,9828,59666 +8280,283,12,82448,927985 +8281,265,12,30155,68381 +8282,265,12,423988,1646476 +8283,265,12,83666,52991 +8284,214,12,18897,991466 +8285,214,12,88042,266920 +8286,214,12,24331,56280 +8287,107,12,77459,1821403 +8288,393,12,109424,1557029 +8289,265,12,7220,7624 +8290,214,12,257444,216366 +8291,393,12,284052,1546743 +8292,318,12,1165,1646822 +8293,271,12,46982,1182637 +8294,214,12,10274,21251 +8295,214,12,28384,59970 +8296,265,12,44945,16830 +8297,70,12,10165,1497453 +8298,135,3,381015,1828363 +8299,214,12,188598,1186917 +8300,265,12,1595,3727 +8301,271,12,266433,1415898 +8302,214,12,13616,1586320 +8303,265,12,47504,6468 +8304,214,12,175331,1028664 +8305,300,12,11358,84220 +8306,163,12,193756,132210 +8307,265,12,41963,117443 +8308,265,12,72912,1037907 +8309,265,12,127585,7624 +8310,214,12,407448,14392 +8311,322,12,274857,1553737 +8312,214,12,76494,20206 +8313,163,12,283445,1543589 +8314,283,12,289278,1428009 +8315,265,12,20941,69870 +8316,271,12,63401,1606877 +8317,214,12,95756,1006750 +8318,265,12,53150,1183566 +8319,265,12,301876,742382 +8320,214,12,38282,53206 +8321,265,12,53172,1499778 +8322,214,12,218784,977941 +8323,214,12,378018,1636994 +8324,265,12,12618,3390 +8325,214,12,14452,63778 +8326,283,12,10344,75538 +8327,265,12,123109,1077307 +8328,214,12,134474,1332821 +8329,214,12,58396,43709 +8330,322,12,240832,1412922 +8331,214,12,129553,113725 +8332,265,12,84284,287 +8333,265,12,169760,1337627 +8334,214,12,256421,34934 +8335,214,12,204553,1293086 +8336,214,12,2309,5664 +8337,265,12,346672,52790 +8338,300,12,1374,16638 +8339,214,12,413421,1764821 +8340,265,12,8942,17246 +8341,265,12,10075,3959 +8342,214,12,252680,1085777 +8343,214,12,76010,1193424 +8344,214,12,43670,66262 +8345,214,12,45610,1125216 +8346,214,12,817,3416 +8347,322,12,195269,1393422 +8348,283,12,15476,1023493 +8349,214,12,257344,10965 +8350,214,12,3580,6159 +8351,283,12,4964,41080 +8352,214,12,83430,54256 +8353,214,12,157117,1414552 +8354,265,12,9059,915 +8355,372,12,254679,1831341 +8356,283,12,1724,7481 +8357,214,12,409,5485 +8358,214,12,616,9181 +8359,214,12,93856,57857 +8360,214,12,245891,67759 +8361,283,12,173294,1351805 +8362,283,12,11370,25755 +8363,283,12,89591,1035047 +8364,214,12,1811,19224 +8365,70,12,183171,140414 +8366,214,12,6934,23824 +8367,265,12,9753,59390 +8368,214,12,430826,1731915 +8369,300,12,1966,8386 +8370,214,12,29492,66077 +8371,265,12,9918,60500 +8372,283,12,244580,6959 +8373,214,12,244783,1246866 +8374,372,12,10265,60516 +8375,214,12,121824,3953 +8376,214,12,31411,8635 +8377,372,12,149883,1302019 +8378,214,12,7343,102560 +8379,214,12,2604,3184 +8380,214,12,11321,51613 +8381,271,12,128946,932284 +8382,214,12,374461,1067252 +8383,214,12,598,8568 +8384,283,12,266102,81828 +8385,214,12,40863,552391 +8386,214,12,67130,171837 +8387,315,12,142656,1547490 +8388,214,12,28071,97634 +8389,265,12,336004,1438029 +8390,214,12,2144,21983 +8391,163,12,285270,1103640 +8392,372,12,423988,1475696 +8393,283,12,76101,585679 +8394,265,12,6023,47290 +8395,214,12,25625,10367 +8396,214,12,55853,41021 +8397,265,12,10336,64849 +8398,214,12,76438,236013 +8399,283,12,11103,4142 +8400,214,12,43438,11859 +8401,214,12,192623,18384 +8402,214,12,338063,1581570 +8403,244,3,461955,1424636 +8404,214,12,20806,32569 +8405,300,12,347031,66488 +8406,214,12,18414,56158 +8407,265,12,11633,122179 +8408,271,12,44190,10154 +8409,265,12,9539,1161624 +8410,214,12,19235,84801 +8411,286,3,384160,1628084 +8412,214,12,90395,14972 +8413,214,12,16436,14616 +8414,265,12,11330,69016 +8415,231,12,301804,150531 +8416,214,12,24810,998858 +8417,70,12,12220,1836473 +8418,214,12,13848,1015789 +8419,214,12,107319,105084 +8420,214,12,26809,16844 +8421,322,12,11236,75804 +8422,265,12,122,1309 +8423,70,12,177047,1462280 +8424,70,12,31127,1590963 +8425,214,12,26293,972161 +8426,265,12,377170,4123 +8427,265,12,419430,1308741 +8428,214,12,27681,38696 +8429,214,12,156335,88984 +8430,214,12,51209,38576 +8431,214,12,99875,1021827 +8432,214,12,16164,82133 +8433,163,12,272693,129305 +8434,283,12,23169,224387 +8435,283,12,8080,3965 +8436,265,12,10925,2721 +8437,214,12,16135,79536 +8438,265,12,13794,1145918 +8439,271,12,27599,927977 +8440,265,12,9352,8858 +8441,214,12,10930,1134 +8442,214,12,66894,68215 +8443,214,12,270403,1439475 +8444,277,3,131343,1114541 +8445,300,12,46029,1640580 +8446,163,12,8619,1307 +8447,283,12,315880,8313 +8448,107,12,263115,1821942 +8449,214,12,268174,164938 +8450,214,12,110972,91046 +8451,214,12,10841,36845 +8452,265,12,336890,1492086 +8453,283,12,7511,1034748 +8454,214,12,72057,1689778 +8455,214,12,14534,54797 +8456,393,12,11351,1597210 +8457,372,12,10703,66765 +8458,214,12,130925,1153846 +8459,214,12,132714,171837 +8460,315,12,43241,1582620 +8461,144,12,140554,1707849 +8462,214,12,3309,29098 +8463,214,12,378236,1743063 +8464,265,12,25983,1015889 +8465,214,12,4993,1091871 +8466,283,12,46368,1317096 +8467,283,12,62441,9002 +8468,265,12,45273,101802 +8469,214,12,30996,107476 +8470,371,3,339403,1635301 +8471,214,12,130717,1557 +8472,70,12,321315,1620688 +8473,214,12,341174,54417 +8474,214,12,16899,1494597 +8475,286,3,354133,1496076 +8476,99,3,28820,45672 +8477,214,12,11933,7181 +8478,265,12,4441,37271 +8479,214,12,13792,75549 +8480,214,12,313922,1493100 +8481,214,12,2108,11505 +8482,214,12,4913,17044 +8483,389,12,10727,1418313 +8484,283,12,10351,1037914 +8485,214,12,10900,37022 +8486,214,12,241239,556172 +8487,163,12,166221,1496659 +8488,214,12,427680,1758549 +8489,214,12,43093,133828 +8490,214,12,21711,13718 +8491,265,12,390930,1684157 +8492,127,3,339403,1635201 +8493,163,12,16005,3965 +8494,214,12,35032,9055 +8495,70,12,30637,1062066 +8496,283,12,289712,494 +8497,214,12,83770,54318 +8498,214,12,293262,1392206 +8499,265,12,26390,45829 +8500,214,12,9312,57260 +8501,283,12,93828,16363 +8502,214,12,11307,9577 +8503,265,12,294652,1116278 +8504,214,12,9948,60727 +8505,214,12,457,6241 +8506,214,12,1773,2662 +8507,214,12,6499,52046 +8508,299,12,337339,1827897 +8509,318,12,10476,1560906 +8510,231,12,37003,60245 +8511,214,12,44945,150429 +8512,265,12,121674,6226 +8513,214,12,258251,83730 +8514,372,12,300090,72640 +8515,163,12,98066,1532933 +8516,265,12,38021,1307017 +8517,214,12,273868,998152 +8518,214,12,284288,42804 +8519,214,12,38356,10952 +8520,214,12,817,2445 +8521,265,12,6183,48498 +8522,214,12,76170,7200 +8523,283,12,23966,29941 +8524,271,12,125264,1604093 +8525,265,12,298865,64300 +8526,265,12,15749,53522 +8527,283,12,10488,13585 +8528,214,12,33224,19963 +8529,214,12,168676,127096 +8530,214,12,138222,1102814 +8531,214,12,15725,110522 +8532,283,12,11329,3965 +8533,214,12,334074,1018082 +8534,214,12,146381,3131 +8535,265,12,241855,1001662 +8536,214,12,39347,133178 +8537,265,12,12591,6892 +8538,283,12,19665,1341754 +8539,206,3,383538,1783005 +8540,214,12,9815,59525 +8541,265,12,9966,40383 +8542,372,12,12454,65454 +8543,214,12,13596,1125567 +8544,214,12,319971,214108 +8545,214,12,9274,56608 +8546,214,12,125700,1838445 +8547,214,12,146243,995456 +8548,214,12,192623,21697 +8549,265,12,367147,1292992 +8550,265,12,200505,54251 +8551,271,12,9946,72964 +8552,265,12,10077,62925 +8553,265,12,274857,42994 +8554,214,12,116160,133434 +8555,265,12,294254,1179066 +8556,283,12,49009,1519284 +8557,200,3,337339,1703137 +8558,214,12,9030,9183 +8559,214,12,291865,1451387 +8560,265,12,83389,489 +8561,283,12,23223,1148475 +8562,214,12,130948,21230 +8563,271,12,12221,1681648 +8564,214,12,59419,1051971 +8565,70,12,1966,1733725 +8566,214,12,145191,1121352 +8567,214,12,259728,434892 +8568,214,12,65787,14646 +8569,322,12,127585,1384399 +8570,214,12,2071,5231 +8571,283,12,13596,928588 +8572,214,12,103758,72051 +8573,265,12,5,138 +8574,265,12,82519,740578 +8575,265,12,21554,94127 +8576,265,12,12652,73267 +8577,283,12,56906,971593 +8578,271,12,99846,1065744 +8579,265,12,367735,65918 +8580,315,12,11610,19128 +8581,283,12,159667,1035176 +8582,214,12,199647,622844 +8583,214,12,123109,60838 +8584,283,12,9877,1318157 +8585,214,12,408755,1102047 +8586,214,12,8272,9552 +8587,283,12,9966,61127 +8588,283,12,205584,37281 +8589,214,12,4978,40346 +8590,389,12,57597,1676195 +8591,214,12,393559,1601476 +8592,214,12,16066,75478 +8593,214,12,20842,66709 +8594,214,12,9841,41621 +8595,214,12,7305,489 +8596,214,12,8276,54288 +8597,107,12,126889,1746251 +8598,214,12,44458,71018 +8599,283,12,251,2874 +8600,193,12,390747,1662635 +8601,322,12,435,1412274 +8602,393,12,286873,1553462 +8603,214,12,152748,64058 +8604,214,12,236324,30053 +8605,283,12,24936,6044 +8606,265,12,394822,954441 +8607,265,12,1813,10950 +8608,265,12,106049,1149937 +8609,214,12,10872,16296 +8610,214,12,27986,89045 +8611,214,12,201676,1183750 +8612,265,12,73247,1219883 +8613,214,12,44119,130277 +8614,70,12,11235,8374 +8615,214,12,9893,57175 +8616,214,12,236324,37001 +8617,283,12,20357,474 +8618,214,12,37329,30834 +8619,283,12,45019,495 +8620,214,12,2012,20714 +8621,265,12,110261,33008 +8622,214,12,2441,17603 +8623,283,12,198277,546 +8624,214,12,3563,19292 +8625,214,12,17473,81916 +8626,214,12,91627,1190243 +8627,300,12,1624,4506 +8628,283,12,334527,1475160 +8629,214,12,2757,6955 +8630,315,12,11045,1711218 +8631,214,12,252171,933587 +8632,214,12,200,2381 +8633,372,12,13092,958649 +8634,389,12,52454,1630392 +8635,265,12,80468,4610 +8636,214,12,306555,1390116 +8637,214,12,4520,8330 +8638,214,12,116312,1489869 +8639,283,12,293660,1720 +8640,214,12,369697,1594761 +8641,322,12,266856,1465952 +8642,214,12,76264,1157581 +8643,214,12,10269,66755 +8644,214,12,390526,1561258 +8645,214,12,12637,11472 +8646,214,12,378018,1116035 +8647,265,12,25855,57280 +8648,214,12,573,7751 +8649,265,12,244316,966617 +8650,214,12,74777,583462 +8651,265,12,163,57295 +8652,265,12,135713,1103645 +8653,265,12,54893,1077374 +8654,265,12,9441,5144 +8655,214,12,11622,28904 +8656,214,12,82655,216695 +8657,265,12,7972,53474 +8658,318,12,284052,1408404 +8659,283,12,127493,2031 +8660,214,12,335778,48498 +8661,265,12,263341,1277931 +8662,214,12,11902,1462023 +8663,265,12,9352,54251 +8664,70,12,199415,1612370 +8665,318,12,413998,1895012 +8666,322,12,2567,1402038 +8667,283,12,10326,3806 +8668,283,12,11137,3192 +8669,283,12,364690,31276 +8670,372,12,209293,1192791 +8671,283,12,62046,19689 +8672,393,12,376501,1789564 +8673,214,12,41206,94762 +8674,265,12,263472,1080589 +8675,265,12,18755,152074 +8676,283,12,2966,29084 +8677,265,12,307931,682687 +8678,214,12,26516,30174 +8679,214,12,22554,5981 +8680,214,12,24348,68993 +8681,271,12,49013,1609021 +8682,393,12,1647,1492942 +8683,214,12,38031,1265 +8684,265,12,1726,7624 +8685,214,12,13391,1120522 +8686,214,12,56937,1206695 +8687,214,12,14976,23485 +8688,214,12,107146,583100 +8689,214,12,23637,57301 +8690,214,12,42852,14860 +8691,214,12,35026,113616 +8692,214,12,16083,53756 +8693,265,12,361750,58868 +8694,265,12,7511,3957 +8695,372,12,3682,1123421 +8696,265,12,49950,564949 +8697,214,12,9950,60781 +8698,214,12,10801,673 +8699,214,12,598,8563 +8700,283,12,41171,982778 +8701,214,12,59838,138178 +8702,283,12,32166,3192 +8703,127,3,45527,1891864 +8704,214,12,13777,75286 +8705,214,12,40925,96948 +8706,214,12,159474,72478 +8707,283,12,10691,7232 +8708,214,12,94352,5524 +8709,265,12,5,3111 +8710,265,12,19348,102445 +8711,214,12,114155,1043954 +8712,271,12,50126,112662 +8713,214,12,14976,280800 +8714,265,12,178809,59938 +8715,214,12,4913,39979 +8716,214,12,28938,8208 +8717,163,12,41171,1392761 +8718,214,12,139519,1260940 +8719,283,12,330947,6410 +8720,283,12,152989,1179893 +8721,283,12,298,495 +8722,265,12,329712,1014362 +8723,283,12,68387,63784 +8724,265,12,213681,1586 +8725,265,12,336004,1531696 +8726,283,12,152736,1333579 +8727,214,12,72574,164817 +8728,265,12,18998,7623 +8729,283,12,13653,1816299 +8730,70,12,66082,1043954 +8731,214,12,9756,63960 +8732,283,12,242224,37281 +8733,283,12,82654,224387 +8734,265,12,47508,1347788 +8735,271,12,9016,1726510 +8736,318,12,809,1678653 +8737,265,12,40925,130856 +8738,271,12,425774,1707994 +8739,283,12,51976,1023670 +8740,265,12,64720,16398 +8741,163,12,127585,1477203 +8742,271,12,163,1582414 +8743,214,12,4550,43562 +8744,214,12,156981,1575331 +8745,283,12,2309,3501 +8746,283,12,29136,122611 +8747,70,12,336004,1535394 +8748,283,12,364410,33230 +8749,283,12,118957,29941 +8750,214,12,80592,149374 +8751,214,12,80928,2106 +8752,214,12,371645,55934 +8753,214,12,37368,3238 +8754,214,12,1859,42060 +8755,214,12,75300,582911 +8756,214,12,9815,8401 +8757,283,12,28,3176 +8758,214,12,110540,30174 +8759,265,12,58,2446 +8760,265,12,29111,1377456 +8761,265,12,5123,41287 +8762,214,12,3563,32900 +8763,265,12,19766,4504 +8764,283,12,814,10496 +8765,265,12,50647,52042 +8766,214,12,345915,90543 +8767,214,12,139159,1167045 +8768,214,12,41823,5281 +8769,283,12,110146,37281 +8770,265,12,634,9155 +8771,265,12,2355,24179 +8772,318,12,13056,1634301 +8773,214,12,321039,1492116 +8774,214,12,102272,10249 +8775,214,12,7980,1128252 +8776,214,12,19181,79064 +8777,283,12,120172,1570081 +8778,315,12,1624,1692667 +8779,214,12,9904,7398 +8780,214,12,100275,1078982 +8781,214,12,82654,189331 +8782,214,12,88273,42099 +8783,214,12,788,11709 +8784,393,12,279690,1630967 +8785,283,12,4441,37281 +8786,214,12,178341,86358 +8787,214,12,28736,83131 +8788,214,12,322,4746 +8789,214,12,303542,933274 +8790,372,12,356752,1780092 +8791,214,12,172828,969845 +8792,265,12,9438,71018 +8793,214,12,39415,35558 +8794,214,12,32274,4446 +8795,283,12,203321,1014915 +8796,214,12,5998,67 +8797,271,12,17295,1122686 +8798,265,12,11633,1116327 +8799,214,12,400465,126125 +8800,214,12,41030,89702 +8801,163,12,9820,17699 +8802,283,12,17287,1273396 +8803,265,12,394822,1471435 +8804,214,12,15671,56644 +8805,265,12,371645,1310062 +8806,265,12,418990,1695214 +8807,265,12,29259,1336632 +8808,265,12,22881,10950 +8809,283,12,58244,229989 +8810,214,12,177047,1204029 +8811,265,12,217925,84932 +8812,214,12,151431,15378 +8813,214,12,154442,1279793 +8814,315,12,28859,101424 +8815,283,12,369885,1019426 +8816,214,12,13574,70851 +8817,214,12,9904,60218 +8818,265,12,253612,1383170 +8819,265,12,87827,20516 +8820,214,12,12289,1117858 +8821,70,12,21742,94236 +8822,214,12,8906,5097 +8823,265,12,154972,1653563 +8824,70,12,354859,936763 +8825,163,12,86254,1267580 +8826,214,12,64972,58448 +8827,214,12,75174,578 +8828,214,12,327528,69170 +8829,214,12,257176,1443547 +8830,372,12,68750,187051 +8831,265,12,423377,1754608 +8832,265,12,747,2236 +8833,214,12,43455,32134 +8834,283,12,5516,1484 +8835,214,12,397365,1013903 +8836,214,12,10389,56739 +8837,265,12,16058,75939 +8838,214,12,53459,1301112 +8839,265,12,68721,57027 +8840,214,12,88018,2106 +8841,214,12,167810,60864 +8842,214,12,11329,376 +8843,214,12,45211,5820 +8844,265,12,17209,68602 +8845,214,12,85160,1432463 +8846,372,12,257444,1497974 +8847,214,12,19625,99710 +8848,265,12,18620,2862 +8849,214,12,201223,1315180 +8850,265,12,46760,937380 +8851,265,12,45205,132507 +8852,214,12,293863,68602 +8853,372,12,157152,6896 +8854,230,3,445993,1756419 +8855,265,12,9474,4385 +8856,300,12,435,1472298 +8857,214,12,6023,47287 +8858,283,12,10761,961165 +8859,214,12,26119,19244 +8860,265,12,216580,136971 +8861,214,12,305127,1309323 +8862,214,12,9066,56887 +8863,214,12,42252,58076 +8864,372,12,40466,1201510 +8865,214,12,9403,57601 +8866,265,12,765,11646 +8867,372,12,17911,228801 +8868,265,12,10866,57570 +8869,214,12,13495,8912 +8870,283,12,5491,1263 +8871,163,12,10066,62740 +8872,214,12,1790,19099 +8873,283,12,47120,1301143 +8874,283,12,14430,7357 +8875,283,12,10539,7786 +8876,283,12,94671,5914 +8877,214,12,319999,932317 +8878,214,12,75446,1087739 +8879,265,12,409536,52849 +8880,214,12,1415,16958 +8881,265,12,45556,101190 +8882,231,12,9716,6994 +8883,214,12,262785,1306681 +8884,160,3,418437,1333222 +8885,265,12,19101,414 +8886,283,12,2666,9342 +8887,393,12,333484,1532605 +8888,214,12,12237,72174 +8889,214,12,393367,1660182 +8890,283,12,298751,2952 +8891,214,12,63498,947051 +8892,265,12,2001,31520 +8893,271,12,634,1576030 +8894,265,12,82519,752704 +8895,283,12,4011,3275 +8896,271,12,39284,6650 +8897,214,12,14869,7784 +8898,214,12,16083,51541 +8899,265,12,187596,59416 +8900,214,12,43327,8617 +8901,318,12,74,1403427 +8902,70,12,431093,1653218 +8903,214,12,10950,16853 +8904,214,12,28384,578324 +8905,214,12,2033,4756 +8906,214,12,24645,75625 +8907,214,12,25953,32180 +8908,214,12,11633,70103 +8909,163,12,302699,1546957 +8910,299,12,163,1644480 +8911,214,12,14126,2145 +8912,393,12,13380,14697 +8913,214,12,18897,100748 +8914,283,12,31911,5490 +8915,265,12,369885,23227 +8916,214,12,259075,142269 +8917,214,12,341895,1066403 +8918,214,12,91334,939445 +8919,283,12,102382,46943 +8920,265,12,441728,1668608 +8921,265,12,10033,57430 +8922,283,12,9427,1302 +8923,283,12,32049,1578417 +8924,214,12,214081,4401 +8925,70,12,343173,1542345 +8926,283,12,374473,16899 +8927,265,12,12476,62022 +8928,300,12,1579,42006 +8929,265,12,47065,1053570 +8930,214,12,11511,10809 +8931,265,12,327225,1019358 +8932,214,12,75,511 +8933,265,12,41574,56125 +8934,214,12,283445,999763 +8935,283,12,302699,434 +8936,214,12,20648,36999 +8937,265,12,13495,1025294 +8938,214,12,6948,51542 +8939,163,12,14181,54252 +8940,283,12,283384,23545 +8941,283,12,153854,1468070 +8942,265,12,18442,56982 +8943,214,12,11202,38242 +8944,283,12,1717,2952 +8945,214,12,76163,17207 +8946,300,12,98066,1543589 +8947,214,12,82519,688807 +8948,265,12,138308,96725 +8949,214,12,1247,4700 +8950,214,12,37686,488 +8951,283,12,178809,6479 +8952,214,12,53853,126676 +8953,265,12,62046,53522 +8954,265,12,3989,17751 +8955,214,12,2613,12116 +8956,214,12,318922,1025703 +8957,214,12,142216,46002 +8958,70,12,126841,1016735 +8959,214,12,106747,1040896 +8960,214,12,11377,10953 +8961,214,12,22897,2997 +8962,283,12,11517,6410 +8963,214,12,1902,19842 +8964,283,12,18633,2121 +8965,265,12,10433,2989 +8966,214,12,42796,133828 +8967,214,12,18467,1319442 +8968,265,12,253154,1616266 +8969,214,12,16358,61075 +8970,214,12,257344,17828 +8971,265,12,44303,46435 +8972,358,12,59387,1128341 +8973,265,12,377447,1817924 +8974,214,12,84340,210160 +8975,389,12,435,1574656 +8976,214,12,14147,207419 +8977,214,12,18917,557704 +8978,214,12,10003,4611 +8979,163,12,14552,6684 +8980,214,12,109417,21412 +8981,265,12,291865,1015887 +8982,271,12,61991,1489515 +8983,214,12,16980,78188 +8984,265,12,52395,24052 +8985,283,12,54022,4023 +8986,214,12,16147,6987 +8987,70,12,12639,1126359 +8988,214,12,63859,55895 +8989,372,12,167073,60316 +8990,214,12,28061,99519 +8991,127,3,339403,1452956 +8992,265,12,1427,6891 +8993,163,12,111839,74536 +8994,214,12,11855,18679 +8995,214,12,136799,70655 +8996,265,12,137093,62117 +8997,214,12,58309,1404674 +8998,214,12,108391,213026 +8999,265,12,19819,8915 +9000,283,12,40047,41140 +9001,214,12,20644,30174 +9002,265,12,63498,4018 +9003,265,12,27549,6890 +9004,214,12,336890,61932 +9005,318,12,9882,1717160 +9006,214,12,18586,7494 +9007,283,12,27095,72941 +9008,214,12,42941,61125 +9009,144,12,77964,50311 +9010,265,12,5413,43145 +9011,265,12,310137,1471435 +9012,265,12,25941,118168 +9013,214,12,297853,20958 +9014,265,12,2046,15248 +9015,214,12,72545,33624 +9016,214,12,227262,16808 +9017,144,12,36245,1675422 +9018,283,12,19176,3192 +9019,283,12,42599,13320 +9020,265,12,11777,70458 +9021,214,12,38031,15607 +9022,214,12,55534,75870 +9023,214,12,103332,17173 +9024,214,12,42170,1051914 +9025,214,12,77067,585784 +9026,214,12,78522,99412 +9027,322,12,7445,1407240 +9028,214,12,222517,1207938 +9029,271,12,41211,1427298 +9030,214,12,469172,1608746 +9031,214,12,33025,14855 +9032,265,12,8665,12232 +9033,265,12,260947,1139529 +9034,265,12,4441,37272 +9035,70,12,257444,1497975 +9036,265,12,138372,1108823 +9037,265,12,33839,8502 +9038,214,12,2009,20701 +9039,214,12,204922,363761 +9040,214,12,51476,136396 +9041,283,12,13411,94546 +9042,70,12,50318,1095528 +9043,214,12,31276,1404160 +9044,283,12,10909,21363 +9045,214,12,1986,20430 +9046,214,12,189,1040898 +9047,231,12,9716,6993 +9048,214,12,20301,834 +9049,265,12,307081,1307 +9050,214,12,4964,41039 +9051,214,12,256740,233360 +9052,214,12,3513,32346 +9053,265,12,450530,1763942 +9054,283,12,16005,1034748 +9055,214,12,56800,1062685 +9056,214,12,50126,1692488 +9057,265,12,27138,1206059 +9058,283,12,572,7747 +9059,214,12,57412,2439 +9060,389,12,664,541478 +9061,265,12,12783,466 +9062,214,12,40864,124866 +9063,163,12,324440,34639 +9064,265,12,2001,60187 +9065,214,12,93676,5671 +9066,214,12,54523,1089646 +9067,318,12,7326,1537692 +9068,214,12,164558,1146049 +9069,265,12,225728,465 +9070,283,12,40218,1179381 +9071,214,12,235199,31 +9072,214,12,252102,947426 +9073,70,12,13005,590407 +9074,214,12,150049,1295593 +9075,214,12,524,7531 +9076,214,12,90799,40054 +9077,214,12,10484,24501 +9078,393,12,2567,1398132 +9079,318,12,284052,1785950 +9080,214,12,10294,7227 +9081,265,12,131689,150953 +9082,265,12,120747,2663 +9083,283,12,41590,2324 +9084,214,12,38766,19395 +9085,214,12,35404,4123 +9086,265,12,166671,108 +9087,214,12,6440,5329 +9088,377,3,339403,1635242 +9089,265,12,147773,45838 +9090,283,12,149509,54777 +9091,283,12,284564,35490 +9092,214,12,15506,53334 +9093,214,12,1253,21654 +9094,265,12,337339,58191 +9095,214,12,63578,173 +9096,265,12,94348,1001704 +9097,265,12,10925,2720 +9098,322,12,1578,1636375 +9099,214,12,33314,934838 +9100,265,12,270774,1729059 +9101,214,12,86820,1075099 +9102,214,12,34193,3777 +9103,70,12,2323,1993 +9104,214,12,10176,64099 +9105,283,12,301348,5328 +9106,214,12,51311,6818 +9107,214,12,62837,47285 +9108,265,12,122081,1036825 +9109,214,12,23128,26473 +9110,214,12,25330,11505 +9111,214,12,266102,1606165 +9112,214,12,578,1297 +9113,214,12,82631,5162 +9114,322,12,77930,1433917 +9115,265,12,274479,174514 +9116,283,12,318553,1096371 +9117,99,3,339403,1357063 +9118,163,12,179826,1631516 +9119,214,12,49110,39153 +9120,214,12,369245,1377173 +9121,214,12,9819,2997 +9122,283,12,444713,1536244 +9123,231,12,241258,1103515 +9124,163,12,1966,13499 +9125,214,12,362154,1562572 +9126,214,12,11799,11963 +9127,265,12,62211,7 +9128,214,12,71147,1244274 +9129,265,12,12158,28401 +9130,315,12,13965,76214 +9131,214,12,192558,83595 +9132,214,12,403431,113666 +9133,265,12,419459,1550581 +9134,231,12,298584,94451 +9135,265,12,14011,1228735 +9136,415,3,66045,548014 +9137,214,12,257444,1497972 +9138,265,12,433244,979489 +9139,214,12,49009,2690 +9140,283,12,28031,561 +9141,393,12,19255,935490 +9142,265,12,394822,1639168 +9143,265,12,3146,136508 +9144,265,12,53150,43518 +9145,214,12,31945,12114 +9146,214,12,71700,548731 +9147,393,12,1165,1190164 +9148,265,12,9900,20821 +9149,70,12,392271,1765169 +9150,70,12,76871,70270 +9151,283,12,13493,1398132 +9152,265,12,41574,1583300 +9153,70,12,318973,1630374 +9154,214,12,377853,45139 +9155,300,12,10724,56192 +9156,214,12,82999,929057 +9157,265,12,77964,4123 +9158,265,12,423988,1627249 +9159,265,12,259395,1115964 +9160,214,12,142012,1003545 +9161,283,12,21711,78390 +9162,214,12,11137,58048 +9163,265,12,4478,37436 +9164,283,12,19719,85127 +9165,214,12,7555,22815 +9166,265,12,172828,536491 +9167,265,12,256962,1819154 +9168,214,12,10594,65767 +9169,214,12,86168,13779 +9170,231,12,298584,69806 +9171,322,12,384737,1825655 +9172,214,12,6023,28 +9173,214,12,86297,86051 +9174,214,12,276846,1331039 +9175,265,12,10760,60084 +9176,214,12,37725,1247466 +9177,70,12,18405,35973 +9178,163,12,56669,22302 +9179,265,12,6978,9579 +9180,265,12,362045,1892943 +9181,214,12,11704,40345 +9182,214,12,41996,14294 +9183,214,12,19294,946051 +9184,214,12,42641,558284 +9185,265,12,9540,36131 +9186,214,12,147815,1641636 +9187,214,12,403429,129565 +9188,214,12,11600,13233 +9189,214,12,79995,52739 +9190,283,12,16899,1034748 +9191,283,12,320588,53899 +9192,303,3,339403,1403479 +9193,70,12,8204,1397483 +9194,214,12,811,12116 +9195,265,12,77459,1015907 +9196,163,12,441728,6227 +9197,214,12,27886,30652 +9198,214,12,25388,770 +9199,318,12,228970,1830526 +9200,70,12,193756,1554033 +9201,244,3,45527,1400436 +9202,214,12,1450,1120538 +9203,322,12,170279,1403901 +9204,214,12,121003,1355976 +9205,127,3,339403,1552521 +9206,163,12,285181,6151 +9207,214,12,276906,76999 +9208,283,12,61552,36739 +9209,393,12,2924,1013056 +9210,214,12,814,7184 +9211,265,12,12237,72173 +9212,372,12,38448,1029064 +9213,214,12,55420,53072 +9214,283,12,414977,94470 +9215,214,12,88794,339 +9216,163,12,377447,1498475 +9217,265,12,47426,17231 +9218,283,12,10201,25365 +9219,155,3,383538,1851921 +9220,214,12,366566,20074 +9221,265,12,16997,1128265 +9222,214,12,9890,2997 +9223,70,12,41760,1864151 +9224,214,12,42187,96360 +9225,283,12,239018,156827 +9226,214,12,64215,1354338 +9227,163,12,18405,1525142 +9228,214,12,14873,1116911 +9229,214,12,33339,1357089 +9230,318,12,9716,1661566 +9231,265,12,259695,41018 +9232,265,12,381015,91890 +9233,214,12,109587,1023051 +9234,70,12,107146,1056753 +9235,214,12,24140,37860 +9236,271,12,86920,120133 +9237,283,12,40229,1477839 +9238,214,12,82999,929056 +9239,214,12,108712,1491359 +9240,265,12,264729,1586197 +9241,163,12,244458,1424053 +9242,214,12,42533,102795 +9243,214,12,439998,1306691 +9244,36,12,435,1574667 +9245,283,12,59981,61419 +9246,265,12,201676,1252099 +9247,271,12,25376,1147902 +9248,265,12,84449,1108728 +9249,265,12,12106,59920 +9250,372,12,13092,18783 +9251,214,12,49950,1128308 +9252,265,12,2300,26264 +9253,70,12,356752,1841615 +9254,214,12,27105,96983 +9255,265,12,16999,997339 +9256,214,12,303982,1179359 +9257,214,12,47694,130394 +9258,214,12,243940,61397 +9259,214,12,157409,225009 +9260,283,12,130593,1155166 +9261,265,12,59678,465 +9262,214,12,110608,391186 +9263,70,12,251421,1181519 +9264,265,12,48231,1030399 +9265,283,12,177677,6044 +9266,265,12,10590,8277 +9267,214,12,10761,11874 +9268,214,12,48949,40149 +9269,265,12,765,11643 +9270,265,12,2887,28715 +9271,214,12,134662,1099847 +9272,283,12,1966,16337 +9273,214,12,200324,100036 +9274,283,12,9918,60501 +9275,265,12,33916,57492 +9276,214,12,91259,140086 +9277,265,12,167262,2721 +9278,265,12,16320,80425 +9279,214,12,82687,52160 +9280,214,12,227964,1054091 +9281,70,12,10020,12910 +9282,214,12,29259,37456 +9283,214,12,403431,107446 +9284,372,12,251227,1194302 +9285,214,12,161880,112994 +9286,214,12,67,1125681 +9287,283,12,2140,21939 +9288,265,12,39148,122194 +9289,283,12,9771,18457 +9290,214,12,9028,1347577 +9291,214,12,232672,19292 +9292,265,12,134656,131521 +9293,265,12,259997,1302508 +9294,214,12,89116,237299 +9295,214,12,32428,2106 +9296,265,12,329865,51689 +9297,214,12,307931,1489785 +9298,214,12,276935,85893 +9299,163,12,29259,15133 +9300,214,12,8199,53967 +9301,265,12,119213,3181 +9302,214,12,93863,1331896 +9303,357,3,337339,1907209 +9304,214,12,70586,17211 +9305,283,12,15013,970 +9306,283,12,9953,4906 +9307,214,12,9914,60403 +9308,214,12,34506,136974 +9309,265,12,206647,10876 +9310,265,12,1073,68602 +9311,214,12,250066,1030585 +9312,214,12,2021,6371 +9313,265,12,20473,51516 +9314,163,12,1640,7232 +9315,265,12,45610,65213 +9316,163,12,9070,12374 +9317,283,12,25796,36807 +9318,214,12,9023,12062 +9319,265,12,296941,1372762 +9320,265,12,14829,117620 +9321,214,12,32274,38804 +9322,214,12,9902,4017 +9323,265,12,9904,15775 +9324,214,12,262338,1442576 +9325,265,12,128270,38082 +9326,265,12,336004,66723 +9327,163,12,402446,1518453 +9328,283,12,59296,13585 +9329,265,12,307479,1409852 +9330,300,12,163,1117840 +9331,265,12,203264,1697268 +9332,265,12,121674,1878842 +9333,231,12,332411,132210 +9334,70,12,42648,5259 +9335,283,12,6947,5669 +9336,214,12,8619,6870 +9337,214,12,19719,85130 +9338,265,12,7972,53467 +9339,283,12,76,3724 +9340,265,12,116463,1423734 +9341,265,12,82911,41384 +9342,214,12,300667,4855 +9343,265,12,11472,38559 +9344,214,12,1420,109980 +9345,283,12,47112,897 +9346,214,12,399106,1703199 +9347,318,12,1690,1564780 +9348,283,12,11855,77250 +9349,271,12,256092,1307805 +9350,214,12,29083,102866 +9351,265,12,151870,133359 +9352,265,12,54752,34695 +9353,283,12,54845,956271 +9354,214,12,287233,23683 +9355,214,12,41402,74399 +9356,265,12,11397,58183 +9357,393,12,41963,961149 +9358,389,12,116463,1691504 +9359,265,12,45556,1127861 +9360,214,12,283489,1345249 +9361,214,12,126832,1083254 +9362,265,12,424488,1494760 +9363,265,12,9778,15307 +9364,214,12,150201,1448867 +9365,214,12,128169,1086439 +9366,271,12,157424,1408172 +9367,214,12,66741,131184 +9368,322,12,413998,1456414 +9369,214,12,76163,17209 +9370,309,12,1578,1116736 +9371,214,12,9404,120416 +9372,300,12,105,13621 +9373,265,12,300669,61125 +9374,214,12,192558,85894 +9375,283,12,196469,1538335 +9376,265,12,50123,1379964 +9377,265,12,360283,1655893 +9378,214,12,106635,18573 +9379,107,12,263115,1821918 +9380,214,12,9260,1884 +9381,265,12,11058,53757 +9382,163,12,1428,19449 +9383,70,12,10395,49907 +9384,214,12,38150,6371 +9385,283,12,1904,6410 +9386,214,12,39867,1437606 +9387,214,12,8915,38804 +9388,214,12,11545,5664 +9389,283,12,338189,1650750 +9390,214,12,33107,1391644 +9391,214,12,289712,23485 +9392,214,12,265351,113873 +9393,214,12,325302,1465613 +9394,283,12,345922,1345611 +9395,214,12,300667,4857 +9396,163,12,176,1001817 +9397,214,12,10795,66840 +9398,283,12,6972,1010787 +9399,214,12,33134,123537 +9400,265,12,3580,63946 +9401,214,12,16439,982307 +9402,283,12,362057,967203 +9403,214,12,157,1791 +9404,214,12,105833,1830592 +9405,214,12,375012,1292103 +9406,214,12,159128,1066809 +9407,283,12,14811,1263 +9408,70,12,43252,1546970 +9409,265,12,33273,1096644 +9410,286,3,452606,1324648 +9411,70,12,147829,96255 +9412,283,12,7972,2242 +9413,283,12,43641,937490 +9414,214,12,9664,68390 +9415,315,12,46567,103118 +9416,214,12,12787,9169 +9417,265,12,118889,8502 +9418,214,12,13855,1120763 +9419,265,12,102,1174 +9420,271,12,2613,137230 +9421,265,12,11247,11803 +9422,214,12,17622,1122008 +9423,214,12,158942,1086289 +9424,271,12,469172,1195279 +9425,214,12,9585,58085 +9426,214,12,8080,53785 +9427,322,12,127372,1431519 +9428,265,12,116350,1542352 +9429,283,12,7220,39456 +9430,214,12,6183,48497 +9431,265,12,297853,1790464 +9432,283,12,1058,3275 +9433,322,12,219466,1456414 +9434,214,12,9673,11943 +9435,265,12,635,56967 +9436,283,12,16366,12090 +9437,214,12,108665,70676 +9438,283,12,244610,29941 +9439,214,12,5491,14093 +9440,271,12,857,8401 +9441,214,12,73144,568335 +9442,283,12,10543,1550054 +9443,163,12,43817,438553 +9444,393,12,329289,1533529 +9445,214,12,1259,2997 +9446,214,12,43790,9055 +9447,300,12,4248,19449 +9448,214,12,32451,1089413 +9449,214,12,24272,65360 +9450,214,12,227973,116805 +9451,283,12,301875,1705678 +9452,214,12,343173,1039358 +9453,265,12,13929,12895 +9454,214,12,116236,1291070 +9455,214,12,139455,1131840 +9456,214,12,12289,1117861 +9457,214,12,89325,8844 +9458,265,12,62397,1538520 +9459,283,12,120,61624 +9460,70,12,19757,1521325 +9461,231,12,48281,32157 +9462,214,12,2102,21556 +9463,214,12,315010,1208281 +9464,283,12,16075,1472499 +9465,214,12,28564,3248 +9466,214,12,43316,41408 +9467,265,12,302699,10830 +9468,265,12,11798,70522 +9469,283,12,13505,2532 +9470,265,12,334074,57870 +9471,214,12,9591,16294 +9472,93,12,13380,897 +9473,318,12,14411,1397895 +9474,265,12,254679,1831332 +9475,144,12,43855,98968 +9476,163,12,10063,62682 +9477,271,12,22020,100290 +9478,265,12,84154,1107429 +9479,265,12,9841,29924 +9480,214,12,256740,1009121 +9481,214,12,325133,19274 +9482,283,12,41760,3662 +9483,214,12,34496,1320557 +9484,283,12,10395,2242 +9485,265,12,246403,23658 +9486,283,12,10033,62243 +9487,283,12,284052,1018073 +9488,322,12,9457,1393422 +9489,271,12,121674,1422832 +9490,163,12,86254,46915 +9491,70,12,403605,1771806 +9492,144,12,20644,39761 +9493,214,12,20530,1115028 +9494,214,12,40765,97047 +9495,214,12,41283,41377 +9496,214,12,120977,13570 +9497,265,12,413579,1046160 +9498,283,12,9568,1515867 +9499,214,12,20242,9196 +9500,214,12,2666,21085 +9501,265,12,98870,1728385 +9502,214,12,11302,68939 +9503,284,12,635,1400004 +9504,214,12,307931,53072 +9505,163,12,300669,4854 +9506,283,12,13912,1077528 +9507,214,12,3016,13335 +9508,70,12,14703,8259 +9509,214,12,12289,1117853 +9510,214,12,262357,1442944 +9511,283,12,159128,4906 +9512,283,12,127521,29940 +9513,214,12,9836,11651 +9514,214,12,366631,139614 +9515,214,12,13596,964587 +9516,265,12,441728,1414103 +9517,214,12,37308,117411 +9518,214,12,39766,1321443 +9519,265,12,201,2504 +9520,70,12,9982,61416 +9521,265,12,12158,35581 +9522,214,12,393445,35736 +9523,214,12,5393,43090 +9524,265,12,10797,18826 +9525,322,12,74,1341798 +9526,214,12,30934,1309332 +9527,214,12,129966,47826 +9528,265,12,10379,64947 +9529,214,12,341420,1673345 +9530,214,12,22894,60864 +9531,265,12,298228,98683 +9532,214,12,40205,77208 +9533,214,12,28438,97047 +9534,214,12,252773,19112 +9535,214,12,343173,56631 +9536,265,12,8844,18389 +9537,214,12,43829,8502 +9538,163,12,393732,1772306 +9539,214,12,11832,69173 +9540,214,12,26688,62159 +9541,70,12,82191,13521 +9542,265,12,72984,1066197 +9543,214,12,128120,1124065 +9544,214,12,201419,1033793 +9545,214,12,78265,117721 +9546,318,12,118,1418317 +9547,271,12,212530,1196915 +9548,214,12,94674,1121524 +9549,214,12,413882,35736 +9550,214,12,188357,1317090 +9551,214,12,261036,11405 +9552,214,12,31672,16321 +9553,283,12,220,55696 +9554,322,12,2613,1800146 +9555,214,12,8388,56158 +9556,265,12,15762,1316574 +9557,265,12,44115,1102066 +9558,214,12,26252,9751 +9559,214,12,83666,1004836 +9560,283,12,146216,1034748 +9561,265,12,252171,1176454 +9562,265,12,220809,1205892 +9563,214,12,13912,30012 +9564,70,12,13185,1356953 +9565,265,12,412851,1769616 +9566,214,12,86600,8246 +9567,214,12,369697,99665 +9568,214,12,84336,43144 +9569,265,12,236395,3238 +9570,214,12,2140,21933 +9571,214,12,84178,969845 +9572,214,12,227973,1527481 +9573,214,12,408024,125037 +9574,214,12,459,6241 +9575,214,12,31280,1163928 +9576,214,12,5881,46296 +9577,214,12,352890,1324024 +9578,318,12,10590,1566292 +9579,214,12,16523,110564 +9580,214,12,66812,11528 +9581,214,12,324670,61091 +9582,265,12,367735,1373056 +9583,214,12,29376,963708 +9584,214,12,162382,5398 +9585,283,12,82077,11799 +9586,271,12,62472,569889 +9587,214,12,400668,1641406 +9588,283,12,284053,1198829 +9589,265,12,90125,587856 +9590,214,12,114982,56787 +9591,70,12,118,959668 +9592,214,12,260001,1324835 +9593,214,12,145154,998434 +9594,214,12,184155,1167226 +9595,26,12,82501,724464 +9596,214,12,289,4123 +9597,283,12,242076,30874 +9598,214,12,232672,20821 +9599,283,12,85837,1838150 +9600,70,12,116350,1244654 +9601,214,12,71668,18384 +9602,265,12,12103,71245 +9603,163,12,8619,102330 +9604,271,12,28893,35092 +9605,315,12,10320,1755745 +9606,214,12,24625,954668 +9607,393,12,318922,1374469 +9608,163,12,2034,35178 +9609,214,12,301228,28496 +9610,214,12,31005,5162 +9611,265,12,102222,1031260 +9612,214,12,37992,69513 +9613,283,12,16993,2871 +9614,265,12,15092,20193 +9615,265,12,37958,59700 +9616,283,12,12,57673 +9617,214,12,15592,73931 +9618,214,12,30708,130225 +9619,372,12,70554,99586 +9620,283,12,124963,598 +9621,283,12,49787,76085 +9622,265,12,87516,62775 +9623,283,12,273481,6410 +9624,214,12,83384,5952 +9625,283,12,4913,7438 +9626,265,12,238749,201028 +9627,318,12,263115,1821940 +9628,283,12,56292,6052 +9629,214,12,409447,35498 +9630,322,12,9102,1380392 +9631,265,12,9471,36427 +9632,265,12,7942,53360 +9633,283,12,36094,1221 +9634,265,12,2757,202 +9635,265,12,9541,6624 +9636,214,12,110525,8502 +9637,214,12,11830,70629 +9638,214,12,101342,5268 +9639,271,12,65904,1690332 +9640,265,12,47794,1482066 +9641,265,12,16235,2384 +9642,214,12,25673,18738 +9643,214,12,98536,1529469 +9644,214,12,6978,511 +9645,265,12,73723,52360 +9646,283,12,82631,15426 +9647,265,12,273106,1519554 +9648,265,12,337958,236333 +9649,214,12,83185,1377955 +9650,265,12,44801,57652 +9651,271,12,376394,1559474 +9652,214,12,327,69883 +9653,133,3,129229,1088722 +9654,265,12,270851,236844 +9655,214,12,8584,4504 +9656,214,12,6440,11472 +9657,372,12,114790,1489716 +9658,214,12,76493,6731 +9659,214,12,4380,36615 +9660,214,12,246011,1343936 +9661,265,12,81589,1041662 +9662,214,12,9914,20010 +9663,231,12,71859,1619484 +9664,214,12,3520,3778 +9665,214,12,44414,2238 +9666,214,12,44877,565580 +9667,265,12,28774,4507 +9668,214,12,171581,1106628 +9669,214,12,10780,58103 +9670,214,12,9013,769 +9671,163,12,32049,1185413 +9672,271,12,135390,1308593 +9673,265,12,152532,64058 +9674,70,12,336691,1547709 +9675,283,12,18405,13585 +9676,214,12,128215,1035761 +9677,214,12,16232,4504 +9678,283,12,44287,5507 +9679,265,12,419459,1729060 +9680,214,12,277710,1474173 +9681,214,12,9787,69414 +9682,70,12,152042,1816777 +9683,144,12,9716,1661581 +9684,214,12,660,9951 +9685,283,12,44105,1604769 +9686,214,12,131903,37993 +9687,271,12,4291,36081 +9688,214,12,435,6046 +9689,265,12,9843,15729 +9690,265,12,427680,1758556 +9691,283,12,169881,19993 +9692,265,12,7326,40383 +9693,214,12,23152,8502 +9694,271,12,8870,1724267 +9695,214,12,47980,65360 +9696,372,12,133458,927977 +9697,107,12,10204,1547360 +9698,214,12,322922,1380638 +9699,214,12,252680,844266 +9700,214,12,72875,567322 +9701,283,12,15476,1392976 +9702,214,12,171337,1318816 +9703,214,12,73872,1024276 +9704,70,12,179103,33019 +9705,214,12,79593,1637869 +9706,214,12,11024,282 +9707,214,12,753,11414 +9708,214,12,257345,1616431 +9709,214,12,172828,107765 +9710,214,12,14207,62686 +9711,283,12,4913,3965 +9712,214,12,55343,1443662 +9713,214,12,38027,5398 +9714,265,12,423988,1872769 +9715,265,12,31805,14972 +9716,214,12,15013,43559 +9717,283,12,263115,436 +9718,283,12,76341,1420856 +9719,283,12,56669,11658 +9720,283,12,100110,2215 +9721,214,12,19244,71797 +9722,283,12,24810,25756 +9723,70,12,209112,13930 +9724,271,12,244316,1870516 +9725,214,12,9951,60824 +9726,214,12,124470,1448291 +9727,214,12,140818,93335 +9728,214,12,174645,1157600 +9729,265,12,252171,1454385 +9730,318,12,10590,1608789 +9731,214,12,2830,12987 +9732,214,12,140887,88984 +9733,265,12,301804,80604 +9734,214,12,26293,1005735 +9735,214,12,9102,56981 +9736,214,12,10946,67595 +9737,283,12,329819,4406 +9738,265,12,363579,1521718 +9739,163,12,24739,20119 +9740,372,12,38154,562942 +9741,214,12,64499,939510 +9742,163,12,101325,113233 +9743,214,12,61430,19528 +9744,271,12,93856,1409867 +9745,214,12,133458,4007 +9746,265,12,205891,1037909 +9747,214,12,1723,3658 +9748,265,12,42684,11091 +9749,265,12,14505,108220 +9750,265,12,14372,1093 +9751,283,12,255343,1084613 +9752,70,12,340215,1630288 +9753,214,12,74437,7660 +9754,214,12,278621,1415878 +9755,214,12,86118,1341079 +9756,214,12,81475,33576 +9757,214,12,286873,1553426 +9758,214,12,83718,4899 +9759,214,12,10020,12910 +9760,283,12,103620,62725 +9761,214,12,46059,76017 +9762,214,12,62761,67823 +9763,214,12,125490,4583 +9764,265,12,15560,94235 +9765,214,12,175331,1028809 +9766,322,12,15472,1494537 +9767,163,12,14531,1258212 +9768,214,12,41714,32035 +9769,265,12,209112,3893 +9770,283,12,283995,1345611 +9771,214,12,21442,87533 +9772,283,12,170759,124693 +9773,322,12,442752,1666623 +9774,389,12,7220,1573618 +9775,214,12,37958,54419 +9776,214,12,242,2870 +9777,214,12,1443,17231 +9778,265,12,20715,1226919 +9779,214,12,24469,51919 +9780,283,12,46286,7494 +9781,214,12,45013,1382446 +9782,214,12,30091,69045 +9783,372,12,14011,1290435 +9784,283,12,14765,1021803 +9785,70,12,436,5878 +9786,283,12,212756,983911 +9787,163,12,755,11421 +9788,163,12,10909,1551267 +9789,315,12,638,9319 +9790,214,12,5206,6151 +9791,271,12,28682,53188 +9792,372,12,10727,1584232 +9793,265,12,180299,1332519 +9794,214,12,300654,1387270 +9795,283,12,10198,60504 +9796,283,12,3057,29942 +9797,70,12,17386,42736 +9798,283,12,1375,16516 +9799,214,12,9667,3804 +9800,283,12,1271,6232 +9801,80,3,401164,930998 +9802,214,12,1813,376 +9803,214,12,781,1073 +9804,214,12,266082,68819 +9805,214,12,16876,80961 +9806,283,12,27380,597 +9807,214,12,297288,69492 +9808,214,12,30308,1631219 +9809,214,12,92269,117605 +9810,214,12,43880,109853 +9811,265,12,201419,149495 +9812,265,12,15584,1667220 +9813,214,12,375199,133423 +9814,214,12,37497,117808 +9815,214,12,68050,9233 +9816,389,12,194,1551973 +9817,214,12,49950,1128311 +9818,265,12,284564,1680442 +9819,214,12,317182,1258614 +9820,265,12,2001,31515 +9821,389,12,11370,1581161 +9822,214,12,71120,36146 +9823,214,12,54801,583002 +9824,214,12,228970,368 +9825,214,12,10950,9197 +9826,214,12,9451,65115 +9827,214,12,294254,25046 +9828,318,12,71668,1551819 +9829,265,12,259975,952087 +9830,214,12,51275,1090936 +9831,214,12,91679,556874 +9832,163,12,262522,1460852 +9833,318,12,325263,1634499 +9834,214,12,77875,57343 +9835,283,12,13380,983105 +9836,265,12,28178,1018084 +9837,214,12,10033,298 +9838,214,12,95743,57120 +9839,265,12,139455,1037909 +9840,214,12,354979,959314 +9841,265,12,13092,964875 +9842,214,12,26491,65454 +9843,163,12,410718,1697786 +9844,283,12,264525,7364 +9845,214,12,37665,937701 +9846,214,12,308529,1587448 +9847,214,12,15044,1774002 +9848,214,12,55784,180528 +9849,265,12,4147,11712 +9850,214,12,60665,1056270 +9851,271,12,52661,1489958 +9852,214,12,1976,10001 +9853,214,12,277355,286679 +9854,214,12,29959,66759 +9855,214,12,598,8574 +9856,315,12,7445,1127909 +9857,283,12,28510,585506 +9858,163,12,11397,69209 +9859,393,12,293167,1759751 +9860,300,12,8247,82132 +9861,265,12,345438,1479369 +9862,265,12,10918,67463 +9863,265,12,310133,1781 +9864,214,12,289159,1357686 +9865,214,12,11561,68939 +9866,214,12,48180,52121 +9867,283,12,37958,1593 +9868,283,12,10025,60713 +9869,265,12,20,952 +9870,265,12,172828,1151090 +9871,214,12,22396,88738 +9872,214,12,140818,87877 +9873,214,12,37686,15344 +9874,214,12,59051,19707 +9875,265,12,17654,82197 +9876,318,12,219466,1319627 +9877,265,12,427680,1267666 +9878,214,12,29043,49288 +9879,214,12,345069,1478653 +9880,300,12,93350,1224061 +9881,214,12,5279,10747 +9882,214,12,29903,52135 +9883,271,12,43432,1275906 +9884,265,12,69315,936212 +9885,322,12,1381,1406794 +9886,271,12,62755,1360369 +9887,214,12,408616,79135 +9888,214,12,9602,7184 +9889,70,12,1911,18926 +9890,283,12,16980,3192 +9891,322,12,312174,1400594 +9892,214,12,183832,1497 +9893,393,12,294272,1497530 +9894,265,12,277710,1562472 +9895,214,12,16890,73912 +9896,283,12,315664,46943 +9897,214,12,130739,1100367 +9898,283,12,10011,2399 +9899,271,12,8414,54896 +9900,214,12,264309,84034 +9901,265,12,10946,43098 +9902,265,12,3989,2997 +9903,214,12,250535,363761 +9904,283,12,461955,1462300 +9905,265,12,334538,1015899 +9906,214,12,7511,52789 +9907,214,12,158908,66120 +9908,283,12,436,1142381 +9909,214,12,34944,29098 +9910,265,12,2567,1307 +9911,265,12,18082,937504 +9912,107,12,297762,1824268 +9913,214,12,112287,1054380 +9914,214,12,241258,84348 +9915,70,12,244786,1401857 +9916,214,12,291865,78545 +9917,214,12,3048,29882 +9918,214,12,48156,30295 +9919,214,12,313074,41538 +9920,214,12,19996,154383 +9921,283,12,239563,15426 +9922,265,12,10274,2224 +9923,70,12,414977,1676779 +9924,271,12,43594,1686549 +9925,164,3,337339,1376264 +9926,214,12,72917,20680 +9927,214,12,96936,1769 +9928,265,12,4147,2212 +9929,214,12,10488,65378 +9930,214,12,417489,142995 +9931,214,12,59075,33008 +9932,214,12,1421,3524 +9933,265,12,71700,563695 +9934,283,12,241239,1020057 +9935,318,12,8619,1335881 +9936,265,12,9953,17210 +9937,283,12,158908,1024910 +9938,68,12,325803,1428045 +9939,163,12,21619,66606 +9940,214,12,8204,511 +9941,214,12,90034,1083908 +9942,214,12,24469,1270110 +9943,214,12,14138,81327 +9944,214,12,4286,55759 +9945,214,12,51976,1094169 +9946,372,12,19688,1316661 +9947,283,12,319924,63784 +9948,214,12,16436,55168 +9949,214,12,116894,1064873 +9950,214,12,132714,2106 +9951,372,12,10204,1127909 +9952,214,12,12601,73062 +9953,265,12,284564,589864 +9954,70,12,10207,46090 +9955,214,12,2349,17732 +9956,283,12,378441,1016176 +9957,214,12,323315,143863 +9958,265,12,230179,1504429 +9959,393,12,9016,61419 +9960,214,12,91459,1869708 +9961,214,12,49038,33009 +9962,271,12,44655,1475844 +9963,265,12,13437,21479 +9964,214,12,10760,66531 +9965,68,12,36807,31710 +9966,283,12,82327,4406 +9967,283,12,8915,1318192 +9968,163,12,93858,1522890 +9969,214,12,30298,4081 +9970,214,12,29151,17697 +9971,214,12,17654,3506 +9972,214,12,2516,25630 +9973,283,12,79935,44146 +9974,214,12,43473,1433918 +9975,283,12,19766,2151 +9976,265,12,9836,1296 +9977,283,12,709,3275 +9978,214,12,82465,41150 +9979,283,12,27380,598 +9980,283,12,25376,18495 +9981,214,12,166666,17080 +9982,214,12,29825,41332 +9983,265,12,213681,1771612 +9984,283,12,109424,6410 +9985,283,12,27983,1263 +9986,214,12,370234,1276439 +9987,214,12,5759,45407 +9988,214,12,257444,1176454 +9989,265,12,82519,683434 +9990,214,12,10425,65115 +9991,283,12,378236,7903 +9992,214,12,266285,1195575 +9993,265,12,346672,3956 +9994,283,12,385750,1603188 +9995,163,12,213681,80604 +9996,300,12,31127,932951 +9997,265,12,7555,17210 +9998,214,12,10351,12477 +9999,214,12,28893,102429 +10000,214,12,322,4745 +10001,70,12,96433,1077512 +10002,265,12,345922,1296 +10003,163,12,38554,38416 +10004,265,12,76341,66897 +10005,265,12,25520,6371 +10006,70,12,46924,993394 +10007,214,12,53459,1301111 +10008,214,12,329724,1055806 +10009,214,12,10750,66625 +10010,271,12,11577,1002740 +10011,265,12,10929,57430 +10012,214,12,8988,6488 +10013,410,12,291413,186605 +10014,163,12,86814,238582 +10015,214,12,242683,30252 +10016,265,12,82,1225462 +10017,283,12,17609,19993 +10018,214,12,3962,34382 +10019,283,12,1278,16337 +10020,214,12,13777,72051 +10021,214,12,28775,41705 +10022,214,12,16058,79112 +10023,214,12,252680,1152737 +10024,214,12,11058,67976 +10025,214,12,55694,51703 +10026,283,12,68387,38700 +10027,265,12,9667,68692 +10028,283,12,253257,53899 +10029,231,12,10204,59003 +10030,214,12,393367,1153023 +10031,265,12,95756,1006749 +10032,283,12,17332,6410 +10033,410,12,354859,1552063 +10034,214,12,178587,4081 +10035,214,12,285213,1442980 +10036,389,12,12273,1307802 +10037,265,12,13061,7087 +10038,214,12,45512,9578 +10039,70,12,28774,1621219 +10040,265,12,64215,545660 +10041,214,12,5393,43089 +10042,283,12,10274,41654 +10043,214,12,415633,1678288 +10044,265,12,271714,1547233 +10045,214,12,102632,53677 +10046,214,12,4551,5381 +10047,283,12,655,1239904 +10048,283,12,7299,1332509 +10049,214,12,10294,64784 +10050,214,12,98339,1056999 +10051,214,12,81616,33505 +10052,214,12,352025,16862 +10053,265,12,101325,1560947 +10054,214,12,244539,1095275 +10055,214,12,18673,83595 +10056,283,12,188927,1122003 +10057,68,12,5965,42368 +10058,214,12,76010,1193423 +10059,265,12,3173,31035 +10060,265,12,4688,11812 +10061,265,12,102197,1602996 +10062,265,12,18890,489 +10063,214,12,30924,56961 +10064,70,12,30478,1376321 +10065,163,12,5759,1741927 +10066,214,12,7514,52837 +10067,214,12,85446,20739 +10068,163,12,1579,17655 +10069,214,12,257088,47285 +10070,214,12,35253,46434 +10071,265,12,222858,69663 +10072,214,12,14750,21102 +10073,214,12,121929,1112958 +10074,389,12,176,1817649 +10075,265,12,345915,1193191 +10076,265,12,365942,17451 +10077,265,12,15356,61492 +10078,283,12,47504,5669 +10079,214,12,2453,27005 +10080,163,12,11517,2986 +10081,265,12,410118,1779186 +10082,214,12,17692,66807 +10083,214,12,124963,69878 +10084,265,12,7445,60578 +10085,214,12,176670,30270 +10086,163,12,58251,227564 +10087,283,12,169881,1519284 +10088,214,12,259694,1116283 +10089,214,12,73262,4526 +10090,214,12,13092,74160 +10091,265,12,64784,1305493 +10092,265,12,6977,6488 +10093,214,12,44657,3238 +10094,283,12,188927,6052 +10095,214,12,400668,1816875 +10096,214,12,77067,939449 +10097,214,12,145247,1374823 +10098,265,12,365942,113526 +10099,283,12,15749,59668 +10100,372,12,370234,1621856 +10101,214,12,47653,13848 +10102,214,12,229304,992658 +10103,163,12,10708,57308 +10104,214,12,23544,1697683 +10105,265,12,21619,30055 +10106,214,12,2321,16297 +10107,214,12,63773,70596 +10108,283,12,86709,933574 +10109,393,12,45019,1550203 +10110,214,12,43117,51767 +10111,214,12,16005,34340 +10112,163,12,13542,63595 +10113,13,12,60488,1331762 +10114,214,12,14254,21036 +10115,283,12,27265,958772 +10116,372,12,34482,1343388 +10117,214,12,11139,68316 +10118,283,12,8391,7800 +10119,163,12,419459,1729056 +10120,169,3,378018,1762254 +10121,214,12,6877,2997 +10122,214,12,469,6403 +10123,265,12,696,6994 +10124,265,12,598,8565 +10125,214,12,22803,68320 +10126,265,12,213121,7 +10127,283,12,9504,897 +10128,214,12,124470,1070054 +10129,214,12,96936,1053169 +10130,214,12,346672,3954 +10131,286,3,131343,1182248 +10132,214,12,29272,1276272 +10133,265,12,64786,1096188 +10134,214,12,12994,8216 +10135,265,12,110588,1050026 +10136,214,12,621,8879 +10137,214,12,11458,2948 +10138,214,12,17236,7847 +10139,163,12,84284,1625799 +10140,265,12,366631,201028 +10141,214,12,28,2870 +10142,265,12,11358,65115 +10143,393,12,353728,1567300 +10144,283,12,9443,1353832 +10145,283,12,3597,5914 +10146,315,12,347031,1465565 +10147,214,12,433,5836 +10148,163,12,400174,1243081 +10149,70,12,44303,180749 +10150,271,12,96411,1009353 +10151,214,12,16296,80247 +10152,283,12,3682,3192 +10153,271,12,11584,1241382 +10154,283,12,9352,63533 +10155,283,12,18317,5489 +10156,214,12,287,4052 +10157,70,12,31127,1171318 +10158,70,12,66881,1016110 +10159,214,12,9836,20629 +10160,265,12,62768,12477 +10161,283,12,949,1424046 +10162,283,12,4986,16516 +10163,231,12,356752,1841610 +10164,283,12,31532,1532472 +10165,214,12,32532,109314 +10166,214,12,33338,548474 +10167,271,12,1662,4006 +10168,265,12,47194,1351466 +10169,214,12,212713,33062 +10170,283,12,323675,94546 +10171,214,12,9812,113225 +10172,214,12,144680,1125891 +10173,265,12,158908,72208 +10174,214,12,1450,1120536 +10175,214,12,400668,1816877 +10176,214,12,33339,5381 +10177,265,12,415542,1688145 +10178,214,12,9079,56932 +10179,283,12,341077,238120 +10180,214,12,273096,1716791 +10181,214,12,25919,1147603 +10182,214,12,27045,26959 +10183,265,12,23739,56941 +10184,214,12,285858,1456311 +10185,163,12,42093,1875467 +10186,214,12,142391,1322103 +10187,318,12,2924,1706982 +10188,163,12,29259,1405837 +10189,265,12,15671,1108746 +10190,265,12,10937,33009 +10191,107,12,401164,1817474 +10192,214,12,107073,1481475 +10193,283,12,7515,94470 +10194,283,12,122857,1099078 +10195,283,12,327528,14096 +10196,322,12,15472,1455331 +10197,214,12,208091,1193908 +10198,214,12,86838,54474 +10199,283,12,169881,5747 +10200,283,12,9982,61419 +10201,265,12,198795,31865 +10202,283,12,2608,27241 +10203,265,12,12289,1117865 +10204,214,12,10050,12233 +10205,163,12,15199,1245366 +10206,163,12,2034,956462 +10207,214,12,27814,99031 +10208,271,12,10020,65858 +10209,283,12,336691,1547712 +10210,214,12,117905,1408140 +10211,300,12,284052,1410202 +10212,265,12,128215,966439 +10213,214,12,17771,20182 +10214,265,12,21671,10872 +10215,265,12,11302,6993 +10216,214,12,9893,50139 +10217,265,12,9287,20927 +10218,231,12,921,40375 +10219,265,12,18082,937503 +10220,283,12,403570,12203 +10221,214,12,252680,235548 +10222,214,12,121354,68083 +10223,265,12,172828,45407 +10224,265,12,110830,1050713 +10225,265,12,19971,1022306 +10226,265,12,86700,929903 +10227,265,12,14459,75134 +10228,389,12,9928,1604010 +10229,214,12,35,3388 +10230,283,12,59962,961165 +10231,214,12,193893,11092 +10232,214,12,399790,1313548 +10233,372,12,14286,84377 +10234,214,12,29372,41753 +10235,283,12,398289,23811 +10236,265,12,70670,1123790 +10237,265,12,15661,89211 +10238,265,12,263472,1714329 +10239,265,12,14181,70052 +10240,214,12,19142,10951 +10241,214,12,76686,32836 +10242,214,12,4809,30286 +10243,283,12,9472,14377 +10244,322,12,14811,930 +10245,265,12,173205,1779282 +10246,214,12,337104,1628509 +10247,265,12,47876,6837 +10248,265,12,284564,1680444 +10249,214,12,275269,85675 +10250,214,12,9753,59001 +10251,283,12,10047,1309605 +10252,265,12,3478,32051 +10253,265,12,80389,42007 +10254,214,12,38327,41383 +10255,271,12,397837,60584 +10256,265,12,11134,18897 +10257,265,12,283995,57027 +10258,265,12,121674,73517 +10259,214,12,409447,52597 +10260,265,12,24150,1307 +10261,214,12,393562,223853 +10262,271,12,455661,1862490 +10263,214,12,144271,1120638 +10264,163,12,227975,1707461 +10265,271,12,13580,74696 +10266,214,12,1986,20435 +10267,214,12,214187,1157604 +10268,322,12,27259,1477563 +10269,265,12,12255,59003 +10270,283,12,12594,1081201 +10271,271,12,73835,1606262 +10272,214,12,142012,16214 +10273,393,12,3933,75578 +10274,283,12,13056,1034748 +10275,214,12,72984,33008 +10276,283,12,172897,41654 +10277,214,12,26030,37456 +10278,283,12,6973,20540 +10279,214,12,10033,5358 +10280,283,12,4644,41676 +10281,70,12,15560,94236 +10282,265,12,37003,27218 +10283,163,12,3172,1470937 +10284,322,12,45527,1438630 +10285,318,12,13058,1834850 +10286,283,12,257444,2325 +10287,214,12,330115,1496218 +10288,70,12,2924,6184 +10289,283,12,392271,1108802 +10290,265,12,341077,1346142 +10291,163,12,307931,1489788 +10292,318,12,45013,1818061 +10293,265,12,194722,1546455 +10294,214,12,8942,31268 +10295,214,12,413762,1035074 +10296,214,12,9819,380 +10297,265,12,63360,1221398 +10298,214,12,12526,62511 +10299,265,12,459295,1670620 +10300,164,3,271404,1764797 +10301,265,12,50008,578 +10302,214,12,393407,20674 +10303,265,12,11953,5026 +10304,283,12,17473,1330243 +10305,127,3,383538,1635202 +10306,265,12,404459,1665253 +10307,283,12,98586,17533 +10308,163,12,246860,1193 +10309,265,12,11647,70747 +10310,265,12,9358,57429 +10311,214,12,33273,939462 +10312,163,12,62132,234844 +10313,265,12,177047,1116278 +10314,283,12,243568,42306 +10315,214,12,228205,64172 +10316,214,12,16890,1468130 +10317,265,12,174645,1157602 +10318,214,12,13505,4504 +10319,214,12,74777,583456 +10320,214,12,26298,24852 +10321,214,12,152989,1015649 +10322,214,12,1715,18783 +10323,283,12,362703,3276 +10324,214,12,2687,11815 +10325,271,12,220820,1405261 +10326,214,12,205864,1603891 +10327,227,12,435,1767010 +10328,265,12,45610,1014925 +10329,271,12,43469,1538467 +10330,214,12,12783,73463 +10331,283,12,43931,2952 +10332,214,12,9102,56982 +10333,214,12,16151,79688 +10334,214,12,1253,2239 +10335,214,12,40688,57680 +10336,214,12,58411,57132 +10337,214,12,16432,938248 +10338,163,12,154972,1441216 +10339,300,12,356752,1841559 +10340,322,12,10484,1161611 +10341,214,12,14615,1098541 +10342,265,12,86829,969757 +10343,163,12,68737,1382496 +10344,265,12,5393,43097 +10345,265,12,332411,1627248 +10346,214,12,6166,48325 +10347,265,12,22894,66727 +10348,265,12,89008,1102580 +10349,271,12,9593,1395352 +10350,214,12,371181,32733 +10351,283,12,50123,959072 +10352,283,12,40087,1544205 +10353,265,12,85673,102429 +10354,37,3,356752,1841592 +10355,265,12,24403,91575 +10356,214,12,38743,121140 +10357,214,12,6972,12202 +10358,372,12,18405,1842586 +10359,265,12,11186,14654 +10360,70,12,265208,1552004 +10361,214,12,31364,115235 +10362,214,12,1917,17424 +10363,214,12,398786,1629012 +10364,163,12,2105,298 +10365,271,12,58757,228359 +10366,214,12,13680,70698 +10367,163,12,368006,1640301 +10368,265,12,1991,59839 +10369,214,12,301224,1382180 +10370,214,12,22307,32035 +10371,214,12,45649,1317572 +10372,214,12,140894,1763890 +10373,214,12,838,12401 +10374,214,12,301228,51120 +10375,214,12,8856,1888 +10376,283,12,51549,1389150 +10377,144,12,975,35674 +10378,265,12,334538,1658465 +10379,214,12,351242,1273859 +10380,214,12,28577,7646 +10381,283,12,78691,2953 +10382,265,12,337958,1583402 +10383,265,12,11953,1776 +10384,283,12,61400,233074 +10385,214,12,258193,1299058 +10386,265,12,14552,21067 +10387,227,12,8619,1858346 +10388,214,12,351065,8562 +10389,214,12,393732,1018340 +10390,214,12,9918,2448 +10391,214,12,11680,11203 +10392,214,12,290370,304528 +10393,214,12,31945,56003 +10394,214,12,32082,31498 +10395,389,12,11547,1557609 +10396,214,12,71700,563693 +10397,214,12,13279,2888 +10398,300,12,10950,18789 +10399,265,12,44932,1390216 +10400,214,12,12683,23799 +10401,163,12,14295,1516278 +10402,214,12,77338,937260 +10403,214,12,12144,12881 +10404,214,12,48254,57301 +10405,265,12,15476,1109795 +10406,271,12,140032,1111814 +10407,283,12,209263,546 +10408,214,12,313922,20487 +10409,214,12,9252,57007 +10410,214,12,76494,29016 +10411,70,12,206647,1342669 +10412,283,12,15935,966288 +10413,283,12,3051,6791 +10414,265,12,405473,43144 +10415,214,12,336011,1641320 +10416,214,12,347945,1042449 +10417,283,12,72251,1578417 +10418,283,12,48609,14096 +10419,214,12,48706,769 +10420,265,12,76211,8502 +10421,214,12,9785,21635 +10422,107,12,419430,1757620 +10423,214,12,89492,3184 +10424,214,12,42057,6220 +10425,265,12,13092,82694 +10426,265,12,184741,1529469 +10427,315,12,19995,1401784 +10428,214,12,14881,14777 +10429,214,12,44945,112300 +10430,265,12,33273,1034171 +10431,214,12,36758,6589 +10432,315,12,132363,1407724 +10433,200,3,381518,1578899 +10434,214,12,9540,224 +10435,265,12,10391,4612 +10436,265,12,323675,298 +10437,265,12,126832,30333 +10438,283,12,14137,1538935 +10439,214,12,3050,17144 +10440,214,12,29233,1696493 +10441,214,12,4993,1029442 +10442,389,12,74,1589725 +10443,70,12,42542,1486901 +10444,265,12,280092,995456 +10445,283,12,2640,14845 +10446,265,12,184741,4123 +10447,163,12,264729,938781 +10448,322,12,8467,29206 +10449,265,12,257534,956672 +10450,214,12,37929,1217086 +10451,214,12,12230,2106 +10452,214,12,5279,10417 +10453,214,12,9953,60865 +10454,214,12,33839,14646 +10455,214,12,284289,1462036 +10456,322,12,2001,1781737 +10457,265,12,210047,70646 +10458,265,12,45273,57077 +10459,322,12,8247,1701160 +10460,283,12,7980,1326 +10461,163,12,16839,1347937 +10462,214,12,6972,6201 +10463,265,12,13701,8747 +10464,214,12,180998,150330 +10465,214,12,1833,11711 +10466,214,12,34512,74881 +10467,265,12,46145,1091309 +10468,271,12,47921,1532475 +10469,214,12,26679,95999 +10470,214,12,24420,20458 +10471,322,12,157847,1372216 +10472,265,12,11902,20010 +10473,214,12,10862,322 +10474,214,12,59828,10004 +10475,265,12,278621,1415882 +10476,214,12,410718,1128184 +10477,315,12,155597,1586003 +10478,214,12,283489,19862 +10479,214,12,38743,121141 +10480,372,12,7972,53478 +10481,372,12,10055,62588 +10482,214,12,55156,126258 +10483,214,12,353686,84348 +10484,265,12,302528,953488 +10485,265,12,268920,53476 +10486,214,12,82520,928130 +10487,214,12,32068,41134 +10488,284,12,110416,1618021 +10489,372,12,52454,236845 +10490,265,12,300596,939477 +10491,265,12,71670,1066333 +10492,265,12,27573,79250 +10493,214,12,351242,1639084 +10494,214,12,66125,65596 +10495,283,12,14979,8313 +10496,214,12,272878,10569 +10497,214,12,76600,2710 +10498,214,12,45019,4504 +10499,214,12,291577,1362520 +10500,283,12,193893,45848 +10501,372,12,206647,77511 +10502,265,12,5123,3658 +10503,214,12,330115,51980 +10504,265,12,12182,238446 +10505,271,12,18079,1271308 +10506,265,12,111839,72583 +10507,265,12,274479,1522988 +10508,214,12,791,11813 +10509,265,12,89008,52991 +10510,214,12,177572,56612 +10511,214,12,4955,12737 +10512,214,12,54898,6100 +10513,271,12,28171,100021 +10514,163,12,266856,958649 +10515,36,12,8989,56506 +10516,283,12,313074,1402661 +10517,214,12,10586,2621 +10518,214,12,12079,17231 +10519,214,12,125759,13521 +10520,214,12,52395,63905 +10521,214,12,259075,1539651 +10522,265,12,343934,1237548 +10523,265,12,375366,937613 +10524,265,12,369820,1373057 +10525,163,12,31146,1841272 +10526,265,12,43241,30904 +10527,214,12,26656,9176 +10528,214,12,106049,1111221 +10529,265,12,403119,1658456 +10530,214,12,61035,11940 +10531,214,12,79593,24051 +10532,214,12,24420,6468 +10533,322,12,152736,1409895 +10534,372,12,43432,1275906 +10535,70,12,152042,1366258 +10536,214,12,9914,60399 +10537,214,12,27599,3868 +10538,214,12,106020,1326928 +10539,265,12,616,9198 +10540,292,3,339403,1635291 +10541,214,12,35284,5398 +10542,214,12,47878,1639023 +10543,265,12,76170,10570 +10544,265,12,340215,1630281 +10545,214,12,10549,65614 +10546,214,12,390296,1700430 +10547,214,12,10467,1994 +10548,283,12,13853,136232 +10549,214,12,173205,1852943 +10550,214,12,109491,3718 +10551,214,12,356500,951484 +10552,265,12,16131,57561 +10553,265,12,50008,893 +10554,214,12,308269,1447884 +10555,265,12,9354,19745 +10556,214,12,19140,13570 +10557,265,12,1966,66185 +10558,214,12,107445,1041612 +10559,214,12,43256,113725 +10560,283,12,238,1547035 +10561,284,12,16074,79164 +10562,283,12,241927,1379594 +10563,214,12,3962,24074 +10564,214,12,10063,62680 +10565,265,12,27230,1409442 +10566,265,12,340215,1630280 +10567,214,12,182127,64425 +10568,214,12,208529,1425887 +10569,283,12,264560,63560 +10570,214,12,83666,1004835 +10571,214,12,43645,32309 +10572,214,12,12079,65823 +10573,214,12,16083,51542 +10574,70,12,111017,44725 +10575,214,12,42640,1081187 +10576,214,12,3055,2766 +10577,372,12,314065,87824 +10578,214,12,34512,15903 +10579,214,12,207402,1076600 +10580,214,12,286595,20432 +10581,265,12,300669,1725555 +10582,283,12,10972,7494 +10583,214,12,384737,17211 +10584,265,12,11653,64425 +10585,214,12,32609,6448 +10586,265,12,265208,1552000 +10587,283,12,2669,10496 +10588,163,12,16083,1384895 +10589,283,12,44414,12686 +10590,265,12,11653,56719 +10591,214,12,1911,4782 +10592,283,12,70436,1113 +10593,70,12,27629,115373 +10594,265,12,315010,544383 +10595,214,12,116979,1067252 +10596,214,12,103620,44765 +10597,283,12,168027,13585 +10598,265,12,374614,1721264 +10599,214,12,288521,1371854 +10600,214,12,62978,236362 +10601,163,12,13092,948439 +10602,214,12,37710,16729 +10603,70,12,124963,1513646 +10604,214,12,376501,1283814 +10605,283,12,152748,2952 +10606,372,12,244786,1533528 +10607,163,12,354859,17856 +10608,214,12,422005,1186697 +10609,265,12,70074,971109 +10610,315,12,9946,91937 +10611,346,3,339403,1635332 +10612,372,12,353326,957967 +10613,283,12,8470,21639 +10614,214,12,201223,1319217 +10615,214,12,33273,79283 +10616,283,12,14459,1320859 +10617,265,12,307931,1489786 +10618,265,12,1833,12631 +10619,283,12,198663,2215 +10620,315,12,9042,91327 +10621,283,12,101669,59932 +10622,265,12,419459,1729058 +10623,214,12,79382,93074 +10624,265,12,13934,7878 +10625,214,12,17796,80247 +10626,265,12,9555,3056 +10627,271,12,2966,29089 +10628,214,12,404459,1065549 +10629,214,12,28519,16398 +10630,265,12,88641,14895 +10631,265,12,9753,54894 +10632,283,12,289225,585679 +10633,265,12,12276,1353 +10634,271,12,43195,1350318 +10635,214,12,9756,38081 +10636,214,12,28,1776 +10637,163,12,103597,1590640 +10638,265,12,11205,46323 +10639,265,12,105,489 +10640,214,12,4520,41373 +10641,214,12,634,9157 +10642,214,12,7304,66708 +10643,265,12,9532,57857 +10644,283,12,14372,1832337 +10645,271,12,86603,15489 +10646,271,12,43850,1569878 +10647,265,12,109451,155267 +10648,214,12,337958,75547 +10649,214,12,13090,4857 +10650,214,12,285,2446 +10651,214,12,7459,10903 +10652,283,12,336050,1644776 +10653,214,12,47956,28768 +10654,265,12,5413,43143 +10655,283,12,259695,6044 +10656,214,12,23637,32309 +10657,372,12,16083,45835 +10658,214,12,152736,622844 +10659,214,12,126418,3633 +10660,214,12,66247,544890 +10661,214,12,195796,1632652 +10662,214,12,286709,149963 +10663,214,12,323435,1571049 +10664,214,12,358982,1507498 +10665,214,12,15379,33009 +10666,214,12,251232,1286538 +10667,214,12,13205,61978 +10668,283,12,23964,5363 +10669,265,12,294254,1257144 +10670,265,12,82079,1409453 +10671,70,12,51104,133082 +10672,214,12,241239,213863 +10673,93,12,356752,1841567 +10674,358,12,27259,1564277 +10675,214,12,40916,9055 +10676,265,12,10897,67389 +10677,265,12,123025,141043 +10678,244,3,381015,1828369 +10679,265,12,9352,57601 +10680,265,12,64942,139346 +10681,265,12,22584,2663 +10682,214,12,13805,150748 +10683,214,12,73313,12304 +10684,265,12,11899,55983 +10685,214,12,1995,1093 +10686,214,12,19719,85098 +10687,361,3,339403,1260147 +10688,214,12,14295,2860 +10689,214,12,9551,57920 +10690,214,12,5899,21440 +10691,265,12,123025,34934 +10692,214,12,406431,131791 +10693,214,12,88794,190 +10694,70,12,69165,172891 +10695,214,12,165718,40080 +10696,271,12,76097,16821 +10697,283,12,291871,13065 +10698,214,12,1387,16863 +10699,214,12,90616,1408596 +10700,393,12,237584,989750 +10701,214,12,258251,1125208 +10702,214,12,325133,54734 +10703,214,12,10041,62357 +10704,214,12,246403,1099261 +10705,283,12,38922,239415 +10706,214,12,7234,52135 +10707,271,12,12,72753 +10708,142,12,14537,235237 +10709,70,12,46145,1632079 +10710,372,12,331962,1427966 +10711,214,12,130948,1057637 +10712,283,12,136752,1063951 +10713,214,12,137504,1530395 +10714,214,12,25037,68424 +10715,231,12,9902,99249 +10716,214,12,6973,51688 +10717,296,3,442752,1761889 +10718,214,12,27196,70649 +10719,265,12,549,1538812 +10720,163,12,1428,60515 +10721,214,12,128169,1086440 +10722,214,12,28452,100846 +10723,214,12,17287,84271 +10724,214,12,66741,87878 +10725,318,12,10909,1551273 +10726,265,12,139455,1281266 +10727,265,12,346672,3955 +10728,265,12,13685,71324 +10729,214,12,98115,110280 +10730,214,12,107052,1188499 +10731,393,12,266856,1746702 +10732,214,12,332567,4768 +10733,283,12,48153,2871 +10734,214,12,10476,53638 +10735,214,12,14457,1098867 +10736,214,12,219233,587603 +10737,214,12,499,3778 +10738,214,12,125021,5342 +10739,372,12,11370,43673 +10740,214,12,10274,64659 +10741,322,12,178809,1412598 +10742,265,12,40879,1078483 +10743,160,3,383538,1502866 +10744,283,12,405670,1853230 +10745,271,12,68822,9749 +10746,214,12,10797,66847 +10747,214,12,320736,67813 +10748,70,12,11618,11655 +10749,283,12,26390,957282 +10750,144,12,300669,1725561 +10751,283,12,9778,19679 +10752,214,12,270774,18897 +10753,318,12,379,1554311 +10754,214,12,206563,2238 +10755,283,12,64215,1067259 +10756,322,12,8870,1724265 +10757,214,12,11517,1059 +10758,214,12,43548,21230 +10759,214,12,54384,876106 +10760,214,12,124470,27756 +10761,214,12,147773,1242110 +10762,214,12,26299,41134 +10763,265,12,68721,113672 +10764,214,12,33472,29634 +10765,214,12,47238,1498769 +10766,214,12,21208,6193 +10767,214,12,30352,58424 +10768,214,12,11161,3036 +10769,214,12,365065,1526015 +10770,265,12,142989,1012850 +10771,214,12,6171,16329 +10772,265,12,16876,80963 +10773,283,12,339408,60503 +10774,70,12,331313,1767238 +10775,214,12,37923,956352 +10776,214,12,45610,12995 +10777,214,12,283686,17003 +10778,265,12,181533,57634 +10779,214,12,9667,1884 +10780,265,12,346473,1508118 +10781,214,12,13162,408 +10782,283,12,128311,22065 +10783,283,12,165,752 +10784,214,12,24363,4232 +10785,283,12,293970,1017236 +10786,283,12,127585,3276 +10787,300,12,20941,1723679 +10788,214,12,196235,1176352 +10789,214,12,308529,1756365 +10790,265,12,59962,60711 +10791,214,12,11837,70663 +10792,214,12,14552,1448380 +10793,214,12,220002,109083 +10794,283,12,165,598 +10795,300,12,47386,138784 +10796,265,12,301804,1472641 +10797,163,12,9568,60401 +10798,265,12,381015,1320303 +10799,393,12,82990,935493 +10800,283,12,203819,37281 +10801,214,12,15090,947232 +10802,283,12,4285,11944 +10803,214,12,159824,53684 +10804,283,12,8870,2953 +10805,265,12,50225,17425 +10806,214,12,25941,94919 +10807,315,12,104374,1619181 +10808,214,12,12652,3560 +10809,214,12,10425,65116 +10810,214,12,17744,10589 +10811,70,12,18620,1638928 +10812,265,12,68721,1059732 +10813,283,12,10476,54606 +10814,271,12,43441,1337171 +10815,70,12,19996,1583689 +10816,214,12,97024,10790 +10817,70,12,18405,19697 +10818,265,12,17495,11204 +10819,214,12,2984,29310 +10820,214,12,214756,1089071 +10821,214,12,14765,52350 +10822,214,12,234155,1624805 +10823,283,12,39013,5328 +10824,214,12,46492,15216 +10825,163,12,266082,1451497 +10826,214,12,9441,10965 +10827,214,12,346723,1482819 +10828,214,12,324930,1500693 +10829,214,12,428687,1454386 +10830,214,12,14047,51612 +10831,265,12,245891,94825 +10832,214,12,336850,1010831 +10833,283,12,703,1046 +10834,70,12,9297,1462669 +10835,214,12,16171,72898 +10836,283,12,369885,16363 +10837,214,12,320453,1446268 +10838,265,12,39407,342032 +10839,214,12,11472,17828 +10840,283,12,24657,1968 +10841,214,12,13516,17087 +10842,265,12,209112,10949 +10843,214,12,259,1650 +10844,214,12,19946,21230 +10845,265,12,352094,145224 +10846,283,12,29151,4023 +10847,265,12,338063,1581568 +10848,283,12,19338,7786 +10849,265,12,49038,1066197 +10850,283,12,1850,6410 +10851,214,12,2613,60065 +10852,283,12,44718,60501 +10853,214,12,38031,1268 +10854,214,12,1678,18604 +10855,214,12,131932,1482615 +10856,214,12,8915,115103 +10857,214,12,413782,67078 +10858,102,3,339403,1635262 +10859,322,12,197,1401599 +10860,372,12,374473,1650260 +10861,214,12,10866,15344 +10862,214,12,302828,1385213 +10863,322,12,244786,1417888 +10864,70,12,122677,1021404 +10865,265,12,4307,952 +10866,244,3,413998,1895006 +10867,214,12,325205,1426716 +10868,315,12,345915,1041553 +10869,265,12,4964,54734 +10870,214,12,425591,1102524 +10871,144,12,17590,70778 +10872,265,12,173294,1351803 +10873,265,12,121674,697538 +10874,214,12,51144,368106 +10875,265,12,285840,1384008 +10876,214,12,137726,1355009 +10877,214,12,18392,1016098 +10878,265,12,272878,52358 +10879,214,12,264646,59644 +10880,214,12,205939,1150952 +10881,214,12,102161,457819 +10882,271,12,78522,99412 +10883,265,12,259694,57430 +10884,265,12,301804,1659235 +10885,265,12,31021,1707264 +10886,214,12,55700,5268 +10887,214,12,11618,18322 +10888,214,12,285848,1034358 +10889,214,12,266856,2236 +10890,214,12,86647,46644 +10891,214,12,65771,135975 +10892,214,12,3033,29787 +10893,283,12,9918,60503 +10894,244,3,463800,1424636 +10895,214,12,27085,30169 +10896,214,12,52109,33009 +10897,214,12,147815,584464 +10898,214,12,41298,1623713 +10899,214,12,43022,109843 +10900,283,12,332979,5328 +10901,283,12,283686,1031748 +10902,283,12,11688,61419 +10903,283,12,13092,474 +10904,271,12,511,7103 +10905,283,12,9504,1113357 +10906,214,12,7288,69597 +10907,265,12,14435,31180 +10908,265,12,238749,742382 +10909,70,12,655,9883 +10910,283,12,10003,4142 +10911,214,12,377447,1825001 +10912,300,12,359412,1636783 +10913,283,12,9495,3192 +10914,265,12,42941,72437 +10915,70,12,39356,1363412 +10916,271,12,9325,1520694 +10917,283,12,42040,390 +10918,372,12,436,5875 +10919,364,12,118957,84758 +10920,372,12,61400,233069 +10921,214,12,104744,1093414 +10922,214,12,65603,2993 +10923,283,12,16374,2952 +10924,265,12,12831,73912 +10925,265,12,172828,939456 +10926,214,12,9703,19051 +10927,214,12,340881,1468977 +10928,265,12,330115,979489 +10929,265,12,112973,6590 +10930,322,12,121598,1880930 +10931,283,12,134394,2215 +10932,283,12,43092,1590913 +10933,214,12,332979,45648 +10934,283,12,226968,1053606 +10935,265,12,11635,54251 +10936,214,12,85916,138076 +10937,214,12,238589,971109 +10938,70,12,10950,1836317 +10939,214,12,35451,114303 +10940,265,12,353979,1769038 +10941,214,12,128120,1124067 +10942,214,12,429174,1257003 +10943,265,12,128270,1004836 +10944,214,12,975,2090 +10945,265,12,71701,29664 +10946,70,12,6,1498452 +10947,214,12,277968,48590 +10948,265,12,200505,57560 +10949,214,12,9648,59438 +10950,214,12,407,5127 +10951,283,12,82485,1099078 +10952,265,12,16151,77571 +10953,70,12,127585,6186 +10954,214,12,10874,7908 +10955,214,12,9819,3305 +10956,70,12,27480,1484509 +10957,214,12,243935,42357 +10958,271,12,212530,1196916 +10959,283,12,173153,6479 +10960,214,12,333371,15344 +10961,214,12,71825,68802 +10962,265,12,8869,54212 +10963,214,12,172,1791 +10964,214,12,4547,7475 +10965,214,12,10011,62008 +10966,265,12,7980,488 +10967,283,12,2309,1325 +10968,283,12,28902,2874 +10969,214,12,37958,83069 +10970,214,12,16366,61297 +10971,214,12,7972,53458 +10972,214,12,9828,59664 +10973,214,12,69921,240747 +10974,214,12,2604,2621 +10975,265,12,70981,28974 +10976,265,12,15584,1667222 +10977,214,12,75446,1087738 +10978,214,12,94811,1221528 +10979,214,12,225728,1512747 +10980,214,12,4550,1117873 +10981,214,12,44800,16514 +10982,364,12,15045,1807710 +10983,283,12,388243,1563657 +10984,265,12,315837,1717979 +10985,265,12,16296,1706330 +10986,265,12,123634,1078399 +10987,214,12,326359,61416 +10988,214,12,141868,89518 +10989,70,12,67693,105091 +10990,214,12,779,11572 +10991,214,12,8457,18322 +10992,214,12,9904,9543 +10993,214,12,164558,1146048 +10994,300,12,11358,1555253 +10995,214,12,118677,1031586 +10996,318,12,78691,1803000 +10997,163,12,10696,54252 +10998,163,12,434873,1682325 +10999,265,12,10735,57048 +11000,265,12,57201,928657 +11001,70,12,340215,1630286 +11002,214,12,18616,30870 +11003,214,12,312138,1493436 +11004,265,12,14452,63777 +11005,214,12,25682,29288 +11006,214,12,12476,55164 +11007,70,12,4248,67603 +11008,214,12,35405,11472 +11009,283,12,262522,986277 +11010,265,12,16239,55710 +11011,265,12,205891,1175137 +11012,265,12,17962,553115 +11013,265,12,241855,1001661 +11014,214,12,269,3779 +11015,214,12,34723,10685 +11016,265,12,333385,12526 +11017,231,12,4248,35690 +11018,37,3,91673,1391942 +11019,214,12,48116,1030521 +11020,265,12,102630,71877 +11021,389,12,924,1551662 +11022,214,12,27346,90387 +11023,214,12,121824,68602 +11024,214,12,89325,1695848 +11025,265,12,323679,45405 +11026,214,12,2989,1185752 +11027,265,12,10735,66963 +11028,214,12,45726,73258 +11029,214,12,366566,1161611 +11030,283,12,9828,59668 +11031,265,12,17692,106723 +11032,144,12,34838,1647261 +11033,265,12,21371,1102572 +11034,214,12,13567,1426218 +11035,163,12,311324,1126348 +11036,283,12,253235,15426 +11037,265,12,82622,928291 +11038,300,12,32049,9201 +11039,214,12,62837,1399693 +11040,265,12,9667,68691 +11041,163,12,378441,1797399 +11042,265,12,42542,1015790 +11043,283,12,10657,19680 +11044,214,12,2100,1460574 +11045,265,12,291871,1381941 +11046,283,12,42345,1518585 +11047,214,12,2965,2043 +11048,315,12,9882,1534907 +11049,265,12,62213,1296 +11050,265,12,25941,132212 +11051,283,12,9812,23653 +11052,214,12,72279,565408 +11053,214,12,61341,46859 +11054,214,12,70074,75040 +11055,144,12,297762,1824238 +11056,265,12,29054,102429 +11057,163,12,365942,1781846 +11058,214,12,133255,89266 +11059,214,12,42288,109853 +11060,214,12,43092,131505 +11061,214,12,18214,21406 +11062,214,12,152042,1126355 +11063,265,12,24363,31519 +11064,283,12,9793,62778 +11065,283,12,90563,1263 +11066,322,12,613,1425867 +11067,70,12,413421,85698 +11068,127,3,339403,1200780 +11069,315,12,76600,66696 +11070,214,12,6934,23825 +11071,283,12,62630,1016176 +11072,214,12,30583,572053 +11073,300,12,5123,3658 +11074,265,12,8617,44633 +11075,214,12,352327,1491838 +11076,265,12,33427,110639 +11077,214,12,101325,1413119 +11078,214,12,77022,2106 +11079,214,12,54845,46602 +11080,265,12,9981,282 +11081,214,12,59935,6098 +11082,315,12,218778,1399858 +11083,322,12,2503,1406857 +11084,214,12,28665,1493088 +11085,214,12,109466,4844 +11086,214,12,127585,9032 +11087,214,12,54022,59723 +11088,214,12,1416,1191 +11089,214,12,9950,42951 +11090,265,12,273481,1026247 +11091,214,12,279096,133365 +11092,214,12,266856,1041394 +11093,265,12,9946,58846 +11094,214,12,9753,59002 +11095,348,12,381015,1828328 +11096,283,12,9457,23349 +11097,70,12,91627,1383444 +11098,214,12,22076,52377 +11099,163,12,22881,956249 +11100,70,12,403119,111121 +11101,265,12,12536,72702 +11102,265,12,33305,12477 +11103,265,12,277710,1562471 +11104,214,12,296025,995353 +11105,70,12,10066,62741 +11106,214,12,284564,74426 +11107,214,12,3563,4506 +11108,214,12,256421,105643 +11109,300,12,55347,236610 +11110,214,12,10992,66897 +11111,265,12,12573,2236 +11112,214,12,40466,124793 +11113,214,12,10003,12288 +11114,214,12,14073,78751 +11115,283,12,10063,23828 +11116,214,12,31287,99121 +11117,214,12,140509,1112604 +11118,283,12,2021,19680 +11119,283,12,433244,893948 +11120,214,12,140818,1333057 +11121,214,12,285,2447 +11122,214,12,13574,20458 +11123,214,12,82501,19931 +11124,214,12,29056,102429 +11125,70,12,23397,5164 +11126,283,12,284293,1099013 +11127,214,12,11697,1503 +11128,271,12,379,1482380 +11129,265,12,71859,1090703 +11130,214,12,74714,19833 +11131,265,12,10198,7879 +11132,163,12,693,10395 +11133,163,12,311324,1833907 +11134,214,12,56329,31033 +11135,214,12,100088,232013 +11136,214,12,424488,1128117 +11137,283,12,20439,961528 +11138,265,12,163,6341 +11139,265,12,10753,46323 +11140,265,12,42476,933462 +11141,107,12,98066,1521485 +11142,283,12,24739,39032 +11143,322,12,46261,1425400 +11144,283,12,260312,1084613 +11145,283,12,2107,6044 +11146,265,12,257444,1497977 +11147,283,12,19101,18134 +11148,214,12,9905,2035 +11149,214,12,280030,1594761 +11150,283,12,71805,1644923 +11151,265,12,13092,465 +11152,214,12,15379,33008 +11153,318,12,11377,1602884 +11154,214,12,23830,1317819 +11155,214,12,307081,47053 +11156,283,12,27480,1185066 +11157,315,12,26390,1407192 +11158,214,12,52894,101974 +11159,265,12,298865,63800 +11160,214,12,86829,2997 +11161,283,12,14886,1263 +11162,214,12,118451,1294607 +11163,322,12,1579,1412276 +11164,214,12,9325,2106 +11165,283,12,16899,3965 +11166,265,12,19348,6510 +11167,284,12,118,1443286 +11168,214,12,94365,1060676 +11169,372,12,70436,1017343 +11170,70,12,8906,73737 +11171,214,12,27917,3601 +11172,214,12,70192,34494 +11173,265,12,8617,59922 +11174,283,12,10400,2952 +11175,214,12,342472,78975 +11176,265,12,410118,1779184 +11177,283,12,10075,8313 +11178,283,12,240745,1516456 +11179,214,12,39039,87561 +11180,265,12,206563,8565 +11181,265,12,1690,138 +11182,214,12,5759,939590 +11183,214,12,55420,996135 +11184,214,12,11633,1120474 +11185,265,12,284052,113672 +11186,265,12,296524,31519 +11187,214,12,132859,1048068 +11188,214,12,42725,102429 +11189,214,12,137093,1106694 +11190,163,12,322518,1093354 +11191,231,12,4248,56908 +11192,214,12,42683,74879 +11193,214,12,103850,558157 +11194,214,12,439050,1182809 +11195,214,12,10780,12020 +11196,265,12,370755,1319852 +11197,214,12,115712,1113868 +11198,214,12,84318,1084962 +11199,214,12,102197,1572433 +11200,214,12,9095,12954 +11201,265,12,78028,10932 +11202,265,12,26116,45830 +11203,214,12,10567,65857 +11204,214,12,30637,31287 +11205,265,12,10872,770 +11206,214,12,369245,56847 +11207,283,12,49524,114478 +11208,283,12,101363,3276 +11209,214,12,742,11053 +11210,70,12,43912,64395 +11211,265,12,100270,1096644 +11212,283,12,382591,119198 +11213,214,12,46982,1537636 +11214,214,12,56491,84981 +11215,265,12,12273,1705303 +11216,214,12,37581,3248 +11217,214,12,293660,11092 +11218,70,12,98277,1849129 +11219,214,12,42787,40169 +11220,214,12,3933,34894 +11221,214,12,64304,21918 +11222,214,12,85837,107066 +11223,214,12,46059,76018 +11224,214,12,33343,1188796 +11225,214,12,10071,59416 +11226,265,12,10070,1307 +11227,214,12,319993,1427387 +11228,265,12,317198,174065 +11229,214,12,3595,339 +11230,265,12,9428,3264 +11231,214,12,309581,13668 +11232,265,12,9968,36134 +11233,265,12,2124,56967 +11234,265,12,49524,58839 +11235,265,12,791,11815 +11236,372,12,83430,1129437 +11237,393,12,140607,1300064 +11238,271,12,2204,22607 +11239,315,12,5,64744 +11240,214,12,709,9861 +11241,265,12,32274,1872839 +11242,265,12,277558,58145 +11243,283,12,461955,1496825 +11244,107,12,381518,1797888 +11245,315,12,809,1678655 +11246,163,12,193756,1392101 +11247,271,12,264644,75828 +11248,265,12,9753,59391 +11249,214,12,390343,1513193 +11250,214,12,311291,1527471 +11251,214,12,157351,564082 +11252,163,12,270851,79390 +11253,372,12,228290,1799714 +11254,214,12,64936,1117285 +11255,65,3,339403,1544399 +11256,300,12,60285,1416053 +11257,214,12,195763,552615 +11258,70,12,363439,1521378 +11259,265,12,10652,66104 +11260,127,3,339403,1635209 +11261,214,12,128669,120449 +11262,299,12,341174,1187670 +11263,214,12,82999,105576 +11264,214,12,174769,111577 +11265,214,12,10740,20474 +11266,315,12,48207,112460 +11267,283,12,18082,17674 +11268,271,12,82327,1646866 +11269,214,12,12606,56888 +11270,214,12,11645,37456 +11271,214,12,403867,1032103 +11272,283,12,14979,13585 +11273,283,12,20432,22065 +11274,265,12,1125,8703 +11275,144,12,121674,1878855 +11276,214,12,280030,53092 +11277,315,12,9893,61089 +11278,315,12,9716,1661568 +11279,70,12,177047,1159349 +11280,283,12,48601,6030 +11281,214,12,37481,89816 +11282,214,12,23169,224386 +11283,283,12,300667,1017377 +11284,214,12,16358,11695 +11285,265,12,10568,2490 +11286,283,12,1903,11658 +11287,283,12,21544,3965 +11288,214,12,131366,49211 +11289,283,12,2321,1530 +11290,265,12,9543,2445 +11291,214,12,50761,29288 +11292,214,12,118,1297 +11293,214,12,29212,59832 +11294,265,12,38509,6590 +11295,214,12,156389,1145507 +11296,214,12,14873,42907 +11297,214,12,118059,29962 +11298,214,12,69315,1115248 +11299,372,12,213681,231830 +11300,318,12,11397,1538374 +11301,283,12,179154,1034748 +11302,283,12,61225,859 +11303,214,12,19017,79920 +11304,214,12,14449,18899 +11305,214,12,58251,1880050 +11306,214,12,6183,1845 +11307,322,12,2924,1558221 +11308,214,12,2001,73421 +11309,214,12,9821,59839 +11310,214,12,24556,91028 +11311,214,12,37003,1670364 +11312,214,12,82501,17424 +11313,283,12,283445,494 +11314,322,12,254007,1448774 +11315,265,12,127380,7879 +11316,214,12,413882,78747 +11317,214,12,82968,1018918 +11318,214,12,37628,1371169 +11319,389,12,857,1662359 +11320,265,12,343934,1553964 +11321,372,12,2567,50355 +11322,214,12,67018,939531 +11323,283,12,10665,59932 +11324,214,12,199647,1179836 +11325,70,12,8414,54895 +11326,283,12,6972,1720 +11327,214,12,69921,233878 +11328,214,12,15776,81204 +11329,265,12,11511,18389 +11330,214,12,10134,33009 +11331,322,12,11056,1418162 +11332,214,12,16083,60787 +11333,393,12,375366,1374469 +11334,214,12,95136,1833021 +11335,265,12,135713,1103647 +11336,283,12,9451,434 +11337,283,12,310137,17674 +11338,214,12,17175,897 +11339,265,12,38055,7399 +11340,214,12,131932,1093950 +11341,393,12,94348,1328414 +11342,372,12,16177,1621065 +11343,393,12,9013,1473722 +11344,214,12,1164,4446 +11345,265,12,24554,1346146 +11346,214,12,49961,143141 +11347,214,12,245706,60187 +11348,265,12,1497,46323 +11349,283,12,3580,1484 +11350,214,12,16296,80249 +11351,163,12,44389,1841203 +11352,214,12,63260,230668 +11353,318,12,9514,1642572 +11354,265,12,11370,57901 +11355,214,12,13336,32256 +11356,214,12,105077,77208 +11357,214,12,254007,28543 +11358,315,12,333354,1616485 +11359,214,12,13477,57822 +11360,283,12,37686,1274289 +11361,214,12,19116,1254865 +11362,214,12,393445,131836 +11363,214,12,167,1093 +11364,214,12,52556,1603622 +11365,300,12,5551,128103 +11366,70,12,365065,17089 +11367,127,3,339403,1386328 +11368,214,12,179066,1355976 +11369,318,12,116979,1835199 +11370,283,12,24801,38699 +11371,214,12,1914,5126 +11372,265,12,378441,1321751 +11373,265,12,152532,1281376 +11374,214,12,19996,220275 +11375,214,12,48617,1585095 +11376,214,12,12606,2488 +11377,214,12,28940,43304 +11378,214,12,17464,33008 +11379,214,12,241855,583479 +11380,265,12,41522,69986 +11381,265,12,46261,1121617 +11382,271,12,197849,1295303 +11383,214,12,2195,23175 +11384,70,12,42709,128593 +11385,265,12,1595,6511 +11386,214,12,11873,7170 +11387,214,12,331161,1225827 +11388,389,12,8870,933417 +11389,300,12,2613,56790 +11390,299,12,140607,1550634 +11391,214,12,62732,1608315 +11392,265,12,240832,558100 +11393,318,12,186869,4854 +11394,214,12,104211,1004059 +11395,214,12,62764,65377 +11396,265,12,9470,57614 +11397,214,12,9843,59851 +11398,214,12,376570,84348 +11399,214,12,132601,65327 +11400,265,12,11509,16329 +11401,265,12,22025,1684157 +11402,265,12,7511,52791 +11403,214,12,24397,227218 +11404,214,12,205891,1188275 +11405,214,12,77625,17167 +11406,163,12,9352,4844 +11407,214,12,72766,12833 +11408,70,12,285270,1367912 +11409,271,12,157843,1295633 +11410,265,12,370178,1309225 +11411,214,12,98066,52049 +11412,70,12,228205,1481637 +11413,214,12,10165,240 +11414,265,12,8414,54894 +11415,214,12,493,6483 +11416,283,12,293660,1122003 +11417,214,12,10362,20063 +11418,214,12,11421,69374 +11419,214,12,374614,32733 +11420,214,12,345925,29525 +11421,214,12,2012,20660 +11422,283,12,73424,66493 +11423,163,12,13534,6896 +11424,265,12,409536,212475 +11425,393,12,263115,1757621 +11426,214,12,82865,61845 +11427,265,12,31347,1316313 +11428,265,12,37725,11370 +11429,283,12,17692,21069 +11430,214,12,6079,11688 +11431,265,12,365942,34050 +11432,265,12,11056,59839 +11433,265,12,16077,2238 +11434,283,12,228496,893948 +11435,283,12,2662,30876 +11436,214,12,72574,9169 +11437,214,12,10268,55921 +11438,214,12,46020,102429 +11439,271,12,123757,928406 +11440,265,12,38579,1529605 +11441,214,12,382155,221064 +11442,70,12,269149,928605 +11443,214,12,10834,2303 +11444,265,12,399106,7 +11445,372,12,8414,54896 +11446,214,12,59678,208693 +11447,214,12,237584,34510 +11448,288,3,66526,587735 +11449,70,12,544,7411 +11450,283,12,354859,1057785 +11451,214,12,264397,1196069 +11452,214,12,43806,1025553 +11453,271,12,3539,32419 +11454,214,12,41599,26024 +11455,214,12,9598,58140 +11456,300,12,20439,1560266 +11457,265,12,241254,1367058 +11458,214,12,6977,1224 +11459,315,12,11247,1465491 +11460,283,12,33345,6792 +11461,265,12,1819,19288 +11462,214,12,41402,937239 +11463,300,12,9659,1127861 +11464,265,12,10425,17209 +11465,277,3,126127,1342519 +11466,283,12,10276,16175 +11467,214,12,3595,2997 +11468,283,12,43817,1122200 +11469,283,12,329809,38919 +11470,271,12,167073,1465333 +11471,300,12,46738,936321 +11472,214,12,7980,108 +11473,214,12,244539,967198 +11474,163,12,423377,1622029 +11475,265,12,10425,51451 +11476,163,12,379,1554007 +11477,214,12,260001,967523 +11478,214,12,77930,38673 +11479,265,12,85984,1779408 +11480,214,12,300187,112310 +11481,214,12,291871,1179836 +11482,265,12,173467,1176019 +11483,315,12,44129,1404277 +11484,214,12,353686,1525141 +11485,214,12,8064,53849 +11486,214,12,52520,3953 +11487,214,12,127560,33442 +11488,214,12,7445,4767 +11489,214,12,248698,87550 +11490,214,12,44436,130854 +11491,70,12,47794,1039357 +11492,214,12,3064,31143 +11493,163,12,5,37334 +11494,214,12,39072,122032 +11495,214,12,417870,72024 +11496,214,12,109001,1646402 +11497,214,12,30082,53708 +11498,214,12,333352,5472 +11499,265,12,246299,3248 +11500,265,12,392386,112529 +11501,322,12,7326,1713987 +11502,271,12,13336,1410593 +11503,265,12,12171,73402 +11504,300,12,8619,6866 +11505,299,12,209112,1342054 +11506,214,12,9966,11359 +11507,410,12,6947,230436 +11508,300,12,18826,58183 +11509,163,12,28730,1569114 +11510,300,12,2976,29205 +11511,160,3,215579,1424575 +11512,214,12,410718,26473 +11513,214,12,10193,7878 +11514,283,12,8852,239415 +11515,214,12,254446,1290853 +11516,265,12,24679,3718 +11517,214,12,2463,25236 +11518,214,12,276401,83002 +11519,214,12,183827,96255 +11520,265,12,55420,682687 +11521,358,12,10590,1566289 +11522,271,12,112722,1838189 +11523,283,12,10396,897 +11524,214,12,25376,1056102 +11525,214,12,75948,577421 +11526,265,12,9779,74039 +11527,265,12,75761,13242 +11528,271,12,20941,1723678 +11529,214,12,44287,1125210 +11530,214,12,9827,59839 +11531,107,12,11397,1733134 +11532,214,12,11231,1888 +11533,214,12,9889,7395 +11534,214,12,341174,4767 +11535,214,12,276401,4772 +11536,163,12,188102,62659 +11537,265,12,11296,68901 +11538,214,12,65211,111417 +11539,214,12,316654,85670 +11540,214,12,31472,102038 +11541,70,12,200505,1345718 +11542,214,12,57683,1020073 +11543,231,12,8414,1891669 +11544,372,12,49577,1687760 +11545,214,12,78802,1841488 +11546,214,12,13542,55419 +11547,214,12,261249,16412 +11548,214,12,59181,38696 +11549,214,12,22744,113725 +11550,214,12,75174,1128115 +11551,214,12,40081,70676 +11552,265,12,27832,442697 +11553,322,12,11172,1347758 +11554,214,12,156711,1523825 +11555,271,12,13380,12374 +11556,283,12,2503,2952 +11557,265,12,9550,1353 +11558,214,12,18704,111411 +11559,265,12,329286,112529 +11560,214,12,28940,102417 +11561,214,12,13180,74257 +11562,315,12,6973,1509357 +11563,214,12,286192,7972 +11564,214,12,319993,60407 +11565,214,12,321315,1620686 +11566,300,12,18417,83068 +11567,214,12,15089,1471558 +11568,214,12,69668,15244 +11569,283,12,7555,7494 +11570,214,12,8672,56064 +11571,283,12,11859,1097 +11572,265,12,14976,27095 +11573,214,12,403130,227228 +11574,214,12,82999,557363 +11575,265,12,416569,5988 +11576,214,12,72912,1037906 +11577,163,12,21525,1548001 +11578,214,12,114096,66082 +11579,214,12,231082,19707 +11580,393,12,5915,1440737 +11581,214,12,71668,46088 +11582,214,12,2604,1152 +11583,283,12,54022,3192 +11584,214,12,1991,16849 +11585,214,12,204922,1018082 +11586,70,12,26914,31775 +11587,214,12,104776,108016 +11588,265,12,33427,110638 +11589,265,12,70436,1018975 +11590,163,12,227975,1619156 +11591,214,12,214756,52139 +11592,214,12,33613,1002917 +11593,214,12,46094,18389 +11594,214,12,5206,42100 +11595,283,12,7551,5328 +11596,214,12,107985,11112 +11597,214,12,38509,3954 +11598,283,12,240745,1516455 +11599,214,12,50669,136396 +11600,214,12,4375,38095 +11601,322,12,9593,1411706 +11602,265,12,11584,67773 +11603,214,12,52936,19112 +11604,214,12,450875,126145 +11605,283,12,4134,34876 +11606,214,12,13842,13668 +11607,315,12,11096,91161 +11608,214,12,1387,1194207 +11609,214,12,74395,73597 +11610,214,12,99351,1504 +11611,214,12,195,2439 +11612,265,12,52520,1203578 +11613,70,12,376660,1749870 +11614,271,12,9716,6990 +11615,265,12,445,6101 +11616,214,12,1877,19707 +11617,214,12,247436,1282922 +11618,163,12,182499,56981 +11619,271,12,338063,1581562 +11620,70,12,9820,1836098 +11621,214,12,154972,557665 +11622,214,12,76012,30053 +11623,214,12,35405,16514 +11624,70,12,97051,1324040 +11625,283,12,98349,1017377 +11626,393,12,201085,1572857 +11627,265,12,1271,79243 +11628,214,12,27414,1246937 +11629,214,12,365065,363761 +11630,214,12,18902,592983 +11631,271,12,11645,143707 +11632,265,12,14945,1123068 +11633,214,12,714,69678 +11634,214,12,11216,68633 +11635,372,12,14531,1346141 +11636,265,12,73723,570212 +11637,214,12,286521,192 +11638,214,12,28533,49899 +11639,265,12,318973,1397719 +11640,163,12,257450,1322391 +11641,265,12,7304,6895 +11642,214,12,96133,44965 +11643,214,12,15003,57214 +11644,214,12,17170,2226 +11645,214,12,64928,86186 +11646,163,12,83802,1498415 +11647,214,12,377158,1648281 +11648,214,12,126889,8401 +11649,214,12,42796,1196146 +11650,214,12,11204,10895 +11651,265,12,12255,59004 +11652,70,12,66881,76501 +11653,214,12,127560,31136 +11654,214,12,24916,588140 +11655,265,12,202241,47333 +11656,265,12,9993,123 +11657,214,12,362703,1027173 +11658,283,12,18273,61127 +11659,214,12,76829,1271975 +11660,214,12,4191,3524 +11661,214,12,205864,1574604 +11662,214,12,81538,1156409 +11663,214,12,41760,11472 +11664,265,12,403119,1346142 +11665,214,12,61541,10601 +11666,214,12,44190,11783 +11667,123,3,369406,126315 +11668,214,12,14217,68112 +11669,283,12,66113,76203 +11670,283,12,256740,1314062 +11671,318,12,13205,1815508 +11672,265,12,5279,43383 +11673,214,12,18836,1193 +11674,70,12,218778,1358589 +11675,214,12,219466,71572 +11676,318,12,13380,1753060 +11677,372,12,61400,233071 +11678,300,12,266856,1422832 +11679,300,12,2897,1583351 +11680,214,12,141733,1244274 +11681,214,12,41505,5625 +11682,265,12,260947,1304138 +11683,315,12,27443,8344 +11684,265,12,230179,1201957 +11685,214,12,317214,236058 +11686,214,12,1382,53894 +11687,283,12,12182,1593 +11688,214,12,356191,591426 +11689,214,12,246127,40497 +11690,372,12,1912,4647 +11691,214,12,48281,55640 +11692,214,12,86279,85456 +11693,214,12,128437,353809 +11694,214,12,250066,1303424 +11695,214,12,298751,1475291 +11696,214,12,209406,20182 +11697,265,12,910,2663 +11698,214,12,17003,53079 +11699,163,12,336004,1367054 +11700,271,12,81030,31974 +11701,214,12,183412,1187855 +11702,214,12,60551,231258 +11703,214,12,102632,42804 +11704,265,12,173205,1532548 +11705,70,12,47194,1351470 +11706,271,12,41076,1889079 +11707,70,12,35651,17426 +11708,214,12,13792,75547 +11709,214,12,338518,1015909 +11710,163,12,297762,1750922 +11711,265,12,244458,1276559 +11712,283,12,10087,970 +11713,283,12,59191,4952 +11714,393,12,11397,1594 +11715,163,12,307081,1117436 +11716,214,12,10918,23861 +11717,214,12,131861,16412 +11718,265,12,55720,2708 +11719,17,3,419192,1688395 +11720,265,12,417936,1652403 +11721,214,12,18557,322424 +11722,214,12,106747,1040898 +11723,163,12,32872,3954 +11724,265,12,122677,1427885 +11725,214,12,153,1777 +11726,214,12,44877,75574 +11727,70,12,10865,1397896 +11728,322,12,9532,1441269 +11729,70,12,15697,1464775 +11730,283,12,112456,1016502 +11731,322,12,1381,1447161 +11732,283,12,4413,15426 +11733,214,12,225728,37270 +11734,214,12,446345,1774371 +11735,214,12,3092,31439 +11736,283,12,9946,1097 +11737,163,12,225728,1189235 +11738,265,12,33250,1652742 +11739,214,12,45527,43901 +11740,283,12,20941,17674 +11741,322,12,18,1440854 +11742,214,12,20715,1808702 +11743,265,12,5393,43096 +11744,283,12,1404,16899 +11745,265,12,924,58846 +11746,265,12,39578,24660 +11747,123,3,104700,11523 +11748,214,12,383538,1437178 +11749,286,3,430365,73730 +11750,265,12,329440,61119 +11751,271,12,102382,1399483 +11752,265,12,1833,19313 +11753,214,12,5413,43148 +11754,265,12,407559,1731670 +11755,283,12,1259,2635 +11756,231,12,15749,66722 +11757,163,12,310133,1084950 +11758,214,12,177155,573606 +11759,214,12,83389,43104 +11760,214,12,4441,37269 +11761,214,12,49502,4123 +11762,283,12,318922,238120 +11763,214,12,344039,1725135 +11764,265,12,9877,59960 +11765,214,12,87587,935270 +11766,214,12,1640,455 +11767,265,12,101325,27972 +11768,214,12,11907,70889 +11769,214,12,16428,65847 +11770,163,12,11024,11900 +11771,70,12,102222,1394047 +11772,214,12,16439,1191715 +11773,214,12,318781,7843 +11774,214,12,1959,20237 +11775,214,12,11475,5983 +11776,265,12,2567,41018 +11777,214,12,322614,1421243 +11778,265,12,262522,1212408 +11779,265,12,86254,1034912 +11780,214,12,46924,1994 +11781,214,12,13848,1212408 +11782,214,12,14979,17208 +11783,265,12,82624,53072 +11784,389,12,33586,1814973 +11785,70,12,10193,1485788 +11786,265,12,381015,2688 +11787,214,12,79593,816 +11788,265,12,174769,13955 +11789,214,12,300667,285385 +11790,214,12,9298,2236 +11791,318,12,9514,1642569 +11792,283,12,381518,238120 +11793,265,12,84185,1341533 +11794,214,12,228290,232666 +11795,265,12,13075,428915 +11796,214,12,146216,10952 +11797,163,12,13437,38083 +11798,322,12,8852,1433917 +11799,214,12,11404,27038 +11800,265,12,169760,1337628 +11801,214,12,376570,60472 +11802,214,12,149509,17451 +11803,265,12,367412,52443 +11804,265,12,122928,1020053 +11805,265,12,3172,57465 +11806,265,12,9059,24 +11807,283,12,9956,949 +11808,283,12,23966,1203873 +11809,214,12,11376,7843 +11810,283,12,924,1593 +11811,265,12,10947,67603 +11812,214,12,25385,89158 +11813,265,12,1427,17080 +11814,322,12,2503,1406861 +11815,214,12,28668,34800 +11816,214,12,9308,12987 +11817,214,12,5333,1495632 +11818,372,12,9514,56480 +11819,163,12,14,51689 +11820,214,12,428687,33437 +11821,322,12,15613,1442519 +11822,214,12,28061,49899 +11823,265,12,11636,20642 +11824,265,12,25655,565675 +11825,315,12,27523,1671249 +11826,265,12,333385,1636685 +11827,283,12,1369,16570 +11828,214,12,3962,34383 +11829,163,12,340103,1747484 +11830,214,12,17711,3305 +11831,265,12,257345,1319040 +11832,214,12,2105,21586 +11833,214,12,21544,21677 +11834,283,12,58985,3118 +11835,214,12,52728,134630 +11836,214,12,67162,2106 +11837,265,12,47459,30904 +11838,214,12,9095,52033 +11839,214,12,424488,1186631 +11840,265,12,423377,1754610 +11841,393,12,399790,1333655 +11842,214,12,32657,11222 +11843,214,12,47876,14825 +11844,283,12,44287,982778 +11845,214,12,30875,53188 +11846,283,12,18937,19253 +11847,214,12,402446,74531 +11848,214,12,499,3779 +11849,214,12,293970,27679 +11850,214,12,1428,2294 +11851,214,12,9885,961845 +11852,214,12,10918,67464 +11853,214,12,9495,1127814 +11854,265,12,302699,1527656 +11855,214,12,53949,41135 +11856,283,12,13090,2952 +11857,214,12,127521,1076581 +11858,214,12,70436,60472 +11859,214,12,91067,939107 +11860,389,12,2675,1552203 +11861,214,12,294690,63477 +11862,214,12,4459,19395 +11863,214,12,43904,1118847 +11864,214,12,68822,9751 +11865,214,12,577,7797 +11866,107,12,340101,1865916 +11867,372,12,2503,77511 +11868,214,12,47504,21378 +11869,214,12,84577,1189768 +11870,283,12,1278,1530 +11871,214,12,105965,1085294 +11872,315,12,19754,1555340 +11873,214,12,362541,54417 +11874,214,12,14534,5505 +11875,265,12,53766,1004059 +11876,318,12,121674,1363077 +11877,214,12,25037,37846 +11878,283,12,83890,5914 +11879,283,12,230179,3943 +11880,393,12,381518,1374469 +11881,283,12,17609,3081 +11882,214,12,29786,69878 +11883,300,12,28340,1795359 +11884,393,12,3597,9545 +11885,214,12,11524,71349 +11886,361,3,339403,1635292 +11887,214,12,10603,31710 +11888,214,12,12591,73025 +11889,214,12,89492,5664 +11890,214,12,38618,4483 +11891,265,12,31146,6590 +11892,271,12,132332,1453876 +11893,393,12,206647,1305251 +11894,214,12,137145,1106885 +11895,283,12,294272,495 +11896,163,12,167073,1138934 +11897,393,12,201085,1572858 +11898,318,12,72545,1859994 +11899,214,12,43645,1177546 +11900,214,12,102629,4584 +11901,265,12,227975,1775624 +11902,214,12,300983,1517102 +11903,214,12,272693,33437 +11904,214,12,241855,1448543 +11905,283,12,14181,561 +11906,214,12,352025,31516 +11907,214,12,32029,113985 +11908,265,12,336004,1535397 +11909,283,12,17144,60056 +11910,283,12,59387,966797 +11911,214,12,60422,1095401 +11912,283,12,9902,1326714 +11913,265,12,22881,47287 +11914,393,12,273481,1532605 +11915,265,12,403119,1658455 +11916,70,12,32921,30266 +11917,214,12,330770,49067 +11918,214,12,29829,34800 +11919,214,12,49577,238618 +11920,265,12,44115,25292 +11921,214,12,53417,13848 +11922,214,12,367147,1302895 +11923,231,12,267931,1429470 +11924,214,12,17654,108 +11925,214,12,82327,16708 +11926,118,12,68750,124335 +11927,127,3,383538,1690514 +11928,214,12,35008,991466 +11929,214,12,353616,16854 +11930,265,12,231145,65918 +11931,214,12,9651,4399 +11932,322,12,213681,1628431 +11933,214,12,138308,170625 +11934,265,12,360784,1276559 +11935,214,12,38310,120100 +11936,283,12,5915,6410 +11937,393,12,6557,1662777 +11938,214,12,86838,54472 +11939,265,12,193756,57084 +11940,283,12,549,7495 +11941,389,12,5,1877380 +11942,214,12,29151,2861 +11943,214,12,301671,1903914 +11944,265,12,11171,45770 +11945,214,12,96159,1331048 +11946,283,12,2454,1326 +11947,214,12,10847,61024 +11948,283,12,14126,997334 +11949,214,12,339526,1360411 +11950,214,12,39957,27574 +11951,265,12,72912,24512 +11952,214,12,105059,70862 +11953,214,12,94671,1040898 +11954,214,12,17669,82506 +11955,214,12,55534,144602 +11956,214,12,112973,120606 +11957,214,12,81310,2106 +11958,214,12,413782,39821 +11959,283,12,24238,92741 +11960,265,12,1911,1414061 +11961,214,12,187596,68602 +11962,214,12,160324,969992 +11963,214,12,10657,66077 +11964,214,12,187022,544325 +11965,214,12,117120,1301329 +11966,265,12,9568,58048 +11967,283,12,9982,7903 +11968,214,12,158015,54844 +11969,214,12,18044,63777 +11970,283,12,18282,1730 +11971,214,12,268174,1316670 +11972,214,12,6972,1115007 +11973,265,12,29424,1477208 +11974,271,12,356191,1610562 +11975,214,12,16005,16305 +11976,271,12,13205,1815476 +11977,283,12,323435,94470 +11978,214,12,21208,10905 +11979,322,12,664,1345624 +11980,283,12,356296,456252 +11981,283,12,1911,13932 +11982,283,12,383538,1317891 +11983,265,12,298584,1577696 +11984,231,12,48281,1626534 +11985,265,12,10972,3727 +11986,265,12,8470,12526 +11987,315,12,334,1336061 +11988,214,12,287636,930004 +11989,283,12,47112,1535952 +11990,214,12,126841,108 +11991,265,12,12483,3027 +11992,265,12,270774,1877768 +11993,160,3,424488,1367671 +11994,107,12,11358,1773144 +11995,214,12,82448,64393 +11996,372,12,136752,1208803 +11997,214,12,11692,56109 +11998,214,12,9298,6733 +11999,214,12,49940,579248 +12000,283,12,244786,494 +12001,214,12,34672,57152 +12002,214,12,9803,49158 +12003,214,12,12135,73383 +12004,283,12,373546,3192 +12005,70,12,1966,1102198 +12006,265,12,287281,1353906 +12007,214,12,9776,59164 +12008,70,12,238,2870 +12009,214,12,74779,1001976 +12010,70,12,2897,11489 +12011,265,12,29959,34112 +12012,271,12,19209,1545949 +12013,286,3,371741,456963 +12014,283,12,2087,21374 +12015,283,12,5915,1204226 +12016,372,12,227975,1775623 +12017,214,12,67822,36173 +12018,214,12,95627,1538339 +12019,283,12,398289,21395 +12020,214,12,323674,149891 +12021,214,12,39943,30208 +12022,283,12,88042,51557 +12023,283,12,32657,3275 +12024,283,12,183412,1419643 +12025,372,12,93350,1224061 +12026,214,12,152532,59700 +12027,265,12,83389,664 +12028,214,12,85414,939934 +12029,214,12,327389,1432093 +12030,393,12,10865,61419 +12031,393,12,333371,1636659 +12032,283,12,70667,1338387 +12033,214,12,22051,236605 +12034,214,12,2977,29227 +12035,271,12,4955,41007 +12036,214,12,3048,29883 +12037,214,12,28739,101802 +12038,214,12,286873,48743 +12039,231,12,320588,1637926 +12040,283,12,293863,5363 +12041,265,12,6973,38083 +12042,214,12,9462,19429 +12043,283,12,32274,5669 +12044,163,12,324181,1775300 +12045,214,12,12720,73678 +12046,214,12,82265,729995 +12047,265,12,5123,41289 +12048,214,12,32049,82442 +12049,214,12,47745,19099 +12050,271,12,379019,1582353 +12051,214,12,17238,1239412 +12052,214,12,14644,1895221 +12053,214,12,10739,1265 +12054,265,12,367735,1168389 +12055,283,12,2662,30874 +12056,214,12,33788,12234 +12057,265,12,30995,1861809 +12058,265,12,365942,54773 +12059,265,12,30143,929975 +12060,214,12,29805,86372 +12061,283,12,300,4281 +12062,214,12,34106,2662 +12063,265,12,21629,955886 +12064,214,12,46421,136124 +12065,214,12,270774,1877775 +12066,265,12,152100,1266280 +12067,214,12,42136,590466 +12068,283,12,274479,1024910 +12069,214,12,28090,19266 +12070,163,12,8467,7407 +12071,163,12,9504,1018812 +12072,265,12,209293,1192792 +12073,265,12,3933,7911 +12074,214,12,366143,65674 +12075,265,12,12477,122179 +12076,214,12,93828,999764 +12077,283,12,279690,116274 +12078,372,12,244316,65109 +12079,214,12,34223,19172 +12080,393,12,109424,1557027 +12081,214,12,76203,376 +12082,283,12,1578,3662 +12083,283,12,9438,1096443 +12084,214,12,181454,215726 +12085,283,12,11377,1209228 +12086,283,12,290316,41025 +12087,214,12,62630,1058157 +12088,265,12,148,952 +12089,214,12,365447,1527515 +12090,214,12,96987,45405 +12091,265,12,35626,78971 +12092,265,12,8588,55418 +12093,271,12,71503,563117 +12094,214,12,11694,13780 +12095,283,12,9899,60132 +12096,214,12,36325,1096492 +12097,265,12,8870,8299 +12098,214,12,394723,1315165 +12099,214,12,47412,84758 +12100,283,12,11577,55321 +12101,214,12,83599,56205 +12102,214,12,9968,1462273 +12103,214,12,53358,1384209 +12104,271,12,272693,1415342 +12105,300,12,263115,58357 +12106,265,12,17691,3428 +12107,70,12,23730,1746085 +12108,214,12,12205,20316 +12109,283,12,11171,59668 +12110,214,12,18051,37021 +12111,214,12,9746,7170 +12112,214,12,2017,20690 +12113,70,12,109213,1079461 +12114,271,12,29611,1489813 +12115,163,12,10909,1551266 +12116,214,12,38761,232186 +12117,214,12,239103,1273915 +12118,214,12,293516,1365382 +12119,214,12,206574,1192634 +12120,283,12,13912,1532472 +12121,265,12,339403,1211152 +12122,372,12,392271,1765165 +12123,214,12,263341,29016 +12124,214,12,39781,141298 +12125,271,12,300487,1380793 +12126,265,12,244786,52443 +12127,214,12,269795,1319499 +12128,214,12,53417,21300 +12129,214,12,104297,5836 +12130,214,12,9403,4183 +12131,372,12,2454,1117945 +12132,214,12,21627,11359 +12133,214,12,55612,76566 +12134,214,12,44099,10914 +12135,265,12,16239,80175 +12136,70,12,15089,1173111 +12137,107,12,274857,1785937 +12138,214,12,14457,30870 +12139,214,12,12247,71872 +12140,283,12,5965,46916 +12141,271,12,19053,551927 +12142,265,12,122,1311 +12143,214,12,18405,35475 +12144,265,12,110160,143593 +12145,283,12,29896,1035176 +12146,214,12,352372,1582550 +12147,70,12,11247,63724 +12148,214,12,55612,77967 +12149,214,12,244458,21036 +12150,214,12,263115,584598 +12151,214,12,7229,53206 +12152,7,3,339403,1635314 +12153,214,12,9602,911 +12154,214,12,5608,12737 +12155,214,12,405670,118675 +12156,214,12,6552,50724 +12157,214,12,15616,16830 +12158,70,12,241930,108190 +12159,214,12,341886,136972 +12160,265,12,71859,1619474 +12161,214,12,52556,1603623 +12162,265,12,52520,52790 +12163,214,12,94725,1295114 +12164,214,12,8429,54928 +12165,214,12,109298,2106 +12166,300,12,96702,1539140 +12167,265,12,27259,2236 +12168,214,12,82627,928331 +12169,300,12,966,29856 +12170,283,12,68387,38699 +12171,214,12,62046,52259 +12172,163,12,246860,73243 +12173,214,12,366696,1095807 +12174,70,12,215579,1217199 +12175,214,12,79743,1169499 +12176,214,12,66224,91552 +12177,265,12,97794,1128301 +12178,271,12,45562,387926 +12179,283,12,39413,1551410 +12180,214,12,322443,52377 +12181,265,12,257344,56728 +12182,214,12,341886,1373193 +12183,160,3,369406,1418813 +12184,265,12,157843,937406 +12185,214,12,660,9861 +12186,214,12,6973,11696 +12187,283,12,75162,9585 +12188,214,12,213914,44064 +12189,214,12,186881,70676 +12190,265,12,50123,1379966 +12191,214,12,11535,282 +12192,271,12,47324,1620545 +12193,214,12,75446,1087736 +12194,214,12,181533,11222 +12195,214,12,9894,59354 +12196,214,12,198277,999786 +12197,214,12,42537,1144916 +12198,265,12,367147,1126877 +12199,214,12,41312,126127 +12200,214,12,277778,1104691 +12201,283,12,101325,21469 +12202,214,12,275696,107765 +12203,214,12,25006,60545 +12204,214,12,32601,1130131 +12205,283,12,42648,3806 +12206,214,12,13092,9021 +12207,214,12,291865,1293568 +12208,322,12,8619,1377241 +12209,214,12,19403,978591 +12210,283,12,31867,6044 +12211,265,12,325133,1539279 +12212,265,12,9828,59658 +12213,214,12,127585,584598 +12214,265,12,365942,1626021 +12215,214,12,22396,20921 +12216,283,12,333367,17674 +12217,214,12,35396,936796 +12218,163,12,264729,1423062 +12219,70,12,91679,1125007 +12220,214,12,9591,27098 +12221,214,12,244534,40863 +12222,214,12,12104,7726 +12223,265,12,286709,1032 +12224,214,12,325039,1303424 +12225,214,12,84450,12808 +12226,265,12,413579,1672756 +12227,265,12,44877,9000 +12228,214,12,296524,42736 +12229,283,12,83666,5669 +12230,214,12,110608,1050076 +12231,265,12,141489,959948 +12232,265,12,387399,1395513 +12233,163,12,102222,1169264 +12234,283,12,9959,6347 +12235,283,12,11307,3806 +12236,214,12,94348,13189 +12237,214,12,6171,8844 +12238,214,12,242,3221 +12239,283,12,11358,20540 +12240,265,12,1813,1673596 +12241,283,12,109439,6044 +12242,271,12,25953,178267 +12243,322,12,297853,1790469 +12244,214,12,378485,1140285 +12245,271,12,13205,1815475 +12246,70,12,34723,1219531 +12247,214,12,187028,357 +12248,322,12,132363,1407747 +12249,348,12,10865,1738133 +12250,214,12,403119,1575766 +12251,214,12,135313,1102121 +12252,214,12,7326,52445 +12253,214,12,170430,1204030 +12254,265,12,13493,60187 +12255,214,12,320873,83596 +12256,214,12,1999,20537 +12257,214,12,10407,339 +12258,70,12,85350,566 +12259,214,12,58428,1015884 +12260,265,12,252171,1454383 +12261,163,12,308529,1590203 +12262,265,12,33729,3428 +12263,265,12,193756,1654005 +12264,283,12,1819,3965 +12265,214,12,10596,22815 +12266,265,12,11622,42908 +12267,70,12,1578,18379 +12268,214,12,13058,1166389 +12269,214,12,11171,65613 +12270,214,12,77650,4165 +12271,283,12,333371,1333932 +12272,283,12,19995,1262 +12273,214,12,58529,928372 +12274,265,12,3580,40375 +12275,265,12,27573,54419 +12276,214,12,16147,6986 +12277,214,12,88273,57018 +12278,70,12,48202,1344189 +12279,214,12,59147,72051 +12280,393,12,146243,1031098 +12281,144,12,1165,1409308 +12282,265,12,20312,942456 +12283,214,12,62761,67824 +12284,70,12,949,944682 +12285,70,12,46738,1215970 +12286,265,12,287281,77962 +12287,214,12,220488,1128285 +12288,70,12,230179,1138237 +12289,265,12,1819,19286 +12290,265,12,103597,1139092 +12291,163,12,336804,135600 +12292,163,12,374475,1538226 +12293,214,12,86709,4493 +12294,163,12,42709,557899 +12295,271,12,274857,1400527 +12296,265,12,476,6476 +12297,214,12,103620,59291 +12298,214,12,10692,9200 +12299,265,12,307479,1409855 +12300,214,12,237584,1276700 +12301,163,12,405670,1853244 +12302,214,12,42819,968817 +12303,214,12,289278,1016590 +12304,163,12,27259,467 +12305,265,12,2321,11000 +12306,163,12,310568,1398228 +12307,265,12,142984,18878 +12308,214,12,2001,13240 +12309,70,12,122081,1719408 +12310,265,12,27573,68691 +12311,214,12,13946,124796 +12312,283,12,324670,2031 +12313,214,12,10162,64047 +12314,214,12,13574,991827 +12315,214,12,104193,1093431 +12316,283,12,341174,1411796 +12317,214,12,356758,232666 +12318,283,12,157,1828 +12319,163,12,290316,45139 +12320,214,12,961,8635 +12321,265,12,281590,1226516 +12322,283,12,37910,1286724 +12323,265,12,42537,1004059 +12324,271,12,210092,1193686 +12325,214,12,13685,15207 +12326,214,12,21208,1091 +12327,214,12,316654,1042011 +12328,214,12,12481,46323 +12329,214,12,459,6242 +12330,265,12,242090,45407 +12331,70,12,403119,71952 +12332,214,12,17209,67490 +12333,214,12,290864,1421221 +12334,214,12,23048,3036 +12335,214,12,329819,543840 +12336,214,12,13092,4898 +12337,70,12,374473,1650259 +12338,70,12,257450,1718317 +12339,214,12,137528,1196006 +12340,265,12,110972,1555630 +12341,144,12,1586,1611823 +12342,265,12,10425,61050 +12343,214,12,60488,7646 +12344,227,12,11377,1841643 +12345,265,12,139455,86446 +12346,265,12,51947,1357981 +12347,214,12,17962,1087687 +12348,214,12,1164,322 +12349,70,12,70086,1570576 +12350,265,12,10847,46399 +12351,214,12,203351,30053 +12352,214,12,21955,52629 +12353,265,12,213681,1771611 +12354,214,12,414453,17045 +12355,265,12,6687,37950 +12356,214,12,155096,1188 +12357,265,12,184098,31123 +12358,214,12,33015,8635 +12359,214,12,577,7627 +12360,214,12,9352,57132 +12361,214,12,287483,28391 +12362,176,3,339403,1635178 +12363,214,12,22279,108641 +12364,322,12,69,1599614 +12365,214,12,11113,2663 +12366,271,12,1427,17085 +12367,265,12,429238,1731670 +12368,299,12,9314,1749136 +12369,214,12,26517,15000 +12370,214,12,10872,1483064 +12371,393,12,45988,1730426 +12372,214,12,10055,62582 +12373,70,12,276906,1331174 +12374,214,12,85673,105084 +12375,214,12,18755,1340950 +12376,300,12,9593,950637 +12377,393,12,435,1033104 +12378,283,12,103332,961165 +12379,283,12,14372,598 +12380,163,12,38554,1470642 +12381,265,12,13056,10850 +12382,265,12,9470,57619 +12383,265,12,40804,19100 +12384,271,12,9902,8369 +12385,283,12,310431,6052 +12386,265,12,7445,54873 +12387,214,12,121848,33019 +12388,70,12,31146,1841269 +12389,265,12,169760,556877 +12390,144,12,297762,1824239 +12391,315,12,47386,138785 +12392,214,12,31364,88142 +12393,163,12,58918,1055202 +12394,265,12,48116,1011110 +12395,283,12,79593,599 +12396,214,12,4538,2997 +12397,283,12,111479,2624 +12398,70,12,9593,1411706 +12399,214,12,356461,67166 +12400,214,12,2280,3658 +12401,214,12,45610,1053664 +12402,283,12,67328,1583626 +12403,214,12,5917,46602 +12404,283,12,3933,7902 +12405,214,12,15689,1635088 +12406,163,12,410718,1148273 +12407,214,12,341007,1299467 +12408,283,12,30141,2215 +12409,214,12,10050,62513 +12410,265,12,41402,968182 +12411,214,12,207641,1269245 +12412,214,12,10063,62684 +12413,271,12,705,1435037 +12414,265,12,1640,17799 +12415,283,12,296523,3965 +12416,214,12,11374,20782 +12417,265,12,9030,56740 +12418,214,12,21208,62741 +12419,283,12,32331,897 +12420,214,12,110598,8879 +12421,265,12,34512,1247747 +12422,214,12,55681,1367144 +12423,214,12,56601,964702 +12424,70,12,27480,1484508 +12425,283,12,179105,551521 +12426,214,12,10703,66770 +12427,265,12,122677,1427886 +12428,265,12,25006,93011 +12429,283,12,9358,5362 +12430,214,12,3513,32034 +12431,283,12,954,2485 +12432,300,12,270774,1635007 +12433,318,12,9902,1529603 +12434,283,12,13550,959257 +12435,214,12,407806,929825 +12436,322,12,163,1727319 +12437,214,12,34651,12304 +12438,214,12,36960,120882 +12439,265,12,173153,8246 +12440,214,12,107073,1481491 +12441,214,12,10889,67347 +12442,265,12,22910,102429 +12443,283,12,9953,60503 +12444,214,12,31618,11472 +12445,70,12,104430,8502 +12446,283,12,159667,1516101 +12447,144,12,29959,8344 +12448,214,12,309581,132591 +12449,214,12,262,3658 +12450,283,12,47914,41140 +12451,265,12,152532,1031200 +12452,265,12,21413,1892 +12453,214,12,22476,226462 +12454,372,12,74777,572407 +12455,214,12,390747,1386303 +12456,244,3,336890,1673814 +12457,283,12,86828,390 +12458,265,12,9358,57430 +12459,265,12,11545,887 +12460,214,12,258480,2862 +12461,214,12,9673,673 +12462,283,12,118737,967228 +12463,214,12,290864,1098625 +12464,214,12,33273,16999 +12465,214,12,423078,1700418 +12466,265,12,102961,66711 +12467,214,12,63217,1261297 +12468,265,12,119010,1620447 +12469,372,12,362703,1560219 +12470,214,12,16997,156332 +12471,322,12,69668,1404852 +12472,214,12,15356,61495 +12473,283,12,168259,9545 +12474,231,12,4248,19449 +12475,214,12,117251,6046 +12476,265,12,9717,935556 +12477,283,12,28417,1123354 +12478,231,12,169934,7624 +12479,283,12,76341,1720 +12480,265,12,82687,19274 +12481,372,12,166221,72260 +12482,214,12,62213,1297 +12483,70,12,12525,1309 +12484,214,12,188102,23862 +12485,214,12,76864,5983 +12486,214,12,49038,33008 +12487,214,12,293670,554373 +12488,265,12,10204,18897 +12489,214,12,37633,16862 +12490,214,12,436339,588808 +12491,214,12,6591,50630 +12492,265,12,108312,93159 +12493,265,12,419459,213001 +12494,265,12,49521,286 +12495,271,12,28304,2653 +12496,283,12,14207,6052 +12497,214,12,62472,18604 +12498,214,12,27805,1031107 +12499,214,12,24090,110019 +12500,214,12,114577,1059053 +12501,214,12,63498,1084808 +12502,393,12,14254,1212071 +12503,214,12,11425,11772 +12504,214,12,10694,6887 +12505,70,12,16296,56989 +12506,265,12,423377,1754612 +12507,214,12,436339,579291 +12508,70,12,73247,58101 +12509,318,12,4147,1558701 +12510,214,12,203217,1683032 +12511,214,12,118991,15795 +12512,271,12,19995,1401785 +12513,214,12,270774,86201 +12514,265,12,295964,1557690 +12515,231,12,298584,69804 +12516,265,12,129966,54172 +12517,265,12,21191,87260 +12518,214,12,44960,1365512 +12519,214,12,290825,23658 +12520,214,12,290316,1001671 +12521,271,12,117905,1795666 +12522,214,12,9056,46323 +12523,214,12,23957,67877 +12524,415,3,408381,1657566 +12525,214,12,9877,59963 +12526,265,12,352208,1043421 +12527,372,12,15179,1206940 +12528,364,12,40466,1550935 +12529,214,12,9753,59008 +12530,214,12,244539,15344 +12531,315,12,38654,952485 +12532,214,12,11145,32790 +12533,265,12,16135,69883 +12534,214,12,3063,30012 +12535,214,12,12079,71333 +12536,214,12,1595,17044 +12537,214,12,10103,63432 +12538,271,12,274857,1753670 +12539,163,12,2613,26488 +12540,265,12,44502,280 +12541,214,12,12289,1117852 +12542,265,12,241254,1302342 +12543,214,12,37665,937702 +12544,70,12,48949,10546 +12545,214,12,128364,1056755 +12546,372,12,46094,1613940 +12547,163,12,14242,6957 +12548,265,12,11636,56719 +12549,318,12,544,1573619 +12550,265,12,73562,133062 +12551,283,12,5289,5363 +12552,214,12,73872,65248 +12553,214,12,40761,11030 +12554,393,12,11377,1602878 +12555,144,12,84030,1579652 +12556,214,12,26864,7356 +12557,214,12,1917,19931 +12558,214,12,443319,46088 +12559,372,12,7555,72260 +12560,214,12,25625,106672 +12561,214,12,38964,30168 +12562,214,12,199373,17211 +12563,283,12,28902,3275 +12564,393,12,79316,1533529 +12565,214,12,76684,105446 +12566,214,12,79611,1264276 +12567,283,12,49009,1122200 +12568,214,12,156711,56856 +12569,265,12,17216,1141808 +12570,265,12,12540,41587 +12571,265,12,109001,1646404 +12572,214,12,220820,1275657 +12573,283,12,64972,2045 +12574,283,12,15935,78968 +12575,283,12,340684,32604 +12576,214,12,37103,116850 +12577,283,12,28739,62725 +12578,214,12,10841,67073 +12579,265,12,38775,121337 +12580,214,12,31324,127522 +12581,214,12,303636,1412504 +12582,265,12,1382,6511 +12583,214,12,12273,1277993 +12584,214,12,104674,1772937 +12585,214,12,332794,4401 +12586,214,12,26864,69315 +12587,322,12,638,9387 +12588,214,12,336050,1208471 +12589,271,12,30374,1590932 +12590,265,12,7555,51452 +12591,70,12,213681,1771614 +12592,214,12,322,190 +12593,214,12,84354,225009 +12594,265,12,11511,35806 +12595,70,12,55420,1114902 +12596,315,12,284052,69775 +12597,265,12,293970,1140686 +12598,214,12,20481,6202 +12599,284,12,16374,1415584 +12600,372,12,1450,93652 +12601,283,12,44945,5914 +12602,283,12,552,7562 +12603,163,12,8470,55313 +12604,389,12,263115,1821944 +12605,393,12,213681,1757621 +12606,265,12,11812,70555 +12607,283,12,178809,959387 +12608,214,12,178809,1141814 +12609,265,12,11959,2870 +12610,265,12,31618,10492 +12611,283,12,12171,17612 +12612,283,12,179826,1720 +12613,36,12,9939,60696 +12614,214,12,315664,15727 +12615,283,12,258193,19662 +12616,214,12,25653,231492 +12617,70,12,42472,1800685 +12618,214,12,82687,54734 +12619,265,12,252680,47932 +12620,214,12,207699,1196854 +12621,214,12,22408,124504 +12622,283,12,296523,1337656 +12623,214,12,2274,23485 +12624,214,12,226936,56841 +12625,214,12,10154,13918 +12626,214,12,24757,23799 +12627,214,12,134397,1098980 +12628,271,12,116463,587841 +12629,214,12,58060,933274 +12630,292,3,339403,1635298 +12631,283,12,10727,960812 +12632,214,12,116762,33008 +12633,70,12,97593,108136 +12634,283,12,50780,2952 +12635,214,12,52782,1484336 +12636,265,12,10950,70052 +12637,283,12,369885,1334535 +12638,163,12,382125,1173858 +12639,214,12,88012,57589 +12640,265,12,284564,94456 +12641,283,12,2144,546 +12642,214,12,250066,1303423 +12643,372,12,14435,79785 +12644,214,12,310133,1293994 +12645,214,12,257088,3718 +12646,70,12,308174,1138237 +12647,214,12,213681,56158 +12648,214,12,16996,20739 +12649,265,12,188161,570785 +12650,160,3,408381,1001759 +12651,214,12,16921,21586 +12652,214,12,31672,16322 +12653,283,12,9918,1720 +12654,265,12,7972,53475 +12655,214,12,4986,41142 +12656,70,12,17691,1120503 +12657,265,12,377447,1824999 +12658,214,12,37731,5983 +12659,214,12,28261,126676 +12660,214,12,43771,1806058 +12661,265,12,7459,956953 +12662,283,12,41171,5328 +12663,70,12,205587,1293834 +12664,214,12,277237,1512679 +12665,214,12,17317,23880 +12666,271,12,12273,1705306 +12667,214,12,323426,1323215 +12668,393,12,33586,1475627 +12669,214,12,26593,95744 +12670,163,12,329712,32463 +12671,214,12,10047,59 +12672,214,12,13763,283 +12673,389,12,9514,1642566 +12674,265,12,278632,1425465 +12675,214,12,6081,1927 +12676,283,12,46738,1320183 +12677,265,12,27941,21355 +12678,265,12,51209,227093 +12679,70,12,312831,1116651 +12680,231,12,363479,207180 +12681,214,12,10274,64669 +12682,70,12,66881,1071318 +12683,283,12,198277,1363963 +12684,70,12,10776,932936 +12685,265,12,16997,1048391 +12686,214,12,101669,11091 +12687,214,12,25736,72063 +12688,214,12,273,3869 +12689,214,12,240913,97864 +12690,214,12,25695,131397 +12691,283,12,44578,1398505 +12692,214,12,9877,11874 +12693,214,12,9389,58256 +12694,163,12,156711,1022433 +12695,265,12,10066,39726 +12696,214,12,220488,1339 +12697,283,12,11600,3192 +12698,214,12,11656,6648 +12699,214,12,44800,11472 +12700,214,12,336004,17210 +12701,163,12,35052,1562617 +12702,214,12,341689,37276 +12703,214,12,43828,94115 +12704,163,12,8204,1725882 +12705,265,12,40060,180528 +12706,214,12,37936,103867 +12707,214,12,47886,1183570 +12708,283,12,173499,1158430 +12709,214,12,70086,136974 +12710,265,12,68715,1607445 +12711,265,12,25862,4123 +12712,283,12,9987,61501 +12713,70,12,16638,1036829 +12714,214,12,277558,948841 +12715,214,12,20919,62357 +12716,214,12,70322,1324185 +12717,70,12,265208,1552005 +12718,265,12,329440,2545 +12719,214,12,73562,73395 +12720,214,12,82191,16888 +12721,214,12,119213,14695 +12722,214,12,103689,27715 +12723,214,12,85196,556913 +12724,214,12,16131,32035 +12725,214,12,192558,141882 +12726,283,12,435,17611 +12727,283,12,417936,30874 +12728,271,12,43522,1613579 +12729,214,12,403429,1163608 +12730,214,12,43877,7459 +12731,265,12,293982,1583084 +12732,318,12,250066,1827364 +12733,283,12,14435,13585 +12734,214,12,4953,4231 +12735,265,12,10594,44634 +12736,214,12,217925,6159 +12737,265,12,9296,4767 +12738,265,12,46094,57154 +12739,265,12,37238,41134 +12740,214,12,6417,36644 +12741,283,12,13185,1089828 +12742,214,12,288281,1116924 +12743,265,12,101325,1560958 +12744,283,12,13092,961165 +12745,214,12,253235,27541 +12746,265,12,4551,38020 +12747,214,12,300667,948288 +12748,214,12,44732,58148 +12749,214,12,2565,489 +12750,265,12,11647,70748 +12751,265,12,102629,1121986 +12752,214,12,7548,52445 +12753,265,12,334538,94467 +12754,214,12,1481,65028 +12755,214,12,4913,17046 +12756,265,12,8844,511 +12757,283,12,8915,2952 +12758,283,12,287903,1016177 +12759,214,12,2567,16729 +12760,163,12,364690,1670957 +12761,322,12,109424,1341798 +12762,265,12,42057,6222 +12763,214,12,63139,62644 +12764,214,12,9629,51892 +12765,214,12,25919,79434 +12766,214,12,37645,18186 +12767,214,12,14868,77728 +12768,265,12,11561,6993 +12769,265,12,241254,1113451 +12770,214,12,50780,322 +12771,214,12,10626,46188 +12772,283,12,18093,3501 +12773,163,12,163,119665 +12774,299,12,245700,1798338 +12775,214,12,16866,117057 +12776,265,12,14217,135238 +12777,283,12,98557,1018706 +12778,372,12,110146,1485234 +12779,265,12,12499,57132 +12780,70,12,145481,974634 +12781,214,12,26390,974498 +12782,214,12,110146,1207579 +12783,283,12,230428,2678 +12784,214,12,11601,35974 +12785,214,12,17216,34489 +12786,214,12,152737,1461 +12787,214,12,11012,15389 +12788,214,12,412202,1550015 +12789,214,12,56329,21905 +12790,163,12,8204,1102209 +12791,283,12,74430,8426 +12792,265,12,43783,8502 +12793,283,12,4248,23653 +12794,214,12,103216,333662 +12795,389,12,4147,1414292 +12796,265,12,60420,1616266 +12797,68,12,61765,234351 +12798,265,12,1640,61051 +12799,214,12,86603,4695 +12800,163,12,444713,1768801 +12801,265,12,381015,1808395 +12802,214,12,29272,1019784 +12803,265,12,335778,1212239 +12804,283,12,13526,1262 +12805,70,12,32044,30591 +12806,265,12,376660,1355345 +12807,214,12,423377,1737737 +12808,214,12,19719,85096 +12809,265,12,17895,1489517 +12810,283,12,11535,13932 +12811,214,12,11399,69224 +12812,271,12,264646,1434458 +12813,214,12,17691,18392 +12814,265,12,50674,68504 +12815,214,12,283384,124321 +12816,214,12,179826,1313483 +12817,214,12,302699,19282 +12818,214,12,13827,75885 +12819,372,12,125490,1179436 +12820,214,12,403450,1032318 +12821,214,12,10918,67466 +12822,322,12,634,1477563 +12823,214,12,183015,47932 +12824,265,12,141,44634 +12825,283,12,35284,25801 +12826,214,12,22894,66726 +12827,214,12,70801,100047 +12828,107,12,266856,1300064 +12829,283,12,9593,3275 +12830,322,12,954,9028 +12831,214,12,5559,16377 +12832,265,12,21191,60476 +12833,214,12,15310,63999 +12834,163,12,336804,1574316 +12835,214,12,92341,29962 +12836,265,12,47143,1113444 +12837,163,12,301876,59001 +12838,286,3,445602,1693467 +12839,265,12,11338,69057 +12840,214,12,74199,571464 +12841,214,12,347031,66263 +12842,265,12,400174,936422 +12843,214,12,8272,5952 +12844,214,12,82501,993271 +12845,283,12,74430,1267321 +12846,214,12,80193,98968 +12847,265,12,147132,1808982 +12848,214,12,407448,1027025 +12849,70,12,3035,1556 +12850,214,12,124994,1080810 +12851,214,12,10097,63371 +12852,214,12,112083,4109 +12853,214,12,68684,1304289 +12854,389,12,1647,1718278 +12855,214,12,128644,1087638 +12856,283,12,9032,3276 +12857,214,12,24963,103327 +12858,372,12,121598,66245 +12859,265,12,59678,19295 +12860,283,12,9352,12228 +12861,283,12,4248,14377 +12862,283,12,40095,44057 +12863,214,12,53219,2106 +12864,214,12,53883,587757 +12865,214,12,1421,1650 +12866,283,12,145191,1122423 +12867,265,12,81001,21725 +12868,214,12,112162,1312977 +12869,396,3,439998,1420173 +12870,163,12,54227,5836 +12871,214,12,28026,11150 +12872,214,12,12182,62117 +12873,271,12,15,1530899 +12874,271,12,17111,1629463 +12875,265,12,141,57048 +12876,271,12,33586,1511588 +12877,300,12,10165,1497449 +12878,214,12,72766,1566006 +12879,70,12,72984,1457657 +12880,358,12,693,1662775 +12881,214,12,406052,51703 +12882,65,3,339403,1635214 +12883,283,12,120,1326 +12884,214,12,262786,1054038 +12885,214,12,308165,94280 +12886,283,12,12169,1123960 +12887,372,12,393732,1772306 +12888,214,12,50247,1115028 +12889,265,12,118,59774 +12890,265,12,31527,1027221 +12891,214,12,22396,6099 +12892,283,12,949,897 +12893,214,12,384262,1805956 +12894,163,12,318184,1413692 +12895,214,12,2608,27239 +12896,265,12,21583,4491 +12897,265,12,16232,51449 +12898,163,12,19996,85414 +12899,214,12,402612,1053353 +12900,265,12,30478,587487 +12901,214,12,99698,100747 +12902,214,12,50079,109853 +12903,265,12,337958,63892 +12904,163,12,316154,1428268 +12905,163,12,83599,7708 +12906,265,12,24363,41588 +12907,214,12,59965,1328142 +12908,70,12,4133,34848 +12909,214,12,16962,90202 +12910,265,12,244783,1280038 +12911,271,12,274990,1180040 +12912,214,12,22803,11695 +12913,283,12,11800,3724 +12914,300,12,74629,57098 +12915,265,12,38006,29664 +12916,372,12,313074,1402657 +12917,214,12,71825,380 +12918,70,12,365942,1882870 +12919,214,12,73116,568131 +12920,283,12,10145,6347 +12921,214,12,301875,1478554 +12922,163,12,857,2210 +12923,372,12,44363,38696 +12924,163,12,378485,1172229 +12925,214,12,105,1058 +12926,372,12,103012,1728381 +12927,300,12,77930,1189082 +12928,283,12,116463,30876 +12929,214,12,11658,1296337 +12930,214,12,97051,1324042 +12931,284,12,82968,1283132 +12932,389,12,9946,87371 +12933,214,12,244610,524700 +12934,283,12,97614,20540 +12935,70,12,382589,1851190 +12936,214,12,343878,1475412 +12937,322,12,50126,1692497 +12938,283,12,79645,1263 +12939,265,12,8272,321 +12940,214,12,392271,87550 +12941,214,12,180635,2439 +12942,214,12,94874,163641 +12943,283,12,12528,1730 +12944,283,12,406052,60154 +12945,265,12,13505,223989 +12946,214,12,59197,30053 +12947,265,12,123025,10949 +12948,283,12,19995,6347 +12949,265,12,277558,1002345 +12950,265,12,21711,4135 +12951,214,12,12575,49043 +12952,283,12,49524,1034748 +12953,371,3,110001,54131 +12954,214,12,11895,33096 +12955,214,12,10063,62685 +12956,214,12,46145,45279 +12957,214,12,66193,1195347 +12958,214,12,9914,23880 +12959,163,12,58251,129561 +12960,265,12,14047,12781 +12961,214,12,336199,1398142 +12962,265,12,1950,1296 +12963,283,12,238,3101 +12964,318,12,134201,1771038 +12965,163,12,331161,1336974 +12966,283,12,84735,1530 +12967,214,12,10109,588140 +12968,214,12,791,2161 +12969,214,12,241927,1530611 +12970,271,12,57489,1680135 +12971,214,12,9959,38939 +12972,70,12,83802,1195445 +12973,214,12,319073,1179549 +12974,265,12,11876,70806 +12975,214,12,174751,55484 +12976,214,12,140032,40 +12977,372,12,109439,76481 +12978,163,12,320588,1453844 +12979,214,12,78802,2352 +12980,283,12,64807,3276 +12981,265,12,312831,1113566 +12982,265,12,32080,16298 +12983,214,12,72640,2106 +12984,214,12,433244,59657 +12985,214,12,6687,51071 +12986,265,12,12499,57601 +12987,214,12,8292,10952 +12988,214,12,267793,946129 +12989,214,12,28063,99526 +12990,265,12,122081,79534 +12991,214,12,142984,123014 +12992,214,12,20312,1059 +12993,70,12,54801,1296276 +12994,300,12,43432,1275908 +12995,265,12,95743,16787 +12996,283,12,10047,592771 +12997,292,3,339403,1635289 +12998,271,12,8340,1566436 +12999,265,12,418990,552254 +13000,265,12,76163,53758 +13001,214,12,170759,1844 +13002,214,12,397837,53177 +13003,214,12,2978,8858 +13004,214,12,10632,7780 +13005,318,12,384737,1814010 +13006,214,12,383538,1782998 +13007,214,12,15749,63778 +13008,214,12,30082,1043954 +13009,265,12,151431,2490 +13010,283,12,31005,2952 +13011,393,12,222935,1466537 +13012,300,12,11247,58183 +13013,283,12,788,3275 +13014,214,12,2021,20774 +13015,265,12,24123,69122 +13016,265,12,8942,1020052 +13017,214,12,62320,59 +13018,372,12,3563,32899 +13019,265,12,1259,9022 +13020,214,12,48617,1119833 +13021,372,12,62046,42504 +13022,283,12,1382,53899 +13023,283,12,14644,1968 +13024,214,12,83229,257772 +13025,271,12,16876,1039256 +13026,214,12,394822,1800388 +13027,214,12,302026,1570572 +13028,283,12,834,54777 +13029,265,12,158908,1143384 +13030,265,12,409,1307 +13031,393,12,312221,1580863 +13032,214,12,79113,62079 +13033,144,12,954,16934 +13034,214,12,48502,140600 +13035,265,12,15092,3958 +13036,70,12,14534,1437641 +13037,265,12,323675,1555300 +13038,214,12,18530,1320303 +13039,372,12,37958,1123193 +13040,163,12,9882,5286 +13041,144,12,163,1574132 +13042,318,12,14372,1832340 +13043,283,12,13848,2045 +13044,265,12,69974,557663 +13045,372,12,45013,110259 +13046,231,12,356752,1841607 +13047,214,12,88005,1004836 +13048,163,12,59861,8275 +13049,70,12,103012,1728380 +13050,300,12,28176,9987 +13051,271,12,2169,22183 +13052,70,12,27150,51572 +13053,283,12,185460,7902 +13054,70,12,664,9988 +13055,265,12,294016,1555796 +13056,214,12,397717,1084797 +13057,265,12,11137,68309 +13058,214,12,30034,30968 +13059,214,12,29698,52739 +13060,214,12,47694,554844 +13061,265,12,397837,1544261 +13062,265,12,61151,1529469 +13063,214,12,75244,1085545 +13064,214,12,127728,1085661 +13065,214,12,6933,47285 +13066,214,12,209263,321 +13067,265,12,12273,1705301 +13068,214,12,3023,29634 +13069,265,12,115782,1157032 +13070,283,12,103433,935115 +13071,283,12,45556,555946 +13072,214,12,69560,544351 +13073,364,12,408220,1225820 +13074,283,12,15022,191069 +13075,214,12,94352,1067239 +13076,265,12,62764,1050653 +13077,214,12,7237,52148 +13078,214,12,20432,1099730 +13079,265,12,59861,342158 +13080,283,12,13668,54777 +13081,265,12,94348,1001705 +13082,214,12,84104,99415 +13083,265,12,19244,31520 +13084,214,12,9902,60261 +13085,214,12,7326,43899 +13086,283,12,9893,19679 +13087,214,12,2924,2185 +13088,127,3,339403,1635216 +13089,214,12,15749,1325684 +13090,372,12,369406,1539087 +13091,214,12,103590,1034420 +13092,265,12,1838,1174 +13093,283,12,244117,4906 +13094,214,12,85651,47053 +13095,283,12,66193,938123 +13096,283,12,278316,5290 +13097,393,12,8204,1324036 +13098,265,12,256962,72968 +13099,214,12,9987,61490 +13100,214,12,25919,1121930 +13101,283,12,274857,1018073 +13102,214,12,328429,1636685 +13103,214,12,282268,195163 +13104,283,12,15019,9545 +13105,214,12,248933,1073 +13106,372,12,1450,183617 +13107,214,12,45988,1443842 +13108,70,12,150201,1448870 +13109,322,12,6947,1389575 +13110,70,12,26378,89045 +13111,283,12,331588,2952 +13112,163,12,290764,17491 +13113,214,12,166886,1599475 +13114,214,12,82492,928073 +13115,372,12,16058,75997 +13116,214,12,43711,30310 +13117,214,12,381015,1140109 +13118,214,12,408381,1325204 +13119,393,12,354859,1318192 +13120,283,12,5237,956271 +13121,163,12,2300,7068 +13122,265,12,8272,4948 +13123,322,12,286372,1378154 +13124,214,12,10749,56992 +13125,283,12,25132,1014920 +13126,271,12,42251,97847 +13127,283,12,8204,23545 +13128,265,12,256740,995355 +13129,265,12,64568,29664 +13130,214,12,101006,1159613 +13131,163,12,341491,5097 +13132,214,12,52440,42060 +13133,283,12,50780,1474151 +13134,265,12,935,14251 +13135,214,12,58704,228279 +13136,214,12,33460,110705 +13137,214,12,1640,17451 +13138,214,12,245706,20458 +13139,283,12,19209,1803 +13140,214,12,308,4449 +13141,214,12,8049,5426 +13142,214,12,16092,79283 +13143,214,12,109424,4767 +13144,214,12,166221,42367 +13145,265,12,24619,16830 +13146,163,12,35052,35078 +13147,371,3,339403,1553832 +13148,265,12,47955,1241644 +13149,214,12,87827,25455 +13150,214,12,280840,16435 +13151,265,12,63144,932203 +13152,214,12,12182,3289 +13153,214,12,361183,1513959 +13154,214,12,46872,136396 +13155,284,12,12454,1413858 +13156,214,12,167073,34001 +13157,214,12,94468,1495606 +13158,265,12,105548,100047 +13159,389,12,10590,91940 +13160,271,12,14703,118293 +13161,214,12,48205,1433941 +13162,284,12,1717,1408849 +13163,283,12,24739,22055 +13164,214,12,44398,2439 +13165,265,12,47212,1202 +13166,265,12,65777,41400 +13167,265,12,77459,54205 +13168,265,12,11328,69016 +13169,393,12,46286,1196709 +13170,372,12,67,50117 +13171,265,12,361750,83995 +13172,214,12,47459,29288 +13173,214,12,323315,1398636 +13174,393,12,341174,1738094 +13175,214,12,406052,1341568 +13176,265,12,300155,6226 +13177,300,12,19719,85098 +13178,318,12,284052,1785952 +13179,214,12,18671,19100 +13180,214,12,19719,85131 +13181,163,12,9593,14055 +13182,283,12,97630,62778 +13183,214,12,2503,29403 +13184,322,12,126889,1816350 +13185,214,12,11045,59 +13186,127,3,339403,134935 +13187,265,12,137145,1106882 +13188,231,12,8470,1000157 +13189,283,12,9426,972016 +13190,283,12,93457,1262 +13191,265,12,281124,1340092 +13192,214,12,333484,51612 +13193,265,12,9260,18350 +13194,163,12,14977,81295 +13195,283,12,299165,107254 +13196,271,12,43641,1200787 +13197,265,12,60665,6891 +13198,214,12,30527,106493 +13199,214,12,53358,563630 +13200,214,12,10033,62239 +13201,283,12,72984,1764715 +13202,265,12,411741,1673678 +13203,163,12,8869,15365 +13204,271,12,63304,1680201 +13205,214,12,235,3028 +13206,10,3,401164,1817481 +13207,283,12,10929,561 +13208,214,12,76333,1383082 +13209,214,12,1273,19501 +13210,214,12,102,1015 +13211,214,12,9551,56477 +13212,283,12,335778,1325 +13213,214,12,25738,95270 +13214,265,12,262338,17209 +13215,283,12,32338,21691 +13216,214,12,26502,4165 +13217,265,12,371181,1212016 +13218,283,12,9286,561 +13219,283,12,40688,2151 +13220,214,12,17889,94115 +13221,283,12,336029,959440 +13222,214,12,112304,218637 +13223,70,12,40804,112007 +13224,214,12,19235,84803 +13225,214,12,159667,1519342 +13226,214,12,10590,2460 +13227,265,12,58,2444 +13228,265,12,8467,55163 +13229,283,12,139582,1113439 +13230,265,12,351211,1056043 +13231,214,12,198227,1024473 +13232,214,12,304372,1639820 +13233,283,12,549,7494 +13234,214,12,21566,1734987 +13235,214,12,91186,64488 +13236,214,12,362154,1562573 +13237,265,12,310888,110742 +13238,163,12,47112,897 +13239,214,12,3989,5626 +13240,214,12,98870,54470 +13241,265,12,109491,1117311 +13242,227,12,10590,1620005 +13243,372,12,24363,35179 +13244,283,12,26688,224387 +13245,265,12,36094,10829 +13246,214,12,9675,45838 +13247,214,12,323675,65135 +13248,286,3,233208,1282039 +13249,265,12,44115,17599 +13250,265,12,10750,66629 +13251,265,12,40229,1477836 +13252,283,12,301228,81828 +13253,214,12,37926,64300 +13254,265,12,318973,1001797 +13255,265,12,210092,89158 +13256,163,12,16229,6886 +13257,214,12,41283,46347 +13258,70,12,13185,1356952 +13259,283,12,170279,64407 +13260,70,12,6,1472642 +13261,214,12,21132,52089 +13262,265,12,40649,19707 +13263,214,12,22881,47286 +13264,214,12,9405,56032 +13265,214,12,27549,24757 +13266,214,12,93457,21024 +13267,214,12,2309,23768 +13268,283,12,1251,423 +13269,265,12,12273,1705304 +13270,214,12,27031,18604 +13271,70,12,10590,65707 +13272,214,12,42188,1125600 +13273,265,12,37725,1346142 +13274,322,12,30361,1545956 +13275,214,12,110491,1049448 +13276,214,12,42216,41157 +13277,265,12,44123,554223 +13278,372,12,84449,236653 +13279,265,12,327383,1354114 +13280,265,12,10466,915 +13281,283,12,302042,979724 +13282,271,12,5544,1625826 +13283,214,12,28169,78021 +13284,265,12,15179,6334 +13285,283,12,4916,1263 +13286,214,12,11329,69020 +13287,214,12,12128,25507 +13288,214,12,278706,1197332 +13289,214,12,1415,2862 +13290,372,12,290714,1361069 +13291,214,12,47911,556153 +13292,214,12,287587,1273859 +13293,322,12,2567,1392113 +13294,214,12,11248,14136 +13295,214,12,8985,42 +13296,283,12,426253,35490 +13297,393,12,45013,1024910 +13298,70,12,340101,79536 +13299,214,12,10484,38507 +13300,214,12,753,11147 +13301,265,12,51549,1634161 +13302,300,12,52454,1630376 +13303,214,12,9785,5625 +13304,283,12,323679,7903 +13305,70,12,8467,2446 +13306,214,12,32577,2035 +13307,107,12,8467,1227952 +13308,283,12,218778,20540 +13309,231,12,278632,1188273 +13310,372,12,8329,1120588 +13311,214,12,30155,82561 +13312,265,12,365065,578 +13313,283,12,417870,1521110 +13314,214,12,77875,17276 +13315,283,12,1690,19662 +13316,318,12,193893,1871280 +13317,214,12,267931,1107724 +13318,214,12,42684,496733 +13319,127,3,339403,1635210 +13320,214,12,333352,60864 +13321,214,12,43093,952485 +13322,214,12,208091,54417 +13323,283,12,2034,5914 +13324,283,12,6038,3311 +13325,265,12,369820,1373058 +13326,214,12,120605,1046154 +13327,214,12,11399,9734 +13328,214,12,16921,56172 +13329,283,12,50126,5363 +13330,415,3,354133,1496082 +13331,214,12,3638,33435 +13332,372,12,98066,1543589 +13333,265,12,12573,2238 +13334,214,12,4988,41150 +13335,214,12,7459,11268 +13336,214,12,36737,1351549 +13337,214,12,413998,18846 +13338,70,12,117999,1518590 +13339,389,12,19901,1418817 +13340,265,12,178809,957826 +13341,214,12,102222,1394048 +13342,265,12,383140,1275657 +13343,70,12,46387,110228 +13344,214,12,28417,100748 +13345,214,12,15414,1555652 +13346,214,12,96702,1004059 +13347,265,12,110146,1485237 +13348,265,12,20432,1099731 +13349,271,12,374475,41302 +13350,265,12,10204,1472325 +13351,214,12,21132,1233342 +13352,163,12,318973,1529 +13353,163,12,41733,957353 +13354,214,12,419430,1587 +13355,372,12,9298,57204 +13356,265,12,25941,993394 +13357,265,12,117534,557582 +13358,283,12,1999,20539 +13359,214,12,76333,118303 +13360,265,12,15749,32034 +13361,163,12,58251,1417252 +13362,214,12,10652,70189 +13363,214,12,276909,2710 +13364,214,12,42502,11964 +13365,265,12,273106,1198663 +13366,214,12,244580,17173 +13367,214,12,325263,1636514 +13368,265,12,30155,1199554 +13369,265,12,11979,6625 +13370,265,12,258147,1298873 +13371,358,12,10066,1546580 +13372,265,12,9753,19809 +13373,214,12,336004,17211 +13374,163,12,170279,1152398 +13375,214,12,61908,33019 +13376,214,12,10077,53299 +13377,265,12,40060,1670823 +13378,214,12,10276,7627 +13379,214,12,112304,1073742 +13380,283,12,133458,6338 +13381,214,12,332079,115084 +13382,393,12,333663,1031098 +13383,372,12,173205,1852945 +13384,358,12,398633,1687742 +13385,163,12,14534,44848 +13386,70,12,1902,31011 +13387,358,12,15,30174 +13388,214,12,10294,64783 +13389,214,12,351065,4583 +13390,283,12,1595,547 +13391,214,12,10925,67490 +13392,283,12,12454,16363 +13393,265,12,154442,1722911 +13394,283,12,45244,2623 +13395,214,12,257344,11222 +13396,214,12,47426,1102198 +13397,283,12,19209,122611 +13398,265,12,142061,10949 +13399,283,12,25520,4023 +13400,214,12,16083,79250 +13401,214,12,101006,1002601 +13402,214,12,12101,18591 +13403,214,12,403130,93792 +13404,214,12,431093,1114888 +13405,283,12,6443,124693 +13406,265,12,14979,45829 +13407,214,12,377853,969004 +13408,283,12,40662,34945 +13409,70,12,10440,578324 +13410,283,12,19505,2678 +13411,265,12,13574,1395351 +13412,283,12,13058,17612 +13413,214,12,329819,543839 +13414,214,12,8840,12507 +13415,214,12,159128,1298746 +13416,265,12,256962,173150 +13417,214,12,10201,1297 +13418,164,3,378018,1762254 +13419,283,12,33511,16363 +13420,214,12,14207,56095 +13421,265,12,184098,147712 +13422,284,12,25376,79163 +13423,70,12,84154,119590 +13424,214,12,273481,67759 +13425,231,12,98066,56253 +13426,214,12,8844,9184 +13427,214,12,340488,937171 +13428,283,12,27461,4952 +13429,283,12,40562,4023 +13430,214,12,82520,131396 +13431,214,12,248087,1537404 +13432,214,12,15081,2106 +13433,214,12,102629,86047 +13434,214,12,26889,56947 +13435,214,12,210910,1194699 +13436,265,12,229254,3868 +13437,257,3,381015,1828359 +13438,214,12,88794,4746 +13439,214,12,82696,52451 +13440,214,12,55825,1034189 +13441,214,12,4012,35142 +13442,265,12,9457,11772 +13443,163,12,369366,1555620 +13444,214,12,5177,41912 +13445,283,12,55347,236608 +13446,214,12,286532,945058 +13447,318,12,356752,1841564 +13448,214,12,12696,66698 +13449,265,12,41402,1068119 +13450,214,12,268212,36845 +13451,283,12,223946,1152353 +13452,265,12,3172,15795 +13453,70,12,332411,1442145 +13454,265,12,9070,50099 +13455,265,12,6077,47786 +13456,358,12,6557,1662775 +13457,265,12,179103,4123 +13458,265,12,461955,1503826 +13459,283,12,25473,1508356 +13460,214,12,405882,1380638 +13461,265,12,400174,31121 +13462,283,12,51250,13585 +13463,309,12,107073,1481503 +13464,214,12,8584,21635 +13465,214,12,53358,147967 +13466,265,12,70670,1066227 +13467,283,12,10739,15426 +13468,283,12,336011,1641321 +13469,214,12,3037,2334 +13470,265,12,297853,1790449 +13471,214,12,145135,84348 +13472,214,12,32338,61932 +13473,214,12,59297,90162 +13474,214,12,9900,20819 +13475,70,12,66881,1426210 +13476,315,12,395992,1640350 +13477,283,12,9982,59745 +13478,277,3,62978,1608742 +13479,214,12,25855,57281 +13480,322,12,339403,1389626 +13481,214,12,9056,44932 +13482,214,12,91679,1554055 +13483,214,12,60759,232013 +13484,283,12,84626,1087388 +13485,214,12,70667,1076794 +13486,265,12,30061,34934 +13487,214,12,2998,3778 +13488,315,12,17654,18383 +13489,283,12,9102,60055 +13490,214,12,40028,98132 +13491,214,12,244458,1046154 +13492,283,12,140607,16363 +13493,283,12,102629,61860 +13494,214,12,8844,42357 +13495,265,12,47504,69228 +13496,283,12,424488,19689 +13497,283,12,14370,2874 +13498,283,12,392271,5489 +13499,214,12,46094,9196 +13500,214,12,198663,6040 +13501,214,12,113178,189487 +13502,214,12,4550,43563 +13503,214,12,12476,13663 +13504,214,12,127380,72753 +13505,214,12,12289,1117856 +13506,214,12,42678,33172 +13507,322,12,45013,1310253 +13508,70,12,365942,1812272 +13509,283,12,52637,72941 +13510,214,12,18763,62416 +13511,214,12,57866,977828 +13512,265,12,13279,2075 +13513,214,12,35392,120530 +13514,214,12,90395,1228078 +13515,283,12,259695,2953 +13516,283,12,616,547 +13517,214,12,14977,65823 +13518,265,12,9946,15219 +13519,163,12,332411,63423 +13520,322,12,269173,1379056 +13521,265,12,73262,6046 +13522,265,12,66894,62598 +13523,214,12,86829,1224 +13524,214,12,35021,113601 +13525,214,12,6591,18504 +13526,214,12,270842,554289 +13527,283,12,11017,5776 +13528,214,12,19294,1211361 +13529,70,12,107073,1054704 +13530,214,12,82519,60045 +13531,283,12,367412,494 +13532,265,12,58,2445 +13533,214,12,82520,928131 +13534,214,12,244316,1426225 +13535,214,12,28165,78023 +13536,283,12,17956,6119 +13537,322,12,613,1425864 +13538,214,12,11428,69407 +13539,214,12,2758,2997 +13540,163,12,382589,19866 +13541,265,12,11370,15303 +13542,214,12,103875,71060 +13543,265,12,263115,366 +13544,300,12,109391,5875 +13545,283,12,445,6030 +13546,283,12,284052,7232 +13547,322,12,157843,1907241 +13548,214,12,9893,57174 +13549,70,12,32227,22433 +13550,265,12,91679,5952 +13551,372,12,157843,1321390 +13552,283,12,21208,5507 +13553,214,12,13654,61971 +13554,265,12,24420,287 +13555,214,12,16177,21440 +13556,283,12,2021,20775 +13557,214,12,5511,43811 +13558,214,12,132363,7627 +13559,214,12,9609,33 +13560,214,12,540,22115 +13561,265,12,17622,62983 +13562,283,12,118677,19689 +13563,265,12,237756,1272158 +13564,214,12,62967,3131 +13565,271,12,755,37334 +13566,214,12,43155,2439 +13567,214,12,12121,3392 +13568,283,12,61225,13585 +13569,214,12,21214,932834 +13570,70,12,40368,556932 +13571,393,12,15414,1014915 +13572,265,12,193756,1684362 +13573,214,12,357106,31373 +13574,214,12,29020,149374 +13575,214,12,40028,1426047 +13576,283,12,28110,2871 +13577,265,12,109213,1610503 +13578,214,12,36658,7200 +13579,265,12,172847,41329 +13580,265,12,257450,1718315 +13581,214,12,15936,78973 +13582,265,12,12617,73259 +13583,283,12,12412,1257818 +13584,265,12,16164,2235 +13585,214,12,32068,55692 +13586,214,12,443319,1179066 +13587,265,12,5955,21479 +13588,265,12,339419,1066809 +13589,283,12,256962,1221 +13590,252,3,339403,1635319 +13591,283,12,126832,6232 +13592,283,12,48949,2997 +13593,214,12,58244,967604 +13594,283,12,10320,3965 +13595,214,12,30478,1057777 +13596,265,12,38579,11812 +13597,163,12,263115,1432021 +13598,214,12,20047,40282 +13599,214,12,82929,928931 +13600,70,12,9472,1567965 +13601,283,12,10004,23905 +13602,214,12,70670,559205 +13603,214,12,5638,81541 +13604,214,12,214910,1077558 +13605,214,12,9966,61121 +13606,214,12,43434,1117766 +13607,265,12,34723,1673596 +13608,214,12,28452,100807 +13609,214,12,341420,584619 +13610,265,12,366143,124748 +13611,265,12,137093,60070 +13612,389,12,10733,91931 +13613,265,12,26390,964768 +13614,283,12,188927,986277 +13615,283,12,29355,3806 +13616,265,12,31127,1590965 +13617,265,12,19235,84797 +13618,214,12,13685,221695 +13619,265,12,290714,1503518 +13620,214,12,11133,10056 +13621,144,12,447758,1494829 +13622,283,12,817,546 +13623,214,12,326285,68602 +13624,393,12,339527,1493973 +13625,265,12,10708,11815 +13626,214,12,11692,1151 +13627,393,12,345922,970836 +13628,70,12,38404,31252 +13629,163,12,170279,1665915 +13630,214,12,42251,102342 +13631,309,12,107073,1481501 +13632,214,12,1665,10687 +13633,265,12,360784,1337319 +13634,265,12,330459,1102139 +13635,70,12,33586,76058 +13636,265,12,88288,8502 +13637,214,12,146679,995466 +13638,372,12,53150,190134 +13639,214,12,28774,114629 +13640,214,12,36335,21601 +13641,265,12,218778,5541 +13642,214,12,14977,83857 +13643,283,12,817,14377 +13644,214,12,10400,65012 +13645,214,12,136386,1171618 +13646,70,12,58251,1330218 +13647,214,12,82696,53758 +13648,265,12,9966,23541 +13649,214,12,30876,103612 +13650,214,12,10066,1091 +13651,214,12,368006,85720 +13652,265,12,10657,12804 +13653,214,12,168027,122728 +13654,303,3,337339,13670 +13655,214,12,354287,967387 +13656,283,12,58903,3686 +13657,271,12,54384,1681633 +13658,214,12,334074,16830 +13659,70,12,15560,1459116 +13660,265,12,98115,1873043 +13661,265,12,66125,1465890 +13662,70,12,26514,1433453 +13663,271,12,210302,64225 +13664,214,12,365065,1330832 +13665,214,12,8053,59 +13666,283,12,634,5489 +13667,214,12,200,2514 +13668,214,12,3716,5126 +13669,214,12,52696,35771 +13670,283,12,61527,1046729 +13671,214,12,9870,41039 +13672,265,12,9495,57704 +13673,283,12,79316,1333932 +13674,214,12,47410,138869 +13675,271,12,44693,215840 +13676,214,12,337014,337108 +13677,393,12,298,1212071 +13678,265,12,9843,6373 +13679,214,12,18586,59724 +13680,214,12,141955,30919 +13681,163,12,228205,280800 +13682,78,3,354287,1781232 +13683,283,12,2503,1325 +13684,214,12,22140,1156594 +13685,283,12,94671,1024910 +13686,283,12,152748,1475160 +13687,214,12,9441,11222 +13688,283,12,17956,961106 +13689,265,12,297814,983578 +13690,7,3,339403,1635331 +13691,245,3,413421,1323121 +13692,214,12,678,10148 +13693,265,12,17622,62139 +13694,300,12,333484,1561731 +13695,214,12,381073,1609432 +13696,214,12,9816,34968 +13697,283,12,351901,1311274 +13698,214,12,664,489 +13699,283,12,152532,928272 +13700,265,12,10594,44633 +13701,265,12,267935,18844 +13702,265,12,142402,1117097 +13703,318,12,227975,1775654 +13704,214,12,325133,928595 +13705,372,12,37710,10571 +13706,214,12,7555,17209 +13707,214,12,332979,24294 +13708,271,12,10364,1586042 +13709,214,12,347031,116246 +13710,214,12,16432,62985 +13711,300,12,16996,54735 +13712,70,12,10727,1584231 +13713,265,12,98115,47099 +13714,214,12,397422,65918 +13715,214,12,2105,3288 +13716,214,12,298584,1199826 +13717,214,12,391757,14695 +13718,265,12,25834,13663 +13719,214,12,5924,40532 +13720,265,12,403867,1723490 +13721,283,12,23048,22219 +13722,214,12,49521,525 +13723,214,12,40983,931247 +13724,283,12,93457,1263 +13725,214,12,32021,29648 +13726,214,12,82684,92301 +13727,160,3,339403,1387252 +13728,214,12,56435,1177602 +13729,227,12,263115,1821935 +13730,283,12,14868,37281 +13731,214,12,36334,11438 +13732,70,12,42703,1120619 +13733,214,12,75300,575042 +13734,322,12,168027,1460752 +13735,283,12,169881,124693 +13736,214,12,55823,5398 +13737,271,12,1481,75963 +13738,265,12,42941,1209601 +13739,265,12,17770,1569468 +13740,283,12,18843,66493 +13741,214,12,110416,1795548 +13742,214,12,75778,948439 +13743,393,12,315837,1717992 +13744,70,12,2721,18205 +13745,214,12,29117,87688 +13746,163,12,186869,1835565 +13747,283,12,46421,1263 +13748,283,12,48677,1097 +13749,283,12,62768,1327596 +13750,214,12,1375,11472 +13751,265,12,300669,60032 +13752,214,12,169,2043 +13753,214,12,41171,38578 +13754,265,12,111839,1053188 +13755,214,12,24363,3305 +13756,265,12,24918,69571 +13757,357,3,337339,1907210 +13758,163,12,29345,52148 +13759,265,12,10703,240177 +13760,265,12,20123,1050004 +13761,214,12,201581,1183663 +13762,214,12,274857,958239 +13763,322,12,11618,42265 +13764,265,12,5753,1421174 +13765,265,12,294652,1485599 +13766,265,12,276906,1331168 +13767,214,12,226140,1377410 +13768,214,12,316154,1454381 +13769,283,12,59965,1328143 +13770,214,12,263472,16847 +13771,271,12,28820,102116 +13772,70,12,13333,71018 +13773,214,12,115109,8502 +13774,214,12,6591,50629 +13775,214,12,100669,1632790 +13776,265,12,6023,47288 +13777,214,12,52454,30053 +13778,214,12,19403,11472 +13779,393,12,354287,1533585 +13780,265,12,84178,1186631 +13781,214,12,141489,1114932 +13782,163,12,311324,1833910 +13783,214,12,12186,30383 +13784,214,12,122348,66594 +13785,163,12,10590,65722 +13786,393,12,140607,1550633 +13787,70,12,86241,10415 +13788,283,12,16164,4023 +13789,214,12,19594,40345 +13790,214,12,252916,161800 +13791,214,12,11338,41184 +13792,265,12,982,3428 +13793,214,12,42819,1080783 +13794,70,12,4133,34856 +13795,283,12,4641,38700 +13796,214,12,118195,220264 +13797,322,12,339403,1635286 +13798,283,12,7916,53648 +13799,214,12,238589,61921 +13800,214,12,141,1587 +13801,214,12,9598,20629 +13802,214,12,45964,62555 +13803,214,12,18836,130938 +13804,68,12,73835,1177547 +13805,214,12,10916,67457 +13806,214,12,10063,19697 +13807,107,12,336890,1904065 +13808,265,12,340101,1425756 +13809,214,12,35008,100747 +13810,283,12,72431,1484219 +13811,214,12,10274,32733 +13812,283,12,28384,1046 +13813,265,12,343173,1015907 +13814,214,12,16993,6593 +13815,214,12,9953,4232 +13816,214,12,107811,54419 +13817,393,12,2105,1594 +13818,265,12,310888,237855 +13819,315,12,3172,1455028 +13820,214,12,6038,4504 +13821,163,12,268920,1491121 +13822,214,12,401164,1817433 +13823,214,12,338189,143593 +13824,214,12,416635,1681430 +13825,265,12,98066,56251 +13826,265,12,284053,1256726 +13827,315,12,5638,81521 +13828,214,12,53945,44955 +13829,214,12,13162,1532319 +13830,214,12,287483,1316517 +13831,265,12,44754,2239 +13832,283,12,214081,1302 +13833,214,12,49009,12234 +13834,265,12,101852,1500900 +13835,283,12,48281,1578417 +13836,265,12,52369,939459 +13837,265,12,84449,1108726 +13838,214,12,6440,1033793 +13839,214,12,137321,17630 +13840,214,12,216156,57632 +13841,214,12,8247,954164 +13842,372,12,13312,1116994 +13843,265,12,257344,1473411 +13844,283,12,261036,7438 +13845,214,12,40466,17208 +13846,265,12,70086,1417878 +13847,283,12,34482,24958 +13848,214,12,258363,12529 +13849,214,12,9296,8685 +13850,214,12,274857,63127 +13851,265,12,965,11035 +13852,214,12,10033,62241 +13853,214,12,276401,1167896 +13854,283,12,9541,2952 +13855,214,12,662,2304 +13856,163,12,17209,1472333 +13857,214,12,21828,11651 +13858,70,12,30363,5268 +13859,214,12,270400,17530 +13860,283,12,1995,20540 +13861,214,12,278334,60864 +13862,283,12,99579,4406 +13863,389,12,9593,1877147 +13864,322,12,117,238673 +13865,265,12,231145,555666 +13866,214,12,10604,65843 +13867,265,12,3989,34523 +13868,283,12,19901,37281 +13869,163,12,4982,5286 +13870,265,12,43912,57309 +13871,214,12,72313,48964 +13872,214,12,27085,95331 +13873,271,12,36245,9749 +13874,214,12,81120,591013 +13875,214,12,64627,50125 +13876,283,12,3989,7903 +13877,163,12,402612,1853697 +13878,133,3,129229,1088721 +13879,214,12,27346,44765 +13880,283,12,2887,1480294 +13881,214,12,336691,1547701 +13882,214,12,10400,13563 +13883,214,12,53231,1004059 +13884,214,12,254918,1475280 +13885,214,12,70666,8557 +13886,300,12,9946,1186326 +13887,214,12,36194,32299 +13888,214,12,93676,9233 +13889,70,12,401164,1817415 +13890,265,12,11397,59960 +13891,283,12,13668,3965 +13892,283,12,9819,6493 +13893,214,12,339312,1464980 +13894,283,12,38356,2215 +13895,214,12,76012,30055 +13896,214,12,329724,1055900 +13897,283,12,42941,60282 +13898,70,12,94874,1526867 +13899,214,12,23515,230097 +13900,214,12,119433,65918 +13901,214,12,11056,17083 +13902,70,12,173205,1852940 +13903,214,12,411013,1116251 +13904,214,12,100270,1106899 +13905,214,12,38157,71957 +13906,322,12,18317,1529528 +13907,214,12,118737,930953 +13908,163,12,14,2152 +13909,322,12,6972,1401743 +13910,265,12,3682,135 +13911,283,12,51209,168147 +13912,315,12,3059,8814 +13913,265,12,3563,11772 +13914,214,12,8954,6468 +13915,70,12,71700,1650545 +13916,265,12,10596,45830 +13917,107,12,284053,1653682 +13918,265,12,381015,61134 +13919,271,12,11880,1424927 +13920,265,12,10204,1387774 +13921,214,12,18530,37086 +13922,70,12,49158,1343809 +13923,322,12,13849,1376810 +13924,265,12,369820,1260041 +13925,283,12,177677,1113 +13926,127,3,383538,1851888 +13927,214,12,20361,1470168 +13928,393,12,196359,1533529 +13929,214,12,5289,1141528 +13930,389,12,49009,6870 +13931,214,12,356500,56020 +13932,214,12,30492,82859 +13933,265,12,75174,1046154 +13934,214,12,255343,967604 +13935,214,12,10129,14614 +13936,283,12,17209,31631 +13937,214,12,29352,103612 +13938,214,12,352025,4697 +13939,214,12,390,5267 +13940,163,12,244458,28961 +13941,322,12,13483,1402081 +13942,214,12,49009,30805 +13943,214,12,8398,54844 +13944,214,12,469172,1862611 +13945,214,12,337107,52349 +13946,265,12,340101,1287465 +13947,265,12,8247,54163 +13948,283,12,408509,1144124 +13949,70,12,20312,1424446 +13950,265,12,9943,60702 +13951,265,12,16171,34639 +13952,214,12,182127,1296142 +13953,214,12,167583,32309 +13954,214,12,66193,1195346 +13955,372,12,244458,10899 +13956,214,12,316042,4583 +13957,283,12,72207,546 +13958,70,12,43855,95862 +13959,214,12,417870,31121 +13960,214,12,38718,1152 +13961,265,12,192623,1198712 +13962,163,12,403119,1060635 +13963,265,12,137654,33341 +13964,265,12,435,15365 +13965,214,12,315465,237364 +13966,214,12,26505,59 +13967,214,12,43432,109356 +13968,7,3,339403,1635337 +13969,303,3,337339,1357064 +13970,283,12,196359,494 +13971,214,12,43385,10149 +13972,265,12,9900,41330 +13973,283,12,36657,3276 +13974,214,12,72251,946129 +13975,283,12,402672,1674918 +13976,214,12,1984,20413 +13977,265,12,1833,19317 +13978,214,12,10333,10400 +13979,300,12,119409,1631195 +13980,214,12,345922,1213603 +13981,265,12,218784,63291 +13982,214,12,190352,103926 +13983,214,12,249021,30053 +13984,163,12,284564,1095321 +13985,214,12,96713,2428 +13986,214,12,97794,565381 +13987,214,12,8064,34189 +13988,70,12,140607,16961 +13989,283,12,336890,1516101 +13990,315,12,15258,83344 +13991,163,12,42418,128105 +13992,265,12,40028,102429 +13993,265,12,197,8747 +13994,214,12,146233,47285 +13995,283,12,35026,4406 +13996,322,12,9475,1159966 +13997,214,12,209244,1187819 +13998,283,12,10440,999 +13999,214,12,318224,59978 +14000,214,12,8053,2176 +14001,214,12,1049,1202 +14002,214,12,82622,121218 +14003,265,12,4550,41288 +14004,214,12,194393,133434 +14005,163,12,40229,1477834 +14006,265,12,76059,1125621 +14007,214,12,55544,67 +14008,265,12,193756,80245 +14009,271,12,43594,1686548 +14010,214,12,10071,62828 +14011,265,12,39867,72663 +14012,252,3,339403,1635328 +14013,214,12,313074,1206105 +14014,214,12,28323,100421 +14015,265,12,330115,994455 +14016,214,12,21629,1242638 +14017,214,12,227975,1701838 +14018,393,12,354859,1782424 +14019,70,12,11017,20821 +14020,214,12,946,11783 +14021,283,12,14372,597 +14022,271,12,229610,121047 +14023,283,12,22682,1817061 +14024,214,12,81182,1530232 +14025,271,12,277778,1422966 +14026,214,12,13777,75288 +14027,372,12,10077,42504 +14028,214,12,336149,1581196 +14029,214,12,1595,17846 +14030,214,12,301325,1382446 +14031,214,12,10708,6040 +14032,265,12,10050,34883 +14033,214,12,19342,51656 +14034,214,12,11328,21183 +14035,163,12,243568,226533 +14036,214,12,257344,20818 +14037,283,12,16164,3192 +14038,231,12,336890,1206448 +14039,265,12,11633,929976 +14040,214,12,31417,128482 +14041,300,12,59115,65243 +14042,214,12,36737,116273 +14043,214,12,18646,9055 +14044,214,12,31021,1016455 +14045,214,12,13929,1472578 +14046,283,12,61527,4023 +14047,265,12,40041,15196 +14048,322,12,2105,1724864 +14049,214,12,10524,68373 +14050,265,12,10333,64842 +14051,214,12,301875,41896 +14052,214,12,293970,957566 +14053,265,12,40466,17209 +14054,214,12,266856,948648 +14055,214,12,209293,933029 +14056,265,12,14613,10850 +14057,318,12,284564,1836962 +14058,214,12,69346,88802 +14059,214,12,46797,353604 +14060,393,12,302026,1570581 +14061,283,12,11880,8313 +14062,144,12,8470,936321 +14063,322,12,238589,1345272 +14064,372,12,21214,938074 +14065,214,12,280617,1035398 +14066,265,12,246655,9032 +14067,322,12,62630,1415999 +14068,265,12,11788,70501 +14069,214,12,15936,38270 +14070,214,12,415633,1322395 +14071,214,12,79735,4123 +14072,214,12,8816,3868 +14073,214,12,655,2304 +14074,214,12,139244,2942 +14075,372,12,50225,59922 +14076,265,12,135679,1238136 +14077,214,12,405473,43147 +14078,265,12,32338,21180 +14079,315,12,46145,178267 +14080,214,12,153518,1011957 +14081,214,12,345925,1276565 +14082,292,3,339403,1383562 +14083,163,12,31021,88202 +14084,214,12,63401,3779 +14085,283,12,30082,2952 +14086,283,12,405473,983911 +14087,214,12,14983,77662 +14088,265,12,43385,98968 +14089,283,12,2567,6997 +14090,372,12,37725,1346141 +14091,283,12,300669,928272 +14092,214,12,197210,1390796 +14093,214,12,122857,56032 +14094,214,12,284052,10850 +14095,70,12,1278,69883 +14096,283,12,99,1120106 +14097,214,12,12255,71956 +14098,214,12,43868,8502 +14099,265,12,62764,74429 +14100,214,12,41402,1105708 +14101,265,12,263115,10570 +14102,214,12,308,4448 +14103,214,12,9753,59394 +14104,214,12,204839,12477 +14105,214,12,113520,1305281 +14106,271,12,12273,1705308 +14107,265,12,403119,59839 +14108,214,12,213983,1797857 +14109,265,12,264644,43144 +14110,283,12,277355,53680 +14111,70,12,107073,1481502 +14112,265,12,34512,136974 +14113,315,12,634,9148 +14114,271,12,290316,1646866 +14115,214,12,10539,1899 +14116,283,12,60599,15426 +14117,214,12,12422,583926 +14118,271,12,86472,1853117 +14119,322,12,635,3184 +14120,214,12,11636,46321 +14121,214,12,29907,92905 +14122,214,12,14126,2146 +14123,214,12,4547,508 +14124,265,12,9472,57635 +14125,315,12,21927,1416944 +14126,265,12,89008,1105485 +14127,265,12,8672,54901 +14128,214,12,37779,935702 +14129,107,12,293167,1683374 +14130,70,12,13380,15224 +14131,214,12,361018,1513531 +14132,283,12,308,2242 +14133,214,12,373397,560272 +14134,283,12,13437,60055 +14135,214,12,13792,75548 +14136,214,12,259975,161309 +14137,389,12,10865,1552880 +14138,283,12,39875,1390233 +14139,214,12,38303,945213 +14140,283,12,44115,4249 +14141,214,12,270383,71287 +14142,372,12,329440,954164 +14143,70,12,103332,1462314 +14144,214,12,60599,6409 +14145,265,12,428687,1731669 +14146,163,12,320736,1425402 +14147,283,12,9438,51557 +14148,265,12,403119,1639168 +14149,214,12,48677,8878 +14150,163,12,97206,1341508 +14151,214,12,20648,37000 +14152,214,12,61225,20801 +14153,214,12,4520,11181 +14154,214,12,58886,228584 +14155,265,12,341077,1316001 +14156,265,12,21371,1102571 +14157,318,12,9470,1758851 +14158,265,12,11096,10570 +14159,283,12,288977,1530755 +14160,283,12,10087,23828 +14161,214,12,315465,1590927 +14162,283,12,15045,12971 +14163,265,12,11058,67975 +14164,214,12,122857,1099072 +14165,283,12,227156,5914 +14166,283,12,63706,32741 +14167,265,12,42267,1500629 +14168,322,12,435,1392114 +14169,271,12,77459,1804240 +14170,70,12,329712,7288 +14171,214,12,24634,396635 +14172,265,12,335778,1494760 +14173,283,12,297762,1113 +14174,322,12,243935,1414951 +14175,318,12,1481,1844355 +14176,283,12,128081,2678 +14177,214,12,83718,4898 +14178,214,12,95169,8500 +14179,214,12,83770,20488 +14180,214,12,167262,7169 +14181,214,12,5551,29525 +14182,283,12,45562,3823 +14183,214,12,1991,2294 +14184,214,12,10659,24120 +14185,393,12,22477,2242 +14186,265,12,18387,58103 +14187,214,12,108726,1304541 +14188,372,12,43432,592336 +14189,265,12,50838,17423 +14190,214,12,2929,239027 +14191,283,12,70074,1014920 +14192,265,12,39102,122194 +14193,214,12,91679,1717751 +14194,315,12,55720,1536630 +14195,214,12,72545,9543 +14196,214,12,414977,1168145 +14197,214,12,28155,96308 +14198,265,12,84284,2047 +14199,265,12,63144,1624603 +14200,283,12,263115,1176345 +14201,283,12,76411,6347 +14202,107,12,2613,112617 +14203,283,12,19176,5328 +14204,265,12,764,7623 +14205,214,12,14945,26756 +14206,214,12,169758,233313 +14207,163,12,337104,1533424 +14208,214,12,10096,18322 +14209,214,12,180305,964768 +14210,214,12,1819,887 +14211,265,12,15379,57154 +14212,283,12,121674,1302 +14213,271,12,109439,14753 +14214,214,12,319993,1425608 +14215,265,12,62967,26015 +14216,214,12,1896,19808 +14217,214,12,76411,170940 +14218,214,12,1443,5379 +14219,265,12,16058,79113 +14220,283,12,340616,6030 +14221,372,12,322518,1046459 +14222,283,12,16077,62778 +14223,265,12,257344,1106516 +14224,358,12,27042,97012 +14225,372,12,219466,79854 +14226,214,12,39276,16411 +14227,214,12,22803,13927 +14228,214,12,79521,138178 +14229,283,12,20312,2324 +14230,265,12,300667,59839 +14231,283,12,202214,1362711 +14232,265,12,51955,932173 +14233,318,12,11812,113854 +14234,214,12,200,2383 +14235,70,12,29786,1559470 +14236,214,12,12617,73258 +14237,393,12,10440,15426 +14238,265,12,10033,62238 +14239,265,12,16320,4054 +14240,283,12,31083,2953 +14241,214,12,38732,68083 +14242,283,12,64944,1895762 +14243,389,12,773,1646349 +14244,265,12,87826,11655 +14245,214,12,448992,237666 +14246,214,12,243940,1525142 +14247,265,12,284289,20355 +14248,214,12,7233,29015 +14249,214,12,354287,20458 +14250,265,12,20287,3986 +14251,265,12,12122,71344 +14252,265,12,39415,35559 +14253,214,12,9753,59003 +14254,214,12,12113,578 +14255,214,12,65002,67958 +14256,214,12,16151,79687 +14257,283,12,12573,1484 +14258,214,12,79094,259027 +14259,214,12,395992,29018 +14260,214,12,2750,173 +14261,163,12,337104,1681846 +14262,372,12,17209,56839 +14263,214,12,274483,1367026 +14264,300,12,20174,85771 +14265,214,12,104528,1318388 +14266,271,12,408381,1657571 +14267,214,12,338,1073 +14268,163,12,26636,1055275 +14269,214,12,62211,7880 +14270,214,12,94811,4123 +14271,70,12,76333,1283762 +14272,70,12,127380,1123360 +14273,214,12,11930,4017 +14274,265,12,15092,52790 +14275,271,12,7454,1407662 +14276,214,12,7304,11091 +14277,265,12,399106,7879 +14278,214,12,14916,140249 +14279,265,12,108391,1044079 +14280,265,12,327383,1355884 +14281,283,12,15239,1355594 +14282,265,12,393562,1676028 +14283,265,12,10008,61930 +14284,283,12,9593,2874 +14285,214,12,13480,1242160 +14286,315,12,51209,227228 +14287,214,12,140894,1249932 +14288,271,12,129229,1088725 +14289,214,12,22140,1659151 +14290,214,12,353979,65643 +14291,214,12,1271,11420 +14292,214,12,385750,1603186 +14293,214,12,11570,13784 +14294,70,12,22307,1432798 +14295,410,12,395992,1616432 +14296,214,12,2107,14942 +14297,163,12,12994,66488 +14298,214,12,44001,11783 +14299,214,12,9066,56886 +14300,214,12,15613,51612 +14301,214,12,47955,7723 +14302,265,12,1966,19772 +14303,214,12,64605,82862 +14304,372,12,10867,1343811 +14305,271,12,5413,43161 +14306,265,12,325385,55119 +14307,214,12,8064,53853 +14308,214,12,23966,96323 +14309,214,12,54523,1086905 +14310,283,12,330115,1155432 +14311,283,12,100275,1035176 +14312,214,12,25142,1264276 +14313,214,12,257331,1164613 +14314,70,12,66881,1204518 +14315,271,12,116312,1489869 +14316,283,12,1452,3276 +14317,271,12,352025,579046 +14318,214,12,20174,102429 +14319,214,12,42499,1458959 +14320,214,12,12622,31077 +14321,214,12,410118,1099354 +14322,214,12,277839,1055806 +14323,283,12,13542,18457 +14324,214,12,2288,8406 +14325,214,12,139455,57857 +14326,265,12,23397,114964 +14327,271,12,32868,1300341 +14328,372,12,246860,1423726 +14329,163,12,2001,80788 +14330,214,12,172847,1104235 +14331,214,12,94204,1076581 +14332,214,12,121401,1597833 +14333,271,12,15472,1102106 +14334,283,12,26180,21374 +14335,214,12,128169,112751 +14336,70,12,39578,1704938 +14337,214,12,296626,97901 +14338,70,12,362703,1560224 +14339,214,12,14522,63614 +14340,214,12,301228,1519835 +14341,300,12,14873,1835773 +14342,214,12,10703,66764 +14343,214,12,75761,287668 +14344,283,12,11524,3176 +14345,214,12,12221,73757 +14346,214,12,104374,1309330 +14347,283,12,424488,5328 +14348,214,12,362154,1210237 +14349,214,12,30022,105570 +14350,163,12,101325,1560967 +14351,214,12,122,108 +14352,144,12,47404,39761 +14353,393,12,10204,1473182 +14354,163,12,2989,1448343 +14355,265,12,46885,12477 +14356,163,12,85230,222738 +14357,265,12,16374,40312 +14358,265,12,10714,66908 +14359,283,12,2288,171297 +14360,214,12,175822,47674 +14361,144,12,37581,1583004 +14362,214,12,11943,21024 +14363,214,12,8588,6371 +14364,393,12,157843,1122557 +14365,283,12,82696,6347 +14366,214,12,174611,1285845 +14367,265,12,9835,15306 +14368,265,12,10950,4767 +14369,283,12,83802,16516 +14370,214,12,10594,57029 +14371,214,12,408755,1660978 +14372,214,12,84185,21807 +14373,265,12,58411,8858 +14374,265,12,24709,361946 +14375,271,12,21927,1416943 +14376,214,12,8467,7408 +14377,214,12,1966,1152 +14378,265,12,310137,1537534 +14379,283,12,60281,234948 +14380,214,12,300,4276 +14381,286,3,76059,1125623 +14382,286,3,437830,1329072 +14383,214,12,38765,115484 +14384,163,12,8204,140248 +14385,214,12,97683,1102512 +14386,214,12,10265,64489 +14387,358,12,415542,1688260 +14388,214,12,62764,11091 +14389,214,12,16214,16475 +14390,214,12,82654,62758 +14391,283,12,1595,2242 +14392,393,12,6947,1017377 +14393,214,12,302699,59421 +14394,214,12,29101,19638 +14395,214,12,294254,1257754 +14396,214,12,24273,54474 +14397,265,12,11517,71424 +14398,214,12,98566,19501 +14399,214,12,9950,3658 +14400,283,12,2965,23905 +14401,322,12,13483,1402083 +14402,265,12,97206,66488 +14403,265,12,49940,6334 +14404,283,12,322,423 +14405,214,12,22477,3658 +14406,265,12,307081,62640 +14407,214,12,25507,96255 +14408,70,12,22803,1547028 +14409,265,12,31264,136405 +14410,214,12,6947,136 +14411,214,12,21135,9750 +14412,214,12,11321,2888 +14413,214,12,35554,120128 +14414,265,12,8847,56078 +14415,214,12,8619,65043 +14416,283,12,180576,12435 +14417,214,12,183412,1003014 +14418,318,12,461955,1833830 +14419,300,12,9893,60070 +14420,214,12,42517,102641 +14421,265,12,15661,89213 +14422,372,12,13823,75796 +14423,214,12,54384,888974 +14424,393,12,263115,1757620 +14425,265,12,9032,19292 +14426,322,12,297762,1824280 +14427,214,12,4986,6846 +14428,214,12,325385,132792 +14429,265,12,295964,65559 +14430,214,12,354859,959332 +14431,214,12,48949,40147 +14432,214,12,424014,1306691 +14433,214,12,18897,1125598 +14434,265,12,16131,11657 +14435,214,12,147590,548474 +14436,214,12,323426,85893 +14437,283,12,72545,60503 +14438,214,12,63838,1596109 +14439,214,12,9572,17085 +14440,393,12,177677,52456 +14441,214,12,207641,100369 +14442,372,12,35026,55099 +14443,214,12,2675,11614 +14444,214,12,10534,27148 +14445,283,12,308174,124693 +14446,70,12,74585,113702 +14447,265,12,336011,142272 +14448,214,12,376394,1418929 +14449,214,12,38404,120327 +14450,214,12,89720,115369 +14451,214,12,378441,1362645 +14452,214,12,34623,29098 +14453,214,12,294652,65595 +14454,271,12,93856,1409868 +14455,214,12,3780,18604 +14456,265,12,11442,66203 +14457,163,12,38965,154078 +14458,265,12,10004,61827 +14459,163,12,277355,1462815 +14460,214,12,9624,2621 +14461,265,12,19203,84348 +14462,214,12,288788,94744 +14463,176,3,71266,1705078 +14464,214,12,244,3239 +14465,214,12,4307,93 +14466,271,12,20842,147092 +14467,265,12,41283,56281 +14468,283,12,32166,62778 +14469,393,12,16164,1399072 +14470,214,12,13954,1191203 +14471,283,12,11415,31464 +14472,393,12,19255,1544546 +14473,214,12,248639,4123 +14474,214,12,201724,58206 +14475,214,12,8358,23779 +14476,214,12,317,4646 +14477,214,12,8847,18533 +14478,283,12,317144,1414168 +14479,163,12,361183,1126741 +14480,214,12,69903,1482064 +14481,214,12,253235,3026 +14482,78,3,337339,1738113 +14483,265,12,15982,3804 +14484,214,12,216580,1105832 +14485,214,12,8340,1566430 +14486,265,12,9396,57147 +14487,214,12,30198,635 +14488,372,12,277355,1017343 +14489,283,12,19255,2242 +14490,144,12,10204,993814 +14491,265,12,12720,73681 +14492,144,12,84823,1620087 +14493,372,12,263472,1714325 +14494,214,12,30644,190257 +14495,283,12,397717,5669 +14496,214,12,13794,557904 +14497,372,12,30174,1763718 +14498,265,12,423988,1486817 +14499,265,12,381015,1320302 +14500,283,12,381073,1176357 +14501,163,12,8342,1743679 +14502,163,12,102222,226940 +14503,214,12,47900,1643228 +14504,322,12,20312,1424460 +14505,70,12,10733,6188 +14506,265,12,24821,1823335 +14507,265,12,339403,1564277 +14508,214,12,38437,30409 +14509,322,12,48145,11909 +14510,265,12,428355,65918 +14511,265,12,6973,51691 +14512,265,12,398633,1623929 +14513,214,12,413547,1718137 +14514,214,12,384682,19282 +14515,214,12,29100,13902 +14516,300,12,924,15224 +14517,283,12,10268,41585 +14518,214,12,75,512 +14519,271,12,198795,110697 +14520,214,12,43459,11963 +14521,214,12,10749,66642 +14522,163,12,11517,1476342 +14523,265,12,11354,6892 +14524,283,12,12128,36739 +14525,322,12,318553,1647031 +14526,265,12,323679,45407 +14527,214,12,85230,71957 +14528,265,12,356326,69016 +14529,214,12,230266,1290783 +14530,214,12,26149,35581 +14531,214,12,107811,955114 +14532,318,12,11645,72609 +14533,265,12,141,18350 +14534,265,12,413421,1785022 +14535,283,12,269173,238120 +14536,214,12,40744,58862 +14537,265,12,21742,1440786 +14538,265,12,110491,1049452 +14539,283,12,119409,17533 +14540,372,12,29083,102872 +14541,214,12,27523,2378 +14542,163,12,337107,958519 +14543,70,12,13667,1338104 +14544,318,12,29136,1835515 +14545,283,12,9785,60935 +14546,214,12,68684,1304290 +14547,214,12,86049,4123 +14548,214,12,1452,10953 +14549,214,12,30143,1694 +14550,214,12,203264,592353 +14551,214,12,1415,16957 +14552,214,12,76115,231713 +14553,283,12,8669,25365 +14554,214,12,102629,1031254 +14555,265,12,176,51032 +14556,322,12,9946,1432028 +14557,271,12,83015,1834946 +14558,283,12,76494,1034748 +14559,214,12,10847,18754 +14560,214,12,30690,29 +14561,163,12,278316,1333661 +14562,214,12,87516,21036 +14563,214,12,11096,42906 +14564,214,12,49074,584348 +14565,283,12,10050,6959 +14566,163,12,2486,10123 +14567,214,12,35052,43144 +14568,283,12,42532,1508356 +14569,214,12,11975,3219 +14570,265,12,320588,1637924 +14571,393,12,1966,1399072 +14572,322,12,7916,1438630 +14573,265,12,263341,20382 +14574,283,12,300187,436 +14575,283,12,413421,1708061 +14576,265,12,110001,37560 +14577,372,12,336004,60403 +14578,283,12,26510,982978 +14579,214,12,22029,1026618 +14580,214,12,31162,107721 +14581,265,12,5915,2228 +14582,214,12,63498,116608 +14583,265,12,14069,57305 +14584,283,12,176,2151 +14585,107,12,10708,1786674 +14586,214,12,22744,88972 +14587,318,12,2503,1537140 +14588,214,12,111582,89045 +14589,214,12,4441,37276 +14590,214,12,325555,1043961 +14591,322,12,116463,1206600 +14592,214,12,18673,83596 +14593,283,12,10047,1113 +14594,214,12,149870,78338 +14595,214,12,82327,72936 +14596,231,12,180383,51030 +14597,265,12,353979,1769037 +14598,214,12,3172,16731 +14599,163,12,35,1395352 +14600,214,12,39219,50577 +14601,214,12,42309,1301381 +14602,231,12,239018,1156991 +14603,214,12,152737,27562 +14604,265,12,8847,1547770 +14605,214,12,43241,101225 +14606,265,12,236737,979785 +14607,214,12,84636,1621311 +14608,265,12,397717,1677461 +14609,265,12,17622,1028848 +14610,214,12,102630,45377 +14611,283,12,17144,1436530 +14612,283,12,18045,1035176 +14613,214,12,15592,991669 +14614,214,12,270672,1400681 +14615,214,12,354859,20206 +14616,265,12,279598,1336142 +14617,315,12,773,1414546 +14618,214,12,21208,37162 +14619,265,12,149883,1047304 +14620,214,12,288952,1483948 +14621,214,12,194722,1192379 +14622,70,12,316654,1208685 +14623,283,12,392818,7438 +14624,322,12,266856,1465951 +14625,214,12,51739,1417 +14626,271,12,638,9390 +14627,214,12,253154,22115 +14628,214,12,54959,1008332 +14629,393,12,356500,1374469 +14630,283,12,333352,53346 +14631,300,12,54660,76160 +14632,271,12,425774,1707995 +14633,283,12,34193,597 +14634,322,12,9532,1441270 +14635,322,12,297762,1824282 +14636,214,12,340488,6818 +14637,214,12,10119,63747 +14638,160,3,464111,207818 +14639,214,12,7459,9339 +14640,214,12,27224,32790 +14641,163,12,246860,1146825 +14642,265,12,440508,1783551 +14643,214,12,10003,61820 +14644,214,12,126889,915 +14645,214,12,11103,69253 +14646,214,12,18801,10076 +14647,214,12,287903,11012 +14648,214,12,137321,23485 +14649,389,12,693,1564248 +14650,214,12,100770,69558 +14651,265,12,113038,5873 +14652,214,12,31863,2212 +14653,214,12,286709,59522 +14654,283,12,59935,28605 +14655,214,12,73984,115598 +14656,214,12,1717,20206 +14657,214,12,1125,9020 +14658,265,12,310137,1139529 +14659,214,12,405670,1853239 +14660,265,12,418990,556151 +14661,283,12,11688,7902 +14662,214,12,9427,57632 +14663,214,12,11979,46077 +14664,163,12,320588,1324840 +14665,265,12,42149,8429 +14666,70,12,20424,1616903 +14667,214,12,15016,1093160 +14668,163,12,11172,114308 +14669,214,12,23599,21636 +14670,358,12,11024,1546580 +14671,322,12,272693,1367681 +14672,271,12,44943,1035029 +14673,283,12,345918,1496825 +14674,283,12,2124,21812 +14675,214,12,14869,10952 +14676,214,12,1723,18854 +14677,265,12,29416,1427885 +14678,123,3,456781,237747 +14679,214,12,8270,10685 +14680,214,12,82999,113374 +14681,214,12,22682,29715 +14682,284,12,11024,1404755 +14683,300,12,11202,559904 +14684,214,12,369885,16729 +14685,283,12,177572,186605 +14686,265,12,369885,76482 +14687,265,12,323674,45407 +14688,214,12,170677,1038035 +14689,214,12,67,55486 +14690,214,12,18493,1049992 +14691,283,12,25388,10340 +14692,214,12,10865,12824 +14693,214,12,16092,79282 +14694,214,12,52440,84034 +14695,214,12,98066,999763 +14696,265,12,310133,1094150 +14697,214,12,3172,21478 +14698,265,12,140846,1113579 +14699,231,12,11247,63715 +14700,283,12,179826,236608 +14701,265,12,250574,27710 +14702,214,12,31522,3779 +14703,214,12,334,4770 +14704,265,12,366696,1769386 +14705,286,3,53945,37371 +14706,315,12,6977,1535737 +14707,214,12,222932,1452694 +14708,322,12,121674,1428928 +14709,163,12,302528,72954 +14710,283,12,25674,13585 +14711,214,12,283995,10850 +14712,265,12,336004,94047 +14713,265,12,3291,31519 +14714,283,12,322443,56639 +14715,283,12,49963,2952 +14716,283,12,25376,1084678 +14717,214,12,13495,16999 +14718,214,12,9629,18504 +14719,214,12,56599,7459 +14720,265,12,301804,1099261 +14721,214,12,10691,58084 +14722,265,12,9667,6891 +14723,70,12,48231,933134 +14724,214,12,14676,1129433 +14725,70,12,117534,279486 +14726,265,12,11950,71018 +14727,214,12,35572,53677 +14728,265,12,1690,52358 +14729,70,12,435,99665 +14730,265,12,5393,43094 +14731,322,12,38654,1405655 +14732,214,12,24731,51612 +14733,214,12,70074,18923 +14734,358,12,16876,49681 +14735,214,12,17175,75040 +14736,283,12,268920,2031 +14737,214,12,15036,27436 +14738,214,12,9589,58111 +14739,214,12,50647,22214 +14740,265,12,43753,129808 +14741,214,12,9428,5664 +14742,214,12,330770,1174345 +14743,299,12,384262,1805948 +14744,214,12,22267,1617 +14745,214,12,39875,21478 +14746,214,12,373247,1815262 +14747,287,3,64215,1354345 +14748,214,12,1294,10235 +14749,271,12,105509,1413568 +14750,214,12,14073,53677 +14751,265,12,62046,1287349 +14752,214,12,11537,65981 +14753,372,12,16239,108912 +14754,214,12,20075,85805 +14755,265,12,59678,11090 +14756,283,12,329865,6410 +14757,214,12,403,5706 +14758,265,12,64807,3305 +14759,322,12,6557,1546957 +14760,214,12,786,11652 +14761,265,12,25941,968155 +14762,214,12,9966,9615 +14763,214,12,69974,557666 +14764,214,12,44287,230355 +14765,265,12,9664,65456 +14766,265,12,63045,1056030 +14767,214,12,112961,947016 +14768,322,12,44943,1403420 +14769,265,12,25376,433332 +14770,283,12,109424,3501 +14771,265,12,37725,63931 +14772,265,12,43978,1695754 +14773,265,12,27358,235783 +14774,372,12,51881,148268 +14775,214,12,80713,1362764 +14776,214,12,7343,8562 +14777,214,12,403431,1873643 +14778,214,12,74777,583460 +14779,283,12,97630,25365 +14780,163,12,154972,1029044 +14781,214,12,86718,237607 +14782,283,12,4592,13585 +14783,70,12,17057,933697 +14784,265,12,7972,36616 +14785,70,12,66125,3050 +14786,214,12,77930,119665 +14787,227,12,8470,1584577 +14788,214,12,241593,1264282 +14789,389,12,243935,1414952 +14790,283,12,1890,7534 +14791,283,12,33016,12435 +14792,214,12,81225,584711 +14793,214,12,9951,60804 +14794,163,12,56906,51709 +14795,265,12,101325,1560948 +14796,214,12,42502,11963 +14797,214,12,122081,950644 +14798,265,12,1579,42006 +14799,214,12,4964,41076 +14800,214,12,9543,770 +14801,214,12,68097,27033 +14802,265,12,330115,1198712 +14803,283,12,10972,7495 +14804,163,12,58251,993751 +14805,214,12,2017,11369 +14806,214,12,12591,6893 +14807,283,12,308269,1447879 +14808,214,12,70800,362320 +14809,283,12,6038,1096443 +14810,214,12,274479,70701 +14811,163,12,29101,1125505 +14812,214,12,33339,518 +14813,265,12,79707,210389 +14814,322,12,410718,1697787 +14815,265,12,378441,1001668 +14816,70,12,244316,1426232 +14817,214,12,3784,1201 +14818,214,12,11654,1929 +14819,283,12,28110,598 +14820,70,12,204839,44151 +14821,214,12,11131,154404 +14822,372,12,102629,992113 +14823,214,12,262454,9732 +14824,265,12,48885,99922 +14825,265,12,75300,463060 +14826,283,12,47112,7786 +14827,214,12,277558,939455 +14828,283,12,13505,2031 +14829,214,12,4550,1117874 +14830,283,12,283445,1543591 +14831,214,12,4613,38578 +14832,214,12,44896,16729 +14833,214,12,264644,43147 +14834,214,12,118957,1080781 +14835,163,12,8470,34856 +14836,265,12,9890,60011 +14837,214,12,213443,2439 +14838,283,12,1924,1263 +14839,214,12,2300,57601 +14840,214,12,40458,869 +14841,163,12,24363,1624607 +14842,214,12,3145,30700 +14843,214,12,140818,1167831 +14844,214,12,34231,1460022 +14845,214,12,3050,2043 +14846,214,12,76101,41650 +14847,265,12,245891,1413502 +14848,70,12,42494,1550437 +14849,265,12,157843,1486025 +14850,286,3,387886,1770591 +14851,214,12,195763,225057 +14852,265,12,78691,6476 +14853,271,12,2397,24512 +14854,214,12,289712,84348 +14855,214,12,41115,56247 +14856,214,12,9504,57754 +14857,265,12,946,14355 +14858,283,12,17654,1016177 +14859,271,12,27523,1663907 +14860,265,12,95015,1529469 +14861,265,12,2454,5544 +14862,283,12,112991,62778 +14863,265,12,9771,4507 +14864,372,12,254679,1831339 +14865,214,12,10041,62342 +14866,214,12,24918,1123040 +14867,70,12,40952,13668 +14868,214,12,118,20643 +14869,163,12,285270,1367911 +14870,283,12,40466,938123 +14871,214,12,7980,126 +14872,163,12,1911,61121 +14873,265,12,98557,1018703 +14874,265,12,262522,1460853 +14875,265,12,12683,40605 +14876,318,12,11618,1640410 +14877,358,12,9882,1748870 +14878,214,12,125520,6111 +14879,322,12,241239,1468593 +14880,283,12,354287,6410 +14881,283,12,64678,1516455 +14882,214,12,332741,229832 +14883,283,12,413882,1708061 +14884,214,12,37291,54893 +14885,214,12,10603,18250 +14886,214,12,24709,197227 +14887,70,12,8204,1477155 +14888,214,12,310135,1397790 +14889,214,12,4497,37494 +14890,265,12,346473,562673 +14891,214,12,46697,57130 +14892,214,12,42837,13902 +14893,283,12,921,1423358 +14894,300,12,18,8387 +14895,214,12,10097,63354 +14896,214,12,82624,1127912 +14897,372,12,27549,61113 +14898,265,12,300155,1463127 +14899,214,12,53209,29962 +14900,214,12,109439,57130 +14901,283,12,1448,5489 +14902,283,12,300187,970836 +14903,214,12,25941,963336 +14904,348,12,8470,1447161 +14905,214,12,310135,1166608 +14906,265,12,80280,17083 +14907,214,12,201085,10828 +14908,214,12,381691,979284 +14909,214,12,5590,26013 +14910,283,12,20919,62357 +14911,214,12,333484,4504 +14912,271,12,38269,1120179 +14913,265,12,62764,53476 +14914,163,12,257450,1496388 +14915,286,3,405882,1478019 +14916,265,12,9030,51030 +14917,214,12,14931,16294 +14918,283,12,19898,20540 +14919,214,12,12220,16853 +14920,214,12,13440,4855 +14921,265,12,42683,4123 +14922,214,12,252680,909318 +14923,214,12,24420,1279374 +14924,214,12,5967,26011 +14925,265,12,102629,1091 +14926,265,12,401164,1615422 +14927,283,12,44943,495 +14928,265,12,202241,16863 +14929,315,12,17295,1446515 +14930,214,12,84340,1279839 +14931,372,12,312831,1532261 +14932,214,12,315841,544325 +14933,214,12,31083,92905 +14934,214,12,11677,49043 +14935,70,12,277710,1562469 +14936,214,12,384682,1229515 +14937,214,12,210653,974548 +14938,214,12,134368,56109 +14939,214,12,63281,937666 +14940,265,12,59962,11652 +14941,265,12,195796,1334507 +14942,214,12,11113,5728 +14943,265,12,312831,1276531 +14944,214,12,277237,590074 +14945,214,12,403130,1642273 +14946,214,12,44591,121227 +14947,214,12,134201,1234931 +14948,283,12,65674,10340 +14949,283,12,356326,233668 +14950,214,12,13480,1126367 +14951,214,12,4538,5655 +14952,214,12,39407,30129 +14953,265,12,25520,56994 +14954,265,12,12477,72418 +14955,214,12,457,6242 +14956,214,12,28482,100909 +14957,265,12,51881,106723 +14958,283,12,7445,1333902 +14959,284,12,9472,1471304 +14960,265,12,32657,58190 +14961,214,12,84185,1167349 +14962,214,12,365447,1607507 +14963,214,12,638,5604 +14964,214,12,334298,70110 +14965,283,12,312831,1108835 +14966,265,12,5206,1174 +14967,265,12,13169,53895 +14968,214,12,2084,21342 +14969,286,3,122487,3769 +14970,214,12,844,607 +14971,214,12,60106,28791 +14972,163,12,331962,121693 +14973,214,12,2140,59 +14974,70,12,9613,1427915 +14975,214,12,332286,1444883 +14976,265,12,14254,21035 +14977,214,12,321779,1810621 +14978,265,12,154972,16672 +14979,283,12,244580,961165 +14980,283,12,8292,54606 +14981,214,12,15807,4123 +14982,214,12,56212,7592 +14983,271,12,53714,932500 +14984,244,3,33586,75705 +14985,265,12,15749,63777 +14986,214,12,12767,6111 +14987,214,12,73262,931027 +14988,214,12,276906,1331164 +14989,271,12,12276,1355 +14990,214,12,227700,59521 +14991,214,12,35,193307 +14992,271,12,69974,557674 +14993,214,12,331962,1443611 +14994,214,12,9690,4526 +14995,70,12,43114,1009 +14996,214,12,72710,566958 +14997,265,12,121674,1391791 +14998,318,12,45013,1818062 +14999,283,12,31397,1408462 +15000,283,12,136582,41025 +15001,214,12,4641,38696 +15002,265,12,43967,555158 +15003,214,12,246415,1439376 +15004,214,12,3513,32035 +15005,214,12,116488,1326173 +15006,214,12,37672,1072002 +15007,283,12,89492,41080 +15008,214,12,131861,120052 +15009,283,12,99861,7232 +15010,265,12,122081,1027025 +15011,214,12,6933,51448 +15012,265,12,376570,1560026 +15013,283,12,10916,46916 +15014,214,12,340103,18953 +15015,271,12,194853,229254 +15016,214,12,287628,1707979 +15017,265,12,19754,1258013 +15018,214,12,102913,1082877 +15019,214,12,9756,63959 +15020,163,12,324440,1497346 +15021,163,12,22803,1428267 +15022,163,12,634,9151 +15023,265,12,323675,65780 +15024,214,12,407448,1385649 +15025,271,12,68822,45444 +15026,214,12,339312,1464981 +15027,127,3,339403,1276819 +15028,163,12,28774,64054 +15029,214,12,463800,1833825 +15030,309,12,9593,1002581 +15031,214,12,2046,68602 +15032,271,12,444713,1714236 +15033,265,12,12538,59839 +15034,393,12,340275,1540645 +15035,214,12,38356,3183 +15036,283,12,46924,23580 +15037,214,12,322518,124321 +15038,265,12,129530,83480 +15039,214,12,13655,130569 +15040,214,12,7459,10905 +15041,265,12,10466,488 +15042,214,12,24254,18165 +15043,214,12,33788,21036 +15044,265,12,9272,57095 +15045,283,12,333663,60665 +15046,265,12,781,3709 +15047,214,12,9993,61619 +15048,214,12,76397,254335 +15049,214,12,258480,9021 +15050,265,12,76333,968298 +15051,322,12,10590,1405427 +15052,265,12,10066,1296 +15053,214,12,11677,70184 +15054,214,12,121636,24939 +15055,214,12,31993,138407 +15056,70,12,5123,1781846 +15057,214,12,300090,560279 +15058,214,12,19203,84349 +15059,271,12,329712,646785 +15060,283,12,42430,1776864 +15061,372,12,231145,1023606 +15062,163,12,284564,1680437 +15063,214,12,10008,61927 +15064,283,12,72431,957282 +15065,265,12,135313,1037095 +15066,214,12,1999,1777 +15067,214,12,37710,1381649 +15068,283,12,8617,59932 +15069,393,12,365942,1532605 +15070,283,12,2047,21517 +15071,271,12,31042,118293 +15072,283,12,60994,20170 +15073,283,12,14878,21691 +15074,283,12,601,599 +15075,214,12,46387,110225 +15076,300,12,105,68939 +15077,214,12,41357,11790 +15078,265,12,9514,56477 +15079,322,12,297762,1824281 +15080,265,12,1058,15208 +15081,214,12,30995,107476 +15082,286,3,442752,936897 +15083,265,12,17895,1489518 +15084,214,12,126319,1292187 +15085,214,12,6980,17309 +15086,214,12,189,1383010 +15087,265,12,82696,51613 +15088,160,3,154972,16688 +15089,144,12,39415,1397365 +15090,214,12,113178,1032783 +15091,283,12,9297,1324 +15092,214,12,59962,46080 +15093,300,12,418437,113080 +15094,358,12,9568,68310 +15095,214,12,40229,68770 +15096,214,12,817,550 +15097,283,12,9532,561 +15098,163,12,84284,1550238 +15099,163,12,336011,1546950 +15100,214,12,76170,584598 +15101,214,12,177677,56737 +15102,214,12,42684,128636 +15103,393,12,2613,1800145 +15104,283,12,12103,2952 +15105,318,12,381015,1475258 +15106,389,12,8470,1553022 +15107,221,3,33586,1815006 +15108,283,12,26422,1901700 +15109,214,12,17287,1273394 +15110,214,12,283701,73395 +15111,244,3,154972,1755272 +15112,214,12,1963,1123134 +15113,214,12,246415,1439378 +15114,214,12,149509,1027550 +15115,214,12,72105,52139 +15116,265,12,423988,1627248 +15117,214,12,131689,74826 +15118,214,12,194,2404 +15119,163,12,43089,1375941 +15120,214,12,43231,2378 +15121,283,12,256962,8864 +15122,171,3,337339,1738136 +15123,214,12,356758,1133329 +15124,283,12,433244,1451541 +15125,265,12,9993,41374 +15126,265,12,14868,77725 +15127,214,12,248698,1906518 +15128,214,12,75233,79970 +15129,389,12,15653,1767059 +15130,163,12,9095,8374 +15131,214,12,13788,54843 +15132,283,12,17209,62876 +15133,214,12,70670,559204 +15134,214,12,266433,1317872 +15135,283,12,41714,1469625 +15136,389,12,638,9392 +15137,70,12,68737,328645 +15138,214,12,119213,5379 +15139,70,12,71120,100506 +15140,265,12,398633,1578815 +15141,318,12,9946,60528 +15142,372,12,339530,1405224 +15143,70,12,17590,1616199 +15144,70,12,352327,1491842 +15145,214,12,26689,51702 +15146,265,12,77877,1296 +15147,322,12,11812,1400385 +15148,214,12,259593,26024 +15149,214,12,62046,6890 +15150,265,12,285270,1103649 +15151,265,12,177572,7879 +15152,315,12,173153,1554971 +15153,214,12,84569,870728 +15154,214,12,10075,41828 +15155,214,12,361146,1171897 +15156,214,12,54660,1093 +15157,322,12,442752,1386186 +15158,214,12,14370,339 +15159,214,12,239519,95944 +15160,214,12,337104,1223306 +15161,214,12,13849,1273195 +15162,214,12,331962,33194 +15163,214,12,26954,97618 +15164,214,12,84185,1074666 +15165,193,12,414977,104668 +15166,214,12,40925,130850 +15167,271,12,197082,1362754 +15168,265,12,13792,75550 +15169,214,12,20174,85762 +15170,214,12,84397,129559 +15171,214,12,12089,25182 +15172,214,12,44115,965155 +15173,214,12,383538,1169157 +15174,214,12,12169,66852 +15175,315,12,45273,1404812 +15176,265,12,10476,1472168 +15177,283,12,254193,94470 +15178,265,12,13685,57572 +15179,231,12,9968,43382 +15180,265,12,39101,122194 +15181,271,12,25241,1765276 +15182,163,12,10948,67607 +15183,265,12,37725,1346143 +15184,300,12,954,1697623 +15185,214,12,77958,1029109 +15186,283,12,21786,63751 +15187,214,12,340027,1117873 +15188,214,12,422878,1508120 +15189,214,12,75204,5981 +15190,214,12,10796,42121 +15191,214,12,12112,20854 +15192,214,12,34560,38696 +15193,283,12,14128,1726801 +15194,283,12,289183,1841823 +15195,283,12,18098,21374 +15196,214,12,10900,67698 +15197,265,12,12516,488 +15198,265,12,28178,62238 +15199,283,12,1647,51557 +15200,271,12,39979,1743940 +15201,315,12,14128,1726808 +15202,283,12,31397,1408463 +15203,160,3,381015,1828332 +15204,214,12,212756,1225145 +15205,214,12,110323,54288 +15206,70,12,87514,113657 +15207,271,12,9982,1713393 +15208,315,12,5123,1599010 +15209,214,12,28384,3658 +15210,214,12,93492,56721 +15211,283,12,11547,232062 +15212,214,12,13477,12922 +15213,283,12,2300,3275 +15214,283,12,18897,966953 +15215,283,12,14534,6479 +15216,214,12,4285,4561 +15217,271,12,57419,1443782 +15218,265,12,43641,34934 +15219,214,12,39048,114337 +15220,26,12,2976,29210 +15221,372,12,297853,1520164 +15222,214,12,83346,564 +15223,214,12,158900,63747 +15224,214,12,78383,65243 +15225,372,12,83430,1129438 +15226,214,12,43342,18592 +15227,214,12,58878,10071 +15228,265,12,241258,991706 +15229,214,12,2565,664 +15230,265,12,5393,43093 +15231,265,12,22494,466 +15232,265,12,218778,93021 +15233,214,12,330418,1136780 +15234,265,12,44155,1161623 +15235,214,12,22897,17698 +15236,214,12,103758,63973 +15237,214,12,5491,18691 +15238,214,12,43089,29471 +15239,322,12,42045,1123794 +15240,393,12,297762,1717318 +15241,214,12,210940,1231953 +15242,324,3,419522,1534892 +15243,214,12,33586,1046010 +15244,214,12,16820,59948 +15245,265,12,51549,1634159 +15246,214,12,429200,1551350 +15247,283,12,35292,53346 +15248,214,12,10972,45119 +15249,318,12,13205,1815502 +15250,214,12,15940,78993 +15251,214,12,1443,17230 +15252,163,12,102632,233068 +15253,214,12,10336,60217 +15254,214,12,254679,1831338 +15255,70,12,11614,25319 +15256,214,12,160261,585261 +15257,283,12,16083,561 +15258,214,12,10204,35510 +15259,283,12,4644,41677 +15260,283,12,10724,3806 +15261,214,12,125520,1465049 +15262,214,12,88176,33172 +15263,107,12,157843,1907237 +15264,283,12,17074,34945 +15265,214,12,341689,37270 +15266,214,12,385750,963482 +15267,265,12,280092,999763 +15268,265,12,284564,1680438 +15269,214,12,9495,21085 +15270,214,12,8989,52042 +15271,283,12,3682,4023 +15272,214,12,9795,64166 +15273,214,12,9474,4986 +15274,214,12,257534,32168 +15275,214,12,8998,321 +15276,214,12,257344,19292 +15277,214,12,41402,12232 +15278,214,12,4248,35696 +15279,214,12,20941,2545 +15280,214,12,10033,5357 +15281,410,12,315837,1535105 +15282,214,12,57993,64114 +15283,70,12,71805,1644922 +15284,214,12,14217,20316 +15285,318,12,227306,1565126 +15286,265,12,425774,1707969 +15287,214,12,66984,2106 +15288,271,12,14811,952485 +15289,163,12,1647,1752653 +15290,214,12,24363,2184 +15291,214,12,84944,586231 +15292,265,12,14295,943824 +15293,265,12,24123,69170 +15294,214,12,69404,1336562 +15295,265,12,189197,27098 +15296,214,12,24645,92108 +15297,214,12,32600,8635 +15298,283,12,18282,51557 +15299,70,12,44502,19748 +15300,214,12,42149,32035 +15301,283,12,29787,1221 +15302,163,12,244610,1401003 +15303,231,12,111839,56546 +15304,283,12,14527,7800 +15305,287,3,64215,1354344 +15306,283,12,301875,1313484 +15307,318,12,42188,1831962 +15308,265,12,11531,26850 +15309,283,12,9968,1034748 +15310,214,12,214,2145 +15311,214,12,80193,149374 +15312,322,12,5289,1408197 +15313,393,12,16996,1532604 +15314,214,12,70864,1106798 +15315,214,12,436,5873 +15316,265,12,370755,27715 +15317,214,12,394822,2862 +15318,214,12,19688,60864 +15319,214,12,76788,567439 +15320,214,12,48205,23393 +15321,214,12,99,952 +15322,214,12,3587,376 +15323,214,12,307081,51613 +15324,214,12,76203,46588 +15325,214,12,77056,28754 +15326,265,12,3078,29341 +15327,214,12,572,7739 +15328,283,12,10665,1017236 +15329,265,12,11421,69373 +15330,265,12,134201,101767 +15331,13,12,15506,5657 +15332,214,12,47143,1590640 +15333,214,12,56601,111212 +15334,247,12,9716,1661540 +15335,214,12,44287,959084 +15336,214,12,17911,30053 +15337,265,12,338063,1581567 +15338,283,12,321528,34945 +15339,300,12,8870,1121617 +15340,271,12,10657,1215287 +15341,214,12,31915,57708 +15342,214,12,12584,72996 +15343,214,12,291865,1015890 +15344,214,12,351242,1273857 +15345,214,12,70322,89167 +15346,265,12,276906,1331169 +15347,214,12,68184,1795300 +15348,214,12,21208,1089142 +15349,214,12,22910,105084 +15350,214,12,2566,4402 +15351,65,3,339403,1635200 +15352,214,12,285840,1038000 +15353,214,12,46567,1008491 +15354,214,12,418029,1685030 +15355,410,12,419430,1616432 +15356,265,12,226188,995466 +15357,283,12,436,1624028 +15358,214,12,12171,60260 +15359,214,12,83079,136491 +15360,300,12,305127,1265320 +15361,214,12,78691,35087 +15362,214,12,5393,43085 +15363,265,12,696,3658 +15364,214,12,270774,930021 +15365,214,12,393134,42467 +15366,271,12,5289,46895 +15367,265,12,193756,1414048 +15368,70,12,16281,86058 +15369,283,12,72431,1316804 +15370,265,12,10008,61926 +15371,265,12,82865,138 +15372,214,12,32600,10520 +15373,214,12,4832,39648 +15374,70,12,42764,1766552 +15375,283,12,300654,1017377 +15376,283,12,280092,494 +15377,214,12,9877,9034 +15378,163,12,204839,167999 +15379,214,12,108972,120899 +15380,265,12,296524,10684 +15381,214,12,29345,102429 +15382,214,12,2124,21809 +15383,214,12,7085,18504 +15384,265,12,27526,59839 +15385,265,12,11328,69015 +15386,214,12,12763,24052 +15387,265,12,173467,20503 +15388,214,12,61988,21869 +15389,214,12,102197,1167225 +15390,265,12,52264,1063834 +15391,214,12,30666,57777 +15392,214,12,392271,35086 +15393,265,12,2977,43560 +15394,283,12,244117,1539388 +15395,214,12,31555,103668 +15396,214,12,244801,1111474 +15397,214,12,63825,238024 +15398,214,12,434873,1588833 +15399,214,12,312174,1400613 +15400,214,12,76059,1125620 +15401,265,12,8869,6046 +15402,214,12,33107,1458395 +15403,360,3,333354,1661030 +15404,214,12,6187,50516 +15405,322,12,10665,1814658 +15406,265,12,277710,1562474 +15407,214,12,302528,1320301 +15408,214,12,11377,24 +15409,163,12,56292,1106751 +15410,163,12,58251,42433 +15411,214,12,93676,1680459 +15412,214,12,10534,17398 +15413,265,12,48231,1030396 +15414,265,12,111839,69226 +15415,283,12,40562,3192 +15416,214,12,45184,30174 +15417,214,12,43938,1566006 +15418,214,12,101998,17424 +15419,265,12,9080,8859 +15420,214,12,45562,999546 +15421,322,12,22076,1398190 +15422,214,12,109441,3633 +15423,283,12,109424,1334463 +15424,283,12,16177,43640 +15425,214,12,5333,508 +15426,214,12,18495,1545405 +15427,214,12,16899,21677 +15428,265,12,3089,10535 +15429,265,12,311324,1174082 +15430,70,12,19209,138107 +15431,283,12,2666,859 +15432,214,12,40952,13663 +15433,214,12,4285,4525 +15434,214,12,297736,1374538 +15435,318,12,181533,1869368 +15436,214,12,72984,33009 +15437,283,12,343173,3501 +15438,265,12,44303,1470535 +15439,283,12,16296,65163 +15440,265,12,64807,16486 +15441,214,12,3053,31058 +15442,300,12,45013,61523 +15443,265,12,59961,17751 +15444,214,12,15013,46295 +15445,265,12,137093,40383 +15446,265,12,291865,1015889 +15447,214,12,73835,50629 +15448,214,12,37939,1309330 +15449,265,12,284053,57027 +15450,283,12,16999,997334 +15451,265,12,377447,105396 +15452,214,12,337,4896 +15453,214,12,74481,76813 +15454,265,12,9287,47041 +15455,214,12,33015,10520 +15456,214,12,109587,15256 +15457,214,12,46094,955583 +15458,214,12,35852,114831 +15459,265,12,202241,57427 +15460,318,12,266856,1878524 +15461,265,12,242090,82226 +15462,214,12,64215,1180432 +15463,322,12,11236,1430192 +15464,265,12,1271,54212 +15465,214,12,11373,15254 +15466,265,12,41733,37162 +15467,283,12,35651,72324 +15468,214,12,259728,5725 +15469,214,12,34806,51612 +15470,283,12,408220,1641642 +15471,326,3,126889,1247285 +15472,348,12,39979,1571354 +15473,214,12,201085,19770 +15474,265,12,219466,55418 +15475,271,12,65496,543844 +15476,283,12,183015,107323 +15477,283,12,10747,111994 +15478,214,12,27983,1495606 +15479,265,12,361750,63514 +15480,372,12,378485,1568630 +15481,283,12,20648,959742 +15482,107,12,78691,154022 +15483,214,12,78028,3094 +15484,283,12,19996,44146 +15485,214,12,71859,40148 +15486,265,12,15092,40513 +15487,283,12,1662,897 +15488,283,12,395883,1338387 +15489,283,12,255343,1190035 +15490,265,12,345925,1680440 +15491,265,12,85837,1017350 +15492,214,12,8669,1734780 +15493,322,12,157424,1408177 +15494,214,12,60935,15220 +15495,283,12,351065,7800 +15496,70,12,31146,672646 +15497,214,12,49524,11874 +15498,214,12,300487,1380788 +15499,372,12,405473,1532262 +15500,283,12,10691,20540 +15501,214,12,345003,1132612 +15502,214,12,230428,1464041 +15503,214,12,80276,1704832 +15504,214,12,72875,567324 +15505,265,12,307081,59839 +15506,265,12,13823,71192 +15507,214,12,26636,20665 +15508,214,12,31509,100036 +15509,315,12,2001,957566 +15510,214,12,15036,54171 +15511,265,12,664,2211 +15512,214,12,9366,5164 +15513,214,12,10075,62873 +15514,265,12,19294,3125 +15515,283,12,44801,5490 +15516,163,12,2105,21584 +15517,322,12,11024,1448620 +15518,214,12,598,8569 +15519,283,12,37917,423 +15520,283,12,6341,1221 +15521,265,12,10274,64660 +15522,372,12,25855,1489165 +15523,70,12,8247,142325 +15524,265,12,33250,1652741 +15525,214,12,11422,14523 +15526,265,12,73099,5981 +15527,214,12,3513,15111 +15528,265,12,7980,465 +15529,214,12,18638,83471 +15530,214,12,10379,21378 +15531,214,12,59726,63371 +15532,265,12,19819,4037 +15533,70,12,32609,6448 +15534,214,12,124470,1309 +15535,265,12,390296,1332307 +15536,214,12,13346,8305 +15537,283,12,337339,1383522 +15538,214,12,106112,2106 +15539,265,12,315465,78376 +15540,265,12,72912,1037912 +15541,214,12,345925,67795 +15542,214,12,8414,54892 +15543,214,12,43833,115373 +15544,372,12,24756,1140686 +15545,318,12,109439,1749905 +15546,265,12,44932,74274 +15547,214,12,325039,995456 +15548,265,12,11600,31515 +15549,214,12,709,69678 +15550,286,3,366170,1770713 +15551,271,12,321315,1620690 +15552,214,12,188161,19282 +15553,214,12,33792,2662 +15554,283,12,413421,1708062 +15555,70,12,356752,1841618 +15556,214,12,6552,50728 +15557,214,12,14286,84376 +15558,283,12,17669,23905 +15559,214,12,41110,78160 +15560,214,12,8471,52739 +15561,393,12,76600,1316586 +15562,265,12,9803,59344 +15563,284,12,202337,1404922 +15564,214,12,3638,33436 +15565,265,12,52696,844182 +15566,214,12,9443,58221 +15567,214,12,5172,16731 +15568,214,12,25919,64141 +15569,214,12,315882,1092597 +15570,265,12,193756,61123 +15571,214,12,238,457 +15572,214,12,5,2545 +15573,265,12,76333,17603 +15574,214,12,77864,1124934 +15575,283,12,11800,897 +15576,271,12,397422,1410302 +15577,214,12,18392,7719 +15578,265,12,3146,1189031 +15579,214,12,150065,1041944 +15580,214,12,4978,489 +15581,265,12,366170,1247786 +15582,283,12,24634,598 +15583,214,12,105077,1115255 +15584,214,12,153795,59233 +15585,214,12,25078,119027 +15586,163,12,57419,1443782 +15587,265,12,102629,1031260 +15588,265,12,70074,999763 +15589,214,12,370178,112679 +15590,283,12,15414,3501 +15591,163,12,341491,1027175 +15592,214,12,278334,66726 +15593,70,12,401164,1817414 +15594,283,12,118,1302 +15595,283,12,1125,1484536 +15596,322,12,2107,1672760 +15597,193,12,297853,1096408 +15598,283,12,857,2215 +15599,68,12,49199,21902 +15600,265,12,156,1174 +15601,144,12,118,1408848 +15602,214,12,110992,1050961 +15603,271,12,814,11381 +15604,214,12,11798,70524 +15605,283,12,59115,893948 +15606,265,12,30934,1351568 +15607,214,12,140825,11197 +15608,318,12,8869,7443 +15609,265,12,54845,1429523 +15610,265,12,50838,1015899 +15611,214,12,142989,1118138 +15612,300,12,29355,14715 +15613,214,12,435,6048 +15614,265,12,230179,951484 +15615,214,12,41963,60065 +15616,214,12,13842,56363 +15617,265,12,332567,1113479 +15618,214,12,76203,287 +15619,265,12,327389,122434 +15620,265,12,74,1087126 +15621,265,12,9846,59876 +15622,283,12,378018,1762252 +15623,214,12,3941,10149 +15624,214,12,1271,65377 +15625,214,12,45610,1053661 +15626,300,12,156711,1547760 +15627,300,12,419430,1125685 +15628,163,12,35292,948439 +15629,214,12,97614,28632 +15630,265,12,18890,664 +15631,214,12,11939,1497 +15632,214,12,33729,69946 +15633,214,12,284564,1571049 +15634,265,12,207270,1242988 +15635,265,12,9968,43384 +15636,265,12,30352,12840 +15637,265,12,11645,111743 +15638,265,12,9993,61075 +15639,70,12,9016,61416 +15640,163,12,252171,1454382 +15641,265,12,24746,62511 +15642,265,12,70074,28401 +15643,265,12,102222,1394058 +15644,214,12,284564,16848 +15645,372,12,400174,1365598 +15646,214,12,8882,72051 +15647,214,12,46931,1595164 +15648,214,12,8008,53848 +15649,127,3,339403,1399126 +15650,214,12,9951,60808 +15651,372,12,408381,1657548 +15652,214,12,10622,62416 +15653,318,12,311324,1687157 +15654,265,12,311291,64047 +15655,144,12,539,1574697 +15656,283,12,86829,1484 +15657,214,12,9966,61120 +15658,214,12,196235,1176350 +15659,265,12,9032,10570 +15660,300,12,18047,265751 +15661,300,12,1375,16654 +15662,265,12,340215,1630283 +15663,70,12,35052,19808 +15664,283,12,177047,5914 +15665,214,12,294651,1367187 +15666,265,12,26390,3658 +15667,214,12,8064,53847 +15668,214,12,635,7726 +15669,163,12,351211,83858 +15670,265,12,125521,126270 +15671,300,12,379019,1780140 +15672,265,12,34193,7690 +15673,214,12,18417,38416 +15674,163,12,388862,60584 +15675,127,3,383538,1851892 +15676,214,12,42619,14825 +15677,214,12,33673,10149 +15678,214,12,407,5591 +15679,214,12,19719,85100 +15680,214,12,9882,9181 +15681,265,12,16999,1305745 +15682,318,12,240913,1833926 +15683,214,12,15356,78137 +15684,214,12,811,12112 +15685,265,12,12309,66908 +15686,214,12,297702,1636841 +15687,107,12,378441,1797416 +15688,265,12,40804,19099 +15689,265,12,284052,57027 +15690,283,12,13507,10907 +15691,214,12,2262,2360 +15692,283,12,159128,94470 +15693,214,12,317,4648 +15694,283,12,10652,21517 +15695,214,12,103689,228521 +15696,265,12,337958,1371239 +15697,214,12,24094,97449 +15698,214,12,339994,1673675 +15699,265,12,40221,2653 +15700,214,12,48131,3056 +15701,265,12,1628,3524 +15702,286,3,66045,72420 +15703,214,12,285841,30587 +15704,265,12,275696,155945 +15705,283,12,31586,3275 +15706,214,12,301325,1382445 +15707,265,12,140032,91711 +15708,214,12,142402,1117099 +15709,265,12,32202,109064 +15710,265,12,4253,35785 +15711,214,12,147590,70676 +15712,70,12,27114,3238 +15713,283,12,31397,1408461 +15714,214,12,31911,982224 +15715,214,12,73194,8502 +15716,265,12,367735,1373057 +15717,265,12,59861,428915 +15718,214,12,10801,17080 +15719,214,12,11879,2093 +15720,214,12,49940,44886 +15721,214,12,450875,1244034 +15722,360,3,64215,1354333 +15723,70,12,118536,1021592 +15724,214,12,1647,4507 +15725,214,12,23128,110916 +15726,163,12,61035,1446125 +15727,214,12,47211,13833 +15728,265,12,275696,1155520 +15729,265,12,341689,1384715 +15730,265,12,9540,24757 +15731,214,12,430156,1177544 +15732,214,12,13483,13233 +15733,214,12,58372,60476 +15734,214,12,44502,36646 +15735,283,12,71805,146129 +15736,214,12,14088,1316316 +15737,265,12,11540,55330 +15738,214,12,15036,1089512 +15739,283,12,230428,13585 +15740,214,12,314371,146117 +15741,318,12,11472,1562443 +15742,283,12,1450,546 +15743,283,12,24363,2952 +15744,265,12,14505,1658499 +15745,214,12,10096,16158 +15746,214,12,786,11649 +15747,283,12,45273,46943 +15748,283,12,9457,5363 +15749,214,12,57419,1050842 +15750,265,12,40925,130852 +15751,265,12,459295,1688144 +15752,214,12,3164,30968 +15753,265,12,9900,11000 +15754,214,12,4983,28715 +15755,372,12,160324,60316 +15756,283,12,5881,119198 +15757,214,12,25376,71926 +15758,283,12,36960,1510942 +15759,283,12,322518,2678 +15760,214,12,59231,100996 +15761,214,12,3092,4786 +15762,214,12,10097,57815 +15763,283,12,6933,19662 +15764,271,12,18333,11909 +15765,70,12,434873,1859549 +15766,265,12,9956,3056 +15767,163,12,209112,1459033 +15768,265,12,12538,35696 +15769,214,12,20439,14654 +15770,265,12,5123,41286 +15771,265,12,242033,1037909 +15772,214,12,6644,95744 +15773,271,12,6443,1074362 +15774,265,12,12476,72409 +15775,214,12,302042,943469 +15776,283,12,193,2399 +15777,214,12,12499,8858 +15778,214,12,353616,25138 +15779,265,12,101325,1560952 +15780,322,12,1251,1377139 +15781,214,12,270470,72478 +15782,214,12,65674,69519 +15783,70,12,11524,1227929 +15784,265,12,62046,1011000 +15785,214,12,2293,20503 +15786,70,12,623,8932 +15787,214,12,174751,524 +15788,265,12,37003,1670362 +15789,265,12,37958,54873 +15790,214,12,4147,1191105 +15791,265,12,52520,12374 +15792,265,12,1715,135 +15793,214,12,93858,876106 +15794,265,12,28384,6994 +15795,214,12,206657,1490054 +15796,214,12,14457,87158 +15797,265,12,18414,6590 +15798,322,12,9352,1107759 +15799,265,12,10409,65014 +15800,372,12,358982,1509632 +15801,70,12,318973,1630373 +15802,283,12,329805,41024 +15803,214,12,184155,1130813 +15804,265,12,16239,80172 +15805,300,12,8292,49831 +15806,265,12,6687,17083 +15807,283,12,44716,4477 +15808,265,12,6023,47289 +15809,214,12,41283,66120 +15810,214,12,10087,63125 +15811,300,12,8247,12374 +15812,283,12,362541,1193910 +15813,348,12,41213,1777213 +15814,214,12,19276,53677 +15815,214,12,3554,32769 +15816,70,12,38554,1542802 +15817,163,12,613,1557162 +15818,265,12,293122,1313029 +15819,214,12,155765,1063221 +15820,163,12,55720,62142 +15821,214,12,19629,1546102 +15822,127,3,339403,1463656 +15823,70,12,29239,993407 +15824,163,12,8470,60032 +15825,283,12,69315,77200 +15826,265,12,152532,1287617 +15827,265,12,44945,45830 +15828,265,12,11880,70818 +15829,214,12,84903,119464 +15830,214,12,11428,10056 +15831,244,3,407448,1400529 +15832,70,12,109439,1611306 +15833,214,12,887,13570 +15834,283,12,14904,15326 +15835,214,12,25538,1772961 +15836,283,12,335778,1057785 +15837,265,12,10070,62806 +15838,214,12,5638,81543 +15839,214,12,237796,210188 +15840,265,12,260947,16371 +15841,265,12,9023,56667 +15842,214,12,41714,30715 +15843,283,12,70666,54977 +15844,393,12,6068,1535952 +15845,283,12,169298,1333913 +15846,214,12,35977,51703 +15847,322,12,42418,928737 +15848,70,12,8467,1428259 +15849,214,12,64454,144776 +15850,265,12,315837,20908 +15851,265,12,11980,14538 +15852,214,12,150049,19833 +15853,265,12,193756,1001705 +15854,265,12,17473,1330243 +15855,265,12,262945,32528 +15856,265,12,219466,116607 +15857,214,12,1673,1009 +15858,283,12,15143,29708 +15859,265,12,341077,1379046 +15860,283,12,11172,6493 +15861,265,12,544,7396 +15862,214,12,7980,3506 +15863,214,12,212503,1434403 +15864,265,12,378607,1566574 +15865,214,12,21866,36129 +15866,214,12,158967,1326476 +15867,284,12,924,1551663 +15868,389,12,116463,1691499 +15869,214,12,1899,20203 +15870,372,12,16131,79415 +15871,214,12,13196,9994 +15872,315,12,343934,1553963 +15873,265,12,179826,1768428 +15874,265,12,2288,2997 +15875,318,12,297853,1790470 +15876,265,12,51311,54901 +15877,265,12,70554,983872 +15878,214,12,26962,112835 +15879,265,12,274479,45838 +15880,265,12,173205,78438 +15881,300,12,921,6186 +15882,214,12,23964,77208 +15883,214,12,23128,113305 +15884,265,12,135708,8999 +15885,214,12,106417,1047248 +15886,283,12,263115,3311 +15887,265,12,40466,45830 +15888,315,12,297853,1790468 +15889,214,12,264393,150033 +15890,214,12,122081,17231 +15891,265,12,152113,1171863 +15892,214,12,45627,111417 +15893,315,12,9675,406354 +15894,214,12,38021,5268 +15895,265,12,330115,1496226 +15896,271,12,69974,557664 +15897,214,12,23628,90415 +15898,265,12,322785,14639 +15899,214,12,266425,593182 +15900,214,12,35,5741 +15901,214,12,10803,22095 +15902,283,12,3537,32400 +15903,283,12,8942,15426 +15904,214,12,139244,955581 +15905,271,12,4443,1305414 +15906,214,12,311324,61091 +15907,214,12,1850,518 +15908,283,12,70695,53648 +15909,214,12,21132,34857 +15910,214,12,15559,94237 +15911,322,12,109424,1408406 +15912,214,12,347031,99665 +15913,214,12,14552,167555 +15914,214,12,199373,1001705 +15915,265,12,16839,56626 +15916,283,12,638,3686 +15917,163,12,12103,69895 +15918,283,12,288977,1398505 +15919,283,12,435,1198825 +15920,265,12,310135,1448547 +15921,214,12,393521,1817392 +15922,265,12,9312,10809 +15923,265,12,265208,20515 +15924,214,12,330115,1496219 +15925,155,3,383538,1851924 +15926,214,12,48145,575498 +15927,214,12,1404,15491 +15928,265,12,11101,14614 +15929,265,12,62132,1183575 +15930,283,12,333484,60665 +15931,70,12,40060,135189 +15932,322,12,12113,1405429 +15933,214,12,70981,1723 +15934,283,12,293863,5362 +15935,214,12,16131,30715 +15936,214,12,384682,53758 +15937,300,12,42532,1126359 +15938,265,12,7229,53207 +15939,214,12,410537,109943 +15940,214,12,47046,948963 +15941,283,12,333385,1316587 +15942,283,12,22076,2121 +15943,214,12,374461,46088 +15944,163,12,284564,1680436 +15945,214,12,2001,6468 +15946,214,12,329718,1051295 +15947,70,12,6341,27236 +15948,214,12,95414,606084 +15949,265,12,188927,40592 +15950,214,12,21027,30103 +15951,265,12,336011,1396479 +15952,163,12,57597,1515865 +15953,214,12,328429,1619917 +15954,372,12,271404,1173300 +15955,214,12,136368,1647410 +15956,163,12,10201,1556293 +15957,214,12,12591,11091 +15958,214,12,75174,48498 +15959,214,12,46261,1121616 +15960,214,12,112304,57707 +15961,163,12,336882,76568 +15962,265,12,8247,54268 +15963,271,12,28,8344 +15964,358,12,8470,22077 +15965,214,12,339527,1024836 +15966,214,12,271404,6037 +15967,265,12,27417,31268 +15968,214,12,31472,102037 +15969,265,12,270672,1400681 +15970,214,12,319993,1427389 +15971,214,12,82655,928456 +15972,193,12,390747,1662620 +15973,70,12,154972,1755193 +15974,214,12,10611,66120 +15975,214,12,29263,87014 +15976,214,12,21570,76813 +15977,283,12,112991,5328 +15978,214,12,285860,1262959 +15979,214,12,35651,19931 +15980,214,12,24978,93018 +15981,214,12,33916,936662 +15982,214,12,72710,56856 +15983,214,12,79550,455852 +15984,231,12,256962,61048 +15985,214,12,45714,30904 +15986,214,12,44115,68542 +15987,214,12,844,18839 +15988,300,12,55624,49497 +15989,283,12,417936,30876 +15990,214,12,245700,65454 +15991,214,12,397717,1018992 +15992,214,12,27034,4123 +15993,214,12,60086,79492 +15994,214,12,71670,6869 +15995,214,12,262988,44950 +15996,214,12,16066,79135 +15997,265,12,459295,1373056 +15998,265,12,91679,1554063 +15999,227,12,9472,1744426 +16000,265,12,103332,44482 +16001,214,12,198663,25046 +16002,214,12,104427,1195747 +16003,163,12,363439,1521379 +16004,265,12,188102,65545 +16005,265,12,239566,120254 +16006,214,12,72032,5820 +16007,214,12,32628,8635 +16008,271,12,102668,226342 +16009,214,12,2033,18384 +16010,283,12,376660,5362 +16011,214,12,110608,81235 +16012,283,12,365942,2532 +16013,283,12,1428,5914 +16014,214,12,8281,4401 +16015,214,12,30060,70663 +16016,283,12,10294,59932 +16017,214,12,14286,84369 +16018,271,12,91690,1029789 +16019,271,12,16131,79434 +16020,214,12,16442,1004059 +16021,214,12,3989,34524 +16022,214,12,157293,53677 +16023,70,12,21968,1655541 +16024,364,12,95015,14446 +16025,271,12,9905,1818165 +16026,265,12,62046,1031260 +16027,265,12,2323,1077893 +16028,265,12,275696,939456 +16029,265,12,15092,20192 +16030,283,12,127585,1198825 +16031,214,12,409536,1246119 +16032,163,12,259695,82133 +16033,214,12,257088,13927 +16034,214,12,369697,1485547 +16035,214,12,224894,1210377 +16036,214,12,147106,4081 +16037,393,12,246655,1412306 +16038,389,12,2105,1724865 +16039,214,12,45013,32239 +16040,163,12,28730,1569117 +16041,214,12,341886,1263464 +16042,214,12,31596,1885595 +16043,265,12,1382,6510 +16044,360,3,64215,1354332 +16045,214,12,2115,21725 +16046,214,12,1793,584535 +16047,283,12,1995,3501 +16048,70,12,75564,171561 +16049,214,12,258363,54318 +16050,214,12,341077,88968 +16051,214,12,14078,47325 +16052,135,3,356752,1841582 +16053,214,12,142391,1322096 +16054,214,12,196235,43936 +16055,283,12,46261,5914 +16056,214,12,71133,26710 +16057,214,12,10874,65298 +16058,393,12,413882,1708063 +16059,214,12,288977,942904 +16060,214,12,125063,11289 +16061,214,12,67,16707 +16062,283,12,9648,3108 +16063,214,12,379873,69043 +16064,265,12,423988,935245 +16065,214,12,3597,11874 +16066,265,12,9968,31708 +16067,283,12,11024,5914 +16068,271,12,37581,1582211 +16069,283,12,345915,5914 +16070,283,12,85837,1544205 +16071,372,12,77459,1804240 +16072,214,12,17771,20181 +16073,283,12,237584,561 +16074,214,12,15616,17210 +16075,322,12,1578,66518 +16076,214,12,310888,1398342 +16077,283,12,18890,859 +16078,265,12,265208,1551998 +16079,300,12,41076,64963 +16080,265,12,13848,53522 +16081,265,12,46885,12479 +16082,283,12,93828,1108466 +16083,283,12,127372,1095403 +16084,214,12,44436,130855 +16085,214,12,41733,57130 +16086,70,12,39219,119397 +16087,265,12,14505,108218 +16088,70,12,11517,1419089 +16089,265,12,169726,67681 +16090,214,12,207270,64110 +16091,322,12,378441,969075 +16092,214,12,295964,47333 +16093,214,12,289712,66074 +16094,265,12,228970,1263516 +16095,283,12,301875,954164 +16096,393,12,2001,1017377 +16097,70,12,25918,98150 +16098,265,12,16997,8544 +16099,265,12,26558,78023 +16100,214,12,10033,3498 +16101,265,12,101325,1323619 +16102,214,12,137093,1106695 +16103,283,12,15321,16363 +16104,214,12,38987,984997 +16105,214,12,51406,1065698 +16106,283,12,15472,1305251 +16107,214,12,126323,229180 +16108,214,12,8144,53943 +16109,163,12,37534,1393367 +16110,214,12,29272,1276270 +16111,214,12,47046,69761 +16112,70,12,25872,208579 +16113,214,12,86979,170622 +16114,378,3,339403,1450342 +16115,214,12,134477,1662121 +16116,214,12,11337,3658 +16117,283,12,10950,19679 +16118,70,12,6947,1128126 +16119,214,12,254193,1015886 +16120,214,12,82999,929054 +16121,271,12,212996,1136329 +16122,214,12,27711,12887 +16123,265,12,5393,41286 +16124,214,12,58447,1732766 +16125,265,12,251227,1163458 +16126,70,12,709,10666 +16127,70,12,39311,105450 +16128,372,12,20648,62276 +16129,214,12,22029,69519 +16130,214,12,125249,34800 +16131,214,12,4413,37162 +16132,265,12,329010,1391644 +16133,214,12,43752,30919 +16134,214,12,22584,11435 +16135,283,12,107146,25562 +16136,322,12,69,1402038 +16137,214,12,20473,1095526 +16138,214,12,1498,36615 +16139,214,12,118293,1142750 +16140,70,12,38749,578787 +16141,107,12,274857,1785935 +16142,283,12,10354,423 +16143,214,12,70500,559704 +16144,214,12,374475,40476 +16145,271,12,163791,1357190 +16146,265,12,257344,1335461 +16147,214,12,69635,1151544 +16148,214,12,96433,4123 +16149,265,12,8358,11712 +16150,322,12,381008,1784766 +16151,265,12,31618,18379 +16152,214,12,179826,49826 +16153,283,12,209271,19689 +16154,265,12,188161,1224494 +16155,214,12,84284,6562 +16156,265,12,14830,69664 +16157,214,12,2295,20503 +16158,283,12,9778,3192 +16159,283,12,205584,561 +16160,283,12,3057,29940 +16161,283,12,240745,15426 +16162,214,12,198663,1328142 +16163,358,12,2976,29208 +16164,163,12,33586,556877 +16165,214,12,298751,1099257 +16166,214,12,21927,56630 +16167,283,12,9016,7902 +16168,214,12,2180,22325 +16169,214,12,16410,12238 +16170,265,12,37958,53476 +16171,265,12,393134,1853407 +16172,265,12,336004,1234099 +16173,214,12,244801,1057496 +16174,265,12,312831,70522 +16175,214,12,45243,53394 +16176,283,12,259694,2952 +16177,265,12,9803,59348 +16178,265,12,280092,66730 +16179,265,12,377447,18897 +16180,283,12,2604,3192 +16181,265,12,31146,68602 +16182,283,12,14522,668 +16183,214,12,17479,1723336 +16184,214,12,11449,69496 +16185,283,12,2033,20898 +16186,265,12,29259,1664 +16187,214,12,14976,1265277 +16188,265,12,89116,1012629 +16189,214,12,84450,12807 +16190,265,12,67822,66710 +16191,283,12,301804,9545 +16192,214,12,23739,1087458 +16193,214,12,44566,35086 +16194,265,12,28384,6993 +16195,214,12,9016,56612 +16196,214,12,9902,60260 +16197,214,12,144471,133434 +16198,214,12,360283,95866 +16199,214,12,174645,1157590 +16200,283,12,37917,16158 +16201,322,12,204922,1414103 +16202,214,12,30054,26024 +16203,214,12,2734,24580 +16204,283,12,26405,1479444 +16205,214,12,9841,59828 +16206,214,12,15414,18250 +16207,214,12,415358,1677477 +16208,214,12,81589,1041664 +16209,163,12,346672,4856 +16210,214,12,1251,488 +16211,283,12,14126,41676 +16212,214,12,28484,67447 +16213,214,12,26983,1744 +16214,214,12,271185,1493981 +16215,214,12,397837,1525141 +16216,283,12,11017,7800 +16217,271,12,11024,1252432 +16218,231,12,336691,1547703 +16219,214,12,233639,16821 +16220,214,12,34127,13570 +16221,214,12,5413,25598 +16222,315,12,94468,1291269 +16223,283,12,493,6572 +16224,214,12,291164,36188 +16225,214,12,41597,14294 +16226,265,12,52520,3958 +16227,231,12,9902,1472287 +16228,70,12,31280,950393 +16229,265,12,87516,40383 +16230,265,12,70074,6223 +16231,214,12,174925,8636 +16232,214,12,308529,77806 +16233,214,12,118131,109853 +16234,265,12,19766,111509 +16235,214,12,4520,41374 +16236,283,12,96724,1108835 +16237,70,12,97910,1095733 +16238,214,12,6977,1223 +16239,265,12,108391,1044080 +16240,315,12,239566,1465491 +16241,214,12,11577,5053 +16242,393,12,8470,936674 +16243,283,12,14977,59668 +16244,214,12,408755,86535 +16245,214,12,10070,62802 +16246,163,12,65002,2304 +16247,214,12,85494,41705 +16248,214,12,270774,1877777 +16249,70,12,331313,280800 +16250,283,12,3577,36739 +16251,265,12,310135,1501951 +16252,283,12,5123,2532 +16253,389,12,9882,1774871 +16254,231,12,362703,1560221 +16255,214,12,98566,54844 +16256,214,12,145247,1575983 +16257,265,12,284564,1489060 +16258,265,12,298584,1011113 +16259,214,12,189197,10955 +16260,214,12,7549,1336 +16261,265,12,15982,3805 +16262,227,12,340190,1732802 +16263,265,12,216521,1201132 +16264,214,12,78507,67 +16265,372,12,82696,187214 +16266,265,12,28730,949179 +16267,265,12,74911,98968 +16268,214,12,13986,35771 +16269,214,12,37238,55692 +16270,283,12,29108,16363 +16271,265,12,19398,1469347 +16272,265,12,252171,1454386 +16273,214,12,2640,1899 +16274,214,12,347031,1183421 +16275,214,12,271714,70052 +16276,214,12,111479,137357 +16277,214,12,23599,1198898 +16278,214,12,20372,224783 +16279,245,3,329135,1640322 +16280,214,12,28820,100402 +16281,322,12,7299,1411362 +16282,39,3,339403,1635318 +16283,214,12,10070,62807 +16284,214,12,11630,9196 +16285,283,12,9472,61108 +16286,214,12,1647,4504 +16287,283,12,1049,3192 +16288,393,12,3580,935490 +16289,265,12,343173,54204 +16290,214,12,89086,8502 +16291,214,12,10004,61822 +16292,283,12,118760,960384 +16293,286,3,197210,1284453 +16294,265,12,9451,31094 +16295,70,12,39867,1437607 +16296,283,12,331962,1142381 +16297,214,12,64784,1451789 +16298,163,12,7220,937174 +16299,214,12,244783,1813 +16300,163,12,37514,1305369 +16301,70,12,188927,1687043 +16302,214,12,9827,1307 +16303,214,12,72912,66723 +16304,265,12,109417,59922 +16305,283,12,293412,1544205 +16306,283,12,50506,63784 +16307,214,12,43976,1493010 +16308,265,12,1966,961984 +16309,214,12,302042,132722 +16310,214,12,35623,1703750 +16311,283,12,32166,5328 +16312,214,12,42764,22383 +16313,265,12,378236,6874 +16314,214,12,15003,57274 +16315,265,12,134394,1377410 +16316,265,12,244458,1089142 +16317,214,12,36758,322 +16318,70,12,318973,1630372 +16319,163,12,377151,32463 +16320,214,12,8358,31 +16321,265,12,79113,965163 +16322,214,12,167262,66807 +16323,265,12,30924,27240 +16324,283,12,302026,1316587 +16325,70,12,28295,12012 +16326,214,12,24123,236605 +16327,214,12,333385,62143 +16328,322,12,79593,1772276 +16329,214,12,174188,1175345 +16330,214,12,174751,1155666 +16331,155,3,383538,1851923 +16332,283,12,13483,2952 +16333,214,12,33201,24580 +16334,214,12,424488,48498 +16335,214,12,28741,97936 +16336,372,12,381015,1733636 +16337,214,12,2002,7695 +16338,283,12,46992,29419 +16339,214,12,31127,175160 +16340,265,12,68193,104893 +16341,214,12,9297,30 +16342,214,12,10594,11874 +16343,214,12,41590,6048 +16344,70,12,147106,1369441 +16345,214,12,12638,57169 +16346,265,12,207270,1233060 +16347,70,12,381645,1677897 +16348,283,12,10389,1300911 +16349,265,12,9294,15004 +16350,214,12,10804,57308 +16351,283,12,26422,1901699 +16352,214,12,4592,21138 +16353,283,12,10863,970 +16354,265,12,747,2238 +16355,283,12,49853,1469288 +16356,265,12,19053,551919 +16357,214,12,43522,20371 +16358,265,12,15807,2663 +16359,214,12,300690,1445783 +16360,214,12,53798,103945 +16361,283,12,336882,1311556 +16362,214,12,3556,32778 +16363,283,12,8414,7494 +16364,214,12,296225,1706643 +16365,231,12,2288,1065913 +16366,214,12,29151,1457094 +16367,214,12,253310,57175 +16368,214,12,14286,84380 +16369,214,12,99008,1019842 +16370,214,12,28739,78973 +16371,214,12,336850,247612 +16372,265,12,284564,1095402 +16373,214,12,1272,2035 +16374,214,12,18530,24178 +16375,265,12,111042,8502 +16376,322,12,140554,1707854 +16377,214,12,219335,1372552 +16378,214,12,109451,65857 +16379,214,12,409536,1577201 +16380,214,12,259695,1128184 +16381,127,3,339403,1259516 +16382,214,12,51209,38578 +16383,214,12,7972,53477 +16384,214,12,118195,1311467 +16385,214,12,178,2185 +16386,214,12,109251,51816 +16387,283,12,366045,1496825 +16388,160,3,20648,24529 +16389,214,12,334557,1617688 +16390,127,3,339403,1635199 +16391,265,12,64215,1095116 +16392,318,12,12103,1129323 +16393,214,12,455043,1307568 +16394,322,12,14476,1411678 +16395,265,12,10033,17315 +16396,265,12,267935,38020 +16397,214,12,369697,34110 +16398,315,12,82684,1800608 +16399,283,12,15019,3501 +16400,364,12,173205,1852938 +16401,265,12,2757,4855 +16402,271,12,351211,112662 +16403,322,12,284052,1410206 +16404,214,12,59118,64768 +16405,265,12,116894,935556 +16406,214,12,341077,79536 +16407,214,12,10797,66846 +16408,271,12,114790,1568007 +16409,214,12,330459,971840 +16410,214,12,230266,56915 +16411,214,12,19403,16514 +16412,271,12,332872,1344142 +16413,214,12,76438,578851 +16414,214,12,21468,11438 +16415,214,12,2087,11813 +16416,283,12,288952,32604 +16417,214,12,11134,56719 +16418,214,12,30941,41154 +16419,214,12,356752,1841599 +16420,214,12,54093,8401 +16421,214,12,44363,70896 +16422,214,12,22051,1102579 +16423,322,12,283384,1429327 +16424,214,12,54491,197099 +16425,214,12,25695,131399 +16426,214,12,40990,38550 +16427,214,12,372226,550172 +16428,214,12,222932,141372 +16429,214,12,37254,61121 +16430,265,12,72912,1037910 +16431,283,12,266082,96295 +16432,265,12,69315,2385 +16433,214,12,96921,5427 +16434,265,12,9443,2359 +16435,283,12,13225,599 +16436,265,12,11485,69571 +16437,214,12,3563,4499 +16438,283,12,23964,13585 +16439,283,12,103597,41024 +16440,214,12,413782,1673993 +16441,265,12,263341,2095 +16442,214,12,256593,106654 +16443,127,3,25953,137005 +16444,214,12,369245,56841 +16445,372,12,333354,1618636 +16446,70,12,10198,1395352 +16447,214,12,46738,963927 +16448,372,12,20432,1099734 +16449,214,12,266741,61312 +16450,214,12,26958,19707 +16451,214,12,41574,1583298 +16452,283,12,71670,19662 +16453,214,12,8852,511 +16454,214,12,364690,1670917 +16455,265,12,33916,936661 +16456,214,12,14295,7170 +16457,283,12,24150,2325 +16458,271,12,43432,592336 +16459,214,12,23830,6468 +16460,283,12,13596,60946 +16461,265,12,400174,102630 +16462,214,12,58428,1015891 +16463,214,12,340187,1579526 +16464,214,12,140825,326033 +16465,214,12,152042,1315181 +16466,372,12,2300,71046 +16467,214,12,300669,932248 +16468,214,12,418437,1123424 +16469,318,12,7220,1573619 +16470,265,12,5413,43146 +16471,214,12,213683,99269 +16472,214,12,356296,54567 +16473,214,12,6575,51851 +16474,265,12,277355,90593 +16475,214,12,413198,118737 +16476,372,12,390,5269 +16477,283,12,8669,5490 +16478,265,12,3291,31515 +16479,283,12,13777,37281 +16480,214,12,19244,13233 +16481,265,12,7980,208693 +16482,265,12,41574,75222 +16483,70,12,9457,1245922 +16484,70,12,40688,1542944 +16485,214,12,69668,1203317 +16486,214,12,11450,1247139 +16487,214,12,320588,1324838 +16488,214,12,14145,5981 +16489,214,12,1073,15246 +16490,214,12,11046,9169 +16491,214,12,382155,1587093 +16492,214,12,75595,589229 +16493,283,12,245692,1465674 +16494,214,12,74,489 +16495,265,12,365942,95849 +16496,322,12,12103,1407210 +16497,214,12,290999,1361555 +16498,214,12,86118,1341081 +16499,265,12,10070,59839 +16500,214,12,10005,61845 +16501,214,12,41574,1583296 +16502,214,12,64944,19615 +16503,265,12,21554,69007 +16504,70,12,264397,1299876 +16505,70,12,381008,1784747 +16506,214,12,403431,155267 +16507,283,12,7220,18457 +16508,265,12,6973,51690 +16509,300,12,544,6114 +16510,70,12,193756,1725575 +16511,283,12,10596,25015 +16512,70,12,28110,51832 +16513,265,12,17692,1626477 +16514,358,12,544,1748870 +16515,265,12,8669,15906 +16516,163,12,173205,1852951 +16517,214,12,37923,17797 +16518,214,12,14242,31653 +16519,265,12,38448,42006 +16520,265,12,82624,11687 +16521,283,12,188927,1429626 +16522,214,12,46420,1311129 +16523,283,12,5413,43151 +16524,214,12,1361,16410 +16525,214,12,795,283 +16526,214,12,2976,29207 +16527,70,12,62046,1031254 +16528,214,12,28165,78021 +16529,265,12,345922,57430 +16530,283,12,23823,29940 +16531,214,12,10860,32790 +16532,214,12,9816,59564 +16533,214,12,75532,3778 +16534,283,12,300667,5669 +16535,70,12,3172,10398 +16536,214,12,14072,35770 +16537,70,12,66125,1244653 +16538,214,12,158598,1139972 +16539,214,12,40863,56720 +16540,283,12,70981,2952 +16541,283,12,93350,15426 +16542,283,12,335970,1457828 +16543,265,12,40688,1212336 +16544,393,12,199575,1654513 +16545,214,12,266433,1195181 +16546,283,12,22683,1021206 +16547,283,12,75761,576219 +16548,214,12,28417,100747 +16549,214,12,2760,3601 +16550,265,12,9059,1091 +16551,265,12,10320,86589 +16552,70,12,10724,42995 +16553,265,12,10013,123 +16554,70,12,361183,1513958 +16555,322,12,8204,1384399 +16556,318,12,13205,1815500 +16557,283,12,145191,1122421 +16558,265,12,10362,31520 +16559,70,12,378485,1482257 +16560,265,12,10004,61824 +16561,163,12,377151,1451497 +16562,127,3,339403,1386322 +16563,265,12,402446,585882 +16564,300,12,325133,1046971 +16565,214,12,9042,68602 +16566,214,12,204922,17209 +16567,389,12,13205,1779905 +16568,265,12,8588,55414 +16569,70,12,11610,69599 +16570,214,12,395992,58433 +16571,389,12,1902,1617586 +16572,393,12,9475,1800189 +16573,214,12,384737,1015903 +16574,214,12,445602,545399 +16575,265,12,32390,1070104 +16576,214,12,13279,74582 +16577,214,12,85844,1080810 +16578,214,12,47745,19100 +16579,214,12,9753,59004 +16580,265,12,327389,15208 +16581,214,12,21036,1691 +16582,265,12,7972,53472 +16583,214,12,262,1994 +16584,214,12,2105,6627 +16585,214,12,13440,1721835 +16586,214,12,36530,1265467 +16587,70,12,262528,961264 +16588,176,3,339403,1635180 +16589,393,12,29151,19689 +16590,372,12,418378,1705424 +16591,214,12,402446,1636994 +16592,283,12,379019,1089143 +16593,283,12,49853,1648804 +16594,163,12,16232,58870 +16595,265,12,105945,1039205 +16596,271,12,598,8587 +16597,214,12,37935,77947 +16598,163,12,325302,1472144 +16599,214,12,45205,132497 +16600,410,12,15653,937490 +16601,214,12,1896,15607 +16602,265,12,68737,60711 +16603,214,12,22007,17207 +16604,214,12,70327,89167 +16605,283,12,72545,60501 +16606,283,12,31397,1268479 +16607,318,12,2613,1534908 +16608,283,12,9778,4023 +16609,163,12,128866,947232 +16610,265,12,110830,23825 +16611,214,12,4478,17630 +16612,214,12,84449,1003014 +16613,214,12,112456,1023720 +16614,214,12,10863,66082 +16615,265,12,42487,103454 +16616,214,12,352372,1118348 +16617,214,12,64942,1125480 +16618,70,12,36758,1636929 +16619,265,12,28741,31268 +16620,283,12,11077,859 +16621,214,12,334538,4583 +16622,265,12,27805,1031106 +16623,283,12,1586,13932 +16624,214,12,339547,507842 +16625,214,12,62755,2871 +16626,214,12,11704,39056 +16627,214,12,344147,102429 +16628,283,12,3933,44645 +16629,163,12,28902,9022 +16630,214,12,35623,52923 +16631,214,12,15661,30458 +16632,265,12,70670,1102112 +16633,265,12,375366,64047 +16634,214,12,17236,13930 +16635,214,12,50725,1830503 +16636,214,12,183832,29962 +16637,283,12,17287,98333 +16638,265,12,47889,1604114 +16639,265,12,2107,67773 +16640,214,12,638,8330 +16641,214,12,21525,1548000 +16642,214,12,117120,1301328 +16643,163,12,316154,1308983 +16644,214,12,332662,1570506 +16645,265,12,118991,31708 +16646,265,12,86829,44482 +16647,283,12,24657,3311 +16648,265,12,94480,136396 +16649,283,12,138222,5631 +16650,283,12,149509,1034748 +16651,283,12,15613,2624 +16652,214,12,44943,40592 +16653,163,12,170279,1152399 +16654,214,12,16432,1210157 +16655,283,12,19053,13674 +16656,214,12,12206,13902 +16657,393,12,13162,1532324 +16658,163,12,1640,59418 +16659,214,12,10087,2591 +16660,214,12,234868,3601 +16661,214,12,38289,61924 +16662,214,12,329135,78747 +16663,227,12,4147,1187337 +16664,283,12,85350,5913 +16665,214,12,66175,43818 +16666,265,12,27526,12997 +16667,214,12,52991,30008 +16668,214,12,68184,550489 +16669,214,12,32657,17828 +16670,200,3,395992,1459911 +16671,265,12,253612,1383169 +16672,271,12,2965,29063 +16673,283,12,339530,1520108 +16674,214,12,9843,59854 +16675,265,12,179826,110460 +16676,214,12,26758,65043 +16677,70,12,2898,887 +16678,214,12,42182,16830 +16679,393,12,9902,22238 +16680,410,12,42418,159081 +16681,214,12,49073,141761 +16682,265,12,310135,141673 +16683,265,12,63045,152074 +16684,283,12,71805,8313 +16685,283,12,18613,980256 +16686,265,12,14979,17207 +16687,265,12,300155,70523 +16688,214,12,9815,59541 +16689,322,12,635,5286 +16690,214,12,9987,61496 +16691,322,12,9882,1759860 +16692,265,12,55152,82562 +16693,271,12,246415,1439378 +16694,283,12,46924,1302 +16695,214,12,53882,1097602 +16696,265,12,360784,1514420 +16697,214,12,109477,237952 +16698,265,12,8847,56077 +16699,318,12,2105,1537119 +16700,265,12,40662,10949 +16701,207,3,339403,1364430 +16702,214,12,3962,5646 +16703,265,12,45610,1046154 +16704,214,12,408381,1319608 +16705,214,12,302802,1276565 +16706,300,12,678,10154 +16707,214,12,7343,8565 +16708,214,12,52736,51961 +16709,214,12,58790,1076541 +16710,265,12,417936,1179333 +16711,214,12,336004,1121984 +16712,372,12,98349,71800 +16713,214,12,220,2746 +16714,318,12,9352,223128 +16715,265,12,300667,3489 +16716,283,12,147773,41080 +16717,372,12,8329,961462 +16718,214,12,268618,43404 +16719,214,12,345489,1479475 +16720,265,12,12,7879 +16721,265,12,9624,711 +16722,214,12,18148,1115028 +16723,265,12,12154,7695 +16724,283,12,103332,6959 +16725,265,12,11172,38655 +16726,214,12,338189,1386894 +16727,265,12,236737,25895 +16728,214,12,16090,11783 +16729,163,12,374475,4647 +16730,283,12,213681,14377 +16731,214,12,103731,16398 +16732,265,12,12171,4018 +16733,283,12,44801,1263 +16734,393,12,13600,1014915 +16735,214,12,22894,1125188 +16736,265,12,678,10149 +16737,265,12,353979,19286 +16738,322,12,11358,1407846 +16739,107,12,435,1767011 +16740,214,12,159128,1029145 +16741,70,12,336004,1394055 +16742,214,12,2102,21548 +16743,283,12,407448,547 +16744,265,12,332411,38551 +16745,214,12,102629,1121984 +16746,283,12,12639,1263 +16747,70,12,27480,1365548 +16748,283,12,10596,25014 +16749,271,12,15177,77974 +16750,214,12,43987,1309312 +16751,214,12,43783,120449 +16752,265,12,20941,544150 +16753,214,12,156981,1575330 +16754,265,12,311324,54252 +16755,214,12,336029,524 +16756,214,12,11830,70628 +16757,265,12,43514,1529469 +16758,214,12,8355,5719 +16759,265,12,147773,161932 +16760,271,12,65898,1473017 +16761,214,12,376660,67994 +16762,214,12,157829,4772 +16763,265,12,14976,53478 +16764,214,12,443319,61921 +16765,283,12,2898,6410 +16766,231,12,378441,1161763 +16767,372,12,1896,19814 +16768,283,12,10539,33194 +16769,214,12,246403,963669 +16770,214,12,94348,72102 +16771,283,12,243568,971393 +16772,214,12,53419,21300 +16773,283,12,12450,29941 +16774,163,12,325302,1465614 +16775,214,12,20132,35742 +16776,214,12,9472,22302 +16777,372,12,9568,553931 +16778,70,12,2454,4854 +16779,214,12,214086,24204 +16780,265,12,139455,1116277 +16781,214,12,128311,1097956 +16782,283,12,61548,3192 +16783,283,12,50674,3311 +16784,271,12,11496,119988 +16785,265,12,151826,1172635 +16786,214,12,77338,94909 +16787,214,12,638,6223 +16788,214,12,245394,1243871 +16789,214,12,24212,607081 +16790,214,12,899,100036 +16791,372,12,28448,933025 +16792,283,12,76757,2953 +16793,214,12,104485,3238 +16794,214,12,118677,59330 +16795,265,12,123757,93159 +16796,214,12,158967,1326474 +16797,265,12,2487,25468 +16798,214,12,16135,79535 +16799,70,12,173456,117721 +16800,265,12,381737,1252901 +16801,265,12,82745,928724 +16802,214,12,45522,2993 +16803,372,12,46738,1117880 +16804,393,12,337339,1662339 +16805,372,12,5965,46914 +16806,214,12,103875,71626 +16807,214,12,294016,1224748 +16808,214,12,37672,14523 +16809,214,12,9928,20643 +16810,214,12,14931,16296 +16811,70,12,378236,1840305 +16812,265,12,11428,69406 +16813,214,12,10760,4700 +16814,410,12,263115,1684502 +16815,286,3,26873,96499 +16816,283,12,8049,7295 +16817,214,12,199155,19708 +16818,315,12,70074,1407343 +16819,214,12,22894,1125190 +16820,283,12,315837,12090 +16821,214,12,280030,1328703 +16822,214,12,9312,57259 +16823,214,12,177203,948439 +16824,283,12,5965,12942 +16825,214,12,29510,12011 +16826,214,12,15261,97547 +16827,214,12,128644,338734 +16828,214,12,91679,955154 +16829,163,12,413547,1718138 +16830,214,12,76010,1193425 +16831,163,12,382589,1161623 +16832,214,12,55720,1537184 +16833,283,12,2021,19679 +16834,214,12,26156,33611 +16835,214,12,8053,46813 +16836,214,12,171738,1154279 +16837,214,12,96987,1011204 +16838,214,12,9529,322 +16839,214,12,28304,4123 +16840,265,12,10946,43097 +16841,265,12,10909,21155 +16842,200,3,337339,1630904 +16843,283,12,5460,33291 +16844,214,12,108345,2766 +16845,372,12,170279,1077774 +16846,70,12,14554,73151 +16847,265,12,123283,1077697 +16848,286,3,426264,1798643 +16849,214,12,89008,64179 +16850,70,12,9540,1184231 +16851,214,12,293167,61091 +16852,214,12,325173,36999 +16853,214,12,77673,11204 +16854,214,12,293863,3953 +16855,214,12,1825,33008 +16856,39,3,339403,1635315 +16857,299,12,11370,1581165 +16858,214,12,19235,84794 +16859,283,12,11232,3192 +16860,163,12,2662,1472295 +16861,372,12,8619,1062459 +16862,214,12,410718,1361169 +16863,265,12,45273,17210 +16864,214,12,55720,1638066 +16865,214,12,88641,63614 +16866,214,12,173205,1085904 +16867,214,12,324670,54211 +16868,70,12,24750,2093 +16869,214,12,11635,57601 +16870,214,12,1640,1896 +16871,265,12,11630,7695 +16872,265,12,82079,1383817 +16873,214,12,181533,17825 +16874,214,12,352208,447616 +16875,271,12,124963,1513646 +16876,214,12,94348,552955 +16877,107,12,11172,1781229 +16878,372,12,18414,977988 +16879,214,12,11839,50567 +16880,214,12,16235,1605361 +16881,283,12,9529,38700 +16882,214,12,358924,1741047 +16883,214,12,15497,8502 +16884,70,12,285841,1425645 +16885,265,12,154537,33341 +16886,214,12,71066,109088 +16887,271,12,4344,40473 +16888,214,12,8383,54794 +16889,283,12,17287,1273394 +16890,214,12,345922,17825 +16891,283,12,11397,1593 +16892,214,12,158908,66121 +16893,265,12,10727,61121 +16894,163,12,544,6114 +16895,164,3,445993,1558713 +16896,283,12,9095,19993 +16897,65,3,339403,1635212 +16898,265,12,284052,1117748 +16899,322,12,9472,1126348 +16900,265,12,57201,2446 +16901,283,12,297736,11295 +16902,214,12,169656,36965 +16903,214,12,411741,1673684 +16904,265,12,173205,1586221 +16905,265,12,23830,1317820 +16906,214,12,209244,1313359 +16907,283,12,311291,16899 +16908,283,12,42218,414667 +16909,214,12,17590,3016 +16910,265,12,17467,64903 +16911,265,12,424488,1212239 +16912,283,12,194101,1016176 +16913,214,12,340101,51675 +16914,283,12,10761,6959 +16915,70,12,101325,1560968 +16916,214,12,62768,106755 +16917,214,12,19901,1080781 +16918,283,12,239566,5328 +16919,265,12,12783,73464 +16920,364,12,103597,1646874 +16921,214,12,224778,231705 +16922,283,12,15239,1355595 +16923,214,12,44877,209947 +16924,283,12,158900,1038996 +16925,163,12,91679,1338533 +16926,214,12,61765,2379 +16927,265,12,13681,4006 +16928,214,12,425591,1728737 +16929,214,12,10475,4834 +16930,265,12,10744,32035 +16931,214,12,96936,38803 +16932,214,12,285213,1442985 +16933,214,12,220488,1050576 +16934,214,12,105945,1039203 +16935,214,12,23730,1534431 +16936,214,12,22606,30410 +16937,163,12,206647,1026247 +16938,214,12,44895,127578 +16939,214,12,362150,91629 +16940,214,12,31022,66795 +16941,214,12,83754,1294785 +16942,214,12,36751,116103 +16943,283,12,8053,546 +16944,214,12,30966,107377 +16945,214,12,197849,229382 +16946,231,12,28026,1322478 +16947,283,12,376660,5363 +16948,70,12,414977,1676786 +16949,283,12,11137,5328 +16950,214,12,430826,4899 +16951,70,12,76333,225971 +16952,318,12,15653,1767056 +16953,283,12,46261,12203 +16954,214,12,134394,225554 +16955,265,12,8457,52042 +16956,214,12,11159,20423 +16957,214,12,294016,957566 +16958,265,12,14878,1060393 +16959,265,12,198663,1391758 +16960,315,12,309820,1173661 +16961,283,12,3549,4477 +16962,283,12,134397,7534 +16963,265,12,394822,1658456 +16964,283,12,954,1262 +16965,389,12,10066,1587380 +16966,70,12,544,7412 +16967,283,12,184098,54606 +16968,214,12,41923,590466 +16969,265,12,31146,63721 +16970,214,12,84354,1075100 +16971,315,12,77459,1542343 +16972,214,12,12483,72438 +16973,283,12,11351,63459 +16974,214,12,9470,57617 +16975,265,12,231176,1266280 +16976,283,12,290714,1012028 +16977,283,12,18937,19252 +16978,163,12,331962,1568026 +16979,283,12,16058,75993 +16980,372,12,167073,1411854 +16981,271,12,71120,36154 +16982,214,12,336265,1194699 +16983,277,3,327935,1433355 +16984,283,12,9836,17610 +16985,283,12,10921,2121 +16986,70,12,403119,574352 +16987,214,12,1959,20247 +16988,214,12,59726,43145 +16989,214,12,42501,937281 +16990,283,12,13205,937490 +16991,265,12,336004,1302342 +16992,265,12,174188,64342 +16993,244,3,14644,1075503 +16994,265,12,9981,41039 +16995,265,12,4551,2235 +16996,214,12,36214,1021565 +16997,214,12,219466,1266 +16998,214,12,58918,1042113 +16999,163,12,44502,36645 +17000,214,12,226968,1928 +17001,283,12,11887,38700 +17002,214,12,9779,59973 +17003,214,12,239845,1274933 +17004,283,12,244316,1103529 +17005,265,12,97051,1324041 +17006,214,12,284296,2997 +17007,214,12,96724,2238 +17008,283,12,5552,44077 +17009,70,12,179826,1770476 +17010,265,12,458428,1820248 +17011,163,12,339419,1619915 +17012,214,12,366143,5720 +17013,231,12,356752,930684 +17014,214,12,7326,9615 +17015,214,12,239562,1034510 +17016,214,12,310133,1381803 +17017,214,12,14,8216 +17018,283,12,10539,1325 +17019,265,12,2503,29400 +17020,214,12,13506,23436 +17021,70,12,177572,96997 +17022,214,12,390,2303 +17023,271,12,896,1559024 +17024,283,12,11358,7232 +17025,265,12,10033,37022 +17026,265,12,72912,567554 +17027,214,12,42045,65637 +17028,214,12,290864,1421220 +17029,214,12,21032,488 +17030,265,12,103850,1427296 +17031,214,12,857,488 +17032,214,12,10011,61989 +17033,318,12,169,1840042 +17034,214,12,339408,77277 +17035,214,12,333385,1030589 +17036,283,12,314011,1425930 +17037,265,12,45132,70301 +17038,214,12,51250,17210 +17039,265,12,301348,335 +17040,214,12,10482,65515 +17041,372,12,374475,1623698 +17042,214,12,634,2238 +17043,214,12,135670,224386 +17044,214,12,45679,109843 +17045,214,12,316042,84021 +17046,214,12,17015,1492126 +17047,214,12,31347,133709 +17048,214,12,38920,61897 +17049,265,12,254869,938781 +17050,214,12,87936,142171 +17051,372,12,379,20169 +17052,415,3,154972,16685 +17053,214,12,28665,3953 +17054,265,12,140648,66710 +17055,214,12,34231,1460021 +17056,214,12,788,11712 +17057,214,12,10691,58085 +17058,214,12,12113,58470 +17059,214,12,18890,44113 +17060,214,12,11607,4146 +17061,372,12,24978,93018 +17062,163,12,11902,544776 +17063,214,12,38322,17313 +17064,214,12,159667,1120532 +17065,214,12,84569,930987 +17066,283,12,14510,1123910 +17067,214,12,142984,1118129 +17068,163,12,13056,62841 +17069,214,12,33788,21035 +17070,265,12,121674,7248 +17071,214,12,76703,41006 +17072,283,12,57201,60665 +17073,214,12,177677,28977 +17074,283,12,327,13273 +17075,265,12,3580,1457890 +17076,283,12,259975,1324642 +17077,265,12,98339,73844 +17078,70,12,9835,20742 +17079,265,12,12220,57077 +17080,70,12,9441,11711 +17081,214,12,157843,60841 +17082,283,12,42345,78390 +17083,163,12,91607,140354 +17084,283,12,130055,4406 +17085,214,12,24746,103999 +17086,214,12,2047,42149 +17087,214,12,174751,94457 +17088,214,12,201,2383 +17089,214,12,82999,929052 +17090,214,12,310135,950999 +17091,214,12,108972,1305783 +17092,214,12,319396,83331 +17093,214,12,11975,3392 +17094,231,12,24619,45829 +17095,214,12,343972,976028 +17096,214,12,11706,5398 +17097,265,12,118,68896 +17098,214,12,14886,77489 +17099,214,12,20312,1058 +17100,265,12,36243,50661 +17101,214,12,1247,3305 +17102,214,12,17082,81223 +17103,214,12,69974,557665 +17104,214,12,83897,888974 +17105,322,12,197,1406930 +17106,265,12,381737,1555780 +17107,214,12,27480,957391 +17108,214,12,356842,1712841 +17109,214,12,19995,8529 +17110,372,12,154972,1125644 +17111,163,12,47504,38082 +17112,214,12,264397,1324059 +17113,214,12,11647,65994 +17114,265,12,10425,61049 +17115,214,12,36325,1096489 +17116,283,12,356752,35145 +17117,214,12,39107,122512 +17118,144,12,289,1417676 +17119,214,12,1810,8502 +17120,283,12,18414,36807 +17121,214,12,9461,19429 +17122,163,12,27259,463 +17123,322,12,204922,1414104 +17124,265,12,447758,1641865 +17125,214,12,308024,1678071 +17126,214,12,70554,983871 +17127,214,12,310126,1397754 +17128,214,12,84226,1209781 +17129,214,12,285,2448 +17130,163,12,2454,5543 +17131,315,12,118,1855226 +17132,214,12,92496,1610503 +17133,265,12,10847,61022 +17134,214,12,286873,1553432 +17135,265,12,58918,1577006 +17136,283,12,9815,53680 +17137,214,12,8342,1016839 +17138,372,12,82448,927984 +17139,318,12,3597,1410335 +17140,214,12,2061,21185 +17141,214,12,35623,44314 +17142,214,12,10910,6593 +17143,214,12,13551,68602 +17144,283,12,11011,6347 +17145,265,12,311324,1382496 +17146,214,12,21430,32035 +17147,214,12,2186,11359 +17148,265,12,11647,64487 +17149,214,12,24624,20010 +17150,265,12,9803,6895 +17151,265,12,91181,3248 +17152,214,12,28859,102202 +17153,214,12,23169,29014 +17154,393,12,324670,1537505 +17155,265,12,12121,71337 +17156,163,12,91607,144256 +17157,265,12,82684,582624 +17158,283,12,324670,49670 +17159,214,12,329865,1718785 +17160,283,12,193756,25549 +17161,286,3,332788,1304673 +17162,163,12,296524,509950 +17163,214,12,5638,44546 +17164,265,12,10063,62683 +17165,283,12,58428,62725 +17166,214,12,59861,31 +17167,265,12,57683,18691 +17168,214,12,29343,97962 +17169,214,12,76207,18237 +17170,283,12,142402,22055 +17171,265,12,329440,1500923 +17172,214,12,17074,34934 +17173,265,12,89756,56982 +17174,283,12,245168,11295 +17175,283,12,381008,1547414 +17176,70,12,297853,1790462 +17177,283,12,4147,495 +17178,214,12,150065,1141547 +17179,322,12,2503,1406858 +17180,265,12,28178,43560 +17181,214,12,20648,62271 +17182,214,12,318184,1413691 +17183,265,12,98339,80681 +17184,265,12,44155,1161624 +17185,214,12,379019,1780116 +17186,283,12,177572,137198 +17187,214,12,220488,1042056 +17188,214,12,82929,870734 +17189,265,12,10070,62801 +17190,283,12,49009,1325573 +17191,283,12,5551,423 +17192,283,12,83384,21969 +17193,283,12,3563,3276 +17194,214,12,211139,100406 +17195,214,12,257450,9424 +17196,265,12,300667,1114036 +17197,265,12,361183,1486526 +17198,214,12,270303,1099032 +17199,214,12,47493,1160271 +17200,265,12,330459,1401796 +17201,214,12,252680,116431 +17202,265,12,6933,51449 +17203,265,12,2441,24972 +17204,318,12,263115,1550819 +17205,265,12,307081,62639 +17206,214,12,75174,1125216 +17207,214,12,23544,69052 +17208,163,12,414910,1503547 +17209,163,12,61035,1446126 +17210,214,12,139519,13230 +17211,283,12,319993,1437665 +17212,265,12,213681,62862 +17213,265,12,332354,1391916 +17214,163,12,82,1118728 +17215,214,12,64678,995906 +17216,214,12,356296,1024276 +17217,214,12,144942,84633 +17218,265,12,177047,1462277 +17219,214,12,169,1091 +17220,214,12,9815,59524 +17221,214,12,51364,10520 +17222,39,3,339403,1635313 +17223,283,12,13823,16516 +17224,214,12,3686,51893 +17225,265,12,10918,67465 +17226,283,12,44414,6119 +17227,214,12,301875,1527474 +17228,283,12,423988,1324816 +17229,214,12,271664,1242852 +17230,214,12,19625,1013891 +17231,214,12,2355,24176 +17232,283,12,296524,1034748 +17233,283,12,244117,67702 +17234,214,12,29318,103482 +17235,214,12,245891,1281371 +17236,214,12,1428,5911 +17237,283,12,62764,5328 +17238,265,12,10208,64185 +17239,318,12,45527,1878827 +17240,265,12,3172,16731 +17241,214,12,10119,63743 +17242,214,12,171337,1024275 +17243,214,12,11925,72684 +17244,214,12,10364,8406 +17245,163,12,857,21983 +17246,265,12,9297,94534 +17247,265,12,135652,1102859 +17248,214,12,411741,1031201 +17249,265,12,62132,43518 +17250,265,12,212530,55761 +17251,318,12,366045,1830752 +17252,214,12,42825,89906 +17253,283,12,256474,1014920 +17254,214,12,257450,30052 +17255,214,12,19898,4017 +17256,283,12,18045,23545 +17257,265,12,230179,2036 +17258,265,12,25330,1286008 +17259,214,12,445,32463 +17260,283,12,72105,7494 +17261,271,12,4134,34879 +17262,214,12,9358,21585 +17263,283,12,76341,53346 +17264,389,12,954,145171 +17265,318,12,213681,1649199 +17266,214,12,19053,100558 +17267,214,12,218778,17825 +17268,372,12,56601,1291347 +17269,265,12,109439,54211 +17270,214,12,111470,115373 +17271,265,12,15936,78971 +17272,214,12,239566,55789 +17273,287,3,378018,1762268 +17274,214,12,6643,14568 +17275,283,12,3072,16516 +17276,214,12,921,6159 +17277,214,12,209293,32874 +17278,214,12,319340,1440447 +17279,283,12,150117,1113 +17280,70,12,121636,1308320 +17281,70,12,246133,1681130 +17282,265,12,110146,963164 +17283,265,12,764,11357 +17284,214,12,300155,29229 +17285,315,12,27380,1418015 +17286,265,12,18414,15452 +17287,283,12,13549,1114555 +17288,214,12,24212,661623 +17289,214,12,60665,9884 +17290,214,12,3146,30771 +17291,214,12,76493,2997 +17292,214,12,293167,54211 +17293,265,12,71859,3063 +17294,283,12,84226,979724 +17295,214,12,286657,1353936 +17296,214,12,308529,1756364 +17297,271,12,42487,1339231 +17298,214,12,360784,1297 +17299,265,12,239566,69226 +17300,214,12,73873,24204 +17301,214,12,13596,62160 +17302,265,12,287903,91059 +17303,214,12,16032,593061 +17304,214,12,378607,589168 +17305,214,12,386100,1271170 +17306,265,12,82622,864930 +17307,214,12,306598,1643331 +17308,265,12,269149,7879 +17309,214,12,11227,59 +17310,214,12,177979,57810 +17311,214,12,63831,45138 +17312,265,12,19101,8246 +17313,214,12,76703,1093443 +17314,214,12,16058,75990 +17315,214,12,4516,4402 +17316,214,12,185111,1031166 +17317,372,12,156,1014 +17318,214,12,33124,99710 +17319,283,12,303636,1831214 +17320,214,12,9585,58084 +17321,265,12,365065,17288 +17322,265,12,4133,2947 +17323,214,12,345925,96126 +17324,214,12,294254,1328142 +17325,231,12,8414,1891671 +17326,70,12,31984,1845978 +17327,214,12,208091,1058615 +17328,214,12,10663,29015 +17329,214,12,55846,6887 +17330,214,12,140276,8502 +17331,283,12,4592,3192 +17332,70,12,152042,1366257 +17333,283,12,83588,27039 +17334,70,12,32080,852 +17335,265,12,429838,1734270 +17336,265,12,445,6100 +17337,283,12,76411,959257 +17338,265,12,46830,19972 +17339,265,12,173205,1736526 +17340,214,12,12594,73197 +17341,271,12,12113,998152 +17342,265,12,99846,71093 +17343,93,12,263115,1333932 +17344,214,12,10703,66769 +17345,214,12,33592,6887 +17346,214,12,54796,69986 +17347,214,12,14698,6594 +17348,265,12,50674,68503 +17349,231,12,16077,79180 +17350,214,12,40793,8482 +17351,265,12,45562,114480 +17352,214,12,414453,1731648 +17353,271,12,23518,18379 +17354,214,12,26005,25246 +17355,214,12,10921,67457 +17356,214,12,11236,3219 +17357,322,12,9358,1391703 +17358,265,12,253612,1383184 +17359,214,12,27381,65558 +17360,214,12,482,6568 +17361,214,12,15258,83342 +17362,410,12,10204,1602319 +17363,214,12,65759,11651 +17364,163,12,24821,1646966 +17365,214,12,197,2461 +17366,214,12,104720,26024 +17367,214,12,377158,1648280 +17368,265,12,1690,11641 +17369,283,12,18093,1325 +17370,214,12,5257,42379 +17371,283,12,311324,561 +17372,283,12,7340,162085 +17373,214,12,53358,71280 +17374,214,12,31586,62055 +17375,70,12,98094,1499903 +17376,214,12,293380,1227353 +17377,214,12,48207,8967 +17378,265,12,427680,1758551 +17379,265,12,302699,57430 +17380,214,12,426264,1798645 +17381,265,12,98277,1017241 +17382,322,12,2503,1406855 +17383,214,12,337339,8181 +17384,214,12,139244,29063 +17385,157,3,322487,80673 +17386,214,12,98566,865 +17387,214,12,268174,1316669 +17388,160,3,339403,1357063 +17389,214,12,9675,27679 +17390,214,12,155597,1286509 +17391,271,12,2204,22609 +17392,214,12,42703,13780 +17393,107,12,284052,1653683 +17394,214,12,86703,79390 +17395,214,12,544,7407 +17396,271,12,3173,31030 +17397,13,12,351211,1652080 +17398,70,12,47342,1380638 +17399,163,12,39053,1018939 +17400,283,12,42094,14096 +17401,283,12,285858,1342835 +17402,214,12,30141,2461 +17403,214,12,14011,1074237 +17404,283,12,41963,12847 +17405,214,12,36489,44763 +17406,265,12,45610,17276 +17407,127,3,339403,1371261 +17408,265,12,128169,13235 +17409,284,12,28893,1452321 +17410,107,12,45527,1896720 +17411,214,12,79218,5719 +17412,283,12,270383,26080 +17413,214,12,354287,9987 +17414,214,12,43923,475380 +17415,265,12,52454,236844 +17416,265,12,28031,551 +17417,214,12,1361,16414 +17418,214,12,251555,1179663 +17419,214,12,256593,1016590 +17420,214,12,80389,2461 +17421,214,12,106358,34112 +17422,127,3,345915,1401076 +17423,389,12,2567,1677516 +17424,214,12,32202,109063 +17425,214,12,1850,5381 +17426,70,12,954,150844 +17427,214,12,212063,37221 +17428,214,12,60759,97673 +17429,214,12,301348,16831 +17430,265,12,8844,9196 +17431,265,12,336011,142276 +17432,283,12,26693,1178998 +17433,214,12,9099,339 +17434,214,12,10703,26760 +17435,300,12,19101,1565149 +17436,265,12,10632,7779 +17437,214,12,27637,66889 +17438,231,12,90616,1139988 +17439,283,12,7511,54777 +17440,265,12,13493,69510 +17441,214,12,29233,100888 +17442,214,12,2105,21585 +17443,265,12,11351,68488 +17444,265,12,209112,211962 +17445,163,12,47194,141032 +17446,214,12,87593,935280 +17447,214,12,788,11222 +17448,271,12,46738,232866 +17449,265,12,409,5484 +17450,127,3,339403,1635193 +17451,283,12,1589,43151 +17452,70,12,58251,53938 +17453,265,12,272693,1046971 +17454,372,12,1969,62468 +17455,265,12,198795,1511651 +17456,214,12,297633,1399552 +17457,214,12,81551,1032103 +17458,214,12,360784,52446 +17459,70,12,315465,1591439 +17460,214,12,44902,72996 +17461,283,12,325189,38699 +17462,265,12,179826,57160 +17463,214,12,269795,1815262 +17464,214,12,33592,73021 +17465,214,12,336882,934172 +17466,214,12,300983,91629 +17467,265,12,177047,1413500 +17468,214,12,318224,71797 +17469,265,12,225728,1455948 +17470,283,12,21132,1467549 +17471,214,12,117251,20208 +17472,283,12,26299,1263 +17473,283,12,21338,938123 +17474,283,12,21619,2325 +17475,214,12,169881,10895 +17476,214,12,9352,54249 +17477,214,12,10053,6040 +17478,372,12,10063,35973 +17479,372,12,29272,1276269 +17480,214,12,25625,106671 +17481,214,12,26882,1773043 +17482,265,12,4146,35559 +17483,163,12,10539,1652315 +17484,214,12,276819,1097857 +17485,283,12,38157,32741 +17486,214,12,9070,551 +17487,389,12,6947,1573109 +17488,214,12,284293,1190973 +17489,214,12,1497,19500 +17490,214,12,340215,1630256 +17491,214,12,1813,12050 +17492,265,12,109451,107446 +17493,283,12,215928,1172515 +17494,265,12,103332,35028 +17495,214,12,9358,21586 +17496,214,12,338189,20488 +17497,214,12,39779,41408 +17498,214,12,423377,1311747 +17499,70,12,278316,1333660 +17500,214,12,11656,6650 +17501,214,12,70151,68083 +17502,265,12,333385,1619919 +17503,265,12,68721,7624 +17504,271,12,21159,91798 +17505,265,12,13056,40513 +17506,214,12,44115,2034 +17507,318,12,369406,1844355 +17508,214,12,7980,1128254 +17509,283,12,10708,546 +17510,214,12,159211,1301333 +17511,283,12,8842,42306 +17512,214,12,14977,65816 +17513,163,12,179826,55772 +17514,283,12,99861,1018073 +17515,214,12,50123,113826 +17516,214,12,46872,118441 +17517,214,12,3114,30550 +17518,214,12,34082,224394 +17519,283,12,8844,4952 +17520,214,12,28997,929487 +17521,372,12,12113,77511 +17522,318,12,11370,1581162 +17523,318,12,8467,1401354 +17524,163,12,11358,84220 +17525,265,12,48502,138322 +17526,214,12,1903,11649 +17527,214,12,258363,11218 +17528,283,12,284053,7232 +17529,107,12,356752,1630968 +17530,265,12,40041,2721 +17531,214,12,56601,22078 +17532,283,12,26486,3965 +17533,214,12,55735,292876 +17534,283,12,755,3686 +17535,283,12,290714,1012032 +17536,214,12,42215,11813 +17537,214,12,16135,61578 +17538,214,12,332286,160532 +17539,214,12,332286,1444884 +17540,265,12,332979,1670654 +17541,214,12,105981,9078 +17542,214,12,74777,583461 +17543,265,12,44363,52994 +17544,214,12,18557,453499 +17545,214,12,25430,14875 +17546,283,12,246655,3276 +17547,283,12,262,3662 +17548,300,12,118,1645447 +17549,265,12,337751,1252900 +17550,214,12,11000,5342 +17551,144,12,32049,1672385 +17552,214,12,234284,1308100 +17553,214,12,318922,70522 +17554,283,12,3537,1530 +17555,265,12,241254,1113449 +17556,214,12,53419,13848 +17557,214,12,24825,6568 +17558,214,12,38285,104043 +17559,265,12,9443,14696 +17560,127,3,339403,1634080 +17561,214,12,3686,51892 +17562,214,12,339419,973668 +17563,214,12,408203,132028 +17564,265,12,378570,1108174 +17565,361,3,339403,1573016 +17566,358,12,10204,1305945 +17567,283,12,64499,63558 +17568,265,12,16066,79142 +17569,283,12,67822,959421 +17570,283,12,33613,1305251 +17571,214,12,72766,1066767 +17572,372,12,10134,4844 +17573,214,12,27036,109853 +17574,214,12,109491,10950 +17575,214,12,3587,33611 +17576,214,12,69315,1115249 +17577,265,12,5460,44634 +17578,214,12,258509,30694 +17579,214,12,38150,1030160 +17580,265,12,401164,1817427 +17581,214,12,84892,6949 +17582,144,12,219466,1319626 +17583,214,12,8897,73395 +17584,283,12,8888,710 +17585,214,12,6972,6203 +17586,93,12,419430,1333932 +17587,265,12,87428,212576 +17588,372,12,227975,1775622 +17589,214,12,351211,21036 +17590,271,12,23048,59961 +17591,214,12,230179,70522 +17592,214,12,381015,1492942 +17593,214,12,67021,70676 +17594,214,12,22894,1125189 +17595,214,12,307081,29 +17596,265,12,11704,70291 +17597,265,12,352327,1491840 +17598,214,12,19101,5162 +17599,372,12,409,5487 +17600,214,12,308174,52733 +17601,265,12,423377,1199825 +17602,265,12,7445,72104 +17603,283,12,15489,19680 +17604,214,12,9828,59657 +17605,214,12,14931,10430 +17606,214,12,8270,54239 +17607,214,12,80280,17083 +17608,163,12,56292,1018751 +17609,214,12,10145,8215 +17610,214,12,395992,24204 +17611,283,12,251,3275 +17612,214,12,9951,60818 +17613,283,12,11855,5328 +17614,214,12,39413,37634 +17615,265,12,25142,1687797 +17616,265,12,289,2663 +17617,283,12,16820,11658 +17618,214,12,83384,999821 +17619,318,12,6977,1537867 +17620,372,12,173205,1852946 +17621,231,12,367735,933557 +17622,357,3,126889,1746433 +17623,214,12,14052,9196 +17624,214,12,1969,57279 +17625,214,12,284053,10850 +17626,283,12,31911,495 +17627,265,12,664,2212 +17628,283,12,9013,897 +17629,283,12,297702,1200317 +17630,70,12,364088,1523170 +17631,283,12,461955,1195076 +17632,265,12,207699,1308813 +17633,214,12,77585,240127 +17634,283,12,354859,2952 +17635,214,12,27681,206043 +17636,265,12,264644,1375897 +17637,214,12,166,1962 +17638,283,12,333484,1333932 +17639,70,12,16993,1616576 +17640,283,12,13667,16516 +17641,315,12,213681,1733830 +17642,214,12,400,5505 +17643,214,12,181753,1454811 +17644,214,12,10075,3954 +17645,214,12,311324,15158 +17646,265,12,10929,10830 +17647,214,12,6877,17751 +17648,214,12,36253,71401 +17649,214,12,9483,57660 +17650,214,12,185460,1334701 +17651,214,12,96089,49064 +17652,265,12,139826,51373 +17653,214,12,32166,1119464 +17654,214,12,4547,35974 +17655,231,12,9555,37270 +17656,322,12,31146,72640 +17657,265,12,246655,10956 +17658,214,12,321315,72520 +17659,283,12,788,2874 +17660,214,12,11853,58047 +17661,163,12,44716,7737 +17662,70,12,63831,1125172 +17663,214,12,13507,543839 +17664,283,12,91679,1196709 +17665,214,12,11658,1296336 +17666,283,12,16066,79146 +17667,265,12,156597,953488 +17668,322,12,11377,1411276 +17669,265,12,241258,132876 +17670,214,12,60855,1396493 +17671,315,12,544,29206 +17672,265,12,31021,1674762 +17673,214,12,12605,73077 +17674,283,12,331962,1142383 +17675,13,3,408381,1657550 +17676,393,12,10066,1851156 +17677,214,12,12289,1117859 +17678,265,12,10897,67390 +17679,283,12,60965,232062 +17680,163,12,137528,1689677 +17681,144,12,72823,153772 +17682,265,12,7445,60070 +17683,214,12,308269,1447888 +17684,214,12,29290,101124 +17685,283,12,379,4249 +17686,265,12,16214,1093 +17687,265,12,116894,1064874 +17688,163,12,177047,146598 +17689,265,12,37958,1102071 +17690,283,12,26405,1273919 +17691,214,12,753,11415 +17692,214,12,33673,50300 +17693,214,12,26422,51919 +17694,214,12,10727,61122 +17695,265,12,14011,1172894 +17696,214,12,152748,1066750 +17697,265,12,1271,60245 +17698,214,12,4960,321 +17699,372,12,39356,1356763 +17700,283,12,18613,16363 +17701,70,12,10733,5545 +17702,214,12,12764,33009 +17703,283,12,7445,2952 +17704,214,12,82178,1780096 +17705,283,12,12273,1195356 +17706,214,12,61581,43703 +17707,283,12,159095,16363 +17708,372,12,1164,1115010 +17709,283,12,359245,74679 +17710,214,12,37958,1123192 +17711,265,12,8292,1188916 +17712,214,12,54236,13833 +17713,214,12,89551,115372 +17714,300,12,46492,1445334 +17715,214,12,49028,81087 +17716,214,12,235,3029 +17717,265,12,38765,130225 +17718,283,12,240913,1319522 +17719,214,12,11248,68776 +17720,214,12,1377,16747 +17721,265,12,85160,1432465 +17722,283,12,341689,1468070 +17723,286,3,121539,1039146 +17724,214,12,339367,88802 +17725,214,12,703,6994 +17726,372,12,9836,59781 +17727,214,12,32082,66714 +17728,265,12,376292,20494 +17729,265,12,401164,1817424 +17730,214,12,41970,1605817 +17731,283,12,312174,1400612 +17732,214,12,834,3954 +17733,265,12,112973,322 +17734,214,12,27832,99116 +17735,214,12,20919,62350 +17736,214,12,142012,1115991 +17737,271,12,11645,60358 +17738,265,12,10596,16830 +17739,214,12,110830,23824 +17740,214,12,22683,1243079 +17741,214,12,84892,52897 +17742,265,12,323929,1733202 +17743,214,12,72279,565407 +17744,348,12,264525,1857587 +17745,265,12,35,1128341 +17746,372,12,6687,961462 +17747,265,12,88794,63946 +17748,70,12,21629,1459843 +17749,214,12,85837,107065 +17750,214,12,142320,50629 +17751,283,12,329289,494 +17752,214,12,39495,6349 +17753,265,12,18094,8686 +17754,318,12,1966,1733786 +17755,393,12,773,1646348 +17756,214,12,5257,42380 +17757,283,12,242,2874 +17758,265,12,3173,31037 +17759,214,12,110972,91048 +17760,214,12,64678,1831713 +17761,214,12,9532,42121 +17762,214,12,11917,2145 +17763,265,12,35623,1066615 +17764,318,12,10710,1535954 +17765,127,3,408381,1463661 +17766,265,12,38987,72762 +17767,283,12,2577,20462 +17768,265,12,419430,1319040 +17769,70,12,343173,1151191 +17770,70,12,19209,8915 +17771,214,12,228205,6040 +17772,214,12,95358,2766 +17773,214,12,121923,96708 +17774,283,12,4291,13273 +17775,322,12,12171,1414104 +17776,283,12,71672,965090 +17777,214,12,51362,10520 +17778,214,12,82327,1001671 +17779,70,12,91259,27748 +17780,265,12,103713,1034665 +17781,214,12,9451,1746321 +17782,214,12,118677,1647465 +17783,214,12,11328,21185 +17784,214,12,169298,21825 +17785,315,12,345922,1552084 +17786,163,12,48231,37022 +17787,372,12,4253,35789 +17788,214,12,234377,930633 +17789,265,12,1589,57159 +17790,214,12,338312,125684 +17791,283,12,179154,60504 +17792,214,12,37910,74091 +17793,214,12,336199,1365071 +17794,214,12,10004,15365 +17795,265,12,12526,5357 +17796,265,12,45556,12477 +17797,214,12,140607,15344 +17798,271,12,155597,1586004 +17799,283,12,26809,137198 +17800,70,12,126127,88972 +17801,214,12,9405,57602 +17802,265,12,20312,1212408 +17803,265,12,1976,4123 +17804,283,12,379,1424046 +17805,265,12,42418,71760 +17806,214,12,28026,56416 +17807,214,12,24453,23650 +17808,214,12,75595,53078 +17809,214,12,13834,61312 +17810,283,12,395982,1755107 +17811,322,12,109424,1404234 +17812,299,12,10320,91173 +17813,214,12,241855,1074560 +17814,214,12,76397,337066 +17815,214,12,11887,57614 +17816,70,12,7220,60862 +17817,283,12,345922,928272 +17818,214,12,307479,545328 +17819,214,12,312221,16514 +17820,315,12,70074,1407345 +17821,214,12,61151,95944 +17822,163,12,173467,1571049 +17823,214,12,89242,44878 +17824,214,12,74,490 +17825,271,12,31397,1408466 +17826,214,12,173205,1852942 +17827,70,12,36489,1313952 +17828,214,12,246218,936425 +17829,214,12,358982,1509631 +17830,283,12,8842,2952 +17831,265,12,72545,4505 +17832,284,12,1578,1458534 +17833,389,12,9982,1713705 +17834,214,12,77673,110697 +17835,214,12,1550,1227 +17836,214,12,1691,6869 +17837,70,12,108222,88972 +17838,214,12,3513,32341 +17839,214,12,9966,7623 +17840,283,12,60125,1100328 +17841,318,12,356752,1841565 +17842,214,12,74430,16514 +17843,214,12,369697,66263 +17844,283,12,14126,41677 +17845,214,12,126323,1199825 +17846,163,12,312831,43145 +17847,214,12,320588,1474976 +17848,372,12,9301,57246 +17849,265,12,157354,1280964 +17850,372,12,12273,79112 +17851,214,12,26963,1795548 +17852,214,12,298865,1037906 +17853,265,12,10070,880 +17854,265,12,139455,5933 +17855,283,12,5393,7902 +17856,265,12,203351,236844 +17857,265,12,82703,94534 +17858,160,3,410118,1791613 +17859,283,12,69668,2952 +17860,283,12,60994,25549 +17861,214,12,20096,39032 +17862,265,12,374460,1516200 +17863,214,12,17216,3492 +17864,214,12,3549,1015 +17865,214,12,9899,15901 +17866,214,12,167073,51675 +17867,214,12,47324,1620539 +17868,271,12,77949,1402091 +17869,271,12,127372,1431504 +17870,214,12,47186,4447 +17871,283,12,21765,1034748 +17872,214,12,15092,68602 +17873,214,12,47212,2948 +17874,214,12,245706,967387 +17875,214,12,253154,502616 +17876,300,12,383538,1822615 +17877,415,3,28820,102114 +17878,283,12,336882,1635796 +17879,214,12,9843,20181 +17880,214,12,3563,20821 +17881,214,12,83666,2997 +17882,214,12,27621,35972 +17883,214,12,52437,21311 +17884,283,12,177566,969075 +17885,283,12,256092,30876 +17886,265,12,262522,48908 +17887,214,12,11547,69806 +17888,364,12,413547,1489752 +17889,300,12,243568,1685936 +17890,283,12,1452,61624 +17891,214,12,363479,139614 +17892,214,12,201223,1319219 +17893,265,12,12113,40374 +17894,214,12,44902,131689 +17895,214,12,16092,79281 +17896,265,12,44945,17209 +17897,214,12,44732,946915 +17898,214,12,273481,47287 +17899,214,12,102144,12278 +17900,271,12,2195,23177 +17901,163,12,371003,1544341 +17902,214,12,47065,1053565 +17903,214,12,499,6817 +17904,214,12,11633,1692 +17905,70,12,356752,1841617 +17906,214,12,14181,551 +17907,214,12,241742,30053 +17908,315,12,189,1401128 +17909,214,12,744,770 +17910,284,12,613,1425863 +17911,214,12,2662,27735 +17912,214,12,173294,1150470 +17913,214,12,2778,639 +17914,214,12,344039,1053169 +17915,214,12,77625,51757 +17916,214,12,356296,65248 +17917,265,12,8669,69226 +17918,322,12,11351,1597212 +17919,265,12,9836,59771 +17920,283,12,88273,19993 +17921,265,12,134806,1243079 +17922,318,12,297762,1824286 +17923,265,12,407559,1659965 +17924,265,12,179826,206596 +17925,265,12,15936,5380 +17926,214,12,328429,1309860 +17927,214,12,79995,49067 +17928,214,12,255160,1405913 +17929,214,12,9963,20742 +17930,214,12,62630,96357 +17931,283,12,16296,993337 +17932,214,12,50780,41329 +17933,265,12,135313,1102118 +17934,107,12,167810,1793205 +17935,372,12,275696,1343946 +17936,214,12,266856,2238 +17937,300,12,73835,1606275 +17938,214,12,371459,1108834 +17939,214,12,16687,116906 +17940,265,12,117251,38673 +17941,214,12,41516,11030 +17942,283,12,13507,96295 +17943,300,12,24469,1319626 +17944,283,12,353686,13585 +17945,214,12,38978,47465 +17946,214,12,193756,5575 +17947,214,12,34084,19708 +17948,163,12,26636,1023051 +17949,214,12,598,8566 +17950,214,12,69266,9182 +17951,214,12,66925,1084768 +17952,214,12,84184,1067252 +17953,265,12,623,8931 +17954,214,12,791,11811 +17955,283,12,50318,29940 +17956,214,12,5421,100423 +17957,214,12,10055,62578 +17958,283,12,184345,5914 +17959,214,12,246403,986505 +17960,271,12,18405,1410276 +17961,265,12,3114,3238 +17962,214,12,48243,43553 +17963,214,12,276846,1113723 +17964,265,12,4982,7163 +17965,265,12,61984,67078 +17966,283,12,110598,8882 +17967,214,12,127493,1098482 +17968,214,12,14695,1147297 +17969,214,12,352208,408353 +17970,372,12,19348,40073 +17971,283,12,339527,1034748 +17972,214,12,3682,12997 +17973,283,12,302828,1014920 +17974,214,12,25528,172891 +17975,265,12,2567,961984 +17976,315,12,8414,1672003 +17977,265,12,71859,1008091 +17978,283,12,257088,1631402 +17979,214,12,24821,139991 +17980,322,12,34723,1424138 +17981,214,12,16371,80454 +17982,283,12,17209,33144 +17983,107,12,8467,1853281 +17984,265,12,393732,2688 +17985,163,12,300669,62982 +17986,214,12,304372,1150712 +17987,283,12,1986,959440 +17988,265,12,82079,1071853 +17989,265,12,327389,62577 +17990,271,12,76333,1353018 +17991,214,12,32080,14054 +17992,214,12,339527,57366 +17993,300,12,284052,1408796 +17994,265,12,9664,5322 +17995,322,12,256740,1402525 +17996,214,12,82448,64394 +17997,214,12,16096,141824 +17998,283,12,264644,23545 +17999,283,12,16366,1815524 +18000,214,12,246011,1001546 +18001,214,12,795,11900 +18002,283,12,8358,1324 +18003,214,12,15073,6374 +18004,214,12,353979,19662 +18005,214,12,266400,1088851 +18006,214,12,95756,1006734 +18007,214,12,62694,19395 +18008,70,12,336004,1404191 +18009,271,12,32088,1656022 +18010,265,12,310137,1397796 +18011,265,12,336890,1375897 +18012,214,12,3580,339 +18013,70,12,36094,22816 +18014,283,12,11917,2678 +18015,70,12,339312,1464980 +18016,214,12,79550,1318297 +18017,214,12,64454,23555 +18018,214,12,15916,1417 +18019,214,12,383618,1263606 +18020,163,12,35052,40374 +18021,214,12,294016,6738 +18022,214,12,127812,126676 +18023,70,12,9836,59773 +18024,107,12,266856,1019426 +18025,214,12,10760,1203317 +18026,265,12,12182,40383 +18027,300,12,379019,1780143 +18028,214,12,1825,33009 +18029,265,12,16232,70781 +18030,163,12,19971,32158 +18031,214,12,72875,567323 +18032,214,12,20992,7592 +18033,372,12,82626,928320 +18034,107,12,293167,1653683 +18035,163,12,22881,5545 +18036,265,12,15749,326 +18037,214,12,12449,20854 +18038,163,12,10539,57646 +18039,214,12,100275,1519334 +18040,214,12,24978,93011 +18041,163,12,173205,1735820 +18042,214,12,262786,1306688 +18043,265,12,53543,60220 +18044,163,12,320588,1324841 +18045,214,12,86820,225009 +18046,245,3,368006,237968 +18047,214,12,418378,1193498 +18048,214,12,197,142285 +18049,265,12,15805,10949 +18050,214,12,6948,51541 +18051,265,12,222858,102429 +18052,271,12,1452,13192 +18053,214,12,27203,69513 +18054,265,12,59962,17313 +18055,214,12,96951,130706 +18056,214,12,20715,36697 +18057,283,12,9667,7481 +18058,70,12,296524,1725573 +18059,214,12,11953,5026 +18060,265,12,15749,1847413 +18061,214,12,118991,51575 +18062,214,12,20766,566958 +18063,70,12,336004,1121985 +18064,214,12,280030,1703716 +18065,214,12,33789,572363 +18066,70,12,98066,1478662 +18067,214,12,2786,3779 +18068,214,12,27873,133880 +18069,214,12,246133,1281685 +18070,283,12,15661,3192 +18071,214,12,33542,46321 +18072,283,12,1381,1447153 +18073,70,12,150201,1448871 +18074,214,12,10173,10058 +18075,265,12,7220,56171 +18076,265,12,301804,1659232 +18077,410,12,11370,1767782 +18078,283,12,46094,1262 +18079,265,12,13600,60239 +18080,283,12,272693,1021206 +18081,70,12,340215,1630290 +18082,271,12,43773,1884014 +18083,265,12,254193,1015889 +18084,214,12,337107,52350 +18085,214,12,26405,131505 +18086,214,12,120303,107288 +18087,214,12,69315,1224367 +18088,214,12,17175,65823 +18089,283,12,24801,38700 +18090,265,12,134350,119027 +18091,283,12,403130,1619734 +18092,283,12,76397,15409 +18093,214,12,44754,5371 +18094,322,12,9042,1399569 +18095,70,12,210940,1099370 +18096,283,12,54893,140902 +18097,265,12,227975,19695 +18098,214,12,20361,1470170 +18099,265,12,135708,1103629 +18100,214,12,378485,1205016 +18101,265,12,302528,1492766 +18102,70,12,47342,136249 +18103,214,12,319999,53617 +18104,265,12,259997,1302511 +18105,214,12,8358,30 +18106,214,12,58244,53228 +18107,265,12,2567,1118241 +18108,144,12,22584,91234 +18109,214,12,239566,53391 +18110,214,12,142012,98456 +18111,265,12,12536,24051 +18112,214,12,4147,1297 +18113,214,12,38732,178256 +18114,214,12,257450,1429694 +18115,214,12,117251,5430 +18116,214,12,10207,7847 +18117,214,12,15179,1145018 +18118,214,12,203819,37270 +18119,214,12,127521,51702 +18120,214,12,21968,1021785 +18121,265,12,313922,1102524 +18122,265,12,340027,1722537 +18123,163,12,255647,1443782 +18124,214,12,37910,1308715 +18125,214,12,274479,6624 +18126,300,12,14,1121874 +18127,214,12,270403,20432 +18128,214,12,2721,543094 +18129,214,12,54022,1050155 +18130,214,12,10436,7170 +18131,214,12,63333,111172 +18132,214,12,371645,1150130 +18133,214,12,65002,16806 +18134,214,12,49963,1617 +18135,214,12,1999,5010 +18136,265,12,11045,67914 +18137,322,12,284052,1785939 +18138,389,12,279096,1386332 +18139,410,12,4147,230436 +18140,214,12,43157,8502 +18141,265,12,14435,61899 +18142,283,12,80389,547 +18143,214,12,6933,9184 +18144,265,12,18998,11359 +18145,393,12,1125,1212071 +18146,265,12,35052,893 +18147,70,12,48231,79536 +18148,214,12,190955,1095253 +18149,265,12,38269,30904 +18150,214,12,244117,1539390 +18151,265,12,315465,1559392 +18152,318,12,20242,1833860 +18153,265,12,4248,1472650 +18154,214,12,67342,993552 +18155,265,12,9828,59663 +18156,214,12,25941,90479 +18157,300,12,82448,852098 +18158,214,12,46368,1317095 +18159,214,12,12311,72061 +18160,70,12,98066,1125685 +18161,70,12,28169,1172667 +18162,283,12,110146,17612 +18163,13,3,408381,1657551 +18164,283,12,157354,1280965 +18165,283,12,82501,72324 +18166,318,12,340101,1801113 +18167,214,12,18633,87227 +18168,265,12,267852,1388533 +18169,214,12,266433,123707 +18170,70,12,13380,2871 +18171,214,12,371645,1550516 +18172,70,12,2613,70592 +18173,265,12,225728,1403457 +18174,214,12,52369,939462 +18175,214,12,10274,64657 +18176,70,12,206563,1426062 +18177,265,12,1452,54212 +18178,214,12,268212,1178432 +18179,393,12,5,20540 +18180,214,12,2075,9578 +18181,70,12,62046,86047 +18182,265,12,245700,65455 +18183,214,12,1058,15209 +18184,265,12,12220,9250 +18185,214,12,809,12087 +18186,265,12,21208,39726 +18187,283,12,260947,60713 +18188,163,12,82865,1846052 +18189,324,3,439050,1749842 +18190,163,12,377447,79158 +18191,214,12,28417,994838 +18192,283,12,10865,7903 +18193,214,12,320588,967523 +18194,265,12,8340,1566432 +18195,265,12,428687,1731670 +18196,265,12,37710,1755040 +18197,214,12,31586,3026 +18198,271,12,151911,1584621 +18199,214,12,13954,117197 +18200,265,12,180383,1388084 +18201,283,12,577,1530 +18202,214,12,5922,27239 +18203,214,12,4806,9184 +18204,265,12,15371,78175 +18205,70,12,1976,14446 +18206,358,12,244786,9250 +18207,283,12,11137,2073 +18208,214,12,16374,80470 +18209,372,12,6687,1129798 +18210,214,12,104556,1195747 +18211,283,12,44363,13585 +18212,163,12,2454,5545 +18213,271,12,14126,1409218 +18214,214,12,286709,93599 +18215,214,12,11001,59920 +18216,214,12,3989,34522 +18217,214,12,9900,32907 +18218,283,12,9716,1046 +18219,214,12,210302,54417 +18220,283,12,134201,1771036 +18221,283,12,37923,2997 +18222,214,12,302026,1433684 +18223,393,12,11045,1717529 +18224,283,12,44943,60501 +18225,214,12,275269,1676431 +18226,214,12,9987,61494 +18227,163,12,284564,21322 +18228,214,12,6341,5053 +18229,283,12,16980,5328 +18230,214,12,9385,24531 +18231,214,12,7551,770 +18232,393,12,294254,1481560 +18233,265,12,549,72585 +18234,265,12,10008,61928 +18235,265,12,209112,556 +18236,283,12,93856,494 +18237,214,12,118283,138178 +18238,214,12,431093,1453654 +18239,283,12,38448,958799 +18240,200,3,337339,1722496 +18241,318,12,8852,1832295 +18242,284,12,1966,1404235 +18243,214,12,197611,119784 +18244,214,12,598,8562 +18245,265,12,84944,1287044 +18246,207,3,339403,1410203 +18247,193,12,56292,1477203 +18248,318,12,343934,1553972 +18249,214,12,169656,937603 +18250,93,12,9352,25729 +18251,163,12,54845,61929 +18252,283,12,122,1326 +18253,283,12,26636,1665869 +18254,214,12,5759,45405 +18255,214,12,60599,1062336 +18256,214,12,4893,39853 +18257,214,12,49787,940630 +18258,265,12,464111,1503826 +18259,214,12,269795,2487 +18260,265,12,9602,56189 +18261,265,12,76163,67975 +18262,283,12,322443,1176357 +18263,283,12,413882,1708062 +18264,283,12,9613,1398505 +18265,283,12,22998,8337 +18266,271,12,8899,73334 +18267,214,12,379019,32965 +18268,214,12,164558,57492 +18269,322,12,9423,1389600 +18270,284,12,55846,1404872 +18271,214,12,102382,977941 +18272,283,12,1481,15326 +18273,163,12,179826,937975 +18274,283,12,10033,5363 +18275,214,12,267815,98256 +18276,265,12,308024,45405 +18277,214,12,11688,61417 +18278,214,12,352164,1521100 +18279,393,12,26390,1024910 +18280,265,12,323675,959114 +18281,283,12,1574,15426 +18282,214,12,27711,80884 +18283,265,12,365942,57618 +18284,271,12,95756,1006755 +18285,265,12,10744,57561 +18286,265,12,82079,1010870 +18287,265,12,334538,94453 +18288,214,12,3033,1057973 +18289,214,12,10041,62346 +18290,283,12,145191,1012678 +18291,70,12,43817,1295743 +18292,214,12,25695,131388 +18293,318,12,41733,1564995 +18294,265,12,365942,54419 +18295,300,12,157843,1907232 +18296,265,12,302699,1451219 +18297,37,3,356752,1841594 +18298,214,12,9885,59998 +18299,214,12,94480,61362 +18300,214,12,3484,32134 +18301,214,12,38602,36117 +18302,283,12,144229,959421 +18303,214,12,72823,34112 +18304,214,12,108365,1043954 +18305,265,12,365942,1735072 +18306,271,12,260522,232858 +18307,283,12,42476,1508356 +18308,214,12,21338,94753 +18309,265,12,9968,43383 +18310,265,12,340215,1630279 +18311,214,12,312138,1263556 +18312,265,12,315837,34882 +18313,214,12,411013,1799845 +18314,163,12,14242,205639 +18315,214,12,73247,12433 +18316,214,12,267935,136 +18317,286,3,77094,545305 +18318,265,12,10425,51452 +18319,214,12,103731,1034679 +18320,214,12,153102,112498 +18321,214,12,62764,72106 +18322,214,12,208529,64716 +18323,214,12,40998,238024 +18324,415,3,339403,1635188 +18325,372,12,236324,1072868 +18326,265,12,10204,56720 +18327,214,12,14869,24308 +18328,265,12,47426,1847717 +18329,265,12,307081,21968 +18330,265,12,9968,61156 +18331,214,12,29416,30678 +18332,70,12,9882,1027737 +18333,322,12,251,1453320 +18334,214,12,2428,18738 +18335,283,12,19918,5490 +18336,265,12,39053,578 +18337,214,12,76642,24756 +18338,127,3,339403,1635195 +18339,265,12,121674,1532929 +18340,163,12,8619,59839 +18341,271,12,315846,1681820 +18342,265,12,10900,59004 +18343,214,12,139718,1174358 +18344,265,12,297736,3293 +18345,214,12,120,123 +18346,214,12,42187,17208 +18347,214,12,12309,30386 +18348,214,12,252680,1085785 +18349,300,12,218778,5541 +18350,227,12,10733,1748477 +18351,214,12,1912,19896 +18352,70,12,13056,60787 +18353,214,12,252888,1334579 +18354,283,12,2486,3311 +18355,283,12,193893,4952 +18356,265,12,238,12288 +18357,214,12,124597,1574811 +18358,283,12,300090,1176140 +18359,265,12,37710,286 +18360,214,12,318553,1084541 +18361,214,12,403450,1376798 +18362,393,12,294272,1594606 +18363,265,12,257534,672646 +18364,214,12,11104,1117959 +18365,214,12,92657,1769 +18366,265,12,12450,69986 +18367,283,12,72917,50027 +18368,214,12,2169,17732 +18369,214,12,598,8570 +18370,214,12,19053,100557 +18371,265,12,331313,51449 +18372,214,12,185156,54448 +18373,283,12,9539,993879 +18374,283,12,374614,91366 +18375,265,12,87481,126518 +18376,214,12,66022,41408 +18377,265,12,244458,10903 +18378,214,12,158900,1157940 +18379,265,12,43499,8502 +18380,300,12,12103,10578 +18381,214,12,226968,68530 +18382,214,12,266102,1030160 +18383,393,12,256347,1547677 +18384,315,12,105860,1688131 +18385,283,12,206647,10496 +18386,271,12,3037,29824 +18387,265,12,1691,11641 +18388,283,12,55563,16570 +18389,372,12,1164,1115009 +18390,265,12,31993,120449 +18391,214,12,21208,10903 +18392,265,12,8470,4767 +18393,214,12,7871,53610 +18394,283,12,85549,1310722 +18395,283,12,67748,1172515 +18396,214,12,9080,7184 +18397,265,12,72711,1014612 +18398,283,12,93676,2952 +18399,163,12,167073,109981 +18400,283,12,76640,1720 +18401,214,12,74753,261083 +18402,271,12,21159,91799 +18403,265,12,216580,1465735 +18404,283,12,84892,39123 +18405,265,12,10739,6994 +18406,214,12,181876,941781 +18407,283,12,201,2532 +18408,214,12,1574,17634 +18409,163,12,260030,1424443 +18410,283,12,383538,59668 +18411,214,12,364379,1523855 +18412,214,12,12289,1117855 +18413,214,12,361183,73383 +18414,214,12,53864,126676 +18415,283,12,360784,51922 +18416,265,12,379,933403 +18417,231,12,433244,1422664 +18418,214,12,13805,35734 +18419,283,12,15556,4023 +18420,214,12,76203,60187 +18421,214,12,84355,1328189 +18422,214,12,45533,86009 +18423,70,12,858,57678 +18424,214,12,68193,943469 +18425,214,12,242240,3778 +18426,214,12,329440,3893 +18427,214,12,84493,1012004 +18428,214,12,177566,236844 +18429,214,12,118451,1294608 +18430,214,12,11302,68937 +18431,214,12,213681,52160 +18432,214,12,691,9861 +18433,265,12,11354,6895 +18434,214,12,8429,54927 +18435,214,12,3989,34517 +18436,214,12,52859,8500 +18437,265,12,266856,1659949 +18438,300,12,60965,232065 +18439,200,3,418437,1573031 +18440,318,12,11024,1673566 +18441,271,12,69921,1108471 +18442,214,12,31555,108999 +18443,393,12,76170,1527912 +18444,283,12,297762,17610 +18445,163,12,193756,1554317 +18446,70,12,1640,1526279 +18447,193,12,356752,549971 +18448,144,12,435,1574669 +18449,265,12,5279,4584 +18450,214,12,337014,1032318 +18451,214,12,46857,137611 +18452,265,12,363479,1130509 +18453,265,12,9716,3658 +18454,283,12,33623,45148 +18455,214,12,161885,606084 +18456,214,12,606,2226 +18457,214,12,13312,939462 +18458,271,12,24469,1319627 +18459,265,12,9843,4018 +18460,214,12,381032,1122300 +18461,70,12,393562,1208685 +18462,214,12,13505,53177 +18463,271,12,27526,98101 +18464,214,12,44436,130851 +18465,265,12,51209,1234 +18466,283,12,333484,1024910 +18467,271,12,28071,97661 +18468,70,12,68737,1392960 +18469,214,12,264646,110642 +18470,283,12,244786,230436 +18471,163,12,16005,79028 +18472,214,12,36094,67065 +18473,283,12,290316,1062338 +18474,214,12,67328,51577 +18475,265,12,369820,1115964 +18476,265,12,50318,949296 +18477,214,12,285181,56377 +18478,265,12,2486,25456 +18479,283,12,2454,2073 +18480,265,12,27941,1099648 +18481,283,12,834,3965 +18482,214,12,9555,13015 +18483,214,12,18530,53097 +18484,214,12,298722,1118300 +18485,265,12,302528,1492771 +18486,214,12,58081,57301 +18487,283,12,11521,67702 +18488,283,12,413452,66493 +18489,214,12,78177,20835 +18490,214,12,85446,20742 +18491,214,12,141,1586 +18492,265,12,203833,9022 +18493,214,12,27259,229832 +18494,283,12,238589,61860 +18495,214,12,68737,54211 +18496,265,12,425774,1707942 +18497,214,12,15934,16866 +18498,214,12,378441,1300939 +18499,214,12,9914,60406 +18500,283,12,46420,76085 +18501,372,12,40990,1391803 +18502,214,12,10849,3658 +18503,389,12,4248,1667271 +18504,283,12,166221,2121 +18505,214,12,196469,73463 +18506,265,12,172847,90593 +18507,70,12,9613,8946 +18508,265,12,9993,61620 +18509,214,12,26679,95998 +18510,265,12,271714,34110 +18511,163,12,336882,1646965 +18512,271,12,92321,1817525 +18513,214,12,76714,37361 +18514,214,12,169,1093 +18515,265,12,42941,60588 +18516,265,12,11880,70817 +18517,214,12,10543,65592 +18518,214,12,214910,1292979 +18519,214,12,22943,89518 +18520,214,12,2637,68602 +18521,214,12,51104,1480840 +18522,283,12,315837,1016177 +18523,214,12,9034,56760 +18524,271,12,29058,98452 +18525,214,12,5516,42906 +18526,214,12,11129,68283 +18527,214,12,266400,1313040 +18528,214,12,14207,62684 +18529,163,12,11370,52036 +18530,214,12,488,6594 +18531,214,12,145191,228783 +18532,163,12,7220,6891 +18533,214,12,199155,1019068 +18534,265,12,219466,1239412 +18535,283,12,8869,958787 +18536,265,12,19235,84796 +18537,318,12,91679,1782625 +18538,214,12,14262,76509 +18539,265,12,13092,73517 +18540,70,12,323929,1416383 +18541,214,12,140814,1113453 +18542,265,12,42487,578813 +18543,265,12,33427,110641 +18544,265,12,45527,40608 +18545,214,12,9292,21220 +18546,214,12,64129,8617 +18547,265,12,66125,74063 +18548,214,12,209248,73469 +18549,265,12,170279,1043687 +18550,265,12,393732,1346144 +18551,214,12,39001,1437639 +18552,127,3,339403,1635202 +18553,214,12,45577,133241 +18554,265,12,381015,586000 +18555,283,12,9904,59745 +18556,265,12,39992,103177 +18557,214,12,39310,36187 +18558,214,12,2046,3954 +18559,214,12,134368,1151 +18560,214,12,339403,2238 +18561,163,12,50126,1396493 +18562,283,12,3933,1602319 +18563,214,12,127424,116190 +18564,271,12,75162,1563597 +18565,214,12,5552,44070 +18566,214,12,1450,1120539 +18567,265,12,50838,59938 +18568,214,12,17386,33008 +18569,214,12,283701,1199160 +18570,214,12,12591,73026 +18571,300,12,395992,1400089 +18572,214,12,17831,3248 +18573,214,12,11655,70366 +18574,283,12,328429,32604 +18575,283,12,7511,3965 +18576,265,12,25241,93414 +18577,214,12,58081,104807 +18578,214,12,407448,1279645 +18579,283,12,227262,124693 +18580,265,12,42542,66989 +18581,283,12,4338,9545 +18582,265,12,423377,1754607 +18583,163,12,403119,1121985 +18584,214,12,42218,101225 +18585,214,12,8049,7290 +18586,271,12,381008,1784766 +18587,70,12,32609,1351553 +18588,214,12,83430,100747 +18589,214,12,33343,1188797 +18590,214,12,314065,1464971 +18591,214,12,81225,584712 +18592,214,12,412202,73290 +18593,283,12,403130,1033104 +18594,315,12,9352,1552051 +18595,283,12,79316,494 +18596,372,12,152736,1207754 +18597,265,12,10829,26479 +18598,372,12,15013,46293 +18599,214,12,25855,57215 +18600,214,12,857,6048 +18601,283,12,57489,1757093 +18602,265,12,9893,60070 +18603,214,12,14976,16294 +18604,265,12,7459,986035 +18605,214,12,1418,16983 +18606,283,12,331161,1176357 +18607,214,12,82654,928447 +18608,283,12,13954,21691 +18609,283,12,19255,495 +18610,214,12,118957,1080780 +18611,214,12,300187,1243079 +18612,322,12,383538,1851900 +18613,322,12,16432,1418516 +18614,214,12,125510,1462945 +18615,214,12,139244,1110402 +18616,265,12,121674,15726 +18617,322,12,4413,1406907 +18618,214,12,37103,116849 +18619,214,12,6687,67683 +18620,265,12,28859,12477 +18621,265,12,26116,16830 +18622,372,12,48118,983022 +18623,214,12,381032,1372045 +18624,265,12,213121,7879 +18625,214,12,256092,80683 +18626,214,12,63578,53614 +18627,265,12,300667,1497843 +18628,283,12,369406,77573 +18629,214,12,370755,1516841 +18630,358,12,8870,1546580 +18631,214,12,121230,88579 +18632,214,12,11553,69831 +18633,265,12,66125,1122770 +18634,214,12,121462,148103 +18635,214,12,45452,70676 +18636,265,12,257344,62637 +18637,283,12,423377,1317573 +18638,214,12,84348,1061517 +18639,265,12,11361,66203 +18640,292,3,339403,1635288 +18641,214,12,5753,46968 +18642,300,12,20174,98452 +18643,283,12,64720,585679 +18644,214,12,369885,24 +18645,265,12,2567,1032 +18646,214,12,135670,1103522 +18647,227,12,55420,1575194 +18648,265,12,332411,78336 +18649,283,12,17287,1273395 +18650,169,3,445993,1424738 +18651,372,12,1589,61923 +18652,214,12,364111,1292309 +18653,283,12,209271,5328 +18654,265,12,16092,57016 +18655,214,12,173467,140908 +18656,283,12,38303,63672 +18657,265,12,5279,43382 +18658,214,12,132601,24953 +18659,283,12,53949,1416039 +18660,70,12,109610,35327 +18661,265,12,26809,7879 +18662,214,12,703,10546 +18663,265,12,2034,19012 +18664,372,12,124054,1085027 +18665,265,12,121674,73524 +18666,214,12,13934,8103 +18667,214,12,25796,58070 +18668,70,12,91459,2046 +18669,214,12,37254,117196 +18670,265,12,17622,1122010 +18671,214,12,57809,23430 +18672,283,12,11902,62930 +18673,214,12,45988,1443843 +18674,214,12,25983,31268 +18675,214,12,149509,59291 +18676,372,12,14452,1208315 +18677,214,12,7326,52451 +18678,214,12,181454,1735499 +18679,70,12,338063,1581571 +18680,214,12,14126,2147 +18681,271,12,35852,114831 +18682,265,12,301804,1295831 +18683,70,12,67822,224076 +18684,214,12,288952,1457094 +18685,164,3,354287,1532215 +18686,265,12,82624,928300 +18687,265,12,415542,1230219 +18688,70,12,38554,83061 +18689,214,12,49013,970529 +18690,163,12,9427,1514009 +18691,283,12,4380,36807 +18692,214,12,76684,550326 +18693,214,12,1966,20295 +18694,283,12,172386,1195356 +18695,271,12,324440,1606213 +18696,214,12,303542,69547 +18697,214,12,11601,37926 +18698,163,12,336804,1437933 +18699,214,12,82655,542413 +18700,163,12,896,1559098 +18701,214,12,42204,1864235 +18702,265,12,19901,51032 +18703,214,12,53879,1274641 +18704,214,12,46261,5162 +18705,214,12,11077,29015 +18706,265,12,41733,59833 +18707,286,3,19625,53679 +18708,214,12,37481,85453 +18709,265,12,177271,10949 +18710,214,12,147939,1127742 +18711,283,12,295964,16363 +18712,214,12,67,32463 +18713,214,12,16938,12698 +18714,214,12,10744,66708 +18715,283,12,26422,6233 +18716,144,12,297762,1692901 +18717,265,12,337751,1228498 +18718,318,12,121598,1653095 +18719,214,12,76600,8529 +18720,283,12,68737,5362 +18721,144,12,379019,1780142 +18722,231,12,433244,1422665 +18723,214,12,8491,56003 +18724,283,12,157843,1519284 +18725,315,12,79593,1640574 +18726,372,12,227156,1383002 +18727,214,12,2977,29229 +18728,265,12,12636,50661 +18729,283,12,539,27006 +18730,214,12,10696,10685 +18731,372,12,128081,1621190 +18732,393,12,311324,989750 +18733,265,12,42684,999763 +18734,214,12,97365,19112 +18735,214,12,188161,1089071 +18736,214,12,17495,2359 +18737,214,12,1912,3722 +18738,283,12,127560,1195356 +18739,283,12,8080,1034748 +18740,265,12,56292,40592 +18741,70,12,857,75804 +18742,214,12,104471,11523 +18743,200,3,126889,1444969 +18744,318,12,623,1408795 +18745,214,12,12236,29452 +18746,214,12,4893,40354 +18747,393,12,126889,1538204 +18748,283,12,11450,897 +18749,163,12,9059,1215611 +18750,214,12,10265,1349 +18751,283,12,16980,4023 +18752,214,12,27085,90077 +18753,271,12,43438,41400 +18754,214,12,35,1219059 +18755,214,12,9914,60401 +18756,265,12,256962,942904 +18757,300,12,48949,10546 +18758,214,12,31276,63789 +18759,214,12,276935,87347 +18760,214,12,18692,4123 +18761,265,12,51955,932172 +18762,393,12,82624,1600785 +18763,214,12,71668,102630 +18764,70,12,3682,10684 +18765,271,12,14145,1416976 +18766,70,12,307931,1298356 +18767,214,12,32610,9055 +18768,214,12,120854,1072791 +18769,127,3,383538,1851890 +18770,214,12,5638,81542 +18771,265,12,284288,1763416 +18772,214,12,16997,1128262 +18773,283,12,18190,3686 +18774,265,12,110588,19707 +18775,265,12,149883,1302020 +18776,214,12,36612,29098 +18777,214,12,241930,1121480 +18778,107,12,256962,1819165 +18779,322,12,77949,1400804 +18780,163,12,10950,18789 +18781,214,12,50463,7200 +18782,265,12,5460,44633 +18783,214,12,11618,16158 +18784,214,12,13346,9178 +18785,70,12,152042,1816776 +18786,283,12,157,1827 +18787,265,12,201581,1183665 +18788,214,12,15935,75910 +18789,265,12,252171,549974 +18790,214,12,46247,5719 +18791,13,12,11206,15671 +18792,214,12,287483,1645845 +18793,214,12,10458,1071 +18794,214,12,31263,66224 +18795,283,12,29444,53812 +18796,214,12,12101,71239 +18797,214,12,62213,938107 +18798,283,12,44129,15426 +18799,283,12,31532,1077528 +18800,214,12,10025,38416 +18801,283,12,370234,21321 +18802,214,12,325263,193965 +18803,271,12,14430,537175 +18804,393,12,45244,1605653 +18805,283,12,258193,893948 +18806,372,12,66894,1531421 +18807,214,12,109472,1046566 +18808,283,12,6948,561 +18809,283,12,1904,13064 +18810,265,12,337751,1252901 +18811,372,12,44502,1646881 +18812,214,12,168259,11874 +18813,214,12,4441,37270 +18814,283,12,236737,6531 +18815,265,12,65759,59774 +18816,271,12,63831,1673901 +18817,214,12,78094,1321905 +18818,214,12,290764,25046 +18819,144,12,634,1404870 +18820,214,12,18912,1681829 +18821,214,12,17209,81460 +18822,214,12,54752,2708 +18823,214,12,8064,5125 +18824,265,12,40990,23862 +18825,283,12,167073,11295 +18826,299,12,14,91173 +18827,163,12,122081,94541 +18828,283,12,15045,1634776 +18829,283,12,9664,1325 +18830,144,12,413998,1895005 +18831,231,12,334538,1658466 +18832,265,12,54893,1077373 +18833,265,12,7220,47288 +18834,214,12,59678,11112 +18835,214,12,376292,34967 +18836,283,12,1950,1262 +18837,214,12,17962,1087688 +18838,214,12,13596,53758 +18839,70,12,431093,72128 +18840,271,12,10440,59970 +18841,283,12,258251,1162253 +18842,283,12,243940,5914 +18843,214,12,4806,68602 +18844,214,12,13477,16837 +18845,265,12,2195,23176 +18846,214,12,17640,9055 +18847,265,12,337958,77571 +18848,214,12,388862,1377410 +18849,214,12,69428,581195 +18850,283,12,44943,60503 +18851,214,12,26689,115355 +18852,214,12,68347,85203 +18853,265,12,92635,995467 +18854,214,12,287587,1273857 +18855,163,12,284289,1462038 +18856,214,12,87894,89226 +18857,214,12,207641,1096946 +18858,283,12,121824,1034748 +18859,214,12,40346,57617 +18860,214,12,384737,96357 +18861,265,12,12121,71336 +18862,214,12,131475,1093354 +18863,214,12,112284,10601 +18864,283,12,354287,3081 +18865,283,12,10193,64449 +18866,214,12,13685,21067 +18867,214,12,348689,1621107 +18868,283,12,10409,61772 +18869,265,12,2613,56790 +18870,265,12,410718,6193 +18871,93,12,401164,156832 +18872,283,12,266856,16363 +18873,214,12,11450,69138 +18874,283,12,11521,2952 +18875,372,12,50318,27180 +18876,214,12,273481,1519864 +18877,70,12,285858,1456312 +18878,265,12,9314,57268 +18879,372,12,9902,946610 +18880,214,12,20919,62345 +18881,214,12,44282,1031006 +18882,214,12,11880,70816 +18883,372,12,251227,1193469 +18884,70,12,8247,66513 +18885,214,12,6687,19809 +18886,214,12,3554,18878 +18887,283,12,223485,16899 +18888,70,12,22477,42405 +18889,214,12,10458,1073 +18890,214,12,25132,5911 +18891,214,12,203264,236047 +18892,214,12,43832,11435 +18893,214,12,4644,16831 +18894,214,12,128169,132118 +18895,265,12,10047,62516 +18896,214,12,17216,968862 +18897,70,12,107073,66229 +18898,283,12,157424,1301657 +18899,265,12,12540,41589 +18900,299,12,419192,1688391 +18901,265,12,16417,1158708 +18902,214,12,220820,1138751 +18903,265,12,29786,1464024 +18904,372,12,318553,1646811 +18905,163,12,19101,65410 +18906,283,12,19116,60501 +18907,283,12,43923,119179 +18908,70,12,14295,947016 +18909,214,12,126889,22498 +18910,372,12,173205,1649370 +18911,214,12,116327,31252 +18912,283,12,166,1968 +18913,214,12,2349,1844 +18914,214,12,186585,30834 +18915,286,3,450530,1147899 +18916,265,12,76203,465 +18917,214,12,35025,20674 +18918,283,12,773,961165 +18919,214,12,7234,52134 +18920,283,12,294652,37281 +18921,283,12,312831,983911 +18922,214,12,32451,74591 +18923,318,12,159095,1672340 +18924,214,12,205891,1188273 +18925,214,12,7220,869 +18926,214,12,12309,66907 +18927,214,12,110,1134 +18928,271,12,70734,1386623 +18929,214,12,323929,1423660 +18930,214,12,975,240 +18931,214,12,346672,3950 +18932,214,12,271185,1493982 +18933,300,12,9928,1604012 +18934,214,12,76163,22815 +18935,283,12,35052,2635 +18936,214,12,63831,73332 +18937,358,12,241639,1147304 +18938,265,12,4441,37273 +18939,265,12,7942,53359 +18940,214,12,434873,1754119 +18941,265,12,308024,36801 +18942,265,12,9296,57188 +18943,283,12,248087,1537407 +18944,283,12,56669,39032 +18945,265,12,24420,956268 +18946,214,12,99698,1001263 +18947,265,12,28417,1031599 +18948,214,12,97593,1479129 +18949,214,12,476,6467 +18950,214,12,287,4053 +18951,283,12,38150,8313 +18952,265,12,239566,52452 +18953,214,12,10727,66748 +18954,214,12,9904,60217 +18955,283,12,145135,7415 +18956,283,12,102,959464 +18957,283,12,226140,1311274 +18958,265,12,11247,58183 +18959,214,12,10008,56839 +18960,214,12,15936,78976 +18961,214,12,65496,543839 +18962,7,3,339403,1529272 +18963,214,12,7549,17268 +18964,214,12,236808,1114577 +18965,231,12,52936,1109790 +18966,214,12,10087,63123 +18967,214,12,263341,59839 +18968,283,12,19403,1263 +18969,271,12,46982,1537638 +18970,214,12,426264,1798644 +18971,214,12,99698,1606179 +18972,214,12,9841,26849 +18973,265,12,342917,10949 +18974,163,12,32049,1833606 +18975,265,12,62764,54873 +18976,214,12,54845,566919 +18977,214,12,41035,90077 +18978,214,12,25998,1178906 +18979,70,12,22744,40 +18980,214,12,11385,11435 +18981,214,12,156,1015 +18982,214,12,196469,107830 +18983,283,12,2907,5490 +18984,265,12,70368,1004059 +18985,214,12,83761,1118641 +18986,214,12,29352,103129 +18987,265,12,1271,6874 +18988,283,12,157843,1210331 +18989,214,12,33250,58448 +18990,283,12,61341,45125 +18991,265,12,11653,18897 +18992,271,12,10948,1520694 +18993,214,12,15177,77968 +18994,265,12,20941,69869 +18995,265,12,245891,1413501 +18996,283,12,9095,1046 +18997,283,12,114577,161589 +18998,70,12,9427,9008 +18999,214,12,172011,6818 +19000,283,12,400,5507 +19001,214,12,227348,84348 +19002,70,12,9717,1299126 +19003,322,12,76163,1350260 +19004,163,12,330459,1713833 +19005,36,12,379019,1729545 +19006,265,12,139826,1092727 +19007,214,12,47794,43811 +19008,214,12,193893,1320090 +19009,214,12,28510,14695 +19010,271,12,25918,1056670 +19011,214,12,35129,47374 +19012,271,12,68179,60250 +19013,214,12,86709,76467 +19014,214,12,11655,17001 +19015,283,12,6068,897 +19016,265,12,277558,1002342 +19017,283,12,88794,11295 +19018,214,12,426230,1728461 +19019,214,12,248087,1537402 +19020,271,12,4266,36482 +19021,265,12,40041,1311623 +19022,214,12,322487,1799672 +19023,265,12,11133,27963 +19024,265,12,5123,41288 +19025,214,12,228970,52993 +19026,214,12,47310,9055 +19027,214,12,11485,6993 +19028,214,12,15092,3955 +19029,214,12,106747,34340 +19030,214,12,98355,1017365 +19031,70,12,67377,25799 +19032,214,12,91076,52989 +19033,271,12,42512,12378 +19034,265,12,123109,60836 +19035,300,12,6557,1662774 +19036,214,12,11001,11874 +19037,214,12,174645,1157591 +19038,265,12,82990,54248 +19039,214,12,315882,1103619 +19040,393,12,353686,1190100 +19041,214,12,55347,236604 +19042,214,12,123109,60837 +19043,214,12,22429,87347 +19044,70,12,10204,1472327 +19045,214,12,158967,1326479 +19046,372,12,400174,1561051 +19047,214,12,14976,1031586 +19048,70,12,921,6188 +19049,265,12,228970,1394489 +19050,283,12,10096,2242 +19051,70,12,42764,1766551 +19052,214,12,14128,1116911 +19053,265,12,45273,986719 +19054,214,12,152748,131400 +19055,70,12,41970,1359571 +19056,214,12,345438,117202 +19057,214,12,22998,14639 +19058,214,12,30374,133082 +19059,283,12,580,13585 +19060,214,12,82696,928631 +19061,265,12,356752,1841600 +19062,214,12,12617,41408 +19063,214,12,49500,1098738 +19064,214,12,379,1223 +19065,265,12,14459,75133 +19066,214,12,62732,230717 +19067,265,12,193756,954441 +19068,214,12,342472,1800387 +19069,214,12,64942,71332 +19070,214,12,306966,17083 +19071,372,12,368006,1414453 +19072,214,12,287903,54211 +19073,265,12,3115,18604 +19074,283,12,921,2874 +19075,309,12,9946,1633952 +19076,163,12,15749,1031469 +19077,372,12,10268,55921 +19078,163,12,284296,4720 +19079,214,12,12526,16831 +19080,318,12,5,1402054 +19081,265,12,62720,2663 +19082,214,12,244786,84348 +19083,265,12,152532,1279972 +19084,214,12,298935,935269 +19085,214,12,9655,7200 +19086,214,12,73984,14520 +19087,214,12,333884,144273 +19088,214,12,31947,19051 +19089,214,12,99318,10601 +19090,300,12,13965,76212 +19091,214,12,80720,76381 +19092,265,12,352025,424106 +19093,283,12,39578,20775 +19094,283,12,9042,1034748 +19095,265,12,31221,107796 +19096,265,12,241254,65814 +19097,214,12,92635,128979 +19098,283,12,55694,65163 +19099,214,12,9899,60130 +19100,214,12,277710,1295448 +19101,214,12,274060,29098 +19102,271,12,46567,1008505 +19103,214,12,58757,65322 +19104,283,12,111839,547 +19105,265,12,59961,35179 +19106,169,3,340101,1762208 +19107,214,12,67822,213610 +19108,265,12,270672,206485 +19109,265,12,7555,45830 +19110,214,12,35623,1703749 +19111,214,12,36375,13570 +19112,214,12,68123,12737 +19113,214,12,57201,1704 +19114,214,12,126323,1199826 +19115,214,12,9655,58376 +19116,214,12,14527,29688 +19117,283,12,12526,897 +19118,283,12,10708,14377 +19119,283,12,293863,1034748 +19120,214,12,334,4769 +19121,283,12,18998,959421 +19122,214,12,6947,2997 +19123,265,12,284052,113674 +19124,163,12,549,7483 +19125,214,12,14750,1247194 +19126,283,12,271404,935493 +19127,214,12,977,10092 +19128,283,12,284293,19689 +19129,283,12,241855,1448545 +19130,372,12,290999,1361566 +19131,214,12,140818,934172 +19132,283,12,14505,1530086 +19133,214,12,44123,555670 +19134,271,12,152989,1179894 +19135,214,12,6589,4507 +19136,214,12,132122,234569 +19137,322,12,109424,1408405 +19138,214,12,79526,13499 +19139,265,12,10407,2384 +19140,265,12,44960,1228383 +19141,265,12,119409,1631195 +19142,283,12,8916,12090 +19143,214,12,42532,90055 +19144,214,12,4825,13570 +19145,214,12,71329,1075658 +19146,214,12,12422,5268 +19147,214,12,20968,1325530 +19148,214,12,359549,224740 +19149,70,12,10476,60475 +19150,265,12,297853,1790465 +19151,214,12,228496,1337319 +19152,214,12,83430,54253 +19153,265,12,70436,62982 +19154,214,12,10176,1546643 +19155,214,12,2034,20908 +19156,265,12,179826,1689077 +19157,214,12,46931,1595168 +19158,265,12,131689,1093522 +19159,214,12,374475,583516 +19160,214,12,322487,1799670 +19161,214,12,211879,137493 +19162,214,12,55615,1126291 +19163,214,12,185460,65769 +19164,214,12,193893,65734 +19165,265,12,5279,43384 +19166,214,12,16985,23485 +19167,265,12,270774,1877780 +19168,214,12,4285,3928 +19169,214,12,35,1128338 +19170,107,12,297762,1824272 +19171,322,12,214081,1367657 +19172,107,12,263115,1821917 +19173,214,12,329718,33442 +19174,214,12,44936,1432702 +19175,214,12,10750,66626 +19176,214,12,22476,2487 +19177,214,12,86391,1152091 +19178,265,12,37710,969757 +19179,265,12,9032,29015 +19180,265,12,67377,5398 +19181,265,12,10362,20567 +19182,214,12,223946,1404674 +19183,322,12,381015,1654026 +19184,265,12,69668,114409 +19185,163,12,345925,1382242 +19186,283,12,99,1451817 +19187,265,12,301875,578 +19188,265,12,329865,1622445 +19189,214,12,271718,41039 +19190,214,12,23223,138676 +19191,283,12,16784,7495 +19192,283,12,10320,1034748 +19193,214,12,171357,1153757 +19194,214,12,81477,8333 +19195,214,12,4134,34875 +19196,265,12,17209,6225 +19197,163,12,20123,9863 +19198,283,12,284289,51922 +19199,214,12,323679,12590 +19200,214,12,340103,1547767 +19201,214,12,25388,1125463 +19202,283,12,7548,23424 +19203,283,12,238,2871 +19204,214,12,23397,164817 +19205,271,12,43596,590704 +19206,265,12,172828,155945 +19207,214,12,60140,230592 +19208,214,12,409,1310 +19209,214,12,31411,3633 +19210,300,12,755,954600 +19211,265,12,17622,966149 +19212,318,12,10804,1408795 +19213,214,12,257377,37468 +19214,214,12,23385,40148 +19215,214,12,29101,43710 +19216,214,12,2861,6100 +19217,214,12,965,14510 +19218,214,12,298584,1375905 +19219,265,12,316654,85034 +19220,393,12,3172,41677 +19221,265,12,38749,17173 +19222,70,12,110146,187074 +19223,322,12,378441,1797478 +19224,214,12,22881,25455 +19225,271,12,703,3658 +19226,214,12,9078,2106 +19227,283,12,244316,178539 +19228,283,12,36968,63784 +19229,393,12,287903,1085296 +19230,318,12,2300,1870702 +19231,214,12,47878,72559 +19232,70,12,60269,113880 +19233,214,12,9589,673 +19234,214,12,15527,26849 +19235,214,12,10714,66907 +19236,214,12,30996,107482 +19237,322,12,2675,1389575 +19238,214,12,49524,8181 +19239,283,12,57597,25297 +19240,358,12,19754,63048 +19241,163,12,47112,45119 +19242,265,12,10780,7505 +19243,214,12,13946,1039595 +19244,265,12,351211,969645 +19245,283,12,52661,7511 +19246,214,12,19688,1548067 +19247,283,12,14527,1516101 +19248,70,12,14459,92177 +19249,265,12,260947,1304137 +19250,214,12,126550,45279 +19251,214,12,146,65357 +19252,283,12,308269,1447878 +19253,214,12,52520,3950 +19254,283,12,79382,1106911 +19255,214,12,55197,1115028 +19256,214,12,415358,1034447 +19257,265,12,380057,1168389 +19258,283,12,10204,1332509 +19259,283,12,200,2400 +19260,271,12,2805,1653580 +19261,283,12,269149,137198 +19262,265,12,2666,57857 +19263,318,12,334527,1853834 +19264,265,12,293660,91269 +19265,214,12,223485,1209627 +19266,265,12,257176,1443567 +19267,283,12,11547,1001765 +19268,265,12,22897,1123348 +19269,214,12,81463,46644 +19270,70,12,393732,1417939 +19271,283,12,82929,61501 +19272,322,12,126889,1401743 +19273,193,12,356752,1088577 +19274,163,12,356752,1841620 +19275,265,12,11328,41538 +19276,265,12,20,309 +19277,265,12,84284,113461 +19278,214,12,1165,15726 +19279,214,12,76170,6968 +19280,214,12,46760,86519 +19281,214,12,120837,8502 +19282,214,12,420703,557411 +19283,283,12,868,2623 +19284,214,12,48489,1135340 +19285,265,12,70074,59522 +19286,214,12,19855,85277 +19287,214,12,171738,1312456 +19288,265,12,440508,1783552 +19289,372,12,411741,1099734 +19290,214,12,77079,1754330 +19291,283,12,20,2325 +19292,283,12,28577,1263 +19293,70,12,47194,1351474 +19294,214,12,179715,130402 +19295,265,12,310133,1458719 +19296,265,12,249021,236844 +19297,214,12,81522,3778 +19298,265,12,8470,65753 +19299,214,12,80142,588883 +19300,214,12,199373,62644 +19301,214,12,26946,102429 +19302,214,12,119433,112529 +19303,214,12,250066,1495518 +19304,214,12,9352,57406 +19305,214,12,131689,1267019 +19306,393,12,949,1535952 +19307,283,12,140607,765144 +19308,322,12,242224,1428879 +19309,214,12,106417,1047249 +19310,265,12,413782,1050737 +19311,265,12,18684,14523 +19312,265,12,241258,1319040 +19313,214,12,9317,11203 +19314,265,12,9613,6225 +19315,214,12,5482,44955 +19316,283,12,429238,1468070 +19317,214,12,11534,69761 +19318,214,12,8204,46088 +19319,322,12,12113,1401599 +19320,214,12,128412,1489478 +19321,70,12,368006,1640307 +19322,265,12,10543,5283 +19323,214,12,227700,52259 +19324,214,12,224251,90783 +19325,265,12,15935,78964 +19326,265,12,13685,3388 +19327,214,12,393732,89781 +19328,163,12,10710,10956 +19329,393,12,194,960658 +19330,283,12,51947,13320 +19331,214,12,165,1058 +19332,265,12,49524,68691 +19333,70,12,30934,1387156 +19334,265,12,12591,61119 +19335,318,12,284052,1697787 +19336,214,12,64807,71079 +19337,214,12,8342,948114 +19338,283,12,50506,13372 +19339,214,12,11600,19949 +19340,214,12,53128,147821 +19341,283,12,1450,60946 +19342,214,12,88005,322 +19343,283,12,109491,6347 +19344,214,12,107073,965877 +19345,214,12,110588,81460 +19346,214,12,286372,1375919 +19347,214,12,11472,10965 +19348,372,12,9514,57246 +19349,265,12,9034,56759 +19350,214,12,56858,1511681 +19351,214,12,174188,1175347 +19352,214,12,3102,99269 +19353,265,12,31867,114410 +19354,214,12,24750,27240 +19355,214,12,390343,1798948 +19356,315,12,32577,1403459 +19357,214,12,425774,1707967 +19358,214,12,8988,2997 +19359,265,12,57683,45829 +19360,283,12,127585,17611 +19361,214,12,19423,62901 +19362,265,12,10075,15244 +19363,144,12,297762,1824236 +19364,214,12,414453,1102080 +19365,214,12,269173,76242 +19366,271,12,16444,119324 +19367,214,12,317,4649 +19368,265,12,187028,1728935 +19369,214,12,69560,1185062 +19370,214,12,234377,34732 +19371,70,12,14181,1516271 +19372,214,12,28417,952510 +19373,214,12,277710,1207754 +19374,364,12,173205,1852948 +19375,300,12,69,414 +19376,7,3,339403,1635321 +19377,265,12,11983,1202 +19378,214,12,42569,68493 +19379,283,12,70436,53680 +19380,283,12,14869,1720 +19381,265,12,40983,222885 +19382,214,12,14134,53973 +19383,214,12,10055,62576 +19384,265,12,38509,6468 +19385,283,12,29805,668 +19386,214,12,182131,1164928 +19387,70,12,4547,1474687 +19388,283,12,63360,15409 +19389,70,12,199155,1076190 +19390,271,12,211,10235 +19391,214,12,150065,564209 +19392,214,12,8194,3223 +19393,214,12,287,2145 +19394,214,12,213983,1797858 +19395,163,12,285270,1367913 +19396,318,12,227306,1866374 +19397,271,12,345918,1870221 +19398,214,12,9314,2043 +19399,265,12,44363,1462813 +19400,227,12,264525,1857585 +19401,265,12,424488,582915 +19402,283,12,163,495 +19403,372,12,10077,62927 +19404,214,12,193756,183044 +19405,214,12,336050,1644752 +19406,214,12,18447,30550 +19407,214,12,37926,1435164 +19408,214,12,260522,1303423 +19409,214,12,201223,1319218 +19410,214,12,12483,60588 +19411,283,12,6440,4023 +19412,214,12,85472,932220 +19413,214,12,96724,21378 +19414,70,12,18692,1091871 +19415,163,12,29101,74888 +19416,265,12,263115,7624 +19417,265,12,101325,1560960 +19418,163,12,89492,1122562 +19419,214,12,15414,40282 +19420,70,12,12614,1433977 +19421,322,12,11172,1472378 +19422,271,12,7548,32257 +19423,265,12,12561,18604 +19424,315,12,8470,1598766 +19425,70,12,2288,60190 +19426,283,12,9882,23349 +19427,283,12,2021,4142 +19428,214,12,1539,17363 +19429,214,12,2321,16296 +19430,214,12,8464,697538 +19431,265,12,257450,1517548 +19432,214,12,11007,17828 +19433,265,12,10198,1615555 +19434,283,12,16890,2952 +19435,214,12,25655,1025715 +19436,214,12,17978,10770 +19437,231,12,10204,59004 +19438,231,12,270774,1877778 +19439,214,12,786,11653 +19440,283,12,69315,1197284 +19441,315,12,45132,1129323 +19442,163,12,286532,1382731 +19443,271,12,49940,79284 +19444,214,12,242090,1417301 +19445,283,12,11788,978121 +19446,107,12,284052,1785937 +19447,214,12,107593,14446 +19448,164,3,337339,1907226 +19449,283,12,32604,1618182 +19450,283,12,9563,5914 +19451,283,12,333352,3965 +19452,283,12,62211,57673 +19453,214,12,86391,1152089 +19454,265,12,2758,8305 +19455,283,12,10204,2952 +19456,214,12,279096,133357 +19457,214,12,24927,1597556 +19458,393,12,354287,1699498 +19459,144,12,22584,1529475 +19460,283,12,791,2532 +19461,70,12,14452,1018754 +19462,283,12,44119,59668 +19463,214,12,315841,13246 +19464,393,12,77930,1538204 +19465,214,12,98066,84348 +19466,214,12,16993,32790 +19467,214,12,12289,20638 +19468,214,12,47194,1351468 +19469,70,12,25834,58221 +19470,283,12,294254,2215 +19471,265,12,331313,1470942 +19472,214,12,52302,18604 +19473,214,12,29698,135033 +19474,107,12,419430,1758349 +19475,283,12,146233,5328 +19476,214,12,60994,15756 +19477,283,12,37534,53648 +19478,214,12,70074,16486 +19479,283,12,2274,2031 +19480,144,12,8204,1684368 +19481,265,12,244458,17451 +19482,214,12,13440,16297 +19483,318,12,413998,1873488 +19484,163,12,277710,1562468 +19485,265,12,88075,22598 +19486,214,12,19901,51541 +19487,214,12,97051,543842 +19488,265,12,12103,1296 +19489,214,12,23830,90607 +19490,70,12,9297,937231 +19491,214,12,274504,622844 +19492,214,12,10837,67056 +19493,70,12,8414,1672003 +19494,214,12,401164,1632160 +19495,214,12,113148,1152092 +19496,372,12,9030,62841 +19497,271,12,198795,1584969 +19498,283,12,11593,1484 +19499,214,12,21712,90162 +19500,265,12,340215,1630285 +19501,283,12,267852,1622317 +19502,283,12,38448,1302 +19503,214,12,44123,555669 +19504,214,12,84772,931237 +19505,214,12,42552,102429 +19506,214,12,199985,1177546 +19507,70,12,218582,41753 +19508,265,12,42532,933462 +19509,300,12,693,10398 +19510,283,12,1271,17611 +19511,214,12,115712,1161459 +19512,300,12,29143,57652 +19513,214,12,87826,63516 +19514,214,12,10396,4052 +19515,265,12,120,1311 +19516,265,12,11330,41538 +19517,214,12,20968,76813 +19518,214,12,8272,17450 +19519,283,12,228066,474 +19520,283,12,6972,52905 +19521,70,12,128866,1665456 +19522,214,12,212756,45118 +19523,283,12,18098,16363 +19524,214,12,28730,21961 +19525,214,12,42188,2035 +19526,265,12,9613,58047 +19527,265,12,428355,562673 +19528,70,12,154371,115466 +19529,265,12,10841,34494 +19530,214,12,165718,12181 +19531,214,12,10539,510 +19532,214,12,126889,1723 +19533,271,12,13849,1413929 +19534,300,12,397422,59724 +19535,214,12,66247,585081 +19536,283,12,62837,5328 +19537,163,12,25919,79415 +19538,214,12,14552,1448443 +19539,315,12,256962,1819164 +19540,214,12,40863,18897 +19541,214,12,2675,664 +19542,214,12,121234,24939 +19543,214,12,102155,1030271 +19544,265,12,244316,137485 +19545,283,12,52867,1416039 +19546,265,12,301804,1491437 +19547,214,12,340275,5281 +19548,163,12,122081,1330530 +19549,214,12,184098,31121 +19550,214,12,12506,4786 +19551,265,12,245891,1413500 +19552,214,12,16417,383819 +19553,265,12,15936,78973 +19554,214,12,10708,59416 +19555,214,12,9899,60131 +19556,214,12,276909,1351683 +19557,318,12,20648,1537115 +19558,214,12,105077,1115249 +19559,283,12,273404,1073037 +19560,283,12,42542,163198 +19561,214,12,116312,729995 +19562,70,12,858,12923 +19563,214,12,10075,3953 +19564,265,12,356326,42099 +19565,214,12,307479,545330 +19566,214,12,16444,11493 +19567,214,12,51044,834 +19568,265,12,294652,1292272 +19569,283,12,13162,56639 +19570,315,12,15156,72110 +19571,214,12,41468,116849 +19572,265,12,5915,46588 +19573,265,12,286532,1242109 +19574,214,12,266373,1377010 +19575,393,12,77246,494 +19576,214,12,51209,38577 +19577,214,12,10909,6590 +19578,214,12,36658,2095 +19579,214,12,40085,29098 +19580,214,12,31984,607081 +19581,214,12,20304,57561 +19582,265,12,44502,55418 +19583,283,12,15661,19689 +19584,214,12,12763,60026 +19585,214,12,103433,30053 +19586,214,12,10750,66628 +19587,214,12,330947,1024274 +19588,283,12,306966,967203 +19589,214,12,329206,1442573 +19590,283,12,254918,2952 +19591,214,12,198795,987417 +19592,214,12,9264,57066 +19593,283,12,15239,94134 +19594,214,12,11777,64061 +19595,214,12,12477,55667 +19596,214,12,10077,62926 +19597,265,12,616,3222 +19598,286,3,415633,1322395 +19599,214,12,95536,5268 +19600,283,12,13920,6347 +19601,214,12,3682,27556 +19602,265,12,62046,971109 +19603,214,12,220287,1210545 +19604,70,12,27085,14897 +19605,214,12,22602,34799 +19606,163,12,40990,62659 +19607,214,12,294254,91161 +19608,283,12,70667,76571 +19609,265,12,664,488 +19610,70,12,110146,1034473 +19611,163,12,73424,139080 +19612,214,12,184155,82796 +19613,214,12,287483,1393092 +19614,112,3,442752,1674071 +19615,265,12,376394,1559473 +19616,214,12,2742,3056 +19617,214,12,12636,50661 +19618,214,12,274857,956 +19619,283,12,10070,1594 +19620,214,12,77585,76715 +19621,283,12,43727,39123 +19622,214,12,82624,1084866 +19623,214,12,408509,41793 +19624,318,12,176,1817652 +19625,265,12,17654,72102 +19626,70,12,56292,75477 +19627,265,12,64215,1095113 +19628,214,12,24624,21479 +19629,214,12,2102,14842 +19630,214,12,38950,53007 +19631,214,12,30709,41157 +19632,283,12,18843,53899 +19633,265,12,82519,53276 +19634,214,12,10467,41587 +19635,70,12,38269,117733 +19636,214,12,11960,71067 +19637,214,12,26390,1117434 +19638,283,12,15,1722105 +19639,283,12,69315,5362 +19640,214,12,50779,1728390 +19641,393,12,93856,935493 +19642,214,12,225728,37276 +19643,214,12,9609,52897 +19644,163,12,22328,1423959 +19645,271,12,105548,1796883 +19646,214,12,96238,68185 +19647,283,12,8292,23545 +19648,214,12,80389,1026247 +19649,214,12,9095,21643 +19650,265,12,3549,1174 +19651,214,12,1995,490 +19652,214,12,298722,1032318 +19653,265,12,9667,31520 +19654,265,12,286192,7879 +19655,214,12,201581,1183662 +19656,283,12,127521,997334 +19657,214,12,77012,30286 +19658,283,12,241258,1537675 +19659,315,12,69,61089 +19660,283,12,325385,1775350 +19661,214,12,505,282 +19662,70,12,8906,73738 +19663,214,12,383140,1450499 +19664,163,12,278621,1415879 +19665,214,12,75578,13499 +19666,265,12,82684,17276 +19667,214,12,188927,28977 +19668,214,12,8332,55168 +19669,214,12,120478,79390 +19670,163,12,384737,1367054 +19671,214,12,28170,99916 +19672,283,12,16320,76014 +19673,283,12,30127,1683870 +19674,283,12,24420,1034748 +19675,214,12,21567,53978 +19676,265,12,139455,1281267 +19677,283,12,1589,1325 +19678,265,12,153,2871 +19679,372,12,138372,1108826 +19680,393,12,4248,61108 +19681,283,12,88641,2874 +19682,214,12,12182,3288 +19683,214,12,108224,1310226 +19684,283,12,95627,67702 +19685,283,12,33273,6530 +19686,214,12,9542,59944 +19687,214,12,190955,19866 +19688,265,12,20481,4700 +19689,214,12,49220,7737 +19690,265,12,83718,5952 +19691,265,12,9030,40513 +19692,283,12,127372,3275 +19693,214,12,172386,65378 +19694,214,12,332567,1642831 +19695,283,12,21544,1034748 +19696,214,12,53230,8630 +19697,214,12,3061,1497 +19698,265,12,7916,40605 +19699,214,12,278316,5281 +19700,214,12,302802,1385134 +19701,265,12,10467,15219 +19702,163,12,19688,1701622 +19703,214,12,544,7408 +19704,265,12,284052,7624 +19705,214,12,9252,18504 +19706,214,12,49398,20718 +19707,265,12,1838,19353 +19708,214,12,9555,57955 +19709,265,12,577,10570 +19710,283,12,224251,933574 +19711,214,12,47342,66089 +19712,214,12,315882,149891 +19713,265,12,18392,59769 +19714,265,12,376660,1626021 +19715,283,12,2486,6044 +19716,265,12,76203,51679 +19717,271,12,86472,1413568 +19718,70,12,9659,58140 +19719,283,12,157847,1372202 +19720,372,12,256962,1646873 +19721,214,12,9403,57132 +19722,214,12,58013,120024 +19723,265,12,2486,25455 +19724,265,12,174188,970186 +19725,214,12,17577,1340086 +19726,214,12,407559,105835 +19727,214,12,233639,16822 +19728,283,12,329010,4906 +19729,70,12,125490,1500501 +19730,214,12,3577,10895 +19731,283,12,65599,61501 +19732,214,12,28736,101771 +19733,214,12,232672,62159 +19734,214,12,244534,130642 +19735,214,12,9981,61397 +19736,283,12,13092,6959 +19737,70,12,42476,119851 +19738,265,12,13965,76198 +19739,265,12,310133,1458721 +19740,372,12,42684,1127473 +19741,214,12,91217,18250 +19742,265,12,1819,8181 +19743,322,12,10004,1423020 +19744,284,12,186869,55244 +19745,372,12,258480,1084866 +19746,283,12,46931,1595992 +19747,265,12,77057,1029308 +19748,283,12,9877,561 +19749,372,12,337339,123292 +19750,393,12,345925,1616769 +19751,214,12,347945,1065395 +19752,322,12,544,1549436 +19753,214,12,10362,20561 +19754,214,12,9958,60962 +19755,70,12,2454,213665 +19756,265,12,17464,639 +19757,214,12,2567,27219 +19758,372,12,48231,37022 +19759,300,12,126958,1083436 +19760,265,12,47057,10590 +19761,283,12,2300,2874 +19762,214,12,844,12684 +19763,271,12,111398,1529566 +19764,214,12,9443,8967 +19765,214,12,87514,18591 +19766,372,12,58918,75851 +19767,265,12,92269,53007 +19768,214,12,9514,17732 +19769,163,12,46857,1195633 +19770,214,12,153,1776 +19771,271,12,10948,137181 +19772,265,12,28031,550 +19773,214,12,107596,41230 +19774,265,12,1647,49831 +19775,70,12,35052,1562621 +19776,265,12,258480,1307 +19777,283,12,277558,13585 +19778,265,12,345922,1451219 +19779,214,12,102362,49825 +19780,214,12,77585,1624238 +19781,265,12,2186,11357 +19782,283,12,209406,18457 +19783,283,12,31671,597 +19784,214,12,16096,67896 +19785,214,12,60935,15219 +19786,70,12,28571,11996 +19787,214,12,11635,57130 +19788,265,12,7511,52790 +19789,283,12,25643,3965 +19790,265,12,415542,219052 +19791,70,12,1691,33935 +19792,322,12,308269,1447878 +19793,283,12,82327,983049 +19794,283,12,298584,1125682 +19795,214,12,3513,32340 +19796,214,12,45098,1311156 +19797,214,12,370234,1276440 +19798,214,12,19348,54049 +19799,214,12,157117,533061 +19800,214,12,408755,1660966 +19801,265,12,351211,1276559 +19802,271,12,154371,1182940 +19803,265,12,11298,64052 +19804,265,12,256962,1819155 +19805,265,12,25132,18350 +19806,70,12,230179,52733 +19807,265,12,223485,17288 +19808,265,12,340215,1630282 +19809,214,12,41478,380 +19810,265,12,10269,66754 +19811,214,12,340103,1276700 +19812,214,12,4291,13246 +19813,265,12,259997,1302513 +19814,283,12,27332,1483907 +19815,214,12,46069,1395900 +19816,214,12,7353,52607 +19817,214,12,490,6650 +19818,214,12,268321,43675 +19819,315,12,11172,1455028 +19820,214,12,39995,107084 +19821,214,12,109424,2997 +19822,393,12,346672,1435623 +19823,283,12,2001,5669 +19824,393,12,167810,1793203 +19825,214,12,43095,7459 +19826,283,12,242097,1263 +19827,214,12,10986,57301 +19828,214,12,81589,1041666 +19829,300,12,114096,1497336 +19830,214,12,86920,38061 +19831,70,12,43828,1095768 +19832,214,12,28115,19100 +19833,372,12,13777,75289 +19834,265,12,9902,1472288 +19835,70,12,14703,122492 +19836,265,12,108282,12842 +19837,214,12,62855,103487 +19838,214,12,204922,68320 +19839,160,3,445993,206654 +19840,372,12,29272,1276271 +19841,265,12,53128,1716100 +19842,214,12,1073,15247 +19843,214,12,977,14580 +19844,283,12,252680,92534 +19845,265,12,32904,1735409 +19846,214,12,17770,21217 +19847,214,12,24963,21246 +19848,163,12,376660,574092 +19849,283,12,25520,5328 +19850,265,12,167810,66727 +19851,214,12,11381,56158 +19852,214,12,44655,11964 +19853,214,12,10594,44138 +19854,214,12,271404,84884 +19855,214,12,10066,37162 +19856,318,12,339403,1635348 +19857,283,12,236737,6530 +19858,265,12,28730,955583 +19859,214,12,34977,109853 +19860,214,12,107811,62758 +19861,214,12,11848,70709 +19862,265,12,57201,1705 +19863,214,12,121539,1074506 +19864,214,12,1497,1122495 +19865,214,12,171738,1312454 +19866,265,12,129966,219706 +19867,214,12,4978,12881 +19868,144,12,54563,10353 +19869,160,3,444713,1418329 +19870,265,12,9358,10830 +19871,265,12,3682,1307 +19872,393,12,245692,968379 +19873,214,12,42093,32157 +19874,283,12,35292,19679 +19875,265,12,635,3986 +19876,322,12,284564,1793487 +19877,163,12,15671,1341519 +19878,283,12,388862,1311274 +19879,214,12,4688,38939 +19880,283,12,105,752 +19881,265,12,79593,9196 +19882,265,12,62211,7879 +19883,265,12,99859,1085562 +19884,265,12,19766,68612 +19885,283,12,125300,12686 +19886,214,12,94568,34112 +19887,214,12,79550,52477 +19888,214,12,307081,1500929 +19889,283,12,16806,598 +19890,265,12,334527,10692 +19891,283,12,419459,1017377 +19892,283,12,403130,1125682 +19893,214,12,101242,1026674 +19894,163,12,56292,1102209 +19895,265,12,12122,56126 +19896,265,12,12255,58048 +19897,271,12,16026,313827 +19898,300,12,337339,91072 +19899,157,3,322487,1821791 +19900,372,12,273481,1026247 +19901,265,12,329286,556151 +19902,265,12,244458,10905 +19903,265,12,314065,70523 +19904,265,12,84892,19311 +19905,265,12,20432,947171 +19906,107,12,401164,1817473 +19907,214,12,22292,30919 +19908,214,12,197082,3560 +19909,70,12,315465,16282 +19910,70,12,81477,232615 +19911,214,12,694,240 +19912,214,12,296524,13240 +19913,265,12,334074,17207 +19914,265,12,403429,1640633 +19915,214,12,82079,185678 +19916,265,12,24709,1058623 +19917,214,12,98364,3633 +19918,214,12,121636,26024 +19919,163,12,244786,1125189 +19920,265,12,231145,1115964 +19921,372,12,9753,59392 +19922,265,12,44282,1271292 +19923,214,12,7549,1348 +19924,214,12,167,1993 +19925,265,12,10320,21036 +19926,214,12,15325,78113 +19927,265,12,482,6483 +19928,318,12,2503,1537141 +19929,265,12,280092,1276601 +19930,214,12,28000,30295 +19931,214,12,49950,81699 +19932,70,12,36657,10850 +19933,283,12,120478,1046613 +19934,265,12,4960,50770 +19935,265,12,29416,1427886 +19936,283,12,11247,7232 +19937,214,12,1950,1899 +19938,231,12,1589,1390322 +19939,283,12,1969,17674 +19940,265,12,13092,1123129 +19941,265,12,6933,51451 +19942,283,12,60855,1396496 +19943,283,12,132363,60558 +19944,214,12,7219,53195 +19945,283,12,243568,122611 +19946,214,12,834,12374 +19947,214,12,11402,14292 +19948,214,12,5544,2304 +19949,283,12,10198,59745 +19950,214,12,44936,131786 +19951,214,12,11653,46321 +19952,214,12,8932,240087 +19953,300,12,297762,1574136 +19954,214,12,3114,30549 +19955,364,12,408220,1742993 +19956,214,12,9483,57658 +19957,283,12,330947,1475160 +19958,214,12,251421,1192322 +19959,283,12,4365,11799 +19960,214,12,317214,1115945 +19961,214,12,870,544325 +19962,265,12,167,1995 +19963,231,12,10320,5625 +19964,214,12,398289,40348 +19965,214,12,3036,10295 +19966,265,12,20432,236696 +19967,283,12,184345,39123 +19968,214,12,331313,8701 +19969,214,12,37710,114479 +19970,283,12,225285,1431135 +19971,265,12,135670,1103521 +19972,283,12,52021,33144 +19973,214,12,328429,1301687 +19974,214,12,64792,239791 +19975,163,12,101325,1560965 +19976,283,12,325039,29940 +19977,265,12,45556,56982 +19978,265,12,10458,67499 +19979,283,12,8619,668 +19980,214,12,12412,1038526 +19981,214,12,38269,101225 +19982,214,12,10596,23884 +19983,271,12,1966,1476831 +19984,214,12,10003,5322 +19985,214,12,14137,20788 +19986,214,12,7549,1351 +19987,283,12,10066,19679 +19988,265,12,346672,6874 +19989,214,12,238997,1045273 +19990,214,12,2625,27541 +19991,214,12,42739,18073 +19992,265,12,338063,1581569 +19993,70,12,9836,59772 +19994,214,12,456101,109531 +19995,70,12,107319,184421 +19996,265,12,218784,6874 +19997,163,12,11377,1470632 +19998,214,12,422906,34112 +19999,283,12,193756,20170 +20000,214,12,4024,35151 +20001,214,12,45384,1132425 +20002,214,12,12516,72608 +20003,70,12,100110,1023503 +20004,214,12,141489,1114933 +20005,214,12,254869,10847 +20006,214,12,64942,1125478 +20007,265,12,26378,4123 +20008,214,12,36075,1180038 +20009,214,12,14830,7626 +20010,372,12,311291,1486262 +20011,70,12,284289,1462039 +20012,214,12,193523,1173859 +20013,265,12,10714,6890 +20014,265,12,12236,457 +20015,214,12,274479,17883 +20016,283,12,10003,2485 +20017,265,12,109122,102429 +20018,214,12,15199,69241 +20019,214,12,12289,1117857 +20020,214,12,7871,53238 +20021,265,12,12449,41870 +20022,163,12,173467,52477 +20023,283,12,2259,3192 +20024,214,12,290764,6040 +20025,214,12,75880,120449 +20026,265,12,291871,1518921 +20027,283,12,1450,9545 +20028,393,12,206647,1551774 +20029,283,12,336804,1574319 +20030,214,12,83732,930012 +20031,393,12,1125,1196351 +20032,70,12,273481,1519866 +20033,214,12,9470,57615 +20034,214,12,3580,190 +20035,214,12,40562,1018643 +20036,214,12,29146,16888 +20037,265,12,158947,1784269 +20038,283,12,28510,61860 +20039,265,12,70327,7459 +20040,283,12,270007,10496 +20041,283,12,51999,2635 +20042,214,12,315723,986834 +20043,265,12,220287,1628113 +20044,214,12,12526,61088 +20045,265,12,48207,1679408 +20046,265,12,270774,1877776 +20047,214,12,238589,56032 +20048,214,12,221234,1206330 +20049,214,12,415633,1164767 +20050,214,12,49609,8502 +20051,214,12,10354,1297 +20052,214,12,14539,56808 +20053,214,12,341490,1886275 +20054,265,12,45610,1061057 +20055,214,12,834,3953 +20056,214,12,11017,29015 +20057,214,12,2687,26980 +20058,283,12,173153,959387 +20059,283,12,8270,51557 +20060,265,12,14878,75576 +20061,265,12,179826,19657 +20062,13,12,25673,119492 +20063,283,12,73247,1056058 +20064,214,12,97614,31520 +20065,265,12,90590,22426 +20066,283,12,21927,56639 +20067,193,12,173205,1090383 +20068,70,12,63831,994838 +20069,214,12,179715,1162243 +20070,214,12,42472,558338 +20071,283,12,149509,3965 +20072,214,12,227975,8569 +20073,322,12,42309,1440407 +20074,283,12,21629,1263 +20075,265,12,168259,90635 +20076,393,12,12526,94470 +20077,214,12,13852,75902 +20078,265,12,30155,1086571 +20079,283,12,329440,53680 +20080,214,12,26180,5588 +20081,214,12,8368,54742 +20082,283,12,22279,1302 +20083,214,12,13667,46351 +20084,283,12,332567,1195356 +20085,214,12,317144,1414165 +20086,265,12,34944,2663 +20087,214,12,422878,1242843 +20088,214,12,293625,1588193 +20089,214,12,296523,937938 +20090,193,12,422878,1700640 +20091,265,12,203264,1046543 +20092,372,12,316654,1676028 +20093,214,12,13960,2888 +20094,265,12,42709,66137 +20095,214,12,29398,12011 +20096,322,12,755,1401374 +20097,214,12,2989,29342 +20098,271,12,655,952018 +20099,283,12,18079,1143299 +20100,214,12,101006,6151 +20101,214,12,17258,1535810 +20102,288,3,368006,1666416 +20103,265,12,33511,118167 +20104,265,12,369406,126315 +20105,265,12,10632,59987 +20106,271,12,84354,81733 +20107,214,12,8870,46077 +20108,163,12,311764,1537532 +20109,283,12,102362,2031 +20110,214,12,4688,550 +20111,214,12,25684,1120223 +20112,214,12,310133,139137 +20113,265,12,122,59839 +20114,265,12,171308,1214566 +20115,70,12,431093,144275 +20116,265,12,49521,54211 +20117,214,12,16371,80450 +20118,283,12,76163,61860 +20119,265,12,189197,488 +20120,70,12,13056,3498 +20121,214,12,26963,59447 +20122,214,12,12289,1117851 +20123,214,12,25625,10370 +20124,214,12,216153,13521 +20125,214,12,12540,15219 +20126,265,12,75174,1128117 +20127,214,12,11313,33435 +20128,214,12,24403,91578 +20129,214,12,345489,40405 +20130,271,12,8916,12067 +20131,214,12,297762,15217 +20132,283,12,24554,19548 +20133,214,12,5991,67 +20134,283,12,10204,1487555 +20135,214,12,53404,130247 +20136,214,12,31042,31252 +20137,214,12,79935,154383 +20138,214,12,394822,946759 +20139,283,12,10590,2031 +20140,70,12,44936,1432704 +20141,283,12,27573,46943 +20142,214,12,169934,1694230 +20143,163,12,343369,78860 +20144,214,12,13483,52989 +20145,214,12,34181,1876048 +20146,214,12,10946,67594 +20147,283,12,48207,668 +20148,283,12,601,598 +20149,214,12,67794,54448 +20150,70,12,9352,4854 +20151,372,12,1912,35544 +20152,214,12,139519,2862 +20153,70,12,17238,7700 +20154,214,12,62732,230715 +20155,214,12,119409,1050512 +20156,322,12,10950,535 +20157,358,12,18405,62011 +20158,283,12,287903,2031 +20159,265,12,15936,78972 +20160,214,12,56135,8502 +20161,214,12,16074,57618 +20162,265,12,351211,40513 +20163,214,12,82696,51612 +20164,214,12,28270,32085 +20165,214,12,37368,8259 +20166,214,12,84496,930785 +20167,283,12,66925,1084771 +20168,265,12,8916,986011 +20169,214,12,27777,13348 +20170,265,12,266856,9151 +20171,265,12,85837,1023346 +20172,265,12,310135,62345 +20173,265,12,1073,6590 +20174,286,3,402455,1474926 +20175,214,12,181533,10965 +20176,283,12,24405,2121 +20177,214,12,135652,1102865 +20178,214,12,21208,78196 +20179,265,12,54660,57753 +20180,214,12,31671,11472 +20181,214,12,15476,1189794 +20182,265,12,213681,56326 +20183,214,12,12447,51702 +20184,214,12,44591,89227 +20185,283,12,82448,928007 +20186,214,12,18279,5981 +20187,214,12,693,6737 +20188,283,12,3033,751 +20189,70,12,32451,1849866 +20190,214,12,1726,7626 +20191,283,12,74,494 +20192,214,12,78362,929107 +20193,265,12,374475,60407 +20194,214,12,552,7558 +20195,214,12,298396,1376480 +20196,214,12,203217,589141 +20197,163,12,316154,1840865 +20198,214,12,476,6468 +20199,214,12,346672,3953 +20200,214,12,23599,11772 +20201,70,12,34598,1053572 +20202,214,12,46286,62513 +20203,300,12,284564,77812 +20204,214,12,257302,1308454 +20205,393,12,26390,1046729 +20206,214,12,27349,14825 +20207,214,12,145963,606084 +20208,214,12,6963,51612 +20209,214,12,205891,1188274 +20210,214,12,28263,53007 +20211,378,3,339403,1463808 +20212,271,12,1723,10442 +20213,163,12,97051,64407 +20214,214,12,9950,60787 +20215,214,12,10351,6888 +20216,265,12,11798,70525 +20217,214,12,91679,118415 +20218,265,12,50126,30149 +20219,163,12,211059,28391 +20220,214,12,347328,1096613 +20221,283,12,72460,1174597 +20222,214,12,13477,114852 +20223,265,12,9828,59654 +20224,372,12,192623,102696 +20225,70,12,65488,1639175 +20226,214,12,286521,1557239 +20227,322,12,70074,1402723 +20228,214,12,102629,1121983 +20229,265,12,427680,1758550 +20230,283,12,921,3275 +20231,214,12,70057,56739 +20232,315,12,419430,1417867 +20233,283,12,18908,4477 +20234,214,12,10075,54774 +20235,214,12,34482,74039 +20236,283,12,922,2242 +20237,300,12,270851,1085027 +20238,214,12,279096,133359 +20239,265,12,1624,4505 +20240,70,12,10671,41409 +20241,265,12,16320,12757 +20242,214,12,43548,102116 +20243,214,12,20132,85699 +20244,214,12,227156,1229 +20245,214,12,73690,137486 +20246,283,12,13493,51557 +20247,214,12,18387,12882 +20248,265,12,89492,1226294 +20249,214,12,177047,6899 +20250,283,12,83890,1024910 +20251,265,12,179826,1037912 +20252,163,12,290316,969004 +20253,214,12,366696,1769389 +20254,283,12,6687,1325 +20255,214,12,25625,9292 +20256,214,12,16820,14696 +20257,265,12,42764,1729726 +20258,265,12,376570,1319040 +20259,214,12,9993,61629 +20260,265,12,9030,37021 +20261,214,12,11358,18344 +20262,300,12,9543,8386 +20263,214,12,196852,1013938 +20264,265,12,81477,361611 +20265,265,12,264644,1492086 +20266,283,12,524,2242 +20267,283,12,443319,12942 +20268,265,12,8247,54269 +20269,265,12,98277,1017242 +20270,163,12,82077,1862517 +20271,214,12,8930,1188147 +20272,214,12,39578,90077 +20273,70,12,300669,532757 +20274,271,12,38775,121339 +20275,265,12,362703,1560218 +20276,372,12,384737,60403 +20277,265,12,332411,1627249 +20278,283,12,9904,60226 +20279,265,12,76012,236844 +20280,214,12,29538,69709 +20281,163,12,13437,101412 +20282,214,12,765,11359 +20283,214,12,10733,6159 +20284,393,12,351211,54606 +20285,372,12,352208,1611801 +20286,214,12,15934,36615 +20287,265,12,14505,990955 +20288,214,12,30924,2093 +20289,265,12,258480,1403457 +20290,214,12,164954,2106 +20291,214,12,208700,71080 +20292,214,12,40470,137486 +20293,214,12,39982,180528 +20294,214,12,28178,929308 +20295,163,12,15316,103569 +20296,364,12,33273,939459 +20297,214,12,24094,97463 +20298,265,12,277558,1509662 +20299,283,12,256740,1331136 +20300,214,12,74777,583464 +20301,214,12,295964,10950 +20302,393,12,163,1212071 +20303,70,12,10803,178439 +20304,265,12,9441,1204 +20305,214,12,2966,29079 +20306,214,12,3036,1776 +20307,214,12,285532,1350318 +20308,265,12,109001,1646403 +20309,372,12,356326,119104 +20310,214,12,127817,1065698 +20311,283,12,16806,597 +20312,283,12,333352,1034748 +20313,372,12,177677,77511 +20314,265,12,153102,63551 +20315,214,12,11048,67929 +20316,265,12,16137,958588 +20317,271,12,43231,15134 +20318,265,12,332354,968703 +20319,265,12,130948,33812 +20320,283,12,185934,7511 +20321,265,12,9030,21035 +20322,265,12,274857,1296 +20323,214,12,73116,568129 +20324,283,12,59965,1593 +20325,265,12,41590,4507 +20326,265,12,39053,893 +20327,265,12,140648,102232 +20328,265,12,40990,1515547 +20329,163,12,263341,91376 +20330,265,12,8204,54052 +20331,265,12,402446,1417924 +20332,214,12,244403,954441 +20333,292,3,381015,1828355 +20334,214,12,9343,6818 +20335,214,12,361571,1649160 +20336,265,12,103201,58048 +20337,214,12,82767,1623714 +20338,214,12,134435,133434 +20339,70,12,98066,1759274 +20340,144,12,228647,39761 +20341,214,12,45213,1453876 +20342,265,12,53064,1107765 +20343,265,12,179826,1432640 +20344,214,12,403605,1645583 +20345,283,12,10921,46916 +20346,214,12,289225,212751 +20347,214,12,5516,1224 +20348,283,12,88641,1263 +20349,283,12,39957,63727 +20350,214,12,12289,1117862 +20351,265,12,38322,60070 +20352,214,12,381518,1356834 +20353,214,12,16987,1032103 +20354,315,12,125264,1605299 +20355,70,12,40087,1592439 +20356,214,12,27805,91228 +20357,214,12,132363,20019 +20358,70,12,10674,1397896 +20359,271,12,13056,112662 +20360,214,12,19766,1074793 +20361,214,12,936,14256 +20362,214,12,11354,6893 +20363,265,12,9803,59343 +20364,214,12,351365,93696 +20365,214,12,5551,190 +20366,214,12,9963,61088 +20367,283,12,135708,2952 +20368,214,12,11247,66531 +20369,283,12,16436,25755 +20370,283,12,1254,21671 +20371,283,12,82624,913622 +20372,283,12,96238,35145 +20373,214,12,417489,69374 +20374,283,12,45556,12942 +20375,265,12,11185,3016 +20376,214,12,39101,122512 +20377,318,12,10657,1840847 +20378,393,12,10020,1539388 +20379,265,12,10916,33045 +20380,214,12,7980,128 +20381,393,12,209112,1661326 +20382,265,12,16373,14972 +20383,214,12,26636,20680 +20384,214,12,15749,1325685 +20385,214,12,8467,51703 +20386,265,12,18133,6870 +20387,265,12,409536,65913 +20388,214,12,10075,13017 +20389,163,12,44754,65913 +20390,265,12,58251,1002582 +20391,393,12,257088,989750 +20392,214,12,31162,1627932 +20393,214,12,352890,1236222 +20394,107,12,7220,1762664 +20395,214,12,79782,1244217 +20396,214,12,1690,6867 +20397,389,12,7220,1707120 +20398,265,12,32451,5953 +20399,214,12,42537,8630 +20400,214,12,23823,131184 +20401,265,12,49717,1089957 +20402,292,3,339403,1635297 +20403,271,12,5544,1299465 +20404,214,12,74527,120548 +20405,214,12,9968,61155 +20406,265,12,32044,12842 +20407,322,12,297762,1824279 +20408,214,12,327,544325 +20409,283,12,58372,3192 +20410,283,12,72984,1764714 +20411,283,12,7445,60665 +20412,214,12,419192,81573 +20413,214,12,104700,11523 +20414,283,12,180929,598 +20415,283,12,41733,60935 +20416,214,12,157305,1138635 +20417,214,12,11302,68940 +20418,70,12,459295,1855320 +20419,283,12,23397,1221 +20420,214,12,58918,1102277 +20421,214,12,194722,1186246 +20422,214,12,92321,1817518 +20423,163,12,227975,1775625 +20424,265,12,295964,70052 +20425,214,12,598,8572 +20426,283,12,304372,39123 +20427,214,12,9771,4700 +20428,214,12,5955,46813 +20429,283,12,341174,7481 +20430,214,12,413782,1050737 +20431,214,12,10665,21035 +20432,214,12,9899,14639 +20433,265,12,394822,1496011 +20434,214,12,31880,56172 +20435,372,12,40130,1625902 +20436,283,12,2144,14377 +20437,265,12,347031,85859 +20438,214,12,294272,40375 +20439,271,12,351065,928725 +20440,214,12,10033,20223 +20441,214,12,404459,1665251 +20442,283,12,9753,59396 +20443,214,12,11247,65559 +20444,214,12,157847,64141 +20445,265,12,354287,4701 +20446,265,12,356191,1549811 +20447,214,12,9779,47286 +20448,283,12,1624,2400 +20449,265,12,12599,73045 +20450,214,12,67367,4276 +20451,214,12,1482,36187 +20452,214,12,45335,948272 +20453,214,12,284564,27735 +20454,214,12,244268,131399 +20455,283,12,209112,2953 +20456,214,12,29151,1526850 +20457,163,12,41733,74567 +20458,283,12,41211,38919 +20459,214,12,4806,9196 +20460,265,12,128866,1665455 +20461,271,12,461955,1833829 +20462,214,12,245168,37756 +20463,283,12,13162,436 +20464,372,12,109466,1046555 +20465,214,12,285,2445 +20466,214,12,376660,3388 +20467,283,12,10727,1209535 +20468,322,12,2503,1400089 +20469,214,12,18530,1320302 +20470,283,12,7980,1324 +20471,214,12,39056,1580503 +20472,214,12,43912,929941 +20473,214,12,152748,60476 +20474,283,12,425591,62778 +20475,214,12,47212,59623 +20476,265,12,14945,1123067 +20477,265,12,62046,1121986 +20478,283,12,525,7185 +20479,214,12,49500,954409 +20480,214,12,1294,16781 +20481,283,12,1817,1262 +20482,265,12,154371,977926 +20483,372,12,163,117202 +20484,214,12,405670,1853237 +20485,214,12,156597,1328331 +20486,393,12,924,1440737 +20487,214,12,4592,1151 +20488,265,12,77625,1217177 +20489,283,12,37710,1302 +20490,214,12,103012,1181402 +20491,283,12,241258,959387 +20492,393,12,10529,1567300 +20493,300,12,77930,34528 +20494,214,12,98339,183921 +20495,214,12,88288,26024 +20496,265,12,47065,1053571 +20497,265,12,336890,77818 +20498,393,12,16164,19689 +20499,214,12,455043,64901 +20500,214,12,270774,1877779 +20501,214,12,72648,1076176 +20502,214,12,257444,109 +20503,214,12,83782,3778 +20504,214,12,142402,635846 +20505,214,12,74436,68083 +20506,271,12,18352,1537579 +20507,214,12,954,500 +20508,70,12,10590,2122 +20509,214,12,64942,1125477 +20510,265,12,10909,58424 +20511,265,12,28851,102178 +20512,389,12,145135,1417887 +20513,318,12,86829,1552333 +20514,214,12,38749,14841 +20515,163,12,296524,1392101 +20516,214,12,22398,1474332 +20517,265,12,8847,31519 +20518,70,12,857,8401 +20519,265,12,5928,14055 +20520,322,12,10008,1399569 +20521,265,12,63831,73334 +20522,214,12,172386,1155652 +20523,214,12,123103,1714325 +20524,214,12,315837,16838 +20525,70,12,83430,1129436 +20526,283,12,2115,897 +20527,214,12,169298,2294 +20528,214,12,11380,53966 +20529,214,12,5289,46895 +20530,214,12,9272,52629 +20531,214,12,14138,940630 +20532,322,12,131343,1450098 +20533,283,12,28176,2874 +20534,214,12,1634,7200 +20535,283,12,42739,23580 +20536,227,12,9352,1823519 +20537,214,12,19336,18604 +20538,214,12,200727,70532 +20539,322,12,369406,1872439 +20540,283,12,815,15876 +20541,265,12,320588,22215 +20542,214,12,352164,1611042 +20543,283,12,34223,239415 +20544,265,12,29058,102429 +20545,283,12,10748,23424 +20546,265,12,31118,1066936 +20547,271,12,166207,1120603 +20548,70,12,431093,1838730 +20549,214,12,82624,5873 +20550,214,12,19898,4014 +20551,214,12,156981,1575329 +20552,265,12,259694,41332 +20553,283,12,325173,59668 +20554,214,12,448449,107783 +20555,214,12,9451,17172 +20556,214,12,88005,6488 +20557,214,12,52736,1346593 +20558,322,12,773,313511 +20559,265,12,51549,237311 +20560,163,12,29101,50091 +20561,265,12,12289,993813 +20562,214,12,21554,47054 +20563,372,12,157409,1289460 +20564,283,12,2613,38700 +20565,214,12,172705,592729 +20566,70,12,10604,5401 +20567,283,12,47412,50717 +20568,214,12,41171,38576 +20569,214,12,55612,76564 +20570,271,12,264729,1439848 +20571,214,12,100661,361611 +20572,265,12,25132,112690 +20573,265,12,219466,62782 +20574,214,12,9779,1899 +20575,70,12,29611,1489810 +20576,322,12,10066,1864798 +20577,214,12,40804,1412947 +20578,265,12,16232,21635 +20579,283,12,28340,1795354 +20580,214,12,28290,8502 +20581,357,3,337339,1897427 +20582,214,12,4476,9182 +20583,265,12,15013,77692 +20584,283,12,34723,23349 +20585,214,12,3580,4746 +20586,163,12,351211,98631 +20587,265,12,310135,1193051 +20588,265,12,16066,19809 +20589,393,12,297702,1636852 +20590,214,12,47508,128200 +20591,265,12,9543,59621 +20592,265,12,300669,40383 +20593,214,12,15689,1635087 +20594,265,12,12279,1307 +20595,13,12,351211,1582399 +20596,265,12,98339,984277 +20597,214,12,10050,62511 +20598,214,12,208700,1146400 +20599,265,12,10008,6225 +20600,283,12,22307,1113357 +20601,214,12,294016,1555792 +20602,214,12,10873,2963 +20603,286,3,381525,584715 +20604,214,12,10406,65000 +20605,70,12,173456,13807 +20606,214,12,58886,228582 +20607,214,12,199373,954441 +20608,283,12,98066,5914 +20609,214,12,20132,35736 +20610,283,12,66668,4952 +20611,283,12,15177,76571 +20612,393,12,1073,1621286 +20613,265,12,21159,30904 +20614,163,12,13437,36618 +20615,70,12,328111,1742327 +20616,214,12,5544,11986 +20617,265,12,286532,1382732 +20618,318,12,236324,1876735 +20619,214,12,241258,224386 +20620,163,12,127585,1486179 +20621,214,12,28026,1322485 +20622,214,12,6076,1844 +20623,283,12,58166,19919 +20624,214,12,393562,1042011 +20625,214,12,423377,1754603 +20626,322,12,218778,95848 +20627,214,12,193177,955886 +20628,70,12,78318,14446 +20629,372,12,44389,1591496 +20630,265,12,394822,77107 +20631,214,12,10145,8216 +20632,214,12,310135,1174074 +20633,265,12,336004,1367058 +20634,214,12,296288,114484 +20635,265,12,98066,59522 +20636,214,12,278632,143056 +20637,214,12,22910,102641 +20638,283,12,28893,1290904 +20639,265,12,200,2504 +20640,214,12,37003,1670365 +20641,214,12,14476,1119187 +20642,283,12,40087,45356 +20643,214,12,6964,17699 +20644,214,12,189197,60246 +20645,300,12,264525,1431111 +20646,265,12,16066,57836 +20647,214,12,127372,12922 +20648,214,12,69784,148585 +20649,70,12,85196,103767 +20650,372,12,98115,1873044 +20651,214,12,19116,21478 +20652,214,12,10524,68372 +20653,214,12,363439,1521377 +20654,283,12,409,5490 +20655,265,12,12112,71310 +20656,283,12,297762,1824273 +20657,283,12,285,3311 +20658,214,12,8888,11940 +20659,163,12,59935,39233 +20660,231,12,4248,552427 +20661,214,12,9425,4700 +20662,283,12,18613,25729 +20663,372,12,3173,31040 +20664,70,12,41733,1065353 +20665,214,12,394645,1126740 +20666,265,12,98339,71437 +20667,283,12,4380,25365 +20668,265,12,31347,12184 +20669,265,12,70086,1247747 +20670,265,12,9438,57708 +20671,214,12,10063,60623 +20672,283,12,8272,546 +20673,265,12,68721,969387 +20674,214,12,336149,1581193 +20675,358,12,13056,72956 +20676,214,12,17216,1141809 +20677,214,12,63215,1520925 +20678,265,12,329010,1496219 +20679,214,12,248469,12278 +20680,286,3,26882,38669 +20681,214,12,23223,982461 +20682,358,12,13380,2871 +20683,283,12,10590,2532 +20684,283,12,8467,577810 +20685,214,12,49524,40832 +20686,214,12,46786,20295 +20687,214,12,12593,73034 +20688,214,12,244786,1287961 +20689,214,12,109466,94664 +20690,214,12,70074,1091 +20691,283,12,70074,5914 +20692,265,12,15749,47292 +20693,283,12,508,668 +20694,214,12,43457,14446 +20695,271,12,598,8588 +20696,283,12,79995,16899 +20697,214,12,209401,6374 +20698,214,12,9785,4504 +20699,265,12,346473,1047303 +20700,214,12,55720,3288 +20701,70,12,378485,1292773 +20702,214,12,98557,586136 +20703,214,12,71701,30168 +20704,214,12,5646,4590 +20705,265,12,284564,1462282 +20706,265,12,84185,1341532 +20707,265,12,91333,155945 +20708,265,12,312174,1383169 +20709,283,12,98094,1392553 +20710,214,12,86703,30053 +20711,214,12,187602,236535 +20712,214,12,44578,1251307 +20713,283,12,257345,494 +20714,265,12,9843,43398 +20715,283,12,1443,1192007 +20716,214,12,98094,1147297 +20717,214,12,2115,18878 +20718,214,12,339526,1578611 +20719,214,12,178,2184 +20720,265,12,290999,1361546 +20721,214,12,59861,27098 +20722,265,12,188927,29018 +20723,214,12,430365,28781 +20724,372,12,368006,545507 +20725,214,12,62213,938108 +20726,271,12,122019,1056685 +20727,265,12,113038,53072 +20728,265,12,33586,1814894 +20729,70,12,46387,110227 +20730,68,12,8270,2199 +20731,283,12,366566,1058837 +20732,265,12,31067,1461 +20733,283,12,82501,41024 +20734,214,12,11576,4081 +20735,214,12,62330,95224 +20736,70,12,14505,1530086 +20737,214,12,9611,10685 +20738,214,12,977,9076 +20739,283,12,9885,75518 +20740,265,12,21955,22426 +20741,231,12,28178,56350 +20742,265,12,27259,2238 +20743,283,12,38916,159081 +20744,265,12,419430,1201896 +20745,214,12,2293,7780 +20746,265,12,924,41587 +20747,214,12,70554,983870 +20748,265,12,1833,19316 +20749,271,12,9443,11381 +20750,271,12,966,559904 +20751,214,12,1966,8374 +20752,214,12,5237,4770 +20753,265,12,3933,34895 +20754,283,12,31618,23349 +20755,265,12,5955,8303 +20756,214,12,118760,1662942 +20757,214,12,366045,63778 +20758,283,12,94820,1089828 +20759,214,12,413547,95510 +20760,214,12,11636,56719 +20761,265,12,41171,1392760 +20762,283,12,30330,4952 +20763,214,12,113148,79434 +20764,70,12,30941,5259 +20765,214,12,405882,136154 +20766,214,12,23857,227238 +20767,265,12,8247,54267 +20768,214,12,10395,931 +20769,265,12,50008,952412 +20770,283,12,2978,7185 +20771,283,12,46029,3686 +20772,214,12,1813,10764 +20773,389,12,381015,1417938 +20774,265,12,327383,47059 +20775,214,12,16005,17329 +20776,265,12,193756,1113449 +20777,214,12,325039,1030585 +20778,214,12,48136,16412 +20779,214,12,4550,1117871 +20780,214,12,93676,93599 +20781,271,12,147106,178267 +20782,283,12,1497,1263 +20783,214,12,253310,554 +20784,214,12,25695,131396 +20785,214,12,130739,43698 +20786,214,12,81001,8482 +20787,214,12,153,1769 +20788,283,12,316154,961165 +20789,70,12,91679,1252008 +20790,265,12,345922,969283 +20791,214,12,245906,16831 +20792,214,12,42418,664 +20793,214,12,307931,1393833 +20794,214,12,55152,82505 +20795,214,12,364690,1262738 +20796,214,12,399790,1024836 +20797,271,12,43139,1602840 +20798,214,12,58,2447 +20799,70,12,42739,21341 +20800,265,12,257444,1108729 +20801,265,12,147773,105648 +20802,214,12,76203,72757 +20803,214,12,13685,1117322 +20804,265,12,128625,959460 +20805,393,12,49009,1539306 +20806,214,12,230179,18904 +20807,214,12,277355,61119 +20808,265,12,11511,69674 +20809,214,12,11855,1809723 +20810,315,12,54898,28754 +20811,265,12,11704,70292 +20812,265,12,31867,57864 +20813,214,12,253077,52849 +20814,214,12,217923,26760 +20815,214,12,24420,974609 +20816,214,12,145220,31710 +20817,214,12,116711,1470237 +20818,214,12,2637,3953 +20819,265,12,62764,83069 +20820,265,12,25655,105418 +20821,283,12,417870,5914 +20822,214,12,158967,1326477 +20823,214,12,262357,1305997 +20824,265,12,381015,1455245 +20825,265,12,23830,968710 +20826,214,12,15073,143935 +20827,214,12,9059,21548 +20828,265,12,40952,70639 +20829,214,12,445,6099 +20830,70,12,94468,1087018 +20831,265,12,68750,304528 +20832,214,12,239563,266920 +20833,299,12,76600,1212142 +20834,214,12,203321,1554229 +20835,322,12,9819,1648110 +20836,265,12,134806,23882 +20837,214,12,103539,1556841 +20838,283,12,73424,53899 +20839,214,12,274504,1609029 +20840,107,12,2662,1841942 +20841,265,12,397837,1561937 +20842,283,12,35292,36694 +20843,214,12,172908,97472 +20844,318,12,31146,1336061 +20845,214,12,243568,90783 +20846,265,12,47670,1058270 +20847,214,12,126319,45774 +20848,214,12,102949,5397 +20849,318,12,377447,1824998 +20850,283,12,97051,64407 +20851,214,12,326285,52788 +20852,214,12,17622,22140 +20853,214,12,158015,84348 +20854,214,12,76115,1017258 +20855,214,12,2453,1108529 +20856,214,12,4887,5125 +20857,372,12,140818,1333058 +20858,265,12,42517,102429 +20859,372,12,152736,1409883 +20860,214,12,114155,1058165 +20861,200,3,395992,1706707 +20862,389,12,27259,1624487 +20863,214,12,19995,2710 +20864,283,12,141819,1776864 +20865,70,12,241927,1530612 +20866,265,12,334538,1388469 +20867,265,12,73424,55940 +20868,322,12,93856,1409878 +20869,214,12,414453,45584 +20870,271,12,11202,1578736 +20871,283,12,14452,1014789 +20872,163,12,9059,19973 +20873,265,12,55420,5873 +20874,214,12,10590,8747 +20875,265,12,105,664 +20876,214,12,10805,16483 +20877,265,12,177047,1462278 +20878,214,12,300155,29228 +20879,107,12,4147,1740451 +20880,214,12,39875,1390232 +20881,214,12,311324,282 +20882,372,12,157843,1295633 +20883,214,12,32657,10965 +20884,318,12,10972,1555174 +20885,214,12,99329,1203564 +20886,214,12,98277,1002647 +20887,265,12,45610,32608 +20888,322,12,149509,1444305 +20889,214,12,118957,56095 +20890,300,12,276906,1331171 +20891,283,12,40562,5328 +20892,283,12,406431,1650624 +20893,283,12,9893,19680 +20894,231,12,52936,60744 +20895,283,12,69,436 +20896,214,12,144271,1120640 +20897,214,12,115712,1161451 +20898,283,12,1995,7232 +20899,214,12,8342,64890 +20900,265,12,414910,1177898 +20901,214,12,286521,1655884 +20902,265,12,134656,1099829 +20903,214,12,126127,1635965 +20904,214,12,17238,1459943 +20905,214,12,189,1040896 +20906,214,12,26811,30169 +20907,214,12,195,2428 +20908,214,12,12169,66853 +20909,214,12,89116,1306909 +20910,70,12,4133,18689 +20911,271,12,12171,1421263 +20912,214,12,6976,51730 +20913,271,12,28571,1560730 +20914,214,12,51144,8741 +20915,214,12,9286,42121 +20916,283,12,2454,25729 +20917,300,12,3597,33281 +20918,283,12,23169,45841 +20919,283,12,308269,1447888 +20920,265,12,2989,393389 +20921,265,12,337751,60011 +20922,214,12,315664,6713 +20923,214,12,331962,6384 +20924,214,12,157424,59883 +20925,127,3,25953,121233 +20926,70,12,45827,1423959 +20927,283,12,206563,1426063 +20928,283,12,16176,26129 +20929,214,12,15584,80207 +20930,283,12,265208,1337656 +20931,231,12,98066,52051 +20932,265,12,30624,8502 +20933,372,12,50674,1042807 +20934,214,12,857,284 +20935,283,12,44718,60503 +20936,214,12,44287,948321 +20937,283,12,291413,5914 +20938,214,12,11692,57652 +20939,214,12,62213,85 +20940,70,12,254193,1482922 +20941,265,12,334538,1658464 +20942,265,12,245700,465 +20943,265,12,10727,11812 +20944,163,12,382125,1678082 +20945,265,12,9667,31515 +20946,70,12,28176,1609384 +20947,214,12,52203,61821 +20948,315,12,3597,1648109 +20949,200,3,126889,1384371 +20950,283,12,199575,77573 +20951,214,12,146243,44741 +20952,214,12,23823,127096 +20953,214,12,146679,1124596 +20954,214,12,9028,40532 +20955,214,12,3033,15802 +20956,214,12,83389,1062015 +20957,283,12,1877,1123910 +20958,214,12,16135,51918 +20959,300,12,126889,1634544 +20960,283,12,293970,5328 +20961,144,12,33336,234351 +20962,214,12,9294,71324 +20963,214,12,169760,1151864 +20964,265,12,50008,66629 +20965,214,12,37954,29098 +20966,265,12,11635,8858 +20967,283,12,13075,119179 +20968,265,12,10847,61023 +20969,214,12,82448,64396 +20970,214,12,82492,774666 +20971,283,12,266687,1085919 +20972,214,12,64784,1451787 +20973,265,12,10326,15344 +20974,214,12,78362,143316 +20975,214,12,20640,10601 +20976,214,12,9914,21479 +20977,322,12,263115,1432645 +20978,322,12,8414,1891687 +20979,214,12,10671,41408 +20980,283,12,60935,2215 +20981,214,12,5155,41630 +20982,214,12,376660,57572 +20983,214,12,21671,937875 +20984,214,12,336199,1518920 +20985,214,12,200505,1117879 +20986,214,12,357706,1339548 +20987,271,12,73424,1158913 +20988,214,12,18595,43147 +20989,214,12,127560,123511 +20990,300,12,2567,91055 +20991,214,12,13483,13234 +20992,265,12,693,10392 +20993,163,12,9593,1477267 +20994,65,3,337339,1332245 +20995,214,12,1773,29341 +20996,214,12,76203,20458 +20997,265,12,333385,1619917 +20998,372,12,134394,1474666 +20999,127,3,339403,1635208 +21000,265,12,26768,69558 +21001,214,12,2454,5162 +21002,214,12,96987,45407 +21003,265,12,406431,46430 +21004,214,12,383140,1582464 +21005,163,12,423377,1754604 +21006,283,12,50647,22219 +21007,163,12,260001,1324840 +21008,214,12,10710,8246 +21009,214,12,12182,52451 +21010,214,12,16638,115307 +21011,214,12,64807,16837 +21012,214,12,1579,2487 +21013,214,12,259830,1006885 +21014,265,12,7304,27097 +21015,322,12,5123,1407210 +21016,214,12,85350,3727 +21017,214,12,8008,52733 +21018,265,12,17622,172907 +21019,265,12,11636,64425 +21020,214,12,3072,102429 +21021,372,12,403867,1723492 +21022,283,12,297762,2953 +21023,99,3,28820,100956 +21024,283,12,3050,4952 +21025,214,12,52150,240980 +21026,283,12,140814,19689 +21027,214,12,30374,133081 +21028,283,12,45527,23811 +21029,372,12,2887,28713 +21030,283,12,1381,23545 +21031,214,12,11939,10790 +21032,214,12,260001,141298 +21033,265,12,76341,8374 +21034,214,12,217923,53218 +21035,214,12,12247,64141 +21036,315,12,403605,1173300 +21037,283,12,45013,5914 +21038,214,12,42456,1293412 +21039,300,12,346672,1203578 +21040,214,12,41402,999786 +21041,214,12,16523,27098 +21042,315,12,2675,1674668 +21043,214,12,12,9 +21044,214,12,62397,5398 +21045,214,12,40804,233511 +21046,265,12,18238,70817 +21047,70,12,966,14522 +21048,271,12,6171,18926 +21049,214,12,17577,955069 +21050,271,12,78691,32899 +21051,214,12,11385,95744 +21052,214,12,10890,8858 +21053,322,12,2323,1558700 +21054,265,12,463906,12786 +21055,283,12,2140,21938 +21056,214,12,135652,1102870 +21057,214,12,1661,1071 +21058,214,12,146243,1327831 +21059,265,12,98339,953488 +21060,271,12,39415,1600673 +21061,214,12,2731,12684 +21062,265,12,166221,54971 +21063,214,12,22968,30174 +21064,265,12,2046,11359 +21065,214,12,423377,75952 +21066,214,12,54242,89518 +21067,214,12,62033,30968 +21068,265,12,8588,466 +21069,265,12,43139,68426 +21070,372,12,7459,40836 +21071,214,12,41073,1034418 +21072,214,12,16560,52042 +21073,283,12,268920,2532 +21074,214,12,286372,1336358 +21075,214,12,29610,49284 +21076,283,12,327,15522 +21077,227,12,27259,1861250 +21078,283,12,87516,5290 +21079,163,12,325263,1636512 +21080,265,12,834,3957 +21081,265,12,38055,22302 +21082,265,12,63144,1624605 +21083,214,12,109439,57132 +21084,283,12,44578,1181409 +21085,283,12,261037,1357589 +21086,214,12,19971,32157 +21087,283,12,76170,4023 +21088,265,12,37291,1534634 +21089,283,12,18506,5363 +21090,163,12,43817,79136 +21091,214,12,296523,1159663 +21092,214,12,13827,10297 +21093,214,12,112284,84034 +21094,265,12,14811,14523 +21095,231,12,334538,1569150 +21096,283,12,37926,1379594 +21097,265,12,141,44633 +21098,214,12,549,4446 +21099,265,12,30308,109853 +21100,265,12,68715,1547853 +21101,214,12,167,1994 +21102,315,12,31742,1820603 +21103,265,12,13493,17313 +21104,214,12,244539,53276 +21105,70,12,340103,110257 +21106,300,12,44945,132209 +21107,70,12,285270,1126626 +21108,265,12,291871,1518923 +21109,265,12,85196,103767 +21110,70,12,10708,1786664 +21111,214,12,74961,457819 +21112,214,12,268920,56718 +21113,265,12,6973,51689 +21114,265,12,189197,31 +21115,214,12,9982,61417 +21116,214,12,15788,3663 +21117,322,12,13849,1413951 +21118,265,12,5915,1128149 +21119,214,12,292625,1758588 +21120,214,12,257444,969242 +21121,214,12,9951,60816 +21122,265,12,337107,69543 +21123,214,12,621,8878 +21124,221,3,405473,1338244 +21125,283,12,210913,36108 +21126,214,12,11908,70896 +21127,214,12,12783,6713 +21128,214,12,152532,1287613 +21129,214,12,30637,130946 +21130,214,12,38908,1088249 +21131,214,12,47426,71332 +21132,214,12,121401,65637 +21133,322,12,19901,1391733 +21134,283,12,59115,19662 +21135,163,12,434873,1859548 +21136,265,12,1689,3056 +21137,265,12,954,42995 +21138,214,12,5206,6146 +21139,265,12,257444,1308201 +21140,231,12,366631,207180 +21141,214,12,104462,11523 +21142,265,12,125490,72762 +21143,214,12,52936,568293 +21144,265,12,169934,1693196 +21145,265,12,2675,489 +21146,265,12,50126,1692452 +21147,214,12,64942,233192 +21148,283,12,193893,60504 +21149,265,12,71120,212751 +21150,265,12,12538,8303 +21151,214,12,18414,3954 +21152,214,12,150117,963336 +21153,214,12,11234,18591 +21154,214,12,22429,85893 +21155,265,12,598,8564 +21156,214,12,2009,20657 +21157,372,12,207270,1518045 +21158,163,12,211059,1088940 +21159,265,12,178809,70732 +21160,265,12,44363,1462814 +21161,214,12,85429,932044 +21162,214,12,26502,51875 +21163,265,12,9900,59922 +21164,214,12,84617,224550 +21165,393,12,274479,1608766 +21166,214,12,258363,202003 +21167,214,12,18899,58052 +21168,214,12,93350,12833 +21169,372,12,163,11268 +21170,70,12,2454,4856 +21171,214,12,336669,1819122 +21172,70,12,340215,1630287 +21173,265,12,205587,1296 +21174,163,12,343369,239783 +21175,265,12,10748,29909 +21176,265,12,10020,7879 +21177,265,12,353979,19288 +21178,265,12,16234,10949 +21179,214,12,10070,18384 +21180,315,12,2604,12923 +21181,214,12,9793,35581 +21182,214,12,10330,64830 +21183,214,12,47670,55983 +21184,214,12,328111,5720 +21185,214,12,51955,93133 +21186,372,12,47426,1666526 +21187,283,12,9928,45848 +21188,283,12,33563,1594 +21189,214,12,59962,29015 +21190,231,12,20312,89211 +21191,214,12,115712,1161458 +21192,283,12,196235,1176356 +21193,265,12,788,11710 +21194,271,12,95516,1287467 +21195,127,3,339403,1635222 +21196,214,12,795,282 +21197,283,12,7299,14377 +21198,214,12,84348,112593 +21199,214,12,12128,49301 +21200,70,12,315465,1591438 +21201,283,12,343173,1333655 +21202,214,12,33729,170497 +21203,171,3,408381,1657559 +21204,372,12,10274,64665 +21205,214,12,152736,952397 +21206,283,12,118984,61772 +21207,372,12,116463,587841 +21208,200,3,337339,1649521 +21209,214,12,52859,7646 +21210,315,12,41030,88718 +21211,214,12,7220,7626 +21212,214,12,274504,17051 +21213,214,12,260001,1324838 +21214,372,12,4134,34874 +21215,372,12,413547,1489751 +21216,214,12,43546,21507 +21217,389,12,634,1576029 +21218,214,12,130739,4805 +21219,283,12,75,547 +21220,372,12,114719,1317811 +21221,214,12,193177,73259 +21222,214,12,5965,46915 +21223,214,12,223485,1262011 +21224,265,12,14510,19707 +21225,214,12,27196,8967 +21226,283,12,11879,8864 +21227,214,12,88036,59973 +21228,393,12,245703,1641656 +21229,393,12,294272,1660711 +21230,163,12,176,51026 +21231,283,12,82,6410 +21232,214,12,15258,83340 +21233,265,12,257444,1223226 +21234,348,12,77459,1821412 +21235,265,12,126841,1390 +21236,214,12,327389,63669 +21237,214,12,55694,51702 +21238,214,12,43641,129722 +21239,265,12,121674,1391792 +21240,214,12,10077,53300 +21241,163,12,318553,1646811 +21242,214,12,10550,21697 +21243,265,12,11908,70894 +21244,265,12,333385,203285 +21245,214,12,159095,1211152 +21246,214,12,270383,1495598 +21247,214,12,32274,504 +21248,214,12,245597,1805401 +21249,214,12,2195,23174 +21250,372,12,31397,4844 +21251,214,12,50725,54419 +21252,271,12,33364,961264 +21253,283,12,15934,1142381 +21254,265,12,388862,1474665 +21255,142,12,136368,1548536 +21256,214,12,59981,61295 +21257,265,12,92341,3248 +21258,214,12,18447,30549 +21259,163,12,166671,1390 +21260,358,12,2675,1128126 +21261,214,12,29475,68750 +21262,214,12,134144,931237 +21263,214,12,14372,120184 +21264,214,12,166610,149374 +21265,309,12,703,122092 +21266,265,12,297814,1374696 +21267,265,12,37958,964327 +21268,315,12,14011,85561 +21269,214,12,146730,2106 +21270,283,12,12763,2952 +21271,265,12,48231,1030397 +21272,265,12,9358,57431 +21273,214,12,10857,67271 +21274,214,12,1966,1102197 +21275,265,12,86703,236844 +21276,265,12,76341,1296 +21277,300,12,19754,1402203 +21278,271,12,297762,1821633 +21279,372,12,49073,1116385 +21280,265,12,31146,1841278 +21281,265,12,102668,1031756 +21282,214,12,11171,21117 +21283,214,12,15356,78136 +21284,372,12,206647,64000 +21285,214,12,11983,18596 +21286,214,12,62630,48309 +21287,163,12,324181,86903 +21288,214,12,76,566 +21289,265,12,245891,6384 +21290,214,12,42345,18854 +21291,214,12,173465,1156211 +21292,214,12,63498,1117869 +21293,214,12,127493,1117435 +21294,70,12,170430,12812 +21295,214,12,18056,396538 +21296,283,12,1272,2073 +21297,322,12,2503,1340775 +21298,265,12,29698,135034 +21299,265,12,1991,1307 +21300,214,12,343140,26739 +21301,214,12,97683,110056 +21302,265,12,71700,563694 +21303,300,12,117,1354109 +21304,265,12,73424,556877 +21305,283,12,59965,1328148 +21306,70,12,318224,1451579 +21307,214,12,197854,552493 +21308,70,12,356752,1102572 +21309,265,12,141,69597 +21310,214,12,14945,1123062 +21311,265,12,62764,57343 +21312,214,12,42701,102650 +21313,214,12,13506,1594375 +21314,315,12,12,7912 +21315,214,12,128311,30058 +21316,265,12,16938,1122623 +21317,265,12,5915,25292 +21318,265,12,6575,51852 +21319,265,12,376660,17451 +21320,265,12,413782,1529935 +21321,214,12,256474,1308741 +21322,214,12,11593,70190 +21323,163,12,10071,62829 +21324,214,12,425591,20487 +21325,214,12,2666,8299 +21326,214,12,74777,583463 +21327,163,12,9539,1725451 +21328,214,12,332354,563855 +21329,283,12,16077,4023 +21330,214,12,9690,4525 +21331,214,12,10727,65237 +21332,300,12,2288,1648110 +21333,214,12,43075,8502 +21334,271,12,338189,1548354 +21335,265,12,98339,2231 +21336,214,12,329865,57175 +21337,214,12,44877,76242 +21338,214,12,23128,11711 +21339,214,12,293167,1759725 +21340,265,12,264397,1196069 +21341,214,12,21208,1131838 +21342,214,12,241930,1277528 +21343,214,12,240832,50950 +21344,214,12,17303,1174074 +21345,283,12,15613,25830 +21346,265,12,16135,79534 +21347,364,12,409447,1226553 +21348,265,12,10391,1034749 +21349,214,12,84479,969004 +21350,283,12,206647,36108 +21351,214,12,139718,291803 +21352,214,12,260312,71778 +21353,70,12,40688,1494667 +21354,265,12,397837,1818616 +21355,214,12,74154,588028 +21356,283,12,48231,7800 +21357,214,12,145154,1122370 +21358,271,12,19181,928144 +21359,214,12,53857,3633 +21360,322,12,305127,1568236 +21361,214,12,55846,6889 +21362,265,12,209112,525 +21363,372,12,317144,542339 +21364,214,12,414910,1177898 +21365,214,12,83223,101552 +21366,283,12,134806,1045137 +21367,214,12,13596,150748 +21368,214,12,10425,65114 +21369,214,12,24986,1339 +21370,265,12,38987,1403617 +21371,283,12,15982,1342833 +21372,265,12,12309,18311 +21373,265,12,9297,488 +21374,265,12,10761,57029 +21375,214,12,275060,4772 +21376,265,12,41171,1392759 +21377,214,12,8277,54601 +21378,214,12,103689,1827463 +21379,214,12,71859,6409 +21380,214,12,8916,12106 +21381,214,12,15873,3453 +21382,93,12,13380,3275 +21383,70,12,10776,1855718 +21384,283,12,109614,42306 +21385,265,12,13929,7879 +21386,214,12,287587,1475894 +21387,265,12,302699,27105 +21388,214,12,844,12453 +21389,265,12,13042,7 +21390,214,12,10909,322 +21391,265,12,13391,135238 +21392,214,12,20210,41551 +21393,271,12,29449,1559286 +21394,300,12,11202,950567 +21395,214,12,83896,889096 +21396,214,12,10354,5707 +21397,163,12,41171,27097 +21398,214,12,9441,17828 +21399,320,3,442752,1761901 +21400,265,12,11511,9196 +21401,265,12,86254,42367 +21402,214,12,47921,1557 +21403,283,12,75233,47647 +21404,300,12,5924,711 +21405,283,12,414977,4906 +21406,214,12,103332,17172 +21407,214,12,45273,125335 +21408,214,12,456101,109533 +21409,214,12,290714,1361062 +21410,214,12,133328,954757 +21411,265,12,157843,1288841 +21412,283,12,103012,2623 +21413,214,12,29101,43709 +21414,214,12,31146,58846 +21415,283,12,285270,1014920 +21416,163,12,310137,1537532 +21417,214,12,287281,132755 +21418,214,12,124071,1188501 +21419,318,12,11247,1776548 +21420,214,12,239103,36417 +21421,214,12,93350,5952 +21422,70,12,94009,10807 +21423,214,12,23515,1440867 +21424,163,12,336804,1574314 +21425,265,12,412103,57194 +21426,214,12,266030,20433 +21427,265,12,19719,85100 +21428,214,12,46885,12476 +21429,286,3,408755,1660980 +21430,163,12,419459,933405 +21431,265,12,122081,1719401 +21432,322,12,10491,1428509 +21433,265,12,84626,1154130 +21434,214,12,10567,65858 +21435,214,12,185153,54448 +21436,318,12,194722,1636783 +21437,214,12,33339,2862 +21438,265,12,10740,38082 +21439,214,12,237,3056 +21440,214,12,305932,1389033 +21441,283,12,325039,997334 +21442,214,12,16175,63048 +21443,265,12,337958,1583403 +21444,318,12,693,1535954 +21445,283,12,2924,3275 +21446,214,12,59189,65685 +21447,214,12,430834,1732149 +21448,214,12,13393,1603657 +21449,214,12,44027,5602 +21450,265,12,9563,1152 +21451,265,12,11509,30383 +21452,283,12,81232,1398505 +21453,70,12,10201,204163 +21454,265,12,148,309 +21455,283,12,228970,5490 +21456,214,12,16077,463 +21457,265,12,62211,8 +21458,214,12,31397,33008 +21459,393,12,693,1740451 +21460,214,12,7343,52528 +21461,163,12,54227,12863 +21462,283,12,79593,13932 +21463,265,12,8840,56059 +21464,265,12,47694,554843 +21465,265,12,36737,58175 +21466,214,12,33343,39979 +21467,283,12,10596,65796 +21468,214,12,83015,14293 +21469,214,12,39356,7248 +21470,70,12,18405,1399079 +21471,265,12,12499,38507 +21472,372,12,135652,1102872 +21473,271,12,2503,8415 +21474,214,12,703,6993 +21475,265,12,10003,61821 +21476,214,12,17046,81264 +21477,214,12,54752,2707 +21478,214,12,9785,63984 +21479,265,12,418990,65693 +21480,214,12,25807,94218 +21481,214,12,54093,63593 +21482,322,12,60599,1400510 +21483,70,12,98277,1017241 +21484,265,12,13667,950463 +21485,214,12,97365,56589 +21486,393,12,10710,1398132 +21487,214,12,13614,1244217 +21488,214,12,378570,120128 +21489,70,12,1481,38656 +21490,214,12,323675,11957 +21491,265,12,9059,7187 +21492,127,3,339403,1635197 +21493,265,12,12450,72259 +21494,265,12,179826,150955 +21495,214,12,209406,1320301 +21496,214,12,198663,1231882 +21497,265,12,13056,60784 +21498,214,12,2080,6968 +21499,283,12,59962,6959 +21500,265,12,122081,1272771 +21501,283,12,7916,23811 +21502,372,12,375366,1733485 +21503,265,12,257450,1718316 +21504,214,12,987,9579 +21505,107,12,634,75578 +21506,358,12,5551,1464344 +21507,214,12,31128,30689 +21508,214,12,101852,206042 +21509,322,12,1579,1400358 +21510,214,12,17467,554123 +21511,214,12,31167,103915 +21512,214,12,10466,62045 +21513,283,12,408381,1657574 +21514,265,12,173205,1852957 +21515,283,12,45610,19689 +21516,214,12,9462,46323 +21517,265,12,15143,7185 +21518,214,12,125759,982224 +21519,214,12,327389,1252351 +21520,214,12,41970,79624 +21521,214,12,6643,13780 +21522,214,12,73873,2210 +21523,214,12,15934,56515 +21524,283,12,84892,5914 +21525,265,12,259694,956268 +21526,283,12,15213,7903 +21527,283,12,17622,7786 +21528,214,12,16523,31 +21529,214,12,151826,1035746 +21530,163,12,8467,71236 +21531,214,12,21413,6627 +21532,265,12,43457,1529469 +21533,214,12,85651,1375267 +21534,322,12,418437,1816405 +21535,214,12,179154,41892 +21536,214,12,43889,33223 +21537,271,12,240832,1412914 +21538,265,12,95134,1004059 +21539,283,12,1450,3501 +21540,265,12,12104,71250 +21541,214,12,117905,107463 +21542,214,12,58076,14646 +21543,283,12,271714,19689 +21544,214,12,393407,113612 +21545,283,12,49013,963497 +21546,214,12,9828,59659 +21547,300,12,17971,1028471 +21548,214,12,64942,162545 +21549,214,12,12618,71762 +21550,214,12,296524,24309 +21551,214,12,408509,1351756 +21552,265,12,203264,1186724 +21553,214,12,41714,76600 +21554,214,12,373546,1867473 +21555,283,12,19398,3923 +21556,214,12,44875,33223 +21557,214,12,11545,18344 +21558,214,12,85446,11697 +21559,214,12,10070,62800 +21560,214,12,245597,1284290 +21561,300,12,272693,1046971 +21562,214,12,15414,62210 +21563,214,12,33364,67619 +21564,300,12,30943,58471 +21565,265,12,98339,1124947 +21566,283,12,285685,1618876 +21567,322,12,14430,1521666 +21568,214,12,264397,1309478 +21569,265,12,11351,61075 +21570,265,12,269494,1452553 +21571,265,12,9441,1834089 +21572,214,12,39056,78376 +21573,214,12,43277,109853 +21574,283,12,141,1593 +21575,214,12,157354,1280963 +21576,214,12,41110,3063 +21577,265,12,213681,1321562 +21578,214,12,91673,1391941 +21579,163,12,278621,1229619 +21580,283,12,10796,561 +21581,283,12,55347,1313484 +21582,283,12,16876,1046456 +21583,265,12,459295,1608114 +21584,214,12,16164,2545 +21585,214,12,1903,500 +21586,214,12,41402,74400 +21587,318,12,14,74536 +21588,322,12,1690,1889491 +21589,322,12,10708,1402013 +21590,214,12,393367,1660180 +21591,214,12,55728,73498 +21592,283,12,263627,63784 +21593,214,12,43850,2490 +21594,283,12,18633,21469 +21595,214,12,41035,30169 +21596,265,12,72545,566284 +21597,214,12,267931,130024 +21598,265,12,29903,102429 +21599,271,12,20174,85766 +21600,214,12,23853,170730 +21601,214,12,58903,57898 +21602,283,12,49521,2953 +21603,214,12,26566,6986 +21604,265,12,94727,1004059 +21605,265,12,227156,65559 +21606,214,12,61984,67078 +21607,214,12,392011,1603874 +21608,214,12,180299,1093640 +21609,315,12,103332,575076 +21610,283,12,13600,2073 +21611,318,12,8470,1598764 +21612,200,3,395992,1632350 +21613,214,12,158967,1326478 +21614,271,12,46786,2504 +21615,214,12,23830,935703 +21616,283,12,271404,1705678 +21617,300,12,210047,1293002 +21618,163,12,26826,1353745 +21619,214,12,26643,101225 +21620,214,12,15356,61490 +21621,163,12,334074,1024907 +21622,265,12,17770,114408 +21623,214,12,289712,1547767 +21624,214,12,31127,1055694 +21625,214,12,47342,4844 +21626,214,12,4338,1954 +21627,283,12,82654,45841 +21628,214,12,133458,6334 +21629,265,12,265208,1533150 +21630,265,12,1589,62796 +21631,283,12,296523,1493973 +21632,265,12,70436,582917 +21633,70,12,295964,1557691 +21634,271,12,179847,1649855 +21635,372,12,10776,13521 +21636,163,12,278621,1415881 +21637,214,12,380058,1558488 +21638,214,12,77165,563076 +21639,265,12,99846,1363170 +21640,227,12,10727,1802524 +21641,283,12,1278,16336 +21642,265,12,33273,939477 +21643,70,12,85350,6511 +21644,214,12,52705,3779 +21645,214,12,14476,76946 +21646,70,12,381032,1202002 +21647,214,12,37958,11420 +21648,214,12,100669,817418 +21649,163,12,46094,57153 +21650,265,12,36612,2663 +21651,372,12,24199,1591521 +21652,286,3,74779,87625 +21653,214,12,17895,33128 +21654,322,12,1381,1447162 +21655,322,12,21927,1416959 +21656,265,12,25528,17209 +21657,214,12,127493,550112 +21658,214,12,218425,1264975 +21659,214,12,102384,126676 +21660,214,12,21544,47978 +21661,214,12,239563,2871 +21662,265,12,423988,1627250 +21663,214,12,598,8571 +21664,265,12,17209,6226 +21665,265,12,277558,1039256 +21666,265,12,11024,58237 +21667,283,12,242310,1367136 +21668,318,12,10708,1031815 +21669,214,12,53150,14093 +21670,70,12,1966,20719 +21671,214,12,116894,1064875 +21672,372,12,220488,1307114 +21673,265,12,301875,1420665 +21674,214,12,381073,1572172 +21675,265,12,157843,1907221 +21676,265,12,42057,53521 +21677,283,12,33788,13061 +21678,357,3,337339,1903913 +21679,283,12,71670,893948 +21680,214,12,12697,57324 +21681,163,12,109439,957353 +21682,214,12,10632,58015 +21683,283,12,103731,6410 +21684,214,12,82655,88108 +21685,214,12,54155,6100 +21686,283,12,9102,6997 +21687,70,12,17209,91319 +21688,265,12,15003,57280 +21689,214,12,321039,1418227 +21690,214,12,33586,60624 +21691,214,12,86825,40374 +21692,214,12,18633,26208 +21693,265,12,193756,1330723 +21694,265,12,325263,1447983 +21695,283,12,291413,39123 +21696,214,12,264729,968298 +21697,214,12,41645,43330 +21698,283,12,9543,1302 +21699,107,12,1586,1854998 +21700,283,12,60965,232038 +21701,70,12,121006,130233 +21702,283,12,9905,32984 +21703,70,12,12102,1546874 +21704,214,12,4960,5953 +21705,214,12,392882,1185185 +21706,283,12,243935,7494 +21707,214,12,51947,20412 +21708,265,12,62967,236338 +21709,214,12,319073,933454 +21710,214,12,82679,168812 +21711,160,3,126889,1830633 +21712,265,12,43641,141043 +21713,389,12,28893,35087 +21714,214,12,14137,1475280 +21715,283,12,354859,1325 +21716,283,12,28026,7494 +21717,322,12,55846,1404874 +21718,214,12,8669,11405 +21719,214,12,544,7405 +21720,214,12,82990,90591 +21721,70,12,102222,1394053 +21722,214,12,31385,1378401 +21723,283,12,323435,4906 +21724,214,12,130450,100036 +21725,318,12,8204,92246 +21726,214,12,5172,41886 +21727,214,12,29911,28 +21728,283,12,8588,25755 +21729,214,12,214081,4402 +21730,265,12,1427,4697 +21731,214,12,19050,12842 +21732,214,12,152570,1152356 +21733,214,12,22076,17208 +21734,214,12,10087,63126 +21735,214,12,331313,2212 +21736,214,12,12122,27581 +21737,231,12,4248,57225 +21738,163,12,45013,61523 +21739,214,12,261037,1024837 +21740,214,12,37305,69105 +21741,214,12,23367,52004 +21742,265,12,330115,206780 +21743,214,12,128169,1086441 +21744,265,12,10710,57634 +21745,283,12,10760,18457 +21746,214,12,394723,1283173 +21747,214,12,8588,55415 +21748,214,12,107985,2238 +21749,214,12,975,3349 +21750,265,12,398786,1665415 +21751,283,12,17744,2288 +21752,214,12,9289,8502 +21753,288,3,329135,1666416 +21754,214,12,19621,3056 +21755,283,12,117251,561 +21756,265,12,73099,5988 +21757,214,12,345637,1485788 +21758,214,12,50506,32733 +21759,265,12,193756,17210 +21760,214,12,167810,30614 +21761,265,12,924,13621 +21762,265,12,34598,1497677 +21763,214,12,244201,4123 +21764,271,12,90001,1563385 +21765,214,12,321779,1810620 +21766,283,12,19505,1046456 +21767,214,12,13685,71555 +21768,265,12,189,1307 +21769,283,12,58372,5328 +21770,265,12,109424,1979 +21771,214,12,239566,51385 +21772,265,12,655,9884 +21773,283,12,369894,2151 +21774,214,12,63831,56209 +21775,283,12,94340,1195356 +21776,70,12,223485,1486938 +21777,283,12,134394,63784 +21778,265,12,11370,16838 +21779,214,12,6589,4504 +21780,265,12,363479,742382 +21781,214,12,253258,1292110 +21782,70,12,77459,32463 +21783,265,12,101325,1560944 +21784,214,12,20174,85767 +21785,214,12,74777,583457 +21786,372,12,37926,29205 +21787,70,12,47194,1351464 +21788,214,12,24442,30103 +21789,265,12,101325,1560950 +21790,214,12,17216,1051971 +21791,283,12,212756,957146 +21792,318,12,128866,135858 +21793,214,12,34482,1239497 +21794,70,12,2300,73106 +21795,214,12,204040,8502 +21796,265,12,346672,3958 +21797,415,3,154972,1403875 +21798,265,12,9030,56739 +21799,214,12,8869,8676 +21800,283,12,505,897 +21801,214,12,9846,59875 +21802,283,12,9968,3965 +21803,214,12,9793,64129 +21804,315,12,216363,1493667 +21805,214,12,93828,999763 +21806,214,12,359204,1508026 +21807,214,12,39957,58048 +21808,265,12,17609,1174 +21809,265,12,55784,72663 +21810,265,12,10020,62049 +21811,214,12,11832,70638 +21812,214,12,161880,112993 +21813,214,12,8014,33505 +21814,283,12,239018,91366 +21815,214,12,84479,45139 +21816,214,12,17057,74879 +21817,214,12,381645,323331 +21818,214,12,15019,40282 +21819,214,12,86236,51766 +21820,214,12,242,3219 +21821,283,12,38325,238626 +21822,214,12,294016,1555794 +21823,372,12,345438,1479368 +21824,214,12,12614,1927 +21825,283,12,33586,7494 +21826,283,12,17577,22065 +21827,265,12,8916,12066 +21828,214,12,330333,1438822 +21829,214,12,197,2487 +21830,214,12,76494,20207 +21831,283,12,13493,63672 +21832,283,12,382125,1398245 +21833,265,12,810,5524 +21834,70,12,257345,1401857 +21835,265,12,156711,1547770 +21836,214,12,32029,4081 +21837,283,12,60935,1021206 +21838,214,12,910,11435 +21839,214,12,12831,15303 +21840,214,12,41611,127039 +21841,214,12,549,7490 +21842,271,12,339403,1608789 +21843,265,12,38356,488 +21844,283,12,16232,63672 +21845,265,12,292625,1095113 +21846,127,3,339403,35546 +21847,265,12,334527,221018 +21848,283,12,405882,1336706 +21849,214,12,293625,102473 +21850,283,12,32657,5362 +21851,265,12,57201,85 +21852,271,12,8292,1457895 +21853,214,12,28273,1092558 +21854,214,12,102629,1121985 +21855,214,12,46187,937666 +21856,265,12,6977,44482 +21857,214,12,301804,986505 +21858,372,12,9841,59809 +21859,265,12,460135,1720983 +21860,322,12,127585,1384400 +21861,300,12,8869,15365 +21862,214,12,33146,110192 +21863,265,12,9902,554 +21864,214,12,33305,56280 +21865,214,12,25855,1094682 +21866,283,12,25941,3501 +21867,410,12,340101,1602319 +21868,265,12,33107,965568 +21869,214,12,378441,1300938 +21870,214,12,301334,1544336 +21871,265,12,180299,1001661 +21872,389,12,251227,1286592 +21873,214,12,121725,127218 +21874,214,12,270403,51084 +21875,214,12,103713,1034662 +21876,214,12,291907,1063379 +21877,372,12,43548,52389 +21878,214,12,445,2335 +21879,214,12,6972,23226 +21880,214,12,5425,44478 +21881,214,12,264644,1375896 +21882,214,12,109417,9543 +21883,214,12,114377,1058615 +21884,214,12,334557,1450646 +21885,283,12,210910,1350849 +21886,265,12,11337,6994 +21887,283,12,359412,1324 +21888,265,12,219466,37756 +21889,283,12,14823,1035047 +21890,214,12,52150,575142 +21891,265,12,59861,12374 +21892,372,12,270774,1877774 +21893,283,12,347945,63558 +21894,214,12,13516,74591 +21895,214,12,10109,63575 +21896,265,12,15092,1005950 +21897,265,12,14534,57225 +21898,283,12,1073,46943 +21899,214,12,43045,11773 +21900,214,12,42684,6037 +21901,265,12,10274,64661 +21902,214,12,76871,32071 +21903,265,12,365942,1626019 +21904,265,12,82703,928659 +21905,283,12,35292,29489 +21906,214,12,278717,937666 +21907,231,12,8470,69744 +21908,318,12,8916,1780709 +21909,163,12,405670,1206977 +21910,265,12,70981,40374 +21911,265,12,203264,15758 +21912,265,12,9059,1723 +21913,214,12,97206,65817 +21914,283,12,28739,1001764 +21915,322,12,378441,1797479 +21916,265,12,10703,66766 +21917,283,12,233487,1282286 +21918,265,12,325133,1085179 +21919,214,12,135679,502188 +21920,163,12,39356,1019226 +21921,214,12,30143,929977 +21922,70,12,271185,24960 +21923,214,12,90056,1174175 +21924,372,12,107073,1481474 +21925,283,12,83079,1640011 +21926,357,3,378018,1805345 +21927,231,12,283445,1478662 +21928,70,12,325263,1636516 +21929,214,12,30995,1861809 +21930,283,12,46261,39123 +21931,214,12,3513,32343 +21932,214,12,61904,1185544 +21933,265,12,16164,16849 +21934,283,12,9541,16491 +21935,265,12,123109,6373 +21936,163,12,31021,88200 +21937,265,12,33305,1185207 +21938,70,12,4923,10337 +21939,214,12,1724,869 +21940,214,12,35,165810 +21941,283,12,22803,989750 +21942,214,12,127913,67813 +21943,163,12,285270,1103649 +21944,265,12,127585,10956 +21945,70,12,278621,1415880 +21946,265,12,12618,4184 +21947,214,12,10433,1032 +21948,322,12,9902,1408708 +21949,283,12,10549,1464117 +21950,214,12,14644,21551 +21951,265,12,13586,91296 +21952,214,12,4011,35139 +21953,265,12,427680,1758549 +21954,70,12,44303,1746221 +21955,265,12,213914,1044080 +21956,265,12,219466,1640833 +21957,283,12,8464,7438 +21958,372,12,10097,63356 +21959,214,12,251232,1286540 +21960,265,12,24238,92739 +21961,214,12,16358,2184 +21962,283,12,61548,4023 +21963,214,12,77859,1063279 +21964,265,12,11247,68772 +21965,283,12,345915,1521110 +21966,214,12,68737,67759 +21967,265,12,11688,12824 +21968,214,12,18082,559404 +21969,214,12,42648,170497 +21970,214,12,251,3428 +21971,214,12,33788,4232 +21972,318,12,17111,1629472 +21973,214,12,69165,33008 +21974,315,12,10204,1613300 +21975,214,12,20242,18389 +21976,283,12,49009,67702 +21977,214,12,119433,933557 +21978,70,12,8870,1121617 +21979,214,12,10400,41587 +21980,214,12,38554,29 +21981,214,12,199647,66722 +21982,393,12,109424,19156 +21983,283,12,70074,39123 +21984,265,12,228205,49907 +21985,214,12,192023,1172462 +21986,265,12,24363,35179 +21987,214,12,28510,56032 +21988,271,12,9016,1395352 +21989,265,12,327389,1234099 +21990,70,12,243568,1236255 +21991,271,12,82327,1646867 +21992,265,12,223485,210705 +21993,214,12,297762,79243 +21994,372,12,86254,564601 +21995,265,12,71859,83287 +21996,163,12,343934,1117291 +21997,214,12,150201,1448865 +21998,214,12,448449,92561 +21999,265,12,10632,59986 +22000,214,12,37003,1670361 +22001,214,12,48885,99916 +22002,287,3,64215,1354343 +22003,271,12,9539,1725453 +22004,214,12,41211,142982 +22005,214,12,63260,230669 +22006,163,12,28730,192727 +22007,265,12,7304,6892 +22008,214,12,7088,44084 +22009,318,12,9716,1551185 +22010,214,12,39102,122512 +22011,265,12,32274,30601 +22012,214,12,82654,928449 +22013,214,12,11664,25507 +22014,271,12,91583,1607270 +22015,214,12,42764,1766553 +22016,265,12,167073,109980 +22017,283,12,3595,2874 +22018,214,12,79025,2378 +22019,214,12,50123,4446 +22020,214,12,68822,9750 +22021,214,12,73872,69547 +22022,214,12,9756,6891 +22023,214,12,8470,2145 +22024,214,12,4285,13736 +22025,265,12,46247,5714 +22026,389,12,11351,1596742 +22027,271,12,13853,113982 +22028,214,12,11091,67994 +22029,265,12,16077,2236 +22030,283,12,838,598 +22031,265,12,10550,21479 +22032,364,12,336890,1904064 +22033,214,12,30929,37722 +22034,265,12,1165,2997 +22035,322,12,10344,63553 +22036,265,12,10872,771 +22037,271,12,28893,97847 +22038,265,12,16066,37270 +22039,410,12,315837,184314 +22040,265,12,9904,9541 +22041,214,12,49963,5952 +22042,214,12,267935,664 +22043,214,12,5172,41897 +22044,70,12,9836,59776 +22045,214,12,11374,6159 +22046,214,12,54111,120899 +22047,283,12,1415,32604 +22048,265,12,9836,59774 +22049,283,12,14254,5362 +22050,315,12,9928,1805190 +22051,214,12,28363,33019 +22052,214,12,246403,1209168 +22053,214,12,72105,570788 +22054,214,12,1273,19500 +22055,283,12,19901,1195356 +22056,214,12,173205,1152999 +22057,300,12,11456,58471 +22058,283,12,69315,77202 +22059,214,12,27270,33009 +22060,214,12,240913,68173 +22061,283,12,332839,210157 +22062,214,12,27480,1484504 +22063,372,12,9297,42265 +22064,283,12,1443,1532410 +22065,214,12,24392,1191639 +22066,214,12,257454,14294 +22067,265,12,116780,2090 +22068,163,12,214756,143894 +22069,265,12,18755,72461 +22070,214,12,97630,1027025 +22071,214,12,29798,19707 +22072,265,12,8617,59924 +22073,214,12,99861,10850 +22074,265,12,70436,52159 +22075,322,12,80304,106458 +22076,214,12,200511,33341 +22077,271,12,18990,1207591 +22078,70,12,86236,42629 +22079,265,12,323679,1423462 +22080,214,12,46572,32309 +22081,214,12,12122,71343 +22082,214,12,9946,41587 +22083,214,12,259997,1006148 +22084,107,12,413998,1895007 +22085,107,12,9352,1181409 +22086,214,12,572,7737 +22087,214,12,11600,19950 +22088,265,12,117534,84149 +22089,163,12,9835,57011 +22090,265,12,4964,19274 +22091,214,12,57103,29098 +22092,265,12,44363,963792 +22093,265,12,179826,19809 +22094,265,12,11231,59809 +22095,283,12,223485,1016177 +22096,265,12,1427,6895 +22097,214,12,2757,16297 +22098,214,12,13680,70700 +22099,214,12,3144,30749 +22100,265,12,11798,53896 +22101,265,12,285,2444 +22102,265,12,193756,1046154 +22103,214,12,266741,61310 +22104,214,12,31945,67561 +22105,265,12,332411,1367061 +22106,127,3,339403,1378150 +22107,214,12,14459,56095 +22108,70,12,18392,231119 +22109,283,12,300187,434 +22110,265,12,10948,12863 +22111,214,12,71041,12737 +22112,265,12,310135,1419725 +22113,163,12,170279,1665918 +22114,265,12,42307,1486913 +22115,70,12,111839,17217 +22116,265,12,21619,236844 +22117,214,12,10518,12288 +22118,163,12,284052,1533708 +22119,214,12,34082,3377 +22120,283,12,33788,23811 +22121,214,12,94182,30266 +22122,214,12,48254,104807 +22123,283,12,210047,4906 +22124,214,12,82622,94264 +22125,271,12,4887,40034 +22126,283,12,223485,1409490 +22127,318,12,954,1886667 +22128,318,12,48281,1894632 +22129,214,12,11888,2461 +22130,214,12,419459,1420665 +22131,265,12,10473,12507 +22132,163,12,207270,1518047 +22133,214,12,408616,6361 +22134,265,12,404459,1065549 +22135,214,12,1691,6867 +22136,214,12,77930,6468 +22137,70,12,365065,1526012 +22138,265,12,403119,1307 +22139,283,12,6145,1034748 +22140,70,12,205939,1459421 +22141,358,12,16996,29208 +22142,214,12,31275,1031151 +22143,300,12,42418,1408466 +22144,214,12,16077,79179 +22145,265,12,382873,1679701 +22146,265,12,74,9183 +22147,214,12,18897,100747 +22148,214,12,291164,36187 +22149,70,12,14811,10829 +22150,214,12,26390,1117436 +22151,265,12,180299,1001659 +22152,214,12,49717,106653 +22153,214,12,36785,116197 +22154,265,12,89008,1105486 +22155,214,12,260947,18299 +22156,283,12,255343,1512768 +22157,214,12,82624,913622 +22158,265,12,105077,936212 +22159,265,12,369366,1874669 +22160,372,12,44287,985774 +22161,265,12,241254,1367061 +22162,283,12,13496,18457 +22163,283,12,351242,1639083 +22164,214,12,317,4647 +22165,214,12,255388,50311 +22166,283,12,12085,2399 +22167,163,12,103597,32463 +22168,315,12,184741,109843 +22169,214,12,123757,381120 +22170,271,12,461955,1833826 +22171,265,12,66125,78964 +22172,163,12,378236,1410335 +22173,265,12,2977,43559 +22174,348,12,3059,8630 +22175,214,12,151911,7646 +22176,214,12,16320,5664 +22177,214,12,22476,57635 +22178,214,12,320873,1427446 +22179,283,12,42307,76085 +22180,372,12,99859,126917 +22181,214,12,209271,64058 +22182,214,12,59115,21035 +22183,300,12,921,1531142 +22184,214,12,79113,62081 +22185,283,12,47889,1391067 +22186,214,12,84284,591400 +22187,315,12,9472,6738 +22188,265,12,11298,65407 +22189,271,12,1655,17732 +22190,283,12,25388,1125466 +22191,283,12,54845,598 +22192,163,12,99861,1117747 +22193,70,12,110598,1866787 +22194,283,12,74879,572594 +22195,348,12,1647,1598766 +22196,265,12,77625,201028 +22197,214,12,3686,18504 +22198,283,12,296523,1034748 +22199,265,12,43470,2663 +22200,283,12,74879,572593 +22201,214,12,257088,1631400 +22202,214,12,453053,1692541 +22203,265,12,27480,1484507 +22204,70,12,65488,41751 +22205,265,12,213110,56238 +22206,265,12,177677,29608 +22207,214,12,16182,74044 +22208,283,12,257345,1616432 +22209,265,12,27414,1281016 +22210,70,12,43829,8501 +22211,372,12,338,4805 +22212,300,12,384737,1636783 +22213,214,12,69,409 +22214,70,12,318224,1451580 +22215,283,12,248933,36108 +22216,393,12,8247,190936 +22217,214,12,189197,1227669 +22218,214,12,11589,19423 +22219,214,12,319924,126239 +22220,283,12,418437,22219 +22221,214,12,8842,18389 +22222,214,12,23367,63291 +22223,393,12,245703,1641657 +22224,214,12,9951,60815 +22225,214,12,57816,1095834 +22226,214,12,12289,64337 +22227,214,12,383538,1437179 +22228,372,12,2503,10571 +22229,265,12,293982,943170 +22230,265,12,47911,115128 +22231,300,12,31306,58471 +22232,214,12,4257,35796 +22233,214,12,544,7406 +22234,214,12,19765,1602141 +22235,265,12,616,9197 +22236,265,12,11639,70773 +22237,214,12,38286,120023 +22238,265,12,9953,51702 +22239,265,12,32049,1634532 +22240,265,12,262988,1002497 +22241,265,12,367412,84348 +22242,283,12,316042,7800 +22243,265,12,9803,6891 +22244,265,12,232672,20818 +22245,265,12,131932,1482618 +22246,318,12,329865,1810186 +22247,283,12,42571,1458731 +22248,214,12,312221,11472 +22249,70,12,3933,1769887 +22250,214,12,110261,105357 +22251,214,12,73872,1024275 +22252,265,12,258480,112 +22253,214,12,47536,113702 +22254,283,12,15440,63751 +22255,265,12,10096,11815 +22256,214,12,278348,33650 +22257,214,12,25998,1178905 +22258,214,12,126319,108842 +22259,214,12,274857,5575 +22260,283,12,17654,1133500 +22261,372,12,25132,57111 +22262,214,12,320453,80765 +22263,163,12,425774,1707748 +22264,265,12,463800,1503826 +22265,265,12,21627,11646 +22266,214,12,1969,23728 +22267,265,12,27573,69739 +22268,163,12,56292,4854 +22269,300,12,48231,1643408 +22270,231,12,1966,71332 +22271,214,12,9519,68353 +22272,214,12,47956,18589 +22273,265,12,239566,536491 +22274,163,12,89008,1102579 +22275,283,12,245891,1046729 +22276,70,12,84450,113985 +22277,214,12,15527,41621 +22278,214,12,7549,20642 +22279,163,12,182499,12477 +22280,364,12,15199,1586730 +22281,283,12,10780,961149 +22282,265,12,10748,68334 +22283,283,12,864,12972 +22284,214,12,33107,51980 +22285,214,12,300,201 +22286,265,12,53168,70432 +22287,163,12,86814,1542493 +22288,214,12,251227,1286555 +22289,265,12,345003,1011452 +22290,214,12,68193,132722 +22291,265,12,13092,118167 +22292,70,12,76465,30266 +22293,214,12,46149,1564551 +22294,127,3,339403,1635205 +22295,214,12,254918,1475279 +22296,214,12,67375,8502 +22297,214,12,8270,2212 +22298,214,12,39875,66709 +22299,372,12,65759,1462792 +22300,214,12,192623,1184645 +22301,163,12,298584,227228 +22302,393,12,354287,1512672 +22303,214,12,14273,35350 +22304,265,12,755,2545 +22305,283,12,2640,44048 +22306,214,12,41551,98968 +22307,214,12,124157,1293793 +22308,214,12,207270,1518591 +22309,163,12,7515,80604 +22310,214,12,427680,1267666 +22311,214,12,17287,78023 +22312,283,12,482,6572 +22313,265,12,27138,335498 +22314,283,12,25388,1125465 +22315,265,12,113119,188171 +22316,214,12,55836,26013 +22317,214,12,381008,1034496 +22318,214,12,13805,1114052 +22319,214,12,263472,1510555 +22320,214,12,356486,1522132 +22321,144,12,297762,1413804 +22322,214,12,15934,1327175 +22323,214,12,353326,1496011 +22324,283,12,298584,1619734 +22325,265,12,40466,45829 +22326,163,12,246860,32463 +22327,214,12,266102,1606166 +22328,214,12,1271,20908 +22329,37,3,197057,1176983 +22330,70,12,110598,1866788 +22331,169,3,383538,8890 +22332,214,12,14522,5580 +22333,283,12,5413,3501 +22334,107,12,79593,1366590 +22335,265,12,42599,95331 +22336,214,12,81225,92005 +22337,265,12,38189,7467 +22338,214,12,11517,3805 +22339,214,12,49073,557710 +22340,214,12,444713,1676015 +22341,265,12,5393,43084 +22342,214,12,24756,59936 +22343,265,12,9274,17012 +22344,265,12,63045,1056031 +22345,265,12,10475,1192558 +22346,283,12,271185,3965 +22347,283,12,35337,16363 +22348,214,12,393521,1817393 +22349,283,12,43806,1123078 +22350,283,12,11321,2215 +22351,214,12,890,14614 +22352,214,12,55615,1126290 +22353,283,12,834,1034748 +22354,265,12,414910,1488675 +22355,214,12,9066,56888 +22356,358,12,1428,95823 +22357,265,12,239566,21339 +22358,358,12,13823,75806 +22359,283,12,126250,4477 +22360,214,12,19827,16547 +22361,214,12,92657,1154457 +22362,214,12,352372,1651997 +22363,265,12,447758,1553325 +22364,322,12,297762,1422862 +22365,214,12,11511,12988 +22366,286,3,441881,85049 +22367,283,12,36243,82905 +22368,265,12,48180,102429 +22369,265,12,108282,28715 +22370,265,12,257176,1443566 +22371,214,12,290825,1161120 +22372,214,12,393079,1817355 +22373,214,12,130881,1158292 +22374,214,12,301228,1519836 +22375,393,12,413421,1708063 +22376,144,12,9716,1252214 +22377,214,12,82929,61497 +22378,214,12,381737,946129 +22379,214,12,31742,1820600 +22380,214,12,1428,20498 +22381,214,12,147773,945058 +22382,265,12,274857,551938 +22383,265,12,22051,96126 +22384,70,12,197082,1410755 +22385,214,12,33339,1357087 +22386,265,12,38021,1125522 +22387,214,12,285135,63954 +22388,322,12,13777,75307 +22389,214,12,11056,27992 +22390,283,12,169881,1190164 +22391,214,12,2349,24075 +22392,265,12,10596,65792 +22393,287,3,378018,1408667 +22394,214,12,1640,29787 +22395,265,12,10900,59003 +22396,214,12,7210,4035 +22397,214,12,77875,22815 +22398,283,12,696,1046 +22399,265,12,10320,63984 +22400,265,12,59678,968632 +22401,214,12,17479,582251 +22402,70,12,48281,132579 +22403,265,12,367735,112529 +22404,214,12,293167,114408 +22405,214,12,52021,1099544 +22406,214,12,113119,392967 +22407,214,12,1374,11472 +22408,283,12,35026,1364224 +22409,214,12,70554,1155640 +22410,214,12,419192,964698 +22411,265,12,66894,1307 +22412,283,12,1271,17610 +22413,265,12,11879,63949 +22414,283,12,258251,1014915 +22415,214,12,85023,1537929 +22416,265,12,169934,1011028 +22417,265,12,31634,27948 +22418,214,12,693,3305 +22419,214,12,323929,1733198 +22420,214,12,306966,52259 +22421,70,12,28448,1382732 +22422,214,12,43525,4123 +22423,283,12,210302,1193910 +22424,265,12,21525,1746321 +22425,214,12,269494,1452551 +22426,214,12,3405,31891 +22427,214,12,19610,10400 +22428,265,12,173189,552254 +22429,214,12,291,4337 +22430,214,12,418969,1212016 +22431,265,12,423988,554 +22432,315,12,27523,1671247 +22433,283,12,139159,72324 +22434,214,12,241855,1141540 +22435,214,12,109491,47285 +22436,283,12,14370,3275 +22437,214,12,42678,558274 +22438,265,12,340101,6226 +22439,214,12,429238,1733800 +22440,322,12,1690,1889492 +22441,265,12,59962,58145 +22442,318,12,10727,1584252 +22443,214,12,17009,13594 +22444,265,12,809,12062 +22445,214,12,9793,1128147 +22446,265,12,125490,957826 +22447,265,12,294652,55474 +22448,214,12,227262,114296 +22449,283,12,72431,6347 +22450,265,12,33427,43518 +22451,214,12,81110,1064941 +22452,214,12,63144,1624604 +22453,163,12,613,1023152 +22454,265,12,63360,189989 +22455,265,12,8852,56126 +22456,214,12,13279,1482 +22457,283,12,333371,2325 +22458,70,12,241254,65814 +22459,214,12,362579,1518665 +22460,283,12,179826,1313484 +22461,300,12,154575,1707141 +22462,214,12,315465,1590935 +22463,265,12,298584,64058 +22464,265,12,9928,5720 +22465,265,12,263472,6384 +22466,265,12,76829,41837 +22467,214,12,245891,40684 +22468,214,12,1396,55519 +22469,214,12,664,4782 +22470,214,12,362703,1560218 +22471,214,12,52637,71626 +22472,214,12,233487,1191178 +22473,214,12,9948,60728 +22474,265,12,15179,6332 +22475,70,12,7220,52469 +22476,265,12,9543,1300 +22477,300,12,5,64744 +22478,283,12,82485,59668 +22479,214,12,42569,57753 +22480,214,12,11004,323 +22481,214,12,66893,15133 +22482,265,12,9613,6226 +22483,265,12,173153,1255 +22484,70,12,228970,1263516 +22485,214,12,11626,55007 +22486,214,12,103201,1033129 +22487,265,12,10362,230691 +22488,70,12,52736,1346594 +22489,371,3,408381,4737 +22490,214,12,63144,1624606 +22491,271,12,14128,1116915 +22492,231,12,11351,25743 +22493,265,12,377447,118733 +22494,214,12,2291,3431 +22495,214,12,13169,53276 +22496,322,12,13777,75306 +22497,70,12,37929,84758 +22498,265,12,362057,222096 +22499,214,12,18557,56095 +22500,214,12,15440,934171 +22501,214,12,323426,74616 +22502,214,12,140883,1113721 +22503,127,3,339403,1482008 +22504,214,12,56292,28977 +22505,144,12,155597,70236 +22506,214,12,118536,1021591 +22507,214,12,278632,1425464 +22508,265,12,193756,1138845 +22509,389,12,11812,1565131 +22510,283,12,87293,12942 +22511,214,12,423988,1492549 +22512,214,12,16135,79537 +22513,214,12,149509,1027545 +22514,214,12,1375,16514 +22515,214,12,15414,54742 +22516,393,12,88273,1411043 +22517,214,12,244458,1046155 +22518,283,12,38322,60504 +22519,265,12,10257,64425 +22520,283,12,15661,5328 +22521,265,12,99861,8703 +22522,214,12,322487,1355890 +22523,265,12,332979,1032 +22524,283,12,361018,1778313 +22525,315,12,16996,61089 +22526,214,12,390,5268 +22527,265,12,12483,62686 +22528,214,12,218898,86559 +22529,214,12,10776,9020 +22530,214,12,34084,1019068 +22531,265,12,284564,77812 +22532,265,12,242090,1277089 +22533,214,12,12787,7726 +22534,358,12,11003,22077 +22535,13,12,351211,1652074 +22536,214,12,8204,52845 +22537,163,12,280092,1478662 +22538,265,12,29161,1099090 +22539,393,12,9846,11799 +22540,271,12,178809,55191 +22541,265,12,403119,1121984 +22542,214,12,414977,1266288 +22543,322,12,359412,1804201 +22544,265,12,17295,15078 +22545,283,12,10395,1046 +22546,214,12,146233,47286 +22547,372,12,340101,1051397 +22548,265,12,70670,1003008 +22549,214,12,407806,1066326 +22550,70,12,397837,1818612 +22551,214,12,464111,1833825 +22552,214,12,362439,42367 +22553,70,12,408024,1847625 +22554,265,12,298935,23905 +22555,265,12,75761,1023502 +22556,214,12,34231,112174 +22557,70,12,407559,1659970 +22558,265,12,6557,50460 +22559,265,12,10610,56719 +22560,283,12,335053,1451817 +22561,214,12,2567,638 +22562,265,12,9959,15004 +22563,214,12,136582,1437299 +22564,144,12,264525,1383971 +22565,265,12,4248,1307 +22566,214,12,120747,1004059 +22567,393,12,283995,1543191 +22568,214,12,24624,6889 +22569,214,12,249,376 +22570,283,12,75778,19993 +22571,283,12,42188,53346 +22572,265,12,75174,11014 +22573,214,12,154,1790 +22574,214,12,1116,15491 +22575,70,12,52395,1171244 +22576,127,3,339403,1438316 +22577,361,3,339403,1635303 +22578,265,12,327389,62574 +22579,214,12,65545,235417 +22580,214,12,180252,1293598 +22581,283,12,19203,41654 +22582,214,12,43131,8635 +22583,214,12,236737,1361933 +22584,70,12,10999,70610 +22585,70,12,176,1476346 +22586,214,12,50759,552000 +22587,214,12,107250,1218953 +22588,283,12,293863,1493973 +22589,214,12,4550,1117872 +22590,163,12,9835,10087 +22591,214,12,43670,31709 +22592,214,12,831,11030 +22593,214,12,12622,13246 +22594,144,12,2300,1741454 +22595,214,12,13600,31 +22596,265,12,312174,1383184 +22597,214,12,82655,88106 +22598,214,12,130272,1670531 +22599,322,12,27873,1338129 +22600,265,12,265208,70732 +22601,144,12,8870,1392670 +22602,265,12,110146,1307 +22603,214,12,98339,20181 +22604,283,12,19936,27467 +22605,214,12,7548,52897 +22606,283,12,24420,3965 +22607,372,12,1838,1014 +22608,265,12,229254,5984 +22609,214,12,9032,20820 +22610,70,12,298865,1498422 +22611,214,12,8358,24 +22612,265,12,298584,16847 +22613,389,12,15092,1414562 +22614,265,12,296288,1672125 +22615,265,12,19898,457430 +22616,214,12,47065,1053563 +22617,163,12,209112,78135 +22618,283,12,62046,5328 +22619,322,12,3597,1790566 +22620,214,12,25898,33223 +22621,214,12,38509,120607 +22622,322,12,703,1336842 +22623,214,12,345915,1128684 +22624,283,12,21132,2952 +22625,214,12,1595,17847 +22626,214,12,76341,11651 +22627,144,12,297762,1824237 +22628,265,12,26581,1179039 +22629,231,12,111839,382811 +22630,271,12,2503,8418 +22631,214,12,227348,90591 +22632,283,12,270303,62778 +22633,214,12,200505,57601 +22634,214,12,87593,45405 +22635,283,12,159095,1300064 +22636,214,12,244268,1124649 +22637,214,12,4344,32856 +22638,214,12,300654,929984 +22639,265,12,51371,10520 +22640,70,12,34223,1668101 +22641,271,12,128866,1665462 +22642,265,12,10733,6184 +22643,214,12,70666,52528 +22644,214,12,411013,1445670 +22645,265,12,256962,1819156 +22646,265,12,76341,59774 +22647,214,12,18333,11909 +22648,70,12,153,28866 +22649,265,12,231145,16848 +22650,214,12,10096,59963 +22651,265,12,432883,457674 +22652,214,12,40041,101190 +22653,265,12,157424,1313833 +22654,214,12,206647,69678 +22655,214,12,19551,101234 +22656,283,12,176124,92534 +22657,265,12,312831,1532263 +22658,265,12,369406,1254973 +22659,283,12,376660,1559873 +22660,410,12,329865,1446462 +22661,214,12,325803,1428024 +22662,315,12,15934,72110 +22663,214,12,88075,10149 +22664,214,12,140818,934171 +22665,358,12,419192,1557615 +22666,214,12,64225,10032 +22667,214,12,24341,27992 +22668,265,12,253612,583871 +22669,214,12,270851,30053 +22670,214,12,55347,64179 +22671,372,12,1164,952511 +22672,265,12,411741,1673682 +22673,283,12,9540,7800 +22674,214,12,5165,26266 +22675,283,12,197,2485 +22676,265,12,108391,67652 +22677,214,12,16307,229385 +22678,265,12,11593,4006 +22679,214,12,80560,955133 +22680,214,12,40562,21275 +22681,214,12,343369,212751 +22682,214,12,185154,54448 +22683,214,12,266400,1313035 +22684,214,12,67130,2106 +22685,265,12,76012,1326651 +22686,265,12,332411,1627250 +22687,214,12,137145,1106883 +22688,283,12,11137,62778 +22689,283,12,14,495 +22690,214,12,334074,16487 +22691,283,12,10063,62688 +22692,283,12,374475,1437665 +22693,214,12,157847,1128690 +22694,265,12,2107,3986 +22695,144,12,42501,1145371 +22696,322,12,10710,1778264 +22697,214,12,15472,1002917 +22698,214,12,42684,6038 +22699,322,12,93856,1409880 +22700,214,12,23544,1188446 +22701,214,12,198600,1208374 +22702,214,12,356296,1024275 +22703,214,12,43987,1309313 +22704,265,12,18414,68602 +22705,214,12,11007,29015 +22706,214,12,11330,21185 +22707,214,12,8929,2406 +22708,214,12,32716,8500 +22709,322,12,13954,1398882 +22710,214,12,339408,60475 +22711,214,12,32872,12065 +22712,214,12,13555,948275 +22713,214,12,9889,7408 +22714,271,12,2786,1539838 +22715,265,12,45610,1046155 +22716,163,12,10204,10903 +22717,214,12,345925,1385132 +22718,70,12,128866,1665454 +22719,315,12,101929,1493680 +22720,214,12,128625,206780 +22721,372,12,341491,52036 +22722,283,12,36737,116274 +22723,393,12,16996,1527912 +22724,265,12,246403,1001661 +22725,283,12,15310,162085 +22726,214,12,43817,72897 +22727,265,12,98339,163105 +22728,214,12,59075,33009 +22729,214,12,31263,129801 +22730,214,12,76686,1098632 +22731,214,12,353616,9281 +22732,265,12,363439,101225 +22733,214,12,26486,31710 +22734,214,12,160324,1122006 +22735,163,12,1640,20540 +22736,214,12,2830,28635 +22737,214,12,120831,34740 +22738,271,12,336804,1361053 +22739,271,12,3933,34899 +22740,265,12,434873,943913 +22741,70,12,26514,104322 +22742,265,12,138372,1108824 +22743,410,12,7220,230436 +22744,214,12,74836,8951 +22745,214,12,176,2145 +22746,163,12,40807,62117 +22747,214,12,242076,1024904 +22748,265,12,346473,1508120 +22749,214,12,64942,1125479 +22750,107,12,8470,1840093 +22751,265,12,36635,2663 +22752,214,12,272693,36425 +22753,283,12,19688,1108575 +22754,283,12,154972,43640 +22755,214,12,82990,995456 +22756,127,3,383538,1851886 +22757,214,12,1966,4446 +22758,265,12,332354,1444930 +22759,265,12,9298,6730 +22760,214,12,31372,108016 +22761,265,12,6973,54511 +22762,214,12,9529,31211 +22763,214,12,64483,1630318 +22764,214,12,14539,1174460 +22765,265,12,376660,21156 +22766,214,12,22404,88972 +22767,214,12,14430,76864 +22768,283,12,103432,78390 +22769,39,3,339403,1635305 +22770,283,12,3291,1484 +22771,410,12,384737,1739850 +22772,214,12,60125,199998 +22773,265,12,34650,98968 +22774,214,12,37936,31180 +22775,322,12,9426,1445990 +22776,283,12,2778,1263 +22777,163,12,340103,1470107 +22778,265,12,284564,1673707 +22779,265,12,351242,20387 +22780,214,12,27526,2228 +22781,389,12,419192,1688394 +22782,315,12,286192,1485788 +22783,214,12,220287,1513394 +22784,214,12,20842,12698 +22785,214,12,45987,7459 +22786,163,12,99861,1477203 +22787,265,12,298865,1263222 +22788,214,12,2454,5541 +22789,214,12,111960,21601 +22790,70,12,332411,1477488 +22791,214,12,15013,53521 +22792,271,12,11645,45444 +22793,214,12,246655,7200 +22794,214,12,22076,16830 +22795,265,12,101325,1560956 +22796,144,12,29161,1760100 +22797,283,12,26142,1263 +22798,322,12,2503,1406859 +22799,265,12,173189,62161 +22800,214,12,12289,1117850 +22801,214,12,29054,18891 +22802,283,12,10087,63129 +22803,283,12,166666,4222 +22804,283,12,21214,937959 +22805,214,12,11374,339 +22806,286,3,413579,56221 +22807,283,12,18047,1258847 +22808,214,12,42684,1127471 +22809,70,12,366143,237759 +22810,214,12,28482,30652 +22811,214,12,84601,457819 +22812,410,12,924,59055 +22813,214,12,10070,62809 +22814,214,12,43821,8502 +22815,214,12,6973,38081 +22816,214,12,286873,1516046 +22817,214,12,318973,1161657 +22818,214,12,353728,1500502 +22819,318,12,11045,91937 +22820,214,12,8329,54528 +22821,214,12,157117,1138331 +22822,214,12,44545,34112 +22823,265,12,82626,928314 +22824,214,12,341886,136971 +22825,214,12,158967,1326475 +22826,283,12,11979,17610 +22827,372,12,300,4292 +22828,214,12,102222,61921 +22829,214,12,11377,1091 +22830,265,12,9563,7187 +22831,214,12,250574,45407 +22832,214,12,44303,46434 +22833,214,12,52864,115449 +22834,265,12,9900,41328 +22835,283,12,39195,21363 +22836,283,12,95136,6583 +22837,214,12,2196,21342 +22838,214,12,373546,23626 +22839,214,12,966,14520 +22840,389,12,15653,1767060 +22841,214,12,9059,1214380 +22842,265,12,99861,113675 +22843,318,12,4547,66696 +22844,318,12,263115,1671065 +22845,283,12,11185,1263 +22846,322,12,62728,1414104 +22847,214,12,79707,1116326 +22848,265,12,15671,67600 +22849,167,3,339403,1635296 +22850,265,12,10750,2145 +22851,214,12,10433,7170 +22852,214,12,262785,1063997 +22853,214,12,2731,27715 +22854,214,12,21786,1118876 +22855,283,12,203321,1162253 +22856,214,12,116236,1291071 +22857,265,12,55735,1345670 +22858,283,12,14128,1230129 +22859,265,12,86829,968632 +22860,265,12,259292,10149 +22861,214,12,4279,1962 +22862,265,12,329440,1777438 +22863,214,12,193756,1725574 +22864,214,12,9457,49826 +22865,214,12,9928,60678 +22866,265,12,12707,5398 +22867,214,12,294016,1555793 +22868,214,12,44896,52693 +22869,283,12,76397,578790 +22870,214,12,73348,3777 +22871,393,12,2454,1014915 +22872,214,12,8464,1087475 +22873,214,12,74779,36999 +22874,214,12,14069,81720 +22875,322,12,43459,1056685 +22876,265,12,1049,1205 +22877,265,12,14878,1315056 +22878,214,12,241254,17210 +22879,214,12,84336,43147 +22880,364,12,134201,1366426 +22881,265,12,60125,268107 +22882,265,12,110588,1050027 +22883,283,12,13336,1205764 +22884,214,12,142656,1132462 +22885,265,12,56292,29018 +22886,372,12,28519,1066819 +22887,300,12,367412,1496105 +22888,70,12,300669,1214322 +22889,322,12,10204,40830 +22890,372,12,4441,37277 +22891,214,12,15616,1214975 +22892,214,12,15177,77969 +22893,283,12,11511,1221 +22894,214,12,14976,1265275 +22895,283,12,267310,1451455 +22896,283,12,28165,1172673 +22897,214,12,42966,85893 +22898,265,12,12476,72410 +22899,283,12,317,4650 +22900,265,12,11517,1586 +22901,214,12,82684,928567 +22902,214,12,10900,67696 +22903,70,12,58918,1577007 +22904,265,12,329010,1496226 +22905,214,12,13391,67078 +22906,214,12,16235,102871 +22907,283,12,9966,19662 +22908,214,12,82492,53073 +22909,214,12,193756,14895 +22910,214,12,16164,82132 +22911,214,12,107073,112133 +22912,214,12,40863,66125 +22913,300,12,638,6223 +22914,265,12,31022,1681777 +22915,214,12,196359,1547646 +22916,214,12,4147,39 +22917,389,12,11045,1414562 +22918,283,12,35651,966444 +22919,70,12,229638,33019 +22920,214,12,262528,89748 +22921,265,12,245891,882944 +22922,283,12,58060,1458731 +22923,70,12,19209,74769 +22924,283,12,26889,1434790 +22925,265,12,152532,16831 +22926,283,12,33788,59932 +22927,265,12,11524,638 +22928,283,12,29698,7583 +22929,214,12,17609,42099 +22930,214,12,10674,69163 +22931,107,12,194,1735713 +22932,214,12,210615,11197 +22933,214,12,9946,57614 +22934,315,12,15092,1414546 +22935,214,12,42941,11359 +22936,265,12,120672,1004059 +22937,265,12,343934,1226331 +22938,265,12,12831,48885 +22939,271,12,329865,1646484 +22940,283,12,755,7731 +22941,265,12,11058,62511 +22942,318,12,50725,1830526 +22943,389,12,9902,1595488 +22944,214,12,103218,120631 +22945,214,12,86838,29227 +22946,283,12,334,4772 +22947,214,12,28171,100023 +22948,214,12,44155,586297 +22949,214,12,15263,130225 +22950,283,12,28448,30488 +22951,265,12,68750,124334 +22952,283,12,88273,62930 +22953,214,12,40220,10620 +22954,214,12,44363,51030 +22955,70,12,271185,941427 +22956,214,12,86820,56787 +22957,322,12,167810,1460752 +22958,163,12,362057,51323 +22959,214,12,12720,73682 +22960,163,12,66894,1242498 +22961,265,12,376660,978336 +22962,265,12,19688,66727 +22963,214,12,84577,1189765 +22964,214,12,13551,3954 +22965,163,12,103875,32463 +22966,214,12,12573,1224 +22967,70,12,299,1685989 +22968,271,12,76047,3868 +22969,322,12,11045,1347758 +22970,265,12,10379,64946 +22971,214,12,14207,1492541 +22972,163,12,11397,35692 +22973,265,12,358982,1509633 +22974,214,12,764,11467 +22975,300,12,11202,1583351 +22976,214,12,174611,1004922 +22977,214,12,37725,1247468 +22978,214,12,40990,1098748 +22979,283,12,222935,1720 +22980,214,12,28171,120226 +22981,214,12,86814,1093088 +22982,265,12,42188,83664 +22983,214,12,40047,21454 +22984,214,12,131475,968602 +22985,214,12,413782,110962 +22986,265,12,264569,65918 +22987,322,12,405473,1800057 +22988,214,12,212481,230572 +22989,283,12,110146,20540 +22990,283,12,40807,6410 +22991,265,12,241258,59522 +22992,265,12,9609,414 +22993,214,12,77950,11652 +22994,163,12,8342,80690 +22995,265,12,264525,1373695 +22996,265,12,24123,51030 +22997,283,12,38322,53360 +22998,283,12,2758,5490 +22999,283,12,57749,75140 +23000,265,12,25241,93415 +23001,265,12,59935,6101 +23002,265,12,10748,56710 +23003,214,12,14459,1088259 +23004,265,12,12631,37956 +23005,214,12,445602,1771714 +23006,265,12,363479,1127214 +23007,265,12,157843,1907219 +23008,283,12,10008,47205 +23009,271,12,46982,1182638 +23010,214,12,51828,935634 +23011,393,12,1624,1870783 +23012,214,12,16092,79284 +23013,322,12,9042,1389626 +23014,214,12,2907,2997 +23015,214,12,217038,1201670 +23016,70,12,24405,71234 +23017,265,12,393732,1780234 +23018,214,12,9795,64167 +23019,214,12,264080,1334579 +23020,389,12,240832,1412924 +23021,318,12,9593,1684385 +23022,214,12,4551,5382 +23023,265,12,277355,1462817 +23024,283,12,47540,2325 +23025,214,12,83430,54255 +23026,265,12,419459,1729059 +23027,214,12,31548,1557 +23028,271,12,18,8386 +23029,214,12,287483,1703684 +23030,283,12,2666,29419 +23031,265,12,209248,70187 +23032,283,12,300155,1317046 +23033,265,12,11328,18826 +23034,265,12,3291,20567 +23035,214,12,8398,54843 +23036,265,12,8270,50459 +23037,265,12,153854,682687 +23038,214,12,244539,967199 +23039,214,12,1907,2035 +23040,283,12,294016,5490 +23041,214,12,429174,1760461 +23042,214,12,277710,1474174 +23043,214,12,26390,1050155 +23044,214,12,809,12107 +23045,70,12,356752,1841616 +23046,214,12,399790,79135 +23047,265,12,98566,1018752 +23048,214,12,109122,89158 +23049,214,12,690,10348 +23050,283,12,6440,3192 +23051,265,12,42494,69571 +23052,214,12,18098,24661 +23053,300,12,284053,1412734 +23054,214,12,48419,140470 +23055,318,12,377447,1825002 +23056,283,12,44287,25365 +23057,372,12,17622,1122012 +23058,283,12,109610,1327596 +23059,283,12,9835,1097 +23060,283,12,104700,11523 +23061,214,12,1903,9183 +23062,214,12,43209,57280 +23063,214,12,2898,3388 +23064,214,12,40229,118938 +23065,214,12,9591,16297 +23066,214,12,75300,582910 +23067,265,12,9963,61095 +23068,265,12,407806,1373056 +23069,214,12,14435,62841 +23070,271,12,18937,1451611 +23071,283,12,16996,434 +23072,214,12,21198,8296 +23073,214,12,353728,1500500 +23074,214,12,319340,935703 +23075,283,12,193,2400 +23076,214,12,1634,14337 +23077,265,12,99,93 +23078,214,12,1995,20515 +23079,214,12,390747,93814 +23080,214,12,75162,5398 +23081,214,12,12499,1091 +23082,214,12,283489,931 +23083,318,12,334074,1833111 +23084,214,12,6069,3804 +23085,214,12,13551,1422948 +23086,214,12,37958,77288 +23087,214,12,17287,78021 +23088,265,12,10708,66921 +23089,214,12,4953,4276 +23090,13,12,86829,1178792 +23091,265,12,10748,4757 +23092,214,12,12158,56189 +23093,265,12,71503,563103 +23094,265,12,284564,94451 +23095,265,12,272693,1404093 +23096,214,12,345489,40406 +23097,214,12,97614,284 +23098,265,12,1452,21697 +23099,283,12,9981,546 +23100,214,12,159667,1519343 +23101,70,12,19209,1243078 +23102,372,12,75233,1269371 +23103,214,12,9514,673 +23104,283,12,47186,2952 +23105,214,12,68629,60187 +23106,214,12,87516,5281 +23107,271,12,383914,1622041 +23108,214,12,29236,39761 +23109,271,12,210913,22499 +23110,214,12,41115,73748 +23111,214,12,205584,21085 +23112,214,12,8070,3524 +23113,265,12,32657,63720 +23114,214,12,310133,1458715 +23115,265,12,356326,1346222 +23116,70,12,47426,233192 +23117,214,12,1833,11222 +23118,214,12,20108,26013 +23119,265,12,6933,51452 +23120,214,12,258147,1020818 +23121,283,12,338518,1281607 +23122,70,12,403119,1531696 +23123,265,12,9272,21968 +23124,283,12,9358,5363 +23125,70,12,18317,1529521 +23126,283,12,331313,928414 +23127,214,12,27462,45460 +23128,372,12,13437,119177 +23129,322,12,12102,1217560 +23130,214,12,11908,70893 +23131,283,12,82684,5914 +23132,214,12,630,9055 +23133,265,12,394822,986415 +23134,283,12,9993,61624 +23135,214,12,47670,64183 +23136,286,3,384160,1619141 +23137,265,12,28448,32035 +23138,70,12,74924,12012 +23139,265,12,10915,4385 +23140,372,12,16839,937888 +23141,214,12,334538,1116278 +23142,265,12,42094,13871 +23143,70,12,101325,1560969 +23144,70,12,71503,563117 +23145,271,12,1986,1582914 +23146,214,12,2021,20423 +23147,265,12,10611,66119 +23148,372,12,345915,990955 +23149,214,12,321039,1506291 +23150,214,12,38022,139210 +23151,214,12,28430,39853 +23152,271,12,332806,1663950 +23153,265,12,326359,7879 +23154,214,12,224251,156658 +23155,214,12,5257,42378 +23156,265,12,11236,1776 +23157,163,12,250574,1435170 +23158,214,12,14372,41383 +23159,265,12,11058,31515 +23160,163,12,374475,3702 +23161,214,12,298228,98868 +23162,283,12,72710,6044 +23163,214,12,248087,43654 +23164,70,12,16638,31340 +23165,214,12,24739,2720 +23166,372,12,102,1014 +23167,283,12,241930,1277528 +23168,271,12,19901,1418806 +23169,214,12,11257,54448 +23170,283,12,102668,1031771 +23171,231,12,93350,3727 +23172,283,12,62492,2952 +23173,265,12,62694,8502 +23174,271,12,961,10523 +23175,265,12,307081,76046 +23176,163,12,43641,34936 +23177,283,12,8942,17635 +23178,214,12,82448,927983 +23179,271,12,32088,1421646 +23180,265,12,67748,68541 +23181,318,12,1624,1692679 +23182,214,12,92657,1154458 +23183,265,12,138372,1108825 +23184,265,12,11622,70053 +23185,265,12,15045,1807707 +23186,214,12,25643,1050643 +23187,214,12,242,1776 +23188,283,12,16342,47205 +23189,214,12,12525,35088 +23190,214,12,246133,1001547 +23191,70,12,39045,1235078 +23192,214,12,9396,57594 +23193,265,12,209112,79242 +23194,265,12,241254,1367053 +23195,265,12,3291,1884 +23196,283,12,3055,13271 +23197,70,12,102222,1121984 +23198,214,12,8672,27042 +23199,214,12,25983,27710 +23200,214,12,108365,35524 +23201,214,12,302528,20182 +23202,283,12,10066,19680 +23203,163,12,14047,1392615 +23204,265,12,9312,34652 +23205,214,12,152737,59839 +23206,214,12,3051,8406 +23207,70,12,42418,128103 +23208,265,12,92393,1125957 +23209,283,12,18801,423 +23210,214,12,43022,133828 +23211,283,12,75761,19662 +23212,231,12,98066,56597 +23213,357,3,395992,1445969 +23214,283,12,1896,19812 +23215,271,12,397837,1444305 +23216,214,12,110491,1049445 +23217,214,12,79735,1091871 +23218,13,3,408381,1657549 +23219,393,12,10929,959742 +23220,265,12,43491,4123 +23221,265,12,30352,18878 +23222,214,12,12526,72640 +23223,214,12,214756,570788 +23224,214,12,288952,1157339 +23225,214,12,12450,72260 +23226,283,12,338,4222 +23227,283,12,315010,62257 +23228,214,12,78802,1841487 +23229,214,12,2924,2182 +23230,70,12,354859,1651500 +23231,214,12,19238,87441 +23232,214,12,488,6601 +23233,214,12,21413,150208 +23234,214,12,11035,33788 +23235,283,12,2110,21650 +23236,214,12,126090,573606 +23237,283,12,339527,3965 +23238,163,12,75778,24254 +23239,283,12,270383,1813875 +23240,214,12,283701,45135 +23241,283,12,41171,6347 +23242,214,12,24559,9579 +23243,283,12,13616,1586322 +23244,265,12,773,428915 +23245,214,12,31397,33009 +23246,214,12,69315,1224368 +23247,214,12,84185,939199 +23248,163,12,21338,3392 +23249,265,12,214756,1224494 +23250,214,12,20160,5981 +23251,214,12,5881,46294 +23252,265,12,12683,101090 +23253,283,12,29444,10817 +23254,265,12,114719,43517 +23255,70,12,31264,136406 +23256,265,12,72710,20567 +23257,283,12,448847,1797863 +23258,214,12,52782,3601 +23259,283,12,20544,77250 +23260,214,12,341886,1102370 +23261,283,12,47955,597 +23262,214,12,13440,27095 +23263,214,12,39436,4955 +23264,265,12,120,1307 +23265,265,12,15661,87195 +23266,265,12,27085,1375369 +23267,372,12,257345,1543589 +23268,214,12,8916,32532 +23269,271,12,42852,1585483 +23270,214,12,52736,86165 +23271,214,12,285848,1015839 +23272,265,12,10201,1296 +23273,214,12,18634,113302 +23274,214,12,32558,3248 +23275,214,12,13701,2487 +23276,214,12,218582,33019 +23277,265,12,9894,60083 +23278,283,12,140814,5328 +23279,265,12,105077,77213 +23280,322,12,48231,1643422 +23281,214,12,31118,1021396 +23282,70,12,273481,1519868 +23283,214,12,356752,936976 +23284,214,12,94727,1840038 +23285,265,12,9890,16296 +23286,300,12,55720,62142 +23287,372,12,236324,166993 +23288,214,12,24655,70262 +23289,214,12,108,1134 +23290,70,12,122081,1397076 +23291,214,12,25674,29015 +23292,283,12,13614,1610043 +23293,214,12,336004,74513 +23294,265,12,381737,1252900 +23295,283,12,12525,27241 +23296,214,12,9461,51816 +23297,265,12,145481,1623713 +23298,265,12,325133,1046971 +23299,265,12,401164,1304138 +23300,214,12,9297,23779 +23301,127,3,339403,1339959 +23302,214,12,274479,2043 +23303,214,12,62297,235083 +23304,214,12,30082,1470187 +23305,265,12,347031,1485547 +23306,163,12,316154,1454382 +23307,214,12,78450,584056 +23308,283,12,10063,62695 +23309,265,12,327383,948295 +23310,265,12,307081,1506017 +23311,214,12,86825,578 +23312,283,12,10391,7232 +23313,283,12,293660,986277 +23314,265,12,419430,1030966 +23315,265,12,393732,1385478 +23316,214,12,244403,1449168 +23317,283,12,16077,3192 +23318,214,12,52034,237184 +23319,214,12,162862,93906 +23320,265,12,18890,488 +23321,214,12,8888,17080 +23322,214,12,9953,60864 +23323,214,12,42796,109843 +23324,283,12,18392,551521 +23325,214,12,4344,40474 +23326,70,12,85494,45279 +23327,393,12,337339,989750 +23328,283,12,274479,5914 +23329,214,12,74645,38587 +23330,283,12,271185,1034748 +23331,214,12,400174,213026 +23332,214,12,11008,58183 +23333,214,12,1550,17046 +23334,283,12,4012,35145 +23335,315,12,4413,1406894 +23336,283,12,252888,13271 +23337,214,12,9528,34007 +23338,214,12,1904,488 +23339,107,12,263115,1058965 +23340,163,12,20312,71100 +23341,265,12,37926,1379592 +23342,265,12,109439,20223 +23343,265,12,433034,1846916 +23344,265,12,7514,52839 +23345,70,12,103012,1728382 +23346,214,12,337107,1174345 +23347,265,12,89325,25292 +23348,265,12,2567,954881 +23349,214,12,1912,3929 +23350,265,12,8617,44634 +23351,214,12,24973,8502 +23352,265,12,371181,51702 +23353,214,12,11888,18926 +23354,214,12,84942,931481 +23355,372,12,280030,1703717 +23356,214,12,63273,1005953 +23357,214,12,61400,233067 +23358,364,12,128866,1665453 +23359,265,12,9297,24 +23360,283,12,46931,1437034 +23361,127,3,383538,1358970 +23362,265,12,10740,1309 +23363,265,12,423377,1754611 +23364,283,12,238589,25757 +23365,163,12,313922,209513 +23366,214,12,11635,57132 +23367,283,12,3513,390 +23368,214,12,140846,729 +23369,283,12,140846,1113581 +23370,163,12,57597,64726 +23371,214,12,31118,1066937 +23372,214,12,38787,10520 +23373,144,12,167073,1611823 +23374,283,12,2132,21856 +23375,283,12,237,3081 +23376,265,12,14047,1307 +23377,214,12,21866,136194 +23378,214,12,7511,52788 +23379,372,12,12171,6227 +23380,214,12,14945,122512 +23381,322,12,210913,1405258 +23382,214,12,29113,39761 +23383,265,12,91679,1355491 +23384,214,12,233208,1282040 +23385,214,12,19255,4855 +23386,163,12,60281,1440741 +23387,265,12,103731,142850 +23388,214,12,235,3030 +23389,214,12,8665,14392 +23390,265,12,274857,1451219 +23391,214,12,9894,41039 +23392,283,12,356482,63101 +23393,372,12,139826,29473 +23394,322,12,124963,1487281 +23395,214,12,6978,165827 +23396,214,12,29161,4955 +23397,214,12,50674,1042806 +23398,265,12,1673,18573 +23399,127,3,339403,1635200 +23400,214,12,46924,8967 +23401,265,12,27114,3248 +23402,265,12,68193,56982 +23403,322,12,109439,1868234 +23404,214,12,15916,19595 +23405,214,12,786,11655 +23406,271,12,27966,1021804 +23407,214,12,5511,3831 +23408,214,12,10866,6627 +23409,322,12,186869,1161134 +23410,214,12,74430,11472 +23411,214,12,244610,222096 +23412,214,12,338518,183541 +23413,283,12,11370,970 +23414,214,12,308269,1447878 +23415,214,12,194,2401 +23416,144,12,16442,91234 +23417,214,12,10201,10968 +23418,300,12,28448,41018 +23419,214,12,10596,65793 +23420,214,12,61035,57043 +23421,214,12,356296,1318816 +23422,271,12,59387,1469852 +23423,283,12,16164,5328 +23424,214,12,152042,1315178 +23425,265,12,165,489 +23426,283,12,3682,5328 +23427,265,12,135713,1103646 +23428,283,12,51209,5914 +23429,163,12,98870,139137 +23430,283,12,167810,74320 +23431,265,12,544,7395 +23432,389,12,11056,1418161 +23433,283,12,44754,5669 +23434,286,3,129229,1088724 +23435,231,12,10320,298 +23436,214,12,38417,58862 +23437,283,12,1259,36694 +23438,372,12,64215,1354337 +23439,265,12,10050,56326 +23440,214,12,18897,7700 +23441,265,12,9296,4768 +23442,214,12,3024,29648 +23443,70,12,21619,1311509 +23444,214,12,366696,1095805 +23445,265,12,173294,1273712 +23446,144,12,10066,29475 +23447,283,12,691,10340 +23448,283,12,362057,1400876 +23449,265,12,19255,34885 +23450,214,12,35026,53206 +23451,127,3,339403,1450831 +23452,214,12,188357,237089 +23453,70,12,310137,1537533 +23454,265,12,11607,3986 +23455,265,12,68721,224512 +23456,265,12,44303,110564 +23457,214,12,13920,62739 +23458,214,12,69668,37297 +23459,283,12,8332,55170 +23460,265,12,70981,8401 +23461,214,12,258193,1367358 +23462,283,12,82626,914288 +23463,265,12,82520,118490 +23464,300,12,346672,3954 +23465,214,12,70322,188171 +23466,265,12,62211,1271301 +23467,227,12,6947,1761902 +23468,283,12,13600,5490 +23469,283,12,13550,93418 +23470,214,12,5924,13265 +23471,283,12,621,8882 +23472,300,12,11950,119771 +23473,214,12,19766,4053 +23474,214,12,41097,1197467 +23475,214,12,29467,14446 +23476,163,12,341077,136313 +23477,265,12,14254,8858 +23478,283,12,15092,19662 +23479,214,12,482,6776 +23480,214,12,46786,1140568 +23481,265,12,3172,21220 +23482,265,12,117942,1066310 +23483,214,12,54796,77812 +23484,265,12,352094,145221 +23485,315,12,12573,1535737 +23486,265,12,71859,9000 +23487,214,12,381518,1512747 +23488,318,12,32049,55421 +23489,283,12,25983,62725 +23490,265,12,16428,62557 +23491,214,12,79935,588337 +23492,70,12,11570,8235 +23493,214,12,267935,488 +23494,163,12,19971,71097 +23495,265,12,418378,1375954 +23496,214,12,44389,1034517 +23497,214,12,101669,57857 +23498,214,12,47956,66224 +23499,214,12,48180,52134 +23500,214,12,304372,947243 +23501,214,12,315465,1590928 +23502,70,12,1578,1422613 +23503,322,12,384737,1814009 +23504,93,12,8619,1377233 +23505,265,12,14753,937406 +23506,265,12,31275,1853901 +23507,214,12,1483,17279 +23508,265,12,10425,45830 +23509,214,12,3087,30266 +23510,283,12,127380,963497 +23511,283,12,277237,1512672 +23512,265,12,72912,1037911 +23513,214,12,9717,774 +23514,265,12,4538,1004836 +23515,135,3,401164,1817478 +23516,265,12,43045,133434 +23517,214,12,103689,20660 +23518,214,12,9890,58470 +23519,283,12,1690,1889469 +23520,214,12,42448,47773 +23521,214,12,12831,73911 +23522,163,12,10948,57314 +23523,70,12,45013,1818044 +23524,214,12,114377,54417 +23525,214,12,12102,34693 +23526,214,12,82368,32309 +23527,265,12,370178,1292186 +23528,265,12,9828,59655 +23529,214,12,9902,11697 +23530,265,12,26390,20907 +23531,283,12,6934,23828 +23532,265,12,334527,8891 +23533,283,12,59197,211900 +23534,214,12,120605,1746667 +23535,214,12,422005,1697077 +23536,265,12,154972,1755186 +23537,214,12,42502,1619355 +23538,214,12,43469,1483817 +23539,265,12,76333,582914 +23540,214,12,29345,50719 +23541,214,12,149870,78340 +23542,265,12,75162,10931 +23543,214,12,26679,95996 +23544,214,12,152737,31511 +23545,283,12,14295,67702 +23546,214,12,42619,108999 +23547,214,12,194509,14972 +23548,163,12,19594,5587 +23549,283,12,103620,1003244 +23550,214,12,84577,1189770 +23551,214,12,8071,24852 +23552,214,12,152748,131399 +23553,283,12,280690,1819973 +23554,283,12,70586,41675 +23555,214,12,13596,21584 +23556,389,12,222858,1341767 +23557,265,12,39938,3238 +23558,214,12,442949,1762637 +23559,214,12,13058,55480 +23560,214,12,49521,282 +23561,214,12,334527,66174 +23562,358,12,11377,1546580 +23563,214,12,9951,60810 +23564,214,12,16077,79176 +23565,283,12,41171,4023 +23566,214,12,270024,1319928 +23567,283,12,337104,32604 +23568,214,12,51481,144297 +23569,265,12,252171,216366 +23570,283,12,3554,13271 +23571,214,12,37292,12278 +23572,283,12,39356,1409490 +23573,214,12,55505,36146 +23574,300,12,773,57560 +23575,265,12,169934,17310 +23576,214,12,59744,30980 +23577,214,12,330770,1533796 +23578,163,12,327389,1299753 +23579,214,12,401164,1161729 +23580,283,12,772,3275 +23581,271,12,13336,1410592 +23582,214,12,29382,103691 +23583,283,12,3172,1484 +23584,283,12,19912,59932 +23585,322,12,2503,1406860 +23586,214,12,16523,52693 +23587,265,12,307081,1506014 +23588,214,12,157847,999821 +23589,265,12,82520,117840 +23590,214,12,74777,583459 +23591,283,12,655,9885 +23592,214,12,45827,63670 +23593,265,12,341077,70522 +23594,214,12,9963,20739 +23595,214,12,18111,27992 +23596,265,12,18387,947929 +23597,163,12,49521,79242 +23598,214,12,107693,5268 +23599,214,12,18475,84108 +23600,214,12,51976,567736 +23601,214,12,14505,1464943 +23602,214,12,1589,57152 +23603,214,12,80316,30919 +23604,265,12,135713,1103649 +23605,300,12,9771,1320213 +23606,283,12,9902,76015 +23607,214,12,12573,1223 +23608,214,12,42669,4123 +23609,372,12,47342,1837879 +23610,265,12,242090,45405 +23611,283,12,193610,545 +23612,283,12,261246,11458 +23613,271,12,690,10353 +23614,265,12,13848,117990 +23615,393,12,313922,1318192 +23616,70,12,12,76590 +23617,214,12,17744,3349 +23618,265,12,12128,67543 +23619,265,12,81541,952379 +23620,214,12,8368,54740 +23621,214,12,18405,5140 +23622,214,12,28894,101496 +23623,214,12,74525,328697 +23624,214,12,11235,8967 +23625,214,12,11593,2997 +23626,265,12,117905,107463 +23627,214,12,18414,21677 +23628,214,12,54690,1542421 +23629,214,12,85414,1203909 +23630,214,12,9568,12477 +23631,214,12,9778,15306 +23632,283,12,8915,23545 +23633,283,12,5922,8426 +23634,214,12,75761,576218 +23635,214,12,10320,8701 +23636,265,12,69668,973134 +23637,214,12,10238,6648 +23638,265,12,37206,953724 +23639,214,12,31347,70125 +23640,283,12,2637,7494 +23641,214,12,44943,234940 +23642,214,12,635,9169 +23643,214,12,30527,35032 +23644,283,12,77930,51922 +23645,163,12,53150,1746076 +23646,214,12,25078,93107 +23647,265,12,1911,56967 +23648,265,12,43903,4123 +23649,214,12,220287,1210543 +23650,214,12,339994,67111 +23651,265,12,11302,6994 +23652,271,12,20123,1743704 +23653,214,12,40688,55163 +23654,214,12,58396,43634 +23655,214,12,50225,42367 +23656,284,12,613,1425861 +23657,265,12,12763,60032 +23658,214,12,9023,56671 +23659,214,12,44943,11874 +23660,265,12,68721,15277 +23661,214,12,70586,17210 +23662,214,12,206514,1189051 +23663,70,12,285840,21091 +23664,283,12,312221,6410 +23665,265,12,63281,1612381 +23666,214,12,158908,66207 +23667,214,12,7511,68602 +23668,214,12,245906,5656 +23669,214,12,383140,1582463 +23670,214,12,10735,18350 +23671,265,12,88558,67681 +23672,214,12,86118,1341080 +23673,214,12,45527,40609 +23674,214,12,14878,1275835 +23675,214,12,331161,91351 +23676,214,12,140846,1113578 +23677,214,12,228108,1160627 +23678,322,12,10320,1400385 +23679,283,12,7220,39455 +23680,265,12,72105,114410 +23681,214,12,21135,9751 +23682,214,12,158908,697538 +23683,265,12,45013,158401 +23684,283,12,316154,1840866 +23685,265,12,99861,15277 +23686,214,12,119433,176031 +23687,283,12,326285,1034748 +23688,70,12,10657,1215287 +23689,214,12,11120,30571 +23690,214,12,91571,37456 +23691,214,12,369406,234615 +23692,265,12,10740,66730 +23693,265,12,44282,1301191 +23694,265,12,62837,956249 +23695,265,12,3291,31520 +23696,265,12,91333,939456 +23697,214,12,42472,70259 +23698,265,12,76341,1451219 +23699,70,12,26376,109843 +23700,214,12,10867,59839 +23701,300,12,419430,1738153 +23702,283,12,16313,1176817 +23703,283,12,1715,3192 +23704,70,12,343173,1542343 +23705,214,12,57996,1538520 +23706,214,12,20941,1723681 +23707,163,12,166671,53393 +23708,227,12,8869,1738126 +23709,214,12,58396,228521 +23710,214,12,10703,66767 +23711,283,12,11338,897 +23712,265,12,44877,69452 +23713,127,3,339403,1635206 +23714,163,12,10204,19619 +23715,283,12,17111,1180488 +23716,214,12,76094,7646 +23717,265,12,28366,18897 +23718,214,12,16442,11435 +23719,315,12,59962,1551704 +23720,214,12,109587,1055275 +23721,214,12,244,3487 +23722,214,12,286595,1167745 +23723,265,12,9611,58179 +23724,70,12,106747,1760479 +23725,389,12,351211,1652076 +23726,265,12,4248,15756 +23727,265,12,264569,65923 +23728,283,12,108869,1263 +23729,265,12,22897,27095 +23730,214,12,35895,235760 +23731,214,12,28452,100847 +23732,318,12,961,1547449 +23733,214,12,41733,57132 +23734,393,12,284053,1653683 +23735,318,12,10204,1401354 +23736,265,12,50318,1084897 +23737,214,12,290764,80604 +23738,283,12,166076,1116126 +23739,372,12,410118,1712243 +23740,163,12,10590,65709 +23741,214,12,21566,1734986 +23742,372,12,381008,171949 +23743,214,12,246011,1168205 +23744,265,12,9667,20305 +23745,214,12,260001,1302551 +23746,214,12,63825,78747 +23747,283,12,2757,6959 +23748,214,12,1896,19807 +23749,214,12,2080,7626 +23750,271,12,694,10408 +23751,322,12,6171,1426783 +23752,214,12,64720,937957 +23753,214,12,49712,376 +23754,214,12,52936,4834 +23755,283,12,10075,1034748 +23756,265,12,272878,62807 +23757,265,12,5915,1254 +23758,389,12,18,1881570 +23759,265,12,64942,1089479 +23760,214,12,18998,68612 +23761,265,12,102629,971109 +23762,214,12,37291,91343 +23763,300,12,1428,19449 +23764,300,12,379019,1665542 +23765,265,12,205891,1188276 +23766,214,12,19594,12881 +23767,127,3,339403,1635225 +23768,265,12,378607,1566575 +23769,286,3,38164,24287 +23770,70,12,28178,60190 +23771,214,12,9532,21586 +23772,265,12,336004,1367061 +23773,283,12,10491,2532 +23774,214,12,266400,1313041 +23775,214,12,361750,1257939 +23776,265,12,66125,6625 +23777,265,12,283995,7624 +23778,214,12,190955,1128690 +23779,214,12,577,7798 +23780,265,12,252171,1264928 +23781,214,12,259292,10148 +23782,265,12,18506,23485 +23783,214,12,128215,11004 +23784,163,12,15316,959764 +23785,214,12,16135,55486 +23786,214,12,301228,1429200 +23787,214,12,443007,1763906 +23788,70,12,27230,1257733 +23789,283,12,356842,1190164 +23790,214,12,2778,11957 +23791,283,12,209112,60665 +23792,265,12,13586,91297 +23793,265,12,336004,38551 +23794,214,12,2760,27906 +23795,214,12,55612,1822760 +23796,214,12,32657,10569 +23797,214,12,35428,1018865 +23798,214,12,163870,973293 +23799,214,12,373546,62700 +23800,214,12,172386,56238 +23801,265,12,11415,102429 +23802,214,12,301875,22498 +23803,214,12,47386,74131 +23804,214,12,339994,1706501 +23805,265,12,411741,1673675 +23806,214,12,85230,23862 +23807,163,12,128866,77869 +23808,271,12,353462,1554238 +23809,265,12,18238,75572 +23810,300,12,40807,1638919 +23811,283,12,26180,598 +23812,265,12,244786,1030966 +23813,214,12,362057,230691 +23814,231,12,320588,1637925 +23815,265,12,2293,39973 +23816,214,12,268618,43403 +23817,315,12,13678,1297468 +23818,372,12,19901,1121518 +23819,283,12,41733,14377 +23820,214,12,1793,19128 +23821,214,12,130739,1100368 +23822,214,12,2566,4401 +23823,214,12,210047,1292993 +23824,265,12,82654,959114 +23825,265,12,346473,62161 +23826,214,12,354287,287 +23827,214,12,46586,30168 +23828,322,12,12113,1405427 +23829,318,12,226701,1860633 +23830,214,12,7942,53358 +23831,59,3,368006,1640311 +23832,283,12,24624,60591 +23833,70,12,360283,1311001 +23834,214,12,18317,1258215 +23835,283,12,83384,9544 +23836,214,12,101998,19950 +23837,127,3,339403,1309900 +23838,214,12,289960,1034587 +23839,318,12,18,1881571 +23840,265,12,7515,65816 +23841,214,12,10389,26724 +23842,214,12,256836,1300938 +23843,265,12,19766,58408 +23844,283,12,112973,41080 +23845,214,12,10208,44064 +23846,214,12,14979,17207 +23847,265,12,72710,3498 +23848,322,12,198663,1367509 +23849,214,12,127372,81696 +23850,265,12,338063,1581562 +23851,265,12,2924,339 +23852,283,12,419459,5669 +23853,127,3,339403,92491 +23854,214,12,50779,1020052 +23855,163,12,93858,40476 +23856,357,3,337339,1907212 +23857,265,12,10611,65135 +23858,214,12,9292,1091 +23859,214,12,19621,11381 +23860,265,12,8329,37950 +23861,214,12,31835,11435 +23862,214,12,14695,6892 +23863,265,12,15092,51030 +23864,214,12,83430,53995 +23865,214,12,46020,102428 +23866,214,12,41714,76565 +23867,214,12,263472,64058 +23868,214,12,64398,3601 +23869,214,12,156981,1138213 +23870,265,12,294819,123099 +23871,393,12,9352,1085296 +23872,393,12,103332,1547214 +23873,214,12,120672,930791 +23874,283,12,12144,13585 +23875,214,12,266433,1359995 +23876,70,12,28297,1338878 +23877,265,12,11633,929975 +23878,283,12,13312,1121531 +23879,214,12,123961,3663 +23880,214,12,11887,67603 +23881,214,12,18912,83863 +23882,214,12,616,9182 +23883,318,12,101325,1560986 +23884,214,12,35200,113985 +23885,214,12,12106,4146 +23886,265,12,10077,18691 +23887,214,12,11415,35475 +23888,283,12,10484,1968 +23889,127,3,383538,1473957 +23890,283,12,132363,3192 +23891,265,12,24238,92738 +23892,214,12,256962,72960 +23893,265,12,193756,1046155 +23894,214,12,102384,13348 +23895,214,12,73896,97047 +23896,214,12,116351,1366990 +23897,283,12,8916,1096416 +23898,163,12,36658,10850 +23899,214,12,14868,77727 +23900,214,12,1690,6869 +23901,214,12,34326,1517984 +23902,283,12,95516,53680 +23903,265,12,1924,20009 +23904,214,12,6183,16820 +23905,214,12,413198,70109 +23906,214,12,45133,132241 +23907,163,12,246741,1409487 +23908,163,12,423988,34338 +23909,214,12,1959,20248 +23910,214,12,696,6993 +23911,265,12,292625,545660 +23912,127,3,339403,1635219 +23913,214,12,41110,1110466 +23914,299,12,11024,1411841 +23915,393,12,68629,1538720 +23916,283,12,46094,1697664 +23917,214,12,965,40 +23918,300,12,424488,1411365 +23919,283,12,47342,2874 +23920,271,12,2300,146668 +23921,265,12,153102,1133674 +23922,271,12,4497,37499 +23923,214,12,274857,41289 +23924,283,12,98339,1035176 +23925,214,12,2071,21242 +23926,214,12,36691,18344 +23927,265,12,172828,45405 +23928,214,12,45244,32835 +23929,283,12,205587,19689 +23930,214,12,257088,49826 +23931,283,12,152532,5328 +23932,283,12,13162,1392108 +23933,214,12,352890,1499121 +23934,214,12,76757,9340 +23935,358,12,634,1564277 +23936,265,12,103713,1034654 +23937,283,12,8053,60665 +23938,393,12,274857,1546743 +23939,265,12,380058,562673 +23940,214,12,343173,55754 +23941,214,12,323426,85530 +23942,214,12,80276,1209798 +23943,214,12,242,3222 +23944,265,12,18405,568312 +23945,214,12,13788,54844 +23946,214,12,362150,1517102 +23947,283,12,353728,7800 +23948,214,12,121598,54297 +23949,214,12,59744,1444837 +23950,214,12,3104,29665 +23951,283,12,285860,1035176 +23952,214,12,24453,1434774 +23953,283,12,2897,983051 +23954,214,12,47653,21300 +23955,214,12,224813,1210335 +23956,214,12,18475,84107 +23957,265,12,22029,1483729 +23958,214,12,118098,1066804 +23959,283,12,209112,17610 +23960,271,12,10198,928605 +23961,283,12,19819,949 +23962,214,12,61985,30410 +23963,214,12,2567,27218 +23964,214,12,40807,54734 +23965,271,12,975,1410819 +23966,214,12,4133,1247414 +23967,214,12,394668,1817875 +23968,265,12,31306,58471 +23969,163,12,246860,28391 +23970,265,12,291871,17051 +23971,265,12,18392,551516 +23972,70,12,185153,1540039 +23973,318,12,12273,1705309 +23974,214,12,8282,54318 +23975,214,12,26761,120530 +23976,283,12,11056,1054076 +23977,214,12,21242,1417376 +23978,283,12,54287,1603861 +23979,214,12,96712,552206 +23980,283,12,157354,13064 +23981,271,12,2965,29062 +23982,283,12,30091,2952 +23983,144,12,22292,129560 +23984,283,12,11058,20540 +23985,283,12,46806,4952 +23986,214,12,10071,21767 +23987,214,12,3172,8246 +23988,214,12,443319,1257144 +23989,265,12,102197,1602994 +23990,214,12,43379,12329 +23991,214,12,60665,1056271 +23992,265,12,310135,557855 +23993,214,12,10829,67021 +23994,265,12,172385,5713 +23995,265,12,284564,1680439 +23996,265,12,427680,1758553 +23997,214,12,49850,20634 +23998,214,12,33789,497664 +23999,283,12,140894,1245212 +24000,214,12,20325,30174 +24001,214,12,11084,21440 +24002,214,12,39781,141299 +24003,265,12,1381,6468 +24004,214,12,5881,46280 +24005,214,12,1721,56721 +24006,214,12,72711,566957 +24007,214,12,10320,2212 +24008,214,12,109451,970590 +24009,214,12,70199,558101 +24010,265,12,134394,1474665 +24011,214,12,6963,51613 +24012,283,12,13411,5914 +24013,283,12,10294,13061 +24014,214,12,64972,74036 +24015,214,12,25388,1125464 +24016,214,12,66125,112679 +24017,214,12,287483,1703594 +24018,214,12,41076,3868 +24019,214,12,17770,23964 +24020,300,12,705,1131145 +24021,70,12,96921,5428 +24022,214,12,381015,1636994 +24023,283,12,1049,4023 +24024,283,12,15316,1530086 +24025,265,12,123109,1377410 +24026,144,12,68569,1582353 +24027,265,12,278632,964677 +24028,214,12,94352,12106 +24029,265,12,1498,46323 +24030,163,12,9968,552 +24031,214,12,38579,2043 +24032,214,12,341689,25500 +24033,265,12,25376,47059 +24034,318,12,8247,1701161 +24035,393,12,419430,1533529 +24036,283,12,337104,29941 +24037,265,12,366631,742382 +24038,214,12,82485,61921 +24039,214,12,630,9054 +24040,265,12,445,66861 +24041,283,12,7088,41654 +24042,265,12,1073,15248 +24043,283,12,8247,933333 +24044,214,12,55433,222354 +24045,214,12,111479,1052262 +24046,265,12,9593,1100 +24047,283,12,329682,1577901 +24048,214,12,63144,52988 +24049,214,12,304372,1548067 +24050,214,12,11694,1120619 +24051,265,12,111839,4691 +24052,214,12,212996,126258 +24053,214,12,48116,1114503 +24054,372,12,12622,1132469 +24055,214,12,13507,543840 +24056,283,12,87826,6959 +24057,214,12,134350,1418285 +24058,283,12,9428,5669 +24059,389,12,17209,1616181 +24060,214,12,1687,13269 +24061,214,12,2994,25807 +24062,214,12,14979,63423 +24063,163,12,228066,57201 +24064,214,12,29611,104345 +24065,214,12,67328,548599 +24066,214,12,47112,53521 +24067,214,12,1394,23508 +24068,214,12,15019,54742 +24069,164,3,381518,1652658 +24070,214,12,222858,37021 +24071,214,12,308174,1394314 +24072,214,12,254193,1015890 +24073,283,12,172785,1155432 +24074,144,12,413998,1400840 +24075,214,12,14642,106024 +24076,283,12,31671,598 +24077,214,12,11509,8844 +24078,214,12,318224,939445 +24079,265,12,394822,228146 +24080,214,12,20312,27556 +24081,265,12,10333,3662 +24082,214,12,9753,59009 +24083,214,12,109251,46602 +24084,265,12,11777,2997 +24085,372,12,62732,1608317 +24086,265,12,27150,8955 +24087,214,12,27381,58148 +24088,70,12,320588,1637927 +24089,214,12,38286,120024 +24090,214,12,52369,939465 +24091,265,12,365942,1355345 +24092,214,12,103590,1034421 +24093,163,12,257344,963297 +24094,372,12,10425,65109 +24095,163,12,362439,1489176 +24096,214,12,69315,28741 +24097,283,12,300654,5669 +24098,214,12,14069,40342 +24099,271,12,31995,15382 +24100,372,12,336890,75828 +24101,265,12,197854,1451508 +24102,214,12,53574,89911 +24103,214,12,9438,58266 +24104,214,12,60106,935703 +24105,214,12,283384,72461 +24106,318,12,19754,1555339 +24107,283,12,23599,1176345 +24108,265,12,43434,1117768 +24109,214,12,59981,73412 +24110,322,12,118957,1402905 +24111,315,12,143946,1493680 +24112,271,12,27346,90387 +24113,283,12,10740,2952 +24114,318,12,50126,1692496 +24115,283,12,20312,1424451 +24116,283,12,75,546 +24117,214,12,43367,11435 +24118,265,12,244316,1426231 +24119,265,12,284564,1680441 +24120,322,12,6972,1401746 +24121,265,12,323675,20223 +24122,265,12,8467,55164 +24123,214,12,10691,7530 +24124,372,12,40229,1062890 +24125,265,12,356752,1841602 +24126,214,12,273481,60076 +24127,265,12,82687,54734 +24128,214,12,469172,5268 +24129,283,12,339994,13585 +24130,214,12,31473,108097 +24131,265,12,37710,968632 +24132,299,12,406431,461363 +24133,214,12,18586,39824 +24134,283,12,227700,1018073 +24135,283,12,55563,24958 +24136,214,12,367412,1533516 +24137,214,12,94204,51702 +24138,283,12,77338,1015894 +24139,214,12,197,151305 +24140,318,12,256962,1819168 +24141,283,12,23730,897 +24142,283,12,76170,1095403 +24143,283,12,18514,19689 +24144,214,12,11553,12684 +24145,214,12,3036,29856 +24146,163,12,1278,10571 +24147,265,12,109466,81290 +24148,214,12,864,11899 +24149,372,12,170279,1665913 +24150,265,12,6973,11697 +24151,265,12,302528,64191 +24152,372,12,47889,1215656 +24153,163,12,10362,80788 +24154,214,12,25855,57214 +24155,265,12,78403,236844 +24156,214,12,24405,4700 +24157,214,12,120,108 +24158,214,12,67633,1043268 +24159,265,12,3638,33437 +24160,214,12,32043,21024 +24161,214,12,9504,57753 +24162,214,12,13798,1188361 +24163,393,12,55534,1099130 +24164,214,12,10972,67682 +24165,283,12,14,494 +24166,214,12,122019,1401670 +24167,265,12,392386,552432 +24168,214,12,339419,1486911 +24169,214,12,99,311 +24170,372,12,43434,50118 +24171,393,12,13380,1753071 +24172,214,12,1890,25184 +24173,265,12,412103,1245733 +24174,214,12,48962,147899 +24175,214,12,57683,29525 +24176,265,12,298865,1037908 +24177,214,12,34151,8931 +24178,265,12,9664,68391 +24179,214,12,201085,54211 +24180,214,12,82622,657077 +24181,265,12,19235,84798 +24182,163,12,408024,1031960 +24183,265,12,14286,25481 +24184,315,12,6933,1560277 +24185,283,12,20242,1262 +24186,214,12,9815,58987 +24187,283,12,332411,1579377 +24188,70,12,25568,1459115 +24189,271,12,38034,119469 +24190,283,12,11688,7903 +24191,214,12,33511,18846 +24192,214,12,27042,42291 +24193,214,12,64454,22519 +24194,214,12,182127,64426 +24195,265,12,42307,1486912 +24196,283,12,307081,1024910 +24197,214,12,13005,1254 +24198,214,12,9953,60862 +24199,299,12,245168,1578865 +24200,231,12,11547,1470939 +24201,214,12,149870,78343 +24202,214,12,263115,7200 +24203,163,12,44363,1462811 +24204,265,12,19971,66710 +24205,283,12,196235,1176357 +24206,265,12,10550,16787 +24207,283,12,258251,1045437 +24208,283,12,94348,1720 +24209,300,12,16214,76160 +24210,214,12,6068,4504 +24211,214,12,92321,1817520 +24212,214,12,12561,50661 +24213,214,12,427095,568662 +24214,214,12,18093,49972 +24215,214,12,108312,1043812 +24216,322,12,10070,1440745 +24217,283,12,16436,49442 +24218,163,12,7555,51451 +24219,283,12,26422,958007 +24220,70,12,24634,39727 +24221,283,12,18238,2073 +24222,214,12,11007,58266 +24223,214,12,15325,2229 +24224,265,12,37725,43559 +24225,322,12,338189,1406056 +24226,265,12,94348,17210 +24227,214,12,286532,19271 +24228,214,12,70586,62644 +24229,283,12,91333,63784 +24230,283,12,72431,53360 +24231,214,12,7454,1204207 +24232,214,12,286532,19272 +24233,214,12,74581,7459 +24234,265,12,139455,1116279 +24235,265,12,9667,28632 +24236,265,12,11354,6891 +24237,214,12,744,771 +24238,214,12,12704,6449 +24239,214,12,32764,6098 +24240,283,12,246860,25755 +24241,214,12,62492,198148 +24242,283,12,353616,1718981 +24243,322,12,7220,932179 +24244,283,12,60599,1329533 +24245,265,12,32080,1479129 +24246,265,12,317198,86924 +24247,214,12,269494,1452550 +24248,214,12,71067,100047 +24249,393,12,12103,1625930 +24250,265,12,15725,110523 +24251,214,12,16177,1317615 +24252,286,3,48281,59590 +24253,315,12,8467,45119 +24254,214,12,345915,90542 +24255,214,12,11521,56947 +24256,214,12,102222,51709 +24257,214,12,14983,81305 +24258,283,12,337339,561 +24259,214,12,26768,96185 +24260,163,12,336882,1646966 +24261,214,12,213121,7899 +24262,214,12,10075,62875 +24263,265,12,28178,43559 +24264,70,12,7219,53187 +24265,265,12,17473,81916 +24266,70,12,3933,959668 +24267,214,12,10890,57132 +24268,283,12,421365,980256 +24269,214,12,11524,770 +24270,214,12,30966,107376 +24271,265,12,86236,65558 +24272,144,12,379019,124704 +24273,214,12,9950,60788 +24274,214,12,9977,61336 +24275,26,12,11024,1464344 +24276,214,12,9563,3184 +24277,265,12,87516,16255 +24278,372,12,403867,1723491 +24279,70,12,423377,1754606 +24280,271,12,76380,495529 +24281,144,12,220,85426 +24282,214,12,42182,67236 +24283,271,12,2604,1495279 +24284,283,12,214756,7494 +24285,322,12,12113,1405428 +24286,214,12,93828,999762 +24287,214,12,61765,36515 +24288,214,12,19209,18679 +24289,265,12,8272,54243 +24290,163,12,31021,1880128 +24291,214,12,13437,18691 +24292,214,12,19176,339 +24293,265,12,427680,1758552 +24294,214,12,82687,928595 +24295,214,12,66526,91552 +24296,265,12,252680,26996 +24297,214,12,352094,145225 +24298,214,12,70734,37362 +24299,322,12,197,1406929 +24300,70,12,340215,1630289 +24301,214,12,38808,68083 +24302,265,12,11185,68489 +24303,214,12,24090,137972 +24304,265,12,9746,34336 +24305,265,12,137528,1764640 +24306,283,12,339530,23828 +24307,372,12,231145,1099941 +24308,372,12,27259,57201 +24309,265,12,256347,1319040 +24310,214,12,22328,12863 +24311,214,12,3537,7726 +24312,265,12,2977,118168 +24313,372,12,8053,1128354 +24314,283,12,112304,1319194 +24315,214,12,244786,60864 +24316,265,12,441728,1463127 +24317,214,12,151826,1165765 +24318,283,12,30666,1282415 +24319,300,12,621,8880 +24320,214,12,5516,45861 +24321,265,12,8204,8312 +24322,214,12,192023,1172463 +24323,163,12,14552,791276 +24324,286,3,128284,237859 +24325,70,12,92389,213405 +24326,265,12,376570,1610491 +24327,163,12,62837,1117311 +24328,265,12,360784,8275 +24329,214,12,37710,4504 +24330,265,12,9298,467 +24331,214,12,184795,39996 +24332,214,12,174769,31497 +24333,283,12,227348,17674 +24334,265,12,42093,22609 +24335,265,12,25132,1014924 +24336,214,12,24554,90864 +24337,214,12,393445,85699 +24338,214,12,12538,31710 +24339,214,12,6557,21635 +24340,265,12,330115,1496225 +24341,283,12,36960,63784 +24342,70,12,86297,1685871 +24343,322,12,32049,1833617 +24344,93,12,42418,53346 +24345,214,12,411741,67111 +24346,265,12,409,59839 +24347,214,12,84336,55484 +24348,265,12,693,10390 +24349,214,12,186971,41793 +24350,214,12,83389,1124534 +24351,283,12,65496,4406 +24352,265,12,429238,62798 +24353,283,12,17622,1325 +24354,247,12,73835,1606278 +24355,163,12,137528,1388854 +24356,283,12,271714,5328 +24357,372,12,398786,1390300 +24358,265,12,10691,51985 +24359,214,12,18665,552206 +24360,283,12,13551,1034748 +24361,265,12,339403,9151 +24362,214,12,290370,147053 +24363,214,12,60994,10684 +24364,271,12,26378,1529469 +24365,70,12,66881,47095 +24366,265,12,277355,1462816 +24367,372,12,15177,77967 +24368,214,12,58309,1404673 +24369,214,12,118889,131602 +24370,214,12,441728,29228 +24371,265,12,50838,585882 +24372,214,12,97630,14392 +24373,214,12,120942,1073159 +24374,214,12,57201,770 +24375,214,12,16890,80988 +24376,214,12,11131,10593 +24377,214,12,88042,935717 +24378,214,12,17046,58164 +24379,214,12,56906,61921 +24380,214,12,3173,31039 +24381,283,12,18133,1263 +24382,283,12,36658,3276 +24383,214,12,54690,1542420 +24384,214,12,293082,1451489 +24385,372,12,9963,61089 +24386,271,12,140554,1707850 +24387,300,12,9352,4844 +24388,214,12,11370,56032 +24389,265,12,2108,1117353 +24390,283,12,6972,37281 +24391,265,12,463906,51702 +24392,214,12,11230,65981 +24393,283,12,19918,25365 +24394,214,12,70988,237973 +24395,265,12,346473,105788 +24396,214,12,26505,56235 +24397,214,12,9301,3709 +24398,283,12,10364,13722 +24399,372,12,24123,1567034 +24400,265,12,103012,1728383 +24401,214,12,172890,140457 +24402,214,12,321303,137689 +24403,271,12,125490,1179437 +24404,283,12,98349,2324 +24405,265,12,2108,950463 +24406,107,12,405473,1608146 +24407,214,12,266433,512444 +24408,214,12,21371,1102570 +24409,265,12,549,1538813 +24410,283,12,21242,1263 +24411,283,12,6933,13585 +24412,283,12,55420,1192861 +24413,70,12,39982,1070399 +24414,214,12,9904,7397 +24415,265,12,380058,62161 +24416,283,12,68737,5363 +24417,265,12,230179,1504428 +24418,214,12,11358,21478 +24419,265,12,94348,1533678 +24420,265,12,9716,27562 +24421,214,12,126841,15089 +24422,357,3,337339,1907211 +24423,214,12,8617,11874 +24424,265,12,63045,1056032 +24425,214,12,21057,78376 +24426,265,12,76170,7624 +24427,214,12,6933,47286 +24428,214,12,11204,68589 +24429,265,12,168259,58191 +24430,265,12,3595,6184 +24431,265,12,10055,62574 +24432,322,12,284564,1836959 +24433,265,12,91333,939454 +24434,214,12,24448,91629 +24435,214,12,405670,1853242 +24436,214,12,26811,90077 +24437,265,12,192623,32594 +24438,214,12,131343,43403 +24439,214,12,280840,955 +24440,299,12,206647,1551807 +24441,214,12,215032,117459 +24442,163,12,137528,1026725 +24443,283,12,100275,1516101 +24444,265,12,12573,44482 +24445,214,12,128120,1124066 +24446,163,12,316654,1373489 +24447,107,12,98277,1513773 +24448,389,12,4547,1646349 +24449,214,12,12622,73141 +24450,372,12,13437,114409 +24451,214,12,29698,1827950 +24452,214,12,76163,17208 +24453,163,12,13056,61652 +24454,265,12,26390,17209 +24455,214,12,22396,1120227 +24456,358,12,359459,1245328 +24457,214,12,56601,954783 +24458,214,12,177047,5914 +24459,214,12,141489,1114931 +24460,214,12,220488,968332 +24461,214,12,211166,1195057 +24462,283,12,169,2045 +24463,265,12,323679,1075863 +24464,214,12,140607,28977 +24465,214,12,17287,1050143 +24466,283,12,168027,1460736 +24467,214,12,18801,26659 +24468,214,12,12124,71353 +24469,265,12,257344,20821 +24470,265,12,82687,10400 +24471,283,12,120,1324 +24472,265,12,251227,1286523 +24473,265,12,12236,71018 +24474,214,12,318973,1347380 +24475,389,12,11024,1673565 +24476,214,12,195796,1366243 +24477,322,12,203819,1355544 +24478,283,12,250066,1451541 +24479,214,12,374319,1555464 +24480,265,12,11421,69375 +24481,265,12,294652,75939 +24482,214,12,77650,18574 +24483,214,12,226163,1128655 +24484,214,12,267793,132580 +24485,283,12,200727,2073 +24486,70,12,35052,1562622 +24487,265,12,14286,84379 +24488,283,12,9950,22219 +24489,214,12,346672,68602 +24490,70,12,11645,72609 +24491,70,12,54388,1782767 +24492,283,12,178,598 +24493,265,12,12483,51702 +24494,214,12,13849,116608 +24495,214,12,50008,6625 +24496,214,12,333385,1466109 +24497,214,12,294254,6040 +24498,283,12,94725,39032 +24499,214,12,336199,1595082 +24500,283,12,45562,999550 +24501,300,12,11812,28401 +24502,214,12,317,4645 +24503,214,12,35025,4897 +24504,214,12,286873,1553429 +24505,214,12,6552,551 +24506,372,12,273106,143322 +24507,214,12,65881,1191478 +24508,214,12,192023,1172460 +24509,265,12,365942,57244 +24510,283,12,42739,474 +24511,265,12,34723,11772 +24512,283,12,340101,23424 +24513,144,12,300669,1725560 +24514,265,12,6933,51450 +24515,144,12,76871,1684600 +24516,265,12,623,8930 +24517,214,12,303982,1185618 +24518,70,12,2034,86907 +24519,214,12,403431,62863 +24520,322,12,2046,1455297 +24521,283,12,4644,41675 +24522,214,12,21032,489 +24523,214,12,81560,237310 +24524,214,12,11980,18384 +24525,214,12,74753,39009 +24526,283,12,196469,60503 +24527,283,12,44960,959421 +24528,265,12,336890,57599 +24529,322,12,64972,1338456 +24530,214,12,10727,61123 +24531,265,12,28730,41892 +24532,138,3,408755,1660985 +24533,283,12,41402,2952 +24534,283,12,301875,1527442 +24535,214,12,31005,11887 +24536,283,12,270403,1594812 +24537,265,12,42684,54419 +24538,283,12,52520,3965 +24539,127,3,339403,1370799 +24540,265,12,330115,1496222 +24541,265,12,401164,1817425 +24542,214,12,261036,33341 +24543,214,12,83714,11957 +24544,214,12,37254,13023 +24545,70,12,49609,1221528 +24546,214,12,83015,14292 +24547,214,12,12483,72437 +24548,214,12,52520,3954 +24549,214,12,293262,1364771 +24550,70,12,22682,1782767 +24551,283,12,45649,1096443 +24552,265,12,10395,3658 +24553,283,12,11600,19689 +24554,214,12,26390,67759 +24555,214,12,240745,60187 +24556,283,12,71099,2678 +24557,265,12,122081,1719400 +24558,214,12,257176,1443565 +24559,214,12,77794,131689 +24560,283,12,187028,1728933 +24561,265,12,245394,1167060 +24562,393,12,10657,1840846 +24563,214,12,42188,17600 +24564,70,12,11812,28402 +24565,283,12,9890,15426 +24566,283,12,246860,4406 +24567,214,12,321528,1225820 +24568,283,12,714,10496 +24569,214,12,9981,61396 +24570,318,12,2613,1800154 +24571,214,12,120172,1570076 +24572,265,12,177677,29018 +24573,318,12,284052,1774358 +24574,70,12,330947,84187 +24575,214,12,76341,1518756 +24576,214,12,31127,1372653 +24577,214,12,286789,31891 +24578,70,12,214756,1464845 +24579,315,12,13823,75807 +24580,214,12,63706,21479 +24581,214,12,310133,1095275 +24582,214,12,10518,19423 +24583,265,12,417820,1122356 +24584,309,12,2662,1603330 +24585,214,12,21765,79666 +24586,214,12,29835,21223 +24587,214,12,31863,12841 +24588,214,12,375366,1403454 +24589,283,12,14145,8313 +24590,214,12,10274,64656 +24591,284,12,14145,1416995 +24592,214,12,17622,40608 +24593,214,12,158015,54843 +24594,283,12,10075,13585 +24595,283,12,369885,10907 +24596,214,12,9314,57266 +24597,318,12,188102,1845791 +24598,214,12,30547,24661 +24599,265,12,9904,60220 +24600,214,12,214138,1004051 +24601,265,12,81475,238742 +24602,271,12,20126,1099090 +24603,283,12,4982,2952 +24604,283,12,921,1436522 +24605,318,12,10320,1633952 +24606,227,12,924,1733243 +24607,283,12,7305,751 +24608,214,12,19819,1586978 +24609,214,12,62132,228475 +24610,214,12,5257,42381 +24611,163,12,43817,1258541 +24612,70,12,77964,74879 +24613,214,12,32202,16384 +24614,214,12,322487,1396311 +24615,70,12,29510,12012 +24616,271,12,297762,1824235 +24617,265,12,102630,1031260 +24618,214,12,182499,56982 +24619,214,12,263472,1714325 +24620,214,12,73099,79749 +24621,265,12,345915,21003 +24622,271,12,63215,1520926 +24623,214,12,10364,2993 +24624,283,12,9841,59814 +24625,265,12,14979,17209 +24626,265,12,10744,66705 +24627,318,12,773,1561749 +24628,214,12,9528,57837 +24629,322,12,95516,1358026 +24630,283,12,47112,1325 +24631,300,12,10733,6186 +24632,265,12,8852,56125 +24633,214,12,339530,22141 +24634,283,12,75622,928414 +24635,265,12,16066,79140 +24636,214,12,30126,105737 +24637,265,12,26636,20681 +24638,214,12,25388,19333 +24639,214,12,38922,22302 +24640,271,12,18,8389 +24641,265,12,15356,1128101 +24642,283,12,370755,1544546 +24643,214,12,9950,60786 +24644,214,12,103689,1827464 +24645,283,12,23853,2121 +24646,214,12,68347,1435164 +24647,163,12,755,11419 +24648,214,12,345915,1031200 +24649,265,12,81475,1493145 +24650,265,12,213681,57822 +24651,360,3,64215,1354331 +24652,214,12,2160,7506 +24653,214,12,13505,53178 +24654,265,12,39982,1701826 +24655,214,12,112885,10601 +24656,265,12,11798,62955 +24657,265,12,11950,46323 +24658,265,12,18692,1029442 +24659,265,12,1586,21968 +24660,214,12,393559,1386894 +24661,283,12,29896,1516101 +24662,214,12,33427,110642 +24663,214,12,317214,225886 +24664,163,12,28026,1253852 +24665,283,12,20473,1879547 +24666,214,12,173638,20423 +24667,163,12,3172,1470938 +24668,163,12,308174,1394316 +24669,283,12,46586,29664 +24670,283,12,13852,42381 +24671,214,12,43434,1117765 +24672,214,12,64428,1012121 +24673,163,12,284288,1763414 +24674,265,12,16083,60786 +24675,214,12,11346,69095 +24676,214,12,53211,457819 +24677,214,12,186869,1445989 +24678,265,12,68750,65237 +24679,214,12,12994,1224447 +24680,318,12,336890,1865120 +24681,283,12,10776,6347 +24682,265,12,166076,141043 +24683,283,12,46029,7731 +24684,214,12,131966,14054 +24685,214,12,262841,114408 +24686,214,12,60281,16398 +24687,214,12,3782,20832 +24688,265,12,10071,59420 +24689,265,12,28071,1631229 +24690,163,12,329865,34338 +24691,127,3,339403,1635224 +24692,283,12,168259,1276602 +24693,214,12,27703,98777 +24694,214,12,445,6098 +24695,214,12,4538,38803 +24696,214,12,32628,10520 +24697,214,12,186606,1168915 +24698,300,12,2924,66754 +24699,299,12,49009,1539318 +24700,265,12,213681,62855 +24701,283,12,50463,1274289 +24702,214,12,11880,43673 +24703,265,12,69315,77213 +24704,283,12,352327,39123 +24705,271,12,35001,3487 +24706,163,12,2486,25457 +24707,214,12,332872,93 +24708,214,12,12831,48885 +24709,70,12,693,10391 +24710,214,12,26299,55692 +24711,214,12,8869,1296 +24712,214,12,2890,28727 +24713,214,12,82654,31710 +24714,283,12,76170,434 +24715,214,12,1986,20433 +24716,214,12,320588,141298 +24717,214,12,159095,11112 +24718,214,12,10774,11789 +24719,283,12,46738,6997 +24720,70,12,230179,1504425 +24721,214,12,12780,26760 +24722,265,12,381015,1212408 +24723,265,12,9664,65457 +24724,214,12,121725,124124 +24725,214,12,329289,1175347 +24726,214,12,14976,1265278 +24727,265,12,352208,1611800 +24728,214,12,7459,11267 +24729,214,12,35002,1012121 +24730,214,12,101006,28503 +24731,214,12,11547,16847 +24732,372,12,4291,36081 +24733,214,12,137145,1106886 +24734,214,12,13600,27098 +24735,283,12,186585,1374508 +24736,214,12,89008,236604 +24737,214,12,41171,47054 +24738,214,12,400668,1816880 +24739,265,12,98277,71617 +24740,393,12,219466,1640816 +24741,70,12,20312,2324 +24742,265,12,14254,54251 +24743,265,12,14400,928946 +24744,283,12,334074,61860 +24745,214,12,43670,1599010 +24746,214,12,116463,589184 +24747,318,12,924,1537718 +24748,265,12,151937,65562 +24749,214,12,210913,16796 +24750,214,12,377151,224452 +24751,372,12,10033,62240 +24752,163,12,266082,32463 +24753,214,12,12412,35115 +24754,283,12,18273,39123 +24755,283,12,481,6531 +24756,214,12,21828,11452 +24757,214,12,35025,4896 +24758,265,12,8292,49831 +24759,265,12,21567,83596 +24760,283,12,87587,41654 +24761,315,12,1966,1733788 +24762,283,12,108224,1310228 +24763,283,12,18801,3922 +24764,214,12,300654,1115958 +24765,214,12,158015,1186277 +24766,214,12,15,11034 +24767,214,12,245168,71572 +24768,322,12,45273,1404825 +24769,214,12,12089,1962 +24770,214,12,522,510 +24771,283,12,1896,19813 +24772,214,12,356752,1386894 +24773,70,12,82,97547 +24774,214,12,12220,62055 +24775,214,12,52637,1460182 +24776,265,12,1691,138 +24777,265,12,334074,68320 +24778,265,12,366631,1127214 +24779,265,12,11058,46088 +24780,214,12,9471,69597 +24781,247,12,9716,1661539 +24782,322,12,924,1399930 +24783,163,12,310133,1458716 +24784,265,12,11185,68490 +24785,214,12,23544,90302 +24786,70,12,47194,1351472 +24787,283,12,264525,1575657 +24788,214,12,429238,939510 +24789,265,12,84449,1108729 +24790,372,12,1164,557443 +24791,214,12,287636,1560960 +24792,283,12,147106,1427802 +24793,265,12,300667,1307 +24794,214,12,9639,15366 +24795,214,12,30036,12304 +24796,265,12,11485,14929 +24797,70,12,168259,84064 +24798,214,12,73873,109980 +24799,265,12,410118,1779185 +24800,70,12,177047,1462279 +24801,214,12,411741,1673676 +24802,283,12,208091,1193910 +24803,214,12,89325,321 +24804,283,12,42168,8426 +24805,265,12,10201,29018 +24806,265,12,21413,880 +24807,214,12,37710,21635 +24808,265,12,10724,56192 +24809,283,12,18826,3276 +24810,163,12,13075,1015921 +24811,283,12,32872,2031 +24812,283,12,3028,29708 +24813,214,12,329010,1298746 +24814,214,12,36797,4504 +24815,265,12,37534,25138 +24816,214,12,1902,16941 +24817,265,12,28178,49681 +24818,318,12,213681,1771619 +24819,265,12,31397,17209 +24820,214,12,11535,13928 +24821,283,12,248698,1536244 +24822,315,12,55197,1551745 +24823,265,12,14019,76253 +24824,265,12,70821,174065 +24825,271,12,5,37334 +24826,214,12,2887,28714 +24827,372,12,43211,52389 +24828,292,3,339403,1635292 +24829,214,12,8899,73332 +24830,283,12,31598,1607207 +24831,265,12,244458,1424054 +24832,214,12,17895,82953 +24833,214,12,69315,985529 +24834,214,12,384737,90812 +24835,214,12,4011,29529 +24836,265,12,14217,39823 +24837,389,12,8619,1619105 +24838,214,12,210079,1334587 +24839,318,12,20648,1537116 +24840,214,12,32227,22426 +24841,283,12,838,2871 +24842,214,12,320873,83594 +24843,163,12,316154,979489 +24844,265,12,82079,117840 +24845,214,12,1637,6048 +24846,70,12,265208,1552003 +24847,214,12,107073,1481490 +24848,214,12,167810,66726 +24849,265,12,11056,37950 +24850,265,12,15936,7678 +24851,283,12,8414,7495 +24852,265,12,13437,81290 +24853,214,12,263472,86500 +24854,214,12,14527,1517108 +24855,265,12,791,11814 +24856,214,12,81409,30904 +24857,283,12,16996,436 +24858,265,12,4978,488 +24859,214,12,1912,4645 +24860,265,12,102629,61927 +24861,283,12,13056,54777 +24862,214,12,245906,5655 +24863,265,12,1724,7624 +24864,214,12,107445,1041613 +24865,214,12,8272,54241 +24866,265,12,345069,232801 +24867,70,12,58903,1412041 +24868,265,12,30637,1309332 +24869,265,12,371645,1401318 +24870,372,12,75244,1085547 +24871,214,12,9753,58973 +24872,214,12,10703,66768 +24873,283,12,373546,1502630 +24874,265,12,122081,952397 +24875,265,12,332979,1635000 +24876,214,12,254007,1397452 +24877,214,12,16135,79533 +24878,214,12,44896,1704 +24879,283,12,332979,19689 +24880,70,12,241254,1367056 +24881,214,12,4820,41753 +24882,410,12,8470,230436 +24883,214,12,52864,109843 +24884,214,12,9753,19807 +24885,283,12,284296,547 +24886,214,12,15745,15277 +24887,214,12,244,3238 +24888,265,12,42218,30904 +24889,70,12,125490,1500500 +24890,214,12,96238,986119 +24891,214,12,154019,18806 +24892,163,12,173205,1852944 +24893,265,12,21371,12590 +24894,214,12,222935,6040 +24895,214,12,13383,31216 +24896,265,12,24090,62574 +24897,214,12,41131,12736 +24898,163,12,8414,1891685 +24899,265,12,187596,1046971 +24900,283,12,59961,7232 +24901,214,12,15387,1080761 +24902,214,12,20941,1346271 +24903,322,12,62728,1414103 +24904,265,12,15661,89212 +24905,214,12,11298,68914 +24906,214,12,62630,48310 +24907,271,12,74777,583480 +24908,315,12,153,60187 +24909,283,12,226701,1290147 +24910,283,12,339403,6410 +24911,283,12,10657,19679 +24912,163,12,334538,1500501 +24913,214,12,42542,1015790 +24914,247,12,8276,1544436 +24915,70,12,14435,1452748 +24916,214,12,34806,51613 +24917,214,12,5494,43675 +24918,214,12,61527,1526934 +24919,265,12,10070,5140 +24920,372,12,284289,1018091 +24921,283,12,202337,1404915 +24922,214,12,29449,1219686 +24923,214,12,42325,39761 +24924,265,12,46261,213665 +24925,265,12,351242,1489939 +24926,265,12,72711,1030154 +24927,265,12,26116,17209 +24928,214,12,16232,4507 +24929,283,12,91070,1085600 +24930,214,12,27886,1183570 +24931,265,12,8584,18897 +24932,214,12,21208,1128184 +24933,265,12,322400,1420 +24934,322,12,613,1425869 +24935,271,12,80125,1420179 +24936,265,12,274479,1015921 +24937,214,12,395883,1276565 +24938,214,12,49073,146279 +24939,283,12,1726,20540 +24940,265,12,166076,1225820 +24941,214,12,110115,1115630 +24942,265,12,179826,1658456 +24943,70,12,98277,1838497 +24944,284,12,1579,1400359 +24945,214,12,93858,888974 +24946,214,12,77585,108768 +24947,265,12,41171,227093 +24948,283,12,98339,1516101 +24949,265,12,10534,578 +24950,318,12,41963,1564871 +24951,265,12,13600,12756 +24952,214,12,55846,6226 +24953,265,12,82745,144809 +24954,393,12,8247,989750 +24955,214,12,12650,73255 +24956,214,12,15476,55637 +24957,271,12,65898,1810243 +24958,265,12,39107,122194 +24959,214,12,52034,58608 +24960,214,12,28340,100485 +24961,214,12,271718,5664 +24962,214,12,81030,13902 +24963,265,12,377447,1825000 +24964,214,12,2029,20854 +24965,214,12,22779,2106 +24966,283,12,9977,61339 +24967,265,12,9260,57047 +24968,214,12,1717,62559 +24969,214,12,39462,18604 +24970,265,12,308269,1447891 +24971,265,12,346473,1284327 +24972,214,12,508,2238 +24973,322,12,33586,1814963 +24974,214,12,6643,13784 +24975,214,12,86608,50311 +24976,283,12,7980,2952 +24977,214,12,9428,2997 +24978,214,12,332794,4402 +24979,214,12,286372,1039533 +24980,284,12,169298,1407265 +24981,283,12,181533,5362 +24982,70,12,77673,1313974 +24983,163,12,298787,1376942 +24984,214,12,148478,1559610 +24985,163,12,302699,1466097 +24986,389,12,1966,1733785 +24987,372,12,46738,1207137 +24988,70,12,1715,18782 +24989,283,12,75622,15426 +24990,283,12,408381,3501 +24991,214,12,15081,120927 +24992,265,12,98870,1023141 +24993,214,12,261037,948841 +24994,283,12,419430,494 +24995,393,12,274504,1586106 +24996,214,12,258193,2545 +24997,265,12,49577,1687759 +24998,265,12,1589,4018 +24999,214,12,91070,939124 +25000,283,12,54752,954445 +25001,265,12,2669,5398 +25002,214,12,56391,1028357 +25003,214,12,52362,556859 +25004,283,12,128644,93418 +25005,283,12,137145,29940 +25006,265,12,65759,1296 +25007,318,12,755,1402054 +25008,283,12,70981,16363 +25009,214,12,1715,12997 +25010,214,12,15073,79283 +25011,322,12,30666,1832367 +25012,214,12,2017,20688 +25013,214,12,275060,83002 +25014,283,12,82684,39123 +25015,265,12,297736,10666 +25016,214,12,10500,65416 +25017,214,12,23544,67268 +25018,214,12,54146,1089017 +25019,265,12,76757,1296 +25020,214,12,110980,52179 +25021,231,12,75778,1357871 +25022,283,12,382155,1636678 +25023,283,12,37305,1263 +25024,393,12,345925,1572857 +25025,214,12,410718,1697785 +25026,214,12,59387,1815843 +25027,265,12,184098,82587 +25028,214,12,46572,57301 +25029,283,12,24624,29940 +25030,214,12,47739,138178 +25031,214,12,18417,38415 +25032,214,12,323435,1106691 +25033,265,12,76163,51032 +25034,214,12,72710,566962 +25035,214,12,26390,155899 +25036,214,12,84185,1341530 +25037,265,12,36432,115360 +25038,163,12,346672,1626015 +25039,283,12,337339,1399701 +25040,283,12,6973,7232 +25041,214,12,337107,49067 +25042,300,12,374475,1623699 +25043,214,12,1724,10850 +25044,265,12,179826,1746038 +25045,286,3,341689,19758 +25046,265,12,334538,1658463 +25047,214,12,376660,983909 +25048,265,12,333385,1619918 +25049,163,12,10362,1319040 +25050,283,12,436,1142383 +25051,214,12,19912,21586 +25052,283,12,167,495 +25053,214,12,258363,1003190 +25054,214,12,9059,10953 +25055,214,12,54111,1494071 +25056,318,12,11358,1773152 +25057,214,12,328032,4930 +25058,214,12,133255,592323 +25059,231,12,202241,1223781 +25060,214,12,11004,2997 +25061,265,12,11979,1296 +25062,214,12,345915,1538375 +25063,265,12,10744,57565 +25064,214,12,397717,1677460 +25065,389,12,11618,1765801 +25066,265,12,60665,64465 +25067,214,12,26656,8401 +25068,70,12,98066,1030966 +25069,214,12,47057,65378 +25070,214,12,382597,54171 +25071,372,12,220820,19031 +25072,283,12,12450,1539774 +25073,265,12,16239,23659 +25074,214,12,122928,622844 +25075,70,12,121234,1308320 +25076,283,12,140607,6052 +25077,265,12,50126,38657 +25078,322,12,4955,41008 +25079,214,12,39053,40374 +25080,70,12,340103,1747485 +25081,214,12,57829,7483 +25082,318,12,13205,1815504 +25083,214,12,36960,1510941 +25084,70,12,17238,1125598 +25085,265,12,263115,10956 +25086,163,12,85350,580 +25087,214,12,117251,20204 +25088,214,12,425774,1707966 +25089,214,12,13685,951099 +25090,214,12,11540,55330 +25091,214,12,19827,133259 +25092,214,12,257088,47286 +25093,214,12,11008,35696 +25094,214,12,10373,123511 +25095,410,12,283995,230436 +25096,318,12,157843,1907242 +25097,70,12,18493,1446209 +25098,214,12,11535,1090 +25099,214,12,429200,1500310 +25100,227,12,3172,1553263 +25101,283,12,340103,979724 +25102,214,12,30198,105815 +25103,214,12,96118,6650 +25104,265,12,154972,1015907 +25105,214,12,131737,93719 +25106,300,12,2107,1672755 +25107,214,12,6522,776 +25108,214,12,8556,17080 +25109,265,12,367147,117821 +25110,265,12,297814,552254 +25111,265,12,102222,1121986 +25112,271,12,43228,1582620 +25113,283,12,202337,2399 +25114,214,12,137381,1107213 +25115,214,12,22998,1123035 +25116,214,12,49689,1026477 +25117,283,12,14254,5363 +25118,300,12,297853,1520164 +25119,214,12,44129,70052 +25120,265,12,82501,465 +25121,214,12,400174,45838 +25122,214,12,17895,82952 +25123,283,12,228205,1024910 +25124,318,12,12273,1705310 +25125,265,12,45556,412788 +25126,214,12,12247,71881 +25127,265,12,13574,287 +25128,214,12,9943,16821 +25129,393,12,297762,1486198 +25130,283,12,17236,2952 +25131,318,12,68387,1768381 +25132,214,12,14411,56671 +25133,214,12,374461,967484 +25134,214,12,4011,12843 +25135,214,12,177047,6888 +25136,214,12,31942,103129 +25137,214,12,78362,63481 +25138,389,12,240832,1412923 +25139,214,12,3172,31710 +25140,214,12,55347,131400 +25141,163,12,47540,1468469 +25142,214,12,8247,142325 +25143,214,12,98566,60245 +25144,214,12,62320,20432 +25145,265,12,16176,93328 +25146,127,3,339403,1635218 +25147,214,12,16890,1473810 +25148,283,12,11003,3276 +25149,283,12,82191,1519073 +25150,372,12,9843,59857 +25151,283,12,10071,436 +25152,214,12,11329,5501 +25153,214,12,2984,13848 +25154,214,12,316154,1840864 +25155,265,12,46261,15906 +25156,70,12,16938,1724913 +25157,163,12,52454,79390 +25158,214,12,42752,50765 +25159,214,12,29368,1034418 +25160,284,12,17295,1438865 +25161,300,12,55420,1114902 +25162,214,12,9624,58206 +25163,214,12,54491,1770692 +25164,299,12,55534,1577966 +25165,283,12,284288,1763424 +25166,318,12,2001,1738174 +25167,265,12,110598,56932 +25168,271,12,42512,1550861 +25169,265,12,139455,1116278 +25170,214,12,80596,7501 +25171,265,12,13805,961093 +25172,283,12,284288,1113439 +25173,214,12,253337,1308181 +25174,265,12,101325,1560943 +25175,214,12,330418,1114577 +25176,231,12,71859,1619483 +25177,214,12,67018,278819 +25178,265,12,8272,13235 +25179,265,12,4441,37275 +25180,214,12,188598,1170106 +25181,265,12,215032,19948 +25182,265,12,9541,19303 +25183,265,12,1427,17083 +25184,322,12,70981,1390387 +25185,70,12,290764,1481637 +25186,283,12,6978,11903 +25187,214,12,2291,7726 +25188,265,12,203819,37272 +25189,70,12,14452,117989 +25190,265,12,139455,1103573 +25191,300,12,333354,72110 +25192,271,12,167707,1319551 +25193,322,12,5289,1409754 +25194,283,12,301348,19689 +25195,214,12,230179,1346142 +25196,214,12,113119,563671 +25197,265,12,241742,236844 +25198,214,12,340627,1813221 +25199,214,12,11584,14942 +25200,283,12,11975,1192007 +25201,214,12,85446,11696 +25202,214,12,9776,2632 +25203,283,12,256347,494 +25204,214,12,332872,952 +25205,163,12,34512,85746 +25206,265,12,89325,133580 +25207,214,12,381032,1368486 +25208,214,12,24709,29688 +25209,283,12,18495,1263 +25210,155,3,383538,1851922 +25211,283,12,307081,5914 +25212,265,12,13794,1145915 +25213,214,12,271404,6038 +25214,283,12,413998,11295 +25215,265,12,19174,1655226 +25216,271,12,137504,1530400 +25217,214,12,182899,126676 +25218,358,12,52661,27006 +25219,214,12,66113,189201 +25220,265,12,24469,15726 +25221,283,12,16436,1723847 +25222,283,12,211144,63784 +25223,214,12,203833,10569 +25224,214,12,90563,5053 +25225,265,12,115782,1157033 +25226,214,12,89325,1026258 +25227,214,12,445602,1771713 +25228,265,12,5413,43144 +25229,214,12,51250,62644 +25230,265,12,15325,287 +25231,283,12,158908,5914 +25232,214,12,154371,1057407 +25233,283,12,9914,29940 +25234,70,12,24739,1490603 +25235,163,12,177155,936064 +25236,214,12,7210,1869 +25237,214,12,329289,61397 +25238,283,12,197611,954445 +25239,214,12,323929,1423664 +25240,265,12,123961,1885498 +25241,163,12,283445,1401857 +25242,283,12,10921,12942 +25243,214,12,709,10493 +25244,214,12,2204,22608 +25245,214,12,137093,10685 +25246,214,12,135718,35070 +25247,265,12,25643,44138 +25248,214,12,332411,948841 +25249,283,12,266285,3922 +25250,283,12,5917,14845 +25251,214,12,1911,1090 +25252,214,12,9405,51346 +25253,265,12,19238,568260 +25254,300,12,362541,64225 +25255,70,12,2662,17886 +25256,214,12,76115,1122356 +25257,265,12,5915,28154 +25258,214,12,50647,41039 +25259,265,12,9555,57957 +25260,214,12,11142,28243 +25261,214,12,76493,6730 +25262,214,12,3146,18604 +25263,283,12,2046,3965 +25264,214,12,100275,1024216 +25265,214,12,616,9183 +25266,265,12,32093,8502 +25267,144,12,18405,1842591 +25268,265,12,88529,1693551 +25269,163,12,324181,1424222 +25270,214,12,76229,8501 +25271,214,12,206563,2236 +25272,163,12,362057,1450401 +25273,163,12,203264,1423438 +25274,214,12,15849,1557 +25275,283,12,118957,1195356 +25276,214,12,11172,41377 +25277,70,12,38922,15901 +25278,163,12,375199,1561986 +25279,214,12,5177,1560 +25280,283,12,2898,91124 +25281,265,12,1589,21242 +25282,214,12,9945,27581 +25283,265,12,10077,1906885 +25284,214,12,25941,957 +25285,265,12,45273,17211 +25286,214,12,10265,64487 +25287,265,12,106049,1149936 +25288,283,12,180305,59932 +25289,322,12,601,52042 +25290,265,12,75174,3498 +25291,265,12,210047,1292994 +25292,214,12,33931,14446 +25293,214,12,3085,11435 +25294,214,12,3537,32397 +25295,214,12,71866,1090302 +25296,283,12,11137,23545 +25297,265,12,10744,66707 +25298,214,12,49500,9022 +25299,163,12,48231,59716 +25300,70,12,98277,586299 +25301,318,12,33586,1814974 +25302,214,12,12432,72051 +25303,214,12,27332,12993 +25304,214,12,27507,930791 +25305,231,12,356752,1841604 +25306,393,12,4147,494 +25307,214,12,283686,17603 +25308,271,12,442752,222325 +25309,265,12,17209,52788 +25310,283,12,285135,63784 +25311,265,12,35626,78972 +25312,70,12,44655,184864 +25313,265,12,315335,17080 +25314,214,12,27622,14860 +25315,70,12,1691,211600 +25316,214,12,42794,107463 +25317,265,12,10070,62804 +25318,214,12,29611,104343 +25319,214,12,246860,54318 +25320,214,12,44669,131228 +25321,163,12,14459,1605433 +25322,70,12,1589,1517809 +25323,214,12,6973,51687 +25324,271,12,166076,1172887 +25325,214,12,47194,141030 +25326,214,12,13616,56967 +25327,245,3,368006,1640322 +25328,70,12,29416,1088078 +25329,265,12,13794,1145914 +25330,163,12,18,8374 +25331,127,3,339403,1635211 +25332,70,12,10395,37426 +25333,214,12,2503,664 +25334,265,12,121674,1531843 +25335,214,12,112162,156155 +25336,265,12,7555,67975 +25337,214,12,18620,32030 +25338,214,12,367412,1319040 +25339,372,12,252171,1190184 +25340,283,12,287587,2952 +25341,265,12,31634,1176690 +25342,265,12,64928,4123 +25343,214,12,406052,1361754 +25344,214,12,408616,8401 +25345,214,12,2503,25600 +25346,214,12,45098,1311155 +25347,214,12,37984,1145614 +25348,322,12,419430,1771616 +25349,265,12,397837,65243 +25350,283,12,71668,13585 +25351,283,12,42941,947682 +25352,283,12,32021,78390 +25353,265,12,205891,46091 +25354,214,12,284296,1046160 +25355,265,12,17622,1122011 +25356,214,12,92393,1125957 +25357,283,12,5955,14538 +25358,299,12,338,1585865 +25359,283,12,189197,63533 +25360,214,12,244801,1057497 +25361,214,12,62439,1296109 +25362,214,12,36325,1096491 +25363,265,12,79593,1540355 +25364,265,12,210047,1039845 +25365,265,12,316154,1258541 +25366,214,12,90228,36514 +25367,283,12,39001,2952 +25368,265,12,64784,1451784 +25369,358,12,415542,153895 +25370,26,12,10198,1464355 +25371,283,12,33135,1304265 +25372,283,12,6081,2288 +25373,271,12,264525,1277645 +25374,318,12,283384,1840493 +25375,214,12,323426,1642004 +25376,214,12,21371,45730 +25377,214,12,382873,362701 +25378,214,12,56596,1163117 +25379,214,12,4613,38576 +25380,265,12,50123,1379968 +25381,283,12,7326,52456 +25382,214,12,82448,56877 +25383,265,12,345438,1479370 +25384,283,12,152532,19689 +25385,214,12,323435,1571050 +25386,283,12,124963,597 +25387,283,12,2140,21936 +25388,283,12,246741,1409490 +25389,214,12,38356,10994 +25390,214,12,29611,104344 +25391,300,12,270774,1877783 +25392,214,12,329865,1188380 +25393,214,12,322785,67674 +25394,214,12,21208,40776 +25395,214,12,31984,661623 +25396,393,12,11358,1556515 +25397,200,3,126889,1461629 +25398,214,12,20132,85698 +25399,214,12,42476,90055 +25400,214,12,53945,149298 +25401,300,12,11024,60711 +25402,265,12,11610,6993 +25403,283,12,38157,32739 +25404,214,12,153141,1668730 +25405,214,12,10493,11452 +25406,163,12,381737,93767 +25407,283,12,623,3311 +25408,265,12,14868,77726 +25409,265,12,184098,1733502 +25410,214,12,130278,183960 +25411,70,12,62837,1399694 +25412,214,12,264397,557363 +25413,214,12,40060,112400 +25414,214,12,3937,10149 +25415,214,12,75300,427964 +25416,265,12,310133,1458720 +25417,283,12,16182,34368 +25418,214,12,10590,2487 +25419,393,12,954,22059 +25420,214,12,70368,8636 +25421,70,12,54752,1434784 +25422,324,3,460135,1674791 +25423,265,12,9474,4669 +25424,389,12,41610,582414 +25425,265,12,223946,928946 +25426,265,12,97593,14054 +25427,214,12,9963,21478 +25428,214,12,102444,91855 +25429,214,12,21132,75865 +25430,283,12,112991,4023 +25431,214,12,25551,4081 +25432,265,12,144680,1416483 +25433,265,12,337958,1583398 +25434,265,12,337958,1011153 +25435,265,12,29805,10590 +25436,283,12,11428,1290904 +25437,283,12,19338,583081 +25438,214,12,308269,1447879 +25439,214,12,15506,43143 +25440,283,12,8282,4406 +25441,70,12,29143,7627 +25442,214,12,5460,11874 +25443,283,12,337339,1537454 +25444,214,12,226354,43384 +25445,265,12,38448,953724 +25446,265,12,11104,987991 +25447,265,12,10055,62585 +25448,265,12,333385,1619921 +25449,393,12,6068,1536087 +25450,283,12,18273,5914 +25451,214,12,10425,65112 +25452,163,12,121674,948439 +25453,265,12,310602,89973 +25454,265,12,8619,62543 +25455,265,12,31428,63905 +25456,214,12,1420,17016 +25457,283,12,9900,1516479 +25458,214,12,53865,86358 +25459,283,12,9102,1126724 +25460,214,12,44129,47333 +25461,214,12,23397,12993 +25462,265,12,264569,1115964 +25463,163,12,241742,79390 +25464,70,12,21950,1780476 +25465,214,12,1833,3305 +25466,283,12,12591,5290 +25467,214,12,48118,317517 +25468,265,12,330115,1496221 +25469,214,12,297633,1232650 +25470,318,12,8669,1734856 +25471,265,12,16083,60784 +25472,214,12,146243,72102 +25473,265,12,101325,1560942 +25474,283,12,201,2399 +25475,283,12,6522,6347 +25476,265,12,79935,588338 +25477,214,12,7445,6590 +25478,214,12,1125,10685 +25479,214,12,41857,48964 +25480,214,12,28480,67 +25481,265,12,70666,8565 +25482,214,12,28384,6990 +25483,214,12,28774,69057 +25484,214,12,11812,409 +25485,214,12,21193,60 +25486,265,12,62213,541 +25487,214,12,285213,1442988 +25488,214,12,15016,1093159 +25489,163,12,274479,1551814 +25490,214,12,343140,25236 +25491,315,12,13205,1543832 +25492,214,12,5928,46620 +25493,265,12,791,11812 +25494,265,12,12113,77512 +25495,283,12,259830,1322029 +25496,265,12,12483,52036 +25497,214,12,313922,47099 +25498,214,12,274857,74569 +25499,214,12,19661,67349 +25500,214,12,9540,948498 +25501,163,12,241258,1412973 +25502,265,12,49717,57016 +25503,265,12,8870,77512 +25504,214,12,4413,1091 +25505,214,12,10900,67697 +25506,214,12,9816,59562 +25507,214,12,8414,1222229 +25508,214,12,56906,56032 +25509,214,12,357706,1114577 +25510,214,12,99859,29689 +25511,265,12,68737,1378249 +25512,214,12,924,15000 +25513,214,12,70074,18924 +25514,214,12,40826,97472 +25515,283,12,19995,1016177 +25516,214,12,121824,968402 +25517,214,12,418969,48555 +25518,372,12,337104,1174110 +25519,214,12,76411,8879 +25520,265,12,318224,1238136 +25521,265,12,13823,1202 +25522,214,12,13986,35770 +25523,318,12,17209,1616182 +25524,315,12,11236,75796 +25525,393,12,1073,83724 +25526,214,12,49521,79243 +25527,283,12,346672,1466699 +25528,265,12,100270,1106900 +25529,214,12,413452,66492 +25530,214,12,12311,1497 +25531,265,12,8272,54242 +25532,318,12,13205,1815509 +25533,265,12,149870,67077 +25534,214,12,395982,1755106 +25535,214,12,29136,956446 +25536,265,12,3574,8502 +25537,214,12,58251,1462980 +25538,214,12,246741,55940 +25539,265,12,6341,1183392 +25540,214,12,8467,51702 +25541,214,12,38006,996903 +25542,283,12,2757,961165 +25543,283,12,13551,3965 +25544,315,12,6557,1546957 +25545,214,12,108726,1044835 +25546,265,12,15749,117990 +25547,163,12,22803,53476 +25548,372,12,9613,1008067 +25549,214,12,747,11112 +25550,283,12,107250,933333 +25551,163,12,37534,71946 +25552,265,12,1715,1307 +25553,283,12,51828,23424 +25554,265,12,106049,969084 +25555,214,12,450875,1181321 +25556,214,12,3989,34518 +25557,70,12,36758,75478 +25558,214,12,405670,1853238 +25559,70,12,41963,1525902 +25560,214,12,62190,6896 +25561,283,12,26882,549480 +25562,214,12,11902,1462022 +25563,271,12,1578,4506 +25564,265,12,8276,54283 +25565,214,12,19255,4857 +25566,214,12,49009,223609 +25567,265,12,425774,1707964 +25568,265,12,347031,1602138 +25569,271,12,5237,4769 +25570,265,12,137528,1764638 +25571,214,12,360737,55168 +25572,214,12,82,638 +25573,265,12,7972,53471 +25574,318,12,17332,1536032 +25575,214,12,9071,56904 +25576,214,12,11171,19224 +25577,70,12,35405,21921 +25578,283,12,22023,1577154 +25579,214,12,364379,1300476 +25580,214,12,28,2871 +25581,358,12,9946,55952 +25582,265,12,10539,2359 +25583,283,12,10739,1046 +25584,214,12,361146,1890674 +25585,214,12,62522,236047 +25586,163,12,257444,962936 +25587,163,12,24363,1624608 +25588,283,12,10491,668 +25589,283,12,353979,1451541 +25590,265,12,10041,62350 +25591,322,12,159211,1438463 +25592,318,12,159667,1849528 +25593,163,12,56292,4856 +25594,283,12,1819,1034748 +25595,214,12,18897,43635 +25596,214,12,7305,711 +25597,214,12,3051,2993 +25598,265,12,51947,18591 +25599,284,12,233208,1340083 +25600,393,12,297762,1764110 +25601,265,12,294254,1231882 +25602,70,12,38006,29665 +25603,214,12,145244,98784 +25604,265,12,10008,6226 +25605,214,12,40041,15289 +25606,283,12,125490,7800 +25607,372,12,13855,1120764 +25608,214,12,103689,20714 +25609,265,12,293262,1392205 +25610,214,12,10077,15303 +25611,214,12,128081,1086387 +25612,372,12,634,9149 +25613,322,12,2613,1800147 +25614,300,12,52454,1630377 +25615,214,12,8870,46088 +25616,214,12,389972,72501 +25617,361,3,339403,1635327 +25618,283,12,635,3192 +25619,372,12,141,1417407 +25620,265,12,57201,2445 +25621,214,12,55728,1458272 +25622,214,12,58886,53433 +25623,283,12,256740,59668 +25624,214,12,418969,1687676 +25625,214,12,11912,70270 +25626,322,12,230179,1881552 +25627,127,3,45527,1233165 +25628,300,12,105059,1507577 +25629,372,12,436,5876 +25630,214,12,83896,228801 +25631,214,12,103597,64751 +25632,214,12,19096,50311 +25633,163,12,8467,7395 +25634,283,12,10394,474 +25635,214,12,153854,1134669 +25636,283,12,77949,2635 +25637,283,12,1443,933333 +25638,214,12,68629,19770 +25639,214,12,11589,78081 +25640,283,12,298865,1441226 +25641,265,12,37725,1346144 +25642,214,12,94725,39973 +25643,214,12,223485,37276 +25644,214,12,194817,59832 +25645,214,12,7340,9579 +25646,214,12,98557,1241977 +25647,214,12,245597,1305749 +25648,214,12,453053,56578 +25649,214,12,336890,449 +25650,322,12,157843,1452228 +25651,65,3,339403,1378150 +25652,265,12,11351,11695 +25653,214,12,80389,2487 +25654,214,12,6183,48496 +25655,283,12,313922,2952 +25656,265,12,82696,29 +25657,214,12,61400,233068 +25658,358,12,163,1564997 +25659,214,12,43139,7501 +25660,265,12,203264,1697267 +25661,265,12,75761,436271 +25662,265,12,408755,1660979 +25663,283,12,11607,31464 +25664,286,3,201429,22798 +25665,265,12,310137,1537536 +25666,214,12,270303,937872 +25667,214,12,31146,41332 +25668,214,12,436,5874 +25669,214,12,297702,1223227 +25670,214,12,4960,202 +25671,214,12,73984,5398 +25672,393,12,209112,1532605 +25673,265,12,397837,1336419 +25674,214,12,62330,235141 +25675,265,12,245950,1459421 +25676,283,12,72431,1325916 +25677,214,12,364410,1524270 +25678,283,12,9900,60154 +25679,163,12,76494,1539947 +25680,283,12,33016,961528 +25681,214,12,7445,15282 +25682,214,12,80276,1688666 +25683,286,3,445602,1693468 +25684,214,12,11247,18350 +25685,214,12,9753,19808 +25686,265,12,397422,1399858 +25687,214,12,27276,130657 +25688,265,12,33273,17000 +25689,214,12,13042,1368872 +25690,265,12,52520,3956 +25691,283,12,13105,1086160 +25692,283,12,14411,12090 +25693,231,12,277710,1562475 +25694,214,12,315465,78343 +25695,214,12,44945,65114 +25696,265,12,56292,58433 +25697,214,12,16374,80471 +25698,214,12,20941,46085 +25699,70,12,403605,142024 +25700,315,12,13225,1128341 +25701,322,12,274857,1411678 +25702,214,12,9951,60822 +25703,265,12,370234,1409852 +25704,283,12,351065,18457 +25705,214,12,335778,964093 +25706,214,12,270007,17162 +25707,265,12,12289,1117863 +25708,265,12,10710,16376 +25709,214,12,248933,16796 +25710,283,12,5924,7511 +25711,214,12,222517,1207937 +25712,265,12,9963,61096 +25713,214,12,53949,41134 +25714,265,12,429238,1733798 +25715,372,12,70046,112498 +25716,265,12,24420,57430 +25717,393,12,10739,6996 +25718,265,12,25643,9197 +25719,127,3,339403,1635220 +25720,163,12,10201,8275 +25721,389,12,33586,1814972 +25722,277,3,64215,1354353 +25723,163,12,82,212137 +25724,214,12,110491,1049451 +25725,265,12,259997,1063685 +25726,214,12,59962,11092 +25727,214,12,284564,1287626 +25728,214,12,88320,65852 +25729,214,12,72279,20718 +25730,283,12,87827,2952 +25731,265,12,40807,124649 +25732,214,12,44458,1127724 +25733,283,12,37958,17611 +25734,265,12,244783,1280039 +25735,283,12,120,1325 +25736,70,12,9835,1556693 +25737,214,12,107811,31710 +25738,214,12,277713,1609167 +25739,322,12,238589,1345270 +25740,214,12,1942,20130 +25741,214,12,339342,1451847 +25742,265,12,8916,12065 +25743,214,12,9032,20821 +25744,265,12,11354,6890 +25745,214,12,4551,518 +25746,214,12,6522,339 +25747,284,12,60599,1400508 +25748,214,12,10692,1880496 +25749,214,12,291871,1639084 +25750,283,12,63493,2952 +25751,214,12,134155,1120817 +25752,265,12,92635,995466 +25753,70,12,30924,109455 +25754,214,12,39230,1821010 +25755,265,12,59961,60471 +25756,214,12,16131,45745 +25757,214,12,43771,1806059 +25758,214,12,413882,85699 +25759,265,12,14047,59839 +25760,214,12,12289,105396 +25761,283,12,62728,2635 +25762,271,12,82520,928133 +25763,265,12,29143,222885 +25764,163,12,60281,1367913 +25765,265,12,16175,79900 +25766,265,12,9953,17211 +25767,283,12,407559,979724 +25768,283,12,78802,2121 +25769,214,12,403,5697 +25770,214,12,62046,18352 +25771,322,12,414977,1168145 +25772,283,12,9102,60056 +25773,214,12,10204,7227 +25774,214,12,9703,16787 +25775,265,12,45132,11678 +25776,284,12,9816,91941 +25777,265,12,323679,1423466 +25778,214,12,7219,53188 +25779,163,12,46738,7290 +25780,283,12,64678,15426 +25781,214,12,10694,64058 +25782,214,12,27053,1756246 +25783,214,12,19348,16398 +25784,214,12,58886,228583 +25785,214,12,201,2381 +25786,214,12,74879,301260 +25787,265,12,259695,970155 +25788,372,12,405670,1853241 +25789,214,12,50780,4447 +25790,265,12,31118,1066935 +25791,265,12,252680,156045 +25792,300,12,2300,14715 +25793,214,12,14683,73034 +25794,214,12,323679,237333 +25795,300,12,103332,44482 +25796,265,12,334074,45829 +25797,265,12,12122,56125 +25798,265,12,122081,1719402 +25799,372,12,16164,60032 +25800,265,12,333103,971001 +25801,283,12,7288,6347 +25802,214,12,42188,958649 +25803,318,12,284052,1785951 +25804,283,12,245692,1457737 +25805,372,12,153,115941 +25806,214,12,132363,64058 +25807,283,12,97051,1324036 +25808,214,12,26142,7627 +25809,265,12,45013,1818009 +25810,214,12,6935,50950 +25811,265,12,31127,1590964 +25812,214,12,323929,1733199 +25813,244,3,461955,1468340 +25814,214,12,15613,21024 +25815,214,12,9352,57407 +25816,214,12,83195,57052 +25817,284,12,102382,1399479 +25818,70,12,330115,103011 +25819,214,12,16175,61822 +25820,231,12,8414,54897 +25821,265,12,9841,59808 +25822,214,12,128311,30059 +25823,214,12,99698,1307017 +25824,214,12,78028,58102 +25825,214,12,2503,25604 +25826,265,12,91679,118416 +25827,214,12,369820,1264570 +25828,214,12,3513,4697 +25829,284,12,10066,1412758 +25830,70,12,84340,1889163 +25831,70,12,210615,579130 +25832,265,12,38437,120449 +25833,283,12,49521,17610 +25834,214,12,28303,13294 +25835,271,12,8329,1324229 +25836,265,12,13823,59774 +25837,283,12,691,9904 +25838,271,12,4344,40472 +25839,389,12,42418,1827969 +25840,300,12,11045,1186326 +25841,214,12,11645,70128 +25842,163,12,15316,140909 +25843,265,12,16131,57565 +25844,214,12,13965,76193 +25845,214,12,322922,136154 +25846,283,12,408537,1310722 +25847,265,12,9902,11696 +25848,214,12,30143,929976 +25849,163,12,374475,3929 +25850,214,12,53178,2106 +25851,214,12,423988,1872766 +25852,214,12,280092,84348 +25853,283,12,53358,1314170 +25854,265,12,85472,59839 +25855,144,12,157843,1666201 +25856,300,12,128946,1088221 +25857,214,12,243683,20742 +25858,265,12,11953,1 +25859,214,12,267931,1316208 +25860,283,12,346672,1398505 +25861,283,12,325712,1879678 +25862,214,12,259997,75705 +25863,214,12,246655,11092 +25864,214,12,41495,9054 +25865,214,12,107319,1559624 +25866,214,12,52520,68602 +25867,214,12,18467,70896 +25868,318,12,44129,1555159 +25869,283,12,165,751 +25870,214,12,20,96 +25871,283,12,21338,1094283 +25872,214,12,341886,54895 +25873,214,12,210302,1058615 +25874,265,12,237756,1272157 +25875,265,12,316154,1046353 +25876,265,12,293262,222276 +25877,265,12,370755,1319851 +25878,265,12,1721,56723 +25879,271,12,14476,1404854 +25880,315,12,302699,1729081 +25881,214,12,623,5381 +25882,271,12,8204,1473756 +25883,214,12,144229,1365512 +25884,315,12,297762,1146971 +25885,70,12,123109,1694501 +25886,214,12,11889,8448 +25887,70,12,42040,10337 +25888,265,12,27414,383759 +25889,214,12,1963,1188 +25890,300,12,42641,1547830 +25891,214,12,83714,57465 +25892,265,12,338421,1178886 +25893,70,12,29398,12012 +25894,214,12,113178,51657 +25895,271,12,173153,57225 +25896,283,12,57201,2215 +25897,372,12,321315,1620685 +25898,214,12,339408,74534 +25899,214,12,9294,17797 +25900,214,12,298584,59883 +25901,283,12,32657,2874 +25902,265,12,37003,1670363 +25903,265,12,102629,78110 +25904,214,12,10870,53206 +25905,265,12,290999,1361567 +25906,214,12,29272,1053353 +25907,300,12,424488,101164 +25908,214,12,9301,4799 +25909,214,12,316154,1027025 +25910,214,12,1586,35974 +25911,214,12,108224,13570 +25912,265,12,84178,221944 +25913,214,12,32690,109559 +25914,214,12,38356,10118 +25915,214,12,5516,1223 +25916,265,12,425774,59998 +25917,265,12,16096,981854 +25918,214,12,9613,4697 +25919,283,12,29786,1263 +25920,214,12,64720,79415 +25921,214,12,273481,4588 +25922,283,12,338676,1679760 +25923,283,12,235,2874 +25924,265,12,58732,33019 +25925,214,12,199373,1309 +25926,214,12,10950,9181 +25927,265,12,23628,90394 +25928,214,12,2135,2212 +25929,214,12,246415,1439368 +25930,265,12,173205,1852949 +25931,214,12,27417,97936 +25932,163,12,21619,27991 +25933,214,12,9541,20503 +25934,265,12,2355,20821 +25935,70,12,105548,1796882 +25936,265,12,170430,12477 +25937,283,12,13346,19679 +25938,265,12,9441,57465 +25939,214,12,38448,475380 +25940,214,12,201643,1183724 +25941,214,12,20357,1266 +25942,265,12,47914,5398 +25943,271,12,38027,1430398 +25944,286,3,382591,1598795 +25945,265,12,4809,8502 +25946,214,12,58080,21230 +25947,214,12,2977,29228 +25948,322,12,4955,41009 +25949,283,12,41171,3192 +25950,283,12,47942,7511 +25951,214,12,384737,17210 +25952,214,12,36243,1106203 +25953,214,12,104485,3239 +25954,214,12,227717,109727 +25955,214,12,447758,1641863 +25956,265,12,205891,150955 +25957,265,12,401164,1817423 +25958,214,12,9593,1090 +25959,214,12,8988,2836 +25960,283,12,329805,72324 +25961,358,12,22803,92301 +25962,265,12,36432,115359 +25963,283,12,26736,1607207 +25964,265,12,367147,1409453 +25965,7,3,339403,1635335 +25966,214,12,29094,19395 +25967,214,12,262338,2219 +25968,214,12,339403,11112 +25969,322,12,121598,1880929 +25970,214,12,326285,3953 +25971,214,12,292625,1354337 +25972,283,12,7459,1113 +25973,214,12,1938,834 +25974,214,12,8199,53968 +25975,214,12,71701,29665 +25976,214,12,246011,1001547 +25977,265,12,29355,18892 +25978,214,12,560,68 +25979,265,12,273481,67759 +25980,214,12,43172,93905 +25981,265,12,393407,80470 +25982,214,12,234155,933277 +25983,214,12,244783,16294 +25984,214,12,12154,18389 +25985,283,12,9013,7185 +25986,283,12,233639,1089143 +25987,214,12,339408,1116278 +25988,214,12,10025,20842 +25989,214,12,27526,98101 +25990,214,12,12121,71339 +25991,214,12,83588,1066324 +25992,283,12,709,2874 +25993,163,12,246655,9039 +25994,214,12,296633,1781279 +25995,283,12,222858,71716 +25996,283,12,42251,1303393 +25997,214,12,302026,68317 +25998,214,12,2179,22297 +25999,214,12,73116,568128 +26000,214,12,20715,225936 +26001,214,12,9659,951895 +26002,372,12,10909,120606 +26003,214,12,423377,229180 +26004,283,12,157847,1309224 +26005,265,12,329010,1587604 +26006,265,12,315837,40374 +26007,214,12,26603,18910 +26008,163,12,102222,61927 +26009,163,12,47426,1666527 +26010,214,12,128216,1392174 +26011,214,12,35200,77491 +26012,214,12,423988,1702826 +26013,283,12,156981,35145 +26014,214,12,283445,84348 +26015,265,12,369820,1252207 +26016,214,12,101325,1560964 +26017,265,12,4982,2260 +26018,214,12,310568,1367430 +26019,265,12,329718,21706 +26020,214,12,9301,36175 +26021,283,12,80389,954433 +26022,214,12,190352,33223 +26023,214,12,266373,120548 +26024,214,12,27501,94771 +26025,265,12,35626,931640 +26026,283,12,10096,494 +26027,214,12,408381,145612 +26028,214,12,242042,1487542 +26029,265,12,10596,45829 +26030,283,12,151826,38919 +26031,214,12,44682,115090 +26032,214,12,11607,35475 +26033,214,12,1251,455 +26034,283,12,22803,1593 +26035,163,12,173205,1852954 +26036,214,12,330115,1391644 +26037,200,3,337339,1548887 +26038,214,12,82448,69648 +26039,163,12,33586,1814896 +26040,265,12,921,6184 +26041,283,12,76341,37281 +26042,214,12,73969,100047 +26043,214,12,24341,19707 +26044,265,12,29787,70206 +26045,214,12,208529,1732668 +26046,214,12,21208,62740 +26047,214,12,127585,7200 +26048,283,12,339408,60501 +26049,372,12,37645,144847 +26050,214,12,393559,1817864 +26051,214,12,15556,11472 +26052,214,12,2757,16294 +26053,283,12,1640,7232 +26054,70,12,103332,1462313 +26055,214,12,2108,56738 +26056,283,12,791,2031 +26057,214,12,300090,1384817 +26058,322,12,26656,1454516 +26059,265,12,24238,92737 +26060,214,12,5955,2228 +26061,265,12,12591,6895 +26062,372,12,99861,1051971 +26063,214,12,333354,1115305 +26064,214,12,30973,63959 +26065,214,12,12289,20641 +26066,70,12,47426,278 +26067,283,12,5494,43679 +26068,214,12,64807,41551 +26069,214,12,77137,57301 +26070,214,12,166886,1599476 +26071,70,12,226188,1391677 +26072,214,12,174751,59702 +26073,214,12,193610,63989 +26074,214,12,92465,994255 +26075,214,12,44502,55486 +26076,214,12,50001,109853 +26077,214,12,44945,3658 +26078,214,12,37534,16854 +26079,265,12,9787,1254 +26080,214,12,236737,16999 +26081,286,3,453053,1801172 +26082,271,12,30876,1266719 +26083,163,12,9438,113982 +26084,300,12,238,11789 +26085,393,12,339403,1337656 +26086,283,12,55720,1593 +26087,283,12,448847,1797864 +26088,214,12,272693,964768 +26089,300,12,10727,1584247 +26090,70,12,99861,1351240 +26091,214,12,97051,63168 +26092,214,12,105077,985529 +26093,265,12,755,138 +26094,214,12,23628,90416 +26095,214,12,936,1928 +26096,214,12,347031,1602129 +26097,214,12,21843,88020 +26098,244,3,463800,1468340 +26099,283,12,11643,1263 +26100,214,12,11402,14293 +26101,214,12,102668,1031758 +26102,283,12,26656,1014915 +26103,283,12,786,11658 +26104,214,12,361380,1532527 +26105,300,12,10066,62739 +26106,214,12,286709,23406 +26107,214,12,93350,2948 +26108,214,12,37725,59716 +26109,265,12,9366,57465 +26110,283,12,413762,1653024 +26111,265,12,314065,68607 +26112,214,12,27112,97240 +26113,214,12,44631,29634 +26114,265,12,38448,968733 +26115,214,12,10063,22011 +26116,283,12,298584,956271 +26117,214,12,244117,1120874 +26118,127,3,339403,1635217 +26119,265,12,9555,57956 +26120,283,12,57597,239415 +26121,214,12,24348,1867767 +26122,283,12,13056,3965 +26123,214,12,169869,948272 +26124,283,12,10539,1563922 +26125,265,12,2034,1296 +26126,214,12,11897,70863 +26127,214,12,131194,47390 +26128,214,12,12483,60864 +26129,300,12,522,5626 +26130,283,12,318781,1325 +26131,265,12,118991,106250 +26132,265,12,37238,41135 +26133,163,12,313922,1642953 +26134,214,12,15556,18330 +26135,214,12,88558,31930 +26136,70,12,25673,18741 +26137,283,12,9953,2532 +26138,214,12,301804,1209168 +26139,214,12,24978,60545 +26140,265,12,381008,1457094 +26141,214,12,9030,56738 +26142,265,12,5917,13565 +26143,265,12,39957,97547 +26144,163,12,26636,995906 +26145,283,12,274504,5328 +26146,214,12,11880,9000 +26147,214,12,11139,68317 +26148,214,12,293660,7200 +26149,265,12,8870,20757 +26150,214,12,24657,1500960 +26151,214,12,4592,69156 +26152,214,12,14750,27006 +26153,265,12,46247,5713 +26154,214,12,19901,31136 +26155,265,12,103332,17142 +26156,283,12,15940,16363 +26157,214,12,16899,52159 +26158,214,12,171308,40184 +26159,214,12,287483,953119 +26160,283,12,1995,1325 +26161,214,12,10025,62060 +26162,265,12,119409,1394787 +26163,265,12,13437,16486 +26164,214,12,320588,1176019 +26165,265,12,26326,102429 +26166,214,12,74935,1197814 +26167,214,12,2604,7531 +26168,283,12,115565,18457 +26169,283,12,159211,1301335 +26170,214,12,32331,4052 +26171,283,12,8471,2952 +26172,271,12,199155,1642293 +26173,214,12,10055,62581 +26174,214,12,82626,928318 +26175,214,12,345489,43710 +26176,214,12,120259,4123 +26177,214,12,330333,37628 +26178,271,12,48281,1813309 +26179,214,12,83430,53996 +26180,214,12,10596,17208 +26181,214,12,70086,15903 +26182,372,12,2666,88115 +26183,265,12,9803,59345 +26184,214,12,11975,1202 +26185,214,12,251555,1286911 +26186,214,12,77585,108765 +26187,265,12,24453,23650 +26188,283,12,55433,8313 +26189,214,12,315723,1568244 +26190,214,12,340215,1630270 +26191,283,12,44414,961106 +26192,163,12,379019,1617321 +26193,283,12,10696,547 +26194,265,12,9918,2444 +26195,322,12,613,1425865 +26196,163,12,26180,18926 +26197,265,12,45562,65304 +26198,265,12,103731,1382732 +26199,283,12,360249,1398245 +26200,283,12,38356,59426 +26201,265,12,290999,1361555 +26202,315,12,966,4106 +26203,265,12,103597,543844 +26204,271,12,935,1556555 +26205,214,12,7511,41332 +26206,214,12,83666,5655 +26207,214,12,364088,1162662 +26208,265,12,376660,57618 +26209,322,12,256092,1427468 +26210,214,12,9572,673 +26211,214,12,227700,968298 +26212,214,12,39781,65613 +26213,283,12,23830,7481 +26214,214,12,10735,41551 +26215,214,12,301804,60472 +26216,372,12,12289,62928 +26217,214,12,13506,1638206 +26218,265,12,30973,59716 +26219,214,12,197,2488 +26220,214,12,74126,1899316 +26221,214,12,52034,144930 +26222,214,12,150712,120305 +26223,214,12,252171,1289604 +26224,214,12,29938,99237 +26225,214,12,28120,19322 +26226,214,12,8247,11092 +26227,214,12,1539,17362 +26228,214,12,50590,83141 +26229,214,12,139244,953724 +26230,265,12,54752,34693 +26231,214,12,10066,24 +26232,265,12,25646,94047 +26233,265,12,292625,1758587 +26234,283,12,201,2031 +26235,265,12,12591,6891 +26236,299,12,206647,1551796 +26237,265,12,313922,1460838 +26238,214,12,1448,17249 +26239,214,12,40466,16830 +26240,214,12,773,17172 +26241,265,12,28178,1018083 +26242,214,12,525,7181 +26243,265,12,858,25600 +26244,227,12,2662,1841940 +26245,70,12,11377,1472293 +26246,214,12,53404,53206 +26247,265,12,325133,184582 +26248,265,12,15092,1639187 +26249,265,12,216580,54895 +26250,214,12,31162,23430 +26251,265,12,43923,1125638 +26252,393,12,74,1212071 +26253,214,12,13493,64830 +26254,231,12,353595,10949 +26255,265,12,301804,1659233 +26256,214,12,104193,1093414 +26257,70,12,138522,22608 +26258,214,12,199373,1070054 +26259,214,12,10611,66116 +26260,265,12,16066,79141 +26261,214,12,157847,45745 +26262,265,12,16374,34857 +26263,265,12,10748,21677 +26264,70,12,266856,1746697 +26265,214,12,91480,67 +26266,214,12,56391,1028356 +26267,214,12,6068,8858 +26268,265,12,22023,47465 +26269,214,12,10075,68602 +26270,214,12,2140,21932 +26271,214,12,58244,1039357 +26272,214,12,15560,94237 +26273,322,12,11370,1424942 +26274,214,12,10373,65305 +26275,214,12,228496,995456 +26276,271,12,28448,1344749 +26277,283,12,37686,765144 +26278,214,12,14047,18311 +26279,283,12,9406,11658 +26280,283,12,27265,3965 +26281,283,12,16997,30874 +26282,265,12,10077,62928 +26283,163,12,16083,71882 +26284,214,12,77625,1087638 +26285,214,12,11298,16154 +26286,163,12,300669,52451 +26287,214,12,24828,51962 +26288,271,12,15199,1641976 +26289,214,12,1907,10876 +26290,214,12,59147,1118300 +26291,322,12,435,1392113 +26292,127,3,339403,1455499 +26293,265,12,10550,60784 +26294,70,12,27970,1598612 +26295,200,3,337339,1621800 +26296,214,12,5413,43147 +26297,214,12,24452,102429 +26298,214,12,47386,138777 +26299,265,12,87516,1276559 +26300,163,12,62837,11343 +26301,283,12,2085,2953 +26302,214,12,48210,10316 +26303,265,12,17111,1629461 +26304,318,12,6163,1905113 +26305,214,12,252773,58324 +26306,214,12,134656,137220 +26307,265,12,9987,61492 +26308,214,12,17282,1407413 +26309,315,12,157843,1258147 +26310,163,12,9568,1204030 +26311,214,12,228496,1320755 +26312,300,12,114096,1598865 +26313,163,12,43817,1046353 +26314,214,12,13391,1120523 +26315,214,12,30175,66082 +26316,200,3,395992,1574092 +26317,393,12,10657,1840845 +26318,283,12,6552,561 +26319,214,12,72431,19801 +26320,214,12,10610,66122 +26321,265,12,334,4768 +26322,214,12,302026,1570569 +26323,163,12,278621,40145 +26324,265,12,112162,1053939 +26325,372,12,368006,1640306 +26326,265,12,15013,43560 +26327,265,12,24331,12477 +26328,271,12,194853,1062936 +26329,214,12,31592,1557 +26330,265,12,205587,3223 +26331,283,12,77338,1724201 +26332,70,12,431093,1838731 +26333,389,12,405473,1800053 +26334,271,12,13763,49926 +26335,70,12,91607,11789 +26336,265,12,367147,1001668 +26337,214,12,71266,562262 +26338,163,12,177047,1462274 +26339,283,12,747,474 +26340,214,12,194722,1271 +26341,214,12,262522,1015789 +26342,231,12,400174,2390 +26343,315,12,11397,1563906 +26344,214,12,20766,566962 +26345,283,12,79550,94546 +26346,315,12,9028,1757599 +26347,283,12,239513,63459 +26348,283,12,1999,20540 +26349,283,12,42941,19662 +26350,68,12,76642,381828 +26351,265,12,84340,1776890 +26352,163,12,35052,967921 +26353,265,12,45610,56327 +26354,214,12,10025,18281 +26355,214,12,194853,1175181 +26356,265,12,9260,28632 +26357,265,12,577,2553 +26358,214,12,1450,1351 +26359,372,12,2454,1117946 +26360,265,12,28482,100807 +26361,214,12,408381,1325203 +26362,283,12,179154,54777 +26363,127,3,381015,1828333 +26364,163,12,214756,54896 +26365,214,12,15089,134194 +26366,70,12,122081,1719405 +26367,283,12,17609,588951 +26368,214,12,170279,112096 +26369,70,12,153854,1257720 +26370,283,12,33314,25756 +26371,284,12,7454,1057173 +26372,214,12,431093,1819548 +26373,70,12,40060,1567132 +26374,214,12,21371,928603 +26375,214,12,40368,556925 +26376,265,12,85230,59003 +26377,214,12,7871,25541 +26378,265,12,3597,33281 +26379,214,12,32166,89628 +26380,265,12,2758,32589 +26381,283,12,2428,1263 +26382,389,12,413421,1439074 +26383,214,12,374475,40475 +26384,265,12,72710,71556 +26385,372,12,714,10706 +26386,70,12,362703,1560222 +26387,214,12,228066,2043 +26388,214,12,82327,1001672 +26389,265,12,98339,545229 +26390,214,12,116385,1776619 +26391,214,12,65282,10148 +26392,214,12,11362,4507 +26393,265,12,4285,4557 +26394,283,12,26422,1901698 +26395,214,12,151086,144044 +26396,283,12,2274,474 +26397,214,12,71725,1136713 +26398,372,12,19423,43899 +26399,214,12,62728,21378 +26400,214,12,30141,2487 +26401,265,12,14452,17209 +26402,214,12,103215,1033139 +26403,214,12,35337,4956 +26404,214,12,345918,999763 +26405,283,12,573,7755 +26406,265,12,9516,57776 +26407,283,12,1073,1585153 +26408,265,12,60420,1616265 +26409,283,12,10632,2215 +26410,214,12,43931,1312509 +26411,70,12,18642,1091871 +26412,283,12,84577,30874 +26413,283,12,10336,2121 +26414,214,12,65646,9732 +26415,389,12,8467,1553022 +26416,283,12,122,1324 +26417,214,12,337014,1376798 +26418,214,12,112722,1118963 +26419,214,12,2179,70851 +26420,265,12,9968,6895 +26421,265,12,266856,1492088 +26422,265,12,332979,1499778 +26423,70,12,62755,484542 +26424,214,12,57011,84746 +26425,265,12,84449,37622 +26426,214,12,1415,32607 +26427,214,12,35,1128340 +26428,7,3,339403,1635307 +26429,265,12,153854,53072 +26430,265,12,353979,1412449 +26431,283,12,9945,62028 +26432,214,12,403119,239663 +26433,315,12,93350,1857014 +26434,265,12,8270,21635 +26435,214,12,844,12682 +26436,214,12,67,16708 +26437,214,12,25501,109752 +26438,214,12,138191,1026379 +26439,283,12,5332,668 +26440,214,12,35052,57816 +26441,214,12,241258,58644 +26442,265,12,381054,220088 +26443,214,12,338,4219 +26444,214,12,13834,61310 +26445,214,12,246741,1409486 +26446,214,12,88953,1537385 +26447,214,12,83119,6601 +26448,265,12,435,937494 +26449,265,12,20126,65751 +26450,214,12,38965,13718 +26451,214,12,32451,1046353 +26452,265,12,9894,1298 +26453,214,12,29911,2487 +26454,214,12,28663,101496 +26455,214,12,448847,1400095 +26456,214,12,35008,100748 +26457,283,12,8368,3501 +26458,214,12,294016,27679 +26459,214,12,8457,41039 +26460,214,12,22023,583108 +26461,214,12,187596,3953 +26462,265,12,264644,1116093 +26463,283,12,522,547 +26464,265,12,276906,1331167 +26465,410,12,395992,1552063 +26466,214,12,452372,81150 +26467,214,12,37003,61294 +26468,265,12,336011,2862 +26469,214,12,300654,1387271 +26470,265,12,264553,969084 +26471,214,12,322922,1317159 +26472,214,12,75532,5398 +26473,214,12,156597,1320301 +26474,283,12,12591,1099130 +26475,214,12,35977,51702 +26476,265,12,301876,929941 +26477,265,12,424488,1837275 +26478,214,12,340215,1196727 +26479,393,12,5123,1662777 +26480,70,12,74585,1177602 +26481,286,3,412202,1594163 +26482,214,12,21742,94237 +26483,214,12,1838,1015 +26484,283,12,2734,8313 +26485,214,12,3513,52338 +26486,389,12,11377,1602883 +26487,214,12,59115,21036 +26488,214,12,10735,1899 +26489,283,12,339408,5914 +26490,214,12,8282,1134 +26491,322,12,98066,1403498 +26492,265,12,403119,70522 +26493,214,12,11584,58183 +26494,265,12,10761,19770 +26495,214,12,59895,133434 +26496,214,12,31347,1352113 +26497,271,12,29259,1664 +26498,283,12,15179,1873046 +26499,214,12,227973,1527482 +26500,271,12,102384,31974 +26501,265,12,110146,59839 +26502,283,12,38448,968735 +26503,283,12,334299,966444 +26504,214,12,92499,1294766 +26505,214,12,18557,204400 +26506,214,12,811,2504 +26507,163,12,418990,1623889 +26508,271,12,319340,1412477 +26509,265,12,10937,33008 +26510,265,12,22855,10949 +26511,265,12,13685,17797 +26512,271,12,36245,45444 +26513,214,12,28561,35497 +26514,283,12,10929,5363 +26515,214,12,381008,197825 +26516,214,12,34151,977325 +26517,70,12,180383,1388090 +26518,163,12,24634,1219883 +26519,93,12,10590,4906 +26520,214,12,113525,216949 +26521,265,12,11618,30904 +26522,214,12,128311,1061518 +26523,214,12,124994,1080811 +26524,214,12,36657,2095 +26525,265,12,10841,67074 +26526,214,12,172847,1179249 +26527,322,12,13849,1413952 +26528,283,12,313074,238120 +26529,163,12,300669,1046225 +26530,214,12,158947,1183912 +26531,393,12,244786,1533529 +26532,214,12,4887,40028 +26533,214,12,201724,23880 +26534,214,12,289679,32309 +26535,318,12,10865,1552881 +26536,265,12,325189,967484 +26537,265,12,215032,92013 +26538,214,12,258509,30696 +26539,214,12,19855,58408 +26540,283,12,2105,1593 +26541,214,12,403,1297 +26542,214,12,6575,3184 +26543,322,12,118,1430192 +26544,265,12,210092,1193685 +26545,271,12,65496,543843 +26546,265,12,44190,22598 +26547,214,12,10333,64841 +26548,318,12,153,53406 +26549,214,12,9870,41076 +26550,214,12,331161,113868 +26551,214,12,68822,9732 +26552,214,12,393559,1817865 +26553,265,12,10916,67458 +26554,271,12,202337,1630217 +26555,283,12,70667,1311556 +26556,214,12,10754,66450 +26557,265,12,179826,225294 +26558,214,12,9951,60814 +26559,214,12,104343,1697255 +26560,265,12,9294,14093 +26561,214,12,244783,23485 +26562,214,12,375742,88202 +26563,265,12,165,664 +26564,284,12,613,1425862 +26565,214,12,12247,71874 +26566,283,12,25796,13585 +26567,214,12,321303,238472 +26568,265,12,259694,1588 +26569,214,12,11131,61865 +26570,214,12,9963,42908 +26571,283,12,235,3275 +26572,214,12,59115,33436 +26573,214,12,413547,1676015 +26574,283,12,43656,7494 +26575,214,12,176,2147 +26576,393,12,9893,60069 +26577,214,12,69315,1115250 +26578,214,12,208700,1353230 +26579,127,3,383538,1851887 +26580,214,12,1673,18574 +26581,214,12,287628,1528153 +26582,214,12,21132,18691 +26583,93,12,384737,1206668 +26584,318,12,2978,1785310 +26585,214,12,12182,45584 +26586,214,12,47914,237036 +26587,214,12,17074,34936 +26588,214,12,76341,20629 +26589,283,12,186869,2084 +26590,265,12,20432,1099733 +26591,283,12,1991,5914 +26592,322,12,145135,1417889 +26593,315,12,2604,41018 +26594,265,12,295964,963336 +26595,214,12,8355,5718 +26596,214,12,240913,582620 +26597,214,12,246011,1055232 +26598,214,12,14432,59 +26599,265,12,152532,1128684 +26600,265,12,120,59839 +26601,265,12,9504,10570 +26602,214,12,4254,35736 +26603,283,12,185460,1532410 +26604,214,12,352733,1492924 +26605,283,12,212756,4023 +26606,322,12,10727,1418315 +26607,214,12,212503,1434402 +26608,265,12,21191,87259 +26609,322,12,91679,1782624 +26610,358,12,398633,1687775 +26611,283,12,12499,897 +26612,265,12,12483,15303 +26613,214,12,21619,30053 +26614,315,12,213681,1771616 +26615,393,12,354287,19156 +26616,214,12,40863,56719 +26617,283,12,30924,2724 +26618,322,12,169,1139092 +26619,393,12,11172,1539404 +26620,214,12,365065,1093748 +26621,265,12,11706,3778 +26622,265,12,10866,4146 +26623,358,12,435,1574655 +26624,214,12,361183,1091859 +26625,265,12,18111,82694 +26626,214,12,11338,7184 +26627,283,12,43817,1046370 +26628,265,12,25684,20690 +26629,214,12,3539,11940 +26630,214,12,81560,145550 +26631,265,12,15749,1847414 +26632,214,12,1991,138 +26633,107,12,857,1905119 +26634,214,12,332168,1177898 +26635,283,12,2102,21558 +26636,271,12,5924,1598156 +26637,393,12,122081,1332171 +26638,214,12,209271,937171 +26639,265,12,2288,8448 +26640,372,12,36175,1124110 +26641,214,12,141489,959948 +26642,265,12,14295,1032 +26643,265,12,11024,13594 +26644,214,12,58886,228581 +26645,283,12,264560,1308255 +26646,70,12,91627,58499 +26647,283,12,12645,17674 +26648,283,12,2454,25137 +26649,265,12,72912,567553 +26650,214,12,42684,1127472 +26651,163,12,37534,1209781 +26652,372,12,128169,562942 +26653,265,12,12636,73190 +26654,283,12,375366,238120 +26655,283,12,35292,19680 +26656,318,12,9568,8923 +26657,265,12,76757,11268 +26658,300,12,82684,2947 +26659,144,12,35651,1590609 +26660,214,12,277237,9021 +26661,163,12,423377,1754605 +26662,265,12,9543,2444 +26663,265,12,51549,1634162 +26664,214,12,83802,1548436 +26665,163,12,382125,1612798 +26666,265,12,28001,1027221 +26667,372,12,240881,1561731 +26668,372,12,71099,1114036 +26669,265,12,694,5016 +26670,283,12,88641,3275 +26671,265,12,294652,1317049 +26672,214,12,135652,1102867 +26673,315,12,1715,18791 +26674,214,12,332283,109980 +26675,265,12,417936,1295546 +26676,283,12,8981,3081 +26677,283,12,1995,7786 +26678,214,12,94809,53188 +26679,214,12,3597,33256 +26680,214,12,367147,1673199 +26681,214,12,23048,68389 +26682,271,12,427680,1758549 +26683,265,12,425774,1707747 +26684,214,12,10543,339 +26685,214,12,36253,71400 +26686,214,12,552,7557 +26687,70,12,165,30 +26688,214,12,354859,1651503 +26689,214,12,268321,1318341 +26690,315,12,10733,1571776 +26691,214,12,33253,69991 +26692,214,12,43434,56204 +26693,393,12,333484,1608766 +26694,372,12,226701,99684 +26695,265,12,407806,62795 +26696,214,12,60568,70676 +26697,318,12,271714,1547232 +26698,393,12,337339,1662338 +26699,214,12,291871,1179823 +26700,214,12,11909,11401 +26701,214,12,10440,3658 +26702,265,12,2924,12507 +26703,214,12,17820,9055 +26704,214,12,397837,58327 +26705,299,12,315837,1565650 +26706,214,12,91076,1241 +26707,214,12,22076,60888 +26708,163,12,109610,35328 +26709,214,12,392660,1711604 +26710,271,12,159667,1849490 +26711,214,12,259695,550 +26712,214,12,75622,99665 +26713,214,12,374473,15491 +26714,372,12,15199,1641974 +26715,214,12,791,11816 +26716,214,12,4913,39978 +26717,70,12,241855,1448547 +26718,283,12,16077,5328 +26719,214,12,237756,1272155 +26720,214,12,32143,13563 +26721,265,12,41073,120131 +26722,286,3,130278,1075520 +26723,265,12,52894,33009 +26724,315,12,10909,1317820 +26725,265,12,2441,24973 +26726,214,12,199575,1323511 +26727,283,12,18,1113 +26728,265,12,13279,46080 +26729,358,12,2924,72752 +26730,214,12,23518,14490 +26731,265,12,252171,109 +26732,372,12,13225,1397771 +26733,271,12,43195,1331896 +26734,214,12,9016,15810 +26735,283,12,4547,7481 +26736,389,12,8869,1116038 +26737,107,12,291413,1649355 +26738,214,12,397422,1607044 +26739,214,12,9457,10685 +26740,214,12,33339,57427 +26741,214,12,16239,80176 +26742,70,12,293982,1063506 +26743,214,12,10909,69045 +26744,214,12,24963,43753 +26745,283,12,14534,2624 +26746,214,12,18843,2043 +26747,265,12,370178,75939 +26748,214,12,16032,593062 +26749,265,12,428355,216147 +26750,271,12,77459,1821413 +26751,372,12,77459,1047588 +26752,283,12,200505,561 +26753,214,12,9016,15811 +26754,265,12,177047,1462276 +26755,214,12,277839,1033926 +26756,214,12,225285,1431133 +26757,214,12,28297,86186 +26758,214,12,84185,11711 +26759,214,12,105153,110347 +26760,265,12,135713,1103648 +26761,214,12,328429,1055234 +26762,163,12,435,58190 +26763,265,12,365942,59700 +26764,214,12,47942,7506 +26765,265,12,311324,1627914 +26766,214,12,65496,543840 +26767,271,12,84030,1432141 +26768,271,12,110980,1605794 +26769,214,12,153854,1468092 +26770,70,12,38322,1599143 +26771,283,12,5257,42381 +26772,283,12,106747,1229153 +26773,214,12,100661,8333 +26774,214,12,921,339 +26775,214,12,105539,2891 +26776,214,12,15019,1555652 +26777,70,12,204040,8501 +26778,70,12,85160,1432464 +26779,214,12,10425,27097 +26780,265,12,45205,132509 +26781,214,12,24756,62207 +26782,265,12,380058,1047303 +26783,214,12,83,642 +26784,315,12,8467,71236 +26785,283,12,544,7415 +26786,144,12,8619,1069830 +26787,70,12,13493,1551707 +26788,283,12,72912,1037914 +26789,322,12,48281,1894631 +26790,214,12,44389,1841202 +26791,70,12,117534,1822566 +26792,214,12,85494,41704 +26793,283,12,204384,4222 +26794,214,12,2017,20691 +26795,214,12,42139,14805 +26796,265,12,7445,67975 +26797,271,12,29161,1760099 +26798,231,12,9555,38656 +26799,214,12,268321,58260 +26800,265,12,38448,1125638 +26801,70,12,403119,1658454 +26802,214,12,403605,1173296 +26803,214,12,6947,11614 +26804,283,12,2924,2874 +26805,265,12,136752,1208804 +26806,231,12,334074,1471673 +26807,283,12,70074,1333932 +26808,214,12,25872,92628 +26809,214,12,51250,17211 +26810,214,12,6687,16999 +26811,283,12,401164,1583648 +26812,265,12,116463,589184 +26813,214,12,62630,996068 +26814,7,3,339403,1635333 +26815,214,12,779,11583 +26816,214,12,16092,79285 +26817,283,12,77875,2215 +26818,265,12,12538,62598 +26819,214,12,2565,488 +26820,214,12,44578,1170615 +26821,265,12,262522,942456 +26822,265,12,703,3658 +26823,214,12,26173,14523 +26824,214,12,10586,869 +26825,214,12,97614,1419717 +26826,214,12,2241,5844 +26827,265,12,16182,79927 +26828,265,12,62764,964327 +26829,214,12,206647,10666 +26830,70,12,1902,3560 +26831,283,12,43727,5914 +26832,265,12,246655,6184 +26833,214,12,58244,53229 +26834,318,12,79593,1536509 +26835,163,12,216156,1553480 +26836,265,12,107593,1529469 +26837,70,12,54287,1417387 +26838,227,12,9902,1619091 +26839,265,12,295964,5381 +26840,265,12,99859,995466 +26841,214,12,301334,1275387 +26842,372,12,16839,137317 +26843,265,12,2061,1174 +26844,300,12,340101,1865914 +26845,163,12,1691,1840415 +26846,214,12,81232,6223 +26847,163,12,9746,9964 +26848,283,12,10733,1720 +26849,214,12,302699,63223 +26850,283,12,21214,937960 +26851,214,12,52150,575454 +26852,283,12,664,3191 +26853,214,12,8669,35180 +26854,265,12,43089,65637 +26855,271,12,95516,1411123 +26856,283,12,4133,2952 +26857,214,12,12540,52451 +26858,283,12,4478,547 +26859,214,12,12716,1962 +26860,214,12,20439,131196 +26861,318,12,302042,1818210 +26862,283,12,17287,106454 +26863,214,12,16432,1100078 +26864,265,12,66125,59774 +26865,265,12,334074,17209 +26866,214,12,14904,3046 +26867,214,12,46623,41753 +26868,214,12,109329,2106 +26869,214,12,8281,4402 +26870,214,12,6933,14337 +26871,265,12,56601,1291349 +26872,283,12,319924,1515075 +26873,322,12,66193,1402538 +26874,214,12,206563,963336 +26875,70,12,345069,1478652 +26876,315,12,205587,1406894 +26877,271,12,10204,1613299 +26878,214,12,72711,122449 +26879,107,12,345922,1663602 +26880,70,12,269149,96997 +26881,214,12,297736,1374539 +26882,214,12,1995,20514 +26883,214,12,118490,1014024 +26884,214,12,114444,1115620 +26885,271,12,16444,119329 +26886,214,12,46872,26959 +26887,214,12,36056,7385 +26888,214,12,169298,1098482 +26889,214,12,283384,1345424 +26890,300,12,11397,58183 +26891,214,12,47065,444458 +26892,271,12,30690,1187948 +26893,283,12,352164,967203 +26894,315,12,155605,1605299 +26895,217,3,96458,1009382 +26896,283,12,630,2656 +26897,214,12,6935,51508 +26898,265,12,16296,49681 +26899,214,12,6976,30700 +26900,214,12,10871,7671 +26901,214,12,9963,61091 +26902,214,12,336691,454177 +26903,70,12,22029,99880 +26904,283,12,37958,1198825 +26905,214,12,11643,3452 +26906,214,12,72574,566353 +26907,214,12,348320,1197740 +26908,265,12,11370,43676 +26909,214,12,152736,930004 +26910,283,12,188102,38554 +26911,283,12,13788,14377 +26912,372,12,15472,1547004 +26913,214,12,298722,1376798 +26914,70,12,8358,42358 +26915,214,12,288952,2861 +26916,265,12,10070,62814 +26917,286,3,408381,1362789 +26918,265,12,15,11035 +26919,372,12,435,1574633 +26920,214,12,266102,59592 +26921,358,12,136368,1197578 +26922,283,12,11812,434 +26923,70,12,31083,33442 +26924,283,12,2009,1307603 +26925,265,12,46567,73630 +26926,163,12,46286,982461 +26927,214,12,95516,1066409 +26928,214,12,29290,103487 +26929,265,12,35626,78973 +26930,214,12,209271,65559 +26931,214,12,245891,40644 +26932,214,12,94525,213471 +26933,283,12,189197,12203 +26934,300,12,6947,1344279 +26935,265,12,1382,53896 +26936,283,12,17464,13433 +26937,283,12,2021,53346 +26938,214,12,8199,53966 +26939,214,12,25983,960477 +26940,214,12,24709,952974 +26941,283,12,2132,21855 +26942,315,12,13823,75804 +26943,214,12,74779,1317351 +26944,265,12,28323,3453 +26945,265,12,11024,60711 +26946,214,12,118131,1497 +26947,372,12,298584,227228 +26948,265,12,11622,70052 +26949,393,12,329440,1622448 +26950,214,12,169869,11472 +26951,214,12,29143,3805 +26952,265,12,773,57560 +26953,283,12,1450,928588 +26954,315,12,167810,1793188 +26955,214,12,5393,1356774 +26956,214,12,4982,339 +26957,214,12,8932,758 +26958,214,12,23367,5545 +26959,271,12,31280,1632868 +26960,265,12,127728,1085650 +26961,214,12,227973,1536578 +26962,231,12,17654,44741 +26963,214,12,18495,46945 +26964,372,12,3577,33039 +26965,214,12,441728,29229 +26966,283,12,10330,599 +26967,283,12,59419,4023 +26968,214,12,404459,1665252 +26969,372,12,394822,125249 +26970,163,12,393367,1660183 +26971,214,12,43646,57301 +26972,214,12,200505,20743 +26973,265,12,72710,62238 +26974,214,12,40208,256221 +26975,265,12,12526,62238 +26976,214,12,113739,1057676 +26977,265,12,11798,465 +26978,265,12,189,2293 +26979,300,12,186869,1835571 +26980,214,12,795,11899 +26981,70,12,41360,150194 +26982,265,12,7220,10850 +26983,214,12,10950,9182 +26984,214,12,393562,85670 +26985,214,12,12614,14090 +26986,214,12,105077,1115248 +26987,265,12,193756,1500206 +26988,163,12,206647,1477203 +26989,127,3,339403,1635135 +26990,214,12,9956,60914 +26991,214,12,11838,20316 +26992,214,12,10665,40383 +26993,214,12,2734,24582 +26994,214,12,10622,64903 +26995,283,12,17258,1530 +26996,214,12,82327,16707 +26997,214,12,11496,30826 +26998,265,12,26116,67232 +26999,214,12,139244,949506 +27000,214,12,37126,61821 +27001,214,12,218778,79666 +27002,283,12,9816,2952 +27003,214,12,132363,1095402 +27004,144,12,264525,1431111 +27005,283,12,14126,41675 +27006,214,12,321039,1506293 +27007,283,12,34231,27241 +27008,265,12,10103,1348 +27009,214,12,351901,1377410 +27010,265,12,9918,2446 +27011,214,12,398289,1637436 +27012,214,12,68721,10850 +27013,283,12,9297,42360 +27014,214,12,224894,1483980 +27015,78,3,337339,1738122 +27016,283,12,577,7800 +27017,271,12,2721,26181 +27018,214,12,2033,20896 +27019,265,12,107976,1644622 +27020,214,12,67,161 +27021,214,12,5393,12107 +27022,214,12,32552,121034 +27023,214,12,16154,35510 +27024,70,12,315010,1443052 +27025,163,12,2924,66754 +27026,214,12,26180,1248193 +27027,214,12,28571,10001 +27028,309,12,10733,1571775 +27029,265,12,323673,31363 +27030,265,12,4982,40374 +27031,214,12,10744,51542 +27032,214,12,83185,1377954 +27033,231,12,1966,11420 +27034,265,12,131932,90266 +27035,265,12,11307,1412008 +27036,163,12,58251,993748 +27037,271,12,278621,1415881 +27038,214,12,11391,69173 +27039,214,12,35021,934824 +27040,358,12,11351,1597211 +27041,265,12,9541,1307 +27042,265,12,9264,15730 +27043,214,12,121674,61155 +27044,214,12,32275,3248 +27045,283,12,132601,5290 +27046,214,12,329289,1494147 +27047,163,12,924,1470640 +27048,70,12,254193,557363 +27049,214,12,26430,57778 +27050,214,12,330770,1616018 +27051,214,12,142478,936584 +27052,372,12,137182,1106970 +27053,214,12,79645,18392 +27054,214,12,12618,2226 +27055,214,12,297762,282 +27056,214,12,12476,72411 +27057,214,12,101998,19949 +27058,70,12,48131,67756 +27059,214,12,70086,117483 +27060,283,12,11428,21812 +27061,214,12,10740,66729 +27062,300,12,7220,47288 +27063,163,12,118,8275 +27064,163,12,15045,9250 +27065,265,12,755,2294 +27066,214,12,33740,145797 +27067,214,12,33273,939460 +27068,265,12,8669,1734782 +27069,214,12,9396,57596 +27070,214,12,11354,37436 +27071,393,12,206647,1551775 +27072,214,12,147618,93905 +27073,372,12,4133,34854 +27074,214,12,60505,64075 +27075,265,12,213681,54419 +27076,144,12,27145,96971 +27077,315,12,9716,8920 +27078,283,12,49950,59932 +27079,283,12,216580,1395213 +27080,214,12,14753,937407 +27081,214,12,97110,536712 +27082,287,3,64215,1354341 +27083,214,12,9776,24177 +27084,265,12,31347,1352123 +27085,283,12,22477,1046 +27086,214,12,339342,1168716 +27087,265,12,398633,552566 +27088,265,12,44115,6373 +27089,214,12,310137,1537530 +27090,214,12,10070,62798 +27091,214,12,284293,57427 +27092,214,12,34496,1320556 +27093,265,12,205587,27151 +27094,214,12,9495,57707 +27095,265,12,26405,1479443 +27096,70,12,2662,204304 +27097,214,12,27543,98150 +27098,265,12,32921,4123 +27099,163,12,39907,31039 +27100,214,12,9793,5140 +27101,265,12,94182,4123 +27102,214,12,122,123 +27103,283,12,8464,35333 +27104,265,12,31596,1885598 +27105,214,12,100910,556859 +27106,214,12,135713,1103644 +27107,214,12,43596,590750 +27108,265,12,10077,62929 +27109,265,12,1579,42007 +27110,214,12,8588,18904 +27111,372,12,25684,52046 +27112,265,12,116463,1188276 +27113,214,12,22267,1994 +27114,214,12,283445,55499 +27115,214,12,204994,34112 +27116,214,12,43114,18573 +27117,265,12,337958,1583405 +27118,265,12,11812,28401 +27119,214,12,104041,1012121 +27120,265,12,60281,1803175 +27121,214,12,43753,104322 +27122,265,12,209244,15208 +27123,214,12,296523,8747 +27124,214,12,441881,42802 +27125,214,12,25520,58033 +27126,393,12,14411,1377373 +27127,214,12,38356,9987 +27128,265,12,7555,45829 +27129,265,12,14543,9339 +27130,214,12,327,3056 +27131,214,12,321315,1418980 +27132,283,12,64944,36126 +27133,171,3,410118,1791606 +27134,214,12,8247,66513 +27135,214,12,152748,1133332 +27136,265,12,460135,141043 +27137,214,12,146381,1124083 +27138,283,12,285860,1516101 +27139,283,12,18897,7295 +27140,214,12,379873,41383 +27141,214,12,244316,1426224 +27142,163,12,382873,70874 +27143,283,12,21765,3965 +27144,214,12,154442,1722920 +27145,265,12,264644,1492088 +27146,214,12,25528,103129 +27147,214,12,130948,1298933 +27148,214,12,10586,65685 +27149,70,12,9568,1546542 +27150,283,12,194,2424 +27151,214,12,62046,56032 +27152,214,12,362439,228801 +27153,265,12,11330,18826 +27154,214,12,203264,302339 +27155,283,12,476,2624 +27156,214,12,124157,1285355 +27157,214,12,810,574003 +27158,214,12,300487,1256932 +27159,265,12,46286,20567 +27160,163,12,173205,1852953 +27161,322,12,297762,1824278 +27162,214,12,444713,88142 +27163,214,12,6557,4507 +27164,214,12,282268,1207799 +27165,70,12,381008,1741935 +27166,214,12,9461,46602 +27167,70,12,14534,1437640 +27168,70,12,103332,1462315 +27169,163,12,14457,1556999 +27170,283,12,139826,423 +27171,265,12,11351,1776 +27172,214,12,540,22116 +27173,283,12,16374,1030267 +27174,70,12,11024,1345973 +27175,283,12,10077,62930 +27176,271,12,1922,19994 +27177,265,12,52520,3955 +27178,283,12,63139,13585 +27179,214,12,2355,24177 +27180,300,12,11370,1581142 +27181,315,12,265208,1552016 +27182,214,12,113148,45745 +27183,415,3,339403,1635189 +27184,265,12,356752,1841601 +27185,214,12,102629,61921 +27186,265,12,26390,45830 +27187,283,12,29151,3192 +27188,214,12,103713,1034663 +27189,144,12,1966,1417848 +27190,265,12,259694,69597 +27191,214,12,2102,21555 +27192,300,12,284052,38939 +27193,214,12,15239,78023 +27194,271,12,35651,1590608 +27195,265,12,14011,34934 +27196,214,12,116711,5719 +27197,265,12,2046,120606 +27198,214,12,244580,17172 +27199,214,12,9966,61123 +27200,214,12,45205,132512 +27201,107,12,4547,1758622 +27202,163,12,296524,1631516 +27203,283,12,6963,2215 +27204,265,12,11535,17630 +27205,265,12,19594,5719 +27206,214,12,239563,1141683 +27207,214,12,152989,1015258 +27208,214,12,815,15873 +27209,214,12,2125,930 +27210,214,12,20758,30174 +27211,70,12,3172,21003 +27212,214,12,7326,52897 +27213,214,12,50079,84034 +27214,265,12,104041,69007 +27215,214,12,12796,40052 +27216,265,12,334074,22815 +27217,214,12,68193,105835 +27218,283,12,284293,5328 +27219,214,12,34231,1460024 +27220,300,12,949,1494667 +27221,284,12,19995,1401816 +27222,265,12,30583,3868 +27223,214,12,19719,85132 +27224,193,12,102197,1477203 +27225,214,12,44716,1015 +27226,214,12,14983,62268 +27227,283,12,63217,1035176 +27228,214,12,31977,42804 +27229,70,12,47921,1111417 +27230,283,12,202241,15426 +27231,214,12,9079,35 +27232,214,12,188826,66088 +27233,214,12,86700,933505 +27234,214,12,169726,592416 +27235,265,12,32451,1258541 +27236,372,12,345915,1071180 +27237,214,12,132332,1338204 +27238,70,12,4248,60515 +27239,265,12,3577,33038 +27240,214,12,43395,21507 +27241,265,12,62732,1608316 +27242,283,12,157424,1193910 +27243,283,12,1726,7232 +27244,214,12,921,14911 +27245,70,12,62330,1866067 +27246,393,12,15019,1276602 +27247,283,12,10075,62876 +27248,214,12,13591,89296 +27249,214,12,48243,146117 +27250,283,12,338676,6531 +27251,214,12,369820,1543718 +27252,271,12,16638,8344 +27253,214,12,29382,103692 +27254,214,12,243683,20739 +27255,214,12,411013,1064613 +27256,214,12,244539,486 +27257,265,12,188927,58433 +27258,300,12,13834,75879 +27259,265,12,13550,56967 +27260,271,12,94182,1529469 +27261,214,12,339527,57367 +27262,214,12,14976,1265276 +27263,214,12,69315,1115247 +27264,300,12,157843,1202849 +27265,231,12,28026,1322484 +27266,283,12,7551,3192 +27267,214,12,14286,84381 +27268,393,12,284052,1543191 +27269,214,12,329805,66840 +27270,214,12,315723,1568245 +27271,214,12,15267,1809723 +27272,214,12,34205,993133 +27273,265,12,10008,56747 +27274,214,12,109614,1476249 +27275,214,12,122677,30678 +27276,214,12,48502,140601 +27277,265,12,369820,1373056 +27278,231,12,4248,9562 +27279,70,12,8414,1891667 +27280,214,12,19688,66726 +27281,265,12,14543,1091 +27282,70,12,10780,1255941 +27283,214,12,177047,1256620 +27284,265,12,307081,1506015 +27285,144,12,329712,1646360 +27286,283,12,55420,1192862 +27287,214,12,18616,87158 +27288,265,12,187028,1728936 +27289,214,12,18586,17491 +27290,373,7,949,16177 +27291,234,1,13777,75286 +27292,183,5,227306,1644252 +27293,333,2,26811,29671 +27294,105,7,12994,39993 +27295,204,9,167073,1409696 +27296,66,11,33273,1585446 +27297,158,2,225728,1149777 +27298,234,1,55784,112400 +27299,234,1,79599,586773 +27300,52,10,43195,15127 +27301,360,3,7445,42037 +27302,187,11,1991,1352968 +27303,85,10,18638,223820 +27304,257,3,12103,1625920 +27305,317,10,218898,142632 +27306,5,10,43002,137390 +27307,387,10,6589,50585 +27308,53,2,11101,14621 +27309,204,9,110525,8506 +27310,268,7,341174,93844 +27311,387,10,77877,224385 +27312,113,9,9532,1441245 +27313,250,11,102382,1399478 +27314,204,9,208529,1732669 +27315,20,2,284052,1354914 +27316,413,11,123777,1012174 +27317,13,5,378441,1797441 +27318,53,2,321303,1437043 +27319,53,2,76333,1506442 +27320,234,1,52654,13496 +27321,234,1,248417,1250064 +27322,52,10,100063,1040919 +27323,204,9,17332,936841 +27324,287,3,16432,1418508 +27325,105,7,20325,975566 +27326,234,1,310972,51524 +27327,413,11,62394,10957 +27328,75,5,168259,1439104 +27329,317,10,68179,61373 +27330,196,7,1902,1106173 +27331,317,10,97088,28878 +27332,234,1,44155,61985 +27333,413,11,33460,35807 +27334,317,10,257237,1296809 +27335,234,1,407531,1654252 +27336,53,2,17332,36591 +27337,387,10,427680,1267666 +27338,83,2,857,1249773 +27339,387,10,69605,46713 +27340,403,10,77859,553297 +27341,148,9,26516,3648 +27342,234,1,38065,86037 +27343,234,1,226693,42457 +27344,269,9,18405,1410279 +27345,397,7,23452,109195 +27346,60,1,442752,1666619 +27347,275,9,16390,209181 +27348,387,10,49907,5812 +27349,314,2,11450,1407223 +27350,3,5,130507,9080 +27351,394,7,5881,46290 +27352,5,10,382501,1831039 +27353,234,1,237796,24683 +27354,234,1,104108,1035830 +27355,387,10,3023,29632 +27356,234,1,31417,37302 +27357,234,1,227262,114001 +27358,148,9,99861,1510430 +27359,60,1,22584,1435047 +27360,64,6,40804,1109565 +27361,46,5,297762,1824262 +27362,104,7,285270,1302522 +27363,53,2,121824,1493522 +27364,97,7,1125,9440 +27365,413,11,33407,136362 +27366,250,11,95516,1411140 +27367,143,7,72545,42267 +27368,3,5,176,2149 +27369,413,11,84318,1084965 +27370,3,5,9950,7492 +27371,105,7,287636,1336705 +27372,53,2,75761,424552 +27373,105,7,322922,84350 +27374,269,9,429238,1202845 +27375,234,1,32577,72624 +27376,234,1,129129,1038003 +27377,317,10,246741,55936 +27378,207,3,48231,1643414 +27379,273,7,9746,1551 +27380,99,3,379019,1611687 +27381,413,11,36236,14269 +27382,387,10,86600,8246 +27383,13,1,170279,1665919 +27384,413,11,85837,1015854 +27385,175,5,297762,1394767 +27386,209,7,140607,21122 +27387,234,1,39308,29664 +27388,387,10,14522,1901 +27389,204,9,48205,1620072 +27390,413,11,111017,3898 +27391,262,6,1271,6038 +27392,74,5,445993,1808039 +27393,413,11,40761,120032 +27394,413,11,36129,1336138 +27395,108,10,987,14824 +27396,387,10,27409,80942 +27397,204,9,43277,116723 +27398,234,1,46492,125690 +27399,209,7,9982,1550058 +27400,317,10,199155,1019068 +27401,113,9,69974,557675 +27402,226,2,2976,29218 +27403,269,9,152989,1164963 +27404,208,2,244786,23786 +27405,402,11,383538,1843164 +27406,179,2,190955,1372094 +27407,387,10,11888,12966 +27408,53,2,36797,8411 +27409,269,9,356752,1528016 +27410,317,10,353728,956818 +27411,328,6,297762,1903933 +27412,317,10,31003,55117 +27413,75,5,315664,1434868 +27414,413,11,7210,7837 +27415,317,10,319396,1103831 +27416,333,2,890,14622 +27417,387,10,1912,3722 +27418,105,7,36968,62358 +27419,234,1,127702,989512 +27420,108,10,183827,1399671 +27421,204,9,24150,37023 +27422,286,3,336265,1194699 +27423,234,1,89921,69541 +27424,327,7,52661,1559475 +27425,250,11,56937,1412154 +27426,72,11,168027,1460749 +27427,204,9,154441,1135311 +27428,3,5,175822,115374 +27429,317,10,73723,52361 +27430,148,9,26873,96503 +27431,175,5,43727,1555493 +27432,360,9,354859,1459866 +27433,105,7,16987,53616 +27434,286,3,41252,71092 +27435,166,9,11812,1378222 +27436,273,7,10053,62558 +27437,273,7,45132,15221 +27438,105,7,156335,1010129 +27439,306,7,325173,1519611 +27440,234,1,80374,67924 +27441,387,10,8204,52845 +27442,33,10,6934,23827 +27443,317,10,83013,1130017 +27444,5,10,3036,28970 +27445,387,10,59249,98776 +27446,179,2,43546,1012329 +27447,234,1,10750,774 +27448,53,2,9918,52016 +27449,203,1,43923,1473813 +27450,317,10,37718,13 +27451,52,10,93511,1685144 +27452,317,10,341491,97143 +27453,180,7,15199,1641981 +27454,289,6,10837,1447375 +27455,413,11,422550,1099943 +27456,327,7,20242,1413451 +27457,204,9,86718,1439810 +27458,413,11,266433,1359995 +27459,413,11,11577,69954 +27460,387,10,13505,12105 +27461,180,7,141819,1776879 +27462,317,10,20842,12698 +27463,269,9,18908,74405 +27464,286,3,255160,1348662 +27465,228,2,341174,1738096 +27466,413,11,2100,12940 +27467,226,2,70670,1545283 +27468,238,7,10590,930663 +27469,333,2,9504,91054 +27470,317,10,397422,1480620 +27471,387,10,14525,128476 +27472,3,5,321303,137610 +27473,387,10,136799,1676472 +27474,387,10,1838,19346 +27475,3,5,86603,1060 +27476,234,1,48186,60045 +27477,269,9,70436,5547 +27478,333,2,263115,1431554 +27479,234,1,26376,37361 +27480,158,2,4147,1522745 +27481,289,6,329865,1646560 +27482,53,2,76170,5549 +27483,387,10,2009,20657 +27484,387,10,115972,112996 +27485,3,5,26661,29635 +27486,413,11,45649,133398 +27487,105,7,24821,832208 +27488,413,11,245775,6794 +27489,234,1,8985,134788 +27490,140,9,10539,7969 +27491,273,7,578,491 +27492,3,5,24709,1058621 +27493,269,9,328111,998570 +27494,60,1,43379,52248 +27495,269,9,95743,9041 +27496,219,11,2323,1429549 +27497,113,9,50463,1535447 +27498,273,7,66045,548011 +27499,234,1,8985,1048491 +27500,60,1,140276,1093512 +27501,198,6,302828,1573926 +27502,3,5,11813,18835 +27503,387,10,59434,18565 +27504,317,10,13517,73094 +27505,262,6,394645,1864630 +27506,209,7,2666,1392736 +27507,196,7,817,9417 +27508,148,9,65787,8508 +27509,262,6,99698,1606182 +27510,273,7,935,14252 +27511,234,1,245703,71872 +27512,403,10,37710,69987 +27513,204,9,435,1322140 +27514,273,7,53211,422939 +27515,234,1,14612,83413 +27516,273,7,241574,30130 +27517,175,5,278632,1582593 +27518,182,8,117212,1592194 +27519,413,11,194722,10419 +27520,147,1,379019,1780146 +27521,273,7,25684,1120224 +27522,32,8,68737,1033102 +27523,226,2,11206,16538 +27524,314,2,296523,1463275 +27525,273,7,8340,39405 +27526,234,1,3476,32082 +27527,289,6,10491,1433233 +27528,373,7,15613,1378170 +27529,3,5,312831,1033142 +27530,317,10,374461,74277 +27531,83,2,24810,1441273 +27532,377,3,8619,1619086 +27533,148,9,185154,1181927 +27534,141,7,266856,1746705 +27535,413,11,18620,172993 +27536,148,9,73247,1318662 +27537,327,7,10796,1368866 +27538,273,7,118640,1324239 +27539,387,10,76609,2406 +27540,234,1,22429,88796 +27541,373,7,336882,1448311 +27542,387,10,15,30012 +27543,190,7,262338,1685996 +27544,273,7,173205,929145 +27545,204,9,124115,1132129 +27546,234,1,54982,63713 +27547,75,5,11832,1723384 +27548,5,10,121848,27916 +27549,75,5,961,118305 +27550,75,5,106020,21516 +27551,234,1,231762,1267016 +27552,413,11,448763,1741306 +27553,254,10,79833,11624 +27554,413,11,39938,355197 +27555,317,10,34615,3774 +27556,37,3,35,1447547 +27557,234,1,339145,223747 +27558,3,5,13506,1605193 +27559,269,9,27102,96967 +27560,402,11,15653,1753449 +27561,317,10,9793,56282 +27562,176,3,203833,1406188 +27563,373,7,26636,14623 +27564,234,1,18514,145359 +27565,203,1,9358,1387544 +27566,234,1,311291,586002 +27567,234,1,17467,81913 +27568,204,9,32657,61177 +27569,3,5,10889,3659 +27570,333,2,167,1549173 +27571,269,9,949,11411 +27572,234,1,32331,1120414 +27573,232,10,86956,71789 +27574,249,7,2046,13224 +27575,234,1,9607,58165 +27576,387,10,34019,72496 +27577,317,10,336845,76240 +27578,340,2,50725,1733141 +27579,234,1,258947,16672 +27580,273,7,271039,1183647 +27581,234,1,173467,140908 +27582,219,11,857,1429549 +27583,262,6,6972,1394961 +27584,413,11,102,1030 +27585,317,10,3476,32082 +27586,198,6,257088,1638133 +27587,3,5,10803,9103 +27588,52,10,47876,120678 +27589,387,10,436,5872 +27590,373,7,167073,1394004 +27591,373,7,14128,1421706 +27592,387,10,52454,146005 +27593,234,1,297288,72769 +27594,72,11,57749,1411239 +27595,198,6,19255,1552351 +27596,317,10,15907,1350295 +27597,273,7,125229,125001 +27598,3,5,9835,59790 +27599,413,11,19995,58871 +27600,234,1,10119,63744 +27601,239,5,312221,1525929 +27602,269,9,17577,1039117 +27603,234,1,150201,1448865 +27604,333,2,11643,1674705 +27605,234,1,13555,10051 +27606,168,3,10590,1744054 +27607,3,5,170936,32183 +27608,413,11,38766,3099 +27609,269,9,73984,32382 +27610,175,5,12591,1389672 +27611,53,2,245168,61936 +27612,53,2,393562,1616619 +27613,196,7,346672,1417516 +27614,317,10,21032,991160 +27615,323,10,345069,978824 +27616,387,10,50073,32994 +27617,3,5,89720,97714 +27618,234,1,57230,225722 +27619,333,2,59296,1441390 +27620,53,2,149511,1170629 +27621,317,10,53168,1136397 +27622,12,10,13682,77545 +27623,333,2,77338,1621911 +27624,317,10,13529,67926 +27625,333,2,16442,4128 +27626,52,10,43205,129312 +27627,307,6,53178,555753 +27628,273,7,253277,1293580 +27629,52,10,6,52035 +27630,333,2,27150,13942 +27631,286,3,89325,958512 +27632,387,10,39781,40277 +27633,3,5,297288,1223265 +27634,269,9,339527,8705 +27635,415,3,5421,102115 +27636,273,7,339526,58289 +27637,52,10,30374,133083 +27638,179,2,181533,1413000 +27639,273,7,320005,1427404 +27640,204,9,45215,8506 +27641,317,10,62732,1202316 +27642,273,7,98125,2916 +27643,273,7,17473,1330244 +27644,105,7,74779,51710 +27645,235,5,287903,1569342 +27646,3,5,27259,1467355 +27647,204,9,70753,559561 +27648,198,6,228066,1574077 +27649,317,10,20473,48805 +27650,317,10,31856,1138710 +27651,3,5,14226,57913 +27652,204,9,126889,962431 +27653,269,9,17287,112855 +27654,349,1,35,1447482 +27655,273,7,37633,446674 +27656,148,9,278632,1333664 +27657,188,8,30361,1769264 +27658,413,11,45013,995462 +27659,236,8,93856,1547198 +27660,273,7,10626,49247 +27661,234,1,42580,90037 +27662,234,1,51481,83313 +27663,13,3,41213,1777268 +27664,317,10,108535,5810 +27665,387,10,43645,9234 +27666,273,7,201,1760 +27667,53,2,66812,37770 +27668,53,2,12221,1086400 +27669,232,10,117500,40531 +27670,160,3,39053,6328 +27671,60,1,110540,121047 +27672,317,10,56391,1028360 +27673,269,9,44502,124237 +27674,286,3,17282,100848 +27675,387,10,3114,30491 +27676,235,5,23966,1011461 +27677,234,1,31713,2087 +27678,20,2,141,5291 +27679,333,2,157343,4128 +27680,221,3,4147,1558218 +27681,387,10,19398,81717 +27682,273,7,205349,41149 +27683,268,7,316042,1389667 +27684,413,11,339994,1168861 +27685,273,7,122081,8377 +27686,330,3,18917,1788187 +27687,210,9,263115,1802810 +27688,204,9,61541,9062 +27689,75,5,10921,1402219 +27690,53,2,32390,19058 +27691,132,2,75622,1525544 +27692,317,10,21769,1123874 +27693,314,2,256347,1402475 +27694,387,10,809,12084 +27695,413,11,21338,16567 +27696,148,9,9464,32037 +27697,3,5,273879,293 +27698,175,5,102668,1031766 +27699,5,10,20304,574268 +27700,226,2,37481,1099169 +27701,74,5,401164,1817462 +27702,234,1,105768,62081 +27703,269,9,139718,352394 +27704,387,10,43379,24658 +27705,273,7,43095,1086513 +27706,204,9,43369,1604151 +27707,387,10,83125,142316 +27708,52,10,10198,72714 +27709,317,10,32080,66918 +27710,273,7,316654,1174416 +27711,317,10,24993,3893 +27712,234,1,14449,1287732 +27713,182,8,177677,1430498 +27714,203,1,10484,578049 +27715,225,7,1428,1596321 +27716,234,1,39979,50739 +27717,3,5,107593,2760 +27718,291,6,293660,1441320 +27719,175,5,198663,1391729 +27720,333,2,31042,118292 +27721,160,3,306966,1748601 +27722,387,10,16890,44023 +27723,317,10,300669,932248 +27724,234,1,207699,1196846 +27725,249,7,44115,1392614 +27726,333,2,315837,1635483 +27727,160,3,230179,951657 +27728,182,8,243940,56690 +27729,97,7,233639,1410746 +27730,273,7,10611,5287 +27731,53,2,42532,1342641 +27732,234,1,40258,239403 +27733,53,2,24453,39815 +27734,234,1,435,6046 +27735,273,7,68684,1304291 +27736,234,1,44888,64114 +27737,286,3,285848,1170862 +27738,387,10,43143,30700 +27739,286,3,125521,1462946 +27740,413,11,196359,1168710 +27741,269,9,10396,12017 +27742,175,5,330459,1470167 +27743,147,1,7220,1745942 +27744,262,6,76163,1426749 +27745,387,10,225728,3230 +27746,127,3,9461,1801755 +27747,273,7,250574,1489248 +27748,269,9,9464,32036 +27749,148,9,43141,7687 +27750,269,9,18820,1058635 +27751,387,10,29368,47686 +27752,234,1,275096,1209349 +27753,317,10,2993,29433 +27754,234,1,79218,87055 +27755,286,3,78568,23464 +27756,317,10,96238,68185 +27757,209,7,168027,1397736 +27758,413,11,49334,142036 +27759,328,6,152736,1336715 +27760,209,7,123109,1423004 +27761,381,9,44115,1394713 +27762,234,1,258193,1299058 +27763,413,11,323929,1423660 +27764,203,1,242224,1428878 +27765,289,6,9664,1557587 +27766,413,11,19176,908 +27767,203,1,14510,1449507 +27768,262,6,10733,1397846 +27769,66,11,11024,1328410 +27770,40,1,29136,1835496 +27771,182,8,294652,1722222 +27772,127,3,214756,996220 +27773,301,5,58244,1618806 +27774,269,9,9816,54776 +27775,204,9,12103,29219 +27776,105,7,78691,107057 +27777,257,3,10320,1821181 +27778,189,3,44943,1403418 +27779,3,5,209251,1291116 +27780,143,7,9438,1415618 +27781,301,5,329805,1621904 +27782,13,10,5511,43810 +27783,250,11,257088,1414558 +27784,387,10,154,1792 +27785,234,1,378503,1142289 +27786,105,7,21765,5666 +27787,416,10,152989,1133587 +27788,143,7,59981,1380479 +27789,234,1,7353,52606 +27790,105,7,10529,17767 +27791,413,11,55720,1128796 +27792,234,1,20196,59023 +27793,302,9,163,1364239 +27794,413,11,1911,8752 +27795,349,1,35,1447459 +27796,317,10,167935,1063051 +27797,269,9,113432,1332205 +27798,226,2,13505,223994 +27799,409,7,9472,1043374 +27800,204,9,62630,1408371 +27801,234,1,42674,89193 +27802,105,7,370687,1578487 +27803,20,2,29151,1526847 +27804,148,9,128644,1087642 +27805,99,3,11202,83791 +27806,182,8,360249,1497579 +27807,387,10,422603,1699011 +27808,204,9,112961,1472427 +27809,306,7,177677,105780 +27810,353,7,9441,66142 +27811,182,8,277713,1609172 +27812,317,10,19324,11159 +27813,204,9,131194,1305720 +27814,415,3,92321,1783232 +27815,148,9,811,12120 +27816,53,2,2001,1471022 +27817,169,3,2300,1421720 +27818,234,1,32683,14281 +27819,269,9,15476,1327245 +27820,234,1,341517,1470052 +27821,75,5,322922,85808 +27822,211,3,9042,1334511 +27823,387,10,4820,41751 +27824,413,11,6417,49669 +27825,296,3,9613,1529006 +27826,24,5,1624,1399899 +27827,53,2,28510,1324124 +27828,204,9,42094,137190 +27829,387,10,9474,50818 +27830,317,10,296491,1372046 +27831,105,7,14073,5288 +27832,210,9,414977,1200655 +27833,77,10,35253,114351 +27834,3,5,11643,70810 +27835,179,2,9297,1330567 +27836,413,11,11577,20924 +27837,317,10,34672,61246 +27838,234,1,64268,238891 +27839,204,9,68050,32311 +27840,53,2,225285,1431143 +27841,317,10,12237,167407 +27842,317,10,77060,82592 +27843,273,7,76059,1125622 +27844,53,2,226968,1242113 +27845,387,10,333371,1117947 +27846,234,1,139433,62926 +27847,234,1,123728,1603348 +27848,269,9,58985,38523 +27849,194,9,242683,33250 +27850,234,1,128270,99898 +27851,53,2,436,1624030 +27852,105,7,54845,1429524 +27853,198,6,294254,1569334 +27854,273,7,10735,2593 +27855,83,2,348631,1515082 +27856,286,3,98612,1555692 +27857,158,2,16996,1378721 +27858,317,10,136386,1060136 +27859,234,1,43997,108497 +27860,387,10,1049,15149 +27861,158,2,1579,1400351 +27862,234,1,82368,57641 +27863,5,10,274131,1202091 +27864,234,1,81022,89575 +27865,273,7,78507,2500 +27866,269,9,616,9199 +27867,53,2,64720,1321356 +27868,234,1,11101,14614 +27869,273,7,18977,88643 +27870,234,1,49653,142502 +27871,317,10,378441,1362645 +27872,234,1,314285,1178401 +27873,234,1,15640,51601 +27874,415,3,29343,64875 +27875,3,5,369603,1118682 +27876,273,7,47324,1300039 +27877,273,7,4266,19085 +27878,191,6,274857,1829975 +27879,234,1,19850,1060257 +27880,413,11,49391,476 +27881,234,1,24432,80538 +27882,175,5,296523,1394412 +27883,413,11,409536,1618327 +27884,209,7,2924,5712 +27885,286,3,136921,1106519 +27886,413,11,254007,1057076 +27887,306,7,3989,34529 +27888,317,10,60568,544461 +27889,160,3,11202,217763 +27890,413,11,16131,71878 +27891,273,7,2982,4683 +27892,5,10,43022,233221 +27893,226,2,14979,1417400 +27894,187,11,10916,1392239 +27895,273,7,15560,94238 +27896,58,2,9819,1549261 +27897,53,2,73835,1606261 +27898,234,1,14613,105643 +27899,122,8,176,1817645 +27900,413,11,31022,1681775 +27901,387,10,4248,35744 +27902,289,6,12144,1448087 +27903,377,3,4248,1667250 +27904,317,10,17669,23947 +27905,287,3,68684,1304294 +27906,220,7,409447,1699522 +27907,269,9,19017,7718 +27908,398,9,127372,1431507 +27909,317,10,57597,64726 +27910,273,7,48838,544182 +27911,304,10,11572,69943 +27912,45,9,173153,1347738 +27913,269,9,50674,19691 +27914,85,10,339944,1606332 +27915,413,11,2611,1215 +27916,262,6,9593,15849 +27917,387,10,85052,1264503 +27918,5,10,133941,3485 +27919,234,1,111836,545155 +27920,415,3,246415,1439406 +27921,5,10,42216,1373181 +27922,3,5,270400,579243 +27923,317,10,119639,1311640 +27924,269,9,38579,53813 +27925,53,2,383538,1851875 +27926,204,9,13600,1555216 +27927,234,1,348611,1280364 +27928,317,10,162382,138209 +27929,5,10,29067,67054 +27930,273,7,28170,99916 +27931,333,2,418437,1763652 +27932,317,10,199647,1179821 +27933,160,3,33613,557759 +27934,317,10,29649,1032175 +27935,234,1,6081,1927 +27936,141,7,2300,936765 +27937,3,5,42188,5360 +27938,234,1,12171,73399 +27939,234,1,265712,1311591 +27940,198,6,337339,1725767 +27941,234,1,169314,1151366 +27942,413,11,336011,569737 +27943,287,3,298584,1434899 +27944,234,1,140894,10491 +27945,394,7,287903,1511086 +27946,132,2,196469,1334166 +27947,317,10,45384,93514 +27948,234,1,46029,37526 +27949,143,7,11377,9349 +27950,75,5,31911,1549590 +27951,234,1,68347,85203 +27952,273,7,634,9152 +27953,273,7,44626,4082 +27954,234,1,176627,21305 +27955,53,2,50126,11823 +27956,317,10,319924,61246 +27957,204,9,94674,1121527 +27958,234,1,62713,229575 +27959,273,7,11633,70104 +27960,269,9,287,4058 +27961,234,1,275136,78298 +27962,11,6,165095,1146748 +27963,148,9,14181,1545473 +27964,413,11,199602,1087022 +27965,234,1,64784,239763 +27966,333,2,26390,1406578 +27967,413,11,125759,52311 +27968,217,3,65759,1460489 +27969,333,2,578,13942 +27970,3,5,325302,1465613 +27971,273,7,1497,8933 +27972,234,1,44637,1250543 +27973,317,10,161179,932629 +27974,317,10,27265,11368 +27975,200,3,60599,1400498 +27976,387,10,4375,41626 +27977,5,10,10176,64096 +27978,413,11,209271,569737 +27979,172,3,8467,1893239 +27980,234,1,398891,1006109 +27981,234,1,201765,114464 +27982,226,2,14370,959814 +27983,143,7,264397,1324074 +27984,413,11,63825,37242 +27985,45,9,181533,1394931 +27986,317,10,338676,140396 +27987,413,11,288952,1483950 +27988,3,5,30941,31501 +27989,203,1,2503,1406856 +27990,269,9,16164,1124531 +27991,234,1,1899,19837 +27992,317,10,174611,1004922 +27993,273,7,18692,120030 +27994,273,7,10776,63964 +27995,373,7,99698,1596555 +27996,97,7,250066,1451527 +27997,273,7,2033,20897 +27998,327,7,41610,582413 +27999,66,11,15,19457 +28000,317,10,47057,3214 +28001,328,6,98277,1424270 +28002,273,7,1986,20682 +28003,411,9,284052,1324829 +28004,3,5,262522,1204184 +28005,175,5,297702,1636859 +28006,226,2,14138,1452256 +28007,232,10,44208,134431 +28008,53,2,29094,33176 +28009,317,10,41206,4970 +28010,204,9,13792,75556 +28011,234,1,86647,30956 +28012,387,10,11257,54443 +28013,204,9,43384,9059 +28014,287,3,207270,1518049 +28015,234,1,2692,28579 +28016,273,7,106155,56036 +28017,196,7,18273,1455304 +28018,203,1,198663,1367508 +28019,57,2,55534,32884 +28020,66,11,316654,1676035 +28021,273,7,13934,8172 +28022,234,1,347258,1525126 +28023,234,1,14423,109692 +28024,113,9,755,1538213 +28025,317,10,143883,86860 +28026,72,11,241239,1468590 +28027,204,9,92321,1315203 +28028,234,1,64202,1217656 +28029,387,10,5425,44477 +28030,317,10,31299,107926 +28031,270,9,435,1391760 +28032,413,11,35651,17387 +28033,83,2,443319,1888996 +28034,234,1,211166,53431 +28035,53,2,49521,5392 +28036,234,1,122709,30146 +28037,387,10,11633,70101 +28038,175,5,273404,1445373 +28039,269,9,403570,1194106 +28040,187,11,228970,1406190 +28041,413,11,48210,1601350 +28042,234,1,158967,1115973 +28043,204,9,267935,239559 +28044,197,5,10796,1779722 +28045,378,3,403,23781 +28046,234,1,105902,5629 +28047,52,10,354857,1218544 +28048,387,10,387957,1235182 +28049,53,2,333484,15573 +28050,234,1,13649,65310 +28051,234,1,13946,11419 +28052,226,2,26656,1454503 +28053,25,2,230179,1596539 +28054,234,1,97110,536712 +28055,234,1,5618,210193 +28056,413,11,14019,76256 +28057,234,1,18392,2873 +28058,317,10,35689,114596 +28059,413,11,14435,1452750 +28060,204,9,10142,961420 +28061,273,7,12450,13083 +28062,203,1,9457,1387544 +28063,413,11,23223,3121 +28064,387,10,176670,120175 +28065,105,7,293082,11468 +28066,77,10,10011,61987 +28067,32,8,2567,589970 +28068,204,9,16921,1401760 +28069,413,11,11307,34484 +28070,234,1,13585,130895 +28071,273,7,194407,8503 +28072,77,10,273,3871 +28073,53,2,99567,108810 +28074,317,10,20174,85760 +28075,234,1,59961,125738 +28076,394,7,59965,1395023 +28077,398,9,41283,1424154 +28078,234,1,56971,120189 +28079,387,10,106358,33959 +28080,234,1,291577,1362518 +28081,269,9,11524,10441 +28082,413,11,44801,21244 +28083,262,6,6972,1401714 +28084,168,3,227306,1866378 +28085,34,8,924,1419269 +28086,373,7,345918,1407208 +28087,53,2,369883,1200487 +28088,187,11,9928,92386 +28089,234,1,260030,102383 +28090,239,5,375366,1740781 +28091,317,10,415255,1758716 +28092,286,3,134397,123543 +28093,317,10,25998,228290 +28094,387,10,2262,2725 +28095,413,11,42288,68417 +28096,413,11,9472,11372 +28097,413,11,288526,1126411 +28098,303,3,317,20037 +28099,413,11,402446,1205437 +28100,141,7,43522,30267 +28101,148,9,335970,1340088 +28102,21,3,29805,126454 +28103,228,2,435,1327910 +28104,411,9,126889,33195 +28105,262,6,9946,1432022 +28106,53,2,70192,12145 +28107,413,11,9516,57779 +28108,317,10,20164,148010 +28109,413,11,9899,9647 +28110,204,9,46029,1640579 +28111,234,1,179847,1126 +28112,166,9,7445,1407225 +28113,180,7,43395,1729492 +28114,287,3,222935,1329112 +28115,413,11,69428,545004 +28116,204,9,32657,1325871 +28117,143,7,98277,1823882 +28118,148,9,705,9587 +28119,234,1,71320,12698 +28120,226,2,9593,1411166 +28121,413,11,9572,1871 +28122,317,10,138544,85822 +28123,175,5,283445,1548097 +28124,387,10,22136,4387 +28125,203,1,319924,1467416 +28126,204,9,226968,1098702 +28127,269,9,10915,1130007 +28128,289,6,287903,1569329 +28129,165,9,14430,1521709 +28130,286,3,53693,1024870 +28131,269,9,2355,24184 +28132,387,10,11799,15389 +28133,413,11,70151,2920 +28134,97,7,339547,1579517 +28135,203,1,22683,124660 +28136,3,5,11636,70111 +28137,234,1,40850,124830 +28138,234,1,95108,4695 +28139,262,6,9716,15435 +28140,234,1,18111,27992 +28141,148,9,623,5331 +28142,5,10,975,14554 +28143,52,10,43833,9952 +28144,317,10,157354,1056121 +28145,413,11,24254,91471 +28146,327,7,347945,1618780 +28147,3,5,294819,40896 +28148,286,3,42537,14284 +28149,3,5,662,9956 +28150,3,5,505,2507 +28151,5,10,12103,51446 +28152,317,10,85377,1155557 +28153,387,10,13505,10387 +28154,317,10,298787,1037775 +28155,53,2,2124,21816 +28156,269,9,152042,1315186 +28157,196,7,24750,1280394 +28158,262,6,273481,1568843 +28159,234,1,110980,52172 +28160,148,9,1165,15733 +28161,394,7,28176,3992 +28162,289,6,39045,1447368 +28163,269,9,50318,162545 +28164,204,9,220820,1332523 +28165,196,7,16436,1345597 +28166,317,10,73628,552700 +28167,174,6,40466,104044 +28168,204,9,10727,61486 +28169,387,10,8463,7420 +28170,317,10,43211,4664 +28171,317,10,170759,1844 +28172,160,3,66741,1431582 +28173,273,7,135390,1641443 +28174,53,2,8491,1867941 +28175,127,3,52454,1630382 +28176,273,7,73984,18836 +28177,403,10,15213,78011 +28178,413,11,121173,1202164 +28179,3,5,397365,1348503 +28180,53,2,209764,1294089 +28181,234,1,19181,79063 +28182,317,10,65579,67213 +28183,204,9,31548,3945 +28184,52,10,52047,95501 +28185,234,1,14626,9888 +28186,53,2,28178,1399022 +28187,373,7,11607,1342624 +28188,398,9,9882,1754420 +28189,77,10,16999,81139 +28190,234,1,264569,1311001 +28191,317,10,303982,1689174 +28192,285,5,11547,1557599 +28193,234,1,13640,74863 +28194,75,5,26331,1310263 +28195,52,10,14370,57359 +28196,75,5,10389,1437891 +28197,360,3,49009,1539290 +28198,394,7,9568,1546558 +28199,317,10,86305,123707 +28200,387,10,59962,11092 +28201,317,10,87343,108899 +28202,232,10,29117,103049 +28203,332,8,298787,1376950 +28204,5,10,95504,1066563 +28205,273,7,46029,1062037 +28206,3,5,33673,11442 +28207,317,10,337879,1675373 +28208,373,7,10004,1422868 +28209,234,1,54900,1168191 +28210,234,1,286372,93064 +28211,413,11,107916,1143000 +28212,5,10,42191,127575 +28213,373,7,57749,75559 +28214,105,7,171581,1311276 +28215,203,1,257345,1428927 +28216,3,5,11354,20065 +28217,387,10,146,28642 +28218,413,11,289712,1547771 +28219,87,7,167073,1578008 +28220,234,1,177104,28256 +28221,64,6,17144,1436538 +28222,387,10,18755,1340950 +28223,175,5,28110,1713522 +28224,373,7,10921,1297659 +28225,132,2,15661,1526508 +28226,148,9,17978,9587 +28227,52,10,404567,25620 +28228,53,2,116463,1296488 +28229,387,10,82409,927851 +28230,234,1,69903,18592 +28231,53,2,90799,9064 +28232,289,6,41213,1777243 +28233,269,9,188927,2486 +28234,413,11,330770,1616020 +28235,317,10,157898,223265 +28236,52,10,5123,14692 +28237,147,1,33586,1814961 +28238,200,3,102382,113124 +28239,179,2,93856,1335155 +28240,155,3,77459,54206 +28241,333,2,31548,29813 +28242,53,2,35623,1703751 +28243,373,7,243568,1409399 +28244,52,10,330459,86239 +28245,273,7,28682,53189 +28246,53,2,291164,1538240 +28247,234,1,310135,585934 +28248,234,1,62071,1042634 +28249,234,1,18467,59231 +28250,234,1,288788,1360145 +28251,413,11,12112,44076 +28252,60,1,71041,1467196 +28253,387,10,108017,550754 +28254,234,1,314462,145509 +28255,333,2,41213,1777184 +28256,182,8,337339,1907202 +28257,203,1,321039,1507145 +28258,52,10,98369,1018930 +28259,53,2,319993,1437663 +28260,58,2,1690,1889490 +28261,394,7,204922,11351 +28262,190,7,190955,1562588 +28263,317,10,33253,69991 +28264,269,9,243935,1316191 +28265,77,10,17875,11834 +28266,269,9,325302,1465613 +28267,234,1,191476,17108 +28268,250,11,296523,1780485 +28269,234,1,461615,1832456 +28270,97,7,8869,1374169 +28271,3,5,338676,1464779 +28272,415,3,32921,121202 +28273,317,10,82650,486 +28274,289,6,15045,1457930 +28275,413,11,253257,1394641 +28276,204,9,38987,107419 +28277,413,11,17971,1754099 +28278,317,10,337101,1458316 +28279,232,10,14554,58093 +28280,234,1,246320,59031 +28281,413,11,12113,950 +28282,234,1,21431,223010 +28283,3,5,28031,35165 +28284,413,11,70074,64335 +28285,286,3,110115,42119 +28286,234,1,76494,64045 +28287,75,5,954,1427543 +28288,105,7,64215,1132457 +28289,77,10,10176,64091 +28290,27,3,12103,1625913 +28291,204,9,15697,13290 +28292,53,2,9457,1357611 +28293,234,1,121791,148455 +28294,328,6,257088,1398930 +28295,317,10,29538,69709 +28296,97,7,198663,1367493 +28297,373,7,205587,113097 +28298,148,9,13667,1561103 +28299,415,3,1991,59287 +28300,234,1,142746,1117905 +28301,328,6,1125,1403408 +28302,333,2,11502,1609509 +28303,3,5,54287,45497 +28304,262,6,263115,1032070 +28305,324,3,2731,563903 +28306,52,10,226968,10427 +28307,413,11,44502,1321354 +28308,234,1,33316,110461 +28309,187,11,97614,1394747 +28310,204,9,200505,1454535 +28311,196,7,10476,1560899 +28312,317,10,49199,21902 +28313,234,1,363841,225971 +28314,105,7,18467,1319443 +28315,3,5,13058,473 +28316,234,1,85651,154631 +28317,387,10,63190,105114 +28318,97,7,76757,1116937 +28319,262,6,8053,1708861 +28320,105,7,367006,1076417 +28321,3,5,147773,1527 +28322,387,10,27380,118281 +28323,413,11,336029,5327 +28324,387,10,296523,1458589 +28325,52,10,27635,85453 +28326,317,10,316885,1631 +28327,234,1,39413,37633 +28328,132,2,273481,1412223 +28329,3,5,31146,191745 +28330,286,3,381008,1053122 +28331,234,1,62741,235922 +28332,413,11,187602,1169492 +28333,317,10,43973,1020732 +28334,234,1,367492,1533693 +28335,305,9,266856,1665616 +28336,234,1,30175,129119 +28337,317,10,149910,61246 +28338,234,1,20132,85700 +28339,32,8,109439,1539172 +28340,97,7,17111,1437885 +28341,269,9,336811,1457453 +28342,387,10,116160,1062874 +28343,234,1,2516,25630 +28344,97,7,274857,1699535 +28345,269,9,241258,1128347 +28346,317,10,52314,1773060 +28347,387,10,8414,54889 +28348,234,1,132332,2559 +28349,203,1,22477,1459591 +28350,204,9,86718,1007281 +28351,3,5,25807,14960 +28352,82,6,109477,1046586 +28353,394,7,9032,1417972 +28354,269,9,5991,5030 +28355,317,10,19725,84442 +28356,273,7,11545,5666 +28357,413,11,10753,46326 +28358,327,7,13493,1415617 +28359,286,3,53064,1107777 +28360,286,3,413198,1720975 +28361,181,7,312221,1544544 +28362,317,10,211166,1372716 +28363,234,1,362579,234825 +28364,413,11,30547,385451 +28365,226,2,13842,1096345 +28366,196,7,84226,1418431 +28367,234,1,119010,1068921 +28368,189,3,1647,1408707 +28369,273,7,40952,1081799 +28370,105,7,9889,60009 +28371,387,10,30175,64157 +28372,176,3,76203,1393436 +28373,289,6,116711,1459734 +28374,221,3,6977,1555880 +28375,203,1,222935,1262129 +28376,221,3,9946,1394491 +28377,226,2,274479,1521022 +28378,97,7,9716,1308375 +28379,234,1,83079,97704 +28380,317,10,59231,1776 +28381,317,10,99229,583704 +28382,269,9,1724,10819 +28383,398,9,435,1384358 +28384,234,1,121936,35959 +28385,234,1,48268,137349 +28386,60,1,38269,231258 +28387,304,10,31995,14292 +28388,52,10,73027,15379 +28389,182,8,11472,1192644 +28390,53,2,9793,1522041 +28391,317,10,58428,101542 +28392,317,10,381073,1591730 +28393,105,7,11980,56748 +28394,75,5,36245,1759423 +28395,413,11,268099,73645 +28396,148,9,42703,3649 +28397,317,10,42120,26767 +28398,387,10,9563,932 +28399,182,8,76757,1373728 +28400,226,2,8292,1449149 +28401,5,10,4986,7394 +28402,3,5,58411,65689 +28403,298,5,257088,1399071 +28404,234,1,16124,32277 +28405,234,1,35554,120127 +28406,317,10,76494,1045317 +28407,53,2,173638,10714 +28408,234,1,39840,125281 +28409,87,7,202241,52161 +28410,333,2,40804,1207588 +28411,123,3,126963,1447870 +28412,190,7,8467,1377126 +28413,269,9,241855,1327572 +28414,317,10,315855,97579 +28415,376,10,2503,19242 +28416,204,9,169760,1337629 +28417,3,5,14029,37371 +28418,352,3,7220,1707128 +28419,317,10,308639,51866 +28420,317,10,74674,114541 +28421,234,1,342588,1129511 +28422,381,9,1624,1562993 +28423,99,3,924,1498167 +28424,317,10,46227,1214349 +28425,413,11,88486,33790 +28426,75,5,14916,1430518 +28427,52,10,11377,57522 +28428,198,6,337339,1725769 +28429,3,5,540,22119 +28430,39,3,634,1262529 +28431,413,11,11361,69143 +28432,105,7,28564,29967 +28433,234,1,44105,145518 +28434,317,10,45184,50759 +28435,5,10,9317,57287 +28436,204,3,31773,9060 +28437,234,1,48405,1063221 +28438,317,10,297633,1399550 +28439,340,2,345922,1580965 +28440,269,9,31586,13304 +28441,234,1,53945,44955 +28442,291,6,7326,1593500 +28443,180,7,174769,121315 +28444,387,10,11572,69944 +28445,175,5,15092,1387186 +28446,413,11,201419,1023347 +28447,204,9,76170,17116 +28448,234,1,15764,6349 +28449,387,10,105551,34369 +28450,234,1,10929,58403 +28451,148,9,40085,9587 +28452,176,3,6972,1401680 +28453,234,1,195385,230668 +28454,373,7,48617,229834 +28455,53,2,67531,1176512 +28456,317,10,26798,4341 +28457,415,3,42191,3252 +28458,148,9,121234,1332196 +28459,203,1,78177,16328 +28460,373,7,33586,1815007 +28461,77,10,13225,74301 +28462,11,6,14128,1726805 +28463,387,10,24918,14639 +28464,398,9,435,1322139 +28465,317,10,43372,87267 +28466,273,7,6443,44632 +28467,373,7,62630,1340116 +28468,310,3,62439,1295481 +28469,413,11,38282,41524 +28470,3,5,58886,13503 +28471,3,5,29872,33413 +28472,413,11,98277,54569 +28473,226,2,49521,1182908 +28474,105,7,23223,1300920 +28475,273,7,2625,2704 +28476,204,9,14181,1467187 +28477,234,1,380057,1569816 +28478,234,1,32657,10965 +28479,234,1,46695,84982 +28480,143,7,225728,1312810 +28481,3,5,511,7092 +28482,273,7,12516,71029 +28483,3,5,150338,14726 +28484,286,3,91380,1964 +28485,108,10,11206,7123 +28486,87,7,13614,1610045 +28487,387,10,330381,227936 +28488,234,1,1959,20237 +28489,314,2,118,1332186 +28490,387,10,100528,70981 +28491,289,6,116463,1262363 +28492,286,3,31150,51589 +28493,187,11,76341,1355536 +28494,314,2,13616,1281998 +28495,234,1,747,11090 +28496,317,10,73697,236449 +28497,388,9,10491,1406815 +28498,387,10,10775,66719 +28499,87,7,215928,1537709 +28500,387,10,356461,236996 +28501,289,6,39045,1409418 +28502,72,11,205584,1585746 +28503,162,6,291865,1451391 +28504,182,8,244786,1533530 +28505,317,10,253284,1288764 +28506,236,8,356752,1742884 +28507,192,5,228066,1403641 +28508,188,8,339403,1635236 +28509,234,1,16096,141824 +28510,234,1,33689,17167 +28511,213,10,74103,1174819 +28512,387,10,9736,63897 +28513,387,10,329809,72005 +28514,3,5,1691,33931 +28515,209,7,24556,91014 +28516,148,9,10354,14342 +28517,204,9,10866,22009 +28518,12,10,3941,34207 +28519,148,9,108345,1198731 +28520,314,2,384737,1739852 +28521,273,7,3597,4500 +28522,269,9,210047,1158913 +28523,52,10,369524,1254 +28524,160,3,75174,197930 +28525,53,2,45019,6688 +28526,413,11,4344,40466 +28527,415,3,13380,1436502 +28528,376,10,88042,147483 +28529,387,10,11397,66517 +28530,12,10,125249,3794 +28531,30,5,284052,1401593 +28532,234,1,364690,1524920 +28533,387,10,202214,147899 +28534,83,2,27259,1624417 +28535,234,1,11205,62410 +28536,317,10,285213,1442992 +28537,141,7,338189,936765 +28538,387,10,16135,79491 +28539,204,9,80276,1704831 +28540,413,11,241593,1422422 +28541,207,3,10803,1225460 +28542,234,1,325592,1543278 +28543,413,11,263627,1234359 +28544,413,11,1369,1098 +28545,277,3,30637,1569882 +28546,413,11,362057,1467334 +28547,180,7,110412,1580878 +28548,175,5,2288,1541841 +28549,179,2,10921,1330856 +28550,53,2,630,9064 +28551,413,11,54388,1527479 +28552,105,7,266741,66489 +28553,273,7,34598,76200 +28554,413,11,30641,1165992 +28555,387,10,43379,12330 +28556,234,1,438144,133185 +28557,273,7,12638,73196 +28558,135,3,176,1817626 +28559,3,5,105254,11905 +28560,387,10,69784,116326 +28561,3,5,20312,22143 +28562,234,1,179818,10790 +28563,105,7,376501,1208823 +28564,226,2,14979,1412601 +28565,273,7,29376,1761 +28566,273,7,28894,100580 +28567,234,1,12780,18899 +28568,52,10,322922,1473801 +28569,333,2,75229,574198 +28570,204,9,311324,1658864 +28571,317,10,38043,198143 +28572,317,10,109074,1606819 +28573,413,11,13542,23827 +28574,234,1,139862,28445 +28575,234,1,139244,19304 +28576,413,11,78568,23397 +28577,3,5,224,1143 +28578,234,1,325133,52934 +28579,3,5,11854,70848 +28580,52,10,275269,99710 +28581,226,2,5,1745153 +28582,413,11,1818,3838 +28583,317,10,98557,1018700 +28584,317,10,192133,51679 +28585,387,10,199615,140027 +28586,52,10,51601,96819 +28587,317,10,332411,78335 +28588,53,2,10727,1209537 +28589,387,10,301348,1448801 +28590,300,3,11472,11712 +28591,273,7,11449,9217 +28592,234,1,63186,67750 +28593,180,7,3539,32418 +28594,148,9,10665,1823388 +28595,3,5,340961,14268 +28596,182,8,398289,1398846 +28597,266,3,17654,1327838 +28598,317,10,206237,544711 +28599,208,2,300187,75833 +28600,333,2,197,33103 +28601,333,2,19995,1310064 +28602,204,9,16410,6605 +28603,234,1,29151,17697 +28604,289,6,63498,1447567 +28605,60,1,43075,1417676 +28606,268,7,10070,1399286 +28607,413,11,23048,7184 +28608,204,9,315837,33303 +28609,273,7,11004,19155 +28610,166,9,50725,1325353 +28611,273,7,549,7482 +28612,234,1,114108,11523 +28613,234,1,9935,60693 +28614,317,10,428645,1533252 +28615,97,7,293167,1463395 +28616,317,10,17479,107762 +28617,387,10,56154,103688 +28618,234,1,269173,76242 +28619,249,7,69668,1393441 +28620,105,7,106020,177558 +28621,200,3,189,1401140 +28622,319,1,13380,1321921 +28623,234,1,19053,63713 +28624,273,7,80304,65246 +28625,234,1,15838,108304 +28626,317,10,36361,56106 +28627,127,3,28090,1535122 +28628,220,7,38006,1555746 +28629,182,8,10491,1433619 +28630,394,7,413452,41888 +28631,97,7,201085,1572873 +28632,169,3,9946,13457 +28633,262,6,302828,1412250 +28634,5,10,95358,1163077 +28635,289,6,14411,1447381 +28636,3,5,253273,1293568 +28637,166,9,2105,1443053 +28638,273,7,73194,8503 +28639,413,11,23048,1468801 +28640,160,3,258193,1339959 +28641,234,1,134238,120437 +28642,234,1,134656,131521 +28643,208,2,168259,1309209 +28644,87,7,6557,54514 +28645,73,7,16444,1627173 +28646,413,11,326,10853 +28647,413,11,250066,1013105 +28648,105,7,19957,7647 +28649,387,10,176867,8720 +28650,262,6,152736,1336716 +28651,234,1,334394,1265594 +28652,234,1,73700,104025 +28653,192,5,2160,45519 +28654,160,3,41283,1406839 +28655,415,3,74911,10157 +28656,234,1,82627,913688 +28657,52,10,263472,1279580 +28658,3,5,433,5840 +28659,148,9,19200,18173 +28660,269,9,11656,6654 +28661,204,9,7305,10197 +28662,269,9,64678,958228 +28663,72,11,1595,17855 +28664,373,7,445993,229829 +28665,75,5,755,3113 +28666,64,6,10336,1410526 +28667,262,6,222935,1395366 +28668,273,7,101363,936470 +28669,277,3,45714,1588866 +28670,317,10,28658,108795 +28671,387,10,7454,53356 +28672,20,2,14295,54241 +28673,234,1,180685,1437799 +28674,60,1,172443,8630 +28675,273,7,128625,1087512 +28676,46,5,544,1780211 +28677,234,1,74689,545675 +28678,37,3,76341,1456696 +28679,317,10,57278,936916 +28680,102,3,9042,1409243 +28681,413,11,11524,15842 +28682,132,2,294254,1404276 +28683,273,7,34084,3350 +28684,273,7,26593,1760 +28685,301,5,97365,1727614 +28686,401,6,13017,1448482 +28687,3,5,69717,1538878 +28688,34,8,169881,1519300 +28689,46,5,74777,583476 +28690,75,5,106747,1401152 +28691,270,9,1271,1394743 +28692,269,9,151826,23981 +28693,234,1,36807,77121 +28694,53,2,29224,1092614 +28695,273,7,5924,1760 +28696,413,11,147939,1127741 +28697,269,9,54845,29788 +28698,225,7,1586,1241026 +28699,387,10,227932,1185618 +28700,187,11,10395,1403522 +28701,273,7,25953,21871 +28702,306,7,33586,1547451 +28703,273,7,19901,65045 +28704,234,1,216156,57632 +28705,84,7,109439,1409270 +28706,413,11,105860,5821 +28707,105,7,106112,5466 +28708,53,2,224251,1484531 +28709,52,10,407575,1654407 +28710,198,6,293660,1580858 +28711,45,9,334074,1363348 +28712,317,10,9461,33314 +28713,291,6,9882,1774882 +28714,209,7,9785,1408528 +28715,3,5,299,3637 +28716,289,6,74961,573552 +28717,3,5,96132,32381 +28718,387,10,245906,95979 +28719,3,5,385372,97532 +28720,273,7,209764,1294086 +28721,413,11,414910,1085304 +28722,234,1,28663,87459 +28723,234,1,45692,49214 +28724,413,11,256092,78967 +28725,3,5,257345,75553 +28726,273,7,58995,1760 +28727,148,9,61400,233077 +28728,317,10,68720,70495 +28729,234,1,57215,514 +28730,249,7,6171,1425911 +28731,3,5,76651,29731 +28732,273,7,65488,175505 +28733,5,10,371181,1515089 +28734,387,10,31596,43304 +28735,5,10,19101,68690 +28736,387,10,1715,18776 +28737,317,10,24163,57617 +28738,273,7,6935,51507 +28739,373,7,9664,1395709 +28740,388,9,9358,1339987 +28741,148,9,11975,12568 +28742,52,10,33472,29634 +28743,234,1,16023,34517 +28744,234,1,43727,69099 +28745,53,2,18392,551523 +28746,340,2,6163,1326742 +28747,53,2,2675,5493 +28748,317,10,369894,19852 +28749,234,1,10294,41671 +28750,234,1,19594,12881 +28751,394,7,10391,1341859 +28752,234,1,413770,1673803 +28753,387,10,69315,2385 +28754,3,5,36113,25471 +28755,413,11,439998,1341585 +28756,250,11,228066,1473168 +28757,11,6,70667,1448316 +28758,394,7,8617,4849 +28759,413,11,175822,12721 +28760,413,11,264397,1196069 +28761,317,10,75969,18161 +28762,148,9,12594,1326090 +28763,179,2,1586,1327910 +28764,413,11,73027,21603 +28765,413,11,505,6920 +28766,155,3,407806,35013 +28767,60,1,4497,37496 +28768,5,10,43342,5028 +28769,398,9,78507,5030 +28770,204,9,194393,120193 +28771,75,5,9042,1399565 +28772,20,2,140607,1317048 +28773,72,11,263115,1757647 +28774,413,11,52784,47066 +28775,234,1,72375,64750 +28776,234,1,28120,64114 +28777,3,5,294016,2864 +28778,413,11,361571,1071389 +28779,203,1,26331,1374648 +28780,331,3,325803,1428036 +28781,52,10,46972,1063676 +28782,413,11,42252,852 +28783,239,5,49009,1539302 +28784,147,1,401164,1817460 +28785,105,7,64678,1099499 +28786,357,3,10529,522946 +28787,317,10,31011,107490 +28788,3,5,11795,71301 +28789,327,7,86814,5439 +28790,413,11,27443,112007 +28791,273,7,341420,1469922 +28792,394,7,176,1340003 +28793,387,10,284288,1561317 +28794,317,10,155426,1519412 +28795,234,1,306464,94269 +28796,53,2,158947,1188840 +28797,269,9,302036,1417171 +28798,53,2,3172,9255 +28799,387,10,11077,7130 +28800,140,9,9928,935043 +28801,87,7,66894,1593283 +28802,394,7,44732,1395315 +28803,273,7,65002,2704 +28804,190,7,263115,1757636 +28805,105,7,33407,1815916 +28806,373,7,72431,1235786 +28807,204,9,2965,7789 +28808,327,7,258147,1298879 +28809,413,11,834,7230 +28810,53,2,194101,66572 +28811,291,6,11361,59287 +28812,413,11,817,10395 +28813,204,9,805,12018 +28814,286,3,54893,1077370 +28815,234,1,333484,20907 +28816,234,1,5237,42175 +28817,175,5,19688,1701618 +28818,52,10,147722,86405 +28819,5,10,17657,67450 +28820,273,7,1678,425396 +28821,268,7,209112,1352968 +28822,234,1,10921,67478 +28823,413,11,2907,6453 +28824,234,1,25736,74878 +28825,97,7,60599,1341856 +28826,317,10,40458,876 +28827,234,1,193652,29549 +28828,321,11,12,8062 +28829,40,1,348631,1827317 +28830,301,5,366045,1830747 +28831,53,2,402672,7238 +28832,273,7,8852,11770 +28833,235,5,10066,1427466 +28834,78,3,274857,1829892 +28835,387,10,244786,136495 +28836,143,7,283995,1360103 +28837,413,11,142989,1118142 +28838,381,9,241254,1194369 +28839,413,11,176,2150 +28840,67,10,13640,105643 +28841,204,9,9835,14341 +28842,234,1,33704,24471 +28843,273,7,293863,1042699 +28844,415,3,9080,9402 +28845,234,1,43438,592252 +28846,317,10,21481,87580 +28847,204,9,983,14747 +28848,234,1,366736,1531787 +28849,291,6,71668,1412986 +28850,143,7,394645,1479367 +28851,200,3,76163,1412711 +28852,204,9,43385,17763 +28853,317,10,57100,554948 +28854,234,1,30921,12477 +28855,234,1,239845,1274933 +28856,317,10,339362,21422 +28857,413,11,270007,17792 +28858,234,1,42739,3129 +28859,387,10,120922,70027 +28860,234,1,41619,23116 +28861,373,7,9352,1416155 +28862,289,6,149870,1456618 +28863,234,1,65713,543943 +28864,53,2,46738,1013562 +28865,21,3,28438,100985 +28866,196,7,99861,1388865 +28867,3,5,269173,30313 +28868,317,10,59189,66215 +28869,166,9,1125,1378162 +28870,200,3,10727,1418302 +28871,234,1,300669,932248 +28872,234,1,70874,98837 +28873,317,10,257081,1043023 +28874,317,10,62527,238852 +28875,413,11,2115,33830 +28876,413,11,37910,74091 +28877,317,10,47653,21309 +28878,180,7,94663,1537577 +28879,234,1,255869,1174063 +28880,226,2,70981,1537725 +28881,317,10,10192,113664 +28882,87,7,28571,1673989 +28883,182,8,60855,1396508 +28884,332,8,29424,97920 +28885,53,2,43868,1355547 +28886,387,10,31439,27074 +28887,234,1,23599,33094 +28888,387,10,46261,10828 +28889,127,3,297762,1683373 +28890,105,7,39979,18837 +28891,302,9,80389,1044221 +28892,52,10,178341,1015725 +28893,273,7,35113,72854 +28894,273,7,41590,5287 +28895,127,3,43209,1137435 +28896,46,5,11351,1839461 +28897,234,1,44140,33062 +28898,105,7,48144,1316840 +28899,234,1,19398,81717 +28900,53,2,14977,955396 +28901,411,9,228066,67202 +28902,234,1,49833,142839 +28903,52,10,43790,13982 +28904,317,10,31921,101654 +28905,181,7,264397,1299867 +28906,45,9,6972,1401669 +28907,123,3,312497,133791 +28908,387,10,866,12996 +28909,3,5,42739,3285 +28910,403,10,75745,120953 +28911,196,7,16996,1406389 +28912,52,10,31044,138107 +28913,53,2,70006,935301 +28914,234,1,11887,65310 +28915,357,3,145135,1392971 +28916,213,10,146730,2106 +28917,148,9,58076,8508 +28918,3,5,40041,1021403 +28919,273,7,133458,1152811 +28920,64,6,28425,100762 +28921,317,10,37609,1213335 +28922,204,9,210302,1193911 +28923,87,7,3035,1532477 +28924,317,10,126676,225244 +28925,289,6,3933,1448045 +28926,175,5,243940,1461177 +28927,52,10,340961,1538299 +28928,3,5,41823,15521 +28929,413,11,78028,3898 +28930,196,7,49009,1340318 +28931,234,1,15489,58059 +28932,75,5,21671,1038285 +28933,317,10,352733,1492922 +28934,268,7,76170,52193 +28935,269,9,79995,6379 +28936,179,2,102841,10189 +28937,11,6,15653,549347 +28938,53,2,68387,129988 +28939,3,5,76703,45479 +28940,234,1,259292,67426 +28941,175,5,10096,1407027 +28942,387,10,42532,15947 +28943,175,5,351901,1544518 +28944,53,2,335778,8756 +28945,262,6,338189,1419725 +28946,67,10,3933,1451302 +28947,76,2,294272,1546434 +28948,413,11,11830,70632 +28949,234,1,339152,1468137 +28950,387,10,10724,19666 +28951,387,10,16791,1186790 +28952,3,5,25500,20683 +28953,204,9,79735,12346 +28954,208,2,11232,1415080 +28955,317,10,131898,4509 +28956,234,1,253337,1288836 +28957,160,3,13849,1225721 +28958,269,9,13162,60453 +28959,234,1,11614,33806 +28960,203,1,206647,1342669 +28961,180,7,159185,1760495 +28962,357,3,240832,1412917 +28963,262,6,218778,1290687 +28964,387,10,2262,9933 +28965,273,7,289,3249 +28966,377,3,14,1753766 +28967,268,7,317,1599487 +28968,234,1,201485,1183611 +28969,317,10,14518,134656 +28970,273,7,86768,4681 +28971,387,10,68347,1384194 +28972,286,3,130233,39898 +28973,52,10,43648,129741 +28974,269,9,9918,32403 +28975,327,7,159211,1438452 +28976,387,10,76,564 +28977,273,7,59961,10851 +28978,85,10,245775,1717793 +28979,234,1,64183,607547 +28980,387,10,224951,168480 +28981,204,9,660,9918 +28982,317,10,70636,500061 +28983,200,3,69668,1425984 +28984,3,5,13075,68219 +28985,317,10,84848,56375 +28986,238,7,283995,1388864 +28987,234,1,210307,1193920 +28988,328,6,227306,63289 +28989,22,9,263115,1821883 +28990,105,7,56212,1627697 +28991,53,2,128669,4350 +28992,273,7,2608,3535 +28993,262,6,7299,1401145 +28994,381,9,7445,1407226 +28995,234,1,141803,139280 +28996,105,7,92663,1802649 +28997,234,1,1926,6495 +28998,234,1,98025,38595 +28999,317,10,83785,930161 +29000,413,11,291871,1496396 +29001,160,3,41963,138097 +29002,413,11,47504,75626 +29003,209,7,45527,1400415 +29004,204,9,45610,19690 +29005,188,8,339403,1635233 +29006,148,9,222858,1341760 +29007,143,7,40864,124864 +29008,413,11,271718,46942 +29009,317,10,29572,57206 +29010,234,1,419430,291263 +29011,387,10,68882,70562 +29012,127,3,90616,1692112 +29013,204,9,413762,1415935 +29014,207,3,11377,1401600 +29015,148,9,384737,1609371 +29016,53,2,10394,11227 +29017,333,2,44945,1520597 +29018,287,3,28739,1287868 +29019,277,3,51947,1581801 +29020,317,10,202215,1186359 +29021,398,9,2300,62724 +29022,53,2,13437,13551 +29023,127,3,9028,1757595 +29024,413,11,2259,23332 +29025,291,6,293167,1525547 +29026,143,7,64215,1354354 +29027,204,9,25796,33612 +29028,111,7,7220,1367666 +29029,317,10,51890,107941 +29030,234,1,90034,938147 +29031,148,9,10488,75292 +29032,234,1,12154,1749 +29033,234,1,30059,16411 +29034,234,1,36140,9956 +29035,234,1,19354,549834 +29036,3,5,336691,1547710 +29037,317,10,36236,5970 +29038,52,10,43089,29471 +29039,273,7,60285,175505 +29040,317,10,78464,578839 +29041,3,5,83079,98746 +29042,3,5,103332,4867 +29043,273,7,53654,9217 +29044,75,5,2503,8674 +29045,387,10,29989,936015 +29046,32,8,77057,1610877 +29047,158,2,1578,1432044 +29048,162,6,29343,101608 +29049,317,10,95743,736 +29050,306,7,18405,1842594 +29051,160,3,1278,16347 +29052,234,1,319971,559968 +29053,289,6,67162,64864 +29054,3,5,15697,930242 +29055,3,5,269494,1452554 +29056,204,9,46586,992802 +29057,105,7,373397,1885110 +29058,413,11,12206,71647 +29059,204,9,53865,14448 +29060,413,11,332283,1167206 +29061,317,10,297814,983578 +29062,387,10,49717,569160 +29063,248,2,284052,1770974 +29064,234,1,57438,11916 +29065,273,7,42569,52029 +29066,204,9,5,11423 +29067,269,9,80125,20014 +29068,12,10,408220,1738711 +29069,5,10,3023,29533 +29070,366,3,4248,1425980 +29071,234,1,77338,84426 +29072,387,10,136799,57743 +29073,289,6,328111,1479523 +29074,413,11,33107,67560 +29075,203,1,336050,1644775 +29076,387,10,5646,4591 +29077,273,7,56669,19155 +29078,234,1,92496,107301 +29079,368,7,9472,1545168 +29080,333,2,369885,1325234 +29081,113,9,18417,83080 +29082,234,1,38850,129324 +29083,148,9,152736,1333580 +29084,333,2,68684,1304300 +29085,387,10,116327,31252 +29086,387,10,35,3388 +29087,204,9,11235,1484143 +29088,292,3,5,1686379 +29089,148,9,17889,9063 +29090,289,6,153518,1460607 +29091,317,10,351043,1386893 +29092,413,11,18826,59870 +29093,105,7,99579,35073 +29094,234,1,68882,227311 +29095,262,6,76757,1483144 +29096,65,3,11024,1673552 +29097,239,5,1624,1746552 +29098,53,2,257302,1081036 +29099,398,9,109424,7790 +29100,196,7,9042,1395023 +29101,3,5,38916,1005320 +29102,398,9,127585,1178908 +29103,200,3,76757,1411333 +29104,234,1,40218,1227826 +29105,60,1,266373,1021385 +29106,234,1,187458,21113 +29107,387,10,89145,120326 +29108,3,5,339408,5506 +29109,234,1,9889,7396 +29110,204,9,44000,1505814 +29111,75,5,109424,1408389 +29112,234,1,9252,46029 +29113,387,10,104083,30491 +29114,5,10,1628,18225 +29115,105,7,142402,48585 +29116,317,10,242310,103046 +29117,317,10,53617,82562 +29118,270,9,1966,1335542 +29119,373,7,15725,110527 +29120,273,7,37939,1309331 +29121,97,7,132601,1344831 +29122,143,7,345438,1479367 +29123,3,5,422603,1699015 +29124,143,7,1428,1433719 +29125,182,8,8915,1399515 +29126,394,7,634,40810 +29127,182,8,9981,1439107 +29128,273,7,2061,21186 +29129,317,10,80545,8998 +29130,87,7,10201,1008052 +29131,317,10,26116,94703 +29132,273,7,70192,16748 +29133,204,9,67328,1583627 +29134,387,10,59040,4664 +29135,203,1,273404,1445377 +29136,219,11,2675,1540470 +29137,415,3,93856,1335148 +29138,269,9,2047,1562213 +29139,303,3,181454,1325480 +29140,196,7,69668,1406826 +29141,314,2,14254,1426761 +29142,52,10,167882,792498 +29143,204,9,11902,60917 +29144,387,10,48136,139915 +29145,373,7,18937,1341854 +29146,64,6,36657,1459789 +29147,317,10,125264,587603 +29148,317,10,132601,109541 +29149,269,9,253277,1293581 +29150,77,10,38602,68690 +29151,273,7,142478,12241 +29152,12,10,11231,61 +29153,317,10,19819,4037 +29154,234,1,64316,62410 +29155,317,10,71885,564114 +29156,204,9,68387,1407806 +29157,413,11,197335,53197 +29158,357,3,324670,1418379 +29159,273,7,103620,1530239 +29160,317,10,119801,64116 +29161,413,11,24936,1001368 +29162,155,3,68721,1194953 +29163,273,7,36758,1400 +29164,148,9,2323,555 +29165,3,5,10694,47847 +29166,3,5,272878,1919 +29167,11,6,9325,63646 +29168,317,10,328111,52360 +29169,122,8,222935,1726768 +29170,234,1,82327,222686 +29171,387,10,269650,1319553 +29172,66,11,338189,1650753 +29173,75,5,153,1781 +29174,52,10,52864,115449 +29175,234,1,45273,91243 +29176,317,10,7220,10703 +29177,5,10,10354,51446 +29178,317,10,413644,1672977 +29179,3,5,9893,51783 +29180,203,1,102668,1031767 +29181,203,1,5915,1370916 +29182,45,9,333663,1571476 +29183,317,10,333354,1115305 +29184,317,10,73208,1220978 +29185,234,1,16551,12698 +29186,53,2,47412,138899 +29187,196,7,332567,1338482 +29188,234,1,30619,86726 +29189,108,10,122698,176871 +29190,204,9,9529,57851 +29191,234,1,52744,140354 +29192,196,7,70667,1448312 +29193,234,1,347096,930333 +29194,20,2,225728,1327448 +29195,387,10,9070,51296 +29196,52,10,109122,89158 +29197,277,3,117120,1437961 +29198,204,9,89492,41592 +29199,234,1,135686,175534 +29200,161,6,12103,1346330 +29201,20,2,2300,1319844 +29202,148,9,13653,1801308 +29203,317,10,155128,103132 +29204,269,9,16876,1323721 +29205,301,5,306966,1405365 +29206,59,3,14,1558210 +29207,398,9,442752,1761856 +29208,105,7,88273,5488 +29209,317,10,342163,934905 +29210,234,1,31411,8635 +29211,273,7,5646,34016 +29212,328,6,376501,1435646 +29213,269,9,128311,1323769 +29214,32,8,924,1551661 +29215,317,10,13411,32907 +29216,234,1,31597,37710 +29217,53,2,71266,1705077 +29218,53,2,387399,1849548 +29219,394,7,201085,42267 +29220,161,6,809,1678675 +29221,75,5,37936,36 +29222,187,11,20312,558230 +29223,105,7,270024,1319929 +29224,269,9,326255,1647880 +29225,333,2,27259,1553171 +29226,64,6,23128,1444238 +29227,105,7,67328,1583625 +29228,204,9,11046,960576 +29229,387,10,39519,35320 +29230,175,5,21927,1416954 +29231,277,3,205584,1585730 +29232,188,8,251227,1286585 +29233,234,1,4820,14520 +29234,232,10,34482,63675 +29235,20,2,10754,1609517 +29236,92,7,163791,1601457 +29237,234,1,46094,12988 +29238,387,10,81720,1184609 +29239,85,10,69,84678 +29240,273,7,51426,3249 +29241,234,1,14591,109971 +29242,52,10,257447,1300128 +29243,287,3,36075,135243 +29244,187,11,332567,1401690 +29245,317,10,213681,1226281 +29246,3,5,9317,14808 +29247,234,1,125025,1080863 +29248,234,1,53486,56194 +29249,387,10,107052,227311 +29250,3,5,63317,22012 +29251,273,7,26323,29810 +29252,234,1,12104,9168 +29253,143,7,8588,55417 +29254,317,10,18334,102187 +29255,413,11,105,38 +29256,317,10,32552,16745 +29257,387,10,171337,59914 +29258,198,6,346672,1721338 +29259,204,9,7326,11821 +29260,203,1,49508,1759234 +29261,105,7,70057,21903 +29262,208,2,31867,1315700 +29263,234,1,78339,583766 +29264,53,2,26283,13811 +29265,317,10,343283,1474242 +29266,52,10,30624,10533 +29267,387,10,362026,126946 +29268,357,3,246655,1713057 +29269,239,5,46931,1595968 +29270,52,10,151086,1466148 +29271,25,2,284053,1607637 +29272,317,10,54198,144063 +29273,301,5,122081,1719410 +29274,234,1,211139,33724 +29275,3,5,65211,30970 +29276,239,5,347945,1618777 +29277,234,1,22752,11429 +29278,234,1,42288,19396 +29279,234,1,9956,85 +29280,7,3,10590,1566264 +29281,148,9,125300,1640600 +29282,234,1,125409,165339 +29283,373,7,25941,1394004 +29284,387,10,10632,59987 +29285,301,5,17015,582705 +29286,387,10,94671,879 +29287,373,7,11096,1377220 +29288,317,10,42619,81976 +29289,301,5,10391,1398970 +29290,234,1,54555,554396 +29291,53,2,42476,47899 +29292,273,7,168164,1106692 +29293,234,1,25936,115122 +29294,333,2,19176,142152 +29295,387,10,359152,1507955 +29296,234,1,104476,11523 +29297,387,10,87481,15156 +29298,302,9,14430,1521681 +29299,317,10,207402,1076600 +29300,413,11,109439,14189 +29301,317,10,105384,1618542 +29302,277,3,94182,7128 +29303,208,2,333484,1419091 +29304,226,2,1662,91853 +29305,387,10,52736,1346591 +29306,190,7,2675,1573113 +29307,105,7,10207,5488 +29308,268,7,17771,91881 +29309,11,6,15653,1719751 +29310,277,3,83430,54257 +29311,413,11,39510,1037807 +29312,314,2,348631,1514651 +29313,204,9,14088,112274 +29314,143,7,259,3571 +29315,52,10,354857,1251070 +29316,387,10,115283,586920 +29317,333,2,11570,30939 +29318,53,2,13505,33439 +29319,182,8,270303,1402503 +29320,387,10,383064,20665 +29321,169,3,244786,1429003 +29322,234,1,108501,605813 +29323,53,2,332662,1570521 +29324,317,10,16907,89965 +29325,310,3,11658,1296339 +29326,387,10,172897,58689 +29327,387,10,4762,10249 +29328,244,3,18094,1308291 +29329,273,7,153561,1193974 +29330,273,7,237,3078 +29331,234,1,18722,64061 +29332,158,2,85350,1415507 +29333,147,1,413421,1785018 +29334,127,3,2897,128179 +29335,234,1,267623,586317 +29336,286,3,43976,545097 +29337,387,10,109251,138137 +29338,411,9,102382,8285 +29339,66,11,64807,1119658 +29340,203,1,10708,1457729 +29341,269,9,22894,978107 +29342,387,10,1578,2554 +29343,413,11,16076,79174 +29344,226,2,10632,1446986 +29345,387,10,133458,231340 +29346,208,2,270303,1460741 +29347,387,10,12311,50300 +29348,34,8,354287,1781643 +29349,317,10,10235,9603 +29350,413,11,134397,2260 +29351,11,6,205584,1453006 +29352,317,10,35651,17387 +29353,83,2,293167,1316599 +29354,306,7,84823,9959 +29355,317,10,39907,1549707 +29356,148,9,4592,1273002 +29357,273,7,37100,1062350 +29358,234,1,11142,28117 +29359,234,1,120837,94218 +29360,3,5,21148,1590 +29361,262,6,95516,1411130 +29362,333,2,22584,4128 +29363,403,10,28212,108705 +29364,387,10,170936,161984 +29365,289,6,67162,109453 +29366,373,7,255343,125895 +29367,413,11,39195,122464 +29368,203,1,73198,1402724 +29369,273,7,36373,29727 +29370,273,7,51759,88646 +29371,273,7,97794,32717 +29372,204,9,221171,1820879 +29373,166,9,9716,91071 +29374,234,1,13519,61824 +29375,286,3,17495,1018986 +29376,234,1,43855,1225777 +29377,182,8,13954,1398874 +29378,234,1,53864,89632 +29379,317,10,28851,102180 +29380,262,6,19255,1401292 +29381,317,10,13996,137357 +29382,413,11,257081,8505 +29383,387,10,96089,129311 +29384,234,1,49920,176794 +29385,3,5,13505,16489 +29386,234,1,43923,53069 +29387,204,9,77079,1748681 +29388,203,1,8383,587458 +29389,209,7,37534,1394307 +29390,53,2,64944,1432512 +29391,105,7,71444,1276943 +29392,38,10,1966,1117716 +29393,182,8,9893,1299130 +29394,67,10,329865,1399910 +29395,164,3,74,1533039 +29396,317,10,74192,108499 +29397,196,7,1125,117867 +29398,317,10,73562,79033 +29399,234,1,224894,1210377 +29400,317,10,127614,1085160 +29401,123,3,56191,240845 +29402,160,3,406052,1029806 +29403,59,3,857,1558210 +29404,204,9,15875,5188 +29405,164,3,287903,1569331 +29406,77,10,18045,82642 +29407,234,1,242224,164554 +29408,234,1,245019,208119 +29409,234,1,58701,67924 +29410,97,7,336882,1427145 +29411,273,7,76094,13571 +29412,273,7,35001,26026 +29413,270,9,44943,1403394 +29414,277,7,86920,1589015 +29415,373,7,205864,1570075 +29416,166,9,12113,1532615 +29417,286,3,41213,1398519 +29418,204,9,218582,7650 +29419,148,9,44754,60793 +29420,387,10,6171,348 +29421,302,9,4147,1558192 +29422,52,10,274857,74569 +29423,273,7,104720,18593 +29424,3,5,37633,55809 +29425,234,1,11230,18899 +29426,60,1,69,35582 +29427,234,1,45938,19304 +29428,413,11,4497,793 +29429,413,11,25673,17762 +29430,148,9,9425,41898 +29431,187,11,28176,1609383 +29432,273,7,167956,1598613 +29433,234,1,13954,76541 +29434,52,10,76684,227367 +29435,236,8,2300,1710565 +29436,413,11,104556,109414 +29437,387,10,8388,56158 +29438,53,2,99,3657 +29439,180,7,434873,559747 +29440,402,11,9928,13584 +29441,182,8,374473,1650279 +29442,143,7,6947,1339446 +29443,204,9,149883,1302023 +29444,333,2,27599,568060 +29445,413,11,20530,552002 +29446,12,10,24331,224 +29447,180,7,11577,16521 +29448,234,1,91391,939590 +29449,5,10,12113,71311 +29450,234,1,11706,29962 +29451,204,9,225728,1384721 +29452,296,3,425774,1707996 +29453,333,2,294254,1446554 +29454,234,1,33314,109537 +29455,398,9,289,2110 +29456,203,1,8471,1389976 +29457,3,5,43828,14284 +29458,210,9,8467,1853283 +29459,3,5,257302,22471 +29460,328,6,10145,15023 +29461,3,5,116463,61851 +29462,105,7,376538,551939 +29463,413,11,52358,22086 +29464,200,3,284564,1752050 +29465,413,11,6933,8751 +29466,273,7,13807,58057 +29467,148,9,18633,226308 +29468,27,3,8470,1598745 +29469,394,7,45019,9408 +29470,198,6,181533,1869359 +29471,3,5,147722,98442 +29472,234,1,12594,62020 +29473,148,9,197696,1475169 +29474,413,11,308032,229482 +29475,46,5,4147,86585 +29476,317,10,1497,175502 +29477,401,6,10198,1461361 +29478,234,1,50123,1232592 +29479,22,9,755,1851734 +29480,105,7,340488,54902 +29481,234,1,24273,5128 +29482,105,7,285860,1519919 +29483,317,10,73147,257575 +29484,204,9,19255,1325661 +29485,317,10,430058,81823 +29486,317,10,28384,1243 +29487,175,5,693,1537179 +29488,108,10,68139,148609 +29489,34,8,10344,1446202 +29490,234,1,105153,110347 +29491,373,7,9441,1425978 +29492,75,5,177677,1400081 +29493,317,10,52920,146873 +29494,413,11,308024,1435170 +29495,204,9,8842,1381336 +29496,53,2,82684,960323 +29497,234,1,549,7482 +29498,234,1,193,2380 +29499,277,3,70670,1586298 +29500,273,7,29161,1177363 +29501,360,3,15476,1392965 +29502,158,2,284564,1752046 +29503,3,5,20439,131198 +29504,387,10,61581,556752 +29505,190,7,203833,1338977 +29506,60,1,11202,8928 +29507,317,10,405388,1647202 +29508,204,9,28295,12346 +29509,5,10,273096,1187142 +29510,53,2,33613,1033481 +29511,269,9,14811,2657 +29512,22,9,755,1851736 +29513,182,8,197,1373728 +29514,52,10,38787,89602 +29515,387,10,31995,69513 +29516,127,3,345922,1723161 +29517,185,11,10204,1855067 +29518,250,11,302528,1640380 +29519,3,5,157117,1138330 +29520,158,2,180305,1453140 +29521,3,5,98066,19758 +29522,234,1,29979,57895 +29523,234,1,31067,3224 +29524,53,2,238589,61850 +29525,13,3,14019,76275 +29526,204,9,35032,9062 +29527,269,9,10865,66266 +29528,3,5,244403,1031598 +29529,286,3,75778,7492 +29530,244,3,32657,66513 +29531,234,1,40346,35452 +29532,234,1,110491,1049443 +29533,373,7,4248,928942 +29534,273,7,118640,50633 +29535,289,6,9297,1462678 +29536,317,10,149154,1068100 +29537,204,9,2758,16652 +29538,317,10,65759,59767 +29539,234,1,41996,125398 +29540,371,3,142402,1117116 +29541,3,5,1253,21655 +29542,413,11,47889,138322 +29543,37,3,70981,1457935 +29544,317,10,109439,57130 +29545,226,2,12171,1421262 +29546,387,10,141,1577 +29547,234,1,8071,53782 +29548,388,9,6171,1394942 +29549,413,11,10433,4869 +29550,234,1,308639,51866 +29551,317,10,36175,128476 +29552,273,7,204384,1492756 +29553,317,10,14527,107630 +29554,3,5,46931,137610 +29555,234,1,162458,149880 +29556,411,9,9836,167789 +29557,387,10,10391,51627 +29558,357,3,109424,1408386 +29559,3,5,49837,142885 +29560,148,9,30126,9587 +29561,244,3,74,1868839 +29562,53,2,121003,9064 +29563,269,9,34459,1204488 +29564,360,9,14676,1807330 +29565,398,9,132363,1407726 +29566,204,9,15019,1327443 +29567,105,7,47792,73647 +29568,234,1,230179,145228 +29569,203,1,13549,103806 +29570,204,9,106635,4125 +29571,187,11,11096,52193 +29572,3,5,11853,25212 +29573,182,8,10733,1397851 +29574,234,1,4955,40983 +29575,87,7,9472,1192700 +29576,3,5,27507,14569 +29577,175,5,55720,1172443 +29578,232,10,14510,27991 +29579,398,9,169,1401255 +29580,387,10,329819,40302 +29581,3,5,26430,93019 +29582,53,2,297853,1730751 +29583,181,7,57201,1545540 +29584,360,3,11351,1181954 +29585,3,5,30127,1799717 +29586,15,6,10567,1452932 +29587,387,10,11915,39138 +29588,203,1,28730,1400738 +29589,234,1,242,1776 +29590,64,6,57089,1460630 +29591,3,5,194,2423 +29592,3,5,279690,1485162 +29593,413,11,109477,1046587 +29594,269,9,9059,27156 +29595,52,10,87060,1269542 +29596,160,3,9426,200598 +29597,413,11,1890,3274 +29598,317,10,191068,100036 +29599,196,7,9902,85960 +29600,204,9,59231,32772 +29601,273,7,104041,68685 +29602,140,9,126889,1634558 +29603,269,9,44741,553860 +29604,204,9,10739,10576 +29605,333,2,13549,120367 +29606,234,1,127286,115677 +29607,207,3,62728,1389547 +29608,3,5,159727,959264 +29609,176,3,30449,1032373 +29610,75,5,75262,1130360 +29611,273,7,40218,38646 +29612,413,11,7237,52151 +29613,317,10,262945,8626 +29614,74,5,381015,1828343 +29615,317,10,380057,509193 +29616,387,10,72733,1108168 +29617,5,10,65599,78138 +29618,298,5,157424,1408175 +29619,317,10,187602,236535 +29620,45,9,16164,1526828 +29621,234,1,128557,103112 +29622,239,5,949,1347763 +29623,301,5,318922,1411672 +29624,387,10,333372,951553 +29625,234,1,353257,1494192 +29626,286,3,89242,20397 +29627,317,10,41604,66224 +29628,234,1,368051,1271448 +29629,289,6,257344,1473416 +29630,317,10,361183,1513957 +29631,5,10,678,10147 +29632,387,10,5924,11993 +29633,387,10,144471,10147 +29634,273,7,27035,26026 +29635,269,9,95536,5270 +29636,413,11,2046,7712 +29637,234,1,3423,20789 +29638,387,10,78265,30969 +29639,127,3,186869,1862940 +29640,75,5,2666,56786 +29641,217,3,214756,1453006 +29642,203,1,18098,1373729 +29643,346,3,49963,1407222 +29644,413,11,279598,1336138 +29645,273,7,72912,56352 +29646,317,10,270886,442985 +29647,273,7,413421,1785024 +29648,234,1,1819,19272 +29649,182,8,314065,1466259 +29650,3,5,2669,3454 +29651,160,3,273481,92486 +29652,273,7,180299,1185946 +29653,413,11,52556,1345408 +29654,34,8,69,1640492 +29655,234,1,32059,19969 +29656,273,7,13205,20897 +29657,3,5,36094,1095 +29658,349,1,53211,573543 +29659,187,11,47112,1536110 +29660,92,7,43594,1554080 +29661,317,10,185153,54443 +29662,273,7,11899,69343 +29663,203,1,341886,1573328 +29664,286,3,251227,1286553 +29665,175,5,45019,1183391 +29666,213,10,44238,45791 +29667,234,1,128241,1001595 +29668,188,8,29343,63943 +29669,3,5,86979,21516 +29670,387,10,383618,1579995 +29671,317,10,7514,52837 +29672,5,10,11007,67774 +29673,234,1,43083,129232 +29674,387,10,81522,3556 +29675,413,11,54384,150512 +29676,148,9,316654,1676032 +29677,204,9,5559,44126 +29678,52,10,111470,103688 +29679,234,1,191476,1444775 +29680,53,2,101669,1312174 +29681,317,10,45807,13953 +29682,269,9,118677,3429 +29683,317,10,40662,124280 +29684,75,5,26390,1407201 +29685,273,7,83714,1760 +29686,234,1,319179,94208 +29687,268,7,10391,1404841 +29688,181,7,10972,1534987 +29689,160,3,20312,1398932 +29690,371,3,12593,1458352 +29691,234,1,14565,65115 +29692,301,5,613,1377503 +29693,5,10,606,10635 +29694,269,9,3291,9967 +29695,269,9,251227,1286558 +29696,387,10,93935,16830 +29697,234,1,99934,29963 +29698,273,7,42288,117854 +29699,387,10,16643,11898 +29700,3,5,54690,1324904 +29701,269,9,84617,179923 +29702,234,1,13396,67268 +29703,269,9,2001,20569 +29704,234,1,809,5524 +29705,273,7,27259,4949 +29706,125,2,9882,1321372 +29707,239,5,375012,1733921 +29708,357,3,246655,1459922 +29709,413,11,10586,14339 +29710,234,1,257716,47061 +29711,269,9,1482,36186 +29712,234,1,10208,49903 +29713,333,2,28176,214170 +29714,72,11,2107,1672753 +29715,234,1,10991,65429 +29716,317,10,21343,87412 +29717,317,10,17971,57109 +29718,148,9,39436,101554 +29719,269,9,43596,1546258 +29720,287,3,857,1662342 +29721,413,11,36432,115353 +29722,52,10,16638,97183 +29723,273,7,4476,1729 +29724,234,1,29355,12964 +29725,226,2,436,1624059 +29726,104,7,4147,1546442 +29727,317,10,15745,15277 +29728,387,10,137357,9855 +29729,333,2,369406,1872423 +29730,287,3,341886,236529 +29731,333,2,280092,1548082 +29732,387,10,38724,30010 +29733,75,5,277713,1388898 +29734,75,5,22267,1402095 +29735,234,1,12311,72061 +29736,234,1,107262,13871 +29737,413,11,236395,127515 +29738,269,9,45610,1890 +29739,87,7,311324,52452 +29740,357,3,297762,1903913 +29741,317,10,73147,32297 +29742,387,10,44936,1401875 +29743,209,7,201085,1393452 +29744,3,5,9095,1301 +29745,3,5,175998,106502 +29746,210,9,4248,1667234 +29747,413,11,13075,1173410 +29748,148,9,202337,64339 +29749,77,10,16371,80452 +29750,3,5,19338,53290 +29751,394,7,46261,75151 +29752,105,7,38157,1235862 +29753,273,7,46247,229965 +29754,413,11,49110,1264 +29755,234,1,104485,3238 +29756,333,2,18,1434638 +29757,387,10,2982,7506 +29758,203,1,274504,1547361 +29759,269,9,381032,1287630 +29760,148,9,201749,1267834 +29761,387,10,10299,64802 +29762,166,9,635,1399990 +29763,234,1,152989,1133587 +29764,387,10,6522,52053 +29765,234,1,9815,59521 +29766,286,3,40879,1001798 +29767,3,5,46029,4376 +29768,3,5,977,10092 +29769,317,10,28061,99518 +29770,195,6,126889,1721454 +29771,387,10,9438,12991 +29772,3,5,340684,1472143 +29773,273,7,4380,32347 +29774,3,5,111470,17668 +29775,328,6,55534,1577961 +29776,269,9,14254,7236 +29777,234,1,338063,1461483 +29778,148,9,120747,13974 +29779,273,7,691,10468 +29780,52,10,51601,32993 +29781,262,6,220820,1405263 +29782,387,10,10727,20204 +29783,234,1,83015,14293 +29784,226,2,38404,120332 +29785,415,3,43441,10157 +29786,106,3,15653,1720172 +29787,208,2,102668,1031762 +29788,3,5,11313,33238 +29789,373,7,13075,1375099 +29790,269,9,598,8579 +29791,273,7,16005,24190 +29792,273,7,15788,3375 +29793,333,2,46261,1425359 +29794,289,6,12593,173626 +29795,234,1,42966,635017 +29796,387,10,457,6241 +29797,182,8,7916,1438623 +29798,234,1,59803,229735 +29799,314,2,2503,1406805 +29800,387,10,660,9952 +29801,317,10,218688,1154037 +29802,413,11,23830,10440 +29803,113,9,43809,1466973 +29804,413,11,43525,107683 +29805,387,10,96433,1484064 +29806,411,9,140607,1325211 +29807,75,5,337339,1408357 +29808,141,7,27259,1624490 +29809,37,3,49521,1463185 +29810,387,10,22584,4297 +29811,234,1,70404,128639 +29812,3,5,32044,30605 +29813,175,5,245692,1477785 +29814,200,3,315837,1797233 +29815,3,5,42502,1071752 +29816,333,2,62046,1069869 +29817,387,10,1595,17845 +29818,92,7,110980,117579 +29819,209,7,240832,1363868 +29820,97,7,11607,1338831 +29821,234,1,46128,134945 +29822,311,9,11377,110697 +29823,148,9,109391,1567979 +29824,273,7,35921,11441 +29825,286,3,18045,4578 +29826,5,10,74527,88974 +29827,333,2,276906,1331180 +29828,234,1,35392,26959 +29829,127,3,263115,1377042 +29830,105,7,422005,228402 +29831,148,9,76651,41011 +29832,234,1,66966,37770 +29833,200,3,102382,1399304 +29834,273,7,7549,12455 +29835,234,1,190883,100036 +29836,286,3,54102,55409 +29837,3,5,46924,7021 +29838,317,10,58011,24658 +29839,333,2,246655,1753720 +29840,234,1,221171,1084403 +29841,373,7,21742,94243 +29842,361,3,157117,533061 +29843,234,1,344255,88040 +29844,333,2,98277,1017277 +29845,234,1,4459,26134 +29846,415,3,638,9460 +29847,360,3,163791,1601456 +29848,234,1,31162,107720 +29849,273,7,98586,1074193 +29850,387,10,17692,12415 +29851,269,9,69668,8315 +29852,317,10,292014,231437 +29853,234,1,44282,935102 +29854,286,3,142989,1118140 +29855,405,8,310568,1598444 +29856,141,7,263115,549349 +29857,148,9,241574,12348 +29858,200,3,14979,1458996 +29859,234,1,174925,8636 +29860,234,1,440777,1754586 +29861,97,7,345922,1357060 +29862,99,3,12273,1110992 +29863,5,10,2757,27887 +29864,5,10,42703,30507 +29865,234,1,131897,225140 +29866,387,10,36421,91027 +29867,333,2,896,1559099 +29868,413,11,11449,14339 +29869,234,1,14885,92694 +29870,234,1,43775,72647 +29871,204,9,259728,1301992 +29872,413,11,187596,69670 +29873,203,1,15661,1526512 +29874,60,1,413421,1785015 +29875,234,1,8985,133873 +29876,289,6,67130,564040 +29877,387,10,140883,84956 +29878,160,3,42309,77623 +29879,269,9,140607,411385 +29880,270,9,10865,1552865 +29881,104,7,12591,1560784 +29882,317,10,351901,1348063 +29883,234,1,116463,76021 +29884,317,10,369033,120669 +29885,286,3,15476,1189796 +29886,413,11,21567,101867 +29887,179,2,30583,572059 +29888,28,9,2105,1552168 +29889,317,10,274990,11916 +29890,413,11,4133,32796 +29891,269,9,9042,16595 +29892,413,11,43095,554322 +29893,3,5,115054,9103 +29894,273,7,887,13571 +29895,234,1,356862,1385608 +29896,394,7,333663,1421647 +29897,3,5,2897,14726 +29898,209,7,11017,1417018 +29899,360,3,45019,1550217 +29900,77,10,403,5697 +29901,333,2,44943,1552365 +29902,269,9,222858,1341759 +29903,317,10,113178,168424 +29904,152,2,169,1435071 +29905,328,6,12113,42291 +29906,52,10,40998,78747 +29907,373,7,9543,579405 +29908,234,1,39495,8482 +29909,196,7,10727,1408301 +29910,234,1,273743,1331465 +29911,52,10,290764,66824 +29912,234,1,40373,125543 +29913,87,7,80389,113844 +29914,305,9,62728,1896009 +29915,387,10,21619,87720 +29916,5,10,42453,1075151 +29917,413,11,74395,65326 +29918,148,9,209263,10958 +29919,135,3,755,1897881 +29920,273,7,34935,47927 +29921,273,7,75532,4416 +29922,105,7,36785,67826 +29923,234,1,44398,37360 +29924,333,2,16358,1435688 +29925,387,10,31596,1885595 +29926,234,1,441043,1755724 +29927,46,5,408381,1657561 +29928,234,1,15934,78997 +29929,317,10,899,100036 +29930,269,9,2100,19046 +29931,269,9,84355,1053991 +29932,317,10,401222,998227 +29933,387,10,18783,89084 +29934,234,1,97051,543842 +29935,234,1,46992,26481 +29936,234,1,110323,18209 +29937,269,9,117999,14879 +29938,226,2,53949,1543603 +29939,317,10,99599,69831 +29940,413,11,20473,36166 +29941,317,10,80988,27437 +29942,167,3,7220,1410119 +29943,203,1,74430,1204798 +29944,413,11,121636,68645 +29945,333,2,14126,1146968 +29946,273,7,10201,937146 +29947,302,9,11024,1391672 +29948,273,7,7088,51939 +29949,234,1,113273,102109 +29950,317,10,150201,1664403 +29951,317,10,23239,108022 +29952,79,7,20623,231357 +29953,234,1,15037,13615 +29954,296,3,9593,1355527 +29955,204,9,120747,1132129 +29956,289,6,24238,1454659 +29957,317,10,161243,1143482 +29958,5,10,11593,56566 +29959,413,11,9541,19303 +29960,317,10,10475,4834 +29961,413,11,52637,81744 +29962,105,7,2115,5132 +29963,269,9,252680,66532 +29964,18,2,2300,1484706 +29965,286,3,33315,110347 +29966,413,11,103433,1019507 +29967,413,11,274483,1367022 +29968,113,9,23730,1534435 +29969,175,5,3682,1183452 +29970,273,7,436,5882 +29971,148,9,38404,4104 +29972,182,8,47386,138790 +29973,317,10,145194,22323 +29974,52,10,111042,1050989 +29975,234,1,28273,95501 +29976,162,6,11024,1550186 +29977,234,1,107811,52114 +29978,387,10,26889,102445 +29979,317,10,28519,1255 +29980,3,5,20242,19129 +29981,387,10,299,4357 +29982,273,7,130055,1810565 +29983,234,1,35337,133420 +29984,53,2,10900,61129 +29985,226,2,9358,1314457 +29986,3,5,180635,9081 +29987,180,7,43009,4315 +29988,208,2,15,4352 +29989,234,1,238,1776 +29990,148,9,16358,1329558 +29991,269,9,55534,957129 +29992,394,7,14126,2688 +29993,317,10,417870,1229796 +29994,64,6,24831,64875 +29995,234,1,335340,24298 +29996,226,2,4982,1410208 +29997,273,7,214756,1071607 +29998,317,10,59408,1285994 +29999,148,9,361018,1792334 +30000,105,7,140814,1113454 +30001,317,10,66966,34822 +30002,413,11,316042,19953 +30003,234,1,104644,12846 +30004,329,3,201085,1455728 +30005,387,10,5881,46281 +30006,208,2,205587,1415333 +30007,234,1,13225,74300 +30008,197,5,230179,1780162 +30009,317,10,18044,102752 +30010,413,11,11658,1296341 +30011,208,2,196359,1547655 +30012,413,11,69,433 +30013,373,7,1966,1398096 +30014,413,11,1377,16751 +30015,234,1,11607,35475 +30016,204,9,300596,1449757 +30017,413,11,43441,109414 +30018,60,1,37581,1583006 +30019,269,9,300487,1676935 +30020,317,10,71266,1264306 +30021,234,1,158483,608 +30022,317,10,78373,77919 +30023,20,2,140607,1546747 +30024,273,7,108222,8503 +30025,413,11,188826,1474655 +30026,317,10,246218,199199 +30027,204,9,128412,1489480 +30028,234,1,42453,5834 +30029,234,1,8211,8721 +30030,60,1,6443,1683617 +30031,46,5,703,1546904 +30032,317,10,421365,1373888 +30033,273,7,8144,53946 +30034,413,11,241254,13673 +30035,387,10,13823,61 +30036,269,9,352164,1611037 +30037,273,7,22029,133583 +30038,306,7,218778,1412228 +30039,175,5,12102,1675231 +30040,148,9,98364,17670 +30041,373,7,89492,1387195 +30042,53,2,246422,1165763 +30043,234,1,10235,9603 +30044,148,9,49308,1351615 +30045,317,10,61581,31852 +30046,3,5,84397,33413 +30047,333,2,74437,4352 +30048,317,10,43987,90470 +30049,158,2,126889,1746455 +30050,234,1,209921,1193464 +30051,262,6,2567,1402031 +30052,3,5,11972,37988 +30053,234,1,149232,1128542 +30054,108,10,39130,144060 +30055,415,3,19545,18602 +30056,105,7,32331,62053 +30057,413,11,242,3274 +30058,52,10,59962,132315 +30059,234,1,41823,5281 +30060,415,3,3035,117709 +30061,3,5,28663,14284 +30062,209,7,76757,1400088 +30063,413,11,65545,1499289 +30064,325,5,43491,1498 +30065,226,2,9846,1411166 +30066,269,9,21159,91794 +30067,287,3,85160,9424 +30068,234,1,33297,19161 +30069,234,1,138308,94096 +30070,234,1,162442,20658 +30071,317,10,400174,19741 +30072,204,9,188927,61177 +30073,273,7,317214,1531207 +30074,203,1,227306,1425397 +30075,234,1,9475,769 +30076,387,10,122857,62941 +30077,234,1,34582,7736 +30078,413,11,11330,69024 +30079,234,1,209413,128107 +30080,3,5,17577,33618 +30081,3,5,47342,1214 +30082,387,10,30644,106663 +30083,234,1,135799,1096814 +30084,148,9,237584,1621360 +30085,385,6,924,1551676 +30086,149,6,14317,1356774 +30087,148,9,79521,1137341 +30088,203,1,18093,1558018 +30089,357,3,341174,1720783 +30090,234,1,9507,4782 +30091,413,11,203217,557584 +30092,234,1,91679,118415 +30093,167,3,116463,1691492 +30094,25,2,321303,1595171 +30095,289,6,18939,133555 +30096,196,7,2503,14764 +30097,234,1,260584,1111244 +30098,277,7,445993,1808044 +30099,317,10,62320,20432 +30100,239,5,384737,1394577 +30101,269,9,4913,198641 +30102,234,1,82654,56661 +30103,92,7,50350,49504 +30104,3,5,17962,25646 +30105,273,7,194722,129782 +30106,3,5,39407,14284 +30107,234,1,140887,976028 +30108,3,5,20438,32603 +30109,273,7,68715,51808 +30110,3,5,22897,2483 +30111,3,5,24212,7386 +30112,97,7,61341,1338239 +30113,317,10,118195,52121 +30114,226,2,17144,1436532 +30115,204,9,283995,1182906 +30116,413,11,16096,16534 +30117,387,10,43384,46620 +30118,234,1,3051,18669 +30119,387,10,26946,52140 +30120,394,7,354859,40141 +30121,148,9,11855,1522775 +30122,196,7,176124,1550236 +30123,373,7,245891,1435642 +30124,387,10,11537,69769 +30125,162,6,8840,7727 +30126,415,3,52661,1588035 +30127,386,5,274857,1429639 +30128,328,6,435,1392100 +30129,105,7,122928,1308227 +30130,53,2,10594,22819 +30131,413,11,1481,75139 +30132,53,2,54660,8885 +30133,413,11,10696,11876 +30134,204,9,204802,1593014 +30135,234,1,296626,79392 +30136,317,10,40793,27 +30137,413,11,14072,35773 +30138,208,2,965,4352 +30139,204,9,39428,1890 +30140,162,6,40761,29639 +30141,204,9,44190,4349 +30142,413,11,174769,109414 +30143,294,3,392271,1765179 +30144,141,7,78461,68016 +30145,97,7,374473,1079085 +30146,75,5,10929,1400374 +30147,369,6,12,7972 +30148,262,6,75622,1336716 +30149,249,7,8053,1708863 +30150,180,7,43978,100011 +30151,204,9,9785,65812 +30152,269,9,170759,1153034 +30153,273,7,171337,230410 +30154,273,7,43117,14356 +30155,388,9,9902,1436500 +30156,289,6,291270,1455705 +30157,60,1,14029,87680 +30158,173,7,92321,144665 +30159,49,7,366696,1769384 +30160,250,11,13483,1402079 +30161,273,7,34729,1018739 +30162,200,3,100669,1632799 +30163,317,10,45714,12415 +30164,317,10,24094,1313050 +30165,387,10,56943,125717 +30166,371,3,206574,1339122 +30167,234,1,13792,75558 +30168,139,3,49514,18897 +30169,187,11,10804,1776973 +30170,317,10,125736,120312 +30171,203,1,24657,1640413 +30172,333,2,10389,1437884 +30173,234,1,213842,40007 +30174,234,1,32604,41040 +30175,226,2,9358,1441271 +30176,269,9,308024,1417312 +30177,340,2,71668,1419923 +30178,125,2,375366,1740798 +30179,413,11,94727,1840038 +30180,127,3,961,8635 +30181,196,7,435,957495 +30182,204,9,82679,928528 +30183,317,10,14295,30711 +30184,97,7,2675,1340318 +30185,234,1,84249,935866 +30186,147,1,3059,90074 +30187,333,2,7326,1441272 +30188,105,7,221732,1537405 +30189,317,10,20536,198764 +30190,3,5,74911,132535 +30191,32,8,10066,1864796 +30192,226,2,329440,1590441 +30193,198,6,312221,1580877 +30194,141,7,8916,1780712 +30195,415,3,2731,16369 +30196,234,1,4809,33064 +30197,413,11,244316,1415077 +30198,234,1,107052,227311 +30199,53,2,245692,1574449 +30200,317,10,8144,53945 +30201,415,3,128412,1489485 +30202,53,2,223485,15589 +30203,234,1,94820,1003235 +30204,234,1,28917,439236 +30205,3,5,186869,1835566 +30206,21,3,40229,152347 +30207,317,10,36243,550581 +30208,83,2,2662,1593980 +30209,148,9,1595,17850 +30210,234,1,362026,121614 +30211,203,1,16899,1436238 +30212,413,11,1427,1851 +30213,262,6,375366,1264547 +30214,289,6,29192,1455618 +30215,148,9,178587,31205 +30216,221,3,9352,1586382 +30217,182,8,302026,1570593 +30218,64,6,43117,100762 +30219,64,6,16090,1027339 +30220,188,8,378441,1797463 +30221,5,10,2241,36415 +30222,269,9,38920,29769 +30223,148,9,10671,2118 +30224,387,10,10524,68370 +30225,387,10,62034,138209 +30226,179,2,333371,1636660 +30227,60,1,18079,989512 +30228,208,2,127521,32773 +30229,204,9,126889,1391711 +30230,97,7,9928,92376 +30231,148,9,786,8274 +30232,234,1,57203,42309 +30233,209,7,194,2425 +30234,413,11,2029,20857 +30235,234,1,382951,15358 +30236,387,10,37308,18592 +30237,256,3,1966,1733757 +30238,395,3,129,1456616 +30239,412,9,755,1851729 +30240,387,10,231176,120128 +30241,301,5,11472,1377132 +30242,75,5,75174,131037 +30243,304,10,11572,55119 +30244,53,2,205724,64314 +30245,3,5,1251,460 +30246,182,8,356752,1352360 +30247,398,9,544,1775940 +30248,204,9,66113,1317650 +30249,200,3,332567,1644259 +30250,204,9,18190,7733 +30251,387,10,120,128 +30252,269,9,72207,141301 +30253,232,10,32275,86404 +30254,52,10,41611,67688 +30255,234,1,14609,34920 +30256,179,2,10727,1418312 +30257,200,3,9358,143924 +30258,234,1,257116,158081 +30259,148,9,224,7098 +30260,5,10,4993,1091870 +30261,160,3,954,10976 +30262,317,10,15037,13615 +30263,147,1,263115,1821870 +30264,234,1,265741,74566 +30265,234,1,52264,145675 +30266,373,7,15613,1378226 +30267,52,10,25855,94268 +30268,234,1,60316,83784 +30269,164,3,333352,1539775 +30270,413,11,111302,1091311 +30271,234,1,387957,197209 +30272,325,5,9426,1445984 +30273,387,10,40879,124909 +30274,234,1,44773,88134 +30275,388,9,14,1651183 +30276,333,2,47536,1001014 +30277,317,10,34869,113337 +30278,196,7,9441,1400906 +30279,276,6,244,3484 +30280,234,1,39982,57239 +30281,169,3,263115,1821889 +30282,398,9,1579,1400332 +30283,387,10,57201,1706 +30284,58,2,705,26172 +30285,64,6,54318,1447543 +30286,53,2,9659,1466395 +30287,262,6,395992,1770991 +30288,269,9,393732,1382491 +30289,273,7,41402,15347 +30290,387,10,89492,41039 +30291,317,10,98203,1084987 +30292,226,2,16358,9337 +30293,52,10,17074,1211813 +30294,234,1,413232,148559 +30295,413,11,2087,3987 +30296,387,10,258363,1003190 +30297,200,3,177677,1417820 +30298,102,3,9042,1409242 +30299,273,7,18557,453500 +30300,234,1,41427,126437 +30301,208,2,145135,1317667 +30302,273,7,16417,69101 +30303,289,6,26954,1353148 +30304,5,10,78571,1041540 +30305,413,11,44458,64490 +30306,52,10,36751,116105 +30307,204,9,340101,1535968 +30308,53,2,403431,1357588 +30309,289,6,9514,1642599 +30310,203,1,13954,1398881 +30311,203,1,10632,1371069 +30312,269,9,476,6391 +30313,234,1,7234,52121 +30314,239,5,16997,1583180 +30315,204,9,16374,1470203 +30316,234,1,31128,30689 +30317,374,8,405473,1800063 +30318,413,11,241258,66740 +30319,97,7,267579,1578991 +30320,234,1,85633,142594 +30321,3,5,12636,72825 +30322,5,10,42216,1373180 +30323,53,2,271718,1488219 +30324,204,9,26811,1179040 +30325,127,3,105059,389763 +30326,148,9,14869,41898 +30327,413,11,43395,5841 +30328,234,1,326723,1430116 +30329,226,2,12783,1427495 +30330,3,5,150065,67356 +30331,234,1,379297,6198 +30332,317,10,259830,1354490 +30333,143,7,21135,1626009 +30334,314,2,177677,1428911 +30335,250,11,278632,1432640 +30336,148,9,71805,1644927 +30337,218,1,198652,1877444 +30338,269,9,333371,66491 +30339,209,7,22803,1345268 +30340,317,10,211166,1372715 +30341,317,10,2015,1278182 +30342,269,9,12594,136911 +30343,273,7,8619,65044 +30344,204,9,40998,961268 +30345,387,10,96716,1010114 +30346,3,5,16428,27154 +30347,234,1,154671,105113 +30348,67,10,14128,1726803 +30349,119,7,9028,45670 +30350,269,9,29805,6584 +30351,203,1,118957,1402906 +30352,317,10,29272,1276268 +30353,203,1,134394,1513865 +30354,105,7,39130,29967 +30355,25,2,62728,1332186 +30356,234,1,189197,21206 +30357,113,9,4413,1406596 +30358,234,1,190876,1024246 +30359,317,10,89751,16417 +30360,148,9,211144,1457482 +30361,291,6,11618,14460 +30362,209,7,540,42230 +30363,317,10,17725,122591 +30364,182,8,280092,1437197 +30365,204,9,24405,1468127 +30366,169,3,10145,1446681 +30367,398,9,8204,1725886 +30368,413,11,17136,51767 +30369,53,2,8882,72774 +30370,289,6,10539,1454755 +30371,97,7,127380,1116937 +30372,286,3,297814,1155986 +30373,234,1,322266,583932 +30374,234,1,99567,13340 +30375,226,2,58,1424894 +30376,317,10,37820,1155073 +30377,160,3,10391,72117 +30378,234,1,88794,190 +30379,3,5,329809,6316 +30380,78,3,109439,1868250 +30381,413,11,38150,2070 +30382,53,2,18093,958675 +30383,387,10,5955,46812 +30384,20,2,395992,1769915 +30385,200,3,206647,1459899 +30386,148,9,75,555 +30387,105,7,97088,28055 +30388,277,3,24657,1640416 +30389,387,10,10733,2945 +30390,213,10,34106,19019 +30391,204,9,26405,1479445 +30392,234,1,27036,51000 +30393,273,7,21191,55177 +30394,204,9,21451,8622 +30395,273,7,23730,959 +30396,166,9,10008,1399557 +30397,413,11,46872,30412 +30398,5,10,357390,1503510 +30399,292,3,116463,1691493 +30400,148,9,14137,1538936 +30401,262,6,4248,1393390 +30402,204,9,24739,10365 +30403,204,9,98339,1318448 +30404,234,1,88285,13015 +30405,328,6,19995,1401789 +30406,317,10,228558,1265622 +30407,102,3,36658,1551659 +30408,53,2,3549,6797 +30409,204,9,12594,1181130 +30410,273,7,10303,7066 +30411,333,2,329865,1646477 +30412,52,10,10020,1033844 +30413,75,5,44655,1541519 +30414,321,11,14430,1521658 +30415,273,7,76871,20075 +30416,250,11,225285,1431151 +30417,273,7,135718,88593 +30418,333,2,4011,406204 +30419,234,1,283445,145142 +30420,269,9,39056,1575288 +30421,53,2,289,1200492 +30422,292,3,8470,1598747 +30423,317,10,56934,225231 +30424,413,11,293082,1592 +30425,317,10,382597,1711268 +30426,239,5,336050,1558578 +30427,196,7,340275,1406898 +30428,155,3,378441,1797516 +30429,289,6,12593,1458334 +30430,413,11,101998,72834 +30431,3,5,14435,47102 +30432,413,11,199602,1179773 +30433,3,5,71051,1681854 +30434,413,11,284288,1287324 +30435,413,11,63139,62813 +30436,413,11,36968,68127 +30437,413,11,131966,1842849 +30438,132,2,311324,1540833 +30439,175,5,106020,1588545 +30440,234,1,100669,104876 +30441,5,10,25335,1194869 +30442,182,8,511,1609616 +30443,387,10,147876,88579 +30444,269,9,15613,25550 +30445,413,11,8072,3526 +30446,61,7,10066,1482837 +30447,175,5,10950,589974 +30448,234,1,300210,544960 +30449,52,10,153169,148415 +30450,3,5,65599,1038285 +30451,234,1,183962,32940 +30452,413,11,138308,64118 +30453,204,9,20842,1263352 +30454,53,2,73896,14493 +30455,234,1,381073,1572172 +30456,234,1,109979,1047948 +30457,273,7,43497,16748 +30458,317,10,440767,131133 +30459,169,3,2662,91893 +30460,3,5,56292,2950 +30461,317,10,340215,1630270 +30462,234,1,413644,76100 +30463,234,1,415072,32176 +30464,387,10,6163,2123 +30465,74,5,181533,1829852 +30466,234,1,83223,45672 +30467,317,10,2993,98776 +30468,413,11,52782,3602 +30469,234,1,55632,57328 +30470,413,11,21159,19409 +30471,234,1,81477,8333 +30472,108,10,225728,6210 +30473,234,1,134732,85777 +30474,286,3,122662,1173423 +30475,413,11,85640,22096 +30476,289,6,9514,1642604 +30477,413,11,12707,18651 +30478,52,10,43752,118289 +30479,286,3,36672,1515643 +30480,328,6,8247,1465860 +30481,376,10,211088,230426 +30482,317,10,120854,1072793 +30483,234,1,17111,81252 +30484,306,7,338189,1559674 +30485,398,9,7220,223243 +30486,22,9,9902,1600617 +30487,208,2,294254,1269676 +30488,167,3,3172,1553253 +30489,269,9,10198,1615556 +30490,413,11,25473,4167 +30491,269,9,18273,4236 +30492,413,11,5516,1224 +30493,226,2,8467,18786 +30494,3,5,128364,6570 +30495,234,1,125541,589264 +30496,234,1,118737,1088681 +30497,234,1,2924,6159 +30498,235,5,44943,1403413 +30499,234,1,16560,14692 +30500,286,3,45556,1077423 +30501,234,1,125021,8403 +30502,77,10,9843,59861 +30503,317,10,61984,234646 +30504,160,3,12103,1398932 +30505,317,10,8467,7395 +30506,387,10,10659,57852 +30507,317,10,39053,45407 +30508,325,5,9568,22143 +30509,317,10,41097,125457 +30510,53,2,53860,32442 +30511,317,10,14052,56980 +30512,3,5,8332,8194 +30513,269,9,95627,2867 +30514,12,10,24554,71446 +30515,209,7,10796,1552479 +30516,60,1,52270,1534174 +30517,317,10,44801,57396 +30518,317,10,129383,225738 +30519,413,11,66125,3050 +30520,113,9,4887,1425028 +30521,273,7,41035,30137 +30522,317,10,133715,543946 +30523,387,10,128669,30171 +30524,269,9,1655,11604 +30525,105,7,24625,10771 +30526,234,1,170677,201439 +30527,413,11,10396,11880 +30528,298,5,99861,1494209 +30529,234,1,2029,20849 +30530,53,2,19142,1808567 +30531,383,3,4147,1558205 +30532,3,5,39219,3148 +30533,11,6,35,1229003 +30534,53,2,345922,21004 +30535,12,10,10198,1447499 +30536,387,10,134397,1098984 +30537,234,1,63194,95568 +30538,287,3,17796,671520 +30539,413,11,10783,2988 +30540,175,5,16997,1583177 +30541,303,3,25941,1558417 +30542,394,7,257088,83090 +30543,413,11,13205,172733 +30544,234,1,108648,128029 +30545,387,10,125300,536904 +30546,269,9,44458,550956 +30547,269,9,323674,1285855 +30548,234,1,243683,1278722 +30549,196,7,2675,1377222 +30550,3,5,11535,51981 +30551,327,7,11024,1405382 +30552,196,7,15472,1283379 +30553,234,1,245324,18415 +30554,234,1,201749,18903 +30555,269,9,206563,8579 +30556,373,7,218778,9409 +30557,105,7,13827,53017 +30558,234,1,39230,79737 +30559,75,5,36094,1535319 +30560,90,3,9946,1400337 +30561,3,5,83430,1008073 +30562,53,2,23730,1534434 +30563,273,7,296941,1457042 +30564,415,3,167073,1194075 +30565,204,9,381518,1318520 +30566,204,9,94348,1328412 +30567,373,7,222935,1726774 +30568,415,3,935,1532767 +30569,273,7,2100,2887 +30570,72,11,7326,1536560 +30571,387,10,125413,165130 +30572,387,10,91583,100980 +30573,262,6,26390,1364100 +30574,108,10,86297,149075 +30575,234,1,52452,146006 +30576,317,10,159824,1003944 +30577,317,10,20107,85818 +30578,64,6,118,1855229 +30579,234,1,414977,1342601 +30580,317,10,179105,22239 +30581,236,8,12103,1625927 +30582,314,2,337339,1633457 +30583,234,1,41078,125403 +30584,273,7,25645,1341 +30585,182,8,100669,1421794 +30586,387,10,13682,85914 +30587,53,2,296524,1023713 +30588,387,10,362057,64785 +30589,413,11,408755,1660967 +30590,387,10,241254,75920 +30591,333,2,114790,1268500 +30592,204,9,260001,1174107 +30593,327,7,10909,1387541 +30594,262,6,44943,1397846 +30595,190,7,413762,1811618 +30596,108,10,53857,1041606 +30597,147,1,3059,93905 +30598,401,6,10198,1450357 +30599,3,5,44129,151 +30600,52,10,104083,84939 +30601,413,11,9889,7414 +30602,234,1,14782,63550 +30603,413,11,399612,1143013 +30604,413,11,96888,1129262 +30605,333,2,339403,1314463 +30606,269,9,230179,48913 +30607,413,11,5544,44019 +30608,413,11,4134,28217 +30609,3,5,11509,1527 +30610,52,10,99324,147010 +30611,269,9,44936,1432707 +30612,234,1,48967,24264 +30613,273,7,6977,1225 +30614,234,1,55370,15389 +30615,333,2,240832,1412911 +30616,3,5,197177,30658 +30617,387,10,89008,1105486 +30618,413,11,156711,967482 +30619,286,3,294690,63477 +30620,196,7,10727,1414178 +30621,204,9,158908,1399965 +30622,190,7,170279,1665952 +30623,317,10,114719,941809 +30624,3,5,358982,1507500 +30625,203,1,58428,1407902 +30626,182,8,98277,1849146 +30627,235,5,85414,1289568 +30628,105,7,95516,1148096 +30629,412,9,31947,1896603 +30630,234,1,43209,57274 +30631,175,5,27259,76593 +30632,413,11,4893,40355 +30633,413,11,13526,10853 +30634,273,7,2453,27007 +30635,28,9,74,1096860 +30636,60,1,10178,13862 +30637,286,3,57011,1328773 +30638,234,1,70489,173686 +30639,317,10,86118,932909 +30640,413,11,459,6245 +30641,413,11,102629,995407 +30642,234,1,15316,17051 +30643,75,5,66193,1402535 +30644,234,1,11798,70520 +30645,387,10,6440,5308 +30646,52,10,28663,1263915 +30647,169,3,47342,138632 +30648,53,2,65904,1690331 +30649,269,9,7972,12637 +30650,269,9,445,6032 +30651,239,5,3063,545526 +30652,234,1,172008,225893 +30653,234,1,19506,70103 +30654,273,7,109716,3249 +30655,169,3,123109,1820651 +30656,387,10,38359,562603 +30657,387,10,166904,133433 +30658,234,1,9539,59611 +30659,333,2,13614,1610056 +30660,413,11,11004,6453 +30661,317,10,365340,570753 +30662,53,2,53766,8826 +30663,317,10,88176,590605 +30664,269,9,42149,13304 +30665,234,1,311764,1422143 +30666,387,10,5201,42062 +30667,176,3,41213,1777250 +30668,208,2,140607,11298 +30669,286,3,27019,1360050 +30670,413,11,26378,113571 +30671,396,3,333484,1442117 +30672,166,9,18,1440806 +30673,13,3,41213,1777264 +30674,234,1,134201,101767 +30675,328,6,2567,1402029 +30676,273,7,52520,2214 +30677,234,1,28973,13848 +30678,317,10,138372,60148 +30679,245,3,88273,1727716 +30680,148,9,46145,22089 +30681,77,10,1678,18598 +30682,304,10,130544,1091592 +30683,317,10,36463,109704 +30684,387,10,407887,78866 +30685,352,3,226140,1377421 +30686,387,10,24405,71235 +30687,387,10,175171,196198 +30688,317,10,358982,1507498 +30689,77,10,31532,413187 +30690,3,5,171213,69547 +30691,234,1,32275,29962 +30692,53,2,13848,1422996 +30693,234,1,17681,88623 +30694,53,2,47238,1599051 +30695,3,5,332872,104 +30696,160,3,73198,1393447 +30697,3,5,374475,5751 +30698,234,1,21181,79096 +30699,405,8,435,1406106 +30700,204,9,28001,8622 +30701,75,5,9893,1559512 +30702,317,10,13539,58644 +30703,45,9,70981,1390344 +30704,53,2,1589,971882 +30705,187,11,13954,1398871 +30706,226,2,10364,138639 +30707,148,9,36489,30839 +30708,317,10,33344,54050 +30709,5,10,66125,18845 +30710,190,7,664,568641 +30711,190,7,623,8942 +30712,208,2,243568,9617 +30713,327,7,17209,1367666 +30714,273,7,1721,18836 +30715,413,11,7006,27226 +30716,3,5,28564,14569 +30717,203,1,145135,1396984 +30718,289,6,29233,173622 +30719,234,1,26761,8823 +30720,273,7,2966,12633 +30721,148,9,7340,6880 +30722,97,7,329865,1497556 +30723,234,1,43849,32427 +30724,273,7,9396,3048 +30725,175,5,11593,1183452 +30726,387,10,105059,1683116 +30727,234,1,252874,1288247 +30728,105,7,59066,7732 +30729,415,3,29345,1825844 +30730,66,11,122019,1637913 +30731,373,7,12113,1399141 +30732,226,2,9532,1441238 +30733,154,3,31411,29965 +30734,234,1,13834,37152 +30735,52,10,101325,113233 +30736,209,7,273481,1072607 +30737,160,3,693,142157 +30738,333,2,10096,1302619 +30739,387,10,1452,11012 +30740,269,9,8342,1596590 +30741,148,9,55563,1149269 +30742,234,1,4938,40199 +30743,286,3,139582,110856 +30744,387,10,152570,148431 +30745,413,11,351211,38698 +30746,187,11,59962,1342656 +30747,203,1,66113,1425397 +30748,158,2,296524,1729036 +30749,273,7,229182,9204 +30750,83,2,354287,1459856 +30751,387,10,13616,67564 +30752,269,9,60269,1605168 +30753,413,11,31472,30418 +30754,3,5,44641,1129 +30755,39,3,8470,1598753 +30756,273,7,10937,58154 +30757,77,10,106848,6210 +30758,387,10,20644,117720 +30759,234,1,336050,1454941 +30760,273,7,18447,4082 +30761,286,3,327225,1432556 +30762,160,3,241254,84876 +30763,12,10,1450,16137 +30764,333,2,19719,85110 +30765,317,10,38742,13953 +30766,234,1,255913,83967 +30767,143,7,88273,1350222 +30768,204,9,48136,1461988 +30769,273,7,15267,4140 +30770,234,1,26880,6759 +30771,413,11,11171,19224 +30772,204,9,99261,1035044 +30773,270,9,1579,1400333 +30774,64,6,66881,102339 +30775,204,9,203321,1402090 +30776,413,11,231762,1267018 +30777,53,2,28739,964601 +30778,387,10,50318,944511 +30779,187,11,310888,1340099 +30780,413,11,12128,71384 +30781,381,9,76163,1437697 +30782,5,10,290316,1140274 +30783,415,3,21032,1457635 +30784,204,9,2611,11508 +30785,148,9,240745,1428830 +30786,244,3,359412,1404191 +30787,148,9,208091,1193911 +30788,371,3,107073,1481513 +30789,5,10,199463,91417 +30790,203,1,166221,1496661 +30791,176,3,28178,1532070 +30792,53,2,159095,1300066 +30793,413,11,33673,41144 +30794,250,11,6972,1401741 +30795,75,5,366045,1830747 +30796,204,9,98066,1759302 +30797,317,10,20361,71105 +30798,317,10,99642,567750 +30799,317,10,273202,1581908 +30800,3,5,61985,33174 +30801,175,5,31947,1395275 +30802,204,9,297762,1427500 +30803,317,10,347106,993929 +30804,387,10,9464,22461 +30805,317,10,306199,91609 +30806,387,10,103758,72767 +30807,200,3,76757,1421648 +30808,387,10,26949,589662 +30809,161,6,329865,1646591 +30810,75,5,9514,1642520 +30811,204,9,14372,14349 +30812,234,1,12538,58448 +30813,277,7,118,1855218 +30814,45,9,10008,1334504 +30815,327,7,193893,1379961 +30816,304,10,85052,1264504 +30817,53,2,31509,1562888 +30818,317,10,424643,1704787 +30819,141,7,87827,68016 +30820,234,1,60422,96172 +30821,317,10,31911,130700 +30822,209,7,6972,117235 +30823,333,2,43875,4352 +30824,317,10,322443,1615074 +30825,53,2,116312,972 +30826,234,1,125990,83467 +30827,415,3,378441,1529009 +30828,148,9,42472,4311 +30829,387,10,65881,1191477 +30830,3,5,42619,8217 +30831,5,10,42179,144295 +30832,158,2,41283,1424701 +30833,415,3,1942,18759 +30834,127,3,9717,1007395 +30835,3,5,14878,1193984 +30836,204,9,16358,11374 +30837,203,1,4248,1478934 +30838,234,1,52705,3776 +30839,360,3,1125,1413090 +30840,317,10,178341,81166 +30841,234,1,217802,89914 +30842,182,8,170759,48522 +30843,209,7,72105,1555208 +30844,273,7,299,4360 +30845,53,2,1369,798 +30846,317,10,363479,1057526 +30847,317,10,162006,115934 +30848,413,11,57683,55178 +30849,53,2,36635,8717 +30850,234,1,205724,1204338 +30851,413,11,261112,1143773 +30852,269,9,9675,35512 +30853,203,1,18273,1538942 +30854,413,11,178341,29997 +30855,234,1,300690,1427685 +30856,413,11,277237,1512677 +30857,387,10,73262,568692 +30858,200,3,127585,1412756 +30859,234,1,8816,5306 +30860,127,3,52661,1745148 +30861,387,10,8588,55408 +30862,413,11,87587,935267 +30863,52,10,21566,113671 +30864,53,2,9815,59533 +30865,373,7,258251,148221 +30866,387,10,97618,1384961 +30867,373,7,12171,117232 +30868,97,7,638,9445 +30869,269,9,8247,8678 +30870,273,7,38775,18593 +30871,3,5,28938,17011 +30872,387,10,118677,1031692 +30873,317,10,104211,70045 +30874,234,1,32834,61244 +30875,148,9,333352,23849 +30876,3,5,158908,67356 +30877,330,3,152113,1087669 +30878,72,11,245692,1574458 +30879,148,9,921,14915 +30880,234,1,218784,229378 +30881,317,10,13529,67927 +30882,165,9,9593,1435578 +30883,5,10,117,1256 +30884,317,10,215875,100388 +30885,262,6,241258,1525154 +30886,413,11,34723,7784 +30887,234,1,241855,583479 +30888,187,11,13483,1402070 +30889,234,1,69898,152397 +30890,387,10,30061,105644 +30891,413,11,21338,1098 +30892,143,7,137182,54261 +30893,234,1,57775,559969 +30894,273,7,433,5839 +30895,373,7,744,1378170 +30896,182,8,38027,67433 +30897,234,1,99351,14860 +30898,317,10,34449,239917 +30899,413,11,32451,1587763 +30900,204,9,22279,1425584 +30901,234,1,11712,5026 +30902,387,10,310126,1397752 +30903,317,10,25834,1127947 +30904,387,10,43045,175610 +30905,413,11,8368,24218 +30906,181,7,376394,1443029 +30907,5,10,21282,938723 +30908,92,7,74,1432596 +30909,53,2,370264,41856 +30910,381,9,8619,1377218 +30911,234,1,201429,19865 +30912,160,3,42188,1271079 +30913,317,10,109439,35796 +30914,234,1,49013,7879 +30915,413,11,35895,4309 +30916,301,5,97614,1394756 +30917,317,10,57089,108952 +30918,234,1,55612,81210 +30919,143,7,226140,1377415 +30920,317,10,238255,1234886 +30921,234,1,13911,82389 +30922,204,9,23048,32200 +30923,327,7,34723,1429539 +30924,179,2,241258,1547239 +30925,45,9,26390,1235847 +30926,3,5,58985,6626 +30927,317,10,248698,87550 +30928,289,6,72105,1282566 +30929,387,10,14372,7671 +30930,3,5,27461,12235 +30931,317,10,238972,40053 +30932,105,7,63706,1010915 +30933,52,10,11688,61411 +30934,209,7,38775,121343 +30935,273,7,2662,16848 +30936,200,3,297762,1903925 +30937,387,10,42764,128670 +30938,175,5,310133,1524562 +30939,317,10,266333,1312939 +30940,220,7,25430,34227 +30941,204,9,194817,559707 +30942,269,9,70057,550956 +30943,262,6,120172,1570085 +30944,160,3,4011,1560856 +30945,373,7,27265,1341858 +30946,234,1,289198,118369 +30947,412,9,193893,1871230 +30948,234,1,319910,99710 +30949,317,10,78522,99416 +30950,413,11,241593,555772 +30951,394,7,10198,58363 +30952,3,5,2566,26097 +30953,373,7,26390,1400072 +30954,45,9,59861,1355529 +30955,317,10,342052,1059619 +30956,111,7,11618,1589728 +30957,314,2,9902,1572875 +30958,148,9,10803,14780 +30959,413,11,18937,16533 +30960,413,11,41552,5841 +30961,203,1,9946,1390539 +30962,357,3,333352,1609854 +30963,286,3,113432,1774730 +30964,317,10,339312,1464980 +30965,273,7,151826,8195 +30966,387,10,12605,55280 +30967,11,6,76170,1418374 +30968,34,8,76170,1411238 +30969,64,6,98277,1849140 +30970,204,9,26376,1132129 +30971,273,7,301804,1770856 +30972,301,5,345925,32753 +30973,273,7,39311,30256 +30974,127,3,384737,1438316 +30975,387,10,78734,14646 +30976,3,5,35002,58660 +30977,32,8,3172,1536000 +30978,234,1,114348,8500 +30979,148,9,51947,10644 +30980,317,10,449674,52849 +30981,407,6,297762,1903911 +30982,357,3,12,8115 +30983,53,2,55544,29153 +30984,52,10,43546,1150509 +30985,20,2,8870,1398883 +30986,387,10,9032,56728 +30987,208,2,193756,107372 +30988,273,7,25653,231496 +30989,413,11,204802,1309683 +30990,226,2,337339,1573037 +30991,3,5,43022,30970 +30992,415,3,125063,9402 +30993,105,7,378018,1519926 +30994,204,9,61934,1174632 +30995,273,7,241593,1156263 +30996,148,9,88005,62144 +30997,158,2,297762,1824274 +30998,3,5,18,997 +30999,234,1,1850,3974 +31000,157,3,423093,969241 +31001,64,6,1724,1460621 +31002,413,11,43641,8068 +31003,52,10,37911,29716 +31004,3,5,311324,7262 +31005,182,8,21828,88121 +31006,273,7,28974,1120150 +31007,317,10,56527,107319 +31008,413,11,14886,21012 +31009,53,2,111042,4127 +31010,5,10,151431,29663 +31011,387,10,56491,428938 +31012,317,10,401164,1632160 +31013,394,7,14411,9971 +31014,317,10,2608,21371 +31015,102,3,18,1591577 +31016,413,11,137853,1084414 +31017,105,7,9071,56905 +31018,387,10,10821,66979 +31019,148,9,1624,15016 +31020,160,3,29136,1327722 +31021,234,1,8882,63973 +31022,53,2,18044,1509591 +31023,413,11,12124,71358 +31024,219,11,744,1378175 +31025,234,1,16444,11118 +31026,234,1,42149,1152 +31027,269,9,54022,62517 +31028,277,3,93313,14964 +31029,234,1,43896,8500 +31030,234,1,11930,55161 +31031,346,3,241239,1468595 +31032,234,1,66967,53767 +31033,234,1,383064,20665 +31034,234,1,126227,81693 +31035,53,2,109491,6348 +31036,234,1,259,1650 +31037,234,1,80389,589402 +31038,60,1,264729,1436792 +31039,226,2,46387,1660649 +31040,244,3,266856,1446413 +31041,269,9,20123,21830 +31042,387,10,961,8635 +31043,105,7,41076,141619 +31044,234,1,267815,1021436 +31045,262,6,384737,1554386 +31046,3,5,17692,104876 +31047,317,10,44022,2089 +31048,269,9,35052,17256 +31049,190,7,378018,1762265 +31050,373,7,10727,138618 +31051,387,10,43514,50577 +31052,160,3,18843,113197 +31053,413,11,10475,67993 +31054,187,11,10344,957581 +31055,373,7,74879,1446048 +31056,180,7,25385,7310 +31057,143,7,70712,559409 +31058,298,5,132363,1399071 +31059,13,3,25673,1027339 +31060,172,3,145135,1417890 +31061,3,5,105833,1175882 +31062,167,3,12113,1405423 +31063,387,10,110540,144063 +31064,269,9,27599,1644997 +31065,190,7,46931,1305971 +31066,234,1,57575,3632 +31067,317,10,29083,102865 +31068,234,1,65156,151502 +31069,234,1,2355,24173 +31070,387,10,243940,1147923 +31071,269,9,356482,1330834 +31072,203,1,77949,1402103 +31073,234,1,324251,1424327 +31074,273,7,79783,72538 +31075,204,9,248639,14448 +31076,287,3,156981,88560 +31077,234,1,390357,53996 +31078,394,7,10476,1395022 +31079,3,5,15616,50101 +31080,12,10,169,1092 +31081,143,7,126889,1335556 +31082,204,9,72648,1646202 +31083,12,10,4248,35734 +31084,175,5,17654,1420842 +31085,182,8,365942,1738134 +31086,373,7,197611,14880 +31087,160,3,17654,1418328 +31088,5,10,606,10636 +31089,203,1,9820,1531867 +31090,148,9,351365,1010740 +31091,204,9,9613,5330 +31092,273,7,65282,4345 +31093,399,9,24615,1450356 +31094,387,10,10740,9747 +31095,232,10,62397,5812 +31096,143,7,8619,1341403 +31097,387,10,26376,128781 +31098,234,1,151937,117049 +31099,3,5,23628,90394 +31100,269,9,14823,993624 +31101,200,3,354859,1811593 +31102,413,11,341689,19759 +31103,97,7,7299,1378172 +31104,333,2,32331,91054 +31105,37,3,10865,1552871 +31106,140,9,58,146439 +31107,291,6,8276,16345 +31108,187,11,294652,1722224 +31109,209,7,37238,1377423 +31110,5,10,27621,979467 +31111,413,11,9820,34484 +31112,234,1,1818,1650 +31113,409,7,325712,1879691 +31114,234,1,115223,65429 +31115,46,5,857,1734651 +31116,46,5,418437,1816409 +31117,182,8,257088,1545989 +31118,262,6,315837,1420157 +31119,397,7,175035,27969 +31120,360,3,3780,1241585 +31121,20,2,11450,1328406 +31122,333,2,33586,1814997 +31123,317,10,20521,86266 +31124,166,9,16921,1401758 +31125,18,2,3597,1445870 +31126,234,1,95015,67426 +31127,277,3,70981,113048 +31128,45,9,6933,1439013 +31129,182,8,137504,1529747 +31130,317,10,69921,1838611 +31131,387,10,127372,58002 +31132,40,1,322922,1838053 +31133,306,7,857,1095994 +31134,234,1,8985,109598 +31135,3,5,128216,1142395 +31136,269,9,41733,52600 +31137,234,1,63615,237583 +31138,220,7,68123,19607 +31139,387,10,15794,57625 +31140,413,11,45562,999549 +31141,232,10,53864,128810 +31142,234,1,258480,16863 +31143,30,5,3172,1400733 +31144,413,11,25376,84714 +31145,273,7,5491,43609 +31146,413,11,118490,1124113 +31147,373,7,16997,1401289 +31148,269,9,97365,62471 +31149,235,5,7551,1437305 +31150,413,11,82368,4418 +31151,328,6,8292,1419264 +31152,413,11,10603,13584 +31153,234,1,181574,18254 +31154,143,7,293660,1367494 +31155,273,7,260001,1193640 +31156,317,10,351065,1667636 +31157,204,9,312831,1568952 +31158,289,6,140607,1550763 +31159,20,2,9902,1523407 +31160,317,10,359154,1489446 +31161,127,3,9461,62423 +31162,234,1,63736,97901 +31163,333,2,18405,1828302 +31164,236,8,10916,1402122 +31165,226,2,41516,29640 +31166,75,5,1721,1125104 +31167,53,2,24757,129988 +31168,413,11,10775,21905 +31169,269,9,210653,31318 +31170,75,5,634,1575995 +31171,148,9,298584,1069713 +31172,373,7,280092,1406825 +31173,234,1,9427,57630 +31174,204,9,219466,1462348 +31175,160,3,45610,1061061 +31176,234,1,10774,39996 +31177,97,7,13849,1393301 +31178,234,1,185289,30833 +31179,53,2,421365,1703767 +31180,169,3,314285,71165 +31181,360,3,10033,78495 +31182,304,10,103073,1032647 +31183,360,3,6171,1401395 +31184,234,1,110392,1049375 +31185,234,1,45303,25236 +31186,208,2,354859,1414090 +31187,3,5,57811,10038 +31188,203,1,1480,1455417 +31189,3,5,13551,40511 +31190,387,10,244580,1279865 +31191,164,3,74,1532606 +31192,127,3,922,15438 +31193,234,1,132122,234569 +31194,53,2,220,6851 +31195,269,9,51994,1443031 +31196,203,1,82,1459201 +31197,213,10,27503,29756 +31198,273,7,40744,67610 +31199,273,7,2687,26981 +31200,306,7,14811,20140 +31201,234,1,52560,13663 +31202,317,10,49574,142498 +31203,273,7,1628,3535 +31204,234,1,56372,143660 +31205,234,1,63578,172 +31206,269,9,413547,1376997 +31207,273,7,1637,9989 +31208,226,2,43092,32117 +31209,3,5,254193,557364 +31210,221,3,4547,108152 +31211,387,10,12637,69162 +31212,209,7,214081,1367655 +31213,204,9,24584,10200 +31214,268,7,8869,548429 +31215,269,9,13056,6045 +31216,387,10,45772,136513 +31217,18,2,163,1727295 +31218,387,10,46114,1042643 +31219,387,10,22504,25162 +31220,105,7,297853,1790466 +31221,220,7,28325,1367891 +31222,317,10,60855,1230367 +31223,200,3,9532,1403524 +31224,105,7,79521,30267 +31225,317,10,61168,1504488 +31226,179,2,9013,75250 +31227,209,7,949,1305 +31228,207,3,132363,1347760 +31229,234,1,32306,146977 +31230,387,10,159474,31604 +31231,398,9,22076,1368858 +31232,387,10,13798,75597 +31233,413,11,149883,1302021 +31234,3,5,11415,4614 +31235,204,9,38031,1334489 +31236,204,9,10733,11508 +31237,413,11,156335,33226 +31238,3,5,245692,20593 +31239,190,7,13056,1646498 +31240,18,2,9716,1661573 +31241,3,5,296491,37744 +31242,196,7,11975,1558255 +31243,175,5,189,1401151 +31244,182,8,140607,1449995 +31245,234,1,197854,1488431 +31246,234,1,25977,102772 +31247,3,5,32331,4056 +31248,234,1,48153,40235 +31249,234,1,121598,4760 +31250,60,1,48885,99920 +31251,273,7,29424,1477211 +31252,60,1,15697,12955 +31253,105,7,27003,14283 +31254,208,2,8204,1326401 +31255,3,5,49597,60404 +31256,161,6,9716,1661549 +31257,162,6,293167,1548849 +31258,413,11,14126,1334501 +31259,196,7,9532,1414549 +31260,7,3,11045,1717523 +31261,327,7,31947,1588226 +31262,226,2,257088,1579042 +31263,158,2,7445,1332200 +31264,11,6,324670,1660720 +31265,387,10,93891,87712 +31266,234,1,9260,19271 +31267,262,6,76757,1194083 +31268,270,9,12,7960 +31269,187,11,72545,1414182 +31270,123,3,176983,1447870 +31271,277,3,11697,1183874 +31272,373,7,10733,1364417 +31273,13,9,339403,1635184 +31274,238,7,169,102721 +31275,169,3,149509,1372414 +31276,301,5,10590,1391130 +31277,60,1,28564,130325 +31278,413,11,110261,45672 +31279,273,7,2295,23739 +31280,234,1,323426,85530 +31281,234,1,76011,33064 +31282,77,10,13676,80675 +31283,189,3,84577,1392947 +31284,387,10,12279,2294 +31285,217,3,269149,1462001 +31286,239,5,201085,1572866 +31287,3,5,4916,10765 +31288,317,10,402612,64412 +31289,203,1,270303,1483637 +31290,262,6,244786,1358021 +31291,3,5,10333,5582 +31292,317,10,52369,1691388 +31293,317,10,13393,142857 +31294,127,3,25768,122982 +31295,234,1,245909,1281378 +31296,20,2,8247,1581500 +31297,3,5,1938,10537 +31298,104,7,9902,1550344 +31299,394,7,7445,1391387 +31300,387,10,12236,72140 +31301,190,7,21786,1336913 +31302,15,6,330459,1426773 +31303,413,11,36245,9753 +31304,203,1,84577,1392948 +31305,273,7,241930,1121480 +31306,333,2,225044,1441605 +31307,234,1,357851,1504644 +31308,413,11,16066,79145 +31309,234,1,362463,1518292 +31310,387,10,176627,74879 +31311,289,6,14411,1447385 +31312,52,10,37725,1247468 +31313,413,11,9717,20924 +31314,11,6,809,1335620 +31315,60,1,4024,10249 +31316,234,1,36056,2636 +31317,180,7,167707,1682250 +31318,317,10,94340,1001699 +31319,53,2,48281,1517632 +31320,234,1,43434,21678 +31321,269,9,248698,1906520 +31322,3,5,121003,16750 +31323,175,5,9563,1445842 +31324,289,6,72105,1455530 +31325,143,7,9543,1394129 +31326,317,10,71266,562261 +31327,207,3,118,1855214 +31328,196,7,172385,1418373 +31329,387,10,224950,1210483 +31330,204,9,76084,127200 +31331,413,11,11337,10440 +31332,3,5,28656,101468 +31333,220,7,42764,1478496 +31334,394,7,12,2216 +31335,286,3,15440,1206696 +31336,226,2,193893,1580968 +31337,3,5,14676,41411 +31338,317,10,15906,570268 +31339,175,5,271714,1177850 +31340,3,5,15613,9341 +31341,317,10,244971,1280177 +31342,262,6,98277,1398105 +31343,394,7,16996,1367667 +31344,387,10,10524,68371 +31345,209,7,100669,1345616 +31346,53,2,209293,1192794 +31347,317,10,25796,11708 +31348,105,7,213683,238687 +31349,198,6,443319,1616379 +31350,197,5,354287,1781640 +31351,148,9,60853,1137341 +31352,413,11,77412,29971 +31353,3,5,46586,109845 +31354,3,5,9013,6490 +31355,53,2,13777,75293 +31356,413,11,10303,25823 +31357,234,1,28171,100013 +31358,234,1,28425,11431 +31359,394,7,10733,1397822 +31360,387,10,40562,124092 +31361,72,11,9785,1432642 +31362,225,7,381518,1338972 +31363,234,1,52864,67426 +31364,301,5,228970,1377131 +31365,203,1,76203,1393455 +31366,204,9,7454,107911 +31367,269,9,1586,9041 +31368,235,5,19901,1418814 +31369,286,3,41077,1440672 +31370,234,1,91527,980176 +31371,125,2,1966,10202 +31372,413,11,188161,11876 +31373,176,3,5638,81524 +31374,328,6,15440,1336935 +31375,273,7,84569,930989 +31376,397,7,59297,1658441 +31377,413,11,42703,14961 +31378,103,6,337339,1554387 +31379,204,9,71067,105954 +31380,273,7,1589,1517811 +31381,303,3,325173,1601641 +31382,203,1,290825,1534675 +31383,226,2,31548,1611762 +31384,234,1,107445,35408 +31385,12,10,31472,11573 +31386,3,5,2721,3540 +31387,3,5,104430,96052 +31388,189,3,127585,1384394 +31389,3,5,302802,1385136 +31390,37,3,214756,1457935 +31391,387,10,172385,1524786 +31392,413,11,255160,1348662 +31393,60,1,28170,99920 +31394,387,10,210092,76418 +31395,105,7,349045,1464806 +31396,317,10,49110,39104 +31397,314,2,14295,1538709 +31398,333,2,180576,14526 +31399,394,7,4133,15332 +31400,25,2,340101,5335 +31401,234,1,156627,130313 +31402,105,7,26656,1017791 +31403,273,7,78318,67429 +31404,234,1,233487,109583 +31405,234,1,13495,127823 +31406,234,1,194407,97017 +31407,15,6,127380,1715745 +31408,105,7,298931,11370 +31409,52,10,125990,1406672 +31410,3,5,153,1781 +31411,175,5,228970,1407739 +31412,97,7,12783,1412088 +31413,3,5,333352,24217 +31414,387,10,28438,100984 +31415,143,7,10344,56765 +31416,147,1,8869,1493890 +31417,108,10,95874,1193300 +31418,317,10,21968,995572 +31419,234,1,133121,74950 +31420,317,10,83185,145608 +31421,53,2,21135,1671232 +31422,413,11,11536,2655 +31423,204,9,340101,1527431 +31424,204,9,302699,1543203 +31425,53,2,48145,11908 +31426,259,3,11045,1569563 +31427,234,1,80012,88026 +31428,234,1,52894,52371 +31429,234,1,55712,82579 +31430,236,8,40807,1399067 +31431,317,10,79596,137032 +31432,234,1,81220,12995 +31433,204,9,55720,76016 +31434,158,2,346672,1721316 +31435,333,2,12113,142152 +31436,204,9,143946,1132430 +31437,387,10,10805,21512 +31438,387,10,302802,1385131 +31439,74,5,9472,1744424 +31440,234,1,389854,94063 +31441,234,1,195068,14855 +31442,148,9,297762,67204 +31443,3,5,539,7305 +31444,317,10,186079,1168794 +31445,387,10,15616,231039 +31446,317,10,21571,78922 +31447,77,10,13280,74356 +31448,317,10,42476,15947 +31449,387,10,87654,224717 +31450,143,7,338063,1321065 +31451,333,2,15199,1641975 +31452,12,10,116232,1072714 +31453,234,1,1942,834 +31454,234,1,1125,15557 +31455,182,8,17209,1409403 +31456,53,2,1049,7719 +31457,204,9,2731,19681 +31458,160,3,23397,161787 +31459,97,7,294652,1722225 +31460,387,10,9950,60782 +31461,234,1,29082,102844 +31462,158,2,333484,1654420 +31463,273,7,338,2422 +31464,269,9,81522,5492 +31465,234,1,309024,1396430 +31466,141,7,2454,1554886 +31467,189,3,72431,1392249 +31468,3,5,1999,17175 +31469,158,2,3597,1790548 +31470,234,1,202239,935389 +31471,53,2,110972,4061 +31472,328,6,266102,1319487 +31473,3,5,140607,15348 +31474,317,10,253154,1292560 +31475,53,2,26873,96507 +31476,46,5,285270,1367936 +31477,52,10,62755,92556 +31478,234,1,16231,871110 +31479,245,3,43231,20420 +31480,53,2,9070,8681 +31481,204,9,9659,957786 +31482,273,7,12454,68047 +31483,52,10,20200,66839 +31484,53,2,43095,1183036 +31485,413,11,9495,15842 +31486,152,2,32634,1325580 +31487,204,9,9882,17950 +31488,234,1,131739,126784 +31489,413,11,75761,424548 +31490,387,10,103758,78675 +31491,204,9,49963,1467187 +31492,234,1,50329,72061 +31493,250,11,333663,1574102 +31494,413,11,257088,852 +31495,317,10,7515,52856 +31496,387,10,17771,21960 +31497,239,5,401164,1817455 +31498,3,5,362617,1518729 +31499,53,2,52864,4127 +31500,105,7,137145,1542298 +31501,220,7,156360,100579 +31502,413,11,62034,14269 +31503,204,9,42852,27937 +31504,301,5,448847,1797424 +31505,127,3,10999,1680739 +31506,234,1,248933,16794 +31507,269,9,31618,6494 +31508,3,5,30091,4434 +31509,53,2,325385,1174838 +31510,273,7,12476,4055 +31511,373,7,56937,1411814 +31512,287,3,765,59287 +31513,387,10,80389,589402 +31514,317,10,271495,1323459 +31515,304,10,33481,16767 +31516,317,10,303636,1412501 +31517,234,1,135679,502188 +31518,143,7,1394,1439800 +31519,53,2,10075,62878 +31520,40,1,405473,1800049 +31521,286,3,285840,1646073 +31522,234,1,20,90 +31523,387,10,81687,97019 +31524,328,6,15092,1408338 +31525,376,10,296524,112014 +31526,203,1,75595,1451999 +31527,234,1,84337,8823 +31528,328,6,72545,1368875 +31529,3,5,413547,1672675 +31530,234,1,15677,78514 +31531,148,9,40060,10065 +31532,387,10,37213,90503 +31533,127,3,140887,117677 +31534,289,6,9078,143786 +31535,198,6,245168,1565662 +31536,234,1,98582,6521 +31537,234,1,2100,21526 +31538,317,10,92285,146712 +31539,234,1,270336,228610 +31540,273,7,3063,30256 +31541,204,9,112991,22220 +31542,105,7,14019,76281 +31543,333,2,42502,31870 +31544,196,7,635,1399995 +31545,317,10,298751,1128397 +31546,388,9,1624,1231306 +31547,5,10,49502,131601 +31548,97,7,378236,1228031 +31549,287,3,9286,1407805 +31550,387,10,41495,50302 +31551,273,7,31945,7435 +31552,105,7,28938,8208 +31553,317,10,76012,1019507 +31554,53,2,68184,1533072 +31555,187,11,293167,1561360 +31556,204,9,26864,1801307 +31557,123,3,26736,107659 +31558,105,7,194,1544434 +31559,52,10,239056,21845 +31560,179,2,375366,1740772 +31561,269,9,9504,3429 +31562,273,7,43904,18479 +31563,196,7,693,1408301 +31564,327,7,5237,1340003 +31565,349,1,15045,1447476 +31566,234,1,56934,5696 +31567,234,1,276536,1353210 +31568,413,11,315335,1479772 +31569,317,10,379925,1256300 +31570,203,1,109424,1390388 +31571,234,1,49398,24381 +31572,175,5,9423,1389594 +31573,273,7,10396,10771 +31574,196,7,325173,1495179 +31575,234,1,363757,225139 +31576,398,9,9946,1432009 +31577,269,9,244539,1018480 +31578,234,1,129851,103111 +31579,85,10,409447,1720357 +31580,387,10,68179,1098477 +31581,108,10,172897,58689 +31582,203,1,50506,1512292 +31583,317,10,45800,11436 +31584,258,9,149870,78345 +31585,182,8,9593,1877146 +31586,234,1,185156,54441 +31587,127,3,359245,1603473 +31588,328,6,194,1551981 +31589,328,6,376501,1590893 +31590,175,5,1294,1585882 +31591,3,5,9846,1632 +31592,317,10,18725,548474 +31593,204,9,11639,10200 +31594,387,10,3574,32991 +31595,45,9,163,1720281 +31596,53,2,314065,1466250 +31597,317,10,61361,1318268 +31598,262,6,284564,1752051 +31599,12,10,213121,7879 +31600,60,1,413421,1785019 +31601,213,10,24154,81721 +31602,60,1,37581,999947 +31603,287,3,210047,1293001 +31604,234,1,63498,37526 +31605,234,1,2397,24508 +31606,287,3,435,1418460 +31607,287,3,312831,1594190 +31608,258,9,15213,1462621 +31609,234,1,216647,1121267 +31610,328,6,318781,1335883 +31611,52,10,19740,9577 +31612,3,5,25768,14411 +31613,3,5,42242,1939 +31614,317,10,125229,150293 +31615,203,1,10476,1460785 +31616,3,5,12483,57668 +31617,148,9,168259,75391 +31618,52,10,178587,1087675 +31619,160,3,414977,1676797 +31620,234,1,47190,544951 +31621,164,3,9425,1566830 +31622,3,5,79743,1166041 +31623,105,7,4887,40030 +31624,234,1,14558,122670 +31625,286,3,124054,1085028 +31626,281,6,297762,1903918 +31627,387,10,8882,72768 +31628,105,7,302699,928158 +31629,317,10,47792,10316 +31630,317,10,147538,109314 +31631,3,5,28178,7492 +31632,5,10,9443,14957 +31633,77,10,9904,60213 +31634,286,3,37003,1670367 +31635,359,6,14088,56339 +31636,122,8,664,1550834 +31637,127,3,194,16347 +31638,357,3,97365,1727619 +31639,203,1,9778,1484538 +31640,3,5,63215,50539 +31641,3,5,285532,53190 +31642,289,6,291270,34891 +31643,204,9,9893,14378 +31644,204,9,111042,874 +31645,387,10,106135,1039639 +31646,269,9,44626,11558 +31647,262,6,284289,1462038 +31648,360,3,214081,59398 +31649,296,3,9716,91071 +31650,180,7,705,8511 +31651,234,1,48609,1927 +31652,317,10,28026,1322479 +31653,398,9,331313,1767239 +31654,333,2,3716,5597 +31655,175,5,55846,1394040 +31656,203,1,2567,1402039 +31657,262,6,193893,1394033 +31658,394,7,13777,75148 +31659,413,11,42678,2894 +31660,198,6,206647,1551896 +31661,413,11,166886,1011975 +31662,5,10,44115,973238 +31663,234,1,38908,121608 +31664,317,10,55589,11572 +31665,3,5,57683,59871 +31666,60,1,1966,1733771 +31667,273,7,194853,1175182 +31668,60,1,14615,130325 +31669,188,8,18,1881568 +31670,269,9,105,596 +31671,373,7,773,1342242 +31672,269,9,90228,1161228 +31673,298,5,198663,91122 +31674,136,1,181533,1598516 +31675,234,1,52914,56742 +31676,234,1,26254,183760 +31677,204,9,136368,1647414 +31678,148,9,68822,35836 +31679,105,7,59408,7445 +31680,3,5,1926,20031 +31681,60,1,16176,1418091 +31682,234,1,234155,1058959 +31683,3,5,11161,4279 +31684,60,1,124963,1513648 +31685,3,5,163,1884 +31686,92,7,63825,1666412 +31687,269,9,4011,5133 +31688,387,10,60140,230590 +31689,234,1,104697,11523 +31690,234,1,27102,28615 +31691,5,10,9598,46299 +31692,413,11,276906,1331176 +31693,413,11,10665,2150 +31694,317,10,41578,1017996 +31695,317,10,44655,125072 +31696,413,11,6077,46291 +31697,60,1,105981,1456433 +31698,234,1,207402,1076600 +31699,190,7,118,1173229 +31700,258,9,149870,1456616 +31701,105,7,173638,16929 +31702,97,7,287,1534834 +31703,234,1,324572,87851 +31704,317,10,109466,20400 +31705,52,10,84450,1329896 +31706,234,1,14254,81201 +31707,360,3,8915,1337452 +31708,413,11,171357,971123 +31709,269,9,15935,75906 +31710,413,11,15092,23604 +31711,234,1,175065,40054 +31712,411,9,19995,959555 +31713,373,7,312221,7537 +31714,234,1,80468,65242 +31715,387,10,2204,2303 +31716,105,7,36259,70835 +31717,53,2,47112,1155167 +31718,333,2,425774,1707978 +31719,273,7,12617,30104 +31720,413,11,6977,1223 +31721,387,10,190853,563357 +31722,234,1,84473,88820 +31723,148,9,544,7417 +31724,96,2,337339,1842157 +31725,234,1,208305,1000736 +31726,273,7,11133,1760 +31727,3,5,12311,2005 +31728,148,9,52362,7338 +31729,204,9,19181,1097803 +31730,160,3,262522,102751 +31731,413,11,16182,1428272 +31732,148,9,32049,1833610 +31733,187,11,59962,1352966 +31734,52,10,90956,88986 +31735,75,5,274857,1388894 +31736,387,10,1452,11013 +31737,75,5,210653,1396074 +31738,52,10,80316,1931 +31739,413,11,43114,117774 +31740,405,8,286192,1711831 +31741,234,1,288521,108987 +31742,119,7,34127,30267 +31743,53,2,211088,54491 +31744,413,11,10344,64876 +31745,217,3,14444,1451682 +31746,234,1,55604,82413 +31747,3,5,29146,31501 +31748,317,10,43775,225033 +31749,317,10,150049,234319 +31750,64,6,271185,1292074 +31751,127,3,279096,1386322 +31752,176,3,1991,1420152 +31753,127,3,362541,1828893 +31754,169,3,6163,1905080 +31755,148,9,107593,1137341 +31756,148,9,44115,1327894 +31757,234,1,4134,28217 +31758,387,10,18548,3125 +31759,52,10,16907,89963 +31760,105,7,11380,19767 +31761,273,7,397365,1561359 +31762,387,10,29989,99383 +31763,204,9,210047,1082000 +31764,317,10,46883,545603 +31765,160,3,346170,154837 +31766,53,2,99,3824 +31767,317,10,392818,1614893 +31768,53,2,289183,1596518 +31769,3,5,15560,1440070 +31770,57,2,693,1407721 +31771,234,1,408203,1000952 +31772,234,1,215881,19850 +31773,209,7,8617,1404546 +31774,234,1,111042,24939 +31775,226,2,315664,1616063 +31776,317,10,139582,1113437 +31777,289,6,291270,1455701 +31778,204,9,28290,3358 +31779,387,10,10871,67808 +31780,3,5,67377,15131 +31781,317,10,351809,3788 +31782,148,9,59147,1334500 +31783,234,1,1271,15217 +31784,317,10,365222,77703 +31785,234,1,141145,439442 +31786,328,6,44578,1337416 +31787,204,9,924,15222 +31788,234,1,104744,46230 +31789,413,11,311324,1722 +31790,317,10,43211,69973 +31791,209,7,10727,1345268 +31792,148,9,76170,75292 +31793,67,10,14128,1720162 +31794,3,5,111398,1063916 +31795,105,7,43670,49285 +31796,44,6,17015,1530177 +31797,204,9,315465,1590940 +31798,148,9,85230,1437912 +31799,158,2,190955,1405330 +31800,387,10,102382,168309 +31801,234,1,289159,1357684 +31802,226,2,9314,1434637 +31803,387,10,38681,21228 +31804,387,10,65048,227311 +31805,179,2,19995,1330570 +31806,328,6,149509,1444294 +31807,105,7,417820,231716 +31808,413,11,34944,113571 +31809,148,9,26761,1417675 +31810,226,2,18,75803 +31811,269,9,85844,1133156 +31812,234,1,336882,87877 +31813,387,10,70666,8561 +31814,234,1,13062,74142 +31815,360,3,24624,1540853 +31816,12,10,102382,7625 +31817,387,10,140554,52392 +31818,413,11,1247,8219 +31819,143,7,26693,1179003 +31820,234,1,98369,440517 +31821,32,8,109424,1408396 +31822,53,2,9495,32797 +31823,387,10,41110,111427 +31824,200,3,1966,1398101 +31825,317,10,15143,11505 +31826,413,11,82492,148737 +31827,234,1,173443,144810 +31828,5,10,36421,68912 +31829,204,9,271404,1447938 +31830,226,2,300669,119182 +31831,415,3,30876,1023549 +31832,200,3,333352,1609853 +31833,234,1,20361,14246 +31834,166,9,9846,1534937 +31835,190,7,10727,1584253 +31836,229,6,297762,1901054 +31837,189,3,15613,1434223 +31838,262,6,4147,1406922 +31839,234,1,178595,1161117 +31840,317,10,56653,768 +31841,269,9,75229,1131382 +31842,234,1,26971,43317 +31843,317,10,281615,1340791 +31844,75,5,7326,1394974 +31845,237,7,9593,1390524 +31846,149,6,9297,1462685 +31847,175,5,243935,18095 +31848,387,10,167221,227910 +31849,387,10,4024,34590 +31850,387,10,26533,10148 +31851,306,7,52661,7653 +31852,5,10,17658,28684 +31853,148,9,34127,10918 +31854,398,9,263115,1657702 +31855,75,5,109439,1097118 +31856,158,2,79316,1340089 +31857,52,10,39867,1184795 +31858,105,7,65646,2578 +31859,387,10,10805,16483 +31860,413,11,773,17147 +31861,333,2,59419,1526974 +31862,273,7,27203,4345 +31863,87,7,40807,1529999 +31864,219,11,107073,1481505 +31865,273,7,9776,63976 +31866,74,5,443319,1888979 +31867,232,10,106016,543922 +31868,317,10,215032,92012 +31869,273,7,10204,57124 +31870,327,7,10330,1415618 +31871,180,7,97910,1543599 +31872,3,5,406431,1650623 +31873,317,10,347666,27450 +31874,234,1,13853,1044 +31875,204,9,16373,127200 +31876,52,10,193435,105735 +31877,234,1,30995,107476 +31878,209,7,284289,1392170 +31879,238,7,13380,91879 +31880,52,10,3023,29629 +31881,76,2,11045,1252447 +31882,301,5,245703,1565123 +31883,289,6,9438,1460505 +31884,232,10,18651,98751 +31885,3,5,187596,56791 +31886,105,7,69903,32770 +31887,234,1,424014,582899 +31888,268,7,522,26678 +31889,160,3,8619,237921 +31890,413,11,11593,6491 +31891,273,7,10198,7885 +31892,317,10,84993,1192612 +31893,53,2,43089,11605 +31894,269,9,4964,41081 +31895,105,7,197854,548007 +31896,148,9,43783,8508 +31897,237,7,76163,1412699 +31898,413,11,56937,983129 +31899,187,11,263115,1399057 +31900,250,11,318781,1622822 +31901,148,9,19996,1764156 +31902,373,7,87826,1537461 +31903,203,1,356752,1754083 +31904,413,11,1689,950 +31905,182,8,188927,1399475 +31906,204,9,12220,13586 +31907,102,3,10320,1821188 +31908,269,9,357706,1671522 +31909,160,3,82654,1611794 +31910,269,9,24739,1446539 +31911,105,7,342588,16140 +31912,317,10,37254,19656 +31913,387,10,221801,113647 +31914,234,1,469,4429 +31915,234,1,385654,112926 +31916,148,9,45244,1605649 +31917,234,1,106049,1111221 +31918,401,6,10198,1463336 +31919,317,10,236399,168383 +31920,53,2,23169,20172 +31921,3,5,131689,1267020 +31922,250,11,1579,1400354 +31923,234,1,45964,62556 +31924,53,2,74,498 +31925,3,5,390296,1598022 +31926,3,5,16899,1394783 +31927,269,9,123109,29943 +31928,53,2,120831,1176512 +31929,413,11,284052,23544 +31930,10,3,48207,1860888 +31931,149,6,311324,1658876 +31932,97,7,8915,92388 +31933,317,10,451709,1795140 +31934,249,7,15613,1424127 +31935,234,1,353686,2150 +31936,148,9,946,12348 +31937,234,1,205939,930333 +31938,289,6,53219,153292 +31939,387,10,84340,562672 +31940,182,8,76203,1393450 +31941,158,2,273481,1402004 +31942,317,10,28943,102450 +31943,175,5,5425,1632425 +31944,413,11,42501,5785 +31945,413,11,185154,12759 +31946,3,5,55534,112370 +31947,3,5,106020,14132 +31948,413,11,316654,3661 +31949,53,2,51250,997367 +31950,356,2,8869,1423018 +31951,260,2,365942,1738144 +31952,72,11,14254,960407 +31953,204,9,71503,563115 +31954,387,10,40034,237682 +31955,204,9,42837,13903 +31956,234,1,24810,76240 +31957,286,3,80276,1148835 +31958,234,1,345922,169448 +31959,72,11,924,1418411 +31960,53,2,322922,1573368 +31961,49,7,9902,9555 +31962,250,11,97614,1419729 +31963,317,10,52784,47063 +31964,317,10,315880,65314 +31965,52,10,26882,1072677 +31966,204,9,105,6184 +31967,105,7,46931,23437 +31968,53,2,374475,935742 +31969,234,1,241739,989127 +31970,317,10,29101,68184 +31971,234,1,86603,4695 +31972,234,1,200,2388 +31973,413,11,49038,53096 +31974,301,5,9042,1409238 +31975,387,10,5123,14692 +31976,262,6,435,1392093 +31977,413,11,413452,1580025 +31978,289,6,9514,1642534 +31979,262,6,340101,1414095 +31980,415,3,5924,559910 +31981,387,10,244,3240 +31982,273,7,57489,68144 +31983,196,7,365942,1738141 +31984,3,5,49097,1545051 +31985,204,9,168259,62780 +31986,387,10,18079,74907 +31987,3,5,25738,14569 +31988,333,2,1647,15845 +31989,273,7,27270,1195778 +31990,3,5,308174,1391782 +31991,196,7,173153,1538230 +31992,328,6,26656,1388869 +31993,234,1,198130,1178439 +31994,213,10,23367,129305 +31995,234,1,75576,70301 +31996,187,11,6972,1401689 +31997,75,5,59115,1439099 +31998,234,1,45069,6495 +31999,166,9,9286,113036 +32000,3,5,49950,3114 +32001,148,9,414977,1524234 +32002,273,7,9274,37031 +32003,387,10,9568,27991 +32004,148,9,693,9042 +32005,234,1,217775,105666 +32006,413,11,1574,9154 +32007,226,2,19901,119182 +32008,234,1,115290,1061511 +32009,203,1,2021,1412126 +32010,204,9,92950,1092851 +32011,105,7,142320,479923 +32012,273,7,259075,29501 +32013,204,9,12573,1015645 +32014,270,9,755,1851730 +32015,53,2,322443,1540844 +32016,273,7,87587,82356 +32017,143,7,318781,54110 +32018,296,3,9902,1600620 +32019,371,3,107073,1481512 +32020,317,10,82655,928453 +32021,394,7,27265,9349 +32022,234,1,69921,23841 +32023,262,6,241239,1395366 +32024,234,1,68721,1108 +32025,234,1,4580,34263 +32026,234,1,49322,103866 +32027,245,3,59981,1212446 +32028,273,7,11056,43332 +32029,127,3,244786,1419137 +32030,234,1,30496,77964 +32031,413,11,270400,1320860 +32032,317,10,177566,81297 +32033,3,5,34623,2760 +32034,317,10,51362,13953 +32035,412,9,8870,1724241 +32036,141,7,10527,68016 +32037,234,1,42040,5696 +32038,413,11,40662,8068 +32039,234,1,44741,131327 +32040,51,9,857,132566 +32041,203,1,8619,1377239 +32042,387,10,54309,229269 +32043,234,1,383535,1579739 +32044,127,3,105059,1417620 +32045,373,7,9982,112609 +32046,141,7,77246,1550574 +32047,234,1,47914,18669 +32048,52,10,63681,39206 +32049,286,3,381737,17175 +32050,234,1,301228,1429200 +32051,75,5,773,1411270 +32052,333,2,14254,21257 +32053,164,3,9425,1532606 +32054,180,7,43441,10156 +32055,327,7,2321,142155 +32056,413,11,207441,6827 +32057,97,7,436,1308375 +32058,317,10,315362,146954 +32059,148,9,9953,60872 +32060,413,11,52270,14962 +32061,234,1,258384,37361 +32062,122,8,9946,1767314 +32063,53,2,41213,1752408 +32064,234,1,73430,13802 +32065,3,5,125229,555578 +32066,219,11,7220,1560110 +32067,387,10,176670,998690 +32068,60,1,151431,1607270 +32069,148,9,422,1560812 +32070,246,6,284052,1774220 +32071,234,1,48852,18392 +32072,148,9,33314,1299360 +32073,413,11,11450,5166 +32074,234,1,123334,1050095 +32075,160,3,10921,1402117 +32076,53,2,46069,1540598 +32077,234,1,20527,72496 +32078,40,1,401164,1817447 +32079,204,9,19101,7146 +32080,415,3,11639,11386 +32081,158,2,333484,1368882 +32082,52,10,275269,123313 +32083,317,10,124994,33727 +32084,234,1,2015,96657 +32085,387,10,24351,23880 +32086,234,1,16076,74396 +32087,301,5,82448,928006 +32088,234,1,149145,56207 +32089,273,7,1999,153 +32090,387,10,11950,29706 +32091,53,2,2977,43154 +32092,160,3,9882,13458 +32093,234,1,104965,519898 +32094,317,10,47508,128200 +32095,269,9,426230,1367087 +32096,269,9,43379,1567997 +32097,97,7,14510,91312 +32098,387,10,8965,56852 +32099,187,11,9846,1392125 +32100,234,1,1811,19224 +32101,301,5,49940,105470 +32102,204,9,43455,13864 +32103,413,11,148408,1208450 +32104,273,7,2734,27181 +32105,87,7,809,120695 +32106,53,2,8588,59683 +32107,44,6,8619,1032536 +32108,3,5,25625,10367 +32109,262,6,1271,113145 +32110,53,2,42837,32001 +32111,289,6,18937,1447338 +32112,413,11,24645,92114 +32113,344,9,9358,1441280 +32114,317,10,326723,1430114 +32115,331,3,52661,1745132 +32116,3,5,267852,1388531 +32117,273,7,83,5912 +32118,328,6,214756,1395451 +32119,204,9,7555,1387764 +32120,103,6,354859,1420188 +32121,273,7,82624,5882 +32122,317,10,230211,147531 +32123,234,1,32600,8635 +32124,234,1,109001,76813 +32125,273,7,390777,53712 +32126,143,7,245891,1334485 +32127,234,1,103938,11435 +32128,419,10,424661,1709311 +32129,5,10,62394,235255 +32130,111,7,297762,40769 +32131,387,10,4974,4387 +32132,204,9,8470,1383561 +32133,176,3,110992,91758 +32134,85,10,83788,115054 +32135,387,10,126712,33956 +32136,289,6,10693,138170 +32137,317,10,45013,54248 +32138,204,9,228066,1390349 +32139,317,10,287628,1354686 +32140,53,2,365942,46084 +32141,413,11,336806,140217 +32142,387,10,89287,42741 +32143,413,11,123109,67357 +32144,52,10,27970,1598612 +32145,3,5,9070,56901 +32146,413,11,54227,5841 +32147,10,3,122081,92595 +32148,413,11,43833,54033 +32149,273,7,43855,4345 +32150,376,10,26949,589662 +32151,234,1,359471,1169157 +32152,105,7,333371,59811 +32153,3,5,54845,492 +32154,204,9,86920,24330 +32155,162,6,6947,1309482 +32156,317,10,19610,57219 +32157,175,5,77246,1402560 +32158,148,9,10011,22070 +32159,53,2,38404,120330 +32160,203,1,205864,1603905 +32161,208,2,82990,1457696 +32162,53,2,18908,32725 +32163,5,10,81120,591014 +32164,269,9,42206,1895444 +32165,269,9,399790,45057 +32166,187,11,379,92386 +32167,160,3,6977,1281538 +32168,387,10,33016,52024 +32169,234,1,37211,117060 +32170,317,10,391618,1700106 +32171,11,6,64784,1451783 +32172,360,3,34459,1569287 +32173,277,7,356500,1559441 +32174,182,8,333371,1621797 +32175,198,6,296524,1431100 +32176,413,11,102632,35739 +32177,317,10,183662,564949 +32178,234,1,262522,39677 +32179,105,7,11848,70710 +32180,413,11,199155,336328 +32181,204,9,51947,37468 +32182,415,3,949,1550830 +32183,127,3,16442,166335 +32184,413,11,134394,1474628 +32185,3,5,41764,23331 +32186,413,11,9611,18387 +32187,273,7,7219,59366 +32188,3,5,3089,4308 +32189,419,10,70046,272150 +32190,333,2,68737,1415333 +32191,387,10,128396,1087017 +32192,160,3,549,1253648 +32193,239,5,332411,1579387 +32194,373,7,370234,1470708 +32195,102,3,8870,1724257 +32196,74,5,12103,1523591 +32197,204,9,332411,1074308 +32198,269,9,18971,1431025 +32199,413,11,426253,72643 +32200,317,10,72917,1895722 +32201,317,10,65456,13547 +32202,234,1,31805,76381 +32203,187,7,954,8158 +32204,317,10,40693,16745 +32205,234,1,175924,97646 +32206,234,1,77583,84568 +32207,413,11,173456,1182098 +32208,226,2,28110,1653365 +32209,83,2,17495,1469568 +32210,175,5,270403,1129275 +32211,387,10,118059,117720 +32212,413,11,12182,5388 +32213,268,7,356500,1106910 +32214,3,5,30666,961199 +32215,373,7,293167,15894 +32216,413,11,2486,9001 +32217,234,1,152737,47333 +32218,87,7,10665,1529990 +32219,317,10,9836,20629 +32220,269,9,9475,794 +32221,317,10,51423,33190 +32222,262,6,4248,1440240 +32223,52,10,46145,13885 +32224,148,9,245703,984533 +32225,208,2,9981,1302618 +32226,333,2,2982,26175 +32227,204,9,254679,1831336 +32228,164,3,334074,1833112 +32229,108,10,28519,137992 +32230,176,3,259830,1354498 +32231,268,7,10326,1370949 +32232,234,1,14765,52342 +32233,296,3,11351,1327403 +32234,317,10,140231,86782 +32235,413,11,57816,1095836 +32236,269,9,376660,21747 +32237,187,11,315837,1399862 +32238,273,7,10391,19155 +32239,234,1,262785,1063997 +32240,60,1,107073,1200528 +32241,53,2,388862,1552399 +32242,234,1,127728,1085661 +32243,377,3,10320,1600104 +32244,360,3,72431,1484175 +32245,388,9,4147,1558193 +32246,5,10,17136,81294 +32247,387,10,459,6241 +32248,141,7,9504,1530327 +32249,413,11,330381,1812638 +32250,226,2,16176,1650017 +32251,234,1,2002,6295 +32252,97,7,638,9441 +32253,273,7,332411,1210567 +32254,60,1,52782,1585030 +32255,262,6,10004,565192 +32256,13,5,73194,1716722 +32257,234,1,152532,69371 +32258,234,1,86131,51373 +32259,198,6,634,223238 +32260,413,11,13685,5668 +32261,273,7,94348,4500 +32262,317,10,329690,1446740 +32263,160,3,250066,84702 +32264,413,11,259975,31463 +32265,53,2,189,20490 +32266,204,9,201,2527 +32267,143,7,74,1417514 +32268,273,7,254679,636 +32269,87,7,278348,1611979 +32270,160,3,744,14771 +32271,234,1,75,510 +32272,317,10,132227,71353 +32273,250,11,265208,1409875 +32274,190,7,259997,1302518 +32275,289,6,9514,91771 +32276,105,7,52109,961119 +32277,179,2,954,1323281 +32278,234,1,180819,30833 +32279,273,7,291270,1225 +32280,75,5,7299,1433736 +32281,234,1,107499,985403 +32282,148,9,194,1321897 +32283,269,9,108017,1167479 +32284,333,2,14295,1330612 +32285,203,1,188826,1468644 +32286,413,11,246741,1409489 +32287,148,9,17771,1602311 +32288,148,9,188826,1583204 +32289,3,5,61225,7067 +32290,158,2,857,1681342 +32291,179,2,321039,1506296 +32292,226,2,30126,26176 +32293,234,1,188927,58189 +32294,269,9,188161,53811 +32295,398,9,216363,1547500 +32296,97,7,44363,1400399 +32297,187,11,48231,558230 +32298,333,2,11024,21257 +32299,262,6,15092,1402249 +32300,226,2,293167,1528026 +32301,52,10,1995,1222910 +32302,204,9,218784,1322017 +32303,226,2,47410,138873 +32304,3,5,43471,14648 +32305,314,2,298,1413225 +32306,3,5,82767,455064 +32307,140,9,13600,1453550 +32308,317,10,81787,34264 +32309,3,5,8985,1632 +32310,317,10,17082,1190199 +32311,349,1,10948,1653448 +32312,317,10,148435,232313 +32313,317,10,56815,225009 +32314,328,6,76757,1483140 +32315,387,10,262786,1207383 +32316,269,9,93856,28387 +32317,262,6,302828,1381932 +32318,148,9,43923,5886 +32319,3,5,106049,1111221 +32320,234,1,44287,71732 +32321,413,11,5237,32806 +32322,3,5,25520,1251 +32323,148,9,638,9321 +32324,212,3,10733,1571761 +32325,204,9,39867,1437608 +32326,10,3,5393,43106 +32327,53,2,52867,1611815 +32328,196,7,216580,1395219 +32329,413,11,400174,27677 +32330,413,11,336050,1644757 +32331,226,2,351901,1440401 +32332,317,10,21435,28781 +32333,3,5,33511,3285 +32334,413,11,1049,8307 +32335,317,10,42132,1076580 +32336,234,1,16094,68215 +32337,387,10,65282,86405 +32338,204,9,48787,1565654 +32339,317,10,25597,1149988 +32340,387,10,9297,57195 +32341,317,10,2979,117168 +32342,234,1,32233,58052 +32343,53,2,90395,1367962 +32344,105,7,42648,6459 +32345,234,1,46667,15657 +32346,317,10,75145,929 +32347,273,7,20438,39107 +32348,92,7,544,1440811 +32349,204,9,74527,12869 +32350,198,6,324670,1726031 +32351,105,7,38027,2704 +32352,122,8,293167,1759766 +32353,373,7,1950,957495 +32354,226,2,14537,1352118 +32355,330,3,109424,1408407 +32356,269,9,48677,5842 +32357,387,10,178587,2089 +32358,226,2,32166,1523841 +32359,387,10,4703,5014 +32360,234,1,62630,7256 +32361,40,1,413421,1785016 +32362,387,10,374021,1118682 +32363,289,6,12593,1458332 +32364,204,9,44105,1603706 +32365,387,10,19140,82172 +32366,268,7,274479,1608981 +32367,273,7,373514,52025 +32368,234,1,132957,118712 +32369,398,9,28171,100015 +32370,113,9,1381,1391762 +32371,105,7,3063,12924 +32372,92,7,186585,1546237 +32373,204,9,15940,1462380 +32374,234,1,32497,57022 +32375,269,9,323675,112521 +32376,77,10,13092,74160 +32377,262,6,297702,1636864 +32378,203,1,314371,1611063 +32379,244,3,80125,1441752 +32380,273,7,5590,10934 +32381,52,10,224944,1210464 +32382,208,2,28739,1334172 +32383,413,11,117942,98541 +32384,273,7,5237,7741 +32385,209,7,10972,1528991 +32386,75,5,251,65238 +32387,387,10,9629,58218 +32388,317,10,36992,1039361 +32389,383,3,194,1537500 +32390,234,1,11800,69696 +32391,180,7,43195,1531334 +32392,148,9,896,1174277 +32393,317,10,31083,114886 +32394,273,7,11680,70197 +32395,387,10,51800,221436 +32396,273,7,9514,57803 +32397,234,1,37003,11676 +32398,413,11,41610,32310 +32399,203,1,25941,1412126 +32400,3,5,35284,15131 +32401,3,5,103875,972483 +32402,373,7,2300,75240 +32403,234,1,94170,19093 +32404,45,9,369885,1582692 +32405,387,10,18897,19359 +32406,234,1,13739,72005 +32407,97,7,245168,1338222 +32408,269,9,126319,1340963 +32409,234,1,11017,57691 +32410,234,1,109451,12095 +32411,413,11,340187,1579532 +32412,204,9,43455,29345 +32413,53,2,40466,1109912 +32414,3,5,15584,80207 +32415,234,1,13929,7930 +32416,53,2,297736,1833815 +32417,234,1,11593,6729 +32418,387,10,1825,6779 +32419,148,9,262522,1460858 +32420,53,2,408381,1657555 +32421,235,5,9882,1544931 +32422,273,7,200813,1528 +32423,105,7,43645,53279 +32424,289,6,53178,225709 +32425,3,5,74585,1531324 +32426,3,5,246415,1323777 +32427,234,1,44746,123798 +32428,317,10,24936,101444 +32429,169,3,40466,1760138 +32430,53,2,17175,955396 +32431,182,8,152736,1401163 +32432,105,7,408220,1322323 +32433,60,1,351365,1891556 +32434,234,1,24254,87590 +32435,413,11,4134,28218 +32436,273,7,103875,17503 +32437,148,9,369885,1444952 +32438,25,2,362057,109129 +32439,53,2,2566,26099 +32440,204,9,366045,1830742 +32441,387,10,378570,1566496 +32442,147,1,4147,1740449 +32443,77,10,9779,59186 +32444,3,5,43195,1531324 +32445,234,1,182415,143468 +32446,209,7,2454,1405219 +32447,387,10,188468,76981 +32448,45,9,9882,1406083 +32449,197,5,378018,1805342 +32450,148,9,13763,11375 +32451,244,3,11172,60190 +32452,317,10,255772,1293195 +32453,360,3,11607,1342622 +32454,113,9,9358,1319153 +32455,234,1,44661,25289 +32456,234,1,134474,230008 +32457,373,7,9428,3177 +32458,103,6,378441,1797498 +32459,387,10,58547,68432 +32460,3,5,9308,33282 +32461,234,1,89481,230157 +32462,143,7,44943,1394950 +32463,45,9,126889,1746248 +32464,46,5,10066,1864771 +32465,273,7,113119,1073057 +32466,301,5,56937,928006 +32467,148,9,106747,1401129 +32468,87,7,18843,1560780 +32469,189,3,1966,1342643 +32470,413,11,405763,554455 +32471,413,11,53714,29311 +32472,234,1,214081,37626 +32473,179,2,222935,1521494 +32474,317,10,266687,1085919 +32475,203,1,2300,1242138 +32476,148,9,86472,1120805 +32477,226,2,55604,14681 +32478,208,2,10665,11747 +32479,190,7,46931,1595701 +32480,273,7,42640,1086333 +32481,204,9,3063,8622 +32482,204,9,19140,13572 +32483,317,10,11230,18899 +32484,3,5,709,10668 +32485,204,9,11535,22061 +32486,234,1,124821,122458 +32487,387,10,7234,52122 +32488,204,9,966,11970 +32489,127,3,52661,91241 +32490,413,11,338438,22472 +32491,158,2,312221,1523886 +32492,273,7,62472,425396 +32493,234,1,179270,1621717 +32494,269,9,127521,1318885 +32495,317,10,456781,1813311 +32496,387,10,11046,67450 +32497,387,10,31216,107753 +32498,179,2,354859,1565738 +32499,413,11,48153,1458037 +32500,122,8,3172,1553262 +32501,317,10,44932,1385535 +32502,317,10,356482,1459908 +32503,289,6,9514,1394264 +32504,239,5,8619,1594913 +32505,3,5,11496,29895 +32506,85,10,332794,1745821 +32507,204,9,403119,1658452 +32508,3,5,91583,8934 +32509,234,1,60665,1056266 +32510,234,1,36162,550480 +32511,273,7,30666,568289 +32512,234,1,55956,17282 +32513,53,2,82327,1167220 +32514,209,7,8669,1355970 +32515,269,9,239563,1193617 +32516,387,10,16550,66605 +32517,75,5,9297,1462699 +32518,387,10,1415,16957 +32519,373,7,294272,1425978 +32520,317,10,80125,5844 +32521,53,2,4986,29800 +32522,387,10,26983,19459 +32523,108,10,198652,1179375 +32524,176,3,118,1406187 +32525,289,6,80928,557253 +32526,234,1,339944,1544744 +32527,413,11,1678,18600 +32528,3,5,3597,6378 +32529,20,2,329440,1622446 +32530,203,1,954,1394104 +32531,52,10,14615,89535 +32532,105,7,335051,412408 +32533,317,10,123777,1012174 +32534,317,10,60153,88237 +32535,317,10,169656,17554 +32536,387,10,262785,1063997 +32537,413,11,21027,14961 +32538,234,1,185291,22598 +32539,204,9,11889,1346934 +32540,317,10,14923,59410 +32541,413,11,44716,1030 +32542,269,9,12182,957598 +32543,317,10,37570,238940 +32544,387,10,47489,129001 +32545,306,7,9514,1642501 +32546,234,1,16921,76453 +32547,204,9,41035,29669 +32548,52,10,59075,5448 +32549,387,10,258480,1034086 +32550,234,1,17644,104507 +32551,176,3,6171,1401391 +32552,387,10,289225,1357879 +32553,60,1,935,12681 +32554,5,10,10804,66884 +32555,387,10,167073,3225 +32556,3,5,17258,3097 +32557,317,10,20174,85761 +32558,244,3,194,64209 +32559,234,1,13283,440763 +32560,398,9,72545,969743 +32561,75,5,157424,558384 +32562,132,2,240913,1766006 +32563,113,9,2731,1730033 +32564,287,3,27276,80800 +32565,234,1,85656,76171 +32566,204,9,13505,223991 +32567,373,7,10020,74978 +32568,21,3,38404,120325 +32569,196,7,297762,1335562 +32570,234,1,38461,82678 +32571,287,3,68684,1304297 +32572,314,2,116979,1458584 +32573,387,10,196065,1382204 +32574,250,11,7445,1400506 +32575,143,7,262338,1433230 +32576,317,10,114096,7335 +32577,187,11,9504,16573 +32578,45,9,4248,1667231 +32579,273,7,11159,68047 +32580,415,3,35001,1433426 +32581,413,11,246422,66272 +32582,413,11,300983,81090 +32583,373,7,266856,1465947 +32584,234,1,301876,93475 +32585,234,1,28682,31775 +32586,3,5,9870,22043 +32587,250,11,315664,1408403 +32588,273,7,9816,4140 +32589,3,5,218508,17550 +32590,3,5,57230,1625936 +32591,39,3,3172,1553257 +32592,234,1,13241,97579 +32593,287,3,765,1189737 +32594,148,9,256474,1328122 +32595,333,2,334,548408 +32596,397,7,97024,27969 +32597,234,1,46420,136345 +32598,204,9,43172,4349 +32599,182,8,243568,1583216 +32600,317,10,314065,107395 +32601,148,9,200,796 +32602,52,10,150056,104243 +32603,413,11,72574,384 +32604,204,9,17495,1744162 +32605,234,1,426903,1077300 +32606,181,7,9835,1551213 +32607,250,11,203833,1406197 +32608,289,6,9297,1454031 +32609,75,5,1647,1177336 +32610,60,1,50247,1542610 +32611,413,11,166207,533375 +32612,5,10,34334,1378842 +32613,262,6,159211,1140975 +32614,3,5,71066,1665789 +32615,175,5,118957,1402901 +32616,75,5,17144,1377230 +32617,413,11,2001,20568 +32618,92,7,11351,1597216 +32619,387,10,188468,74879 +32620,187,11,11024,548437 +32621,234,1,12759,19707 +32622,387,10,39308,29664 +32623,317,10,51823,115091 +32624,399,9,102161,573541 +32625,169,3,11216,4659 +32626,46,5,21828,88119 +32627,234,1,10527,18864 +32628,3,5,80389,14599 +32629,20,2,188927,1638557 +32630,234,1,103947,1045547 +32631,3,5,44099,3351 +32632,289,6,98566,1453014 +32633,190,7,393562,1109232 +32634,387,10,68063,229269 +32635,333,2,124470,1448294 +32636,366,3,18,1440844 +32637,180,7,198795,31873 +32638,208,2,50725,1299201 +32639,204,9,2637,6923 +32640,317,10,295602,1368907 +32641,234,1,13493,11873 +32642,18,2,1976,13974 +32643,5,10,37292,155266 +32644,268,7,9286,548437 +32645,234,1,78527,16294 +32646,182,8,21786,1412135 +32647,269,9,88042,437 +32648,234,1,131737,990 +32649,387,10,910,13971 +32650,24,5,52661,1745160 +32651,234,1,14088,133116 +32652,301,5,343934,1553966 +32653,269,9,17962,1130133 +32654,234,1,20304,15521 +32655,387,10,41574,1583299 +32656,301,5,72431,1402934 +32657,105,7,319910,4500 +32658,273,7,74629,21731 +32659,273,7,55922,35330 +32660,239,5,9902,1419814 +32661,175,5,2637,1172414 +32662,234,1,1247,380 +32663,234,1,325189,150207 +32664,10,3,179103,936701 +32665,328,6,1271,1392099 +32666,317,10,82519,928912 +32667,209,7,6933,1334517 +32668,387,10,71825,1265390 +32669,328,6,270303,1435645 +32670,60,1,6443,232959 +32671,244,3,522,1624607 +32672,239,5,10066,1527926 +32673,5,10,12289,78753 +32674,234,1,13551,74638 +32675,169,3,28263,75154 +32676,113,9,18,943313 +32677,148,9,338438,1462349 +32678,387,10,16249,5837 +32679,3,5,241742,1099914 +32680,75,5,7551,91912 +32681,327,7,18417,83088 +32682,317,10,22007,60099 +32683,54,10,413232,1157061 +32684,209,7,188927,15354 +32685,413,11,39495,8484 +32686,53,2,9966,61128 +32687,204,9,95516,1411122 +32688,387,10,98339,71437 +32689,203,1,283384,1340343 +32690,373,7,156981,115810 +32691,234,1,39001,198148 +32692,226,2,318781,1439128 +32693,360,3,15440,1336931 +32694,373,7,4806,1303184 +32695,416,10,384262,1805953 +32696,306,7,329135,1667096 +32697,234,1,66187,32096 +32698,394,7,33586,957840 +32699,234,1,51358,13953 +32700,346,3,1381,1447164 +32701,179,2,127585,1322016 +32702,221,3,379,1337662 +32703,53,2,285270,1367918 +32704,52,10,1950,27 +32705,317,10,282268,383 +32706,317,10,17963,1146104 +32707,25,2,13380,1322112 +32708,3,5,78563,228786 +32709,148,9,11593,4148 +32710,234,1,9959,18311 +32711,387,10,5421,33807 +32712,234,1,415072,32175 +32713,175,5,210047,1568201 +32714,52,10,46128,134947 +32715,53,2,77412,9064 +32716,413,11,19996,1261700 +32717,234,1,77875,20646 +32718,317,10,25385,95082 +32719,234,1,259593,10610 +32720,53,2,98364,11491 +32721,360,3,11547,1334171 +32722,273,7,30641,108227 +32723,234,1,97936,88458 +32724,105,7,325803,1428041 +32725,3,5,242090,929987 +32726,204,9,332794,1860433 +32727,395,3,8916,1748683 +32728,3,5,138308,34174 +32729,317,10,56653,233491 +32730,413,11,10657,57091 +32731,234,1,198308,78176 +32732,52,10,72545,72724 +32733,387,10,110830,1050712 +32734,203,1,10804,1394104 +32735,387,10,43142,96909 +32736,197,5,6947,589968 +32737,72,11,10330,1555487 +32738,394,7,284053,16344 +32739,317,10,88126,935867 +32740,413,11,5638,6453 +32741,317,10,86664,139091 +32742,413,11,58244,69376 +32743,3,5,8272,54244 +32744,398,9,1483,36180 +32745,166,9,9457,1421695 +32746,234,1,151652,1131832 +32747,413,11,228647,103485 +32748,234,1,26941,72427 +32749,269,9,2976,5329 +32750,269,9,4551,7855 +32751,413,11,224813,121781 +32752,250,11,2503,1406849 +32753,413,11,397365,1174421 +32754,387,10,9405,51346 +32755,204,9,146521,1772145 +32756,277,3,38006,1095444 +32757,269,9,334538,32200 +32758,209,7,64972,1338455 +32759,387,10,15875,30491 +32760,234,1,78096,167786 +32761,140,9,283995,1335873 +32762,234,1,13855,1296119 +32763,154,3,308269,1447888 +32764,165,9,2978,1864216 +32765,180,7,48136,1531941 +32766,413,11,5759,800252 +32767,175,5,14430,1521673 +32768,3,5,10362,17453 +32769,204,9,149509,32200 +32770,317,10,52936,103136 +32771,52,10,53172,8686 +32772,234,1,9585,58080 +32773,53,2,144792,960153 +32774,77,10,67,357 +32775,12,10,258509,30696 +32776,317,10,296194,1371390 +32777,387,10,31324,66779 +32778,387,10,31150,11641 +32779,148,9,34482,1619538 +32780,289,6,45665,123192 +32781,143,7,246655,9651 +32782,317,10,84655,7300 +32783,317,10,160046,1284531 +32784,226,2,265208,578723 +32785,234,1,98328,70862 +32786,317,10,322614,1421242 +32787,413,11,44414,3961 +32788,15,6,10020,1558107 +32789,413,11,119816,17710 +32790,143,7,34181,1111128 +32791,204,9,353462,34859 +32792,53,2,339403,1324192 +32793,196,7,11547,1405205 +32794,387,10,28437,52589 +32795,166,9,328429,1636698 +32796,286,3,262841,36 +32797,234,1,31162,107721 +32798,317,10,44338,550478 +32799,61,7,11096,113054 +32800,317,10,73247,58101 +32801,3,5,170759,1153031 +32802,3,5,9529,14139 +32803,234,1,62688,143630 +32804,66,11,12144,1454512 +32805,204,9,48153,1458040 +32806,204,9,45431,550897 +32807,413,11,3072,6478 +32808,317,10,296029,1370766 +32809,406,6,319073,1559450 +32810,234,1,268920,29214 +32811,25,2,1966,40802 +32812,262,6,1381,1447151 +32813,105,7,123634,1078401 +32814,53,2,10863,7793 +32815,314,2,324670,1548465 +32816,374,8,121598,1880919 +32817,92,7,241639,1125198 +32818,75,5,9675,1535133 +32819,413,11,21442,87534 +32820,413,11,15762,16651 +32821,209,7,9664,199526 +32822,148,9,9819,39124 +32823,208,2,11058,1484714 +32824,234,1,42619,81976 +32825,234,1,120457,1108174 +32826,148,9,198600,1494831 +32827,413,11,194853,1068940 +32828,286,3,166671,1394073 +32829,3,5,2907,16331 +32830,204,9,330459,1546027 +32831,127,3,52661,82507 +32832,234,1,381737,155598 +32833,3,5,10005,61851 +32834,234,1,48202,102429 +32835,387,10,11397,35693 +32836,262,6,198663,9622 +32837,158,2,10733,1397852 +32838,317,10,21334,110695 +32839,234,1,26293,95036 +32840,186,6,44283,1447357 +32841,412,9,18843,1868962 +32842,234,1,43752,83905 +32843,105,7,463906,101022 +32844,141,7,28263,1886645 +32845,3,5,12622,73145 +32846,5,10,9366,57457 +32847,317,10,163870,571457 +32848,277,3,25796,1551320 +32849,273,7,77338,70526 +32850,387,10,43455,31068 +32851,398,9,2978,1226 +32852,317,10,42580,18323 +32853,75,5,325712,1879687 +32854,286,3,23385,1057356 +32855,165,9,11607,1342620 +32856,148,9,274479,1428843 +32857,234,1,16015,19346 +32858,148,9,13056,1708291 +32859,234,1,56150,543946 +32860,317,10,254435,1342904 +32861,269,9,339419,928074 +32862,204,9,110540,11036 +32863,317,10,19371,62044 +32864,234,1,19042,952327 +32865,52,10,43195,24658 +32866,204,9,97630,1296445 +32867,234,1,289183,1357749 +32868,160,3,3172,12948 +32869,320,3,390747,1662642 +32870,34,8,333484,1418403 +32871,169,3,70586,1428190 +32872,52,10,145244,38917 +32873,75,5,325039,1399565 +32874,317,10,226632,1231717 +32875,360,3,53419,74965 +32876,273,7,9462,57724 +32877,373,7,8619,1377220 +32878,3,5,92341,418836 +32879,141,7,10066,28285 +32880,387,10,21752,50349 +32881,203,1,10075,1373729 +32882,317,10,359412,1508548 +32883,387,10,3478,32048 +32884,234,1,81010,1006788 +32885,148,9,13336,1335412 +32886,328,6,1991,1420156 +32887,394,7,3682,572622 +32888,75,5,206647,1392246 +32889,413,11,43009,4309 +32890,49,7,109439,1357059 +32891,182,8,29136,1886761 +32892,413,11,27145,3838 +32893,286,3,266687,1313679 +32894,333,2,116979,1835186 +32895,398,9,8916,1780705 +32896,269,9,2300,32403 +32897,287,3,13849,1037760 +32898,204,9,193756,1198658 +32899,387,10,125409,158768 +32900,413,11,18094,53898 +32901,387,10,43459,8259 +32902,5,10,7340,3027 +32903,48,6,49013,1609045 +32904,262,6,1381,16499 +32905,180,7,26283,20148 +32906,317,10,273743,1331465 +32907,105,7,331642,1446701 +32908,204,9,98364,9062 +32909,77,10,9956,85 +32910,113,9,13380,33612 +32911,317,10,436340,235932 +32912,158,2,68737,1378719 +32913,160,3,69668,15229 +32914,387,10,31044,111907 +32915,181,7,273481,1551041 +32916,317,10,184341,57454 +32917,387,10,119010,1068922 +32918,317,10,85414,938575 +32919,52,10,809,1678634 +32920,273,7,31742,1820601 +32921,412,9,3597,1790544 +32922,413,11,16096,64196 +32923,273,7,44800,7769 +32924,3,5,15316,21405 +32925,234,1,32932,33300 +32926,273,7,10915,1259 +32927,204,9,46992,22156 +32928,234,1,433034,1027086 +32929,413,11,19819,17886 +32930,301,5,18094,937718 +32931,5,10,105059,70940 +32932,387,10,24140,91501 +32933,269,9,258384,9735 +32934,413,11,444713,1139873 +32935,387,10,69668,68039 +32936,387,10,3405,31893 +32937,204,9,69,7717 +32938,333,2,225728,1545926 +32939,105,7,9943,49187 +32940,269,9,10207,7848 +32941,317,10,410634,1685974 +32942,147,1,12103,1457898 +32943,3,5,4644,5271 +32944,262,6,339530,1415573 +32945,317,10,399811,1506865 +32946,52,10,5123,1353527 +32947,234,1,57351,58037 +32948,387,10,77958,570242 +32949,234,1,104277,58614 +32950,317,10,17895,548020 +32951,87,7,408616,1538714 +32952,3,5,173294,1103587 +32953,289,6,378236,1840331 +32954,413,11,10050,20382 +32955,105,7,90034,1093994 +32956,387,10,88529,110519 +32957,196,7,13849,1413935 +32958,187,11,1294,1299737 +32959,234,1,318053,1012088 +32960,394,7,22881,1397822 +32961,394,7,9877,1404212 +32962,234,1,27470,834 +32963,53,2,402672,1441227 +32964,234,1,1428,2294 +32965,387,10,109391,201 +32966,179,2,399790,1465948 +32967,273,7,352025,19607 +32968,273,7,16131,1551 +32969,196,7,177677,1373711 +32970,140,9,188927,229828 +32971,234,1,78281,222216 +32972,387,10,3102,30398 +32973,234,1,408024,144762 +32974,3,5,11980,71150 +32975,204,9,27970,4349 +32976,413,11,344906,73409 +32977,127,3,45827,1208034 +32978,158,2,209112,1661396 +32979,413,11,10948,67611 +32980,317,10,37633,118177 +32981,208,2,325712,23351 +32982,3,5,103731,71880 +32983,108,10,27973,86652 +32984,317,10,21142,129485 +32985,387,10,70807,1378679 +32986,304,10,62675,24704 +32987,413,11,2565,1918 +32988,234,1,15761,76813 +32989,175,5,257345,1194471 +32990,234,1,4953,201 +32991,328,6,218778,1666099 +32992,413,11,107073,112133 +32993,53,2,8899,994870 +32994,415,3,52362,3252 +32995,317,10,34623,12277 +32996,52,10,402672,78751 +32997,394,7,19995,900 +32998,45,9,9778,1425973 +32999,234,1,43093,100979 +33000,226,2,170279,1665954 +33001,219,11,10178,1607981 +33002,97,7,316042,20229 +33003,196,7,31042,118296 +33004,52,10,11137,68308 +33005,182,8,13777,75159 +33006,250,11,376501,1792362 +33007,105,7,30478,1376323 +33008,190,7,11045,1717530 +33009,234,1,211233,93561 +33010,317,10,26422,95344 +33011,234,1,31037,15663 +33012,234,1,359105,893462 +33013,399,9,13205,1447432 +33014,413,11,278621,1229619 +33015,413,11,49418,1561900 +33016,317,10,34935,148098 +33017,333,2,316042,27161 +33018,204,9,9297,961609 +33019,234,1,21334,110695 +33020,155,3,378441,1362637 +33021,105,7,197854,151173 +33022,160,3,379,1281538 +33023,143,7,10632,7537 +33024,169,3,18843,1868974 +33025,53,2,9443,5671 +33026,286,3,45807,10522 +33027,194,9,73835,1606272 +33028,77,10,13571,4180 +33029,269,9,321303,1595153 +33030,204,9,251227,1286559 +33031,87,7,14505,24192 +33032,269,9,62692,1603930 +33033,333,2,297762,1824228 +33034,387,10,134435,167896 +33035,317,10,96888,1011135 +33036,179,2,131360,108820 +33037,317,10,19610,30522 +33038,209,7,41733,1394984 +33039,180,7,13614,1610055 +33040,3,5,164366,1033738 +33041,317,10,99367,1020767 +33042,234,1,98644,1023724 +33043,317,10,132363,35550 +33044,178,10,22779,11432 +33045,234,1,93313,11435 +33046,180,7,28297,1567995 +33047,317,10,21778,35968 +33048,208,2,333371,1636670 +33049,234,1,265351,113873 +33050,234,1,199336,257772 +33051,277,7,296523,1396796 +33052,273,7,36375,13571 +33053,269,9,104700,11523 +33054,160,3,70074,1407364 +33055,387,10,93935,186788 +33056,169,3,256347,1417875 +33057,226,2,1578,113658 +33058,3,5,11639,10339 +33059,239,5,395982,1755113 +33060,387,10,52270,1160002 +33061,317,10,24273,5128 +33062,234,1,190352,103926 +33063,301,5,3682,1538708 +33064,64,6,434873,1375066 +33065,413,11,24554,90868 +33066,273,7,103875,117992 +33067,387,10,6976,51727 +33068,34,8,949,1415635 +33069,317,10,105384,39019 +33070,3,5,11045,67915 +33071,75,5,445993,1579581 +33072,60,1,168217,1093512 +33073,3,5,71041,50455 +33074,52,10,134238,95944 +33075,287,3,79316,1547670 +33076,225,7,10796,1408301 +33077,105,7,27983,24315 +33078,3,5,48254,56277 +33079,387,10,127560,33442 +33080,234,1,14066,12206 +33081,365,6,9514,1642587 +33082,234,1,51250,73832 +33083,317,10,32609,131128 +33084,148,9,577,7802 +33085,160,3,56937,1336934 +33086,92,7,4825,10919 +33087,226,2,142402,1117103 +33088,413,11,456781,1813315 +33089,387,10,254679,144557 +33090,234,1,90228,548816 +33091,387,10,17306,81694 +33092,97,7,9042,20228 +33093,413,11,347031,989692 +33094,387,10,2486,4946 +33095,105,7,55825,77714 +33096,317,10,95140,31901 +33097,87,7,85350,52161 +33098,5,10,9366,57456 +33099,269,9,274990,1158265 +33100,317,10,49762,135797 +33101,286,3,31984,20136 +33102,413,11,27814,11474 +33103,196,7,21927,1416949 +33104,3,5,14698,12242 +33105,304,10,49074,580908 +33106,413,11,156,1179 +33107,317,10,37628,177648 +33108,317,10,80059,84277 +33109,60,1,8899,73333 +33110,97,7,329682,17473 +33111,3,5,11442,31906 +33112,37,3,35,1448999 +33113,52,10,177190,1159607 +33114,376,10,259694,69124 +33115,234,1,286532,1220517 +33116,387,10,31672,39463 +33117,234,1,26517,14999 +33118,148,9,1381,1327222 +33119,77,10,166,1961 +33120,289,6,291270,1453487 +33121,154,3,129359,1088222 +33122,3,5,2604,149 +33123,317,10,387886,138108 +33124,333,2,340101,1713690 +33125,3,5,57866,13270 +33126,317,10,262528,111485 +33127,413,11,19719,85094 +33128,52,10,112083,1700872 +33129,387,10,172,2075 +33130,105,7,147939,1127738 +33131,273,7,41211,122 +33132,53,2,323315,1425663 +33133,317,10,77246,558338 +33134,76,2,274479,1401606 +33135,413,11,12528,1731 +33136,5,10,5511,1664823 +33137,387,10,39194,96924 +33138,3,5,315010,54926 +33139,213,10,6636,50922 +33140,413,11,16899,31858 +33141,269,9,9472,11475 +33142,387,10,14430,76869 +33143,204,9,9593,1226 +33144,273,7,1687,1760 +33145,289,6,9664,1557586 +33146,226,2,9475,1534640 +33147,287,3,312831,1430076 +33148,269,9,271185,24960 +33149,141,7,9472,1548698 +33150,3,5,28063,25826 +33151,179,2,10733,1323092 +33152,387,10,138308,233221 +33153,3,5,27095,1034578 +33154,387,10,9835,57011 +33155,234,1,29362,105885 +33156,234,1,43231,15127 +33157,413,11,2998,4667 +33158,234,1,64437,21647 +33159,27,3,6947,1573089 +33160,3,5,13889,70130 +33161,234,1,29043,13899 +33162,45,9,13483,1402047 +33163,387,10,18616,30870 +33164,234,1,26533,95723 +33165,387,10,42057,6222 +33166,234,1,371818,1592935 +33167,317,10,102305,983547 +33168,328,6,1271,113140 +33169,187,11,4248,1299405 +33170,234,1,34223,22814 +33171,234,1,296136,43553 +33172,387,10,4516,37626 +33173,234,1,16652,35267 +33174,147,1,418437,1816411 +33175,180,7,27114,1072691 +33176,293,2,2675,1674651 +33177,5,10,48118,12734 +33178,387,10,27843,58616 +33179,209,7,49009,1422819 +33180,105,7,157293,1279372 +33181,234,1,47683,1750919 +33182,209,7,442752,1761912 +33183,317,10,13734,144257 +33184,105,7,109074,1606820 +33185,269,9,858,12927 +33186,289,6,36658,1448601 +33187,208,2,146233,1315700 +33188,204,9,48677,6184 +33189,180,7,25376,1310725 +33190,234,1,52302,18598 +33191,413,11,33146,110196 +33192,105,7,15387,75228 +33193,3,5,2323,23969 +33194,317,10,339527,39387 +33195,234,1,52736,106491 +33196,234,1,25143,93223 +33197,234,1,26119,19244 +33198,105,7,46857,1158487 +33199,387,10,140470,117693 +33200,234,1,159638,1141395 +33201,53,2,50838,1208314 +33202,387,10,235,3029 +33203,221,3,10733,1375038 +33204,148,9,9352,1469626 +33205,273,7,11171,68439 +33206,317,10,283445,55499 +33207,291,6,244610,1608247 +33208,53,2,29161,103057 +33209,269,9,294690,1324018 +33210,3,5,47096,25322 +33211,234,1,38875,574068 +33212,3,5,11351,56353 +33213,317,10,321142,150196 +33214,234,1,42216,16544 +33215,387,10,65771,1181 +33216,317,10,115782,1126232 +33217,234,1,245536,1280968 +33218,317,10,25568,77863 +33219,3,5,26036,30288 +33220,396,3,403,1418024 +33221,387,10,117905,1196279 +33222,273,7,426265,1728522 +33223,317,10,440597,228894 +33224,387,10,39957,1682907 +33225,262,6,82,578778 +33226,234,1,128842,1088035 +33227,268,7,76163,1437703 +33228,269,9,42242,1156646 +33229,53,2,49577,1687755 +33230,413,11,21242,1497383 +33231,246,6,283995,1746435 +33232,387,10,137093,15892 +33233,286,3,126958,51621 +33234,105,7,340176,1711426 +33235,52,10,177474,1159968 +33236,273,7,67342,993550 +33237,286,3,102272,26376 +33238,239,5,13668,1579180 +33239,3,5,27543,98151 +33240,188,8,27259,1624420 +33241,141,7,3059,1632341 +33242,273,7,1819,10572 +33243,349,1,12144,1463245 +33244,234,1,67273,550684 +33245,234,1,371504,125544 +33246,357,3,274857,1545929 +33247,317,10,147773,105648 +33248,394,7,284564,1350237 +33249,203,1,116463,1355974 +33250,198,6,181533,1869376 +33251,394,7,10395,1403515 +33252,105,7,109472,1046572 +33253,196,7,638,9419 +33254,395,3,2300,1299533 +33255,273,7,352199,1505492 +33256,232,10,364410,1524268 +33257,387,10,44591,21870 +33258,97,7,8276,1487060 +33259,203,1,126250,1568635 +33260,148,9,256092,1325868 +33261,387,10,28169,1387710 +33262,105,7,20210,73137 +33263,289,6,398289,1637439 +33264,302,9,8870,1724239 +33265,234,1,47405,49555 +33266,203,1,73424,1543344 +33267,262,6,312221,1580896 +33268,413,11,3059,100036 +33269,317,10,106546,154548 +33270,413,11,88953,71131 +33271,415,3,108017,1341675 +33272,3,5,12716,19986 +33273,234,1,43877,97202 +33274,204,9,9443,1047832 +33275,234,1,117629,160 +33276,60,1,121848,118448 +33277,209,7,271714,92391 +33278,53,2,43241,1632895 +33279,234,1,1969,20308 +33280,67,10,214756,1457950 +33281,289,6,14869,1463785 +33282,148,9,9816,59567 +33283,317,10,5333,1495632 +33284,196,7,323435,1571059 +33285,221,3,351211,1652072 +33286,209,7,13056,95842 +33287,3,5,336199,5431 +33288,234,1,69775,88800 +33289,328,6,10796,1398963 +33290,226,2,165,1358074 +33291,413,11,5413,43150 +33292,317,10,39053,45405 +33293,387,10,11007,52696 +33294,143,7,53459,40812 +33295,394,7,122081,1404716 +33296,317,10,39310,122723 +33297,235,5,9946,1009842 +33298,373,7,13380,94243 +33299,53,2,227262,1565939 +33300,5,10,246417,1810503 +33301,5,10,19661,14489 +33302,234,1,9354,4945 +33303,413,11,5177,18831 +33304,317,10,18665,548474 +33305,5,10,12477,72417 +33306,187,11,10733,1372838 +33307,387,10,482,6483 +33308,3,5,280617,1035398 +33309,317,10,49220,57022 +33310,3,5,42571,1292141 +33311,234,1,8985,1086269 +33312,317,10,29911,556841 +33313,234,1,35016,81964 +33314,234,1,188102,64508 +33315,289,6,378236,1840329 +33316,234,1,42132,1076580 +33317,387,10,18937,71267 +33318,53,2,170759,1153039 +33319,204,9,36635,565201 +33320,234,1,24331,25735 +33321,317,10,42674,69973 +33322,3,5,10467,10717 +33323,203,1,277558,1393423 +33324,182,8,9835,1342254 +33325,132,2,49009,1400741 +33326,200,3,198663,1425328 +33327,208,2,107811,1460817 +33328,387,10,356757,1501787 +33329,52,10,8869,57117 +33330,249,7,544,1395025 +33331,317,10,422548,216126 +33332,75,5,146233,151 +33333,75,5,2300,1540340 +33334,317,10,34588,589141 +33335,306,7,9032,17992 +33336,234,1,86520,133518 +33337,413,11,36785,1195528 +33338,3,5,9516,5271 +33339,40,1,1428,1685556 +33340,208,2,62492,999600 +33341,314,2,37534,1412972 +33342,77,10,1811,19224 +33343,203,1,15940,1462381 +33344,387,10,8355,5717 +33345,234,1,307081,20907 +33346,113,9,241239,1468547 +33347,3,5,242310,3115 +33348,234,1,9028,49450 +33349,182,8,241254,1404194 +33350,25,2,309879,1365397 +33351,273,7,82684,5393 +33352,160,3,1966,1398107 +33353,269,9,4806,5670 +33354,166,9,18,1440801 +33355,415,3,2978,27486 +33356,234,1,18897,19359 +33357,143,7,10201,1424167 +33358,317,10,236737,85552 +33359,373,7,72431,1415463 +33360,3,5,40221,57668 +33361,317,10,135652,1102854 +33362,60,1,37581,121047 +33363,148,9,82684,12572 +33364,269,9,4286,32382 +33365,269,9,15873,936638 +33366,234,1,253232,72496 +33367,234,1,11442,33341 +33368,209,7,266856,1337411 +33369,3,5,189621,97048 +33370,46,5,8467,1893226 +33371,413,11,34084,14679 +33372,3,5,79735,1086254 +33373,317,10,320343,53615 +33374,262,6,76203,1393445 +33375,12,10,3933,510 +33376,148,9,31596,102343 +33377,413,11,94568,22599 +33378,234,1,25598,2228 +33379,3,5,241593,1427973 +33380,143,7,332662,1570528 +33381,289,6,149870,1456628 +33382,387,10,116973,70045 +33383,371,3,135679,1103543 +33384,317,10,47342,63937 +33385,234,1,211059,1088940 +33386,203,1,9914,1465673 +33387,387,10,69,407 +33388,317,10,36375,8617 +33389,373,7,35052,117240 +33390,413,11,332979,984103 +33391,317,10,348689,1044894 +33392,381,9,18417,83072 +33393,165,9,8470,1395370 +33394,234,1,27843,58616 +33395,234,1,128111,1086398 +33396,234,1,22093,88309 +33397,273,7,33592,1172321 +33398,60,1,52661,1511704 +33399,52,10,203186,1209290 +33400,234,1,285400,102601 +33401,204,9,25241,1148736 +33402,169,3,19995,1401788 +33403,204,9,82,1316191 +33404,301,5,112531,1055093 +33405,287,3,20481,1373619 +33406,113,9,102382,1347734 +33407,234,1,70800,8741 +33408,387,10,742,11037 +33409,234,1,241968,224870 +33410,234,1,103590,95066 +33411,387,10,72912,567554 +33412,387,10,1259,23606 +33413,3,5,62741,69538 +33414,394,7,376501,1302523 +33415,234,1,59163,132542 +33416,148,9,11889,13008 +33417,204,9,55728,1458273 +33418,188,8,8870,1724263 +33419,87,7,19348,232158 +33420,411,3,1995,5021 +33421,262,6,71668,1827279 +33422,289,6,286192,1711836 +33423,234,1,45211,39463 +33424,3,5,169656,234290 +33425,228,2,379019,1780188 +33426,60,1,2323,1086439 +33427,333,2,22999,4352 +33428,287,3,34223,50726 +33429,176,3,9358,1441283 +33430,317,10,242224,164554 +33431,12,10,23823,56452 +33432,77,10,16135,79491 +33433,53,2,378607,1566585 +33434,77,10,9948,12061 +33435,20,2,954,1725268 +33436,204,9,13162,1532321 +33437,209,7,298,1551539 +33438,234,1,92737,935798 +33439,387,10,108003,174641 +33440,203,1,321039,1303883 +33441,373,7,98066,1403442 +33442,87,7,59678,223202 +33443,108,10,27622,98439 +33444,289,6,49524,1463785 +33445,387,10,178569,34402 +33446,175,5,7326,1391699 +33447,67,10,10539,1450347 +33448,11,6,9514,1642463 +33449,387,10,1659,18436 +33450,3,5,23857,110926 +33451,317,10,24235,91398 +33452,204,9,269173,1379038 +33453,122,8,313922,1616455 +33454,413,11,16358,1457809 +33455,269,9,8847,56071 +33456,277,3,8053,1424684 +33457,234,1,48319,221664 +33458,234,1,84348,1039530 +33459,269,9,70046,1201857 +33460,387,10,94480,15951 +33461,234,1,7551,893 +33462,234,1,174645,1157590 +33463,53,2,43997,1813383 +33464,203,1,125520,1465050 +33465,346,3,10491,1408850 +33466,387,10,6,52035 +33467,5,10,51549,96557 +33468,286,3,103713,1034667 +33469,269,9,99,3630 +33470,203,1,88273,42 +33471,333,2,209112,229801 +33472,83,2,345922,1747983 +33473,357,3,250066,1495527 +33474,269,9,423988,1608351 +33475,286,3,425774,1708029 +33476,127,3,27259,1249092 +33477,234,1,4024,11983 +33478,234,1,58400,138720 +33479,234,1,112531,1055094 +33480,234,1,9428,5655 +33481,234,1,225728,549310 +33482,158,2,76341,1483582 +33483,234,1,48204,45400 +33484,75,5,25796,1399927 +33485,387,10,13580,13778 +33486,387,10,49844,1927 +33487,188,8,2321,91105 +33488,234,1,10829,26475 +33489,53,2,18642,4350 +33490,413,11,336029,2425 +33491,373,7,42309,1434574 +33492,234,1,77056,28615 +33493,53,2,32595,1482378 +33494,239,5,25430,1056671 +33495,262,6,16374,1470213 +33496,387,10,312831,1401474 +33497,166,9,44363,1451405 +33498,204,9,52362,17763 +33499,387,10,132859,121281 +33500,273,7,86241,30629 +33501,387,10,11421,69372 +33502,262,6,41283,1440300 +33503,413,11,69668,53685 +33504,53,2,655,9887 +33505,333,2,25241,1765283 +33506,317,10,61109,89535 +33507,105,7,24140,39558 +33508,303,3,82,1192644 +33509,333,2,379019,1780126 +33510,234,1,949,638 +33511,182,8,209112,1661418 +33512,269,9,26873,96501 +33513,413,11,163376,7510 +33514,53,2,180305,1143244 +33515,273,7,81475,1090410 +33516,413,11,11838,58445 +33517,52,10,43792,132800 +33518,75,5,47112,1536106 +33519,413,11,9836,59780 +33520,317,10,27671,84697 +33521,413,11,57489,961177 +33522,387,10,13852,42379 +33523,234,1,77012,89914 +33524,269,9,84735,23966 +33525,317,10,156917,232314 +33526,333,2,45019,1436494 +33527,234,1,172457,1155084 +33528,333,2,49009,14381 +33529,317,10,14979,81826 +33530,234,1,49277,11523 +33531,53,2,47310,10011 +33532,3,5,1956,10688 +33533,105,7,36236,1259 +33534,317,10,156981,1138214 +33535,317,10,165159,56742 +33536,413,11,262,3661 +33537,234,1,26958,31621 +33538,143,7,280092,1435642 +33539,209,7,334,67695 +33540,3,5,62034,41631 +33541,317,10,20963,86861 +33542,234,1,16962,80948 +33543,15,6,8869,1429246 +33544,234,1,86814,130030 +33545,317,10,261036,87672 +33546,148,9,257345,1423984 +33547,262,6,52454,1540353 +33548,160,3,52520,146143 +33549,269,9,13965,76204 +33550,398,9,27507,9062 +33551,360,3,1271,1391759 +33552,52,10,311291,1315738 +33553,298,5,283445,1494209 +33554,226,2,32868,1300338 +33555,234,1,161898,1171266 +33556,413,11,118490,1363678 +33557,234,1,29798,19707 +33558,182,8,347945,1590395 +33559,234,1,369885,24 +33560,269,9,336050,1548936 +33561,3,5,90799,1312705 +33562,198,6,74,1426783 +33563,34,8,354859,1385150 +33564,148,9,910,13974 +33565,387,10,28663,30521 +33566,413,11,47745,13973 +33567,45,9,62630,1423422 +33568,273,7,127493,4140 +33569,3,5,49508,133439 +33570,234,1,14770,255283 +33571,45,9,41283,1440295 +33572,5,10,47914,95262 +33573,258,9,70695,963843 +33574,234,1,9611,58178 +33575,317,10,226693,1278809 +33576,333,2,241239,1303391 +33577,234,1,48775,1171056 +33578,226,2,72574,566358 +33579,387,10,11364,15344 +33580,105,7,62978,1207486 +33581,269,9,13614,66453 +33582,234,1,187219,16544 +33583,179,2,24420,1322113 +33584,387,10,356758,1029414 +33585,203,1,8464,1581513 +33586,234,1,73600,54441 +33587,234,1,252888,83467 +33588,169,3,10395,1403399 +33589,328,6,69668,1425990 +33590,203,1,14,1457833 +33591,387,10,17136,8501 +33592,317,10,51549,96557 +33593,387,10,4111,34741 +33594,97,7,243940,113090 +33595,148,9,373546,1869437 +33596,291,6,351211,1391689 +33597,45,9,274857,1170536 +33598,113,9,167,14378 +33599,234,1,169934,929851 +33600,333,2,2323,1531899 +33601,373,7,408220,1372424 +33602,209,7,72545,1423004 +33603,413,11,25694,26025 +33604,18,2,67822,7535 +33605,277,3,26390,1407198 +33606,291,6,58,1368867 +33607,53,2,399790,1529869 +33608,3,5,12129,58007 +33609,273,7,2897,26026 +33610,53,2,183827,14867 +33611,273,7,13920,1729 +33612,180,7,46145,120033 +33613,317,10,18387,8328 +33614,398,9,6163,1119259 +33615,198,6,11351,1420156 +33616,269,9,14400,62471 +33617,148,9,19912,1441378 +33618,187,11,10921,1392239 +33619,209,7,9042,1334517 +33620,317,10,15468,24910 +33621,127,3,2503,1074163 +33622,6,3,20174,85768 +33623,234,1,106828,68993 +33624,413,11,16436,1519283 +33625,190,7,4547,1378229 +33626,317,10,89445,10051 +33627,413,11,11131,59977 +33628,387,10,9087,13520 +33629,200,3,333484,1458105 +33630,234,1,98302,48995 +33631,413,11,84354,1017813 +33632,317,10,268853,1359001 +33633,387,10,89086,97986 +33634,317,10,78563,1001625 +33635,273,7,22029,7172 +33636,234,1,287587,1777 +33637,176,3,9358,1441282 +33638,221,3,8619,1378207 +33639,234,1,10754,1126 +33640,190,7,6973,74973 +33641,317,10,94251,556858 +33642,387,10,5924,10931 +33643,234,1,52109,11147 +33644,3,5,310001,1731561 +33645,148,9,339530,1338477 +33646,413,11,791,5584 +33647,143,7,2567,1638 +33648,204,9,49521,1182906 +33649,106,3,8619,60934 +33650,97,7,7299,1433711 +33651,209,7,936,877 +33652,273,7,313922,1315942 +33653,387,10,183171,1184114 +33654,5,10,259694,1233554 +33655,317,10,248376,1141076 +33656,317,10,296194,1336499 +33657,333,2,9354,13942 +33658,273,7,274504,1589 +33659,317,10,191312,1171837 +33660,234,1,175739,148011 +33661,234,1,3513,16589 +33662,304,10,147815,1124962 +33663,269,9,144229,1015791 +33664,373,7,52661,18656 +33665,204,9,14537,552639 +33666,387,10,12528,915 +33667,187,11,244610,1542741 +33668,269,9,82448,927986 +33669,310,3,257331,1304601 +33670,273,7,10097,63357 +33671,53,2,99579,411527 +33672,204,9,18467,1020784 +33673,234,1,99909,34751 +33674,203,1,8852,27581 +33675,291,6,42188,15909 +33676,3,5,16417,1273378 +33677,413,11,11472,1215 +33678,127,3,22584,4130 +33679,234,1,156326,13899 +33680,273,7,337,5070 +33681,373,7,245692,28686 +33682,155,3,10193,12897 +33683,46,5,11610,557873 +33684,204,9,13336,1313064 +33685,52,10,67531,111407 +33686,234,1,19108,84102 +33687,3,5,3064,12846 +33688,387,10,19101,2163 +33689,105,7,266285,1015 +33690,373,7,15653,1341854 +33691,373,7,12536,1559636 +33692,269,9,89591,59856 +33693,268,7,2046,1406388 +33694,60,1,10440,578324 +33695,317,10,170689,129433 +33696,234,1,36658,9032 +33697,3,5,120259,9103 +33698,234,1,131475,1086386 +33699,234,1,12523,18710 +33700,3,5,7555,22818 +33701,286,3,315335,46018 +33702,3,5,166621,1312705 +33703,3,5,459,6244 +33704,373,7,10972,1555189 +33705,317,10,104193,140624 +33706,234,1,55730,129708 +33707,317,10,246415,1439368 +33708,413,11,84226,583875 +33709,234,1,30959,76978 +33710,317,10,105906,38595 +33711,317,10,204384,1186770 +33712,269,9,81223,3563 +33713,314,2,50126,1667923 +33714,234,1,20108,10346 +33715,203,1,11247,1429253 +33716,317,10,269797,1236098 +33717,317,10,155605,1136961 +33718,269,9,332806,1325591 +33719,160,3,4147,142157 +33720,387,10,9076,51601 +33721,52,10,14370,12991 +33722,317,10,66741,131184 +33723,413,11,362045,1287324 +33724,413,11,29376,13984 +33725,60,1,24469,1319629 +33726,317,10,155556,1136921 +33727,143,7,15092,1357061 +33728,3,5,390,5271 +33729,413,11,8204,493 +33730,234,1,52803,567147 +33731,234,1,11175,15140 +33732,234,1,13358,80523 +33733,148,9,10070,25300 +33734,219,11,8467,1428834 +33735,387,10,120972,14353 +33736,234,1,175739,1260700 +33737,387,10,238985,103382 +33738,234,1,16987,1032103 +33739,52,10,43316,1154120 +33740,413,11,12593,73277 +33741,333,2,39979,1743932 +33742,289,6,9928,87059 +33743,291,6,9314,1401432 +33744,413,11,362439,1365970 +33745,105,7,54752,6357 +33746,232,10,62397,5811 +33747,413,11,32868,1013630 +33748,387,10,76163,16483 +33749,413,11,372226,567213 +33750,413,11,65496,543838 +33751,304,10,64948,142167 +33752,234,1,17003,53068 +33753,273,7,1450,6377 +33754,413,11,70666,54581 +33755,75,5,376394,1559476 +33756,234,1,5048,30309 +33757,234,1,39045,176063 +33758,234,1,14414,102445 +33759,204,9,33025,9062 +33760,273,7,29100,13902 +33761,234,1,19936,85336 +33762,298,5,332567,1644252 +33763,317,10,257454,39853 +33764,387,10,18405,966400 +33765,169,3,325173,1191308 +33766,52,10,76163,44064 +33767,234,1,211710,238433 +33768,175,5,5289,1409745 +33769,403,10,25918,1024561 +33770,387,10,68721,1239407 +33771,273,7,10740,2949 +33772,97,7,21742,94243 +33773,3,5,16249,57314 +33774,52,10,72105,52139 +33775,180,7,42502,1570376 +33776,217,3,8470,1553010 +33777,203,1,410118,1712241 +33778,3,5,228205,6800 +33779,234,1,77067,585785 +33780,262,6,82,15022 +33781,53,2,16176,10221 +33782,387,10,219247,1112051 +33783,317,10,83860,844266 +33784,213,10,99283,42063 +33785,234,1,31984,108681 +33786,182,8,9532,1441259 +33787,333,2,17744,74693 +33788,273,7,16096,12994 +33789,234,1,67174,1041223 +33790,234,1,35856,235136 +33791,234,1,377587,119419 +33792,387,10,26693,1111194 +33793,204,9,245700,1434859 +33794,413,11,89492,1459254 +33795,286,3,56191,1368033 +33796,148,9,184795,577785 +33797,160,3,13056,1235815 +33798,104,7,9593,1545540 +33799,373,7,244610,1338481 +33800,269,9,11329,5508 +33801,234,1,42852,10790 +33802,234,1,338438,22467 +33803,105,7,188927,15347 +33804,234,1,355890,1475136 +33805,204,9,73194,8506 +33806,413,11,522,541 +33807,169,3,24810,1378699 +33808,387,10,11853,6912 +33809,234,1,46586,136975 +33810,317,10,34588,299644 +33811,234,1,11133,18069 +33812,204,9,1966,1050634 +33813,204,9,11521,1538213 +33814,45,9,337339,1387181 +33815,394,7,225728,117238 +33816,234,1,319396,1018948 +33817,413,11,62071,43913 +33818,219,11,11370,1581147 +33819,413,11,5,1041072 +33820,12,10,27814,1419418 +33821,306,7,1394,1707530 +33822,413,11,39982,17949 +33823,394,7,8292,1395022 +33824,394,7,203819,1355536 +33825,3,5,296941,1457040 +33826,190,7,376501,1792356 +33827,234,1,110887,11435 +33828,333,2,1715,18788 +33829,317,10,252028,544559 +33830,269,9,382591,1177107 +33831,413,11,61548,1267869 +33832,317,10,278706,1344796 +33833,226,2,11045,1408278 +33834,175,5,57419,1601706 +33835,387,10,44718,175646 +33836,53,2,44458,64495 +33837,74,5,274857,1829853 +33838,60,1,11610,950637 +33839,196,7,59115,1830880 +33840,204,9,88036,184986 +33841,234,1,3870,4956 +33842,3,5,54801,103237 +33843,234,1,173634,134804 +33844,204,9,296524,66521 +33845,269,9,42307,112685 +33846,317,10,182228,76462 +33847,143,7,779,11581 +33848,60,1,137504,1530402 +33849,45,9,76341,1518774 +33850,204,9,24453,9024 +33851,127,3,186869,1860638 +33852,413,11,4923,69734 +33853,234,1,156597,1024441 +33854,327,7,308269,1447903 +33855,413,11,126712,34079 +33856,192,5,337339,1725763 +33857,413,11,13654,1455209 +33858,273,7,218784,1525811 +33859,413,11,96458,1009378 +33860,5,10,49308,1351626 +33861,245,3,8916,20739 +33862,113,9,309879,1621472 +33863,3,5,2608,4950 +33864,387,10,176079,934032 +33865,5,10,30202,70449 +33866,413,11,358924,1741050 +33867,3,5,2453,28240 +33868,413,11,2135,10957 +33869,132,2,10733,1404306 +33870,317,10,108312,1043809 +33871,7,3,118,1855217 +33872,387,10,11688,11 +33873,387,10,552,7554 +33874,3,5,212713,10005 +33875,187,11,59115,1373427 +33876,234,1,53459,100734 +33877,161,6,329865,1646603 +33878,234,1,18148,95501 +33879,239,5,298584,1619736 +33880,273,7,84823,1620085 +33881,394,7,105,1544697 +33882,273,7,27526,7066 +33883,415,3,14676,1542113 +33884,3,5,1396,55518 +33885,234,1,152113,1132460 +33886,286,3,285685,983091 +33887,234,1,64465,35256 +33888,317,10,13996,77121 +33889,3,5,29143,14536 +33890,203,1,333371,1409258 +33891,3,5,6973,151 +33892,175,5,435,1392106 +33893,391,9,369885,1790904 +33894,413,11,244268,53713 +33895,317,10,51800,1283569 +33896,269,9,209263,21568 +33897,196,7,9532,1334485 +33898,3,5,149511,26962 +33899,208,2,280092,1430989 +33900,387,10,14136,5837 +33901,204,9,304372,13933 +33902,3,5,10665,11958 +33903,234,1,340190,564948 +33904,5,10,46563,18739 +33905,66,11,1480,103673 +33906,204,9,118283,565201 +33907,317,10,259292,94762 +33908,269,9,254007,1448761 +33909,273,7,30624,14647 +33910,176,3,9457,1392894 +33911,405,8,14430,1413006 +33912,302,9,228066,1574051 +33913,181,7,1640,1551222 +33914,262,6,248087,43652 +33915,269,9,264397,1324068 +33916,75,5,2978,1405722 +33917,387,10,62211,225976 +33918,45,9,59965,582943 +33919,333,2,40139,141417 +33920,387,10,4285,15003 +33921,234,1,29108,68687 +33922,225,7,443319,1888989 +33923,62,3,329865,1646517 +33924,234,1,84772,931236 +33925,182,8,9882,1774046 +33926,182,8,924,1419268 +33927,360,3,188826,1583224 +33928,52,10,15264,1159337 +33929,148,9,58244,6053 +33930,415,3,222935,1567986 +33931,413,11,75,541 +33932,413,11,2105,1217 +33933,166,9,2666,1392667 +33934,286,3,68822,1580993 +33935,24,5,12,1556611 +33936,387,10,27622,14676 +33937,234,1,48281,82641 +33938,234,1,164366,1180434 +33939,411,9,56292,22061 +33940,387,10,197696,956657 +33941,273,7,11456,9989 +33942,209,7,294272,1531504 +33943,317,10,99351,424215 +33944,373,7,258193,113838 +33945,413,11,10119,63748 +33946,289,6,109329,11427 +33947,148,9,84226,1418417 +33948,5,10,172475,1158037 +33949,105,7,924,50216 +33950,132,2,146243,1583081 +33951,387,10,8882,72769 +33952,317,10,42260,2725 +33953,234,1,26686,18378 +33954,317,10,82321,921570 +33955,317,10,8088,309 +33956,234,1,60086,79490 +33957,317,10,28370,63550 +33958,413,11,5425,101099 +33959,234,1,176124,55441 +33960,234,1,43546,21506 +33961,234,1,18082,83174 +33962,160,3,220820,1405264 +33963,245,3,353533,1886205 +33964,287,3,44932,50726 +33965,234,1,47745,49064 +33966,244,3,693,1530870 +33967,413,11,111839,154 +33968,5,10,899,13788 +33969,413,11,200505,52450 +33970,53,2,245703,1193620 +33971,398,9,202337,1404918 +33972,273,7,9703,9152 +33973,317,10,119738,52080 +33974,317,10,141489,6210 +33975,148,9,48949,35500 +33976,239,5,8467,1552506 +33977,97,7,157847,1372207 +33978,77,10,10071,62831 +33979,273,7,29610,63964 +33980,413,11,9609,58177 +33981,234,1,36402,574068 +33982,5,10,38761,232183 +33983,158,2,76757,1482847 +33984,234,1,244001,1057655 +33985,203,1,64972,1015922 +33986,411,9,330459,11296 +33987,387,10,10874,64184 +33988,317,10,44773,88134 +33989,20,2,14,1203910 +33990,204,9,9354,37429 +33991,250,11,341174,62723 +33992,234,1,9358,4755 +33993,77,10,10754,1126 +33994,317,10,232739,357113 +33995,204,9,113148,983971 +33996,413,11,10999,21244 +33997,387,10,108222,120464 +33998,234,1,11321,20646 +33999,127,3,890,14630 +34000,234,1,22701,1594345 +34001,175,5,354287,1177850 +34002,234,1,148615,73150 +34003,37,3,15472,927979 +34004,273,7,44693,72175 +34005,234,1,16666,436081 +34006,357,3,10529,1567323 +34007,105,7,17467,1000614 +34008,217,3,11351,1440848 +34009,333,2,9286,1441344 +34010,234,1,262975,1072277 +34011,317,10,119172,1069297 +34012,273,7,152100,1688240 +34013,203,1,49963,1400540 +34014,387,10,32093,5031 +34015,75,5,15019,1287168 +34016,387,10,78802,2358 +34017,60,1,201429,1376329 +34018,3,5,121230,1283798 +34019,234,1,74924,12011 +34020,304,10,110573,39206 +34021,3,5,139718,78387 +34022,72,11,9836,1438652 +34023,234,1,93114,996681 +34024,53,2,3059,100036 +34025,175,5,376501,1283961 +34026,105,7,152113,20682 +34027,105,7,362045,1544699 +34028,234,1,8985,225103 +34029,250,11,376501,1404196 +34030,234,1,19621,3224 +34031,234,1,63096,13980 +34032,97,7,102428,1381236 +34033,387,10,171337,55916 +34034,296,3,13162,1532323 +34035,75,5,41312,5629 +34036,387,10,753,11147 +34037,198,6,228066,1531511 +34038,413,11,356482,1870617 +34039,232,10,391438,1371169 +34040,317,10,89688,937722 +34041,55,5,23966,1419802 +34042,210,9,45527,1896721 +34043,146,5,293167,1759758 +34044,141,7,664,932186 +34045,168,3,924,1733237 +34046,234,1,18070,33651 +34047,333,2,91333,1513812 +34048,234,1,137381,1107213 +34049,77,10,10033,62237 +34050,53,2,54022,18321 +34051,87,7,1073,13225 +34052,225,7,13205,8763 +34053,317,10,14823,80384 +34054,113,9,168259,1405376 +34055,3,5,173638,14456 +34056,148,9,13075,7440 +34057,234,1,52868,8538 +34058,333,2,10053,1457836 +34059,3,5,15321,943 +34060,415,3,59297,1658450 +34061,270,9,10066,1751460 +34062,3,5,351365,33960 +34063,415,3,214756,1459725 +34064,3,5,43751,4376 +34065,3,5,26486,23969 +34066,402,11,1480,13350 +34067,388,9,1271,1394746 +34068,365,6,287233,1457649 +34069,90,3,544,29217 +34070,53,2,131764,1486063 +34071,387,10,4133,818 +34072,413,11,407806,1066326 +34073,148,9,31713,33227 +34074,413,11,369885,23781 +34075,387,10,12780,65980 +34076,204,9,43903,935682 +34077,317,10,242835,1213874 +34078,239,5,228066,1574041 +34079,97,7,17144,13175 +34080,387,10,12476,21155 +34081,394,7,103332,1404716 +34082,287,3,14029,68262 +34083,413,11,36253,71398 +34084,413,11,1628,18223 +34085,175,5,262338,75116 +34086,5,10,65488,1374921 +34087,204,9,57866,8622 +34088,304,10,156360,81166 +34089,234,1,115332,18854 +34090,158,2,298,1551151 +34091,387,10,57103,233508 +34092,286,3,96987,61550 +34093,182,8,263115,1367502 +34094,234,1,348315,742142 +34095,3,5,1420,6117 +34096,181,7,1579,1378171 +34097,317,10,72648,1076175 +34098,273,7,6145,8320 +34099,75,5,9475,1549590 +34100,317,10,45726,40054 +34101,234,1,24914,56342 +34102,269,9,26983,31502 +34103,413,11,345915,4671 +34104,286,3,209764,1294085 +34105,395,3,10198,65531 +34106,204,9,34723,20786 +34107,64,6,13676,1447576 +34108,179,2,200,1319747 +34109,317,10,36247,567063 +34110,148,9,5917,906 +34111,234,1,5965,42365 +34112,273,7,102155,30130 +34113,234,1,92060,4610 +34114,413,11,88075,12143 +34115,97,7,21786,1336914 +34116,317,10,110598,72402 +34117,317,10,25330,11505 +34118,306,7,9441,17992 +34119,207,3,241239,76003 +34120,234,1,114872,127522 +34121,387,10,342765,553252 +34122,413,11,331958,1126411 +34123,143,7,63215,1023637 +34124,273,7,43596,28877 +34125,3,5,338079,1461571 +34126,262,6,181533,1869384 +34127,413,11,15177,77971 +34128,387,10,157343,74879 +34129,66,11,9475,1627721 +34130,161,6,329865,1646548 +34131,234,1,79853,588123 +34132,387,10,82368,31892 +34133,196,7,809,1412985 +34134,325,5,75564,549026 +34135,3,5,42252,16189 +34136,234,1,237549,1246494 +34137,234,1,18117,73875 +34138,287,3,4248,1667251 +34139,182,8,271404,1764803 +34140,3,5,96433,13338 +34141,234,1,79506,29433 +34142,413,11,7305,493 +34143,113,9,9836,1745222 +34144,160,3,613,230000 +34145,273,7,112304,11468 +34146,242,9,43268,8508 +34147,413,11,55433,222357 +34148,234,1,53179,20718 +34149,162,6,638,9566 +34150,269,9,1374,10187 +34151,77,10,7549,52912 +34152,3,5,284296,41909 +34153,204,9,46872,118225 +34154,269,9,359412,1317897 +34155,273,7,20123,53908 +34156,3,5,46261,16425 +34157,273,7,1415,32601 +34158,413,11,22279,10725 +34159,234,1,206183,19032 +34160,268,7,110412,1314343 +34161,196,7,19142,1417014 +34162,333,2,84226,1418419 +34163,289,6,2046,92470 +34164,85,10,70122,1809179 +34165,204,9,10804,1387370 +34166,179,2,69668,1425999 +34167,203,1,11017,1400356 +34168,413,11,261037,59473 +34169,234,1,191562,81675 +34170,182,8,6163,1905088 +34171,387,10,56162,32632 +34172,273,7,187596,4500 +34173,317,10,254689,77699 +34174,346,3,21927,1416958 +34175,53,2,9461,1638089 +34176,46,5,10320,1567920 +34177,387,10,82684,7040 +34178,190,7,266856,1650817 +34179,317,10,135708,45421 +34180,333,2,2577,26195 +34181,314,2,13162,1532327 +34182,317,10,44099,3157 +34183,333,2,357706,1642552 +34184,273,7,100088,1023422 +34185,387,10,11377,69157 +34186,141,7,77459,39651 +34187,317,10,51881,11920 +34188,234,1,254439,933735 +34189,275,9,325712,1647587 +34190,387,10,38322,1777724 +34191,317,10,388862,22814 +34192,234,1,39545,123132 +34193,317,10,365997,77863 +34194,360,3,8247,1701155 +34195,273,7,43093,73248 +34196,10,3,11045,137483 +34197,317,10,62837,590053 +34198,387,10,858,12920 +34199,303,3,2454,33931 +34200,104,7,214756,74973 +34201,99,3,38404,120333 +34202,262,6,8915,1337467 +34203,234,1,25716,17282 +34204,160,3,1481,1418813 +34205,327,7,40466,1371037 +34206,394,7,269173,1379046 +34207,234,1,222715,74091 +34208,221,3,9593,1877139 +34209,53,2,197,606 +34210,387,10,16005,17329 +34211,373,7,16342,1410126 +34212,349,1,9982,1713703 +34213,387,10,153397,63120 +34214,53,2,43379,25802 +34215,317,10,76681,21155 +34216,234,1,220809,1205890 +34217,204,9,2144,8221 +34218,245,3,40998,1640322 +34219,273,7,87296,18609 +34220,269,9,335778,5672 +34221,387,10,11601,508 +34222,269,9,23515,100964 +34223,52,10,17496,1193568 +34224,317,10,395883,1614855 +34225,269,9,8457,7716 +34226,53,2,128215,1060979 +34227,360,3,100110,1370959 +34228,413,11,42764,38590 +34229,83,2,107250,1834272 +34230,3,5,67,759 +34231,269,9,130593,26141 +34232,413,11,47143,1016336 +34233,289,6,10539,1454754 +34234,3,5,62694,12279 +34235,204,9,398633,1623932 +34236,273,7,76438,578853 +34237,273,7,201085,51897 +34238,60,1,276906,108758 +34239,5,10,80443,556491 +34240,413,11,353979,51899 +34241,387,10,174751,1295292 +34242,387,10,352199,1186192 +34243,148,9,2525,25803 +34244,317,10,347979,1202316 +34245,234,1,127803,1085814 +34246,413,11,9753,59395 +34247,273,7,159128,1015883 +34248,208,2,26688,1319384 +34249,273,7,8470,40384 +34250,20,2,206647,1551777 +34251,317,10,401222,1632442 +34252,288,3,148284,587735 +34253,387,10,282762,1343584 +34254,179,2,7551,6924 +34255,5,10,284293,1385486 +34256,3,5,37315,7067 +34257,182,8,318781,1622814 +34258,234,1,17893,56470 +34259,196,7,18843,1610248 +34260,52,10,382951,1319346 +34261,413,11,167262,107201 +34262,387,10,116973,95637 +34263,269,9,163870,551587 +34264,7,3,2105,1552182 +34265,60,1,70801,97774 +34266,203,1,94348,1533038 +34267,234,1,244971,1270261 +34268,317,10,195763,225055 +34269,273,7,20544,19155 +34270,53,2,288694,135161 +34271,286,3,52369,45843 +34272,234,1,245700,65452 +34273,317,10,378236,89112 +34274,387,10,417678,225499 +34275,387,10,194104,1088582 +34276,3,5,270899,32506 +34277,387,10,1963,1188 +34278,268,7,194,1551976 +34279,179,2,365942,1738145 +34280,53,2,29368,10011 +34281,394,7,236324,128500 +34282,273,7,217038,1201672 +34283,373,7,298584,1375918 +34284,273,7,258480,1225 +34285,411,9,954,10197 +34286,53,2,327528,1424454 +34287,387,10,10663,19292 +34288,45,9,193893,1635172 +34289,234,1,14518,134656 +34290,328,6,8915,1002652 +34291,327,7,240913,1439527 +34292,234,1,211166,8577 +34293,262,6,8916,1416298 +34294,269,9,58918,1577009 +34295,175,5,1586,1406051 +34296,198,6,302026,1570596 +34297,402,11,17136,29997 +34298,60,1,285270,1367933 +34299,160,3,270303,76674 +34300,52,10,413052,236013 +34301,387,10,14128,69417 +34302,127,3,290825,996220 +34303,289,6,291270,1584370 +34304,317,10,359105,1510224 +34305,413,11,44287,721 +34306,317,10,40925,96948 +34307,317,10,336811,1169243 +34308,200,3,9297,1462705 +34309,317,10,333103,1448116 +34310,387,10,11296,67559 +34311,340,2,283995,1330856 +34312,12,10,8010,28902 +34313,413,11,77887,8071 +34314,387,10,30034,86372 +34315,53,2,10665,59430 +34316,413,11,414977,1676766 +34317,92,7,8869,1552603 +34318,387,10,43369,41416 +34319,13,9,378441,1797452 +34320,53,2,118760,1734727 +34321,53,2,20287,6924 +34322,317,10,74510,55638 +34323,187,11,124470,1448298 +34324,287,3,339342,1434899 +34325,187,11,4547,8158 +34326,333,2,73348,7689 +34327,411,9,11024,7234 +34328,328,6,356752,1636714 +34329,234,1,43002,73256 +34330,286,3,72574,1258 +34331,204,9,31347,1352126 +34332,132,2,17495,1208880 +34333,301,5,15476,1392974 +34334,317,10,246133,1224999 +34335,234,1,29116,103065 +34336,135,3,3172,1538449 +34337,143,7,41970,32804 +34338,273,7,387558,27265 +34339,234,1,11374,6159 +34340,337,2,1579,1643668 +34341,234,1,18998,83996 +34342,234,1,210615,32096 +34343,87,7,219466,1544338 +34344,72,11,315664,1413848 +34345,317,10,223391,1300499 +34346,87,7,93856,1547196 +34347,3,5,382597,52353 +34348,381,9,2567,1402022 +34349,234,1,71099,97646 +34350,5,10,24685,92306 +34351,413,11,6877,2484 +34352,413,11,38322,1217 +34353,317,10,61473,956434 +34354,158,2,59965,1395030 +34355,234,1,387999,442286 +34356,387,10,779,11574 +34357,209,7,9358,1411856 +34358,387,10,4011,913 +34359,269,9,25528,1120187 +34360,317,10,72057,105866 +34361,3,5,779,11593 +34362,349,1,81188,1447506 +34363,200,3,4248,1202352 +34364,413,11,46094,69677 +34365,317,10,38065,86037 +34366,413,11,58886,19989 +34367,234,1,39053,45407 +34368,257,3,263115,1434988 +34369,53,2,4307,36274 +34370,317,10,301304,143073 +34371,413,11,5494,15806 +34372,234,1,13654,60725 +34373,3,5,45800,16750 +34374,75,5,277355,1495871 +34375,317,10,27079,96903 +34376,139,3,68004,18897 +34377,234,1,9655,58375 +34378,204,9,76333,1506441 +34379,317,10,104391,5602 +34380,333,2,16432,23619 +34381,234,1,9893,54597 +34382,203,1,179154,1415026 +34383,209,7,12103,6882 +34384,234,1,85699,5636 +34385,196,7,2567,92389 +34386,22,9,755,1851737 +34387,60,1,105833,1199753 +34388,413,11,1497,8751 +34389,333,2,88953,1537387 +34390,204,9,12639,103471 +34391,175,5,100770,1398553 +34392,160,3,242,8432 +34393,234,1,117099,1065008 +34394,413,11,9076,56921 +34395,273,7,77056,68064 +34396,3,5,5618,45668 +34397,262,6,10193,1299484 +34398,175,5,218778,161159 +34399,306,7,33364,13867 +34400,234,1,39907,227703 +34401,53,2,98536,4127 +34402,234,1,248833,1284181 +34403,204,9,46145,118290 +34404,373,7,4806,1404218 +34405,204,9,293863,1324015 +34406,5,10,2259,23330 +34407,148,9,39407,12348 +34408,317,10,24886,1829627 +34409,5,10,170234,70258 +34410,187,11,333352,1547656 +34411,219,11,2105,1552188 +34412,157,3,90110,98550 +34413,208,2,58,406204 +34414,20,2,442752,1761891 +34415,234,1,48205,28615 +34416,273,7,25376,553927 +34417,317,10,81225,584713 +34418,234,1,99863,84641 +34419,204,9,59803,86701 +34420,204,9,22007,67242 +34421,72,11,14254,1204244 +34422,97,7,11370,1353257 +34423,12,10,10870,24530 +34424,175,5,11377,1602861 +34425,413,11,22020,957930 +34426,394,7,354859,1333223 +34427,269,9,266082,1151828 +34428,314,2,3172,1553246 +34429,67,10,15213,1462624 +34430,234,1,211144,29693 +34431,268,7,117120,1437960 +34432,234,1,29111,88820 +34433,52,10,24822,115906 +34434,317,10,61552,221490 +34435,373,7,14254,1341138 +34436,317,10,365065,1526016 +34437,204,9,81522,32350 +34438,333,2,703,1338883 +34439,179,2,200505,1327146 +34440,3,5,42139,37736 +34441,169,3,348631,1865197 +34442,234,1,20106,85340 +34443,122,8,4248,1616772 +34444,209,7,8870,1401305 +34445,234,1,354859,2589 +34446,387,10,12221,73752 +34447,180,7,24750,8889 +34448,226,2,24624,1540854 +34449,234,1,12112,71307 +34450,3,5,10930,16732 +34451,5,10,77000,230408 +34452,168,3,9902,1733237 +34453,234,1,217948,4065 +34454,413,11,2750,28157 +34455,234,1,88491,937230 +34456,3,5,2144,8677 +34457,317,10,262447,545763 +34458,204,9,32166,5390 +34459,234,1,8852,11770 +34460,234,1,401164,1632160 +34461,273,7,49521,947 +34462,99,3,38775,121341 +34463,387,10,580,8554 +34464,6,3,286192,1711830 +34465,387,10,3989,34517 +34466,387,10,52360,30208 +34467,3,5,111470,14864 +34468,203,1,285860,1485943 +34469,204,9,10529,1368859 +34470,238,7,10865,8158 +34471,317,10,129,608 +34472,55,5,107073,1481504 +34473,387,10,9286,57134 +34474,387,10,227306,1223 +34475,226,2,39867,1437611 +34476,234,1,424643,1704787 +34477,317,10,17681,96342 +34478,3,5,150201,1448872 +34479,273,7,46494,88643 +34480,53,2,10749,1566063 +34481,52,10,28031,73628 +34482,181,7,48116,233651 +34483,234,1,103972,1062347 +34484,317,10,281418,1311747 +34485,3,5,79382,25646 +34486,87,7,273481,1551040 +34487,53,2,42418,1466672 +34488,413,11,2355,24187 +34489,203,1,330947,1400835 +34490,190,7,54845,9385 +34491,37,3,744,1463185 +34492,210,9,340101,1865918 +34493,53,2,445993,1191185 +34494,273,7,35008,1070000 +34495,387,10,8088,309 +34496,333,2,7219,16597 +34497,127,3,41211,1670734 +34498,413,11,169343,1151386 +34499,317,10,24797,84648 +34500,317,10,76341,20629 +34501,415,3,43093,102782 +34502,234,1,14609,87170 +34503,293,2,302026,1570583 +34504,413,11,69974,557661 +34505,394,7,294652,600368 +34506,387,10,4538,17881 +34507,161,6,74,1868866 +34508,20,2,354859,17092 +34509,234,1,27637,66889 +34510,3,5,10594,59590 +34511,273,7,1817,5553 +34512,234,1,23152,10601 +34513,3,5,319993,931382 +34514,75,5,10804,1405239 +34515,327,7,163,1364410 +34516,148,9,9914,60410 +34517,200,3,398289,1637441 +34518,317,10,231616,1270003 +34519,234,1,154972,16672 +34520,46,5,638,9373 +34521,105,7,49688,1655283 +34522,143,7,210913,1405254 +34523,317,10,82624,913622 +34524,234,1,25801,237252 +34525,77,10,14565,61551 +34526,234,1,10867,65314 +34527,52,10,192023,1172463 +34528,53,2,5590,18214 +34529,413,11,239103,16931 +34530,415,3,238,96912 +34531,234,1,139563,67924 +34532,3,5,27622,98442 +34533,394,7,11577,1299143 +34534,234,1,48495,145210 +34535,234,1,325173,78108 +34536,413,11,678,10151 +34537,317,10,414067,209211 +34538,387,10,3423,25183 +34539,75,5,51947,1650016 +34540,269,9,172897,1155578 +34541,113,9,2503,1340110 +34542,134,3,8916,1705 +34543,269,9,72917,1152354 +34544,234,1,31003,127614 +34545,234,1,153854,1134669 +34546,394,7,14128,1415618 +34547,53,2,42476,1486306 +34548,317,10,84352,179612 +34549,148,9,283445,1548084 +34550,166,9,56937,1336926 +34551,105,7,56601,10494 +34552,269,9,30973,1361753 +34553,273,7,117251,6049 +34554,105,7,96724,11269 +34555,413,11,59231,2988 +34556,53,2,11003,42909 +34557,387,10,86297,2665 +34558,208,2,163,1319166 +34559,289,6,2300,1205985 +34560,226,2,124963,32353 +34561,327,7,28,1189045 +34562,289,6,13682,1460439 +34563,175,5,16921,1144823 +34564,317,10,140818,1261968 +34565,80,3,107073,1481516 +34566,226,2,293167,1759807 +34567,3,5,53766,558286 +34568,5,10,84971,117693 +34569,413,11,121003,1067439 +34570,269,9,16235,16595 +34571,154,3,94727,1840038 +34572,213,10,134475,34741 +34573,234,1,52395,63904 +34574,413,11,50463,1061 +34575,3,5,3036,293 +34576,317,10,71066,1665790 +34577,234,1,126043,357113 +34578,269,9,329010,1094153 +34579,74,5,14,1753763 +34580,234,1,19604,101486 +34581,273,7,1959,2289 +34582,317,10,20919,62342 +34583,306,7,339403,1635187 +34584,305,9,401164,1817485 +34585,234,1,455601,19509 +34586,198,6,177677,1545979 +34587,74,5,27259,1861246 +34588,413,11,140894,56916 +34589,262,6,188927,1459914 +34590,413,11,4344,40465 +34591,270,9,17609,1400323 +34592,234,1,24235,91397 +34593,105,7,13162,59706 +34594,239,5,294254,1571517 +34595,234,1,86049,15378 +34596,52,10,30308,58232 +34597,97,7,24556,9444 +34598,77,10,8464,55150 +34599,148,9,13346,112307 +34600,105,7,42764,105353 +34601,273,7,42094,47452 +34602,105,7,12079,64809 +34603,187,11,1481,58104 +34604,234,1,14217,20310 +34605,387,10,8272,54240 +34606,5,10,54801,1358324 +34607,273,7,169343,1151390 +34608,53,2,228970,227225 +34609,203,1,82624,1600783 +34610,317,10,337012,1871971 +34611,387,10,354979,1035 +34612,3,5,19176,4501 +34613,317,10,21032,106850 +34614,87,7,252680,1547450 +34615,3,5,359412,967417 +34616,387,10,44869,559101 +34617,333,2,84720,29813 +34618,413,11,61225,21012 +34619,273,7,11257,54449 +34620,413,11,131194,11072 +34621,11,6,17654,1401808 +34622,317,10,220287,1513394 +34623,317,10,256520,1295092 +34624,3,5,190955,66842 +34625,262,6,8329,1637494 +34626,3,5,61988,9103 +34627,273,7,52864,29810 +34628,226,2,278621,1415886 +34629,260,2,266856,1421642 +34630,158,2,167,1532198 +34631,317,10,66756,548474 +34632,105,7,356500,1419367 +34633,34,8,131737,1542371 +34634,60,1,30583,564573 +34635,209,7,2731,1565159 +34636,203,1,47342,95846 +34637,75,5,5237,63939 +34638,234,1,41574,124796 +34639,234,1,85735,56405 +34640,3,5,10652,16589 +34641,387,10,10909,69041 +34642,387,10,463800,1651530 +34643,273,7,12477,72419 +34644,105,7,13042,1463824 +34645,387,10,330770,17627 +34646,317,10,319396,1430294 +34647,105,7,409447,1699520 +34648,273,7,183962,19640 +34649,360,9,52661,1582469 +34650,132,2,12573,1413224 +34651,196,7,4982,1404217 +34652,5,10,153102,226856 +34653,226,2,18417,83064 +34654,277,3,338518,1478050 +34655,105,7,34459,1569277 +34656,325,5,1966,958401 +34657,317,10,292033,1212985 +34658,87,7,11517,71130 +34659,234,1,14815,8328 +34660,234,1,44552,1081836 +34661,203,1,8988,1390538 +34662,317,10,395914,1614737 +34663,259,3,9472,92759 +34664,234,1,248888,1258313 +34665,3,5,8989,9965 +34666,317,10,121888,32209 +34667,45,9,127585,1384363 +34668,234,1,156988,103111 +34669,143,7,875,13339 +34670,234,1,20174,85758 +34671,52,10,38322,58144 +34672,3,5,116327,117025 +34673,234,1,200727,63820 +34674,286,3,414610,1084541 +34675,269,9,429838,1734255 +34676,234,1,13459,80948 +34677,239,5,857,1403544 +34678,273,7,42683,29810 +34679,413,11,18209,14931 +34680,20,2,338,1585866 +34681,413,11,126250,1069614 +34682,317,10,63538,86895 +34683,140,9,2454,1447524 +34684,64,6,429838,1734267 +34685,327,7,10909,1551258 +34686,207,3,76757,1482849 +34687,234,1,44470,172805 +34688,104,7,28176,1546882 +34689,198,6,294272,1590409 +34690,234,1,228294,75891 +34691,413,11,10550,13227 +34692,105,7,102272,5240 +34693,52,10,27873,1338128 +34694,204,9,58372,1890 +34695,317,10,316268,1410540 +34696,317,10,58904,76100 +34697,208,2,332567,1636656 +34698,97,7,137145,1542309 +34699,234,1,195022,1309787 +34700,317,10,76829,26360 +34701,273,7,335778,14351 +34702,169,3,222935,1726773 +34703,317,10,339419,71872 +34704,269,9,102382,5670 +34705,166,9,6947,1389568 +34706,240,7,8470,1840112 +34707,387,10,693,10387 +34708,413,11,42683,2761 +34709,204,9,125736,17763 +34710,317,10,55615,1126288 +34711,399,9,10198,1461382 +34712,210,9,544,1780209 +34713,175,5,13056,1406051 +34714,373,7,157424,1375918 +34715,209,7,1125,1551521 +34716,203,1,280092,1451999 +34717,317,10,58007,132188 +34718,234,1,17111,81251 +34719,387,10,77137,85551 +34720,346,3,9593,1877142 +34721,185,11,924,1733142 +34722,190,7,2047,1562222 +34723,234,1,78461,146801 +34724,3,5,11202,19102 +34725,413,11,433244,1202353 +34726,234,1,25934,46611 +34727,53,2,86254,1391668 +34728,85,10,47536,139079 +34729,3,5,156917,1288504 +34730,250,11,19995,1394953 +34731,317,10,296491,37742 +34732,387,10,35404,105022 +34733,328,6,84226,1103572 +34734,413,11,279159,1335347 +34735,234,1,90030,102833 +34736,188,8,3597,1790565 +34737,289,6,39101,122213 +34738,413,11,36335,29311 +34739,273,7,21769,1073980 +34740,234,1,238593,1169452 +34741,234,1,56212,113337 +34742,273,7,19017,232187 +34743,105,7,113432,117992 +34744,387,10,26299,168047 +34745,3,5,29318,115057 +34746,3,5,332411,3115 +34747,148,9,6948,1326400 +34748,317,10,27925,1202963 +34749,3,5,21955,7183 +34750,306,7,24679,1546115 +34751,148,9,16436,72379 +34752,273,7,59231,91999 +34753,234,1,257237,1296809 +34754,317,10,323370,1422664 +34755,5,10,142061,2293 +34756,273,7,921,153 +34757,317,10,153161,1503 +34758,314,2,315837,1797242 +34759,317,10,60568,1136353 +34760,277,3,340176,1372742 +34761,220,7,413882,1735097 +34762,317,10,270403,51084 +34763,75,5,302036,1417178 +34764,234,1,83475,262925 +34765,3,5,246127,14599 +34766,387,10,55720,151092 +34767,3,5,285840,190919 +34768,97,7,14476,1411670 +34769,148,9,59296,1460356 +34770,413,11,10916,67461 +34771,234,1,305455,226117 +34772,286,3,270774,1877781 +34773,40,1,857,9264 +34774,413,11,37958,1123194 +34775,204,9,97365,1727610 +34776,105,7,177358,227706 +34777,277,3,49502,1398538 +34778,269,9,64786,545210 +34779,204,9,284288,1763422 +34780,334,7,12103,1399141 +34781,273,7,74645,33804 +34782,5,10,93891,1541995 +34783,53,2,46261,35514 +34784,273,7,28668,1091310 +34785,3,5,21468,13270 +34786,148,9,10916,1330853 +34787,13,3,53949,12495 +34788,234,1,43000,11528 +34789,234,1,191476,1444764 +34790,148,9,41760,17877 +34791,413,11,91679,118415 +34792,77,10,10841,67072 +34793,234,1,27549,24757 +34794,105,7,12106,37 +34795,413,11,21242,1154805 +34796,387,10,25673,4357 +34797,204,9,171446,1132129 +34798,234,1,103620,64211 +34799,317,10,30619,1011962 +34800,286,3,5638,44548 +34801,187,11,266856,1421273 +34802,34,8,693,1415635 +34803,187,11,9032,548437 +34804,234,1,83614,228845 +34805,333,2,36635,4128 +34806,327,7,24679,1376901 +34807,413,11,11236,56532 +34808,234,1,37926,85203 +34809,234,1,11853,42171 +34810,234,1,172972,940641 +34811,3,5,82079,76045 +34812,125,2,283995,1815826 +34813,387,10,159474,240294 +34814,387,10,37340,90371 +34815,149,6,17654,1424619 +34816,3,5,42641,13338 +34817,234,1,159095,113273 +34818,3,5,9461,57728 +34819,187,11,10590,1352966 +34820,262,6,312221,1468573 +34821,360,3,74,1377215 +34822,317,10,19187,557818 +34823,209,7,3597,1404326 +34824,53,2,24150,12707 +34825,317,10,71066,587949 +34826,234,1,265019,61510 +34827,317,10,306966,54528 +34828,67,10,24554,90869 +34829,209,7,395992,1531504 +34830,226,2,270303,1483632 +34831,234,1,27457,8568 +34832,75,5,293660,1431077 +34833,413,11,2984,29311 +34834,387,10,49508,84940 +34835,234,1,35696,114646 +34836,273,7,407806,1331532 +34837,160,3,922,15437 +34838,204,9,43277,9062 +34839,234,1,266285,65879 +34840,286,3,337876,120424 +34841,148,9,24150,21323 +34842,203,1,333484,1403421 +34843,213,10,16351,56205 +34844,306,7,436,1371349 +34845,244,3,8292,76713 +34846,401,6,10198,1615563 +34847,413,11,334175,1464773 +34848,234,1,11570,5029 +34849,45,9,44943,1403391 +34850,3,5,17170,3097 +34851,179,2,8053,1708843 +34852,53,2,131194,14007 +34853,413,11,58251,129561 +34854,52,10,337879,1675373 +34855,273,7,10796,894 +34856,148,9,50126,35336 +34857,213,10,39324,1275889 +34858,333,2,64129,26175 +34859,317,10,149511,2814 +34860,411,9,36758,11456 +34861,204,9,21468,1118257 +34862,208,2,5915,13152 +34863,413,11,278632,1104932 +34864,204,9,33792,35154 +34865,317,10,53417,21309 +34866,53,2,9472,10397 +34867,273,7,9297,57196 +34868,61,7,118,1337408 +34869,5,10,11626,3850 +34870,328,6,93856,1335152 +34871,75,5,9514,1642516 +34872,234,1,43894,93906 +34873,269,9,29259,37654 +34874,52,10,166671,1328 +34875,360,9,42418,1827966 +34876,204,9,1673,31204 +34877,160,3,664,18889 +34878,360,3,109424,22486 +34879,273,7,9287,14138 +34880,317,10,257450,30052 +34881,387,10,10276,2691 +34882,198,6,293660,1580856 +34883,53,2,3476,19058 +34884,3,5,109424,15493 +34885,289,6,149870,1236314 +34886,387,10,236324,1112051 +34887,175,5,87826,1537179 +34888,234,1,56235,201165 +34889,132,2,332567,1465623 +34890,333,2,10320,1821178 +34891,234,1,130717,544711 +34892,413,11,11975,2988 +34893,53,2,49853,1648806 +34894,387,10,16638,97183 +34895,413,11,274060,102784 +34896,3,5,44458,1357 +34897,141,7,18843,1616082 +34898,234,1,41760,133259 +34899,317,10,26881,166073 +34900,317,10,32274,504 +34901,373,7,228066,40819 +34902,85,10,274504,1090812 +34903,387,10,12124,71353 +34904,262,6,337339,1725775 +34905,387,10,172475,30233 +34906,317,10,15316,945223 +34907,190,7,227975,1775633 +34908,105,7,81120,39055 +34909,148,9,19665,1666902 +34910,269,9,1428,2294 +34911,67,10,263115,111893 +34912,413,11,334538,989692 +34913,5,10,36094,228928 +34914,394,7,13616,1427834 +34915,5,10,159474,1141259 +34916,53,2,72917,1038895 +34917,196,7,3682,1422411 +34918,234,1,45398,1214133 +34919,3,5,76465,14569 +34920,196,7,41283,1115736 +34921,273,7,212063,43592 +34922,415,3,35002,1206211 +34923,187,11,132363,1407730 +34924,234,1,22585,152315 +34925,291,6,10632,1224272 +34926,387,10,53882,239783 +34927,105,7,259830,72854 +34928,234,1,18925,78040 +34929,373,7,33005,1367365 +34930,317,10,69635,1054353 +34931,413,11,27138,563699 +34932,304,10,122525,1173617 +34933,234,1,46857,137563 +34934,298,5,44943,1399071 +34935,269,9,441728,217185 +34936,317,10,14555,77005 +34937,328,6,241239,1407735 +34938,301,5,12113,983118 +34939,148,9,43228,118291 +34940,317,10,25006,93005 +34941,234,1,166666,46203 +34942,413,11,14868,3904 +34943,317,10,26961,19713 +34944,204,9,176670,565201 +34945,123,3,287281,1353906 +34946,234,1,33792,2662 +34947,289,6,15213,1455598 +34948,12,10,408220,18866 +34949,413,11,82470,4418 +34950,97,7,17654,1406067 +34951,182,8,312174,1400605 +34952,273,7,31385,116147 +34953,204,9,316154,1684363 +34954,37,3,129966,47826 +34955,204,9,44732,1396401 +34956,317,10,18381,81437 +34957,415,3,71329,557697 +34958,160,3,10484,1326580 +34959,3,5,34082,3356 +34960,147,1,413421,1785017 +34961,317,10,81541,105331 +34962,148,9,27443,1116427 +34963,387,10,45211,5555 +34964,105,7,252888,68685 +34965,213,10,345438,1479366 +34966,75,5,10929,1576236 +34967,97,7,58060,1298937 +34968,234,1,295964,47333 +34969,262,6,13336,1335420 +34970,234,1,412202,1200565 +34971,53,2,75595,928346 +34972,234,1,18035,82623 +34973,413,11,339547,507842 +34974,302,9,338189,1634296 +34975,5,10,28452,100741 +34976,169,3,82990,1417875 +34977,317,10,70712,55392 +34978,97,7,60855,1396507 +34979,105,7,268212,37789 +34980,413,11,53693,1169221 +34981,3,5,12221,1166276 +34982,413,11,28032,53344 +34983,226,2,10491,1402920 +34984,317,10,80125,57759 +34985,273,7,9405,40438 +34986,310,3,204553,1294091 +34987,317,10,98302,39206 +34988,234,1,90992,94050 +34989,228,2,379019,1780178 +34990,317,10,30527,35032 +34991,143,7,66193,1402531 +34992,387,10,12783,58504 +34993,11,6,287628,1707983 +34994,234,1,73123,54874 +34995,419,10,16175,79899 +34996,209,7,11688,1813303 +34997,387,10,49334,9052 +34998,204,9,2907,15843 +34999,213,10,3016,29572 +35000,234,1,13480,87671 +35001,269,9,94663,233721 +35002,3,5,9028,49901 +35003,234,1,14818,592534 +35004,3,5,90590,45497 +35005,301,5,7551,1406288 +35006,269,9,13496,59475 +35007,148,9,53230,9062 +35008,53,2,38554,461 +35009,234,1,61644,78021 +35010,3,5,412363,1316518 +35011,209,7,46261,1425395 +35012,413,11,11511,69677 +35013,46,5,9716,1580366 +35014,268,7,346672,1437193 +35015,234,1,146341,1124024 +35016,105,7,273404,70789 +35017,40,1,266856,1746698 +35018,97,7,63215,1520931 +35019,208,2,13483,1330612 +35020,204,9,26378,32999 +35021,234,1,14522,1901 +35022,415,3,2288,1608539 +35023,5,10,8816,56395 +35024,105,7,132601,1001837 +35025,226,2,27380,1638073 +35026,317,10,58995,101900 +35027,296,3,12103,1625912 +35028,104,7,10733,1546442 +35029,3,5,44754,960261 +35030,187,11,44943,112875 +35031,169,3,31947,1511730 +35032,387,10,207699,1308812 +35033,20,2,44115,135731 +35034,179,2,352327,1491852 +35035,175,5,302036,1417180 +35036,413,11,11909,29693 +35037,234,1,140,309 +35038,204,9,25673,8622 +35039,52,10,10948,61677 +35040,413,11,103236,1085325 +35041,232,10,52302,571506 +35042,234,1,9528,4391 +35043,22,9,359412,1006221 +35044,208,2,173153,1330612 +35045,204,9,42040,5492 +35046,220,7,72823,18577 +35047,164,3,7220,1490943 +35048,175,5,33586,1814981 +35049,234,1,126319,1092607 +35050,11,6,189,1067066 +35051,196,7,37628,1063528 +35052,53,2,338676,16235 +35053,234,1,6183,57758 +35054,413,11,21371,45730 +35055,349,1,10020,15780 +35056,53,2,26656,971882 +35057,387,10,43419,33247 +35058,164,3,118957,1730964 +35059,204,9,294652,1034192 +35060,196,7,102629,1407255 +35061,179,2,256474,1100139 +35062,398,9,76163,1337667 +35063,269,9,223485,12653 +35064,317,10,29911,556846 +35065,234,1,1907,2034 +35066,289,6,9514,1642527 +35067,234,1,46883,545053 +35068,262,6,340101,1431571 +35069,394,7,334074,1337409 +35070,234,1,308557,1395138 +35071,158,2,274857,1482846 +35072,229,6,228066,1459910 +35073,92,7,84720,1532478 +35074,317,10,287903,11012 +35075,387,10,121793,1074968 +35076,234,1,76785,84931 +35077,333,2,243935,1414918 +35078,45,9,72545,1395430 +35079,234,1,18442,58912 +35080,53,2,254869,106700 +35081,34,8,336050,1533517 +35082,413,11,33592,5056 +35083,77,10,13681,6729 +35084,3,5,9877,59969 +35085,234,1,407575,1654407 +35086,175,5,102629,1394412 +35087,301,5,24624,1540851 +35088,387,10,78265,583603 +35089,208,2,274504,1609047 +35090,413,11,56596,1163114 +35091,196,7,204922,1414093 +35092,286,3,293262,1392209 +35093,164,3,291413,40077 +35094,269,9,10394,5438 +35095,102,3,10733,1571771 +35096,105,7,19766,937927 +35097,234,1,27599,98319 +35098,234,1,28673,100053 +35099,67,10,10198,1364882 +35100,72,11,6947,1406756 +35101,186,6,126889,1746445 +35102,234,1,33801,142267 +35103,3,5,96936,1084983 +35104,3,5,11421,33460 +35105,20,2,245703,1493522 +35106,154,3,194853,592439 +35107,287,3,765,11419 +35108,196,7,20648,1384756 +35109,105,7,382591,1042699 +35110,148,9,7551,13588 +35111,234,1,99826,11805 +35112,182,8,287628,1707982 +35113,317,10,48254,83189 +35114,105,7,262945,33765 +35115,286,3,77673,1657 +35116,200,3,11377,1602873 +35117,287,3,20919,1405313 +35118,269,9,42204,596 +35119,234,1,43277,93906 +35120,317,10,34582,7736 +35121,273,7,76,577 +35122,77,10,10025,57062 +35123,148,9,76642,543633 +35124,53,2,65496,579047 +35125,327,7,357106,1502723 +35126,413,11,322518,124337 +35127,413,11,315664,16346 +35128,45,9,293167,484529 +35129,387,10,72912,567553 +35130,3,5,20372,1635714 +35131,317,10,302036,1383998 +35132,286,3,60965,232032 +35133,317,10,455601,60278 +35134,53,2,987,14827 +35135,394,7,274479,9409 +35136,53,2,5481,44958 +35137,204,9,18642,21456 +35138,387,10,87148,45577 +35139,148,9,34082,224395 +35140,317,10,46286,148100 +35141,413,11,16890,112576 +35142,394,7,378441,1338281 +35143,105,7,130948,30657 +35144,262,6,2666,8299 +35145,78,3,274857,1576007 +35146,148,9,43327,9587 +35147,250,11,19255,1399519 +35148,387,10,229254,232123 +35149,415,3,67822,1485471 +35150,105,7,52021,1042696 +35151,60,1,31532,1371315 +35152,317,10,122348,1076027 +35153,287,3,66881,1204525 +35154,53,2,46368,1317099 +35155,317,10,390587,1606499 +35156,387,10,10744,66704 +35157,40,1,32657,1349452 +35158,5,10,2669,235351 +35159,304,10,271919,32096 +35160,53,2,709,10678 +35161,413,11,315010,1360259 +35162,204,9,4380,33455 +35163,333,2,3597,1334172 +35164,34,8,436,1624044 +35165,75,5,167,36428 +35166,317,10,37820,1532969 +35167,317,10,75510,575491 +35168,3,5,264729,1439846 +35169,97,7,1251,1227173 +35170,3,5,61934,18576 +35171,40,1,289225,1850525 +35172,226,2,14703,17672 +35173,234,1,377290,33190 +35174,167,3,218778,1435661 +35175,387,10,28261,95862 +35176,387,10,99863,592977 +35177,181,7,634,9159 +35178,360,3,17609,1400325 +35179,105,7,256962,1819157 +35180,413,11,461955,1234359 +35181,413,11,433034,1846921 +35182,204,9,266102,962679 +35183,323,10,84479,71489 +35184,234,1,52150,145484 +35185,143,7,11096,1378695 +35186,413,11,354979,1615345 +35187,52,10,341007,1706353 +35188,273,7,56292,15347 +35189,234,1,49009,2690 +35190,273,7,8276,54286 +35191,277,3,38437,85857 +35192,314,2,329805,1544396 +35193,188,8,356752,1841572 +35194,269,9,146233,102873 +35195,289,6,81310,148809 +35196,413,11,10351,64748 +35197,317,10,46278,65843 +35198,234,1,212156,1196401 +35199,148,9,32274,17951 +35200,53,2,243568,7719 +35201,269,9,634,9153 +35202,327,7,194,1547720 +35203,328,6,9900,1395352 +35204,413,11,260030,1453105 +35205,317,10,286657,1354696 +35206,226,2,9529,1408278 +35207,234,1,798,11919 +35208,3,5,43829,85855 +35209,203,1,238589,1345271 +35210,204,9,181533,1191106 +35211,413,11,157409,1208221 +35212,234,1,27042,97000 +35213,413,11,323665,1193234 +35214,234,1,71336,562600 +35215,360,9,443319,1888977 +35216,317,10,74666,19939 +35217,387,10,11800,69696 +35218,60,1,29058,1463424 +35219,387,10,39845,34542 +35220,53,2,356757,1501792 +35221,53,2,42580,60134 +35222,387,10,1838,19347 +35223,204,9,78734,4085 +35224,54,10,18506,1485214 +35225,317,10,402582,60074 +35226,387,10,48231,12952 +35227,203,1,22267,1468036 +35228,3,5,252680,1288071 +35229,3,5,8410,55741 +35230,387,10,166666,673 +35231,148,9,75622,11801 +35232,399,9,10198,1461410 +35233,234,1,316883,1318673 +35234,234,1,383538,1437179 +35235,317,10,37468,24939 +35236,204,9,21849,19045 +35237,53,2,64215,1354327 +35238,97,7,10929,548445 +35239,413,11,344147,1496035 +35240,317,10,76681,1228866 +35241,317,10,99095,37590 +35242,204,9,27349,1147355 +35243,413,11,364690,1670924 +35244,387,10,197854,1248264 +35245,262,6,6163,1905082 +35246,3,5,1595,17848 +35247,333,2,198663,578728 +35248,234,1,11185,133259 +35249,234,1,10389,31033 +35250,203,1,40807,1460786 +35251,234,1,61473,129952 +35252,413,11,33586,59870 +35253,234,1,2984,13848 +35254,235,5,354287,1407023 +35255,333,2,3087,4128 +35256,296,3,206647,1551813 +35257,203,1,271718,587969 +35258,180,7,51141,1605942 +35259,160,3,773,1339453 +35260,234,1,119213,51679 +35261,234,1,17445,74863 +35262,60,1,408381,1657570 +35263,204,9,62492,1472428 +35264,415,3,14430,1521694 +35265,331,3,10665,1895997 +35266,373,7,9016,74978 +35267,357,3,19995,1483221 +35268,234,1,29043,102668 +35269,53,2,370234,1621862 +35270,273,7,121173,1202165 +35271,321,11,1586,1611809 +35272,52,10,124277,1178268 +35273,203,1,655,1404911 +35274,324,3,14400,1015893 +35275,5,10,144183,1279068 +35276,234,1,82237,1127087 +35277,257,3,3172,1417496 +35278,413,11,10803,12016 +35279,317,10,25919,1196145 +35280,204,9,31561,1167476 +35281,187,11,41733,1399061 +35282,413,11,71825,9647 +35283,127,3,52661,1560856 +35284,234,1,460870,1141408 +35285,76,2,245168,1422795 +35286,77,10,14078,76329 +35287,317,10,413762,1673672 +35288,75,5,284052,937946 +35289,373,7,1877,1340319 +35290,182,8,168259,1403412 +35291,413,11,1443,17234 +35292,127,3,26761,24325 +35293,273,7,49220,73091 +35294,105,7,40034,63923 +35295,387,10,319999,932317 +35296,220,7,21193,1017374 +35297,413,11,410718,1697788 +35298,273,7,1902,19843 +35299,317,10,81708,142857 +35300,413,11,31264,136390 +35301,273,7,17332,11269 +35302,413,11,39276,30466 +35303,3,5,24448,487957 +35304,52,10,29318,130946 +35305,317,10,346170,1507244 +35306,52,10,25807,103789 +35307,269,9,20438,957243 +35308,387,10,205587,1281388 +35309,204,9,461955,1451524 +35310,301,5,59678,1388897 +35311,234,1,47084,71950 +35312,3,5,8816,23331 +35313,317,10,60120,1188433 +35314,208,2,359412,1404190 +35315,387,10,20644,85903 +35316,273,7,11374,14712 +35317,317,10,15045,51962 +35318,273,7,301875,1641226 +35319,3,5,40804,10079 +35320,148,9,11232,4907 +35321,413,11,340961,1815551 +35322,5,10,26864,69309 +35323,148,9,37926,1772857 +35324,273,7,2105,21587 +35325,298,5,246655,1494209 +35326,399,9,51786,1447432 +35327,317,10,84942,931482 +35328,179,2,55846,1332497 +35329,204,9,88953,1537386 +35330,317,10,201765,1325729 +35331,317,10,186881,548474 +35332,3,5,41970,1306326 +35333,204,9,100270,1106902 +35334,273,7,80717,1064940 +35335,413,11,82767,31220 +35336,269,9,273404,1445361 +35337,387,10,9504,1255 +35338,204,9,11370,1581074 +35339,234,1,41609,21506 +35340,226,2,228205,1443946 +35341,413,11,29094,103182 +35342,387,10,71700,56898 +35343,232,10,44001,13803 +35344,234,1,221240,66250 +35345,40,1,10590,1566280 +35346,317,10,35572,114380 +35347,413,11,46830,1825 +35348,317,10,328589,55477 +35349,387,10,238,1776 +35350,234,1,408620,17119 +35351,394,7,9426,11229 +35352,3,5,18094,485159 +35353,249,7,9902,1428480 +35354,234,1,4441,37259 +35355,5,10,10178,64115 +35356,234,1,13710,64534 +35357,401,6,1267,1447357 +35358,234,1,12432,72197 +35359,413,11,13391,70103 +35360,234,1,27703,29433 +35361,250,11,177677,1465949 +35362,166,9,332567,1718712 +35363,317,10,13836,60212 +35364,53,2,11096,4189 +35365,304,10,72856,1194423 +35366,413,11,10193,8063 +35367,273,7,26390,55177 +35368,3,5,10632,8750 +35369,398,9,333352,1609845 +35370,387,10,64129,18741 +35371,273,7,62211,7885 +35372,3,5,8844,11371 +35373,234,1,41121,125525 +35374,413,11,97910,18595 +35375,317,10,77381,120482 +35376,203,1,2288,1395373 +35377,148,9,356500,1475317 +35378,45,9,76341,1424598 +35379,317,10,111839,15801 +35380,273,7,256474,2214 +35381,204,9,288281,1419916 +35382,413,11,377287,234483 +35383,234,1,226140,544134 +35384,234,1,109251,119784 +35385,413,11,1956,1893 +35386,64,6,2300,1447554 +35387,387,10,11516,69706 +35388,53,2,95743,10397 +35389,286,3,80713,957453 +35390,387,10,9928,27519 +35391,387,10,103875,71056 +35392,72,11,10320,70251 +35393,273,7,4146,35560 +35394,234,1,76101,300472 +35395,113,9,324670,1405376 +35396,373,7,9032,113073 +35397,277,3,104776,1029786 +35398,209,7,26390,1337468 +35399,3,5,96713,14478 +35400,204,9,13777,75292 +35401,53,2,383140,1582471 +35402,302,9,399790,1830181 +35403,234,1,301348,916958 +35404,234,1,45792,27236 +35405,34,8,399790,1830191 +35406,317,10,172705,1155291 +35407,192,5,9785,1438624 +35408,45,9,7299,40754 +35409,317,10,347264,125933 +35410,208,2,280092,1317667 +35411,196,7,16342,1335161 +35412,269,9,64807,548 +35413,53,2,101342,1681628 +35414,40,1,3172,10956 +35415,387,10,382591,1033621 +35416,53,2,44502,1646880 +35417,182,8,9902,1401294 +35418,52,10,280617,1035399 +35419,5,10,13526,1198484 +35420,3,5,33923,8620 +35421,53,2,274479,5392 +35422,273,7,2085,9769 +35423,413,11,141,1592 +35424,3,5,55853,50539 +35425,226,2,42345,121077 +35426,234,1,17640,13294 +35427,331,3,21786,1336911 +35428,346,3,76163,1418413 +35429,234,1,299730,1026369 +35430,234,1,42345,18854 +35431,234,1,10674,66190 +35432,105,7,222935,201210 +35433,234,1,505,1723 +35434,53,2,11397,1656415 +35435,373,7,106049,1149941 +35436,234,1,10665,66074 +35437,234,1,284293,82337 +35438,234,1,27091,96919 +35439,203,1,41733,1400738 +35440,269,9,9423,1324882 +35441,204,9,7326,11818 +35442,169,3,228970,1789398 +35443,413,11,47211,32212 +35444,387,10,23966,92993 +35445,166,9,14254,1335041 +35446,273,7,141733,1289423 +35447,85,10,59191,83393 +35448,413,11,404459,1665254 +35449,286,3,82627,666855 +35450,37,3,81003,1448998 +35451,387,10,10900,14800 +35452,53,2,28893,102345 +35453,52,10,17007,1569460 +35454,328,6,238589,1393415 +35455,1,7,949,15178 +35456,234,1,11084,21440 +35457,226,2,59296,578723 +35458,317,10,169009,121602 +35459,413,11,177564,1160008 +35460,273,7,369885,37 +35461,269,9,332979,989751 +35462,20,2,13616,1586325 +35463,3,5,24397,1385925 +35464,52,10,44631,51307 +35465,234,1,175998,100793 +35466,317,10,257176,19717 +35467,413,11,19936,965928 +35468,387,10,38808,998690 +35469,182,8,338063,1581563 +35470,3,5,17238,9752 +35471,105,7,303636,1831213 +35472,324,3,64784,1176868 +35473,387,10,11358,58002 +35474,209,7,7445,7538 +35475,190,7,10066,1588683 +35476,289,6,65759,1450992 +35477,238,7,419430,1340099 +35478,200,3,10529,58188 +35479,289,6,32428,555757 +35480,180,7,161880,13960 +35481,234,1,331485,1609366 +35482,53,2,33592,1683632 +35483,333,2,395982,1755126 +35484,155,3,153,56158 +35485,234,1,350594,1548453 +35486,397,7,98302,14241 +35487,105,7,188357,1317093 +35488,208,2,64807,1316296 +35489,258,9,15213,228591 +35490,387,10,11654,7189 +35491,234,1,230680,51193 +35492,398,9,8292,1449162 +35493,234,1,394051,76812 +35494,317,10,33364,67619 +35495,317,10,398137,132812 +35496,226,2,2567,1402017 +35497,179,2,124470,1372213 +35498,413,11,12476,16651 +35499,298,5,209112,1403415 +35500,3,5,17566,1536240 +35501,208,2,294690,1367217 +35502,388,9,302699,1729087 +35503,53,2,112304,1073747 +35504,234,1,946,14353 +35505,105,7,125510,66157 +35506,3,5,174958,1574736 +35507,204,9,86820,1149912 +35508,387,10,1595,2303 +35509,273,7,94874,47103 +35510,40,1,334538,1797240 +35511,203,1,19505,1484255 +35512,262,6,360249,1448315 +35513,64,6,49524,1455463 +35514,203,1,314371,1528012 +35515,394,7,20242,1404902 +35516,217,3,1724,1453019 +35517,187,11,5516,1402027 +35518,3,5,63584,1584753 +35519,3,5,12236,65689 +35520,387,10,205349,1081034 +35521,317,10,320037,588861 +35522,317,10,65759,61351 +35523,187,11,10632,1372838 +35524,413,11,144792,1355356 +35525,203,1,10004,1423019 +35526,394,7,18417,83090 +35527,291,6,10529,1457912 +35528,317,10,37628,793 +35529,153,6,328429,1636712 +35530,3,5,6980,25860 +35531,387,10,261508,1305035 +35532,317,10,192623,1184645 +35533,317,10,19688,1701610 +35534,394,7,773,1413453 +35535,105,7,60855,1396494 +35536,411,9,315837,8285 +35537,317,10,47386,138776 +35538,413,11,1819,19283 +35539,234,1,31380,77869 +35540,234,1,16137,79541 +35541,387,10,340119,1466975 +35542,273,7,87826,2593 +35543,204,9,36089,1176363 +35544,269,9,38554,1222 +35545,303,3,9914,1407691 +35546,52,10,57866,50083 +35547,148,9,35405,1559022 +35548,269,9,205939,1188321 +35549,53,2,32093,7652 +35550,234,1,19996,154383 +35551,7,3,6947,1573101 +35552,53,2,3055,11445 +35553,269,9,291865,1451390 +35554,360,3,14811,122754 +35555,413,11,179103,119536 +35556,387,10,38761,232184 +35557,269,9,2323,4248 +35558,262,6,273481,1568842 +35559,303,3,68737,47102 +35560,52,10,10020,12079 +35561,187,11,323435,1556634 +35562,3,5,117120,1035162 +35563,53,2,28297,12350 +35564,331,3,11351,92394 +35565,269,9,11428,8866 +35566,327,7,24679,1057 +35567,269,9,140894,9123 +35568,234,1,47466,1203292 +35569,3,5,100770,148745 +35570,234,1,339327,1465044 +35571,273,7,1251,33526 +35572,209,7,326,1393405 +35573,317,10,20017,2305 +35574,182,8,19901,1418815 +35575,188,8,73835,56845 +35576,413,11,10930,19169 +35577,273,7,223946,70687 +35578,221,3,2321,142169 +35579,273,7,5279,9152 +35580,53,2,194509,4350 +35581,234,1,13733,146484 +35582,291,6,188927,1394952 +35583,3,5,15689,1297087 +35584,317,10,27886,1039407 +35585,387,10,52864,149128 +35586,234,1,286192,8039 +35587,269,9,13920,4197 +35588,413,11,153,1782 +35589,269,9,242310,1321170 +35590,53,2,169869,4350 +35591,204,9,146243,1532321 +35592,77,10,16486,34518 +35593,166,9,11024,1368861 +35594,77,10,14254,121479 +35595,52,10,128669,3146 +35596,269,9,285270,1367916 +35597,413,11,9787,67846 +35598,53,2,169298,1097195 +35599,180,7,469172,940810 +35600,325,5,312221,1580867 +35601,273,7,52661,1938 +35602,387,10,2487,236088 +35603,203,1,200727,1407870 +35604,269,9,48601,1152093 +35605,3,5,21629,3659 +35606,413,11,72875,69875 +35607,25,2,25941,1540183 +35608,317,10,325645,5811 +35609,273,7,20096,32398 +35610,413,11,83666,38805 +35611,246,6,284052,1746435 +35612,203,1,15414,1404548 +35613,262,6,817,14194 +35614,49,7,264525,1372633 +35615,317,10,54559,237759 +35616,413,11,50647,1423980 +35617,289,6,72640,138171 +35618,286,3,98557,1018705 +35619,5,10,42188,83664 +35620,234,1,2309,1978 +35621,3,5,5494,43677 +35622,234,1,40649,103569 +35623,273,7,16999,69927 +35624,204,9,43395,40170 +35625,158,2,11232,1524770 +35626,204,9,167,9648 +35627,148,9,43141,11083 +35628,413,11,12622,73146 +35629,333,2,260030,1453108 +35630,234,1,57307,225890 +35631,269,9,110598,14878 +35632,180,7,9325,2117 +35633,204,9,35001,17763 +35634,413,11,280045,72896 +35635,317,10,339312,1464978 +35636,333,2,29510,7689 +35637,85,10,48567,1532100 +35638,413,11,64414,1663 +35639,234,1,245891,40644 +35640,234,1,199415,1179649 +35641,234,1,169758,233313 +35642,234,1,25132,2294 +35643,52,10,11048,5810 +35644,105,7,17288,230573 +35645,360,3,15092,1414497 +35646,3,5,55624,49496 +35647,413,11,86261,1542408 +35648,157,3,35977,558234 +35649,75,5,10320,1395276 +35650,30,5,8619,1401593 +35651,175,5,15,1733277 +35652,387,10,41213,53859 +35653,286,3,362150,1640556 +35654,413,11,192675,1280899 +35655,269,9,50647,42634 +35656,415,3,3146,18602 +35657,234,1,10066,59521 +35658,203,1,205864,1603897 +35659,141,7,263115,1548851 +35660,3,5,157343,96052 +35661,204,9,223485,1398909 +35662,387,10,24554,30692 +35663,127,3,11547,1538290 +35664,277,3,293660,113048 +35665,204,9,394645,1864619 +35666,66,11,297762,1824275 +35667,105,7,71099,58099 +35668,234,1,42436,106345 +35669,53,2,32338,937582 +35670,234,1,83770,8574 +35671,5,10,42062,103620 +35672,406,6,260030,1453121 +35673,219,11,12,1552873 +35674,66,11,9028,23363 +35675,5,10,113638,1057614 +35676,53,2,246655,9043 +35677,3,5,120831,3637 +35678,413,11,8583,800 +35679,213,10,53766,148801 +35680,5,10,43379,12330 +35681,413,11,13653,1152449 +35682,333,2,32166,1520596 +35683,306,7,272693,1396840 +35684,234,1,134209,119294 +35685,317,10,84903,100131 +35686,234,1,159166,21863 +35687,3,5,339403,9341 +35688,3,5,14829,554861 +35689,413,11,418437,62434 +35690,234,1,17875,82444 +35691,239,5,10096,1546840 +35692,269,9,508,1253 +35693,225,7,4147,1550073 +35694,234,1,97794,93529 +35695,317,10,45020,1894 +35696,397,7,18595,212371 +35697,27,3,1624,1596291 +35698,179,2,10096,1324409 +35699,317,10,84348,66681 +35700,47,8,10727,75159 +35701,269,9,77165,24851 +35702,413,11,242097,30725 +35703,387,10,284289,20355 +35704,3,5,19354,11529 +35705,387,10,16131,64141 +35706,160,3,124470,1372211 +35707,387,10,371645,55934 +35708,273,7,10750,43393 +35709,360,3,167810,1141796 +35710,122,8,296523,1780482 +35711,413,11,25388,16533 +35712,286,3,172004,67044 +35713,234,1,36628,116531 +35714,387,10,20968,76813 +35715,52,10,40719,1348017 +35716,204,9,12499,19291 +35717,273,7,14537,51808 +35718,196,7,116463,1345262 +35719,395,3,14411,118713 +35720,105,7,288952,1483949 +35721,60,1,305127,1568235 +35722,317,10,13163,68573 +35723,3,5,15379,58818 +35724,413,11,77875,36619 +35725,169,3,443319,1435644 +35726,234,1,99318,83399 +35727,3,5,79372,120313 +35728,53,2,240745,1516457 +35729,273,7,262528,19965 +35730,387,10,147829,88873 +35731,387,10,46184,70263 +35732,273,7,33364,1760 +35733,160,3,15476,1341812 +35734,204,9,263115,76054 +35735,317,10,343878,1475410 +35736,387,10,44115,2034 +35737,64,6,210079,1337982 +35738,387,10,10047,59 +35739,52,10,166221,1023501 +35740,234,1,1833,10965 +35741,3,5,13600,40545 +35742,105,7,41115,1433112 +35743,187,11,274857,1434919 +35744,333,2,15497,26175 +35745,52,10,20200,66840 +35746,182,8,188826,1583216 +35747,187,11,274504,1435531 +35748,234,1,66756,1743496 +35749,303,3,10204,40747 +35750,317,10,24927,64831 +35751,317,10,71066,1159655 +35752,301,5,272693,1545953 +35753,317,10,260522,1303424 +35754,286,3,45211,1090581 +35755,5,10,10400,65013 +35756,286,3,414977,1676763 +35757,413,11,66893,15132 +35758,105,7,110001,1382973 +35759,317,10,9836,59767 +35760,269,9,38150,61361 +35761,234,1,54396,938741 +35762,333,2,43089,1725960 +35763,273,7,417870,3393 +35764,53,2,62630,6688 +35765,209,7,42045,3179 +35766,234,1,39415,16988 +35767,317,10,58251,129561 +35768,273,7,171357,1153758 +35769,317,10,33117,1157061 +35770,169,3,193893,80828 +35771,186,6,269149,1462006 +35772,13,3,14554,115331 +35773,387,10,3537,32383 +35774,234,1,4538,5655 +35775,196,7,5915,1262017 +35776,3,5,14983,1204861 +35777,3,5,613,5135 +35778,317,10,163018,1120000 +35779,198,6,664,1378830 +35780,273,7,5748,43863 +35781,33,10,94663,146828 +35782,234,1,9690,22496 +35783,317,10,9993,61617 +35784,413,11,49963,1252 +35785,187,11,9286,1401631 +35786,53,2,9550,21907 +35787,413,11,10395,12015 +35788,317,10,83899,83858 +35789,148,9,289712,21323 +35790,387,10,26642,1316040 +35791,234,1,172972,57609 +35792,413,11,52264,1063779 +35793,204,9,11902,1421271 +35794,387,10,52440,14859 +35795,60,1,408381,1657569 +35796,413,11,2015,17134 +35797,413,11,11247,56716 +35798,105,7,289679,25321 +35799,269,9,84336,582928 +35800,3,5,7340,53288 +35801,175,5,2731,1730026 +35802,234,1,118953,30833 +35803,273,7,13333,2289 +35804,234,1,122081,51918 +35805,158,2,70981,1390376 +35806,360,3,17654,1424602 +35807,5,10,578,8554 +35808,3,5,241374,127523 +35809,234,1,18684,29907 +35810,234,1,12249,71929 +35811,333,2,118059,1066751 +35812,234,1,7229,38507 +35813,273,7,178587,4082 +35814,187,11,1640,1377293 +35815,387,10,108312,994146 +35816,3,5,219233,1083276 +35817,105,7,36236,25321 +35818,75,5,113255,6345 +35819,5,10,64685,4853 +35820,234,1,329010,1435414 +35821,387,10,201223,554611 +35822,328,6,241239,1414936 +35823,234,1,38775,44725 +35824,105,7,170279,1043648 +35825,105,7,167262,107201 +35826,234,1,118236,1797693 +35827,317,10,72251,119874 +35828,333,2,263115,1404190 +35829,413,11,31542,27213 +35830,387,10,6591,14268 +35831,143,7,8467,1449943 +35832,204,9,20481,61361 +35833,160,3,202337,195762 +35834,277,3,72711,1147933 +35835,317,10,44657,144300 +35836,40,1,369406,1827959 +35837,273,7,82631,55177 +35838,226,2,332662,1570536 +35839,226,2,206647,1458416 +35840,317,10,48717,1032 +35841,413,11,38437,29598 +35842,317,10,102913,1032520 +35843,333,2,14983,74658 +35844,387,10,61225,20801 +35845,413,11,237,3080 +35846,204,9,74126,552003 +35847,317,10,350762,77763 +35848,172,3,9593,1753783 +35849,413,11,10550,7730 +35850,66,11,122019,70988 +35851,105,7,31162,23437 +35852,317,10,51367,8635 +35853,413,11,156597,1328332 +35854,360,9,14,1552012 +35855,234,1,289723,1358982 +35856,394,7,310888,1335147 +35857,52,10,41110,78160 +35858,3,5,41468,18576 +35859,234,1,1793,18378 +35860,317,10,21567,83594 +35861,387,10,10674,66194 +35862,269,9,315872,7563 +35863,387,10,64827,126973 +35864,277,3,325173,1601640 +35865,148,9,3549,32723 +35866,234,1,148326,13953 +35867,317,10,43441,121676 +35868,5,10,27332,2868 +35869,387,10,182415,1171334 +35870,52,10,105860,50818 +35871,289,6,149870,1456633 +35872,187,11,329682,1374463 +35873,413,11,89921,232381 +35874,204,9,2640,14609 +35875,164,3,227306,1536898 +35876,148,9,304372,1357955 +35877,317,10,19277,945955 +35878,74,5,283995,1738169 +35879,413,11,2274,23488 +35880,273,7,111470,19407 +35881,234,1,2998,15189 +35882,53,2,28026,1322483 +35883,398,9,4285,36008 +35884,387,10,9982,61413 +35885,262,6,346672,3958 +35886,75,5,12113,59370 +35887,234,1,1278,4956 +35888,64,6,434873,1904098 +35889,269,9,75,548 +35890,387,10,81022,89575 +35891,182,8,25376,1723533 +35892,53,2,52270,20123 +35893,317,10,32233,25239 +35894,3,5,22998,6847 +35895,76,2,228066,1430408 +35896,210,9,74,1704231 +35897,317,10,273106,14687 +35898,413,11,9893,18276 +35899,387,10,284279,992767 +35900,53,2,180252,1293599 +35901,387,10,81937,1264428 +35902,317,10,335031,1363794 +35903,234,1,228355,92055 +35904,317,10,27211,590781 +35905,387,10,11175,68449 +35906,269,9,20108,10352 +35907,413,11,271039,1328183 +35908,387,10,30492,82859 +35909,160,3,315664,40712 +35910,204,9,52782,27908 +35911,317,10,202238,1184369 +35912,413,11,6079,1037321 +35913,60,1,12684,27923 +35914,387,10,39358,20665 +35915,52,10,77625,1305511 +35916,314,2,9675,1095093 +35917,387,10,139159,1072756 +35918,200,3,251,1453296 +35919,317,10,81787,150909 +35920,409,7,10590,1744058 +35921,268,7,24752,122937 +35922,317,10,325892,1286997 +35923,234,1,87908,935625 +35924,269,9,13092,23769 +35925,148,9,23397,8867 +35926,158,2,332411,1579381 +35927,45,9,189,1401129 +35928,387,10,200505,1274505 +35929,234,1,56725,935536 +35930,75,5,99861,1392246 +35931,234,1,151509,94158 +35932,149,6,21032,1462665 +35933,269,9,258480,5389 +35934,66,11,186869,1862953 +35935,317,10,49158,1434957 +35936,234,1,153518,52701 +35937,250,11,225728,1408403 +35938,226,2,14983,74658 +35939,395,3,10198,1563747 +35940,273,7,31263,1457655 +35941,198,6,293660,1533500 +35942,161,6,10440,1386913 +35943,244,3,77459,1821416 +35944,158,2,146243,1583076 +35945,245,3,1125,1347321 +35946,291,6,287903,1569330 +35947,105,7,424488,4140 +35948,365,6,110416,1558939 +35949,317,10,248268,77809 +35950,317,10,52454,112606 +35951,76,2,48231,12614 +35952,333,2,41213,1280125 +35953,234,1,8619,2690 +35954,148,9,678,7338 +35955,189,3,8870,1724252 +35956,317,10,250535,41041 +35957,413,11,109886,34224 +35958,317,10,186630,31892 +35959,273,7,36489,1313946 +35960,67,10,8870,1463300 +35961,75,5,76757,135727 +35962,5,10,21447,8908 +35963,3,5,47493,30578 +35964,53,2,323426,1642008 +35965,77,10,493,6483 +35966,105,7,12154,10468 +35967,234,1,86234,12386 +35968,196,7,2300,1422064 +35969,238,7,11975,1549584 +35970,53,2,91181,1449627 +35971,394,7,294690,1372424 +35972,234,1,70747,559500 +35973,182,8,329440,1594682 +35974,105,7,18514,10759 +35975,64,6,248087,1537410 +35976,204,9,76163,8646 +35977,3,5,162056,11099 +35978,387,10,133788,550268 +35979,403,10,41574,124796 +35980,53,2,1950,605 +35981,66,11,25430,3449 +35982,187,11,283686,1572874 +35983,317,10,29212,59832 +35984,204,9,43499,1326391 +35985,204,9,28297,1118257 +35986,273,7,9639,58263 +35987,236,8,121598,1880922 +35988,413,11,37628,31220 +35989,3,5,16077,59871 +35990,234,1,1498,18308 +35991,317,10,167262,1148940 +35992,52,10,93492,101108 +35993,226,2,364088,1748536 +35994,373,7,6977,9651 +35995,234,1,41551,90076 +35996,105,7,330418,1414019 +35997,95,8,126889,1746443 +35998,360,9,413452,1288847 +35999,419,10,4641,38694 +36000,113,9,279690,1568824 +36001,317,10,85735,56405 +36002,3,5,2259,23331 +36003,148,9,425774,1708002 +36004,3,5,52203,133868 +36005,234,1,87293,15361 +36006,250,11,283686,1582744 +36007,165,9,6557,16493 +36008,234,1,131351,27676 +36009,169,3,257088,1399863 +36010,234,1,5425,31775 +36011,226,2,25520,1459855 +36012,234,1,284250,238215 +36013,3,5,178587,18576 +36014,289,6,9023,1447338 +36015,234,1,27543,76882 +36016,5,10,9016,29533 +36017,303,3,24624,965600 +36018,182,8,414977,1676798 +36019,314,2,6973,1406080 +36020,305,9,11351,1834461 +36021,317,10,64568,30700 +36022,415,3,25625,76505 +36023,179,2,57201,1322466 +36024,273,7,46094,3393 +36025,5,10,13196,82938 +36026,175,5,381518,1578867 +36027,179,2,1125,1328407 +36028,234,1,317144,1286320 +36029,317,10,75244,152183 +36030,141,7,10796,1775961 +36031,273,7,142216,1104952 +36032,204,9,301228,1519843 +36033,387,10,182415,88468 +36034,286,3,69775,566794 +36035,317,10,50506,239783 +36036,53,2,81030,32001 +36037,155,3,76341,1511182 +36038,175,5,237584,1406866 +36039,160,3,5516,1281538 +36040,204,9,59803,69109 +36041,413,11,26889,102445 +36042,234,1,39998,1141803 +36043,3,5,3780,70129 +36044,269,9,345922,112521 +36045,3,5,26376,2005 +36046,288,3,357706,1504366 +36047,301,5,77949,1402096 +36048,387,10,12154,27445 +36049,192,5,365942,1463764 +36050,3,5,100110,56324 +36051,204,9,7863,586330 +36052,234,1,160329,1543586 +36053,234,1,38286,120018 +36054,234,1,244580,1075514 +36055,37,3,329865,1646512 +36056,289,6,9514,1642581 +36057,413,11,62978,1608383 +36058,3,5,205587,492 +36059,3,5,28273,34380 +36060,97,7,76163,9441 +36061,204,9,58244,1327907 +36062,45,9,329865,1394740 +36063,269,9,630,9059 +36064,176,3,693,1569566 +36065,373,7,28452,1506928 +36066,234,1,25087,115983 +36067,317,10,73952,206549 +36068,105,7,14527,1376619 +36069,234,1,64353,212239 +36070,317,10,16866,117052 +36071,203,1,11137,1426003 +36072,387,10,2160,3599 +36073,179,2,12103,1322465 +36074,158,2,76163,1412720 +36075,97,7,341174,1482837 +36076,387,10,3089,30295 +36077,317,10,14457,30870 +36078,317,10,200655,1181520 +36079,3,5,112284,12307 +36080,22,9,186869,1862927 +36081,301,5,1991,1420160 +36082,204,9,13225,7883 +36083,387,10,1966,20293 +36084,317,10,256122,1300888 +36085,204,9,243568,1685938 +36086,169,3,949,15847 +36087,234,1,256924,15892 +36088,413,11,328429,72643 +36089,160,3,2637,161787 +36090,3,5,70981,120 +36091,365,6,55433,222368 +36092,269,9,50126,1188587 +36093,273,7,3701,29500 +36094,234,1,79500,19707 +36095,234,1,261508,1305034 +36096,3,5,2487,70631 +36097,75,5,322922,1573369 +36098,105,7,31473,58289 +36099,289,6,53178,1429688 +36100,97,7,14126,1304276 +36101,333,2,324930,1463277 +36102,209,7,744,5132 +36103,317,10,407531,1654252 +36104,180,7,15199,1641978 +36105,190,7,634,195366 +36106,34,8,6171,1418404 +36107,204,9,47942,1069705 +36108,413,11,62978,1608378 +36109,239,5,188927,1638554 +36110,333,2,16996,1532736 +36111,413,11,5155,15132 +36112,182,8,283445,1437304 +36113,236,8,11547,1407883 +36114,53,2,238,6851 +36115,333,2,7916,1438591 +36116,387,10,264061,1082051 +36117,234,1,278738,1335497 +36118,269,9,2180,1152810 +36119,317,10,45990,72191 +36120,333,2,124963,27205 +36121,57,2,6972,1401638 +36122,293,2,20126,1826995 +36123,303,3,17654,186478 +36124,387,10,392832,1098027 +36125,269,9,321315,1620685 +36126,317,10,353462,1257795 +36127,333,2,44932,1390217 +36128,234,1,264393,110519 +36129,3,5,35926,14284 +36130,204,9,20919,1423404 +36131,77,10,8336,1224 +36132,269,9,3053,6605 +36133,317,10,40850,124829 +36134,273,7,71672,52339 +36135,413,11,84479,54260 +36136,234,1,33923,93975 +36137,398,9,5257,42385 +36138,394,7,196469,25058 +36139,53,2,259,3589 +36140,217,3,28000,115331 +36141,317,10,148622,107670 +36142,234,1,29128,88820 +36143,72,11,273481,1568836 +36144,234,1,74830,26852 +36145,60,1,43172,1343659 +36146,3,5,58076,14648 +36147,413,11,257345,1327334 +36148,377,3,9593,1803767 +36149,234,1,210739,1062421 +36150,195,6,337339,1746043 +36151,234,1,347835,1485276 +36152,3,5,41035,82652 +36153,413,11,144229,29538 +36154,413,11,18111,11372 +36155,234,1,5590,24882 +36156,328,6,258251,1348593 +36157,182,8,381518,1808367 +36158,373,7,14411,1338976 +36159,210,9,98066,1759321 +36160,113,9,240832,1367804 +36161,187,11,181454,1735504 +36162,234,1,286267,1352106 +36163,3,5,8951,56846 +36164,234,1,51945,11983 +36165,148,9,10590,1470177 +36166,239,5,9785,1575868 +36167,52,10,41551,81294 +36168,234,1,136087,1105157 +36169,413,11,76757,1851 +36170,413,11,32093,231003 +36171,277,3,50086,1649743 +36172,317,10,68987,554930 +36173,273,7,422906,103356 +36174,204,9,199155,1262171 +36175,234,1,48207,44726 +36176,387,10,42416,101590 +36177,317,10,224282,1209856 +36178,273,7,262357,1271794 +36179,234,1,26042,132559 +36180,153,6,356752,1841596 +36181,387,10,2963,11523 +36182,415,3,297762,1467461 +36183,234,1,248747,1287203 +36184,234,1,282768,1210932 +36185,317,10,30352,21155 +36186,317,10,38034,1134502 +36187,234,1,173494,1156225 +36188,209,7,11216,1407206 +36189,204,9,60269,1605168 +36190,413,11,63217,1518511 +36191,314,2,364088,1523173 +36192,413,11,269,3839 +36193,75,5,68387,202730 +36194,387,10,42683,84642 +36195,234,1,58905,8636 +36196,387,10,339530,67022 +36197,413,11,5608,12741 +36198,273,7,269173,1379026 +36199,173,7,152042,1821643 +36200,317,10,20444,584535 +36201,5,10,511,7091 +36202,394,7,87826,58363 +36203,203,1,60855,1396510 +36204,413,11,10590,2122 +36205,204,9,922,15428 +36206,200,3,97614,1419723 +36207,234,1,84993,1192612 +36208,154,3,6973,1648134 +36209,234,1,49559,73153 +36210,328,6,14979,138657 +36211,187,7,169,1562802 +36212,204,9,4248,35760 +36213,180,7,10754,1536607 +36214,373,7,346672,13179 +36215,272,3,435,1125188 +36216,85,10,82650,1684475 +36217,53,2,57419,1601703 +36218,105,7,301228,1519838 +36219,5,10,10534,65547 +36220,204,9,369885,1392587 +36221,204,9,95015,565201 +36222,413,11,93492,40889 +36223,317,10,43157,556857 +36224,289,6,257344,1473417 +36225,328,6,287903,1388873 +36226,262,6,118957,1355540 +36227,415,3,1678,18602 +36228,413,11,40985,1465797 +36229,53,2,173153,41084 +36230,234,1,24123,1239766 +36231,190,7,9296,1341414 +36232,234,1,317182,236376 +36233,317,10,63612,59879 +36234,53,2,39415,1397368 +36235,204,9,9815,59530 +36236,413,11,40208,57164 +36237,234,1,32694,10713 +36238,143,7,59297,1658449 +36239,45,9,250066,1495525 +36240,22,9,203351,1854460 +36241,3,5,15037,43891 +36242,376,10,40804,109726 +36243,179,2,11045,91126 +36244,45,9,2454,1393282 +36245,317,10,22182,88468 +36246,72,11,8869,1429252 +36247,3,5,156597,21289 +36248,234,1,152611,118303 +36249,180,7,72823,961298 +36250,387,10,94935,587090 +36251,234,1,10406,56911 +36252,226,2,522,1210259 +36253,175,5,744,1378173 +36254,32,8,693,1761067 +36255,317,10,8988,2836 +36256,187,11,9352,1552396 +36257,413,11,7299,60521 +36258,413,11,91961,123008 +36259,3,5,42402,98501 +36260,234,1,977,9076 +36261,387,10,287636,1336704 +36262,317,10,46786,57988 +36263,413,11,61984,115641 +36264,166,9,46261,1425371 +36265,273,7,9563,38780 +36266,401,6,10865,1447357 +36267,52,10,45729,133588 +36268,317,10,16342,47724 +36269,317,10,178,71234 +36270,413,11,30307,117774 +36271,234,1,14787,77294 +36272,13,3,15060,1460407 +36273,234,1,26914,45577 +36274,3,5,111042,13270 +36275,317,10,77057,33727 +36276,317,10,18506,85155 +36277,209,7,55846,1357599 +36278,317,10,46149,135129 +36279,234,1,85265,1040543 +36280,317,10,83666,5655 +36281,53,2,14457,1316855 +36282,387,10,634,9156 +36283,3,5,11664,57105 +36284,413,11,51284,1084380 +36285,413,11,9475,57642 +36286,75,5,23823,61851 +36287,289,6,61341,1338243 +36288,273,7,50001,100579 +36289,234,1,10087,27614 +36290,262,6,195269,1393416 +36291,204,9,71066,1144705 +36292,105,7,8049,53663 +36293,188,8,664,1436194 +36294,413,11,14370,8425 +36295,413,11,24739,1490604 +36296,132,2,345922,1573038 +36297,273,7,46924,70588 +36298,317,10,344147,1140573 +36299,234,1,111839,648 +36300,317,10,17796,165655 +36301,317,10,456781,237747 +36302,286,3,58529,1037931 +36303,269,9,3780,33132 +36304,399,9,10020,1554429 +36305,286,3,94809,53190 +36306,75,5,201085,1403706 +36307,387,10,1415,16958 +36308,317,10,296941,1457037 +36309,275,9,33586,1814976 +36310,273,7,31498,30130 +36311,196,7,28176,1399116 +36312,317,10,13354,113896 +36313,97,7,315837,1389614 +36314,303,3,2454,979175 +36315,175,5,354859,1418901 +36316,317,10,22618,38527 +36317,185,11,8869,1733132 +36318,209,7,27259,1412120 +36319,204,9,246415,1423831 +36320,289,6,3933,1448041 +36321,317,10,9771,8108 +36322,273,7,43384,13337 +36323,234,1,158598,45672 +36324,317,10,301224,1382177 +36325,317,10,318973,1347380 +36326,413,11,316654,1676034 +36327,234,1,834,3950 +36328,250,11,294652,1410561 +36329,333,2,44190,4313 +36330,179,2,20242,75250 +36331,234,1,3035,2917 +36332,97,7,11024,548435 +36333,204,9,244580,1364239 +36334,204,9,43441,4349 +36335,132,2,921,1524757 +36336,234,1,27993,64030 +36337,53,2,2998,1302782 +36338,333,2,336850,1570161 +36339,286,3,25078,119024 +36340,105,7,19203,84350 +36341,269,9,13058,1834842 +36342,234,1,140595,95754 +36343,3,5,341491,1181814 +36344,3,5,14916,1430511 +36345,387,10,10204,64159 +36346,387,10,301348,589761 +36347,3,5,24403,1357 +36348,3,5,11458,9573 +36349,360,3,329440,1622454 +36350,234,1,238997,1045273 +36351,164,3,334074,1532215 +36352,12,10,25682,72546 +36353,317,10,61361,1318269 +36354,53,2,75564,549028 +36355,105,7,21566,1709268 +36356,5,10,2087,3335 +36357,317,10,82350,69973 +36358,53,2,147106,14493 +36359,53,2,152532,1594602 +36360,5,10,22213,47641 +36361,317,10,136386,76242 +36362,208,2,93676,999600 +36363,387,10,10915,50818 +36364,53,2,47493,6688 +36365,3,5,412851,1297787 +36366,232,10,115531,133878 +36367,394,7,146243,1412703 +36368,413,11,12171,73420 +36369,317,10,27358,235783 +36370,53,2,261036,1357588 +36371,20,2,76170,1527914 +36372,317,10,60623,18213 +36373,208,2,69668,1315700 +36374,293,2,339527,1566117 +36375,413,11,1452,11017 +36376,387,10,112284,121676 +36377,234,1,447236,123970 +36378,291,6,69,1422412 +36379,413,11,11655,48457 +36380,317,10,76821,96627 +36381,317,10,198062,68574 +36382,204,9,499,3538 +36383,97,7,425774,1416051 +36384,239,5,10395,1455292 +36385,317,10,238952,6817 +36386,413,11,13616,67564 +36387,387,10,65603,46600 +36388,234,1,126560,145352 +36389,53,2,246415,1401855 +36390,52,10,29161,4955 +36391,413,11,157409,1049549 +36392,333,2,26936,1108686 +36393,395,3,10916,1402126 +36394,327,7,46857,1595301 +36395,190,7,435,1574659 +36396,273,7,2989,29376 +36397,317,10,237796,70196 +36398,387,10,27409,99471 +36399,373,7,58244,1197112 +36400,317,10,30535,69491 +36401,259,3,6947,1573094 +36402,317,10,39240,122521 +36403,269,9,91333,1321346 +36404,324,3,14430,1521664 +36405,269,9,26768,59986 +36406,387,10,12516,5026 +36407,132,2,32657,1426761 +36408,3,5,31509,88723 +36409,3,5,25645,232804 +36410,158,2,10070,1440743 +36411,413,11,11012,6491 +36412,187,11,1877,1392901 +36413,234,1,184802,99667 +36414,148,9,206647,8384 +36415,105,7,276819,26050 +36416,105,7,25855,1132845 +36417,234,1,46931,137842 +36418,179,2,9785,1551825 +36419,105,7,215875,7422 +36420,234,1,87022,144196 +36421,3,5,11385,4308 +36422,239,5,10543,1550057 +36423,286,3,221234,1206332 +36424,317,10,25132,57475 +36425,234,1,21849,2746 +36426,411,9,206647,23425 +36427,143,7,259830,1340725 +36428,304,10,353879,85048 +36429,374,8,98066,1759309 +36430,53,2,209032,1192400 +36431,413,11,337,6546 +36432,387,10,1163,15673 +36433,204,9,34651,86532 +36434,3,5,88811,232804 +36435,105,7,125835,237681 +36436,3,5,12573,151 +36437,148,9,43172,11444 +36438,3,5,7459,6800 +36439,3,5,4982,10688 +36440,317,10,18621,1886 +36441,179,2,9352,1323281 +36442,203,1,177047,1397870 +36443,286,3,44303,1372758 +36444,394,7,283445,1399631 +36445,3,5,27381,4614 +36446,209,7,22881,1341813 +36447,60,1,9504,1561591 +36448,234,1,16022,77162 +36449,75,5,8276,1176753 +36450,198,6,296524,1646598 +36451,317,10,85673,105081 +36452,413,11,43157,19334 +36453,269,9,80324,1536617 +36454,3,5,10396,8217 +36455,3,5,173205,1085270 +36456,234,1,138535,1012088 +36457,234,1,274325,144596 +36458,234,1,210302,1193919 +36459,53,2,43499,33176 +36460,234,1,52203,101520 +36461,262,6,294272,1354928 +36462,387,10,4913,39978 +36463,234,1,28774,114629 +36464,132,2,44129,18786 +36465,328,6,58244,1276648 +36466,187,11,19995,1352422 +36467,203,1,11450,18127 +36468,234,1,194853,20548 +36469,204,9,11370,1581073 +36470,179,2,11338,1434221 +36471,234,1,26881,166073 +36472,173,7,145481,1544003 +36473,148,9,43441,7338 +36474,317,10,22023,12113 +36475,190,7,203833,1338975 +36476,293,2,13616,1533496 +36477,97,7,338063,1321066 +36478,234,1,42170,20025 +36479,64,6,10865,1452489 +36480,234,1,22257,107639 +36481,387,10,43390,343201 +36482,234,1,280674,1338521 +36483,317,10,266030,1312056 +36484,3,5,43875,103020 +36485,127,3,68347,1007395 +36486,234,1,119569,57027 +36487,72,11,2675,1173410 +36488,234,1,30126,47399 +36489,5,10,38432,13971 +36490,273,7,257331,1294110 +36491,387,10,33611,239837 +36492,204,9,110412,14946 +36493,317,10,22943,89518 +36494,60,1,46069,1029784 +36495,204,9,126418,1361776 +36496,317,10,16899,1494596 +36497,273,7,30449,56657 +36498,234,1,33613,76325 +36499,273,7,107916,1142998 +36500,3,5,284052,22161 +36501,317,10,244458,1214473 +36502,226,2,10075,1146969 +36503,317,10,79611,107822 +36504,75,5,8619,1377230 +36505,204,9,110598,22029 +36506,203,1,274857,1829890 +36507,239,5,83430,1607051 +36508,413,11,22897,4186 +36509,83,2,71668,1827274 +36510,387,10,45772,136515 +36511,376,10,14611,35267 +36512,196,7,124963,1416579 +36513,3,5,337958,576008 +36514,387,10,227306,2163 +36515,317,10,310135,1397786 +36516,234,1,144229,15872 +36517,317,10,32536,109314 +36518,197,5,121598,1880916 +36519,105,7,9087,9251 +36520,141,7,2924,26981 +36521,158,2,98066,1759313 +36522,5,10,13853,1201714 +36523,169,3,9593,13457 +36524,269,9,34723,29788 +36525,415,3,985,5602 +36526,415,3,34459,26734 +36527,166,9,7299,1433709 +36528,3,5,434873,1519907 +36529,234,1,29094,19396 +36530,273,7,197611,185998 +36531,333,2,356752,1841580 +36532,273,7,194101,20459 +36533,3,5,9555,1357 +36534,317,10,362154,110511 +36535,105,7,108812,18593 +36536,373,7,283686,1400474 +36537,317,10,167262,66805 +36538,113,9,46387,1674477 +36539,143,7,19995,900 +36540,234,1,205349,56742 +36541,273,7,791,5912 +36542,5,10,33623,13900 +36543,53,2,10744,1183915 +36544,387,10,522,7131 +36545,204,9,58985,11423 +36546,234,1,293092,148011 +36547,317,10,13701,57851 +36548,317,10,288424,1357867 +36549,18,2,339403,1635173 +36550,324,3,98277,1017273 +36551,203,1,263115,1400540 +36552,317,10,13312,81045 +36553,182,8,325039,1407693 +36554,273,7,15003,1044545 +36555,3,5,2786,3540 +36556,269,9,238589,10936 +36557,105,7,233639,37084 +36558,327,7,57749,1411224 +36559,203,1,417870,1472891 +36560,148,9,54660,16176 +36561,180,7,31532,1533676 +36562,160,3,102668,141267 +36563,53,2,1539,17368 +36564,105,7,16839,1347938 +36565,269,9,43469,1417531 +36566,357,3,19995,1483233 +36567,3,5,8619,31027 +36568,328,6,354859,1811596 +36569,158,2,167,1413196 +36570,186,6,329865,1646510 +36571,387,10,4413,37159 +36572,314,2,8669,29218 +36573,273,7,21159,91810 +36574,413,11,44655,31220 +36575,77,10,15677,78521 +36576,387,10,61541,138466 +36577,286,3,393367,1107586 +36578,262,6,339530,1379433 +36579,209,7,50126,1555208 +36580,398,9,8619,1377213 +36581,234,1,160046,565310 +36582,79,7,34127,41410 +36583,197,5,8619,1858339 +36584,192,5,7551,1410583 +36585,396,3,15613,1442511 +36586,158,2,209112,1460748 +36587,105,7,79113,62086 +36588,148,9,28295,6934 +36589,204,9,4291,5000 +36590,234,1,25376,84714 +36591,3,5,28001,29983 +36592,174,6,10929,1575769 +36593,72,11,9664,1557600 +36594,317,10,59961,230174 +36595,148,9,5279,8384 +36596,413,11,27381,4615 +36597,413,11,64942,1125481 +36598,148,9,11576,29280 +36599,105,7,86126,1306118 +36600,3,5,5544,44017 +36601,234,1,278867,481162 +36602,143,7,75229,136364 +36603,387,10,25598,2228 +36604,250,11,274479,32806 +36605,3,5,11653,67048 +36606,413,11,9690,20609 +36607,39,3,10320,1496388 +36608,234,1,86920,8929 +36609,53,2,321039,955396 +36610,317,10,169,1094 +36611,269,9,41171,8315 +36612,190,7,348631,1695681 +36613,387,10,312221,1056121 +36614,317,10,197175,2725 +36615,387,10,2463,25239 +36616,387,10,246829,1281191 +36617,75,5,16996,1411270 +36618,60,1,333354,1661028 +36619,387,10,389614,1077402 +36620,204,9,30126,9061 +36621,105,7,50126,56748 +36622,234,1,214641,67593 +36623,179,2,50780,1333607 +36624,349,1,10948,1700850 +36625,234,1,83735,1001957 +36626,234,1,101217,556839 +36627,413,11,9793,62813 +36628,289,6,53178,225714 +36629,289,6,9514,1642173 +36630,204,9,45191,31318 +36631,317,10,20704,98456 +36632,314,2,200505,1526824 +36633,301,5,223485,1273154 +36634,204,9,34223,1668102 +36635,413,11,179288,569737 +36636,273,7,34223,66992 +36637,234,1,113137,44036 +36638,234,1,244117,1447241 +36639,387,10,128237,1086353 +36640,234,1,172004,221362 +36641,387,10,4644,41673 +36642,3,5,31522,3540 +36643,317,10,55823,1342813 +36644,387,10,31922,36120 +36645,234,1,21801,1027145 +36646,269,9,211144,1323721 +36647,45,9,9296,1341398 +36648,204,9,47046,1279565 +36649,387,10,62034,5812 +36650,269,9,2611,11507 +36651,53,2,73194,8509 +36652,317,10,340103,66074 +36653,328,6,297762,1391691 +36654,204,9,41402,1001708 +36655,52,10,122677,30678 +36656,203,1,10053,1397738 +36657,45,9,9835,1556697 +36658,387,10,15213,61951 +36659,317,10,173494,1127582 +36660,234,1,247447,1142661 +36661,234,1,57100,53218 +36662,22,9,381015,1828349 +36663,179,2,283384,1331930 +36664,234,1,79048,145117 +36665,234,1,46989,74638 +36666,234,1,396330,1637778 +36667,113,9,74,1790077 +36668,87,7,1690,1889497 +36669,234,1,204007,229765 +36670,52,10,53805,229271 +36671,209,7,37936,1339237 +36672,5,10,43142,143280 +36673,196,7,12,15893 +36674,327,7,33613,563330 +36675,381,9,10391,1404837 +36676,97,7,294254,1367493 +36677,3,5,409,2702 +36678,204,9,205939,1191537 +36679,289,6,72105,1453014 +36680,148,9,9664,10124 +36681,317,10,51736,550096 +36682,306,7,20312,1734494 +36683,269,9,26958,24526 +36684,317,10,210615,32096 +36685,234,1,299309,21863 +36686,52,10,24405,71234 +36687,413,11,9624,16650 +36688,204,9,198993,549551 +36689,333,2,3513,14763 +36690,234,1,64202,34920 +36691,234,1,287301,1396219 +36692,5,10,5955,12734 +36693,413,11,139455,21794 +36694,269,9,333354,1561043 +36695,204,9,76211,3358 +36696,286,3,53223,1401114 +36697,234,1,33228,67619 +36698,273,7,33107,60891 +36699,269,9,57201,10575 +36700,234,1,238952,6817 +36701,75,5,76341,1427378 +36702,234,1,293082,23883 +36703,60,1,39415,1407453 +36704,208,2,11202,14526 +36705,234,1,173638,583088 +36706,52,10,339530,1519601 +36707,317,10,27925,96496 +36708,317,10,115023,5844 +36709,317,10,180299,142013 +36710,3,5,273404,1445359 +36711,387,10,10521,67376 +36712,182,8,258193,1367366 +36713,317,10,146238,16304 +36714,373,7,218425,1451565 +36715,269,9,47412,1285669 +36716,413,11,2640,27569 +36717,273,7,11972,12331 +36718,387,10,43491,4508 +36719,413,11,43346,33513 +36720,398,9,256347,1338148 +36721,203,1,435,1418491 +36722,208,2,41283,1325234 +36723,179,2,330459,1323295 +36724,5,10,28902,57882 +36725,317,10,40693,16747 +36726,232,10,190269,4297 +36727,413,11,83384,1178186 +36728,77,10,57412,1125693 +36729,75,5,102382,995189 +36730,234,1,415633,1164767 +36731,169,3,924,14923 +36732,209,7,285,1368884 +36733,204,9,30934,1431833 +36734,204,9,10053,62560 +36735,158,2,15616,1320974 +36736,25,2,13058,1834845 +36737,198,6,324670,1569334 +36738,234,1,10693,11429 +36739,273,7,24973,1045 +36740,317,10,27543,95962 +36741,317,10,117499,222316 +36742,287,3,15762,1485646 +36743,273,7,45935,105397 +36744,346,3,693,1400384 +36745,273,7,13505,960 +36746,77,10,9589,15868 +36747,209,7,324670,1049333 +36748,87,7,14181,91147 +36749,209,7,10929,1411856 +36750,343,3,17082,131728 +36751,387,10,43912,1441846 +36752,287,3,9457,12614 +36753,317,10,30982,13848 +36754,234,1,28031,63713 +36755,317,10,428687,1717471 +36756,5,10,67509,548759 +36757,148,9,61400,233078 +36758,166,9,744,1378162 +36759,234,1,39130,14674 +36760,317,10,76543,14887 +36761,413,11,48949,10640 +36762,187,11,17771,1602322 +36763,286,3,98277,1371561 +36764,317,10,251227,1286523 +36765,404,6,40466,1760147 +36766,333,2,29161,589496 +36767,160,3,10744,1407364 +36768,250,11,93856,1409875 +36769,76,2,369885,1759883 +36770,357,3,72431,1415474 +36771,377,3,52454,1630389 +36772,143,7,20,2329 +36773,209,7,141,1596 +36774,317,10,259728,1206345 +36775,273,7,12479,4140 +36776,413,11,11873,3661 +36777,415,3,44932,1390218 +36778,317,10,48180,1075809 +36779,220,7,43231,1176688 +36780,204,9,157351,1281879 +36781,373,7,16432,1409734 +36782,105,7,26971,96694 +36783,3,5,63838,1596110 +36784,333,2,1624,1319166 +36785,165,9,227306,1866259 +36786,317,10,93676,80586 +36787,413,11,11692,853 +36788,3,5,73869,469154 +36789,268,7,293660,52193 +36790,3,5,171648,105566 +36791,387,10,42182,33287 +36792,3,5,45132,68441 +36793,317,10,309879,1621467 +36794,301,5,4887,1603674 +36795,413,11,21765,18276 +36796,317,10,120872,1072820 +36797,273,7,73198,1095038 +36798,204,9,65759,167789 +36799,204,9,59419,1526957 +36800,343,3,60568,1629994 +36801,176,3,1579,1400337 +36802,387,10,98369,1018930 +36803,413,11,9095,11072 +36804,204,9,16235,1605362 +36805,190,7,84577,1392941 +36806,234,1,82679,168798 +36807,234,1,87654,224715 +36808,317,10,85430,932046 +36809,200,3,10724,1442567 +36810,234,1,31985,56353 +36811,269,9,47342,138634 +36812,226,2,158908,1516459 +36813,113,9,10204,11273 +36814,83,2,20312,1518006 +36815,234,1,92321,992866 +36816,234,1,26581,134136 +36817,239,5,280092,1548078 +36818,234,1,113739,8429 +36819,207,3,41283,1440309 +36820,413,11,12606,68295 +36821,180,7,1976,4315 +36822,53,2,49963,1457392 +36823,169,3,19255,1541716 +36824,105,7,136752,1208810 +36825,333,2,37181,1141700 +36826,234,1,330770,17627 +36827,262,6,127585,1384369 +36828,64,6,52021,1452932 +36829,234,1,99657,6818 +36830,5,10,123025,2293 +36831,235,5,346672,1451882 +36832,53,2,49038,1457658 +36833,387,10,222872,106750 +36834,180,7,18642,9107 +36835,273,7,45219,117854 +36836,53,2,364690,1544543 +36837,413,11,11402,35839 +36838,287,3,78522,1148576 +36839,234,1,333352,13079 +36840,234,1,256474,57082 +36841,190,7,14,1342654 +36842,3,5,9914,60404 +36843,234,1,131781,82800 +36844,234,1,204994,55456 +36845,387,10,270400,180892 +36846,187,11,2567,99426 +36847,268,7,436,1043800 +36848,105,7,3638,1551 +36849,304,10,21570,87713 +36850,208,2,193893,74322 +36851,175,5,11832,1723386 +36852,3,5,8053,8969 +36853,234,1,43967,12180 +36854,373,7,241927,1585356 +36855,221,3,354859,1884740 +36856,333,2,76333,1506443 +36857,413,11,66881,549026 +36858,413,11,41252,1381290 +36859,394,7,243940,1406825 +36860,387,10,5481,44954 +36861,234,1,48596,962903 +36862,53,2,10070,62815 +36863,333,2,10590,1565948 +36864,200,3,283995,1417885 +36865,203,1,277839,1592793 +36866,187,11,264560,1387541 +36867,373,7,69974,557680 +36868,97,7,255491,1302967 +36869,53,2,31146,20826 +36870,262,6,102382,1360108 +36871,53,2,12113,946 +36872,413,11,30637,1062066 +36873,413,11,16075,2070 +36874,387,10,33680,81932 +36875,148,9,8467,23906 +36876,52,10,140887,32180 +36877,53,2,230179,1467953 +36878,293,2,99261,1752035 +36879,141,7,9902,14383 +36880,273,7,11397,10572 +36881,387,10,68737,1080778 +36882,387,10,8388,67773 +36883,234,1,9993,61346 +36884,413,11,35008,554994 +36885,244,3,18937,1447310 +36886,269,9,73262,5196 +36887,387,10,25430,14875 +36888,234,1,185057,93406 +36889,1,7,444713,1168229 +36890,226,2,2982,26176 +36891,413,11,365942,5668 +36892,273,7,26864,1801311 +36893,5,10,39519,136542 +36894,387,10,5481,44957 +36895,77,10,9703,21339 +36896,203,1,9423,1389602 +36897,5,10,356156,1500347 +36898,413,11,72733,1176816 +36899,273,7,128900,1158266 +36900,333,2,26693,1179000 +36901,273,7,42231,1121299 +36902,317,10,29144,84292 +36903,273,7,31264,136407 +36904,317,10,31448,108079 +36905,169,3,17144,13030 +36906,204,9,44960,1378431 +36907,286,3,44282,1271294 +36908,3,5,60665,5271 +36909,221,3,8870,1613277 +36910,413,11,43470,7126 +36911,234,1,31512,131186 +36912,53,2,19338,1211073 +36913,317,10,99859,1085561 +36914,291,6,246655,1521757 +36915,200,3,346672,1717741 +36916,204,9,5915,1483863 +36917,220,7,44398,39055 +36918,387,10,103902,1368995 +36919,204,9,301875,1173302 +36920,388,9,2046,1455287 +36921,413,11,6171,48457 +36922,209,7,241239,142165 +36923,219,11,8329,1637497 +36924,413,11,13946,1507055 +36925,234,1,2441,16435 +36926,289,6,257344,211671 +36927,234,1,26331,18378 +36928,387,10,18642,109702 +36929,3,5,57103,18744 +36930,413,11,80193,29998 +36931,234,1,327237,1109734 +36932,269,9,10863,6605 +36933,3,5,77165,45671 +36934,317,10,327383,212674 +36935,394,7,2300,8376 +36936,409,7,245906,1999 +36937,3,5,431093,1589517 +36938,104,7,12536,1559635 +36939,148,9,22682,4104 +36940,175,5,106747,1401151 +36941,317,10,142989,1118134 +36942,3,5,41283,40511 +36943,286,3,181454,1662226 +36944,105,7,82485,1108486 +36945,3,5,28710,1143456 +36946,234,1,46758,1605315 +36947,413,11,99261,240923 +36948,234,1,298931,468 +36949,234,1,167221,227910 +36950,234,1,62775,122402 +36951,262,6,225728,1376803 +36952,52,10,339530,1520109 +36953,360,3,10145,1406084 +36954,203,1,43912,1711586 +36955,273,7,7085,33765 +36956,317,10,168164,118606 +36957,286,3,315057,1528723 +36958,387,10,211085,666935 +36959,52,10,56906,225148 +36960,269,9,15940,17255 +36961,301,5,13056,1372884 +36962,273,7,60488,30104 +36963,181,7,621,8889 +36964,5,10,43139,145270 +36965,413,11,263115,71148 +36966,273,7,39407,101711 +36967,314,2,287903,1569346 +36968,87,7,345918,1191567 +36969,40,1,17911,102798 +36970,77,10,9904,60225 +36971,141,7,4248,28285 +36972,234,1,186019,110347 +36973,317,10,34231,112174 +36974,269,9,178587,4085 +36975,52,10,26661,29633 +36976,54,10,148284,1363304 +36977,234,1,13912,82389 +36978,25,2,419192,1688386 +36979,3,5,11909,65960 +36980,317,10,105584,37590 +36981,392,8,378441,1797474 +36982,236,8,251227,1286577 +36983,127,3,227975,1634845 +36984,296,3,31947,1896601 +36985,413,11,47446,65843 +36986,53,2,14137,957829 +36987,226,2,28297,30110 +36988,204,9,321315,1418980 +36989,413,11,120605,1451772 +36990,317,10,21736,90224 +36991,387,10,33107,137422 +36992,58,2,186869,1862952 +36993,277,7,16090,1027356 +36994,12,10,9475,31892 +36995,317,10,76640,6047 +36996,234,1,20200,93533 +36997,105,7,93350,39107 +36998,387,10,41110,78160 +36999,220,7,43828,13957 +37000,234,1,93935,186788 +37001,225,7,240913,1338149 +37002,196,7,297736,1833816 +37003,234,1,74879,56214 +37004,371,3,351211,1652094 +37005,3,5,193177,151454 +37006,203,1,1966,1380003 +37007,333,2,266102,1606177 +37008,317,10,33689,147476 +37009,273,7,11235,8271 +37010,317,10,75578,13506 +37011,148,9,58985,9042 +37012,374,8,98066,1759312 +37013,45,9,197,1406915 +37014,52,10,44895,1377401 +37015,3,5,37053,554162 +37016,262,6,9529,10629 +37017,413,11,78802,40151 +37018,5,10,20758,86533 +37019,53,2,30091,1023713 +37020,3,5,58372,4434 +37021,53,2,1586,961452 +37022,387,10,10521,83872 +37023,413,11,10797,66849 +37024,239,5,325712,1879688 +37025,105,7,325645,23729 +37026,413,11,133328,14778 +37027,182,8,267852,1622326 +37028,333,2,340187,1452241 +37029,52,10,29161,4668 +37030,5,10,12102,71243 +37031,45,9,1966,1335179 +37032,208,2,102382,15845 +37033,12,10,71668,62157 +37034,387,10,1420,17017 +37035,226,2,11975,1432032 +37036,234,1,377691,72372 +37037,46,5,413421,1785023 +37038,413,11,63773,1365238 +37039,333,2,19901,1418801 +37040,234,1,11600,1150 +37041,333,2,2965,29065 +37042,333,2,262522,1460860 +37043,413,11,42537,70982 +37044,387,10,9297,57194 +37045,301,5,10389,1067257 +37046,72,11,9928,40138 +37047,204,9,26882,1773261 +37048,387,10,12704,58251 +37049,413,11,420703,1692967 +37050,204,9,52827,1099118 +37051,317,10,6341,5045 +37052,413,11,340684,1313755 +37053,387,10,16442,6593 +37054,53,2,16997,1428576 +37055,387,10,8584,18923 +37056,286,3,433034,1846919 +37057,77,10,67,768 +37058,53,2,284053,17675 +37059,273,7,11577,1487 +37060,234,1,18755,83534 +37061,387,10,4882,61228 +37062,200,3,206647,1447617 +37063,234,1,411638,34021 +37064,280,2,318922,1575350 +37065,57,2,246655,1409824 +37066,176,3,10391,1404836 +37067,198,6,354859,1580860 +37068,250,11,270303,1404196 +37069,209,7,328111,1394306 +37070,415,3,345922,1815616 +37071,5,10,25673,148079 +37072,147,1,705,1087075 +37073,220,7,16442,17915 +37074,234,1,315882,1103619 +37075,77,10,522,7129 +37076,413,11,49097,1545052 +37077,234,1,349394,1354907 +37078,148,9,9959,20838 +37079,105,7,313896,1404561 +37080,327,7,251227,1286570 +37081,286,3,117942,1069669 +37082,413,11,82650,25142 +37083,273,7,19946,18836 +37084,5,10,83119,66779 +37085,286,3,375012,1262869 +37086,269,9,10760,66532 +37087,188,8,38322,1869024 +37088,234,1,74777,551463 +37089,74,5,327749,1814204 +37090,234,1,168676,27005 +37091,327,7,113038,1056203 +37092,317,10,24756,60400 +37093,317,10,65416,543175 +37094,387,10,33009,109913 +37095,396,3,10320,995644 +37096,3,5,300596,1074399 +37097,333,2,7299,27205 +37098,317,10,51247,76221 +37099,148,9,184795,928144 +37100,155,3,14,47098 +37101,175,5,152736,1409890 +37102,148,9,36089,34115 +37103,234,1,85430,994163 +37104,143,7,93863,1509725 +37105,209,7,12591,1377419 +37106,317,10,39176,14134 +37107,179,2,10204,1331979 +37108,182,8,13393,1603663 +37109,273,7,139519,984513 +37110,413,11,341491,1525791 +37111,387,10,11704,70287 +37112,184,7,10865,113076 +37113,5,10,50374,16786 +37114,3,5,14683,73276 +37115,273,7,1448,17252 +37116,234,1,22943,89518 +37117,203,1,116385,1776618 +37118,234,1,39286,1174668 +37119,296,3,664,1892495 +37120,75,5,375366,1570036 +37121,287,3,141733,123719 +37122,77,10,229,2921 +37123,317,10,13354,64031 +37124,3,5,56135,14648 +37125,328,6,10590,1394958 +37126,234,1,413882,76446 +37127,413,11,112284,9058 +37128,3,5,28171,100017 +37129,234,1,149511,2801 +37130,158,2,45019,1550207 +37131,333,2,298,1333900 +37132,3,5,15556,2702 +37133,317,10,46586,52172 +37134,234,1,173739,1076801 +37135,52,10,406052,201757 +37136,241,3,13576,1449374 +37137,413,11,381525,1201925 +37138,204,9,11576,958562 +37139,53,2,18912,1681828 +37140,234,1,51828,1176 +37141,204,9,32093,7337 +37142,360,3,1251,1263143 +37143,181,7,103332,8653 +37144,333,2,26983,16193 +37145,234,1,133183,1096775 +37146,3,5,27941,991674 +37147,387,10,11185,3460 +37148,413,11,116463,76021 +37149,221,3,74,1391600 +37150,289,6,124517,1080204 +37151,97,7,356500,1408204 +37152,273,7,87516,14351 +37153,13,11,374473,1650284 +37154,387,10,67509,548759 +37155,317,10,208968,466505 +37156,234,1,354105,37361 +37157,105,7,421958,1497971 +37158,234,1,369894,19852 +37159,220,7,17295,45670 +37160,333,2,2084,1465596 +37161,3,5,11399,19113 +37162,301,5,1966,1017789 +37163,394,7,172385,1376902 +37164,105,7,300596,73273 +37165,158,2,45273,1404819 +37166,209,7,10804,16737 +37167,317,10,266314,6779 +37168,209,7,62630,1338287 +37169,234,1,18741,70334 +37170,182,8,311324,72238 +37171,53,2,46623,11491 +37172,166,9,10396,1534931 +37173,269,9,271404,77469 +37174,209,7,11639,10201 +37175,317,10,211220,1195112 +37176,234,1,112244,587603 +37177,273,7,22701,120014 +37178,3,5,104776,2891 +37179,60,1,116312,1028828 +37180,387,10,340101,1466855 +37181,413,11,50073,29997 +37182,387,10,12561,72823 +37183,373,7,245700,40820 +37184,317,10,29128,88820 +37185,72,11,284052,1733871 +37186,53,2,42472,936191 +37187,387,10,28665,54781 +37188,269,9,107073,1018096 +37189,286,3,34496,1320559 +37190,209,7,634,9160 +37191,234,1,159138,34949 +37192,5,10,409,5495 +37193,387,10,74465,10567 +37194,287,3,388243,1622341 +37195,166,9,314065,1466251 +37196,317,10,18826,83653 +37197,204,9,67509,967606 +37198,207,3,116979,1415513 +37199,53,2,181533,3989 +37200,234,1,278544,127027 +37201,160,3,24810,113195 +37202,234,1,288035,21290 +37203,175,5,60281,992965 +37204,175,5,10204,40796 +37205,175,5,99861,1380002 +37206,317,10,13529,45186 +37207,234,1,189556,998555 +37208,317,10,46007,30723 +37209,234,1,81522,3556 +37210,127,3,19995,42288 +37211,387,10,15371,78366 +37212,226,2,44190,1567991 +37213,33,10,31442,1580047 +37214,148,9,72105,1204331 +37215,234,1,19325,82813 +37216,273,7,79521,8619 +37217,53,2,118984,79104 +37218,10,3,334,215486 +37219,413,11,3937,30154 +37220,208,2,272693,1316003 +37221,335,6,284053,1453948 +37222,158,2,310888,1734421 +37223,5,10,107250,1834270 +37224,160,3,9914,1495190 +37225,287,3,264397,1324070 +37226,234,1,21629,16897 +37227,317,10,38987,38527 +37228,317,10,46695,137357 +37229,12,10,43935,87681 +37230,105,7,40221,1300920 +37231,191,6,395992,70042 +37232,208,2,296523,13152 +37233,333,2,228970,1470524 +37234,234,1,6440,5306 +37235,394,7,9042,9349 +37236,113,9,1125,1322017 +37237,204,9,109424,61094 +37238,234,1,57654,931952 +37239,387,10,115665,43317 +37240,234,1,38328,85551 +37241,179,2,13162,1532325 +37242,333,2,15794,1462445 +37243,413,11,14705,1364352 +37244,234,1,182129,27339 +37245,77,10,14660,26849 +37246,53,2,9297,1462698 +37247,97,7,109424,40823 +37248,148,9,11370,1353879 +37249,234,1,43989,55916 +37250,317,10,383535,1579739 +37251,387,10,249021,81297 +37252,3,5,142391,1322103 +37253,317,10,13241,97579 +37254,3,5,72074,232804 +37255,289,6,10727,1418299 +37256,413,11,31880,30606 +37257,269,9,285840,55179 +37258,105,7,318553,550893 +37259,203,1,262522,1460862 +37260,317,10,12855,81068 +37261,148,9,18447,16893 +37262,317,10,332286,1444883 +37263,413,11,228496,57851 +37264,147,1,383538,1851878 +37265,373,7,10193,15894 +37266,53,2,131194,12651 +37267,236,8,188102,1205660 +37268,92,7,30583,58304 +37269,250,11,287903,1494212 +37270,103,6,209112,1413508 +37271,234,1,49689,563341 +37272,3,5,11055,39014 +37273,413,11,1369,16569 +37274,3,5,11101,15117 +37275,269,9,23048,15427 +37276,413,11,393559,1446577 +37277,234,1,302036,1383997 +37278,234,1,140276,11435 +37279,3,5,34469,16334 +37280,277,3,19901,1391723 +37281,273,7,4497,11967 +37282,387,10,338079,72768 +37283,381,9,9358,1441286 +37284,328,6,18,1881574 +37285,317,10,79113,62081 +37286,198,6,399790,1763567 +37287,317,10,171446,655062 +37288,161,6,338189,1646571 +37289,239,5,17111,1629469 +37290,269,9,173153,6494 +37291,164,3,273481,1543230 +37292,148,9,9352,1484175 +37293,3,5,26149,9573 +37294,317,10,74779,1001977 +37295,413,11,57103,8505 +37296,269,9,302042,1200899 +37297,5,10,117,1257 +37298,387,10,30640,14292 +37299,387,10,2262,9934 +37300,387,10,18722,15673 +37301,413,11,61765,35374 +37302,15,6,198663,1416171 +37303,317,10,65887,32013 +37304,46,5,227975,1775640 +37305,317,10,148327,120565 +37306,289,6,384737,1825456 +37307,108,10,19103,6210 +37308,204,9,257081,1096786 +37309,53,2,166621,10153 +37310,317,10,333385,203285 +37311,45,9,88273,1727711 +37312,387,10,24777,1181307 +37313,105,7,94352,1001707 +37314,411,9,354859,1324226 +37315,77,10,15794,78795 +37316,3,5,10222,64204 +37317,204,9,25653,1188 +37318,387,10,146521,1558902 +37319,250,11,205584,147855 +37320,262,6,12450,16499 +37321,413,11,169869,5166 +37322,373,7,297702,1447085 +37323,234,1,354979,1035 +37324,234,1,167956,237952 +37325,234,1,129363,935136 +37326,415,3,186585,100991 +37327,179,2,1717,1462855 +37328,317,10,114790,1105829 +37329,234,1,51476,136396 +37330,234,1,77117,1295479 +37331,234,1,896,12160 +37332,273,7,5482,29501 +37333,3,5,6643,1940 +37334,269,9,13042,7888 +37335,317,10,296313,1012 +37336,77,10,10025,62058 +37337,413,11,94727,772490 +37338,273,7,2978,14712 +37339,387,10,274857,41289 +37340,232,10,63681,25161 +37341,387,10,384450,872614 +37342,179,2,9286,1326723 +37343,143,7,256347,1338152 +37344,148,9,14676,1618316 +37345,387,10,22752,1090265 +37346,234,1,34082,102601 +37347,204,9,10004,61825 +37348,3,5,13580,10339 +37349,148,9,10863,1049695 +37350,53,2,38654,960135 +37351,234,1,44718,58292 +37352,182,8,46857,1595295 +37353,413,11,22029,7184 +37354,262,6,366045,1323787 +37355,203,1,312831,1568964 +37356,325,5,263115,1576866 +37357,234,1,262454,38072 +37358,182,8,284052,1774236 +37359,204,9,9675,37023 +37360,289,6,161880,930633 +37361,317,10,25074,18897 +37362,45,9,369885,1170536 +37363,317,10,270646,1011135 +37364,387,10,110381,235932 +37365,234,1,70875,232190 +37366,234,1,10407,7908 +37367,273,7,248698,87550 +37368,317,10,16022,77162 +37369,234,1,17606,36693 +37370,234,1,59264,229115 +37371,269,9,338189,962280 +37372,413,11,89492,800252 +37373,412,9,9016,1447362 +37374,12,10,283445,55499 +37375,75,5,382155,1636681 +37376,52,10,13654,60725 +37377,72,11,9819,1879208 +37378,188,8,405473,1800064 +37379,415,3,94182,119537 +37380,413,11,36634,19409 +37381,320,3,84184,1457056 +37382,143,7,365942,1435642 +37383,234,1,33729,69946 +37384,175,5,318922,1419222 +37385,234,1,36236,227520 +37386,52,10,33472,998690 +37387,226,2,18045,1429333 +37388,273,7,24420,5359 +37389,105,7,16866,1654585 +37390,387,10,43049,19094 +37391,234,1,34113,1124839 +37392,234,1,278901,217181 +37393,182,8,259997,1302524 +37394,141,7,12311,1535874 +37395,317,10,56068,5811 +37396,213,10,63681,25161 +37397,373,7,12220,42034 +37398,387,10,7551,52927 +37399,273,7,49500,39300 +37400,341,2,274857,1829878 +37401,148,9,21468,9799 +37402,60,1,52454,1630378 +37403,317,10,17287,84271 +37404,203,1,7299,1344278 +37405,182,8,220820,1405265 +37406,234,1,136743,225702 +37407,160,3,13954,24528 +37408,3,5,13336,64635 +37409,413,11,300155,1363205 +37410,234,1,61988,51000 +37411,200,3,23823,937958 +37412,52,10,102949,5397 +37413,234,1,65066,769 +37414,234,1,203072,1029069 +37415,387,10,15765,66598 +37416,104,7,271718,1551025 +37417,413,11,19336,1418629 +37418,105,7,55370,54359 +37419,182,8,245891,1395367 +37420,332,8,149509,1453943 +37421,305,9,366696,1769385 +37422,234,1,275060,1167896 +37423,317,10,52705,1870795 +37424,413,11,198227,1308057 +37425,250,11,354287,1414101 +37426,324,3,40863,66125 +37427,413,11,45610,13005 +37428,148,9,74126,1542581 +37429,52,10,28169,78021 +37430,387,10,97365,89628 +37431,317,10,27523,24658 +37432,53,2,5544,1625825 +37433,413,11,2267,853 +37434,317,10,46094,134762 +37435,175,5,85414,1406866 +37436,52,10,54287,177876 +37437,154,3,2760,27909 +37438,234,1,336890,449 +37439,317,10,868,13079 +37440,387,10,107976,1042835 +37441,155,3,325712,1362059 +37442,97,7,1877,1340323 +37443,64,6,11577,1507551 +37444,53,2,147829,32442 +37445,413,11,2085,21351 +37446,5,10,8128,38644 +37447,402,11,406431,1650625 +37448,331,3,544,1780221 +37449,317,10,27739,98851 +37450,234,1,240881,1279216 +37451,196,7,74,1360100 +37452,53,2,47694,45818 +37453,203,1,24392,1398904 +37454,60,1,42191,1340084 +37455,387,10,40028,98132 +37456,234,1,229757,46307 +37457,52,10,42640,1086325 +37458,269,9,47386,138779 +37459,53,2,122857,935301 +37460,234,1,44902,78845 +37461,273,7,26954,19711 +37462,147,1,38027,83412 +37463,236,8,163,1727312 +37464,52,10,24750,1151462 +37465,3,5,43277,12307 +37466,226,2,70981,1437620 +37467,411,9,76757,9583 +37468,3,5,285840,1038000 +37469,213,10,43850,115849 +37470,387,10,65777,41416 +37471,398,9,9423,1389585 +37472,53,2,4520,13009 +37473,3,5,241593,1545302 +37474,269,9,127372,1314 +37475,234,1,152113,66150 +37476,317,10,361380,1215728 +37477,225,7,18843,1691591 +37478,127,3,94352,1447518 +37479,53,2,81687,1355547 +37480,413,11,62761,1267327 +37481,52,10,68347,1384194 +37482,209,7,5516,1394984 +37483,158,2,1578,1628998 +37484,289,6,177572,1459735 +37485,234,1,2613,26487 +37486,226,2,26768,32117 +37487,234,1,136799,64151 +37488,52,10,53573,119534 +37489,169,3,157847,1372209 +37490,179,2,49009,1325584 +37491,413,11,47426,1847716 +37492,317,10,6947,11614 +37493,60,1,86814,1542495 +37494,190,7,8869,1340738 +37495,234,1,186755,47059 +37496,197,5,369885,1544416 +37497,234,1,282024,139467 +37498,166,9,8870,1724240 +37499,5,10,9675,58469 +37500,143,7,59962,113097 +37501,190,7,285270,1367926 +37502,204,9,24973,3358 +37503,262,6,188927,1420157 +37504,289,6,53178,11434 +37505,413,11,2075,7126 +37506,105,7,29825,56905 +37507,67,10,17111,1629464 +37508,310,3,77117,1295481 +37509,204,9,336850,1439807 +37510,53,2,1724,11386 +37511,269,9,177047,971819 +37512,317,10,323690,208685 +37513,143,7,10238,1080975 +37514,204,9,27966,1132111 +37515,262,6,228066,15883 +37516,52,10,82684,616781 +37517,148,9,63858,12349 +37518,234,1,31773,82413 +37519,204,9,43045,120193 +37520,413,11,10055,2150 +37521,3,5,211879,137548 +37522,413,11,1986,19989 +37523,234,1,40864,124856 +37524,204,9,281124,1340098 +37525,413,11,1282,4339 +37526,328,6,20919,1423415 +37527,234,1,48775,8452 +37528,387,10,1995,20506 +37529,226,2,17771,1602326 +37530,52,10,42515,558639 +37531,357,3,9286,1441357 +37532,273,7,28363,100580 +37533,317,10,19731,22250 +37534,204,9,9753,59397 +37535,387,10,8816,56396 +37536,396,3,1966,71579 +37537,196,7,76757,1341786 +37538,317,10,79218,1302832 +37539,234,1,90932,78053 +37540,53,2,36785,116205 +37541,289,6,28032,1462810 +37542,234,1,31421,136903 +37543,53,2,316042,1482222 +37544,52,10,26503,48415 +37545,286,3,15356,61495 +37546,269,9,117120,56640 +37547,317,10,42537,1358394 +37548,234,1,25645,18899 +37549,92,7,27599,568070 +37550,53,2,1903,11802 +37551,273,7,203833,491 +37552,317,10,273578,82460 +37553,3,5,280690,1057049 +37554,333,2,47540,1468506 +37555,262,6,70074,1407356 +37556,317,10,222517,70204 +37557,12,10,3937,34172 +37558,52,10,61984,139090 +37559,46,5,634,1767779 +37560,234,1,35724,238822 +37561,234,1,14770,231537 +37562,387,10,2102,21547 +37563,158,2,44943,1325215 +37564,387,10,35016,113587 +37565,204,9,49007,958921 +37566,105,7,279179,53341 +37567,269,9,573,7756 +37568,317,10,137528,1196006 +37569,317,10,17295,71416 +37570,387,10,244201,4509 +37571,234,1,43580,121216 +37572,190,7,102382,1360102 +37573,234,1,45576,423584 +37574,269,9,755,11422 +37575,269,9,335970,552263 +37576,291,6,201085,1457911 +37577,148,9,376660,1438588 +37578,234,1,367732,1534231 +37579,413,11,46586,29503 +37580,234,1,33542,44916 +37581,203,1,4982,1464541 +37582,196,7,9426,1018349 +37583,234,1,341689,17114 +37584,3,5,2047,6378 +37585,234,1,22398,15337 +37586,268,7,340275,92382 +37587,75,5,198795,1541519 +37588,60,1,2454,1455486 +37589,234,1,335819,1460387 +37590,387,10,19174,153535 +37591,5,10,2760,27905 +37592,328,6,395883,1636734 +37593,158,2,245700,1434870 +37594,333,2,28000,29801 +37595,198,6,248087,1537411 +37596,3,5,21191,52530 +37597,289,6,125521,1170786 +37598,317,10,201124,1182830 +37599,5,10,65603,54350 +37600,234,1,60677,1015967 +37601,148,9,16442,13974 +37602,53,2,11137,907 +37603,175,5,419430,1387186 +37604,53,2,200505,1311133 +37605,273,7,786,11656 +37606,52,10,260947,1304135 +37607,234,1,175339,35407 +37608,105,7,14072,568674 +37609,273,7,283445,60891 +37610,273,7,9542,4140 +37611,5,10,43384,105386 +37612,387,10,2907,29529 +37613,3,5,11485,69572 +37614,269,9,120605,1569303 +37615,317,10,37050,102561 +37616,317,10,62838,68308 +37617,387,10,362150,1133446 +37618,204,9,63333,21872 +37619,269,9,368006,1640319 +37620,204,9,8204,1409696 +37621,286,3,211139,22471 +37622,53,2,14295,33439 +37623,148,9,81687,8508 +37624,105,7,40562,64634 +37625,394,7,1369,16552 +37626,387,10,181533,121358 +37627,304,10,55853,39708 +37628,99,3,3716,33681 +37629,148,9,411741,1673685 +37630,360,9,4547,1749906 +37631,387,10,323665,989687 +37632,317,10,437752,109708 +37633,113,9,70667,1015623 +37634,317,10,74661,1474787 +37635,204,9,76211,1027081 +37636,208,2,20766,1069714 +37637,273,7,12697,40613 +37638,387,10,21057,1133283 +37639,306,7,10204,69325 +37640,387,10,8460,55874 +37641,175,5,334074,75116 +37642,204,9,15749,1324052 +37643,32,8,8619,1619101 +37644,148,9,76341,1191326 +37645,317,10,72278,84472 +37646,333,2,949,15845 +37647,328,6,2978,65674 +37648,3,5,10900,56536 +37649,387,10,33016,1143709 +37650,387,10,9894,60082 +37651,53,2,38162,1837989 +37652,3,5,41030,4083 +37653,415,3,99846,1797601 +37654,175,5,322443,1401196 +37655,175,5,227306,1395243 +37656,387,10,126712,1181531 +37657,387,10,33673,111215 +37658,234,1,334132,112163 +37659,3,5,1926,20032 +37660,234,1,19760,49361 +37661,234,1,224951,168480 +37662,257,3,1624,1596307 +37663,413,11,266102,2070 +37664,3,5,37917,792 +37665,158,2,14,1387259 +37666,105,7,86647,101469 +37667,234,1,53693,592622 +37668,232,10,28261,100305 +37669,234,1,53128,124919 +37670,234,1,29136,69982 +37671,277,3,286372,1378140 +37672,204,9,25655,1103523 +37673,188,8,9716,1661552 +37674,263,11,35,1459506 +37675,53,2,87894,1392272 +37676,13,3,142402,1117111 +37677,87,7,9675,1535131 +37678,52,10,277355,84335 +37679,203,1,4133,1344278 +37680,387,10,2267,10830 +37681,317,10,157178,587971 +37682,105,7,33556,87550 +37683,289,6,9514,1642595 +37684,245,3,95358,1336843 +37685,166,9,1662,1534941 +37686,238,7,121598,1389667 +37687,387,10,8247,11092 +37688,77,10,15805,35267 +37689,273,7,301272,239152 +37690,317,10,60568,70675 +37691,413,11,4380,36806 +37692,273,7,12767,6111 +37693,41,3,14430,1521705 +37694,413,11,4257,18276 +37695,289,6,9297,1462696 +37696,273,7,890,36596 +37697,3,5,24405,6050 +37698,234,1,41277,123558 +37699,413,11,30363,499852 +37700,113,9,635,22105 +37701,239,5,52454,1630385 +37702,387,10,64202,182257 +37703,226,2,11614,138639 +37704,204,9,197,1333239 +37705,234,1,47426,1152 +37706,203,1,310568,1598442 +37707,148,9,45132,62781 +37708,333,2,21849,16193 +37709,273,7,13437,10494 +37710,52,10,413417,1719069 +37711,3,5,106546,1308306 +37712,226,2,93856,1409863 +37713,204,9,31672,32350 +37714,181,7,21671,1302084 +37715,203,1,181533,1871154 +37716,387,10,28325,100432 +37717,413,11,238,3099 +37718,204,9,791,11821 +37719,52,10,10020,66193 +37720,317,10,124680,1233745 +37721,182,8,338,1380000 +37722,317,10,294640,1367051 +37723,333,2,27380,1364859 +37724,273,7,169726,120123 +37725,317,10,266030,1312057 +37726,286,3,18731,68328 +37727,187,11,17654,1401690 +37728,52,10,18939,83784 +37729,250,11,204922,1414101 +37730,196,7,57749,1411223 +37731,234,1,195522,4065 +37732,60,1,95169,1422215 +37733,13,5,166161,1429472 +37734,234,1,185111,1031166 +37735,250,11,365942,1494213 +37736,373,7,381015,1401290 +37737,317,10,39939,56253 +37738,277,3,26656,1454511 +37739,60,1,57597,1272590 +37740,394,7,315664,1421647 +37741,286,3,303867,109314 +37742,413,11,10841,32550 +37743,182,8,246655,1394757 +37744,3,5,156981,1575332 +37745,317,10,148034,15255 +37746,234,1,253277,1288761 +37747,317,10,92132,1118746 +37748,187,11,44943,1360097 +37749,3,5,1825,33010 +37750,317,10,75892,37590 +37751,413,11,4443,1019436 +37752,317,10,70057,1174684 +37753,239,5,302828,1593263 +37754,234,1,236007,1143185 +37755,234,1,128237,1086353 +37756,148,9,38766,8508 +37757,18,2,18417,83081 +37758,273,7,82737,119208 +37759,269,9,31146,3287 +37760,3,5,11145,16331 +37761,273,7,244801,1280058 +37762,3,5,5559,44121 +37763,97,7,241239,20229 +37764,387,10,1721,18839 +37765,3,5,96702,14569 +37766,234,1,9664,57138 +37767,286,3,259830,43405 +37768,234,1,129332,30683 +37769,204,9,383140,1276442 +37770,12,10,30554,62556 +37771,301,5,285270,1367935 +37772,234,1,24140,37860 +37773,3,5,15797,35976 +37774,234,1,32588,112078 +37775,317,10,17687,96819 +37776,273,7,201749,947 +37777,217,3,14317,1447551 +37778,75,5,19101,1411538 +37779,40,1,244316,1382036 +37780,207,3,1381,76003 +37781,53,2,4974,26099 +37782,234,1,44414,6111 +37783,3,5,173205,1424108 +37784,234,1,260001,1302549 +37785,10,3,12103,51386 +37786,234,1,44436,130858 +37787,3,5,1450,29692 +37788,53,2,22476,1308234 +37789,413,11,80324,41401 +37790,207,3,189,1401154 +37791,53,2,3682,20826 +37792,77,10,10594,65766 +37793,387,10,9885,59998 +37794,234,1,147590,213438 +37795,187,11,103332,1404717 +37796,413,11,101363,60411 +37797,413,11,134480,18595 +37798,182,8,334074,1408822 +37799,234,1,258255,1299144 +37800,269,9,26882,1773037 +37801,204,9,26283,1337168 +37802,415,3,4923,1477808 +37803,203,1,26510,1555722 +37804,291,6,209112,1378701 +37805,269,9,376501,61522 +37806,273,7,156,1637 +37807,234,1,21057,93512 +37808,413,11,47739,68090 +37809,3,5,34977,39798 +37810,234,1,14977,83857 +37811,387,10,12697,24079 +37812,60,1,28682,100423 +37813,413,11,12638,71039 +37814,3,5,76341,2702 +37815,148,9,13954,1084800 +37816,291,6,12526,1402713 +37817,234,1,17582,118513 +37818,269,9,262,874 +37819,148,9,50838,38957 +37820,234,1,16444,11493 +37821,155,3,8916,1264811 +37822,3,5,4825,10537 +37823,3,5,335509,17761 +37824,234,1,38772,16294 +37825,234,1,225283,1184967 +37826,60,1,10178,1216886 +37827,413,11,327528,27903 +37828,40,1,3059,8837 +37829,209,7,10326,16161 +37830,273,7,10973,1938 +37831,413,11,14525,58445 +37832,148,9,6973,112307 +37833,273,7,11658,64886 +37834,413,11,356758,1501812 +37835,180,7,31527,13339 +37836,53,2,48116,1545741 +37837,234,1,8460,55116 +37838,3,5,97614,57126 +37839,148,9,196235,60108 +37840,182,8,103332,1547215 +37841,381,9,2105,1552166 +37842,306,7,703,18857 +37843,167,3,318553,1555137 +37844,398,9,9423,933506 +37845,317,10,45679,19966 +37846,317,10,128044,85637 +37847,398,9,1125,1390518 +37848,273,7,10805,66886 +37849,204,9,40807,23414 +37850,5,10,129518,1089973 +37851,45,9,2666,1392668 +37852,234,1,268539,1079368 +37853,234,1,53217,100888 +37854,3,5,62732,1334762 +37855,317,10,137746,1035398 +37856,105,7,5928,491 +37857,3,5,12122,24956 +37858,204,9,12645,1316191 +37859,234,1,211166,8557 +37860,3,5,14554,18744 +37861,229,6,395992,1770982 +37862,127,3,28,1402117 +37863,234,1,82999,105574 +37864,304,10,64968,240119 +37865,317,10,38237,135046 +37866,234,1,38869,1537022 +37867,175,5,366045,1400407 +37868,317,10,140708,1113222 +37869,3,5,18333,11905 +37870,269,9,52021,33146 +37871,387,10,144792,70044 +37872,234,1,26873,96494 +37873,387,10,38681,23359 +37874,234,1,24351,55161 +37875,234,1,61528,1017624 +37876,18,2,14019,76263 +37877,413,11,4375,14235 +37878,204,9,5991,1309016 +37879,236,8,1579,42039 +37880,148,9,126516,1351628 +37881,190,7,11607,1342627 +37882,317,10,261538,72500 +37883,413,11,13005,7414 +37884,188,8,52454,1630387 +37885,64,6,15060,1451683 +37886,413,11,395992,1204180 +37887,317,10,29979,57437 +37888,298,5,9946,1767304 +37889,148,9,1278,16339 +37890,204,9,330459,1367550 +37891,234,1,53403,13848 +37892,75,5,76757,1415500 +37893,25,2,329289,82101 +37894,204,9,259695,66689 +37895,305,9,311324,994550 +37896,333,2,5,1877357 +37897,387,10,5201,42061 +37898,203,1,1624,1342629 +37899,5,10,127105,1469349 +37900,387,10,35002,39853 +37901,64,6,99861,1457635 +37902,301,5,3682,1401298 +37903,105,7,9308,12939 +37904,333,2,9457,75294 +37905,97,7,206647,1338372 +37906,161,6,435,1574663 +37907,113,9,159667,1849496 +37908,286,3,52918,220691 +37909,204,9,4147,8285 +37910,204,9,204802,1623836 +37911,317,10,139826,12404 +37912,179,2,9451,1531561 +37913,180,7,84337,8512 +37914,415,3,25241,101297 +37915,190,7,28110,1424318 +37916,234,1,154575,591273 +37917,273,7,9502,11098 +37918,387,10,39982,1204746 +37919,273,7,28363,100579 +37920,53,2,10391,13551 +37921,127,3,9475,1728594 +37922,234,1,41979,127401 +37923,52,10,293167,57113 +37924,234,1,447511,936584 +37925,198,6,315664,1424573 +37926,413,11,12481,72434 +37927,304,10,4111,11436 +37928,77,10,11838,20310 +37929,234,1,81312,589507 +37930,273,7,332979,1670653 +37931,357,3,274857,1829973 +37932,234,1,161880,112994 +37933,41,3,14430,1521703 +37934,3,5,63472,72264 +37935,196,7,201085,1572874 +37936,317,10,277726,100516 +37937,245,3,2924,1803774 +37938,327,7,218425,1451561 +37939,3,5,77381,4008 +37940,412,9,3172,1553239 +37941,234,1,42448,47773 +37942,143,7,19101,2889 +37943,317,10,199647,1179825 +37944,105,7,39347,227204 +37945,234,1,330171,73639 +37946,3,5,47504,7034 +37947,53,2,140,3683 +37948,234,1,274857,956 +37949,204,9,44591,11970 +37950,287,3,139455,1281269 +37951,3,5,175822,125508 +37952,413,11,86814,17532 +37953,5,10,50001,82498 +37954,234,1,58467,227851 +37955,387,10,32390,231876 +37956,3,5,48706,36 +37957,158,2,27265,1341861 +37958,208,2,121824,15017 +37959,234,1,9385,57543 +37960,413,11,7511,11625 +37961,413,11,10041,62342 +37962,87,7,127521,1542732 +37963,105,7,53693,1142664 +37964,3,5,21380,24913 +37965,234,1,156908,1138117 +37966,387,10,2516,10019 +37967,84,7,193893,1372208 +37968,273,7,10178,3249 +37969,333,2,10916,1402105 +37970,72,11,74,73108 +37971,77,10,13185,76242 +37972,234,1,27031,76978 +37973,234,1,82762,1184249 +37974,234,1,183827,70862 +37975,98,3,10204,1569847 +37976,234,1,183825,34751 +37977,234,1,379387,1130244 +37978,204,9,796,8221 +37979,175,5,283445,1548098 +37980,187,11,366696,1769383 +37981,317,10,113432,938618 +37982,182,8,321039,1437197 +37983,413,11,13965,76202 +37984,273,7,6440,19155 +37985,3,5,200727,122220 +37986,273,7,89492,312 +37987,403,10,416569,1681158 +37988,148,9,4644,41679 +37989,60,1,178341,1123022 +37990,234,1,10047,59 +37991,53,2,49974,1893540 +37992,234,1,79596,587535 +37993,204,9,946,12346 +37994,148,9,15697,3648 +37995,204,9,104193,552639 +37996,269,9,127424,1688358 +37997,209,7,418437,1394307 +37998,269,9,10336,10936 +37999,387,10,42494,64065 +38000,269,9,48949,1331823 +38001,413,11,10837,67057 +38002,3,5,46572,49901 +38003,148,9,229610,7338 +38004,234,1,268712,232623 +38005,413,11,11133,23914 +38006,75,5,73835,1606281 +38007,387,10,249264,66111 +38008,204,9,450530,1634555 +38009,5,10,12506,72564 +38010,52,10,173634,167898 +38011,317,10,74661,27954 +38012,204,9,127585,1384358 +38013,52,10,134435,167896 +38014,327,7,703,20694 +38015,234,1,8199,53964 +38016,234,1,32091,1633 +38017,148,9,269173,1379040 +38018,387,10,289,4508 +38019,3,5,28270,12344 +38020,12,10,709,9856 +38021,234,1,273167,40549 +38022,182,8,274479,1608764 +38023,387,10,344120,938085 +38024,317,10,44502,124237 +38025,3,5,37628,1071752 +38026,413,11,13807,23810 +38027,179,2,293167,1413000 +38028,413,11,33343,39982 +38029,234,1,28025,99405 +38030,394,7,345775,1621096 +38031,75,5,388243,1064585 +38032,387,10,12536,72700 +38033,317,10,97797,582314 +38034,208,2,9042,15330 +38035,387,10,21734,3681 +38036,204,9,43828,13958 +38037,20,2,360249,1635735 +38038,273,7,9296,1225 +38039,105,7,24757,23806 +38040,52,10,172445,1796929 +38041,273,7,540,13226 +38042,234,1,47115,225499 +38043,269,9,67377,32382 +38044,357,3,9982,1713391 +38045,234,1,72678,566917 +38046,373,7,53459,1379046 +38047,317,10,86700,933504 +38048,317,10,14550,68039 +38049,110,1,12,8 +38050,53,2,406449,1698806 +38051,143,7,373546,1640712 +38052,259,3,8619,1619087 +38053,3,5,32235,22119 +38054,204,9,86703,933543 +38055,232,10,80089,101616 +38056,3,5,43075,96052 +38057,234,1,27105,96983 +38058,160,3,364088,1748540 +38059,160,3,11415,62596 +38060,3,5,228290,67324 +38061,269,9,11045,11423 +38062,333,2,110980,1343517 +38063,234,1,33317,110348 +38064,387,10,204922,17608 +38065,304,10,64968,5069 +38066,273,7,270400,1033665 +38067,105,7,24801,63427 +38068,277,7,47536,1713005 +38069,328,6,1381,1447147 +38070,196,7,924,9427 +38071,3,5,79995,1051668 +38072,204,9,35651,1590604 +38073,3,5,37292,137885 +38074,157,3,178809,1192244 +38075,105,7,92496,1795206 +38076,317,10,13567,74671 +38077,306,7,325712,1879686 +38078,234,1,246127,2303 +38079,387,10,8128,53859 +38080,83,2,381015,1445364 +38081,234,1,335031,164509 +38082,269,9,27523,44986 +38083,387,10,3024,11994 +38084,250,11,201085,1413912 +38085,234,1,336775,141429 +38086,143,7,74,1404716 +38087,10,3,263115,1374340 +38088,234,1,40952,62020 +38089,3,5,18820,1371915 +38090,269,9,9785,25831 +38091,3,5,3087,14569 +38092,148,9,43327,1335586 +38093,269,9,23823,1541503 +38094,122,8,167,1549178 +38095,317,10,424488,1384377 +38096,3,5,8194,18494 +38097,387,10,1483,17279 +38098,387,10,373546,23626 +38099,287,3,11880,1424924 +38100,413,11,73198,68295 +38101,413,11,9827,55955 +38102,45,9,351211,1427777 +38103,289,6,73690,149100 +38104,75,5,390747,1662637 +38105,5,10,167583,1324752 +38106,204,9,1595,17853 +38107,234,1,18736,19228 +38108,317,10,167951,81976 +38109,413,11,41597,14295 +38110,317,10,13493,52361 +38111,234,1,131898,37362 +38112,317,10,391778,1602264 +38113,413,11,10674,1442567 +38114,234,1,333371,568322 +38115,189,3,251,1453318 +38116,64,6,241927,1049972 +38117,187,11,6934,1374170 +38118,273,7,12169,1164962 +38119,387,10,51481,211980 +38120,373,7,24238,1425589 +38121,53,2,410537,1704840 +38122,148,9,329865,1810161 +38123,234,1,273879,5058 +38124,413,11,111470,32439 +38125,5,10,33280,583434 +38126,97,7,74879,142096 +38127,269,9,50001,3387 +38128,273,7,3556,32779 +38129,234,1,86979,56634 +38130,415,3,17136,111173 +38131,234,1,14387,14292 +38132,53,2,111839,19310 +38133,273,7,53879,8503 +38134,317,10,38580,15812 +38135,182,8,325803,1428035 +38136,232,10,43904,142917 +38137,234,1,33336,24389 +38138,5,10,4762,39299 +38139,387,10,43546,47844 +38140,53,2,57597,1522888 +38141,234,1,69974,557661 +38142,3,5,53230,35502 +38143,249,7,316042,1395361 +38144,87,7,297762,1544338 +38145,72,11,6163,1423432 +38146,204,9,2428,8506 +38147,234,1,91477,57142 +38148,413,11,34106,30154 +38149,387,10,36612,38240 +38150,317,10,14904,3047 +38151,77,10,9550,607 +38152,397,7,37645,144850 +38153,413,11,138222,1018463 +38154,82,3,10204,1335880 +38155,387,10,4133,11151 +38156,53,2,131737,1319727 +38157,234,1,103236,610747 +38158,412,9,109439,1868188 +38159,413,11,24397,1385926 +38160,317,10,38766,64117 +38161,3,5,43773,1651357 +38162,394,7,7299,7239 +38163,369,6,12,7944 +38164,77,10,14353,76686 +38165,234,1,411013,1116251 +38166,182,8,28178,1532354 +38167,317,10,21198,59611 +38168,182,8,10145,1446688 +38169,387,10,2267,3431 +38170,273,7,241927,1530613 +38171,226,2,74,1532195 +38172,127,3,98566,1459769 +38173,244,3,272693,1709329 +38174,413,11,293625,102473 +38175,105,7,21734,4082 +38176,234,1,61984,43652 +38177,328,6,9423,1389593 +38178,328,6,7445,1400519 +38179,50,3,8916,933498 +38180,188,8,8276,1544430 +38181,204,9,25673,21456 +38182,387,10,37917,1120127 +38183,333,2,9905,9161 +38184,234,1,55853,73153 +38185,273,7,5494,38309 +38186,239,5,346672,1721319 +38187,269,9,99579,26098 +38188,387,10,310888,237855 +38189,234,1,28297,14227 +38190,413,11,9943,57985 +38191,413,11,390747,1662619 +38192,50,3,8870,1724250 +38193,141,7,10665,1896006 +38194,204,9,2454,9420 +38195,269,9,809,12071 +38196,3,5,45838,1120803 +38197,273,7,8270,1213 +38198,234,1,37419,46054 +38199,234,1,26503,29433 +38200,226,2,15616,1414984 +38201,105,7,18836,141174 +38202,148,9,9358,35699 +38203,324,3,189556,998555 +38204,413,11,28561,30536 +38205,187,11,1950,1341405 +38206,413,11,71805,124865 +38207,234,1,336655,1456977 +38208,190,7,22881,1355963 +38209,182,8,2454,1389541 +38210,3,5,10320,10832 +38211,234,1,54102,113600 +38212,3,5,210047,1292997 +38213,52,10,12697,74003 +38214,203,1,47504,1209612 +38215,317,10,20645,5026 +38216,113,9,70981,1330898 +38217,234,1,49028,76813 +38218,317,10,76115,65360 +38219,53,2,10396,8222 +38220,306,7,74126,1899319 +38221,387,10,20287,12113 +38222,53,2,312174,1400594 +38223,317,10,325133,1085179 +38224,387,10,10550,56452 +38225,232,10,17687,128355 +38226,53,2,287587,1475897 +38227,273,7,2669,595 +38228,317,10,55177,190339 +38229,387,10,166666,1122725 +38230,317,10,24397,130817 +38231,175,5,157354,1535117 +38232,207,3,204922,1389547 +38233,234,1,314388,24011 +38234,234,1,71444,564889 +38235,317,10,106546,146402 +38236,234,1,106537,1040501 +38237,203,1,296025,1461498 +38238,87,7,9835,1556700 +38239,234,1,3145,30700 +38240,317,10,118497,588925 +38241,289,6,291270,65856 +38242,413,11,60285,7510 +38243,333,2,93856,1409865 +38244,234,1,191476,1444768 +38245,189,3,109424,1408404 +38246,301,5,2567,1402032 +38247,373,7,378485,1742507 +38248,234,1,87194,237588 +38249,293,2,80713,1381212 +38250,268,7,263115,113041 +38251,203,1,33729,1417662 +38252,273,7,11216,1259 +38253,333,2,99698,559186 +38254,273,7,6948,51543 +38255,273,7,10714,7728 +38256,289,6,269149,1447376 +38257,209,7,41283,1408722 +38258,208,2,19912,13152 +38259,269,9,17144,1436531 +38260,317,10,383538,1811971 +38261,66,11,263115,1813847 +38262,234,1,249703,1000952 +38263,164,3,333484,1558101 +38264,387,10,54146,96807 +38265,314,2,193893,1452231 +38266,204,9,4011,7146 +38267,3,5,12696,35655 +38268,75,5,197,1394974 +38269,387,10,24078,93000 +38270,234,1,165095,1146748 +38271,234,1,142084,116584 +38272,301,5,121598,1880921 +38273,413,11,110972,1917 +38274,234,1,297853,29646 +38275,328,6,22076,138657 +38276,192,5,17015,1840482 +38277,5,10,186988,1171858 +38278,3,5,10749,45946 +38279,75,5,11370,1377131 +38280,179,2,76170,1465352 +38281,387,10,153169,33029 +38282,169,3,12573,11310 +38283,269,9,59419,1069078 +38284,287,3,198663,1056413 +38285,40,1,263115,10956 +38286,53,2,286873,1553453 +38287,234,1,156388,29627 +38288,3,5,20174,4083 +38289,317,10,71336,562600 +38290,45,9,9532,1441241 +38291,317,10,141015,1143785 +38292,148,9,141955,1606888 +38293,387,10,86920,8929 +38294,413,11,28295,18578 +38295,387,10,3716,5125 +38296,262,6,368006,1640327 +38297,289,6,291270,1584375 +38298,273,7,9987,61498 +38299,234,1,205054,100629 +38300,394,7,10145,9349 +38301,387,10,11259,12648 +38302,127,3,18405,1842599 +38303,286,3,108634,551552 +38304,87,7,373546,1528013 +38305,5,10,92269,1469161 +38306,45,9,293167,1391709 +38307,317,10,55823,5811 +38308,317,10,70057,231751 +38309,105,7,15414,32259 +38310,413,11,242310,16650 +38311,60,1,75510,1529435 +38312,317,10,93115,1041622 +38313,161,6,755,1573106 +38314,234,1,52556,235013 +38315,317,10,227964,227546 +38316,3,5,49974,138326 +38317,105,7,325039,1296724 +38318,190,7,285270,1367928 +38319,5,10,277713,1409658 +38320,277,7,210653,31873 +38321,175,5,1966,1393448 +38322,287,3,44363,1613336 +38323,317,10,88564,1159418 +38324,234,1,123691,621628 +38325,234,1,6644,11435 +38326,204,9,319073,1559449 +38327,362,3,1647,1551664 +38328,387,10,11370,56953 +38329,333,2,13834,75878 +38330,53,2,46029,16986 +38331,269,9,67,1029500 +38332,373,7,293660,1389133 +38333,317,10,297762,211962 +38334,317,10,27526,2228 +38335,317,10,14589,26159 +38336,141,7,109439,65644 +38337,269,9,45273,961600 +38338,317,10,58060,1630065 +38339,3,5,13393,1603658 +38340,3,5,33613,68572 +38341,323,10,407575,1781545 +38342,317,10,45807,8635 +38343,317,10,211879,1596324 +38344,105,7,105384,29501 +38345,317,10,40985,2000 +38346,314,2,10066,1403711 +38347,234,1,64780,1735895 +38348,127,3,244786,1450766 +38349,204,9,44921,1326391 +38350,75,5,9514,1642521 +38351,373,7,306966,1436793 +38352,273,7,9475,153 +38353,234,1,13517,73094 +38354,317,10,97035,237859 +38355,317,10,374614,1594336 +38356,87,7,185460,17863 +38357,187,11,375012,1733928 +38358,317,10,137528,1196004 +38359,234,1,154537,1135403 +38360,5,10,33407,1241227 +38361,413,11,86838,21656 +38362,18,2,333354,1638706 +38363,269,9,49500,47696 +38364,277,3,18,91090 +38365,273,7,10154,7728 +38366,413,11,9358,21140 +38367,286,3,290764,959352 +38368,204,9,13092,1465968 +38369,203,1,394645,1864621 +38370,148,9,204994,34115 +38371,182,8,28452,1643882 +38372,53,2,81522,1085025 +38373,105,7,12104,108122 +38374,413,11,332827,1006474 +38375,234,1,300321,1164767 +38376,387,10,13437,89451 +38377,269,9,15045,932238 +38378,198,6,98066,13192 +38379,234,1,51619,12238 +38380,277,7,405473,1800058 +38381,317,10,6557,10567 +38382,53,2,29444,41084 +38383,234,1,200117,32312 +38384,5,10,62728,15379 +38385,3,5,11799,1657 +38386,234,1,30061,90367 +38387,387,10,92848,117720 +38388,273,7,13954,959364 +38389,317,10,189197,1189067 +38390,262,6,13205,1451678 +38391,413,11,37917,384 +38392,263,11,25430,8514 +38393,148,9,310137,1148632 +38394,413,11,10364,12015 +38395,143,7,295627,1368955 +38396,175,5,283445,1548096 +38397,286,3,86126,932913 +38398,46,5,263115,1463729 +38399,273,7,5753,46972 +38400,3,5,35543,34802 +38401,45,9,257345,1525146 +38402,234,1,62033,3428 +38403,413,11,378607,1566579 +38404,53,2,246860,1423731 +38405,413,11,296750,240290 +38406,3,5,186585,96726 +38407,3,5,42837,9836 +38408,413,11,11902,70879 +38409,204,9,91480,9062 +38410,273,7,205939,1191535 +38411,234,1,264525,76864 +38412,234,1,168552,1150431 +38413,158,2,76341,1518773 +38414,37,3,14128,1726807 +38415,317,10,75336,126971 +38416,234,1,136619,147001 +38417,269,9,285135,91403 +38418,209,7,25941,1337419 +38419,273,7,2300,1213 +38420,77,10,197,2460 +38421,286,3,27621,132584 +38422,204,9,274857,1427500 +38423,413,11,16131,225628 +38424,234,1,37238,55692 +38425,273,7,11003,20822 +38426,413,11,17609,1114918 +38427,289,6,15213,1447566 +38428,314,2,41171,1407011 +38429,204,9,32657,23414 +38430,3,5,39938,35242 +38431,105,7,296523,6377 +38432,148,9,397837,1377411 +38433,3,5,98566,52582 +38434,85,10,49853,1648803 +38435,387,10,15943,62755 +38436,3,5,134394,80964 +38437,403,10,125063,1394148 +38438,273,7,26331,12417 +38439,325,5,351211,1639377 +38440,413,11,13834,75872 +38441,413,11,11975,17233 +38442,387,10,37710,10747 +38443,273,7,137321,947 +38444,12,10,10198,65531 +38445,317,10,142528,220808 +38446,317,10,5413,43130 +38447,250,11,62630,1423431 +38448,196,7,242224,75148 +38449,143,7,1381,9557 +38450,5,10,17015,32982 +38451,289,6,10344,1446201 +38452,175,5,97365,1477785 +38453,234,1,197210,1177280 +38454,273,7,297288,1373469 +38455,234,1,42683,81165 +38456,287,3,28893,1290903 +38457,87,7,338,19695 +38458,413,11,47878,1721853 +38459,3,5,23518,69814 +38460,5,10,606,10634 +38461,337,2,1586,29458 +38462,169,3,203833,40804 +38463,273,7,42418,11166 +38464,3,5,20650,8819 +38465,317,10,120605,935203 +38466,317,10,37462,70308 +38467,262,6,354859,1646520 +38468,143,7,6977,9651 +38469,209,7,287903,1548485 +38470,317,10,32091,108846 +38471,269,9,156,71161 +38472,286,3,301304,1155986 +38473,161,6,11618,1452631 +38474,53,2,260030,1453107 +38475,147,1,42764,1766558 +38476,333,2,19912,1431554 +38477,317,10,1254,21669 +38478,333,2,966,14526 +38479,244,3,12113,1404205 +38480,234,1,21626,1215282 +38481,204,9,15936,78983 +38482,67,10,77459,1282150 +38483,179,2,693,1324409 +38484,234,1,15089,77867 +38485,122,8,11351,1597209 +38486,273,7,11697,14647 +38487,204,9,52270,3358 +38488,317,10,44502,124238 +38489,60,1,14430,1521653 +38490,387,10,249969,81019 +38491,234,1,61895,1188381 +38492,12,10,338438,18456 +38493,302,9,45562,999560 +38494,52,10,43228,31253 +38495,3,5,47310,14678 +38496,3,5,253250,16750 +38497,3,5,1902,19844 +38498,213,10,108048,119234 +38499,269,9,35651,1590599 +38500,219,11,8916,1552873 +38501,203,1,10909,1478283 +38502,269,9,141819,111231 +38503,262,6,127372,1431513 +38504,387,10,22579,1080413 +38505,317,10,290365,1360366 +38506,52,10,263115,1307349 +38507,203,1,403429,1640641 +38508,321,11,4147,1073805 +38509,180,7,90001,1294143 +38510,317,10,174958,114324 +38511,234,1,78177,102445 +38512,203,1,17144,1436542 +38513,52,10,69165,103474 +38514,234,1,173865,93561 +38515,148,9,81001,8884 +38516,317,10,28480,157 +38517,333,2,41516,14498 +38518,234,1,148356,100888 +38519,269,9,168259,52600 +38520,273,7,10930,19167 +38521,269,9,211059,1289957 +38522,394,7,266102,1367557 +38523,104,7,38027,14781 +38524,105,7,24634,20075 +38525,317,10,294819,565850 +38526,317,10,55681,97860 +38527,203,1,14372,1410199 +38528,200,3,132363,1407735 +38529,413,11,6972,563 +38530,234,1,58133,3614 +38531,234,1,24403,1357 +38532,317,10,269258,1054830 +38533,3,5,16131,72264 +38534,234,1,124475,72005 +38535,269,9,1282,20072 +38536,317,10,81310,77545 +38537,234,1,23382,11155 +38538,234,1,252034,67361 +38539,192,5,7916,1438624 +38540,234,1,294690,63477 +38541,234,1,65674,83918 +38542,317,10,345915,90543 +38543,3,5,73194,14960 +38544,53,2,17464,61522 +38545,148,9,28739,139145 +38546,208,2,243940,1525145 +38547,387,10,11939,70980 +38548,289,6,16866,1447378 +38549,273,7,405473,551482 +38550,3,5,1271,17284 +38551,46,5,11370,1702830 +38552,317,10,409502,1661272 +38553,226,2,205584,1585742 +38554,327,7,270383,1813886 +38555,79,7,378441,935242 +38556,175,5,16131,161159 +38557,53,2,43923,1594602 +38558,269,9,3164,2032 +38559,3,5,1818,3540 +38560,196,7,283384,1417919 +38561,317,10,43550,129602 +38562,298,5,55534,1409712 +38563,52,10,322922,1380638 +38564,87,7,256962,1819167 +38565,102,3,165,1551349 +38566,3,5,9956,60915 +38567,262,6,2300,13184 +38568,328,6,345922,1393446 +38569,273,7,115782,4500 +38570,333,2,293863,15017 +38571,387,10,12309,57359 +38572,53,2,552,7564 +38573,413,11,13092,27903 +38574,317,10,153779,1134654 +38575,289,6,22752,573547 +38576,387,10,43913,147916 +38577,273,7,34078,12142 +38578,75,5,137145,1542306 +38579,273,7,10594,23486 +38580,327,7,755,1395022 +38581,234,1,339362,1526643 +38582,182,8,330770,1616025 +38583,200,3,245891,1512733 +38584,189,3,14,1421255 +38585,234,1,71444,550599 +38586,387,10,2662,16848 +38587,273,7,54898,64782 +38588,413,11,203351,1023424 +38589,333,2,223485,1531093 +38590,413,11,77930,1884 +38591,387,10,242240,1277211 +38592,75,5,20126,98483 +38593,234,1,126204,563461 +38594,148,9,1586,1310039 +38595,333,2,42309,1440402 +38596,3,5,79372,9057 +38597,377,3,11045,100835 +38598,398,9,294652,1475737 +38599,269,9,149509,7732 +38600,158,2,1073,1413195 +38601,398,9,10708,1246457 +38602,234,1,294819,137066 +38603,250,11,244786,1443967 +38604,317,10,121530,1348179 +38605,277,3,9294,1551320 +38606,77,10,14353,76688 +38607,398,9,181533,1340093 +38608,53,2,42703,1467258 +38609,273,7,21627,1173317 +38610,234,1,3102,30397 +38611,317,10,191562,81675 +38612,317,10,420648,3788 +38613,85,10,266856,1372465 +38614,234,1,28061,25826 +38615,333,2,337339,1316599 +38616,234,1,60505,32277 +38617,83,2,78802,12614 +38618,234,1,77641,99836 +38619,330,3,180299,1352426 +38620,317,10,136466,114004 +38621,273,7,25037,1627145 +38622,387,10,336050,1454941 +38623,317,10,72054,83257 +38624,158,2,223485,1531091 +38625,317,10,20846,184494 +38626,53,2,418990,578721 +38627,268,7,24624,957581 +38628,3,5,119010,169549 +38629,387,10,39867,150650 +38630,387,10,10219,5144 +38631,413,11,38325,238621 +38632,387,10,303856,1386400 +38633,413,11,11853,6900 +38634,413,11,12220,3032 +38635,239,5,356752,1842006 +38636,394,7,4011,671 +38637,204,9,244316,1551838 +38638,333,2,31911,142152 +38639,317,10,334298,70110 +38640,314,2,10071,1532697 +38641,105,7,252680,1152735 +38642,387,10,166262,1052203 +38643,148,9,10761,17150 +38644,262,6,277355,1439092 +38645,208,2,152748,1417862 +38646,105,7,239845,1311704 +38647,317,10,85959,932762 +38648,269,9,62046,1024912 +38649,371,3,12,1830814 +38650,273,7,42515,558641 +38651,1,7,275269,1124968 +38652,269,9,78028,14005 +38653,234,1,1790,19101 +38654,317,10,82313,564045 +38655,317,10,33542,46319 +38656,169,3,44732,1273354 +38657,234,1,49007,62872 +38658,132,2,284052,1585772 +38659,273,7,130717,29276 +38660,122,8,11024,1580844 +38661,273,7,2830,20822 +38662,413,11,20421,998195 +38663,179,2,857,1662313 +38664,87,7,13493,1551698 +38665,387,10,10362,20561 +38666,147,1,1481,1844351 +38667,317,10,89921,69541 +38668,3,5,26030,1657 +38669,317,10,32286,562196 +38670,413,11,14644,24574 +38671,395,3,10948,139474 +38672,181,7,293262,1392210 +38673,317,10,338518,1476650 +38674,328,6,19995,1204668 +38675,273,7,29272,595 +38676,148,9,44190,7338 +38677,234,1,133382,5369 +38678,77,10,9950,60782 +38679,292,3,4147,1558204 +38680,273,7,43149,3249 +38681,418,11,297762,1411111 +38682,413,11,469172,1160340 +38683,317,10,49508,142351 +38684,148,9,129553,34436 +38685,196,7,392818,1405356 +38686,67,10,64784,1148308 +38687,356,2,376501,1637331 +38688,148,9,19200,1467272 +38689,188,8,378441,1797465 +38690,301,5,54845,1391130 +38691,269,9,82077,1392240 +38692,327,7,264525,1857572 +38693,234,1,36140,3776 +38694,210,9,263115,1763750 +38695,52,10,41787,96281 +38696,85,10,383618,1581409 +38697,317,10,21927,88061 +38698,302,9,194,1551956 +38699,203,1,70981,1390388 +38700,254,10,341689,23446 +38701,204,9,10754,66457 +38702,40,1,193893,35582 +38703,104,7,297762,105780 +38704,37,3,56292,1457935 +38705,317,10,228331,49730 +38706,234,1,9264,102634 +38707,234,1,69065,31439 +38708,234,1,53419,13848 +38709,219,11,11045,1562248 +38710,234,1,14527,107630 +38711,333,2,3087,1614002 +38712,192,5,163,1400347 +38713,413,11,12538,66756 +38714,381,9,157847,1372206 +38715,413,11,20481,14931 +38716,242,9,87894,8506 +38717,413,11,48231,310 +38718,373,7,8470,1378828 +38719,387,10,108365,38858 +38720,244,3,924,1545438 +38721,234,1,26809,137194 +38722,234,1,13058,76242 +38723,262,6,79935,588337 +38724,166,9,9042,1334512 +38725,234,1,21840,82505 +38726,3,5,3520,32381 +38727,419,10,54982,25539 +38728,301,5,284052,1388897 +38729,413,11,76333,1310697 +38730,371,3,2300,1461337 +38731,234,1,108726,1044835 +38732,234,1,95874,14674 +38733,148,9,86297,1198731 +38734,234,1,12079,71329 +38735,148,9,125264,1551744 +38736,234,1,11915,70937 +38737,387,10,176867,19528 +38738,413,11,11677,70185 +38739,148,9,274504,1475169 +38740,273,7,68721,6041 +38741,317,10,77882,8930 +38742,204,9,18417,54585 +38743,253,6,283995,1815918 +38744,234,1,37633,118177 +38745,45,9,10491,1334493 +38746,360,3,2567,1390522 +38747,343,3,127329,131728 +38748,286,3,37586,891080 +38749,317,10,47231,9120 +38750,52,10,229610,66779 +38751,286,3,120972,4417 +38752,262,6,375012,1658457 +38753,234,1,86727,24492 +38754,209,7,22881,1548485 +38755,413,11,25468,5785 +38756,317,10,22419,133205 +38757,169,3,293167,1463422 +38758,143,7,189,1401135 +38759,234,1,14400,69987 +38760,108,10,126418,2748 +38761,286,3,256836,1300939 +38762,302,9,9946,1767302 +38763,3,5,271185,1362475 +38764,269,9,10747,74692 +38765,413,11,276401,47776 +38766,12,10,35026,68448 +38767,413,11,20432,1099736 +38768,317,10,135713,1103640 +38769,317,10,68184,550489 +38770,204,9,15934,27040 +38771,234,1,247500,239198 +38772,3,5,50153,7305 +38773,209,7,168259,1393405 +38774,325,5,388243,1622336 +38775,413,11,41495,13984 +38776,317,10,287170,1353682 +38777,317,10,77185,1079143 +38778,234,1,10645,66109 +38779,270,9,10204,1403915 +38780,317,10,24731,67755 +38781,289,6,5559,44125 +38782,387,10,64968,240118 +38783,234,1,99313,16862 +38784,333,2,79316,1434557 +38785,269,9,11880,962163 +38786,3,5,10534,22100 +38787,273,7,10534,59472 +38788,133,3,29056,48415 +38789,77,10,58,1705 +38790,387,10,15092,20193 +38791,226,2,322922,1085031 +38792,317,10,15440,107744 +38793,3,5,306598,1424872 +38794,181,7,13075,17993 +38795,236,8,9593,1877145 +38796,204,9,2742,6629 +38797,3,5,10458,61092 +38798,226,2,330459,1458416 +38799,387,10,118098,54443 +38800,148,9,207178,1137341 +38801,5,10,11873,14877 +38802,148,9,42664,30107 +38803,234,1,18072,33405 +38804,102,3,9472,67490 +38805,317,10,18442,56982 +38806,203,1,9543,1410205 +38807,63,7,152042,1801219 +38808,52,10,28561,10147 +38809,60,1,64215,1354347 +38810,234,1,9673,35408 +38811,234,1,332286,1444884 +38812,157,3,28165,99251 +38813,317,10,39176,58211 +38814,333,2,46872,87374 +38815,317,10,43252,3599 +38816,53,2,1294,1335487 +38817,286,3,97035,997 +38818,3,5,63414,1193570 +38819,127,3,59118,1644525 +38820,3,5,10518,8217 +38821,180,7,113255,49497 +38822,3,5,29786,30605 +38823,58,2,1586,1854996 +38824,413,11,43266,38250 +38825,203,1,347945,117082 +38826,232,10,30034,86372 +38827,317,10,382155,221064 +38828,273,7,42641,134806 +38829,133,3,238985,1358032 +38830,200,3,283995,1815940 +38831,413,11,276819,1498714 +38832,387,10,58790,73570 +38833,105,7,259997,969258 +38834,181,7,6933,548441 +38835,148,9,23518,4104 +38836,234,1,332806,1061561 +38837,234,1,3081,31497 +38838,113,9,67328,1583628 +38839,317,10,76101,1082055 +38840,204,9,52520,184986 +38841,204,9,403119,1417913 +38842,213,10,110608,1049277 +38843,269,9,340684,1472149 +38844,45,9,58244,1394740 +38845,53,2,324440,1606194 +38846,387,10,269,3776 +38847,148,9,18417,7237 +38848,179,2,266102,1331983 +38849,46,5,379019,1311726 +38850,105,7,18098,15874 +38851,3,5,44741,7202 +38852,317,10,24647,79064 +38853,52,10,52454,112606 +38854,306,7,19688,1689123 +38855,413,11,69428,110702 +38856,45,9,9893,1378752 +38857,387,10,27259,61573 +38858,127,3,11697,1600511 +38859,148,9,39013,1163710 +38860,387,10,274504,1179828 +38861,234,1,257081,8500 +38862,175,5,9835,1324652 +38863,105,7,85023,21810 +38864,3,5,10783,23969 +38865,387,10,50086,69991 +38866,45,9,196359,1378752 +38867,317,10,26182,94801 +38868,234,1,175171,71788 +38869,387,10,17074,34931 +38870,273,7,9539,1263196 +38871,413,11,34512,1816023 +38872,3,5,191312,1171839 +38873,40,1,145481,1537178 +38874,234,1,31742,27213 +38875,365,6,25913,1447438 +38876,105,7,356500,1419369 +38877,3,5,270646,42413 +38878,3,5,85709,1067113 +38879,413,11,31911,941820 +38880,204,9,35001,4349 +38881,328,6,55846,1402997 +38882,273,7,1850,17439 +38883,373,7,334074,1405795 +38884,317,10,252874,1288248 +38885,53,2,32088,9178 +38886,234,1,36089,82751 +38887,34,8,2300,1595484 +38888,234,1,233423,1276675 +38889,301,5,3580,1377131 +38890,317,10,14387,132097 +38891,317,10,60977,5129 +38892,234,1,53206,550227 +38893,204,9,263115,960282 +38894,234,1,107035,122016 +38895,53,2,49521,11386 +38896,317,10,65002,10249 +38897,273,7,43455,29621 +38898,346,3,289,397654 +38899,53,2,146238,960323 +38900,175,5,84577,1392942 +38901,301,5,329440,1495871 +38902,387,10,21159,91788 +38903,413,11,188927,1204245 +38904,75,5,2924,1534522 +38905,387,10,46773,576198 +38906,317,10,370234,1099812 +38907,105,7,72013,1770712 +38908,204,9,16281,11620 +38909,169,3,41283,1298897 +38910,234,1,55177,190339 +38911,234,1,9950,39996 +38912,169,3,31127,1372653 +38913,72,11,11017,931974 +38914,387,10,14782,56980 +38915,234,1,24973,4109 +38916,179,2,177677,1319120 +38917,234,1,125506,1081467 +38918,234,1,61113,60616 +38919,303,3,25941,968858 +38920,5,10,203833,1268786 +38921,304,10,103938,13971 +38922,179,2,2675,1412119 +38923,413,11,245692,67717 +38924,3,5,114872,16750 +38925,5,10,283384,1345425 +38926,148,9,31042,118291 +38927,387,10,286595,145117 +38928,5,10,120932,1553283 +38929,77,10,10761,66549 +38930,234,1,5804,1032 +38931,234,1,140554,52392 +38932,179,2,72545,1330048 +38933,317,10,388764,77703 +38934,234,1,72946,929825 +38935,12,10,330459,1 +38936,413,11,73348,16751 +38937,411,9,6171,11713 +38938,387,10,13196,9994 +38939,3,5,359152,34493 +38940,273,7,49391,23451 +38941,127,3,297762,1824250 +38942,317,10,53870,65678 +38943,225,7,10865,1552883 +38944,160,3,315664,1616065 +38945,3,5,44591,14726 +38946,373,7,38322,1378171 +38947,289,6,2300,1447566 +38948,239,5,131737,1542368 +38949,234,1,53367,44950 +38950,234,1,125842,1128 +38951,269,9,10320,9967 +38952,317,10,131689,150953 +38953,181,7,2503,1425978 +38954,148,9,12526,68172 +38955,262,6,118957,1402896 +38956,286,3,400174,17629 +38957,148,9,31542,1307019 +38958,105,7,134350,67075 +38959,387,10,257377,137973 +38960,52,10,151310,105386 +38961,77,10,166,1963 +38962,53,2,33135,986159 +38963,148,9,606,10644 +38964,67,10,308269,1447889 +38965,333,2,16997,1583183 +38966,415,3,31042,118298 +38967,301,5,245700,1402096 +38968,317,10,261538,72496 +38969,287,3,27814,1856487 +38970,20,2,27259,1317048 +38971,287,3,345922,1796327 +38972,413,11,41963,16515 +38973,317,10,76703,148082 +38974,204,9,45649,1096444 +38975,161,6,11377,1602888 +38976,148,9,41171,40288 +38977,388,9,9358,1441279 +38978,353,7,9352,1461183 +38979,180,7,43850,1582970 +38980,273,7,2001,1400 +38981,273,7,32021,29649 +38982,262,6,206647,1341741 +38983,413,11,79645,21781 +38984,204,9,13823,8382 +38985,45,9,2300,95828 +38986,317,10,451709,1795141 +38987,406,6,2300,1460488 +38988,333,2,109439,1208436 +38989,234,1,44233,26472 +38990,97,7,11880,1412088 +38991,413,11,44626,11997 +38992,96,2,11377,1762649 +38993,317,10,47653,21308 +38994,317,10,140472,30409 +38995,53,2,1624,7536 +38996,208,2,157847,1372203 +38997,234,1,242310,79279 +38998,204,9,206647,1296445 +38999,53,2,41076,1644971 +39000,387,10,696,10439 +39001,317,10,59115,59328 +39002,387,10,43092,1167451 +39003,333,2,2084,75485 +39004,413,11,293262,22414 +39005,234,1,379,1223 +39006,387,10,73835,590340 +39007,259,3,924,1551653 +39008,53,2,10097,26146 +39009,175,5,336882,76554 +39010,104,7,11045,1560824 +39011,317,10,28430,39853 +39012,273,7,381032,1848457 +39013,413,11,26299,1047 +39014,277,3,44732,1396414 +39015,413,11,448449,107783 +39016,413,11,58411,57132 +39017,204,9,293167,963843 +39018,52,10,291865,1451389 +39019,413,11,16313,1176816 +39020,413,11,212063,1332272 +39021,234,1,361025,1513563 +39022,234,1,238792,199578 +39023,269,9,82999,929047 +39024,158,2,46261,1425392 +39025,387,10,815,15872 +39026,387,10,9905,8999 +39027,273,7,49907,29500 +39028,234,1,40978,70171 +39029,317,10,36773,90385 +39030,273,7,127728,1085647 +39031,387,10,36691,16305 +39032,333,2,13912,10796 +39033,204,9,43806,11036 +39034,413,11,3580,74319 +39035,317,10,37731,580209 +39036,273,7,58166,52230 +39037,317,10,351365,157502 +39038,226,2,35852,1604537 +39039,394,7,302026,1392955 +39040,204,9,301228,1519844 +39041,368,7,74,91144 +39042,175,5,24392,1398900 +39043,387,10,402672,78751 +39044,148,9,2731,1647260 +39045,413,11,35284,93959 +39046,234,1,19010,106964 +39047,148,9,10294,65736 +39048,234,1,1404,15488 +39049,234,1,11972,39058 +39050,97,7,49009,1394860 +39051,286,3,80473,1314749 +39052,277,3,31993,120438 +39053,413,11,17467,554126 +39054,333,2,114790,1568004 +39055,75,5,9457,1421731 +39056,60,1,28001,1104964 +39057,317,10,369820,1260041 +39058,72,11,337339,110262 +39059,5,10,10568,56959 +39060,317,10,362579,234825 +39061,204,9,43346,47415 +39062,245,3,1271,1394761 +39063,53,2,42512,1550859 +39064,387,10,22404,13802 +39065,387,10,10013,62015 +39066,234,1,307931,1393833 +39067,413,11,107146,10218 +39068,387,10,11346,55333 +39069,373,7,638,9409 +39070,11,6,287903,1418380 +39071,67,10,3933,1451298 +39072,64,6,322922,1447850 +39073,317,10,10866,67539 +39074,234,1,58197,228334 +39075,234,1,141241,122740 +39076,169,3,230179,1416984 +39077,289,6,286192,1455510 +39078,360,9,17971,1754101 +39079,234,1,166610,173626 +39080,387,10,50549,122963 +39081,234,1,5165,15189 +39082,373,7,329440,1404218 +39083,3,5,43912,66187 +39084,105,7,26486,24190 +39085,148,9,142656,1547488 +39086,346,3,1624,1549431 +39087,387,10,57983,53859 +39088,123,3,282247,19303 +39089,53,2,11024,21592 +39090,317,10,15316,17051 +39091,327,7,20439,1401287 +39092,273,7,18414,1303152 +39093,387,10,36658,11012 +39094,148,9,336029,1605450 +39095,53,2,284288,1763425 +39096,234,1,17940,82518 +39097,234,1,65282,4346 +39098,387,10,174645,1157591 +39099,234,1,48341,26882 +39100,76,2,118957,1578022 +39101,273,7,20919,967755 +39102,235,5,7551,1128452 +39103,203,1,10691,1187187 +39104,234,1,79743,1166041 +39105,208,2,245703,578724 +39106,3,5,25507,120313 +39107,304,10,63401,73153 +39108,204,9,36094,14492 +39109,3,5,197611,6847 +39110,387,10,33336,111306 +39111,317,10,104973,30956 +39112,413,11,414453,1555636 +39113,286,3,76686,1098634 +39114,204,9,10590,15328 +39115,317,10,41312,3607 +39116,45,9,238589,1345260 +39117,286,3,181454,215726 +39118,234,1,62297,235080 +39119,301,5,11096,1400535 +39120,83,2,10925,1341330 +39121,53,2,11645,21907 +39122,234,1,4832,39647 +39123,413,11,110,1136 +39124,179,2,14979,1321374 +39125,3,5,40998,55073 +39126,273,7,23857,1500426 +39127,203,1,3682,1457044 +39128,317,10,43902,94298 +39129,219,11,403,1630675 +39130,387,10,30374,133083 +39131,327,7,8869,1392085 +39132,234,1,383567,24970 +39133,143,7,14979,1458995 +39134,52,10,16661,143563 +39135,262,6,69668,1425996 +39136,234,1,13925,7879 +39137,234,1,371446,139357 +39138,105,7,59118,1883786 +39139,413,11,25807,88647 +39140,234,1,30139,1039544 +39141,328,6,2300,1516079 +39142,196,7,353728,1573932 +39143,387,10,43562,7336 +39144,269,9,373397,1462035 +39145,64,6,10204,1437160 +39146,317,10,72826,127838 +39147,234,1,228339,124919 +39148,204,9,209112,7235 +39149,234,1,94340,552208 +39150,234,1,416437,931795 +39151,3,5,11196,3925 +39152,304,10,271919,32013 +39153,183,5,384262,1805960 +39154,197,5,9472,1744415 +39155,317,10,238589,1345255 +39156,52,10,80771,214919 +39157,53,2,76788,1646556 +39158,204,9,42267,1500632 +39159,273,7,41823,15520 +39160,317,10,122019,974634 +39161,60,1,41298,1641280 +39162,234,1,406449,66969 +39163,198,6,72545,1859977 +39164,413,11,28564,22599 +39165,166,9,196469,1538337 +39166,317,10,254435,1198180 +39167,413,11,12158,27226 +39168,61,7,5,1357671 +39169,60,1,43978,234408 +39170,387,10,45132,15218 +39171,204,9,3023,14492 +39172,317,10,76047,56397 +39173,53,2,44626,38229 +39174,234,1,13477,16837 +39175,3,5,18638,60712 +39176,273,7,362703,1472871 +39177,204,9,168031,29278 +39178,179,2,109424,9493 +39179,234,1,32323,70616 +39180,53,2,287903,1310930 +39181,105,7,293452,6041 +39182,18,2,544,1416086 +39183,277,3,214081,1367651 +39184,87,7,228970,232158 +39185,3,5,93457,17146 +39186,387,10,11004,10967 +39187,3,5,229182,984113 +39188,273,7,6976,31291 +39189,196,7,7220,1428595 +39190,67,10,15653,1462624 +39191,60,1,3780,1534241 +39192,148,9,2966,29086 +39193,234,1,56369,57641 +39194,273,7,294652,549315 +39195,5,10,10488,1458871 +39196,3,5,351901,1098928 +39197,226,2,75174,75485 +39198,5,10,96089,1123083 +39199,204,9,87514,10009 +39200,3,5,70864,25826 +39201,113,9,322443,1627136 +39202,413,11,32049,24957 +39203,317,10,83501,240499 +39204,387,10,31324,3157 +39205,45,9,2675,1469631 +39206,53,2,9529,937528 +39207,182,8,49009,1406783 +39208,387,10,197082,1177058 +39209,12,10,42298,133238 +39210,413,11,10797,66850 +39211,203,1,118677,1396984 +39212,166,9,60599,1395677 +39213,306,7,29143,1562587 +39214,5,10,71859,1482216 +39215,234,1,53953,41270 +39216,398,9,2613,1800143 +39217,196,7,8669,118944 +39218,187,11,949,1535951 +39219,3,5,322,460 +39220,234,1,9667,40307 +39221,75,5,10395,20844 +39222,273,7,10567,1213 +39223,158,2,333484,1585899 +39224,250,11,10008,13194 +39225,269,9,19901,27749 +39226,60,1,41213,1777269 +39227,277,3,22584,1581757 +39228,273,7,9274,57104 +39229,413,11,285213,1032086 +39230,273,7,975,3350 +39231,3,5,15916,552594 +39232,143,7,263115,1360100 +39233,262,6,9286,1441363 +39234,196,7,167073,1427834 +39235,387,10,214909,14857 +39236,204,9,765,11744 +39237,234,1,31867,114404 +39238,403,10,19140,6855 +39239,413,11,38034,119470 +39240,317,10,47448,1032520 +39241,234,1,68750,22140 +39242,413,11,110980,52182 +39243,413,11,81001,7068 +39244,317,10,197089,49168 +39245,209,7,76203,1393452 +39246,96,2,296523,1762649 +39247,419,10,101363,62923 +39248,234,1,435821,1294930 +39249,413,11,6552,1721 +39250,239,5,10727,1584236 +39251,234,1,221732,1084905 +39252,75,5,17577,95640 +39253,52,10,36635,14856 +39254,289,6,312221,1580873 +39255,413,11,333484,58871 +39256,387,10,399612,19841 +39257,190,7,227975,1775632 +39258,244,3,12,8153 +39259,302,9,168676,1543255 +39260,273,7,80775,30104 +39261,179,2,286873,1420863 +39262,53,2,184267,1353811 +39263,3,5,190352,131410 +39264,75,5,33364,40447 +39265,234,1,252680,844266 +39266,34,8,5289,1409746 +39267,234,1,29083,69918 +39268,317,10,38901,1596896 +39269,387,10,11636,70110 +39270,387,10,224951,60724 +39271,219,11,1966,1377136 +39272,3,5,13358,63785 +39273,3,5,8970,1527 +39274,333,2,15092,109129 +39275,387,10,30637,1095314 +39276,75,5,74,1377228 +39277,160,3,19053,551931 +39278,234,1,1723,18854 +39279,234,1,14284,86662 +39280,141,7,1624,1530327 +39281,234,1,12129,15657 +39282,317,10,193603,1434676 +39283,187,11,297762,1408377 +39284,317,10,83614,228845 +39285,234,1,33360,18563 +39286,317,10,19142,59648 +39287,234,1,59735,128639 +39288,3,5,11091,4008 +39289,3,5,142145,1116419 +39290,273,7,42062,17667 +39291,273,7,72105,1071607 +39292,387,10,242240,1014404 +39293,132,2,47112,1536114 +39294,277,3,11832,1451825 +39295,234,1,266082,68813 +39296,113,9,13393,1603668 +39297,287,3,4547,958540 +39298,3,5,11307,4008 +39299,387,10,302802,1385130 +39300,181,7,924,1368864 +39301,317,10,64481,5005 +39302,317,10,64627,50125 +39303,234,1,19029,84013 +39304,286,3,16313,1176815 +39305,234,1,2084,21339 +39306,413,11,55615,73146 +39307,317,10,142966,65923 +39308,53,2,109251,100993 +39309,234,1,354133,1496095 +39310,273,7,85648,8422 +39311,273,7,450875,984513 +39312,158,2,2567,1402035 +39313,413,11,27053,37719 +39314,234,1,36335,103589 +39315,53,2,69,32797 +39316,175,5,1624,1324652 +39317,87,7,77930,111213 +39318,49,7,9836,1002602 +39319,416,10,61212,103132 +39320,262,6,6972,1401722 +39321,413,11,798,11924 +39322,317,10,69346,85894 +39323,127,3,41733,1527863 +39324,234,1,152393,26134 +39325,176,3,46261,1425381 +39326,387,10,310126,120020 +39327,3,5,340488,6826 +39328,269,9,32080,1462235 +39329,413,11,128270,22483 +39330,387,10,286873,1164124 +39331,387,10,66526,91552 +39332,306,7,32080,1562587 +39333,398,9,9423,1389584 +39334,234,1,260399,74971 +39335,317,10,85317,231437 +39336,76,2,274857,1428470 +39337,143,7,28171,100011 +39338,234,1,67693,102627 +39339,12,10,36657,173658 +39340,5,10,15776,937649 +39341,289,6,328111,1479525 +39342,333,2,48116,1545743 +39343,72,11,74,1544670 +39344,15,6,14128,1726802 +39345,87,7,245692,1574452 +39346,234,1,37653,41029 +39347,203,1,44716,1568635 +39348,289,6,149870,1456611 +39349,75,5,145135,1417881 +39350,3,5,10201,5667 +39351,75,5,84318,1084968 +39352,105,7,13834,61312 +39353,235,5,77338,1176753 +39354,289,6,294254,1571490 +39355,317,10,283995,15218 +39356,376,10,11202,1776 +39357,72,11,18273,1545298 +39358,269,9,20646,20385 +39359,286,3,29043,2915 +39360,234,1,50374,13776 +39361,373,7,365942,548432 +39362,413,11,3478,32053 +39363,269,9,14698,989083 +39364,155,3,46738,1028809 +39365,387,10,11458,69697 +39366,143,7,2300,1422064 +39367,387,10,11206,68593 +39368,387,10,2577,26190 +39369,317,10,315439,1554331 +39370,317,10,53865,149128 +39371,269,9,88273,74759 +39372,289,6,291270,1353148 +39373,286,3,108972,1305784 +39374,160,3,9981,4064 +39375,413,11,17136,18664 +39376,3,5,8457,17765 +39377,3,5,286789,33789 +39378,45,9,12573,1412450 +39379,387,10,5991,2792 +39380,52,10,159770,1319305 +39381,53,2,19348,52682 +39382,3,5,16997,1128266 +39383,388,9,109439,1551159 +39384,387,10,177190,74879 +39385,105,7,318781,51897 +39386,286,3,65881,1293609 +39387,34,8,127372,72237 +39388,419,10,409447,7420 +39389,160,3,334,4064 +39390,52,10,104343,140624 +39391,148,9,8870,9421 +39392,387,10,15472,74752 +39393,234,1,123634,1078398 +39394,52,10,332872,19947 +39395,317,10,408550,1658143 +39396,387,10,73600,54441 +39397,182,8,27259,1624421 +39398,397,7,43155,27969 +39399,387,10,1561,10346 +39400,234,1,391778,1602261 +39401,317,10,51739,608 +39402,234,1,270383,87121 +39403,244,3,8869,1552544 +39404,413,11,275136,1238385 +39405,203,1,2355,1457729 +39406,234,1,11897,19093 +39407,234,1,136386,1105693 +39408,3,5,396643,1113239 +39409,317,10,96712,136886 +39410,46,5,263115,1769095 +39411,234,1,71381,562717 +39412,317,10,63764,40531 +39413,226,2,2604,1536362 +39414,234,1,62441,95893 +39415,160,3,144229,200598 +39416,317,10,33102,91343 +39417,387,10,47201,59023 +39418,234,1,71266,562261 +39419,234,1,399811,590960 +39420,273,7,315010,139904 +39421,166,9,505,1534937 +39422,238,7,11975,1562804 +39423,148,9,12450,1169919 +39424,234,1,1259,36693 +39425,317,10,406992,131846 +39426,234,1,23964,543207 +39427,317,10,95134,35501 +39428,53,2,10395,5493 +39429,203,1,10921,1402123 +39430,268,7,9286,1404841 +39431,387,10,9403,58097 +39432,413,11,2453,239179 +39433,277,3,211879,1595168 +39434,387,10,8816,5306 +39435,273,7,3036,9152 +39436,148,9,28295,1010740 +39437,305,9,15653,212135 +39438,5,10,392882,150063 +39439,3,5,84354,98258 +39440,413,11,77859,1127438 +39441,234,1,105760,27002 +39442,234,1,11298,4600 +39443,217,3,14317,1448999 +39444,234,1,249,518 +39445,3,5,40085,4101 +39446,105,7,322785,1464111 +39447,387,10,13526,20293 +39448,292,3,341174,1764542 +39449,166,9,23730,1534436 +39450,182,8,312831,1594167 +39451,234,1,2034,20907 +39452,3,5,36658,9040 +39453,53,2,147829,14494 +39454,97,7,954,1446996 +39455,53,2,139582,1100598 +39456,413,11,10276,6346 +39457,387,10,77338,84425 +39458,328,6,44943,1403410 +39459,3,5,15762,57668 +39460,387,10,14868,77724 +39461,234,1,38965,28169 +39462,413,11,476,6478 +39463,143,7,206647,1392083 +39464,3,5,401060,1180546 +39465,317,10,40864,124856 +39466,166,9,313922,1470526 +39467,269,9,2565,5133 +39468,234,1,211166,273 +39469,415,3,20126,102114 +39470,204,9,241574,2657 +39471,192,5,230179,1881551 +39472,204,9,31773,9062 +39473,148,9,10320,14348 +39474,403,10,315723,553566 +39475,327,7,365709,1185977 +39476,148,9,12536,1169919 +39477,352,3,2924,1803776 +39478,273,7,336804,39517 +39479,25,2,354287,1318874 +39480,269,9,55370,24297 +39481,301,5,65599,1712794 +39482,346,3,10740,1399479 +39483,105,7,32634,16748 +39484,234,1,92341,29962 +39485,204,9,359412,1349965 +39486,388,9,70074,1407351 +39487,5,10,10604,65844 +39488,234,1,126863,930709 +39489,317,10,336775,141429 +39490,327,7,55343,1630536 +39491,269,9,16005,19157 +39492,12,10,109451,111876 +39493,97,7,14476,1337412 +39494,5,10,83389,1062013 +39495,53,2,4253,35788 +39496,394,7,1966,1352969 +39497,3,5,105059,69814 +39498,411,9,48231,20014 +39499,67,10,16366,1447502 +39500,234,1,9099,21217 +39501,387,10,53574,1040062 +39502,273,7,164954,64868 +39503,234,1,52358,114337 +39504,169,3,49009,1539293 +39505,65,3,14430,1521684 +39506,3,5,14,8217 +39507,148,9,43522,118445 +39508,413,11,352186,1324190 +39509,234,1,77986,107669 +39510,373,7,206647,1345595 +39511,87,7,353728,1643833 +39512,232,10,29224,1092612 +39513,234,1,392011,1603873 +39514,317,10,402455,1369118 +39515,273,7,68247,9217 +39516,234,1,23385,129825 +39517,244,3,40807,33288 +39518,317,10,238307,1474238 +39519,209,7,343934,1546622 +39520,262,6,270303,1462038 +39521,52,10,14554,959953 +39522,387,10,9746,9964 +39523,198,6,354859,1790345 +39524,387,10,121791,148458 +39525,53,2,17577,1423832 +39526,208,2,222935,1636655 +39527,203,1,14811,1411160 +39528,113,9,9785,1575861 +39529,105,7,105254,1402726 +39530,397,7,64784,109195 +39531,387,10,31532,29596 +39532,387,10,54139,132577 +39533,143,7,6934,23852 +39534,148,9,2731,958130 +39535,317,10,200655,927798 +39536,53,2,9070,1718228 +39537,105,7,126963,555279 +39538,203,1,156981,1575337 +39539,155,3,23128,1704 +39540,273,7,23128,1341534 +39541,234,1,70313,34402 +39542,373,7,283445,1342625 +39543,373,7,49009,75437 +39544,52,10,333667,12905 +39545,277,3,11645,1534577 +39546,232,10,57412,17660 +39547,60,1,22584,14773 +39548,386,5,18,8392 +39549,204,9,11428,16571 +39550,234,1,20444,133259 +39551,273,7,1574,531 +39552,52,10,346672,120119 +39553,269,9,253284,1164082 +39554,182,8,222935,1636652 +39555,97,7,435,548438 +39556,304,10,90034,1197878 +39557,273,7,10103,63435 +39558,357,3,9928,1536578 +39559,234,1,21585,41272 +39560,53,2,8669,55613 +39561,234,1,258147,1020818 +39562,317,10,10275,1342855 +39563,203,1,248087,1537412 +39564,317,10,49343,23858 +39565,204,9,15489,957129 +39566,234,1,108789,41159 +39567,53,2,65488,11491 +39568,387,10,174769,143414 +39569,314,2,336050,1644779 +39570,148,9,50725,1312641 +39571,234,1,138372,1108822 +39572,75,5,57419,1539445 +39573,286,3,141819,1098846 +39574,413,11,29698,15731 +39575,75,5,140607,1399467 +39576,387,10,33642,111486 +39577,413,11,10829,29083 +39578,317,10,213095,1090010 +39579,3,5,9602,56943 +39580,317,10,5759,45407 +39581,273,7,398786,587754 +39582,269,9,83899,1098783 +39583,198,6,15472,1555254 +39584,381,9,10320,1643717 +39585,409,7,297762,1772976 +39586,317,10,22256,11057 +39587,234,1,43459,8259 +39588,273,7,125264,1487840 +39589,317,10,145191,19985 +39590,387,10,68646,553268 +39591,180,7,55624,1463998 +39592,234,1,280690,35086 +39593,413,11,91186,64490 +39594,398,9,435,75703 +39595,53,2,4923,1823498 +39596,204,9,2976,29219 +39597,387,10,130957,1092485 +39598,269,9,327,5000 +39599,273,7,74629,57902 +39600,3,5,274990,23331 +39601,234,1,338518,183541 +39602,97,7,9716,92373 +39603,202,7,46387,584585 +39604,269,9,62441,221860 +39605,234,1,301224,1382177 +39606,234,1,64215,111481 +39607,387,10,226936,72768 +39608,373,7,13654,1421706 +39609,317,10,44047,130106 +39610,234,1,276909,1331173 +39611,387,10,39045,1235078 +39612,413,11,26502,136400 +39613,20,2,857,1662311 +39614,287,3,21927,1410125 +39615,387,10,29416,1167414 +39616,204,9,29398,21456 +39617,34,8,11370,1424941 +39618,148,9,26283,7338 +39619,234,1,92391,999882 +39620,387,10,65048,31604 +39621,53,2,43395,3647 +39622,259,3,693,1761062 +39623,302,9,425774,1708010 +39624,196,7,31911,1436963 +39625,226,2,42739,1332186 +39626,413,11,31442,1580044 +39627,234,1,90799,40054 +39628,360,3,10590,1566256 +39629,127,3,52661,1016007 +39630,413,11,362541,1155533 +39631,317,10,46187,1096377 +39632,226,2,2525,24585 +39633,108,10,41234,135424 +39634,234,1,24939,56150 +39635,387,10,8144,1204202 +39636,304,10,85507,143561 +39637,60,1,54563,1155128 +39638,311,9,10590,1744045 +39639,234,1,47310,13294 +39640,273,7,349441,1764102 +39641,3,5,5,3114 +39642,234,1,247691,116326 +39643,12,10,31947,3485 +39644,3,5,12454,60085 +39645,226,2,155597,1585999 +39646,204,9,26323,17763 +39647,3,5,75363,1348540 +39648,97,7,47112,1536111 +39649,3,5,1448,17253 +39650,53,2,398289,1391798 +39651,53,2,2140,21941 +39652,234,1,118397,1016856 +39653,3,5,15267,8306 +39654,413,11,284564,21322 +39655,3,5,15179,1209188 +39656,52,10,37534,196349 +39657,196,7,24657,1540076 +39658,3,5,12076,1172653 +39659,317,10,229610,234798 +39660,234,1,99008,89745 +39661,269,9,1907,19872 +39662,60,1,1976,89531 +39663,317,10,36960,120882 +39664,143,7,14254,1407681 +39665,286,3,264560,190247 +39666,198,6,755,1897892 +39667,53,2,16921,989146 +39668,387,10,52782,17660 +39669,105,7,333352,13082 +39670,317,10,48617,935705 +39671,234,1,430156,1177544 +39672,3,5,3962,3871 +39673,415,3,30708,16641 +39674,46,5,9352,1804885 +39675,234,1,15762,44056 +39676,45,9,76203,1393433 +39677,52,10,29959,30969 +39678,234,1,26368,76408 +39679,105,7,15940,47203 +39680,35,10,438597,1799083 +39681,75,5,9593,1704939 +39682,3,5,57489,68145 +39683,234,1,215379,122582 +39684,346,3,8247,1401601 +39685,413,11,18405,1046115 +39686,245,3,49642,35452 +39687,148,9,2274,22081 +39688,105,7,2898,947 +39689,204,9,623,91989 +39690,413,11,45244,6076 +39691,53,2,41211,1151512 +39692,317,10,60125,733442 +39693,5,10,25376,93651 +39694,273,7,109441,14861 +39695,234,1,29101,105666 +39696,28,9,3172,1096860 +39697,161,6,10066,544372 +39698,304,10,158598,1139971 +39699,387,10,29100,85453 +39700,327,7,664,1433719 +39701,3,5,330459,67113 +39702,289,6,125510,1170786 +39703,413,11,9966,20568 +39704,305,9,32068,1734662 +39705,413,11,227973,1536577 +39706,387,10,2750,26190 +39707,317,10,312174,1383169 +39708,67,10,263115,1821881 +39709,53,2,14916,1299201 +39710,182,8,15472,1400802 +39711,53,2,140894,16680 +39712,77,10,9914,23880 +39713,387,10,16444,47395 +39714,360,3,9426,1445978 +39715,413,11,152736,6390 +39716,200,3,193893,103536 +39717,234,1,11907,18969 +39718,234,1,14012,50460 +39719,317,10,370687,107796 +39720,413,11,5516,1223 +39721,387,10,88005,71551 +39722,273,7,4960,312 +39723,234,1,40859,1180859 +39724,208,2,338189,1557107 +39725,147,1,18,1857478 +39726,413,11,18133,25141 +39727,234,1,300155,29226 +39728,373,7,407806,143921 +39729,234,1,170430,58809 +39730,12,10,4248,35692 +39731,75,5,168259,1408356 +39732,187,11,924,1399061 +39733,234,1,14419,46280 +39734,189,3,664,1378248 +39735,3,5,12716,73717 +39736,3,5,329724,32506 +39737,234,1,13526,14392 +39738,53,2,135390,1092614 +39739,317,10,235260,235820 +39740,403,10,293167,3485 +39741,317,10,48587,590453 +39742,3,5,44655,1060522 +39743,234,1,290370,52044 +39744,3,5,3549,1175 +39745,3,5,11697,40183 +39746,317,10,86413,93947 +39747,204,9,32657,23812 +39748,234,1,282919,6258 +39749,234,1,25528,93923 +39750,413,11,1480,8484 +39751,234,1,98364,14674 +39752,53,2,83761,1358323 +39753,234,1,83481,634712 +39754,317,10,135317,932510 +39755,60,1,11799,1531297 +39756,317,10,461955,82194 +39757,148,9,302026,1409694 +39758,387,10,77930,1074867 +39759,413,11,20806,132588 +39760,269,9,271718,19755 +39761,175,5,10529,1567315 +39762,286,3,16987,545509 +39763,413,11,2613,34484 +39764,273,7,14698,12241 +39765,387,10,254575,52325 +39766,289,6,14317,1454416 +39767,77,10,9958,60971 +39768,196,7,82,1597 +39769,234,1,145194,22323 +39770,328,6,857,1478858 +39771,273,7,182899,30268 +39772,53,2,4887,40032 +39773,413,11,41609,32439 +39774,234,1,8366,18072 +39775,3,5,21742,94240 +39776,387,10,18671,41751 +39777,317,10,63401,1347915 +39778,187,11,10201,1357059 +39779,234,1,32323,8635 +39780,67,10,8247,1651081 +39781,317,10,285181,56377 +39782,97,7,242224,1428872 +39783,234,1,10916,31900 +39784,394,7,9568,1281018 +39785,317,10,137217,1105073 +39786,419,10,93511,556846 +39787,204,9,25376,960435 +39788,269,9,39415,1625126 +39789,127,3,72105,1455498 +39790,3,5,3172,11099 +39791,273,7,875,13337 +39792,105,7,47186,32804 +39793,273,7,43806,4345 +39794,333,2,197788,4352 +39795,3,5,118640,1596257 +39796,413,11,241855,1141538 +39797,67,10,109329,67373 +39798,273,7,11897,8503 +39799,269,9,16281,552621 +39800,74,5,193893,1585165 +39801,3,5,11537,68674 +39802,200,3,188927,1531512 +39803,53,2,1578,11476 +39804,208,2,214081,1367647 +39805,333,2,251,30391 +39806,269,9,371462,1568420 +39807,155,3,33273,1115664 +39808,46,5,2105,1724854 +39809,317,10,22314,564872 +39810,164,3,9664,1557578 +39811,413,11,259830,1340721 +39812,53,2,171446,1009388 +39813,234,1,256907,545493 +39814,53,2,1942,1560752 +39815,234,1,47011,8452 +39816,105,7,83718,119232 +39817,317,10,91259,104452 +39818,317,10,56235,201165 +39819,204,9,11917,1317673 +39820,160,3,8467,12772 +39821,333,2,63260,101561 +39822,113,9,251227,1286567 +39823,234,1,232672,57370 +39824,52,10,43327,4357 +39825,413,11,9472,10393 +39826,169,3,1647,1525578 +39827,269,9,259,3586 +39828,3,5,58918,42370 +39829,232,10,99567,13340 +39830,289,6,149870,19603 +39831,175,5,46387,995385 +39832,387,10,12422,50538 +39833,286,3,370687,1676181 +39834,3,5,17956,1258 +39835,234,1,11639,55983 +39836,127,3,755,1897886 +39837,387,10,301875,89287 +39838,317,10,15907,161881 +39839,170,5,439050,1543705 +39840,234,1,25768,8635 +39841,234,1,163343,1035385 +39842,5,10,227262,1254748 +39843,148,9,20242,958460 +39844,317,10,59935,230081 +39845,3,5,48205,3569 +39846,317,10,107499,985403 +39847,53,2,209032,1192399 +39848,53,2,102668,1031770 +39849,317,10,28345,95637 +39850,387,10,15764,6349 +39851,234,1,293380,89157 +39852,188,8,176,1463809 +39853,52,10,300983,120953 +39854,3,5,11862,5506 +39855,387,10,292035,1086350 +39856,273,7,72574,96286 +39857,75,5,240832,1412918 +39858,75,5,1586,1411846 +39859,234,1,55728,63713 +39860,317,10,165718,93107 +39861,387,10,105551,98751 +39862,269,9,11645,1376136 +39863,333,2,13667,1561105 +39864,387,10,133941,37197 +39865,158,2,307081,1395030 +39866,234,1,34977,32427 +39867,269,9,315837,20292 +39868,269,9,369885,1322138 +39869,179,2,203833,1331979 +39870,317,10,41380,62410 +39871,97,7,436,1544908 +39872,234,1,43711,30310 +39873,394,7,346672,1417514 +39874,269,9,714,7732 +39875,398,9,74126,1899318 +39876,244,3,329865,34338 +39877,148,9,43809,9063 +39878,333,2,61225,23351 +39879,3,5,131932,1482616 +39880,273,7,18776,8619 +39881,317,10,204255,1186596 +39882,273,7,11777,1760 +39883,53,2,375366,1503680 +39884,317,10,90056,938146 +39885,234,1,300769,148874 +39886,3,5,118121,40052 +39887,203,1,206647,1392661 +39888,3,5,44945,3115 +39889,289,6,45772,1455598 +39890,304,10,104776,1268431 +39891,387,10,333484,1281190 +39892,317,10,103590,1815396 +39893,226,2,7551,74766 +39894,317,10,47848,57640 +39895,234,1,41110,78160 +39896,45,9,75174,1394931 +39897,413,11,39001,27569 +39898,180,7,110573,1659469 +39899,53,2,177677,498 +39900,234,1,167707,937191 +39901,234,1,291,4319 +39902,200,3,44115,1394720 +39903,413,11,101852,80207 +39904,55,5,3085,545526 +39905,234,1,84016,935359 +39906,234,1,218728,1747598 +39907,234,1,15788,3663 +39908,352,3,11812,1726441 +39909,203,1,10145,1446692 +39910,148,9,16164,62121 +39911,226,2,15092,1414537 +39912,203,1,12526,1415026 +39913,269,9,73562,928259 +39914,413,11,188598,1654597 +39915,234,1,38065,86038 +39916,92,7,11024,1552603 +39917,204,9,72105,1204330 +39918,239,5,126090,1599795 +39919,317,10,64454,49505 +39920,234,1,158947,1183912 +39921,97,7,10733,1397823 +39922,289,6,10344,1445981 +39923,179,2,50725,1326407 +39924,179,2,329865,113894 +39925,52,10,231009,1266165 +39926,204,9,131366,48055 +39927,3,5,45964,9614 +39928,203,1,65599,1712792 +39929,5,10,23196,1712318 +39930,3,5,6443,36565 +39931,46,5,42764,1766571 +39932,203,1,288977,570136 +39933,333,2,36489,85764 +39934,346,3,228970,1418010 +39935,273,7,11113,68128 +39936,52,10,43491,70045 +39937,413,11,47386,138776 +39938,301,5,374473,1411671 +39939,123,3,109170,1221828 +39940,413,11,11839,30509 +39941,413,11,71066,587950 +39942,317,10,31390,7488 +39943,148,9,214756,1204331 +39944,3,5,49391,47650 +39945,226,2,197611,1437273 +39946,105,7,40990,1567889 +39947,234,1,46026,82678 +39948,413,11,9308,13432 +39949,75,5,9297,1462701 +39950,45,9,9946,1378752 +39951,5,10,44746,1232990 +39952,5,10,36758,39013 +39953,158,2,218778,1318465 +39954,53,2,120,1322 +39955,353,7,35,1400088 +39956,143,7,14626,9890 +39957,204,9,1278,16338 +39958,234,1,13483,74569 +39959,127,3,2463,25245 +39960,413,11,2721,16403 +39961,204,9,10096,112521 +39962,387,10,10909,69042 +39963,53,2,37247,961075 +39964,60,1,2721,1443416 +39965,204,9,32088,23375 +39966,204,9,93858,5745 +39967,387,10,13440,41712 +39968,87,7,181454,1122210 +39969,317,10,397422,1607044 +39970,413,11,33253,70002 +39971,387,10,1073,15244 +39972,387,10,116711,10295 +39973,234,1,41610,106345 +39974,273,7,39356,1671690 +39975,387,10,2625,27 +39976,226,2,109424,18786 +39977,77,10,7483,20024 +39978,24,5,414977,1676800 +39979,269,9,317144,41540 +39980,387,10,9819,59636 +39981,415,3,49521,1460590 +39982,262,6,314065,1466254 +39983,166,9,2675,1389568 +39984,3,5,32227,22544 +39985,317,10,40624,76422 +39986,234,1,10070,62797 +39987,204,9,5289,1217703 +39988,317,10,218772,45577 +39989,52,10,15916,90513 +39990,105,7,36325,2863 +39991,273,7,33224,19965 +39992,148,9,1443,17235 +39993,317,10,218329,85203 +39994,387,10,73313,30723 +39995,387,10,19823,1415591 +39996,113,9,19995,1376895 +39997,413,11,202337,53009 +39998,105,7,324670,56827 +39999,413,11,121923,66183 +40000,203,1,379,587969 +40001,5,10,20650,25349 +40002,234,1,233466,4320 +40003,148,9,45205,132517 +40004,3,5,16820,14536 +40005,273,7,209112,947 +40006,387,10,254575,1387328 +40007,3,5,24420,10573 +40008,234,1,95414,143463 +40009,3,5,8460,55878 +40010,226,2,1578,1568510 +40011,387,10,111470,1052135 +40012,273,7,11404,69956 +40013,273,7,323426,76888 +40014,3,5,11205,68591 +40015,387,10,11120,1035 +40016,105,7,3782,7460 +40017,333,2,7220,1707112 +40018,387,10,11719,56034 +40019,204,9,76757,1465632 +40020,148,9,38356,10125 +40021,333,2,302036,1417172 +40022,230,3,293167,89714 +40023,77,10,300,201 +40024,387,10,118889,14646 +40025,105,7,136368,1647411 +40026,234,1,26796,975 +40027,110,1,103590,560142 +40028,5,10,131898,1093867 +40029,387,10,11607,8538 +40030,317,10,281968,935359 +40031,413,11,183412,1328760 +40032,317,10,43157,556858 +40033,375,11,77459,1820914 +40034,317,10,239562,80602 +40035,234,1,288526,1120003 +40036,387,10,28774,66806 +40037,273,7,277710,8320 +40038,3,5,417870,9645 +40039,75,5,274504,1609038 +40040,317,10,211166,1372714 +40041,3,5,12476,13670 +40042,20,2,243568,1685937 +40043,269,9,316042,15222 +40044,45,9,302699,1729089 +40045,3,5,2197,24721 +40046,286,3,404459,1665255 +40047,148,9,279690,1077441 +40048,317,10,18414,56867 +40049,3,5,86261,1294391 +40050,234,1,101363,27991 +40051,148,9,96724,36658 +40052,317,10,27245,144014 +40053,127,3,4982,1579312 +40054,413,11,123961,1020771 +40055,234,1,63625,560232 +40056,3,5,2666,120 +40057,373,7,250066,1373429 +40058,213,10,61991,555905 +40059,234,1,13408,65134 +40060,60,1,42852,1062061 +40061,225,7,233639,1792036 +40062,234,1,362682,1519024 +40063,53,2,8342,1603201 +40064,196,7,1578,16539 +40065,273,7,334527,1161602 +40066,3,5,44578,1530123 +40067,273,7,39578,38646 +40068,273,7,340103,60891 +40069,204,9,714,10753 +40070,387,10,2172,22558 +40071,387,10,103539,1131832 +40072,273,7,200727,37031 +40073,104,7,755,1547309 +40074,413,11,361018,1792331 +40075,234,1,77459,65629 +40076,413,11,12205,58445 +40077,234,1,191112,1171679 +40078,317,10,61217,72191 +40079,52,10,45191,29518 +40080,413,11,606,7068 +40081,52,10,44669,50302 +40082,204,9,11584,31183 +40083,303,3,260030,1453124 +40084,317,10,17238,30309 +40085,286,3,18405,53181 +40086,204,9,45562,1464074 +40087,317,10,92251,3582 +40088,317,10,41077,125403 +40089,234,1,69075,52325 +40090,346,3,55846,1404873 +40091,99,3,14430,1457086 +40092,75,5,24624,1540849 +40093,387,10,289,2666 +40094,286,3,203217,557585 +40095,317,10,314283,173668 +40096,234,1,252102,545053 +40097,234,1,353595,105642 +40098,187,11,245891,1387183 +40099,3,5,3057,22057 +40100,196,7,226701,30745 +40101,413,11,694,244 +40102,234,1,80142,588882 +40103,317,10,78210,109889 +40104,166,9,284289,1391383 +40105,286,3,311764,77782 +40106,317,10,97110,536712 +40107,60,1,84508,240008 +40108,176,3,26390,1407195 +40109,182,8,245703,1641659 +40110,333,2,33364,29801 +40111,373,7,9746,1400072 +40112,5,10,39024,1124188 +40113,3,5,2274,23487 +40114,257,3,4248,1552014 +40115,413,11,54563,1600183 +40116,75,5,41283,1355541 +40117,325,5,293167,1419728 +40118,209,7,24810,1818111 +40119,25,2,346672,1569347 +40120,328,6,1271,1392906 +40121,262,6,341886,1573333 +40122,97,7,31911,557528 +40123,239,5,375366,1740779 +40124,234,1,10753,18897 +40125,317,10,456101,109531 +40126,175,5,238589,1400317 +40127,226,2,10491,1413028 +40128,52,10,86234,1542267 +40129,234,1,159469,94169 +40130,234,1,432883,61440 +40131,273,7,137504,125001 +40132,148,9,61151,1717230 +40133,269,9,382501,19987 +40134,5,10,5183,15379 +40135,234,1,35907,1770592 +40136,234,1,99698,1012123 +40137,97,7,2731,1037498 +40138,7,3,10733,1386315 +40139,175,5,42251,1446548 +40140,349,1,10198,1447427 +40141,217,3,3059,113709 +40142,234,1,18683,10076 +40143,373,7,2300,1341858 +40144,3,5,99,3656 +40145,296,3,41076,1889080 +40146,108,10,175027,1363010 +40147,269,9,82492,928074 +40148,66,11,2898,963798 +40149,190,7,18843,1868972 +40150,317,10,2979,117169 +40151,245,3,9543,62439 +40152,413,11,11377,68768 +40153,234,1,400668,1641406 +40154,234,1,353216,1494138 +40155,234,1,24559,9577 +40156,234,1,47900,78001 +40157,277,3,111398,1529559 +40158,175,5,11618,1378240 +40159,317,10,88478,42379 +40160,273,7,28893,102346 +40161,269,9,263472,1510554 +40162,301,5,127521,1399565 +40163,234,1,85472,21113 +40164,413,11,180305,67357 +40165,419,10,317198,956434 +40166,27,3,163,1727296 +40167,5,10,86970,21022 +40168,105,7,49689,1594800 +40169,262,6,70667,1448322 +40170,413,11,256740,68636 +40171,234,1,411221,1194331 +40172,5,10,59401,95922 +40173,269,9,2675,11620 +40174,244,3,10708,1584241 +40175,287,3,264397,1324071 +40176,200,3,9286,1426770 +40177,234,1,421365,1373888 +40178,204,9,42787,5188 +40179,60,1,288788,1085115 +40180,269,9,331161,222529 +40181,234,1,10890,8858 +40182,333,2,273404,1445365 +40183,317,10,47065,444458 +40184,413,11,209406,81872 +40185,387,10,93863,15189 +40186,413,11,23739,11124 +40187,269,9,78522,1148575 +40188,413,11,371462,39899 +40189,317,10,84493,1012004 +40190,269,9,580,7186 +40191,196,7,381015,1828371 +40192,419,10,10829,67022 +40193,289,6,9514,1642506 +40194,273,7,43525,3249 +40195,273,7,42456,10934 +40196,148,9,87827,1512383 +40197,217,3,269149,1462007 +40198,301,5,265208,1445895 +40199,226,2,1394,550631 +40200,317,10,62320,83486 +40201,3,5,9289,32097 +40202,398,9,2567,1399292 +40203,3,5,18698,29635 +40204,148,9,1819,12568 +40205,269,9,13853,12510 +40206,198,6,257088,1638131 +40207,53,2,158908,1521080 +40208,105,7,14703,97450 +40209,286,3,45949,40486 +40210,3,5,11547,31126 +40211,317,10,40220,1039480 +40212,387,10,3057,29936 +40213,273,7,262841,54420 +40214,3,5,376538,1086814 +40215,234,1,78563,47822 +40216,204,9,337104,1174107 +40217,387,10,43828,223371 +40218,269,9,181533,51987 +40219,132,2,15019,1433996 +40220,53,2,1633,5710 +40221,234,1,21041,92410 +40222,387,10,747,11090 +40223,234,1,25335,93561 +40224,209,7,48231,1402037 +40225,262,6,17577,1423842 +40226,413,11,6972,433 +40227,360,3,19765,1602170 +40228,234,1,15497,37362 +40229,269,9,286372,41334 +40230,269,9,354859,4710 +40231,3,5,3028,1939 +40232,413,11,149511,1545070 +40233,333,2,17577,1423833 +40234,3,5,40807,47293 +40235,234,1,23331,33368 +40236,273,7,115023,983164 +40237,317,10,109441,31069 +40238,314,2,237584,1435638 +40239,52,10,19618,84941 +40240,387,10,29286,30128 +40241,331,3,1966,1733752 +40242,317,10,36968,1506922 +40243,25,2,274857,1428470 +40244,226,2,41298,1697366 +40245,317,10,79611,1779298 +40246,196,7,12,8078 +40247,3,5,236737,16942 +40248,192,5,157424,1317053 +40249,413,11,320910,37242 +40250,3,5,27599,22326 +40251,398,9,3059,1899112 +40252,289,6,67130,77610 +40253,250,11,77949,1402099 +40254,273,7,118536,1042001 +40255,166,9,5237,1427550 +40256,249,7,809,1159914 +40257,234,1,171902,1154478 +40258,413,11,2204,2309 +40259,234,1,68882,119430 +40260,148,9,197,7791 +40261,273,7,20530,993312 +40262,387,10,47312,10076 +40263,53,2,345003,1838602 +40264,286,3,433086,1819561 +40265,52,10,102382,15346 +40266,317,10,142402,635846 +40267,387,10,86703,558864 +40268,234,1,71041,68 +40269,409,7,10733,1043374 +40270,387,10,5155,3780 +40271,413,11,14881,3643 +40272,198,6,339403,1635192 +40273,3,5,34869,1084378 +40274,273,7,2108,21644 +40275,208,2,4887,40033 +40276,273,7,31670,41040 +40277,5,10,11236,68690 +40278,234,1,394822,126910 +40279,166,9,257345,1451910 +40280,234,1,21567,83594 +40281,3,5,360784,968858 +40282,45,9,29151,1526543 +40283,25,2,1125,1526464 +40284,387,10,2267,23411 +40285,317,10,223391,144557 +40286,196,7,72431,1484178 +40287,105,7,2084,469 +40288,317,10,43882,5735 +40289,234,1,43808,89749 +40290,5,10,2637,27547 +40291,411,9,14979,61846 +40292,269,9,92257,33785 +40293,20,2,1995,36591 +40294,317,10,33250,13 +40295,203,1,179288,1458984 +40296,317,10,85126,1723 +40297,317,10,359255,49311 +40298,413,11,266433,512444 +40299,317,10,343972,161984 +40300,373,7,19101,1378226 +40301,5,10,33660,1035262 +40302,52,10,354857,1251089 +40303,317,10,205481,47627 +40304,269,9,42040,9869 +40305,273,7,43316,30104 +40306,234,1,55190,110876 +40307,413,11,61541,14679 +40308,287,3,15092,1394743 +40309,278,6,40466,1760149 +40310,3,5,83782,21233 +40311,20,2,17771,1602314 +40312,204,9,3024,29651 +40313,75,5,435,1402032 +40314,52,10,324670,16621 +40315,269,9,61400,233075 +40316,234,1,32158,1021626 +40317,413,11,109213,590791 +40318,269,9,273879,23769 +40319,413,11,63144,1476166 +40320,60,1,18642,83791 +40321,105,7,33563,41674 +40322,317,10,26768,69558 +40323,387,10,43379,1009150 +40324,226,2,16638,27187 +40325,317,10,36635,115869 +40326,317,10,390526,1023539 +40327,174,6,286873,1553457 +40328,262,6,434873,1682325 +40329,234,1,36657,9032 +40330,273,7,75244,959 +40331,234,1,77185,386918 +40332,234,1,73545,270330 +40333,387,10,43199,5736 +40334,198,6,294272,1660728 +40335,413,11,27230,51784 +40336,317,10,68360,439442 +40337,234,1,2503,25598 +40338,387,10,9016,15810 +40339,268,7,153,1415964 +40340,244,3,10865,1034755 +40341,135,3,10320,1646233 +40342,67,10,924,1551667 +40343,387,10,268875,113708 +40344,273,7,52867,16891 +40345,204,9,70666,54980 +40346,204,9,94352,1001708 +40347,52,10,43877,135464 +40348,53,2,14750,47899 +40349,209,7,57201,1335569 +40350,413,11,4809,3099 +40351,268,7,62630,1404861 +40352,180,7,268853,1648883 +40353,3,5,5917,1153 +40354,317,10,46010,107669 +40355,387,10,10873,67506 +40356,291,6,52302,18602 +40357,75,5,2454,1425500 +40358,204,9,379,23972 +40359,387,10,103216,234556 +40360,143,7,118957,1410551 +40361,413,11,270303,971868 +40362,3,5,7210,52006 +40363,3,5,398891,1538878 +40364,373,7,10972,9410 +40365,387,10,56151,4341 +40366,234,1,65456,158832 +40367,3,5,352025,73717 +40368,317,10,96106,1281091 +40369,317,10,226188,45427 +40370,12,10,27549,58248 +40371,286,3,8932,931689 +40372,234,1,7555,16483 +40373,105,7,140825,585617 +40374,234,1,55825,75131 +40375,413,11,18801,7754 +40376,317,10,125548,39595 +40377,105,7,308165,88593 +40378,11,6,126963,1083452 +40379,303,3,55534,1378568 +40380,234,1,197082,3556 +40381,209,7,9675,1400537 +40382,234,1,198993,548373 +40383,387,10,10733,58726 +40384,413,11,340027,1434562 +40385,289,6,291270,1453519 +40386,286,3,109441,930242 +40387,204,9,43923,1193618 +40388,298,5,12113,1403415 +40389,234,1,95136,4090 +40390,273,7,13685,5666 +40391,77,10,5048,6210 +40392,413,11,297736,1272999 +40393,387,10,84397,16745 +40394,273,7,413547,1562506 +40395,273,7,6978,15445 +40396,269,9,272693,42634 +40397,234,1,26861,96318 +40398,234,1,8072,3776 +40399,317,10,82,1225462 +40400,127,3,279096,1386325 +40401,333,2,270851,1321932 +40402,3,5,10275,64687 +40403,3,5,875,13338 +40404,169,3,345922,1389616 +40405,108,10,43880,98751 +40406,317,10,77012,95262 +40407,234,1,94587,1477505 +40408,234,1,65612,3776 +40409,3,5,33314,203350 +40410,413,11,154371,140073 +40411,203,1,329865,1777636 +40412,204,9,114790,1568003 +40413,360,9,121598,1833734 +40414,234,1,395763,72327 +40415,54,10,413232,1671735 +40416,5,10,11983,71168 +40417,234,1,108712,1044807 +40418,175,5,35052,1458557 +40419,317,10,49950,564949 +40420,53,2,7326,11823 +40421,273,7,329724,55810 +40422,273,7,32684,4345 +40423,286,3,202214,1058555 +40424,394,7,9426,91886 +40425,269,9,190955,20569 +40426,52,10,262841,57744 +40427,3,5,4248,6899 +40428,181,7,54845,1402025 +40429,204,9,56135,8506 +40430,317,10,1396,55517 +40431,250,11,9042,1409244 +40432,317,10,19936,85336 +40433,203,1,4913,1395687 +40434,387,10,48131,43553 +40435,413,11,1717,10957 +40436,204,9,177047,1564379 +40437,204,9,18783,31969 +40438,155,3,45205,132526 +40439,317,10,25797,51473 +40440,234,1,28592,73626 +40441,204,9,26758,30106 +40442,5,10,27137,1185443 +40443,328,6,328429,1402950 +40444,234,1,362151,222316 +40445,319,1,126889,1816355 +40446,3,5,5123,943 +40447,164,3,857,1117347 +40448,413,11,14811,12509 +40449,415,3,24821,1570458 +40450,373,7,10476,1378227 +40451,269,9,142989,135728 +40452,273,7,179826,41674 +40453,250,11,345925,1717846 +40454,204,9,297736,1833814 +40455,234,1,49418,142228 +40456,289,6,329865,1194578 +40457,289,6,13798,1565827 +40458,373,7,14138,1392702 +40459,387,10,11397,35692 +40460,317,10,47508,1480247 +40461,387,10,73348,5181 +40462,181,7,11645,1444807 +40463,413,11,256421,1033619 +40464,268,7,241239,1414182 +40465,3,5,18783,11593 +40466,171,3,283995,1760561 +40467,204,9,19995,1330561 +40468,273,7,28063,132783 +40469,3,5,98302,45479 +40470,203,1,16358,1400738 +40471,387,10,94727,1840038 +40472,289,6,9514,1358730 +40473,187,11,11351,1597204 +40474,181,7,47921,1532478 +40475,204,9,53860,9062 +40476,53,2,42664,24797 +40477,301,5,8870,1408354 +40478,53,2,126889,946 +40479,3,5,11328,1175 +40480,234,1,25807,94218 +40481,387,10,28178,151181 +40482,105,7,3085,34173 +40483,234,1,54959,87355 +40484,3,5,9589,48459 +40485,269,9,10330,1124107 +40486,198,6,312221,1580882 +40487,273,7,98349,40613 +40488,413,11,1165,15731 +40489,75,5,347096,1578493 +40490,234,1,231216,221442 +40491,333,2,354287,1325234 +40492,317,10,66022,5181 +40493,317,10,259830,124635 +40494,387,10,186988,3124 +40495,289,6,81310,143787 +40496,164,3,324670,1547197 +40497,25,2,169,1316296 +40498,51,9,3597,1790545 +40499,273,7,17956,63964 +40500,3,5,123961,111987 +40501,157,3,54801,1194816 +40502,3,5,36758,7262 +40503,373,7,74,1338976 +40504,234,1,10889,11147 +40505,387,10,179603,148800 +40506,160,3,59115,1071998 +40507,234,1,169800,983547 +40508,3,5,32684,109700 +40509,387,10,14029,44957 +40510,148,9,26516,9063 +40511,234,1,30308,46712 +40512,127,3,293660,58911 +40513,387,10,2566,4387 +40514,387,10,24822,115906 +40515,413,11,4592,853 +40516,208,2,69,1316003 +40517,413,11,47535,49809 +40518,52,10,11475,69552 +40519,413,11,120977,127627 +40520,387,10,17137,81296 +40521,212,3,8619,1553642 +40522,317,10,133783,1263631 +40523,60,1,43268,1372222 +40524,413,11,66113,957731 +40525,317,10,148265,147021 +40526,269,9,30155,1199556 +40527,148,9,3556,14879 +40528,413,11,105548,1008599 +40529,148,9,703,10549 +40530,234,1,10708,52112 +40531,234,1,257088,21673 +40532,148,9,322443,1615076 +40533,203,1,9495,1521754 +40534,234,1,153169,32427 +40535,373,7,340275,40141 +40536,417,3,9928,1569828 +40537,204,9,28730,557443 +40538,317,10,98302,18565 +40539,413,11,361146,1890675 +40540,75,5,9914,1540887 +40541,317,10,235260,1079136 +40542,413,11,46029,1640578 +40543,165,9,26390,1407193 +40544,226,2,283384,1429332 +40545,413,11,128237,128046 +40546,3,5,322443,3114 +40547,269,9,20481,56071 +40548,3,5,306966,54520 +40549,289,6,10693,69003 +40550,3,5,8870,307 +40551,234,1,62728,17608 +40552,273,7,7980,37317 +40553,232,10,15310,1666715 +40554,234,1,63315,1111709 +40555,234,1,15982,12677 +40556,213,10,13061,7882 +40557,413,11,227306,1635 +40558,3,5,393367,1107586 +40559,72,11,549,1538814 +40560,234,1,355111,1350796 +40561,204,9,330459,1373698 +40562,203,1,8276,1544435 +40563,413,11,31027,21904 +40564,317,10,185987,548019 +40565,273,7,43491,3249 +40566,289,6,72545,1455541 +40567,234,1,31462,57359 +40568,198,6,8053,1708858 +40569,387,10,333484,22814 +40570,72,11,5,1877377 +40571,148,9,312221,1544542 +40572,234,1,33316,110462 +40573,386,5,40466,72543 +40574,234,1,370178,1083154 +40575,234,1,24831,4600 +40576,317,10,222297,1207643 +40577,3,5,95743,66641 +40578,269,9,59962,8525 +40579,105,7,95169,48052 +40580,148,9,4964,41082 +40581,413,11,121674,8219 +40582,127,3,4257,113194 +40583,204,9,177572,70240 +40584,387,10,280030,1328703 +40585,301,5,241239,1399875 +40586,234,1,67018,104178 +40587,303,3,2675,91069 +40588,244,3,406431,1650625 +40589,234,1,94570,110348 +40590,317,10,46494,95527 +40591,387,10,21282,118171 +40592,234,1,267481,115122 +40593,317,10,25126,54472 +40594,3,5,16307,83135 +40595,203,1,167073,1436238 +40596,208,2,70667,1416974 +40597,105,7,29058,974330 +40598,317,10,27102,28615 +40599,280,2,13920,21004 +40600,291,6,1294,1539066 +40601,239,5,312831,1579035 +40602,148,9,77930,12568 +40603,387,10,37958,119254 +40604,273,7,36786,55694 +40605,376,10,123103,16847 +40606,387,10,24749,199542 +40607,185,11,33586,1815012 +40608,204,9,18665,552199 +40609,75,5,3172,1409831 +40610,317,10,335897,1086267 +40611,234,1,30708,51875 +40612,234,1,73690,13594 +40613,333,2,3476,32087 +40614,413,11,105981,1010724 +40615,387,10,344120,119194 +40616,317,10,38922,10774 +40617,415,3,9514,1299539 +40618,53,2,9885,963971 +40619,373,7,13792,75559 +40620,273,7,3937,34228 +40621,5,10,82654,928444 +40622,273,7,4580,34263 +40623,208,2,79935,1447083 +40624,317,10,141015,1263628 +40625,249,7,13393,1159914 +40626,52,10,46972,161433 +40627,148,9,193177,1010740 +40628,105,7,49787,1316852 +40629,234,1,18002,82805 +40630,387,10,3423,32316 +40631,413,11,36089,31203 +40632,234,1,134750,1100017 +40633,25,2,356326,1630488 +40634,148,9,44921,9586 +40635,99,3,10733,1378239 +40636,11,6,294254,1457327 +40637,413,11,42206,2725 +40638,5,10,114096,2989 +40639,416,10,73827,138209 +40640,234,1,45377,133115 +40641,234,1,25450,936853 +40642,234,1,38509,1035941 +40643,3,5,28682,31775 +40644,301,5,10529,1567313 +40645,148,9,703,10442 +40646,373,7,188927,1394130 +40647,204,9,94468,22088 +40648,3,5,336850,1211349 +40649,387,10,11101,57825 +40650,269,9,8464,958414 +40651,328,6,206647,1391691 +40652,97,7,149509,20229 +40653,160,3,84735,1437861 +40654,158,2,924,1337666 +40655,387,10,61212,103132 +40656,273,7,30690,531 +40657,317,10,27937,1176209 +40658,53,2,18506,23548 +40659,413,11,12764,72547 +40660,394,7,4133,1390353 +40661,306,7,406431,1650632 +40662,387,10,9503,57752 +40663,234,1,60106,28791 +40664,387,10,38770,33085 +40665,60,1,28,511 +40666,204,9,49028,1434453 +40667,413,11,4307,413 +40668,77,10,33788,61239 +40669,269,9,30876,38917 +40670,3,5,6591,31775 +40671,213,10,61991,18209 +40672,262,6,60599,1379994 +40673,234,1,211579,150975 +40674,262,6,50126,1692499 +40675,250,11,324670,1726050 +40676,317,10,135536,58021 +40677,317,10,157152,1138365 +40678,413,11,333091,1496396 +40679,317,10,76422,578815 +40680,234,1,108535,122016 +40681,317,10,223946,571194 +40682,84,7,15653,1551550 +40683,198,6,193893,1871247 +40684,314,2,55534,1468928 +40685,317,10,330171,73639 +40686,269,9,19912,223990 +40687,24,5,9946,1399899 +40688,317,10,273296,78298 +40689,360,3,655,1416675 +40690,387,10,197335,21227 +40691,5,10,379,5165 +40692,3,5,9539,92203 +40693,204,9,9812,1265577 +40694,387,10,394822,1496011 +40695,30,5,8470,1551053 +40696,317,10,234155,1058959 +40697,317,10,54814,86782 +40698,117,5,24624,20065 +40699,105,7,277631,2027 +40700,77,10,4974,4388 +40701,187,11,20432,1065720 +40702,234,1,210092,35325 +40703,387,10,38950,53006 +40704,76,2,81182,1530235 +40705,301,5,284052,91115 +40706,105,7,57011,1176802 +40707,335,6,283995,1381060 +40708,239,5,693,108146 +40709,413,11,57993,16751 +40710,190,7,220820,1885854 +40711,3,5,147815,139896 +40712,1,7,154,1797 +40713,148,9,9966,61140 +40714,413,11,43499,38250 +40715,245,3,17927,29216 +40716,234,1,78233,583399 +40717,234,1,78691,39819 +40718,394,7,193893,92380 +40719,387,10,9516,57775 +40720,198,6,294254,1571500 +40721,286,3,97051,1324034 +40722,333,2,47342,406204 +40723,204,9,188927,1311175 +40724,387,10,42436,106345 +40725,203,1,157424,1350808 +40726,246,6,284052,1774215 +40727,317,10,57307,225889 +40728,234,1,264036,557960 +40729,273,7,37083,18593 +40730,53,2,152100,1688243 +40731,333,2,6972,1401640 +40732,234,1,60193,227520 +40733,187,11,1640,1404841 +40734,234,1,11584,64061 +40735,317,10,157293,550327 +40736,387,10,72207,41088 +40737,3,5,43877,46233 +40738,409,7,55420,930989 +40739,3,5,199647,1179829 +40740,183,5,283995,1760559 +40741,317,10,14293,91389 +40742,234,1,31922,13776 +40743,204,9,40085,3358 +40744,234,1,14538,57832 +40745,317,10,376579,1661770 +40746,204,9,34106,29345 +40747,3,5,168027,70949 +40748,75,5,8204,1403706 +40749,204,9,20357,1465632 +40750,357,3,245703,1434565 +40751,196,7,294652,117235 +40752,72,11,126889,1459937 +40753,204,9,31947,7788 +40754,303,3,74,15358 +40755,234,1,17963,5714 +40756,187,11,294690,1372423 +40757,360,3,29056,1588452 +40758,208,2,44945,1520596 +40759,74,5,17209,1616175 +40760,3,5,43384,12307 +40761,333,2,13616,1586594 +40762,204,9,72313,12280 +40763,87,7,176,1817656 +40764,158,2,14430,965270 +40765,234,1,143005,264013 +40766,387,10,10632,59986 +40767,269,9,106747,20489 +40768,387,10,9080,27518 +40769,143,7,9286,1342657 +40770,234,1,52188,145518 +40771,53,2,11338,7211 +40772,5,10,50942,8554 +40773,234,1,18098,18308 +40774,234,1,49220,57022 +40775,105,7,26983,96731 +40776,413,11,42325,103365 +40777,175,5,329865,132642 +40778,273,7,362703,558542 +40779,317,10,29116,87392 +40780,34,8,11024,1673563 +40781,273,7,27629,120030 +40782,413,11,199415,1360836 +40783,317,10,45244,21683 +40784,234,1,31408,109083 +40785,187,11,214081,1367649 +40786,234,1,390526,1023539 +40787,317,10,254435,1315626 +40788,277,7,395982,1755122 +40789,52,10,90616,116271 +40790,179,2,82,1464528 +40791,79,7,289,119538 +40792,15,6,283995,1590405 +40793,413,11,52437,68645 +40794,413,11,61341,1338234 +40795,204,9,40466,1760133 +40796,413,11,40719,103673 +40797,3,5,9716,15194 +40798,186,6,9457,1447503 +40799,387,10,78028,736 +40800,105,7,38433,90378 +40801,323,10,393559,588869 +40802,53,2,334,40471 +40803,304,10,21566,146970 +40804,209,7,14,1550619 +40805,204,9,12113,77513 +40806,360,3,241927,1585359 +40807,182,8,298584,1619738 +40808,269,9,23196,1712319 +40809,289,6,21032,1205985 +40810,387,10,267310,1386895 +40811,413,11,14878,21119 +40812,327,7,293660,1399061 +40813,317,10,142746,1117904 +40814,317,10,55192,131010 +40815,52,10,257302,1308453 +40816,22,9,755,1662324 +40817,273,7,16373,26026 +40818,234,1,293452,40256 +40819,209,7,9543,1390382 +40820,143,7,22076,1345593 +40821,190,7,240832,1367816 +40822,277,3,251,1453282 +40823,5,10,37939,563706 +40824,273,7,92389,1701782 +40825,239,5,274504,1308218 +40826,413,11,104297,5841 +40827,394,7,173153,1472169 +40828,122,8,8619,1593266 +40829,317,10,86970,185492 +40830,77,10,16890,44023 +40831,269,9,256347,19284 +40832,328,6,15092,1414553 +40833,269,9,94671,21420 +40834,234,1,79611,587621 +40835,317,10,384021,1581045 +40836,387,10,1911,2711 +40837,182,8,339403,1378764 +40838,387,10,2115,1035 +40839,203,1,59965,1395035 +40840,317,10,168295,587603 +40841,234,1,3146,18598 +40842,346,3,11812,1411281 +40843,317,10,148807,1092208 +40844,413,11,55197,552002 +40845,5,10,83754,1294784 +40846,208,2,250066,1415334 +40847,262,6,10632,1377130 +40848,413,11,99374,1020770 +40849,234,1,89606,2662 +40850,328,6,25941,1558427 +40851,317,10,53648,4818 +40852,113,9,4413,1406895 +40853,269,9,7511,7496 +40854,52,10,64807,1536766 +40855,3,5,9905,473 +40856,387,10,26808,96306 +40857,234,1,42532,90522 +40858,196,7,9836,75148 +40859,317,10,43441,89905 +40860,226,2,1715,18786 +40861,204,9,26880,1602280 +40862,373,7,169298,930983 +40863,234,1,55759,116155 +40864,66,11,320910,1667098 +40865,5,10,38654,67450 +40866,3,5,9828,59667 +40867,250,11,14254,1405419 +40868,269,9,9982,61421 +40869,413,11,227975,1680653 +40870,203,1,9746,1417021 +40871,317,10,46827,990928 +40872,64,6,28571,10521 +40873,5,10,75892,130705 +40874,3,5,10033,14139 +40875,234,1,137651,1000817 +40876,5,10,77877,64172 +40877,387,10,105210,146867 +40878,387,10,28859,101449 +40879,3,5,4140,34951 +40880,219,11,9928,13223 +40881,234,1,7547,16484 +40882,302,9,4248,1667229 +40883,234,1,428645,1533252 +40884,317,10,13336,84439 +40885,317,10,36243,124303 +40886,226,2,105,1298887 +40887,52,10,10865,62048 +40888,413,11,42040,2705 +40889,273,7,242090,984513 +40890,273,7,28437,99452 +40891,148,9,42307,1317312 +40892,204,9,296633,1805380 +40893,53,2,333354,1613773 +40894,189,3,100110,1370964 +40895,387,10,1427,2355 +40896,317,10,47110,935644 +40897,72,11,19255,1552358 +40898,234,1,269494,1135240 +40899,387,10,245692,67717 +40900,234,1,14286,84369 +40901,52,10,118549,132574 +40902,234,1,875,2891 +40903,190,7,2323,1338370 +40904,3,5,3164,30970 +40905,269,9,18098,33444 +40906,175,5,549,1391583 +40907,387,10,226140,1348062 +40908,53,2,313922,1616450 +40909,175,5,448847,1736382 +40910,394,7,27265,1341859 +40911,317,10,202215,1186360 +40912,317,10,27814,86250 +40913,234,1,52047,95501 +40914,3,5,499,19086 +40915,249,7,76203,1393441 +40916,273,7,42045,50520 +40917,203,1,36094,1459591 +40918,5,10,145481,1095589 +40919,182,8,302828,1593264 +40920,12,10,30666,100883 +40921,250,11,25941,1558432 +40922,317,10,305455,1553549 +40923,22,9,418437,1386905 +40924,148,9,24973,1335586 +40925,197,5,924,1733232 +40926,105,7,243683,54599 +40927,3,5,29611,8523 +40928,234,1,31993,108914 +40929,258,9,159824,1447481 +40930,3,5,857,492 +40931,57,2,25520,83121 +40932,245,3,9982,54515 +40933,269,9,10865,1249293 +40934,67,10,10590,1566318 +40935,53,2,37481,1586289 +40936,413,11,14242,937827 +40937,3,5,21801,6389 +40938,293,2,209112,1594611 +40939,191,6,126889,1466454 +40940,387,10,5482,44964 +40941,413,11,11909,11401 +40942,148,9,9899,60135 +40943,345,7,283995,1408316 +40944,226,2,188927,1314457 +40945,373,7,613,1425854 +40946,10,3,19719,85104 +40947,158,2,10096,1546829 +40948,413,11,425774,1578015 +40949,317,10,428355,216147 +40950,292,3,11547,1557598 +40951,40,1,230179,1881542 +40952,273,7,11688,4500 +40953,3,5,43268,8620 +40954,77,10,26670,70975 +40955,30,5,10066,1401593 +40956,317,10,203539,928706 +40957,40,1,188102,1445990 +40958,413,11,137528,1450503 +40959,53,2,290764,231832 +40960,387,10,7916,40610 +40961,317,10,308529,41355 +40962,164,3,9664,1557581 +40963,269,9,34838,18496 +40964,387,10,3023,29633 +40965,75,5,1125,1347763 +40966,104,7,5172,41888 +40967,148,9,709,8526 +40968,160,3,11377,84702 +40969,113,9,1966,1373694 +40970,148,9,28000,21873 +40971,53,2,25430,12145 +40972,250,11,51250,65213 +40973,53,2,9555,5547 +40974,203,1,47112,1403710 +40975,80,3,153,1543045 +40976,234,1,408220,105643 +40977,52,10,150223,1870822 +40978,234,1,24090,88039 +40979,250,11,1125,1394953 +40980,234,1,35652,114484 +40981,234,1,2295,19303 +40982,413,11,20361,66272 +40983,234,1,48770,91277 +40984,234,1,1387,16863 +40985,273,7,155605,1487840 +40986,20,2,9613,1317048 +40987,317,10,43656,3111 +40988,387,10,78028,566286 +40989,204,9,14554,9059 +40990,387,10,139455,86446 +40991,204,9,177677,1398084 +40992,269,9,40807,964595 +40993,317,10,54898,26101 +40994,60,1,365709,1528376 +40995,234,1,9928,5714 +40996,234,1,9771,8108 +40997,273,7,9963,122 +40998,317,10,26516,3632 +40999,204,9,128270,1325661 +41000,234,1,82134,144596 +41001,53,2,24936,1458759 +41002,317,10,268920,1317937 +41003,234,1,341420,1469920 +41004,54,10,156597,1024441 +41005,273,7,28063,50788 +41006,273,7,12,153 +41007,328,6,17654,1424622 +41008,269,9,20357,1465631 +41009,273,7,9568,15445 +41010,143,7,53042,1283141 +41011,105,7,15936,41674 +41012,269,9,9297,4953 +41013,190,7,2105,1351327 +41014,66,11,50126,78979 +41015,3,5,10330,11409 +41016,387,10,28295,31063 +41017,105,7,57918,1174698 +41018,234,1,99367,154547 +41019,161,6,338189,1650744 +41020,273,7,24810,56187 +41021,289,6,53178,930641 +41022,53,2,302828,9493 +41023,45,9,334,1559546 +41024,3,5,157,1822 +41025,45,9,70667,1387768 +41026,234,1,85729,143679 +41027,268,7,26390,92382 +41028,286,3,192675,223148 +41029,234,1,50512,57851 +41030,333,2,294254,553928 +41031,204,9,35021,1611203 +41032,286,3,325385,1357 +41033,234,1,141868,89602 +41034,273,7,46563,3249 +41035,413,11,11159,10725 +41036,180,7,229610,13813 +41037,28,9,2503,67202 +41038,175,5,9102,1380390 +41039,360,3,1421,1160006 +41040,234,1,22279,10723 +41041,53,2,72105,41084 +41042,234,1,342213,53943 +41043,333,2,634,9162 +41044,28,9,163,1727284 +41045,204,9,257081,41754 +41046,317,10,120932,87407 +41047,317,10,87593,935279 +41048,52,10,308269,1447879 +41049,234,1,16390,209181 +41050,262,6,19995,1394070 +41051,182,8,8464,1581504 +41052,273,7,35253,108731 +41053,203,1,109439,1345635 +41054,17,3,10020,1447310 +41055,226,2,257345,1435638 +41056,317,10,56816,124858 +41057,3,5,26593,40183 +41058,317,10,65134,61969 +41059,105,7,53860,29967 +41060,3,5,31742,33859 +41061,413,11,254679,72512 +41062,387,10,25738,11993 +41063,262,6,297762,1551911 +41064,196,7,11517,1551343 +41065,387,10,45191,1714742 +41066,273,7,3941,34276 +41067,234,1,199647,1179830 +41068,187,11,14476,1411669 +41069,234,1,43316,46712 +41070,234,1,184155,93550 +41071,3,5,389630,1194884 +41072,317,10,12454,65452 +41073,3,5,262,3659 +41074,148,9,172828,1096204 +41075,234,1,364684,1118236 +41076,387,10,70500,559704 +41077,158,2,188927,1431099 +41078,234,1,165567,1176730 +41079,132,2,293167,1414537 +41080,87,7,84333,1801546 +41081,226,2,9659,150093 +41082,75,5,243940,1434896 +41083,328,6,167073,1578001 +41084,53,2,45431,550898 +41085,143,7,10674,16736 +41086,158,2,54093,1553492 +41087,387,10,22396,88741 +41088,317,10,9352,57405 +41089,413,11,345438,1262514 +41090,328,6,613,1425857 +41091,3,5,26510,51914 +41092,196,7,4248,1537538 +41093,169,3,286372,1378143 +41094,413,11,3554,32771 +41095,232,10,76642,572388 +41096,160,3,44732,1396418 +41097,182,8,2321,142164 +41098,192,5,274857,1403641 +41099,403,10,109477,1046587 +41100,333,2,142402,1117101 +41101,148,9,105548,12349 +41102,234,1,11329,5501 +41103,286,3,80125,1441736 +41104,127,3,133328,108236 +41105,3,5,34223,5506 +41106,373,7,17144,1387572 +41107,196,7,43912,1370961 +41108,333,2,8870,8939 +41109,317,10,70583,558908 +41110,413,11,396535,1674268 +41111,234,1,44511,583495 +41112,234,1,16239,80172 +41113,289,6,106112,64864 +41114,196,7,294272,1412984 +41115,234,1,115054,33883 +41116,40,1,13058,1834846 +41117,327,7,10665,1453175 +41118,273,7,194,2422 +41119,317,10,295884,1418130 +41120,52,10,108391,199441 +41121,269,9,74879,1600454 +41122,105,7,52150,575455 +41123,52,10,43878,33822 +41124,328,6,7299,1433723 +41125,105,7,42168,10468 +41126,234,1,60784,231720 +41127,314,2,10796,1415601 +41128,269,9,49974,6031 +41129,333,2,166671,1310064 +41130,234,1,166621,4109 +41131,269,9,11622,15427 +41132,200,3,189,1396802 +41133,317,10,60568,1120028 +41134,234,1,130062,1016035 +41135,317,10,340275,5281 +41136,373,7,5237,146755 +41137,204,9,5413,43153 +41138,273,7,12763,60029 +41139,221,3,203833,1339059 +41140,413,11,244783,72038 +41141,286,3,275060,1084983 +41142,387,10,4285,6095 +41143,3,5,93492,1123075 +41144,60,1,469172,1862607 +41145,53,2,201085,213644 +41146,105,7,90616,1692106 +41147,413,11,84626,1154129 +41148,415,3,378441,1797505 +41149,387,10,10937,67562 +41150,269,9,9298,9819 +41151,234,1,367735,1475576 +41152,413,11,9836,58067 +41153,317,10,108822,130030 +41154,179,2,341174,1389135 +41155,413,11,408509,1679096 +41156,234,1,81225,92005 +41157,317,10,39766,40378 +41158,387,10,96133,5561 +41159,87,7,42188,52161 +41160,262,6,49009,1373433 +41161,346,3,9882,1401307 +41162,75,5,315837,66054 +41163,3,5,11912,9752 +41164,394,7,6973,1352969 +41165,187,11,70670,1448311 +41166,5,10,53231,705395 +41167,3,5,112961,60052 +41168,387,10,59401,6593 +41169,289,6,73690,149098 +41170,333,2,107811,1269670 +41171,303,3,5289,1152400 +41172,3,5,117,1258 +41173,317,10,53168,57607 +41174,234,1,120747,93904 +41175,317,10,43759,223391 +41176,105,7,19665,983161 +41177,234,1,43902,8636 +41178,277,7,43459,1511311 +41179,204,9,18047,106012 +41180,204,9,274990,1158265 +41181,234,1,256421,15217 +41182,234,1,300,201 +41183,387,10,35026,113615 +41184,413,11,66193,1331137 +41185,331,3,169,1594907 +41186,291,6,284289,1538207 +41187,413,11,112885,13289 +41188,234,1,18056,144221 +41189,387,10,6948,51535 +41190,225,7,69668,1556316 +41191,317,10,203780,1201126 +41192,60,1,11370,62516 +41193,387,10,58615,4664 +41194,234,1,59354,124238 +41195,289,6,80928,153292 +41196,269,9,28673,101547 +41197,413,11,43316,44694 +41198,268,7,55534,1577976 +41199,53,2,21208,1313928 +41200,52,10,42325,103360 +41201,387,10,10351,55949 +41202,203,1,20210,113853 +41203,204,9,70981,30463 +41204,413,11,259183,10185 +41205,333,2,122677,1191343 +41206,5,10,14164,78322 +41207,360,9,169,1410345 +41208,204,9,28571,14878 +41209,3,5,5201,3637 +41210,413,11,11096,35176 +41211,3,5,326,2723 +41212,182,8,1640,12598 +41213,360,3,10344,1446196 +41214,273,7,2453,7728 +41215,148,9,1271,6053 +41216,387,10,38792,64860 +41217,317,10,201485,1183606 +41218,60,1,377151,1640922 +41219,398,9,76341,1475737 +41220,269,9,3059,100036 +41221,77,10,16147,79602 +41222,317,10,39816,937826 +41223,152,2,9314,10645 +41224,273,7,9820,37 +41225,209,7,4413,1406905 +41226,317,10,269797,1319503 +41227,387,10,17339,113899 +41228,413,11,337339,6668 +41229,234,1,19096,64114 +41230,273,7,47955,1259 +41231,413,11,2486,10123 +41232,208,2,29224,93489 +41233,234,1,85442,18910 +41234,269,9,177155,1334943 +41235,234,1,456101,109531 +41236,317,10,413992,1208422 +41237,319,1,924,1733241 +41238,53,2,257088,6033 +41239,3,5,30640,7386 +41240,53,2,22292,108820 +41241,413,11,52736,72616 +41242,161,6,338189,1646558 +41243,3,5,38150,1321272 +41244,77,10,18082,83176 +41245,5,10,694,3027 +41246,317,10,143073,1308692 +41247,229,6,9836,970287 +41248,12,10,10805,66882 +41249,412,9,118,1592205 +41250,317,10,20342,52912 +41251,387,10,616,9181 +41252,105,7,63838,1596111 +41253,234,1,89445,10051 +41254,262,6,230179,1881549 +41255,413,11,8071,34908 +41256,394,7,10727,1339446 +41257,180,7,11577,1511706 +41258,399,9,44283,1447436 +41259,273,7,388243,92957 +41260,269,9,47694,554845 +41261,3,5,12763,59443 +41262,239,5,1950,18093 +41263,234,1,24679,190 +41264,204,9,59189,568911 +41265,413,11,228066,1574033 +41266,317,10,160297,928285 +41267,273,7,10747,7769 +41268,53,2,198663,1299980 +41269,317,10,34838,57206 +41270,331,3,2662,1603316 +41271,262,6,68721,1401803 +41272,179,2,97365,1031922 +41273,333,2,312831,1594185 +41274,273,7,56816,1158487 +41275,273,7,43385,2916 +41276,234,1,54415,125787 +41277,67,10,197854,1096529 +41278,226,2,954,1886656 +41279,291,6,8204,93258 +41280,234,1,54156,188517 +41281,204,9,14869,11102 +41282,413,11,12102,852 +41283,52,10,31254,1088655 +41284,60,1,418437,1333222 +41285,234,1,24469,71082 +41286,77,10,60457,239964 +41287,317,10,376570,551463 +41288,208,2,174769,4313 +41289,413,11,315723,1568251 +41290,234,1,416290,58868 +41291,12,10,11024,13594 +41292,209,7,29056,51379 +41293,234,1,70322,89166 +41294,190,7,405473,1611071 +41295,209,7,1058,1556700 +41296,123,3,31347,1450844 +41297,3,5,48243,88204 +41298,75,5,18801,1727970 +41299,289,6,9297,1462682 +41300,273,7,41574,1315090 +41301,143,7,2204,14560 +41302,148,9,83430,1274305 +41303,3,5,12538,56324 +41304,182,8,230179,1564051 +41305,234,1,78323,583731 +41306,273,7,42267,1500631 +41307,175,5,337339,1059590 +41308,273,7,116351,30547 +41309,234,1,270650,1359976 +41310,143,7,306966,1405361 +41311,398,9,19995,14350 +41312,317,10,19551,101233 +41313,200,3,2675,1536551 +41314,203,1,157354,1535116 +41315,148,9,403,945 +41316,234,1,286512,586317 +41317,204,9,147773,1242111 +41318,373,7,24624,1423702 +41319,287,3,306966,1707022 +41320,54,10,29907,141487 +41321,75,5,10145,1046684 +41322,333,2,17771,40802 +41323,203,1,52520,1384398 +41324,53,2,3587,19310 +41325,204,9,129,19598 +41326,234,1,223946,84885 +41327,208,2,70074,1316296 +41328,3,5,47921,1498 +41329,179,2,10724,1043608 +41330,234,1,86369,933201 +41331,132,2,38322,1424894 +41332,234,1,123109,45996 +41333,387,10,28032,40345 +41334,317,10,177354,1159715 +41335,234,1,899,100036 +41336,268,7,245168,1578873 +41337,234,1,125413,8482 +41338,402,11,126889,1816348 +41339,317,10,55989,112269 +41340,317,10,73943,75881 +41341,245,3,193893,1667750 +41342,204,9,134480,32999 +41343,97,7,19995,8160 +41344,234,1,142320,229571 +41345,226,2,159211,1438449 +41346,317,10,31146,6400 +41347,360,3,15440,1336929 +41348,273,7,26864,1801309 +41349,317,10,270851,1112051 +41350,317,10,72875,84770 +41351,387,10,53574,146503 +41352,234,1,6552,50719 +41353,182,8,74126,1899321 +41354,234,1,172475,27728 +41355,387,10,341689,17114 +41356,60,1,29259,37633 +41357,317,10,121462,1419434 +41358,96,2,263115,1757623 +41359,387,10,216369,1038590 +41360,317,10,336655,1456978 +41361,269,9,38922,1000406 +41362,413,11,82191,7754 +41363,53,2,93492,24851 +41364,127,3,76600,1493726 +41365,234,1,245706,150098 +41366,87,7,308024,1445606 +41367,387,10,11358,16304 +41368,333,2,46387,1095284 +41369,415,3,31442,1580048 +41370,3,5,212756,961493 +41371,269,9,13526,6795 +41372,187,11,264525,1372633 +41373,413,11,20758,3643 +41374,325,5,76170,445256 +41375,317,10,186292,223066 +41376,12,10,337339,8162 +41377,234,1,79466,15663 +41378,3,5,3063,29983 +41379,387,10,18352,1537578 +41380,3,5,338421,1069627 +41381,286,3,103689,20715 +41382,308,3,36785,116209 +41383,234,1,100594,969806 +41384,269,9,116711,60678 +41385,226,2,28437,1461548 +41386,328,6,193893,1214379 +41387,234,1,237756,110427 +41388,5,10,74581,1029783 +41389,234,1,80125,5844 +41390,269,9,8491,15014 +41391,273,7,10671,8503 +41392,373,7,44732,108144 +41393,413,11,12289,16650 +41394,387,10,1498,175502 +41395,75,5,72545,1423001 +41396,413,11,11980,11757 +41397,204,9,2084,1638372 +41398,147,1,263115,1463293 +41399,317,10,271826,38516 +41400,234,1,324440,1481998 +41401,398,9,333667,1447587 +41402,148,9,9593,11079 +41403,234,1,73144,568322 +41404,387,10,52827,195919 +41405,381,9,15613,1442506 +41406,368,7,755,74811 +41407,413,11,280092,64335 +41408,387,10,104674,1482947 +41409,189,3,9529,1408286 +41410,413,11,16784,14189 +41411,387,10,11959,71043 +41412,413,11,263472,1714330 +41413,234,1,84425,101108 +41414,269,9,4955,40990 +41415,413,11,13483,4869 +41416,105,7,22398,68358 +41417,413,11,17911,1326551 +41418,269,9,82485,935298 +41419,387,10,49038,199534 +41420,75,5,257088,1339054 +41421,333,2,4413,1332202 +41422,97,7,10733,1116937 +41423,234,1,351862,589610 +41424,208,2,107073,1481506 +41425,232,10,62397,95456 +41426,188,8,197,1118383 +41427,52,10,33025,1167749 +41428,3,5,8358,36 +41429,234,1,2349,24074 +41430,169,3,10632,92393 +41431,413,11,347835,1485276 +41432,3,5,29475,64747 +41433,323,10,152989,82448 +41434,105,7,328111,2949 +41435,5,10,13305,38748 +41436,269,9,59678,39200 +41437,234,1,172474,1058067 +41438,327,7,31947,1405811 +41439,317,10,66894,1214641 +41440,3,5,2288,5582 +41441,53,2,20438,9887 +41442,388,9,9286,1441279 +41443,413,11,18722,6875 +41444,3,5,14869,24310 +41445,273,7,43470,3249 +41446,317,10,49230,1754 +41447,204,9,154972,1610237 +41448,75,5,9514,1642510 +41449,273,7,34838,577 +41450,105,7,14138,1316852 +41451,317,10,42542,128148 +41452,182,8,1480,1369442 +41453,210,9,9475,1800195 +41454,413,11,173205,998246 +41455,413,11,29376,120314 +41456,413,11,11979,37280 +41457,196,7,257088,14764 +41458,187,11,1125,83088 +41459,3,5,1926,20040 +41460,196,7,407448,1360100 +41461,3,5,33091,74401 +41462,234,1,199647,1179827 +41463,234,1,64191,30477 +41464,175,5,1950,1377133 +41465,64,6,2604,1604352 +41466,317,10,414749,111745 +41467,175,5,20126,1557470 +41468,317,10,50761,29288 +41469,52,10,1452,9032 +41470,108,10,43880,1157060 +41471,328,6,9946,1432021 +41472,387,10,8844,56520 +41473,160,3,255343,1512784 +41474,187,11,274479,1401631 +41475,105,7,38808,30104 +41476,234,1,21380,45577 +41477,317,10,130948,53945 +41478,317,10,130881,68424 +41479,53,2,139455,1281268 +41480,273,7,30996,1371270 +41481,234,1,74585,12329 +41482,413,11,112083,1700873 +41483,291,6,332794,1543905 +41484,303,3,2046,1455293 +41485,273,7,11204,5430 +41486,196,7,127380,1401786 +41487,357,3,19995,1418381 +41488,387,10,10897,58448 +41489,387,10,3587,7630 +41490,127,3,262841,58911 +41491,286,3,25655,92831 +41492,148,9,64720,984533 +41493,53,2,101325,1560976 +41494,226,2,1991,1420145 +41495,127,3,52661,1745146 +41496,387,10,42040,70378 +41497,203,1,10543,1384398 +41498,273,7,249021,1320530 +41499,413,11,4248,11372 +41500,3,5,262454,32293 +41501,234,1,43195,15127 +41502,234,1,360205,1511015 +41503,234,1,223391,144557 +41504,190,7,109439,1787836 +41505,97,7,343173,1742990 +41506,387,10,12289,11401 +41507,148,9,436,5886 +41508,3,5,30014,89218 +41509,387,10,11485,68936 +41510,53,2,184098,86197 +41511,234,1,343934,1475576 +41512,105,7,12104,71252 +41513,5,10,11175,68448 +41514,413,11,84944,931473 +41515,413,11,371003,1419131 +41516,12,10,308529,64681 +41517,317,10,58013,120019 +41518,317,10,83714,929944 +41519,234,1,9765,673 +41520,273,7,1116,1528 +41521,148,9,65674,1725380 +41522,234,1,113119,1056323 +41523,204,9,9977,37283 +41524,40,1,427680,1665494 +41525,412,9,13798,1565840 +41526,127,3,156335,88979 +41527,3,5,866,13000 +41528,3,5,246741,1409488 +41529,234,1,2110,21647 +41530,87,7,45013,1818059 +41531,192,5,9882,1536878 +41532,208,2,241927,1585357 +41533,234,1,42260,2725 +41534,105,7,293982,74011 +41535,387,10,84178,45407 +41536,209,7,1647,1403490 +41537,234,1,37665,198612 +41538,360,3,290764,1572613 +41539,234,1,186292,223066 +41540,277,3,266102,1606175 +41541,269,9,374475,5745 +41542,262,6,132363,1393390 +41543,234,1,38285,67972 +41544,317,10,329868,51421 +41545,148,9,53879,1383415 +41546,234,1,73642,585004 +41547,273,7,63493,19659 +41548,387,10,9102,56980 +41549,413,11,257454,135089 +41550,234,1,71672,126882 +41551,317,10,83461,142511 +41552,196,7,4982,14764 +41553,387,10,115109,97986 +41554,327,7,169760,1151866 +41555,244,3,257345,1116328 +41556,390,6,43641,89596 +41557,273,7,46992,27265 +41558,387,10,11056,54525 +41559,269,9,155597,24668 +41560,168,3,169,1106260 +41561,5,10,70736,1036792 +41562,160,3,260030,1054796 +41563,234,1,72105,52139 +41564,328,6,435,1392102 +41565,60,1,27777,144397 +41566,349,1,28032,1463245 +41567,164,3,206647,1551791 +41568,204,9,87826,32903 +41569,166,9,12102,81525 +41570,317,10,25366,93633 +41571,3,5,9519,68356 +41572,148,9,63360,1425905 +41573,234,1,51442,19032 +41574,5,10,58462,428344 +41575,53,2,65674,1770622 +41576,289,6,9297,1455600 +41577,148,9,44129,1204331 +41578,204,9,8464,1484709 +41579,3,5,17962,1081006 +41580,234,1,441881,85048 +41581,373,7,9902,1409220 +41582,373,7,329865,1570605 +41583,234,1,79435,56207 +41584,304,10,37645,63896 +41585,3,5,31586,2723 +41586,269,9,214938,1597061 +41587,234,1,49834,1133962 +41588,273,7,12171,43609 +41589,317,10,35396,936795 +41590,291,6,172,1803758 +41591,127,3,22606,980050 +41592,273,7,43850,7647 +41593,387,10,335498,52589 +41594,67,10,9946,1581175 +41595,3,5,44690,1023351 +41596,148,9,10740,20569 +41597,3,5,2611,11506 +41598,3,5,28592,32381 +41599,317,10,44626,82445 +41600,269,9,241742,1339600 +41601,52,10,128169,58469 +41602,394,7,149509,68748 +41603,317,10,344170,1476131 +41604,234,1,12513,5069 +41605,387,10,167707,937191 +41606,148,9,300155,41336 +41607,13,5,9286,1700673 +41608,67,10,15653,1767032 +41609,387,10,35656,1017060 +41610,200,3,44943,1032045 +41611,72,11,10527,1460431 +41612,209,7,12102,1274141 +41613,234,1,19715,115754 +41614,111,7,419430,1825781 +41615,415,3,2115,1534508 +41616,317,10,86603,4695 +41617,234,1,113638,32427 +41618,273,7,332079,5467 +41619,204,9,42619,12346 +41620,53,2,13667,1561104 +41621,234,1,76297,166393 +41622,360,9,9882,1406084 +41623,148,9,50780,1122387 +41624,53,2,21135,18214 +41625,21,3,809,12098 +41626,317,10,296136,43553 +41627,203,1,10657,1384398 +41628,204,9,91181,3255 +41629,413,11,53864,70982 +41630,273,7,12447,47927 +41631,317,10,84185,94816 +41632,317,10,347096,107796 +41633,81,3,118,1816134 +41634,52,10,290864,70703 +41635,204,9,354859,1459850 +41636,160,3,10999,1331195 +41637,204,9,121234,5188 +41638,76,2,225728,1462065 +41639,269,9,140,3630 +41640,187,11,45019,9444 +41641,74,5,354287,1781641 +41642,398,9,302699,1729094 +41643,317,10,13374,59971 +41644,105,7,15476,128496 +41645,60,1,63401,96627 +41646,398,9,9532,1319153 +41647,413,11,20132,35739 +41648,234,1,44801,57396 +41649,387,10,27381,931882 +41650,269,9,9457,22135 +41651,25,2,15019,1555670 +41652,239,5,201085,1572865 +41653,132,2,8619,1400741 +41654,75,5,9946,1400375 +41655,52,10,14159,35771 +41656,387,10,8886,2303 +41657,273,7,11706,3098 +41658,234,1,84626,1075781 +41659,317,10,61686,1031240 +41660,97,7,245703,1571058 +41661,387,10,28938,18161 +41662,413,11,110160,143593 +41663,179,2,46261,1321694 +41664,105,7,51275,1389946 +41665,3,5,301368,32545 +41666,3,5,109391,1204710 +41667,373,7,9457,1394924 +41668,398,9,9568,1546553 +41669,5,10,250638,1495817 +41670,317,10,341895,1171340 +41671,396,3,954,1335873 +41672,286,3,232100,1267375 +41673,60,1,42683,1544013 +41674,234,1,28561,101181 +41675,234,1,155341,1136479 +41676,234,1,42021,4415 +41677,317,10,50012,3776 +41678,387,10,75641,575926 +41679,317,10,62670,12227 +41680,413,11,139718,19104 +41681,105,7,69428,141075 +41682,262,6,44578,1424571 +41683,234,1,9816,52038 +41684,72,11,2300,936666 +41685,189,3,435,1392111 +41686,234,1,47404,10146 +41687,67,10,12103,1625931 +41688,60,1,84823,555905 +41689,413,11,42288,51378 +41690,40,1,356752,1841561 +41691,204,9,73194,8507 +41692,305,9,32049,1734662 +41693,317,10,142770,106597 +41694,234,1,93313,10001 +41695,3,5,38761,47453 +41696,113,9,190955,1372081 +41697,3,5,13312,45843 +41698,204,9,27265,21866 +41699,203,1,11003,1531867 +41700,258,9,43231,1431338 +41701,127,3,17015,152204 +41702,273,7,10041,62351 +41703,317,10,36427,122962 +41704,97,7,9358,548439 +41705,53,2,4285,36009 +41706,273,7,1914,19916 +41707,53,2,59118,38493 +41708,234,1,43368,103910 +41709,105,7,410537,1018757 +41710,179,2,9425,9493 +41711,3,5,383538,1851917 +41712,208,2,271718,1416798 +41713,317,10,244783,1280037 +41714,3,5,403570,60404 +41715,317,10,85411,1243076 +41716,77,10,17100,3027 +41717,317,10,381255,1186095 +41718,148,9,116979,61140 +41719,387,10,31598,55948 +41720,234,1,32536,109314 +41721,57,2,10733,1521104 +41722,391,9,395992,1770999 +41723,317,10,65759,104428 +41724,413,11,11610,18651 +41725,148,9,18047,12120 +41726,77,10,9423,57396 +41727,317,10,360605,63710 +41728,269,9,41714,6795 +41729,371,3,257534,1297713 +41730,234,1,13600,57193 +41731,204,9,22968,9062 +41732,105,7,233208,1340077 +41733,387,10,16232,80216 +41734,53,2,32029,7308 +41735,97,7,118,40823 +41736,413,11,34651,42065 +41737,317,10,85038,88468 +41738,234,1,11664,46981 +41739,317,10,131903,83749 +41740,148,9,33592,3181 +41741,74,5,297762,1761122 +41742,234,1,79778,587967 +41743,387,10,61988,31843 +41744,53,2,1448,6688 +41745,60,1,40688,1542944 +41746,234,1,18620,172993 +41747,234,1,348857,95024 +41748,234,1,53064,1107765 +41749,204,9,197854,80936 +41750,45,9,353686,1525146 +41751,273,7,253257,1383057 +41752,203,1,16432,1399644 +41753,166,9,315837,1797191 +41754,301,5,338518,1129890 +41755,234,1,191476,125091 +41756,387,10,9471,21159 +41757,141,7,9352,1586397 +41758,234,1,38783,29648 +41759,273,7,11895,43393 +41760,273,7,10865,1213 +41761,3,5,11259,30149 +41762,234,1,47200,567595 +41763,387,10,29372,15680 +41764,273,7,12538,57911 +41765,269,9,54287,1287459 +41766,273,7,10841,18983 +41767,328,6,329865,1501951 +41768,339,2,26882,1609047 +41769,3,5,39779,13809 +41770,387,10,82687,15892 +41771,234,1,90387,50325 +41772,53,2,202337,1404916 +41773,387,10,63190,129439 +41774,175,5,156711,1419222 +41775,373,7,99861,1327030 +41776,122,8,435,1574653 +41777,413,11,31083,1498834 +41778,60,1,67531,32437 +41779,77,10,9959,2989 +41780,3,5,27045,870 +41781,217,3,16444,119325 +41782,387,10,9820,56106 +41783,67,10,8467,1893238 +41784,226,2,6171,1426761 +41785,3,5,82990,929987 +41786,3,5,374473,71086 +41787,239,5,1877,1707413 +41788,413,11,44303,114352 +41789,226,2,266856,1465936 +41790,204,9,10066,62742 +41791,203,1,149509,1378728 +41792,333,2,31682,14498 +41793,234,1,188981,81273 +41794,360,3,97614,1384364 +41795,94,5,53949,126021 +41796,164,3,294652,1308569 +41797,13,9,378441,1797453 +41798,387,10,3484,32135 +41799,317,10,182097,1070658 +41800,72,11,274479,1608984 +41801,211,3,302699,1729091 +41802,327,7,18405,1049456 +41803,269,9,14552,36133 +41804,234,1,24775,48965 +41805,234,1,333103,57604 +41806,286,3,16371,24995 +41807,60,1,77964,1529475 +41808,286,3,123103,1049548 +41809,314,2,8869,15430 +41810,413,11,2924,6189 +41811,52,10,82767,1445206 +41812,53,2,19995,17675 +41813,141,7,181533,1634471 +41814,387,10,27549,102605 +41815,234,1,433,5834 +41816,317,10,14387,14292 +41817,273,7,25473,3375 +41818,413,11,148284,81090 +41819,143,7,4344,40470 +41820,286,3,167583,39475 +41821,258,9,9948,1447347 +41822,373,7,10476,1243381 +41823,3,5,10550,11506 +41824,317,10,29299,587509 +41825,141,7,49521,68016 +41826,203,1,13092,1410205 +41827,53,2,44693,1579834 +41828,209,7,60281,1401133 +41829,273,7,76788,223157 +41830,92,7,144792,1456434 +41831,317,10,259075,137066 +41832,413,11,128215,85964 +41833,413,11,86828,1389212 +41834,360,3,351901,1377412 +41835,209,7,18843,1460016 +41836,179,2,59726,1324923 +41837,317,10,323149,1422262 +41838,273,7,383140,1582466 +41839,270,9,11370,1581117 +41840,333,2,168259,1506368 +41841,60,1,27523,932651 +41842,161,6,329865,1646513 +41843,406,6,49524,1447542 +41844,204,9,16164,23546 +41845,189,3,2675,1674661 +41846,234,1,38317,57370 +41847,234,1,42430,71080 +41848,289,6,9042,1448601 +41849,317,10,73424,303056 +41850,234,1,3484,32134 +41851,234,1,96701,11523 +41852,387,10,82941,38459 +41853,234,1,145191,1051753 +41854,234,1,95096,103112 +41855,15,6,14128,1031973 +41856,277,3,9846,16600 +41857,5,10,131861,143280 +41858,196,7,311291,1099398 +41859,317,10,102384,103412 +41860,204,9,74924,1174632 +41861,306,7,332806,1906192 +41862,53,2,3716,5596 +41863,64,6,214756,1457941 +41864,97,7,613,1425853 +41865,413,11,16235,12015 +41866,413,11,72313,114327 +41867,234,1,339403,11090 +41868,234,1,46563,10790 +41869,387,10,24775,1726 +41870,413,11,92269,14491 +41871,317,10,110227,6928 +41872,148,9,43455,34467 +41873,234,1,30547,24657 +41874,3,5,42345,14569 +41875,72,11,283995,1700118 +41876,97,7,14,548446 +41877,148,9,2982,9587 +41878,234,1,41497,64508 +41879,53,2,63304,1632082 +41880,135,3,693,1608877 +41881,21,3,60488,153738 +41882,397,7,103938,27969 +41883,39,3,256740,1402526 +41884,317,10,35543,114368 +41885,289,6,90001,1563386 +41886,3,5,3050,31027 +41887,413,11,271714,74403 +41888,273,7,25376,45546 +41889,234,1,383618,1579995 +41890,317,10,97683,1039522 +41891,269,9,244580,1186191 +41892,226,2,107811,1460816 +41893,234,1,21955,52629 +41894,53,2,10336,33284 +41895,53,2,805,12020 +41896,273,7,10145,1729 +41897,208,2,62978,1589495 +41898,203,1,19116,1428851 +41899,387,10,337014,1048220 +41900,3,5,32921,8714 +41901,60,1,10364,72559 +41902,273,7,336199,1595083 +41903,262,6,11377,1335884 +41904,413,11,28592,15132 +41905,143,7,10804,11385 +41906,234,1,459,6241 +41907,234,1,87229,4475 +41908,234,1,33916,441778 +41909,196,7,3597,58363 +41910,262,6,1381,1447149 +41911,148,9,32595,62742 +41912,3,5,84284,1625802 +41913,286,3,3059,117644 +41914,273,7,139826,4500 +41915,250,11,390747,1616473 +41916,3,5,14242,31654 +41917,105,7,425774,1708055 +41918,331,3,11370,1581135 +41919,105,7,238589,1130319 +41920,387,10,212756,113290 +41921,262,6,302026,1570601 +41922,204,9,12513,72588 +41923,204,9,445993,1808030 +41924,234,1,43141,149091 +41925,175,5,95516,1411133 +41926,344,9,44943,1403395 +41927,198,6,1966,1733794 +41928,52,10,55604,50302 +41929,45,9,2567,1394739 +41930,190,7,6557,1458530 +41931,414,9,857,1905116 +41932,3,5,36883,1540174 +41933,387,10,21708,87788 +41934,268,7,263115,1757635 +41935,413,11,335509,989147 +41936,270,9,11547,1206191 +41937,273,7,4930,19607 +41938,289,6,80928,11427 +41939,158,2,280092,1451997 +41940,148,9,8247,7535 +41941,77,10,10265,64493 +41942,52,10,99934,135362 +41943,244,3,66193,1647402 +41944,273,7,25862,30268 +41945,3,5,109074,1606819 +41946,226,2,311324,1342649 +41947,234,1,19238,568258 +41948,387,10,76229,8501 +41949,270,9,109439,1552934 +41950,413,11,12506,11072 +41951,113,9,293167,484529 +41952,196,7,7220,1412702 +41953,234,1,127560,97942 +41954,387,10,383064,125968 +41955,413,11,18414,940592 +41956,413,11,921,6189 +41957,317,10,398891,1639074 +41958,204,9,118,71577 +41959,317,10,319924,1515074 +41960,53,2,289225,1763755 +41961,360,9,230179,1881547 +41962,413,11,367006,1532481 +41963,413,11,310593,1034125 +41964,333,2,25385,14498 +41965,317,10,110323,1049252 +41966,234,1,257534,1086269 +41967,234,1,12707,20412 +41968,160,3,9286,1007395 +41969,234,1,45649,133398 +41970,287,3,12128,38535 +41971,387,10,9438,58288 +41972,234,1,29923,105251 +41973,234,1,21959,185 +41974,198,6,206647,1551899 +41975,148,9,325173,1601638 +41976,333,2,20242,1476031 +41977,317,10,8915,5144 +41978,3,5,194509,12279 +41979,182,8,238589,1433002 +41980,413,11,31618,23348 +41981,21,3,41073,1630805 +41982,415,3,14510,99033 +41983,387,10,39979,179891 +41984,34,8,333371,1410111 +41985,155,3,19719,85134 +41986,234,1,24936,101444 +41987,317,10,273167,1225273 +41988,77,10,13562,10792 +41989,5,10,116385,125816 +41990,387,10,1678,18606 +41991,3,5,18633,11099 +41992,64,6,196359,1404192 +41993,286,3,112722,1118963 +41994,33,10,19765,1602148 +41995,273,7,193756,18264 +41996,203,1,286873,1425882 +41997,373,7,10950,1342242 +41998,288,3,39907,1649580 +41999,234,1,11496,56033 +42000,53,2,9030,41324 +42001,234,1,1926,20028 +42002,273,7,41591,55694 +42003,158,2,168259,1413125 +42004,317,10,26899,42952 +42005,234,1,391757,64856 +42006,75,5,302036,1417179 +42007,317,10,41496,126709 +42008,333,2,170279,1665954 +42009,234,1,14430,76864 +42010,176,3,60599,1400488 +42011,373,7,343173,1399587 +42012,234,1,110392,1049372 +42013,317,10,210047,593079 +42014,360,9,383538,1783006 +42015,207,3,11370,1404241 +42016,387,10,41234,64117 +42017,413,11,261508,1155193 +42018,234,1,9803,59338 +42019,409,7,12103,1741194 +42020,317,10,105768,119153 +42021,3,5,229638,34342 +42022,387,10,17590,6928 +42023,188,8,9716,1406844 +42024,143,7,47386,1392232 +42025,413,11,147106,4309 +42026,333,2,373546,1717770 +42027,413,11,118257,1818795 +42028,53,2,5279,17166 +42029,234,1,8467,7395 +42030,234,1,371153,239256 +42031,3,5,868,13084 +42032,269,9,285860,1382491 +42033,160,3,10916,1402117 +42034,413,11,11656,8735 +42035,413,11,10145,6581 +42036,333,2,176143,4352 +42037,234,1,312174,1383169 +42038,53,2,43783,8509 +42039,234,1,95504,16042 +42040,28,9,12103,1415122 +42041,413,11,83732,930015 +42042,52,10,23730,90526 +42043,387,10,19846,1188238 +42044,396,3,140607,1550768 +42045,234,1,147939,1126812 +42046,269,9,11397,81893 +42047,148,9,205584,1191326 +42048,387,10,3784,33829 +42049,331,3,3597,1790552 +42050,234,1,194101,229604 +42051,234,1,33250,13 +42052,317,10,638,5602 +42053,105,7,83461,1682199 +42054,234,1,30265,39819 +42055,204,9,6636,50926 +42056,387,10,69315,1220834 +42057,273,7,193893,567205 +42058,234,1,18206,103031 +42059,398,9,27265,1341850 +42060,328,6,1579,1400343 +42061,286,3,352694,1539820 +42062,317,10,8325,1422994 +42063,327,7,376501,1792358 +42064,301,5,394645,1545374 +42065,147,1,10727,1758840 +42066,198,6,332567,1644256 +42067,234,1,42703,51875 +42068,328,6,7916,1403472 +42069,413,11,246355,2127 +42070,413,11,367147,1182669 +42071,3,5,210615,1656601 +42072,143,7,18,1440822 +42073,5,10,248933,1366431 +42074,314,2,156981,1558997 +42075,273,7,38654,70667 +42076,326,3,2662,27742 +42077,291,6,398289,1574855 +42078,234,1,56853,225109 +42079,148,9,228066,1574035 +42080,269,9,21338,12869 +42081,53,2,245700,36591 +42082,234,1,48180,52135 +42083,105,7,5511,24775 +42084,234,1,27079,96902 +42085,413,11,318973,1630371 +42086,317,10,16921,76453 +42087,327,7,9514,1642501 +42088,234,1,124071,949244 +42089,234,1,215928,1200534 +42090,317,10,445727,1772093 +42091,3,5,11655,3113 +42092,273,7,275696,1202676 +42093,229,6,118,1399561 +42094,5,10,31408,1764097 +42095,387,10,11333,49450 +42096,317,10,30298,21008 +42097,387,10,267815,1315970 +42098,387,10,62720,95963 +42099,141,7,9836,65644 +42100,277,3,73835,1606289 +42101,317,10,21576,74086 +42102,53,2,3072,30095 +42103,317,10,18472,1503679 +42104,262,6,19995,957874 +42105,413,11,113520,1305281 +42106,317,10,99361,46644 +42107,413,11,42094,10007 +42108,148,9,56435,553803 +42109,3,5,11449,19102 +42110,53,2,33472,1433182 +42111,208,2,23823,1327184 +42112,204,9,31472,29669 +42113,210,9,9882,1347759 +42114,166,9,283995,1378162 +42115,124,3,283995,1815823 +42116,317,10,32227,109044 +42117,317,10,64483,1096377 +42118,105,7,52556,144180 +42119,394,7,16096,1441250 +42120,234,1,11172,18323 +42121,413,11,10275,64688 +42122,204,9,36786,3255 +42123,92,7,149465,1900647 +42124,304,10,20132,85707 +42125,234,1,128169,562940 +42126,234,1,49974,257772 +42127,317,10,419459,1394657 +42128,5,10,52358,145840 +42129,234,1,23566,80948 +42130,3,5,128081,1094113 +42131,317,10,155128,101142 +42132,317,10,46420,136345 +42133,365,6,22582,1447573 +42134,387,10,285869,1351027 +42135,234,1,156335,99463 +42136,181,7,78177,583264 +42137,127,3,2503,122260 +42138,269,9,286873,19691 +42139,328,6,222935,1539311 +42140,105,7,98368,1580065 +42141,395,3,14411,1450331 +42142,187,11,376501,1302523 +42143,52,10,31597,98217 +42144,413,11,9667,57087 +42145,333,2,44945,1410182 +42146,234,1,10972,37948 +42147,373,7,106747,1401133 +42148,413,11,82485,60521 +42149,273,7,28273,25800 +42150,5,10,103751,125623 +42151,226,2,36245,9758 +42152,413,11,215881,11100 +42153,413,11,76600,2710 +42154,87,7,4806,1530166 +42155,387,10,598,8560 +42156,3,5,11848,70714 +42157,273,7,11496,69603 +42158,387,10,11502,43553 +42159,317,10,33542,46318 +42160,333,2,329865,1363840 +42161,3,5,47112,3115 +42162,45,9,10733,1397807 +42163,45,9,243940,1525146 +42164,52,10,126889,1155661 +42165,289,6,72105,1452989 +42166,394,7,228970,1367494 +42167,317,10,18442,58912 +42168,328,6,69668,1425982 +42169,234,1,37454,70854 +42170,317,10,51476,112349 +42171,132,2,383538,1783016 +42172,192,5,209112,1399068 +42173,105,7,77875,20648 +42174,413,11,7304,800 +42175,204,9,188927,1192526 +42176,273,7,7237,52149 +42177,15,6,251,1453291 +42178,105,7,286512,24870 +42179,269,9,38749,9199 +42180,398,9,69668,63534 +42181,75,5,5924,1497382 +42182,301,5,169,21118 +42183,166,9,11975,1403083 +42184,37,3,42941,128980 +42185,387,10,2428,18738 +42186,204,9,4809,3358 +42187,177,6,9593,1877149 +42188,413,11,11576,21012 +42189,413,11,176670,29812 +42190,234,1,32623,44763 +42191,317,10,13516,17087 +42192,204,9,27230,1409449 +42193,226,2,77930,582811 +42194,398,9,228970,1867525 +42195,289,6,2300,1840816 +42196,387,10,20758,26160 +42197,200,3,189,1401137 +42198,234,1,101752,1028521 +42199,413,11,412363,228376 +42200,413,11,75564,549026 +42201,413,11,301334,967482 +42202,413,11,1443,17233 +42203,234,1,83284,835262 +42204,234,1,24615,34927 +42205,333,2,315664,1409292 +42206,413,11,318781,5195 +42207,373,7,354979,1539990 +42208,357,3,274857,1829974 +42209,64,6,365222,1590386 +42210,419,10,62394,1209468 +42211,196,7,9042,9430 +42212,3,5,29376,127779 +42213,317,10,86472,39162 +42214,387,10,2197,22812 +42215,269,9,68184,130832 +42216,289,6,14683,1100798 +42217,3,5,84735,104876 +42218,387,10,121848,95944 +42219,317,10,63706,1375378 +42220,387,10,43821,30285 +42221,306,7,11832,1545306 +42222,234,1,119738,61175 +42223,317,10,13333,57727 +42224,123,3,20986,109196 +42225,269,9,140814,1113457 +42226,286,3,304613,1387078 +42227,373,7,315837,1338976 +42228,373,7,1125,1391571 +42229,35,10,9514,57800 +42230,373,7,333352,1387195 +42231,127,3,41211,1670735 +42232,377,3,263115,1821898 +42233,234,1,137504,125690 +42234,203,1,17332,1355532 +42235,226,2,294254,1571511 +42236,415,3,29058,98449 +42237,234,1,284189,1331052 +42238,234,1,109614,4724 +42239,234,1,140418,1059261 +42240,3,5,28561,10150 +42241,234,1,89086,233136 +42242,303,3,246655,20406 +42243,5,10,94803,1565962 +42244,411,9,32657,223991 +42245,387,10,21451,67428 +42246,148,9,78802,28163 +42247,413,11,60759,43796 +42248,105,7,132939,19475 +42249,317,10,278334,166750 +42250,269,9,31417,14236 +42251,203,1,20242,1833859 +42252,317,10,27317,10872 +42253,189,3,9426,1445988 +42254,52,10,56601,1291345 +42255,273,7,9028,1259 +42256,413,11,9795,64168 +42257,269,9,1838,19351 +42258,234,1,290911,22677 +42259,127,3,949,1576562 +42260,75,5,246655,1420574 +42261,174,6,122,1401803 +42262,234,1,405473,1647425 +42263,234,1,15199,87926 +42264,317,10,128644,136194 +42265,204,9,949,15843 +42266,234,1,3780,5026 +42267,317,10,13355,141709 +42268,387,10,393559,68813 +42269,333,2,3035,29813 +42270,105,7,270303,1483629 +42271,373,7,10020,74975 +42272,387,10,140276,92909 +42273,412,9,194,1551960 +42274,333,2,14400,928948 +42275,148,9,42476,1266796 +42276,397,7,4111,27969 +42277,333,2,186869,1835570 +42278,3,5,334557,1357 +42279,105,7,79550,1010915 +42280,234,1,418437,1899 +42281,317,10,384682,226089 +42282,60,1,379,119665 +42283,72,11,22279,1725253 +42284,413,11,47212,39108 +42285,45,9,168259,1506360 +42286,204,9,111470,9062 +42287,148,9,188102,1375601 +42288,192,5,260030,1453127 +42289,277,3,157847,1347740 +42290,286,3,100270,98398 +42291,269,9,84577,1327219 +42292,277,3,142966,1294571 +42293,175,5,2666,1392718 +42294,387,10,9555,57955 +42295,158,2,294254,1571486 +42296,262,6,395883,1382251 +42297,234,1,173577,1188970 +42298,328,6,26656,1454513 +42299,92,7,124994,1080824 +42300,387,10,21752,123765 +42301,234,1,137182,239672 +42302,180,7,26880,1104949 +42303,75,5,11517,1411272 +42304,87,7,1125,1559224 +42305,387,10,10946,67592 +42306,360,3,9785,1401395 +42307,5,10,26204,16889 +42308,105,7,23830,6377 +42309,301,5,279690,1630971 +42310,291,6,257345,1318915 +42311,12,10,59297,1524301 +42312,234,1,4921,40016 +42313,20,2,12499,18125 +42314,182,8,755,1897890 +42315,317,10,244403,1279652 +42316,3,5,16092,69413 +42317,317,10,15907,56909 +42318,3,5,41171,8523 +42319,403,10,13934,7879 +42320,234,1,43022,12327 +42321,204,9,46094,33612 +42322,45,9,5,1556697 +42323,105,7,10047,996 +42324,317,10,63568,1080387 +42325,346,3,76203,1409837 +42326,64,6,11697,1027339 +42327,198,6,311324,1658879 +42328,113,9,9529,22120 +42329,234,1,61950,17784 +42330,148,9,201,796 +42331,204,9,336882,1143762 +42332,3,5,54388,30946 +42333,3,5,9585,57699 +42334,287,3,10326,42030 +42335,234,1,9404,44916 +42336,3,5,29048,10639 +42337,234,1,57327,76904 +42338,180,7,155605,550945 +42339,97,7,222935,1357060 +42340,234,1,23898,1199016 +42341,234,1,71689,1447210 +42342,317,10,124054,558864 +42343,387,10,7233,7397 +42344,317,10,126841,93386 +42345,234,1,16612,110347 +42346,287,3,9905,1373619 +42347,108,10,10626,2900 +42348,325,5,263115,432 +42349,52,10,280617,229164 +42350,204,9,9314,1529777 +42351,40,1,68387,1175345 +42352,148,9,9540,10836 +42353,53,2,22267,11714 +42354,234,1,63762,87755 +42355,148,9,30624,8508 +42356,234,1,65256,1215136 +42357,415,3,279096,1194629 +42358,333,2,274479,1415080 +42359,97,7,189,9439 +42360,317,10,314283,31155 +42361,273,7,334651,1265580 +42362,387,10,17057,81186 +42363,387,10,4893,29663 +42364,53,2,13549,5493 +42365,317,10,9352,57406 +42366,314,2,188826,1339210 +42367,234,1,32628,13953 +42368,3,5,70500,1310263 +42369,273,7,10330,24190 +42370,286,3,94352,84804 +42371,190,7,33364,1584309 +42372,50,3,10066,1864794 +42373,52,10,43390,343201 +42374,53,2,137504,1530397 +42375,198,6,334074,1640705 +42376,317,10,155426,1519411 +42377,203,1,41283,1339467 +42378,273,7,36334,30922 +42379,234,1,2907,5174 +42380,328,6,7299,1023364 +42381,234,1,2179,22301 +42382,381,9,4147,33625 +42383,3,5,337751,1098051 +42384,87,7,10803,75251 +42385,52,10,149793,1023523 +42386,204,9,35852,1018371 +42387,317,10,336666,1457010 +42388,234,1,44510,5602 +42389,209,7,11024,1263769 +42390,317,10,30305,146514 +42391,387,10,12783,73460 +42392,5,10,6933,51447 +42393,269,9,26688,1319383 +42394,289,6,10539,1452934 +42395,232,10,184795,1855272 +42396,204,9,218508,1050807 +42397,387,10,30584,106565 +42398,262,6,1579,42029 +42399,180,7,35001,121284 +42400,239,5,2675,67596 +42401,262,6,311324,1520683 +42402,413,11,9629,18554 +42403,148,9,378607,1566583 +42404,143,7,6079,47830 +42405,333,2,407448,1789304 +42406,317,10,338312,125684 +42407,234,1,119409,585035 +42408,273,7,781,1071 +42409,204,9,37926,1772856 +42410,301,5,95516,1406731 +42411,349,1,15653,1767040 +42412,15,6,87827,1642697 +42413,387,10,363757,1525567 +42414,234,1,97024,10790 +42415,204,9,39407,16753 +42416,53,2,121848,4127 +42417,303,3,41283,57158 +42418,5,10,12449,1014778 +42419,360,9,343173,1742973 +42420,340,2,37534,1207434 +42421,232,10,118245,128357 +42422,234,1,107596,1647161 +42423,273,7,37628,102274 +42424,60,1,11618,1585016 +42425,53,2,86472,1743905 +42426,190,7,354859,1485144 +42427,217,3,44896,1463568 +42428,12,10,40662,3794 +42429,413,11,81225,584713 +42430,200,3,227306,1414185 +42431,52,10,91477,146950 +42432,273,7,151431,97450 +42433,273,7,11011,37 +42434,204,9,154,1799 +42435,273,7,94725,1341802 +42436,160,3,265208,146143 +42437,3,5,6068,1044 +42438,204,9,43117,5188 +42439,415,3,9514,67547 +42440,208,2,11517,1405321 +42441,234,1,8070,1650 +42442,75,5,11045,1399467 +42443,317,10,122271,65452 +42444,179,2,196359,1461181 +42445,180,7,84823,1179785 +42446,182,8,296523,1490951 +42447,286,3,220287,1513394 +42448,273,7,2675,1213 +42449,3,5,285181,63746 +42450,317,10,76411,170940 +42451,234,1,6948,51534 +42452,273,7,102632,227204 +42453,269,9,3115,30467 +42454,60,1,52362,1337171 +42455,289,6,257344,1473420 +42456,289,6,22752,222578 +42457,387,10,24632,92101 +42458,289,6,149870,1456609 +42459,234,1,41038,1006929 +42460,273,7,47886,42054 +42461,234,1,50531,120018 +42462,387,10,7288,52314 +42463,273,7,77010,104250 +42464,87,7,103332,1733119 +42465,204,9,14411,175229 +42466,25,2,336882,1416974 +42467,289,6,72105,1455541 +42468,387,10,8906,4617 +42469,209,7,19101,1565159 +42470,179,2,505,1534938 +42471,413,11,197,2484 +42472,387,10,51284,71871 +42473,317,10,84283,1144604 +42474,291,6,11045,74980 +42475,317,10,341201,1473598 +42476,3,5,10916,67460 +42477,198,6,257088,1524231 +42478,148,9,109491,1316704 +42479,317,10,63144,550669 +42480,234,1,9639,58260 +42481,207,3,3172,122607 +42482,373,7,339342,1565107 +42483,403,10,30298,130754 +42484,111,7,375012,1733931 +42485,234,1,174720,557235 +42486,179,2,369885,1459935 +42487,317,10,52039,145207 +42488,413,11,403570,3050 +42489,148,9,51209,1567882 +42490,234,1,31561,101373 +42491,3,5,10841,51914 +42492,292,3,47653,1195066 +42493,187,11,318781,1404861 +42494,287,3,30666,14192 +42495,234,1,24149,983770 +42496,21,3,246299,88873 +42497,273,7,10803,1760 +42498,333,2,1717,86594 +42499,317,10,35543,114367 +42500,3,5,17971,58007 +42501,262,6,51209,24527 +42502,234,1,24916,63571 +42503,273,7,61151,2916 +42504,291,6,169,26988 +42505,273,7,10744,4140 +42506,317,10,98582,6522 +42507,317,10,21431,223010 +42508,132,2,7551,1400741 +42509,62,3,11247,1459790 +42510,234,1,158382,1063377 +42511,317,10,385372,1585209 +42512,317,10,40041,97355 +42513,262,6,354859,1724210 +42514,105,7,44208,2916 +42515,20,2,9914,1540844 +42516,234,1,96411,1009351 +42517,53,2,413998,59683 +42518,234,1,254193,105574 +42519,317,10,40146,112483 +42520,204,9,18392,60385 +42521,154,3,2323,1648134 +42522,273,7,34944,2916 +42523,175,5,55420,1400105 +42524,179,2,69668,1877723 +42525,143,7,318922,1338972 +42526,317,10,293861,1385531 +42527,234,1,46915,1126234 +42528,158,2,9457,1421749 +42529,234,1,226701,64278 +42530,317,10,244182,222152 +42531,273,7,14904,1484517 +42532,3,5,34796,137885 +42533,234,1,26808,96305 +42534,234,1,8965,56852 +42535,15,6,435,1418481 +42536,5,10,142145,1116418 +42537,289,6,69103,138173 +42538,91,3,293167,1759735 +42539,3,5,2731,27716 +42540,204,9,36243,550585 +42541,3,5,21849,1798 +42542,5,10,10857,67269 +42543,317,10,365709,1185975 +42544,333,2,70981,1537724 +42545,187,11,522,16548 +42546,305,9,378441,1797480 +42547,5,10,142946,21672 +42548,226,2,189,217470 +42549,53,2,109424,40471 +42550,234,1,21525,1110343 +42551,234,1,44690,107065 +42552,3,5,59115,37004 +42553,60,1,43316,1561044 +42554,75,5,16436,1578387 +42555,398,9,9946,1391566 +42556,317,10,85699,5636 +42557,234,1,393367,1153023 +42558,356,2,283995,1345613 +42559,198,6,58060,1630069 +42560,328,6,274479,1496420 +42561,213,10,67499,934912 +42562,234,1,102444,100296 +42563,409,7,10204,1855084 +42564,3,5,87612,8714 +42565,148,9,142391,1322105 +42566,75,5,11788,1430080 +42567,204,9,158739,1208826 +42568,269,9,33586,7439 +42569,413,11,275060,47776 +42570,387,10,37645,144845 +42571,234,1,164013,931898 +42572,413,11,82817,3564 +42573,236,8,9529,1408285 +42574,160,3,300601,1544497 +42575,158,2,168259,1506365 +42576,52,10,244801,1057496 +42577,209,7,314065,1406905 +42578,3,5,39415,21799 +42579,387,10,361146,1171897 +42580,31,9,1966,1591553 +42581,60,1,129553,13862 +42582,60,1,3716,1177097 +42583,273,7,105077,59811 +42584,67,10,77950,1453536 +42585,273,7,12650,1628315 +42586,3,5,133788,1098028 +42587,160,3,11472,61838 +42588,53,2,99861,13009 +42589,373,7,9428,1561482 +42590,52,10,127585,957 +42591,413,11,339312,1464984 +42592,105,7,47342,72635 +42593,273,7,10008,61934 +42594,387,10,29260,2089 +42595,75,5,11812,1017789 +42596,269,9,1382,53900 +42597,360,3,10326,1413090 +42598,141,7,72984,1764617 +42599,289,6,12593,1458336 +42600,387,10,37084,9791 +42601,204,9,9716,10576 +42602,387,10,74674,56195 +42603,3,5,69060,455064 +42604,234,1,22259,474866 +42605,3,5,345915,1043831 +42606,291,6,8870,1724280 +42607,52,10,126323,229180 +42608,196,7,194,1399994 +42609,373,7,3682,138618 +42610,3,5,985,4434 +42611,387,10,32600,10519 +42612,262,6,240832,1363861 +42613,413,11,37686,15349 +42614,413,11,13550,1381170 +42615,387,10,28273,95501 +42616,413,11,82178,41144 +42617,273,7,55347,161074 +42618,53,2,936,9755 +42619,273,7,445,6026 +42620,234,1,131966,49063 +42621,192,5,13616,1189807 +42622,328,6,173153,1432038 +42623,175,5,15472,1455310 +42624,234,1,8985,28889 +42625,196,7,2662,9419 +42626,317,10,158739,1075786 +42627,387,10,128396,1087016 +42628,164,3,109424,1532606 +42629,3,5,44801,1153 +42630,317,10,86727,24492 +42631,387,10,162282,15602 +42632,52,10,40466,16830 +42633,234,1,39992,29433 +42634,77,10,10055,62578 +42635,317,10,11600,1150 +42636,203,1,1991,1406137 +42637,317,10,172474,1058067 +42638,204,9,242090,1069845 +42639,52,10,15873,127535 +42640,203,1,2998,1204798 +42641,148,9,58076,1309322 +42642,234,1,116437,1107751 +42643,234,1,56078,107639 +42644,394,7,17654,1424606 +42645,179,2,339527,1321000 +42646,158,2,109439,1357067 +42647,328,6,302026,1403407 +42648,273,7,283711,1748983 +42649,234,1,45489,554492 +42650,269,9,43817,34512 +42651,413,11,53230,72067 +42652,317,10,15982,2103 +42653,234,1,60083,82307 +42654,387,10,336199,54296 +42655,273,7,27230,1409445 +42656,234,1,88557,65429 +42657,333,2,48836,1304298 +42658,5,10,12412,72135 +42659,175,5,10491,1393448 +42660,317,10,203072,229484 +42661,234,1,135313,1102118 +42662,103,6,293167,1377223 +42663,3,5,354287,120 +42664,204,9,51284,1804032 +42665,226,2,206647,1551798 +42666,234,1,342052,1471142 +42667,234,1,55403,108847 +42668,287,3,180305,1289047 +42669,234,1,15379,64195 +42670,413,11,71120,158325 +42671,203,1,5638,81546 +42672,187,11,419430,1340099 +42673,75,5,7551,963861 +42674,269,9,5332,43625 +42675,320,3,50086,1651010 +42676,262,6,6171,11300 +42677,234,1,218508,133518 +42678,220,7,375199,35786 +42679,5,10,37628,177677 +42680,113,9,10724,1442562 +42681,415,3,815,15882 +42682,262,6,9423,1389591 +42683,413,11,293970,71270 +42684,234,1,191476,1444771 +42685,360,9,755,1401122 +42686,52,10,33146,110193 +42687,234,1,753,11147 +42688,413,11,380058,1304983 +42689,148,9,210092,1193689 +42690,234,1,42892,55916 +42691,234,1,91691,83263 +42692,176,3,9593,1586929 +42693,333,2,65904,1602118 +42694,387,10,11879,54839 +42695,244,3,3597,9776 +42696,413,11,377151,16335 +42697,413,11,339526,1302737 +42698,413,11,12103,2241 +42699,317,10,7219,53193 +42700,234,1,47144,1009298 +42701,262,6,20648,1537108 +42702,11,6,18143,74091 +42703,234,1,52183,70579 +42704,196,7,332567,1451992 +42705,387,10,27635,51307 +42706,387,10,12684,3599 +42707,262,6,6163,1335049 +42708,210,9,27259,1624415 +42709,200,3,954,1401105 +42710,387,10,21380,95661 +42711,3,5,115782,8523 +42712,317,10,32021,12415 +42713,387,10,140,309 +42714,286,3,88271,1115038 +42715,234,1,76312,72913 +42716,209,7,418437,1532407 +42717,234,1,332979,24294 +42718,24,5,2675,1549420 +42719,124,3,109439,1380087 +42720,234,1,384737,1436974 +42721,234,1,246417,555501 +42722,187,11,285270,1367925 +42723,204,9,39001,1468127 +42724,234,1,403605,235432 +42725,273,7,41505,21962 +42726,317,10,114333,96369 +42727,317,10,249703,1398612 +42728,234,1,326255,1094821 +42729,244,3,270851,1097224 +42730,53,2,56906,17854 +42731,387,10,211561,95040 +42732,3,5,67367,4279 +42733,52,10,62761,2690 +42734,387,10,157351,564082 +42735,269,9,5915,12131 +42736,413,11,137321,1635 +42737,72,11,18,20296 +42738,273,7,17295,1259 +42739,317,10,48145,6648 +42740,160,3,19995,956198 +42741,387,10,369406,1184953 +42742,273,7,9427,851 +42743,203,1,71825,1265391 +42744,269,9,21765,1226098 +42745,3,5,115109,14648 +42746,387,10,225728,967276 +42747,291,6,693,14767 +42748,234,1,448763,1312989 +42749,234,1,44208,2428 +42750,226,2,369885,1429628 +42751,273,7,9260,5666 +42752,387,10,80771,150628 +42753,327,7,11547,1403188 +42754,3,5,16806,19129 +42755,289,6,73690,149095 +42756,187,11,168676,1400071 +42757,269,9,216046,1684924 +42758,3,5,961,14410 +42759,60,1,1579,589402 +42760,317,10,222297,78419 +42761,234,1,1986,20430 +42762,286,3,10724,792 +42763,387,10,4529,106770 +42764,387,10,119374,938032 +42765,234,1,30675,90367 +42766,317,10,339547,507842 +42767,413,11,17687,128356 +42768,208,2,40807,1441272 +42769,413,11,2897,983050 +42770,53,2,1902,19846 +42771,189,3,10204,1417842 +42772,286,3,97035,21799 +42773,273,7,102,1028 +42774,160,3,214756,1434599 +42775,53,2,183827,32442 +42776,127,3,308,4438 +42777,97,7,378236,1274309 +42778,413,11,14145,1038995 +42779,175,5,2503,1392718 +42780,204,9,35651,1590600 +42781,269,9,2637,10365 +42782,387,10,198176,587082 +42783,52,10,65891,67054 +42784,234,1,93676,80586 +42785,317,10,33534,146922 +42786,239,5,297762,1550794 +42787,234,1,5767,13284 +42788,387,10,13496,19535 +42789,395,3,10198,1461395 +42790,234,1,32764,6011 +42791,187,11,11377,91093 +42792,234,1,84727,55948 +42793,75,5,655,67044 +42794,413,11,11943,37880 +42795,234,1,62764,56512 +42796,204,9,19995,7236 +42797,234,1,216153,83467 +42798,234,1,34588,8568 +42799,387,10,16176,5838 +42800,286,3,43009,1379601 +42801,234,1,76115,66731 +42802,387,10,58611,67972 +42803,387,10,38107,88648 +42804,317,10,336804,1128442 +42805,413,11,64454,1429884 +42806,328,6,435,1392104 +42807,413,11,24556,90868 +42808,317,10,98644,1023726 +42809,317,10,201361,108929 +42810,53,2,43850,33176 +42811,52,10,274479,174514 +42812,40,1,69668,1016148 +42813,234,1,2453,18254 +42814,301,5,613,1380001 +42815,373,7,12783,1392211 +42816,3,5,146,1633 +42817,203,1,693,1377239 +42818,269,9,85350,1355718 +42819,234,1,17609,42 +42820,234,1,63215,130030 +42821,273,7,25941,139904 +42822,234,1,18208,21549 +42823,413,11,262357,133426 +42824,53,2,137182,1106969 +42825,328,6,70667,1448319 +42826,413,11,26422,30309 +42827,187,11,16374,1470214 +42828,180,7,39415,5439 +42829,53,2,54236,16877 +42830,317,10,103396,32517 +42831,155,3,8915,1399508 +42832,148,9,26149,18173 +42833,269,9,320588,1186280 +42834,293,2,49009,1539308 +42835,234,1,42542,128148 +42836,314,2,334,1428582 +42837,190,7,31947,1896605 +42838,127,3,52661,91833 +42839,52,10,242382,103382 +42840,3,5,212996,65994 +42841,413,11,241927,1530614 +42842,234,1,331313,54733 +42843,234,1,436339,588808 +42844,373,7,11812,1391572 +42845,123,3,36212,18604 +42846,333,2,87514,1854741 +42847,340,2,343173,1742978 +42848,317,10,17825,146604 +42849,209,7,12,7538 +42850,3,5,5413,43149 +42851,394,7,18890,1815292 +42852,104,7,163,1555488 +42853,413,11,284289,225904 +42854,234,1,61716,98669 +42855,317,10,21036,608 +42856,234,1,54659,150975 +42857,143,7,17577,1403008 +42858,3,5,18912,83865 +42859,3,5,227717,70 +42860,413,11,300669,21055 +42861,204,9,33729,5188 +42862,72,11,333663,1418338 +42863,105,7,197335,59366 +42864,175,5,284564,1382922 +42865,273,7,11231,10494 +42866,234,1,199887,18320 +42867,72,11,5,64315 +42868,234,1,32338,109124 +42869,46,5,8470,1840074 +42870,143,7,6972,577468 +42871,53,2,50463,36582 +42872,287,3,15762,107372 +42873,204,9,11415,1342617 +42874,352,3,11377,1602871 +42875,105,7,8088,405 +42876,387,10,67216,170927 +42877,234,1,123334,3895 +42878,234,1,259645,1062920 +42879,269,9,27573,3429 +42880,3,5,329440,936978 +42881,105,7,148265,225318 +42882,323,10,387999,499717 +42883,333,2,2309,23426 +42884,105,7,108726,1304544 +42885,209,7,408616,1376647 +42886,270,9,2666,1392676 +42887,413,11,6980,51758 +42888,333,2,9716,10443 +42889,105,7,70712,559406 +42890,269,9,128900,1158265 +42891,234,1,1253,2239 +42892,204,9,68737,11818 +42893,387,10,14134,37239 +42894,269,9,28665,54776 +42895,105,7,150049,1295594 +42896,355,11,210653,1617783 +42897,175,5,356752,1841570 +42898,269,9,296225,1905416 +42899,143,7,294254,1367494 +42900,3,5,102382,15348 +42901,105,7,966,1597878 +42902,333,2,3682,1457044 +42903,333,2,332662,1570537 +42904,3,5,53472,16674 +42905,53,2,85494,417597 +42906,302,9,9882,1393787 +42907,234,1,146596,95040 +42908,234,1,8985,4645 +42909,324,3,17566,1144162 +42910,245,3,62071,1371781 +42911,204,9,43525,14448 +42912,198,6,10929,1399633 +42913,234,1,10013,1776 +42914,175,5,50725,1183391 +42915,53,2,27966,4127 +42916,3,5,236324,1018705 +42917,105,7,290365,1753725 +42918,387,10,42215,30700 +42919,75,5,250066,1423844 +42920,280,2,10900,67701 +42921,387,10,22584,13971 +42922,413,11,156917,1907330 +42923,7,3,755,1897884 +42924,5,10,64129,1382729 +42925,317,10,74585,572190 +42926,234,1,693,6737 +42927,3,5,291558,106106 +42928,317,10,20934,98839 +42929,273,7,25807,4082 +42930,317,10,24767,5181 +42931,273,7,77057,425396 +42932,234,1,16137,79543 +42933,413,11,74714,21169 +42934,413,11,74585,4418 +42935,204,9,76341,1518764 +42936,317,10,230179,145228 +42937,5,10,57775,1277276 +42938,3,5,11907,24635 +42939,196,7,14411,373 +42940,386,5,354859,1461178 +42941,77,10,9918,60497 +42942,373,7,278632,1542742 +42943,317,10,43902,559101 +42944,289,6,291270,1453514 +42945,5,10,101231,1091590 +42946,273,7,230179,228403 +42947,3,5,184341,72812 +42948,75,5,1271,92237 +42949,234,1,65898,121585 +42950,105,7,51406,1065698 +42951,105,7,27003,958941 +42952,302,9,14430,1520396 +42953,269,9,8368,12651 +42954,147,1,403605,1771809 +42955,234,1,303856,1386400 +42956,18,2,10066,1588673 +42957,200,3,324670,1726036 +42958,317,10,30022,105569 +42959,234,1,26593,11435 +42960,333,2,251,1315648 +42961,196,7,9835,1556703 +42962,411,9,58244,8704 +42963,268,7,28178,171297 +42964,234,1,20583,60438 +42965,413,11,341420,1337038 +42966,234,1,356842,543250 +42967,413,11,35651,1177639 +42968,234,1,44566,35785 +42969,53,2,50079,9064 +42970,204,9,28421,13958 +42971,132,2,4982,1414488 +42972,87,7,28178,1066776 +42973,387,10,23397,737 +42974,204,9,30624,132251 +42975,317,10,131737,990 +42976,234,1,356482,87755 +42977,373,7,32657,1378169 +42978,317,10,37181,229931 +42979,127,3,10204,1613274 +42980,317,10,157384,1138712 +42981,234,1,343693,970446 +42982,77,10,9950,60780 +42983,208,2,2567,1330586 +42984,262,6,255343,1512781 +42985,77,10,16124,32277 +42986,333,2,246655,1405201 +42987,413,11,11298,4600 +42988,53,2,409447,9616 +42989,373,7,445993,1808045 +42990,413,11,11547,68636 +42991,234,1,11915,39138 +42992,262,6,37534,1399869 +42993,317,10,17282,102434 +42994,387,10,77079,39018 +42995,317,10,95516,1066409 +42996,234,1,36926,1037308 +42997,234,1,83802,39991 +42998,387,10,35852,5735 +42999,3,5,62046,1590 +43000,234,1,9287,15140 +43001,317,10,41852,21061 +43002,204,9,140607,1546027 +43003,160,3,107250,1327722 +43004,273,7,180299,1185945 +43005,148,9,203833,968035 +43006,52,10,79707,74091 +43007,317,10,317182,146459 +43008,3,5,51999,3079 +43009,234,1,186585,121150 +43010,53,2,334527,1454534 +43011,234,1,139455,30058 +43012,234,1,122857,62941 +43013,180,7,44655,1511311 +43014,387,10,47312,81019 +43015,234,1,10103,63429 +43016,180,7,63304,1483725 +43017,415,3,28000,13292 +43018,291,6,360249,1456042 +43019,289,6,76341,56341 +43020,234,1,7980,108 +43021,3,5,26299,115544 +43022,152,2,343173,1542378 +43023,75,5,205584,1394768 +43024,5,10,17339,67450 +43025,221,3,693,1341797 +43026,3,5,5393,43101 +43027,204,9,20312,1424452 +43028,273,7,2110,21648 +43029,239,5,263115,1546444 +43030,226,2,41312,1581819 +43031,317,10,1273,19499 +43032,317,10,16015,19346 +43033,317,10,116432,1849920 +43034,387,10,45191,236220 +43035,234,1,90231,1150816 +43036,387,10,2140,59 +43037,234,1,85628,1055311 +43038,204,9,147829,9062 +43039,3,5,17687,14411 +43040,175,5,13075,1428839 +43041,319,1,8470,1840078 +43042,273,7,613,8804 +43043,53,2,72710,1193620 +43044,75,5,961,14916 +43045,415,3,10178,89532 +43046,413,11,94935,557211 +43047,53,2,1634,7238 +43048,188,8,14430,1278166 +43049,234,1,70074,1723 +43050,317,10,32332,59874 +43051,373,7,44129,1338374 +43052,97,7,337339,1338372 +43053,327,7,5237,11351 +43054,317,10,77882,140910 +43055,327,7,12171,16683 +43056,158,2,168027,1460748 +43057,317,10,199644,135679 +43058,97,7,9457,91094 +43059,234,1,249457,68149 +43060,166,9,283445,1533588 +43061,394,7,9664,16684 +43062,398,9,40864,124861 +43063,273,7,9803,59349 +43064,187,11,12113,1405382 +43065,317,10,131932,1093950 +43066,387,10,20766,57573 +43067,209,7,356752,1841598 +43068,273,7,39995,1190341 +43069,398,9,2267,10820 +43070,234,1,11139,68315 +43071,127,3,23397,7070 +43072,53,2,4441,37285 +43073,387,10,163,1921 +43074,317,10,43023,31252 +43075,97,7,744,1378172 +43076,75,5,62755,1089059 +43077,1,7,379,423177 +43078,148,9,109610,1499014 +43079,286,3,82519,60052 +43080,289,6,90001,1563393 +43081,52,10,290764,20976 +43082,303,3,102629,1069627 +43083,52,10,110588,81460 +43084,75,5,140607,1550778 +43085,387,10,94182,29098 +43086,387,10,18937,1231398 +43087,148,9,38433,33250 +43088,3,5,107916,1142999 +43089,234,1,285840,1038000 +43090,105,7,121539,1074509 +43091,292,3,28090,1680642 +43092,105,7,58081,420499 +43093,333,2,814,14458 +43094,160,3,9042,9357 +43095,234,1,191476,1411563 +43096,182,8,11377,1602876 +43097,234,1,441043,1755722 +43098,23,9,9532,1441248 +43099,289,6,80928,115754 +43100,387,10,8329,54525 +43101,203,1,72545,1345635 +43102,287,3,30996,1547068 +43103,273,7,49334,142035 +43104,317,10,43473,1195080 +43105,387,10,296524,36603 +43106,333,2,14979,1302619 +43107,3,5,88075,11442 +43108,387,10,28120,132577 +43109,317,10,10389,1069157 +43110,277,3,19096,20148 +43111,3,5,83599,1005592 +43112,333,2,167,1323090 +43113,204,9,44208,8622 +43114,148,9,58428,966560 +43115,317,10,63717,40260 +43116,3,5,45838,10522 +43117,53,2,109441,3647 +43118,397,7,20986,109195 +43119,273,7,46492,125001 +43120,166,9,246655,1337455 +43121,190,7,21159,91804 +43122,166,9,8467,1893222 +43123,179,2,294254,1439109 +43124,273,7,37923,7647 +43125,105,7,142061,1113050 +43126,387,10,10796,42121 +43127,209,7,97614,1409721 +43128,3,5,180929,19129 +43129,286,3,76493,5387 +43130,169,3,11096,15528 +43131,234,1,341490,566678 +43132,317,10,74192,43317 +43133,234,1,9703,58656 +43134,53,2,2687,26984 +43135,413,11,39979,50750 +43136,387,10,55343,26708 +43137,234,1,77864,85670 +43138,259,3,263115,1821923 +43139,234,1,116352,80260 +43140,3,5,239498,21793 +43141,76,2,14703,14681 +43142,394,7,206647,14765 +43143,234,1,22404,68 +43144,373,7,11517,1337464 +43145,413,11,949,15842 +43146,53,2,34723,11802 +43147,333,2,289225,1850524 +43148,387,10,88486,20935 +43149,148,9,53949,1325120 +43150,317,10,44732,1256815 +43151,3,5,4286,36016 +43152,53,2,377170,8717 +43153,196,7,20648,1421691 +43154,20,2,9785,1525907 +43155,127,3,11697,209585 +43156,413,11,108665,43913 +43157,3,5,41402,67113 +43158,317,10,44682,1121112 +43159,122,8,341174,1561350 +43160,5,10,72279,565406 +43161,3,5,271039,1328182 +43162,187,11,773,1387183 +43163,187,11,8669,1392084 +43164,200,3,2978,175688 +43165,413,11,26558,28283 +43166,327,7,10692,1570528 +43167,262,6,19995,1394755 +43168,301,5,1579,1400348 +43169,3,5,755,3113 +43170,77,10,14147,85312 +43171,204,9,403570,75556 +43172,204,9,40229,10368 +43173,127,3,2321,142162 +43174,234,1,150117,6733 +43175,3,5,11577,14944 +43176,3,5,188927,58192 +43177,413,11,16058,31459 +43178,289,6,10539,1454032 +43179,269,9,20715,1573491 +43180,273,7,57996,238490 +43181,328,6,284564,1752049 +43182,234,1,77439,1448171 +43183,204,9,49712,32311 +43184,204,9,53864,9062 +43185,317,10,85651,1335099 +43186,234,1,28902,17016 +43187,204,9,132363,1333977 +43188,398,9,8619,1377217 +43189,25,2,219466,1634957 +43190,113,9,102382,1347723 +43191,234,1,293122,1313022 +43192,373,7,173153,1538230 +43193,204,9,49009,61846 +43194,269,9,14626,1098178 +43195,387,10,73262,996499 +43196,179,2,43931,1327146 +43197,3,5,51406,1069454 +43198,317,10,169068,166396 +43199,53,2,275269,1676438 +43200,52,10,19887,109172 +43201,234,1,791,11809 +43202,234,1,41380,62410 +43203,317,10,139862,28445 +43204,148,9,266856,1387385 +43205,273,7,52859,88673 +43206,148,9,193893,33673 +43207,3,5,52047,1092906 +43208,286,3,217925,8408 +43209,277,3,358924,1741047 +43210,277,3,10145,1406825 +43211,413,11,16320,1018965 +43212,141,7,1647,1460669 +43213,157,3,2989,9600 +43214,77,10,14660,78196 +43215,196,7,19995,1394129 +43216,301,5,102629,1429361 +43217,387,10,15239,555064 +43218,381,9,58372,1393558 +43219,328,6,354287,1437160 +43220,333,2,1579,42027 +43221,182,8,9946,1406128 +43222,319,1,10204,1894094 +43223,250,11,418437,1409719 +43224,373,7,24624,1540860 +43225,160,3,102382,15024 +43226,148,9,79593,958278 +43227,67,10,297762,105643 +43228,387,10,77000,581057 +43229,234,1,351211,98631 +43230,394,7,26390,1407197 +43231,204,9,77412,9062 +43232,234,1,55500,114678 +43233,234,1,49172,67753 +43234,208,2,4592,1457695 +43235,204,9,125513,1123375 +43236,234,1,11373,28385 +43237,413,11,253277,1173411 +43238,198,6,1690,11419 +43239,360,3,351211,1639377 +43240,269,9,109379,1597022 +43241,387,10,285946,148572 +43242,387,10,120922,38586 +43243,234,1,24272,90657 +43244,204,9,77057,1608832 +43245,196,7,102382,1360100 +43246,204,9,109439,19663 +43247,226,2,228339,1277473 +43248,317,10,70747,559500 +43249,5,10,13442,1300561 +43250,413,11,14811,14491 +43251,5,10,90406,30506 +43252,53,2,206647,11227 +43253,345,7,1586,1415964 +43254,234,1,196469,1084436 +43255,3,5,31995,3606 +43256,204,9,12684,27921 +43257,317,10,227257,1099680 +43258,234,1,16997,107181 +43259,381,9,11618,1746540 +43260,3,5,10925,67492 +43261,5,10,45215,132492 +43262,273,7,9613,117 +43263,232,10,113148,64141 +43264,317,10,296941,1372762 +43265,60,1,37719,130325 +43266,234,1,327982,235774 +43267,269,9,403429,1337633 +43268,209,7,10070,1393021 +43269,333,2,7299,1433005 +43270,190,7,3597,1787836 +43271,53,2,15472,1033481 +43272,357,3,329865,1646507 +43273,317,10,55989,78439 +43274,333,2,17796,15017 +43275,244,3,40466,1692216 +43276,317,10,86154,560264 +43277,234,1,664,2209 +43278,292,3,41076,1889077 +43279,387,10,72847,19267 +43280,387,10,82767,125071 +43281,198,6,72545,1859987 +43282,234,1,82868,102797 +43283,204,9,51209,1094395 +43284,11,6,76170,1401998 +43285,218,1,233639,1792025 +43286,234,1,227306,11701 +43287,331,3,163,1413156 +43288,234,1,54309,78530 +43289,226,2,218778,1445820 +43290,413,11,139582,1113438 +43291,15,6,74,1445839 +43292,394,7,100110,1370961 +43293,234,1,16331,12840 +43294,234,1,220724,64901 +43295,3,5,27414,97714 +43296,317,10,23178,12949 +43297,60,1,69605,1661501 +43298,413,11,82341,5821 +43299,387,10,10950,16853 +43300,317,10,214756,1224494 +43301,204,9,76341,1391711 +43302,197,5,1586,1854994 +43303,122,8,246655,1706692 +43304,273,7,344147,65820 +43305,303,3,1624,1400372 +43306,3,5,93863,27849 +43307,182,8,205584,1401739 +43308,317,10,20106,22306 +43309,34,8,126889,1411238 +43310,387,10,2503,19242 +43311,413,11,2675,53685 +43312,3,5,11428,25860 +43313,234,1,54559,8023 +43314,291,6,343173,1742983 +43315,53,2,356758,1501819 +43316,289,6,29233,1696503 +43317,53,2,331161,1446136 +43318,317,10,142012,1115991 +43319,175,5,141,161159 +43320,413,11,9056,56832 +43321,55,5,755,1897875 +43322,387,10,77381,1295549 +43323,317,10,14134,37239 +43324,234,1,84708,64114 +43325,387,10,81215,1050252 +43326,209,7,9423,6883 +43327,234,1,78265,338048 +43328,262,6,1966,1398105 +43329,387,10,6417,49667 +43330,234,1,197723,1177860 +43331,413,11,109610,1634779 +43332,234,1,28859,101449 +43333,77,10,148,90 +43334,105,7,31442,8461 +43335,234,1,41164,86293 +43336,105,7,2965,29056 +43337,269,9,10754,66457 +43338,387,10,11000,58251 +43339,269,9,354979,1471443 +43340,3,5,99318,14678 +43341,204,9,228066,1574034 +43342,301,5,42188,1388897 +43343,387,10,109018,117720 +43344,234,1,346170,1481356 +43345,196,7,9358,13166 +43346,5,10,43049,72959 +43347,273,7,10867,1259 +43348,328,6,76163,1437712 +43349,413,11,285270,1367915 +43350,387,10,325205,1426709 +43351,273,7,201223,1208426 +43352,148,9,76757,11270 +43353,53,2,42040,5061 +43354,415,3,30374,559910 +43355,323,10,393559,1615531 +43356,209,7,257088,1335569 +43357,394,7,755,10630 +43358,53,2,274504,1179842 +43359,301,5,88273,1540245 +43360,105,7,8464,1581499 +43361,397,7,62567,27969 +43362,37,3,35,1447548 +43363,366,3,177677,1545985 +43364,286,3,113520,1305281 +43365,273,7,352186,1077561 +43366,234,1,38526,228102 +43367,333,2,2965,29067 +43368,3,5,96935,15131 +43369,317,10,37817,137057 +43370,228,2,379019,1780183 +43371,234,1,284537,1186229 +43372,3,5,65787,13270 +43373,387,10,31592,7379 +43374,105,7,121003,29967 +43375,75,5,13954,1398873 +43376,317,10,266425,593182 +43377,148,9,81223,1487180 +43378,286,3,339367,1673759 +43379,413,11,136582,1038970 +43380,5,10,76203,1286094 +43381,204,9,241374,9062 +43382,387,10,213443,29756 +43383,269,9,189,20489 +43384,415,3,26761,89533 +43385,64,6,9472,23888 +43386,234,1,200481,1181281 +43387,3,5,14534,11409 +43388,333,2,169656,1726737 +43389,273,7,10948,67610 +43390,413,11,15486,75730 +43391,52,10,76684,550327 +43392,273,7,43594,1010717 +43393,11,6,293660,1418374 +43394,105,7,237796,35073 +43395,234,1,265432,234103 +43396,234,1,118443,22140 +43397,234,1,48874,145255 +43398,317,10,36361,36546 +43399,208,2,1991,1420146 +43400,3,5,58,120 +43401,289,6,17421,1458349 +43402,3,5,9993,61628 +43403,387,10,30929,107327 +43404,3,5,333385,71277 +43405,413,11,96987,800252 +43406,289,6,3933,1448066 +43407,273,7,714,6489 +43408,234,1,43384,70862 +43409,317,10,338063,1461483 +43410,41,3,14430,1278108 +43411,204,9,315880,1646436 +43412,317,10,56143,13802 +43413,236,8,29136,1896774 +43414,234,1,10362,20561 +43415,200,3,76163,58188 +43416,190,7,283995,1815944 +43417,273,7,63360,1441128 +43418,148,9,117,1261 +43419,209,7,2105,1435194 +43420,269,9,310137,1397801 +43421,15,6,10020,70287 +43422,52,10,64725,141752 +43423,234,1,315362,146954 +43424,105,7,2441,405 +43425,317,10,321303,1418978 +43426,327,7,34723,1223099 +43427,234,1,45227,143628 +43428,413,11,301875,1513800 +43429,371,3,106049,1149944 +43430,317,10,64328,41088 +43431,360,3,323435,1571053 +43432,234,1,146322,51516 +43433,234,1,9514,56477 +43434,97,7,14019,76266 +43435,181,7,76533,168466 +43436,373,7,28,3177 +43437,373,7,360249,136364 +43438,22,9,9352,1554878 +43439,413,11,366566,35889 +43440,245,3,10803,91249 +43441,234,1,209921,1193462 +43442,289,6,35,1447375 +43443,234,1,211220,1195112 +43444,189,3,924,1337473 +43445,317,10,404459,1665249 +43446,244,3,284053,1401784 +43447,3,5,151826,27224 +43448,66,11,52454,1630391 +43449,317,10,51144,6648 +43450,3,5,38404,14478 +43451,413,11,765,11648 +43452,333,2,8464,1581516 +43453,325,5,12103,21673 +43454,52,10,393562,1086433 +43455,45,9,333484,1571476 +43456,97,7,3172,8164 +43457,269,9,37633,68191 +43458,105,7,264397,1324072 +43459,3,5,208091,1141686 +43460,234,1,338767,1463023 +43461,317,10,81604,141647 +43462,105,7,52784,47065 +43463,387,10,310431,7844 +43464,52,10,3023,29631 +43465,170,5,313896,1297580 +43466,204,9,347945,1439015 +43467,413,11,12780,25241 +43468,413,11,1450,21935 +43469,387,10,23518,13268 +43470,209,7,21159,91811 +43471,413,11,60281,1486450 +43472,413,11,339408,2484 +43473,269,9,18190,10365 +43474,3,5,21027,40183 +43475,286,3,64972,60456 +43476,269,9,280690,1540835 +43477,148,9,123109,1461133 +43478,387,10,285860,1030260 +43479,413,11,22476,18387 +43480,134,3,84355,5081 +43481,269,9,179288,1616167 +43482,398,9,12113,1400066 +43483,333,2,43761,1666109 +43484,45,9,10727,1401671 +43485,219,11,1647,1429549 +43486,317,10,33130,139570 +43487,5,10,79521,4341 +43488,388,9,72545,1463376 +43489,226,2,7340,1286344 +43490,182,8,9352,1586389 +43491,413,11,155426,1720745 +43492,317,10,345775,1505125 +43493,234,1,18094,8686 +43494,387,10,73984,98482 +43495,387,10,27035,30295 +43496,204,9,188927,61277 +43497,234,1,53524,134114 +43498,327,7,11880,16683 +43499,269,9,10063,2625 +43500,317,10,60551,5181 +43501,289,6,80928,11429 +43502,53,2,343173,56642 +43503,413,11,52867,64118 +43504,234,1,14482,98839 +43505,387,10,1673,18579 +43506,333,2,11950,119770 +43507,234,1,9084,57323 +43508,269,9,18638,1339183 +43509,234,1,69784,10146 +43510,388,9,1966,1398089 +43511,373,7,436,1406829 +43512,317,10,381356,1033621 +43513,234,1,12135,71405 +43514,413,11,28452,1213213 +43515,3,5,18843,63956 +43516,196,7,109439,1406389 +43517,234,1,8064,53847 +43518,381,9,11045,1717515 +43519,413,11,337876,1287324 +43520,327,7,289225,1519787 +43521,244,3,122081,1340091 +43522,387,10,98289,95262 +43523,387,10,54570,121676 +43524,3,5,8204,8750 +43525,3,5,214086,1094762 +43526,289,6,214756,1453930 +43527,413,11,38303,970033 +43528,273,7,353462,1219207 +43529,317,10,37410,91343 +43530,317,10,180644,1368608 +43531,287,3,14138,1452258 +43532,317,10,428645,1736461 +43533,317,10,19996,154383 +43534,92,7,2721,26356 +43535,5,10,21057,93513 +43536,317,10,283686,94220 +43537,346,3,11607,1421767 +43538,273,7,11361,15445 +43539,204,9,43022,120193 +43540,234,1,9543,10723 +43541,394,7,343173,7049 +43542,273,7,1480,1938 +43543,234,1,220514,1093493 +43544,105,7,27332,14138 +43545,234,1,16428,74063 +43546,234,1,227094,126768 +43547,317,10,267793,168383 +43548,234,1,399894,228177 +43549,5,10,134806,557979 +43550,286,3,458428,1820253 +43551,269,9,72032,43705 +43552,286,3,43967,555153 +43553,234,1,246011,150956 +43554,52,10,104602,100131 +43555,24,5,408381,1657557 +43556,301,5,44943,1149583 +43557,387,10,21721,89373 +43558,317,10,143068,235922 +43559,87,7,200505,1526823 +43560,169,3,11377,1548635 +43561,204,9,364410,1427826 +43562,204,9,382873,1539777 +43563,204,9,50759,1683713 +43564,289,6,67162,222578 +43565,45,9,15616,1458990 +43566,3,5,121401,69814 +43567,53,2,111479,29928 +43568,148,9,2160,22089 +43569,160,3,1369,16575 +43570,148,9,290764,1087522 +43571,239,5,351211,1652050 +43572,269,9,246403,1395158 +43573,267,8,8869,1738125 +43574,317,10,15797,543174 +43575,175,5,921,1208908 +43576,273,7,18990,1199563 +43577,317,10,42231,1121299 +43578,317,10,33272,110428 +43579,3,5,9690,22501 +43580,387,10,8916,56268 +43581,317,10,322443,1388653 +43582,148,9,184345,64229 +43583,234,1,47119,16988 +43584,53,2,3962,34385 +43585,273,7,308,4450 +43586,301,5,17771,40766 +43587,148,9,48210,1638688 +43588,52,10,270336,6210 +43589,234,1,29372,73256 +43590,317,10,110887,1097762 +43591,234,1,51104,89157 +43592,3,5,323929,1164081 +43593,52,10,413417,1719070 +43594,333,2,4592,1446530 +43595,328,6,353686,1392622 +43596,200,3,188927,1401140 +43597,273,7,24679,195 +43598,60,1,14703,260646 +43599,53,2,337104,1174098 +43600,360,9,25241,15333 +43601,234,1,104720,834 +43602,387,10,43913,147915 +43603,52,10,122677,30680 +43604,387,10,10801,66874 +43605,179,2,405473,1747168 +43606,387,10,121793,56837 +43607,327,7,257534,1297711 +43608,3,5,49028,1170058 +43609,234,1,61581,33806 +43610,53,2,28665,965666 +43611,143,7,384262,1805978 +43612,3,5,429838,1734270 +43613,3,5,11425,62583 +43614,234,1,52049,121585 +43615,5,10,42298,1387067 +43616,203,1,71329,1605712 +43617,413,11,40466,58705 +43618,234,1,22855,90367 +43619,325,5,634,1575994 +43620,3,5,25330,1214 +43621,60,1,12102,1675227 +43622,105,7,169881,52230 +43623,234,1,102527,1031196 +43624,225,7,262338,1857041 +43625,204,9,112885,9062 +43626,317,10,230211,147532 +43627,155,3,21734,7661 +43628,234,1,334132,1740351 +43629,148,9,16876,544139 +43630,387,10,259997,1006148 +43631,287,3,1586,1405807 +43632,18,2,4248,1667244 +43633,317,10,67328,548599 +43634,67,10,15213,1462626 +43635,273,7,116350,5488 +43636,415,3,41030,120165 +43637,413,11,11206,9852 +43638,204,9,50780,970199 +43639,234,1,44308,52358 +43640,333,2,52362,4352 +43641,291,6,33613,1456042 +43642,60,1,170689,1903142 +43643,234,1,286567,130837 +43644,234,1,40047,11770 +43645,387,10,10436,14393 +43646,3,5,177902,17669 +43647,413,11,45219,31962 +43648,149,6,127380,1122215 +43649,105,7,306383,1077531 +43650,148,9,248087,1537408 +43651,360,9,107250,1834276 +43652,234,1,292014,1404563 +43653,166,9,15616,1458991 +43654,289,6,269149,1453626 +43655,3,5,3035,2005 +43656,273,7,2666,7020 +43657,413,11,100270,15604 +43658,317,10,35292,1243469 +43659,269,9,128215,11004 +43660,175,5,205587,1400534 +43661,53,2,946,7652 +43662,37,3,65055,1460603 +43663,304,10,11502,43553 +43664,413,11,9819,8970 +43665,373,7,8869,143919 +43666,328,6,12113,1169459 +43667,394,7,328429,1339957 +43668,53,2,14,8222 +43669,314,2,4248,1532757 +43670,86,3,329865,17428 +43671,53,2,43268,8509 +43672,64,6,21828,88122 +43673,3,5,10011,27759 +43674,289,6,106112,225708 +43675,234,1,98302,34580 +43676,387,10,41609,50759 +43677,252,3,2567,1739550 +43678,52,10,227700,1320498 +43679,317,10,72460,1230781 +43680,413,11,315841,4999 +43681,317,10,42537,8630 +43682,273,7,90395,13571 +43683,262,6,337339,1725772 +43684,105,7,167330,43487 +43685,413,11,185934,1496835 +43686,3,5,1926,20038 +43687,196,7,19142,1808568 +43688,53,2,32049,42909 +43689,387,10,383064,96290 +43690,160,3,127521,1350254 +43691,317,10,235092,1270363 +43692,105,7,52362,11632 +43693,234,1,21837,110834 +43694,53,2,33336,1632946 +43695,305,9,227975,1775635 +43696,333,2,7219,1769439 +43697,53,2,157343,4127 +43698,387,10,10020,38792 +43699,317,10,81223,112412 +43700,5,10,11307,18776 +43701,387,10,41714,1121190 +43702,204,9,109213,46360 +43703,158,2,9532,1441267 +43704,387,10,9028,49451 +43705,413,11,2687,18651 +43706,357,3,205584,1585733 +43707,46,5,10590,1744048 +43708,269,9,145135,978107 +43709,333,2,246415,1439406 +43710,53,2,16281,1209170 +43711,3,5,172445,9049 +43712,250,11,77338,1724204 +43713,317,10,32323,70616 +43714,213,10,64847,224654 +43715,52,10,43455,148059 +43716,234,1,314352,564791 +43717,273,7,14815,1760 +43718,133,3,84473,1180528 +43719,317,10,371181,226533 +43720,317,10,53407,44879 +43721,5,10,43075,1371631 +43722,387,10,3146,18598 +43723,234,1,347031,1317730 +43724,268,7,18417,83084 +43725,3,5,24655,6847 +43726,317,10,77922,1017712 +43727,286,3,72013,1770713 +43728,328,6,223485,1437160 +43729,53,2,126090,1334944 +43730,3,5,2349,24076 +43731,273,7,6443,51713 +43732,87,7,2567,52161 +43733,53,2,1647,6392 +43734,53,2,5915,46589 +43735,20,2,7326,1531240 +43736,203,1,205864,1603903 +43737,413,11,393445,1705467 +43738,105,7,24405,20309 +43739,209,7,246655,1378722 +43740,387,10,40952,62020 +43741,52,10,28387,5656 +43742,234,1,144475,14281 +43743,53,2,413762,1811610 +43744,413,11,137321,10957 +43745,3,5,266425,1199278 +43746,273,7,28730,18264 +43747,308,3,163791,1601458 +43748,87,7,8669,24192 +43749,209,7,70667,1448329 +43750,327,7,7326,1403636 +43751,333,2,16307,1207586 +43752,77,10,9904,60215 +43753,387,10,21828,72624 +43754,317,10,108972,42793 +43755,204,9,37368,16892 +43756,208,2,10394,1415951 +43757,413,11,10708,7414 +43758,190,7,11236,1881622 +43759,234,1,37405,66639 +43760,204,9,58704,933448 +43761,97,7,340101,1338971 +43762,234,1,121942,43553 +43763,234,1,127445,1012127 +43764,273,7,11104,12454 +43765,97,7,257088,1338372 +43766,234,1,10999,67753 +43767,3,5,262447,47917 +43768,262,6,118,256928 +43769,387,10,254679,72496 +43770,234,1,26005,56865 +43771,46,5,52454,1630388 +43772,232,10,126958,11528 +43773,203,1,664,1339468 +43774,34,8,8870,1624169 +43775,52,10,126083,261037 +43776,143,7,258384,12265 +43777,288,3,18665,118748 +43778,5,10,42420,128108 +43779,52,10,14159,71089 +43780,234,1,11939,10790 +43781,158,2,9914,1402988 +43782,234,1,4478,7270 +43783,15,6,9948,1460439 +43784,387,10,106747,118413 +43785,204,9,22752,225716 +43786,132,2,257088,589942 +43787,317,10,30163,38507 +43788,77,10,15940,78993 +43789,234,1,50590,61204 +43790,269,9,10834,1643049 +43791,226,2,127372,1431501 +43792,221,3,10204,1613277 +43793,269,9,1394,5557 +43794,178,10,121598,1880933 +43795,394,7,62728,1418322 +43796,75,5,77094,1664630 +43797,148,9,40562,1523408 +43798,105,7,286709,13083 +43799,289,6,286192,1711835 +43800,360,3,15472,1455329 +43801,317,10,334527,1643852 +43802,387,10,108789,99472 +43803,234,1,313074,1402638 +43804,317,10,125619,1081533 +43805,204,9,36657,11004 +43806,317,10,128154,1325335 +43807,262,6,206647,1551910 +43808,333,2,418990,1642311 +43809,148,9,13549,1706096 +43810,273,7,16017,1194832 +43811,53,2,14452,62708 +43812,415,3,9514,1642505 +43813,187,11,413882,1735100 +43814,287,3,13056,1708299 +43815,53,2,11171,1398176 +43816,286,3,43938,1066767 +43817,328,6,6972,1190664 +43818,234,1,80059,84277 +43819,187,11,10395,142155 +43820,125,2,2567,1466997 +43821,413,11,136368,1647415 +43822,387,10,78318,51307 +43823,162,6,294272,1660722 +43824,234,1,26851,96447 +43825,269,9,105509,27864 +43826,327,7,18843,1434574 +43827,180,7,317,559495 +43828,234,1,227462,1116351 +43829,333,2,28178,1447941 +43830,317,10,57889,1310757 +43831,3,5,101929,552001 +43832,317,10,294652,1299642 +43833,105,7,27814,1856497 +43834,273,7,184741,30268 +43835,97,7,19765,1602166 +43836,234,1,89287,42741 +43837,387,10,56369,5811 +43838,387,10,5753,45343 +43839,317,10,131799,590542 +43840,148,9,98277,1017276 +43841,289,6,3933,1448076 +43842,317,10,14829,554859 +43843,3,5,362178,1610101 +43844,317,10,189197,1189066 +43845,52,10,99261,1197370 +43846,234,1,234868,82334 +43847,387,10,1907,8999 +43848,413,11,11706,5400 +43849,317,10,20715,1234464 +43850,317,10,75752,11147 +43851,60,1,163791,1260422 +43852,234,1,86732,137349 +43853,34,8,333663,1709126 +43854,198,6,181533,1869372 +43855,234,1,134350,67075 +43856,45,9,284052,1355529 +43857,257,3,8470,1598751 +43858,305,9,9475,81538 +43859,234,1,278621,1415878 +43860,399,9,14317,1447569 +43861,387,10,54415,1289701 +43862,273,7,162282,1144624 +43863,387,10,5481,44955 +43864,53,2,65787,26172 +43865,204,9,118059,9062 +43866,234,1,33784,111345 +43867,3,5,6417,49668 +43868,387,10,48131,67756 +43869,3,5,55156,65961 +43870,387,10,167424,4645 +43871,53,2,19176,4189 +43872,234,1,64725,31603 +43873,234,1,16182,79925 +43874,387,10,43685,549131 +43875,208,2,41171,1326401 +43876,413,11,12636,73192 +43877,387,10,353326,1496011 +43878,204,9,41590,25185 +43879,262,6,403,16601 +43880,175,5,30289,1542285 +43881,169,3,744,1368867 +43882,270,9,169,1404714 +43883,289,6,257344,1473418 +43884,190,7,399790,1830195 +43885,3,5,10863,8934 +43886,234,1,81232,558177 +43887,52,10,39957,1682906 +43888,3,5,239103,5194 +43889,52,10,755,11419 +43890,234,1,108869,9577 +43891,83,2,365942,1709128 +43892,234,1,29743,67972 +43893,317,10,43808,1037512 +43894,234,1,39176,10723 +43895,273,7,251421,545569 +43896,234,1,189888,88458 +43897,269,9,64225,1511047 +43898,373,7,273404,1445371 +43899,273,7,5967,10934 +43900,262,6,2897,231264 +43901,269,9,8869,21615 +43902,234,1,187458,115891 +43903,3,5,20325,30177 +43904,413,11,5551,384 +43905,53,2,107811,8707 +43906,262,6,257088,1456373 +43907,20,2,209112,1616392 +43908,234,1,66193,228177 +43909,360,3,287636,1627219 +43910,317,10,34588,123765 +43911,387,10,3051,31048 +43912,373,7,443319,222365 +43913,204,9,52440,9062 +43914,234,1,347465,1148322 +43915,180,7,74879,1600458 +43916,291,6,131737,1503229 +43917,234,1,39407,30129 +43918,273,7,25649,545760 +43919,269,9,44389,1034518 +43920,203,1,1715,1427384 +43921,413,11,45431,550895 +43922,413,11,31509,8822 +43923,269,9,258251,1348584 +43924,413,11,14,7414 +43925,234,1,22140,42 +43926,75,5,9314,60085 +43927,148,9,402446,1492089 +43928,411,9,274857,26193 +43929,220,7,381691,979287 +43930,204,9,37308,31204 +43931,60,1,2288,18274 +43932,317,10,51371,1500 +43933,3,5,20646,135383 +43934,317,10,376292,1327402 +43935,387,10,1917,19930 +43936,387,10,23385,129825 +43937,328,6,131739,1395390 +43938,289,6,291270,1584372 +43939,234,1,309879,1621466 +43940,3,5,12121,25212 +43941,3,5,28290,70821 +43942,52,10,139718,1174358 +43943,373,7,172385,42267 +43944,234,1,89774,17439 +43945,52,10,109379,1597019 +43946,413,11,53860,29971 +43947,262,6,311324,25458 +43948,398,9,14430,4379 +43949,304,10,20968,1013132 +43950,202,7,13986,108938 +43951,75,5,145135,1179562 +43952,289,6,18939,133557 +43953,413,11,114096,7068 +43954,269,9,864,12973 +43955,387,10,86838,54472 +43956,317,10,138496,1135968 +43957,97,7,174751,92376 +43958,234,1,1690,16847 +43959,273,7,11055,18836 +43960,273,7,660,2289 +43961,317,10,92311,2768 +43962,52,10,25499,225149 +43963,234,1,160261,1025765 +43964,234,1,75204,574149 +43965,12,10,140607,1 +43966,413,11,280030,1316515 +43967,328,6,9593,1412705 +43968,387,10,30640,106632 +43969,226,2,2662,1521452 +43970,263,11,10727,1584258 +43971,376,10,14611,87173 +43972,208,2,10053,1457835 +43973,273,7,15794,3249 +43974,3,5,18692,5806 +43975,387,10,77650,50302 +43976,52,10,16643,72074 +43977,333,2,10066,29087 +43978,269,9,141489,209492 +43979,317,10,353462,150953 +43980,226,2,1877,1326114 +43981,234,1,7006,27226 +43982,148,9,112284,3648 +43983,232,10,43367,231227 +43984,387,10,1966,1152 +43985,317,10,31005,11887 +43986,234,1,326359,15774 +43987,387,10,319340,1428168 +43988,60,1,33135,1304271 +43989,387,10,124075,584146 +43990,191,6,315837,1797224 +43991,234,1,146730,2106 +43992,108,10,274060,89535 +43993,234,1,53472,66109 +43994,234,1,42734,33064 +43995,234,1,31700,1061255 +43996,317,10,15601,88624 +43997,317,10,26941,72427 +43998,3,5,35113,1129 +43999,3,5,170234,127523 +44000,234,1,54893,262211 +44001,77,10,10837,34936 +44002,270,9,1271,1394744 +44003,148,9,2144,21984 +44004,413,11,19348,53278 +44005,31,9,72545,1734623 +44006,387,10,97598,223265 +44007,3,5,14019,76271 +44008,269,9,301875,990070 +44009,303,3,15019,1325677 +44010,75,5,312831,1594156 +44011,333,2,8467,18786 +44012,270,9,809,1678635 +44013,52,10,19715,148073 +44014,53,2,296523,33284 +44015,57,2,169881,1519290 +44016,317,10,262338,53455 +44017,127,3,19995,1621932 +44018,75,5,168259,1434896 +44019,360,9,10796,1771847 +44020,273,7,29475,9769 +44021,269,9,36658,1271644 +44022,53,2,949,8527 +44023,317,10,16987,1032103 +44024,158,2,257345,1616435 +44025,75,5,168259,1432918 +44026,213,10,236317,42804 +44027,234,1,260528,84827 +44028,34,8,13849,1413947 +44029,234,1,89247,938636 +44030,53,2,25941,61936 +44031,105,7,85916,45079 +44032,77,10,16371,21033 +44033,317,10,43860,231131 +44034,204,9,28176,589938 +44035,105,7,308174,1394321 +44036,413,11,11895,58730 +44037,53,2,315465,111232 +44038,226,2,30361,1769269 +44039,234,1,293660,55252 +44040,234,1,128396,938691 +44041,226,2,76494,1424894 +44042,268,7,14,950773 +44043,269,9,320011,5910 +44044,289,6,13798,103679 +44045,196,7,14411,1387244 +44046,317,10,47792,1873614 +44047,269,9,4024,24297 +44048,398,9,2666,1392682 +44049,387,10,9403,52871 +44050,333,2,1966,1525892 +44051,403,10,18939,83950 +44052,3,5,229328,1164437 +44053,105,7,19176,3393 +44054,365,6,12593,1458351 +44055,143,7,74,42267 +44056,413,11,1116,15495 +44057,387,10,83770,18492 +44058,373,7,379019,1775762 +44059,387,10,12079,71330 +44060,166,9,26390,1395677 +44061,317,10,31618,10492 +44062,203,1,1165,1406986 +44063,317,10,128841,63169 +44064,105,7,311764,1181128 +44065,317,10,48375,51298 +44066,234,1,32235,41887 +44067,245,3,340275,1732081 +44068,158,2,243935,1414949 +44069,234,1,72660,115174 +44070,209,7,3580,1408706 +44071,3,5,12182,7034 +44072,273,7,48136,3249 +44073,234,1,112722,1118963 +44074,273,7,27549,43393 +44075,413,11,352327,1491844 +44076,317,10,36334,3632 +44077,204,9,3716,32454 +44078,143,7,230179,1512663 +44079,234,1,35908,114925 +44080,105,7,258147,1298874 +44081,53,2,9079,4713 +44082,14,7,42764,1766565 +44083,234,1,222461,62768 +44084,198,6,181533,1869385 +44085,226,2,31682,29640 +44086,273,7,275060,1778310 +44087,204,9,157843,1319729 +44088,289,6,98566,1453594 +44089,317,10,398786,1150850 +44090,75,5,214938,1597065 +44091,286,3,91571,14808 +44092,132,2,7515,121275 +44093,204,9,10364,1765 +44094,234,1,164331,42309 +44095,387,10,23048,74619 +44096,3,5,25376,414697 +44097,346,3,6171,1400012 +44098,394,7,222935,1416153 +44099,196,7,21786,1336914 +44100,301,5,274857,34194 +44101,328,6,302528,1403407 +44102,317,10,68444,143010 +44103,413,11,482,6571 +44104,182,8,72431,1431090 +44105,234,1,44283,587200 +44106,203,1,5289,1404754 +44107,413,11,9993,30461 +44108,180,7,36129,1274488 +44109,234,1,27265,13 +44110,333,2,28295,14498 +44111,75,5,324670,1372955 +44112,269,9,330115,9004 +44113,175,5,163,1392247 +44114,234,1,270946,18863 +44115,317,10,26612,66076 +44116,292,3,53419,1195066 +44117,97,7,436,92376 +44118,204,9,49521,22061 +44119,273,7,2907,9251 +44120,293,2,19255,1552356 +44121,413,11,33333,1047251 +44122,148,9,336011,1641323 +44123,64,6,52454,1023419 +44124,333,2,94182,4128 +44125,387,10,156335,1290162 +44126,257,3,15156,1618901 +44127,387,10,16214,114641 +44128,413,11,61552,73378 +44129,317,10,14650,230466 +44130,317,10,44522,93437 +44131,127,3,126712,227974 +44132,105,7,95169,1159361 +44133,105,7,395982,1419367 +44134,273,7,14881,9217 +44135,273,7,17350,35073 +44136,234,1,307649,143696 +44137,387,10,47312,35835 +44138,286,3,79094,259027 +44139,182,8,966,4108 +44140,53,2,258480,9027 +44141,234,1,4832,39648 +44142,234,1,13653,74907 +44143,234,1,47943,18175 +44144,273,7,250066,1495521 +44145,3,5,61934,3148 +44146,232,10,44001,130001 +44147,269,9,51976,1094171 +44148,11,6,209112,1660720 +44149,317,10,419192,964698 +44150,273,7,323665,96085 +44151,3,5,12593,31102 +44152,394,7,2105,562 +44153,67,10,15213,1451645 +44154,327,7,193893,1871278 +44155,148,9,53230,8506 +44156,190,7,13056,1708231 +44157,234,1,301325,61111 +44158,234,1,13996,77121 +44159,291,6,27150,90831 +44160,52,10,17007,81149 +44161,3,5,69035,8862 +44162,301,5,267579,1208256 +44163,387,10,214209,1203347 +44164,45,9,2567,1402020 +44165,234,1,358982,1507498 +44166,204,9,96458,1009379 +44167,234,1,83890,648685 +44168,234,1,264729,79002 +44169,197,5,69668,1877720 +44170,158,2,298584,1619733 +44171,132,2,244786,1402475 +44172,11,6,14128,1157113 +44173,269,9,24757,53114 +44174,287,3,16077,79185 +44175,234,1,31372,108012 +44176,234,1,335869,1162313 +44177,413,11,72207,33283 +44178,357,3,9358,1441321 +44179,317,10,293670,1296119 +44180,5,10,109491,1046637 +44181,413,11,42309,51531 +44182,277,3,108048,22208 +44183,234,1,12237,167407 +44184,413,11,140554,1167389 +44185,234,1,119801,68682 +44186,301,5,206647,1388897 +44187,67,10,15653,1574231 +44188,204,9,3580,19863 +44189,250,11,274479,1414558 +44190,317,10,81549,236655 +44191,208,2,51250,80809 +44192,317,10,75532,5397 +44193,239,5,297762,1824261 +44194,273,7,78265,17667 +44195,75,5,36785,116211 +44196,305,9,311324,1833912 +44197,413,11,13411,56716 +44198,328,6,8870,1405236 +44199,105,7,19610,12068 +44200,387,10,12205,71640 +44201,325,5,297762,1545995 +44202,317,10,166161,1169976 +44203,387,10,71320,1039384 +44204,189,3,2503,967367 +44205,273,7,157351,2863 +44206,373,7,11377,1341808 +44207,9,3,10865,8166 +44208,413,11,331962,6406 +44209,179,2,96724,1466663 +44210,141,7,693,1623540 +44211,234,1,961,8635 +44212,39,3,163,1275495 +44213,273,7,21742,94238 +44214,74,5,31947,1836074 +44215,234,1,43806,31497 +44216,52,10,30175,64157 +44217,317,10,41283,56281 +44218,187,7,10796,16655 +44219,161,6,9902,1600634 +44220,181,7,19101,1565154 +44221,18,2,14,1579408 +44222,387,10,25078,104688 +44223,220,7,3309,17915 +44224,317,10,418990,448526 +44225,188,8,8329,1605762 +44226,67,10,10992,1217416 +44227,3,5,259,3569 +44228,317,10,31048,107565 +44229,317,10,15907,1219528 +44230,3,5,13562,4346 +44231,52,10,131360,103412 +44232,204,9,73348,5188 +44233,75,5,337339,1725759 +44234,39,3,188102,1845789 +44235,320,3,6947,1573095 +44236,167,3,8470,1598748 +44237,333,2,16997,1048397 +44238,269,9,21208,52088 +44239,269,9,237796,1174114 +44240,317,10,82350,45982 +44241,87,7,194722,1611979 +44242,235,5,8276,1544431 +44243,148,9,374475,1578369 +44244,234,1,11576,4081 +44245,286,3,14087,547984 +44246,234,1,218351,40054 +44247,234,1,151062,42993 +44248,97,7,10929,1406826 +44249,234,1,22314,28741 +44250,180,7,248087,1537409 +44251,204,9,3937,31969 +44252,204,9,189682,9062 +44253,20,2,15019,1555664 +44254,289,6,9514,1642596 +44255,3,5,19819,13931 +44256,303,3,156981,1575338 +44257,387,10,52358,84237 +44258,317,10,116723,1064952 +44259,196,7,3057,1049322 +44260,234,1,48333,82829 +44261,209,7,2288,142165 +44262,413,11,40688,43441 +44263,333,2,3037,29821 +44264,317,10,125229,1081071 +44265,200,3,49009,1394026 +44266,75,5,379019,1611687 +44267,3,5,5552,44073 +44268,148,9,142216,6925 +44269,413,11,42204,12865 +44270,169,3,18633,1271793 +44271,304,10,110525,120530 +44272,262,6,257088,1456374 +44273,234,1,16661,143558 +44274,175,5,379,1393396 +44275,381,9,186869,1862926 +44276,273,7,354979,1835315 +44277,92,7,435,1549445 +44278,234,1,18912,83863 +44279,204,9,3016,29574 +44280,273,7,242090,1208226 +44281,87,7,279690,1630966 +44282,269,9,31945,7203 +44283,143,7,240832,1367815 +44284,234,1,56815,225009 +44285,387,10,153165,1503 +44286,39,3,11370,1215596 +44287,141,7,1690,1889499 +44288,234,1,33344,54050 +44289,234,1,47536,25316 +44290,273,7,26514,45962 +44291,317,10,117999,11626 +44292,234,1,41733,57130 +44293,75,5,4547,1401263 +44294,314,2,153,1330586 +44295,234,1,352733,123798 +44296,317,10,129628,63120 +44297,234,1,482,6558 +44298,92,7,170936,121284 +44299,244,3,5413,43162 +44300,413,11,128364,16593 +44301,127,3,35001,50310 +44302,158,2,116463,1327847 +44303,203,1,96936,1395373 +44304,213,10,59803,1384985 +44305,234,1,79775,117865 +44306,413,11,29212,103238 +44307,394,7,11607,16552 +44308,317,10,65131,1053460 +44309,413,11,9016,1442567 +44310,317,10,13551,74638 +44311,273,7,45533,69712 +44312,204,9,10409,6204 +44313,105,7,16444,119339 +44314,317,10,86556,210582 +44315,273,7,120259,26026 +44316,3,5,4140,34952 +44317,296,3,425774,1707997 +44318,273,7,9846,59880 +44319,229,6,369885,1790954 +44320,387,10,13442,3893 +44321,273,7,8998,56541 +44322,387,10,90932,1184114 +44323,387,10,43228,31252 +44324,234,1,438137,1074445 +44325,72,11,315837,1616398 +44326,148,9,146233,1560275 +44327,387,10,8049,53427 +44328,234,1,1550,3290 +44329,403,10,38775,44725 +44330,234,1,52314,22012 +44331,405,8,10320,1671651 +44332,234,1,38437,117691 +44333,53,2,237,36591 +44334,317,10,20242,11708 +44335,269,9,10710,3188 +44336,234,1,47212,39104 +44337,176,3,1966,1398087 +44338,132,2,334527,1865508 +44339,269,9,35026,20525 +44340,234,1,46872,26959 +44341,387,10,47096,1301719 +44342,317,10,291155,567559 +44343,317,10,215579,1217196 +44344,161,6,8619,929404 +44345,273,7,318224,930989 +44346,387,10,936,14255 +44347,175,5,353686,1548109 +44348,234,1,24749,64061 +44349,269,9,4547,944 +44350,387,10,122192,1075757 +44351,3,5,38325,238619 +44352,234,1,50531,120019 +44353,365,6,112722,1838188 +44354,3,5,171446,2774 +44355,413,11,322614,1353008 +44356,412,9,13798,1565842 +44357,306,7,38031,92377 +44358,317,10,43022,82172 +44359,75,5,406431,1509178 +44360,234,1,164013,107720 +44361,119,7,3172,1548698 +44362,204,9,169881,36924 +44363,3,5,320736,18830 +44364,306,7,38322,548435 +44365,234,1,9966,31033 +44366,413,11,126418,29971 +44367,317,10,105763,48667 +44368,75,5,351901,122085 +44369,413,11,45205,132515 +44370,373,7,2172,1411245 +44371,317,10,325133,19274 +44372,234,1,18698,89745 +44373,199,3,127585,1194953 +44374,105,7,1554,2887 +44375,413,11,24831,4600 +44376,234,1,46247,229962 +44377,357,3,293167,1661402 +44378,148,9,12528,6880 +44379,3,5,8080,1044 +44380,273,7,2140,21934 +44381,333,2,339527,1541709 +44382,3,5,29100,1940 +44383,328,6,10929,1413115 +44384,373,7,13056,1417514 +44385,234,1,59066,99384 +44386,317,10,16800,6827 +44387,204,9,2805,552423 +44388,387,10,107052,37583 +44389,415,3,128866,98094 +44390,234,1,90930,39885 +44391,158,2,19995,1401812 +44392,317,10,13505,85781 +44393,287,3,353686,988851 +44394,3,5,313922,1010024 +44395,234,1,278458,584191 +44396,262,6,72431,1448260 +44397,287,3,294254,1287353 +44398,53,2,29161,1760092 +44399,268,7,1877,1415106 +44400,234,1,10671,24939 +44401,273,7,320873,1427447 +44402,317,10,92657,1154459 +44403,373,7,9457,1421706 +44404,127,3,11697,1128334 +44405,97,7,180305,1193870 +44406,234,1,212503,583517 +44407,175,5,223485,1531099 +44408,3,5,9648,5708 +44409,148,9,24453,5060 +44410,289,6,257344,1455602 +44411,409,7,442752,110762 +44412,113,9,197,1406917 +44413,234,1,150049,19379 +44414,328,6,168027,1415010 +44415,234,1,24554,90864 +44416,402,11,52454,1630311 +44417,234,1,390587,1598732 +44418,64,6,98277,1849145 +44419,15,6,126889,1453612 +44420,204,9,176,1317668 +44421,415,3,42218,14100 +44422,52,10,44896,1704 +44423,401,6,9982,1713405 +44424,234,1,147815,78747 +44425,286,3,16171,79855 +44426,317,10,30143,78365 +44427,387,10,45335,132873 +44428,387,10,76465,2665 +44429,387,10,49609,10003 +44430,234,1,172847,21477 +44431,182,8,9568,1546556 +44432,204,9,28902,8525 +44433,387,10,130957,22777 +44434,60,1,74581,1334612 +44435,127,3,2080,1554064 +44436,317,10,111605,39595 +44437,234,1,208436,1062842 +44438,317,10,105902,31253 +44439,105,7,373541,1099659 +44440,3,5,921,8408 +44441,234,1,180685,1020760 +44442,333,2,246655,1328146 +44443,317,10,51581,68707 +44444,53,2,381691,1464562 +44445,289,6,9514,1450986 +44446,75,5,171357,1153757 +44447,204,9,32088,1505814 +44448,387,10,11422,69377 +44449,317,10,20438,99593 +44450,387,10,131861,153760 +44451,213,10,345775,1545619 +44452,387,10,26514,126195 +44453,148,9,227306,61485 +44454,317,10,114438,1058632 +44455,234,1,66109,544638 +44456,413,11,37534,19661 +44457,413,11,30690,2533 +44458,234,1,79735,37360 +44459,273,7,140648,1381171 +44460,371,3,76312,1266465 +44461,158,2,356500,1756285 +44462,293,2,329440,1622447 +44463,39,3,9946,1767310 +44464,3,5,44800,14536 +44465,301,5,10727,1418303 +44466,398,9,18843,1831859 +44467,306,7,954,9159 +44468,269,9,5393,43099 +44469,269,9,392660,1711575 +44470,187,11,16342,1410127 +44471,373,7,302828,1550125 +44472,75,5,42764,1766569 +44473,273,7,3114,3249 +44474,344,9,13954,1398869 +44475,357,3,9286,1494205 +44476,413,11,7551,60502 +44477,158,2,755,29928 +44478,60,1,64725,1625841 +44479,317,10,35177,158967 +44480,176,3,9042,1409229 +44481,148,9,34650,7338 +44482,234,1,51736,550096 +44483,175,5,260001,1425826 +44484,289,6,149870,144476 +44485,317,10,282086,125971 +44486,317,10,151911,14971 +44487,387,10,292656,1056040 +44488,53,2,46567,1008502 +44489,148,9,379019,1423730 +44490,387,10,238302,1272712 +44491,398,9,41076,929655 +44492,52,10,71945,30039 +44493,387,10,22855,34931 +44494,203,1,12450,1410320 +44495,3,5,50008,25012 +44496,234,1,11813,53657 +44497,77,10,9673,57852 +44498,269,9,12506,5491 +44499,234,1,26336,95143 +44500,289,6,12593,1123201 +44501,3,5,120657,3637 +44502,198,6,296524,1729044 +44503,53,2,271718,21592 +44504,413,11,8128,54012 +44505,317,10,77012,591941 +44506,306,7,55700,1865842 +44507,196,7,105965,1398460 +44508,317,10,19017,141393 +44509,317,10,41054,41777 +44510,396,3,260030,1453123 +44511,234,1,100088,97570 +44512,238,7,857,1905120 +44513,234,1,9301,1071 +44514,204,9,75622,19663 +44515,234,1,415072,32174 +44516,387,10,3563,9644 +44517,317,10,188826,1170251 +44518,269,9,1251,795 +44519,53,2,187028,1607360 +44520,104,7,51209,1567886 +44521,169,3,157424,1408174 +44522,5,10,204994,1627746 +44523,3,5,77010,1053067 +44524,317,10,255491,1292426 +44525,413,11,15697,10007 +44526,3,5,154972,1441208 +44527,234,1,10747,190 +44528,413,11,55836,10350 +44529,200,3,76757,1417822 +44530,387,10,781,1071 +44531,75,5,356296,932944 +44532,234,1,359152,1044765 +44533,234,1,196319,109453 +44534,209,7,255343,1427381 +44535,387,10,10610,120882 +44536,327,7,124054,1085032 +44537,387,10,196789,29596 +44538,333,2,18387,8342 +44539,307,6,88018,11434 +44540,234,1,6575,51851 +44541,92,7,61765,9959 +44542,352,3,522,1404751 +44543,204,9,194407,1128245 +44544,3,5,30363,17765 +44545,52,10,20325,108498 +44546,317,10,76012,113233 +44547,234,1,282983,1106577 +44548,155,3,4982,107375 +44549,273,7,297736,1833813 +44550,204,9,10274,61251 +44551,34,8,10320,1418403 +44552,317,10,267852,1388532 +44553,289,6,368006,1640318 +44554,3,5,28902,2240 +44555,317,10,319396,1430298 +44556,325,5,126889,1399033 +44557,363,3,19995,236696 +44558,87,7,318781,1622818 +44559,234,1,13162,408 +44560,127,3,186869,1185314 +44561,234,1,146712,87565 +44562,387,10,117913,298151 +44563,317,10,186991,129760 +44564,52,10,105325,137194 +44565,333,2,13056,16341 +44566,286,3,152861,1134157 +44567,52,10,61151,92720 +44568,5,10,1911,4782 +44569,148,9,283445,1087425 +44570,3,5,5155,32381 +44571,286,3,109477,1046586 +44572,413,11,390,2309 +44573,269,9,25941,9003 +44574,158,2,45019,1550208 +44575,200,3,9664,1425487 +44576,306,7,8247,113073 +44577,273,7,98025,1183408 +44578,3,5,31275,1642684 +44579,130,6,12,8058 +44580,143,7,578,8582 +44581,204,9,315846,1681816 +44582,234,1,353746,1495242 +44583,317,10,25921,77699 +44584,53,2,33314,1017017 +44585,387,10,140554,54536 +44586,175,5,199575,1698856 +44587,108,10,987,4341 +44588,273,7,11354,2949 +44589,100,3,262338,1614057 +44590,413,11,210079,1194392 +44591,234,1,161495,12804 +44592,97,7,7299,1077782 +44593,262,6,613,37682 +44594,333,2,14676,1807339 +44595,113,9,35337,1462399 +44596,333,2,29416,100291 +44597,182,8,269173,1379053 +44598,234,1,29649,104507 +44599,287,3,765,1262012 +44600,75,5,936,1889010 +44601,304,10,284288,1645658 +44602,234,1,41970,86290 +44603,239,5,11370,1581122 +44604,47,8,4547,589970 +44605,317,10,322548,1095322 +44606,286,3,430250,1540619 +44607,403,10,13934,225976 +44608,273,7,174769,40460 +44609,317,10,101352,140457 +44610,317,10,16447,150975 +44611,387,10,68063,550303 +44612,394,7,169298,1305960 +44613,75,5,52661,1518580 +44614,234,1,222890,88040 +44615,106,3,8329,1418152 +44616,160,3,4012,34540 +44617,317,10,29376,27968 +44618,132,2,10950,1407223 +44619,387,10,117913,554171 +44620,273,7,18190,19155 +44621,413,11,153102,65326 +44622,184,7,10733,554888 +44623,234,1,32904,109837 +44624,286,3,371942,39614 +44625,387,10,335874,1467662 +44626,413,11,17744,7754 +44627,203,1,2454,1483583 +44628,234,1,13442,3893 +44629,3,5,67509,1051668 +44630,5,10,42345,935835 +44631,204,9,19665,64667 +44632,158,2,330459,1452223 +44633,317,10,44363,70890 +44634,413,11,4688,16403 +44635,234,1,68050,80586 +44636,262,6,10008,1340123 +44637,387,10,53172,8686 +44638,105,7,364379,1523863 +44639,273,7,108345,4082 +44640,3,5,31397,30856 +44641,373,7,329682,579210 +44642,413,11,2428,24794 +44643,273,7,14435,60102 +44644,234,1,129,608 +44645,5,10,2760,27904 +44646,234,1,147773,105648 +44647,105,7,309879,1621471 +44648,387,10,29903,52187 +44649,317,10,310568,229135 +44650,387,10,82745,357113 +44651,234,1,53860,89632 +44652,234,1,85160,935840 +44653,244,3,11950,119772 +44654,333,2,81522,1561047 +44655,415,3,14510,91319 +44656,60,1,289,8720 +44657,317,10,44655,793 +44658,317,10,18585,83589 +44659,234,1,42752,50765 +44660,3,5,4012,2864 +44661,314,2,353686,1547675 +44662,5,10,120129,50983 +44663,234,1,54570,10001 +44664,234,1,19181,79056 +44665,187,11,10632,1411265 +44666,182,8,26936,146663 +44667,387,10,20424,120176 +44668,5,10,334538,1450263 +44669,287,3,284564,1042415 +44670,234,1,4887,40025 +44671,234,1,8916,18863 +44672,226,2,8247,32487 +44673,387,10,9471,1300 +44674,413,11,352327,1491838 +44675,234,1,10693,11434 +44676,387,10,11104,12453 +44677,273,7,58,947 +44678,289,6,12,7929 +44679,345,7,169,66167 +44680,74,5,1690,1889484 +44681,234,1,31586,3026 +44682,413,11,899,8821 +44683,234,1,276846,131895 +44684,413,11,426265,1728508 +44685,387,10,263472,86500 +44686,234,1,33172,82033 +44687,72,11,64807,1527934 +44688,333,2,11236,9007 +44689,234,1,17745,82346 +44690,198,6,263115,1757612 +44691,234,1,81463,101698 +44692,3,5,6935,51509 +44693,5,10,64847,1279016 +44694,136,1,70981,1390384 +44695,3,5,214756,42632 +44696,269,9,410118,1099354 +44697,413,11,388243,1592195 +44698,46,5,27814,1856492 +44699,255,4,1375,16500 +44700,317,10,24955,92894 +44701,37,3,10020,1615299 +44702,234,1,80596,112995 +44703,286,3,83461,234602 +44704,75,5,5924,559911 +44705,53,2,43727,1555490 +44706,357,3,257088,1552788 +44707,53,2,53766,1353811 +44708,179,2,237584,1621363 +44709,190,7,10739,1458530 +44710,413,11,104471,11523 +44711,122,8,337339,1907205 +44712,357,3,206647,1551874 +44713,239,5,55534,1552473 +44714,387,10,217648,5812 +44715,204,9,34181,1169218 +44716,148,9,348631,1865187 +44717,97,7,373546,1454140 +44718,234,1,143068,235922 +44719,200,3,294254,1430493 +44720,234,1,151489,87397 +44721,262,6,340275,15435 +44722,394,7,330459,71536 +44723,303,3,284052,1695805 +44724,387,10,7511,455 +44725,317,10,63081,135345 +44726,53,2,100669,1548162 +44727,413,11,56135,103182 +44728,105,7,84577,1189772 +44729,234,1,391069,68682 +44730,45,9,949,1479277 +44731,113,9,14,35760 +44732,143,7,246655,113054 +44733,317,10,216521,1201131 +44734,203,1,5413,1476473 +44735,317,10,60392,230978 +44736,226,2,125264,1542582 +44737,413,11,26873,96500 +44738,317,10,84944,931473 +44739,286,3,130948,38589 +44740,127,3,28090,142162 +44741,169,3,18079,1584153 +44742,132,2,315846,1681821 +44743,234,1,66881,549026 +44744,287,3,19912,59287 +44745,234,1,3682,33541 +44746,3,5,11838,70669 +44747,226,2,297702,1480628 +44748,273,7,11446,69486 +44749,182,8,315837,1735770 +44750,97,7,10389,1437888 +44751,317,10,288503,86134 +44752,317,10,36236,227520 +44753,160,3,87826,956198 +44754,273,7,29903,1729 +44755,268,7,49009,1391721 +44756,413,11,64942,992059 +44757,277,3,14983,1408770 +44758,333,2,298584,1619744 +44759,3,5,8247,54164 +44760,262,6,225728,1571982 +44761,97,7,24624,998027 +44762,204,9,20213,7388 +44763,52,10,29376,13286 +44764,317,10,159824,1003945 +44765,413,11,201360,1183433 +44766,413,11,158598,1139973 +44767,234,1,103168,101885 +44768,105,7,8856,10494 +44769,277,3,2567,1402024 +44770,87,7,296523,1530088 +44771,269,9,1896,3630 +44772,413,11,10865,65601 +44773,328,6,189,1401149 +44774,306,7,10066,1412741 +44775,209,7,2454,1390382 +44776,331,3,2978,1864217 +44777,203,1,2046,1400738 +44778,3,5,336004,967417 +44779,83,2,194,1551966 +44780,148,9,57103,9799 +44781,413,11,6935,20296 +44782,52,10,195522,131470 +44783,413,11,115054,113985 +44784,413,11,4913,39983 +44785,77,10,4580,34263 +44786,182,8,330459,1591764 +44787,5,10,147903,1126793 +44788,387,10,41969,82505 +44789,269,9,317,77599 +44790,258,9,15213,1247742 +44791,317,10,377170,147010 +44792,413,11,309879,1621466 +44793,209,7,35052,9160 +44794,148,9,243568,965204 +44795,333,2,664,9991 +44796,398,9,169,21796 +44797,234,1,31221,1478534 +44798,175,5,13849,1413944 +44799,311,9,264525,1775764 +44800,413,11,274479,5361 +44801,413,11,120747,8715 +44802,127,3,116463,1463687 +44803,289,6,9514,1642591 +44804,3,5,87349,21783 +44805,234,1,386100,1366212 +44806,3,5,14626,14196 +44807,181,7,1427,11606 +44808,53,2,2021,20778 +44809,234,1,113525,16888 +44810,226,2,3513,32354 +44811,75,5,116979,1700888 +44812,262,6,97365,1632376 +44813,3,5,461955,1424630 +44814,387,10,12632,56201 +44815,366,3,107073,1439174 +44816,263,11,117,957760 +44817,175,5,34231,1460041 +44818,105,7,88005,1107146 +44819,234,1,418969,115178 +44820,234,1,36971,116584 +44821,166,9,280092,1533588 +44822,3,5,149793,34438 +44823,317,10,13505,10387 +44824,317,10,12573,1224 +44825,317,10,71866,564082 +44826,234,1,98612,1018895 +44827,75,5,58244,1618806 +44828,387,10,24918,94373 +44829,262,6,19996,1604237 +44830,3,5,11361,69141 +44831,3,5,463800,1424630 +44832,72,11,297702,1636867 +44833,234,1,285733,1350796 +44834,5,10,44099,53795 +44835,105,7,199415,1100134 +44836,269,9,9639,1565952 +44837,196,7,333484,1393444 +44838,387,10,2978,707 +44839,3,5,31915,14094 +44840,53,2,19996,1764174 +44841,317,10,119569,579281 +44842,204,9,5955,22061 +44843,286,3,386100,27072 +44844,204,9,51994,1011834 +44845,317,10,41569,1197567 +44846,289,6,234377,72983 +44847,3,5,168552,51085 +44848,5,10,10129,63909 +44849,373,7,15653,1341858 +44850,387,10,426253,145130 +44851,333,2,4982,1353528 +44852,188,8,82448,928003 +44853,85,10,371741,1546532 +44854,148,9,177677,1545921 +44855,373,7,384737,930983 +44856,234,1,7837,44132 +44857,360,9,240913,1349967 +44858,175,5,19901,1391730 +44859,72,11,35052,1128796 +44860,373,7,132363,1337461 +44861,269,9,404459,1665256 +44862,52,10,2666,21085 +44863,273,7,260947,965436 +44864,182,8,1991,1420159 +44865,53,2,9716,6348 +44866,52,10,17692,102927 +44867,148,9,82,8680 +44868,413,11,3089,13973 +44869,148,9,170759,32840 +44870,182,8,68387,1653534 +44871,3,5,61267,54197 +44872,413,11,4613,7035 +44873,413,11,87826,4502 +44874,413,11,77949,125261 +44875,387,10,109417,71851 +44876,415,3,10724,1336473 +44877,143,7,116979,1300755 +44878,53,2,218425,1312186 +44879,103,6,169,554009 +44880,317,10,22681,92435 +44881,234,1,2640,7145 +44882,234,1,28062,92410 +44883,204,9,606,7789 +44884,200,3,19995,1394750 +44885,273,7,11232,24190 +44886,317,10,42087,21864 +44887,333,2,210653,1623735 +44888,317,10,171759,1062889 +44889,269,9,60855,1396498 +44890,234,1,94176,19093 +44891,387,10,29117,31843 +44892,317,10,7445,1011 +44893,317,10,63493,21808 +44894,127,3,58428,1531578 +44895,105,7,44578,929326 +44896,203,1,225285,1431152 +44897,234,1,42701,20921 +44898,273,7,259183,12241 +44899,413,11,105509,4418 +44900,64,6,434873,1310518 +44901,387,10,331354,45060 +44902,413,11,38433,8821 +44903,65,3,8870,1634439 +44904,234,1,277710,1462 +44905,269,9,154575,1486940 +44906,373,7,1647,112609 +44907,234,1,29743,67971 +44908,219,11,9352,1335156 +44909,273,7,5060,41829 +44910,293,2,10590,1565949 +44911,269,9,8619,6877 +44912,301,5,858,1391594 +44913,317,10,155341,1136480 +44914,179,2,2924,1330048 +44915,234,1,3024,29646 +44916,96,2,283995,1400085 +44917,387,10,12645,129711 +44918,180,7,18352,1537580 +44919,415,3,31993,1027339 +44920,64,6,72545,1457930 +44921,113,9,35337,1462400 +44922,45,9,10204,1470178 +44923,373,7,773,1407354 +44924,105,7,282070,1537405 +44925,317,10,140418,117692 +44926,234,1,2107,8843 +44927,287,3,55534,1413898 +44928,148,9,2982,22089 +44929,188,8,1966,1733778 +44930,234,1,714,1724 +44931,208,2,2977,29233 +44932,286,3,17046,81265 +44933,196,7,24810,137127 +44934,273,7,10129,36596 +44935,373,7,17622,229839 +44936,182,8,240832,1367828 +44937,289,6,312100,1366289 +44938,5,10,16164,2235 +44939,398,9,14,1392895 +44940,204,9,9613,15222 +44941,289,6,72105,1455526 +44942,3,5,1394,24287 +44943,234,1,187022,24011 +44944,234,1,36325,115279 +44945,317,10,156277,41887 +44946,234,1,82077,37915 +44947,3,5,2565,5582 +44948,3,5,11373,28386 +44949,199,3,413770,67269 +44950,3,5,184267,144124 +44951,317,10,46278,95219 +44952,387,10,11428,3027 +44953,234,1,148478,213449 +44954,234,1,81435,931867 +44955,234,1,42218,101225 +44956,273,7,11421,7487 +44957,317,10,40346,57617 +44958,317,10,15982,2100 +44959,234,1,174712,97373 +44960,182,8,76600,1897192 +44961,273,7,82341,67973 +44962,387,10,2085,21349 +44963,234,1,17962,25645 +44964,179,2,51250,1721875 +44965,317,10,95414,1123492 +44966,286,3,25649,231515 +44967,387,10,27332,16174 +44968,262,6,233639,1792034 +44969,327,7,21742,94242 +44970,12,10,693,17869 +44971,143,7,5,3119 +44972,328,6,19995,6690 +44973,97,7,31911,1549588 +44974,273,7,263341,27181 +44975,234,1,10493,13015 +44976,60,1,244786,1197441 +44977,187,11,353686,1409287 +44978,3,5,289183,79756 +44979,346,3,70074,1401273 +44980,204,9,9425,9639 +44981,226,2,10590,1416092 +44982,234,1,73551,76882 +44983,269,9,19665,1205337 +44984,234,1,38332,142497 +44985,234,1,105,24 +44986,234,1,26963,96677 +44987,85,10,381255,1652865 +44988,314,2,5413,43155 +44989,273,7,128215,126409 +44990,234,1,340101,1176 +44991,234,1,120,108 +44992,328,6,332567,1463527 +44993,234,1,252680,909318 +44994,273,7,66187,20075 +44995,273,7,15489,38335 +44996,273,7,38908,204272 +44997,97,7,8619,1812134 +44998,5,10,101185,1026354 +44999,204,9,28974,1120151 +45000,387,10,202214,1184327 +45001,286,3,189197,1251 +45002,143,7,9542,1399141 +45003,5,10,26768,96184 +45004,333,2,30624,26175 +45005,11,6,214676,1456616 +45006,287,3,11880,1424926 +45007,340,2,228970,1417838 +45008,360,9,664,1376512 +45009,394,7,42418,1399116 +45010,415,3,3059,1899126 +45011,373,7,9563,158916 +45012,387,10,111479,137357 +45013,262,6,274504,432833 +45014,387,10,21430,956657 +45015,204,9,54111,39261 +45016,398,9,76203,1393435 +45017,413,11,27332,10853 +45018,317,10,47426,141672 +45019,104,7,4248,13596 +45020,269,9,49524,9648 +45021,3,5,18392,551520 +45022,234,1,43649,106345 +45023,5,10,7305,52417 +45024,5,10,75137,227688 +45025,20,2,272693,1591749 +45026,105,7,7972,1225 +45027,127,3,52454,110250 +45028,413,11,158942,1140298 +45029,289,6,167810,1455610 +45030,269,9,19754,61250 +45031,273,7,9977,58065 +45032,269,9,9882,9199 +45033,5,10,482,6483 +45034,53,2,243935,1192559 +45035,317,10,43817,1046353 +45036,179,2,337339,1413000 +45037,53,2,16154,1842851 +45038,273,7,73869,570369 +45039,105,7,16455,62086 +45040,22,9,6947,1573088 +45041,387,10,152989,1133587 +45042,373,7,169,1338832 +45043,5,10,257831,1376401 +45044,203,1,14476,1410142 +45045,387,10,11001,56913 +45046,187,11,7299,1341336 +45047,234,1,15661,30458 +45048,395,3,345637,1485791 +45049,314,2,274504,1526508 +45050,269,9,14207,10819 +45051,3,5,75,307 +45052,234,1,57918,73690 +45053,234,1,394723,1148535 +45054,234,1,303857,1083452 +45055,200,3,10796,1452634 +45056,179,2,123109,1418405 +45057,113,9,505,1534936 +45058,208,2,134394,1460753 +45059,148,9,20644,9063 +45060,333,2,270403,1594818 +45061,52,10,26849,1593767 +45062,413,11,312497,1568183 +45063,387,10,96724,372 +45064,148,9,8852,958460 +45065,203,1,43346,1427546 +45066,273,7,304372,72268 +45067,204,9,42472,10009 +45068,52,10,206390,146932 +45069,234,1,21721,89373 +45070,413,11,244610,1401004 +45071,373,7,9532,1399861 +45072,3,5,274857,943 +45073,289,6,177714,1160236 +45074,301,5,76163,61851 +45075,413,11,5967,46934 +45076,234,1,339530,27005 +45077,387,10,2998,9880 +45078,234,1,41569,1197567 +45079,360,3,180305,1453134 +45080,105,7,28663,100579 +45081,317,10,37932,119153 +45082,373,7,324440,1157937 +45083,161,6,338189,1584919 +45084,411,9,3309,1309577 +45085,234,1,253263,6897 +45086,259,3,755,1897882 +45087,269,9,47493,22321 +45088,148,9,288977,6630 +45089,292,3,263115,1745878 +45090,75,5,100770,280833 +45091,226,2,18475,1815002 +45092,317,10,124680,938945 +45093,403,10,25078,119021 +45094,234,1,152653,1104855 +45095,387,10,309929,96290 +45096,204,9,88288,14022 +45097,160,3,190955,1372092 +45098,413,11,98536,13972 +45099,232,10,12622,3317 +45100,75,5,277355,1495870 +45101,87,7,2105,1552533 +45102,148,9,7916,1438588 +45103,204,9,10075,62438 +45104,209,7,8204,1399326 +45105,413,11,14829,550924 +45106,148,9,42188,26194 +45107,234,1,15148,77947 +45108,235,5,257088,1153031 +45109,3,5,412209,1326012 +45110,317,10,140032,40 +45111,3,5,385114,1584424 +45112,105,7,347258,1525127 +45113,413,11,469172,980729 +45114,105,7,177714,1160234 +45115,12,10,46169,135253 +45116,196,7,4248,9651 +45117,122,8,329865,1777656 +45118,148,9,70981,20507 +45119,160,3,214756,1406839 +45120,317,10,345489,1479474 +45121,53,2,4641,38702 +45122,234,1,809,12079 +45123,387,10,17744,3638 +45124,208,2,328429,1379958 +45125,3,5,69921,1108467 +45126,53,2,1483,36180 +45127,234,1,102272,10249 +45128,327,7,16444,7391 +45129,203,1,10395,1395373 +45130,192,5,9358,1410583 +45131,181,7,5915,8653 +45132,53,2,121230,4350 +45133,3,5,7326,52449 +45134,303,3,21786,1412134 +45135,360,9,1624,1568650 +45136,204,9,407448,1393435 +45137,3,5,678,10150 +45138,273,7,44458,78991 +45139,148,9,47536,8380 +45140,277,3,10590,1555006 +45141,273,7,10857,67273 +45142,236,8,1647,1403738 +45143,317,10,44388,1764642 +45144,387,10,418378,1191056 +45145,198,6,293167,1759795 +45146,387,10,20421,12085 +45147,3,5,6934,51469 +45148,143,7,109424,16683 +45149,387,10,26165,87506 +45150,15,6,149509,1444292 +45151,317,10,20438,99591 +45152,387,10,175171,30011 +45153,314,2,20312,1418014 +45154,196,7,145135,1417873 +45155,203,1,117,74823 +45156,182,8,2172,1635811 +45157,234,1,69278,555975 +45158,413,11,52556,1603625 +45159,52,10,17770,1569460 +45160,105,7,138222,52454 +45161,387,10,10915,4986 +45162,169,3,2107,1442509 +45163,273,7,21325,12455 +45164,349,1,177572,1447506 +45165,3,5,184351,7648 +45166,387,10,36943,42113 +45167,317,10,17473,81916 +45168,273,7,11381,3393 +45169,317,10,142216,47877 +45170,317,10,27052,1170552 +45171,413,11,28820,102113 +45172,291,6,28452,1643883 +45173,132,2,353462,32352 +45174,208,2,7515,1531510 +45175,360,3,178809,1412580 +45176,190,7,755,1851722 +45177,148,9,211139,101240 +45178,3,5,300654,148739 +45179,3,5,32067,11371 +45180,413,11,11257,12759 +45181,245,3,140846,1113583 +45182,105,7,136368,552419 +45183,213,10,18493,108787 +45184,286,3,162458,1006957 +45185,317,10,204768,73391 +45186,387,10,63186,26208 +45187,160,3,19101,9654 +45188,60,1,47508,1665501 +45189,411,9,12113,56697 +45190,387,10,93856,113784 +45191,53,2,10364,1586041 +45192,413,11,32044,7770 +45193,105,7,3024,29649 +45194,75,5,345922,1427838 +45195,413,11,172011,20554 +45196,213,10,279598,1336135 +45197,413,11,99861,1018965 +45198,32,8,6973,1706642 +45199,204,9,76163,1368850 +45200,234,1,68004,96861 +45201,234,1,267389,26436 +45202,235,5,325173,1601642 +45203,286,3,80560,1120041 +45204,387,10,7233,52113 +45205,13,3,289,14773 +45206,97,7,2567,92388 +45207,169,3,41171,21224 +45208,273,7,41110,142387 +45209,204,9,28893,46966 +45210,87,7,38322,1527657 +45211,317,10,59408,43553 +45212,333,2,43266,1377159 +45213,333,2,285848,1303908 +45214,180,7,99261,1632426 +45215,53,2,245891,52682 +45216,3,5,10351,13670 +45217,204,9,2084,1304381 +45218,143,7,275269,1649690 +45219,66,11,61950,1865735 +45220,250,11,1125,1409245 +45221,189,3,19995,1357071 +45222,413,11,11376,69220 +45223,387,10,13911,144066 +45224,239,5,10665,1896003 +45225,373,7,7326,1347998 +45226,3,5,267579,557711 +45227,234,1,31377,108039 +45228,135,3,280092,1548081 +45229,419,10,50126,1222910 +45230,166,9,146243,1583075 +45231,204,9,116350,80260 +45232,148,9,41076,1889076 +45233,234,1,12796,37915 +45234,413,11,28169,1420386 +45235,97,7,2288,1553887 +45236,387,10,206647,932 +45237,269,9,12499,2486 +45238,3,5,9260,5271 +45239,317,10,345918,1130788 +45240,387,10,9624,58205 +45241,234,1,82495,174009 +45242,273,7,11422,491 +45243,226,2,137145,1542313 +45244,387,10,58080,50818 +45245,360,9,413762,1811611 +45246,234,1,18492,83173 +45247,203,1,265208,1402047 +45248,234,1,53168,57607 +45249,113,9,43828,25171 +45250,85,10,424600,1704678 +45251,387,10,3989,34522 +45252,204,9,240832,1367799 +45253,333,2,250066,1495524 +45254,196,7,15613,1428855 +45255,357,3,140607,1550767 +45256,148,9,331161,1446134 +45257,52,10,15089,1341956 +45258,289,6,102161,573309 +45259,52,10,1995,11403 +45260,234,1,11215,56106 +45261,295,7,6947,1389806 +45262,387,10,8844,876 +45263,317,10,25716,146867 +45264,23,9,7220,983446 +45265,234,1,20381,65420 +45266,245,3,1579,1400357 +45267,317,10,433244,1422665 +45268,326,3,10727,1059893 +45269,234,1,55731,36147 +45270,5,10,29368,1264184 +45271,334,7,8619,1416155 +45272,333,2,13965,76209 +45273,399,9,10020,1447348 +45274,413,11,123757,1012097 +45275,77,10,9987,61491 +45276,317,10,76349,1125574 +45277,234,1,814,4610 +45278,387,10,1374,16483 +45279,234,1,268099,73645 +45280,105,7,28510,1324121 +45281,105,7,13393,72523 +45282,317,10,38460,115760 +45283,317,10,142478,936584 +45284,105,7,414910,1274525 +45285,196,7,9846,1710247 +45286,413,11,6522,52056 +45287,413,11,53358,133331 +45288,182,8,20648,1399020 +45289,75,5,398633,1623948 +45290,143,7,352327,1400556 +45291,317,10,25862,14875 +45292,105,7,70554,197872 +45293,234,1,11540,54222 +45294,234,1,57458,69759 +45295,402,11,8292,1302176 +45296,3,5,8467,7413 +45297,196,7,294272,1484178 +45298,204,9,227964,1135310 +45299,387,10,30307,121090 +45300,387,10,28340,50583 +45301,269,9,17692,1329414 +45302,234,1,27351,107941 +45303,301,5,8464,1581503 +45304,234,1,66759,129770 +45305,317,10,29424,14999 +45306,268,7,318922,1575354 +45307,234,1,22683,52038 +45308,204,9,245703,19663 +45309,234,1,55408,116155 +45310,387,10,45398,41133 +45311,262,6,197,1406922 +45312,419,10,34560,87581 +45313,181,7,149883,986972 +45314,317,10,98302,19792 +45315,3,5,12311,70821 +45316,234,1,219666,1204410 +45317,317,10,3476,32083 +45318,143,7,13777,75148 +45319,413,11,33729,3449 +45320,317,10,381356,1588609 +45321,52,10,81110,102503 +45322,387,10,11653,28642 +45323,413,11,12536,45862 +45324,53,2,15749,53115 +45325,333,2,220,191436 +45326,166,9,103432,1830924 +45327,301,5,329865,1420573 +45328,273,7,1418,405 +45329,373,7,10008,1399559 +45330,189,3,351211,1652073 +45331,387,10,8388,7885 +45332,317,10,82080,228158 +45333,387,10,8948,18711 +45334,196,7,278632,1338484 +45335,317,10,104720,116326 +45336,148,9,97051,1324039 +45337,413,11,5917,67894 +45338,182,8,57597,1676193 +45339,3,5,27711,961658 +45340,401,6,9982,1713404 +45341,286,3,24392,91564 +45342,317,10,126043,357113 +45343,158,2,2567,1378244 +45344,413,11,5040,41401 +45345,166,9,6068,1435578 +45346,38,10,163,1117716 +45347,180,7,15199,1641980 +45348,333,2,206647,1551801 +45349,204,9,44398,119323 +45350,234,1,283686,1346215 +45351,286,3,199851,1271294 +45352,226,2,9918,1424894 +45353,148,9,46992,13008 +45354,387,10,2998,15189 +45355,204,9,28448,12512 +45356,234,1,205361,47640 +45357,234,1,13993,78190 +45358,204,9,22292,8506 +45359,234,1,8870,56154 +45360,387,10,4551,37933 +45361,3,5,11601,17765 +45362,75,5,237584,1210423 +45363,273,7,15560,94239 +45364,286,3,31031,1819078 +45365,234,1,86391,933226 +45366,262,6,17577,1340102 +45367,412,9,13798,1565845 +45368,234,1,431093,1305820 +45369,53,2,10770,1441040 +45370,190,7,345918,1695681 +45371,234,1,45726,40054 +45372,317,10,332662,1554690 +45373,204,9,31682,7306 +45374,77,10,9953,60869 +45375,273,7,1726,10851 +45376,166,9,59115,1403084 +45377,269,9,44363,1451398 +45378,105,7,315057,1528726 +45379,273,7,104674,3350 +45380,269,9,23518,13864 +45381,105,7,28482,1396502 +45382,413,11,3556,6848 +45383,234,1,65874,544171 +45384,203,1,70667,1351732 +45385,53,2,32331,1005624 +45386,97,7,1294,1410128 +45387,273,7,12525,72635 +45388,302,9,425774,1708004 +45389,273,7,322518,930054 +45390,413,11,78403,109941 +45391,5,10,34650,7748 +45392,3,5,44960,1842288 +45393,234,1,38034,1134502 +45394,105,7,27042,97011 +45395,175,5,210913,1405257 +45396,3,5,1926,20035 +45397,175,5,260030,1453125 +45398,317,10,105584,1032968 +45399,387,10,76609,56835 +45400,394,7,11370,75098 +45401,234,1,10735,66960 +45402,269,9,9987,61500 +45403,220,7,16090,26026 +45404,287,3,93856,1335140 +45405,105,7,64792,21690 +45406,3,5,31509,100039 +45407,234,1,10775,65994 +45408,3,5,284288,1547119 +45409,234,1,39057,65429 +45410,317,10,50463,41698 +45411,413,11,71266,562262 +45412,289,6,11886,143786 +45413,333,2,10733,1142796 +45414,53,2,104720,33176 +45415,234,1,325892,1286997 +45416,413,11,33135,1304268 +45417,141,7,44896,68016 +45418,394,7,25941,40813 +45419,3,5,407806,1491291 +45420,234,1,75532,4410 +45421,317,10,93862,1238439 +45422,160,3,393562,1760326 +45423,317,10,25716,27785 +45424,234,1,264061,82491 +45425,148,9,48594,1741413 +45426,3,5,125510,1462946 +45427,273,7,14976,965130 +45428,333,2,296523,1780480 +45429,250,11,60599,1400506 +45430,269,9,73247,21645 +45431,3,5,11645,70129 +45432,387,10,11655,10828 +45433,189,3,13954,1398880 +45434,387,10,9659,58407 +45435,373,7,178809,1412587 +45436,234,1,53406,13848 +45437,352,3,10733,1571770 +45438,317,10,19594,95858 +45439,3,5,7220,37925 +45440,166,9,7326,1399046 +45441,102,3,15092,1401992 +45442,203,1,10916,1402123 +45443,52,10,264309,111407 +45444,187,11,14979,1404364 +45445,317,10,301566,1232064 +45446,127,3,33673,34094 +45447,213,10,55853,39708 +45448,269,9,39995,989144 +45449,148,9,100910,7338 +45450,245,3,9846,15798 +45451,3,5,316154,1207757 +45452,204,9,127560,1087547 +45453,314,2,2323,1454947 +45454,53,2,9593,9255 +45455,3,5,274483,1367023 +45456,200,3,10733,1397848 +45457,273,7,21380,1177363 +45458,62,3,10204,1613269 +45459,3,5,10336,3113 +45460,3,5,332567,59528 +45461,53,2,20325,958731 +45462,317,10,220500,1012097 +45463,204,9,154441,1135310 +45464,53,2,2994,5681 +45465,278,6,11370,1581173 +45466,140,9,188927,1081075 +45467,7,3,10320,1821182 +45468,53,2,44936,1432702 +45469,3,5,319340,54287 +45470,234,1,312497,27146 +45471,143,7,284053,3504 +45472,413,11,1633,14189 +45473,269,9,102362,74759 +45474,75,5,206647,61851 +45475,209,7,10476,1393021 +45476,387,10,424014,1420169 +45477,204,9,634,59372 +45478,105,7,13836,894 +45479,52,10,45384,109196 +45480,317,10,463906,34218 +45481,179,2,238,81532 +45482,273,7,57683,1020074 +45483,387,10,300983,1327535 +45484,105,7,52556,1603624 +45485,105,7,66193,12796 +45486,411,9,1966,18989 +45487,190,7,6933,80820 +45488,148,9,266373,1326737 +45489,97,7,1271,1374169 +45490,317,10,33305,1173285 +45491,234,1,64084,21479 +45492,413,11,139826,1123196 +45493,269,9,2666,3964 +45494,317,10,233917,148011 +45495,413,11,98115,1034482 +45496,328,6,44115,1394719 +45497,262,6,857,25453 +45498,148,9,82368,14258 +45499,387,10,109391,1281413 +45500,317,10,42684,128635 +45501,269,9,30141,5634 +45502,413,11,47493,3564 +45503,328,6,233639,1638816 +45504,273,7,40765,4345 +45505,387,10,52358,1008623 +45506,234,1,7459,9340 +45507,5,10,148371,1093744 +45508,234,1,86254,98132 +45509,234,1,26809,137195 +45510,53,2,67748,1172514 +45511,317,10,91715,6210 +45512,97,7,181454,1338134 +45513,200,3,293167,936672 +45514,204,9,78318,32999 +45515,387,10,59387,185443 +45516,234,1,253395,11263 +45517,289,6,340187,1579536 +45518,317,10,27019,18228 +45519,234,1,24486,91666 +45520,188,8,76757,1632596 +45521,387,10,15067,543568 +45522,72,11,328111,1394954 +45523,234,1,154207,56851 +45524,262,6,10391,54272 +45525,148,9,1428,1851741 +45526,269,9,259894,1200899 +45527,53,2,145481,972 +45528,234,1,293412,228286 +45529,234,1,118957,64163 +45530,333,2,4982,1378068 +45531,387,10,664,4782 +45532,188,8,374473,1650283 +45533,250,11,9042,1409245 +45534,317,10,240832,59 +45535,158,2,329440,1495874 +45536,387,10,41703,127124 +45537,317,10,262945,32517 +45538,180,7,122019,1511311 +45539,105,7,10394,132879 +45540,234,1,46943,10179 +45541,13,3,87826,1436958 +45542,3,5,73067,56517 +45543,317,10,413782,1513899 +45544,245,3,409447,1236602 +45545,262,6,72431,1442151 +45546,413,11,6978,8751 +45547,243,3,238589,1432997 +45548,160,3,11351,589961 +45549,286,3,180252,1293602 +45550,234,1,117506,93991 +45551,273,7,28519,1813027 +45552,53,2,271714,7441 +45553,60,1,11799,37495 +45554,262,6,257088,1417979 +45555,249,7,47112,1536112 +45556,269,9,129628,5491 +45557,53,2,98066,61525 +45558,148,9,241258,65736 +45559,234,1,97035,237859 +45560,282,3,198795,1715405 +45561,127,3,9475,27513 +45562,105,7,51549,1634163 +45563,52,10,19176,182664 +45564,234,1,33557,879 +45565,53,2,72207,21592 +45566,269,9,228496,1337321 +45567,291,6,8247,1429245 +45568,226,2,63260,1774064 +45569,387,10,42436,236457 +45570,317,10,24424,91603 +45571,196,7,13954,80819 +45572,77,10,9904,7398 +45573,234,1,366566,20073 +45574,273,7,109122,105479 +45575,289,6,12593,1208537 +45576,387,10,2084,21339 +45577,204,9,58918,1577010 +45578,175,5,9981,1461177 +45579,413,11,3597,8751 +45580,210,9,8467,1853285 +45581,234,1,1721,18834 +45582,317,10,148622,107669 +45583,413,11,431093,979592 +45584,75,5,19688,1701617 +45585,269,9,5040,41402 +45586,317,10,124071,949244 +45587,187,11,4982,548437 +45588,197,5,8470,1652217 +45589,204,9,130717,3945 +45590,127,3,21544,1007395 +45591,317,10,19505,1475642 +45592,3,5,39833,12279 +45593,187,11,13493,1364410 +45594,32,8,41733,1539172 +45595,317,10,339327,1083925 +45596,317,10,403130,22239 +45597,234,1,213121,7929 +45598,317,10,46930,137813 +45599,317,10,18557,453498 +45600,317,10,117506,1298593 +45601,387,10,42515,129308 +45602,32,8,896,1174281 +45603,25,2,338189,1557107 +45604,148,9,9959,11801 +45605,269,9,379019,48913 +45606,143,7,76757,1338152 +45607,387,10,277967,56571 +45608,97,7,5237,146706 +45609,39,3,74,1868859 +45610,286,3,175331,56229 +45611,273,7,10632,6041 +45612,3,5,46184,29635 +45613,148,9,30690,1534933 +45614,413,11,323435,1409026 +45615,289,6,9514,1642574 +45616,234,1,987,3146 +45617,234,1,393521,1607717 +45618,213,10,162374,1144649 +45619,75,5,13849,1413941 +45620,289,6,10693,22066 +45621,53,2,36960,23415 +45622,387,10,300155,1379832 +45623,413,11,51049,6346 +45624,413,11,63360,1441130 +45625,187,11,8619,1050930 +45626,317,10,271039,1328180 +45627,53,2,25407,38229 +45628,317,10,253250,3377 +45629,234,1,438144,932635 +45630,143,7,1991,3687 +45631,234,1,57983,53859 +45632,234,1,128946,1065643 +45633,317,10,16442,1172621 +45634,413,11,52705,3526 +45635,317,10,35396,935637 +45636,203,1,205864,1603901 +45637,3,5,76788,580221 +45638,105,7,34806,21266 +45639,317,10,27019,24541 +45640,3,5,95169,109609 +45641,104,7,266856,1640361 +45642,234,1,82157,1148513 +45643,289,6,9297,1462691 +45644,105,7,13483,5912 +45645,317,10,47848,31892 +45646,234,1,53701,140470 +45647,234,1,29805,10586 +45648,3,5,48131,84960 +45649,234,1,27507,930791 +45650,105,7,77473,1651538 +45651,273,7,383618,223986 +45652,75,5,374473,1411671 +45653,273,7,11869,13386 +45654,413,11,10937,67564 +45655,413,11,26864,69317 +45656,234,1,127564,3632 +45657,291,6,97365,1632373 +45658,180,7,31713,10155 +45659,328,6,12783,1400078 +45660,239,5,315664,1616057 +45661,269,9,287636,930010 +45662,155,3,32085,187067 +45663,226,2,62630,26196 +45664,387,10,156597,1024441 +45665,196,7,11547,1407876 +45666,317,10,181456,134749 +45667,204,9,7006,11821 +45668,387,10,91076,976387 +45669,179,2,89492,1328406 +45670,234,1,291871,1179823 +45671,373,7,245891,1416155 +45672,286,3,27144,97235 +45673,317,10,134355,17843 +45674,413,11,8847,56074 +45675,413,11,71668,1275670 +45676,175,5,157424,1408176 +45677,3,5,337339,58192 +45678,234,1,222935,1053420 +45679,203,1,20372,1271234 +45680,269,9,39907,1549707 +45681,387,10,331958,1120003 +45682,387,10,257331,1304597 +45683,387,10,43688,99379 +45684,273,7,11101,36596 +45685,262,6,14983,1408772 +45686,317,10,141819,7191 +45687,127,3,11577,160598 +45688,286,3,341895,1171342 +45689,234,1,121351,52172 +45690,166,9,13056,1611781 +45691,53,2,318781,20255 +45692,317,10,24020,238852 +45693,234,1,72949,238118 +45694,317,10,47186,17277 +45695,413,11,11354,24186 +45696,273,7,795,5488 +45697,105,7,286532,1107146 +45698,127,3,59118,59374 +45699,387,10,89145,85996 +45700,273,7,12763,40384 +45701,167,3,341174,1408196 +45702,387,10,259358,1301158 +45703,30,5,109439,1399071 +45704,234,1,1595,2303 +45705,164,3,343173,1539434 +45706,317,10,115565,72427 +45707,148,9,343934,1553952 +45708,198,6,333484,1654429 +45709,387,10,31995,14292 +45710,234,1,100791,232858 +45711,208,2,297702,1636865 +45712,160,3,236324,1097214 +45713,234,1,44238,45791 +45714,301,5,205864,1603895 +45715,269,9,46261,5547 +45716,273,7,37958,64156 +45717,148,9,14868,5548 +45718,273,7,112083,30268 +45719,175,5,42418,1827971 +45720,234,1,139170,39779 +45721,190,7,2924,1562059 +45722,387,10,379019,37709 +45723,204,9,29872,11036 +45724,204,9,43497,29345 +45725,387,10,90034,938146 +45726,234,1,119374,1037962 +45727,1,7,403867,568674 +45728,373,7,127521,1338481 +45729,269,9,16996,112520 +45730,273,7,172847,1155548 +45731,209,7,109424,1339460 +45732,401,6,269149,1461999 +45733,317,10,443053,1673693 +45734,387,10,83384,66605 +45735,286,3,325712,1461690 +45736,413,11,27549,68755 +45737,234,1,306323,93002 +45738,12,10,169,1094 +45739,155,3,11610,41150 +45740,203,1,212756,1528011 +45741,317,10,25834,119168 +45742,234,1,442752,222552 +45743,105,7,52021,1188707 +45744,3,5,41591,1940 +45745,234,1,9966,21905 +45746,239,5,4147,108146 +45747,317,10,75244,1085543 +45748,203,1,91333,1459239 +45749,387,10,42640,1403079 +45750,413,11,142402,593122 +45751,203,1,9835,1339468 +45752,317,10,52122,155376 +45753,148,9,19096,1344056 +45754,317,10,430058,1238483 +45755,353,7,109439,1425395 +45756,317,10,332286,1444884 +45757,234,1,43390,69392 +45758,87,7,379019,1394321 +45759,273,7,189,2294 +45760,169,3,857,1404219 +45761,234,1,257302,31982 +45762,269,9,59961,6208 +45763,387,10,3059,1496 +45764,234,1,40826,89981 +45765,317,10,42487,101225 +45766,53,2,16358,14099 +45767,387,10,383064,1578518 +45768,75,5,7551,1401109 +45769,301,5,70074,74989 +45770,301,5,11618,1400535 +45771,208,2,43149,4352 +45772,204,9,303856,1645541 +45773,179,2,167,1549170 +45774,413,11,18333,11906 +45775,3,5,2974,9837 +45776,234,1,229182,9200 +45777,148,9,9286,1441341 +45778,57,2,132363,1407721 +45779,317,10,135313,1102118 +45780,333,2,360249,1635741 +45781,413,11,12276,1363 +45782,413,11,378485,965309 +45783,357,3,19995,1483234 +45784,60,1,31548,1148007 +45785,269,9,101325,589938 +45786,333,2,231145,1115966 +45787,413,11,42206,3770 +45788,179,2,246655,1389623 +45789,397,7,47921,18656 +45790,317,10,39958,115133 +45791,234,1,61799,31890 +45792,273,7,98277,1017244 +45793,333,2,72313,1188594 +45794,148,9,199575,1654527 +45795,234,1,408140,9035 +45796,64,6,10193,1442510 +45797,239,5,634,1314937 +45798,333,2,15472,1428521 +45799,203,1,62492,1472429 +45800,52,10,16214,1614010 +45801,234,1,110972,122583 +45802,413,11,27983,30259 +45803,53,2,307081,4190 +45804,209,7,153,2889 +45805,148,9,13493,20570 +45806,317,10,420648,57865 +45807,148,9,11415,13677 +45808,234,1,183015,64417 +45809,269,9,66125,33195 +45810,234,1,53387,13848 +45811,413,11,298228,98865 +45812,403,10,52203,101520 +45813,204,9,10491,23773 +45814,226,2,243935,1414916 +45815,3,5,44000,30932 +45816,196,7,1125,1335122 +45817,53,2,13058,1320625 +45818,413,11,95169,1355356 +45819,97,7,60855,1396506 +45820,34,8,1381,30034 +45821,143,7,140,979 +45822,234,1,33586,96323 +45823,413,11,51212,11208 +45824,273,7,57103,8503 +45825,413,11,51601,107683 +45826,413,11,241930,931346 +45827,72,11,1624,4502 +45828,413,11,1966,20296 +45829,234,1,301804,551463 +45830,353,7,18890,1399326 +45831,413,11,204922,70506 +45832,209,7,1690,1404546 +45833,377,3,9946,1767308 +45834,234,1,32552,76381 +45835,234,1,120942,35784 +45836,360,9,369406,1872426 +45837,387,10,4248,35741 +45838,3,5,40130,39014 +45839,327,7,1369,16573 +45840,234,1,18673,83594 +45841,3,5,14615,14678 +45842,77,10,4930,40166 +45843,143,7,422,1537155 +45844,360,3,18417,42037 +45845,387,10,96935,10533 +45846,204,9,102629,1170240 +45847,317,10,120280,232314 +45848,394,7,223485,1409297 +45849,234,1,11777,64061 +45850,234,1,84655,18854 +45851,269,9,364690,969405 +45852,250,11,69668,1407205 +45853,387,10,8391,55439 +45854,234,1,92716,50577 +45855,387,10,31287,165460 +45856,415,3,42542,1015792 +45857,105,7,271185,1493983 +45858,196,7,11017,1227175 +45859,291,6,109424,1545988 +45860,210,9,227975,40296 +45861,234,1,329819,25340 +45862,413,11,14873,58833 +45863,234,1,417406,1375988 +45864,234,1,369363,1563238 +45865,234,1,9030,56735 +45866,53,2,52847,11491 +45867,244,3,35,1447310 +45868,387,10,56533,19480 +45869,127,3,329865,58911 +45870,3,5,73194,32996 +45871,97,7,5289,117242 +45872,175,5,25376,1555695 +45873,398,9,18,1034754 +45874,360,3,21927,1416945 +45875,234,1,279543,143676 +45876,97,7,13483,92376 +45877,413,11,64568,29668 +45878,317,10,411081,1504640 +45879,181,7,54845,42638 +45880,105,7,34181,1876049 +45881,105,7,298787,1376945 +45882,53,2,227306,4061 +45883,28,9,11377,1548670 +45884,52,10,154,1791 +45885,413,11,29611,68381 +45886,317,10,13486,141462 +45887,234,1,339547,507842 +45888,74,5,376501,1791787 +45889,198,6,245703,1632006 +45890,190,7,28178,1532073 +45891,3,5,7006,47102 +45892,387,10,343795,41887 +45893,203,1,32049,1400833 +45894,304,10,110001,1382971 +45895,327,7,345775,1621095 +45896,75,5,12113,1405394 +45897,46,5,28178,1532356 +45898,169,3,9286,1397174 +45899,204,9,9950,60794 +45900,234,1,318359,4133 +45901,387,10,11635,70097 +45902,268,7,312221,1352422 +45903,269,9,343369,1385645 +45904,72,11,7299,1433742 +45905,327,7,41963,1564867 +45906,196,7,51250,1452335 +45907,314,2,74,1406572 +45908,234,1,169721,1137548 +45909,5,10,3024,29533 +45910,317,10,53168,1135966 +45911,273,7,16026,123270 +45912,234,1,138191,1108168 +45913,234,1,218778,61069 +45914,273,7,259593,18593 +45915,413,11,44282,935102 +45916,52,10,108224,1310225 +45917,333,2,379019,1780131 +45918,287,3,26679,1207076 +45919,269,9,90616,1692107 +45920,413,11,381691,1620964 +45921,234,1,11472,10965 +45922,209,7,10724,379 +45923,273,7,362178,25472 +45924,113,9,18,63601 +45925,387,10,11953,34372 +45926,97,7,4887,1136769 +45927,204,9,3059,1899112 +45928,104,7,4982,1551041 +45929,217,3,11024,1673549 +45930,234,1,265180,68519 +45931,97,7,1877,1392126 +45932,269,9,114096,14879 +45933,281,6,6947,1761933 +45934,234,1,264264,11401 +45935,234,1,71805,22558 +45936,161,6,19501,1772182 +45937,269,9,254007,1448762 +45938,373,7,44732,1396413 +45939,3,5,152989,1179891 +45940,269,9,25796,2396 +45941,97,7,14145,1416980 +45942,234,1,29129,88820 +45943,204,9,31042,118290 +45944,387,10,54318,5308 +45945,141,7,15794,1592140 +45946,234,1,73147,32297 +45947,269,9,84340,1279526 +45948,234,1,268618,1156484 +45949,234,1,24238,92733 +45950,127,3,638,9554 +45951,60,1,33273,1508479 +45952,291,6,223485,1531097 +45953,239,5,8870,1428556 +45954,317,10,3870,4956 +45955,269,9,8669,11004 +45956,373,7,188826,1338374 +45957,317,10,402536,1141078 +45958,196,7,169,1439426 +45959,333,2,95504,14498 +45960,3,5,122677,12235 +45961,60,1,1480,1455432 +45962,209,7,2046,1339459 +45963,413,11,43367,13973 +45964,105,7,38303,46324 +45965,180,7,43773,545101 +45966,387,10,11635,57130 +45967,388,9,10320,1548665 +45968,306,7,144680,1847981 +45969,234,1,38547,59758 +45970,317,10,1691,16847 +45971,360,3,13336,1335415 +45972,37,3,24154,90504 +45973,204,9,3563,32904 +45974,179,2,10395,1521508 +45975,273,7,12128,71383 +45976,3,5,6589,28240 +45977,387,10,329805,64210 +45978,304,10,372226,550172 +45979,328,6,88273,1635804 +45980,175,5,10733,1397849 +45981,54,10,348537,14351 +45982,204,9,341689,1711027 +45983,3,5,7299,647 +45984,234,1,80281,225331 +45985,234,1,19551,101233 +45986,60,1,70753,1663163 +45987,273,7,16249,57337 +45988,234,1,78734,37362 +45989,234,1,70351,183659 +45990,53,2,12631,1872453 +45991,234,1,94568,106805 +45992,413,11,230428,455575 +45993,105,7,244117,1332309 +45994,182,8,340187,1579539 +45995,234,1,28,1776 +45996,317,10,334394,1496322 +45997,148,9,88288,8508 +45998,5,10,286971,1355722 +45999,413,11,376660,55985 +46000,339,2,10351,59287 +46001,234,1,13741,48514 +46002,317,10,233490,82442 +46003,234,1,11897,37360 +46004,234,1,44256,130630 +46005,262,6,2486,25459 +46006,387,10,8869,34218 +46007,397,7,28564,27969 +46008,317,10,312497,133791 +46009,3,5,2135,1095 +46010,148,9,18801,1330900 +46011,317,10,32124,108927 +46012,269,9,423078,1700420 +46013,234,1,360592,1512111 +46014,413,11,402582,935243 +46015,58,2,379019,1780178 +46016,97,7,7454,1393866 +46017,387,10,18209,18266 +46018,387,10,40761,56927 +46019,53,2,101852,1500902 +46020,387,10,3554,32767 +46021,207,3,2105,1552174 +46022,413,11,184341,61847 +46023,3,5,9577,59433 +46024,234,1,121154,36693 +46025,387,10,25626,1125575 +46026,234,1,25536,25236 +46027,234,1,1903,11649 +46028,113,9,13056,1409701 +46029,209,7,773,95842 +46030,343,3,18731,18899 +46031,234,1,5759,45407 +46032,3,5,3055,3637 +46033,158,2,312221,1578229 +46034,273,7,28710,937497 +46035,234,1,11524,638 +46036,269,9,45562,999551 +46037,97,7,8916,1398947 +46038,200,3,44943,1403402 +46039,269,9,11633,70100 +46040,52,10,50079,253544 +46041,373,7,194722,1408284 +46042,317,10,339367,229109 +46043,204,9,52864,33020 +46044,66,11,16442,68090 +46045,413,11,284053,225628 +46046,234,1,98302,70854 +46047,413,11,43434,23397 +46048,204,9,43491,32999 +46049,143,7,15092,1392083 +46050,333,2,46931,1595838 +46051,387,10,120831,34741 +46052,387,10,25551,4357 +46053,60,1,99329,1694696 +46054,273,7,747,1323809 +46055,3,5,3784,11099 +46056,413,11,21786,1050348 +46057,72,11,10145,1446691 +46058,52,10,12697,1125166 +46059,349,1,10198,1447436 +46060,373,7,44115,40819 +46061,273,7,11902,53908 +46062,57,2,225728,1367647 +46063,286,3,209032,1192395 +46064,303,3,6171,970003 +46065,317,10,79580,587509 +46066,74,5,356752,1841573 +46067,165,9,2924,1803764 +46068,234,1,445916,99432 +46069,413,11,374618,1554770 +46070,413,11,196359,1917 +46071,234,1,49106,239485 +46072,160,3,93856,1409870 +46073,387,10,10674,66193 +46074,148,9,4547,11413 +46075,53,2,340881,1341365 +46076,234,1,85984,72206 +46077,413,11,312497,1331892 +46078,169,3,8053,1706548 +46079,234,1,13312,81045 +46080,5,10,11296,68900 +46081,234,1,62616,1210747 +46082,234,1,247218,223693 +46083,5,10,781,11602 +46084,328,6,245692,1412485 +46085,187,11,4547,1400905 +46086,415,3,17295,32672 +46087,3,5,210092,1064883 +46088,143,7,332662,1570530 +46089,234,1,113194,1056719 +46090,60,1,220,1312999 +46091,234,1,74921,228086 +46092,269,9,21629,936638 +46093,77,10,13827,75885 +46094,287,3,172828,1289047 +46095,413,11,15179,64966 +46096,413,11,23966,1039116 +46097,269,9,18671,94166 +46098,317,10,53128,124919 +46099,234,1,18467,70890 +46100,273,7,36634,69813 +46101,75,5,243935,1414941 +46102,317,10,43083,129250 +46103,333,2,393562,1760325 +46104,5,10,108345,70037 +46105,182,8,18093,1536109 +46106,203,1,351901,1558720 +46107,3,5,38908,185831 +46108,53,2,56435,1700654 +46109,53,2,132363,15524 +46110,413,11,57489,1386373 +46111,413,11,34796,1010724 +46112,148,9,17622,39670 +46113,268,7,302026,1570604 +46114,360,3,436,1624058 +46115,387,10,3574,32994 +46116,413,11,170279,1665912 +46117,262,6,302828,1309862 +46118,209,7,46261,1425396 +46119,75,5,10916,211799 +46120,269,9,290999,1361546 +46121,403,10,309809,234279 +46122,75,5,9457,69365 +46123,244,3,13056,80804 +46124,413,11,58985,11474 +46125,180,7,142656,1547492 +46126,317,10,256092,78219 +46127,317,10,98066,81209 +46128,66,11,397365,1287335 +46129,317,10,197210,1650243 +46130,189,3,318553,1647032 +46131,105,7,82448,37084 +46132,413,11,76703,1093440 +46133,75,5,312831,1594162 +46134,262,6,199575,1654518 +46135,328,6,329865,113122 +46136,262,6,263472,1510552 +46137,317,10,111398,125690 +46138,273,7,9609,4140 +46139,234,1,53256,1071 +46140,327,7,42251,1446544 +46141,105,7,192573,1325570 +46142,5,10,7980,53491 +46143,317,10,153781,146433 +46144,182,8,14019,76275 +46145,53,2,334299,1646386 +46146,376,10,134368,57650 +46147,249,7,8464,1395689 +46148,182,8,169,1706677 +46149,269,9,10391,8315 +46150,3,5,68063,550306 +46151,234,1,577,5216 +46152,234,1,45324,37852 +46153,148,9,12645,114298 +46154,269,9,240745,963170 +46155,413,11,134435,25169 +46156,234,1,77585,58448 +46157,172,3,755,1877415 +46158,317,10,49559,73153 +46159,317,10,76757,9339 +46160,413,11,70734,1465797 +46161,353,7,13225,1394306 +46162,213,10,16342,80384 +46163,190,7,40466,1341719 +46164,53,2,11880,1018988 +46165,105,7,11610,111442 +46166,269,9,64720,928074 +46167,182,8,267579,1583162 +46168,234,1,17658,54675 +46169,53,2,76465,4127 +46170,411,9,340101,1763656 +46171,3,5,10400,151 +46172,105,7,463800,929145 +46173,74,5,3172,1553244 +46174,234,1,320343,53615 +46175,269,9,9815,59529 +46176,97,7,74,1546875 +46177,75,5,5881,46283 +46178,333,2,61151,4128 +46179,317,10,70086,15903 +46180,234,1,9928,5713 +46181,234,1,396392,103699 +46182,3,5,90030,1939 +46183,143,7,356326,1283379 +46184,148,9,3549,32724 +46185,204,9,86608,16892 +46186,148,9,146238,965663 +46187,269,9,49502,37468 +46188,180,7,57230,1625945 +46189,317,10,196235,43936 +46190,413,11,33016,41412 +46191,234,1,278717,235112 +46192,262,6,44943,1379051 +46193,3,5,53230,32996 +46194,234,1,70581,558905 +46195,317,10,361050,20976 +46196,75,5,12113,1405389 +46197,234,1,10871,7671 +46198,53,2,54563,1600184 +46199,105,7,22023,6918 +46200,273,7,227973,23486 +46201,209,7,20648,1394984 +46202,148,9,10145,17221 +46203,273,7,106417,135382 +46204,387,10,12617,57624 +46205,413,11,340584,1329399 +46206,349,1,98566,1459746 +46207,413,11,14435,27226 +46208,234,1,125513,106577 +46209,40,1,378441,1797414 +46210,387,10,236395,89084 +46211,148,9,13823,75800 +46212,208,2,11358,3995 +46213,234,1,412209,1104837 +46214,317,10,28597,7131 +46215,52,10,37329,1066563 +46216,234,1,30527,1724 +46217,387,10,48949,1070826 +46218,413,11,17464,81892 +46219,3,5,43241,14431 +46220,187,11,205584,1391719 +46221,413,11,371741,1851 +46222,3,5,4365,37593 +46223,273,7,28176,42462 +46224,234,1,214910,68905 +46225,148,9,1369,8848 +46226,234,1,163053,1037658 +46227,401,6,10567,1447357 +46228,387,10,4344,36565 +46229,122,8,163,1549227 +46230,387,10,1899,19837 +46231,3,5,954,1258 +46232,239,5,6947,1573081 +46233,317,10,24469,71082 +46234,187,11,2046,1392901 +46235,413,11,48805,5821 +46236,387,10,19995,2710 +46237,148,9,69,71560 +46238,394,7,24679,1401259 +46239,387,10,149793,81286 +46240,273,7,5767,1938 +46241,196,7,241855,1470707 +46242,234,1,86279,85456 +46243,148,9,20919,1340722 +46244,182,8,11645,1534588 +46245,143,7,12573,9651 +46246,104,7,10727,1414965 +46247,52,10,64942,1125475 +46248,103,6,295627,1368957 +46249,3,5,8463,30149 +46250,234,1,255948,20658 +46251,203,1,126090,1599484 +46252,317,10,176124,15220 +46253,413,11,22784,12882 +46254,105,7,199415,1701889 +46255,75,5,691,10668 +46256,3,5,14400,52353 +46257,317,10,24767,12921 +46258,387,10,244534,40863 +46259,269,9,407559,60430 +46260,234,1,152539,39244 +46261,333,2,16342,1410125 +46262,413,11,9405,58380 +46263,97,7,9358,548445 +46264,413,11,156597,81872 +46265,203,1,23966,1419805 +46266,76,2,399790,95917 +46267,328,6,15476,1392970 +46268,373,7,87826,1395255 +46269,52,10,15440,934171 +46270,333,2,90799,33177 +46271,413,11,31527,2894 +46272,413,11,14931,4869 +46273,286,3,22554,88915 +46274,148,9,29136,1324466 +46275,323,10,418072,1685110 +46276,64,6,19736,1424133 +46277,234,1,4365,16157 +46278,179,2,269173,972151 +46279,269,9,11377,14349 +46280,234,1,12158,5140 +46281,167,3,264525,1857583 +46282,108,10,53851,144426 +46283,273,7,11329,19155 +46284,413,11,22682,1176925 +46285,387,10,435737,87150 +46286,262,6,294272,1660729 +46287,234,1,15020,173004 +46288,286,3,93828,41847 +46289,317,10,289183,1357749 +46290,141,7,8470,76152 +46291,413,11,412202,1669188 +46292,198,6,334074,1640708 +46293,53,2,33511,45058 +46294,24,5,11024,1399899 +46295,234,1,96958,45791 +46296,209,7,283995,1547667 +46297,390,6,15653,180394 +46298,317,10,121822,1075004 +46299,75,5,2503,1332515 +46300,301,5,159211,1438459 +46301,413,11,142478,1117365 +46302,413,11,84284,1340096 +46303,353,7,3172,1408706 +46304,234,1,184341,57454 +46305,387,10,23739,6779 +46306,175,5,623,1389139 +46307,46,5,188102,1845778 +46308,105,7,83079,26064 +46309,415,3,84030,1579654 +46310,148,9,88288,9799 +46311,317,10,28387,5656 +46312,317,10,94811,32994 +46313,282,3,6947,1761871 +46314,413,11,23857,1042439 +46315,409,7,11577,100203 +46316,373,7,169298,1407254 +46317,413,11,29272,1117591 +46318,60,1,46872,1539063 +46319,46,5,116463,1691481 +46320,45,9,1271,1394739 +46321,286,3,37181,1534556 +46322,387,10,24448,91628 +46323,387,10,93492,21228 +46324,113,9,9286,62859 +46325,196,7,9836,1745243 +46326,52,10,194407,1017989 +46327,53,2,84892,4190 +46328,3,5,55544,70 +46329,317,10,69619,31033 +46330,387,10,11397,66514 +46331,317,10,30265,9747 +46332,387,10,28577,19459 +46333,234,1,102961,98136 +46334,387,10,356191,1549810 +46335,3,5,290825,960350 +46336,387,10,3520,32376 +46337,226,2,52867,16653 +46338,317,10,103215,1033136 +46339,387,10,106358,33374 +46340,196,7,9946,3193 +46341,188,8,2924,1803788 +46342,373,7,13205,1228124 +46343,317,10,62741,235923 +46344,105,7,118497,130879 +46345,3,5,41970,1359572 +46346,234,1,5928,21958 +46347,234,1,191476,27977 +46348,239,5,338189,1650748 +46349,273,7,1859,2500 +46350,273,7,10874,947 +46351,3,5,246741,33302 +46352,53,2,270899,26099 +46353,188,8,188102,1813505 +46354,148,9,12476,1064441 +46355,234,1,28363,19396 +46356,333,2,206647,1551804 +46357,53,2,296523,8707 +46358,53,2,24584,8805 +46359,387,10,38761,232185 +46360,53,2,91607,6851 +46361,204,9,398786,1665421 +46362,182,8,318553,1593985 +46363,234,1,251555,113417 +46364,394,7,9914,1540860 +46365,244,3,11618,1339432 +46366,234,1,445993,1088096 +46367,234,1,73624,135754 +46368,413,11,169,2046 +46369,60,1,13105,58471 +46370,413,11,129,1697 +46371,317,10,111960,1814900 +46372,373,7,744,1378169 +46373,413,11,16077,4579 +46374,234,1,42182,127537 +46375,413,11,42487,1647144 +46376,148,9,31596,1885597 +46377,234,1,322317,1186433 +46378,234,1,39195,10051 +46379,349,1,10948,67628 +46380,12,10,168259,8162 +46381,317,10,255647,85652 +46382,148,9,41590,15223 +46383,317,10,15486,75725 +46384,53,2,57011,1328775 +46385,52,10,127380,7 +46386,143,7,239566,1400558 +46387,328,6,41283,1336715 +46388,3,5,11216,39614 +46389,234,1,32845,112914 +46390,75,5,703,3659 +46391,383,3,273481,1533677 +46392,234,1,421962,1722259 +46393,286,3,110887,1365206 +46394,413,11,580,16207 +46395,325,5,924,1551648 +46396,204,9,72984,1764698 +46397,273,7,16077,79181 +46398,105,7,83456,86873 +46399,234,1,10207,46085 +46400,32,8,280617,1035399 +46401,387,10,369245,56845 +46402,97,7,14979,1371064 +46403,317,10,25998,228291 +46404,269,9,14868,5547 +46405,273,7,5481,1346863 +46406,204,9,31146,1841285 +46407,182,8,16232,1403412 +46408,155,3,153,1776 +46409,52,10,18671,13569 +46410,317,10,13653,1368969 +46411,289,6,9514,1642573 +46412,269,9,297853,21971 +46413,317,10,287301,593082 +46414,105,7,17654,62908 +46415,169,3,333371,1558087 +46416,317,10,285685,1350675 +46417,269,9,1628,18224 +46418,317,10,72474,100914 +46419,289,6,5559,1460472 +46420,234,1,21627,7623 +46421,387,10,12158,71486 +46422,340,2,418437,1621364 +46423,66,11,9472,960407 +46424,103,6,76757,1393326 +46425,269,9,170279,1665953 +46426,196,7,52454,1403325 +46427,234,1,116160,30833 +46428,398,9,58244,1391751 +46429,234,1,78256,64114 +46430,413,11,44458,130500 +46431,234,1,43001,605481 +46432,3,5,31498,103050 +46433,333,2,16410,38060 +46434,273,7,368006,5288 +46435,250,11,332567,1434544 +46436,317,10,246417,1602400 +46437,234,1,129542,32632 +46438,387,10,21208,142686 +46439,59,3,8916,1677816 +46440,234,1,281418,229180 +46441,413,11,1394,23363 +46442,234,1,203321,110169 +46443,3,5,344147,1129834 +46444,328,6,4248,1537541 +46445,234,1,39800,66605 +46446,64,6,448847,1758957 +46447,333,2,9613,12614 +46448,187,11,255343,1335416 +46449,209,7,257088,1551918 +46450,204,9,481,6532 +46451,387,10,213443,559101 +46452,317,10,282268,10707 +46453,273,7,259894,1084640 +46454,125,2,375366,1740799 +46455,317,10,2321,68377 +46456,52,10,354857,222169 +46457,277,7,3597,1790556 +46458,273,7,43157,102365 +46459,415,3,56937,552323 +46460,182,8,206647,1553236 +46461,413,11,12076,49560 +46462,387,10,23107,147010 +46463,373,7,266856,1394004 +46464,234,1,21451,68 +46465,269,9,264555,1396780 +46466,317,10,49943,130938 +46467,209,7,12536,1392919 +46468,413,11,4916,57925 +46469,53,2,209764,1294087 +46470,234,1,412363,1075506 +46471,317,10,227552,178878 +46472,324,3,14794,20911 +46473,273,7,38922,65681 +46474,234,1,86820,39104 +46475,20,2,274857,1568116 +46476,413,11,92657,6958 +46477,317,10,163942,1012236 +46478,387,10,119409,585035 +46479,204,9,309929,19377 +46480,317,10,315010,9156 +46481,317,10,256593,106654 +46482,234,1,70881,84034 +46483,160,3,181533,146143 +46484,269,9,11077,45090 +46485,200,3,8204,1550775 +46486,273,7,6171,1213 +46487,234,1,219572,110511 +46488,317,10,45875,66878 +46489,3,5,318781,5865 +46490,53,2,44389,1522041 +46491,234,1,14145,130790 +46492,60,1,43075,67426 +46493,236,8,8470,1208906 +46494,160,3,9032,1074163 +46495,67,10,408381,1447687 +46496,234,1,285935,1028274 +46497,175,5,7548,1393883 +46498,234,1,10534,578 +46499,381,9,9472,1567971 +46500,317,10,47911,115128 +46501,413,11,94513,119294 +46502,273,7,30508,88341 +46503,234,1,83114,56212 +46504,268,7,28178,1085004 +46505,270,9,18,23456 +46506,289,6,378236,1452999 +46507,413,11,25385,21012 +46508,105,7,47112,33391 +46509,157,3,19157,84212 +46510,373,7,203833,1338969 +46511,175,5,7551,1399876 +46512,148,9,109424,966721 +46513,287,3,284564,104028 +46514,317,10,12764,72259 +46515,191,6,283995,1815937 +46516,105,7,14159,1178236 +46517,105,7,14145,1209075 +46518,169,3,228066,1373714 +46519,413,11,259645,41401 +46520,105,7,332794,2949 +46521,289,6,8916,1353148 +46522,317,10,13369,96318 +46523,317,10,276123,1330004 +46524,262,6,9664,1408384 +46525,387,10,265208,348 +46526,122,8,241258,1795854 +46527,234,1,71147,21819 +46528,148,9,13848,1009061 +46529,387,10,5481,44956 +46530,317,10,353326,1496011 +46531,250,11,353728,1444300 +46532,273,7,223485,549315 +46533,387,10,15640,51601 +46534,413,11,31532,29595 +46535,273,7,97683,83979 +46536,53,2,66894,1522820 +46537,182,8,3549,32721 +46538,234,1,41331,550104 +46539,209,7,8916,5132 +46540,234,1,70436,11266 +46541,5,10,11972,69786 +46542,198,6,302026,1570597 +46543,262,6,56937,1167831 +46544,3,5,59408,23688 +46545,387,10,9264,102634 +46546,3,5,137145,1453852 +46547,234,1,210910,1194699 +46548,77,10,30508,10230 +46549,234,1,5482,25826 +46550,289,6,29233,150755 +46551,317,10,91628,17700 +46552,105,7,7863,37757 +46553,273,7,47426,1046764 +46554,148,9,2731,1145436 +46555,289,6,12593,1237485 +46556,204,9,57993,16753 +46557,317,10,197089,49183 +46558,5,10,260312,1330169 +46559,234,1,38681,32495 +46560,196,7,9543,1414177 +46561,234,1,357529,144384 +46562,239,5,287903,1569344 +46563,140,9,122,1321 +46564,75,5,41733,1415632 +46565,72,11,11236,1748716 +46566,87,7,6947,232158 +46567,200,3,15092,1414551 +46568,58,2,188102,1845782 +46569,262,6,318781,1622816 +46570,3,5,36634,96252 +46571,269,9,12476,31465 +46572,387,10,15712,109889 +46573,413,11,374473,15495 +46574,317,10,47110,935643 +46575,108,10,11645,6210 +46576,75,5,76170,1428556 +46577,204,9,329010,1417839 +46578,333,2,274857,1715583 +46579,204,9,279690,1460773 +46580,234,1,298935,935267 +46581,413,11,45988,1730423 +46582,234,1,37451,19457 +46583,317,10,40852,31155 +46584,234,1,14773,77306 +46585,204,9,240832,1367798 +46586,317,10,24971,92928 +46587,3,5,76203,54926 +46588,292,3,163,1727298 +46589,317,10,64792,63977 +46590,186,6,395992,1770980 +46591,403,10,22307,1150 +46592,317,10,20034,86482 +46593,413,11,9602,14457 +46594,317,10,52903,235504 +46595,53,2,21629,1459842 +46596,333,2,3309,1350163 +46597,226,2,68737,1492146 +46598,234,1,50849,22467 +46599,234,1,1483,17279 +46600,106,3,2692,30804 +46601,66,11,32872,1695807 +46602,236,8,19995,1401805 +46603,387,10,42825,13778 +46604,5,10,19971,30724 +46605,317,10,80350,1381413 +46606,3,5,19528,70111 +46607,53,2,32604,1007316 +46608,188,8,2300,1870700 +46609,234,1,102057,69946 +46610,317,10,200324,11436 +46611,182,8,30361,25941 +46612,327,7,25376,93652 +46613,387,10,73873,936280 +46614,187,11,109424,1408377 +46615,105,7,15653,38335 +46616,234,1,357390,240774 +46617,234,1,121640,53090 +46618,387,10,353879,1172490 +46619,373,7,5289,1409734 +46620,105,7,64720,937895 +46621,357,3,9286,1441358 +46622,77,10,6443,40476 +46623,87,7,11024,86198 +46624,387,10,51209,876 +46625,415,3,1394,1023549 +46626,333,2,57419,1599839 +46627,262,6,110416,1297465 +46628,317,10,64805,552976 +46629,262,6,70667,1448321 +46630,53,2,50001,960148 +46631,3,5,356758,1433174 +46632,413,11,26809,76746 +46633,40,1,181533,10956 +46634,226,2,7916,1404702 +46635,175,5,3035,1542033 +46636,317,10,71381,562717 +46637,234,1,70864,239293 +46638,20,2,8247,1526834 +46639,3,5,7288,19464 +46640,3,5,419430,55905 +46641,387,10,2757,202 +46642,269,9,10268,38491 +46643,289,6,214756,1453934 +46644,387,10,107811,52114 +46645,105,7,10753,28156 +46646,387,10,20758,26159 +46647,57,2,10320,1409824 +46648,387,10,64465,35256 +46649,413,11,22744,19334 +46650,52,10,23048,347335 +46651,52,10,84228,562691 +46652,333,2,6440,1415333 +46653,148,9,315837,1717991 +46654,226,2,40562,1523409 +46655,234,1,10748,21677 +46656,287,3,210047,88559 +46657,180,7,52270,792562 +46658,60,1,66526,588022 +46659,204,9,13600,982992 +46660,387,10,44038,130080 +46661,234,1,13956,76100 +46662,413,11,241239,968532 +46663,387,10,15613,49917 +46664,262,6,72431,1484209 +46665,387,10,1914,19915 +46666,273,7,32532,109314 +46667,92,7,10590,1451409 +46668,317,10,310137,1397796 +46669,232,10,57866,196436 +46670,394,7,14510,83087 +46671,234,1,38749,9182 +46672,3,5,259894,1044613 +46673,53,2,11618,7735 +46674,413,11,43809,9058 +46675,204,9,131764,127200 +46676,398,9,2105,1334782 +46677,317,10,65887,32096 +46678,104,7,13798,1565837 +46679,413,11,102362,62434 +46680,303,3,1966,1424180 +46681,269,9,40221,228973 +46682,387,10,10409,6201 +46683,250,11,274857,1829888 +46684,234,1,19237,6627 +46685,287,3,79316,1547672 +46686,74,5,283995,1815824 +46687,234,1,36243,46366 +46688,204,9,55534,1426727 +46689,373,7,395883,1445371 +46690,148,9,347945,1618762 +46691,148,9,11859,1525315 +46692,105,7,97051,1324033 +46693,301,5,14476,1411672 +46694,3,5,29449,12235 +46695,317,10,38955,1173612 +46696,317,10,284564,16848 +46697,291,6,294652,1560423 +46698,387,10,42218,1214558 +46699,387,10,17820,29618 +46700,225,7,289225,1535971 +46701,234,1,341007,1299467 +46702,317,10,209251,1176273 +46703,5,10,27052,1170553 +46704,182,8,242310,1367135 +46705,143,7,857,2216 +46706,413,11,8272,19759 +46707,105,7,86413,933248 +46708,277,7,634,1576017 +46709,387,10,42794,107464 +46710,53,2,357706,1640338 +46711,234,1,18120,82724 +46712,234,1,13173,22214 +46713,333,2,14126,1334502 +46714,67,10,12,225975 +46715,415,3,24238,1186282 +46716,413,11,975,14556 +46717,175,5,22584,1592141 +46718,196,7,177677,117241 +46719,262,6,44732,1396416 +46720,234,1,204802,1187223 +46721,53,2,814,7211 +46722,72,11,274479,1547662 +46723,105,7,364324,63146 +46724,180,7,43828,13960 +46725,234,1,43594,1021585 +46726,413,11,13042,8066 +46727,317,10,325690,1064531 +46728,234,1,1282,4319 +46729,333,2,3023,118306 +46730,286,3,142946,9573 +46731,209,7,314065,1099948 +46732,366,3,14317,142587 +46733,234,1,11795,71300 +46734,3,5,173177,25322 +46735,370,3,655,22608 +46736,234,1,48778,121585 +46737,328,6,4248,1537540 +46738,273,7,3476,3535 +46739,327,7,166886,1599479 +46740,204,9,264309,9062 +46741,105,7,9495,3186 +46742,317,10,9059,70574 +46743,317,10,18047,57536 +46744,273,7,26405,29056 +46745,204,9,53209,9062 +46746,317,10,64156,15159 +46747,236,8,7454,1407674 +46748,226,2,97614,1407007 +46749,204,9,177677,1335539 +46750,387,10,10207,46086 +46751,194,9,298040,1651813 +46752,381,9,59965,1395021 +46753,87,7,287,1449899 +46754,234,1,24837,97140 +46755,317,10,58081,89193 +46756,53,2,258509,46589 +46757,40,1,954,1475003 +46758,209,7,1991,1378724 +46759,413,11,8429,4418 +46760,204,9,91261,8466 +46761,204,9,332079,4349 +46762,175,5,11607,1377133 +46763,3,5,844,1357 +46764,413,11,14615,1098542 +46765,387,10,34723,7775 +46766,328,6,245692,1337651 +46767,75,5,14,1550618 +46768,387,10,52520,33045 +46769,234,1,49521,15217 +46770,181,7,108726,1412627 +46771,387,10,49853,85785 +46772,204,9,1634,18258 +46773,413,11,22602,88976 +46774,317,10,356486,1522132 +46775,3,5,19757,26329 +46776,273,7,317214,1618693 +46777,234,1,51406,1065698 +46778,396,3,2924,1424133 +46779,387,10,363890,1522480 +46780,317,10,39334,122674 +46781,164,3,4147,1536965 +46782,3,5,80775,3637 +46783,234,1,114922,965009 +46784,35,10,14683,73033 +46785,234,1,409536,52849 +46786,399,9,13205,1453569 +46787,413,11,6023,5668 +46788,413,11,103161,929343 +46789,234,1,85009,15183 +46790,225,7,18405,85122 +46791,413,11,96132,33790 +46792,225,7,413452,1734414 +46793,161,6,2567,1394967 +46794,273,7,15797,1802341 +46795,234,1,11869,20869 +46796,234,1,24675,183 +46797,234,1,26823,96362 +46798,273,7,188161,49285 +46799,387,10,151652,1131832 +46800,75,5,13483,1402074 +46801,246,6,284052,1774217 +46802,234,1,73723,8023 +46803,273,7,9286,26981 +46804,413,11,59296,41554 +46805,40,1,62728,959442 +46806,53,2,82655,1071413 +46807,204,9,256962,1377213 +46808,3,5,12526,40511 +46809,373,7,418437,1380479 +46810,273,7,11302,10468 +46811,234,1,1294,16780 +46812,328,6,7916,1438614 +46813,317,10,323675,54047 +46814,317,10,21070,19792 +46815,413,11,4955,32531 +46816,317,10,96419,289472 +46817,179,2,59296,138984 +46818,273,7,377447,79159 +46819,234,1,10937,23393 +46820,75,5,398633,1623945 +46821,51,9,9593,21701 +46822,46,5,312174,1400609 +46823,53,2,81030,590953 +46824,3,5,41495,9057 +46825,317,10,8276,54273 +46826,269,9,322518,1431609 +46827,213,10,70368,148786 +46828,145,5,384737,1739847 +46829,54,10,413232,1157060 +46830,198,6,263115,1736876 +46831,234,1,159142,1140581 +46832,413,11,28261,29971 +46833,158,2,345922,1661396 +46834,286,3,138191,570718 +46835,97,7,14254,1374169 +46836,317,10,382170,55785 +46837,317,10,25500,18176 +46838,234,1,40085,18854 +46839,239,5,294254,1571516 +46840,3,5,11873,3769 +46841,196,7,9032,1423757 +46842,13,5,378441,1797442 +46843,75,5,408381,1657558 +46844,273,7,103731,937895 +46845,317,10,309879,1621466 +46846,311,9,11351,1839455 +46847,75,5,382155,1636679 +46848,234,1,17831,82413 +46849,234,1,46786,58728 +46850,387,10,12526,72638 +46851,269,9,142770,1680206 +46852,5,10,12479,1384517 +46853,234,1,82716,588689 +46854,3,5,138222,110261 +46855,399,9,287233,1450356 +46856,387,10,7085,36843 +46857,234,1,376579,1322031 +46858,317,10,54242,150185 +46859,415,3,43093,102785 +46860,234,1,82080,49450 +46861,131,7,77459,1096440 +46862,74,5,62728,1775718 +46863,53,2,43497,1686530 +46864,394,7,1690,1406241 +46865,226,2,140607,1550637 +46866,234,1,107319,105084 +46867,333,2,2274,23456 +46868,349,1,13205,1779879 +46869,387,10,178809,229002 +46870,175,5,13058,1834848 +46871,234,1,38362,49450 +46872,3,5,191068,8819 +46873,28,9,2300,1870673 +46874,273,7,9095,1528 +46875,334,7,10204,1855076 +46876,286,3,72251,954052 +46877,304,10,275269,1124938 +46878,286,3,85472,115891 +46879,234,1,49098,1126 +46880,92,7,30583,572057 +46881,234,1,46387,110227 +46882,189,3,6972,1401742 +46883,289,6,9297,1462679 +46884,373,7,11607,1341858 +46885,387,10,104776,1268431 +46886,333,2,3556,32783 +46887,203,1,209263,1416438 +46888,234,1,1443,1769 +46889,105,7,31397,1408458 +46890,5,10,163814,1625630 +46891,324,3,177714,1017185 +46892,234,1,13852,42378 +46893,234,1,83501,1830995 +46894,3,5,70801,1313101 +46895,413,11,111042,8505 +46896,317,10,94820,1003239 +46897,53,2,49308,1351630 +46898,413,11,79743,1166041 +46899,387,10,10663,56728 +46900,413,11,2132,21854 +46901,209,7,8053,1363868 +46902,234,1,27832,99116 +46903,250,11,222935,1548696 +46904,87,7,333663,1066776 +46905,3,5,397837,63099 +46906,152,2,29398,7689 +46907,218,1,9314,1689555 +46908,289,6,3933,1448052 +46909,204,9,1165,1376800 +46910,226,2,4248,1667242 +46911,228,2,227306,1195358 +46912,413,11,135708,1103632 +46913,317,10,27031,7449 +46914,234,1,41252,52264 +46915,234,1,83,640 +46916,3,5,48153,49901 +46917,196,7,168259,1413453 +46918,398,9,10665,1334481 +46919,198,6,178809,84577 +46920,413,11,410537,372442 +46921,413,11,102222,60521 +46922,53,2,11056,1209530 +46923,387,10,10703,66773 +46924,179,2,21159,91809 +46925,289,6,329865,1646577 +46926,328,6,312221,1580892 +46927,234,1,285532,56742 +46928,3,5,10663,6899 +46929,234,1,280477,228086 +46930,84,7,337339,1432909 +46931,317,10,49073,141761 +46932,317,10,324251,1424327 +46933,3,5,200,2507 +46934,204,9,11697,5188 +46935,234,1,38043,119476 +46936,75,5,289,1632529 +46937,413,11,257450,1429694 +46938,244,3,52520,1034749 +46939,143,7,448847,1338972 +46940,3,5,293380,29906 +46941,273,7,9516,57778 +46942,406,6,2080,1463785 +46943,269,9,184345,64232 +46944,167,3,302699,1681357 +46945,3,5,18801,3960 +46946,148,9,65787,9587 +46947,97,7,19995,8163 +46948,105,7,64204,14725 +46949,413,11,51739,548754 +46950,53,2,10276,4150 +46951,204,9,61151,32999 +46952,317,10,116554,158298 +46953,234,1,50696,20025 +46954,190,7,211879,1595701 +46955,75,5,5289,1409742 +46956,269,9,97794,1128304 +46957,160,3,66193,1195345 +46958,37,3,214756,1457937 +46959,189,3,2567,1357070 +46960,314,2,48231,1643416 +46961,226,2,356752,1841580 +46962,317,10,39536,216108 +46963,273,7,16551,67274 +46964,204,9,43903,14448 +46965,317,10,17203,57631 +46966,75,5,10145,1695009 +46967,387,10,38282,96627 +46968,234,1,15601,88623 +46969,273,7,4380,5488 +46970,148,9,71805,1337825 +46971,127,3,263115,1394007 +46972,234,1,8985,1086270 +46973,45,9,337339,1565732 +46974,387,10,9296,8685 +46975,291,6,333663,1538207 +46976,105,7,299165,1194383 +46977,13,3,378441,1797485 +46978,204,9,10394,11274 +46979,413,11,200505,7068 +46980,148,9,199155,1641398 +46981,234,1,45861,607 +46982,234,1,137145,1106878 +46983,234,1,241239,556172 +46984,45,9,34106,31969 +46985,234,1,325382,1427250 +46986,204,9,82191,161975 +46987,175,5,74,1378240 +46988,273,7,121006,101711 +46989,273,7,73067,7182 +46990,269,9,55347,17050 +46991,317,10,45562,133210 +46992,333,2,949,14653 +46993,387,10,140887,117576 +46994,75,5,287628,1707981 +46995,226,2,9664,1557595 +46996,234,1,117251,6046 +46997,234,1,37984,25239 +46998,45,9,4133,1378752 +46999,413,11,38920,2705 +47000,148,9,354859,1651568 +47001,52,10,10865,133119 +47002,303,3,177677,1424180 +47003,419,10,47412,138895 +47004,269,9,98115,138291 +47005,234,1,104041,40549 +47006,371,3,8470,1598749 +47007,415,3,601,9972 +47008,273,7,46326,18479 +47009,180,7,37581,3258 +47010,234,1,376660,983909 +47011,3,5,278706,1344796 +47012,77,10,16999,81138 +47013,234,1,219781,1178073 +47014,327,7,8281,54328 +47015,328,6,181533,1597965 +47016,328,6,316042,1403407 +47017,105,7,24403,91575 +47018,289,6,3933,240779 +47019,317,10,331161,1225827 +47020,413,11,10534,9163 +47021,187,11,246655,1384367 +47022,175,5,43727,1555494 +47023,387,10,75315,7336 +47024,72,11,206647,1408363 +47025,394,7,245703,1389133 +47026,269,9,19398,1469353 +47027,186,6,5393,1463785 +47028,75,5,46387,110231 +47029,387,10,140554,1167389 +47030,394,7,99861,900 +47031,182,8,84226,1418442 +47032,234,1,104431,1036281 +47033,143,7,393367,1073191 +47034,5,10,9325,14744 +47035,190,7,25142,125896 +47036,234,1,280495,63937 +47037,208,2,109439,957551 +47038,387,10,61644,606215 +47039,262,6,15476,1392971 +47040,234,1,411442,57832 +47041,269,9,10733,7855 +47042,204,9,285270,1367917 +47043,345,7,9472,1443065 +47044,413,11,42739,28157 +47045,3,5,33305,1185208 +47046,373,7,296523,80822 +47047,234,1,14435,27226 +47048,234,1,180383,1115066 +47049,289,6,273481,1568838 +47050,182,8,14145,1416992 +47051,148,9,376570,1610494 +47052,373,7,60281,9651 +47053,387,10,33016,5140 +47054,273,7,43228,19965 +47055,52,10,25768,141064 +47056,413,11,3092,31524 +47057,87,7,388243,1622334 +47058,387,10,38654,67450 +47059,317,10,24685,92307 +47060,3,5,10604,36967 +47061,317,10,13596,964587 +47062,234,1,110525,81165 +47063,3,5,31021,131709 +47064,148,9,11614,1317643 +47065,3,5,76211,33225 +47066,143,7,12,2216 +47067,53,2,356752,1754080 +47068,234,1,77057,33727 +47069,350,6,194,1638955 +47070,396,3,47386,138801 +47071,234,1,62783,236005 +47072,75,5,28178,1391591 +47073,234,1,41505,80923 +47074,148,9,147106,118291 +47075,413,11,11880,57581 +47076,234,1,11572,69938 +47077,200,3,189,1401146 +47078,387,10,10910,6593 +47079,3,5,118889,32996 +47080,333,2,52867,1429730 +47081,234,1,229221,100345 +47082,53,2,30995,1861812 +47083,234,1,167556,260981 +47084,286,3,14286,84374 +47085,203,1,128270,1533096 +47086,373,7,19995,1376903 +47087,273,7,264555,550893 +47088,387,10,24634,27767 +47089,387,10,1721,18834 +47090,97,7,13798,572057 +47091,273,7,122019,234726 +47092,127,3,37030,64703 +47093,234,1,1926,20025 +47094,180,7,80713,1385149 +47095,273,7,18638,67637 +47096,413,11,11576,12143 +47097,317,10,294272,592493 +47098,234,1,7014,51833 +47099,409,7,3172,1738165 +47100,3,5,5618,45667 +47101,234,1,2105,3288 +47102,155,3,163,23964 +47103,234,1,10055,1327402 +47104,269,9,38978,1619131 +47105,317,10,339342,1466676 +47106,387,10,8080,21807 +47107,234,1,54503,95675 +47108,269,9,48210,10323 +47109,160,3,333484,23285 +47110,301,5,2105,1552171 +47111,333,2,691,8939 +47112,332,8,9928,1453938 +47113,387,10,42499,103132 +47114,3,5,1647,7262 +47115,269,9,16296,80249 +47116,143,7,205584,577468 +47117,187,11,8292,1454536 +47118,3,5,258384,11577 +47119,175,5,381015,1828379 +47120,387,10,6187,50538 +47121,387,10,274479,17883 +47122,289,6,2897,148154 +47123,269,9,363439,1336707 +47124,234,1,48627,82800 +47125,273,7,95136,21514 +47126,286,3,49073,414697 +47127,3,5,47878,7067 +47128,287,3,312831,1594191 +47129,53,2,13380,1430259 +47130,234,1,61487,37852 +47131,234,1,61686,1031240 +47132,387,10,111017,186116 +47133,102,3,98066,1759298 +47134,273,7,52034,144931 +47135,5,10,96107,229613 +47136,317,10,13336,1205763 +47137,203,1,331313,1437719 +47138,296,3,924,1551650 +47139,3,5,188598,1601975 +47140,360,3,202337,1404919 +47141,108,10,55589,117962 +47142,317,10,19766,61413 +47143,273,7,45679,17667 +47144,269,9,103731,1147603 +47145,243,3,167,555978 +47146,387,10,117913,12330 +47147,317,10,228355,1264503 +47148,387,10,662,9956 +47149,387,10,20126,67884 +47150,273,7,75363,7647 +47151,381,9,26390,1407194 +47152,273,7,25528,965139 +47153,234,1,89116,78107 +47154,413,11,42139,32212 +47155,190,7,124963,1582749 +47156,234,1,10626,26436 +47157,53,2,104374,1619180 +47158,289,6,201085,1572867 +47159,273,7,264393,550542 +47160,273,7,12796,1760 +47161,236,8,28739,1407898 +47162,317,10,30143,767896 +47163,317,10,49940,47063 +47164,52,10,43832,11435 +47165,3,5,134362,1011787 +47166,273,7,46069,993312 +47167,52,10,118131,1496 +47168,273,7,257345,1075 +47169,87,7,351901,13163 +47170,317,10,86829,1223 +47171,3,5,47508,119537 +47172,52,10,47694,554841 +47173,208,2,10740,1421237 +47174,413,11,11959,71044 +47175,387,10,190955,20561 +47176,175,5,52454,1542285 +47177,122,8,337339,1907203 +47178,250,11,209112,1569322 +47179,3,5,31439,72204 +47180,262,6,8247,1403475 +47181,273,7,24331,55641 +47182,234,1,87123,9054 +47183,127,3,2924,13021 +47184,273,7,10326,1760 +47185,413,11,240745,53685 +47186,269,9,16643,959360 +47187,204,9,19819,4953 +47188,333,2,25430,31206 +47189,269,9,202662,1803895 +47190,387,10,7837,52986 +47191,328,6,324670,1445879 +47192,317,10,129115,1088581 +47193,198,6,293167,113120 +47194,296,3,302699,1729086 +47195,179,2,127521,1325648 +47196,273,7,336050,1644754 +47197,269,9,37534,17950 +47198,234,1,57419,110968 +47199,234,1,297631,1038003 +47200,75,5,188826,1399513 +47201,234,1,127105,100036 +47202,317,10,253612,1383169 +47203,60,1,1942,2384 +47204,287,3,13834,25405 +47205,148,9,323675,1718777 +47206,327,7,38269,1745738 +47207,269,9,2613,1124531 +47208,175,5,13380,207749 +47209,5,10,32825,1420244 +47210,209,7,283686,1211204 +47211,262,6,9425,30148 +47212,182,8,315664,1456410 +47213,413,11,64499,1056180 +47214,234,1,54491,1700852 +47215,3,5,98277,1017245 +47216,317,10,63217,236640 +47217,204,9,104720,3358 +47218,209,7,26941,1375086 +47219,413,11,8619,3904 +47220,356,2,857,1422400 +47221,105,7,104954,1184983 +47222,286,3,144229,31835 +47223,53,2,96888,1129275 +47224,300,3,101325,1560967 +47225,234,1,417820,1122354 +47226,53,2,264525,1857582 +47227,67,10,8247,1701154 +47228,169,3,14370,92393 +47229,387,10,11227,59 +47230,226,2,257088,1446750 +47231,67,10,3933,1447338 +47232,234,1,18047,40402 +47233,333,2,14510,27186 +47234,317,10,289191,82566 +47235,306,7,8204,1725887 +47236,317,10,124979,1040888 +47237,317,10,141635,209 +47238,273,7,1825,1154 +47239,368,7,8869,1511063 +47240,317,10,26603,18910 +47241,273,7,410718,3186 +47242,317,10,38325,142617 +47243,317,10,43753,104323 +47244,87,7,13058,45056 +47245,208,2,59296,92329 +47246,160,3,41733,33017 +47247,53,2,278632,1179842 +47248,413,11,41035,1475770 +47249,53,2,31618,26984 +47250,387,10,2046,879 +47251,105,7,22317,76200 +47252,39,3,10727,1577371 +47253,387,10,10077,1582866 +47254,244,3,9946,9993 +47255,269,9,38356,9817 +47256,387,10,332872,309 +47257,398,9,10145,958087 +47258,226,2,544,1780214 +47259,234,1,268536,16294 +47260,333,2,12311,10796 +47261,53,2,7551,7735 +47262,53,2,188357,1317094 +47263,286,3,108726,1304542 +47264,234,1,46436,5561 +47265,317,10,3037,2332 +47266,387,10,38869,211911 +47267,413,11,17170,1535788 +47268,234,1,25551,64114 +47269,234,1,107916,224870 +47270,50,3,435,1574646 +47271,387,10,765,7623 +47272,213,10,54898,28615 +47273,273,7,162056,9245 +47274,413,11,1956,5216 +47275,273,7,64568,52219 +47276,394,7,9836,577468 +47277,387,10,298722,129106 +47278,413,11,75233,71622 +47279,3,5,24746,21409 +47280,273,7,10096,10572 +47281,333,2,64807,578728 +47282,169,3,1271,1394748 +47283,148,9,32657,60714 +47284,3,5,20986,109194 +47285,413,11,94671,1001368 +47286,234,1,127913,67813 +47287,166,9,9882,1378672 +47288,413,11,41312,126130 +47289,127,3,18405,1053407 +47290,413,11,378236,76746 +47291,143,7,176,1340003 +47292,413,11,122368,112732 +47293,360,3,219466,1398913 +47294,204,9,834,12383 +47295,399,9,13205,1779889 +47296,5,10,11618,70038 +47297,75,5,693,42032 +47298,234,1,81660,1085050 +47299,143,7,37534,1827259 +47300,209,7,44155,52730 +47301,204,9,448847,1797871 +47302,277,3,9716,1360102 +47303,179,2,16164,1526834 +47304,226,2,14430,1521689 +47305,273,7,40041,942947 +47306,12,10,1726,18866 +47307,387,10,22744,5834 +47308,3,5,84718,29635 +47309,273,7,410118,1779187 +47310,413,11,274504,1321107 +47311,180,7,12276,1293203 +47312,262,6,180305,1403876 +47313,387,10,10603,36805 +47314,5,10,198795,1174422 +47315,105,7,154019,1682248 +47316,303,3,287,1361674 +47317,87,7,345925,1717838 +47318,3,5,10173,1728 +47319,234,1,319092,1414915 +47320,289,6,345775,1621092 +47321,53,2,7548,33447 +47322,289,6,291270,1584367 +47323,234,1,73262,568692 +47324,113,9,203833,1338967 +47325,234,1,13681,6729 +47326,234,1,20047,40282 +47327,262,6,1966,1327025 +47328,387,10,26378,178338 +47329,413,11,817,14189 +47330,413,11,11584,30461 +47331,415,3,3563,1368867 +47332,413,11,71668,62813 +47333,208,2,15661,1324793 +47334,77,10,10760,66529 +47335,317,10,176124,1178144 +47336,387,10,35,963556 +47337,387,10,93457,71761 +47338,413,11,351211,13673 +47339,190,7,41733,12587 +47340,303,3,330459,1406766 +47341,304,10,130544,45192 +47342,3,5,7085,19517 +47343,3,5,31411,34077 +47344,273,7,84735,1259 +47345,105,7,324440,1606198 +47346,387,10,34223,22814 +47347,387,10,109122,1384251 +47348,387,10,13569,56452 +47349,413,11,119172,579313 +47350,317,10,408272,1001384 +47351,387,10,32600,10518 +47352,387,10,155308,229111 +47353,269,9,40087,1783 +47354,303,3,309879,1621476 +47355,234,1,53857,114337 +47356,381,9,242310,1367127 +47357,269,9,14916,1430513 +47358,346,3,230428,1242935 +47359,3,5,46184,29811 +47360,166,9,693,1364409 +47361,317,10,26510,95576 +47362,387,10,35284,138762 +47363,317,10,98566,228135 +47364,53,2,1125,15573 +47365,289,6,9514,1642588 +47366,286,3,171581,1311275 +47367,269,9,87516,25140 +47368,3,5,28110,67492 +47369,333,2,419430,1761138 +47370,413,11,703,6848 +47371,234,1,43117,51767 +47372,333,2,13162,1327895 +47373,203,1,30141,1427384 +47374,234,1,371645,55934 +47375,234,1,21191,87257 +47376,387,10,9441,58234 +47377,373,7,153,2889 +47378,52,10,49524,54048 +47379,187,11,45244,1605655 +47380,234,1,423078,1364459 +47381,52,10,5425,1632421 +47382,387,10,211561,138765 +47383,3,5,309820,1619063 +47384,387,10,45522,11056 +47385,413,11,104374,1619178 +47386,239,5,10733,1535399 +47387,388,9,9593,1877101 +47388,269,9,9427,49344 +47389,346,3,9358,1421758 +47390,182,8,72105,1204332 +47391,105,7,55343,20131 +47392,13,3,378441,1797495 +47393,87,7,1443,40839 +47394,234,1,81538,1075122 +47395,413,11,325892,1810676 +47396,235,5,17654,1424629 +47397,72,11,8457,1119658 +47398,269,9,36175,1025927 +47399,317,10,78789,130030 +47400,387,10,47536,113702 +47401,60,1,49308,945630 +47402,273,7,875,13336 +47403,160,3,1578,16522 +47404,387,10,16938,58405 +47405,317,10,34977,26160 +47406,203,1,32331,1464541 +47407,62,3,1267,1397792 +47408,269,9,314065,1466248 +47409,234,1,21282,118171 +47410,160,3,9716,1372092 +47411,105,7,77950,227440 +47412,413,11,385750,1603185 +47413,317,10,35683,42640 +47414,413,11,241855,1074560 +47415,60,1,80125,1441755 +47416,234,1,112162,156155 +47417,401,6,15213,1462623 +47418,105,7,85984,72210 +47419,234,1,220002,1204938 +47420,179,2,12594,1326092 +47421,273,7,30708,7182 +47422,232,10,175822,47658 +47423,289,6,11618,1339862 +47424,53,2,15556,52163 +47425,269,9,5881,46284 +47426,198,6,298,1399313 +47427,181,7,258147,1298880 +47428,277,7,8916,1410568 +47429,203,1,31146,1467080 +47430,314,2,316042,1513861 +47431,53,2,47386,138781 +47432,52,10,67162,67373 +47433,413,11,84735,853 +47434,46,5,414977,1676801 +47435,52,10,31672,98482 +47436,226,2,18977,116724 +47437,413,11,145154,1122367 +47438,333,2,13393,1603669 +47439,239,5,54318,1579180 +47440,262,6,13056,102434 +47441,217,3,924,1551657 +47442,317,10,277710,1462 +47443,381,9,664,1342250 +47444,234,1,358724,1442862 +47445,273,7,13596,4500 +47446,234,1,272426,18064 +47447,234,1,58995,67451 +47448,262,6,58244,1367821 +47449,234,1,92257,39058 +47450,52,10,20493,943403 +47451,182,8,369406,1872437 +47452,419,10,2887,19249 +47453,317,10,377516,1239854 +47454,3,5,2102,8523 +47455,204,9,310001,1657810 +47456,175,5,2786,1539839 +47457,41,3,73835,1606294 +47458,234,1,222220,1207483 +47459,180,7,35001,1539030 +47460,234,1,325780,1144650 +47461,234,1,352164,1491543 +47462,143,7,338,3700 +47463,45,9,283995,1403430 +47464,203,1,1995,1556436 +47465,5,10,9609,2747 +47466,179,2,152736,1333581 +47467,75,5,149509,1409743 +47468,273,7,25142,1202603 +47469,360,3,14979,1368862 +47470,234,1,13567,74671 +47471,204,9,21379,1448482 +47472,175,5,9529,1401806 +47473,157,3,28165,1172673 +47474,204,9,11524,1417458 +47475,387,10,82178,84237 +47476,75,5,243935,1414940 +47477,148,9,272693,1423751 +47478,3,5,11004,11099 +47479,239,5,332411,1579388 +47480,234,1,256628,1295321 +47481,387,10,50849,22467 +47482,203,1,8869,1429253 +47483,317,10,53354,1374745 +47484,317,10,38743,2055 +47485,413,11,662,9958 +47486,413,11,8899,70323 +47487,234,1,302699,57633 +47488,296,3,332662,1570534 +47489,273,7,301671,92057 +47490,234,1,158150,106491 +47491,387,10,76297,166393 +47492,317,10,319073,78055 +47493,273,7,61934,16748 +47494,387,10,76200,19069 +47495,148,9,85640,31067 +47496,53,2,419430,1651830 +47497,387,10,14430,76870 +47498,3,5,94744,1125628 +47499,387,10,13279,2075 +47500,234,1,104945,119430 +47501,234,1,14087,146919 +47502,3,5,1673,18576 +47503,413,11,82465,1423 +47504,234,1,13654,137903 +47505,317,10,21752,8568 +47506,317,10,81684,592852 +47507,269,9,39356,95306 +47508,269,9,18495,7512 +47509,286,3,280840,16437 +47510,273,7,11377,4949 +47511,66,11,345922,1815644 +47512,160,3,8247,1556313 +47513,226,2,177677,1428909 +47514,52,10,137145,1106879 +47515,160,3,106747,23285 +47516,387,10,21282,1169223 +47517,415,3,24212,1603462 +47518,387,10,92769,13927 +47519,77,10,17630,82116 +47520,234,1,29538,69711 +47521,143,7,96724,9651 +47522,269,9,176,141301 +47523,360,3,10733,1397809 +47524,234,1,351242,20387 +47525,413,11,39284,8735 +47526,387,10,12182,71551 +47527,234,1,64934,585169 +47528,387,10,218443,1203162 +47529,190,7,26882,1773044 +47530,413,11,248639,120776 +47531,262,6,149509,1443954 +47532,105,7,104343,51808 +47533,175,5,246655,1407028 +47534,328,6,241258,1525152 +47535,3,5,27523,5680 +47536,291,6,9472,1537687 +47537,387,10,17139,123150 +47538,394,7,408616,1421647 +47539,317,10,152948,225723 +47540,53,2,47508,1263246 +47541,105,7,9905,7741 +47542,148,9,10529,1567297 +47543,53,2,2734,14590 +47544,127,3,49521,1251373 +47545,234,1,9385,24531 +47546,234,1,163630,18378 +47547,160,3,295581,1377053 +47548,387,10,11889,36693 +47549,16,3,13042,7952 +47550,234,1,10400,13563 +47551,141,7,8870,28241 +47552,113,9,59965,1395015 +47553,234,1,374475,40476 +47554,3,5,342213,53943 +47555,234,1,18088,1048458 +47556,3,5,325645,63947 +47557,304,10,64948,240096 +47558,204,9,394645,1047474 +47559,127,3,10320,1384388 +47560,286,3,43817,966 +47561,234,1,84508,239551 +47562,262,6,203833,1338983 +47563,234,1,74581,97202 +47564,413,11,37929,66201 +47565,302,9,2675,1674646 +47566,317,10,24424,91602 +47567,387,10,73262,4526 +47568,198,6,340101,1763659 +47569,273,7,45191,31218 +47570,387,10,44155,8373 +47571,387,10,24266,76195 +47572,204,9,33623,16338 +47573,286,3,168164,1106692 +47574,83,2,4547,1758616 +47575,234,1,336004,90812 +47576,3,5,60140,98161 +47577,83,2,59115,80807 +47578,234,1,247436,1282917 +47579,226,2,6171,1417400 +47580,269,9,89492,41081 +47581,97,7,45244,1410128 +47582,52,10,92341,992878 +47583,317,10,84354,98252 +47584,286,3,332283,56406 +47585,209,7,102382,1360111 +47586,333,2,31280,29671 +47587,333,2,238,29654 +47588,268,7,10632,1546101 +47589,387,10,22968,26159 +47590,317,10,30059,105639 +47591,60,1,114982,1570403 +47592,12,10,19050,15406 +47593,3,5,92269,3097 +47594,415,3,27739,98869 +47595,234,1,440508,1181888 +47596,148,9,16005,1459994 +47597,413,11,84030,71131 +47598,204,9,14,8221 +47599,3,5,130881,1043447 +47600,286,3,199985,1086922 +47601,333,2,613,1425847 +47602,169,3,921,14923 +47603,328,6,369885,1638564 +47604,53,2,17057,12145 +47605,269,9,293167,957889 +47606,387,10,32043,15175 +47607,148,9,264644,1492089 +47608,234,1,336149,1581193 +47609,226,2,43231,1560814 +47610,3,5,37939,82469 +47611,273,7,31428,29330 +47612,273,7,171648,1154151 +47613,376,10,314285,1178401 +47614,289,6,35,1447383 +47615,203,1,241855,1460841 +47616,225,7,10590,1735735 +47617,413,11,7006,51795 +47618,3,5,131764,3356 +47619,234,1,170603,149863 +47620,317,10,289198,1357757 +47621,127,3,238,1614958 +47622,317,10,72711,566957 +47623,234,1,8008,53583 +47624,387,10,83718,119232 +47625,3,5,181876,37866 +47626,105,7,61548,21276 +47627,413,11,9457,8752 +47628,387,10,11202,12277 +47629,273,7,47504,91147 +47630,204,9,43471,1096786 +47631,289,6,12593,1458346 +47632,244,3,3172,60086 +47633,387,10,128900,260006 +47634,328,6,297762,1461197 +47635,273,7,3686,33765 +47636,97,7,72733,1354355 +47637,189,3,1624,1870777 +47638,234,1,76784,27954 +47639,234,1,1628,1650 +47640,3,5,48231,307 +47641,317,10,14145,1209073 +47642,314,2,283445,1548102 +47643,52,10,404459,1065549 +47644,273,7,300090,1384818 +47645,190,7,22477,1546902 +47646,234,1,211166,52576 +47647,179,2,94671,1520692 +47648,286,3,144680,1849899 +47649,273,7,265208,11269 +47650,387,10,73969,71788 +47651,204,9,90799,118254 +47652,403,10,382591,1795264 +47653,3,5,92950,1470275 +47654,200,3,9457,1421729 +47655,413,11,10647,17816 +47656,52,10,44545,1163670 +47657,190,7,954,1645456 +47658,72,11,245703,1394954 +47659,234,1,24986,92960 +47660,269,9,14137,958228 +47661,203,1,401222,1423005 +47662,234,1,52850,223551 +47663,175,5,77949,1181554 +47664,127,3,11024,1673547 +47665,22,9,28263,1730033 +47666,53,2,511,7100 +47667,3,5,214938,1199900 +47668,373,7,241855,1470708 +47669,160,3,9472,63935 +47670,304,10,60807,237971 +47671,77,10,339312,1464980 +47672,12,10,38322,58143 +47673,204,9,16320,19291 +47674,53,2,10727,1209536 +47675,234,1,57811,8574 +47676,317,10,27523,87267 +47677,269,9,2100,21528 +47678,204,9,13056,92206 +47679,234,1,90762,938731 +47680,273,7,11838,20325 +47681,204,9,117212,1090910 +47682,53,2,118283,14727 +47683,387,10,64605,82862 +47684,317,10,40709,932931 +47685,198,6,140607,1550770 +47686,204,9,70368,559561 +47687,179,2,1073,137176 +47688,3,5,155605,1093053 +47689,203,1,258480,1556404 +47690,273,7,76047,73166 +47691,413,11,228970,69371 +47692,387,10,254007,1057076 +47693,3,5,16176,51914 +47694,327,7,19101,1550073 +47695,161,6,6947,1775018 +47696,234,1,40220,10620 +47697,333,2,53949,118306 +47698,317,10,73723,52360 +47699,234,1,13506,81761 +47700,75,5,28430,30761 +47701,234,1,10865,62047 +47702,269,9,353728,1418415 +47703,234,1,158870,1140231 +47704,204,9,227306,9583 +47705,234,1,102197,1030310 +47706,317,10,254918,1291689 +47707,234,1,60547,14773 +47708,289,6,9297,1462684 +47709,273,7,64786,1044543 +47710,269,9,55694,60897 +47711,12,10,169934,7624 +47712,105,7,64961,1259 +47713,249,7,25941,1420635 +47714,273,7,15060,68126 +47715,203,1,369885,1390388 +47716,317,10,43741,116607 +47717,239,5,306966,1748600 +47718,148,9,10632,906 +47719,269,9,46931,1595161 +47720,169,3,44943,1403399 +47721,349,1,10198,1447598 +47722,113,9,11202,47696 +47723,217,3,269,19069 +47724,286,3,91334,939447 +47725,287,3,312831,1405313 +47726,234,1,51358,8635 +47727,413,11,93457,2512 +47728,53,2,253257,1394639 +47729,92,7,4825,1368063 +47730,220,7,45211,45670 +47731,97,7,403,14657 +47732,234,1,11122,68892 +47733,3,5,10860,1153 +47734,273,7,53210,551674 +47735,234,1,267188,126837 +47736,333,2,37926,1772858 +47737,3,5,9539,976617 +47738,127,3,47508,150167 +47739,387,10,2567,932 +47740,234,1,102632,89154 +47741,219,11,194,1542917 +47742,269,9,8954,20569 +47743,269,9,16997,1128268 +47744,180,7,147722,792562 +47745,413,11,33134,123537 +47746,234,1,83459,1185040 +47747,269,9,810,12071 +47748,5,10,167,1998 +47749,3,5,98368,1512596 +47750,234,1,3484,32133 +47751,105,7,14705,87550 +47752,187,11,8204,1364410 +47753,234,1,15810,933013 +47754,120,6,296523,1780479 +47755,127,3,18405,1187049 +47756,306,7,9514,1381067 +47757,209,7,1579,1399326 +47758,269,9,109251,6877 +47759,175,5,21786,1412133 +47760,413,11,82465,4981 +47761,413,11,24348,1867770 +47762,3,5,393521,1507334 +47763,234,1,61699,227954 +47764,234,1,809,12080 +47765,413,11,8856,6900 +47766,373,7,284564,137125 +47767,3,5,41760,14536 +47768,291,6,2503,1445972 +47769,387,10,21371,78383 +47770,67,10,2662,1585197 +47771,53,2,397520,1663789 +47772,317,10,47889,138322 +47773,234,1,19277,26767 +47774,289,6,11024,1461156 +47775,387,10,15677,78516 +47776,328,6,245168,1394719 +47777,226,2,11137,1415328 +47778,204,9,28564,9062 +47779,158,2,13954,1398876 +47780,317,10,189197,21206 +47781,87,7,540,113844 +47782,269,9,14126,997132 +47783,415,3,62472,18602 +47784,158,2,283995,1573015 +47785,234,1,127091,49892 +47786,327,7,4011,1423863 +47787,317,10,409502,1387721 +47788,273,7,522,117 +47789,269,9,7916,62703 +47790,328,6,263115,1394282 +47791,234,1,391069,49063 +47792,273,7,422,3098 +47793,413,11,430834,931336 +47794,3,5,90228,32319 +47795,196,7,10972,1537185 +47796,413,11,445,6029 +47797,203,1,257088,1631406 +47798,273,7,10395,1259 +47799,387,10,157847,1192773 +47800,317,10,387399,138775 +47801,317,10,25898,131408 +47802,234,1,408272,1001384 +47803,413,11,28448,31493 +47804,105,7,53459,1301113 +47805,387,10,181656,1165229 +47806,317,10,18279,88036 +47807,226,2,146238,1657380 +47808,234,1,2989,29342 +47809,268,7,284289,1523025 +47810,127,3,105059,160598 +47811,187,11,2047,1550072 +47812,333,2,9443,1626427 +47813,413,11,35852,114832 +47814,273,7,69152,37789 +47815,64,6,2300,1870704 +47816,287,3,353728,1699382 +47817,102,3,435,1574648 +47818,204,9,72431,1328822 +47819,387,10,8277,27001 +47820,74,5,392818,1754088 +47821,234,1,50531,120025 +47822,314,2,243568,1443032 +47823,273,7,49038,1457655 +47824,234,1,35564,28976 +47825,273,7,4978,1729 +47826,187,11,9563,548437 +47827,113,9,206647,1551810 +47828,234,1,433244,1422664 +47829,187,11,3597,228439 +47830,105,7,126090,1134158 +47831,53,2,33563,562698 +47832,317,10,23178,27147 +47833,148,9,318553,1543529 +47834,3,5,49524,26192 +47835,200,3,8619,1447612 +47836,234,1,146416,1128097 +47837,53,2,31875,45058 +47838,380,3,12,1516156 +47839,234,1,148371,110519 +47840,413,11,335778,8751 +47841,289,6,98566,1459763 +47842,3,5,15661,53649 +47843,7,3,2675,1674659 +47844,3,5,77057,415386 +47845,105,7,44436,130860 +47846,5,10,140470,117692 +47847,234,1,157,1749 +47848,373,7,277713,1609175 +47849,333,2,31947,1419906 +47850,286,3,390409,1817181 +47851,3,5,21968,44807 +47852,74,5,233639,1792032 +47853,387,10,42179,8746 +47854,179,2,318781,1389931 +47855,387,10,38010,133165 +47856,373,7,13205,1551694 +47857,234,1,87296,85309 +47858,262,6,435,1392095 +47859,164,3,11370,1581129 +47860,160,3,329865,1293479 +47861,317,10,74661,9934 +47862,105,7,20132,35786 +47863,5,10,75162,72065 +47864,234,1,129530,83480 +47865,394,7,100110,1370960 +47866,234,1,322614,1421243 +47867,293,2,283995,1815819 +47868,60,1,78734,89216 +47869,413,11,20357,4579 +47870,234,1,26946,102429 +47871,387,10,921,5575 +47872,273,7,12481,43910 +47873,196,7,9563,1406826 +47874,273,7,11975,7182 +47875,5,10,270400,1320858 +47876,304,10,300983,120953 +47877,234,1,27018,76081 +47878,53,2,9297,1462697 +47879,413,11,61581,33808 +47880,387,10,1723,6835 +47881,273,7,278632,1332204 +47882,413,11,30478,1376325 +47883,413,11,118134,1031548 +47884,269,9,51955,932187 +47885,187,11,302026,1412586 +47886,394,7,10476,1404838 +47887,3,5,58133,26097 +47888,3,5,409536,589382 +47889,268,7,17935,82515 +47890,32,8,98566,1453943 +47891,234,1,109439,57130 +47892,273,7,45431,215996 +47893,234,1,104275,83784 +47894,317,10,2525,25795 +47895,246,6,283995,1746434 +47896,387,10,75622,34110 +47897,204,9,229638,33020 +47898,226,2,13005,9337 +47899,413,11,29113,29636 +47900,164,3,293660,1558713 +47901,234,1,9717,1724 +47902,52,10,59895,103382 +47903,208,2,198663,578724 +47904,319,1,435,1194069 +47905,317,10,9900,32907 +47906,3,5,5991,70 +47907,5,10,37969,51334 +47908,349,1,25913,1447500 +47909,5,10,634,9155 +47910,234,1,261871,1151356 +47911,53,2,36375,26174 +47912,105,7,267977,1600873 +47913,234,1,24883,4951 +47914,234,1,68634,591426 +47915,204,9,43009,1128260 +47916,22,9,7326,1866779 +47917,317,10,252845,5678 +47918,234,1,70667,20307 +47919,187,7,11236,1881620 +47920,105,7,170677,14252 +47921,317,10,41211,142984 +47922,53,2,44716,6797 +47923,169,3,10929,1552357 +47924,413,11,87593,935279 +47925,286,3,352197,1317870 +47926,209,7,201085,1122225 +47927,226,2,28071,1698981 +47928,234,1,323968,1148265 +47929,3,5,128169,562946 +47930,53,2,13667,1357219 +47931,209,7,82,1342663 +47932,234,1,4147,39 +47933,314,2,6163,1658273 +47934,317,10,30995,1757495 +47935,317,10,341559,1302041 +47936,387,10,9572,37705 +47937,87,7,318781,1622819 +47938,328,6,6171,1426772 +47939,53,2,798,11926 +47940,234,1,83599,56205 +47941,204,9,2454,1334420 +47942,413,11,14698,17762 +47943,387,10,36751,19744 +47944,387,10,310126,120019 +47945,179,2,341174,1325872 +47946,234,1,271718,41039 +47947,301,5,118,1403640 +47948,75,5,168027,1391594 +47949,3,5,20473,1095527 +47950,234,1,331075,127802 +47951,175,5,20242,1833857 +47952,317,10,17282,100622 +47953,413,11,84333,1801547 +47954,394,7,25941,40811 +47955,132,2,205587,1331648 +47956,387,10,8398,54841 +47957,387,10,36335,37447 +47958,141,7,11202,91245 +47959,387,10,96935,1049658 +47960,179,2,99861,1322147 +47961,269,9,43773,1616445 +47962,3,5,1723,1044 +47963,105,7,102362,19352 +47964,148,9,28448,36133 +47965,189,3,178809,1412596 +47966,387,10,10946,67589 +47967,161,6,384737,1825664 +47968,317,10,4443,37303 +47969,53,2,60106,20722 +47970,234,1,281968,935359 +47971,387,10,239563,1141683 +47972,108,10,43497,87748 +47973,53,2,270403,1594810 +47974,273,7,42614,29967 +47975,53,2,58013,1525829 +47976,234,1,39310,17278 +47977,143,7,110491,1049456 +47978,3,5,70667,76570 +47979,187,11,258147,1298877 +47980,269,9,2029,20858 +47981,64,6,131343,1450091 +47982,96,2,263115,1757622 +47983,135,3,435,1569558 +47984,3,5,74525,17669 +47985,204,9,10299,959007 +47986,182,8,14510,1449503 +47987,53,2,9819,8222 +47988,175,5,11517,1534236 +47989,387,10,73775,1162236 +47990,53,2,30363,1633538 +47991,3,5,4938,18744 +47992,333,2,15794,4128 +47993,234,1,330115,9994 +47994,317,10,58309,236538 +47995,60,1,43316,1421071 +47996,387,10,197,2460 +47997,3,5,438634,1096500 +47998,273,7,95743,37187 +47999,413,11,125063,75079 +48000,234,1,137646,19006 +48001,346,3,97614,1419733 +48002,3,5,44718,55441 +48003,387,10,338079,1269623 +48004,179,2,337339,1550064 +48005,317,10,50247,131010 +48006,317,10,38742,8635 +48007,189,3,8619,1377235 +48008,209,7,924,15225 +48009,234,1,45514,6495 +48010,98,3,308174,31247 +48011,387,10,11362,1708 +48012,209,7,9982,1341141 +48013,179,2,201,1319749 +48014,328,6,9532,1399635 +48015,234,1,244458,20659 +48016,269,9,4012,35146 +48017,234,1,48466,12099 +48018,34,8,40807,1431089 +48019,317,10,57005,1643505 +48020,148,9,13853,16549 +48021,180,7,336691,1547711 +48022,397,7,439050,1749860 +48023,269,9,33623,1098178 +48024,234,1,27203,20370 +48025,317,10,133183,1096775 +48026,413,11,8856,16513 +48027,226,2,32331,1445469 +48028,349,1,19594,1447599 +48029,234,1,72086,89981 +48030,204,9,46190,40170 +48031,387,10,43346,21008 +48032,3,5,49940,94684 +48033,3,5,86266,87536 +48034,127,3,285,1259516 +48035,402,11,8247,64335 +48036,204,9,15143,1394918 +48037,234,1,128644,51984 +48038,398,9,435,92359 +48039,234,1,15359,74863 +48040,262,6,188927,122274 +48041,3,5,16182,1428271 +48042,234,1,73984,115598 +48043,317,10,65002,9747 +48044,273,7,147876,8503 +48045,273,7,110909,1106128 +48046,3,5,21430,45535 +48047,234,1,57684,14643 +48048,333,2,298,1551537 +48049,273,7,397837,1492510 +48050,317,10,172443,11436 +48051,234,1,245175,195781 +48052,317,10,357851,1504644 +48053,387,10,90465,30011 +48054,387,10,347945,141964 +48055,413,11,187028,1312279 +48056,317,10,105231,1037694 +48057,415,3,6081,9402 +48058,234,1,35826,19266 +48059,234,1,63472,32983 +48060,3,5,1924,243 +48061,77,10,7483,52683 +48062,327,7,28000,2658 +48063,273,7,70734,8817 +48064,273,7,121848,29276 +48065,53,2,202662,233723 +48066,53,2,5289,59710 +48067,273,7,244458,20713 +48068,22,9,7326,1866781 +48069,273,7,7459,15347 +48070,11,6,294272,1660719 +48071,387,10,5915,2228 +48072,234,1,354667,1497110 +48073,413,11,129359,565662 +48074,317,10,43364,134343 +48075,317,10,29083,102866 +48076,250,11,419430,1399931 +48077,327,7,332788,1446048 +48078,415,3,216580,1302901 +48079,187,11,9563,1405382 +48080,234,1,202475,90641 +48081,317,10,55632,222833 +48082,333,2,246655,75294 +48083,204,9,17467,554127 +48084,203,1,29136,1407251 +48085,157,3,28165,99919 +48086,413,11,573,7754 +48087,208,2,71700,1317038 +48088,187,11,45019,1453892 +48089,234,1,63414,1055737 +48090,234,1,113178,189487 +48091,234,1,426264,172 +48092,53,2,301228,1425929 +48093,203,1,246655,1384398 +48094,105,7,335053,931404 +48095,234,1,1574,17633 +48096,234,1,23367,18342 +48097,3,5,6499,52047 +48098,188,8,8470,1598758 +48099,52,10,64928,2156 +48100,234,1,37368,8500 +48101,399,9,10020,1461382 +48102,234,1,84496,40391 +48103,52,10,66893,269201 +48104,317,10,44793,982586 +48105,413,11,14459,75968 +48106,269,9,75622,5779 +48107,317,10,342917,1267557 +48108,234,1,15936,7678 +48109,45,9,167,1387212 +48110,317,10,47493,1128 +48111,5,10,87516,10101 +48112,148,9,42191,33227 +48113,234,1,17015,7017 +48114,52,10,62036,5811 +48115,305,9,7220,1762646 +48116,234,1,28437,100793 +48117,269,9,1811,560 +48118,413,11,78177,84376 +48119,273,7,34796,1086333 +48120,286,3,126958,1083433 +48121,234,1,333372,1088719 +48122,387,10,306555,27274 +48123,5,10,22584,38233 +48124,262,6,264397,1324073 +48125,317,10,43241,30969 +48126,387,10,112083,30009 +48127,387,10,49514,580271 +48128,234,1,9352,57405 +48129,234,1,15163,10781 +48130,234,1,93862,46997 +48131,269,9,300155,3082 +48132,317,10,191502,1174067 +48133,273,7,12807,73745 +48134,189,3,273404,1445376 +48135,187,11,310133,1380617 +48136,273,7,1427,1075 +48137,273,7,285,947 +48138,13,5,60488,17668 +48139,397,7,137182,1106968 +48140,53,2,9532,27160 +48141,105,7,16876,1075 +48142,86,3,14430,1521695 +48143,245,3,90616,9452 +48144,317,10,37305,117396 +48145,317,10,140648,31310 +48146,234,1,12206,68 +48147,333,2,17577,1423834 +48148,234,1,145247,74730 +48149,387,10,256474,55162 +48150,387,10,27351,464233 +48151,45,9,448847,1797877 +48152,287,3,19901,1418803 +48153,53,2,170234,9064 +48154,269,9,39462,30467 +48155,232,10,39415,38397 +48156,204,9,3115,30467 +48157,262,6,58060,1402983 +48158,3,5,18093,22403 +48159,234,1,71067,29571 +48160,148,9,13056,1469316 +48161,60,1,65545,1687758 +48162,381,9,2046,1455289 +48163,413,11,24746,116655 +48164,269,9,101929,1547529 +48165,413,11,788,1215 +48166,204,9,22744,103507 +48167,46,5,5,1877355 +48168,53,2,45827,1634866 +48169,269,9,55836,10352 +48170,413,11,14476,203520 +48171,413,11,469,6406 +48172,333,2,19901,1418802 +48173,53,2,490,6655 +48174,52,10,31597,86000 +48175,234,1,71114,560264 +48176,289,6,132714,11429 +48177,415,3,43093,3484 +48178,234,1,86828,10707 +48179,234,1,17744,3349 +48180,413,11,796,11876 +48181,175,5,76341,1392718 +48182,158,2,287628,1574435 +48183,269,9,11584,7716 +48184,106,3,378441,1797429 +48185,286,3,14073,66950 +48186,327,7,8617,1400556 +48187,234,1,42120,26767 +48188,269,9,14644,27225 +48189,234,1,128044,85637 +48190,162,6,17654,1418890 +48191,234,1,211166,27889 +48192,413,11,1452,9039 +48193,52,10,62855,564950 +48194,226,2,401164,1619744 +48195,3,5,4285,36597 +48196,317,10,97762,932613 +48197,3,5,10539,2116 +48198,3,5,28893,89200 +48199,317,10,62855,1023832 +48200,3,5,27886,1183573 +48201,200,3,6972,1394026 +48202,286,3,291871,1179829 +48203,317,10,18333,6648 +48204,317,10,174278,87407 +48205,286,3,125835,1543279 +48206,234,1,282070,43652 +48207,317,10,70667,559193 +48208,413,11,488,6604 +48209,291,6,24624,1540843 +48210,273,7,121598,34954 +48211,317,10,212713,16042 +48212,188,8,17209,1616180 +48213,204,9,11618,6923 +48214,317,10,332936,1112607 +48215,387,10,32855,13861 +48216,371,3,12103,1625917 +48217,226,2,11232,1523419 +48218,234,1,122023,123798 +48219,259,3,5,1877361 +48220,60,1,43773,1884015 +48221,234,1,10500,672 +48222,317,10,257831,1376400 +48223,234,1,132601,87130 +48224,97,7,14430,1521696 +48225,317,10,452142,212908 +48226,296,3,11370,1581130 +48227,75,5,375366,1740775 +48228,60,1,353616,29207 +48229,148,9,271718,17951 +48230,148,9,67375,8508 +48231,273,7,21057,1133284 +48232,256,3,10320,1821183 +48233,175,5,9352,1586333 +48234,234,1,9550,607 +48235,148,9,163376,31067 +48236,286,3,78177,583261 +48237,234,1,117531,8630 +48238,97,7,203833,1338972 +48239,234,1,84354,930713 +48240,286,3,202984,1185285 +48241,28,9,664,1892487 +48242,234,1,128120,1086400 +48243,105,7,270470,1259 +48244,3,5,356486,1522134 +48245,289,6,157305,1138632 +48246,203,1,353979,1814475 +48247,204,9,19403,10643 +48248,105,7,144792,1206490 +48249,273,7,8916,5553 +48250,289,6,80928,557251 +48251,203,1,287903,1545403 +48252,182,8,102382,1399475 +48253,401,6,10198,1464375 +48254,234,1,14429,79656 +48255,40,1,11377,1602874 +48256,327,7,214138,1284155 +48257,160,3,304613,62596 +48258,387,10,264454,102322 +48259,60,1,28571,1183417 +48260,234,1,203715,1186089 +48261,53,2,185934,1373238 +48262,234,1,159810,225766 +48263,204,9,99767,9062 +48264,273,7,282268,8933 +48265,236,8,11351,1597207 +48266,317,10,89462,145249 +48267,105,7,91627,1298970 +48268,373,7,408220,1103530 +48269,269,9,26510,1555743 +48270,234,1,43473,89264 +48271,87,7,45019,1077470 +48272,387,10,99374,129308 +48273,273,7,128644,28155 +48274,234,1,124581,175726 +48275,234,1,226163,229115 +48276,221,3,954,1886660 +48277,314,2,1624,1870768 +48278,387,10,66700,129059 +48279,234,1,13383,1028011 +48280,236,8,216580,1395231 +48281,413,11,42571,1489910 +48282,75,5,27814,1856494 +48283,387,10,9016,56611 +48284,269,9,525,7186 +48285,314,2,341174,1676105 +48286,72,11,97614,1419730 +48287,213,10,99283,42064 +48288,317,10,214938,1199633 +48289,273,7,24973,8503 +48290,286,3,16320,356 +48291,317,10,83456,86860 +48292,143,7,781,11607 +48293,3,5,9785,10832 +48294,273,7,159304,59446 +48295,413,11,25768,14412 +48296,3,5,37481,4308 +48297,419,10,23692,161456 +48298,234,1,188858,944482 +48299,148,9,285,4032 +48300,317,10,4547,508 +48301,99,3,379019,1780168 +48302,289,6,127585,1455610 +48303,328,6,1579,1400344 +48304,75,5,216580,1395230 +48305,413,11,201,2533 +48306,286,3,43372,1645741 +48307,273,7,13312,64206 +48308,97,7,1579,113090 +48309,244,3,9296,1341397 +48310,3,5,1165,3656 +48311,77,10,142528,103040 +48312,273,7,118991,21276 +48313,273,7,73313,40460 +48314,187,11,10727,1418286 +48315,234,1,28448,31493 +48316,72,11,311324,1608888 +48317,226,2,16342,1410125 +48318,5,10,201429,1572018 +48319,415,3,28452,100836 +48320,387,10,130544,1091590 +48321,234,1,32328,13620 +48322,234,1,26254,137392 +48323,286,3,142402,1116502 +48324,273,7,16410,12241 +48325,204,9,42045,22029 +48326,236,8,362541,1483301 +48327,387,10,42669,128398 +48328,273,7,1428,2294 +48329,3,5,157354,984113 +48330,317,10,264036,557960 +48331,240,7,435,1767012 +48332,204,9,203833,1299012 +48333,360,3,243940,1461164 +48334,387,10,42701,95782 +48335,413,11,43372,15132 +48336,349,1,19594,1463250 +48337,13,5,34127,1759299 +48338,273,7,376570,989610 +48339,415,3,425774,1708024 +48340,317,10,145760,1853375 +48341,196,7,9286,1412703 +48342,373,7,12,2216 +48343,273,7,18642,120030 +48344,203,1,13600,1413808 +48345,234,1,59199,86203 +48346,104,7,424488,1790570 +48347,234,1,12902,113896 +48348,234,1,420703,557411 +48349,273,7,246422,53615 +48350,273,7,408024,1123119 +48351,234,1,30061,74863 +48352,204,9,236324,1578992 +48353,53,2,2611,9616 +48354,234,1,134355,13294 +48355,269,9,24657,5996 +48356,3,5,172475,14431 +48357,387,10,333352,43130 +48358,413,11,281590,1341474 +48359,413,11,172828,1034330 +48360,387,10,8014,7324 +48361,413,11,8856,31463 +48362,239,5,329805,1621900 +48363,317,10,325133,52934 +48364,303,3,316042,1559367 +48365,172,3,1271,1394762 +48366,289,6,9297,1454030 +48367,67,10,118,1662377 +48368,234,1,362057,21476 +48369,333,2,1125,1551531 +48370,234,1,12221,73752 +48371,234,1,41949,8969 +48372,317,10,128396,26162 +48373,317,10,16687,223534 +48374,25,2,5924,1409008 +48375,3,5,71825,935542 +48376,187,11,340101,1578905 +48377,291,6,322443,1346943 +48378,352,3,12103,1625923 +48379,169,3,15310,8890 +48380,53,2,309879,1280381 +48381,203,1,11358,1488570 +48382,148,9,8204,1447119 +48383,317,10,241855,1074560 +48384,387,10,35392,120530 +48385,53,2,88641,33456 +48386,317,10,361050,550790 +48387,105,7,48131,110066 +48388,196,7,17771,1338133 +48389,317,10,346473,105788 +48390,317,10,347465,1148322 +48391,234,1,11912,24389 +48392,317,10,270470,31604 +48393,34,8,1966,1408362 +48394,3,5,10154,6490 +48395,289,6,55534,1577964 +48396,72,11,209112,1661423 +48397,387,10,28997,103452 +48398,245,3,20357,1576 +48399,3,5,38554,1214 +48400,327,7,77459,1724719 +48401,234,1,110227,1227247 +48402,196,7,100669,1398460 +48403,45,9,288977,1423422 +48404,40,1,19754,1830340 +48405,387,10,11024,15218 +48406,234,1,2102,21544 +48407,273,7,13668,6898 +48408,52,10,31280,1163928 +48409,97,7,375012,1353257 +48410,413,11,339547,507840 +48411,60,1,53949,14441 +48412,387,10,43903,76981 +48413,273,7,3716,5592 +48414,387,10,15356,78136 +48415,413,11,755,2294 +48416,317,10,155397,1002925 +48417,273,7,11364,947 +48418,234,1,71670,11641 +48419,273,7,45213,12262 +48420,413,11,10336,16651 +48421,175,5,8247,1404850 +48422,60,1,172443,1158016 +48423,303,3,76341,57161 +48424,53,2,16235,1453227 +48425,396,3,74,1414183 +48426,262,6,259830,1340726 +48427,75,5,39979,1673412 +48428,388,9,7326,1730050 +48429,175,5,214756,1387186 +48430,317,10,38432,46713 +48431,269,9,78802,1120591 +48432,273,7,285848,1387454 +48433,317,10,82929,928931 +48434,53,2,26323,4127 +48435,97,7,20312,20228 +48436,413,11,18495,16548 +48437,413,11,8816,56398 +48438,3,5,12920,17765 +48439,349,1,9297,1462666 +48440,387,10,3035,29806 +48441,234,1,69401,81085 +48442,196,7,336882,1066233 +48443,77,10,18120,82725 +48444,317,10,71099,1448151 +48445,413,11,374614,61255 +48446,269,9,26961,1262168 +48447,317,10,89591,1123840 +48448,269,9,174958,1574737 +48449,244,3,10193,8153 +48450,226,2,105,1162118 +48451,198,6,330459,1706708 +48452,269,9,348689,1621110 +48453,373,7,2300,1342626 +48454,360,3,4147,1377215 +48455,387,10,12311,4297 +48456,360,3,145135,1417871 +48457,234,1,255496,1108581 +48458,32,8,44655,1723016 +48459,53,2,340275,15524 +48460,277,3,319073,1559451 +48461,387,10,118889,5031 +48462,52,10,152570,1306222 +48463,333,2,1481,1447016 +48464,387,10,228074,317313 +48465,387,10,293452,3972 +48466,3,5,33015,14410 +48467,317,10,16378,10713 +48468,104,7,10590,1551870 +48469,234,1,106623,103112 +48470,204,9,5551,370 +48471,3,5,7237,52150 +48472,72,11,4147,73420 +48473,413,11,142966,1294576 +48474,60,1,55420,1400105 +48475,5,10,12122,70449 +48476,18,2,664,1892494 +48477,289,6,145963,1123499 +48478,413,11,328429,1321107 +48479,387,10,9252,57003 +48480,204,9,35651,1590606 +48481,317,10,369054,194131 +48482,413,11,296025,1309870 +48483,333,2,168259,1506369 +48484,13,2,378441,1797458 +48485,273,7,1381,6377 +48486,204,9,343173,1647131 +48487,269,9,39979,1646437 +48488,80,3,107073,1481518 +48489,105,7,49961,143144 +48490,234,1,90800,89695 +48491,387,10,14088,99876 +48492,413,11,45987,931385 +48493,373,7,1428,1398123 +48494,77,10,16083,79209 +48495,75,5,43093,64823 +48496,75,5,373546,1412717 +48497,53,2,10201,40471 +48498,75,5,9042,1402900 +48499,269,9,1723,14539 +48500,203,1,16186,1458202 +48501,411,9,209112,6923 +48502,262,6,194,49191 +48503,234,1,137315,83189 +48504,234,1,32031,55948 +48505,289,6,12144,1447355 +48506,373,7,13336,1410596 +48507,204,9,168259,1445830 +48508,97,7,69668,1077782 +48509,273,7,356191,55975 +48510,77,10,14660,78195 +48511,317,10,47120,100134 +48512,412,9,181533,1869104 +48513,3,5,263472,1049548 +48514,387,10,8429,4415 +48515,234,1,40925,96948 +48516,53,2,181876,21604 +48517,317,10,87311,94394 +48518,287,3,13567,3990 +48519,3,5,34651,96252 +48520,234,1,83860,930212 +48521,196,7,7299,1301145 +48522,269,9,45987,1608190 +48523,13,3,21734,1539483 +48524,292,3,11045,1550394 +48525,413,11,69921,1879112 +48526,333,2,359245,1638342 +48527,317,10,131366,2792 +48528,277,3,121006,27969 +48529,234,1,205584,21085 +48530,317,10,423078,1364459 +48531,333,2,302036,1417175 +48532,277,3,1966,1398091 +48533,346,3,8204,1401273 +48534,204,9,168295,1083277 +48535,273,7,43751,71523 +48536,3,5,63764,70855 +48537,273,7,20644,19407 +48538,269,9,11358,774208 +48539,273,7,134806,58124 +48540,387,10,371942,72191 +48541,328,6,178809,1412592 +48542,328,6,188927,1408381 +48543,413,11,19200,10440 +48544,132,2,405473,1723011 +48545,64,6,8870,1724281 +48546,209,7,135679,1103540 +48547,5,10,157847,1192774 +48548,3,5,10647,16425 +48549,245,3,258509,1393783 +48550,327,7,81522,1643461 +48551,234,1,80473,52371 +48552,176,3,269173,1379044 +48553,52,10,242240,95040 +48554,234,1,304372,104025 +48555,53,2,2002,20573 +48556,387,10,26689,96040 +48557,167,3,9352,1404234 +48558,413,11,222935,19661 +48559,317,10,48967,138619 +48560,234,1,104146,97646 +48561,273,7,39462,1309510 +48562,148,9,10087,475 +48563,234,1,9756,58922 +48564,234,1,21198,59611 +48565,3,5,273,3722 +48566,387,10,61049,83455 +48567,413,11,38908,121608 +48568,317,10,255388,9100 +48569,387,10,54155,7709 +48570,53,2,111470,32442 +48571,127,3,9297,1462673 +48572,289,6,90034,938146 +48573,148,9,29829,3649 +48574,67,10,256421,105643 +48575,234,1,68629,54469 +48576,413,11,10862,59870 +48577,234,1,13279,58689 +48578,3,5,9406,28370 +48579,234,1,31413,145518 +48580,273,7,120831,1619495 +48581,72,11,287903,1569349 +48582,189,3,11607,1342628 +48583,3,5,351365,47114 +48584,57,2,9946,1431999 +48585,269,9,47536,5022 +48586,387,10,192990,76884 +48587,122,8,11045,1717528 +48588,60,1,110980,1312731 +48589,53,2,8840,1481831 +48590,234,1,456781,212999 +48591,234,1,71630,35585 +48592,269,9,866,9153 +48593,105,7,38602,20923 +48594,234,1,66668,24318 +48595,204,9,31397,1408464 +48596,269,9,14750,21589 +48597,208,2,75622,1316504 +48598,176,3,74,1816574 +48599,187,11,324181,1775303 +48600,249,7,284052,1395025 +48601,262,6,12783,1394721 +48602,317,10,13986,35770 +48603,387,10,41963,117443 +48604,333,2,336850,1570162 +48605,317,10,377587,1589835 +48606,387,10,8470,55313 +48607,394,7,19901,577468 +48608,234,1,47211,96369 +48609,53,2,290379,9064 +48610,105,7,26558,28285 +48611,5,10,125926,1107003 +48612,234,1,14041,229002 +48613,413,11,169726,133869 +48614,413,11,30014,7649 +48615,277,3,302026,229998 +48616,317,10,146313,1114792 +48617,277,3,269173,1379048 +48618,269,9,198663,21470 +48619,234,1,443007,1763905 +48620,286,3,144792,1264551 +48621,196,7,365942,1551789 +48622,317,10,18613,88391 +48623,273,7,19053,551921 +48624,75,5,20312,1396458 +48625,208,2,9296,23550 +48626,60,1,9475,10390 +48627,273,7,44921,11441 +48628,161,6,329865,1646558 +48629,387,10,98277,1017274 +48630,158,2,16921,1401768 +48631,234,1,103073,544984 +48632,317,10,215579,70738 +48633,317,10,32328,129533 +48634,296,3,7551,1526467 +48635,45,9,8619,1377216 +48636,3,5,73424,979183 +48637,269,9,5924,12510 +48638,60,1,144792,1456433 +48639,250,11,72431,1414290 +48640,413,11,38765,8505 +48641,234,1,161482,1144625 +48642,127,3,2309,1838468 +48643,53,2,13836,935719 +48644,234,1,15584,80207 +48645,406,6,228339,1277471 +48646,226,2,41283,1440293 +48647,413,11,11175,5821 +48648,273,7,33367,20075 +48649,387,10,2907,1901 +48650,105,7,107811,53012 +48651,273,7,9539,1263195 +48652,3,5,445,6027 +48653,5,10,4191,7748 +48654,413,11,49018,2127 +48655,411,9,76163,1324818 +48656,52,10,49850,556717 +48657,143,7,19901,1391715 +48658,226,2,17577,1403003 +48659,373,7,242310,115810 +48660,3,5,23599,59443 +48661,204,9,274060,14448 +48662,289,6,9297,1462692 +48663,234,1,60281,30715 +48664,413,11,343972,129679 +48665,234,1,75145,13861 +48666,234,1,4520,11181 +48667,75,5,198663,1377131 +48668,234,1,37497,21404 +48669,234,1,4285,6094 +48670,360,3,33613,997667 +48671,3,5,3081,31501 +48672,273,7,209112,56827 +48673,387,10,9470,545537 +48674,3,5,72912,10815 +48675,234,1,1825,33008 +48676,234,1,37820,1155073 +48677,234,1,26849,18574 +48678,273,7,10973,56928 +48679,275,9,43641,1252487 +48680,77,10,16486,34517 +48681,3,5,183827,418836 +48682,317,10,17189,121624 +48683,365,6,76010,1193429 +48684,413,11,158908,4235 +48685,235,5,7551,1436190 +48686,387,10,14794,97164 +48687,387,10,11939,70981 +48688,225,7,227306,1116936 +48689,413,11,38807,124505 +48690,158,2,44943,1189108 +48691,187,11,203833,1406190 +48692,286,3,298040,1166085 +48693,196,7,126889,1408374 +48694,3,5,42640,2005 +48695,234,1,4253,35784 +48696,301,5,16432,32270 +48697,373,7,9504,1302182 +48698,413,11,9664,16465 +48699,30,5,181533,1404244 +48700,182,8,324670,1427840 +48701,234,1,179103,1018093 +48702,317,10,3173,21905 +48703,3,5,102444,12702 +48704,349,1,19594,1460481 +48705,413,11,11003,21223 +48706,317,10,180998,150330 +48707,234,1,235260,235820 +48708,203,1,11377,1341801 +48709,234,1,202241,16863 +48710,273,7,11330,69017 +48711,148,9,122857,1323106 +48712,234,1,15902,167407 +48713,203,1,347945,1493871 +48714,289,6,72105,1450992 +48715,413,11,35623,57932 +48716,182,8,64215,1354361 +48717,413,11,267931,1107724 +48718,189,3,13380,1753075 +48719,273,7,6687,106 +48720,204,9,246655,1354916 +48721,148,9,18998,960784 +48722,175,5,35021,1611208 +48723,234,1,257561,1058278 +48724,3,5,17175,48311 +48725,239,5,274479,1608765 +48726,60,1,284288,1763413 +48727,3,5,5425,31775 +48728,13,1,351211,1652095 +48729,317,10,40081,70675 +48730,317,10,13169,22215 +48731,413,11,8470,6453 +48732,387,10,23861,14857 +48733,105,7,14430,1180954 +48734,273,7,10406,28156 +48735,333,2,14,74323 +48736,234,1,36917,150777 +48737,234,1,90762,225702 +48738,196,7,28893,554887 +48739,127,3,1481,1344422 +48740,387,10,9532,57134 +48741,234,1,13802,5015 +48742,303,3,14,37925 +48743,3,5,37083,3351 +48744,132,2,10071,1440293 +48745,317,10,257912,1299568 +48746,105,7,96987,148736 +48747,5,10,259695,4722 +48748,413,11,8588,55410 +48749,113,9,31413,1603646 +48750,303,3,10529,959308 +48751,306,7,53949,1539033 +48752,373,7,6933,1395446 +48753,387,10,11704,12881 +48754,413,11,18971,75079 +48755,234,1,10025,18281 +48756,291,6,11024,1673811 +48757,148,9,703,1027800 +48758,387,10,275269,1676434 +48759,317,10,240913,99243 +48760,52,10,10020,59803 +48761,234,1,298722,129106 +48762,394,7,9423,117867 +48763,12,10,11915,3835 +48764,3,5,55420,45459 +48765,234,1,48116,1030521 +48766,3,5,10294,3115 +48767,234,1,21449,1243 +48768,273,7,44754,1045816 +48769,269,9,3563,20824 +48770,373,7,7326,1423757 +48771,273,7,9819,3562 +48772,85,10,381255,1652866 +48773,204,3,378607,1566581 +48774,210,9,2924,1803767 +48775,289,6,53219,148152 +48776,317,10,144111,568270 +48777,234,1,1634,18254 +48778,333,2,41312,1654346 +48779,234,1,19505,78997 +48780,49,7,15653,1551550 +48781,166,9,9946,1334778 +48782,234,1,13733,146481 +48783,269,9,55846,1404854 +48784,341,2,109439,1868232 +48785,53,2,11618,1765727 +48786,289,6,20421,1113194 +48787,64,6,37958,1447543 +48788,229,6,246655,1483135 +48789,53,2,15935,75907 +48790,269,9,126832,1083258 +48791,333,2,340101,1459855 +48792,46,5,52661,74796 +48793,182,8,265208,1490951 +48794,387,10,5551,44064 +48795,234,1,61430,19528 +48796,160,3,169298,1407259 +48797,273,7,34082,120030 +48798,52,10,9593,11011 +48799,234,1,183662,83403 +48800,387,10,54227,5837 +48801,196,7,638,9423 +48802,273,7,71393,1686879 +48803,398,9,4641,38701 +48804,413,11,91480,32174 +48805,5,10,21070,87063 +48806,148,9,134435,29280 +48807,413,11,45019,1338380 +48808,226,2,109417,1599059 +48809,268,7,169881,1410748 +48810,387,10,87612,20371 +48811,273,7,25653,231498 +48812,67,10,1586,91069 +48813,262,6,69,1032536 +48814,273,7,105509,931615 +48815,289,6,69103,148263 +48816,273,7,11055,18837 +48817,53,2,28263,20787 +48818,403,10,109477,1046586 +48819,304,10,109001,1045390 +48820,105,7,291871,1518924 +48821,269,9,356326,1150428 +48822,403,10,660,9856 +48823,289,6,69103,555752 +48824,127,3,16320,1813644 +48825,387,10,40916,13982 +48826,273,7,1443,17232 +48827,234,1,118195,52121 +48828,269,9,376570,1340734 +48829,180,7,39833,27732 +48830,234,1,35428,115122 +48831,209,7,262338,1337420 +48832,269,9,1715,5329 +48833,234,1,19203,50460 +48834,234,1,85472,115891 +48835,234,1,48375,51298 +48836,204,9,49502,37468 +48837,127,3,3059,1899128 +48838,387,10,348389,1675388 +48839,148,9,16320,21984 +48840,3,5,65646,29731 +48841,207,3,11236,1077928 +48842,234,1,29236,103360 +48843,3,5,1640,21118 +48844,113,9,283995,1653680 +48845,317,10,38164,15191 +48846,3,5,209401,24256 +48847,387,10,93858,150512 +48848,387,10,422,5678 +48849,286,3,66741,1322446 +48850,234,1,57011,84748 +48851,317,10,398786,1492093 +48852,413,11,45098,135848 +48853,413,11,16174,139000 +48854,77,10,9396,57147 +48855,92,7,2924,11174 +48856,3,5,9981,43891 +48857,289,6,74961,113285 +48858,45,9,15092,1387217 +48859,158,2,5289,1409748 +48860,53,2,245692,1574448 +48861,148,9,39001,21162 +48862,360,3,2662,1341776 +48863,273,7,9385,35373 +48864,234,1,91390,19304 +48865,249,7,1579,1395025 +48866,127,3,9461,114628 +48867,394,7,2567,1333223 +48868,234,1,186630,57641 +48869,234,1,261581,52849 +48870,269,9,448847,1047978 +48871,52,10,52696,224221 +48872,204,9,409,5492 +48873,234,1,253283,1233554 +48874,60,1,204802,1347153 +48875,277,3,277355,570127 +48876,387,10,198795,987344 +48877,203,1,274857,1394093 +48878,273,7,177047,1462281 +48879,387,10,43503,10148 +48880,60,1,1578,1050155 +48881,234,1,344560,103234 +48882,413,11,10740,24219 +48883,269,9,68721,52600 +48884,3,5,100910,13809 +48885,286,3,188357,1317092 +48886,289,6,87827,1453019 +48887,413,11,43268,30494 +48888,232,10,39415,16988 +48889,234,1,10643,50651 +48890,387,10,408024,1449283 +48891,387,10,12112,71307 +48892,238,7,413452,1523025 +48893,273,7,131689,928420 +48894,373,7,9441,42267 +48895,273,7,62720,8619 +48896,286,3,54396,239176 +48897,132,2,181533,1694455 +48898,273,7,369697,1124600 +48899,75,5,122134,1868 +48900,301,5,126889,1569342 +48901,413,11,406449,1698810 +48902,387,10,10671,24939 +48903,53,2,13551,957115 +48904,113,9,333371,1463359 +48905,273,7,54146,51808 +48906,75,5,333484,1084753 +48907,234,1,209401,1192893 +48908,3,5,30308,3637 +48909,234,1,13393,142857 +48910,413,11,346723,1032823 +48911,317,10,253273,1111202 +48912,333,2,257088,1537964 +48913,317,10,21338,87407 +48914,317,10,30289,79390 +48915,187,11,89492,1299405 +48916,105,7,33339,21266 +48917,87,7,29444,91147 +48918,273,7,94744,29501 +48919,234,1,286709,65994 +48920,317,10,13855,75918 +48921,97,7,198663,1338372 +48922,317,10,47324,1302818 +48923,187,11,79935,1447085 +48924,387,10,12783,1012 +48925,239,5,140607,1550795 +48926,317,10,48874,130575 +48927,234,1,25037,68424 +48928,234,1,15036,27436 +48929,287,3,169881,1519294 +48930,317,10,92562,994387 +48931,64,6,10865,1447503 +48932,181,7,277778,1377835 +48933,11,6,293660,1580851 +48934,234,1,156356,143561 +48935,317,10,94744,92928 +48936,234,1,63178,67924 +48937,225,7,12,1422411 +48938,360,3,13777,75299 +48939,277,3,90616,1692113 +48940,87,7,310137,1533711 +48941,317,10,81775,37590 +48942,234,1,71140,51521 +48943,148,9,43829,8508 +48944,317,10,217923,564820 +48945,262,6,264525,1857576 +48946,234,1,107682,240150 +48947,413,11,25695,131397 +48948,269,9,228205,66532 +48949,269,9,4982,944 +48950,234,1,109477,237952 +48951,234,1,371181,115178 +48952,398,9,809,1677814 +48953,269,9,26809,137199 +48954,234,1,98557,1018699 +48955,234,1,85709,118674 +48956,234,1,91715,143561 +48957,387,10,13526,72554 +48958,72,11,188927,1194885 +48959,413,11,249,3394 +48960,317,10,69075,589183 +48961,387,10,1984,20414 +48962,53,2,6591,1588222 +48963,289,6,260030,1453120 +48964,75,5,99861,1510439 +48965,190,7,362579,1199318 +48966,3,5,4024,9752 +48967,234,1,91673,985009 +48968,3,5,11531,17048 +48969,221,3,27265,1341862 +48970,269,9,9905,9003 +48971,269,9,293625,1588194 +48972,20,2,1902,1492133 +48973,105,7,39195,5912 +48974,234,1,35569,48548 +48975,413,11,71329,1605698 +48976,234,1,42569,1895 +48977,187,11,8292,1391679 +48978,175,5,181533,1394973 +48979,3,5,39867,11409 +48980,75,5,302026,92236 +48981,221,3,258251,1348596 +48982,234,1,662,9956 +48983,234,1,241574,100664 +48984,413,11,11572,62473 +48985,3,5,105906,1120595 +48986,72,11,17654,1424635 +48987,204,9,172908,27937 +48988,155,3,32085,56989 +48989,398,9,284564,1680435 +48990,413,11,18387,13721 +48991,234,1,233490,82442 +48992,86,3,8204,15445 +48993,204,9,65599,61506 +48994,317,10,110588,223830 +48995,317,10,49847,142951 +48996,226,2,39578,1784168 +48997,3,5,245775,64635 +48998,387,10,11011,13582 +48999,226,2,31280,1469046 +49000,3,5,42191,11442 +49001,349,1,16249,608 +49002,333,2,146243,1451403 +49003,127,3,10550,1007395 +49004,234,1,42996,7506 +49005,20,2,10440,28041 +49006,377,3,755,1851720 +49007,52,10,13205,15778 +49008,323,10,387999,442286 +49009,203,1,33792,1755201 +49010,387,10,263472,236211 +49011,234,1,97724,1014879 +49012,387,10,19661,41712 +49013,175,5,388243,1622333 +49014,244,3,256962,8532 +49015,328,6,418437,1738653 +49016,298,5,293660,1494209 +49017,317,10,4550,37928 +49018,234,1,66597,16838 +49019,386,5,3597,8751 +49020,161,6,329865,1646527 +49021,234,1,33673,50300 +49022,105,7,34459,1569276 +49023,413,11,199647,1179838 +49024,234,1,45197,1681499 +49025,234,1,14539,67259 +49026,286,3,15725,110526 +49027,317,10,159727,1141552 +49028,387,10,22998,14641 +49029,387,10,8816,56395 +49030,387,10,330115,9994 +49031,273,7,345922,1404094 +49032,234,1,9776,2632 +49033,166,9,9423,1389587 +49034,273,7,47312,2578 +49035,398,9,11024,1431018 +49036,209,7,176,1136753 +49037,234,1,348673,1352901 +49038,234,1,97672,1048552 +49039,413,11,109477,237952 +49040,268,7,14979,1408608 +49041,226,2,246655,1713067 +49042,234,1,66340,93193 +49043,394,7,9664,11229 +49044,204,9,18514,1086087 +49045,53,2,59838,4350 +49046,273,7,910,3249 +49047,148,9,49308,1351627 +49048,104,7,11351,112608 +49049,387,10,386100,1366212 +49050,234,1,62855,236104 +49051,234,1,15371,608 +49052,317,10,38362,144611 +49053,394,7,9438,21103 +49054,198,6,10529,1567327 +49055,234,1,50079,84034 +49056,273,7,59678,16368 +49057,273,7,73474,17212 +49058,179,2,333352,1609847 +49059,411,9,294272,12653 +49060,234,1,261273,1319649 +49061,53,2,38579,23415 +49062,234,1,70199,6448 +49063,413,11,287,3032 +49064,209,7,297762,1368884 +49065,105,7,24486,19043 +49066,92,7,147815,1667105 +49067,5,10,247354,1282825 +49068,105,7,332827,110297 +49069,286,3,33570,110926 +49070,234,1,161024,1143299 +49071,387,10,89756,92199 +49072,147,1,3059,1496 +49073,60,1,44921,1584304 +49074,394,7,37181,1141702 +49075,314,2,266102,1606176 +49076,234,1,266030,1312056 +49077,3,5,173205,1493533 +49078,179,2,435,1321589 +49079,213,10,38625,550813 +49080,75,5,188927,1638553 +49081,52,10,25499,593019 +49082,234,1,17057,2765 +49083,387,10,28739,101800 +49084,387,10,77950,103041 +49085,3,5,17711,11371 +49086,273,7,242,2872 +49087,3,5,59296,1460350 +49088,200,3,14979,1402714 +49089,317,10,326723,1430116 +49090,204,9,28290,9061 +49091,203,1,131343,1450097 +49092,387,10,310126,128459 +49093,135,3,9902,1600621 +49094,147,1,263115,1821872 +49095,53,2,146216,6392 +49096,328,6,270303,1462037 +49097,387,10,188684,135144 +49098,122,8,693,1761068 +49099,273,7,356191,1549812 +49100,387,10,14705,114379 +49101,175,5,2105,1552172 +49102,182,8,329440,1622449 +49103,60,1,59231,175885 +49104,234,1,129383,225738 +49105,75,5,339403,1635250 +49106,187,11,370234,1447085 +49107,75,5,12113,1405388 +49108,317,10,16985,66529 +49109,234,1,339342,1466676 +49110,234,1,177190,97774 +49111,419,10,82401,566910 +49112,333,2,1428,1851742 +49113,289,6,24556,91770 +49114,204,9,8840,1481830 +49115,234,1,598,8557 +49116,234,1,156335,11431 +49117,53,2,228290,1178417 +49118,234,1,39061,121971 +49119,387,10,23857,544637 +49120,234,1,226354,1387618 +49121,234,1,76438,236013 +49122,148,9,798,6813 +49123,357,3,13336,1410598 +49124,148,9,158947,1784277 +49125,22,9,381015,1828350 +49126,328,6,315837,1797234 +49127,413,11,251555,939474 +49128,387,10,88320,89860 +49129,234,1,27917,29504 +49130,269,9,199373,21420 +49131,234,1,64046,128302 +49132,234,1,8985,85637 +49133,3,5,51144,34783 +49134,249,7,129,934818 +49135,203,1,63139,1459244 +49136,40,1,18,1394958 +49137,413,11,6575,38412 +49138,204,9,9968,9818 +49139,289,6,66045,1456632 +49140,333,2,241855,1705835 +49141,148,9,207641,1169919 +49142,3,5,34181,1329402 +49143,413,11,42170,46238 +49144,87,7,10972,1534680 +49145,127,3,26761,207141 +49146,204,9,29151,1399189 +49147,373,7,13225,1815884 +49148,373,7,70981,16177 +49149,269,9,8852,12436 +49150,160,3,403605,1304642 +49151,166,9,345925,1717835 +49152,234,1,74237,1112002 +49153,155,3,613,1071 +49154,53,2,242097,3647 +49155,52,10,10948,67604 +49156,317,10,440777,1754586 +49157,234,1,72826,567244 +49158,234,1,36264,591269 +49159,75,5,1481,1425390 +49160,273,7,76438,578852 +49161,30,5,365942,1399071 +49162,234,1,11534,69759 +49163,360,9,1902,1830643 +49164,413,11,48153,54359 +49165,317,10,26644,107395 +49166,203,1,285840,1646074 +49167,273,7,36737,92202 +49168,398,9,19995,1376889 +49169,413,11,49853,6076 +49170,53,2,13853,185777 +49171,105,7,11161,190 +49172,3,5,97910,14960 +49173,273,7,29290,103489 +49174,234,1,228198,114484 +49175,53,2,45213,14237 +49176,286,3,15144,4056 +49177,106,3,10865,61381 +49178,182,8,188102,1845777 +49179,134,3,809,1705 +49180,289,6,53211,113285 +49181,77,10,33333,110499 +49182,234,1,69668,53334 +49183,269,9,8467,932118 +49184,234,1,180813,1168087 +49185,317,10,419192,104999 +49186,148,9,345918,1441219 +49187,17,3,263115,1751716 +49188,105,7,31397,1408460 +49189,3,5,42149,67898 +49190,413,11,2144,9772 +49191,373,7,329440,1395447 +49192,413,11,403431,46809 +49193,286,3,360924,1427466 +49194,262,6,203819,1355540 +49195,92,7,43828,1567996 +49196,234,1,259728,1206345 +49197,5,10,10863,149277 +49198,3,5,116385,6452 +49199,269,9,12526,16492 +49200,53,2,407559,1553775 +49201,196,7,325263,1539982 +49202,234,1,369524,18596 +49203,317,10,107445,35408 +49204,22,9,154972,1755268 +49205,204,9,24154,1473665 +49206,234,1,20521,58375 +49207,3,5,8388,56223 +49208,273,7,1259,1551 +49209,273,7,83802,109236 +49210,289,6,140607,1550758 +49211,387,10,5881,46282 +49212,262,6,6972,1401717 +49213,234,1,742,11037 +49214,234,1,11704,40345 +49215,234,1,660,9855 +49216,387,10,180252,1293597 +49217,413,11,94725,67846 +49218,53,2,127493,46084 +49219,53,2,43432,1023828 +49220,269,9,29161,103056 +49221,333,2,64215,1354328 +49222,180,7,101929,550945 +49223,143,7,435,1392081 +49224,273,7,9426,117 +49225,368,7,9882,1361676 +49226,406,6,102382,1463182 +49227,3,5,8282,18494 +49228,289,6,9514,1642603 +49229,175,5,4286,1534645 +49230,234,1,174958,68 +49231,3,5,99767,3637 +49232,317,10,29743,67971 +49233,234,1,32274,504 +49234,387,10,283701,1036470 +49235,398,9,2110,1966 +49236,277,3,53459,1437898 +49237,387,10,64129,4357 +49238,387,10,14611,1215939 +49239,234,1,8270,2199 +49240,187,11,9532,1406390 +49241,3,5,4133,313 +49242,234,1,77922,1017712 +49243,77,10,14254,58922 +49244,204,9,291164,1538239 +49245,76,2,177677,1411066 +49246,269,9,6443,1683614 +49247,269,9,107985,39200 +49248,360,3,773,1341776 +49249,317,10,41035,7299 +49250,166,9,1991,1420150 +49251,182,8,31947,1896606 +49252,291,6,2675,1311507 +49253,273,7,60759,232014 +49254,204,9,857,61361 +49255,53,2,4286,32055 +49256,148,9,202337,37435 +49257,53,2,79372,14867 +49258,317,10,134215,92693 +49259,317,10,346443,1429868 +49260,52,10,78734,120312 +49261,3,5,2966,1673349 +49262,190,7,34723,1429548 +49263,234,1,340053,1317365 +49264,60,1,31548,1348279 +49265,234,1,42066,32134 +49266,245,3,9816,1468628 +49267,3,5,134155,1796920 +49268,60,1,87894,1361164 +49269,413,11,293082,1229789 +49270,179,2,333663,1402001 +49271,53,2,3784,13589 +49272,273,7,323929,1394645 +49273,277,3,287,1534835 +49274,105,7,77825,582562 +49275,269,9,31634,127200 +49276,53,2,60599,36429 +49277,301,5,43923,1407021 +49278,52,10,48131,145872 +49279,286,3,13442,51783 +49280,268,7,403,572622 +49281,74,5,6163,1570787 +49282,317,10,255647,110968 +49283,60,1,11645,78107 +49284,317,10,339994,1466580 +49285,208,2,241239,1416798 +49286,75,5,28110,1713524 +49287,3,5,13279,17749 +49288,317,10,371504,93289 +49289,333,2,1480,1000458 +49290,234,1,70636,500061 +49291,75,5,9532,1408392 +49292,148,9,31880,17851 +49293,77,10,9950,39996 +49294,77,10,11983,71169 +49295,75,5,284289,1418398 +49296,3,5,37301,13338 +49297,373,7,264553,1332313 +49298,413,11,180383,1115066 +49299,273,7,19209,69161 +49300,317,10,13655,133326 +49301,234,1,38134,63937 +49302,360,9,544,1181954 +49303,413,11,243683,971 +49304,317,10,26768,56634 +49305,203,1,6145,1492934 +49306,273,7,635,7020 +49307,289,6,11024,1461148 +49308,60,1,21734,87829 +49309,273,7,41574,1315089 +49310,234,1,65674,8514 +49311,226,2,1976,91232 +49312,387,10,128089,591420 +49313,52,10,7863,33433 +49314,387,10,1959,20238 +49315,273,7,344147,13669 +49316,234,1,8282,21678 +49317,234,1,25682,93923 +49318,387,10,77887,2216 +49319,3,5,350060,1425112 +49320,387,10,31586,62055 +49321,413,11,22307,10766 +49322,40,1,312669,1797110 +49323,175,5,329289,1534693 +49324,269,9,197,2486 +49325,286,3,36325,966798 +49326,219,11,100110,1370963 +49327,204,9,79521,1077688 +49328,413,11,83599,56205 +49329,158,2,225728,1568548 +49330,234,1,257214,1296775 +49331,143,7,198663,1367494 +49332,317,10,114790,26436 +49333,317,10,8915,32795 +49334,3,5,124994,1080821 +49335,182,8,180305,1453138 +49336,53,2,94663,233723 +49337,22,9,186869,1862922 +49338,77,10,613,8808 +49339,328,6,266856,1516449 +49340,413,11,26036,871 +49341,3,5,226188,938024 +49342,175,5,289225,1850543 +49343,373,7,8869,1303184 +49344,317,10,36628,116531 +49345,186,6,329865,1646581 +49346,79,7,103236,610747 +49347,180,7,76642,12265 +49348,3,5,316654,1136857 +49349,333,2,30126,26175 +49350,269,9,120637,1253 +49351,387,10,4441,37259 +49352,3,5,29416,12235 +49353,317,10,72933,55785 +49354,387,10,9778,58789 +49355,387,10,91070,939123 +49356,286,3,230266,68525 +49357,3,5,10219,149 +49358,413,11,303636,1778395 +49359,75,5,13056,1372884 +49360,127,3,52661,19567 +49361,179,2,25507,34225 +49362,317,10,82191,16888 +49363,198,6,15019,1555691 +49364,387,10,33511,45053 +49365,52,10,28340,50583 +49366,360,3,277355,1424682 +49367,273,7,39435,16748 +49368,244,3,18,8375 +49369,328,6,6972,1401733 +49370,269,9,121824,11475 +49371,387,10,149465,1740642 +49372,61,7,4248,1667274 +49373,5,10,254435,1175079 +49374,286,3,47211,37736 +49375,209,7,157843,1377419 +49376,234,1,21027,51875 +49377,234,1,99453,108464 +49378,413,11,48145,8735 +49379,273,7,22292,1045 +49380,415,3,44626,10157 +49381,387,10,43811,72062 +49382,413,11,7515,55985 +49383,3,5,301348,47293 +49384,387,10,57977,84714 +49385,317,10,16239,23659 +49386,196,7,285270,1367924 +49387,413,11,338,703 +49388,387,10,55784,180528 +49389,160,3,141,1122560 +49390,317,10,26574,57377 +49391,3,5,1634,18257 +49392,129,11,2300,1767023 +49393,269,9,13616,225943 +49394,273,7,8844,1729 +49395,203,1,14676,17916 +49396,53,2,236395,11491 +49397,360,9,5924,1434205 +49398,3,5,308165,1113239 +49399,234,1,115712,1061941 +49400,387,10,39840,125282 +49401,75,5,356296,1544276 +49402,92,7,18,22320 +49403,148,9,11584,16549 +49404,273,7,273481,117992 +49405,387,10,9308,13429 +49406,413,11,1404,15495 +49407,314,2,298,1551536 +49408,244,3,45013,1053820 +49409,387,10,30943,59583 +49410,317,10,28209,100118 +49411,234,1,189197,21712 +49412,148,9,244580,1364238 +49413,387,10,51275,143663 +49414,3,5,61430,17761 +49415,189,3,76203,1393454 +49416,234,1,10865,62048 +49417,234,1,363807,1066705 +49418,317,10,57091,160823 +49419,53,2,43139,1295613 +49420,333,2,43503,4352 +49421,203,1,258193,117082 +49422,3,5,343934,1475577 +49423,192,5,11056,1418159 +49424,143,7,1125,1428855 +49425,196,7,118957,1402738 +49426,204,9,13550,12704 +49427,273,7,69784,8619 +49428,317,10,39536,567587 +49429,273,7,11017,14712 +49430,122,8,263115,1550071 +49431,234,1,525,4610 +49432,324,3,298584,69803 +49433,52,10,40633,84643 +49434,273,7,7555,6041 +49435,387,10,59387,185446 +49436,3,5,33336,6789 +49437,269,9,58757,37848 +49438,234,1,352197,68929 +49439,46,5,2300,9379 +49440,413,11,94468,1458037 +49441,72,11,11236,1881625 +49442,148,9,145481,1564469 +49443,3,5,5559,44122 +49444,53,2,9428,19285 +49445,301,5,339342,1084968 +49446,317,10,51548,145022 +49447,317,10,13338,89843 +49448,97,7,333371,1636668 +49449,317,10,36530,115529 +49450,113,9,168259,1326651 +49451,387,10,19606,106648 +49452,3,5,58251,129561 +49453,147,1,9472,545842 +49454,317,10,20645,18598 +49455,293,2,9352,1586336 +49456,413,11,50123,15807 +49457,317,10,98864,84657 +49458,52,10,332411,43583 +49459,269,9,422,5681 +49460,234,1,50416,59023 +49461,52,10,18646,27968 +49462,387,10,26264,88130 +49463,317,10,64046,128302 +49464,187,11,17654,1355537 +49465,53,2,369524,4189 +49466,234,1,38913,32685 +49467,413,11,379,5175 +49468,196,7,9543,1408799 +49469,413,11,9457,7784 +49470,413,11,38162,58705 +49471,234,1,167882,25558 +49472,3,5,47448,1796603 +49473,204,9,2160,22088 +49474,269,9,294652,1172514 +49475,148,9,1647,957970 +49476,234,1,34216,136164 +49477,413,11,74527,109414 +49478,269,9,169881,5867 +49479,234,1,63273,1056732 +49480,317,10,78323,583731 +49481,105,7,82627,928333 +49482,232,10,52991,29618 +49483,413,11,63273,1005952 +49484,387,10,382873,1301845 +49485,27,3,116463,1691509 +49486,75,5,9028,1757604 +49487,273,7,14683,18663 +49488,333,2,9716,1661564 +49489,234,1,31618,27436 +49490,413,11,343369,991671 +49491,204,9,15371,78370 +49492,234,1,131907,31384 +49493,268,7,19765,150796 +49494,196,7,24624,1441671 +49495,141,7,11024,1604015 +49496,245,3,323426,1556333 +49497,317,10,226693,49627 +49498,387,10,5460,7932 +49499,158,2,102629,1345267 +49500,387,10,1903,11649 +49501,3,5,265226,56289 +49502,387,10,27986,86404 +49503,203,1,11236,1881627 +49504,143,7,140607,670 +49505,53,2,402446,959554 +49506,387,10,287587,60924 +49507,317,10,40208,1187660 +49508,387,10,30973,2633 +49509,3,5,8847,149 +49510,204,9,10925,1476550 +49511,11,6,337339,1739313 +49512,287,3,14510,81460 +49513,64,6,56292,1463568 +49514,413,11,319993,1437664 +49515,333,2,83015,1293872 +49516,196,7,116979,1393857 +49517,53,2,77079,1511192 +49518,52,10,34223,22814 +49519,53,2,16090,4350 +49520,234,1,296491,37742 +49521,234,1,84827,1071381 +49522,273,7,27102,84668 +49523,234,1,339527,1032011 +49524,234,1,30361,149863 +49525,75,5,924,44087 +49526,169,3,10320,9621 +49527,244,3,773,12561 +49528,387,10,10354,57383 +49529,226,2,132363,32487 +49530,169,3,296523,1399863 +49531,234,1,37517,49361 +49532,40,1,3059,8838 +49533,234,1,161243,1143481 +49534,52,10,21430,150783 +49535,13,3,41213,1777258 +49536,352,3,11622,1711837 +49537,387,10,12763,60025 +49538,52,10,97598,959728 +49539,234,1,16162,72024 +49540,203,1,30666,1763583 +49541,196,7,97614,1412703 +49542,234,1,288313,929899 +49543,3,5,1655,18395 +49544,3,5,130900,16750 +49545,387,10,181533,121357 +49546,317,10,69974,557662 +49547,317,10,299828,58053 +49548,182,8,7299,1406786 +49549,387,10,202662,137349 +49550,99,3,2323,92108 +49551,317,10,28736,101773 +49552,387,10,369524,932023 +49553,234,1,297466,1547487 +49554,415,3,157424,950952 +49555,3,5,30374,100332 +49556,387,10,12499,27519 +49557,3,5,263115,943 +49558,3,5,102362,19290 +49559,413,11,269258,1153033 +49560,226,2,294254,1571508 +49561,387,10,36089,129083 +49562,87,7,352208,1781615 +49563,269,9,310133,1458714 +49564,3,5,71859,3285 +49565,317,10,63958,126863 +49566,416,10,1164,273 +49567,111,7,2662,1603333 +49568,387,10,10208,64184 +49569,234,1,277631,67451 +49570,226,2,2288,1428470 +49571,143,7,336050,1591381 +49572,204,9,71859,1474667 +49573,289,6,354859,1884721 +49574,66,11,325263,1636516 +49575,387,10,28273,131010 +49576,273,7,19618,17667 +49577,158,2,209112,1661395 +49578,148,9,10077,8410 +49579,268,7,9042,1399632 +49580,413,11,450875,110265 +49581,105,7,275269,1124968 +49582,148,9,127372,1431500 +49583,234,1,15759,15663 +49584,413,11,11404,28157 +49585,269,9,28448,5709 +49586,362,3,9352,548431 +49587,289,6,11886,63646 +49588,286,3,268212,985182 +49589,234,1,245169,209819 +49590,3,5,96089,89159 +49591,317,10,86254,92437 +49592,64,6,273404,1445372 +49593,105,7,63281,1602644 +49594,387,10,36373,67427 +49595,373,7,949,1338976 +49596,234,1,214100,974 +49597,111,7,9593,1778009 +49598,413,11,62764,3310 +49599,234,1,83209,32632 +49600,234,1,134362,1011787 +49601,234,1,19594,40345 +49602,3,5,97630,67113 +49603,5,10,8194,53935 +49604,387,10,544,7396 +49605,277,3,39907,1649576 +49606,3,5,281590,1341473 +49607,269,9,25330,352394 +49608,52,10,287281,77962 +49609,58,2,11236,1319160 +49610,179,2,10396,1321695 +49611,148,9,55563,1149268 +49612,234,1,174195,34402 +49613,291,6,144680,1435644 +49614,286,3,17906,60052 +49615,333,2,325039,1615187 +49616,403,10,23452,109196 +49617,387,10,39435,12277 +49618,143,7,127913,1104949 +49619,160,3,10004,14385 +49620,45,9,9664,1557574 +49621,108,10,4520,7750 +49622,148,9,511,7098 +49623,66,11,153,4235 +49624,67,10,8247,1442212 +49625,387,10,8882,72766 +49626,317,10,120588,148855 +49627,52,10,214129,1269281 +49628,179,2,318781,1065252 +49629,39,3,3035,103773 +49630,3,5,9056,56832 +49631,234,1,25430,14875 +49632,387,10,68050,25316 +49633,3,5,4520,24217 +49634,75,5,240913,30856 +49635,391,9,395992,1771003 +49636,3,5,42329,31050 +49637,66,11,1986,1646909 +49638,60,1,43195,1538491 +49639,226,2,193893,1871185 +49640,179,2,17654,1319834 +49641,5,10,82313,33027 +49642,234,1,68202,84437 +49643,204,9,320588,1637928 +49644,273,7,5183,41956 +49645,67,10,284053,105643 +49646,269,9,11247,21615 +49647,234,1,32921,4109 +49648,196,7,239566,1400093 +49649,411,9,43833,33261 +49650,175,5,348631,1584104 +49651,317,10,64225,3583 +49652,3,5,43855,10150 +49653,188,8,163791,1601462 +49654,21,3,90461,1168714 +49655,332,8,118,1855222 +49656,317,10,72596,85735 +49657,226,2,332872,1885281 +49658,234,1,125229,80709 +49659,67,10,21379,142587 +49660,234,1,24795,56506 +49661,175,5,3549,32720 +49662,3,5,85640,3351 +49663,394,7,11236,1558255 +49664,413,11,214756,11876 +49665,3,5,322400,81779 +49666,333,2,18317,1449932 +49667,234,1,161967,1023710 +49668,413,11,10336,64855 +49669,53,2,116236,937535 +49670,52,10,294272,1450233 +49671,175,5,25430,40600 +49672,3,5,7445,4434 +49673,3,5,2463,25240 +49674,3,5,8049,50025 +49675,52,10,332979,1474622 +49676,181,7,194,1536196 +49677,208,2,26390,15525 +49678,317,10,347328,1507573 +49679,234,1,20846,236378 +49680,332,8,54318,1453938 +49681,317,10,47863,139541 +49682,219,11,414910,1765661 +49683,387,10,13911,144068 +49684,179,2,206647,1510431 +49685,234,1,1689,4956 +49686,176,3,287,1399992 +49687,289,6,378236,1840328 +49688,234,1,52147,142857 +49689,148,9,194393,29280 +49690,234,1,324670,1425432 +49691,53,2,341689,9027 +49692,413,11,10053,20382 +49693,273,7,27805,1031108 +49694,234,1,44754,30711 +49695,203,1,24801,1418444 +49696,273,7,29083,25011 +49697,72,11,223485,1531100 +49698,317,10,25898,96608 +49699,148,9,22404,8508 +49700,196,7,188102,1845762 +49701,273,7,6933,1076 +49702,189,3,8204,1700839 +49703,317,10,20123,15255 +49704,317,10,42553,100036 +49705,273,7,31672,1259 +49706,327,7,11056,1418157 +49707,3,5,76,576 +49708,106,3,14128,1726811 +49709,413,11,11643,3455 +49710,204,9,18,8380 +49711,209,7,9746,142165 +49712,200,3,435,1418470 +49713,413,11,18352,1377604 +49714,204,9,13480,1126369 +49715,234,1,28736,101767 +49716,328,6,16374,1470212 +49717,32,8,19995,1401807 +49718,190,7,296523,1463399 +49719,387,10,11302,1243 +49720,387,10,72545,72725 +49721,234,1,45988,152183 +49722,46,5,26882,1773269 +49723,190,7,14019,76269 +49724,234,1,23512,33433 +49725,3,5,24150,64227 +49726,317,10,76011,117851 +49727,3,5,27230,22456 +49728,269,9,3597,12051 +49729,273,7,156597,1024442 +49730,317,10,86154,61711 +49731,3,5,288710,1155532 +49732,113,9,664,1892484 +49733,289,6,149870,1456607 +49734,148,9,28902,4148 +49735,398,9,12103,1449162 +49736,234,1,216521,1201130 +49737,269,9,16551,2657 +49738,53,2,335970,935301 +49739,413,11,127913,1017235 +49740,317,10,110898,1050790 +49741,413,11,36375,4102 +49742,234,1,204922,17608 +49743,250,11,49009,1539312 +49744,387,10,29352,41147 +49745,182,8,375012,1475254 +49746,200,3,127585,1407019 +49747,234,1,4380,36804 +49748,169,3,6977,9621 +49749,53,2,42684,1318663 +49750,333,2,18651,4352 +49751,234,1,30349,52056 +49752,234,1,310135,585933 +49753,409,7,263115,1821933 +49754,373,7,10070,89426 +49755,5,10,32275,120312 +49756,169,3,137145,1542303 +49757,387,10,55589,117962 +49758,52,10,88288,1380470 +49759,234,1,162435,20658 +49760,148,9,336882,1434541 +49761,317,10,390587,1598732 +49762,419,10,34204,108783 +49763,53,2,381518,76972 +49764,192,5,10529,1567317 +49765,175,5,88273,1416844 +49766,286,3,315855,1372758 +49767,289,6,72105,1455528 +49768,225,7,284052,1590402 +49769,53,2,19996,1764141 +49770,245,3,18763,83556 +49771,12,10,1450,16138 +49772,180,7,22292,9803 +49773,166,9,15613,1442504 +49774,413,11,81463,46647 +49775,40,1,169,10956 +49776,273,7,382873,63869 +49777,127,3,33673,151463 +49778,3,5,193893,56324 +49779,204,9,16436,14620 +49780,234,1,79645,18392 +49781,373,7,10733,112609 +49782,143,7,8247,113097 +49783,234,1,84226,71901 +49784,53,2,330115,6802 +49785,317,10,126323,1311749 +49786,269,9,60994,20825 +49787,397,7,241374,27969 +49788,234,1,145668,995566 +49789,105,7,56858,69179 +49790,356,2,1073,1571719 +49791,234,1,349045,562307 +49792,413,11,36288,6051 +49793,413,11,6557,1217 +49794,413,11,1624,15005 +49795,273,7,156597,1024441 +49796,54,10,413232,1530889 +49797,180,7,27966,1002528 +49798,262,6,10204,1459913 +49799,317,10,325645,12259 +49800,286,3,243683,47102 +49801,53,2,241239,1023713 +49802,317,10,22602,34799 +49803,143,7,4497,37504 +49804,286,3,157829,1084983 +49805,413,11,10176,1376 +49806,209,7,2047,1549652 +49807,317,10,189197,27098 +49808,234,1,281590,1341472 +49809,234,1,5206,42 +49810,273,7,2428,8503 +49811,234,1,262945,8626 +49812,413,11,193523,227967 +49813,3,5,135390,1303294 +49814,11,6,9325,69003 +49815,317,10,43256,99367 +49816,289,6,24238,1454660 +49817,360,3,265208,1490943 +49818,387,10,41597,14292 +49819,53,2,48205,1620075 +49820,413,11,403429,1640635 +49821,3,5,26517,15056 +49822,273,7,17831,72066 +49823,76,2,11370,1579678 +49824,387,10,12594,62020 +49825,234,1,20096,15239 +49826,328,6,435,1155668 +49827,289,6,72105,1455512 +49828,333,2,167,1411800 +49829,132,2,246655,1571046 +49830,40,1,178809,1798472 +49831,268,7,10999,1412617 +49832,273,7,120972,14356 +49833,301,5,273404,1415577 +49834,119,7,435,53017 +49835,148,9,33839,1335586 +49836,3,5,51275,1607591 +49837,387,10,7555,16483 +49838,273,7,261037,54599 +49839,234,1,333372,110873 +49840,387,10,3055,31069 +49841,413,11,3638,33438 +49842,67,10,326359,1364882 +49843,12,10,312100,54051 +49844,234,1,64944,572234 +49845,317,10,72900,212677 +49846,234,1,35543,40199 +49847,234,1,29872,30165 +49848,413,11,2463,25241 +49849,113,9,6171,40614 +49850,198,6,294254,1571499 +49851,234,1,105861,145714 +49852,273,7,2274,23486 +49853,333,2,111042,26175 +49854,387,10,83890,648685 +49855,234,1,37653,59031 +49856,234,1,124013,40235 +49857,12,10,95414,20007 +49858,189,3,7916,1438626 +49859,52,10,127091,5555 +49860,52,10,12144,71446 +49861,3,5,76494,40545 +49862,75,5,4547,1550618 +49863,413,11,46149,1623401 +49864,179,2,188927,1531862 +49865,234,1,29020,121037 +49866,148,9,79316,500199 +49867,317,10,358895,1612473 +49868,413,11,324440,55295 +49869,203,1,157354,1534675 +49870,415,3,118059,29984 +49871,234,1,84097,148849 +49872,273,7,275269,1174417 +49873,234,1,381054,220088 +49874,3,5,7515,27576 +49875,204,9,210940,1833179 +49876,3,5,153228,14960 +49877,273,7,19501,1207969 +49878,387,10,126712,33374 +49879,413,11,38006,40355 +49880,3,5,258147,1292465 +49881,373,7,22477,92377 +49882,58,2,9314,39814 +49883,72,11,132363,1383283 +49884,298,5,72431,125149 +49885,234,1,204800,239412 +49886,158,2,102382,1399477 +49887,387,10,805,3556 +49888,148,9,10733,71560 +49889,317,10,82080,49450 +49890,11,6,59981,1438912 +49891,123,3,418072,1685110 +49892,211,3,15440,1336911 +49893,277,3,3087,1002528 +49894,148,9,773,17150 +49895,234,1,55700,256841 +49896,387,10,36915,15795 +49897,234,1,203715,1186088 +49898,234,1,97614,15115 +49899,5,10,1480,55995 +49900,219,11,954,1562248 +49901,317,10,45693,133477 +49902,413,11,37633,446672 +49903,208,2,49009,1323090 +49904,53,2,89591,59858 +49905,234,1,129553,14674 +49906,234,1,40465,65271 +49907,158,2,76170,1527916 +49908,176,3,2662,1603318 +49909,317,10,36786,4509 +49910,317,10,36635,115868 +49911,204,9,8491,960431 +49912,234,1,9298,57199 +49913,396,3,9529,577618 +49914,387,10,11535,912 +49915,387,10,14983,77662 +49916,286,3,253533,1170058 +49917,234,1,167951,11454 +49918,273,7,14552,167555 +49919,273,7,3051,31049 +49920,3,5,67328,1431584 +49921,148,9,287903,126130 +49922,234,1,20421,12881 +49923,102,3,693,1416433 +49924,3,5,28730,55409 +49925,234,1,101995,145518 +49926,394,7,17144,1394338 +49927,325,5,857,1614160 +49928,415,3,55784,92393 +49929,387,10,58905,13802 +49930,387,10,33273,74943 +49931,117,5,116711,1462665 +49932,234,1,10268,64534 +49933,196,7,42188,1338969 +49934,226,2,95358,91232 +49935,262,6,11607,69579 +49936,273,7,10783,1528 +49937,105,7,257302,30634 +49938,204,9,38732,44878 +49939,3,5,14019,76277 +49940,3,5,287628,803 +49941,53,2,57489,1757094 +49942,387,10,80443,4413 +49943,387,10,10400,54972 +49944,52,10,80596,1194818 +49945,273,7,1810,8503 +49946,234,1,21148,35475 +49947,317,10,68987,4760 +49948,148,9,14976,4909 +49949,250,11,277355,1495875 +49950,53,2,10950,957115 +49951,204,9,121006,9062 +49952,333,2,20153,4352 +49953,3,5,10917,69049 +49954,273,7,30934,31291 +49955,234,1,133575,69099 +49956,387,10,76,568 +49957,269,9,118,1303 +49958,399,9,10020,1555333 +49959,234,1,39875,64222 +49960,317,10,19286,86926 +49961,273,7,43459,31866 +49962,273,7,91380,1027537 +49963,234,1,8463,55146 +49964,273,7,46786,1204438 +49965,3,5,10326,31027 +49966,413,11,116711,63980 +49967,113,9,163,1068056 +49968,413,11,70192,64118 +49969,387,10,16058,49362 +49970,269,9,48609,14097 +49971,226,2,2009,1586643 +49972,291,6,246655,113098 +49973,3,5,57201,11699 +49974,148,9,70006,935300 +49975,333,2,4809,26175 +49976,176,3,9358,1441284 +49977,234,1,19618,81799 +49978,413,11,10776,7754 +49979,327,7,34106,34402 +49980,413,11,12561,72827 +49981,234,1,294254,1179066 +49982,210,9,379019,1780194 +49983,75,5,20242,1309246 +49984,234,1,55544,9076 +49985,226,2,13616,1586593 +49986,234,1,452142,210158 +49987,204,9,435,62560 +49988,127,3,72105,1455500 +49989,234,1,245917,1281397 +49990,387,10,254575,1387329 +49991,234,1,77825,53218 +49992,317,10,81616,544812 +49993,273,7,370234,1621858 +49994,234,1,291164,1216753 +49995,301,5,52454,1402488 +49996,387,10,197785,30208 +49997,289,6,12144,1447298 +49998,317,10,14357,129438 +49999,387,10,63179,234743 +50000,303,3,10320,59812 +50001,411,9,72431,11457 +50002,387,10,40466,76452 +50003,387,10,27637,1724680 +50004,15,6,294254,1458089 +50005,234,1,346490,1482310 +50006,234,1,124054,97901 +50007,52,10,44087,137992 +50008,277,3,10145,1446678 +50009,387,10,9532,57429 +50010,187,11,186869,113055 +50011,269,9,62764,56518 +50012,5,10,42023,348 +50013,286,3,378441,1362653 +50014,210,9,4147,1558195 +50015,5,10,236399,1271472 +50016,413,11,270646,1129262 +50017,53,2,110525,7652 +50018,413,11,22396,1120228 +50019,52,10,297762,15217 +50020,226,2,168259,1425409 +50021,234,1,40852,31155 +50022,234,1,73116,33315 +50023,234,1,10276,7908 +50024,52,10,139463,3353 +50025,413,11,11230,68675 +50026,53,2,63260,1311142 +50027,327,7,245692,6029 +50028,373,7,146233,1342626 +50029,3,5,82,647 +50030,269,9,1481,75942 +50031,203,1,291413,1391606 +50032,413,11,14916,32796 +50033,76,2,118,1411075 +50034,234,1,22494,93468 +50035,387,10,33367,111687 +50036,412,9,4248,1667237 +50037,413,11,49258,63688 +50038,234,1,260094,67164 +50039,317,10,9542,54839 +50040,273,7,63333,29330 +50041,3,5,310568,17531 +50042,3,5,55846,1162217 +50043,250,11,351211,1401770 +50044,192,5,384262,1647401 +50045,273,7,18333,11904 +50046,413,11,16281,1501515 +50047,175,5,45132,1401765 +50048,52,10,49792,1864311 +50049,413,11,297814,1099943 +50050,303,3,9846,5667 +50051,262,6,9286,1399635 +50052,60,1,12273,85375 +50053,203,1,154972,545368 +50054,234,1,266333,63728 +50055,317,10,340584,1467912 +50056,204,9,31713,17763 +50057,3,5,69784,127779 +50058,269,9,32595,1482378 +50059,317,10,28044,62738 +50060,176,3,435,1574641 +50061,210,9,383538,1851916 +50062,387,10,18651,1192600 +50063,234,1,58515,98897 +50064,3,5,244,3251 +50065,317,10,355984,1500051 +50066,373,7,28739,1406242 +50067,52,10,55934,545053 +50068,317,10,109453,576117 +50069,60,1,24469,1319631 +50070,234,1,5172,41887 +50071,64,6,383538,1783009 +50072,204,9,57412,103446 +50073,373,7,149509,1426744 +50074,204,9,27380,1638070 +50075,53,2,9423,22107 +50076,3,5,18148,552001 +50077,413,11,358982,1509629 +50078,209,7,131737,1542364 +50079,387,10,269306,6648 +50080,317,10,185460,95024 +50081,413,11,43241,102721 +50082,182,8,11610,42086 +50083,72,11,333352,1609873 +50084,317,10,71051,1190421 +50085,387,10,8840,56058 +50086,303,3,5289,47102 +50087,234,1,40555,71732 +50088,317,10,295058,1438539 +50089,45,9,44115,1394714 +50090,387,10,3701,33858 +50091,333,2,201085,1548532 +50092,209,7,949,1406905 +50093,394,7,98066,1403439 +50094,234,1,140470,117691 +50095,52,10,16314,139850 +50096,317,10,1969,61 +50097,46,5,9716,1661555 +50098,148,9,6948,1326399 +50099,160,3,924,1368878 +50100,387,10,392271,12677 +50101,333,2,98277,1849134 +50102,160,3,623,1469629 +50103,387,10,15359,113901 +50104,317,10,81225,92005 +50105,3,5,110598,1939 +50106,53,2,8053,137176 +50107,53,2,29143,8868 +50108,333,2,76163,1412603 +50109,269,9,44932,45940 +50110,3,5,27145,24846 +50111,158,2,354859,1405369 +50112,159,11,390747,1662620 +50113,45,9,8869,1429241 +50114,328,6,10391,1404846 +50115,108,10,20879,1347093 +50116,273,7,248639,29810 +50117,60,1,613,1104776 +50118,148,9,13616,1191425 +50119,3,5,2143,15493 +50120,269,9,154972,23583 +50121,238,7,924,1394571 +50122,317,10,54384,150512 +50123,248,2,274857,1770974 +50124,387,10,399219,1625845 +50125,7,3,116463,1691498 +50126,148,9,539,6934 +50127,234,1,259975,1153 +50128,187,11,19901,1391720 +50129,387,10,630,9053 +50130,394,7,12144,40347 +50131,3,5,268853,2209 +50132,317,10,329289,1318095 +50133,387,10,56491,987025 +50134,269,9,4516,35946 +50135,52,10,47882,1287378 +50136,328,6,395992,1770987 +50137,77,10,613,8810 +50138,52,10,44895,116801 +50139,387,10,311324,19242 +50140,317,10,30308,87392 +50141,77,10,10025,62056 +50142,328,6,369885,1790958 +50143,234,1,171213,77005 +50144,228,2,126889,1746453 +50145,234,1,19116,4755 +50146,269,9,69,437 +50147,328,6,10929,1391126 +50148,360,9,38269,1818740 +50149,273,7,118984,1349380 +50150,413,11,67377,43724 +50151,333,2,120172,1570087 +50152,3,5,42094,14094 +50153,221,3,61341,1338244 +50154,292,3,1624,1870772 +50155,269,9,43912,21640 +50156,204,9,43514,1077688 +50157,333,2,29056,30843 +50158,273,7,125700,1606373 +50159,203,1,2662,1457708 +50160,64,6,2397,24527 +50161,269,9,10916,136738 +50162,234,1,407887,78866 +50163,357,3,274857,1548959 +50164,234,1,92424,65569 +50165,3,5,11859,67391 +50166,3,5,333884,67169 +50167,415,3,47342,138633 +50168,187,11,13929,11174 +50169,167,3,163,1727301 +50170,413,11,3115,30466 +50171,413,11,31509,8821 +50172,234,1,420743,1693044 +50173,234,1,17189,239818 +50174,317,10,77067,585785 +50175,105,7,168027,11468 +50176,234,1,15935,966288 +50177,111,7,11370,40815 +50178,3,5,277558,957150 +50179,317,10,113882,1057946 +50180,341,2,10665,1548993 +50181,3,5,11008,67391 +50182,3,5,77949,582924 +50183,46,5,116463,1691489 +50184,127,3,297762,1824248 +50185,20,2,345925,1717837 +50186,346,3,2323,1412215 +50187,382,9,263115,1821876 +50188,387,10,331485,1609366 +50189,132,2,16186,1096345 +50190,234,1,92269,10930 +50191,234,1,35623,58385 +50192,53,2,41516,936639 +50193,204,9,336890,967559 +50194,209,7,241239,1122225 +50195,60,1,961,975306 +50196,3,5,295964,52530 +50197,75,5,98066,189241 +50198,113,9,315664,1616066 +50199,287,3,26679,99033 +50200,413,11,258147,1298876 +50201,387,10,44283,193851 +50202,317,10,266333,1312940 +50203,317,10,446048,135855 +50204,234,1,300487,124285 +50205,333,2,23823,1432996 +50206,317,10,43469,4413 +50207,413,11,294652,1185065 +50208,53,2,13162,1182553 +50209,53,2,90616,1692108 +50210,3,5,15749,68441 +50211,40,1,263115,1821869 +50212,180,7,39833,14651 +50213,387,10,25501,15890 +50214,77,10,6183,1844 +50215,176,3,4248,1553255 +50216,234,1,198001,97646 +50217,234,1,40765,19457 +50218,75,5,2323,1549590 +50219,303,3,99861,1428837 +50220,273,7,81551,53616 +50221,234,1,348035,18500 +50222,204,9,34127,13572 +50223,97,7,46738,1398426 +50224,273,7,44641,20836 +50225,328,6,312831,1594179 +50226,127,3,61400,233080 +50227,398,9,338189,1380378 +50228,7,3,116463,1691502 +50229,209,7,24624,1540857 +50230,234,1,37003,1670361 +50231,273,7,1938,4082 +50232,234,1,107443,93904 +50233,357,3,12,1830791 +50234,333,2,180299,1352420 +50235,204,9,291270,1536585 +50236,413,11,55725,21267 +50237,3,5,375082,848874 +50238,317,10,18279,88037 +50239,87,7,58244,1618805 +50240,20,2,95627,1538343 +50241,234,1,174552,1004602 +50242,67,10,197854,1154613 +50243,368,7,10590,1566301 +50244,97,7,242310,1302967 +50245,413,11,2757,6958 +50246,387,10,24170,22152 +50247,3,5,11516,69707 +50248,413,11,29143,493 +50249,203,1,16996,1367508 +50250,160,3,10992,1007395 +50251,317,10,40859,357113 +50252,64,6,9352,1586401 +50253,413,11,2002,7701 +50254,269,9,68387,1454571 +50255,234,1,178446,210769 +50256,234,1,37339,84614 +50257,234,1,36797,76418 +50258,360,9,445993,1808047 +50259,200,3,181533,1372882 +50260,359,6,14087,56339 +50261,317,10,104697,1162692 +50262,234,1,336845,1466075 +50263,46,5,2675,1674650 +50264,317,10,285213,980218 +50265,204,9,301228,1519845 +50266,413,11,133941,18554 +50267,105,7,342765,1473506 +50268,3,5,274060,98501 +50269,387,10,43548,67971 +50270,158,2,2454,132648 +50271,3,5,243568,4578 +50272,105,7,381645,1520235 +50273,179,2,1049,1319844 +50274,77,10,10025,62057 +50275,289,6,81003,1447301 +50276,387,10,194853,20548 +50277,333,2,1125,168214 +50278,3,5,13346,17948 +50279,413,11,90799,412399 +50280,269,9,340101,50952 +50281,148,9,69974,557672 +50282,303,3,99861,1388894 +50283,269,9,1073,3287 +50284,196,7,9563,1423757 +50285,317,10,14459,76942 +50286,204,9,24212,1187812 +50287,204,9,353686,1423985 +50288,5,10,12432,129874 +50289,5,10,331588,36699 +50290,273,7,48231,117 +50291,72,11,76757,1482848 +50292,398,9,101929,1547531 +50293,169,3,339994,1706515 +50294,387,10,51800,1045855 +50295,257,3,263115,1821945 +50296,3,5,40765,10150 +50297,269,9,104275,550576 +50298,234,1,46769,3831 +50299,189,3,11202,1537178 +50300,204,9,10204,35166 +50301,387,10,7555,52943 +50302,97,7,102382,1360101 +50303,3,5,69401,1336573 +50304,169,3,42418,1827968 +50305,413,11,4953,4234 +50306,273,7,198652,1179377 +50307,388,9,6171,1426765 +50308,197,5,283995,1736214 +50309,333,2,73835,1606291 +50310,413,11,41110,84258 +50311,234,1,425961,221064 +50312,234,1,18165,85496 +50313,317,10,405388,1647201 +50314,234,1,30289,30053 +50315,387,10,83354,7335 +50316,286,3,76864,68572 +50317,52,10,40952,62020 +50318,387,10,133255,89264 +50319,196,7,14254,1393382 +50320,3,5,83899,1106693 +50321,232,10,44190,2765 +50322,413,11,261005,1355118 +50323,105,7,33135,1304263 +50324,373,7,201085,1407705 +50325,148,9,20287,6925 +50326,60,1,30363,1633540 +50327,387,10,194853,1175168 +50328,328,6,20919,1423414 +50329,317,10,2675,11614 +50330,317,10,31344,24492 +50331,72,11,345925,1717847 +50332,143,7,2675,1341403 +50333,387,10,115626,1235035 +50334,273,7,106747,2294 +50335,273,7,83223,519846 +50336,317,10,133160,33727 +50337,387,10,48852,165303 +50338,203,1,205864,1603904 +50339,289,6,10567,1454032 +50340,413,11,308529,1165329 +50341,269,9,48805,1194539 +50342,234,1,5511,3831 +50343,317,10,95807,184494 +50344,234,1,337014,1048220 +50345,226,2,117120,1427498 +50346,249,7,11056,1400476 +50347,148,9,434873,1754126 +50348,204,9,69605,7306 +50349,105,7,20968,1325531 +50350,53,2,1986,68081 +50351,198,6,330459,1706710 +50352,387,10,17654,82194 +50353,52,10,269149,1447307 +50354,273,7,301804,531 +50355,289,6,22752,1060536 +50356,273,7,231082,1188707 +50357,325,5,9426,1445985 +50358,5,10,118536,33822 +50359,413,11,8669,10393 +50360,105,7,240913,25294 +50361,387,10,65904,138799 +50362,373,7,43923,40141 +50363,317,10,194101,229604 +50364,3,5,19958,72629 +50365,52,10,16077,79176 +50366,175,5,408381,1657563 +50367,234,1,319396,1430293 +50368,169,3,60086,1673144 +50369,204,9,14554,9062 +50370,15,6,8355,87059 +50371,234,1,80539,148359 +50372,331,3,186869,1706428 +50373,3,5,11832,69193 +50374,53,2,2196,22968 +50375,413,11,283445,938105 +50376,127,3,18405,1842597 +50377,5,10,4641,38695 +50378,234,1,331737,997630 +50379,53,2,156,1106162 +50380,234,1,118283,76381 +50381,161,6,329865,1646573 +50382,413,11,21801,41079 +50383,234,1,54155,7709 +50384,234,1,28739,101542 +50385,387,10,229559,278087 +50386,175,5,197,1386920 +50387,3,5,12780,26731 +50388,250,11,206647,1548406 +50389,234,1,229296,54507 +50390,387,10,27653,160097 +50391,317,10,34652,1927 +50392,387,10,11630,35208 +50393,239,5,7220,1460569 +50394,3,5,31835,103020 +50395,399,9,10020,1615292 +50396,122,8,4147,1558699 +50397,234,1,25074,18897 +50398,317,10,393521,1607717 +50399,45,9,110416,1782644 +50400,234,1,21968,88148 +50401,148,9,27501,11489 +50402,45,9,44129,1419092 +50403,287,3,67822,1378068 +50404,172,3,7445,1394762 +50405,187,11,24810,1818110 +50406,413,11,11692,10766 +50407,83,2,10590,1441163 +50408,387,10,19957,85349 +50409,328,6,2567,1402028 +50410,365,6,92321,1817522 +50411,234,1,32038,544818 +50412,269,9,76170,39923 +50413,3,5,42752,109700 +50414,226,2,15092,1414538 +50415,3,5,296523,4950 +50416,269,9,1273,22300 +50417,234,1,137072,1106617 +50418,203,1,82654,1519867 +50419,234,1,11531,69237 +50420,53,2,46094,16469 +50421,387,10,10739,1243 +50422,317,10,261101,1304457 +50423,148,9,11351,39110 +50424,234,1,400174,5696 +50425,234,1,413579,729 +50426,273,7,1640,4140 +50427,394,7,329440,1412452 +50428,234,1,320037,588861 +50429,34,8,118,1456054 +50430,204,9,32085,1226 +50431,53,2,341491,1666184 +50432,273,7,983,2704 +50433,317,10,31027,127439 +50434,289,6,53219,222262 +50435,113,9,333352,1609844 +50436,226,2,373546,1760527 +50437,158,2,14430,1322393 +50438,160,3,59961,10976 +50439,234,1,128657,67971 +50440,234,1,457,6241 +50441,234,1,284362,1347739 +50442,277,3,28293,1530891 +50443,333,2,29611,1489811 +50444,273,7,413998,1491504 +50445,179,2,131737,972151 +50446,269,9,82327,958258 +50447,317,10,260030,1317156 +50448,234,1,280617,229164 +50449,317,10,52637,23388 +50450,75,5,7551,1452632 +50451,234,1,9905,2034 +50452,387,10,2143,15490 +50453,203,1,12220,1355532 +50454,234,1,13090,74152 +50455,204,9,19995,9618 +50456,234,1,16374,40312 +50457,208,2,72545,1269670 +50458,273,7,229304,1299507 +50459,331,3,258251,1348588 +50460,81,3,5638,81545 +50461,394,7,337339,7239 +50462,413,11,12101,10151 +50463,77,10,10070,51023 +50464,317,10,83614,228846 +50465,269,9,84333,1588423 +50466,143,7,890,14623 +50467,289,6,9514,1642531 +50468,289,6,9514,1642582 +50469,317,10,17711,30711 +50470,169,3,76757,1428190 +50471,5,10,137504,1530394 +50472,189,3,7326,1866832 +50473,175,5,11880,1424940 +50474,52,10,269149,165787 +50475,234,1,134806,69791 +50476,105,7,414977,1676807 +50477,15,6,72431,1484195 +50478,273,7,231616,9425 +50479,40,1,284053,1711214 +50480,3,5,63281,1186637 +50481,182,8,17911,1630386 +50482,234,1,45577,133235 +50483,3,5,82492,93188 +50484,3,5,9966,31906 +50485,387,10,22429,1834634 +50486,387,10,20678,22675 +50487,3,5,46149,1093053 +50488,198,6,4248,1404722 +50489,387,10,46124,134912 +50490,413,11,286873,937415 +50491,75,5,13075,1561632 +50492,234,1,93313,226631 +50493,413,11,22683,2033 +50494,234,1,2487,25467 +50495,273,7,27138,2027 +50496,286,3,42537,88664 +50497,234,1,135718,239063 +50498,234,1,139571,1110909 +50499,387,10,4011,34534 +50500,413,11,192023,1172465 +50501,5,10,33931,71759 +50502,413,11,22408,109414 +50503,317,10,290370,112388 +50504,40,1,954,3310 +50505,97,7,267579,113375 +50506,60,1,18447,4520 +50507,192,5,7551,71127 +50508,413,11,70801,128356 +50509,413,11,29610,67349 +50510,333,2,49853,20272 +50511,221,3,11812,1404751 +50512,234,1,33333,81107 +50513,413,11,2897,19409 +50514,226,2,1984,30182 +50515,234,1,28209,100117 +50516,289,6,291270,1453638 +50517,52,10,417936,1295546 +50518,234,1,142061,105643 +50519,3,5,18111,1208332 +50520,53,2,37710,557 +50521,273,7,16137,1125823 +50522,226,2,302026,1570607 +50523,175,5,315837,1389139 +50524,333,2,88273,1090150 +50525,268,7,76170,113041 +50526,317,10,27012,19266 +50527,3,5,14552,51981 +50528,234,1,252682,114629 +50529,169,3,44363,143897 +50530,303,3,11618,488 +50531,413,11,422,5400 +50532,387,10,39992,55647 +50533,3,5,76871,32097 +50534,333,2,13580,74693 +50535,53,2,43195,32055 +50536,53,2,838,8428 +50537,52,10,52803,567147 +50538,196,7,8869,1031810 +50539,413,11,4476,2484 +50540,269,9,10075,8382 +50541,398,9,8619,1337123 +50542,269,9,319924,6045 +50543,360,3,10004,1400809 +50544,388,9,245700,1406815 +50545,3,5,204994,34174 +50546,197,5,293167,1759774 +50547,3,5,12128,57105 +50548,317,10,84337,163290 +50549,148,9,2321,142151 +50550,204,9,10710,60937 +50551,317,10,38134,63937 +50552,390,6,15653,1767036 +50553,3,5,332979,1458711 +50554,148,9,156627,1707778 +50555,105,7,48717,1184308 +50556,234,1,5516,1223 +50557,3,5,10733,4501 +50558,234,1,180162,57359 +50559,45,9,345922,1635172 +50560,387,10,14862,1320176 +50561,180,7,44105,1603240 +50562,53,2,277237,76972 +50563,413,11,22897,5668 +50564,181,7,12573,223239 +50565,317,10,359471,1450499 +50566,269,9,39276,30467 +50567,234,1,74753,39009 +50568,234,1,80472,589543 +50569,317,10,31111,107627 +50570,127,3,30361,1341763 +50571,5,10,12230,65536 +50572,5,10,143073,1308692 +50573,75,5,67328,1583632 +50574,234,1,140814,1113453 +50575,20,2,19255,12064 +50576,3,5,36056,7386 +50577,413,11,49950,55955 +50578,209,7,3682,1337469 +50579,234,1,40470,13620 +50580,317,10,327389,1173427 +50581,317,10,403605,235430 +50582,204,9,8870,9581 +50583,226,2,25796,1286355 +50584,317,10,25973,91389 +50585,234,1,210047,209879 +50586,3,5,371459,1526084 +50587,53,2,56800,1468808 +50588,3,5,171759,125637 +50589,12,10,52520,1248221 +50590,204,9,72545,7733 +50591,234,1,359255,133405 +50592,413,11,72602,70982 +50593,180,7,43379,1606805 +50594,85,10,294016,1495878 +50595,387,10,18352,83998 +50596,204,9,259695,1192526 +50597,269,9,10041,62355 +50598,53,2,348631,1098931 +50599,413,11,90616,1408596 +50600,273,7,18897,1125599 +50601,317,10,66109,92782 +50602,273,7,85230,1585228 +50603,234,1,34598,112682 +50604,182,8,254007,1448773 +50605,60,1,179103,1529473 +50606,3,5,125300,58367 +50607,53,2,254007,1448763 +50608,317,10,21843,88019 +50609,317,10,43001,491282 +50610,238,7,227306,1437193 +50611,188,8,11351,1597208 +50612,287,3,106747,1130777 +50613,234,1,31718,78615 +50614,53,2,10761,4034 +50615,234,1,42623,120552 +50616,273,7,48281,29294 +50617,175,5,40807,1400407 +50618,204,9,311324,1658863 +50619,143,7,422,1813634 +50620,3,5,39435,18576 +50621,169,3,70046,1511730 +50622,234,1,191322,15196 +50623,394,7,284053,8159 +50624,286,3,327225,1193499 +50625,34,8,343173,1742981 +50626,3,5,457,6244 +50627,104,7,10739,1535541 +50628,387,10,9470,57607 +50629,234,1,146521,235876 +50630,387,10,147815,78747 +50631,333,2,18417,83063 +50632,273,7,5319,43411 +50633,52,10,43213,566316 +50634,387,10,76684,227367 +50635,143,7,55420,1073059 +50636,11,6,246655,1712630 +50637,5,10,63190,236588 +50638,340,2,293167,1436195 +50639,333,2,5413,21092 +50640,105,7,58704,1167544 +50641,3,5,18493,68994 +50642,317,10,15285,291251 +50643,52,10,34326,1307308 +50644,403,10,29116,103072 +50645,387,10,130917,157395 +50646,208,2,76203,1320551 +50647,182,8,10796,1204332 +50648,273,7,49018,73417 +50649,200,3,283995,1439735 +50650,387,10,921,14906 +50651,3,5,86768,3253 +50652,5,10,49258,238809 +50653,238,7,4547,572622 +50654,204,9,779,11579 +50655,317,10,59181,1129543 +50656,204,9,240832,1023192 +50657,413,11,100669,64060 +50658,291,6,392818,1754089 +50659,269,9,2486,7203 +50660,52,10,47745,139337 +50661,204,9,6947,25832 +50662,317,10,291164,1216753 +50663,234,1,362363,1227268 +50664,234,1,70695,559299 +50665,67,10,809,87169 +50666,141,7,9946,1548698 +50667,413,11,21742,94241 +50668,387,10,73835,567755 +50669,72,11,13616,225942 +50670,317,10,42309,1301379 +50671,317,10,28320,135440 +50672,415,3,965,3252 +50673,53,2,37645,1030406 +50674,204,9,26119,1311378 +50675,169,3,10096,26989 +50676,179,2,6068,1536378 +50677,3,5,156711,5018 +50678,413,11,11133,17399 +50679,234,1,77600,144972 +50680,204,9,6973,1172441 +50681,256,3,2567,1739552 +50682,148,9,41171,130223 +50683,60,1,46387,1110113 +50684,262,6,273481,1392963 +50685,75,5,76203,54926 +50686,387,10,214909,14858 +50687,188,8,82448,927998 +50688,53,2,75,557 +50689,387,10,19901,56501 +50690,387,10,104556,119464 +50691,269,9,253310,21268 +50692,292,3,693,1761061 +50693,317,10,103396,38256 +50694,277,3,1877,1398178 +50695,333,2,7551,555329 +50696,158,2,122081,1719412 +50697,147,1,345922,1815600 +50698,175,5,312831,1594166 +50699,234,1,17287,78021 +50700,3,5,147903,18576 +50701,204,9,30637,12510 +50702,234,1,104398,1065698 +50703,317,10,341007,1706353 +50704,328,6,59965,1393446 +50705,234,1,86556,210582 +50706,105,7,45019,22680 +50707,22,9,379019,1780153 +50708,148,9,124470,1014943 +50709,105,7,155011,1136034 +50710,317,10,51945,1445556 +50711,234,1,41213,53859 +50712,234,1,259183,12689 +50713,204,9,356758,1501816 +50714,387,10,42420,59914 +50715,3,5,42456,3148 +50716,3,5,267977,1538938 +50717,209,7,45019,1371066 +50718,5,10,15497,69105 +50719,234,1,34106,2662 +50720,72,11,294254,1571521 +50721,317,10,125673,100036 +50722,288,3,194,16372 +50723,317,10,287,4037 +50724,301,5,77338,1542950 +50725,60,1,153,1530900 +50726,317,10,121662,1074624 +50727,208,2,44943,75375 +50728,52,10,87936,73256 +50729,387,10,81463,1480651 +50730,143,7,11688,21103 +50731,324,3,29272,1276267 +50732,75,5,105509,1046313 +50733,75,5,38922,1553112 +50734,273,7,29376,554823 +50735,314,2,64678,1831716 +50736,305,9,31146,1841293 +50737,190,7,413452,1877811 +50738,387,10,15556,78384 +50739,105,7,210079,1337978 +50740,327,7,2009,20700 +50741,394,7,16921,41888 +50742,273,7,146,1360 +50743,317,10,311764,1422144 +50744,317,10,23382,61950 +50745,373,7,194,24006 +50746,3,5,73532,16769 +50747,234,1,256916,37613 +50748,333,2,371645,1678890 +50749,187,11,15092,1404903 +50750,234,1,1914,19920 +50751,3,5,45213,70855 +50752,234,1,10391,26713 +50753,328,6,351901,1558717 +50754,127,3,540,1338215 +50755,204,9,59408,18986 +50756,269,9,86600,30926 +50757,387,10,12540,72725 +50758,387,10,33774,225011 +50759,204,9,9023,1451229 +50760,387,10,5998,157 +50761,234,1,63066,116583 +50762,234,1,55524,150977 +50763,234,1,20536,7904 +50764,3,5,9659,28240 +50765,269,9,330459,23782 +50766,333,2,18079,1583717 +50767,317,10,315872,235042 +50768,234,1,10354,190 +50769,62,3,246655,1713059 +50770,105,7,35292,32347 +50771,234,1,63924,1311777 +50772,52,10,809,5524 +50773,327,7,112456,1816449 +50774,413,11,345918,1205437 +50775,127,3,2503,25068 +50776,306,7,18079,1584168 +50777,160,3,14510,52999 +50778,234,1,13105,67411 +50779,182,8,6171,1401595 +50780,75,5,435,1418486 +50781,67,10,40662,105643 +50782,413,11,112304,112531 +50783,53,2,1394,1191310 +50784,175,5,52454,582732 +50785,187,7,11236,7069 +50786,413,11,31258,30981 +50787,158,2,274504,1609032 +50788,317,10,59722,227081 +50789,234,1,214756,52139 +50790,317,10,30139,1039544 +50791,200,3,189,1401147 +50792,5,10,1633,18251 +50793,301,5,266102,1606173 +50794,289,6,9514,1642602 +50795,234,1,229134,22467 +50796,413,11,117913,1688337 +50797,273,7,87349,68427 +50798,148,9,32082,1050 +50799,287,3,435,79185 +50800,333,2,280840,1338959 +50801,12,10,58159,69133 +50802,387,10,2169,22178 +50803,269,9,60106,1966 +50804,234,1,20530,95501 +50805,234,1,145059,12453 +50806,333,2,47310,10014 +50807,12,10,263115,141359 +50808,413,11,81232,49809 +50809,317,10,42258,9119 +50810,190,7,29136,1896773 +50811,203,1,173153,1533096 +50812,60,1,84337,1312999 +50813,273,7,40229,19711 +50814,132,2,11351,1401606 +50815,127,3,2105,232458 +50816,234,1,60568,1743496 +50817,204,9,29398,5188 +50818,196,7,11017,1636754 +50819,234,1,57781,107669 +50820,387,10,11639,58337 +50821,200,3,297762,1903926 +50822,289,6,16366,1447562 +50823,175,5,29263,1544192 +50824,140,9,188927,1638551 +50825,196,7,638,9425 +50826,317,10,131351,59187 +50827,158,2,59965,1395031 +50828,196,7,338189,1650729 +50829,87,7,266102,45056 +50830,413,11,124071,1188503 +50831,234,1,290916,1361406 +50832,51,9,9946,21701 +50833,204,9,42494,1133877 +50834,97,7,1956,20229 +50835,317,10,181574,15673 +50836,373,7,4547,957928 +50837,204,9,75595,1537846 +50838,273,7,274479,1551815 +50839,204,9,32657,931858 +50840,293,2,354859,1782432 +50841,387,10,338,4780 +50842,226,2,263472,1510551 +50843,190,7,54845,1429532 +50844,234,1,15559,1440070 +50845,97,7,5289,1409738 +50846,340,2,315837,1554884 +50847,273,7,40761,30681 +50848,234,1,71496,563079 +50849,148,9,22584,119400 +50850,225,7,755,113043 +50851,105,7,8070,18479 +50852,234,1,33016,5140 +50853,289,6,145963,1410841 +50854,105,7,70057,66053 +50855,226,2,298,117206 +50856,317,10,171581,83985 +50857,3,5,9894,56988 +50858,269,9,111398,1125521 +50859,105,7,13519,198990 +50860,234,1,21566,113671 +50861,387,10,149465,38131 +50862,234,1,25973,91389 +50863,3,5,43131,138221 +50864,387,10,10354,59583 +50865,75,5,2731,20598 +50866,301,5,1481,1425390 +50867,269,9,76600,995644 +50868,204,9,245891,1512724 +50869,317,10,112961,947014 +50870,3,5,29365,6452 +50871,105,7,13668,86292 +50872,75,5,9532,1441261 +50873,333,2,106020,1588547 +50874,148,9,10727,75292 +50875,273,7,82501,928097 +50876,317,10,264393,1136955 +50877,234,1,55156,548474 +50878,234,1,114155,122590 +50879,387,10,29338,103509 +50880,40,1,12220,57077 +50881,52,10,87296,7748 +50882,317,10,220669,236543 +50883,273,7,112885,8619 +50884,413,11,58903,1428665 +50885,292,3,116463,1691495 +50886,3,5,8144,53947 +50887,411,9,12113,1405375 +50888,198,6,296524,1706710 +50889,269,9,82368,91794 +50890,413,11,7871,53613 +50891,234,1,13965,76193 +50892,234,1,9877,59958 +50893,234,1,81708,142857 +50894,373,7,74,1416155 +50895,97,7,116463,1302967 +50896,328,6,17622,1389668 +50897,262,6,306966,1367435 +50898,204,9,20715,1808701 +50899,157,3,170279,1665919 +50900,413,11,89445,1389529 +50901,234,1,105059,70862 +50902,234,1,21765,89113 +50903,387,10,42215,147630 +50904,333,2,19181,1097805 +50905,105,7,303856,1645539 +50906,269,9,403119,1458548 +50907,317,10,79054,1185651 +50908,160,3,325039,1346949 +50909,387,10,75233,444892 +50910,226,2,228066,1574046 +50911,269,9,10238,46876 +50912,415,3,1374,16641 +50913,200,3,1381,38805 +50914,413,11,18912,83865 +50915,3,5,19995,72201 +50916,234,1,76059,1125619 +50917,262,6,72431,1484206 +50918,303,3,4248,19449 +50919,413,11,49717,69646 +50920,413,11,152748,4869 +50921,204,9,59962,1328137 +50922,289,6,13798,1565824 +50923,273,7,30175,19746 +50924,333,2,606,10645 +50925,413,11,287636,1496396 +50926,270,9,9042,1334514 +50927,269,9,152100,1519323 +50928,296,3,186869,1862935 +50929,234,1,127762,1868 +50930,97,7,315837,1338372 +50931,243,3,55534,1410598 +50932,317,10,99642,1021559 +50933,204,9,2454,37299 +50934,226,2,20424,1100324 +50935,74,5,99261,1752036 +50936,317,10,47011,8452 +50937,413,11,14794,589933 +50938,148,9,17654,967459 +50939,113,9,13380,1753063 +50940,20,2,354859,1554329 +50941,317,10,88478,42380 +50942,232,10,52047,145249 +50943,40,1,325712,1879682 +50944,3,5,13162,11506 +50945,387,10,464111,1651530 +50946,143,7,137504,1529745 +50947,413,11,1375,16650 +50948,317,10,301729,1421633 +50949,234,1,72640,150003 +50950,234,1,336806,130690 +50951,20,2,274857,1829867 +50952,394,7,245168,1354925 +50953,160,3,225285,1354926 +50954,273,7,11175,68451 +50955,234,1,43385,2765 +50956,175,5,345918,1870207 +50957,373,7,1950,1394130 +50958,226,2,16410,1565506 +50959,148,9,43241,1632894 +50960,415,3,49689,1594802 +50961,234,1,195653,1037658 +50962,304,10,47324,1094790 +50963,317,10,25468,109470 +50964,317,10,287483,235138 +50965,105,7,12422,1866064 +50966,387,10,11876,25950 +50967,317,10,32331,1120414 +50968,415,3,214756,1459719 +50969,387,10,53172,141171 +50970,52,10,170936,32178 +50971,234,1,572,7736 +50972,273,7,53150,57902 +50973,198,6,193893,1439066 +50974,34,8,9425,1408598 +50975,234,1,283489,109745 +50976,148,9,17136,12349 +50977,3,5,361146,1841692 +50978,234,1,291558,143561 +50979,387,10,16307,7750 +50980,22,9,263115,1821879 +50981,333,2,345438,1371205 +50982,105,7,128246,1652818 +50983,327,7,379019,1284482 +50984,179,2,2105,1405728 +50985,122,8,10665,1896004 +50986,317,10,95504,128864 +50987,234,1,120605,18500 +50988,413,11,96238,1069801 +50989,287,3,205584,1585740 +50990,262,6,11056,1400477 +50991,74,5,10590,1565945 +50992,52,10,29192,228709 +50993,413,11,439050,1749847 +50994,387,10,14405,1039270 +50995,399,9,13205,1459509 +50996,97,7,211879,1568637 +50997,204,9,337339,1445830 +50998,203,1,10396,1464541 +50999,317,10,417406,1683441 +51000,148,9,336050,1327893 +51001,273,7,10837,3393 +51002,317,10,78096,135405 +51003,12,10,408220,1501535 +51004,317,10,144613,1096777 +51005,332,8,8619,1619100 +51006,3,5,13668,23969 +51007,160,3,30708,50310 +51008,387,10,238925,1273675 +51009,234,1,69152,50739 +51010,317,10,55735,571296 +51011,208,2,3023,14498 +51012,143,7,690,10354 +51013,273,7,27414,125815 +51014,317,10,243881,1429653 +51015,387,10,356296,236588 +51016,3,5,24634,6603 +51017,5,10,2047,21074 +51018,387,10,2994,25826 +51019,204,9,64720,996410 +51020,234,1,91138,21404 +51021,232,10,110146,187074 +51022,108,10,53209,120533 +51023,53,2,315872,1681851 +51024,234,1,111470,14855 +51025,273,7,88288,5467 +51026,25,2,223485,1263911 +51027,92,7,33005,1346938 +51028,234,1,4307,309 +51029,52,10,58411,57132 +51030,164,3,25941,1556417 +51031,143,7,82624,187847 +51032,234,1,147773,161932 +51033,273,7,289225,1283653 +51034,3,5,43685,549139 +51035,12,10,263115,87173 +51036,387,10,29365,50961 +51037,168,3,72545,81687 +51038,234,1,20493,943403 +51039,45,9,287903,1518774 +51040,317,10,303867,109314 +51041,169,3,31911,15528 +51042,148,9,42191,7338 +51043,234,1,29263,69315 +51044,286,3,361183,1127482 +51045,291,6,435,4657 +51046,127,3,9297,1462674 +51047,234,1,74674,56195 +51048,234,1,22584,11435 +51049,234,1,214209,1203347 +51050,273,7,245168,2949 +51051,196,7,111398,1529560 +51052,273,7,24936,63979 +51053,3,5,18595,22413 +51054,317,10,10044,62412 +51055,273,7,4993,2704 +51056,273,7,37301,1154806 +51057,3,5,9301,1077 +51058,287,3,6171,97617 +51059,182,8,79316,1406291 +51060,175,5,9042,1401196 +51061,52,10,263115,366 +51062,234,1,48587,62661 +51063,175,5,13483,1402073 +51064,234,1,130450,100036 +51065,208,2,1850,406204 +51066,333,2,31127,1590968 +51067,317,10,177104,5812 +51068,234,1,204768,73391 +51069,269,9,116711,1208000 +51070,148,9,12499,14348 +51071,387,10,14945,1021196 +51072,53,2,325133,21592 +51073,45,9,145135,1417869 +51074,204,9,31984,1845992 +51075,3,5,13411,7413 +51076,373,7,15653,1342626 +51077,234,1,125945,20024 +51078,18,2,18417,83076 +51079,387,10,65044,240284 +51080,3,5,309879,40118 +51081,160,3,95516,38887 +51082,387,10,17074,34936 +51083,53,2,260312,1030406 +51084,75,5,435,1418483 +51085,328,6,58244,1367819 +51086,3,5,83666,5667 +51087,75,5,7299,8673 +51088,3,5,220820,1332521 +51089,387,10,113525,1057206 +51090,413,11,429174,1642499 +51091,269,9,76864,1462115 +51092,273,7,10733,1225 +51093,196,7,1991,13166 +51094,234,1,37600,28889 +51095,182,8,14983,1408774 +51096,53,2,332872,3631 +51097,234,1,367147,1182669 +51098,234,1,102901,1031934 +51099,189,3,214081,1367656 +51100,3,5,121823,17299 +51101,234,1,14945,227555 +51102,225,7,9352,1530322 +51103,413,11,18190,1304431 +51104,105,7,339527,6898 +51105,387,10,37911,6779 +51106,53,2,325039,1314152 +51107,105,7,216046,1272392 +51108,269,9,450530,16364 +51109,273,7,22023,6918 +51110,234,1,38742,8635 +51111,3,5,18671,4308 +51112,273,7,7305,1213 +51113,292,3,214756,1457945 +51114,317,10,84097,117851 +51115,213,10,348315,742142 +51116,179,2,203819,1355543 +51117,317,10,103597,64751 +51118,387,10,11161,52413 +51119,58,2,5924,36123 +51120,262,6,3580,1377130 +51121,52,10,244316,1426223 +51122,75,5,177677,1428916 +51123,3,5,18467,70898 +51124,317,10,233639,231812 +51125,413,11,9555,30461 +51126,3,5,41597,29550 +51127,196,7,9835,113052 +51128,234,1,38010,71640 +51129,387,10,32049,1291647 +51130,286,3,2805,57217 +51131,317,10,337339,58191 +51132,269,9,291413,64232 +51133,273,7,69401,223157 +51134,413,11,18493,68994 +51135,53,2,74629,32797 +51136,53,2,31548,1611761 +51137,360,9,32068,1807524 +51138,75,5,58080,21232 +51139,105,7,55612,1154144 +51140,317,10,117212,1120841 +51141,387,10,41831,98940 +51142,413,11,13555,21811 +51143,304,10,25499,93290 +51144,226,2,7551,15526 +51145,413,11,71866,1090272 +51146,273,7,43379,12331 +51147,409,7,263115,1821915 +51148,387,10,10753,18897 +51149,411,9,12113,5673 +51150,208,2,353462,1402019 +51151,387,10,76170,2199 +51152,387,10,31597,2089 +51153,262,6,74879,1600457 +51154,234,1,150065,42138 +51155,234,1,2124,21806 +51156,273,7,30666,978297 +51157,234,1,37181,229931 +51158,317,10,27653,13596 +51159,226,2,312831,1594184 +51160,105,7,97035,25351 +51161,291,6,277713,1571980 +51162,273,7,4279,10934 +51163,317,10,15468,18565 +51164,5,10,72917,567561 +51165,387,10,126963,115937 +51166,148,9,3597,11005 +51167,413,11,44027,6827 +51168,234,1,369883,52112 +51169,3,5,88288,30288 +51170,317,10,28736,87155 +51171,273,7,8970,9251 +51172,317,10,77012,223265 +51173,234,1,14554,14520 +51174,413,11,549,7493 +51175,413,11,300669,1397777 +51176,286,3,180252,1293600 +51177,40,1,176,51026 +51178,175,5,239566,146026 +51179,236,8,33586,1787583 +51180,269,9,10440,23966 +51181,234,1,60199,5602 +51182,176,3,12102,15182 +51183,373,7,10391,95836 +51184,204,9,24634,961609 +51185,15,6,10567,1448071 +51186,387,10,126083,103444 +51187,413,11,5237,42178 +51188,148,9,167,4032 +51189,317,10,415255,1203176 +51190,413,11,42472,1047 +51191,53,2,3036,11386 +51192,105,7,24397,1385923 +51193,143,7,6171,1403440 +51194,387,10,15003,127445 +51195,387,10,176143,1167728 +51196,105,7,151310,13337 +51197,53,2,134480,8717 +51198,77,10,4931,81976 +51199,105,7,21736,10593 +51200,5,10,1813,19240 +51201,187,11,157847,1372208 +51202,373,7,857,1425978 +51203,105,7,315465,1067807 +51204,327,7,1481,75151 +51205,273,7,125063,559704 +51206,269,9,63304,1388811 +51207,92,7,40130,1706165 +51208,175,5,949,1412205 +51209,3,5,39800,6345 +51210,13,5,378441,1797420 +51211,287,3,39875,1042415 +51212,204,9,333352,1426841 +51213,203,1,159211,1438462 +51214,53,2,207270,972151 +51215,413,11,59387,81655 +51216,301,5,273481,1560966 +51217,155,3,14430,974555 +51218,333,2,12102,1178899 +51219,190,7,11812,1562721 +51220,169,3,188826,1339212 +51221,317,10,45133,132240 +51222,53,2,8988,3989 +51223,3,5,326285,32451 +51224,415,3,94182,51000 +51225,277,3,2009,1586637 +51226,268,7,9426,1445980 +51227,269,9,86820,162545 +51228,387,10,435737,87149 +51229,234,1,115616,88458 +51230,3,5,319910,460 +51231,387,10,5279,10747 +51232,61,7,2046,1455291 +51233,176,3,703,1380037 +51234,175,5,1415,1534692 +51235,204,9,51976,1094172 +51236,204,9,330459,1551809 +51237,234,1,76397,82219 +51238,40,1,2978,12255 +51239,234,1,181533,17825 +51240,317,10,43882,65854 +51241,387,10,244316,145612 +51242,3,5,12575,36597 +51243,317,10,387886,1770587 +51244,182,8,1966,1398110 +51245,289,6,69103,77610 +51246,127,3,126712,34103 +51247,317,10,61548,233293 +51248,203,1,44943,1403419 +51249,234,1,118015,930629 +51250,209,7,26390,1402037 +51251,317,10,32690,34373 +51252,234,1,63831,56209 +51253,53,2,7353,52751 +51254,333,2,9664,1334490 +51255,394,7,1251,1368865 +51256,387,10,86709,933572 +51257,234,1,43685,99386 +51258,234,1,73873,77162 +51259,397,7,259997,1302522 +51260,46,5,14811,1601905 +51261,175,5,75595,1575228 +51262,203,1,245700,1412126 +51263,317,10,144421,1120754 +51264,169,3,351211,1574855 +51265,3,5,48508,1077555 +51266,52,10,43441,1362799 +51267,204,9,45987,1133156 +51268,360,3,19901,1391712 +51269,387,10,115712,1061941 +51270,333,2,368006,1640325 +51271,15,6,284052,1458103 +51272,204,9,4459,3358 +51273,252,3,8467,1893233 +51274,234,1,414173,1674692 +51275,94,5,52661,19474 +51276,303,3,251,1453308 +51277,387,10,86261,150975 +51278,250,11,284564,1616397 +51279,387,10,403450,1276764 +51280,273,7,46059,13301 +51281,105,7,1272,960 +51282,293,2,58244,1618803 +51283,373,7,238,3103 +51284,3,5,1817,4867 +51285,269,9,61984,552535 +51286,298,5,203833,1405241 +51287,317,10,393263,1364881 +51288,204,9,2021,20777 +51289,413,11,233639,6076 +51290,273,7,70667,32717 +51291,333,2,302699,1537105 +51292,269,9,11307,369 +51293,387,10,82470,27845 +51294,148,9,42487,14780 +51295,273,7,75244,960 +51296,269,9,313074,1348584 +51297,269,9,288977,7787 +51298,273,7,128215,1202912 +51299,3,5,270774,119639 +51300,203,1,318781,1622811 +51301,317,10,334317,14606 +51302,394,7,169881,1377262 +51303,37,3,98066,1759326 +51304,175,5,2454,12579 +51305,3,5,33472,12344 +51306,333,2,317,1599493 +51307,105,7,42787,20131 +51308,148,9,15497,1344112 +51309,413,11,76651,579730 +51310,387,10,206563,7018 +51311,394,7,72431,71536 +51312,60,1,4516,42992 +51313,273,7,369894,40384 +51314,317,10,58251,227564 +51315,287,3,10391,50726 +51316,253,6,283995,1815920 +51317,413,11,19174,1063740 +51318,317,10,142115,1038004 +51319,20,2,339994,1706511 +51320,148,9,300669,63010 +51321,317,10,55500,114678 +51322,317,10,23599,33094 +51323,53,2,346672,1052870 +51324,234,1,293262,1364771 +51325,262,6,7445,72113 +51326,105,7,1599,312 +51327,273,7,283384,1318446 +51328,269,9,78403,935289 +51329,53,2,52454,1630375 +51330,5,10,224251,1484530 +51331,66,11,390747,1662643 +51332,45,9,206647,1394117 +51333,269,9,239056,966560 +51334,387,10,377287,935359 +51335,357,3,19995,1483224 +51336,105,7,13185,1249819 +51337,289,6,164954,148244 +51338,53,2,5237,50953 +51339,317,10,167012,95329 +51340,175,5,329440,1622452 +51341,148,9,169881,22698 +51342,327,7,10590,1403636 +51343,412,9,13798,1565843 +51344,147,1,356752,1841563 +51345,387,10,14886,11057 +51346,234,1,255772,1293195 +51347,269,9,9529,35512 +51348,317,10,99738,109598 +51349,387,10,14435,61117 +51350,200,3,76757,1394299 +51351,317,10,268174,164938 +51352,53,2,439050,1749861 +51353,160,3,72431,1483841 +51354,67,10,122081,1653675 +51355,234,1,20644,82413 +51356,75,5,251227,1286580 +51357,387,10,43471,72062 +51358,234,1,407559,90609 +51359,317,10,288526,1120003 +51360,141,7,2721,579440 +51361,273,7,9756,63961 +51362,234,1,17170,14838 +51363,413,11,154019,1867212 +51364,286,3,69635,482079 +51365,3,5,310593,7560 +51366,234,1,45120,83198 +51367,226,2,43346,108812 +51368,204,9,20438,79251 +51369,413,11,174751,43441 +51370,234,1,14862,1320176 +51371,53,2,5559,44120 +51372,234,1,38221,18598 +51373,147,1,33586,1814962 +51374,317,10,47190,544951 +51375,5,10,33851,928465 +51376,387,10,60488,231131 +51377,376,10,27259,43806 +51378,12,10,4248,35693 +51379,413,11,142966,1168210 +51380,157,3,85052,35086 +51381,317,10,189197,53972 +51382,415,3,779,11582 +51383,360,9,394645,1855285 +51384,234,1,172396,64508 +51385,234,1,36162,550475 +51386,387,10,15640,65870 +51387,317,10,19342,1409391 +51388,398,9,795,9199 +51389,413,11,15321,18077 +51390,97,7,340101,40823 +51391,234,1,15013,20766 +51392,413,11,71120,1201741 +51393,53,2,82448,22329 +51394,234,1,41076,141619 +51395,273,7,4520,9152 +51396,234,1,229559,1052217 +51397,87,7,263472,1714334 +51398,234,1,13305,37535 +51399,304,10,264309,98001 +51400,179,2,71672,1326742 +51401,413,11,68569,6827 +51402,3,5,57597,1087621 +51403,317,10,83430,53996 +51404,155,3,40807,5530 +51405,277,7,395982,1742477 +51406,398,9,137504,1530403 +51407,148,9,153,1676654 +51408,317,10,88491,1319274 +51409,198,6,333484,1580882 +51410,204,9,36658,22061 +51411,148,9,42149,21795 +51412,373,7,250066,1227500 +51413,182,8,435,1392107 +51414,58,2,354859,1459935 +51415,362,3,1624,1870771 +51416,3,5,84823,1473035 +51417,234,1,91690,5069 +51418,234,1,31206,97774 +51419,234,1,109441,69392 +51420,286,3,37003,1446172 +51421,235,5,2567,963861 +51422,273,7,66178,123288 +51423,373,7,21338,1630529 +51424,234,1,72875,81159 +51425,317,10,36220,57110 +51426,317,10,126418,46994 +51427,53,2,173456,11491 +51428,179,2,10590,1565947 +51429,387,10,101231,69973 +51430,3,5,5237,42177 +51431,105,7,42837,134331 +51432,203,1,10008,1399568 +51433,105,7,3962,2336 +51434,273,7,329865,117992 +51435,111,7,8619,1447601 +51436,75,5,11832,1723383 +51437,143,7,65599,1712795 +51438,234,1,73943,75881 +51439,234,1,166883,109342 +51440,270,9,14126,1334515 +51441,3,5,175027,97048 +51442,239,5,1640,1551226 +51443,394,7,9016,9349 +51444,3,5,11096,120 +51445,3,5,12796,40052 +51446,67,10,15653,1767025 +51447,234,1,11131,21217 +51448,413,11,31347,1352119 +51449,262,6,245692,1574455 +51450,289,6,251,52691 +51451,286,3,18919,551675 +51452,234,1,353462,77458 +51453,5,10,635,9167 +51454,140,9,308269,1447889 +51455,317,10,25038,99501 +51456,317,10,4279,3573 +51457,395,3,10921,1402228 +51458,394,7,177677,11351 +51459,234,1,59935,230081 +51460,234,1,328429,1611981 +51461,413,11,48609,14095 +51462,105,7,38684,11269 +51463,234,1,130272,1090944 +51464,234,1,287628,1354686 +51465,3,5,85230,29454 +51466,182,8,5289,1367560 +51467,179,2,10004,1423018 +51468,52,10,9982,61411 +51469,234,1,444193,1772635 +51470,328,6,9042,1409233 +51471,87,7,77459,1637475 +51472,52,10,43562,87407 +51473,203,1,106747,1419925 +51474,273,7,5915,19016 +51475,204,9,34082,5188 +51476,3,5,11680,14808 +51477,234,1,342011,125071 +51478,234,1,210068,93290 +51479,5,10,37481,117764 +51480,234,1,16980,78188 +51481,269,9,133941,103055 +51482,234,1,54242,150184 +51483,226,2,13823,75803 +51484,413,11,27270,58705 +51485,3,5,112304,938232 +51486,317,10,45019,66085 +51487,234,1,65881,126809 +51488,234,1,73348,64114 +51489,226,2,263115,1637347 +51490,3,5,52867,5806 +51491,87,7,257088,1535987 +51492,319,1,11370,1798039 +51493,2,6,435,1574661 +51494,413,11,53404,545584 +51495,3,5,73984,24665 +51496,3,5,32609,11988 +51497,234,1,70863,149793 +51498,273,7,18282,68499 +51499,305,9,11236,1744851 +51500,317,10,46857,137563 +51501,3,5,408620,37944 +51502,234,1,89688,937722 +51503,413,11,125736,29997 +51504,75,5,9785,1394974 +51505,387,10,332794,78491 +51506,317,10,245775,23506 +51507,398,9,13056,1391751 +51508,317,10,45675,133426 +51509,3,5,10849,3097 +51510,286,3,24886,130791 +51511,203,1,418437,1345635 +51512,53,2,373397,1300430 +51513,314,2,76170,75523 +51514,189,3,28739,1407901 +51515,234,1,52221,69982 +51516,97,7,10389,1437885 +51517,346,3,5289,1409753 +51518,53,2,19918,15524 +51519,234,1,127098,11523 +51520,13,3,378441,1797494 +51521,273,7,76642,579542 +51522,328,6,26390,1395365 +51523,289,6,53219,225709 +51524,387,10,41762,21037 +51525,148,9,63858,12348 +51526,148,9,62630,36696 +51527,387,10,14753,78012 +51528,3,5,243940,63099 +51529,387,10,58166,1026914 +51530,60,1,323674,1719130 +51531,328,6,17479,1407688 +51532,413,11,27777,1368301 +51533,286,3,269258,1324552 +51534,204,9,11593,23759 +51535,204,9,448763,583442 +51536,317,10,180644,1577345 +51537,413,11,414610,1686898 +51538,419,10,153102,84023 +51539,273,7,20758,4100 +51540,250,11,23128,1621955 +51541,234,1,41402,32278 +51542,234,1,30,183 +51543,317,10,197611,20151 +51544,204,9,1662,12257 +51545,298,5,188927,1404739 +51546,387,10,88273,74752 +51547,413,11,508,3310 +51548,415,3,38269,101225 +51549,234,1,38558,99032 +51550,273,7,9591,117 +51551,85,10,184098,82587 +51552,158,2,330459,1317647 +51553,373,7,22584,1619142 +51554,234,1,68716,71418 +51555,289,6,81003,1460472 +51556,273,7,182127,232831 +51557,387,10,11979,61239 +51558,333,2,98364,29801 +51559,160,3,106747,122294 +51560,234,1,109466,63937 +51561,182,8,233639,1792029 +51562,413,11,109001,1646405 +51563,5,10,246422,465135 +51564,196,7,203833,40816 +51565,234,1,444623,82516 +51566,317,10,24392,91559 +51567,3,5,204922,22161 +51568,53,2,262338,979474 +51569,317,10,16560,14692 +51570,269,9,3057,29943 +51571,269,9,31264,44958 +51572,208,2,31150,107372 +51573,53,2,57103,960362 +51574,234,1,63441,99436 +51575,53,2,11370,29868 +51576,3,5,2204,1632 +51577,387,10,291,4319 +51578,413,11,10409,3050 +51579,317,10,203351,1186522 +51580,95,8,126889,1746444 +51581,317,10,226163,229115 +51582,273,7,10947,21587 +51583,3,5,10796,57135 +51584,317,10,89325,8844 +51585,269,9,405473,1647430 +51586,333,2,209112,66693 +51587,413,11,94009,70982 +51588,234,1,82469,57214 +51589,182,8,318781,1589094 +51590,413,11,254869,1423063 +51591,317,10,108345,26959 +51592,289,6,164954,150755 +51593,317,10,52728,114427 +51594,273,7,173177,1721914 +51595,317,10,31561,33085 +51596,234,1,47329,150181 +51597,317,10,83481,634712 +51598,226,2,4592,1457694 +51599,67,10,30061,105643 +51600,317,10,11381,56157 +51601,232,10,104485,726140 +51602,169,3,1624,74980 +51603,413,11,2692,30795 +51604,53,2,20640,9064 +51605,64,6,2675,25453 +51606,24,5,339403,1463718 +51607,387,10,266568,928706 +51608,3,5,90395,137885 +51609,403,10,68715,928157 +51610,317,10,19548,84818 +51611,387,10,858,12921 +51612,204,9,4375,41628 +51613,105,7,307931,984513 +51614,234,1,206277,1013009 +51615,317,10,220287,1210545 +51616,219,11,1586,417960 +51617,317,10,20196,62555 +51618,234,1,231392,90522 +51619,413,11,125300,21267 +51620,333,2,936,1586001 +51621,293,2,263115,1463801 +51622,317,10,382598,946119 +51623,286,3,179715,1162240 +51624,148,9,2637,59429 +51625,105,7,107445,1041614 +51626,317,10,68193,104893 +51627,269,9,9441,21379 +51628,413,11,56669,1512995 +51629,234,1,66984,106834 +51630,182,8,46738,1536640 +51631,234,1,343140,25236 +51632,204,9,33364,10604 +51633,97,7,127521,1392126 +51634,3,5,75532,32381 +51635,75,5,330459,1706702 +51636,413,11,97630,1809 +51637,45,9,50725,1830506 +51638,196,7,4147,1408301 +51639,387,10,264525,76864 +51640,148,9,16320,1318464 +51641,226,2,29161,1760098 +51642,3,5,117550,1375853 +51643,289,6,31347,1457644 +51644,314,2,21338,1630531 +51645,204,9,29365,29345 +51646,5,10,9078,57315 +51647,105,7,705,1597780 +51648,289,6,36658,1460599 +51649,262,6,435,1392098 +51650,204,9,274857,1449059 +51651,234,1,18919,83784 +51652,413,11,17464,81890 +51653,175,5,6163,1701267 +51654,234,1,118900,834 +51655,413,11,11950,30918 +51656,188,8,755,1897889 +51657,105,7,258384,29725 +51658,20,2,13600,1200282 +51659,317,10,271677,1116142 +51660,175,5,70670,1427148 +51661,3,5,12103,1043831 +51662,3,5,105860,21232 +51663,75,5,290825,1728355 +51664,53,2,42307,1317311 +51665,204,9,103597,1646872 +51666,234,1,59881,3974 +51667,102,3,6947,1573105 +51668,188,8,76203,1463721 +51669,333,2,418437,1047629 +51670,208,2,9451,1531562 +51671,204,9,3941,34176 +51672,3,5,9264,432 +51673,326,3,8869,75465 +51674,175,5,73835,1606285 +51675,209,7,156711,1337411 +51676,5,10,156711,1138001 +51677,234,1,8899,56209 +51678,234,1,8985,107858 +51679,234,1,54523,53657 +51680,387,10,11298,102445 +51681,204,9,45988,1205631 +51682,306,7,39415,38400 +51683,317,10,113743,31069 +51684,234,1,67375,129422 +51685,3,5,86709,6899 +51686,234,1,26969,96691 +51687,413,11,12516,72610 +51688,413,11,73313,568782 +51689,387,10,15916,12180 +51690,234,1,277713,93911 +51691,314,2,3057,1539804 +51692,289,6,1267,1447370 +51693,234,1,5155,15127 +51694,333,2,30361,1769269 +51695,373,7,198795,31874 +51696,53,2,94182,13866 +51697,328,6,181533,1029804 +51698,387,10,35405,1176569 +51699,105,7,315256,92057 +51700,273,7,19042,30693 +51701,3,5,9836,59779 +51702,286,3,426903,1077300 +51703,234,1,10710,8246 +51704,196,7,209112,113051 +51705,234,1,62330,95224 +51706,317,10,128917,1088200 +51707,234,1,168814,126714 +51708,234,1,319396,1210789 +51709,269,9,200,2083 +51710,234,1,56162,32632 +51711,413,11,65646,1532124 +51712,317,10,46986,91343 +51713,49,7,340101,1406189 +51714,317,10,19996,85411 +51715,180,7,22292,8511 +51716,97,7,55846,1380898 +51717,13,5,60488,1361978 +51718,273,7,540,22118 +51719,387,10,26323,149128 +51720,197,5,354287,1738647 +51721,3,5,13849,1147899 +51722,234,1,207021,131791 +51723,72,11,168259,1439749 +51724,262,6,324670,1726038 +51725,182,8,34459,1569288 +51726,269,9,75532,12333 +51727,387,10,105860,21227 +51728,234,1,90395,76381 +51729,3,5,3989,9341 +51730,204,9,140607,23453 +51731,333,2,34512,1570879 +51732,87,7,9032,71130 +51733,394,7,15653,1753455 +51734,53,2,144475,4127 +51735,3,5,11848,70711 +51736,234,1,5,3111 +51737,3,5,9843,20065 +51738,203,1,10344,1426782 +51739,187,11,55343,1378836 +51740,413,11,345438,928644 +51741,387,10,9629,58219 +51742,179,2,283445,1548093 +51743,373,7,2662,1010751 +51744,292,3,3597,1790550 +51745,52,10,66984,68655 +51746,5,10,18978,57315 +51747,394,7,359412,930983 +51748,234,1,259075,137066 +51749,413,11,28290,14962 +51750,3,5,49013,12912 +51751,273,7,72032,1086910 +51752,148,9,868,13088 +51753,337,2,11024,77206 +51754,395,3,10948,63646 +51755,301,5,188927,82169 +51756,387,10,32657,67776 +51757,269,9,12128,1295920 +51758,273,7,5881,44733 +51759,3,5,11048,49901 +51760,234,1,33774,225009 +51761,413,11,11227,62434 +51762,262,6,298,1392909 +51763,127,3,9461,57609 +51764,317,10,189151,1170574 +51765,53,2,329440,1052870 +51766,72,11,9836,1718276 +51767,387,10,56853,225109 +51768,166,9,140607,1389526 +51769,203,1,44115,1394728 +51770,317,10,173847,88468 +51771,210,9,10733,1571714 +51772,234,1,32395,129718 +51773,105,7,183412,1328758 +51774,234,1,104374,110519 +51775,387,10,1480,40 +51776,273,7,1396,1204438 +51777,314,2,366045,1515096 +51778,175,5,8617,9360 +51779,387,10,83015,11995 +51780,333,2,188826,1583226 +51781,234,1,7548,52894 +51782,188,8,2675,1674665 +51783,273,7,10425,52379 +51784,360,3,1294,1585886 +51785,53,2,265226,1310819 +51786,104,7,381015,1828335 +51787,273,7,306555,1306690 +51788,77,10,14819,32593 +51789,179,2,168259,1439109 +51790,234,1,33427,74099 +51791,234,1,283995,15218 +51792,188,8,99,1648268 +51793,3,5,32764,6027 +51794,3,5,42703,40183 +51795,97,7,202214,1183165 +51796,273,7,59962,23486 +51797,317,10,170603,1152756 +51798,415,3,2675,1311507 +51799,187,11,9532,1223099 +51800,273,7,8916,11098 +51801,328,6,177677,1545984 +51802,413,11,53945,149350 +51803,413,11,54801,41830 +51804,413,11,41590,64196 +51805,234,1,27211,97278 +51806,293,2,58060,1455271 +51807,333,2,17057,31206 +51808,234,1,63066,116584 +51809,5,10,4441,37268 +51810,234,1,10077,37710 +51811,277,3,99767,27969 +51812,234,1,15468,32940 +51813,387,10,150065,42138 +51814,317,10,36047,60208 +51815,317,10,381737,1004120 +51816,304,10,4948,32083 +51817,268,7,28430,1405343 +51818,3,5,154537,1031598 +51819,273,7,307081,1729 +51820,413,11,44115,1114 +51821,3,5,74777,583466 +51822,52,10,69103,555754 +51823,317,10,377516,1299044 +51824,79,7,378441,1797510 +51825,204,9,156700,996410 +51826,269,9,308269,1447879 +51827,262,6,16342,1335163 +51828,203,1,6163,1415583 +51829,333,2,381518,1545923 +51830,234,1,16866,1158156 +51831,75,5,356500,1756289 +51832,269,9,9314,7732 +51833,269,9,326,223990 +51834,273,7,11704,1760 +51835,3,5,490,6652 +51836,317,10,43113,30464 +51837,413,11,59297,1697 +51838,317,10,124633,15255 +51839,317,10,290379,148842 +51840,413,11,19116,10853 +51841,158,2,70074,1407371 +51842,108,10,12526,72638 +51843,387,10,315837,55391 +51844,234,1,52713,3776 +51845,203,1,2976,1484538 +51846,204,9,39407,12346 +51847,317,10,27523,1014404 +51848,3,5,9425,6800 +51849,5,10,9846,47641 +51850,5,10,62143,29533 +51851,387,10,13005,82394 +51852,187,11,1950,118945 +51853,317,10,208869,1453233 +51854,387,10,33673,20097 +51855,325,5,10491,1262550 +51856,3,5,12476,1402095 +51857,262,6,1586,1551515 +51858,187,11,283995,1388864 +51859,387,10,356758,1096485 +51860,415,3,287,4063 +51861,373,7,10201,16177 +51862,387,10,72733,1091282 +51863,327,7,7340,17994 +51864,413,11,399106,1703200 +51865,209,7,293167,1364427 +51866,413,11,53419,13848 +51867,105,7,10692,1300920 +51868,5,10,6440,1806 +51869,3,5,40688,27154 +51870,25,2,13614,1610059 +51871,413,11,209401,2070 +51872,234,1,40470,13594 +51873,317,10,366630,1043890 +51874,3,5,157847,72264 +51875,394,7,265208,1400070 +51876,3,5,312174,1400604 +51877,234,1,51823,115091 +51878,317,10,254689,152463 +51879,286,3,83346,564 +51880,208,2,244,4352 +51881,234,1,23239,108022 +51882,317,10,272878,52358 +51883,398,9,4147,1520594 +51884,204,9,365942,46592 +51885,3,5,19505,76804 +51886,317,10,86131,97056 +51887,187,11,1428,1564584 +51888,234,1,268380,1317161 +51889,184,7,9016,9430 +51890,232,10,53860,46994 +51891,234,1,87759,1190398 +51892,413,11,8144,53949 +51893,269,9,300667,4907 +51894,209,7,44115,1337411 +51895,333,2,16436,1441749 +51896,273,7,41963,2289 +51897,262,6,70667,927979 +51898,306,7,40466,1760134 +51899,234,1,256836,1300939 +51900,3,5,87296,1659598 +51901,387,10,187737,235227 +51902,301,5,167,1393449 +51903,394,7,244610,1338484 +51904,127,3,72105,1455505 +51905,388,9,2105,1434207 +51906,234,1,12309,57359 +51907,413,11,13333,67452 +51908,413,11,25407,124505 +51909,413,11,323674,1288697 +51910,317,10,220809,1205892 +51911,148,9,5123,60194 +51912,208,2,288694,1356808 +51913,333,2,398633,1623955 +51914,234,1,309809,57741 +51915,40,1,283384,1840492 +51916,317,10,251227,1286555 +51917,105,7,118257,2308 +51918,105,7,405882,1573320 +51919,188,8,693,1761066 +51920,53,2,59197,1196706 +51921,75,5,315664,75111 +51922,327,7,12276,1410551 +51923,234,1,34181,11572 +51924,419,10,39045,1213367 +51925,204,9,41857,936638 +51926,53,2,47540,1468500 +51927,3,5,47739,98501 +51928,398,9,9352,1586329 +51929,3,5,28739,1025921 +51930,328,6,10320,1403537 +51931,105,7,71329,25351 +51932,413,11,22855,8068 +51933,148,9,45244,1605647 +51934,155,3,2309,474 +51935,234,1,291866,1362815 +51936,317,10,315850,1371390 +51937,234,1,322148,1522728 +51938,105,7,266741,1313822 +51939,387,10,208434,10003 +51940,386,5,66340,1424256 +51941,273,7,27523,25321 +51942,234,1,116439,532227 +51943,387,10,5955,46811 +51944,166,9,11370,1581075 +51945,387,10,19482,84723 +51946,3,5,74714,24846 +51947,203,1,773,1370916 +51948,53,2,5552,66026 +51949,320,3,5638,81540 +51950,317,10,36527,121634 +51951,413,11,76533,1086969 +51952,317,10,192623,1184646 +51953,273,7,42703,14861 +51954,273,7,270899,145871 +51955,394,7,70667,1448313 +51956,273,7,140894,43638 +51957,314,2,410537,1727207 +51958,387,10,14698,3634 +51959,289,6,22752,148823 +51960,394,7,45273,1370949 +51961,317,10,142563,1117498 +51962,77,10,435,6047 +51963,317,10,40785,128610 +51964,314,2,9593,1877104 +51965,387,10,5928,46620 +51966,97,7,5,1877413 +51967,12,10,1687,12240 +51968,188,8,98277,1773775 +51969,3,5,333484,18265 +51970,289,6,98566,1459761 +51971,371,3,38775,120428 +51972,413,11,43095,97205 +51973,373,7,1640,13177 +51974,269,9,9753,13469 +51975,53,2,78028,7206 +51976,234,1,49158,103129 +51977,53,2,28571,14867 +51978,3,5,58903,1323719 +51979,53,2,441728,1503680 +51980,196,7,55420,1400101 +51981,317,10,75145,1206960 +51982,3,5,30690,14536 +51983,387,10,2144,21982 +51984,166,9,70074,1407347 +51985,203,1,2898,1442518 +51986,226,2,13380,1753068 +51987,226,2,118,1855211 +51988,143,7,638,5602 +51989,234,1,379335,93561 +51990,262,6,302528,1403404 +51991,143,7,372226,1643573 +51992,45,9,27265,1341849 +51993,333,2,14811,13942 +51994,387,10,10611,66116 +51995,234,1,178587,2087 +51996,127,3,351211,1518164 +51997,226,2,45273,1334166 +51998,33,10,15472,1731243 +51999,234,1,43199,21506 +52000,387,10,415072,109839 +52001,226,2,169298,1099632 +52002,413,11,327,3317 +52003,160,3,297762,57569 +52004,413,11,11800,1264 +52005,328,6,10529,1567330 +52006,72,11,7445,1407236 +52007,234,1,47194,141030 +52008,234,1,30792,107010 +52009,234,1,109453,1295039 +52010,135,3,10733,1571749 +52011,360,9,145481,957314 +52012,387,10,9405,56987 +52013,413,11,60935,525454 +52014,317,10,381054,220088 +52015,53,2,39130,9064 +52016,273,7,113739,202192 +52017,291,6,3057,1201318 +52018,394,7,11096,1398946 +52019,306,7,113432,1404298 +52020,52,10,18684,565333 +52021,160,3,15476,1392977 +52022,148,9,31532,33250 +52023,234,1,1381,6431 +52024,277,3,105059,21787 +52025,269,9,345918,62703 +52026,387,10,86942,1499009 +52027,306,7,403605,1771811 +52028,234,1,157919,87091 +52029,234,1,295314,145162 +52030,52,10,340961,4413 +52031,394,7,11607,1070097 +52032,104,7,10320,1635458 +52033,234,1,120854,1072790 +52034,413,11,44669,34439 +52035,234,1,33623,17627 +52036,234,1,76746,225680 +52037,175,5,59678,1427557 +52038,289,6,106112,598929 +52039,234,1,56339,223965 +52040,387,10,193387,1379212 +52041,262,6,297762,1442161 +52042,113,9,924,1548533 +52043,77,10,9550,1335 +52044,317,10,83459,130938 +52045,3,5,2321,16300 +52046,182,8,125490,1179444 +52047,317,10,317144,1286320 +52048,273,7,49013,15347 +52049,273,7,76094,14959 +52050,306,7,318973,1347380 +52051,3,5,331313,8846 +52052,221,3,9475,1561481 +52053,52,10,68097,130933 +52054,317,10,254869,10847 +52055,219,11,10590,1564233 +52056,411,9,6972,33195 +52057,273,7,28656,101469 +52058,269,9,271404,928528 +52059,105,7,229254,1530274 +52060,413,11,170689,1154233 +52061,234,1,21343,87412 +52062,360,3,95516,1411125 +52063,182,8,168027,1402169 +52064,75,5,126889,1357066 +52065,273,7,10109,63578 +52066,317,10,84233,1580700 +52067,3,5,11626,70064 +52068,387,10,18417,1201 +52069,403,10,242076,785 +52070,273,7,1790,19103 +52071,234,1,79701,1084249 +52072,148,9,300090,526180 +52073,204,9,107073,1406671 +52074,187,11,173153,1472169 +52075,234,1,162864,5602 +52076,317,10,310135,585933 +52077,269,9,76312,1158265 +52078,387,10,12121,71338 +52079,34,8,435,30034 +52080,327,7,8276,1409543 +52081,187,11,42188,40813 +52082,175,5,146233,1452675 +52083,413,11,280617,1035398 +52084,53,2,327,13247 +52085,204,9,297762,1487711 +52086,234,1,45987,97202 +52087,234,1,30993,107466 +52088,328,6,302828,1127957 +52089,203,1,11035,1740212 +52090,317,10,227348,54248 +52091,234,1,44223,130524 +52092,234,1,49230,140249 +52093,3,5,560,7648 +52094,148,9,2084,1319156 +52095,3,5,120497,12279 +52096,47,8,857,1389540 +52097,256,3,10204,1613273 +52098,3,5,101006,68145 +52099,317,10,80545,1496268 +52100,3,5,75532,2361 +52101,182,8,405473,1747170 +52102,327,7,4248,1536633 +52103,273,7,56906,124715 +52104,204,9,32577,61361 +52105,13,3,7249,1460407 +52106,143,7,339547,1579518 +52107,204,9,43131,9062 +52108,204,9,78691,35089 +52109,317,10,14053,54591 +52110,387,10,28681,931246 +52111,155,3,13929,7 +52112,317,10,392882,1102623 +52113,225,7,310888,1734425 +52114,187,11,14510,91099 +52115,234,1,18585,83588 +52116,225,7,236324,1573410 +52117,387,10,17889,135844 +52118,317,10,65142,557254 +52119,413,11,10780,15842 +52120,232,10,74689,545675 +52121,5,10,40985,2001 +52122,83,2,181533,1438591 +52123,273,7,87293,60557 +52124,413,11,435,6051 +52125,234,1,14843,16908 +52126,53,2,395883,1636724 +52127,53,2,252680,1332175 +52128,204,9,17238,1354912 +52129,319,1,378441,1797473 +52130,158,2,284052,1703125 +52131,169,3,45244,1556895 +52132,5,10,248087,1537401 +52133,3,5,361018,1792333 +52134,394,7,21338,1552088 +52135,204,9,54801,231090 +52136,141,7,35908,68016 +52137,204,9,121401,1324445 +52138,175,5,9532,968264 +52139,234,1,324173,57604 +52140,234,1,11622,28904 +52141,273,7,244,3249 +52142,317,10,315855,1409534 +52143,314,2,123109,1512725 +52144,3,5,9507,1153 +52145,245,3,300983,1640322 +52146,333,2,79372,13986 +52147,234,1,16666,220518 +52148,415,3,47921,100762 +52149,234,1,429200,129561 +52150,387,10,154442,33727 +52151,317,10,66702,993025 +52152,234,1,921,6159 +52153,45,9,188927,1395430 +52154,3,5,91070,959764 +52155,412,9,2300,1870671 +52156,164,3,954,1546757 +52157,373,7,273404,1401290 +52158,234,1,157723,179496 +52159,182,8,8053,1708850 +52160,328,6,11377,1602889 +52161,3,5,31472,1829366 +52162,77,10,7249,5741 +52163,234,1,90406,1744 +52164,187,11,102382,1360097 +52165,140,9,329865,1646578 +52166,67,10,209112,105643 +52167,166,9,755,1395016 +52168,413,11,4974,4405 +52169,303,3,1381,1420574 +52170,234,1,426670,18356 +52171,317,10,20495,87354 +52172,234,1,46697,57130 +52173,387,10,791,2161 +52174,3,5,9629,18553 +52175,11,6,294254,1418374 +52176,60,1,47889,1607808 +52177,234,1,64847,239934 +52178,3,5,102197,1602998 +52179,394,7,8870,9349 +52180,317,10,51976,1094168 +52181,234,1,285908,39713 +52182,394,7,34231,1460038 +52183,373,7,322443,126156 +52184,413,11,3059,8821 +52185,196,7,109439,1360099 +52186,387,10,36751,116105 +52187,387,10,343140,26739 +52188,196,7,15725,110528 +52189,317,10,119816,57364 +52190,387,10,157843,6818 +52191,143,7,443319,1397198 +52192,60,1,18047,265751 +52193,270,9,2666,1392677 +52194,203,1,354287,1338291 +52195,52,10,20644,117720 +52196,413,11,154,1804 +52197,328,6,9664,1557588 +52198,204,9,2666,9345 +52199,413,11,2262,3770 +52200,387,10,43688,1018951 +52201,273,7,45556,1092101 +52202,204,9,118889,1326391 +52203,105,7,118131,29967 +52204,3,5,11839,16750 +52205,413,11,389972,72512 +52206,234,1,121822,1075004 +52207,387,10,306555,93723 +52208,387,10,10674,37078 +52209,75,5,285270,1367939 +52210,397,7,42515,558642 +52211,208,2,310133,1444909 +52212,226,2,9778,1456487 +52213,333,2,86603,34496 +52214,413,11,356757,1501789 +52215,209,7,10727,95834 +52216,3,5,49907,39014 +52217,234,1,43685,549128 +52218,181,7,44129,1534987 +52219,204,9,42664,369 +52220,179,2,9472,1324409 +52221,105,7,414977,1028367 +52222,413,11,26422,31437 +52223,3,5,2397,21419 +52224,296,3,186869,1862923 +52225,3,5,66113,63972 +52226,175,5,167073,1390366 +52227,333,2,26283,4352 +52228,413,11,13600,82152 +52229,234,1,58886,69912 +52230,234,1,36751,64950 +52231,234,1,4825,10601 +52232,387,10,10400,41587 +52233,52,10,104954,21230 +52234,3,5,10775,65994 +52235,387,10,11536,36208 +52236,234,1,49500,1048402 +52237,105,7,4832,39651 +52238,317,10,46883,545604 +52239,234,1,130948,38595 +52240,66,11,374473,40805 +52241,64,6,309879,1621478 +52242,209,7,197,1399326 +52243,188,8,10484,1676548 +52244,234,1,62394,4137 +52245,413,11,831,12345 +52246,317,10,222858,1341756 +52247,204,9,144471,120193 +52248,413,11,235,3032 +52249,317,10,140595,99179 +52250,203,1,45132,1450000 +52251,301,5,9032,1408359 +52252,317,10,21138,87146 +52253,204,9,97910,14448 +52254,92,7,65898,1622037 +52255,273,7,118,531 +52256,273,7,121401,9217 +52257,234,1,197089,5077 +52258,327,7,122019,1056686 +52259,187,11,9314,31293 +52260,360,3,16432,1418510 +52261,141,7,263115,1548698 +52262,331,3,10320,1334424 +52263,3,5,11236,151 +52264,3,5,3638,7262 +52265,3,5,4932,30288 +52266,234,1,364379,1300476 +52267,234,1,59419,56361 +52268,160,3,38027,217763 +52269,15,6,8204,7727 +52270,169,3,12113,1224272 +52271,289,6,80928,226599 +52272,317,10,16441,58245 +52273,175,5,4806,1183391 +52274,373,7,18273,11243 +52275,234,1,17908,46297 +52276,273,7,29355,1213 +52277,187,11,12113,1342658 +52278,188,8,163791,1601464 +52279,143,7,9836,577468 +52280,234,1,14301,12891 +52281,234,1,468707,1447791 +52282,234,1,246860,21678 +52283,3,5,43931,1312510 +52284,333,2,368006,1640326 +52285,234,1,56304,223905 +52286,387,10,51828,133876 +52287,234,1,2611,10965 +52288,3,5,86241,9213 +52289,317,10,23152,10601 +52290,87,7,287903,52452 +52291,331,3,4147,1428132 +52292,333,2,9358,1441273 +52293,92,7,43268,1372914 +52294,317,10,250275,1285667 +52295,232,10,130717,30409 +52296,387,10,36094,46621 +52297,175,5,395883,1448327 +52298,176,3,228970,1470536 +52299,148,9,82654,130223 +52300,273,7,10889,10494 +52301,413,11,54287,1023290 +52302,3,5,324930,1593831 +52303,368,7,263115,1361676 +52304,226,2,6068,1525544 +52305,3,5,104954,18835 +52306,234,1,61121,11244 +52307,234,1,52238,56742 +52308,387,10,12652,73266 +52309,148,9,11521,1535946 +52310,273,7,42739,7741 +52311,317,10,325645,5812 +52312,317,10,2993,1116367 +52313,234,1,49717,69646 +52314,415,3,2009,1434542 +52315,301,5,3037,42864 +52316,3,5,271718,139138 +52317,273,7,109001,76888 +52318,6,3,32085,80247 +52319,226,2,302699,1729080 +52320,234,1,21145,71930 +52321,269,9,214138,1284153 +52322,3,5,9589,5639 +52323,198,6,312831,1335879 +52324,3,5,131764,3148 +52325,5,10,64827,100327 +52326,234,1,44099,20370 +52327,317,10,319396,237952 +52328,203,1,272693,117082 +52329,387,10,85265,277012 +52330,269,9,23966,1419795 +52331,387,10,43880,26160 +52332,53,2,90461,13866 +52333,75,5,263115,930028 +52334,187,11,613,1425855 +52335,52,10,27114,94298 +52336,105,7,9827,28954 +52337,53,2,2666,27750 +52338,262,6,25376,113381 +52339,204,9,233208,1340080 +52340,413,11,83015,15384 +52341,196,7,17654,1424615 +52342,413,11,352164,1611040 +52343,196,7,244,3258 +52344,387,10,9013,21792 +52345,413,11,7340,10766 +52346,226,2,2160,26176 +52347,304,10,90465,1168714 +52348,148,9,104720,8508 +52349,234,1,213635,67619 +52350,226,2,205584,1585743 +52351,317,10,36245,793 +52352,317,10,325189,1066705 +52353,413,11,6948,61192 +52354,289,6,378236,1840323 +52355,273,7,68822,12262 +52356,234,1,45243,57130 +52357,3,5,27114,35242 +52358,72,11,330459,1408400 +52359,317,10,332283,73289 +52360,87,7,8669,1527657 +52361,413,11,10999,898 +52362,20,2,6977,1017240 +52363,289,6,159824,1452997 +52364,234,1,43388,57142 +52365,234,1,18586,569 +52366,3,5,13616,225941 +52367,234,1,16047,1147080 +52368,155,3,153,38803 +52369,234,1,1267,16842 +52370,204,9,2731,1966 +52371,160,3,238,1433439 +52372,3,5,14505,18882 +52373,234,1,21927,88061 +52374,234,1,461955,82194 +52375,234,1,105860,21227 +52376,75,5,413452,1877807 +52377,387,10,9385,24530 +52378,317,10,44434,1063230 +52379,232,10,56943,225245 +52380,234,1,131815,72891 +52381,413,11,49940,47066 +52382,317,10,22398,136130 +52383,204,9,10863,957776 +52384,273,7,36612,30268 +52385,387,10,5559,44117 +52386,394,7,693,14382 +52387,234,1,440178,2801 +52388,273,7,2135,122 +52389,75,5,186869,35563 +52390,317,10,169758,233313 +52391,3,5,85350,32235 +52392,234,1,33481,54767 +52393,234,1,36691,16305 +52394,387,10,43205,129311 +52395,113,9,64215,1354351 +52396,273,7,78522,99412 +52397,209,7,188927,67695 +52398,413,11,324930,1037913 +52399,413,11,12525,51758 +52400,160,3,259830,1340728 +52401,3,5,123777,1012174 +52402,273,7,294016,10572 +52403,413,11,381518,1482226 +52404,200,3,109424,1408380 +52405,234,1,47412,41222 +52406,234,1,92989,64992 +52407,46,5,11045,1717518 +52408,234,1,10930,19069 +52409,105,7,295627,1368962 +52410,269,9,3172,3188 +52411,175,5,28,1437276 +52412,387,10,187442,1171287 +52413,3,5,69471,556493 +52414,413,11,406992,55985 +52415,148,9,9423,1308254 +52416,148,9,302042,1818202 +52417,387,10,1382,16860 +52418,234,1,11545,5655 +52419,143,7,345918,1401318 +52420,77,10,9655,58376 +52421,160,3,2503,8684 +52422,203,1,43395,15702 +52423,234,1,10568,65852 +52424,387,10,364111,1257117 +52425,65,3,4012,34541 +52426,394,7,10391,554887 +52427,83,2,8669,1316504 +52428,317,10,10139,123997 +52429,301,5,77949,34194 +52430,387,10,23861,136923 +52431,317,10,32166,185995 +52432,5,10,12311,72064 +52433,333,2,3023,33001 +52434,333,2,124470,1130777 +52435,286,3,46368,1317097 +52436,413,11,39048,119397 +52437,413,11,25625,10367 +52438,189,3,635,1400002 +52439,53,2,347945,1618763 +52440,399,9,10020,1615257 +52441,317,10,110416,1124979 +52442,234,1,15258,83339 +52443,234,1,188357,237089 +52444,333,2,244610,1608251 +52445,234,1,33356,30309 +52446,317,10,168496,106607 +52447,209,7,5289,1335045 +52448,148,9,241254,1340088 +52449,97,7,345918,1411725 +52450,234,1,116327,31251 +52451,273,7,75761,6041 +52452,306,7,469172,10050 +52453,234,1,121329,225568 +52454,3,5,11591,1044 +52455,353,7,72545,1613970 +52456,234,1,90041,936169 +52457,51,9,11618,39923 +52458,206,3,10204,1635070 +52459,204,9,10400,29219 +52460,234,1,16366,80698 +52461,239,5,773,1561829 +52462,387,10,5881,46280 +52463,64,6,75204,574147 +52464,235,5,9286,1441368 +52465,373,7,381015,1418432 +52466,413,11,239018,64060 +52467,5,10,173638,1120403 +52468,75,5,28681,42157 +52469,10,3,8869,937093 +52470,413,11,9945,27583 +52471,209,7,83,1401305 +52472,203,1,39001,1416673 +52473,234,1,245597,1284286 +52474,189,3,69668,1426002 +52475,234,1,55748,223066 +52476,97,7,340275,928952 +52477,127,3,52661,16474 +52478,286,3,37910,74091 +52479,269,9,14534,21640 +52480,387,10,61121,5976 +52481,141,7,57201,68016 +52482,10,3,809,1001706 +52483,77,10,8199,53965 +52484,234,1,103332,16960 +52485,268,7,522,1541839 +52486,286,3,21843,88022 +52487,53,2,110323,54284 +52488,234,1,46169,76418 +52489,234,1,235,3026 +52490,234,1,369052,115178 +52491,3,5,525,7183 +52492,317,10,70864,23359 +52493,52,10,170936,32177 +52494,45,9,9529,1408279 +52495,413,11,257444,1033123 +52496,3,5,24094,1313056 +52497,413,11,25898,89739 +52498,413,11,9716,10440 +52499,387,10,407887,143804 +52500,53,2,4893,29894 +52501,328,6,257088,1364798 +52502,413,11,9514,57807 +52503,413,11,318973,1347380 +52504,387,10,378570,1566497 +52505,105,7,19116,136261 +52506,270,9,755,1443060 +52507,413,11,364410,703 +52508,3,5,301804,63099 +52509,196,7,27265,83090 +52510,53,2,298,4061 +52511,234,1,70026,120686 +52512,141,7,11697,30257 +52513,273,7,2397,24513 +52514,234,1,331354,45060 +52515,234,1,49574,142497 +52516,53,2,359412,955396 +52517,415,3,214756,1459722 +52518,387,10,11003,56728 +52519,5,10,13580,20422 +52520,317,10,31742,125423 +52521,3,5,9639,12033 +52522,413,11,85525,1542408 +52523,53,2,104427,38229 +52524,234,1,222872,106750 +52525,413,11,41970,40307 +52526,148,9,60935,1321697 +52527,180,7,53714,1544253 +52528,53,2,2982,7514 +52529,387,10,29286,103438 +52530,3,5,32610,16750 +52531,148,9,105059,10010 +52532,367,11,283995,1722 +52533,25,2,315837,1486822 +52534,317,10,284343,55045 +52535,234,1,160324,98107 +52536,289,6,59387,1451684 +52537,387,10,3028,3389 +52538,60,1,332788,1446045 +52539,108,10,2288,23606 +52540,187,11,9286,548437 +52541,413,11,13920,541 +52542,269,9,152736,930010 +52543,269,9,82501,54332 +52544,92,7,2721,1451461 +52545,234,1,134475,89602 +52546,234,1,524,1032 +52547,413,11,5721,41695 +52548,187,11,20648,1403861 +52549,413,11,31867,6581 +52550,286,3,91067,1396122 +52551,75,5,152736,1179829 +52552,403,10,48207,9168 +52553,269,9,33851,1411342 +52554,234,1,215657,148321 +52555,317,10,28597,7130 +52556,75,5,9457,1421741 +52557,328,6,8869,1429247 +52558,203,1,42251,1446549 +52559,234,1,351043,41887 +52560,327,7,4147,15226 +52561,129,11,338063,1581565 +52562,234,1,69061,83961 +52563,277,7,41030,1766039 +52564,5,10,33592,51446 +52565,203,1,35052,40749 +52566,387,10,12796,1073190 +52567,148,9,71133,1782097 +52568,273,7,37581,3249 +52569,373,7,44363,1451409 +52570,234,1,141640,21377 +52571,203,1,322443,1427850 +52572,269,9,50838,65812 +52573,317,10,170430,1237449 +52574,204,9,48156,10009 +52575,234,1,341962,1158776 +52576,234,1,177564,1294988 +52577,204,9,42678,874 +52578,273,7,38055,947 +52579,317,10,10235,1337476 +52580,328,6,38154,562944 +52581,53,2,210913,1288126 +52582,97,7,180299,1352421 +52583,346,3,12102,1458534 +52584,57,2,1579,1401642 +52585,11,6,45205,132524 +52586,234,1,142064,178998 +52587,148,9,16921,1330558 +52588,234,1,85420,13284 +52589,373,7,186869,56765 +52590,5,10,245739,80536 +52591,52,10,257088,13927 +52592,317,10,24357,9339 +52593,413,11,10373,65308 +52594,387,10,101342,257772 +52595,262,6,76600,1418395 +52596,234,1,231176,120127 +52597,333,2,5413,1556969 +52598,3,5,83125,1073579 +52599,166,9,365942,1532748 +52600,72,11,265208,1340006 +52601,209,7,1578,1399326 +52602,234,1,199851,935102 +52603,105,7,84601,422939 +52604,234,1,10005,61848 +52605,234,1,41599,10601 +52606,269,9,1271,9967 +52607,317,10,113739,1057678 +52608,72,11,228066,1574105 +52609,333,2,57419,1601710 +52610,3,5,35852,20416 +52611,220,7,414977,1349080 +52612,287,3,28155,16178 +52613,52,10,146970,92928 +52614,333,2,69,1333900 +52615,333,2,15,122108 +52616,192,5,11056,1418158 +52617,57,2,169881,1519291 +52618,5,10,26252,1294215 +52619,204,9,11017,54603 +52620,234,1,122662,571455 +52621,269,9,183412,1419620 +52622,234,1,14226,607 +52623,60,1,2105,7409 +52624,270,9,10733,1397814 +52625,234,1,40130,237402 +52626,346,3,39001,1468128 +52627,387,10,26293,44137 +52628,273,7,6,37 +52629,3,5,43548,38589 +52630,190,7,169,1877166 +52631,317,10,378446,72949 +52632,3,5,1539,17136 +52633,273,7,63472,3562 +52634,53,2,30624,1352668 +52635,226,2,1942,30575 +52636,234,1,48935,69038 +52637,226,2,307081,407795 +52638,269,9,13580,74692 +52639,203,1,209112,1423005 +52640,317,10,60813,13681 +52641,190,7,10590,1566295 +52642,317,10,292014,1425610 +52643,105,7,177572,1431153 +52644,269,9,222935,89383 +52645,234,1,57308,225892 +52646,234,1,8985,81964 +52647,277,7,442752,1761886 +52648,148,9,224944,1642135 +52649,234,1,72232,64099 +52650,234,1,6972,6201 +52651,234,1,11909,11401 +52652,387,10,81475,33576 +52653,225,7,3172,1414886 +52654,234,1,150211,1331465 +52655,203,1,157351,1436198 +52656,234,1,21029,68032 +52657,398,9,664,19863 +52658,52,10,33801,142268 +52659,413,11,9900,60151 +52660,234,1,488,6593 +52661,204,9,2274,23492 +52662,234,1,63260,99511 +52663,176,3,13849,1413932 +52664,387,10,27873,23858 +52665,413,11,46094,69676 +52666,180,7,14537,550945 +52667,273,7,27381,12939 +52668,187,11,243935,1379961 +52669,289,6,90001,1563387 +52670,53,2,47889,1391068 +52671,226,2,1715,18787 +52672,53,2,410118,1712239 +52673,333,2,436,1624059 +52674,317,10,13586,7028 +52675,219,11,8204,13223 +52676,162,6,74,1546844 +52677,234,1,10440,1243 +52678,102,3,10590,1566278 +52679,387,10,12102,6729 +52680,387,10,227717,47900 +52681,234,1,95807,17278 +52682,387,10,115626,87581 +52683,273,7,137145,1106887 +52684,273,7,2015,20735 +52685,413,11,10268,64536 +52686,234,1,1647,21370 +52687,176,3,8915,1399504 +52688,413,11,63414,1488793 +52689,208,2,24392,1328819 +52690,234,1,141210,1114467 +52691,413,11,352208,1545239 +52692,333,2,340275,1424698 +52693,3,5,329010,1180546 +52694,3,5,37462,115374 +52695,3,5,315837,72853 +52696,387,10,10303,2103 +52697,373,7,79995,228788 +52698,75,5,9532,1441260 +52699,273,7,3087,30268 +52700,234,1,42191,78053 +52701,371,3,107073,1481515 +52702,3,5,4146,19054 +52703,75,5,41963,13931 +52704,77,10,3780,34372 +52705,234,1,148284,91552 +52706,234,1,10491,10781 +52707,413,11,14518,311397 +52708,187,7,9819,1879201 +52709,337,2,11351,66693 +52710,273,7,210302,19155 +52711,175,5,11045,1391389 +52712,204,9,286372,1375924 +52713,273,7,54801,39752 +52714,273,7,12599,73050 +52715,53,2,102382,8527 +52716,403,10,72984,38748 +52717,3,5,104297,58007 +52718,317,10,225044,11805 +52719,148,9,68721,75391 +52720,413,11,174309,1168754 +52721,188,8,186869,1862945 +52722,273,7,19174,1063738 +52723,53,2,11593,36429 +52724,204,9,59297,90505 +52725,3,5,76163,4950 +52726,373,7,98066,91087 +52727,204,9,297762,29609 +52728,226,2,10921,1402104 +52729,314,2,435,1418453 +52730,46,5,26882,1773271 +52731,87,7,13056,1707616 +52732,20,2,286873,1553463 +52733,204,9,31083,120380 +52734,387,10,10407,65003 +52735,239,5,122019,1637899 +52736,330,3,10204,1613318 +52737,333,2,18467,131822 +52738,182,8,70981,1390367 +52739,234,1,43783,80570 +52740,273,7,37710,1213 +52741,317,10,362765,1519326 +52742,87,7,6933,1535987 +52743,413,11,8844,4951 +52744,3,5,151086,1797360 +52745,175,5,82,1412205 +52746,3,5,384262,1805958 +52747,269,9,84284,1625803 +52748,97,7,294272,1337413 +52749,234,1,41097,127483 +52750,175,5,9819,18095 +52751,234,1,354857,222169 +52752,234,1,966,14520 +52753,317,10,8930,56836 +52754,64,6,45772,1460630 +52755,234,1,148327,120565 +52756,234,1,82470,31890 +52757,234,1,37939,82461 +52758,273,7,452372,545376 +52759,273,7,74777,583465 +52760,234,1,155308,85894 +52761,387,10,11547,69803 +52762,234,1,123359,105574 +52763,148,9,63333,16893 +52764,317,10,28299,31068 +52765,52,10,65674,1475364 +52766,234,1,8204,54050 +52767,234,1,117678,1133064 +52768,273,7,124115,3249 +52769,77,10,10849,1243 +52770,333,2,15616,1059587 +52771,239,5,10909,963861 +52772,244,3,10198,928608 +52773,234,1,332759,1843 +52774,52,10,29835,10911 +52775,75,5,156981,1575339 +52776,234,1,266044,19896 +52777,360,3,11656,1192605 +52778,234,1,43891,2891 +52779,196,7,9438,1456476 +52780,394,7,293660,1399057 +52781,234,1,122843,24248 +52782,148,9,42040,7791 +52783,148,9,17771,1602308 +52784,204,9,16444,119323 +52785,317,10,64167,10782 +52786,387,10,131478,81749 +52787,148,9,109251,797 +52788,269,9,122,1314 +52789,273,7,103332,1031656 +52790,5,10,43367,30507 +52791,273,7,11983,531 +52792,234,1,128216,98 +52793,221,3,5,1877370 +52794,52,10,1452,11013 +52795,373,7,1125,1399141 +52796,182,8,66193,1402536 +52797,317,10,8467,7396 +52798,333,2,345922,1445827 +52799,180,7,42764,1766561 +52800,360,9,181533,1333084 +52801,234,1,66045,57303 +52802,269,9,278316,989751 +52803,269,9,19116,223990 +52804,288,3,2486,15024 +52805,287,3,52520,1431012 +52806,269,9,24453,10936 +52807,148,9,15022,967366 +52808,387,10,184578,1234544 +52809,234,1,208434,14520 +52810,79,7,714,10750 +52811,250,11,205584,1410560 +52812,387,10,267466,1348080 +52813,53,2,39800,64314 +52814,203,1,14916,1430521 +52815,234,1,18932,83922 +52816,196,7,5,1412227 +52817,413,11,11614,5821 +52818,143,7,357706,1642541 +52819,413,11,10948,61795 +52820,97,7,202214,1183168 +52821,317,10,123757,1012097 +52822,413,11,80713,46861 +52823,234,1,11886,57314 +52824,413,11,257450,30052 +52825,333,2,297702,1636862 +52826,269,9,11589,568911 +52827,413,11,171357,1153757 +52828,413,11,86829,1223 +52829,286,3,126516,1092934 +52830,75,5,43231,49901 +52831,53,2,19995,1071680 +52832,77,10,30,40333 +52833,333,2,76170,76088 +52834,203,1,127372,1425397 +52835,3,5,28847,45578 +52836,387,10,18671,13569 +52837,234,1,150712,32427 +52838,273,7,285532,1350319 +52839,234,1,54105,150971 +52840,234,1,18093,120930 +52841,387,10,253395,11263 +52842,45,9,58372,1522048 +52843,149,6,4978,1463245 +52844,3,5,134475,100039 +52845,413,11,104485,3239 +52846,234,1,63825,78747 +52847,234,1,199463,48566 +52848,169,3,12450,1425544 +52849,204,9,14703,10641 +52850,273,7,106635,30268 +52851,204,9,3574,32999 +52852,34,8,296524,1425341 +52853,204,9,141955,14236 +52854,317,10,17007,60440 +52855,203,1,395992,1410219 +52856,328,6,8619,1169459 +52857,182,8,222935,45762 +52858,75,5,19901,1391731 +52859,196,7,9358,1392081 +52860,387,10,2017,20686 +52861,413,11,9272,11454 +52862,413,11,107985,969705 +52863,273,7,10539,7885 +52864,234,1,338421,26767 +52865,387,10,70122,137842 +52866,317,10,13855,1029562 +52867,387,10,27599,98319 +52868,182,8,6591,1588224 +52869,413,11,34082,3486 +52870,53,2,1715,5332 +52871,97,7,16921,1401761 +52872,3,5,25684,1120225 +52873,317,10,16296,80247 +52874,234,1,11364,5342 +52875,373,7,244786,1406825 +52876,234,1,303636,1412501 +52877,317,10,62837,56909 +52878,10,3,378441,1797468 +52879,269,9,9900,20824 +52880,234,1,26889,102445 +52881,21,3,378441,1797476 +52882,289,6,53178,557252 +52883,53,2,45215,8509 +52884,204,9,46982,1532202 +52885,209,7,76163,1345268 +52886,204,9,328429,1636693 +52887,413,11,13580,12009 +52888,168,3,3172,91932 +52889,3,5,28325,31775 +52890,3,5,2441,16982 +52891,328,6,381518,1516449 +52892,5,10,110323,1049252 +52893,317,10,21581,583726 +52894,387,10,10003,17880 +52895,196,7,9438,122464 +52896,234,1,36983,154631 +52897,3,5,137528,1737690 +52898,12,10,214756,52139 +52899,387,10,3089,30294 +52900,3,5,4988,41151 +52901,3,5,10915,5556 +52902,3,5,11511,1214 +52903,3,5,14904,3049 +52904,387,10,3144,30745 +52905,387,10,356461,236742 +52906,234,1,4413,17016 +52907,234,1,269149,165787 +52908,158,2,70981,1389543 +52909,277,3,31773,27969 +52910,213,10,32158,234942 +52911,317,10,73198,1534355 +52912,204,9,13380,1500145 +52913,204,9,47112,15878 +52914,181,7,11511,95833 +52915,147,1,924,1733240 +52916,204,9,71041,1274271 +52917,234,1,264553,1332306 +52918,239,5,322443,1615080 +52919,327,7,347945,1618781 +52920,317,10,47559,5550 +52921,234,1,47508,128200 +52922,97,7,230179,1512665 +52923,166,9,9613,1425975 +52924,287,3,205584,1585739 +52925,225,7,42418,1360103 +52926,3,5,144471,98161 +52927,273,7,8954,4140 +52928,169,3,17577,1271793 +52929,175,5,190955,1193622 +52930,333,2,64807,1265230 +52931,234,1,9286,57134 +52932,269,9,32390,1966 +52933,360,3,9902,1337452 +52934,234,1,105325,137194 +52935,148,9,3580,65711 +52936,387,10,408508,45407 +52937,333,2,251421,1468553 +52938,179,2,70667,61850 +52939,3,5,45013,110261 +52940,317,10,51759,144423 +52941,387,10,440508,1181888 +52942,226,2,2666,961143 +52943,277,3,10733,1397844 +52944,234,1,55197,95501 +52945,373,7,634,40818 +52946,269,9,27085,95332 +52947,413,11,158967,1326482 +52948,328,6,42309,1440405 +52949,204,9,10973,30106 +52950,234,1,765,7623 +52951,273,7,63144,1044163 +52952,317,10,98302,143570 +52953,234,1,51549,96557 +52954,317,10,46883,545053 +52955,317,10,413579,1672754 +52956,413,11,321528,1033619 +52957,148,9,93350,224389 +52958,158,2,10071,1532693 +52959,175,5,346672,1408825 +52960,306,7,435,1574660 +52961,351,3,26805,1195654 +52962,317,10,25037,68424 +52963,25,2,309879,1417173 +52964,413,11,13393,1603659 +52965,3,5,331588,11113 +52966,196,7,284052,1414177 +52967,273,7,33314,71268 +52968,234,1,240745,54469 +52969,413,11,27629,26025 +52970,269,9,49963,1467186 +52971,148,9,13496,5633 +52972,3,5,28026,17175 +52973,160,3,61765,19650 +52974,161,6,329865,1646593 +52975,226,2,1717,460575 +52976,204,9,3055,8506 +52977,105,7,37719,72066 +52978,52,10,95015,40192 +52979,234,1,11259,6159 +52980,241,3,2976,29214 +52981,148,9,858,4197 +52982,209,7,337339,1393405 +52983,289,6,9514,1642530 +52984,387,10,43407,137530 +52985,143,7,210910,1194701 +52986,317,10,72648,113933 +52987,291,6,505,1511730 +52988,269,9,46094,774208 +52989,252,3,8470,1549425 +52990,387,10,267579,50922 +52991,357,3,10529,1567321 +52992,234,1,99819,229873 +52993,204,9,17136,29278 +52994,234,1,27196,10781 +52995,269,9,41970,206531 +52996,3,5,12273,1705312 +52997,5,10,33364,1633614 +52998,52,10,26469,145193 +52999,413,11,31634,135104 +53000,5,10,20530,131011 +53001,317,10,131764,72062 +53002,413,11,71701,24667 +53003,187,11,2567,92391 +53004,317,10,422878,27102 +53005,387,10,12129,62755 +53006,273,7,44502,1321353 +53007,413,11,39943,64118 +53008,333,2,149509,1444287 +53009,5,10,51275,1607590 +53010,413,11,12106,950 +53011,273,7,32082,1864179 +53012,413,11,5991,66796 +53013,269,9,146243,7787 +53014,269,9,15321,1462070 +53015,60,1,29043,31998 +53016,360,3,241239,1393371 +53017,234,1,35626,74671 +53018,333,2,297762,1425411 +53019,234,1,12169,71506 +53020,3,5,2017,20693 +53021,413,11,33931,18800 +53022,317,10,18070,58767 +53023,182,8,169881,1519298 +53024,413,11,42825,22086 +53025,352,3,9472,1567976 +53026,273,7,121234,40460 +53027,387,10,10733,54040 +53028,387,10,56942,150011 +53029,234,1,142946,56953 +53030,234,1,63773,6558 +53031,97,7,338189,1414548 +53032,3,5,10406,56988 +53033,234,1,254575,52325 +53034,75,5,184363,1169045 +53035,317,10,48508,229307 +53036,415,3,35002,1206210 +53037,204,9,354287,1411797 +53038,52,10,193435,34402 +53039,394,7,445993,229893 +53040,367,11,69060,1506425 +53041,234,1,190940,85670 +53042,234,1,38732,40199 +53043,387,10,177566,81297 +53044,277,3,84226,1418428 +53045,298,5,77949,1402098 +53046,78,3,857,1576007 +53047,53,2,2084,81266 +53048,289,6,127372,1453003 +53049,234,1,2259,19684 +53050,3,5,214910,69087 +53051,345,7,14,75797 +53052,3,5,8672,6826 +53053,60,1,99599,1719855 +53054,203,1,1726,1397300 +53055,64,6,298,1336716 +53056,317,10,87593,45405 +53057,234,1,107811,226089 +53058,398,9,5172,41890 +53059,45,9,2046,1455286 +53060,234,1,20110,239071 +53061,373,7,346672,1417514 +53062,394,7,354979,1085290 +53063,413,11,293167,6668 +53064,387,10,213983,112132 +53065,77,10,5040,40615 +53066,250,11,10145,1405218 +53067,317,10,198511,2305 +53068,301,5,269173,1391732 +53069,317,10,398137,1540371 +53070,105,7,9404,28156 +53071,269,9,9885,1465612 +53072,203,1,158908,1516294 +53073,387,10,57412,559101 +53074,3,5,74585,10339 +53075,398,9,333371,1456496 +53076,3,5,240832,997 +53077,269,9,17911,1871215 +53078,143,7,245703,1394418 +53079,317,10,417870,1371247 +53080,189,3,243568,1685940 +53081,204,9,28510,1324123 +53082,179,2,10071,1440306 +53083,269,9,146216,1253 +53084,53,2,13788,8707 +53085,269,9,23196,1712320 +53086,46,5,755,1897876 +53087,317,10,40785,1477900 +53088,413,11,11622,58208 +53089,234,1,209921,1193463 +53090,187,11,41283,5635 +53091,234,1,337758,229682 +53092,234,1,11333,49450 +53093,3,5,275696,1448107 +53094,357,3,369885,1790947 +53095,3,5,384262,1805960 +53096,155,3,25376,1097495 +53097,234,1,329805,64210 +53098,387,10,78256,84237 +53099,317,10,79218,6056 +53100,234,1,253851,1150813 +53101,387,10,28561,19408 +53102,317,10,352327,78835 +53103,413,11,30298,1653450 +53104,87,7,348631,1650944 +53105,234,1,344656,1477316 +53106,234,1,4964,41039 +53107,387,10,125513,106577 +53108,269,9,225285,32985 +53109,399,9,13205,1815490 +53110,196,7,638,9422 +53111,209,7,274857,1357599 +53112,415,3,85494,12301 +53113,373,7,169881,40482 +53114,413,11,338421,23810 +53115,3,5,16214,4056 +53116,158,2,1579,1400353 +53117,200,3,251,1401105 +53118,234,1,84479,930778 +53119,317,10,31875,64194 +53120,317,10,143005,1118188 +53121,286,3,377853,228786 +53122,234,1,141643,99116 +53123,269,9,9959,5779 +53124,269,9,59115,990139 +53125,234,1,74822,32940 +53126,234,1,1963,1188 +53127,413,11,24634,1047 +53128,413,11,56596,994380 +53129,250,11,351901,1371519 +53130,198,6,296524,113120 +53131,250,11,62630,1399591 +53132,234,1,85564,56349 +53133,3,5,11943,57550 +53134,333,2,44960,1378432 +53135,387,10,126315,1082434 +53136,273,7,99861,531 +53137,160,3,14126,1346949 +53138,317,10,210079,1194392 +53139,148,9,16232,224389 +53140,180,7,84508,1542454 +53141,317,10,150657,928670 +53142,302,9,55534,1389666 +53143,387,10,2966,27572 +53144,273,7,11007,23486 +53145,317,10,125736,33028 +53146,143,7,356752,1277640 +53147,234,1,84617,179923 +53148,148,9,11056,1418148 +53149,317,10,280674,1338522 +53150,105,7,361018,1792331 +53151,394,7,294254,1367494 +53152,387,10,43489,1168713 +53153,75,5,8584,1402095 +53154,387,10,10173,10056 +53155,413,11,61934,64118 +53156,78,3,293167,1738113 +53157,5,10,83389,1062015 +53158,413,11,82684,1315 +53159,234,1,2115,1035 +53160,277,3,19765,1438515 +53161,317,10,371741,12952 +53162,148,9,423988,1872768 +53163,182,8,15,1369442 +53164,306,7,374473,1650274 +53165,3,5,8556,16674 +53166,60,1,125264,1530374 +53167,234,1,42571,128217 +53168,289,6,29233,150110 +53169,3,5,63825,55073 +53170,196,7,408220,1510876 +53171,3,5,46567,32381 +53172,413,11,197696,39108 +53173,287,3,222935,1335140 +53174,234,1,22894,116357 +53175,5,10,71041,157 +53176,196,7,338518,1341737 +53177,160,3,109439,6328 +53178,3,5,10077,37710 +53179,182,8,64499,1454544 +53180,5,10,353641,1195625 +53181,179,2,301875,1371129 +53182,53,2,49009,2709 +53183,317,10,19338,936106 +53184,317,10,52949,19142 +53185,317,10,65134,52208 +53186,234,1,76115,1122354 +53187,317,10,47011,15191 +53188,234,1,130925,1092247 +53189,317,10,42725,39012 +53190,226,2,2503,117206 +53191,127,3,664,1892499 +53192,234,1,14811,13563 +53193,333,2,181533,1425411 +53194,413,11,19101,9647 +53195,360,3,124470,1436534 +53196,413,11,12639,10185 +53197,160,3,1690,1449958 +53198,12,10,21752,299644 +53199,234,1,18890,64949 +53200,317,10,46069,134342 +53201,64,6,815,15884 +53202,242,9,3061,9062 +53203,52,10,77650,582417 +53204,360,9,233639,1792024 +53205,289,6,10193,7929 +53206,317,10,13763,57536 +53207,87,7,2034,1471726 +53208,75,5,28739,1407895 +53209,328,6,15613,60217 +53210,394,7,132363,15432 +53211,3,5,28268,1092895 +53212,269,9,15935,42385 +53213,53,2,13852,75907 +53214,234,1,409447,196858 +53215,3,5,8494,56007 +53216,234,1,230266,11916 +53217,34,8,168259,1439108 +53218,182,8,124470,1448300 +53219,317,10,382597,37627 +53220,289,6,149870,1249685 +53221,387,10,302699,198150 +53222,387,10,388243,1592196 +53223,234,1,72057,105866 +53224,387,10,3033,15557 +53225,413,11,33556,1026842 +53226,3,5,20361,936831 +53227,413,11,18,998 +53228,317,10,8988,1223862 +53229,317,10,206296,2163 +53230,234,1,43648,106345 +53231,198,6,369885,1790957 +53232,143,7,4955,40989 +53233,273,7,28571,57684 +53234,413,11,28171,100018 +53235,317,10,110909,90 +53236,105,7,26955,232777 +53237,317,10,266285,65879 +53238,327,7,814,14459 +53239,349,1,15653,1767042 +53240,317,10,20880,86715 +53241,269,9,209112,3964 +53242,53,2,28519,15734 +53243,3,5,37581,14960 +53244,234,1,193893,65734 +53245,373,7,69668,1425978 +53246,387,10,4191,1650 +53247,234,1,250503,1285880 +53248,203,1,51947,1649182 +53249,66,11,3989,1457666 +53250,317,10,134474,230008 +53251,327,7,37181,1532374 +53252,3,5,321303,137548 +53253,160,3,28,19567 +53254,327,7,69560,137123 +53255,34,8,7299,1433738 +53256,179,2,16083,79253 +53257,234,1,36129,550476 +53258,398,9,9946,936841 +53259,234,1,45326,82033 +53260,289,6,9514,1642558 +53261,148,9,220820,1190601 +53262,234,1,335970,66563 +53263,234,1,109424,25598 +53264,317,10,33224,82862 +53265,66,11,356752,1841586 +53266,3,5,9598,1313 +53267,234,1,269149,1318201 +53268,302,9,343173,1742970 +53269,387,10,22307,1150 +53270,196,7,98066,1759325 +53271,209,7,77246,1408706 +53272,204,9,58428,1394660 +53273,3,5,14429,48311 +53274,286,3,14138,1452254 +53275,52,10,387957,1235182 +53276,387,10,25507,96253 +53277,148,9,110525,8508 +53278,234,1,14357,129438 +53279,373,7,251227,1286574 +53280,132,2,11045,1406571 +53281,413,11,280690,85056 +53282,273,7,9779,2120 +53283,317,10,107250,266367 +53284,398,9,6171,1408182 +53285,387,10,12902,113897 +53286,234,1,137200,1106987 +53287,333,2,29136,1896771 +53288,204,9,300983,1439810 +53289,204,9,35,963557 +53290,387,10,26036,9858 +53291,204,9,27629,120450 +53292,5,10,70199,166912 +53293,143,7,31522,26357 +53294,234,1,244956,96801 +53295,317,10,322266,583932 +53296,387,10,68721,1108 +53297,317,10,87936,133865 +53298,75,5,17654,33302 +53299,360,3,146243,1178650 +53300,127,3,11618,1457926 +53301,52,10,127585,23447 +53302,301,5,5289,1409744 +53303,203,1,190955,1400509 +53304,302,9,168676,1543254 +53305,53,2,226140,129988 +53306,208,2,304372,95142 +53307,5,10,37247,959701 +53308,409,7,857,1741194 +53309,234,1,51759,2428 +53310,45,9,8204,1394740 +53311,105,7,110261,47103 +53312,181,7,43727,1555495 +53313,60,1,2721,1193379 +53314,262,6,922,15436 +53315,234,1,127864,95528 +53316,257,3,9882,1774560 +53317,360,3,302699,1367491 +53318,305,9,9472,1744412 +53319,40,1,3059,8820 +53320,397,7,1427,17086 +53321,333,2,46857,137617 +53322,253,6,375366,1740785 +53323,413,11,26954,81891 +53324,204,9,47914,8884 +53325,317,10,224778,1492116 +53326,75,5,82448,928005 +53327,413,11,127445,961177 +53328,317,10,17288,550948 +53329,317,10,14444,12085 +53330,52,10,53861,231296 +53331,317,10,57654,931952 +53332,155,3,23128,2171 +53333,3,5,141733,19952 +53334,387,10,764,7623 +53335,317,10,32082,31498 +53336,398,9,116711,1731716 +53337,148,9,41505,16494 +53338,113,9,209112,1661322 +53339,57,2,257088,1536949 +53340,250,11,149509,1444300 +53341,3,5,173153,20693 +53342,273,7,39779,30104 +53343,75,5,408616,132866 +53344,387,10,870,3317 +53345,360,3,157424,1334179 +53346,413,11,70090,1093442 +53347,72,11,46261,1425394 +53348,234,1,45441,58614 +53349,273,7,296225,45678 +53350,317,10,91571,36319 +53351,67,10,272693,1709322 +53352,53,2,11370,1437123 +53353,317,10,58664,12991 +53354,273,7,42725,32732 +53355,234,1,31342,56739 +53356,387,10,9312,57257 +53357,175,5,11610,45963 +53358,327,7,45562,999565 +53359,13,9,307020,145724 +53360,161,6,9946,1724279 +53361,3,5,52362,3356 +53362,250,11,33273,1585441 +53363,413,11,43205,47389 +53364,239,5,118,1388894 +53365,269,9,15092,10421 +53366,3,5,18711,7067 +53367,387,10,709,69678 +53368,234,1,135708,45421 +53369,368,7,9928,1554594 +53370,413,11,14069,67935 +53371,60,1,1578,8887 +53372,234,1,32708,109598 +53373,3,5,183412,900406 +53374,373,7,293262,1392211 +53375,234,1,43504,21305 +53376,234,1,9503,1869 +53377,182,8,373546,1416820 +53378,269,9,10549,29857 +53379,158,2,418437,1763649 +53380,286,3,52251,28620 +53381,269,9,63304,1680198 +53382,3,5,52736,7034 +53383,234,1,705,10601 +53384,413,11,29896,59395 +53385,3,5,79593,1209263 +53386,387,10,413421,1147472 +53387,175,5,84735,589974 +53388,127,3,61400,8361 +53389,53,2,14552,14311 +53390,317,10,72642,1000753 +53391,273,7,70074,1178962 +53392,269,9,400,5508 +53393,273,7,83430,54261 +53394,200,3,324670,1432615 +53395,217,3,51358,10523 +53396,373,7,949,1368864 +53397,234,1,120729,19304 +53398,415,3,5991,1572237 +53399,53,2,351211,2327 +53400,97,7,22076,1398178 +53401,182,8,20126,1826994 +53402,60,1,28,1625347 +53403,413,11,425591,1583652 +53404,387,10,17927,563120 +53405,387,10,12158,17840 +53406,176,3,329865,1590092 +53407,234,1,28063,37197 +53408,317,10,134480,144423 +53409,269,9,118984,1372124 +53410,317,10,95453,124391 +53411,12,10,12594,55949 +53412,273,7,33314,1205375 +53413,160,3,60599,1074163 +53414,60,1,30583,1641769 +53415,357,3,354859,1646507 +53416,287,3,28739,1407887 +53417,53,2,42188,1318478 +53418,317,10,130948,33717 +53419,234,1,10063,35582 +53420,74,5,755,1708344 +53421,394,7,245891,15332 +53422,317,10,30690,65401 +53423,269,9,246415,1039117 +53424,234,1,22317,57147 +53425,189,3,251227,1286587 +53426,234,1,36695,32564 +53427,175,5,47112,1536108 +53428,317,10,20106,61985 +53429,288,3,320910,1337026 +53430,40,1,42188,1319629 +53431,301,5,205864,1367561 +53432,204,9,19971,1491526 +53433,387,10,248639,86358 +53434,264,3,17421,19544 +53435,75,5,29318,1588462 +53436,234,1,29787,14999 +53437,302,9,82655,1718516 +53438,328,6,18843,1384381 +53439,67,10,15213,1462615 +53440,13,3,378441,1797483 +53441,413,11,245536,1130197 +53442,225,7,10733,1433719 +53443,273,7,15045,1807706 +53444,234,1,294047,109600 +53445,226,2,11788,1430074 +53446,85,10,286940,1529880 +53447,234,1,14868,77723 +53448,413,11,310133,1290981 +53449,317,10,28275,30692 +53450,226,2,61225,1300922 +53451,387,10,100814,1025671 +53452,269,9,91583,6584 +53453,286,3,49500,42119 +53454,204,9,34127,127200 +53455,105,7,58013,1209763 +53456,289,6,67130,148263 +53457,203,1,270383,1511526 +53458,234,1,58664,152315 +53459,127,3,10727,1584245 +53460,387,10,14012,2100 +53461,239,5,188927,1530723 +53462,75,5,243568,1583213 +53463,164,3,117550,1772963 +53464,196,7,22881,960074 +53465,387,10,43319,30294 +53466,234,1,35689,114596 +53467,269,9,340187,1579533 +53468,234,1,411802,34920 +53469,52,10,61581,556753 +53470,22,9,40466,1399040 +53471,387,10,9042,56785 +53472,234,1,75066,34580 +53473,148,9,183827,9063 +53474,3,5,177043,19102 +53475,180,7,43457,4315 +53476,208,2,9443,10645 +53477,162,6,29345,1159944 +53478,387,10,15592,66086 +53479,204,9,31397,1408465 +53480,64,6,354133,1496084 +53481,301,5,9746,1408354 +53482,3,5,228294,61919 +53483,413,11,24679,384 +53484,234,1,21379,82815 +53485,105,7,32080,15177 +53486,187,11,76163,1077381 +53487,169,3,244316,1398155 +53488,317,10,126227,573818 +53489,75,5,334074,1522768 +53490,75,5,10590,1425823 +53491,234,1,78571,3289 +53492,411,9,295964,18784 +53493,5,10,8204,8312 +53494,387,10,340684,1468855 +53495,182,8,2454,1425503 +53496,3,5,28293,97048 +53497,387,10,215646,1287512 +53498,239,5,1586,1611785 +53499,204,9,24810,1818104 +53500,387,10,8981,56476 +53501,52,10,23692,64796 +53502,314,2,13834,1460755 +53503,148,9,42512,12320 +53504,122,8,293167,1759764 +53505,5,10,12584,72959 +53506,273,7,105,37 +53507,317,10,94820,1003238 +53508,75,5,76341,1432918 +53509,148,9,3064,11083 +53510,301,5,7220,1535398 +53511,398,9,34459,1510762 +53512,317,10,400174,188722 +53513,160,3,42764,1406778 +53514,234,1,8985,1086268 +53515,387,10,122192,1075756 +53516,225,7,284564,1734425 +53517,75,5,46261,1402914 +53518,53,2,378441,1797456 +53519,234,1,161227,1143477 +53520,333,2,251227,1286565 +53521,317,10,168814,126714 +53522,234,1,122525,1031934 +53523,232,10,82767,125072 +53524,360,3,61341,1338237 +53525,413,11,49577,238621 +53526,234,1,80720,76381 +53527,317,10,29475,35689 +53528,234,1,104477,11523 +53529,387,10,41073,125398 +53530,239,5,365942,1440272 +53531,273,7,92635,20953 +53532,3,5,58166,21739 +53533,286,3,84479,1150106 +53534,187,11,378018,1643844 +53535,273,7,109451,11098 +53536,75,5,293625,1588199 +53537,413,11,64720,928336 +53538,333,2,267852,1622327 +53539,239,5,755,1647714 +53540,148,9,10671,1534172 +53541,269,9,8281,54329 +53542,74,5,227975,1775638 +53543,234,1,26752,587444 +53544,387,10,91690,5069 +53545,317,10,21379,1214731 +53546,373,7,9286,1394131 +53547,92,7,31542,1589506 +53548,234,1,39072,57055 +53549,190,7,41963,1546902 +53550,273,7,54690,1542377 +53551,64,6,1726,1453929 +53552,234,1,293970,222470 +53553,269,9,296524,60579 +53554,234,1,154211,1012088 +53555,317,10,244539,67360 +53556,413,11,10178,64118 +53557,245,3,34127,1759281 +53558,286,3,16066,15090 +53559,204,9,80125,1441745 +53560,234,1,106573,95723 +53561,148,9,32029,35499 +53562,87,7,226140,13163 +53563,333,2,1294,1519292 +53564,269,9,1058,12017 +53565,317,10,262958,15490 +53566,413,11,961,14412 +53567,277,3,47046,1601524 +53568,328,6,302828,1309895 +53569,204,9,152532,1287615 +53570,175,5,59962,1378716 +53571,105,7,141145,76267 +53572,317,10,277839,1077537 +53573,413,11,333367,53661 +53574,175,5,9428,1332423 +53575,169,3,59965,1043368 +53576,317,10,267188,126837 +53577,3,5,29082,1425137 +53578,360,3,95169,4165 +53579,413,11,10142,1264 +53580,37,3,214756,1457938 +53581,108,10,16186,80602 +53582,53,2,2731,1304 +53583,387,10,11854,35736 +53584,234,1,44800,72709 +53585,387,10,78461,584093 +53586,273,7,65599,1331621 +53587,75,5,333484,131198 +53588,198,6,10204,1613316 +53589,190,7,10204,1613301 +53590,5,10,149515,557979 +53591,387,10,186988,224520 +53592,357,3,12,8098 +53593,196,7,3057,1539810 +53594,317,10,408537,584195 +53595,105,7,28026,21266 +53596,277,3,8619,113048 +53597,415,3,238,14059 +53598,204,9,312174,1400608 +53599,179,2,333484,1560976 +53600,262,6,403867,1723506 +53601,74,5,296523,1780483 +53602,234,1,206563,468 +53603,234,1,189225,97083 +53604,268,7,99861,1458578 +53605,289,6,134360,153292 +53606,277,7,47536,13323 +53607,317,10,418772,1243 +53608,101,3,289720,23487 +53609,74,5,5924,1893883 +53610,3,5,362579,1199304 +53611,289,6,98566,1453931 +53612,234,1,79935,220275 +53613,328,6,10008,1348007 +53614,303,3,9902,180868 +53615,77,10,219335,1146055 +53616,234,1,72898,24882 +53617,122,8,9593,1550801 +53618,77,10,9776,2632 +53619,413,11,42418,23926 +53620,11,6,9352,116076 +53621,52,10,16214,1614009 +53622,53,2,75622,56417 +53623,413,11,9821,9154 +53624,3,5,9405,1633 +53625,12,10,99861,7624 +53626,67,10,269149,1462008 +53627,317,10,28366,74192 +53628,317,10,280495,63937 +53629,317,10,51548,145023 +53630,53,2,52021,1099544 +53631,289,6,72640,564040 +53632,203,1,277355,1486525 +53633,273,7,56596,70062 +53634,317,10,90086,52140 +53635,387,10,11915,24456 +53636,317,10,321779,96387 +53637,53,2,2107,21617 +53638,234,1,31411,122969 +53639,3,5,320011,33577 +53640,53,2,290825,1444286 +53641,394,7,924,15226 +53642,239,5,245168,1578871 +53643,102,3,6972,1401740 +53644,196,7,19995,1400906 +53645,3,5,16784,56976 +53646,234,1,44489,59940 +53647,273,7,4443,37302 +53648,317,10,327935,121422 +53649,289,6,11024,1461150 +53650,5,10,49876,73247 +53651,5,10,37462,108997 +53652,158,2,280092,1409784 +53653,34,8,149509,1431089 +53654,196,7,273404,1401288 +53655,28,9,1428,1606651 +53656,317,10,60285,12342 +53657,52,10,144471,1120798 +53658,204,9,207636,9062 +53659,204,9,335970,526180 +53660,203,1,116780,1731565 +53661,108,10,301334,1466661 +53662,317,10,10362,1133010 +53663,387,10,253235,28780 +53664,387,10,4307,309 +53665,333,2,118,1828172 +53666,5,10,199615,35113 +53667,314,2,284052,1633457 +53668,317,10,237796,24683 +53669,5,10,12450,59805 +53670,160,3,202214,1172198 +53671,234,1,46432,88800 +53672,269,9,37247,12017 +53673,203,1,146712,1772623 +53674,289,6,40470,149098 +53675,413,11,9948,60730 +53676,234,1,195763,225055 +53677,269,9,91607,14878 +53678,175,5,24624,1540852 +53679,3,5,6963,432 +53680,317,10,353686,127699 +53681,413,11,41733,14189 +53682,273,7,254869,14351 +53683,224,3,379019,1780144 +53684,204,9,12311,29984 +53685,234,1,42515,13620 +53686,277,3,9472,548429 +53687,147,1,3059,32427 +53688,333,2,42532,120162 +53689,333,2,43231,25806 +53690,234,1,61203,81675 +53691,317,10,78233,583399 +53692,317,10,24409,63772 +53693,373,7,84226,1418432 +53694,317,10,216363,587603 +53695,387,10,46572,18841 +53696,273,7,1877,19711 +53697,234,1,115276,88084 +53698,387,10,24963,103325 +53699,179,2,265208,77917 +53700,234,1,157305,1138632 +53701,413,11,9904,60219 +53702,60,1,182899,1633633 +53703,269,9,287483,1678408 +53704,273,7,44022,3249 +53705,387,10,11633,70102 +53706,143,7,17609,6157 +53707,204,9,74911,41710 +53708,203,1,21159,91812 +53709,234,1,51285,125952 +53710,387,10,26323,103412 +53711,387,10,10703,26760 +53712,97,7,425774,1708019 +53713,333,2,14886,77492 +53714,60,1,59231,1716151 +53715,262,6,76757,1483146 +53716,387,10,34193,348 +53717,291,6,18093,1407859 +53718,317,10,90395,14972 +53719,234,1,313922,74655 +53720,3,5,68822,45479 +53721,262,6,176,1817664 +53722,53,2,274060,8717 +53723,373,7,10724,1052 +53724,129,11,15653,1767023 +53725,53,2,14644,24761 +53726,53,2,356296,932540 +53727,3,5,253257,1135102 +53728,234,1,51284,113337 +53729,413,11,11137,19452 +53730,317,10,279332,36129 +53731,387,10,15616,1040095 +53732,160,3,74,15358 +53733,234,1,50934,16410 +53734,40,1,38027,1117840 +53735,413,11,208529,1891 +53736,181,7,60599,17992 +53737,97,7,638,9442 +53738,148,9,277355,1335138 +53739,87,7,245168,1544338 +53740,83,2,3597,1531899 +53741,387,10,55167,47061 +53742,204,9,266285,1312809 +53743,105,7,61341,549340 +53744,413,11,20968,1013136 +53745,289,6,9514,1642170 +53746,304,10,26252,39060 +53747,262,6,82990,1547205 +53748,234,1,225614,72496 +53749,198,6,293167,1558090 +53750,3,5,8988,8969 +53751,105,7,112973,28155 +53752,317,10,94525,46625 +53753,273,7,22894,21962 +53754,148,9,87514,1433949 +53755,262,6,311324,1621771 +53756,413,11,33345,67564 +53757,301,5,18,1407672 +53758,234,1,42456,213341 +53759,204,9,37710,1322555 +53760,148,9,9457,11822 +53761,273,7,53864,958941 +53762,3,5,1382,53897 +53763,5,10,49009,223608 +53764,207,3,966,1597882 +53765,394,7,284052,8159 +53766,82,3,263115,1821900 +53767,64,6,1271,1447543 +53768,317,10,62046,52115 +53769,262,6,332567,167789 +53770,234,1,205076,102439 +53771,413,11,378485,1205016 +53772,187,11,14979,1190769 +53773,196,7,9016,9430 +53774,3,5,33839,13270 +53775,160,3,103432,956222 +53776,333,2,122857,1304298 +53777,52,10,147829,1175673 +53778,234,1,323679,935279 +53779,234,1,86413,933247 +53780,232,10,5552,44072 +53781,269,9,59118,1325194 +53782,234,1,74666,19939 +53783,306,7,544,1545951 +53784,234,1,11837,70663 +53785,317,10,54660,65401 +53786,97,7,8464,1338134 +53787,143,7,275269,1640807 +53788,234,1,43833,71788 +53789,289,6,75,8023 +53790,387,10,76163,22814 +53791,333,2,2669,8939 +53792,286,3,84496,14843 +53793,413,11,2503,29405 +53794,269,9,21927,1416936 +53795,286,3,18082,937499 +53796,87,7,93856,1192700 +53797,234,1,120932,86004 +53798,328,6,44943,1393389 +53799,387,10,15734,70997 +53800,273,7,229638,30268 +53801,333,2,159138,1615235 +53802,373,7,49689,1342611 +53803,373,7,24750,1399141 +53804,234,1,186881,131955 +53805,317,10,345916,1480623 +53806,204,9,271404,1764789 +53807,34,8,2675,1546187 +53808,20,2,237584,1621362 +53809,111,7,29143,1851719 +53810,65,3,2662,1573710 +53811,269,9,62728,1443031 +53812,53,2,348689,1621111 +53813,203,1,48281,1519352 +53814,3,5,29113,103163 +53815,234,1,45752,204553 +53816,234,1,11838,20310 +53817,387,10,30127,123765 +53818,317,10,71393,128282 +53819,53,2,170689,1030406 +53820,64,6,9297,9434 +53821,234,1,338079,1269623 +53822,234,1,139692,553061 +53823,234,1,333884,25819 +53824,113,9,35284,2366 +53825,324,3,172972,548474 +53826,182,8,13336,1410601 +53827,317,10,27053,25162 +53828,273,7,49712,29056 +53829,108,10,175035,991652 +53830,269,9,279096,1386314 +53831,234,1,53617,148601 +53832,413,11,213681,22303 +53833,192,5,9664,1293367 +53834,273,7,12593,73275 +53835,87,7,11812,1471726 +53836,234,1,396535,939147 +53837,196,7,16996,9427 +53838,387,10,133788,1098027 +53839,317,10,24671,9198 +53840,5,10,9555,57954 +53841,25,2,287903,1569347 +53842,3,5,9613,307 +53843,53,2,42537,8630 +53844,269,9,13551,24960 +53845,387,10,107693,81749 +53846,160,3,15092,1414554 +53847,234,1,16016,66879 +53848,262,6,251,1445981 +53849,234,1,448449,239437 +53850,317,10,17303,81584 +53851,234,1,86497,1016054 +53852,403,10,206514,145872 +53853,234,1,80961,556839 +53854,413,11,329010,1287830 +53855,373,7,203819,1355538 +53856,3,5,27443,96252 +53857,234,1,58487,27221 +53858,53,2,428687,1731667 +53859,387,10,10311,2725 +53860,287,3,6171,1425900 +53861,53,2,96724,36591 +53862,317,10,140489,1195182 +53863,234,1,253250,122969 +53864,387,10,132122,1094532 +53865,160,3,11607,62596 +53866,413,11,37710,4528 +53867,317,10,30298,50961 +53868,3,5,2125,10616 +53869,234,1,245017,56470 +53870,160,3,22784,1412253 +53871,387,10,8869,56150 +53872,15,6,149509,1411839 +53873,196,7,7445,1407227 +53874,3,5,4613,38579 +53875,52,10,36751,116103 +53876,234,1,67102,237498 +53877,387,10,18447,32179 +53878,52,10,10020,958881 +53879,387,10,9717,58732 +53880,273,7,147773,1042699 +53881,234,1,140818,225814 +53882,110,1,9352,57406 +53883,234,1,46227,186728 +53884,125,2,954,1300663 +53885,208,2,60281,1364400 +53886,53,2,47851,13703 +53887,234,1,31835,11435 +53888,196,7,74,1360103 +53889,403,10,55437,222334 +53890,52,10,74645,109555 +53891,413,11,12696,55410 +53892,273,7,273,3878 +53893,234,1,17971,44481 +53894,189,3,286372,1378152 +53895,387,10,73462,20061 +53896,3,5,131194,11848 +53897,234,1,198317,1086649 +53898,262,6,21786,1167831 +53899,234,1,358076,167403 +53900,208,2,15019,143893 +53901,52,10,205587,74315 +53902,234,1,99283,42060 +53903,180,7,74581,1029786 +53904,413,11,10198,968327 +53905,25,2,318781,1622821 +53906,60,1,53230,1534107 +53907,204,9,204922,1138277 +53908,413,11,76465,107683 +53909,97,7,100110,1342655 +53910,273,7,26693,20326 +53911,387,10,73933,123708 +53912,3,5,38749,17765 +53913,53,2,24420,8222 +53914,77,10,16076,74699 +53915,273,7,20481,531 +53916,262,6,1271,113137 +53917,317,10,52366,145854 +53918,3,5,255343,1512767 +53919,52,10,76163,22814 +53920,234,1,141635,40863 +53921,243,3,11024,1413466 +53922,196,7,145135,110528 +53923,234,1,95552,1004949 +53924,333,2,168027,1460742 +53925,303,3,406431,1124626 +53926,413,11,9030,27226 +53927,398,9,19995,1336191 +53928,317,10,42225,24281 +53929,373,7,353686,1338151 +53930,269,9,187596,20824 +53931,52,10,194509,1263262 +53932,182,8,10389,1437889 +53933,3,5,436339,1112003 +53934,234,1,31473,108097 +53935,317,10,197057,124757 +53936,387,10,28894,20600 +53937,387,10,71701,131506 +53938,53,2,194509,9064 +53939,413,11,45935,69834 +53940,175,5,9475,1391583 +53941,234,1,112931,66150 +53942,234,1,94696,239485 +53943,317,10,136752,1208794 +53944,387,10,80592,1150489 +53945,87,7,82,1433743 +53946,234,1,84569,930987 +53947,394,7,2978,1341336 +53948,148,9,1481,42385 +53949,3,5,9902,31175 +53950,143,7,43157,8512 +53951,234,1,195269,97555 +53952,419,10,424661,1709312 +53953,108,10,290379,65536 +53954,328,6,273481,1568841 +53955,53,2,43022,1325121 +53956,387,10,32684,105017 +53957,204,9,41312,1349482 +53958,317,10,83456,1269249 +53959,234,1,104232,1040520 +53960,175,5,176,1817618 +53961,204,9,251,21070 +53962,3,5,106747,2294 +53963,53,2,65881,1294082 +53964,172,3,46261,1425399 +53965,52,10,76101,1082055 +53966,413,11,72460,7649 +53967,394,7,152736,1084757 +53968,187,11,44754,1527434 +53969,337,2,857,1662318 +53970,108,10,179818,1064941 +53971,289,6,98566,1459753 +53972,413,11,42709,20921 +53973,234,1,22182,88467 +53974,226,2,9882,15526 +53975,317,10,125736,96819 +53976,387,10,43526,117720 +53977,387,10,11077,7131 +53978,373,7,243940,1387195 +53979,203,1,11593,1183454 +53980,3,5,11540,22318 +53981,273,7,14510,19711 +53982,317,10,28115,12011 +53983,356,2,50725,1400085 +53984,75,5,193216,1284453 +53985,3,5,60994,1214 +53986,148,9,17258,17877 +53987,234,1,13777,75297 +53988,147,1,3059,90375 +53989,66,11,2288,1533060 +53990,72,11,62630,1423432 +53991,328,6,14138,81328 +53992,66,11,418437,1527934 +53993,192,5,257088,71127 +53994,3,5,55720,403 +53995,80,3,106049,979298 +53996,317,10,38625,1429336 +53997,149,6,49013,1609041 +53998,314,2,3597,1534222 +53999,66,11,13042,1435597 +54000,317,10,57701,226705 +54001,273,7,25330,37 +54002,317,10,83191,212908 +54003,219,11,2300,1552873 +54004,234,1,22779,64864 +54005,5,10,43860,59805 +54006,234,1,352372,1118348 +54007,273,7,965,1045 +54008,97,7,131737,1403800 +54009,317,10,62363,34630 +54010,234,1,26811,5629 +54011,234,1,33360,18565 +54012,286,3,170517,4083 +54013,53,2,2565,1586079 +54014,387,10,48627,16745 +54015,269,9,69266,21640 +54016,148,9,15045,33711 +54017,317,10,18826,32905 +54018,419,10,50674,35306 +54019,43,2,49521,1182910 +54020,234,1,104251,137495 +54021,317,10,68247,928465 +54022,3,5,110573,1307161 +54023,333,2,11216,105344 +54024,105,7,28510,1099076 +54025,333,2,107593,4128 +54026,234,1,117534,225094 +54027,3,5,73116,57699 +54028,317,10,52452,81219 +54029,180,7,43470,4315 +54030,301,5,35052,34194 +54031,3,5,15794,13972 +54032,387,10,285908,1177154 +54033,204,9,21801,61094 +54034,148,9,73194,8508 +54035,187,11,16436,73479 +54036,3,5,3104,30138 +54037,317,10,167935,1149641 +54038,226,2,103432,1831108 +54039,204,9,4111,9062 +54040,387,10,152532,1133294 +54041,387,10,246320,41029 +54042,413,11,31586,3032 +54043,273,7,418378,1175480 +54044,387,10,413417,1719071 +54045,273,7,44801,63964 +54046,387,10,52943,1007551 +54047,413,11,98355,1017367 +54048,165,9,2105,1418823 +54049,333,2,7454,1407661 +54050,160,3,11370,1581137 +54051,3,5,404567,32122 +54052,413,11,15143,23926 +54053,234,1,37301,165752 +54054,317,10,181876,53767 +54055,317,10,241927,1204188 +54056,234,1,176670,111416 +54057,196,7,755,1433719 +54058,234,1,84184,109745 +54059,317,10,332788,1446042 +54060,413,11,22881,10574 +54061,209,7,297762,1357599 +54062,148,9,21468,9587 +54063,113,9,9352,1328822 +54064,387,10,4538,38803 +54065,234,1,27501,94771 +54066,105,7,5991,2996 +54067,97,7,100110,1338833 +54068,209,7,5,1415642 +54069,234,1,80280,54526 +54070,204,9,297762,1334489 +54071,373,7,242224,1001712 +54072,317,10,28658,108794 +54073,52,10,39982,1070399 +54074,143,7,118957,1445964 +54075,234,1,64304,96546 +54076,234,1,373247,166754 +54077,234,1,11953,5026 +54078,207,3,857,1419114 +54079,5,10,85844,123385 +54080,166,9,293167,564056 +54081,187,11,70667,1448311 +54082,234,1,197624,102389 +54083,234,1,149793,29625 +54084,160,3,54858,1136760 +54085,208,2,302828,1506368 +54086,190,7,194,1551977 +54087,317,10,28682,100432 +54088,287,3,47342,138631 +54089,53,2,41963,541714 +54090,317,10,49852,23922 +54091,413,11,8916,56270 +54092,179,2,169881,49850 +54093,85,10,409447,14640 +54094,387,10,205584,1167472 +54095,180,7,197082,54179 +54096,394,7,218778,1031811 +54097,413,11,88042,13584 +54098,204,9,12171,962751 +54099,317,10,377290,1176 +54100,53,2,26768,38057 +54101,317,10,18633,4173 +54102,317,10,277190,1111686 +54103,219,11,218778,1548684 +54104,411,9,121674,1334489 +54105,289,6,10693,63646 +54106,387,10,118953,133433 +54107,203,1,4882,92004 +54108,317,10,293654,1151326 +54109,160,3,34223,592129 +54110,234,1,24556,90864 +54111,180,7,227975,1775630 +54112,13,11,41505,1302737 +54113,37,3,403429,1640640 +54114,387,10,18548,224612 +54115,413,11,12783,9001 +54116,387,10,79781,587970 +54117,349,1,35,1454249 +54118,3,5,59962,8523 +54119,105,7,2172,22561 +54120,234,1,20880,86715 +54121,413,11,33789,572364 +54122,200,3,25941,1555860 +54123,3,5,33336,1091585 +54124,105,7,42537,1192628 +54125,234,1,88288,21305 +54126,415,3,39308,12723 +54127,387,10,284096,237652 +54128,234,1,18279,87322 +54129,234,1,178385,56383 +54130,413,11,270774,1069648 +54131,60,1,48136,1187948 +54132,317,10,266285,1012 +54133,3,5,16938,12702 +54134,234,1,114242,12325 +54135,3,5,143946,552001 +54136,413,11,424488,1046115 +54137,3,5,140648,31181 +54138,287,3,198663,1425326 +54139,234,1,227200,1247742 +54140,328,6,82,1360109 +54141,273,7,154575,1400 +54142,387,10,31364,142630 +54143,373,7,83,13179 +54144,53,2,130717,1354029 +54145,286,3,83013,1305670 +54146,289,6,9904,1447297 +54147,376,10,211088,964698 +54148,373,7,59962,1377220 +54149,5,10,31555,108997 +54150,317,10,31397,63937 +54151,232,10,43470,1165681 +54152,273,7,327,636 +54153,3,5,403450,70237 +54154,3,5,418437,8750 +54155,3,5,10004,4020 +54156,108,10,118139,144300 +54157,3,5,2085,22818 +54158,262,6,188161,1453943 +54159,148,9,10330,5633 +54160,105,7,12121,4140 +54161,234,1,21242,133355 +54162,387,10,64948,72191 +54163,387,10,15267,80959 +54164,275,9,378236,1463917 +54165,402,11,95756,1006753 +54166,413,11,12807,73747 +54167,234,1,39311,89669 +54168,113,9,214081,1270039 +54169,360,3,11832,1723390 +54170,357,3,178809,1412588 +54171,148,9,303856,1645543 +54172,387,10,77915,13267 +54173,234,1,121793,27436 +54174,333,2,32868,1300339 +54175,203,1,209112,1394760 +54176,5,10,58007,1421964 +54177,234,1,43079,1464511 +54178,387,10,28561,96696 +54179,3,5,367006,1288504 +54180,53,2,123109,1017017 +54181,413,11,1294,32939 +54182,148,9,9555,75292 +54183,387,10,120672,1503 +54184,160,3,10145,19567 +54185,52,10,161227,87772 +54186,273,7,150117,23451 +54187,234,1,42355,127926 +54188,97,7,15092,1267055 +54189,317,10,14539,577420 +54190,328,6,17609,1378479 +54191,164,3,23823,1541746 +54192,204,9,45935,69841 +54193,413,11,11589,7754 +54194,234,1,9070,42111 +54195,41,3,351211,1652049 +54196,269,9,524,2366 +54197,387,10,76207,19084 +54198,287,3,343173,1102404 +54199,3,5,6023,47293 +54200,301,5,10739,1424696 +54201,413,11,18417,12970 +54202,238,7,266856,40813 +54203,234,1,60488,97015 +54204,415,3,37103,114562 +54205,413,11,300487,1380790 +54206,273,7,59297,554361 +54207,203,1,24150,1407697 +54208,234,1,458428,1820244 +54209,360,9,381518,1808365 +54210,204,9,10330,1319135 +54211,317,10,26688,62157 +54212,3,5,68184,959494 +54213,234,1,6163,48309 +54214,317,10,38021,1169376 +54215,250,11,413452,1621895 +54216,234,1,195516,1169036 +54217,203,1,194101,1402943 +54218,387,10,11618,35021 +54219,413,11,21214,937958 +54220,301,5,49009,61851 +54221,234,1,28677,56150 +54222,3,5,37368,11968 +54223,204,9,290365,1146810 +54224,105,7,258251,45900 +54225,413,11,9593,8752 +54226,387,10,887,3386 +54227,7,3,8467,1560964 +54228,413,11,167583,149350 +54229,160,3,122081,1719403 +54230,317,10,73420,2891 +54231,105,7,383538,1704307 +54232,234,1,10075,62872 +54233,234,1,3016,29571 +54234,234,1,268380,1317163 +54235,243,3,9358,1441322 +54236,413,11,18917,550575 +54237,317,10,16439,111216 +54238,3,5,190352,1055286 +54239,200,3,302026,1570598 +54240,3,5,375742,1168766 +54241,3,5,6341,1153 +54242,234,1,42825,82413 +54243,143,7,354287,1027506 +54244,132,2,1125,1424894 +54245,413,11,9071,56907 +54246,209,7,10865,1342663 +54247,387,10,18691,33829 +54248,340,2,93856,1857017 +54249,293,2,2924,1532706 +54250,298,5,21338,1351569 +54251,373,7,8906,73736 +54252,413,11,2107,3985 +54253,234,1,50916,140815 +54254,327,7,11886,137461 +54255,204,9,12113,23453 +54256,387,10,153163,33029 +54257,413,11,277710,1387269 +54258,234,1,29695,104668 +54259,5,10,82077,126873 +54260,52,10,26036,12303 +54261,387,10,5748,4591 +54262,286,3,22779,1860533 +54263,317,10,91380,93437 +54264,234,1,187993,69134 +54265,317,10,210079,1194666 +54266,269,9,10796,601 +54267,273,7,173153,55177 +54268,234,1,38027,2087 +54269,53,2,13792,75557 +54270,308,3,4547,1758624 +54271,53,2,383538,1309919 +54272,169,3,14,16498 +54273,105,7,315855,97579 +54274,221,3,435,1384395 +54275,98,3,8870,1724287 +54276,105,7,308269,1447893 +54277,317,10,303636,1412502 +54278,317,10,107096,192841 +54279,196,7,9946,14764 +54280,262,6,7220,1413509 +54281,388,9,12103,1625897 +54282,413,11,37992,7649 +54283,3,5,1599,9573 +54284,105,7,188102,38552 +54285,234,1,8948,18710 +54286,387,10,30876,40926 +54287,234,1,196027,76325 +54288,105,7,44363,70897 +54289,5,10,16373,80466 +54290,204,9,240832,1367797 +54291,3,5,62630,57585 +54292,317,10,278621,1415878 +54293,411,3,225728,60335 +54294,387,10,59738,1493201 +54295,317,10,374618,112092 +54296,317,10,105352,1591307 +54297,269,9,46286,986274 +54298,175,5,21159,91805 +54299,234,1,82430,95329 +54300,413,11,28384,10440 +54301,234,1,36140,97083 +54302,289,6,72105,1452991 +54303,143,7,93858,1712869 +54304,277,3,51947,1176171 +54305,413,11,2966,29083 +54306,203,1,240745,1494193 +54307,234,1,287233,23683 +54308,387,10,11593,6729 +54309,387,10,1859,3146 +54310,234,1,84805,176063 +54311,143,7,76170,930016 +54312,340,2,4147,1428226 +54313,269,9,38325,238622 +54314,226,2,329865,1646478 +54315,234,1,83435,625337 +54316,148,9,19912,61094 +54317,269,9,50780,5670 +54318,333,2,2687,26985 +54319,53,2,50725,36582 +54320,53,2,43525,4127 +54321,413,11,36325,1096493 +54322,273,7,448847,1797862 +54323,204,9,19995,33303 +54324,5,10,109441,1046471 +54325,64,6,19957,1109565 +54326,232,10,112083,137207 +54327,262,6,70981,1390357 +54328,52,10,30996,1735225 +54329,179,2,140607,1324461 +54330,198,6,222935,1726770 +54331,413,11,15199,1586734 +54332,234,1,573,2636 +54333,25,2,318781,17084 +54334,234,1,16455,80538 +54335,273,7,664,9989 +54336,204,9,55156,213443 +54337,3,5,257450,30052 +54338,381,9,435,1416151 +54339,317,10,18638,67632 +54340,234,1,1673,18574 +54341,234,1,48962,141594 +54342,234,1,45336,133006 +54343,333,2,28297,14498 +54344,234,1,306555,93723 +54345,166,9,339527,1408716 +54346,317,10,23169,224385 +54347,234,1,365339,133426 +54348,234,1,461805,1152 +54349,317,10,140894,119900 +54350,127,3,41857,1208034 +54351,387,10,202337,1404914 +54352,317,10,43978,120226 +54353,387,10,30175,73424 +54354,5,10,56599,96807 +54355,175,5,333484,1419105 +54356,203,1,205587,1418491 +54357,373,7,103215,1033143 +54358,269,9,86603,13304 +54359,141,7,263115,1634471 +54360,113,9,345922,1815602 +54361,234,1,13374,125544 +54362,333,2,107811,1460820 +54363,209,7,10294,1404546 +54364,76,2,257088,5334 +54365,234,1,169382,1433975 +54366,87,7,424488,49912 +54367,301,5,71859,1496428 +54368,317,10,13655,133325 +54369,53,2,20123,937602 +54370,234,1,35008,25854 +54371,234,1,33786,111360 +54372,204,9,43471,3358 +54373,234,1,5040,40615 +54374,5,10,9495,57702 +54375,37,3,116463,1574663 +54376,180,7,28304,1533682 +54377,187,11,76170,1399057 +54378,387,10,117913,223210 +54379,413,11,4365,7886 +54380,204,9,2012,20716 +54381,273,7,47745,4681 +54382,413,11,2577,20461 +54383,273,7,82519,10572 +54384,317,10,76349,1125575 +54385,234,1,322455,224884 +54386,317,10,51947,57624 +54387,97,7,26656,1454510 +54388,387,10,48210,150337 +54389,387,10,145162,1161959 +54390,175,5,10727,1418309 +54391,226,2,106020,1581819 +54392,132,2,32872,1442499 +54393,234,1,137093,12962 +54394,119,7,8869,73720 +54395,317,10,37609,1447205 +54396,387,10,121006,11436 +54397,209,7,293167,1551918 +54398,87,7,7326,52452 +54399,343,3,9462,19429 +54400,3,5,92257,70855 +54401,204,9,259975,1206546 +54402,387,10,334651,1453305 +54403,269,9,8916,1595460 +54404,269,9,263115,39923 +54405,169,3,97614,1419721 +54406,181,7,239566,1466245 +54407,234,1,37708,42640 +54408,273,7,2061,69017 +54409,327,7,15486,1027506 +54410,5,10,788,11706 +54411,234,1,127329,21904 +54412,269,9,174309,1193617 +54413,234,1,42298,118343 +54414,262,6,332567,1337418 +54415,234,1,31127,175160 +54416,413,11,8870,17886 +54417,234,1,17350,35959 +54418,234,1,271919,32096 +54419,395,3,15653,1479536 +54420,387,10,6977,1224 +54421,301,5,338,1332515 +54422,234,1,97762,932613 +54423,269,9,153,1784 +54424,317,10,19548,11187 +54425,3,5,47426,1122332 +54426,53,2,44119,130276 +54427,234,1,87060,27923 +54428,3,5,39311,2774 +54429,5,10,75142,227688 +54430,327,7,181454,1735505 +54431,190,7,258251,1348592 +54432,234,1,20301,834 +54433,387,10,58,1706 +54434,317,10,54690,150975 +54435,286,3,200117,33467 +54436,234,1,34078,109846 +54437,269,9,332567,9344 +54438,78,3,315837,1738113 +54439,234,1,9059,15521 +54440,234,1,11159,65452 +54441,209,7,205587,1341813 +54442,228,2,341174,1738097 +54443,333,2,10391,1812186 +54444,204,9,6977,1276817 +54445,3,5,1374,2287 +54446,387,10,76651,423541 +54447,269,9,150338,29279 +54448,415,3,376501,1414992 +54449,3,5,381032,1595634 +54450,387,10,10973,67686 +54451,204,9,206563,1426066 +54452,5,10,4476,37426 +54453,373,7,334,1378226 +54454,317,10,83802,39991 +54455,3,5,26941,57709 +54456,413,11,20432,1328382 +54457,3,5,11206,3148 +54458,234,1,383809,1295604 +54459,317,10,18111,88515 +54460,333,2,222935,1726776 +54461,317,10,45729,57777 +54462,160,3,9543,1074163 +54463,273,7,8870,5912 +54464,3,5,271404,1076356 +54465,175,5,14254,1378716 +54466,234,1,362765,1519326 +54467,357,3,75174,1472417 +54468,387,10,36335,38061 +54469,413,11,844,45818 +54470,360,9,188102,1644883 +54471,387,10,12767,73570 +54472,203,1,294272,1568900 +54473,234,1,21587,87673 +54474,301,5,2300,1377132 +54475,204,9,157,1823 +54476,204,9,104744,552639 +54477,53,2,125520,9027 +54478,234,1,32635,109356 +54479,302,9,276906,1331182 +54480,3,5,9066,4614 +54481,99,3,36785,116208 +54482,314,2,40466,1760125 +54483,289,6,291270,1448073 +54484,317,10,238307,933230 +54485,413,11,128437,29636 +54486,317,10,99545,231252 +54487,388,9,544,1780204 +54488,127,3,2486,113194 +54489,105,7,243935,21276 +54490,234,1,85883,120565 +54491,77,10,15189,57173 +54492,165,9,4147,1553613 +54493,413,11,174350,1168883 +54494,413,11,36236,4670 +54495,75,5,257088,1403478 +54496,234,1,110115,1048402 +54497,53,2,50247,1453075 +54498,419,10,29136,25736 +54499,234,1,89008,173667 +54500,317,10,41054,15189 +54501,317,10,72614,1119030 +54502,415,3,35253,114360 +54503,387,10,48202,52140 +54504,225,7,31947,1397263 +54505,273,7,50725,558105 +54506,317,10,14683,1180949 +54507,204,9,52661,22088 +54508,3,5,146521,1772143 +54509,273,7,256347,15221 +54510,52,10,371942,72191 +54511,234,1,35001,26959 +54512,289,6,294254,1344908 +54513,3,5,47426,1418 +54514,234,1,29568,133090 +54515,190,7,98066,1361609 +54516,413,11,76411,25633 +54517,413,11,190876,442985 +54518,234,1,303542,55916 +54519,234,1,347630,1484888 +54520,412,9,9016,1461410 +54521,143,7,140607,1389133 +54522,387,10,350779,1489231 +54523,234,1,270851,1321924 +54524,291,6,10590,91896 +54525,277,3,97614,1396796 +54526,53,2,43327,26174 +54527,419,10,50674,505007 +54528,415,3,29239,100762 +54529,74,5,159667,1849522 +54530,15,6,10929,555978 +54531,113,9,102382,548849 +54532,209,7,315837,1534197 +54533,5,10,86472,1763581 +54534,148,9,10396,906 +54535,289,6,9078,63646 +54536,204,9,283995,1271735 +54537,387,10,299715,1379185 +54538,268,7,31911,1549587 +54539,234,1,185180,1042166 +54540,20,2,188826,1583209 +54541,317,10,277558,1301271 +54542,317,10,27989,66496 +54543,234,1,367412,136495 +54544,203,1,190955,1372097 +54545,204,9,149465,1680198 +54546,273,7,42307,1316852 +54547,328,6,198663,1425329 +54548,387,10,77079,931527 +54549,387,10,63899,932883 +54550,148,9,10491,10124 +54551,53,2,18998,1287814 +54552,413,11,3580,384 +54553,413,11,116979,67699 +54554,268,7,169881,1519295 +54555,413,11,39130,22599 +54556,301,5,254007,1448771 +54557,75,5,11351,1597181 +54558,148,9,72545,65711 +54559,234,1,312100,1376728 +54560,387,10,11248,68775 +54561,234,1,362045,42804 +54562,413,11,384682,961610 +54563,317,10,136146,1486492 +54564,413,11,48205,3838 +54565,209,7,33586,1814964 +54566,148,9,338189,1559678 +54567,234,1,95134,108106 +54568,204,9,6948,1326398 +54569,286,3,308529,1756363 +54570,234,1,89720,1309070 +54571,413,11,43976,120226 +54572,360,3,76757,1334458 +54573,273,7,65211,30681 +54574,3,5,93891,1166387 +54575,208,2,242224,1428869 +54576,234,1,148031,544700 +54577,158,2,124470,1397852 +54578,269,9,47143,1098178 +54579,3,5,78522,1114201 +54580,387,10,47003,7299 +54581,273,7,41599,39054 +54582,387,10,92968,995511 +54583,300,3,10803,1498415 +54584,287,3,145135,1289047 +54585,196,7,82,1552088 +54586,175,5,2567,1386920 +54587,143,7,455661,1641138 +54588,155,3,167073,4483 +54589,314,2,11618,1412188 +54590,411,9,294254,41592 +54591,373,7,329865,1197112 +54592,234,1,43281,129433 +54593,301,5,5,56791 +54594,148,9,201,2529 +54595,234,1,72917,567561 +54596,148,9,23223,1280434 +54597,413,11,74666,1316515 +54598,182,8,33613,32721 +54599,317,10,120942,35784 +54600,3,5,436343,1769381 +54601,317,10,133521,1120447 +54602,197,5,435,1762793 +54603,413,11,21468,8505 +54604,3,5,43833,10537 +54605,317,10,235208,67168 +54606,317,10,107445,1041611 +54607,387,10,17831,293939 +54608,105,7,303636,1831212 +54609,273,7,131966,1905230 +54610,413,11,26941,10419 +54611,387,10,77822,137992 +54612,317,10,4592,68308 +54613,289,6,98566,1459747 +54614,269,9,2830,28636 +54615,175,5,84030,1579655 +54616,234,1,33472,29627 +54617,317,10,23957,16174 +54618,52,10,202941,1185226 +54619,317,10,34013,7288 +54620,5,10,89330,992856 +54621,413,11,41213,1777177 +54622,287,3,2662,988851 +54623,234,1,151086,1071403 +54624,413,11,11475,54766 +54625,262,6,137145,1542305 +54626,53,2,10320,35514 +54627,234,1,92950,125690 +54628,234,1,51763,73496 +54629,317,10,44001,12493 +54630,286,3,339547,1465523 +54631,53,2,227975,1775626 +54632,394,7,312221,1463387 +54633,411,9,283995,66491 +54634,403,10,49013,7879 +54635,387,10,202241,16863 +54636,209,7,4248,1305 +54637,234,1,191476,20660 +54638,383,3,273481,1413500 +54639,324,3,103073,1032650 +54640,75,5,99861,1428917 +54641,387,10,791,11808 +54642,12,10,312221,16483 +54643,269,9,290764,7496 +54644,387,10,3405,31894 +54645,413,11,424600,931336 +54646,213,10,241374,42063 +54647,413,11,289183,1101420 +54648,226,2,69668,1425969 +54649,52,10,241742,146005 +54650,317,10,195544,1305095 +54651,175,5,266856,1427557 +54652,5,10,94176,33027 +54653,189,3,12113,1405420 +54654,52,10,40957,183285 +54655,53,2,118737,1309389 +54656,204,9,31324,9062 +54657,203,1,1125,1355532 +54658,3,5,69605,13809 +54659,83,2,2300,1404305 +54660,234,1,75001,235259 +54661,234,1,53399,148085 +54662,85,10,41213,70071 +54663,77,10,29694,104657 +54664,317,10,146216,89597 +54665,333,2,277713,1569346 +54666,398,9,10320,1327524 +54667,74,5,17911,1192147 +54668,234,1,242332,120529 +54669,317,10,108535,122016 +54670,77,10,9815,58988 +54671,317,10,14555,77006 +54672,234,1,4279,25950 +54673,234,1,25983,101542 +54674,234,1,111744,122449 +54675,83,2,10665,1329112 +54676,160,3,37534,1339959 +54677,67,10,24554,91768 +54678,175,5,28452,1380142 +54679,105,7,100270,96694 +54680,413,11,72733,261635 +54681,143,7,99,983 +54682,394,7,76170,1416153 +54683,333,2,125736,4128 +54684,387,10,11980,28902 +54685,317,10,85429,257213 +54686,413,11,93863,4418 +54687,387,10,28710,66916 +54688,3,5,129553,14569 +54689,234,1,263065,37653 +54690,143,7,22803,1334485 +54691,3,5,22051,110261 +54692,317,10,248933,16794 +54693,314,2,71668,1827272 +54694,269,9,11370,10936 +54695,286,3,57680,38697 +54696,387,10,335498,33029 +54697,286,3,56599,1106077 +54698,53,2,11077,1147204 +54699,61,7,2105,1724868 +54700,325,5,225728,75077 +54701,204,9,42231,1359434 +54702,234,1,93863,15189 +54703,273,7,87428,2593 +54704,413,11,366045,1506787 +54705,198,6,206647,1338241 +54706,169,3,277355,1495868 +54707,148,9,73348,8243 +54708,169,3,7445,589954 +54709,169,3,9457,1421720 +54710,5,10,82448,927982 +54711,105,7,5559,2593 +54712,148,9,26390,1333892 +54713,148,9,13162,60457 +54714,234,1,8985,588808 +54715,209,7,152736,1409892 +54716,289,6,251,1453286 +54717,158,2,222935,1726764 +54718,183,5,954,91123 +54719,3,5,245706,131037 +54720,269,9,378236,928419 +54721,53,2,22076,1522041 +54722,234,1,101908,1016305 +54723,317,10,106135,54591 +54724,387,10,28482,100807 +54725,234,1,120528,1072285 +54726,234,1,9289,9894 +54727,413,11,22554,88916 +54728,317,10,172828,1155518 +54729,204,9,29101,1516882 +54730,234,1,338,4780 +54731,413,11,43457,2761 +54732,317,10,84337,32134 +54733,66,11,163791,1601465 +54734,204,9,10724,1099273 +54735,87,7,272693,1591748 +54736,148,9,50350,578713 +54737,179,2,13493,1462855 +54738,166,9,10921,1402106 +54739,76,2,9819,32490 +54740,413,11,20017,2309 +54741,187,11,10476,1399631 +54742,187,11,59197,1403325 +54743,327,7,15653,1409271 +54744,53,2,18317,1312285 +54745,234,1,42599,47517 +54746,234,1,38987,38527 +54747,200,3,1271,1394753 +54748,3,5,31561,12242 +54749,97,7,315664,1398918 +54750,413,11,128311,30058 +54751,234,1,337104,1082434 +54752,64,6,364088,1748537 +54753,413,11,12,12914 +54754,204,9,296524,1370959 +54755,234,1,245692,67717 +54756,239,5,4887,1603673 +54757,234,1,91259,140086 +54758,387,10,83229,257772 +54759,269,9,341077,1554133 +54760,349,1,19594,1463252 +54761,148,9,23196,1104955 +54762,204,9,130717,1354028 +54763,234,1,284117,1347099 +54764,204,9,96888,1008987 +54765,317,10,50247,95501 +54766,5,10,14510,67054 +54767,234,1,32790,145210 +54768,3,5,11137,59443 +54769,387,10,21135,1885292 +54770,413,11,23599,66756 +54771,415,3,11202,559910 +54772,63,7,129,1904693 +54773,188,8,10727,1584250 +54774,204,9,27259,67203 +54775,204,9,49524,963843 +54776,209,7,16996,1531914 +54777,339,2,33592,102343 +54778,105,7,20132,85708 +54779,262,6,245692,1512783 +54780,387,10,94248,1267136 +54781,52,10,62761,1267325 +54782,53,2,15143,7719 +54783,413,11,39056,1580506 +54784,387,10,175035,8623 +54785,3,5,379873,67169 +54786,234,1,182127,92831 +54787,3,5,9953,5506 +54788,187,7,9819,15433 +54789,413,11,212530,1196910 +54790,234,1,104556,82491 +54791,273,7,6951,50520 +54792,234,1,215061,1065698 +54793,273,7,36129,1587508 +54794,3,5,6187,50539 +54795,333,2,16436,71292 +54796,289,6,72105,1455521 +54797,60,1,40807,1669856 +54798,59,3,74879,1001767 +54799,143,7,102,1029 +54800,234,1,26899,42952 +54801,3,5,12422,38196 +54802,333,2,38027,1178594 +54803,317,10,98094,1287642 +54804,104,7,11024,1561882 +54805,317,10,300487,1380783 +54806,403,10,43594,126544 +54807,317,10,13794,75589 +54808,273,7,58790,1076542 +54809,53,2,126832,1463145 +54810,234,1,19898,54559 +54811,317,10,130925,1092247 +54812,75,5,37936,18374 +54813,413,11,267579,50925 +54814,148,9,32044,1562192 +54815,333,2,742,11239 +54816,273,7,376660,72268 +54817,75,5,435,1393365 +54818,317,10,39123,115936 +54819,203,1,44115,1394729 +54820,304,10,43522,119532 +54821,234,1,41505,80924 +54822,208,2,107073,1481507 +54823,333,2,155597,1586001 +54824,204,9,336004,1423830 +54825,179,2,141,1547350 +54826,187,11,70981,1352966 +54827,333,2,17144,1436533 +54828,387,10,1574,66777 +54829,317,10,47099,1144627 +54830,209,7,294254,12945 +54831,105,7,239845,1311703 +54832,306,7,415633,1678288 +54833,387,10,11658,1296335 +54834,74,5,263115,1821906 +54835,175,5,28071,1698983 +54836,127,3,227975,1503691 +54837,273,7,21371,1102573 +54838,273,7,46403,37241 +54839,175,5,266433,1415902 +54840,234,1,115972,29662 +54841,204,9,43316,14492 +54842,190,7,10733,1341414 +54843,269,9,7863,1403109 +54844,269,9,180305,4197 +54845,269,9,332283,12039 +54846,148,9,11171,1190448 +54847,3,5,25890,11371 +54848,234,1,64202,186367 +54849,5,10,2742,6471 +54850,273,7,5165,39161 +54851,234,1,18741,119437 +54852,291,6,445993,1770511 +54853,387,10,93313,4297 +54854,72,11,375366,1740802 +54855,52,10,45431,92559 +54856,273,7,51104,21011 +54857,200,3,10320,1404313 +54858,200,3,44943,1398101 +54859,105,7,94727,1840043 +54860,269,9,307081,12131 +54861,234,1,134372,40863 +54862,387,10,30996,1371269 +54863,10,3,5393,43108 +54864,287,3,10925,102343 +54865,204,9,43172,3488 +54866,234,1,260947,57777 +54867,158,2,56937,1412153 +54868,234,1,243568,17278 +54869,317,10,22023,7765 +54870,333,2,19995,1457305 +54871,148,9,257088,1207542 +54872,20,2,274857,1327448 +54873,317,10,426265,1709468 +54874,317,10,45800,148516 +54875,180,7,48116,20700 +54876,53,2,88005,1183915 +54877,387,10,11545,887 +54878,143,7,287903,1377293 +54879,277,3,228647,27969 +54880,234,1,26180,58838 +54881,413,11,3053,31059 +54882,317,10,295748,74376 +54883,208,2,128270,1328146 +54884,3,5,949,11099 +54885,234,1,256122,1300888 +54886,333,2,11351,1265230 +54887,317,10,31863,17880 +54888,394,7,132601,1344834 +54889,148,9,39578,41831 +54890,52,10,88075,138467 +54891,269,9,12584,2657 +54892,373,7,9820,74976 +54893,273,7,53714,4681 +54894,328,6,283445,1386918 +54895,317,10,24086,14692 +54896,317,10,24874,92780 +54897,269,9,39415,1120715 +54898,3,5,273868,51431 +54899,317,10,404459,1665250 +54900,3,5,156627,1486953 +54901,298,5,76341,1494209 +54902,234,1,34806,113225 +54903,273,7,977,9079 +54904,387,10,6145,29378 +54905,204,9,8619,9821 +54906,53,2,14510,1138069 +54907,273,7,111398,125001 +54908,387,10,92341,19399 +54909,289,6,177714,1160235 +54910,262,6,369885,1345600 +54911,387,10,28425,25168 +54912,155,3,13929,57673 +54913,403,10,382591,239574 +54914,373,7,15613,1394130 +54915,3,5,16090,14726 +54916,3,5,11235,8969 +54917,208,2,37686,23787 +54918,228,2,346672,1825673 +54919,52,10,134355,131721 +54920,413,11,9289,10151 +54921,273,7,40804,14807 +54922,234,1,9843,59848 +54923,317,10,68004,74025 +54924,273,7,214910,929598 +54925,403,10,57005,1760844 +54926,154,3,2898,1378368 +54927,226,2,180576,957264 +54928,387,10,82703,186402 +54929,105,7,257302,1308455 +54930,269,9,58372,1124531 +54931,234,1,155426,1519411 +54932,135,3,3597,1790549 +54933,234,1,225503,1046101 +54934,175,5,311291,1556732 +54935,413,11,21671,1105324 +54936,234,1,108345,76381 +54937,5,10,49106,1118733 +54938,317,10,142085,1199146 +54939,317,10,52485,941573 +54940,413,11,3172,5166 +54941,394,7,259997,1302523 +54942,269,9,59981,15780 +54943,190,7,693,1739884 +54944,413,11,303867,109314 +54945,289,6,12593,150768 +54946,75,5,206647,937946 +54947,12,10,1726,18876 +54948,105,7,24094,1313057 +54949,289,6,9514,1642597 +54950,226,2,2323,1416054 +54951,67,10,11084,68184 +54952,113,9,283995,1815571 +54953,3,5,34944,8713 +54954,149,6,4978,142587 +54955,143,7,364088,1748535 +54956,317,10,13836,18189 +54957,76,2,219466,1634957 +54958,317,10,172548,1155145 +54959,234,1,82865,11806 +54960,175,5,241258,1059590 +54961,333,2,43195,25806 +54962,234,1,39219,50567 +54963,204,9,132363,111457 +54964,97,7,9532,548445 +54965,234,1,44502,124238 +54966,314,2,1647,1449149 +54967,75,5,17771,1602316 +54968,20,2,13162,551523 +54969,108,10,31372,108015 +54970,234,1,132328,116771 +54971,160,3,218778,956198 +54972,204,9,43157,29637 +54973,387,10,41608,18834 +54974,269,9,358982,1509634 +54975,3,5,257454,135089 +54976,387,10,11972,39058 +54977,286,3,12135,236909 +54978,234,1,98048,1150 +54979,182,8,277713,1609170 +54980,387,10,4478,21371 +54981,317,10,15022,1303216 +54982,204,9,6687,1323112 +54983,54,10,109001,928243 +54984,317,10,13507,1037397 +54985,229,6,297762,1713066 +54986,143,7,106747,1401135 +54987,273,7,57866,998190 +54988,317,10,433244,1422664 +54989,317,10,242097,29705 +54990,317,10,333667,19970 +54991,387,10,67177,24658 +54992,244,3,15199,1641977 +54993,269,9,173847,996050 +54994,413,11,246133,569737 +54995,67,10,8247,1548533 +54996,52,10,48836,133281 +54997,357,3,19995,1483225 +54998,394,7,76203,1393444 +54999,234,1,250066,232858 +55000,317,10,60420,132963 +55001,401,6,82703,1453498 +55002,148,9,44502,1646879 +55003,234,1,236737,27449 +55004,387,10,26293,95036 +55005,333,2,126090,1599797 +55006,148,9,38157,61158 +55007,317,10,246127,1281681 +55008,317,10,241639,73508 +55009,113,9,263115,1340093 +55010,3,5,62330,78387 +55011,234,1,354544,84074 +55012,273,7,63498,563827 +55013,53,2,33839,10153 +55014,141,7,31773,34229 +55015,209,7,9428,1427381 +55016,196,7,613,8807 +55017,113,9,274479,1018480 +55018,3,5,43095,7461 +55019,317,10,410634,1685975 +55020,327,7,10909,1424167 +55021,234,1,326045,939452 +55022,317,10,169726,73257 +55023,317,10,242131,19019 +55024,273,7,511,1400 +55025,3,5,87894,29970 +55026,387,10,196065,1382203 +55027,413,11,67377,10185 +55028,203,1,286873,1355974 +55029,226,2,42487,1362582 +55030,303,3,13849,1413942 +55031,286,3,109466,63939 +55032,143,7,10921,3687 +55033,273,7,9325,57337 +55034,204,9,16214,30106 +55035,66,11,11216,1156007 +55036,387,10,297745,129059 +55037,317,10,26331,7301 +55038,413,11,10724,3643 +55039,196,7,53210,149379 +55040,234,1,137726,43553 +55041,333,2,80389,1044220 +55042,317,10,24126,91027 +55043,303,3,10066,1412253 +55044,273,7,13852,75903 +55045,317,10,24411,1214665 +55046,373,7,294652,1722226 +55047,327,7,105,1398946 +55048,196,7,17622,1431024 +55049,53,2,356758,1501818 +55050,234,1,50838,571473 +55051,234,1,376570,551463 +55052,413,11,8869,1338380 +55053,349,1,15653,1767043 +55054,413,11,296523,1324391 +55055,304,10,20132,85705 +55056,250,11,245700,1434871 +55057,273,7,1690,19659 +55058,165,9,435,1574632 +55059,387,10,53857,556501 +55060,234,1,59040,89193 +55061,273,7,244786,1419631 +55062,273,7,18826,60068 +55063,52,10,46421,49208 +55064,204,9,178341,32999 +55065,196,7,17771,1399918 +55066,196,7,55534,1421273 +55067,413,11,261249,10186 +55068,234,1,169069,89388 +55069,67,10,10733,943318 +55070,234,1,50166,24530 +55071,273,7,122,117 +55072,158,2,210910,1350853 +55073,13,3,41213,1777266 +55074,239,5,381015,1828334 +55075,262,6,9042,1409236 +55076,387,10,25807,120729 +55077,234,1,12902,96337 +55078,413,11,117999,853 +55079,75,5,28090,1141804 +55080,75,5,76163,67238 +55081,317,10,61341,116272 +55082,53,2,112456,1816447 +55083,317,10,29290,63669 +55084,5,10,34723,72225 +55085,53,2,39907,1649574 +55086,5,10,48775,38233 +55087,148,9,966,14524 +55088,269,9,25388,14005 +55089,113,9,43875,3255 +55090,53,2,199647,1179842 +55091,204,9,140607,11225 +55092,413,11,44754,1314588 +55093,203,1,81522,1384107 +55094,127,3,12311,1214919 +55095,365,6,142402,1116502 +55096,105,7,163706,25321 +55097,234,1,128437,29317 +55098,234,1,189,2293 +55099,196,7,1375,16656 +55100,208,2,167810,96128 +55101,87,7,13185,45056 +55102,219,11,332168,1765674 +55103,317,10,25988,122348 +55104,234,1,21554,12015 +55105,273,7,35623,137188 +55106,52,10,176,2128 +55107,143,7,511,7104 +55108,387,10,408381,1369397 +55109,158,2,70981,1390375 +55110,273,7,14976,965129 +55111,160,3,43912,161824 +55112,413,11,253235,75626 +55113,3,5,10440,15194 +55114,160,3,2675,9624 +55115,317,10,61473,44811 +55116,234,1,330333,71378 +55117,403,10,168994,72453 +55118,234,1,49843,142936 +55119,5,10,119364,1320185 +55120,328,6,10096,108116 +55121,127,3,262841,1809715 +55122,387,10,1986,20431 +55123,269,9,27259,1094429 +55124,234,1,49954,143080 +55125,269,9,62768,64667 +55126,204,9,118889,29637 +55127,148,9,47412,138898 +55128,3,5,66178,45738 +55129,373,7,3682,1378828 +55130,387,10,82178,1091264 +55131,196,7,10070,8165 +55132,234,1,3164,3428 +55133,210,9,284052,1785945 +55134,277,3,127372,1431509 +55135,77,10,7549,52911 +55136,234,1,84336,76998 +55137,317,10,56816,225014 +55138,87,7,54093,1286008 +55139,317,10,90395,148862 +55140,387,10,42170,1174852 +55141,32,8,9297,1462707 +55142,317,10,41979,127401 +55143,85,10,193756,1283039 +55144,234,1,185987,20025 +55145,273,7,864,947 +55146,314,2,68387,1182909 +55147,273,7,11103,19155 +55148,413,11,185156,1862114 +55149,387,10,43880,1080345 +55150,208,2,17332,406204 +55151,3,5,16281,15056 +55152,387,10,333884,25819 +55153,273,7,11837,70667 +55154,317,10,303982,592438 +55155,317,10,34082,131408 +55156,209,7,19042,1536029 +55157,234,1,14444,86439 +55158,162,6,75564,42029 +55159,398,9,210079,1337979 +55160,5,10,24442,91619 +55161,387,10,43868,49064 +55162,269,9,24918,37780 +55163,40,1,395992,1127893 +55164,413,11,12247,71878 +55165,413,11,45800,14865 +55166,204,9,33472,2657 +55167,401,6,177572,1112515 +55168,394,7,9352,21079 +55169,419,10,33570,110922 +55170,317,10,107250,262707 +55171,269,9,445,6031 +55172,37,3,81003,1447556 +55173,327,7,134480,8722 +55174,273,7,59197,84350 +55175,196,7,1586,83085 +55176,5,10,318224,59978 +55177,273,7,10929,26981 +55178,413,11,10096,61484 +55179,293,2,7220,1707110 +55180,52,10,145154,1122368 +55181,236,8,10320,1619998 +55182,204,9,216363,1083277 +55183,207,3,13483,1402084 +55184,317,10,403119,100734 +55185,387,10,131343,1093244 +55186,66,11,41298,1637913 +55187,333,2,2309,23774 +55188,273,7,86703,128763 +55189,234,1,15143,26502 +55190,262,6,395992,1408383 +55191,413,11,265208,36619 +55192,234,1,297342,1120003 +55193,394,7,10320,117867 +55194,53,2,26889,1400197 +55195,413,11,66022,12721 +55196,413,11,17238,476 +55197,317,10,44436,130858 +55198,269,9,4380,36808 +55199,198,6,181533,1869386 +55200,53,2,9905,29694 +55201,413,11,781,11603 +55202,273,7,2169,18400 +55203,187,11,76170,1384367 +55204,203,1,21801,1199755 +55205,333,2,2274,23493 +55206,360,9,345918,1870217 +55207,204,9,9461,1206749 +55208,158,2,188927,1580832 +55209,277,3,22602,224384 +55210,148,9,214,1317670 +55211,20,2,297702,1636855 +55212,204,9,44129,7717 +55213,234,1,86970,52968 +55214,234,1,201085,10828 +55215,333,2,19901,1418799 +55216,3,5,49712,40052 +55217,196,7,9543,1415617 +55218,234,1,13092,74159 +55219,373,7,5915,1327030 +55220,234,1,16077,4575 +55221,148,9,150338,118291 +55222,273,7,21968,1239860 +55223,196,7,279690,1610196 +55224,373,7,146233,1341858 +55225,398,9,126516,1529730 +55226,234,1,378236,89112 +55227,269,9,52959,874 +55228,304,10,21570,150526 +55229,3,5,78734,98501 +55230,75,5,210653,1095196 +55231,148,9,44718,1560275 +55232,273,7,51036,3393 +55233,273,7,9812,66260 +55234,317,10,30921,1285390 +55235,249,7,9846,1303184 +55236,234,1,43119,102429 +55237,273,7,10436,7182 +55238,317,10,286545,1352651 +55239,415,3,21786,1041546 +55240,415,3,186869,74783 +55241,250,11,418437,1377137 +55242,328,6,59965,1389593 +55243,3,5,46830,50240 +55244,148,9,80125,1441746 +55245,165,9,238589,1345259 +55246,3,5,19403,1762 +55247,234,1,142115,1038004 +55248,387,10,92381,1023487 +55249,387,10,16234,34934 +55250,328,6,72431,1398930 +55251,97,7,16436,16887 +55252,188,8,11618,1684382 +55253,394,7,11377,9349 +55254,301,5,378441,1797421 +55255,277,3,598,1531279 +55256,398,9,329865,1482882 +55257,234,1,132422,944544 +55258,127,3,59118,1883789 +55259,105,7,45988,929326 +55260,387,10,35032,26159 +55261,148,9,248933,22698 +55262,52,10,84337,120533 +55263,387,10,84184,80591 +55264,413,11,25499,593024 +55265,387,10,2061,21183 +55266,273,7,28712,101711 +55267,219,11,29224,1092637 +55268,273,7,9059,1999 +55269,234,1,41211,8392 +55270,3,5,10257,64430 +55271,234,1,15239,78023 +55272,234,1,229702,1215026 +55273,328,6,163,1410578 +55274,413,11,20919,62342 +55275,317,10,58878,228542 +55276,234,1,155325,6414 +55277,64,6,435,6063 +55278,413,11,13567,1313090 +55279,289,6,345775,1621090 +55280,333,2,44545,31206 +55281,234,1,191476,1444770 +55282,204,9,38006,30175 +55283,226,2,315837,1442097 +55284,269,9,296523,42634 +55285,333,2,7551,1378068 +55286,13,3,1267,1447503 +55287,75,5,51947,1378504 +55288,204,9,11639,15877 +55289,53,2,90395,960153 +55290,269,9,3050,14341 +55291,234,1,46326,25161 +55292,387,10,378570,1535494 +55293,60,1,85350,1001361 +55294,373,7,28090,91087 +55295,155,3,655,57985 +55296,387,10,363757,225139 +55297,210,9,121674,1624415 +55298,105,7,205584,7229 +55299,234,1,50647,22214 +55300,234,1,68387,139651 +55301,143,7,26390,1407197 +55302,204,9,95504,29637 +55303,198,6,257088,1549438 +55304,148,9,245692,1189761 +55305,3,5,21711,14536 +55306,333,2,197611,1634781 +55307,273,7,401164,1722536 +55308,413,11,20715,150861 +55309,52,10,43649,4664 +55310,234,1,12481,70334 +55311,148,9,560,7651 +55312,249,7,59965,1395025 +55313,234,1,4516,37626 +55314,160,3,22803,84602 +55315,34,8,274479,1419107 +55316,3,5,18586,4340 +55317,301,5,337339,1725762 +55318,317,10,15761,71089 +55319,204,9,1595,17852 +55320,3,5,31561,10079 +55321,317,10,70587,61244 +55322,97,7,638,9447 +55323,111,7,9352,1577475 +55324,234,1,49853,5844 +55325,317,10,340627,1813222 +55326,234,1,171759,1062889 +55327,344,9,9358,1441281 +55328,53,2,94671,431491 +55329,262,6,109424,1408383 +55330,207,3,102382,1347760 +55331,234,1,272165,6558 +55332,53,2,384737,955396 +55333,415,3,33472,1184835 +55334,3,5,9956,52026 +55335,60,1,125264,76978 +55336,401,6,10020,1554398 +55337,317,10,47878,10127 +55338,3,5,44190,108274 +55339,234,1,274479,17883 +55340,394,7,448847,1338971 +55341,234,1,315872,69488 +55342,12,10,63105,192841 +55343,387,10,9928,27518 +55344,387,10,29638,98680 +55345,413,11,269149,44029 +55346,234,1,8088,309 +55347,53,2,4344,40483 +55348,2,6,10590,1566308 +55349,406,6,378441,1797499 +55350,234,1,401164,1161729 +55351,413,11,28268,1092895 +55352,333,2,338189,1753720 +55353,226,2,333371,1636669 +55354,234,1,26558,28283 +55355,349,1,77950,1462666 +55356,262,6,297702,1636863 +55357,387,10,108003,9859 +55358,187,11,110972,91093 +55359,234,1,25890,13 +55360,394,7,228970,113055 +55361,289,6,149870,1456608 +55362,413,11,98586,1143462 +55363,234,1,202238,1184369 +55364,132,2,22881,1096345 +55365,3,5,312669,1075441 +55366,234,1,14226,83642 +55367,289,6,109298,11429 +55368,3,5,28031,9573 +55369,273,7,65674,71523 +55370,269,9,53172,1685813 +55371,328,6,9902,1401292 +55372,3,5,204384,1275131 +55373,317,10,128767,1276268 +55374,333,2,332567,1718711 +55375,304,10,117500,40531 +55376,60,1,43525,1544013 +55377,333,2,24624,1404305 +55378,234,1,399798,590960 +55379,269,9,325803,1428032 +55380,401,6,12,1830811 +55381,148,9,263115,23906 +55382,52,10,29290,31074 +55383,204,9,175339,48026 +55384,75,5,296524,1527439 +55385,12,10,3145,28970 +55386,148,9,83890,1143007 +55387,5,10,10714,14744 +55388,209,7,312221,1095320 +55389,317,10,168202,110873 +55390,234,1,44637,1250542 +55391,413,11,4285,5195 +55392,250,11,84226,1418443 +55393,287,3,2976,29217 +55394,413,11,10754,66454 +55395,387,10,285400,1180063 +55396,104,7,48231,1338845 +55397,387,10,29345,103581 +55398,333,2,22020,1207157 +55399,413,11,10473,65626 +55400,3,5,194722,59982 +55401,317,10,1647,28866 +55402,105,7,79783,32347 +55403,234,1,296901,145714 +55404,234,1,51357,8635 +55405,105,7,20174,85763 +55406,208,2,283445,1547749 +55407,413,11,61527,1328183 +55408,298,5,230179,1512680 +55409,357,3,9982,1461357 +55410,155,3,244786,1018788 +55411,122,8,7220,1707105 +55412,180,7,216363,1547485 +55413,387,10,57993,31843 +55414,234,1,352917,1348134 +55415,269,9,7445,8794 +55416,127,3,351211,1652047 +55417,105,7,3085,29275 +55418,105,7,329805,469 +55419,234,1,369366,1555620 +55420,20,2,46286,1398176 +55421,413,11,11855,16534 +55422,387,10,22752,57332 +55423,317,10,20106,52344 +55424,234,1,287305,68998 +55425,413,11,43645,4670 +55426,327,7,144229,1396548 +55427,289,6,10539,555823 +55428,3,5,13550,14944 +55429,203,1,9286,1441373 +55430,234,1,335872,971831 +55431,413,11,4887,5136 +55432,105,7,57100,564823 +55433,53,2,273879,606 +55434,387,10,765,11641 +55435,317,10,54893,262211 +55436,3,5,29467,2654 +55437,113,9,436,1336949 +55438,3,5,256740,937526 +55439,317,10,352917,1348134 +55440,314,2,318553,1554504 +55441,333,2,413782,1674001 +55442,234,1,183218,87407 +55443,301,5,341174,1580835 +55444,66,11,4547,1486851 +55445,234,1,105254,6648 +55446,270,9,194,1551982 +55447,413,11,152532,1287614 +55448,234,1,198663,1179066 +55449,317,10,84233,1580702 +55450,273,7,207699,25011 +55451,273,7,37284,1043185 +55452,234,1,44027,6818 +55453,289,6,65759,1452997 +55454,234,1,11397,57604 +55455,387,10,27461,8966 +55456,141,7,435,1550566 +55457,234,1,242131,77101 +55458,52,10,10020,1115298 +55459,369,6,12,7943 +55460,226,2,227306,52165 +55461,204,9,9102,1318146 +55462,208,2,72710,406204 +55463,209,7,369885,12945 +55464,97,7,76757,1397823 +55465,333,2,9314,1749141 +55466,317,10,395992,91269 +55467,286,3,53231,958533 +55468,387,10,124115,1168878 +55469,234,1,25649,1188 +55470,373,7,17111,64355 +55471,209,7,2321,142165 +55472,317,10,77664,259862 +55473,234,1,4443,37302 +55474,60,1,42764,91812 +55475,273,7,49940,1530290 +55476,394,7,271714,92391 +55477,337,2,205584,1585744 +55478,411,3,41733,7234 +55479,3,5,266102,564559 +55480,317,10,247447,119294 +55481,317,10,253192,86861 +55482,60,1,1165,1363081 +55483,234,1,226968,47846 +55484,387,10,11524,638 +55485,52,10,114872,85452 +55486,269,9,638,5634 +55487,60,1,76094,94988 +55488,20,2,1662,1534942 +55489,148,9,4547,18458 +55490,77,10,14138,81328 +55491,301,5,156981,1575340 +55492,241,3,13576,1449372 +55493,64,6,1251,1447543 +55494,328,6,2924,116105 +55495,413,11,297702,1636850 +55496,234,1,362180,94151 +55497,387,10,18690,31051 +55498,387,10,3115,18611 +55499,234,1,329682,1106029 +55500,5,10,32657,109514 +55501,289,6,10020,1447376 +55502,234,1,21208,59521 +55503,387,10,11058,18189 +55504,60,1,323426,1642001 +55505,76,2,15019,1555670 +55506,317,10,64499,82335 +55507,314,2,206647,1087452 +55508,204,9,10050,21148 +55509,60,1,9593,5015 +55510,387,10,20304,1424496 +55511,262,6,198663,1367497 +55512,269,9,4191,9358 +55513,234,1,47099,589264 +55514,234,1,131343,1093243 +55515,46,5,338189,1559681 +55516,105,7,53354,70687 +55517,234,1,99875,33166 +55518,273,7,121662,1300501 +55519,234,1,29368,3606 +55520,53,2,14400,928949 +55521,298,5,294272,1660714 +55522,273,7,22396,14138 +55523,105,7,224251,21467 +55524,387,10,31586,3030 +55525,273,7,2321,3078 +55526,81,3,4147,1558212 +55527,83,2,193893,1662736 +55528,317,10,56948,132364 +55529,226,2,34231,1460034 +55530,72,11,10929,1394753 +55531,67,10,266856,1746701 +55532,234,1,28671,31268 +55533,234,1,21044,87059 +55534,373,7,1251,1341858 +55535,273,7,198652,1179378 +55536,127,3,72105,1455496 +55537,306,7,169,1807197 +55538,349,1,10198,1447595 +55539,314,2,425774,1707975 +55540,105,7,13576,1046544 +55541,166,9,10665,1403083 +55542,108,10,53865,149129 +55543,127,3,8619,1120542 +55544,20,2,167073,1578007 +55545,413,11,118889,102784 +55546,234,1,24199,88046 +55547,219,11,773,1335156 +55548,333,2,1294,1585884 +55549,234,1,13680,58375 +55550,387,10,257088,13927 +55551,5,10,68202,550535 +55552,403,10,29236,103362 +55553,273,7,42476,3375 +55554,268,7,263115,1361576 +55555,204,9,198062,1178366 +55556,97,7,375366,1740790 +55557,3,5,11607,4614 +55558,259,3,544,1780219 +55559,289,6,24554,91773 +55560,413,11,320736,234893 +55561,3,5,11175,4676 +55562,161,6,338189,1650741 +55563,233,8,9928,1694608 +55564,148,9,110972,1555633 +55565,301,5,44129,1407021 +55566,155,3,384737,1322568 +55567,105,7,10518,6357 +55568,273,7,27480,37278 +55569,209,7,11472,1562457 +55570,373,7,1986,76264 +55571,77,10,14752,78918 +55572,97,7,339342,1338134 +55573,349,1,18937,1447436 +55574,166,9,3172,1401758 +55575,413,11,12526,72643 +55576,317,10,134656,114334 +55577,413,11,5748,41695 +55578,3,5,382873,63890 +55579,12,10,68721,7624 +55580,200,3,1586,1611807 +55581,105,7,15907,111181 +55582,53,2,76493,6348 +55583,269,9,128364,74692 +55584,317,10,318553,928670 +55585,187,11,1271,1342658 +55586,226,2,8276,1544396 +55587,53,2,53150,1646189 +55588,273,7,9675,24190 +55589,234,1,50759,95501 +55590,269,9,139826,1123197 +55591,75,5,198663,1425338 +55592,234,1,58244,52244 +55593,245,3,63825,1640322 +55594,127,3,28090,999690 +55595,204,9,179818,9062 +55596,198,6,10796,1447148 +55597,317,10,50761,94841 +55598,286,3,253309,204400 +55599,234,1,63876,53767 +55600,387,10,22140,72913 +55601,387,10,16077,79176 +55602,158,2,12102,81533 +55603,317,10,57781,1490037 +55604,387,10,257444,1033123 +55605,413,11,180635,26025 +55606,187,11,1690,8762 +55607,161,6,2300,1436184 +55608,187,11,19142,1709192 +55609,273,7,38404,120328 +55610,102,3,13483,1402078 +55611,387,10,116711,132316 +55612,203,1,435,1392112 +55613,387,10,286971,69748 +55614,40,1,77459,1681495 +55615,387,10,1628,1650 +55616,413,11,29372,103673 +55617,123,3,147939,19502 +55618,273,7,2734,1259 +55619,3,5,831,12344 +55620,3,5,157409,1208220 +55621,52,10,126250,1011 +55622,204,9,120,1318 +55623,234,1,98094,133793 +55624,3,5,317,4652 +55625,250,11,209112,62723 +55626,187,11,278632,1350236 +55627,3,5,47312,29667 +55628,132,2,12526,1462925 +55629,333,2,298,1531874 +55630,143,7,332567,1263443 +55631,413,11,14626,1016336 +55632,413,11,131343,1450083 +55633,75,5,11517,38410 +55634,333,2,539,1339685 +55635,387,10,37084,39009 +55636,298,5,7916,1408193 +55637,148,9,49609,8508 +55638,273,7,39356,1671689 +55639,269,9,68347,12704 +55640,148,9,218784,1017238 +55641,317,10,19501,14782 +55642,25,2,322443,1407677 +55643,204,9,33563,1305602 +55644,413,11,188102,71958 +55645,15,6,206647,1442137 +55646,127,3,11216,1026047 +55647,97,7,283384,20228 +55648,234,1,54563,11983 +55649,209,7,206647,7538 +55650,60,1,125229,150289 +55651,387,10,44510,5602 +55652,269,9,351211,1098783 +55653,413,11,20096,8847 +55654,328,6,188927,186721 +55655,269,9,198795,31868 +55656,75,5,43092,1590914 +55657,220,7,31672,1259 +55658,317,10,26505,61594 +55659,413,11,322443,1388653 +55660,209,7,9532,1411856 +55661,175,5,181533,1390366 +55662,317,10,31919,1315120 +55663,127,3,106358,161961 +55664,234,1,43327,33064 +55665,269,9,2734,23956 +55666,415,3,43395,13292 +55667,269,9,101998,928498 +55668,53,2,120676,1404454 +55669,3,5,40060,78387 +55670,413,11,58060,1341585 +55671,52,10,41604,127029 +55672,387,10,104427,138467 +55673,66,11,11502,1609507 +55674,317,10,103620,44765 +55675,198,6,228066,1574091 +55676,234,1,159185,77305 +55677,204,9,148284,1536245 +55678,53,2,285,4033 +55679,286,3,210910,1194699 +55680,204,9,8457,59838 +55681,377,3,2924,1803777 +55682,273,7,10165,3350 +55683,317,10,162056,9234 +55684,269,9,19101,5133 +55685,398,9,19995,1352962 +55686,234,1,296456,21246 +55687,317,10,188180,1169876 +55688,52,10,44902,131688 +55689,415,3,29424,958965 +55690,53,2,58244,959634 +55691,234,1,88018,2106 +55692,196,7,228970,1397196 +55693,204,9,9013,795 +55694,234,1,407806,929825 +55695,413,11,49158,592058 +55696,333,2,7299,1433707 +55697,286,3,112912,936171 +55698,234,1,1450,21931 +55699,346,3,857,1466988 +55700,317,10,137614,1168474 +55701,158,2,333484,1401814 +55702,204,9,13823,75799 +55703,317,10,102256,1343381 +55704,234,1,189807,1037658 +55705,52,10,364833,1525326 +55706,169,3,14510,64722 +55707,333,2,6643,1879216 +55708,204,9,118,23773 +55709,387,10,48210,10316 +55710,317,10,87908,935637 +55711,3,5,105509,550291 +55712,127,3,33673,1234564 +55713,177,6,11370,1379995 +55714,234,1,82990,142276 +55715,3,5,11610,16331 +55716,234,1,254435,1198180 +55717,311,9,12103,1840062 +55718,187,11,401164,1286570 +55719,3,5,86838,22161 +55720,262,6,243940,1525153 +55721,317,10,28323,100422 +55722,301,5,11236,1408354 +55723,413,11,46885,590839 +55724,143,7,375366,1408374 +55725,234,1,227964,1122900 +55726,166,9,924,1531900 +55727,232,10,90956,88986 +55728,301,5,345925,1539620 +55729,413,11,26503,53197 +55730,387,10,64948,105346 +55731,317,10,40127,1331697 +55732,143,7,936,14260 +55733,387,10,19403,84657 +55734,413,11,1595,17861 +55735,317,10,330588,49785 +55736,3,5,70734,29573 +55737,394,7,10590,16736 +55738,413,11,182131,1495415 +55739,387,10,43792,959728 +55740,269,9,242224,996994 +55741,269,9,28176,2875 +55742,287,3,141733,1102229 +55743,169,3,28178,1459723 +55744,413,11,2288,6492 +55745,234,1,76170,366 +55746,387,10,80343,1117848 +55747,399,9,9472,1567958 +55748,273,7,32088,10771 +55749,160,3,38027,92481 +55750,391,9,369885,1771006 +55751,52,10,10407,339 +55752,161,6,10727,1570813 +55753,317,10,92989,64992 +55754,37,3,35,1447541 +55755,357,3,205584,1585736 +55756,92,7,124994,1080823 +55757,317,10,186759,1017004 +55758,234,1,35002,39853 +55759,3,5,356482,1374810 +55760,104,7,89492,1550829 +55761,200,3,19901,1418807 +55762,273,7,45610,1053668 +55763,3,5,71668,1049745 +55764,182,8,118,1545989 +55765,204,9,46190,9062 +55766,269,9,34223,1129805 +55767,234,1,30644,106663 +55768,77,10,9664,58437 +55769,53,2,13056,961452 +55770,234,1,16447,150975 +55771,317,10,64861,239993 +55772,204,9,14676,148824 +55773,53,2,170279,34877 +55774,5,10,31512,226824 +55775,105,7,214081,5488 +55776,287,3,6552,50726 +55777,108,10,18919,66797 +55778,289,6,788,1447383 +55779,357,3,206647,1425484 +55780,87,7,4133,1530082 +55781,60,1,33364,12955 +55782,190,7,4982,1565211 +55783,317,10,308640,1395183 +55784,317,10,285803,1264503 +55785,387,10,67377,5812 +55786,398,9,2132,21857 +55787,87,7,8272,52161 +55788,52,10,13550,74637 +55789,387,10,153228,120312 +55790,401,6,9982,1713402 +55791,105,7,21442,87535 +55792,396,3,857,1418480 +55793,3,5,53042,1866983 +55794,5,10,145247,1122548 +55795,269,9,202241,5670 +55796,3,5,10999,2507 +55797,398,9,302699,1729095 +55798,413,11,11321,20649 +55799,317,10,40859,1180862 +55800,3,5,52859,8504 +55801,273,7,39578,1784165 +55802,3,5,18387,792 +55803,269,9,39875,9918 +55804,387,10,82341,31604 +55805,143,7,41733,1424167 +55806,269,9,80389,16404 +55807,355,11,17136,120032 +55808,234,1,79782,587971 +55809,104,7,13798,1565838 +55810,413,11,76686,1098635 +55811,148,9,10050,62518 +55812,273,7,127380,153 +55813,413,11,256122,1643670 +55814,3,5,1628,3540 +55815,74,5,2567,1599618 +55816,250,11,374473,1473167 +55817,234,1,6687,37948 +55818,373,7,16921,1398123 +55819,53,2,368006,1640324 +55820,387,10,4982,2260 +55821,317,10,12171,73402 +55822,234,1,13017,74099 +55823,53,2,5899,46448 +55824,3,5,6171,2702 +55825,187,11,127521,1350236 +55826,234,1,222858,178926 +55827,234,1,96935,33064 +55828,64,6,28437,102782 +55829,188,8,116463,1691482 +55830,387,10,17985,21183 +55831,413,11,11832,70642 +55832,203,1,225728,1404875 +55833,234,1,3087,4109 +55834,333,2,18,11298 +55835,234,1,30974,234478 +55836,77,10,259,3536 +55837,250,11,294272,1432047 +55838,387,10,185289,133433 +55839,175,5,296523,1401806 +55840,273,7,172908,14930 +55841,97,7,638,9438 +55842,289,6,76341,1452989 +55843,5,10,10391,65364 +55844,234,1,20825,54645 +55845,87,7,284564,1752044 +55846,185,11,4147,1733142 +55847,3,5,104674,1433848 +55848,250,11,136087,1649729 +55849,286,3,126832,71285 +55850,317,10,53150,52122 +55851,413,11,112991,563 +55852,289,6,291270,1462579 +55853,234,1,81030,46712 +55854,204,9,29083,102873 +55855,273,7,80193,29810 +55856,269,9,166666,8805 +55857,3,5,9514,57806 +55858,286,3,145154,1122367 +55859,72,11,341174,1446691 +55860,12,10,12606,56888 +55861,317,10,104720,120546 +55862,317,10,2989,29342 +55863,317,10,256122,90210 +55864,53,2,43828,13959 +55865,269,9,691,9869 +55866,413,11,3686,12741 +55867,317,10,64225,73153 +55868,333,2,1421,1433965 +55869,3,5,53882,1728 +55870,273,7,10075,1075 +55871,204,9,43829,1374561 +55872,3,5,381015,983625 +55873,291,6,10204,1603859 +55874,333,2,10178,10796 +55875,234,1,42204,1153 +55876,387,10,17911,65242 +55877,143,7,283686,1405361 +55878,234,1,130593,124831 +55879,5,10,27599,3850 +55880,204,9,10671,12346 +55881,413,11,45273,37012 +55882,204,9,63825,961268 +55883,190,7,4011,1417338 +55884,53,2,82368,1815549 +55885,317,10,12573,1223 +55886,208,2,379019,1780125 +55887,413,11,61988,50578 +55888,327,7,33135,1304275 +55889,105,7,41076,1889074 +55890,75,5,293167,1402900 +55891,50,3,9946,1767312 +55892,52,10,84397,87392 +55893,269,9,2084,1112 +55894,317,10,32546,109356 +55895,373,7,31005,1378226 +55896,269,9,417870,22145 +55897,3,5,1273,22298 +55898,317,10,12888,233448 +55899,413,11,23544,1662269 +55900,269,9,27599,1080951 +55901,3,5,552,7560 +55902,3,5,363579,69087 +55903,234,1,353616,1278722 +55904,387,10,33792,70496 +55905,234,1,11024,1215 +55906,273,7,13346,10771 +55907,273,7,51759,13336 +55908,72,11,2924,1108989 +55909,289,6,72640,555757 +55910,3,5,95504,3637 +55911,53,2,362541,1518579 +55912,269,9,43727,32640 +55913,328,6,298,1436181 +55914,234,1,262338,82351 +55915,269,9,414453,1731651 +55916,262,6,378018,1403404 +55917,317,10,35977,558232 +55918,203,1,228970,1451417 +55919,413,11,1483,1271259 +55920,3,5,39013,1163706 +55921,269,9,239498,1024912 +55922,286,3,60855,56536 +55923,204,9,83890,1143006 +55924,234,1,41378,99436 +55925,245,3,320910,1640322 +55926,53,2,157843,50953 +55927,203,1,214081,1367658 +55928,204,9,32029,35499 +55929,273,7,13567,1426220 +55930,52,10,36299,1046010 +55931,269,9,41298,31318 +55932,43,2,49521,1182909 +55933,3,5,13380,59955 +55934,317,10,30619,1011964 +55935,87,7,98066,1555158 +55936,179,2,166221,1496662 +55937,53,2,57005,1760586 +55938,203,1,341174,1411729 +55939,234,1,15285,291251 +55940,269,9,184795,18755 +55941,360,3,329682,1577906 +55942,160,3,435,1392105 +55943,148,9,33511,53020 +55944,105,7,43641,1828760 +55945,387,10,228074,14293 +55946,148,9,8464,1321697 +55947,53,2,19971,17394 +55948,289,6,9514,1612748 +55949,234,1,428493,192852 +55950,387,10,68063,550304 +55951,317,10,30155,1086571 +55952,190,7,166886,1599477 +55953,75,5,398633,1623946 +55954,413,11,44436,130858 +55955,234,1,267497,1217043 +55956,75,5,67328,1583633 +55957,77,10,8464,55151 +55958,234,1,74430,254081 +55959,3,5,72710,13000 +55960,3,5,88558,243 +55961,317,10,42787,40169 +55962,273,7,213110,1197579 +55963,108,10,246299,1210065 +55964,234,1,138611,1020751 +55965,333,2,2966,29088 +55966,148,9,443319,1888976 +55967,286,3,43978,1538012 +55968,317,10,16175,3027 +55969,317,10,134308,33893 +55970,148,9,52270,8508 +55971,203,1,11045,1367508 +55972,53,2,168217,108820 +55973,413,11,4832,950 +55974,169,3,106747,1521392 +55975,105,7,84479,1180402 +55976,317,10,225285,1264232 +55977,143,7,12205,1094646 +55978,411,9,346672,1404356 +55979,301,5,43727,1149583 +55980,273,7,48145,6651 +55981,234,1,188468,9054 +55982,317,10,51362,8635 +55983,3,5,6166,48182 +55984,413,11,14676,51767 +55985,273,7,53945,39613 +55986,141,7,966,1532774 +55987,162,6,44591,1484239 +55988,67,10,14317,1447383 +55989,166,9,262338,1465990 +55990,53,2,31532,7652 +55991,234,1,45562,133210 +55992,317,10,86234,12386 +55993,289,6,10539,1454029 +55994,234,1,17073,1184486 +55995,234,1,398786,1136857 +55996,105,7,43976,1493012 +55997,204,9,86829,1015645 +55998,226,2,9778,1468618 +55999,40,1,397837,1818596 +56000,113,9,188927,1519426 +56001,204,9,27629,5188 +56002,53,2,146243,165396 +56003,234,1,369406,108022 +56004,413,11,25388,16593 +56005,105,7,135718,1323144 +56006,387,10,180685,1020760 +56007,273,7,124963,491 +56008,287,3,11880,1424925 +56009,234,1,380856,1243745 +56010,333,2,346672,1568901 +56011,387,10,9252,57005 +56012,234,1,235662,63932 +56013,413,11,173153,53685 +56014,387,10,11706,70296 +56015,287,3,243940,1287869 +56016,317,10,327383,1451411 +56017,75,5,664,1377131 +56018,3,5,298584,966927 +56019,15,6,293660,1409237 +56020,234,1,2764,27954 +56021,234,1,9589,15868 +56022,317,10,16866,12083 +56023,234,1,47410,138867 +56024,53,2,379,960585 +56025,204,9,127585,1384359 +56026,234,1,48431,1161618 +56027,317,10,55825,114334 +56028,394,7,10727,1395447 +56029,113,9,2105,1552165 +56030,262,6,49009,1484208 +56031,416,10,469172,109711 +56032,413,11,5638,34484 +56033,333,2,2687,26986 +56034,105,7,14476,1203688 +56035,262,6,11351,957874 +56036,234,1,61935,65470 +56037,141,7,116463,1691491 +56038,52,10,16873,80949 +56039,317,10,1387,1194207 +56040,189,3,244786,1403508 +56041,317,10,44442,43553 +56042,234,1,17692,8558 +56043,57,2,240832,1367647 +56044,373,7,28,2889 +56045,226,2,11377,1602863 +56046,317,10,212996,545536 +56047,160,3,14145,1416987 +56048,3,5,75510,13972 +56049,234,1,781,1071 +56050,262,6,8619,25453 +56051,60,1,18,1857480 +56052,301,5,145135,1417879 +56053,413,11,343934,24186 +56054,234,1,9981,54584 +56055,105,7,16436,238172 +56056,18,2,11045,1717520 +56057,317,10,50225,41472 +56058,5,10,14886,66113 +56059,413,11,3513,5361 +56060,204,9,2135,2528 +56061,333,2,13823,33103 +56062,234,1,14809,2065 +56063,317,10,212156,224339 +56064,113,9,375366,1740766 +56065,387,10,256962,72960 +56066,289,6,90001,1563391 +56067,273,7,227700,1018976 +56068,77,10,17332,81695 +56069,317,10,317168,1058994 +56070,269,9,98557,1018708 +56071,333,2,21338,1541708 +56072,169,3,6068,1536373 +56073,203,1,13493,1352983 +56074,234,1,44716,1011 +56075,169,3,228205,1521492 +56076,387,10,315846,25645 +56077,317,10,68637,1033663 +56078,66,11,40807,1441329 +56079,387,10,20481,31211 +56080,175,5,169298,1407261 +56081,148,9,50674,212823 +56082,317,10,187028,357 +56083,387,10,22387,14859 +56084,373,7,44129,9619 +56085,207,3,97614,1411857 +56086,53,2,112284,9064 +56087,105,7,328589,1528 +56088,234,1,52270,2428 +56089,269,9,423377,582678 +56090,413,11,286192,8064 +56091,127,3,186869,1535123 +56092,403,10,293271,226361 +56093,289,6,53178,68655 +56094,34,8,379,1554309 +56095,269,9,22076,8848 +56096,65,3,8619,100383 +56097,360,3,266856,1465940 +56098,3,5,2924,30149 +56099,53,2,40221,1476557 +56100,204,9,11077,5508 +56101,333,2,79316,1547669 +56102,301,5,3172,1400535 +56103,317,10,40146,1055183 +56104,387,10,10543,57447 +56105,53,2,440508,1844155 +56106,3,5,40208,1820853 +56107,268,7,274479,1432596 +56108,52,10,43833,115849 +56109,317,10,62675,24501 +56110,413,11,32577,27903 +56111,387,10,335509,82172 +56112,333,2,263115,1425326 +56113,289,6,109298,150768 +56114,269,9,53459,1134100 +56115,413,11,13678,1297472 +56116,3,5,218425,1312179 +56117,196,7,14181,9419 +56118,75,5,9664,1390368 +56119,166,9,228066,1465990 +56120,53,2,18595,1160653 +56121,234,1,31061,144194 +56122,413,11,42569,30725 +56123,273,7,39276,425396 +56124,217,3,269149,1453539 +56125,175,5,410118,1791609 +56126,53,2,43829,1355547 +56127,204,9,11185,1867936 +56128,387,10,66893,234569 +56129,209,7,97614,1419731 +56130,398,9,9289,1384061 +56131,303,3,2924,6184 +56132,273,7,11633,70105 +56133,208,2,204922,1414090 +56134,190,7,9472,1567900 +56135,3,5,36334,10602 +56136,286,3,119816,52729 +56137,413,11,308529,1377461 +56138,175,5,343934,1394767 +56139,317,10,303982,1689173 +56140,234,1,49815,78157 +56141,273,7,29094,13571 +56142,196,7,9593,1408311 +56143,301,5,237584,1621367 +56144,287,3,351065,1412578 +56145,235,5,9428,1446687 +56146,234,1,26283,5834 +56147,269,9,90563,12017 +56148,148,9,3595,17221 +56149,52,10,9325,57335 +56150,273,7,6068,14712 +56151,234,1,191476,963421 +56152,83,2,359412,1820515 +56153,204,9,140607,986687 +56154,234,1,16032,585953 +56155,262,6,11370,1440487 +56156,301,5,12536,1559634 +56157,200,3,19995,58188 +56158,15,6,11351,1459725 +56159,285,5,12103,1861314 +56160,53,2,1838,6797 +56161,97,7,13954,1337671 +56162,317,10,23223,214806 +56163,286,3,40466,1025921 +56164,387,10,6933,51446 +56165,113,9,152042,1816772 +56166,234,1,12855,81068 +56167,234,1,101325,1027173 +56168,52,10,29872,13802 +56169,273,7,151911,117854 +56170,413,11,62728,999565 +56171,147,1,40466,1760132 +56172,317,10,14047,106955 +56173,234,1,27414,97710 +56174,273,7,24971,37789 +56175,204,9,228647,9062 +56176,190,7,445993,1808043 +56177,204,9,209112,1172441 +56178,234,1,31670,41040 +56179,234,1,14387,14293 +56180,234,1,358353,87565 +56181,53,2,2135,14042 +56182,52,10,408220,1220905 +56183,234,1,28367,21869 +56184,413,11,133328,72142 +56185,204,9,10973,29637 +56186,413,11,38715,1357124 +56187,179,2,245703,1326407 +56188,387,10,311291,586002 +56189,61,7,8619,1447602 +56190,160,3,62728,141358 +56191,317,10,51054,6779 +56192,75,5,194,17531 +56193,399,9,13205,1767049 +56194,45,9,12103,1625895 +56195,53,2,1421,3589 +56196,387,10,285532,1127089 +56197,333,2,21927,1416940 +56198,387,10,42494,15206 +56199,413,11,84104,236380 +56200,234,1,36246,58614 +56201,415,3,46872,1606803 +56202,413,11,258384,2582 +56203,105,7,42120,26729 +56204,234,1,55505,36146 +56205,324,3,58886,228588 +56206,52,10,33016,1143709 +56207,3,5,70151,117025 +56208,87,7,9928,1453229 +56209,387,10,26165,105153 +56210,304,10,90634,35808 +56211,3,5,13555,2082 +56212,234,1,120672,930791 +56213,262,6,28178,1379963 +56214,182,8,17295,1588525 +56215,234,1,302036,1383998 +56216,234,1,19794,94126 +56217,413,11,12121,33830 +56218,105,7,84993,137534 +56219,317,10,89330,992858 +56220,273,7,39766,1321445 +56221,200,3,420703,938690 +56222,196,7,405473,1747173 +56223,53,2,403867,1723504 +56224,269,9,54523,32311 +56225,77,10,14400,37454 +56226,293,2,376501,1792345 +56227,52,10,50725,1830502 +56228,262,6,1381,1447152 +56229,317,10,32928,144821 +56230,413,11,114790,50194 +56231,234,1,119639,1212412 +56232,189,3,11370,1581141 +56233,204,9,28730,557444 +56234,60,1,251421,1181519 +56235,234,1,67,357 +56236,373,7,623,24680 +56237,317,10,209248,48981 +56238,234,1,14076,42205 +56239,413,11,6963,1722 +56240,47,8,7326,1398846 +56241,209,7,132363,1355970 +56242,239,5,325039,1544661 +56243,333,2,7220,143893 +56244,60,1,43903,1008625 +56245,346,3,435,1418489 +56246,273,7,14811,1318751 +56247,72,11,11351,964509 +56248,373,7,284052,3996 +56249,113,9,13380,1753062 +56250,234,1,171648,105566 +56251,273,7,39436,1177363 +56252,234,1,48419,140470 +56253,286,3,85472,932223 +56254,169,3,294254,1538207 +56255,87,7,45610,1529990 +56256,53,2,285858,1151941 +56257,413,11,42418,23914 +56258,413,11,55420,45459 +56259,204,9,37053,123871 +56260,360,3,243935,1414921 +56261,40,1,194,1551970 +56262,108,10,87894,1619499 +56263,5,10,13689,133329 +56264,3,5,158015,1186279 +56265,175,5,10972,1400534 +56266,317,10,85230,97860 +56267,273,7,43877,1334612 +56268,273,7,82350,25321 +56269,234,1,77949,582918 +56270,234,1,95756,1006734 +56271,204,9,31275,1031156 +56272,286,3,4254,35738 +56273,250,11,418437,1763654 +56274,234,1,216046,1200685 +56275,321,11,12,1556629 +56276,204,9,46261,26144 +56277,234,1,130233,38193 +56278,234,1,84601,100888 +56279,413,11,49028,1013135 +56280,72,11,18,1440853 +56281,317,10,185153,54448 +56282,234,1,10804,12920 +56283,415,3,39276,18602 +56284,349,1,53210,179923 +56285,289,6,109451,1447388 +56286,317,10,16652,109541 +56287,160,3,18843,126230 +56288,148,9,13834,75875 +56289,196,7,76757,548444 +56290,317,10,84774,1618228 +56291,262,6,21742,94244 +56292,250,11,270303,1415093 +56293,220,7,43395,13983 +56294,234,1,66700,129059 +56295,413,11,259395,1099943 +56296,387,10,12716,25182 +56297,10,3,272693,1709337 +56298,373,7,16096,1342624 +56299,234,1,95134,108983 +56300,333,2,74,1320911 +56301,317,10,320736,18823 +56302,387,10,42852,14859 +56303,317,10,49106,239485 +56304,387,10,43546,31069 +56305,143,7,240913,128980 +56306,273,7,276401,1778310 +56307,234,1,13196,9994 +56308,273,7,57412,13336 +56309,333,2,18417,83062 +56310,52,10,354857,1251097 +56311,52,10,335778,1454287 +56312,53,2,10235,1593015 +56313,387,10,183073,72719 +56314,213,10,211059,1088940 +56315,3,5,301875,967792 +56316,387,10,9664,12920 +56317,60,1,186585,999948 +56318,234,1,53714,93904 +56319,226,2,64807,1403426 +56320,53,2,9667,7481 +56321,324,3,313896,7835 +56322,413,11,242076,968992 +56323,387,10,116973,1192600 +56324,234,1,116904,1010308 +56325,108,10,335498,56927 +56326,387,10,9785,59249 +56327,234,1,60420,132964 +56328,273,7,20648,37002 +56329,148,9,33673,224395 +56330,314,2,2662,1546557 +56331,75,5,218778,1102816 +56332,234,1,1917,18176 +56333,148,9,318781,1622810 +56334,208,2,98339,1333909 +56335,269,9,18897,19987 +56336,234,1,53781,88648 +56337,105,7,56599,51808 +56338,52,10,62761,235967 +56339,387,10,11622,28904 +56340,45,9,2503,1335179 +56341,204,9,2897,118290 +56342,97,7,145135,113090 +56343,317,10,116762,583399 +56344,277,3,935,89541 +56345,317,10,251421,33841 +56346,298,5,2503,1400092 +56347,204,9,134435,120193 +56348,99,3,18763,56865 +56349,317,10,217341,78428 +56350,234,1,14292,77003 +56351,64,6,45562,999570 +56352,189,3,435,1384394 +56353,3,5,198663,17598 +56354,53,2,224944,1642140 +56355,143,7,240832,8159 +56356,45,9,169881,40754 +56357,203,1,68050,1534028 +56358,226,2,664,1404306 +56359,373,7,283995,1327030 +56360,317,10,112885,592459 +56361,286,3,290370,1323117 +56362,317,10,42571,128219 +56363,317,10,76785,234842 +56364,413,11,15199,1486816 +56365,343,3,60568,57609 +56366,413,11,4982,950 +56367,204,9,28297,29637 +56368,12,10,30666,21672 +56369,394,7,7454,1355962 +56370,3,5,120977,8504 +56371,234,1,329289,1436122 +56372,262,6,9042,3958 +56373,387,10,43783,190735 +56374,3,5,98536,13972 +56375,289,6,149870,1456621 +56376,234,1,7483,20024 +56377,269,9,250574,1489249 +56378,387,10,76203,51679 +56379,75,5,256740,1402520 +56380,5,10,12783,1427493 +56381,53,2,19688,1484987 +56382,317,10,224813,121781 +56383,3,5,25430,6452 +56384,105,7,285685,1350677 +56385,204,9,20640,9062 +56386,5,10,267793,1271472 +56387,234,1,16661,143559 +56388,234,1,60662,64099 +56389,234,1,38432,46712 +56390,25,2,312831,1594183 +56391,234,1,22897,17698 +56392,394,7,58244,114358 +56393,317,10,35200,111485 +56394,187,11,1586,1531576 +56395,327,7,264553,1332315 +56396,204,9,253235,41678 +56397,113,9,12499,60937 +56398,12,10,42476,1770594 +56399,387,10,77822,119322 +56400,5,10,28295,1182969 +56401,413,11,7454,1270512 +56402,3,5,10409,51981 +56403,204,9,3682,11004 +56404,234,1,17465,67632 +56405,204,9,85230,75830 +56406,34,8,109424,1408399 +56407,317,10,352960,1383654 +56408,333,2,137145,1542314 +56409,373,7,9820,83091 +56410,273,7,83899,1106692 +56411,3,5,237584,1312659 +56412,234,1,142412,76813 +56413,105,7,267579,68144 +56414,3,5,4307,3656 +56415,203,1,205584,1403728 +56416,387,10,4286,32048 +56417,317,10,293082,23883 +56418,158,2,106747,1397852 +56419,234,1,47226,118772 +56420,273,7,71859,74333 +56421,105,7,109379,1303198 +56422,34,8,32657,1418404 +56423,196,7,11547,1407878 +56424,387,10,18836,141176 +56425,64,6,298787,1103559 +56426,77,10,9828,59653 +56427,286,3,280045,16324 +56428,317,10,14976,938831 +56429,3,5,277713,1163706 +56430,402,11,263115,1399300 +56431,317,10,376579,1568370 +56432,204,9,76163,1015623 +56433,413,11,27102,3838 +56434,34,8,4806,1414289 +56435,3,5,371181,1210176 +56436,160,3,392818,4438 +56437,273,7,129359,81230 +56438,257,3,924,1551654 +56439,46,5,2321,142163 +56440,105,7,134474,1198855 +56441,148,9,40688,1492928 +56442,413,11,52369,20845 +56443,317,10,255948,1063238 +56444,236,8,544,1780228 +56445,234,1,15043,17309 +56446,234,1,4893,39853 +56447,3,5,204040,137885 +56448,286,3,367735,1141686 +56449,105,7,30973,8320 +56450,179,2,10632,1323092 +56451,360,3,398289,1411723 +56452,30,5,10796,1403415 +56453,175,5,975,1566070 +56454,53,2,74395,35766 +56455,314,2,11812,1531871 +56456,234,1,408509,1068048 +56457,200,3,339527,1407019 +56458,317,10,101915,133876 +56459,148,9,13526,1626526 +56460,387,10,387999,442286 +56461,387,10,64786,1096193 +56462,3,5,114982,1179019 +56463,273,7,175998,19475 +56464,53,2,143946,1493685 +56465,234,1,8840,18878 +56466,373,7,265208,1341138 +56467,234,1,189696,543989 +56468,317,10,211879,137492 +56469,203,1,11472,1480099 +56470,169,3,580,16211 +56471,387,10,5494,43673 +56472,166,9,16996,1532691 +56473,64,6,329805,1621910 +56474,182,8,2924,1272858 +56475,160,3,216580,1068881 +56476,413,11,11645,5026 +56477,270,9,2567,1391760 +56478,187,11,10008,1399558 +56479,158,2,10204,1433073 +56480,286,3,84233,90823 +56481,273,7,28775,88643 +56482,303,3,338,1323227 +56483,166,9,11338,1344256 +56484,317,10,387558,1643378 +56485,273,7,33273,14351 +56486,188,8,98277,1849147 +56487,169,3,302828,1399090 +56488,413,11,31713,11997 +56489,333,2,15,1000458 +56490,158,2,341174,1738098 +56491,234,1,336011,1454850 +56492,175,5,13056,1392106 +56493,234,1,36463,82751 +56494,413,11,296941,1457037 +56495,175,5,214938,1597066 +56496,387,10,2428,24792 +56497,175,5,293660,1564737 +56498,105,7,340275,5287 +56499,204,9,15875,116723 +56500,273,7,104193,1034270 +56501,3,5,52959,9103 +56502,156,3,10733,1571783 +56503,234,1,31258,30981 +56504,204,9,284052,1388848 +56505,413,11,74753,24667 +56506,165,9,10733,1571711 +56507,157,3,274483,1367021 +56508,203,1,24363,18127 +56509,291,6,266856,1032067 +56510,175,5,21338,1630525 +56511,234,1,159701,94229 +56512,285,5,4147,1558206 +56513,196,7,118957,1445964 +56514,234,1,360784,1179422 +56515,204,9,29365,31204 +56516,158,2,10529,1567304 +56517,158,2,126889,1746456 +56518,317,10,148478,213449 +56519,3,5,334538,989460 +56520,234,1,32124,108926 +56521,196,7,300983,1669170 +56522,234,1,38448,17016 +56523,234,1,264269,1311031 +56524,105,7,272663,19965 +56525,52,10,9514,57714 +56526,161,6,40466,1760141 +56527,394,7,28739,1406242 +56528,158,2,291413,1344838 +56529,317,10,116019,11244 +56530,387,10,96107,164730 +56531,234,1,11232,366 +56532,234,1,334538,55439 +56533,39,3,1624,1870775 +56534,234,1,37053,125085 +56535,234,1,106135,54590 +56536,234,1,2288,5342 +56537,203,1,169,1431975 +56538,333,2,15092,1414540 +56539,203,1,578,17916 +56540,180,7,77381,1334715 +56541,357,3,241239,1434593 +56542,269,9,3478,32054 +56543,46,5,142402,1117105 +56544,301,5,1624,1550778 +56545,387,10,12593,16384 +56546,413,11,132601,1396313 +56547,75,5,9297,1462703 +56548,234,1,20481,31211 +56549,234,1,86718,81085 +56550,204,9,271714,41592 +56551,182,8,251227,1286583 +56552,387,10,73208,12804 +56553,234,1,130593,124830 +56554,394,7,365942,83090 +56555,387,10,39867,1437606 +56556,252,3,9882,1625919 +56557,387,10,2976,11708 +56558,387,10,11330,21183 +56559,179,2,8869,1415640 +56560,317,10,98066,980834 +56561,57,2,10066,1431999 +56562,207,3,218778,76003 +56563,75,5,11096,1418398 +56564,3,5,266030,1438570 +56565,317,10,22314,69448 +56566,97,7,9504,1378172 +56567,190,7,197611,1634783 +56568,234,1,55694,223006 +56569,148,9,10394,1465066 +56570,160,3,240913,99745 +56571,77,10,3078,1123346 +56572,234,1,23619,223965 +56573,180,7,43514,1099567 +56574,286,3,70006,935296 +56575,317,10,24979,32907 +56576,333,2,219466,1640824 +56577,413,11,3081,5262 +56578,203,1,11011,1481828 +56579,317,10,14411,932 +56580,317,10,62692,1097077 +56581,148,9,24936,1458760 +56582,148,9,779,11580 +56583,53,2,60488,13959 +56584,5,10,28571,39013 +56585,325,5,183412,1419639 +56586,387,10,16229,1233953 +56587,3,5,323675,24310 +56588,76,2,257088,1314465 +56589,166,9,13954,1398866 +56590,234,1,43252,7506 +56591,234,1,293625,102473 +56592,317,10,43850,3386 +56593,373,7,14181,14045 +56594,324,3,75948,577420 +56595,3,5,12759,33618 +56596,317,10,378087,85553 +56597,387,10,25969,1236954 +56598,269,9,19819,9967 +56599,413,11,340275,1538027 +56600,148,9,464111,1418416 +56601,234,1,28658,97017 +56602,53,2,13542,19692 +56603,148,9,43195,1454258 +56604,289,6,12599,1460798 +56605,286,3,42537,35502 +56606,398,9,22076,1398171 +56607,234,1,59965,6482 +56608,148,9,630,9063 +56609,234,1,139856,1079368 +56610,387,10,57866,224401 +56611,234,1,197854,1488429 +56612,3,5,319924,7413 +56613,317,10,45988,1240507 +56614,317,10,40799,88648 +56615,148,9,887,12349 +56616,187,11,60599,1400494 +56617,234,1,15242,94011 +56618,273,7,67,767 +56619,190,7,6947,1573113 +56620,415,3,15440,1336934 +56621,234,1,43688,30833 +56622,317,10,19482,84722 +56623,182,8,278632,1340185 +56624,269,9,47900,1132482 +56625,387,10,173153,1255 +56626,234,1,26693,1111194 +56627,3,5,287483,171 +56628,387,10,28902,8966 +56629,148,9,114577,1059051 +56630,236,8,2662,1603325 +56631,53,2,175035,9064 +56632,387,10,11496,56034 +56633,5,10,78377,57287 +56634,209,7,69060,14527 +56635,387,10,1271,17285 +56636,3,5,2428,24793 +56637,3,5,26581,30670 +56638,387,10,329865,115033 +56639,196,7,137504,1529744 +56640,179,2,118,59533 +56641,387,10,37936,29287 +56642,317,10,300090,1379722 +56643,234,1,13655,116370 +56644,234,1,15090,77869 +56645,234,1,49609,37362 +56646,204,9,377158,1648278 +56647,226,2,294254,1571509 +56648,387,10,202241,225557 +56649,77,10,18597,59077 +56650,289,6,116711,1455610 +56651,273,7,60935,7229 +56652,234,1,36915,18500 +56653,317,10,54156,1196803 +56654,164,3,228066,1546755 +56655,387,10,49712,81782 +56656,269,9,241855,1325209 +56657,148,9,115109,8508 +56658,413,11,50725,10394 +56659,232,10,18082,1857204 +56660,273,7,12279,2294 +56661,269,9,1662,20214 +56662,25,2,408616,1311618 +56663,413,11,85446,57176 +56664,387,10,62036,5811 +56665,333,2,263115,1431553 +56666,5,10,15356,78138 +56667,148,9,4986,12437 +56668,3,5,14254,548400 +56669,317,10,350060,1291496 +56670,317,10,32901,478645 +56671,317,10,168541,1413863 +56672,373,7,8464,1397295 +56673,317,10,21435,64913 +56674,209,7,76203,1393453 +56675,324,3,231176,114366 +56676,373,7,76163,137125 +56677,413,11,9889,58188 +56678,317,10,31919,90661 +56679,289,6,188161,1452991 +56680,373,7,10201,1377220 +56681,403,10,134201,189089 +56682,3,5,65044,12667 +56683,25,2,266856,1421642 +56684,234,1,88176,2094 +56685,235,5,11607,1402167 +56686,158,2,7299,1433740 +56687,148,9,8053,54760 +56688,187,11,14254,1050930 +56689,175,5,301875,35918 +56690,269,9,11917,962731 +56691,175,5,36094,1392106 +56692,387,10,15263,50302 +56693,53,2,10543,25213 +56694,198,6,201085,1572869 +56695,344,9,2567,1582392 +56696,3,5,351365,1454780 +56697,53,2,365222,64429 +56698,198,6,351901,1558716 +56699,209,7,55534,1337419 +56700,394,7,17771,1018349 +56701,60,1,79372,1413995 +56702,208,2,188161,15017 +56703,413,11,10749,19918 +56704,262,6,301875,1512734 +56705,226,2,345922,582811 +56706,234,1,74714,24492 +56707,53,2,19995,8527 +56708,234,1,358199,67451 +56709,13,3,57089,1450364 +56710,317,10,94744,259027 +56711,3,5,334,2950 +56712,53,2,336691,1547714 +56713,387,10,28761,38240 +56714,204,9,171738,1312454 +56715,175,5,22279,1713001 +56716,413,11,18047,1267110 +56717,234,1,83865,931252 +56718,234,1,74527,83455 +56719,3,5,7305,5708 +56720,3,5,10044,26731 +56721,3,5,84508,57726 +56722,234,1,33916,574389 +56723,413,11,3870,4667 +56724,387,10,1282,4319 +56725,234,1,80264,589089 +56726,387,10,245891,1076800 +56727,413,11,2102,21557 +56728,204,9,15013,77694 +56729,234,1,19623,1731198 +56730,204,9,374473,1650265 +56731,148,9,19996,1764147 +56732,43,2,285858,1456316 +56733,413,11,120831,29971 +56734,273,7,99261,29501 +56735,301,5,10796,1438584 +56736,5,10,11706,20875 +56737,3,5,134350,135383 +56738,317,10,36971,116583 +56739,87,7,359412,567462 +56740,317,10,14923,162371 +56741,175,5,613,124703 +56742,234,1,20674,62020 +56743,3,5,62761,1267326 +56744,373,7,10391,1404840 +56745,105,7,19898,55169 +56746,234,1,238436,590591 +56747,234,1,96118,6648 +56748,250,11,435,1418487 +56749,317,10,45167,132360 +56750,387,10,11561,1243 +56751,413,11,259292,8715 +56752,87,7,89492,1008052 +56753,317,10,126523,1118009 +56754,61,7,924,1551665 +56755,413,11,20646,35802 +56756,234,1,42725,102429 +56757,328,6,58244,1425387 +56758,387,10,31445,115869 +56759,317,10,82968,5269 +56760,179,2,263115,1328407 +56761,413,11,10047,998 +56762,234,1,78403,583932 +56763,387,10,3563,13235 +56764,273,7,3549,32717 +56765,234,1,33558,1028305 +56766,387,10,16638,92720 +56767,273,7,91571,19607 +56768,3,5,77964,2774 +56769,155,3,25376,414697 +56770,234,1,12106,7623 +56771,328,6,274479,1608776 +56772,204,9,30996,549532 +56773,360,3,76163,1368862 +56774,179,2,227306,1330048 +56775,196,7,14476,1411668 +56776,387,10,10539,7933 +56777,105,7,4550,37930 +56778,269,9,347031,1644450 +56779,74,5,26882,1773267 +56780,20,2,693,1567949 +56781,166,9,11618,1378162 +56782,108,10,337958,75542 +56783,273,7,1586,17767 +56784,5,10,284154,1347206 +56785,204,9,295964,1327142 +56786,317,10,356486,1522131 +56787,3,5,283711,1016306 +56788,277,3,120837,13339 +56789,269,9,2105,21589 +56790,317,10,336549,1134706 +56791,273,7,108723,1265087 +56792,5,10,70074,490 +56793,273,7,12230,57337 +56794,75,5,1877,1472554 +56795,234,1,118991,51575 +56796,234,1,157424,138557 +56797,208,2,26656,1440856 +56798,103,6,38579,1454410 +56799,269,9,283445,1128347 +56800,222,6,3933,1448077 +56801,5,10,174925,1359841 +56802,113,9,399790,1830182 +56803,166,9,11521,1538218 +56804,328,6,1624,578778 +56805,298,5,76170,1399071 +56806,394,7,157847,92380 +56807,317,10,15527,103009 +56808,12,10,293660,1222480 +56809,413,11,88273,64954 +56810,53,2,469172,1112004 +56811,198,6,293660,1543227 +56812,52,10,19618,84942 +56813,387,10,12606,73079 +56814,328,6,9457,1421724 +56815,413,11,72711,1058761 +56816,3,5,601,9965 +56817,413,11,157354,589094 +56818,310,3,245597,1284295 +56819,234,1,18598,591410 +56820,187,11,11370,1379983 +56821,102,3,95516,1411138 +56822,373,7,11688,83091 +56823,108,10,48231,12952 +56824,53,2,258193,17854 +56825,52,10,182415,1171334 +56826,269,9,344039,40835 +56827,220,7,17057,34227 +56828,333,2,340215,1630277 +56829,60,1,975,1317887 +56830,413,11,40041,1311675 +56831,387,10,27873,133882 +56832,234,1,85793,58160 +56833,413,11,31128,16567 +56834,234,1,231616,1131199 +56835,273,7,26889,1640210 +56836,234,1,43503,71788 +56837,208,2,273481,1315700 +56838,413,11,33613,580707 +56839,234,1,197737,82413 +56840,105,7,36960,28155 +56841,333,2,46145,1066814 +56842,317,10,177104,28256 +56843,234,1,43562,8823 +56844,132,2,312221,1421236 +56845,286,3,15936,78978 +56846,5,10,68737,1123892 +56847,269,9,53150,20786 +56848,413,11,66812,11528 +56849,397,7,14430,1486159 +56850,3,5,193523,79975 +56851,234,1,393659,109680 +56852,273,7,278316,1001932 +56853,368,7,2321,142167 +56854,269,9,71825,1036998 +56855,287,3,19901,1418799 +56856,158,2,11377,1405728 +56857,3,5,204802,557280 +56858,413,11,75229,1050348 +56859,160,3,169,93887 +56860,196,7,1950,1407878 +56861,387,10,9292,1726 +56862,324,3,41213,1777178 +56863,234,1,333385,79279 +56864,234,1,237672,584624 +56865,262,6,334527,1097817 +56866,234,1,332079,49064 +56867,317,10,46738,137427 +56868,97,7,353686,1558855 +56869,387,10,11902,15254 +56870,181,7,11472,1562444 +56871,234,1,339526,95255 +56872,3,5,345925,66228 +56873,3,5,10821,68829 +56874,413,11,10041,118901 +56875,234,1,187993,1054825 +56876,208,2,75174,21257 +56877,317,10,41479,126910 +56878,317,10,15759,147012 +56879,203,1,398289,1384398 +56880,286,3,343140,1355346 +56881,104,7,1647,1752656 +56882,234,1,13591,89296 +56883,105,7,24559,1511450 +56884,413,11,60281,1409532 +56885,182,8,1125,1549073 +56886,175,5,2047,1562216 +56887,234,1,76142,496347 +56888,250,11,285270,928336 +56889,387,10,279096,1262833 +56890,317,10,51267,143622 +56891,234,1,10873,17279 +56892,234,1,17100,81237 +56893,34,8,10529,1567319 +56894,317,10,376716,86861 +56895,317,10,133783,1631 +56896,234,1,76493,6767 +56897,387,10,2085,21348 +56898,209,7,3682,1408706 +56899,387,10,40765,124549 +56900,317,10,21435,21175 +56901,387,10,10137,11614 +56902,301,5,10491,34194 +56903,234,1,118497,588925 +56904,182,8,70074,1393400 +56905,234,1,11516,20030 +56906,234,1,147876,8823 +56907,158,2,272693,1709323 +56908,403,10,62764,38748 +56909,234,1,91261,58728 +56910,413,11,242131,29343 +56911,166,9,264560,1387539 +56912,317,10,84473,88820 +56913,317,10,329440,1114792 +56914,289,6,98566,1455598 +56915,53,2,55604,9064 +56916,234,1,76411,55790 +56917,217,3,10178,18391 +56918,268,7,287,1534833 +56919,209,7,11547,1404546 +56920,141,7,9425,1566831 +56921,3,5,32628,10522 +56922,273,7,11048,18837 +56923,234,1,241302,130023 +56924,387,10,84892,19311 +56925,373,7,70074,1407354 +56926,3,5,19918,1590 +56927,387,10,2124,21808 +56928,388,9,10733,1336949 +56929,5,10,28209,91574 +56930,10,3,142402,1789018 +56931,3,5,5965,42370 +56932,204,9,11247,75653 +56933,262,6,274479,1395027 +56934,398,9,227306,1866265 +56935,10,3,378441,1797470 +56936,182,8,17609,1106181 +56937,262,6,8619,1377225 +56938,204,9,4982,27040 +56939,387,10,32635,109356 +56940,158,2,15019,1555667 +56941,20,2,351901,1558719 +56942,373,7,17609,1392211 +56943,413,11,330947,1409532 +56944,77,10,6183,48493 +56945,317,10,429838,1734267 +56946,317,10,42139,931316 +56947,332,8,9928,1805174 +56948,327,7,192558,1682058 +56949,3,5,53354,54197 +56950,387,10,3933,1300 +56951,52,10,77165,563076 +56952,3,5,33680,3637 +56953,291,6,9914,1539293 +56954,188,8,9716,1661551 +56955,113,9,240832,1367807 +56956,269,9,10739,23966 +56957,234,1,340027,1397970 +56958,179,2,522,1328134 +56959,413,11,354133,1496077 +56960,269,9,87827,960435 +56961,166,9,18843,1397687 +56962,333,2,53150,1746082 +56963,289,6,84617,173622 +56964,416,10,45213,132489 +56965,196,7,228066,1337408 +56966,269,9,49038,25748 +56967,287,3,74,1196136 +56968,148,9,1073,5633 +56969,394,7,9441,1399116 +56970,234,1,31915,13776 +56971,333,2,6973,1317041 +56972,3,5,25385,4308 +56973,317,10,69727,556937 +56974,3,5,24341,4614 +56975,234,1,364410,1524268 +56976,83,2,2978,1322087 +56977,360,3,11370,1440479 +56978,234,1,50387,27875 +56979,387,10,12450,34197 +56980,5,10,57005,1643506 +56981,234,1,86543,56828 +56982,3,5,88922,1427704 +56983,3,5,57996,9081 +56984,413,11,209293,1042439 +56985,317,10,25132,2294 +56986,196,7,10193,1484178 +56987,269,9,1049,5709 +56988,415,3,28482,100807 +56989,387,10,13986,1661254 +56990,273,7,1810,10536 +56991,269,9,152748,139145 +56992,287,3,28902,1671052 +56993,317,10,76341,1027146 +56994,234,1,390880,1460387 +56995,234,1,83195,895870 +56996,204,9,140607,23773 +56997,188,8,9504,1530326 +56998,317,10,35926,10147 +56999,263,11,2897,139220 +57000,174,6,1995,1556438 +57001,387,10,35304,506516 +57002,234,1,50779,1884 +57003,277,3,103215,1033144 +57004,208,2,20432,1315691 +57005,403,10,29260,46713 +57006,187,11,314065,1341734 +57007,273,7,457,6243 +57008,53,2,18616,1176359 +57009,273,7,284296,4719 +57010,3,5,45215,98501 +57011,147,1,3059,1747112 +57012,52,10,8942,225557 +57013,203,1,437253,1744993 +57014,387,10,2998,133420 +57015,3,5,38031,12235 +57016,210,9,418437,1816406 +57017,269,9,288952,1483951 +57018,273,7,42040,24717 +57019,357,3,228066,1548958 +57020,234,1,18569,31497 +57021,52,10,43346,21008 +57022,3,5,414910,1473910 +57023,413,11,29263,1070260 +57024,387,10,76211,261037 +57025,189,3,49009,1437718 +57026,148,9,4825,10918 +57027,3,5,12158,7413 +57028,3,5,12104,10717 +57029,75,5,353686,1639571 +57030,273,7,12255,51939 +57031,269,9,39979,1191532 +57032,387,10,27443,34204 +57033,234,1,343693,970445 +57034,269,9,87827,5329 +57035,413,11,1942,20106 +57036,113,9,511,1487206 +57037,198,6,10066,1584252 +57038,269,9,118957,62744 +57039,132,2,284564,1402475 +57040,97,7,74,1077782 +57041,273,7,40047,65681 +57042,58,2,11639,1825212 +57043,328,6,10929,1394958 +57044,387,10,8844,56521 +57045,204,9,121234,120450 +57046,75,5,99861,1510440 +57047,234,1,29138,5125 +57048,387,10,43783,29347 +57049,413,11,332283,17792 +57050,262,6,388243,1427317 +57051,106,3,90616,1408596 +57052,147,1,427680,1758541 +57053,234,1,82626,914284 +57054,287,3,14510,98471 +57055,415,3,52728,111969 +57056,232,10,32093,103049 +57057,317,10,336149,1581195 +57058,53,2,80720,10153 +57059,176,3,12103,1625918 +57060,52,10,92393,1125957 +57061,75,5,382155,1616976 +57062,387,10,18208,408745 +57063,360,3,289712,1452334 +57064,53,2,2978,9255 +57065,40,1,384737,405825 +57066,108,10,15310,2432 +57067,3,5,35292,16732 +57068,317,10,95453,96631 +57069,234,1,141489,11857 +57070,387,10,100088,12342 +57071,269,9,216580,1395214 +57072,234,1,191476,98521 +57073,333,2,206647,1551803 +57074,286,3,331075,25240 +57075,234,1,38654,149929 +57076,127,3,11697,190776 +57077,333,2,388243,1622339 +57078,273,7,274060,17667 +57079,234,1,55725,17867 +57080,387,10,175924,166816 +57081,73,7,3035,3946 +57082,234,1,80089,1062641 +57083,180,7,1966,1733796 +57084,333,2,5991,1523498 +57085,387,10,177047,1159347 +57086,198,6,294272,1569334 +57087,317,10,68004,554178 +57088,97,7,46261,1391525 +57089,213,10,39415,38397 +57090,387,10,175386,30548 +57091,60,1,8870,1153775 +57092,52,10,44896,932 +57093,273,7,2786,3529 +57094,317,10,52772,4181 +57095,273,7,11799,3535 +57096,3,5,24331,56983 +57097,290,1,60160,1069792 +57098,52,10,33336,111306 +57099,99,3,38034,119471 +57100,60,1,117,72974 +57101,413,11,15371,78369 +57102,5,10,61049,80728 +57103,234,1,25768,94180 +57104,269,9,7220,34858 +57105,273,7,45489,554494 +57106,349,1,10857,1229003 +57107,209,7,69,1390536 +57108,20,2,337339,1725741 +57109,234,1,135390,70069 +57110,319,1,9902,1840721 +57111,158,2,209112,1463804 +57112,179,2,44129,1521472 +57113,317,10,50108,1089579 +57114,3,5,27003,34438 +57115,209,7,238589,1345268 +57116,269,9,245700,1335159 +57117,3,5,1073,1209263 +57118,325,5,241258,1018904 +57119,234,1,382995,100622 +57120,273,7,42640,958941 +57121,273,7,102629,1031252 +57122,317,10,88564,1159419 +57123,232,10,264309,33247 +57124,3,5,2577,26192 +57125,413,11,12594,65326 +57126,234,1,141733,221202 +57127,317,10,129332,160124 +57128,273,7,296225,1352955 +57129,23,9,297762,1514614 +57130,234,1,72933,55785 +57131,387,10,11677,150094 +57132,286,3,38787,10522 +57133,226,2,312221,1428583 +57134,234,1,76094,37360 +57135,204,9,263115,1757601 +57136,387,10,16135,51918 +57137,387,10,296524,112014 +57138,387,10,33009,1193826 +57139,317,10,34469,990928 +57140,46,5,238,1546904 +57141,234,1,339419,71872 +57142,388,9,227306,1866283 +57143,239,5,392818,1754086 +57144,53,2,50759,1493678 +57145,262,6,328429,1636715 +57146,32,8,263115,1821948 +57147,166,9,218778,1535425 +57148,234,1,24081,12698 +57149,387,10,43142,201165 +57150,328,6,7515,1396311 +57151,413,11,17577,61992 +57152,413,11,1956,1892 +57153,53,2,116979,1320908 +57154,403,10,59803,14744 +57155,305,9,10204,1855058 +57156,317,10,34496,1320556 +57157,413,11,43773,399947 +57158,3,5,83185,10038 +57159,273,7,159128,1298750 +57160,349,1,9982,1447483 +57161,394,7,858,1472169 +57162,387,10,82631,84061 +57163,234,1,437830,231866 +57164,165,9,102629,1429343 +57165,5,10,351365,226654 +57166,413,11,130272,1434856 +57167,234,1,13285,4147 +57168,317,10,58309,40302 +57169,317,10,64454,1367231 +57170,196,7,10724,1368865 +57171,204,9,167073,26143 +57172,387,10,1859,12362 +57173,273,7,268920,23486 +57174,5,10,27543,95962 +57175,234,1,82696,5065 +57176,317,10,456781,1734385 +57177,269,9,9835,1260 +57178,357,3,10632,1570163 +57179,413,11,60665,25142 +57180,317,10,18214,1152110 +57181,317,10,264646,1214713 +57182,105,7,15258,83345 +57183,387,10,310602,42095 +57184,415,3,2186,11471 +57185,3,5,31773,33225 +57186,204,9,809,12092 +57187,413,11,55700,1133613 +57188,127,3,72105,1455499 +57189,234,1,36211,20660 +57190,289,6,12593,160010 +57191,234,1,74395,1042875 +57192,105,7,108048,1381305 +57193,97,7,44115,17428 +57194,203,1,8870,1392737 +57195,196,7,44943,113081 +57196,105,7,351901,1186278 +57197,360,3,2503,1333153 +57198,154,3,2897,19460 +57199,286,3,144271,1120642 +57200,413,11,43877,1029784 +57201,387,10,9928,23766 +57202,234,1,304336,586136 +57203,179,2,34496,1320562 +57204,387,10,326,19656 +57205,273,7,63360,1441127 +57206,187,11,154972,1742989 +57207,269,9,178809,1018348 +57208,349,1,9325,137180 +57209,387,10,60457,106476 +57210,360,3,10299,1588450 +57211,234,1,22477,1243 +57212,158,2,85350,959477 +57213,413,11,369524,1732 +57214,333,2,17495,559186 +57215,413,11,68179,1273226 +57216,127,3,28090,1436539 +57217,413,11,29259,11532 +57218,53,2,29698,1157795 +57219,234,1,65280,1136101 +57220,5,10,18890,1109914 +57221,317,10,104931,3776 +57222,203,1,37936,1415155 +57223,234,1,101904,1029284 +57224,317,10,292014,1404563 +57225,234,1,30379,84981 +57226,387,10,326285,1217611 +57227,413,11,13848,1318157 +57228,273,7,153,1779 +57229,105,7,77986,565318 +57230,105,7,50318,1095529 +57231,203,1,9457,1421755 +57232,52,10,37126,61821 +57233,75,5,37628,956123 +57234,234,1,11655,10828 +57235,234,1,22504,239033 +57236,317,10,64167,10783 +57237,203,1,313922,1616451 +57238,357,3,329865,113126 +57239,60,1,43828,134804 +57240,413,11,76203,999565 +57241,317,10,142375,9956 +57242,52,10,28564,149130 +57243,345,7,310888,1369376 +57244,187,11,201085,1389534 +57245,99,3,8467,55164 +57246,234,1,77412,84034 +57247,234,1,37098,48506 +57248,289,6,80928,148152 +57249,333,2,32684,4352 +57250,387,10,257344,132315 +57251,234,1,121888,1050991 +57252,234,1,19754,17167 +57253,239,5,146243,1497081 +57254,387,10,28068,72891 +57255,387,10,153717,130212 +57256,105,7,406052,1131168 +57257,190,7,159667,1849505 +57258,234,1,46570,233343 +57259,269,9,95516,61935 +57260,234,1,182349,85357 +57261,169,3,7551,1399863 +57262,317,10,280674,1338521 +57263,141,7,10178,1592140 +57264,333,2,19912,1441392 +57265,234,1,14108,130141 +57266,105,7,3937,34276 +57267,387,10,71825,73194 +57268,234,1,288281,130750 +57269,234,1,319924,61244 +57270,319,1,403605,1771810 +57271,136,1,10921,1402124 +57272,317,10,233487,1106192 +57273,234,1,62130,234839 +57274,269,9,45562,999552 +57275,105,7,10748,46863 +57276,273,7,264454,567995 +57277,239,5,71329,1605716 +57278,53,2,12499,6192 +57279,226,2,949,8870 +57280,304,10,148265,1804530 +57281,3,5,341174,892 +57282,387,10,238985,935847 +57283,373,7,169,137125 +57284,402,11,177572,1018965 +57285,234,1,123103,86500 +57286,158,2,177677,1545915 +57287,387,10,90992,94050 +57288,53,2,332794,1030406 +57289,234,1,76084,87700 +57290,3,5,51371,14410 +57291,296,3,8869,1327403 +57292,239,5,3580,371 +57293,380,3,12,56270 +57294,204,9,17258,959360 +57295,3,5,102961,1188915 +57296,203,1,49013,1609031 +57297,234,1,21533,105746 +57298,239,5,58060,1630068 +57299,413,11,225285,1431134 +57300,182,8,98277,1849148 +57301,387,10,46228,1059621 +57302,413,11,13954,57326 +57303,286,3,335970,1374810 +57304,298,5,21786,1412132 +57305,269,9,242090,1417312 +57306,328,6,921,1056758 +57307,286,3,11697,1600048 +57308,273,7,12704,10771 +57309,234,1,31445,89669 +57310,87,7,35052,1553486 +57311,245,3,148284,232527 +57312,175,5,334,1411293 +57313,3,5,112991,1394059 +57314,204,9,45827,12869 +57315,317,10,292033,1378827 +57316,60,1,299165,1499132 +57317,53,2,11658,1296340 +57318,387,10,289712,66074 +57319,148,9,107250,64610 +57320,234,1,53949,55692 +57321,239,5,74,1476175 +57322,413,11,22894,11410 +57323,273,7,13411,25362 +57324,317,10,50387,27875 +57325,53,2,10549,13009 +57326,204,9,111960,1305153 +57327,317,10,34013,53428 +57328,234,1,42062,81165 +57329,53,2,369894,1148633 +57330,75,5,15472,22326 +57331,317,10,14369,85781 +57332,5,10,11524,71348 +57333,232,10,63858,115848 +57334,234,1,53805,229269 +57335,234,1,9457,7775 +57336,277,3,127585,405004 +57337,269,9,24810,1318880 +57338,234,1,389614,1176196 +57339,52,10,67377,5810 +57340,234,1,79995,81874 +57341,234,1,198652,146225 +57342,3,5,56601,1201225 +57343,413,11,65887,9958 +57344,196,7,362057,1601199 +57345,105,7,399106,229620 +57346,105,7,13823,947 +57347,413,11,9717,11454 +57348,200,3,302828,1309897 +57349,204,9,118121,11836 +57350,234,1,53514,24989 +57351,314,2,16996,1532735 +57352,317,10,269494,1771406 +57353,234,1,8906,4617 +57354,387,10,356191,591426 +57355,67,10,435,1463300 +57356,317,10,305127,92743 +57357,273,7,15170,7182 +57358,3,5,340881,1288894 +57359,190,7,1251,1377126 +57360,3,5,277968,5639 +57361,232,10,52782,27905 +57362,52,10,10020,1083425 +57363,3,5,254918,5506 +57364,333,2,384737,1825449 +57365,317,10,4923,19665 +57366,53,2,19200,6348 +57367,160,3,28739,1407881 +57368,413,11,28893,64729 +57369,333,2,1579,42028 +57370,273,7,13855,120900 +57371,213,10,16661,103444 +57372,413,11,320453,1716781 +57373,234,1,132601,1291685 +57374,234,1,24624,17247 +57375,387,10,273510,158768 +57376,273,7,796,1999 +57377,413,11,76341,58067 +57378,3,5,361571,967179 +57379,387,10,61151,1369247 +57380,143,7,266285,1312810 +57381,376,10,59434,18565 +57382,360,3,6171,1070152 +57383,234,1,461088,1005696 +57384,273,7,429174,1180402 +57385,333,2,815,15879 +57386,387,10,172385,967321 +57387,373,7,2046,1399861 +57388,387,10,45671,133421 +57389,413,11,30644,1338152 +57390,168,3,293167,1759738 +57391,52,10,92393,155011 +57392,413,11,10740,66732 +57393,234,1,94807,113411 +57394,198,6,337339,1725770 +57395,273,7,11035,3098 +57396,387,10,260094,67164 +57397,234,1,144613,145605 +57398,258,9,9502,1452488 +57399,53,2,38920,75455 +57400,198,6,333371,1636665 +57401,317,10,37653,41029 +57402,53,2,32868,1300336 +57403,234,1,511,2801 +57404,394,7,28893,1376514 +57405,269,9,44578,1251307 +57406,317,10,367492,1533694 +57407,204,9,309820,1700494 +57408,317,10,43544,129569 +57409,234,1,156,1176 +57410,387,10,11380,69042 +57411,234,1,239056,87191 +57412,234,1,58646,145304 +57413,269,9,82624,928299 +57414,413,11,5544,612897 +57415,234,1,396330,1637776 +57416,5,10,28303,30533 +57417,250,11,333371,1636676 +57418,387,10,118444,19459 +57419,3,5,5165,27861 +57420,3,5,11362,8846 +57421,398,9,1381,1384359 +57422,373,7,1950,1368864 +57423,317,10,180644,1163138 +57424,262,6,102382,1360107 +57425,5,10,83501,1525326 +57426,273,7,74437,4345 +57427,387,10,306323,93002 +57428,60,1,35,1447342 +57429,160,3,11024,15024 +57430,5,10,131478,1058553 +57431,387,10,222461,62768 +57432,234,1,140554,28596 +57433,105,7,127544,57304 +57434,204,9,1637,7717 +57435,317,10,27283,218637 +57436,256,3,9928,1805170 +57437,160,3,19901,1418813 +57438,286,3,79435,50539 +57439,289,6,72105,1455537 +57440,5,10,28,8327 +57441,234,1,9423,58338 +57442,143,7,246655,1360099 +57443,234,1,19042,71852 +57444,108,10,293085,1360865 +57445,234,1,116312,37493 +57446,176,3,8470,1598750 +57447,164,3,9785,1558713 +57448,204,9,9016,1653447 +57449,317,10,270851,1321928 +57450,317,10,241140,1276274 +57451,3,5,89647,17761 +57452,413,11,13667,56944 +57453,64,6,15060,1448082 +57454,289,6,32428,1208204 +57455,234,1,295588,19152 +57456,269,9,104462,11523 +57457,105,7,125513,66157 +57458,268,7,201085,1561360 +57459,59,3,18,1735467 +57460,5,10,1959,8327 +57461,413,11,58251,227565 +57462,387,10,204040,14646 +57463,75,5,9457,1293526 +57464,387,10,28263,56191 +57465,188,8,383914,1622039 +57466,387,10,26581,90077 +57467,204,9,84720,1451399 +57468,204,9,50780,966515 +57469,3,5,10379,9573 +57470,13,3,38317,1436958 +57471,387,10,155011,129059 +57472,203,1,76333,1506445 +57473,234,1,64407,130630 +57474,53,2,266856,1318478 +57475,317,10,47226,118772 +57476,219,11,10440,1429549 +57477,387,10,84340,210160 +57478,409,7,186869,1862957 +57479,53,2,158598,1008510 +57480,273,7,88486,14807 +57481,45,9,291413,1778363 +57482,175,5,277355,1495872 +57483,60,1,102384,144397 +57484,96,2,291413,1298017 +57485,108,10,54022,74579 +57486,238,7,233639,1448255 +57487,234,1,25403,69488 +57488,269,9,262841,7236 +57489,87,7,445993,13163 +57490,317,10,32694,10713 +57491,394,7,443319,1397198 +57492,269,9,140032,40 +57493,324,3,29272,150337 +57494,167,3,2567,1417843 +57495,269,9,9016,56613 +57496,269,9,109391,928299 +57497,317,10,184345,56908 +57498,203,1,189,1401155 +57499,77,10,10841,67071 +57500,179,2,193756,9493 +57501,148,9,242224,1410544 +57502,301,5,88273,1402252 +57503,196,7,198663,113075 +57504,204,9,195796,1714353 +57505,413,11,30034,106503 +57506,234,1,47046,69759 +57507,196,7,7220,1400093 +57508,175,5,1578,1194262 +57509,53,2,54287,1085452 +57510,53,2,10275,64694 +57511,413,11,137504,1313750 +57512,155,3,76341,4501 +57513,5,10,73194,1085187 +57514,387,10,63899,932873 +57515,160,3,243940,92484 +57516,234,1,68569,6818 +57517,413,11,80280,28500 +57518,262,6,126090,1550226 +57519,413,11,70667,142006 +57520,413,11,242,154 +57521,105,7,177572,1463824 +57522,182,8,76757,1558697 +57523,148,9,9028,1757600 +57524,85,10,298931,470 +57525,169,3,286657,1354701 +57526,203,1,5922,1213763 +57527,273,7,122677,1427884 +57528,317,10,44389,5656 +57529,204,9,6643,10641 +57530,319,1,12103,1861318 +57531,317,10,324173,933410 +57532,169,3,37936,1707453 +57533,269,9,154019,937191 +57534,204,9,140607,1427500 +57535,396,3,297762,1903923 +57536,234,1,78340,146357 +57537,204,9,9945,1322413 +57538,53,2,10071,62830 +57539,203,1,10724,114512 +57540,387,10,23367,18342 +57541,277,7,44655,31874 +57542,243,3,55534,1404729 +57543,387,10,55725,563749 +57544,234,1,256628,147792 +57545,208,2,383538,1776279 +57546,286,3,32085,110545 +57547,234,1,112044,232631 +57548,397,7,198993,635 +57549,3,5,12716,20593 +57550,387,10,46875,26959 +57551,75,5,7299,117222 +57552,317,10,220820,1206152 +57553,60,1,16638,8928 +57554,52,10,109213,107301 +57555,158,2,1125,1378246 +57556,232,10,42325,103360 +57557,3,5,83229,1112003 +57558,3,5,34723,492 +57559,204,9,69605,12346 +57560,158,2,109439,1357068 +57561,273,7,14829,554860 +57562,3,5,239566,5582 +57563,75,5,51250,1721878 +57564,160,3,266856,1340728 +57565,52,10,43645,4818 +57566,3,5,293625,102474 +57567,52,10,56901,225149 +57568,317,10,20715,1216671 +57569,52,10,12,61747 +57570,317,10,46286,178452 +57571,273,7,46278,27439 +57572,269,9,17209,33146 +57573,160,3,8247,142325 +57574,53,2,45714,31060 +57575,209,7,8292,1341813 +57576,99,3,1976,6593 +57577,317,10,16417,83460 +57578,234,1,81616,544812 +57579,413,11,47426,1740003 +57580,413,11,714,10752 +57581,52,10,15875,105568 +57582,234,1,37570,238940 +57583,127,3,16442,8245 +57584,176,3,10066,1412739 +57585,349,1,109329,564041 +57586,387,10,36373,233221 +57587,77,10,9677,25509 +57588,204,9,149465,1388811 +57589,273,7,14873,49285 +57590,53,2,606,5671 +57591,53,2,52661,960058 +57592,234,1,35656,137477 +57593,234,1,195867,175726 +57594,182,8,413762,1811614 +57595,160,3,45610,201202 +57596,317,10,244610,1284498 +57597,317,10,38579,29011 +57598,53,2,9977,3502 +57599,234,1,31675,70308 +57600,314,2,241258,1795856 +57601,413,11,335970,1457827 +57602,317,10,29471,70914 +57603,157,3,14589,11436 +57604,234,1,141819,142670 +57605,204,9,2274,23491 +57606,289,6,9514,1642561 +57607,5,10,43489,1113742 +57608,328,6,297762,1394298 +57609,234,1,42553,100036 +57610,226,2,19995,1452643 +57611,105,7,24405,215516 +57612,273,7,9079,1213 +57613,346,3,1647,1415584 +57614,3,5,99351,12307 +57615,413,11,128669,1008599 +57616,273,7,12205,71645 +57617,317,10,348507,42460 +57618,360,3,293660,1440403 +57619,52,10,15239,78021 +57620,203,1,283445,1129907 +57621,328,6,4413,1395362 +57622,273,7,218508,71029 +57623,413,11,83995,12009 +57624,387,10,11777,55373 +57625,204,9,41211,1398084 +57626,53,2,107250,1517110 +57627,204,9,16176,10183 +57628,289,6,257344,1473413 +57629,234,1,156389,582417 +57630,234,1,177203,30310 +57631,301,5,334,130533 +57632,196,7,332567,222362 +57633,333,2,285270,1367922 +57634,413,11,60807,1414869 +57635,317,10,48156,139930 +57636,187,11,6973,1352966 +57637,333,2,58372,1336188 +57638,3,5,10268,64535 +57639,273,7,88529,1487840 +57640,273,7,44591,4681 +57641,77,10,16231,927790 +57642,204,9,66193,969405 +57643,411,9,227306,9583 +57644,387,10,80324,43553 +57645,3,5,36992,1485183 +57646,387,10,63179,232632 +57647,122,8,7551,1526477 +57648,398,9,26636,7440 +57649,413,11,77012,127678 +57650,413,11,264555,1396779 +57651,317,10,15036,56837 +57652,234,1,10611,20400 +57653,3,5,81475,1039560 +57654,360,3,12103,1337452 +57655,413,11,90001,1563383 +57656,387,10,42634,10911 +57657,273,7,64936,1117286 +57658,413,11,294690,1367211 +57659,45,9,11855,1470177 +57660,273,7,2071,37 +57661,46,5,52454,1192147 +57662,317,10,158750,72999 +57663,286,3,260030,1331827 +57664,75,5,13056,1556535 +57665,127,3,18405,59294 +57666,234,1,317557,6495 +57667,5,10,46992,1836132 +57668,273,7,3115,18609 +57669,52,10,58051,35086 +57670,13,9,41213,1777203 +57671,203,1,15472,1455311 +57672,387,10,37719,10792 +57673,317,10,109441,19094 +57674,60,1,296288,1839935 +57675,317,10,89325,133580 +57676,108,10,53761,14687 +57677,327,7,14430,1446757 +57678,269,9,50725,21747 +57679,53,2,4547,605 +57680,105,7,33273,1521813 +57681,302,9,271404,1764795 +57682,234,1,13549,29648 +57683,204,9,24624,1346937 +57684,387,10,5491,43608 +57685,306,7,80276,1662265 +57686,85,10,22784,1559393 +57687,209,7,71859,1357599 +57688,224,3,14019,76262 +57689,148,9,22477,18173 +57690,244,3,13823,75805 +57691,387,10,317214,236058 +57692,234,1,14273,1081559 +57693,198,6,445993,1808042 +57694,3,5,1926,20034 +57695,97,7,20438,1514676 +57696,3,5,131360,70821 +57697,60,1,43457,1008625 +57698,3,5,29787,104876 +57699,387,10,108,1126 +57700,317,10,126841,126 +57701,269,9,109424,943313 +57702,186,6,227306,1866260 +57703,75,5,8247,1399927 +57704,269,9,8842,1327912 +57705,273,7,11553,105397 +57706,273,7,72648,44606 +57707,226,2,13834,1460755 +57708,234,1,73247,83198 +57709,317,10,24403,91584 +57710,175,5,1271,1392106 +57711,179,2,2662,1322423 +57712,52,10,109451,155267 +57713,234,1,274060,76381 +57714,387,10,26518,56383 +57715,105,7,29020,551674 +57716,188,8,4248,1537510 +57717,273,7,177043,10468 +57718,269,9,264560,1357610 +57719,415,3,9514,1642508 +57720,5,10,63505,1803428 +57721,317,10,121530,121516 +57722,113,9,266856,1465937 +57723,317,10,51548,145024 +57724,209,7,238,3106 +57725,317,10,44943,141682 +57726,317,10,74661,66109 +57727,72,11,9441,7230 +57728,415,3,56599,111969 +57729,387,10,234868,82334 +57730,317,10,221981,1069957 +57731,413,11,47876,51379 +57732,303,3,435,402272 +57733,234,1,68797,113601 +57734,317,10,74950,24446 +57735,234,1,382170,55785 +57736,113,9,209112,1408294 +57737,273,7,12764,58438 +57738,234,1,73723,124748 +57739,190,7,329865,1646498 +57740,3,5,8398,54846 +57741,387,10,300187,71338 +57742,54,10,148265,1804530 +57743,376,10,84496,930785 +57744,234,1,74935,1197814 +57745,148,9,922,15429 +57746,220,7,22584,17915 +57747,5,10,228647,1562782 +57748,317,10,208529,232246 +57749,67,10,169934,56339 +57750,75,5,98066,1515482 +57751,196,7,216580,1395220 +57752,198,6,227306,1866330 +57753,317,10,253192,86860 +57754,183,5,634,1405241 +57755,387,10,20646,28773 +57756,234,1,258751,260050 +57757,413,11,39013,53713 +57758,53,2,169,7719 +57759,87,7,293660,1471726 +57760,387,10,53864,84237 +57761,5,10,15944,31017 +57762,234,1,53648,34264 +57763,398,9,76203,1393437 +57764,268,7,9532,1401631 +57765,317,10,21712,90156 +57766,413,11,24625,310 +57767,3,5,6557,5708 +57768,53,2,124115,13866 +57769,394,7,20648,65937 +57770,127,3,1991,23285 +57771,203,1,12454,1412126 +57772,234,1,134480,2917 +57773,387,10,11889,444552 +57774,373,7,93856,1392969 +57775,97,7,60599,1170025 +57776,3,5,147618,128624 +57777,262,6,9457,1399287 +57778,53,2,890,14621 +57779,234,1,133523,17582 +57780,413,11,246741,1128841 +57781,273,7,28068,72894 +57782,387,10,266044,19896 +57783,269,9,147106,936638 +57784,327,7,442752,1640787 +57785,234,1,43491,93904 +57786,60,1,185153,1217620 +57787,3,5,28,7202 +57788,3,5,10207,8750 +57789,317,10,393134,1512324 +57790,289,6,12230,138170 +57791,234,1,28482,100807 +57792,304,10,37454,18565 +57793,333,2,12103,1316504 +57794,234,1,381008,1034496 +57795,180,7,22584,7128 +57796,387,10,171432,1043380 +57797,413,11,4291,3317 +57798,226,2,18405,1828302 +57799,413,11,14145,1274798 +57800,320,3,176,1817630 +57801,234,1,13025,14999 +57802,203,1,333484,1399892 +57803,387,10,26983,81976 +57804,239,5,436,1624045 +57805,397,7,34977,27969 +57806,53,2,23223,137193 +57807,413,11,55604,9058 +57808,3,5,10869,58007 +57809,75,5,6972,1401737 +57810,5,10,61765,2088 +57811,317,10,68163,253181 +57812,317,10,59197,81297 +57813,262,6,70981,1390360 +57814,373,7,257088,83091 +57815,234,1,31665,64061 +57816,317,10,43902,29756 +57817,234,1,17295,90694 +57818,3,5,430826,1731914 +57819,87,7,14676,117869 +57820,198,6,177677,1545982 +57821,234,1,88863,57777 +57822,124,3,435,1767007 +57823,234,1,29705,104727 +57824,200,3,228066,1574092 +57825,317,10,308032,1229792 +57826,135,3,8619,1619084 +57827,289,6,134360,148148 +57828,53,2,39001,72108 +57829,226,2,13580,74694 +57830,317,10,184267,35501 +57831,127,3,33364,951607 +57832,234,1,441826,1758251 +57833,269,9,18093,1425584 +57834,75,5,290825,1728356 +57835,317,10,268920,63716 +57836,387,10,13258,52842 +57837,203,1,936,1455417 +57838,234,1,19336,30561 +57839,234,1,168022,1272213 +57840,198,6,369885,1644256 +57841,317,10,77056,28615 +57842,234,1,255491,198612 +57843,234,1,15556,11472 +57844,234,1,28656,30956 +57845,234,1,166221,1188038 +57846,234,1,11446,66605 +57847,75,5,37936,1707451 +57848,11,6,274857,1554375 +57849,234,1,32195,88077 +57850,179,2,74777,583478 +57851,234,1,43065,130758 +57852,105,7,317198,32875 +57853,373,7,126090,117241 +57854,234,1,359255,49311 +57855,5,10,29146,103040 +57856,413,11,9598,11650 +57857,175,5,154972,1737886 +57858,52,10,42614,145830 +57859,317,10,345003,1128550 +57860,317,10,139998,90575 +57861,234,1,45577,133236 +57862,97,7,345922,20228 +57863,317,10,427673,88620 +57864,415,3,982,14728 +57865,373,7,7454,1405795 +57866,234,1,48805,21227 +57867,409,7,924,1373428 +57868,328,6,168676,1403736 +57869,234,1,41416,126714 +57870,269,9,12591,959555 +57871,3,5,4441,37279 +57872,105,7,45522,10934 +57873,413,11,5460,43441 +57874,108,10,16410,1607216 +57875,296,3,10733,1571746 +57876,148,9,10344,11822 +57877,196,7,10326,1446659 +57878,234,1,7916,23799 +57879,5,10,209401,1192894 +57880,105,7,348689,929598 +57881,181,7,8276,1544414 +57882,188,8,374473,1333496 +57883,301,5,10543,1372884 +57884,317,10,29108,68687 +57885,234,1,397422,1480620 +57886,148,9,18642,7688 +57887,105,7,15907,4500 +57888,286,3,126958,1083434 +57889,328,6,954,1765818 +57890,97,7,18,9441 +57891,317,10,252102,545053 +57892,234,1,65367,101542 +57893,387,10,76286,83986 +57894,210,9,11172,1781230 +57895,317,10,14387,132098 +57896,317,10,33740,145797 +57897,317,10,270650,33008 +57898,3,5,27349,792 +57899,387,10,121354,1661102 +57900,289,6,67130,150758 +57901,387,10,43757,217024 +57902,234,1,225499,77101 +57903,317,10,48116,1134949 +57904,387,10,38282,1169376 +57905,209,7,1375,16657 +57906,387,10,31462,57359 +57907,317,10,297466,1547487 +57908,234,1,261207,936584 +57909,286,3,180383,78655 +57910,60,1,47653,1415451 +57911,58,2,356752,1841578 +57912,234,1,277558,1461473 +57913,148,9,198663,18458 +57914,45,9,17654,1424598 +57915,20,2,9475,4190 +57916,52,10,102161,362742 +57917,398,9,72545,1405376 +57918,108,10,329868,223210 +57919,234,1,30876,45572 +57920,269,9,128081,1518005 +57921,273,7,200,1760 +57922,234,1,277778,114620 +57923,317,10,41360,150193 +57924,38,10,61400,233066 +57925,387,10,8965,175473 +57926,204,9,41030,118254 +57927,346,3,9946,1432029 +57928,3,5,24140,19517 +57929,387,10,11664,54747 +57930,3,5,26252,39140 +57931,401,6,12,1830810 +57932,3,5,68387,1098928 +57933,387,10,28564,86404 +57934,317,10,289679,31898 +57935,148,9,67377,1597459 +57936,53,2,65599,1712791 +57937,137,3,3563,32894 +57938,234,1,284729,1348503 +57939,387,10,11837,70663 +57940,204,9,35021,1611204 +57941,5,10,16075,3557 +57942,314,2,137504,1530399 +57943,143,7,560,7653 +57944,234,1,162282,225160 +57945,175,5,705,1537733 +57946,317,10,340187,1567534 +57947,3,5,25473,12418 +57948,413,11,25674,21794 +57949,360,9,9820,1417415 +57950,273,7,397365,87550 +57951,273,7,43469,12331 +57952,234,1,284053,55934 +57953,75,5,1976,161701 +57954,317,10,62116,24481 +57955,413,11,1375,16513 +57956,234,1,53950,11454 +57957,273,7,21159,4681 +57958,203,1,24810,1577965 +57959,60,1,14,1002623 +57960,277,3,1294,1001865 +57961,413,11,28730,4186 +57962,217,3,9297,1462694 +57963,317,10,34082,224393 +57964,234,1,1661,3702 +57965,234,1,415255,1203176 +57966,317,10,26841,1830580 +57967,52,10,414910,1488675 +57968,273,7,171213,556150 +57969,234,1,14432,20239 +57970,235,5,127521,1542739 +57971,3,5,4820,3637 +57972,204,9,42537,8630 +57973,60,1,977,14580 +57974,203,1,159211,1438464 +57975,3,5,120837,96052 +57976,204,9,351901,1478412 +57977,273,7,31127,1590966 +57978,387,10,14945,1021197 +57979,204,9,92341,3255 +57980,60,1,117,1213543 +57981,3,5,140818,138856 +57982,234,1,459295,22301 +57983,234,1,15807,11435 +57984,234,1,302960,590928 +57985,273,7,8277,54599 +57986,234,1,347945,141964 +57987,160,3,297762,1368878 +57988,3,5,27526,12235 +57989,262,6,286873,1553426 +57990,395,3,10948,148810 +57991,234,1,156917,586231 +57992,297,4,38061,119509 +57993,105,7,14751,85707 +57994,268,7,2503,12562 +57995,234,1,52907,2636 +57996,317,10,21193,1371422 +57997,269,9,392818,1614531 +57998,15,6,188161,1452989 +57999,234,1,395992,125738 +58000,273,7,26581,39752 +58001,132,2,419430,1527917 +58002,148,9,54752,17877 +58003,5,10,4806,41698 +58004,132,2,167073,1516459 +58005,268,7,6171,83083 +58006,270,9,240832,1367803 +58007,105,7,306966,1119139 +58008,333,2,332567,1454522 +58009,40,1,381015,1828329 +58010,387,10,4380,36805 +58011,413,11,16980,51921 +58012,413,11,68721,57769 +58013,413,11,107811,58871 +58014,52,10,43340,549597 +58015,186,6,7980,1447503 +58016,273,7,16232,11098 +58017,185,11,10865,1738132 +58018,373,7,73424,1034502 +58019,37,3,49398,24381 +58020,234,1,105551,108914 +58021,87,7,266102,1606169 +58022,269,9,14357,1156989 +58023,3,5,42532,41411 +58024,387,10,130507,121676 +58025,262,6,78802,80370 +58026,269,9,199647,1179839 +58027,147,1,13380,1753061 +58028,273,7,397717,984513 +58029,387,10,72984,1764619 +58030,277,3,3035,1348280 +58031,273,7,28974,1120149 +58032,234,1,43895,29571 +58033,5,10,198227,1167749 +58034,360,3,425774,1570554 +58035,291,6,354859,1556505 +58036,234,1,87349,15378 +58037,333,2,251227,1286564 +58038,387,10,222388,1207739 +58039,317,10,37301,14876 +58040,15,6,297762,1557587 +58041,413,11,198062,62759 +58042,185,11,857,1733142 +58043,388,9,203833,49625 +58044,387,10,100814,1025672 +58045,413,11,409502,1718394 +58046,3,5,12220,1044 +58047,196,7,203833,1338973 +58048,269,9,34326,1466802 +58049,413,11,18387,46008 +58050,40,1,42430,1776968 +58051,328,6,126889,1574096 +58052,105,7,22279,39023 +58053,196,7,46261,1402926 +58054,234,1,149170,58728 +58055,52,10,415358,150486 +58056,204,9,284564,1680435 +58057,52,10,25834,1042399 +58058,3,5,416569,1178716 +58059,66,11,198795,1637913 +58060,234,1,375199,85052 +58061,301,5,186869,1420160 +58062,301,5,11880,1424938 +58063,387,10,83015,14293 +58064,187,11,9543,1408311 +58065,60,1,81110,1535457 +58066,413,11,42476,4167 +58067,40,1,8467,7409 +58068,413,11,198511,2309 +58069,289,6,9023,1460462 +58070,234,1,16137,79545 +58071,97,7,25941,1398918 +58072,291,6,394645,1403875 +58073,53,2,32921,13866 +58074,190,7,251227,1286569 +58075,387,10,36299,77086 +58076,413,11,3087,18800 +58077,415,3,1375,15434 +58078,203,1,145135,1344842 +58079,411,9,197,19291 +58080,53,2,82650,11823 +58081,387,10,76170,18189 +58082,317,10,265741,189621 +58083,398,9,9102,1380378 +58084,113,9,44943,66495 +58085,75,5,8886,17848 +58086,234,1,128866,98094 +58087,317,10,61813,71001 +58088,234,1,259997,105729 +58089,286,3,383914,1622036 +58090,286,3,128237,1107945 +58091,225,7,634,1767785 +58092,53,2,51999,33193 +58093,413,11,4516,35394 +58094,273,7,32274,10364 +58095,77,10,14207,64157 +58096,204,9,290764,1512724 +58097,204,9,287636,1336709 +58098,234,1,261246,116607 +58099,203,1,44732,1396419 +58100,277,3,120497,1355977 +58101,234,1,58570,25236 +58102,413,11,82990,995462 +58103,3,5,83890,966927 +58104,387,10,41234,3354 +58105,317,10,76397,82219 +58106,317,10,114982,3776 +58107,317,10,182127,130594 +58108,196,7,205587,1412702 +58109,208,2,16176,1568527 +58110,234,1,66469,44690 +58111,401,6,9982,1461410 +58112,234,1,65134,93953 +58113,413,11,9736,1136 +58114,204,9,22404,8506 +58115,3,5,407806,1680592 +58116,287,3,19901,1323 +58117,105,7,16432,1210161 +58118,269,9,28739,18511 +58119,234,1,27561,60962 +58120,234,1,10488,66219 +58121,105,7,51994,1796158 +58122,413,11,3554,3100 +58123,234,1,16687,223534 +58124,269,9,5413,1425584 +58125,3,5,46145,7305 +58126,234,1,94182,67426 +58127,413,11,101342,940810 +58128,413,11,11813,5821 +58129,234,1,37813,118581 +58130,190,7,337339,1303183 +58131,269,9,187028,1728941 +58132,398,9,333371,1330582 +58133,291,6,302828,1472784 +58134,413,11,49850,556737 +58135,46,5,4982,1606370 +58136,160,3,27259,1504366 +58137,289,6,106112,557250 +58138,234,1,368006,85598 +58139,209,7,419430,585784 +58140,3,5,81223,1068348 +58141,52,10,63178,132190 +58142,53,2,5123,1311133 +58143,5,10,135335,95501 +58144,97,7,2503,1367493 +58145,387,10,8584,18924 +58146,277,3,43346,1100808 +58147,387,10,73896,202495 +58148,387,10,292294,155248 +58149,75,5,10796,1400374 +58150,234,1,197583,7847 +58151,60,1,167707,1466851 +58152,127,3,384737,1815341 +58153,87,7,33586,1814959 +58154,77,10,10425,65107 +58155,273,7,1165,2949 +58156,234,1,57089,108952 +58157,387,10,28417,100746 +58158,183,5,10590,1403415 +58159,413,11,32021,4309 +58160,3,5,43522,13972 +58161,269,9,208529,60666 +58162,209,7,4547,1641217 +58163,387,10,91607,144256 +58164,234,1,316885,1411880 +58165,141,7,47404,34310 +58166,289,6,12593,1458343 +58167,234,1,81684,592853 +58168,60,1,320910,1668654 +58169,148,9,225728,1529358 +58170,40,1,18,1471947 +58171,317,10,210653,974548 +58172,317,10,62731,230715 +58173,413,11,97088,1196910 +58174,394,7,97614,1412702 +58175,413,11,149793,34232 +58176,53,2,383618,43714 +58177,413,11,60281,69229 +58178,148,9,75174,60714 +58179,413,11,3072,13227 +58180,413,11,19050,2512 +58181,234,1,68882,70562 +58182,387,10,1630,7131 +58183,277,3,370234,1377835 +58184,148,9,33792,17670 +58185,387,10,42640,1403080 +58186,5,10,44869,1194445 +58187,373,7,32872,91087 +58188,234,1,128612,63891 +58189,105,7,330770,56657 +58190,105,7,45949,1522900 +58191,12,10,14609,87172 +58192,317,10,383567,1226529 +58193,394,7,10070,71536 +58194,234,1,25674,150207 +58195,234,1,68163,935860 +58196,5,10,29398,564973 +58197,273,7,47096,1259 +58198,127,3,297762,1025655 +58199,317,10,44282,935102 +58200,273,7,11511,68126 +58201,37,3,75262,1706384 +58202,234,1,43046,18574 +58203,67,10,634,168328 +58204,204,9,14527,1517109 +58205,289,6,53178,148148 +58206,317,10,27840,99116 +58207,413,11,63144,225599 +58208,127,3,85411,1332245 +58209,387,10,6972,3558 +58210,273,7,1550,1478995 +58211,234,1,301875,132964 +58212,209,7,8915,1337468 +58213,3,5,103850,1426702 +58214,270,9,857,1662301 +58215,15,6,274857,1577213 +58216,209,7,13616,7049 +58217,97,7,312174,1400606 +58218,208,2,94348,74322 +58219,175,5,241927,1537721 +58220,317,10,58918,1577005 +58221,373,7,9428,1375099 +58222,234,1,280840,16435 +58223,148,9,9426,10836 +58224,317,10,51763,563703 +58225,387,10,47955,26959 +58226,387,10,158990,133398 +58227,3,5,13855,1120765 +58228,387,10,37181,229931 +58229,53,2,263627,1391798 +58230,3,5,215881,1046684 +58231,5,10,18937,1101341 +58232,234,1,31244,229704 +58233,53,2,382125,1678084 +58234,3,5,31713,108274 +58235,169,3,8619,15356 +58236,234,1,28131,17281 +58237,204,9,31911,39038 +58238,208,2,245891,1324481 +58239,387,10,10696,66598 +58240,273,7,63186,9217 +58241,387,10,135335,131010 +58242,413,11,186971,1174352 +58243,317,10,29896,31901 +58244,387,10,11449,46000 +58245,86,3,329865,1646495 +58246,221,3,10440,1562121 +58247,34,8,222935,1726766 +58248,155,3,142402,1117118 +58249,373,7,1251,1342626 +58250,347,3,9472,1400339 +58251,413,11,195269,971920 +58252,175,5,301875,1510441 +58253,226,2,83015,1650093 +58254,294,3,392271,110193 +58255,175,5,76163,1378240 +58256,60,1,285270,1367932 +58257,234,1,43700,1486660 +58258,306,7,11003,80157 +58259,234,1,11475,16767 +58260,3,5,1773,17761 +58261,3,5,9352,28240 +58262,387,10,11321,70305 +58263,3,5,30298,15131 +58264,387,10,130900,30723 +58265,148,9,154972,1755267 +58266,269,9,131194,10643 +58267,413,11,41599,18665 +58268,203,1,10754,1609512 +58269,333,2,407448,1789302 +58270,303,3,5237,63939 +58271,204,9,147618,11036 +58272,57,2,240745,1516459 +58273,187,7,236324,1340741 +58274,3,5,185460,1223295 +58275,226,2,13056,1708304 +58276,3,5,407,5593 +58277,234,1,95358,19606 +58278,143,7,227975,1775634 +58279,413,11,11517,1264 +58280,412,9,228970,83077 +58281,333,2,2397,24511 +58282,262,6,332567,1644271 +58283,209,7,325263,1636536 +58284,204,9,24123,1318448 +58285,105,7,278621,1415883 +58286,360,9,399790,1830184 +58287,3,5,6948,26714 +58288,204,9,96724,1392587 +58289,108,10,42752,128622 +58290,105,7,26173,13669 +58291,226,2,1375,16653 +58292,105,7,9470,57622 +58293,208,2,167073,1339949 +58294,292,3,11618,1758681 +58295,234,1,14660,26849 +58296,387,10,8247,3893 +58297,234,1,40252,147792 +58298,269,9,31021,46267 +58299,3,5,106417,1047250 +58300,289,6,11024,1448601 +58301,3,5,344039,1475732 +58302,209,7,39053,1546047 +58303,226,2,2321,32490 +58304,226,2,16176,11297 +58305,37,3,16074,79161 +58306,148,9,103432,1821435 +58307,317,10,53999,195016 +58308,415,3,36489,100988 +58309,87,7,10543,1449899 +58310,3,5,5881,5431 +58311,373,7,12573,9651 +58312,3,5,82929,870734 +58313,209,7,1922,19990 +58314,105,7,13506,1602644 +58315,387,10,11692,59648 +58316,105,7,46982,1136794 +58317,3,5,10691,57126 +58318,317,10,39998,1141803 +58319,234,1,254007,1057076 +58320,317,10,65650,180281 +58321,148,9,29239,12348 +58322,60,1,14703,113985 +58323,148,9,45610,7237 +58324,317,10,118640,19915 +58325,286,3,26005,592152 +58326,387,10,136368,1647408 +58327,346,3,13056,1419733 +58328,175,5,325039,1403709 +58329,413,11,38579,15005 +58330,204,9,26331,41628 +58331,273,7,92499,1294110 +58332,234,1,76211,80570 +58333,327,7,413762,1556425 +58334,273,7,16092,79287 +58335,180,7,383914,1622038 +58336,3,5,241593,1545303 +58337,209,7,11812,1340007 +58338,148,9,23964,32201 +58339,196,7,239566,1428595 +58340,234,1,16999,4586 +58341,333,2,1902,1266049 +58342,105,7,70988,587754 +58343,286,3,134656,549317 +58344,3,5,199615,6027 +58345,234,1,360737,1423273 +58346,185,11,6947,1739962 +58347,3,5,72431,1308306 +58348,3,5,214,2149 +58349,97,7,9423,1116937 +58350,333,2,51250,1404190 +58351,34,8,340275,1732085 +58352,333,2,26761,4128 +58353,52,10,51303,122970 +58354,234,1,79372,9049 +58355,52,10,76229,578055 +58356,328,6,70074,1407360 +58357,52,10,23692,161456 +58358,317,10,27904,69759 +58359,5,10,28304,120312 +58360,413,11,14676,4359 +58361,317,10,114377,1058611 +58362,273,7,60665,1056278 +58363,234,1,20473,51516 +58364,317,10,20196,59023 +58365,75,5,257088,1261812 +58366,3,5,77012,19397 +58367,75,5,41283,1411844 +58368,234,1,345916,1480623 +58369,3,5,1254,21670 +58370,53,2,92269,8885 +58371,286,3,84318,1084963 +58372,3,5,85837,1023351 +58373,273,7,12506,72565 +58374,413,11,32552,102784 +58375,317,10,26517,14999 +58376,273,7,283701,35073 +58377,160,3,245692,16372 +58378,5,10,3057,28970 +58379,74,5,9946,1423852 +58380,360,9,10665,1746556 +58381,34,8,311324,1411238 +58382,387,10,12432,72197 +58383,269,9,158015,1186280 +58384,413,11,209251,16981 +58385,373,7,13225,1394130 +58386,3,5,91679,1338533 +58387,3,5,15045,35165 +58388,333,2,13380,1753070 +58389,160,3,10803,61838 +58390,3,5,36288,16300 +58391,234,1,53689,141619 +58392,185,11,11370,1798040 +58393,328,6,10665,1896000 +58394,60,1,44655,1511310 +58395,250,11,49009,1539311 +58396,234,1,116488,150150 +58397,289,6,9297,1462688 +58398,317,10,220154,96620 +58399,317,10,121749,1074824 +58400,234,1,210940,190793 +58401,387,10,120972,1310273 +58402,3,5,194853,22456 +58403,387,10,29054,102689 +58404,234,1,384682,60922 +58405,234,1,417870,72024 +58406,413,11,40916,13984 +58407,262,6,132363,1407734 +58408,301,5,100669,1545953 +58409,387,10,270400,19119 +58410,412,9,755,1851728 +58411,179,2,49009,85515 +58412,387,10,54166,67972 +58413,234,1,39436,4955 +58414,412,9,230179,1881544 +58415,234,1,8985,27014 +58416,53,2,310001,1657806 +58417,60,1,35001,1373780 +58418,203,1,194722,1428927 +58419,40,1,6947,958493 +58420,5,10,11859,59951 +58421,387,10,26949,16393 +58422,394,7,60281,1415009 +58423,5,10,3033,29785 +58424,234,1,414067,228282 +58425,105,7,27112,2578 +58426,239,5,225728,1428918 +58427,3,5,14765,52353 +58428,411,9,76341,9583 +58429,226,2,107073,1481511 +58430,234,1,88478,42378 +58431,365,6,169934,40344 +58432,413,11,40085,871 +58433,78,3,1624,1632066 +58434,148,9,1595,17851 +58435,387,10,89145,120191 +58436,279,9,20132,35740 +58437,34,8,25941,1558416 +58438,53,2,5237,959982 +58439,387,10,39123,115934 +58440,234,1,165718,93107 +58441,239,5,598,1641088 +58442,333,2,11812,1531874 +58443,187,7,121598,1340333 +58444,234,1,86363,51875 +58445,234,1,58611,67971 +58446,179,2,241239,1468588 +58447,250,11,333352,1483848 +58448,317,10,39800,66605 +58449,289,6,9514,1642590 +58450,306,7,403605,1185946 +58451,66,11,126889,1816349 +58452,273,7,12528,6918 +58453,97,7,177677,1393300 +58454,187,11,6972,1401690 +58455,387,10,91477,97471 +58456,234,1,29416,30678 +58457,413,11,49018,62813 +58458,175,5,225728,1470167 +58459,45,9,69,1532305 +58460,206,3,8619,1858344 +58461,3,5,19505,2287 +58462,413,11,3476,32086 +58463,148,9,297702,1276438 +58464,317,10,104041,1035442 +58465,413,11,25682,21119 +58466,269,9,19958,5547 +58467,182,8,25941,1558415 +58468,3,5,48136,870 +58469,234,1,151310,10790 +58470,235,5,49009,1412606 +58471,3,5,127372,7262 +58472,53,2,11472,11509 +58473,394,7,11618,1339446 +58474,234,1,95015,40192 +58475,72,11,7445,964509 +58476,287,3,85160,1432472 +58477,286,3,37497,46354 +58478,105,7,84774,1618229 +58479,200,3,10204,571434 +58480,268,7,375366,1740788 +58481,169,3,38317,1368867 +58482,97,7,7326,1871326 +58483,204,9,31413,1603645 +58484,413,11,46738,21471 +58485,3,5,69315,23864 +58486,53,2,21451,4350 +58487,3,5,11712,70129 +58488,413,11,91607,2988 +58489,204,9,96724,1326451 +58490,234,1,81182,18024 +58491,394,7,76600,900 +58492,3,5,80316,3148 +58493,413,11,76,582 +58494,413,11,12446,72587 +58495,3,5,300983,1328725 +58496,203,1,15019,1404548 +58497,402,11,325712,1879690 +58498,387,10,630,9052 +58499,15,6,10020,65534 +58500,226,2,201085,1525886 +58501,148,9,42456,4126 +58502,317,10,37420,23412 +58503,387,10,9308,12991 +58504,413,11,68179,66725 +58505,160,3,9461,62410 +58506,269,9,985,5602 +58507,53,2,8276,54284 +58508,85,10,28774,66806 +58509,204,9,31509,29575 +58510,273,7,356757,1501790 +58511,234,1,284279,142005 +58512,387,10,9609,8483 +58513,413,11,33740,252878 +58514,317,10,412103,1740450 +58515,273,7,99361,101469 +58516,413,11,4413,12685 +58517,387,10,67748,549313 +58518,3,5,354859,403 +58519,32,8,3780,1534243 +58520,234,1,278544,25289 +58521,66,11,73835,1606296 +58522,203,1,47446,1641251 +58523,273,7,11572,69945 +58524,148,9,261037,1209872 +58525,160,3,5915,1141373 +58526,204,9,9953,60871 +58527,317,10,20120,51962 +58528,249,7,13849,1411085 +58529,317,10,36236,81507 +58530,3,5,81522,25822 +58531,204,9,10921,1330842 +58532,234,1,325803,1428024 +58533,3,5,53860,3637 +58534,387,10,62755,1507586 +58535,244,3,9593,1579709 +58536,387,10,66634,38652 +58537,52,10,10925,64833 +58538,273,7,81477,1324970 +58539,147,1,264525,1857571 +58540,317,10,83456,86862 +58541,317,10,333103,1446745 +58542,317,10,167330,32814 +58543,52,10,10829,67021 +58544,3,5,10603,11371 +58545,204,9,310133,1524542 +58546,269,9,42430,1646653 +58547,53,2,10733,8411 +58548,67,10,857,1662377 +58549,317,10,37438,613697 +58550,333,2,2105,1593980 +58551,317,10,17963,1146103 +58552,293,2,376501,1402004 +58553,87,7,312221,1529999 +58554,234,1,86643,120493 +58555,262,6,10145,1446684 +58556,234,1,41805,67897 +58557,13,9,21734,17908 +58558,317,10,71670,33287 +58559,204,9,21027,12346 +58560,317,10,252034,931799 +58561,105,7,68637,1033665 +58562,166,9,8247,1425975 +58563,413,11,11888,17164 +58564,244,3,6973,1531492 +58565,97,7,40466,1760136 +58566,204,9,259997,1302515 +58567,3,5,393443,1157604 +58568,273,7,16366,1815526 +58569,413,11,179818,29971 +58570,333,2,14126,1146969 +58571,168,3,293167,1106260 +58572,317,10,40817,20646 +58573,66,11,264525,1194272 +58574,3,5,424014,1420173 +58575,77,10,9816,54510 +58576,413,11,378441,1649192 +58577,317,10,149145,56207 +58578,333,2,169881,71292 +58579,3,5,16358,1044 +58580,234,1,162437,20658 +58581,3,5,35304,569330 +58582,317,10,32195,88077 +58583,226,2,443319,1415029 +58584,45,9,9541,1469631 +58585,387,10,15935,966288 +58586,52,10,43093,139484 +58587,234,1,39414,53805 +58588,189,3,44115,1394726 +58589,234,1,111470,73256 +58590,286,3,110887,34342 +58591,87,7,71668,1636393 +58592,75,5,23823,1400316 +58593,45,9,294254,1571476 +58594,387,10,28710,87014 +58595,234,1,31005,11887 +58596,413,11,9438,14844 +58597,234,1,213914,85204 +58598,387,10,84340,163784 +58599,234,1,289960,1034587 +58600,5,10,41441,126490 +58601,234,1,16442,11435 +58602,289,6,12,1140576 +58603,97,7,15092,1414548 +58604,234,1,257907,34799 +58605,53,2,61121,1092614 +58606,413,11,40983,69955 +58607,75,5,46567,46144 +58608,333,2,2989,1448347 +58609,269,9,214,2679 +58610,328,6,9042,1400343 +58611,187,11,22279,31293 +58612,113,9,177677,1373703 +58613,5,10,156954,1146497 +58614,269,9,8888,4563 +58615,203,1,11370,1419613 +58616,394,7,146233,1368865 +58617,127,3,106358,170566 +58618,75,5,10145,1446685 +58619,234,1,93828,999760 +58620,387,10,2002,6295 +58621,413,11,40562,1031697 +58622,50,3,11618,1765796 +58623,317,10,62978,236362 +58624,269,9,266856,71574 +58625,317,10,42502,11962 +58626,317,10,32790,1128370 +58627,234,1,186634,71300 +58628,262,6,10145,1268981 +58629,219,11,176,1548684 +58630,234,1,140595,21113 +58631,317,10,142106,169046 +58632,234,1,436343,1059880 +58633,64,6,10733,1680472 +58634,3,5,11953,70130 +58635,234,1,36634,14520 +58636,234,1,185564,3110 +58637,234,1,163,1884 +58638,234,1,296633,120643 +58639,269,9,66113,1372124 +58640,5,10,12205,27786 +58641,349,1,29694,608 +58642,226,2,10344,1426761 +58643,234,1,64678,119417 +58644,269,9,24821,1365902 +58645,78,3,369885,1576007 +58646,413,11,47404,14865 +58647,234,1,275136,1547220 +58648,333,2,15616,1458989 +58649,377,3,11351,1597195 +58650,317,10,370264,275514 +58651,234,1,381356,1528536 +58652,3,5,120747,8714 +58653,413,11,170234,29971 +58654,148,9,141955,1602932 +58655,387,10,43379,25802 +58656,317,10,38021,64750 +58657,203,1,12591,1387544 +58658,398,9,2108,21645 +58659,211,3,280617,1035398 +58660,394,7,203819,38781 +58661,311,9,2662,1841910 +58662,387,10,47647,64901 +58663,317,10,22894,69928 +58664,59,3,8470,1647465 +58665,413,11,227262,1179794 +58666,373,7,27259,75094 +58667,166,9,52661,1461645 +58668,239,5,82624,1600786 +58669,381,9,8869,1429243 +58670,226,2,15092,14714 +58671,3,5,25528,127537 +58672,60,1,1578,1223861 +58673,317,10,14809,1004922 +58674,303,3,9457,67653 +58675,160,3,365222,1110537 +58676,66,11,152042,1343978 +58677,209,7,70074,1388879 +58678,203,1,7299,1433748 +58679,234,1,216369,1038590 +58680,52,10,70151,558012 +58681,413,11,408509,1679097 +58682,40,1,4147,5545 +58683,234,1,24757,23799 +58684,204,9,34223,1668103 +58685,317,10,41211,142982 +58686,105,7,12113,63421 +58687,293,2,181533,1871153 +58688,413,11,66894,957930 +58689,52,10,4011,29529 +58690,317,10,54796,151126 +58691,92,7,73835,1606286 +58692,317,10,33305,31178 +58693,234,1,27230,103318 +58694,105,7,69346,936744 +58695,99,3,4478,865 +58696,220,7,60488,13957 +58697,289,6,132714,5692 +58698,198,6,188927,1638563 +58699,75,5,10008,40765 +58700,33,10,378441,1797475 +58701,327,7,2978,1416579 +58702,289,6,14683,1449006 +58703,53,2,1427,17063 +58704,317,10,148451,49681 +58705,204,9,15653,938099 +58706,155,3,40807,23799 +58707,175,5,169,1395275 +58708,196,7,10916,1357061 +58709,234,1,247354,253152 +58710,387,10,54287,46306 +58711,234,1,451709,139280 +58712,52,10,28293,1194446 +58713,160,3,49521,1368878 +58714,3,5,1819,1214 +58715,166,9,19754,1404708 +58716,180,7,266373,120033 +58717,413,11,22779,989147 +58718,234,1,11832,70636 +58719,122,8,11618,1600111 +58720,148,9,26283,22089 +58721,269,9,168027,60283 +58722,105,7,15387,1080762 +58723,92,7,5425,1632426 +58724,234,1,42139,96369 +58725,234,1,156954,584146 +58726,204,9,5917,35499 +58727,273,7,173467,1452050 +58728,413,11,10733,21055 +58729,317,10,123611,1028513 +58730,200,3,72431,1401792 +58731,105,7,79645,3350 +58732,387,10,56943,1302456 +58733,317,10,26119,94851 +58734,204,9,337339,41592 +58735,234,1,200813,67589 +58736,387,10,42305,3377 +58737,105,7,32451,1137251 +58738,5,10,25520,65288 +58739,286,3,210913,144329 +58740,277,3,219466,1640830 +58741,64,6,127585,1457930 +58742,234,1,31044,24318 +58743,203,1,135708,1474970 +58744,317,10,25500,93903 +58745,234,1,1073,11676 +58746,175,5,293167,1477786 +58747,245,3,30126,1342502 +58748,286,3,43904,1118848 +58749,387,10,73984,98499 +58750,269,9,32331,1431025 +58751,180,7,33673,10155 +58752,245,3,34806,29216 +58753,15,6,6947,92470 +58754,245,3,318922,1575353 +58755,234,1,10409,6201 +58756,387,10,30875,53193 +58757,234,1,14164,57134 +58758,234,1,234377,1093241 +58759,317,10,31503,64746 +58760,413,11,12309,1491246 +58761,333,2,205584,1411219 +58762,45,9,31911,1535947 +58763,203,1,337339,1725748 +58764,286,3,296750,1551467 +58765,387,10,1251,455 +58766,3,5,10539,27486 +58767,105,7,11979,21068 +58768,234,1,14531,176484 +58769,105,7,329868,1086866 +58770,226,2,186869,1835567 +58771,169,3,11618,10631 +58772,225,7,193893,1414935 +58773,333,2,19765,1136846 +58774,234,1,50761,101528 +58775,317,10,258353,80523 +58776,413,11,2604,6051 +58777,317,10,84577,105860 +58778,234,1,58529,227936 +58779,333,2,177677,1428911 +58780,77,10,44208,2498 +58781,412,9,442752,1761890 +58782,413,11,1726,11455 +58783,226,2,17170,10444 +58784,398,9,263115,1393437 +58785,60,1,95015,1008625 +58786,196,7,3682,1399117 +58787,234,1,9034,12648 +58788,413,11,9655,12940 +58789,76,2,245168,1336164 +58790,234,1,116554,84737 +58791,373,7,9529,1337461 +58792,234,1,49314,86293 +58793,413,11,321303,88916 +58794,413,11,69315,1115250 +58795,234,1,28510,62941 +58796,53,2,26510,1555744 +58797,413,11,321303,137554 +58798,60,1,63215,1167611 +58799,306,7,41963,18857 +58800,232,10,42837,224443 +58801,287,3,298584,1619745 +58802,413,11,125926,1263993 +58803,317,10,63568,142510 +58804,234,1,79094,259027 +58805,387,10,295723,1070382 +58806,327,7,242310,1367131 +58807,250,11,313922,1616473 +58808,75,5,95516,1018540 +58809,394,7,62630,16684 +58810,3,5,109213,1044108 +58811,333,2,3478,25806 +58812,148,9,71805,1644926 +58813,279,9,11688,1713397 +58814,234,1,56143,8500 +58815,234,1,421958,17361 +58816,108,10,22943,148025 +58817,317,10,147590,103603 +58818,103,6,230179,1512674 +58819,75,5,227306,151 +58820,289,6,51406,1065698 +58821,327,7,404459,1428041 +58822,413,11,41551,12143 +58823,413,11,18665,1361 +58824,314,2,2924,86595 +58825,75,5,425774,112711 +58826,148,9,109379,1597023 +58827,413,11,443319,1888974 +58828,234,1,99859,18335 +58829,269,9,11235,8936 +58830,209,7,4547,1532402 +58831,141,7,189197,68016 +58832,234,1,47816,65134 +58833,413,11,32604,21471 +58834,317,10,33338,548474 +58835,234,1,35926,14773 +58836,219,11,40807,1345615 +58837,158,2,19255,1552354 +58838,273,7,20126,1177363 +58839,270,9,2666,1392674 +58840,289,6,94820,1447370 +58841,3,5,86236,1033804 +58842,3,5,239056,1408390 +58843,148,9,74126,1604074 +58844,182,8,2503,1406845 +58845,317,10,85052,1264504 +58846,413,11,232100,1323898 +58847,413,11,29224,31194 +58848,148,9,5421,1505032 +58849,413,11,336691,1547711 +58850,273,7,158483,636 +58851,333,2,3513,32355 +58852,234,1,18763,62410 +58853,234,1,15170,1901 +58854,87,7,117,1592134 +58855,113,9,12113,1403698 +58856,203,1,163791,1601466 +58857,204,9,16157,79738 +58858,269,9,194853,1175183 +58859,204,9,30054,5188 +58860,387,10,12450,34397 +58861,387,10,74505,26850 +58862,169,3,9457,1421723 +58863,269,9,33107,1392558 +58864,387,10,987,3147 +58865,317,10,42678,232198 +58866,234,1,11402,14293 +58867,413,11,57983,71131 +58868,234,1,10326,58712 +58869,269,9,9820,2875 +58870,13,3,378441,1797493 +58871,387,10,3028,29705 +58872,269,9,4147,4248 +58873,179,2,209401,72240 +58874,53,2,212530,1196913 +58875,387,10,35656,137478 +58876,317,10,295058,1367731 +58877,373,7,149509,1413907 +58878,203,1,284052,1404875 +58879,52,10,43846,1203330 +58880,245,3,9836,1745202 +58881,3,5,41131,228356 +58882,319,1,405473,1800055 +58883,203,1,18,40749 +58884,317,10,49508,142350 +58885,3,5,300769,30192 +58886,3,5,8665,7479 +58887,148,9,2454,5548 +58888,273,7,45384,186 +58889,12,10,1273,19502 +58890,148,9,201085,1315936 +58891,346,3,10391,1401601 +58892,234,1,42045,72709 +58893,203,1,76170,1400540 +58894,18,2,57597,1676191 +58895,175,5,97614,1406051 +58896,289,6,9514,1642533 +58897,172,3,10733,1397857 +58898,64,6,435,1451682 +58899,286,3,34106,17761 +58900,196,7,58060,1616854 +58901,413,11,205587,10574 +58902,413,11,47878,67564 +58903,327,7,205587,1392603 +58904,234,1,160844,141114 +58905,234,1,101183,19069 +58906,273,7,17771,2704 +58907,97,7,9716,1620010 +58908,75,5,33135,1304272 +58909,204,9,12,7952 +58910,349,1,9928,1577463 +58911,148,9,382125,1678083 +58912,269,9,100669,1319827 +58913,53,2,368006,1523231 +58914,333,2,193893,1067555 +58915,387,10,9354,2691 +58916,234,1,325592,1543277 +58917,158,2,265208,1412496 +58918,175,5,9426,1445986 +58919,148,9,35001,14973 +58920,60,1,163,119665 +58921,317,10,125945,1157607 +58922,413,11,36658,9039 +58923,273,7,13005,15425 +58924,53,2,10178,12145 +58925,234,1,276635,138167 +58926,317,10,42136,159769 +58927,301,5,337339,82169 +58928,234,1,242076,1277050 +58929,289,6,9514,1425482 +58930,413,11,177902,102784 +58931,52,10,40490,139758 +58932,373,7,8464,132609 +58933,53,2,118677,20172 +58934,53,2,156627,1536616 +58935,53,2,55700,1875911 +58936,203,1,13483,1399979 +58937,381,9,4248,1403396 +58938,232,10,302026,1254559 +58939,413,11,356486,1522124 +58940,52,10,32093,18456 +58941,236,8,10066,1813211 +58942,413,11,329809,22319 +58943,87,7,33472,342032 +58944,160,3,45273,1404815 +58945,273,7,11142,42398 +58946,317,10,257081,29994 +58947,317,10,107985,11090 +58948,387,10,4613,38573 +58949,143,7,315837,1342657 +58950,53,2,70695,46589 +58951,413,11,6951,53009 +58952,413,11,284288,1026842 +58953,3,5,9820,1060 +58954,204,9,41733,1424153 +58955,298,5,280092,1494209 +58956,64,6,921,1395362 +58957,317,10,18111,27992 +58958,395,3,10921,1402126 +58959,234,1,17971,57109 +58960,387,10,161227,87772 +58961,387,10,25694,11489 +58962,204,9,256474,1308742 +58963,147,1,395992,75584 +58964,269,9,269173,41540 +58965,187,11,9746,92391 +58966,317,10,199647,1179829 +58967,394,7,9457,957581 +58968,269,9,327528,1018348 +58969,262,6,312831,1594180 +58970,234,1,16843,141197 +58971,413,11,10929,57858 +58972,60,1,68822,232669 +58973,262,6,522,1534527 +58974,387,10,156711,57408 +58975,3,5,115565,5506 +58976,333,2,340275,1732092 +58977,209,7,38027,1440885 +58978,360,3,341886,1573335 +58979,52,10,239056,87191 +58980,373,7,48231,134932 +58981,234,1,388764,1081497 +58982,387,10,122,108 +58983,317,10,70581,55597 +58984,75,5,2454,1412990 +58985,269,9,13493,1330610 +58986,12,10,209112,20008 +58987,387,10,396643,550327 +58988,333,2,6068,14713 +58989,413,11,197082,1410757 +58990,234,1,13531,55790 +58991,234,1,13676,80672 +58992,147,1,126889,1805808 +58993,289,6,384262,1805968 +58994,204,9,174925,559561 +58995,333,2,69668,1416798 +58996,373,7,19042,137125 +58997,317,10,26644,1850826 +58998,148,9,58918,1577011 +58999,204,9,268920,223990 +59000,373,7,395883,1429321 +59001,190,7,159667,1849506 +59002,148,9,404567,32146 +59003,196,7,6947,1399117 +59004,273,7,39824,43609 +59005,105,7,256836,1649193 +59006,53,2,31596,13589 +59007,97,7,245891,1428872 +59008,387,10,14626,73724 +59009,97,7,378441,1069771 +59010,269,9,10476,22145 +59011,387,10,127380,7 +59012,234,1,5922,40402 +59013,387,10,28000,2637 +59014,377,3,14430,1520385 +59015,130,6,12,1719095 +59016,317,10,53459,100734 +59017,317,10,84577,105862 +59018,301,5,149509,1441365 +59019,387,10,170517,1153596 +59020,46,5,263115,1447403 +59021,317,10,13383,223078 +59022,182,8,315837,135294 +59023,373,7,24750,1399142 +59024,234,1,43092,150605 +59025,262,6,10921,58188 +59026,105,7,423078,1700416 +59027,268,7,233639,150796 +59028,209,7,297762,1536029 +59029,234,1,107891,1042634 +59030,262,6,287903,1457329 +59031,411,3,9664,1104780 +59032,175,5,60599,1391583 +59033,387,10,43368,100914 +59034,209,7,9877,1815548 +59035,387,10,9675,13235 +59036,327,7,181454,1375605 +59037,419,10,31067,6835 +59038,209,7,345922,1423004 +59039,262,6,7551,1402896 +59040,234,1,14047,5292 +59041,387,10,314371,43553 +59042,143,7,11373,15261 +59043,234,1,89145,30833 +59044,3,5,159727,1111684 +59045,76,2,315664,75083 +59046,273,7,38154,1537405 +59047,273,7,280092,73417 +59048,357,3,59981,1438908 +59049,317,10,52637,21681 +59050,3,5,162862,3356 +59051,413,11,46261,3050 +59052,85,10,79645,115054 +59053,7,3,8619,1619091 +59054,53,2,90563,10189 +59055,5,10,281291,146712 +59056,5,10,87516,1137829 +59057,60,1,52661,70565 +59058,273,7,14979,72268 +59059,234,1,36785,116190 +59060,15,6,9836,1745231 +59061,269,9,22007,67240 +59062,234,1,131822,1093734 +59063,317,10,131836,29905 +59064,53,2,110160,143593 +59065,262,6,204922,1414095 +59066,387,10,99351,50759 +59067,169,3,257088,1460587 +59068,333,2,313922,1358075 +59069,328,6,46261,1395454 +59070,204,9,252916,25171 +59071,105,7,9294,153 +59072,3,5,29224,48569 +59073,360,3,126090,1599491 +59074,198,6,244316,1555314 +59075,105,7,128657,69445 +59076,46,5,8276,1544424 +59077,269,9,431093,958014 +59078,234,1,13586,91295 +59079,277,3,156335,1290164 +59080,234,1,369362,1552642 +59081,209,7,1381,1337469 +59082,3,5,316042,66228 +59083,387,10,16442,4508 +59084,196,7,10476,1422979 +59085,158,2,1579,1400350 +59086,419,10,49007,66195 +59087,204,9,339403,1442119 +59088,234,1,55681,97860 +59089,234,1,44593,72622 +59090,387,10,10201,62763 +59091,226,2,26882,1773039 +59092,269,9,315846,93071 +59093,413,11,88794,384 +59094,234,1,17820,21506 +59095,148,9,55846,1325212 +59096,75,5,410537,1727204 +59097,234,1,108419,18626 +59098,148,9,330115,1496217 +59099,317,10,70587,61246 +59100,53,2,20919,1423405 +59101,287,3,10326,29654 +59102,387,10,21380,45577 +59103,234,1,54146,96801 +59104,289,6,19719,85094 +59105,234,1,161602,14860 +59106,394,7,26941,1527434 +59107,66,11,297762,1824277 +59108,387,10,13805,35734 +59109,413,11,76494,7493 +59110,87,7,69668,24192 +59111,256,3,2300,1870693 +59112,317,10,21442,87532 +59113,317,10,56232,1482324 +59114,317,10,269494,1135240 +59115,333,2,46567,1008504 +59116,413,11,252680,1027620 +59117,180,7,8276,207879 +59118,234,1,17347,79437 +59119,22,9,857,1662324 +59120,182,8,655,9645 +59121,399,9,10198,1459630 +59122,317,10,21840,87958 +59123,132,2,304372,1551525 +59124,262,6,435,1392094 +59125,387,10,11930,4017 +59126,398,9,3035,1546668 +59127,234,1,4547,7467 +59128,403,10,44000,101520 +59129,53,2,5516,7418 +59130,234,1,172011,6818 +59131,273,7,79466,3350 +59132,387,10,306952,138007 +59133,413,11,131822,94755 +59134,179,2,262338,1527432 +59135,387,10,135670,1103521 +59136,387,10,12206,68 +59137,234,1,59882,32134 +59138,208,2,324670,1726045 +59139,235,5,209112,1661421 +59140,148,9,60281,63292 +59141,5,10,24453,27916 +59142,148,9,10999,6880 +59143,77,10,9056,46318 +59144,273,7,14128,58289 +59145,105,7,30198,57304 +59146,188,8,5,1877378 +59147,413,11,220488,63574 +59148,74,5,29136,1886762 +59149,413,11,31945,16403 +59150,234,1,399106,8012 +59151,387,10,44104,1353672 +59152,113,9,42501,8921 +59153,317,10,50327,60621 +59154,269,9,6934,1425871 +59155,273,7,51947,39054 +59156,387,10,83079,97753 +59157,305,9,284052,1785949 +59158,52,10,20421,40345 +59159,387,10,19335,14875 +59160,13,9,21159,91814 +59161,190,7,64215,1354334 +59162,196,7,70074,548444 +59163,3,5,26864,1356140 +59164,333,2,284052,1428914 +59165,387,10,293970,93151 +59166,373,7,4547,1327030 +59167,234,1,53883,560039 +59168,3,5,340616,1468063 +59169,269,9,137321,8220 +59170,317,10,187596,32593 +59171,204,9,122,1319 +59172,67,10,14,1632585 +59173,234,1,9514,57796 +59174,148,9,111470,9063 +59175,317,10,376538,1119490 +59176,166,9,127372,1431506 +59177,3,5,21927,1298068 +59178,141,7,9325,1827365 +59179,75,5,188102,64300 +59180,234,1,71905,564272 +59181,204,9,20644,9062 +59182,234,1,9885,59998 +59183,273,7,8071,53783 +59184,234,1,392882,1102623 +59185,234,1,292539,1341629 +59186,286,3,124157,1293636 +59187,333,2,324670,1726047 +59188,333,2,80713,1492135 +59189,234,1,377158,1091980 +59190,273,7,167810,1310822 +59191,289,6,9426,1445981 +59192,317,10,300769,89616 +59193,200,3,82,938105 +59194,97,7,306966,1388613 +59195,182,8,310888,1734423 +59196,317,10,79526,226101 +59197,387,10,109213,590786 +59198,317,10,374883,222298 +59199,234,1,52034,58608 +59200,113,9,245700,1384722 +59201,269,9,47410,31318 +59202,204,9,26656,1454502 +59203,234,1,42512,68 +59204,234,1,34334,34692 +59205,298,5,10529,1400092 +59206,75,5,21671,1302085 +59207,412,9,13798,1565846 +59208,196,7,122081,113097 +59209,234,1,139159,1072756 +59210,269,9,315664,15732 +59211,383,3,258509,1542687 +59212,273,7,10050,38335 +59213,3,5,31005,432 +59214,373,7,243568,1551694 +59215,96,2,76600,1755689 +59216,349,1,15653,1767041 +59217,187,11,17622,1407832 +59218,234,1,55167,47061 +59219,234,1,41759,65678 +59220,373,7,330459,1406614 +59221,234,1,128900,260006 +59222,167,3,10066,1864792 +59223,317,10,445993,228433 +59224,387,10,5257,42379 +59225,234,1,95536,81749 +59226,148,9,86829,17221 +59227,234,1,16659,58094 +59228,190,7,54845,1429530 +59229,387,10,25941,28840 +59230,286,3,60316,551675 +59231,3,5,10760,7413 +59232,234,1,36612,19528 +59233,53,2,63858,12350 +59234,328,6,333484,1425387 +59235,317,10,76757,9340 +59236,287,3,6947,1367296 +59237,234,1,121940,1074631 +59238,53,2,300,4285 +59239,413,11,16076,74396 +59240,179,2,924,1012984 +59241,209,7,186869,1446203 +59242,203,1,19101,1370965 +59243,413,11,346672,10833 +59244,97,7,14254,1077782 +59245,269,9,21380,1170455 +59246,52,10,15916,12180 +59247,203,1,8470,1457487 +59248,158,2,105,1538745 +59249,413,11,20287,51557 +59250,413,11,81687,10603 +59251,127,3,966,209585 +59252,333,2,69,1352959 +59253,3,5,86828,57699 +59254,234,1,328712,549307 +59255,301,5,50725,1556651 +59256,160,3,294254,1440664 +59257,374,8,270851,1321936 +59258,317,10,49060,41258 +59259,204,9,254679,1273292 +59260,387,10,309809,81262 +59261,3,5,216363,1083276 +59262,289,6,24554,91770 +59263,413,11,291,4339 +59264,143,7,10198,58363 +59265,3,5,80443,240922 +59266,311,9,42418,1827967 +59267,239,5,44105,1603244 +59268,209,7,31947,1710593 +59269,413,11,172520,1155119 +59270,3,5,103161,929343 +59271,234,1,78657,233491 +59272,234,1,137853,1084414 +59273,245,3,5048,40898 +59274,262,6,345922,1393445 +59275,317,10,67693,1330200 +59276,52,10,93457,71761 +59277,317,10,43656,976387 +59278,234,1,76047,5306 +59279,166,9,1586,1611781 +59280,3,5,121234,2654 +59281,317,10,98203,1084990 +59282,234,1,101185,138167 +59283,234,1,45556,84981 +59284,325,5,10727,58192 +59285,273,7,44099,14356 +59286,273,7,96702,1071172 +59287,269,9,66894,1593281 +59288,387,10,356757,1501786 +59289,387,10,102144,19019 +59290,387,10,19140,30012 +59291,53,2,141733,90693 +59292,234,1,120872,1072820 +59293,20,2,9716,28041 +59294,327,7,2731,1730031 +59295,317,10,88224,124092 +59296,398,9,1586,1611782 +59297,394,7,274504,1085290 +59298,413,11,10238,67522 +59299,234,1,310126,120019 +59300,187,11,9358,1352966 +59301,3,5,162282,45936 +59302,3,5,83761,554587 +59303,234,1,28746,29448 +59304,113,9,94671,1423751 +59305,35,10,408220,23859 +59306,403,10,179066,1333991 +59307,187,11,241239,1376901 +59308,306,7,2662,1603334 +59309,234,1,230211,147532 +59310,52,10,139718,291803 +59311,360,9,401164,1817404 +59312,3,5,39415,20034 +59313,234,1,249264,109452 +59314,196,7,154972,7049 +59315,317,10,139998,171766 +59316,204,9,4820,41754 +59317,104,7,374473,1335146 +59318,333,2,10804,10199 +59319,204,9,37311,9104 +59320,97,7,244610,1338480 +59321,387,10,58076,14646 +59322,234,1,82990,142272 +59323,273,7,29903,19155 +59324,311,9,1428,1851744 +59325,317,10,57438,11916 +59326,203,1,302026,1468921 +59327,413,11,76115,1122357 +59328,317,10,339994,1634222 +59329,203,1,146243,1583078 +59330,196,7,4887,1377258 +59331,413,11,28,3274 +59332,175,5,169881,1519301 +59333,289,6,9426,1445982 +59334,105,7,87194,137562 +59335,175,5,24392,1398898 +59336,3,5,12169,71509 +59337,317,10,84354,1161646 +59338,72,11,149509,1429323 +59339,317,10,21519,46318 +59340,273,7,239519,3249 +59341,3,5,985,14793 +59342,286,3,28974,148066 +59343,204,9,324408,70155 +59344,269,9,201749,967607 +59345,3,5,10897,67391 +59346,328,6,4413,1395365 +59347,333,2,9659,1465596 +59348,273,7,11440,708 +59349,234,1,19957,70862 +59350,317,10,381737,1228498 +59351,3,5,10947,38697 +59352,3,5,20017,1632 +59353,287,3,15762,1364868 +59354,209,7,29444,95842 +59355,301,5,46931,1595993 +59356,273,7,32143,29056 +59357,234,1,83209,1028338 +59358,3,5,53860,14569 +59359,234,1,80193,1021804 +59360,333,2,362057,1332524 +59361,52,10,267935,1299 +59362,12,10,13056,35287 +59363,226,2,16432,1281998 +59364,105,7,222935,989833 +59365,387,10,26758,389190 +59366,262,6,10929,1408718 +59367,317,10,17582,118513 +59368,3,5,52437,12279 +59369,413,11,75174,10123 +59370,232,10,99767,1359089 +59371,317,10,44661,25290 +59372,105,7,31347,1352116 +59373,317,10,235260,1220428 +59374,269,9,4986,30106 +59375,148,9,23169,224389 +59376,75,5,102382,1399473 +59377,387,10,41590,134191 +59378,269,9,332662,1570519 +59379,234,1,390747,93814 +59380,289,6,378236,1840322 +59381,234,1,257237,1296807 +59382,273,7,43761,1678845 +59383,234,1,75090,65392 +59384,387,10,56943,225245 +59385,166,9,10326,1398118 +59386,204,9,32577,1735129 +59387,148,9,100669,1632792 +59388,317,10,27561,60962 +59389,317,10,159638,1143493 +59390,226,2,66113,1416940 +59391,148,9,24624,1318884 +59392,387,10,196789,223101 +59393,209,7,255343,1049333 +59394,234,1,118444,82800 +59395,53,2,7511,961452 +59396,234,1,30059,16410 +59397,234,1,25626,134026 +59398,317,10,15073,15490 +59399,387,10,8619,2690 +59400,148,9,294272,984533 +59401,3,5,289225,1725759 +59402,175,5,198227,1530912 +59403,204,9,84340,1776887 +59404,360,9,10066,1412735 +59405,53,2,1374,798 +59406,179,2,250066,1320552 +59407,53,2,41733,9043 +59408,269,9,8008,20611 +59409,225,7,10665,1895999 +59410,213,10,66812,1082579 +59411,143,7,323426,1642006 +59412,417,3,8619,1569828 +59413,204,9,38765,31204 +59414,166,9,193893,1578877 +59415,179,2,11812,1319747 +59416,148,9,9542,1017999 +59417,105,7,52936,57053 +59418,234,1,43903,34751 +59419,209,7,69668,1397736 +59420,234,1,10761,66548 +59421,75,5,76163,1410107 +59422,413,11,17889,13289 +59423,234,1,167262,1214133 +59424,203,1,82077,1777032 +59425,160,3,280617,100022 +59426,52,10,49524,42994 +59427,97,7,74879,1001762 +59428,234,1,135204,1101389 +59429,226,2,43143,1587441 +59430,273,7,2132,21850 +59431,12,10,14611,18866 +59432,289,6,291270,1454032 +59433,234,1,381008,197825 +59434,15,6,77459,998584 +59435,234,1,97548,584335 +59436,317,10,28671,31268 +59437,394,7,7220,1335219 +59438,208,2,167,1521506 +59439,262,6,1271,1393390 +59440,262,6,755,1897893 +59441,346,3,26149,1438432 +59442,413,11,630,9058 +59443,388,9,132363,1407351 +59444,234,1,34723,7775 +59445,413,11,311291,1513800 +59446,273,7,10972,67684 +59447,3,5,116979,1199840 +59448,273,7,127585,9039 +59449,398,9,58244,1409704 +59450,3,5,253283,808402 +59451,234,1,16174,29693 +59452,289,6,257344,1455608 +59453,53,2,11521,20172 +59454,175,5,8915,1266989 +59455,5,10,20806,134236 +59456,311,9,383538,1783007 +59457,415,3,338,1585875 +59458,289,6,58159,572003 +59459,234,1,2071,5231 +59460,204,9,369406,1872421 +59461,12,10,14830,7624 +59462,317,10,33563,59419 +59463,160,3,102382,15026 +59464,52,10,108224,149117 +59465,234,1,455043,64901 +59466,387,10,126550,67686 +59467,394,7,24397,1385933 +59468,234,1,9314,28898 +59469,317,10,13396,67269 +59470,203,1,107250,1485694 +59471,413,11,9406,703 +59472,169,3,8869,1429245 +59473,273,7,10222,64683 +59474,166,9,20242,1833852 +59475,333,2,46830,1535779 +59476,53,2,297762,10714 +59477,234,1,95675,1006170 +59478,234,1,129229,1088719 +59479,234,1,65089,237285 +59480,387,10,79735,39760 +59481,287,3,18998,11419 +59482,46,5,3597,1790547 +59483,270,9,9286,1441352 +59484,175,5,65599,1712793 +59485,286,3,35396,936797 +59486,75,5,5991,71 +59487,53,2,67375,1355547 +59488,273,7,126250,32717 +59489,3,5,38356,1043831 +59490,250,11,351901,1558722 +59491,317,10,203351,102389 +59492,3,5,79008,12235 +59493,5,10,31067,6834 +59494,53,2,4134,34877 +59495,53,2,127864,3683 +59496,148,9,52859,12349 +59497,234,1,65759,20629 +59498,5,10,228205,64172 +59499,286,3,403429,1586599 +59500,234,1,139826,129723 +59501,234,1,96132,99511 +59502,317,10,155597,26265 +59503,273,7,314065,7741 +59504,234,1,267523,1315253 +59505,269,9,4923,18986 +59506,413,11,98349,544777 +59507,158,2,10733,1571719 +59508,286,3,281968,1380613 +59509,413,11,59678,969704 +59510,73,7,80713,1636491 +59511,249,7,27259,1433229 +59512,387,10,30946,181299 +59513,234,1,580,15663 +59514,306,7,83229,22204 +59515,387,10,39013,121873 +59516,97,7,340488,1431740 +59517,387,10,14029,4668 +59518,53,2,64225,1435264 +59519,234,1,10693,64864 +59520,204,9,67696,1379038 +59521,234,1,77079,39018 +59522,317,10,38437,117692 +59523,387,10,128437,1087074 +59524,72,11,177677,1408400 +59525,3,5,222220,32920 +59526,3,5,11298,16156 +59527,286,3,210302,1141686 +59528,317,10,370755,4429 +59529,413,11,572,7758 +59530,203,1,93856,1409879 +59531,75,5,262522,63900 +59532,291,6,345918,1402192 +59533,234,1,75510,14643 +59534,148,9,4248,14041 +59535,314,2,28178,1425810 +59536,234,1,18282,87565 +59537,268,7,58244,1399558 +59538,32,8,613,1433138 +59539,204,9,120259,5188 +59540,53,2,284296,1516293 +59541,269,9,9778,36808 +59542,287,3,300669,1582306 +59543,387,10,54093,1553489 +59544,234,1,2172,22558 +59545,3,5,110160,1031978 +59546,160,3,13056,92234 +59547,204,9,286873,1553452 +59548,413,11,38554,14189 +59549,97,7,9457,91095 +59550,52,10,78028,736 +59551,273,7,56143,8503 +59552,234,1,1448,17247 +59553,387,10,461805,1152 +59554,3,5,222220,1173554 +59555,198,6,293167,1759787 +59556,204,9,17687,7650 +59557,203,1,269173,1379059 +59558,234,1,23957,42171 +59559,273,7,15263,21011 +59560,333,2,6163,75832 +59561,317,10,259975,24792 +59562,363,3,1966,1733795 +59563,403,10,43817,589753 +59564,273,7,400,4055 +59565,387,10,3520,5812 +59566,387,10,94348,1001703 +59567,64,6,45562,999567 +59568,53,2,954,4034 +59569,234,1,22471,73088 +59570,413,11,393732,1207429 +59571,77,10,9551,57918 +59572,273,7,5481,1346864 +59573,415,3,30374,11558 +59574,161,6,4248,1667275 +59575,273,7,601,491 +59576,269,9,10004,20758 +59577,273,7,86236,50239 +59578,105,7,179066,4082 +59579,291,6,9877,1531897 +59580,226,2,109439,1532757 +59581,234,1,3941,34170 +59582,53,2,8414,54900 +59583,5,10,13654,65536 +59584,394,7,19754,1555342 +59585,387,10,285946,115848 +59586,204,9,71393,1280572 +59587,3,5,82448,40268 +59588,13,7,72984,1764616 +59589,5,10,120657,1302250 +59590,239,5,293660,1561340 +59591,105,7,28482,1356566 +59592,413,11,1966,20299 +59593,97,7,108048,1145440 +59594,269,9,79611,1779301 +59595,234,1,340187,1567534 +59596,273,7,40998,5288 +59597,234,1,75778,81809 +59598,411,9,8247,9639 +59599,387,10,8010,201054 +59600,204,9,51104,1121982 +59601,373,7,8669,1377220 +59602,301,5,333352,1374172 +59603,52,10,24448,91628 +59604,175,5,280092,1059590 +59605,333,2,9297,23785 +59606,357,3,72431,1484194 +59607,317,10,126550,137470 +59608,203,1,2084,1373729 +59609,262,6,167073,1411235 +59610,234,1,88641,67834 +59611,234,1,16229,95760 +59612,234,1,72460,15312 +59613,75,5,9425,1566832 +59614,324,3,2731,1730018 +59615,301,5,168259,82169 +59616,232,10,16229,53276 +59617,211,3,82448,927992 +59618,286,3,66022,3454 +59619,187,11,5551,113044 +59620,22,9,159667,1849498 +59621,160,3,245891,1357063 +59622,3,5,294254,30459 +59623,415,3,39462,1358325 +59624,415,3,20342,1316418 +59625,317,10,128841,94917 +59626,234,1,31428,11770 +59627,234,1,71191,562154 +59628,234,1,84348,66681 +59629,269,9,197611,1126930 +59630,234,1,82083,56742 +59631,53,2,95169,1534703 +59632,413,11,53949,72552 +59633,286,3,339312,1464983 +59634,413,11,448847,1324814 +59635,197,5,181533,1826925 +59636,52,10,42499,103132 +59637,387,10,40466,76453 +59638,387,10,11839,50567 +59639,53,2,99767,9064 +59640,72,11,42418,1436309 +59641,273,7,46190,19096 +59642,161,6,329865,1646571 +59643,3,5,10834,67044 +59644,161,6,664,1640909 +59645,252,3,9946,1691205 +59646,333,2,23966,1419797 +59647,413,11,11939,70982 +59648,387,10,46885,64821 +59649,234,1,49060,231521 +59650,203,1,228970,1406137 +59651,286,3,72602,103020 +59652,3,5,78403,79392 +59653,87,7,924,1538822 +59654,317,10,18133,12920 +59655,273,7,198277,1363962 +59656,413,11,152737,1891 +59657,53,2,3037,20271 +59658,5,10,78318,1108155 +59659,337,2,408755,1651045 +59660,415,3,263115,1821890 +59661,5,10,3597,33255 +59662,234,1,9651,16187 +59663,105,7,17258,3535 +59664,3,5,66125,60404 +59665,286,3,19996,588339 +59666,53,2,283701,19058 +59667,3,5,6977,151 +59668,148,9,343284,1682326 +59669,273,7,12247,71883 +59670,208,2,321039,1507144 +59671,5,10,16182,934760 +59672,387,10,13437,63995 +59673,75,5,22317,28240 +59674,234,1,45874,2090 +59675,244,3,72733,64355 +59676,234,1,287391,29494 +59677,234,1,13336,84439 +59678,53,2,6977,7418 +59679,413,11,13516,1209209 +59680,398,9,19995,1376891 +59681,413,11,83346,564 +59682,45,9,243935,1414920 +59683,234,1,4986,40391 +59684,413,11,74437,109414 +59685,234,1,20766,53333 +59686,234,1,81310,57314 +59687,387,10,15875,50302 +59688,208,2,258480,1336188 +59689,317,10,21142,129482 +59690,317,10,379297,74277 +59691,204,9,23964,961544 +59692,387,10,10269,64626 +59693,199,3,123025,2293 +59694,394,7,75174,2688 +59695,234,1,284246,1347527 +59696,413,11,9951,60826 +59697,234,1,201419,1183513 +59698,148,9,1662,18174 +59699,234,1,361571,1515361 +59700,317,10,108535,50933 +59701,104,7,1125,1546115 +59702,3,5,327,4998 +59703,187,11,522,957581 +59704,273,7,27349,10771 +59705,415,3,15497,231264 +59706,5,10,183962,1178534 +59707,273,7,31167,9102 +59708,317,10,85411,1283931 +59709,34,8,293167,1458141 +59710,387,10,119374,1032013 +59711,317,10,238589,1345256 +59712,333,2,638,9333 +59713,413,11,45874,2512 +59714,268,7,332567,1401690 +59715,373,7,3037,6078 +59716,132,2,10665,1443946 +59717,75,5,19995,33302 +59718,269,9,37181,229931 +59719,317,10,255160,15254 +59720,317,10,19142,136544 +59721,160,3,84336,1516453 +59722,53,2,155597,29913 +59723,270,9,8916,1454757 +59724,317,10,65759,20629 +59725,198,6,287903,1569334 +59726,105,7,37514,117842 +59727,226,2,225728,1568551 +59728,317,10,88126,93561 +59729,304,10,46738,137427 +59730,148,9,339408,11005 +59731,77,10,10087,63121 +59732,287,3,8204,176246 +59733,262,6,9426,84851 +59734,3,5,43656,3114 +59735,234,1,11354,24173 +59736,273,7,41733,23486 +59737,189,3,145135,1338158 +59738,234,1,319396,1210790 +59739,387,10,325803,1428040 +59740,53,2,71825,8849 +59741,3,5,245168,582924 +59742,317,10,63139,1024823 +59743,234,1,322443,1388653 +59744,317,10,85549,1022346 +59745,317,10,20411,86047 +59746,273,7,199647,1179840 +59747,186,6,329865,1646523 +59748,317,10,208529,1191589 +59749,286,3,393079,1817356 +59750,371,3,334538,1460593 +59751,413,11,289198,118369 +59752,289,6,3933,1448053 +59753,234,1,50028,95476 +59754,387,10,44027,6818 +59755,381,9,10733,1571713 +59756,147,1,346672,1905737 +59757,413,11,43514,102784 +59758,413,11,32080,18672 +59759,234,1,69899,1084249 +59760,317,10,15043,238824 +59761,77,10,17008,57828 +59762,162,6,15762,1281588 +59763,273,7,25643,19155 +59764,413,11,90563,12016 +59765,203,1,9816,1317675 +59766,333,2,2567,1402018 +59767,289,6,9438,1447383 +59768,234,1,5516,1224 +59769,387,10,40983,931247 +59770,234,1,12450,72258 +59771,53,2,4307,36276 +59772,269,9,84508,1368927 +59773,234,1,140032,40 +59774,203,1,70670,1586293 +59775,331,3,374473,1650266 +59776,3,5,120676,1264551 +59777,209,7,172385,1404326 +59778,317,10,47959,24657 +59779,64,6,10193,59362 +59780,108,10,105548,1184545 +59781,72,11,149509,1444302 +59782,105,7,68387,43924 +59783,270,9,181533,1370904 +59784,3,5,370178,1484511 +59785,413,11,46184,121150 +59786,52,10,31713,98217 +59787,262,6,9882,1032536 +59788,7,3,4248,121896 +59789,204,9,39833,3358 +59790,204,9,212713,22088 +59791,5,10,50186,213447 +59792,413,11,1374,2512 +59793,148,9,102629,1420336 +59794,327,7,11046,8941 +59795,413,11,5393,43100 +59796,317,10,38558,99032 +59797,346,3,12113,91941 +59798,166,9,6171,6207 +59799,175,5,19765,1602162 +59800,175,5,24750,1411293 +59801,394,7,392818,1031621 +59802,317,10,13788,3893 +59803,234,1,1659,35408 +59804,296,3,11618,1765784 +59805,148,9,33563,92350 +59806,204,9,42251,81893 +59807,76,2,17771,1602327 +59808,234,1,92465,994255 +59809,203,1,264560,1387544 +59810,360,9,11975,1342241 +59811,113,9,9529,1408283 +59812,204,9,96433,8622 +59813,105,7,17669,17212 +59814,75,5,157424,970129 +59815,3,5,228647,18576 +59816,198,6,227306,1453960 +59817,52,10,14072,35771 +59818,166,9,7916,1438598 +59819,53,2,443319,8428 +59820,234,1,5638,6448 +59821,105,7,43771,39405 +59822,273,7,26679,1170372 +59823,127,3,72105,1455508 +59824,288,3,1579,42024 +59825,3,5,1480,13809 +59826,196,7,15613,1413451 +59827,234,1,79054,1185651 +59828,97,7,105965,1085297 +59829,277,3,34127,10919 +59830,387,10,18417,83060 +59831,52,10,376538,1529772 +59832,53,2,166221,1496658 +59833,196,7,59962,1397196 +59834,234,1,8985,588935 +59835,148,9,6947,21984 +59836,234,1,55495,150940 +59837,333,2,265208,1490940 +59838,273,7,3072,24717 +59839,327,7,9514,1425853 +59840,413,11,43172,4348 +59841,203,1,339527,1494288 +59842,413,11,369820,1408987 +59843,413,11,330459,1377 +59844,53,2,75162,9247 +59845,204,9,121923,1222 +59846,122,8,294254,1571524 +59847,413,11,35405,14491 +59848,413,11,44578,1530124 +59849,317,10,51104,1441042 +59850,148,9,9563,20569 +59851,273,7,25430,135166 +59852,226,2,48949,1755408 +59853,273,7,192558,1280415 +59854,196,7,228970,373 +59855,234,1,97632,102389 +59856,387,10,3092,31439 +59857,127,3,384737,1635206 +59858,273,7,31995,552405 +59859,387,10,65488,41751 +59860,200,3,76494,1407019 +59861,204,9,316042,1364793 +59862,394,7,11415,1370914 +59863,329,3,82627,773124 +59864,3,5,63706,51966 +59865,413,11,62330,493 +59866,387,10,197725,115756 +59867,327,7,12561,1106652 +59868,317,10,264555,928670 +59869,317,10,24927,14999 +59870,234,1,14159,35738 +59871,52,10,118948,931212 +59872,204,9,145135,1417858 +59873,413,11,16373,3159 +59874,113,9,10008,135160 +59875,52,10,21849,9850 +59876,317,10,21950,59906 +59877,317,10,216374,109599 +59878,333,2,1427,17084 +59879,204,9,1687,9799 +59880,234,1,31509,100036 +59881,203,1,41733,1531867 +59882,413,11,131932,1482618 +59883,289,6,13676,1460439 +59884,234,1,80320,2087 +59885,148,9,176670,1615804 +59886,234,1,44463,2662 +59887,179,2,1624,1549188 +59888,317,10,91459,2554 +59889,304,10,54563,11984 +59890,203,1,267579,1035800 +59891,15,6,209112,1661400 +59892,387,10,11943,70997 +59893,328,6,257088,1426846 +59894,53,2,193756,15015 +59895,415,3,197,1346943 +59896,317,10,14349,76011 +59897,234,1,50225,41472 +59898,269,9,19338,957690 +59899,328,6,269173,1319487 +59900,317,10,92269,117605 +59901,234,1,29286,89751 +59902,204,9,28448,11422 +59903,175,5,311324,1392718 +59904,387,10,37779,118513 +59905,296,3,3059,1371320 +59906,196,7,300983,1669114 +59907,204,9,4012,35147 +59908,203,1,237584,113853 +59909,273,7,81541,72678 +59910,226,2,28571,1673988 +59911,105,7,201429,22764 +59912,234,1,96921,129433 +59913,53,2,138222,1493528 +59914,333,2,324670,1726048 +59915,105,7,22602,121092 +59916,373,7,375012,1379046 +59917,273,7,8358,37 +59918,413,11,168295,1039764 +59919,234,1,23048,3227 +59920,401,6,9982,1713401 +59921,317,10,86252,933065 +59922,387,10,11694,7335 +59923,5,10,43751,133005 +59924,40,1,10796,1868277 +59925,273,7,167,1999 +59926,3,5,21052,151 +59927,328,6,12171,1421268 +59928,387,10,306555,1277072 +59929,180,7,105509,4428 +59930,317,10,26180,94790 +59931,166,9,14126,1334503 +59932,105,7,8915,5488 +59933,72,11,347945,1618784 +59934,413,11,249703,1000952 +59935,72,11,6171,95841 +59936,317,10,86829,1224 +59937,387,10,225499,93689 +59938,87,7,271718,1546441 +59939,340,2,337339,1764736 +59940,413,11,10003,5056 +59941,196,7,12113,14764 +59942,387,10,41298,1714742 +59943,387,10,50363,12238 +59944,373,7,15,10155 +59945,234,1,134155,1157254 +59946,413,11,197210,1650262 +59947,45,9,245891,1468540 +59948,298,5,140607,1405241 +59949,352,3,127585,1384396 +59950,127,3,8665,1007395 +59951,234,1,36214,1021564 +59952,185,11,1586,1733132 +59953,75,5,5638,14536 +59954,317,10,108869,3638 +59955,52,10,42825,128810 +59956,415,3,17287,112864 +59957,179,2,159211,1438461 +59958,387,10,91181,127777 +59959,413,11,50759,552002 +59960,53,2,20941,1723677 +59961,77,10,10176,64097 +59962,327,7,252888,1433892 +59963,52,10,34459,112400 +59964,406,6,257344,1473423 +59965,52,10,61430,34369 +59966,60,1,31993,102601 +59967,45,9,312221,1580861 +59968,333,2,140032,1000458 +59969,273,7,924,15221 +59970,413,11,38303,22303 +59971,60,1,148284,1209903 +59972,413,11,216153,8484 +59973,234,1,13185,78061 +59974,188,8,9593,1400559 +59975,143,7,15689,1635102 +59976,234,1,5646,4590 +59977,127,3,262841,1723719 +59978,317,10,53931,126195 +59979,273,7,10201,53012 +59980,13,1,378441,1797482 +59981,234,1,39781,75699 +59982,387,10,21752,1091461 +59983,53,2,83384,1594602 +59984,413,11,15263,14961 +59985,105,7,425774,1707970 +59986,204,9,121598,1880903 +59987,143,7,613,8806 +59988,176,3,1966,1398086 +59989,286,3,469172,1112003 +59990,317,10,239018,1421618 +59991,387,10,18646,27968 +59992,234,1,315256,1019955 +59993,286,3,109472,1046569 +59994,234,1,37050,112193 +59995,398,9,227306,1425376 +59996,60,1,23397,1412035 +59997,387,10,93863,24658 +59998,269,9,60316,83784 +59999,234,1,68715,605443 +60000,234,1,353879,85048 +60001,234,1,310593,56194 +60002,333,2,11697,7689 +60003,234,1,339994,1077115 +60004,269,9,154,1802 +60005,317,10,51104,84938 +60006,273,7,228290,1799713 +60007,269,9,45132,1260 +60008,269,9,169,596 +60009,40,1,42418,1827958 +60010,52,10,31947,5046 +60011,387,10,13853,102445 +60012,234,1,76286,85840 +60013,234,1,412103,1668295 +60014,12,10,25528,72546 +60015,234,1,28858,966170 +60016,187,11,59981,1404717 +60017,203,1,100110,1370965 +60018,317,10,320588,22215 +60019,387,10,58462,428344 +60020,3,5,10070,33618 +60021,273,7,32904,1512675 +60022,387,10,12449,72253 +60023,143,7,240832,1367814 +60024,317,10,17926,1171860 +60025,273,7,62764,15813 +60026,413,11,97051,1324035 +60027,234,1,52044,93397 +60028,413,11,202662,1004103 +60029,3,5,49018,1003253 +60030,413,11,290764,10833 +60031,317,10,326723,1437221 +60032,72,11,149509,1380196 +60033,317,10,15045,1220741 +60034,328,6,296524,1392101 +60035,234,1,63681,25161 +60036,20,2,45019,1550204 +60037,52,10,43143,1453672 +60038,182,8,201085,1419269 +60039,273,7,38920,1777489 +60040,234,1,329286,109744 +60041,52,10,266425,1313165 +60042,413,11,27203,2108 +60043,413,11,27265,57642 +60044,273,7,16997,132583 +60045,3,5,198176,8714 +60046,60,1,14615,1312999 +60047,148,9,16373,1025729 +60048,53,2,69315,1197285 +60049,234,1,151136,1086269 +60050,234,1,227717,14227 +60051,234,1,15849,70 +60052,387,10,35002,13547 +60053,394,7,169298,1407254 +60054,269,9,46069,1133156 +60055,413,11,19053,67564 +60056,234,1,68193,127611 +60057,203,1,301875,6514 +60058,387,10,4344,36564 +60059,273,7,12652,20075 +60060,234,1,11216,65314 +60061,415,3,130717,1354031 +60062,394,7,13493,1417515 +60063,331,3,14,1753767 +60064,187,11,13777,75151 +60065,3,5,1579,4501 +60066,209,7,9426,16737 +60067,182,8,4147,1558697 +60068,203,1,13668,1384398 +60069,234,1,14126,77270 +60070,273,7,2017,20692 +60071,269,9,85160,1432469 +60072,46,5,2503,1606370 +60073,415,3,3035,100762 +60074,234,1,49013,32532 +60075,60,1,44875,103923 +60076,273,7,390296,48069 +60077,182,8,21338,1630526 +60078,328,6,375012,1733922 +60079,413,11,101242,1026691 +60080,223,9,8470,1598767 +60081,333,2,297762,1715583 +60082,234,1,13682,73161 +60083,387,10,67509,66022 +60084,158,2,59965,1395032 +60085,286,3,297853,42632 +60086,273,7,11185,2987 +60087,234,1,20200,54291 +60088,317,10,169782,232498 +60089,317,10,288281,3027 +60090,238,7,266856,1421273 +60091,209,7,954,15315 +60092,387,10,121940,1395129 +60093,401,6,10020,1447465 +60094,234,1,317214,236058 +60095,387,10,11337,1243 +60096,413,11,430826,1074667 +60097,207,3,16342,1410143 +60098,45,9,22076,1398174 +60099,204,9,169869,12870 +60100,327,7,10796,1406826 +60101,75,5,321303,1305969 +60102,234,1,3478,15127 +60103,148,9,131737,1319730 +60104,403,10,41312,126128 +60105,148,9,59419,1526960 +60106,250,11,1381,1400354 +60107,269,9,4134,28220 +60108,234,1,419786,1213659 +60109,387,10,10930,19069 +60110,52,10,74689,1547744 +60111,332,8,11024,1673560 +60112,234,1,52867,1931 +60113,148,9,111017,13974 +60114,346,3,2675,1406906 +60115,53,2,16436,1013980 +60116,158,2,293167,1443965 +60117,373,7,19101,1408284 +60118,40,1,32577,53530 +60119,45,9,4147,1549198 +60120,204,9,222935,1208355 +60121,234,1,18739,79895 +60122,413,11,54022,1521772 +60123,132,2,82990,1481011 +60124,113,9,76341,1518775 +60125,60,1,11589,1878364 +60126,53,2,10275,64691 +60127,413,11,26030,43812 +60128,187,11,11472,1537139 +60129,67,10,12,1236458 +60130,5,10,2963,2088 +60131,413,11,136799,61298 +60132,148,9,4441,37284 +60133,286,3,102428,27043 +60134,190,7,403605,1524284 +60135,317,10,83729,666656 +60136,317,10,81538,1156409 +60137,3,5,9882,151 +60138,5,10,67177,548185 +60139,3,5,198600,30970 +60140,286,3,229254,569330 +60141,105,7,34106,34227 +60142,203,1,369406,1755575 +60143,234,1,17985,21183 +60144,394,7,284289,41888 +60145,53,2,481,6533 +60146,234,1,147829,32427 +60147,175,5,4147,1177850 +60148,273,7,10488,9152 +60149,53,2,103332,5215 +60150,3,5,259183,21783 +60151,413,11,199647,1179829 +60152,200,3,334074,1640710 +60153,317,10,71668,18384 +60154,273,7,110573,1600186 +60155,387,10,80320,87668 +60156,3,5,290999,1361568 +60157,314,2,10900,1538943 +60158,127,3,90616,1692111 +60159,387,10,13946,1039595 +60160,413,11,14254,6668 +60161,105,7,287587,55177 +60162,317,10,428493,192852 +60163,143,7,228970,1367494 +60164,5,10,10801,66873 +60165,53,2,204553,1293613 +60166,387,10,43141,5181 +60167,335,6,19594,1462810 +60168,60,1,14430,1373693 +60169,234,1,36361,34611 +60170,5,10,128437,16889 +60171,317,10,15830,88505 +60172,234,1,229610,95723 +60173,317,10,241593,1090113 +60174,203,1,5924,559913 +60175,235,5,373546,1411843 +60176,89,5,354287,1781642 +60177,333,2,6973,1712004 +60178,234,1,67669,64508 +60179,60,1,24469,1319630 +60180,3,5,362703,1060 +60181,289,6,24238,1454656 +60182,105,7,227975,1023809 +60183,387,10,246829,126970 +60184,317,10,44932,66723 +60185,53,2,76757,6209 +60186,415,3,27973,2763 +60187,97,7,188927,1338372 +60188,148,9,2613,1800131 +60189,413,11,86829,1224 +60190,3,5,39982,1701827 +60191,213,10,26252,1294215 +60192,226,2,27259,1624416 +60193,77,10,259,3582 +60194,172,3,2567,1739564 +60195,72,11,857,20846 +60196,413,11,130717,1354027 +60197,234,1,9551,56477 +60198,317,10,106887,1302050 +60199,203,1,33250,1338357 +60200,269,9,788,794 +60201,317,10,261249,153323 +60202,286,3,21567,89151 +60203,387,10,56369,5812 +60204,10,3,122081,1497319 +60205,234,1,69,366 +60206,317,10,14977,83858 +60207,234,1,91459,1032 +60208,269,9,10925,136450 +60209,196,7,9835,1364412 +60210,143,7,131737,1542374 +60211,11,6,345775,1587697 +60212,232,10,51947,1357980 +60213,413,11,138191,1108170 +60214,302,9,293660,1580828 +60215,320,3,287903,1467461 +60216,234,1,28775,49208 +60217,333,2,16176,20108 +60218,387,10,11614,25319 +60219,204,9,256347,1127245 +60220,105,7,166610,551674 +60221,413,11,15258,83339 +60222,97,7,124470,1372207 +60223,234,1,153196,19864 +60224,220,7,27966,17915 +60225,413,11,85844,1029784 +60226,308,3,11618,8159 +60227,3,5,272693,27154 +60228,179,2,2115,12874 +60229,269,9,9593,961533 +60230,317,10,252916,85996 +60231,234,1,37865,4027 +60232,188,8,69,1680301 +60233,317,10,48116,107535 +60234,335,6,2300,1447459 +60235,387,10,4688,38937 +60236,160,3,8669,1392105 +60237,269,9,323679,1423461 +60238,40,1,9472,110532 +60239,317,10,117499,1065700 +60240,413,11,11636,70112 +60241,333,2,233639,1792038 +60242,234,1,39127,1724 +60243,3,5,24657,11905 +60244,3,5,113638,418836 +60245,190,7,263472,1714332 +60246,97,7,118957,1402740 +60247,105,7,16342,26191 +60248,415,3,22899,89166 +60249,105,7,100669,226463 +60250,413,11,352186,1056048 +60251,413,11,117251,225904 +60252,413,11,9953,2866 +60253,301,5,435,1402032 +60254,203,1,323674,1347235 +60255,317,10,107682,240150 +60256,413,11,9993,61630 +60257,289,6,10539,1353148 +60258,105,7,88953,543891 +60259,52,10,53210,362742 +60260,191,6,274857,1408387 +60261,3,5,41206,10602 +60262,204,9,283995,1322017 +60263,387,10,179154,40256 +60264,179,2,42418,1767618 +60265,203,1,289712,1344842 +60266,53,2,10077,62931 +60267,5,10,107693,1034624 +60268,373,7,1647,1364417 +60269,3,5,63326,22143 +60270,3,5,11370,37710 +60271,269,9,42252,1222 +60272,234,1,179603,103931 +60273,105,7,19719,85104 +60274,381,9,9819,91073 +60275,273,7,112456,126152 +60276,5,10,239619,1274591 +60277,190,7,159667,1849508 +60278,387,10,961,10517 +60279,105,7,243940,1525143 +60280,387,10,20640,9791 +60281,105,7,49961,143145 +60282,113,9,2675,1389555 +60283,360,9,366045,1830745 +60284,234,1,13805,35734 +60285,5,10,55257,1386298 +60286,204,9,755,11423 +60287,3,5,109417,42632 +60288,387,10,28421,5028 +60289,373,7,318781,10054 +60290,387,10,36691,16304 +60291,317,10,329868,100856 +60292,160,3,121598,1407247 +60293,413,11,287,4057 +60294,317,10,200117,567989 +60295,169,3,262338,1629006 +60296,273,7,17136,100579 +60297,234,1,29224,236540 +60298,46,5,8870,147288 +60299,105,7,325712,1879681 +60300,234,1,16234,34920 +60301,45,9,241239,1235847 +60302,413,11,525,7184 +60303,413,11,327383,1451412 +60304,234,1,3309,4109 +60305,387,10,41574,1583294 +60306,180,7,112722,1838186 +60307,333,2,126889,1418802 +60308,289,6,12593,1458330 +60309,413,11,17464,64729 +60310,413,11,10008,6995 +60311,269,9,87349,33261 +60312,234,1,416445,1529462 +60313,394,7,26941,1551343 +60314,234,1,322317,137660 +60315,333,2,25953,1061323 +60316,113,9,47112,1465630 +60317,250,11,390747,1662638 +60318,53,2,315010,50953 +60319,182,8,20919,1423417 +60320,5,10,47143,233373 +60321,169,3,99861,1510438 +60322,317,10,463906,42712 +60323,105,7,85673,223182 +60324,182,8,8464,1581506 +60325,273,7,96935,14807 +60326,390,6,13205,1643610 +60327,208,2,12526,1352959 +60328,262,6,50126,1042814 +60329,317,10,232672,1274512 +60330,234,1,14751,1192755 +60331,3,5,367147,1604744 +60332,387,10,63178,67924 +60333,317,10,199602,1087022 +60334,3,5,5544,9752 +60335,304,10,156360,131611 +60336,413,11,4478,4186 +60337,234,1,8470,11151 +60338,244,3,2675,1674655 +60339,234,1,104528,30074 +60340,360,3,49009,1368862 +60341,3,5,58757,228357 +60342,234,1,265712,43652 +60343,234,1,48204,40863 +60344,203,1,525,55226 +60345,53,2,598,8583 +60346,234,1,201913,225967 +60347,387,10,44902,103924 +60348,273,7,9358,26981 +60349,387,10,9028,56743 +60350,234,1,32298,486 +60351,317,10,81312,589507 +60352,97,7,322922,1573370 +60353,273,7,362057,1090381 +60354,317,10,58013,1397752 +60355,301,5,266856,132643 +60356,301,5,329865,1441365 +60357,53,2,83770,7441 +60358,413,11,24657,8452 +60359,3,5,15036,20683 +60360,3,5,11570,29893 +60361,346,3,189,1401156 +60362,52,10,269149,15020 +60363,3,5,48949,30605 +60364,387,10,25695,131397 +60365,96,2,76600,1463806 +60366,25,2,18093,1425585 +60367,3,5,765,9573 +60368,273,7,31498,30104 +60369,273,7,26378,3249 +60370,60,1,33273,1585437 +60371,175,5,242224,1355542 +60372,204,9,23152,3358 +60373,53,2,16342,41542 +60374,148,9,25507,9063 +60375,244,3,1647,1752658 +60376,52,10,130925,1092247 +60377,3,5,9426,7413 +60378,245,3,323426,1435459 +60379,387,10,314285,1178401 +60380,413,11,172785,1084997 +60381,413,11,16876,17766 +60382,203,1,198663,1344843 +60383,387,10,9034,12648 +60384,387,10,133941,558790 +60385,398,9,3597,62780 +60386,187,11,223551,1263798 +60387,234,1,55343,26708 +60388,269,9,93858,1482125 +60389,317,10,37702,65934 +60390,360,9,1647,1423209 +60391,317,10,98364,4970 +60392,273,7,13542,29486 +60393,387,10,42298,1376872 +60394,234,1,74171,145724 +60395,141,7,3597,936765 +60396,105,7,69635,5288 +60397,234,1,91527,980175 +60398,234,1,332872,309 +60399,317,10,36236,70562 +60400,387,10,39219,50577 +60401,333,2,80389,217470 +60402,373,7,21338,1421706 +60403,273,7,251,2704 +60404,234,1,120977,42060 +60405,234,1,19274,10885 +60406,160,3,7305,1007395 +60407,52,10,427680,1267666 +60408,333,2,43346,20108 +60409,60,1,110573,54361 +60410,387,10,169022,587672 +60411,273,7,182899,13337 +60412,52,10,63178,236558 +60413,234,1,77241,581415 +60414,232,10,42678,2891 +60415,237,7,6972,1394862 +60416,225,7,310888,1734426 +60417,234,1,227700,1263877 +60418,5,10,37454,24534 +60419,273,7,209406,3562 +60420,87,7,184345,1894625 +60421,387,10,117905,107463 +60422,317,10,163870,126783 +60423,317,10,430973,227371 +60424,317,10,329690,1371393 +60425,317,10,73027,567805 +60426,317,10,370264,1156314 +60427,413,11,314371,140217 +60428,387,10,34280,16862 +60429,196,7,315664,1451407 +60430,387,10,975,3335 +60431,143,7,9102,1380384 +60432,273,7,293970,1424224 +60433,5,10,6171,3027 +60434,273,7,44655,234726 +60435,273,7,30583,73166 +60436,5,10,43385,233507 +60437,317,10,18279,87322 +60438,317,10,300654,1115958 +60439,291,6,263115,1440877 +60440,273,7,31146,56905 +60441,3,5,225728,549317 +60442,234,1,211085,666935 +60443,413,11,78318,18595 +60444,301,5,230179,1380001 +60445,373,7,55534,1419218 +60446,234,1,77860,105984 +60447,317,10,56448,9579 +60448,287,3,68684,82627 +60449,273,7,11521,4140 +60450,302,9,296523,1780452 +60451,127,3,10075,1813644 +60452,346,3,4982,1405246 +60453,317,10,58664,152315 +60454,373,7,42418,1327030 +60455,40,1,397837,60584 +60456,317,10,174594,88988 +60457,105,7,2172,1635808 +60458,245,3,16176,1471048 +60459,273,7,10804,1213 +60460,52,10,134144,587951 +60461,387,10,11658,64883 +60462,3,5,224251,59790 +60463,234,1,14123,129952 +60464,387,10,16014,1012 +60465,105,7,103161,1466796 +60466,234,1,691,10076 +60467,413,11,400174,151278 +60468,262,6,190955,49191 +60469,196,7,374473,1650271 +60470,204,9,9820,589938 +60471,234,1,22292,10601 +60472,413,11,37291,84760 +60473,373,7,374473,117240 +60474,3,5,11645,34380 +60475,204,9,43141,5188 +60476,234,1,59858,73748 +60477,415,3,32080,1639068 +60478,53,2,145135,1196672 +60479,239,5,341174,1561340 +60480,317,10,79778,587967 +60481,190,7,9102,128484 +60482,416,10,53950,1015439 +60483,317,10,62684,235808 +60484,317,10,25797,94208 +60485,317,10,18056,77086 +60486,317,10,30995,107478 +60487,259,3,176,1599631 +60488,53,2,11859,4061 +60489,3,5,42709,90267 +60490,105,7,116385,16748 +60491,3,5,9471,8523 +60492,219,11,634,1576025 +60493,317,10,34899,107730 +60494,187,7,121598,1880909 +60495,234,1,58887,228590 +60496,317,10,58013,120020 +60497,234,1,20983,86912 +60498,317,10,28535,101109 +60499,302,9,11377,1602857 +60500,204,9,9717,957310 +60501,135,3,8470,1598746 +60502,3,5,79466,19102 +60503,269,9,235,16614 +60504,269,9,68179,60250 +60505,317,10,336850,247612 +60506,314,2,302042,1818205 +60507,3,5,79550,1317390 +60508,147,1,9474,4385 +60509,53,2,341174,19971 +60510,317,10,19181,79056 +60511,273,7,302042,1084640 +60512,333,2,109439,1208437 +60513,180,7,140554,1606310 +60514,35,10,222517,1699957 +60515,83,2,366045,1514185 +60516,160,3,7340,161787 +60517,208,2,203833,1338963 +60518,66,11,13185,1533577 +60519,143,7,132363,1384762 +60520,413,11,3114,30494 +60521,292,3,954,1573435 +60522,387,10,606,10637 +60523,317,10,95453,1304597 +60524,148,9,313922,1070314 +60525,52,10,271919,1904057 +60526,257,3,8869,1552546 +60527,317,10,159638,1207587 +60528,416,10,384262,1805948 +60529,209,7,242,3278 +60530,413,11,11458,10419 +60531,373,7,381518,40819 +60532,413,11,38950,6668 +60533,3,5,76411,104876 +60534,15,6,337339,1907208 +60535,5,10,43252,1033083 +60536,3,5,152748,1046612 +60537,5,10,364410,1643270 +60538,12,10,22968,86533 +60539,203,1,216580,1395233 +60540,105,7,134435,34016 +60541,226,2,308269,1447896 +60542,413,11,18190,17766 +60543,289,6,102382,1452997 +60544,204,9,12525,1195142 +60545,286,3,26936,4998 +60546,288,3,39907,1649579 +60547,317,10,46667,101773 +60548,20,2,8204,1725889 +60549,317,10,23397,638 +60550,53,2,382125,1424587 +60551,113,9,9504,1430231 +60552,53,2,38356,8527 +60553,213,10,39324,78322 +60554,317,10,411081,1564951 +60555,317,10,150223,1870821 +60556,387,10,215646,1287511 +60557,187,11,127380,1649532 +60558,273,7,218425,1186706 +60559,3,5,17332,3285 +60560,273,7,385750,1603187 +60561,273,7,208529,39993 +60562,250,11,2009,1586642 +60563,65,3,9902,1316787 +60564,301,5,24392,1398901 +60565,203,1,8619,1377240 +60566,234,1,46567,100054 +60567,317,10,63988,166149 +60568,204,9,62394,217995 +60569,291,6,25941,1342600 +60570,64,6,75564,1399618 +60571,303,3,82999,929050 +60572,175,5,169881,1448262 +60573,273,7,11137,63729 +60574,413,11,155308,35739 +60575,387,10,9312,57258 +60576,387,10,70881,239105 +60577,234,1,10652,17784 +60578,77,10,10077,50942 +60579,196,7,356752,1549990 +60580,232,10,53860,46993 +60581,387,10,14782,1216005 +60582,413,11,1550,10574 +60583,3,5,219466,17791 +60584,3,5,9795,55878 +60585,360,3,293660,1580833 +60586,5,10,110540,65288 +60587,3,5,320910,1209904 +60588,3,5,16058,79115 +60589,413,11,71670,7184 +60590,333,2,693,24510 +60591,323,10,371459,1051285 +60592,317,10,77010,88820 +60593,208,2,13075,4912 +60594,234,1,17386,72543 +60595,373,7,13654,1551694 +60596,234,1,138486,130325 +60597,234,1,71689,104644 +60598,273,7,18209,56819 +60599,148,9,3164,30973 +60600,234,1,53879,37362 +60601,413,11,124115,8715 +60602,234,1,214138,985151 +60603,50,3,12103,1605411 +60604,213,10,109587,36640 +60605,72,11,10739,1617463 +60606,234,1,20758,13980 +60607,413,11,31561,19245 +60608,269,9,23730,1426222 +60609,148,9,43256,81384 +60610,3,5,17796,1116425 +60611,289,6,53217,163663 +60612,269,9,163791,1318417 +60613,413,11,124071,949244 +60614,317,10,15639,62056 +60615,234,1,46190,46307 +60616,53,2,48787,1770037 +60617,234,1,135317,932510 +60618,203,1,9042,1392737 +60619,53,2,392271,85877 +60620,182,8,401164,1597886 +60621,373,7,28032,1341781 +60622,387,10,3701,22467 +60623,286,3,43889,1002959 +60624,234,1,228074,14293 +60625,72,11,9529,1401631 +60626,387,10,270015,1833991 +60627,204,9,9956,60917 +60628,269,9,81232,1050634 +60629,234,1,105509,31890 +60630,234,1,26954,554040 +60631,387,10,13685,887 +60632,317,10,102272,10249 +60633,234,1,8942,56383 +60634,387,10,31993,3146 +60635,317,10,40993,125169 +60636,234,1,69903,20921 +60637,234,1,288193,1035867 +60638,244,3,55735,1384895 +60639,269,9,248933,36110 +60640,317,10,26796,96281 +60641,234,1,18595,83281 +60642,327,7,413421,1785027 +60643,387,10,9835,10087 +60644,413,11,155128,1620944 +60645,269,9,343173,1037754 +60646,234,1,49828,113873 +60647,234,1,76012,1019507 +60648,52,10,27983,1478309 +60649,105,7,19827,719 +60650,234,1,26603,58080 +60651,148,9,9504,9179 +60652,3,5,45335,5806 +60653,304,10,12273,85801 +60654,226,2,10070,1440735 +60655,234,1,5494,43673 +60656,209,7,285,1534197 +60657,105,7,80592,17915 +60658,269,9,62492,1472427 +60659,289,6,328111,1479521 +60660,234,1,78789,130030 +60661,3,5,60899,231917 +60662,234,1,32031,13859 +60663,269,9,16058,75994 +60664,269,9,9977,5547 +60665,53,2,47876,1051 +60666,317,10,13807,72733 +60667,53,2,168027,1371063 +60668,269,9,222517,1699958 +60669,373,7,243935,92380 +60670,105,7,84184,1814933 +60671,192,5,7219,119372 +60672,108,10,76465,236292 +60673,317,10,41261,125940 +60674,53,2,21968,129933 +60675,53,2,27085,10221 +60676,97,7,329289,1338480 +60677,160,3,5289,9567 +60678,99,3,42251,97847 +60679,250,11,296523,1741762 +60680,75,5,10096,1400079 +60681,152,2,48207,1679410 +60682,204,9,50153,1000493 +60683,3,5,90461,418836 +60684,387,10,169364,1797111 +60685,413,11,312221,589094 +60686,413,11,9563,57977 +60687,99,3,379019,1780167 +60688,60,1,29143,1435051 +60689,273,7,14830,142570 +60690,205,10,379019,1780198 +60691,39,3,9472,1567959 +60692,387,10,9354,52122 +60693,234,1,104810,545763 +60694,234,1,36288,11472 +60695,204,9,41963,23759 +60696,413,11,15807,18800 +60697,317,10,43775,72646 +60698,3,5,285860,989460 +60699,175,5,12536,1420842 +60700,317,10,387399,138776 +60701,273,7,31263,1576628 +60702,289,6,11688,1447370 +60703,311,9,3172,1738161 +60704,158,2,132363,1407743 +60705,250,11,302828,1573935 +60706,196,7,8869,13166 +60707,60,1,246415,1439378 +60708,234,1,69315,77211 +60709,273,7,31304,3862 +60710,53,2,9771,12707 +60711,45,9,22881,1415607 +60712,42,3,42251,103570 +60713,204,9,70981,1327139 +60714,317,10,60994,36805 +60715,204,9,4365,37595 +60716,413,11,21619,30053 +60717,234,1,191820,57851 +60718,167,3,74,1567975 +60719,234,1,86266,150975 +60720,53,2,50647,41084 +60721,317,10,288952,1157339 +60722,204,9,31005,8273 +60723,209,7,10096,1400088 +60724,52,10,9928,57025 +60725,413,11,243568,25747 +60726,234,1,32609,6448 +60727,317,10,206284,1156260 +60728,53,2,35052,1562605 +60729,3,5,27549,443441 +60730,317,10,132332,2559 +60731,234,1,360283,935853 +60732,197,5,12103,1733232 +60733,317,10,53168,545537 +60734,204,9,227975,1299012 +60735,273,7,51955,34061 +60736,289,6,262841,1460608 +60737,234,1,41469,37948 +60738,3,5,37731,564052 +60739,77,10,105231,237074 +60740,53,2,263472,1207549 +60741,234,1,13529,67926 +60742,317,10,245700,65452 +60743,387,10,26283,90371 +60744,234,1,18776,3146 +60745,200,3,15092,1404286 +60746,317,10,166671,1328 +60747,53,2,428493,1187862 +60748,317,10,113882,115732 +60749,413,11,29510,18578 +60750,53,2,12536,1559633 +60751,226,2,10999,1338670 +60752,53,2,10103,63434 +60753,53,2,7219,38917 +60754,360,9,356752,1398145 +60755,181,7,1956,20227 +60756,179,2,272693,1333607 +60757,286,3,51581,68717 +60758,75,5,13549,1087443 +60759,317,10,8342,20028 +60760,158,2,250066,1495531 +60761,387,10,21250,106850 +60762,3,5,341077,1413412 +60763,273,7,31161,545764 +60764,53,2,77117,1294087 +60765,234,1,140448,989375 +60766,317,10,51971,1377313 +60767,413,11,26679,95995 +60768,143,7,43157,8511 +60769,413,11,106417,1047251 +60770,269,9,244786,1186280 +60771,273,7,79743,1169498 +60772,3,5,85844,1080822 +60773,190,7,338189,1650730 +60774,234,1,211166,72133 +60775,3,5,249969,9080 +60776,67,10,22855,105643 +60777,413,11,169758,560181 +60778,234,1,27966,84641 +60779,273,7,218582,30268 +60780,373,7,12220,1378171 +60781,5,10,49524,58839 +60782,31,9,227306,1866270 +60783,317,10,27866,55638 +60784,273,7,9946,4500 +60785,75,5,405473,1458556 +60786,413,11,14411,51701 +60787,413,11,63144,1183433 +60788,234,1,42517,31310 +60789,3,5,257344,1043831 +60790,317,10,66759,70675 +60791,77,10,99,309 +60792,111,7,1586,1611814 +60793,3,5,21849,10537 +60794,234,1,18475,302339 +60795,412,9,7326,1413442 +60796,273,7,28110,29707 +60797,53,2,126250,32725 +60798,45,9,340275,1732080 +60799,317,10,39072,57055 +60800,413,11,9928,5721 +60801,234,1,26326,83198 +60802,3,5,31385,1171734 +60803,234,1,43759,39009 +60804,234,1,21950,88096 +60805,234,1,42329,107333 +60806,53,2,2029,20859 +60807,234,1,72663,1030499 +60808,273,7,2102,2704 +60809,209,7,272693,1336197 +60810,387,10,1387,16863 +60811,413,11,324181,1775301 +60812,226,2,219466,1640824 +60813,234,1,11391,69174 +60814,3,5,5804,10688 +60815,3,5,67375,13270 +60816,413,11,216046,1684923 +60817,373,7,45244,1001864 +60818,213,10,40978,70171 +60819,204,9,120,1319 +60820,413,11,85472,115891 +60821,234,1,12236,65688 +60822,204,9,9816,59566 +60823,3,5,9803,17011 +60824,273,7,9836,11098 +60825,269,9,13505,223990 +60826,234,1,24023,92410 +60827,234,1,44129,47333 +60828,12,10,9651,1072762 +60829,217,3,25768,10523 +60830,52,10,28297,1083344 +60831,37,3,378441,1797502 +60832,187,11,11472,1549584 +60833,317,10,174309,413453 +60834,234,1,36164,1289490 +60835,413,11,343284,1682325 +60836,234,1,54406,11343 +60837,289,6,9514,1642169 +60838,250,11,351901,1558721 +60839,273,7,61765,3535 +60840,413,11,35392,4309 +60841,301,5,359245,1638338 +60842,234,1,31899,21305 +60843,413,11,68684,66825 +60844,388,9,10590,1565937 +60845,234,1,56709,224808 +60846,187,11,103332,1547210 +60847,77,10,946,14354 +60848,13,1,18079,1177262 +60849,317,10,13842,146018 +60850,53,2,81232,39203 +60851,234,1,47238,109598 +60852,317,10,247500,237066 +60853,262,6,311324,1658881 +60854,244,3,76203,1319968 +60855,75,5,435,70149 +60856,317,10,40807,124649 +60857,413,11,50086,70002 +60858,234,1,206157,64099 +60859,234,1,86768,933697 +60860,317,10,20361,4955 +60861,234,1,398137,132812 +60862,234,1,82501,64194 +60863,317,10,41097,125455 +60864,204,9,294016,16494 +60865,387,10,43407,100914 +60866,317,10,323552,87317 +60867,234,1,181801,1164730 +60868,268,7,273404,1445367 +60869,170,5,52850,71285 +60870,204,9,69668,10836 +60871,234,1,193641,53657 +60872,52,10,263472,1279579 +60873,413,11,1164,1891 +60874,204,9,975,14557 +60875,77,10,4916,19266 +60876,3,5,48609,14094 +60877,317,10,73198,939611 +60878,328,6,338518,1402884 +60879,234,1,11103,7847 +60880,148,9,954,7791 +60881,179,2,122081,1530092 +60882,208,2,13788,1323760 +60883,387,10,21371,45730 +60884,127,3,52520,1737894 +60885,87,7,287903,52453 +60886,234,1,347328,1507572 +60887,273,7,694,2284 +60888,317,10,25038,99502 +60889,37,3,10020,1453533 +60890,317,10,265351,113873 +60891,387,10,2087,21371 +60892,226,2,16938,1193691 +60893,234,1,357851,1504645 +60894,102,3,11024,1673553 +60895,204,9,70192,1174632 +60896,317,10,41760,21960 +60897,53,2,10294,60157 +60898,5,10,45398,133120 +60899,60,1,11202,1342501 +60900,317,10,118943,100036 +60901,413,11,17473,164890 +60902,77,10,10077,62923 +60903,317,10,375012,1262867 +60904,3,5,693,892 +60905,298,5,66193,1162659 +60906,273,7,68063,550269 +60907,373,7,10727,42267 +60908,317,10,31254,1023832 +60909,317,10,142168,2165 +60910,398,9,109439,1868186 +60911,219,11,10020,1429549 +60912,387,10,25597,94003 +60913,269,9,2989,1448345 +60914,234,1,62978,236362 +60915,113,9,9457,184986 +60916,333,2,10134,1358075 +60917,394,7,55720,15226 +60918,234,1,120399,112674 +60919,317,10,341420,1469920 +60920,273,7,76207,19167 +60921,234,1,263341,18899 +60922,317,10,32091,25237 +60923,373,7,8292,1342626 +60924,3,5,70192,6452 +60925,234,1,1773,93905 +60926,307,6,58159,22066 +60927,82,3,12103,1537540 +60928,204,9,44945,1520594 +60929,105,7,81120,591017 +60930,413,11,27380,1638069 +60931,413,11,12085,10548 +60932,373,7,18937,1342626 +60933,204,9,5123,39594 +60934,141,7,12,1549209 +60935,148,9,38579,1529604 +60936,317,10,32080,114495 +60937,287,3,28170,99916 +60938,387,10,33839,14646 +60939,317,10,45120,83198 +60940,234,1,312497,1400942 +60941,415,3,263115,1821894 +60942,3,5,8470,17749 +60943,234,1,284467,15630 +60944,76,2,13600,15846 +60945,317,10,36672,1733083 +60946,3,5,8070,3569 +60947,273,7,109466,94667 +60948,226,2,240745,1516458 +60949,60,1,74911,1021385 +60950,269,9,289126,1363129 +60951,387,10,13912,30009 +60952,317,10,116318,1063279 +60953,234,1,422472,1208584 +60954,52,10,36751,19744 +60955,204,9,25653,231502 +60956,317,10,103751,108847 +60957,234,1,53857,108983 +60958,127,3,40490,1007395 +60959,289,6,72640,930439 +60960,269,9,68737,2366 +60961,387,10,8341,7324 +60962,317,10,316042,84021 +60963,234,1,43880,32427 +60964,53,2,71066,108914 +60965,204,9,4551,11508 +60966,413,11,11302,68942 +60967,327,7,41963,1564869 +60968,273,7,890,14617 +60969,381,9,60599,1400493 +60970,3,5,8583,11699 +60971,175,5,82624,1600787 +60972,62,3,2567,1407356 +60973,3,5,125520,21655 +60974,3,5,324670,11699 +60975,75,5,10733,1391130 +60976,204,9,887,13572 +60977,317,10,32577,4585 +60978,196,7,16921,1335219 +60979,387,10,27259,87412 +60980,209,7,196359,128980 +60981,357,3,178809,1412589 +60982,148,9,44190,1539097 +60983,273,7,42329,30777 +60984,387,10,4921,40016 +60985,317,10,18414,73499 +60986,148,9,45827,1261 +60987,182,8,33586,1814987 +60988,286,3,135652,1102875 +60989,270,9,44115,1394712 +60990,373,7,9835,1391571 +60991,234,1,192133,51679 +60992,387,10,9298,6730 +60993,53,2,58060,1630066 +60994,317,10,320037,1303974 +60995,3,5,2984,3454 +60996,398,9,8247,1449162 +60997,3,5,49365,8523 +60998,234,1,248747,107720 +60999,234,1,343972,82751 +61000,3,5,369524,16425 +61001,413,11,24655,1081865 +61002,52,10,284052,55499 +61003,234,1,58447,1320896 +61004,373,7,9568,1546559 +61005,3,5,95134,558286 +61006,273,7,25918,4082 +61007,273,7,110972,4055 +61008,3,5,12759,73621 +61009,269,9,10294,11877 +61010,319,1,378441,1797472 +61011,269,9,341077,1554134 +61012,413,11,8144,53948 +61013,190,7,198663,1367495 +61014,317,10,44680,131249 +61015,143,7,101342,22204 +61016,317,10,81549,74376 +61017,234,1,15464,1341562 +61018,3,5,47410,7413 +61019,298,5,2454,1405241 +61020,3,5,31304,23331 +61021,87,7,12103,52452 +61022,203,1,29896,1518457 +61023,317,10,47816,65134 +61024,413,11,61430,34224 +61025,3,5,139519,1357 +61026,317,10,14923,20405 +61027,387,10,43499,195915 +61028,53,2,1481,75683 +61029,234,1,64685,468 +61030,234,1,117452,143014 +61031,147,1,10733,1740449 +61032,5,10,965,148834 +61033,387,10,11706,70299 +61034,105,7,63139,50216 +61035,317,10,332283,1494785 +61036,387,10,14467,37239 +61037,3,5,120672,14569 +61038,373,7,9785,1404717 +61039,234,1,250574,1155547 +61040,317,10,324670,1921 +61041,37,3,109417,1460603 +61042,401,6,378236,1840309 +61043,105,7,13842,79244 +61044,113,9,12113,119180 +61045,179,2,284052,1322147 +61046,257,3,8619,208403 +61047,234,1,779,11572 +61048,317,10,202239,1184368 +61049,317,10,374614,1594335 +61050,234,1,32139,42712 +61051,234,1,373546,81437 +61052,5,10,106016,1035575 +61053,387,10,16563,31069 +61054,5,10,364324,1677840 +61055,234,1,26378,95293 +61056,269,9,14522,13321 +61057,269,9,158908,3429 +61058,333,2,316154,1525145 +61059,53,2,56596,1163115 +61060,53,2,202337,19285 +61061,317,10,323673,142960 +61062,317,10,341559,1301845 +61063,204,9,31280,30574 +61064,234,1,17421,81825 +61065,234,1,13369,96318 +61066,148,9,5516,555 +61067,234,1,58251,129561 +61068,53,2,293660,12205 +61069,127,3,30361,1769251 +61070,387,10,43868,120530 +61071,317,10,363439,101225 +61072,317,10,43250,67686 +61073,148,9,39428,21707 +61074,394,7,10950,1335219 +61075,317,10,9540,57884 +61076,234,1,41073,125398 +61077,269,9,311291,1398909 +61078,204,9,54690,1542422 +61079,234,1,184795,39996 +61080,160,3,172828,1358564 +61081,398,9,1271,1391756 +61082,80,3,11370,148118 +61083,415,3,52867,1611817 +61084,273,7,11175,68450 +61085,234,1,100247,1100017 +61086,127,3,954,15318 +61087,387,10,2666,23649 +61088,203,1,14254,1397693 +61089,87,7,33314,1532396 +61090,187,11,69,83088 +61091,182,8,10391,1177337 +61092,413,11,8358,38 +61093,97,7,220820,1387774 +61094,40,1,419430,1543589 +61095,273,7,1890,4055 +61096,317,10,260030,102382 +61097,388,9,132363,1367481 +61098,273,7,117999,13301 +61099,3,5,46059,1266787 +61100,317,10,172386,1002568 +61101,99,3,28893,2710 +61102,413,11,264309,29971 +61103,12,10,258509,30694 +61104,210,9,9472,1567957 +61105,269,9,287587,1475896 +61106,273,7,17386,1473359 +61107,53,2,1912,19897 +61108,204,9,168031,41754 +61109,77,10,8336,54563 +61110,286,3,246829,56846 +61111,189,3,9457,1421754 +61112,286,3,65771,1446591 +61113,169,3,68629,1043368 +61114,327,7,137145,1542311 +61115,331,3,109439,1868189 +61116,413,11,6575,51854 +61117,168,3,274857,1576007 +61118,413,11,8942,56383 +61119,234,1,16019,79046 +61120,317,10,62762,584527 +61121,413,11,76714,14962 +61122,5,10,46623,18739 +61123,301,5,100669,5903 +61124,204,9,330947,1299194 +61125,301,5,233639,1792030 +61126,5,10,152948,143464 +61127,210,9,1966,9815 +61128,105,7,279598,1336137 +61129,234,1,180050,107533 +61130,286,3,24645,92113 +61131,234,1,99324,111462 +61132,78,3,274857,1760488 +61133,257,3,8467,1893234 +61134,387,10,9675,4948 +61135,333,2,42476,8342 +61136,317,10,113178,168423 +61137,317,10,2771,93466 +61138,52,10,340961,55827 +61139,273,7,34482,9204 +61140,317,10,16436,113500 +61141,234,1,147903,20370 +61142,289,6,76170,1452998 +61143,234,1,27480,98553 +61144,204,9,18209,1120519 +61145,148,9,50647,33673 +61146,3,5,18317,1251 +61147,301,5,613,42864 +61148,363,3,9297,1462670 +61149,323,10,25643,62541 +61150,148,9,1481,75906 +61151,387,10,6069,21136 +61152,204,9,30127,1799720 +61153,306,7,155597,1208455 +61154,317,10,28031,59670 +61155,204,9,50725,1011958 +61156,413,11,227156,5289 +61157,167,3,250066,1407032 +61158,200,3,318781,1619681 +61159,87,7,9902,1535309 +61160,113,9,10733,935503 +61161,113,9,240832,1367806 +61162,413,11,78383,583875 +61163,273,7,252680,1152735 +61164,87,7,14,120695 +61165,234,1,93115,1041621 +61166,317,10,58918,1042113 +61167,204,9,364088,1748527 +61168,234,1,19495,84736 +61169,141,7,11618,1761 +61170,22,9,8470,1598740 +61171,401,6,9982,1312090 +61172,249,7,300983,85711 +61173,387,10,227306,1224 +61174,262,6,329865,1194083 +61175,234,1,16014,3401 +61176,52,10,66759,67218 +61177,269,9,283384,1302397 +61178,5,10,33923,111580 +61179,413,11,240913,582621 +61180,273,7,51955,34060 +61181,234,1,226632,61440 +61182,76,2,10204,1428470 +61183,75,5,206647,1512767 +61184,3,5,3937,34174 +61185,333,2,17015,1840477 +61186,286,3,338438,1179392 +61187,387,10,273868,70562 +61188,234,1,252520,185 +61189,234,1,30036,46307 +61190,387,10,186268,133433 +61191,3,5,18971,10717 +61192,317,10,105254,6648 +61193,234,1,48287,83313 +61194,273,7,26809,15347 +61195,87,7,16131,1546622 +61196,234,1,44655,793 +61197,53,2,31713,1382957 +61198,234,1,360205,1511016 +61199,209,7,228066,1422818 +61200,269,9,49013,7888 +61201,46,5,339403,1635239 +61202,208,2,43923,96128 +61203,5,10,29259,35585 +61204,1,7,1480,1235589 +61205,5,10,294254,1257087 +61206,234,1,14050,6737 +61207,413,11,408381,1087326 +61208,53,2,330459,1324461 +61209,387,10,32996,1091919 +61210,221,3,3172,1553259 +61211,209,7,9902,1364801 +61212,317,10,9812,18185 +61213,317,10,37653,1296174 +61214,397,7,60488,13960 +61215,239,5,353686,1639572 +61216,204,9,36243,1605485 +61217,204,9,25507,9062 +61218,387,10,22998,14640 +61219,317,10,443053,1764358 +61220,62,3,69668,1425980 +61221,317,10,27523,71416 +61222,204,9,11206,6358 +61223,5,10,1420,17017 +61224,166,9,1902,1418154 +61225,234,1,46813,13899 +61226,47,8,10590,1397850 +61227,398,9,8204,1204225 +61228,273,7,34672,61247 +61229,333,2,10803,29801 +61230,413,11,240832,46291 +61231,317,10,91628,1145287 +61232,273,7,213443,8619 +61233,415,3,76465,89533 +61234,3,5,13678,57232 +61235,234,1,42188,57446 +61236,262,6,265208,1336716 +61237,286,3,377691,1462966 +61238,117,5,74199,571462 +61239,53,2,393445,1705466 +61240,317,10,352890,1031144 +61241,3,5,314371,1491512 +61242,333,2,1369,8870 +61243,268,7,10326,83083 +61244,349,1,9982,1461363 +61245,413,11,13680,12940 +61246,413,11,32872,1348695 +61247,273,7,82077,55440 +61248,209,7,8916,1264811 +61249,387,10,6575,41039 +61250,413,11,12135,54260 +61251,317,10,36056,2636 +61252,273,7,30034,19965 +61253,97,7,394645,1864635 +61254,60,1,28000,12955 +61255,160,3,966,24802 +61256,387,10,180305,29606 +61257,413,11,86718,81090 +61258,234,1,328589,55476 +61259,204,9,17015,1840475 +61260,387,10,78318,6593 +61261,239,5,395992,1428918 +61262,289,6,73723,1459735 +61263,234,1,83666,5655 +61264,317,10,40252,189981 +61265,92,7,3063,8628 +61266,209,7,13493,1389624 +61267,387,10,15144,11505 +61268,268,7,10929,548437 +61269,196,7,228066,117241 +61270,147,1,98066,1759263 +61271,189,3,127372,1431515 +61272,148,9,10087,63132 +61273,204,9,262522,22146 +61274,234,1,162406,20658 +61275,97,7,195269,1228031 +61276,105,7,105760,1364686 +61277,3,5,395883,556493 +61278,317,10,140418,1112514 +61279,317,10,13163,1357122 +61280,209,7,21786,1411814 +61281,158,2,225728,1568549 +61282,52,10,153228,120312 +61283,204,9,287628,1466745 +61284,291,6,74,91893 +61285,53,2,12783,35012 +61286,5,10,72710,56856 +61287,236,8,9946,1346268 +61288,3,5,36960,72703 +61289,234,1,121036,1006872 +61290,289,6,134360,11426 +61291,53,2,122,1322 +61292,273,7,33016,1729 +61293,317,10,352733,1492923 +61294,302,9,11045,1565113 +61295,105,7,52827,14647 +61296,373,7,345925,1397295 +61297,262,6,334074,1540244 +61298,273,7,384737,1015903 +61299,273,7,96089,3375 +61300,387,10,5516,1224 +61301,53,2,11045,2519 +61302,148,9,403119,1389974 +61303,75,5,4286,1793151 +61304,5,10,20372,1470508 +61305,273,7,11888,4500 +61306,198,6,206647,1551898 +61307,179,2,270851,1321939 +61308,164,3,291413,99601 +61309,373,7,37936,1707455 +61310,269,9,54893,1077371 +61311,234,1,4266,19069 +61312,317,10,412851,1154474 +61313,346,3,6973,1406138 +61314,398,9,169,14350 +61315,269,9,9286,12706 +61316,105,7,340101,3562 +61317,234,1,22681,66800 +61318,273,7,9272,7182 +61319,234,1,37100,148097 +61320,333,2,11618,1325234 +61321,413,11,28847,40889 +61322,234,1,303281,81676 +61323,148,9,32088,2318 +61324,53,2,224,1610131 +61325,52,10,86360,14972 +61326,387,10,10539,56514 +61327,219,11,13056,1399931 +61328,269,9,83666,1023711 +61329,250,11,351901,1558723 +61330,234,1,19918,3055 +61331,160,3,109424,40713 +61332,53,2,176670,4312 +61333,3,5,63217,1518510 +61334,317,10,92657,1769 +61335,165,9,3172,1553235 +61336,333,2,245168,32491 +61337,317,10,31342,86035 +61338,349,1,10020,226011 +61339,387,10,16058,79111 +61340,269,9,38775,121340 +61341,3,5,331642,1345660 +61342,160,3,284289,1404697 +61343,67,10,22855,1447473 +61344,413,11,714,10751 +61345,204,9,2454,71579 +61346,234,1,4762,10249 +61347,398,9,10710,42281 +61348,204,9,10326,7856 +61349,75,5,366696,1095807 +61350,97,7,284289,1381236 +61351,286,3,418378,1076723 +61352,317,10,92465,994256 +61353,180,7,4516,24842 +61354,3,5,57230,1625935 +61355,273,7,14945,90138 +61356,273,7,27941,1099649 +61357,3,5,394645,65480 +61358,32,8,263115,1484985 +61359,269,9,6,9990 +61360,77,10,60086,79490 +61361,412,9,2662,1603302 +61362,179,2,102382,1319844 +61363,387,10,57829,7483 +61364,3,5,352199,1378682 +61365,273,7,239566,153 +61366,5,10,21451,15379 +61367,52,10,340961,1538304 +61368,415,3,390,5273 +61369,108,10,78318,135473 +61370,413,11,48962,1201564 +61371,388,9,1381,1447131 +61372,387,10,10198,15810 +61373,398,9,9457,1390518 +61374,387,10,293516,223965 +61375,387,10,76714,105793 +61376,148,9,403570,1494613 +61377,53,2,284289,79253 +61378,413,11,203833,476 +61379,413,11,71329,1605695 +61380,234,1,159211,1047497 +61381,413,11,71099,1317662 +61382,317,10,36929,16837 +61383,394,7,10804,15226 +61384,77,10,16076,79168 +61385,317,10,359105,1288361 +61386,387,10,61985,148571 +61387,402,11,122081,1589519 +61388,387,10,74525,572052 +61389,324,3,189556,1170730 +61390,234,1,66812,11528 +61391,3,5,48636,70605 +61392,188,8,116463,1232400 +61393,387,10,66893,225481 +61394,52,10,130900,1091314 +61395,234,1,14534,44847 +61396,53,2,40208,1547239 +61397,387,10,9287,57165 +61398,250,11,395992,1632329 +61399,105,7,279179,45666 +61400,204,9,57489,454038 +61401,45,9,107811,1387217 +61402,317,10,16436,113501 +61403,317,10,24926,77545 +61404,46,5,384737,1825662 +61405,234,1,36519,138144 +61406,3,5,154,1798 +61407,413,11,15,1744 +61408,105,7,101669,1000559 +61409,77,10,9958,60962 +61410,317,10,110323,18209 +61411,209,7,9664,1335559 +61412,387,10,16176,5839 +61413,160,3,107250,15229 +61414,5,10,228066,28970 +61415,234,1,12276,607 +61416,387,10,44129,47333 +61417,133,3,103073,1032652 +61418,387,10,178927,1109543 +61419,53,2,16442,1200492 +61420,148,9,38269,1818739 +61421,208,2,315846,1681821 +61422,413,11,351901,1591 +61423,175,5,3059,1899131 +61424,234,1,125093,1080888 +61425,317,10,128767,1546798 +61426,52,10,165,1058 +61427,203,1,10320,1339468 +61428,67,10,109329,69133 +61429,234,1,98339,545229 +61430,203,1,130948,1298948 +61431,411,9,11202,137190 +61432,317,10,21519,18897 +61433,317,10,16997,107183 +61434,234,1,300187,46297 +61435,52,10,289712,1331163 +61436,60,1,9716,1561591 +61437,108,10,7548,52896 +61438,303,3,16342,1410140 +61439,105,7,210126,957757 +61440,325,5,10070,64227 +61441,413,11,33586,1448738 +61442,234,1,33201,92554 +61443,127,3,9946,1767311 +61444,97,7,256347,1338149 +61445,203,1,89720,101449 +61446,196,7,9664,7049 +61447,234,1,172,1748 +61448,234,1,14651,2245 +61449,234,1,27973,10001 +61450,209,7,6557,1384393 +61451,413,11,5165,4418 +61452,413,11,354859,2484 +61453,390,6,13205,1767036 +61454,301,5,598,1016216 +61455,387,10,1662,18501 +61456,273,7,29510,31052 +61457,3,5,75564,1399617 +61458,5,10,805,13019 +61459,3,5,4547,2240 +61460,148,9,344039,1423206 +61461,387,10,293271,143524 +61462,234,1,340176,67075 +61463,317,10,307649,143696 +61464,189,3,62630,1423433 +61465,413,11,5767,2580 +61466,234,1,121895,20556 +61467,20,2,74,1339206 +61468,413,11,65282,22087 +61469,387,10,935,8950 +61470,413,11,52034,237187 +61471,387,10,8556,24086 +61472,234,1,1969,20307 +61473,277,3,43976,1493014 +61474,127,3,22584,1472994 +61475,387,10,122677,195123 +61476,268,7,9286,1352966 +61477,413,11,9981,11372 +61478,301,5,924,1177336 +61479,273,7,5481,1346862 +61480,301,5,10204,1380001 +61481,234,1,522,510 +61482,3,5,30141,7034 +61483,180,7,32610,27969 +61484,387,10,11654,70379 +61485,387,10,98277,1002647 +61486,387,10,10488,66219 +61487,269,9,5551,369 +61488,387,10,10748,24206 +61489,234,1,139176,1110363 +61490,204,9,38807,4349 +61491,346,3,42309,1440408 +61492,333,2,173456,1350163 +61493,413,11,1272,2070 +61494,60,1,91961,1123022 +61495,3,5,223946,20683 +61496,234,1,48156,58861 +61497,203,1,278621,1415888 +61498,333,2,6972,1401639 +61499,75,5,245168,1424794 +61500,143,7,72431,670 +61501,273,7,408537,1508883 +61502,53,2,86768,1494607 +61503,175,5,156711,76593 +61504,269,9,9539,1178908 +61505,46,5,128866,1665458 +61506,234,1,56599,96801 +61507,234,1,56992,225320 +61508,3,5,12618,1301 +61509,234,1,282768,1343616 +61510,234,1,10008,61921 +61511,187,11,5551,83088 +61512,196,7,32068,16539 +61513,234,1,10137,18898 +61514,262,6,14979,1337673 +61515,413,11,32298,289148 +61516,373,7,168027,1347997 +61517,234,1,345069,1478650 +61518,317,10,445602,1771714 +61519,232,10,27777,94298 +61520,204,9,13162,60457 +61521,148,9,4476,37429 +61522,413,11,173467,140909 +61523,179,2,39979,101240 +61524,105,7,375012,1262870 +61525,317,10,169343,1151388 +61526,333,2,54563,1432886 +61527,234,1,340103,66074 +61528,105,7,360283,1655894 +61529,3,5,400668,1816874 +61530,234,1,78210,21669 +61531,239,5,245168,1578869 +61532,52,10,332979,44848 +61533,245,3,18763,562290 +61534,148,9,2046,21162 +61535,286,3,48419,140471 +61536,273,7,12540,2214 +61537,317,10,47758,30249 +61538,204,9,26768,30574 +61539,3,5,39048,16750 +61540,387,10,10900,67696 +61541,328,6,75174,1401569 +61542,234,1,11385,11435 +61543,273,7,2503,11098 +61544,234,1,159638,1141396 +61545,234,1,46920,59911 +61546,154,3,42614,42062 +61547,52,10,179603,5165 +61548,52,10,358980,1507483 +61549,398,9,2666,1392692 +61550,234,1,14611,35269 +61551,234,1,26679,95995 +61552,387,10,27635,85453 +61553,328,6,296524,1586942 +61554,327,7,102428,1385149 +61555,286,3,103215,1033141 +61556,234,1,115626,87565 +61557,387,10,1818,1650 +61558,234,1,197849,137349 +61559,387,10,129277,120226 +61560,398,9,2169,5642 +61561,286,3,42537,1534112 +61562,175,5,237584,1046491 +61563,203,1,354859,1340772 +61564,180,7,15199,1641983 +61565,105,7,44256,1305415 +61566,66,11,140554,1707853 +61567,209,7,244786,6745 +61568,234,1,144680,5953 +61569,234,1,20210,57048 +61570,234,1,11692,33485 +61571,204,9,152042,1315188 +61572,289,6,72105,1455536 +61573,5,10,14525,560188 +61574,394,7,9532,1441250 +61575,3,5,259183,12242 +61576,105,7,44398,37467 +61577,269,9,17350,74051 +61578,67,10,18,1700803 +61579,317,10,223946,84885 +61580,327,7,24679,1424782 +61581,314,2,544,1527917 +61582,3,5,4538,5667 +61583,143,7,678,10156 +61584,234,1,54111,150150 +61585,175,5,121598,1196470 +61586,3,5,10657,25361 +61587,148,9,15440,1336927 +61588,317,10,360784,1179422 +61589,204,9,24469,1319623 +61590,157,3,315855,1234753 +61591,323,10,65771,202579 +61592,127,3,194,1635274 +61593,204,9,977,14581 +61594,413,11,12169,72834 +61595,175,5,194,1175850 +61596,413,11,10390,21055 +61597,317,10,154371,117682 +61598,360,9,315837,1414092 +61599,204,9,322518,1431610 +61600,234,1,21159,91789 +61601,213,10,110608,558763 +61602,5,10,11837,70665 +61603,250,11,124470,1448304 +61604,387,10,20287,14053 +61605,52,10,13042,225979 +61606,234,1,109479,58278 +61607,317,10,134474,182174 +61608,234,1,6079,11688 +61609,327,7,84178,1787551 +61610,387,10,10652,62038 +61611,234,1,58790,73570 +61612,5,10,61934,234567 +61613,203,1,12499,1446549 +61614,20,2,201085,1572860 +61615,317,10,223551,1108177 +61616,64,6,28437,102785 +61617,273,7,4344,1123119 +61618,3,5,32601,49668 +61619,317,10,161243,21437 +61620,53,2,215373,4190 +61621,234,1,217057,1371122 +61622,234,1,418990,65133 +61623,234,1,63505,937879 +61624,46,5,18,1446663 +61625,317,10,22943,148023 +61626,132,2,137145,1327184 +61627,387,10,112973,1056087 +61628,3,5,35337,16334 +61629,317,10,203780,29839 +61630,60,1,75363,1582989 +61631,135,3,544,1570749 +61632,204,9,22968,86532 +61633,64,6,28421,100762 +61634,5,10,413669,120531 +61635,317,10,206183,94040 +61636,398,9,1381,1204225 +61637,273,7,10866,7229 +61638,419,10,18998,58041 +61639,204,9,15916,78370 +61640,234,1,21430,39104 +61641,413,11,13169,46809 +61642,413,11,55784,375 +61643,226,2,435,1418455 +61644,317,10,89720,99897 +61645,235,5,12103,1144651 +61646,204,9,61341,1338236 +61647,75,5,365942,1451245 +61648,234,1,242683,14674 +61649,289,6,24238,1454655 +61650,317,10,120172,1071589 +61651,105,7,231176,114366 +61652,273,7,10299,21011 +61653,234,1,148697,145724 +61654,148,9,142984,14826 +61655,105,7,259728,1301985 +61656,207,3,297762,1399567 +61657,3,5,38417,870 +61658,317,10,13358,99364 +61659,413,11,13855,69388 +61660,277,3,70670,574200 +61661,413,11,312138,1400501 +61662,148,9,6963,13588 +61663,273,7,10834,67043 +61664,127,3,52867,91219 +61665,269,9,219466,1640831 +61666,87,7,544,21933 +61667,234,1,70821,93136 +61668,273,7,256740,233360 +61669,273,7,173456,4345 +61670,5,10,19765,1602140 +61671,105,7,98566,6041 +61672,234,1,391642,1326253 +61673,286,3,39907,1649572 +61674,234,1,109170,76247 +61675,387,10,76312,72913 +61676,269,9,10744,961447 +61677,317,10,312174,1383174 +61678,234,1,162611,1168867 +61679,3,5,42216,2286 +61680,328,6,354859,1444294 +61681,333,2,169656,1582361 +61682,3,5,14522,21516 +61683,387,10,51836,60733 +61684,333,2,134480,4128 +61685,413,11,2982,11443 +61686,3,5,33788,957150 +61687,289,6,149870,1456629 +61688,64,6,28893,52194 +61689,381,9,76203,1393440 +61690,53,2,378441,1797457 +61691,394,7,949,14765 +61692,269,9,25674,1127497 +61693,234,1,81296,69167 +61694,368,7,403,136080 +61695,52,10,65066,1070246 +61696,387,10,11358,14346 +61697,65,3,9472,1677236 +61698,105,7,381518,1161602 +61699,53,2,9820,4034 +61700,196,7,12113,13166 +61701,143,7,966,878 +61702,175,5,89492,1461177 +61703,277,3,309879,1621483 +61704,3,5,50327,190247 +61705,289,6,109298,11427 +61706,3,5,45610,13000 +61707,127,3,18405,1709777 +61708,5,10,22387,33273 +61709,317,10,63139,62644 +61710,189,3,1381,1447157 +61711,5,10,55370,222258 +61712,396,3,189,1401138 +61713,317,10,49950,1128308 +61714,234,1,13437,15872 +61715,105,7,112072,1053815 +61716,273,7,450875,1208226 +61717,250,11,333371,1585745 +61718,160,3,80410,113194 +61719,273,7,37311,3249 +61720,317,10,337104,1082434 +61721,333,2,43092,1340055 +61722,373,7,132601,1396316 +61723,413,11,45184,3643 +61724,323,10,393559,1615532 +61725,413,11,136752,1208806 +61726,7,3,693,1761063 +61727,196,7,257088,1551789 +61728,387,10,45522,20600 +61729,273,7,12247,71879 +61730,269,9,241927,62667 +61731,158,2,11137,1408839 +61732,179,2,9902,1326717 +61733,179,2,435,1392109 +61734,3,5,59231,2287 +61735,387,10,9464,57719 +61736,373,7,638,9410 +61737,234,1,360605,38692 +61738,148,9,52959,9587 +61739,77,10,9948,60733 +61740,360,9,11236,1342589 +61741,5,10,76094,577610 +61742,53,2,197611,36429 +61743,234,1,1902,19840 +61744,317,10,52150,240980 +61745,3,5,253251,1293460 +61746,113,9,4147,1322017 +61747,234,1,24777,101377 +61748,204,9,246299,3255 +61749,75,5,127762,1868 +61750,317,10,127803,1085814 +61751,317,10,190341,1171039 +61752,317,10,65874,544171 +61753,234,1,84348,1039529 +61754,317,10,105583,1092208 +61755,11,6,287903,1418374 +61756,148,9,9532,60285 +61757,198,6,294254,1571501 +61758,203,1,340275,1403643 +61759,317,10,46492,125691 +61760,74,5,2662,1436298 +61761,376,10,170517,1153596 +61762,105,7,52850,223574 +61763,113,9,6972,1401667 +61764,317,10,76268,1590969 +61765,113,9,511,1609617 +61766,203,1,152748,1339963 +61767,234,1,98069,1016135 +61768,20,2,82684,1488219 +61769,387,10,18937,132832 +61770,413,11,11248,8219 +61771,148,9,131764,7687 +61772,203,1,78691,1322509 +61773,314,2,55534,1402017 +61774,204,9,44190,3488 +61775,289,6,106112,11429 +61776,269,9,345069,1478656 +61777,161,6,329865,1646584 +61778,53,2,488,6607 +61779,273,7,210092,36164 +61780,53,2,6341,980863 +61781,273,7,24469,1319621 +61782,317,10,354296,1528522 +61783,317,10,274990,1105396 +61784,203,1,7220,1389601 +61785,387,10,1633,18253 +61786,419,10,93511,58588 +61787,3,5,20,104 +61788,234,1,417936,1576220 +61789,250,11,1381,1418487 +61790,317,10,65795,19842 +61791,52,10,345922,1213603 +61792,317,10,172847,566273 +61793,187,7,337339,1435703 +61794,286,3,76686,114589 +61795,413,11,34796,1010504 +61796,286,3,14286,84372 +61797,333,2,3033,29065 +61798,165,9,8467,1893223 +61799,269,9,87229,1183129 +61800,317,10,40205,108784 +61801,203,1,9966,1458587 +61802,60,1,403,8275 +61803,105,7,28665,4140 +61804,53,2,168676,1350256 +61805,3,5,28482,100907 +61806,53,2,403119,1658453 +61807,204,9,43139,1078629 +61808,3,5,282268,84804 +61809,204,9,108224,8506 +61810,75,5,296524,1729037 +61811,328,6,287903,1194081 +61812,413,11,30352,12419 +61813,189,3,242310,1367138 +61814,175,5,334074,1400317 +61815,148,9,635,9179 +61816,413,11,33305,52093 +61817,77,10,26808,96307 +61818,3,5,25862,2774 +61819,3,5,30034,106502 +61820,317,10,38031,1243 +61821,234,1,18758,70334 +61822,60,1,55197,20025 +61823,269,9,13336,1335411 +61824,5,10,257454,164951 +61825,273,7,2758,9251 +61826,160,3,9352,1586345 +61827,175,5,236324,1401634 +61828,198,6,1586,1611822 +61829,328,6,1073,1392907 +61830,53,2,136582,1151805 +61831,387,10,35392,26959 +61832,148,9,11607,1342618 +61833,317,10,16659,127133 +61834,105,7,42537,1071172 +61835,187,11,13849,1413936 +61836,234,1,193040,1205467 +61837,244,3,219466,1339060 +61838,10,3,24554,91775 +61839,234,1,291155,567559 +61840,413,11,190352,131389 +61841,269,9,1825,21813 +61842,204,9,125510,52215 +61843,45,9,127380,1715749 +61844,52,10,94170,34425 +61845,3,5,25796,51981 +61846,3,5,42487,22085 +61847,179,2,86829,22242 +61848,234,1,73043,26875 +61849,45,9,227306,1465351 +61850,317,10,157420,1138750 +61851,24,5,74935,1206802 +61852,204,9,160160,962280 +61853,413,11,121006,14679 +61854,234,1,37315,13265 +61855,289,6,49524,1455610 +61856,269,9,79113,62216 +61857,317,10,84337,14282 +61858,97,7,418437,1371064 +61859,234,1,1807,5216 +61860,105,7,296025,1302430 +61861,53,2,55534,113894 +61862,286,3,48717,1184307 +61863,3,5,35392,40183 +61864,333,2,52395,1338669 +61865,387,10,10466,915 +61866,273,7,62694,8503 +61867,226,2,48231,1643418 +61868,269,9,40095,11779 +61869,66,11,4547,57638 +61870,204,9,10796,81731 +61871,387,10,15310,127351 +61872,273,7,116711,531 +61873,387,10,337751,1228498 +61874,28,9,4147,1558197 +61875,52,10,57684,149104 +61876,317,10,27019,223279 +61877,269,9,321039,1329557 +61878,268,7,17144,1436536 +61879,413,11,185153,110719 +61880,234,1,17577,25527 +61881,262,6,256347,1358022 +61882,317,10,678,20097 +61883,317,10,73697,146793 +61884,3,5,241855,583479 +61885,262,6,19995,1391695 +61886,3,5,106944,21233 +61887,333,2,76341,1451525 +61888,234,1,1926,2228 +61889,317,10,45649,133398 +61890,167,3,693,1436196 +61891,53,2,1259,36695 +61892,105,7,418029,1309510 +61893,3,5,388243,1497088 +61894,286,3,364379,1523862 +61895,234,1,294652,1299642 +61896,60,1,14811,1455432 +61897,269,9,12831,33620 +61898,333,2,332411,1579394 +61899,262,6,1624,15436 +61900,273,7,83754,1294788 +61901,234,1,17974,95040 +61902,3,5,14295,7436 +61903,234,1,410718,26473 +61904,60,1,15,1343610 +61905,204,9,14829,554862 +61906,108,10,121234,2432 +61907,245,3,18763,1504460 +61908,304,10,155308,85404 +61909,289,6,284274,1459718 +61910,203,1,20312,1424461 +61911,413,11,8840,10833 +61912,413,11,9846,23926 +61913,3,5,15875,40183 +61914,327,7,42251,1115114 +61915,204,9,9568,1378436 +61916,203,1,81182,1529269 +61917,32,8,1966,1733781 +61918,317,10,46193,20097 +61919,273,7,5955,947 +61920,105,7,307931,1489789 +61921,262,6,14126,1403400 +61922,333,2,244786,23783 +61923,52,10,27380,118280 +61924,317,10,135713,1103639 +61925,234,1,262786,93723 +61926,52,10,27259,43806 +61927,413,11,49502,142342 +61928,269,9,45527,62703 +61929,387,10,1628,18213 +61930,143,7,315837,1404217 +61931,53,2,121674,6392 +61932,179,2,2567,1325235 +61933,325,5,9042,1409240 +61934,234,1,264309,84034 +61935,204,9,22404,103507 +61936,203,1,15143,1344278 +61937,75,5,209112,1399875 +61938,328,6,127585,1348006 +61939,52,10,160106,996554 +61940,387,10,31947,5046 +61941,317,10,47812,67361 +61942,238,7,11370,1407666 +61943,269,9,13849,945 +61944,204,9,39982,11779 +61945,387,10,810,12101 +61946,269,9,409447,1555470 +61947,160,3,9529,16474 +61948,289,6,10539,34891 +61949,269,9,13550,29651 +61950,314,2,27259,1624417 +61951,287,3,18998,107372 +61952,270,9,6972,1401674 +61953,6,3,12,1748698 +61954,3,5,244,3250 +61955,413,11,110598,42631 +61956,273,7,419430,1761126 +61957,208,2,100669,1632803 +61958,387,10,31127,1372653 +61959,234,1,58414,548474 +61960,269,9,291270,1536586 +61961,234,1,104431,1187260 +61962,3,5,1561,11988 +61963,273,7,38269,88643 +61964,190,7,10910,9951 +61965,232,10,26491,9156 +61966,317,10,43504,223265 +61967,333,2,154575,1363004 +61968,234,1,331745,1448551 +61969,234,1,377287,935359 +61970,182,8,340275,1732082 +61971,415,3,14430,1521692 +61972,403,10,34935,554868 +61973,179,2,13954,1328799 +61974,269,9,12220,9199 +61975,387,10,8410,6818 +61976,3,5,7551,19290 +61977,413,11,19042,1631835 +61978,234,1,102858,51918 +61979,289,6,20421,1447298 +61980,67,10,339403,1055222 +61981,413,11,22998,56944 +61982,3,5,273,3871 +61983,289,6,522,1332501 +61984,77,10,322,4723 +61985,387,10,42472,558338 +61986,226,2,10440,10444 +61987,317,10,327749,355 +61988,273,7,11854,70849 +61989,273,7,47794,19085 +61990,234,1,346473,139280 +61991,317,10,113119,552038 +61992,187,11,28893,1126353 +61993,373,7,9032,900 +61994,413,11,15003,94268 +61995,413,11,3061,29971 +61996,208,2,103332,1456028 +61997,317,10,48882,545794 +61998,53,2,12135,1389663 +61999,387,10,155011,111428 +62000,234,1,41857,51875 +62001,317,10,30496,31730 +62002,132,2,209263,1531497 +62003,180,7,142656,550945 +62004,97,7,204922,1403800 +62005,53,2,459,6247 +62006,413,11,28178,47776 +62007,234,1,13258,52842 +62008,3,5,11798,56021 +62009,413,11,285841,10752 +62010,413,11,37311,4309 +62011,317,10,348631,1438493 +62012,53,2,53714,10221 +62013,413,11,3035,29812 +62014,204,9,43268,1096786 +62015,317,10,30680,1039503 +62016,190,7,1647,1752657 +62017,317,10,32764,6011 +62018,387,10,117534,929733 +62019,5,10,198511,2305 +62020,273,7,58757,228355 +62021,5,10,1877,19707 +62022,60,1,362541,1039677 +62023,277,3,66193,1402530 +62024,234,1,347106,115927 +62025,166,9,635,1399989 +62026,53,2,216580,1395215 +62027,234,1,47596,1853469 +62028,148,9,70436,5548 +62029,413,11,102,1031 +62030,187,7,664,1404214 +62031,204,9,38554,12638 +62032,413,11,634,9154 +62033,234,1,24020,72258 +62034,387,10,20028,69319 +62035,53,2,246133,1491977 +62036,203,1,244610,1461498 +62037,3,5,10801,46018 +62038,196,7,266856,1338973 +62039,234,1,53573,148506 +62040,357,3,206647,1551872 +62041,269,9,205891,1175114 +62042,293,2,418437,1594611 +62043,3,5,250769,112002 +62044,317,10,174751,589613 +62045,317,10,19887,931133 +62046,317,10,136582,129760 +62047,148,9,22292,8508 +62048,226,2,401164,1817470 +62049,232,10,6978,18179 +62050,209,7,204922,1406905 +62051,273,7,435,6049 +62052,5,10,40978,91574 +62053,204,9,45827,1403614 +62054,234,1,302104,1311564 +62055,5,10,71701,572382 +62056,52,10,42499,978927 +62057,182,8,310568,1598443 +62058,182,8,11046,1391117 +62059,20,2,378441,1574483 +62060,13,1,53949,161961 +62061,208,2,9946,3995 +62062,387,10,209764,1293082 +62063,234,1,14016,58052 +62064,234,1,12606,15042 +62065,413,11,95177,139150 +62066,234,1,12888,139874 +62067,387,10,141819,142670 +62068,415,3,10724,1442566 +62069,234,1,177112,574655 +62070,53,2,95516,1205876 +62071,377,3,10590,1566254 +62072,3,5,133458,1152812 +62073,226,2,25918,1684056 +62074,75,5,338063,1581564 +62075,277,3,17654,1583559 +62076,53,2,88273,6797 +62077,317,10,216046,1200686 +62078,387,10,27999,115845 +62079,234,1,219466,116607 +62080,3,5,95536,39191 +62081,196,7,206647,1551789 +62082,3,5,58905,30258 +62083,317,10,28062,92410 +62084,360,3,25376,1027869 +62085,196,7,8470,1406826 +62086,317,10,18620,32030 +62087,270,9,9946,1390516 +62088,77,10,10754,1132 +62089,187,7,443319,1554336 +62090,46,5,98277,1849150 +62091,53,2,38157,55180 +62092,415,3,539,7311 +62093,160,3,9675,1099845 +62094,166,9,10999,1338671 +62095,273,7,81120,37467 +62096,234,1,30973,107414 +62097,234,1,45000,25161 +62098,60,1,42537,1534107 +62099,226,2,29449,1559285 +62100,234,1,17771,225898 +62101,317,10,197624,102389 +62102,333,2,48949,30996 +62103,234,1,11077,17494 +62104,387,10,390,2303 +62105,327,7,43093,14931 +62106,387,10,408220,1220905 +62107,234,1,344120,938085 +62108,412,9,33273,1585447 +62109,234,1,155724,84981 +62110,234,1,106821,108987 +62111,105,7,3059,24717 +62112,158,2,6947,1395033 +62113,317,10,128767,233134 +62114,262,6,189,1401142 +62115,394,7,10491,1433230 +62116,187,11,17577,1423838 +62117,413,11,43548,5821 +62118,3,5,13616,1586321 +62119,303,3,142402,203666 +62120,273,7,10458,67500 +62121,197,5,364088,1748532 +62122,387,10,49013,129975 +62123,317,10,17893,56470 +62124,104,7,8869,1552596 +62125,3,5,253310,1014919 +62126,273,7,101998,1177640 +62127,287,3,9966,1412578 +62128,317,10,332168,1765665 +62129,333,2,1586,1336188 +62130,234,1,2033,4756 +62131,413,11,47096,32053 +62132,333,2,297762,1545926 +62133,182,8,36657,1399508 +62134,234,1,77165,5561 +62135,360,3,924,1401286 +62136,388,9,6171,1426764 +62137,204,9,1969,1120514 +62138,3,5,25241,140886 +62139,3,5,263627,1178907 +62140,204,9,44545,1176363 +62141,317,10,90001,126965 +62142,234,1,29299,587509 +62143,234,1,105384,1121908 +62144,234,1,9495,21085 +62145,317,10,43252,7506 +62146,401,6,9297,937235 +62147,3,5,364088,1408894 +62148,204,9,4459,12280 +62149,331,3,52661,1404759 +62150,148,9,6145,53182 +62151,234,1,16638,40199 +62152,75,5,205864,1394219 +62153,413,11,46492,1063917 +62154,234,1,74437,3754 +62155,204,9,130881,27937 +62156,413,11,30527,10751 +62157,3,5,260947,33618 +62158,221,3,157847,1372214 +62159,9,3,6947,1573091 +62160,53,2,83754,1294789 +62161,387,10,306952,138008 +62162,52,10,101325,1027173 +62163,327,7,130948,1298940 +62164,3,5,108869,14431 +62165,317,10,407887,1604286 +62166,234,1,2280,14911 +62167,317,10,131027,1092619 +62168,5,10,149511,1471965 +62169,53,2,1907,9006 +62170,234,1,376823,78720 +62171,141,7,1976,13571 +62172,317,10,244971,1280176 +62173,198,6,360249,1635738 +62174,317,10,158900,110055 +62175,234,1,409082,137002 +62176,317,10,39061,121971 +62177,204,9,55420,1329419 +62178,37,3,205587,1457935 +62179,387,10,9950,39996 +62180,179,2,949,1535950 +62181,3,5,167262,1043953 +62182,148,9,30666,1832365 +62183,387,10,33495,69040 +62184,333,2,43783,1377159 +62185,401,6,10198,1615556 +62186,196,7,346672,1338482 +62187,234,1,10986,67971 +62188,317,10,32708,109598 +62189,234,1,28455,42301 +62190,105,7,34138,29294 +62191,269,9,71503,11294 +62192,234,1,401060,95321 +62193,269,9,9428,5779 +62194,273,7,57993,14356 +62195,234,1,337,5005 +62196,234,1,128311,30058 +62197,245,3,3059,1016141 +62198,234,1,191476,549580 +62199,234,1,18694,83467 +62200,234,1,82703,18898 +62201,273,7,9651,1760 +62202,3,5,42871,18576 +62203,269,9,28340,1795356 +62204,53,2,285848,1157008 +62205,234,1,43544,89193 +62206,53,2,55823,9247 +62207,175,5,10543,1394973 +62208,317,10,83729,49198 +62209,52,10,73969,1299225 +62210,292,3,9352,1573435 +62211,269,9,182127,135833 +62212,226,2,29611,1489812 +62213,270,9,74,1395438 +62214,373,7,180299,1265617 +62215,3,5,424971,1705634 +62216,234,1,52475,113500 +62217,234,1,8886,2303 +62218,204,9,118,9618 +62219,204,9,86520,550944 +62220,52,10,13005,19724 +62221,273,7,6589,14712 +62222,3,5,5048,9752 +62223,413,11,267852,1388535 +62224,333,2,256347,1338146 +62225,226,2,93676,999599 +62226,289,6,22752,1060532 +62227,387,10,219233,587603 +62228,234,1,9870,52934 +62229,187,11,329805,1394508 +62230,413,11,60140,25169 +62231,239,5,2662,1603303 +62232,3,5,32093,14648 +62233,3,5,53459,1134084 +62234,234,1,54959,87356 +62235,148,9,323675,1378195 +62236,273,7,23957,30922 +62237,413,11,360784,141303 +62238,317,10,92809,1338399 +62239,204,9,544,7416 +62240,189,3,1271,1368885 +62241,413,11,9812,69928 +62242,53,2,45273,964601 +62243,236,8,693,1761065 +62244,286,3,204553,1293085 +62245,196,7,71668,1411873 +62246,72,11,9902,1156888 +62247,413,11,31428,1412169 +62248,53,2,9406,25750 +62249,273,7,11655,70369 +62250,67,10,31473,1113506 +62251,79,7,9325,5839 +62252,289,6,29233,1696502 +62253,327,7,1838,19350 +62254,317,10,13346,11834 +62255,234,1,393263,1364881 +62256,3,5,78318,8713 +62257,53,2,280092,66494 +62258,277,3,120497,1533676 +62259,3,5,1911,17629 +62260,413,11,99599,69834 +62261,148,9,9893,35513 +62262,239,5,12103,1601620 +62263,413,11,37481,14491 +62264,413,11,11869,70798 +62265,234,1,187252,1011340 +62266,333,2,2160,26175 +62267,234,1,122368,4453 +62268,317,10,35564,141383 +62269,317,10,74395,1042875 +62270,234,1,36140,237859 +62271,328,6,297762,1903927 +62272,64,6,340187,1579537 +62273,244,3,13042,8153 +62274,3,5,64526,239307 +62275,387,10,634,7018 +62276,373,7,42045,11384 +62277,234,1,332512,107721 +62278,413,11,47238,1599048 +62279,5,10,179154,1161697 +62280,148,9,79735,1010740 +62281,180,7,1687,18656 +62282,105,7,396643,545639 +62283,3,5,2974,29243 +62284,388,9,7916,1438600 +62285,72,11,109424,1408400 +62286,234,1,74950,48303 +62287,203,1,40562,1431027 +62288,234,1,61400,85801 +62289,59,3,2567,1739546 +62290,413,11,6591,22626 +62291,234,1,18803,84352 +62292,198,6,332567,1638134 +62293,234,1,28592,101237 +62294,269,9,9542,4248 +62295,413,11,80592,89924 +62296,269,9,27886,1183574 +62297,3,5,137182,1057377 +62298,317,10,36489,117732 +62299,413,11,1896,19834 +62300,60,1,678,1337760 +62301,234,1,24828,66548 +62302,317,10,10055,1327402 +62303,3,5,11630,2723 +62304,394,7,257345,1365542 +62305,333,2,49577,1687762 +62306,387,10,37247,7795 +62307,328,6,76757,1483138 +62308,287,3,240832,1412912 +62309,317,10,352094,1491428 +62310,234,1,376292,1327402 +62311,249,7,77338,1413908 +62312,413,11,312221,1141734 +62313,27,3,2662,1603308 +62314,234,1,174188,130311 +62315,234,1,4982,578 +62316,209,7,82,1552093 +62317,226,2,251,83067 +62318,273,7,157847,1006723 +62319,3,5,301228,1519839 +62320,273,7,74666,1662518 +62321,317,10,105231,1037695 +62322,234,1,199647,1179824 +62323,53,2,32166,1332483 +62324,190,7,188102,1338132 +62325,273,7,34326,103489 +62326,234,1,121662,1074623 +62327,175,5,9425,1399876 +62328,53,2,8368,13009 +62329,5,10,62143,1473271 +62330,413,11,52475,1519283 +62331,368,7,8870,1610266 +62332,273,7,5460,11 +62333,234,1,270646,1011135 +62334,387,10,935,240 +62335,234,1,206657,1490054 +62336,317,10,216156,57632 +62337,25,2,395982,1755128 +62338,273,7,55720,2949 +62339,234,1,56095,65981 +62340,287,3,7916,1438593 +62341,273,7,11428,57902 +62342,105,7,80125,983164 +62343,413,11,77338,1031921 +62344,20,2,318781,1161138 +62345,234,1,42250,545502 +62346,43,2,696,10444 +62347,105,7,302435,1325570 +62348,226,2,9443,1626425 +62349,203,1,1415,1399979 +62350,293,2,209112,1402004 +62351,234,1,287811,1264018 +62352,317,10,45431,191462 +62353,234,1,308671,14637 +62354,273,7,22968,1474372 +62355,203,1,75174,1397693 +62356,317,10,85580,97753 +62357,413,11,79735,3486 +62358,187,11,11975,1400813 +62359,204,9,109391,1567978 +62360,387,10,11129,68281 +62361,204,9,16551,1800898 +62362,413,11,24341,2866 +62363,413,11,9080,14457 +62364,333,2,2397,24510 +62365,119,7,14811,491 +62366,317,10,18711,102445 +62367,228,2,284052,1774238 +62368,148,9,345925,1518455 +62369,343,3,11370,131732 +62370,228,2,439998,1751993 +62371,3,5,159474,238464 +62372,234,1,51141,6648 +62373,269,9,11391,69187 +62374,287,3,146243,1327838 +62375,250,11,76341,1518782 +62376,198,6,311324,1658877 +62377,58,2,691,101523 +62378,317,10,199647,1179822 +62379,291,6,46738,4657 +62380,234,1,5257,42378 +62381,286,3,19665,36165 +62382,234,1,44869,9049 +62383,387,10,9840,19377 +62384,317,10,165159,49451 +62385,273,7,206647,153 +62386,53,2,42537,8506 +62387,3,5,11897,3637 +62388,411,9,38356,8285 +62389,219,11,435,139953 +62390,307,6,3933,1448060 +62391,3,5,37954,2760 +62392,317,10,205864,1574604 +62393,234,1,103012,176485 +62394,387,10,374475,40476 +62395,53,2,204040,1355547 +62396,394,7,15019,1355962 +62397,268,7,2567,1402027 +62398,39,3,2675,1674660 +62399,181,7,13493,1551025 +62400,413,11,95627,1403535 +62401,148,9,64129,9587 +62402,234,1,99229,1020670 +62403,234,1,61563,1035 +62404,234,1,437752,84074 +62405,387,10,40220,980279 +62406,187,11,410537,105278 +62407,353,7,14676,1807334 +62408,3,5,3016,29573 +62409,269,9,11185,1178592 +62410,317,10,318359,4133 +62411,262,6,45019,1550226 +62412,413,11,14295,5884 +62413,273,7,2577,26191 +62414,234,1,35694,569 +62415,317,10,23823,1541737 +62416,357,3,241239,1468571 +62417,143,7,274857,11350 +62418,204,9,342765,1436438 +62419,273,7,115109,8503 +62420,377,3,118,1014917 +62421,273,7,343934,41674 +62422,72,11,2567,1077878 +62423,176,3,102382,1399459 +62424,387,10,48962,1866509 +62425,234,1,19215,543371 +62426,387,10,43832,4297 +62427,187,11,22279,1581363 +62428,226,2,34127,1369141 +62429,317,10,121640,1074600 +62430,413,11,35200,493 +62431,148,9,120,1321 +62432,77,10,13827,75882 +62433,234,1,29510,12011 +62434,387,10,11204,65873 +62435,175,5,1724,1404850 +62436,234,1,99188,98510 +62437,189,3,354859,1465995 +62438,158,2,384737,1739845 +62439,331,3,1624,1552518 +62440,387,10,10524,1957 +62441,234,1,464111,82194 +62442,269,9,15661,958228 +62443,234,1,376394,1418929 +62444,317,10,255692,1140667 +62445,5,10,47190,20875 +62446,387,10,63179,132189 +62447,317,10,54384,150514 +62448,245,3,30126,1342503 +62449,413,11,54396,1300628 +62450,317,10,50196,53657 +62451,234,1,2750,172 +62452,234,1,279332,109680 +62453,234,1,110001,224884 +62454,113,9,293167,1683357 +62455,381,9,13954,1398868 +62456,234,1,327231,76367 +62457,234,1,24647,79056 +62458,102,3,634,1576024 +62459,413,11,1850,19467 +62460,234,1,10567,65855 +62461,234,1,120615,2087 +62462,234,1,276909,1314431 +62463,317,10,382995,84233 +62464,234,1,81684,592854 +62465,5,10,10204,2088 +62466,413,11,322,384 +62467,196,7,206647,1494824 +62468,234,1,70807,559681 +62469,273,7,2355,24190 +62470,204,9,60935,959549 +62471,289,6,9514,1642529 +62472,413,11,438634,1756471 +62473,317,10,140648,1044183 +62474,97,7,256347,1338155 +62475,317,10,7514,52846 +62476,75,5,266433,1195181 +62477,226,2,337339,1725779 +62478,3,5,10611,13931 +62479,234,1,211928,1180756 +62480,3,5,4964,6389 +62481,317,10,48780,5602 +62482,234,1,440767,1137548 +62483,123,3,37100,1162040 +62484,234,1,44536,47517 +62485,45,9,394645,1864620 +62486,52,10,28340,100492 +62487,204,9,188927,38022 +62488,203,1,318922,1354930 +62489,413,11,43522,113571 +62490,301,5,3037,1585806 +62491,273,7,12584,7182 +62492,148,9,200727,1327762 +62493,387,10,82368,31894 +62494,413,11,35001,51767 +62495,399,9,9325,136118 +62496,234,1,17209,81460 +62497,273,7,9904,37 +62498,234,1,9516,11448 +62499,127,3,9461,18897 +62500,3,5,179826,24310 +62501,413,11,428493,31437 +62502,138,3,13676,1448084 +62503,169,3,55534,1421722 +62504,273,7,28820,59366 +62505,273,7,44960,106756 +62506,179,2,9425,1319193 +62507,52,10,4882,91950 +62508,77,10,10257,64432 +62509,413,11,1825,15005 +62510,413,11,47794,52093 +62511,52,10,35404,114284 +62512,180,7,44105,1604771 +62513,188,8,98277,1849149 +62514,3,5,31561,6603 +62515,341,2,8619,1858342 +62516,105,7,2172,781686 +62517,387,10,12104,67273 +62518,204,9,22584,1132111 +62519,286,3,18665,68328 +62520,234,1,256962,72960 +62521,387,10,29101,1012 +62522,3,5,373397,1176221 +62523,52,10,116977,59644 +62524,66,11,320910,1668655 +62525,413,11,110540,1182098 +62526,317,10,70583,558907 +62527,169,3,11370,16345 +62528,179,2,188927,1439109 +62529,277,3,43092,1176171 +62530,234,1,40662,124279 +62531,317,10,71503,563114 +62532,15,6,10567,1455541 +62533,387,10,69152,50739 +62534,182,8,329865,1402034 +62535,317,10,145316,7879 +62536,387,10,259694,69125 +62537,387,10,8942,225557 +62538,289,6,98566,1459757 +62539,387,10,2169,22177 +62540,234,1,266022,92436 +62541,234,1,211179,41147 +62542,398,9,1381,1447136 +62543,413,11,293863,17233 +62544,268,7,20919,1409773 +62545,5,10,10847,60982 +62546,333,2,33592,1318445 +62547,3,5,76094,85855 +62548,262,6,18843,1399871 +62549,105,7,74154,237681 +62550,387,10,38783,12415 +62551,53,2,29161,1760090 +62552,317,10,443007,1763905 +62553,3,5,110261,49901 +62554,66,11,408381,1657552 +62555,234,1,12807,73740 +62556,187,11,1251,1377127 +62557,360,3,15472,1400789 +62558,269,9,93676,928299 +62559,413,11,3595,6190 +62560,53,2,288521,1009388 +62561,373,7,17209,1392969 +62562,373,7,10330,74978 +62563,234,1,9294,12962 +62564,102,3,10727,1584248 +62565,387,10,10488,985874 +62566,3,5,42796,40392 +62567,34,8,74,1512745 +62568,250,11,83,1567251 +62569,387,10,25983,101542 +62570,317,10,32284,1031288 +62571,234,1,430365,225142 +62572,148,9,10925,1399859 +62573,387,10,43228,31253 +62574,3,5,266856,21655 +62575,289,6,102382,1450992 +62576,180,7,77964,12496 +62577,252,3,755,1877362 +62578,317,10,104374,110519 +62579,262,6,251,1400561 +62580,164,3,351901,1558713 +62581,234,1,24409,63772 +62582,53,2,2323,23973 +62583,317,10,86413,933247 +62584,187,11,419430,1542024 +62585,317,10,27034,50568 +62586,3,5,330770,1207545 +62587,105,7,14137,42304 +62588,253,6,369885,1790946 +62589,317,10,255647,228764 +62590,209,7,49013,15354 +62591,160,3,1058,1338109 +62592,67,10,2675,91069 +62593,204,9,15497,132251 +62594,328,6,328429,1553532 +62595,148,9,10796,19309 +62596,234,1,34672,61244 +62597,333,2,10178,31206 +62598,234,1,29259,103393 +62599,333,2,10096,23787 +62600,413,11,9776,34484 +62601,387,10,43809,1504 +62602,53,2,27629,4350 +62603,57,2,11618,1431999 +62604,413,11,286532,1382734 +62605,234,1,64454,37313 +62606,5,10,203819,1337327 +62607,398,9,181533,1047108 +62608,234,1,16873,80949 +62609,273,7,117251,5430 +62610,234,1,14676,70262 +62611,234,1,12811,73748 +62612,105,7,26125,73091 +62613,105,7,44943,6041 +62614,111,7,924,1447601 +62615,269,9,435,10820 +62616,60,1,125264,1080277 +62617,387,10,17831,70044 +62618,289,6,12593,1458333 +62619,3,5,35032,10537 +62620,269,9,817,10396 +62621,360,3,613,1425852 +62622,187,11,24624,957581 +62623,234,1,99095,28256 +62624,46,5,263115,1821901 +62625,232,10,76871,32013 +62626,204,9,118536,118254 +62627,317,10,42267,42171 +62628,273,7,45211,1259 +62629,203,1,243940,1344842 +62630,52,10,33146,87354 +62631,306,7,98277,1849137 +62632,187,11,37534,1407832 +62633,387,10,359152,1507956 +62634,60,1,408755,1660967 +62635,317,10,396330,150856 +62636,60,1,338189,1559680 +62637,105,7,210910,70897 +62638,140,9,5559,1438901 +62639,387,10,16235,11777 +62640,273,7,353728,1500498 +62641,3,5,38775,4083 +62642,289,6,3933,384204 +62643,413,11,284135,1542408 +62644,269,9,6977,10575 +62645,413,11,28270,68645 +62646,269,9,42218,1049 +62647,203,1,16177,1455279 +62648,273,7,358982,1507499 +62649,317,10,38509,1035941 +62650,3,5,21627,18882 +62651,234,1,125510,126261 +62652,387,10,11056,67955 +62653,289,6,109329,226599 +62654,72,11,634,1576026 +62655,97,7,20919,1423411 +62656,387,10,2274,8999 +62657,53,2,201,2397 +62658,287,3,39195,122466 +62659,273,7,5319,43410 +62660,3,5,53358,983625 +62661,413,11,1976,18595 +62662,399,9,10198,1447423 +62663,97,7,246655,1551367 +62664,74,5,395992,1770976 +62665,234,1,430985,36172 +62666,317,10,50512,20875 +62667,273,7,171759,1152735 +62668,12,10,463906,133223 +62669,53,2,57996,1431320 +62670,387,10,62488,52053 +62671,317,10,17614,1629319 +62672,105,7,112284,72066 +62673,387,10,126083,148850 +62674,234,1,362703,1027173 +62675,387,10,155308,85894 +62676,413,11,14254,42633 +62677,108,10,184795,109469 +62678,3,5,374461,53181 +62679,158,2,9532,1441266 +62680,387,10,259593,10792 +62681,321,11,14430,1204130 +62682,158,2,544,1556518 +62683,72,11,118,1434562 +62684,3,5,10394,7783 +62685,234,1,314420,1361389 +62686,234,1,44945,14409 +62687,127,3,61400,28242 +62688,3,5,68050,933326 +62689,287,3,79316,1547671 +62690,273,7,25736,34229 +62691,234,1,284564,16848 +62692,3,5,17057,6452 +62693,328,6,356296,1402984 +62694,286,3,345069,1478654 +62695,203,1,13058,1404871 +62696,387,10,116711,51328 +62697,387,10,22584,126653 +62698,413,11,31411,29971 +62699,187,11,347096,1574828 +62700,5,10,2102,21545 +62701,269,9,285181,1143762 +62702,394,7,9946,1417972 +62703,105,7,75204,574152 +62704,333,2,127728,1085649 +62705,413,11,58,1721 +62706,105,7,179105,928582 +62707,53,2,303856,1645542 +62708,317,10,37923,69567 +62709,234,1,220029,120930 +62710,234,1,45990,72191 +62711,269,9,340027,23414 +62712,273,7,46149,25800 +62713,306,7,9352,1434575 +62714,381,9,3597,1790543 +62715,292,3,285270,1367945 +62716,269,9,469172,1112004 +62717,273,7,42430,552534 +62718,317,10,49158,113727 +62719,333,2,211059,1620757 +62720,105,7,13436,1656904 +62721,413,11,8583,2484 +62722,234,1,72421,58385 +62723,387,10,9252,57006 +62724,75,5,11618,1412990 +62725,277,3,38099,119634 +62726,317,10,81110,67428 +62727,234,1,24955,92893 +62728,3,5,334651,1425979 +62729,277,3,38437,8627 +62730,105,7,14217,57304 +62731,387,10,16096,141826 +62732,298,5,7551,1400733 +62733,317,10,18843,227561 +62734,269,9,19140,11489 +62735,273,7,9899,60133 +62736,301,5,222935,1521447 +62737,273,7,353979,56657 +62738,317,10,149509,1264872 +62739,234,1,14349,1282736 +62740,234,1,57209,225680 +62741,413,11,55152,6790 +62742,317,10,222932,179479 +62743,317,10,44338,550477 +62744,234,1,16784,18281 +62745,273,7,338676,96694 +62746,181,7,41733,12533 +62747,209,7,2675,1534668 +62748,226,2,1896,19836 +62749,289,6,328111,998586 +62750,394,7,410537,105278 +62751,204,9,9042,23492 +62752,105,7,7916,23806 +62753,53,2,870,13247 +62754,160,3,31397,128596 +62755,387,10,328032,1544897 +62756,3,5,108224,32996 +62757,53,2,2047,8287 +62758,53,2,26961,61281 +62759,75,5,279690,1630969 +62760,105,7,18613,1274552 +62761,269,9,296025,1329557 +62762,143,7,118,1305 +62763,226,2,6163,1182554 +62764,143,7,95536,1155948 +62765,60,1,238,10546 +62766,286,3,33343,117154 +62767,113,9,11045,1458691 +62768,273,7,50225,28241 +62769,269,9,18392,551522 +62770,182,8,314371,1578003 +62771,413,11,78028,1551619 +62772,3,5,26768,30932 +62773,234,1,187010,1045561 +62774,53,2,12412,37298 +62775,317,10,67794,54443 +62776,239,5,99367,1700673 +62777,209,7,13225,1815887 +62778,234,1,15050,12112 +62779,67,10,6947,91069 +62780,175,5,42188,1181554 +62781,22,9,16176,10614 +62782,234,1,117212,998534 +62783,234,1,315319,233334 +62784,232,10,28268,1092902 +62785,53,2,44875,1355547 +62786,269,9,42764,1438841 +62787,317,10,131475,1086386 +62788,3,5,82350,101574 +62789,105,7,42764,1766556 +62790,317,10,118640,1068144 +62791,317,10,81182,1051293 +62792,234,1,293089,109893 +62793,333,2,14370,32355 +62794,269,9,329289,1440579 +62795,387,10,31598,39996 +62796,234,1,149149,133090 +62797,40,1,236324,1883418 +62798,209,7,82,1336197 +62799,3,5,435,6050 +62800,413,11,397717,46809 +62801,234,1,85743,56370 +62802,317,10,356752,1501743 +62803,204,9,42325,9059 +62804,54,10,201676,1183756 +62805,273,7,11839,52593 +62806,3,5,32600,14916 +62807,413,11,463800,62907 +62808,413,11,46567,1008500 +62809,343,3,60568,1743596 +62810,273,7,13654,21068 +62811,75,5,1251,1178615 +62812,34,8,198663,1425341 +62813,317,10,32298,486 +62814,415,3,27276,80800 +62815,234,1,215743,1188 +62816,12,10,213121,7 +62817,60,1,14554,6568 +62818,160,3,9835,112572 +62819,273,7,11379,69161 +62820,413,11,49502,142343 +62821,204,9,2503,23453 +62822,234,1,190940,80386 +62823,317,10,264746,1713740 +62824,75,5,345925,1453874 +62825,273,7,95627,1538340 +62826,277,3,8276,1410594 +62827,303,3,395883,72703 +62828,198,6,354859,1855860 +62829,413,11,146679,56989 +62830,403,10,22554,88913 +62831,204,9,10276,1534483 +62832,346,3,2897,97471 +62833,72,11,8619,1575003 +62834,387,10,11035,4415 +62835,413,11,71859,6827 +62836,301,5,239566,1418398 +62837,3,5,62728,943 +62838,127,3,279096,1386326 +62839,245,3,76788,1666835 +62840,148,9,194509,31970 +62841,273,7,308529,1380048 +62842,209,7,28032,1550058 +62843,104,7,118,1395729 +62844,234,1,65055,4755 +62845,273,7,90034,89085 +62846,317,10,17295,90694 +62847,286,3,255491,986472 +62848,234,1,262841,5713 +62849,250,11,69668,1414558 +62850,327,7,2105,1409256 +62851,196,7,638,9418 +62852,75,5,145154,1122371 +62853,3,5,15239,78021 +62854,333,2,159469,4352 +62855,203,1,703,1459591 +62856,148,9,61225,4188 +62857,3,5,1282,4338 +62858,3,5,145135,55441 +62859,209,7,41733,1546457 +62860,234,1,36868,138174 +62861,269,9,42430,553232 +62862,304,10,76642,572388 +62863,181,7,46286,1563899 +62864,291,6,369406,1428874 +62865,221,3,41963,1562595 +62866,286,3,52021,1059147 +62867,387,10,54406,1222403 +62868,234,1,18711,102445 +62869,52,10,43228,31252 +62870,230,3,230179,74225 +62871,158,2,312221,1580864 +62872,406,6,809,1463188 +62873,204,9,7445,1001708 +62874,234,1,191476,1444773 +62875,67,10,30675,87169 +62876,189,3,4248,1667261 +62877,111,7,10865,1552882 +62878,387,10,118957,52968 +62879,234,1,53739,148763 +62880,413,11,68715,1607447 +62881,413,11,26801,7649 +62882,234,1,215032,92013 +62883,5,10,108017,1008333 +62884,333,2,140814,1113458 +62885,60,1,301671,1707469 +62886,219,11,9472,1562248 +62887,53,2,245692,1574451 +62888,148,9,168027,1324792 +62889,234,1,120259,90522 +62890,387,10,10549,11181 +62891,158,2,263115,1407743 +62892,203,1,2924,74823 +62893,301,5,76163,1408357 +62894,52,10,126889,191937 +62895,187,11,228970,1415965 +62896,226,2,77964,91232 +62897,234,1,239798,72196 +62898,105,7,17189,1181227 +62899,182,8,297702,1636858 +62900,317,10,414910,1676538 +62901,3,5,27917,238950 +62902,148,9,29143,1639067 +62903,53,2,51994,19310 +62904,3,5,147876,96052 +62905,415,3,2463,25244 +62906,196,7,7220,1367494 +62907,234,1,12704,58251 +62908,317,10,36773,1217611 +62909,204,9,1164,17116 +62910,268,7,1381,1340346 +62911,143,7,393562,1760324 +62912,273,7,77650,26026 +62913,387,10,92848,148426 +62914,234,1,23843,1271989 +62915,46,5,163,1701736 +62916,289,6,291270,1453495 +62917,113,9,324670,1574043 +62918,53,2,293167,9616 +62919,273,7,74629,13524 +62920,234,1,3537,9168 +62921,53,2,39907,567527 +62922,234,1,402672,78751 +62923,53,2,834,3962 +62924,204,9,28571,8623 +62925,15,6,251,1453289 +62926,234,1,9987,61490 +62927,317,10,229182,1264093 +62928,169,3,40807,1372414 +62929,32,8,109424,1408395 +62930,53,2,9914,1099544 +62931,234,1,120172,1071589 +62932,387,10,6145,48137 +62933,53,2,389630,1179842 +62934,390,6,92321,1504814 +62935,234,1,71732,25854 +62936,189,3,241254,1393406 +62937,317,10,75101,1523983 +62938,413,11,1659,18435 +62939,387,10,10921,33045 +62940,371,3,14430,1521661 +62941,97,7,11056,1400473 +62942,333,2,37672,1489957 +62943,234,1,278660,578687 +62944,60,1,397365,1653484 +62945,67,10,169934,1579732 +62946,105,7,146521,1092911 +62947,415,3,34650,3252 +62948,234,1,14181,24294 +62949,413,11,241374,72067 +62950,53,2,151431,1290010 +62951,105,7,88005,1042699 +62952,77,10,8340,54607 +62953,273,7,9958,60967 +62954,234,1,117023,1064959 +62955,234,1,15,40 +62956,127,3,49521,58911 +62957,204,9,215373,996401 +62958,160,3,84336,1118382 +62959,53,2,315846,118405 +62960,190,7,243568,1685942 +62961,273,7,247218,1282613 +62962,269,9,46492,1125521 +62963,105,7,5991,3023 +62964,328,6,257088,1399871 +62965,75,5,238589,61851 +62966,209,7,9982,12945 +62967,187,11,15476,1392968 +62968,357,3,246655,1548869 +62969,317,10,53367,44950 +62970,234,1,16296,80247 +62971,413,11,41599,91888 +62972,317,10,56191,240845 +62973,401,6,12,7891 +62974,289,6,22752,1538323 +62975,3,5,18998,83996 +62976,210,9,9716,1661561 +62977,72,11,11472,37003 +62978,398,9,20242,1338674 +62979,415,3,4978,1447576 +62980,234,1,55922,61961 +62981,234,1,183039,19396 +62982,221,3,1586,1409723 +62983,269,9,9358,1136056 +62984,77,10,9843,59848 +62985,413,11,200727,16362 +62986,287,3,364088,1523174 +62987,413,11,393134,225942 +62988,53,2,259830,1340723 +62989,373,7,9504,1421706 +62990,143,7,54384,1281664 +62991,387,10,13022,59998 +62992,53,2,29786,29800 +62993,234,1,98914,144821 +62994,234,1,310123,126763 +62995,143,7,19200,17994 +62996,148,9,132332,10473 +62997,234,1,209406,34682 +62998,387,10,10691,54048 +62999,20,2,1073,20490 +63000,317,10,44502,1321355 +63001,64,6,954,1577958 +63002,269,9,24624,1099266 +63003,387,10,22752,1203447 +63004,148,9,10708,41082 +63005,317,10,134477,123328 +63006,333,2,245168,1437622 +63007,52,10,278706,1344796 +63008,387,10,42298,233269 +63009,204,9,118984,1470969 +63010,413,11,429238,1419112 +63011,234,1,173467,140909 +63012,396,3,18,8379 +63013,113,9,381518,1808364 +63014,143,7,10929,1342657 +63015,317,10,105384,1121908 +63016,387,10,5257,42380 +63017,413,11,166621,103344 +63018,387,10,86718,81085 +63019,413,11,106016,1131139 +63020,234,1,14823,80384 +63021,317,10,90001,550475 +63022,413,11,89086,10603 +63023,333,2,10999,1338669 +63024,387,10,7229,38507 +63025,5,10,11654,66806 +63026,387,10,9591,31 +63027,317,10,297736,1374538 +63028,203,1,46261,1425398 +63029,234,1,79034,23506 +63030,175,5,11511,1401151 +63031,234,1,44895,116801 +63032,317,10,109610,115179 +63033,175,5,14145,1416991 +63034,273,7,382873,1679702 +63035,52,10,104343,46230 +63036,87,7,73723,1531914 +63037,53,2,352327,1288398 +63038,3,5,329805,1090814 +63039,398,9,1251,1377124 +63040,182,8,13483,1402076 +63041,166,9,42045,1397314 +63042,269,9,171759,584292 +63043,413,11,47310,13289 +63044,268,7,167073,40813 +63045,301,5,294652,1722221 +63046,244,3,23128,1085001 +63047,387,10,1924,6729 +63048,5,10,45935,551667 +63049,234,1,47653,13848 +63050,387,10,147829,14971 +63051,105,7,16371,37930 +63052,387,10,11379,69162 +63053,269,9,239513,1193688 +63054,399,9,72640,225719 +63055,373,7,8915,1337461 +63056,387,10,45205,132495 +63057,317,10,38461,30286 +63058,53,2,1726,9551 +63059,148,9,42532,4311 +63060,273,7,17295,90694 +63061,52,10,132939,42064 +63062,97,7,14,548445 +63063,147,1,419430,1814556 +63064,397,7,120657,27969 +63065,105,7,61225,7182 +63066,413,11,922,330 +63067,317,10,37419,46054 +63068,175,5,340275,1732086 +63069,5,10,35895,55995 +63070,387,10,49009,2690 +63071,3,5,52728,1106077 +63072,314,2,280092,1435638 +63073,268,7,109424,1408378 +63074,60,1,28297,1344915 +63075,412,9,11618,1567969 +63076,87,7,193893,1471726 +63077,317,10,378485,1205016 +63078,143,7,281124,1027356 +63079,204,9,1116,15514 +63080,273,7,96132,6542 +63081,234,1,15943,5834 +63082,52,10,10020,61677 +63083,72,11,31947,1896611 +63084,187,7,28263,1429544 +63085,3,5,791,11817 +63086,234,1,8063,108764 +63087,345,7,11351,1370960 +63088,413,11,390777,1122199 +63089,327,7,43778,1497475 +63090,3,5,26801,7648 +63091,346,3,314065,1466261 +63092,328,6,70074,1406397 +63093,53,2,224,23616 +63094,3,5,51759,30258 +63095,182,8,26656,1086319 +63096,5,10,375366,549495 +63097,304,10,276935,227367 +63098,143,7,223551,1263797 +63099,148,9,15013,77696 +63100,317,10,21032,570268 +63101,413,11,79593,16651 +63102,317,10,443319,1324390 +63103,387,10,345922,1480595 +63104,301,5,227306,1569342 +63105,269,9,11812,11877 +63106,62,3,2300,1591434 +63107,122,8,74,1546881 +63108,403,10,288788,1360145 +63109,204,9,51104,1770626 +63110,317,10,189197,203725 +63111,3,5,26688,959274 +63112,3,5,6552,50723 +63113,413,11,7555,16490 +63114,52,10,80032,144071 +63115,53,2,39833,26174 +63116,226,2,10004,1333756 +63117,333,2,114982,1570402 +63118,187,11,9563,1403636 +63119,5,10,137321,1107189 +63120,234,1,9013,769 +63121,333,2,5421,102115 +63122,286,3,126323,1199827 +63123,52,10,329010,1435414 +63124,234,1,16899,27889 +63125,413,11,28293,355197 +63126,3,5,1813,10765 +63127,105,7,32227,999774 +63128,60,1,8470,1598756 +63129,235,5,329865,1394756 +63130,234,1,9032,17494 +63131,273,7,9846,59878 +63132,234,1,75641,13859 +63133,234,1,403429,937514 +63134,229,6,284052,1774230 +63135,273,7,403431,937895 +63136,289,6,127817,1065698 +63137,203,1,25376,1723530 +63138,3,5,209263,40545 +63139,182,8,24150,35630 +63140,204,9,13580,30175 +63141,317,10,353464,87550 +63142,413,11,32609,239412 +63143,53,2,43931,1594602 +63144,204,9,24363,1470173 +63145,413,11,238589,62941 +63146,317,10,83782,45981 +63147,317,10,257450,101488 +63148,356,2,337339,1413125 +63149,53,2,28261,32442 +63150,160,3,9914,1540889 +63151,413,11,50079,32439 +63152,65,3,9593,1538365 +63153,3,5,375366,1057356 +63154,234,1,2241,23116 +63155,3,5,403867,89151 +63156,179,2,2666,1321694 +63157,273,7,1902,19840 +63158,105,7,5998,47088 +63159,234,1,7088,51932 +63160,317,10,81538,1075122 +63161,160,3,103332,15359 +63162,317,10,161187,1021812 +63163,273,7,10142,1259 +63164,360,9,306966,16998 +63165,40,1,264525,1521653 +63166,164,3,1995,1551797 +63167,45,9,227306,1355535 +63168,273,7,194817,40150 +63169,53,2,367147,1394639 +63170,234,1,231540,1192534 +63171,269,9,29161,103053 +63172,387,10,19545,18611 +63173,413,11,62046,51701 +63174,289,6,228066,1574069 +63175,317,10,238781,64205 +63176,317,10,56329,64377 +63177,3,5,262528,117001 +63178,387,10,31672,53945 +63179,317,10,70815,102560 +63180,257,3,10590,1566262 +63181,317,10,119213,51679 +63182,387,10,99846,1797558 +63183,3,5,29938,30683 +63184,387,10,577,7795 +63185,203,1,29224,1092636 +63186,164,3,225728,1568550 +63187,413,11,47878,21012 +63188,148,9,52661,12848 +63189,5,10,8776,56297 +63190,273,7,12780,552384 +63191,234,1,390343,1598098 +63192,236,8,9882,1747927 +63193,301,5,773,1411272 +63194,148,9,8414,1891686 +63195,3,5,121923,151454 +63196,273,7,14931,40438 +63197,105,7,3059,1615612 +63198,204,9,361571,1114394 +63199,394,7,32657,1399116 +63200,398,9,163,1376887 +63201,387,10,121234,5181 +63202,317,10,78210,21669 +63203,269,9,104193,552639 +63204,209,7,10543,5712 +63205,236,8,383538,1851894 +63206,273,7,63825,5288 +63207,333,2,11607,32280 +63208,387,10,43783,70980 +63209,5,10,88273,1013158 +63210,187,11,4147,1549201 +63211,269,9,84030,1136795 +63212,317,10,365544,1567386 +63213,203,1,10929,1340014 +63214,3,5,12645,1460350 +63215,269,9,137182,76262 +63216,105,7,9475,72861 +63217,289,6,67162,11427 +63218,187,11,33613,1455304 +63219,5,10,16154,11573 +63220,234,1,44502,124237 +63221,234,1,133953,1102141 +63222,46,5,379019,1780164 +63223,273,7,341077,1554131 +63224,387,10,440508,1844145 +63225,204,9,6171,22061 +63226,87,7,79316,563736 +63227,328,6,55534,1400078 +63228,234,1,110830,1050711 +63229,234,1,108312,55264 +63230,387,10,39779,57624 +63231,317,10,35395,101666 +63232,34,8,12783,1427508 +63233,3,5,12591,2507 +63234,3,5,3309,2774 +63235,405,8,50387,45762 +63236,3,5,53654,16751 +63237,148,9,2611,13588 +63238,87,7,112961,1526823 +63239,53,2,52520,11823 +63240,328,6,126889,1595166 +63241,203,1,16164,1449183 +63242,3,5,142770,1623910 +63243,413,11,26125,1681699 +63244,234,1,118794,126421 +63245,234,1,116303,94050 +63246,234,1,338189,143593 +63247,394,7,110972,83090 +63248,273,7,69,1483 +63249,148,9,149509,53114 +63250,292,3,194,1551968 +63251,332,8,328111,1479537 +63252,387,10,9736,37633 +63253,53,2,60855,53115 +63254,413,11,84354,1161645 +63255,269,9,1294,1452812 +63256,3,5,31083,6050 +63257,46,5,297762,1824257 +63258,273,7,29161,7741 +63259,234,1,81215,1050251 +63260,234,1,16307,80261 +63261,387,10,43648,129741 +63262,287,3,13056,1440900 +63263,105,7,96921,1348973 +63264,387,10,84708,103912 +63265,413,11,19096,115085 +63266,3,5,40047,53290 +63267,413,11,223485,10725 +63268,204,9,102668,563408 +63269,387,10,5165,15191 +63270,387,10,11402,14293 +63271,388,9,181533,1869086 +63272,190,7,381518,1564108 +63273,317,10,144271,1120639 +63274,413,11,142391,1322096 +63275,148,9,4307,36273 +63276,317,10,56212,113337 +63277,387,10,171337,59913 +63278,234,1,102668,1031752 +63279,317,10,39495,19249 +63280,234,1,267654,29494 +63281,234,1,171873,233998 +63282,394,7,24624,454855 +63283,3,5,41590,4434 +63284,277,7,10320,113048 +63285,60,1,9443,8940 +63286,105,7,30091,5359 +63287,413,11,352208,1445343 +63288,234,1,72596,6759 +63289,234,1,43364,97202 +63290,317,10,28238,6210 +63291,234,1,25407,4346 +63292,289,6,14164,1463785 +63293,413,11,8915,2866 +63294,387,10,22855,17310 +63295,182,8,204922,1414096 +63296,387,10,40633,135844 +63297,53,2,27259,1624413 +63298,415,3,9514,1642503 +63299,148,9,1877,1707411 +63300,328,6,17209,1616188 +63301,53,2,12220,19971 +63302,234,1,8929,56373 +63303,262,6,815,15883 +63304,328,6,6972,1401729 +63305,75,5,284052,1510440 +63306,60,1,53766,10790 +63307,158,2,17175,1537854 +63308,105,7,55823,3098 +63309,175,5,10590,1390535 +63310,413,11,1694,2866 +63311,219,11,664,1630675 +63312,357,3,19995,1483230 +63313,409,7,435,1313191 +63314,234,1,239091,52140 +63315,387,10,27805,1031105 +63316,219,11,163,139953 +63317,3,5,10075,53841 +63318,221,3,11017,1559616 +63319,5,10,26603,1193430 +63320,268,7,190955,1372087 +63321,413,11,10549,41376 +63322,286,3,425774,1708040 +63323,413,11,4538,38805 +63324,277,3,31993,8627 +63325,53,2,17464,81894 +63326,269,9,1912,5867 +63327,3,5,638,9573 +63328,190,7,122081,1719411 +63329,268,7,283445,995569 +63330,273,7,14459,59958 +63331,105,7,384682,10572 +63332,52,10,43464,30969 +63333,234,1,147287,2725 +63334,413,11,47900,1295712 +63335,204,9,65488,9060 +63336,413,11,17009,1206323 +63337,413,11,1637,8752 +63338,296,3,703,77092 +63339,317,10,29611,68381 +63340,239,5,399790,1740777 +63341,203,1,59296,1367508 +63342,269,9,245168,50952 +63343,3,5,227348,1099278 +63344,269,9,9102,960077 +63345,317,10,59408,1133091 +63346,273,7,171075,10214 +63347,27,3,10733,1571748 +63348,204,9,134201,1398942 +63349,234,1,49963,56539 +63350,277,3,76170,1188046 +63351,286,3,31411,10522 +63352,301,5,10796,1186279 +63353,61,7,365942,1461372 +63354,413,11,51044,871 +63355,317,10,53761,148786 +63356,413,11,104776,1048948 +63357,328,6,294254,1483579 +63358,317,10,57816,1095833 +63359,105,7,345003,1838600 +63360,413,11,321039,1506294 +63361,413,11,124075,10234 +63362,203,1,9664,1385884 +63363,287,3,228496,1338142 +63364,401,6,378236,1840308 +63365,249,7,613,1410749 +63366,98,3,2300,1549181 +63367,28,9,8619,1619076 +63368,273,7,22307,1045 +63369,317,10,19809,85203 +63370,52,10,147767,88593 +63371,196,7,9543,1399117 +63372,273,7,118760,937639 +63373,387,10,15497,69105 +63374,273,7,3035,29810 +63375,317,10,47758,196436 +63376,105,7,10440,69394 +63377,304,10,39347,86009 +63378,333,2,18447,1539027 +63379,302,9,425774,1708011 +63380,204,9,87827,935503 +63381,317,10,205939,1188321 +63382,3,5,11960,232804 +63383,413,11,92341,3486 +63384,148,9,705,8508 +63385,160,3,169298,1169522 +63386,204,9,53766,559561 +63387,273,7,21214,587397 +63388,239,5,310568,1540247 +63389,204,9,69401,1106926 +63390,317,10,228290,120135 +63391,196,7,26693,1179001 +63392,387,10,4253,35784 +63393,200,3,12783,1399561 +63394,234,1,136799,118489 +63395,3,5,285270,572035 +63396,317,10,14066,574396 +63397,333,2,338,36402 +63398,269,9,16358,11373 +63399,413,11,36243,930422 +63400,148,9,24238,1186282 +63401,208,2,16921,1330559 +63402,317,10,26366,14 +63403,52,10,133941,1189156 +63404,386,5,384737,1410109 +63405,234,1,11917,2679 +63406,75,5,202337,11506 +63407,77,10,14773,77307 +63408,53,2,285213,1293801 +63409,182,8,329289,1548030 +63410,394,7,333352,1406825 +63411,208,2,15092,1414539 +63412,5,10,11202,68583 +63413,5,10,69903,1482062 +63414,328,6,13614,1610048 +63415,40,1,10320,1600536 +63416,196,7,283384,1418431 +63417,204,9,42502,1043154 +63418,97,7,25376,1584169 +63419,317,10,347328,1507572 +63420,303,3,9593,956222 +63421,234,1,261274,42 +63422,105,7,110001,1382352 +63423,413,11,87514,11997 +63424,3,5,42614,3356 +63425,99,3,961,14419 +63426,53,2,28820,101554 +63427,232,10,413998,7017 +63428,234,1,153541,1134301 +63429,234,1,39129,83961 +63430,160,3,82,84602 +63431,182,8,21927,1416955 +63432,32,8,264264,1453943 +63433,148,9,63493,1323106 +63434,234,1,248706,122728 +63435,3,5,20160,4614 +63436,387,10,8906,13800 +63437,148,9,78734,8508 +63438,413,11,11812,22303 +63439,273,7,23096,9217 +63440,5,10,84352,928465 +63441,413,11,132332,1305416 +63442,387,10,11888,60208 +63443,220,7,678,121316 +63444,387,10,11697,1503 +63445,235,5,340275,1684987 +63446,286,3,47212,11699 +63447,234,1,137321,5575 +63448,108,10,94570,1302681 +63449,333,2,41298,1623735 +63450,317,10,297736,75071 +63451,203,1,283995,15218 +63452,97,7,93856,1392126 +63453,3,5,11103,67391 +63454,413,11,244316,583875 +63455,387,10,6079,11683 +63456,262,6,284288,1103559 +63457,262,6,70667,1448323 +63458,317,10,162056,72477 +63459,40,1,379019,1780147 +63460,234,1,137217,1106991 +63461,189,3,42309,1438626 +63462,387,10,22744,89860 +63463,3,5,11614,70030 +63464,53,2,3556,32781 +63465,398,9,1125,1400066 +63466,317,10,21379,1222320 +63467,3,5,10739,2240 +63468,317,10,38874,127823 +63469,269,9,84892,1193617 +63470,165,9,39979,4659 +63471,53,2,17111,1180493 +63472,381,9,10665,1895998 +63473,296,3,2675,1674652 +63474,419,10,17241,135405 +63475,234,1,1810,2746 +63476,226,2,29136,1896770 +63477,234,1,9914,55161 +63478,143,7,230179,1512662 +63479,5,10,9540,57883 +63480,387,10,73194,70045 +63481,394,7,329805,930778 +63482,175,5,93856,1409872 +63483,387,10,36658,10995 +63484,234,1,365323,1527065 +63485,388,9,2662,1435690 +63486,72,11,223551,1263791 +63487,234,1,128081,1086386 +63488,198,6,311324,1646598 +63489,234,1,241170,1276304 +63490,3,5,118760,63924 +63491,291,6,3580,935492 +63492,234,1,2180,22323 +63493,234,1,288503,107331 +63494,234,1,42796,40048 +63495,387,10,120977,85692 +63496,148,9,59147,1705748 +63497,349,1,1273,1459790 +63498,387,10,92796,42064 +63499,175,5,72431,1416844 +63500,87,7,10198,1291315 +63501,53,2,16177,1317617 +63502,204,9,31498,13958 +63503,37,3,379019,1780159 +63504,226,2,25430,31207 +63505,327,7,15653,1767063 +63506,204,9,21927,1416938 +63507,413,11,113148,1023495 +63508,53,2,3638,33439 +63509,148,9,97365,1727611 +63510,5,10,39102,78322 +63511,413,11,399790,2070 +63512,148,9,1859,9063 +63513,269,9,433244,1330834 +63514,108,10,47851,1202963 +63515,60,1,10948,12824 +63516,415,3,43172,3252 +63517,317,10,221667,89628 +63518,394,7,9532,3193 +63519,52,10,104430,8502 +63520,273,7,122857,1099076 +63521,373,7,18417,83091 +63522,204,9,51250,1376145 +63523,371,3,262841,1460593 +63524,245,3,147815,1640322 +63525,135,3,9716,1661548 +63526,413,11,8270,17766 +63527,3,5,87936,21783 +63528,3,5,9602,44037 +63529,317,10,38448,17016 +63530,208,2,19995,1202850 +63531,268,7,425774,1570563 +63532,250,11,324670,1396825 +63533,148,9,258480,5391 +63534,83,2,8617,1412185 +63535,13,3,177572,1464355 +63536,176,3,62630,1423425 +63537,398,9,8204,1409702 +63538,3,5,146233,151 +63539,148,9,264560,27158 +63540,387,10,108017,8741 +63541,413,11,87894,22599 +63542,105,7,379019,1780120 +63543,234,1,25038,99499 +63544,273,7,262,72861 +63545,234,1,12617,73256 +63546,269,9,19255,10575 +63547,196,7,356296,1528395 +63548,204,9,65787,3358 +63549,53,2,102,135954 +63550,204,9,31618,1330885 +63551,273,7,381073,1591731 +63552,72,11,10344,1446204 +63553,148,9,102629,1340088 +63554,160,3,241239,1468581 +63555,64,6,332662,1570527 +63556,273,7,26811,588901 +63557,317,10,28465,92436 +63558,187,11,13205,91093 +63559,226,2,23397,1411150 +63560,262,6,60599,1358022 +63561,53,2,40562,558225 +63562,60,1,39907,1649575 +63563,204,9,1375,16652 +63564,413,11,381073,1572172 +63565,204,9,10733,38022 +63566,269,9,152861,584973 +63567,413,11,27970,29636 +63568,3,5,82968,1283131 +63569,203,1,353462,1409307 +63570,3,5,266568,64559 +63571,53,2,16551,798 +63572,53,2,43172,38229 +63573,317,10,56666,224751 +63574,234,1,194722,1174924 +63575,239,5,285685,1617009 +63576,148,9,74924,31205 +63577,291,6,9946,14193 +63578,99,3,9472,1567901 +63579,3,5,20766,403 +63580,5,10,72949,567775 +63581,317,10,435707,931271 +63582,143,7,7299,1433716 +63583,317,10,49950,1128309 +63584,333,2,17978,1433506 +63585,105,7,27904,1654978 +63586,179,2,271714,1323077 +63587,411,9,333352,1410273 +63588,45,9,273481,1568837 +63589,234,1,9899,60129 +63590,161,6,408381,1657564 +63591,3,5,844,12667 +63592,234,1,23861,10790 +63593,413,11,40555,17766 +63594,234,1,28366,74192 +63595,53,2,61527,990115 +63596,413,11,10586,8751 +63597,387,10,24801,72405 +63598,234,1,2861,28615 +63599,317,10,90395,1228078 +63600,317,10,201124,1182829 +63601,234,1,14695,22020 +63602,387,10,10986,67971 +63603,20,2,201085,1530194 +63604,273,7,106747,999284 +63605,333,2,44741,1625629 +63606,289,6,159824,1450992 +63607,273,7,369524,5287 +63608,7,3,544,1780223 +63609,3,5,127521,3114 +63610,127,3,76094,33971 +63611,234,1,171698,1154215 +63612,203,1,325039,1544655 +63613,160,3,26656,1426334 +63614,32,8,896,1559102 +63615,3,5,3092,31523 +63616,317,10,23378,90037 +63617,60,1,194,1365211 +63618,192,5,100669,5903 +63619,413,11,33673,12143 +63620,234,1,361183,1513957 +63621,234,1,62289,82859 +63622,158,2,1991,1420161 +63623,204,9,188927,32200 +63624,413,11,17654,62907 +63625,239,5,544,1552506 +63626,269,9,38027,874 +63627,204,9,169881,1519286 +63628,333,2,127585,406204 +63629,3,5,325205,79756 +63630,204,9,120657,1348060 +63631,234,1,60160,230652 +63632,289,6,22752,57314 +63633,387,10,50725,111942 +63634,179,2,10916,1330856 +63635,141,7,47508,1665502 +63636,234,1,16147,79602 +63637,387,10,214081,37626 +63638,203,1,58372,1399481 +63639,413,11,1259,6492 +63640,346,3,41283,1440312 +63641,187,11,116463,1401182 +63642,317,10,50327,1236860 +63643,273,7,70090,1093441 +63644,234,1,48885,99916 +63645,148,9,70192,31067 +63646,324,3,31773,1562137 +63647,3,5,236737,26015 +63648,413,11,9870,46942 +63649,234,1,43149,3239 +63650,3,5,293970,1317385 +63651,176,3,6947,1573098 +63652,77,10,10176,64099 +63653,234,1,167330,48165 +63654,317,10,78450,143035 +63655,317,10,125520,1342791 +63656,234,1,73241,18626 +63657,268,7,46738,1536194 +63658,53,2,10796,1536312 +63659,317,10,444193,1772635 +63660,234,1,229254,232123 +63661,204,9,96713,1366728 +63662,204,9,37929,62744 +63663,182,8,1125,1299130 +63664,234,1,1415,16958 +63665,234,1,256520,1295092 +63666,317,10,30379,65237 +63667,190,7,11950,119773 +63668,381,9,13072,1393558 +63669,147,1,10590,1534969 +63670,415,3,29449,1559288 +63671,198,6,93856,1297858 +63672,77,10,13555,45817 +63673,234,1,148622,107669 +63674,234,1,114172,87322 +63675,72,11,19101,1565169 +63676,273,7,37910,237520 +63677,234,1,12289,11401 +63678,53,2,12684,27922 +63679,317,10,347031,1383612 +63680,387,10,36089,45187 +63681,3,5,319999,53617 +63682,5,10,227306,38268 +63683,204,9,2805,1653576 +63684,182,8,2666,1392722 +63685,53,2,6948,1316728 +63686,234,1,303966,1173084 +63687,411,9,1381,8704 +63688,387,10,11329,16304 +63689,5,10,101998,222472 +63690,387,10,356296,59913 +63691,234,1,39839,228989 +63692,5,10,52827,1079355 +63693,234,1,38389,185050 +63694,204,9,78265,1077688 +63695,413,11,3933,34896 +63696,3,5,264080,14431 +63697,52,10,22779,150111 +63698,75,5,13957,1561502 +63699,75,5,44115,1394723 +63700,234,1,261538,72496 +63701,317,10,214129,1097516 +63702,209,7,3682,1347755 +63703,203,1,26390,1407209 +63704,333,2,228066,1537725 +63705,273,7,22897,59706 +63706,395,3,10198,1447376 +63707,373,7,315837,579405 +63708,53,2,16806,5634 +63709,52,10,44545,109704 +63710,234,1,57701,226704 +63711,98,3,13205,1645128 +63712,234,1,20028,85495 +63713,234,1,11035,4415 +63714,387,10,42499,237402 +63715,234,1,2001,20561 +63716,18,2,8467,1748848 +63717,394,7,13225,1397822 +63718,53,2,340961,1808422 +63719,317,10,141635,40863 +63720,286,3,181454,1142395 +63721,153,6,76757,1483135 +63722,387,10,11933,707 +63723,226,2,109439,1412767 +63724,160,3,77949,1339652 +63725,166,9,9358,1441278 +63726,3,5,4344,36565 +63727,317,10,167956,237952 +63728,53,2,55433,222367 +63729,330,3,197082,1824204 +63730,387,10,152736,622844 +63731,317,10,42706,95135 +63732,187,11,131343,1450089 +63733,175,5,11517,1537446 +63734,234,1,52655,74626 +63735,328,6,197,1406923 +63736,203,1,84226,1418444 +63737,387,10,744,11080 +63738,53,2,19348,1538718 +63739,234,1,200324,93905 +63740,317,10,45156,518972 +63741,317,10,132426,116607 +63742,269,9,26954,1171850 +63743,53,2,358982,1509635 +63744,234,1,39276,18598 +63745,387,10,28270,64860 +63746,317,10,79500,1087236 +63747,413,11,274990,70832 +63748,148,9,10299,7513 +63749,3,5,76200,19086 +63750,287,3,10590,1380639 +63751,401,6,81188,1453498 +63752,234,1,11421,69371 +63753,189,3,9042,1402975 +63754,234,1,236399,928830 +63755,387,10,10440,1243 +63756,333,2,69974,229802 +63757,234,1,265314,1310888 +63758,269,9,84178,1149913 +63759,317,10,384262,1646178 +63760,373,7,206647,1341858 +63761,413,11,210910,1194701 +63762,328,6,9286,1441361 +63763,234,1,41360,150193 +63764,387,10,293660,7932 +63765,147,1,154972,1755266 +63766,234,1,52485,1021730 +63767,317,10,81120,591016 +63768,387,10,129966,47826 +63769,254,10,53048,42842 +63770,387,10,3087,30265 +63771,108,10,34106,30523 +63772,234,1,45244,21683 +63773,3,5,187602,1168418 +63774,333,2,6934,1418316 +63775,182,8,29444,1533787 +63776,229,6,283995,1815938 +63777,244,3,118,1117950 +63778,75,5,15472,1428008 +63779,269,9,381008,1784760 +63780,53,2,39407,13959 +63781,234,1,293982,566109 +63782,273,7,13912,30256 +63783,234,1,13355,141706 +63784,67,10,1647,1652234 +63785,77,10,6183,48495 +63786,413,11,15379,64196 +63787,200,3,283995,1550775 +63788,234,1,43976,120226 +63789,204,9,60285,29279 +63790,234,1,156711,57408 +63791,5,10,59424,237146 +63792,387,10,2994,29885 +63793,234,1,38618,47924 +63794,317,10,253154,1293567 +63795,209,7,638,9428 +63796,317,10,288313,929899 +63797,317,10,68569,6818 +63798,387,10,43984,120227 +63799,234,1,101998,17386 +63800,209,7,9820,1546457 +63801,204,9,910,4125 +63802,182,8,205864,1393698 +63803,5,10,91551,1041394 +63804,413,11,39347,1278765 +63805,203,1,6963,1480633 +63806,75,5,177677,1388894 +63807,387,10,68715,131205 +63808,213,10,75363,929205 +63809,387,10,246860,21678 +63810,234,1,434973,151083 +63811,158,2,102382,1399476 +63812,317,10,286267,1040888 +63813,234,1,12697,57324 +63814,236,8,9042,1409241 +63815,234,1,38154,80752 +63816,399,9,9325,148178 +63817,3,5,320588,967129 +63818,203,1,20919,1423418 +63819,273,7,48202,89036 +63820,3,5,336804,1574318 +63821,317,10,124979,1289366 +63822,289,6,67130,57314 +63823,398,9,10708,1786666 +63824,148,9,5289,1335040 +63825,234,1,37497,3110 +63826,127,3,52661,217763 +63827,413,11,33792,17762 +63828,234,1,267310,1314857 +63829,14,7,292625,552419 +63830,158,2,294254,1443965 +63831,387,10,72105,1224494 +63832,234,1,8617,45627 +63833,234,1,24212,106629 +63834,226,2,35284,10013 +63835,53,2,444713,1768805 +63836,268,7,16436,150796 +63837,234,1,267852,1388532 +63838,220,7,91950,1620168 +63839,244,3,1428,1403633 +63840,273,7,9893,60068 +63841,317,10,60677,1015967 +63842,132,2,9443,1202174 +63843,234,1,382125,95700 +63844,122,8,45019,1550220 +63845,3,5,10870,1035835 +63846,234,1,292294,582417 +63847,289,6,291270,1053243 +63848,317,10,22615,93393 +63849,209,7,2454,1337411 +63850,179,2,218778,1319744 +63851,269,9,469172,5270 +63852,97,7,259997,1302521 +63853,187,11,10476,1404214 +63854,327,7,280840,1338960 +63855,317,10,85420,55461 +63856,317,10,78377,1487537 +63857,234,1,109610,44130 +63858,401,6,10020,66193 +63859,3,5,38322,14139 +63860,273,7,33729,4360 +63861,160,3,1381,1293479 +63862,269,9,606,10641 +63863,387,10,421958,1679252 +63864,234,1,92635,97618 +63865,317,10,366631,1130509 +63866,273,7,63273,1299745 +63867,226,2,8869,1459187 +63868,317,10,336806,130690 +63869,3,5,25694,29983 +63870,317,10,168647,1141690 +63871,333,2,183412,1404274 +63872,3,5,52440,12307 +63873,5,10,45219,132530 +63874,387,10,70436,63111 +63875,269,9,412202,1320141 +63876,45,9,28739,1407891 +63877,64,6,258193,15325 +63878,234,1,24086,14692 +63879,273,7,12704,73950 +63880,60,1,8070,3583 +63881,154,3,128946,1088222 +63882,373,7,46738,1408831 +63883,169,3,226140,1377417 +63884,88,6,379019,1780165 +63885,204,9,9914,60408 +63886,394,7,140607,2216 +63887,77,10,10063,62680 +63888,5,10,34193,348 +63889,51,9,664,1743747 +63890,413,11,184741,107683 +63891,204,9,12684,27924 +63892,234,1,12614,1927 +63893,234,1,53573,148507 +63894,148,9,1049,6801 +63895,148,9,361018,1792337 +63896,3,5,90563,78387 +63897,234,1,32202,16384 +63898,220,7,455043,12455 +63899,74,5,274857,1829852 +63900,83,2,11351,1317128 +63901,204,9,20544,77251 +63902,286,3,24756,551520 +63903,45,9,296524,1413087 +63904,204,9,31532,8622 +63905,328,6,13849,1395761 +63906,394,7,218778,1404903 +63907,234,1,47500,1081886 +63908,196,7,245703,1414178 +63909,203,1,12113,1390388 +63910,234,1,127380,7 +63911,179,2,60599,1329530 +63912,273,7,338079,1332181 +63913,387,10,11943,8328 +63914,234,1,73198,1056130 +63915,317,10,123109,1077307 +63916,60,1,199155,1026108 +63917,387,10,11848,70720 +63918,175,5,250066,1393859 +63919,204,9,10803,14779 +63920,321,11,8470,1598757 +63921,387,10,158598,1139970 +63922,123,3,287281,114109 +63923,234,1,8965,56850 +63924,387,10,10708,57856 +63925,387,10,9095,12952 +63926,234,1,63376,237044 +63927,167,3,7220,1707125 +63928,75,5,9981,1529590 +63929,210,9,297762,1824283 +63930,33,10,84030,1398986 +63931,301,5,322922,1059406 +63932,239,5,55420,1400105 +63933,234,1,461615,1207953 +63934,97,7,274479,20228 +63935,317,10,115239,1060644 +63936,413,11,264393,1547472 +63937,234,1,42231,1121299 +63938,127,3,140887,88979 +63939,289,6,9514,1642525 +63940,286,3,195269,1193854 +63941,3,5,330115,61550 +63942,413,11,85651,12419 +63943,416,10,6935,59 +63944,5,10,25797,94210 +63945,387,10,10330,11708 +63946,373,7,100669,1398182 +63947,102,3,664,1765797 +63948,289,6,134360,226599 +63949,234,1,17240,117652 +63950,165,9,18843,1440404 +63951,306,7,186869,1862937 +63952,204,9,2994,29888 +63953,269,9,577,6628 +63954,387,10,5917,46601 +63955,53,2,67748,1172516 +63956,317,10,172705,1155290 +63957,413,11,13169,1782 +63958,234,1,64968,5069 +63959,387,10,266373,141593 +63960,387,10,18189,35597 +63961,317,10,207178,84940 +63962,286,3,105945,937980 +63963,234,1,142802,1117989 +63964,3,5,21413,11371 +63965,234,1,86825,10099 +63966,234,1,198306,78176 +63967,3,5,52454,79392 +63968,234,1,121170,101751 +63969,234,1,43903,95293 +63970,234,1,278738,1090027 +63971,234,1,187442,164509 +63972,292,3,11024,1673531 +63973,175,5,8464,1415129 +63974,22,9,924,1436502 +63975,289,6,12593,1208521 +63976,317,10,119694,584535 +63977,415,3,82655,175183 +63978,387,10,98025,134212 +63979,279,9,9982,61422 +63980,204,9,11321,14349 +63981,273,7,197,1729 +63982,273,7,18731,553018 +63983,289,6,9514,229825 +63984,387,10,57829,1058166 +63985,413,11,16374,40319 +63986,413,11,10671,30259 +63987,413,11,3962,34384 +63988,3,5,56596,71621 +63989,234,1,407,5125 +63990,317,10,178,71235 +63991,387,10,289159,1357685 +63992,399,9,12593,1458348 +63993,3,5,41505,969171 +63994,175,5,28730,1377133 +63995,234,1,50722,39298 +63996,289,6,9514,549494 +63997,234,1,51120,1242904 +63998,387,10,13654,60725 +63999,328,6,206647,1425488 +64000,204,9,74879,1600455 +64001,234,1,99095,34264 +64002,234,1,218898,150479 +64003,53,2,9457,8681 +64004,209,7,10950,1410316 +64005,413,11,109439,961610 +64006,187,11,434873,1741071 +64007,269,9,167073,1279526 +64008,413,11,21927,1268561 +64009,210,9,5123,1778351 +64010,5,10,38724,55868 +64011,143,7,328429,1636719 +64012,3,5,11876,997 +64013,12,10,293660,934844 +64014,148,9,46623,3648 +64015,226,2,46261,1418265 +64016,143,7,99861,1235786 +64017,3,5,63144,550669 +64018,413,11,31417,1019436 +64019,5,10,156360,124549 +64020,180,7,43522,8722 +64021,234,1,43342,103910 +64022,175,5,237584,1621368 +64023,196,7,45019,9417 +64024,273,7,96433,5467 +64025,3,5,43880,3637 +64026,234,1,14457,30870 +64027,3,5,328429,1388962 +64028,204,9,580,2528 +64029,72,11,949,60592 +64030,3,5,10805,14642 +64031,127,3,1480,97660 +64032,317,10,14815,8328 +64033,317,10,59678,155531 +64034,97,7,44732,1395311 +64035,262,6,10796,1432022 +64036,67,10,38055,1453498 +64037,3,5,116780,29811 +64038,317,10,49688,259792 +64039,21,3,60853,32107 +64040,277,3,245692,1399916 +64041,3,5,383140,1582467 +64042,234,1,51971,4387 +64043,269,9,66925,1084772 +64044,67,10,297762,1824244 +64045,234,1,262447,545763 +64046,387,10,74465,11649 +64047,360,3,14510,1449499 +64048,3,5,11159,60085 +64049,317,10,43157,95636 +64050,234,1,68737,130938 +64051,373,7,2567,1400072 +64052,413,11,966,3643 +64053,273,7,30669,68358 +64054,132,2,332411,1579393 +64055,234,1,9443,58220 +64056,273,7,21801,1199754 +64057,234,1,189621,930791 +64058,376,10,8665,55597 +64059,234,1,9846,15175 +64060,53,2,45527,129988 +64061,387,10,81463,32140 +64062,387,10,1599,17884 +64063,317,10,259075,236220 +64064,65,3,11045,1717525 +64065,53,2,128311,1285741 +64066,289,6,10491,1433232 +64067,76,2,18093,1425585 +64068,317,10,185934,29628 +64069,213,10,345775,1505125 +64070,148,9,10033,62242 +64071,20,2,4147,1203910 +64072,234,1,74447,432833 +64073,373,7,378018,1621807 +64074,413,11,3716,5136 +64075,234,1,156220,937129 +64076,317,10,341886,1102370 +64077,387,10,73984,109400 +64078,203,1,126889,1746249 +64079,360,9,293167,1388862 +64080,269,9,64428,41831 +64081,327,7,52454,128500 +64082,387,10,23855,15277 +64083,45,9,10204,1470177 +64084,333,2,47921,29813 +64085,234,1,18725,35452 +64086,273,7,47404,14356 +64087,87,7,97365,4277 +64088,269,9,356752,1328455 +64089,3,5,12276,72023 +64090,317,10,17347,79439 +64091,413,11,31596,1197676 +64092,234,1,53178,11434 +64093,413,11,371942,97612 +64094,75,5,345922,1408357 +64095,333,2,110412,1568861 +64096,196,7,10733,1422979 +64097,317,10,100770,591536 +64098,175,5,72545,1399876 +64099,413,11,3016,29577 +64100,161,6,264525,1857578 +64101,373,7,24619,92606 +64102,53,2,440508,1844154 +64103,47,8,2978,1422071 +64104,3,5,3556,1798 +64105,413,11,8870,2533 +64106,234,1,10869,5834 +64107,269,9,55846,49344 +64108,72,11,11377,62702 +64109,413,11,9828,15807 +64110,234,1,455368,1807564 +64111,5,10,211928,1384984 +64112,387,10,13616,10492 +64113,333,2,1394,1897696 +64114,203,1,9846,1341345 +64115,210,9,274857,1341758 +64116,234,1,196491,41616 +64117,317,10,130062,1016035 +64118,127,3,384737,1044956 +64119,226,2,1125,1551525 +64120,387,10,182899,29596 +64121,387,10,79599,587568 +64122,413,11,107073,1481480 +64123,234,1,58060,128043 +64124,203,1,294652,1722220 +64125,3,5,78507,9836 +64126,327,7,34723,1429492 +64127,74,5,8869,1552538 +64128,234,1,239103,36417 +64129,286,3,222715,74091 +64130,96,2,6947,1761865 +64131,74,5,293167,1746431 +64132,234,1,28564,32427 +64133,234,1,27621,38692 +64134,52,10,52520,3950 +64135,273,7,11202,1760 +64136,180,7,88953,1294317 +64137,317,10,80220,77005 +64138,413,11,401164,1207801 +64139,53,2,817,14042 +64140,204,9,31805,103446 +64141,175,5,338,1585873 +64142,234,1,154779,1037272 +64143,204,9,140607,1546026 +64144,387,10,130957,22707 +64145,175,5,5915,1394724 +64146,87,7,13205,1634470 +64147,179,2,15177,77973 +64148,190,7,316654,1645938 +64149,286,3,37725,55878 +64150,234,1,45807,8635 +64151,413,11,304372,59473 +64152,187,11,14254,16573 +64153,277,3,25673,85857 +64154,204,9,301804,1332295 +64155,317,10,329550,589507 +64156,301,5,419430,1407738 +64157,187,11,10972,1404364 +64158,145,5,263115,1757627 +64159,238,7,435,1405235 +64160,226,2,18387,1453173 +64161,234,1,83444,262925 +64162,317,10,75001,573777 +64163,234,1,481,6521 +64164,234,1,12128,18037 +64165,226,2,10491,1411323 +64166,387,10,11206,68592 +64167,273,7,120831,29967 +64168,53,2,9301,1080 +64169,234,1,128140,1086409 +64170,179,2,128270,1533099 +64171,387,10,3087,2666 +64172,273,7,10433,7182 +64173,45,9,49009,1350233 +64174,234,1,5924,13265 +64175,203,1,117999,1518593 +64176,269,9,87936,12243 +64177,160,3,377447,1593249 +64178,50,3,118,1855219 +64179,277,7,337339,1114541 +64180,413,11,2179,22303 +64181,317,10,57809,588036 +64182,249,7,44363,1425911 +64183,22,9,40466,1578168 +64184,317,10,223946,1332697 +64185,204,9,5201,9062 +64186,67,10,9438,142587 +64187,204,9,42329,14005 +64188,3,5,145481,40888 +64189,52,10,39957,1682907 +64190,3,5,77875,17629 +64191,317,10,74581,97202 +64192,373,7,365942,1404218 +64193,333,2,544,142152 +64194,234,1,115665,932363 +64195,226,2,857,404709 +64196,60,1,305127,1387614 +64197,148,9,205864,1579426 +64198,52,10,42515,149366 +64199,317,10,19958,72624 +64200,3,5,372226,1671942 +64201,5,10,180576,1168213 +64202,203,1,32068,17916 +64203,373,7,6977,1395255 +64204,204,9,14823,1147907 +64205,324,3,14907,77625 +64206,204,9,41857,9061 +64207,317,10,286532,1382730 +64208,3,5,40744,17911 +64209,210,9,2001,1781736 +64210,97,7,436,1039164 +64211,273,7,57866,1274071 +64212,303,3,18,1440850 +64213,413,11,1561,10350 +64214,413,11,245703,53645 +64215,373,7,377151,1397486 +64216,273,7,212530,28055 +64217,204,9,10395,7146 +64218,413,11,34977,32439 +64219,152,2,20126,1814886 +64220,269,9,7980,8220 +64221,413,11,89720,1269306 +64222,234,1,113520,1305281 +64223,413,11,333663,2070 +64224,204,9,345069,1478657 +64225,204,9,16077,79182 +64226,169,3,922,15434 +64227,196,7,13042,1461369 +64228,413,11,9816,59563 +64229,45,9,11517,1551342 +64230,286,3,49418,1561899 +64231,176,3,635,1399991 +64232,204,9,42487,118254 +64233,234,1,170936,32175 +64234,413,11,2567,3661 +64235,360,3,167,1464516 +64236,269,9,24150,112520 +64237,143,7,274479,1428595 +64238,234,1,428355,1716273 +64239,169,3,336882,1346943 +64240,289,6,106112,225709 +64241,269,9,2907,11061 +64242,204,9,27973,8506 +64243,269,9,10274,64667 +64244,273,7,67693,68531 +64245,269,9,17175,1190448 +64246,357,3,205584,1551872 +64247,204,9,68737,1499158 +64248,75,5,45019,1394971 +64249,204,9,16643,22061 +64250,317,10,359870,1437074 +64251,234,1,208756,1192048 +64252,234,1,45302,78860 +64253,204,9,325039,62438 +64254,204,9,56800,1318835 +64255,169,3,9946,1357062 +64256,413,11,298040,1473507 +64257,67,10,11024,1673816 +64258,234,1,33784,111346 +64259,360,3,14145,1416977 +64260,234,1,244786,136495 +64261,413,11,9918,60502 +64262,413,11,24405,6668 +64263,234,1,99095,31898 +64264,360,3,19765,1602169 +64265,3,5,154441,95420 +64266,204,9,11639,1525934 +64267,236,8,5289,1409747 +64268,413,11,19957,15195 +64269,269,9,24750,10009 +64270,204,9,241254,1170240 +64271,387,10,43419,2430 +64272,328,6,14254,1408784 +64273,399,9,9325,143785 +64274,387,10,425961,221064 +64275,204,9,1624,1446658 +64276,37,3,76341,1412756 +64277,3,5,11925,72683 +64278,292,3,3716,1367556 +64279,317,10,415255,1758715 +64280,3,5,899,8819 +64281,273,7,94674,1121525 +64282,262,6,72431,1484208 +64283,3,5,44626,8714 +64284,413,11,84823,32086 +64285,40,1,5,71901 +64286,53,2,171213,44231 +64287,234,1,14295,30711 +64288,273,7,252680,1031536 +64289,148,9,9968,61158 +64290,333,2,72710,1304298 +64291,53,2,409536,54900 +64292,234,1,416635,1681431 +64293,262,6,294690,1372425 +64294,360,9,20242,1399139 +64295,204,9,48231,1441745 +64296,273,7,337014,1305111 +64297,113,9,210913,1405249 +64298,413,11,31364,9897 +64299,75,5,340275,1732084 +64300,307,6,58159,109453 +64301,387,10,17240,117652 +64302,269,9,318922,1575346 +64303,349,1,9982,1713704 +64304,234,1,60899,6648 +64305,234,1,250332,11431 +64306,328,6,193893,1662725 +64307,286,3,93856,1175 +64308,87,7,32049,1736990 +64309,127,3,40807,1029806 +64310,169,3,11351,6964 +64311,346,3,1991,1415650 +64312,179,2,168676,1379438 +64313,304,10,63681,289518 +64314,245,3,1966,1398112 +64315,60,1,368006,1640297 +64316,268,7,298787,1376955 +64317,3,5,36919,45194 +64318,317,10,298158,132832 +64319,226,2,126889,1585743 +64320,209,7,11975,14716 +64321,209,7,57201,1534197 +64322,289,6,149509,1453594 +64323,269,9,52395,9990 +64324,349,1,19594,1463249 +64325,198,6,354859,1855880 +64326,127,3,511,7106 +64327,387,10,34944,80728 +64328,143,7,188927,1413453 +64329,97,7,744,1378167 +64330,143,7,946,7654 +64331,204,9,254193,1482923 +64332,3,5,13542,5018 +64333,234,1,43829,37362 +64334,234,1,49097,1126 +64335,148,9,9451,1531560 +64336,387,10,35543,106587 +64337,234,1,47878,4964 +64338,182,8,9675,79790 +64339,5,10,63538,1327865 +64340,373,7,127372,1327030 +64341,387,10,24479,530868 +64342,3,5,102155,14431 +64343,381,9,12103,1364794 +64344,127,3,52661,63709 +64345,413,11,315841,3317 +64346,398,9,264525,1399086 +64347,187,11,102382,1360096 +64348,413,11,1073,3987 +64349,7,3,9593,1877133 +64350,317,10,106136,1039689 +64351,3,5,274504,1179829 +64352,387,10,9080,27519 +64353,196,7,1294,1585883 +64354,234,1,25918,19457 +64355,234,1,63300,143628 +64356,180,7,50086,1284737 +64357,360,9,291413,1746577 +64358,269,9,197089,1177107 +64359,234,1,4133,34849 +64360,346,3,42418,1445906 +64361,234,1,375599,1559685 +64362,387,10,418072,1685111 +64363,273,7,41516,30130 +64364,234,1,54107,1212814 +64365,269,9,29698,1399018 +64366,304,10,20132,85706 +64367,317,10,45324,57884 +64368,204,9,21734,2657 +64369,148,9,238,30580 +64370,328,6,329865,1646536 +64371,305,9,167810,994550 +64372,269,9,270403,1594809 +64373,234,1,108177,84074 +64374,415,3,214756,1459720 +64375,387,10,48466,62047 +64376,413,11,10071,55985 +64377,287,3,5237,1427549 +64378,196,7,8869,1406390 +64379,387,10,253310,1336499 +64380,234,1,71866,564082 +64381,87,7,664,75002 +64382,245,3,273106,1519574 +64383,60,1,55370,1593002 +64384,286,3,25499,53679 +64385,5,10,6643,30548 +64386,273,7,1561,36997 +64387,349,1,10193,7984 +64388,105,7,32868,54599 +64389,317,10,337101,229285 +64390,387,10,9889,7395 +64391,387,10,9882,9181 +64392,234,1,340488,6818 +64393,3,5,62394,19464 +64394,269,9,290825,962464 +64395,234,1,108222,80570 +64396,234,1,52369,1691388 +64397,387,10,2731,27723 +64398,269,9,11855,10368 +64399,317,10,79221,586157 +64400,20,2,233639,1792027 +64401,387,10,142979,9740 +64402,234,1,257450,30052 +64403,59,3,48231,1643423 +64404,234,1,18633,4173 +64405,105,7,292656,1363884 +64406,357,3,41283,1392971 +64407,3,5,128437,14431 +64408,387,10,19850,57082 +64409,273,7,139455,1116280 +64410,53,2,8869,52016 +64411,143,7,1579,9419 +64412,234,1,256593,1295284 +64413,3,5,838,12402 +64414,204,9,5998,12369 +64415,64,6,49521,1355894 +64416,52,10,87936,93685 +64417,136,1,97614,1419732 +64418,317,10,40368,140848 +64419,182,8,2503,1406786 +64420,148,9,320588,1423984 +64421,113,9,197,1406916 +64422,340,2,10733,1619081 +64423,3,5,10643,66158 +64424,373,7,44363,1404359 +64425,317,10,74629,31539 +64426,413,11,1817,5583 +64427,269,9,103332,5389 +64428,304,10,22292,17660 +64429,413,11,577,6390 +64430,143,7,1539,17367 +64431,286,3,72711,122449 +64432,234,1,22307,1150 +64433,22,9,345922,1815609 +64434,234,1,174487,67583 +64435,232,10,149515,34752 +64436,387,10,67822,1175725 +64437,387,10,21605,74945 +64438,387,10,10872,2163 +64439,413,11,40562,6390 +64440,200,3,332567,1644260 +64441,273,7,157305,1442973 +64442,317,10,65713,543943 +64443,234,1,4955,40984 +64444,317,10,65002,39298 +64445,235,5,274504,1609043 +64446,394,7,105,9971 +64447,387,10,755,138 +64448,273,7,15310,2027 +64449,3,5,104485,3238 +64450,3,5,9495,120 +64451,3,5,14881,792 +64452,234,1,180644,1163138 +64453,52,10,259593,178338 +64454,141,7,809,1554041 +64455,387,10,8556,18969 +64456,413,11,287628,1707979 +64457,53,2,10053,60284 +64458,387,10,26758,96159 +64459,394,7,257088,58363 +64460,371,3,4248,1667253 +64461,413,11,331588,112576 +64462,387,10,124157,1293791 +64463,175,5,29136,1896776 +64464,148,9,12783,978148 +64465,234,1,17044,33317 +64466,234,1,49961,143142 +64467,196,7,11788,1337410 +64468,387,10,33668,19094 +64469,317,10,64792,239789 +64470,3,5,31947,10668 +64471,234,1,19901,56501 +64472,268,7,329865,1616061 +64473,148,9,15489,7802 +64474,122,8,126889,1746430 +64475,3,5,2750,1632 +64476,234,1,64972,58448 +64477,204,9,395992,10788 +64478,234,1,83119,107454 +64479,387,10,2929,28968 +64480,148,9,331161,1446135 +64481,234,1,146970,103111 +64482,273,7,86979,1045 +64483,317,10,18414,1215424 +64484,234,1,28071,72891 +64485,173,7,45191,1063528 +64486,413,11,40229,1477838 +64487,53,2,10005,61863 +64488,234,1,376538,1119490 +64489,273,7,64725,33804 +64490,317,10,224903,238822 +64491,187,11,274479,1360096 +64492,235,5,2687,12846 +64493,3,5,94803,28982 +64494,52,10,133328,26959 +64495,87,7,549,232158 +64496,269,9,26505,35455 +64497,140,9,126889,1634559 +64498,273,7,10890,7182 +64499,180,7,43514,4129 +64500,317,10,136368,1647409 +64501,180,7,43231,1538531 +64502,387,10,8888,4522 +64503,167,3,283384,1429325 +64504,62,3,8870,1724245 +64505,269,9,23853,1072685 +64506,148,9,43095,1602603 +64507,105,7,28482,1396503 +64508,346,3,242224,1428881 +64509,148,9,19209,937881 +64510,52,10,271495,545782 +64511,234,1,88059,54767 +64512,317,10,21778,132542 +64513,13,3,378441,1797509 +64514,387,10,8071,3776 +64515,234,1,41714,95972 +64516,269,9,7304,961447 +64517,317,10,77645,167896 +64518,149,6,4978,1447547 +64519,387,10,105584,96369 +64520,175,5,188826,1583214 +64521,148,9,28437,118445 +64522,387,10,26849,86833 +64523,204,9,5991,29153 +64524,53,2,9568,61826 +64525,387,10,118139,932645 +64526,204,9,377158,1648279 +64527,317,10,33124,99710 +64528,105,7,55534,469 +64529,53,2,78691,1466196 +64530,234,1,207850,1199518 +64531,387,10,201223,1189332 +64532,273,7,549,7491 +64533,204,9,38099,119660 +64534,12,10,209112,20007 +64535,75,5,20312,1424459 +64536,394,7,297762,11351 +64537,160,3,102629,1167321 +64538,234,1,68192,550519 +64539,411,9,19995,6878 +64540,413,11,267310,1451449 +64541,292,3,8619,1619085 +64542,50,3,11024,1673548 +64543,52,10,43354,5735 +64544,60,1,2604,1428974 +64545,273,7,9023,947 +64546,53,2,395982,1755108 +64547,62,3,18,1392094 +64548,317,10,55420,222330 +64549,218,1,111960,1814903 +64550,328,6,55534,1404727 +64551,234,1,10647,51984 +64552,333,2,238589,1429340 +64553,147,1,284053,11354 +64554,413,11,29872,30179 +64555,269,9,15356,61506 +64556,234,1,204255,1186596 +64557,53,2,11953,1880081 +64558,286,3,83718,786406 +64559,52,10,26758,96159 +64560,262,6,315837,1463450 +64561,286,3,41115,15603 +64562,413,11,12780,21904 +64563,3,5,10373,473 +64564,373,7,356500,1409734 +64565,234,1,287170,1353682 +64566,234,1,61550,51373 +64567,273,7,46261,7229 +64568,387,10,22999,930386 +64569,97,7,168259,1077782 +64570,204,9,19995,132585 +64571,60,1,28,8346 +64572,53,2,30126,38229 +64573,387,10,16232,68040 +64574,398,9,333371,1463380 +64575,175,5,6972,1401738 +64576,234,1,44890,21305 +64577,75,5,246655,1519863 +64578,387,10,83714,18342 +64579,387,10,354857,222169 +64580,53,2,98349,71804 +64581,234,1,51334,113873 +64582,3,5,43514,2005 +64583,317,10,21955,52629 +64584,234,1,25921,21085 +64585,234,1,9736,37633 +64586,401,6,10020,82813 +64587,234,1,314389,123219 +64588,413,11,2180,22327 +64589,3,5,10735,8846 +64590,32,8,297762,1903910 +64591,250,11,291413,1746618 +64592,333,2,329682,1407211 +64593,3,5,86600,243 +64594,387,10,230266,11916 +64595,105,7,68050,1259 +64596,413,11,9543,294 +64597,387,10,41283,69617 +64598,87,7,38579,24192 +64599,289,6,134360,150768 +64600,53,2,54752,557 +64601,291,6,5915,1550830 +64602,234,1,127901,1085916 +64603,3,5,3291,2950 +64604,148,9,5206,7586 +64605,52,10,12525,35087 +64606,317,10,51357,13953 +64607,234,1,253257,1288710 +64608,5,10,36063,58160 +64609,60,1,39833,123014 +64610,234,1,11004,323 +64611,234,1,12528,1723 +64612,77,10,15805,35271 +64613,413,11,20421,69615 +64614,234,1,42179,6593 +64615,234,1,80089,557936 +64616,177,6,11618,1555380 +64617,328,6,98066,1392970 +64618,317,10,222220,1566177 +64619,5,10,1907,2036 +64620,333,2,23152,26175 +64621,7,3,14,484529 +64622,413,11,45335,21508 +64623,287,3,9966,1458585 +64624,204,9,26882,1773262 +64625,317,10,37284,1043185 +64626,317,10,333103,1448119 +64627,32,8,7445,1407232 +64628,75,5,10178,45288 +64629,234,1,190341,1171039 +64630,291,6,312831,1454514 +64631,273,7,31618,10494 +64632,234,1,147360,39058 +64633,317,10,90762,938731 +64634,349,1,9023,1438901 +64635,234,1,71120,36146 +64636,273,7,18,996 +64637,53,2,401164,1817402 +64638,273,7,78174,20682 +64639,204,9,237584,1621356 +64640,234,1,43379,12329 +64641,333,2,26376,4128 +64642,234,1,167410,1134531 +64643,3,5,52247,10038 +64644,221,3,7220,1707126 +64645,273,7,198663,77949 +64646,60,1,52859,1340359 +64647,226,2,241239,1468535 +64648,234,1,238307,933230 +64649,289,6,321303,1595708 +64650,317,10,82492,1055199 +64651,234,1,21468,80570 +64652,234,1,73462,1174031 +64653,234,1,182799,17304 +64654,394,7,106747,1401136 +64655,387,10,300667,1394638 +64656,252,3,1624,1564221 +64657,234,1,99738,109598 +64658,317,10,84333,856440 +64659,387,10,218508,1182107 +64660,232,10,424600,1192754 +64661,413,11,23385,1195437 +64662,3,5,5060,8934 +64663,289,6,72105,1455522 +64664,273,7,85844,1551742 +64665,269,9,58251,1417252 +64666,387,10,10747,648 +64667,387,10,289278,69646 +64668,244,3,246415,1439376 +64669,77,10,8989,56506 +64670,5,10,87654,1195653 +64671,5,10,276123,1330014 +64672,3,5,4641,38697 +64673,273,7,41760,10771 +64674,387,10,77958,1029108 +64675,317,10,113178,51657 +64676,234,1,268380,1317164 +64677,234,1,19354,11529 +64678,387,10,38340,3558 +64679,181,7,14430,1277673 +64680,67,10,258509,1447317 +64681,234,1,218658,938768 +64682,387,10,301272,1382322 +64683,234,1,131360,8500 +64684,45,9,11137,1286327 +64685,273,7,6076,48501 +64686,394,7,48231,91886 +64687,148,9,43231,25804 +64688,180,7,33472,7654 +64689,317,10,15560,1459110 +64690,75,5,255343,40546 +64691,387,10,149232,1128543 +64692,273,7,13225,37 +64693,413,11,116977,1297324 +64694,196,7,273404,1364797 +64695,46,5,26882,1773273 +64696,234,1,132608,127673 +64697,53,2,207636,1296653 +64698,204,9,300669,1310823 +64699,324,3,398786,1150850 +64700,3,5,29825,56906 +64701,97,7,127521,1542742 +64702,387,10,26936,3317 +64703,239,5,237584,1621366 +64704,413,11,376538,70632 +64705,75,5,76163,1437305 +64706,415,3,58903,1271061 +64707,72,11,9358,1441329 +64708,301,5,270303,1399875 +64709,413,11,96724,70506 +64710,53,2,34482,1322407 +64711,20,2,126889,1746451 +64712,160,3,256740,550473 +64713,105,7,11531,1225 +64714,317,10,58011,234556 +64715,52,10,33801,103129 +64716,234,1,130993,1242114 +64717,187,11,71668,1367364 +64718,169,3,13056,21224 +64719,304,10,284288,1763417 +64720,39,3,1966,1733762 +64721,5,10,14522,76959 +64722,413,11,949,15840 +64723,176,3,10145,1446676 +64724,3,5,864,432 +64725,169,3,9457,1421722 +64726,413,11,89647,29812 +64727,234,1,49391,10747 +64728,234,1,31273,113601 +64729,148,9,37534,62063 +64730,188,8,11045,1648024 +64731,196,7,205584,1585728 +64732,143,7,127380,1394129 +64733,234,1,127812,114337 +64734,105,7,14019,76278 +64735,3,5,44105,145518 +64736,273,7,109472,1046568 +64737,226,2,10740,1416796 +64738,3,5,157424,970129 +64739,373,7,63831,45141 +64740,387,10,11302,68936 +64741,296,3,11547,1557596 +64742,269,9,11610,1462235 +64743,203,1,301228,1431152 +64744,234,1,98864,40549 +64745,60,1,1480,1622157 +64746,403,10,154442,33727 +64747,3,5,11553,232804 +64748,234,1,83831,25558 +64749,160,3,76757,1387252 +64750,234,1,50008,81020 +64751,269,9,33135,1304266 +64752,397,7,50079,27969 +64753,182,8,270403,1594811 +64754,353,7,14873,1389598 +64755,387,10,5544,29905 +64756,413,11,3064,1061 +64757,209,7,214756,1440496 +64758,3,5,133941,29906 +64759,204,9,361183,1513960 +64760,234,1,18317,2239 +64761,160,3,116979,1835198 +64762,291,6,10727,14193 +64763,288,3,316654,1463679 +64764,40,1,17209,1114508 +64765,328,6,9425,1446682 +64766,333,2,413782,1674002 +64767,148,9,362579,1518669 +64768,64,6,42329,66758 +64769,387,10,13852,42380 +64770,286,3,61400,233073 +64771,234,1,45671,133420 +64772,234,1,22140,72913 +64773,314,2,365942,1637347 +64774,387,10,207641,256928 +64775,413,11,47386,138780 +64776,60,1,10440,1561591 +64777,203,1,57419,1601704 +64778,317,10,185354,83263 +64779,175,5,131737,1542367 +64780,143,7,233639,1410743 +64781,3,5,340275,4867 +64782,413,11,2734,10816 +64783,288,3,2486,25460 +64784,273,7,2742,998600 +64785,234,1,402612,64412 +64786,413,11,18506,190135 +64787,127,3,403,108135 +64788,234,1,369366,1555617 +64789,187,11,9296,1050930 +64790,317,10,107705,1342032 +64791,160,3,35052,1118382 +64792,398,9,181533,1479279 +64793,148,9,9272,1393558 +64794,413,11,13551,67357 +64795,413,11,11008,1118130 +64796,291,6,18317,170949 +64797,204,9,9900,45294 +64798,226,2,1125,1537206 +64799,328,6,9785,1403408 +64800,234,1,240913,97864 +64801,179,2,59115,1830887 +64802,413,11,52021,81891 +64803,97,7,337339,1374169 +64804,25,2,311324,8939 +64805,413,11,184795,853 +64806,105,7,29058,1477081 +64807,234,1,76757,9339 +64808,148,9,28894,3649 +64809,148,9,10657,32201 +64810,226,2,79935,1447082 +64811,234,1,262357,133426 +64812,394,7,314065,1416454 +64813,387,10,17654,82195 +64814,148,9,37238,31590 +64815,413,11,2662,7035 +64816,165,9,10491,1433228 +64817,204,9,182131,1315688 +64818,72,11,266856,1465950 +64819,273,7,42093,1536658 +64820,20,2,318781,1622812 +64821,234,1,293109,121781 +64822,102,3,8619,1619095 +64823,273,7,27886,20953 +64824,209,7,44943,1345268 +64825,179,2,280092,1548079 +64826,262,6,19995,93214 +64827,273,7,108365,54449 +64828,53,2,623,8938 +64829,204,9,3055,9061 +64830,53,2,360249,1161455 +64831,387,10,118549,132574 +64832,196,7,74,1364412 +64833,277,3,38433,120438 +64834,269,9,42168,14879 +64835,182,8,1950,1553017 +64836,160,3,11589,605021 +64837,148,9,10761,66552 +64838,148,9,2115,21729 +64839,234,1,59387,122967 +64840,413,11,62837,57642 +64841,234,1,285841,93136 +64842,409,7,9352,1741194 +64843,387,10,3962,5646 +64844,234,1,288168,120565 +64845,200,3,18843,1705455 +64846,269,9,1833,9041 +64847,387,10,11899,7908 +64848,234,1,191476,18054 +64849,180,7,16442,7128 +64850,234,1,298040,121674 +64851,289,6,18937,1237111 +64852,234,1,279096,133368 +64853,387,10,127329,548474 +64854,262,6,244786,1547659 +64855,104,7,82,1551213 +64856,3,5,34506,1570602 +64857,234,1,805,3556 +64858,413,11,57005,1760582 +64859,413,11,73562,928257 +64860,234,1,32328,100890 +64861,314,2,273481,1494525 +64862,333,2,28,8342 +64863,387,10,64202,1211813 +64864,317,10,169881,20606 +64865,273,7,242224,549315 +64866,127,3,52661,34131 +64867,64,6,74777,583475 +64868,296,3,194,1551967 +64869,387,10,280690,35086 +64870,190,7,359412,1463400 +64871,273,7,91607,1115092 +64872,387,10,306555,1390115 +64873,317,10,408620,17119 +64874,317,10,63317,151747 +64875,148,9,5551,14342 +64876,273,7,22051,49911 +64877,234,1,374461,5696 +64878,74,5,857,1535097 +64879,413,11,11537,69772 +64880,95,8,57005,1760579 +64881,204,9,60855,1396500 +64882,208,2,123109,109129 +64883,234,1,60153,88237 +64884,277,3,358924,1741055 +64885,289,6,53217,155076 +64886,234,1,57201,1704 +64887,413,11,29151,225628 +64888,12,10,146730,70647 +64889,234,1,88583,8482 +64890,105,7,54491,63976 +64891,239,5,11024,1575868 +64892,3,5,149509,4434 +64893,203,1,5915,1262129 +64894,53,2,69668,12481 +64895,234,1,239619,66936 +64896,45,9,19255,1552350 +64897,413,11,5922,13721 +64898,387,10,4538,5655 +64899,105,7,144331,1153617 +64900,234,1,7305,664 +64901,113,9,255343,1512769 +64902,15,6,297762,1706565 +64903,187,11,244786,1547656 +64904,346,3,127372,1431518 +64905,234,1,139272,150259 +64906,127,3,2397,24529 +64907,234,1,338079,1322594 +64908,317,10,116351,80260 +64909,234,1,8844,4945 +64910,113,9,329865,1646492 +64911,234,1,113432,938618 +64912,328,6,62630,1335049 +64913,413,11,17350,45846 +64914,387,10,16366,66195 +64915,317,10,158967,1115973 +64916,238,7,345918,1544359 +64917,234,1,68123,567249 +64918,234,1,84727,2628 +64919,77,10,85507,1176935 +64920,333,2,254007,1448765 +64921,67,10,15653,1767029 +64922,234,1,68174,84515 +64923,360,9,373546,1527505 +64924,208,2,83890,1520689 +64925,413,11,320011,960783 +64926,75,5,10857,70540 +64927,273,7,694,2285 +64928,413,11,57419,36650 +64929,108,10,338189,1559679 +64930,3,5,2280,5174 +64931,317,10,139692,550580 +64932,77,10,16876,80959 +64933,234,1,72602,8500 +64934,292,3,11351,1597194 +64935,234,1,292387,1363530 +64936,317,10,428398,1745327 +64937,317,10,91679,118415 +64938,327,7,8467,1402153 +64939,413,11,93457,11876 +64940,64,6,116463,226462 +64941,189,3,1966,1398111 +64942,317,10,53168,1298435 +64943,413,11,265226,72773 +64944,234,1,120588,10610 +64945,72,11,4147,59837 +64946,234,1,74718,572352 +64947,269,9,4825,20154 +64948,419,10,35558,114392 +64949,127,3,186869,95192 +64950,234,1,59075,228794 +64951,198,6,338189,1634298 +64952,317,10,90110,64950 +64953,373,7,146243,137125 +64954,250,11,8329,1637498 +64955,413,11,434873,1310518 +64956,53,2,73562,927278 +64957,234,1,65488,64114 +64958,3,5,129553,3148 +64959,269,9,413452,1064439 +64960,229,6,228066,1568462 +64961,53,2,259997,1302516 +64962,148,9,53150,1746081 +64963,192,5,99861,1403641 +64964,234,1,35977,31621 +64965,210,9,263115,1821929 +64966,208,2,127585,1384361 +64967,30,5,693,1400733 +64968,317,10,75336,31604 +64969,234,1,11428,61824 +64970,317,10,18736,1225554 +64971,413,11,73723,1531912 +64972,234,1,811,12112 +64973,148,9,90461,9063 +64974,234,1,74057,14995 +64975,269,9,7006,6045 +64976,72,11,302828,1573937 +64977,413,11,308,330 +64978,333,2,7326,1512251 +64979,413,11,10134,63940 +64980,328,6,3057,1539796 +64981,413,11,1721,67974 +64982,317,10,270654,1323122 +64983,317,10,37126,99884 +64984,317,10,95536,81749 +64985,317,10,277839,109340 +64986,234,1,64605,37360 +64987,52,10,10948,61739 +64988,269,9,3081,31502 +64989,273,7,43514,30268 +64990,289,6,11688,1457930 +64991,317,10,82465,1418624 +64992,234,1,86186,131785 +64993,234,1,33789,355686 +64994,164,3,296523,135745 +64995,413,11,44129,65849 +64996,160,3,5237,1273354 +64997,108,10,107593,1729489 +64998,333,2,168027,1452332 +64999,3,5,4913,39981 +65000,234,1,268893,78297 +65001,273,7,166076,65644 +65002,143,7,381518,1338973 +65003,319,1,18,1857476 +65004,25,2,297736,1770722 +65005,203,1,23966,1419804 +65006,97,7,19765,1602165 +65007,234,1,33436,11195 +65008,72,11,1381,1447155 +65009,234,1,41963,129692 +65010,287,3,20842,48805 +65011,75,5,105,62583 +65012,273,7,9885,60001 +65013,97,7,242224,1337413 +65014,387,10,10585,64796 +65015,127,3,106358,34131 +65016,181,7,28178,1532074 +65017,413,11,11046,7754 +65018,273,7,12182,5666 +65019,200,3,106747,1407019 +65020,196,7,362057,1601198 +65021,291,6,228066,1556416 +65022,52,10,24825,564872 +65023,3,5,834,12382 +65024,234,1,310133,1293994 +65025,5,10,46494,136397 +65026,273,7,81030,134806 +65027,317,10,276819,1313452 +65028,317,10,33586,96323 +65029,234,1,104973,99437 +65030,298,5,70074,91123 +65031,234,1,13734,144257 +65032,387,10,50759,131010 +65033,327,7,203351,1573410 +65034,75,5,14,82169 +65035,143,7,26656,1454512 +65036,409,7,442752,1761919 +65037,3,5,14273,1081559 +65038,148,9,93676,1020060 +65039,413,11,258363,1003190 +65040,234,1,21866,190 +65041,273,7,30547,10771 +65042,413,11,2742,310 +65043,317,10,257534,1086269 +65044,353,7,9016,16737 +65045,317,10,52475,113500 +65046,413,11,54022,1170415 +65047,182,8,74,1546880 +65048,317,10,28746,1326035 +65049,387,10,24062,3663 +65050,317,10,65509,104027 +65051,333,2,13614,1610057 +65052,273,7,29056,99452 +65053,75,5,126889,1816353 +65054,67,10,16157,79737 +65055,79,7,103236,1029300 +65056,148,9,1164,17117 +65057,209,7,9543,1531504 +65058,398,9,19995,1376890 +65059,317,10,298158,1002842 +65060,387,10,47900,78001 +65061,373,7,13483,92391 +65062,387,10,6499,52045 +65063,269,9,246860,7702 +65064,387,10,935,14250 +65065,413,11,28063,99450 +65066,286,3,438643,1042175 +65067,204,9,253310,1423751 +65068,269,9,41505,12257 +65069,53,2,76211,1352668 +65070,3,5,53864,70821 +65071,20,2,11521,957570 +65072,196,7,322922,1443847 +65073,234,1,12446,72248 +65074,333,2,10299,1467281 +65075,234,1,159304,1020087 +65076,273,7,24212,73248 +65077,419,10,12450,68698 +65078,3,5,7219,53196 +65079,387,10,93863,129074 +65080,92,7,140276,8512 +65081,317,10,146315,186686 +65082,327,7,74199,571463 +65083,52,10,371942,1272364 +65084,97,7,199575,1391525 +65085,317,10,289723,1358982 +65086,403,10,82409,1466124 +65087,305,9,11370,1767018 +65088,11,6,294272,1457327 +65089,419,10,24775,221445 +65090,413,11,357706,1504438 +65091,317,10,182129,6210 +65092,413,11,28484,2761 +65093,317,10,22683,25736 +65094,273,7,20424,30836 +65095,394,7,264525,1568918 +65096,413,11,27526,13227 +65097,234,1,81541,105331 +65098,387,10,19736,13420 +65099,60,1,81110,1535458 +65100,269,9,70006,935298 +65101,234,1,12652,20789 +65102,413,11,131737,1542380 +65103,245,3,5,1877359 +65104,269,9,39195,1170280 +65105,105,7,10539,7885 +65106,310,3,124157,1293637 +65107,349,1,65759,1451274 +65108,234,1,8985,575744 +65109,204,9,22267,11412 +65110,234,1,277687,1182669 +65111,148,9,283995,7237 +65112,280,2,24254,91470 +65113,234,1,339116,1181360 +65114,52,10,42709,20921 +65115,176,3,190955,1372080 +65116,75,5,21927,1416953 +65117,273,7,41764,6335 +65118,204,9,18684,13864 +65119,250,11,341174,1569322 +65120,413,11,36635,111418 +65121,239,5,3933,1571982 +65122,187,11,27265,1341857 +65123,234,1,282762,1343584 +65124,64,6,435,13192 +65125,387,10,46563,4509 +65126,387,10,21734,7662 +65127,289,6,311324,1646562 +65128,317,10,70815,102561 +65129,413,11,441881,85056 +65130,160,3,90616,1692085 +65131,132,2,50725,1404306 +65132,5,10,140472,117692 +65133,234,1,282268,10713 +65134,135,3,857,1662334 +65135,244,3,857,1339432 +65136,413,11,238,3100 +65137,317,10,95675,1006171 +65138,373,7,11511,1401687 +65139,229,6,209112,1621454 +65140,3,5,4257,11371 +65141,413,11,45211,5821 +65142,208,2,244610,1559457 +65143,186,6,20481,210110 +65144,357,3,246655,1585735 +65145,164,3,74,1546851 +65146,387,10,242382,103382 +65147,273,7,300654,984513 +65148,269,9,76,3725 +65149,262,6,118957,1402895 +65150,303,3,50318,964477 +65151,234,1,259358,1301158 +65152,53,2,16980,38084 +65153,105,7,18143,237520 +65154,234,1,352024,1059910 +65155,204,9,10235,1593014 +65156,187,7,109439,1415007 +65157,234,1,9835,12936 +65158,387,10,29318,70452 +65159,317,10,188161,52139 +65160,360,3,102629,1429345 +65161,77,10,525,707 +65162,3,5,141145,1150106 +65163,234,1,14650,113610 +65164,317,10,377151,224452 +65165,74,5,6163,1905099 +65166,269,9,13681,14879 +65167,269,9,269149,1552863 +65168,387,10,1850,7131 +65169,53,2,35405,960135 +65170,87,7,4982,1530166 +65171,269,9,125510,126274 +65172,394,7,10865,69613 +65173,234,1,544,7395 +65174,204,9,13849,1413926 +65175,203,1,239566,1478953 +65176,317,10,139521,87550 +65177,87,7,403,73772 +65178,234,1,45899,120227 +65179,204,9,273481,1330079 +65180,239,5,321303,1337354 +65181,203,1,10727,1418314 +65182,166,9,10320,1532691 +65183,302,9,305127,1387615 +65184,5,10,30307,588094 +65185,103,6,274479,1404287 +65186,413,11,97794,1128303 +65187,105,7,13788,10851 +65188,273,7,11517,9989 +65189,97,7,329865,1646500 +65190,373,7,13225,1815885 +65191,298,5,209112,1406780 +65192,234,1,76600,2710 +65193,127,3,1724,1007395 +65194,273,7,29151,94276 +65195,3,5,59147,35099 +65196,3,5,101342,138326 +65197,234,1,179826,7775 +65198,346,3,2046,1455299 +65199,166,9,17654,1424599 +65200,234,1,11688,61411 +65201,179,2,324670,1418405 +65202,77,10,9664,58436 +65203,317,10,44578,1002634 +65204,203,1,7326,1460786 +65205,175,5,132363,1407739 +65206,238,7,10796,1401631 +65207,234,1,84450,30723 +65208,204,9,1817,51987 +65209,52,10,60853,1273172 +65210,234,1,256740,87183 +65211,148,9,188927,12384 +65212,53,2,77930,582810 +65213,5,10,50126,134364 +65214,204,9,2309,23770 +65215,52,10,102382,20204 +65216,413,11,177047,17115 +65217,3,5,76642,2579 +65218,234,1,13640,34934 +65219,413,11,332872,413 +65220,53,2,31397,9887 +65221,182,8,9102,92240 +65222,53,2,16659,75430 +65223,399,9,10020,218491 +65224,317,10,22551,26849 +65225,387,10,124963,844 +65226,413,11,337958,11650 +65227,234,1,45522,2226 +65228,234,1,144430,985012 +65229,160,3,1481,1844354 +65230,234,1,147106,4081 +65231,75,5,638,9347 +65232,75,5,425774,1708042 +65233,413,11,1966,20297 +65234,204,9,52358,9062 +65235,3,5,838,12403 +65236,387,10,128120,1086400 +65237,5,10,427095,127922 +65238,317,10,49322,1894441 +65239,394,7,384737,930983 +65240,3,5,6038,7783 +65241,226,2,831,29640 +65242,397,7,3484,27969 +65243,413,11,28668,34439 +65244,3,5,146238,18265 +65245,66,11,194,1125824 +65246,269,9,414977,1676788 +65247,269,9,67342,1262251 +65248,273,7,119010,1068923 +65249,105,7,229594,1141787 +65250,387,10,16551,23968 +65251,3,5,132363,8846 +65252,158,2,188927,1638560 +65253,113,9,194,1551957 +65254,5,10,35392,120532 +65255,53,2,8204,961452 +65256,53,2,457,6247 +65257,234,1,106747,2294 +65258,357,3,9664,1553166 +65259,317,10,40993,125176 +65260,273,7,356482,1365665 +65261,155,3,378441,1797518 +65262,234,1,19629,1442187 +65263,234,1,356161,145675 +65264,262,6,2687,26991 +65265,413,11,10992,66898 +65266,234,1,298522,92782 +65267,398,9,13056,1384362 +65268,286,3,146730,123192 +65269,234,1,11338,4610 +65270,155,3,8916,935634 +65271,127,3,2978,27513 +65272,317,10,318781,46680 +65273,333,2,6171,112656 +65274,127,3,2503,206946 +65275,234,1,6499,52044 +65276,143,7,57005,1316884 +65277,328,6,399790,1376639 +65278,3,5,278632,79815 +65279,317,10,257345,59998 +65280,346,3,12103,1428511 +65281,413,11,301304,556152 +65282,244,3,16996,1341397 +65283,387,10,18690,197458 +65284,317,10,180607,1163130 +65285,262,6,1271,1394754 +65286,413,11,109472,1046570 +65287,273,7,317144,1414166 +65288,105,7,72710,8576 +65289,360,3,314371,1611072 +65290,234,1,153102,62020 +65291,53,2,306966,1748597 +65292,413,11,28304,3486 +65293,394,7,56937,1411814 +65294,234,1,16487,34518 +65295,105,7,58013,1525821 +65296,317,10,3063,30009 +65297,166,9,10071,1532691 +65298,20,2,2924,21004 +65299,226,2,298,1509355 +65300,250,11,294272,1400354 +65301,234,1,149154,1068100 +65302,234,1,83729,666656 +65303,113,9,50463,1535448 +65304,52,10,54139,92909 +65305,239,5,316042,1574434 +65306,12,10,209112,3794 +65307,268,7,294272,1414182 +65308,327,7,74879,572597 +65309,204,9,22076,1318091 +65310,387,10,46184,97019 +65311,398,9,58244,1384362 +65312,333,2,15689,1401274 +65313,317,10,186869,73570 +65314,53,2,283445,1118582 +65315,269,9,95516,1079116 +65316,413,11,14286,84371 +65317,387,10,1418,16973 +65318,387,10,122857,213072 +65319,60,1,117212,1711772 +65320,234,1,185934,95723 +65321,3,5,76380,34767 +65322,53,2,24123,1375602 +65323,317,10,279332,36130 +65324,394,7,266856,40810 +65325,192,5,354859,1884072 +65326,148,9,34082,7687 +65327,5,10,213443,1284507 +65328,75,5,2662,30856 +65329,333,2,1381,1447122 +65330,3,5,41551,11442 +65331,200,3,2503,1379396 +65332,317,10,47653,13848 +65333,413,11,132122,15132 +65334,3,5,14660,22119 +65335,3,5,25407,108274 +65336,234,1,32143,16544 +65337,208,2,149509,25020 +65338,60,1,32716,1093512 +65339,52,10,98631,1085157 +65340,234,1,14644,21171 +65341,306,7,129,119237 +65342,317,10,39356,55934 +65343,72,11,9352,1586386 +65344,3,5,120605,131037 +65345,40,1,226701,1844501 +65346,413,11,28893,52193 +65347,333,2,43228,31258 +65348,325,5,406431,1650633 +65349,234,1,65873,1495665 +65350,273,7,323675,49911 +65351,234,1,25426,56533 +65352,317,10,186991,236889 +65353,175,5,360249,1411040 +65354,333,2,53150,1519809 +65355,383,3,194,1551983 +65356,12,10,109439,52115 +65357,413,11,43855,1182098 +65358,234,1,323555,1113696 +65359,273,7,423988,1434443 +65360,108,10,63449,128296 +65361,286,3,82655,216695 +65362,286,3,67342,235189 +65363,52,10,43727,73233 +65364,115,9,425774,95996 +65365,317,10,16203,1857591 +65366,269,9,301875,89384 +65367,234,1,95552,1004951 +65368,394,7,15,1583007 +65369,5,10,10929,15947 +65370,387,10,379,1223 +65371,234,1,403570,110427 +65372,234,1,21413,998842 +65373,166,9,19995,1376897 +65374,262,6,324670,1418397 +65375,238,7,8619,1408672 +65376,387,10,10491,372 +65377,273,7,54022,7182 +65378,234,1,83718,119232 +65379,196,7,306966,1582741 +65380,97,7,17771,1602323 +65381,387,10,308269,1447879 +65382,226,2,6963,1400847 +65383,234,1,28134,2283 +65384,312,3,2976,1647465 +65385,234,1,65509,104025 +65386,189,3,9902,1413913 +65387,234,1,10991,65428 +65388,204,9,140607,1373698 +65389,53,2,356326,1874696 +65390,3,5,42640,39798 +65391,234,1,83587,1037774 +65392,258,9,81188,1453550 +65393,179,2,240913,1516536 +65394,317,10,25936,1269249 +65395,79,7,9325,5838 +65396,286,3,44682,1317050 +65397,234,1,18557,188897 +65398,317,10,75880,103616 +65399,273,7,10176,64101 +65400,3,5,229297,2240 +65401,413,11,19140,4102 +65402,398,9,48231,1408670 +65403,317,10,7304,19000 +65404,234,1,242631,51677 +65405,234,1,257296,583175 +65406,132,2,3172,1524757 +65407,3,5,19324,1020068 +65408,103,6,274857,256928 +65409,234,1,39331,122670 +65410,5,10,16440,11449 +65411,314,2,140607,1550638 +65412,234,1,32428,122633 +65413,180,7,17479,1173965 +65414,234,1,16884,66843 +65415,234,1,17640,13284 +65416,411,9,284052,1104780 +65417,234,1,239519,67426 +65418,373,7,10674,83091 +65419,234,1,246218,936425 +65420,301,5,274504,1425260 +65421,208,2,44115,1327896 +65422,413,11,41764,23332 +65423,387,10,7210,17700 +65424,339,2,18405,59287 +65425,273,7,5965,9425 +65426,226,2,91583,1692505 +65427,204,9,50463,4196 +65428,218,1,379019,1780197 +65429,5,10,107976,553887 +65430,190,7,159667,1849504 +65431,317,10,85317,23430 +65432,317,10,14683,114676 +65433,204,9,81687,1096786 +65434,20,2,343173,1742974 +65435,3,5,17144,33618 +65436,273,7,284288,1763420 +65437,203,1,3780,143707 +65438,317,10,36657,10995 +65439,234,1,7249,53216 +65440,127,3,30361,1399638 +65441,413,11,11385,30259 +65442,175,5,109391,992965 +65443,52,10,44693,111475 +65444,187,11,49009,1539292 +65445,301,5,448847,1797885 +65446,413,11,88922,43913 +65447,317,10,356486,1522130 +65448,182,8,17771,1602317 +65449,206,3,924,1733236 +65450,234,1,38359,562603 +65451,53,2,19819,4150 +65452,204,9,25430,958566 +65453,3,5,75761,463602 +65454,234,1,373397,560271 +65455,234,1,133715,543946 +65456,286,3,20132,70848 +65457,11,6,9502,1450331 +65458,219,11,3172,1429549 +65459,234,1,38546,64815 +65460,3,5,81687,14960 +65461,219,11,33586,1428834 +65462,53,2,26331,5572 +65463,203,1,193893,1377239 +65464,175,5,22076,1398185 +65465,3,5,325173,1033510 +65466,53,2,14430,1521651 +65467,387,10,11712,20827 +65468,203,1,259728,1301990 +65469,317,10,312138,1106098 +65470,234,1,82313,564045 +65471,273,7,333484,1729 +65472,373,7,444713,1768804 +65473,203,1,77930,1391605 +65474,317,10,210615,1194274 +65475,413,11,29345,64038 +65476,273,7,4982,63421 +65477,32,8,186869,1397872 +65478,413,11,18514,93600 +65479,204,9,356757,1501791 +65480,317,10,30929,117559 +65481,413,11,28938,57040 +65482,148,9,9746,9026 +65483,53,2,144111,7652 +65484,333,2,19053,551925 +65485,40,1,461955,1673480 +65486,413,11,43868,8505 +65487,5,10,78285,567556 +65488,148,9,1665,18512 +65489,77,10,9795,58034 +65490,373,7,43727,1302410 +65491,234,1,20640,18738 +65492,52,10,236324,1321928 +65493,387,10,186585,163306 +65494,269,9,17007,1392240 +65495,273,7,66634,10934 +65496,105,7,209032,1059891 +65497,234,1,273481,137427 +65498,179,2,334074,1350256 +65499,234,1,6951,1724 +65500,317,10,74879,87224 +65501,52,10,24090,91848 +65502,317,10,393659,1594336 +65503,182,8,445993,530734 +65504,317,10,41809,1434053 +65505,277,3,14615,27969 +65506,387,10,61934,168128 +65507,176,3,9882,1395358 +65508,15,6,9716,1661541 +65509,269,9,407559,1418416 +65510,234,1,116977,43518 +65511,203,1,1251,1377140 +65512,3,5,18776,2654 +65513,234,1,82911,804680 +65514,262,6,245891,1512734 +65515,234,1,16281,14999 +65516,273,7,87593,935281 +65517,269,9,329712,7296 +65518,105,7,345775,1505978 +65519,387,10,43685,549133 +65520,234,1,39358,20665 +65521,77,10,6183,48492 +65522,317,10,131027,70914 +65523,75,5,39995,1244651 +65524,15,6,11618,1395460 +65525,413,11,9297,82152 +65526,273,7,2861,1435057 +65527,317,10,153272,34590 +65528,105,7,122368,73486 +65529,234,1,26405,16544 +65530,413,11,2760,3602 +65531,234,1,13834,75880 +65532,208,2,353686,1411322 +65533,239,5,924,1551649 +65534,204,9,278621,1415885 +65535,5,10,154671,1135687 +65536,148,9,336050,1644765 +65537,174,6,120,1401803 +65538,387,10,70026,1807 +65539,196,7,345918,1870216 +65540,317,10,12591,73023 +65541,208,2,284564,1525145 +65542,234,1,429838,1734267 +65543,387,10,1271,15217 +65544,180,7,47921,1532477 +65545,196,7,72431,1415465 +65546,339,2,353979,62824 +65547,234,1,33541,78845 +65548,273,7,10257,63578 +65549,317,10,338312,1092689 +65550,204,9,338,1555312 +65551,387,10,2454,5524 +65552,413,11,4882,1774943 +65553,286,3,14489,1669683 +65554,179,2,70981,1390373 +65555,234,1,114790,26436 +65556,226,2,1717,1472505 +65557,234,1,62825,151084 +65558,209,7,9882,1389624 +65559,234,1,19625,85675 +65560,269,9,29444,6480 +65561,234,1,91627,980292 +65562,53,2,4012,35149 +65563,413,11,336890,141673 +65564,204,9,25385,369 +65565,182,8,149509,1444299 +65566,387,10,82662,131663 +65567,317,10,133953,1102141 +65568,148,9,86254,1391669 +65569,234,1,259395,139280 +65570,41,3,8870,1364866 +65571,45,9,40562,121271 +65572,60,1,167707,1035377 +65573,53,2,5917,117408 +65574,198,6,181533,1869366 +65575,234,1,122221,76882 +65576,75,5,272693,1545953 +65577,328,6,17609,1400329 +65578,234,1,4497,793 +65579,3,5,104275,550574 +65580,287,3,13336,1410591 +65581,175,5,9472,1537179 +65582,3,5,197696,45535 +65583,406,6,405473,1594178 +65584,3,5,120932,40461 +65585,273,7,40826,12142 +65586,387,10,49876,43793 +65587,203,1,218778,1416438 +65588,234,1,23855,8843 +65589,60,1,99599,1554171 +65590,288,3,2669,26874 +65591,97,7,12205,1717783 +65592,77,10,9690,49627 +65593,387,10,109018,84235 +65594,387,10,65156,62755 +65595,234,1,84875,38393 +65596,234,1,19582,237205 +65597,148,9,76211,1378348 +65598,387,10,15712,109888 +65599,75,5,297762,1706702 +65600,394,7,19042,1398120 +65601,196,7,22803,14764 +65602,394,7,10330,83090 +65603,289,6,291270,1584360 +65604,387,10,271714,34110 +65605,317,10,35977,558233 +65606,273,7,87302,68963 +65607,12,10,27814,1856483 +65608,209,7,296524,1049333 +65609,3,5,41608,29895 +65610,234,1,120212,33315 +65611,277,3,198227,1530911 +65612,234,1,25998,1669066 +65613,200,3,18,1400370 +65614,53,2,2454,5549 +65615,204,9,26914,44958 +65616,158,2,8869,1429251 +65617,74,5,98066,1759308 +65618,234,1,249914,1285170 +65619,394,7,13058,1436224 +65620,394,7,379,9619 +65621,75,5,312221,1580865 +65622,234,1,20296,126763 +65623,273,7,18387,7728 +65624,317,10,288710,1356866 +65625,204,9,10201,988882 +65626,97,7,378441,1069772 +65627,3,5,32143,43803 +65628,269,9,352164,1611038 +65629,204,9,81030,118314 +65630,413,11,281590,1341475 +65631,204,9,219233,1660928 +65632,208,2,403570,1407700 +65633,204,9,9963,61097 +65634,273,7,42448,10494 +65635,234,1,57412,37360 +65636,3,5,32657,5582 +65637,234,1,31978,108670 +65638,60,1,11024,1466442 +65639,413,11,362150,1209905 +65640,203,1,24624,1540848 +65641,234,1,19294,84437 +65642,204,9,116385,1174632 +65643,317,10,72203,565311 +65644,160,3,122081,1665860 +65645,234,1,36355,129941 +65646,317,10,15776,110049 +65647,398,9,2110,21652 +65648,317,10,85435,22807 +65649,225,7,9593,1546873 +65650,317,10,28592,101238 +65651,270,9,638,9470 +65652,160,3,44129,1280234 +65653,235,5,321039,1507146 +65654,234,1,39766,40378 +65655,182,8,297762,1405198 +65656,273,7,227717,34229 +65657,182,8,48231,1394103 +65658,234,1,14207,56151 +65659,317,10,51481,106851 +65660,262,6,435,1392088 +65661,53,2,1272,141570 +65662,46,5,638,9370 +65663,226,2,11570,1565506 +65664,147,1,244316,1768379 +65665,413,11,8332,17057 +65666,45,9,2105,1436624 +65667,175,5,16186,80834 +65668,234,1,102305,983547 +65669,3,5,55825,67113 +65670,143,7,15092,3193 +65671,64,6,678,1250547 +65672,158,2,177677,1545913 +65673,3,5,2990,1043831 +65674,77,10,10066,62738 +65675,5,10,935,14250 +65676,287,3,183412,88559 +65677,317,10,20357,61230 +65678,3,5,196359,1084983 +65679,53,2,11950,119768 +65680,3,5,10775,12668 +65681,234,1,229328,209373 +65682,387,10,6077,47786 +65683,269,9,3520,32382 +65684,53,2,34127,7652 +65685,203,1,10972,1367679 +65686,77,10,9953,60860 +65687,286,3,347807,89151 +65688,127,3,36658,113194 +65689,108,10,5332,43622 +65690,286,3,49220,57020 +65691,387,10,137315,67164 +65692,148,9,185111,1367777 +65693,234,1,49712,81782 +65694,273,7,245706,7229 +65695,60,1,8340,1528000 +65696,179,2,6557,1399022 +65697,5,10,79735,39760 +65698,113,9,102382,1399455 +65699,160,3,8470,81687 +65700,160,3,6171,1426774 +65701,415,3,32921,51000 +65702,97,7,1624,1564250 +65703,3,5,43548,21232 +65704,273,7,11204,6049 +65705,204,9,170234,9062 +65706,143,7,28176,2889 +65707,182,8,23966,1289958 +65708,317,10,38437,30409 +65709,234,1,44104,148085 +65710,66,11,14411,1460431 +65711,175,5,45273,1404818 +65712,317,10,38332,1529003 +65713,187,11,2924,1537139 +65714,226,2,19995,29067 +65715,269,9,293863,17829 +65716,74,5,6163,1905100 +65717,234,1,330711,68774 +65718,234,1,105352,1140593 +65719,387,10,5319,42804 +65720,268,7,1165,44645 +65721,317,10,55836,10346 +65722,52,10,195522,1175910 +65723,234,1,9819,59635 +65724,175,5,436,1624047 +65725,413,11,22584,13973 +65726,287,3,358982,1509636 +65727,234,1,44732,17312 +65728,273,7,9034,894 +65729,52,10,250574,45407 +65730,387,10,2640,5128 +65731,413,11,128284,237859 +65732,15,6,284052,1409237 +65733,387,10,331313,19273 +65734,234,1,75564,549026 +65735,317,10,41759,65678 +65736,273,7,2262,3767 +65737,52,10,46729,1375378 +65738,333,2,23964,1457663 +65739,413,11,5924,11997 +65740,286,3,30478,1376324 +65741,169,3,117,1368867 +65742,287,3,298584,1619750 +65743,190,7,354859,1884345 +65744,317,10,24739,84906 +65745,53,2,338,1585860 +65746,105,7,31162,107721 +65747,413,11,12780,1361 +65748,239,5,9593,1551226 +65749,317,10,298040,1375172 +65750,269,9,20126,1355382 +65751,213,10,2758,32588 +65752,398,9,9532,60596 +65753,234,1,2186,7623 +65754,204,9,3554,5492 +65755,226,2,198227,1342288 +65756,75,5,14703,1541519 +65757,298,5,72431,1484213 +65758,67,10,14128,1726804 +65759,360,3,11024,928632 +65760,87,7,284052,24192 +65761,234,1,118490,1014024 +65762,148,9,118957,1402730 +65763,234,1,209032,80752 +65764,239,5,961,11442 +65765,3,5,42499,102162 +65766,198,6,369885,1790955 +65767,196,7,102382,1360099 +65768,317,10,47508,1305050 +65769,75,5,130948,1298944 +65770,314,2,122081,1543197 +65771,234,1,15906,440763 +65772,187,11,102382,1357059 +65773,53,2,125490,1179442 +65774,3,5,172443,29963 +65775,226,2,312174,1400610 +65776,273,7,26283,5467 +65777,333,2,72984,1764706 +65778,413,11,245597,1768129 +65779,234,1,44943,66739 +65780,179,2,10004,62029 +65781,143,7,321303,1416982 +65782,204,9,236737,1027282 +65783,387,10,102629,1031251 +65784,352,3,10590,1566274 +65785,317,10,284729,1807832 +65786,244,3,398633,1623951 +65787,387,10,15472,74758 +65788,234,1,21193,87267 +65789,53,2,19181,1097804 +65790,172,3,8869,1429255 +65791,3,5,44115,17598 +65792,273,7,11001,1999 +65793,208,2,16186,15525 +65794,234,1,52827,120437 +65795,213,10,47943,18176 +65796,160,3,10590,33017 +65797,286,3,46806,59969 +65798,262,6,76757,1394286 +65799,250,11,85414,1406864 +65800,213,10,43904,142916 +65801,53,2,60086,1673142 +65802,234,1,118098,19304 +65803,105,7,91333,1316581 +65804,204,9,348631,1865186 +65805,234,1,132859,90069 +65806,234,1,109074,98713 +65807,155,3,378441,1797515 +65808,5,10,16659,127132 +65809,187,7,227306,1405232 +65810,204,9,332567,1608995 +65811,175,5,209112,1394767 +65812,180,7,52867,1099274 +65813,226,2,14400,773968 +65814,234,1,6391,55045 +65815,413,11,194101,967482 +65816,287,3,435,1405807 +65817,317,10,15199,19312 +65818,387,10,177572,7884 +65819,148,9,75532,1210668 +65820,105,7,61203,545639 +65821,317,10,116979,1097989 +65822,234,1,12601,65271 +65823,169,3,12499,91893 +65824,66,11,935,244 +65825,75,5,9042,1405238 +65826,413,11,3063,30013 +65827,234,1,123601,121422 +65828,234,1,312174,1383170 +65829,87,7,8467,1556310 +65830,273,7,102632,227205 +65831,182,8,243935,1414943 +65832,259,3,9352,1586338 +65833,92,7,43268,8511 +65834,53,2,393367,132586 +65835,234,1,45627,111416 +65836,306,7,24619,1545997 +65837,53,2,33680,9064 +65838,166,9,333371,1553629 +65839,158,2,16921,1401769 +65840,180,7,106887,1606214 +65841,45,9,284052,1703118 +65842,317,10,381008,1034496 +65843,317,10,94663,146827 +65844,387,10,56154,22598 +65845,204,9,32275,2763 +65846,209,7,87826,1531504 +65847,203,1,9425,1370916 +65848,53,2,2046,8222 +65849,204,9,133328,31318 +65850,234,1,12584,14773 +65851,5,10,10657,3027 +65852,387,10,33495,69038 +65853,75,5,1966,1017789 +65854,166,9,194,1551958 +65855,391,9,395992,1400008 +65856,413,11,44105,145518 +65857,350,6,296523,1780478 +65858,327,7,30289,128500 +65859,60,1,35852,1604538 +65860,234,1,1924,7187 +65861,269,9,20439,63293 +65862,21,3,10193,1461369 +65863,208,2,45562,999556 +65864,234,1,211729,61929 +65865,11,6,28032,1113194 +65866,317,10,86131,23947 +65867,413,11,17622,22144 +65868,269,9,65496,1152093 +65869,203,1,397837,1460788 +65870,234,1,11876,25950 +65871,387,10,41110,84258 +65872,234,1,21519,18897 +65873,413,11,85196,556913 +65874,333,2,55544,1523498 +65875,317,10,332354,563855 +65876,52,10,4825,120678 +65877,97,7,51036,91094 +65878,298,5,168259,1404739 +65879,333,2,2898,1531878 +65880,3,5,6069,12235 +65881,234,1,1058,15206 +65882,373,7,7916,1438610 +65883,317,10,86975,86293 +65884,234,1,9289,35318 +65885,413,11,28448,12885 +65886,333,2,13842,1445825 +65887,387,10,47525,45929 +65888,413,11,122081,17115 +65889,333,2,283445,1367920 +65890,317,10,142712,1130959 +65891,273,7,44716,32717 +65892,317,10,26603,38937 +65893,269,9,206514,29857 +65894,301,5,19901,1391732 +65895,263,11,1578,1475782 +65896,198,6,329865,49194 +65897,15,6,9982,1428901 +65898,234,1,41077,125403 +65899,387,10,9358,20218 +65900,286,3,270007,6378 +65901,113,9,318781,1622808 +65902,269,9,549,7496 +65903,187,11,16996,1405232 +65904,273,7,33472,56928 +65905,289,6,9297,1462690 +65906,273,7,170759,48503 +65907,75,5,9504,957361 +65908,234,1,13580,18854 +65909,5,10,98914,213447 +65910,317,10,39462,18611 +65911,60,1,3309,118448 +65912,317,10,65599,51534 +65913,413,11,11915,57288 +65914,234,1,57382,226019 +65915,166,9,8053,1397808 +65916,113,9,102382,1399451 +65917,234,1,56329,31033 +65918,273,7,14452,937693 +65919,3,5,38448,1357 +65920,15,6,76757,1482841 +65921,66,11,50086,1651006 +65922,273,7,12920,4500 +65923,166,9,14,1378222 +65924,317,10,110001,224884 +65925,269,9,298865,1464042 +65926,15,6,13225,1447298 +65927,269,9,14181,1467186 +65928,158,2,10066,1454940 +65929,234,1,22901,68281 +65930,204,9,10770,1191532 +65931,105,7,366566,4403 +65932,317,10,141015,212687 +65933,413,11,55681,1898925 +65934,413,11,331075,1759499 +65935,204,9,16659,960175 +65936,296,3,954,1886657 +65937,3,5,403431,1332263 +65938,203,1,99,25255 +65939,327,7,25241,17994 +65940,234,1,82598,83467 +65941,317,10,124581,1178551 +65942,317,10,102841,14670 +65943,133,3,18512,14744 +65944,415,3,52270,231264 +65945,262,6,274479,1390357 +65946,3,5,48144,72023 +65947,20,2,316042,1519883 +65948,317,10,19760,5724 +65949,413,11,15310,31066 +65950,192,5,109424,1408391 +65951,234,1,38099,11401 +65952,3,5,152570,138221 +65953,387,10,41996,125398 +65954,346,3,22267,1468038 +65955,234,1,61203,81676 +65956,234,1,332354,563855 +65957,52,10,79596,63977 +65958,204,9,22292,10604 +65959,262,6,61341,1338242 +65960,53,2,2140,21940 +65961,286,3,41610,39014 +65962,10,3,9946,1767306 +65963,209,7,10491,1344273 +65964,286,3,95177,1155532 +65965,21,3,809,12095 +65966,3,5,43692,105511 +65967,317,10,51212,24501 +65968,234,1,22023,32765 +65969,3,5,77381,1183177 +65970,273,7,128364,6458 +65971,3,5,95627,17598 +65972,52,10,19898,54559 +65973,234,1,41764,19684 +65974,213,10,61991,18208 +65975,57,2,6973,1526508 +65976,250,11,49009,1401741 +65977,234,1,76940,133202 +65978,387,10,44634,162900 +65979,413,11,11712,5026 +65980,234,1,375742,1557607 +65981,360,3,127585,1384364 +65982,269,9,62132,1452745 +65983,34,8,88273,1484216 +65984,317,10,52485,1085370 +65985,317,10,10165,16188 +65986,77,10,10529,65525 +65987,387,10,10379,64947 +65988,317,10,132518,1095725 +65989,182,8,544,1417994 +65990,196,7,8467,1718548 +65991,413,11,111960,29311 +65992,75,5,94809,1125589 +65993,218,1,379019,1598700 +65994,387,10,129533,160101 +65995,45,9,9457,223991 +65996,262,6,17209,1399973 +65997,413,11,30061,8068 +65998,3,5,48210,20572 +65999,234,1,24657,8452 +66000,317,10,184345,9562 +66001,328,6,41283,1390360 +66002,234,1,38964,29662 +66003,273,7,233487,1308008 +66004,204,9,44801,16517 +66005,413,11,40864,124865 +66006,234,1,136366,1105491 +66007,175,5,34231,1460042 +66008,3,5,189682,127523 +66009,182,8,200505,1367672 +66010,269,9,339530,971040 +66011,125,2,284052,1459856 +66012,182,8,245168,1194472 +66013,3,5,17479,81766 +66014,3,5,29368,27926 +66015,127,3,293660,1366 +66016,234,1,140554,1167389 +66017,387,10,58570,25239 +66018,388,9,10145,1446671 +66019,105,7,163706,1145333 +66020,286,3,325133,64227 +66021,317,10,61799,138209 +66022,413,11,172785,7035 +66023,413,11,42188,71534 +66024,262,6,238589,1345266 +66025,180,7,1586,405004 +66026,273,7,300667,19016 +66027,234,1,2887,1724 +66028,333,2,53879,26175 +66029,317,10,177271,188833 +66030,317,10,30126,9052 +66031,3,5,336806,1609221 +66032,413,11,126841,1390 +66033,387,10,49792,151286 +66034,234,1,71945,29648 +66035,190,7,2300,1563430 +66036,413,11,130739,1201975 +66037,387,10,8852,11770 +66038,317,10,71051,1098602 +66039,413,11,24363,10419 +66040,387,10,46368,136154 +66041,357,3,4248,1667248 +66042,413,11,10103,38016 +66043,105,7,16921,73417 +66044,317,10,234155,933277 +66045,3,5,15143,43529 +66046,373,7,11688,74976 +66047,413,11,367732,1056219 +66048,301,5,3597,983118 +66049,411,9,61151,1309577 +66050,413,11,79782,587974 +66051,301,5,193893,1550778 +66052,317,10,42579,72191 +66053,234,1,106887,1302048 +66054,387,10,14262,10367 +66055,3,5,134480,2774 +66056,317,10,258255,1299144 +66057,317,10,34449,112391 +66058,273,7,1164,278 +66059,317,10,335145,717 +66060,3,5,55347,236606 +66061,269,9,2135,8678 +66062,3,5,320873,1427448 +66063,29,3,10590,21801 +66064,234,1,40688,72258 +66065,3,5,117999,14569 +66066,204,9,2577,26193 +66067,53,2,236737,16986 +66068,286,3,86732,1037247 +66069,317,10,39311,29757 +66070,77,10,163,1885 +66071,387,10,39024,121798 +66072,317,10,19996,19893 +66073,413,11,24469,71087 +66074,179,2,28739,1332239 +66075,269,9,10691,37040 +66076,387,10,320005,1427193 +66077,234,1,49577,142502 +66078,147,1,359412,1475547 +66079,203,1,6068,1446549 +66080,317,10,47596,1853470 +66081,387,10,120837,149130 +66082,398,9,284052,1192526 +66083,105,7,45665,551674 +66084,3,5,399790,76971 +66085,327,7,245692,1574456 +66086,52,10,33015,8635 +66087,234,1,24453,32767 +66088,317,10,204384,1492755 +66089,413,11,186869,1446203 +66090,234,1,13517,73098 +66091,234,1,188392,89755 +66092,270,9,1579,1400334 +66093,234,1,21145,71929 +66094,317,10,26971,43317 +66095,317,10,302666,1389040 +66096,239,5,46931,1456094 +66097,75,5,193893,1412327 +66098,113,9,190955,1326110 +66099,234,1,103201,67753 +66100,97,7,44943,1227173 +66101,234,1,41762,21037 +66102,413,11,109477,1046586 +66103,287,3,12103,1449158 +66104,62,3,634,1440487 +66105,234,1,30175,564872 +66106,234,1,341559,1301845 +66107,52,10,43419,1295378 +66108,419,10,317198,1512120 +66109,160,3,364690,1670960 +66110,204,9,274857,1162830 +66111,234,1,439998,1258076 +66112,350,6,14,1557497 +66113,234,1,130917,12698 +66114,3,5,340027,783230 +66115,328,6,1271,37685 +66116,269,9,8776,1038611 +66117,413,11,5511,43813 +66118,148,9,339527,1560275 +66119,387,10,45211,39463 +66120,317,10,149910,61244 +66121,122,8,1647,1752691 +66122,234,1,83456,115122 +66123,234,1,139521,87550 +66124,158,2,315837,1797193 +66125,5,10,58757,129693 +66126,413,11,12637,73195 +66127,387,10,26914,45577 +66128,74,5,186869,1840261 +66129,175,5,71859,1193638 +66130,413,11,14823,1035076 +66131,262,6,333663,1709181 +66132,317,10,53862,95458 +66133,413,11,264729,16981 +66134,167,3,9882,1414994 +66135,204,9,13225,12058 +66136,148,9,31411,10523 +66137,325,5,126889,1816355 +66138,234,1,206266,1188895 +66139,5,10,66812,87667 +66140,273,7,38340,951475 +66141,273,7,127560,37757 +66142,387,10,66925,1084774 +66143,226,2,134435,1099169 +66144,413,11,32088,3099 +66145,387,10,135670,1103518 +66146,273,7,43778,1173081 +66147,3,5,10066,58192 +66148,234,1,198600,94218 +66149,234,1,337101,1458315 +66150,234,1,140595,115891 +66151,333,2,76163,1437692 +66152,360,3,1586,1391759 +66153,197,5,4147,1740448 +66154,314,2,44129,1555157 +66155,166,9,222935,1636645 +66156,234,1,12636,73189 +66157,394,7,312831,1354922 +66158,3,5,144111,8504 +66159,175,5,9846,1398856 +66160,413,11,84892,15350 +66161,317,10,31167,62756 +66162,413,11,188102,1845746 +66163,53,2,5924,8922 +66164,277,3,108048,1381306 +66165,239,5,353686,562671 +66166,269,9,19688,1024912 +66167,221,3,1251,1345618 +66168,113,9,159667,1849495 +66169,301,5,19688,1701617 +66170,373,7,168259,1394131 +66171,13,9,313646,1403839 +66172,289,6,11024,1461153 +66173,317,10,334538,55439 +66174,234,1,43354,130056 +66175,413,11,29382,103694 +66176,77,10,2503,25606 +66177,234,1,265832,588701 +66178,148,9,44921,9587 +66179,234,1,145481,974634 +66180,413,11,10874,12940 +66181,143,7,359412,16994 +66182,373,7,13075,40142 +66183,387,10,12584,72995 +66184,317,10,227257,1099679 +66185,349,1,12477,1207896 +66186,317,10,76264,60440 +66187,387,10,272072,1449256 +66188,269,9,62472,1429259 +66189,273,7,36334,14647 +66190,3,5,43141,3148 +66191,289,6,345918,1637439 +66192,127,3,126712,616605 +66193,317,10,316154,1289604 +66194,277,3,38433,13339 +66195,250,11,12783,1427510 +66196,46,5,8619,1858340 +66197,3,5,105,1060 +66198,108,10,87123,2004 +66199,5,10,20017,66797 +66200,234,1,2994,25826 +66201,5,10,43459,2747 +66202,413,11,147829,14679 +66203,244,3,157843,1556906 +66204,234,1,42683,4109 +66205,413,11,11333,5821 +66206,268,7,329682,71386 +66207,373,7,241593,1455304 +66208,87,7,378441,1746704 +66209,148,9,15794,13974 +66210,45,9,315837,1662346 +66211,413,11,21451,3486 +66212,113,9,70981,1390350 +66213,148,9,138308,31205 +66214,234,1,43200,120135 +66215,226,2,39833,26176 +66216,234,1,9812,18185 +66217,387,10,43114,101996 +66218,97,7,145135,113045 +66219,317,10,75138,144862 +66220,5,10,58076,137613 +66221,189,3,14126,1409226 +66222,291,6,78802,1535322 +66223,175,5,11046,1391116 +66224,269,9,381015,1445361 +66225,105,7,228066,7045 +66226,262,6,321303,1595709 +66227,317,10,15036,27436 +66228,234,1,68684,66823 +66229,349,1,22582,1447587 +66230,203,1,202241,1399481 +66231,53,2,274990,959464 +66232,203,1,345925,1396460 +66233,52,10,17074,34936 +66234,3,5,60281,4185 +66235,257,3,146238,1618901 +66236,387,10,124963,81976 +66237,3,5,49961,143147 +66238,234,1,171075,35318 +66239,328,6,443319,1521469 +66240,273,7,7548,10759 +66241,53,2,326,23415 +66242,175,5,384737,1825661 +66243,314,2,44943,1403389 +66244,387,10,55448,72562 +66245,333,2,11370,14763 +66246,387,10,118957,1080779 +66247,286,3,32868,1023323 +66248,289,6,46261,1452991 +66249,175,5,403,1377502 +66250,413,11,167935,1149641 +66251,387,10,91419,4357 +66252,53,2,323426,1642007 +66253,175,5,664,1389139 +66254,45,9,11351,1597175 +66255,269,9,41402,20569 +66256,262,6,298584,1619739 +66257,234,1,11889,36693 +66258,204,9,15497,3358 +66259,387,10,11045,539 +66260,388,9,664,1892485 +66261,234,1,294651,1115707 +66262,413,11,188927,1204243 +66263,3,5,1926,20036 +66264,53,2,430826,1731917 +66265,234,1,388862,57082 +66266,79,7,88036,94158 +66267,111,7,397837,1818598 +66268,234,1,1999,5010 +66269,317,10,271234,1170558 +66270,196,7,10145,1338152 +66271,303,3,19901,1412745 +66272,234,1,417678,1572145 +66273,277,3,46586,1398551 +66274,269,9,242,2875 +66275,158,2,693,1532594 +66276,286,3,27805,1031110 +66277,234,1,11653,44916 +66278,387,10,9289,46470 +66279,5,10,63186,236579 +66280,411,9,11236,34513 +66281,387,10,122857,1122169 +66282,298,5,58244,1409712 +66283,158,2,339403,1635275 +66284,74,5,6163,1701266 +66285,317,10,154441,933736 +66286,413,11,21338,27583 +66287,373,7,9563,1378755 +66288,234,1,241930,1121480 +66289,317,10,99095,31898 +66290,234,1,246355,2127 +66291,234,1,43462,39058 +66292,387,10,64965,72768 +66293,3,5,56435,544085 +66294,3,5,49577,1095564 +66295,52,10,13042,225977 +66296,105,7,158598,30657 +66297,3,5,102144,4101 +66298,204,9,63217,1299818 +66299,273,7,92311,9796 +66300,317,10,76821,50538 +66301,387,10,41608,557151 +66302,160,3,43923,1372092 +66303,333,2,17479,1723343 +66304,234,1,413782,110962 +66305,413,11,49110,1280314 +66306,289,6,87827,1459734 +66307,289,6,57201,1355894 +66308,317,10,266741,119367 +66309,234,1,40624,76422 +66310,305,9,5123,1740487 +66311,273,7,4550,37929 +66312,3,5,52782,1140591 +66313,413,11,805,12016 +66314,105,7,76341,56827 +66315,357,3,15613,1442510 +66316,387,10,37292,70940 +66317,289,6,9948,1447594 +66318,3,5,10433,1632 +66319,366,3,118,1855216 +66320,317,10,239619,66937 +66321,196,7,9358,1368866 +66322,234,1,22682,29715 +66323,204,9,35284,95237 +66324,259,3,33273,1585443 +66325,72,11,403,1440853 +66326,317,10,246133,1079368 +66327,317,10,17288,1347936 +66328,234,1,25507,77101 +66329,413,11,239563,1782 +66330,328,6,11024,1410572 +66331,373,7,15472,19350 +66332,182,8,287,1534831 +66333,60,1,174594,1024431 +66334,413,11,28340,1795353 +66335,87,7,35052,1540471 +66336,234,1,82465,39996 +66337,413,11,60488,30412 +66338,3,5,58251,993751 +66339,289,6,10344,1446200 +66340,333,2,47921,1532473 +66341,301,5,369885,1408354 +66342,234,1,13652,72266 +66343,234,1,59401,6593 +66344,3,5,54384,1166276 +66345,269,9,102668,1031776 +66346,269,9,403867,1540835 +66347,387,10,1956,1892 +66348,60,1,316654,1086433 +66349,387,10,31597,37710 +66350,234,1,33315,110348 +66351,413,11,70667,569859 +66352,317,10,76788,150690 +66353,53,2,118536,1467258 +66354,5,10,9289,46470 +66355,286,3,18917,551675 +66356,179,2,22292,26172 +66357,387,10,9736,63896 +66358,234,1,61991,18209 +66359,289,6,2300,1447511 +66360,317,10,19957,69729 +66361,236,8,11618,1463696 +66362,328,6,127585,1340132 +66363,234,1,13346,11834 +66364,175,5,241239,1193622 +66365,53,2,162056,46416 +66366,333,2,11321,147366 +66367,317,10,24331,1173281 +66368,317,10,9406,568711 +66369,413,11,419192,1775563 +66370,105,7,42204,142613 +66371,3,5,19661,30288 +66372,317,10,297466,1182087 +66373,234,1,29048,10586 +66374,3,5,48838,8969 +66375,75,5,9514,1642509 +66376,269,9,204922,9003 +66377,204,9,15476,1327246 +66378,105,7,11139,68318 +66379,413,11,11216,33790 +66380,5,10,138308,233221 +66381,387,10,27637,66889 +66382,387,10,18836,130938 +66383,234,1,22020,30689 +66384,3,5,15090,1868700 +66385,3,5,213681,62354 +66386,234,1,17339,9915 +66387,204,9,482,958997 +66388,5,10,10475,67562 +66389,3,5,126889,120 +66390,387,10,3051,31047 +66391,317,10,31162,588036 +66392,3,5,108,1129 +66393,75,5,283445,86585 +66394,413,11,539,2655 +66395,204,9,10916,1330842 +66396,149,6,14945,1457644 +66397,387,10,127913,1093244 +66398,317,10,81001,69719 +66399,175,5,4248,1534236 +66400,148,9,9820,65711 +66401,325,5,388243,1592195 +66402,198,6,76203,1533019 +66403,3,5,39824,42370 +66404,77,10,9667,58446 +66405,37,3,384737,1825456 +66406,289,6,3933,553920 +66407,306,7,64725,91804 +66408,287,3,178809,1412578 +66409,105,7,62692,1568323 +66410,259,3,11618,1586927 +66411,387,10,11983,19242 +66412,259,3,163,16306 +66413,234,1,32093,29595 +66414,143,7,311324,5338 +66415,148,9,212713,7651 +66416,204,9,419430,1484968 +66417,234,1,118139,14643 +66418,269,9,47504,19755 +66419,105,7,310001,1280141 +66420,317,10,37926,85203 +66421,52,10,56533,1021627 +66422,398,9,18595,1160652 +66423,328,6,7299,1433733 +66424,360,3,14476,993624 +66425,53,2,59961,36605 +66426,413,11,11196,68556 +66427,77,10,10529,77272 +66428,234,1,374416,120127 +66429,3,5,117913,32381 +66430,273,7,239513,1084640 +66431,328,6,173153,1407733 +66432,234,1,13685,5655 +66433,187,11,334,1050930 +66434,317,10,226701,1486964 +66435,333,2,107811,1460819 +66436,5,10,31995,3353 +66437,182,8,294690,1372426 +66438,234,1,10801,1869 +66439,328,6,274479,1384375 +66440,3,5,68715,931384 +66441,413,11,72279,25824 +66442,67,10,1624,1463375 +66443,317,10,41823,5281 +66444,87,7,70586,1533101 +66445,286,3,134662,1099847 +66446,387,10,1902,19841 +66447,234,1,229,2917 +66448,148,9,246860,23584 +66449,105,7,16980,72210 +66450,60,1,40998,586582 +66451,281,6,227306,1866315 +66452,175,5,70667,1427148 +66453,234,1,51881,66088 +66454,234,1,313108,87537 +66455,158,2,329289,1548033 +66456,317,10,339526,106850 +66457,207,3,2924,6951 +66458,234,1,96252,70862 +66459,317,10,371462,1568419 +66460,234,1,27381,4610 +66461,413,11,248087,1537406 +66462,3,5,241574,1939 +66463,317,10,321142,1316035 +66464,413,11,89492,41079 +66465,5,10,31417,128483 +66466,387,10,2102,21546 +66467,234,1,49837,142885 +66468,328,6,69668,1425987 +66469,179,2,354859,1552353 +66470,317,10,13056,18873 +66471,387,10,27085,554640 +66472,52,10,4012,30458 +66473,268,7,325263,1636523 +66474,413,11,199602,569952 +66475,273,7,11045,31124 +66476,7,3,338189,1650721 +66477,12,10,1724,7624 +66478,3,5,83732,930012 +66479,413,11,60935,62907 +66480,413,11,65904,1377604 +66481,234,1,259835,259027 +66482,204,9,103938,9062 +66483,360,3,310133,1524546 +66484,97,7,6947,1389570 +66485,7,3,1966,1733754 +66486,204,9,40562,1472427 +66487,234,1,32690,5026 +66488,53,2,65646,1523497 +66489,331,3,186869,1552545 +66490,333,2,522,1531878 +66491,381,9,9593,18458 +66492,387,10,102,1012 +66493,289,6,24238,1454661 +66494,234,1,74961,100888 +66495,60,1,34650,121052 +66496,5,10,24420,1279373 +66497,127,3,188102,1470309 +66498,289,6,81310,67607 +66499,234,1,278978,14614 +66500,349,1,10020,1615258 +66501,143,7,781,11606 +66502,53,2,239513,1389778 +66503,209,7,23544,90305 +66504,209,7,44129,1544639 +66505,373,7,203833,1338976 +66506,204,9,76757,1482833 +66507,104,7,98066,1560127 +66508,3,5,68721,2483 +66509,148,9,48677,1261 +66510,234,1,31263,66224 +66511,234,1,8556,18969 +66512,139,3,301671,1526607 +66513,3,5,60420,967792 +66514,3,5,49158,27380 +66515,360,3,163,1377215 +66516,415,3,14430,1520950 +66517,77,10,54795,15870 +66518,3,5,72648,1759540 +66519,143,7,98277,1631874 +66520,398,9,8247,1701149 +66521,262,6,168027,1415014 +66522,413,11,19665,71006 +66523,317,10,403570,74063 +66524,263,11,425774,1708053 +66525,234,1,423377,229180 +66526,269,9,155597,29913 +66527,234,1,16563,13284 +66528,52,10,133255,89264 +66529,317,10,133183,112739 +66530,234,1,25738,94169 +66531,53,2,222935,46589 +66532,196,7,13380,1424455 +66533,234,1,8383,54794 +66534,387,10,56151,29596 +66535,52,10,50674,1042805 +66536,21,3,157293,1457344 +66537,87,7,64807,1527657 +66538,7,3,857,1631609 +66539,148,9,291413,64229 +66540,234,1,9519,37618 +66541,182,8,55534,1406767 +66542,234,1,177047,6899 +66543,262,6,9785,1551515 +66544,209,7,69668,1072607 +66545,269,9,237,3082 +66546,234,1,284620,1348292 +66547,148,9,228205,62063 +66548,105,7,16177,21440 +66549,234,1,84771,51809 +66550,226,2,2924,16551 +66551,79,7,25918,1684055 +66552,387,10,21959,65441 +66553,269,9,42709,1413485 +66554,5,10,343283,1474243 +66555,52,10,88018,551674 +66556,182,8,60599,1395683 +66557,147,1,2976,29213 +66558,196,7,9514,1381067 +66559,415,3,64928,51000 +66560,3,5,40952,140886 +66561,413,11,11361,69142 +66562,143,7,10066,9430 +66563,273,7,107250,71035 +66564,213,10,5552,44071 +66565,105,7,264560,1317454 +66566,317,10,327982,1433565 +66567,204,9,43470,14448 +66568,204,9,102155,959007 +66569,141,7,2897,30257 +66570,317,10,17825,76825 +66571,143,7,327,13248 +66572,273,7,13763,35838 +66573,105,7,362180,1616019 +66574,317,10,40087,1371391 +66575,397,7,36519,27969 +66576,53,2,9899,60134 +66577,77,10,4703,39013 +66578,53,2,222517,1699958 +66579,413,11,134477,1006474 +66580,289,6,1877,1452721 +66581,234,1,261249,153323 +66582,53,2,132332,1536595 +66583,413,11,13668,6346 +66584,97,7,246655,1338372 +66585,3,5,11472,1095 +66586,268,7,6171,1403438 +66587,413,11,29825,59479 +66588,169,3,13380,1070426 +66589,15,6,294272,1457325 +66590,127,3,52661,78894 +66591,60,1,43441,1340084 +66592,234,1,24971,50739 +66593,143,7,297702,1407256 +66594,226,2,20242,957264 +66595,20,2,949,1535949 +66596,286,3,124597,1588326 +66597,3,5,977,4083 +66598,53,2,26882,1773038 +66599,87,7,9428,52161 +66600,317,10,124517,1080199 +66601,262,6,75174,1447151 +66602,273,7,60269,1605167 +66603,413,11,80473,91307 +66604,187,7,9819,1879203 +66605,269,9,36243,550585 +66606,314,2,126889,1401639 +66607,387,10,52864,84642 +66608,317,10,19277,1012985 +66609,273,7,40807,15347 +66610,234,1,253251,1288697 +66611,234,1,8429,4410 +66612,204,9,28712,9062 +66613,360,3,312831,1568961 +66614,387,10,26142,86299 +66615,234,1,66022,7501 +66616,105,7,63615,96694 +66617,148,9,4365,8220 +66618,132,2,9352,1401606 +66619,148,9,36094,4188 +66620,317,10,17350,563904 +66621,3,5,82470,33467 +66622,169,3,1381,4657 +66623,226,2,37672,1072007 +66624,127,3,20481,1902347 +66625,234,1,12101,2087 +66626,53,2,179826,51693 +66627,189,3,7299,1433745 +66628,175,5,10929,1401594 +66629,273,7,21282,19352 +66630,317,10,153420,552546 +66631,143,7,82968,1865184 +66632,52,10,391438,1371169 +66633,234,1,330947,30715 +66634,203,1,7340,1408664 +66635,148,9,1377,16755 +66636,387,10,38724,69393 +66637,234,1,96793,39779 +66638,143,7,26882,1287830 +66639,53,2,245692,1574450 +66640,387,10,10373,65306 +66641,387,10,8329,54526 +66642,3,5,174309,1403204 +66643,226,2,64215,1354329 +66644,394,7,15092,3193 +66645,204,9,36519,9062 +66646,5,10,33592,1820846 +66647,387,10,72431,51679 +66648,244,3,157843,1840678 +66649,413,11,9461,51523 +66650,387,10,15170,60678 +66651,317,10,18133,1193568 +66652,234,1,224944,1210464 +66653,234,1,15653,147702 +66654,234,1,21028,23442 +66655,203,1,323435,1571057 +66656,234,1,2990,19304 +66657,303,3,293167,1378241 +66658,317,10,293982,566109 +66659,53,2,8008,29422 +66660,204,9,14868,77730 +66661,317,10,137746,229164 +66662,269,9,15982,12495 +66663,175,5,38356,1445842 +66664,317,10,91459,27767 +66665,273,7,62728,139904 +66666,234,1,3085,11435 +66667,105,7,270221,1322596 +66668,360,9,289225,1726933 +66669,5,10,15765,1459 +66670,234,1,12476,62020 +66671,286,3,196852,1700879 +66672,360,3,13849,1413930 +66673,198,6,296524,1729046 +66674,387,10,242,1776 +66675,39,3,39781,1896516 +66676,108,10,43489,144045 +66677,3,5,2778,1153 +66678,317,10,43680,1165495 +66679,413,11,308174,1394319 +66680,387,10,152748,592493 +66681,234,1,62670,150047 +66682,22,9,345922,1780109 +66683,50,3,809,933498 +66684,204,9,43522,1130432 +66685,127,3,194,1406402 +66686,328,6,314371,1611070 +66687,269,9,316654,1676030 +66688,45,9,354287,1170536 +66689,398,9,9532,34887 +66690,209,7,284052,15354 +66691,21,3,108365,127331 +66692,196,7,20439,113076 +66693,160,3,10204,1398932 +66694,234,1,117531,94305 +66695,3,5,25953,103496 +66696,3,5,124115,8714 +66697,286,3,66925,1084769 +66698,3,5,27635,96252 +66699,286,3,163791,1130765 +66700,234,1,18898,15488 +66701,3,5,11788,5018 +66702,53,2,19665,1179134 +66703,234,1,203833,126945 +66704,72,11,10294,1409246 +66705,234,1,396152,12714 +66706,127,3,90616,1692101 +66707,234,1,65123,240555 +66708,317,10,339403,11090 +66709,413,11,246355,1281855 +66710,273,7,5552,44075 +66711,317,10,276550,1574433 +66712,187,11,2978,1406616 +66713,317,10,299780,1379247 +66714,234,1,54566,116155 +66715,413,11,172385,56284 +66716,204,9,52827,3358 +66717,333,2,83430,1607047 +66718,234,1,297762,6884 +66719,204,9,43390,9062 +66720,387,10,10567,13367 +66721,317,10,253257,1288710 +66722,148,9,273481,13626 +66723,273,7,39875,12700 +66724,413,11,167810,4475 +66725,262,6,9358,1404731 +66726,3,5,167956,1187930 +66727,53,2,16186,31131 +66728,160,3,366045,84228 +66729,208,2,40562,92329 +66730,234,1,140648,105984 +66731,127,3,28090,194654 +66732,387,10,52856,2163 +66733,373,7,7454,117238 +66734,413,11,33839,103182 +66735,273,7,10063,56535 +66736,317,10,24731,67754 +66737,262,6,203351,1023419 +66738,387,10,186971,1174349 +66739,292,3,634,1576013 +66740,273,7,12236,72141 +66741,32,8,9297,1462706 +66742,234,1,163111,1122718 +66743,273,7,11346,69096 +66744,52,10,56151,144426 +66745,3,5,310133,1458711 +66746,377,3,9472,1473448 +66747,204,9,16921,1401759 +66748,239,5,333352,1609849 +66749,53,2,10326,8428 +66750,3,5,43596,1940 +66751,226,2,42476,1813405 +66752,105,7,31993,2916 +66753,226,2,580,16208 +66754,269,9,56596,1131382 +66755,387,10,86234,1542267 +66756,328,6,10391,1404845 +66757,273,7,10946,1528 +66758,413,11,13763,1614969 +66759,293,2,4147,1532706 +66760,333,2,47694,554849 +66761,317,10,358076,56965 +66762,234,1,197057,124757 +66763,52,10,153161,33027 +66764,234,1,8970,54967 +66765,317,10,375082,1087280 +66766,317,10,69075,126882 +66767,301,5,169298,1402488 +66768,75,5,8247,1399505 +66769,301,5,14181,1418398 +66770,187,11,28090,83088 +66771,166,9,263115,1532748 +66772,234,1,261112,1304491 +66773,3,5,157351,1167488 +66774,317,10,71125,9880 +66775,413,11,28000,13984 +66776,179,2,13788,1323762 +66777,317,10,55730,129708 +66778,317,10,35724,238822 +66779,289,6,24238,1454657 +66780,289,6,18937,1460439 +66781,189,3,10590,1389137 +66782,117,5,15387,571462 +66783,204,9,13600,194881 +66784,277,3,11370,1581136 +66785,40,1,9902,1018754 +66786,317,10,1377,16745 +66787,234,1,268212,8626 +66788,317,10,48636,70604 +66789,204,9,2924,32279 +66790,317,10,40688,10385 +66791,25,2,315837,1546434 +66792,277,3,55846,1404863 +66793,203,1,126889,1470970 +66794,13,10,21843,42175 +66795,60,1,259183,9915 +66796,204,9,93313,8506 +66797,317,10,26123,113642 +66798,269,9,76341,939990 +66799,234,1,14008,1212412 +66800,105,7,124597,138451 +66801,394,7,317,1599490 +66802,234,1,27095,96927 +66803,182,8,22803,1547037 +66804,387,10,68347,1384195 +66805,234,1,41030,89702 +66806,226,2,294254,1571512 +66807,75,5,172011,10616 +66808,317,10,346490,1482310 +66809,333,2,299165,1499139 +66810,317,10,101185,134145 +66811,175,5,51311,1191116 +66812,175,5,381015,1643834 +66813,234,1,221527,229222 +66814,234,1,45807,13953 +66815,175,5,44115,1394724 +66816,273,7,179154,6041 +66817,53,2,86825,1594602 +66818,75,5,4286,1130044 +66819,105,7,11812,1999 +66820,188,8,1586,1611810 +66821,317,10,37291,91343 +66822,234,1,180371,102557 +66823,301,5,1294,1168615 +66824,148,9,223485,1531095 +66825,234,1,26390,20907 +66826,333,2,39833,26175 +66827,175,5,334527,1392942 +66828,303,3,297702,1636856 +66829,286,3,66893,2361 +66830,105,7,34652,113583 +66831,226,2,11812,1531872 +66832,189,3,8467,1780227 +66833,413,11,122019,31867 +66834,53,2,43419,4350 +66835,286,3,204553,1294090 +66836,52,10,31462,162232 +66837,234,1,131366,1093252 +66838,387,10,48627,16747 +66839,413,11,2662,17886 +66840,148,9,103731,60385 +66841,234,1,28170,99916 +66842,413,11,89325,9966 +66843,289,6,87827,1453021 +66844,301,5,9286,1441365 +66845,277,7,544,1780224 +66846,226,2,13823,75802 +66847,289,6,291270,1455710 +66848,273,7,158015,1186278 +66849,127,3,32657,1723719 +66850,317,10,61361,4895 +66851,234,1,176143,64114 +66852,387,10,35,7088 +66853,148,9,354859,1651569 +66854,234,1,325555,90454 +66855,219,11,93856,1335156 +66856,387,10,16993,81117 +66857,269,9,9843,59856 +66858,317,10,45452,57617 +66859,234,1,34482,15045 +66860,143,7,284052,1406872 +66861,303,3,11202,40896 +66862,289,6,9514,1642576 +66863,317,10,21118,87107 +66864,77,10,9317,11187 +66865,226,2,42532,1813405 +66866,60,1,338438,1085925 +66867,66,11,10754,1609516 +66868,232,10,76871,32096 +66869,234,1,50108,146515 +66870,204,9,11236,7790 +66871,148,9,302528,1704984 +66872,234,1,121091,18355 +66873,53,2,151043,936191 +66874,234,1,116733,565307 +66875,394,7,340101,40816 +66876,175,5,57005,1766581 +66877,234,1,12279,2294 +66878,188,8,378441,1797466 +66879,394,7,10070,957840 +66880,262,6,76203,1336716 +66881,387,10,369406,126315 +66882,317,10,55294,978850 +66883,158,2,163,1471335 +66884,234,1,52264,145676 +66885,10,3,9902,1600618 +66886,234,1,9982,61411 +66887,234,1,31306,3131 +66888,3,5,22899,44017 +66889,398,9,19995,1376888 +66890,132,2,69,66692 +66891,187,11,89492,1392084 +66892,325,5,297762,1905668 +66893,169,3,10590,1318092 +66894,413,11,30379,1318093 +66895,269,9,343934,7439 +66896,234,1,196789,145605 +66897,3,5,33367,36016 +66898,234,1,19819,15175 +66899,160,3,180305,1399638 +66900,273,7,246403,1113050 +66901,209,7,6163,1614060 +66902,169,3,245692,1550846 +66903,160,3,7299,25066 +66904,413,11,15019,1437955 +66905,237,7,205584,1394862 +66906,328,6,283445,1392104 +66907,3,5,936,1939 +66908,333,2,29449,1559284 +66909,286,3,38602,3454 +66910,373,7,6171,42034 +66911,182,8,14916,1430520 +66912,306,7,354979,1835295 +66913,226,2,338,1406584 +66914,209,7,14411,1339460 +66915,148,9,435,6053 +66916,105,7,11591,26064 +66917,244,3,98066,1552544 +66918,387,10,7980,128 +66919,204,9,28268,1530300 +66920,234,1,25919,79434 +66921,5,10,140887,24840 +66922,234,1,49258,226920 +66923,273,7,20242,37 +66924,11,6,809,1448071 +66925,328,6,11788,1430077 +66926,273,7,339419,937895 +66927,269,9,294254,19291 +66928,317,10,320588,1405645 +66929,269,9,269149,61422 +66930,286,3,392011,1554530 +66931,204,9,121003,9062 +66932,317,10,21379,35294 +66933,413,11,134662,1099847 +66934,143,7,10590,1407812 +66935,160,3,9475,1632066 +66936,403,10,280690,1070462 +66937,182,8,12113,57600 +66938,239,5,333371,1636674 +66939,234,1,117999,39996 +66940,30,5,329865,1399071 +66941,387,10,55725,17867 +66942,148,9,43316,12348 +66943,15,6,2567,1525552 +66944,74,5,109439,1436298 +66945,317,10,103073,1032650 +66946,3,5,314065,960482 +66947,317,10,25890,13 +66948,234,1,5413,43141 +66949,273,7,123961,3667 +66950,317,10,302828,1385214 +66951,317,10,10389,21905 +66952,413,11,10265,64491 +66953,234,1,332839,557880 +66954,413,11,315837,1017296 +66955,234,1,141138,240167 +66956,52,10,18977,101225 +66957,234,1,99545,11431 +66958,317,10,199647,1179833 +66959,387,10,14869,1707 +66960,234,1,245909,1281377 +66961,105,7,297702,1621892 +66962,411,9,10204,1322138 +66963,105,7,19661,13301 +66964,413,11,2566,4405 +66965,234,1,42664,13265 +66966,57,2,40807,1401604 +66967,105,7,3962,34387 +66968,209,7,3172,1553264 +66969,413,11,30308,131132 +66970,234,1,65958,24380 +66971,373,7,41733,16177 +66972,413,11,10727,64335 +66973,234,1,159474,227520 +66974,234,1,86297,86051 +66975,317,10,32044,22035 +66976,179,2,105,1534938 +66977,148,9,1991,63292 +66978,219,11,15653,1552873 +66979,357,3,12,1830793 +66980,175,5,316654,1676029 +66981,234,1,152100,582899 +66982,234,1,246006,204308 +66983,331,3,11618,1765793 +66984,411,9,14522,5021 +66985,234,1,248268,87438 +66986,317,10,232731,85822 +66987,413,11,42430,1291358 +66988,317,10,29739,55373 +66989,262,6,44943,1327027 +66990,52,10,26693,20310 +66991,269,9,709,8524 +66992,234,1,72574,19333 +66993,234,1,327389,11770 +66994,190,7,12102,142154 +66995,413,11,373397,1712989 +66996,3,5,31911,52055 +66997,302,9,266856,1578875 +66998,387,10,95874,239105 +66999,180,7,227975,1775631 +67000,397,7,5638,81534 +67001,189,3,256347,1338158 +67002,53,2,351901,1558712 +67003,234,1,79596,587536 +67004,413,11,10897,66756 +67005,239,5,105,108146 +67006,148,9,27973,12349 +67007,52,10,28820,88164 +67008,234,1,22701,86246 +67009,148,9,18642,7687 +67010,413,11,31263,1020077 +67011,22,9,7326,1786444 +67012,286,3,54524,40486 +67013,229,6,338189,1646548 +67014,204,9,89647,33020 +67015,204,9,9904,60223 +67016,234,1,26963,96676 +67017,235,5,23128,110916 +67018,234,1,1637,2209 +67019,234,1,377447,110511 +67020,250,11,250066,1415093 +67021,143,7,9542,554887 +67022,5,10,96724,20875 +67023,209,7,9441,1023289 +67024,208,2,132363,1333978 +67025,301,5,262522,229987 +67026,273,7,8008,53851 +67027,413,11,257176,19717 +67028,169,3,40466,1546571 +67029,413,11,24825,19104 +67030,105,7,77864,1314293 +67031,413,11,1903,4186 +67032,127,3,30361,1185314 +67033,314,2,9568,1546557 +67034,52,10,22396,25316 +67035,387,10,4459,38227 +67036,327,7,84569,930990 +67037,387,10,239056,1276551 +67038,52,10,9325,57332 +67039,226,2,228066,1470158 +67040,148,9,2567,9026 +67041,234,1,189197,44797 +67042,317,10,109074,98713 +67043,75,5,193893,1871251 +67044,3,5,9252,57010 +67045,413,11,266741,12926 +67046,387,10,336890,1494787 +67047,317,10,35623,931854 +67048,273,7,39578,1784166 +67049,387,10,387957,1619542 +67050,269,9,52894,81893 +67051,148,9,43385,1337169 +67052,234,1,75229,7736 +67053,45,9,19101,1565148 +67054,5,10,28290,226616 +67055,234,1,13505,53177 +67056,413,11,29239,1552 +67057,391,9,395992,1771001 +67058,262,6,76757,1483141 +67059,104,7,8870,1412741 +67060,317,10,104431,1187260 +67061,268,7,9457,1184250 +67062,387,10,2463,25238 +67063,413,11,30924,20954 +67064,413,11,53798,1182098 +67065,387,10,8053,273 +67066,3,5,168676,240966 +67067,234,1,43365,33064 +67068,52,10,29365,69393 +67069,226,2,297762,1425411 +67070,234,1,28031,59670 +67071,234,1,335051,575792 +67072,273,7,870,636 +67073,387,10,6935,59 +67074,360,3,27265,1341852 +67075,5,10,250029,2305 +67076,204,9,10396,2026 +67077,204,9,678,17763 +67078,108,10,70800,1662609 +67079,317,10,25142,1268968 +67080,317,10,47143,73724 +67081,234,1,56669,1049535 +67082,5,10,36194,1272472 +67083,413,11,11185,21012 +67084,413,11,48116,1545739 +67085,203,1,82,1344278 +67086,270,9,3989,34525 +67087,234,1,11980,28902 +67088,413,11,19995,2710 +67089,250,11,26390,1407204 +67090,75,5,9716,1459590 +67091,244,3,634,1339060 +67092,234,1,159211,1140975 +67093,160,3,2666,1392717 +67094,3,5,10986,29895 +67095,301,5,381015,1325515 +67096,97,7,291413,13175 +67097,155,3,378441,1362643 +67098,413,11,264569,1311002 +67099,3,5,38006,30138 +67100,262,6,2046,1406396 +67101,273,7,9959,1213 +67102,273,7,11096,9039 +67103,234,1,285803,86783 +67104,394,7,44115,40810 +67105,387,10,31462,12991 +67106,5,10,175998,13564 +67107,277,3,32275,13575 +67108,148,9,318781,1622809 +67109,187,11,70074,1404214 +67110,182,8,78177,583265 +67111,3,5,24825,78387 +67112,234,1,112991,96919 +67113,3,5,47508,14864 +67114,148,9,245891,17221 +67115,413,11,172,2033 +67116,3,5,33025,12307 +67117,394,7,8669,136008 +67118,269,9,59965,22145 +67119,376,10,46026,20500 +67120,413,11,168164,1106692 +67121,317,10,291577,1362519 +67122,234,1,43913,63937 +67123,387,10,101998,17386 +67124,234,1,109690,1031128 +67125,175,5,10294,9360 +67126,53,2,43809,9064 +67127,60,1,2982,29281 +67128,333,2,17622,1413843 +67129,413,11,89445,10051 +67130,413,11,88641,48443 +67131,204,9,82448,927986 +67132,87,7,259694,1529990 +67133,52,10,323426,85530 +67134,317,10,76681,26978 +67135,53,2,204384,20271 +67136,148,9,987,14826 +67137,387,10,11537,69768 +67138,3,5,12528,2082 +67139,204,9,43817,1860433 +67140,387,10,179066,10601 +67141,377,3,1966,1733749 +67142,77,10,31532,932008 +67143,234,1,9943,21737 +67144,3,5,10041,62354 +67145,234,1,40660,124269 +67146,72,11,168259,110262 +67147,413,11,4024,612897 +67148,387,10,103218,230599 +67149,273,7,205587,153 +67150,5,10,144229,1195308 +67151,349,1,2567,1691209 +67152,269,9,147773,60193 +67153,333,2,10804,1703457 +67154,175,5,332567,1395243 +67155,3,5,101231,26267 +67156,269,9,10050,62517 +67157,234,1,56948,132364 +67158,409,7,83461,238897 +67159,85,10,271664,1185449 +67160,413,11,24657,11233 +67161,3,5,32275,9057 +67162,273,7,8342,20028 +67163,148,9,36785,116204 +67164,413,11,14554,119080 +67165,105,7,10692,9202 +67166,394,7,10543,1405717 +67167,413,11,15689,78545 +67168,234,1,23452,109191 +67169,317,10,167928,108474 +67170,360,3,245700,1434864 +67171,105,7,110160,1049426 +67172,234,1,47906,98199 +67173,3,5,34181,56885 +67174,317,10,32497,57013 +67175,273,7,28673,1259 +67176,262,6,177677,1413178 +67177,387,10,285532,499710 +67178,226,2,274479,1332188 +67179,234,1,320873,83594 +67180,105,7,21828,88117 +67181,403,10,81475,122913 +67182,317,10,72313,19399 +67183,208,2,151431,30939 +67184,317,10,16666,436081 +67185,387,10,35,58178 +67186,387,10,62211,7931 +67187,387,10,573,7750 +67188,173,7,129,1452508 +67189,286,3,366566,19378 +67190,105,7,77641,535622 +67191,52,10,93935,1657949 +67192,3,5,21950,12864 +67193,387,10,11570,69936 +67194,413,11,40028,32796 +67195,413,11,135390,1308596 +67196,330,3,20372,1095781 +67197,234,1,89492,41039 +67198,143,7,330459,1235786 +67199,234,1,426265,1709468 +67200,166,9,283384,1429330 +67201,286,3,80281,494979 +67202,3,5,294640,556736 +67203,53,2,419192,1046901 +67204,387,10,219247,84314 +67205,333,2,203351,113779 +67206,269,9,83384,966515 +67207,234,1,30198,12180 +67208,182,8,251,1425842 +67209,179,2,190955,1372095 +67210,317,10,45505,86319 +67211,127,3,6171,1007395 +67212,105,7,75204,574144 +67213,97,7,59965,1077782 +67214,60,1,31773,1562136 +67215,317,10,96106,56742 +67216,387,10,4887,40028 +67217,45,9,297762,1903939 +67218,373,7,199575,1051722 +67219,387,10,2963,29028 +67220,273,7,42499,45670 +67221,328,6,11547,1557613 +67222,269,9,11902,21830 +67223,60,1,79521,1614607 +67224,198,6,283445,1548091 +67225,273,7,4955,40992 +67226,269,9,868,13086 +67227,5,10,289225,1357880 +67228,373,7,76163,1396794 +67229,234,1,230211,147531 +67230,269,9,10071,21268 +67231,149,6,10539,12067 +67232,203,1,68737,1394760 +67233,387,10,38269,30969 +67234,204,9,11077,1455434 +67235,269,9,10543,1303 +67236,269,9,301804,1305602 +67237,273,7,34977,29967 +67238,413,11,62132,91307 +67239,53,2,424488,983884 +67240,387,10,17770,1569460 +67241,97,7,333663,1408204 +67242,11,6,9514,1163021 +67243,317,10,2924,28902 +67244,234,1,220565,32375 +67245,204,9,6963,19863 +67246,196,7,311324,15893 +67247,234,1,22447,77269 +67248,234,1,134435,34402 +67249,234,1,284154,1347205 +67250,52,10,45679,133437 +67251,77,10,9753,59023 +67252,289,6,10134,1353148 +67253,226,2,921,14917 +67254,53,2,172828,1202357 +67255,179,2,14430,1521686 +67256,387,10,16314,139849 +67257,387,10,1058,15207 +67258,413,11,36236,14270 +67259,187,11,9426,91879 +67260,234,1,39845,18596 +67261,199,3,29233,1347451 +67262,269,9,82650,774208 +67263,286,3,286372,1375920 +67264,273,7,8211,1400 +67265,234,1,59296,20212 +67266,273,7,98355,8968 +67267,387,10,28533,41637 +67268,317,10,121895,20556 +67269,3,5,242097,3351 +67270,234,1,35895,80727 +67271,317,10,167410,1134531 +67272,234,1,8985,113530 +67273,324,3,362579,1518670 +67274,413,11,77825,582564 +67275,387,10,88288,65481 +67276,52,10,90799,40054 +67277,328,6,49009,1442146 +67278,269,9,50759,1660885 +67279,387,10,15497,223803 +67280,64,6,28586,101227 +67281,204,9,274479,60014 +67282,204,9,10865,1552863 +67283,226,2,10929,1523419 +67284,204,9,9532,35797 +67285,317,10,378087,27450 +67286,3,5,297762,94545 +67287,3,5,38437,30258 +67288,234,1,84209,37710 +67289,25,2,177677,1411066 +67290,234,1,11553,64992 +67291,394,7,4887,67330 +67292,317,10,20414,69973 +67293,234,1,238204,1272619 +67294,387,10,59735,68912 +67295,219,11,4547,1713075 +67296,158,2,2924,1772400 +67297,234,1,90110,64950 +67298,148,9,425774,1707973 +67299,175,5,16131,1546619 +67300,234,1,378018,1038001 +67301,245,3,3059,1899133 +67302,387,10,110980,52173 +67303,75,5,15092,20192 +67304,291,6,316042,1457912 +67305,234,1,142085,1199146 +67306,12,10,26505,61594 +67307,368,7,10204,1393351 +67308,105,7,21544,32347 +67309,317,10,414067,1276349 +67310,317,10,18803,84352 +67311,317,10,260001,1302549 +67312,286,3,12446,23462 +67313,306,7,359412,1556407 +67314,60,1,9504,578324 +67315,413,11,7459,4671 +67316,73,7,110416,1354923 +67317,387,10,32600,10517 +67318,3,5,3023,29635 +67319,262,6,8869,1392094 +67320,232,10,52418,1615524 +67321,225,7,413762,1811615 +67322,5,10,31682,12415 +67323,317,10,34977,26159 +67324,317,10,63938,1560886 +67325,234,1,341895,1171340 +67326,155,3,6557,68227 +67327,234,1,210913,143031 +67328,317,10,53417,21308 +67329,317,10,282268,10722 +67330,234,1,39957,59432 +67331,250,11,167073,1125551 +67332,234,1,255388,34751 +67333,5,10,66187,143570 +67334,52,10,64942,39104 +67335,262,6,302828,1426749 +67336,234,1,31439,607 +67337,245,3,38775,121346 +67338,11,6,294272,1401998 +67339,155,3,153,6473 +67340,317,10,32328,100888 +67341,12,10,52520,3952 +67342,179,2,94348,1327146 +67343,104,7,1723,18857 +67344,387,10,8247,7469 +67345,234,1,28597,13581 +67346,234,1,15664,10855 +67347,3,5,173205,529556 +67348,413,11,14782,11776 +67349,45,9,693,1555644 +67350,53,2,6934,23831 +67351,317,10,40220,10620 +67352,387,10,51601,113762 +67353,413,11,100910,22087 +67354,5,10,5590,44217 +67355,127,3,345922,1769802 +67356,234,1,26502,18574 +67357,226,2,11576,1299027 +67358,366,3,59981,1438917 +67359,413,11,15036,19379 +67360,210,9,274857,1815724 +67361,105,7,47459,1354491 +67362,387,10,11137,38419 +67363,273,7,169,37 +67364,53,2,831,12350 +67365,269,9,228290,1799716 +67366,66,11,68822,1620100 +67367,53,2,59408,1590422 +67368,187,11,338189,1510435 +67369,413,11,60269,30461 +67370,53,2,302699,10397 +67371,217,3,10320,1436183 +67372,3,5,22682,6452 +67373,204,9,15036,1643183 +67374,234,1,78174,583257 +67375,175,5,26331,1378839 +67376,333,2,31634,29813 +67377,5,10,93862,1368372 +67378,3,5,408203,1144119 +67379,234,1,344147,36043 +67380,234,1,67272,74734 +67381,234,1,104700,11523 +67382,148,9,74911,7338 +67383,234,1,101783,86783 +67384,3,5,103012,1413412 +67385,52,10,33541,85841 +67386,53,2,39995,1311628 +67387,234,1,83430,53996 +67388,333,2,172908,10014 +67389,234,1,62761,2690 +67390,226,2,18642,1575898 +67391,180,7,10727,1399103 +67392,34,8,14254,1552332 +67393,148,9,32577,1735128 +67394,175,5,11003,1643490 +67395,234,1,228221,1262724 +67396,53,2,50674,19692 +67397,75,5,10929,1391591 +67398,179,2,13616,1808498 +67399,234,1,30946,52159 +67400,208,2,323435,1571060 +67401,232,10,71067,234677 +67402,75,5,6591,45578 +67403,234,1,10050,62514 +67404,413,11,24392,91559 +67405,3,5,76094,1733054 +67406,387,10,60759,30698 +67407,53,2,11321,15573 +67408,203,1,241254,1404197 +67409,72,11,8916,1400536 +67410,87,7,84178,1544312 +67411,387,10,10585,65677 +67412,179,2,307081,1521494 +67413,317,10,48254,67164 +67414,317,10,201643,1183724 +67415,3,5,84178,148739 +67416,200,3,664,1442512 +67417,317,10,13338,89850 +67418,234,1,125673,100036 +67419,269,9,41035,1179040 +67420,234,1,44328,11523 +67421,234,1,23207,89889 +67422,234,1,103732,108446 +67423,317,10,29475,68750 +67424,398,9,189,1386903 +67425,317,10,73501,1513833 +67426,53,2,1165,15734 +67427,415,3,6947,1311507 +67428,234,1,42305,47399 +67429,413,11,17895,70632 +67430,394,7,399790,1354925 +67431,234,1,31919,559314 +67432,160,3,7445,1407228 +67433,387,10,43526,85903 +67434,158,2,204922,1389543 +67435,419,10,33570,110924 +67436,204,9,92496,1635610 +67437,25,2,43395,29801 +67438,15,6,315837,42271 +67439,53,2,21282,936664 +67440,373,7,6557,1394131 +67441,176,3,8915,1399502 +67442,190,7,5,1695796 +67443,105,7,118957,1402728 +67444,53,2,120478,1072871 +67445,53,2,975,11926 +67446,148,9,36737,1468915 +67447,77,10,29204,88923 +67448,387,10,5183,6928 +67449,3,5,352208,1030363 +67450,269,9,1904,11002 +67451,105,7,54396,52794 +67452,269,9,18917,83784 +67453,387,10,53861,1504487 +67454,289,6,132714,115754 +67455,192,5,296524,71127 +67456,236,8,381015,1828341 +67457,147,1,9352,1581745 +67458,234,1,120637,15148 +67459,269,9,11232,5670 +67460,317,10,169314,1151366 +67461,204,9,246860,1423730 +67462,147,1,384737,1825452 +67463,105,7,246917,1528494 +67464,176,3,9902,1600628 +67465,317,10,38743,121139 +67466,387,10,384682,84416 +67467,333,2,1912,28623 +67468,3,5,10568,20136 +67469,317,10,16331,933416 +67470,234,1,25646,94045 +67471,13,9,378441,1797454 +67472,234,1,3115,30561 +67473,3,5,31527,14960 +67474,51,9,186869,1862931 +67475,273,7,118677,1018509 +67476,317,10,72313,168041 +67477,298,5,177677,1399071 +67478,413,11,47459,1600994 +67479,3,5,16993,8217 +67480,148,9,4011,35140 +67481,273,7,11879,942947 +67482,333,2,210092,1193692 +67483,387,10,247218,223693 +67484,234,1,31875,64194 +67485,204,9,42182,2625 +67486,234,1,38164,24279 +67487,387,10,51141,6648 +67488,289,6,98566,1459762 +67489,3,5,125736,1144702 +67490,158,2,79316,1367503 +67491,273,7,320910,1081464 +67492,387,10,57419,213379 +67493,234,1,59231,1776 +67494,113,9,11377,1348789 +67495,197,5,381015,1828343 +67496,317,10,203890,1186219 +67497,104,7,1428,1550832 +67498,413,11,8988,11880 +67499,198,6,332567,1644257 +67500,232,10,36597,115678 +67501,415,3,29239,1585363 +67502,234,1,63486,239443 +67503,317,10,356332,1804241 +67504,373,7,10344,1446199 +67505,209,7,17654,1424637 +67506,387,10,9252,46029 +67507,60,1,163791,1601455 +67508,387,10,3164,30040 +67509,234,1,31532,29595 +67510,203,1,32080,1459591 +67511,204,9,29056,28236 +67512,302,9,339403,1635176 +67513,198,6,44578,1530130 +67514,208,2,82990,1407700 +67515,340,2,262338,1857049 +67516,250,11,15092,1414558 +67517,234,1,216374,109599 +67518,155,3,168259,8167 +67519,3,5,11247,14139 +67520,234,1,142106,169046 +67521,234,1,33003,109910 +67522,3,5,9427,24256 +67523,160,3,197,18889 +67524,148,9,25796,15223 +67525,289,6,132714,150768 +67526,188,8,6947,1573107 +67527,234,1,47882,89924 +67528,317,10,91333,119561 +67529,402,11,80280,507252 +67530,5,10,2687,26976 +67531,239,5,13616,1586587 +67532,105,7,72204,1449419 +67533,203,1,32577,1735126 +67534,234,1,188524,141989 +67535,317,10,101929,1530374 +67536,317,10,23515,230094 +67537,234,1,76788,150690 +67538,317,10,13667,87565 +67539,368,7,33427,110646 +67540,286,3,20968,1640345 +67541,398,9,169298,1333915 +67542,97,7,102382,1227173 +67543,20,2,233639,1792028 +67544,234,1,161179,932629 +67545,269,9,9981,54585 +67546,234,1,375298,125993 +67547,234,1,360606,79656 +67548,273,7,2087,4140 +67549,234,1,12696,74008 +67550,413,11,72733,931443 +67551,387,10,10500,672 +67552,74,5,356752,1536206 +67553,413,11,278334,50082 +67554,328,6,109424,1408381 +67555,387,10,18776,844 +67556,317,10,26962,3893 +67557,269,9,220,2763 +67558,234,1,33673,2087 +67559,77,10,3780,5026 +67560,180,7,57866,1099252 +67561,234,1,55776,116158 +67562,53,2,353686,1314152 +67563,53,2,209401,1466672 +67564,209,7,621,8888 +67565,387,10,62713,303707 +67566,53,2,10077,20079 +67567,148,9,664,2529 +67568,387,10,128437,562714 +67569,415,3,52728,111970 +67570,204,9,18682,10604 +67571,179,2,67748,1319163 +67572,337,2,13056,79185 +67573,234,1,209209,42 +67574,234,1,167424,4645 +67575,269,9,26693,1178999 +67576,317,10,278738,1090027 +67577,262,6,19995,1401796 +67578,333,2,86472,1766024 +67579,415,3,210047,1293003 +67580,234,1,38684,87257 +67581,413,11,34482,18387 +67582,411,9,334074,1337394 +67583,317,10,199647,1179832 +67584,148,9,46982,1368949 +67585,99,3,74777,583471 +67586,143,7,284289,1388613 +67587,204,9,104427,11036 +67588,273,7,53472,549350 +67589,302,9,176,1817616 +67590,373,7,186869,1378828 +67591,286,3,362045,89151 +67592,53,2,332079,10153 +67593,269,9,3513,32351 +67594,45,9,7551,1526466 +67595,75,5,82,1409831 +67596,413,11,82679,111456 +67597,398,9,2259,5996 +67598,234,1,460870,1829916 +67599,75,5,298584,1169529 +67600,53,2,2135,2530 +67601,273,7,1694,19711 +67602,234,1,40978,135616 +67603,234,1,7340,1150 +67604,203,1,25941,1385884 +67605,317,10,226354,1080286 +67606,53,2,34231,1460033 +67607,3,5,85009,1043953 +67608,273,7,74,491 +67609,204,9,194853,1063555 +67610,53,2,64678,60110 +67611,158,2,46738,1384392 +67612,317,10,22471,73088 +67613,3,5,37672,10005 +67614,234,1,59197,81297 +67615,3,5,71329,1281231 +67616,360,3,45273,1404814 +67617,406,6,744,1463182 +67618,333,2,36375,1367963 +67619,413,11,196235,1031763 +67620,204,9,84708,16753 +67621,213,10,36373,157 +67622,373,7,20648,1419659 +67623,327,7,19101,1050930 +67624,53,2,339419,1193620 +67625,179,2,132363,77917 +67626,333,2,347096,1413833 +67627,53,2,59189,1475766 +67628,269,9,10921,136738 +67629,317,10,177902,1157603 +67630,75,5,55534,1577967 +67631,333,2,37581,4352 +67632,289,6,291270,1454750 +67633,317,10,13411,37850 +67634,234,1,352960,1383654 +67635,245,3,148284,1666864 +67636,182,8,293167,1437304 +67637,52,10,18783,3354 +67638,317,10,203780,94375 +67639,52,10,82237,1279068 +67640,234,1,43131,122969 +67641,373,7,16996,9409 +67642,22,9,7326,1457403 +67643,317,10,319910,99710 +67644,234,1,48502,140598 +67645,273,7,218772,1203509 +67646,52,10,83223,45672 +67647,273,7,38761,232187 +67648,317,10,17895,1022600 +67649,273,7,18493,48069 +67650,234,1,11979,28741 +67651,3,5,62855,1307397 +67652,262,6,173153,16499 +67653,204,9,12622,1132471 +67654,413,11,82079,1460295 +67655,327,7,373397,1885111 +67656,20,2,48231,1317048 +67657,179,2,5638,81532 +67658,273,7,269494,1452558 +67659,113,9,32331,41081 +67660,273,7,270383,1431044 +67661,203,1,51209,1340919 +67662,160,3,40807,197930 +67663,373,7,9835,1303184 +67664,413,11,136799,1546437 +67665,127,3,384737,1825881 +67666,317,10,250066,25009 +67667,196,7,18,1074103 +67668,77,10,53860,149118 +67669,394,7,46286,957840 +67670,105,7,277967,65382 +67671,317,10,97035,1090026 +67672,317,10,328692,144196 +67673,234,1,364810,1593465 +67674,77,10,5638,44547 +67675,371,3,130948,1298946 +67676,196,7,1950,1368866 +67677,387,10,137182,239672 +67678,72,11,293167,1659165 +67679,387,10,43354,5735 +67680,234,1,12783,73460 +67681,52,10,10829,26479 +67682,333,2,39979,32087 +67683,204,9,20357,1465633 +67684,317,10,14539,126805 +67685,317,10,294819,123099 +67686,234,1,15387,135678 +67687,102,3,9882,1406053 +67688,234,1,9953,60860 +67689,317,10,128043,85637 +67690,317,10,27503,29965 +67691,235,5,16342,589763 +67692,273,7,16417,1320525 +67693,75,5,2786,1539840 +67694,266,3,1579,42030 +67695,327,7,199155,11912 +67696,204,9,246655,1712626 +67697,317,10,29907,141488 +67698,413,11,185460,1086763 +67699,234,1,9958,60962 +67700,3,5,42093,1875465 +67701,3,5,12584,792 +67702,74,5,194,1551962 +67703,234,1,191476,1444780 +67704,317,10,87936,120925 +67705,234,1,254047,22230 +67706,234,1,100110,58245 +67707,269,9,4413,9178 +67708,53,2,4592,28041 +67709,273,7,31805,26026 +67710,327,7,362579,1388613 +67711,52,10,21955,90661 +67712,87,7,336011,1641322 +67713,413,11,9785,10852 +67714,373,7,102632,1680332 +67715,273,7,316654,223854 +67716,413,11,19621,294 +67717,3,5,37311,3351 +67718,143,7,110972,1079984 +67719,269,9,127560,75942 +67720,46,5,186869,1862948 +67721,127,3,72105,1228835 +67722,127,3,40807,1235815 +67723,234,1,62838,1201 +67724,57,2,266856,1401126 +67725,234,1,136921,1106516 +67726,413,11,246917,104367 +67727,317,10,38546,120678 +67728,209,7,10391,1339459 +67729,236,8,8619,1619097 +67730,127,3,186869,9567 +67731,176,3,9358,1399054 +67732,289,6,69103,139539 +67733,53,2,16075,20424 +67734,234,1,19350,105746 +67735,5,10,76115,14474 +67736,387,10,68646,107639 +67737,286,3,178755,1868 +67738,234,1,29938,105287 +67739,77,10,15189,33255 +67740,53,2,1999,17227 +67741,226,2,64807,1332188 +67742,234,1,34100,111869 +67743,52,10,2160,7506 +67744,387,10,172385,66962 +67745,148,9,1259,36696 +67746,413,11,230179,1504424 +67747,188,8,12103,1625928 +67748,332,8,809,1508441 +67749,148,9,2757,5957 +67750,413,11,1917,17387 +67751,141,7,38356,68016 +67752,113,9,13380,1441685 +67753,234,1,257912,182690 +67754,143,7,276906,1331183 +67755,269,9,26514,1318146 +67756,52,10,10915,4986 +67757,327,7,76010,1193428 +67758,273,7,2397,24514 +67759,317,10,31304,45791 +67760,234,1,104172,1384087 +67761,127,3,223551,1065286 +67762,333,2,2965,29066 +67763,273,7,23853,1070156 +67764,269,9,3104,30139 +67765,52,10,53949,21870 +67766,387,10,37100,76410 +67767,234,1,34326,31074 +67768,289,6,149870,1208173 +67769,317,10,60281,30715 +67770,180,7,105509,1682632 +67771,78,3,109439,1738113 +67772,234,1,74035,1486390 +67773,328,6,294272,1400078 +67774,387,10,39013,961347 +67775,234,1,360784,1179419 +67776,234,1,224885,158231 +67777,3,5,12085,1527 +67778,234,1,166255,76813 +67779,204,9,8292,17636 +67780,287,3,298584,1619746 +67781,5,10,51426,20121 +67782,287,3,79316,1314063 +67783,10,3,153,1676656 +67784,148,9,38554,11413 +67785,413,11,954,10766 +67786,269,9,211088,1314 +67787,333,2,655,1603109 +67788,333,2,48231,1643418 +67789,166,9,378018,1762253 +67790,413,11,26405,79134 +67791,3,5,875,14569 +67792,413,11,87293,31127 +67793,208,2,23048,1316504 +67794,5,10,15943,31017 +67795,317,10,25653,1188 +67796,314,2,773,1458883 +67797,262,6,76757,1379989 +67798,62,3,11377,1399973 +67799,273,7,24442,30104 +67800,244,3,79593,1230753 +67801,60,1,266373,1539050 +67802,291,6,336882,1635802 +67803,250,11,277713,1122437 +67804,373,7,83,1559636 +67805,234,1,35304,111343 +67806,387,10,3941,34171 +67807,172,3,5,1877415 +67808,234,1,58251,227564 +67809,3,5,10137,3113 +67810,234,1,74465,11649 +67811,12,10,10003,133223 +67812,234,1,8388,4610 +67813,387,10,56969,225295 +67814,413,11,690,10350 +67815,291,6,44591,3484 +67816,373,7,72733,1095119 +67817,5,10,121674,3557 +67818,387,10,127257,584335 +67819,234,1,221981,44683 +67820,32,8,435,1574652 +67821,75,5,10529,1399513 +67822,72,11,14254,1429252 +67823,141,7,14,1549209 +67824,239,5,435,1574635 +67825,387,10,21250,106851 +67826,360,3,29151,208238 +67827,234,1,206390,8741 +67828,317,10,37686,15344 +67829,3,5,2075,10765 +67830,92,7,39979,1625836 +67831,234,1,36236,25317 +67832,250,11,373546,1869460 +67833,147,1,378441,1797415 +67834,190,7,11370,1581166 +67835,5,10,31945,3083 +67836,317,10,63340,80610 +67837,143,7,413882,1735102 +67838,273,7,25953,120328 +67839,317,10,107916,224870 +67840,3,5,346672,8677 +67841,234,1,30624,19606 +67842,413,11,166,1663 +67843,75,5,5289,1409743 +67844,5,10,43525,146777 +67845,234,1,386743,1135153 +67846,64,6,82703,928661 +67847,123,3,9312,57257 +67848,286,3,33315,110348 +67849,317,10,33623,17627 +67850,75,5,22803,91115 +67851,148,9,9882,4148 +67852,234,1,302465,1408873 +67853,289,6,118794,126421 +67854,301,5,27814,21118 +67855,166,9,1579,1400336 +67856,189,3,70981,1388881 +67857,97,7,118957,1391525 +67858,53,2,18725,65935 +67859,52,10,110412,1364494 +67860,273,7,4809,5467 +67861,413,11,322785,71303 +67862,182,8,62728,1395731 +67863,75,5,69668,1399927 +67864,262,6,302828,1221442 +67865,46,5,11377,1744852 +67866,317,10,21765,94292 +67867,87,7,15414,1532595 +67868,269,9,186971,1174350 +67869,187,11,76203,1393442 +67870,72,11,10395,1457666 +67871,113,9,10657,22061 +67872,413,11,10586,17164 +67873,209,7,168676,1302748 +67874,317,10,55731,5143 +67875,346,3,14,1401117 +67876,234,1,15325,78113 +67877,234,1,78802,2352 +67878,204,9,284052,1326458 +67879,333,2,29372,32188 +67880,249,7,49009,1162866 +67881,250,11,291413,1746610 +67882,182,8,356752,1841571 +67883,317,10,55663,178993 +67884,182,8,379019,1564051 +67885,273,7,24739,2214 +67886,196,7,16996,1404217 +67887,387,10,7237,37591 +67888,234,1,352208,17087 +67889,317,10,42309,1301380 +67890,387,10,286595,19985 +67891,155,3,194,123827 +67892,187,11,10491,1406189 +67893,53,2,312831,1168764 +67894,317,10,65134,193588 +67895,250,11,69668,1412722 +67896,3,5,30289,88134 +67897,72,11,12103,1625926 +67898,234,1,43346,107454 +67899,234,1,16313,111481 +67900,234,1,42402,6448 +67901,273,7,43089,58438 +67902,148,9,210047,1292999 +67903,291,6,194,1551979 +67904,234,1,46729,1375378 +67905,273,7,40087,1646185 +67906,3,5,2172,552320 +67907,166,9,188927,1621492 +67908,317,10,199647,1179823 +67909,3,5,31417,1758 +67910,3,5,42684,1127474 +67911,5,10,46326,135964 +67912,3,5,413882,55073 +67913,232,10,180644,1577343 +67914,113,9,3484,9062 +67915,175,5,2503,1406842 +67916,3,5,81522,5556 +67917,143,7,10070,1063962 +67918,413,11,31347,104716 +67919,53,2,100910,4350 +67920,269,9,34084,1262171 +67921,52,10,19423,146846 +67922,234,1,9591,31 +67923,3,5,6978,1060 +67924,179,2,132363,1333982 +67925,175,5,2976,1389139 +67926,148,9,189,1401125 +67927,105,7,166666,708 +67928,204,9,121674,983309 +67929,387,10,43828,105570 +67930,204,9,10692,1074839 +67931,204,9,272878,1521330 +67932,52,10,73430,149016 +67933,148,9,354287,1327762 +67934,234,1,17401,81779 +67935,412,9,2567,1739542 +67936,176,3,329865,1626988 +67937,182,8,427680,1758560 +67938,333,2,2577,26196 +67939,398,9,126889,1634555 +67940,175,5,362057,1601196 +67941,3,5,166886,986472 +67942,234,1,94009,8500 +67943,317,10,16866,1158156 +67944,286,3,83995,3454 +67945,3,5,95136,43529 +67946,317,10,382501,107730 +67947,273,7,393445,71273 +67948,317,10,90762,225703 +67949,273,7,43327,8619 +67950,373,7,408616,1338221 +67951,75,5,7454,1407670 +67952,180,7,1687,18655 +67953,180,7,75363,960844 +67954,413,11,106887,1435515 +67955,317,10,68716,200376 +67956,87,7,5,6940 +67957,1,7,9475,65276 +67958,127,3,76094,1209958 +67959,148,9,51250,1721873 +67960,158,2,145135,1417884 +67961,269,9,15143,1822892 +67962,413,11,92389,50976 +67963,179,2,354859,1782429 +67964,277,3,205864,1603893 +67965,415,3,606,10646 +67966,387,10,12540,72724 +67967,262,6,11024,1644532 +67968,387,10,197177,1176843 +67969,387,10,313628,1456792 +67970,10,3,8470,1598742 +67971,158,2,127372,1317647 +67972,273,7,69165,1473360 +67973,301,5,22076,1398186 +67974,262,6,9928,1805195 +67975,317,10,366631,43426 +67976,234,1,142150,84736 +67977,327,7,755,554888 +67978,273,7,118640,50632 +67979,317,10,64972,74036 +67980,13,1,378441,1797481 +67981,5,10,53693,1327840 +67982,317,10,341490,566678 +67983,413,11,25695,131388 +67984,234,1,69310,134026 +67985,234,1,96147,90454 +67986,269,9,24559,369 +67987,250,11,324670,1401770 +67988,52,10,320910,1118774 +67989,387,10,23857,227238 +67990,3,5,51823,115091 +67991,345,7,72545,1376902 +67992,333,2,28437,30843 +67993,387,10,24624,58767 +67994,3,5,9252,3768 +67995,105,7,63281,1561954 +67996,166,9,8470,1389000 +67997,317,10,75001,573778 +67998,328,6,354859,1869363 +67999,413,11,27036,67349 +68000,53,2,293863,12205 +68001,387,10,25667,94063 +68002,387,10,31262,85637 +68003,287,3,16997,1583182 +68004,387,10,183825,344185 +68005,140,9,188927,1357046 +68006,102,3,4413,1406899 +68007,234,1,19255,39 +68008,269,9,15440,1336909 +68009,333,2,19101,1535429 +68010,238,7,20242,1404903 +68011,394,7,201085,11174 +68012,148,9,55694,1293128 +68013,360,3,1578,1380036 +68014,45,9,6963,1414993 +68015,286,3,130957,1092488 +68016,53,2,27599,150839 +68017,66,11,29263,69317 +68018,105,7,287628,1707980 +68019,204,9,31385,174108 +68020,52,10,24749,199542 +68021,234,1,94555,1002030 +68022,141,7,169,44813 +68023,234,1,13280,62658 +68024,387,10,11509,8844 +68025,204,9,41516,1110377 +68026,208,2,10733,1323090 +68027,273,7,44718,22680 +68028,3,5,2567,149 +68029,413,11,142145,1741915 +68030,46,5,10727,1755585 +68031,3,5,20123,52026 +68032,286,3,63578,966545 +68033,3,5,14979,11506 +68034,148,9,24363,1374609 +68035,387,10,27144,97232 +68036,3,5,197849,1037247 +68037,97,7,49009,1394858 +68038,373,7,13380,1452713 +68039,160,3,72431,1404539 +68040,269,9,373546,1193617 +68041,234,1,9542,57895 +68042,52,10,277355,1413094 +68043,289,6,9514,1642559 +68044,234,1,22998,111492 +68045,328,6,265208,1336715 +68046,387,10,198795,987417 +68047,387,10,5998,68 +68048,234,1,168819,1044803 +68049,234,1,64499,82337 +68050,87,7,384737,567462 +68051,58,2,5924,1634817 +68052,234,1,8128,53859 +68053,3,5,22257,87240 +68054,234,1,94874,163641 +68055,3,5,9885,60002 +68056,413,11,118121,31931 +68057,204,9,433,3255 +68058,158,2,6068,1536379 +68059,317,10,333103,1371390 +68060,333,2,302828,1534386 +68061,175,5,323426,1642005 +68062,3,5,14823,1147899 +68063,270,9,2666,1392675 +68064,226,2,13777,75294 +68065,289,6,10539,587314 +68066,234,1,53223,550482 +68067,413,11,210047,947095 +68068,301,5,167,1431630 +68069,5,10,20481,31211 +68070,413,11,16442,107683 +68071,317,10,289923,76541 +68072,99,3,102668,1031768 +68073,317,10,26116,16644 +68074,360,9,9819,1333153 +68075,273,7,9425,49285 +68076,257,3,11351,1597198 +68077,387,10,236324,84314 +68078,105,7,299165,1170679 +68079,105,7,62732,1608318 +68080,112,3,81589,1041667 +68081,234,1,18374,1081497 +68082,387,10,180418,212674 +68083,105,7,291413,40825 +68084,360,3,9966,78495 +68085,234,1,45197,1387845 +68086,53,2,17015,13009 +68087,5,10,20766,51736 +68088,53,2,422,1536620 +68089,269,9,1911,7203 +68090,148,9,22744,8508 +68091,204,9,10863,10183 +68092,413,11,18638,34400 +68093,96,2,283995,1755689 +68094,234,1,85673,105084 +68095,196,7,45019,9418 +68096,317,10,58985,3110 +68097,242,9,134475,9062 +68098,376,10,9543,59621 +68099,269,9,26180,6628 +68100,203,1,73835,1606273 +68101,105,7,65771,1446590 +68102,413,11,180576,1732 +68103,234,1,1717,2260 +68104,226,2,17978,1433505 +68105,387,10,30624,106602 +68106,221,3,403,1455296 +68107,387,10,12636,50652 +68108,273,7,15497,8503 +68109,105,7,18093,46863 +68110,328,6,435,1392103 +68111,97,7,9785,1371064 +68112,204,9,18919,83784 +68113,387,10,120478,97827 +68114,203,1,80389,1194272 +68115,234,1,270886,442985 +68116,270,9,31947,1394780 +68117,182,8,10754,1609513 +68118,234,1,8981,56474 +68119,198,6,334074,1640709 +68120,3,5,398786,1182697 +68121,387,10,29444,1526 +68122,301,5,76203,1393449 +68123,5,10,9540,57882 +68124,12,10,145963,20007 +68125,3,5,32082,14536 +68126,3,5,14703,11968 +68127,3,5,32166,2864 +68128,373,7,27265,1341854 +68129,317,10,429792,1099718 +68130,291,6,72545,9621 +68131,413,11,4762,2309 +68132,60,1,351211,1652034 +68133,305,9,356752,1841590 +68134,105,7,104528,1318389 +68135,234,1,8336,54563 +68136,373,7,3682,89426 +68137,175,5,2323,1324652 +68138,3,5,11248,11958 +68139,37,3,214756,1457936 +68140,105,7,332286,112778 +68141,289,6,60935,1463785 +68142,234,1,80220,77005 +68143,148,9,329865,6053 +68144,273,7,23196,1102479 +68145,234,1,188640,1770592 +68146,387,10,37308,109400 +68147,132,2,29151,1526851 +68148,269,9,21801,521806 +68149,287,3,56906,23493 +68150,3,5,241593,1092654 +68151,196,7,44754,1337465 +68152,72,11,228970,1867541 +68153,269,9,201,2083 +68154,53,2,2503,19971 +68155,72,11,1991,1420165 +68156,234,1,58189,89193 +68157,141,7,4147,1549209 +68158,262,6,11618,7727 +68159,52,10,13986,35771 +68160,209,7,69,11308 +68161,105,7,7299,122 +68162,399,9,15653,1767053 +68163,387,10,3145,30759 +68164,203,1,1903,1341865 +68165,105,7,378485,1742496 +68166,53,2,11517,15524 +68167,263,11,379,1228 +68168,160,3,13483,34540 +68169,4,6,337339,1907214 +68170,210,9,263115,1821930 +68171,317,10,393732,1615557 +68172,35,10,92321,992868 +68173,413,11,16820,16594 +68174,273,7,33740,1938 +68175,3,5,37719,1498 +68176,234,1,30934,107333 +68177,234,1,88564,38131 +68178,277,3,179847,1544868 +68179,132,2,64807,1527917 +68180,11,6,19995,1401809 +68181,277,3,13792,75561 +68182,317,10,62392,70495 +68183,3,5,213635,10079 +68184,104,7,9716,1535541 +68185,96,2,263115,1484989 +68186,20,2,46738,1452223 +68187,52,10,118059,29962 +68188,3,5,125736,1077076 +68189,333,2,26636,1896278 +68190,317,10,9613,58185 +68191,53,2,88036,15524 +68192,3,5,8410,55740 +68193,53,2,436,1399150 +68194,203,1,15476,1392978 +68195,226,2,9966,1458584 +68196,317,10,110115,1048402 +68197,269,9,129,19597 +68198,204,9,43316,12346 +68199,60,1,36245,1319688 +68200,3,5,53654,5261 +68201,234,1,49847,142951 +68202,3,5,70351,56988 +68203,317,10,38310,106345 +68204,105,7,341895,1171341 +68205,387,10,242382,10147 +68206,317,10,270081,82714 +68207,325,5,27917,107456 +68208,234,1,84994,45489 +68209,413,11,26180,1721 +68210,317,10,65367,101542 +68211,317,10,16440,15217 +68212,148,9,293660,1441806 +68213,196,7,201085,1414178 +68214,317,10,25655,1025715 +68215,53,2,10047,19058 +68216,234,1,252520,101361 +68217,3,5,11521,69717 +68218,317,10,149170,58728 +68219,204,9,3933,34897 +68220,122,8,8470,1598761 +68221,160,3,9914,134454 +68222,413,11,22398,1031664 +68223,58,2,62728,1896008 +68224,373,7,298584,1619741 +68225,333,2,42418,1445868 +68226,387,10,21566,959879 +68227,387,10,79466,151394 +68228,273,7,169760,1151865 +68229,413,11,27973,4102 +68230,244,3,324670,1460672 +68231,60,1,18783,34357 +68232,226,2,243940,92331 +68233,3,5,2087,17629 +68234,325,5,70667,1448327 +68235,413,11,39867,6900 +68236,187,11,9946,1405232 +68237,219,11,18,1630675 +68238,413,11,44641,102445 +68239,317,10,55725,17867 +68240,333,2,165,1358076 +68241,268,7,7299,10630 +68242,234,1,76846,5306 +68243,328,6,58244,1618811 +68244,234,1,63498,588828 +68245,60,1,204994,1586042 +68246,262,6,263115,1721454 +68247,387,10,126319,1064165 +68248,232,10,68202,84437 +68249,234,1,277847,1216399 +68250,317,10,38164,24281 +68251,148,9,260001,1324834 +68252,132,2,373546,1869455 +68253,3,5,1687,14431 +68254,5,10,69717,7755 +68255,234,1,12536,64877 +68256,387,10,12575,21086 +68257,333,2,26514,1465102 +68258,160,3,2721,251203 +68259,273,7,145244,30634 +68260,269,9,17170,23966 +68261,105,7,10440,341386 +68262,234,1,85317,931898 +68263,234,1,22029,19266 +68264,387,10,28169,78021 +68265,234,1,268853,1359001 +68266,239,5,345925,1717840 +68267,165,9,18417,83079 +68268,317,10,18620,172993 +68269,333,2,97910,4128 +68270,105,7,28,1776 +68271,373,7,110972,74811 +68272,277,3,70981,113089 +68273,204,9,46623,10604 +68274,387,10,9585,58083 +68275,234,1,16550,66605 +68276,291,6,330459,6060 +68277,250,11,352327,1427582 +68278,3,5,33015,10522 +68279,317,10,147773,161932 +68280,179,2,13056,1198826 +68281,269,9,9301,11604 +68282,317,10,144229,14834 +68283,234,1,369444,1538884 +68284,273,7,11104,1011224 +68285,317,10,11902,15254 +68286,344,9,5,1877352 +68287,52,10,345922,1480595 +68288,333,2,44129,1410019 +68289,360,3,8869,1429242 +68290,234,1,20650,100036 +68291,234,1,297745,129059 +68292,413,11,87481,74035 +68293,413,11,13792,75554 +68294,187,11,336882,1635806 +68295,53,2,56937,1143763 +68296,317,10,53387,89563 +68297,387,10,47795,15191 +68298,328,6,329440,1396810 +68299,9,3,11618,8166 +68300,203,1,9568,1342074 +68301,148,9,397837,1818590 +68302,127,3,45273,1332245 +68303,28,9,10733,1571715 +68304,234,1,9425,4014 +68305,169,3,241239,1399971 +68306,273,7,13681,66780 +68307,102,3,284289,1538206 +68308,203,1,336890,1435539 +68309,339,2,38269,8342 +68310,415,3,9289,1338491 +68311,3,5,9840,14196 +68312,179,2,12113,1331895 +68313,346,3,9426,1428511 +68314,317,10,21060,87043 +68315,333,2,16921,1401756 +68316,179,2,102382,1347750 +68317,236,8,21786,1412136 +68318,234,1,1369,16566 +68319,53,2,21159,91796 +68320,196,7,256092,1427462 +68321,15,6,127380,8018 +68322,245,3,6947,1389574 +68323,127,3,2898,1099700 +68324,413,11,10219,3190 +68325,286,3,258193,6740 +68326,413,11,25500,6318 +68327,273,7,72460,9217 +68328,317,10,327389,203286 +68329,60,1,308174,1394318 +68330,317,10,181753,49730 +68331,234,1,413452,1371036 +68332,413,11,696,10440 +68333,53,2,45562,999554 +68334,346,3,8988,1398982 +68335,415,3,35253,114361 +68336,3,5,9827,51643 +68337,52,10,31411,122970 +68338,269,9,693,10396 +68339,148,9,52362,1337169 +68340,77,10,153717,38748 +68341,269,9,6687,1129799 +68342,413,11,102444,98753 +68343,53,2,241855,1470704 +68344,273,7,866,22680 +68345,273,7,3933,531 +68346,52,10,365942,289148 +68347,387,10,28452,100808 +68348,105,7,8276,1544434 +68349,317,10,76011,16042 +68350,413,11,256836,1649192 +68351,387,10,36751,116103 +68352,196,7,6973,1407813 +68353,328,6,188927,1638564 +68354,72,11,1950,1439749 +68355,269,9,82684,5167 +68356,234,1,42648,15175 +68357,234,1,269246,34934 +68358,394,7,322922,1443848 +68359,204,9,22744,2763 +68360,244,3,8204,1725893 +68361,317,10,285848,1170863 +68362,250,11,413452,139953 +68363,180,7,48205,19344 +68364,148,9,28176,4058 +68365,387,10,43757,1153746 +68366,387,10,32610,132800 +68367,75,5,76163,1363344 +68368,5,10,248639,27916 +68369,208,2,401164,1619743 +68370,234,1,32825,116326 +68371,349,1,177572,1447503 +68372,234,1,142375,9956 +68373,373,7,274857,1392609 +68374,234,1,11351,56349 +68375,333,2,109439,1208435 +68376,360,3,16442,1417675 +68377,155,3,4982,65605 +68378,415,3,11216,4658 +68379,3,5,63096,96252 +68380,234,1,42499,237402 +68381,413,11,100088,120462 +68382,413,11,74,493 +68383,387,10,11939,24939 +68384,181,7,325039,1544663 +68385,234,1,159667,1154273 +68386,234,1,140595,932222 +68387,53,2,9639,36784 +68388,204,9,4547,11700 +68389,204,9,205584,52370 +68390,234,1,14011,76243 +68391,234,1,53688,141618 +68392,53,2,353979,1200487 +68393,32,8,2924,1803790 +68394,386,5,337339,1357064 +68395,413,11,15560,1459114 +68396,373,7,6977,9619 +68397,301,5,10066,1391731 +68398,387,10,3484,1505 +68399,46,5,118,1855208 +68400,317,10,78572,28615 +68401,415,3,325039,1544660 +68402,413,11,43987,570306 +68403,141,7,34106,1549753 +68404,234,1,66741,131184 +68405,3,5,329865,1046612 +68406,373,7,41733,1377220 +68407,5,10,18917,70647 +68408,287,3,68684,1304293 +68409,317,10,31390,100229 +68410,196,7,10921,1402110 +68411,317,10,35735,114678 +68412,5,10,65002,240199 +68413,394,7,270403,235131 +68414,234,1,90414,87033 +68415,39,3,11618,1765795 +68416,105,7,91217,153 +68417,373,7,655,423441 +68418,180,7,43596,1283529 +68419,387,10,209410,71089 +68420,158,2,272693,1477795 +68421,203,1,4286,1699697 +68422,411,9,1579,1329476 +68423,196,7,298787,1376953 +68424,273,7,43117,40460 +68425,5,10,257444,582039 +68426,182,8,8053,1395902 +68427,53,2,354287,61936 +68428,3,5,10973,41709 +68429,387,10,17464,81889 +68430,97,7,284052,80827 +68431,234,1,75537,10620 +68432,3,5,92989,1158874 +68433,5,10,25738,95269 +68434,413,11,10632,57326 +68435,413,11,42191,127577 +68436,204,9,44875,1111050 +68437,83,2,345918,1418355 +68438,143,7,742,11241 +68439,415,3,214756,1459721 +68440,340,2,72545,1558806 +68441,226,2,9716,1456487 +68442,5,10,84774,70647 +68443,204,9,43821,8506 +68444,413,11,51311,6827 +68445,234,1,26165,105153 +68446,105,7,24927,126152 +68447,3,5,49609,13270 +68448,187,11,258193,1367364 +68449,317,10,94525,213471 +68450,317,10,47459,23359 +68451,75,5,366696,1753564 +68452,52,10,49524,54047 +68453,317,10,281124,30008 +68454,317,10,364379,1300476 +68455,187,11,8204,1204836 +68456,180,7,54563,9959 +68457,333,2,12783,1426312 +68458,273,7,241574,1680375 +68459,239,5,294254,1571518 +68460,413,11,202241,59479 +68461,413,11,1724,8752 +68462,317,10,86118,1341079 +68463,273,7,72279,18836 +68464,333,2,2009,1540856 +68465,113,9,145135,1417870 +68466,234,1,32595,114629 +68467,3,5,30022,103050 +68468,273,7,80304,65245 +68469,234,1,10466,24318 +68470,45,9,11003,1401355 +68471,273,7,54388,98606 +68472,387,10,59296,984466 +68473,75,5,5289,1409741 +68474,317,10,29786,163245 +68475,413,11,382589,3564 +68476,3,5,11329,2950 +68477,3,5,209271,236606 +68478,273,7,4882,39767 +68479,234,1,301334,1369361 +68480,64,6,9882,1215672 +68481,204,9,72710,963843 +68482,317,10,339312,1464979 +68483,234,1,124080,1079379 +68484,53,2,31005,7418 +68485,64,6,383538,1783008 +68486,209,7,14,7538 +68487,148,9,10900,1325195 +68488,148,9,1995,20507 +68489,381,9,145135,1417872 +68490,3,5,34806,40545 +68491,269,9,16083,53637 +68492,234,1,374883,222316 +68493,234,1,445727,1772093 +68494,105,7,189197,947 +68495,317,10,340190,564948 +68496,286,3,362150,1640557 +68497,127,3,11370,1581138 +68498,166,9,3057,1301368 +68499,175,5,14,589974 +68500,234,1,30778,76021 +68501,11,6,22582,1447474 +68502,127,3,817,14197 +68503,3,5,74437,12279 +68504,234,1,10142,1150 +68505,273,7,76996,581056 +68506,160,3,245703,1406839 +68507,413,11,417870,1859048 +68508,105,7,105254,1402725 +68509,75,5,3057,1539807 +68510,45,9,11137,1481830 +68511,328,6,245700,1319487 +68512,203,1,77338,1724200 +68513,273,7,122857,1170242 +68514,286,3,72733,1180432 +68515,204,9,178,903 +68516,387,10,420743,1693045 +68517,143,7,178809,1412585 +68518,317,10,109886,82172 +68519,234,1,11855,10367 +68520,5,10,10590,65708 +68521,53,2,19209,1633183 +68522,234,1,8010,52968 +68523,148,9,30708,7688 +68524,387,10,8194,53935 +68525,148,9,296524,6055 +68526,160,3,2486,1007395 +68527,204,9,122662,571459 +68528,317,10,375170,1596860 +68529,317,10,317144,1412294 +68530,333,2,10145,1405321 +68531,203,1,10204,1740770 +68532,67,10,8204,1725891 +68533,234,1,318184,79759 +68534,52,10,34082,3377 +68535,328,6,1579,1400345 +68536,387,10,63066,116584 +68537,234,1,38310,106345 +68538,360,3,180305,960531 +68539,72,11,223485,1531101 +68540,200,3,159211,1438456 +68541,76,2,1966,1525888 +68542,269,9,35008,958139 +68543,394,7,76757,9349 +68544,182,8,44115,1394722 +68545,317,10,166393,1056317 +68546,273,7,122081,929998 +68547,413,11,27409,1130039 +68548,235,5,329865,25744 +68549,208,2,45273,1332237 +68550,373,7,9438,74976 +68551,286,3,288526,1126411 +68552,3,5,10389,64379 +68553,105,7,18405,960 +68554,234,1,14830,179236 +68555,317,10,38789,79168 +68556,373,7,13954,1398870 +68557,219,11,11547,1403423 +68558,317,10,83540,163998 +68559,234,1,262088,938919 +68560,53,2,4476,8527 +68561,387,10,660,9953 +68562,234,1,6935,51483 +68563,350,6,40466,1412716 +68564,418,11,109451,1460431 +68565,413,11,127493,899 +68566,387,10,375366,549495 +68567,3,5,12205,27794 +68568,5,10,176867,1540882 +68569,234,1,391438,1371169 +68570,317,10,26042,132561 +68571,387,10,42664,115553 +68572,387,10,84735,41550 +68573,273,7,37917,70054 +68574,196,7,638,9426 +68575,419,10,24090,110019 +68576,262,6,338189,1646584 +68577,269,9,12169,1164963 +68578,317,10,231762,1267016 +68579,413,11,887,4102 +68580,269,9,9793,159763 +68581,53,2,59965,15524 +68582,179,2,6947,59533 +68583,269,9,5899,46446 +68584,413,11,48136,2773 +68585,229,6,311324,1447612 +68586,387,10,13834,39925 +68587,52,10,13205,71760 +68588,3,5,373838,1283604 +68589,148,9,43849,9063 +68590,234,1,866,12995 +68591,209,7,10330,1367676 +68592,415,3,345922,1815618 +68593,187,11,8292,1372838 +68594,333,2,70666,1863919 +68595,317,10,45899,1209356 +68596,148,9,38769,8508 +68597,169,3,954,1886659 +68598,273,7,42139,931324 +68599,204,9,11045,1701294 +68600,234,1,14878,26849 +68601,234,1,65891,28236 +68602,234,1,143144,1118343 +68603,286,3,62630,1114476 +68604,387,10,39347,86009 +68605,226,2,11216,1631520 +68606,327,7,102668,1031764 +68607,204,9,76163,67242 +68608,373,7,45019,9409 +68609,317,10,227975,1004714 +68610,287,3,12526,61996 +68611,203,1,21338,1569315 +68612,317,10,64328,52934 +68613,234,1,2757,5953 +68614,3,5,15092,64227 +68615,273,7,29872,1151862 +68616,148,9,16993,118291 +68617,204,9,351365,15410 +68618,234,1,176,2127 +68619,234,1,276220,1330181 +68620,273,7,182899,121115 +68621,53,2,48594,19815 +68622,204,9,1647,29219 +68623,289,6,10344,1400820 +68624,148,9,21866,6925 +68625,317,10,64115,80170 +68626,413,11,157343,107683 +68627,273,7,19958,88117 +68628,286,3,315841,4998 +68629,269,9,8906,4632 +68630,204,9,9464,9546 +68631,53,2,101998,51869 +68632,234,1,42787,101899 +68633,143,7,271714,1638 +68634,301,5,13616,1571112 +68635,413,11,13496,908 +68636,25,2,44578,1098054 +68637,169,3,74,15356 +68638,25,2,9664,1427823 +68639,317,10,76341,1468313 +68640,328,6,7916,1413963 +68641,269,9,93863,1174725 +68642,234,1,277968,4780 +68643,3,5,51371,14411 +68644,105,7,207021,59472 +68645,301,5,15476,1392973 +68646,40,1,2924,1803785 +68647,204,9,336850,583472 +68648,286,3,77079,95657 +68649,317,10,98566,1018751 +68650,104,7,2105,108882 +68651,204,9,17464,35166 +68652,52,10,41552,95527 +68653,387,10,1574,15557 +68654,387,10,47739,80728 +68655,317,10,35197,61573 +68656,204,9,17654,958587 +68657,97,7,127585,1338372 +68658,3,5,18897,17531 +68659,317,10,263341,20801 +68660,113,9,206647,23491 +68661,210,9,10204,1613203 +68662,262,6,262338,1857042 +68663,317,10,39936,146433 +68664,113,9,9425,81731 +68665,234,1,67367,201 +68666,413,11,250638,46326 +68667,317,10,187219,1169205 +68668,105,7,27543,13571 +68669,53,2,16638,1159503 +68670,262,6,311324,1658882 +68671,105,7,170517,1745610 +68672,273,7,53209,1176513 +68673,105,7,13483,1194020 +68674,53,2,52034,223639 +68675,175,5,297762,1824260 +68676,105,7,120172,1147673 +68677,273,7,35895,17667 +68678,234,1,83761,119294 +68679,87,7,274504,1609037 +68680,213,10,33095,17520 +68681,234,1,391004,1178880 +68682,234,1,20678,24173 +68683,53,2,199575,1654528 +68684,269,9,9928,60678 +68685,413,11,140607,15349 +68686,52,10,207699,1308812 +68687,413,11,345775,1587696 +68688,32,8,37958,1453943 +68689,333,2,346672,1721345 +68690,387,10,27351,107941 +68691,226,2,49009,74766 +68692,204,9,97051,1324038 +68693,141,7,15653,38335 +68694,176,3,41213,1777249 +68695,5,10,30778,12415 +68696,398,9,76203,1340093 +68697,234,1,80276,1107021 +68698,277,3,242683,13339 +68699,105,7,27681,1176975 +68700,52,10,143946,1120205 +68701,234,1,39995,107084 +68702,413,11,217775,1591516 +68703,60,1,703,10546 +68704,197,5,354859,1884076 +68705,3,5,134368,7492 +68706,387,10,68097,130933 +68707,387,10,481,6521 +68708,53,2,8467,7418 +68709,387,10,11862,26160 +68710,196,7,38322,1377293 +68711,185,11,9472,1733142 +68712,3,5,186991,1149308 +68713,262,6,251,21548 +68714,317,10,151068,1037667 +68715,373,7,322922,128499 +68716,357,3,9664,1551911 +68717,21,3,39130,14676 +68718,234,1,28974,13848 +68719,317,10,21041,44886 +68720,234,1,635,9168 +68721,289,6,10929,1575771 +68722,53,2,270774,1877782 +68723,53,2,61552,1151731 +68724,413,11,74430,168223 +68725,198,6,17911,1871219 +68726,273,7,312831,1532260 +68727,380,3,263115,1821921 +68728,200,3,17654,1401794 +68729,53,2,8282,20573 +68730,226,2,219233,1660930 +68731,234,1,67977,83224 +68732,273,7,18912,137534 +68733,179,2,10400,1435605 +68734,234,1,54022,1151553 +68735,234,1,107073,112133 +68736,234,1,34512,82234 +68737,3,5,94674,69217 +68738,234,1,46830,167403 +68739,3,5,124470,572035 +68740,413,11,25507,68417 +68741,413,11,157847,1023495 +68742,413,11,9540,310 +68743,286,3,96238,1069800 +68744,387,10,37311,57625 +68745,387,10,299715,239637 +68746,204,9,156981,1575335 +68747,234,1,285685,1350674 +68748,413,11,10890,21781 +68749,387,10,10972,37948 +68750,45,9,93856,1335144 +68751,387,10,76651,25162 +68752,160,3,176,1389621 +68753,234,1,83501,240499 +68754,75,5,145135,1764804 +68755,105,7,66247,5288 +68756,3,5,24936,3079 +68757,196,7,10320,1335122 +68758,234,1,215999,18844 +68759,5,10,45512,566557 +68760,105,7,25078,119023 +68761,317,10,73827,1413284 +68762,317,10,193650,1232811 +68763,349,1,88018,123192 +68764,175,5,18273,1545299 +68765,204,9,703,10441 +68766,204,9,229610,17763 +68767,175,5,270851,1321938 +68768,317,10,28131,17281 +68769,287,3,765,931858 +68770,234,1,338100,1066705 +68771,234,1,237303,1271890 +68772,187,11,10950,1836311 +68773,360,3,28893,1452317 +68774,269,9,8915,4907 +68775,262,6,82448,927994 +68776,317,10,77825,53218 +68777,333,2,3574,33001 +68778,208,2,11096,15845 +68779,192,5,3597,1397885 +68780,234,1,166886,1148528 +68781,289,6,28118,1455621 +68782,52,10,42182,16830 +68783,387,10,11531,26849 +68784,175,5,74,1546869 +68785,175,5,10391,1404850 +68786,273,7,23169,55177 +68787,57,2,1165,1411073 +68788,179,2,283995,1319825 +68789,204,9,961,10523 +68790,221,3,11370,1581140 +68791,132,2,75595,1575229 +68792,381,9,284289,1538208 +68793,87,7,68629,1526823 +68794,53,2,17007,62643 +68795,296,3,857,1662328 +68796,413,11,318224,56072 +68797,64,6,52454,1550358 +68798,262,6,354287,1376803 +68799,204,9,13834,75874 +68800,234,1,77958,570242 +68801,148,9,13542,1300834 +68802,234,1,21250,1020854 +68803,234,1,36489,44763 +68804,387,10,10238,6648 +68805,360,3,13777,12252 +68806,3,5,327383,63975 +68807,204,9,168676,1363346 +68808,25,2,17015,1840478 +68809,273,7,52437,2916 +68810,413,11,10274,64666 +68811,203,1,22881,1458202 +68812,268,7,127521,1542740 +68813,317,10,53399,1153096 +68814,413,11,40925,39982 +68815,229,6,140607,1567986 +68816,317,10,131822,1093734 +68817,373,7,9835,1345595 +68818,317,10,28592,73626 +68819,317,10,6341,51346 +68820,317,10,114348,1170213 +68821,3,5,5279,8846 +68822,53,2,100110,1314882 +68823,52,10,48791,1466329 +68824,317,10,105503,1075466 +68825,273,7,2516,3535 +68826,234,1,606,2226 +68827,301,5,26390,1407201 +68828,76,2,245700,1428470 +68829,413,11,62567,1067439 +68830,387,10,83119,115553 +68831,387,10,259694,69124 +68832,77,10,182899,13569 +68833,387,10,11876,70805 +68834,234,1,388243,1592195 +68835,204,9,226188,1328205 +68836,52,10,9928,23766 +68837,317,10,159128,67580 +68838,3,5,8471,23543 +68839,413,11,10622,46326 +68840,269,9,422005,1612439 +68841,105,7,177566,128763 +68842,148,9,60488,12348 +68843,148,9,108222,8508 +68844,349,1,15653,1767038 +68845,234,1,43209,57207 +68846,75,5,177677,1189807 +68847,269,9,325173,1601636 +68848,72,11,6933,1427584 +68849,234,1,18902,101515 +68850,269,9,34231,1460022 +68851,3,5,19209,2286 +68852,413,11,83761,119294 +68853,387,10,3580,33045 +68854,413,11,31947,31931 +68855,37,3,35,1460514 +68856,234,1,32088,9577 +68857,148,9,28384,23966 +68858,234,1,2731,27614 +68859,97,7,338189,1650728 +68860,87,7,315664,1544338 +68861,317,10,24914,9339 +68862,317,10,379959,1416383 +68863,148,9,28730,227198 +68864,234,1,236808,1271728 +68865,317,10,223485,1062805 +68866,317,10,55433,222352 +68867,234,1,313676,1403970 +68868,317,10,124202,1390010 +68869,269,9,86254,1391667 +68870,394,7,311291,1338281 +68871,413,11,265180,1642499 +68872,234,1,110392,1049374 +68873,387,10,61541,29618 +68874,387,10,17978,16188 +68875,219,11,703,1421301 +68876,75,5,209112,1394974 +68877,387,10,10269,10400 +68878,317,10,382598,232898 +68879,204,9,112083,32999 +68880,317,10,209263,56539 +68881,360,9,705,1338850 +68882,251,6,9472,1567906 +68883,99,3,664,17649 +68884,387,10,72847,111435 +68885,282,3,11370,1798036 +68886,413,11,21148,58715 +68887,387,10,79645,153183 +68888,53,2,14181,1516265 +68889,412,9,857,1662300 +68890,190,7,52661,1745141 +68891,234,1,101320,1212587 +68892,234,1,85602,127333 +68893,269,9,35200,12291 +68894,234,1,164504,37360 +68895,273,7,7229,23306 +68896,333,2,58060,1630074 +68897,317,10,157919,87091 +68898,317,10,82781,7661 +68899,221,3,1647,1752705 +68900,413,11,11577,1918 +68901,381,9,544,1780207 +68902,419,10,50942,63904 +68903,181,7,63273,1056734 +68904,234,1,414547,1675555 +68905,394,7,13654,1415618 +68906,387,10,5917,46600 +68907,413,11,11472,1721 +68908,317,10,32233,58052 +68909,289,6,109451,1455621 +68910,203,1,57419,1486525 +68911,148,9,16090,7687 +68912,317,10,461088,1005696 +68913,234,1,106155,38585 +68914,317,10,27414,97711 +68915,413,11,8088,413 +68916,234,1,24078,55152 +68917,269,9,2015,20734 +68918,269,9,11171,53637 +68919,3,5,29236,103364 +68920,20,2,274857,1545023 +68921,413,11,47878,16534 +68922,234,1,85610,145837 +68923,180,7,106020,1588546 +68924,3,5,696,3097 +68925,204,9,44115,1324018 +68926,349,1,18890,1447569 +68927,175,5,8619,1390535 +68928,226,2,2978,14714 +68929,105,7,25132,999284 +68930,72,11,293660,1580853 +68931,317,10,179812,1162321 +68932,236,8,10921,1402122 +68933,234,1,41994,61440 +68934,3,5,32068,57550 +68935,387,10,61985,89748 +68936,387,10,118953,85996 +68937,3,5,175334,1313101 +68938,234,1,176321,28996 +68939,413,11,21380,1375778 +68940,350,6,924,1652229 +68941,234,1,47504,20561 +68942,232,10,29259,3582 +68943,317,10,60662,330960 +68944,105,7,30082,53712 +68945,286,3,43771,545097 +68946,234,1,232739,1144937 +68947,3,5,4011,11371 +68948,45,9,271404,1764794 +68949,127,3,10733,6897 +68950,226,2,151431,1141712 +68951,53,2,10476,1207434 +68952,105,7,116463,589185 +68953,387,10,116312,37590 +68954,234,1,8144,54022 +68955,387,10,1976,84642 +68956,148,9,25132,61524 +68957,204,9,271404,1764790 +68958,175,5,241239,1468586 +68959,317,10,84284,84369 +68960,204,9,10011,61993 +68961,97,7,10491,117242 +68962,317,10,118293,549321 +68963,232,10,34127,141061 +68964,413,11,159211,1175958 +68965,415,3,14430,1325807 +68966,105,7,61035,1446127 +68967,3,5,241258,963861 +68968,189,3,2105,1552186 +68969,132,2,196359,1420642 +68970,105,7,32323,957757 +68971,277,7,210653,1511652 +68972,289,6,10539,1205975 +68973,234,1,195468,45791 +68974,232,10,87894,1362406 +68975,239,5,293660,1580847 +68976,53,2,511,7101 +68977,75,5,14145,1416988 +68978,387,10,5172,41887 +68979,204,9,121230,8623 +68980,360,3,298584,1619742 +68981,234,1,154442,33727 +68982,105,7,94480,3350 +68983,387,10,87514,71238 +68984,148,9,126889,6055 +68985,234,1,52555,544569 +68986,234,1,244534,40863 +68987,74,5,924,1523591 +68988,273,7,147903,4681 +68989,317,10,24767,128405 +68990,413,11,31380,1337239 +68991,75,5,337339,1725760 +68992,60,1,2323,35664 +68993,234,1,329712,7288 +68994,387,10,183171,1364554 +68995,343,3,66756,1109778 +68996,317,10,140894,43708 +68997,148,9,54022,1521759 +68998,387,10,10622,46318 +68999,413,11,325712,1647589 +69000,317,10,86241,72427 +69001,413,11,193893,1264 +69002,196,7,44129,1419254 +69003,3,5,17236,1388432 +69004,413,11,2071,21244 +69005,317,10,84154,119589 +69006,317,10,3682,33541 +69007,158,2,354859,16987 +69008,179,2,76163,85515 +69009,53,2,44754,33439 +69010,413,11,16358,1918 +69011,387,10,208436,1062842 +69012,273,7,209263,55177 +69013,46,5,33364,1637476 +69014,273,7,14,153 +69015,13,9,339403,1635181 +69016,301,5,163,1403479 +69017,387,10,227717,231227 +69018,234,1,121006,96255 +69019,234,1,80394,1060142 +69020,387,10,5060,40959 +69021,387,10,31899,62756 +69022,327,7,212530,231461 +69023,269,9,356296,1618145 +69024,53,2,394645,1432260 +69025,12,10,35200,544594 +69026,413,11,9843,45846 +69027,52,10,45987,108013 +69028,66,11,9836,1281965 +69029,250,11,145135,1411540 +69030,413,11,407,5136 +69031,234,1,12144,40345 +69032,387,10,33117,1090265 +69033,234,1,278738,1335495 +69034,273,7,128946,569515 +69035,387,10,12085,48137 +69036,317,10,37984,135830 +69037,419,10,49007,56965 +69038,85,10,48949,1184796 +69039,228,2,379019,1780179 +69040,189,3,9423,1389599 +69041,66,11,209112,1781336 +69042,317,10,46920,59913 +69043,53,2,8049,7297 +69044,148,9,19819,4712 +69045,317,10,92389,138243 +69046,158,2,1073,1792647 +69047,53,2,154972,1106969 +69048,234,1,42473,9108 +69049,5,10,37311,18799 +69050,327,7,41963,122084 +69051,234,1,25941,94918 +69052,269,9,68629,60872 +69053,208,2,228970,13152 +69054,287,3,8467,23788 +69055,232,10,18651,196125 +69056,190,7,8669,1734776 +69057,387,10,84340,113373 +69058,234,1,47507,2406 +69059,234,1,110148,57895 +69060,213,10,48775,8452 +69061,180,7,10857,1413938 +69062,317,10,76012,79390 +69063,53,2,302528,19955 +69064,413,11,290714,62214 +69065,204,9,42537,8506 +69066,273,7,205891,1188278 +69067,234,1,276935,88800 +69068,413,11,257344,20649 +69069,234,1,74510,20400 +69070,387,10,16873,80675 +69071,234,1,315256,1019956 +69072,58,2,11377,1841640 +69073,328,6,55534,1577962 +69074,72,11,245703,1632331 +69075,317,10,74911,117693 +69076,234,1,1914,19912 +69077,291,6,337339,1085298 +69078,262,6,9423,1389590 +69079,64,6,11351,1597218 +69080,333,2,26882,1773039 +69081,67,10,263115,1550186 +69082,22,9,10204,1558266 +69083,381,9,2924,1803766 +69084,234,1,36094,18854 +69085,141,7,3580,195 +69086,413,11,104674,29343 +69087,387,10,4955,40985 +69088,204,9,84720,16753 +69089,287,3,954,101608 +69090,305,9,98066,1342013 +69091,149,6,12,8059 +69092,413,11,321315,1149003 +69093,72,11,177677,1545996 +69094,289,6,214756,1453931 +69095,317,10,10475,56377 +69096,53,2,24801,1179442 +69097,286,3,31418,1155559 +69098,3,5,43499,13270 +69099,179,2,345922,1304618 +69100,3,5,12089,30543 +69101,204,9,38322,66532 +69102,180,7,125736,4315 +69103,234,1,8494,55273 +69104,239,5,297762,1824254 +69105,413,11,27814,86250 +69106,234,1,99861,12891 +69107,413,11,154575,1486933 +69108,105,7,81687,958941 +69109,269,9,1633,5585 +69110,53,2,86829,7418 +69111,46,5,332168,1437084 +69112,250,11,6947,1418487 +69113,269,9,9540,8315 +69114,273,7,241927,1124949 +69115,234,1,234815,974555 +69116,52,10,9717,58732 +69117,53,2,121598,85877 +69118,53,2,34469,27185 +69119,209,7,381518,1335045 +69120,176,3,13849,1413933 +69121,105,7,57749,1205938 +69122,413,11,5237,41537 +69123,328,6,2675,1426772 +69124,234,1,231082,19707 +69125,176,3,7916,1427823 +69126,3,5,101363,4614 +69127,387,10,57201,1705 +69128,52,10,21570,76813 +69129,269,9,37301,12420 +69130,105,7,10193,7885 +69131,413,11,253612,1383170 +69132,387,10,344039,1475728 +69133,3,5,86829,2423 +69134,53,2,345438,1416812 +69135,204,9,9423,223990 +69136,333,2,329440,1409865 +69137,85,10,70666,559188 +69138,234,1,289225,78860 +69139,75,5,333484,1408356 +69140,137,3,72856,42064 +69141,317,10,51349,1336701 +69142,204,9,33613,1102110 +69143,413,11,144471,25169 +69144,234,1,37672,8482 +69145,182,8,183412,1419642 +69146,367,11,5638,852 +69147,387,10,255343,40541 +69148,413,11,287636,1028244 +69149,5,10,10586,65687 +69150,203,1,241258,1344842 +69151,269,9,351242,1435172 +69152,387,10,54388,1885588 +69153,234,1,159770,1144092 +69154,289,6,354859,1884719 +69155,234,1,104485,138144 +69156,234,1,8371,54751 +69157,234,1,204712,57324 +69158,210,9,413998,1895011 +69159,328,6,1271,1394752 +69160,5,10,168027,2235 +69161,269,9,10395,5133 +69162,317,10,19610,14643 +69163,333,2,28739,1407886 +69164,148,9,259975,224961 +69165,413,11,15873,1495922 +69166,269,9,10005,61846 +69167,273,7,339530,544355 +69168,317,10,30641,56898 +69169,244,3,10590,1542802 +69170,60,1,3035,1348279 +69171,413,11,246741,1404683 +69172,204,9,279568,29888 +69173,234,1,44877,76242 +69174,234,1,94671,879 +69175,85,10,259690,1810511 +69176,273,7,27150,19746 +69177,317,10,80389,2461 +69178,234,1,18214,57665 +69179,277,3,242683,1533925 +69180,5,10,12684,8327 +69181,262,6,41171,24527 +69182,226,2,7299,1433706 +69183,87,7,159138,1541461 +69184,234,1,59507,96927 +69185,277,3,329865,1646501 +69186,373,7,69668,1378227 +69187,3,5,172847,1155550 +69188,143,7,287628,1707984 +69189,3,5,1665,10688 +69190,269,9,172828,1103717 +69191,234,1,76349,143217 +69192,413,11,255343,6051 +69193,413,11,3405,4670 +69194,75,5,11639,1310263 +69195,208,2,20210,1457700 +69196,298,5,330459,1494209 +69197,234,1,64499,82335 +69198,399,9,13205,1779892 +69199,327,7,5638,6852 +69200,387,10,373546,74295 +69201,269,9,251,3429 +69202,187,7,345918,1411724 +69203,373,7,240832,46291 +69204,204,9,2102,21560 +69205,317,10,31027,83417 +69206,52,10,10020,7911 +69207,3,5,5155,41631 +69208,303,3,225728,1090142 +69209,234,1,36540,57314 +69210,269,9,292625,1758591 +69211,77,10,4938,40200 +69212,3,5,215373,554927 +69213,269,9,2977,6379 +69214,286,3,55370,1657 +69215,387,10,28571,237378 +69216,398,9,2978,1337123 +69217,413,11,46931,1595991 +69218,234,1,174000,97755 +69219,72,11,180305,1453142 +69220,273,7,413421,1705323 +69221,3,5,42093,1875463 +69222,60,1,22584,1544013 +69223,387,10,192675,1450654 +69224,203,1,1381,1394760 +69225,196,7,407448,1411814 +69226,387,10,6589,50584 +69227,53,2,31509,1562889 +69228,234,1,140231,85387 +69229,234,1,3053,3556 +69230,317,10,3059,8814 +69231,387,10,21191,87257 +69232,413,11,31021,1801862 +69233,273,7,17622,1028792 +69234,234,1,191476,1123745 +69235,105,7,37497,46354 +69236,387,10,356757,1501788 +69237,373,7,354287,1395024 +69238,158,2,70074,1393451 +69239,239,5,116463,1198049 +69240,387,10,9593,1108 +69241,259,3,10204,1558253 +69242,169,3,5,1602889 +69243,52,10,66925,1084773 +69244,387,10,61430,111435 +69245,289,6,106112,5446 +69246,398,9,11975,224388 +69247,203,1,50126,1692495 +69248,158,2,311324,1199113 +69249,286,3,36175,69292 +69250,234,1,174769,31497 +69251,226,2,76341,1452256 +69252,328,6,11351,1597220 +69253,52,10,116236,1348206 +69254,273,7,86768,4683 +69255,413,11,262454,1445491 +69256,273,7,81001,69343 +69257,204,9,293625,1588195 +69258,273,7,82679,53012 +69259,207,3,97614,1393456 +69260,175,5,357706,1642540 +69261,226,2,117120,1037756 +69262,52,10,55612,1822782 +69263,204,9,49521,61177 +69264,333,2,95358,26175 +69265,317,10,46797,280248 +69266,25,2,284052,40802 +69267,306,7,44754,1551912 +69268,273,7,50759,1295385 +69269,232,10,85507,143563 +69270,269,9,32166,929960 +69271,226,2,16921,1401757 +69272,177,6,8619,1578204 +69273,203,1,17577,1423847 +69274,198,6,109439,1728517 +69275,234,1,22803,37932 +69276,302,9,246415,1439421 +69277,387,10,169364,935843 +69278,105,7,413452,1279784 +69279,273,7,228205,4140 +69280,187,11,13380,1562476 +69281,234,1,127585,9032 +69282,387,10,9877,59959 +69283,97,7,70667,1336914 +69284,160,3,293660,1444239 +69285,5,10,88390,1676309 +69286,3,5,55836,11988 +69287,226,2,9664,9162 +69288,234,1,183073,237474 +69289,203,1,17654,1424639 +69290,234,1,64736,127123 +69291,105,7,40221,1072476 +69292,177,6,10204,1613315 +69293,226,2,76493,1085752 +69294,333,2,10165,1497450 +69295,3,5,62463,15493 +69296,413,11,90461,14679 +69297,317,10,348537,85553 +69298,204,9,30995,1861812 +69299,232,10,43850,71789 +69300,179,2,13788,1323761 +69301,45,9,2567,1402023 +69302,413,11,26505,114363 +69303,286,3,16921,14139 +69304,244,3,284052,1785934 +69305,148,9,70074,1040861 +69306,413,11,744,541 +69307,53,2,3597,33257 +69308,5,10,809,12081 +69309,179,2,10665,939374 +69310,317,10,167882,1205753 +69311,387,10,11645,5026 +69312,3,5,1926,20039 +69313,234,1,400,5501 +69314,60,1,43880,12327 +69315,328,6,10145,1446683 +69316,5,10,274990,1442277 +69317,204,9,21135,29502 +69318,165,9,544,1438914 +69319,234,1,125666,18574 +69320,244,3,4147,1339432 +69321,3,5,2295,21405 +69322,3,5,42218,12702 +69323,234,1,49018,2127 +69324,245,3,69401,1666835 +69325,53,2,345918,1501720 +69326,196,7,10916,1402110 +69327,3,5,3114,22085 +69328,75,5,99861,1424630 +69329,234,1,63317,22012 +69330,196,7,12103,1392081 +69331,346,3,109614,1419119 +69332,413,11,42215,6346 +69333,77,10,4983,40379 +69334,273,7,102841,1434061 +69335,143,7,341420,1652021 +69336,97,7,167073,1393300 +69337,292,3,2105,1552176 +69338,387,10,51802,144592 +69339,3,5,606,10639 +69340,204,9,42683,14448 +69341,413,11,2084,5361 +69342,104,7,401164,1817456 +69343,188,8,13777,75305 +69344,234,1,177979,41962 +69345,180,7,229610,10155 +69346,3,5,128215,63801 +69347,5,10,49717,1089954 +69348,413,11,34469,53008 +69349,317,10,38162,1837988 +69350,262,6,190955,1405324 +69351,327,7,10803,1370948 +69352,340,2,346672,1699499 +69353,234,1,429174,68519 +69354,105,7,19936,1304333 +69355,234,1,377853,47822 +69356,198,6,140607,1550773 +69357,97,7,266102,117242 +69358,105,7,80713,236338 +69359,173,7,1394,1302372 +69360,160,3,6947,9624 +69361,53,2,22744,33176 +69362,273,7,9993,2863 +69363,239,5,225728,1571979 +69364,317,10,74919,221064 +69365,289,6,11704,226006 +69366,64,6,220287,1628110 +69367,387,10,293167,1080778 +69368,75,5,338063,1180810 +69369,387,10,206197,1188753 +69370,269,9,8071,53784 +69371,273,7,127372,22047 +69372,234,1,175331,1028543 +69373,190,7,419430,1761135 +69374,401,6,12,7925 +69375,273,7,44669,16748 +69376,234,1,14886,4964 +69377,60,1,175334,1663163 +69378,3,5,1116,15493 +69379,387,10,127372,943014 +69380,387,10,16996,66211 +69381,317,10,119844,6210 +69382,413,11,24420,17399 +69383,395,3,15653,1347646 +69384,204,9,23152,10604 +69385,204,9,6171,1328137 +69386,179,2,7006,129988 +69387,387,10,5201,1503 +69388,60,1,6038,1455486 +69389,398,9,12113,1405376 +69390,317,10,9428,887 +69391,262,6,297762,1418396 +69392,387,10,42040,2355 +69393,257,3,11377,1602868 +69394,269,9,4253,35740 +69395,234,1,48273,1191230 +69396,398,9,46567,24851 +69397,250,11,76163,1427435 +69398,413,11,72917,1047005 +69399,204,9,159211,1438448 +69400,387,10,11048,67928 +69401,204,9,313922,1189828 +69402,3,5,43252,10150 +69403,204,9,18919,550576 +69404,190,7,283995,1741755 +69405,234,1,156700,236539 +69406,234,1,81551,1032103 +69407,234,1,15179,79272 +69408,394,7,283384,2688 +69409,53,2,54845,35495 +69410,317,10,68976,142341 +69411,203,1,522,1479807 +69412,317,10,167583,39474 +69413,413,11,118490,1541365 +69414,234,1,24411,78108 +69415,52,10,134144,931237 +69416,269,9,20648,1322481 +69417,317,10,137381,1107213 +69418,67,10,10193,1447565 +69419,234,1,14134,8311 +69420,234,1,103713,1034654 +69421,204,9,257454,95332 +69422,148,9,43548,1688327 +69423,148,9,9900,60156 +69424,387,10,29829,30128 +69425,234,1,62527,60045 +69426,333,2,2267,23416 +69427,387,10,24212,91358 +69428,273,7,37936,961119 +69429,413,11,128946,1088219 +69430,3,5,330947,4185 +69431,317,10,382995,100622 +69432,200,3,23823,1302737 +69433,317,10,50775,13848 +69434,234,1,261037,16852 +69435,148,9,4982,6191 +69436,37,3,403429,1640639 +69437,234,1,10870,67716 +69438,175,5,345922,1412328 +69439,413,11,331958,1031160 +69440,413,11,252888,1266483 +69441,234,1,105528,1037977 +69442,3,5,15940,62956 +69443,262,6,345922,1815626 +69444,373,7,39995,75438 +69445,357,3,209112,1418382 +69446,387,10,100270,237583 +69447,200,3,181533,1855305 +69448,317,10,148034,1009298 +69449,234,1,55846,119406 +69450,180,7,92341,10155 +69451,204,9,52847,9062 +69452,204,9,16938,1015791 +69453,387,10,92321,992866 +69454,175,5,5237,1427556 +69455,340,2,169,1325655 +69456,3,5,11046,3454 +69457,57,2,203833,1401126 +69458,317,10,43817,1258541 +69459,262,6,286873,52223 +69460,196,7,11618,15893 +69461,413,11,38916,971275 +69462,387,10,43327,106588 +69463,77,10,16154,79728 +69464,413,11,315465,67935 +69465,306,7,29829,961298 +69466,286,3,38099,119659 +69467,325,5,297762,1824256 +69468,286,3,216153,594 +69469,204,9,8368,18989 +69470,75,5,369885,75113 +69471,317,10,58159,1362029 +69472,45,9,4982,1565212 +69473,60,1,71041,40984 +69474,387,10,3164,30969 +69475,234,1,348601,61440 +69476,113,9,177677,1411079 +69477,273,7,6978,11770 +69478,3,5,259395,1155986 +69479,373,7,11547,1274810 +69480,148,9,40095,1054077 +69481,203,1,76163,1350261 +69482,317,10,23855,90618 +69483,246,6,284052,1774221 +69484,387,10,335837,1175691 +69485,289,6,52021,187067 +69486,22,9,126889,1816358 +69487,327,7,10727,1401786 +69488,53,2,131764,108914 +69489,3,5,83770,18494 +69490,413,11,320736,71622 +69491,269,9,13788,86591 +69492,143,7,435,1392083 +69493,5,10,268853,1359002 +69494,5,10,2974,29242 +69495,306,7,3597,1790570 +69496,234,1,52903,235504 +69497,289,6,102161,155076 +69498,40,1,121598,1852795 +69499,333,2,954,15314 +69500,187,11,14128,83087 +69501,143,7,13929,15894 +69502,127,3,11351,1597199 +69503,269,9,42188,20463 +69504,234,1,253310,5665 +69505,3,5,747,11113 +69506,317,10,407575,1654407 +69507,234,1,39517,84737 +69508,20,2,11450,1535948 +69509,37,3,345922,1815625 +69510,413,11,137145,70942 +69511,53,2,3057,12655 +69512,269,9,328429,1611982 +69513,3,5,31127,52626 +69514,198,6,311324,1658880 +69515,3,5,241639,1093929 +69516,25,2,13600,5334 +69517,317,10,186079,1168791 +69518,141,7,924,1551666 +69519,394,7,340187,1579541 +69520,3,5,12783,30459 +69521,289,6,45665,112993 +69522,75,5,379019,1724172 +69523,413,11,284537,1095369 +69524,148,9,341886,1573325 +69525,320,3,14430,1521668 +69526,234,1,242093,1027017 +69527,196,7,302026,1412585 +69528,234,1,76163,12786 +69529,52,10,10198,15811 +69530,413,11,705,10603 +69531,317,10,37517,49361 +69532,387,10,301272,929899 +69533,234,1,42094,1927 +69534,292,3,1966,1540474 +69535,234,1,356758,1029414 +69536,182,8,954,1588463 +69537,234,1,280092,2128 +69538,317,10,257831,23357 +69539,387,10,13279,74579 +69540,413,11,274479,1156888 +69541,175,5,8276,1544432 +69542,262,6,302828,16601 +69543,53,2,68737,958488 +69544,317,10,315252,91278 +69545,234,1,224903,238822 +69546,360,3,116463,1573335 +69547,105,7,70695,1108748 +69548,360,3,10724,1442564 +69549,387,10,245706,39725 +69550,164,3,74,1530726 +69551,234,1,32684,4346 +69552,387,10,71859,83287 +69553,64,6,62764,1460634 +69554,373,7,10145,1404218 +69555,53,2,9354,136739 +69556,3,5,5481,39014 +69557,333,2,206647,1439128 +69558,52,10,98025,134212 +69559,387,10,24657,8452 +69560,387,10,1726,18875 +69561,234,1,70575,18384 +69562,209,7,10665,1399889 +69563,53,2,95358,38229 +69564,287,3,313922,1525925 +69565,234,1,96433,102601 +69566,289,6,109329,222578 +69567,286,3,25983,1025921 +69568,3,5,355008,47293 +69569,3,5,7548,1088851 +69570,53,2,171337,1156302 +69571,413,11,157843,6827 +69572,317,10,414827,1676376 +69573,67,10,322487,1447563 +69574,234,1,390357,53995 +69575,108,10,230266,48567 +69576,105,7,15934,90340 +69577,234,1,121516,227311 +69578,314,2,9882,1437273 +69579,317,10,19237,115727 +69580,413,11,47508,10004 +69581,57,2,2662,1431999 +69582,97,7,27265,1116937 +69583,413,11,20,105 +69584,269,9,93350,3287 +69585,3,5,52661,41186 +69586,234,1,168031,253066 +69587,234,1,28047,33279 +69588,141,7,9819,936765 +69589,317,10,64481,510484 +69590,273,7,29365,34016 +69591,52,10,208436,150420 +69592,289,6,10539,1454750 +69593,239,5,28,1411001 +69594,269,9,34598,1497678 +69595,327,7,178809,1412586 +69596,273,7,414610,550893 +69597,148,9,359412,1820513 +69598,234,1,142656,76978 +69599,54,10,42987,132879 +69600,317,10,28656,46644 +69601,387,10,43809,70981 +69602,234,1,62684,235808 +69603,413,11,27941,1099650 +69604,23,9,7220,134930 +69605,413,11,52661,7510 +69606,53,2,10274,2327 +69607,60,1,60488,1344915 +69608,387,10,41131,125561 +69609,317,10,94135,202179 +69610,394,7,5551,1368865 +69611,166,9,2046,1403083 +69612,179,2,44115,1327898 +69613,53,2,560,7652 +69614,269,9,87293,55326 +69615,148,9,384682,33625 +69616,317,10,29398,151935 +69617,204,9,15556,4187 +69618,317,10,28212,16767 +69619,268,7,49009,1402739 +69620,387,10,27973,85692 +69621,287,3,14029,99546 +69622,273,7,44115,5288 +69623,387,10,8556,42167 +69624,3,5,9532,57135 +69625,234,1,169730,1151834 +69626,317,10,32074,1788 +69627,306,7,49974,22204 +69628,209,7,339527,1087512 +69629,413,11,16551,12703 +69630,262,6,19995,1401800 +69631,203,1,250066,1340105 +69632,204,9,320910,1668653 +69633,166,9,10145,1405809 +69634,53,2,13526,11714 +69635,387,10,335778,8300 +69636,289,6,9514,1642532 +69637,387,10,369883,82624 +69638,187,11,8204,1370949 +69639,234,1,211166,56194 +69640,234,1,83125,1044255 +69641,333,2,43143,1360824 +69642,5,10,1859,2498 +69643,52,10,233487,1017259 +69644,3,5,9296,6345 +69645,181,7,6977,223239 +69646,286,3,15934,76804 +69647,387,10,224951,60604 +69648,3,5,398289,47102 +69649,387,10,8429,4413 +69650,234,1,191427,100036 +69651,413,11,118984,957731 +69652,60,1,229610,10154 +69653,75,5,145154,1122372 +69654,234,1,162877,558636 +69655,387,10,29872,108795 +69656,273,7,9457,1760 +69657,167,3,10320,1681469 +69658,3,5,5922,19102 +69659,269,9,27230,1014027 +69660,269,9,11511,20209 +69661,5,10,67018,118981 +69662,75,5,99861,1428916 +69663,53,2,27102,96967 +69664,53,2,112961,33439 +69665,373,7,194101,1444956 +69666,273,7,41283,6377 +69667,303,3,693,142157 +69668,187,11,257088,1364410 +69669,279,9,20132,85710 +69670,413,11,362703,1560231 +69671,182,8,225285,1431149 +69672,175,5,125490,1179441 +69673,175,5,31911,1395682 +69674,328,6,10796,1413106 +69675,148,9,46623,34082 +69676,62,3,33789,460459 +69677,317,10,324150,1424109 +69678,387,10,55604,29618 +69679,148,9,9613,1285953 +69680,169,3,10145,15528 +69681,287,3,180305,1287869 +69682,394,7,10950,83089 +69683,77,10,9918,60499 +69684,317,10,49308,131010 +69685,164,3,324670,1515635 +69686,328,6,1381,1401790 +69687,413,11,287483,1026685 +69688,127,3,20307,1007395 +69689,317,10,116979,14800 +69690,373,7,329805,579210 +69691,5,10,262786,236449 +69692,387,10,11591,1895 +69693,234,1,3574,4109 +69694,317,10,26042,132559 +69695,141,7,78265,1531943 +69696,3,5,811,12119 +69697,387,10,386100,1607462 +69698,148,9,43114,31067 +69699,234,1,168217,8500 +69700,40,1,392271,1765160 +69701,234,1,201643,1183724 +69702,179,2,82990,1547188 +69703,286,3,77864,1136857 +69704,317,10,41252,1704458 +69705,387,10,26642,1095634 +69706,413,11,358982,21272 +69707,269,9,17770,22008 +69708,387,10,10096,63352 +69709,387,10,18,61 +69710,234,1,133941,37197 +69711,187,7,373546,1116884 +69712,166,9,21338,1336516 +69713,3,5,42725,49358 +69714,317,10,289720,212684 +69715,403,10,124057,30586 +69716,413,11,456781,1813313 +69717,387,10,200,2514 +69718,21,3,216580,1465734 +69719,325,5,59735,1402095 +69720,317,10,52913,56742 +69721,269,9,25682,1120187 +69722,387,10,246422,81118 +69723,289,6,291270,1453618 +69724,234,1,266400,1313035 +69725,387,10,38964,56927 +69726,3,5,64129,13338 +69727,234,1,268380,1317162 +69728,234,1,79580,587509 +69729,373,7,258193,1367365 +69730,387,10,62439,1296107 +69731,387,10,117452,83464 +69732,333,2,107319,1559629 +69733,234,1,140222,146413 +69734,75,5,425774,1708039 +69735,105,7,33427,24513 +69736,269,9,98586,1011682 +69737,124,3,329865,1631613 +69738,317,10,285135,1349559 +69739,5,10,140846,9597 +69740,234,1,1966,1152 +69741,226,2,3556,32782 +69742,53,2,29136,1517110 +69743,209,7,407806,1397736 +69744,273,7,10659,48771 +69745,234,1,285270,1103650 +69746,12,10,16455,80539 +69747,79,7,709,10676 +69748,387,10,14372,7191 +69749,3,5,173465,1156210 +69750,413,11,5638,3175 +69751,234,1,281908,53583 +69752,204,9,118,71579 +69753,127,3,9461,119454 +69754,203,1,277713,1338291 +69755,262,6,1251,1377130 +69756,234,1,191476,1444769 +69757,204,9,773,17149 +69758,234,1,123770,40007 +69759,5,10,70133,227688 +69760,337,2,17654,1486822 +69761,3,5,44458,1633 +69762,234,1,132714,122633 +69763,387,10,28732,1207062 +69764,262,6,11880,1424937 +69765,273,7,128437,30104 +69766,317,10,13468,17277 +69767,387,10,76600,507 +69768,234,1,122348,1076027 +69769,105,7,222858,24513 +69770,419,10,37865,199564 +69771,234,1,137776,87121 +69772,317,10,82157,1148513 +69773,87,7,2978,52452 +69774,269,9,10972,1318466 +69775,317,10,70585,216809 +69776,333,2,297762,1824230 +69777,317,10,194817,1049433 +69778,413,11,415633,1164767 +69779,204,9,110887,1096786 +69780,234,1,44936,131786 +69781,285,5,9902,1600623 +69782,387,10,21849,9850 +69783,176,3,13483,99038 +69784,103,6,395883,1636731 +69785,5,10,18530,12491 +69786,275,9,43641,204553 +69787,53,2,158739,1094564 +69788,53,2,262841,62860 +69789,167,3,12113,1405422 +69790,273,7,11618,1760 +69791,273,7,64942,1095529 +69792,234,1,20495,90454 +69793,273,7,20287,1760 +69794,52,10,178809,1204188 +69795,234,1,99242,1266722 +69796,317,10,18446,70244 +69797,148,9,9835,22010 +69798,301,5,267579,1583160 +69799,317,10,43775,72647 +69800,317,10,379925,1569541 +69801,286,3,209032,1029282 +69802,234,1,70090,148082 +69803,234,1,75969,18161 +69804,262,6,302026,1403404 +69805,182,8,1294,124702 +69806,387,10,90932,1079817 +69807,401,6,9982,1713399 +69808,182,8,251227,1286584 +69809,273,7,85837,1023350 +69810,273,7,14550,68531 +69811,234,1,279159,1043312 +69812,269,9,110972,22485 +69813,143,7,10320,1378696 +69814,269,9,59726,55353 +69815,234,1,44641,102445 +69816,240,7,3172,1738166 +69817,5,10,2071,21241 +69818,143,7,153,2889 +69819,234,1,9274,18037 +69820,327,7,24679,1415965 +69821,234,1,33556,114379 +69822,53,2,414977,1544543 +69823,148,9,10201,6055 +69824,317,10,1579,2461 +69825,262,6,203833,1339053 +69826,413,11,10866,55178 +69827,234,1,27886,72900 +69828,415,3,29161,1691975 +69829,269,9,49258,1077518 +69830,387,10,57575,3632 +69831,77,10,173456,147529 +69832,387,10,57575,2665 +69833,83,2,227975,1072116 +69834,234,1,325302,1465613 +69835,373,7,76170,16177 +69836,415,3,11046,1293129 +69837,234,1,81477,112403 +69838,143,7,2012,20717 +69839,269,9,167810,60106 +69840,234,1,20153,50300 +69841,75,5,168259,1378241 +69842,317,10,108048,119234 +69843,53,2,15794,1433182 +69844,304,10,58904,228624 +69845,3,5,74,492 +69846,413,11,16866,23401 +69847,413,11,272693,10548 +69848,182,8,293660,1391700 +69849,164,3,366045,90410 +69850,286,3,45098,37944 +69851,317,10,278717,235112 +69852,11,6,83389,1456616 +69853,169,3,14145,1416984 +69854,387,10,102382,15345 +69855,317,10,295656,204018 +69856,317,10,17350,35959 +69857,105,7,222858,24514 +69858,209,7,354979,1733216 +69859,269,9,63493,1024912 +69860,317,10,46760,86519 +69861,204,9,120,1317 +69862,387,10,11247,68771 +69863,323,10,377847,72803 +69864,175,5,17911,1871226 +69865,182,8,31413,1603648 +69866,3,5,12831,73914 +69867,204,9,99861,1326460 +69868,143,7,77459,1724719 +69869,387,10,54662,16860 +69870,317,10,31875,17608 +69871,196,7,70670,1448312 +69872,317,10,53399,148085 +69873,413,11,14878,63981 +69874,234,1,192137,1366808 +69875,413,11,29787,15840 +69876,105,7,285181,980260 +69877,180,7,11202,1338830 +69878,387,10,6076,1844 +69879,273,7,57201,947 +69880,220,7,3078,14283 +69881,361,3,163791,1260050 +69882,154,3,122019,1637923 +69883,413,11,37514,22218 +69884,305,9,381518,1665616 +69885,317,10,293654,1384683 +69886,303,3,16342,30313 +69887,3,5,11186,1919 +69888,57,2,25520,1409267 +69889,97,7,638,9439 +69890,234,1,111302,1496 +69891,97,7,228066,1393300 +69892,387,10,9016,15811 +69893,53,2,60965,232064 +69894,3,5,48207,307 +69895,269,9,613,8805 +69896,234,1,191476,71056 +69897,196,7,9532,1406826 +69898,143,7,352327,1302522 +69899,53,2,2197,16680 +69900,387,10,47942,4066 +69901,45,9,188927,1481282 +69902,317,10,40047,21454 +69903,273,7,33801,56036 +69904,203,1,1640,1458216 +69905,269,9,170689,1030407 +69906,273,7,199373,929145 +69907,105,7,1481,65029 +69908,187,11,10476,1387541 +69909,234,1,11415,58712 +69910,179,2,8247,1530756 +69911,15,6,99861,1439726 +69912,196,7,4248,1408305 +69913,273,7,36635,4100 +69914,387,10,22387,14857 +69915,187,11,186869,1376902 +69916,273,7,72711,1147934 +69917,360,3,168259,1414497 +69918,132,2,44943,1409817 +69919,204,9,289126,233480 +69920,234,1,8965,56851 +69921,234,1,35263,1552936 +69922,5,10,87827,935501 +69923,197,5,9902,1840694 +69924,234,1,14073,78751 +69925,269,9,158900,997656 +69926,53,2,89492,21592 +69927,28,9,10590,1565942 +69928,234,1,108822,130030 +69929,317,10,17906,82482 +69930,234,1,21032,21879 +69931,234,1,17630,82117 +69932,317,10,27501,97986 +69933,209,7,9425,1403490 +69934,234,1,2291,7270 +69935,387,10,39771,102445 +69936,360,9,8467,1181954 +69937,74,5,25241,1765284 +69938,234,1,257444,1033123 +69939,387,10,88273,74758 +69940,301,5,10389,1437893 +69941,289,6,328111,1479534 +69942,387,10,32595,114629 +69943,269,9,44716,6796 +69944,34,8,13056,1708271 +69945,317,10,41380,62412 +69946,413,11,194,2425 +69947,415,3,20126,20504 +69948,204,9,30666,11760 +69949,182,8,126516,1529731 +69950,269,9,77246,21420 +69951,317,10,262522,39677 +69952,196,7,287903,1544669 +69953,333,2,10389,1437883 +69954,234,1,17003,53069 +69955,317,10,82040,56124 +69956,317,10,122709,83239 +69957,204,9,33364,35154 +69958,360,9,315837,1373558 +69959,234,1,147538,109314 +69960,387,10,104859,1037297 +69961,373,7,10004,1403561 +69962,333,2,11391,936709 +69963,52,10,104954,53945 +69964,53,2,64928,13866 +69965,87,7,1690,1889495 +69966,204,9,189682,552346 +69967,413,11,318184,1413693 +69968,413,11,69060,974548 +69969,204,9,4820,12280 +69970,387,10,418437,1448221 +69971,105,7,22494,23739 +69972,317,10,103732,108447 +69973,234,1,19676,85076 +69974,97,7,343173,1463994 +69975,262,6,377447,1824978 +69976,273,7,14047,937954 +69977,208,2,3172,1299201 +69978,204,9,164366,1047474 +69979,53,2,29475,15524 +69980,333,2,773,1208436 +69981,333,2,961,1536231 +69982,53,2,277355,1105594 +69983,317,10,49950,1128310 +69984,317,10,192023,1172461 +69985,286,3,336669,1812912 +69986,387,10,99909,120312 +69987,317,10,13517,73098 +69988,394,7,11472,1399116 +69989,317,10,269795,1319500 +69990,273,7,285270,1099419 +69991,413,11,868,13085 +69992,57,2,241258,1524757 +69993,158,2,77246,1550575 +69994,54,10,11113,27968 +69995,269,9,76600,1289015 +69996,413,11,101231,52258 +69997,317,10,248087,43652 +69998,105,7,1833,19318 +69999,105,7,12811,20648 +70000,387,10,201429,1572018 +70001,314,2,127521,1542743 +70002,413,11,13440,9966 +70003,64,6,178809,1412594 +70004,387,10,10714,66906 +70005,413,11,5201,42065 +70006,204,9,43809,9062 +70007,234,1,23853,859 +70008,143,7,76600,900 +70009,105,7,178341,30268 +70010,198,6,10529,1567328 +70011,234,1,83897,876106 +70012,373,7,4011,928942 +70013,160,3,2321,142159 +70014,3,5,11171,68441 +70015,122,8,315837,1797208 +70016,53,2,8282,54321 +70017,132,2,302699,1662730 +70018,415,3,25407,10157 +70019,226,2,6171,112657 +70020,204,9,10674,1813167 +70021,387,10,70575,18384 +70022,105,7,82626,928323 +70023,387,10,11813,67972 +70024,234,1,46891,212406 +70025,273,7,74714,3535 +70026,317,10,29649,1385306 +70027,387,10,330459,19242 +70028,317,10,20372,224783 +70029,234,1,6038,42994 +70030,204,9,17386,1085451 +70031,203,1,9914,1434547 +70032,413,11,12617,29636 +70033,234,1,52999,24485 +70034,204,9,28293,3255 +70035,65,3,857,1583799 +70036,105,7,47112,5430 +70037,413,11,237584,57740 +70038,234,1,25053,25645 +70039,234,1,41187,145518 +70040,204,9,40139,129805 +70041,349,1,10192,1462666 +70042,269,9,408381,1332152 +70043,234,1,85230,563572 +70044,200,3,8870,1410574 +70045,234,1,11377,57898 +70046,394,7,340488,1529499 +70047,317,10,201445,1164106 +70048,232,10,42669,74879 +70049,346,3,178809,1330205 +70050,234,1,118397,1067715 +70051,75,5,124963,1427542 +70052,234,1,40807,56661 +70053,105,7,42764,128679 +70054,394,7,35052,1408373 +70055,413,11,28665,5388 +70056,387,10,53851,30285 +70057,34,8,340101,1763657 +70058,180,7,40085,27732 +70059,234,1,278939,1382436 +70060,235,5,169298,1097219 +70061,196,7,76010,1193428 +70062,75,5,11577,1604462 +70063,205,10,154972,87905 +70064,234,1,382523,1576722 +70065,122,8,6947,1546881 +70066,346,3,9472,57634 +70067,5,10,282070,1341930 +70068,387,10,300601,1527483 +70069,234,1,12205,26875 +70070,53,2,94009,960153 +70071,234,1,27462,45460 +70072,317,10,50186,1032164 +70073,333,2,6643,1369451 +70074,317,10,127445,1012127 +70075,269,9,324670,52088 +70076,273,7,10696,5287 +70077,234,1,252059,1138216 +70078,413,11,32080,34484 +70079,11,6,19042,1447566 +70080,413,11,18133,56594 +70081,289,6,3933,1447370 +70082,305,9,442752,1596491 +70083,250,11,245168,1571984 +70084,127,3,522,1538365 +70085,317,10,131360,558075 +70086,209,7,365942,1428229 +70087,355,11,8916,1678655 +70088,234,1,55615,550819 +70089,317,10,184710,1167732 +70090,234,1,59297,239858 +70091,250,11,413762,1122437 +70092,413,11,393367,1519113 +70093,387,10,87296,85309 +70094,53,2,72733,1649452 +70095,187,11,246655,1552396 +70096,204,9,55681,1494370 +70097,3,5,118490,1324206 +70098,398,9,9423,46592 +70099,333,2,10201,15017 +70100,148,9,4982,12258 +70101,3,5,27031,30562 +70102,52,10,51141,1092521 +70103,234,1,10714,7775 +70104,245,3,21519,62410 +70105,398,9,44943,1338148 +70106,127,3,857,1354926 +70107,273,7,9474,1259 +70108,179,2,198663,1309872 +70109,113,9,316042,1378684 +70110,175,5,381015,1828380 +70111,45,9,291413,1746576 +70112,273,7,4592,38335 +70113,234,1,2966,29078 +70114,415,3,263115,1821892 +70115,148,9,16235,18173 +70116,105,7,156917,1459006 +70117,5,10,33273,1117802 +70118,234,1,413762,1673672 +70119,105,7,294819,1367335 +70120,273,7,1907,5628 +70121,317,10,34326,142716 +70122,317,10,92391,999882 +70123,273,7,46421,88643 +70124,148,9,43045,1559280 +70125,273,7,21828,88116 +70126,158,2,14,1398176 +70127,190,7,2567,1342654 +70128,148,9,3055,7513 +70129,5,10,29020,65705 +70130,53,2,405882,1378244 +70131,3,5,9292,11099 +70132,108,10,11680,70196 +70133,314,2,505,1411166 +70134,189,3,755,1389625 +70135,387,10,155011,1136033 +70136,269,9,8276,1416807 +70137,179,2,127372,132648 +70138,53,2,39308,33219 +70139,317,10,410718,94816 +70140,333,2,18093,1558021 +70141,234,1,50531,120020 +70142,164,3,241927,1075146 +70143,60,1,109329,77616 +70144,317,10,270024,546876 +70145,234,1,140489,1195182 +70146,234,1,857,488 +70147,105,7,119816,1350498 +70148,317,10,43469,233172 +70149,53,2,289,4127 +70150,3,5,51141,6652 +70151,317,10,262522,1460854 +70152,394,7,228496,969465 +70153,262,6,76163,1355964 +70154,269,9,13105,936638 +70155,413,11,37926,115257 +70156,234,1,44552,1081835 +70157,234,1,157787,1073097 +70158,234,1,10703,26760 +70159,234,1,26204,51677 +70160,180,7,48116,1545744 +70161,387,10,209032,1192394 +70162,273,7,5544,39161 +70163,175,5,41283,1440303 +70164,317,10,44140,14053 +70165,413,11,301876,1299853 +70166,226,2,55846,1404853 +70167,3,5,228066,1345974 +70168,289,6,19354,11529 +70169,53,2,70074,14352 +70170,3,5,28176,7202 +70171,273,7,187602,1168417 +70172,204,9,178,1198658 +70173,317,10,38303,120093 +70174,143,7,4307,3792 +70175,234,1,93858,150512 +70176,148,9,37628,1718409 +70177,97,7,329865,1646495 +70178,148,9,41857,9586 +70179,387,10,325385,55119 +70180,327,7,220287,1210545 +70181,3,5,136752,1208805 +70182,157,3,28,8643 +70183,273,7,79593,5912 +70184,269,9,367147,1663790 +70185,234,1,110146,131664 +70186,148,9,578,796 +70187,387,10,127812,10807 +70188,234,1,28820,44955 +70189,148,9,6171,1426760 +70190,317,10,300321,1164767 +70191,273,7,9846,59877 +70192,273,7,33511,539946 +70193,234,1,786,11649 +70194,234,1,238972,15521 +70195,217,3,8619,1619093 +70196,66,11,274857,1813847 +70197,75,5,203819,1355541 +70198,249,7,149509,1444290 +70199,317,10,51881,72405 +70200,169,3,6972,1401694 +70201,269,9,19946,1008506 +70202,413,11,10869,5841 +70203,113,9,102382,1399447 +70204,317,10,29076,95818 +70205,166,9,11450,1406611 +70206,3,5,75595,67356 +70207,234,1,22371,107658 +70208,234,1,58011,32375 +70209,105,7,128856,73566 +70210,387,10,43395,31069 +70211,317,10,447236,1429197 +70212,75,5,4147,1357066 +70213,277,3,18,579430 +70214,204,9,120676,2763 +70215,12,10,24554,40346 +70216,189,3,277355,1335158 +70217,239,5,293660,1552473 +70218,328,6,297762,1458440 +70219,232,10,43806,2430 +70220,317,10,378435,239267 +70221,148,9,37581,100037 +70222,287,3,55534,230129 +70223,148,9,59296,60872 +70224,317,10,98612,1018895 +70225,269,9,77381,1532202 +70226,175,5,14181,1537446 +70227,327,7,44655,1617783 +70228,234,1,379019,21737 +70229,234,1,4688,16391 +70230,387,10,88375,175786 +70231,232,10,27035,96819 +70232,269,9,9966,33612 +70233,234,1,37954,4109 +70234,413,11,103432,1033805 +70235,269,9,227306,2243 +70236,196,7,6557,14764 +70237,387,10,6976,51728 +70238,234,1,19912,4755 +70239,198,6,140607,1550771 +70240,3,5,38766,127779 +70241,66,11,12144,53344 +70242,148,9,120497,33250 +70243,317,10,347630,1484887 +70244,317,10,41301,1031976 +70245,158,2,33005,1346951 +70246,12,10,10610,66122 +70247,286,3,62692,549139 +70248,387,10,6644,4298 +70249,387,10,26958,1174325 +70250,234,1,293516,223965 +70251,387,10,11215,17698 +70252,235,5,44943,95640 +70253,234,1,147575,1046507 +70254,413,11,268174,1316671 +70255,3,5,118134,8714 +70256,215,8,315837,1797212 +70257,226,2,13616,1421644 +70258,262,6,809,1416298 +70259,317,10,69619,64377 +70260,269,9,62046,9648 +70261,262,6,6972,1401703 +70262,204,9,3595,17220 +70263,204,9,43384,9062 +70264,273,7,334651,1350870 +70265,234,1,17223,235270 +70266,387,10,70807,559681 +70267,74,5,8619,1619077 +70268,3,5,11337,3097 +70269,387,10,323674,1140238 +70270,317,10,273511,1329731 +70271,234,1,54242,150176 +70272,3,5,63858,30970 +70273,148,9,11234,1198731 +70274,234,1,10257,35452 +70275,3,5,12720,73684 +70276,3,5,378485,1742497 +70277,273,7,22682,4360 +70278,5,10,19029,1170551 +70279,413,11,171308,27342 +70280,317,10,159138,34949 +70281,317,10,152861,584967 +70282,234,1,335897,1086267 +70283,269,9,44945,2867 +70284,234,1,327083,57604 +70285,317,10,329690,1371390 +70286,87,7,107250,1517105 +70287,148,9,2503,15733 +70288,273,7,2613,117 +70289,333,2,1125,1412186 +70290,148,9,18387,1311377 +70291,289,6,106112,226599 +70292,77,10,9483,19236 +70293,234,1,58611,67972 +70294,317,10,15037,13614 +70295,203,1,338,1585864 +70296,413,11,11142,34307 +70297,317,10,40993,125177 +70298,286,3,134806,72261 +70299,234,1,60199,44807 +70300,273,7,85494,88644 +70301,250,11,293167,1759815 +70302,317,10,376716,1269249 +70303,166,9,55534,1577977 +70304,234,1,319396,1430295 +70305,234,1,12618,2226 +70306,234,1,306199,109744 +70307,387,10,347807,86009 +70308,132,2,365942,578729 +70309,52,10,148284,91552 +70310,234,1,10004,61824 +70311,413,11,325803,1428042 +70312,123,3,9312,57256 +70313,67,10,169934,1243953 +70314,113,9,297762,1574052 +70315,53,2,120259,4350 +70316,413,11,20242,1047 +70317,304,10,302666,1507477 +70318,286,3,149465,1900645 +70319,387,10,14126,77270 +70320,234,1,33253,69991 +70321,413,11,105583,1092208 +70322,317,10,332827,1271964 +70323,234,1,13073,66605 +70324,3,5,13853,2209 +70325,413,11,809,1546437 +70326,166,9,29056,1588447 +70327,291,6,1294,1529813 +70328,413,11,77964,113571 +70329,286,3,53168,67048 +70330,234,1,69635,1054353 +70331,234,1,1773,25165 +70332,3,5,27983,12119 +70333,286,3,27814,1117287 +70334,262,6,10145,957874 +70335,53,2,206563,8581 +70336,234,1,123777,1012174 +70337,234,1,44458,56739 +70338,317,10,97672,150813 +70339,415,3,9659,75441 +70340,176,3,10590,1566258 +70341,148,9,177677,66552 +70342,52,10,30022,133223 +70343,234,1,50506,225586 +70344,200,3,7551,1434562 +70345,387,10,45243,57538 +70346,301,5,338189,1650745 +70347,234,1,20561,10781 +70348,5,10,3072,9635 +70349,269,9,259997,1302514 +70350,317,10,48205,28615 +70351,317,10,33436,11195 +70352,317,10,168676,130069 +70353,75,5,46567,1008509 +70354,234,1,359245,939452 +70355,234,1,125300,536904 +70356,388,9,102382,1360095 +70357,413,11,11688,51701 +70358,189,3,2300,1870698 +70359,252,3,163,1727306 +70360,317,10,335340,1452470 +70361,203,1,59962,1460786 +70362,387,10,9286,42121 +70363,387,10,284117,1347099 +70364,234,1,48585,63303 +70365,234,1,15213,78009 +70366,234,1,52859,8500 +70367,244,3,9352,91133 +70368,273,7,27711,1042696 +70369,413,11,42231,3394 +70370,5,10,45714,238563 +70371,53,2,188826,1583210 +70372,160,3,2300,170706 +70373,132,2,924,1518503 +70374,60,1,69,1530090 +70375,234,1,413052,236013 +70376,262,6,7916,1399869 +70377,413,11,209263,65849 +70378,327,7,370234,1447085 +70379,234,1,80351,15657 +70380,333,2,765,1203390 +70381,415,3,336850,1570163 +70382,269,9,22023,1066976 +70383,210,9,383538,1783003 +70384,234,1,70585,68167 +70385,234,1,96106,41147 +70386,269,9,207641,986687 +70387,289,6,172385,1459743 +70388,187,11,10916,1387183 +70389,234,1,43645,4818 +70390,387,10,9639,58262 +70391,234,1,146315,84648 +70392,317,10,36785,116194 +70393,387,10,352199,1509222 +70394,387,10,44470,42994 +70395,148,9,15497,8508 +70396,273,7,3520,30634 +70397,419,10,96011,51844 +70398,387,10,3053,2356 +70399,234,1,36373,39009 +70400,85,10,60269,1605166 +70401,196,7,334074,117241 +70402,387,10,190410,1277588 +70403,394,7,12,8158 +70404,132,2,123109,1427396 +70405,234,1,37532,82286 +70406,53,2,28448,1813383 +70407,317,10,118497,1196881 +70408,208,2,28571,7689 +70409,234,1,12599,65428 +70410,317,10,30002,151705 +70411,387,10,10539,52845 +70412,387,10,353686,73020 +70413,236,8,10733,1571773 +70414,3,5,28263,38658 +70415,245,3,9836,80623 +70416,234,1,33112,33064 +70417,148,9,9297,41898 +70418,234,1,186584,16187 +70419,415,3,52661,14728 +70420,234,1,342684,1472775 +70421,317,10,360605,1512121 +70422,182,8,1125,1551516 +70423,387,10,146521,1772142 +70424,317,10,56304,223906 +70425,317,10,50463,41697 +70426,157,3,1480,9579 +70427,176,3,190955,1372079 +70428,148,9,1480,12348 +70429,262,6,312221,1580895 +70430,11,6,118408,118078 +70431,3,5,29136,198883 +70432,3,5,318973,1161657 +70433,226,2,33673,14495 +70434,413,11,54256,593164 +70435,269,9,189,1401122 +70436,158,2,325173,1601643 +70437,179,2,1950,1319744 +70438,413,11,47694,67769 +70439,3,5,15067,37944 +70440,273,7,35392,29276 +70441,273,7,18696,50788 +70442,180,7,118134,1290385 +70443,3,5,38920,1095 +70444,340,2,384737,1825656 +70445,64,6,124470,1448299 +70446,234,1,90465,117773 +70447,234,1,4344,36564 +70448,286,3,109886,103020 +70449,269,9,2608,12927 +70450,234,1,172785,198555 +70451,203,1,13336,1410603 +70452,105,7,44027,54902 +70453,269,9,78563,1130730 +70454,317,10,97630,51686 +70455,413,11,14357,1156990 +70456,269,9,256740,1098218 +70457,3,5,18684,6452 +70458,226,2,14979,1458992 +70459,75,5,2046,1455292 +70460,317,10,78210,21664 +70461,234,1,17691,18392 +70462,287,3,100669,99601 +70463,317,10,292033,96001 +70464,317,10,42252,46601 +70465,413,11,73262,1098635 +70466,415,3,53949,1507551 +70467,3,5,11647,65994 +70468,53,2,18467,1319446 +70469,413,11,54752,38 +70470,344,9,10733,1571712 +70471,373,7,57749,1411225 +70472,59,3,12276,1624685 +70473,160,3,42045,9311 +70474,269,9,54563,24297 +70475,53,2,378607,589168 +70476,317,10,36736,116078 +70477,53,2,18190,1304433 +70478,234,1,85644,40402 +70479,38,10,2692,30796 +70480,67,10,24554,91766 +70481,317,10,18809,10722 +70482,317,10,81110,1373119 +70483,103,6,283995,1637390 +70484,5,10,397837,1336419 +70485,148,9,188826,1583207 +70486,196,7,10921,1357061 +70487,234,1,53410,13848 +70488,317,10,47200,567595 +70489,269,9,115712,1161454 +70490,204,9,11096,13933 +70491,317,10,62688,236498 +70492,182,8,26390,1407029 +70493,97,7,381518,1337412 +70494,387,10,217648,5811 +70495,209,7,11370,1425513 +70496,234,1,9441,10965 +70497,53,2,166886,1156248 +70498,211,3,220820,1885851 +70499,303,3,12103,13931 +70500,273,7,110146,75940 +70501,317,10,92989,69831 +70502,53,2,203833,6688 +70503,175,5,19995,1401806 +70504,333,2,332662,1340082 +70505,387,10,31713,2089 +70506,415,3,19096,3252 +70507,387,10,121354,12515 +70508,245,3,17978,1423668 +70509,269,9,209406,25017 +70510,286,3,371446,1398137 +70511,234,1,2897,20412 +70512,234,1,76312,69193 +70513,292,3,755,1599642 +70514,377,3,52454,1463553 +70515,387,10,1976,6593 +70516,333,2,277778,1422965 +70517,226,2,13842,1458198 +70518,3,5,4993,5806 +70519,234,1,126442,989687 +70520,234,1,36874,100036 +70521,287,3,74,1414988 +70522,234,1,11975,1776 +70523,324,3,24266,1202730 +70524,387,10,186971,1068048 +70525,325,5,28739,1407897 +70526,269,9,39053,964595 +70527,273,7,402612,64401 +70528,160,3,22881,1071998 +70529,210,9,227975,1775652 +70530,143,7,371462,144164 +70531,269,9,280840,26271 +70532,105,7,13442,206972 +70533,413,11,144111,1361786 +70534,413,11,142216,46003 +70535,317,10,27461,8966 +70536,143,7,47792,10328 +70537,179,2,9563,1322089 +70538,327,7,324440,1606206 +70539,208,2,33472,14498 +70540,198,6,263115,1580854 +70541,269,9,193893,21747 +70542,317,10,29568,133090 +70543,53,2,85350,54761 +70544,52,10,43089,76942 +70545,234,1,19823,85204 +70546,60,1,53864,1312999 +70547,12,10,263115,173658 +70548,234,1,119364,97570 +70549,387,10,238925,1273677 +70550,148,9,334299,1646385 +70551,203,1,413762,1502428 +70552,317,10,170677,115467 +70553,127,3,28000,1274149 +70554,325,5,378018,1762260 +70555,179,2,11975,1435605 +70556,169,3,15092,11310 +70557,53,2,381008,1784765 +70558,190,7,408381,1657567 +70559,226,2,95504,30110 +70560,325,5,418437,1195184 +70561,3,5,59197,81297 +70562,394,7,744,1378166 +70563,234,1,25626,20638 +70564,387,10,286192,8039 +70565,289,6,16296,1353148 +70566,158,2,2454,1554884 +70567,87,7,395982,1642381 +70568,317,10,309820,1115712 +70569,333,2,66113,1070170 +70570,317,10,140222,1106985 +70571,3,5,118257,14196 +70572,387,10,5201,42064 +70573,292,3,9475,1548587 +70574,53,2,128081,1519351 +70575,277,3,36375,10919 +70576,413,11,146238,558231 +70577,387,10,25736,120312 +70578,269,9,11618,961533 +70579,273,7,94809,56036 +70580,234,1,179715,130402 +70581,11,6,19995,1401808 +70582,234,1,28681,931246 +70583,72,11,1647,995462 +70584,148,9,296523,62781 +70585,204,9,96089,12280 +70586,4,6,337339,1907213 +70587,35,10,284052,7625 +70588,97,7,8470,548435 +70589,141,7,297762,1003356 +70590,413,11,413782,110962 +70591,160,3,332411,1083165 +70592,204,9,60281,958921 +70593,234,1,28430,39853 +70594,217,3,2300,1870696 +70595,204,9,112991,1524176 +70596,204,9,27904,1279565 +70597,413,11,84942,1325558 +70598,413,11,50506,61255 +70599,273,7,68063,550305 +70600,317,10,284135,150975 +70601,317,10,259358,1301158 +70602,234,1,32720,3776 +70603,105,7,24348,1551 +70604,226,2,27150,1612613 +70605,286,3,22256,8217 +70606,105,7,158967,1326480 +70607,413,11,11001,908 +70608,317,10,41360,986776 +70609,198,6,177677,1545981 +70610,226,2,198663,1402546 +70611,273,7,16866,56632 +70612,317,10,84575,1196746 +70613,262,6,1966,1398104 +70614,262,6,293982,1042814 +70615,289,6,9514,1181236 +70616,25,2,40139,60261 +70617,289,6,53210,155076 +70618,317,10,68472,972395 +70619,387,10,10915,35256 +70620,413,11,236737,16981 +70621,52,10,101363,62923 +70622,413,11,12249,71932 +70623,34,8,10727,1418311 +70624,373,7,7445,1377220 +70625,3,5,13852,75904 +70626,105,7,94352,1001706 +70627,105,7,319924,61247 +70628,269,9,24397,1000467 +70629,179,2,773,1547140 +70630,273,7,44936,1432705 +70631,87,7,20648,1537110 +70632,175,5,15613,1442515 +70633,286,3,35790,12166 +70634,234,1,121173,591994 +70635,234,1,82745,928723 +70636,262,6,2978,3993 +70637,317,10,20963,86860 +70638,87,7,313922,1616391 +70639,327,7,236808,1642541 +70640,53,2,71133,1354795 +70641,413,11,18990,30702 +70642,148,9,40916,9063 +70643,234,1,43875,8500 +70644,234,1,20055,938649 +70645,317,10,114790,72239 +70646,317,10,61966,1076757 +70647,183,5,3597,1403415 +70648,317,10,132608,127673 +70649,179,2,6948,1326402 +70650,269,9,70667,6795 +70651,317,10,288980,238822 +70652,157,3,86825,67796 +70653,387,10,31258,30981 +70654,273,7,79611,223416 +70655,204,9,118,9820 +70656,269,9,279690,1518005 +70657,317,10,169382,1433975 +70658,234,1,70500,152000 +70659,387,10,95358,233508 +70660,52,10,4011,34534 +70661,182,8,99261,4677 +70662,413,11,8211,54077 +70663,413,11,82999,557360 +70664,234,1,52360,72061 +70665,3,5,17770,10832 +70666,413,11,209032,1192396 +70667,66,11,297762,1824276 +70668,234,1,179837,1050201 +70669,245,3,14,129193 +70670,328,6,369885,1394750 +70671,3,5,17287,78021 +70672,3,5,49028,562223 +70673,143,7,257345,1365542 +70674,289,6,35,1447376 +70675,226,2,219466,1640823 +70676,105,7,18045,1172632 +70677,5,10,333884,1202096 +70678,198,6,173153,1554973 +70679,87,7,33107,965960 +70680,317,10,313922,74655 +70681,317,10,16080,117487 +70682,160,3,310593,1423427 +70683,269,9,10740,19755 +70684,3,5,38340,666 +70685,273,7,10590,57263 +70686,317,10,26505,59 +70687,40,1,8669,1734785 +70688,314,2,246655,1713068 +70689,413,11,43369,33513 +70690,317,10,63988,136474 +70691,3,5,26331,31523 +70692,52,10,423377,90753 +70693,413,11,18671,4167 +70694,413,11,127913,1104932 +70695,3,5,13912,16750 +70696,234,1,63498,588827 +70697,160,3,6972,75715 +70698,387,10,2604,1152 +70699,141,7,102382,68016 +70700,113,9,102382,1347736 +70701,234,1,16351,56205 +70702,317,10,34796,51277 +70703,234,1,121688,1074635 +70704,317,10,159514,139570 +70705,52,10,413421,1147472 +70706,3,5,246299,14648 +70707,226,2,43228,1349473 +70708,196,7,14411,113075 +70709,53,2,425774,1708045 +70710,317,10,36259,70835 +70711,413,11,11215,3394 +70712,53,2,13346,33456 +70713,3,5,714,2950 +70714,234,1,227383,1261548 +70715,203,1,64398,3681 +70716,333,2,403,1537964 +70717,234,1,22899,228728 +70718,176,3,3172,1553255 +70719,387,10,180819,1127491 +70720,113,9,1966,1330898 +70721,204,9,6440,60014 +70722,387,10,9889,7396 +70723,200,3,15092,1404285 +70724,413,11,42648,1378368 +70725,291,6,408616,1637809 +70726,317,10,71885,238852 +70727,180,7,27622,27969 +70728,387,10,42402,33841 +70729,204,9,214756,137175 +70730,97,7,157424,1375910 +70731,273,7,423377,1199828 +70732,12,10,109439,52114 +70733,60,1,61151,1380404 +70734,52,10,49028,1000619 +70735,3,5,4111,3356 +70736,317,10,116352,1064163 +70737,3,5,10549,21516 +70738,60,1,43855,1343610 +70739,333,2,266856,1465936 +70740,6,3,20174,85769 +70741,148,9,6341,2118 +70742,317,10,42641,4297 +70743,234,1,4140,34949 +70744,234,1,254420,225525 +70745,269,9,56906,990139 +70746,317,10,44661,131185 +70747,234,1,13701,57851 +70748,413,11,11654,22104 +70749,3,5,147829,14864 +70750,413,11,233208,1282039 +70751,268,7,274479,1420154 +70752,160,3,10804,10976 +70753,387,10,1253,2239 +70754,53,2,79995,1053074 +70755,234,1,47795,10316 +70756,234,1,38415,942251 +70757,234,1,43113,18598 +70758,75,5,109424,1408390 +70759,234,1,18939,83784 +70760,387,10,38775,44725 +70761,53,2,121234,4350 +70762,413,11,207636,9058 +70763,286,3,378503,1025264 +70764,148,9,72313,1188593 +70765,185,11,11377,1841642 +70766,52,10,189888,103035 +70767,64,6,365222,1590388 +70768,413,11,31913,1918 +70769,77,10,251,3431 +70770,317,10,132601,1334477 +70771,317,10,36883,1057663 +70772,3,5,152532,1031978 +70773,97,7,16921,41888 +70774,273,7,308639,1108963 +70775,328,6,257088,1638135 +70776,234,1,54236,96369 +70777,381,9,9946,1414502 +70778,317,10,31377,108039 +70779,317,10,439998,1420170 +70780,234,1,31856,1103820 +70781,413,11,94348,17399 +70782,269,9,16993,12017 +70783,387,10,441881,85051 +70784,190,7,293167,1759814 +70785,269,9,1251,369 +70786,3,5,53798,33413 +70787,317,10,39311,67428 +70788,387,10,11653,44916 +70789,286,3,14518,1118105 +70790,204,9,1049,1144658 +70791,189,3,544,1780227 +70792,328,6,222935,1726772 +70793,175,5,1251,1377133 +70794,398,9,13056,1708290 +70795,273,7,47412,63049 +70796,289,6,126712,1179322 +70797,148,9,43340,1137341 +70798,127,3,52661,195981 +70799,234,1,21801,641437 +70800,97,7,9529,91095 +70801,317,10,29101,65470 +70802,273,7,255388,5467 +70803,105,7,288977,20692 +70804,105,7,42683,13336 +70805,333,2,44626,122108 +70806,269,9,18111,11745 +70807,196,7,1647,1357069 +70808,387,10,11133,10058 +70809,269,9,14435,31172 +70810,277,3,11046,1391110 +70811,3,5,42825,14678 +70812,387,10,43268,3377 +70813,387,10,403450,1274996 +70814,52,10,342213,53943 +70815,387,10,16077,63306 +70816,234,1,3701,22467 +70817,20,2,50463,1535449 +70818,234,1,367596,233985 +70819,273,7,147815,5288 +70820,34,8,11618,1551104 +70821,262,6,79316,1544370 +70822,413,11,55823,14269 +70823,234,1,20648,24949 +70824,234,1,94820,1003237 +70825,317,10,84249,935866 +70826,187,11,267579,1583165 +70827,273,7,140,405 +70828,160,3,2274,1007395 +70829,398,9,10066,1392684 +70830,204,9,241239,968175 +70831,179,2,46738,1558543 +70832,5,10,35381,50301 +70833,286,3,49308,1092895 +70834,317,10,365222,1536908 +70835,187,11,9296,1341405 +70836,273,7,26679,151772 +70837,413,11,11231,2123 +70838,53,2,104674,1816951 +70839,148,9,1428,61056 +70840,333,2,696,10443 +70841,387,10,13580,9916 +70842,262,6,9785,1399287 +70843,5,10,37954,38233 +70844,234,1,55534,18308 +70845,304,10,44155,61985 +70846,3,5,94468,12119 +70847,3,5,100275,1119430 +70848,3,5,37926,1379593 +70849,204,9,9042,60409 +70850,387,10,9297,34892 +70851,182,8,271404,1177337 +70852,273,7,922,15425 +70853,412,9,2105,1552167 +70854,52,10,27549,102605 +70855,5,10,50181,87667 +70856,3,5,278348,1603224 +70857,75,5,242224,1425390 +70858,190,7,18079,1584169 +70859,317,10,17725,26190 +70860,234,1,33130,139570 +70861,148,9,1381,1447119 +70862,234,1,77762,288215 +70863,234,1,94204,65817 +70864,60,1,1942,1560753 +70865,98,3,14019,76270 +70866,188,8,1624,1870781 +70867,148,9,36635,1417675 +70868,210,9,351211,1652071 +70869,60,1,17057,55456 +70870,301,5,70981,8673 +70871,333,2,23518,34500 +70872,413,11,965,1744 +70873,289,6,10539,1211218 +70874,413,11,78734,10603 +70875,401,6,12,1451236 +70876,209,7,351901,1377419 +70877,387,10,197082,3556 +70878,203,1,49009,1400356 +70879,325,5,126889,1816356 +70880,105,7,1833,19320 +70881,11,6,5393,31093 +70882,148,9,137145,1542300 +70883,234,1,3061,29962 +70884,209,7,11351,1398893 +70885,179,2,13600,1324128 +70886,3,5,20648,62273 +70887,97,7,76341,1337413 +70888,289,6,19042,1447375 +70889,60,1,2675,1674663 +70890,105,7,313074,26191 +70891,12,10,353595,3794 +70892,317,10,62320,66150 +70893,209,7,82,1402006 +70894,287,3,15239,1207076 +70895,204,9,121401,12346 +70896,273,7,47886,1470540 +70897,286,3,23957,12989 +70898,234,1,14611,87177 +70899,317,10,141145,439442 +70900,204,9,32552,565201 +70901,5,10,39101,78322 +70902,387,10,56800,224983 +70903,75,5,76170,1421687 +70904,53,2,284564,1326113 +70905,333,2,42494,85773 +70906,67,10,359154,1489447 +70907,286,3,353533,581178 +70908,148,9,116236,1313634 +70909,234,1,95552,1004950 +70910,394,7,410118,1791600 +70911,5,10,1427,5637 +70912,317,10,126560,145352 +70913,317,10,196852,583607 +70914,234,1,20443,147323 +70915,273,7,11879,2214 +70916,75,5,11880,1120992 +70917,127,3,19995,89714 +70918,289,6,214756,1459718 +70919,273,7,10770,18837 +70920,289,6,433,143786 +70921,273,7,9828,59665 +70922,143,7,83732,930016 +70923,273,7,38448,123288 +70924,419,10,27137,25736 +70925,302,9,2567,1739538 +70926,234,1,214093,144782 +70927,105,7,82622,142153 +70928,3,5,13090,46784 +70929,5,10,65131,128296 +70930,387,10,202337,224970 +70931,208,2,228205,14653 +70932,234,1,52637,21681 +70933,269,9,337339,52600 +70934,234,1,235450,15519 +70935,234,1,46513,136531 +70936,387,10,205584,1167473 +70937,164,3,228970,1619730 +70938,60,1,44115,1192525 +70939,166,9,315837,1413153 +70940,317,10,254188,150630 +70941,324,3,12912,74063 +70942,105,7,297762,2593 +70943,52,10,44140,27916 +70944,53,2,43880,9064 +70945,148,9,159667,1519345 +70946,269,9,340187,1579534 +70947,333,2,17170,1178899 +70948,108,10,39407,1281715 +70949,301,5,11593,983118 +70950,269,9,3580,795 +70951,74,5,227975,1775644 +70952,373,7,274857,111879 +70953,226,2,63360,1668411 +70954,64,6,1902,1830648 +70955,3,5,19898,15367 +70956,3,5,22584,13972 +70957,387,10,6163,1788 +70958,413,11,2666,15842 +70959,234,1,45577,126126 +70960,413,11,5257,3050 +70961,236,8,857,1662357 +70962,373,7,263115,1740550 +70963,53,2,442752,1761857 +70964,207,3,60599,75610 +70965,3,5,30174,936319 +70966,327,7,9464,1360100 +70967,273,7,10320,40613 +70968,234,1,3580,190 +70969,317,10,356500,41041 +70970,317,10,228028,19975 +70971,317,10,53931,95600 +70972,413,11,13848,60411 +70973,236,8,4147,1558695 +70974,187,11,4133,1403636 +70975,381,9,13483,1402069 +70976,52,10,343284,1682323 +70977,262,6,351211,1053823 +70978,72,11,21208,1182914 +70979,204,9,522,7147 +70980,127,3,8467,1783005 +70981,175,5,11024,1400408 +70982,304,10,41213,1433534 +70983,209,7,362057,1557038 +70984,269,9,71670,21640 +70985,160,3,59118,1883787 +70986,234,1,300601,102329 +70987,208,2,10950,1317128 +70988,196,7,146233,1428595 +70989,333,2,32868,1300340 +70990,208,2,7551,1323090 +70991,387,10,3146,30464 +70992,413,11,209244,1356428 +70993,221,3,93856,1335158 +70994,53,2,23196,1446551 +70995,234,1,146381,228708 +70996,239,5,10204,1613212 +70997,3,5,2015,20733 +70998,77,10,10053,62554 +70999,196,7,177677,1337408 +71000,413,11,186585,121150 +71001,53,2,22894,3962 +71002,3,5,9609,43624 +71003,360,9,233639,1792022 +71004,413,11,339403,969705 +71005,333,2,82448,927990 +71006,269,9,24825,21813 +71007,259,3,10733,1551653 +71008,413,11,173294,1351804 +71009,304,10,102632,1031475 +71010,234,1,197854,1488432 +71011,141,7,14554,1567833 +71012,234,1,338729,1480986 +71013,286,3,103236,1013076 +71014,387,10,4953,201 +71015,250,11,1966,1733777 +71016,198,6,10529,1567325 +71017,333,2,263115,1402947 +71018,234,1,193603,1434676 +71019,196,7,63825,1640317 +71020,287,3,180305,1417864 +71021,387,10,6980,22039 +71022,203,1,7548,1340126 +71023,148,9,47404,9063 +71024,234,1,19325,82815 +71025,97,7,11351,1341855 +71026,387,10,35926,2767 +71027,302,9,14430,1521683 +71028,398,9,50247,1547531 +71029,269,9,107250,1327912 +71030,148,9,896,1174268 +71031,204,9,14916,1430514 +71032,387,10,50350,293882 +71033,234,1,28712,101709 +71034,317,10,34512,15903 +71035,234,1,84944,931473 +71036,246,6,126889,1746436 +71037,413,11,86608,1108828 +71038,166,9,210913,1405252 +71039,387,10,43829,8501 +71040,273,7,482,6569 +71041,148,9,16090,1697184 +71042,269,9,630,9060 +71043,234,1,43266,8500 +71044,200,3,257088,1638142 +71045,413,11,65771,20232 +71046,203,1,11517,1534622 +71047,234,1,391995,1744296 +71048,234,1,33642,21806 +71049,182,8,354287,1178898 +71050,53,2,26142,26984 +71051,269,9,158967,1326483 +71052,37,3,49524,1456696 +71053,317,10,73098,59255 +71054,250,11,13616,1586592 +71055,234,1,85327,86293 +71056,148,9,11077,38021 +71057,269,9,99861,32349 +71058,3,5,54563,9752 +71059,234,1,101852,80207 +71060,175,5,14476,1411673 +71061,204,9,120497,103446 +71062,415,3,17971,1566640 +71063,350,6,8869,1738128 +71064,234,1,44303,114351 +71065,234,1,191476,146964 +71066,175,5,77930,582808 +71067,234,1,44680,131249 +71068,373,7,76600,900 +71069,75,5,122019,1541519 +71070,209,7,54093,1456383 +71071,40,1,359412,405825 +71072,273,7,28169,1420385 +71073,204,9,16342,1335160 +71074,77,10,9703,21340 +71075,387,10,10947,40254 +71076,3,5,39276,18614 +71077,3,5,288977,38521 +71078,169,3,258251,1335149 +71079,387,10,18595,87908 +71080,148,9,43821,8508 +71081,398,9,10204,11272 +71082,413,11,28893,16567 +71083,12,10,346672,1248221 +71084,3,5,110909,1176048 +71085,234,1,323674,1140238 +71086,196,7,266102,1416949 +71087,234,1,53792,10001 +71088,53,2,16066,75943 +71089,77,10,10103,63429 +71090,67,10,10066,1584257 +71091,204,9,245597,1805398 +71092,291,6,340101,1621072 +71093,239,5,655,1657996 +71094,53,2,1640,23973 +71095,357,3,297762,1415157 +71096,273,7,8014,53615 +71097,317,10,77067,585784 +71098,3,5,175171,9080 +71099,234,1,53354,1374745 +71100,317,10,227200,160101 +71101,317,10,246006,204308 +71102,317,10,62741,235922 +71103,105,7,50086,1284737 +71104,166,9,250066,1458991 +71105,204,9,298,8794 +71106,286,3,53999,55888 +71107,234,1,248747,1287204 +71108,105,7,148615,44261 +71109,273,7,10268,64538 +71110,415,3,24657,1640415 +71111,387,10,896,12160 +71112,289,6,80928,572003 +71113,413,11,113432,1017235 +71114,179,2,1271,1327910 +71115,269,9,167262,352394 +71116,289,6,52520,1453930 +71117,387,10,12506,11845 +71118,196,7,8292,1392084 +71119,105,7,2984,13848 +71120,413,11,29318,1864042 +71121,269,9,2288,36695 +71122,234,1,10173,56998 +71123,402,11,401164,1180535 +71124,104,7,703,3104 +71125,234,1,204800,27728 +71126,52,10,43499,1378336 +71127,413,11,26323,14447 +71128,34,8,418437,1546459 +71129,387,10,5638,44544 +71130,179,2,11232,1524768 +71131,387,10,613,673 +71132,204,9,36751,7888 +71133,234,1,199647,1179832 +71134,234,1,50775,13848 +71135,234,1,28090,44765 +71136,75,5,11788,1408354 +71137,75,5,206647,1118711 +71138,234,1,34193,4786 +71139,387,10,10910,67447 +71140,296,3,181533,1869105 +71141,289,6,72105,1455523 +71142,203,1,200505,1342669 +71143,209,7,403,5712 +71144,203,1,11855,1522776 +71145,3,5,37686,17284 +71146,151,3,11547,211600 +71147,386,5,1481,77144 +71148,413,11,12716,35150 +71149,269,9,499,24296 +71150,413,11,82501,47204 +71151,75,5,11975,1395276 +71152,413,11,2897,120032 +71153,75,5,297762,1824255 +71154,401,6,11024,1673812 +71155,113,9,13393,1603666 +71156,3,5,38282,32506 +71157,301,5,246655,1402032 +71158,22,9,8869,1738085 +71159,208,2,25673,7689 +71160,269,9,62837,7855 +71161,105,7,134368,146180 +71162,387,10,203715,1186088 +71163,53,2,241927,1060979 +71164,75,5,46857,1437033 +71165,286,3,319073,1266339 +71166,3,5,2046,13622 +71167,387,10,10391,65363 +71168,387,10,27717,98825 +71169,387,10,12618,10637 +71170,317,10,35337,133420 +71171,289,6,5559,44123 +71172,53,2,270851,1321931 +71173,234,1,108972,42793 +71174,181,7,7340,1408661 +71175,269,9,329724,19380 +71176,387,10,26593,131741 +71177,387,10,263115,2199 +71178,269,9,3513,32349 +71179,3,5,19754,22818 +71180,413,11,99698,1047005 +71181,234,1,84060,45672 +71182,387,10,61217,72191 +71183,333,2,11077,957202 +71184,234,1,37686,15344 +71185,306,7,74,1095994 +71186,273,7,57412,33249 +71187,317,10,72013,94248 +71188,77,10,1271,2293 +71189,53,2,9968,61172 +71190,317,10,64725,239904 +71191,234,1,122192,25819 +71192,360,9,10803,1559472 +71193,52,10,9325,57334 +71194,3,5,8954,23969 +71195,286,3,257831,23316 +71196,58,2,9819,1534951 +71197,317,10,260310,116002 +71198,181,7,55197,1551746 +71199,286,3,17464,51555 +71200,3,5,277237,1512668 +71201,77,10,13519,3027 +71202,87,7,141,1546441 +71203,52,10,99863,29098 +71204,203,1,36737,1468921 +71205,317,10,45384,1133642 +71206,234,1,60285,64114 +71207,190,7,2978,1551727 +71208,3,5,306555,67324 +71209,234,1,43093,11558 +71210,234,1,8847,18533 +71211,67,10,14128,1208521 +71212,317,10,72949,238118 +71213,234,1,3941,10149 +71214,413,11,285181,1634 +71215,273,7,29835,5805 +71216,148,9,56906,1423751 +71217,317,10,319096,69139 +71218,57,2,9532,1401604 +71219,5,10,92796,24840 +71220,413,11,29416,102976 +71221,234,1,273610,276459 +71222,3,5,73562,890990 +71223,226,2,206647,1099281 +71224,234,1,43432,109356 +71225,234,1,24634,17784 +71226,387,10,72105,52139 +71227,273,7,54523,1259 +71228,317,10,233423,1294341 +71229,286,3,87302,1116084 +71230,317,10,324173,66555 +71231,387,10,52736,106491 +71232,148,9,32049,1833616 +71233,234,1,139582,133423 +71234,234,1,141971,108481 +71235,53,2,84942,1325561 +71236,398,9,3036,29857 +71237,53,2,406449,1698807 +71238,360,3,13954,1398867 +71239,239,5,336882,1635800 +71240,373,7,11472,3996 +71241,239,5,10320,1647714 +71242,317,10,13477,47050 +71243,100,3,315837,1797190 +71244,234,1,50001,14643 +71245,53,2,549,52163 +71246,141,7,28000,545529 +71247,387,10,1394,15191 +71248,273,7,86472,29389 +71249,413,11,59419,1526953 +71250,234,1,6976,44725 +71251,289,6,42251,1446546 +71252,413,11,167,4869 +71253,204,9,25385,12346 +71254,234,1,74919,221064 +71255,413,11,413882,37242 +71256,105,7,144792,120469 +71257,196,7,8870,1338152 +71258,317,10,262357,1305997 +71259,273,7,43850,1582968 +71260,249,7,24624,1411085 +71261,187,11,76341,1518779 +71262,226,2,168027,1460740 +71263,323,10,413052,578839 +71264,273,7,38554,1492543 +71265,293,2,168676,1543257 +71266,3,5,72856,106502 +71267,75,5,283995,222447 +71268,269,9,61527,1526935 +71269,52,10,18843,1454647 +71270,204,9,95015,1544023 +71271,269,9,351901,1188587 +71272,113,9,43833,1349482 +71273,53,2,16131,41680 +71274,413,11,39957,21120 +71275,3,5,12447,59528 +71276,53,2,28430,29894 +71277,333,2,2966,29087 +71278,317,10,212934,1222790 +71279,204,9,127521,1322063 +71280,3,5,104776,122836 +71281,226,2,69605,29640 +71282,45,9,274504,1609034 +71283,105,7,66741,1322447 +71284,97,7,21786,1336917 +71285,232,10,156360,81166 +71286,204,9,71066,1375845 +71287,226,2,329682,1577910 +71288,413,11,2758,9615 +71289,204,9,32093,8506 +71290,113,9,118,1385883 +71291,273,7,56068,12331 +71292,143,7,260030,1453115 +71293,317,10,52395,63904 +71294,262,6,293167,113180 +71295,269,9,8981,15588 +71296,3,5,300,4279 +71297,30,5,297762,1400092 +71298,3,5,47792,20572 +71299,373,7,333484,1378227 +71300,97,7,296523,1338480 +71301,234,1,96458,1009382 +71302,77,10,1922,19985 +71303,3,5,46494,136398 +71304,317,10,317723,1413113 +71305,5,10,42604,67481 +71306,105,7,96936,40839 +71307,413,11,32536,1495977 +71308,387,10,5928,46621 +71309,3,5,31280,1452396 +71310,413,11,43594,100578 +71311,45,9,954,1886653 +71312,413,11,303982,557584 +71313,3,5,12249,71931 +71314,180,7,147287,1544505 +71315,387,10,332794,69987 +71316,387,10,44463,82172 +71317,387,10,113660,89513 +71318,346,3,74,1406792 +71319,204,9,59147,31014 +71320,262,6,399790,1394029 +71321,413,11,9023,56678 +71322,234,1,287281,1353906 +71323,387,10,421741,237511 +71324,317,10,16016,74752 +71325,234,1,435366,117370 +71326,200,3,10796,1552368 +71327,373,7,15440,1411814 +71328,302,9,435,1574631 +71329,204,9,14537,1547577 +71330,52,10,79216,1587600 +71331,204,9,27917,8381 +71332,53,2,23853,959554 +71333,3,5,2978,1044 +71334,277,3,1381,1447142 +71335,418,11,8470,1720841 +71336,234,1,19014,28904 +71337,234,1,57190,1061644 +71338,219,11,8276,1544433 +71339,262,6,9664,122274 +71340,413,11,77056,67527 +71341,317,10,153541,1134301 +71342,234,1,73532,16767 +71343,413,11,105703,69834 +71344,3,5,177047,1418063 +71345,3,5,176670,30970 +71346,200,3,75174,1229789 +71347,209,7,79316,1547667 +71348,234,1,178927,1058272 +71349,273,7,747,71774 +71350,97,7,26390,92388 +71351,269,9,220,2764 +71352,360,3,3059,1313060 +71353,234,1,277839,1077537 +71354,53,2,103731,54761 +71355,3,5,53865,2774 +71356,286,3,17926,958401 +71357,317,10,73661,7319 +71358,373,7,258480,56765 +71359,53,2,31561,989083 +71360,413,11,56906,60521 +71361,317,10,35683,65244 +71362,317,10,116977,96358 +71363,52,10,46128,134949 +71364,45,9,10740,1395329 +71365,269,9,1634,1049 +71366,289,6,26958,1452932 +71367,234,1,387558,1564559 +71368,204,9,10761,6235 +71369,317,10,138496,1048421 +71370,324,3,53406,13848 +71371,53,2,43455,12145 +71372,273,7,30307,34227 +71373,62,3,246415,1355965 +71374,317,10,52051,145263 +71375,234,1,106739,1113391 +71376,3,5,53128,1262851 +71377,204,9,169881,1177711 +71378,234,1,151043,89838 +71379,9,3,374473,1650272 +71380,45,9,190955,1372083 +71381,234,1,37932,62081 +71382,66,11,27814,1856496 +71383,289,6,77459,1716984 +71384,388,9,10727,1418281 +71385,203,1,339342,1643465 +71386,200,3,857,1530363 +71387,196,7,9441,1748724 +71388,3,5,28261,1264551 +71389,287,3,74,1407887 +71390,196,7,11517,1341403 +71391,403,10,29113,17843 +71392,387,10,9260,19271 +71393,262,6,50318,1541272 +71394,187,11,9438,1399057 +71395,60,1,39415,1625128 +71396,413,11,20544,16207 +71397,234,1,13763,58729 +71398,415,3,29449,1477808 +71399,360,3,42045,1397317 +71400,7,3,163,1727308 +71401,3,5,47186,32603 +71402,317,10,92393,1037761 +71403,277,7,20126,1560817 +71404,399,9,9325,150737 +71405,273,7,93863,39161 +71406,234,1,318781,46680 +71407,262,6,269173,1379051 +71408,328,6,283445,1548092 +71409,175,5,347945,1618778 +71410,387,10,3050,31026 +71411,373,7,240832,1363847 +71412,234,1,63612,59879 +71413,328,6,177677,1392625 +71414,273,7,166,1965 +71415,52,10,159727,30173 +71416,234,1,244610,1284498 +71417,317,10,48567,1532100 +71418,45,9,1950,1436624 +71419,234,1,70712,559395 +71420,317,10,224251,944714 +71421,269,9,34482,1319383 +71422,141,7,42764,1766566 +71423,234,1,38269,101225 +71424,225,7,266856,42178 +71425,317,10,50225,214294 +71426,53,2,55420,1329419 +71427,53,2,45988,1730425 +71428,3,5,21338,33651 +71429,105,7,13600,70789 +71430,185,11,12103,1733142 +71431,345,7,154972,1742989 +71432,269,9,392271,1640321 +71433,387,10,24679,1229721 +71434,234,1,36960,120882 +71435,328,6,245703,1350252 +71436,273,7,14522,531 +71437,203,1,59419,1526969 +71438,25,2,266102,1570044 +71439,12,10,26042,132560 +71440,52,10,132122,1094530 +71441,387,10,12599,65430 +71442,53,2,3059,8826 +71443,143,7,83229,1281664 +71444,387,10,35856,235138 +71445,3,5,27409,100332 +71446,317,10,14137,20788 +71447,5,10,16175,79898 +71448,209,7,11472,1352979 +71449,234,1,103216,32375 +71450,75,5,82,1464530 +71451,413,11,91333,1321345 +71452,273,7,12309,43393 +71453,53,2,377447,1824979 +71454,269,9,4338,37040 +71455,273,7,391438,1723933 +71456,394,7,11547,1406241 +71457,333,2,10632,1329417 +71458,273,7,76203,947 +71459,234,1,64450,56213 +71460,175,5,6947,1378240 +71461,234,1,21062,48303 +71462,72,11,149509,1444303 +71463,387,10,3513,32339 +71464,148,9,117251,6053 +71465,317,10,71668,51023 +71466,204,9,6557,1416795 +71467,317,10,160329,1543586 +71468,208,2,101325,1415332 +71469,387,10,43470,95963 +71470,317,10,117120,1065014 +71471,387,10,41597,14293 +71472,127,3,18731,553019 +71473,204,9,13483,1330610 +71474,413,11,5289,64876 +71475,413,11,9286,25862 +71476,52,10,39979,179891 +71477,204,9,457,6813 +71478,387,10,121824,1131112 +71479,5,10,8247,1123819 +71480,234,1,74779,1001976 +71481,204,9,126090,1334943 +71482,317,10,16436,113502 +71483,196,7,378441,1099398 +71484,296,3,634,1576011 +71485,328,6,206647,1029804 +71486,3,5,53857,12307 +71487,234,1,160297,928285 +71488,5,10,10320,27786 +71489,3,5,62755,1708564 +71490,234,1,38785,19006 +71491,413,11,84848,56375 +71492,52,10,27259,229832 +71493,234,1,28268,95501 +71494,234,1,28519,1255 +71495,234,1,64362,199993 +71496,226,2,403,1317 +71497,286,3,352327,1491839 +71498,403,10,280690,1327329 +71499,60,1,2897,1369441 +71500,3,5,11122,48079 +71501,413,11,312174,1400588 +71502,399,9,21032,1451229 +71503,387,10,795,11898 +71504,226,2,354287,1781647 +71505,179,2,257345,1143244 +71506,234,1,169,2042 +71507,387,10,3484,32136 +71508,60,1,276906,1331181 +71509,204,9,328111,986240 +71510,413,11,6038,14457 +71511,387,10,267310,1314857 +71512,187,11,41733,1357059 +71513,234,1,139463,77104 +71514,269,9,323435,1423006 +71515,134,3,140607,3993 +71516,273,7,936,1938 +71517,5,10,86942,1537777 +71518,289,6,98566,1459743 +71519,317,10,76012,30053 +71520,269,9,91076,62517 +71521,268,7,70074,1223099 +71522,52,10,35926,2767 +71523,273,7,193,2398 +71524,187,11,435,1299405 +71525,160,3,33005,1099480 +71526,317,10,179103,62738 +71527,5,10,360737,1146900 +71528,387,10,82448,211151 +71529,213,10,61765,3573 +71530,273,7,24442,30130 +71531,200,3,190955,1405325 +71532,317,10,16866,117057 +71533,3,5,72105,42632 +71534,289,6,291270,224684 +71535,204,9,209263,76054 +71536,234,1,30583,68885 +71537,273,7,28270,2704 +71538,381,9,11607,65402 +71539,204,9,115109,1096786 +71540,413,11,300090,99859 +71541,196,7,360249,1635740 +71542,373,7,5237,1427554 +71543,52,10,249264,1284604 +71544,3,5,14052,67898 +71545,105,7,98612,1679608 +71546,164,3,924,1531896 +71547,5,10,15468,1220978 +71548,387,10,9577,36417 +71549,317,10,58664,201757 +71550,234,1,1694,27991 +71551,413,11,45679,29812 +71552,387,10,15379,129612 +71553,234,1,41283,66121 +71554,181,7,19719,1406242 +71555,387,10,21159,1440302 +71556,3,5,15019,473 +71557,327,7,69974,557678 +71558,12,10,145963,20008 +71559,3,5,22023,1728 +71560,387,10,25736,33029 +71561,204,9,10011,61994 +71562,387,10,10565,66047 +71563,257,3,5,1877365 +71564,317,10,345489,81717 +71565,317,10,116977,1147178 +71566,333,2,8282,54322 +71567,234,1,356161,145676 +71568,413,11,62967,236340 +71569,234,1,44634,77300 +71570,234,1,9827,55116 +71571,52,10,147815,1124962 +71572,317,10,32338,109124 +71573,317,10,226188,175707 +71574,269,9,364088,1748526 +71575,53,2,11547,1204440 +71576,204,9,11472,11713 +71577,387,10,79995,81874 +71578,105,7,442752,1761855 +71579,234,1,13539,1219210 +71580,52,10,131966,1233541 +71581,75,5,7916,1438620 +71582,413,11,3036,4868 +71583,3,5,508,7021 +71584,77,10,864,12963 +71585,3,5,43497,11593 +71586,127,3,126712,161961 +71587,198,6,7515,1457213 +71588,234,1,2805,28233 +71589,187,11,188102,1807780 +71590,160,3,9102,90354 +71591,333,2,28261,1058048 +71592,234,1,88273,74752 +71593,317,10,376047,85585 +71594,5,10,131457,1154117 +71595,52,10,81310,63648 +71596,317,10,411638,1740272 +71597,277,3,58244,1399916 +71598,58,2,379019,1780179 +71599,317,10,30995,107466 +71600,234,1,84449,130050 +71601,335,6,337339,1473412 +71602,53,2,8954,56417 +71603,226,2,1579,1407848 +71604,196,7,8204,1364412 +71605,250,11,376501,1415093 +71606,169,3,397837,1594070 +71607,317,10,13534,87326 +71608,303,3,9352,96389 +71609,3,5,14372,21516 +71610,413,11,9677,58486 +71611,317,10,136386,1105694 +71612,53,2,31027,550958 +71613,53,2,293970,957249 +71614,182,8,379019,1780173 +71615,273,7,121462,1210496 +71616,317,10,43808,155264 +71617,269,9,82990,169743 +71618,286,3,421365,1620756 +71619,413,11,15239,107482 +71620,148,9,33472,12348 +71621,333,2,337339,1543196 +71622,53,2,425774,1708048 +71623,413,11,11186,4981 +71624,413,11,12605,68341 +71625,111,7,11351,1597215 +71626,317,10,88922,64903 +71627,269,9,17622,6379 +71628,3,5,89551,1320461 +71629,3,5,74581,46233 +71630,413,11,17209,48070 +71631,72,11,17295,128997 +71632,234,1,75137,96372 +71633,413,11,75204,574148 +71634,53,2,868,13090 +71635,198,6,181533,1869382 +71636,175,5,5638,81531 +71637,273,7,250671,147865 +71638,387,10,408509,1068048 +71639,234,1,205864,1574604 +71640,413,11,92257,1374222 +71641,269,9,4497,37502 +71642,413,11,72279,38397 +71643,5,10,118408,118077 +71644,209,7,168259,1328758 +71645,346,3,8292,1401601 +71646,273,7,17911,128763 +71647,234,1,53576,122969 +71648,3,5,86820,45535 +71649,148,9,174769,7338 +71650,357,3,246655,1713056 +71651,3,5,30363,67044 +71652,413,11,578,8556 +71653,61,7,14,1412702 +71654,273,7,3064,2704 +71655,204,9,322443,1540864 +71656,387,10,43367,13802 +71657,219,11,177572,1618181 +71658,413,11,10466,33830 +71659,387,10,1443,1769 +71660,317,10,56653,567750 +71661,317,10,428398,107721 +71662,204,9,44718,1521395 +71663,333,2,58244,1618812 +71664,234,1,124157,119337 +71665,187,11,7454,1407666 +71666,288,3,372226,1337026 +71667,148,9,326,60285 +71668,289,6,10703,1452991 +71669,3,5,4266,19086 +71670,366,3,177677,1545987 +71671,53,2,64944,1895763 +71672,343,3,66756,1629994 +71673,181,7,2321,3104 +71674,317,10,220002,930598 +71675,81,3,6947,1573097 +71676,401,6,10198,1447390 +71677,413,11,982,3643 +71678,187,11,6947,1376901 +71679,357,3,274479,1608772 +71680,289,6,12593,1208544 +71681,333,2,228970,1434899 +71682,413,11,9389,58258 +71683,328,6,10632,1712104 +71684,127,3,9474,4610 +71685,234,1,84942,931481 +71686,398,9,924,1551647 +71687,234,1,306598,1424872 +71688,45,9,228970,1470525 +71689,413,11,10890,67350 +71690,53,2,76163,963705 +71691,5,10,28000,1487326 +71692,7,3,116463,1691507 +71693,234,1,81414,980124 +71694,317,10,244268,1004716 +71695,317,10,75262,237275 +71696,317,10,41923,263284 +71697,262,6,70981,141483 +71698,234,1,375355,1211781 +71699,413,11,20919,1423395 +71700,234,1,325039,1426197 +71701,190,7,40466,1760135 +71702,77,10,15179,79272 +71703,234,1,267035,36384 +71704,3,5,8391,55661 +71705,113,9,76757,1337393 +71706,387,10,28820,55647 +71707,209,7,28178,1532363 +71708,413,11,337101,1017813 +71709,413,11,5748,4590 +71710,234,1,326285,3061 +71711,155,3,23128,2260 +71712,53,2,22292,1529489 +71713,5,10,41979,127402 +71714,387,10,44104,1353673 +71715,53,2,72856,1413994 +71716,127,3,52661,1331195 +71717,160,3,334074,1388878 +71718,34,8,13056,1403707 +71719,234,1,56068,223708 +71720,169,3,279690,1401291 +71721,40,1,330459,1724987 +71722,373,7,137853,1392232 +71723,301,5,220820,1349971 +71724,53,2,49018,1183915 +71725,182,8,142402,1117110 +71726,108,10,180635,236292 +71727,204,9,11397,1493864 +71728,182,8,2454,1554887 +71729,234,1,25855,94268 +71730,269,9,2998,2875 +71731,3,5,2,16769 +71732,204,9,201749,28427 +71733,60,1,73835,1606271 +71734,234,1,48375,140372 +71735,387,10,12186,13 +71736,269,9,1259,36695 +71737,387,10,31280,1163928 +71738,108,10,10549,6210 +71739,413,11,17479,1584726 +71740,317,10,168541,1487326 +71741,387,10,188598,1170106 +71742,413,11,1647,17816 +71743,273,7,1058,7066 +71744,269,9,62692,1375373 +71745,61,7,163,1727323 +71746,169,3,2503,15528 +71747,148,9,407448,62144 +71748,105,7,8665,122 +71749,333,2,2046,1330586 +71750,413,11,87296,563673 +71751,234,1,39217,90454 +71752,317,10,112558,30776 +71753,234,1,4882,39765 +71754,3,5,340187,1579531 +71755,209,7,183412,1419644 +71756,273,7,174278,19965 +71757,413,11,426230,1728460 +71758,3,5,50001,33413 +71759,413,11,382501,1084080 +71760,385,6,2924,1803795 +71761,317,10,85160,935840 +71762,203,1,19765,1602153 +71763,105,7,136619,237336 +71764,387,10,99374,130319 +71765,234,1,54796,81693 +71766,213,10,3059,100036 +71767,53,2,16005,231832 +71768,176,3,9352,1586340 +71769,387,10,290762,59070 +71770,105,7,10647,153 +71771,234,1,27450,57851 +71772,234,1,10897,58448 +71773,333,2,76203,578721 +71774,273,7,13550,1381169 +71775,269,9,1415,32605 +71776,317,10,86825,3972 +71777,52,10,190955,55813 +71778,262,6,1271,113122 +71779,148,9,15762,1098702 +71780,287,3,74777,583469 +71781,349,1,13205,1779878 +71782,413,11,270024,87206 +71783,3,5,51250,997170 +71784,234,1,120831,34740 +71785,234,1,38286,120020 +71786,3,5,382589,66842 +71787,273,7,332567,7229 +71788,234,1,127391,1868 +71789,234,1,44693,131280 +71790,387,10,284053,579281 +71791,413,11,11697,14961 +71792,413,11,118640,1841855 +71793,148,9,118283,4311 +71794,413,11,127901,1085916 +71795,182,8,73532,1381113 +71796,373,7,16436,17811 +71797,132,2,337339,1408293 +71798,198,6,284564,1752048 +71799,3,5,43367,4308 +71800,53,2,44945,20826 +71801,333,2,26516,29801 +71802,250,11,9928,13194 +71803,75,5,184363,1042437 +71804,333,2,24624,1540856 +71805,196,7,21786,1336917 +71806,387,10,66178,45730 +71807,387,10,31498,89794 +71808,269,9,42764,1766557 +71809,226,2,28452,1643885 +71810,293,2,49009,1539307 +71811,234,1,16441,58245 +71812,234,1,147533,125074 +71813,76,2,330459,75803 +71814,182,8,10590,1566287 +71815,317,10,244268,53708 +71816,3,5,14207,22057 +71817,273,7,306598,1643332 +71818,286,3,25855,1064107 +71819,234,1,7233,52112 +71820,5,10,34944,41416 +71821,317,10,55756,116155 +71822,53,2,75233,1424587 +71823,37,3,10539,1451661 +71824,360,3,338189,1650726 +71825,291,6,84336,1788179 +71826,160,3,332411,63423 +71827,395,3,10948,1454698 +71828,413,11,72711,122449 +71829,333,2,30637,931836 +71830,3,5,4459,3351 +71831,105,7,4140,34954 +71832,105,7,7006,17212 +71833,413,11,72648,13941 +71834,317,10,32331,95653 +71835,287,3,42149,101427 +71836,204,9,22752,236477 +71837,204,9,10391,10836 +71838,204,9,390,5270 +71839,45,9,19995,1376892 +71840,204,9,2100,903 +71841,387,10,40957,19480 +71842,289,6,24556,91772 +71843,337,2,176,1295780 +71844,3,5,241593,1090113 +71845,239,5,379019,1780172 +71846,3,5,5721,4590 +71847,245,3,148284,1640253 +71848,3,5,2132,21852 +71849,164,3,74,1546852 +71850,262,6,244316,1662345 +71851,234,1,38325,142617 +71852,317,10,417406,1375988 +71853,269,9,12525,35089 +71854,387,10,1833,19311 +71855,234,1,11547,16847 +71856,234,1,11933,707 +71857,148,9,10276,8706 +71858,269,9,166886,1156247 +71859,189,3,9568,1335075 +71860,360,3,60599,1400492 +71861,413,11,2115,17766 +71862,210,9,26882,1773276 +71863,53,2,30666,1051959 +71864,204,9,72313,3358 +71865,108,10,84340,113373 +71866,234,1,399219,1625845 +71867,75,5,169298,1407260 +71868,289,6,177714,1017185 +71869,234,1,55754,116155 +71870,317,10,3870,223988 +71871,387,10,1630,7130 +71872,234,1,6499,50099 +71873,53,2,142656,1547489 +71874,161,6,264525,1526216 +71875,273,7,199155,6651 +71876,273,7,2241,23118 +71877,189,3,10909,1551274 +71878,298,5,294254,91123 +71879,317,10,16162,72024 +71880,234,1,10193,8 +71881,413,11,11058,971 +71882,127,3,1724,33585 +71883,187,11,9358,1392085 +71884,234,1,36259,70835 +71885,204,9,241258,1350459 +71886,77,10,9958,60966 +71887,273,7,44001,33249 +71888,158,2,76163,1437717 +71889,234,1,49354,40549 +71890,74,5,274857,1829856 +71891,226,2,10134,460575 +71892,234,1,17825,64763 +71893,234,1,47812,67361 +71894,234,1,233208,1282039 +71895,381,9,12113,1405378 +71896,317,10,53404,35927 +71897,317,10,286545,1086267 +71898,273,7,155597,25321 +71899,67,10,8247,1701150 +71900,373,7,132363,15432 +71901,175,5,13336,1410600 +71902,3,5,19255,313 +71903,269,9,254869,1120108 +71904,234,1,21671,1105324 +71905,413,11,239563,11372 +71906,387,10,1272,2036 +71907,160,3,351901,557806 +71908,234,1,24170,11983 +71909,387,10,156711,1138001 +71910,3,5,55197,552001 +71911,413,11,1396,8463 +71912,387,10,43497,84642 +71913,234,1,10044,62410 +71914,52,10,63333,111172 +71915,234,1,1724,18865 +71916,72,11,186869,1862954 +71917,317,10,39943,30208 +71918,180,7,42764,1164812 +71919,413,11,29467,14570 +71920,317,10,347096,1543174 +71921,360,3,42309,1440403 +71922,175,5,58244,1392106 +71923,277,3,425774,1708012 +71924,317,10,34995,10378 +71925,234,1,348689,1044894 +71926,317,10,141803,491911 +71927,317,10,28062,44886 +71928,60,1,44626,68083 +71929,3,5,10475,63746 +71930,273,7,26502,96285 +71931,387,10,211233,591546 +71932,148,9,2897,224395 +71933,234,1,74645,99437 +71934,415,3,43155,29984 +71935,317,10,16866,968303 +71936,387,10,16410,588035 +71937,167,3,9286,1441370 +71938,180,7,90395,1372221 +71939,343,3,10796,1868309 +71940,234,1,26801,30129 +71941,52,10,90932,1167749 +71942,317,10,155096,1188 +71943,111,7,2300,1614193 +71944,105,7,15613,4140 +71945,327,7,12171,1421265 +71946,317,10,356332,1518374 +71947,381,9,102668,1031773 +71948,413,11,118760,1627481 +71949,161,6,10320,1821192 +71950,387,10,245906,39012 +71951,169,3,283995,1720806 +71952,305,9,8414,1411380 +71953,148,9,15092,62279 +71954,160,3,921,8355 +71955,286,3,177155,1068335 +71956,413,11,8494,33283 +71957,148,9,226140,1377411 +71958,419,10,22371,95970 +71959,91,3,263115,1768941 +71960,413,11,4644,35332 +71961,317,10,63958,143630 +71962,87,7,425591,1616391 +71963,166,9,10724,1442563 +71964,123,3,312497,1236381 +71965,105,7,20766,39517 +71966,234,1,67177,32375 +71967,317,10,312497,1236381 +71968,413,11,20438,1514674 +71969,3,5,352186,1014919 +71970,3,5,46387,789008 +71971,234,1,69310,20638 +71972,143,7,946,7653 +71973,273,7,137528,1764641 +71974,234,1,21619,27991 +71975,234,1,53761,8636 +71976,203,1,240832,1030403 +71977,127,3,293660,1737894 +71978,53,2,53128,1716102 +71979,317,10,34181,11572 +71980,387,10,12538,35796 +71981,387,10,80410,237446 +71982,3,5,373546,959308 +71983,413,11,98025,69065 +71984,92,7,242131,34402 +71985,160,3,334074,1167321 +71986,387,10,26503,29433 +71987,317,10,13072,62635 +71988,234,1,19324,11159 +71989,317,10,14505,21348 +71990,209,7,12783,1376807 +71991,53,2,122081,963377 +71992,286,3,64454,72920 +71993,346,3,31005,1469560 +71994,413,11,11362,48070 +71995,160,3,9716,91834 +71996,273,7,331958,17558 +71997,317,10,40859,1129874 +71998,203,1,46586,1537567 +71999,268,7,31911,1413172 +72000,346,3,9352,1405220 +72001,273,7,393134,1853405 +72002,52,10,75204,574142 +72003,113,9,635,11475 +72004,234,1,90125,17350 +72005,64,6,1278,16346 +72006,148,9,2124,21815 +72007,204,9,10539,1128347 +72008,314,2,353728,1699379 +72009,204,9,201749,236619 +72010,270,9,13929,7960 +72011,273,7,18890,1729 +72012,234,1,17956,29009 +72013,203,1,70981,1390389 +72014,413,11,40649,60411 +72015,234,1,65142,240594 +72016,413,11,152570,29971 +72017,3,5,28171,100016 +72018,289,6,9023,1447385 +72019,75,5,245700,1434868 +72020,317,10,95015,119462 +72021,273,7,341886,1513594 +72022,77,10,10053,62555 +72023,234,1,85350,564 +72024,234,1,18843,180576 +72025,269,9,109417,112521 +72026,234,1,21481,76418 +72027,314,2,330459,1550638 +72028,413,11,44000,15384 +72029,160,3,4248,35546 +72030,317,10,128284,237859 +72031,387,10,153163,1503 +72032,324,3,413198,70109 +72033,12,10,227973,123945 +72034,122,8,10590,1566288 +72035,289,6,64847,73121 +72036,387,10,312221,1485107 +72037,317,10,335053,3788 +72038,397,7,14019,76265 +72039,413,11,338518,1170535 +72040,394,7,258193,957840 +72041,413,11,100770,31059 +72042,234,1,70583,558907 +72043,204,9,36737,1468916 +72044,239,5,163,1536971 +72045,234,1,280045,1012152 +72046,11,6,9836,1552803 +72047,413,11,317,4651 +72048,286,3,39992,36114 +72049,104,7,110972,1458579 +72050,387,10,72710,8685 +72051,234,1,78285,138795 +72052,175,5,9664,1380002 +72053,196,7,354287,1609188 +72054,340,2,365942,1738147 +72055,53,2,185460,1552516 +72056,188,8,6973,1706641 +72057,45,9,76757,1482835 +72058,286,3,49920,6740 +72059,209,7,13205,1536029 +72060,3,5,11704,2287 +72061,234,1,44022,2087 +72062,105,7,109251,8422 +72063,234,1,220976,49422 +72064,269,9,45556,76204 +72065,234,1,142798,1117979 +72066,3,5,214081,16732 +72067,270,9,755,1851732 +72068,3,5,43432,4376 +72069,179,2,47046,1601518 +72070,234,1,24655,70262 +72071,323,10,356294,230426 +72072,328,6,177677,1373726 +72073,175,5,2046,1172414 +72074,291,6,375366,1503229 +72075,269,9,212756,55353 +72076,413,11,22292,14962 +72077,132,2,45132,229810 +72078,105,7,34496,79386 +72079,53,2,1377,4350 +72080,317,10,51890,134546 +72081,39,3,8619,1619092 +72082,127,3,227975,40690 +72083,373,7,127372,1424617 +72084,277,3,72431,1484176 +72085,220,7,76097,69917 +72086,32,8,9946,1767313 +72087,269,9,371645,76847 +72088,353,7,6947,1534668 +72089,360,3,297702,1276438 +72090,273,7,356752,8749 +72091,269,9,393263,1606979 +72092,387,10,693,17871 +72093,3,5,10299,14431 +72094,3,5,244458,23461 +72095,269,9,21338,8285 +72096,317,10,27270,197925 +72097,53,2,336804,1574321 +72098,387,10,379873,128459 +72099,66,11,11618,1327842 +72100,182,8,388243,1622337 +72101,234,1,43817,589753 +72102,234,1,25707,17784 +72103,333,2,108726,1412625 +72104,3,5,43832,17761 +72105,387,10,282070,1034274 +72106,289,6,69103,148224 +72107,387,10,436339,588808 +72108,196,7,356500,1437624 +72109,204,9,129553,34344 +72110,317,10,66045,57303 +72111,53,2,320588,1423983 +72112,124,3,379019,1677769 +72113,3,5,173467,140909 +72114,273,7,173294,469 +72115,273,7,10801,66875 +72116,155,3,33273,102221 +72117,317,10,53358,147967 +72118,25,2,356500,1410275 +72119,273,7,300669,14351 +72120,234,1,201198,5602 +72121,234,1,351809,212687 +72122,226,2,12102,1534640 +72123,387,10,29224,69174 +72124,245,3,6068,1536380 +72125,190,7,5551,1377126 +72126,269,9,17015,1155250 +72127,34,8,2105,1428210 +72128,234,1,55032,37915 +72129,204,9,49524,1195362 +72130,52,10,25684,19687 +72131,234,1,21620,122441 +72132,411,9,273481,1206767 +72133,234,1,117913,95040 +72134,273,7,40688,38335 +72135,108,10,3085,4341 +72136,387,10,12255,71955 +72137,132,2,773,1418453 +72138,196,7,9835,58363 +72139,413,11,31473,91021 +72140,166,9,419430,1761129 +72141,234,1,103215,1033136 +72142,75,5,22477,1459590 +72143,34,8,293660,1552332 +72144,105,7,14254,19155 +72145,234,1,16866,117052 +72146,53,2,38099,119623 +72147,3,5,26323,8713 +72148,226,2,3023,29640 +72149,3,5,159667,1159346 +72150,269,9,55420,1799864 +72151,203,1,28739,1407902 +72152,3,5,296626,79392 +72153,387,10,19606,190736 +72154,413,11,30082,53713 +72155,387,10,302528,1384672 +72156,387,10,11139,68315 +72157,317,10,16137,79546 +72158,249,7,10070,1399122 +72159,250,11,339342,1309923 +72160,317,10,33134,123537 +72161,181,7,271714,8653 +72162,160,3,310137,1748761 +72163,387,10,2731,27724 +72164,3,5,94874,1361744 +72165,413,11,39907,545212 +72166,200,3,97614,1419724 +72167,269,9,48153,1765 +72168,132,2,257345,1402475 +72169,148,9,30126,1335586 +72170,234,1,63081,148535 +72171,273,7,10999,1729 +72172,413,11,36786,51767 +72173,317,10,123634,1078399 +72174,234,1,103731,71872 +72175,234,1,47444,1068135 +72176,234,1,362974,1293597 +72177,269,9,1361,16411 +72178,234,1,107104,937544 +72179,234,1,28171,120226 +72180,105,7,321142,1403807 +72181,153,6,255343,1512775 +72182,52,10,42251,102605 +72183,234,1,11045,20400 +72184,60,1,38807,1337760 +72185,387,10,84336,1142742 +72186,176,3,10727,1418282 +72187,234,1,18512,14520 +72188,296,3,544,1570748 +72189,204,9,3036,29858 +72190,269,9,1950,4197 +72191,3,5,9667,9573 +72192,250,11,237584,1579044 +72193,317,10,292014,1425609 +72194,273,7,9301,1075 +72195,155,3,32085,9622 +72196,52,10,80928,5449 +72197,60,1,90590,1708437 +72198,3,5,35052,943 +72199,148,9,41357,8867 +72200,3,5,75233,71621 +72201,3,5,339527,53841 +72202,77,10,10041,62342 +72203,53,2,14372,7238 +72204,289,6,809,1460608 +72205,204,9,32088,65661 +72206,239,5,45019,1521476 +72207,413,11,296313,15084 +72208,39,3,4248,1414748 +72209,317,10,19371,62043 +72210,298,5,245891,1417882 +72211,413,11,1902,19845 +72212,387,10,12079,71331 +72213,158,2,13162,1532326 +72214,3,5,12311,120313 +72215,262,6,188927,1439740 +72216,234,1,11137,63713 +72217,234,1,49653,142617 +72218,175,5,157354,1535111 +72219,127,3,8470,932748 +72220,234,1,31324,32427 +72221,317,10,144331,1153617 +72222,349,1,10198,1615571 +72223,3,5,128089,1282005 +72224,204,9,1640,1457819 +72225,234,1,26491,61357 +72226,234,1,444713,110292 +72227,387,10,296523,53935 +72228,234,1,18283,13980 +72229,204,9,423988,1872767 +72230,234,1,361018,1513531 +72231,387,10,258509,11707 +72232,387,10,18890,26095 +72233,204,9,30624,3358 +72234,226,2,10320,1821177 +72235,210,9,2567,1347759 +72236,53,2,52959,1343967 +72237,3,5,28295,14431 +72238,317,10,37269,117312 +72239,387,10,87302,1185042 +72240,234,1,18691,43816 +72241,387,10,9423,20757 +72242,317,10,37126,76882 +72243,387,10,43846,117720 +72244,387,10,294016,1224748 +72245,269,9,158947,1350575 +72246,301,5,263472,1714333 +72247,262,6,435,6037 +72248,273,7,129553,29330 +72249,401,6,9982,1713398 +72250,234,1,82395,29287 +72251,221,3,9716,1562121 +72252,203,1,8669,1399521 +72253,387,10,9889,60006 +72254,413,11,419430,995462 +72255,317,10,85516,589933 +72256,413,11,292656,1363887 +72257,296,3,11024,1673526 +72258,346,3,7454,1404873 +72259,141,7,2454,1515651 +72260,317,10,43759,92720 +72261,387,10,44155,72266 +72262,269,9,238,2875 +72263,53,2,321315,1620689 +72264,387,10,136799,486 +72265,317,10,274820,114598 +72266,83,2,33586,1412642 +72267,234,1,123047,17784 +72268,53,2,12454,36591 +72269,269,9,10860,14879 +72270,196,7,29136,1436522 +72271,398,9,49308,1351636 +72272,203,1,333663,1547156 +72273,317,10,138222,1108200 +72274,413,11,310133,1458713 +72275,327,7,935,1189045 +72276,74,5,634,1576005 +72277,234,1,56596,93382 +72278,413,11,13788,20382 +72279,127,3,69,1665465 +72280,75,5,271404,1764801 +72281,3,5,4688,2423 +72282,234,1,77776,146717 +72283,269,9,323315,1425662 +72284,415,3,325803,1428043 +72285,13,5,41213,1461582 +72286,333,2,197,1249773 +72287,209,7,198663,1367505 +72288,182,8,7299,1433737 +72289,346,3,28739,1407903 +72290,87,7,8053,1383921 +72291,234,1,311021,1090613 +72292,52,10,230182,196124 +72293,53,2,403867,1723505 +72294,97,7,17577,1302967 +72295,234,1,313628,568019 +72296,333,2,55534,1406582 +72297,317,10,47238,109598 +72298,234,1,328032,66059 +72299,148,9,120259,7687 +72300,387,10,221171,1084403 +72301,387,10,87123,128782 +72302,234,1,17139,123150 +72303,182,8,74,1546879 +72304,148,9,157351,1281880 +72305,387,10,11509,69666 +72306,203,1,227975,1439118 +72307,105,7,291164,577751 +72308,317,10,98025,499710 +72309,141,7,1450,68016 +72310,105,7,14916,11468 +72311,317,10,8063,25316 +72312,234,1,57749,236861 +72313,204,9,43880,9062 +72314,204,9,91961,1132129 +72315,234,1,16090,19093 +72316,220,7,43346,39055 +72317,387,10,15387,135679 +72318,387,10,18642,105568 +72319,387,10,16066,79132 +72320,198,6,332567,1644254 +72321,333,2,19140,4352 +72322,387,10,62492,198148 +72323,289,6,53211,100890 +72324,204,9,75174,23414 +72325,413,11,341957,563578 +72326,234,1,121510,1074446 +72327,270,9,12594,1677572 +72328,72,11,330770,1616023 +72329,75,5,257088,131516 +72330,204,9,169934,79738 +72331,158,2,337339,1725745 +72332,125,2,283995,1815828 +72333,3,5,174769,3351 +72334,317,10,367412,136495 +72335,273,7,102382,558267 +72336,234,1,88390,33883 +72337,409,7,442752,1761926 +72338,3,5,2180,22326 +72339,317,10,96712,143036 +72340,234,1,13507,1011158 +72341,179,2,287,91916 +72342,53,2,177902,33176 +72343,234,1,47084,1261117 +72344,3,5,47540,37004 +72345,234,1,112130,198612 +72346,289,6,245536,1280968 +72347,135,3,308269,1447912 +72348,148,9,44945,1367662 +72349,53,2,369406,1538842 +72350,234,1,194509,89914 +72351,105,7,46830,63964 +72352,413,11,10539,56270 +72353,387,10,193893,65734 +72354,394,7,340275,1333223 +72355,99,3,5915,1608791 +72356,234,1,72278,146357 +72357,3,5,753,7067 +72358,143,7,1396,1632786 +72359,333,2,97365,1727621 +72360,3,5,216580,372442 +72361,72,11,398289,1621800 +72362,113,9,10929,11821 +72363,234,1,79728,587903 +72364,209,7,26390,1407206 +72365,328,6,1271,1394750 +72366,387,10,45838,89602 +72367,53,2,375012,1452223 +72368,289,6,10539,384204 +72369,317,10,10041,118901 +72370,64,6,508,7051 +72371,286,3,89445,10051 +72372,413,11,10866,67560 +72373,11,6,81310,143786 +72374,85,10,174278,1613383 +72375,72,11,93856,1409876 +72376,148,9,299,10918 +72377,182,8,332662,1570523 +72378,53,2,1637,7735 +72379,273,7,75622,53712 +72380,53,2,214756,47294 +72381,5,10,42739,1332909 +72382,234,1,136582,1106029 +72383,45,9,294272,1660708 +72384,40,1,10066,1584249 +72385,234,1,42242,15630 +72386,234,1,31254,1030630 +72387,234,1,80094,124137 +72388,67,10,15653,549347 +72389,289,6,11024,1461155 +72390,3,5,40229,17146 +72391,387,10,9099,55373 +72392,413,11,116312,1174925 +72393,262,6,189,25453 +72394,387,10,166621,1017989 +72395,289,6,57089,1460201 +72396,209,7,14181,1397736 +72397,413,11,267310,1451448 +72398,317,10,16015,19347 +72399,143,7,954,900 +72400,317,10,109379,1043435 +72401,419,10,317198,1512121 +72402,269,9,5,3117 +72403,176,3,186869,1862924 +72404,53,2,26149,20172 +72405,234,1,65048,227311 +72406,189,3,2662,1603323 +72407,317,10,56329,31033 +72408,234,1,95756,131617 +72409,3,5,362057,1155550 +72410,3,5,8008,53850 +72411,207,3,9882,13050 +72412,105,7,15935,78965 +72413,3,5,59965,17629 +72414,317,10,69560,132578 +72415,45,9,72545,1412772 +72416,413,11,43211,67974 +72417,157,3,54801,232212 +72418,387,10,14050,35550 +72419,234,1,72279,57641 +72420,234,1,44303,114352 +72421,269,9,319340,1364139 +72422,413,11,80539,37242 +72423,75,5,10727,1418303 +72424,413,11,10137,51701 +72425,273,7,9298,57205 +72426,226,2,84226,1418418 +72427,269,9,15472,74759 +72428,3,5,98115,1702800 +72429,273,7,24363,17767 +72430,387,10,22387,115849 +72431,179,2,109424,1329113 +72432,234,1,284013,39719 +72433,5,10,115109,2156 +72434,324,3,35016,113595 +72435,413,11,281968,234483 +72436,273,7,76211,8503 +72437,87,7,1624,12945 +72438,158,2,15092,1414556 +72439,105,7,84030,543891 +72440,226,2,3513,32352 +72441,209,7,284052,1547667 +72442,52,10,18698,120198 +72443,398,9,8204,1482882 +72444,387,10,62034,32375 +72445,83,2,403605,1352420 +72446,189,3,9472,1403418 +72447,234,1,220287,1210543 +72448,213,10,47119,16988 +72449,413,11,12573,1223 +72450,317,10,204765,147040 +72451,3,5,360284,1085524 +72452,234,1,32233,25236 +72453,317,10,26146,117794 +72454,301,5,21927,1411672 +72455,190,7,19101,1565007 +72456,209,7,60599,1400507 +72457,273,7,11509,20897 +72458,15,6,8870,1459473 +72459,148,9,18977,1686743 +72460,187,11,7299,1424160 +72461,328,6,378018,1762263 +72462,75,5,10391,1398970 +72463,387,10,23048,347335 +72464,373,7,264525,1402206 +72465,196,7,18,1407812 +72466,387,10,49172,19713 +72467,234,1,38770,101373 +72468,411,9,13092,1104780 +72469,234,1,155096,1188 +72470,234,1,1561,10346 +72471,3,5,34650,10150 +72472,17,3,384737,1414158 +72473,277,3,14138,1452259 +72474,234,1,32074,1788 +72475,234,1,10849,1243 +72476,292,3,341174,1764541 +72477,52,10,32684,7748 +72478,307,6,88018,115754 +72479,292,3,10320,1815448 +72480,3,5,65545,1095564 +72481,234,1,205481,65879 +72482,234,1,43457,96071 +72483,141,7,38055,68016 +72484,399,9,13205,1767053 +72485,204,9,51549,20703 +72486,190,7,11377,1412177 +72487,286,3,48419,140475 +72488,234,1,33788,111389 +72489,413,11,47120,48789 +72490,403,10,166076,211962 +72491,317,10,63441,70675 +72492,331,3,10066,1864793 +72493,413,11,43829,10603 +72494,413,11,27276,58608 +72495,180,7,37628,1302465 +72496,317,10,53406,13848 +72497,395,3,109451,1460607 +72498,204,9,33511,22156 +72499,53,2,39957,66534 +72500,262,6,102632,1109234 +72501,87,7,10691,1541694 +72502,234,1,18616,30870 +72503,289,6,10837,1450331 +72504,200,3,12113,1017296 +72505,175,5,10096,1537179 +72506,328,6,9352,1391692 +72507,160,3,11017,1636755 +72508,387,10,76494,101903 +72509,213,10,295314,145162 +72510,3,5,257444,1308201 +72511,292,3,10066,1864788 +72512,286,3,13823,4501 +72513,97,7,10727,1405233 +72514,273,7,11889,1729 +72515,3,5,110980,108431 +72516,234,1,336029,524 +72517,53,2,705,4350 +72518,317,10,177271,1159663 +72519,52,10,269149,76595 +72520,314,2,245703,578730 +72521,269,9,26486,21747 +72522,203,1,47412,1372886 +72523,52,10,9593,57872 +72524,204,9,79735,21456 +72525,234,1,43792,95293 +72526,3,5,228970,1031978 +72527,317,10,16331,933415 +72528,234,1,370687,1103662 +72529,234,1,34496,1320556 +72530,23,9,5289,1335044 +72531,413,11,8491,16548 +72532,269,9,362703,1067942 +72533,148,9,13653,1816300 +72534,175,5,130948,1298943 +72535,34,8,245891,1512745 +72536,317,10,63273,1056733 +72537,317,10,248268,87438 +72538,148,9,2503,10124 +72539,3,5,13596,356 +72540,268,7,14979,1425911 +72541,75,5,56391,1725084 +72542,387,10,11103,69252 +72543,127,3,188102,1674894 +72544,387,10,5516,1223 +72545,387,10,137193,1106975 +72546,67,10,14128,1335240 +72547,148,9,397422,60194 +72548,415,3,121848,119537 +72549,234,1,122134,1868 +72550,5,10,43692,36894 +72551,234,1,38048,563882 +72552,75,5,94809,1125588 +72553,387,10,19423,146845 +72554,273,7,58080,18836 +72555,105,7,278717,1090937 +72556,234,1,341174,15890 +72557,387,10,8070,1650 +72558,234,1,37911,29907 +72559,234,1,8856,16513 +72560,148,9,244,3255 +72561,317,10,176124,1080286 +72562,269,9,10999,1096 +72563,102,3,9902,1600630 +72564,148,9,56135,8508 +72565,286,3,224813,1210336 +72566,232,10,58244,41968 +72567,166,9,84226,1418425 +72568,273,7,13549,29649 +72569,269,9,39436,101554 +72570,234,1,414749,57604 +72571,52,10,49521,525 +72572,158,2,59419,1526965 +72573,3,5,1810,30288 +72574,413,11,168259,1204244 +72575,3,5,377447,1824981 +72576,234,1,41234,32134 +72577,273,7,48627,3249 +72578,190,7,74,75380 +72579,108,10,27035,93322 +72580,340,2,109439,1387256 +72581,226,2,68737,1314465 +72582,234,1,48601,25340 +72583,317,10,54156,57229 +72584,87,7,9820,91142 +72585,234,1,285213,980218 +72586,182,8,271404,1419243 +72587,143,7,74935,1206803 +72588,74,5,354859,1884077 +72589,52,10,13654,1374575 +72590,268,7,17771,1602319 +72591,180,7,132332,12265 +72592,234,1,388055,1591875 +72593,148,9,2965,29060 +72594,413,11,408220,1033619 +72595,413,11,810,1546437 +72596,61,7,345922,1130715 +72597,204,9,134394,1322007 +72598,105,7,337339,6041 +72599,235,5,13075,1059168 +72600,234,1,118984,60513 +72601,75,5,206647,1403411 +72602,390,6,77459,1821424 +72603,394,7,13792,75559 +72604,226,2,47310,89538 +72605,12,10,126889,5046 +72606,234,1,152023,945058 +72607,234,1,18495,16544 +72608,273,7,11950,68858 +72609,387,10,11338,41184 +72610,376,10,136087,1105157 +72611,269,9,8942,90280 +72612,3,5,381073,1179891 +72613,60,1,458428,1820252 +72614,53,2,38807,38229 +72615,3,5,9793,57585 +72616,60,1,419192,1517638 +72617,113,9,245692,1574446 +72618,234,1,1926,20026 +72619,397,7,290379,27969 +72620,77,10,9551,57917 +72621,413,11,46623,10006 +72622,328,6,384737,1825455 +72623,394,7,238589,1345262 +72624,234,1,166901,173004 +72625,277,3,21159,91803 +72626,122,8,302828,1593266 +72627,387,10,7942,11108 +72628,287,3,392818,88560 +72629,226,2,3597,1746553 +72630,413,11,27259,15731 +72631,204,9,9904,60222 +72632,317,10,17940,1033696 +72633,333,2,302699,1002554 +72634,234,1,14882,77515 +72635,269,9,125510,52215 +72636,220,7,43833,39055 +72637,234,1,130881,68424 +72638,234,1,52039,145205 +72639,204,9,28668,1397403 +72640,148,9,25407,1339511 +72641,234,1,2160,7506 +72642,77,10,8341,54619 +72643,317,10,339145,223747 +72644,387,10,101838,14719 +72645,413,11,403570,1352446 +72646,413,11,114444,1115622 +72647,317,10,1690,16847 +72648,61,7,12103,548443 +72649,317,10,125727,1081568 +72650,287,3,336691,1547715 +72651,343,3,60568,1109778 +72652,413,11,166221,29405 +72653,213,10,67633,144632 +72654,387,10,7980,126 +72655,89,5,346672,1825672 +72656,269,9,210910,1350850 +72657,413,11,271718,993693 +72658,273,7,147722,100579 +72659,204,9,76170,52370 +72660,234,1,59434,33781 +72661,413,11,16083,13227 +72662,333,2,522,1223915 +72663,289,6,110416,1587697 +72664,413,11,24442,13350 +72665,5,10,193177,131454 +72666,3,5,254007,59435 +72667,203,1,222858,1341766 +72668,360,3,31911,1414994 +72669,415,3,110980,1631322 +72670,397,7,77412,27969 +72671,158,2,294254,1571488 +72672,3,5,49850,556736 +72673,250,11,365942,1722386 +72674,234,1,11589,54451 +72675,269,9,3072,30094 +72676,53,2,38150,1025704 +72677,234,1,345519,1376961 +72678,234,1,80435,589479 +72679,387,10,10867,5810 +72680,52,10,118131,1090667 +72681,234,1,173177,69038 +72682,148,9,41760,1864152 +72683,164,3,333352,1609848 +72684,273,7,20126,36931 +72685,239,5,16997,1048394 +72686,53,2,42309,62708 +72687,269,9,138222,139145 +72688,236,8,38027,1204805 +72689,317,10,44223,130524 +72690,11,6,64784,1148308 +72691,234,1,92311,119784 +72692,317,10,27993,11873 +72693,333,2,79521,4313 +72694,3,5,4806,7262 +72695,161,6,46738,1462852 +72696,208,2,167073,1466006 +72697,234,1,65603,133259 +72698,303,3,57749,1099702 +72699,175,5,72431,1484215 +72700,234,1,124042,175795 +72701,34,8,354859,1201956 +72702,317,10,27230,103318 +72703,333,2,45987,1711808 +72704,273,7,4964,41077 +72705,148,9,16551,15448 +72706,196,7,172828,1563670 +72707,413,11,744,909 +72708,269,9,278706,1640388 +72709,394,7,343934,1553974 +72710,413,11,10747,3643 +72711,234,1,37462,70308 +72712,317,10,142757,143676 +72713,317,10,45964,62555 +72714,203,1,23964,1378728 +72715,77,10,14078,76336 +72716,105,7,13056,60102 +72717,273,7,10041,62348 +72718,273,7,16296,63656 +72719,53,2,88288,20123 +72720,226,2,10053,1457834 +72721,160,3,354979,1385641 +72722,317,10,286789,25316 +72723,387,10,62755,92556 +72724,204,9,4133,34859 +72725,13,9,325803,1428033 +72726,53,2,60994,935719 +72727,268,7,356500,1328759 +72728,317,10,195867,106476 +72729,13,9,11202,1394775 +72730,143,7,401164,1286574 +72731,273,7,343921,1197076 +72732,289,6,98566,1459751 +72733,122,8,329865,1777665 +72734,317,10,80080,544648 +72735,3,5,2516,1043953 +72736,357,3,140607,1550766 +72737,387,10,81600,65472 +72738,46,5,1624,1602859 +72739,158,2,220820,1405267 +72740,413,11,42502,31220 +72741,53,2,71859,56417 +72742,397,7,83015,1621737 +72743,105,7,32043,59880 +72744,413,11,45827,109454 +72745,317,10,46738,1124448 +72746,387,10,31672,934929 +72747,291,6,33314,1402713 +72748,387,10,31512,131186 +72749,179,2,127521,1407695 +72750,148,9,33586,7440 +72751,64,6,197082,1598850 +72752,204,9,110980,120205 +72753,387,10,28367,131748 +72754,317,10,114872,2748 +72755,317,10,46007,116513 +72756,413,11,112287,1054383 +72757,53,2,83754,1294791 +72758,46,5,283489,1512025 +72759,317,10,18056,74429 +72760,234,1,49514,70109 +72761,273,7,108,1135 +72762,387,10,11859,61572 +72763,387,10,275696,1448106 +72764,87,7,25385,342032 +72765,317,10,338312,1092690 +72766,148,9,44626,7338 +72767,387,10,747,11108 +72768,387,10,11404,35005 +72769,203,1,24750,1712245 +72770,200,3,69668,1412712 +72771,147,1,126889,1816356 +72772,413,11,64807,46942 +72773,317,10,61580,480666 +72774,324,3,11832,1723388 +72775,234,1,73067,125543 +72776,225,7,10796,1735735 +72777,269,9,1877,24526 +72778,162,6,294272,1660724 +72779,105,7,208436,56134 +72780,3,5,10834,1632 +72781,3,5,45184,98442 +72782,198,6,25941,1558425 +72783,53,2,15476,1205323 +72784,5,10,4375,41625 +72785,53,2,352186,1472148 +72786,234,1,406992,17167 +72787,3,5,117251,402272 +72788,234,1,76871,32096 +72789,234,1,30155,68381 +72790,52,10,257447,154383 +72791,317,10,37305,69104 +72792,415,3,1278,16345 +72793,269,9,9993,61631 +72794,148,9,38162,33673 +72795,148,9,261036,1357586 +72796,53,2,286372,1375925 +72797,317,10,59230,15191 +72798,317,10,18809,8930 +72799,269,9,1278,13838 +72800,228,2,379019,1780182 +72801,291,6,26761,88664 +72802,53,2,14703,29800 +72803,234,1,31592,2917 +72804,105,7,162382,25321 +72805,92,7,30143,929979 +72806,273,7,31044,69343 +72807,269,9,99698,19773 +72808,234,1,91070,939123 +72809,53,2,57866,7652 +72810,111,7,274857,1815726 +72811,234,1,187737,25821 +72812,398,9,9102,1380382 +72813,413,11,19403,19245 +72814,387,10,6575,51851 +72815,3,5,493,6570 +72816,328,6,2567,8387 +72817,360,3,237584,1375909 +72818,3,5,9677,58485 +72819,210,9,384737,1825652 +72820,234,1,62762,584527 +72821,105,7,397520,29294 +72822,234,1,43524,87700 +72823,317,10,32195,238872 +72824,273,7,29290,50239 +72825,394,7,140607,71536 +72826,105,7,21927,1416933 +72827,413,11,72204,1449421 +72828,387,10,88953,1196881 +72829,64,6,325712,1648209 +72830,53,2,82,946 +72831,387,10,3036,4027 +72832,269,9,8870,9343 +72833,328,6,72431,113155 +72834,387,10,42709,128592 +72835,289,6,10693,109453 +72836,60,1,11137,1455486 +72837,75,5,76170,1402900 +72838,273,7,98277,1017243 +72839,189,3,7220,1393406 +72840,46,5,69974,557681 +72841,105,7,146216,37 +72842,53,2,4380,36809 +72843,234,1,24756,21394 +72844,234,1,323929,1423660 +72845,234,1,100814,80647 +72846,53,2,1976,4127 +72847,204,9,76757,1327144 +72848,234,1,52045,145234 +72849,97,7,9457,1371064 +72850,196,7,445993,1519461 +72851,387,10,54959,131346 +72852,387,10,229638,84940 +72853,75,5,429838,1734267 +72854,264,3,20986,109196 +72855,317,10,39127,12491 +72856,182,8,12103,8683 +72857,413,11,61548,12759 +72858,413,11,239498,27677 +72859,317,10,401427,1633090 +72860,394,7,178809,1392955 +72861,5,10,262338,53804 +72862,52,10,73313,129311 +72863,5,10,343369,1631643 +72864,369,6,12,7946 +72865,273,7,9624,7728 +72866,269,9,81616,53619 +72867,179,2,82,1206905 +72868,3,5,2108,3031 +72869,317,10,287281,1353914 +72870,203,1,121824,1377239 +72871,317,10,85916,138076 +72872,148,9,74911,11444 +72873,317,10,201223,78373 +72874,105,7,395914,1690611 +72875,387,10,98369,440517 +72876,169,3,206647,1551772 +72877,64,6,45562,999568 +72878,262,6,10529,1237711 +72879,413,11,325385,11358 +72880,53,2,354859,17063 +72881,77,10,6069,49819 +72882,148,9,19901,1097359 +72883,387,10,69278,555975 +72884,53,2,301804,61318 +72885,148,9,142391,1322107 +72886,269,9,15749,959549 +72887,83,2,68387,1446192 +72888,196,7,201085,1405361 +72889,11,6,49013,8040 +72890,286,3,26125,23461 +72891,226,2,18,1465667 +72892,413,11,10900,67699 +72893,298,5,10632,1409712 +72894,234,1,37923,16294 +72895,46,5,1966,1733728 +72896,317,10,58372,26488 +72897,289,6,72105,1455513 +72898,328,6,7299,56995 +72899,166,9,42418,1418320 +72900,317,10,28325,55647 +72901,234,1,37429,146445 +72902,317,10,31901,14255 +72903,52,10,549,7483 +72904,5,10,46149,135128 +72905,317,10,53358,71280 +72906,190,7,383538,1783012 +72907,387,10,319993,588822 +72908,273,7,423988,1815575 +72909,262,6,127585,1384386 +72910,262,6,16342,1335164 +72911,269,9,48319,1739507 +72912,373,7,13380,1545393 +72913,52,10,28712,14643 +72914,3,5,37929,38658 +72915,187,11,167073,40813 +72916,3,5,69165,11371 +72917,317,10,269246,1211813 +72918,11,6,283995,1660720 +72919,317,10,19325,35294 +72920,234,1,404567,99836 +72921,289,6,28032,1460500 +72922,346,3,197,1406927 +72923,317,10,32532,109314 +72924,75,5,10145,1446687 +72925,245,3,14476,1411677 +72926,234,1,5881,46280 +72927,262,6,19995,1271932 +72928,53,2,17770,19971 +72929,387,10,64310,21678 +72930,413,11,122,1390 +72931,77,10,939,2432 +72932,75,5,49009,1400316 +72933,234,1,84865,931400 +72934,72,11,28739,1407900 +72935,75,5,9514,1642515 +72936,317,10,112885,103688 +72937,3,5,11983,1129 +72938,411,9,267852,1591415 +72939,387,10,99261,1197369 +72940,317,10,100110,58245 +72941,52,10,96133,1085926 +72942,306,7,263115,113046 +72943,97,7,85414,8761 +72944,413,11,33472,29636 +72945,180,7,194407,137742 +72946,269,9,209401,19872 +72947,209,7,8619,1392736 +72948,333,2,16077,79186 +72949,148,9,6171,11822 +72950,234,1,70752,143019 +72951,413,11,51947,1138813 +72952,234,1,59572,229574 +72953,269,9,409502,1779349 +72954,179,2,4248,1327146 +72955,72,11,188102,1484757 +72956,291,6,9030,1368867 +72957,52,10,30624,106601 +72958,148,9,28304,7687 +72959,92,7,27599,568069 +72960,190,7,488,9951 +72961,45,9,6440,1425973 +72962,317,10,329868,119430 +72963,360,3,2898,1378165 +72964,87,7,153,40839 +72965,75,5,57419,1455005 +72966,148,9,315846,1681818 +72967,3,5,293660,959274 +72968,34,8,167,1549174 +72969,234,1,89606,118472 +72970,155,3,14430,1189633 +72971,413,11,292625,931443 +72972,45,9,294652,1475735 +72973,234,1,2577,172 +72974,182,8,293167,1453675 +72975,234,1,11206,9855 +72976,387,10,11475,16767 +72977,286,3,21214,41347 +72978,268,7,21338,1453175 +72979,204,9,55544,29153 +72980,60,1,693,1761064 +72981,234,1,257561,1065698 +72982,387,10,43923,53068 +72983,413,11,2428,7510 +72984,273,7,77022,551674 +72985,148,9,353462,12654 +72986,317,10,403429,937514 +72987,286,3,13056,68441 +72988,289,6,214756,1453594 +72989,234,1,384373,1180358 +72990,72,11,31911,68220 +72991,52,10,408381,1447687 +72992,234,1,73661,7319 +72993,373,7,13493,112609 +72994,287,3,241855,1470710 +72995,53,2,44190,1382957 +72996,226,2,210092,1193691 +72997,53,2,64786,1096192 +72998,273,7,390747,938459 +72999,164,3,376501,1792344 +73000,4,6,435,1593102 +73001,317,10,362541,1518575 +73002,234,1,13827,75882 +73003,273,7,11425,58289 +73004,317,10,254065,1212231 +73005,325,5,413782,1031598 +73006,105,7,130925,6898 +73007,190,7,176,1349969 +73008,234,1,508,7018 +73009,234,1,355984,1142319 +73010,204,9,406449,1436438 +73011,234,1,370168,1541542 +73012,234,1,423122,65133 +73013,143,7,141,1597 +73014,234,1,11000,5342 +73015,34,8,274857,1829844 +73016,387,10,32634,30491 +73017,303,3,28452,100907 +73018,387,10,39867,1184795 +73019,250,11,245168,1414101 +73020,52,10,19176,21864 +73021,3,5,8144,45671 +73022,234,1,98048,1016114 +73023,273,7,157354,928158 +73024,189,3,8470,1587376 +73025,413,11,19505,67846 +73026,86,3,8204,1458995 +73027,234,1,57544,57865 +73028,234,1,87827,1614 +73029,34,8,10204,40789 +73030,413,11,7088,1642889 +73031,333,2,240832,1412910 +73032,413,11,16164,294 +73033,234,1,51371,8635 +73034,269,9,9968,9819 +73035,204,9,99318,9062 +73036,97,7,10999,557528 +73037,60,1,26761,1529473 +73038,143,7,418437,1380479 +73039,5,10,80320,30507 +73040,269,9,35405,4616 +73041,413,11,36175,58445 +73042,234,1,28741,101809 +73043,317,10,284250,1718007 +73044,360,3,1294,1585885 +73045,160,3,17609,1323210 +73046,239,5,266102,1606172 +73047,387,10,330333,71378 +73048,97,7,15613,1341855 +73049,234,1,31498,90375 +73050,413,11,10440,10440 +73051,143,7,870,13248 +73052,317,10,245775,1008444 +73053,53,2,2976,6192 +73054,413,11,85160,1432468 +73055,52,10,15440,87877 +73056,204,9,18,8381 +73057,148,9,419430,60872 +73058,317,10,45215,13802 +73059,413,11,32082,50522 +73060,317,10,430058,1029239 +73061,203,1,109251,1518596 +73062,289,6,9514,1642598 +73063,269,9,13380,1380630 +73064,234,1,107287,96369 +73065,234,1,36883,1057663 +73066,234,1,269518,133090 +73067,208,2,6948,1326401 +73068,317,10,198308,17835 +73069,387,10,193523,227455 +73070,387,10,9529,57851 +73071,234,1,308640,1395183 +73072,234,1,2105,3289 +73073,387,10,121006,34741 +73074,236,8,6947,1403528 +73075,3,5,173467,1452049 +73076,387,10,72823,109704 +73077,75,5,90001,1563382 +73078,75,5,302828,1593261 +73079,3,5,8079,8322 +73080,60,1,238,718968 +73081,234,1,189197,166291 +73082,415,3,46567,4985 +73083,387,10,329682,129760 +73084,289,6,108048,1381309 +73085,155,3,2309,1467004 +73086,411,9,315664,1327443 +73087,387,10,30792,71032 +73088,52,10,316654,1255562 +73089,262,6,9902,1002652 +73090,148,9,211059,1289957 +73091,234,1,336666,1402358 +73092,413,11,124470,1448291 +73093,317,10,62692,44217 +73094,3,5,64720,71880 +73095,413,11,37958,17816 +73096,333,2,33673,4352 +73097,53,2,6973,51693 +73098,72,11,256092,1427467 +73099,204,9,76757,71579 +73100,180,7,43395,27969 +73101,262,6,354859,1413508 +73102,204,9,42512,13887 +73103,203,1,9675,1416438 +73104,204,9,43327,3358 +73105,234,1,110588,97903 +73106,387,10,11055,67954 +73107,333,2,52661,14713 +73108,53,2,42242,14827 +73109,148,9,302026,1570575 +73110,387,10,127812,128810 +73111,317,10,142881,142511 +73112,5,10,3016,29533 +73113,387,10,39056,77921 +73114,52,10,84720,124735 +73115,387,10,413770,1673803 +73116,234,1,91480,89674 +73117,75,5,9297,1423865 +73118,148,9,2687,906 +73119,34,8,13849,1413946 +73120,209,7,86829,1428845 +73121,234,1,45505,57832 +73122,413,11,9292,908 +73123,234,1,264080,40187 +73124,119,7,10590,57263 +73125,234,1,378441,1362644 +73126,277,3,15472,568070 +73127,218,1,43459,1087194 +73128,413,11,25568,77863 +73129,3,5,233639,1872 +73130,317,10,45928,134191 +73131,234,1,435707,931271 +73132,262,6,1271,6037 +73133,234,1,329868,119430 +73134,273,7,77165,29389 +73135,160,3,41283,1357063 +73136,269,9,38021,5270 +73137,53,2,334538,129988 +73138,317,10,199985,1180541 +73139,87,7,315335,1573342 +73140,5,10,25501,3335 +73141,416,10,55663,222885 +73142,234,1,13777,75296 +73143,413,11,26142,3274 +73144,413,11,34652,34439 +73145,97,7,14019,76268 +73146,269,9,23628,90421 +73147,289,6,24238,1454658 +73148,234,1,32558,49214 +73149,204,9,44398,1078629 +73150,401,6,9982,1578644 +73151,234,1,107705,235876 +73152,3,5,2640,16464 +73153,53,2,95536,1112004 +73154,175,5,236324,1896197 +73155,204,9,72856,9062 +73156,234,1,14138,81327 +73157,204,9,45098,38935 +73158,189,3,22881,1412333 +73159,273,7,392818,1451986 +73160,333,2,48202,1587453 +73161,387,10,39358,125968 +73162,317,10,2300,56643 +73163,175,5,11812,9360 +73164,387,10,24154,81721 +73165,11,6,136619,79545 +73166,175,5,16442,1592141 +73167,413,11,308165,85385 +73168,148,9,12591,159545 +73169,234,1,51739,144476 +73170,58,2,10804,1326461 +73171,317,10,32059,26095 +73172,160,3,8617,1345608 +73173,74,5,10727,1584237 +73174,182,8,309879,1626500 +73175,87,7,376501,1792346 +73176,3,5,26636,1149308 +73177,387,10,210913,144326 +73178,169,3,14126,1409223 +73179,413,11,19017,58135 +73180,317,10,83860,930213 +73181,259,3,17209,1418393 +73182,387,10,132859,135123 +73183,161,6,14,1753782 +73184,208,2,240745,1417862 +73185,234,1,11370,37710 +73186,387,10,15148,77947 +73187,234,1,135536,58021 +73188,3,5,71066,2005 +73189,234,1,30844,23841 +73190,317,10,383140,1521344 +73191,234,1,81996,67767 +73192,127,3,49521,1552521 +73193,5,10,46992,1836133 +73194,387,10,12601,65271 +73195,5,10,306952,71550 +73196,75,5,41213,1398519 +73197,3,5,154442,1273705 +73198,189,3,6947,1389573 +73199,175,5,381015,1828377 +73200,234,1,10379,16672 +73201,387,10,111836,1340792 +73202,317,10,76264,60447 +73203,226,2,10066,29087 +73204,387,10,423988,1815578 +73205,234,1,52949,19142 +73206,179,2,1877,1204006 +73207,317,10,116351,49505 +73208,244,3,435,66513 +73209,3,5,2140,997 +73210,289,6,80928,148148 +73211,3,5,16083,6389 +73212,269,9,236324,1550355 +73213,148,9,314371,1451387 +73214,327,7,1427,11606 +73215,273,7,43497,34016 +73216,415,3,11570,1588033 +73217,53,2,130881,1389237 +73218,317,10,31942,554191 +73219,273,7,12220,2585 +73220,234,1,10518,19304 +73221,196,7,19995,1401786 +73222,203,1,11096,1525957 +73223,268,7,2046,1511086 +73224,234,1,375082,1087280 +73225,394,7,293167,1556632 +73226,52,10,330459,1401796 +73227,198,6,206647,1551902 +73228,317,10,242097,1201 +73229,317,10,41468,103674 +73230,273,7,1421,18479 +73231,387,10,7340,27767 +73232,415,3,15794,1557103 +73233,387,10,353879,85048 +73234,204,9,259830,1340722 +73235,204,9,57993,5188 +73236,234,1,13205,15778 +73237,338,6,10066,1864801 +73238,234,1,114514,19744 +73239,52,10,155605,1136962 +73240,273,7,30155,143945 +73241,234,1,39939,52049 +73242,234,1,278738,1335498 +73243,12,10,408220,173658 +73244,203,1,22076,1398189 +73245,52,10,11688,70238 +73246,53,2,7220,11106 +73247,234,1,47002,55785 +73248,148,9,10860,1568719 +73249,179,2,126889,1334493 +73250,273,7,10603,9251 +73251,273,7,26758,10536 +73252,3,5,300187,51783 +73253,234,1,133255,592323 +73254,226,2,190955,1372078 +73255,333,2,10075,1146968 +73256,234,1,340961,67924 +73257,148,9,18671,1040308 +73258,53,2,72545,21004 +73259,269,9,63186,2366 +73260,122,8,8870,1609170 +73261,175,5,76757,1392245 +73262,52,10,70801,1368764 +73263,3,5,203264,33618 +73264,5,10,13549,74635 +73265,148,9,80304,6412 +73266,60,1,8276,54285 +73267,3,5,329682,1151804 +73268,3,5,266433,1195181 +73269,148,9,10391,957970 +73270,387,10,24810,76240 +73271,234,1,19082,1032 +73272,273,7,11234,68685 +73273,239,5,159667,1849519 +73274,234,1,277355,84335 +73275,234,1,27472,26502 +73276,413,11,8467,7414 +73277,75,5,13483,1402075 +73278,234,1,340881,1292455 +73279,317,10,117629,1169891 +73280,1,7,1578,72861 +73281,413,11,469,4429 +73282,413,11,11862,68755 +73283,234,1,53853,114337 +73284,333,2,10344,1446192 +73285,64,6,209032,562944 +73286,97,7,149509,1357060 +73287,273,7,172785,13083 +73288,127,3,297762,1824249 +73289,87,7,121674,1544338 +73290,3,5,241239,1046612 +73291,413,11,10610,56870 +73292,317,10,403330,1640137 +73293,148,9,30478,1376319 +73294,143,7,19901,577468 +73295,317,10,66193,228177 +73296,143,7,10238,1876239 +73297,373,7,41283,1404218 +73298,234,1,34774,5834 +73299,277,3,273404,1445369 +73300,234,1,84925,1037367 +73301,203,1,399790,1830186 +73302,52,10,13654,1106985 +73303,317,10,199155,19708 +73304,234,1,26644,107395 +73305,273,7,15559,94239 +73306,273,7,3087,30267 +73307,164,3,9785,1575865 +73308,127,3,9882,1717525 +73309,53,2,8906,13761 +73310,3,5,2124,10616 +73311,40,1,424488,1837276 +73312,401,6,109451,1447481 +73313,3,5,47955,792 +73314,413,11,382125,136362 +73315,317,10,43596,1310273 +73316,387,10,47504,20561 +73317,387,10,44081,1061523 +73318,269,9,11096,38411 +73319,317,10,51481,144298 +73320,175,5,369885,1548134 +73321,204,9,4476,37428 +73322,3,5,382501,232804 +73323,204,9,39130,1361701 +73324,268,7,2105,1724867 +73325,40,1,634,1363081 +73326,273,7,41468,16748 +73327,273,7,10407,63964 +73328,331,3,9593,1877115 +73329,13,3,378441,1797496 +73330,413,11,104251,1175869 +73331,3,5,10129,14614 +73332,415,3,966,4107 +73333,18,2,2105,1724860 +73334,398,9,328111,1479542 +73335,3,5,38269,12418 +73336,269,9,134394,34887 +73337,148,9,261249,1198731 +73338,105,7,27053,18479 +73339,234,1,334651,136834 +73340,204,9,43783,8506 +73341,226,2,26390,1406571 +73342,75,5,312831,1594154 +73343,15,6,82,92470 +73344,286,3,116711,406615 +73345,45,9,177677,1426314 +73346,373,7,283384,1429321 +73347,387,10,4365,37591 +73348,182,8,95516,1411137 +73349,234,1,10484,38507 +73350,175,5,98066,1420326 +73351,416,10,27637,66889 +73352,387,10,123961,1227350 +73353,328,6,287903,1569338 +73354,228,2,379019,1780184 +73355,105,7,286789,14807 +73356,387,10,77117,1456792 +73357,190,7,9902,1337457 +73358,198,6,10590,1566310 +73359,213,10,82817,140229 +73360,203,1,2001,1395687 +73361,317,10,277847,1216399 +73362,105,7,58918,1577008 +73363,413,11,318553,1396779 +73364,269,9,245703,928074 +73365,181,7,143946,1547496 +73366,104,7,9438,1550399 +73367,170,5,12,8135 +73368,262,6,10727,1418301 +73369,286,3,98369,1018931 +73370,238,7,1647,572622 +73371,229,6,283995,1461629 +73372,20,2,2675,18513 +73373,394,7,59962,113097 +73374,317,10,236737,85553 +73375,269,9,134201,1771037 +73376,291,6,8869,1552606 +73377,53,2,1896,19815 +73378,273,7,37126,101984 +73379,182,8,8617,91903 +73380,413,11,30352,2533 +73381,3,5,250066,17175 +73382,143,7,63215,23298 +73383,304,10,25499,593023 +73384,269,9,98349,71804 +73385,269,9,124470,66535 +73386,53,2,202214,1362703 +73387,3,5,259728,1301969 +73388,413,11,6935,51512 +73389,53,2,43432,1275907 +73390,317,10,13591,1926 +73391,387,10,43457,95963 +73392,22,9,159667,1519339 +73393,53,2,16232,86197 +73394,234,1,54198,144063 +73395,234,1,350060,1291496 +73396,226,2,68822,1492957 +73397,277,3,24657,1640417 +73398,317,10,9900,60148 +73399,286,3,13777,75290 +73400,187,11,949,1392901 +73401,317,10,111744,180163 +73402,52,10,16661,143558 +73403,53,2,9963,28162 +73404,250,11,223485,1408403 +73405,234,1,393172,77493 +73406,234,1,19715,11429 +73407,387,10,29239,1172272 +73408,204,9,193,2396 +73409,317,10,15902,1196242 +73410,75,5,10491,1189807 +73411,317,10,5,138 +73412,132,2,58244,1327213 +73413,208,2,257088,1638156 +73414,273,7,40139,98606 +73415,234,1,37410,91343 +73416,5,10,43915,68414 +73417,387,10,39938,1012037 +73418,234,1,145162,35325 +73419,175,5,1991,1386920 +73420,328,6,206647,1551907 +73421,242,9,120831,9062 +73422,333,2,109122,1066814 +73423,415,3,9846,92393 +73424,387,10,42819,54443 +73425,3,5,11139,38521 +73426,147,1,356752,1401187 +73427,87,7,356752,1841627 +73428,143,7,33613,1316933 +73429,314,2,359245,1638342 +73430,234,1,77137,85551 +73431,77,10,66628,1197951 +73432,3,5,43379,1531324 +73433,204,9,788,11713 +73434,317,10,40709,116014 +73435,304,10,56800,37303 +73436,104,7,205587,1547309 +73437,234,1,419459,1284099 +73438,204,9,142216,14323 +73439,105,7,9099,37 +73440,286,3,36325,1046692 +73441,53,2,120497,7652 +73442,25,2,315664,75083 +73443,269,9,3577,55354 +73444,203,1,12476,1391605 +73445,273,7,3595,1729 +73446,204,9,244786,1423985 +73447,329,3,9472,1562259 +73448,234,1,378018,1037999 +73449,387,10,11697,70037 +73450,75,5,124517,1080202 +73451,113,9,274479,1608762 +73452,387,10,104859,98293 +73453,108,10,19968,13019 +73454,234,1,441043,1755725 +73455,387,10,79372,29618 +73456,234,1,116351,80260 +73457,415,3,16176,1403317 +73458,387,10,15577,19000 +73459,198,6,68387,1531832 +73460,286,3,243935,4340 +73461,413,11,34078,1633097 +73462,413,11,27480,1185065 +73463,75,5,190955,1293457 +73464,387,10,83201,936668 +73465,317,10,414453,1555636 +73466,373,7,17622,1401320 +73467,105,7,112961,42383 +73468,373,7,16131,1335127 +73469,53,2,2034,957799 +73470,273,7,31472,559704 +73471,72,11,14181,1462705 +73472,3,5,86472,56033 +73473,394,7,33005,957840 +73474,53,2,74911,38229 +73475,209,7,10733,1387265 +73476,200,3,284289,1523028 +73477,67,10,664,1737121 +73478,387,10,2897,50300 +73479,34,8,9882,1464521 +73480,387,10,319340,1364491 +73481,234,1,66247,93194 +73482,234,1,181753,119784 +73483,3,5,258384,2579 +73484,269,9,333367,1892819 +73485,333,2,10632,1341847 +73486,203,1,167810,1423005 +73487,234,1,319396,1103831 +73488,234,1,36597,115677 +73489,298,5,245703,1399071 +73490,387,10,97051,1148277 +73491,413,11,25501,10853 +73492,53,2,35200,16596 +73493,179,2,10733,1328406 +73494,160,3,29372,88979 +73495,333,2,128412,1489482 +73496,200,3,228066,1384371 +73497,160,3,14476,122355 +73498,148,9,2300,10125 +73499,273,7,141819,63693 +73500,286,3,413198,130572 +73501,301,5,315837,1797207 +73502,387,10,42640,1403078 +73503,387,10,43321,80601 +73504,3,5,15089,136280 +73505,387,10,36113,131079 +73506,269,9,664,9990 +73507,360,3,223551,1263792 +73508,415,3,150712,1127069 +73509,289,6,9023,1113194 +73510,160,3,20242,61838 +73511,333,2,1375,14763 +73512,182,8,398633,1623938 +73513,262,6,108726,1412628 +73514,357,3,109424,1408385 +73515,317,10,30675,107629 +73516,53,2,464111,1451535 +73517,317,10,141868,89602 +73518,105,7,9778,37 +73519,203,1,7916,1438627 +73520,273,7,2757,1225 +73521,234,1,10097,19665 +73522,53,2,18801,1727969 +73523,387,10,49907,32375 +73524,387,10,3053,3556 +73525,3,5,35895,8620 +73526,234,1,47876,6835 +73527,415,3,71120,1656429 +73528,5,10,17692,8554 +73529,53,2,282268,8938 +73530,3,5,19096,10150 +73531,234,1,17457,81220 +73532,147,1,5924,1893882 +73533,204,9,1497,1334481 +73534,175,5,333352,1181575 +73535,79,7,634,1548132 +73536,181,7,352327,1367928 +73537,53,2,47921,7652 +73538,77,10,9655,40589 +73539,175,5,24657,1152382 +73540,269,9,444713,1760306 +73541,53,2,332979,1538810 +73542,317,10,25536,25239 +73543,413,11,241855,1705828 +73544,143,7,169881,1377262 +73545,317,10,54752,41184 +73546,324,3,166076,212618 +73547,234,1,85836,17282 +73548,333,2,1278,16341 +73549,148,9,285400,1209364 +73550,45,9,578,8573 +73551,387,10,147903,103674 +73552,5,10,97683,1102511 +73553,413,11,3144,30745 +73554,413,11,444713,35807 +73555,209,7,38322,1336197 +73556,53,2,398786,1665417 +73557,333,2,81475,1536540 +73558,179,2,145135,1417883 +73559,203,1,102668,1031769 +73560,289,6,11024,1461152 +73561,234,1,425841,99242 +73562,218,1,86920,1654341 +73563,234,1,87148,45577 +73564,190,7,1690,1889480 +73565,250,11,13336,1410602 +73566,160,3,16996,1559542 +73567,317,10,277688,1046489 +73568,373,7,170279,1396168 +73569,7,3,1624,1870774 +73570,387,10,1665,5216 +73571,204,9,11517,13933 +73572,234,1,177697,147428 +73573,3,5,44732,1396398 +73574,5,10,10467,65381 +73575,387,10,40221,233062 +73576,234,1,183946,1167115 +73577,160,3,24750,1338109 +73578,317,10,393367,1153023 +73579,166,9,12171,1421264 +73580,234,1,177714,1017185 +73581,327,7,19101,1413095 +73582,160,3,2924,16474 +73583,402,11,298,16306 +73584,234,1,358901,1507226 +73585,412,9,9593,1877102 +73586,52,10,33495,69040 +73587,67,10,18937,1205985 +73588,175,5,12594,1415109 +73589,234,1,46773,1050912 +73590,87,7,333352,223202 +73591,413,11,2565,66142 +73592,317,10,118490,1014024 +73593,413,11,277713,47204 +73594,77,10,10004,3027 +73595,3,5,598,8577 +73596,314,2,13075,1417861 +73597,3,5,79372,70 +73598,234,1,27432,97755 +73599,269,9,2924,1222 +73600,60,1,329865,1519868 +73601,273,7,709,7714 +73602,234,1,47493,1128 +73603,105,7,20646,35633 +73604,182,8,64215,1354360 +73605,232,10,5552,44070 +73606,387,10,280617,229164 +73607,220,7,3035,2085 +73608,3,5,8329,54520 +73609,179,2,354287,1334812 +73610,413,11,298228,98868 +73611,169,3,205587,1556315 +73612,413,11,331313,22303 +73613,30,5,283995,91122 +73614,317,10,336149,1581193 +73615,175,5,76170,1391729 +73616,127,3,10178,347770 +73617,234,1,11925,72682 +73618,46,5,19719,85124 +73619,127,3,11397,1813644 +73620,52,10,75564,549026 +73621,387,10,270336,228610 +73622,394,7,922,15432 +73623,3,5,169,2044 +73624,250,11,246655,1713075 +73625,209,7,334074,40827 +73626,317,10,227964,90616 +73627,77,10,5618,1963 +73628,209,7,296523,9351 +73629,234,1,49190,94003 +73630,289,6,39107,102294 +73631,3,5,37084,14284 +73632,161,6,176,1364422 +73633,234,1,66224,587997 +73634,317,10,293094,222319 +73635,234,1,46738,137427 +73636,273,7,46806,146180 +73637,208,2,289712,1316292 +73638,234,1,390547,1598657 +73639,20,2,2567,18125 +73640,5,10,127564,1085081 +73641,234,1,47446,65843 +73642,226,2,20126,1605251 +73643,234,1,62320,66150 +73644,387,10,38962,30040 +73645,273,7,10774,66715 +73646,187,11,9836,1401691 +73647,105,7,18467,1319445 +73648,143,7,189,1401134 +73649,413,11,120,1315 +73650,3,5,1922,19986 +73651,234,1,10837,67056 +73652,304,10,12273,1313744 +73653,317,10,59051,55117 +73654,179,2,206647,1545912 +73655,60,1,37628,1719804 +73656,273,7,10870,50954 +73657,105,7,170279,587209 +73658,3,5,43821,3356 +73659,52,10,105325,137195 +73660,317,10,101766,116181 +73661,403,10,125063,23858 +73662,234,1,3784,1201 +73663,234,1,93904,51918 +73664,234,1,288952,1157339 +73665,182,8,392818,1754084 +73666,413,11,24403,91583 +73667,234,1,227348,54248 +73668,286,3,285213,936834 +73669,317,10,49398,24381 +73670,413,11,27886,571988 +73671,204,9,40221,19309 +73672,317,10,325133,184582 +73673,203,1,109614,1457487 +73674,413,11,47186,47776 +73675,317,10,455661,1809042 +73676,269,9,15934,60870 +73677,413,11,151826,35889 +73678,160,3,13380,20976 +73679,60,1,18333,994406 +73680,287,3,46261,1425360 +73681,234,1,110588,81460 +73682,333,2,170279,16682 +73683,327,7,9946,14764 +73684,413,11,9894,9647 +73685,387,10,21352,932381 +73686,257,3,1586,1436481 +73687,408,8,14430,1521698 +73688,203,1,279096,1386329 +73689,387,10,18684,54212 +73690,234,1,279608,587664 +73691,203,1,302828,1494279 +73692,413,11,12124,71357 +73693,270,9,435,1391761 +73694,273,7,117,1259 +73695,413,11,41516,1047190 +73696,324,3,38099,11401 +73697,317,10,297853,9286 +73698,413,11,302026,1192405 +73699,232,10,39407,5028 +73700,234,1,174350,1143147 +73701,349,1,13205,1779880 +73702,234,1,152042,555094 +73703,5,10,10330,1485215 +73704,11,6,324670,1660719 +73705,3,5,94725,10418 +73706,277,7,315837,1550399 +73707,164,3,1294,1529813 +73708,52,10,77887,380765 +73709,72,11,76757,1453238 +73710,250,11,238589,1429362 +73711,234,1,17168,64796 +73712,317,10,90799,85841 +73713,157,3,57412,2489 +73714,169,3,107250,1834278 +73715,234,1,44933,89193 +73716,250,11,419430,1558723 +73717,273,7,20645,71029 +73718,234,1,448992,37313 +73719,64,6,434873,1588833 +73720,273,7,45935,551668 +73721,387,10,1726,18873 +73722,234,1,442949,1762637 +73723,234,1,176983,1057579 +73724,413,11,10610,58208 +73725,143,7,157424,1375910 +73726,289,6,80928,11426 +73727,387,10,68179,1098478 +73728,239,5,19101,1565164 +73729,234,1,162755,1065698 +73730,317,10,114444,1048402 +73731,196,7,1428,2294 +73732,234,1,62720,29625 +73733,234,1,16643,18356 +73734,148,9,9753,59398 +73735,235,5,315664,1391732 +73736,53,2,2300,3989 +73737,398,9,7445,1333901 +73738,52,10,3549,1012 +73739,148,9,110972,1499769 +73740,387,10,22307,1038558 +73741,317,10,99579,50538 +73742,387,10,65066,769 +73743,182,8,338,1585869 +73744,204,9,179103,33020 +73745,317,10,100275,166530 +73746,413,11,315855,1409537 +73747,273,7,55681,1898923 +73748,204,9,16307,961303 +73749,360,3,8915,1337453 +73750,317,10,56669,23649 +73751,387,10,203819,1186167 +73752,53,2,115712,1161455 +73753,317,10,38789,79172 +73754,53,2,84337,1097362 +73755,387,10,11329,69019 +73756,387,10,21468,122963 +73757,317,10,381073,1572172 +73758,53,2,31913,8885 +73759,416,10,469172,1199912 +73760,349,1,41493,1463245 +73761,317,10,46069,134343 +73762,196,7,9532,1368866 +73763,234,1,27122,56263 +73764,127,3,38322,1869023 +73765,22,9,12103,1318148 +73766,327,7,13336,37640 +73767,204,9,36960,22146 +73768,234,1,30307,64114 +73769,357,3,333371,1550766 +73770,217,3,2105,1219858 +73771,143,7,298584,1583135 +73772,234,1,254679,72496 +73773,179,2,11377,1332599 +73774,204,9,77964,7650 +73775,269,9,28893,2710 +73776,52,10,38107,88648 +73777,40,1,203351,1440662 +73778,273,7,27703,72679 +73779,273,7,39230,553391 +73780,262,6,354859,1468577 +73781,394,7,28178,1337463 +73782,205,10,377447,1820956 +73783,234,1,280019,1336940 +73784,387,10,1877,19713 +73785,413,11,13616,1316922 +73786,413,11,9325,57339 +73787,3,5,8588,55409 +73788,45,9,7916,1438595 +73789,204,9,1690,33933 +73790,413,11,18820,53018 +73791,3,5,45714,103237 +73792,387,10,68822,103393 +73793,3,5,30082,1470188 +73794,311,9,7220,1573605 +73795,3,5,11133,2082 +73796,207,3,41283,1393456 +73797,301,5,365942,1399877 +73798,105,7,13986,928205 +73799,182,8,70667,1448328 +73800,269,9,60665,991724 +73801,12,10,19286,70558 +73802,158,2,9358,1408194 +73803,373,7,8292,1341854 +73804,234,1,3937,34170 +73805,277,3,137504,1530407 +73806,52,10,45335,1224756 +73807,234,1,114577,1059013 +73808,387,10,4257,35796 +73809,105,7,91583,132879 +73810,182,8,8276,1544426 +73811,234,1,14615,68 +73812,234,1,106131,66496 +73813,105,7,3033,1225 +73814,175,5,294652,1698856 +73815,387,10,1991,138 +73816,335,6,395992,1715567 +73817,234,1,75138,96372 +73818,317,10,47446,1346171 +73819,387,10,26914,47116 +73820,328,6,333484,1580892 +73821,46,5,21828,88120 +73822,317,10,27711,98805 +73823,413,11,14750,16593 +73824,234,1,80032,148601 +73825,72,11,244786,1547662 +73826,53,2,6163,6802 +73827,262,6,369885,1417979 +73828,239,5,339403,1613212 +73829,234,1,30143,670174 +73830,175,5,49940,1545304 +73831,317,10,80988,1556856 +73832,187,11,27265,1223099 +73833,180,7,3085,1099274 +73834,175,5,12273,1705313 +73835,387,10,10344,4027 +73836,328,6,240832,1367819 +73837,262,6,2666,1392704 +73838,387,10,180635,2430 +73839,53,2,47900,1643230 +73840,67,10,14128,1447372 +73841,317,10,27935,99280 +73842,394,7,12831,9423 +73843,234,1,34869,113337 +73844,398,9,6972,7790 +73845,3,5,10274,43925 +73846,413,11,98349,11603 +73847,373,7,9836,75437 +73848,45,9,16996,1532726 +73849,413,11,18079,995378 +73850,269,9,69060,1027085 +73851,12,10,283445,928106 +73852,204,9,52867,9059 +73853,269,9,10354,369 +73854,22,9,359412,1820518 +73855,269,9,156981,1575334 +73856,360,3,62630,1423424 +73857,273,7,10727,6041 +73858,169,3,1877,1707415 +73859,169,3,18417,83092 +73860,148,9,1125,555 +73861,3,5,414453,1675340 +73862,204,9,34650,17763 +73863,317,10,59296,1239471 +73864,12,10,1726,18877 +73865,234,1,54384,150512 +73866,413,11,35292,9154 +73867,234,1,41645,43330 +73868,234,1,62012,17623 +73869,328,6,329865,1891015 +73870,333,2,18990,29671 +73871,386,5,469172,1159388 +73872,413,11,2274,21140 +73873,413,11,269,3838 +73874,175,5,62630,1423429 +73875,3,5,22606,33174 +73876,268,7,110412,1762453 +73877,234,1,8414,884 +73878,53,2,410537,1727203 +73879,3,5,34459,1204485 +73880,286,3,13848,22143 +73881,317,10,145135,116357 +73882,209,7,93856,1409877 +73883,298,5,634,1576007 +73884,413,11,352372,1582552 +73885,190,7,2321,142156 +73886,262,6,435,1392090 +73887,97,7,337339,1367362 +73888,387,10,8842,56511 +73889,317,10,117023,59776 +73890,76,2,140607,75803 +73891,234,1,26298,3776 +73892,387,10,35895,168126 +73893,75,5,10665,1815794 +73894,333,2,678,4313 +73895,413,11,102272,51083 +73896,317,10,69019,98539 +73897,234,1,36736,116076 +73898,387,10,103216,69973 +73899,273,7,1665,18510 +73900,273,7,2046,19155 +73901,289,6,291270,1453490 +73902,64,6,52021,1341446 +73903,360,3,76341,1337453 +73904,387,10,12902,113898 +73905,387,10,98115,110283 +73906,317,10,46387,110227 +73907,239,5,47653,30192 +73908,403,10,43811,22596 +73909,398,9,10796,1348789 +73910,234,1,310126,1397752 +73911,60,1,42345,1518586 +73912,148,9,17771,1387569 +73913,204,9,10724,8308 +73914,298,5,82,1404739 +73915,234,1,61939,130300 +73916,203,1,14979,1423771 +73917,105,7,237584,1029332 +73918,67,10,15213,1462617 +73919,3,5,28774,1244651 +73920,3,5,10872,5360 +73921,413,11,1723,2588 +73922,273,7,83782,50788 +73923,148,9,28290,9587 +73924,413,11,18093,1504744 +73925,387,10,66893,1095722 +73926,234,1,273106,1519552 +73927,268,7,15613,92378 +73928,314,2,4286,32353 +73929,127,3,28090,180830 +73930,234,1,322518,586116 +73931,208,2,42684,1319123 +73932,387,10,1899,20202 +73933,291,6,11370,1550844 +73934,286,3,112287,1054382 +73935,387,10,36797,35796 +73936,301,5,2604,19464 +73937,387,10,275269,1676433 +73938,291,6,174751,1538207 +73939,204,9,294690,1367213 +73940,341,2,121598,1880927 +73941,234,1,2608,21371 +73942,127,3,223551,1263801 +73943,52,10,110525,119392 +73944,105,7,425774,1708054 +73945,97,7,82624,1039265 +73946,148,9,133328,1663326 +73947,220,7,18843,146194 +73948,413,11,64129,26168 +73949,53,2,293625,1588197 +73950,269,9,9298,1321274 +73951,32,8,137504,1530408 +73952,75,5,177677,937946 +73953,148,9,137504,1530396 +73954,317,10,208305,41519 +73955,53,2,42139,931326 +73956,317,10,57351,225967 +73957,317,10,390376,1614409 +73958,298,5,334074,1400092 +73959,148,9,12220,1836470 +73960,5,10,86608,14644 +73961,158,2,10391,8287 +73962,273,7,23114,3249 +73963,105,7,13551,72448 +73964,273,7,9428,5666 +73965,333,2,40130,1600681 +73966,317,10,14476,1044367 +73967,148,9,22076,1324123 +73968,317,10,44123,130281 +73969,203,1,62492,1472430 +73970,234,1,22387,9054 +73971,234,1,137528,1196004 +73972,143,7,48962,1283141 +73973,259,3,83,1630619 +73974,5,10,20003,85452 +73975,317,10,422550,1622660 +73976,234,1,64483,1096377 +73977,234,1,621,8876 +73978,97,7,10999,1338831 +73979,53,2,55853,551788 +73980,234,1,116857,100036 +73981,204,9,156711,1327443 +73982,413,11,106747,2294 +73983,234,1,16083,79207 +73984,317,10,23096,8555 +73985,74,5,42418,1827965 +73986,148,9,153,1007435 +73987,234,1,179154,40256 +73988,413,11,1924,2523 +73989,147,1,461955,1833828 +73990,327,7,64215,1354356 +73991,99,3,22910,5695 +73992,355,11,14047,1392621 +73993,87,7,298,1889 +73994,3,5,127424,1688356 +73995,203,1,15045,1341815 +73996,234,1,262713,224419 +73997,317,10,21866,136194 +73998,234,1,83389,1414 +73999,166,9,443319,1439016 +74000,3,5,89591,1447962 +74001,333,2,15472,1455316 +74002,387,10,29338,50543 +74003,204,9,64928,7650 +74004,105,7,106049,41301 +74005,317,10,252680,844266 +74006,5,10,128364,1086965 +74007,413,11,84508,1602608 +74008,105,7,303857,555279 +74009,317,10,103236,81984 +74010,234,1,194817,1246494 +74011,143,7,55534,1427462 +74012,317,10,143946,1530374 +74013,269,9,47955,14900 +74014,413,11,55853,551787 +74015,52,10,81310,57335 +74016,234,1,106355,8838 +74017,317,10,89606,2662 +74018,53,2,113148,41680 +74019,39,3,3597,1790557 +74020,413,11,84720,30412 +74021,317,10,284467,41712 +74022,234,1,246133,1079368 +74023,317,10,186630,57641 +74024,53,2,64725,238476 +74025,143,7,260030,1453114 +74026,387,10,29372,103674 +74027,160,3,27460,1007395 +74028,60,1,43316,1607226 +74029,190,7,924,1551664 +74030,182,8,188927,1638556 +74031,413,11,120932,568782 +74032,234,1,42441,106345 +74033,413,11,2965,29057 +74034,203,1,55720,1395035 +74035,273,7,265180,1551 +74036,273,7,28847,1052143 +74037,387,10,52744,21136 +74038,3,5,94348,1033634 +74039,105,7,77473,1651537 +74040,67,10,345775,142070 +74041,269,9,107319,1559627 +74042,97,7,17771,113090 +74043,234,1,26036,2765 +74044,3,5,88794,460 +74045,53,2,209271,1394642 +74046,169,3,343934,1043368 +74047,296,3,9613,1529007 +74048,105,7,48243,589283 +74049,53,2,70436,37298 +74050,234,1,345925,67795 +74051,105,7,356296,966818 +74052,333,2,29143,1324003 +74053,317,10,100791,232858 +74054,175,5,193893,1378240 +74055,273,7,239018,62580 +74056,273,7,110,1346 +74057,84,7,4147,1443065 +74058,234,1,397339,152222 +74059,413,11,256962,23604 +74060,239,5,71329,1605718 +74061,5,10,10539,1299 +74062,413,11,3051,11124 +74063,52,10,49792,151286 +74064,387,10,12780,26760 +74065,226,2,21849,1605279 +74066,234,1,63568,142510 +74067,413,11,381054,1572157 +74068,301,5,173153,1428836 +74069,5,10,74436,524146 +74070,296,3,2662,1603307 +74071,269,9,6068,13304 +74072,113,9,10391,1404835 +74073,60,1,896,1559100 +74074,289,6,73690,117060 +74075,3,5,297702,1636840 +74076,196,7,310137,1510876 +74077,234,1,3933,510 +74078,234,1,238456,122597 +74079,53,2,24392,1328817 +74080,234,1,424661,145221 +74081,387,10,57983,119999 +74082,333,2,379019,1780123 +74083,333,2,46830,1535778 +74084,187,11,27265,113044 +74085,188,8,14019,76274 +74086,226,2,64807,1461192 +74087,234,1,11839,50577 +74088,273,7,296633,1294086 +74089,234,1,210079,1194392 +74090,413,11,17287,84271 +74091,234,1,32484,108987 +74092,105,7,362045,42804 +74093,155,3,9716,1661579 +74094,387,10,137315,1107181 +74095,45,9,293167,1759729 +74096,226,2,505,1534939 +74097,234,1,258251,83730 +74098,75,5,17744,1310263 +74099,3,5,36335,27926 +74100,317,10,107262,15631 +74101,273,7,9312,9204 +74102,3,5,12273,61919 +74103,317,10,83782,1153577 +74104,148,9,10739,957661 +74105,286,3,25768,14410 +74106,180,7,42852,1446434 +74107,105,7,72431,5287 +74108,413,11,11577,1724 +74109,289,6,3933,1448061 +74110,60,1,184741,1543598 +74111,328,6,44943,1403408 +74112,232,10,19103,11181 +74113,52,10,418072,1685110 +74114,3,5,175339,35413 +74115,234,1,44389,5656 +74116,387,10,11329,16305 +74117,182,8,294254,1406128 +74118,108,10,83015,11995 +74119,60,1,53798,121052 +74120,234,1,6977,1223 +74121,127,3,69,1552521 +74122,64,6,70074,1163148 +74123,148,9,33729,14826 +74124,273,7,246829,1282315 +74125,317,10,53403,13848 +74126,269,9,153102,29943 +74127,289,6,72105,1455533 +74128,387,10,13654,137903 +74129,387,10,41030,151569 +74130,52,10,204040,13971 +74131,387,10,131739,550813 +74132,317,10,108726,123219 +74133,398,9,10727,1391713 +74134,234,1,1415,16957 +74135,317,10,72574,57435 +74136,387,10,300690,1427685 +74137,365,6,152042,1517690 +74138,357,3,10590,1566250 +74139,333,2,15019,1555675 +74140,234,1,10129,14614 +74141,204,9,47493,1487474 +74142,105,7,226936,570154 +74143,415,3,601,20504 +74144,204,9,59965,1328144 +74145,203,1,205864,1603906 +74146,3,5,100669,954052 +74147,147,1,3059,29963 +74148,234,1,91067,933088 +74149,200,3,2503,1406836 +74150,360,3,283384,1429331 +74151,317,10,266022,92436 +74152,226,2,134394,1514152 +74153,273,7,11313,5359 +74154,53,2,53209,1176512 +74155,105,7,362617,1518728 +74156,317,10,42021,5396 +74157,262,6,328429,1589731 +74158,204,9,817,9648 +74159,413,11,145191,47639 +74160,180,7,935,12246 +74161,3,5,39356,55939 +74162,234,1,15372,78176 +74163,204,9,354979,1299406 +74164,182,8,317,1201953 +74165,108,10,11610,1243 +74166,387,10,29263,69315 +74167,273,7,20715,36697 +74168,45,9,1991,1420148 +74169,269,9,94725,1543116 +74170,234,1,39462,18598 +74171,413,11,345069,1478650 +74172,273,7,2990,947 +74173,317,10,9968,61154 +74174,122,8,10529,1567320 +74175,262,6,84178,1404273 +74176,387,10,8398,54839 +74177,77,10,125513,126260 +74178,18,2,104556,7338 +74179,317,10,256347,118901 +74180,204,9,357390,1559388 +74181,394,7,2662,148221 +74182,234,1,227266,162392 +74183,3,5,13614,3561 +74184,387,10,147722,86405 +74185,413,11,24709,1058622 +74186,53,2,409,5493 +74187,234,1,366759,74376 +74188,83,2,123109,1472873 +74189,387,10,20623,231357 +74190,12,10,12536,11505 +74191,381,9,33586,60630 +74192,317,10,27042,96998 +74193,317,10,14650,113610 +74194,204,9,258251,1348585 +74195,209,7,623,1767785 +74196,204,9,269258,1153036 +74197,394,7,1624,58362 +74198,234,1,16687,223533 +74199,234,1,100770,97570 +74200,234,1,2890,28725 +74201,317,10,152611,118303 +74202,209,7,9016,1813303 +74203,273,7,30363,4429 +74204,232,10,31417,5734 +74205,333,2,168676,1543259 +74206,204,9,10087,31172 +74207,234,1,143240,589507 +74208,413,11,428687,569737 +74209,289,6,81188,1447385 +74210,60,1,966,31871 +74211,234,1,32080,14054 +74212,333,2,37481,1339123 +74213,277,3,127372,1431510 +74214,317,10,228676,76462 +74215,57,2,10394,1411073 +74216,317,10,192023,1172462 +74217,76,2,634,1427823 +74218,3,5,10466,3097 +74219,269,9,857,2486 +74220,97,7,69974,557678 +74221,273,7,42542,65513 +74222,3,5,42752,128624 +74223,317,10,88176,1291145 +74224,45,9,328429,1636696 +74225,204,9,4893,40356 +74226,328,6,634,1433047 +74227,234,1,162862,93906 +74228,53,2,14138,1143244 +74229,234,1,67822,295305 +74230,317,10,53387,13848 +74231,314,2,69,1401606 +74232,273,7,60965,232060 +74233,234,1,85317,235112 +74234,204,9,9846,1710246 +74235,317,10,79120,586002 +74236,413,11,1904,950 +74237,196,7,2604,3193 +74238,303,3,435,1223327 +74239,387,10,10391,1812185 +74240,39,3,28178,1532364 +74241,277,3,15602,1551320 +74242,97,7,102629,1394336 +74243,387,10,64215,1354323 +74244,234,1,18551,10967 +74245,105,7,86828,1528 +74246,328,6,127585,1384375 +74247,234,1,43455,32134 +74248,387,10,39436,4955 +74249,269,9,22998,6584 +74250,204,9,6163,75830 +74251,105,7,4688,5581 +74252,226,2,19901,1418798 +74253,387,10,22701,89133 +74254,269,9,413547,1376996 +74255,3,5,104485,3239 +74256,317,10,35001,26959 +74257,87,7,72105,1555209 +74258,53,2,248698,1756137 +74259,3,5,12154,2723 +74260,22,9,381015,1828348 +74261,209,7,59296,1458533 +74262,317,10,197849,32069 +74263,203,1,353686,1494279 +74264,74,5,263115,1757629 +74265,328,6,1586,1194082 +74266,394,7,4806,1400558 +74267,387,10,14510,58046 +74268,387,10,122,128 +74269,413,11,664,493 +74270,234,1,68179,1098477 +74271,98,3,10320,1821198 +74272,413,11,286372,1375921 +74273,148,9,293863,1441806 +74274,303,3,108726,1095835 +74275,3,5,37238,57311 +74276,226,2,66193,1139644 +74277,175,5,6977,1395275 +74278,387,10,51481,106850 +74279,234,1,214105,95550 +74280,196,7,11024,1031810 +74281,75,5,975,40570 +74282,234,1,38326,557984 +74283,317,10,461088,1490059 +74284,273,7,35852,3098 +74285,373,7,238,3105 +74286,52,10,11639,55983 +74287,415,3,289,89533 +74288,413,11,11374,6190 +74289,286,3,28062,1264145 +74290,413,11,7220,11410 +74291,204,9,43211,1338656 +74292,239,5,356752,1841568 +74293,196,7,413452,1367131 +74294,413,11,232100,1323897 +74295,317,10,1396,8452 +74296,234,1,25797,94208 +74297,234,1,213755,50739 +74298,317,10,400465,126125 +74299,387,10,6023,47283 +74300,75,5,31131,1539403 +74301,317,10,398289,1397312 +74302,3,5,805,12846 +74303,234,1,85790,932609 +74304,234,1,37929,119146 +74305,3,5,32577,110587 +74306,287,3,68684,1304296 +74307,333,2,47410,138872 +74308,317,10,371818,1592938 +74309,187,11,378485,1742502 +74310,204,9,10389,1437881 +74311,204,9,17771,1571109 +74312,32,8,74,1415638 +74313,209,7,8247,1404326 +74314,387,10,8460,55873 +74315,273,7,10760,60068 +74316,415,3,55604,29984 +74317,53,2,43346,10181 +74318,234,1,73313,7510 +74319,273,7,40087,1384742 +74320,105,7,44257,5628 +74321,333,2,16374,1470206 +74322,234,1,165,24 +74323,105,7,35656,1137223 +74324,394,7,280092,1399631 +74325,387,10,227973,1527481 +74326,238,7,375012,1733926 +74327,196,7,10201,1408301 +74328,5,10,30941,147013 +74329,3,5,241239,1468585 +74330,15,6,168259,1442137 +74331,226,2,19912,1393580 +74332,203,1,69668,1426003 +74333,387,10,311324,121479 +74334,234,1,220154,96620 +74335,158,2,85350,1397852 +74336,303,3,242224,1371418 +74337,387,10,243940,67317 +74338,373,7,70074,1368866 +74339,190,7,8619,1377221 +74340,340,2,419430,1727200 +74341,87,7,109439,1192700 +74342,53,2,165,498 +74343,387,10,43195,24658 +74344,234,1,103433,30052 +74345,317,10,19255,84415 +74346,413,11,347945,141964 +74347,413,11,168259,1204245 +74348,175,5,17609,1400331 +74349,269,9,9495,1303 +74350,234,1,29903,52121 +74351,413,11,75174,60502 +74352,273,7,16174,29294 +74353,387,10,10013,62016 +74354,52,10,40765,124550 +74355,273,7,10770,18836 +74356,269,9,280030,1514991 +74357,52,10,197737,4341 +74358,234,1,85910,4964 +74359,269,9,325133,1417312 +74360,413,11,68050,4670 +74361,327,7,21927,1416950 +74362,317,10,95136,176402 +74363,317,10,363890,1675389 +74364,413,11,74126,1039764 +74365,52,10,116977,43518 +74366,413,11,236399,1009265 +74367,327,7,39053,1419812 +74368,75,5,9664,1398108 +74369,52,10,40952,1018950 +74370,317,10,53419,21308 +74371,203,1,10070,1440744 +74372,413,11,11232,6051 +74373,317,10,12622,73140 +74374,413,11,134475,98004 +74375,234,1,29907,52405 +74376,3,5,10003,10709 +74377,413,11,1966,20298 +74378,74,5,9593,1741629 +74379,301,5,9593,1391130 +74380,317,10,381356,1528536 +74381,273,7,276846,37241 +74382,3,5,378018,1064825 +74383,10,3,4248,1548851 +74384,234,1,312137,104227 +74385,141,7,22584,9102 +74386,226,2,228205,1521490 +74387,140,9,19995,1438901 +74388,234,1,177043,15378 +74389,234,1,356191,591426 +74390,234,1,19901,56502 +74391,53,2,352025,1036570 +74392,413,11,104211,9082 +74393,317,10,39578,123207 +74394,52,10,277396,109469 +74395,317,10,222517,1083202 +74396,103,6,346672,1721337 +74397,234,1,208700,110059 +74398,387,10,14916,1430510 +74399,413,11,83430,54260 +74400,127,3,52661,151630 +74401,234,1,64936,1150 +74402,166,9,72545,1391564 +74403,387,10,76640,1143493 +74404,234,1,103432,35525 +74405,239,5,313922,1616458 +74406,273,7,6934,51468 +74407,234,1,174309,588736 +74408,105,7,5393,43104 +74409,3,5,66812,11530 +74410,387,10,31899,1302257 +74411,53,2,8079,13921 +74412,387,10,27332,15858 +74413,269,9,9406,1166050 +74414,5,10,286521,1361163 +74415,262,6,240832,1367821 +74416,53,2,225044,1316449 +74417,148,9,366045,1514574 +74418,273,7,127812,8619 +74419,234,1,41783,20640 +74420,413,11,82079,1445700 +74421,97,7,5237,1427551 +74422,413,11,71503,71006 +74423,75,5,222935,1307423 +74424,60,1,6973,61523 +74425,289,6,134360,557250 +74426,179,2,293660,1327186 +74427,387,10,8080,11011 +74428,204,9,84708,1313060 +74429,203,1,9541,1224107 +74430,387,10,109690,1108104 +74431,234,1,14370,63713 +74432,273,7,105059,43973 +74433,74,5,10204,1535097 +74434,413,11,19545,1429147 +74435,105,7,5915,46591 +74436,189,3,403,1630684 +74437,143,7,300983,1643578 +74438,234,1,75101,1523983 +74439,188,8,10204,40786 +74440,317,10,44522,33781 +74441,317,10,384737,1583280 +74442,53,2,577,6392 +74443,69,10,25872,233247 +74444,234,1,24739,84906 +74445,238,7,169,1562804 +74446,317,10,99861,12891 +74447,52,10,122221,1195386 +74448,210,9,284052,1555810 +74449,387,10,109451,52935 +74450,234,1,29058,102429 +74451,158,2,243935,1414950 +74452,9,3,857,89426 +74453,269,9,26405,1479446 +74454,5,10,14088,133117 +74455,203,1,285,1400738 +74456,113,9,11880,1411330 +74457,250,11,228066,1574102 +74458,387,10,53945,73281 +74459,262,6,332567,1394282 +74460,413,11,86820,39108 +74461,203,1,2637,1492941 +74462,105,7,22140,1637 +74463,3,5,1482,36185 +74464,234,1,10274,32733 +74465,3,5,17927,11371 +74466,53,2,159211,999152 +74467,317,10,53423,13848 +74468,225,7,857,14657 +74469,181,7,246415,1439428 +74470,3,5,68684,1076356 +74471,413,11,81110,8821 +74472,387,10,384682,132315 +74473,317,10,90799,1173748 +74474,413,11,7326,52450 +74475,53,2,228496,1338141 +74476,157,3,5393,43092 +74477,413,11,27739,98868 +74478,413,11,12704,3099 +74479,317,10,64383,77131 +74480,166,9,5289,1335041 +74481,234,1,448449,92561 +74482,234,1,22606,88648 +74483,340,2,334074,1350258 +74484,373,7,228496,1338144 +74485,413,11,17015,33443 +74486,387,10,11876,39244 +74487,317,10,61266,1032164 +74488,262,6,435,1392097 +74489,60,1,921,8419 +74490,337,2,375366,1620301 +74491,387,10,33786,111360 +74492,60,1,14430,76869 +74493,3,5,57005,1004388 +74494,317,10,221135,128947 +74495,74,5,443319,1888980 +74496,105,7,351809,23595 +74497,262,6,28893,969797 +74498,3,5,10565,20608 +74499,234,1,279179,28369 +74500,387,10,27917,9952 +74501,53,2,64428,33219 +74502,234,1,25898,131443 +74503,105,7,24886,1451015 +74504,317,10,200796,1104819 +74505,53,2,10754,66456 +74506,234,1,36253,71174 +74507,5,10,11175,24530 +74508,52,10,91548,100505 +74509,317,10,142989,1118135 +74510,413,11,43727,66210 +74511,234,1,33534,146922 +74512,250,11,145135,1396825 +74513,148,9,2001,20570 +74514,105,7,66292,76888 +74515,113,9,198663,526180 +74516,394,7,190955,47817 +74517,373,7,51250,1305961 +74518,5,10,37917,1120127 +74519,221,3,102382,91151 +74520,234,1,165181,1681622 +74521,234,1,1691,16847 +74522,387,10,40633,84643 +74523,179,2,296523,1320552 +74524,53,2,61341,26146 +74525,3,5,469,6400 +74526,328,6,1251,1377129 +74527,75,5,414977,1676802 +74528,301,5,146233,1560966 +74529,317,10,21769,1256987 +74530,196,7,8915,1337465 +74531,273,7,333484,1654408 +74532,108,10,33704,1133587 +74533,387,10,209401,1192893 +74534,317,10,110491,1049444 +74535,234,1,73775,1162236 +74536,105,7,10871,7728 +74537,234,1,61341,124635 +74538,234,1,68191,70862 +74539,273,7,236399,60557 +74540,204,9,341174,1329480 +74541,273,7,11653,70692 +74542,204,9,65787,7337 +74543,373,7,302026,1570605 +74544,234,1,42837,13899 +74545,196,7,12171,1312810 +74546,317,10,120587,1112483 +74547,182,8,296523,1453675 +74548,234,1,43205,6778 +74549,234,1,13062,7918 +74550,60,1,120497,1533674 +74551,204,9,2974,29244 +74552,105,7,270007,965915 +74553,317,10,52959,93658 +74554,5,10,48627,145853 +74555,317,10,94365,118639 +74556,239,5,1902,1436789 +74557,143,7,96724,1409297 +74558,413,11,10070,62813 +74559,317,10,360603,36129 +74560,234,1,15613,27146 +74561,387,10,293167,57113 +74562,387,10,120657,128782 +74563,234,1,153,1769 +74564,387,10,6963,20647 +74565,204,9,4443,1615982 +74566,198,6,334074,1640706 +74567,204,9,230179,1002502 +74568,99,3,18,8392 +74569,169,3,10004,15434 +74570,317,10,12683,40607 +74571,333,2,38807,4352 +74572,234,1,16487,34517 +74573,317,10,257447,1297488 +74574,234,1,8584,46076 +74575,234,1,143946,76978 +74576,3,5,218784,51853 +74577,317,10,85038,223693 +74578,269,9,30690,1127497 +74579,234,1,21583,87672 +74580,105,7,205864,1350356 +74581,387,10,47561,94851 +74582,234,1,152570,1152356 +74583,387,10,43783,120464 +74584,196,7,241239,1388865 +74585,53,2,46786,1494277 +74586,387,10,334651,1145630 +74587,377,3,693,1569561 +74588,53,2,476,6392 +74589,394,7,84735,110274 +74590,175,5,13549,1418826 +74591,3,5,300667,5432 +74592,53,2,31682,936639 +74593,234,1,116232,89749 +74594,387,10,12112,71309 +74595,317,10,285840,1038002 +74596,413,11,332567,13245 +74597,234,1,16017,56195 +74598,262,6,443319,1402142 +74599,148,9,29959,34115 +74600,37,3,10198,1447573 +74601,143,7,21135,1625628 +74602,289,6,9664,1557585 +74603,273,7,48706,153 +74604,234,1,397520,96001 +74605,296,3,278632,1582590 +74606,3,5,62720,30970 +74607,269,9,38031,1253 +74608,419,10,35558,108784 +74609,269,9,68822,41011 +74610,5,10,143240,1730335 +74611,182,8,1579,1397850 +74612,97,7,14138,1391525 +74613,127,3,43522,88979 +74614,232,10,29259,103393 +74615,273,7,43252,4681 +74616,317,10,21583,87672 +74617,413,11,79120,586002 +74618,187,11,22881,1425343 +74619,317,10,266314,1127738 +74620,234,1,9389,57557 +74621,204,9,33345,1536255 +74622,317,10,278867,1553092 +74623,219,11,15,1435755 +74624,52,10,274479,17883 +74625,127,3,693,1674309 +74626,317,10,270842,554289 +74627,273,7,48636,1281505 +74628,148,9,3682,17873 +74629,11,6,12,1092247 +74630,289,6,74961,573309 +74631,77,10,796,11879 +74632,387,10,11658,1293675 +74633,377,3,10066,1864789 +74634,273,7,51759,1092856 +74635,234,1,42416,101590 +74636,209,7,10803,1312410 +74637,77,10,17445,34936 +74638,3,5,42418,51345 +74639,269,9,5237,590075 +74640,317,10,390059,229380 +74641,3,5,376570,1358568 +74642,234,1,228970,69371 +74643,387,10,43093,143522 +74644,53,2,10632,9255 +74645,317,10,339547,507840 +74646,234,1,135832,16886 +74647,234,1,74436,8823 +74648,52,10,311324,9182 +74649,317,10,150049,1295587 +74650,169,3,45244,1564090 +74651,413,11,7551,541 +74652,196,7,9457,1415464 +74653,373,7,10330,83091 +74654,387,10,9882,59978 +74655,413,11,42669,29998 +74656,234,1,353898,1066440 +74657,234,1,34899,107730 +74658,179,2,15019,1332497 +74659,387,10,69471,65315 +74660,226,2,297762,1824229 +74661,234,1,125521,126261 +74662,234,1,379873,89193 +74663,52,10,154,1792 +74664,234,1,336167,1455228 +74665,105,7,75204,574143 +74666,373,7,311291,568058 +74667,234,1,2830,12987 +74668,3,5,41211,997 +74669,200,3,11045,1416168 +74670,269,9,9836,59777 +74671,232,10,70801,148426 +74672,346,3,283384,1429326 +74673,72,11,181533,1418412 +74674,105,7,18047,10934 +74675,273,7,5721,43863 +74676,387,10,1924,55279 +74677,234,1,16137,79544 +74678,77,10,13090,74153 +74679,324,3,39101,112362 +74680,273,7,262338,1316284 +74681,260,2,394645,1775853 +74682,175,5,935,1378839 +74683,52,10,39345,69661 +74684,279,9,31773,9063 +74685,413,11,149509,64130 +74686,234,1,64204,238714 +74687,204,9,44363,1451401 +74688,3,5,322400,1660925 +74689,317,10,40258,1477153 +74690,3,5,10918,67469 +74691,234,1,322487,129097 +74692,234,1,23397,140354 +74693,234,1,17889,21506 +74694,286,3,256593,106654 +74695,317,10,45213,11528 +74696,5,10,63281,1304660 +74697,275,9,378236,958088 +74698,413,11,19918,964304 +74699,194,9,298040,1573573 +74700,273,7,9835,21962 +74701,234,1,181454,215726 +74702,3,5,19403,14456 +74703,234,1,3549,1011 +74704,234,1,12605,73076 +74705,204,9,9406,1002502 +74706,72,11,1058,15210 +74707,394,7,21338,1409485 +74708,105,7,9066,56889 +74709,234,1,16412,80523 +74710,105,7,15873,7182 +74711,234,1,167928,87322 +74712,357,3,395883,1193872 +74713,413,11,43117,2655 +74714,66,11,323929,172477 +74715,302,9,339403,1573010 +74716,3,5,12601,73064 +74717,387,10,831,120729 +74718,204,9,5237,16364 +74719,226,2,81522,1585999 +74720,387,10,395767,225407 +74721,234,1,21142,129482 +74722,234,1,634,9158 +74723,317,10,445993,228432 +74724,286,3,43372,1194837 +74725,234,1,58985,3110 +74726,413,11,11577,13721 +74727,67,10,3933,154705 +74728,333,2,29872,4352 +74729,204,9,20047,1376145 +74730,175,5,43231,1645741 +74731,387,10,47886,31775 +74732,105,7,15016,1011185 +74733,273,7,217038,1201671 +74734,239,5,395982,1118384 +74735,204,9,54660,2026 +74736,273,7,26963,35073 +74737,148,9,2577,26194 +74738,289,6,72640,936213 +74739,52,10,18209,56819 +74740,234,1,31390,7488 +74741,317,10,188180,1169877 +74742,273,7,9841,59811 +74743,10,3,8292,1999 +74744,317,10,229297,1243 +74745,317,10,24978,17840 +74746,387,10,9568,58047 +74747,277,3,425774,1708013 +74748,209,7,395992,1425513 +74749,234,1,20126,4955 +74750,234,1,95743,1006705 +74751,92,7,4974,409525 +74752,234,1,28044,87700 +74753,317,10,37708,984136 +74754,3,5,21866,22012 +74755,387,10,10857,67269 +74756,234,1,189151,144945 +74757,387,10,9827,29923 +74758,234,1,345888,1480520 +74759,289,6,9514,1642580 +74760,3,5,11011,36 +74761,12,10,18111,67054 +74762,398,9,1991,1386903 +74763,289,6,9297,1462686 +74764,234,1,121052,15175 +74765,234,1,26949,4786 +74766,317,10,23096,26511 +74767,234,1,7288,518 +74768,3,5,14452,68170 +74769,234,1,26969,96689 +74770,286,3,338312,37264 +74771,157,3,46931,1595990 +74772,204,9,64786,1096191 +74773,204,9,8247,14913 +74774,53,2,310135,1501950 +74775,269,9,193523,1173857 +74776,75,5,6171,1319634 +74777,53,2,412851,1599007 +74778,234,1,1361,16411 +74779,196,7,13483,92389 +74780,97,7,1579,113045 +74781,234,1,9555,13015 +74782,235,5,169298,1405335 +74783,387,10,12538,72714 +74784,181,7,4344,40482 +74785,352,3,163,1399890 +74786,273,7,73424,937954 +74787,53,2,272878,20826 +74788,234,1,300983,120953 +74789,234,1,37817,137057 +74790,204,9,145135,1113264 +74791,317,10,45949,45133 +74792,234,1,13022,59998 +74793,273,7,11475,69554 +74794,317,10,224944,1433398 +74795,198,6,10733,1571782 +74796,42,3,40466,1589185 +74797,234,1,55608,1199016 +74798,196,7,241927,1364796 +74799,317,10,29362,52115 +74800,413,11,5481,102113 +74801,317,10,8932,56376 +74802,234,1,19887,866266 +74803,250,11,69668,62723 +74804,97,7,365942,1341784 +74805,234,1,26298,95058 +74806,328,6,189,1401150 +74807,387,10,112083,12924 +74808,143,7,332662,1570529 +74809,333,2,23223,1062467 +74810,226,2,180576,1405373 +74811,387,10,173634,195916 +74812,388,9,15092,1414547 +74813,148,9,94671,65736 +74814,3,5,25674,56988 +74815,113,9,245703,1027140 +74816,3,5,12113,17649 +74817,204,9,300187,1331116 +74818,413,11,131764,68645 +74819,317,10,82624,5872 +74820,87,7,436,1052537 +74821,413,11,277713,1493209 +74822,413,11,25132,2294 +74823,373,7,57419,1600238 +74824,373,7,7326,1408284 +74825,273,7,374614,960370 +74826,53,2,56816,124862 +74827,190,7,256347,1338153 +74828,234,1,39056,77921 +74829,387,10,102444,184912 +74830,181,7,103215,45126 +74831,52,10,30875,44957 +74832,83,2,435,1405806 +74833,3,5,10134,63939 +74834,32,8,68715,1607446 +74835,413,11,9835,51758 +74836,175,5,21629,1404230 +74837,273,7,12085,71191 +74838,204,9,9441,62061 +74839,269,9,108726,1412624 +74840,179,2,10354,461 +74841,360,3,302699,1406084 +74842,234,1,215646,1287508 +74843,286,3,101242,1026682 +74844,413,11,6163,21272 +74845,60,1,130948,1298935 +74846,12,10,122857,8676 +74847,327,7,10733,960074 +74848,289,6,80928,225714 +74849,190,7,76203,75380 +74850,203,1,9423,1389601 +74851,3,5,19053,4434 +74852,234,1,52044,231438 +74853,413,11,200,2033 +74854,164,3,9946,1646230 +74855,234,1,445,6011 +74856,317,10,9404,120410 +74857,317,10,248698,114379 +74858,413,11,6068,7068 +74859,269,9,62630,943313 +74860,289,6,10527,1460608 +74861,258,9,14444,1447495 +74862,327,7,413762,1556424 +74863,148,9,23367,71560 +74864,317,10,30583,68885 +74865,53,2,63217,1132920 +74866,234,1,245158,21116 +74867,75,5,177047,1423865 +74868,413,11,59838,2773 +74869,200,3,435,1418473 +74870,234,1,326,4755 +74871,413,11,2323,10935 +74872,387,10,45512,30715 +74873,234,1,10071,59410 +74874,40,1,8665,55600 +74875,113,9,49009,1363346 +74876,75,5,336882,1566578 +74877,269,9,126250,6796 +74878,3,5,3478,24665 +74879,289,6,7459,1451684 +74880,3,5,9593,4501 +74881,292,3,2662,1603310 +74882,286,3,222932,960072 +74883,135,3,163,1538449 +74884,317,10,225283,1373735 +74885,273,7,9252,46029 +74886,75,5,167,1395276 +74887,317,10,71444,1248264 +74888,3,5,58757,228356 +74889,273,7,42402,1761 +74890,387,10,40719,34282 +74891,148,9,28425,12348 +74892,269,9,37917,10009 +74893,234,1,319993,588822 +74894,146,5,283995,1463718 +74895,234,1,47312,10076 +74896,234,1,365340,570753 +74897,273,7,199985,31543 +74898,234,1,15321,36083 +74899,72,11,277355,1495876 +74900,234,1,57809,146600 +74901,317,10,302828,1385213 +74902,147,1,3059,1513675 +74903,196,7,10326,83090 +74904,373,7,9428,1337464 +74905,158,2,76203,1393451 +74906,53,2,198652,1179379 +74907,333,2,5413,43157 +74908,333,2,58244,1618813 +74909,328,6,330459,1706711 +74910,387,10,32921,95945 +74911,317,10,243987,222152 +74912,317,10,39958,239995 +74913,164,3,58918,1817631 +74914,291,6,223485,1401788 +74915,387,10,120972,41010 +74916,234,1,27446,10146 +74917,413,11,167935,1063051 +74918,234,1,1579,2461 +74919,413,11,10760,54592 +74920,387,10,146,1617 +74921,141,7,8869,37038 +74922,413,11,10004,13672 +74923,105,7,117120,1301331 +74924,234,1,46010,107669 +74925,317,10,395763,57835 +74926,75,5,4955,40988 +74927,277,3,118957,1391723 +74928,52,10,102384,1367336 +74929,3,5,74505,572035 +74930,286,3,39413,63900 +74931,269,9,9354,13675 +74932,234,1,30817,98132 +74933,3,5,41468,927620 +74934,317,10,25855,135345 +74935,45,9,6163,1415517 +74936,289,6,433,63646 +74937,105,7,318922,56827 +74938,413,11,14683,66808 +74939,234,1,35856,235138 +74940,105,7,371459,28388 +74941,287,3,29938,64722 +74942,317,10,82098,35585 +74943,387,10,116711,51327 +74944,198,6,11618,15317 +74945,97,7,137145,1542310 +74946,234,1,29161,4955 +74947,387,10,314388,24011 +74948,87,7,311291,1556420 +74949,327,7,109391,40141 +74950,387,10,10436,1032 +74951,182,8,44943,1403412 +74952,387,10,476,5216 +74953,175,5,62728,1181554 +74954,317,10,63665,27436 +74955,234,1,135286,9740 +74956,317,10,16921,76452 +74957,273,7,168259,6041 +74958,317,10,11645,34372 +74959,413,11,188927,58193 +74960,105,7,237672,585212 +74961,204,9,10950,42635 +74962,373,7,294652,1410551 +74963,187,11,2503,1342658 +74964,413,11,59118,1094937 +74965,413,11,660,9954 +74966,143,7,46857,1595168 +74967,413,11,33789,572365 +74968,75,5,272693,1097118 +74969,413,11,62472,18600 +74970,273,7,204040,8503 +74971,189,3,1902,1830644 +74972,373,7,14510,229839 +74973,413,11,38404,30412 +74974,273,7,375366,1554206 +74975,204,9,2135,7733 +74976,317,10,114172,108474 +74977,3,5,16177,144161 +74978,387,10,26661,29632 +74979,317,10,268212,1722513 +74980,234,1,97365,17496 +74981,273,7,73247,491 +74982,317,10,87204,252729 +74983,317,10,166221,1188039 +74984,398,9,284053,1726885 +74985,45,9,1073,1792643 +74986,3,5,84336,1162217 +74987,13,3,10539,1432957 +74988,373,7,334074,117232 +74989,387,10,60899,70363 +74990,317,10,264393,110519 +74991,377,3,7299,1544415 +74992,245,3,148284,237968 +74993,53,2,33556,1756137 +74994,234,1,36527,18254 +74995,234,1,241953,1063830 +74996,234,1,26851,96446 +74997,60,1,117,1561591 +74998,317,10,44741,44964 +74999,280,2,332411,1454534 +75000,273,7,10873,67507 +75001,333,2,181533,1512761 +75002,413,11,207270,1096545 +75003,314,2,222935,1726775 +75004,190,7,18417,83082 +75005,387,10,18273,1207982 +75006,226,2,11058,1418014 +75007,204,9,42569,81519 +75008,175,5,5237,1427557 +75009,53,2,63215,1520899 +75010,180,7,15849,1532478 +75011,3,5,130450,8819 +75012,190,7,47921,1532476 +75013,3,5,10918,62956 +75014,387,10,15013,20766 +75015,3,5,43470,2774 +75016,269,9,29224,1027593 +75017,52,10,310137,32546 +75018,387,10,19719,15218 +75019,234,1,44246,40213 +75020,5,10,69605,46714 +75021,262,6,9286,1441362 +75022,92,7,26693,1179002 +75023,3,5,2486,22100 +75024,169,3,121598,961445 +75025,234,1,12763,60024 +75026,413,11,49013,59363 +75027,53,2,15476,1327247 +75028,333,2,15940,5333 +75029,60,1,2898,6187 +75030,333,2,294652,1475734 +75031,53,2,212756,1168764 +75032,53,2,73198,1533789 +75033,234,1,25473,29907 +75034,387,10,696,1243 +75035,148,9,788,11413 +75036,3,5,18079,1392556 +75037,158,2,293167,1759747 +75038,203,1,68023,550214 +75039,234,1,187458,932223 +75040,232,10,97910,103674 +75041,286,3,284279,1156988 +75042,75,5,287,1534828 +75043,317,10,40085,46620 +75044,148,9,10066,62745 +75045,226,2,78028,1758972 +75046,387,10,2267,23412 +75047,148,9,9613,23547 +75048,317,10,268321,17417 +75049,234,1,173300,1110926 +75050,53,2,40688,49913 +75051,287,3,54287,166269 +75052,234,1,383140,1169157 +75053,396,3,664,1271644 +75054,273,7,4338,37038 +75055,53,2,43395,11491 +75056,289,6,39101,122766 +75057,413,11,64414,45532 +75058,52,10,28668,140080 +75059,317,10,84348,141962 +75060,148,9,24420,960161 +75061,277,3,27973,14964 +75062,277,7,16090,85857 +75063,387,10,37103,29618 +75064,3,5,43457,2774 +75065,3,5,238204,1525468 +75066,60,1,29698,95843 +75067,273,7,1942,20131 +75068,262,6,127585,1384373 +75069,234,1,59118,51445 +75070,175,5,100669,1387186 +75071,175,5,226140,1201676 +75072,175,5,44363,1403196 +75073,250,11,39013,1078304 +75074,289,6,21032,1448089 +75075,204,9,110146,76087 +75076,64,6,921,14924 +75077,419,10,86543,57123 +75078,148,9,91607,1538857 +75079,317,10,27507,98014 +75080,226,2,42251,1446541 +75081,413,11,1850,5361 +75082,317,10,205939,930333 +75083,413,11,124597,1600706 +75084,317,10,30924,56961 +75085,317,10,68684,66823 +75086,76,2,131737,1542378 +75087,234,1,286657,1354695 +75088,158,2,4248,1667243 +75089,413,11,10476,53641 +75090,87,7,434873,1754129 +75091,204,9,30374,11558 +75092,317,10,107096,63937 +75093,200,3,44943,1403403 +75094,234,1,151826,145117 +75095,234,1,78258,65569 +75096,203,1,443319,1440744 +75097,158,2,9425,1377134 +75098,333,2,2262,9948 +75099,92,7,14916,1430517 +75100,75,5,311324,1394768 +75101,413,11,76543,33392 +75102,413,11,26149,27226 +75103,5,10,38749,1377839 +75104,179,2,1251,1377134 +75105,317,10,38060,65705 +75106,327,7,54845,1429531 +75107,394,7,170279,1396168 +75108,182,8,333663,1709125 +75109,60,1,27622,1507577 +75110,387,10,102949,32376 +75111,259,3,2105,1552178 +75112,387,10,11171,19224 +75113,204,9,2974,29684 +75114,387,10,27144,928831 +75115,234,1,20325,18738 +75116,53,2,33025,9064 +75117,273,7,15982,63923 +75118,394,7,202337,129691 +75119,317,10,81001,65401 +75120,234,1,118677,59330 +75121,333,2,13823,11298 +75122,234,1,37719,10790 +75123,198,6,329865,1646598 +75124,374,8,378441,1797462 +75125,373,7,401164,1286570 +75126,413,11,11607,64748 +75127,3,5,268099,36239 +75128,269,9,76163,59372 +75129,3,5,36635,14569 +75130,3,5,13842,50101 +75131,387,10,43499,51307 +75132,349,1,9982,1615775 +75133,60,1,126516,138042 +75134,317,10,148347,1127476 +75135,3,5,9354,2116 +75136,161,6,40466,1760153 +75137,317,10,247500,87063 +75138,234,1,109213,107301 +75139,3,5,27503,1498 +75140,317,10,155128,978927 +75141,387,10,258363,1299382 +75142,53,2,188102,1845747 +75143,232,10,26252,423541 +75144,317,10,42989,117295 +75145,262,6,223485,1376803 +75146,204,9,357706,1642547 +75147,317,10,455043,144490 +75148,203,1,23730,1534437 +75149,357,3,206647,1415157 +75150,317,10,151043,95008 +75151,413,11,47310,10218 +75152,3,5,29259,11988 +75153,77,10,12614,1927 +75154,213,10,3048,29881 +75155,32,8,198795,1421191 +75156,387,10,413232,130001 +75157,373,7,205584,1495858 +75158,269,9,215881,990070 +75159,373,7,274479,1364417 +75160,60,1,142656,1547483 +75161,307,6,3933,1448069 +75162,273,7,119409,17004 +75163,413,11,11694,20601 +75164,226,2,228066,1574044 +75165,413,11,16997,1128267 +75166,5,10,104374,46625 +75167,234,1,10333,10400 +75168,234,1,414771,1701497 +75169,328,6,2666,1392704 +75170,317,10,107985,11108 +75171,226,2,10178,31207 +75172,87,7,354979,1694432 +75173,387,10,578,8554 +75174,387,10,28,1776 +75175,317,10,84226,930642 +75176,105,7,366170,67945 +75177,53,2,786,11802 +75178,333,2,393445,1705468 +75179,46,5,251227,1286579 +75180,105,7,126889,549315 +75181,234,1,90001,550475 +75182,387,10,15,40 +75183,3,5,169758,949054 +75184,328,6,328429,1636714 +75185,208,2,37534,91854 +75186,75,5,413762,1120778 +75187,317,10,291155,567558 +75188,59,3,8467,1647465 +75189,106,3,77459,1821416 +75190,3,5,9900,7413 +75191,56,3,11633,57303 +75192,226,2,15045,1424894 +75193,413,11,48706,541 +75194,3,5,65496,66842 +75195,53,2,2321,557 +75196,273,7,50247,993312 +75197,387,10,65891,1376339 +75198,317,10,278867,481162 +75199,3,5,239562,33651 +75200,53,2,66741,1322448 +75201,232,10,35284,115598 +75202,317,10,258947,1619690 +75203,3,5,18826,19758 +75204,234,1,47190,1085341 +75205,387,10,4248,35746 +75206,317,10,29979,105432 +75207,273,7,1655,18400 +75208,413,11,436,5884 +75209,73,7,118059,27969 +75210,234,1,10915,35256 +75211,3,5,27970,78833 +75212,5,10,52362,145845 +75213,234,1,312452,1135153 +75214,234,1,91076,1241 +75215,23,9,7220,1707118 +75216,301,5,180305,1397588 +75217,53,2,2577,22968 +75218,413,11,169656,1308471 +75219,148,9,13005,1027800 +75220,373,7,169,1398123 +75221,234,1,73208,12804 +75222,317,10,120259,3376 +75223,53,2,196359,1324192 +75224,52,10,110416,96676 +75225,317,10,176085,1056060 +75226,234,1,37420,28239 +75227,287,3,210913,1405248 +75228,204,9,74911,4349 +75229,254,10,44658,109469 +75230,269,9,23223,1074839 +75231,198,6,334074,1640707 +75232,203,1,29444,1399029 +75233,298,5,7551,1403415 +75234,3,5,67018,45479 +75235,249,7,7916,1438605 +75236,175,5,365942,1367562 +75237,45,9,293660,1580827 +75238,234,1,32067,1148665 +75239,234,1,19552,107730 +75240,172,3,6947,1573116 +75241,148,9,88641,21797 +75242,52,10,43149,3241 +75243,166,9,10590,1378745 +75244,286,3,37935,72057 +75245,234,1,14794,78157 +75246,234,1,344906,73409 +75247,187,11,3057,1398180 +75248,60,1,16176,1860704 +75249,234,1,2454,5524 +75250,287,3,29787,11161 +75251,412,9,5,1851725 +75252,204,9,127380,1715750 +75253,5,10,51249,1113289 +75254,387,10,329718,106697 +75255,286,3,45384,4998 +75256,97,7,244786,1547657 +75257,53,2,1966,17166 +75258,387,10,43896,13802 +75259,234,1,429200,227564 +75260,273,7,9611,38335 +75261,317,10,141603,1115094 +75262,53,2,80276,1704828 +75263,269,9,425774,1578014 +75264,387,10,16442,84642 +75265,204,9,23048,1325907 +75266,317,10,33005,1596481 +75267,203,1,339994,1706507 +75268,101,3,12,1556635 +75269,302,9,365942,1738121 +75270,413,11,54111,10108 +75271,234,1,162382,1144650 +75272,419,10,47412,51695 +75273,203,1,47540,1468511 +75274,413,11,35129,143163 +75275,387,10,11897,69104 +75276,269,9,383538,1783001 +75277,234,1,34734,5917 +75278,273,7,49524,23486 +75279,413,11,40221,3121 +75280,234,1,27053,25161 +75281,289,6,9514,1642601 +75282,234,1,32634,8500 +75283,394,7,10929,1441250 +75284,3,5,244539,1209263 +75285,234,1,220820,137618 +75286,52,10,25388,19333 +75287,413,11,120837,107683 +75288,141,7,2105,21587 +75289,333,2,11517,1422054 +75290,317,10,175331,1028543 +75291,148,9,10774,41156 +75292,317,10,44741,53659 +75293,387,10,41121,125525 +75294,273,7,2454,5553 +75295,268,7,16436,1413961 +75296,204,9,116780,118314 +75297,3,5,11058,50140 +75298,52,10,10915,50818 +75299,234,1,46592,231414 +75300,262,6,286372,1378148 +75301,53,2,3870,18214 +75302,387,10,2140,61 +75303,52,10,27114,96255 +75304,254,10,86236,12415 +75305,269,9,42182,67240 +75306,286,3,27276,58608 +75307,333,2,44943,229166 +75308,387,10,31977,1616351 +75309,60,1,91583,1692506 +75310,269,9,209032,5000 +75311,196,7,6973,1413453 +75312,34,8,169881,1519299 +75313,234,1,58832,130266 +75314,317,10,112991,96919 +75315,387,10,1687,9916 +75316,52,10,75576,70301 +75317,234,1,11656,6648 +75318,269,9,33789,572366 +75319,273,7,65787,8503 +75320,413,11,59726,1324921 +75321,5,10,43457,112067 +75322,413,11,98368,1580066 +75323,234,1,887,10001 +75324,234,1,325690,1047948 +75325,42,3,9902,1643845 +75326,234,1,169298,21825 +75327,77,10,262,3660 +75328,236,8,220820,1405266 +75329,52,10,20424,120175 +75330,204,9,9462,1275667 +75331,208,2,82624,1300340 +75332,234,1,298751,1128397 +75333,273,7,203351,1189275 +75334,413,11,296025,56354 +75335,317,10,82481,31894 +75336,373,7,11202,3258 +75337,198,6,294254,1569332 +75338,413,11,30876,59367 +75339,373,7,22076,1398182 +75340,158,2,7551,1339455 +75341,269,9,158739,989751 +75342,250,11,102629,1429362 +75343,143,7,131343,1161456 +75344,187,11,251,10394 +75345,182,8,257088,1445896 +75346,317,10,288977,5550 +75347,234,1,183171,103931 +75348,148,9,39957,66533 +75349,387,10,118716,37364 +75350,317,10,68179,61372 +75351,262,6,315837,1426330 +75352,269,9,88641,1397305 +75353,234,1,6877,46076 +75354,413,11,60965,232061 +75355,60,1,77964,1570441 +75356,234,1,34138,29287 +75357,413,11,56599,554322 +75358,413,11,10921,67480 +75359,158,2,188927,1519437 +75360,127,3,75,1680739 +75361,301,5,1647,1177336 +75362,52,10,26326,83198 +75363,234,1,281291,148119 +75364,164,3,244610,99601 +75365,273,7,245700,957031 +75366,317,10,208091,1193917 +75367,411,9,203833,23489 +75368,226,2,1647,1409819 +75369,234,1,1984,20412 +75370,273,7,20640,8619 +75371,387,10,49907,5811 +75372,387,10,39407,1091264 +75373,234,1,27777,2000 +75374,52,10,180305,3027 +75375,234,1,427409,1713205 +75376,413,11,28417,966837 +75377,141,7,325385,1775351 +75378,234,1,52735,1654464 +75379,269,9,10066,62743 +75380,204,9,198227,1306282 +75381,234,1,18506,1233237 +75382,376,10,14830,87173 +75383,286,3,129,1249685 +75384,5,10,417678,1758795 +75385,5,10,3028,29533 +75386,175,5,53459,1437901 +75387,160,3,89492,13458 +75388,234,1,251421,33841 +75389,105,7,264646,59644 +75390,60,1,15472,1548599 +75391,196,7,270383,229893 +75392,52,10,46567,50818 +75393,269,9,24469,36205 +75394,234,1,11046,54451 +75395,262,6,273481,1402029 +75396,413,11,418378,1202439 +75397,234,1,16486,34517 +75398,246,6,126889,1746435 +75399,204,9,40719,34080 +75400,204,9,11096,60794 +75401,350,6,9946,1767320 +75402,273,7,15697,19096 +75403,234,1,22701,1542453 +75404,40,1,346672,1127472 +75405,273,7,241574,103356 +75406,203,1,244786,1450000 +75407,273,7,330418,1704068 +75408,301,5,373546,1869443 +75409,317,10,32654,109508 +75410,333,2,70074,578724 +75411,148,9,47739,1137341 +75412,317,10,349028,1211208 +75413,286,3,341957,1099157 +75414,289,6,12593,148823 +75415,67,10,15213,1462611 +75416,81,3,14430,1521700 +75417,3,5,5289,20065 +75418,53,2,55846,76972 +75419,239,5,52520,1579180 +75420,143,7,302026,15894 +75421,234,1,26368,572089 +75422,273,7,393562,110190 +75423,3,5,12309,72057 +75424,5,10,798,11920 +75425,291,6,245168,1032067 +75426,413,11,350060,23332 +75427,148,9,7006,53114 +75428,387,10,124057,30589 +75429,3,5,140894,223318 +75430,317,10,47310,13294 +75431,105,7,242042,40468 +75432,160,3,76163,1437716 +75433,387,10,74436,30294 +75434,387,10,71041,239355 +75435,108,10,120109,27916 +75436,75,5,10665,176687 +75437,244,3,167073,1544665 +75438,3,5,242076,51981 +75439,387,10,16643,72074 +75440,234,1,72733,262313 +75441,198,6,332567,1644255 +75442,204,9,267935,1384721 +75443,412,9,13798,1565849 +75444,317,10,297466,1270718 +75445,273,7,90110,98549 +75446,198,6,227306,1866325 +75447,58,2,32068,1807523 +75448,234,1,205818,1176379 +75449,196,7,257345,1403715 +75450,97,7,5289,1409737 +75451,175,5,44129,1400534 +75452,317,10,74126,145249 +75453,415,3,975,14561 +75454,234,1,79871,1069018 +75455,187,11,279690,1610191 +75456,317,10,167874,29388 +75457,394,7,1125,1428855 +75458,77,10,9589,24120 +75459,5,10,138486,1108913 +75460,413,11,80316,20601 +75461,226,2,6972,1311621 +75462,234,1,15356,78135 +75463,387,10,79775,127535 +75464,3,5,209293,959308 +75465,187,11,378236,1840315 +75466,105,7,254918,17767 +75467,234,1,270400,19119 +75468,234,1,69035,13488 +75469,3,5,261249,1375450 +75470,53,2,256092,79116 +75471,317,10,24020,238853 +75472,87,7,39053,1544312 +75473,182,8,194722,1636779 +75474,122,8,293660,1580845 +75475,387,10,99698,1012123 +75476,204,9,9966,61130 +75477,387,10,12759,63176 +75478,234,1,15073,143931 +75479,273,7,1377,16748 +75480,317,10,37984,25239 +75481,273,7,229610,2916 +75482,234,1,226167,90365 +75483,234,1,270221,1322594 +75484,317,10,184351,5451 +75485,327,7,340187,1579540 +75486,269,9,7454,1328387 +75487,413,11,11788,70506 +75488,413,11,78177,102445 +75489,234,1,48488,1020087 +75490,61,7,83,1390353 +75491,234,1,64861,95407 +75492,3,5,124963,11848 +75493,306,7,419430,1557612 +75494,179,2,24624,1540845 +75495,413,11,10433,3121 +75496,105,7,302026,57304 +75497,317,10,48594,145701 +75498,269,9,82703,175229 +75499,53,2,11011,51693 +75500,3,5,106887,1464628 +75501,208,2,55534,1509742 +75502,387,10,31671,20061 +75503,234,1,37083,96159 +75504,77,10,16523,110564 +75505,317,10,33534,1150877 +75506,317,10,169298,21826 +75507,317,10,206657,1490054 +75508,148,9,9977,5548 +75509,3,5,2029,20856 +75510,148,9,22476,1896852 +75511,317,10,116977,1214713 +75512,60,1,116312,1489872 +75513,317,10,102155,1030271 +75514,182,8,28739,1407896 +75515,413,11,430834,959688 +75516,301,5,203351,1307728 +75517,387,10,60807,1070462 +75518,105,7,31413,1410161 +75519,304,10,223946,84885 +75520,3,5,23628,90419 +75521,225,7,227975,1566088 +75522,3,5,7088,44087 +75523,273,7,10482,35079 +75524,169,3,11812,1422412 +75525,333,2,318553,1647030 +75526,234,1,8951,56842 +75527,53,2,3024,29652 +75528,175,5,287903,1391730 +75529,317,10,261112,1304491 +75530,387,10,4550,10099 +75531,64,6,328111,1535465 +75532,387,10,42418,71760 +75533,148,9,45013,1667823 +75534,286,3,76829,55386 +75535,387,10,11035,67884 +75536,204,9,44943,6045 +75537,179,2,117120,1437963 +75538,387,10,55624,6818 +75539,234,1,238307,933231 +75540,234,1,10740,66728 +75541,196,7,11236,1442217 +75542,273,7,42170,71029 +75543,317,10,22551,89293 +75544,273,7,14088,30027 +75545,3,5,245891,12033 +75546,277,3,28571,1533682 +75547,387,10,130278,1090952 +75548,413,11,201085,16984 +75549,52,10,28712,30522 +75550,387,10,295914,1372345 +75551,105,7,22007,60102 +75552,360,9,2978,1411264 +75553,52,10,120588,930386 +75554,387,10,85446,1079109 +75555,45,9,127521,1336511 +75556,373,7,273481,1342626 +75557,3,5,49514,70111 +75558,413,11,5123,2241 +75559,234,1,18405,94108 +75560,53,2,72313,26172 +75561,3,5,42062,3351 +75562,87,7,271718,1546047 +75563,105,7,257302,1308456 +75564,45,9,59115,1830878 +75565,60,1,11610,195972 +75566,328,6,16342,1335165 +75567,234,1,19150,84165 +75568,190,7,345922,1635187 +75569,45,9,263115,1693548 +75570,160,3,50725,1122560 +75571,317,10,337751,1462915 +75572,192,5,2454,1554889 +75573,105,7,9519,68355 +75574,234,1,79343,586602 +75575,148,9,47342,15427 +75576,3,5,254065,38697 +75577,3,5,34127,30258 +75578,317,10,260584,239685 +75579,175,5,9946,1400082 +75580,141,7,154972,43638 +75581,52,10,62472,1486726 +75582,234,1,105210,127440 +75583,317,10,300424,150856 +75584,160,3,1251,66226 +75585,204,9,376660,60596 +75586,317,10,41903,81986 +75587,328,6,6972,1401731 +75588,11,6,214756,1453007 +75589,148,9,207636,14963 +75590,262,6,44578,1530135 +75591,413,11,15592,1918 +75592,75,5,337339,405004 +75593,72,11,11688,1460431 +75594,234,1,89647,1018093 +75595,75,5,195269,97555 +75596,317,10,32202,16384 +75597,333,2,31275,1031157 +75598,234,1,114982,3776 +75599,273,7,31532,30256 +75600,234,1,59861,31 +75601,148,9,32634,31205 +75602,412,9,634,1575990 +75603,234,1,141267,138756 +75604,328,6,79316,1544368 +75605,20,2,10529,1567301 +75606,328,6,297762,1903928 +75607,317,10,68387,97948 +75608,204,9,4375,41627 +75609,196,7,11045,1364412 +75610,75,5,9358,1409743 +75611,317,10,209244,1187819 +75612,317,10,55628,29802 +75613,5,10,353641,1195630 +75614,387,10,227156,1349911 +75615,373,7,49009,16177 +75616,65,3,52454,1338421 +75617,234,1,21581,583726 +75618,333,2,14703,74693 +75619,273,7,84508,120014 +75620,175,5,35021,1611207 +75621,3,5,8998,47293 +75622,226,2,26390,1407191 +75623,413,11,283701,1100334 +75624,126,5,284052,1774235 +75625,234,1,229056,115466 +75626,76,2,356500,1410275 +75627,53,2,76094,1355208 +75628,403,10,101838,1029069 +75629,234,1,90351,31074 +75630,317,10,86186,87580 +75631,143,7,1381,9555 +75632,317,10,263873,224214 +75633,317,10,24486,91666 +75634,413,11,76397,33830 +75635,72,11,22803,1547039 +75636,226,2,49009,1539310 +75637,317,10,53048,1540371 +75638,387,10,19235,84793 +75639,3,5,73313,40461 +75640,234,1,183412,130050 +75641,317,10,121462,1567545 +75642,45,9,307081,1417410 +75643,208,2,339527,95142 +75644,198,6,6557,1407363 +75645,105,7,10344,19155 +75646,387,10,2778,28170 +75647,12,10,182131,109197 +75648,234,1,374319,1107948 +75649,234,1,71885,72258 +75650,394,7,1579,42035 +75651,75,5,184363,9606 +75652,387,10,28293,12303 +75653,127,3,74,1074163 +75654,213,10,64847,239934 +75655,387,10,59118,64768 +75656,273,7,10475,69897 +75657,387,10,11832,70636 +75658,317,10,71120,1199698 +75659,317,10,118381,70704 +75660,143,7,140607,1235786 +75661,234,1,27144,97232 +75662,182,8,216580,1395228 +75663,332,8,79218,1453944 +75664,387,10,8948,18710 +75665,127,3,106358,117589 +75666,317,10,56807,225005 +75667,3,5,280092,47102 +75668,328,6,10491,1433234 +75669,209,7,177677,1357599 +75670,387,10,12311,72062 +75671,234,1,21413,88832 +75672,234,1,53688,141619 +75673,20,2,274479,1433656 +75674,166,9,109439,92345 +75675,273,7,144111,8503 +75676,413,11,12220,66519 +75677,324,3,289198,118378 +75678,234,1,390991,216027 +75679,317,10,211144,127917 +75680,53,2,243940,937956 +75681,53,2,24810,1318881 +75682,234,1,28571,10001 +75683,168,3,369885,1576007 +75684,333,2,10396,10066 +75685,317,10,110261,45577 +75686,304,10,63825,237691 +75687,53,2,325205,1426713 +75688,415,3,924,9456 +75689,204,9,19096,978515 +75690,273,7,1254,9245 +75691,317,10,139176,148077 +75692,327,7,2731,1730029 +75693,314,2,22803,1547040 +75694,317,10,63625,560234 +75695,396,3,10921,1357049 +75696,3,5,19688,59892 +75697,277,3,2321,142154 +75698,291,6,336882,552323 +75699,234,1,84971,101885 +75700,234,1,16373,93975 +75701,304,10,188765,225244 +75702,203,1,773,1460825 +75703,387,10,28847,29433 +75704,268,7,379019,1413961 +75705,168,3,293167,1759737 +75706,166,9,2503,1334497 +75707,203,1,6171,1265391 +75708,53,2,21711,5634 +75709,204,9,40218,6793 +75710,234,1,38883,121588 +75711,269,9,63215,1520899 +75712,234,1,1427,1071 +75713,387,10,43388,31068 +75714,175,5,49009,1400317 +75715,3,5,42648,2082 +75716,204,9,177677,39668 +75717,317,10,169298,21825 +75718,387,10,9514,57714 +75719,234,1,65035,126566 +75720,204,9,14811,1537245 +75721,234,1,94811,21305 +75722,415,3,522,559909 +75723,148,9,118889,8508 +75724,30,5,230179,1881550 +75725,203,1,345922,1616870 +75726,262,6,280092,1473447 +75727,232,10,135335,145249 +75728,317,10,324930,1500692 +75729,273,7,13507,2949 +75730,387,10,43525,4508 +75731,3,5,18642,24793 +75732,273,7,10693,64868 +75733,175,5,258480,1452675 +75734,333,2,109439,1708705 +75735,196,7,60599,1400497 +75736,3,5,573,7753 +75737,234,1,449131,83831 +75738,234,1,1416,1188 +75739,273,7,143946,1487840 +75740,5,10,10803,66878 +75741,234,1,27019,73153 +75742,3,5,10950,5506 +75743,5,10,77246,1550573 +75744,269,9,578,8558 +75745,12,10,1726,7624 +75746,415,3,21786,1180805 +75747,333,2,35001,1537983 +75748,25,2,302026,1570610 +75749,234,1,1396,8452 +75750,262,6,245700,1434867 +75751,387,10,73835,21237 +75752,75,5,435,967252 +75753,234,1,100532,1024813 +75754,387,10,326,1560760 +75755,269,9,52454,1403322 +75756,53,2,45132,1172909 +75757,77,10,2721,27438 +75758,373,7,2666,1392700 +75759,187,11,246415,1439425 +75760,127,3,580,16212 +75761,273,7,215373,545376 +75762,337,2,224944,1642144 +75763,317,10,43976,120226 +75764,160,3,42045,1397319 +75765,234,1,312221,1056121 +75766,387,10,11008,67783 +75767,198,6,14254,1552331 +75768,179,2,225728,1338231 +75769,317,10,50696,142483 +75770,5,10,5491,1450886 +75771,394,7,205584,577468 +75772,317,10,102668,1031754 +75773,232,10,47536,18741 +75774,234,1,10396,11057 +75775,208,2,141,1537964 +75776,3,5,28169,59953 +75777,387,10,293863,1111120 +75778,187,11,45019,1537497 +75779,3,5,10867,47275 +75780,234,1,284343,55045 +75781,234,1,312497,139651 +75782,234,1,38356,865 +75783,413,11,14552,52750 +75784,296,3,1966,1733730 +75785,148,9,51250,1721874 +75786,226,2,15616,1410096 +75787,3,5,107052,70247 +75788,52,10,139244,2942 +75789,269,9,42251,1446539 +75790,3,5,9542,2702 +75791,234,1,34995,41222 +75792,160,3,3580,66226 +75793,234,1,131366,48055 +75794,269,9,11859,10064 +75795,87,7,241927,1035761 +75796,317,10,94513,119294 +75797,127,3,18405,1842596 +75798,234,1,28345,93905 +75799,61,7,435,1390353 +75800,53,2,147815,1641647 +75801,394,7,41963,15492 +75802,204,9,68737,129876 +75803,273,7,37926,1158249 +75804,273,7,42062,14647 +75805,387,10,2080,9813 +75806,387,10,84305,1607163 +75807,204,9,52847,1012327 +75808,234,1,20986,109191 +75809,387,10,308,4429 +75810,317,10,69828,102445 +75811,317,10,209266,4522 +75812,273,7,810,5553 +75813,52,10,8010,26128 +75814,269,9,127380,12092 +75815,75,5,266856,1416468 +75816,387,10,54236,96369 +75817,394,7,216580,1395217 +75818,196,7,41733,1408301 +75819,204,3,3063,1078858 +75820,175,5,15,1547899 +75821,203,1,13616,1428927 +75822,327,7,18417,83089 +75823,40,1,98066,1759262 +75824,203,1,10491,1433625 +75825,77,10,17216,81476 +75826,62,3,116463,1691479 +75827,286,3,276819,1313489 +75828,189,3,202337,1404927 +75829,204,9,78507,13887 +75830,234,1,269650,70100 +75831,53,2,233208,1340081 +75832,97,7,324670,1367493 +75833,273,7,348631,1048929 +75834,387,10,233208,1282040 +75835,53,2,30374,1590929 +75836,210,9,14430,1405308 +75837,301,5,49940,1545307 +75838,333,2,32080,21150 +75839,303,3,311324,1403479 +75840,53,2,63706,1215583 +75841,262,6,15440,1167831 +75842,262,6,445993,126824 +75843,387,10,3549,1012 +75844,204,9,11859,1127497 +75845,179,2,1647,1676177 +75846,401,6,3933,1337417 +75847,105,7,167583,1259 +75848,398,9,8204,1391751 +75849,180,7,155597,1586005 +75850,273,7,12605,6676 +75851,33,10,19765,1602150 +75852,387,10,85052,1264504 +75853,413,11,5753,138653 +75854,34,8,324670,1573245 +75855,160,3,59197,9567 +75856,204,9,128311,1724793 +75857,289,6,72105,1455515 +75858,413,11,19819,17816 +75859,234,1,170838,90454 +75860,387,10,62330,235141 +75861,289,6,5491,1455613 +75862,317,10,42293,13734 +75863,97,7,241239,1357060 +75864,60,1,5991,5030 +75865,317,10,306598,1424872 +75866,169,3,10008,1346943 +75867,203,1,744,1342644 +75868,286,3,61341,22413 +75869,1,7,2604,15178 +75870,234,1,43860,5834 +75871,53,2,264560,1357611 +75872,148,9,10708,957368 +75873,413,11,69165,41695 +75874,269,9,12450,19691 +75875,234,1,84831,93475 +75876,333,2,42191,4352 +75877,287,3,14145,1416974 +75878,387,10,28165,78021 +75879,175,5,245703,1391729 +75880,387,10,5967,24882 +75881,328,6,99698,1550225 +75882,234,1,23096,59649 +75883,287,3,266433,1415897 +75884,413,11,381737,1574408 +75885,3,5,28303,40183 +75886,387,10,184802,84235 +75887,269,9,22279,43625 +75888,92,7,4974,19114 +75889,387,10,94480,132574 +75890,203,1,85651,1338357 +75891,317,10,13173,22214 +75892,317,10,259075,1689881 +75893,148,9,127521,997342 +75894,188,8,954,1886666 +75895,204,9,15263,116723 +75896,413,11,28425,33368 +75897,387,10,11712,34373 +75898,53,2,95015,8717 +75899,377,3,954,1500872 +75900,273,7,59828,19407 +75901,3,5,34231,1460027 +75902,387,10,98339,545229 +75903,5,10,71099,1484528 +75904,328,6,340176,1711434 +75905,413,11,50674,64168 +75906,148,9,9042,12654 +75907,148,9,20357,1462103 +75908,373,7,140607,1338976 +75909,387,10,16366,66194 +75910,3,5,55604,9057 +75911,402,11,405473,1800073 +75912,234,1,35852,64114 +75913,273,7,156711,23451 +75914,234,1,200447,78053 +75915,148,9,55604,3648 +75916,416,10,8588,55415 +75917,413,11,20047,1545174 +75918,314,2,283995,1403389 +75919,148,9,11812,957368 +75920,75,5,168259,74989 +75921,327,7,20242,1551259 +75922,304,10,84473,104227 +75923,387,10,41441,1304597 +75924,127,3,125736,4130 +75925,373,7,318922,1465947 +75926,269,9,16342,1335159 +75927,317,10,52705,3776 +75928,208,2,62046,1324118 +75929,148,9,9993,61626 +75930,387,10,422906,1178041 +75931,203,1,85414,1406868 +75932,5,10,182415,1171334 +75933,345,7,379019,1637305 +75934,273,7,211059,1620755 +75935,234,1,45179,559726 +75936,3,5,129359,231917 +75937,289,6,291270,1138632 +75938,406,6,277355,1495869 +75939,53,2,25918,1494607 +75940,234,1,23966,96324 +75941,148,9,2613,11079 +75942,269,9,246355,1281854 +75943,105,7,14626,1870765 +75944,234,1,79521,11593 +75945,317,10,51167,127539 +75946,148,9,1902,19847 +75947,204,9,29376,40170 +75948,273,7,202662,1803894 +75949,234,1,9260,19272 +75950,234,1,124480,1080055 +75951,108,10,83119,20599 +75952,413,11,101998,1177639 +75953,148,9,253235,5886 +75954,3,5,241930,1129791 +75955,289,6,3933,1448058 +75956,105,7,91961,1305094 +75957,314,2,47536,138639 +75958,148,9,85494,118445 +75959,317,10,49688,1655282 +75960,317,10,353462,151380 +75961,3,5,26679,56075 +75962,58,2,634,22968 +75963,3,5,139455,975143 +75964,148,9,8915,14915 +75965,148,9,1574,14915 +75966,333,2,1374,13436 +75967,148,9,1394,1547576 +75968,262,6,10391,1404844 +75969,45,9,346672,1398908 +75970,413,11,68387,1391802 +75971,269,9,27053,4103 +75972,204,9,17590,20358 +75973,53,2,94348,35594 +75974,234,1,17906,82482 +75975,239,5,329682,1577908 +75976,289,6,29233,149100 +75977,277,3,228339,1277467 +75978,74,5,369885,1790941 +75979,387,10,286521,65401 +75980,395,3,13205,1719751 +75981,346,3,9902,1418489 +75982,286,3,52918,117841 +75983,413,11,189682,30179 +75984,286,3,42182,1318090 +75985,302,9,246415,1439420 +75986,387,10,65674,1475364 +75987,273,7,121230,14356 +75988,189,3,379,1403199 +75989,413,11,32331,12509 +75990,387,10,43646,4664 +75991,105,7,177155,1134158 +75992,204,9,58905,47077 +75993,226,2,16077,79184 +75994,328,6,188927,1638565 +75995,105,7,22267,5359 +75996,52,10,72823,109704 +75997,317,10,63625,560233 +75998,62,3,9593,1403192 +75999,273,7,47694,65285 +76000,204,9,167810,1310823 +76001,83,2,322922,1085031 +76002,413,11,171446,1007753 +76003,317,10,426265,1728494 +76004,234,1,62132,234844 +76005,182,8,442752,1761885 +76006,97,7,924,1077782 +76007,317,10,18093,9156 +76008,234,1,122271,65452 +76009,413,11,81223,1379 +76010,169,3,2687,26990 +76011,148,9,45244,1605648 +76012,403,10,16444,119320 +76013,273,7,18414,960248 +76014,411,9,295964,41848 +76015,52,10,101783,1030394 +76016,387,10,333371,136495 +76017,234,1,184710,1167732 +76018,234,1,352036,109744 +76019,234,1,405325,1652949 +76020,333,2,6591,1586349 +76021,250,11,109424,1408403 +76022,204,9,50329,29345 +76023,298,5,333371,1401593 +76024,234,1,43172,93905 +76025,273,7,20421,43393 +76026,234,1,1624,4499 +76027,204,9,38654,10188 +76028,289,6,53219,572003 +76029,188,8,188102,1845776 +76030,289,6,328111,1479529 +76031,239,5,13393,1603662 +76032,387,10,80324,40911 +76033,204,9,2503,9820 +76034,317,10,410634,1685976 +76035,60,1,166161,1429472 +76036,187,7,8467,62580 +76037,387,10,29058,102737 +76038,387,10,320318,51322 +76039,204,9,4592,42635 +76040,52,10,59882,33027 +76041,324,3,11048,67928 +76042,3,5,5177,41909 +76043,413,11,10033,11876 +76044,413,11,3933,541 +76045,226,2,369885,1470158 +76046,317,10,58878,228543 +76047,317,10,287903,1443683 +76048,52,10,68193,1331940 +76049,413,11,17609,1634 +76050,245,3,12783,1401118 +76051,396,3,76163,1396811 +76052,208,2,445993,1458517 +76053,3,5,286709,1304226 +76054,221,3,1578,1595467 +76055,234,1,25643,62541 +76056,413,11,10165,240 +76057,158,2,168027,1397724 +76058,208,2,329865,1402019 +76059,317,10,37502,588066 +76060,413,11,329805,23399 +76061,204,9,58878,228552 +76062,387,10,82327,222686 +76063,413,11,1687,18651 +76064,373,7,333371,1451552 +76065,160,3,10909,8684 +76066,113,9,9914,1540864 +76067,226,2,419430,1463277 +76068,317,10,30061,105644 +76069,317,10,22076,52371 +76070,413,11,505,1731 +76071,226,2,186869,1835568 +76072,317,10,32099,108847 +76073,387,10,27003,935847 +76074,34,8,7551,1526476 +76075,105,7,69404,141075 +76076,207,3,4147,122607 +76077,200,3,9425,1421729 +76078,387,10,193610,1173989 +76079,387,10,425591,209513 +76080,373,7,12171,1349046 +76081,234,1,33315,110347 +76082,52,10,159770,1208341 +76083,289,6,325263,1636525 +76084,53,2,24363,20826 +76085,208,2,137182,1106971 +76086,3,5,6,2044 +76087,105,7,301224,1382178 +76088,45,9,283686,1582728 +76089,75,5,324670,1486827 +76090,317,10,29786,70244 +76091,3,5,300601,1291116 +76092,413,11,4291,4999 +76093,373,7,263115,1757638 +76094,213,10,43850,133237 +76095,3,5,49038,961501 +76096,286,3,72766,1066767 +76097,160,3,9457,999716 +76098,148,9,288526,1119976 +76099,179,2,142402,1117111 +76100,234,1,56746,224884 +76101,65,3,924,1551658 +76102,234,1,37339,117468 +76103,269,9,42430,1776965 +76104,413,11,24756,31157 +76105,273,7,229134,14807 +76106,387,10,56292,1018751 +76107,333,2,263472,1510551 +76108,346,3,954,1446694 +76109,273,7,10087,9152 +76110,77,10,14591,109972 +76111,317,10,19505,183055 +76112,234,1,29290,31074 +76113,349,1,72640,1475322 +76114,287,3,11788,1430076 +76115,317,10,41970,86290 +76116,148,9,29475,1535946 +76117,269,9,228970,21268 +76118,3,5,26861,15804 +76119,398,9,19901,1391710 +76120,113,9,76757,1340110 +76121,289,6,9514,1642557 +76122,234,1,296750,1083229 +76123,234,1,56486,40506 +76124,387,10,160160,236421 +76125,413,11,90228,54359 +76126,317,10,395982,182327 +76127,105,7,340176,1711424 +76128,3,5,259695,149 +76129,317,10,47863,139540 +76130,387,10,9080,707 +76131,387,10,302699,57633 +76132,317,10,136368,1105684 +76133,333,2,1850,15017 +76134,234,1,369697,77815 +76135,72,11,27259,1544363 +76136,317,10,55420,45459 +76137,273,7,1452,9039 +76138,77,10,10527,52803 +76139,53,2,248933,36334 +76140,179,2,9495,1521752 +76141,234,1,47848,57641 +76142,52,10,27259,50757 +76143,387,10,28170,99935 +76144,148,9,8840,12511 +76145,234,1,333663,65594 +76146,333,2,62046,1393579 +76147,409,7,28,1172042 +76148,204,9,4551,38022 +76149,387,10,12113,34510 +76150,37,3,10198,1447556 +76151,317,10,34840,20718 +76152,52,10,90616,1139978 +76153,182,8,118957,1402902 +76154,52,10,14945,590923 +76155,187,11,333484,1415007 +76156,269,9,163376,1222 +76157,387,10,11374,27518 +76158,269,9,8272,35512 +76159,234,1,28433,10601 +76160,287,3,26679,950952 +76161,25,2,393732,1559372 +76162,234,1,200505,8858 +76163,234,1,38289,69038 +76164,77,10,13614,82309 +76165,269,9,102961,1188597 +76166,105,7,214938,1597060 +76167,234,1,255396,1292272 +76168,72,11,1381,1447156 +76169,269,9,264525,4379 +76170,269,9,265226,35126 +76171,387,10,12575,48684 +76172,147,1,126889,1816354 +76173,3,5,11376,27953 +76174,140,9,188927,1378676 +76175,317,10,74666,1617450 +76176,287,3,16281,11161 +76177,273,7,11370,6489 +76178,413,11,19901,966022 +76179,3,5,1694,4614 +76180,105,7,8341,53615 +76181,141,7,966,30257 +76182,387,10,23805,18253 +76183,52,10,125736,11435 +76184,270,9,2666,1392673 +76185,317,10,121401,7300 +76186,3,5,179288,137174 +76187,31,9,72545,1856165 +76188,53,2,295581,1002356 +76189,317,10,42944,129148 +76190,269,9,331313,60193 +76191,288,3,2428,24802 +76192,269,9,45562,56071 +76193,269,9,156700,1020784 +76194,333,2,36489,1000458 +76195,396,3,10916,1357049 +76196,203,1,1073,1492941 +76197,234,1,352694,116780 +76198,3,5,64807,4501 +76199,346,3,2274,1404553 +76200,413,11,53945,19925 +76201,204,9,194509,8622 +76202,187,11,330770,1405360 +76203,234,1,104103,933201 +76204,273,7,235,7066 +76205,314,2,302026,1570608 +76206,413,11,2125,21821 +76207,182,8,26882,1773046 +76208,200,3,294652,1411239 +76209,387,10,24831,102445 +76210,234,1,221234,1084403 +76211,52,10,143068,590449 +76212,317,10,204802,549131 +76213,413,11,1950,331 +76214,53,2,74585,46775 +76215,166,9,10066,1608997 +76216,234,1,101330,236362 +76217,234,1,85715,141713 +76218,262,6,6972,1401704 +76219,234,1,254661,120970 +76220,3,5,126418,4346 +76221,105,7,6183,48501 +76222,87,7,27259,223202 +76223,387,10,165,1058 +76224,234,1,54898,28615 +76225,269,9,332872,3630 +76226,105,7,282069,1537405 +76227,286,3,258251,1323777 +76228,269,9,188826,1337721 +76229,234,1,31031,107753 +76230,53,2,152748,1179273 +76231,204,9,10708,112521 +76232,182,8,414910,1487009 +76233,353,7,15653,1544639 +76234,187,11,318922,1385093 +76235,317,10,96132,50933 +76236,333,2,69668,1477470 +76237,387,10,16366,1568863 +76238,3,5,139159,567048 +76239,3,5,91181,12279 +76240,234,1,85956,932759 +76241,113,9,296524,1565737 +76242,273,7,38099,57724 +76243,273,7,74525,114280 +76244,3,5,9756,17791 +76245,333,2,9785,1441272 +76246,234,1,47638,51627 +76247,398,9,1251,3719 +76248,14,7,447758,1641864 +76249,62,3,75,1401803 +76250,171,3,379019,1394485 +76251,324,3,315465,81718 +76252,413,11,10703,1361 +76253,413,11,407448,15841 +76254,234,1,43440,10790 +76255,317,10,21620,122441 +76256,60,1,11645,72509 +76257,317,10,312669,41670 +76258,317,10,303982,550148 +76259,196,7,197,1406826 +76260,169,3,177677,1373714 +76261,373,7,44129,1417514 +76262,148,9,29372,34082 +76263,327,7,166076,1172888 +76264,413,11,73194,8505 +76265,3,5,2300,1044 +76266,317,10,131903,937826 +76267,269,9,16921,1070016 +76268,273,7,374461,4140 +76269,328,6,228970,1390356 +76270,234,1,24886,1598183 +76271,286,3,80539,1170058 +76272,273,7,4024,34592 +76273,234,1,33095,17520 +76274,317,10,411638,34021 +76275,234,1,291907,1063379 +76276,37,3,102382,1460648 +76277,273,7,105860,1184983 +76278,387,10,167,1997 +76279,234,1,268321,58260 +76280,52,10,229757,13569 +76281,97,7,258251,1286570 +76282,413,11,86241,4980 +76283,3,5,127812,12307 +76284,234,1,25625,10367 +76285,187,11,395982,1755115 +76286,221,3,8915,1337471 +76287,204,9,271404,1764791 +76288,289,6,177677,1545932 +76289,225,7,181533,1530322 +76290,143,7,11472,42267 +76291,387,10,19946,53945 +76292,20,2,4147,1549203 +76293,387,10,195068,4509 +76294,53,2,325189,1202357 +76295,269,9,419459,958228 +76296,273,7,54660,8422 +76297,317,10,29743,32309 +76298,387,10,62394,4137 +76299,387,10,297762,1213170 +76300,273,7,66022,12241 +76301,286,3,242240,544085 +76302,273,7,3172,19155 +76303,234,1,15713,136745 +76304,234,1,266373,19396 +76305,3,5,397717,1388962 +76306,413,11,12591,11100 +76307,87,7,289712,1547763 +76308,102,3,11370,1581144 +76309,3,5,11584,27099 +76310,373,7,4982,1391571 +76311,20,2,288977,1530756 +76312,289,6,53210,113285 +76313,373,7,102668,43750 +76314,234,1,193177,47373 +76315,234,1,17875,7765 +76316,387,10,58615,69973 +76317,3,5,218582,13972 +76318,273,7,22784,1559394 +76319,388,9,70074,1407350 +76320,203,1,11232,1400540 +76321,387,10,241071,113570 +76322,317,10,54659,150975 +76323,250,11,273481,1400506 +76324,234,1,112072,236959 +76325,166,9,9013,1534846 +76326,286,3,460870,1108356 +76327,234,1,370741,587097 +76328,415,3,84993,75441 +76329,413,11,243935,112576 +76330,387,10,72984,253696 +76331,234,1,9502,57742 +76332,234,1,29212,39853 +76333,234,1,172385,5714 +76334,234,1,156896,236884 +76335,317,10,35021,1058015 +76336,204,9,34223,1129805 +76337,72,11,12,8071 +76338,373,7,13777,75301 +76339,3,5,32552,544755 +76340,52,10,32921,136892 +76341,287,3,267579,1583169 +76342,148,9,8204,1447120 +76343,273,7,178809,8320 +76344,234,1,153162,33026 +76345,234,1,84450,40549 +76346,317,10,5,3110 +76347,12,10,353595,20007 +76348,204,9,209032,1192397 +76349,3,5,9528,10717 +76350,87,7,345922,1815652 +76351,234,1,25518,35208 +76352,333,2,165,1358075 +76353,3,5,87428,64227 +76354,52,10,38808,120312 +76355,333,2,52454,1330349 +76356,387,10,28902,17016 +76357,333,2,294254,1402947 +76358,204,9,312221,1445832 +76359,273,7,62034,14807 +76360,268,7,241239,1376901 +76361,234,1,30022,105567 +76362,234,1,23719,21792 +76363,413,11,62394,48807 +76364,3,5,128270,29231 +76365,333,2,56906,1401756 +76366,317,10,40985,4357 +76367,3,5,377151,224452 +76368,191,6,337339,1907216 +76369,181,7,16342,1335162 +76370,317,10,261273,1427781 +76371,317,10,22160,1294154 +76372,387,10,23739,58180 +76373,273,7,11077,63964 +76374,158,2,203833,1339058 +76375,35,10,284052,7624 +76376,245,3,9716,1028415 +76377,387,10,152532,74342 +76378,187,11,127521,1542741 +76379,203,1,122019,1619439 +76380,169,3,241927,961445 +76381,111,7,10320,1577475 +76382,234,1,19757,144139 +76383,301,5,178809,1409710 +76384,221,3,664,1341796 +76385,286,3,14286,84373 +76386,160,3,4413,1333222 +76387,166,9,8915,1337455 +76388,415,3,638,9463 +76389,105,7,302036,1383999 +76390,21,3,81030,3157 +76391,269,9,259830,30463 +76392,387,10,191322,1377326 +76393,39,3,11024,1414748 +76394,328,6,240832,1401569 +76395,387,10,209413,128107 +76396,286,3,270336,1202107 +76397,234,1,187516,30833 +76398,373,7,379019,17811 +76399,387,10,488,6596 +76400,234,1,118121,26157 +76401,413,11,62330,1365238 +76402,182,8,9532,1402216 +76403,413,11,638,5604 +76404,325,5,36489,565369 +76405,182,8,233639,1727979 +76406,317,10,245597,1284288 +76407,208,2,403,1319490 +76408,262,6,189,1401145 +76409,127,3,2454,1447518 +76410,234,1,40998,78747 +76411,376,10,17137,81296 +76412,234,1,221667,146438 +76413,317,10,242310,103047 +76414,75,5,140607,1400081 +76415,105,7,32628,11524 +76416,317,10,104739,130030 +76417,317,10,27681,133477 +76418,60,1,13912,30099 +76419,3,5,266373,14431 +76420,53,2,48805,1597988 +76421,289,6,14683,1458349 +76422,387,10,12101,71238 +76423,259,3,14,1586927 +76424,175,5,200727,1458557 +76425,53,2,93828,22968 +76426,113,9,1966,1398084 +76427,204,9,274857,1574034 +76428,204,9,10860,1621401 +76429,273,7,10543,1225 +76430,387,10,482,160447 +76431,123,3,43641,20007 +76432,317,10,352208,17087 +76433,204,9,167583,103056 +76434,317,10,73532,16767 +76435,387,10,14128,1116910 +76436,317,10,100669,964513 +76437,204,9,95504,12347 +76438,45,9,12220,1406083 +76439,333,2,442752,1761858 +76440,198,6,228066,1574081 +76441,3,5,62978,1608741 +76442,394,7,47536,1412032 +76443,317,10,70695,559299 +76444,105,7,128311,1097956 +76445,387,10,18273,1207983 +76446,46,5,227975,1775642 +76447,387,10,4762,39298 +76448,413,11,2604,4186 +76449,234,1,370234,1276441 +76450,47,8,6947,1401997 +76451,234,1,59349,229236 +76452,403,10,29116,103073 +76453,333,2,1984,1659775 +76454,60,1,177902,29281 +76455,234,1,27904,69759 +76456,160,3,244610,1366030 +76457,291,6,177677,1545988 +76458,74,5,118,1535097 +76459,5,10,77294,1088722 +76460,3,5,252171,1207757 +76461,286,3,145191,72284 +76462,187,11,71668,92607 +76463,387,10,28847,49894 +76464,77,10,864,12966 +76465,317,10,58081,128459 +76466,105,7,128412,1394637 +76467,234,1,64115,80170 +76468,273,7,29444,5912 +76469,53,2,11576,14493 +76470,234,1,27866,1827779 +76471,3,5,55823,21233 +76472,234,1,33340,110513 +76473,204,9,13823,5021 +76474,413,11,14537,552638 +76475,3,5,2977,29231 +76476,387,10,954,508 +76477,53,2,109379,1597024 +76478,273,7,298,1889 +76479,3,5,9298,17791 +76480,269,9,397837,27158 +76481,198,6,324670,1726033 +76482,273,7,12220,9251 +76483,234,1,201223,233653 +76484,413,11,179847,929316 +76485,262,6,17654,1415012 +76486,77,10,9756,58922 +76487,250,11,390747,1621955 +76488,234,1,13766,92554 +76489,148,9,259830,1331362 +76490,234,1,59962,36425 +76491,273,7,9785,7229 +76492,387,10,68737,29606 +76493,232,10,273096,665800 +76494,317,10,33124,42804 +76495,413,11,31548,993210 +76496,317,10,12811,73748 +76497,180,7,37581,1583007 +76498,234,1,11925,72681 +76499,105,7,46572,56134 +76500,3,5,74666,5431 +76501,317,10,309581,1396992 +76502,387,10,298,16304 +76503,3,5,10407,1153 +76504,226,2,45987,1711809 +76505,234,1,1421,1650 +76506,203,1,8915,6514 +76507,148,9,9946,65711 +76508,413,11,67696,1531 +76509,3,5,19901,61919 +76510,3,5,2760,27907 +76511,3,5,393559,588878 +76512,387,10,43849,30521 +76513,204,9,12783,34005 +76514,234,1,55424,35968 +76515,373,7,245692,1544414 +76516,54,10,75745,1779173 +76517,148,9,96433,17670 +76518,273,7,9317,39141 +76519,5,10,22404,88973 +76520,10,3,19719,85128 +76521,234,1,363354,144536 +76522,52,10,130900,135392 +76523,306,7,28110,1566227 +76524,273,7,137321,2593 +76525,413,11,935,12009 +76526,3,5,405473,1168680 +76527,403,10,228355,1089127 +76528,53,2,331313,15524 +76529,234,1,146521,143285 +76530,148,9,9441,18173 +76531,413,11,69404,425435 +76532,3,5,353462,1385925 +76533,196,7,284052,1388865 +76534,317,10,99283,14859 +76535,234,1,560,68 +76536,175,5,34459,1569289 +76537,413,11,185111,1126097 +76538,53,2,244610,1608246 +76539,175,5,333484,1377502 +76540,387,10,97794,93529 +76541,12,10,325133,184582 +76542,413,11,9946,11410 +76543,34,8,9675,1428208 +76544,289,6,168259,1455610 +76545,169,3,10999,55241 +76546,234,1,20312,1058 +76547,105,7,43931,7229 +76548,234,1,94894,1086964 +76549,234,1,125736,11435 +76550,53,2,1271,5392 +76551,287,3,45273,1404805 +76552,413,11,33623,111082 +76553,387,10,3520,24658 +76554,387,10,6187,48583 +76555,234,1,48836,141178 +76556,387,10,22784,68683 +76557,226,2,11622,1315647 +76558,304,10,10178,64117 +76559,394,7,638,9408 +76560,148,9,522,7148 +76561,53,2,25037,958944 +76562,234,1,125835,116923 +76563,53,2,10050,35766 +76564,204,9,714,7787 +76565,83,2,394645,1550389 +76566,317,10,86980,106654 +76567,269,9,347096,1397045 +76568,232,10,20625,10792 +76569,269,9,70695,17149 +76570,232,10,5048,30309 +76571,187,11,10929,1342658 +76572,5,10,61266,109469 +76573,5,10,169009,36699 +76574,273,7,11712,18609 +76575,234,1,52991,30008 +76576,269,9,37939,553219 +76577,87,7,263115,1367505 +76578,53,2,303636,1549352 +76579,204,9,177677,1390350 +76580,413,11,32166,112576 +76581,269,9,26656,1441666 +76582,273,7,9787,5666 +76583,204,9,16866,117056 +76584,181,7,63215,1520933 +76585,317,10,63938,141978 +76586,3,5,141,1590 +76587,105,7,284564,1680434 +76588,75,5,34449,792304 +76589,113,9,14979,1346937 +76590,234,1,330381,227936 +76591,179,2,332411,1579380 +76592,269,9,56816,124861 +76593,53,2,63831,1267835 +76594,401,6,10020,1615296 +76595,77,10,10257,64427 +76596,75,5,109439,1540351 +76597,413,11,22051,1018463 +76598,387,10,148371,548020 +76599,52,10,16784,20840 +76600,234,1,28299,99667 +76601,387,10,49974,257772 +76602,269,9,11017,20824 +76603,317,10,122435,102668 +76604,234,1,1976,10001 +76605,234,1,393079,1428158 +76606,74,5,42764,1766573 +76607,53,2,23830,5493 +76608,303,3,1902,19841 +76609,148,9,2125,14348 +76610,262,6,294254,1391695 +76611,140,9,406449,1573537 +76612,333,2,246655,1713069 +76613,75,5,186869,1862951 +76614,234,1,47489,37451 +76615,262,6,10198,1461357 +76616,360,3,317,1599491 +76617,234,1,239534,40025 +76618,111,7,2567,92379 +76619,413,11,216363,1039764 +76620,317,10,306464,52139 +76621,269,9,49853,5867 +76622,198,6,262338,1765455 +76623,3,5,2966,29081 +76624,234,1,11788,70500 +76625,76,2,9613,1428469 +76626,234,1,96238,68185 +76627,317,10,120259,105022 +76628,72,11,8204,1544670 +76629,3,5,9297,40545 +76630,204,9,6978,53026 +76631,127,3,18,11301 +76632,317,10,45861,134037 +76633,317,10,399106,8012 +76634,5,10,1896,19806 +76635,160,3,2567,92234 +76636,317,10,149465,20875 +76637,387,10,7326,52444 +76638,328,6,332567,1644261 +76639,273,7,49158,29501 +76640,387,10,103332,35028 +76641,413,11,3933,1531911 +76642,269,9,246011,1343937 +76643,204,9,335778,5674 +76644,77,10,10274,64658 +76645,387,10,10694,50583 +76646,143,7,70670,136364 +76647,273,7,18843,49911 +76648,182,8,296524,1367502 +76649,234,1,57737,129373 +76650,413,11,97593,417176 +76651,52,10,36657,9032 +76652,208,2,405473,1401274 +76653,328,6,312221,1580890 +76654,45,9,14979,1363346 +76655,53,2,167583,1324753 +76656,317,10,116463,92437 +76657,13,3,309809,1459464 +76658,197,5,11377,1841638 +76659,413,11,65603,9582 +76660,105,7,59296,53017 +76661,234,1,13534,87326 +76662,204,9,50079,9062 +76663,34,8,266856,1555688 +76664,340,2,418437,1736643 +76665,387,10,36612,84643 +76666,53,2,10760,66534 +76667,234,1,153272,132957 +76668,234,1,9502,57741 +76669,317,10,378446,927416 +76670,148,9,28421,12348 +76671,75,5,20242,1563481 +76672,273,7,194393,34016 +76673,234,1,25988,122348 +76674,73,7,12311,27969 +76675,197,5,69668,1733232 +76676,52,10,84971,129558 +76677,52,10,47745,120514 +76678,158,2,26390,1407203 +76679,399,9,15653,1767050 +76680,97,7,664,1341856 +76681,269,9,266285,1475315 +76682,289,6,67130,148158 +76683,105,7,39781,1225 +76684,234,1,53230,8630 +76685,3,5,35921,18744 +76686,387,10,383618,1581408 +76687,273,7,371645,1671688 +76688,277,3,198663,113048 +76689,413,11,316154,1409026 +76690,269,9,74666,1008987 +76691,180,7,42501,19060 +76692,161,6,338189,1650732 +76693,234,1,35651,17386 +76694,234,1,21044,87055 +76695,413,11,148,1675 +76696,234,1,54814,85894 +76697,373,7,9358,548432 +76698,234,1,243984,176856 +76699,204,9,3078,29345 +76700,373,7,199575,1419234 +76701,108,10,41206,6210 +76702,75,5,310568,1584092 +76703,413,11,42599,1179376 +76704,234,1,26679,95996 +76705,301,5,57749,1411237 +76706,234,1,38792,35318 +76707,3,5,227306,151 +76708,317,10,128917,1088198 +76709,333,2,3580,1443038 +76710,325,5,364088,1748531 +76711,148,9,27095,1439611 +76712,225,7,12103,1707448 +76713,387,10,283711,1016305 +76714,143,7,264553,1332313 +76715,387,10,16313,1176813 +76716,317,10,25921,21085 +76717,273,7,69315,59811 +76718,371,3,38404,120335 +76719,413,11,9593,3985 +76720,317,10,256593,1295284 +76721,53,2,43903,4127 +76722,273,7,2115,153 +76723,234,1,123025,105643 +76724,328,6,127372,1395454 +76725,387,10,46014,103892 +76726,387,10,10946,67593 +76727,234,1,82027,583394 +76728,3,5,2021,6626 +76729,52,10,41213,53859 +76730,87,7,1125,1537500 +76731,180,7,19765,1602168 +76732,208,2,176,1317667 +76733,52,10,106573,30012 +76734,203,1,14181,1525957 +76735,226,2,24657,568611 +76736,317,10,72596,6759 +76737,373,7,45132,1440228 +76738,52,10,12697,57323 +76739,413,11,26983,6453 +76740,413,11,296524,1509977 +76741,317,10,120587,1112486 +76742,53,2,13496,954395 +76743,413,11,14552,6453 +76744,148,9,20210,60156 +76745,234,1,99329,557134 +76746,333,2,117120,1437958 +76747,45,9,88273,1727710 +76748,72,11,419430,1571521 +76749,317,10,259835,46349 +76750,53,2,105,8527 +76751,381,9,10326,1399859 +76752,387,10,94182,81019 +76753,169,3,1950,16498 +76754,148,9,43022,29280 +76755,234,1,291351,5216 +76756,357,3,297762,1417988 +76757,273,7,10400,19155 +76758,234,1,408537,584193 +76759,234,1,95919,69830 +76760,234,1,10946,67590 +76761,208,2,11045,234853 +76762,143,7,93858,1281664 +76763,3,5,167810,14599 +76764,73,7,359412,930983 +76765,234,1,312149,214121 +76766,234,1,281085,30869 +76767,77,10,9519,68354 +76768,317,10,306966,1154833 +76769,317,10,153266,1146997 +76770,413,11,71672,1002360 +76771,413,11,58251,993751 +76772,317,10,285841,1425642 +76773,317,10,21118,15011 +76774,155,3,40807,3388 +76775,204,9,13614,1482890 +76776,413,11,158947,1380935 +76777,175,5,42764,1766572 +76778,387,10,1116,15490 +76779,234,1,19812,121558 +76780,105,7,59726,4055 +76781,234,1,35025,113609 +76782,234,1,208579,223844 +76783,234,1,253309,1288802 +76784,317,10,177155,1334940 +76785,413,11,10134,15111 +76786,413,11,169,898 +76787,289,6,53178,5446 +76788,186,6,10796,1868299 +76789,413,11,31835,30154 +76790,409,7,4147,1739971 +76791,105,7,1498,8933 +76792,413,11,49609,10603 +76793,53,2,469172,5270 +76794,387,10,192990,1173406 +76795,143,7,365222,1340351 +76796,333,2,32021,29801 +76797,234,1,26826,96387 +76798,180,7,32085,1396414 +76799,413,11,53042,18333 +76800,317,10,114172,87322 +76801,328,6,19255,1395362 +76802,204,9,332168,1765671 +76803,234,1,229297,1243 +76804,176,3,26390,1395672 +76805,262,6,9286,1426324 +76806,75,5,1579,42032 +76807,273,7,11485,10468 +76808,204,9,765,11745 +76809,234,1,437838,1746747 +76810,317,10,25087,238824 +76811,234,1,87587,935267 +76812,3,5,62132,1423851 +76813,105,7,155765,1433682 +76814,113,9,70981,80424 +76815,204,9,2135,13586 +76816,387,10,82650,178426 +76817,234,1,225503,33690 +76818,269,9,419430,10396 +76819,77,10,229,1546 +76820,413,11,279690,1314893 +76821,53,2,53857,9064 +76822,175,5,257088,1379999 +76823,289,6,269149,1462000 +76824,209,7,118957,1402904 +76825,75,5,82,1464531 +76826,413,11,30091,1635 +76827,203,1,353979,1583078 +76828,64,6,12483,1410526 +76829,317,10,52713,3776 +76830,3,5,11545,5667 +76831,273,7,46623,8619 +76832,52,10,43877,97202 +76833,316,3,210913,1775132 +76834,333,2,2525,25806 +76835,349,1,25913,1447467 +76836,148,9,22968,9063 +76837,394,7,85414,2889 +76838,148,9,55197,1551744 +76839,148,9,505,6926 +76840,209,7,12113,1049333 +76841,387,10,2107,67773 +76842,317,10,374883,1555431 +76843,387,10,70670,559206 +76844,75,5,149465,1772143 +76845,413,11,120259,18595 +76846,317,10,362178,1520165 +76847,196,7,384737,1415086 +76848,234,1,370264,275514 +76849,204,9,122019,31868 +76850,317,10,307479,545328 +76851,53,2,315880,1045806 +76852,52,10,55152,48415 +76853,273,7,23544,69052 +76854,317,10,18731,548474 +76855,387,10,104556,1022761 +76856,317,10,282247,19303 +76857,317,10,300669,1046225 +76858,3,5,42641,3351 +76859,75,5,362579,589003 +76860,148,9,219466,1640819 +76861,3,5,37305,870 +76862,413,11,332354,1490652 +76863,225,7,755,1415966 +76864,234,1,47112,44644 +76865,72,11,4248,1452750 +76866,148,9,2742,10836 +76867,234,1,26252,39058 +76868,155,3,10193,608 +76869,3,5,81541,592057 +76870,413,11,9396,46952 +76871,3,5,131366,2998 +76872,187,11,44129,1367666 +76873,387,10,65646,9730 +76874,52,10,126323,1107170 +76875,234,1,39230,25622 +76876,234,1,63858,46712 +76877,273,7,2267,117 +76878,387,10,2604,26471 +76879,273,7,76465,30268 +76880,269,9,44155,958130 +76881,148,9,17577,1423831 +76882,105,7,2805,49606 +76883,419,10,271664,1242852 +76884,234,1,29989,936014 +76885,398,9,39048,11489 +76886,387,10,29239,103912 +76887,317,10,37586,905370 +76888,60,1,22408,121078 +76889,204,9,10665,964672 +76890,234,1,56235,223825 +76891,387,10,115283,60707 +76892,234,1,15559,1459115 +76893,3,5,327528,4578 +76894,317,10,13411,6213 +76895,412,9,181533,1687126 +76896,234,1,11959,71042 +76897,413,11,288710,12759 +76898,204,9,284052,9818 +76899,160,3,294254,1081074 +76900,3,5,84355,148735 +76901,286,3,94727,10092 +76902,333,2,27265,1341847 +76903,360,3,223485,1531094 +76904,5,10,246829,1282314 +76905,196,7,42309,1434574 +76906,213,10,14555,77006 +76907,387,10,9950,60780 +76908,245,3,49642,1088190 +76909,105,7,36919,223428 +76910,45,9,664,1413087 +76911,387,10,1369,2710 +76912,298,5,9457,91122 +76913,317,10,1694,58046 +76914,53,2,118957,1195358 +76915,53,2,226701,1840084 +76916,273,7,62837,4140 +76917,3,5,26805,6452 +76918,317,10,86520,133601 +76919,3,5,39462,1358325 +76920,317,10,199374,225517 +76921,413,11,42494,226997 +76922,413,11,29136,23488 +76923,373,7,15092,1391571 +76924,273,7,42188,3562 +76925,387,10,392832,7555 +76926,131,7,10204,16368 +76927,234,1,48636,70602 +76928,187,11,13483,1085004 +76929,234,1,12412,5281 +76930,234,1,455661,1809041 +76931,373,7,228970,1338976 +76932,180,7,41213,1752505 +76933,53,2,36758,75479 +76934,3,5,11017,56976 +76935,234,1,241639,73508 +76936,119,7,378236,1796068 +76937,180,7,44510,1117303 +76938,83,2,755,144146 +76939,105,7,400174,1195579 +76940,273,7,45692,26026 +76941,148,9,28268,1550321 +76942,234,1,43095,97205 +76943,234,1,138273,58021 +76944,317,10,17007,1569460 +76945,5,10,4307,30520 +76946,182,8,178809,1179444 +76947,3,5,51212,1657 +76948,306,7,84340,1694454 +76949,317,10,17962,25645 +76950,238,7,9819,1408316 +76951,333,2,505,32355 +76952,234,1,10458,61087 +76953,160,3,240832,119204 +76954,387,10,53792,148854 +76955,234,1,362541,1518575 +76956,160,3,310133,4438 +76957,108,10,32996,14687 +76958,301,5,296523,1445895 +76959,234,1,38808,18574 +76960,234,1,12540,66039 +76961,301,5,84577,1392945 +76962,234,1,10950,16853 +76963,245,3,282268,1239603 +76964,357,3,924,1167760 +76965,234,1,362682,1519023 +76966,289,6,72105,1713277 +76967,203,1,289225,1527870 +76968,317,10,20941,46085 +76969,269,9,22683,60478 +76970,403,10,20364,182174 +76971,53,2,10691,36605 +76972,250,11,17654,1424633 +76973,411,9,324670,1025712 +76974,314,2,1073,1792655 +76975,327,7,10796,15331 +76976,387,10,4286,24658 +76977,387,10,9366,45543 +76978,3,5,362541,551916 +76979,3,5,142320,35099 +76980,234,1,46982,3974 +76981,5,10,81001,240585 +76982,317,10,375742,1553092 +76983,373,7,11517,92377 +76984,373,7,44754,1085007 +76985,175,5,31586,555085 +76986,387,10,382591,1119418 +76987,97,7,365942,1420320 +76988,3,5,110,33238 +76989,3,5,84340,1085270 +76990,317,10,140032,115553 +76991,317,10,18673,83594 +76992,3,5,13807,25240 +76993,3,5,225499,9057 +76994,5,10,47231,1487579 +76995,66,11,655,5272 +76996,413,11,1374,15005 +76997,180,7,11610,9591 +76998,226,2,6972,1401643 +76999,317,10,24348,92118 +77000,105,7,361183,1368691 +77001,413,11,74629,1061 +77002,187,11,228066,1409295 +77003,234,1,252102,1016134 +77004,232,10,37454,18565 +77005,208,2,343934,1527898 +77006,317,10,47231,27954 +77007,3,5,127380,7988 +77008,273,7,41996,127460 +77009,333,2,32872,75377 +77010,387,10,23730,90527 +77011,234,1,166225,1172571 +77012,234,1,15765,18069 +77013,169,3,172828,1191308 +77014,61,7,1381,1364796 +77015,413,11,55846,1315 +77016,415,3,42683,52759 +77017,387,10,3028,11368 +77018,317,10,174925,148786 +77019,200,3,72545,1401588 +77020,105,7,24756,1175139 +77021,160,3,140607,40713 +77022,75,5,297736,1282728 +77023,234,1,50669,136396 +77024,273,7,10925,67491 +77025,181,7,22803,1547038 +77026,413,11,1480,12345 +77027,148,9,8470,23547 +77028,104,7,5551,1458579 +77029,226,2,10204,1418124 +77030,37,3,19594,1462792 +77031,3,5,1926,20033 +77032,204,9,117120,1437957 +77033,373,7,1956,1409220 +77034,64,6,98277,1849138 +77035,357,3,12,8007 +77036,413,11,8584,8425 +77037,3,5,340215,1196727 +77038,3,5,40761,126021 +77039,413,11,3701,22472 +77040,187,7,337339,1357059 +77041,286,3,51367,10522 +77042,234,1,31167,2087 +77043,3,5,50123,7436 +77044,64,6,2288,1673231 +77045,333,2,11788,1430075 +77046,148,9,31146,1841291 +77047,296,3,2924,1803772 +77048,187,11,43923,1445479 +77049,387,10,122,126 +77050,72,11,198663,1419730 +77051,53,2,302026,550617 +77052,413,11,43938,1552358 +77053,317,10,64736,127123 +77054,387,10,25626,1125574 +77055,105,7,400174,22047 +77056,203,1,79995,1404875 +77057,234,1,190853,563356 +77058,273,7,103236,1013074 +77059,196,7,154972,999561 +77060,234,1,10692,9200 +77061,317,10,23668,53387 +77062,3,5,2613,1919 +77063,234,1,173300,1156074 +77064,387,10,3405,31892 +77065,373,7,4133,548432 +77066,273,7,12697,947 +77067,132,2,222935,1544667 +77068,234,1,47921,82171 +77069,87,7,55433,17863 +77070,317,10,44932,1192642 +77071,328,6,10632,1401107 +77072,413,11,42684,65884 +77073,3,5,197057,1176982 +77074,234,1,344039,1475728 +77075,286,3,48419,140474 +77076,53,2,75229,574197 +77077,143,7,211879,124864 +77078,387,10,28367,46443 +77079,301,5,312221,1404817 +77080,269,9,48319,1739508 +77081,413,11,165,38 +77082,234,1,16320,12891 +77083,234,1,70086,80172 +77084,269,9,18990,30139 +77085,273,7,194509,26026 +77086,269,9,660,9869 +77087,148,9,334074,960087 +77088,196,7,378018,1643842 +77089,203,1,405473,1528012 +77090,303,3,76170,979175 +77091,53,2,88794,461 +77092,234,1,10336,87130 +77093,175,5,59861,1395028 +77094,234,1,22476,88832 +77095,34,8,2454,1408834 +77096,52,10,4254,35736 +77097,387,10,11531,26850 +77098,74,5,263115,1757630 +77099,200,3,58244,1419723 +77100,387,10,38684,121000 +77101,234,1,1480,40 +77102,234,1,57005,240283 +77103,270,9,9286,1441353 +77104,306,7,13056,17427 +77105,3,5,244786,53181 +77106,306,7,17209,1616186 +77107,234,1,11458,69696 +77108,4,6,8619,1858348 +77109,234,1,10770,33806 +77110,373,7,163,1412455 +77111,226,2,10364,1586041 +77112,413,11,10063,56537 +77113,289,6,72105,1455540 +77114,234,1,276123,1330004 +77115,234,1,241618,1060615 +77116,386,5,378441,1569444 +77117,387,10,6978,1582654 +77118,234,1,18690,82800 +77119,413,11,342213,53946 +77120,148,9,11338,12848 +77121,197,5,419430,1761132 +77122,234,1,41689,127101 +77123,327,7,4011,1269306 +77124,134,3,28090,53687 +77125,22,9,194,1034044 +77126,333,2,46931,1595171 +77127,269,9,18098,2626 +77128,234,1,8583,9182 +77129,387,10,59882,30522 +77130,234,1,110502,116986 +77131,3,5,140894,935231 +77132,317,10,22029,19266 +77133,208,2,76163,1316296 +77134,52,10,10198,15810 +77135,53,2,31324,9064 +77136,317,10,41142,108847 +77137,413,11,95504,1552 +77138,234,1,55152,82505 +77139,317,10,14052,69042 +77140,317,10,436343,1059880 +77141,198,6,280092,1548076 +77142,234,1,204553,1121891 +77143,317,10,63081,148535 +77144,234,1,21442,87530 +77145,317,10,64456,10147 +77146,387,10,20825,54645 +77147,346,3,2309,1427523 +77148,273,7,9406,58389 +77149,190,7,20438,1514677 +77150,413,11,71133,31985 +77151,189,3,2924,1803780 +77152,413,11,38150,25515 +77153,180,7,113520,1305281 +77154,53,2,1877,1707412 +77155,413,11,1382,36806 +77156,234,1,23524,90228 +77157,317,10,403330,1640138 +77158,208,2,67328,1583636 +77159,317,10,63486,239445 +77160,234,1,299203,1348076 +77161,394,7,293660,1401563 +77162,413,11,41076,3866 +77163,333,2,15414,1405201 +77164,234,1,62675,24501 +77165,234,1,51581,68707 +77166,45,9,334074,1593066 +77167,3,5,43277,70 +77168,317,10,142320,229571 +77169,148,9,52395,6925 +77170,148,9,128246,1652814 +77171,360,3,238589,1345258 +77172,387,10,42604,19249 +77173,301,5,225728,1402096 +77174,317,10,91443,947762 +77175,269,9,14,8220 +77176,148,9,55604,1534172 +77177,53,2,35026,20722 +77178,234,1,157847,64141 +77179,293,2,31542,1589501 +77180,298,5,149509,1399071 +77181,289,6,24238,1454654 +77182,53,2,158739,1208829 +77183,148,9,315872,1615568 +77184,45,9,15019,1394117 +77185,413,11,83588,1066326 +77186,53,2,1850,6348 +77187,25,2,262338,75081 +77188,234,1,176298,2798 +77189,92,7,38404,85770 +77190,413,11,259593,103182 +77191,333,2,9593,1338146 +77192,180,7,300596,1611218 +77193,3,5,814,14456 +77194,413,11,12311,72067 +77195,169,3,4147,1368867 +77196,204,9,29825,40835 +77197,196,7,17654,1424612 +77198,53,2,336050,1644772 +77199,413,11,21605,53361 +77200,234,1,133160,33727 +77201,53,2,395992,17166 +77202,234,1,40957,18907 +77203,286,3,105153,110348 +77204,244,3,379019,1601239 +77205,387,10,26811,90077 +77206,350,6,435,1767014 +77207,11,6,58704,1154851 +77208,234,1,332567,59521 +77209,190,7,399790,1830194 +77210,328,6,193893,1496420 +77211,3,5,43346,30923 +77212,175,5,128270,1407027 +77213,204,9,10075,62877 +77214,269,9,226188,1391681 +77215,127,3,2321,142157 +77216,234,1,308174,1006784 +77217,40,1,5924,8928 +77218,357,3,246655,1494205 +77219,273,7,52047,993312 +77220,105,7,442752,1481655 +77221,60,1,14537,1547581 +77222,176,3,9286,1441354 +77223,52,10,47404,25168 +77224,273,7,41609,72066 +77225,387,10,62713,225255 +77226,234,1,20430,51785 +77227,381,9,1647,1404837 +77228,5,10,413998,3353 +77229,234,1,98125,253066 +77230,333,2,15321,1462074 +77231,53,2,146233,6057 +77232,53,2,320736,1425403 +77233,269,9,62213,1226 +77234,413,11,9543,493 +77235,158,2,4147,1524648 +77236,287,3,5753,1522494 +77237,387,10,188927,11108 +77238,386,5,469172,1785055 +77239,317,10,308269,1447878 +77240,403,10,336004,74513 +77241,32,8,132363,1407741 +77242,373,7,38027,558808 +77243,5,10,341174,188534 +77244,143,7,166886,1599478 +77245,262,6,11096,1403537 +77246,234,1,10862,57579 +77247,53,2,159667,1060979 +77248,403,10,179066,127522 +77249,60,1,125264,1547483 +77250,394,7,311324,1376902 +77251,387,10,20325,1082918 +77252,394,7,2107,16736 +77253,413,11,19688,21267 +77254,387,10,8332,54559 +77255,179,2,309879,1621475 +77256,113,9,62630,1423423 +77257,317,10,39130,30012 +77258,269,9,10590,2486 +77259,413,11,106358,34079 +77260,234,1,346723,1482819 +77261,226,2,354859,1528026 +77262,143,7,49974,1223498 +77263,208,2,13954,109129 +77264,413,11,54659,1542408 +77265,87,7,949,75002 +77266,234,1,10874,65298 +77267,140,9,70981,1405574 +77268,187,11,374473,269450 +77269,317,10,439998,1420169 +77270,387,10,17780,225935 +77271,273,7,10860,3535 +77272,105,7,106112,144566 +77273,234,1,19430,49415 +77274,317,10,317114,36129 +77275,45,9,365942,1406081 +77276,317,10,94674,136013 +77277,333,2,335340,1442267 +77278,273,7,45627,30681 +77279,387,10,12631,49244 +77280,413,11,17771,10751 +77281,34,8,29444,1533788 +77282,269,9,51250,1018081 +77283,3,5,1662,594 +77284,234,1,78507,68 +77285,387,10,68882,4664 +77286,333,2,28775,1066814 +77287,286,3,308269,1447888 +77288,301,5,50318,1444961 +77289,75,5,13954,1371676 +77290,273,7,40555,132583 +77291,317,10,156141,1024850 +77292,413,11,1810,10603 +77293,3,5,444713,1427448 +77294,196,7,598,16994 +77295,387,10,33107,137423 +77296,234,1,381645,323331 +77297,327,7,401164,1817484 +77298,234,1,177572,227439 +77299,273,7,13105,47452 +77300,234,1,70282,1897165 +77301,413,11,11658,64887 +77302,387,10,142946,1296883 +77303,317,10,67367,201 +77304,75,5,28571,141595 +77305,3,5,284564,92937 +77306,415,3,76333,1367434 +77307,314,2,194722,1636782 +77308,3,5,173467,1384694 +77309,11,6,12,8012 +77310,108,10,43875,67807 +77311,394,7,310133,40141 +77312,52,10,234377,930633 +77313,269,9,418772,1018480 +77314,234,1,114499,5690 +77315,234,1,108003,51677 +77316,387,10,14878,82127 +77317,53,2,22023,1188377 +77318,196,7,324670,1433721 +77319,180,7,204994,961298 +77320,53,2,11511,16469 +77321,317,10,40555,124085 +77322,250,11,13849,1411676 +77323,3,5,40555,17765 +77324,234,1,111398,125690 +77325,325,5,378441,1362655 +77326,169,3,10529,1337466 +77327,273,7,2124,21810 +77328,317,10,14555,1493125 +77329,207,3,203833,1406199 +77330,373,7,316042,1338135 +77331,13,5,378441,1797438 +77332,234,1,22419,134615 +77333,3,5,332827,1272892 +77334,3,5,1369,6603 +77335,204,9,52362,4349 +77336,349,1,136087,1649728 +77337,387,10,245706,150098 +77338,277,3,293262,75210 +77339,77,10,9914,60400 +77340,169,3,77459,1821421 +77341,75,5,42045,2483 +77342,234,1,14137,111745 +77343,245,3,43522,2762 +77344,234,1,29475,68750 +77345,53,2,1251,461 +77346,413,11,75162,12015 +77347,286,3,31442,8462 +77348,75,5,142402,203666 +77349,387,10,189682,145830 +77350,208,2,332411,1323760 +77351,234,1,128215,83415 +77352,52,10,32628,10519 +77353,148,9,9877,107420 +77354,187,11,294254,1384367 +77355,148,9,53172,566968 +77356,273,7,8842,7714 +77357,269,9,185934,4085 +77358,53,2,12716,1895743 +77359,234,1,35632,114454 +77360,148,9,117251,979007 +77361,242,9,111302,29984 +77362,148,9,19174,45474 +77363,258,9,15213,1462620 +77364,143,7,407448,1394950 +77365,234,1,362463,1305305 +77366,301,5,167073,1578004 +77367,234,1,59738,229711 +77368,234,1,18375,115447 +77369,12,10,43205,15776 +77370,317,10,124470,95745 +77371,234,1,195544,78530 +77372,75,5,19719,85096 +77373,245,3,168027,1460750 +77374,203,1,68822,578049 +77375,234,1,305127,92743 +77376,275,9,383538,1851913 +77377,108,10,127105,132485 +77378,3,5,252916,120204 +77379,317,10,1624,18194 +77380,148,9,13483,1328383 +77381,273,7,42487,1002552 +77382,387,10,301325,61111 +77383,373,7,70981,1377220 +77384,301,5,222935,1401989 +77385,200,3,58244,1548182 +77386,387,10,72826,239357 +77387,105,7,42502,234726 +77388,317,10,72032,37742 +77389,179,2,13058,1834849 +77390,413,11,70500,47847 +77391,234,1,19665,168782 +77392,273,7,32558,4082 +77393,413,11,870,3317 +77394,3,5,373838,238621 +77395,234,1,28761,190 +77396,273,7,275269,123314 +77397,3,5,135708,68441 +77398,360,3,9296,1341399 +77399,286,3,27805,1031109 +77400,413,11,132363,68392 +77401,3,5,27973,8504 +77402,208,2,85414,228251 +77403,234,1,84105,56714 +77404,413,11,5544,44018 +77405,148,9,65488,10010 +77406,357,3,23966,1419800 +77407,262,6,316042,1438616 +77408,317,10,57654,931951 +77409,273,7,109424,227440 +77410,413,11,17895,82949 +77411,182,8,13616,1586586 +77412,3,5,55604,103050 +77413,234,1,407173,1230368 +77414,333,2,20174,85764 +77415,234,1,29542,19707 +77416,182,8,6972,1401739 +77417,53,2,118,1304 +77418,317,10,81654,29433 +77419,413,11,12720,73685 +77420,381,9,8470,1598735 +77421,53,2,9902,960707 +77422,269,9,10070,21420 +77423,204,9,16374,1470202 +77424,105,7,13090,40468 +77425,413,11,41714,983129 +77426,53,2,80304,928346 +77427,387,10,124115,2665 +77428,234,1,20871,96423 +77429,269,9,45987,134342 +77430,234,1,39578,26134 +77431,289,6,72105,1453929 +77432,413,11,10407,7754 +77433,148,9,8204,1327222 +77434,413,11,4820,3643 +77435,158,2,1991,1420163 +77436,234,1,32451,1089413 +77437,234,1,53168,118355 +77438,289,6,149870,1456606 +77439,234,1,58074,223708 +77440,373,7,271714,1638 +77441,5,10,22881,136186 +77442,333,2,262338,1857037 +77443,182,8,1251,1181576 +77444,413,11,259695,15841 +77445,317,10,115427,6210 +77446,273,7,10872,57124 +77447,182,8,9664,1557582 +77448,273,7,35651,5017 +77449,200,3,11056,17089 +77450,3,5,8071,39286 +77451,317,10,284296,2632 +77452,413,11,14137,56914 +77453,234,1,252171,1289604 +77454,97,7,74,1374169 +77455,77,10,16374,40312 +77456,143,7,1991,1392083 +77457,286,3,118737,1161605 +77458,75,5,311324,1658869 +77459,160,3,64678,4438 +77460,317,10,365065,1093748 +77461,148,9,12220,62144 +77462,148,9,16214,1311377 +77463,226,2,316154,1840867 +77464,87,7,24619,1692260 +77465,239,5,43459,31875 +77466,55,5,74,1868835 +77467,273,7,29058,58024 +77468,317,10,159636,1141391 +77469,169,3,10008,21224 +77470,3,5,62213,2423 +77471,269,9,5481,1191532 +77472,234,1,48706,909 +77473,52,10,172445,149103 +77474,204,9,79372,9062 +77475,204,9,20,2326 +77476,155,3,9928,13584 +77477,317,10,26736,87581 +77478,53,2,2262,9943 +77479,413,11,79466,1174596 +77480,182,8,131739,115646 +77481,413,11,97035,38490 +77482,413,11,6636,50925 +77483,234,1,30637,40599 +77484,317,10,122487,2725 +77485,105,7,351065,1674035 +77486,234,1,317168,1066863 +77487,234,1,12526,15175 +77488,75,5,17622,1405798 +77489,77,10,10265,64485 +77490,220,7,53798,4345 +77491,333,2,129359,1089148 +77492,53,2,72460,4150 +77493,317,10,65579,113515 +77494,317,10,21044,239 +77495,160,3,62630,1423427 +77496,53,2,499,1423673 +77497,179,2,10740,1470185 +77498,387,10,184578,16386 +77499,387,10,26963,96679 +77500,234,1,19719,85117 +77501,234,1,46448,51421 +77502,387,10,131194,11845 +77503,333,2,10364,13942 +77504,3,5,321315,1313871 +77505,3,5,116554,187329 +77506,3,5,87587,935271 +77507,209,7,10733,1352979 +77508,52,10,43199,233221 +77509,149,6,13682,1460783 +77510,398,9,284053,1411509 +77511,317,10,228407,559566 +77512,187,11,23823,1411874 +77513,203,1,121674,1436238 +77514,317,10,84420,1039415 +77515,53,2,111017,10189 +77516,60,1,81110,1355352 +77517,187,11,9428,1445479 +77518,234,1,29577,80570 +77519,234,1,26851,96445 +77520,387,10,201429,22759 +77521,413,11,77067,191939 +77522,234,1,72199,288215 +77523,413,11,5915,13227 +77524,234,1,130544,45192 +77525,157,3,28165,1387711 +77526,317,10,63300,1330438 +77527,3,5,27150,50240 +77528,234,1,76714,37361 +77529,234,1,389972,72496 +77530,317,10,65211,155248 +77531,317,10,21765,89113 +77532,234,1,70753,559559 +77533,286,3,245906,783230 +77534,234,1,10727,66739 +77535,317,10,42674,4664 +77536,204,9,4644,41678 +77537,387,10,92381,60320 +77538,317,10,115810,37526 +77539,387,10,75,513 +77540,317,10,277778,114620 +77541,104,7,924,1548529 +77542,366,3,76757,1417830 +77543,413,11,12237,72178 +77544,387,10,44190,30295 +77545,234,1,51054,2226 +77546,67,10,197854,148098 +77547,84,7,10733,1571778 +77548,234,1,175457,2798 +77549,387,10,10744,19000 +77550,273,7,27443,29276 +77551,234,1,36140,6817 +77552,234,1,68637,225142 +77553,413,11,422548,1099943 +77554,53,2,15037,40471 +77555,53,2,200,2519 +77556,387,10,2669,13317 +77557,197,5,10665,1896002 +77558,234,1,17669,113889 +77559,209,7,75174,1390382 +77560,317,10,128364,61479 +77561,269,9,393562,231581 +77562,273,7,55192,993587 +77563,209,7,8467,1392145 +77564,3,5,102629,935296 +77565,317,10,332534,1452407 +77566,182,8,206647,1582109 +77567,239,5,322443,1615079 +77568,387,10,11912,70919 +77569,413,11,73198,63536 +77570,413,11,244539,5175 +77571,387,10,57103,100972 +77572,75,5,83015,133868 +77573,127,3,186869,138626 +77574,234,1,152042,1252958 +77575,180,7,43075,1542727 +77576,76,2,45988,1730428 +77577,234,1,50364,212678 +77578,234,1,5060,40940 +77579,226,2,219466,1640827 +77580,289,6,72105,1455542 +77581,234,1,12182,71548 +77582,413,11,8071,25953 +77583,413,11,245168,71534 +77584,269,9,82,3188 +77585,5,10,86768,31062 +77586,5,10,337751,1462915 +77587,53,2,37926,17213 +77588,5,10,11540,24767 +77589,286,3,94480,3253 +77590,269,9,55700,5270 +77591,277,7,83015,1581801 +77592,204,9,204040,41754 +77593,262,6,55720,1336716 +77594,269,9,137145,1542297 +77595,190,7,2009,1586639 +77596,54,10,148265,1811922 +77597,148,9,1415,32606 +77598,234,1,12573,1223 +77599,160,3,924,15229 +77600,3,5,21828,72629 +77601,317,10,66966,24534 +77602,187,11,220820,1576477 +77603,413,11,318973,1161657 +77604,413,11,9252,18554 +77605,262,6,333484,1419102 +77606,317,10,86154,932927 +77607,413,11,4254,35739 +77608,234,1,31304,45791 +77609,333,2,274857,1574046 +77610,287,3,10134,50726 +77611,333,2,10740,9007 +77612,180,7,43266,958515 +77613,373,7,598,1531278 +77614,182,8,2567,1402034 +77615,148,9,195269,928271 +77616,373,7,267579,1583168 +77617,5,10,2428,83906 +77618,394,7,7326,1367667 +77619,387,10,9607,9612 +77620,387,10,1498,1332745 +77621,413,11,340187,1394673 +77622,333,2,382125,1678085 +77623,148,9,84030,1306186 +77624,333,2,109439,1053717 +77625,234,1,310126,120020 +77626,175,5,16342,1355542 +77627,213,10,49559,577428 +77628,387,10,46972,1063676 +77629,317,10,258251,83730 +77630,234,1,168541,1009298 +77631,170,5,125759,961199 +77632,317,10,57809,143732 +77633,317,10,266082,68813 +77634,415,3,214756,1459724 +77635,3,5,41604,236855 +77636,160,3,36094,6328 +77637,196,7,353686,1639573 +77638,53,2,69605,936639 +77639,97,7,13929,14657 +77640,234,1,39867,150650 +77641,317,10,85844,134343 +77642,413,11,117120,1437956 +77643,317,10,102222,1394042 +77644,317,10,431093,1305820 +77645,234,1,108788,1044885 +77646,328,6,20919,1423416 +77647,234,1,41581,1279071 +77648,166,9,395992,1459870 +77649,53,2,32082,936191 +77650,289,6,39148,122213 +77651,387,10,2974,29241 +77652,234,1,17303,81582 +77653,204,9,111017,9061 +77654,277,3,254007,1448768 +77655,148,9,2721,38090 +77656,46,5,13777,75304 +77657,204,9,18682,12280 +77658,387,10,379,1224 +77659,269,9,16374,54332 +77660,175,5,339530,1544664 +77661,317,10,40990,168277 +77662,387,10,9260,19272 +77663,394,7,76170,1398946 +77664,52,10,10198,227439 +77665,286,3,131739,115640 +77666,328,6,19995,1401793 +77667,3,5,48145,6652 +77668,234,1,47559,71570 +77669,3,5,14145,1209074 +77670,314,2,436,1624060 +77671,105,7,300187,1533568 +77672,232,10,630,9052 +77673,413,11,25388,9582 +77674,87,7,274479,232158 +77675,3,5,49717,1089956 +77676,15,6,118957,1402903 +77677,333,2,9425,1316599 +77678,61,7,228970,113049 +77679,148,9,48281,1517637 +77680,317,10,99313,16862 +77681,180,7,43095,1602605 +77682,148,9,71825,33711 +77683,286,3,144680,1849900 +77684,234,1,197335,21227 +77685,413,11,206647,3904 +77686,105,7,42251,36033 +77687,3,5,22894,23969 +77688,317,10,13042,8010 +77689,273,7,11399,4403 +77690,3,5,11131,32805 +77691,413,11,11235,23865 +77692,398,9,126889,1816361 +77693,45,9,244786,1525146 +77694,105,7,16151,79688 +77695,3,5,14459,1088258 +77696,235,5,118,1855207 +77697,53,2,773,5215 +77698,387,10,14430,7350 +77699,155,3,6973,1213742 +77700,415,3,33135,1304270 +77701,317,10,303857,78322 +77702,317,10,41097,125176 +77703,413,11,44932,136232 +77704,289,6,3933,1448073 +77705,387,10,2625,21136 +77706,204,9,309879,1570520 +77707,204,9,443319,1001720 +77708,54,10,29372,3375 +77709,317,10,435366,117370 +77710,317,10,128795,44834 +77711,373,7,14411,1401687 +77712,52,10,86718,81085 +77713,3,5,975,14555 +77714,234,1,28370,63550 +77715,234,1,203124,39995 +77716,188,8,197,1065246 +77717,234,1,116762,583399 +77718,113,9,10395,553 +77719,92,7,5425,1632427 +77720,203,1,41298,1744118 +77721,105,7,5804,1045 +77722,413,11,27358,235784 +77723,234,1,83191,18308 +77724,289,6,378236,1840335 +77725,182,8,354859,1884073 +77726,53,2,58060,1304 +77727,3,5,12124,71353 +77728,387,10,10950,67751 +77729,234,1,265717,1311610 +77730,286,3,177572,630 +77731,53,2,9028,29913 +77732,97,7,443319,113375 +77733,226,2,85414,1406863 +77734,317,10,47670,189131 +77735,273,7,362541,1518576 +77736,234,1,36530,39012 +77737,413,11,16090,8621 +77738,179,2,225285,1431150 +77739,226,2,1125,1412189 +77740,234,1,42206,2725 +77741,105,7,14531,1102455 +77742,166,9,8292,1337455 +77743,317,10,44511,583763 +77744,387,10,24825,136989 +77745,3,5,246655,9040 +77746,3,5,6951,2723 +77747,317,10,141643,1021398 +77748,53,2,356500,1066791 +77749,196,7,2046,1398460 +77750,317,10,222487,985032 +77751,317,10,14414,102445 +77752,127,3,194,1635277 +77753,327,7,17111,1629465 +77754,387,10,278316,5281 +77755,234,1,46014,89914 +77756,203,1,273481,1409284 +77757,3,5,288694,230349 +77758,52,10,35543,106587 +77759,85,10,218778,1203522 +77760,239,5,341174,1552475 +77761,234,1,243473,70854 +77762,3,5,12631,50280 +77763,317,10,22279,444552 +77764,387,10,67377,5811 +77765,53,2,1991,20490 +77766,203,1,1125,1340773 +77767,204,9,6341,1455433 +77768,234,1,101376,1024845 +77769,3,5,148284,504509 +77770,166,9,9457,1410346 +77771,234,1,110261,45577 +77772,105,7,258147,1298875 +77773,97,7,283686,1381236 +77774,317,10,39286,1174668 +77775,196,7,121598,90769 +77776,387,10,1482,17278 +77777,3,5,118760,1734726 +77778,387,10,65055,891946 +77779,204,9,47190,1330634 +77780,232,10,130717,128197 +77781,196,7,11370,1355962 +77782,3,5,11456,9165 +77783,200,3,72431,1484199 +77784,234,1,47386,138775 +77785,66,11,15653,1460421 +77786,148,9,18684,4104 +77787,127,3,223551,1263805 +77788,203,1,2172,1635810 +77789,234,1,1116,15488 +77790,244,3,284053,1713958 +77791,317,10,45772,136512 +77792,413,11,109441,13289 +77793,67,10,2924,1803797 +77794,387,10,29161,4668 +77795,262,6,47386,138800 +77796,66,11,383538,1851898 +77797,5,10,30943,1395166 +77798,301,5,236324,1097220 +77799,200,3,11024,1214632 +77800,60,1,69,75708 +77801,273,7,27230,33535 +77802,413,11,8070,3585 +77803,387,10,429200,227565 +77804,387,10,76686,114589 +77805,333,2,274479,1017340 +77806,234,1,43469,12329 +77807,111,7,3597,1790568 +77808,387,10,131781,30723 +77809,166,9,28178,1532071 +77810,196,7,9664,1335562 +77811,317,10,69404,580908 +77812,317,10,44434,1063229 +77813,77,10,192990,1173406 +77814,204,9,38766,120467 +77815,277,3,11697,3103 +77816,394,7,351211,166235 +77817,234,1,28000,1744 +77818,162,6,31947,20504 +77819,365,6,9502,1447556 +77820,317,10,38965,154078 +77821,97,7,9946,548439 +77822,3,5,364410,67498 +77823,333,2,9664,9162 +77824,234,1,21742,130143 +77825,204,9,606,10642 +77826,387,10,33345,14588 +77827,387,10,21030,87009 +77828,3,5,25053,232804 +77829,105,7,191312,1171838 +77830,301,5,318781,1622815 +77831,209,7,9457,16161 +77832,3,5,429174,68525 +77833,333,2,124963,1314150 +77834,413,11,12601,73065 +77835,143,7,85414,2889 +77836,54,10,1125,15558 +77837,75,5,102382,1399471 +77838,317,10,26809,137194 +77839,200,3,206647,1401147 +77840,387,10,12154,27444 +77841,317,10,47405,138855 +77842,204,9,450530,1374167 +77843,234,1,17483,81963 +77844,46,5,263115,1821908 +77845,3,5,9563,8408 +77846,187,11,11788,1335161 +77847,273,7,31264,29500 +77848,60,1,85640,1682640 +77849,198,6,274479,1608775 +77850,105,7,47878,63964 +77851,413,11,20287,909 +77852,187,11,103332,1408311 +77853,105,7,25468,1624840 +77854,317,10,296192,1371390 +77855,234,1,9529,57851 +77856,317,10,339367,85894 +77857,234,1,174162,37710 +77858,314,2,8204,1436493 +77859,203,1,75622,1414532 +77860,365,6,82999,929051 +77861,53,2,333663,1532597 +77862,179,2,238589,1319165 +77863,269,9,364410,1014489 +77864,273,7,26768,1568858 +77865,413,11,3057,29939 +77866,327,7,99698,1606187 +77867,115,9,2924,1803798 +77868,360,3,28452,1643884 +77869,234,1,58515,227911 +77870,158,2,62630,1338388 +77871,387,10,17046,81262 +77872,53,2,17691,1709860 +77873,203,1,210653,1773863 +77874,179,2,22803,1321589 +77875,148,9,330947,1127209 +77876,234,1,17317,56353 +77877,317,10,111239,163998 +77878,143,7,205587,113097 +77879,234,1,613,7832 +77880,3,5,27105,111987 +77881,3,5,21142,19102 +77882,413,11,11328,23332 +77883,234,1,341957,1470842 +77884,3,5,403119,1408391 +77885,269,9,7305,669 +77886,401,6,12,1335873 +77887,204,9,41610,32311 +77888,3,5,140,4376 +77889,97,7,265208,1420320 +77890,387,10,16096,141825 +77891,165,9,2675,1674648 +77892,245,3,49642,119446 +77893,3,5,124075,21093 +77894,3,5,391438,1576124 +77895,413,11,352164,1611039 +77896,286,3,7454,1106425 +77897,234,1,161299,57639 +77898,148,9,9296,19157 +77899,398,9,59965,1395019 +77900,122,8,12103,1625929 +77901,289,6,257344,1473419 +77902,52,10,44890,86357 +77903,333,2,15440,1336928 +77904,296,3,74,203521 +77905,387,10,2982,3599 +77906,167,3,3597,1790551 +77907,317,10,211928,1384985 +77908,317,10,84355,90492 +77909,161,6,10204,1613313 +77910,3,5,205584,17629 +77911,5,10,204800,1547729 +77912,413,11,6440,5327 +77913,387,10,49609,556858 +77914,3,5,33586,1485876 +77915,317,10,441728,150432 +77916,234,1,207636,29963 +77917,269,9,60488,12346 +77918,77,10,74,507 +77919,105,7,5998,1607838 +77920,234,1,17009,13594 +77921,226,2,1381,1447121 +77922,234,1,270774,16938 +77923,60,1,95358,66611 +77924,60,1,11202,69000 +77925,317,10,227700,1320497 +77926,3,5,41110,4404 +77927,234,1,25796,1895 +77928,105,7,25796,7422 +77929,298,5,206647,1405241 +77930,413,11,16214,8847 +77931,5,10,82191,593171 +77932,52,10,19336,1418626 +77933,415,3,13380,1535322 +77934,262,6,228970,1470535 +77935,148,9,17956,7857 +77936,387,10,46368,136155 +77937,317,10,101183,19069 +77938,182,8,9042,1407693 +77939,301,5,1690,1889488 +77940,105,7,68629,558 +77941,301,5,13058,1415042 +77942,317,10,45533,86009 +77943,187,11,10733,1360097 +77944,413,11,13849,1035076 +77945,394,7,242310,41888 +77946,269,9,8470,60087 +77947,287,3,13056,1531246 +77948,262,6,8869,1429248 +77949,3,5,14047,1301 +77950,180,7,34078,1611816 +77951,77,10,13484,54709 +77952,387,10,345922,1480594 +77953,317,10,132332,136013 +77954,87,7,329682,1577907 +77955,413,11,9816,59565 +77956,387,10,1251,33514 +77957,273,7,363579,929598 +77958,269,9,227348,17849 +77959,77,10,38580,63977 +77960,105,7,122019,31874 +77961,387,10,24822,87894 +77962,360,9,186869,1862934 +77963,53,2,403,5710 +77964,45,9,10066,1480964 +77965,204,9,63858,12346 +77966,273,7,275269,1676436 +77967,127,3,33673,2659 +77968,190,7,121598,1880910 +77969,213,10,35435,16137 +77970,234,1,345637,8048 +77971,269,9,228290,478882 +77972,333,2,241239,1340752 +77973,158,2,365942,1494535 +77974,269,9,20421,1552863 +77975,349,1,59387,1113194 +77976,3,5,139176,1365206 +77977,210,9,9475,1800196 +77978,53,2,5425,1632422 +77979,413,11,352890,10234 +77980,67,10,16652,105643 +77981,317,10,31665,21864 +77982,213,10,2764,27954 +77983,387,10,296288,1839934 +77984,413,11,13477,4868 +77985,273,7,62397,3098 +77986,3,5,408381,1362789 +77987,306,7,8467,1545951 +77988,234,1,17282,82505 +77989,234,1,120280,232313 +77990,208,2,252916,960057 +77991,317,10,351365,1217131 +77992,66,11,13056,112272 +77993,3,5,81463,1480653 +77994,97,7,2046,548445 +77995,387,10,12289,993812 +77996,127,3,22606,88979 +77997,234,1,86829,1224 +77998,141,7,177677,1133968 +77999,234,1,353728,956818 +78000,3,5,28940,1362907 +78001,401,6,9982,1450357 +78002,45,9,436,1624057 +78003,77,10,10075,62874 +78004,262,6,598,8593 +78005,328,6,9785,1462820 +78006,234,1,83587,995557 +78007,234,1,70192,94096 +78008,3,5,39195,58049 +78009,148,9,27265,11375 +78010,53,2,179288,60110 +78011,360,9,116979,1835191 +78012,273,7,369033,1401936 +78013,328,6,20648,1340324 +78014,269,9,107693,5270 +78015,189,3,4147,1392148 +78016,413,11,339342,1643464 +78017,5,10,32043,1096990 +78018,49,7,169,1398120 +78019,64,6,39995,88122 +78020,234,1,209271,916958 +78021,234,1,151911,49214 +78022,175,5,638,9360 +78023,3,5,44902,30923 +78024,413,11,3595,6189 +78025,5,10,4820,41752 +78026,413,11,326359,968327 +78027,349,1,10198,1451279 +78028,273,7,271718,312 +78029,234,1,16080,117486 +78030,383,3,8916,947 +78031,140,9,11024,1404357 +78032,308,3,29263,1659768 +78033,413,11,370755,53713 +78034,204,9,310888,1022551 +78035,314,2,11096,1458992 +78036,234,1,24397,130817 +78037,234,1,280004,40054 +78038,52,10,124277,1079149 +78039,234,1,44012,130030 +78040,204,9,52859,2763 +78041,188,8,163791,1601460 +78042,415,3,388243,74783 +78043,413,11,983,14745 +78044,221,3,10999,1338838 +78045,269,9,291871,1179839 +78046,182,8,169298,1407262 +78047,3,5,56816,1144119 +78048,387,10,11196,1012 +78049,234,1,11422,30422 +78050,189,3,17577,1190611 +78051,53,2,5881,46285 +78052,234,1,384160,1396218 +78053,273,7,28774,2585 +78054,413,11,352208,92779 +78055,234,1,16907,187 +78056,99,3,12311,96255 +78057,148,9,14254,32201 +78058,387,10,278939,8108 +78059,209,7,79935,1447090 +78060,164,3,178809,1530192 +78061,234,1,192023,1172460 +78062,234,1,439050,1182809 +78063,394,7,9593,1391387 +78064,155,3,267931,1429470 +78065,327,7,222935,1399057 +78066,148,9,170759,1153035 +78067,413,11,84708,1552 +78068,155,3,269797,7727 +78069,373,7,283384,1397173 +78070,3,5,12516,70129 +78071,105,7,88176,29120 +78072,10,3,693,8172 +78073,179,2,13580,31060 +78074,53,2,2565,1329759 +78075,275,9,693,1534821 +78076,387,10,42023,348 +78077,234,1,331962,1443611 +78078,399,9,10198,1615582 +78079,52,10,11697,544594 +78080,53,2,229702,1485676 +78081,234,1,29345,103580 +78082,413,11,43850,1582969 +78083,182,8,310133,1524565 +78084,53,2,87826,16469 +78085,377,3,263115,1821910 +78086,317,10,124202,1390009 +78087,234,1,30680,1039502 +78088,204,9,742,11235 +78089,273,7,250066,1495522 +78090,234,1,125257,93078 +78091,413,11,1661,5136 +78092,234,1,287233,92317 +78093,387,10,8965,1372782 +78094,18,2,329865,1646491 +78095,289,6,263115,1821912 +78096,105,7,46387,1043346 +78097,3,5,11113,10537 +78098,204,9,1902,19848 +78099,415,3,378441,1797504 +78100,296,3,312831,1568957 +78101,234,1,295914,1372345 +78102,286,3,123334,1284242 +78103,239,5,14,108146 +78104,52,10,55823,5810 +78105,3,5,395982,1429478 +78106,12,10,19766,1212336 +78107,234,1,3092,31439 +78108,108,10,291270,202 +78109,317,10,78377,24425 +78110,97,7,2924,14657 +78111,234,1,206574,98190 +78112,273,7,15559,94238 +78113,328,6,333663,1709180 +78114,105,7,289,13571 +78115,160,3,10733,1378239 +78116,234,1,231145,139280 +78117,52,10,270672,1400680 +78118,234,1,144111,108983 +78119,148,9,13526,1413906 +78120,387,10,11091,23758 +78121,269,9,405882,1329814 +78122,317,10,285840,1038000 +78123,286,3,84226,583874 +78124,269,9,4762,39302 +78125,412,9,11202,1544004 +78126,273,7,29101,22047 +78127,234,1,21159,91788 +78128,143,7,17577,1423839 +78129,387,10,130544,45192 +78130,53,2,4111,9064 +78131,203,1,9504,958273 +78132,204,9,51284,1191038 +78133,234,1,237584,34510 +78134,204,9,105860,80947 +78135,286,3,114577,1059049 +78136,387,10,9717,63892 +78137,294,3,8467,1540477 +78138,113,9,13380,1445977 +78139,52,10,21955,52629 +78140,333,2,703,10443 +78141,273,7,15003,1044544 +78142,75,5,60855,957150 +78143,203,1,10201,1400540 +78144,234,1,6171,8844 +78145,53,2,8463,557 +78146,317,10,96132,5810 +78147,3,5,29444,9573 +78148,234,1,332746,1098038 +78149,160,3,283384,72117 +78150,234,1,351365,106805 +78151,234,1,321779,96387 +78152,262,6,10796,1403537 +78153,273,7,45533,133179 +78154,105,7,48118,1116047 +78155,190,7,240832,1337646 +78156,237,7,9836,1394862 +78157,3,5,384737,967417 +78158,75,5,87826,1409831 +78159,234,1,151068,1037667 +78160,387,10,384682,84417 +78161,234,1,60457,123543 +78162,3,5,11234,13809 +78163,269,9,163,1890 +78164,333,2,345922,1158052 +78165,5,10,61934,1284807 +78166,269,9,10929,12706 +78167,187,11,9102,1380387 +78168,66,11,578,12865 +78169,317,10,241620,219396 +78170,33,10,691,35835 +78171,234,1,187028,357 +78172,273,7,71066,148849 +78173,226,2,18,1407223 +78174,273,7,10973,30130 +78175,105,7,48787,58389 +78176,97,7,284052,1116937 +78177,52,10,31411,1500 +78178,317,10,25977,102740 +78179,210,9,9946,54732 +78180,269,9,26252,1311967 +78181,15,6,209112,1661324 +78182,37,3,61400,233079 +78183,273,7,19688,1701615 +78184,269,9,126889,60579 +78185,281,6,435,1767017 +78186,204,9,26516,13290 +78187,97,7,378485,1742504 +78188,234,1,110,1126 +78189,317,10,18392,551518 +78190,221,3,197,1608539 +78191,413,11,156335,33692 +78192,3,5,42215,8934 +78193,52,10,45211,39463 +78194,204,9,30361,77295 +78195,234,1,2993,29433 +78196,317,10,38034,119467 +78197,273,7,103432,232187 +78198,3,5,101185,6603 +78199,387,10,116711,60678 +78200,3,5,580,16206 +78201,273,7,8776,56291 +78202,64,6,2503,1325557 +78203,387,10,10373,2261 +78204,3,5,298722,1201922 +78205,52,10,36797,72714 +78206,3,5,10235,9606 +78207,234,1,159128,87082 +78208,148,9,21711,6494 +78209,317,10,459295,7404 +78210,252,3,9472,1567964 +78211,413,11,126415,18333 +78212,45,9,419430,1739844 +78213,413,11,30583,572056 +78214,3,5,254679,144559 +78215,387,10,2897,144066 +78216,148,9,742,11236 +78217,413,11,98094,1357656 +78218,287,3,18998,59287 +78219,333,2,283445,1548105 +78220,269,9,16820,2999 +78221,262,6,2567,15022 +78222,234,1,33102,91343 +78223,234,1,245168,93288 +78224,346,3,7916,1438629 +78225,317,10,54845,1255830 +78226,273,7,11048,18836 +78227,72,11,395982,1755130 +78228,234,1,145316,225974 +78229,419,10,312100,1096204 +78230,160,3,14983,1408773 +78231,387,10,70736,28865 +78232,169,3,1715,1422412 +78233,187,11,10070,1376899 +78234,105,7,29146,13745 +78235,54,10,10776,62049 +78236,387,10,27832,99122 +78237,368,7,2675,91144 +78238,306,7,406431,1650631 +78239,67,10,10727,1584257 +78240,143,7,46261,1410551 +78241,273,7,13555,1081818 +78242,234,1,302666,1507476 +78243,413,11,5928,37880 +78244,3,5,50674,1042810 +78245,413,11,742,11234 +78246,53,2,82191,77491 +78247,187,11,70981,1364410 +78248,269,9,383618,1410874 +78249,305,9,8470,1776549 +78250,203,1,13056,1384397 +78251,289,6,96458,1009383 +78252,60,1,42502,1511310 +78253,234,1,20916,110241 +78254,254,10,369894,73233 +78255,175,5,9438,1401594 +78256,189,3,41283,1397737 +78257,250,11,9785,1427430 +78258,413,11,150338,11443 +78259,234,1,125548,93025 +78260,3,5,12247,71880 +78261,317,10,31978,108670 +78262,304,10,20132,85700 +78263,234,1,41559,69139 +78264,306,7,60281,12533 +78265,387,10,72096,940694 +78266,413,11,175334,81285 +78267,204,9,50318,1350235 +78268,204,9,180383,1210241 +78269,140,9,263115,1327405 +78270,204,9,10320,6922 +78271,413,11,87349,10185 +78272,317,10,402446,74531 +78273,198,6,354859,1724208 +78274,287,3,9286,1441348 +78275,171,3,379019,1394484 +78276,234,1,23692,40599 +78277,234,1,38164,24281 +78278,204,9,126889,9583 +78279,53,2,227964,1665822 +78280,5,10,40218,1048636 +78281,3,5,291865,1293568 +78282,317,10,364324,92015 +78283,234,1,258585,1314863 +78284,234,1,27349,648 +78285,273,7,11654,70381 +78286,204,9,9032,275201 +78287,317,10,59861,54645 +78288,317,10,71147,20783 +78289,148,9,10754,66453 +78290,333,2,6440,74323 +78291,204,9,98536,17763 +78292,317,10,88176,2094 +78293,105,7,100275,1519335 +78294,333,2,9966,25021 +78295,234,1,338312,125684 +78296,234,1,124680,938945 +78297,398,9,11607,42281 +78298,204,9,705,3358 +78299,234,1,34127,87700 +78300,53,2,15,10153 +78301,234,1,28171,100014 +78302,234,1,424600,5369 +78303,413,11,17258,95334 +78304,319,1,1481,1844352 +78305,53,2,406449,1698808 +78306,234,1,285858,986587 +78307,105,7,405882,1513594 +78308,234,1,315841,3317 +78309,287,3,39875,1390234 +78310,204,9,147722,4085 +78311,3,5,44027,6826 +78312,203,1,30644,1827212 +78313,269,9,347945,86817 +78314,148,9,157,1824 +78315,328,6,227306,1547204 +78316,387,10,170430,1387546 +78317,333,2,2666,961143 +78318,360,3,67822,1485473 +78319,285,5,435,1762789 +78320,203,1,214938,1597064 +78321,387,10,97365,17496 +78322,5,10,5552,44070 +78323,5,10,31067,6833 +78324,317,10,26955,96657 +78325,3,5,28673,56033 +78326,317,10,196469,1084436 +78327,289,6,87827,1460611 +78328,234,1,104466,11523 +78329,108,10,121052,26157 +78330,413,11,80473,91322 +78331,250,11,274857,1720820 +78332,148,9,243935,1020060 +78333,204,9,936,13782 +78334,387,10,13225,71793 +78335,413,11,15584,80207 +78336,196,7,38027,14842 +78337,62,3,8464,1000909 +78338,317,10,234862,1270224 +78339,234,1,12247,71872 +78340,373,7,13616,1403798 +78341,234,1,44522,33781 +78342,204,9,11202,35154 +78343,143,7,293660,113054 +78344,60,1,35651,1590612 +78345,148,9,28268,1550320 +78346,234,1,18548,3125 +78347,53,2,9352,1322483 +78348,234,1,18638,67632 +78349,3,5,15902,1102098 +78350,53,2,9438,798 +78351,317,10,20307,85923 +78352,234,1,114377,1058611 +78353,175,5,24397,1385931 +78354,72,11,169,1877173 +78355,273,7,76200,19085 +78356,187,11,394645,1864634 +78357,3,5,352197,68929 +78358,234,1,246829,1281191 +78359,289,6,312100,1452924 +78360,269,9,172847,1155552 +78361,234,1,13390,239262 +78362,306,7,170279,1475703 +78363,53,2,50780,20172 +78364,269,9,2321,9178 +78365,234,1,76202,69912 +78366,204,9,43967,78370 +78367,52,10,65904,138799 +78368,289,6,9514,1642579 +78369,413,11,369697,19759 +78370,234,1,245775,72327 +78371,234,1,90616,938617 +78372,196,7,2503,1392083 +78373,269,9,11321,13304 +78374,218,1,83015,1834948 +78375,213,10,148697,1127934 +78376,207,3,10590,1456359 +78377,234,1,69103,148147 +78378,226,2,44363,1451402 +78379,413,11,189,2294 +78380,234,1,18051,72258 +78381,234,1,241593,1090113 +78382,77,10,10257,64421 +78383,413,11,283445,1327842 +78384,387,10,34128,932716 +78385,413,11,6644,50976 +78386,234,1,96951,130706 +78387,234,1,352498,1327643 +78388,60,1,116463,1691477 +78389,234,1,19797,1066114 +78390,413,11,261246,1161366 +78391,273,7,110598,47452 +78392,287,3,298584,30065 +78393,234,1,11381,13426 +78394,317,10,32168,84998 +78395,66,11,33586,1815013 +78396,413,11,3577,703 +78397,181,7,334,1546442 +78398,3,5,109379,1331684 +78399,207,3,936,14265 +78400,3,5,12112,5431 +78401,12,10,1273,19503 +78402,187,11,12103,1403636 +78403,413,11,98115,1155518 +78404,234,1,301272,120653 +78405,52,10,121006,34741 +78406,234,1,109298,122633 +78407,234,1,334175,145470 +78408,413,11,15045,56972 +78409,53,2,544,7418 +78410,319,1,857,1837276 +78411,387,10,120854,1072792 +78412,317,10,27561,108231 +78413,394,7,1647,572622 +78414,143,7,805,9107 +78415,226,2,403,16194 +78416,20,2,293167,1532754 +78417,180,7,40085,11446 +78418,148,9,26873,96502 +78419,317,10,66597,16838 +78420,317,10,47459,1003906 +78421,105,7,45184,7647 +78422,317,10,42502,793 +78423,234,1,191312,1171837 +78424,60,1,117999,3016 +78425,319,1,18,1857475 +78426,413,11,275269,123313 +78427,102,3,9297,1462700 +78428,403,10,84449,37622 +78429,273,7,100110,28947 +78430,234,1,185158,108929 +78431,397,7,56391,1326080 +78432,273,7,11227,68669 +78433,234,1,43241,101225 +78434,196,7,256092,1427464 +78435,234,1,279692,40230 +78436,234,1,33489,16862 +78437,234,1,40562,124092 +78438,301,5,183412,1419637 +78439,273,7,26643,229862 +78440,387,10,2897,2088 +78441,234,1,196065,29700 +78442,234,1,173168,946395 +78443,175,5,369406,1450897 +78444,234,1,382591,1119418 +78445,234,1,65787,80570 +78446,333,2,154972,1755192 +78447,53,2,68629,1538718 +78448,413,11,68347,1435164 +78449,387,10,99324,1163076 +78450,200,3,189,1401141 +78451,387,10,146970,92928 +78452,250,11,41283,32806 +78453,314,2,46286,1408134 +78454,273,7,76084,12142 +78455,234,1,43757,79113 +78456,387,10,63178,32375 +78457,306,7,407806,1340345 +78458,269,9,51999,24168 +78459,387,10,28421,78158 +78460,234,1,166904,89745 +78461,3,5,323679,1203818 +78462,3,5,10071,17146 +78463,204,9,157343,14448 +78464,286,3,207641,21255 +78465,179,2,78802,23816 +78466,269,9,459,6813 +78467,234,1,252746,35318 +78468,53,2,10400,8428 +78469,52,10,130925,7879 +78470,387,10,8916,3289 +78471,289,6,346672,1721325 +78472,413,11,11930,57040 +78473,268,7,17771,1340333 +78474,317,10,18736,7398 +78475,317,10,348537,85552 +78476,58,2,271404,1764800 +78477,277,3,1579,1400339 +78478,333,2,311324,1658883 +78479,200,3,74,1401105 +78480,352,3,8204,1072821 +78481,234,1,26636,95901 +78482,234,1,91181,101885 +78483,286,3,33201,23951 +78484,413,11,11056,17089 +78485,105,7,371741,11269 +78486,234,1,47459,14268 +78487,3,5,42045,18257 +78488,203,1,7916,1438628 +78489,413,11,365997,77863 +78490,381,9,251,1453278 +78491,3,5,27138,53288 +78492,373,7,79935,1209163 +78493,387,10,142507,1117468 +78494,387,10,11084,68184 +78495,234,1,23223,9200 +78496,53,2,330770,1616021 +78497,286,3,285400,120031 +78498,289,6,9514,133293 +78499,387,10,96433,1077512 +78500,203,1,18414,1426003 +78501,234,1,13728,14606 +78502,387,10,300155,29230 +78503,269,9,1452,1271644 +78504,175,5,858,555085 +78505,148,9,329440,1335138 +78506,160,3,2830,1007395 +78507,234,1,26656,144818 +78508,53,2,13483,91050 +78509,301,5,8292,1399927 +78510,234,1,109451,1046494 +78511,360,9,1690,25749 +78512,3,5,10391,17629 +78513,160,3,243935,1372092 +78514,204,9,169869,5188 +78515,53,2,76341,17166 +78516,143,7,407,5598 +78517,398,9,693,1339436 +78518,3,5,61950,67324 +78519,5,10,19606,110482 +78520,5,10,37368,15379 +78521,203,1,325712,1302528 +78522,273,7,98582,6526 +78523,52,10,58080,50818 +78524,317,10,314389,123219 +78525,413,11,341174,6581 +78526,234,1,9572,37705 +78527,72,11,345922,1567974 +78528,387,10,12650,21033 +78529,234,1,372226,550172 +78530,208,2,297762,1428470 +78531,234,1,14804,143018 +78532,53,2,312221,1313928 +78533,7,3,11351,1192949 +78534,52,10,45679,133438 +78535,360,3,578,1341399 +78536,52,10,103938,13971 +78537,289,6,32428,555752 +78538,409,7,194817,63006 +78539,53,2,43596,1546259 +78540,148,9,341491,24164 +78541,234,1,123846,108022 +78542,360,3,242310,1367126 +78543,317,10,21801,1027145 +78544,234,1,76268,586137 +78545,204,9,299,1111050 +78546,413,11,66175,101498 +78547,317,10,25500,78121 +78548,234,1,227871,100022 +78549,234,1,209248,26600 +78550,388,9,228970,1867529 +78551,3,5,102630,37004 +78552,234,1,173662,16042 +78553,52,10,147903,200567 +78554,127,3,2321,142160 +78555,226,2,69668,1425972 +78556,76,2,22279,958903 +78557,387,10,11007,12892 +78558,3,5,46094,60085 +78559,317,10,286789,223791 +78560,273,7,362439,43924 +78561,204,9,32068,161975 +78562,317,10,94170,1217380 +78563,182,8,227975,1775641 +78564,234,1,87826,57370 +78565,179,2,17889,1012329 +78566,387,10,70500,152000 +78567,234,1,377432,168782 +78568,317,10,112675,122740 +78569,387,10,977,9076 +78570,269,9,8588,36783 +78571,387,10,26376,128782 +78572,3,5,69668,8750 +78573,327,7,255343,1512771 +78574,328,6,274857,42263 +78575,3,5,423093,1143001 +78576,286,3,76829,17556 +78577,60,1,43009,99525 +78578,53,2,10119,63752 +78579,204,9,67748,1317312 +78580,148,9,49521,8706 +78581,168,3,8619,1681201 +78582,3,5,252102,958112 +78583,234,1,142216,109876 +78584,52,10,29872,13803 +78585,373,7,10929,1347998 +78586,77,10,35253,114352 +78587,189,3,1586,1611806 +78588,148,9,95743,63292 +78589,262,6,5413,1340123 +78590,53,2,14476,1206111 +78591,234,1,34128,932715 +78592,234,1,133788,550268 +78593,273,7,4953,4278 +78594,413,11,15556,53645 +78595,204,9,54227,3255 +78596,317,10,257716,47061 +78597,387,10,12220,16853 +78598,317,10,42989,149983 +78599,269,9,2280,23966 +78600,75,5,117999,1518592 +78601,413,11,17692,239179 +78602,196,7,250066,1338484 +78603,204,9,1448,17256 +78604,250,11,80276,1704834 +78605,262,6,6068,1445885 +78606,333,2,338,1443182 +78607,317,10,54548,36484 +78608,250,11,19995,1401815 +78609,399,9,53178,225717 +78610,232,10,28209,100118 +78611,208,2,13336,1335414 +78612,327,7,10796,1392081 +78613,234,1,145668,205402 +78614,204,9,10025,13933 +78615,273,7,8064,53858 +78616,234,1,133783,19684 +78617,75,5,177979,36106 +78618,204,9,49013,1516157 +78619,77,10,9956,60911 +78620,301,5,334,1397731 +78621,113,9,245168,1578875 +78622,105,7,406992,1528 +78623,234,1,9882,9181 +78624,53,2,110540,11491 +78625,53,2,14626,957442 +78626,234,1,441728,81256 +78627,317,10,10493,11452 +78628,234,1,84493,1012004 +78629,72,11,949,1433743 +78630,46,5,10733,1571717 +78631,387,10,12276,72019 +78632,204,9,1717,1094395 +78633,187,11,107250,1834277 +78634,67,10,3933,1451296 +78635,317,10,17622,22140 +78636,45,9,339527,1566124 +78637,5,10,31439,126520 +78638,67,10,10320,585767 +78639,196,7,9428,1399970 +78640,317,10,42501,15389 +78641,45,9,14430,1521678 +78642,175,5,338,1585872 +78643,413,11,286709,1475899 +78644,325,5,180305,1453137 +78645,182,8,72431,1425503 +78646,262,6,13205,1815474 +78647,234,1,60140,89226 +78648,269,9,18282,2083 +78649,398,9,7445,1378749 +78650,387,10,14301,12891 +78651,346,3,2567,1402040 +78652,123,3,31347,1626866 +78653,333,2,10632,1712105 +78654,317,10,84354,930713 +78655,53,2,79645,1467258 +78656,317,10,82708,928679 +78657,234,1,53209,29962 +78658,387,10,163706,15191 +78659,234,1,121234,80570 +78660,196,7,2666,75148 +78661,387,10,13965,76195 +78662,3,5,25643,6389 +78663,179,2,9664,1530262 +78664,387,10,266856,1041394 +78665,268,7,263115,1757634 +78666,148,9,805,12019 +78667,387,10,415072,30969 +78668,198,6,395992,1770985 +78669,234,1,26841,235990 +78670,387,10,39195,122458 +78671,234,1,78307,1194681 +78672,164,3,324670,1579398 +78673,387,10,25499,225149 +78674,273,7,193177,13301 +78675,273,7,33511,411719 +78676,200,3,17654,1409708 +78677,289,6,5393,1460200 +78678,333,2,1480,957990 +78679,286,3,433034,1768215 +78680,234,1,239562,80602 +78681,387,10,17074,34933 +78682,333,2,140607,1439130 +78683,333,2,29161,1575790 +78684,204,9,9899,60014 +78685,209,7,1125,1425395 +78686,5,10,31548,18739 +78687,185,11,435,1733142 +78688,234,1,85516,589933 +78689,3,5,11440,8194 +78690,15,6,116711,87059 +78691,387,10,975,10769 +78692,148,9,50247,1604074 +78693,234,1,37959,84990 +78694,273,7,10274,49911 +78695,234,1,288710,1168119 +78696,53,2,38027,5493 +78697,413,11,38027,16751 +78698,287,3,2929,28971 +78699,203,1,11610,1338894 +78700,5,10,33613,73799 +78701,413,11,9317,57288 +78702,3,5,30996,106238 +78703,317,10,53870,20686 +78704,234,1,54243,76418 +78705,204,9,19995,132604 +78706,317,10,310133,1293994 +78707,352,3,4147,1558219 +78708,387,10,19719,51856 +78709,198,6,206647,1551897 +78710,234,1,54166,67924 +78711,105,7,38775,121344 +78712,45,9,199575,1654526 +78713,387,10,94468,127535 +78714,413,11,76640,11410 +78715,105,7,34231,1460026 +78716,3,5,45874,19102 +78717,328,6,296523,1053820 +78718,388,9,7916,1438601 +78719,143,7,70667,136364 +78720,249,7,13616,1555200 +78721,387,10,42648,19249 +78722,269,9,18148,552003 +78723,141,7,2898,932186 +78724,72,11,1647,999646 +78725,105,7,59419,1155523 +78726,413,11,213443,22086 +78727,148,9,64972,1322482 +78728,234,1,155597,26265 +78729,179,2,13849,1411106 +78730,239,5,287,1534830 +78731,273,7,8619,65046 +78732,277,3,130739,1201974 +78733,52,10,9514,57800 +78734,204,9,280690,1819974 +78735,394,7,443319,222365 +78736,179,2,42188,1831960 +78737,413,11,18595,1160654 +78738,387,10,292625,1758585 +78739,367,11,15,11783 +78740,105,7,180383,1388092 +78741,282,3,198795,1743906 +78742,413,11,13312,64130 +78743,234,1,81775,34264 +78744,204,9,10145,1206767 +78745,182,8,266102,1606170 +78746,273,7,33923,26026 +78747,105,7,395982,1419368 +78748,317,10,159185,554079 +78749,317,10,71866,564083 +78750,148,9,53879,9587 +78751,413,11,39308,996046 +78752,20,2,339403,1461181 +78753,289,6,9514,1447338 +78754,269,9,157424,34193 +78755,135,3,12103,1625914 +78756,234,1,16171,72156 +78757,3,5,163870,545765 +78758,175,5,15476,1392972 +78759,175,5,9358,968264 +78760,217,3,398633,1623954 +78761,108,10,162862,1162323 +78762,269,9,32604,19380 +78763,415,3,338,1585874 +78764,317,10,19989,53006 +78765,53,2,42537,1009388 +78766,235,5,177677,1545995 +78767,310,3,65881,1293611 +78768,317,10,71336,1871462 +78769,204,9,1966,23773 +78770,273,7,2110,996 +78771,52,10,69103,139539 +78772,196,7,238589,80819 +78773,273,7,11134,1038271 +78774,234,1,25366,93632 +78775,387,10,59181,558148 +78776,234,1,26152,146481 +78777,387,10,214,2128 +78778,209,7,17622,1400415 +78779,317,10,291155,1393777 +78780,414,9,11547,1739973 +78781,203,1,220820,1405268 +78782,5,10,2075,14724 +78783,387,10,10484,38507 +78784,387,10,81435,931867 +78785,273,7,51144,1092520 +78786,234,1,331958,1120003 +78787,273,7,43211,14138 +78788,52,10,69266,9182 +78789,105,7,43641,1672192 +78790,179,2,87826,1316192 +78791,234,1,80988,590896 +78792,413,11,105077,1115250 +78793,373,7,332872,1400474 +78794,317,10,25977,102773 +78795,289,6,109451,1455618 +78796,413,11,17170,6491 +78797,387,10,52736,1346592 +78798,53,2,44414,1304456 +78799,387,10,28176,132832 +78800,99,3,3989,34518 +78801,413,11,37181,1083065 +78802,311,9,1428,1851746 +78803,273,7,10918,2593 +78804,204,9,33472,12349 +78805,317,10,40041,15557 +78806,413,11,128625,1087513 +78807,158,2,188927,1638559 +78808,234,1,298296,1375751 +78809,148,9,41733,75391 +78810,60,1,33673,1340084 +78811,301,5,9286,1441367 +78812,3,5,70753,559560 +78813,413,11,10066,13245 +78814,317,10,55257,16767 +78815,328,6,435,1392099 +78816,317,10,56095,1581084 +78817,113,9,12783,1427500 +78818,179,2,10733,1328407 +78819,105,7,5998,47087 +78820,269,9,118098,17165 +78821,234,1,19995,2710 +78822,180,7,52556,1603626 +78823,105,7,17908,11166 +78824,148,9,33345,5060 +78825,18,2,2567,6053 +78826,273,7,43753,129809 +78827,148,9,23823,1541738 +78828,387,10,52520,54781 +78829,234,1,55655,222866 +78830,269,9,13005,1397305 +78831,5,10,2486,25454 +78832,317,10,8316,1146 +78833,286,3,77067,939451 +78834,105,7,1833,19319 +78835,273,7,2291,2704 +78836,3,5,11215,12846 +78837,317,10,118257,2303 +78838,3,5,33345,3769 +78839,105,7,340187,1315941 +78840,387,10,140276,13971 +78841,234,1,64792,112752 +78842,387,10,316654,1086433 +78843,52,10,84508,928157 +78844,387,10,335872,139748 +78845,105,7,206574,1339121 +78846,413,11,83899,98631 +78847,3,5,47653,14020 +78848,200,3,72545,1415620 +78849,75,5,228970,1470527 +78850,415,3,34127,111173 +78851,40,1,6163,75835 +78852,234,1,22779,577599 +78853,302,9,857,1662298 +78854,234,1,97598,33026 +78855,52,10,9659,951895 +78856,387,10,55448,18253 +78857,204,9,206647,979698 +78858,226,2,15019,1336164 +78859,105,7,31913,10494 +78860,198,6,228066,1550774 +78861,333,2,29239,29813 +78862,52,10,74911,120729 +78863,268,7,419430,1757635 +78864,317,10,205818,1176379 +78865,155,3,153,5953 +78866,219,11,12103,417960 +78867,3,5,32043,1153 +78868,60,1,121636,33842 +78869,53,2,54111,1630754 +78870,5,10,59569,134572 +78871,413,11,10389,31033 +78872,127,3,9716,1661575 +78873,275,9,378236,1529873 +78874,75,5,6972,1401736 +78875,317,10,55192,95501 +78876,360,3,2666,9421 +78877,317,10,333103,1448118 +78878,273,7,48594,1436717 +78879,250,11,278632,1412014 +78880,105,7,253612,1383185 +78881,317,10,38715,147010 +78882,333,2,38766,26175 +78883,413,11,95536,234483 +78884,387,10,5257,42378 +78885,12,10,10198,1447357 +78886,387,10,110160,143593 +78887,403,10,84708,1521756 +78888,92,7,186585,1289031 +78889,241,3,1125,1551522 +78890,387,10,37710,8193 +78891,234,1,40785,128610 +78892,75,5,10004,1408357 +78893,234,1,10946,67589 +78894,5,10,2786,3334 +78895,232,10,183962,114965 +78896,176,3,127372,132601 +78897,291,6,284052,29611 +78898,269,9,12645,1316189 +78899,52,10,41787,1405247 +78900,387,10,42852,65854 +78901,53,2,3539,32417 +78902,53,2,18843,1194380 +78903,234,1,32003,1537054 +78904,234,1,383618,80721 +78905,105,7,378607,1566576 +78906,296,3,186869,1862928 +78907,413,11,10804,7754 +78908,166,9,210913,1405250 +78909,387,10,87827,12996 +78910,317,10,85424,138138 +78911,175,5,44363,1451413 +78912,317,10,204965,1187346 +78913,175,5,3057,1266989 +78914,317,10,28036,98335 +78915,387,10,53256,1071 +78916,52,10,49609,8502 +78917,166,9,279690,1630963 +78918,203,1,215928,1208092 +78919,269,9,192558,85400 +78920,160,3,13505,1007395 +78921,60,1,46738,1536192 +78922,317,10,97683,1039521 +78923,234,1,390,2303 +78924,413,11,338063,1461483 +78925,105,7,8414,53279 +78926,97,7,1991,548445 +78927,187,11,284052,1415464 +78928,387,10,11694,13861 +78929,285,5,7220,1570751 +78930,317,10,335970,60950 +78931,387,10,29286,30102 +78932,269,9,572,7759 +78933,77,10,332759,54747 +78934,262,6,26656,1454514 +78935,232,10,186227,84237 +78936,52,10,173634,1612627 +78937,234,1,12085,17397 +78938,234,1,276819,1097857 +78939,333,2,1125,1551530 +78940,387,10,24351,60400 +78941,269,9,271826,1588850 +78942,148,9,245700,1024844 +78943,53,2,921,8411 +78944,317,10,85009,130574 +78945,405,8,25538,1772960 +78946,34,8,11045,1435656 +78947,373,7,15476,1392969 +78948,413,11,338063,1439345 +78949,234,1,209251,79000 +78950,3,5,982,14726 +78951,273,7,30352,3393 +78952,169,3,351901,1377417 +78953,3,5,112244,1083276 +78954,317,10,333103,933410 +78955,289,6,264264,1453014 +78956,221,3,117,1639865 +78957,183,5,9882,1714916 +78958,317,10,17003,53068 +78959,52,10,86703,289992 +78960,317,10,252724,62365 +78961,204,9,38766,3358 +78962,387,10,37911,119082 +78963,234,1,47096,95456 +78964,3,5,19398,1469351 +78965,234,1,270724,99689 +78966,273,7,48949,2027 +78967,3,5,104193,1093432 +78968,327,7,13393,1304679 +78969,373,7,3682,15894 +78970,108,10,87123,141604 +78971,413,11,15616,56537 +78972,234,1,40863,18897 +78973,5,10,9589,58110 +78974,52,10,346672,118413 +78975,394,7,12573,9619 +78976,53,2,219233,1493666 +78977,75,5,59965,1395029 +78978,269,9,346672,962085 +78979,413,11,13596,21794 +78980,273,7,39833,11441 +78981,57,2,313922,1401604 +78982,333,2,425774,1707977 +78983,273,7,425591,1315941 +78984,196,7,257345,558166 +78985,273,7,23397,8422 +78986,234,1,201724,188269 +78987,413,11,12618,2241 +78988,3,5,113638,14864 +78989,187,11,334074,1414093 +78990,52,10,18755,1340950 +78991,317,10,449131,83831 +78992,387,10,126712,117682 +78993,234,1,83899,98631 +78994,413,11,399798,1627510 +78995,66,11,7220,1707140 +78996,53,2,7006,61539 +78997,387,10,88583,94096 +78998,196,7,109424,1408374 +78999,175,5,109424,1408393 +79000,105,7,84942,1325555 +79001,203,1,241239,1347761 +79002,328,6,74,1790958 +79003,92,7,144111,14964 +79004,3,5,9959,19464 +79005,234,1,67130,11426 +79006,209,7,168027,15225 +79007,234,1,252520,1297617 +79008,52,10,88375,936151 +79009,234,1,409,2239 +79010,5,10,120831,20875 +79011,203,1,294272,1635597 +79012,204,9,62441,1205631 +79013,203,1,11622,1339468 +79014,3,5,16643,1258 +79015,105,7,26299,19096 +79016,67,10,297762,1550186 +79017,117,5,4592,1451245 +79018,236,8,169,1877172 +79019,75,5,258480,957361 +79020,3,5,9441,1095 +79021,12,10,14885,77545 +79022,234,1,72753,64877 +79023,52,10,1938,50765 +79024,148,9,22292,9799 +79025,387,10,10749,66639 +79026,143,7,59678,1393303 +79027,333,2,124054,1085031 +79028,11,6,122662,1136052 +79029,3,5,131966,1027513 +79030,289,6,10727,1418298 +79031,3,5,227262,6050 +79032,52,10,43850,1305093 +79033,387,10,47739,69104 +79034,317,10,48205,933415 +79035,287,3,149509,1444288 +79036,234,1,76864,76325 +79037,387,10,43319,998690 +79038,53,2,26636,37025 +79039,204,9,103432,1052763 +79040,317,10,125945,20024 +79041,387,10,284537,1461681 +79042,60,1,263472,1714331 +79043,273,7,36214,554535 +79044,207,3,1165,1416001 +79045,387,10,10727,66747 +79046,182,8,10665,1458067 +79047,181,7,76010,1193427 +79048,333,2,14430,1319417 +79049,204,9,20287,9990 +79050,75,5,522,1399467 +79051,232,10,58244,1618797 +79052,301,5,100669,1632797 +79053,413,11,260312,36145 +79054,204,9,210092,1193688 +79055,413,11,302699,1536976 +79056,333,2,9778,1415080 +79057,204,9,57680,1454535 +79058,203,1,11206,1077739 +79059,236,8,11024,1673556 +79060,3,5,264393,1175882 +79061,262,6,300669,1707689 +79062,273,7,78403,128763 +79063,53,2,30641,55180 +79064,234,1,174594,42060 +79065,317,10,294093,1420246 +79066,234,1,317168,1058994 +79067,234,1,331745,1448550 +79068,234,1,10604,65843 +79069,166,9,251,1453276 +79070,269,9,1922,19987 +79071,387,10,9716,1243 +79072,179,2,81182,1530234 +79073,53,2,97630,12040 +79074,387,10,64928,108794 +79075,273,7,296941,1457043 +79076,105,7,382155,1142410 +79077,317,10,36785,116196 +79078,67,10,284274,1450350 +79079,262,6,44943,1403400 +79080,188,8,3172,1553261 +79081,317,10,162435,20658 +79082,413,11,100110,58245 +79083,317,10,124680,129710 +79084,244,3,19101,1565150 +79085,317,10,101376,1027212 +79086,387,10,38732,30294 +79087,415,3,44398,108815 +79088,204,9,10488,1391711 +79089,74,5,188102,1845775 +79090,53,2,10671,4350 +79091,234,1,70587,61244 +79092,179,2,334074,1334812 +79093,234,1,1995,12786 +79094,203,1,19176,1467275 +79095,413,11,256962,1819158 +79096,317,10,14750,109876 +79097,273,7,1579,1729 +79098,413,11,315057,1528724 +79099,234,1,220674,1118959 +79100,317,10,411802,34920 +79101,303,3,1125,960696 +79102,387,10,47329,53810 +79103,64,6,127380,1715746 +79104,75,5,19754,157841 +79105,413,11,241258,67560 +79106,245,3,257831,1376404 +79107,226,2,4825,1369450 +79108,411,3,10590,19291 +79109,287,3,224944,1642143 +79110,143,7,383618,1581412 +79111,387,10,255948,20658 +79112,387,10,26689,96042 +79113,200,3,52520,1451676 +79114,160,3,64972,1030724 +79115,268,7,279690,1610191 +79116,239,5,336882,1409243 +79117,269,9,17796,19850 +79118,234,1,106136,1020083 +79119,106,3,325263,1432720 +79120,234,1,12561,50651 +79121,53,2,103433,30064 +79122,219,11,809,1552873 +79123,291,6,664,10631 +79124,317,10,94674,135335 +79125,75,5,257088,1189807 +79126,3,5,369820,75855 +79127,413,11,772,1215 +79128,317,10,23853,90168 +79129,234,1,171594,11431 +79130,182,8,15092,1191540 +79131,298,5,311324,91122 +79132,3,5,104193,1169966 +79133,387,10,8491,55273 +79134,204,9,25407,4349 +79135,3,5,11869,70797 +79136,396,3,19995,1447362 +79137,387,10,16638,85453 +79138,412,9,10590,1565941 +79139,203,1,157843,1337679 +79140,234,1,173465,1156209 +79141,387,10,52034,237165 +79142,3,5,52270,4101 +79143,232,10,33367,111689 +79144,360,9,379019,1530251 +79145,234,1,66628,1197950 +79146,234,1,40804,11558 +79147,288,3,325173,1380919 +79148,20,2,11045,22221 +79149,52,10,55934,802600 +79150,413,11,439998,1258076 +79151,226,2,1966,1428912 +79152,203,1,388243,1622333 +79153,105,7,266687,1085919 +79154,262,6,297762,1417979 +79155,387,10,43075,1092564 +79156,413,11,2990,1732 +79157,99,3,17831,10146 +79158,286,3,109614,1046435 +79159,234,1,320910,1118774 +79160,160,3,9568,180830 +79161,298,5,257088,1412919 +79162,3,5,174278,96252 +79163,3,5,3580,460 +79164,413,11,91076,7493 +79165,203,1,2001,1400835 +79166,273,7,6038,14712 +79167,234,1,405050,1414901 +79168,3,5,22140,3925 +79169,317,10,17745,56974 +79170,406,6,72710,1119658 +79171,53,2,10491,39815 +79172,203,1,10929,1441372 +79173,413,11,24403,2873 +79174,273,7,11450,4140 +79175,52,10,302699,1454295 +79176,3,5,27332,1728 +79177,305,9,11247,1776549 +79178,234,1,125490,1081445 +79179,105,7,415358,1677475 +79180,349,1,18937,1447467 +79181,175,5,105,1378173 +79182,234,1,356296,932533 +79183,234,1,126754,96042 +79184,164,3,8464,1530192 +79185,225,7,227975,1425855 +79186,286,3,403605,1323508 +79187,148,9,924,15223 +79188,269,9,43923,60106 +79189,317,10,281215,71346 +79190,198,6,49009,1539295 +79191,210,9,78691,1802999 +79192,333,2,62755,1708565 +79193,234,1,110540,1049883 +79194,234,1,11610,18378 +79195,53,2,159128,1015701 +79196,3,5,146216,17598 +79197,317,10,38916,83749 +79198,209,7,1624,1870784 +79199,75,5,80125,1441736 +79200,204,9,42703,12495 +79201,175,5,69668,1208908 +79202,333,2,375366,1740795 +79203,317,10,140509,1112602 +79204,413,11,10406,1442567 +79205,333,2,240832,1412908 +79206,373,7,390747,1662636 +79207,127,3,72105,196269 +79208,52,10,131194,1078797 +79209,77,10,13600,82151 +79210,291,6,118,1445972 +79211,333,2,38006,30703 +79212,127,3,356483,1589489 +79213,394,7,45132,1347997 +79214,333,2,379019,1780127 +79215,175,5,46738,1519906 +79216,269,9,1369,10187 +79217,97,7,10632,1360101 +79218,75,5,45273,1404816 +79219,273,7,48636,70606 +79220,179,2,14676,1807336 +79221,317,10,228558,1666900 +79222,317,10,59895,105735 +79223,226,2,190955,1405319 +79224,3,5,21605,45437 +79225,244,3,14430,1486183 +79226,166,9,351901,1441221 +79227,333,2,392271,1640325 +79228,317,10,157409,98251 +79229,269,9,118991,12131 +79230,273,7,47745,139338 +79231,269,9,256092,957786 +79232,387,10,25499,593019 +79233,234,1,37497,46354 +79234,3,5,33253,239812 +79235,234,1,4146,34999 +79236,273,7,43935,122 +79237,317,10,319396,1210790 +79238,39,3,9593,1503891 +79239,228,2,274857,1829874 +79240,148,9,29365,34362 +79241,169,3,116463,1414887 +79242,387,10,176627,29994 +79243,234,1,26030,3831 +79244,413,11,413547,1026842 +79245,314,2,74,1405373 +79246,87,7,260001,1202530 +79247,413,11,16447,1542408 +79248,234,1,8194,53935 +79249,53,2,91480,1176512 +79250,234,1,10610,64901 +79251,387,10,289159,1357684 +79252,304,10,358980,1347103 +79253,204,9,2760,27908 +79254,78,3,284052,1760488 +79255,387,10,65603,54350 +79256,413,11,11930,1851 +79257,387,10,319999,53617 +79258,77,10,7547,16484 +79259,175,5,109439,1324652 +79260,204,9,10204,23453 +79261,333,2,178809,1412577 +79262,226,2,54563,1433966 +79263,291,6,58244,4657 +79264,196,7,311324,1590402 +79265,3,5,12606,4614 +79266,204,9,31127,1372653 +79267,387,10,282069,1034274 +79268,40,1,413882,1735103 +79269,301,5,321303,1595278 +79270,262,6,353728,1699376 +79271,226,2,132328,1095233 +79272,5,10,13205,31017 +79273,3,5,9899,1527 +79274,53,2,43266,8509 +79275,187,11,289225,1576477 +79276,169,3,5516,9621 +79277,317,10,45522,133150 +79278,104,7,69,223239 +79279,387,10,3085,4358 +79280,234,1,171857,77076 +79281,317,10,35113,113756 +79282,234,1,54845,84023 +79283,413,11,84636,43813 +79284,387,10,13912,30010 +79285,3,5,43829,3356 +79286,3,5,11975,2483 +79287,387,10,16005,79028 +79288,333,2,296523,1433657 +79289,413,11,8064,53855 +79290,3,5,130593,968717 +79291,317,10,268099,73645 +79292,317,10,245268,155264 +79293,273,7,35263,7491 +79294,148,9,8988,11801 +79295,250,11,1251,1377137 +79296,179,2,9613,1404851 +79297,234,1,810,12098 +79298,413,11,11364,12015 +79299,273,7,31875,928097 +79300,289,6,1724,1642697 +79301,387,10,44470,1381783 +79302,289,6,9514,1642562 +79303,7,3,10204,1613272 +79304,87,7,9819,1879209 +79305,234,1,124202,134405 +79306,204,9,313646,1171679 +79307,3,5,9819,33238 +79308,52,10,83389,1062018 +79309,234,1,100085,1023400 +79310,234,1,57829,7483 +79311,75,5,332411,1579384 +79312,234,1,128767,233134 +79313,394,7,244786,1406825 +79314,5,10,4551,2235 +79315,148,9,10543,32201 +79316,387,10,101006,1022346 +79317,387,10,334651,1017274 +79318,413,11,6069,6581 +79319,249,7,9716,1434615 +79320,286,3,341007,1706353 +79321,204,9,279598,1336139 +79322,190,7,283995,1377221 +79323,53,2,362057,1567106 +79324,3,5,9034,8677 +79325,317,10,215579,18323 +79326,234,1,55396,114678 +79327,175,5,41963,1535320 +79328,317,10,80560,123012 +79329,234,1,36229,10231 +79330,317,10,143876,1290967 +79331,387,10,156,1012 +79332,234,1,87612,84641 +79333,305,9,354859,15435 +79334,234,1,114284,11614 +79335,148,9,31947,11791 +79336,234,1,107942,1132116 +79337,413,11,8247,15005 +79338,3,5,11185,14536 +79339,148,9,250066,23906 +79340,148,9,93863,1174725 +79341,317,10,267523,1315254 +79342,5,10,277968,1079955 +79343,289,6,214756,1453928 +79344,413,11,97630,15841 +79345,60,1,220,85426 +79346,13,9,21159,91813 +79347,317,10,45577,14876 +79348,234,1,126238,1012088 +79349,200,3,11618,1550729 +79350,286,3,437752,967129 +79351,198,6,18,1881573 +79352,226,2,40085,26176 +79353,273,7,55197,125001 +79354,373,7,744,1378171 +79355,413,11,52556,145352 +79356,234,1,30666,31621 +79357,413,11,2731,27721 +79358,3,5,83,640 +79359,3,5,119409,27043 +79360,273,7,4441,37278 +79361,3,5,139826,58192 +79362,196,7,154972,1755278 +79363,394,7,325263,1104702 +79364,105,7,108535,66675 +79365,301,5,11096,1418398 +79366,234,1,20342,17380 +79367,155,3,177572,1232621 +79368,130,6,328111,1479527 +79369,234,1,26261,12964 +79370,413,11,14,8219 +79371,18,2,74,1727295 +79372,373,7,41963,1378171 +79373,273,7,24448,223157 +79374,317,10,156356,957746 +79375,317,10,45273,132834 +79376,387,10,572,7736 +79377,273,7,72251,146180 +79378,186,6,227306,1453978 +79379,164,3,47112,1536113 +79380,160,3,259830,1340727 +79381,234,1,109261,1046026 +79382,413,11,116385,103085 +79383,373,7,41963,1378170 +79384,273,7,14411,5553 +79385,349,1,35,1453044 +79386,204,9,30924,933463 +79387,210,9,8467,1339819 +79388,113,9,4147,1319750 +79389,234,1,16464,569209 +79390,234,1,385372,97532 +79391,317,10,83802,59874 +79392,34,8,109424,1408398 +79393,269,9,1404,16626 +79394,269,9,15556,3429 +79395,148,9,10004,36623 +79396,3,5,383618,1202073 +79397,279,9,31773,10010 +79398,234,1,289159,1357685 +79399,52,10,41608,557151 +79400,196,7,14181,1373435 +79401,179,2,33314,1319850 +79402,3,5,9812,23464 +79403,196,7,5516,40141 +79404,234,1,11902,15254 +79405,413,11,131739,58673 +79406,172,3,1624,7069 +79407,273,7,51976,567736 +79408,169,3,10665,1407893 +79409,158,2,373546,1869442 +79410,53,2,5922,1457521 +79411,3,5,38732,103163 +79412,273,7,11859,9989 +79413,317,10,26841,235990 +79414,234,1,9563,1152 +79415,52,10,88288,65481 +79416,387,10,22020,30689 +79417,273,7,353728,1124949 +79418,166,9,169,1534846 +79419,204,9,8981,35011 +79420,234,1,18890,65855 +79421,203,1,17654,1424641 +79422,203,1,2666,1392737 +79423,317,10,29805,86372 +79424,262,6,19255,1002652 +79425,413,11,48805,1688194 +79426,108,10,18919,66798 +79427,269,9,9746,2366 +79428,66,11,25376,1396533 +79429,234,1,74192,108499 +79430,387,10,125666,101996 +79431,302,9,634,1575987 +79432,387,10,301272,120653 +79433,317,10,19548,19641 +79434,317,10,290365,1360367 +79435,169,3,8467,13030 +79436,387,10,421958,17361 +79437,234,1,97088,55761 +79438,273,7,2662,1472296 +79439,301,5,251,1397731 +79440,179,2,16342,1335166 +79441,394,7,55433,222362 +79442,273,7,90001,1480788 +79443,387,10,171213,77005 +79444,187,11,44754,5337 +79445,394,7,1991,1352969 +79446,317,10,264553,1332306 +79447,357,3,12,1711831 +79448,387,10,102362,49825 +79449,317,10,23378,52154 +79450,148,9,28774,1087523 +79451,317,10,42623,95605 +79452,413,11,222715,74091 +79453,234,1,309581,80215 +79454,234,1,253286,1060785 +79455,413,11,10710,60086 +79456,333,2,69668,1364792 +79457,289,6,12,8013 +79458,381,9,11377,94549 +79459,105,7,57419,1601700 +79460,317,10,35428,1269249 +79461,317,10,31913,47773 +79462,244,3,17209,1616177 +79463,269,9,16784,3286 +79464,387,10,379019,16227 +79465,273,7,21742,94239 +79466,143,7,225728,124697 +79467,198,6,181533,1869387 +79468,413,11,10154,27903 +79469,413,11,1903,10574 +79470,269,9,75532,29888 +79471,387,10,277967,56570 +79472,97,7,379019,1421272 +79473,273,7,84336,53712 +79474,3,5,11719,29895 +79475,234,1,8932,56376 +79476,234,1,67531,122969 +79477,413,11,31324,7510 +79478,60,1,15472,1455312 +79479,5,10,32595,68912 +79480,269,9,11645,33132 +79481,234,1,329550,589507 +79482,221,3,1966,1627985 +79483,387,10,9274,54747 +79484,286,3,33563,25601 +79485,234,1,54256,88809 +79486,53,2,19096,38229 +79487,333,2,1715,18785 +79488,403,10,101838,1029068 +79489,158,2,296524,1463796 +79490,387,10,317,4634 +79491,234,1,329135,78747 +79492,333,2,307081,1521493 +79493,273,7,11813,18837 +79494,317,10,296626,92591 +79495,394,7,11351,1370960 +79496,269,9,1662,6494 +79497,166,9,44115,1345583 +79498,234,1,64942,39104 +79499,53,2,10972,1318465 +79500,204,9,283995,1465618 +79501,200,3,59962,1463178 +79502,317,10,104744,46230 +79503,3,5,9776,6490 +79504,234,1,15907,68212 +79505,182,8,166221,1496660 +79506,234,1,157354,1056121 +79507,387,10,1721,18838 +79508,209,7,332567,1360111 +79509,102,3,2105,1552187 +79510,182,8,266856,1178898 +79511,277,3,20919,1423408 +79512,210,9,14430,1521667 +79513,198,6,395992,1715575 +79514,234,1,376934,1561592 +79515,273,7,621,1485824 +79516,148,9,337104,1446134 +79517,317,10,315872,73855 +79518,5,10,26516,7394 +79519,3,5,269,3540 +79520,387,10,11399,28281 +79521,373,7,286372,1378142 +79522,234,1,49273,11523 +79523,53,2,397837,1552399 +79524,234,1,12591,73023 +79525,52,10,43649,129741 +79526,234,1,44415,94787 +79527,317,10,19731,6159 +79528,273,7,134475,1089656 +79529,234,1,288424,1856697 +79530,3,5,8942,1075441 +79531,413,11,376394,1370721 +79532,160,3,23397,1338109 +79533,413,11,26656,1324814 +79534,387,10,42892,129106 +79535,234,1,126841,93386 +79536,52,10,12144,40346 +79537,234,1,85411,68457 +79538,398,9,42045,1397316 +79539,387,10,93935,33902 +79540,387,10,248543,932974 +79541,182,8,88273,1425503 +79542,234,1,10918,42274 +79543,273,7,21135,39161 +79544,328,6,274857,1829979 +79545,143,7,8204,8376 +79546,75,5,42502,956123 +79547,234,1,2786,3776 +79548,148,9,25520,66552 +79549,52,10,38964,1263262 +79550,273,7,71668,43609 +79551,269,9,9716,23966 +79552,234,1,92663,95066 +79553,317,10,28736,87154 +79554,411,9,70436,37301 +79555,234,1,73981,7324 +79556,234,1,58773,55916 +79557,234,1,16026,79063 +79558,234,1,287903,11012 +79559,333,2,13614,17084 +79560,317,10,21052,9612 +79561,3,5,168217,103020 +79562,387,10,214105,95550 +79563,317,10,55989,262023 +79564,234,1,201445,1143633 +79565,3,5,12716,73722 +79566,196,7,375366,19621 +79567,203,1,1058,1371069 +79568,234,1,128154,1086430 +79569,298,5,202337,1404920 +79570,234,1,144271,1120638 +79571,317,10,325302,1465613 +79572,317,10,30002,195816 +79573,355,11,110416,21201 +79574,317,10,245175,195781 +79575,204,9,402672,1674917 +79576,234,1,42989,201393 +79577,143,7,327,1456692 +79578,413,11,58076,38250 +79579,257,3,213681,1618901 +79580,179,2,99861,1510431 +79581,207,3,2046,122607 +79582,411,9,2503,11224 +79583,31,9,72545,1404834 +79584,213,10,170279,237280 +79585,135,3,2662,1603309 +79586,45,9,102629,1394327 +79587,387,10,352186,1491596 +79588,269,9,62211,7927 +79589,387,10,2397,24509 +79590,273,7,946,14356 +79591,273,7,50674,1024243 +79592,204,9,43499,2763 +79593,234,1,153165,33026 +79594,234,1,20120,51962 +79595,234,1,374614,1212587 +79596,349,1,10567,1447483 +79597,413,11,130717,31764 +79598,273,7,84823,1620086 +79599,105,7,20766,39516 +79600,204,9,109424,1408371 +79601,317,10,128270,99898 +79602,387,10,333884,1180568 +79603,204,9,238589,1318091 +79604,398,9,10796,92359 +79605,192,5,11607,1398972 +79606,169,3,10096,15528 +79607,60,1,32628,1375216 +79608,273,7,273868,1327516 +79609,204,9,16090,21456 +79610,413,11,8325,55118 +79611,77,10,44303,114352 +79612,387,10,35052,91759 +79613,336,2,163,1586881 +79614,333,2,140607,15017 +79615,387,10,81687,95637 +79616,413,11,46421,1063286 +79617,234,1,391618,1700106 +79618,234,1,8985,30309 +79619,262,6,315837,1797241 +79620,387,10,12902,88624 +79621,273,7,45335,19096 +79622,415,3,630,29984 +79623,317,10,21544,55299 +79624,22,9,379019,1780149 +79625,148,9,2169,5642 +79626,273,7,35404,26026 +79627,167,3,265208,1490952 +79628,234,1,216363,587603 +79629,413,11,42499,1089977 +79630,387,10,132939,562714 +79631,333,2,285848,1550280 +79632,262,6,59965,1395027 +79633,127,3,52661,16643 +79634,262,6,69668,1425994 +79635,234,1,70989,64210 +79636,317,10,359459,78437 +79637,203,1,243568,1468644 +79638,317,10,71140,2869 +79639,273,7,435,5430 +79640,333,2,10724,936194 +79641,137,3,27629,19019 +79642,234,1,438634,1748697 +79643,317,10,356482,87755 +79644,413,11,2132,21853 +79645,333,2,334,1415333 +79646,87,7,664,1554975 +79647,234,1,45665,2106 +79648,273,7,429174,41572 +79649,75,5,8619,40546 +79650,204,9,74395,1305614 +79651,148,9,29475,1087522 +79652,34,8,205584,1411238 +79653,317,10,28155,19266 +79654,317,10,133121,70215 +79655,387,10,18682,129308 +79656,398,9,137504,1530404 +79657,182,8,334074,1368880 +79658,269,9,210653,1095219 +79659,262,6,634,1335195 +79660,52,10,65904,55728 +79661,409,7,6947,1761921 +79662,208,2,392818,1754095 +79663,234,1,43790,95293 +79664,204,9,75761,576220 +79665,413,11,284293,71087 +79666,317,10,62143,84333 +79667,317,10,122709,94328 +79668,97,7,146243,1414548 +79669,234,1,211158,1224626 +79670,289,6,2300,1460439 +79671,317,10,433034,1027086 +79672,413,11,85494,99726 +79673,234,1,46972,97646 +79674,317,10,25006,93007 +79675,74,5,9902,1600613 +79676,273,7,29376,4100 +79677,187,11,14,1454536 +79678,169,3,68387,1377417 +79679,234,1,25241,57239 +79680,387,10,279332,36130 +79681,3,5,151431,21783 +79682,269,9,28730,10365 +79683,204,9,77859,240661 +79684,250,11,241239,1377117 +79685,234,1,51947,20412 +79686,53,2,30973,19955 +79687,53,2,18098,8756 +79688,413,11,41823,18747 +79689,301,5,329805,1621903 +79690,204,9,315664,1319623 +79691,179,2,293167,1759741 +79692,52,10,14695,145565 +79693,209,7,74,1406789 +79694,179,2,284564,1537853 +79695,317,10,85836,79941 +79696,234,1,37098,48507 +79697,148,9,121230,947446 +79698,204,9,383538,1585440 +79699,234,1,2143,15488 +79700,413,11,340103,1547771 +79701,387,10,319993,1315263 +79702,270,9,72545,1584964 +79703,3,5,15414,59982 +79704,105,7,6557,14712 +79705,234,1,348544,1486800 +79706,148,9,128412,1489481 +79707,234,1,328111,124748 +79708,203,1,9438,1392925 +79709,148,9,120,1320 +79710,373,7,434873,1399559 +79711,25,2,381518,1763545 +79712,413,11,270383,1495596 +79713,226,2,62046,1393580 +79714,226,2,9286,1401605 +79715,273,7,10500,708 +79716,3,5,352960,1499806 +79717,273,7,23599,65681 +79718,105,7,360249,1341115 +79719,317,10,362439,46915 +79720,317,10,23750,1320131 +79721,234,1,141419,1046110 +79722,148,9,10178,31067 +79723,346,3,9541,1447164 +79724,179,2,251,1453316 +79725,273,7,123109,92957 +79726,286,3,8414,54898 +79727,415,3,3309,89533 +79728,3,5,295273,28001 +79729,277,3,55433,222363 +79730,105,7,169758,73105 +79731,179,2,12450,1319834 +79732,317,10,48495,228825 +79733,394,7,333484,1412703 +79734,113,9,329682,1577904 +79735,287,3,13616,1418508 +79736,289,6,378236,1840333 +79737,387,10,152736,17051 +79738,234,1,56435,57641 +79739,273,7,75066,2704 +79740,403,10,55435,222334 +79741,3,5,45987,7461 +79742,373,7,177677,1424617 +79743,40,1,435,54267 +79744,204,9,264393,1462945 +79745,273,7,397365,1597134 +79746,161,6,329865,1646579 +79747,250,11,291413,1494213 +79748,317,10,45431,171042 +79749,413,11,49074,1341661 +79750,3,5,399612,1291116 +79751,234,1,36245,793 +79752,234,1,138730,41616 +79753,413,11,53865,14447 +79754,289,6,810,1460608 +79755,413,11,323674,1207801 +79756,387,10,11535,59328 +79757,147,1,8619,1643713 +79758,234,1,210126,1065698 +79759,208,2,84577,1327220 +79760,306,7,337339,548441 +79761,127,3,188102,166436 +79762,413,11,11601,17766 +79763,33,10,15472,997654 +79764,53,2,82631,52682 +79765,52,10,43157,119534 +79766,371,3,14430,1521660 +79767,317,10,24921,76730 +79768,187,11,277355,1369376 +79769,270,9,9286,1441351 +79770,269,9,3784,1222 +79771,387,10,2204,22607 +79772,387,10,8072,3776 +79773,289,6,311324,1194578 +79774,324,3,174188,18382 +79775,208,2,240913,1334773 +79776,53,2,457,6248 +79777,387,10,188927,65779 +79778,269,9,10727,27749 +79779,3,5,10740,10688 +79780,269,9,76010,1193426 +79781,413,11,42709,128593 +79782,196,7,9532,1423757 +79783,234,1,129533,176153 +79784,3,5,23452,109194 +79785,234,1,64414,28615 +79786,413,11,15170,15806 +79787,360,9,334074,1368862 +79788,317,10,53230,8630 +79789,234,1,17956,143888 +79790,387,10,337876,129161 +79791,269,9,370687,1397045 +79792,143,7,17111,1354354 +79793,289,6,345925,1631414 +79794,3,5,105584,37836 +79795,317,10,73835,21237 +79796,204,9,2047,1554802 +79797,398,9,193893,1442119 +79798,155,3,153,5655 +79799,143,7,392271,1084817 +79800,234,1,408616,6361 +79801,232,10,45213,11528 +79802,234,1,242090,82226 +79803,234,1,28730,8843 +79804,317,10,383535,1579741 +79805,57,2,41171,32884 +79806,3,5,8776,56290 +79807,40,1,50725,1643713 +79808,317,10,48156,58861 +79809,317,10,294819,137066 +79810,317,10,363841,1522377 +79811,234,1,37038,29504 +79812,3,5,293412,1838151 +79813,269,9,59296,1316191 +79814,127,3,101325,113724 +79815,3,5,10473,65292 +79816,317,10,39907,80733 +79817,148,9,145135,1417860 +79818,413,11,201429,22582 +79819,269,9,8899,45145 +79820,373,7,11202,1384149 +79821,317,10,49073,81012 +79822,234,1,345489,81717 +79823,387,10,215928,1200534 +79824,203,1,329440,1428551 +79825,203,1,346672,1773339 +79826,317,10,272878,16590 +79827,317,10,11230,65981 +79828,187,11,1381,1445370 +79829,317,10,257537,1297714 +79830,148,9,51426,1137341 +79831,413,11,130957,22782 +79832,234,1,195796,1366243 +79833,234,1,14,39 +79834,394,7,2898,1546458 +79835,387,10,14126,34672 +79836,234,1,75903,71097 +79837,53,2,37581,13811 +79838,317,10,142320,1271400 +79839,67,10,58159,67373 +79840,245,3,392271,1765177 +79841,234,1,47955,26959 +79842,413,11,108224,81285 +79843,166,9,244786,1451910 +79844,413,11,194509,3159 +79845,317,10,103590,1815397 +79846,53,2,103620,1189108 +79847,234,1,180879,260006 +79848,148,9,424488,62063 +79849,413,11,23169,5327 +79850,22,9,9472,1744410 +79851,148,9,28430,1475773 +79852,333,2,73348,1467281 +79853,108,10,104211,1546 +79854,60,1,77057,581141 +79855,204,9,177566,1160206 +79856,20,2,301875,1518579 +79857,413,11,10320,16651 +79858,398,9,70074,1333930 +79859,387,10,11248,66189 +79860,175,5,245168,1578867 +79861,301,5,100669,1632795 +79862,317,10,159128,87082 +79863,317,10,116019,1062702 +79864,296,3,10066,1864786 +79865,317,10,44960,15872 +79866,234,1,347807,1662295 +79867,143,7,273106,1519573 +79868,387,10,127257,86990 +79869,234,1,41035,5629 +79870,5,10,34092,127922 +79871,268,7,277355,1053847 +79872,202,7,46387,1608033 +79873,3,5,291270,1536583 +79874,187,11,2666,1392699 +79875,203,1,293167,1403421 +79876,148,9,16296,1706331 +79877,373,7,82,1338976 +79878,273,7,42871,16748 +79879,333,2,152532,1304298 +79880,175,5,9568,161159 +79881,277,3,11832,1014 +79882,317,10,300596,563824 +79883,287,3,9539,79185 +79884,3,5,428355,1155986 +79885,226,2,13549,1706098 +79886,360,3,47653,74965 +79887,175,5,18801,1425502 +79888,273,7,86608,4345 +79889,12,10,19766,111508 +79890,158,2,293660,1580832 +79891,3,5,31880,13931 +79892,234,1,200331,90522 +79893,64,6,181454,1735502 +79894,53,2,1420,43154 +79895,317,10,289207,1357800 +79896,317,10,374416,120127 +79897,413,11,70586,5583 +79898,413,11,10208,9646 +79899,3,5,64678,1031695 +79900,108,10,27777,94298 +79901,234,1,32099,108847 +79902,317,10,308529,1427887 +79903,317,10,105,24 +79904,234,1,18955,51100 +79905,53,2,117,7719 +79906,317,10,320453,1301836 +79907,104,7,312174,1400606 +79908,245,3,72984,1764702 +79909,234,1,39936,146433 +79910,317,10,16137,79549 +79911,413,11,199373,1035444 +79912,75,5,8870,24310 +79913,413,11,12650,24992 +79914,413,11,400174,1026866 +79915,373,7,26636,579210 +79916,394,7,339408,1418373 +79917,53,2,13849,1053074 +79918,234,1,335450,8820 +79919,286,3,94809,36114 +79920,187,11,167,1392127 +79921,413,11,28775,99726 +79922,387,10,43268,30285 +79923,317,10,134782,1100379 +79924,204,9,10165,1497451 +79925,325,5,283445,967417 +79926,289,6,53219,64864 +79927,388,9,7916,1438602 +79928,273,7,1673,18577 +79929,234,1,38931,131652 +79930,301,5,10999,1378174 +79931,234,1,19766,88077 +79932,317,10,68123,122913 +79933,53,2,7454,1204209 +79934,108,10,68191,1009003 +79935,317,10,246741,55934 +79936,413,11,344039,1475733 +79937,317,10,3063,12924 +79938,317,10,222715,74091 +79939,413,11,173499,1156239 +79940,269,9,426265,1728518 +79941,397,7,152042,24003 +79942,387,10,79995,24888 +79943,83,2,1073,1458066 +79944,83,2,376501,1792361 +79945,155,3,14430,1521711 +79946,234,1,26962,45989 +79947,269,9,2887,22008 +79948,413,11,62720,4309 +79949,66,11,379,1175021 +79950,333,2,14,1319166 +79951,234,1,6187,48583 +79952,77,10,30,185 +79953,234,1,193878,19093 +79954,333,2,2503,1321372 +79955,317,10,297265,1373406 +79956,3,5,798,11923 +79957,234,1,173153,1255 +79958,161,6,118,56645 +79959,387,10,54093,18910 +79960,333,2,407448,1789303 +79961,234,1,20968,76813 +79962,387,10,21966,143327 +79963,135,3,11547,1557597 +79964,158,2,11024,1404744 +79965,52,10,56151,39058 +79966,273,7,18575,6422 +79967,196,7,419430,1761877 +79968,53,2,2,54771 +79969,196,7,127380,1550780 +79970,203,1,285,1344278 +79971,394,7,32577,40810 +79972,234,1,28165,78021 +79973,148,9,28297,1567994 +79974,234,1,348537,27449 +79975,387,10,242332,88642 +79976,3,5,38765,40183 +79977,277,3,13336,1399916 +79978,234,1,205891,1188271 +79979,269,9,16428,10421 +79980,234,1,7210,17700 +79981,196,7,180299,1352425 +79982,234,1,407448,14392 +79983,413,11,22076,1269246 +79984,234,1,108,1126 +79985,3,5,43997,62956 +79986,148,9,354859,16995 +79987,234,1,201361,108929 +79988,262,6,76757,1376803 +79989,413,11,76059,1125624 +79990,413,11,64942,967217 +79991,317,10,364690,1524920 +79992,188,8,1902,1830645 +79993,166,9,37534,1410098 +79994,180,7,43231,1531334 +79995,234,1,69560,83467 +79996,220,7,43522,17915 +79997,333,2,50126,1460753 +79998,387,10,90590,101425 +79999,387,10,12135,73384 +80000,15,6,72431,1484191 +80001,373,7,60855,1120593 +80002,67,10,77459,1705477 +80003,317,10,121749,1492994 +80004,413,11,4459,103654 +80005,234,1,48949,3085 +80006,169,3,75174,1378699 +80007,234,1,295273,11401 +80008,204,9,1911,22061 +80009,5,10,118283,1218841 +80010,360,9,3597,91868 +80011,234,1,37586,130402 +80012,333,2,4134,34878 +80013,198,6,339994,1706514 +80014,269,9,254918,928498 +80015,5,10,326285,67481 +80016,273,7,12783,3562 +80017,175,5,339419,1391729 +80018,161,6,329865,1646546 +80019,413,11,99283,42065 +80020,387,10,159474,53657 +80021,273,7,29372,26026 +80022,234,1,84154,1827779 +80023,234,1,9778,36804 +80024,306,7,1058,1424536 +80025,234,1,314065,107395 +80026,5,10,237,3058 +80027,286,3,5759,45405 +80028,23,9,3172,1522736 +80029,75,5,47046,470995 +80030,175,5,383538,1783003 +80031,273,7,122662,1136050 +80032,333,2,11377,1453132 +80033,21,3,12684,980520 +80034,269,9,239566,60193 +80035,160,3,2604,136424 +80036,182,8,313922,1198921 +80037,317,10,146416,1128097 +80038,34,8,10145,1446689 +80039,148,9,34623,1137341 +80040,50,3,924,1415188 +80041,317,10,65131,1025135 +80042,333,2,288694,1356808 +80043,317,10,133523,17582 +80044,3,5,1926,6117 +80045,3,5,29959,34174 +80046,269,9,11975,9041 +80047,286,3,358924,1741054 +80048,413,11,29365,34327 +80049,158,2,375366,1740773 +80050,3,5,24739,10815 +80051,3,5,24442,103163 +80052,24,5,435,1399899 +80053,182,8,131737,1542370 +80054,75,5,44363,548671 +80055,387,10,16987,275825 +80056,314,2,397837,1695692 +80057,175,5,302036,1417181 +80058,140,9,263115,1394744 +80059,269,9,368006,1640321 +80060,169,3,329440,1335149 +80061,204,9,5924,10188 +80062,238,7,296523,1369376 +80063,387,10,156,1176 +80064,317,10,31945,11626 +80065,3,5,393732,4578 +80066,273,7,10011,9217 +80067,387,10,155011,236439 +80068,317,10,220820,1206151 +80069,323,10,371459,228762 +80070,269,9,8080,5167 +80071,52,10,37126,133865 +80072,234,1,58,1704 +80073,45,9,1271,1394740 +80074,234,1,323552,590960 +80075,234,1,81274,35325 +80076,53,2,195796,1132920 +80077,387,10,104485,88579 +80078,234,1,80374,32375 +80079,301,5,330459,1706703 +80080,317,10,105503,1075465 +80081,317,10,53648,34264 +80082,317,10,57438,226168 +80083,204,9,269149,1273227 +80084,187,11,82,1407016 +80085,413,11,9274,57106 +80086,234,1,11694,70262 +80087,179,2,103332,1532755 +80088,234,1,51212,11201 +80089,387,10,14869,84768 +80090,203,1,9286,1441372 +80091,234,1,54858,1136759 +80092,226,2,167810,1458577 +80093,234,1,71859,83287 +80094,203,1,14126,1399568 +80095,234,1,411741,970777 +80096,232,10,84905,143569 +80097,317,10,38437,120448 +80098,179,2,37710,1319134 +80099,154,3,10165,1497452 +80100,286,3,88176,38028 +80101,97,7,318922,40823 +80102,387,10,107973,1357980 +80103,413,11,110416,228867 +80104,234,1,129882,1038016 +80105,141,7,28571,52593 +80106,301,5,41283,1418398 +80107,234,1,97035,1090026 +80108,373,7,354979,1392232 +80109,3,5,142656,1185124 +80110,166,9,2115,1534507 +80111,333,2,2503,5333 +80112,127,3,85350,1401262 +80113,289,6,49009,1539304 +80114,387,10,13766,1382414 +80115,155,3,378441,1126877 +80116,234,1,86956,65852 +80117,269,9,10776,5022 +80118,3,5,12479,5506 +80119,317,10,255278,1244172 +80120,269,9,61950,2366 +80121,102,3,1586,1409717 +80122,39,3,10733,1571766 +80123,387,10,11017,56728 +80124,413,11,51581,132936 +80125,373,7,332411,928942 +80126,317,10,150208,148009 +80127,204,9,37686,1195362 +80128,61,7,19101,1565156 +80129,373,7,5551,1378828 +80130,204,9,2262,23338 +80131,280,2,5638,6851 +80132,317,10,108634,1176967 +80133,387,10,220488,1307112 +80134,204,9,3085,31969 +80135,182,8,11045,1435657 +80136,234,1,322460,107333 +80137,219,11,74,1429549 +80138,196,7,4806,1428595 +80139,155,3,5915,1658531 +80140,203,1,339419,1396984 +80141,387,10,337,5005 +80142,160,3,9532,1007395 +80143,413,11,428355,1099943 +80144,304,10,29259,103393 +80145,234,1,8342,20028 +80146,387,10,227973,1527482 +80147,234,1,46758,1121179 +80148,387,10,63449,86671 +80149,204,9,166621,32999 +80150,187,11,17771,1415144 +80151,234,1,332794,69987 +80152,234,1,92657,1769 +80153,317,10,45714,46443 +80154,175,5,10733,1378765 +80155,169,3,7220,1549428 +80156,317,10,35435,16137 +80157,273,7,277355,59811 +80158,79,7,9023,56683 +80159,360,3,195269,1377412 +80160,314,2,98066,1759314 +80161,273,7,266373,4345 +80162,373,7,274504,1609046 +80163,317,10,13173,77089 +80164,387,10,54093,38937 +80165,3,5,110540,144124 +80166,246,6,284052,1774216 +80167,52,10,32996,89045 +80168,413,11,19338,16207 +80169,160,3,345922,168480 +80170,167,3,9475,164419 +80171,105,7,124979,1531742 +80172,317,10,31542,27213 +80173,143,7,28032,1402250 +80174,413,11,85472,932221 +80175,204,9,405473,1338236 +80176,273,7,76012,31229 +80177,368,7,118,1413169 +80178,204,9,42619,369 +80179,176,3,10733,1571762 +80180,232,10,29116,103066 +80181,234,1,246917,104367 +80182,234,1,167956,1046587 +80183,317,10,56068,5812 +80184,234,1,61985,88648 +80185,317,10,228108,518972 +80186,387,10,52696,147709 +80187,196,7,10929,1511086 +80188,148,9,45273,1209400 +80189,269,9,29136,59588 +80190,176,3,190955,1372086 +80191,286,3,51284,1084378 +80192,413,11,11024,13584 +80193,413,11,102668,1031774 +80194,3,5,337107,66842 +80195,317,10,42139,103510 +80196,269,9,224251,194777 +80197,53,2,33729,4350 +80198,207,3,203833,40748 +80199,175,5,9914,1540888 +80200,317,10,65089,1118732 +80201,220,7,422603,1699013 +80202,317,10,137312,123515 +80203,3,5,14430,1521650 +80204,268,7,69668,1405232 +80205,204,9,59861,1316191 +80206,273,7,24918,719 +80207,60,1,105860,1688133 +80208,196,7,9563,1392081 +80209,387,10,12432,59913 +80210,419,10,69266,9182 +80211,394,7,20439,9555 +80212,327,7,265226,1310820 +80213,77,10,613,8809 +80214,387,10,241071,1054731 +80215,127,3,23397,1231235 +80216,34,8,332567,544372 +80217,317,10,214086,76010 +80218,208,2,8247,1319467 +80219,277,3,18,1404213 +80220,46,5,9593,1770873 +80221,75,5,76163,1412718 +80222,127,3,213443,34187 +80223,147,1,42418,1827959 +80224,301,5,13614,1610047 +80225,317,10,34729,1065429 +80226,234,1,348507,64815 +80227,303,3,30583,572058 +80228,232,10,42634,72583 +80229,270,9,755,1851731 +80230,158,2,18843,1404745 +80231,3,5,10193,7988 +80232,236,8,10204,40779 +80233,67,10,15213,1462622 +80234,104,7,8470,1550344 +80235,127,3,14811,1533743 +80236,5,10,29786,104871 +80237,234,1,8276,54273 +80238,5,10,17241,929256 +80239,360,3,50126,1377412 +80240,3,5,26889,15521 +80241,226,2,31127,1590968 +80242,3,5,8211,18541 +80243,234,1,378087,1200444 +80244,3,5,26656,1017789 +80245,387,10,481,6522 +80246,72,11,2323,68762 +80247,61,7,9928,1547520 +80248,234,1,94352,5524 +80249,413,11,242683,64114 +80250,317,10,56601,1291345 +80251,273,7,93891,1063401 +80252,3,5,47745,4308 +80253,317,10,70006,55077 +80254,234,1,32227,109044 +80255,3,5,65603,41151 +80256,357,3,198663,1425336 +80257,317,10,25520,93911 +80258,3,5,393134,1036389 +80259,37,3,1267,1455462 +80260,175,5,12220,1378173 +80261,413,11,125264,1039764 +80262,328,6,9286,1399633 +80263,327,7,9514,1381067 +80264,413,11,11415,16651 +80265,286,3,25855,592534 +80266,196,7,274479,1338482 +80267,273,7,52264,1063749 +80268,135,3,9472,1567961 +80269,411,9,354287,71577 +80270,198,6,11024,1673814 +80271,160,3,4806,999716 +80272,234,1,109861,125603 +80273,387,10,123961,1217744 +80274,317,10,208529,1191588 +80275,182,8,10204,40778 +80276,317,10,171594,25168 +80277,52,10,67342,565158 +80278,413,11,8080,17886 +80279,148,9,10760,66533 +80280,87,7,367412,1533518 +80281,317,10,128637,1087597 +80282,333,2,43880,1338756 +80283,258,9,14317,1447495 +80284,53,2,94811,4127 +80285,148,9,118536,4104 +80286,127,3,384737,1825883 +80287,175,5,17209,1616176 +80288,269,9,21135,29502 +80289,360,3,2009,1586624 +80290,317,10,27045,26959 +80291,317,10,279179,235883 +80292,413,11,19398,1469352 +80293,413,11,65488,10006 +80294,269,9,132122,98508 +80295,413,11,24757,1278332 +80296,413,11,2487,550544 +80297,289,6,3933,1448042 +80298,234,1,39943,5834 +80299,234,1,213110,78438 +80300,234,1,178569,30833 +80301,413,11,370234,1302899 +80302,52,10,49418,29533 +80303,234,1,10749,66639 +80304,413,11,4248,20297 +80305,314,2,222935,16682 +80306,198,6,163,1399313 +80307,387,10,88390,1676308 +80308,234,1,42476,29907 +80309,160,3,11547,1407881 +80310,413,11,35337,16335 +80311,53,2,196235,1176359 +80312,360,3,10727,1325187 +80313,204,9,11450,12257 +80314,127,3,186869,1862941 +80315,263,11,11024,1412460 +80316,387,10,56154,22596 +80317,148,9,1811,33673 +80318,387,10,809,12085 +80319,269,9,76543,1317464 +80320,160,3,15440,1412139 +80321,381,9,42418,1827960 +80322,273,7,38055,929145 +80323,269,9,26593,1110377 +80324,205,10,356752,960476 +80325,387,10,133255,998687 +80326,204,9,9457,6878 +80327,388,9,118,1398089 +80328,234,1,74154,89154 +80329,387,10,9846,47641 +80330,105,7,5638,81535 +80331,327,7,44363,1010751 +80332,53,2,344039,1725136 +80333,204,9,2565,7146 +80334,273,7,8588,11269 +80335,53,2,269173,1320625 +80336,302,9,374473,1650269 +80337,204,9,15916,90513 +80338,245,3,18093,1558019 +80339,327,7,197611,1634782 +80340,148,9,72574,566357 +80341,204,9,34977,14963 +80342,3,5,92285,1076530 +80343,34,8,257088,1420190 +80344,234,1,101342,257772 +80345,52,10,10948,57335 +80346,269,9,9532,957310 +80347,373,7,58060,1630072 +80348,198,6,302828,1573928 +80349,34,8,18,1440852 +80350,127,3,32195,538297 +80351,273,7,21193,41633 +80352,413,11,25037,543809 +80353,256,3,435,1574643 +80354,234,1,45875,29648 +80355,77,10,9551,57919 +80356,234,1,252773,1081846 +80357,148,9,40466,1760124 +80358,87,7,46286,1563901 +80359,273,7,64456,239247 +80360,239,5,359412,1584324 +80361,333,2,64807,1527918 +80362,317,10,127521,78219 +80363,234,1,844,12453 +80364,204,9,131932,1170455 +80365,317,10,65142,240594 +80366,209,7,9946,1404326 +80367,188,8,11547,1557606 +80368,269,9,10596,6045 +80369,394,7,7220,1412452 +80370,190,7,1690,1564777 +80371,327,7,285270,1367931 +80372,203,1,10491,1342606 +80373,413,11,42542,66204 +80374,394,7,122081,1546856 +80375,413,11,131343,1450084 +80376,105,7,47212,39107 +80377,77,10,273,3722 +80378,289,6,29233,1696504 +80379,273,7,92989,143035 +80380,234,1,27338,1223968 +80381,317,10,18282,87565 +80382,387,10,37929,76942 +80383,317,10,159770,1144092 +80384,360,3,1986,1377290 +80385,234,1,95627,44023 +80386,204,9,42664,12346 +80387,317,10,388862,113307 +80388,317,10,461955,1651530 +80389,234,1,51426,8823 +80390,123,3,17189,1665716 +80391,387,10,16366,12083 +80392,234,1,333360,928386 +80393,175,5,302828,1548109 +80394,286,3,92499,1294767 +80395,306,7,39907,1649577 +80396,3,5,23397,16331 +80397,204,9,290379,9062 +80398,155,3,25376,109001 +80399,234,1,287,4037 +80400,306,7,39415,3571 +80401,234,1,377151,224452 +80402,175,5,3172,1553245 +80403,317,10,255913,89631 +80404,387,10,183827,96253 +80405,273,7,8332,55169 +80406,160,3,44754,4438 +80407,277,7,28,3178 +80408,234,1,8985,144195 +80409,289,6,22752,577501 +80410,269,9,32338,937581 +80411,387,10,279096,133359 +80412,197,5,9819,18091 +80413,155,3,99,43337 +80414,3,5,29343,103568 +80415,234,1,14052,67897 +80416,234,1,113882,115732 +80417,317,10,16074,92015 +80418,333,2,62046,1393581 +80419,333,2,42512,1550860 +80420,413,11,64936,1150 +80421,387,10,119926,139317 +80422,387,10,28704,567571 +80423,204,9,329440,1046231 +80424,333,2,126127,4352 +80425,234,1,33788,111388 +80426,53,2,130739,55282 +80427,3,5,55343,2286 +80428,3,5,31067,1153 +80429,413,11,31875,47204 +80430,148,9,278316,1333664 +80431,53,2,10409,12205 +80432,357,3,19995,1483223 +80433,365,6,10865,1447573 +80434,3,5,16638,12720 +80435,387,10,242240,95040 +80436,301,5,14145,1416989 +80437,37,3,35253,114360 +80438,333,2,37103,14748 +80439,413,11,4191,18223 +80440,160,3,272693,15359 +80441,52,10,31713,86000 +80442,77,10,8915,115101 +80443,204,9,369885,1385883 +80444,387,10,31984,930341 +80445,269,9,4307,93 +80446,413,11,11704,70294 +80447,203,1,82990,1547206 +80448,413,11,327389,13672 +80449,204,9,194,16233 +80450,209,7,1966,1388879 +80451,269,9,392271,1640319 +80452,234,1,102841,14670 +80453,75,5,924,1408679 +80454,314,2,277713,1609176 +80455,226,2,170279,16682 +80456,273,7,337958,1583397 +80457,234,1,136762,936169 +80458,203,1,127585,1384397 +80459,181,7,14400,47818 +80460,204,9,102382,970199 +80461,97,7,10727,8761 +80462,234,1,72710,8685 +80463,273,7,10473,60450 +80464,3,5,2830,3049 +80465,333,2,436,1624061 +80466,373,7,24679,1550316 +80467,77,10,6552,50720 +80468,3,5,20421,14456 +80469,273,7,982,14725 +80470,148,9,11788,1430073 +80471,203,1,131343,1450096 +80472,196,7,239566,1400558 +80473,333,2,298,1415332 +80474,387,10,147618,1170905 +80475,5,10,25500,24534 +80476,5,10,68797,1329161 +80477,413,11,35543,44591 +80478,317,10,35735,114680 +80479,317,10,128917,1043813 +80480,289,6,251,1453288 +80481,387,10,62033,30040 +80482,234,1,55638,222831 +80483,317,10,21566,113671 +80484,387,10,12249,71930 +80485,269,9,339547,1579516 +80486,317,10,205891,1188271 +80487,317,10,245775,72327 +80488,333,2,30708,34500 +80489,317,10,233639,231811 +80490,373,7,9296,16177 +80491,3,5,356752,1501745 +80492,53,2,120657,9064 +80493,398,9,10590,17677 +80494,269,9,42739,16364 +80495,286,3,302699,54164 +80496,333,2,8292,1317044 +80497,273,7,6341,12845 +80498,60,1,72823,999948 +80499,397,7,56391,1725090 +80500,203,1,32657,1378728 +80501,387,10,378570,1381776 +80502,413,11,285270,1103638 +80503,286,3,24821,67001 +80504,53,2,215881,1200487 +80505,317,10,111605,93025 +80506,3,5,315872,67169 +80507,53,2,99283,9064 +80508,234,1,52440,84034 +80509,413,11,21570,569313 +80510,60,1,285946,120194 +80511,234,1,71329,1075658 +80512,387,10,120,126 +80513,289,6,3933,1448078 +80514,317,10,16083,79207 +80515,148,9,10274,64668 +80516,148,9,11202,957314 +80517,3,5,18133,56976 +80518,52,10,30054,164972 +80519,53,2,52437,4350 +80520,269,9,11011,10064 +80521,219,11,130925,1451703 +80522,394,7,37534,1392239 +80523,413,11,224,7096 +80524,395,3,10198,115755 +80525,411,9,6947,1324829 +80526,234,1,151870,1132126 +80527,198,6,354859,1580859 +80528,75,5,107250,1834279 +80529,413,11,12617,73261 +80530,53,2,338518,1281608 +80531,5,10,36634,49823 +80532,3,5,29286,7648 +80533,160,3,2662,84702 +80534,234,1,22551,26849 +80535,175,5,2107,1536247 +80536,234,1,11129,68281 +80537,234,1,391375,439915 +80538,317,10,294819,1074076 +80539,169,3,289712,1417875 +80540,155,3,8916,12087 +80541,317,10,46758,1605315 +80542,324,3,2731,1433946 +80543,182,8,443319,1411317 +80544,3,5,369033,1087212 +80545,143,7,7916,1438607 +80546,203,1,55846,1404875 +80547,52,10,19017,51730 +80548,317,10,377362,1362264 +80549,148,9,44414,957127 +80550,203,1,72431,1483854 +80551,187,7,10796,1597204 +80552,387,10,48412,103382 +80553,105,7,20986,90138 +80554,234,1,3989,34517 +80555,317,10,28366,63577 +80556,234,1,89247,938637 +80557,105,7,242683,2916 +80558,377,3,8467,1797217 +80559,317,10,43256,7336 +80560,413,11,197849,1004103 +80561,413,11,416569,1073818 +80562,77,10,2990,29378 +80563,64,6,1966,1733793 +80564,3,5,13920,36 +80565,234,1,36258,532757 +80566,262,6,70670,1448321 +80567,204,9,72204,1449422 +80568,387,10,2125,21820 +80569,269,9,8053,7857 +80570,305,9,83015,1606406 +80571,204,9,74629,35166 +80572,83,2,283995,1414541 +80573,234,1,60269,114629 +80574,226,2,29372,103675 +80575,226,2,19912,1427396 +80576,234,1,192675,99710 +80577,3,5,122677,1021403 +80578,273,7,239563,10572 +80579,269,9,300654,928074 +80580,286,3,59118,1018986 +80581,373,7,9426,24680 +80582,105,7,126841,61575 +80583,262,6,436,1624056 +80584,234,1,325712,1084537 +80585,234,1,11358,34453 +80586,3,5,253277,1293579 +80587,413,11,338063,1581561 +80588,273,7,28774,1195781 +80589,105,7,301228,1519837 +80590,3,5,30876,18835 +80591,5,10,8882,72766 +80592,413,11,80304,928345 +80593,234,1,104343,46230 +80594,169,3,28452,115418 +80595,333,2,16373,7689 +80596,3,5,30054,24793 +80597,413,11,9314,25633 +80598,105,7,31522,10934 +80599,3,5,121006,16750 +80600,190,7,8204,1725888 +80601,413,11,19765,1032823 +80602,269,9,362541,1103717 +80603,262,6,297762,1459913 +80604,105,7,13614,55975 +80605,208,2,218778,1666069 +80606,103,6,296524,1463450 +80607,234,1,14834,1103 +80608,3,5,348631,62922 +80609,413,11,17590,6852 +80610,244,3,4134,34880 +80611,209,7,7299,1433744 +80612,269,9,244268,1475287 +80613,5,10,75162,72064 +80614,234,1,51275,143663 +80615,269,9,312831,1327139 +80616,187,11,6972,1401691 +80617,291,6,11377,1280435 +80618,273,7,409,5488 +80619,273,7,146238,23486 +80620,148,9,50318,1541277 +80621,269,9,227262,48913 +80622,273,7,25694,4082 +80623,317,10,213914,177669 +80624,143,7,98557,1018712 +80625,387,10,2001,20561 +80626,286,3,148478,1120429 +80627,204,9,240913,1349965 +80628,413,11,40793,16593 +80629,373,7,340488,17811 +80630,234,1,357390,1503508 +80631,113,9,77338,1724198 +80632,234,1,23966,96323 +80633,411,9,96724,1027825 +80634,273,7,76207,19084 +80635,415,3,3716,1604711 +80636,273,7,5048,10759 +80637,269,9,284289,21420 +80638,234,1,94055,56131 +80639,204,9,9289,33261 +80640,189,3,238589,1345269 +80641,34,8,17771,1602294 +80642,67,10,9928,1217416 +80643,97,7,313922,1616468 +80644,387,10,241258,77163 +80645,204,9,65973,1403530 +80646,204,9,714,7204 +80647,287,3,186869,1835569 +80648,387,10,121052,26157 +80649,148,9,9541,224389 +80650,317,10,110073,1048343 +80651,373,7,5551,900 +80652,102,3,118,1426338 +80653,53,2,351065,1179442 +80654,317,10,25353,151175 +80655,413,11,13539,65849 +80656,317,10,337958,75542 +80657,387,10,11813,70562 +80658,158,2,16997,1583175 +80659,360,9,11618,1765794 +80660,234,1,336484,55516 +80661,413,11,10724,64024 +80662,317,10,155556,1136920 +80663,234,1,107781,108888 +80664,175,5,353462,132642 +80665,273,7,104556,1151862 +80666,113,9,11024,60596 +80667,234,1,33343,40440 +80668,317,10,24914,9340 +80669,234,1,323435,1106693 +80670,304,10,81463,1480652 +80671,234,1,197696,39104 +80672,268,7,39107,112362 +80673,234,1,61765,34613 +80674,413,11,10643,66159 +80675,83,2,98277,1017277 +80676,273,7,167707,1682248 +80677,317,10,26030,14228 +80678,317,10,295588,1368830 +80679,234,1,265226,931211 +80680,287,3,28739,1287869 +80681,234,1,121749,1074824 +80682,273,7,72847,3249 +80683,317,10,88036,183230 +80684,234,1,6978,11770 +80685,317,10,42460,12150 +80686,397,7,342588,1497015 +80687,3,5,389972,1831331 +80688,3,5,229594,51966 +80689,148,9,17057,34436 +80690,398,9,284053,1360093 +80691,289,6,102161,549357 +80692,413,11,11485,69573 +80693,387,10,47886,30652 +80694,395,3,10198,23684 +80695,127,3,308269,1447878 +80696,64,6,75564,113084 +80697,269,9,29151,1030591 +80698,333,2,43139,108811 +80699,273,7,121674,39023 +80700,387,10,38955,44916 +80701,148,9,283445,1341150 +80702,293,2,188927,1638558 +80703,53,2,49689,1330122 +80704,45,9,69668,1425973 +80705,92,7,14430,1521697 +80706,234,1,290656,94917 +80707,3,5,42569,1027513 +80708,387,10,106049,1005766 +80709,234,1,3059,100036 +80710,234,1,8916,52870 +80711,269,9,9987,61506 +80712,413,11,21191,276 +80713,373,7,250066,1403860 +80714,234,1,211166,132452 +80715,244,3,338189,1177048 +80716,234,1,66634,112674 +80717,387,10,25388,14941 +80718,289,6,334074,1522767 +80719,136,1,333484,1654416 +80720,273,7,10025,20822 +80721,52,10,192573,1172858 +80722,286,3,328631,1434782 +80723,387,10,169022,1057492 +80724,273,7,6877,24190 +80725,3,5,364324,92017 +80726,3,5,10708,1590 +80727,239,5,3597,1443963 +80728,158,2,9425,1389596 +80729,61,7,9946,1390353 +80730,53,2,2742,13551 +80731,127,3,28090,1648160 +80732,105,7,418437,1816407 +80733,3,5,1717,3561 +80734,66,11,194,63128 +80735,234,1,284288,930293 +80736,226,2,6972,1401641 +80737,234,1,85317,86688 +80738,273,7,50008,32347 +80739,143,7,19901,1391714 +80740,234,1,34506,106677 +80741,175,5,76203,1177850 +80742,413,11,26514,1445904 +80743,3,5,1659,35411 +80744,209,7,265208,1355970 +80745,203,1,42418,1445903 +80746,75,5,210910,1194699 +80747,317,10,59006,19656 +80748,202,7,341895,1399206 +80749,234,1,178809,229002 +80750,273,7,11943,44261 +80751,317,10,262357,133426 +80752,360,9,293167,1378687 +80753,203,1,84030,1579657 +80754,273,7,9366,9152 +80755,157,3,95756,220130 +80756,234,1,71133,49450 +80757,317,10,82080,67884 +80758,203,1,12536,1398189 +80759,234,1,309929,19377 +80760,196,7,294272,1550780 +80761,301,5,378441,1797424 +80762,269,9,158598,1008506 +80763,53,2,41505,52682 +80764,3,5,283686,1439846 +80765,413,11,157898,29997 +80766,66,11,243568,1564520 +80767,328,6,19255,132626 +80768,12,10,353595,1236448 +80769,182,8,153854,1293460 +80770,387,10,120303,1499935 +80771,209,7,857,66142 +80772,273,7,75233,1424588 +80773,317,10,68797,1329160 +80774,250,11,333371,1414558 +80775,3,5,11358,22818 +80776,387,10,244801,1057497 +80777,3,5,22007,60103 +80778,143,7,9902,1440299 +80779,387,10,10714,66905 +80780,317,10,67977,83224 +80781,413,11,315880,39615 +80782,234,1,6591,14268 +80783,234,1,199615,140027 +80784,5,10,76170,934847 +80785,196,7,24624,1540859 +80786,277,3,199575,1654520 +80787,333,2,266856,1429628 +80788,401,6,9928,1447407 +80789,413,11,27138,1020770 +80790,105,7,142946,132583 +80791,127,3,67822,1485474 +80792,155,3,153,2299 +80793,273,7,241574,1866816 +80794,306,7,84735,1562587 +80795,269,9,302026,174108 +80796,234,1,12787,9165 +80797,148,9,82990,21323 +80798,243,3,10865,1361021 +80799,234,1,975,240 +80800,317,10,38332,142497 +80801,52,10,29829,30128 +80802,3,5,29424,14999 +80803,317,10,149117,108107 +80804,3,5,147106,10005 +80805,182,8,394645,1864625 +80806,3,5,8852,24956 +80807,203,1,177677,1373729 +80808,234,1,39123,81355 +80809,387,10,172445,11436 +80810,333,2,511,1602833 +80811,327,7,180305,1453135 +80812,317,10,107287,37590 +80813,219,11,44943,1403423 +80814,262,6,76163,1437715 +80815,204,9,180929,13782 +80816,317,10,9457,7775 +80817,180,7,15199,1641979 +80818,387,10,70666,559190 +80819,234,1,56943,225245 +80820,143,7,403605,1185946 +80821,191,6,274857,1829976 +80822,3,5,705,10602 +80823,387,10,84772,587951 +80824,259,3,857,1586927 +80825,219,11,14,1552188 +80826,286,3,229702,1430905 +80827,332,8,9297,1455461 +80828,3,5,159138,937928 +80829,143,7,24348,1425978 +80830,269,9,24625,16466 +80831,387,10,10440,10439 +80832,75,5,184363,1601859 +80833,160,3,228970,1867530 +80834,234,1,30478,106381 +80835,317,10,35626,74671 +80836,204,9,201085,23546 +80837,333,2,13842,1452233 +80838,97,7,345922,20229 +80839,105,7,20301,18593 +80840,286,3,315882,1409565 +80841,269,9,9953,60870 +80842,3,5,64568,666 +80843,413,11,48609,8881 +80844,226,2,3682,29218 +80845,167,3,354859,1884741 +80846,203,1,71329,1605714 +80847,157,3,57412,8623 +80848,333,2,10484,1433965 +80849,387,10,286567,109542 +80850,273,7,26505,996 +80851,387,10,82622,121218 +80852,325,5,257088,1403479 +80853,273,7,207270,1416933 +80854,387,10,64807,59918 +80855,387,10,302802,126971 +80856,234,1,83562,1080036 +80857,262,6,9457,1421726 +80858,196,7,6163,1867722 +80859,317,10,274325,46086 +80860,3,5,298935,935271 +80861,289,6,98566,1459750 +80862,317,10,226792,118873 +80863,317,10,63838,1596107 +80864,148,9,56068,1130016 +80865,234,1,14019,76249 +80866,52,10,83079,975212 +80867,273,7,3055,491 +80868,203,1,15613,1442518 +80869,273,7,8072,24295 +80870,234,1,53172,103150 +80871,234,1,12499,8858 +80872,317,10,5,2294 +80873,175,5,125490,1177335 +80874,387,10,29577,122964 +80875,147,1,2662,1085738 +80876,273,7,4529,34263 +80877,344,9,41283,1440296 +80878,234,1,259830,124635 +80879,413,11,75761,58245 +80880,3,5,35008,17393 +80881,200,3,286567,1407019 +80882,53,2,120837,14650 +80883,234,1,31275,1031151 +80884,105,7,421741,1696090 +80885,269,9,398289,1012891 +80886,273,7,10265,63578 +80887,333,2,25941,1410125 +80888,327,7,13336,1335416 +80889,204,9,364111,1253000 +80890,273,7,481,6527 +80891,289,6,18937,1447566 +80892,413,11,121539,1074511 +80893,360,3,262522,1460859 +80894,3,5,99698,759 +80895,204,9,831,12347 +80896,208,2,211879,137556 +80897,317,10,66022,93323 +80898,413,11,84185,1074667 +80899,413,11,2731,27717 +80900,3,5,55823,15131 +80901,52,10,110887,11435 +80902,413,11,88271,1115038 +80903,180,7,10364,13867 +80904,35,10,284053,18866 +80905,317,10,85673,102441 +80906,234,1,27276,58608 +80907,234,1,340627,1070319 +80908,413,11,68721,35176 +80909,387,10,13436,81035 +80910,269,9,8282,7702 +80911,52,10,18569,567565 +80912,273,7,152861,1134158 +80913,262,6,17654,1424623 +80914,327,7,345775,1621093 +80915,105,7,80281,237681 +80916,269,9,274504,808746 +80917,262,6,269494,1452556 +80918,317,10,36751,64950 +80919,234,1,12479,72427 +80920,413,11,62755,1414602 +80921,234,1,29694,5834 +80922,415,3,12593,1458327 +80923,388,9,46261,1425373 +80924,234,1,37292,76981 +80925,148,9,220,1137341 +80926,317,10,105833,1830591 +80927,269,9,2454,5547 +80928,413,11,218425,1264975 +80929,291,6,128270,1393387 +80930,189,3,9532,1413602 +80931,317,10,320037,579821 +80932,394,7,41733,1424167 +80933,234,1,191476,17051 +80934,394,7,410118,1791602 +80935,263,11,194,1127891 +80936,234,1,112287,1054380 +80937,234,1,266102,1030160 +80938,108,10,44463,19019 +80939,413,11,79382,25645 +80940,87,7,3682,33662 +80941,387,10,10198,15811 +80942,53,2,43441,13574 +80943,234,1,47003,5629 +80944,327,7,9877,1562840 +80945,226,2,10774,957264 +80946,413,11,42542,1015793 +80947,53,2,34459,1569284 +80948,413,11,334527,20299 +80949,87,7,2924,1453229 +80950,289,6,98566,1459748 +80951,226,2,48116,1545742 +80952,53,2,228205,46589 +80953,413,11,16177,229796 +80954,273,7,42215,39968 +80955,381,9,10145,1411807 +80956,387,10,395767,1614357 +80957,53,2,82485,935301 +80958,234,1,169355,80727 +80959,387,10,5559,44115 +80960,234,1,2197,22812 +80961,79,7,334,4771 +80962,413,11,30934,10613 +80963,5,10,209271,19947 +80964,190,7,28176,1609385 +80965,269,9,694,5022 +80966,234,1,139998,90575 +80967,5,10,32088,20422 +80968,413,11,42252,6453 +80969,273,7,27346,73345 +80970,3,5,2262,3768 +80971,317,10,25674,56281 +80972,234,1,266687,1085919 +80973,234,1,250686,1426158 +80974,204,9,132328,14097 +80975,3,5,21142,1033804 +80976,387,10,11540,54222 +80977,53,2,33851,1671961 +80978,204,9,41073,1167476 +80979,234,1,246403,19303 +80980,3,5,144680,77994 +80981,234,1,62211,225976 +80982,234,1,43526,32427 +80983,165,9,74,1595473 +80984,399,9,137504,1530406 +80985,286,3,70057,109427 +80986,273,7,11719,71302 +80987,387,10,238925,1273676 +80988,234,1,151068,562326 +80989,25,2,333352,1609871 +80990,3,5,36915,10688 +80991,250,11,168259,1400354 +80992,234,1,360341,228643 +80993,234,1,43889,131405 +80994,333,2,5899,46449 +80995,75,5,256092,1427466 +80996,413,11,16800,6827 +80997,273,7,1773,134806 +80998,269,9,10096,112520 +80999,53,2,13965,76208 +81000,234,1,163870,76936 +81001,273,7,227262,48910 +81002,3,5,7234,52137 +81003,419,10,27138,2768 +81004,298,5,257088,91122 +81005,234,1,32855,13563 +81006,234,1,273084,585670 +81007,77,10,16135,51918 +81008,413,11,11104,64490 +81009,204,9,10632,1532253 +81010,387,10,148371,1812013 +81011,53,2,1396,8467 +81012,413,11,119409,46861 +81013,53,2,6933,27041 +81014,273,7,331962,1550525 +81015,413,11,246415,1439368 +81016,234,1,72465,71485 +81017,413,11,9042,3189 +81018,187,11,287903,1039264 +81019,387,10,10003,876 +81020,234,1,15850,146811 +81021,317,10,95134,130705 +81022,53,2,28176,5671 +81023,234,1,8669,10395 +81024,204,9,16083,79251 +81025,62,3,10796,1552541 +81026,398,9,181533,1391751 +81027,5,10,54524,506934 +81028,256,3,954,1886658 +81029,3,5,142216,68459 +81030,198,6,257088,1580854 +81031,108,10,51994,137992 +81032,10,3,83,19659 +81033,234,1,192573,1172858 +81034,234,1,14983,77662 +81035,387,10,50374,2637 +81036,215,8,109451,1456701 +81037,413,11,334557,1450645 +81038,234,1,227932,592438 +81039,394,7,347096,1574828 +81040,234,1,31442,8452 +81041,413,11,355890,1813304 +81042,234,1,32489,9577 +81043,346,3,46261,1425401 +81044,158,2,60599,1400505 +81045,183,5,364088,1748530 +81046,387,10,817,12073 +81047,413,11,31850,1654640 +81048,60,1,10948,1700852 +81049,387,10,39001,160077 +81050,277,3,2503,1406825 +81051,413,11,10275,64692 +81052,143,7,337339,1413453 +81053,317,10,114931,1059894 +81054,53,2,34106,958731 +81055,287,3,313922,1616472 +81056,419,10,132328,1095226 +81057,387,10,413547,95510 +81058,148,9,351065,1492089 +81059,196,7,153,1538425 +81060,97,7,8870,1478854 +81061,387,10,256347,62342 +81062,3,5,98025,21232 +81063,317,10,330011,1332382 +81064,232,10,21193,15191 +81065,105,7,98368,1580062 +81066,273,7,128215,1202914 +81067,317,10,25784,143430 +81068,413,11,60316,550575 +81069,317,10,58060,128043 +81070,234,1,43775,72646 +81071,262,6,225285,1431146 +81072,360,3,203819,75771 +81073,317,10,319396,1308906 +81074,3,5,22076,52380 +81075,387,10,379873,78675 +81076,204,9,13788,1094395 +81077,346,3,11618,1400539 +81078,317,10,282963,95894 +81079,234,1,87481,15156 +81080,72,11,10491,1433622 +81081,105,7,14983,1204862 +81082,234,1,183932,71786 +81083,234,1,12912,74062 +81084,167,3,62630,1423434 +81085,387,10,17692,8555 +81086,234,1,209266,4522 +81087,234,1,142012,16214 +81088,3,5,310126,20844 +81089,317,10,66109,500427 +81090,387,10,207699,37591 +81091,139,3,38027,5398 +81092,333,2,94468,120162 +81093,292,3,4248,1667249 +81094,234,1,9609,33 +81095,3,5,26811,8934 +81096,203,1,15794,1639186 +81097,387,10,18694,148596 +81098,413,11,29313,100686 +81099,413,11,42062,3099 +81100,388,9,2300,1870670 +81101,317,10,185564,147711 +81102,269,9,139455,1022293 +81103,190,7,315335,1573338 +81104,3,5,82520,808402 +81105,53,2,108224,1310229 +81106,269,9,333354,1613774 +81107,234,1,2080,13079 +81108,317,10,26963,96678 +81109,269,9,297762,1409305 +81110,413,11,181876,10219 +81111,204,9,274857,1326451 +81112,277,7,6163,1905076 +81113,317,10,35632,114456 +81114,203,1,26510,1555723 +81115,105,7,339312,1464982 +81116,387,10,37992,87394 +81117,413,11,384682,1056048 +81118,53,2,122,1323 +81119,175,5,34106,40600 +81120,413,11,12237,72176 +81121,234,1,169364,935843 +81122,52,10,393172,1633349 +81123,234,1,11003,57370 +81124,105,7,85651,1375268 +81125,81,3,10865,1552887 +81126,3,5,28384,15194 +81127,317,10,204965,1187345 +81128,317,10,47002,55785 +81129,273,7,39308,1276603 +81130,105,7,327383,45546 +81131,200,3,10590,1566279 +81132,187,11,1251,1377125 +81133,413,11,32684,12143 +81134,387,10,11313,348 +81135,75,5,325712,1084537 +81136,413,11,45692,18595 +81137,331,3,109439,1549015 +81138,412,9,10320,1534973 +81139,259,3,52454,1630311 +81140,22,9,755,1851733 +81141,105,7,17046,469 +81142,269,9,870,5000 +81143,273,7,76170,7229 +81144,387,10,463800,82194 +81145,273,7,12450,46353 +81146,387,10,3035,29808 +81147,20,2,293660,1580830 +81148,203,1,2309,1425515 +81149,143,7,742,11243 +81150,317,10,339944,1420669 +81151,3,5,20530,552001 +81152,5,10,73306,68113 +81153,46,5,379019,1780169 +81154,289,6,74961,155076 +81155,387,10,78362,143316 +81156,52,10,92349,44217 +81157,234,1,130507,67426 +81158,234,1,226001,1184519 +81159,349,1,132601,1396317 +81160,67,10,17445,105643 +81161,234,1,347979,1304659 +81162,413,11,9423,23926 +81163,234,1,191476,6111 +81164,3,5,91961,144124 +81165,53,2,174309,1192559 +81166,143,7,3172,1400906 +81167,3,5,85648,9103 +81168,75,5,257088,69286 +81169,226,2,121598,1880907 +81170,394,7,4248,1413095 +81171,148,9,635,19157 +81172,387,10,44890,120175 +81173,25,2,70670,1122835 +81174,373,7,243568,1685945 +81175,60,1,27443,1623581 +81176,204,9,436,5885 +81177,413,11,130272,1670533 +81178,317,10,84569,870728 +81179,232,10,33541,88642 +81180,204,9,125521,52215 +81181,105,7,81223,1487178 +81182,234,1,38285,67971 +81183,273,7,9690,22500 +81184,234,1,11537,18899 +81185,418,11,266856,1465950 +81186,269,9,403867,1723501 +81187,317,10,13390,239262 +81188,234,1,62896,116155 +81189,262,6,131739,132940 +81190,53,2,14869,7735 +81191,77,10,125521,126260 +81192,127,3,12594,1648160 +81193,317,10,81589,1037822 +81194,413,11,65002,5785 +81195,234,1,186971,1068048 +81196,277,3,27917,1581800 +81197,234,1,15006,389 +81198,5,10,258751,1643132 +81199,160,3,334527,1385641 +81200,234,1,267935,488 +81201,381,9,10204,1403355 +81202,403,10,181656,1165230 +81203,387,10,58,1705 +81204,234,1,208529,11694 +81205,317,10,334394,1265594 +81206,53,2,134475,1078874 +81207,187,11,9716,1531576 +81208,234,1,311093,252668 +81209,140,9,169934,1309258 +81210,204,9,13058,1834844 +81211,3,5,1790,19102 +81212,60,1,14,1530090 +81213,387,10,130593,1155147 +81214,52,10,66925,1084775 +81215,317,10,37570,238939 +81216,67,10,8869,1552607 +81217,5,10,148636,37127 +81218,234,1,9821,36804 +81219,175,5,10389,1437894 +81220,75,5,34723,18265 +81221,72,11,9286,1425328 +81222,413,11,312831,1155165 +81223,148,9,24973,9587 +81224,3,5,285935,1079392 +81225,286,3,33460,110706 +81226,105,7,82465,6357 +81227,301,5,98066,1427838 +81228,18,2,9882,1774551 +81229,234,1,55294,978850 +81230,333,2,10004,1402545 +81231,333,2,49009,1327184 +81232,413,11,355008,71087 +81233,269,9,744,8866 +81234,286,3,207402,1190278 +81235,302,9,263115,1821875 +81236,188,8,362541,1518582 +81237,387,10,87302,1185043 +81238,204,9,152736,1287352 +81239,234,1,217648,32375 +81240,20,2,315664,1608998 +81241,413,11,606,10640 +81242,234,1,194,2419 +81243,413,11,99329,1086217 +81244,180,7,43877,1334622 +81245,317,10,43026,1362048 +81246,387,10,10204,64157 +81247,3,5,18898,15493 +81248,234,1,139718,19101 +81249,328,6,146243,1544368 +81250,317,10,289960,1034587 +81251,387,10,296750,1551466 +81252,413,11,3549,1030 +81253,166,9,17654,1424601 +81254,249,7,11377,1412242 +81255,52,10,43809,132800 +81256,319,1,274857,1815730 +81257,234,1,13848,27991 +81258,286,3,180252,1293601 +81259,158,2,1991,1420162 +81260,234,1,298931,1017258 +81261,204,9,90001,1563384 +81262,97,7,10145,1116937 +81263,317,10,36236,45981 +81264,234,1,43938,12833 +81265,5,10,15081,6855 +81266,273,7,154442,1034270 +81267,413,11,37719,1098542 +81268,328,6,9664,1400078 +81269,226,2,11321,75627 +81270,317,10,24647,79056 +81271,273,7,493,6558 +81272,113,9,8619,6878 +81273,228,2,283995,1815814 +81274,413,11,11077,6189 +81275,317,10,284052,564940 +81276,148,9,69605,12348 +81277,3,5,155597,15131 +81278,289,6,291270,1584350 +81279,286,3,52034,58608 +81280,387,10,11511,69672 +81281,317,10,67102,237498 +81282,175,5,16176,1568524 +81283,373,7,117,14880 +81284,234,1,211387,57027 +81285,262,6,8870,1403537 +81286,127,3,18826,1813644 +81287,148,9,141733,1517637 +81288,234,1,117499,222316 +81289,328,6,297762,1903929 +81290,328,6,45019,1550225 +81291,234,1,35381,18254 +81292,234,1,38724,13980 +81293,373,7,22584,1533647 +81294,143,7,15092,1414549 +81295,3,5,3145,30761 +81296,317,10,73462,82347 +81297,333,2,75,406204 +81298,3,5,13196,73992 +81299,243,3,64784,1350077 +81300,3,5,6947,151 +81301,226,2,357706,1642553 +81302,413,11,9987,61494 +81303,269,9,896,12168 +81304,273,7,30054,7182 +81305,53,2,21786,1143763 +81306,234,1,376502,1399186 +81307,286,3,19621,84960 +81308,5,10,120259,125363 +81309,413,11,112991,39982 +81310,5,10,315010,32982 +81311,53,2,8247,907 +81312,413,11,30959,552638 +81313,234,1,38743,2055 +81314,148,9,329682,1554328 +81315,273,7,46572,18837 +81316,45,9,41171,1402021 +81317,234,1,266568,221508 +81318,413,11,69903,13941 +81319,234,1,31947,6778 +81320,413,11,11442,16650 +81321,60,1,11206,1232480 +81322,398,9,46567,1008506 +81323,317,10,347258,1525126 +81324,333,2,274857,1457306 +81325,387,10,135335,1102160 +81326,413,11,194817,1167497 +81327,387,10,43757,79113 +81328,160,3,10727,75507 +81329,387,10,57575,2666 +81330,203,1,8842,1345635 +81331,60,1,53230,88983 +81332,234,1,1375,16513 +81333,277,3,36635,1002528 +81334,79,7,378441,1797511 +81335,317,10,112722,219396 +81336,286,3,397520,31835 +81337,269,9,67328,996735 +81338,234,1,28533,37197 +81339,413,11,17971,69158 +81340,346,3,10394,1462453 +81341,3,5,97593,1435312 +81342,234,1,91961,14643 +81343,273,7,4644,41674 +81344,53,2,107073,1481509 +81345,204,9,25694,11489 +81346,317,10,168022,1272213 +81347,289,6,9514,1642172 +81348,209,7,227306,1394306 +81349,204,9,21619,84181 +81350,226,2,302699,1729079 +81351,234,1,13569,21415 +81352,204,9,26180,18885 +81353,234,1,88005,71551 +81354,234,1,34092,568662 +81355,413,11,375082,1918 +81356,304,10,130881,106632 +81357,387,10,332979,24294 +81358,317,10,46007,134431 +81359,317,10,14885,85914 +81360,226,2,340101,1763663 +81361,175,5,110972,1555631 +81362,413,11,29151,1399186 +81363,53,2,1995,10714 +81364,75,5,69668,1408679 +81365,398,9,69668,1404354 +81366,204,9,24625,16467 +81367,45,9,46261,1425367 +81368,398,9,2125,21823 +81369,3,5,2662,7034 +81370,105,7,31867,7229 +81371,344,9,10344,1059708 +81372,226,2,340275,1732089 +81373,204,9,10740,1416795 +81374,273,7,26761,3249 +81375,273,7,26889,20836 +81376,333,2,98557,74198 +81377,273,7,12221,1681647 +81378,226,2,172908,89538 +81379,160,3,146233,1333222 +81380,234,1,7096,18308 +81381,317,10,253277,1621066 +81382,317,10,80094,1483743 +81383,182,8,274857,1829835 +81384,399,9,10198,1447419 +81385,413,11,419459,1394653 +81386,268,7,72431,1389534 +81387,252,3,8870,1724249 +81388,3,5,336050,1073683 +81389,127,3,72105,173207 +81390,387,10,122698,228937 +81391,75,5,99261,1177305 +81392,234,1,161620,15657 +81393,269,9,3476,3586 +81394,289,6,98566,1459749 +81395,148,9,525,603 +81396,5,10,262447,1306059 +81397,234,1,26267,6592 +81398,269,9,270024,23583 +81399,204,9,75233,1424589 +81400,273,7,81616,28930 +81401,221,3,1624,1477799 +81402,234,1,5333,1495632 +81403,60,1,1480,67349 +81404,200,3,72545,1229789 +81405,3,5,352890,1203818 +81406,179,2,97630,23831 +81407,127,3,40807,1676151 +81408,204,9,19200,961164 +81409,317,10,257537,1086269 +81410,327,7,16131,1546833 +81411,387,10,25501,109752 +81412,277,3,333352,1609860 +81413,52,10,39056,84029 +81414,209,7,2300,16737 +81415,97,7,251,1170025 +81416,234,1,177155,1082084 +81417,324,3,1125,1428833 +81418,317,10,228676,1018948 +81419,3,5,194817,58660 +81420,127,3,14977,1552521 +81421,204,9,9519,37618 +81422,273,7,302528,5359 +81423,373,7,37936,1399140 +81424,317,10,72826,564950 +81425,234,1,359870,1522546 +81426,143,7,22140,1768399 +81427,148,9,111042,8508 +81428,234,1,142979,9740 +81429,210,9,2001,1123133 +81430,139,3,38034,1751754 +81431,133,3,3059,128327 +81432,208,2,11236,1462065 +81433,148,9,31995,37468 +81434,269,9,378018,1460600 +81435,3,5,185111,1126411 +81436,160,3,1647,8355 +81437,273,7,163376,238745 +81438,5,10,186227,223106 +81439,317,10,228331,182924 +81440,141,7,220,1531943 +81441,53,2,226188,1391648 +81442,269,9,301304,1383026 +81443,204,9,2309,23772 +81444,273,7,37686,15347 +81445,113,9,34127,1340098 +81446,387,10,168541,1009298 +81447,273,7,288710,1285606 +81448,387,10,3035,29809 +81449,234,1,10178,64114 +81450,75,5,127521,1542737 +81451,387,10,46931,235054 +81452,273,7,83119,12241 +81453,346,3,4413,1406906 +81454,413,11,86236,1129477 +81455,317,10,46421,136124 +81456,87,7,31146,1532396 +81457,286,3,21554,792 +81458,317,10,13889,5026 +81459,105,7,66984,64868 +81460,234,1,84720,89745 +81461,234,1,60623,11983 +81462,419,10,33201,92554 +81463,301,5,10008,1399565 +81464,166,9,10733,1397808 +81465,239,5,11618,118867 +81466,411,9,19995,957889 +81467,15,6,118,1453963 +81468,32,8,7326,1866806 +81469,239,5,2105,1552169 +81470,105,7,47386,117661 +81471,113,9,284288,1763423 +81472,234,1,175334,34741 +81473,5,10,44190,130419 +81474,234,1,98368,121798 +81475,269,9,9893,20825 +81476,53,2,100770,1545777 +81477,182,8,315837,1411137 +81478,187,11,245703,1415009 +81479,373,7,258251,1103622 +81480,182,8,11547,1407882 +81481,204,9,423377,1754604 +81482,413,11,779,11578 +81483,317,10,30126,105735 +81484,53,2,27034,4350 +81485,203,1,10744,1430521 +81486,127,3,59118,1563991 +81487,415,3,204994,1176364 +81488,403,10,42664,33841 +81489,234,1,87952,935669 +81490,317,10,75375,142618 +81491,262,6,44943,104044 +81492,148,9,46278,135663 +81493,234,1,270842,554289 +81494,289,6,109298,226599 +81495,53,2,47112,1536105 +81496,317,10,19757,119999 +81497,269,9,227156,4953 +81498,373,7,9820,1387572 +81499,413,11,72313,120032 +81500,3,5,53853,9057 +81501,234,1,260397,74971 +81502,409,7,442752,1761855 +81503,53,2,10740,52163 +81504,234,1,36737,77362 +81505,387,10,116236,31898 +81506,53,2,259645,1805158 +81507,234,1,267557,126624 +81508,175,5,11056,1385151 +81509,396,3,251,23782 +81510,60,1,80125,1441753 +81511,269,9,240832,35455 +81512,413,11,9951,60804 +81513,204,9,43089,957786 +81514,387,10,693,10385 +81515,105,7,343284,58263 +81516,262,6,9425,1566839 +81517,169,3,379,9621 +81518,160,3,2046,955406 +81519,387,10,8899,45138 +81520,273,7,43045,34016 +81521,5,10,9589,58109 +81522,5,10,133458,1097228 +81523,204,9,1984,20398 +81524,413,11,21132,52056 +81525,204,9,88922,1427703 +81526,75,5,38006,578077 +81527,204,9,28295,29279 +81528,232,10,241374,14859 +81529,413,11,24238,63962 +81530,188,8,2567,1574652 +81531,53,2,382589,1030406 +81532,204,9,31713,4349 +81533,413,11,13600,4671 +81534,105,7,18801,51064 +81535,357,3,297762,1459922 +81536,166,9,1647,1425975 +81537,387,10,63096,46610 +81538,204,9,16066,26144 +81539,204,9,395982,1340722 +81540,273,7,107052,1037970 +81541,328,6,109424,1408379 +81542,234,1,23805,7187 +81543,105,7,181656,1165232 +81544,269,9,29161,103055 +81545,196,7,9286,957495 +81546,289,6,80928,5692 +81547,3,5,106573,30258 +81548,387,10,31835,4341 +81549,234,1,13396,122965 +81550,387,10,132939,121034 +81551,187,11,205587,1399061 +81552,228,2,369885,1790929 +81553,333,2,49577,1687761 +81554,415,3,71503,1286354 +81555,148,9,27150,12131 +81556,204,9,13681,1500632 +81557,383,3,10198,953331 +81558,158,2,44363,1451415 +81559,370,3,378441,1359340 +81560,34,8,6973,1444923 +81561,232,10,241374,2489 +81562,45,9,7445,1407224 +81563,413,11,38761,21508 +81564,387,10,43811,103688 +81565,75,5,11502,1609506 +81566,317,10,242076,117230 +81567,270,9,163,1684305 +81568,387,10,339116,1672436 +81569,273,7,45215,17667 +81570,75,5,76341,1457359 +81571,328,6,72545,1859986 +81572,317,10,31442,1117967 +81573,15,6,70667,1448315 +81574,317,10,34588,8568 +81575,87,7,376501,1792347 +81576,234,1,12186,13 +81577,387,10,41996,127459 +81578,262,6,241239,1468575 +81579,333,2,132363,1407720 +81580,286,3,257534,1297706 +81581,52,10,34588,1710838 +81582,394,7,13225,112875 +81583,234,1,46806,15775 +81584,317,10,60106,1142227 +81585,314,2,10900,1538944 +81586,289,6,9514,1642575 +81587,204,9,59981,1438901 +81588,234,1,427095,111849 +81589,204,9,15762,1098702 +81590,268,7,6934,1374170 +81591,148,9,2924,11413 +81592,413,11,8355,56284 +81593,106,3,13056,1708223 +81594,147,1,3059,585135 +81595,13,11,17038,1302737 +81596,234,1,277688,1046489 +81597,373,7,13493,1404218 +81598,5,10,35921,115332 +81599,3,5,53230,127523 +81600,234,1,356156,1500346 +81601,413,11,3291,1891 +81602,226,2,284052,1550637 +81603,234,1,302026,12180 +81604,75,5,28,1298944 +81605,234,1,30709,18392 +81606,234,1,125249,34796 +81607,234,1,168295,587603 +81608,387,10,93562,192458 +81609,182,8,14145,563435 +81610,53,2,14457,1316856 +81611,317,10,401164,1161729 +81612,333,2,313922,30065 +81613,147,1,8470,1302621 +81614,3,5,30352,20004 +81615,234,1,184741,21305 +81616,5,10,153652,1295010 +81617,113,9,81232,1530219 +81618,317,10,86266,150975 +81619,317,10,353616,208664 +81620,234,1,311324,607 +81621,238,7,8470,1429531 +81622,333,2,28293,4352 +81623,148,9,121234,7687 +81624,387,10,344120,1497327 +81625,286,3,423078,1666636 +81626,5,10,11848,15870 +81627,5,10,36597,30224 +81628,67,10,13777,75300 +81629,250,11,41283,1412723 +81630,60,1,33336,32096 +81631,204,9,31417,10471 +81632,234,1,69019,555500 +81633,286,3,25132,2294 +81634,5,10,201724,959316 +81635,333,2,241855,75593 +81636,317,10,85715,141713 +81637,262,6,354287,1571982 +81638,395,3,12,231202 +81639,387,10,12450,68698 +81640,67,10,15213,1462612 +81641,273,7,7249,68126 +81642,175,5,394645,1864623 +81643,349,1,1267,1452489 +81644,175,5,7220,1399130 +81645,53,2,49940,74406 +81646,234,1,166262,1052203 +81647,269,9,32274,10365 +81648,3,5,44716,1175 +81649,397,7,179818,27969 +81650,317,10,203890,1186218 +81651,234,1,39305,1391445 +81652,204,9,77949,1402090 +81653,234,1,20213,2636 +81654,3,5,11777,27099 +81655,387,10,44308,52358 +81656,234,1,26866,34613 +81657,387,10,33774,225009 +81658,317,10,175334,34741 +81659,234,1,59722,1339313 +81660,3,5,66881,1016110 +81661,162,6,58903,1428667 +81662,234,1,6166,1494113 +81663,97,7,46857,1456097 +81664,204,9,450530,1486823 +81665,333,2,921,14919 +81666,234,1,88529,110519 +81667,105,7,74430,1821547 +81668,234,1,15239,78021 +81669,72,11,351211,1652053 +81670,3,5,1550,958706 +81671,273,7,1483,1448512 +81672,365,6,182131,1506173 +81673,45,9,313922,1433466 +81674,160,3,70981,40713 +81675,53,2,11247,21004 +81676,77,10,16154,79726 +81677,289,6,18937,1460480 +81678,397,7,99283,27969 +81679,286,3,358924,1741052 +81680,127,3,32872,999693 +81681,346,3,7445,1407239 +81682,268,7,55534,1540858 +81683,234,1,52943,1007551 +81684,148,9,351365,1600241 +81685,196,7,127521,1350237 +81686,3,5,9541,12235 +81687,398,9,338,40753 +81688,317,10,42512,157 +81689,204,9,61225,1094395 +81690,64,6,35002,1027806 +81691,53,2,162862,9064 +81692,143,7,987,14829 +81693,204,9,175334,29345 +81694,113,9,223551,1263795 +81695,203,1,23397,1427699 +81696,53,2,46931,1437043 +81697,250,11,85350,928336 +81698,317,10,227266,162392 +81699,317,10,17796,568711 +81700,317,10,9352,57407 +81701,413,11,64972,1338454 +81702,53,2,47342,138630 +81703,413,11,26486,17816 +81704,75,5,9028,1130052 +81705,234,1,126712,155268 +81706,148,9,42045,11413 +81707,204,9,86979,18986 +81708,415,3,43045,1592852 +81709,337,2,76341,35403 +81710,333,2,337339,1709794 +81711,105,7,26030,111301 +81712,387,10,38807,121281 +81713,60,1,43978,100015 +81714,160,3,356500,181272 +81715,387,10,37672,157395 +81716,413,11,214081,35394 +81717,269,9,1624,602 +81718,127,3,22606,1583003 +81719,234,1,13960,75687 +81720,234,1,253309,1288803 +81721,273,7,11472,947 +81722,96,2,283995,1815813 +81723,75,5,10004,1423017 +81724,387,10,37645,35896 +81725,187,11,283445,1545127 +81726,204,9,57103,9061 +81727,234,1,236053,121422 +81728,320,3,390747,1662644 +81729,190,7,17111,1629467 +81730,387,10,84104,99415 +81731,317,10,26826,96387 +81732,413,11,12707,10007 +81733,413,11,12289,1361 +81734,148,9,298,21707 +81735,105,7,39001,1468126 +81736,234,1,376391,107168 +81737,399,9,29233,1696505 +81738,413,11,10518,8970 +81739,269,9,4538,5670 +81740,209,7,315837,1027022 +81741,269,9,4520,29857 +81742,169,3,260030,1453117 +81743,234,1,13834,75868 +81744,317,10,323435,1106693 +81745,246,6,284052,1774218 +81746,415,3,13777,75302 +81747,262,6,72431,1399305 +81748,373,7,333371,1389133 +81749,20,2,167073,1578006 +81750,286,3,141489,1114891 +81751,97,7,258193,1367362 +81752,196,7,9982,1417516 +81753,234,1,134394,64754 +81754,234,1,17708,123694 +81755,3,5,43806,14569 +81756,204,9,868,13087 +81757,234,1,276550,108217 +81758,317,10,48778,121585 +81759,105,7,5638,44547 +81760,234,1,8842,17764 +81761,333,2,2734,23365 +81762,81,3,12,8155 +81763,234,1,28295,12011 +81764,287,3,20481,1373620 +81765,204,9,43114,2657 +81766,234,1,18899,25236 +81767,3,5,17820,9080 +81768,164,3,74,1546853 +81769,269,9,36797,11294 +81770,53,2,8329,54531 +81771,204,9,12311,9062 +81772,187,11,7220,1412704 +81773,413,11,438634,1756472 +81774,175,5,195269,1393417 +81775,317,10,282268,280 +81776,75,5,7340,1408662 +81777,387,10,17467,1116276 +81778,45,9,1381,1394740 +81779,323,10,121598,4760 +81780,39,3,22584,12354 +81781,52,10,15213,1457632 +81782,234,1,102461,229263 +81783,413,11,13986,69714 +81784,333,2,13336,1410590 +81785,176,3,26390,1407196 +81786,52,10,114719,97315 +81787,105,7,17170,142613 +81788,122,8,10727,1584251 +81789,234,1,410118,1099354 +81790,204,9,24559,1147355 +81791,413,11,10162,24257 +81792,234,1,10585,64796 +81793,234,1,73835,567755 +81794,234,1,39536,120870 +81795,234,1,15092,20193 +81796,105,7,105906,21540 +81797,387,10,172008,43130 +81798,105,7,24624,60405 +81799,234,1,14525,128476 +81800,317,10,397717,1480533 +81801,97,7,17771,20229 +81802,333,2,315664,32491 +81803,234,1,193610,11151 +81804,97,7,2666,1392698 +81805,387,10,225728,1273117 +81806,160,3,145135,92484 +81807,317,10,16090,12493 +81808,387,10,8071,53782 +81809,234,1,5753,45343 +81810,413,11,10025,14189 +81811,394,7,16342,73566 +81812,220,7,54959,37241 +81813,53,2,218784,41084 +81814,317,10,31022,66795 +81815,234,1,44896,1704 +81816,289,6,146730,112994 +81817,55,5,10590,1565943 +81818,234,1,78373,77919 +81819,196,7,9836,1391715 +81820,64,6,38579,1455463 +81821,234,1,16938,12698 +81822,203,1,44943,1403421 +81823,12,10,691,9856 +81824,287,3,359245,1638343 +81825,97,7,77949,1380898 +81826,250,11,246655,1406253 +81827,3,5,9071,56906 +81828,5,10,77922,1538772 +81829,269,9,10909,896 +81830,3,5,2291,904 +81831,127,3,11888,150194 +81832,413,11,15414,1410419 +81833,52,10,24397,1385921 +81834,328,6,188927,1386918 +81835,20,2,273481,1494533 +81836,319,1,8669,1734787 +81837,291,6,36094,1535322 +81838,234,1,67328,548599 +81839,413,11,55156,213442 +81840,234,1,20186,239263 +81841,262,6,84226,1418439 +81842,208,2,13056,1525208 +81843,5,10,3780,70329 +81844,234,1,406431,131791 +81845,333,2,10740,1470183 +81846,179,2,11370,1018988 +81847,13,1,169934,1509979 +81848,273,7,65545,1687734 +81849,273,7,30363,2308 +81850,333,2,263115,1425900 +81851,62,3,8869,1552541 +81852,3,5,11897,4101 +81853,234,1,291865,78545 +81854,234,1,86023,1079954 +81855,53,2,80125,40561 +81856,5,10,45184,25852 +81857,262,6,102382,1360110 +81858,203,1,98277,1017273 +81859,234,1,12230,11429 +81860,333,2,80125,1441751 +81861,388,9,2503,1406815 +81862,234,1,33135,130424 +81863,203,1,251227,1286589 +81864,3,5,70368,558286 +81865,317,10,53417,13848 +81866,234,1,43778,72646 +81867,143,7,256092,1427461 +81868,196,7,130948,1298937 +81869,373,7,293982,1400495 +81870,317,10,27561,60966 +81871,148,9,215373,1203316 +81872,53,2,43849,9064 +81873,123,3,120854,1072791 +81874,209,7,10395,142165 +81875,75,5,205584,1402914 +81876,234,1,10364,5342 +81877,398,9,10733,1368863 +81878,162,6,9946,60261 +81879,127,3,23397,1511696 +81880,387,10,31773,70981 +81881,269,9,320453,552536 +81882,166,9,9504,1535413 +81883,413,11,1418,16981 +81884,3,5,26533,10150 +81885,204,9,341886,1573324 +81886,20,2,310888,1604264 +81887,3,5,44657,3239 +81888,413,11,167073,1353255 +81889,226,2,106747,217470 +81890,53,2,15036,1601352 +81891,234,1,29204,16384 +81892,127,3,122857,1332245 +81893,413,11,178809,995558 +81894,234,1,40879,82286 +81895,53,2,86297,1352668 +81896,3,5,71503,7413 +81897,234,1,199647,1179828 +81898,5,10,94009,124549 +81899,3,5,421741,1433845 +81900,273,7,51209,227226 +81901,317,10,414610,92227 +81902,204,9,345915,1813742 +81903,262,6,6972,1401720 +81904,234,1,43680,82516 +81905,3,5,231616,967020 +81906,306,7,39284,1605942 +81907,207,3,76163,1210734 +81908,234,1,109379,1043435 +81909,187,7,181533,1384367 +81910,239,5,23823,1539302 +81911,387,10,9803,46029 +81912,387,10,70090,48995 +81913,387,10,9945,51346 +81914,66,11,9475,39983 +81915,53,2,34082,4350 +81916,105,7,9771,43393 +81917,203,1,41714,1351732 +81918,182,8,100669,115828 +81919,293,2,544,1780215 +81920,413,11,106635,2761 +81921,3,5,4887,40029 +81922,53,2,329289,1314152 +81923,234,1,46875,26959 +81924,148,9,28425,30414 +81925,234,1,4988,12964 +81926,387,10,2021,20773 +81927,196,7,107250,1417918 +81928,301,5,2924,1412990 +81929,199,3,209112,2293 +81930,234,1,36943,42113 +81931,317,10,30366,69552 +81932,45,9,284289,1523024 +81933,204,9,2978,7146 +81934,273,7,4964,84848 +81935,317,10,28484,100914 +81936,234,1,70667,20308 +81937,317,10,133704,58868 +81938,234,1,198890,1121068 +81939,234,1,244539,67360 +81940,158,2,522,1298017 +81941,317,10,52705,18213 +81942,289,6,11886,69003 +81943,317,10,211387,579281 +81944,273,7,177572,227440 +81945,413,11,3941,30154 +81946,204,9,62761,29769 +81947,179,2,755,1547239 +81948,234,1,5917,46603 +81949,52,10,37238,165767 +81950,164,3,74,1536965 +81951,413,11,28774,3904 +81952,166,9,369885,1335545 +81953,3,5,150117,22161 +81954,387,10,327225,114866 +81955,399,9,15653,1767049 +81956,269,9,9013,794 +81957,105,7,17175,41674 +81958,66,11,38027,1762447 +81959,53,2,9945,62029 +81960,333,2,1896,19835 +81961,53,2,18820,16340 +81962,387,10,118397,1071531 +81963,286,3,19719,85094 +81964,268,7,93856,1408316 +81965,45,9,280092,1548075 +81966,273,7,211,10232 +81967,234,1,55761,116155 +81968,317,10,25468,12900 +81969,234,1,64468,239256 +81970,148,9,31682,12292 +81971,413,11,15749,2705 +81972,234,1,397717,1018992 +81973,5,10,133788,1098026 +81974,234,1,324930,1500692 +81975,327,7,2009,39966 +81976,203,1,38404,120334 +81977,60,1,53714,950393 +81978,317,10,34729,99362 +81979,204,9,110525,120467 +81980,234,1,244403,3905 +81981,122,8,329865,1706692 +81982,269,9,24810,138634 +81983,269,9,10865,132566 +81984,189,3,354859,1459938 +81985,225,7,405473,1721028 +81986,127,3,30361,143903 +81987,269,9,38282,24823 +81988,203,1,44129,1367679 +81989,196,7,169881,19621 +81990,286,3,49853,48745 +81991,204,9,20648,1537103 +81992,3,5,239563,23969 +81993,286,3,264525,403 +81994,196,7,294272,1658887 +81995,180,7,8916,1531504 +81996,175,5,13849,1393341 +81997,387,10,329712,427242 +81998,203,1,257302,1714064 +81999,127,3,186869,1853924 +82000,204,9,347031,1645423 +82001,3,5,5319,35738 +82002,317,10,148347,143732 +82003,286,3,189556,998555 +82004,53,2,216363,1547481 +82005,234,1,163376,33513 +82006,387,10,246320,59031 +82007,148,9,425774,1708008 +82008,387,10,6877,51327 +82009,234,1,318973,1161657 +82010,387,10,14873,77544 +82011,203,1,50725,1400738 +82012,365,6,414977,1676799 +82013,387,10,10674,66195 +82014,105,7,3085,30232 +82015,286,3,52999,19378 +82016,52,10,10999,1726 +82017,53,2,59678,1300066 +82018,333,2,13616,1571121 +82019,234,1,59156,132257 +82020,317,10,22259,1214713 +82021,273,7,2742,117 +82022,387,10,37451,135844 +82023,387,10,103689,20660 +82024,387,10,115427,85637 +82025,105,7,15584,80207 +82026,333,2,41073,1207586 +82027,387,10,10774,31498 +82028,204,9,44303,1195235 +82029,92,7,4147,1558705 +82030,203,1,139519,1533600 +82031,203,1,16342,1410142 +82032,286,3,52150,456963 +82033,287,3,15092,403314 +82034,413,11,159474,4670 +82035,127,3,88794,1552521 +82036,204,9,791,11818 +82037,179,2,222935,1317617 +82038,234,1,105965,107658 +82039,234,1,366045,1224778 +82040,234,1,8888,4522 +82041,148,9,122081,984533 +82042,234,1,99767,1021685 +82043,234,1,24420,57270 +82044,40,1,7326,1345718 +82045,167,3,8869,1552543 +82046,387,10,198663,1257144 +82047,187,11,22881,1360097 +82048,262,6,168027,1358021 +82049,52,10,64304,83601 +82050,387,10,135718,1116114 +82051,3,5,151911,11593 +82052,234,1,9951,60804 +82053,413,11,39781,141303 +82054,269,9,360784,9967 +82055,394,7,19142,1338371 +82056,317,10,21554,5572 +82057,328,6,9835,1398963 +82058,325,5,263115,1821939 +82059,3,5,84636,38168 +82060,387,10,418437,142686 +82061,286,3,127913,79815 +82062,5,10,43849,1466762 +82063,234,1,63538,86895 +82064,413,11,86520,1175869 +82065,60,1,12102,1218284 +82066,196,7,9102,1380386 +82067,182,8,93856,1409874 +82068,234,1,172548,1155145 +82069,289,6,214756,1453932 +82070,234,1,15674,42309 +82071,204,9,1966,29858 +82072,220,7,126889,549315 +82073,3,5,256930,1497167 +82074,226,2,197082,1824205 +82075,234,1,51036,19305 +82076,204,9,13493,968175 +82077,419,10,93511,117808 +82078,387,10,240745,54469 +82079,105,7,35284,33804 +82080,127,3,22606,34103 +82081,413,11,985,5602 +82082,179,2,37686,1321000 +82083,175,5,3037,1017020 +82084,204,9,16876,1339976 +82085,104,7,4547,1546115 +82086,317,10,33557,879 +82087,62,3,246655,1609856 +82088,289,6,65055,1140576 +82089,327,7,20242,1833854 +82090,234,1,182499,56983 +82091,204,9,370234,1621860 +82092,234,1,146216,15002 +82093,234,1,55283,215917 +82094,387,10,128081,1086386 +82095,317,10,21786,107744 +82096,234,1,293863,109745 +82097,234,1,83361,72543 +82098,413,11,9902,59326 +82099,187,11,25941,1406189 +82100,234,1,174594,940663 +82101,413,11,45726,129666 +82102,273,7,403605,1185945 +82103,273,7,25241,1148735 +82104,203,1,634,1429643 +82105,75,5,26983,30994 +82106,53,2,10075,36624 +82107,387,10,211139,1396758 +82108,148,9,76203,1040861 +82109,387,10,59838,30508 +82110,394,7,3682,1399116 +82111,203,1,292625,1180432 +82112,3,5,131861,870 +82113,401,6,82703,928660 +82114,286,3,29043,50455 +82115,3,5,2998,29895 +82116,234,1,246741,55934 +82117,273,7,8494,56006 +82118,105,7,41522,32875 +82119,273,7,63401,1606876 +82120,188,8,270851,1269197 +82121,53,2,7445,958835 +82122,273,7,73690,137562 +82123,413,11,22023,17886 +82124,234,1,3063,30008 +82125,273,7,62132,1030544 +82126,269,9,9664,32349 +82127,317,10,43209,57274 +82128,234,1,314011,1134531 +82129,169,3,19142,74783 +82130,34,8,76757,1424707 +82131,286,3,96888,42413 +82132,204,9,9905,1312284 +82133,413,11,3050,11372 +82134,239,5,58244,1618808 +82135,413,11,23964,64060 +82136,289,6,14126,1334506 +82137,387,10,39833,20371 +82138,387,10,24452,52140 +82139,286,3,346473,1155986 +82140,317,10,31380,77869 +82141,419,10,148636,65237 +82142,108,10,81120,591015 +82143,288,3,2898,1378202 +82144,97,7,7326,1550234 +82145,413,11,15356,1128102 +82146,317,10,72822,81143 +82147,3,5,82624,1162217 +82148,87,7,4248,1537500 +82149,204,9,118497,1136825 +82150,105,7,27777,11524 +82151,234,1,126315,1082434 +82152,398,9,435,1198658 +82153,324,3,39102,39543 +82154,234,1,93856,999812 +82155,175,5,26656,1454515 +82156,292,3,8467,1893230 +82157,12,10,177572,1237903 +82158,104,7,6947,1411413 +82159,234,1,191476,39104 +82160,244,3,76341,1438652 +82161,277,3,130881,1158616 +82162,303,3,11024,15024 +82163,75,5,334074,1833106 +82164,181,7,258251,1053847 +82165,187,11,87826,13168 +82166,387,10,107052,2378 +82167,273,7,244316,56535 +82168,349,1,9023,1447593 +82169,52,10,41591,122906 +82170,105,7,64928,29276 +82171,317,10,38021,96627 +82172,3,5,2675,16300 +82173,305,9,10590,1604352 +82174,207,3,263115,1401600 +82175,394,7,435,1392084 +82176,34,8,297762,1738644 +82177,234,1,43646,106345 +82178,3,5,257088,21673 +82179,394,7,110972,9349 +82180,53,2,425774,75996 +82181,333,2,18801,1470159 +82182,105,7,16083,8377 +82183,333,2,151431,14748 +82184,317,10,37702,1298436 +82185,239,5,12311,1607694 +82186,180,7,133521,1612140 +82187,234,1,269795,1319499 +82188,141,7,11351,1535098 +82189,313,6,40466,1350243 +82190,413,11,4986,41143 +82191,317,10,45219,11528 +82192,234,1,14489,141645 +82193,203,1,38027,1193327 +82194,234,1,28465,92436 +82195,209,7,7299,1433743 +82196,175,5,49689,1594804 +82197,273,7,49508,3249 +82198,277,7,10066,1412233 +82199,415,3,186869,1862938 +82200,192,5,336882,1635801 +82201,317,10,342163,1549743 +82202,226,2,364088,1523173 +82203,132,2,58244,1419718 +82204,317,10,80281,1168111 +82205,387,10,269149,1318201 +82206,273,7,53853,8619 +82207,234,1,38000,87086 +82208,249,7,55420,1400100 +82209,413,11,307931,1489784 +82210,289,6,149870,1456623 +82211,413,11,22899,554322 +82212,204,9,27150,1143710 +82213,291,6,44115,1444917 +82214,234,1,27114,96255 +82215,175,5,22477,1194262 +82216,317,10,42288,1227141 +82217,196,7,14916,1430516 +82218,314,2,194,1468621 +82219,155,3,8619,1377242 +82220,413,11,26656,61583 +82221,234,1,76642,33781 +82222,289,6,18890,1205985 +82223,239,5,384737,1825663 +82224,413,11,28,852 +82225,3,5,104427,13809 +82226,52,10,116733,1067820 +82227,234,1,63989,238400 +82228,413,11,10275,64693 +82229,209,7,10344,1341141 +82230,387,10,52034,58608 +82231,182,8,46931,1595282 +82232,3,5,10710,966 +82233,3,5,15592,11099 +82234,3,5,39053,61550 +82235,3,5,7972,7492 +82236,234,1,91333,939452 +82237,269,9,125521,126274 +82238,413,11,41611,119080 +82239,53,2,634,9006 +82240,413,11,68629,47776 +82241,108,10,3085,14824 +82242,234,1,167583,39474 +82243,65,3,954,1645448 +82244,46,5,638,9381 +82245,273,7,5955,122 +82246,155,3,130925,15895 +82247,108,10,108869,85692 +82248,333,2,11975,1249773 +82249,105,7,387886,1293604 +82250,25,2,1165,75083 +82251,234,1,15213,15780 +82252,188,8,10590,1566286 +82253,200,3,32657,1451676 +82254,413,11,54102,29057 +82255,387,10,364410,1524269 +82256,3,5,40028,101869 +82257,357,3,19995,1483228 +82258,3,5,43875,106106 +82259,182,8,44115,1106181 +82260,269,9,284296,10365 +82261,234,1,37305,2000 +82262,53,2,703,1051 +82263,387,10,120109,16042 +82264,3,5,17295,25822 +82265,234,1,166207,533375 +82266,204,9,302699,1457949 +82267,20,2,22279,43154 +82268,60,1,539,6935 +82269,77,10,5040,40616 +82270,200,3,206647,1024842 +82271,413,11,377158,1648277 +82272,60,1,20644,1841686 +82273,273,7,9301,1076 +82274,236,8,425774,1708026 +82275,317,10,199575,1323509 +82276,317,10,19053,100558 +82277,53,2,8316,17063 +82278,234,1,403450,1274996 +82279,238,7,408616,1354925 +82280,234,1,11330,21183 +82281,182,8,10733,1397850 +82282,413,11,43141,1941 +82283,317,10,66966,40531 +82284,3,5,14868,77729 +82285,390,6,378236,1451266 +82286,273,7,32049,50715 +82287,196,7,75174,1399918 +82288,5,10,42418,128101 +82289,301,5,278621,1415887 +82290,204,9,227262,1654343 +82291,413,11,298865,36166 +82292,324,3,40864,124858 +82293,333,2,102629,1429340 +82294,132,2,407448,1424894 +82295,413,11,340616,71495 +82296,412,9,11370,1581116 +82297,269,9,256474,965663 +82298,388,9,44115,1394715 +82299,387,10,75363,37846 +82300,5,10,42569,55273 +82301,148,9,71668,1443944 +82302,72,11,329865,1706693 +82303,234,1,5393,31093 +82304,387,10,30876,55647 +82305,53,2,15022,1303225 +82306,127,3,308269,1447879 +82307,317,10,70734,928250 +82308,105,7,52999,5628 +82309,343,3,66756,1743496 +82310,232,10,43692,3599 +82311,53,2,660,9955 +82312,289,6,11216,1595512 +82313,52,10,74645,99437 +82314,301,5,9529,1408192 +82315,373,7,86829,1395255 +82316,158,2,318553,1339610 +82317,317,10,2300,14711 +82318,203,1,48231,1380004 +82319,52,10,80720,153245 +82320,160,3,84226,1316787 +82321,273,7,21030,68531 +82322,317,10,119364,161368 +82323,262,6,177677,1411533 +82324,104,7,6557,1551025 +82325,204,9,109001,1007281 +82326,387,10,156954,584146 +82327,273,7,4932,491 +82328,105,7,41608,29500 +82329,317,10,252034,67361 +82330,234,1,218688,1154037 +82331,387,10,65282,240813 +82332,317,10,31037,12678 +82333,234,1,14833,21415 +82334,234,1,94820,1003236 +82335,387,10,227156,74159 +82336,269,9,16077,945 +82337,5,10,84892,19311 +82338,3,5,23739,11847 +82339,413,11,376501,1545174 +82340,234,1,192990,11859 +82341,333,2,238589,32773 +82342,97,7,274479,20229 +82343,394,7,74,7764 +82344,97,7,176,80810 +82345,3,5,44921,544755 +82346,52,10,287281,132756 +82347,76,2,206647,1425971 +82348,53,2,77338,1031922 +82349,234,1,222517,103156 +82350,105,7,106136,1039710 +82351,373,7,239566,1345595 +82352,148,9,59961,15541 +82353,3,5,12540,21588 +82354,203,1,298,1391605 +82355,314,2,443319,1888996 +82356,273,7,16938,12701 +82357,317,10,40087,1170025 +82358,333,2,223551,1263789 +82359,387,10,32140,122966 +82360,273,7,11402,12241 +82361,239,5,270403,1285601 +82362,53,2,47046,1601522 +82363,187,11,156711,1416452 +82364,373,7,183412,1419635 +82365,413,11,10178,34428 +82366,387,10,73116,54349 +82367,317,10,36971,116585 +82368,234,1,26516,3632 +82369,234,1,22160,18596 +82370,333,2,330459,1706715 +82371,357,3,296524,1729041 +82372,269,9,46992,50952 +82373,97,7,10008,1399560 +82374,413,11,336004,4951 +82375,411,9,36635,1309577 +82376,242,9,144792,1456432 +82377,127,3,33673,91218 +82378,317,10,13493,1326884 +82379,273,7,408203,1419363 +82380,317,10,239845,1274933 +82381,387,10,2503,19014 +82382,204,9,43727,17852 +82383,387,10,9543,81203 +82384,415,3,80713,1538763 +82385,148,9,25673,17670 +82386,3,5,242,3097 +82387,317,10,22910,31310 +82388,141,7,15653,1547231 +82389,273,7,323679,31579 +82390,67,10,263115,1534821 +82391,3,5,42062,70821 +82392,373,7,205587,1395024 +82393,387,10,22408,82838 +82394,204,9,16999,23492 +82395,301,5,76341,1494210 +82396,53,2,37958,958722 +82397,180,7,71041,1634641 +82398,413,11,2486,541 +82399,75,5,110412,1591027 +82400,234,1,46059,12804 +82401,154,3,2288,1537443 +82402,209,7,1950,1411856 +82403,187,11,28178,1531576 +82404,286,3,139244,47613 +82405,208,2,201085,558227 +82406,317,10,164366,1180434 +82407,234,1,67499,87851 +82408,52,10,25834,91659 +82409,158,2,168259,1506366 +82410,196,7,15440,1412138 +82411,273,7,15356,61498 +82412,3,5,20357,943 +82413,148,9,7305,10858 +82414,226,2,30374,1543995 +82415,234,1,63401,73153 +82416,317,10,20704,1115991 +82417,415,3,29143,1832240 +82418,286,3,108812,14678 +82419,196,7,13798,1565834 +82420,411,9,1165,16733 +82421,226,2,19901,1391708 +82422,12,10,171594,24767 +82423,213,10,38547,147779 +82424,317,10,45577,133240 +82425,175,5,2021,1415987 +82426,3,5,19765,1059101 +82427,273,7,51212,1965 +82428,277,3,228970,113048 +82429,413,11,48636,70602 +82430,291,6,343173,1577887 +82431,3,5,18495,1043953 +82432,340,2,296523,1393401 +82433,360,3,329865,1646488 +82434,234,1,267955,1316253 +82435,53,2,285840,1191559 +82436,333,2,43499,1377159 +82437,269,9,17654,1317 +82438,45,9,334527,1608011 +82439,54,10,236737,51897 +82440,234,1,53222,550481 +82441,387,10,71805,22558 +82442,53,2,9882,5493 +82443,3,5,72545,6800 +82444,234,1,84030,55728 +82445,302,9,693,1760805 +82446,97,7,250066,1495526 +82447,387,10,94803,49208 +82448,5,10,24634,130085 +82449,148,9,4809,9587 +82450,204,9,18971,34512 +82451,317,10,42571,128218 +82452,269,9,324440,1606195 +82453,317,10,374416,114366 +82454,273,7,17609,6157 +82455,34,8,163,1401995 +82456,234,1,149870,608 +82457,234,1,248211,237715 +82458,164,3,9664,1546757 +82459,234,1,84104,236380 +82460,317,10,56391,1028359 +82461,394,7,9746,1333223 +82462,413,11,9815,971 +82463,45,9,11045,484529 +82464,234,1,16175,63709 +82465,53,2,66187,46775 +82466,304,10,80193,1097894 +82467,330,3,94727,1840044 +82468,234,1,14874,123163 +82469,77,10,16371,80450 +82470,234,1,85469,52459 +82471,262,6,346672,1472788 +82472,53,2,46857,1437043 +82473,3,5,2034,18265 +82474,234,1,11171,19224 +82475,413,11,36657,8752 +82476,52,10,19898,254681 +82477,182,8,76341,1402902 +82478,148,9,8617,65736 +82479,413,11,857,493 +82480,333,2,332411,1579395 +82481,3,5,4882,39766 +82482,45,9,378018,1805332 +82483,273,7,211561,29500 +82484,398,9,3172,958691 +82485,413,11,338676,17089 +82486,175,5,19901,1391729 +82487,204,9,10265,64492 +82488,209,7,69668,1435194 +82489,148,9,84720,25172 +82490,3,5,2186,11469 +82491,373,7,66193,1402532 +82492,190,7,24750,1512155 +82493,317,10,83897,876106 +82494,234,1,31344,24492 +82495,234,1,180607,1163129 +82496,234,1,91628,17700 +82497,166,9,316042,1429330 +82498,304,10,85052,1264503 +82499,333,2,140554,1707848 +82500,3,5,242458,37944 +82501,387,10,13912,144068 +82502,234,1,22076,112340 +82503,234,1,419192,21370 +82504,75,5,296524,1407738 +82505,234,1,57816,1095832 +82506,148,9,28893,1290905 +82507,53,2,16374,1470204 +82508,317,10,112675,1070882 +82509,234,1,10948,107274 +82510,387,10,57977,640975 +82511,244,3,311324,1667091 +82512,317,10,29290,103486 +82513,148,9,28000,9063 +82514,75,5,14430,1521675 +82515,204,9,9423,2528 +82516,350,6,337339,1824513 +82517,136,1,9928,237759 +82518,77,10,9841,29924 +82519,387,10,283701,229263 +82520,386,5,11577,41372 +82521,273,7,157898,30268 +82522,83,2,33586,1464956 +82523,413,11,285860,1382492 +82524,317,10,43250,84238 +82525,203,1,46261,1425397 +82526,234,1,103332,16959 +82527,234,1,21778,4275 +82528,60,1,72640,1019980 +82529,161,6,329865,1646572 +82530,317,10,334557,1194706 +82531,234,1,246320,41029 +82532,232,10,43342,131266 +82533,234,1,321039,1418227 +82534,269,9,31005,6628 +82535,204,9,55604,9062 +82536,373,7,343934,1070088 +82537,208,2,52520,75294 +82538,413,11,42418,57164 +82539,387,10,28663,87459 +82540,148,9,10326,7237 +82541,413,11,16342,1000569 +82542,413,11,14047,20649 +82543,323,10,285270,1103650 +82544,234,1,166671,1328 +82545,5,10,81188,60678 +82546,53,2,70981,946 +82547,317,10,29212,16036 +82548,204,9,59296,1014943 +82549,15,6,293167,1531503 +82550,182,8,8247,1545541 +82551,387,10,79008,6728 +82552,304,10,20364,1035475 +82553,234,1,3291,1461 +82554,239,5,378018,1762261 +82555,413,11,87936,30924 +82556,387,10,270946,66510 +82557,412,9,10733,1567969 +82558,3,5,7014,51838 +82559,328,6,140607,1550776 +82560,234,1,224,2801 +82561,3,5,8915,7262 +82562,292,3,2567,1739544 +82563,387,10,4285,6094 +82564,413,11,52034,58608 +82565,143,7,8329,54530 +82566,413,11,11664,46985 +82567,273,7,8617,2214 +82568,413,11,340215,1630270 +82569,234,1,25872,35318 +82570,413,11,36334,22096 +82571,234,1,83384,66605 +82572,401,6,12,7963 +82573,413,11,10774,853 +82574,273,7,112287,1054381 +82575,208,2,8869,26986 +82576,148,9,243940,1423984 +82577,387,10,17111,111481 +82578,203,1,8080,1409284 +82579,217,3,269149,1462005 +82580,53,2,14126,62587 +82581,273,7,163870,636 +82582,181,7,265208,297 +82583,179,2,291413,1746587 +82584,262,6,8619,1377223 +82585,204,9,52520,1324015 +82586,387,10,215379,122582 +82587,52,10,46667,1280411 +82588,234,1,32628,8635 +82589,317,10,213635,33323 +82590,273,7,251555,67265 +82591,105,7,17926,98084 +82592,317,10,81616,28930 +82593,413,11,9951,60809 +82594,387,10,18569,82172 +82595,234,1,94480,136396 +82596,204,9,9286,62163 +82597,148,9,62441,1205632 +82598,317,10,333663,65594 +82599,413,11,37958,25058 +82600,204,9,177677,3725 +82601,413,11,333352,13085 +82602,387,10,242240,32375 +82603,317,10,66881,549026 +82604,286,3,380058,1401937 +82605,204,9,307081,1208355 +82606,77,10,13614,2801 +82607,204,9,2662,957804 +82608,387,10,130739,20267 +82609,317,10,31977,42804 +82610,196,7,6973,15331 +82611,52,10,1924,3083 +82612,3,5,288281,19758 +82613,387,10,37534,82664 +82614,234,1,12683,40610 +82615,148,9,98025,1688143 +82616,317,10,43209,57207 +82617,196,7,10916,1402109 +82618,234,1,94348,18878 +82619,269,9,43093,11558 +82620,387,10,122662,571457 +82621,413,11,311324,15350 +82622,234,1,90231,1134196 +82623,286,3,14019,76257 +82624,75,5,99861,1388898 +82625,234,1,33611,144632 +82626,317,10,1377,16747 +82627,234,1,64627,50125 +82628,273,7,43997,72854 +82629,234,1,91548,100505 +82630,53,2,42764,1642194 +82631,127,3,39840,1437321 +82632,5,10,4988,41148 +82633,234,1,220488,66960 +82634,5,10,35852,5735 +82635,317,10,28031,73628 +82636,273,7,13075,1561620 +82637,387,10,68063,236997 +82638,105,7,104462,1498981 +82639,3,5,10921,67479 +82640,52,10,54146,96807 +82641,113,9,336882,1099357 +82642,373,7,635,928942 +82643,304,10,81541,592054 +82644,273,7,8014,53616 +82645,60,1,76871,66839 +82646,413,11,12422,2309 +82647,273,7,253235,9251 +82648,273,7,4191,1045 +82649,234,1,267793,74638 +82650,413,11,10087,63128 +82651,386,5,188102,64300 +82652,262,6,322443,1346946 +82653,204,9,42418,31172 +82654,66,11,10665,1686933 +82655,273,7,11907,4524 +82656,413,11,198663,6043 +82657,204,9,18082,937501 +82658,273,7,8942,77080 +82659,187,11,522,1535414 +82660,387,10,173443,144810 +82661,53,2,76871,32321 +82662,387,10,23367,129305 +82663,244,3,284564,1698264 +82664,262,6,257088,1410554 +82665,5,10,389630,1597953 +82666,203,1,30361,1187187 +82667,3,5,46278,20572 +82668,57,2,1125,1536949 +82669,387,10,132939,1087074 +82670,234,1,56858,592622 +82671,75,5,17654,1424628 +82672,286,3,64015,65961 +82673,66,11,222517,1699959 +82674,64,6,403,1412250 +82675,234,1,23739,49358 +82676,204,9,1687,7512 +82677,289,6,245703,1641660 +82678,180,7,8906,13758 +82679,317,10,49961,143142 +82680,262,6,395883,1337467 +82681,387,10,29835,105017 +82682,52,10,72648,181647 +82683,387,10,28290,8501 +82684,234,1,288130,96199 +82685,189,3,93856,1335157 +82686,317,10,348631,1504640 +82687,387,10,8070,18213 +82688,234,1,40983,6840 +82689,333,2,64225,1694164 +82690,269,9,38055,175229 +82691,160,3,75622,200402 +82692,122,8,8053,1702539 +82693,45,9,1381,1447125 +82694,105,7,32085,110546 +82695,3,5,19050,19102 +82696,413,11,4592,13505 +82697,286,3,1428,2294 +82698,302,9,26656,1454508 +82699,387,10,362045,1447042 +82700,104,7,8619,74779 +82701,105,7,259728,1301987 +82702,387,10,290555,10995 +82703,3,5,52520,31126 +82704,52,10,86360,152719 +82705,292,3,857,1417842 +82706,317,10,394645,82418 +82707,269,9,3933,1303 +82708,373,7,14019,76264 +82709,302,9,49009,1519286 +82710,148,9,102155,31067 +82711,234,1,79779,587968 +82712,333,2,205864,1208497 +82713,40,1,9819,38416 +82714,333,2,297702,1636866 +82715,328,6,70981,1390364 +82716,234,1,15081,25558 +82717,250,11,284289,1538205 +82718,204,9,33792,9062 +82719,234,1,19809,1435164 +82720,113,9,13393,1603667 +82721,180,7,60285,1141747 +82722,92,7,27599,58304 +82723,413,11,11055,33790 +82724,317,10,38157,132553 +82725,273,7,11196,68555 +82726,97,7,44363,91095 +82727,148,9,64499,1334020 +82728,286,3,1969,997 +82729,234,1,80368,5629 +82730,11,6,77459,118713 +82731,5,10,31867,114406 +82732,413,11,48202,1330512 +82733,262,6,102629,1394411 +82734,234,1,44442,43553 +82735,413,11,10910,6604 +82736,110,1,49322,933551 +82737,273,7,12122,11770 +82738,413,11,260001,1167489 +82739,366,3,18,1440847 +82740,387,10,16076,74699 +82741,306,7,9514,28922 +82742,169,3,173153,1399971 +82743,333,2,13580,14748 +82744,317,10,9059,56860 +82745,75,5,302026,1556535 +82746,203,1,343934,1401164 +82747,169,3,2687,26987 +82748,317,10,77283,109586 +82749,303,3,76651,579731 +82750,273,7,48153,10934 +82751,234,1,17008,14614 +82752,75,5,19101,1537471 +82753,72,11,302528,1444302 +82754,45,9,107811,1460821 +82755,3,5,987,594 +82756,15,6,209112,1577213 +82757,273,7,11172,68437 +82758,303,3,338,972162 +82759,387,10,28297,3632 +82760,234,1,16440,174683 +82761,187,11,339530,1350236 +82762,234,1,12422,45192 +82763,419,10,134201,189089 +82764,208,2,8053,1329417 +82765,298,5,163,1405241 +82766,105,7,125759,40438 +82767,234,1,109472,1046564 +82768,273,7,175386,3249 +82769,3,5,54093,71575 +82770,141,7,206647,66941 +82771,317,10,42307,127731 +82772,204,9,38769,29637 +82773,327,7,45562,999561 +82774,53,2,245692,3733 +82775,269,9,14979,5508 +82776,387,10,9495,1217663 +82777,413,11,54491,1383405 +82778,317,10,148408,27213 +82779,269,9,27523,1190952 +82780,87,7,10476,1560905 +82781,317,10,180759,1241030 +82782,203,1,11607,1342629 +82783,317,10,137726,43553 +82784,234,1,47386,138776 +82785,97,7,17209,80810 +82786,160,3,233639,1792033 +82787,349,1,9836,59779 +82788,196,7,773,1412228 +82789,3,5,395914,1163603 +82790,196,7,169,117867 +82791,317,10,44800,56381 +82792,234,1,62472,18598 +82793,273,7,51476,111193 +82794,387,10,35052,6364 +82795,3,5,28893,13670 +82796,3,5,10524,6316 +82797,53,2,4964,41084 +82798,387,10,31835,14824 +82799,273,7,764,11468 +82800,45,9,11618,1765769 +82801,387,10,392271,87550 +82802,317,10,72199,126966 +82803,204,9,173153,22106 +82804,317,10,284053,87173 +82805,234,1,218772,103156 +82806,3,5,41783,66169 +82807,200,3,83666,1407019 +82808,317,10,228968,233464 +82809,387,10,344906,1478018 +82810,234,1,191476,1284640 +82811,204,9,28001,16753 +82812,333,2,227306,1578022 +82813,387,10,112973,1056086 +82814,204,9,26761,1130432 +82815,373,7,10590,13177 +82816,53,2,791,11823 +82817,269,9,25738,14878 +82818,204,9,89242,41831 +82819,387,10,35,165791 +82820,317,10,186634,71300 +82821,234,1,155386,1657764 +82822,333,2,831,14498 +82823,53,2,408509,1038895 +82824,387,10,10714,7775 +82825,252,3,12103,1625919 +82826,317,10,79550,587440 +82827,234,1,94468,28236 +82828,105,7,16147,79604 +82829,53,2,18045,959554 +82830,317,10,39816,31654 +82831,203,1,8292,1449183 +82832,269,9,363413,1521296 +82833,234,1,245906,39012 +82834,234,1,630,9049 +82835,234,1,72013,1062401 +82836,317,10,43773,28672 +82837,234,1,37710,8193 +82838,135,3,2300,1870691 +82839,20,2,347945,1618768 +82840,53,2,11232,18321 +82841,387,10,8965,35294 +82842,387,10,323679,935279 +82843,234,1,361146,1171897 +82844,387,10,363757,1525568 +82845,67,10,3933,1198798 +82846,360,3,435,1391763 +82847,234,1,14029,44955 +82848,387,10,345054,928670 +82849,317,10,37206,87121 +82850,3,5,39495,10602 +82851,104,7,5,1410954 +82852,413,11,236324,61992 +82853,273,7,300983,120944 +82854,234,1,298396,1201593 +82855,269,9,28031,932238 +82856,226,2,4592,1418453 +82857,314,2,325039,1401176 +82858,234,1,354832,95329 +82859,413,11,9607,898 +82860,262,6,1381,1268981 +82861,204,9,114790,1568002 +82862,314,2,18801,5333 +82863,269,9,16232,11475 +82864,387,10,284154,1347206 +82865,317,10,271718,440414 +82866,413,11,12787,244 +82867,5,10,60759,232012 +82868,209,7,237584,1543670 +82869,175,5,8204,1392106 +82870,373,7,4547,1406614 +82871,234,1,293654,56801 +82872,317,10,48153,40235 +82873,270,9,12,1211220 +82874,413,11,31671,1267110 +82875,20,2,1662,4190 +82876,234,1,98065,1016133 +82877,53,2,31280,39745 +82878,273,7,12716,1965 +82879,234,1,97707,6818 +82880,226,2,35001,14495 +82881,179,2,9846,957115 +82882,234,1,82767,125071 +82883,262,6,11045,1393390 +82884,317,10,366759,74376 +82885,373,7,189,1401133 +82886,269,9,276906,1331177 +82887,196,7,13075,1023984 +82888,269,9,169656,1537245 +82889,328,6,274857,1319487 +82890,387,10,150117,6733 +82891,387,10,48412,140458 +82892,122,8,296524,1729039 +82893,234,1,85023,153669 +82894,250,11,263115,1821922 +82895,234,1,267466,116181 +82896,204,9,280092,1178366 +82897,387,10,303542,128218 +82898,175,5,6163,1864623 +82899,45,9,45273,1404813 +82900,234,1,228034,146801 +82901,3,5,32275,13338 +82902,273,7,45562,999547 +82903,289,6,72640,222310 +82904,323,10,124075,1172477 +82905,204,9,256092,1325867 +82906,204,9,1381,1327907 +82907,289,6,12593,1458331 +82908,234,1,101006,1002601 +82909,104,7,86829,223239 +82910,33,10,70119,1771880 +82911,413,11,150712,22599 +82912,413,11,31984,1006459 +82913,409,7,11577,1789636 +82914,381,9,755,1783637 +82915,3,5,370264,6427 +82916,46,5,142402,152260 +82917,273,7,228496,969465 +82918,97,7,274857,1337412 +82919,234,1,26146,117794 +82920,53,2,36402,41856 +82921,317,10,19794,1331888 +82922,412,9,99261,1752038 +82923,52,10,118984,1322956 +82924,387,10,65891,61228 +82925,273,7,85196,559250 +82926,143,7,10008,1012025 +82927,269,9,18937,12092 +82928,360,3,6947,1127740 +82929,269,9,356191,46267 +82930,413,11,362579,1518666 +82931,105,7,433034,62811 +82932,406,6,810,1463182 +82933,277,3,42683,8722 +82934,234,1,13689,56349 +82935,108,10,31548,98751 +82936,273,7,159128,1298749 +82937,234,1,16016,66880 +82938,53,2,38749,8527 +82939,234,1,43828,19093 +82940,387,10,110573,1150389 +82941,413,11,333371,1636658 +82942,234,1,288105,44950 +82943,373,7,334,1378228 +82944,317,10,83599,56205 +82945,289,6,10992,1447362 +82946,387,10,2666,3893 +82947,169,3,6068,15333 +82948,413,11,330947,3189 +82949,53,2,111470,14867 +82950,399,9,13205,1767052 +82951,234,1,48250,236069 +82952,53,2,339408,62643 +82953,413,11,27034,18595 +82954,387,10,2034,19769 +82955,273,7,11953,71029 +82956,398,9,118957,1402733 +82957,304,10,56901,225150 +82958,143,7,16436,1377262 +82959,226,2,43395,1529483 +82960,273,7,332872,405 +82961,317,10,14137,111745 +82962,60,1,38269,1120179 +82963,135,3,664,1552998 +82964,3,5,136582,1151804 +82965,204,9,33135,1304267 +82966,97,7,228970,1367493 +82967,413,11,157424,109860 +82968,234,1,1361,16410 +82969,204,9,2274,23490 +82970,317,10,125249,196264 +82971,40,1,103432,1186924 +82972,387,10,54388,1885587 +82973,97,7,243940,113045 +82974,234,1,14639,216925 +82975,234,1,19495,71871 +82976,210,9,3597,112631 +82977,387,10,3782,5026 +82978,244,3,270774,1341775 +82979,333,2,379019,1780130 +82980,3,5,110001,403 +82981,5,10,264644,1310031 +82982,234,1,60599,81856 +82983,273,7,2861,1895449 +82984,3,5,233487,1129885 +82985,203,1,10294,1492941 +82986,273,7,140607,491 +82987,273,7,88922,70677 +82988,387,10,79743,1166041 +82989,273,7,1382,1589 +82990,85,10,39578,139841 +82991,387,10,11351,56349 +82992,317,10,27145,28615 +82993,105,7,45244,32857 +82994,204,9,46247,229966 +82995,187,11,226140,1377414 +82996,387,10,49418,142228 +82997,46,5,26882,1773268 +82998,77,10,10053,62556 +82999,250,11,55846,1402099 +83000,387,10,11902,70877 +83001,333,2,223497,4352 +83002,301,5,240832,983118 +83003,65,3,10733,1365699 +83004,317,10,23957,15858 +83005,234,1,37340,97212 +83006,250,11,8915,1399519 +83007,64,6,329865,1646569 +83008,317,10,49365,583023 +83009,198,6,227306,1866312 +83010,234,1,173874,1156680 +83011,317,10,239498,108899 +83012,204,9,324670,1329411 +83013,196,7,82,1412228 +83014,169,3,284289,1523026 +83015,203,1,2897,1427699 +83016,317,10,84209,37710 +83017,273,7,4641,25548 +83018,53,2,613,7839 +83019,317,10,35008,25854 +83020,160,3,36929,1007395 +83021,317,10,121749,1492996 +83022,333,2,218778,1432577 +83023,413,11,5559,44119 +83024,3,5,896,12166 +83025,53,2,435,6057 +83026,53,2,73067,567973 +83027,148,9,99,1207976 +83028,208,2,10096,1319136 +83029,3,5,11104,1357 +83030,373,7,87826,1537460 +83031,60,1,105509,29495 +83032,273,7,139159,1167046 +83033,317,10,98302,26151 +83034,234,1,11618,2209 +83035,53,2,112083,4127 +83036,11,6,79599,586773 +83037,317,10,3173,31033 +83038,269,9,81182,1465601 +83039,262,6,70074,1399287 +83040,3,5,185111,1126097 +83041,321,11,12,1830812 +83042,289,6,2300,240779 +83043,226,2,53459,1437896 +83044,60,1,655,9888 +83045,304,10,176627,67426 +83046,234,1,61212,122016 +83047,262,6,14660,1454884 +83048,350,6,9352,200670 +83049,273,7,1963,1123135 +83050,148,9,9438,11021 +83051,373,7,638,5602 +83052,413,11,436339,1344582 +83053,419,10,46261,1242852 +83054,208,2,329289,1525145 +83055,3,5,226968,2950 +83056,204,9,17911,1871215 +83057,3,5,15013,5431 +83058,387,10,43522,82838 +83059,273,7,17875,9217 +83060,52,10,42218,11624 +83061,287,3,266433,123719 +83062,394,7,8916,671 +83063,143,7,116463,1401182 +83064,175,5,12573,1452675 +83065,234,1,35284,115598 +83066,204,9,13653,1801307 +83067,234,1,12683,40607 +83068,413,11,18493,1018091 +83069,66,11,425774,1708049 +83070,234,1,207441,6818 +83071,234,1,66292,222770 +83072,387,10,3937,34171 +83073,399,9,13205,1815488 +83074,181,7,171357,971123 +83075,203,1,131737,1410204 +83076,3,5,303542,56277 +83077,273,7,43987,69702 +83078,234,1,180929,18635 +83079,52,10,18651,1192601 +83080,245,3,289198,118370 +83081,237,7,1579,9419 +83082,269,9,10311,21997 +83083,220,7,375199,1178236 +83084,234,1,21348,87429 +83085,413,11,86603,45498 +83086,269,9,199575,1204250 +83087,289,6,9078,69003 +83088,268,7,14510,83083 +83089,32,8,339403,1635257 +83090,181,7,270851,1321935 +83091,387,10,108789,938497 +83092,234,1,6023,2163 +83093,234,1,375170,1576757 +83094,213,10,348315,221028 +83095,53,2,18273,965926 +83096,236,8,9902,1600632 +83097,387,10,90800,545795 +83098,5,10,23518,90232 +83099,3,5,102384,8713 +83100,87,7,10691,1564351 +83101,301,5,8869,1393365 +83102,413,11,105833,1830595 +83103,87,7,9836,88117 +83104,234,1,37609,65310 +83105,273,7,262522,1460851 +83106,208,2,2135,1322087 +83107,317,10,94811,33245 +83108,234,1,117550,1019024 +83109,143,7,5915,1462845 +83110,204,9,44458,961865 +83111,234,1,6977,1224 +83112,148,9,341689,1688080 +83113,234,1,34623,4109 +83114,3,5,40139,12989 +83115,3,5,104251,17550 +83116,413,11,206563,11017 +83117,387,10,424600,5369 +83118,234,1,14609,87169 +83119,226,2,433034,1846922 +83120,234,1,251419,1286745 +83121,317,10,323968,1148265 +83122,398,9,10796,1246457 +83123,387,10,29048,444552 +83124,273,7,271826,1588849 +83125,147,1,38027,1762442 +83126,387,10,29056,12415 +83127,286,3,42537,1375843 +83128,3,5,4529,3540 +83129,234,1,50674,30149 +83130,413,11,17691,21781 +83131,413,11,13185,125261 +83132,333,2,613,17084 +83133,317,10,334175,1464772 +83134,37,3,76170,1412756 +83135,317,10,14569,126303 +83136,286,3,321779,140595 +83137,289,6,11886,138170 +83138,317,10,197057,1176981 +83139,20,2,206647,1546747 +83140,53,2,91583,1692504 +83141,234,1,9464,22461 +83142,234,1,18935,83961 +83143,273,7,375355,1631455 +83144,234,1,40229,68770 +83145,234,1,114503,5690 +83146,182,8,442752,1761884 +83147,317,10,188981,143026 +83148,3,5,320005,1427405 +83149,413,11,8899,126761 +83150,147,1,17209,587466 +83151,164,3,244610,1537476 +83152,413,11,110573,9753 +83153,360,9,40466,566360 +83154,317,10,20941,145063 +83155,141,7,705,701959 +83156,148,9,141,1547348 +83157,333,2,34231,1460036 +83158,3,5,11379,19102 +83159,269,9,343284,1302900 +83160,176,3,186869,1862936 +83161,75,5,20421,1462792 +83162,75,5,284053,1460254 +83163,405,8,77459,1821423 +83164,234,1,8467,7396 +83165,317,10,106355,33956 +83166,191,6,283995,1457930 +83167,387,10,330333,1162316 +83168,250,11,46261,1423826 +83169,413,11,262338,36590 +83170,317,10,264393,140624 +83171,273,7,42512,69 +83172,52,10,10193,7879 +83173,5,10,11202,68413 +83174,87,7,293167,52453 +83175,204,9,28774,960963 +83176,387,10,6643,50961 +83177,127,3,105,7036 +83178,413,11,24739,48070 +83179,226,2,13408,1424894 +83180,317,10,25403,69488 +83181,92,7,7220,1573625 +83182,373,7,436,1085007 +83183,187,11,168259,12562 +83184,317,10,47959,66703 +83185,234,1,285181,56377 +83186,245,3,86718,1640253 +83187,413,11,99579,1304200 +83188,60,1,91181,999947 +83189,387,10,48846,56722 +83190,234,1,6443,40476 +83191,328,6,284289,1462037 +83192,273,7,32610,34229 +83193,413,11,3539,4528 +83194,53,2,84336,33393 +83195,66,11,43231,32053 +83196,304,10,43877,135465 +83197,387,10,28115,85453 +83198,105,7,72013,1770711 +83199,52,10,25551,89803 +83200,317,10,20439,131196 +83201,3,5,38027,1762 +83202,226,2,10925,1815533 +83203,127,3,106358,34103 +83204,269,9,11236,5491 +83205,415,3,252916,100991 +83206,234,1,3144,30745 +83207,413,11,15089,1173111 +83208,143,7,253337,1149941 +83209,234,1,184351,19396 +83210,413,11,20325,1174596 +83211,317,10,43095,97205 +83212,234,1,156360,100345 +83213,204,9,120259,120450 +83214,331,3,11607,1342623 +83215,314,2,6068,1417398 +83216,204,9,747,34005 +83217,148,9,84720,12348 +83218,333,2,8470,1840075 +83219,203,1,7515,81742 +83220,269,9,10594,54603 +83221,166,9,198663,1367480 +83222,160,3,10665,1339959 +83223,234,1,17978,18854 +83224,180,7,82178,9107 +83225,3,5,62978,19054 +83226,169,3,8669,1531897 +83227,53,2,47504,1471022 +83228,305,9,634,1767018 +83229,289,6,13798,1565829 +83230,234,1,422603,1699011 +83231,3,5,9079,20693 +83232,167,3,9358,1441330 +83233,413,11,747,11114 +83234,5,10,37103,1295145 +83235,190,7,8915,1337460 +83236,209,7,6933,8760 +83237,262,6,329440,1622453 +83238,234,1,315335,1869 +83239,148,9,9475,18173 +83240,234,1,246415,1282312 +83241,269,9,229702,936980 +83242,387,10,301272,120652 +83243,3,5,67177,2361 +83244,413,11,2608,22483 +83245,314,2,419430,1761137 +83246,269,9,21282,69187 +83247,60,1,368006,1640296 +83248,72,11,809,1678652 +83249,327,7,20126,1588262 +83250,357,3,315837,1738651 +83251,67,10,8470,1551667 +83252,413,11,53042,1153225 +83253,306,7,8669,1734775 +83254,234,1,12249,71930 +83255,317,10,37083,25168 +83256,413,11,94874,1526869 +83257,387,10,42552,1224549 +83258,232,10,44208,1275386 +83259,268,7,126889,1737654 +83260,105,7,82767,31874 +83261,419,10,41522,134048 +83262,47,8,9819,1395368 +83263,373,7,24679,1052 +83264,182,8,28110,1564160 +83265,292,3,9472,1567975 +83266,234,1,319396,1390354 +83267,234,1,73554,10620 +83268,209,7,407806,1394307 +83269,398,9,277355,1495867 +83270,53,2,102629,61850 +83271,273,7,22476,58263 +83272,234,1,1926,15488 +83273,317,10,14489,141646 +83274,234,1,3173,21905 +83275,273,7,268853,1648882 +83276,12,10,71670,16847 +83277,317,10,86284,70682 +83278,314,2,236324,1896173 +83279,166,9,10916,1402106 +83280,64,6,10440,1550188 +83281,291,6,10865,1552885 +83282,317,10,26261,94973 +83283,273,7,425591,1315942 +83284,204,9,64725,32311 +83285,53,2,141955,1408469 +83286,3,5,1917,17393 +83287,413,11,2861,3838 +83288,18,2,11024,1404711 +83289,273,7,40060,9217 +83290,148,9,45019,1469626 +83291,179,2,11358,1324926 +83292,317,10,330947,30715 +83293,3,5,32021,41411 +83294,333,2,210913,1332518 +83295,317,10,73697,354606 +83296,113,9,220820,1405262 +83297,52,10,111042,1379089 +83298,53,2,325712,1527436 +83299,287,3,336850,1211345 +83300,180,7,37581,1342519 +83301,53,2,57230,1625942 +83302,53,2,74714,1179941 +83303,273,7,46184,30104 +83304,148,9,263115,60714 +83305,317,10,27358,235784 +83306,3,5,371462,1487232 +83307,403,10,21193,148059 +83308,198,6,140607,1550774 +83309,328,6,274857,1580463 +83310,317,10,86732,146827 +83311,189,3,1579,1400355 +83312,196,7,1428,143917 +83313,234,1,87514,6778 +83314,305,9,10796,1594974 +83315,317,10,19610,13861 +83316,327,7,98066,1565105 +83317,234,1,52251,19896 +83318,53,2,78802,8428 +83319,373,7,328111,1235786 +83320,286,3,208700,1353233 +83321,413,11,319073,1559448 +83322,317,10,169298,1299105 +83323,140,9,329865,1646489 +83324,53,2,8870,6209 +83325,204,9,3092,10591 +83326,413,11,180929,14491 +83327,387,10,48207,9168 +83328,387,10,22213,3349 +83329,314,2,522,1400741 +83330,333,2,210302,1193913 +83331,234,1,266425,1313163 +83332,234,1,420648,57865 +83333,365,6,82627,95651 +83334,75,5,11511,1402095 +83335,203,1,31542,1589502 +83336,273,7,114790,49247 +83337,234,1,77673,11195 +83338,262,6,214081,1367652 +83339,317,10,32395,129718 +83340,234,1,102155,81285 +83341,5,10,132328,1095227 +83342,413,11,389630,19661 +83343,234,1,278334,586734 +83344,269,9,29263,1311466 +83345,317,10,103850,38696 +83346,204,9,10265,64494 +83347,387,10,490,6648 +83348,97,7,237584,295591 +83349,105,7,169934,1083854 +83350,175,5,72105,1399319 +83351,273,7,552,7559 +83352,204,9,6,14040 +83353,234,1,270469,543674 +83354,204,9,261249,1410820 +83355,373,7,60855,229839 +83356,105,7,86284,84912 +83357,413,11,206574,98190 +83358,182,8,11618,1452751 +83359,105,7,81589,1041663 +83360,324,3,64526,44957 +83361,5,10,70734,1171103 +83362,204,9,47190,1158663 +83363,204,9,4806,11713 +83364,317,10,229304,1263929 +83365,204,9,337339,1046602 +83366,234,1,389630,3897 +83367,234,1,9568,27992 +83368,413,11,2293,23645 +83369,87,7,9893,49912 +83370,3,5,23964,23487 +83371,234,1,278458,584193 +83372,317,10,32845,112914 +83373,234,1,20907,140027 +83374,74,5,443319,1888981 +83375,273,7,10219,1213 +83376,3,5,48677,14536 +83377,53,2,3484,9064 +83378,413,11,655,2309 +83379,269,9,60599,60106 +83380,328,6,118957,1401732 +83381,269,9,135390,1026105 +83382,273,7,18684,19096 +83383,105,7,277778,1377834 +83384,317,10,14489,141647 +83385,289,6,9514,1447377 +83386,398,9,8329,54529 +83387,22,9,178809,1857680 +83388,317,10,37405,66639 +83389,75,5,102382,1399469 +83390,234,1,11697,8500 +83391,234,1,143073,127401 +83392,169,3,28739,1407893 +83393,413,11,42987,24667 +83394,40,1,383538,1783000 +83395,317,10,106020,161777 +83396,204,9,440508,1844152 +83397,175,5,2454,1392245 +83398,60,1,34078,14441 +83399,45,9,149509,1394931 +83400,387,10,214093,146169 +83401,40,1,7220,1573614 +83402,105,7,36797,58289 +83403,53,2,3423,32321 +83404,387,10,10750,508 +83405,398,9,2144,11877 +83406,97,7,9716,92376 +83407,234,1,32740,1032103 +83408,328,6,8292,1390364 +83409,269,9,5289,12383 +83410,105,7,192210,1668821 +83411,413,11,55534,14769 +83412,413,11,283995,58194 +83413,234,1,119844,70055 +83414,314,2,16997,1048397 +83415,234,1,82624,5872 +83416,3,5,19174,120375 +83417,226,2,11056,1418150 +83418,148,9,1578,14098 +83419,75,5,1579,40546 +83420,186,6,72545,1859975 +83421,113,9,3057,1539790 +83422,317,10,31915,11834 +83423,234,1,94803,49208 +83424,387,10,580,16205 +83425,204,9,10394,80424 +83426,234,1,47670,35325 +83427,234,1,116733,939583 +83428,204,9,866,7790 +83429,75,5,62630,1350255 +83430,234,1,263472,16847 +83431,127,3,8870,1262771 +83432,3,5,52864,13972 +83433,3,5,223485,71086 +83434,317,10,30082,105669 +83435,317,10,72278,146357 +83436,357,3,12,1830788 +83437,53,2,4024,24296 +83438,204,9,48205,96971 +83439,387,10,19625,99710 +83440,190,7,32872,1768142 +83441,387,10,433,5836 +83442,397,7,198795,1511311 +83443,269,9,27138,578792 +83444,226,2,13667,1433983 +83445,287,3,392818,88559 +83446,387,10,13596,26502 +83447,387,10,2100,21206 +83448,413,11,16186,51868 +83449,204,9,10657,1437124 +83450,3,5,11302,68941 +83451,289,6,46261,1453003 +83452,53,2,72313,38229 +83453,53,2,115565,15573 +83454,317,10,28775,41705 +83455,360,9,340101,1465940 +83456,113,9,1966,1392587 +83457,273,7,14457,30870 +83458,196,7,310133,1406898 +83459,234,1,34204,44683 +83460,175,5,21208,1537721 +83461,413,11,41505,8751 +83462,53,2,12513,72589 +83463,304,10,144792,70045 +83464,387,10,78318,113702 +83465,53,2,336890,90693 +83466,317,10,105902,31252 +83467,286,3,47653,74963 +83468,3,5,186869,70949 +83469,346,3,77949,1402100 +83470,34,8,13056,1708270 +83471,413,11,218778,17147 +83472,3,5,74753,83135 +83473,3,5,31995,10537 +83474,80,3,3716,139531 +83475,12,10,159824,185438 +83476,3,5,356191,1610559 +83477,190,7,69668,1734776 +83478,91,3,198795,1631429 +83479,40,1,331588,1797110 +83480,394,7,14254,15226 +83481,3,5,300669,486330 +83482,77,10,10265,64484 +83483,234,1,285,1704 +83484,317,10,126958,1004735 +83485,387,10,44921,50302 +83486,317,10,76544,1133575 +83487,105,7,209401,1466670 +83488,317,10,186079,1168793 +83489,204,9,2669,7788 +83490,413,11,58013,72773 +83491,273,7,263341,12455 +83492,413,11,32143,17399 +83493,204,9,606,10643 +83494,3,5,199373,961664 +83495,234,1,159727,992802 +83496,234,1,38055,18864 +83497,198,6,74879,1600456 +83498,387,10,2105,21584 +83499,333,2,168259,1437798 +83500,234,1,51423,33190 +83501,25,2,337339,1309209 +83502,3,5,12289,72204 +83503,182,8,283384,1429334 +83504,160,3,118957,1265157 +83505,269,9,18801,10497 +83506,203,1,9716,1459591 +83507,413,11,9087,3032 +83508,97,7,7445,9439 +83509,394,7,9457,1389134 +83510,301,5,245891,1445895 +83511,3,5,340584,63801 +83512,234,1,10109,63571 +83513,234,1,939,14281 +83514,234,1,149926,17784 +83515,387,10,80941,20500 +83516,179,2,227306,1465352 +83517,234,1,199647,1179836 +83518,148,9,405670,1853233 +83519,60,1,105548,1456433 +83520,275,9,379019,1644008 +83521,317,10,38310,98779 +83522,404,6,263115,1757611 +83523,269,9,252888,1338788 +83524,360,3,102382,1347730 +83525,12,10,82703,1242735 +83526,317,10,280092,2128 +83527,148,9,18133,13435 +83528,125,2,375366,1740800 +83529,413,11,22477,10440 +83530,127,3,4248,955406 +83531,395,3,10916,1402125 +83532,269,9,413421,1785030 +83533,234,1,395982,182327 +83534,317,10,26204,80601 +83535,5,10,43388,59805 +83536,77,10,9993,61617 +83537,401,6,10198,1464410 +83538,317,10,126043,1180859 +83539,387,10,946,4508 +83540,52,10,16232,52080 +83541,87,7,82684,563736 +83542,376,10,96411,1009352 +83543,273,7,384737,1465668 +83544,413,11,323675,57769 +83545,234,1,73257,106733 +83546,190,7,202214,1362706 +83547,3,5,3072,1009842 +83548,234,1,285245,1349785 +83549,234,1,13792,75544 +83550,122,8,339403,1635226 +83551,298,5,10145,1399071 +83552,5,10,11943,70994 +83553,77,10,152737,72638 +83554,234,1,61361,586317 +83555,301,5,2503,1402934 +83556,192,5,70667,1448326 +83557,5,10,95743,69681 +83558,277,3,33336,1632948 +83559,273,7,11536,10536 +83560,53,2,4024,11533 +83561,45,9,324670,1693548 +83562,317,10,376394,1418929 +83563,234,1,788,10965 +83564,317,10,171581,126882 +83565,234,1,39428,93911 +83566,77,10,10119,63744 +83567,5,10,55612,107743 +83568,317,10,280422,225680 +83569,13,1,45205,132525 +83570,148,9,167073,130223 +83571,268,7,14979,1458994 +83572,5,10,105760,1712227 +83573,413,11,46069,1540597 +83574,3,5,422,5680 +83575,53,2,42739,18079 +83576,52,10,211139,1396758 +83577,250,11,257088,1412722 +83578,387,10,448763,1533252 +83579,75,5,263115,1404288 +83580,234,1,28586,101225 +83581,51,9,2924,151007 +83582,413,11,37710,4186 +83583,413,11,71725,1136707 +83584,317,10,368342,144326 +83585,303,3,9286,1441261 +83586,234,1,128284,1045865 +83587,85,10,10201,204163 +83588,148,9,77012,8508 +83589,292,3,384737,1825650 +83590,234,1,18190,20213 +83591,105,7,38437,90378 +83592,301,5,419430,75303 +83593,387,10,2061,21184 +83594,234,1,26116,16644 +83595,234,1,77067,585784 +83596,136,1,7511,1419732 +83597,398,9,6171,1408183 +83598,97,7,206647,1389614 +83599,3,5,270886,1170862 +83600,314,2,18405,1393278 +83601,226,2,27265,1341848 +83602,234,1,124963,113799 +83603,360,3,329865,1646487 +83604,196,7,250066,9445 +83605,301,5,293982,1497636 +83606,105,7,136087,1649726 +83607,413,11,9543,9154 +83608,413,11,50126,43441 +83609,413,11,302528,81872 +83610,210,9,263115,1821928 +83611,234,1,97829,49214 +83612,273,7,499,10934 +83613,175,5,10724,55245 +83614,175,5,443319,1888983 +83615,277,3,240832,1367817 +83616,3,5,284289,8523 +83617,330,3,8619,1619112 +83618,317,10,25603,94005 +83619,234,1,39103,122186 +83620,317,10,315335,37709 +83621,332,8,10865,1552890 +83622,105,7,220002,1204939 +83623,387,10,43002,11993 +83624,317,10,209248,1031924 +83625,234,1,162877,558637 +83626,141,7,53210,422939 +83627,273,7,10862,5359 +83628,40,1,424488,1837277 +83629,333,2,39867,1437611 +83630,3,5,16432,1210160 +83631,53,2,146238,1279912 +83632,413,11,14128,1116914 +83633,52,10,15556,67760 +83634,317,10,229134,622942 +83635,317,10,120729,55477 +83636,60,1,25953,118308 +83637,324,3,45197,132461 +83638,273,7,25834,91659 +83639,413,11,1818,18223 +83640,234,1,431244,232019 +83641,234,1,142478,936584 +83642,327,7,24810,1397309 +83643,273,7,72074,12455 +83644,317,10,134368,946461 +83645,273,7,27621,21587 +83646,289,6,109298,222578 +83647,317,10,262988,44950 +83648,52,10,12,7924 +83649,234,1,125727,1081568 +83650,317,10,244610,1255810 +83651,317,10,162877,558636 +83652,286,3,171738,577617 +83653,234,1,211561,95040 +83654,273,7,99861,6041 +83655,328,6,1579,1400342 +83656,289,6,53178,150758 +83657,413,11,410718,37267 +83658,387,10,264644,1310031 +83659,3,5,12171,73419 +83660,311,9,435,1762786 +83661,234,1,110416,96676 +83662,317,10,58197,999726 +83663,244,3,4547,1599632 +83664,204,9,838,12404 +83665,53,2,13834,75876 +83666,175,5,17144,48453 +83667,64,6,74,1401792 +83668,386,5,2567,1402031 +83669,204,9,13542,1009764 +83670,317,10,336167,1455228 +83671,234,1,36554,1744 +83672,273,7,19819,1788056 +83673,273,7,392832,1605771 +83674,160,3,45610,1053407 +83675,269,9,75595,808746 +83676,234,1,204771,1187198 +83677,127,3,18405,1842595 +83678,60,1,47921,1297581 +83679,53,2,34650,38229 +83680,317,10,20414,128459 +83681,204,9,371645,1678888 +83682,317,10,81232,558177 +83683,262,6,70074,1407358 +83684,286,3,50086,239812 +83685,333,2,401164,1619744 +83686,53,2,341886,1340089 +83687,204,9,324670,1013552 +83688,387,10,182035,1064198 +83689,317,10,222216,1298593 +83690,317,10,29043,102668 +83691,317,10,15256,1196735 +83692,394,7,310137,1375918 +83693,53,2,10780,1542823 +83694,286,3,132122,544085 +83695,234,1,286595,145117 +83696,413,11,80720,102784 +83697,3,5,284293,23464 +83698,273,7,148408,1820615 +83699,204,9,310137,1148631 +83700,204,9,48231,1375244 +83701,269,9,54660,2032 +83702,234,1,13350,106834 +83703,277,3,242224,1307810 +83704,97,7,448847,1337412 +83705,360,3,66193,969405 +83706,234,1,37725,42274 +83707,53,2,99579,1304201 +83708,226,2,19101,1413224 +83709,198,6,9425,1431053 +83710,204,9,48156,9060 +83711,269,9,33563,35512 +83712,317,10,54514,30397 +83713,289,6,109329,22066 +83714,269,9,13580,5188 +83715,387,10,31682,12415 +83716,387,10,2687,348 +83717,317,10,18586,569 +83718,234,1,3554,32718 +83719,45,9,190955,1372082 +83720,317,10,125700,557134 +83721,286,3,82999,557364 +83722,269,9,201085,2486 +83723,234,1,85837,107065 +83724,204,9,9778,9004 +83725,53,2,12450,19692 +83726,262,6,223485,144888 +83727,387,10,93313,88873 +83728,317,10,83430,53995 +83729,160,3,71668,1407881 +83730,75,5,293982,1583086 +83731,239,5,10096,1546841 +83732,234,1,3028,29705 +83733,317,10,226001,1180685 +83734,298,5,206647,1399071 +83735,59,3,14052,1161134 +83736,52,10,354857,1251101 +83737,226,2,11975,1521022 +83738,58,2,53949,1817835 +83739,37,3,76170,1456696 +83740,234,1,50318,39104 +83741,232,10,14945,122987 +83742,204,9,156627,1649333 +83743,53,2,10330,935719 +83744,66,11,414977,1676806 +83745,273,7,31509,1550890 +83746,317,10,44434,40863 +83747,105,7,76411,1481579 +83748,269,9,18633,1271792 +83749,234,1,445602,545399 +83750,289,6,9514,1642461 +83751,105,7,51581,68716 +83752,244,3,13205,1779907 +83753,234,1,70006,64856 +83754,234,1,335509,89751 +83755,268,7,209112,1409270 +83756,74,5,340101,1762206 +83757,148,9,259593,8508 +83758,3,5,390547,37952 +83759,5,10,84636,10634 +83760,5,10,44875,150627 +83761,75,5,10632,1434165 +83762,413,11,246860,984014 +83763,234,1,83714,63713 +83764,166,9,18417,83075 +83765,387,10,12289,585037 +83766,387,10,37247,10769 +83767,53,2,241855,1470705 +83768,317,10,415633,1164767 +83769,387,10,293271,1364790 +83770,3,5,102222,1394059 +83771,15,6,333371,1455525 +83772,333,2,257088,1638158 +83773,66,11,14128,1726812 +83774,3,5,11645,70130 +83775,387,10,220488,1206310 +83776,3,5,121052,20105 +83777,234,1,24816,5834 +83778,204,9,60935,32200 +83779,273,7,5753,1273342 +83780,234,1,30584,106565 +83781,286,3,335450,117644 +83782,262,6,297762,1903935 +83783,105,7,90563,10468 +83784,273,7,79735,10771 +83785,234,1,226140,544130 +83786,360,3,11202,1434205 +83787,413,11,293167,7712 +83788,20,2,2731,37298 +83789,203,1,10900,1538942 +83790,413,11,4012,2866 +83791,234,1,84636,40 +83792,141,7,954,38335 +83793,387,10,1428,2294 +83794,234,1,9102,25735 +83795,317,10,116437,1107751 +83796,15,6,10674,1453513 +83797,387,10,9502,57744 +83798,413,11,30363,57985 +83799,413,11,24331,52093 +83800,317,10,16320,12891 +83801,234,1,111479,77121 +83802,53,2,1904,557 +83803,286,3,75244,966 +83804,286,3,11658,1296338 +83805,3,5,6976,30932 +83806,273,7,22910,45496 +83807,262,6,329865,1419725 +83808,317,10,31473,160097 +83809,46,5,2924,1594914 +83810,317,10,15489,49905 +83811,317,10,430365,1033664 +83812,92,7,11045,113087 +83813,34,8,44129,1419107 +83814,273,7,22744,1045 +83815,333,2,41213,1777185 +83816,234,1,191476,1092208 +83817,5,10,104485,56959 +83818,234,1,268875,78053 +83819,317,10,86814,130030 +83820,75,5,376934,1561594 +83821,3,5,63831,70313 +83822,411,9,7551,14378 +83823,169,3,243935,1043368 +83824,127,3,18405,1842600 +83825,413,11,616,2484 +83826,387,10,23196,96745 +83827,234,1,32872,1214396 +83828,104,7,11377,1602886 +83829,197,5,29136,1896775 +83830,262,6,149509,1444295 +83831,234,1,319396,237952 +83832,273,7,371645,1671689 +83833,127,3,76094,94988 +83834,273,7,23515,1440864 +83835,148,9,39833,34362 +83836,75,5,966,1597871 +83837,97,7,2321,92376 +83838,234,1,78999,585456 +83839,317,10,405473,1747164 +83840,148,9,2965,29059 +83841,234,1,52728,89166 +83842,122,8,26390,1526844 +83843,387,10,2323,23968 +83844,413,11,11358,60031 +83845,387,10,12,11 +83846,258,9,118,963843 +83847,273,7,207699,1084847 +83848,273,7,12614,1938 +83849,169,3,318781,1285602 +83850,234,1,153652,67619 +83851,77,10,10087,63120 +83852,317,10,296225,51361 +83853,234,1,80775,15705 +83854,234,1,46494,136396 +83855,269,9,82679,7439 +83856,317,10,47792,150569 +83857,13,5,73194,1361978 +83858,198,6,140607,1550769 +83859,317,10,113175,182908 +83860,269,9,59935,6032 +83861,234,1,175791,1158282 +83862,45,9,41733,1564970 +83863,234,1,19989,63709 +83864,269,9,28263,19681 +83865,234,1,104067,100036 +83866,269,9,242076,16614 +83867,234,1,38404,30833 +83868,317,10,126415,128432 +83869,204,9,256740,1322010 +83870,413,11,56435,15132 +83871,226,2,522,1095093 +83872,317,10,28533,37197 +83873,317,10,49158,92928 +83874,317,10,327982,127368 +83875,226,2,6963,578729 +83876,387,10,168994,145249 +83877,317,10,315855,1409535 +83878,387,10,21447,224884 +83879,148,9,222935,1145972 +83880,273,7,5917,12142 +83881,209,7,4547,21122 +83882,200,3,333484,1229789 +83883,413,11,21968,62024 +83884,234,1,135335,95501 +83885,317,10,19989,85408 +83886,234,1,85024,99996 +83887,387,10,8358,142 +83888,45,9,10900,1538940 +83889,208,2,16320,551903 +83890,204,9,229702,90107 +83891,162,6,140607,1550786 +83892,3,5,11172,40545 +83893,204,9,1995,71579 +83894,269,9,16999,997132 +83895,64,6,4248,1459789 +83896,346,3,11045,1409283 +83897,387,10,47794,19069 +83898,234,1,43143,101531 +83899,360,3,25834,1392256 +83900,234,1,86274,4575 +83901,75,5,9425,1550284 +83902,226,2,329865,1646480 +83903,311,9,263115,1828253 +83904,413,11,9555,10762 +83905,226,2,6947,1470182 +83906,273,7,4825,41747 +83907,175,5,95516,1411135 +83908,234,1,76341,20629 +83909,3,5,212996,581664 +83910,60,1,298787,1376951 +83911,234,1,47715,4415 +83912,226,2,129553,31207 +83913,317,10,84348,101542 +83914,234,1,128364,83467 +83915,5,10,29444,1173718 +83916,381,9,17577,1423836 +83917,52,10,16661,148404 +83918,363,3,9297,1462671 +83919,64,6,7249,1448082 +83920,387,10,5155,15127 +83921,387,10,106821,120464 +83922,203,1,310137,1816225 +83923,234,1,107593,96071 +83924,387,10,28712,29618 +83925,413,11,58757,12741 +83926,387,10,62694,38227 +83927,287,3,13056,1708300 +83928,53,2,15321,9006 +83929,333,2,18317,1427495 +83930,333,2,13005,10066 +83931,33,10,17015,1244637 +83932,175,5,9343,1101333 +83933,394,7,13205,1415618 +83934,160,3,755,1391697 +83935,273,7,178,37 +83936,105,7,401222,1632443 +83937,413,11,30624,38250 +83938,303,3,11351,56350 +83939,234,1,81720,6837 +83940,413,11,213681,970033 +83941,204,9,140276,41754 +83942,77,10,125705,6210 +83943,143,7,227306,95835 +83944,23,9,132363,1333981 +83945,413,11,50779,61484 +83946,52,10,50725,17052 +83947,234,1,303982,592438 +83948,176,3,9716,91074 +83949,387,10,54309,229571 +83950,53,2,96936,1385487 +83951,387,10,397837,86035 +83952,132,2,98066,1759314 +83953,148,9,601,9968 +83954,387,10,37779,66022 +83955,166,9,5,1395016 +83956,413,11,9981,2995 +83957,53,2,742,11237 +83958,387,10,540,7312 +83959,226,2,100770,1650017 +83960,5,10,49712,57767 +83961,236,8,70074,1407370 +83962,243,3,285,1336716 +83963,53,2,23966,1419796 +83964,105,7,15144,12939 +83965,3,5,38769,14648 +83966,273,7,13889,71029 +83967,413,11,92499,1294768 +83968,317,10,50123,1379959 +83969,413,11,345922,1293989 +83970,180,7,104374,1619182 +83971,317,10,24486,1167580 +83972,413,11,10626,36432 +83973,269,9,197082,13838 +83974,327,7,43727,1555496 +83975,166,9,168027,1460746 +83976,306,7,9514,1425853 +83977,333,2,2463,25243 +83978,143,7,32657,1389133 +83979,196,7,59115,1373428 +83980,204,9,197,15327 +83981,40,1,116979,1835190 +83982,132,2,298,92332 +83983,3,5,122857,935296 +83984,12,10,46169,135252 +83985,373,7,205584,1495857 +83986,269,9,1817,28636 +83987,273,7,2565,1586078 +83988,317,10,47906,21278 +83989,102,3,425774,1708032 +83990,52,10,27276,72401 +83991,387,10,310119,77162 +83992,413,11,16996,36619 +83993,317,10,82911,24803 +83994,204,9,136368,1647413 +83995,226,2,44741,1139974 +83996,234,1,286267,1040888 +83997,204,9,13346,795 +83998,53,2,9286,960600 +83999,234,1,152736,17051 +84000,286,3,13965,76201 +84001,3,5,42852,10079 +84002,234,1,106417,130459 +84003,77,10,1807,5216 +84004,413,11,8292,9772 +84005,387,10,198600,66111 +84006,3,5,82684,9341 +84007,11,6,328111,138704 +84008,234,1,12639,18579 +84009,234,1,293094,222322 +84010,317,10,37939,142462 +84011,12,10,15379,73587 +84012,160,3,59965,146143 +84013,242,9,87894,9062 +84014,3,5,23114,9080 +84015,232,10,28480,157 +84016,208,2,38154,118406 +84017,161,6,8869,1552605 +84018,3,5,26946,4083 +84019,373,7,7220,1394131 +84020,317,10,185180,108993 +84021,234,1,136786,1106201 +84022,398,9,10708,76708 +84023,182,8,57749,1411238 +84024,234,1,49834,1133963 +84025,234,1,364684,1867073 +84026,72,11,201085,1572876 +84027,413,11,32068,50976 +84028,204,9,68737,1311175 +84029,3,5,12637,8862 +84030,413,11,24348,1018091 +84031,52,10,28437,52753 +84032,317,10,53048,132812 +84033,273,7,42726,19607 +84034,328,6,26390,1395362 +84035,234,1,303296,1471090 +84036,105,7,19765,1411614 +84037,234,1,4644,41673 +84038,413,11,76642,35834 +84039,273,7,341886,1573320 +84040,52,10,199155,95922 +84041,203,1,328429,1204708 +84042,269,9,46738,1037327 +84043,235,5,329805,1424689 +84044,328,6,5413,1532212 +84045,387,10,10862,57579 +84046,387,10,9803,59338 +84047,75,5,59197,1099914 +84048,204,9,142402,1117100 +84049,413,11,8471,69929 +84050,53,2,319924,1426206 +84051,180,7,78265,7128 +84052,198,6,294272,1569332 +84053,273,7,94182,4100 +84054,87,7,109439,52161 +84055,203,1,186869,1391400 +84056,196,7,35001,1539031 +84057,273,7,13042,1571952 +84058,67,10,15653,952327 +84059,143,7,312831,1354922 +84060,52,10,362045,1447042 +84061,394,7,9543,1394129 +84062,15,6,246655,1713054 +84063,108,10,42066,1044005 +84064,169,3,2687,26988 +84065,387,10,691,10466 +84066,147,1,263115,1821873 +84067,317,10,35337,2159 +84068,349,1,9297,1462689 +84069,234,1,755,2294 +84070,413,11,29048,29538 +84071,277,7,1624,1409231 +84072,413,11,58918,1090618 +84073,387,10,47745,49064 +84074,269,9,418437,5508 +84075,387,10,138486,104405 +84076,317,10,71725,17554 +84077,219,11,5,1564233 +84078,40,1,228970,1837277 +84079,250,11,8915,1399518 +84080,317,10,390547,1598657 +84081,3,5,1907,2240 +84082,3,5,638,9352 +84083,314,2,1125,1551528 +84084,208,2,11056,1418151 +84085,387,10,13986,35771 +84086,317,10,40993,102511 +84087,262,6,198663,1350244 +84088,317,10,315872,69488 +84089,413,11,135708,148737 +84090,203,1,257088,1403930 +84091,239,5,11547,1557593 +84092,289,6,80928,598929 +84093,286,3,41903,1661902 +84094,186,6,13929,8089 +84095,203,1,263115,1551818 +84096,203,1,8204,1394760 +84097,360,9,284564,1038313 +84098,234,1,2300,23677 +84099,3,5,166,1964 +84100,180,7,45522,1297804 +84101,204,9,15414,983309 +84102,411,9,340101,1465384 +84103,66,11,15653,1767058 +84104,3,5,42288,13338 +84105,273,7,229,8619 +84106,331,3,227306,1866272 +84107,190,7,35052,1539254 +84108,387,10,81434,996539 +84109,186,6,72545,1859980 +84110,87,7,381015,1581511 +84111,387,10,99318,14677 +84112,234,1,3104,29662 +84113,236,8,13483,1402077 +84114,105,7,267310,1409894 +84115,3,5,42040,1095 +84116,183,5,384262,1805971 +84117,303,3,318922,1411672 +84118,204,9,153102,31172 +84119,411,9,163,5672 +84120,327,7,19101,1454536 +84121,317,10,61527,53359 +84122,179,2,11428,1319132 +84123,169,3,2687,26989 +84124,269,9,14411,1681250 +84125,387,10,43503,113762 +84126,234,1,350779,1489230 +84127,317,10,287903,221162 +84128,273,7,197849,1352203 +84129,415,3,25241,1765286 +84130,143,7,19719,85122 +84131,317,10,29376,148560 +84132,333,2,41283,1402545 +84133,53,2,61541,9064 +84134,77,10,37609,979467 +84135,204,9,10761,33455 +84136,3,5,30527,90690 +84137,181,7,173153,1535541 +84138,204,9,273404,1445362 +84139,387,10,84508,1081305 +84140,317,10,14923,1386369 +84141,234,1,42726,16862 +84142,53,2,333352,959982 +84143,398,9,7220,1370800 +84144,387,10,13777,75286 +84145,269,9,1819,19284 +84146,179,2,22279,26146 +84147,398,9,19901,1391713 +84148,3,5,10567,59747 +84149,213,10,53231,99379 +84150,196,7,180299,1352422 +84151,234,1,32284,1031288 +84152,395,3,10948,143786 +84153,387,10,97024,1012037 +84154,317,10,63578,172 +84155,273,7,50647,17748 +84156,317,10,267931,1107724 +84157,387,10,63825,78747 +84158,234,1,36334,3632 +84159,204,9,29355,137191 +84160,204,9,315837,132604 +84161,3,5,12,12912 +84162,333,2,26946,1467010 +84163,204,9,109122,28236 +84164,269,9,58060,1576201 +84165,37,3,98566,1456696 +84166,269,9,93492,29502 +84167,105,7,96936,1325093 +84168,226,2,60285,1027801 +84169,3,5,370755,4434 +84170,373,7,9426,1427554 +84171,268,7,14254,83083 +84172,387,10,954,2260 +84173,262,6,27814,1341446 +84174,387,10,93858,150514 +84175,3,5,11321,63422 +84176,3,5,11895,41151 +84177,317,10,44773,543781 +84178,413,11,72984,85514 +84179,105,7,329440,59811 +84180,317,10,69075,16830 +84181,234,1,109477,1046587 +84182,60,1,105059,1415420 +84183,148,9,227262,16711 +84184,148,9,345915,959111 +84185,328,6,13336,1335422 +84186,105,7,103201,50715 +84187,360,3,82655,1071413 +84188,203,1,26510,1407697 +84189,196,7,384737,1337668 +84190,317,10,215881,1200486 +84191,72,11,397837,1818605 +84192,190,7,1428,1563899 +84193,3,5,238589,37710 +84194,226,2,1902,1266049 +84195,204,9,227306,1391707 +84196,387,10,44545,1163670 +84197,204,9,48231,1012907 +84198,204,9,345775,142070 +84199,234,1,28061,37197 +84200,250,11,244786,1547661 +84201,232,10,31417,20789 +84202,413,11,70086,1570578 +84203,234,1,82,638 +84204,234,1,61578,38883 +84205,53,2,2778,1005624 +84206,413,11,395982,1476143 +84207,120,6,297762,1903936 +84208,413,11,67328,21119 +84209,234,1,157384,1038659 +84210,234,1,29352,41147 +84211,387,10,95874,70981 +84212,317,10,46797,29483 +84213,234,1,137528,1737690 +84214,333,2,315664,1616064 +84215,317,10,28031,8256 +84216,317,10,405473,1647425 +84217,158,2,277355,1495874 +84218,269,9,72984,25748 +84219,387,10,31522,3776 +84220,20,2,8329,1637496 +84221,387,10,13616,225935 +84222,234,1,14698,10601 +84223,317,10,108665,70675 +84224,75,5,313922,1616452 +84225,203,1,33586,1778195 +84226,387,10,11133,10056 +84227,387,10,1956,1893 +84228,105,7,443007,1763905 +84229,273,7,239562,19155 +84230,204,9,343934,1553951 +84231,234,1,17074,34928 +84232,289,6,72105,1452992 +84233,273,7,140648,1377621 +84234,394,7,287,16736 +84235,373,7,2300,1303184 +84236,387,10,26283,67686 +84237,204,9,49521,1182907 +84238,333,2,107811,1460818 +84239,200,3,302828,1573931 +84240,127,3,1374,16643 +84241,373,7,15476,80822 +84242,387,10,74924,103339 +84243,196,7,109439,1360098 +84244,204,9,33273,1074401 +84245,273,7,256930,1537405 +84246,208,2,293167,15017 +84247,204,9,83430,1051755 +84248,402,11,272693,1709328 +84249,262,6,181533,1400560 +84250,234,1,72900,212677 +84251,317,10,141733,63799 +84252,269,9,265180,1414822 +84253,234,1,24062,3663 +84254,208,2,251555,982973 +84255,234,1,70670,77965 +84256,175,5,17771,1411293 +84257,413,11,140032,30725 +84258,413,11,341007,1706354 +84259,269,9,340881,1098826 +84260,317,10,14217,112858 +84261,3,5,20645,70130 +84262,182,8,10916,1402121 +84263,234,1,132961,9789 +84264,387,10,79372,89045 +84265,317,10,78507,68 +84266,198,6,9785,1575876 +84267,269,9,210092,12705 +84268,286,3,114444,1115621 +84269,317,10,262945,32518 +84270,317,10,270470,31898 +84271,413,11,413998,1010744 +84272,234,1,46278,65843 +84273,3,5,19995,18265 +84274,413,11,329440,43425 +84275,148,9,190955,5391 +84276,3,5,11101,68026 +84277,286,3,31161,545765 +84278,333,2,49689,1594801 +84279,387,10,120977,1367611 +84280,413,11,82696,9647 +84281,234,1,84617,100888 +84282,234,1,9779,29009 +84283,301,5,28739,1407895 +84284,141,7,14615,33367 +84285,273,7,11248,40438 +84286,333,2,1480,1587738 +84287,317,10,51364,13953 +84288,415,3,71329,1350871 +84289,3,5,11012,10717 +84290,373,7,7445,9619 +84291,317,10,151310,39760 +84292,141,7,294272,68016 +84293,317,10,37038,1170038 +84294,234,1,29739,69801 +84295,3,5,84708,29635 +84296,387,10,48243,146117 +84297,413,11,73247,16157 +84298,160,3,20312,1424457 +84299,158,2,85414,1317353 +84300,20,2,1586,1611787 +84301,203,1,2503,1390388 +84302,387,10,33495,55912 +84303,317,10,79329,586521 +84304,317,10,103236,81986 +84305,387,10,26958,1174323 +84306,262,6,413547,1718142 +84307,53,2,1717,11714 +84308,3,5,19719,85126 +84309,87,7,8247,49912 +84310,327,7,10330,91093 +84311,5,10,389614,107643 +84312,234,1,63105,63937 +84313,204,9,43441,3255 +84314,77,10,1773,19019 +84315,317,10,83788,1098039 +84316,273,7,19140,5467 +84317,234,1,72638,67426 +84318,67,10,8247,1701152 +84319,387,10,63260,99511 +84320,148,9,53128,1716101 +84321,387,10,1976,1221528 +84322,328,6,154972,229814 +84323,234,1,76681,30689 +84324,333,2,1428,1070123 +84325,3,5,24363,1044 +84326,234,1,109453,576117 +84327,263,11,376394,1559478 +84328,387,10,12650,21034 +84329,333,2,435,91054 +84330,234,1,29611,68381 +84331,317,10,169794,1152007 +84332,204,9,228205,1334481 +84333,7,3,8470,1598752 +84334,317,10,199647,1179824 +84335,3,5,426230,148739 +84336,234,1,68720,67349 +84337,169,3,9286,1441356 +84338,317,10,130881,1158292 +84339,289,6,67130,5692 +84340,360,9,348631,1865195 +84341,317,10,139176,35501 +84342,213,10,211059,1194927 +84343,60,1,35651,1590611 +84344,317,10,68976,14857 +84345,273,7,11959,8933 +84346,226,2,11517,1551340 +84347,413,11,47412,81891 +84348,262,6,242310,1367134 +84349,169,3,2084,34554 +84350,234,1,18665,548474 +84351,3,5,10488,7262 +84352,388,9,2567,1739539 +84353,234,1,51276,143671 +84354,234,1,13484,54710 +84355,291,6,336050,1568290 +84356,269,9,338518,1402882 +84357,66,11,15653,1633649 +84358,53,2,82368,1815550 +84359,413,11,11516,1663 +84360,3,5,30547,19102 +84361,186,6,15838,1447333 +84362,273,7,371181,1343708 +84363,413,11,9613,310 +84364,234,1,14505,21348 +84365,387,10,5155,41635 +84366,22,9,384737,1825453 +84367,21,3,9982,11 +84368,234,1,57311,225896 +84369,394,7,48231,68748 +84370,234,1,6069,20629 +84371,53,2,17622,39670 +84372,317,10,124821,122458 +84373,413,11,10915,4670 +84374,238,7,13380,1445980 +84375,46,5,21828,88118 +84376,77,10,9816,56511 +84377,175,5,413762,1811613 +84378,75,5,1480,1091872 +84379,5,10,206563,1372464 +84380,15,6,99861,1417983 +84381,3,5,150712,9057 +84382,160,3,242224,1428875 +84383,53,2,300667,6506 +84384,234,1,3405,31890 +84385,148,9,59861,4032 +84386,234,1,48791,70636 +84387,234,1,44773,543780 +84388,346,3,241239,1468094 +84389,273,7,10645,9245 +84390,333,2,742,11238 +84391,196,7,294272,1590402 +84392,3,5,38021,32506 +84393,53,2,27973,119399 +84394,234,1,31548,2917 +84395,360,9,271404,1764796 +84396,333,2,73430,4352 +84397,357,3,435,1418464 +84398,105,7,264729,1439845 +84399,3,5,188826,48311 +84400,3,5,4254,35738 +84401,234,1,49950,143079 +84402,399,9,29233,573541 +84403,317,10,51902,53859 +84404,387,10,140554,28596 +84405,108,10,34106,144060 +84406,45,9,31005,1355529 +84407,317,10,308557,1395138 +84408,333,2,198663,1418348 +84409,387,10,9602,57327 +84410,234,1,58159,11434 +84411,234,1,17796,18355 +84412,413,11,283711,74035 +84413,84,7,7326,1372880 +84414,387,10,361571,1515361 +84415,234,1,14138,81328 +84416,122,8,14,1550617 +84417,196,7,273481,1428595 +84418,3,5,43670,13931 +84419,273,7,298865,71145 +84420,234,1,66702,993025 +84421,413,11,12479,10419 +84422,87,7,9820,1553251 +84423,244,3,2567,34338 +84424,64,6,11370,142554 +84425,37,3,35,1447549 +84426,204,9,150712,9062 +84427,53,2,316154,1338157 +84428,287,3,206647,23774 +84429,234,1,70046,104019 +84430,148,9,193177,7651 +84431,234,1,155765,1067794 +84432,317,10,142012,98456 +84433,234,1,10565,66046 +84434,373,7,13549,1338830 +84435,333,2,17971,10796 +84436,298,5,2454,1404739 +84437,317,10,226672,76730 +84438,53,2,39907,1647935 +84439,22,9,7220,1391122 +84440,250,11,1125,1551532 +84441,394,7,2978,1864229 +84442,234,1,3595,6159 +84443,317,10,96333,6360 +84444,262,6,263115,1078710 +84445,234,1,249969,21305 +84446,413,11,13653,46861 +84447,220,7,53949,30268 +84448,413,11,80775,2920 +84449,3,5,43143,133868 +84450,387,10,177572,78600 +84451,413,11,2669,12685 +84452,262,6,70074,1399973 +84453,234,1,30126,80570 +84454,234,1,27573,17167 +84455,413,11,12573,1224 +84456,333,2,222517,1410031 +84457,64,6,45562,999569 +84458,197,5,10733,1534136 +84459,110,1,9352,57407 +84460,269,9,409,5491 +84461,413,11,89591,68804 +84462,413,11,693,10393 +84463,53,2,39436,1693774 +84464,286,3,13042,7984 +84465,204,9,99567,37468 +84466,262,6,337339,1725774 +84467,204,9,18447,17763 +84468,306,7,36658,1378226 +84469,234,1,25695,131397 +84470,286,3,9404,46325 +84471,289,6,149870,1456617 +84472,67,10,227975,1775629 +84473,317,10,14052,68034 +84474,301,5,13483,1402075 +84475,234,1,109329,5446 +84476,413,11,453053,61442 +84477,3,5,42533,1308452 +84478,413,11,107250,71006 +84479,148,9,3023,12348 +84480,232,10,34127,150628 +84481,413,11,333385,1619912 +84482,387,10,43499,1172557 +84483,327,7,28,1059619 +84484,317,10,20718,229181 +84485,160,3,76349,18897 +84486,5,10,20301,85904 +84487,333,2,168676,1369373 +84488,273,7,7551,5553 +84489,143,7,159211,1438451 +84490,3,5,31993,3148 +84491,328,6,251,1395262 +84492,40,1,274857,1528429 +84493,273,7,54227,226002 +84494,317,10,178341,374004 +84495,244,3,664,9993 +84496,204,9,180305,1436624 +84497,352,3,8915,1337474 +84498,269,9,206647,4248 +84499,234,1,79382,25645 +84500,387,10,10193,16961 +84501,160,3,57749,1411236 +84502,394,7,744,1378168 +84503,219,11,34723,1429549 +84504,181,7,101929,1540426 +84505,273,7,81409,29389 +84506,273,7,395992,1077404 +84507,75,5,525,122132 +84508,234,1,86040,39012 +84509,387,10,20983,86908 +84510,182,8,273404,1445374 +84511,234,1,374021,1118682 +84512,190,7,857,75380 +84513,3,5,87516,54926 +84514,105,7,154972,43638 +84515,12,10,10870,550038 +84516,291,6,333484,1429245 +84517,273,7,43277,100579 +84518,3,5,11380,59528 +84519,273,7,60994,23486 +84520,386,5,418437,1123424 +84521,234,1,47647,64901 +84522,321,11,10379,1211632 +84523,317,10,63773,96704 +84524,387,10,11329,21808 +84525,387,10,67216,548333 +84526,387,10,36113,15156 +84527,387,10,14435,966099 +84528,3,5,118381,1633 +84529,105,7,8080,6377 +84530,413,11,108634,930422 +84531,32,8,49524,1455461 +84532,373,7,246655,113073 +84533,234,1,300487,1380783 +84534,12,10,14609,87171 +84535,317,10,19936,212671 +84536,3,5,4993,1091872 +84537,182,8,40807,1378717 +84538,234,1,75203,84981 +84539,333,2,19719,85107 +84540,200,3,109439,1407019 +84541,286,3,101904,1006957 +84542,413,11,211579,1542408 +84543,273,7,81522,29877 +84544,226,2,10145,1425810 +84545,387,10,4257,12991 +84546,3,5,50126,112370 +84547,413,11,13073,1178186 +84548,3,5,17350,51509 +84549,234,1,158739,1075786 +84550,3,5,11000,4185 +84551,413,11,46857,137611 +84552,317,10,84636,26151 +84553,52,10,26283,87393 +84554,387,10,320910,1118774 +84555,173,7,77859,1842937 +84556,143,7,1381,1340345 +84557,169,3,59115,74783 +84558,377,3,9882,1537448 +84559,273,7,305127,92743 +84560,234,1,10154,64030 +84561,204,9,228970,1287615 +84562,3,5,118283,2760 +84563,3,5,277355,68441 +84564,291,6,5413,1407859 +84565,53,2,22007,1323082 +84566,412,9,10865,1552864 +84567,204,9,17622,1320210 +84568,317,10,192210,228041 +84569,317,10,45725,95745 +84570,174,6,177677,1545929 +84571,234,1,36236,5970 +84572,190,7,219466,1640815 +84573,301,5,2662,1493887 +84574,317,10,17175,82169 +84575,234,1,300487,1256932 +84576,269,9,226140,1188587 +84577,67,10,15213,1462625 +84578,398,9,4248,1171245 +84579,234,1,286940,1396317 +84580,204,9,49418,1561901 +84581,60,1,47574,11266 +84582,234,1,287483,235138 +84583,289,6,10193,8013 +84584,234,1,10373,65304 +84585,3,5,261249,29811 +84586,148,9,9945,957292 +84587,273,7,10950,11098 +84588,155,3,378441,1797513 +84589,226,2,4286,42027 +84590,175,5,86829,1462853 +84591,103,6,414910,1765662 +84592,148,9,11185,18173 +84593,413,11,6951,20924 +84594,97,7,12103,548435 +84595,234,1,204384,1186770 +84596,387,10,11502,3556 +84597,97,7,267579,1583166 +84598,12,10,26505,59 +84599,180,7,11502,1362141 +84600,333,2,315837,1797244 +84601,413,11,32044,16593 +84602,5,10,9314,15870 +84603,3,5,238,3097 +84604,387,10,5559,16377 +84605,148,9,16638,989154 +84606,402,11,20287,2484 +84607,66,11,511,1609614 +84608,317,10,341491,1301957 +84609,3,5,418990,1630588 +84610,387,10,30127,135754 +84611,413,11,36612,29997 +84612,180,7,9514,1642570 +84613,53,2,95504,4127 +84614,317,10,21741,356422 +84615,317,10,74645,99437 +84616,52,10,12273,85801 +84617,232,10,159727,1141550 +84618,135,3,10590,1566251 +84619,317,10,310133,101814 +84620,317,10,41115,73748 +84621,317,10,126323,1311747 +84622,53,2,433244,1574307 +84623,83,2,302042,132721 +84624,317,10,368342,998512 +84625,127,3,384737,1825887 +84626,189,3,10733,1397855 +84627,413,11,185111,1126411 +84628,387,10,43514,153245 +84629,317,10,255496,1108581 +84630,317,10,110972,122583 +84631,105,7,378018,1519919 +84632,234,1,346672,402272 +84633,413,11,112961,721 +84634,53,2,71668,1422996 +84635,269,9,241254,935298 +84636,413,11,334557,1194706 +84637,3,5,27380,16189 +84638,387,10,63260,49892 +84639,273,7,5289,7020 +84640,234,1,242097,41720 +84641,53,2,8617,1317898 +84642,148,9,28,8339 +84643,333,2,580,16209 +84644,72,11,159667,1828369 +84645,333,2,353686,1397879 +84646,57,2,1966,1427499 +84647,415,3,210079,1337981 +84648,3,5,14931,16300 +84649,273,7,277968,1275130 +84650,234,1,72611,270330 +84651,72,11,435,1242882 +84652,53,2,19957,20138 +84653,289,6,109451,1450992 +84654,394,7,19995,1376902 +84655,182,8,69668,1419268 +84656,182,8,24624,1466709 +84657,234,1,49788,54441 +84658,269,9,18843,989892 +84659,234,1,142161,89889 +84660,333,2,19912,578722 +84661,333,2,11622,1478908 +84662,204,9,43117,369 +84663,234,1,14752,78916 +84664,317,10,391642,1036343 +84665,245,3,181533,1336896 +84666,317,10,2291,3431 +84667,385,6,13616,1533526 +84668,413,11,11496,5821 +84669,333,2,38404,120331 +84670,75,5,15092,20193 +84671,148,9,8619,6880 +84672,234,1,51890,107941 +84673,317,10,270383,981823 +84674,196,7,169,10630 +84675,210,9,227975,1775651 +84676,234,1,870,3317 +84677,52,10,48412,140458 +84678,15,6,10320,1543218 +84679,52,10,122019,30302 +84680,35,10,283995,145170 +84681,234,1,55836,10346 +84682,196,7,201085,1418373 +84683,53,2,1914,19919 +84684,317,10,71672,126882 +84685,273,7,4806,1213 +84686,413,11,13562,29636 +84687,175,5,101998,1183452 +84688,77,10,259,3583 +84689,105,7,359204,1508027 +84690,317,10,188161,1224494 +84691,203,1,36245,1656603 +84692,249,7,25376,1436795 +84693,273,7,3587,9251 +84694,148,9,14765,1021801 +84695,317,10,51371,144015 +84696,269,9,88005,41082 +84697,234,1,10834,2303 +84698,53,2,120977,119399 +84699,204,9,126250,1578404 +84700,317,10,296491,560293 +84701,277,3,7454,1407663 +84702,333,2,353728,1085283 +84703,289,6,9425,1566834 +84704,148,9,122,1373 +84705,289,6,291270,1453524 +84706,3,5,55192,552001 +84707,387,10,18783,65852 +84708,413,11,120478,1072870 +84709,75,5,195269,579462 +84710,3,5,31044,6847 +84711,148,9,3057,1539789 +84712,234,1,381525,1134670 +84713,75,5,10529,1567309 +84714,12,10,1924,20007 +84715,234,1,41357,8482 +84716,413,11,11812,10548 +84717,60,1,398633,1623933 +84718,99,3,954,47846 +84719,5,10,10518,348 +84720,234,1,42225,24281 +84721,324,3,966,1427699 +84722,317,10,53419,13848 +84723,394,7,12783,1409764 +84724,387,10,24254,91472 +84725,53,2,17669,113894 +84726,175,5,240832,35918 +84727,3,5,3051,31050 +84728,234,1,334299,65569 +84729,5,10,34615,123828 +84730,204,9,13836,7717 +84731,376,10,42218,101225 +84732,3,5,1164,275 +84733,317,10,46943,137892 +84734,413,11,72766,1552358 +84735,77,10,195,2430 +84736,204,9,293167,1271755 +84737,327,7,270383,154804 +84738,3,5,9272,23969 +84739,387,10,407448,51686 +84740,273,7,392271,87550 +84741,317,10,43026,73153 +84742,196,7,79935,1447087 +84743,12,10,77012,1216549 +84744,3,5,3574,32996 +84745,387,10,68822,553897 +84746,234,1,227257,203310 +84747,273,7,58428,1015883 +84748,301,5,250066,1393862 +84749,77,10,14147,56826 +84750,234,1,2892,28741 +84751,317,10,38920,121634 +84752,387,10,94248,1267137 +84753,234,1,312940,1401889 +84754,413,11,43277,1167084 +84755,413,11,28323,17886 +84756,286,3,18514,1108652 +84757,64,6,76341,1451274 +84758,413,11,367412,1156888 +84759,234,1,20221,590990 +84760,204,9,46830,102585 +84761,412,9,755,1851724 +84762,234,1,66082,544583 +84763,387,10,343702,21769 +84764,323,10,27221,6818 +84765,287,3,25376,1460052 +84766,85,10,16229,224682 +84767,289,6,22752,1060535 +84768,53,2,329010,983884 +84769,3,5,47886,100907 +84770,234,1,212063,74296 +84771,180,7,9946,1671650 +84772,105,7,25499,593026 +84773,287,3,14145,1416975 +84774,304,10,3309,1213157 +84775,3,5,253286,1293653 +84776,269,9,11058,20214 +84777,3,5,27480,67113 +84778,127,3,9507,1007395 +84779,3,5,26503,53196 +84780,234,1,320453,1301836 +84781,317,10,405050,1414901 +84782,3,5,3053,666 +84783,399,9,10198,938099 +84784,5,10,258480,12491 +84785,317,10,18758,83601 +84786,234,1,31718,94011 +84787,77,10,9904,21713 +84788,413,11,83802,66216 +84789,196,7,11351,1415105 +84790,180,7,224,1610114 +84791,175,5,202337,1404921 +84792,269,9,1375,16517 +84793,5,10,44099,130219 +84794,234,1,73527,64877 +84795,273,7,2525,25800 +84796,53,2,714,10714 +84797,3,5,103161,1073579 +84798,75,5,188927,1638552 +84799,360,3,6557,1395360 +84800,413,11,47886,100686 +84801,209,7,32068,877 +84802,45,9,82990,1547201 +84803,143,7,14019,76267 +84804,234,1,16436,113500 +84805,3,5,33224,7648 +84806,105,7,98066,1999 +84807,413,11,1673,18578 +84808,317,10,315057,1113222 +84809,413,11,46326,37719 +84810,413,11,459295,22301 +84811,273,7,72207,1589 +84812,208,2,287628,1707985 +84813,234,1,25597,94003 +84814,317,10,313074,1402640 +84815,286,3,48778,1112003 +84816,317,10,359105,893462 +84817,196,7,8247,113054 +84818,317,10,21780,1042650 +84819,387,10,17209,81460 +84820,83,2,1624,957202 +84821,226,2,330459,1430467 +84822,187,11,55420,1400099 +84823,387,10,46189,20097 +84824,148,9,301804,1209400 +84825,333,2,30374,592681 +84826,15,6,11024,1673808 +84827,273,7,84284,106078 +84828,270,9,1271,1394745 +84829,269,9,19995,1032536 +84830,234,1,105703,64992 +84831,127,3,279096,1035349 +84832,387,10,12,7 +84833,269,9,13437,10857 +84834,75,5,70667,1448324 +84835,273,7,2280,117 +84836,317,10,89591,261347 +84837,269,9,38322,111052 +84838,277,3,107073,1481485 +84839,175,5,19101,1392245 +84840,387,10,7551,1706 +84841,204,9,330459,1390350 +84842,387,10,7980,108 +84843,387,10,5511,43810 +84844,317,10,24837,97140 +84845,317,10,78174,583272 +84846,204,9,13616,1586323 +84847,302,9,6947,1573072 +84848,234,1,189820,1037658 +84849,333,2,14979,1458993 +84850,413,11,131932,1482617 +84851,289,6,37534,1463785 +84852,204,9,32921,1130432 +84853,333,2,75564,1204523 +84854,234,1,364324,92015 +84855,105,7,402446,1315942 +84856,234,1,53860,10790 +84857,47,8,3172,1342254 +84858,287,3,6171,1407805 +84859,343,3,66756,57609 +84860,413,11,3784,14340 +84861,3,5,36253,71397 +84862,158,2,277355,1495873 +84863,234,1,155605,76978 +84864,398,9,1624,65824 +84865,387,10,11975,8643 +84866,273,7,9736,63901 +84867,75,5,74,1395463 +84868,387,10,156988,92928 +84869,148,9,169869,11444 +84870,387,10,415072,161984 +84871,182,8,270851,1273769 +84872,317,10,7459,9339 +84873,204,9,332662,1570520 +84874,3,5,45649,133398 +84875,234,1,20107,85818 +84876,164,3,121598,1880932 +84877,158,2,16997,1583176 +84878,373,7,359245,1638340 +84879,317,10,64454,37313 +84880,234,1,327655,82714 +84881,105,7,381518,1889 +84882,387,10,16182,66202 +84883,387,10,31671,131717 +84884,125,2,283995,155416 +84885,187,7,413452,1523025 +84886,3,5,106358,30192 +84887,413,11,9746,3661 +84888,160,3,16432,1409870 +84889,234,1,308032,229482 +84890,234,1,46007,134430 +84891,357,3,435,1418467 +84892,301,5,322443,1399565 +84893,262,6,5516,1401968 +84894,234,1,1578,1032 +84895,3,5,13333,1474505 +84896,277,3,104556,20148 +84897,234,1,27739,98842 +84898,105,7,6964,217371 +84899,204,9,11618,8525 +84900,234,1,14063,86378 +84901,398,9,210940,1767430 +84902,53,2,43522,8717 +84903,209,7,4806,1264811 +84904,75,5,399790,1425552 +84905,413,11,21711,3985 +84906,234,1,57737,80948 +84907,234,1,159005,1140441 +84908,317,10,86820,39104 +84909,143,7,259,3590 +84910,3,5,23730,56264 +84911,234,1,1382,16860 +84912,273,7,43241,88643 +84913,317,10,42448,119788 +84914,60,1,43470,80568 +84915,317,10,51120,14687 +84916,413,11,190853,1143442 +84917,394,7,197,14765 +84918,203,1,251227,1286590 +84919,148,9,10973,1328720 +84920,287,3,27814,1856489 +84921,377,3,2567,1569561 +84922,182,8,47540,1011991 +84923,74,5,3597,1790546 +84924,403,10,118794,1068750 +84925,413,11,29286,2920 +84926,166,9,2503,1395677 +84927,234,1,218582,34751 +84928,387,10,12780,553866 +84929,203,1,38356,1400738 +84930,245,3,18763,62414 +84931,74,5,284052,231593 +84932,182,8,4248,1667265 +84933,3,5,288952,1108652 +84934,234,1,274990,11916 +84935,273,7,76333,1330882 +84936,413,11,227306,15841 +84937,105,7,163791,1357191 +84938,286,3,33146,110195 +84939,198,6,373546,1869448 +84940,5,10,78256,15379 +84941,105,7,92950,1530003 +84942,262,6,19995,1206410 +84943,314,2,8247,1423203 +84944,373,7,16996,158916 +84945,196,7,169,1376514 +84946,53,2,193893,41084 +84947,3,5,12236,56005 +84948,52,10,88953,1537384 +84949,317,10,84823,53914 +84950,234,1,184363,95111 +84951,53,2,274483,1161281 +84952,5,10,356296,932534 +84953,196,7,14,1334485 +84954,234,1,56391,550480 +84955,234,1,10041,62342 +84956,3,5,25142,68525 +84957,387,10,73067,567971 +84958,220,7,6591,45670 +84959,53,2,259694,971528 +84960,135,3,2105,1552173 +84961,413,11,43089,1185190 +84962,289,6,2454,1452991 +84963,34,8,9352,1586390 +84964,301,5,445993,1808035 +84965,419,10,33570,110925 +84966,286,3,349028,1491144 +84967,3,5,11589,11968 +84968,273,7,6391,25688 +84969,273,7,10780,37 +84970,234,1,204040,74878 +84971,387,10,59861,31 +84972,269,9,4133,34858 +84973,148,9,3423,32320 +84974,317,10,319910,1450654 +84975,317,10,58515,227912 +84976,160,3,241254,1404193 +84977,3,5,24750,30605 +84978,387,10,68050,939228 +84979,317,10,65002,58109 +84980,413,11,108345,102784 +84981,413,11,97614,968605 +84982,148,9,1833,12568 +84983,317,10,337101,1106528 +84984,387,10,12311,72067 +84985,273,7,71701,30137 +84986,234,1,13163,68573 +84987,413,11,1838,19349 +84988,413,11,423078,1700419 +84989,97,7,19765,1602167 +84990,97,7,251,1341855 +84991,52,10,58411,8858 +84992,3,5,110608,1713681 +84993,317,10,229296,1280700 +84994,158,2,127585,1384392 +84995,52,10,20174,102429 +84996,317,10,21141,56506 +84997,286,3,1963,16276 +84998,166,9,11697,1531398 +84999,387,10,46059,348 +85000,75,5,280092,1657236 +85001,234,1,287603,1142319 +85002,289,6,132714,564040 +85003,387,10,11610,1243 +85004,333,2,9297,14192 +85005,12,10,9406,4610 +85006,286,3,231762,1267017 +85007,234,1,16866,968303 +85008,234,1,11302,1243 +85009,244,3,954,1742063 +85010,317,10,416256,1680196 +85011,317,10,47540,139080 +85012,387,10,60071,56965 +85013,234,1,47161,1327119 +85014,317,10,335340,24298 +85015,219,11,74777,583479 +85016,182,8,52034,58608 +85017,234,1,329724,55806 +85018,234,1,20003,10601 +85019,34,8,293167,1411238 +85020,234,1,287483,1354319 +85021,333,2,105059,29801 +85022,53,2,8816,1568635 +85023,333,2,3024,29653 +85024,234,1,97206,131331 +85025,209,7,17332,1536029 +85026,269,9,210079,1337979 +85027,182,8,274857,1373728 +85028,413,11,9475,2241 +85029,97,7,283445,1548100 +85030,113,9,11338,15410 +85031,234,1,20625,130087 +85032,273,7,77964,3249 +85033,53,2,42787,4350 +85034,234,1,290379,84034 +85035,413,11,169343,983938 +85036,317,10,129359,1089147 +85037,53,2,203351,1189276 +85038,234,1,39048,114337 +85039,105,7,189197,17767 +85040,105,7,145813,551674 +85041,234,1,215741,31894 +85042,5,10,76202,20306 +85043,289,6,22752,1060531 +85044,3,5,203351,79392 +85045,209,7,239566,63906 +85046,204,9,10590,1565936 +85047,75,5,70981,1390372 +85048,413,11,47878,4980 +85049,286,3,278621,40145 +85050,204,9,240745,1335210 +85051,105,7,310888,1341802 +85052,169,3,11137,1525578 +85053,113,9,245692,1574447 +85054,234,1,157152,1138364 +85055,179,2,315664,1324095 +85056,3,5,54796,151127 +85057,234,1,72898,3776 +85058,273,7,11206,1938 +85059,317,10,254193,1085009 +85060,5,10,118953,13347 +85061,25,2,339527,95142 +85062,59,3,9514,1642571 +85063,371,3,194853,1175186 +85064,387,10,41787,96281 +85065,234,1,44006,130023 +85066,415,3,25673,10521 +85067,413,11,43821,19334 +85068,52,10,88518,277604 +85069,327,7,220820,1387775 +85070,97,7,256740,1338134 +85071,204,9,86825,21971 +85072,317,10,261581,52849 +85073,235,5,76170,75553 +85074,387,10,77887,958055 +85075,317,10,185564,147712 +85076,105,7,142391,1322109 +85077,346,3,251,1453321 +85078,317,10,270650,1359976 +85079,52,10,32080,1233541 +85080,234,1,223497,108987 +85081,413,11,86266,1542408 +85082,234,1,172868,1063201 +85083,317,10,116488,150150 +85084,317,10,90563,55451 +85085,287,3,27346,11161 +85086,360,3,1966,1398085 +85087,3,5,31682,117001 +85088,317,10,27265,13 +85089,234,1,10590,2460 +85090,234,1,346838,115666 +85091,52,10,11232,47283 +85092,368,7,186869,1862960 +85093,5,10,39045,67372 +85094,52,10,120615,1824617 +85095,226,2,70667,1448306 +85096,387,10,6951,45114 +85097,317,10,43083,129232 +85098,303,3,56937,1412134 +85099,3,5,257081,14648 +85100,53,2,425774,1708046 +85101,239,5,6973,1573081 +85102,13,3,81003,1460514 +85103,269,9,382589,1030407 +85104,175,5,24469,1567703 +85105,234,1,9504,15890 +85106,317,10,54804,189922 +85107,387,10,102632,1031475 +85108,289,6,378236,1840336 +85109,273,7,5,3116 +85110,317,10,392882,1714481 +85111,413,11,39356,15581 +85112,3,5,39875,11847 +85113,273,7,73027,30137 +85114,317,10,46326,25162 +85115,105,7,107976,80981 +85116,245,3,201085,1572864 +85117,204,9,9948,60732 +85118,160,3,127521,1346949 +85119,333,2,284052,1411323 +85120,198,6,177677,1531514 +85121,387,10,51426,20121 +85122,383,3,69,1483 +85123,234,1,22408,71788 +85124,398,9,157424,1334180 +85125,269,9,84333,1588422 +85126,234,1,29467,103910 +85127,413,11,28974,13848 +85128,53,2,409,543194 +85129,226,2,284564,1457694 +85130,273,7,29398,52593 +85131,413,11,13477,68636 +85132,64,6,310133,1524559 +85133,143,7,436339,1281664 +85134,3,5,28510,37710 +85135,5,10,65134,573548 +85136,413,11,49689,1026685 +85137,196,7,83,1433720 +85138,196,7,8869,1390525 +85139,317,10,347096,1085735 +85140,148,9,29896,1518455 +85141,387,10,43241,101225 +85142,113,9,14126,1346937 +85143,262,6,330459,1706712 +85144,286,3,270469,238619 +85145,327,7,37628,1056686 +85146,268,7,263115,1272966 +85147,83,2,1647,1517909 +85148,209,7,296524,1417841 +85149,349,1,10020,1447483 +85150,3,5,12767,6117 +85151,234,1,41590,53387 +85152,234,1,10527,18863 +85153,3,5,51044,870 +85154,3,5,31542,27213 +85155,317,10,164331,1144828 +85156,160,3,47386,138798 +85157,234,1,314283,31155 +85158,53,2,31945,1542823 +85159,105,7,9314,586781 +85160,317,10,390409,1480225 +85161,413,11,58251,227564 +85162,3,5,922,1632 +85163,234,1,27138,40549 +85164,269,9,19200,23966 +85165,242,9,14430,1521710 +85166,180,7,25385,1582753 +85167,268,7,10344,957581 +85168,234,1,82622,94264 +85169,52,10,204839,167999 +85170,143,7,662,9959 +85171,148,9,245692,1542297 +85172,269,9,965,4349 +85173,52,10,117531,4341 +85174,303,3,436,5878 +85175,52,10,9325,148822 +85176,52,10,363841,1522267 +85177,53,2,17590,18755 +85178,3,5,12516,70130 +85179,413,11,4024,44018 +85180,387,10,332168,1503547 +85181,148,9,332411,1579378 +85182,108,10,289,4131 +85183,270,9,1271,1391760 +85184,234,1,75880,30008 +85185,108,10,178587,5736 +85186,140,9,181533,1357046 +85187,232,10,140825,3573 +85188,317,10,39039,121861 +85189,317,10,30198,57302 +85190,234,1,72711,122449 +85191,387,10,263472,16847 +85192,75,5,4982,957361 +85193,234,1,106848,449908 +85194,234,1,220669,236543 +85195,328,6,10204,1415976 +85196,105,7,359245,1640773 +85197,333,2,9358,1441272 +85198,387,10,14811,955413 +85199,275,9,378236,14819 +85200,234,1,61904,563888 +85201,413,11,19757,1521327 +85202,234,1,82655,928453 +85203,113,9,4248,1667232 +85204,333,2,9882,1521518 +85205,196,7,14181,16994 +85206,53,2,28730,4061 +85207,273,7,252845,66675 +85208,317,10,109466,1046554 +85209,67,10,31473,90874 +85210,97,7,332567,1360101 +85211,317,10,16186,80602 +85212,166,9,1966,1398081 +85213,175,5,5991,1371238 +85214,317,10,19995,2710 +85215,5,10,9475,57640 +85216,60,1,81110,1535456 +85217,105,7,430250,1722727 +85218,333,2,334074,1509637 +85219,333,2,4592,1457696 +85220,204,9,104776,1530300 +85221,273,7,69605,30104 +85222,373,7,2107,3105 +85223,3,5,296136,1371159 +85224,105,7,29805,57892 +85225,3,5,4762,5241 +85226,398,9,284053,1391713 +85227,333,2,10491,1433227 +85228,289,6,302026,1570587 +85229,234,1,19103,11181 +85230,204,9,178809,1204189 +85231,169,3,613,1425856 +85232,286,3,77117,1294128 +85233,132,2,76203,1414984 +85234,103,6,154972,1174526 +85235,60,1,96702,1312999 +85236,105,7,109614,116085 +85237,53,2,7863,1403110 +85238,234,1,268380,1317160 +85239,303,3,634,1234395 +85240,52,10,13436,1354731 +85241,204,9,81475,1195942 +85242,234,1,18387,8328 +85243,76,2,109424,1430408 +85244,25,2,321303,1595710 +85245,148,9,15440,1336926 +85246,387,10,133575,110562 +85247,277,3,166886,1599480 +85248,234,1,337958,75544 +85249,373,7,82627,928335 +85250,273,7,366045,1105186 +85251,234,1,22136,4387 +85252,413,11,814,14457 +85253,273,7,42252,491 +85254,413,11,112912,17762 +85255,333,2,302699,1464957 +85256,3,5,26679,45535 +85257,373,7,11370,1404840 +85258,108,10,59838,13019 +85259,234,1,48617,935705 +85260,413,11,369883,10548 +85261,234,1,206647,39 +85262,18,2,1624,1870770 +85263,148,9,196235,1176358 +85264,234,1,52782,2636 +85265,413,11,325173,85514 +85266,13,3,285685,1403574 +85267,234,1,68023,24380 +85268,187,11,6977,1546856 +85269,204,9,2613,11713 +85270,234,1,65777,26134 +85271,250,11,16921,1401770 +85272,286,3,156988,103112 +85273,97,7,2731,1599806 +85274,317,10,16203,79981 +85275,413,11,52894,72549 +85276,60,1,52867,118307 +85277,3,5,11953,70129 +85278,45,9,2503,1406808 +85279,373,7,1640,1387195 +85280,273,7,30583,68885 +85281,204,9,10075,9822 +85282,317,10,245536,1280968 +85283,387,10,12206,157 +85284,169,3,242224,1428874 +85285,397,7,42515,558643 +85286,234,1,71701,39009 +85287,203,1,330770,1616022 +85288,346,3,266856,1465953 +85289,113,9,266102,1398083 +85290,301,5,14019,76276 +85291,208,2,121598,1537713 +85292,387,10,3574,32993 +85293,413,11,254918,17233 +85294,53,2,14254,62164 +85295,234,1,340684,1468855 +85296,53,2,392818,1754080 +85297,5,10,19482,84724 +85298,292,3,1578,1546907 +85299,204,9,35405,1896778 +85300,3,5,13763,6490 +85301,413,11,367735,1545628 +85302,314,2,283995,1815825 +85303,333,2,20325,1429730 +85304,317,10,79234,1171355 +85305,203,1,16980,1209612 +85306,108,10,14644,588851 +85307,273,7,60125,1100325 +85308,387,10,64465,98482 +85309,234,1,14411,1205756 +85310,234,1,168616,1150497 +85311,273,7,152100,1688241 +85312,277,3,45205,132520 +85313,127,3,46738,8355 +85314,53,2,212713,13866 +85315,59,3,9352,1558210 +85316,12,10,26954,52268 +85317,234,1,72140,142960 +85318,105,7,47493,3535 +85319,209,7,258480,17990 +85320,3,5,36530,1265468 +85321,273,7,28178,22680 +85322,317,10,98586,946634 +85323,234,1,3078,2662 +85324,413,11,24821,1143773 +85325,3,5,47324,1620540 +85326,262,6,98277,1849138 +85327,234,1,320420,1426627 +85328,242,9,72602,29278 +85329,413,11,22396,20921 +85330,317,10,64383,20442 +85331,234,1,77473,1651537 +85332,387,10,49717,69646 +85333,317,10,85602,140166 +85334,3,5,42512,71 +85335,262,6,315664,1394721 +85336,269,9,24679,10009 +85337,413,11,9495,23926 +85338,234,1,72431,1216147 +85339,143,7,13493,1400558 +85340,160,3,75204,59613 +85341,176,3,188102,1845756 +85342,317,10,124597,85283 +85343,328,6,9882,102430 +85344,204,9,332079,1337168 +85345,317,10,39230,548374 +85346,209,7,332411,1579382 +85347,3,5,170279,1152400 +85348,328,6,176,1387777 +85349,53,2,408381,1657573 +85350,143,7,88273,1727720 +85351,413,11,3102,30402 +85352,83,2,1586,1436494 +85353,317,10,413579,1113582 +85354,234,1,217923,26760 +85355,387,10,262786,93723 +85356,53,2,7299,8681 +85357,273,7,4133,5912 +85358,198,6,2924,1803796 +85359,345,7,1647,1376902 +85360,317,10,121539,1074506 +85361,204,9,324670,930189 +85362,234,1,23823,126882 +85363,148,9,293167,1017238 +85364,413,11,9366,10725 +85365,273,7,169298,128763 +85366,413,11,10918,1141534 +85367,360,3,1381,1394742 +85368,187,11,10804,1534638 +85369,398,9,125229,1539832 +85370,234,1,318224,71797 +85371,387,10,10521,83873 +85372,415,3,46738,1419721 +85373,3,5,99599,1081062 +85374,3,5,102384,103020 +85375,387,10,13986,229111 +85376,317,10,20521,30022 +85377,3,5,20287,2507 +85378,234,1,14907,77625 +85379,269,9,184098,112521 +85380,234,1,15156,96318 +85381,3,5,3716,5431 +85382,413,11,118497,71131 +85383,413,11,28273,564868 +85384,198,6,40466,1404536 +85385,387,10,43894,29618 +85386,204,9,17209,62438 +85387,25,2,399790,95917 +85388,285,5,634,1767778 +85389,196,7,274857,1373711 +85390,273,7,58411,1378403 +85391,317,10,18736,7397 +85392,415,3,12593,1458328 +85393,387,10,2087,1723 +85394,333,2,91583,1207586 +85395,53,2,11832,147057 +85396,286,3,82708,3940 +85397,273,7,227156,7229 +85398,269,9,63831,45145 +85399,317,10,8199,53964 +85400,387,10,6687,51067 +85401,158,2,274479,1400734 +85402,38,10,154972,1717428 +85403,113,9,251227,1286566 +85404,349,1,19594,1463245 +85405,269,9,352327,1440579 +85406,413,11,10005,61847 +85407,198,6,418437,1558090 +85408,239,5,329440,1622451 +85409,387,10,58159,57332 +85410,220,7,315664,1187179 +85411,317,10,334299,65569 +85412,3,5,11534,69762 +85413,289,6,134360,64864 +85414,180,7,15497,8511 +85415,196,7,258251,1286570 +85416,273,7,369366,577 +85417,273,7,1976,3249 +85418,317,10,75341,421643 +85419,75,5,263115,1581767 +85420,317,10,33250,6008 +85421,204,9,125490,1179440 +85422,269,9,36094,12018 +85423,317,10,412363,1075506 +85424,317,10,352498,1327643 +85425,10,3,22584,30681 +85426,175,5,24679,1536247 +85427,317,10,40208,1314833 +85428,219,11,4147,1552188 +85429,333,2,52021,119554 +85430,234,1,297265,1373405 +85431,234,1,31555,18907 +85432,234,1,77381,84736 +85433,234,1,212362,1196721 +85434,269,9,15356,61500 +85435,349,1,10020,1615284 +85436,403,10,26502,18579 +85437,175,5,233639,17704 +85438,317,10,42987,26157 +85439,317,10,378435,1341117 +85440,3,5,134477,1438487 +85441,234,1,15916,12180 +85442,196,7,219466,1409762 +85443,234,1,11096,15337 +85444,413,11,64944,407465 +85445,413,11,9059,58313 +85446,213,10,57419,85652 +85447,413,11,183258,49809 +85448,162,6,638,9567 +85449,269,9,635,1718 +85450,268,7,76170,1527930 +85451,165,9,181533,1869085 +85452,104,7,2300,1559479 +85453,108,10,259183,65854 +85454,52,10,59249,98776 +85455,273,7,1904,491 +85456,317,10,366045,1382417 +85457,34,8,49009,1539301 +85458,387,10,7006,51794 +85459,331,3,18,1881566 +85460,395,3,809,1450331 +85461,185,11,8470,1733132 +85462,387,10,209112,3893 +85463,148,9,55604,9063 +85464,105,7,44303,1849868 +85465,317,10,429238,812068 +85466,204,9,336882,60408 +85467,162,6,169,136450 +85468,53,2,310431,28162 +85469,207,3,13056,1210734 +85470,3,5,37247,10005 +85471,5,10,6644,4357 +85472,170,5,26826,96389 +85473,3,5,336011,45738 +85474,226,2,28739,1334166 +85475,357,3,1586,1611789 +85476,273,7,35,947 +85477,204,9,43497,31969 +85478,413,11,9541,20503 +85479,97,7,49009,1535403 +85480,60,1,99,1651930 +85481,262,6,240913,582621 +85482,175,5,6171,1391699 +85483,190,7,8870,1588683 +85484,53,2,34838,1556946 +85485,105,7,399790,929145 +85486,3,5,9577,59435 +85487,3,5,23367,52449 +85488,324,3,331075,1759498 +85489,234,1,77664,259862 +85490,3,5,9841,59812 +85491,286,3,241254,935296 +85492,286,3,45205,132514 +85493,234,1,30780,17247 +85494,317,10,9514,56477 +85495,277,3,2428,24800 +85496,289,6,16366,1642697 +85497,317,10,27224,584535 +85498,169,3,277713,1285602 +85499,132,2,384737,1548465 +85500,403,10,109477,237952 +85501,234,1,103938,226631 +85502,21,3,809,1077844 +85503,317,10,49788,1283199 +85504,234,1,110073,1048342 +85505,148,9,90799,1503267 +85506,166,9,294254,1391383 +85507,132,2,2567,1402015 +85508,289,6,106112,148152 +85509,234,1,97797,582314 +85510,387,10,117913,95040 +85511,12,10,243683,54510 +85512,262,6,140607,1550777 +85513,286,3,27053,29548 +85514,234,1,373514,16556 +85515,3,5,10344,56548 +85516,387,10,77950,94075 +85517,269,9,1381,9546 +85518,5,10,117500,1065701 +85519,413,11,3309,2766 +85520,204,9,2267,23414 +85521,317,10,20871,98835 +85522,304,10,11333,69035 +85523,234,1,110598,72402 +85524,387,10,22999,1022678 +85525,204,9,22682,2657 +85526,387,10,26679,95999 +85527,123,3,48567,1532100 +85528,53,2,98536,14650 +85529,75,5,15794,1632529 +85530,209,7,395992,117235 +85531,208,2,314371,1610211 +85532,175,5,46286,1563897 +85533,401,6,9016,1447357 +85534,333,2,47412,138900 +85535,204,9,291558,1361209 +85536,328,6,98066,1410579 +85537,60,1,3780,33125 +85538,269,9,20312,1314894 +85539,200,3,9425,1566836 +85540,175,5,152736,1409891 +85541,413,11,28586,30971 +85542,3,5,32558,103020 +85543,250,11,257088,1638160 +85544,132,2,283995,1424894 +85545,97,7,9532,548439 +85546,234,1,47588,146949 +85547,403,10,21734,409198 +85548,187,11,203833,52193 +85549,53,2,198227,1342299 +85550,387,10,45000,1063185 +85551,3,5,30637,11123 +85552,413,11,33511,21656 +85553,333,2,176,1316296 +85554,273,7,65881,459872 +85555,413,11,14459,59958 +85556,413,11,35,5721 +85557,75,5,263115,1821902 +85558,53,2,13092,39203 +85559,58,2,121598,1880926 +85560,234,1,59930,230059 +85561,306,7,26636,1896279 +85562,387,10,1825,16483 +85563,286,3,371003,56503 +85564,288,3,86718,587735 +85565,196,7,315837,1393857 +85566,388,9,10344,1397161 +85567,387,10,343173,1151191 +85568,273,7,180929,19043 +85569,234,1,50186,1032164 +85570,317,10,78377,18565 +85571,317,10,50008,932 +85572,136,1,10916,1402124 +85573,413,11,9675,32796 +85574,108,10,42669,128397 +85575,317,10,118408,73121 +85576,273,7,300,4278 +85577,5,10,111017,929267 +85578,269,9,218784,41082 +85579,113,9,12113,1404208 +85580,234,1,88518,106751 +85581,317,10,19766,238872 +85582,317,10,52251,19896 +85583,234,1,242458,150127 +85584,45,9,12113,1405374 +85585,273,7,46069,1395901 +85586,234,1,27045,26959 +85587,373,7,202214,1183166 +85588,413,11,18774,93959 +85589,269,9,109610,1327912 +85590,208,2,924,1548532 +85591,234,1,164954,106834 +85592,244,3,2001,1697586 +85593,226,2,268174,1189981 +85594,327,7,1902,989004 +85595,3,5,118677,1031695 +85596,317,10,114348,120533 +85597,208,2,1271,1327909 +85598,52,10,28820,21227 +85599,75,5,6947,91115 +85600,387,10,9624,58204 +85601,317,10,31527,1572605 +85602,204,9,45800,9062 +85603,234,1,84285,102429 +85604,3,5,34729,576249 +85605,127,3,9297,1400371 +85606,234,1,23967,83313 +85607,353,7,9902,1376276 +85608,234,1,12089,25182 +85609,387,10,30709,106809 +85610,317,10,129553,86357 +85611,360,3,10389,25254 +85612,398,9,198663,1367490 +85613,288,3,39907,1649578 +85614,317,10,70800,47197 +85615,328,6,294272,1393446 +85616,269,9,352186,1499808 +85617,3,5,2525,15131 +85618,3,5,10208,22057 +85619,77,10,4948,40239 +85620,234,1,76333,118303 +85621,273,7,38417,55694 +85622,180,7,27523,1626009 +85623,314,2,15661,4913 +85624,333,2,55534,1368650 +85625,234,1,11509,8844 +85626,234,1,13835,75881 +85627,87,7,297702,1579383 +85628,317,10,8897,38397 +85629,166,9,11236,1881618 +85630,234,1,12994,1300 +85631,158,2,190955,1405333 +85632,234,1,72054,89956 +85633,273,7,230179,228402 +85634,234,1,11296,9168 +85635,234,1,181456,26959 +85636,204,9,293660,1191106 +85637,234,1,255160,15254 +85638,204,9,1381,17613 +85639,234,1,380731,1571421 +85640,75,5,324670,1355541 +85641,234,1,75375,142618 +85642,317,10,65713,951553 +85643,204,9,13596,37023 +85644,232,10,43596,31017 +85645,317,10,80473,52371 +85646,291,6,339403,1415619 +85647,203,1,949,1478953 +85648,52,10,403867,1723494 +85649,204,9,887,6358 +85650,83,2,64678,1333149 +85651,45,9,8467,1893221 +85652,105,7,376047,223854 +85653,289,6,72105,1455524 +85654,317,10,301729,1421632 +85655,148,9,10075,11270 +85656,64,6,128246,1652816 +85657,203,1,309879,1621473 +85658,234,1,218443,1203162 +85659,387,10,17908,296686 +85660,273,7,92341,3249 +85661,234,1,267977,1134793 +85662,75,5,10999,36428 +85663,53,2,35651,1590607 +85664,234,1,95453,96631 +85665,105,7,25983,1015883 +85666,3,5,408272,1437145 +85667,203,1,343173,1410204 +85668,413,11,300669,1676445 +85669,413,11,102382,950 +85670,147,1,424488,1823391 +85671,234,1,43973,1020732 +85672,234,1,36971,116583 +85673,317,10,20806,111430 +85674,269,9,14510,7205 +85675,289,6,201085,1572868 +85676,160,3,265208,61703 +85677,204,9,151431,6605 +85678,234,1,11485,1243 +85679,143,7,33613,1455305 +85680,317,10,10192,582919 +85681,5,10,11234,12415 +85682,289,6,72105,1453933 +85683,317,10,290916,1361406 +85684,204,9,476,6480 +85685,234,1,204802,1190262 +85686,53,2,2105,21592 +85687,387,10,153795,184477 +85688,3,5,97365,19113 +85689,387,10,11517,20840 +85690,413,11,212996,64490 +85691,373,7,635,1399996 +85692,273,7,65904,543891 +85693,3,5,289278,1428008 +85694,234,1,24442,11593 +85695,148,9,364410,1643268 +85696,3,5,11800,71264 +85697,317,10,75564,549026 +85698,234,1,85984,72205 +85699,365,6,69,1414984 +85700,317,10,319396,1430296 +85701,234,1,9308,7678 +85702,273,7,83588,1066327 +85703,234,1,28303,13294 +85704,269,9,61225,41141 +85705,333,2,135390,1540075 +85706,273,7,26252,89086 +85707,234,1,9406,58384 +85708,148,9,28297,12348 +85709,105,7,47921,30268 +85710,105,7,9483,57661 +85711,203,1,43727,1367679 +85712,317,10,23861,94297 +85713,234,1,359746,1051295 +85714,204,9,140607,11296 +85715,203,1,118984,1470970 +85716,333,2,97365,1407211 +85717,105,7,255343,46266 +85718,333,2,4547,9007 +85719,234,1,43868,97017 +85720,234,1,35197,115725 +85721,182,8,436,1603224 +85722,232,10,110573,39206 +85723,234,1,32082,133259 +85724,234,1,290316,1029284 +85725,387,10,11045,59 +85726,75,5,167,11113 +85727,111,7,664,1778009 +85728,196,7,8619,1377222 +85729,269,9,10524,68374 +85730,182,8,21671,1084969 +85731,34,8,313922,1616454 +85732,175,5,79316,1393859 +85733,182,8,18414,1303155 +85734,3,5,68629,1183453 +85735,234,1,285594,1228033 +85736,413,11,229638,1132121 +85737,234,1,35,197 +85738,317,10,76940,133202 +85739,387,10,40660,87323 +85740,398,9,6171,1319153 +85741,196,7,13616,40816 +85742,413,11,338676,1302764 +85743,166,9,76203,1393438 +85744,317,10,96702,30249 +85745,317,10,226001,71512 +85746,387,10,369524,87281 +85747,413,11,7548,3050 +85748,413,11,18633,5175 +85749,387,10,11045,21155 +85750,239,5,9568,1546552 +85751,413,11,59895,25169 +85752,5,10,42258,1072308 +85753,317,10,38417,58861 +85754,148,9,67748,1319162 +85755,387,10,442752,222552 +85756,3,5,80717,72812 +85757,289,6,214756,1453929 +85758,236,8,2105,26771 +85759,234,1,18414,64030 +85760,53,2,1164,5392 +85761,203,1,17978,1344817 +85762,53,2,25132,20490 +85763,413,11,108222,19334 +85764,52,10,99318,1020501 +85765,143,7,15092,80826 +85766,77,10,33788,111390 +85767,5,10,85836,560321 +85768,269,9,378607,589168 +85769,226,2,7445,1407223 +85770,269,9,295964,5329 +85771,3,5,1903,2483 +85772,234,1,20963,143675 +85773,204,9,18,8378 +85774,262,6,9352,1411526 +85775,387,10,10930,67533 +85776,52,10,29989,936014 +85777,317,10,28940,43304 +85778,234,1,153228,46307 +85779,167,3,11618,1765790 +85780,387,10,108222,29347 +85781,269,9,83718,929960 +85782,158,2,9495,1521753 +85783,160,3,19142,1545466 +85784,204,9,9443,957624 +85785,360,9,5,1552012 +85786,175,5,321039,1286581 +85787,289,6,1877,1707414 +85788,317,10,180050,107533 +85789,221,3,190955,1372096 +85790,278,6,40466,1760150 +85791,198,6,334074,1804229 +85792,419,10,33314,76240 +85793,269,9,83079,1427535 +85794,229,6,209112,1637395 +85795,102,3,14430,1520385 +85796,52,10,224944,1433398 +85797,387,10,24559,91992 +85798,386,5,343173,56633 +85799,387,10,21145,71930 +85800,333,2,68737,1314465 +85801,234,1,327225,238156 +85802,234,1,349441,583763 +85803,204,9,12697,74003 +85804,387,10,32275,3248 +85805,234,1,54514,30397 +85806,85,10,193756,216067 +85807,413,11,8981,18077 +85808,234,1,8341,7324 +85809,360,3,68822,1654210 +85810,61,7,1624,113052 +85811,317,10,334394,1449800 +85812,234,1,168027,122728 +85813,333,2,99,1677174 +85814,3,5,11654,5582 +85815,87,7,51250,1095320 +85816,105,7,188392,1093240 +85817,387,10,115109,116326 +85818,53,2,44943,2519 +85819,317,10,35428,86860 +85820,122,8,544,1780230 +85821,317,10,74629,98447 +85822,72,11,17771,1602331 +85823,287,3,11024,1673534 +85824,105,7,13380,1379643 +85825,413,11,293167,9646 +85826,273,7,8053,7229 +85827,387,10,29146,6779 +85828,239,5,245168,1578872 +85829,360,3,4248,1667254 +85830,317,10,310593,56194 +85831,413,11,409,154 +85832,286,3,438144,37450 +85833,234,1,54804,22159 +85834,234,1,79329,141673 +85835,45,9,140607,1373708 +85836,148,9,47540,1468502 +85837,291,6,10066,1525547 +85838,53,2,310133,1458712 +85839,413,11,79435,28097 +85840,113,9,102382,1399453 +85841,204,9,340103,1418417 +85842,87,7,274857,1544338 +85843,413,11,39995,1311627 +85844,209,7,2046,1099045 +85845,387,10,18747,72733 +85846,413,11,9013,541 +85847,273,7,284053,5666 +85848,419,10,134806,407 +85849,87,7,339994,1706509 +85850,226,2,949,16551 +85851,287,3,17796,1196136 +85852,269,9,198277,928074 +85853,413,11,132601,1303295 +85854,301,5,8247,1399927 +85855,399,9,13205,1779888 +85856,234,1,8471,55251 +85857,53,2,60269,29790 +85858,273,7,10694,21068 +85859,413,11,266082,68822 +85860,234,1,11007,17825 +85861,317,10,82279,1280605 +85862,3,5,78028,10668 +85863,387,10,21626,272210 +85864,287,3,6171,112660 +85865,415,3,99,100687 +85866,409,7,442752,1761920 +85867,234,1,2125,21819 +85868,3,5,44875,33225 +85869,53,2,270303,1397724 +85870,317,10,119433,176031 +85871,273,7,56937,128137 +85872,72,11,354287,1781649 +85873,317,10,22682,29715 +85874,198,6,228066,1574080 +85875,105,7,321142,1403808 +85876,203,1,55420,1400107 +85877,269,9,19995,496 +85878,273,7,9950,60790 +85879,387,10,17657,151853 +85880,105,7,264309,29967 +85881,204,9,511,1137873 +85882,413,11,9294,12970 +85883,269,9,28519,9153 +85884,182,8,82448,928002 +85885,204,9,709,8380 +85886,328,6,293167,1759802 +85887,273,7,28120,4345 +85888,234,1,20742,150478 +85889,234,1,38031,1243 +85890,226,2,5123,1353529 +85891,5,10,26514,95601 +85892,413,11,64605,14962 +85893,317,10,19325,106826 +85894,182,8,199575,1654516 +85895,53,2,16921,1330560 +85896,317,10,50849,107222 +85897,234,1,61266,1032164 +85898,3,5,303636,1271403 +85899,60,1,52864,1529475 +85900,64,6,87827,1460621 +85901,234,1,26961,19707 +85902,234,1,28704,11067 +85903,387,10,33541,29632 +85904,234,1,46760,86519 +85905,387,10,171213,289472 +85906,53,2,256474,1328121 +85907,317,10,16412,135795 +85908,155,3,23128,4135 +85909,234,1,250275,1285667 +85910,313,6,74,1425486 +85911,141,7,5924,91245 +85912,234,1,146243,544644 +85913,349,1,13205,1779874 +85914,317,10,124042,188269 +85915,3,5,423988,1263646 +85916,143,7,266433,1412177 +85917,1,7,413421,1785025 +85918,269,9,16131,1147603 +85919,234,1,9343,6818 +85920,317,10,246415,1282312 +85921,97,7,9042,20229 +85922,245,3,392271,1765176 +85923,234,1,31022,66795 +85924,234,1,18472,104831 +85925,148,9,408381,1657568 +85926,52,10,28165,78021 +85927,234,1,22744,5834 +85928,234,1,47942,15630 +85929,204,9,857,10880 +85930,387,10,9032,204761 +85931,53,2,598,8581 +85932,387,10,2441,24971 +85933,373,7,41963,1378169 +85934,60,1,43385,14511 +85935,317,10,218425,1264975 +85936,317,10,104462,11523 +85937,269,9,82767,941782 +85938,204,9,284053,72232 +85939,387,10,19176,21864 +85940,64,6,68737,1355894 +85941,377,3,11370,1581132 +85942,185,11,15653,1739962 +85943,273,7,209244,5340 +85944,328,6,1271,15357 +85945,234,1,86829,1223 +85946,3,5,45692,12279 +85947,204,9,250066,1495523 +85948,53,2,71670,1308028 +85949,5,10,69065,568910 +85950,204,9,15794,7127 +85951,317,10,27338,1216761 +85952,317,10,35320,1360028 +85953,413,11,12499,10548 +85954,179,2,9893,1319193 +85955,166,9,302699,1419095 +85956,387,10,3563,4948 +85957,204,9,9959,37406 +85958,328,6,243568,1685944 +85959,234,1,1586,508 +85960,60,1,197849,233718 +85961,148,9,42418,13086 +85962,398,9,10999,1338674 +85963,317,10,52555,1345407 +85964,53,2,154972,1441213 +85965,175,5,356752,1841569 +85966,387,10,280690,129161 +85967,148,9,32331,9179 +85968,317,10,142412,85670 +85969,3,5,252845,102162 +85970,148,9,11202,957815 +85971,317,10,96419,144277 +85972,398,9,311324,1833911 +85973,413,11,20287,69568 +85974,219,11,9982,1610869 +85975,317,10,70322,114427 +85976,387,10,178809,1204186 +85977,387,10,26801,30129 +85978,3,5,10874,1385880 +85979,387,10,340027,1397970 +85980,234,1,9904,60207 +85981,333,2,24750,1299029 +85982,5,10,124994,131010 +85983,387,10,117942,98541 +85984,387,10,123103,236211 +85985,200,3,1624,4502 +85986,53,2,405473,1562605 +85987,273,7,284293,23451 +85988,204,9,325712,1879672 +85989,3,5,72823,34174 +85990,234,1,58080,21227 +85991,333,2,42487,1549525 +85992,250,11,2567,1402036 +85993,413,11,37954,14570 +85994,387,10,58615,229575 +85995,234,1,171738,1154279 +85996,413,11,190955,3564 +85997,103,6,345925,1382251 +85998,317,10,76202,69912 +85999,273,7,109329,5466 +86000,273,7,11458,5287 +86001,413,11,11545,5668 +86002,164,3,257088,1554750 +86003,234,1,72898,19069 +86004,179,2,302026,1570582 +86005,403,10,100088,97570 +86006,317,10,61487,37852 +86007,367,11,353616,1023495 +86008,3,5,351809,1464779 +86009,305,9,10796,994550 +86010,234,1,46145,97774 +86011,268,7,102629,1429346 +86012,3,5,76757,2483 +86013,180,7,27031,1602592 +86014,413,11,4964,41079 +86015,53,2,25376,1147901 +86016,52,10,24090,56957 +86017,302,9,10320,1821122 +86018,387,10,194407,138466 +86019,398,9,55197,1547531 +86020,148,9,120259,8243 +86021,373,7,1058,1378171 +86022,97,7,18414,20229 +86023,190,7,159667,1849503 +86024,204,9,179826,957243 +86025,269,9,111479,11779 +86026,234,1,115109,84034 +86027,273,7,38732,30130 +86028,182,8,11607,1378203 +86029,76,2,312831,1594183 +86030,87,7,301875,1545933 +86031,203,1,198795,1753577 +86032,60,1,79521,76160 +86033,204,9,9946,12237 +86034,53,2,86768,1494606 +86035,54,10,40916,132800 +86036,234,1,345054,994163 +86037,226,2,41963,1511691 +86038,3,5,10119,63746 +86039,180,7,78265,1613772 +86040,158,2,293167,1722170 +86041,406,6,343173,1742984 +86042,234,1,344170,1476131 +86043,273,7,118059,135166 +86044,148,9,47493,1487475 +86045,257,3,11618,1648126 +86046,52,10,38808,1214898 +86047,3,5,20842,1011497 +86048,234,1,395767,1614357 +86049,333,2,24657,1600672 +86050,13,9,41213,1136810 +86051,135,3,2675,1674653 +86052,97,7,127380,80827 +86053,413,11,33025,103485 +86054,105,7,62320,20682 +86055,234,1,209556,1193841 +86056,200,3,8619,1408326 +86057,269,9,172520,1155120 +86058,413,11,131903,1093932 +86059,273,7,259,3584 +86060,317,10,81787,67321 +86061,127,3,1369,16577 +86062,305,9,78691,102339 +86063,273,7,286873,56535 +86064,234,1,91380,103393 +86065,381,9,66193,1340088 +86066,415,3,11046,14752 +86067,83,2,159667,1445364 +86068,3,5,270303,463602 +86069,180,7,31713,10156 +86070,60,1,105,5163 +86071,333,2,31263,1576629 +86072,203,1,621,121347 +86073,234,1,11647,65994 +86074,387,10,53472,27954 +86075,273,7,10466,35838 +86076,273,7,98094,1499904 +86077,398,9,9514,1642166 +86078,317,10,210302,1193919 +86079,317,10,62363,24530 +86080,204,9,331313,1127245 +86081,387,10,77964,34740 +86082,3,5,381518,125258 +86083,415,3,14676,1807337 +86084,234,1,95516,1066409 +86085,3,5,44631,13809 +86086,317,10,357851,1504645 +86087,415,3,36075,1806565 +86088,306,7,414977,1676790 +86089,203,1,271404,1387267 +86090,289,6,291270,1455706 +86091,234,1,42501,15389 +86092,333,2,12783,1427498 +86093,286,3,157293,1113239 +86094,234,1,229638,88664 +86095,105,7,18352,544515 +86096,234,1,36674,74396 +86097,234,1,15559,1467601 +86098,226,2,30637,982919 +86099,269,9,16638,1159503 +86100,328,6,2666,1392706 +86101,269,9,384737,935298 +86102,269,9,18919,83784 +86103,415,3,29056,100988 +86104,317,10,265226,931211 +86105,333,2,338189,1557107 +86106,301,5,10320,1404541 +86107,160,3,264644,1510491 +86108,113,9,70981,1390349 +86109,387,10,60269,114629 +86110,413,11,85230,1058622 +86111,143,7,987,14828 +86112,413,11,18094,229002 +86113,387,10,83346,564 +86114,234,1,29896,108888 +86115,234,1,64328,26205 +86116,53,2,35404,4350 +86117,269,9,336029,1678408 +86118,317,10,1254,109888 +86119,273,7,128089,1282004 +86120,234,1,12506,4786 +86121,360,9,623,1428473 +86122,87,7,354287,1505086 +86123,387,10,92341,96253 +86124,204,9,195269,1311209 +86125,143,7,297702,1621892 +86126,273,7,359412,1314879 +86127,127,3,35001,1538074 +86128,269,9,1637,7716 +86129,401,6,9982,1447423 +86130,234,1,10632,15175 +86131,3,5,397422,1010024 +86132,273,7,1984,12241 +86133,413,11,210302,1155533 +86134,286,3,40864,124860 +86135,317,10,40258,239403 +86136,387,10,396152,12714 +86137,340,2,33314,1089662 +86138,148,9,31993,33250 +86139,5,10,248469,1402781 +86140,317,10,341957,1470842 +86141,53,2,200727,1397972 +86142,413,11,102155,51378 +86143,234,1,43250,39743 +86144,234,1,190250,1115718 +86145,52,10,14589,5165 +86146,269,9,12,7883 +86147,3,5,286532,1382733 +86148,234,1,108812,1744 +86149,66,11,383914,1622034 +86150,148,9,796,11878 +86151,317,10,319396,1430305 +86152,77,10,65973,78322 +86153,373,7,2047,1544638 +86154,45,9,10145,1235847 +86155,122,8,167,1549177 +86156,269,9,20432,17852 +86157,413,11,58447,1732767 +86158,3,5,52395,56593 +86159,413,11,45964,1081853 +86160,273,7,60505,58438 +86161,204,9,10354,370 +86162,289,6,72545,1456835 +86163,99,3,14430,1521659 +86164,413,11,11859,11410 +86165,12,10,28421,11624 +86166,333,2,17175,1428234 +86167,317,10,50012,143279 +86168,317,10,40709,1297508 +86169,289,6,53178,999606 +86170,234,1,10900,14800 +86171,269,9,141,9648 +86172,317,10,33305,1173281 +86173,179,2,744,1206905 +86174,387,10,40252,82579 +86175,269,9,552,7563 +86176,289,6,346672,1721326 +86177,234,1,51939,893 +86178,3,5,64928,2774 +86179,317,10,413782,110962 +86180,333,2,347096,1500582 +86181,77,10,18238,82823 +86182,317,10,32648,69659 +86183,234,1,140825,9740 +86184,204,9,1377,16753 +86185,413,11,64972,1309870 +86186,333,2,857,1422795 +86187,273,7,320588,1292305 +86188,3,5,43526,16750 +86189,105,7,286192,8039 +86190,244,3,284052,1704380 +86191,349,1,13225,1447436 +86192,234,1,90056,938146 +86193,289,6,98566,1459767 +86194,387,10,63186,67750 +86195,387,10,9028,56742 +86196,204,9,84226,1418416 +86197,187,11,11639,1825211 +86198,269,9,310888,35147 +86199,204,9,34193,1370944 +86200,53,2,167810,1193620 +86201,387,10,2897,3638 +86202,269,9,293970,990070 +86203,3,5,118760,1146725 +86204,387,10,220488,1307113 +86205,277,3,72431,1484177 +86206,148,9,383140,1582470 +86207,387,10,10991,65430 +86208,413,11,37917,1442567 +86209,239,5,11351,1536213 +86210,387,10,13549,29648 +86211,104,7,1966,9890 +86212,127,3,28090,1418031 +86213,286,3,62320,43995 +86214,273,7,18273,1328542 +86215,317,10,339944,1606333 +86216,75,5,333663,1527865 +86217,373,7,82,1401687 +86218,234,1,73420,2891 +86219,394,7,195269,1340097 +86220,273,7,28304,8619 +86221,234,1,29638,98680 +86222,239,5,333484,1548880 +86223,3,5,205891,1188279 +86224,286,3,58878,228551 +86225,234,1,260310,115999 +86226,398,9,10391,1404354 +86227,234,1,30366,16767 +86228,53,2,370755,56417 +86229,317,10,25060,93087 +86230,53,2,109610,1499015 +86231,34,8,544,1748866 +86232,273,7,140883,565165 +86233,387,10,199615,1068598 +86234,317,10,48341,26882 +86235,317,10,78285,39879 +86236,234,1,16137,79546 +86237,269,9,44129,437 +86238,234,1,270303,558929 +86239,204,9,7515,428704 +86240,234,1,121401,40187 +86241,387,10,31947,41017 +86242,246,6,315837,1797223 +86243,234,1,31850,108538 +86244,289,6,106112,999607 +86245,148,9,1375,796 +86246,269,9,70074,961447 +86247,317,10,77673,11195 +86248,97,7,127372,1337413 +86249,234,1,64807,13426 +86250,3,5,9504,20693 +86251,413,11,83770,6794 +86252,273,7,1956,20230 +86253,203,1,264525,1857588 +86254,413,11,14945,1123073 +86255,203,1,28176,1377239 +86256,204,9,48207,1318839 +86257,314,2,10096,1428122 +86258,66,11,773,1182914 +86259,269,9,12103,5508 +86260,204,9,9314,1749131 +86261,244,3,24469,1319628 +86262,273,7,85640,7182 +86263,3,5,38978,40052 +86264,289,6,3933,1448070 +86265,415,3,488,6608 +86266,234,1,7219,29433 +86267,62,3,68721,1452991 +86268,234,1,36236,15127 +86269,413,11,92321,1315202 +86270,234,1,30449,106327 +86271,413,11,11103,5175 +86272,286,3,14072,55073 +86273,234,1,15019,57434 +86274,317,10,49410,51951 +86275,229,6,312831,1594177 +86276,3,5,9968,35511 +86277,373,7,9820,74978 +86278,12,10,4248,35694 +86279,234,1,30924,95329 +86280,148,9,1966,8680 +86281,289,6,177572,1460478 +86282,277,3,375012,1733927 +86283,234,1,55823,32375 +86284,387,10,41559,69139 +86285,204,9,127812,9062 +86286,158,2,296523,1590393 +86287,234,1,168164,18831 +86288,234,1,257831,23357 +86289,317,10,27457,1078553 +86290,87,7,10330,1551698 +86291,3,5,121636,2654 +86292,317,10,77185,386918 +86293,273,7,4012,35143 +86294,317,10,57683,29524 +86295,413,11,134201,19104 +86296,188,8,10320,1141788 +86297,273,7,134656,1014694 +86298,321,11,14,1753774 +86299,387,10,63224,38073 +86300,333,2,47324,1620543 +86301,333,2,2989,29377 +86302,209,7,12144,1399326 +86303,268,7,201085,1335182 +86304,234,1,105991,1265892 +86305,273,7,38356,18264 +86306,291,6,302026,1363859 +86307,234,1,56693,34264 +86308,180,7,46069,1540600 +86309,333,2,333663,1269672 +86310,317,10,9406,58384 +86311,296,3,283445,1548088 +86312,204,9,33789,84181 +86313,196,7,9836,1745248 +86314,53,2,14615,32442 +86315,204,9,16996,92302 +86316,108,10,44463,8623 +86317,273,7,207178,3249 +86318,87,7,2115,5132 +86319,3,5,27085,8934 +86320,413,11,116327,31255 +86321,226,2,218778,1551528 +86322,387,10,246355,2128 +86323,53,2,22279,567973 +86324,204,9,274857,1815696 +86325,234,1,91443,210311 +86326,413,11,386100,1052183 +86327,148,9,9563,2529 +86328,333,2,38922,1535429 +86329,234,1,393443,1157604 +86330,148,9,178809,1412584 +86331,387,10,116780,105017 +86332,3,5,166666,3769 +86333,317,10,27349,648 +86334,97,7,70981,1367493 +86335,328,6,6972,1391725 +86336,413,11,95756,1006751 +86337,187,11,8869,1405382 +86338,234,1,20364,80387 +86339,53,2,340488,20079 +86340,234,1,292062,1055778 +86341,413,11,440508,1844150 +86342,65,3,435,235778 +86343,203,1,45527,1438627 +86344,234,1,310431,7847 +86345,200,3,44943,1403405 +86346,413,11,5881,46286 +86347,413,11,9354,45862 +86348,234,1,104471,11523 +86349,415,3,41604,938164 +86350,47,8,43459,1421191 +86351,373,7,20919,1423412 +86352,273,7,6948,21962 +86353,394,7,2047,1402250 +86354,289,6,24238,1076738 +86355,77,10,8270,2199 +86356,317,10,159727,1141551 +86357,304,10,12684,108626 +86358,12,10,177572,265415 +86359,3,5,14510,4614 +86360,204,9,70006,1170240 +86361,47,8,98066,1437304 +86362,174,6,11024,1415631 +86363,53,2,68629,52682 +86364,46,5,38027,1657664 +86365,234,1,92298,84657 +86366,360,3,93856,1335143 +86367,317,10,103201,1033129 +86368,5,10,28261,29242 +86369,413,11,43904,102862 +86370,387,10,118984,60513 +86371,5,10,3484,32113 +86372,3,5,321039,967417 +86373,181,7,251227,1286573 +86374,187,11,265208,1428855 +86375,373,7,294254,16177 +86376,287,3,340187,1107451 +86377,273,7,381054,969258 +86378,234,1,272072,1271115 +86379,168,3,109439,1738113 +86380,179,2,209112,1428226 +86381,113,9,9425,1422056 +86382,273,7,11630,1213 +86383,53,2,300187,1191559 +86384,234,1,27999,18574 +86385,262,6,12103,1392095 +86386,269,9,10134,559319 +86387,273,7,16214,67770 +86388,413,11,64428,10218 +86389,52,10,36612,29098 +86390,413,11,1912,3941 +86391,269,9,13411,1260 +86392,269,9,262522,1330885 +86393,204,9,1428,1329805 +86394,314,2,9352,1555670 +86395,169,3,9504,21150 +86396,105,7,134477,1271968 +86397,234,1,84348,88556 +86398,189,3,283384,1429324 +86399,387,10,52264,145675 +86400,53,2,267852,1622321 +86401,204,9,714,7788 +86402,387,10,11879,14392 +86403,208,2,384737,1404190 +86404,286,3,47459,1130079 +86405,387,10,231176,114366 +86406,387,10,11361,69139 +86407,269,9,18919,550576 +86408,269,9,245775,13839 +86409,234,1,96713,2428 +86410,67,10,59981,1447317 +86411,204,9,140894,38956 +86412,387,10,41733,57130 +86413,269,9,20919,62355 +86414,203,1,4592,1380482 +86415,50,3,2300,1870695 +86416,413,11,1922,19989 +86417,328,6,19255,1395365 +86418,387,10,6964,17698 +86419,234,1,29376,13980 +86420,52,10,40957,19480 +86421,77,10,505,6911 +86422,333,2,245703,1415334 +86423,53,2,66113,3502 +86424,317,10,64225,64750 +86425,234,1,56800,37302 +86426,226,2,21927,1416940 +86427,190,7,10476,1560904 +86428,333,2,3309,1462445 +86429,269,9,12102,19045 +86430,269,9,11351,15014 +86431,289,6,106112,148148 +86432,234,1,204765,147040 +86433,273,7,11012,1135 +86434,317,10,96106,49451 +86435,317,10,57278,1071419 +86436,196,7,173153,1554970 +86437,173,7,129,77938 +86438,273,7,3577,6049 +86439,204,9,48594,1174815 +86440,234,1,308529,57082 +86441,72,11,2105,1552190 +86442,317,10,338676,54528 +86443,234,1,10539,57646 +86444,331,3,2567,1455789 +86445,209,7,4806,1342663 +86446,34,8,1586,1409714 +86447,234,1,364111,1243962 +86448,203,1,188102,1427559 +86449,234,1,52323,1140272 +86450,286,3,327389,1126734 +86451,53,2,3309,8717 +86452,5,10,887,13569 +86453,234,1,228558,16356 +86454,387,10,289,2665 +86455,234,1,120802,1128881 +86456,317,10,7459,9340 +86457,317,10,48601,25340 +86458,85,10,13836,1673004 +86459,262,6,19995,1395269 +86460,317,10,333091,1446636 +86461,245,3,38404,120336 +86462,3,5,157843,6826 +86463,317,10,22901,68281 +86464,148,9,32872,1536508 +86465,53,2,213681,38084 +86466,413,11,8383,587458 +86467,97,7,332567,1387246 +86468,286,3,70090,29732 +86469,105,7,21619,1000559 +86470,234,1,60678,236959 +86471,250,11,124470,1448303 +86472,143,7,12477,239826 +86473,132,2,272693,1526824 +86474,402,11,49013,1609036 +86475,317,10,30554,62556 +86476,45,9,272693,1709321 +86477,387,10,253851,1150813 +86478,160,3,27873,8432 +86479,190,7,306966,1367433 +86480,273,7,363439,65211 +86481,225,7,11370,1798047 +86482,3,5,27681,176687 +86483,234,1,11236,1128 +86484,3,5,9080,14456 +86485,387,10,33481,54767 +86486,53,2,2115,10678 +86487,273,7,42345,1938 +86488,273,7,30959,51808 +86489,317,10,232462,150751 +86490,77,10,49963,56539 +86491,12,10,76170,34933 +86492,166,9,31911,1347735 +86493,411,9,1272,1346934 +86494,3,5,317144,1414167 +86495,234,1,100528,33026 +86496,234,1,121230,30259 +86497,72,11,5237,1413041 +86498,333,2,34181,1876052 +86499,52,10,90406,64117 +86500,72,11,284052,1524098 +86501,413,11,241639,1119480 +86502,387,10,375199,133423 +86503,317,10,47682,7018 +86504,3,5,50247,552001 +86505,85,10,60307,1684475 +86506,5,10,265208,348 +86507,108,10,82465,74635 +86508,234,1,61541,32427 +86509,75,5,1624,1377230 +86510,132,2,263115,1409817 +86511,360,9,345918,1870219 +86512,5,10,24005,35876 +86513,60,1,101929,1547483 +86514,397,7,126418,27969 +86515,234,1,270908,1190421 +86516,234,1,308269,1447878 +86517,413,11,83802,33830 +86518,413,11,10467,9163 +86519,15,6,10020,1461378 +86520,387,10,94671,21061 +86521,234,1,58462,4724 +86522,383,3,10539,953331 +86523,269,9,9016,73161 +86524,53,2,16307,960135 +86525,209,7,352208,1407207 +86526,53,2,28303,417597 +86527,262,6,241239,1434598 +86528,413,11,105539,2891 +86529,381,9,145135,1407194 +86530,226,2,16374,1470205 +86531,176,3,102382,1399461 +86532,314,2,4547,1551326 +86533,219,11,11618,1552549 +86534,66,11,329135,1667098 +86535,349,1,98566,1459760 +86536,273,7,26941,4140 +86537,269,9,1497,11294 +86538,157,3,28165,1387712 +86539,53,2,73424,1544182 +86540,143,7,239566,1428595 +86541,273,7,13526,37757 +86542,45,9,4413,1336514 +86543,15,6,98566,1463785 +86544,317,10,246655,11092 +86545,234,1,61934,8500 +86546,234,1,25450,87565 +86547,387,10,786,11649 +86548,387,10,104602,58659 +86549,3,5,84209,1086254 +86550,52,10,27629,38247 +86551,175,5,293167,1395243 +86552,226,2,15616,1458987 +86553,234,1,1659,18400 +86554,317,10,142145,1057062 +86555,317,10,36554,83905 +86556,387,10,195068,149128 +86557,234,1,95169,8500 +86558,273,7,325385,19579 +86559,148,9,126127,1132129 +86560,3,5,31509,1562884 +86561,160,3,77246,4606 +86562,277,3,13616,1586590 +86563,234,1,11848,70707 +86564,413,11,23823,48457 +86565,413,11,10611,1741915 +86566,234,1,191476,15287 +86567,289,6,9297,1447474 +86568,304,10,135286,1344595 +86569,339,2,10351,11419 +86570,268,7,329865,1646496 +86571,239,5,274504,1609040 +86572,234,1,16996,58552 +86573,60,1,155605,1080277 +86574,3,5,8429,5399 +86575,234,1,10796,57134 +86576,376,10,259694,69125 +86577,226,2,332567,1642834 +86578,109,6,15653,1466219 +86579,234,1,69765,550175 +86580,234,1,983,6593 +86581,132,2,103332,1547221 +86582,387,10,73624,135754 +86583,373,7,10929,1378755 +86584,262,6,222935,1367827 +86585,226,2,16358,1428125 +86586,394,7,17209,1392901 +86587,52,10,10865,61950 +86588,269,9,332839,36133 +86589,234,1,8869,56150 +86590,53,2,42045,5493 +86591,208,2,4413,234853 +86592,273,7,18682,13983 +86593,234,1,77625,81237 +86594,181,7,124963,1399030 +86595,3,5,7980,1313 +86596,105,7,243568,50216 +86597,317,10,58013,1525831 +86598,387,10,2687,26978 +86599,203,1,274857,190914 +86600,419,10,24090,56957 +86601,53,2,228066,11227 +86602,3,5,25568,1440070 +86603,387,10,149509,1378767 +86604,179,2,264560,1387543 +86605,303,3,142402,1117108 +86606,45,9,277355,1335144 +86607,64,6,2300,1451676 +86608,317,10,19042,8898 +86609,373,7,18414,1401290 +86610,204,9,66812,37770 +86611,203,1,3057,1155056 +86612,234,1,155191,1232592 +86613,387,10,35052,6363 +86614,239,5,266102,1606171 +86615,302,9,28090,1680237 +86616,148,9,14916,11761 +86617,413,11,41970,1359576 +86618,413,11,223485,968946 +86619,234,1,142012,135650 +86620,234,1,68247,16888 +86621,387,10,14069,81721 +86622,105,7,285860,930054 +86623,413,11,3059,8822 +86624,286,3,43473,103384 +86625,232,10,97024,1012037 +86626,317,10,332512,143732 +86627,52,10,165,24 +86628,132,2,4248,1532232 +86629,273,7,360784,558 +86630,234,1,37254,19656 +86631,53,2,17691,1467258 +86632,387,10,12106,21705 +86633,190,7,7220,1707107 +86634,273,7,9080,7182 +86635,234,1,217038,151083 +86636,32,8,297762,1903908 +86637,317,10,82999,105574 +86638,104,7,22477,18857 +86639,75,5,31542,1589503 +86640,234,1,41831,98940 +86641,296,3,10900,1538941 +86642,34,8,9532,1441262 +86643,387,10,9651,58337 +86644,317,10,67314,544034 +86645,3,5,135335,1092926 +86646,234,1,47120,100134 +86647,413,11,1271,2122 +86648,52,10,149870,608 +86649,182,8,10491,1430498 +86650,273,7,3937,5467 +86651,273,7,18671,26026 +86652,289,6,38415,1452989 +86653,234,1,96497,936871 +86654,244,3,286192,8153 +86655,113,9,205584,1475737 +86656,234,1,170759,57758 +86657,387,10,10930,67534 +86658,79,7,42515,558645 +86659,413,11,253612,1383169 +86660,12,10,323675,47364 +86661,105,7,225728,549315 +86662,175,5,2662,1461177 +86663,158,2,2454,1417999 +86664,277,3,365709,1528375 +86665,53,2,51549,1309945 +86666,220,7,90799,30253 +86667,52,10,43093,142042 +86668,317,10,116352,1064162 +86669,234,1,96159,593017 +86670,99,3,102668,239988 +86671,198,6,337339,1580856 +86672,234,1,400174,13015 +86673,268,7,287,1404838 +86674,3,5,33792,12307 +86675,148,9,13965,76207 +86676,317,10,20096,129644 +86677,273,7,9352,23739 +86678,192,5,332567,1364623 +86679,317,10,79782,587971 +86680,204,9,12454,6382 +86681,317,10,172443,254114 +86682,204,9,58251,142276 +86683,200,3,334074,1412711 +86684,105,7,181876,97422 +86685,317,10,34582,112597 +86686,391,9,857,40750 +86687,234,1,86236,40184 +86688,234,1,321528,105643 +86689,245,3,747,1465643 +86690,286,3,232100,1323896 +86691,77,10,10008,61920 +86692,317,10,19618,84940 +86693,158,2,1073,1401125 +86694,262,6,6171,1341789 +86695,273,7,12599,73049 +86696,204,9,9593,25748 +86697,373,7,10950,1387195 +86698,204,9,118,39923 +86699,234,1,89242,44878 +86700,387,10,13954,89293 +86701,317,10,54524,73579 +86702,288,3,40998,1644157 +86703,270,9,10733,1397818 +86704,317,10,219335,1202099 +86705,234,1,43489,93905 +86706,394,7,98066,1403438 +86707,148,9,46190,9063 +86708,85,10,315837,57303 +86709,317,10,34766,72405 +86710,289,6,328111,1479531 +86711,75,5,425774,1708037 +86712,234,1,30330,31024 +86713,234,1,85435,27889 +86714,234,1,82781,37421 +86715,234,1,284293,82335 +86716,273,7,64827,239896 +86717,333,2,186585,1631696 +86718,317,10,40744,58862 +86719,317,10,38908,121608 +86720,411,9,634,1346934 +86721,412,9,10066,1864760 +86722,253,6,283995,1815919 +86723,234,1,2274,133635 +86724,328,6,27259,1034644 +86725,105,7,106573,1535451 +86726,269,9,60281,5632 +86727,234,1,140595,1025685 +86728,413,11,2397,24515 +86729,234,1,26430,93019 +86730,387,10,102382,15346 +86731,289,6,9514,1642556 +86732,87,7,219466,1640829 +86733,203,1,297702,1636854 +86734,387,10,11908,70890 +86735,317,10,45244,1218912 +86736,143,7,264397,1299867 +86737,360,3,8204,1391763 +86738,288,3,397365,1653497 +86739,387,10,36519,14859 +86740,234,1,414827,145470 +86741,166,9,9902,1337455 +86742,234,1,37645,35896 +86743,179,2,19995,1330574 +86744,143,7,2172,1635812 +86745,387,10,15661,30458 +86746,104,7,332872,1730399 +86747,234,1,43407,4347 +86748,234,1,42252,6448 +86749,52,10,1452,11012 +86750,387,10,285400,1378276 +86751,289,6,98566,1459745 +86752,234,1,113038,1056200 +86753,168,3,8470,1840077 +86754,415,3,30298,1566640 +86755,387,10,93562,161508 +86756,305,9,1586,15435 +86757,204,9,242224,1428868 +86758,208,2,18,1249773 +86759,234,1,49353,126030 +86760,413,11,18317,1529524 +86761,234,1,358511,1506062 +86762,234,1,24746,116653 +86763,234,1,47260,86293 +86764,413,11,88529,46238 +86765,34,8,266102,1403708 +86766,97,7,5638,81528 +86767,203,1,924,1340919 +86768,72,11,31911,1549585 +86769,269,9,395992,9817 +86770,189,3,53459,1400095 +86771,190,7,8470,1337457 +86772,286,3,12780,552385 +86773,273,7,214086,55177 +86774,203,1,5237,1427559 +86775,143,7,330459,1400906 +86776,105,7,126841,1073734 +86777,148,9,14527,1317670 +86778,317,10,278935,1132599 +86779,394,7,35,1376902 +86780,200,3,44943,1403406 +86781,66,11,10193,8080 +86782,74,5,383538,1851919 +86783,105,7,3063,29758 +86784,413,11,112244,1039764 +86785,204,9,287636,1287352 +86786,175,5,379019,124703 +86787,53,2,127372,1322 +86788,387,10,107430,19266 +86789,160,3,1481,1239918 +86790,413,11,2907,9615 +86791,196,7,228970,1031621 +86792,262,6,50674,1042813 +86793,319,1,188102,1845750 +86794,204,9,9443,1400418 +86795,97,7,177677,1079085 +86796,105,7,335340,1452471 +86797,387,10,8049,53428 +86798,273,7,260312,1330177 +86799,97,7,33135,1304276 +86800,333,2,6443,1683616 +86801,249,7,60599,1393441 +86802,258,9,15213,1462627 +86803,387,10,12121,71336 +86804,413,11,370264,1401 +86805,387,10,1421,3583 +86806,164,3,8619,1619083 +86807,196,7,315837,1415617 +86808,111,7,33586,1463123 +86809,387,10,92716,1229523 +86810,67,10,15653,1767031 +86811,148,9,323675,1769824 +86812,234,1,71051,1190421 +86813,387,10,154972,112096 +86814,360,3,12526,1406272 +86815,52,10,153162,33027 +86816,387,10,332079,40529 +86817,87,7,159667,1849527 +86818,143,7,18937,15894 +86819,287,3,305127,1184245 +86820,306,7,410118,1791598 +86821,234,1,356483,117168 +86822,317,10,270403,19942 +86823,5,10,68191,102076 +86824,317,10,14087,133117 +86825,169,3,384737,1521492 +86826,273,7,174925,1120149 +86827,314,2,7515,66691 +86828,234,1,15486,75725 +86829,196,7,17144,1407255 +86830,53,2,91679,118416 +86831,234,1,86305,123707 +86832,234,1,71376,562707 +86833,97,7,28090,1371064 +86834,317,10,128841,94916 +86835,52,10,67748,549314 +86836,234,1,140489,1178812 +86837,3,5,72875,567326 +86838,317,10,66967,1172607 +86839,317,10,244403,1279651 +86840,269,9,49847,1187589 +86841,269,9,157354,990139 +86842,331,3,4248,1627977 +86843,269,9,9030,10064 +86844,289,6,12593,150769 +86845,399,9,234377,1142729 +86846,234,1,24341,27991 +86847,58,2,31947,1896609 +86848,187,11,16996,548437 +86849,234,1,198227,1024473 +86850,286,3,87293,55888 +86851,306,7,11370,46984 +86852,317,10,34506,15903 +86853,176,3,176,1817632 +86854,54,10,40916,134431 +86855,3,5,27966,13972 +86856,158,2,44115,1394725 +86857,399,9,66984,1559959 +86858,391,9,341174,1738093 +86859,317,10,169800,983547 +86860,53,2,16096,15524 +86861,317,10,12994,1300 +86862,67,10,13205,1447478 +86863,413,11,26761,13973 +86864,53,2,20,2327 +86865,269,9,8070,3586 +86866,286,3,30379,52081 +86867,234,1,45013,54248 +86868,234,1,24801,84782 +86869,148,9,213681,27266 +86870,314,2,322443,1401176 +86871,23,9,634,15512 +86872,273,7,204553,1294908 +86873,317,10,302118,45944 +86874,204,9,417870,66495 +86875,190,7,48231,1586395 +86876,234,1,75341,421643 +86877,317,10,199647,1179828 +86878,373,7,194101,1340116 +86879,328,6,82990,1547204 +86880,273,7,10622,28156 +86881,413,11,55604,121150 +86882,328,6,360249,81805 +86883,317,10,300321,1164758 +86884,182,8,338189,1536640 +86885,204,9,146238,1047108 +86886,3,5,10165,240 +86887,148,9,43457,13974 +86888,3,5,209406,19952 +86889,3,5,5482,31542 +86890,333,2,21927,1410125 +86891,360,3,204922,1414092 +86892,413,11,94663,1004103 +86893,387,10,237303,1271890 +86894,387,10,43241,98447 +86895,317,10,54102,1246383 +86896,413,11,8414,63990 +86897,105,7,14868,75940 +86898,3,5,245703,71880 +86899,333,2,55853,551789 +86900,387,10,6877,51328 +86901,234,1,17927,82511 +86902,97,7,9882,1774872 +86903,234,1,14869,7775 +86904,87,7,131737,1533685 +86905,158,2,167,1549172 +86906,314,2,2105,1527917 +86907,413,11,133458,6337 +86908,3,5,246011,1149910 +86909,12,10,246655,18866 +86910,3,5,28425,10602 +86911,413,11,245700,10725 +86912,175,5,13493,1407027 +86913,234,1,72655,40235 +86914,148,9,22267,4907 +86915,45,9,330459,1373708 +86916,204,9,18826,66569 +86917,234,1,64428,201393 +86918,165,9,10796,1868279 +86919,262,6,336882,1635805 +86920,108,10,214909,12718 +86921,209,7,195269,1377419 +86922,234,1,29113,123401 +86923,381,9,178809,1412583 +86924,179,2,44945,1428226 +86925,317,10,32690,5026 +86926,234,1,195592,1037658 +86927,155,3,32085,146179 +86928,158,2,353686,1190103 +86929,328,6,10008,1391692 +86930,143,7,44754,1625316 +86931,143,7,10008,960074 +86932,387,10,315837,15244 +86933,234,1,392818,1614893 +86934,387,10,10568,65854 +86935,53,2,124963,8868 +86936,208,2,14476,1411667 +86937,286,3,52034,237186 +86938,234,1,84348,141962 +86939,399,9,10198,1461399 +86940,146,5,337339,1759758 +86941,327,7,277713,1374458 +86942,53,2,858,7536 +86943,373,7,11607,1341854 +86944,3,5,54752,25212 +86945,387,10,20301,85903 +86946,413,11,37103,14745 +86947,52,10,25053,198312 +86948,3,5,53949,109000 +86949,196,7,9314,1378836 +86950,234,1,40458,876 +86951,232,10,42837,224442 +86952,269,9,315880,67138 +86953,169,3,10691,13030 +86954,413,11,11172,10440 +86955,208,2,28448,1330586 +86956,234,1,343702,21769 +86957,204,9,116463,130832 +86958,148,9,220,4126 +86959,328,6,61341,1338241 +86960,273,7,170759,708 +86961,413,11,246403,19303 +86962,387,10,16784,2691 +86963,387,10,83389,1416 +86964,301,5,5915,1186279 +86965,317,10,42966,129161 +86966,317,10,18467,59231 +86967,373,7,87826,1095339 +86968,317,10,156268,146977 +86969,226,2,2978,91853 +86970,169,3,9532,1441251 +86971,105,7,42309,1105186 +86972,397,7,33135,1304273 +86973,317,10,40465,65271 +86974,3,5,163376,9103 +86975,413,11,13505,62759 +86976,148,9,256962,1819163 +86977,317,10,445916,99432 +86978,234,1,244117,1120874 +86979,317,10,36211,20660 +86980,273,7,310135,1501947 +86981,52,10,81687,167903 +86982,143,7,277355,1338482 +86983,317,10,139519,98251 +86984,387,10,11576,21008 +86985,49,7,263115,1415965 +86986,333,2,18665,552200 +86987,273,7,52395,1938 +86988,83,2,10733,555329 +86989,3,5,182899,2774 +86990,204,9,120977,8506 +86991,234,1,159201,1339821 +86992,269,9,1903,19850 +86993,262,6,110416,1618019 +86994,113,9,12499,15328 +86995,3,5,81232,1404147 +86996,387,10,14134,1673813 +86997,269,9,20544,10368 +86998,234,1,44001,93975 +86999,314,2,163,1413224 +87000,208,2,298,1319166 +87001,234,1,63449,86671 +87002,155,3,18094,2260 +87003,53,2,167,9043 +87004,20,2,202241,18513 +87005,52,10,108812,146950 +87006,234,1,356326,1500724 +87007,148,9,40761,12349 +87008,234,1,59189,19460 +87009,203,1,256740,1402524 +87010,234,1,180418,212674 +87011,317,10,137145,1106881 +87012,234,1,5319,42804 +87013,203,1,31005,1469339 +87014,387,10,22752,5449 +87015,234,1,25659,94052 +87016,317,10,102197,1030311 +87017,175,5,9716,1395682 +87018,204,9,10972,1318467 +87019,387,10,115054,87394 +87020,269,9,55433,222360 +87021,273,7,105210,555279 +87022,387,10,2288,23606 +87023,317,10,9900,20818 +87024,317,10,16080,117486 +87025,314,2,7220,1573598 +87026,296,3,8870,1724244 +87027,317,10,62289,117493 +87028,273,7,96702,1192628 +87029,273,7,18665,65984 +87030,200,3,76757,1398101 +87031,187,11,20438,1405232 +87032,269,9,23544,1697681 +87033,52,10,31445,70258 +87034,303,3,44363,176687 +87035,204,9,43459,31318 +87036,413,11,369883,18276 +87037,317,10,56235,223827 +87038,141,7,11045,65644 +87039,413,11,18908,1030 +87040,204,9,36758,49345 +87041,234,1,167021,124919 +87042,169,3,60599,15528 +87043,327,7,20242,1833853 +87044,234,1,8049,53427 +87045,3,5,10992,11506 +87046,105,7,9102,17212 +87047,303,3,334074,226464 +87048,3,5,11888,11371 +87049,234,1,58904,76100 +87050,415,3,186869,1444238 +87051,234,1,84309,794782 +87052,317,10,205724,1204339 +87053,413,11,15144,4981 +87054,3,5,47914,30605 +87055,75,5,293167,1190661 +87056,387,10,9385,24531 +87057,373,7,12783,1343898 +87058,52,10,43828,105570 +87059,413,11,379019,1780189 +87060,371,3,76341,1357072 +87061,244,3,11045,1562239 +87062,387,10,40662,124280 +87063,413,11,17464,81891 +87064,387,10,330770,229135 +87065,302,9,9314,1681563 +87066,413,11,259075,592058 +87067,413,11,28,154 +87068,413,11,270774,5668 +87069,53,2,539,7308 +87070,317,10,13954,139045 +87071,196,7,116979,1548120 +87072,387,10,44591,51727 +87073,301,5,7551,1403479 +87074,204,9,318781,1622807 +87075,317,10,282983,1106577 +87076,187,11,19995,1376899 +87077,97,7,17609,1106173 +87078,234,1,127614,1085159 +87079,286,3,32532,109314 +87080,72,11,14,55985 +87081,262,6,240832,1367827 +87082,234,1,1877,19708 +87083,317,10,36737,116272 +87084,53,2,82178,7652 +87085,317,10,289679,5811 +87086,105,7,111582,1274071 +87087,333,2,223485,1531092 +87088,244,3,40466,1133993 +87089,148,9,25385,1010740 +87090,413,11,7343,8578 +87091,301,5,296524,1186279 +87092,273,7,103713,1034666 +87093,317,10,14587,6220 +87094,182,8,66193,1175505 +87095,234,1,15325,78112 +87096,373,7,310133,1337461 +87097,360,3,79316,76497 +87098,5,10,24559,1384517 +87099,387,10,11055,67948 +87100,166,9,76341,1518780 +87101,234,1,278738,1335494 +87102,289,6,109298,64864 +87103,234,1,209556,228472 +87104,3,5,367412,1308365 +87105,52,10,347807,86009 +87106,3,5,169656,1594673 +87107,77,10,10077,53297 +87108,3,5,4134,28218 +87109,413,11,32049,2046 +87110,415,3,29959,1176364 +87111,5,10,1271,1272668 +87112,317,10,33784,111345 +87113,301,5,3682,1399877 +87114,141,7,16442,13571 +87115,325,5,49689,1594803 +87116,234,1,236112,132742 +87117,234,1,125619,1081534 +87118,72,11,15092,1414559 +87119,327,7,22279,10740 +87120,333,2,284052,16735 +87121,413,11,84636,1621312 +87122,268,7,76757,1404214 +87123,182,8,146233,1401988 +87124,328,6,7220,1392907 +87125,387,10,229221,1183839 +87126,317,10,256092,78217 +87127,105,7,155011,1136035 +87128,277,3,76163,1396796 +87129,327,7,444713,1586809 +87130,234,1,41578,1017996 +87131,413,11,26510,64876 +87132,234,1,94744,259027 +87133,273,7,41030,931940 +87134,239,5,188826,1551649 +87135,333,2,38325,238625 +87136,234,1,301272,120652 +87137,171,3,297762,1819553 +87138,398,9,9946,24959 +87139,226,2,2898,1411258 +87140,18,2,10320,1821179 +87141,273,7,15902,1196246 +87142,413,11,33923,30013 +87143,166,9,283686,1582729 +87144,64,6,924,1415151 +87145,3,5,9464,1781 +87146,234,1,315664,3224 +87147,77,10,15689,78545 +87148,186,6,378236,1840321 +87149,52,10,10222,64681 +87150,39,3,279096,1386331 +87151,213,10,55853,64750 +87152,5,10,11601,12415 +87153,387,10,17780,226414 +87154,317,10,78403,583932 +87155,317,10,259690,63868 +87156,373,7,172385,1327030 +87157,190,7,8915,1337457 +87158,234,1,211,10230 +87159,234,1,92796,40 +87160,317,10,226354,15220 +87161,327,7,298787,1376954 +87162,333,2,163791,1444364 +87163,413,11,27599,56398 +87164,413,11,112973,1186594 +87165,234,1,63988,51572 +87166,262,6,177677,1401145 +87167,77,10,14317,78487 +87168,387,10,32932,83943 +87169,269,9,10804,20107 +87170,204,9,1966,8382 +87171,52,10,345925,67795 +87172,234,1,126043,1180859 +87173,289,6,146730,123192 +87174,373,7,132601,1344834 +87175,158,2,293167,1759750 +87176,53,2,347031,1118582 +87177,398,9,9472,1567966 +87178,317,10,32038,544818 +87179,373,7,8276,28686 +87180,37,3,35,1447554 +87181,287,3,765,98471 +87182,413,11,26880,123958 +87183,148,9,10096,6191 +87184,273,7,48609,1938 +87185,234,1,37284,1043185 +87186,317,10,425774,1707753 +87187,169,3,4248,15434 +87188,3,5,11902,52026 +87189,52,10,293167,53176 +87190,105,7,12104,71251 +87191,147,1,405473,1800054 +87192,20,2,10204,1487709 +87193,3,5,331161,966927 +87194,113,9,177677,1459864 +87195,387,10,10488,66218 +87196,187,11,9032,1405232 +87197,234,1,88375,936151 +87198,3,5,12481,70335 +87199,53,2,3580,461 +87200,269,9,32657,9041 +87201,190,7,242310,1367128 +87202,22,9,11377,1599623 +87203,20,2,266102,1780045 +87204,234,1,126947,1038036 +87205,413,11,198795,31867 +87206,5,10,126415,148059 +87207,317,10,258147,1020818 +87208,234,1,28325,31775 +87209,269,9,149511,1536613 +87210,40,1,220820,75587 +87211,413,11,9474,4670 +87212,273,7,222517,38588 +87213,75,5,314371,1410581 +87214,234,1,9602,4610 +87215,317,10,347630,1484888 +87216,204,9,184741,14448 +87217,3,5,201,904 +87218,52,10,24828,51962 +87219,53,2,86820,1575336 +87220,317,10,151509,94158 +87221,269,9,188102,1800810 +87222,387,10,80316,1931 +87223,387,10,2267,10295 +87224,273,7,27150,1612610 +87225,268,7,72733,1095119 +87226,234,1,10696,6198 +87227,77,10,224,2814 +87228,269,9,212530,72536 +87229,317,10,208305,1000736 +87230,234,1,222030,586103 +87231,406,6,75,1460602 +87232,15,6,9514,130695 +87233,198,6,193893,1790345 +87234,415,3,186869,1810606 +87235,234,1,316042,84021 +87236,269,9,347328,1507575 +87237,148,9,11045,9968 +87238,273,7,68976,554823 +87239,328,6,6171,1404225 +87240,11,6,122662,1136051 +87241,413,11,86297,4359 +87242,413,11,78691,1573167 +87243,169,3,22267,1368867 +87244,234,1,35735,114678 +87245,234,1,77859,99875 +87246,5,10,2516,25631 +87247,52,10,99599,1554171 +87248,269,9,169298,972052 +87249,413,11,22267,1635 +87250,127,3,384737,1634439 +87251,232,10,121230,88579 +87252,387,10,32996,1008623 +87253,317,10,62732,230717 +87254,147,1,52661,1745116 +87255,398,9,10391,1317673 +87256,317,10,82134,169730 +87257,25,2,10727,1465596 +87258,413,11,336845,25747 +87259,234,1,148034,1009298 +87260,317,10,280840,16435 +87261,196,7,72545,1445838 +87262,53,2,84636,1492215 +87263,387,10,79025,138209 +87264,387,10,129518,1089974 +87265,234,1,30163,38507 +87266,234,1,110573,238377 +87267,234,1,106546,93922 +87268,301,5,10326,1446661 +87269,234,1,35451,78268 +87270,239,5,14181,1536537 +87271,234,1,179549,1037369 +87272,415,3,345922,1815620 +87273,235,5,3172,1536972 +87274,273,7,227552,46324 +87275,234,1,10257,64423 +87276,269,9,9563,3188 +87277,250,11,13614,1610050 +87278,317,10,315850,231287 +87279,269,9,2009,39964 +87280,373,7,238589,1345263 +87281,286,3,77825,582563 +87282,387,10,21570,76813 +87283,286,3,26983,96732 +87284,143,7,77949,16683 +87285,234,1,311417,82714 +87286,273,7,779,11575 +87287,317,10,273167,149983 +87288,108,10,237549,126544 +87289,204,9,241258,1178366 +87290,53,2,101929,1493678 +87291,108,10,134155,6210 +87292,182,8,364088,1748533 +87293,397,7,162862,27969 +87294,153,6,283995,1483136 +87295,317,10,114438,37709 +87296,394,7,77246,1428852 +87297,234,1,78705,1018728 +87298,273,7,45649,78211 +87299,317,10,26152,146484 +87300,3,5,10087,6316 +87301,234,1,13986,35770 +87302,113,9,2567,18900 +87303,317,10,15020,84460 +87304,53,2,28384,6348 +87305,244,3,93350,1857013 +87306,298,5,7551,91123 +87307,269,9,10193,7889 +87308,269,9,332411,33625 +87309,317,10,352372,1118348 +87310,250,11,8619,1377234 +87311,234,1,369373,1571805 +87312,234,1,323315,1425660 +87313,412,9,14,1534970 +87314,273,7,43828,30104 +87315,415,3,15,3252 +87316,187,11,59965,1392085 +87317,415,3,29416,100289 +87318,204,9,32628,10523 +87319,317,10,24625,166776 +87320,3,5,43093,64823 +87321,226,2,28293,1530890 +87322,45,9,9438,1448424 +87323,413,11,85549,1506959 +87324,3,5,4478,37434 +87325,273,7,12089,1965 +87326,234,1,378227,85456 +87327,196,7,42418,1389134 +87328,234,1,40120,301901 +87329,5,10,214081,14354 +87330,289,6,140607,1550762 +87331,97,7,283995,1546875 +87332,317,10,18392,101105 +87333,203,1,46286,1380482 +87334,226,2,43441,1534169 +87335,234,1,213443,70862 +87336,97,7,84577,1392938 +87337,176,3,70667,1448310 +87338,317,10,43407,25468 +87339,317,10,96333,79726 +87340,268,7,1991,1420154 +87341,269,9,1427,11604 +87342,234,1,49038,141710 +87343,328,6,6947,1389572 +87344,269,9,1448,17255 +87345,273,7,31324,14861 +87346,203,1,279690,1518457 +87347,148,9,10336,960963 +87348,175,5,285270,1103647 +87349,234,1,303360,1502064 +87350,45,9,8988,1389611 +87351,204,9,9070,939990 +87352,273,7,323435,1000854 +87353,262,6,240832,1367818 +87354,259,3,13056,1708224 +87355,234,1,61580,480666 +87356,143,7,255343,1351723 +87357,219,11,129,1610869 +87358,3,5,43327,70821 +87359,217,3,634,1576021 +87360,317,10,347096,930333 +87361,3,5,44208,3148 +87362,273,7,809,5553 +87363,204,9,408537,122689 +87364,3,5,99318,3637 +87365,387,10,5393,43091 +87366,234,1,102161,100888 +87367,325,5,140554,1707852 +87368,317,10,152948,560101 +87369,317,10,103168,32179 +87370,97,7,246655,1367493 +87371,268,7,45988,1730427 +87372,234,1,13836,58375 +87373,181,7,202214,1183167 +87374,287,3,14145,1416973 +87375,53,2,7340,13589 +87376,75,5,384737,1410109 +87377,317,10,15749,34970 +87378,335,6,10674,1461391 +87379,234,1,295627,1368957 +87380,87,7,13185,1548129 +87381,234,1,13610,104051 +87382,273,7,146233,117992 +87383,273,7,19354,11575 +87384,413,11,2046,800 +87385,190,7,337339,1635187 +87386,413,11,2115,21727 +87387,234,1,9272,52629 +87388,413,11,8329,507252 +87389,3,5,35623,700 +87390,143,7,10204,117229 +87391,148,9,21451,14973 +87392,413,11,15022,1002912 +87393,387,10,38317,32895 +87394,3,5,13798,1565816 +87395,317,10,60189,230717 +87396,196,7,18,1376514 +87397,413,11,10394,45055 +87398,105,7,53693,1142662 +87399,387,10,11647,66719 +87400,234,1,40993,102511 +87401,143,7,17622,1377413 +87402,398,9,75761,576221 +87403,234,1,441043,1755735 +87404,234,1,75363,68424 +87405,234,1,9828,59651 +87406,387,10,9835,12936 +87407,204,9,66045,548013 +87408,234,1,255940,120970 +87409,273,7,811,12118 +87410,234,1,83896,81297 +87411,234,1,143876,1562550 +87412,413,11,10391,853 +87413,72,11,294254,1419730 +87414,180,7,458428,1820247 +87415,317,10,31921,39012 +87416,123,3,155765,1646980 +87417,387,10,136799,57744 +87418,317,10,30305,31037 +87419,179,2,22007,1323083 +87420,286,3,31364,70848 +87421,77,10,23107,1262421 +87422,269,9,57680,1226098 +87423,413,11,71329,1605707 +87424,57,2,2084,1411075 +87425,204,9,4476,543201 +87426,234,1,199575,1323509 +87427,269,9,12454,6379 +87428,317,10,207402,1190277 +87429,37,3,65973,1048404 +87430,386,5,395992,1545995 +87431,204,9,14372,1013566 +87432,52,10,10999,17310 +87433,413,11,5332,12759 +87434,226,2,44115,1532327 +87435,189,3,12103,1625924 +87436,3,5,6163,48311 +87437,413,11,340101,15731 +87438,226,2,38006,30182 +87439,273,7,39982,2722 +87440,357,3,12,1830790 +87441,387,10,11101,68023 +87442,413,11,157409,98251 +87443,269,9,264644,198641 +87444,234,1,87593,45405 +87445,75,5,168259,1411842 +87446,269,9,287628,1487265 +87447,317,10,85442,18910 +87448,273,7,9252,57009 +87449,53,2,7916,23816 +87450,234,1,14459,59958 +87451,289,6,48617,1368895 +87452,148,9,8842,62121 +87453,413,11,77381,11726 +87454,387,10,11134,46318 +87455,291,6,334074,1570217 +87456,234,1,322548,1095322 +87457,273,7,17483,28156 +87458,387,10,20364,87713 +87459,234,1,36968,68770 +87460,387,10,76600,2710 +87461,394,7,34723,1341336 +87462,175,5,324670,76593 +87463,166,9,14430,1521706 +87464,53,2,87514,22031 +87465,105,7,5155,41632 +87466,234,1,428398,107721 +87467,413,11,397837,1173410 +87468,289,6,14411,1460472 +87469,269,9,2990,11411 +87470,234,1,12716,25182 +87471,269,9,55823,32382 +87472,100,3,369885,1614057 +87473,317,10,105576,1038014 +87474,97,7,274857,40823 +87475,387,10,33273,3788 +87476,234,1,132185,90583 +87477,234,1,164558,57492 +87478,39,3,2567,1410982 +87479,269,9,212530,1196911 +87480,234,1,24479,6868 +87481,234,1,68097,70565 +87482,413,11,27711,92933 +87483,143,7,367147,85960 +87484,413,11,294272,11625 +87485,234,1,53999,141964 +87486,45,9,70074,582943 +87487,87,7,72545,563736 +87488,53,2,28452,1564489 +87489,200,3,19995,1401792 +87490,234,1,4960,202 +87491,97,7,69668,1374169 +87492,269,9,360249,6795 +87493,204,9,284052,983309 +87494,3,5,1890,2702 +87495,332,8,8916,1780707 +87496,269,9,11450,2243 +87497,317,10,53654,84657 +87498,273,7,332806,1889 +87499,20,2,12573,1017240 +87500,317,10,18440,105976 +87501,273,7,12561,425396 +87502,317,10,363890,1675388 +87503,226,2,11897,14681 +87504,413,11,105,1061 +87505,411,9,259695,1293581 +87506,75,5,424488,1438584 +87507,234,1,289190,968069 +87508,317,10,274060,122964 +87509,394,7,16436,1377262 +87510,302,9,61400,233076 +87511,66,11,320910,1668656 +87512,3,5,128842,17299 +87513,234,1,339547,507840 +87514,158,2,954,1319198 +87515,317,10,139244,162589 +87516,413,11,28510,62941 +87517,60,1,76203,1662136 +87518,234,1,42641,2891 +87519,200,3,10066,1458105 +87520,148,9,11236,1542808 +87521,3,5,45577,20136 +87522,413,11,26581,15384 +87523,413,11,194407,100578 +87524,3,5,198993,1452116 +87525,333,2,85494,1466927 +87526,204,9,33015,10523 +87527,5,10,6589,50583 +87528,234,1,245950,1317108 +87529,317,10,59115,142520 +87530,273,7,31561,2578 +87531,387,10,75315,82838 +87532,113,9,13393,1603665 +87533,413,11,40368,59946 +87534,387,10,25694,10601 +87535,317,10,252916,133433 +87536,52,10,8010,53867 +87537,273,7,9264,50715 +87538,45,9,158908,1521082 +87539,53,2,64807,9616 +87540,286,3,392660,1711573 +87541,143,7,60855,1396505 +87542,105,7,15022,82356 +87543,18,2,11618,1765783 +87544,234,1,163942,1012236 +87545,273,7,15762,29707 +87546,160,3,9946,1391697 +87547,333,2,340215,1630276 +87548,53,2,924,13551 +87549,387,10,293660,91269 +87550,387,10,32049,80246 +87551,234,1,111582,89914 +87552,234,1,180305,63303 +87553,175,5,10320,1536542 +87554,105,7,252680,1031536 +87555,250,11,163,1407823 +87556,273,7,2567,117 +87557,97,7,8915,1337462 +87558,148,9,23830,1020060 +87559,234,1,104739,130030 +87560,387,10,17780,123970 +87561,3,5,339530,135388 +87562,3,5,3085,17761 +87563,413,11,13090,41554 +87564,413,11,42252,34484 +87565,262,6,41283,1336716 +87566,387,10,14400,69987 +87567,387,10,6687,37948 +87568,175,5,74,1386920 +87569,182,8,379019,1780177 +87570,317,10,48153,11994 +87571,12,10,1724,18866 +87572,376,10,13792,75542 +87573,287,3,17144,1130777 +87574,360,3,9358,1441277 +87575,234,1,270081,82714 +87576,234,1,23668,40549 +87577,204,9,141733,1084756 +87578,204,9,11232,10575 +87579,270,9,1966,117220 +87580,3,5,58081,51748 +87581,3,5,364690,1670921 +87582,387,10,134209,119294 +87583,3,5,18417,11099 +87584,3,5,26758,13338 +87585,3,5,17136,10602 +87586,208,2,17175,1531510 +87587,317,10,51285,143732 +87588,317,10,322548,1494776 +87589,269,9,32577,1322142 +87590,268,7,9358,1400812 +87591,333,2,145135,1417865 +87592,169,3,167,1318092 +87593,262,6,218778,1621679 +87594,225,7,266856,1338971 +87595,3,5,41357,10005 +87596,52,10,42215,30700 +87597,53,2,356842,1325679 +87598,317,10,259835,98776 +87599,387,10,28820,44957 +87600,234,1,81687,37362 +87601,234,1,9793,58260 +87602,273,7,4147,153 +87603,331,3,693,1619089 +87604,234,1,414910,1503547 +87605,3,5,52894,1005320 +87606,3,5,259694,122220 +87607,387,10,13496,37159 +87608,148,9,11172,60135 +87609,234,1,7549,17268 +87610,413,11,3423,20792 +87611,317,10,333103,111745 +87612,387,10,11376,69218 +87613,5,10,36245,132483 +87614,387,10,87302,586462 +87615,269,9,6972,6203 +87616,53,2,163,5671 +87617,317,10,9404,120411 +87618,234,1,328631,125796 +87619,317,10,285840,190919 +87620,75,5,10344,1271804 +87621,160,3,6972,589294 +87622,413,11,33135,1304269 +87623,289,6,9023,1454032 +87624,45,9,152748,1461139 +87625,179,2,312138,1493435 +87626,387,10,211561,119430 +87627,45,9,601,9970 +87628,415,3,52021,1042415 +87629,234,1,16075,29226 +87630,75,5,373546,1542347 +87631,5,10,46875,137613 +87632,387,10,242240,14151 +87633,413,11,29805,12509 +87634,413,11,169881,1519283 +87635,3,5,58244,25744 +87636,196,7,14,15331 +87637,157,3,18557,61768 +87638,127,3,18405,1842601 +87639,360,9,9593,1410345 +87640,277,3,152736,1396796 +87641,53,2,52362,38229 +87642,148,9,458428,1820255 +87643,333,2,263115,1458878 +87644,105,7,24584,17252 +87645,234,1,44591,101709 +87646,60,1,28668,1605264 +87647,289,6,53211,155076 +87648,5,10,38684,120999 +87649,3,5,228339,1262851 +87650,175,5,206647,1392718 +87651,3,5,32274,6626 +87652,373,7,2047,1377220 +87653,204,9,284052,1326451 +87654,111,7,755,1433718 +87655,413,11,244,3254 +87656,413,11,39462,1358326 +87657,203,1,10488,1458872 +87658,387,10,44875,51677 +87659,234,1,325365,141475 +87660,273,7,79935,229965 +87661,75,5,9882,1550191 +87662,3,5,85196,41653 +87663,273,7,157,1729 +87664,317,10,84720,96696 +87665,179,2,206647,1319160 +87666,413,11,5494,43678 +87667,317,10,205939,1085735 +87668,317,10,63498,1062043 +87669,105,7,15661,38545 +87670,273,7,35026,35073 +87671,273,7,49365,583023 +87672,333,2,23397,959815 +87673,293,2,28452,1643879 +87674,311,9,8869,1738084 +87675,387,10,10671,52096 +87676,203,1,10299,1588449 +87677,52,10,21208,1131836 +87678,269,9,30666,32641 +87679,127,3,126712,196258 +87680,99,3,6947,91069 +87681,287,3,312831,1594192 +87682,413,11,21711,4141 +87683,204,9,11377,14350 +87684,269,9,10900,61140 +87685,217,3,53949,1817836 +87686,317,10,270470,1201902 +87687,105,7,77859,1200256 +87688,234,1,18575,82310 +87689,273,7,1448,17251 +87690,269,9,330947,5632 +87691,234,1,99599,64992 +87692,53,2,274857,24258 +87693,75,5,263115,1437305 +87694,387,10,4893,39853 +87695,3,5,19957,27926 +87696,5,10,124527,153110 +87697,398,9,181533,1378676 +87698,269,9,66741,1317674 +87699,140,9,169,1677829 +87700,148,9,3870,18334 +87701,234,1,90634,1067469 +87702,148,9,245597,1805396 +87703,3,5,9543,2702 +87704,196,7,302026,1412984 +87705,3,5,9690,70149 +87706,234,1,357706,1504437 +87707,262,6,140607,1339450 +87708,234,1,290764,568279 +87709,180,7,154575,1544867 +87710,413,11,310119,222357 +87711,269,9,46094,75798 +87712,105,7,230428,19016 +87713,269,9,10491,23769 +87714,333,2,4825,1325580 +87715,269,9,46857,137612 +87716,387,10,64202,34931 +87717,262,6,24624,1368649 +87718,52,10,27549,98132 +87719,317,10,25074,1395646 +87720,234,1,113175,178093 +87721,187,11,351211,1403861 +87722,234,1,78231,1311102 +87723,105,7,107445,1041615 +87724,304,10,52264,226075 +87725,317,10,397520,270400 +87726,317,10,335897,1454616 +87727,387,10,43390,19094 +87728,209,7,345925,1364801 +87729,273,7,43967,555152 +87730,387,10,222935,77950 +87731,234,1,42187,22012 +87732,209,7,243568,1433087 +87733,181,7,10909,12533 +87734,53,2,37936,1474738 +87735,61,7,9472,1553026 +87736,304,10,29259,35585 +87737,269,9,57749,62744 +87738,373,7,218425,1451563 +87739,328,6,159211,1438457 +87740,53,2,30361,35994 +87741,269,9,430826,1731916 +87742,234,1,316170,28256 +87743,317,10,315335,49051 +87744,273,7,2160,4681 +87745,5,10,11007,67775 +87746,387,10,2033,20896 +87747,387,10,47900,1537651 +87748,270,9,118,1855206 +87749,234,1,207696,1190631 +87750,317,10,20411,11013 +87751,398,9,435,1391756 +87752,413,11,2990,29380 +87753,273,7,312221,928158 +87754,273,7,242076,1299359 +87755,234,1,155386,1657763 +87756,203,1,66193,1402537 +87757,53,2,55544,1309016 +87758,40,1,5924,1725322 +87759,387,10,54309,78530 +87760,226,2,22279,1458416 +87761,3,5,95169,70821 +87762,234,1,377847,995513 +87763,273,7,333385,40384 +87764,234,1,77645,97573 +87765,178,10,27259,1455392 +87766,3,5,17831,127523 +87767,387,10,3520,32375 +87768,317,10,76785,84931 +87769,234,1,84774,1618227 +87770,413,11,8970,13584 +87771,175,5,8053,1444922 +87772,387,10,34650,14567 +87773,314,2,755,144146 +87774,105,7,131737,6205 +87775,273,7,573,7752 +87776,387,10,61151,153245 +87777,196,7,193893,1871238 +87778,143,7,52705,3571 +87779,234,1,448538,555506 +87780,273,7,300487,1380789 +87781,286,3,52109,11415 +87782,262,6,52520,3958 +87783,328,6,7299,1433725 +87784,190,7,351211,1536447 +87785,123,3,109170,1227289 +87786,387,10,297288,72769 +87787,113,9,10491,1403789 +87788,105,7,9894,9039 +87789,287,3,28739,1407889 +87790,157,3,19157,19292 +87791,148,9,10710,2529 +87792,245,3,403605,1771813 +87793,52,10,412209,1104837 +87794,387,10,52999,931888 +87795,234,1,240733,109583 +87796,234,1,70801,559559 +87797,45,9,46738,1469621 +87798,74,5,220820,1885856 +87799,303,3,46261,56786 +87800,289,6,72640,222469 +87801,3,5,96035,1037369 +87802,413,11,37514,1192505 +87803,196,7,18937,1409271 +87804,3,5,118490,39955 +87805,387,10,87612,935304 +87806,234,1,55756,116155 +87807,204,9,38437,8622 +87808,209,7,9472,1409877 +87809,269,9,57996,27864 +87810,3,5,47404,18576 +87811,373,7,126889,113073 +87812,413,11,9877,13227 +87813,234,1,49365,583023 +87814,75,5,28110,56130 +87815,373,7,10070,8166 +87816,225,7,228970,113043 +87817,204,9,3104,29669 +87818,317,10,74718,572354 +87819,192,5,55534,1438624 +87820,397,7,121003,27969 +87821,401,6,2300,1451265 +87822,234,1,28484,8823 +87823,52,10,57230,1097807 +87824,3,5,73969,98003 +87825,3,5,72648,45497 +87826,269,9,353686,1186280 +87827,203,1,94671,57705 +87828,413,11,9756,63962 +87829,317,10,32559,480666 +87830,234,1,30695,107252 +87831,45,9,245703,1612808 +87832,234,1,297668,15663 +87833,413,11,361183,51482 +87834,234,1,293085,1171039 +87835,413,11,12636,73193 +87836,208,2,370234,1372509 +87837,203,1,14137,1407697 +87838,226,2,97614,1419718 +87839,413,11,194393,25169 +87840,387,10,19957,72062 +87841,333,2,10491,1413028 +87842,234,1,149883,109744 +87843,143,7,83430,54261 +87844,203,1,324670,1399644 +87845,204,9,16784,1449162 +87846,269,9,13842,1380052 +87847,204,9,128669,127200 +87848,413,11,79316,55954 +87849,60,1,147722,1359838 +87850,328,6,240832,1412916 +87851,273,7,326285,2949 +87852,204,9,38157,1326093 +87853,273,7,41035,30669 +87854,32,8,9475,1449180 +87855,12,10,353595,20008 +87856,148,9,10724,6925 +87857,317,10,265180,68519 +87858,328,6,243568,1685943 +87859,317,10,37665,937699 +87860,387,10,1976,1172557 +87861,262,6,88273,1727719 +87862,387,10,27105,83455 +87863,387,10,32716,109608 +87864,105,7,28171,100026 +87865,53,2,209032,1192398 +87866,273,7,74942,47452 +87867,387,10,39979,50739 +87868,3,5,5915,18494 +87869,203,1,25768,122982 +87870,373,7,8292,1341858 +87871,179,2,15476,1327252 +87872,269,9,213681,54585 +87873,270,9,17609,1400324 +87874,203,1,36094,1484538 +87875,3,5,10946,67596 +87876,286,3,172004,1015902 +87877,273,7,284296,928158 +87878,269,9,43241,959007 +87879,387,10,58905,1030098 +87880,196,7,197,1405382 +87881,317,10,122019,150339 +87882,226,2,28176,1425810 +87883,413,11,139826,1123195 +87884,46,5,194,1735710 +87885,148,9,32390,20507 +87886,5,10,68123,1877767 +87887,317,10,115023,1079955 +87888,198,6,280092,1548077 +87889,3,5,1377,16750 +87890,273,7,32610,13983 +87891,105,7,129229,1088723 +87892,53,2,351242,1639082 +87893,262,6,19995,1327028 +87894,269,9,7555,16492 +87895,3,5,1838,19348 +87896,234,1,216580,372442 +87897,333,2,1073,1323090 +87898,269,9,65646,1384701 +87899,317,10,16441,58248 +87900,21,3,36373,14677 +87901,67,10,109329,557237 +87902,273,7,45827,1760 +87903,196,7,1877,1319367 +87904,209,7,2503,1406789 +87905,143,7,226140,1377413 +87906,207,3,2567,13050 +87907,3,5,42267,19102 +87908,234,1,15476,119419 +87909,234,1,80219,1056130 +87910,226,2,578,1430210 +87911,413,11,129553,64118 +87912,203,1,286372,1378153 +87913,317,10,128767,82592 +87914,250,11,12783,1416481 +87915,317,10,11917,51021 +87916,143,7,284288,1763421 +87917,22,9,188102,1845753 +87918,113,9,241239,1416804 +87919,3,5,56448,12235 +87920,413,11,265208,20297 +87921,333,2,328429,1578228 +87922,234,1,85544,932316 +87923,269,9,353462,34858 +87924,286,3,82622,928293 +87925,204,9,54287,1497678 +87926,244,3,7220,1172893 +87927,203,1,259997,1302527 +87928,273,7,16175,40438 +87929,92,7,25918,12146 +87930,387,10,20530,131010 +87931,5,10,18776,122983 +87932,413,11,9013,909 +87933,413,11,183827,42065 +87934,310,3,180252,141167 +87935,169,3,7454,1407668 +87936,387,10,43641,113901 +87937,53,2,74126,1453075 +87938,317,10,319396,1390354 +87939,105,7,81110,30256 +87940,52,10,26849,141604 +87941,323,10,35016,96972 +87942,317,10,429174,1063375 +87943,333,2,347031,1614171 +87944,204,9,13437,1106829 +87945,234,1,88320,65852 +87946,317,10,360784,1179419 +87947,387,10,71041,38256 +87948,289,6,9297,1462687 +87949,317,10,233487,109583 +87950,373,7,379,92377 +87951,234,1,15639,130822 +87952,204,9,56669,1411685 +87953,3,5,45827,12119 +87954,303,3,245168,1291116 +87955,108,10,18971,6210 +87956,234,1,63045,63852 +87957,5,10,10803,1885 +87958,77,10,157,1791 +87959,286,3,302036,1384000 +87960,53,2,9358,27160 +87961,277,3,21927,1416947 +87962,75,5,9028,1125594 +87963,317,10,41516,1459440 +87964,289,6,354859,1884718 +87965,234,1,83346,564 +87966,413,11,12089,38507 +87967,53,2,9890,5493 +87968,286,3,62439,1295499 +87969,333,2,7916,1352923 +87970,75,5,16996,1559544 +87971,232,10,80168,105450 +87972,234,1,82448,232123 +87973,317,10,42533,15959 +87974,182,8,264560,1387542 +87975,273,7,24554,58289 +87976,387,10,168541,1055277 +87977,234,1,115427,85637 +87978,226,2,283384,1429333 +87979,289,6,161880,1124650 +87980,5,10,150712,129284 +87981,413,11,41073,29662 +87982,3,5,76714,12242 +87983,360,9,10950,1417415 +87984,105,7,6079,11690 +87985,97,7,328111,1572873 +87986,52,10,80928,5456 +87987,333,2,70667,1448309 +87988,66,11,46738,1536642 +87989,234,1,45565,3192 +87990,387,10,58244,52244 +87991,158,2,12499,1536090 +87992,196,7,284564,1558857 +87993,234,1,9551,57917 +87994,150,6,36175,1306763 +87995,204,9,10909,7233 +87996,234,1,115161,2053 +87997,52,10,47955,560055 +87998,97,7,159211,1438451 +87999,234,1,310568,229135 +88000,52,10,84178,221944 +88001,387,10,936,1927 +88002,5,10,122698,6596 +88003,204,9,267579,1583158 +88004,3,5,325803,1428034 +88005,52,10,983,14744 +88006,234,1,31277,97864 +88007,273,7,33146,37241 +88008,317,10,179812,1162324 +88009,198,6,140607,1550772 +88010,317,10,53168,1136392 +88011,273,7,20941,54983 +88012,301,5,378441,1797422 +88013,196,7,71668,1063965 +88014,277,3,98536,4315 +88015,387,10,228034,146801 +88016,317,10,91961,34752 +88017,317,10,219466,116607 +88018,234,1,52418,231478 +88019,239,5,312831,1594164 +88020,234,1,982,13776 +88021,53,2,42168,1188377 +88022,286,3,367732,1440269 +88023,333,2,14811,931836 +88024,72,11,399790,1418338 +88025,317,10,89551,115372 +88026,373,7,18,16177 +88027,204,9,335778,1621155 +88028,317,10,64936,1150 +88029,371,3,2924,1803778 +88030,387,10,29224,69187 +88031,187,11,328111,1352422 +88032,234,1,3023,29627 +88033,77,10,573,7749 +88034,234,1,16135,51918 +88035,387,10,26670,65021 +88036,75,5,258251,1348595 +88037,179,2,10391,1404851 +88038,387,10,265314,1310888 +88039,269,9,4291,20385 +88040,234,1,13562,74659 +88041,413,11,1969,62434 +88042,179,2,257088,1631404 +88043,269,9,69974,557669 +88044,97,7,10320,1367493 +88045,45,9,76757,1482834 +88046,317,10,42448,47773 +88047,333,2,51947,30939 +88048,188,8,857,1118383 +88049,166,9,435,1391748 +88050,317,10,74942,71342 +88051,273,7,159095,582922 +88052,140,9,308269,1447900 +88053,3,5,5,3113 +88054,373,7,271714,1368864 +88055,53,2,34181,1876050 +88056,273,7,9585,1760 +88057,166,9,1966,1398088 +88058,182,8,250066,1490951 +88059,269,9,131737,1319728 +88060,317,10,105584,96369 +88061,413,11,26593,50976 +88062,52,10,64942,1125476 +88063,45,9,168027,1460745 +88064,3,5,84720,117025 +88065,413,11,63493,852 +88066,239,5,159667,1849512 +88067,273,7,12122,71345 +88068,234,1,98631,67075 +88069,3,5,64215,1354324 +88070,234,1,68184,550489 +88071,3,5,325263,80370 +88072,413,11,116979,1165329 +88073,75,5,9358,1441325 +88074,317,10,104277,58614 +88075,92,7,9352,113087 +88076,330,3,263115,1562408 +88077,3,5,196235,43938 +88078,204,9,300669,1697989 +88079,273,7,300654,1208226 +88080,262,6,70074,1407359 +88081,3,5,277687,1604744 +88082,387,10,18899,58052 +88083,387,10,369524,2163 +88084,3,5,28775,7648 +88085,317,10,14804,143018 +88086,234,1,25373,106491 +88087,95,8,181533,1380464 +88088,250,11,376501,1181371 +88089,413,11,27031,552638 +88090,169,3,283445,1548090 +88091,413,11,11653,70112 +88092,188,8,39979,1130808 +88093,273,7,333663,929145 +88094,204,9,34650,4349 +88095,368,7,11045,1511063 +88096,289,6,32428,69134 +88097,5,10,11403,70302 +88098,3,5,10204,10709 +88099,413,11,366045,563696 +88100,3,5,34326,230529 +88101,325,5,20357,85971 +88102,286,3,33273,16982 +88103,289,6,3933,1448074 +88104,244,3,30666,1237181 +88105,317,10,79935,588336 +88106,234,1,189820,110348 +88107,273,7,82817,46266 +88108,413,11,110491,1049455 +88109,97,7,397837,1039265 +88110,158,2,246655,1570586 +88111,148,9,312831,1568953 +88112,200,3,419430,1303683 +88113,387,10,12220,62055 +88114,413,11,140818,1143761 +88115,349,1,10198,1615576 +88116,234,1,70736,60700 +88117,387,10,954,11057 +88118,273,7,269149,15347 +88119,317,10,209251,1291115 +88120,387,10,27472,584535 +88121,387,10,12255,71954 +88122,53,2,1690,1204440 +88123,273,7,117212,72510 +88124,53,2,209263,971528 +88125,53,2,10929,960600 +88126,234,1,102534,124856 +88127,317,10,183412,1023672 +88128,413,11,4964,6742 +88129,77,10,18238,82824 +88130,3,5,131366,49213 +88131,234,1,291270,1019303 +88132,208,2,14137,1335212 +88133,226,2,922,15430 +88134,234,1,78694,80118 +88135,373,7,10916,1402112 +88136,234,1,192623,231550 +88137,3,5,104556,13809 +88138,387,10,6038,18923 +88139,273,7,26864,1801310 +88140,234,1,450530,17350 +88141,136,1,15653,1767062 +88142,269,9,2002,7702 +88143,413,11,8014,53618 +88144,234,1,61008,75990 +88145,200,3,2567,1335209 +88146,53,2,59115,80847 +88147,413,11,42251,127608 +88148,5,10,45244,1605636 +88149,413,11,96089,1113689 +88150,387,10,22140,42 +88151,234,1,60082,141825 +88152,52,10,172908,1361751 +88153,234,1,2108,11505 +88154,143,7,1912,17367 +88155,373,7,38322,579405 +88156,273,7,1838,19352 +88157,203,1,244268,1395687 +88158,196,7,41604,554887 +88159,273,7,98094,1195872 +88160,105,7,469172,134463 +88161,62,3,38356,1463568 +88162,234,1,12516,5026 +88163,148,9,338676,1662690 +88164,209,7,69668,12945 +88165,39,3,43522,1411301 +88166,3,5,40087,22544 +88167,269,9,287903,9420 +88168,413,11,292387,1038970 +88169,148,9,28304,14973 +88170,53,2,1595,17854 +88171,387,10,268212,14151 +88172,387,10,2687,26977 +88173,3,5,2994,29886 +88174,204,9,115782,7733 +88175,234,1,388055,1591876 +88176,333,2,16177,1621062 +88177,317,10,213110,17311 +88178,53,2,9675,35514 +88179,234,1,80410,23799 +88180,52,10,134732,1216977 +88181,53,2,6440,5332 +88182,158,2,9472,1532594 +88183,317,10,358895,1612472 +88184,3,5,22494,1106425 +88185,262,6,323435,1571054 +88186,175,5,146243,1403196 +88187,148,9,15556,17221 +88188,387,10,293863,225499 +88189,269,9,246655,1314 +88190,3,5,109251,41186 +88191,269,9,323675,1521395 +88192,5,10,201223,1195731 +88193,3,5,57816,1095835 +88194,204,9,47310,27937 +88195,234,1,48466,62047 +88196,203,1,2274,1465673 +88197,296,3,4248,1667247 +88198,40,1,74,1102140 +88199,148,9,173153,224389 +88200,234,1,22554,88912 +88201,413,11,30126,69937 +88202,387,10,299,4358 +88203,3,5,437122,1755174 +88204,317,10,144229,15872 +88205,53,2,336011,1149914 +88206,5,10,32029,1234544 +88207,387,10,60853,101887 +88208,105,7,14207,11468 +88209,46,5,9902,1840699 +88210,286,3,80720,132535 +88211,5,10,30036,31063 +88212,97,7,20126,1302372 +88213,273,7,124157,1294908 +88214,161,6,2675,1674670 +88215,387,10,36288,2989 +88216,169,3,44115,14719 +88217,250,11,329440,1622456 +88218,160,3,26390,206398 +88219,234,1,282553,1161464 +88220,387,10,123103,86500 +88221,317,10,95140,44130 +88222,258,9,26809,1447347 +88223,204,9,13965,76205 +88224,234,1,27224,63713 +88225,234,1,43049,39743 +88226,373,7,251,56765 +88227,52,10,24397,1385920 +88228,289,6,328111,1479526 +88229,148,9,109441,10010 +88230,269,9,3595,7855 +88231,268,7,277355,1369376 +88232,67,10,72640,5452 +88233,234,1,6643,6593 +88234,269,9,13836,437 +88235,387,10,43692,3599 +88236,122,8,2567,1585900 +88237,234,1,30143,929972 +88238,55,5,374473,1650282 +88239,234,1,4613,38572 +88240,39,3,755,1897886 +88241,180,7,108222,8511 +88242,5,10,36375,115363 +88243,234,1,77283,109586 +88244,204,9,109491,930189 +88245,273,7,93457,7728 +88246,187,11,188102,1834277 +88247,273,7,169869,17558 +88248,234,1,17046,58164 +88249,286,3,18731,46325 +88250,3,5,43277,16750 +88251,105,7,40221,9202 +88252,317,10,448449,92561 +88253,5,10,42472,1167721 +88254,203,1,176,1533037 +88255,175,5,9543,1386920 +88256,291,6,28263,15494 +88257,105,7,42242,14930 +88258,187,11,82,1335078 +88259,286,3,42260,3769 +88260,143,7,317,1599488 +88261,317,10,18557,222102 +88262,373,7,2300,1401562 +88263,105,7,131343,966481 +88264,387,10,4413,37161 +88265,204,9,27414,1281017 +88266,234,1,42871,29907 +88267,52,10,70313,105735 +88268,234,1,110123,177876 +88269,3,5,69,432 +88270,413,11,68976,22599 +88271,398,9,2978,14341 +88272,204,9,18405,1518764 +88273,328,6,76341,60267 +88274,234,1,42684,6038 +88275,277,3,35284,1582749 +88276,301,5,277778,1377837 +88277,187,11,306966,1572874 +88278,273,7,21148,20953 +88279,3,5,104744,1093432 +88280,413,11,321779,1032823 +88281,413,11,3484,22599 +88282,413,11,9028,23363 +88283,289,6,9514,1642528 +88284,273,7,8988,11098 +88285,387,10,33613,95405 +88286,262,6,201085,1002652 +88287,105,7,66224,584950 +88288,234,1,55763,116155 +88289,209,7,5924,1274141 +88290,387,10,201429,1376329 +88291,387,10,117942,103253 +88292,180,7,705,10605 +88293,187,11,1251,113044 +88294,148,9,32610,9063 +88295,387,10,44902,84237 +88296,198,6,109439,1868203 +88297,387,10,76494,64829 +88298,301,5,263115,1377132 +88299,234,1,115023,5844 +88300,317,10,28,8643 +88301,413,11,24448,229974 +88302,175,5,109491,1391389 +88303,220,7,91961,17915 +88304,317,10,38772,4181 +88305,234,1,47084,1227885 +88306,105,7,341007,1706353 +88307,413,11,95516,1066409 +88308,317,10,78339,583767 +88309,105,7,448847,1301635 +88310,269,9,6023,7234 +88311,187,7,1624,228439 +88312,317,10,456781,1813312 +88313,37,3,393407,1180402 +88314,234,1,188161,52139 +88315,64,6,383538,1783010 +88316,269,9,2978,5133 +88317,346,3,9532,1407827 +88318,83,2,354859,1738669 +88319,317,10,127803,1085815 +88320,413,11,407559,1546194 +88321,234,1,274127,189655 +88322,234,1,82321,921570 +88323,53,2,14811,10011 +88324,143,7,189,85960 +88325,317,10,110887,10807 +88326,327,7,22881,1355878 +88327,234,1,11361,32813 +88328,204,9,60855,1389418 +88329,189,3,76163,1368886 +88330,273,7,15089,79604 +88331,75,5,16997,1183884 +88332,60,1,924,1551660 +88333,160,3,100110,1370962 +88334,317,10,773,16961 +88335,269,9,64215,1354325 +88336,53,2,19912,1017017 +88337,317,10,327982,1158259 +88338,143,7,127585,113075 +88339,105,7,261439,10724 +88340,3,5,84903,17761 +88341,304,10,183015,33832 +88342,273,7,159095,1300065 +88343,327,7,169,16177 +88344,208,2,286657,1354697 +88345,413,11,18098,29488 +88346,317,10,263627,1514278 +88347,169,3,4413,1393387 +88348,3,5,38162,22057 +88349,135,3,116463,1691511 +88350,179,2,274857,1327792 +88351,269,9,11338,7186 +88352,182,8,375366,1740776 +88353,413,11,53128,1553681 +88354,413,11,85350,580 +88355,317,10,33931,14875 +88356,333,2,11137,1525577 +88357,317,10,27095,1111075 +88358,387,10,10847,61021 +88359,301,5,169881,1403925 +88360,387,10,12601,73061 +88361,3,5,33364,2654 +88362,87,7,334527,1754129 +88363,262,6,318781,1379995 +88364,203,1,47112,1431633 +88365,387,10,31773,128810 +88366,387,10,166262,1147821 +88367,305,9,118257,1618200 +88368,273,7,127424,1489713 +88369,187,11,9877,1392901 +88370,132,2,8617,578729 +88371,273,7,26946,91999 +88372,269,9,10632,10629 +88373,3,5,430834,1732150 +88374,204,9,56599,1057919 +88375,317,10,22256,588114 +88376,75,5,337339,1439104 +88377,413,11,481,6529 +88378,198,6,315837,1797229 +88379,53,2,300155,957628 +88380,332,8,435,1574650 +88381,3,5,174925,558286 +88382,387,10,44718,208214 +88383,52,10,47561,19244 +88384,187,11,9902,132607 +88385,203,1,69,1400540 +88386,234,1,177474,39996 +88387,317,10,5759,45405 +88388,75,5,184363,1601860 +88389,413,11,413762,1035076 +88390,3,5,93492,985182 +88391,234,1,185354,83263 +88392,234,1,20123,15254 +88393,234,1,307113,123367 +88394,398,9,8869,1429244 +88395,179,2,259830,1340729 +88396,198,6,181533,1543221 +88397,286,3,159211,570348 +88398,388,9,10999,1338672 +88399,273,7,2169,22179 +88400,3,5,1995,17629 +88401,306,7,197611,109246 +88402,234,1,108664,1044765 +88403,289,6,9514,1642524 +88404,287,3,279690,548598 +88405,3,5,2898,1527 +88406,413,11,1833,9646 +88407,289,6,35,1457214 +88408,287,3,27346,101608 +88409,234,1,9095,3224 +88410,244,3,14372,1569884 +88411,3,5,30995,1861811 +88412,317,10,26390,95324 +88413,60,1,33336,1061063 +88414,273,7,58080,18837 +88415,357,3,19995,1394286 +88416,287,3,28893,102343 +88417,5,10,51947,1357979 +88418,413,11,9070,10957 +88419,22,9,169,1877161 +88420,72,11,1647,1717847 +88421,204,9,10440,961164 +88422,3,5,50318,16334 +88423,234,1,116733,128291 +88424,3,5,251421,2760 +88425,182,8,330459,1500883 +88426,187,11,246655,1399057 +88427,148,9,211879,1596327 +88428,411,3,1995,10497 +88429,413,11,307081,58871 +88430,301,5,222935,1726767 +88431,269,9,116979,61140 +88432,3,5,334394,1449803 +88433,72,11,10865,1552874 +88434,234,1,14809,1004922 +88435,387,10,817,14172 +88436,234,1,58903,57898 +88437,317,10,16080,117488 +88438,317,10,44458,231750 +88439,105,7,50780,55177 +88440,158,2,209112,1494535 +88441,269,9,26331,9869 +88442,32,8,109424,1408394 +88443,204,9,27259,1094430 +88444,53,2,1073,1207715 +88445,53,2,28031,1516265 +88446,387,10,49853,16227 +88447,317,10,43001,605481 +88448,169,3,1125,1550830 +88449,286,3,130272,1670532 +88450,413,11,5965,42371 +88451,200,3,341174,1396802 +88452,45,9,76170,1401669 +88453,191,6,369885,1790952 +88454,317,10,126016,1895325 +88455,204,9,15239,1072644 +88456,148,9,52520,53114 +88457,3,5,31287,70810 +88458,328,6,16996,1532731 +88459,317,10,175822,19329 +88460,53,2,32552,8717 +88461,317,10,197849,146827 +88462,413,11,13495,413 +88463,234,1,13713,78489 +88464,234,1,46228,1059621 +88465,87,7,44129,1555158 +88466,234,1,217341,28976 +88467,75,5,33729,1166386 +88468,234,1,84907,126837 +88469,413,11,45132,56716 +88470,387,10,62567,12362 +88471,52,10,257088,15304 +88472,3,5,322518,63801 +88473,333,2,7299,1433708 +88474,45,9,59115,582888 +88475,387,10,128215,83415 +88476,234,1,263627,1362798 +88477,3,5,37534,59929 +88478,277,7,53949,1817834 +88479,53,2,19338,583084 +88480,413,11,69784,423011 +88481,413,11,413421,85056 +88482,32,8,10665,1896001 +88483,232,10,168217,34741 +88484,413,11,30690,12419 +88485,53,2,26914,41127 +88486,234,1,21141,56506 +88487,413,11,82448,782144 +88488,3,5,9889,8523 +88489,333,2,11975,1416096 +88490,415,3,39462,18602 +88491,179,2,19688,1701616 +88492,387,10,4248,35690 +88493,77,10,5237,42175 +88494,234,1,335874,1467662 +88495,387,10,24655,197209 +88496,155,3,1902,1830649 +88497,160,3,12594,180830 +88498,286,3,28340,1795352 +88499,105,7,81687,17667 +88500,317,10,17691,80728 +88501,239,5,341174,1738106 +88502,3,5,24679,356 +88503,179,2,6068,1206905 +88504,105,7,5915,46590 +88505,317,10,53805,78530 +88506,180,7,55836,54368 +88507,53,2,23048,965666 +88508,317,10,352197,68929 +88509,3,5,112083,13972 +88510,204,9,2675,21568 +88511,273,7,45431,550893 +88512,333,2,16442,7771 +88513,234,1,10436,1032 +88514,333,2,45244,1418316 +88515,75,5,949,1409831 +88516,49,7,121598,1338133 +88517,104,7,318553,1647025 +88518,413,11,308269,1447894 +88519,148,9,254869,1417913 +88520,317,10,407559,90609 +88521,113,9,6947,11713 +88522,234,1,9840,19377 +88523,234,1,114719,941809 +88524,413,11,272878,1264 +88525,204,9,9664,80424 +88526,3,5,26119,14456 +88527,143,7,539,7310 +88528,387,10,169869,179474 +88529,175,5,47112,1421657 +88530,22,9,965,959193 +88531,5,10,17820,18739 +88532,269,9,20941,40547 +88533,234,1,105906,38595 +88534,53,2,17479,582252 +88535,387,10,175998,103355 +88536,413,11,141489,133435 +88537,387,10,10691,54047 +88538,269,9,2604,5709 +88539,61,7,8870,1546585 +88540,317,10,353979,1147923 +88541,198,6,257088,1586117 +88542,387,10,11172,18323 +88543,415,3,329865,1363859 +88544,127,3,11614,15913 +88545,387,10,11706,70300 +88546,75,5,116463,1691488 +88547,204,9,58704,1429015 +88548,317,10,97672,1309125 +88549,204,9,108222,7337 +88550,269,9,77930,9041 +88551,234,1,172908,4346 +88552,273,7,9438,58289 +88553,125,2,284052,1774240 +88554,387,10,14612,158858 +88555,53,2,38769,8509 +88556,269,9,412851,1598478 +88557,333,2,634,9161 +88558,333,2,26656,1454504 +88559,127,3,159201,1447518 +88560,413,11,16176,66760 +88561,289,6,24554,91771 +88562,269,9,10539,7888 +88563,325,5,93856,1409873 +88564,234,1,252853,18635 +88565,317,10,33923,10148 +88566,3,5,82817,32506 +88567,413,11,390526,1598599 +88568,209,7,13954,1377419 +88569,52,10,143092,120893 +88570,333,2,429838,1734276 +88571,162,6,638,9568 +88572,3,5,10972,51853 +88573,3,5,18238,76971 +88574,387,10,336890,449 +88575,269,9,10025,62061 +88576,289,6,13929,7929 +88577,387,10,357706,85519 +88578,234,1,49941,235808 +88579,234,1,45335,82800 +88580,317,10,79221,586156 +88581,278,6,40466,1380974 +88582,234,1,62046,18898 +88583,413,11,22404,14649 +88584,269,9,30289,1542284 +88585,317,10,407806,929825 +88586,187,11,76341,1002602 +88587,277,3,13616,1044111 +88588,317,10,469172,121585 +88589,204,9,8204,1327907 +88590,286,3,105583,1092208 +88591,236,8,17209,1616179 +88592,262,6,189,1401139 +88593,3,5,9451,35511 +88594,122,8,329865,1777653 +88595,75,5,7220,1423866 +88596,3,5,275269,1676435 +88597,203,1,9457,1410589 +88598,51,9,10590,1113960 +88599,234,1,224813,121781 +88600,273,7,83015,592417 +88601,164,3,18,1117347 +88602,5,10,78507,157 +88603,269,9,270851,1321929 +88604,387,10,44875,81286 +88605,413,11,12767,1809 +88606,387,10,175386,131600 +88607,155,3,153,10557 +88608,39,3,16442,1420557 +88609,127,3,33673,161961 +88610,269,9,14138,1452255 +88611,341,2,121598,1880925 +88612,203,1,278632,1582595 +88613,234,1,33127,110166 +88614,53,2,287,4061 +88615,7,3,9472,1042639 +88616,204,9,47404,9062 +88617,234,1,84718,99325 +88618,273,7,9607,37 +88619,413,11,118677,1031697 +88620,273,7,76543,1317463 +88621,273,7,31586,9251 +88622,175,5,1986,1129275 +88623,60,1,27443,1416053 +88624,234,1,21570,76813 +88625,317,10,41599,116326 +88626,387,10,118283,13778 +88627,387,10,1633,18251 +88628,287,3,206647,1411323 +88629,387,10,18939,83784 +88630,3,5,52358,16750 +88631,234,1,75577,89724 +88632,234,1,341886,1102370 +88633,148,9,71805,1644925 +88634,413,11,80717,1017813 +88635,3,5,45133,79975 +88636,317,10,210052,1193607 +88637,53,2,9893,20745 +88638,277,3,18,1440811 +88639,234,1,167073,77269 +88640,3,5,26173,1762 +88641,234,1,20646,17282 +88642,52,10,408220,1220930 +88643,148,9,242310,1321108 +88644,387,10,47536,25316 +88645,387,10,65904,55728 +88646,229,6,312831,1594178 +88647,273,7,10900,67700 +88648,166,9,277355,1335145 +88649,287,3,15472,1455302 +88650,53,2,99318,9064 +88651,5,10,63224,24534 +88652,346,3,149509,1407845 +88653,387,10,11231,68678 +88654,413,11,26390,53685 +88655,105,7,117550,30957 +88656,387,10,73430,13802 +88657,413,11,21544,28841 +88658,303,3,76163,40747 +88659,3,5,64936,1117287 +88660,373,7,99861,900 +88661,317,10,351211,83858 +88662,413,11,29444,1001368 +88663,415,3,508,7050 +88664,317,10,56948,145063 +88665,190,7,19719,85124 +88666,234,1,22910,31310 +88667,53,2,317,1599483 +88668,204,9,12591,1128963 +88669,387,10,875,4297 +88670,398,9,9946,958691 +88671,301,5,338,40766 +88672,387,10,552,7555 +88673,373,7,315664,134565 +88674,148,9,180576,16176 +88675,105,7,13616,57263 +88676,53,2,28421,13959 +88677,387,10,218778,1203521 +88678,234,1,64383,20442 +88679,317,10,41619,565529 +88680,239,5,5,148455 +88681,333,2,243940,1349966 +88682,208,2,38356,1323090 +88683,413,11,11161,68392 +88684,394,7,84178,1367667 +88685,53,2,6038,6688 +88686,387,10,429200,129561 +88687,5,10,24810,82620 +88688,273,7,70322,138451 +88689,53,2,16410,33263 +88690,234,1,425591,209513 +88691,169,3,102382,16658 +88692,182,8,257088,1553236 +88693,52,10,31445,115869 +88694,234,1,392386,109744 +88695,127,3,38356,1552521 +88696,3,5,25834,79626 +88697,234,1,354023,1106586 +88698,387,10,1448,17248 +88699,262,6,26656,1440849 +88700,221,3,11024,1577062 +88701,286,3,95516,1148115 +88702,413,11,38987,35332 +88703,387,10,106417,1047245 +88704,387,10,71945,30039 +88705,234,1,64481,5005 +88706,350,6,315837,1797213 +88707,277,3,45714,89542 +88708,387,10,214081,37761 +88709,175,5,99861,1510441 +88710,317,10,117251,20204 +88711,179,2,241239,1347750 +88712,208,2,181533,1732800 +88713,234,1,40990,44130 +88714,53,2,57201,4034 +88715,234,1,42941,134604 +88716,226,2,285848,1550280 +88717,3,5,44012,1017426 +88718,413,11,72856,29971 +88719,53,2,43277,9064 +88720,179,2,41283,1440306 +88721,413,11,329289,1548028 +88722,234,1,199374,225517 +88723,333,2,14979,1330612 +88724,72,11,379,7493 +88725,12,10,1497,19503 +88726,289,6,72105,1455534 +88727,387,10,107028,70997 +88728,132,2,6973,1412223 +88729,3,5,334527,110261 +88730,413,11,47046,1271299 +88731,203,1,338518,1193967 +88732,269,9,47876,10009 +88733,289,6,10674,1447375 +88734,234,1,13072,77076 +88735,333,2,3145,10407 +88736,234,1,54198,21306 +88737,234,1,252520,240774 +88738,148,9,4012,5886 +88739,234,1,13805,35694 +88740,317,10,122928,239912 +88741,387,10,43514,50567 +88742,373,7,10921,1402137 +88743,328,6,225728,1571981 +88744,413,11,9426,310 +88745,234,1,17479,107762 +88746,204,9,12622,1132470 +88747,75,5,312221,1458133 +88748,234,1,70051,127537 +88749,270,9,6947,1573080 +88750,317,10,25645,65955 +88751,234,1,64983,96627 +88752,3,5,44669,14431 +88753,413,11,4806,12970 +88754,234,1,353464,113667 +88755,234,1,43026,73153 +88756,148,9,59678,39201 +88757,346,3,2300,1855779 +88758,390,6,10865,1738138 +88759,187,11,6171,91886 +88760,387,10,77165,563076 +88761,387,10,3085,4341 +88762,204,9,10948,137180 +88763,413,11,27599,3866 +88764,127,3,52661,161285 +88765,387,10,101231,31890 +88766,226,2,73835,1354972 +88767,152,2,623,8939 +88768,234,1,141489,1114891 +88769,154,3,5638,81538 +88770,3,5,9816,18257 +88771,234,1,373977,42274 +88772,413,11,366566,1884136 +88773,415,3,117212,1711773 +88774,317,10,13668,6340 +88775,234,1,10003,13015 +88776,3,5,137381,1107213 +88777,413,11,60599,17115 +88778,269,9,9914,60409 +88779,226,2,285270,1367921 +88780,289,6,9297,1462693 +88781,77,10,525,4610 +88782,234,1,26574,58448 +88783,105,7,135708,1103631 +88784,164,3,293660,78495 +88785,226,2,379,1444908 +88786,234,1,211166,1241 +88787,349,1,287233,1447452 +88788,387,10,46368,136156 +88789,387,10,16523,5953 +88790,413,11,168259,62813 +88791,387,10,11259,6159 +88792,5,10,2929,28970 +88793,3,5,630,9057 +88794,234,1,32331,95653 +88795,198,6,296524,1551892 +88796,317,10,305342,84075 +88797,373,7,13616,1425481 +88798,234,1,302435,994514 +88799,160,3,11975,6328 +88800,262,6,173153,1554972 +88801,286,3,79935,588339 +88802,234,1,117905,1169680 +88803,97,7,374473,1380898 +88804,234,1,157898,81165 +88805,52,10,20287,1332467 +88806,203,1,1724,18865 +88807,301,5,283445,1548095 +88808,234,1,13056,56359 +88809,234,1,276120,1517863 +88810,317,10,36971,116584 +88811,387,10,11907,18969 +88812,328,6,315837,1156674 +88813,180,7,166621,18371 +88814,269,9,104374,1619179 +88815,148,9,38807,7338 +88816,234,1,113119,1056324 +88817,229,6,274857,1829978 +88818,97,7,1956,20228 +88819,387,10,9607,58166 +88820,333,2,329805,1621911 +88821,97,7,12113,1367493 +88822,333,2,343173,1647132 +88823,262,6,55420,1400104 +88824,204,9,9296,9270 +88825,273,7,193893,23486 +88826,179,2,12499,1536088 +88827,317,10,340275,91585 +88828,203,1,63139,1459243 +88829,387,10,422,5397 +88830,387,10,82679,1236611 +88831,204,9,183171,11036 +88832,317,10,136619,147001 +88833,204,9,2454,132596 +88834,346,3,747,1406200 +88835,52,10,159727,959258 +88836,269,9,37686,51987 +88837,273,7,47914,2289 +88838,269,9,58,1226 +88839,387,10,85640,190762 +88840,413,11,325263,4615 +88841,333,2,225728,1411064 +88842,164,3,334074,1541499 +88843,46,5,176,1738163 +88844,301,5,8619,1550778 +88845,277,3,43092,1590916 +88846,127,3,10590,2080 +88847,3,5,51476,96726 +88848,413,11,429838,1734272 +88849,401,6,38055,1447493 +88850,234,1,13169,22215 +88851,387,10,197335,31604 +88852,269,9,203351,1367127 +88853,179,2,6163,1905109 +88854,160,3,7326,197930 +88855,234,1,445840,1044792 +88856,5,10,257454,1282120 +88857,105,7,31221,1478534 +88858,273,7,13279,5359 +88859,180,7,71329,1605721 +88860,387,10,19971,30724 +88861,105,7,9470,57620 +88862,204,9,68737,27220 +88863,234,1,332741,1532332 +88864,317,10,40085,13971 +88865,73,7,77459,1724719 +88866,387,10,13986,35770 +88867,387,10,43340,84237 +88868,204,9,257088,1324460 +88869,304,10,90034,1197877 +88870,161,6,329865,1646537 +88871,317,10,323929,1423660 +88872,328,6,9946,1392095 +88873,143,7,109439,1424167 +88874,234,1,1926,20027 +88875,413,11,351365,1891551 +88876,368,7,46738,1536645 +88877,203,1,392818,1754083 +88878,273,7,20047,64765 +88879,53,2,84226,1119671 +88880,234,1,129363,935137 +88881,333,2,1966,1525893 +88882,234,1,260312,69403 +88883,234,1,53404,35927 +88884,273,7,12591,40613 +88885,277,7,693,1413452 +88886,79,7,289,936701 +88887,234,1,320318,140518 +88888,209,7,15019,1555680 +88889,234,1,64310,21678 +88890,234,1,64130,238636 +88891,387,10,13616,1092631 +88892,317,10,87826,32895 +88893,234,1,104522,126421 +88894,387,10,21135,15191 +88895,169,3,40466,1561182 +88896,74,5,296523,1780484 +88897,220,7,354859,56632 +88898,196,7,9946,1423757 +88899,105,7,129129,1088623 +88900,160,3,2978,13458 +88901,3,5,86520,17550 +88902,180,7,51141,8740 +88903,273,7,59965,1999 +88904,179,2,8292,1676177 +88905,148,9,210302,1193911 +88906,87,7,9946,1538822 +88907,3,5,140470,1265586 +88908,203,1,38775,121347 +88909,417,3,246415,1439430 +88910,234,1,152797,24882 +88911,387,10,107146,1188190 +88912,388,9,181533,1869088 +88913,269,9,271404,1205337 +88914,269,9,115782,49886 +88915,413,11,14873,1748509 +88916,234,1,29067,28236 +88917,346,3,634,1406200 +88918,317,10,286940,1529878 +88919,234,1,40985,2000 +88920,132,2,280092,1402475 +88921,204,9,86297,1048633 +88922,269,9,14878,15368 +88923,317,10,22899,114427 +88924,413,11,118536,127199 +88925,226,2,539,14495 +88926,182,8,193893,1594987 +88927,387,10,98125,34369 +88928,317,10,549,7484 +88929,306,7,13056,1708228 +88930,273,7,3941,34227 +88931,234,1,18671,86004 +88932,234,1,2604,1152 +88933,234,1,43692,104727 +88934,234,1,54227,1250633 +88935,22,9,435,1326399 +88936,105,7,24452,89036 +88937,196,7,294272,1352425 +88938,277,3,200,1551320 +88939,317,10,26656,1017821 +88940,175,5,329440,1399066 +88941,317,10,136368,1105683 +88942,333,2,9946,1412224 +88943,203,1,9785,1404753 +88944,291,6,333371,1636662 +88945,208,2,259997,1302517 +88946,394,7,11202,1384146 +88947,291,6,322443,1052872 +88948,387,10,3036,29855 +88949,143,7,206647,1404217 +88950,200,3,189,1399866 +88951,387,10,145220,52934 +88952,148,9,43172,7338 +88953,160,3,9659,129268 +88954,234,1,43833,95025 +88955,333,2,119010,143891 +88956,97,7,131737,1542373 +88957,226,2,35337,1462398 +88958,366,3,18,1440849 +88959,317,10,36236,5811 +88960,143,7,511,7105 +88961,269,9,16313,1176818 +88962,234,1,50942,76418 +88963,413,11,41574,1583303 +88964,203,1,256962,1521664 +88965,196,7,59962,1551706 +88966,3,5,308024,967792 +88967,234,1,38154,562940 +88968,291,6,44129,1367670 +88969,198,6,284289,1538203 +88970,13,1,1578,1219553 +88971,187,11,2046,548437 +88972,204,9,42476,1324618 +88973,413,11,77079,32664 +88974,317,10,16806,111904 +88975,327,7,1690,1548101 +88976,160,3,314065,1249092 +88977,395,3,129,40336 +88978,277,3,308269,1447879 +88979,3,5,144475,1142345 +88980,234,1,16026,79056 +88981,413,11,43783,8505 +88982,234,1,61552,221490 +88983,234,1,329718,58220 +88984,13,2,613,1061537 +88985,127,3,75204,7001 +88986,317,10,38787,8635 +88987,269,9,94820,1573573 +88988,53,2,68822,1594328 +88989,105,7,30143,78367 +88990,160,3,11517,6328 +88991,52,10,12,32535 +88992,234,1,296523,53935 +88993,304,10,264309,1188618 +88994,413,11,83013,1305671 +88995,387,10,52203,101520 +88996,387,10,47647,62412 +88997,387,10,9426,56058 +88998,58,2,936,1153580 +88999,234,1,405621,947010 +89000,204,9,2172,1635809 +89001,122,8,329865,1777654 +89002,75,5,7445,1407229 +89003,273,7,4478,2289 +89004,373,7,202337,1299149 +89005,234,1,55663,56141 +89006,3,5,61527,7436 +89007,226,2,45244,1605658 +89008,234,1,10139,5216 +89009,273,7,39943,16748 +89010,72,11,109424,1408401 +89011,190,7,214081,1367650 +89012,226,2,13852,75908 +89013,3,5,31945,21516 +89014,179,2,82485,1319157 +89015,234,1,56151,39058 +89016,413,11,109417,57769 +89017,53,2,311291,76972 +89018,158,2,180305,1453141 +89019,187,11,312221,1352422 +89020,234,1,307479,545330 +89021,180,7,33333,1509189 +89022,269,9,69560,1341333 +89023,234,1,11362,8300 +89024,234,1,51367,13953 +89025,234,1,127468,941733 +89026,135,3,11812,1562236 +89027,196,7,9042,1341786 +89028,269,9,403867,1540834 +89029,3,5,410718,1603358 +89030,75,5,188102,1845779 +89031,234,1,122487,2725 +89032,53,2,297702,1636851 +89033,204,9,24559,12346 +89034,317,10,58918,75851 +89035,333,2,1374,8870 +89036,127,3,8869,106647 +89037,221,3,343934,1553973 +89038,204,9,2321,11475 +89039,234,1,47448,1032520 +89040,413,11,290379,29971 +89041,317,10,158015,53120 +89042,234,1,173205,113525 +89043,273,7,20357,22047 +89044,317,10,67693,1330201 +89045,273,7,93313,8503 +89046,273,7,34650,19322 +89047,234,1,1251,190 +89048,3,5,419430,75553 +89049,273,7,244610,1090381 +89050,273,7,20473,18663 +89051,75,5,41283,930028 +89052,234,1,71700,62897 +89053,413,11,305342,53898 +89054,268,7,168259,12562 +89055,209,7,1374,16640 +89056,226,2,9358,1421693 +89057,366,3,809,1678642 +89058,413,11,410718,1697789 +89059,77,10,3780,20827 +89060,209,7,315664,117235 +89061,15,6,17654,1424620 +89062,234,1,112284,84034 +89063,97,7,2046,548439 +89064,204,9,435,92302 +89065,413,11,15661,1483950 +89066,204,9,2982,29278 +89067,204,9,11607,11620 +89068,3,5,42476,13809 +89069,234,1,384262,1646178 +89070,317,10,57489,226347 +89071,105,7,11145,10771 +89072,143,7,52705,1870796 +89073,365,6,17009,1447573 +89074,317,10,434873,1310518 +89075,413,11,9585,58086 +89076,317,10,43095,142483 +89077,273,7,8128,54011 +89078,273,7,290999,1014694 +89079,52,10,6,1088307 +89080,160,3,10739,4438 +89081,269,9,4254,35740 +89082,317,10,153420,80762 +89083,105,7,9030,7229 +89084,317,10,21843,88020 +89085,273,7,179288,1730726 +89086,236,8,152736,1163960 +89087,181,7,9893,1396840 +89088,196,7,544,1390523 +89089,113,9,259830,1354497 +89090,387,10,1578,1035 +89091,317,10,267931,1316207 +89092,298,5,99861,1400092 +89093,204,9,10696,14913 +89094,234,1,84903,14674 +89095,273,7,250574,1231957 +89096,75,5,8869,1429250 +89097,160,3,40863,552393 +89098,97,7,19901,1337413 +89099,209,7,173153,1389597 +89100,209,7,22803,9351 +89101,234,1,377428,172427 +89102,413,11,10204,21223 +89103,5,10,37451,1161107 +89104,286,3,51955,932181 +89105,394,7,283995,1235786 +89106,317,10,29094,47755 +89107,396,3,18,8378 +89108,158,2,206647,1545913 +89109,287,3,210047,88560 +89110,234,1,11535,1090 +89111,317,10,34774,83126 +89112,387,10,13505,53175 +89113,413,11,11104,45818 +89114,97,7,46857,1305971 +89115,234,1,124527,29662 +89116,413,11,458428,1820244 +89117,234,1,20879,236823 +89118,3,5,52440,98442 +89119,413,11,24212,1187811 +89120,182,8,36375,2661 +89121,234,1,94248,97714 +89122,317,10,19342,1409393 +89123,198,6,329865,1646601 +89124,196,7,321039,1403008 +89125,234,1,62492,198148 +89126,333,2,44943,1441390 +89127,333,2,1966,1411320 +89128,3,5,426253,986472 +89129,234,1,16439,111216 +89130,166,9,116979,1835192 +89131,289,6,58159,11429 +89132,52,10,46190,135363 +89133,413,11,225728,11114 +89134,75,5,9314,151 +89135,75,5,395992,1616057 +89136,77,10,14432,76880 +89137,77,10,26036,1003670 +89138,3,5,133328,41372 +89139,148,9,1907,8384 +89140,317,10,90351,236091 +89141,234,1,64202,34921 +89142,234,1,74314,117691 +89143,349,1,10020,1463204 +89144,234,1,199056,1284954 +89145,196,7,9032,1406826 +89146,269,9,413762,1398909 +89147,175,5,8457,1461177 +89148,87,7,401164,1817482 +89149,398,9,132363,1333930 +89150,234,1,2135,21879 +89151,234,1,38715,8820 +89152,234,1,319096,9780 +89153,275,9,4547,151007 +89154,148,9,274060,1198731 +89155,127,3,209112,1552521 +89156,5,10,75138,227688 +89157,3,5,40916,3637 +89158,105,7,181454,1735500 +89159,37,3,7249,1447555 +89160,273,7,66881,15344 +89161,52,10,29239,1172271 +89162,53,2,678,10153 +89163,413,11,10748,17792 +89164,204,9,29510,12870 +89165,327,7,18417,83087 +89166,127,3,186869,1862942 +89167,234,1,92499,1294764 +89168,325,5,32275,231234 +89169,105,7,102428,14351 +89170,234,1,31262,107858 +89171,234,1,374618,112092 +89172,415,3,638,9461 +89173,53,2,47900,588760 +89174,148,9,73348,7687 +89175,269,9,366045,1328753 +89176,234,1,150657,25834 +89177,234,1,274504,1179828 +89178,77,10,41689,127100 +89179,5,10,21242,2235 +89180,204,9,24420,14913 +89181,3,5,36657,9040 +89182,273,7,62768,1327881 +89183,148,9,116312,1143476 +89184,333,2,276906,1331179 +89185,18,2,28178,1419093 +89186,140,9,126889,1634557 +89187,317,10,35623,1703748 +89188,306,7,176,1817659 +89189,413,11,66526,110702 +89190,3,5,29058,1466915 +89191,289,6,108048,1381310 +89192,262,6,16996,1405209 +89193,327,7,2731,1730032 +89194,3,5,84305,1163706 +89195,234,1,178341,4109 +89196,108,10,36519,228809 +89197,413,11,123634,1078398 +89198,187,11,10320,1378756 +89199,286,3,57100,26731 +89200,273,7,290825,1113050 +89201,394,7,5237,1073906 +89202,203,1,9032,1467080 +89203,76,2,266856,1421642 +89204,204,9,302528,1204189 +89205,273,7,12831,9423 +89206,196,7,4982,13166 +89207,53,2,273404,1314895 +89208,3,5,11502,26962 +89209,317,10,54563,11984 +89210,273,7,890,14619 +89211,234,1,45838,89602 +89212,60,1,92341,87700 +89213,269,9,11101,1319734 +89214,3,5,128311,975143 +89215,203,1,285,1395290 +89216,204,9,155605,1132463 +89217,317,10,102630,1031259 +89218,75,5,4413,1401264 +89219,53,2,2567,9027 +89220,52,10,40983,222885 +89221,273,7,301334,549315 +89222,204,9,705,10604 +89223,234,1,28026,17862 +89224,60,1,6643,260646 +89225,373,7,398289,229893 +89226,314,2,2300,578729 +89227,244,3,65496,543841 +89228,387,10,30959,125691 +89229,182,8,245168,1578868 +89230,273,7,141733,1013545 +89231,199,3,76170,2293 +89232,60,1,43195,87267 +89233,226,2,9297,1462667 +89234,53,2,108017,1899279 +89235,273,7,275269,1140158 +89236,317,10,128657,1087672 +89237,204,9,197082,1360246 +89238,317,10,99826,1178529 +89239,105,7,1715,3562 +89240,148,9,273404,1382491 +89241,203,1,28110,1204798 +89242,53,2,359245,1638335 +89243,269,9,22803,46966 +89244,108,10,174958,144010 +89245,269,9,1421,3586 +89246,3,5,88005,72264 +89247,269,9,4550,38017 +89248,60,1,29829,1606759 +89249,53,2,2669,7793 +89250,269,9,51828,2071 +89251,413,11,29058,113571 +89252,147,1,9902,947235 +89253,323,10,25643,62539 +89254,204,9,43327,1027081 +89255,52,10,32921,95945 +89256,413,11,157829,47776 +89257,291,6,72984,1570217 +89258,317,10,36236,98776 +89259,234,1,75578,575724 +89260,175,5,22279,1458557 +89261,234,1,11719,56033 +89262,83,2,373546,1869457 +89263,273,7,226701,166652 +89264,234,1,27740,19266 +89265,3,5,38808,13809 +89266,234,1,9438,44916 +89267,234,1,13889,5026 +89268,5,10,43095,113598 +89269,333,2,100910,4352 +89270,327,7,177155,1540859 +89271,204,9,83802,1206546 +89272,53,2,84577,1189777 +89273,209,7,10909,1352979 +89274,398,9,8619,1339440 +89275,413,11,78362,890786 +89276,196,7,316042,1573932 +89277,3,5,172011,20553 +89278,204,9,132939,30838 +89279,198,6,287628,1376639 +89280,203,1,755,1438430 +89281,148,9,31586,1171347 +89282,234,1,66925,117903 +89283,387,10,445,6011 +89284,413,11,166076,1033619 +89285,413,11,30875,53197 +89286,273,7,24825,591883 +89287,72,11,296523,1117350 +89288,5,10,95807,567192 +89289,413,11,26125,1389212 +89290,15,6,10020,1450331 +89291,269,9,65545,1272393 +89292,189,3,1991,1420166 +89293,7,3,435,1574642 +89294,317,10,286789,21230 +89295,286,3,43889,131410 +89296,269,9,86828,11386 +89297,3,5,88012,37865 +89298,387,10,38055,119496 +89299,317,10,21435,21177 +89300,204,9,17691,959007 +89301,148,9,58372,1522046 +89302,333,2,45714,1568527 +89303,234,1,18642,82800 +89304,148,9,14811,8524 +89305,209,7,6977,17990 +89306,181,7,35052,1562606 +89307,394,7,38322,1511086 +89308,360,3,9457,1392893 +89309,387,10,10326,15344 +89310,209,7,10665,1419924 +89311,234,1,265563,584335 +89312,273,7,109439,23486 +89313,160,3,17209,1346949 +89314,273,7,102949,31853 +89315,234,1,37935,63550 +89316,317,10,55823,5812 +89317,226,2,257088,1519288 +89318,289,6,15213,1453513 +89319,52,10,20644,85903 +89320,234,1,74126,95501 +89321,333,2,42251,1446542 +89322,269,9,9352,3563 +89323,122,8,10733,1571774 +89324,108,10,18978,27968 +89325,3,5,1793,19129 +89326,30,5,10204,1405241 +89327,328,6,9286,1410186 +89328,3,5,10929,57135 +89329,196,7,82,1400556 +89330,234,1,72207,52934 +89331,175,5,168259,1419105 +89332,105,7,11134,68298 +89333,234,1,19501,1207968 +89334,179,2,10632,1477790 +89335,198,6,348631,1804088 +89336,262,6,82,1464539 +89337,3,5,259593,13270 +89338,317,10,74718,572353 +89339,52,10,97910,1027036 +89340,203,1,59861,1478953 +89341,333,2,11577,1604462 +89342,75,5,72431,1431075 +89343,317,10,106944,35256 +89344,5,10,37340,24534 +89345,60,1,16442,1570441 +89346,77,10,15189,68700 +89347,273,7,35543,105479 +89348,415,3,28564,1127069 +89349,387,10,12144,72405 +89350,317,10,21778,4275 +89351,250,11,25941,1425555 +89352,160,3,50126,1377053 +89353,317,10,1278,16333 +89354,3,5,347945,55888 +89355,234,1,55589,11572 +89356,335,6,283995,1483226 +89357,387,10,413052,1659286 +89358,175,5,8669,1266989 +89359,204,9,25834,1061537 +89360,346,3,2924,1400384 +89361,3,5,11897,10602 +89362,301,5,11517,38410 +89363,269,9,10077,49909 +89364,179,2,10294,1324453 +89365,60,1,272878,1371001 +89366,273,7,43727,5553 +89367,413,11,18282,56944 +89368,273,7,125490,1172632 +89369,257,3,755,1897883 +89370,413,11,43045,25169 +89371,269,9,45213,10473 +89372,413,11,63498,1117870 +89373,175,5,269173,1379052 +89374,196,7,283686,1582741 +89375,64,6,11202,18639 +89376,394,7,24750,110274 +89377,234,1,21753,63477 +89378,148,9,41714,1469626 +89379,273,7,30127,1799718 +89380,413,11,252916,25169 +89381,52,10,220488,1206310 +89382,277,3,294690,1372422 +89383,413,11,76170,433 +89384,234,1,365997,77863 +89385,175,5,10909,1536510 +89386,413,11,25983,101542 +89387,3,5,3061,29983 +89388,203,1,336882,1635797 +89389,3,5,60599,4404 +89390,413,11,11626,3866 +89391,317,10,72655,22317 +89392,53,2,278348,1179842 +89393,234,1,29233,113285 +89394,3,5,29416,1088071 +89395,207,3,954,13050 +89396,3,5,134201,43891 +89397,269,9,11502,1609505 +89398,176,3,9358,1441287 +89399,387,10,4516,37761 +89400,3,5,55728,1327595 +89401,45,9,9716,1561298 +89402,387,10,41495,29618 +89403,373,7,9836,577468 +89404,204,9,9928,71729 +89405,317,10,11812,70557 +89406,75,5,8915,1399505 +89407,234,1,359483,230049 +89408,262,6,254007,1338983 +89409,52,10,26805,1153779 +89410,317,10,51890,223287 +89411,373,7,1294,1001864 +89412,317,10,68684,553502 +89413,234,1,201,2523 +89414,387,10,80472,593082 +89415,413,11,11346,49698 +89416,387,10,60505,45038 +89417,317,10,55759,116155 +89418,398,9,1579,1377213 +89419,234,1,15177,77965 +89420,286,3,415358,1677476 +89421,273,7,11876,37187 +89422,53,2,11172,20172 +89423,387,10,16442,107778 +89424,317,10,41522,134048 +89425,234,1,1273,19499 +89426,111,7,544,1778009 +89427,387,10,52109,146712 +89428,269,9,45019,3563 +89429,182,8,241258,1453138 +89430,262,6,8292,1002652 +89431,287,3,78522,3990 +89432,148,9,4286,8755 +89433,413,11,83229,1322547 +89434,387,10,1914,19914 +89435,332,8,38099,119662 +89436,226,2,43093,1469046 +89437,53,2,8464,1581500 +89438,208,2,190955,1405321 +89439,415,3,621,8890 +89440,287,3,13849,1413927 +89441,333,2,69668,1347722 +89442,387,10,119893,63710 +89443,3,5,40368,20844 +89444,234,1,113091,1056316 +89445,387,10,67018,104178 +89446,3,5,12617,13809 +89447,269,9,15310,14878 +89448,413,11,174611,1004922 +89449,413,11,155597,52258 +89450,317,10,216580,372442 +89451,148,9,3513,25063 +89452,87,7,323674,1445606 +89453,204,9,8619,21070 +89454,333,2,84944,931475 +89455,234,1,336271,1029298 +89456,234,1,12076,49555 +89457,413,11,13225,1476808 +89458,75,5,205584,1569342 +89459,376,10,14830,1215939 +89460,387,10,382589,66839 +89461,234,1,2771,72206 +89462,234,1,30014,68 +89463,148,9,857,7849 +89464,15,6,74,1546842 +89465,148,9,10776,11959 +89466,269,9,3513,5673 +89467,234,1,20718,186758 +89468,234,1,24077,141450 +89469,75,5,6972,1401735 +89470,169,3,9352,1586342 +89471,234,1,117098,229519 +89472,387,10,121230,26160 +89473,394,7,168259,1309884 +89474,387,10,204839,1725452 +89475,3,5,67748,549317 +89476,200,3,9472,1420165 +89477,209,7,1271,15225 +89478,360,3,10491,117226 +89479,161,6,329865,1646566 +89480,148,9,128866,1665461 +89481,77,10,18374,1108065 +89482,182,8,9504,1449180 +89483,234,1,52847,82800 +89484,53,2,44741,553860 +89485,203,1,376501,1792348 +89486,317,10,156356,144010 +89487,234,1,359549,116100 +89488,416,10,35025,113610 +89489,387,10,11664,18037 +89490,208,2,265208,15330 +89491,234,1,11145,2226 +89492,234,1,27221,6818 +89493,37,3,35,1447555 +89494,234,1,359025,216366 +89495,387,10,11186,65677 +89496,203,1,10066,1418314 +89497,269,9,13391,1120524 +89498,289,6,345775,1621091 +89499,349,1,35,1447450 +89500,33,10,83430,1607049 +89501,175,5,7299,1361170 +89502,234,1,359154,1288697 +89503,317,10,43469,12330 +89504,203,1,23823,1459229 +89505,234,1,283384,1046127 +89506,204,9,282086,1351010 +89507,387,10,332567,129607 +89508,210,9,13056,1708308 +89509,413,11,408509,1068048 +89510,172,3,44115,1394727 +89511,143,7,210079,1337980 +89512,5,10,57215,225697 +89513,148,9,33364,1116427 +89514,269,9,13667,2083 +89515,53,2,1691,23870 +89516,234,1,199647,1179829 +89517,387,10,201429,1572019 +89518,328,6,70981,1377294 +89519,239,5,11202,1563007 +89520,203,1,2309,1408853 +89521,387,10,24973,4509 +89522,373,7,97614,137125 +89523,175,5,287628,1353218 +89524,269,9,6947,56518 +89525,317,10,44552,1081838 +89526,277,3,75510,4315 +89527,413,11,809,5542 +89528,286,3,91459,52192 +89529,317,10,157676,2333 +89530,415,3,72823,1176364 +89531,40,1,159667,1124948 +89532,286,3,143240,1118742 +89533,209,7,8916,1352979 +89534,245,3,6557,29216 +89535,234,1,61109,33166 +89536,97,7,340275,92376 +89537,387,10,9471,21158 +89538,175,5,10440,1194262 +89539,234,1,189197,33316 +89540,87,7,11017,73137 +89541,234,1,329690,57604 +89542,166,9,296523,1378222 +89543,413,11,35572,1662183 +89544,317,10,52044,93397 +89545,209,7,755,95842 +89546,262,6,242224,1116331 +89547,273,7,11589,9217 +89548,187,11,334074,1522769 +89549,387,10,309809,1542277 +89550,317,10,31718,123945 +89551,317,10,19740,348 +89552,234,1,89595,937342 +89553,5,10,61121,112493 +89554,204,9,70322,111967 +89555,196,7,41283,1440299 +89556,232,10,41996,127457 +89557,333,2,381518,1545926 +89558,105,7,120497,30268 +89559,234,1,98870,1018980 +89560,413,11,382873,63873 +89561,176,3,2503,1406811 +89562,273,7,11338,12939 +89563,148,9,29365,34467 +89564,234,1,426230,82885 +89565,234,1,26152,146484 +89566,317,10,31880,1084881 +89567,234,1,864,12962 +89568,301,5,159667,1849516 +89569,317,10,121749,1492995 +89570,387,10,809,5524 +89571,200,3,206647,1551904 +89572,239,5,211879,1116257 +89573,52,10,12,1457647 +89574,204,9,38099,119635 +89575,234,1,72203,565310 +89576,234,1,196235,43936 +89577,60,1,30126,1342501 +89578,413,11,11328,69018 +89579,60,1,197849,1853682 +89580,52,10,107146,157849 +89581,234,1,220500,1012097 +89582,273,7,198600,29276 +89583,202,7,13986,1113618 +89584,394,7,315664,1380895 +89585,53,2,93313,119399 +89586,234,1,33364,67619 +89587,203,1,297702,1636853 +89588,53,2,44732,1396402 +89589,314,2,341174,1738109 +89590,11,6,209112,1457327 +89591,263,11,43522,14773 +89592,387,10,86709,933573 +89593,143,7,333484,1412699 +89594,234,1,237171,115598 +89595,97,7,109424,1337412 +89596,5,10,48838,563752 +89597,3,5,63260,70023 +89598,273,7,228647,29967 +89599,209,7,46738,1536646 +89600,317,10,17258,56381 +89601,75,5,257088,1631407 +89602,3,5,3059,8819 +89603,269,9,270400,967607 +89604,234,1,27970,99325 +89605,203,1,103432,1339686 +89606,189,3,11377,1602872 +89607,77,10,18912,83863 +89608,162,6,294272,1660723 +89609,234,1,84577,105860 +89610,357,3,435,1136463 +89611,333,2,300669,119182 +89612,203,1,205864,1603902 +89613,289,6,13798,1565816 +89614,127,3,12594,9567 +89615,234,1,11897,70862 +89616,3,5,3587,10639 +89617,413,11,270886,998816 +89618,289,6,53211,1146385 +89619,234,1,14293,91389 +89620,234,1,351901,108486 +89621,105,7,19719,85094 +89622,87,7,45610,21933 +89623,273,7,43346,951475 +89624,234,1,113040,81297 +89625,204,9,224813,1210338 +89626,413,11,341077,1554132 +89627,52,10,220488,1128285 +89628,77,10,81220,591276 +89629,226,2,7916,1407828 +89630,3,5,19116,57432 +89631,53,2,23823,1541447 +89632,203,1,14527,1340343 +89633,181,7,33135,978127 +89634,234,1,9385,24530 +89635,61,7,15653,1421670 +89636,234,1,6068,8858 +89637,234,1,390409,1480225 +89638,75,5,5289,1224779 +89639,148,9,25385,30107 +89640,148,9,4913,1333892 +89641,387,10,40130,103132 +89642,105,7,16320,3393 +89643,105,7,381645,1520236 +89644,317,10,169343,1151387 +89645,234,1,41115,73748 +89646,75,5,209112,1661417 +89647,413,11,38356,10123 +89648,143,7,9078,2117 +89649,75,5,351901,1404738 +89650,291,6,9902,1401291 +89651,204,9,2309,23771 +89652,234,1,44545,82751 +89653,398,9,322443,1543690 +89654,394,7,44943,1397822 +89655,269,9,75233,1424586 +89656,387,10,15170,1901 +89657,387,10,109417,238679 +89658,45,9,70670,1427144 +89659,387,10,48846,103117 +89660,234,1,88359,239412 +89661,3,5,11346,34306 +89662,387,10,43268,227027 +89663,3,5,267935,492 +89664,3,5,84030,56135 +89665,143,7,266856,40816 +89666,333,2,197082,32017 +89667,317,10,14613,109542 +89668,234,1,33510,14132 +89669,269,9,34496,1320561 +89670,387,10,60307,1231184 +89671,182,8,45019,583315 +89672,330,3,13483,1402082 +89673,289,6,24238,1454650 +89674,13,3,41213,1777259 +89675,273,7,47942,9217 +89676,328,6,9042,1409235 +89677,234,1,7863,33433 +89678,77,10,38594,78322 +89679,303,3,6934,135388 +89680,259,3,10320,1821180 +89681,77,10,108,1126 +89682,371,3,11045,1717522 +89683,52,10,52736,1346591 +89684,413,11,40952,62025 +89685,387,10,174195,105735 +89686,269,9,1995,10819 +89687,413,11,362579,1518667 +89688,269,9,38448,15878 +89689,268,7,315664,1616061 +89690,234,1,411081,1215282 +89691,166,9,109424,1334462 +89692,291,6,395992,1273046 +89693,234,1,42987,39009 +89694,360,3,7340,1334478 +89695,365,6,9514,1642539 +89696,204,9,270851,1321930 +89697,234,1,104859,1037296 +89698,234,1,142507,1117467 +89699,373,7,14126,1407705 +89700,262,6,19995,1401799 +89701,105,7,1294,37084 +89702,234,1,302042,132722 +89703,235,5,17577,1423844 +89704,306,7,2805,1123080 +89705,387,10,25738,22596 +89706,286,3,14751,1610604 +89707,203,1,28031,1344278 +89708,413,11,403605,1580066 +89709,166,9,664,1334778 +89710,413,11,28482,37503 +89711,105,7,630,9056 +89712,387,10,28673,101548 +89713,289,6,328111,1479518 +89714,102,3,204922,1414097 +89715,317,10,85709,118674 +89716,203,1,314065,1466260 +89717,387,10,4497,37500 +89718,46,5,9946,1767303 +89719,75,5,635,1400000 +89720,373,7,4982,1399141 +89721,148,9,1717,59567 +89722,387,10,9076,28403 +89723,314,2,9946,1412223 +89724,53,2,13616,6392 +89725,327,7,284289,1355878 +89726,172,3,41283,1440311 +89727,413,11,1498,156 +89728,75,5,283445,1261682 +89729,105,7,307931,1208226 +89730,273,7,80443,25321 +89731,324,3,40864,124857 +89732,317,10,43635,129698 +89733,196,7,334,1360100 +89734,317,10,171075,64860 +89735,204,9,954,18989 +89736,238,7,11236,1414182 +89737,234,1,24448,91628 +89738,269,9,395982,135567 +89739,169,3,15613,1442509 +89740,234,1,381691,1574334 +89741,234,1,26323,81165 +89742,387,10,42664,41751 +89743,341,2,10733,1748475 +89744,234,1,16900,80992 +89745,234,1,14053,87767 +89746,5,10,337,6543 +89747,180,7,213443,27969 +89748,105,7,257088,56827 +89749,317,10,278348,185995 +89750,269,9,214756,53811 +89751,333,2,983,14748 +89752,413,11,53999,1279841 +89753,317,10,360605,1512120 +89754,394,7,126889,1408373 +89755,273,7,165095,1146749 +89756,234,1,278935,1334905 +89757,317,10,85656,76171 +89758,234,1,54524,73579 +89759,3,5,14181,17598 +89760,171,3,365942,1738136 +89761,333,2,630,13986 +89762,77,10,9904,7397 +89763,234,1,11376,69219 +89764,37,3,99861,1412756 +89765,3,5,1926,20037 +89766,387,10,33680,27899 +89767,234,1,16214,67767 +89768,269,9,171337,1156299 +89769,413,11,53211,149379 +89770,234,1,62755,20921 +89771,234,1,601,488 +89772,52,10,77650,18574 +89773,209,7,12220,160927 +89774,234,1,7511,3417 +89775,317,10,45336,133007 +89776,234,1,369054,194131 +89777,105,7,79435,7491 +89778,328,6,332567,1573035 +89779,226,2,70667,1182554 +89780,18,2,12831,73915 +89781,203,1,333352,1398189 +89782,333,2,302036,1417173 +89783,234,1,96107,29962 +89784,387,10,84104,1072395 +89785,234,1,26298,53782 +89786,317,10,374319,1168199 +89787,45,9,3597,1790541 +89788,3,5,36243,72825 +89789,413,11,9982,40347 +89790,413,11,53882,64729 +89791,273,7,798,11922 +89792,53,2,301671,1903915 +89793,387,10,81463,101698 +89794,158,2,16921,1317099 +89795,3,5,22267,4434 +89796,317,10,184155,93550 +89797,234,1,9659,20629 +89798,273,7,40649,19711 +89799,75,5,14138,1452261 +89800,387,10,11537,1453166 +89801,135,3,11045,1717521 +89802,5,10,52360,145843 +89803,413,11,93350,39983 +89804,52,10,58570,58052 +89805,52,10,61430,129311 +89806,234,1,359459,1341472 +89807,105,7,70057,552419 +89808,229,6,246655,1713063 +89809,53,2,17258,557 +89810,250,11,17654,1424632 +89811,317,10,46592,143286 +89812,303,3,28893,1452320 +89813,333,2,11576,1299029 +89814,387,10,26514,95600 +89815,413,11,28673,31985 +89816,273,7,9611,1213 +89817,234,1,19200,1243 +89818,53,2,14676,12404 +89819,234,1,37126,76882 +89820,3,5,296633,1488077 +89821,52,10,18998,106955 +89822,198,6,287903,1569332 +89823,3,5,3554,10639 +89824,269,9,27276,551822 +89825,399,9,13205,1815492 +89826,155,3,613,672 +89827,234,1,9474,57639 +89828,387,10,50350,16862 +89829,362,3,18417,83086 +89830,327,7,2197,10054 +89831,273,7,30995,7933 +89832,3,5,17609,1570 +89833,262,6,435,1075261 +89834,182,8,1381,1394757 +89835,204,9,375366,148824 +89836,196,7,10476,1560900 +89837,3,5,27739,98680 +89838,413,11,9385,57545 +89839,317,10,85628,83950 +89840,416,10,20438,99591 +89841,21,3,9982,61415 +89842,413,11,103731,53645 +89843,269,9,66193,1331138 +89844,387,10,32235,41886 +89845,53,2,13614,46268 +89846,317,10,84030,1512551 +89847,250,11,245168,1408403 +89848,105,7,64784,1451781 +89849,234,1,84905,88718 +89850,208,2,413452,1333978 +89851,148,9,40139,1389957 +89852,387,10,42703,1120619 +89853,269,9,983,4103 +89854,204,9,81110,224402 +89855,52,10,345925,27572 +89856,67,10,8247,1652234 +89857,273,7,8429,4416 +89858,53,2,429238,1394634 +89859,45,9,15613,1442502 +89860,387,10,83896,930819 +89861,3,5,51358,10522 +89862,221,3,2662,1603322 +89863,209,7,7299,1409877 +89864,207,3,10796,1163129 +89865,203,1,66193,1389043 +89866,301,5,435,1393365 +89867,208,2,141733,1393490 +89868,143,7,9423,1338152 +89869,388,9,9286,1339987 +89870,176,3,544,1780222 +89871,226,2,145481,1070175 +89872,204,9,95358,7127 +89873,394,7,10326,9349 +89874,204,9,10005,61849 +89875,234,1,51367,8635 +89876,105,7,16890,7435 +89877,3,5,194101,68543 +89878,127,3,186869,69129 +89879,3,5,362439,1018705 +89880,269,9,16638,989154 +89881,317,10,75142,144862 +89882,204,9,110887,1077688 +89883,52,10,10948,67608 +89884,333,2,251227,1286562 +89885,182,8,67328,1583634 +89886,317,10,83435,1165485 +89887,5,10,34623,133458 +89888,234,1,198795,987344 +89889,158,2,44943,1403416 +89890,317,10,442949,1762637 +89891,317,10,74879,307141 +89892,3,5,52556,1324648 +89893,234,1,18704,127531 +89894,179,2,22881,1412330 +89895,160,3,157847,1372211 +89896,148,9,19096,7338 +89897,187,11,74,1050930 +89898,3,5,54660,4056 +89899,53,2,173205,1358496 +89900,108,10,87894,1619498 +89901,5,10,64428,59805 +89902,387,10,37936,186748 +89903,158,2,16177,1332557 +89904,413,11,15982,69809 +89905,234,1,9787,19850 +89906,317,10,352917,1493312 +89907,75,5,17654,1424627 +89908,204,9,343173,1308522 +89909,148,9,118677,60135 +89910,200,3,93856,1335150 +89911,333,2,54287,1603109 +89912,387,10,16313,80733 +89913,234,1,10866,21053 +89914,182,8,410537,1727205 +89915,269,9,97051,1324037 +89916,204,9,71805,1644924 +89917,327,7,26983,1121228 +89918,234,1,260310,1305988 +89919,387,10,381518,114253 +89920,3,5,12513,19054 +89921,234,1,140448,929568 +89922,226,2,10070,1412444 +89923,387,10,10336,56452 +89924,180,7,80324,7105 +89925,3,5,20213,7386 +89926,182,8,337339,1437304 +89927,289,6,98566,1459755 +89928,273,7,219233,1487840 +89929,234,1,16240,1230368 +89930,52,10,64084,553980 +89931,204,9,47324,1508494 +89932,234,1,35405,10930 +89933,234,1,331641,1442569 +89934,317,10,91334,221701 +89935,143,7,9542,1341781 +89936,249,7,82624,1395361 +89937,105,7,315841,3436 +89938,234,1,44190,2765 +89939,373,7,5638,14880 +89940,413,11,10235,9603 +89941,387,10,40879,1078460 +89942,75,5,12113,1405401 +89943,317,10,14569,225054 +89944,234,1,99261,123909 +89945,34,8,146233,1536000 +89946,317,10,86532,933308 +89947,387,10,45489,1677 +89948,67,10,14317,1460480 +89949,252,3,11024,1673538 +89950,46,5,5638,81530 +89951,204,9,85414,1333161 +89952,60,1,398786,1665420 +89953,388,9,333371,1484980 +89954,204,9,202214,1362702 +89955,317,10,47426,141674 +89956,387,10,6972,1115006 +89957,203,1,309024,1575827 +89958,3,5,293516,72052 +89959,143,7,46738,1294674 +89960,317,10,24916,92830 +89961,143,7,9577,36405 +89962,75,5,76170,1494208 +89963,189,3,226140,1377420 +89964,239,5,340187,1579538 +89965,175,5,4133,589974 +89966,273,7,37481,1761 +89967,273,7,134480,4100 +89968,3,5,411741,1419623 +89969,413,11,83223,1086217 +89970,234,1,166393,1056317 +89971,234,1,215373,84714 +89972,273,7,377170,29276 +89973,234,1,59181,1129542 +89974,179,2,10950,1329113 +89975,234,1,67162,5446 +89976,234,1,70981,578 +89977,234,1,24625,13563 +89978,169,3,26390,1411523 +89979,3,5,9087,2702 +89980,122,8,2675,1674666 +89981,373,7,398289,1636408 +89982,113,9,15940,1330905 +89983,273,7,11633,11382 +89984,148,9,93856,1335138 +89985,317,10,82027,592920 +89986,76,2,9543,1525888 +89987,204,9,140470,9104 +89988,196,7,102629,1429353 +89989,166,9,10070,1440738 +89990,234,1,1926,223 +89991,269,9,207270,61935 +89992,165,9,9882,1774546 +89993,317,10,44233,19248 +89994,387,10,190955,19866 +89995,269,9,422878,555660 +89996,3,5,3870,7202 +89997,187,11,343173,1742989 +89998,234,1,14642,106021 +89999,234,1,29313,93079 +90000,3,5,87514,14094 +90001,296,3,76170,1527919 +90002,220,7,9474,1259 +90003,234,1,16186,77441 +90004,196,7,419430,1409545 +90005,3,5,9918,904 +90006,327,7,118,1855227 +90007,387,10,164504,99379 +90008,273,7,102144,30922 +90009,234,1,74505,26850 +90010,234,1,16005,17329 +90011,11,6,197854,552490 +90012,262,6,98277,1849141 +90013,99,3,25430,14773 +90014,75,5,10865,1552866 +90015,204,9,48466,1463252 +90016,387,10,208436,1434360 +90017,160,3,258251,1054796 +90018,234,1,295656,225586 +90019,387,10,4146,21167 +90020,187,11,306966,1748604 +90021,387,10,10145,46086 +90022,104,7,343934,1547458 +90023,164,3,209112,1661331 +90024,333,2,219466,1439132 +90025,113,9,240832,1367805 +90026,387,10,9451,4948 +90027,148,9,10950,33673 +90028,268,7,198663,1425343 +90029,234,1,25111,63208 +90030,234,1,29829,12011 +90031,286,3,287636,1179829 +90032,317,10,44746,81912 +90033,373,7,204922,1392609 +90034,148,9,47794,11822 +90035,317,10,45303,25239 +90036,269,9,10708,112520 +90037,189,3,197,1406926 +90038,269,9,203833,1023480 +90039,175,5,304372,1420326 +90040,387,10,505,6912 +90041,3,5,330333,68821 +90042,234,1,140509,71640 +90043,286,3,423078,1700416 +90044,175,5,2454,1430496 +90045,187,11,48231,91882 +90046,204,9,4953,40248 +90047,179,2,19995,1330567 +90048,270,9,10733,1397810 +90049,182,8,83430,1344225 +90050,413,11,50008,17792 +90051,317,10,98025,38595 +90052,239,5,106887,1606215 +90053,5,10,11248,65434 +90054,403,10,62764,5448 +90055,208,2,246655,25020 +90056,53,2,1428,11425 +90057,204,9,10760,66535 +90058,234,1,5991,9076 +90059,413,11,9602,7184 +90060,234,1,284048,928774 +90061,289,6,72431,1456835 +90062,226,2,10075,15330 +90063,387,10,49514,66719 +90064,269,9,31397,64338 +90065,234,1,199985,228260 +90066,175,5,359412,1579386 +90067,317,10,24403,1357 +90068,317,10,291866,1362815 +90069,269,9,12536,76204 +90070,234,1,61895,1357621 +90071,317,10,188102,1845744 +90072,324,3,14794,97164 +90073,204,9,41171,957172 +90074,269,9,43089,957786 +90075,234,1,446048,1827779 +90076,113,9,395982,1755109 +90077,234,1,324150,1424108 +90078,196,7,2503,13166 +90079,203,1,48594,1405371 +90080,166,9,6163,1597094 +90081,87,7,2047,46087 +90082,286,3,201749,33506 +90083,413,11,245394,1607003 +90084,40,1,12103,1676840 +90085,387,10,64183,944714 +90086,234,1,64239,238766 +90087,155,3,8916,493 +90088,204,9,5425,100423 +90089,5,10,321191,126520 +90090,289,6,134360,5446 +90091,250,11,14254,1411541 +90092,175,5,59965,1395028 +90093,413,11,24801,57164 +90094,53,2,379019,1780186 +90095,360,3,9352,1586339 +90096,190,7,325712,1879684 +90097,186,6,72545,1859983 +90098,234,1,18696,25826 +90099,87,7,1595,17863 +90100,289,6,98566,1459728 +90101,75,5,109379,1597027 +90102,413,11,3173,31033 +90103,306,7,9820,1636060 +90104,394,7,353686,1399631 +90105,234,1,1539,17361 +90106,317,10,19794,94126 +90107,157,3,1480,12342 +90108,234,1,128657,67972 +90109,415,3,9028,4985 +90110,234,1,27986,99346 +90111,203,1,266102,1410204 +90112,234,1,241071,113570 +90113,273,7,236395,29810 +90114,413,11,31682,127199 +90115,387,10,10409,6211 +90116,148,9,375012,1150161 +90117,3,5,11296,9165 +90118,413,11,17464,72547 +90119,204,9,285400,8622 +90120,3,5,11142,35411 +90121,287,3,28902,1659166 +90122,234,1,321142,150196 +90123,317,10,28047,33279 +90124,200,3,109424,1408402 +90125,387,10,983,14743 +90126,226,2,11321,92334 +90127,304,10,403867,230031 +90128,234,1,185154,54441 +90129,132,2,9472,1567890 +90130,5,10,24973,1146055 +90131,387,10,47260,138239 +90132,387,10,26518,225557 +90133,394,7,43923,40141 +90134,108,10,105551,1210244 +90135,234,1,92307,141258 +90136,317,10,20495,85801 +90137,234,1,29076,95818 +90138,333,2,251227,1286563 +90139,67,10,15653,1767030 +90140,357,3,435,1418468 +90141,387,10,11296,68899 +90142,226,2,85230,1585229 +90143,143,7,67,3699 +90144,52,10,53172,882944 +90145,234,1,8652,1188 +90146,53,2,781,11605 +90147,234,1,259894,132722 +90148,179,2,301875,1705680 +90149,352,3,3597,1790559 +90150,301,5,323929,1724367 +90151,317,10,161795,990400 +90152,148,9,29786,14846 +90153,158,2,12526,1418408 +90154,387,10,26954,554041 +90155,3,5,10476,53640 +90156,269,9,16075,50952 +90157,160,3,890,14627 +90158,317,10,61109,33166 +90159,181,7,703,1547258 +90160,148,9,242076,1299360 +90161,340,2,283995,1377134 +90162,176,3,9042,1402978 +90163,277,7,384262,1805979 +90164,413,11,1662,11880 +90165,3,5,61908,96252 +90166,244,3,14,8532 +90167,398,9,1125,1400553 +90168,226,2,245168,32491 +90169,234,1,116019,11244 +90170,234,1,308165,89154 +90171,157,3,206563,1313766 +90172,387,10,270303,558929 +90173,148,9,59118,1599513 +90174,317,10,21032,12061 +90175,53,2,259728,1301994 +90176,245,3,218778,30882 +90177,234,1,43016,6778 +90178,234,1,190269,2000 +90179,413,11,422005,1697080 +90180,387,10,409,2239 +90181,413,11,10097,19678 +90182,273,7,72545,70789 +90183,317,10,100594,969801 +90184,333,2,25376,1583717 +90185,324,3,118150,29494 +90186,387,10,13025,14999 +90187,413,11,10299,21781 +90188,413,11,9541,57894 +90189,413,11,80389,2484 +90190,3,5,12638,1143 +90191,203,1,293167,1753238 +90192,234,1,232100,1267385 +90193,387,10,154972,16672 +90194,273,7,27276,144931 +90195,269,9,193756,7146 +90196,413,11,78450,69834 +90197,349,1,14444,1447569 +90198,317,10,51036,19305 +90199,387,10,694,10404 +90200,160,3,525,122106 +90201,196,7,395992,1393857 +90202,317,10,41416,126714 +90203,198,6,954,15317 +90204,234,1,255384,1271449 +90205,148,9,76163,1318091 +90206,289,6,80928,150768 +90207,234,1,240832,59 +90208,105,7,180305,1453131 +90209,12,10,3933,34893 +90210,317,10,251732,1175807 +90211,3,5,125257,551730 +90212,204,9,225728,1437155 +90213,234,1,53301,147775 +90214,399,9,164954,1060554 +90215,179,2,70074,1321000 +90216,87,7,277713,45056 +90217,387,10,36983,932 +90218,143,7,14145,1416982 +90219,413,11,83229,1281227 +90220,413,11,48254,16335 +90221,54,10,409447,9251 +90222,317,10,427045,1435021 +90223,296,3,176,1652449 +90224,234,1,276401,1167896 +90225,317,10,41949,15539 +90226,273,7,37672,10468 +90227,3,5,10804,43624 +90228,317,10,90351,31074 +90229,234,1,27145,28615 +90230,329,3,544,1780237 +90231,413,11,1448,17254 +90232,3,5,41970,86290 +90233,259,3,74,1868838 +90234,60,1,298787,1376952 +90235,75,5,294272,1434945 +90236,413,11,15263,216339 +90237,387,10,30127,55029 +90238,234,1,250769,112002 +90239,317,10,43256,51727 +90240,198,6,181533,1638131 +90241,113,9,1647,1449161 +90242,105,7,296750,1469882 +90243,180,7,31742,1820604 +90244,234,1,44119,66800 +90245,332,8,1267,1460602 +90246,234,1,19174,109086 +90247,413,11,121234,68645 +90248,64,6,14317,1457635 +90249,317,10,34205,1226200 +90250,75,5,74777,583477 +90251,3,5,106546,1596388 +90252,208,2,773,1456028 +90253,204,9,267852,1622318 +90254,289,6,140607,1550760 +90255,317,10,321315,1418980 +90256,179,2,2978,75250 +90257,204,9,21468,3358 +90258,317,10,332283,1088579 +90259,413,11,69605,29636 +90260,298,5,206647,1404244 +90261,3,5,49334,29893 +90262,273,7,11839,70672 +90263,387,10,43877,134343 +90264,226,2,18093,1550692 +90265,413,11,183412,130050 +90266,387,10,691,9858 +90267,39,3,5,1877369 +90268,234,1,13042,8010 +90269,234,1,11247,68770 +90270,204,9,64972,1046590 +90271,289,6,35,39056 +90272,286,3,151937,115486 +90273,235,5,12783,1350255 +90274,234,1,62567,39058 +90275,234,1,56647,34017 +90276,277,3,177155,570127 +90277,301,5,1165,1413035 +90278,53,2,80389,1036211 +90279,234,1,289336,109891 +90280,187,11,203833,40813 +90281,289,6,188161,1452998 +90282,317,10,79593,1640572 +90283,269,9,5123,2867 +90284,415,3,77010,94068 +90285,52,10,57996,1421964 +90286,331,3,9946,1463386 +90287,317,10,398891,1006109 +90288,317,10,143169,1013108 +90289,75,5,16176,1433218 +90290,3,5,87349,30670 +90291,273,7,59387,23739 +90292,333,2,41171,999600 +90293,134,3,5,100888 +90294,12,10,188927,1745 +90295,394,7,2567,1638 +90296,234,1,85507,143561 +90297,135,3,10066,1864787 +90298,148,9,241574,7651 +90299,371,3,163,1727305 +90300,296,3,10665,1553629 +90301,234,1,73697,146793 +90302,387,10,81560,1041472 +90303,75,5,55846,1394041 +90304,317,10,427045,52044 +90305,53,2,62567,9064 +90306,360,3,13483,982927 +90307,5,10,124979,1386298 +90308,3,5,379,5174 +90309,234,1,63899,239485 +90310,387,10,77887,1117786 +90311,161,6,329865,1646555 +90312,269,9,10276,5059 +90313,32,8,4248,1640493 +90314,7,3,116463,1691510 +90315,12,10,21752,1710838 +90316,196,7,186869,1730976 +90317,204,9,188927,1293467 +90318,3,5,123109,6042 +90319,413,11,2061,69018 +90320,200,3,76163,29380 +90321,413,11,20210,1592 +90322,12,10,263115,1195199 +90323,3,5,283384,1429301 +90324,259,3,638,9453 +90325,234,1,189359,587855 +90326,213,10,140825,558338 +90327,234,1,303867,109314 +90328,234,1,42424,1174031 +90329,77,10,32546,109358 +90330,3,5,332168,1473910 +90331,204,9,43783,7337 +90332,398,9,9286,1392898 +90333,148,9,74395,1305615 +90334,3,5,2160,22085 +90335,387,10,8471,55252 +90336,148,9,395992,957666 +90337,75,5,36737,1418483 +90338,182,8,693,1437304 +90339,317,10,77762,1088722 +90340,232,10,151826,2420 +90341,204,9,257444,1497979 +90342,53,2,24469,61936 +90343,413,11,115023,6076 +90344,53,2,2757,6961 +90345,219,11,9504,1564233 +90346,5,10,44655,184864 +90347,203,1,28031,1015922 +90348,387,10,30996,107476 +90349,3,5,29492,98559 +90350,413,11,65904,822754 +90351,273,7,149870,636 +90352,203,1,194,1551188 +90353,373,7,405473,1466705 +90354,317,10,169869,85408 +90355,175,5,12103,1436525 +90356,158,2,257345,1453140 +90357,314,2,354287,1437620 +90358,209,7,5516,17990 +90359,204,9,28000,9062 +90360,182,8,60599,1400504 +90361,77,10,20075,11159 +90362,311,9,755,1851738 +90363,314,2,419430,1761136 +90364,234,1,3057,95329 +90365,269,9,10425,29019 +90366,317,10,354832,965697 +90367,204,9,10829,1206596 +90368,317,10,94525,80703 +90369,105,7,356758,1501813 +90370,234,1,9841,29924 +90371,317,10,188357,237089 +90372,291,6,55534,1577957 +90373,97,7,264525,1389425 +90374,234,1,119816,1104817 +90375,60,1,83015,224003 +90376,273,7,290764,1018976 +90377,273,7,131366,29170 +90378,53,2,134394,1319152 +90379,413,11,52782,1473495 +90380,387,10,360737,1423273 +90381,234,1,3072,102429 +90382,203,1,8840,570136 +90383,387,10,132122,225481 +90384,148,9,399790,63602 +90385,97,7,297762,40823 +90386,286,3,217038,1093739 +90387,239,5,205584,1585725 +90388,317,10,128216,98 +90389,387,10,660,9858 +90390,234,1,33305,25735 +90391,387,10,4993,39760 +90392,289,6,53178,225715 +90393,413,11,239056,1578598 +90394,286,3,158967,1115973 +90395,387,10,18739,95146 +90396,317,10,105760,27002 +90397,317,10,85494,41705 +90398,3,5,6076,49828 +90399,333,2,14676,24313 +90400,234,1,339350,79872 +90401,234,1,47540,139080 +90402,196,7,338,54963 +90403,148,9,13681,1568719 +90404,289,6,69103,148148 +90405,373,7,31911,1406614 +90406,234,1,63706,61549 +90407,234,1,53150,147594 +90408,317,10,87428,524128 +90409,373,7,664,928942 +90410,182,8,42251,1397850 +90411,234,1,11888,13581 +90412,287,3,8619,1443039 +90413,317,10,49642,65981 +90414,204,9,7340,5632 +90415,234,1,41028,47399 +90416,413,11,25941,999565 +90417,289,6,11024,1393014 +90418,327,7,8916,143915 +90419,234,1,10311,2725 +90420,387,10,280030,1596409 +90421,3,5,4592,38336 +90422,298,5,210913,1405256 +90423,105,7,61400,71273 +90424,269,9,690,10352 +90425,155,3,1165,30364 +90426,72,11,72574,566359 +90427,132,2,43923,1554050 +90428,269,9,111839,32403 +90429,204,9,112284,9062 +90430,387,10,1859,8617 +90431,317,10,146216,123097 +90432,204,9,329440,993880 +90433,166,9,168676,1543256 +90434,234,1,46770,71353 +90435,74,5,68387,1868472 +90436,25,2,302026,1457393 +90437,105,7,458808,1822321 +90438,387,10,121230,26159 +90439,273,7,9504,1213 +90440,3,5,16373,3148 +90441,3,5,22803,12033 +90442,33,10,399790,1830185 +90443,196,7,49009,1377222 +90444,108,10,55544,70196 +90445,187,11,949,1391385 +90446,413,11,63401,73154 +90447,209,7,51044,3179 +90448,234,1,60813,2419 +90449,234,1,56901,225149 +90450,398,9,181533,1357047 +90451,317,10,241618,219396 +90452,398,9,181533,1463380 +90453,376,10,99008,1019841 +90454,286,3,216521,180398 +90455,409,7,8619,65044 +90456,317,10,201676,1183757 +90457,269,9,8204,9967 +90458,273,7,15003,1044543 +90459,234,1,142406,45791 +90460,317,10,284052,55499 +90461,204,9,37238,1000924 +90462,317,10,31527,1572604 +90463,52,10,36658,9032 +90464,387,10,175027,88873 +90465,360,3,12783,1334807 +90466,317,10,88478,42378 +90467,53,2,184345,66494 +90468,232,10,86956,228809 +90469,387,10,19625,85675 +90470,3,5,102632,70848 +90471,289,6,32428,148153 +90472,148,9,29365,34115 +90473,209,7,283995,15225 +90474,234,1,10482,98464 +90475,234,1,4983,40378 +90476,411,9,205584,33195 +90477,289,6,9297,1217686 +90478,339,2,414910,1410257 +90479,234,1,356500,41041 +90480,262,6,10796,1404529 +90481,160,3,49009,112345 +90482,105,7,31773,29967 +90483,387,10,7233,7398 +90484,53,2,3554,32715 +90485,234,1,43915,27728 +90486,198,6,293660,1580854 +90487,66,11,49521,1781335 +90488,104,7,9352,1586398 +90489,349,1,10198,1461394 +90490,204,9,311324,939990 +90491,373,7,127585,16177 +90492,122,8,329865,1777659 +90493,204,9,27523,44986 +90494,273,7,62213,531 +90495,60,1,21159,91801 +90496,413,11,49974,1548883 +90497,234,1,35639,222039 +90498,333,2,25796,1457044 +90499,60,1,4982,60858 +90500,234,1,28165,78023 +90501,5,10,14069,40334 +90502,277,3,924,1410568 +90503,387,10,31985,1004471 +90504,234,1,8776,55969 +90505,3,5,36236,15131 +90506,203,1,17209,1337679 +90507,160,3,20432,236696 +90508,234,1,96089,68682 +90509,387,10,13550,1242849 +90510,301,5,106747,1414890 +90511,3,5,80324,589249 +90512,413,11,11897,7510 +90513,60,1,15440,1412137 +90514,387,10,6081,47845 +90515,20,2,16997,1583173 +90516,3,5,1452,9040 +90517,333,2,356296,1575790 +90518,387,10,1294,16780 +90519,148,9,357106,1502721 +90520,87,7,260001,1549654 +90521,413,11,323426,1118109 +90522,175,5,398289,1396342 +90523,204,9,47504,9547 +90524,25,2,4248,29217 +90525,160,3,9593,15358 +90526,234,1,241742,1023419 +90527,289,6,9297,1462672 +90528,148,9,3016,29575 +90529,226,2,7916,1438589 +90530,208,2,256924,15017 +90531,209,7,2288,1337468 +90532,333,2,40466,1760125 +90533,5,10,187219,1169205 +90534,60,1,9716,1661542 +90535,269,9,10053,11877 +90536,413,11,288977,25745 +90537,57,2,206647,1401126 +90538,273,7,124075,1172478 +90539,105,7,97051,1308848 +90540,317,10,217412,104243 +90541,3,5,369894,1541138 +90542,132,2,74,1402015 +90543,413,11,99657,6827 +90544,317,10,34082,3376 +90545,328,6,50126,1398930 +90546,269,9,152532,21268 +90547,87,7,4538,52161 +90548,289,6,9514,1642550 +90549,226,2,12113,1405373 +90550,97,7,132363,1407731 +90551,3,5,17889,98442 +90552,203,1,13075,40107 +90553,3,5,215032,117459 +90554,203,1,62630,1423436 +90555,413,11,9890,330 +90556,204,9,14698,989084 +90557,317,10,127728,1085661 +90558,234,1,293271,1364789 +90559,413,11,4550,38016 +90560,360,3,18,1417413 +90561,234,1,177085,32593 +90562,273,7,157843,122 +90563,269,9,246741,1409491 +90564,187,11,346672,1425343 +90565,97,7,28452,1544003 +90566,387,10,10299,21600 +90567,3,5,146521,69538 +90568,413,11,54845,46355 +90569,317,10,19621,84958 +90570,234,1,52362,14567 +90571,3,5,34838,1632 +90572,203,1,42021,1740212 +90573,333,2,302036,1417174 +90574,234,1,175822,104727 +90575,273,7,3682,7229 +90576,226,2,238,16194 +90577,196,7,2666,1416920 +90578,413,11,29259,1620100 +90579,269,9,109439,11475 +90580,381,9,236324,1755533 +90581,87,7,1966,75002 +90582,234,1,10603,54967 +90583,387,10,68063,223693 +90584,258,9,3933,1448037 +90585,304,10,402672,1674915 +90586,234,1,38787,13953 +90587,273,7,393559,1567634 +90588,234,1,61168,14409 +90589,105,7,100770,1653076 +90590,317,10,107287,96369 +90591,3,5,43469,69974 +90592,7,3,3172,1445828 +90593,234,1,29343,194568 +90594,160,3,47412,75157 +90595,148,9,9032,4188 +90596,53,2,20544,6802 +90597,269,9,290999,1361555 +90598,102,3,74,1868860 +90599,77,10,9317,19641 +90600,387,10,52520,3950 +90601,273,7,8410,54902 +90602,317,10,267481,1327017 +90603,3,5,26030,111302 +90604,160,3,10395,10632 +90605,148,9,4806,4907 +90606,97,7,25941,1393300 +90607,53,2,285860,1519339 +90608,327,7,425774,1708022 +90609,411,9,2567,4187 +90610,317,10,13506,1485504 +90611,53,2,10268,64537 +90612,413,11,540,7312 +90613,226,2,4413,1406893 +90614,234,1,79216,1204580 +90615,148,9,251227,1286560 +90616,413,11,9462,57725 +90617,3,5,19545,18614 +90618,387,10,76996,581055 +90619,234,1,12593,16384 +90620,166,9,74,1464517 +90621,204,9,32124,108928 +90622,415,3,47410,74783 +90623,317,10,167951,543349 +90624,234,1,74942,70777 +90625,160,3,354859,1173687 +90626,208,2,339994,1094414 +90627,360,3,1991,1420151 +90628,273,7,12594,56748 +90629,204,9,2309,23773 +90630,75,5,263115,1377132 +90631,105,7,5516,43851 +90632,301,5,1125,1400535 +90633,413,11,52109,67348 +90634,273,7,35129,2027 +90635,269,9,71672,75830 +90636,143,7,6171,1344264 +90637,317,10,259835,45671 +90638,97,7,16342,1410128 +90639,111,7,401164,1286570 +90640,273,7,64685,2949 +90641,273,7,6643,4082 +90642,103,6,343173,1512781 +90643,12,10,246655,7624 +90644,317,10,377447,110511 +90645,60,1,167073,1650190 +90646,234,1,315723,986834 +90647,273,7,30876,38588 +90648,97,7,83430,76268 +90649,413,11,95358,871 +90650,234,1,193435,30833 +90651,273,7,90228,1161227 +90652,263,11,43522,112007 +90653,328,6,44363,85126 +90654,413,11,352094,145221 +90655,234,1,623,8929 +90656,234,1,26891,6011 +90657,273,7,490,6651 +90658,234,1,1813,18596 +90659,317,10,395763,1816595 +90660,317,10,10866,15344 +90661,317,10,14539,1174459 +90662,269,9,102668,1031775 +90663,413,11,42402,4309 +90664,234,1,18333,6648 +90665,387,10,1999,5010 +90666,327,7,128412,1489484 +90667,317,10,12422,1099201 +90668,317,10,20438,99592 +90669,387,10,19203,84345 +90670,53,2,49609,7652 +90671,286,3,158967,1326481 +90672,204,9,56391,78173 +90673,262,6,332567,1430237 +90674,262,6,333371,1636667 +90675,387,10,13792,75542 +90676,317,10,35118,133457 +90677,413,11,13567,68942 +90678,413,11,127380,8071 +90679,203,1,18613,1179438 +90680,53,2,12645,1316192 +90681,234,1,16800,938835 +90682,20,2,277713,1609169 +90683,273,7,448847,1610731 +90684,3,5,44502,47748 +90685,234,1,59356,124237 +90686,269,9,25520,1361753 +90687,333,2,18642,7689 +90688,286,3,110491,1049454 +90689,225,7,419430,229997 +90690,333,2,4147,14526 +90691,3,5,16374,23462 +90692,415,3,678,10157 +90693,166,9,6557,1334462 +90694,75,5,293167,67160 +90695,403,10,228968,1248648 +90696,314,2,48231,1643415 +90697,286,3,32049,51781 +90698,317,10,447236,123970 +90699,3,5,3686,19517 +90700,306,7,8916,1341781 +90701,277,3,310133,1524551 +90702,234,1,34838,57206 +90703,387,10,29263,109001 +90704,148,9,284052,66552 +90705,317,10,64861,92232 +90706,3,5,39001,1304697 +90707,273,7,75233,71620 +90708,105,7,328032,1544896 +90709,317,10,434873,1375066 +90710,234,1,238705,72191 +90711,413,11,233208,1340079 +90712,182,8,395982,1755111 +90713,190,7,272693,1707107 +90714,234,1,38765,51875 +90715,234,1,1819,19271 +90716,328,6,313922,1076157 +90717,148,9,16186,31130 +90718,328,6,11045,1392908 +90719,387,10,269165,5246 +90720,3,5,37645,64635 +90721,317,10,290379,103049 +90722,387,10,52859,13802 +90723,349,1,10198,1447587 +90724,273,7,12707,1259 +90725,172,3,15476,1392979 +90726,289,6,378236,1455615 +90727,234,1,153518,1281387 +90728,269,9,109439,1868149 +90729,234,1,39938,14674 +90730,317,10,28001,99379 +90731,273,7,41611,4082 +90732,204,9,19912,960282 +90733,52,10,13614,211911 +90734,204,9,28519,1363066 +90735,5,10,3309,14971 +90736,273,7,11610,12417 +90737,53,2,264525,7367 +90738,328,6,139582,1113441 +90739,234,1,44874,80948 +90740,387,10,268212,1205367 +90741,273,7,240832,996 +90742,317,10,32577,4581 +90743,413,11,106020,929377 +90744,387,10,67177,15191 +90745,360,3,33613,1455303 +90746,273,7,212713,14861 +90747,360,9,379019,1780152 +90748,5,10,115531,15379 +90749,273,7,157898,30267 +90750,387,10,11547,16847 +90751,387,10,211561,5396 +90752,3,5,9577,59434 +90753,192,5,1381,1398972 +90754,234,1,63584,87083 +90755,269,9,44115,141570 +90756,234,1,21118,87106 +90757,292,3,9902,1600622 +90758,317,10,60422,96172 +90759,204,9,96724,36657 +90760,97,7,809,1608893 +90761,360,9,296523,1333162 +90762,3,5,10590,4501 +90763,53,2,79372,34225 +90764,394,7,20919,92606 +90765,387,10,52868,70005 +90766,413,11,96118,11906 +90767,262,6,954,1401796 +90768,349,1,109451,1463178 +90769,387,10,43368,69104 +90770,226,2,41171,1463140 +90771,317,10,26486,2689 +90772,413,11,339547,1579514 +90773,34,8,2567,1414289 +90774,269,9,308174,15368 +90775,324,3,145481,1699940 +90776,226,2,84903,31207 +90777,269,9,5544,1600184 +90778,5,10,306952,71549 +90779,3,5,33005,1413561 +90780,203,1,260030,1453129 +90781,387,10,983,6593 +90782,413,11,130881,1060311 +90783,317,10,424488,132195 +90784,143,7,10391,554888 +90785,12,10,3164,28970 +90786,28,9,11370,1581119 +90787,349,1,9982,630 +90788,317,10,61400,1599798 +90789,387,10,27941,1086776 +90790,269,9,77338,17535 +90791,180,7,33673,121315 +90792,53,2,21866,1043608 +90793,123,3,43641,20008 +90794,203,1,19901,1391735 +90795,175,5,442752,1761199 +90796,169,3,345925,1568814 +90797,387,10,47745,95527 +90798,273,7,6963,947 +90799,106,3,15258,83347 +90800,387,10,196359,1176454 +90801,234,1,257454,39853 +90802,333,2,11496,32773 +90803,234,1,18352,83998 +90804,388,9,2675,1674649 +90805,234,1,34766,19142 +90806,234,1,117026,5030 +90807,234,1,49110,39104 +90808,148,9,156700,1209872 +90809,269,9,10860,20358 +90810,289,6,9514,1642578 +90811,3,5,22784,1033804 +90812,53,2,17978,13574 +90813,234,1,46660,1230331 +90814,269,9,31742,1820602 +90815,3,5,10909,11699 +90816,306,7,63831,409525 +90817,273,7,13336,56408 +90818,3,5,10749,66644 +90819,234,1,128841,94916 +90820,262,6,58060,1630070 +90821,413,11,148807,1092208 +90822,3,5,3072,24665 +90823,62,3,1624,1478860 +90824,3,5,1375,1590 +90825,269,9,23857,1500428 +90826,143,7,469172,1281664 +90827,387,10,49258,80900 +90828,189,3,27265,1341864 +90829,53,2,266433,1415895 +90830,317,10,48770,91277 +90831,60,1,31713,121052 +90832,3,5,10139,10688 +90833,111,7,381015,1828375 +90834,196,7,278632,1335147 +90835,234,1,33851,17281 +90836,3,5,289712,967417 +90837,3,5,48805,21232 +90838,317,10,273296,78297 +90839,187,11,256740,1402518 +90840,3,5,421958,1323205 +90841,394,7,9563,1352969 +90842,333,2,10491,1411323 +90843,244,3,38027,20949 +90844,77,10,9890,32588 +90845,287,3,14435,62824 +90846,273,7,12276,72021 +90847,273,7,25551,89804 +90848,204,9,10077,8646 +90849,244,3,44115,1339060 +90850,234,1,41611,14520 +90851,234,1,336804,1128442 +90852,413,11,39407,29636 +90853,387,10,38055,119497 +90854,225,7,181533,113043 +90855,72,11,188102,1103576 +90856,317,10,45556,88040 +90857,317,10,246655,11012 +90858,355,11,9836,1745229 +90859,381,9,10999,1411683 +90860,204,9,9042,1334508 +90861,72,11,228970,1630903 +90862,317,10,31162,116001 +90863,140,9,9297,1453550 +90864,169,3,9358,1441320 +90865,148,9,95358,9587 +90866,234,1,180998,150330 +90867,234,1,76757,9340 +90868,105,7,378607,1566577 +90869,270,9,9042,1334516 +90870,317,10,84318,1084960 +90871,209,7,10145,21122 +90872,328,6,17654,1415011 +90873,413,11,68822,11532 +90874,234,1,226269,1211636 +90875,204,9,33680,9062 +90876,52,10,22752,138176 +90877,273,7,210615,20075 +90878,196,7,10204,1398460 +90879,413,11,44655,793 +90880,269,9,293660,9618 +90881,187,11,82,1377125 +90882,105,7,178385,1076672 +90883,67,10,8247,1701153 +90884,234,1,11897,8500 +90885,296,3,9613,1529005 +90886,196,7,9286,13166 +90887,317,10,16417,80524 +90888,148,9,1640,112307 +90889,234,1,128917,63924 +90890,317,10,36251,166556 +90891,3,5,82327,19113 +90892,413,11,273,3879 +90893,317,10,89720,1269306 +90894,333,2,330459,1706714 +90895,317,10,10109,63571 +90896,317,10,220820,137618 +90897,75,5,9441,19464 +90898,234,1,343284,88832 +90899,52,10,60547,52753 +90900,413,11,60125,1100327 +90901,234,1,197611,119784 +90902,234,1,132150,566294 +90903,401,6,9982,1713403 +90904,3,5,10008,7783 +90905,273,7,3050,21068 +90906,196,7,2046,1031810 +90907,317,10,105965,1039269 +90908,53,2,31586,9255 +90909,52,10,86360,1228078 +90910,3,5,45244,34306 +90911,204,9,18665,550957 +90912,269,9,105860,80947 +90913,204,9,9352,960832 +90914,286,3,147815,1455517 +90915,234,1,20992,113337 +90916,413,11,248933,231817 +90917,387,10,10482,14469 +90918,158,2,10071,583990 +90919,234,1,88271,95501 +90920,413,11,33250,18387 +90921,234,1,106358,33954 +90922,234,1,330275,223525 +90923,234,1,25425,18899 +90924,148,9,340275,1299360 +90925,286,3,126841,1322843 +90926,317,10,378018,1038001 +90927,234,1,14108,130140 +90928,234,1,227156,13015 +90929,387,10,310126,134224 +90930,204,9,197,1333240 +90931,105,7,86732,1037942 +90932,333,2,15616,1458988 +90933,175,5,9902,1537721 +90934,249,7,1902,1400476 +90935,317,10,253077,52849 +90936,176,3,118957,1402731 +90937,3,5,43849,130186 +90938,249,7,7454,1393869 +90939,317,10,28553,8349 +90940,204,9,2288,67202 +90941,234,1,72898,1180577 +90942,413,11,9651,31931 +90943,413,11,43342,31251 +90944,203,1,101325,1560987 +90945,53,2,2525,25805 +90946,387,10,47921,2921 +90947,317,10,49577,142502 +90948,387,10,33801,103129 +90949,234,1,434873,1310518 +90950,203,1,17771,1399644 +90951,105,7,55735,1073311 +90952,413,11,328111,8063 +90953,203,1,307081,1389601 +90954,286,3,54111,553235 +90955,5,10,22504,63977 +90956,204,9,85196,1485211 +90957,53,2,220820,978753 +90958,273,7,3937,8503 +90959,250,11,329440,1616397 +90960,273,7,84178,1042452 +90961,234,1,46712,1205254 +90962,226,2,266373,1539047 +90963,234,1,16131,64141 +90964,270,9,198663,1367482 +90965,273,7,1818,3535 +90966,317,10,53805,229269 +90967,52,10,29467,102935 +90968,234,1,86608,14643 +90969,269,9,9950,12637 +90970,234,1,94727,1840038 +90971,413,11,363579,1674268 +90972,286,3,35026,1079913 +90973,204,9,69,1523481 +90974,415,3,2323,1338375 +90975,398,9,126889,1816359 +90976,317,10,142757,1117920 +90977,196,7,89492,118944 +90978,75,5,410537,1502934 +90979,298,5,168259,91122 +90980,52,10,54287,177880 +90981,3,5,70436,61628 +90982,328,6,11618,1765818 +90983,345,7,857,1456474 +90984,317,10,53619,82562 +90985,74,5,435,1574636 +90986,196,7,18937,375 +90987,75,5,21338,1630523 +90988,97,7,6171,1367493 +90989,317,10,314420,1361389 +90990,289,6,9016,1457930 +90991,105,7,126418,29967 +90992,209,7,8292,1393405 +90993,413,11,27105,318819 +90994,53,2,322,461 +90995,116,6,28893,102343 +90996,190,7,655,9891 +90997,3,5,244201,9080 +90998,317,10,80281,1327329 +90999,387,10,109491,2163 +91000,413,11,52864,29812 +91001,204,9,15788,5188 +91002,3,5,334074,61628 +91003,413,11,384737,4951 +91004,234,1,295782,37414 +91005,286,3,28974,14020 +91006,409,7,10865,1738137 +91007,413,11,205584,961037 +91008,3,5,2355,22043 +91009,262,6,297762,1335195 +91010,234,1,10235,1187223 +91011,187,11,69,113055 +91012,415,3,36635,133439 +91013,179,2,17144,1367139 +91014,287,3,10326,1418266 +91015,53,2,204922,50953 +91016,52,10,164954,547729 +91017,314,2,10733,75378 +91018,398,9,203833,40762 +91019,317,10,25518,35208 +91020,3,5,318184,1305969 +91021,148,9,156711,1203436 +91022,317,10,129530,83480 +91023,234,1,49508,51677 +91024,262,6,70074,1360108 +91025,387,10,1058,15206 +91026,376,10,26643,101225 +91027,86,3,5,1552088 +91028,187,11,10145,1404214 +91029,148,9,54845,1429528 +91030,3,5,11330,1175 +91031,111,7,634,40811 +91032,148,9,40761,12348 +91033,317,10,90351,228553 +91034,413,11,18586,1716982 +91035,244,3,3989,34527 +91036,317,10,99329,557134 +91037,5,10,27144,3485 +91038,387,10,2454,5552 +91039,204,9,283384,1317669 +91040,204,9,188598,1776763 +91041,387,10,54491,1355987 +91042,234,1,11313,33433 +91043,413,11,264644,1167206 +91044,234,1,51571,13802 +91045,3,5,205939,1085738 +91046,140,9,228066,1428822 +91047,234,1,273,3722 +91048,413,11,283995,1722 +91049,203,1,24397,1385930 +91050,169,3,356296,1630071 +91051,225,7,375012,1346942 +91052,45,9,435,1391749 +91053,394,7,9423,671 +91054,234,1,343795,41887 +91055,3,5,127493,19002 +91056,387,10,32558,67071 +91057,148,9,296523,1364238 +91058,273,7,38164,9245 +91059,317,10,21214,77356 +91060,273,7,46872,19965 +91061,387,10,58051,227366 +91062,60,1,65545,1687757 +91063,12,10,17711,209628 +91064,5,10,356156,1500348 +91065,273,7,11008,63923 +91066,234,1,297702,1011002 +91067,239,5,333484,1654425 +91068,204,9,52437,8622 +91069,287,3,260030,1317077 +91070,53,2,127560,15329 +91071,81,3,8619,1619088 +91072,234,1,144471,29317 +91073,52,10,147722,14646 +91074,398,9,2397,24526 +91075,226,2,3172,30394 +91076,234,1,371504,122590 +91077,413,11,127901,224493 +91078,317,10,16240,1226929 +91079,179,2,338189,1650751 +91080,187,11,41963,1564865 +91081,52,10,354857,1709212 +91082,262,6,14,1445885 +91083,301,5,201085,1177336 +91084,387,10,56135,14646 +91085,234,1,51247,170258 +91086,357,3,19995,1483231 +91087,12,10,298,1887 +91088,234,1,51976,567736 +91089,46,5,22584,1593330 +91090,87,7,14505,1527657 +91091,148,9,11056,1331894 +91092,277,3,23966,1419799 +91093,387,10,9070,56898 +91094,343,3,413198,62410 +91095,387,10,29786,16544 +91096,273,7,129553,34227 +91097,234,1,440597,26714 +91098,317,10,347835,1485276 +91099,234,1,10475,56377 +91100,273,7,896,13745 +91101,273,7,86718,120944 +91102,60,1,39407,999948 +91103,127,3,9461,131170 +91104,187,11,17771,1566056 +91105,196,7,324670,1338484 +91106,234,1,145220,26205 +91107,346,3,17295,1158637 +91108,234,1,128588,239473 +91109,198,6,55534,1577959 +91110,226,2,218778,1546085 +91111,415,3,286657,1354700 +91112,234,1,37992,5029 +91113,317,10,326723,1437218 +91114,53,2,27480,37285 +91115,166,9,6972,1401671 +91116,259,3,9946,1549276 +91117,269,9,205587,60193 +91118,234,1,28118,1126053 +91119,179,2,180305,1453139 +91120,53,2,34496,1206853 +91121,413,11,128081,995558 +91122,317,10,204800,62756 +91123,3,5,338,4807 +91124,105,7,171738,577617 +91125,175,5,173153,18095 +91126,3,5,283445,53640 +91127,269,9,253257,1394640 +91128,75,5,76163,1191653 +91129,204,9,43829,1096786 +91130,387,10,11876,9747 +91131,3,5,81616,56289 +91132,3,5,231082,98559 +91133,3,5,55823,238464 +91134,317,10,72096,120678 +91135,52,10,289190,968069 +91136,360,9,29136,1896772 +91137,269,9,14976,20569 +91138,273,7,67509,33526 +91139,269,9,21132,34222 +91140,262,6,7916,1438616 +91141,317,10,24675,183 +91142,387,10,46029,37526 +91143,234,1,63764,37770 +91144,269,9,273481,102873 +91145,273,7,71725,1136706 +91146,97,7,333371,1351724 +91147,234,1,137269,1423975 +91148,77,10,108,1129 +91149,394,7,12113,1404212 +91150,204,9,24556,90869 +91151,34,8,12103,1403528 +91152,346,3,17295,1046375 +91153,387,10,29989,936016 +91154,72,11,283384,1429323 +91155,289,6,134360,148147 +91156,108,10,97024,148842 +91157,314,2,1125,1406080 +91158,286,3,320453,124125 +91159,302,9,225728,1568528 +91160,273,7,301875,233130 +91161,317,10,109479,58278 +91162,5,10,99767,1359087 +91163,273,7,10910,2578 +91164,413,11,310888,1403403 +91165,413,11,74961,149379 +91166,226,2,1578,1430210 +91167,413,11,244458,43782 +91168,262,6,72545,1859985 +91169,413,11,1416,69388 +91170,187,11,21786,575128 +91171,52,10,6973,51686 +91172,32,8,10204,1774236 +91173,273,7,277558,968934 +91174,387,10,630,1505 +91175,317,10,172520,1033719 +91176,387,10,74525,87392 +91177,77,10,105231,571269 +91178,269,9,21191,87262 +91179,45,9,2454,1394117 +91180,269,9,5544,29670 +91181,239,5,297702,1636860 +91182,269,9,50086,1180490 +91183,286,3,31364,35808 +91184,286,3,102913,1750042 +91185,413,11,15489,18387 +91186,333,2,407,5597 +91187,158,2,26390,1405330 +91188,269,9,96724,36656 +91189,61,7,341174,1485682 +91190,234,1,71066,93905 +91191,234,1,288694,130497 +91192,105,7,365709,1185967 +91193,3,5,62567,14678 +91194,317,10,340616,1468062 +91195,317,10,117,1255 +91196,166,9,2924,1420150 +91197,289,6,13225,1450347 +91198,234,1,262958,15488 +91199,234,1,47911,1827779 +91200,148,9,9013,8339 +91201,105,7,52021,1637365 +91202,13,1,2503,193339 +91203,387,10,24749,27485 +91204,234,1,405882,73409 +91205,12,10,76170,173658 +91206,234,1,18222,21404 +91207,234,1,132939,32175 +91208,234,1,38761,123969 +91209,234,1,33009,109913 +91210,317,10,2300,61398 +91211,28,9,10066,1864765 +91212,234,1,140554,57763 +91213,234,1,31347,137703 +91214,413,11,172004,221362 +91215,148,9,31911,65139 +91216,158,2,10096,1546830 +91217,273,7,2197,23300 +91218,298,5,2675,1406780 +91219,204,9,73969,1128245 +91220,3,5,82696,10573 +91221,387,10,1278,16333 +91222,273,7,28115,4082 +91223,15,6,809,1450331 +91224,293,2,8470,1598739 +91225,234,1,156981,1138212 +91226,143,7,48962,1183166 +91227,317,10,156388,1145507 +91228,204,9,103332,1462312 +91229,3,5,128669,4346 +91230,52,10,41733,127146 +91231,317,10,248633,1283953 +91232,314,2,20648,1537106 +91233,317,10,4978,13596 +91234,333,2,46586,30703 +91235,387,10,42188,2036 +91236,317,10,75752,19105 +91237,317,10,25684,1120222 +91238,52,10,325780,1694708 +91239,387,10,15794,57624 +91240,45,9,339403,1635172 +91241,97,7,10590,548435 +91242,317,10,64353,52843 +91243,105,7,6973,4140 +91244,398,9,325712,1879683 +91245,298,5,204922,1404244 +91246,169,3,214756,1085298 +91247,234,1,45610,12995 +91248,72,11,200727,1614063 +91249,3,5,1497,4950 +91250,105,7,155325,6422 +91251,127,3,261273,1737894 +91252,226,2,296523,1463272 +91253,269,9,210913,1332517 +91254,175,5,149509,1391699 +91255,306,7,6947,17992 +91256,413,11,202241,53713 +91257,387,10,159469,22596 +91258,273,7,459,6243 +91259,175,5,121923,1867962 +91260,289,6,291270,1584376 +91261,250,11,223485,1414101 +91262,187,11,5516,388770 +91263,373,7,225728,117238 +91264,64,6,22292,231264 +91265,387,10,19846,75510 +91266,60,1,126516,1529916 +91267,3,5,43089,1087772 +91268,209,7,395992,1500286 +91269,64,6,51250,933118 +91270,317,10,344170,87091 +91271,413,11,284296,5884 +91272,182,8,58060,1630067 +91273,53,2,9613,13551 +91274,53,2,379019,1564024 +91275,213,10,138502,1108981 +91276,317,10,121688,1081127 +91277,72,11,2046,1455295 +91278,3,5,43923,53649 +91279,273,7,216153,19425 +91280,269,9,290714,1503519 +91281,349,1,23566,1355894 +91282,317,10,286709,1352991 +91283,289,6,149870,1456627 +91284,52,10,99261,123909 +91285,182,8,16432,1418513 +91286,87,7,237584,1621365 +91287,143,7,206647,14764 +91288,87,7,244316,1533101 +91289,413,11,44960,310 +91290,273,7,353686,1181479 +91291,273,7,403,947 +91292,60,1,18826,83656 +91293,3,5,210940,12235 +91294,143,7,351211,1348000 +91295,317,10,58928,149225 +91296,148,9,43441,33227 +91297,234,1,56135,34740 +91298,3,5,262338,1178 +91299,234,1,118549,14878 +91300,3,5,522,1919 +91301,317,10,24874,92781 +91302,317,10,234815,1064927 +91303,413,11,29161,52258 +91304,75,5,324670,1583097 +91305,3,5,33851,32805 +91306,387,10,15697,13778 +91307,269,9,200727,1318447 +91308,234,1,294640,1367051 +91309,317,10,96951,1353811 +91310,387,10,139571,1110909 +91311,234,1,53865,4109 +91312,413,11,63441,43913 +91313,3,5,983,10339 +91314,317,10,33592,110974 +91315,269,9,300669,17677 +91316,413,11,108726,1412623 +91317,234,1,122,108 +91318,53,2,3053,31060 +91319,180,7,11024,1673817 +91320,273,7,34151,7020 +91321,387,10,64465,572280 +91322,113,9,102382,1399448 +91323,413,11,9585,5056 +91324,317,10,18375,994113 +91325,317,10,20879,1347092 +91326,317,10,41611,105017 +91327,5,10,110227,27814 +91328,234,1,13436,81034 +91329,203,1,921,1345635 +91330,234,1,13561,74655 +91331,269,9,13823,75798 +91332,157,3,315855,930932 +91333,286,3,58013,1176286 +91334,246,6,284052,1774227 +91335,298,5,245891,1404739 +91336,387,10,151826,2420 +91337,234,1,28665,101518 +91338,269,9,71805,12825 +91339,64,6,16174,1410526 +91340,273,7,108222,14647 +91341,268,7,24554,19548 +91342,105,7,65887,34263 +91343,373,7,210913,1069863 +91344,77,10,18015,82598 +91345,190,7,397365,1653495 +91346,3,5,42168,19129 +91347,234,1,318553,92227 +91348,187,11,284564,1340099 +91349,235,5,209112,1483635 +91350,234,1,15527,41621 +91351,273,7,805,12013 +91352,189,3,258251,1335158 +91353,148,9,20941,958014 +91354,3,5,42307,234511 +91355,317,10,341201,1311040 +91356,277,3,46492,1529560 +91357,286,3,277778,1191196 +91358,3,5,37936,1039560 +91359,387,10,678,10147 +91360,187,11,311324,1658887 +91361,75,5,7445,1407230 +91362,387,10,96936,1769 +91363,244,3,9539,1725454 +91364,143,7,74777,583474 +91365,413,11,99318,3355 +91366,234,1,400610,21440 +91367,52,10,21468,14646 +91368,3,5,105981,1554496 +91369,53,2,309024,1173413 +91370,3,5,32600,10522 +91371,53,2,152736,1179273 +91372,3,5,9472,13140 +91373,413,11,77165,37812 +91374,60,1,15371,78371 +91375,289,6,263115,1821911 +91376,317,10,334394,1496323 +91377,3,5,25736,120313 +91378,360,3,12113,1334779 +91379,317,10,86472,99472 +91380,317,10,173189,20405 +91381,234,1,14979,51984 +91382,3,5,13539,53840 +91383,413,11,44123,82261 +91384,234,1,25005,31177 +91385,234,1,65131,128294 +91386,272,3,10727,42268 +91387,179,2,9885,1326326 +91388,105,7,48118,1116046 +91389,413,11,196469,112576 +91390,317,10,30994,75286 +91391,234,1,329206,1442573 +91392,5,10,43882,114640 +91393,3,5,38766,22085 +91394,398,9,219233,1660931 +91395,234,1,24709,1058623 +91396,12,10,28044,120531 +91397,20,2,311324,1552623 +91398,148,9,96433,7687 +91399,289,6,309879,1621485 +91400,263,11,14430,1043866 +91401,269,9,148,2634 +91402,3,5,218778,47293 +91403,204,9,82485,1170240 +91404,234,1,113700,32776 +91405,387,10,197737,4341 +91406,208,2,6963,406204 +91407,234,1,193756,36602 +91408,333,2,2604,1325234 +91409,269,9,9945,1324477 +91410,164,3,10590,1565951 +91411,52,10,123961,102441 +91412,387,10,59861,54645 +91413,169,3,10733,11310 +91414,289,6,15725,1006757 +91415,269,9,19053,551920 +91416,234,1,9918,60496 +91417,234,1,268350,131443 +91418,387,10,348389,1486489 +91419,234,1,28367,39743 +91420,387,10,227262,65870 +91421,204,9,328429,1636692 +91422,196,7,240832,1412915 +91423,148,9,18045,1792539 +91424,273,7,48116,1113128 +91425,349,1,164954,570145 +91426,317,10,324173,1371390 +91427,317,10,308174,1006784 +91428,234,1,32140,83413 +91429,52,10,104427,87688 +91430,387,10,9870,41088 +91431,83,2,50725,1830504 +91432,317,10,377158,1091980 +91433,143,7,57201,2216 +91434,196,7,1428,1335078 +91435,387,10,71805,287527 +91436,360,3,703,1380036 +91437,314,2,6973,1425971 +91438,10,3,755,1797178 +91439,246,6,284052,1774219 +91440,196,7,19142,150861 +91441,413,11,1375,16651 +91442,5,10,19968,1161233 +91443,387,10,69717,1006109 +91444,269,9,1443,5910 +91445,203,1,351242,1191093 +91446,262,6,328429,1595479 +91447,161,6,329865,1646515 +91448,3,5,130717,14284 +91449,113,9,15013,77695 +91450,317,10,285848,1170861 +91451,387,10,27966,19528 +91452,158,2,51250,1410116 +91453,204,9,43256,959007 +91454,234,1,430250,1453843 +91455,52,10,290764,167029 +91456,234,1,47171,3072 +91457,148,9,37710,8384 +91458,148,9,38922,602 +91459,141,7,10733,1545169 +91460,333,2,82350,23365 +91461,204,9,315880,1646435 +91462,234,1,28001,82389 +91463,52,10,116463,112019 +91464,148,9,284296,1094563 +91465,286,3,400174,53181 +91466,204,9,190955,1325661 +91467,3,5,322400,1660926 +91468,387,10,41733,66549 +91469,317,10,7219,44957 +91470,317,10,44754,30711 +91471,60,1,47046,1601474 +91472,269,9,3682,19755 +91473,5,10,234868,1555547 +91474,387,10,85052,14086 +91475,269,9,2140,1966 +91476,387,10,46572,67924 +91477,166,9,9819,1347735 +91478,273,7,12645,1213 +91479,262,6,14457,1556999 +91480,250,11,376501,77107 +91481,203,1,177677,1408855 +91482,234,1,54988,98538 +91483,160,3,195269,1235815 +91484,234,1,272693,991868 +91485,204,9,9664,71577 +91486,143,7,416635,1630720 +91487,165,9,3597,1439016 +91488,97,7,324670,1338372 +91489,373,7,22279,1416951 +91490,204,9,201,2528 +91491,105,7,4413,11269 +91492,175,5,1480,1542033 +91493,387,10,16563,26159 +91494,273,7,408024,57069 +91495,77,10,12453,72282 +91496,234,1,298228,98865 +91497,289,6,10539,1454751 +91498,317,10,269258,1844 +91499,3,5,116488,1305784 +91500,234,1,393732,1018336 +91501,413,11,339530,61553 +91502,28,9,9593,1877103 +91503,53,2,202241,5493 +91504,273,7,1369,1760 +91505,387,10,170936,32176 +91506,412,9,9472,1567969 +91507,387,10,20530,95501 +91508,225,7,354859,1308375 +91509,209,7,508,7049 +91510,204,9,209112,6878 +91511,387,10,63178,234743 +91512,148,9,10780,1455426 +91513,179,2,40916,1012329 +91514,3,5,96712,232804 +91515,234,1,102,1011 +91516,97,7,3057,1398178 +91517,401,6,10020,69133 +91518,3,5,246422,17393 +91519,105,7,257831,234384 +91520,204,9,32049,1802698 +91521,395,3,49013,8015 +91522,46,5,28178,1532355 +91523,203,1,37534,1395035 +91524,204,9,59678,1553153 +91525,148,9,42512,12369 +91526,3,5,9943,34643 +91527,190,7,9352,1586395 +91528,411,9,14372,16595 +91529,204,9,99846,15014 +91530,333,2,206647,1551802 +91531,179,2,6977,1319137 +91532,333,2,435,1317128 +91533,234,1,18334,102187 +91534,190,7,60281,12587 +91535,234,1,16523,5953 +91536,317,10,70966,235054 +91537,317,10,29236,103360 +91538,62,3,435,1401965 +91539,413,11,36089,33368 +91540,204,9,11234,1461988 +91541,387,10,1421,1650 +91542,75,5,70670,1411042 +91543,226,2,2897,1470597 +91544,3,5,1690,33931 +91545,76,2,13058,1834845 +91546,127,3,9461,91243 +91547,413,11,125510,1462949 +91548,179,2,14,1455294 +91549,317,10,13162,1210448 +91550,203,1,82999,869944 +91551,273,7,131689,11468 +91552,413,11,315846,25645 +91553,234,1,12427,72194 +91554,277,3,43880,27969 +91555,175,5,375366,1388900 +91556,234,1,14923,58868 +91557,97,7,76203,9441 +91558,234,1,119694,150181 +91559,317,10,136582,1106029 +91560,158,2,127521,1542735 +91561,234,1,56527,63423 +91562,75,5,77165,70030 +91563,72,11,9042,1409246 +91564,292,3,214756,1457944 +91565,317,10,44472,71082 +91566,196,7,10909,1387541 +91567,74,5,9352,1586332 +91568,317,10,13105,11505 +91569,311,9,3059,1230848 +91570,269,9,29161,103052 +91571,234,1,15577,19000 +91572,387,10,19719,85094 +91573,113,9,1428,1377213 +91574,317,10,159701,239945 +91575,269,9,46786,41702 +91576,387,10,143092,105568 +91577,289,6,291270,1584354 +91578,289,6,13798,1565825 +91579,273,7,9495,5912 +91580,234,1,120357,108983 +91581,387,10,18755,83534 +91582,413,11,12476,64727 +91583,80,3,390747,1662639 +91584,32,8,9928,1805177 +91585,277,3,22076,1337670 +91586,5,10,4809,41718 +91587,269,9,203819,61627 +91588,273,7,2577,1889 +91589,234,1,251227,1286553 +91590,141,7,77459,1540472 +91591,204,9,68684,1304299 +91592,143,7,394645,1558977 +91593,273,7,203264,1697261 +91594,127,3,71120,1798148 +91595,234,1,16235,35256 +91596,317,10,99453,3063 +91597,105,7,6183,48503 +91598,208,2,237584,548412 +91599,234,1,31131,97966 +91600,203,1,7299,1413805 +91601,226,2,11137,1525576 +91602,105,7,135708,1103630 +91603,234,1,1377,16745 +91604,269,9,55156,112990 +91605,148,9,26502,4104 +91606,269,9,24634,961609 +91607,203,1,255343,1512785 +91608,234,1,156547,69038 +91609,234,1,26643,101225 +91610,105,7,266856,117992 +91611,234,1,64526,35256 +91612,234,1,3782,5026 +91613,127,3,76341,1554064 +91614,317,10,17956,85914 +91615,204,9,28304,8622 +91616,317,10,14370,27527 +91617,108,10,118245,45621 +91618,105,7,22606,89006 +91619,113,9,132601,1396315 +91620,302,9,401164,1817464 +91621,140,9,76757,1357052 +91622,286,3,266741,60052 +91623,219,11,197,1674567 +91624,234,1,211088,230426 +91625,387,10,2994,29884 +91626,413,11,275696,1448111 +91627,301,5,12103,968602 +91628,52,10,15934,1374607 +91629,317,10,16980,78188 +91630,187,11,205584,1355537 +91631,298,5,11045,91042 +91632,141,7,79521,9102 +91633,324,3,975,1566072 +91634,388,9,3597,1790542 +91635,317,10,127614,1085159 +91636,317,10,62320,937525 +91637,387,10,225499,1210948 +91638,234,1,80660,90363 +91639,286,3,4703,39014 +91640,203,1,366045,1411729 +91641,5,10,133458,1097229 +91642,413,11,9946,60706 +91643,127,3,140887,1013293 +91644,204,9,259695,1242111 +91645,75,5,935,1556557 +91646,273,7,19819,107602 +91647,148,9,255343,1492034 +91648,161,6,8470,1573468 +91649,155,3,378441,1362636 +91650,53,2,38982,557 +91651,203,1,2309,1389548 +91652,317,10,155556,1136919 +91653,289,6,12,8042 +91654,3,5,9438,46325 +91655,387,10,17691,144382 +91656,99,3,406431,1511482 +91657,3,5,17189,58163 +91658,204,9,17978,9061 +91659,317,10,27019,3536 +91660,268,7,24420,229345 +91661,398,9,11639,49909 +91662,269,9,110909,1176049 +91663,12,10,76084,15776 +91664,3,5,121173,1076723 +91665,273,7,11091,947 +91666,273,7,417936,1354976 +91667,387,10,19096,30040 +91668,75,5,511,1609615 +91669,60,1,43469,52248 +91670,262,6,693,14194 +91671,333,2,289712,1547749 +91672,75,5,410537,1004777 +91673,234,1,53619,82800 +91674,53,2,15689,1397972 +91675,349,1,29204,60250 +91676,398,9,1381,1391756 +91677,273,7,28295,229716 +91678,53,2,77246,47892 +91679,387,10,11540,69788 +91680,301,5,381015,32753 +91681,3,5,43441,108274 +91682,273,7,129851,45670 +91683,413,11,43903,123008 +91684,317,10,17317,1282701 +91685,148,9,23152,9587 +91686,413,11,25684,56725 +91687,204,9,338676,1586323 +91688,327,7,14703,2658 +91689,5,10,152736,51736 +91690,269,9,286873,971040 +91691,273,7,325189,21587 +91692,204,9,9836,970283 +91693,269,9,27095,1439611 +91694,53,2,251555,1286912 +91695,387,10,5279,9789 +91696,289,6,339530,1379433 +91697,182,8,76341,1401739 +91698,373,7,334,1399996 +91699,53,2,41590,14311 +91700,148,9,271714,957368 +91701,105,7,72766,1251352 +91702,413,11,30155,1199555 +91703,269,9,448847,1797869 +91704,394,7,273481,1368865 +91705,314,2,302699,1419090 +91706,419,10,82077,126873 +91707,413,11,108,1136 +91708,413,11,287587,947095 +91709,53,2,20432,978753 +91710,53,2,41970,9027 +91711,234,1,418029,1685028 +91712,273,7,49074,141075 +91713,3,5,376501,37004 +91714,273,7,80316,2916 +91715,148,9,68387,928271 +91716,75,5,295627,1368961 +91717,273,7,70670,832208 +91718,53,2,508,498 +91719,190,7,10999,1338834 +91720,317,10,47099,589264 +91721,317,10,38978,1430276 +91722,160,3,16131,1339959 +91723,413,11,28026,6504 +91724,72,11,9819,1069801 +91725,52,10,133941,29433 +91726,387,10,13517,1428979 +91727,286,3,25682,1076765 +91728,53,2,11351,957875 +91729,328,6,294254,1228384 +91730,262,6,262338,1857045 +91731,387,10,200727,55691 +91732,179,2,266856,1465948 +91733,5,10,39103,78322 +91734,234,1,60551,94096 +91735,60,1,194407,1569859 +91736,3,5,10354,356 +91737,317,10,51250,62644 +91738,113,9,167073,1577998 +91739,87,7,5915,1547240 +91740,317,10,57209,225680 +91741,262,6,12171,16179 +91742,234,1,26864,69309 +91743,75,5,106049,1149942 +91744,234,1,12122,11770 +91745,373,7,19042,113073 +91746,317,10,76380,550754 +91747,67,10,11370,1581175 +91748,331,3,3172,1553254 +91749,53,2,71700,1317037 +91750,25,2,286873,1516053 +91751,46,5,339403,1635238 +91752,317,10,85916,1070233 +91753,387,10,10433,2989 +91754,51,9,809,1435591 +91755,413,11,10362,20568 +91756,3,5,76047,580678 +91757,303,3,84226,1418441 +91758,196,7,9563,1535951 +91759,413,11,42456,8863 +91760,200,3,297762,1421648 +91761,141,7,18,1881572 +91762,234,1,97910,33062 +91763,398,9,1271,1204225 +91764,234,1,22448,88800 +91765,317,10,429174,68519 +91766,273,7,11385,1938 +91767,3,5,283701,32506 +91768,148,9,13614,41114 +91769,323,10,19181,79064 +91770,262,6,388243,1622338 +91771,234,1,202183,28369 +91772,97,7,56937,1336914 +91773,324,3,82448,927981 +91774,203,1,6933,1560272 +91775,35,10,297762,1236448 +91776,204,9,145135,94905 +91777,327,7,41963,1564868 +91778,387,10,18937,1002842 +91779,12,10,415072,124647 +91780,75,5,109439,1415632 +91781,273,7,122677,1427883 +91782,234,1,226188,92591 +91783,3,5,1247,149 +91784,3,5,4893,30138 +91785,127,3,33673,1214919 +91786,204,9,278706,1334333 +91787,204,9,331962,1414914 +91788,289,6,3989,1229805 +91789,317,10,288193,1305908 +91790,413,11,35026,1194561 +91791,153,6,461955,1099125 +91792,234,1,16486,34518 +91793,52,10,387957,344781 +91794,234,1,357106,98967 +91795,166,9,50126,1441278 +91796,53,2,301875,1193632 +91797,291,6,69668,1535322 +91798,387,10,8583,55389 +91799,53,2,3085,34225 +91800,269,9,29787,552621 +91801,234,1,329865,137427 +91802,3,5,156,1178 +91803,209,7,1950,1398863 +91804,317,10,35139,131474 +91805,234,1,265208,12786 +91806,273,7,27034,7647 +91807,346,3,8988,1400539 +91808,269,9,17956,7855 +91809,333,2,410118,1712239 +91810,317,10,146322,51516 +91811,387,10,965,40 +91812,182,8,408381,1657560 +91813,53,2,2169,22182 +91814,3,5,16096,16464 +91815,105,7,132332,24295 +91816,317,10,358076,20122 +91817,273,7,104776,425396 +91818,407,6,10320,1608892 +91819,286,3,36402,1055084 +91820,234,1,403330,80523 +91821,387,10,21135,41777 +91822,394,7,70981,1390353 +91823,387,10,15264,8496 +91824,387,10,10748,24208 +91825,3,5,45726,52759 +91826,105,7,47536,592417 +91827,317,10,12128,18037 +91828,3,5,36785,116203 +91829,395,3,13205,1815473 +91830,72,11,351901,1478420 +91831,262,6,10070,36043 +91832,234,1,19187,557818 +91833,45,9,109439,1481282 +91834,269,9,3537,32403 +91835,53,2,157847,41680 +91836,113,9,332662,1570535 +91837,234,1,61070,232313 +91838,53,2,377447,1089634 +91839,53,2,7555,963705 +91840,234,1,88075,5834 +91841,289,6,378236,1840332 +91842,387,10,21242,11056 +91843,77,10,32600,144010 +91844,289,6,9016,1447474 +91845,394,7,203833,40810 +91846,340,2,60422,1327146 +91847,327,7,29143,9971 +91848,134,3,140607,8844 +91849,317,10,52847,343201 +91850,105,7,71700,8320 +91851,204,9,49609,8506 +91852,317,10,35694,4159 +91853,20,2,274857,1829870 +91854,3,5,2625,20693 +91855,234,1,54700,66037 +91856,413,11,105965,1085295 +91857,226,2,68737,32490 +91858,413,11,10020,1115299 +91859,209,7,280092,6745 +91860,53,2,200,2397 +91861,60,1,316654,1676026 +91862,387,10,338438,89121 +91863,381,9,11351,1597179 +91864,268,7,2675,136008 +91865,52,10,43504,223264 +91866,317,10,205076,92437 +91867,317,10,387886,1621110 +91868,204,9,2454,71577 +91869,286,3,205349,53190 +91870,234,1,246299,108987 +91871,148,9,333484,1145972 +91872,413,11,79218,1116934 +91873,415,3,525,122106 +91874,289,6,10693,150111 +91875,317,10,83501,1830995 +91876,5,10,27503,43840 +91877,317,10,39284,6648 +91878,40,1,1481,75975 +91879,413,11,17295,15132 +91880,203,1,76163,1437720 +91881,234,1,111332,1042212 +91882,3,5,1554,1632 +91883,387,10,27970,128436 +91884,3,5,13495,37543 +91885,234,1,83342,53847 +91886,387,10,27549,1430324 +91887,160,3,8204,9558 +91888,317,10,29825,6400 +91889,234,1,1938,834 +91890,3,5,287,4056 +91891,141,7,9836,1616642 +91892,387,10,344039,1475729 +91893,332,8,398633,1623934 +91894,219,11,17209,1560110 +91895,249,7,8619,13224 +91896,387,10,101908,1016305 +91897,413,11,70046,51228 +91898,273,7,49502,26026 +91899,317,10,98355,98538 +91900,317,10,14066,334925 +91901,160,3,11880,16685 +91902,234,1,3563,17494 +91903,291,6,12526,1412112 +91904,234,1,14550,34611 +91905,66,11,392271,1765178 +91906,413,11,55563,60627 +91907,13,3,41213,1777262 +91908,160,3,289225,1385645 +91909,413,11,103597,1345865 +91910,20,2,16996,1532733 +91911,387,10,405670,1349251 +91912,317,10,14016,135830 +91913,234,1,10744,19000 +91914,158,2,76163,1350257 +91915,381,9,44943,1403396 +91916,317,10,65614,239674 +91917,387,10,45627,40200 +91918,387,10,28,8328 +91919,127,3,11639,5531 +91920,373,7,13614,1456041 +91921,286,3,148807,1092208 +91922,415,3,13380,1271920 +91923,234,1,30352,21155 +91924,75,5,41213,1777253 +91925,239,5,131737,231592 +91926,53,2,244786,1401855 +91927,416,10,18897,19359 +91928,34,8,15092,1414555 +91929,52,10,43503,1182477 +91930,413,11,79372,32439 +91931,105,7,11131,68290 +91932,411,9,177677,30463 +91933,179,2,6163,55180 +91934,52,10,130900,964501 +91935,62,3,954,1751470 +91936,234,1,199644,135678 +91937,387,10,336050,1454975 +91938,269,9,55853,6031 +91939,234,1,41890,1614225 +91940,317,10,43200,129301 +91941,317,10,27834,38803 +91942,270,9,197,1406920 +91943,234,1,102382,87742 +91944,204,9,45335,552346 +91945,179,2,245168,1578864 +91946,333,2,354133,1496079 +91947,11,6,39101,122513 +91948,387,10,10154,51216 +91949,419,10,35381,84113 +91950,376,10,36402,574070 +91951,269,9,815,15877 +91952,292,3,11377,1602865 +91953,53,2,67377,1431320 +91954,234,1,330459,129894 +91955,317,10,103620,59290 +91956,234,1,33091,110054 +91957,413,11,31532,29598 +91958,413,11,336804,1158823 +91959,413,11,84178,1155518 +91960,3,5,26405,43803 +91961,53,2,9981,20745 +91962,317,10,116350,80260 +91963,262,6,297762,1736882 +91964,269,9,157847,41082 +91965,3,5,206563,52530 +91966,187,11,1950,1252535 +91967,413,11,103713,1034668 +91968,148,9,341174,107420 +91969,234,1,73099,568076 +91970,317,10,31347,555348 +91971,419,10,264080,153712 +91972,198,6,10796,1404283 +91973,317,10,48967,24264 +91974,52,10,63486,239444 +91975,234,1,319396,1046587 +91976,289,6,134360,225714 +91977,196,7,10929,1423757 +91978,413,11,6976,43796 +91979,143,7,381518,40816 +91980,387,10,37936,69890 +91981,413,11,17906,1672840 +91982,327,7,34723,1429540 +91983,413,11,30141,1020407 +91984,269,9,56435,1323596 +91985,52,10,96011,530882 +91986,105,7,283686,51897 +91987,226,2,41171,1429333 +91988,234,1,58518,227913 +91989,175,5,4982,1537446 +91990,234,1,43023,196435 +91991,317,10,30174,557603 +91992,204,9,72431,1334494 +91993,204,9,433,5842 +91994,317,10,29911,63550 +91995,204,9,14087,547985 +91996,97,7,222935,20229 +91997,413,11,86825,7230 +91998,269,9,16066,75942 +91999,148,9,105059,3648 +92000,97,7,11547,80827 +92001,179,2,228066,1574038 +92002,317,10,73198,262279 +92003,317,10,103014,188876 +92004,3,5,81225,92005 +92005,3,5,23128,147652 +92006,317,10,108712,1044807 +92007,3,5,293670,68909 +92008,234,1,277237,109837 +92009,277,3,77057,1543976 +92010,143,7,70074,9349 +92011,3,5,81477,1057668 +92012,413,11,9403,11372 +92013,3,5,248087,43659 +92014,105,7,121824,53012 +92015,190,7,10796,1377221 +92016,357,3,205584,1585735 +92017,234,1,131027,933253 +92018,234,1,26173,2087 +92019,97,7,369406,1872428 +92020,413,11,11502,7096 +92021,52,10,11902,70877 +92022,413,11,39024,1794997 +92023,398,9,9593,1855155 +92024,304,10,194,2420 +92025,105,7,61267,145871 +92026,273,7,49950,21962 +92027,105,7,11122,53800 +92028,273,7,18094,1547230 +92029,317,10,337789,1415654 +92030,413,11,354287,1363758 +92031,387,10,3016,29534 +92032,53,2,49502,31060 +92033,328,6,269173,1379049 +92034,60,1,28071,1696728 +92035,317,10,18414,78576 +92036,3,5,288521,13972 +92037,97,7,27265,1341855 +92038,317,10,221234,1084403 +92039,333,2,2486,406204 +92040,186,6,181533,1869389 +92041,203,1,228205,1389602 +92042,317,10,63045,115579 +92043,273,7,55694,71145 +92044,3,5,13258,72853 +92045,127,3,6973,25068 +92046,105,7,13798,1150009 +92047,234,1,58372,26487 +92048,395,3,10198,1552486 +92049,269,9,79611,1779300 +92050,22,9,755,1558414 +92051,234,1,368342,143031 +92052,387,10,108812,46610 +92053,413,11,46986,1521757 +92054,317,10,22792,4489 +92055,239,5,156981,1575341 +92056,413,11,14703,6604 +92057,234,1,289712,66074 +92058,317,10,253283,1233554 +92059,204,9,43546,552346 +92060,387,10,119893,63711 +92061,234,1,303281,81675 +92062,204,9,9475,11713 +92063,234,1,228968,76325 +92064,198,6,293660,1580860 +92065,46,5,82448,928000 +92066,5,10,16791,1263560 +92067,164,3,322443,1627138 +92068,328,6,241239,1468574 +92069,234,1,42215,19800 +92070,234,1,27711,92933 +92071,234,1,52637,23388 +92072,403,10,28894,7638 +92073,169,3,3172,1280435 +92074,287,3,8329,1637481 +92075,3,5,199575,1111473 +92076,204,9,196469,1523452 +92077,206,3,354859,1884736 +92078,204,9,9815,59531 +92079,234,1,118381,550956 +92080,262,6,2924,1378236 +92081,289,6,53210,573309 +92082,269,9,115565,961600 +92083,305,9,94727,10092 +92084,327,7,41298,1626428 +92085,127,3,11377,1602869 +92086,373,7,17111,1629466 +92087,387,10,29610,12805 +92088,52,10,831,1529518 +92089,87,7,264525,1052537 +92090,273,7,301804,989610 +92091,182,8,22279,1594168 +92092,387,10,236395,103444 +92093,317,10,52555,544569 +92094,394,7,146,1638 +92095,84,7,10590,1511086 +92096,187,11,169881,50356 +92097,53,2,302026,29457 +92098,317,10,408755,86535 +92099,387,10,26761,120312 +92100,148,9,190955,1372077 +92101,234,1,217925,6159 +92102,204,9,44943,41082 +92103,234,1,173499,1156239 +92104,387,10,4338,44763 +92105,349,1,809,1678649 +92106,182,8,7220,1395368 +92107,64,6,79935,1447088 +92108,234,1,72962,84496 +92109,317,10,80468,589583 +92110,3,5,57412,3148 +92111,333,2,228647,13986 +92112,234,1,43155,9049 +92113,387,10,43432,237350 +92114,203,1,336011,1615326 +92115,413,11,110412,80259 +92116,413,11,32634,30494 +92117,287,3,15092,1414544 +92118,413,11,44921,11443 +92119,196,7,18,143915 +92120,286,3,51994,10231 +92121,413,11,42796,69815 +92122,203,1,17654,1424640 +92123,413,11,2288,6491 +92124,3,5,11232,7262 +92125,328,6,69668,1393389 +92126,200,3,257088,1430237 +92127,273,7,9793,64156 +92128,314,2,24624,1540855 +92129,413,11,83,640 +92130,132,2,6977,1410149 +92131,3,5,27203,11442 +92132,269,9,52264,145676 +92133,182,8,6163,1415579 +92134,5,10,27112,97239 +92135,317,10,45964,62556 +92136,394,7,8869,1414549 +92137,413,11,17111,1629453 +92138,52,10,126516,125690 +92139,203,1,425591,1485172 +92140,187,11,74,1341405 +92141,208,2,88005,1318445 +92142,304,10,22584,43816 +92143,234,1,94525,213471 +92144,269,9,218778,7855 +92145,234,1,16203,79980 +92146,314,2,2567,1402016 +92147,168,3,31146,1578903 +92148,204,9,84944,1782698 +92149,204,9,88288,3358 +92150,273,7,1911,1760 +92151,234,1,229353,929628 +92152,234,1,33345,21037 +92153,234,1,890,14614 +92154,3,5,2107,8846 +92155,204,9,68737,23414 +92156,190,7,186869,1340738 +92157,234,1,275269,557210 +92158,317,10,105231,1037696 +92159,105,7,203321,929145 +92160,204,9,77012,3358 +92161,53,2,37181,229931 +92162,387,10,4688,18910 +92163,262,6,8247,54272 +92164,387,10,78340,146357 +92165,234,1,30002,148601 +92166,413,11,332839,1103576 +92167,413,11,113119,1073053 +92168,273,7,244580,1364237 +92169,3,5,42170,123868 +92170,268,7,16342,1405206 +92171,196,7,28178,1337465 +92172,234,1,326874,589536 +92173,143,7,9457,56765 +92174,273,7,62768,1327882 +92175,148,9,42218,1300688 +92176,3,5,180635,30258 +92177,387,10,414977,997743 +92178,387,10,369406,1538830 +92179,291,6,339530,1543905 +92180,160,3,89921,4661 +92181,105,7,421365,1703766 +92182,5,10,18801,1170031 +92183,289,6,214756,1140576 +92184,83,2,11377,1841639 +92185,234,1,300090,99859 +92186,387,10,423988,1036084 +92187,12,10,177677,15312 +92188,399,9,10198,1450357 +92189,209,7,233639,1792026 +92190,269,9,159211,1438447 +92191,328,6,257088,1392099 +92192,234,1,43211,129336 +92193,250,11,351211,1652052 +92194,333,2,601,9969 +92195,262,6,336882,1448315 +92196,269,9,31027,550956 +92197,60,1,76341,1518756 +92198,273,7,104251,1170115 +92199,234,1,153161,33026 +92200,413,11,350060,69018 +92201,53,2,117120,1281407 +92202,250,11,80276,1704833 +92203,105,7,93856,1105644 +92204,52,10,31167,141607 +92205,53,2,201,2530 +92206,317,10,242458,150127 +92207,296,3,7326,1866782 +92208,53,2,414453,1731650 +92209,234,1,244268,53708 +92210,317,10,33704,1133587 +92211,75,5,52661,1583611 +92212,234,1,58007,132188 +92213,317,10,46010,107670 +92214,273,7,140887,1010129 +92215,415,3,10803,1557824 +92216,52,10,60853,85948 +92217,60,1,197849,38899 +92218,204,9,3937,34176 +92219,287,3,267852,1622328 +92220,234,1,116306,1063268 +92221,413,11,45273,1332232 +92222,60,1,69,1193336 +92223,263,11,12102,957760 +92224,325,5,9472,1567903 +92225,317,10,20312,1058 +92226,75,5,257088,1046684 +92227,141,7,14554,34310 +92228,75,5,72431,96389 +92229,317,10,203539,16704 +92230,289,6,57089,1455598 +92231,269,9,403867,1723493 +92232,204,9,270303,1151493 +92233,394,7,14676,1807338 +92234,387,10,42453,157290 +92235,234,1,145813,930633 +92236,398,9,102382,1360093 +92237,234,1,9385,57542 +92238,234,1,198277,45117 +92239,234,1,137853,1184376 +92240,51,9,954,1632585 +92241,317,10,2525,25796 +92242,3,5,19946,38589 +92243,234,1,123592,145724 +92244,317,10,4279,25950 +92245,234,1,116894,186483 +92246,333,2,705,26175 +92247,317,10,2241,23116 +92248,333,2,3309,4128 +92249,234,1,458428,1820247 +92250,234,1,46286,148100 +92251,208,2,270851,1321933 +92252,413,11,11329,2241 +92253,273,7,23857,1500425 +92254,226,2,198795,1584966 +92255,226,2,337339,1725780 +92256,234,1,13798,103679 +92257,387,10,10406,65001 +92258,204,9,241742,1339602 +92259,387,10,939,14282 +92260,415,3,109251,1081673 +92261,204,9,9716,1182551 +92262,204,9,2105,21589 +92263,12,10,9396,57147 +92264,234,1,51349,146922 +92265,60,1,204040,1372222 +92266,234,1,29449,9789 +92267,45,9,354979,1835299 +92268,148,9,13092,933594 +92269,387,10,38681,1016262 +92270,289,6,69103,148152 +92271,317,10,341077,71952 +92272,53,2,16638,989154 +92273,234,1,441043,1755721 +92274,11,6,294272,1660720 +92275,387,10,10929,58403 +92276,269,9,12528,1096 +92277,226,2,39979,1743939 +92278,317,10,86727,1315696 +92279,413,11,104954,5821 +92280,244,3,48231,1643409 +92281,387,10,64928,113708 +92282,203,1,1877,1456506 +92283,52,10,22998,2428 +92284,220,7,384737,1692260 +92285,175,5,10632,1377502 +92286,3,5,24624,20065 +92287,18,2,266433,1415899 +92288,413,11,10805,15005 +92289,213,10,61991,35841 +92290,105,7,55615,57304 +92291,3,5,27150,21793 +92292,3,5,459295,110261 +92293,204,9,291871,1894736 +92294,331,3,10204,1613271 +92295,398,9,72545,11102 +92296,317,10,31428,11770 +92297,273,7,147106,1938 +92298,226,2,9716,10444 +92299,97,7,1427,16887 +92300,387,10,560,7637 +92301,148,9,331313,970192 +92302,204,9,11855,1522774 +92303,387,10,34019,72500 +92304,5,10,38962,1173740 +92305,289,6,3933,1448047 +92306,143,7,13483,40141 +92307,3,5,34598,13670 +92308,317,10,54384,150511 +92309,203,1,76341,1392737 +92310,289,6,9514,1450979 +92311,208,2,336050,1644780 +92312,413,11,283686,16984 +92313,394,7,6933,42036 +92314,182,8,228066,1367560 +92315,273,7,11909,65957 +92316,234,1,157676,2333 +92317,413,11,74527,3159 +92318,234,1,100247,1024165 +92319,3,5,127560,37279 +92320,269,9,32275,5187 +92321,52,10,287281,1353911 +92322,273,7,12780,65982 +92323,327,7,815,15881 +92324,3,5,108345,544755 +92325,413,11,81541,592058 +92326,5,10,49258,238810 +92327,234,1,256222,18626 +92328,413,11,37368,30494 +92329,394,7,5,1438571 +92330,273,7,64928,30268 +92331,387,10,248543,102561 +92332,399,9,29233,1125215 +92333,269,9,1420,1398758 +92334,105,7,18783,7647 +92335,346,3,3172,1409837 +92336,269,9,34193,6584 +92337,273,7,8981,22047 +92338,234,1,25673,18738 +92339,119,7,41213,1777174 +92340,289,6,234377,1113180 +92341,204,9,781,11604 +92342,413,11,51759,70568 +92343,289,6,346672,1721333 +92344,204,9,43904,1118849 +92345,317,10,239619,66936 +92346,328,6,283686,1582736 +92347,204,9,7220,7416 +92348,79,7,42515,558644 +92349,204,9,169869,1222 +92350,127,3,188102,8357 +92351,387,10,126889,231826 +92352,415,3,99698,1606183 +92353,317,10,14534,44848 +92354,373,7,109424,1392609 +92355,317,10,49110,944511 +92356,234,1,148408,27213 +92357,249,7,10204,1411085 +92358,160,3,28263,1434067 +92359,52,10,42683,74879 +92360,3,5,86920,30923 +92361,333,2,15177,46125 +92362,273,7,199575,1323512 +92363,75,5,8619,1377231 +92364,67,10,28178,1532072 +92365,234,1,143380,223492 +92366,244,3,263472,1320985 +92367,165,9,6947,1573074 +92368,317,10,9343,6818 +92369,3,5,577,6389 +92370,3,5,764,11469 +92371,273,7,371645,1671690 +92372,317,10,100024,1022795 +92373,413,11,325302,1465613 +92374,54,10,18283,27968 +92375,203,1,259830,1340730 +92376,3,5,118059,9057 +92377,3,5,9591,16300 +92378,3,5,167935,966787 +92379,413,11,49847,16675 +92380,97,7,15440,1336914 +92381,234,1,49907,32375 +92382,387,10,108391,199441 +92383,204,9,1480,12346 +92384,317,10,346646,86325 +92385,269,9,82654,51987 +92386,413,11,709,10495 +92387,269,9,32085,510 +92388,387,10,64868,120925 +92389,262,6,14,1399063 +92390,387,10,20132,35736 +92391,289,6,132714,11427 +92392,328,6,336882,1395761 +92393,177,6,435,1567906 +92394,187,11,9286,1378453 +92395,234,1,125926,3857 +92396,387,10,1659,18400 +92397,204,9,128866,135858 +92398,3,5,31258,1088071 +92399,72,11,10066,1429252 +92400,5,10,348315,1388997 +92401,234,1,131039,77964 +92402,20,2,9472,1567949 +92403,179,2,258480,1328380 +92404,198,6,9593,1877150 +92405,196,7,9543,1401786 +92406,53,2,149511,1536616 +92407,234,1,403431,1640646 +92408,333,2,117,1458993 +92409,52,10,9982,61414 +92410,234,1,33273,74943 +92411,387,10,7548,52896 +92412,3,5,198277,783230 +92413,234,1,14830,35269 +92414,373,7,333484,1378228 +92415,53,2,20439,1560267 +92416,324,3,44510,5602 +92417,398,9,227306,1347995 +92418,105,7,52358,29967 +92419,105,7,79707,237520 +92420,83,2,59115,1541708 +92421,203,1,10330,1344278 +92422,250,11,26390,1407205 +92423,273,7,330381,227936 +92424,3,5,1427,1077 +92425,234,1,476,5216 +92426,53,2,37534,933576 +92427,387,10,29492,100616 +92428,3,5,197854,1123377 +92429,234,1,11943,2226 +92430,234,1,41131,4065 +92431,387,10,975,240 +92432,77,10,10011,61986 +92433,387,10,16176,31439 +92434,226,2,38027,16653 +92435,60,1,414977,1200655 +92436,234,1,239498,30477 +92437,413,11,16993,19334 +92438,286,3,105077,23864 +92439,413,11,10011,61992 +92440,204,9,83461,1375373 +92441,232,10,179818,34752 +92442,127,3,28090,72258 +92443,208,2,168027,1317128 +92444,379,2,46567,1008501 +92445,204,9,8204,1380382 +92446,273,7,185154,1540050 +92447,5,10,1922,19985 +92448,234,1,355008,17835 +92449,317,10,21627,1223 +92450,273,7,41073,120123 +92451,234,1,28573,101191 +92452,317,10,181876,548673 +92453,387,10,11472,10965 +92454,333,2,46286,1563894 +92455,234,1,123611,145724 +92456,387,10,58051,227367 +92457,225,7,33586,1815011 +92458,234,1,188836,1329933 +92459,317,10,104374,226748 +92460,87,7,26510,1555745 +92461,387,10,228647,33029 +92462,234,1,28280,64508 +92463,234,1,54093,6361 +92464,387,10,315837,60185 +92465,234,1,137145,1106877 +92466,234,1,70327,89166 +92467,386,5,469172,230466 +92468,394,7,10066,9430 +92469,273,7,267935,491 +92470,105,7,95358,11441 +92471,40,1,186869,1862919 +92472,245,3,2731,1730019 +92473,413,11,133458,1152813 +92474,327,7,14126,1334507 +92475,241,3,2976,29216 +92476,204,9,15788,369 +92477,234,1,33146,6217 +92478,387,10,5177,41902 +92479,209,7,266856,1412120 +92480,113,9,84226,1418423 +92481,244,3,11351,1341775 +92482,5,10,29510,21672 +92483,72,11,274857,62185 +92484,52,10,284279,139989 +92485,286,3,94727,1773181 +92486,217,3,297762,1824247 +92487,182,8,24750,1712246 +92488,113,9,354859,1686498 +92489,53,2,12780,552388 +92490,105,7,259694,1525811 +92491,387,10,121003,254114 +92492,333,2,201085,1316504 +92493,161,6,11024,1673809 +92494,234,1,126323,229180 +92495,269,9,233639,1162725 +92496,20,2,419430,1761130 +92497,273,7,26533,4345 +92498,3,5,11909,70901 +92499,143,7,9928,1390523 +92500,387,10,982,1931 +92501,269,9,330459,1325211 +92502,317,10,12764,53394 +92503,387,10,27917,113940 +92504,306,7,304372,1466245 +92505,234,1,9297,57193 +92506,143,7,312221,7537 +92507,234,1,408537,584191 +92508,148,9,413998,53020 +92509,232,10,31417,5733 +92510,87,7,343934,1546622 +92511,273,7,59424,16673 +92512,387,10,71805,1644921 +92513,97,7,333484,1338372 +92514,204,9,50153,1000532 +92515,403,10,14811,957559 +92516,113,9,9472,19663 +92517,3,5,137504,554992 +92518,160,3,4547,8684 +92519,52,10,327225,1040543 +92520,273,7,18998,68761 +92521,198,6,333484,1654427 +92522,413,11,1481,63962 +92523,234,1,33317,110347 +92524,317,10,352025,1307845 +92525,226,2,1578,76701 +92526,3,5,44545,3250 +92527,52,10,297762,1213170 +92528,289,6,10674,1457930 +92529,169,3,8870,1350133 +92530,413,11,10134,5433 +92531,395,3,11024,1455604 +92532,104,7,42418,1559635 +92533,152,2,52021,332714 +92534,234,1,374460,1554315 +92535,228,2,857,1556436 +92536,317,10,20742,150479 +92537,317,10,71689,567615 +92538,387,10,166621,32575 +92539,203,1,71668,1423005 +92540,289,6,65759,1453006 +92541,269,9,12476,1026688 +92542,200,3,127585,1384371 +92543,53,2,9102,1304747 +92544,387,10,56292,120015 +92545,3,5,30036,8620 +92546,53,2,9425,6881 +92547,269,9,3037,29818 +92548,269,9,63773,2657 +92549,317,10,120676,1307851 +92550,209,7,44155,1161625 +92551,187,11,11056,1418156 +92552,234,1,9890,7908 +92553,286,3,118098,1066806 +92554,148,9,3587,7535 +92555,143,7,354979,1085290 +92556,3,5,28000,14678 +92557,413,11,1634,16593 +92558,293,2,369885,1790935 +92559,317,10,265563,1072616 +92560,262,6,178809,1412593 +92561,175,5,1647,1183452 +92562,60,1,10484,1565957 +92563,317,10,258384,9748 +92564,53,2,9543,4034 +92565,277,3,294254,113048 +92566,3,5,172385,406615 +92567,3,5,41516,117001 +92568,360,9,33586,1814975 +92569,317,10,63764,34822 +92570,317,10,140481,71797 +92571,234,1,191476,97755 +92572,165,9,11377,1424898 +92573,97,7,13849,1413938 +92574,387,10,16523,84414 +92575,97,7,266102,1376635 +92576,317,10,56937,74741 +92577,72,11,102668,1031772 +92578,182,8,333484,1654424 +92579,373,7,12573,9619 +92580,413,11,13336,58138 +92581,237,7,1375,16655 +92582,413,11,314011,1371606 +92583,52,10,38164,1202096 +92584,234,1,5899,27875 +92585,387,10,694,240 +92586,387,10,11373,28385 +92587,3,5,75641,11848 +92588,175,5,9785,1391699 +92589,328,6,25376,113379 +92590,289,6,9297,1455604 +92591,269,9,1125,11002 +92592,387,10,346723,1482819 +92593,53,2,31805,4350 +92594,234,1,133328,49063 +92595,327,7,74,7764 +92596,269,9,228108,1046590 +92597,317,10,21627,7623 +92598,39,3,8467,1893236 +92599,387,10,28293,1022760 +92600,147,1,6947,1462853 +92601,325,5,329865,1436493 +92602,317,10,94739,121409 +92603,398,9,31413,1603649 +92604,273,7,60853,3249 +92605,180,7,57597,1676192 +92606,60,1,47921,1344915 +92607,317,10,78450,584053 +92608,387,10,43889,1150485 +92609,204,9,17889,9062 +92610,53,2,10803,14493 +92611,234,1,168496,37361 +92612,413,11,1599,17886 +92613,105,7,255491,54599 +92614,5,10,33839,67774 +92615,3,5,46786,47275 +92616,3,5,43266,14648 +92617,87,7,55720,1538148 +92618,105,7,11677,48592 +92619,273,7,9602,4613 +92620,97,7,13792,75562 +92621,97,7,1991,548439 +92622,205,10,356752,1841581 +92623,387,10,705,10601 +92624,22,9,186869,1862929 +92625,246,6,126889,1746437 +92626,413,11,27230,1409446 +92627,314,2,12450,1539776 +92628,3,5,74126,552001 +92629,245,3,413882,1735095 +92630,3,5,43850,10537 +92631,270,9,10070,1404714 +92632,317,10,82481,21228 +92633,3,5,4380,24256 +92634,413,11,1811,19224 +92635,208,2,410537,1704837 +92636,53,2,150117,20465 +92637,187,11,118957,1402739 +92638,234,1,29058,85767 +92639,234,1,21741,94237 +92640,52,10,75174,574090 +92641,317,10,105906,44957 +92642,269,9,49950,11877 +92643,387,10,389630,1053420 +92644,317,10,24955,11037 +92645,3,5,315664,56021 +92646,269,9,4248,14039 +92647,52,10,365942,34050 +92648,269,9,253286,1293655 +92649,203,1,369894,113853 +92650,204,9,38769,41754 +92651,75,5,13614,1610046 +92652,387,10,27203,81286 +92653,113,9,84226,1418424 +92654,143,7,205587,21103 +92655,387,10,4964,41039 +92656,53,2,329712,1646359 +92657,317,10,177085,32593 +92658,317,10,336691,1547698 +92659,3,5,482,6570 +92660,317,10,42345,6835 +92661,368,7,11547,1557611 +92662,234,1,192301,100036 +92663,269,9,121674,1253 +92664,413,11,17009,1206326 +92665,413,11,21208,64335 +92666,75,5,180305,1453136 +92667,204,9,329865,1327907 +92668,360,3,8470,1337452 +92669,53,2,288710,37025 +92670,387,10,4291,3317 +92671,196,7,218778,1406390 +92672,269,9,285685,1618898 +92673,333,2,238589,1432996 +92674,387,10,120,108 +92675,148,9,37311,1137341 +92676,413,11,262522,1236554 +92677,169,3,1381,1394748 +92678,3,5,185934,33413 +92679,3,5,48601,68821 +92680,53,2,33788,2327 +92681,413,11,37932,1327842 +92682,413,11,283445,64335 +92683,234,1,57230,225721 +92684,127,3,18417,83093 +92685,105,7,24645,92112 +92686,204,9,3941,31969 +92687,234,1,329440,1300274 +92688,97,7,354287,40823 +92689,301,5,82,1403479 +92690,52,10,137145,1106880 +92691,413,11,4551,7068 +92692,413,11,511,7095 +92693,189,3,9457,1378725 +92694,234,1,36992,228434 +92695,262,6,2454,1401803 +92696,208,2,47186,1445471 +92697,197,5,126889,1746428 +92698,204,9,59408,1590421 +92699,273,7,61984,1537405 +92700,32,8,82703,1450983 +92701,269,9,133458,1080951 +92702,155,3,378441,1797514 +92703,269,9,141819,1044527 +92704,3,5,37633,1501039 +92705,45,9,106747,1401129 +92706,234,1,79025,32375 +92707,317,10,121823,53218 +92708,226,2,340101,1763664 +92709,105,7,31397,94667 +92710,273,7,264644,551482 +92711,387,10,70881,108625 +92712,204,9,16296,35089 +92713,198,6,177677,1545978 +92714,387,10,288521,72063 +92715,387,10,10344,61824 +92716,187,11,258480,1527434 +92717,209,7,244316,1409225 +92718,3,5,109439,5387 +92719,317,10,42678,2891 +92720,53,2,121923,41414 +92721,234,1,324083,1266093 +92722,269,9,11788,6379 +92723,273,7,180635,30256 +92724,160,3,264644,92234 +92725,317,10,38065,86038 +92726,273,7,96238,68188 +92727,204,9,14811,47415 +92728,327,7,293982,1400497 +92729,234,1,41903,37630 +92730,234,1,10033,11873 +92731,317,10,61904,1416937 +92732,52,10,343284,88832 +92733,413,11,12422,1866065 +92734,141,7,10204,1605893 +92735,3,5,11204,68590 +92736,317,10,655,9880 +92737,239,5,10484,1676547 +92738,77,10,9987,61493 +92739,234,1,171581,83985 +92740,317,10,64882,240017 +92741,148,9,42664,1010740 +92742,413,11,303856,1645540 +92743,198,6,315837,1797227 +92744,415,3,263115,1821891 +92745,22,9,159667,1849497 +92746,196,7,3682,5338 +92747,317,10,25903,12900 +92748,12,10,16096,68215 +92749,52,10,25551,70997 +92750,269,9,340488,991599 +92751,105,7,393562,110190 +92752,387,10,108003,1178112 +92753,204,9,48210,10323 +92754,105,7,43817,1187024 +92755,234,1,60086,79492 +92756,127,3,186869,156869 +92757,3,5,46069,46233 +92758,413,11,37923,2988 +92759,97,7,58244,1267055 +92760,269,9,157843,991599 +92761,18,2,9593,83072 +92762,387,10,53879,69393 +92763,387,10,3554,32766 +92764,209,7,46286,1302523 +92765,209,7,209112,1368884 +92766,387,10,26643,87394 +92767,317,10,37181,1332199 +92768,27,3,116463,1691512 +92769,234,1,27417,101542 +92770,234,1,191850,1172337 +92771,234,1,56804,89193 +92772,5,10,62392,226654 +92773,182,8,1125,1551517 +92774,269,9,11576,4085 +92775,387,10,377853,47822 +92776,203,1,100770,1650687 +92777,269,9,301228,1519842 +92778,317,10,36785,116190 +92779,204,9,289712,1178366 +92780,52,10,22396,88740 +92781,105,7,21132,17990 +92782,204,9,146233,1206767 +92783,77,10,194,2419 +92784,413,11,220809,1648381 +92785,317,10,55694,223007 +92786,5,10,2135,11624 +92787,250,11,333663,1709188 +92788,3,5,9314,151 +92789,301,5,140607,1400535 +92790,204,9,57749,1411217 +92791,105,7,71120,36149 +92792,200,3,10529,1399925 +92793,387,10,310602,89973 +92794,60,1,2898,8419 +92795,209,7,2107,1672761 +92796,387,10,55152,99884 +92797,346,3,10733,91941 +92798,175,5,10389,1437895 +92799,52,10,43503,240838 +92800,415,3,17136,1463855 +92801,234,1,407531,1654251 +92802,11,6,9514,1642560 +92803,3,5,329712,1458945 +92804,3,5,61151,2005 +92805,317,10,259690,213384 +92806,12,10,30666,70645 +92807,52,10,182035,96725 +92808,3,5,71701,30138 +92809,328,6,64215,1354357 +92810,269,9,228066,6379 +92811,204,9,283995,1326651 +92812,234,1,20034,86482 +92813,387,10,4476,37427 +92814,394,7,6557,1404212 +92815,317,10,43931,5140 +92816,3,5,332662,1570511 +92817,328,6,7551,1526468 +92818,60,1,186585,106013 +92819,262,6,15092,3958 +92820,415,3,384737,1699526 +92821,234,1,71668,62797 +92822,204,9,33472,12346 +92823,317,10,77882,10722 +92824,234,1,43811,84034 +92825,317,10,315850,933410 +92826,187,11,544,1413091 +92827,317,10,93828,999760 +92828,5,10,4529,53837 +92829,269,9,59861,3188 +92830,105,7,105231,1037697 +92831,204,9,1859,9062 +92832,317,10,11925,72682 +92833,387,10,94225,96341 +92834,387,10,22897,17698 +92835,387,10,92381,183036 +92836,127,3,22606,1041048 +92837,387,10,11561,10439 +92838,175,5,163791,1601461 +92839,12,10,32021,78153 +92840,200,3,256347,1547676 +92841,234,1,22256,11057 +92842,234,1,14510,27991 +92843,269,9,32868,1013707 +92844,234,1,398452,1623221 +92845,277,7,245700,65458 +92846,234,1,341517,1470051 +92847,413,11,94809,53197 +92848,413,11,257302,52258 +92849,52,10,99863,81019 +92850,175,5,7340,1304326 +92851,317,10,36251,564113 +92852,328,6,118,1335880 +92853,136,1,300983,1327535 +92854,234,1,287811,1038004 +92855,387,10,21605,18357 +92856,60,1,11799,10249 +92857,387,10,94176,998690 +92858,269,9,2,53836 +92859,52,10,120303,1028485 +92860,203,1,271714,1414532 +92861,357,3,72431,1483233 +92862,413,11,91070,77971 +92863,3,5,15560,95759 +92864,273,7,3309,3249 +92865,289,6,260030,1453119 +92866,387,10,43045,1263207 +92867,127,3,244786,1453571 +92868,269,9,224,3563 +92869,147,1,755,1685556 +92870,3,5,1272,26192 +92871,317,10,126090,1082084 +92872,273,7,24750,7647 +92873,32,8,121598,1880920 +92874,53,2,36737,1435907 +92875,387,10,48210,15191 +92876,269,9,97630,1327160 +92877,413,11,19255,1782 +92878,286,3,99859,52006 +92879,226,2,197,1406913 +92880,413,11,616,9187 +92881,387,10,373546,21136 +92882,413,11,105384,1127654 +92883,413,11,197082,3564 +92884,3,5,256092,1325841 +92885,182,8,14254,1391700 +92886,127,3,47404,12431 +92887,139,3,10937,1776 +92888,339,2,10351,107372 +92889,234,1,109491,2163 +92890,160,3,8870,166753 +92891,234,1,114242,1058221 +92892,127,3,28090,1428202 +92893,234,1,16382,16401 +92894,66,11,3063,64114 +92895,141,7,3059,1899111 +92896,3,5,15081,29296 +92897,273,7,74585,12331 +92898,413,11,12483,44993 +92899,317,10,65134,1139425 +92900,167,3,15092,1339463 +92901,273,7,22897,947 +92902,234,1,19545,18598 +92903,209,7,11639,1425513 +92904,234,1,29117,4109 +92905,273,7,60106,1365989 +92906,387,10,10918,67462 +92907,97,7,9946,548445 +92908,155,3,48617,1318685 +92909,75,5,52661,1534227 +92910,273,7,236324,128763 +92911,413,11,153854,1288697 +92912,105,7,253612,583871 +92913,317,10,264525,76869 +92914,52,10,296523,1458589 +92915,52,10,69165,44693 +92916,289,6,149870,1456624 +92917,3,5,1443,6345 +92918,394,7,228066,11351 +92919,207,3,11056,1347760 +92920,52,10,384682,53758 +92921,164,3,274857,1829896 +92922,317,10,325189,1160311 +92923,105,7,17577,9425 +92924,317,10,21435,21171 +92925,5,10,159185,1186675 +92926,387,10,10703,66774 +92927,234,1,197,2461 +92928,373,7,32080,1338830 +92929,387,10,48791,70636 +92930,360,3,258193,1367360 +92931,53,2,12103,7735 +92932,413,11,30995,107476 +92933,204,9,59197,1403323 +92934,387,10,108789,41159 +92935,52,10,66178,45730 +92936,234,1,16378,10713 +92937,373,7,287628,1540251 +92938,296,3,302699,1729084 +92939,286,3,264397,1324067 +92940,234,1,56653,567750 +92941,317,10,38404,85996 +92942,413,11,2034,3987 +92943,52,10,84905,1150493 +92944,234,1,13668,6340 +92945,148,9,59115,1830874 +92946,413,11,15934,53395 +92947,387,10,93891,1541302 +92948,234,1,46930,137813 +92949,105,7,351809,23594 +92950,179,2,703,81533 +92951,5,10,70670,934166 +92952,113,9,24624,62877 +92953,273,7,11104,68029 +92954,317,10,51759,134431 +92955,349,1,1267,1447483 +92956,37,3,379019,1780160 +92957,387,10,26880,6759 +92958,373,7,336882,1411814 +92959,273,7,2100,1760 +92960,52,10,112503,21228 +92961,187,11,14,6048 +92962,273,7,9441,491 +92963,179,2,59965,1328147 +92964,9,3,40466,1760136 +92965,317,10,377691,72372 +92966,203,1,857,1341865 +92967,190,7,425774,1708020 +92968,113,9,6171,1406596 +92969,46,5,14019,76272 +92970,53,2,347258,1525130 +92971,303,3,49009,59812 +92972,234,1,27003,25165 +92973,317,10,373838,1400569 +92974,3,5,116236,240922 +92975,123,3,64047,1069215 +92976,234,1,15264,78053 +92977,234,1,113148,64141 +92978,317,10,42989,149982 +92979,387,10,142798,1117980 +92980,323,10,303360,1502071 +92981,46,5,325803,1428038 +92982,287,3,27414,548413 +92983,75,5,126889,1527926 +92984,234,1,71866,564083 +92985,236,8,121598,1457892 +92986,234,1,54318,46297 +92987,317,10,335053,57865 +92988,387,10,11137,38418 +92989,317,10,424600,1228520 +92990,27,3,4248,1394323 +92991,234,1,97630,14392 +92992,387,10,437830,569848 +92993,189,3,16921,1401772 +92994,289,6,109298,115754 +92995,413,11,260947,1304139 +92996,413,11,285135,1396337 +92997,413,11,154972,23579 +92998,317,10,85628,544524 +92999,53,2,263115,8411 +93000,5,10,42648,1487326 +93001,203,1,17770,1424319 +93002,226,2,263115,1757642 +93003,413,11,34650,22087 +93004,387,10,267977,558937 +93005,411,9,109491,6923 +93006,196,7,156981,1367131 +93007,148,9,2160,9587 +93008,317,10,53714,39853 +93009,3,5,224944,1446397 +93010,234,1,128043,85637 +93011,333,2,15697,29801 +93012,53,2,103938,9064 +93013,269,9,124054,1085030 +93014,262,6,33273,1538767 +93015,232,10,168027,122728 +93016,234,1,285869,1351027 +93017,333,2,31498,29813 +93018,3,5,37308,40896 +93019,97,7,1966,142096 +93020,148,9,302699,6191 +93021,413,11,47112,9001 +93022,234,1,11658,64883 +93023,3,5,39519,1398539 +93024,182,8,140607,1399475 +93025,53,2,314011,1425929 +93026,333,2,14676,1550903 +93027,269,9,3055,8883 +93028,387,10,76788,150690 +93029,325,5,44943,1403414 +93030,411,9,188927,961544 +93031,234,1,18634,113302 +93032,234,1,246422,38868 +93033,60,1,50247,20025 +93034,244,3,544,1748859 +93035,53,2,11622,40471 +93036,53,2,12994,1321334 +93037,234,1,14543,1063900 +93038,234,1,104193,46230 +93039,273,7,18530,8320 +93040,97,7,9514,1376635 +93041,203,1,28452,100847 +93042,273,7,71133,30634 +93043,317,10,367006,229484 +93044,217,3,10198,1615551 +93045,387,10,244,3241 +93046,373,7,251,928942 +93047,148,9,2898,4197 +93048,204,9,169,46082 +93049,269,9,10033,21640 +93050,273,7,77887,5666 +93051,234,1,11899,7908 +93052,5,10,15497,223803 +93053,53,2,9591,557 +93054,234,1,317389,223791 +93055,269,9,16186,61653 +93056,234,1,330418,1441730 +93057,52,10,46145,84238 +93058,209,7,9286,1411856 +93059,289,6,81310,69003 +93060,226,2,13549,1185198 +93061,317,10,256740,87183 +93062,234,1,148,90 +93063,234,1,21036,628 +93064,317,10,150201,1448865 +93065,53,2,12101,1496857 +93066,394,7,12113,14765 +93067,273,7,43157,14283 +93068,304,10,34796,222573 +93069,203,1,211144,1481353 +93070,3,5,1678,18599 +93071,204,9,6972,1117953 +93072,413,11,210940,1118130 +93073,415,3,51947,6608 +93074,3,5,13507,20844 +93075,234,1,146679,95135 +93076,66,11,10440,1562119 +93077,182,8,76170,1352284 +93078,234,1,28110,8328 +93079,234,1,242042,41549 +93080,292,3,341174,1764543 +93081,317,10,85430,932045 +93082,317,10,44211,130497 +93083,317,10,72766,12833 +93084,234,1,28323,35525 +93085,413,11,12591,73027 +93086,204,9,16980,1403392 +93087,160,3,1640,182168 +93088,373,7,755,1398123 +93089,234,1,137646,19003 +93090,204,9,246403,64231 +93091,349,1,32657,1355894 +93092,273,7,10276,63964 +93093,273,7,318973,836378 +93094,286,3,14217,115640 +93095,234,1,342472,77153 +93096,180,7,51144,1625064 +93097,148,9,19140,10918 +93098,60,1,169656,1054790 +93099,234,1,378570,1381776 +93100,57,2,228066,1411074 +93101,187,11,19255,1445479 +93102,234,1,172386,125266 +93103,176,3,242224,1428871 +93104,415,3,77950,1272639 +93105,273,7,125300,21587 +93106,204,9,339527,1543198 +93107,403,10,30934,30698 +93108,234,1,76703,148082 +93109,3,5,72057,1689779 +93110,234,1,868,13079 +93111,413,11,156700,1182914 +93112,53,2,157847,1321356 +93113,335,6,297762,1903912 +93114,317,10,369019,152183 +93115,413,11,69266,1270118 +93116,317,10,33784,111346 +93117,196,7,22076,1398194 +93118,77,10,13649,40254 +93119,204,9,81001,1696937 +93120,3,5,17669,25398 +93121,387,10,9519,37618 +93122,176,3,6171,1426766 +93123,77,10,18917,83784 +93124,175,5,9820,589974 +93125,286,3,16147,79605 +93126,60,1,19545,1178751 +93127,387,10,2349,24074 +93128,413,11,4140,34953 +93129,148,9,435,6055 +93130,327,7,352208,138802 +93131,317,10,393172,1633351 +93132,52,10,37238,55692 +93133,148,9,418437,6880 +93134,413,11,42871,34439 +93135,234,1,67748,549310 +93136,5,10,429238,1733797 +93137,200,3,283995,1399866 +93138,387,10,10770,25319 +93139,53,2,5183,8922 +93140,344,9,9655,1546584 +93141,52,10,43896,1075423 +93142,5,10,339116,21022 +93143,373,7,9568,1281018 +93144,57,2,263115,1465624 +93145,413,11,262988,44952 +93146,269,9,26949,5491 +93147,317,10,52039,145206 +93148,196,7,70667,1066233 +93149,53,2,25520,989050 +93150,234,1,228066,2291 +93151,406,6,809,1463182 +93152,203,1,858,1464541 +93153,273,7,26376,4100 +93154,67,10,17566,56341 +93155,320,3,390747,1662640 +93156,401,6,10020,82815 +93157,387,10,52358,30520 +93158,273,7,1271,15221 +93159,204,9,43546,29345 +93160,413,11,64456,1941 +93161,333,2,86920,1207586 +93162,387,10,2355,24173 +93163,105,7,9529,1551 +93164,3,5,262786,67324 +93165,373,7,7299,143921 +93166,303,3,106747,1361172 +93167,182,8,28452,1643881 +93168,196,7,20438,1406826 +93169,113,9,311324,1658866 +93170,182,8,7454,1407673 +93171,419,10,163814,146665 +93172,53,2,6972,6203 +93173,190,7,285685,1618896 +93174,3,5,111582,3148 +93175,301,5,244786,1017376 +93176,387,10,62349,224520 +93177,388,9,198663,1367481 +93178,234,1,11654,893 +93179,413,11,11799,5785 +93180,273,7,397717,1208226 +93181,3,5,9753,51914 +93182,203,1,1817,1395290 +93183,328,6,329440,1392104 +93184,317,10,49559,577428 +93185,37,3,218443,107824 +93186,268,7,436,92382 +93187,262,6,206647,1551908 +93188,234,1,40466,10051 +93189,317,10,58013,120025 +93190,53,2,240913,1516523 +93191,127,3,40863,552394 +93192,234,1,24825,57665 +93193,317,10,24163,12453 +93194,325,5,287903,1209871 +93195,234,1,53042,147112 +93196,77,10,13180,74257 +93197,234,1,17464,72543 +93198,413,11,11204,7150 +93199,143,7,167073,40810 +93200,273,7,177677,62580 +93201,234,1,34650,113507 +93202,291,6,118957,75302 +93203,234,1,143169,1013108 +93204,52,10,177677,1239407 +93205,415,3,29343,103570 +93206,273,7,323674,148736 +93207,113,9,230428,1464044 +93208,105,7,33427,24514 +93209,387,10,137321,5575 +93210,387,10,286971,85925 +93211,3,5,242131,4346 +93212,213,10,140825,30208 +93213,74,5,284564,1549109 +93214,97,7,10665,1077782 +93215,53,2,98025,1202524 +93216,105,7,165718,1276793 +93217,273,7,28533,36017 +93218,387,10,99909,108794 +93219,387,10,11540,54568 +93220,105,7,82696,10572 +93221,3,5,12811,1085275 +93222,234,1,25330,58453 +93223,387,10,12912,74063 +93224,3,5,12412,4867 +93225,413,11,167707,1682249 +93226,387,10,51358,8635 +93227,273,7,45610,1061056 +93228,234,1,215875,5632 +93229,234,1,24266,1174031 +93230,3,5,48962,1143010 +93231,77,10,864,12964 +93232,234,1,27840,99116 +93233,3,5,62837,8677 +93234,3,5,57996,30658 +93235,273,7,43875,1313001 +93236,226,2,169,1216735 +93237,148,9,1589,1465630 +93238,226,2,168259,1408293 +93239,273,7,4011,531 +93240,234,1,214093,146169 +93241,53,2,53172,33439 +93242,148,9,46738,110629 +93243,234,1,81589,1037821 +93244,52,10,117942,1066309 +93245,234,1,51302,55983 +93246,234,1,29192,228709 +93247,262,6,1381,1402029 +93248,204,9,3784,32279 +93249,75,5,333371,1425208 +93250,234,1,124075,584146 +93251,5,10,34482,1074161 +93252,317,10,30934,107333 +93253,273,7,3577,5430 +93254,317,10,39517,28488 +93255,53,2,379019,1780185 +93256,387,10,142061,212618 +93257,413,11,1394,1707149 +93258,317,10,215373,115393 +93259,234,1,339312,1464978 +93260,387,10,27003,223371 +93261,289,6,214756,1457947 +93262,62,3,4248,1415629 +93263,269,9,52520,17829 +93264,306,7,29263,1659769 +93265,277,7,623,105780 +93266,148,9,445993,1808031 +93267,196,7,14126,1073044 +93268,234,1,366692,24970 +93269,66,11,55420,1799870 +93270,53,2,56068,937535 +93271,148,9,235,1288845 +93272,234,1,62837,1270 +93273,140,9,228066,1574072 +93274,60,1,18,587903 +93275,366,3,76163,1429370 +93276,3,5,28363,14960 +93277,213,10,71067,145830 +93278,3,5,40990,64300 +93279,204,9,85160,1432470 +93280,273,7,278348,1611978 +93281,188,8,46738,1536639 +93282,234,1,359807,237770 +93283,413,11,12230,61771 +93284,387,10,24655,53006 +93285,5,10,194817,1082648 +93286,291,6,356500,181272 +93287,200,3,25941,1558426 +93288,273,7,47889,1030290 +93289,269,9,7459,9343 +93290,204,9,139519,1126375 +93291,394,7,59678,223247 +93292,317,10,302026,230177 +93293,234,1,176079,934032 +93294,52,10,29290,101124 +93295,203,1,4547,1395290 +93296,317,10,122368,110049 +93297,234,1,14078,76335 +93298,104,7,2107,1672758 +93299,234,1,37329,26959 +93300,387,10,4809,34282 +93301,204,9,241574,12346 +93302,105,7,49500,1344243 +93303,60,1,17654,197773 +93304,273,7,100110,58249 +93305,234,1,30554,62556 +93306,413,11,286789,4670 +93307,60,1,333354,1613913 +93308,239,5,329289,1548031 +93309,234,1,349028,1211208 +93310,3,5,43459,11968 +93311,273,7,40368,1494668 +93312,413,11,1655,18397 +93313,387,10,9803,57003 +93314,232,10,18783,93689 +93315,415,3,64928,133439 +93316,208,2,25918,120162 +93317,187,11,4547,1389534 +93318,289,6,1877,187067 +93319,373,7,374473,1465947 +93320,250,11,228066,1570048 +93321,413,11,38718,2866 +93322,314,2,297702,13045 +93323,234,1,17592,1134304 +93324,398,9,9423,32903 +93325,3,5,32604,1006957 +93326,373,7,9286,1364417 +93327,273,7,1969,996 +93328,317,10,30036,46307 +93329,226,2,43009,16538 +93330,413,11,220,2761 +93331,53,2,329805,1153037 +93332,317,10,20742,808688 +93333,189,3,11618,1405420 +93334,3,5,383064,931689 +93335,257,3,285685,1618901 +93336,328,6,195269,1393414 +93337,204,9,41604,1020078 +93338,273,7,28031,7728 +93339,3,5,156277,22119 +93340,148,9,42309,1440400 +93341,328,6,395992,1408338 +93342,38,10,80280,54525 +93343,3,5,31618,20683 +93344,317,10,19166,587160 +93345,52,10,216369,147899 +93346,360,3,744,1378165 +93347,3,5,14683,1433086 +93348,413,11,415358,1319033 +93349,333,2,6341,16159 +93350,269,9,215928,1417680 +93351,289,6,257344,1473412 +93352,53,2,142402,1117112 +93353,373,7,209112,158916 +93354,317,10,354859,2589 +93355,234,1,54832,19639 +93356,234,1,5201,42060 +93357,317,10,237672,588229 +93358,53,2,33623,1148682 +93359,196,7,9352,1586399 +93360,198,6,37534,1531832 +93361,132,2,5915,1524668 +93362,314,2,59419,1526973 +93363,317,10,402582,1279521 +93364,5,10,43680,1112037 +93365,3,5,287903,63972 +93366,403,10,72984,5448 +93367,373,7,233639,17811 +93368,387,10,262454,289518 +93369,203,1,2047,1458202 +93370,387,10,11704,39056 +93371,269,9,522,7146 +93372,273,7,263472,1049547 +93373,179,2,100669,1632794 +93374,413,11,102144,423011 +93375,333,2,6068,1535441 +93376,40,1,107250,1834275 +93377,175,5,20312,1734493 +93378,357,3,9286,1441321 +93379,310,3,209764,1284295 +93380,387,10,40028,102605 +93381,168,3,10657,1594652 +93382,3,5,9289,32293 +93383,333,2,204922,1414091 +93384,204,9,30669,1729674 +93385,317,10,329440,134604 +93386,53,2,11658,1294392 +93387,234,1,109716,49214 +93388,3,5,5511,1657 +93389,317,10,356332,1305371 +93390,92,7,4825,8511 +93391,413,11,10986,67974 +93392,234,1,10663,57370 +93393,413,11,23397,12015 +93394,413,11,402672,1613555 +93395,317,10,123949,386918 +93396,234,1,235046,1270322 +93397,105,7,5172,41889 +93398,75,5,102629,1412606 +93399,234,1,323675,20400 +93400,196,7,53211,149379 +93401,289,6,67162,226599 +93402,333,2,44943,1403388 +93403,262,6,76163,1412715 +93404,387,10,103236,81984 +93405,179,2,76757,1327792 +93406,122,8,167,1549176 +93407,127,3,384737,1825882 +93408,3,5,26761,14569 +93409,317,10,217412,57183 +93410,234,1,239566,55789 +93411,387,10,56906,225148 +93412,204,9,16373,8622 +93413,234,1,191476,1444777 +93414,333,2,287,1532249 +93415,187,11,183412,1419633 +93416,387,10,107052,303707 +93417,105,7,10389,65269 +93418,204,9,71825,960531 +93419,387,10,156335,33692 +93420,77,10,10025,62059 +93421,286,3,43388,10005 +93422,387,10,143092,109702 +93423,203,1,9441,1393455 +93424,200,3,9457,1400354 +93425,74,5,284052,1535097 +93426,147,1,5924,1725687 +93427,3,5,173499,1158428 +93428,413,11,10761,3175 +93429,234,1,121824,26473 +93430,160,3,183412,1198354 +93431,333,2,93858,1885759 +93432,360,3,109424,1334458 +93433,394,7,89492,14382 +93434,234,1,30640,5834 +93435,12,10,125521,1462947 +93436,234,1,53654,18854 +93437,269,9,28893,102344 +93438,387,10,50079,29618 +93439,204,9,10543,18885 +93440,273,7,86603,558595 +93441,3,5,179066,12307 +93442,53,2,120672,4350 +93443,413,11,348320,1591516 +93444,179,2,17175,1537853 +93445,252,3,74,1868842 +93446,413,11,337339,10816 +93447,357,3,11351,1345600 +93448,387,10,33343,40440 +93449,3,5,2742,307 +93450,388,9,72545,1378223 +93451,248,2,395992,1770974 +93452,186,6,10796,1868293 +93453,204,9,351365,1121585 +93454,333,2,8869,1402545 +93455,317,10,238307,933231 +93456,413,11,17009,1206325 +93457,87,7,1595,17862 +93458,234,1,416680,1375046 +93459,204,9,57005,1760584 +93460,387,10,11502,69634 +93461,413,11,295964,3310 +93462,317,10,1647,28865 +93463,333,2,76163,1429341 +93464,333,2,79935,1447084 +93465,127,3,38027,92481 +93466,234,1,78364,4964 +93467,317,10,30844,58034 +93468,3,5,22408,32996 +93469,373,7,270403,1594816 +93470,143,7,99,981 +93471,269,9,20766,80680 +93472,3,5,436,2864 +93473,53,2,118451,1294610 +93474,105,7,321039,77949 +93475,83,2,154972,1731890 +93476,373,7,44115,1338969 +93477,289,6,9297,1439726 +93478,234,1,18178,1364800 +93479,85,10,272693,1404091 +93480,328,6,8619,108116 +93481,286,3,181454,1518527 +93482,20,2,112961,22221 +93483,204,9,40761,936638 +93484,387,10,27703,98776 +93485,234,1,181656,86978 +93486,273,7,318184,1305978 +93487,187,11,198663,1384367 +93488,387,10,11374,6980 +93489,394,7,15476,1340003 +93490,234,1,413998,7017 +93491,3,5,157898,2774 +93492,53,2,244458,33508 +93493,387,10,37103,6593 +93494,3,5,70800,227402 +93495,113,9,245891,1512726 +93496,132,2,7220,74766 +93497,132,2,340275,1732088 +93498,234,1,18890,1109913 +93499,317,10,58384,57024 +93500,268,7,132363,92382 +93501,75,5,397837,1725544 +93502,387,10,41402,74397 +93503,12,10,99861,18866 +93504,242,9,120831,14963 +93505,413,11,10645,32638 +93506,273,7,84892,19016 +93507,234,1,15805,35267 +93508,148,9,14534,1087642 +93509,160,3,6163,75814 +93510,273,7,12526,6041 +93511,269,9,254869,1120107 +93512,203,1,2107,1344278 +93513,53,2,271404,1671091 +93514,234,1,80648,935536 +93515,317,10,323435,1423003 +93516,304,10,46567,1008478 +93517,21,3,809,12080 +93518,226,2,9042,1409227 +93519,262,6,251227,1286575 +93520,148,9,46567,1008501 +93521,273,7,395883,1332520 +93522,317,10,58886,69912 +93523,317,10,102057,170497 +93524,346,3,13092,1465970 +93525,234,1,114444,1048402 +93526,203,1,30298,559913 +93527,317,10,80713,141967 +93528,3,5,42683,3356 +93529,3,5,74836,12864 +93530,387,10,29143,14941 +93531,72,11,205584,1585747 +93532,148,9,167073,1368852 +93533,387,10,96252,31069 +93534,269,9,31911,20214 +93535,293,2,302026,1570585 +93536,317,10,12920,53176 +93537,394,7,50126,137126 +93538,413,11,75244,1085551 +93539,161,6,329865,113134 +93540,234,1,115531,141194 +93541,413,11,353728,1382492 +93542,413,11,20108,10350 +93543,102,3,9593,1877143 +93544,269,9,10142,7203 +93545,387,10,3291,31511 +93546,413,11,205891,1302748 +93547,166,9,256347,1338147 +93548,204,9,9427,45057 +93549,234,1,62190,131792 +93550,273,7,37368,88673 +93551,234,1,17654,82194 +93552,105,7,43499,17667 +93553,234,1,33124,99710 +93554,413,11,56068,1688337 +93555,148,9,27622,9063 +93556,155,3,76333,82698 +93557,273,7,11024,3393 +93558,113,9,97614,1384359 +93559,148,9,142391,1322106 +93560,232,10,53209,148426 +93561,413,11,113255,20554 +93562,148,9,19142,1560275 +93563,234,1,10691,57082 +93564,413,11,149465,1900198 +93565,387,10,40060,112400 +93566,164,3,10727,1308569 +93567,234,1,24978,60545 +93568,52,10,28421,5028 +93569,52,10,23544,69052 +93570,52,10,36658,11011 +93571,234,1,18774,78157 +93572,3,5,40793,594 +93573,373,7,28178,40142 +93574,87,7,95627,1534681 +93575,209,7,239566,1428229 +93576,155,3,46738,1536651 +93577,269,9,49521,1303 +93578,60,1,129,1187141 +93579,239,5,98066,1759296 +93580,203,1,45273,1404824 +93581,234,1,367006,109893 +93582,97,7,137145,1036761 +93583,413,11,43849,32439 +93584,388,9,132363,1407728 +93585,75,5,15613,1415500 +93586,3,5,11959,576249 +93587,387,10,68097,103925 +93588,234,1,46924,68687 +93589,287,3,11377,107372 +93590,196,7,9914,1540890 +93591,273,7,4111,29967 +93592,287,3,243940,1289047 +93593,387,10,75622,18862 +93594,317,10,291351,95321 +93595,32,8,228970,1867531 +93596,204,9,59962,10857 +93597,53,2,43491,8717 +93598,192,5,924,1408680 +93599,413,11,302828,16490 +93600,317,10,72032,564600 +93601,234,1,45213,11528 +93602,52,10,120497,109703 +93603,53,2,318922,1575348 +93604,413,11,10847,61019 +93605,53,2,27265,7536 +93606,12,10,68163,21155 +93607,204,9,831,12346 +93608,387,10,262786,1306686 +93609,277,3,19719,85094 +93610,269,9,747,39200 +93611,148,9,257081,8508 +93612,273,7,202241,1225 +93613,3,5,55700,39191 +93614,333,2,32921,4128 +93615,373,7,315837,1395709 +93616,398,9,11206,14433 +93617,3,5,18414,59590 +93618,190,7,33586,1814984 +93619,234,1,127424,116190 +93620,3,5,8882,72772 +93621,269,9,72431,16364 +93622,113,9,9593,961534 +93623,209,7,126889,1338287 +93624,234,1,29146,16888 +93625,399,9,12593,1458341 +93626,234,1,376501,1283814 +93627,387,10,12697,57324 +93628,74,5,11351,1681341 +93629,273,7,195796,1714348 +93630,72,11,356752,1841583 +93631,189,3,9358,1431104 +93632,180,7,22881,1550166 +93633,234,1,82520,916958 +93634,234,1,96419,144277 +93635,234,1,421962,1722261 +93636,413,11,277839,53438 +93637,204,9,345775,1587697 +93638,148,9,379,555 +93639,234,1,10330,54050 +93640,317,10,13459,216391 +93641,53,2,11358,51869 +93642,232,10,118131,29756 +93643,45,9,10529,1567298 +93644,204,9,45335,10604 +93645,317,10,256311,139162 +93646,158,2,44943,1378246 +93647,12,10,49013,1609024 +93648,234,1,41171,9046 +93649,289,6,100669,1540352 +93650,387,10,47096,95456 +93651,387,10,220565,1086863 +93652,289,6,84617,163663 +93653,317,10,18178,1364800 +93654,269,9,10872,23759 +93655,53,2,21734,13959 +93656,234,1,43931,5140 +93657,53,2,14459,75996 +93658,234,1,64882,240016 +93659,204,9,14976,970199 +93660,317,10,121725,85003 +93661,288,3,362150,1472819 +93662,200,3,222935,1726771 +93663,234,1,89462,95501 +93664,269,9,71133,27864 +93665,53,2,257081,8509 +93666,269,9,23169,224388 +93667,3,5,16235,66641 +93668,317,10,14357,68569 +93669,269,9,270886,1037327 +93670,234,1,3577,33036 +93671,317,10,266741,1313818 +93672,403,10,269,1650 +93673,3,5,44943,55079 +93674,234,1,31821,23630 +93675,15,6,72545,1428893 +93676,204,9,17831,9062 +93677,413,11,169298,1299106 +93678,317,10,31880,1084882 +93679,187,11,11975,1408779 +93680,413,11,63304,1633894 +93681,204,9,188927,1638548 +93682,208,2,22803,936194 +93683,234,1,54795,51950 +93684,148,9,13056,1708293 +93685,262,6,258251,1348594 +93686,209,7,246655,1384393 +93687,53,2,32275,11491 +93688,234,1,32934,133090 +93689,75,5,51250,1721877 +93690,413,11,58732,228315 +93691,387,10,2132,21849 +93692,3,5,329289,1034656 +93693,234,1,257447,1297488 +93694,413,11,11358,11454 +93695,234,1,400948,1631351 +93696,96,2,337339,1415508 +93697,234,1,82191,16888 +93698,234,1,91266,1626259 +93699,413,11,394822,1546194 +93700,373,7,136368,64355 +93701,234,1,37030,1342845 +93702,106,3,1579,8758 +93703,387,10,10645,32959 +93704,34,8,2662,1603328 +93705,111,7,77459,1821419 +93706,234,1,41809,221925 +93707,75,5,24624,1540850 +93708,5,10,1586,3027 +93709,234,1,105576,1038014 +93710,3,5,152042,1315182 +93711,413,11,447758,1539286 +93712,298,5,82,91123 +93713,413,11,248698,37242 +93714,317,10,111014,1052131 +93715,105,7,303982,1680066 +93716,20,2,283995,1590392 +93717,317,10,49943,567595 +93718,52,10,145244,55647 +93719,291,6,354287,1781644 +93720,317,10,74645,109555 +93721,53,2,10921,1194023 +93722,317,10,19797,1066115 +93723,317,10,346838,115671 +93724,5,10,94225,72959 +93725,179,2,28425,13959 +93726,53,2,20242,9255 +93727,234,1,21956,96337 +93728,234,1,418757,1686911 +93729,331,3,9472,1463357 +93730,317,10,61550,1320300 +93731,333,2,20424,1467281 +93732,160,3,6557,1333222 +93733,234,1,79362,18710 +93734,161,6,8870,1724279 +93735,182,8,9716,1537874 +93736,77,10,30778,86204 +93737,234,1,142989,1012850 +93738,317,10,7220,876 +93739,113,9,206647,1551809 +93740,179,2,246415,1423832 +93741,234,1,340616,1468062 +93742,99,3,3172,12948 +93743,234,1,41787,10702 +93744,3,5,169869,7648 +93745,143,7,364088,1207178 +93746,333,2,308269,1447896 +93747,234,1,292035,1086349 +93748,5,10,109491,1046638 +93749,373,7,316042,1574441 +93750,3,5,159727,1141555 +93751,53,2,78734,1355547 +93752,234,1,248747,86688 +93753,413,11,23628,90420 +93754,77,10,327,3317 +93755,25,2,439050,1749862 +93756,5,10,2017,5165 +93757,234,1,89751,16417 +93758,413,11,245906,959688 +93759,3,5,104744,1169966 +93760,234,1,116236,31898 +93761,317,10,25376,93651 +93762,5,10,79599,37127 +93763,179,2,1966,101523 +93764,226,2,270303,1483631 +93765,387,10,8954,2589 +93766,175,5,68737,1378716 +93767,179,2,18,1881564 +93768,262,6,254007,1448769 +93769,3,5,423377,1739780 +93770,387,10,72207,52934 +93771,239,5,83430,1607052 +93772,273,7,336029,1533516 +93773,269,9,13549,11558 +93774,52,10,47508,9051 +93775,105,7,53301,147777 +93776,140,9,240832,1367813 +93777,289,6,328111,1479520 +93778,160,3,10344,102751 +93779,187,11,26390,142155 +93780,53,2,16313,1096192 +93781,158,2,333352,1609846 +93782,234,1,42062,68 +93783,317,10,44741,131327 +93784,286,3,246917,1528495 +93785,290,1,16442,19528 +93786,45,9,269149,1462003 +93787,413,11,2758,38 +93788,45,9,14137,1526543 +93789,317,10,203833,61239 +93790,175,5,20648,1399130 +93791,270,9,11618,34526 +93792,287,3,544,1780218 +93793,394,7,28090,9349 +93794,373,7,287903,13179 +93795,333,2,41171,1416096 +93796,273,7,1251,33525 +93797,198,6,201085,1572870 +93798,226,2,46738,1456316 +93799,148,9,10395,602 +93800,3,5,36968,1139626 +93801,234,1,76684,105446 +93802,226,2,70074,1407339 +93803,262,6,98066,1417877 +93804,234,1,174751,77003 +93805,413,11,99008,52182 +93806,317,10,34052,111744 +93807,387,10,44087,137992 +93808,72,11,3172,1553260 +93809,75,5,9514,1642518 +93810,234,1,44211,130497 +93811,413,11,67367,1188579 +93812,398,9,14372,5673 +93813,413,11,16428,65849 +93814,317,10,270221,1301333 +93815,387,10,11185,68489 +93816,236,8,381015,1828340 +93817,413,11,126250,1030 +93818,317,10,213095,1197571 +93819,143,7,346672,1392131 +93820,52,10,126550,1593867 +93821,317,10,43935,53297 +93822,180,7,76094,1533682 +93823,234,1,28452,100807 +93824,3,5,43809,14678 +93825,317,10,450530,1341724 +93826,3,5,26378,14569 +93827,148,9,47186,32606 +93828,3,5,179103,119535 +93829,60,1,43594,118315 +93830,413,11,284279,142006 +93831,333,2,398786,1610610 +93832,273,7,11358,5912 +93833,317,10,370178,1083154 +93834,317,10,389630,1597952 +93835,143,7,279690,1043358 +93836,53,2,10696,36429 +93837,234,1,8915,6495 +93838,228,2,126889,1746452 +93839,413,11,86413,5262 +93840,5,10,357390,1503511 +93841,52,10,17139,143009 +93842,3,5,32628,88664 +93843,234,1,294272,592493 +93844,158,2,293660,1378720 +93845,317,10,360249,1349622 +93846,286,3,133255,1091545 +93847,182,8,194,1551972 +93848,53,2,128270,50462 +93849,301,5,334074,61851 +93850,394,7,5551,375 +93851,234,1,18927,18320 +93852,234,1,73565,97942 +93853,182,8,210910,1399107 +93854,204,9,227306,1391711 +93855,317,10,152023,945058 +93856,373,7,83,13177 +93857,269,9,403,5709 +93858,234,1,53210,100888 +93859,234,1,4931,14773 +93860,355,11,809,1463642 +93861,398,9,44943,1322017 +93862,204,9,20424,874 +93863,398,9,9457,1392116 +93864,317,10,37718,11368 +93865,289,6,257344,1473414 +93866,234,1,266558,1165031 +93867,317,10,38579,29012 +93868,192,5,177677,1398972 +93869,387,10,10665,66074 +93870,317,10,115290,1055601 +93871,273,7,6575,1589 +93872,175,5,287,1534829 +93873,387,10,30054,13802 +93874,160,3,2898,16474 +93875,3,5,10567,69906 +93876,148,9,109439,5957 +93877,327,7,35284,91811 +93878,301,5,89492,1377132 +93879,327,7,26636,1730029 +93880,234,1,552,7554 +93881,234,1,103640,147709 +93882,234,1,21379,82813 +93883,413,11,1253,21656 +93884,317,10,81120,202357 +93885,289,6,72640,138173 +93886,286,3,6964,3769 +93887,187,11,12171,1421266 +93888,234,1,32996,82800 +93889,333,2,77010,1455021 +93890,413,11,21849,9852 +93891,413,11,325205,1426710 +93892,289,6,41213,1777245 +93893,333,2,11643,11306 +93894,382,9,345922,1634070 +93895,317,10,43596,41010 +93896,175,5,1579,1386920 +93897,302,9,14430,1521679 +93898,402,11,2017,20694 +93899,234,1,28466,12964 +93900,160,3,244610,1450831 +93901,203,1,284564,1344842 +93902,234,1,41209,44847 +93903,413,11,3028,909 +93904,317,10,30143,929973 +93905,234,1,251232,1286519 +93906,234,1,108634,545393 +93907,273,7,97593,1550912 +93908,97,7,354859,92376 +93909,234,1,24979,1214860 +93910,413,11,410118,1099354 +93911,52,10,6591,50623 +93912,314,2,283445,1548103 +93913,3,5,7916,23808 +93914,67,10,9948,1447565 +93915,317,10,13561,74655 +93916,317,10,119364,12342 +93917,3,5,71266,11526 +93918,234,1,126889,578 +93919,37,3,10020,1615304 +93920,234,1,21030,5632 +93921,234,1,296025,1173190 +93922,317,10,42623,47773 +93923,234,1,267483,253152 +93924,387,10,69217,63995 +93925,3,5,8981,56474 +93926,269,9,2295,23654 +93927,317,10,79550,1318297 +93928,289,6,98566,1459744 +93929,204,9,88641,1148214 +93930,234,1,72822,35904 +93931,12,10,76170,1195199 +93932,164,3,22279,1536113 +93933,196,7,3172,15893 +93934,234,1,3716,5125 +93935,3,5,47794,19086 +93936,3,5,6933,22818 +93937,269,9,27042,61300 +93938,148,9,111017,9587 +93939,387,10,10458,61087 +93940,160,3,6972,1401734 +93941,226,2,19901,1418802 +93942,221,3,242310,1367137 +93943,287,3,109439,1208433 +93944,234,1,302472,1172858 +93945,160,3,1579,18889 +93946,64,6,277778,1377836 +93947,273,7,55236,3249 +93948,105,7,376188,1284454 +93949,182,8,46286,1174010 +93950,143,7,41733,1367494 +93951,204,9,9900,32903 +93952,269,9,10204,20824 +93953,317,10,11313,3027 +93954,234,1,106112,122633 +93955,204,9,242076,1040860 +93956,127,3,18405,1842603 +93957,234,1,81120,591013 +93958,234,1,10567,65856 +93959,158,2,271404,1764799 +93960,182,8,10070,62273 +93961,387,10,20640,94762 +93962,13,3,10539,1452917 +93963,287,3,37936,101427 +93964,413,11,10801,1871 +93965,37,3,378441,1797501 +93966,204,9,43868,8507 +93967,234,1,259695,880 +93968,317,10,61400,233065 +93969,262,6,293167,1401971 +93970,234,1,9405,26760 +93971,273,7,24254,66992 +93972,60,1,17978,8346 +93973,97,7,638,9444 +93974,60,1,20126,1336532 +93975,40,1,664,81729 +93976,258,9,57089,1460488 +93977,101,3,330171,73639 +93978,385,6,154972,1533526 +93979,317,10,38789,79169 +93980,413,11,60106,86450 +93981,262,6,145135,1392130 +93982,333,2,2323,74969 +93983,203,1,168027,1460751 +93984,87,7,3597,17862 +93985,317,10,38417,58862 +93986,5,10,41645,1061981 +93987,269,9,6963,7146 +93988,143,7,43727,80826 +93989,394,7,57201,8159 +93990,289,6,214756,1453014 +93991,273,7,7234,19155 +93992,143,7,127372,1182834 +93993,209,7,10344,1446203 +93994,5,10,167073,1484249 +93995,53,2,76203,5634 +93996,317,10,87952,935669 +93997,317,10,62472,18611 +93998,269,9,118984,1010997 +93999,387,10,107028,1250671 +94000,190,7,16096,1339447 +94001,317,10,19855,85277 +94002,273,7,15472,19352 +94003,3,5,43778,1120713 +94004,413,11,39766,571196 +94005,11,6,182131,109197 +94006,53,2,17238,8756 +94007,234,1,7343,52528 +94008,402,11,9593,17886 +94009,413,11,146243,51795 +94010,273,7,488,1627145 +94011,234,1,42251,127608 +94012,413,11,10013,2988 +94013,304,10,117500,34822 +94014,333,2,379019,1780132 +94015,317,10,94468,1634785 +94016,317,10,235208,1270484 +94017,53,2,178587,12145 +94018,225,7,395992,1431024 +94019,226,2,10145,32490 +94020,413,11,5511,43812 +94021,340,2,263115,1463800 +94022,15,6,284052,1703133 +94023,60,1,125264,1606801 +94024,273,7,2241,23117 +94025,198,6,14,1569847 +94026,387,10,73872,129444 +94027,234,1,170517,16002 +94028,97,7,14,548439 +94029,234,1,127544,16137 +94030,269,9,8340,54607 +94031,387,10,235,3028 +94032,234,1,198511,2305 +94033,234,1,2075,6593 +94034,52,10,339408,1571008 +94035,148,9,9472,5957 +94036,387,10,284117,1347100 +94037,373,7,9836,1495857 +94038,57,2,1586,32884 +94039,357,3,302828,1552788 +94040,234,1,149465,38131 +94041,317,10,1634,445708 +94042,97,7,9352,113043 +94043,143,7,146243,1412699 +94044,234,1,57680,27236 +94045,52,10,205587,42994 +94046,317,10,393079,1428158 +94047,301,5,293167,91115 +94048,413,11,20421,53344 +94049,239,5,395883,1621801 +94050,204,9,26516,9062 +94051,413,11,4832,8075 +94052,398,9,6972,1394061 +94053,3,5,9540,307 +94054,289,6,58159,69134 +94055,53,2,9540,13551 +94056,273,7,257450,1429694 +94057,52,10,49074,1198729 +94058,287,3,40952,11161 +94059,3,5,187022,25471 +94060,209,7,20439,1340318 +94061,305,9,145481,1741871 +94062,203,1,9563,1469339 +94063,204,9,458428,1820255 +94064,268,7,1966,1398094 +94065,269,9,2487,1270421 +94066,3,5,230179,88022 +94067,317,10,203264,1697267 +94068,269,9,17978,1118257 +94069,3,5,40916,98442 +94070,234,1,332411,26713 +94071,234,1,393939,1609061 +94072,127,3,51036,999687 +94073,234,1,2567,1032 +94074,413,11,83229,1865040 +94075,317,10,264560,73663 +94076,317,10,38789,74699 +94077,273,7,150201,1448869 +94078,273,7,481,6526 +94079,53,2,28564,32442 +94080,387,10,114155,7056 +94081,273,7,70436,1018976 +94082,387,10,43790,13982 +94083,236,8,2567,1739556 +94084,127,3,223551,1263804 +94085,195,6,346672,1746433 +94086,182,8,239566,1564160 +94087,3,5,28452,100848 +94088,59,3,142402,1117114 +94089,413,11,121230,50578 +94090,413,11,13056,60521 +94091,413,11,50780,3394 +94092,413,11,11000,38 +94093,204,9,2687,13434 +94094,317,10,20108,10346 +94095,273,7,35052,17004 +94096,317,10,31111,5555 +94097,373,7,17654,1406069 +94098,413,11,9461,57729 +94099,127,3,33673,121205 +94100,97,7,77949,1079085 +94101,105,7,340187,1315942 +94102,289,6,19594,1447377 +94103,234,1,86284,19473 +94104,105,7,84226,1209783 +94105,269,9,116463,130832 +94106,262,6,9982,1210381 +94107,387,10,153652,58180 +94108,226,2,243935,1410208 +94109,269,9,410118,1779185 +94110,360,9,354859,1376628 +94111,148,9,98066,1759303 +94112,289,6,21032,1447593 +94113,304,10,46403,174606 +94114,333,2,598,8584 +94115,303,3,266102,1156997 +94116,147,1,11370,1798038 +94117,413,11,58529,1440048 +94118,387,10,329718,33441 +94119,187,11,2503,1405382 +94120,387,10,9079,4137 +94121,262,6,9675,1412250 +94122,413,11,10294,21271 +94123,105,7,3962,34388 +94124,75,5,369406,1094503 +94125,234,1,252096,222298 +94126,333,2,9472,1316292 +94127,234,1,345003,1128550 +94128,273,7,238,3098 +94129,234,1,28969,60438 +94130,204,9,23730,1534433 +94131,387,10,272693,129305 +94132,273,7,41552,1096849 +94133,234,1,177335,15389 +94134,273,7,242240,29500 +94135,204,9,52270,14022 +94136,317,10,351242,20387 +94137,3,5,333371,69506 +94138,317,10,92663,1034422 +94139,234,1,42521,126125 +94140,387,10,147722,14646 +94141,317,10,42473,72225 +94142,239,5,71725,1136714 +94143,387,10,4520,26157 +94144,239,5,302828,1593262 +94145,187,11,379019,17808 +94146,317,10,253258,1288712 +94147,234,1,55257,16767 +94148,3,5,19140,11593 +94149,286,3,257331,1304600 +94150,317,10,17287,84273 +94151,209,7,11511,1340007 +94152,148,9,60285,118291 +94153,289,6,291270,1584353 +94154,203,1,74,1341865 +94155,3,5,41714,7262 +94156,204,9,216153,91368 +94157,287,3,278632,88559 +94158,3,5,3146,18614 +94159,317,10,24916,92829 +94160,269,9,2898,52600 +94161,317,10,31027,109300 +94162,182,8,77338,1551972 +94163,317,10,135390,70069 +94164,105,7,76494,1493523 +94165,291,6,283995,15356 +94166,373,7,755,1232529 +94167,53,2,70670,1151225 +94168,234,1,209032,99245 +94169,286,3,69428,580844 +94170,317,10,207270,1518046 +94171,148,9,35337,1182551 +94172,234,1,100250,1024179 +94173,301,5,62630,1423428 +94174,398,9,8204,1708290 +94175,387,10,8366,37030 +94176,317,10,28893,102338 +94177,317,10,329289,82941 +94178,123,3,122662,1176747 +94179,234,1,86126,567816 +94180,34,8,337339,1427379 +94181,234,1,84035,39058 +94182,3,5,82654,403 +94183,413,11,2924,6190 +94184,269,9,365942,10819 +94185,3,5,315723,1568250 +94186,317,10,73827,4413 +94187,340,2,435,1764736 +94188,180,7,28668,1342519 +94189,317,10,36164,1289490 +94190,165,9,11024,1673522 +94191,53,2,38031,6392 +94192,413,11,52021,1188701 +94193,196,7,169,121342 +94194,387,10,61581,556753 +94195,387,10,40879,82286 +94196,413,11,294016,10393 +94197,52,10,317198,956434 +94198,12,10,71668,965416 +94199,234,1,356752,1501743 +94200,53,2,10033,49913 +94201,53,2,94820,1095645 +94202,32,8,98566,1455461 +94203,53,2,264397,1324069 +94204,169,3,69668,224266 +94205,211,3,302699,1729090 +94206,289,6,227306,1459743 +94207,3,5,343795,22119 +94208,5,10,31598,47768 +94209,387,10,15873,1172608 +94210,317,10,93676,999597 +94211,289,6,14317,1447380 +94212,189,3,163,1607651 +94213,413,11,10565,66050 +94214,413,11,107693,234483 +94215,179,2,102382,1177713 +94216,398,9,954,66689 +94217,234,1,46798,1053508 +94218,346,3,8842,1418489 +94219,234,1,342163,567536 +94220,398,9,10733,958691 +94221,12,10,125513,1462947 +94222,415,3,25241,1765285 +94223,234,1,135652,161858 +94224,269,9,1561,9358 +94225,327,7,10909,1545464 +94226,317,10,85317,1287203 +94227,234,1,76609,2406 +94228,413,11,54660,8847 +94229,269,9,316654,19681 +94230,234,1,312138,1400484 +94231,148,9,62330,10065 +94232,273,7,10077,57263 +94233,234,1,70815,102560 +94234,388,9,9532,1441247 +94235,269,9,1717,6494 +94236,273,7,8965,56854 +94237,234,1,46421,29625 +94238,394,7,8669,68748 +94239,413,11,228108,1182914 +94240,181,7,75162,1100808 +94241,53,2,15081,120929 +94242,204,9,57866,127200 +94243,158,2,122081,1149914 +94244,413,11,2172,124865 +94245,273,7,10724,2704 +94246,52,10,11048,50933 +94247,141,7,62838,68016 +94248,328,6,346672,1452627 +94249,269,9,753,1552352 +94250,176,3,70981,1390352 +94251,413,11,11077,6190 +94252,245,3,126250,1727716 +94253,97,7,443319,1872614 +94254,52,10,49521,3893 +94255,234,1,111759,8841 +94256,113,9,61765,1961 +94257,187,11,167,1392129 +94258,357,3,198663,1425334 +94259,204,9,2107,21615 +94260,234,1,254065,27236 +94261,273,7,65048,29500 +94262,60,1,28268,1351632 +94263,317,10,84626,1075780 +94264,234,1,65771,1181 +94265,387,10,92796,3599 +94266,204,9,28425,1126373 +94267,234,1,19719,85118 +94268,148,9,4478,37435 +94269,7,3,176,1817634 +94270,148,9,70667,927988 +94271,3,5,32921,544755 +94272,304,10,148284,581908 +94273,317,10,266400,1313036 +94274,20,2,8464,1581502 +94275,22,9,159667,1849494 +94276,413,11,28577,17762 +94277,3,5,156335,96726 +94278,387,10,811,12114 +94279,273,7,340881,1037514 +94280,234,1,339152,1464437 +94281,298,5,76757,1401593 +94282,113,9,8470,1598734 +94283,413,11,29355,3985 +94284,401,6,269149,1125167 +94285,3,5,1586,17765 +94286,388,9,76163,1350232 +94287,235,5,9946,1423865 +94288,387,10,44658,125862 +94289,234,1,70247,103580 +94290,196,7,448847,1797890 +94291,317,10,9427,57631 +94292,53,2,285135,1191185 +94293,234,1,368051,1271449 +94294,182,8,8467,1417994 +94295,234,1,86709,15521 +94296,317,10,124994,134343 +94297,143,7,62728,10972 +94298,105,7,44282,1031007 +94299,273,7,2924,947 +94300,387,10,17111,81252 +94301,3,5,169298,1058981 +94302,413,11,1058,4141 +94303,97,7,354287,1337412 +94304,317,10,30411,106244 +94305,182,8,283686,1582735 +94306,52,10,39992,29433 +94307,105,7,5177,41910 +94308,3,5,9294,432 +94309,3,5,30175,1580444 +94310,3,5,173205,567208 +94311,105,7,378441,1362657 +94312,60,1,236395,1337941 +94313,317,10,408616,178564 +94314,155,3,140554,1707857 +94315,262,6,6171,25453 +94316,360,3,48231,1529391 +94317,66,11,264525,1612893 +94318,3,5,176079,236606 +94319,220,7,24971,37789 +94320,387,10,3145,30700 +94321,3,5,73348,30288 +94322,413,11,107593,2761 +94323,105,7,12158,28156 +94324,301,5,9352,1394768 +94325,180,7,57419,559495 +94326,413,11,1273,22299 +94327,317,10,362765,1519327 +94328,277,3,100770,1556556 +94329,387,10,10611,66117 +94330,413,11,30941,1423 +94331,317,10,44669,102935 +94332,387,10,282070,43652 +94333,148,9,42430,1276818 +94334,234,1,28340,50583 +94335,22,9,7326,1866780 +94336,317,10,24914,56342 +94337,286,3,28071,105121 +94338,53,2,43522,1200492 +94339,317,10,159095,113273 +94340,317,10,1247,27 +94341,387,10,259694,56718 +94342,3,5,5924,19102 +94343,213,10,188765,225244 +94344,77,10,18919,83784 +94345,3,5,9428,5667 +94346,287,3,294254,228253 +94347,234,1,858,9248 +94348,398,9,142656,1547491 +94349,92,7,29259,1533155 +94350,387,10,9314,28898 +94351,85,10,51209,227092 +94352,5,10,8954,56413 +94353,234,1,56906,225148 +94354,262,6,14254,1394033 +94355,327,7,283445,1548101 +94356,317,10,11205,1395646 +94357,317,10,130993,1242114 +94358,373,7,16186,1392969 +94359,3,5,323315,143865 +94360,317,10,128154,1086430 +94361,413,11,14145,1416969 +94362,60,1,14869,1455486 +94363,234,1,89659,1039943 +94364,3,5,75174,131037 +94365,317,10,253232,72500 +94366,3,5,7304,19002 +94367,397,7,15916,635 +94368,317,10,52122,3663 +94369,387,10,228647,34371 +94370,413,11,381015,1498639 +94371,413,11,106049,1005766 +94372,413,11,297702,1636849 +94373,179,2,98277,1017278 +94374,204,9,2428,24804 +94375,234,1,159636,1141391 +94376,60,1,64928,1529473 +94377,317,10,177902,43854 +94378,200,3,198663,1425330 +94379,317,10,102155,138225 +94380,234,1,18621,77964 +94381,46,5,8276,1544427 +94382,234,1,310126,120025 +94383,387,10,10344,63920 +94384,204,9,26390,1338098 +94385,387,10,234284,131564 +94386,273,7,37053,18609 +94387,373,7,9016,74976 +94388,413,11,430250,1119658 +94389,387,10,129533,155742 +94390,413,11,295581,1377018 +94391,234,1,42309,941438 +94392,179,2,22267,559321 +94393,113,9,8464,1581501 +94394,41,3,227975,1775643 +94395,3,5,6636,50924 +94396,387,10,227094,1052836 +94397,147,1,634,1767780 +94398,317,10,318973,1161657 +94399,314,2,693,1445820 +94400,317,10,40229,68770 +94401,182,8,418437,1546459 +94402,75,5,127521,1401197 +94403,273,7,1689,11382 +94404,208,2,116979,1099133 +94405,53,2,242683,4350 +94406,213,10,138502,1108983 +94407,234,1,67025,105407 +94408,234,1,172259,158325 +94409,3,5,101852,80207 +94410,413,11,18684,30259 +94411,413,11,29638,98680 +94412,148,9,96702,7650 +94413,377,3,27259,1545994 +94414,234,1,795,11887 +94415,234,1,16058,75990 +94416,75,5,132363,1407737 +94417,203,1,68629,1538721 +94418,291,6,332411,1579389 +94419,333,2,39578,29671 +94420,234,1,59264,80586 +94421,234,1,10872,34849 +94422,3,5,24757,23808 +94423,333,2,10440,10443 +94424,360,9,2924,1434205 +94425,317,10,107319,107319 +94426,53,2,17350,1158100 +94427,234,1,17895,82949 +94428,413,11,241742,1023424 +94429,289,6,9016,1455541 +94430,234,1,390930,1310363 +94431,234,1,59230,87267 +94432,3,5,31324,127523 +94433,387,10,10303,2100 +94434,258,9,26809,1447400 +94435,317,10,38850,18305 +94436,105,7,448847,1301634 +94437,415,3,348320,1574398 +94438,234,1,70734,37362 +94439,175,5,14916,1430519 +94440,234,1,53407,44879 +94441,3,5,413421,1756133 +94442,204,9,46094,1263634 +94443,147,1,3059,82413 +94444,198,6,178809,1857683 +94445,32,8,132363,1407740 +94446,87,7,50725,1530166 +94447,413,11,62397,32053 +94448,175,5,23823,1541745 +94449,234,1,67900,204553 +94450,3,5,120303,31317 +94451,269,9,258193,961600 +94452,317,10,103972,18831 +94453,371,3,87827,227849 +94454,317,10,44877,76242 +94455,273,7,77067,939450 +94456,39,3,693,1648131 +94457,269,9,55922,1378570 +94458,387,10,26036,12303 +94459,387,10,26864,69309 +94460,317,10,77864,146957 +94461,387,10,99008,1019840 +94462,403,10,101838,1029071 +94463,234,1,38274,1217013 +94464,3,5,362180,1473410 +94465,273,7,4307,405 +94466,394,7,127380,1556632 +94467,413,11,73984,1130043 +94468,5,10,37581,1169890 +94469,317,10,136752,1208802 +94470,413,11,65211,111418 +94471,52,10,13437,63995 +94472,286,3,226632,1541646 +94473,289,6,13042,8042 +94474,317,10,274060,122963 +94475,317,10,403593,1661776 +94476,158,2,359412,1762815 +94477,289,6,9514,1642546 +94478,413,11,7863,33438 +94479,3,5,23152,10602 +94480,373,7,1058,1378169 +94481,72,11,9664,1461635 +94482,148,9,42182,1318091 +94483,175,5,49689,1594805 +94484,234,1,264454,102322 +94485,52,10,262841,1551346 +94486,387,10,103875,103605 +94487,3,5,5481,25826 +94488,234,1,28068,72891 +94489,317,10,25473,90055 +94490,3,5,37291,65506 +94491,314,2,10590,1462925 +94492,105,7,49961,143143 +94493,387,10,62132,97868 +94494,269,9,4762,39301 +94495,234,1,43083,129231 +94496,160,3,76203,1393447 +94497,317,10,14422,944051 +94498,226,2,9352,1586335 +94499,203,1,103332,1370916 +94500,234,1,330588,49785 +94501,204,9,693,6045 +94502,204,9,259728,1301993 +94503,168,3,32049,1833618 +94504,387,10,59569,69042 +94505,5,10,80472,593081 +94506,148,9,37301,4311 +94507,24,5,52661,1534228 +94508,413,11,24453,8307 +94509,204,9,4825,7337 +94510,77,10,9966,61117 +94511,175,5,2977,1565505 +94512,289,6,329865,1641660 +94513,234,1,124994,97202 +94514,234,1,57924,23799 +94515,277,3,809,1411521 +94516,269,9,924,6045 +94517,317,10,425591,209513 +94518,53,2,96433,4350 +94519,327,7,55700,1171542 +94520,192,5,284052,1463764 +94521,387,10,11950,457 +94522,234,1,86258,14875 +94523,187,11,17771,1602321 +94524,204,9,408381,1018800 +94525,143,7,9358,3193 +94526,269,9,31542,30094 +94527,3,5,89647,1096837 +94528,204,9,16075,22156 +94529,333,2,55343,1630537 +94530,273,7,46586,47800 +94531,43,2,9297,1452643 +94532,317,10,26686,584535 +94533,3,5,210052,73010 +94534,381,9,10590,1398943 +94535,3,5,277710,930009 +94536,161,6,414977,1676799 +94537,234,1,186705,24560 +94538,234,1,205587,42994 +94539,419,10,396392,165961 +94540,13,9,327909,125440 +94541,353,7,10865,16737 +94542,203,1,50725,1732801 +94543,317,10,105833,1136955 +94544,413,11,289225,991671 +94545,234,1,50032,100921 +94546,269,9,4443,1667047 +94547,273,7,11855,2987 +94548,3,5,35404,3356 +94549,234,1,299715,239637 +94550,413,11,17175,44029 +94551,65,3,74,9554 +94552,97,7,14145,1416979 +94553,160,3,54845,1341791 +94554,328,6,329865,1646520 +94555,152,2,375366,1334805 +94556,3,5,39781,53354 +94557,148,9,47694,554847 +94558,54,10,18506,1485215 +94559,53,2,772,11509 +94560,234,1,95037,91789 +94561,148,9,245168,53020 +94562,373,7,12536,1551494 +94563,204,9,55694,1293127 +94564,234,1,327528,69845 +94565,105,7,22023,1163664 +94566,317,10,48567,1267557 +94567,7,3,12103,1625921 +94568,269,9,50506,61250 +94569,235,5,11202,3031 +94570,234,1,214129,129543 +94571,273,7,3053,12013 +94572,413,11,11933,14457 +94573,234,1,113660,88856 +94574,3,5,78362,929112 +94575,127,3,52661,209585 +94576,413,11,2662,1472297 +94577,53,2,268174,1189981 +94578,105,7,49853,6077 +94579,108,10,340275,1352404 +94580,387,10,72917,567561 +94581,317,10,13477,47051 +94582,3,5,167073,1031978 +94583,234,1,373541,1159944 +94584,327,7,23966,1313019 +94585,387,10,201429,19865 +94586,141,7,9928,1550566 +94587,273,7,161880,1306740 +94588,387,10,10991,65429 +94589,234,1,47694,20640 +94590,148,9,29056,30839 +94591,204,9,2454,29609 +94592,333,2,522,406204 +94593,387,10,97614,1014026 +94594,203,1,146233,1458202 +94595,234,1,12255,64508 +94596,75,5,312831,1407863 +94597,234,1,31527,2891 +94598,286,3,86413,933250 +94599,387,10,703,1243 +94600,273,7,638,9548 +94601,317,10,73123,65472 +94602,273,7,55784,98606 +94603,209,7,1369,16161 +94604,413,11,10710,5166 +94605,52,10,28270,14876 +94606,269,9,16176,10591 +94607,273,7,334,312 +94608,387,10,9274,18037 +94609,46,5,186869,1862949 +94610,234,1,83785,105294 +94611,5,10,21159,12415 +94612,53,2,154,1801 +94613,269,9,1963,1123136 +94614,52,10,34082,131408 +94615,317,10,83718,119232 +94616,234,1,28032,12881 +94617,289,6,3933,1448072 +94618,87,7,8464,1581511 +94619,317,10,78383,2075 +94620,60,1,64215,1354346 +94621,52,10,33343,1188800 +94622,327,7,6643,1189045 +94623,317,10,195385,50818 +94624,250,11,95516,1411142 +94625,333,2,49009,555329 +94626,387,10,42726,16862 +94627,317,10,131822,54767 +94628,413,11,43143,10613 +94629,387,10,82237,120465 +94630,234,1,47962,55668 +94631,291,6,296523,1435644 +94632,234,1,42537,8630 +94633,277,3,146243,1396796 +94634,234,1,27061,3831 +94635,328,6,70981,1390363 +94636,373,7,12113,1391571 +94637,333,2,9352,1304249 +94638,277,3,81030,590954 +94639,220,7,289,17915 +94640,58,2,198795,1584965 +94641,413,11,10925,1168870 +94642,317,10,89269,151359 +94643,105,7,89242,14252 +94644,413,11,9034,56761 +94645,179,2,298,1329113 +94646,234,1,274131,32375 +94647,234,1,401222,998227 +94648,269,9,41076,929655 +94649,413,11,450530,1533583 +94650,234,1,204839,104926 +94651,234,1,38531,89602 +94652,387,10,42168,584535 +94653,269,9,325189,4908 +94654,333,2,240832,1412909 +94655,234,1,173301,1156075 +94656,12,10,122857,57436 +94657,234,1,47065,63937 +94658,273,7,3870,1259 +94659,415,3,12561,115913 +94660,317,10,118658,1030481 +94661,328,6,201085,1572871 +94662,277,3,205864,1553690 +94663,333,2,21950,586083 +94664,226,2,126889,1634542 +94665,317,10,17003,53069 +94666,53,2,273481,6057 +94667,387,10,31984,91359 +94668,196,7,16997,1348000 +94669,155,3,203819,1355545 +94670,277,3,44208,1355977 +94671,360,3,122081,1719413 +94672,234,1,56292,7087 +94673,323,10,180371,102557 +94674,52,10,127380,1396739 +94675,105,7,298787,1376943 +94676,413,11,264553,1332311 +94677,317,10,125249,34799 +94678,419,10,264080,121072 +94679,181,7,9746,1555162 +94680,234,1,28480,9076 +94681,105,7,27873,133884 +94682,97,7,378236,1374169 +94683,234,1,323370,1422664 +94684,3,5,401222,1632444 +94685,204,9,243940,1423985 +94686,328,6,40466,1760156 +94687,196,7,169298,1407255 +94688,53,2,62046,42909 +94689,387,10,62034,5811 +94690,202,7,13986,1608033 +94691,3,5,13437,31835 +94692,11,6,59297,1658440 +94693,387,10,34127,195975 +94694,413,11,949,1047 +94695,160,3,817,14049 +94696,234,1,81001,8482 +94697,387,10,339116,1672437 +94698,317,10,302699,37933 +94699,132,2,376501,1792360 +94700,234,1,14569,126303 +94701,273,7,68347,40283 +94702,204,9,14459,1048421 +94703,387,10,34334,34692 +94704,105,7,3063,30009 +94705,97,7,314065,1338222 +94706,234,1,10543,15890 +94707,3,5,10303,2209 +94708,301,5,744,1378174 +94709,143,7,10727,42267 +94710,75,5,205584,1428556 +94711,413,11,156627,1707032 +94712,99,3,158598,1139969 +94713,158,2,27265,1341860 +94714,317,10,18222,553980 +94715,169,3,3597,1549066 +94716,53,2,333367,1892820 +94717,317,10,160324,514369 +94718,269,9,44943,16733 +94719,143,7,18937,900 +94720,7,3,406431,1650636 +94721,123,3,267623,586317 +94722,286,3,80280,54520 +94723,317,10,82080,87684 +94724,176,3,46261,1425380 +94725,105,7,81182,51064 +94726,226,2,18990,30182 +94727,234,1,30690,84165 +94728,3,5,169726,12242 +94729,413,11,59197,81297 +94730,234,1,65002,10249 +94731,161,6,9352,1586400 +94732,143,7,86154,1076744 +94733,317,10,47386,138775 +94734,187,11,98066,1565105 +94735,269,9,126319,1340962 +94736,413,11,15794,2761 +94737,5,10,19017,141394 +94738,3,5,966,3148 +94739,333,2,43455,31206 +94740,234,1,110992,91758 +94741,53,2,63273,66534 +94742,97,7,333663,1403800 +94743,226,2,311324,1411067 +94744,127,3,1966,1447518 +94745,175,5,26390,18095 +94746,413,11,2047,6875 +94747,317,10,252144,31051 +94748,158,2,198663,1367503 +94749,327,7,33135,587229 +94750,234,1,66125,110427 +94751,3,5,15489,18257 +94752,234,1,2204,2303 +94753,52,10,21554,47054 +94754,236,8,13056,1708268 +94755,269,9,167073,38523 +94756,75,5,51044,7346 +94757,273,7,257444,1023809 +94758,234,1,315837,228134 +94759,269,9,245891,7496 +94760,204,9,10860,7147 +94761,204,9,183171,13572 +94762,387,10,13440,1184564 +94763,234,1,30034,8254 +94764,234,1,133458,5306 +94765,269,9,1691,21640 +94766,81,3,1586,1611791 +94767,234,1,51802,2000 +94768,317,10,181753,1454809 +94769,387,10,38749,2260 +94770,127,3,39979,68330 +94771,413,11,27966,1132121 +94772,317,10,161024,981342 +94773,317,10,213121,7929 +94774,387,10,910,4298 +94775,235,5,188927,1389671 +94776,396,3,330459,1706704 +94777,234,1,16066,79132 +94778,269,9,10749,5595 +94779,234,1,2758,5174 +94780,53,2,1550,1531970 +94781,413,11,163,1891 +94782,317,10,208700,90503 +94783,75,5,47112,1403544 +94784,79,7,41903,81984 +94785,37,3,98066,1759328 +94786,234,1,202337,224970 +94787,317,10,38526,228102 +94788,287,3,6171,1410328 +94789,413,11,75532,22472 +94790,234,1,18447,4346 +94791,269,9,22476,61846 +94792,373,7,181454,1199961 +94793,148,9,11950,1800 +94794,413,11,4520,41376 +94795,415,3,14510,98471 +94796,87,7,25941,1541461 +94797,373,7,6973,13177 +94798,87,7,309581,1582557 +94799,204,9,186869,10857 +94800,208,2,1251,74323 +94801,203,1,107811,1407238 +94802,234,1,118059,29962 +94803,333,2,25796,23427 +94804,53,2,9846,23973 +94805,53,2,104556,38229 +94806,164,3,15414,1557546 +94807,5,10,121230,1309574 +94808,182,8,378441,1797461 +94809,234,1,286521,33315 +94810,135,3,11351,1597191 +94811,234,1,10473,58656 +94812,317,10,87908,935636 +94813,158,2,336882,1635798 +94814,273,7,22448,71273 +94815,234,1,40916,95293 +94816,269,9,12477,72418 +94817,53,2,229610,10153 +94818,234,1,52918,220691 +94819,234,1,75948,67259 +94820,239,5,140607,1550794 +94821,75,5,77165,1120154 +94822,234,1,276906,76999 +94823,143,7,109439,1408301 +94824,3,5,89647,133439 +94825,277,3,45562,999563 +94826,113,9,13380,1753064 +94827,387,10,38769,3377 +94828,273,7,1813,1213 +94829,143,7,341886,1573334 +94830,387,10,226936,120018 +94831,273,7,50079,72066 +94832,234,1,59356,229247 +94833,413,11,28663,101498 +94834,387,10,2259,19684 +94835,333,2,85414,1406862 +94836,204,9,32634,1174632 +94837,53,2,922,11714 +94838,413,11,11017,52056 +94839,336,2,8619,1394117 +94840,234,1,356294,230426 +94841,373,7,435,1377220 +94842,387,10,206647,10782 +94843,179,2,256347,1338157 +94844,273,7,49028,545520 +94845,269,9,302036,1417170 +94846,413,11,78691,2866 +94847,204,9,5998,12320 +94848,236,8,176,1817642 +94849,304,10,353879,1495603 +94850,286,3,126315,53897 +94851,387,10,10999,1726 +94852,333,2,11450,91054 +94853,204,9,41213,1461212 +94854,333,2,338,1585877 +94855,286,3,28115,31767 +94856,175,5,245700,1415987 +94857,74,5,126889,1746431 +94858,162,6,6171,1309482 +94859,113,9,68050,1534026 +94860,105,7,24123,70789 +94861,388,9,74,1411517 +94862,413,11,9461,57725 +94863,234,1,53048,132812 +94864,234,1,49074,1198729 +94865,398,9,127913,1104948 +94866,360,3,10999,1338673 +94867,387,10,108003,73944 +94868,148,9,33729,7687 +94869,234,1,336199,54296 +94870,105,7,329682,1577896 +94871,387,10,211139,33724 +94872,387,10,11622,1392461 +94873,413,11,11380,16651 +94874,317,10,38326,1687796 +94875,208,2,16996,227360 +94876,3,5,9366,11958 +94877,387,10,12309,57097 +94878,317,10,84228,101486 +94879,203,1,7511,1216466 +94880,387,10,61563,1035 +94881,262,6,77949,1402094 +94882,3,5,11812,14139 +94883,234,1,48763,145475 +94884,5,10,74753,418629 +94885,317,10,290365,1323860 +94886,45,9,230179,1881543 +94887,148,9,14,19309 +94888,390,6,152042,1450836 +94889,333,2,15762,1315648 +94890,239,5,14254,1406765 +94891,3,5,77246,1449268 +94892,273,7,45987,18609 +94893,317,10,43083,129249 +94894,3,5,55784,1204485 +94895,387,10,9308,12987 +94896,3,5,11338,14456 +94897,87,7,85350,1528942 +94898,234,1,24589,1236458 +94899,387,10,21352,932380 +94900,87,7,45132,1066776 +94901,77,10,488,6595 +94902,204,9,76465,14448 +94903,413,11,1278,16335 +94904,226,2,23964,1408179 +94905,413,11,67,760 +94906,179,2,294254,1429251 +94907,269,9,2566,26098 +94908,317,10,33091,110055 +94909,234,1,21794,87893 +94910,413,11,102913,1032520 +94911,204,9,51601,33020 +94912,373,7,321039,590055 +94913,198,6,324670,1726032 +94914,413,11,224944,1447894 +94915,269,9,24254,10441 +94916,203,1,26486,1427384 +94917,331,3,374473,1650267 +94918,196,7,322443,1402558 +94919,273,7,3423,20075 +94920,317,10,20160,87322 +94921,277,3,26378,7128 +94922,169,3,1375,16658 +94923,317,10,41283,69617 +94924,234,1,24645,92108 +94925,396,3,11618,1765820 +94926,413,11,9953,3274 +94927,413,11,11045,25058 +94928,317,10,53214,143059 +94929,413,11,42752,128625 +94930,234,1,10053,12786 +94931,198,6,346672,1721340 +94932,3,5,213443,70 +94933,387,10,63831,45138 +94934,158,2,137145,1542308 +94935,60,1,284052,1704381 +94936,105,7,16876,1076 +94937,373,7,10724,1399142 +94938,333,2,100770,38060 +94939,273,7,12593,73274 +94940,273,7,20919,62351 +94941,203,1,251,1453319 +94942,262,6,408381,1657565 +94943,148,9,1902,1543996 +94944,3,5,239018,42370 +94945,3,5,16296,101005 +94946,413,11,16997,60592 +94947,387,10,796,11873 +94948,317,10,198306,17835 +94949,234,1,108391,260933 +94950,387,10,372226,550172 +94951,413,11,323315,1425664 +94952,317,10,49577,142503 +94953,105,7,38718,4140 +94954,317,10,72660,115174 +94955,141,7,34106,34228 +94956,53,2,29825,1394642 +94957,105,7,14301,76532 +94958,204,9,243935,1414914 +94959,317,10,36236,5812 +94960,289,6,9514,1642577 +94961,387,10,616,9182 +94962,387,10,52358,30521 +94963,317,10,21132,87137 +94964,317,10,179715,130402 +94965,357,3,297762,1483142 +94966,12,10,209112,198034 +94967,75,5,71668,151085 +94968,148,9,11377,14348 +94969,287,3,297702,1636862 +94970,413,11,93858,150512 +94971,262,6,329865,1426330 +94972,317,10,57809,1202316 +94973,413,11,27832,99116 +94974,234,1,310888,237855 +94975,373,7,110972,91085 +94976,234,1,100450,94158 +94977,234,1,214,2675 +94978,52,10,41298,29518 +94979,273,7,16235,9217 +94980,250,11,290555,1418443 +94981,204,9,29510,47077 +94982,5,10,244580,1279865 +94983,317,10,82485,840978 +94984,91,3,11351,1745939 +94985,220,7,398786,1177619 +94986,277,3,7299,1433717 +94987,204,9,15321,1462072 +94988,3,5,54256,593004 +94989,166,9,2978,1400546 +94990,97,7,274857,1079085 +94991,234,1,132928,67426 +94992,387,10,18898,15490 +94993,53,2,158967,1326485 +94994,398,9,9423,62780 +94995,269,9,284288,1763422 +94996,317,10,202238,1184370 +94997,413,11,334394,1195906 +94998,51,9,10320,1701153 +94999,381,9,190955,1372084 +95000,221,3,9902,1600629 +95001,160,3,13493,4438 +95002,213,10,13652,72266 +95003,196,7,10724,375 +95004,317,10,149149,133090 +95005,13,5,60488,85855 +95006,289,6,106112,222578 +95007,387,10,80941,227027 +95008,148,9,20439,1560268 +95009,317,10,78364,584535 +95010,398,9,242224,1347995 +95011,3,5,753,11415 +95012,413,11,325189,18387 +95013,204,9,14411,1438901 +95014,62,3,65496,543837 +95015,376,10,85640,190762 +95016,273,7,10708,3393 +95017,333,2,41076,568611 +95018,204,9,43395,9062 +95019,105,7,47878,9796 +95020,262,6,329865,1568842 +95021,317,10,25528,1120219 +95022,122,8,9472,1567920 +95023,317,10,35177,71764 +95024,262,6,189,1387248 +95025,143,7,20,2328 +95026,413,11,71329,1605700 +95027,234,1,403605,235430 +95028,127,3,3059,137261 +95029,235,5,3035,42294 +95030,317,10,30091,134172 +95031,416,10,1164,223 +95032,53,2,102632,1031500 +95033,232,10,6166,48327 +95034,3,5,128866,1665458 +95035,387,10,197177,1177194 +95036,269,9,33314,223990 +95037,97,7,255343,1351724 +95038,387,10,47588,1052041 +95039,105,7,110491,1049453 +95040,317,10,77412,1177373 +95041,415,3,28482,1272077 +95042,234,1,128671,100036 +95043,317,10,38913,32685 +95044,179,2,744,59710 +95045,317,10,17640,197796 +95046,273,7,82624,5881 +95047,288,3,20132,85709 +95048,273,7,17744,1124455 +95049,75,5,1271,1394756 +95050,105,7,10137,37 +95051,234,1,257377,245248 +95052,234,1,80324,2801 +95053,273,7,27966,30268 +95054,234,1,96724,36588 +95055,317,10,26688,965416 +95056,190,7,218778,554533 +95057,203,1,27265,1341865 +95058,77,10,45527,62665 +95059,317,10,52475,1529323 +95060,327,7,25241,1043428 +95061,387,10,40218,184912 +95062,5,10,57993,1522428 +95063,262,6,126889,1368871 +95064,3,5,336029,1129 +95065,5,10,9084,57325 +95066,387,10,120497,16042 +95067,286,3,312497,25744 +95068,113,9,209112,1661321 +95069,105,7,79216,1587601 +95070,3,5,273481,151 +95071,3,5,13483,8523 +95072,3,5,347031,1458711 +95073,53,2,125264,1606799 +95074,273,7,71503,7769 +95075,61,7,74,1447601 +95076,135,3,924,1551651 +95077,60,1,578,1228010 +95078,234,1,125063,23858 +95079,373,7,17654,1424617 +95080,239,5,2567,1599617 +95081,273,7,72875,45546 +95082,234,1,270908,107669 +95083,327,7,289225,1793965 +95084,204,9,107593,32999 +95085,234,1,66584,537978 +95086,74,5,9882,1774549 +95087,269,9,261101,1304458 +95088,413,11,20715,1307636 +95089,317,10,100669,447797 +95090,234,1,45928,12840 +95091,234,1,24837,97131 +95092,53,2,17654,19692 +95093,387,10,20132,85700 +95094,204,9,223485,67115 +95095,269,9,85350,1080454 +95096,52,10,50073,172154 +95097,52,10,227717,1390014 +95098,360,3,109424,1334459 +95099,3,5,137315,469154 +95100,234,1,19335,14875 +95101,52,10,33015,144015 +95102,203,1,337339,1392661 +95103,3,5,27873,8969 +95104,234,1,16900,80993 +95105,273,7,2640,3393 +95106,234,1,109477,1046586 +95107,3,5,262945,18553 +95108,317,10,360284,1488206 +95109,158,2,190955,1405329 +95110,269,9,13792,75555 +95111,387,10,72592,1112405 +95112,413,11,347807,85056 +95113,360,3,317,1599492 +95114,164,3,257088,1554749 +95115,3,5,2662,27743 +95116,175,5,298584,1619737 +95117,182,8,52454,1630386 +95118,40,1,1647,64900 +95119,317,10,254065,135405 +95120,273,7,249,3393 +95121,200,3,46261,1425386 +95122,413,11,452372,116086 +95123,203,1,61341,1338245 +95124,413,11,1819,14189 +95125,317,10,340881,1292455 +95126,244,3,8467,1853277 +95127,3,5,173467,140908 +95128,3,5,296524,17598 +95129,327,7,1690,1357671 +95130,5,10,244182,32982 +95131,204,9,15616,223243 +95132,317,10,44895,116801 +95133,319,1,10727,76090 +95134,249,7,19765,1602164 +95135,196,7,26390,1341403 +95136,234,1,418072,1685110 +95137,303,3,8619,4755 +95138,269,9,197696,928299 +95139,381,9,152736,1409886 +95140,226,2,245891,1512725 +95141,273,7,10033,54599 +95142,40,1,10665,1895996 +95143,204,9,147903,34344 +95144,3,5,99374,40461 +95145,317,10,41764,6648 +95146,204,9,245168,1527431 +95147,317,10,44933,89193 +95148,203,1,157847,1372215 +95149,273,7,11788,29486 +95150,20,2,81232,1334812 +95151,148,9,13437,6630 +95152,234,1,13411,61175 +95153,3,5,25388,2286 +95154,234,1,45729,57777 +95155,234,1,46020,126882 +95156,60,1,86814,1542496 +95157,5,10,28480,45562 +95158,204,9,81232,1530218 +95159,234,1,170548,97570 +95160,25,2,522,16178 +95161,200,3,924,15227 +95162,386,5,544,113664 +95163,413,11,228066,45055 +95164,148,9,13681,12131 +95165,143,7,598,1462845 +95166,269,9,40466,1185100 +95167,97,7,283995,80827 +95168,317,10,336804,1051327 +95169,20,2,68629,72980 +95170,269,9,286372,1375923 +95171,158,2,76163,1337666 +95172,105,7,31911,32398 +95173,273,7,77949,582922 +95174,317,10,14552,129951 +95175,148,9,158908,1332623 +95176,234,1,118245,94218 +95177,262,6,76757,1387184 +95178,204,9,427680,1758559 +95179,305,9,10733,212135 +95180,311,9,284564,1752052 +95181,277,3,2503,1406829 +95182,343,3,15797,56985 +95183,289,6,32428,64864 +95184,219,11,10193,1552873 +95185,22,9,379019,1780150 +95186,60,1,29449,111843 +95187,413,11,344120,968605 +95188,234,1,490,6648 +95189,182,8,5,1877379 +95190,5,10,43114,1460615 +95191,317,10,201085,12677 +95192,269,9,166221,1448828 +95193,148,9,3784,13435 +95194,234,1,37958,56512 +95195,234,1,6980,17309 +95196,234,1,253284,1288764 +95197,387,10,294690,63477 +95198,203,1,201085,1340919 +95199,269,9,31875,1398762 +95200,60,1,38322,1599143 +95201,317,10,416437,931795 +95202,317,10,23319,16377 +95203,3,5,29151,1527 +95204,333,2,34231,1460037 +95205,238,7,315837,1401631 +95206,303,3,10491,1200724 +95207,234,1,43771,120226 +95208,234,1,10910,6593 +95209,127,3,223551,1263800 +95210,3,5,13318,63746 +95211,75,5,354859,1884070 +95212,132,2,58244,1407007 +95213,44,6,10803,18638 +95214,5,10,16993,81117 +95215,234,1,17258,56381 +95216,317,10,320589,141934 +95217,3,5,18044,68170 +95218,373,7,16997,91087 +95219,333,2,76211,26175 +95220,203,1,20648,1537109 +95221,317,10,44932,1192644 +95222,3,5,46872,103496 +95223,180,7,15199,1641982 +95224,413,11,20645,5026 +95225,3,5,11205,26731 +95226,32,8,46492,1529561 +95227,413,11,59962,7230 +95228,234,1,43321,8634 +95229,175,5,47504,1559464 +95230,53,2,20648,1537102 +95231,72,11,1877,1707416 +95232,234,1,126832,212965 +95233,327,7,47112,1456407 +95234,234,1,616,9181 +95235,286,3,293082,1451490 +95236,157,3,170279,43721 +95237,415,3,47886,100836 +95238,277,3,47046,1271299 +95239,333,2,17771,1602329 +95240,52,10,114108,44217 +95241,168,3,1073,1792652 +95242,5,10,122,129 +95243,204,9,74527,4349 +95244,262,6,127585,1384387 +95245,277,3,435,1418461 +95246,273,7,330459,15347 +95247,317,10,59230,229020 +95248,234,1,42533,15959 +95249,234,1,44369,1050912 +95250,273,7,3780,18609 +95251,413,11,125510,1315202 +95252,74,5,26882,1773263 +95253,234,1,380058,177475 +95254,234,1,7304,19000 +95255,234,1,40490,27444 +95256,273,7,351365,117020 +95257,234,1,59569,69042 +95258,127,3,117251,1164341 +95259,317,10,19610,57220 +95260,5,10,126319,1340961 +95261,394,7,84226,2688 +95262,268,7,55846,1404867 +95263,182,8,399790,1830190 +95264,234,1,32390,62531 +95265,317,10,259830,53357 +95266,234,1,19688,57082 +95267,262,6,222935,1512734 +95268,209,7,278632,1338483 +95269,45,9,11232,1336514 +95270,373,7,83430,76264 +95271,234,1,111480,19639 +95272,3,5,60759,21602 +95273,3,5,119010,1822322 +95274,413,11,14534,17816 +95275,413,11,41283,71148 +95276,290,1,2897,50300 +95277,105,7,53178,5466 +95278,273,7,216580,1395212 +95279,75,5,381518,1808368 +95280,179,2,16996,1392141 +95281,148,9,127493,59567 +95282,357,3,12,8084 +95283,317,10,419786,146459 +95284,273,7,315846,186 +95285,387,10,73873,936279 +95286,37,3,379019,1780158 +95287,234,1,17133,15912 +95288,175,5,48231,1427557 +95289,234,1,139519,98251 +95290,234,1,385261,1044894 +95291,387,10,105539,2891 +95292,11,6,35435,114301 +95293,234,1,403593,116802 +95294,387,10,227932,1185621 +95295,234,1,34763,237051 +95296,376,10,14430,76864 +95297,5,10,36786,116558 +95298,335,6,283995,1402903 +95299,273,7,101006,1159608 +95300,209,7,51044,7341 +95301,53,2,31509,1562886 +95302,234,1,12631,13383 +95303,349,1,15653,1767044 +95304,189,3,1579,1389625 +95305,349,1,29233,1174564 +95306,289,6,149870,78345 +95307,373,7,127585,1377220 +95308,262,6,109424,1408384 +95309,333,2,106016,4352 +95310,3,5,44363,70898 +95311,360,3,210913,1405253 +95312,234,1,48254,83189 +95313,60,1,28110,1489958 +95314,387,10,19050,57383 +95315,105,7,28026,1322480 +95316,148,9,23152,8508 +95317,196,7,13380,91892 +95318,387,10,22744,11783 +95319,277,3,55283,1662265 +95320,182,8,1690,1398935 +95321,269,9,354133,128531 +95322,53,2,157898,4127 +95323,219,11,8329,1637499 +95324,234,1,281215,15663 +95325,413,11,266687,1085919 +95326,317,10,289198,118369 +95327,158,2,68822,578057 +95328,226,2,293167,1494525 +95329,204,9,21027,936638 +95330,317,10,406992,1669333 +95331,234,1,327935,121422 +95332,387,10,59744,104452 +95333,303,3,318781,1581132 +95334,234,1,10674,66191 +95335,179,2,167,1527448 +95336,179,2,9423,1324884 +95337,269,9,4478,10441 +95338,92,7,46567,1008508 +95339,328,6,4547,1758629 +95340,387,10,131861,100972 +95341,387,10,33228,72710 +95342,387,10,15734,21453 +95343,234,1,191476,14597 +95344,394,7,49009,1341403 +95345,66,11,46738,1536643 +95346,234,1,9785,3893 +95347,160,3,243568,1413891 +95348,52,10,43514,130185 +95349,387,10,5922,46609 +95350,87,7,359412,1692260 +95351,234,1,77887,2216 +95352,234,1,188507,129952 +95353,183,5,11618,1400092 +95354,234,1,70476,30477 +95355,387,10,11855,10367 +95356,413,11,62033,106503 +95357,52,10,419459,1394657 +95358,60,1,37581,1583005 +95359,204,9,213681,1011958 +95360,3,5,251,2723 +95361,401,6,9982,1615780 +95362,234,1,15303,213380 +95363,268,7,75174,1418286 +95364,413,11,85009,1609399 +95365,234,1,89287,144791 +95366,127,3,10178,5605 +95367,226,2,6341,1655567 +95368,289,6,205584,1453007 +95369,234,1,275696,107765 +95370,113,9,9426,1445977 +95371,190,7,48116,1545745 +95372,273,7,403119,60891 +95373,289,6,44591,1477254 +95374,20,2,146233,1693424 +95375,317,10,39428,93911 +95376,181,7,9543,1553743 +95377,3,5,11374,892 +95378,306,7,38269,1818741 +95379,3,5,159128,130857 +95380,269,9,2666,27749 +95381,327,7,210079,1337980 +95382,234,1,85494,30259 +95383,317,10,44458,238409 +95384,234,1,118640,1068143 +95385,317,10,80717,71204 +95386,317,10,27561,60971 +95387,148,9,228970,1867517 +95388,148,9,82624,1600781 +95389,317,10,140894,10491 +95390,179,2,146243,1327898 +95391,415,3,1369,16574 +95392,232,10,179818,14824 +95393,413,11,11351,56354 +95394,226,2,24469,1319625 +95395,234,1,112655,78845 +95396,225,7,924,1667948 +95397,179,2,2034,1529457 +95398,387,10,228205,34692 +95399,204,9,166671,1546431 +95400,3,5,26422,9752 +95401,204,9,29510,5188 +95402,387,10,39345,568693 +95403,234,1,293189,1505912 +95404,387,10,11576,69953 +95405,234,1,273096,592488 +95406,273,7,91181,3249 +95407,148,9,31618,8680 +95408,3,5,54227,41709 +95409,3,5,99846,30683 +95410,160,3,262338,1354926 +95411,387,10,10604,65843 +95412,52,10,623,8929 +95413,3,5,15788,141595 +95414,226,2,20242,1331648 +95415,190,7,337339,1907220 +95416,122,8,9882,1546881 +95417,317,10,57230,225721 +95418,234,1,142563,1117498 +95419,53,2,329712,7297 +95420,34,8,11812,1726439 +95421,413,11,356752,52056 +95422,226,2,23730,1534438 +95423,387,10,82654,56661 +95424,132,2,284289,1459187 +95425,317,10,18098,81506 +95426,286,3,261101,1051964 +95427,204,9,62034,5681 +95428,317,10,122435,1076152 +95429,234,1,116979,14800 +95430,209,7,31911,12945 +95431,317,10,197849,137349 +95432,413,11,82626,928325 +95433,273,7,47190,1663166 +95434,3,5,10847,47613 +95435,357,3,209112,1661402 +95436,413,11,16659,58096 +95437,192,5,58244,1618807 +95438,413,11,786,11657 +95439,34,8,201085,1408702 +95440,160,3,269173,38887 +95441,273,7,44129,40384 +95442,105,7,33250,1652743 +95443,3,5,8584,15348 +95444,273,7,310133,1298750 +95445,203,1,54022,1416673 +95446,289,6,10539,1453594 +95447,373,7,1991,1399141 +95448,208,2,7445,1333900 +95449,317,10,142770,1117900 +95450,143,7,107073,1376178 +95451,203,1,14047,1400738 +95452,97,7,17144,1395256 +95453,148,9,82327,1646865 +95454,394,7,4982,14765 +95455,52,10,28340,100485 +95456,204,9,58903,960431 +95457,5,10,26983,31063 +95458,317,10,34216,136164 +95459,234,1,49524,57270 +95460,3,5,18282,68459 +95461,269,9,11172,3429 +95462,314,2,51250,1721880 +95463,234,1,36992,1039360 +95464,234,1,11502,3556 +95465,413,11,10222,10957 +95466,5,10,37779,549353 +95467,269,9,2963,11523 +95468,127,3,186869,1535407 +95469,415,3,100910,3252 +95470,387,10,19587,182924 +95471,87,7,62728,45056 +95472,53,2,35200,417597 +95473,269,9,6973,25550 +95474,317,10,81409,89121 +95475,387,10,42764,50739 +95476,373,7,949,1401687 +95477,317,10,44933,85551 +95478,53,2,18148,1453075 +95479,360,9,354859,1884733 +95480,143,7,9785,554887 +95481,3,5,72465,71494 +95482,198,6,312221,1580884 +95483,234,1,1497,59649 +95484,194,9,102384,119400 +95485,143,7,245700,1376801 +95486,3,5,227700,51898 +95487,148,9,46094,75800 +95488,333,2,302828,1547749 +95489,15,6,284052,1703132 +95490,53,2,59935,71291 +95491,387,10,25918,4066 +95492,234,1,124115,4109 +95493,179,2,26656,1426339 +95494,3,5,248698,1906519 +95495,387,10,81475,122913 +95496,148,9,5040,41403 +95497,289,6,76349,461513 +95498,234,1,43522,8823 +95499,105,7,128140,1831833 +95500,209,7,809,1531504 +95501,387,10,11446,66605 +95502,333,2,99846,1621020 +95503,234,1,14088,73124 +95504,239,5,613,1150510 +95505,180,7,36245,1297804 +95506,328,6,6972,1392099 +95507,226,2,29056,1466871 +95508,373,7,448847,1465947 +95509,413,11,42309,63957 +95510,317,10,67696,70682 +95511,213,10,27061,3831 +95512,277,3,152736,1409889 +95513,317,10,70586,558922 +95514,269,9,12171,53526 +95515,148,9,52867,7513 +95516,273,7,43896,3249 +95517,53,2,381032,1491977 +95518,21,3,41073,1630806 +95519,5,10,324572,226609 +95520,317,10,96712,69831 +95521,387,10,69035,7189 +95522,413,11,11298,898 +95523,273,7,40208,1820852 +95524,269,9,166,1967 +95525,190,7,755,1851721 +95526,413,11,623,7754 +95527,3,5,4291,4998 +95528,413,11,43967,551956 +95529,413,11,4913,39982 +95530,289,6,72105,1453003 +95531,317,10,46658,92928 +95532,234,1,21325,76936 +95533,15,6,9023,1453612 +95534,234,1,41516,12345 +95535,269,9,47120,28622 +95536,234,1,84348,40863 +95537,53,2,422,5681 +95538,3,5,94525,1080822 +95539,105,7,415358,1386722 +95540,387,10,245703,71872 +95541,317,10,140607,16961 +95542,52,10,46026,131688 +95543,234,1,72215,565332 +95544,333,2,71503,563116 +95545,234,1,20625,29808 +95546,413,11,80281,81090 +95547,83,2,33314,1737666 +95548,303,3,76163,1126734 +95549,148,9,43470,13974 +95550,273,7,99599,1540807 +95551,53,2,424600,1704679 +95552,328,6,10727,42268 +95553,317,10,83995,31439 +95554,387,10,193893,1215771 +95555,303,3,322443,31627 +95556,185,11,8619,1733142 +95557,373,7,124470,1448298 +95558,182,8,9286,1441364 +95559,5,10,314285,1405681 +95560,269,9,332794,28687 +95561,317,10,62190,131792 +95562,333,2,11206,4313 +95563,234,1,24993,63937 +95564,3,5,174751,57849 +95565,298,5,240832,1412919 +95566,273,7,40983,1595410 +95567,387,10,1267,16843 +95568,333,2,196469,1229204 +95569,327,7,16176,1860710 +95570,200,3,177677,1458109 +95571,180,7,49577,1687763 +95572,169,3,14979,1411523 +95573,317,10,20003,85453 +95574,234,1,50934,16411 +95575,333,2,167073,43159 +95576,387,10,63876,86660 +95577,60,1,9078,40345 +95578,317,10,19157,84211 +95579,234,1,92968,995511 +95580,387,10,3064,31141 +95581,236,8,116463,1404194 +95582,387,10,11234,68683 +95583,413,11,9563,20297 +95584,161,6,338189,1646591 +95585,269,9,1969,35455 +95586,234,1,101242,1026671 +95587,328,6,214756,1457939 +95588,413,11,26510,59977 +95589,210,9,354859,1884748 +95590,204,9,24397,1385927 +95591,289,6,164954,551639 +95592,234,1,277934,1489293 +95593,387,10,560,7638 +95594,387,10,2998,15191 +95595,234,1,387886,138108 +95596,53,2,32080,36429 +95597,250,11,315664,1571984 +95598,273,7,14372,1760 +95599,413,11,20432,56354 +95600,198,6,266856,1565662 +95601,234,1,49762,135796 +95602,287,3,10925,1452435 +95603,387,10,268350,196124 +95604,204,9,8617,112521 +95605,175,5,10330,1183391 +95606,273,7,9928,11098 +95607,234,1,18290,227945 +95608,269,9,560,7650 +95609,373,7,11607,1342625 +95610,269,9,103433,30060 +95611,73,7,14554,3646 +95612,234,1,222932,87459 +95613,327,7,20242,548444 +95614,60,1,274990,1639016 +95615,132,2,218778,1420311 +95616,317,10,31547,930598 +95617,226,2,418437,1538966 +95618,196,7,4982,1406390 +95619,273,7,142402,965326 +95620,180,7,28304,85858 +95621,64,6,1374,16642 +95622,398,9,11351,42281 +95623,387,10,11328,21183 +95624,127,3,43522,1494862 +95625,105,7,181656,16140 +95626,53,2,41714,63752 +95627,148,9,47112,224389 +95628,34,8,209112,1428208 +95629,67,10,7220,117217 +95630,160,3,322443,1346949 +95631,77,10,9795,1415 +95632,234,1,40693,76381 +95633,273,7,34469,27181 +95634,3,5,340103,1279803 +95635,234,1,268174,1069788 +95636,262,6,189,1000909 +95637,414,9,10727,1802517 +95638,203,1,50318,1444961 +95639,350,6,11377,1602887 +95640,289,6,53178,225708 +95641,60,1,414977,1676784 +95642,60,1,414977,1676786 +95643,413,11,544,7414 +95644,387,10,11572,69938 +95645,289,6,32085,80247 +95646,413,11,324181,1775302 +95647,108,10,1163,15670 +95648,317,10,85549,932318 +95649,317,10,218329,1076067 +95650,187,11,218778,1401631 +95651,105,7,15019,1555653 +95652,3,5,46885,31181 +95653,148,9,340961,1815552 +95654,373,7,256740,1302410 +95655,53,2,318553,1339593 +95656,317,10,158150,1525602 +95657,387,10,146216,112947 +95658,317,10,318224,71797 +95659,387,10,11234,68684 +95660,360,3,273404,1445366 +95661,45,9,857,1561994 +95662,333,2,2978,13436 +95663,158,2,274857,1703126 +95664,412,9,46738,1354915 +95665,413,11,55694,57087 +95666,3,5,285135,1193854 +95667,204,9,21950,1023356 +95668,269,9,122081,1186191 +95669,155,3,28178,1046771 +95670,328,6,256347,1338156 +95671,273,7,18569,27966 +95672,387,10,11232,47283 +95673,317,10,72204,565313 +95674,317,10,31118,45091 +95675,317,10,72460,152669 +95676,387,10,64215,111481 +95677,148,9,16083,79252 +95678,289,6,22752,109453 +95679,234,1,48376,140374 +95680,398,9,4285,36007 +95681,204,9,325173,1601637 +95682,317,10,43670,66262 +95683,277,3,965,14513 +95684,317,10,13495,127823 +95685,203,1,8329,1405372 +95686,333,2,278632,1582615 +95687,190,7,381015,1828336 +95688,198,6,181533,1551892 +95689,148,9,13616,1586324 +95690,53,2,71805,1424593 +95691,234,1,6636,50922 +95692,105,7,14019,76280 +95693,209,7,86829,17990 +95694,148,9,59962,1325908 +95695,179,2,10326,1324884 +95696,269,9,245692,22321 +95697,398,9,8292,1676182 +95698,3,5,47405,138856 +95699,317,10,55563,59023 +95700,411,9,277713,35011 +95701,3,5,231009,237622 +95702,413,11,3037,2338 +95703,188,8,186869,1638712 +95704,317,10,376579,1322031 +95705,127,3,72105,1288830 +95706,234,1,678,10146 +95707,148,9,87293,1102491 +95708,406,6,76170,1447542 +95709,333,2,228066,1415946 +95710,327,7,11589,8941 +95711,200,3,6972,1401587 +95712,413,11,10596,23810 +95713,413,11,67531,14679 +95714,413,11,158739,943189 +95715,273,7,13667,1561102 +95716,317,10,91627,980292 +95717,234,1,9056,18897 +95718,403,10,49013,32532 +95719,413,11,27917,66105 +95720,52,10,413882,78747 +95721,148,9,11517,12258 +95722,154,3,49308,1351637 +95723,333,2,19912,1319384 +95724,234,1,54559,220833 +95725,387,10,34127,89905 +95726,140,9,18,62460 +95727,413,11,47851,1584700 +95728,60,1,43139,1044184 +95729,12,10,14611,87171 +95730,317,10,85420,18267 +95731,46,5,98566,1459768 +95732,317,10,284305,1495797 +95733,234,1,36047,56263 +95734,269,9,149883,555660 +95735,226,2,70074,1407340 +95736,190,7,42418,1827962 +95737,328,6,72431,1484198 +95738,317,10,194393,196124 +95739,179,2,19995,1319844 +95740,371,3,135679,1103544 +95741,234,1,11134,44916 +95742,53,2,276906,1331178 +95743,3,5,58080,21232 +95744,325,5,419430,1125685 +95745,303,3,97614,1419728 +95746,413,11,84636,1621313 +95747,52,10,108224,1306222 +95748,234,1,128246,1086497 +95749,213,10,393407,2245 +95750,203,1,16921,1401635 +95751,53,2,203264,1562373 +95752,234,1,72096,940694 +95753,387,10,1950,27 +95754,269,9,92635,130832 +95755,148,9,2982,29280 +95756,387,10,44545,109704 +95757,160,3,59962,9558 +95758,336,2,328111,1479535 +95759,413,11,43379,4418 +95760,105,7,197624,128763 +95761,234,1,25060,93087 +95762,3,5,54155,126755 +95763,413,11,59861,43441 +95764,413,11,42537,2891 +95765,328,6,240832,1367826 +95766,327,7,261508,1305037 +95767,3,5,20210,21588 +95768,105,7,5177,41911 +95769,203,1,181533,1533038 +95770,273,7,25674,14712 +95771,141,7,857,91146 +95772,286,3,130272,1090944 +95773,127,3,41211,1670736 +95774,273,7,245891,15221 +95775,245,3,297762,1824287 +95776,413,11,82929,61494 +95777,373,7,65599,1712795 +95778,277,3,281124,1340101 +95779,269,9,318781,8805 +95780,413,11,19403,19244 +95781,273,7,954,531 +95782,387,10,43790,1079817 +95783,317,10,36253,71174 +95784,3,5,115712,1161451 +95785,52,10,41495,50302 +95786,269,9,224944,1568823 +95787,208,2,340275,1323760 +95788,127,3,298,1552521 +95789,105,7,21430,1168192 +95790,413,11,764,11470 +95791,60,1,3780,63966 +95792,413,11,213110,22640 +95793,204,9,330459,23773 +95794,3,5,30307,34438 +95795,262,6,354979,1393416 +95796,203,1,10394,1367566 +95797,189,3,7445,1407237 +95798,180,7,32634,13339 +95799,234,1,418772,1243 +95800,273,7,76229,8619 +95801,273,7,35926,229716 +95802,317,10,84831,12101 +95803,317,10,266333,163225 +95804,234,1,390343,1598099 +95805,411,9,6068,14349 +95806,413,11,13279,61192 +95807,317,10,50329,134865 +95808,203,1,294254,1367508 +95809,413,11,13794,119573 +95810,3,5,393562,1699691 +95811,148,9,6440,4148 +95812,387,10,578,8555 +95813,169,3,20438,1514678 +95814,286,3,15486,75729 +95815,53,2,18133,798 +95816,234,1,410965,84074 +95817,158,2,10733,1397854 +95818,234,1,59895,116133 +95819,262,6,6972,1394755 +95820,387,10,322922,1473801 +95821,399,9,13354,1450356 +95822,413,11,77459,1820913 +95823,105,7,108869,16748 +95824,327,7,34723,1429542 +95825,403,10,10364,64931 +95826,53,2,42499,1129789 +95827,234,1,10973,33883 +95828,53,2,14522,17166 +95829,387,10,8965,74282 +95830,387,10,73067,254800 +95831,327,7,20312,91882 +95832,234,1,47525,43890 +95833,204,9,11235,37301 +95834,298,5,257088,1404739 +95835,3,5,46420,1034190 +95836,234,1,10096,17046 +95837,179,2,45988,1325897 +95838,54,10,64847,1279017 +95839,148,9,51044,11444 +95840,52,10,297762,131947 +95841,413,11,101376,1027212 +95842,387,10,9426,224 +95843,3,5,88529,1449599 +95844,234,1,23590,90070 +95845,53,2,16432,1013535 +95846,373,7,312831,1354923 +95847,208,2,7555,1316296 +95848,269,9,11216,5557 +95849,317,10,242090,1277089 +95850,5,10,93313,18739 +95851,234,1,104081,560264 +95852,387,10,99324,147010 +95853,105,7,24392,1328815 +95854,3,5,323426,96345 +95855,394,7,63831,1532792 +95856,5,10,208309,1427196 +95857,203,1,408381,1464967 +95858,190,7,858,1648018 +95859,172,3,198663,1367510 +95860,235,5,9529,1423865 +95861,234,1,81475,122913 +95862,143,7,289,4129 +95863,234,1,336850,247612 +95864,373,7,337339,1907224 +95865,413,11,8998,3175 +95866,317,10,60599,81856 +95867,53,2,84720,13959 +95868,203,1,395883,1636727 +95869,317,10,23637,4664 +95870,75,5,1991,1420158 +95871,3,5,84892,8846 +95872,77,10,16019,79047 +95873,234,1,238302,1102683 +95874,203,1,381015,1377904 +95875,273,7,2994,1259 +95876,179,2,167810,1326407 +95877,127,3,227975,1775636 +95878,317,10,18467,1319442 +95879,250,11,12113,1405419 +95880,53,2,3291,4061 +95881,317,10,52147,142857 +95882,273,7,9664,894 +95883,413,11,28297,13350 +95884,12,10,263115,7624 +95885,269,9,274857,9153 +95886,105,7,7454,1204208 +95887,3,5,309024,1045750 +95888,203,1,45013,1437719 +95889,317,10,222619,1568874 +95890,234,1,51362,8635 +95891,105,7,14301,12891 +95892,3,5,356461,1501196 +95893,413,11,11091,49286 +95894,77,10,2604,26471 +95895,387,10,85648,1060725 +95896,200,3,315664,1578899 +95897,105,7,17074,1521139 +95898,234,1,126300,225244 +95899,373,7,59197,128499 +95900,234,1,139930,933007 +95901,234,1,14904,3047 +95902,413,11,356326,560181 +95903,303,3,11056,51898 +95904,413,11,74777,551463 +95905,132,2,167,1463140 +95906,181,7,146233,1550166 +95907,387,10,382591,1168589 +95908,317,10,33704,1437430 +95909,148,9,193,796 +95910,273,7,88012,101984 +95911,269,9,28774,22485 +95912,74,5,343173,1742982 +95913,3,5,25694,14960 +95914,317,10,42553,11436 +95915,148,9,241742,1339601 +95916,3,5,296288,1452326 +95917,317,10,45987,134382 +95918,148,9,27380,1638071 +95919,3,5,227964,1176221 +95920,323,10,303360,79795 +95921,317,10,22894,116357 +95922,127,3,197,1534134 +95923,234,1,418378,591994 +95924,387,10,148284,91552 +95925,189,3,3597,1790560 +95926,387,10,28510,102631 +95927,160,3,238589,1167321 +95928,234,1,41301,50719 +95929,413,11,10863,64876 +95930,164,3,9664,1557546 +95931,148,9,204040,8508 +95932,203,1,27259,190914 +95933,234,1,44363,70890 +95934,333,2,227306,75143 +95935,53,2,98586,1143463 +95936,234,1,362439,21825 +95937,387,10,30478,1376319 +95938,273,7,169656,73196 +95939,22,9,178809,233076 +95940,269,9,40041,67582 +95941,226,2,26514,1465102 +95942,317,10,45987,134381 +95943,234,1,29424,14999 +95944,209,7,379,17990 +95945,3,5,14886,1044 +95946,387,10,39493,123009 +95947,108,10,43806,3386 +95948,67,10,15213,1462618 +95949,317,10,141971,108481 +95950,3,5,887,8504 +95951,286,3,13653,59929 +95952,204,9,177677,1545919 +95953,269,9,153,1783 +95954,413,11,117,852 +95955,262,6,318922,1575349 +95956,108,10,11113,33085 +95957,234,1,16455,53332 +95958,104,7,48231,1586398 +95959,317,10,63498,37526 +95960,303,3,316042,1387329 +95961,1,7,200,2522 +95962,105,7,352197,68929 +95963,387,10,26326,158495 +95964,77,10,20,97 +95965,234,1,381015,1140109 +95966,207,3,10008,1399567 +95967,3,5,290714,1503516 +95968,3,5,45988,31732 +95969,234,1,94527,2801 +95970,273,7,31634,111193 +95971,203,1,7454,1407676 +95972,302,9,1966,1733726 +95973,105,7,14626,1870764 +95974,234,1,108365,54448 +95975,3,5,427680,1758557 +95976,3,5,12279,2294 +95977,413,11,19661,2920 +95978,304,10,52264,145675 +95979,387,10,122677,1386763 +95980,413,11,25132,61847 +95981,387,10,7511,20646 +95982,269,9,3513,32350 +95983,187,11,22076,1398180 +95984,413,11,1665,5216 +95985,326,3,12,7892 +95986,234,1,4948,27436 +95987,52,10,51049,84692 +95988,317,10,69921,1479331 +95989,317,10,8144,21230 +95990,317,10,43935,1582866 +95991,105,7,26149,20836 +95992,234,1,192558,88800 +95993,234,1,11630,716 +95994,234,1,57809,107721 +95995,148,9,81232,1018074 +95996,234,1,831,12327 +95997,269,9,73424,1544182 +95998,53,2,102155,22031 +95999,148,9,4538,38806 +96000,105,7,192675,123314 +96001,75,5,245703,1641658 +96002,277,3,242,3277 +96003,148,9,214938,1597062 +96004,105,7,315335,708 +96005,132,2,11547,1334166 +96006,234,1,134782,1100378 +96007,244,3,2613,1800136 +96008,37,3,329865,1646554 +96009,234,1,54801,29662 +96010,200,3,257088,1453671 +96011,3,5,660,9867 +96012,3,5,371645,1122452 +96013,234,1,118451,97142 +96014,287,3,312831,1594189 +96015,394,7,340101,40810 +96016,387,10,24170,83842 +96017,234,1,31503,12438 +96018,5,10,65777,41416 +96019,287,3,4547,109870 +96020,53,2,4011,8428 +96021,234,1,436,5872 +96022,45,9,300187,1533569 +96023,204,9,691,8524 +96024,60,1,76333,1506444 +96025,273,7,57412,30268 +96026,113,9,126889,1518775 +96027,234,1,38955,44916 +96028,373,7,9846,75240 +96029,286,3,69404,1336608 +96030,360,9,98066,1759305 +96031,413,11,10134,16590 +96032,387,10,63449,237274 +96033,207,3,241239,1468592 +96034,317,10,15788,3663 +96035,53,2,28510,1324125 +96036,327,7,18273,1545300 +96037,234,1,18209,13284 +96038,204,9,1165,23981 +96039,234,1,208637,85456 +96040,234,1,28847,29433 +96041,52,10,45692,133476 +96042,325,5,43491,2774 +96043,317,10,8467,55162 +96044,204,9,2160,9061 +96045,160,3,131737,38887 +96046,249,7,88273,1392614 +96047,5,10,69903,1482063 +96048,273,7,195385,1175739 +96049,413,11,58080,5821 +96050,373,7,246415,1439426 +96051,143,7,9542,928942 +96052,234,1,45725,56979 +96053,3,5,72917,20593 +96054,234,1,17082,81220 +96055,60,1,205724,1350646 +96056,204,9,10604,65891 +96057,234,1,63449,237274 +96058,387,10,59387,1218983 +96059,387,10,111479,77121 +96060,87,7,9664,1541461 +96061,105,7,61400,233072 +96062,204,9,26283,4349 +96063,317,10,25450,1232814 +96064,413,11,10694,69928 +96065,234,1,410259,1410109 +96066,87,7,339527,1566120 +96067,413,11,25078,119025 +96068,317,10,160324,98107 +96069,413,11,7916,38955 +96070,200,3,6972,1401718 +96071,5,10,12276,72019 +96072,105,7,15761,37240 +96073,204,9,655,9886 +96074,127,3,2300,13443 +96075,317,10,43875,139318 +96076,269,9,120172,1570082 +96077,373,7,32657,138618 +96078,3,5,10626,37971 +96079,52,10,27983,1478308 +96080,413,11,140470,123521 +96081,3,5,47694,1357 +96082,5,10,342472,1800386 +96083,221,3,7326,1866831 +96084,317,10,18002,82805 +96085,269,9,32082,6921 +96086,387,10,118953,117682 +96087,195,6,10204,1855087 +96088,269,9,2742,8315 +96089,387,10,175035,1504 +96090,413,11,17236,1017352 +96091,234,1,242093,1027018 +96092,328,6,14145,1416985 +96093,113,9,15472,1455301 +96094,360,9,369885,1398085 +96095,234,1,22559,93214 +96096,5,10,117499,1065699 +96097,268,7,15092,1404903 +96098,232,10,14811,19743 +96099,413,11,274479,10393 +96100,234,1,269149,76595 +96101,387,10,384450,82602 +96102,394,7,2675,1341403 +96103,35,10,283995,1352034 +96104,105,7,1554,6394 +96105,5,10,13542,74628 +96106,105,7,3028,29707 +96107,273,7,63326,1056607 +96108,273,7,1662,1259 +96109,200,3,181533,1551904 +96110,387,10,286267,1202100 +96111,3,5,17895,1488323 +96112,327,7,1374,16639 +96113,317,10,322518,1431432 +96114,325,5,2300,1870674 +96115,234,1,121923,15630 +96116,317,10,50123,1379957 +96117,75,5,354287,1428915 +96118,234,1,144580,53387 +96119,333,2,69605,14498 +96120,317,10,111302,29756 +96121,234,1,15003,57214 +96122,166,9,97365,1477780 +96123,196,7,408616,1451407 +96124,105,7,298787,1376944 +96125,25,2,33613,1455316 +96126,317,10,381015,1140109 +96127,387,10,31805,89905 +96128,104,7,16131,1514311 +96129,317,10,15906,106850 +96130,413,11,9568,56989 +96131,60,1,30708,1338850 +96132,245,3,19995,1376909 +96133,387,10,2295,19303 +96134,269,9,257444,1039117 +96135,328,6,339342,1643466 +96136,143,7,6079,47831 +96137,317,10,105703,69831 +96138,306,7,9540,1714505 +96139,387,10,838,1 +96140,387,10,33729,170497 +96141,328,6,6557,1434161 +96142,3,5,38433,18744 +96143,105,7,43900,89085 +96144,45,9,1715,1442116 +96145,234,1,49940,47062 +96146,234,1,284296,2632 +96147,204,9,11385,31204 +96148,273,7,43117,13571 +96149,187,11,17771,91879 +96150,53,2,26983,6851 +96151,204,9,13616,1571109 +96152,269,9,10364,12017 +96153,314,2,12536,1332641 +96154,105,7,36960,1364427 +96155,75,5,25430,31202 +96156,53,2,24657,150839 +96157,105,7,301368,1094458 +96158,413,11,297702,1636848 +96159,317,10,48706,63047 +96160,105,7,316042,1289423 +96161,273,7,11656,6651 +96162,269,9,365222,77705 +96163,234,1,52323,145795 +96164,53,2,425774,1708047 +96165,234,1,38920,5696 +96166,387,10,11909,70900 +96167,277,3,34231,1460039 +96168,273,7,9563,35059 +96169,269,9,20432,17853 +96170,99,3,10590,33017 +96171,234,1,17275,1022759 +96172,301,5,376501,1527865 +96173,398,9,10727,1418283 +96174,317,10,82080,31604 +96175,269,9,9899,5670 +96176,234,1,34013,7288 +96177,317,10,97794,93529 +96178,53,2,76533,1086970 +96179,317,10,15468,32940 +96180,413,11,52991,138469 +96181,204,9,25941,23425 +96182,262,6,15472,1400801 +96183,317,10,78563,47822 +96184,234,1,13079,78118 +96185,3,5,178,2044 +96186,234,1,83491,270361 +96187,234,1,29239,103344 +96188,234,1,44875,94218 +96189,53,2,9352,1516265 +96190,3,5,13889,70129 +96191,11,6,5393,43102 +96192,317,10,330418,1441730 +96193,397,7,84569,115613 +96194,328,6,2503,1406837 +96195,413,11,14452,1009265 +96196,234,1,49787,81328 +96197,5,10,87349,8327 +96198,413,11,5172,7480 +96199,317,10,17745,56975 +96200,113,9,223551,1263796 +96201,75,5,388243,1622335 +96202,317,10,161482,1144625 +96203,234,1,137193,1106974 +96204,3,5,58396,228524 +96205,373,7,399790,164709 +96206,105,7,270774,21903 +96207,269,9,244458,5867 +96208,234,1,88126,93561 +96209,52,10,43131,143565 +96210,3,5,75066,546805 +96211,3,5,227156,56786 +96212,303,3,16374,59370 +96213,273,7,317,1045466 +96214,413,11,243940,16651 +96215,234,1,430973,1012317 +96216,289,6,13654,1451280 +96217,331,3,10733,1571759 +96218,160,3,9877,72117 +96219,113,9,44943,966594 +96220,60,1,68822,30632 +96221,317,10,51423,1676218 +96222,234,1,312831,1401474 +96223,174,6,9664,1557577 +96224,387,10,136368,962478 +96225,323,10,221667,146438 +96226,304,10,393445,35736 +96227,127,3,188102,200598 +96228,413,11,38769,19334 +96229,413,11,39176,5056 +96230,387,10,42569,55273 +96231,87,7,325133,1546441 +96232,172,3,74,1377237 +96233,387,10,42057,6220 +96234,387,10,29161,4955 +96235,270,9,31947,1564965 +96236,160,3,76203,1333222 +96237,328,6,15092,1414552 +96238,198,6,227306,1463489 +96239,53,2,61225,7238 +96240,386,5,293167,13670 +96241,328,6,304613,1827053 +96242,53,2,4516,37636 +96243,413,11,44875,68417 +96244,317,10,96713,1010120 +96245,269,9,791,11819 +96246,317,10,70734,1618643 +96247,277,7,5924,1513636 +96248,234,1,180576,5696 +96249,187,11,8470,1405232 +96250,234,1,92384,31123 +96251,234,1,248710,1015967 +96252,413,11,11227,51514 +96253,3,5,180299,1127110 +96254,234,1,289720,1358976 +96255,413,11,40218,66105 +96256,289,6,257344,1473421 +96257,234,1,8398,54827 +96258,52,10,75363,1349479 +96259,317,10,219572,110511 +96260,234,1,263260,1080813 +96261,273,7,41610,240264 +96262,3,5,16164,8750 +96263,269,9,94365,930982 +96264,53,2,70667,1150868 +96265,317,10,84295,930689 +96266,52,10,45577,133238 +96267,234,1,69619,31033 +96268,373,7,403605,1338254 +96269,53,2,411741,1338157 +96270,3,5,31913,31501 +96271,187,11,257088,93844 +96272,317,10,39824,817418 +96273,3,5,88320,13809 +96274,234,1,70966,235417 +96275,387,10,13305,22777 +96276,317,10,359025,1176454 +96277,250,11,177677,62723 +96278,208,2,38322,1333978 +96279,333,2,4133,406204 +96280,387,10,9598,20629 +96281,234,1,55989,78439 +96282,234,1,169343,1151386 +96283,349,1,9982,1451279 +96284,53,2,47190,1663168 +96285,51,9,74,1638528 +96286,45,9,9819,1517631 +96287,53,2,43855,10153 +96288,95,8,126889,1746440 +96289,317,10,141138,70675 +96290,182,8,245700,1413036 +96291,317,10,260001,1302551 +96292,37,3,102382,1460655 +96293,317,10,34796,222572 +96294,273,7,5332,43623 +96295,43,2,142402,1117102 +96296,234,1,123757,1012097 +96297,317,10,22803,13927 +96298,3,5,23515,1099990 +96299,292,3,8869,1552542 +96300,169,3,341886,1573331 +96301,333,2,27814,1148576 +96302,413,11,4441,37280 +96303,204,9,131366,1534758 +96304,154,3,323929,1724364 +96305,72,11,10691,1607165 +96306,160,3,46738,92235 +96307,399,9,12902,1450356 +96308,15,6,13205,1815473 +96309,204,9,27873,1153586 +96310,387,10,16373,65536 +96311,105,7,42216,1938 +96312,286,3,128246,1652813 +96313,234,1,59981,15780 +96314,188,8,186869,1862944 +96315,192,5,294652,1722221 +96316,105,7,32609,1351554 +96317,12,10,13486,7775 +96318,394,7,14411,8708 +96319,317,10,96958,45791 +96320,143,7,397365,1645941 +96321,234,1,24392,91559 +96322,317,10,354859,19852 +96323,234,1,411221,1563107 +96324,273,7,12787,7714 +96325,413,11,258251,1348581 +96326,333,2,238589,1412602 +96327,289,6,5559,1447381 +96328,234,1,121539,1074506 +96329,148,9,7326,53114 +96330,234,1,48118,229487 +96331,317,10,31128,30689 +96332,5,10,105059,1683116 +96333,413,11,80193,2760 +96334,317,10,112161,77885 +96335,398,9,10710,46592 +96336,148,9,99861,8410 +96337,413,11,119010,169549 +96338,87,7,345922,1530088 +96339,301,5,332567,1427466 +96340,234,1,85959,932762 +96341,204,9,46623,12280 +96342,387,10,82470,31890 +96343,317,10,63736,87448 +96344,413,11,207641,1269246 +96345,87,7,201085,52453 +96346,413,11,33336,20792 +96347,242,9,3061,29984 +96348,349,1,10020,957663 +96349,373,7,351211,166235 +96350,234,1,48959,1238983 +96351,160,3,3716,1420189 +96352,204,9,7299,1328823 +96353,234,1,47975,219783 +96354,286,3,27053,1901597 +96355,289,6,12593,1458337 +96356,5,10,73067,567970 +96357,317,10,156981,1138213 +96358,143,7,28,154 +96359,5,10,159469,1206670 +96360,413,11,271185,1314579 +96361,21,3,809,118489 +96362,273,7,83890,986354 +96363,179,2,176,1817620 +96364,413,11,300654,1387269 +96365,77,10,16076,79170 +96366,269,9,86825,3287 +96367,52,10,27999,84942 +96368,317,10,43891,117851 +96369,234,1,2262,2725 +96370,273,7,9507,1760 +96371,127,3,14554,1578504 +96372,273,7,63764,1071189 +96373,5,10,47260,138239 +96374,234,1,9889,7395 +96375,3,5,24348,1867769 +96376,333,2,15092,1414541 +96377,234,1,253612,1383169 +96378,286,3,301224,1382179 +96379,234,1,104297,101767 +96380,64,6,332662,1570526 +96381,160,3,3597,16618 +96382,122,8,9352,1586391 +96383,3,5,70666,56240 +96384,317,10,390587,1606500 +96385,141,7,755,28241 +96386,148,9,76397,578793 +96387,234,1,55347,17439 +96388,3,5,125249,34802 +96389,273,7,444713,1714242 +96390,289,6,3989,1454389 +96391,413,11,22803,8219 +96392,125,2,284052,1774241 +96393,148,9,7299,8706 +96394,245,3,10394,1465067 +96395,413,11,301348,932147 +96396,239,5,9472,1567921 +96397,317,10,35907,1770592 +96398,413,11,21135,4418 +96399,269,9,19918,962464 +96400,75,5,44943,1149583 +96401,387,10,9943,52102 +96402,234,1,10841,51875 +96403,387,10,104343,52909 +96404,387,10,11055,32209 +96405,143,7,203819,1355537 +96406,105,7,32532,11691 +96407,52,10,15697,69319 +96408,387,10,2516,25632 +96409,317,10,55197,131010 +96410,317,10,24978,92938 +96411,20,2,1966,959962 +96412,234,1,255692,43526 +96413,273,7,23518,1760 +96414,413,11,81409,1893594 +96415,413,11,58905,51311 +96416,3,5,22307,1038559 +96417,413,11,395992,15350 +96418,234,1,22559,2710 +96419,180,7,15697,3646 +96420,53,2,120,1323 +96421,67,10,9902,1600635 +96422,413,11,10849,10440 +96423,175,5,38322,1415109 +96424,234,1,14254,223886 +96425,45,9,177047,1564375 +96426,317,10,104471,11523 +96427,234,1,41552,70862 +96428,5,10,47921,549597 +96429,387,10,14676,111485 +96430,176,3,635,1399993 +96431,387,10,5511,3831 +96432,357,3,109424,1408387 +96433,317,10,324251,1829288 +96434,236,8,4248,1667264 +96435,413,11,9079,55953 +96436,3,5,9577,803 +96437,317,10,45875,29648 +96438,208,2,43009,4313 +96439,175,5,3309,1533664 +96440,273,7,88390,1595410 +96441,413,11,43761,39396 +96442,333,2,122081,75081 +96443,77,10,14254,81203 +96444,317,10,312138,1201665 +96445,413,11,28940,1823765 +96446,161,6,9716,1661550 +96447,10,3,325263,1636536 +96448,105,7,39413,3584 +96449,234,1,9451,13235 +96450,113,9,188927,1447571 +96451,413,11,94348,1328410 +96452,273,7,92269,1188116 +96453,5,10,50225,1104723 +96454,317,10,15,11783 +96455,234,1,73215,569301 +96456,3,5,22701,1587950 +96457,317,10,30082,53708 +96458,273,7,428687,41301 +96459,269,9,39957,66532 +96460,273,7,310593,1555460 +96461,53,2,13336,38493 +96462,293,2,193893,1533100 +96463,317,10,255913,83967 +96464,74,5,241258,1795855 +96465,52,10,52520,146142 +96466,53,2,61121,1596518 +96467,413,11,17350,35959 +96468,83,2,118957,1578022 +96469,234,1,75446,1087734 +96470,5,10,34013,36251 +96471,5,10,118991,1576304 +96472,60,1,613,1724512 +96473,350,6,10733,1571780 +96474,394,7,4147,15226 +96475,360,3,4413,1333220 +96476,148,9,26331,14932 +96477,394,7,6163,1404861 +96478,12,10,102382,7624 +96479,77,10,74,508 +96480,304,10,320910,1118774 +96481,155,3,28,52838 +96482,198,6,395992,1770984 +96483,328,6,9664,1557590 +96484,53,2,6068,9255 +96485,413,11,251,154 +96486,381,9,102382,1399463 +96487,317,10,102961,276449 +96488,301,5,17771,1418511 +96489,360,3,44732,1323126 +96490,269,9,277839,1592791 +96491,234,1,326228,931794 +96492,53,2,78177,1706126 +96493,306,7,32657,1550399 +96494,387,10,27114,94298 +96495,204,9,2295,21470 +96496,105,7,260030,1453104 +96497,406,6,405473,1411235 +96498,289,6,14411,1448071 +96499,273,7,10336,5912 +96500,204,9,55544,1309016 +96501,175,5,15689,1635101 +96502,394,7,11975,1472169 +96503,148,9,76341,1518766 +96504,137,3,35002,13547 +96505,269,9,2503,16733 +96506,75,5,220,8217 +96507,346,3,6947,1424185 +96508,387,10,49521,3893 +96509,53,2,10774,8868 +96510,234,1,11680,39138 +96511,277,7,2300,1412233 +96512,3,5,47190,29733 +96513,234,1,60994,36805 +96514,269,9,310568,1584088 +96515,273,7,10916,67459 +96516,3,5,35129,96732 +96517,30,5,315837,91122 +96518,387,10,94176,12277 +96519,53,2,202214,1866513 +96520,288,3,300983,1472819 +96521,413,11,363439,931363 +96522,179,2,203833,1339056 +96523,53,2,43231,32055 +96524,301,5,2637,1401989 +96525,387,10,811,12115 +96526,289,6,40470,117060 +96527,273,7,158739,1091343 +96528,262,6,24810,1399869 +96529,387,10,76996,142513 +96530,289,6,12593,1100798 +96531,317,10,219781,1178073 +96532,317,10,16436,64252 +96533,317,10,394645,221028 +96534,234,1,15261,54590 +96535,52,10,103073,1032648 +96536,413,11,2124,21811 +96537,234,1,138977,439915 +96538,273,7,322518,1519919 +96539,67,10,27259,1624499 +96540,3,5,307081,18265 +96541,234,1,352025,16862 +96542,317,10,286940,1529879 +96543,105,7,302699,10572 +96544,3,5,16151,79690 +96545,413,11,168031,102784 +96546,387,10,75174,574090 +96547,269,9,104954,1616542 +96548,155,3,522,1134763 +96549,234,1,32716,8500 +96550,196,7,9428,15433 +96551,269,9,55720,6628 +96552,273,7,6163,469 +96553,5,10,17908,1461716 +96554,234,1,26264,43954 +96555,189,3,6977,1552218 +96556,269,9,112456,1816446 +96557,269,9,41211,937581 +96558,203,1,55343,1630533 +96559,305,9,419430,1342013 +96560,234,1,209921,1193465 +96561,234,1,366170,90510 +96562,87,7,399790,1743030 +96563,387,10,59387,219954 +96564,286,3,219335,1459044 +96565,273,7,206563,8576 +96566,413,11,9343,20554 +96567,373,7,4011,1378171 +96568,3,5,33623,14599 +96569,148,9,79372,21873 +96570,234,1,261005,140848 +96571,413,11,42989,43796 +96572,387,10,120457,1108174 +96573,277,7,954,1629423 +96574,175,5,38154,562945 +96575,148,9,36657,11005 +96576,97,7,634,1393301 +96577,148,9,10326,13626 +96578,234,1,75244,152183 +96579,75,5,54845,18265 +96580,45,9,258193,1367361 +96581,273,7,50674,1042809 +96582,314,2,201085,1572875 +96583,317,10,22943,143577 +96584,317,10,333103,491911 +96585,53,2,9900,60157 +96586,387,10,107593,31843 +96587,269,9,44718,32403 +96588,413,11,1415,32602 +96589,209,7,19996,1447090 +96590,387,10,10320,15244 +96591,53,2,866,13009 +96592,160,3,145135,1399638 +96593,234,1,142982,227520 +96594,52,10,269149,1120694 +96595,105,7,22779,2107 +96596,180,7,174769,10155 +96597,175,5,48210,1773343 +96598,419,10,76422,189621 +96599,413,11,11428,16593 +96600,387,10,340176,67075 +96601,273,7,42664,30130 +96602,403,10,372226,1641935 +96603,226,2,339403,1573037 +96604,132,2,283445,1457485 +96605,415,3,85494,102785 +96606,269,9,284293,928299 +96607,413,11,172673,1050201 +96608,387,10,69035,66919 +96609,148,9,1058,13723 +96610,204,9,23853,1070157 +96611,177,6,11024,1673810 +96612,234,1,10020,62048 +96613,139,3,3059,100036 +96614,262,6,9102,102339 +96615,234,1,56391,1734719 +96616,269,9,11137,10064 +96617,60,1,121006,1529435 +96618,3,5,1568,17531 +96619,34,8,1640,1551224 +96620,413,11,10780,11757 +96621,208,2,127585,1326401 +96622,357,3,228066,1548959 +96623,3,5,17287,986294 +96624,286,3,39428,7021 +96625,234,1,121636,8482 +96626,317,10,13506,82592 +96627,288,3,63825,1644157 +96628,387,10,72733,1284545 +96629,234,1,11601,508 +96630,317,10,366143,1024175 +96631,273,7,338438,14807 +96632,182,8,37936,1387542 +96633,176,3,210910,1350852 +96634,234,1,4191,1650 +96635,40,1,13380,1753051 +96636,53,2,86732,233723 +96637,413,11,1369,16567 +96638,196,7,16997,1419842 +96639,204,9,157898,1132129 +96640,196,7,44943,1389858 +96641,5,10,10534,65546 +96642,373,7,1690,1537463 +96643,273,7,390,2308 +96644,317,10,124414,135449 +96645,234,1,118658,1040466 +96646,204,9,45527,1481357 +96647,221,3,11517,1341862 +96648,317,10,50153,41705 +96649,232,10,37454,70854 +96650,236,8,374473,1650277 +96651,87,7,7220,24192 +96652,317,10,75446,1087736 +96653,192,5,9042,1270175 +96654,53,2,139159,551788 +96655,387,10,262785,1306679 +96656,273,7,4931,40167 +96657,3,5,49018,26714 +96658,286,3,312100,972162 +96659,5,10,21966,143327 +96660,413,11,2428,24795 +96661,234,1,347630,1484887 +96662,3,5,16890,1209263 +96663,3,5,279179,1183405 +96664,296,3,1902,1830642 +96665,387,10,17691,18392 +96666,203,1,44801,1338357 +96667,286,3,84942,1115973 +96668,413,11,89242,9954 +96669,234,1,34518,77193 +96670,52,10,293863,1111120 +96671,373,7,378441,568058 +96672,273,7,312174,583871 +96673,182,8,1877,1533788 +96674,226,2,18,1857469 +96675,234,1,266030,1312057 +96676,234,1,8985,5125 +96677,387,10,1850,7130 +96678,12,10,38157,55949 +96679,59,3,398786,1665418 +96680,234,1,414453,1555636 +96681,234,1,438012,1210338 +96682,234,1,257331,83030 +96683,204,9,103875,1749272 +96684,269,9,6933,25550 +96685,53,2,7445,1407234 +96686,209,7,16176,5062 +96687,317,10,74192,96693 +96688,387,10,79500,1184123 +96689,269,9,41963,17220 +96690,103,6,369885,1594641 +96691,234,1,15260,84554 +96692,250,11,44943,1403417 +96693,158,2,949,1392142 +96694,327,7,118497,1294317 +96695,53,2,46872,1584957 +96696,234,1,167012,95329 +96697,273,7,69060,234726 +96698,387,10,204994,109704 +96699,234,1,126550,121314 +96700,413,11,151937,1222761 +96701,77,10,83,640 +96702,387,10,283384,1345424 +96703,331,3,33273,1498688 +96704,196,7,407448,1389858 +96705,3,5,36737,33577 +96706,105,7,28739,61498 +96707,3,5,79316,1039528 +96708,179,2,341174,1316192 +96709,160,3,203833,40645 +96710,402,11,8247,25058 +96711,234,1,203217,1185620 +96712,148,9,41283,13626 +96713,387,10,24750,1788 +96714,3,5,168259,1421687 +96715,234,1,14587,6220 +96716,286,3,83754,1294786 +96717,160,3,163,142161 +96718,204,9,1415,5390 +96719,143,7,127585,9651 +96720,373,7,11472,1327030 +96721,413,11,11134,1069673 +96722,244,3,8470,1538376 +96723,273,7,352164,1611036 +96724,5,10,209251,1291114 +96725,180,7,49097,1545054 +96726,113,9,10344,1446194 +96727,3,5,152100,1420173 +96728,317,10,74714,24492 +96729,387,10,98277,1017275 +96730,234,1,17216,81476 +96731,413,11,13920,57642 +96732,61,7,283995,1815945 +96733,317,10,54900,142854 +96734,245,3,413882,231595 +96735,387,10,51999,89689 +96736,5,10,47794,7394 +96737,317,10,321142,24743 +96738,387,10,6171,8844 +96739,5,10,118098,1066807 +96740,234,1,29610,58040 +96741,413,11,254065,68295 +96742,333,2,57749,1411219 +96743,234,1,63360,198201 +96744,5,10,204922,1413775 +96745,143,7,168259,7239 +96746,166,9,76757,1482836 +96747,413,11,102428,106698 +96748,53,2,128246,1652815 +96749,286,3,52034,237185 +96750,3,5,1850,19464 +96751,226,2,23223,1300923 +96752,273,7,55347,40839 +96753,161,6,140554,1707851 +96754,317,10,220674,190398 +96755,272,3,4248,1425990 +96756,387,10,11647,66718 +96757,273,7,79372,29621 +96758,333,2,105,14713 +96759,198,6,58244,84577 +96760,387,10,182035,976028 +96761,328,6,277713,1609173 +96762,292,3,435,91246 +96763,413,11,4960,65849 +96764,387,10,116236,67972 +96765,155,3,13929,12897 +96766,269,9,9902,33612 +96767,182,8,169881,1406193 +96768,373,7,9532,1378755 +96769,234,1,149657,1130876 +96770,234,1,345775,1483807 +96771,53,2,368006,1523232 +96772,415,3,983,14752 +96773,234,1,171446,72061 +96774,148,9,52847,9063 +96775,317,10,448847,1797860 +96776,234,1,36249,58179 +96777,64,6,13676,1460497 +96778,105,7,10162,26140 +96779,317,10,121888,1050991 +96780,60,1,270851,1262434 +96781,180,7,43525,4315 +96782,158,2,76600,1670762 +96783,387,10,1125,15557 +96784,234,1,325382,1427249 +96785,387,10,135718,239063 +96786,53,2,184741,4127 +96787,182,8,351211,1398846 +96788,387,10,120747,30548 +96789,273,7,46567,66675 +96790,3,5,336890,55612 +96791,412,9,8467,1893224 +96792,317,10,15907,1350297 +96793,394,7,10204,957581 +96794,317,10,32904,109837 +96795,53,2,264393,1462499 +96796,269,9,24392,1328816 +96797,5,10,8888,56651 +96798,413,11,26331,4981 +96799,234,1,39510,1037807 +96800,74,5,33586,1814992 +96801,3,5,43491,8714 +96802,387,10,10865,61950 +96803,196,7,277355,1338483 +96804,3,5,70801,9080 +96805,77,10,76380,495528 +96806,317,10,86126,567816 +96807,234,1,50196,53657 +96808,234,1,38433,120437 +96809,203,1,31911,958273 +96810,387,10,118180,84907 +96811,204,9,27349,12346 +96812,270,9,46261,1425384 +96813,413,11,154442,123869 +96814,5,10,35052,1562621 +96815,378,3,425774,1707961 +96816,204,9,239566,16494 +96817,3,5,43455,41709 +96818,317,10,28448,64065 +96819,273,7,10897,11166 +96820,189,3,8915,1337473 +96821,273,7,38554,1542803 +96822,317,10,2241,36415 +96823,234,1,191476,51918 +96824,413,11,375012,1454919 +96825,74,5,176,1817617 +96826,398,9,9946,935503 +96827,317,10,228970,3225 +96828,387,10,18696,1170382 +96829,234,1,10783,9248 +96830,234,1,2662,16848 +96831,97,7,126889,1079085 +96832,234,1,30054,40199 +96833,333,2,167,74323 +96834,5,10,10491,65434 +96835,234,1,35139,131474 +96836,333,2,2965,29064 +96837,317,10,325263,1438342 +96838,232,10,117500,70854 +96839,269,9,289278,997656 +96840,289,6,12593,1458350 +96841,400,6,8619,1646294 +96842,234,1,305342,84075 +96843,317,10,31372,108012 +96844,182,8,383538,1851919 +96845,273,7,73872,59915 +96846,234,1,161795,117075 +96847,234,1,329227,1152 +96848,3,5,47112,1495686 +96849,413,11,6,71194 +96850,76,2,126889,961143 +96851,53,2,290316,1504752 +96852,387,10,256924,15892 +96853,317,10,258251,83732 +96854,262,6,41283,1417877 +96855,262,6,10916,58188 +96856,52,10,30996,107476 +96857,373,7,15472,563330 +96858,149,6,127380,1715744 +96859,289,6,102382,1460607 +96860,52,10,368006,85598 +96861,398,9,286657,1354699 +96862,234,1,19142,98132 +96863,317,10,35826,19266 +96864,52,10,279096,133359 +96865,333,2,131737,1542379 +96866,413,11,22682,10007 +96867,3,5,28484,13972 +96868,317,10,44874,216391 +96869,317,10,418969,1220799 +96870,204,9,80304,17677 +96871,234,1,23544,90302 +96872,148,9,194722,1636768 +96873,317,10,78999,585458 +96874,273,7,65603,1938 +96875,105,7,86126,1306117 +96876,273,7,38579,49911 +96877,273,7,96089,29330 +96878,196,7,38775,121342 +96879,289,6,32428,138170 +96880,394,7,10972,1537498 +96881,317,10,47683,1750919 +96882,413,11,41857,4309 +96883,3,5,22606,89007 +96884,203,1,315664,1376808 +96885,217,3,9982,1713392 +96886,301,5,287628,1565116 +96887,413,11,8079,9897 +96888,179,2,126889,1355543 +96889,198,6,177677,1545980 +96890,289,6,39101,122767 +96891,234,1,75892,225945 +96892,204,9,9981,21795 +96893,234,1,1655,18400 +96894,286,3,85446,932090 +96895,203,1,76163,1437719 +96896,204,9,75510,17763 +96897,317,10,20544,51844 +96898,203,1,26149,1400540 +96899,234,1,16177,21440 +96900,317,10,202984,1185283 +96901,234,1,222370,139280 +96902,317,10,64725,1380164 +96903,328,6,228066,1574096 +96904,317,10,20096,129645 +96905,273,7,28165,1296990 +96906,387,10,106016,34371 +96907,45,9,755,1423747 +96908,148,9,621,8884 +96909,387,10,7445,9813 +96910,3,5,21451,29983 +96911,60,1,351211,1652036 +96912,413,11,58886,54260 +96913,333,2,9457,1397275 +96914,75,5,324670,1298839 +96915,182,8,274504,1609039 +96916,234,1,18290,1074311 +96917,317,10,18082,1857204 +96918,3,5,13185,473 +96919,234,1,409447,1384516 +96920,21,3,38404,120326 +96921,413,11,75363,54033 +96922,162,6,638,9569 +96923,273,7,27622,14861 +96924,3,5,104720,13270 +96925,234,1,25037,37846 +96926,5,10,249,3390 +96927,37,3,127585,1456696 +96928,5,10,11704,70288 +96929,317,10,146679,95135 +96930,398,9,48231,1404354 +96931,204,9,49609,2763 +96932,387,10,403,5697 +96933,167,3,41283,1435661 +96934,317,10,25936,86861 +96935,234,1,96936,1769 +96936,419,10,257574,42057 +96937,413,11,48594,1205159 +96938,317,10,85543,932315 +96939,64,6,42218,101225 +96940,143,7,194853,1175185 +96941,317,10,106355,34799 +96942,413,11,613,7837 +96943,53,2,3023,12350 +96944,204,9,56135,44878 +96945,317,10,334317,62467 +96946,167,3,7299,1433746 +96947,234,1,21843,88019 +96948,289,6,326359,1460478 +96949,5,10,10219,64711 +96950,394,7,11517,1403515 +96951,67,10,38055,1453536 +96952,269,9,223551,1116222 +96953,143,7,284052,1399117 +96954,53,2,186869,1494277 +96955,317,10,45431,550891 +96956,387,10,9495,57703 +96957,296,3,49009,1363346 +96958,53,2,10754,66455 +96959,190,7,381015,1828337 +96960,162,6,25625,10368 +96961,53,2,4538,5671 +96962,155,3,8916,1404749 +96963,286,3,185156,1178977 +96964,387,10,129229,1088719 +96965,317,10,31555,43777 +96966,273,7,11328,69017 +96967,234,1,11572,69940 +96968,398,9,127585,1204225 +96969,234,1,224251,97646 +96970,52,10,81684,592851 +96971,262,6,47540,1468507 +96972,387,10,791,11770 +96973,239,5,379019,1644001 +96974,77,10,2861,28615 +96975,317,10,360605,63711 +96976,105,7,300187,11166 +96977,64,6,7249,1451683 +96978,333,2,225728,1363071 +96979,180,7,51044,8511 +96980,387,10,42305,47399 +96981,3,5,98586,19810 +96982,203,1,251421,1374511 +96983,319,1,381015,1828331 +96984,387,10,12536,72701 +96985,148,9,246655,8706 +96986,203,1,153,1393455 +96987,3,5,10659,15117 +96988,209,7,329805,1578898 +96989,12,10,7220,35287 +96990,413,11,330947,1164588 +96991,413,11,51144,8735 +96992,3,5,43395,958533 +96993,317,10,441881,85048 +96994,286,3,27053,65096 +96995,97,7,238589,1345264 +96996,269,9,428687,1588423 +96997,3,5,19827,19129 +96998,269,9,10409,6203 +96999,387,10,8882,72767 +97000,234,1,19176,27236 +97001,77,10,15019,57434 +97002,269,9,268920,5508 +97003,317,10,16017,89689 +97004,147,1,435,1767008 +97005,46,5,285270,1367937 +97006,387,10,10972,46395 +97007,317,10,40217,8538 +97008,317,10,278458,584195 +97009,273,7,67130,33248 +97010,387,10,372640,225887 +97011,132,2,257088,1405704 +97012,97,7,8053,1371064 +97013,141,7,10543,1376311 +97014,5,10,8368,38233 +97015,3,5,59142,18576 +97016,328,6,70074,1407363 +97017,3,5,50759,552001 +97018,273,7,27230,1409444 +97019,132,2,245703,1458987 +97020,207,3,227306,1866376 +97021,204,9,1976,14448 +97022,208,2,12536,1393278 +97023,273,7,28325,53189 +97024,226,2,43395,14681 +97025,262,6,44363,1288893 +97026,293,2,93856,1539442 +97027,148,9,33364,3648 +97028,333,2,45019,1533804 +97029,287,3,85160,1432473 +97030,373,7,177572,112609 +97031,387,10,187516,85996 +97032,53,2,43157,8509 +97033,234,1,203264,91614 +97034,3,5,2115,1527 +97035,209,7,291413,1397736 +97036,289,6,291270,1584373 +97037,105,7,43471,1045 +97038,303,3,265208,1097118 +97039,204,9,108282,570963 +97040,234,1,58615,229575 +97041,333,2,322443,1407677 +97042,269,9,211879,1595275 +97043,413,11,17144,44993 +97044,204,9,48205,1620073 +97045,413,11,43497,34224 +97046,234,1,215032,92012 +97047,205,10,107250,1586501 +97048,200,3,11351,964509 +97049,235,5,132363,1406281 +97050,289,6,328111,1479536 +97051,234,1,29144,58868 +97052,34,8,334,1534468 +97053,388,9,69668,1436500 +97054,317,10,138496,217046 +97055,52,10,19096,51307 +97056,413,11,11876,12758 +97057,5,10,1717,18799 +97058,273,7,43266,8503 +97059,105,7,10775,21903 +97060,333,2,19901,119182 +97061,387,10,73969,14649 +97062,226,2,2084,75485 +97063,72,11,949,1405208 +97064,286,3,50181,29732 +97065,5,10,39013,115563 +97066,160,3,93856,1054796 +97067,413,11,37100,1184461 +97068,234,1,28943,17784 +97069,317,10,417870,1407486 +97070,333,2,13852,75908 +97071,105,7,60086,1183885 +97072,3,5,21619,4614 +97073,413,11,11647,64378 +97074,3,5,290316,1147570 +97075,333,2,302828,1400878 +97076,387,10,14931,58294 +97077,387,10,180576,5697 +97078,52,10,101929,1029320 +97079,333,2,156981,1575343 +97080,3,5,253235,67356 +97081,217,3,22602,118218 +97082,319,1,395992,1813931 +97083,5,10,41073,1202511 +97084,387,10,10330,64829 +97085,387,10,40998,78747 +97086,273,7,16164,122 +97087,317,10,11925,72681 +97088,234,1,142499,1117466 +97089,105,7,294690,1275732 +97090,54,10,148265,1758706 +97091,148,9,24625,53182 +97092,387,10,41645,43330 +97093,411,9,8840,25061 +97094,105,7,429200,1325093 +97095,234,1,137614,585035 +97096,105,7,15556,4140 +97097,3,5,35021,69538 +97098,203,1,180305,1453143 +97099,387,10,10890,1524 +97100,203,1,6171,1426782 +97101,387,10,2124,21807 +97102,269,9,334,21747 +97103,269,9,219233,1602594 +97104,327,7,2662,1555374 +97105,37,3,329865,1646600 +97106,269,9,141955,4103 +97107,3,5,41611,30258 +97108,53,2,26864,983358 +97109,75,5,43346,9867 +97110,160,3,5753,45358 +97111,234,1,256930,1017332 +97112,226,2,19176,1444909 +97113,333,2,18405,1410274 +97114,277,3,55343,1630535 +97115,3,5,74879,456963 +97116,349,1,66984,222244 +97117,273,7,11296,39624 +97118,15,6,257344,1424620 +97119,3,5,83384,53649 +97120,273,7,11925,61276 +97121,317,10,335869,1162313 +97122,234,1,27824,99080 +97123,394,7,10008,229993 +97124,273,7,28681,129809 +97125,3,5,108224,8504 +97126,234,1,38742,13953 +97127,234,1,149515,89749 +97128,413,11,94182,113571 +97129,12,10,809,44217 +97130,3,5,49013,7988 +97131,413,11,28974,1024473 +97132,413,11,67696,999876 +97133,209,7,14126,1409225 +97134,333,2,3059,1374201 +97135,204,9,126832,1083259 +97136,3,5,18776,98501 +97137,317,10,261439,6210 +97138,413,11,20424,120177 +97139,387,10,18,59 +97140,262,6,339342,1596751 +97141,317,10,343921,1215937 +97142,143,7,127913,1104950 +97143,317,10,49943,71871 +97144,273,7,11351,56352 +97145,317,10,195544,78530 +97146,52,10,326,1560760 +97147,387,10,177043,109400 +97148,328,6,41283,1392970 +97149,234,1,9426,224 +97150,60,1,219233,1602585 +97151,286,3,338438,985182 +97152,413,11,5,2294 +97153,209,7,9543,1339460 +97154,317,10,58391,1261453 +97155,346,3,8467,1409283 +97156,387,10,356296,932534 +97157,317,10,63197,236592 +97158,3,5,4443,37304 +97159,387,10,27480,1185064 +97160,234,1,153163,33026 +97161,25,2,5881,46287 +97162,397,7,16249,143773 +97163,333,2,37308,117412 +97164,317,10,23096,95135 +97165,329,3,263115,1821946 +97166,3,5,16444,20136 +97167,167,3,72431,1484223 +97168,234,1,218425,1264975 +97169,179,2,11137,1432044 +97170,273,7,20439,1560271 +97171,360,9,11593,1347730 +97172,373,7,265208,1433021 +97173,5,10,393559,1615529 +97174,169,3,122081,1309888 +97175,53,2,50001,4350 +97176,105,7,373546,1526042 +97177,234,1,24792,93814 +97178,45,9,369406,1872425 +97179,413,11,1715,11625 +97180,105,7,45244,1605639 +97181,317,10,53419,21309 +97182,75,5,9297,1462704 +97183,317,10,143883,86861 +97184,182,8,384737,1519400 +97185,203,1,9426,1445989 +97186,333,2,156981,1293001 +97187,165,9,755,16493 +97188,3,5,13105,14536 +97189,234,1,250029,2305 +97190,203,1,79593,587969 +97191,387,10,209112,131680 +97192,317,10,73306,1029327 +97193,220,7,170936,30836 +97194,97,7,263115,1757637 +97195,53,2,29896,1518456 +97196,413,11,160324,11114 +97197,413,11,23128,37267 +97198,317,10,26798,14824 +97199,413,11,128089,1006471 +97200,234,1,47959,24657 +97201,234,1,1877,19707 +97202,3,5,10269,10639 +97203,328,6,241239,1395363 +97204,403,10,64882,240016 +97205,175,5,20438,1514679 +97206,197,5,384737,1825660 +97207,317,10,259894,139748 +97208,317,10,264729,79002 +97209,317,10,367006,1532479 +97210,273,7,43457,3249 +97211,189,3,2046,1455296 +97212,77,10,9690,49626 +97213,175,5,8292,1208908 +97214,204,9,43075,33020 +97215,413,11,29368,1398527 +97216,328,6,222935,1367826 +97217,60,1,39415,54358 +97218,77,10,15261,35741 +97219,383,3,24554,91774 +97220,148,9,82485,1323106 +97221,234,1,84185,1074666 +97222,317,10,30198,12180 +97223,148,9,5915,75391 +97224,317,10,83185,789544 +97225,200,3,10096,1408326 +97226,52,10,115712,1061941 +97227,365,6,44283,1447573 +97228,234,1,84848,56375 +97229,204,9,14615,9062 +97230,269,9,9841,20758 +97231,206,3,857,1905118 +97232,203,1,24150,1345635 +97233,289,6,9297,1462677 +97234,387,10,222461,62770 +97235,148,9,332794,1630948 +97236,387,10,924,15218 +97237,257,3,9593,208403 +97238,204,9,68737,6207 +97239,333,2,9914,119554 +97240,111,7,9836,1722224 +97241,234,1,69352,556110 +97242,160,3,17622,1417831 +97243,209,7,8470,1376276 +97244,234,1,46368,136153 +97245,182,8,53459,1437900 +97246,289,6,9514,1642469 +97247,148,9,130739,55282 +97248,413,11,47863,139540 +97249,317,10,19505,1484480 +97250,196,7,20439,1401287 +97251,221,3,8915,1337475 +97252,376,10,280045,543330 +97253,289,6,338189,1650738 +97254,333,2,9966,1099133 +97255,413,11,51311,6818 +97256,317,10,35428,86861 +97257,328,6,6972,1398100 +97258,179,2,10066,1465352 +97259,143,7,107073,1262017 +97260,234,1,312100,1376727 +97261,52,10,259292,27899 +97262,234,1,163706,87267 +97263,394,7,9819,17988 +97264,203,1,26390,1389601 +97265,3,5,62033,115544 +97266,204,9,9472,41592 +97267,3,5,310431,58818 +97268,127,3,22894,1215401 +97269,234,1,207178,120437 +97270,306,7,9882,1552201 +97271,273,7,142656,1487840 +97272,387,10,12606,73078 +97273,301,5,109439,82169 +97274,387,10,17606,36693 +97275,317,10,370178,1083156 +97276,413,11,11908,56989 +97277,288,3,634,1534114 +97278,196,7,10921,1402109 +97279,234,1,172828,1155518 +97280,273,7,19757,544515 +97281,3,5,3933,27486 +97282,413,11,16307,29668 +97283,5,10,61563,2235 +97284,317,10,11887,40254 +97285,387,10,124157,1108706 +97286,413,11,91333,1357334 +97287,234,1,2021,20773 +97288,256,3,74,1868858 +97289,53,2,313074,1335155 +97290,148,9,38322,1560275 +97291,204,9,15697,9060 +97292,381,9,10070,1440740 +97293,413,11,140814,1113456 +97294,360,9,7326,1401395 +97295,286,3,66193,971793 +97296,317,10,130717,2004 +97297,349,1,18937,1447500 +97298,53,2,8915,1023713 +97299,105,7,325712,1527435 +97300,234,1,59117,10847 +97301,317,10,16428,74063 +97302,234,1,171308,40184 +97303,234,1,263115,366 +97304,286,3,16076,79173 +97305,277,3,44363,1451407 +97306,413,11,621,8881 +97307,387,10,73043,81721 +97308,213,10,5552,44070 +97309,262,6,88273,1167831 +97310,98,3,118,1710270 +97311,387,10,152737,72638 +97312,286,3,300210,1355068 +97313,5,10,4147,35019 +97314,175,5,857,1389139 +97315,413,11,31347,65443 +97316,234,1,88042,58375 +97317,3,5,19957,10079 +97318,273,7,8840,14712 +97319,52,10,43372,12330 +97320,415,3,29345,1825843 +97321,413,11,203321,1333652 +97322,5,10,30583,3850 +97323,234,1,153795,40508 +97324,234,1,288980,1219769 +97325,317,10,107445,1041610 +97326,317,10,290864,1421219 +97327,317,10,127702,560264 +97328,143,7,199575,1402909 +97329,294,3,14430,1521662 +97330,277,3,286372,1378141 +97331,204,9,47310,13290 +97332,5,10,17622,1028847 +97333,413,11,52047,1115038 +97334,204,9,2577,20463 +97335,381,9,9902,1600549 +97336,234,1,273510,125544 +97337,3,5,10013,594 +97338,97,7,11045,1560124 +97339,387,10,33336,24389 +97340,387,10,12447,72249 +97341,324,3,14430,1521665 +97342,234,1,110381,235932 +97343,387,10,76312,69193 +97344,58,2,36245,32098 +97345,413,11,163870,1580506 +97346,412,9,11377,1587342 +97347,234,1,79120,586002 +97348,210,9,954,1416008 +97349,269,9,353616,961447 +97350,208,2,1294,16236 +97351,234,1,38460,82678 +97352,105,7,9528,57840 +97353,3,5,54523,66641 +97354,234,1,20842,12698 +97355,317,10,98302,33166 +97356,387,10,126712,33959 +97357,53,2,41604,1652104 +97358,175,5,378485,1742501 +97359,176,3,60599,1400487 +97360,117,5,177572,1452489 +97361,269,9,270774,551565 +97362,317,10,11247,68771 +97363,175,5,9532,1400407 +97364,234,1,138222,1108200 +97365,234,1,50875,21657 +97366,53,2,315664,15734 +97367,3,5,108017,227402 +97368,333,2,68822,1654209 +97369,317,10,133328,21600 +97370,127,3,10550,113194 +97371,387,10,211,10230 +97372,234,1,175035,145605 +97373,317,10,28325,31775 +97374,314,2,20648,1537107 +97375,275,9,378236,1461708 +97376,245,3,148284,89154 +97377,273,7,86049,2289 +97378,52,10,114719,941809 +97379,53,2,459,6248 +97380,413,11,403867,120478 +97381,249,7,251,1424127 +97382,269,9,10003,9990 +97383,53,2,43141,4350 +97384,373,7,69,113073 +97385,234,1,30312,112588 +97386,413,11,151043,5262 +97387,234,1,45562,999558 +97388,208,2,15321,1427823 +97389,52,10,8457,11505 +97390,269,9,41590,3286 +97391,360,3,8247,1364406 +97392,180,7,1902,1671663 +97393,234,1,1926,20023 +97394,317,10,321497,1125240 +97395,208,2,284052,1406584 +97396,234,1,70122,137842 +97397,333,2,169881,1519288 +97398,143,7,9882,1404215 +97399,413,11,165,1061 +97400,234,1,128637,217632 +97401,273,7,125257,1198465 +97402,387,10,94248,1267135 +97403,349,1,116711,1451274 +97404,234,1,13338,89849 +97405,53,2,196469,1538336 +97406,5,10,26405,1479441 +97407,148,9,18044,1460873 +97408,209,7,333663,1540890 +97409,234,1,28176,1776 +97410,75,5,49009,226464 +97411,234,1,40208,1187660 +97412,277,3,181454,1504167 +97413,234,1,26936,3317 +97414,166,9,109424,1334461 +97415,387,10,15050,1184213 +97416,187,11,146233,1406190 +97417,87,7,222935,1529990 +97418,84,7,12103,1420154 +97419,273,7,95504,30104 +97420,234,1,29717,932957 +97421,262,6,257088,1394755 +97422,64,6,51250,1721879 +97423,413,11,21950,62825 +97424,387,10,108391,176988 +97425,387,10,11361,1634294 +97426,204,9,815,15878 +97427,387,10,9475,4181 +97428,234,1,77338,84425 +97429,234,1,373838,1265105 +97430,413,11,77246,1351416 +97431,234,1,407965,1046012 +97432,234,1,36817,43222 +97433,20,2,10929,1575768 +97434,182,8,140607,1405198 +97435,53,2,91333,1002361 +97436,226,2,318781,1622820 +97437,317,10,62463,181945 +97438,3,5,251555,63975 +97439,317,10,97672,1048552 +97440,234,1,332746,1449665 +97441,208,2,22881,1459196 +97442,387,10,47955,323 +97443,217,3,949,1457709 +97444,74,5,8467,1893225 +97445,387,10,424014,1710006 +97446,269,9,76203,1023711 +97447,160,3,322922,702 +97448,234,1,234862,1270224 +97449,269,9,1966,20292 +97450,234,1,92381,183036 +97451,413,11,28437,106503 +97452,387,10,38982,121754 +97453,148,9,20432,1069713 +97454,234,1,54099,205298 +97455,273,7,55934,983343 +97456,113,9,1966,63601 +97457,333,2,219233,1602584 +97458,232,10,32558,89593 +97459,273,7,17796,51588 +97460,269,9,85414,102332 +97461,203,1,44754,1472449 +97462,325,5,76341,1518777 +97463,157,3,42329,416868 +97464,413,11,12763,60031 +97465,413,11,356500,1010744 +97466,234,1,254446,1290853 +97467,127,3,72105,1455506 +97468,317,10,42424,64828 +97469,328,6,9425,1566838 +97470,237,7,55433,222365 +97471,53,2,1690,16492 +97472,111,7,159667,1849509 +97473,234,1,80592,88718 +97474,234,1,105981,14855 +97475,53,2,6963,4034 +97476,234,1,72642,1000753 +97477,413,11,9260,57050 +97478,226,2,70667,1448307 +97479,53,2,15616,1398176 +97480,317,10,287281,1353906 +97481,273,7,12606,56889 +97482,360,3,74,1546854 +97483,208,2,122081,1319384 +97484,3,5,76397,9213 +97485,204,9,127372,132596 +97486,52,10,41857,123014 +97487,3,5,46623,10005 +97488,413,11,49110,1280313 +97489,60,1,43379,1567999 +97490,105,7,450530,139904 +97491,53,2,384737,1825657 +97492,273,7,55420,930989 +97493,387,10,9066,35163 +97494,143,7,7014,49504 +97495,74,5,8470,1840072 +97496,75,5,263472,1477027 +97497,328,6,354287,1781645 +97498,203,1,9902,1387523 +97499,234,1,22213,3349 +97500,113,9,9529,1408282 +97501,180,7,47238,1599039 +97502,289,6,7459,1463785 +97503,3,5,5967,19086 +97504,387,10,47212,59113 +97505,235,5,9946,1432023 +97506,148,9,338676,1466011 +97507,269,9,25037,27937 +97508,317,10,11205,1539859 +97509,75,5,339403,1177364 +97510,236,8,11377,550828 +97511,304,10,44155,1161622 +97512,281,6,395992,1770979 +97513,333,2,45273,1404808 +97514,317,10,382598,1067317 +97515,53,2,45522,10474 +97516,317,10,15712,109889 +97517,60,1,5915,75708 +97518,373,7,75162,1411245 +97519,317,10,72199,565299 +97520,204,9,59838,7127 +97521,366,3,10837,56147 +97522,148,9,334527,1209872 +97523,413,11,12432,993849 +97524,179,2,9541,1333088 +97525,291,6,22279,1597380 +97526,373,7,72465,1300822 +97527,148,9,228970,1020060 +97528,286,3,58013,1525823 +97529,52,10,140883,230027 +97530,269,9,54111,1769722 +97531,234,1,65650,111699 +97532,317,10,71689,104644 +97533,328,6,1579,1153846 +97534,387,10,82662,132257 +97535,53,2,14811,958171 +97536,175,5,168027,1452340 +97537,204,9,238,81519 +97538,387,10,11959,71041 +97539,234,1,42684,6037 +97540,387,10,31867,114407 +97541,204,9,3309,32999 +97542,53,2,60935,55613 +97543,273,7,30374,33779 +97544,52,10,109451,107446 +97545,52,10,40952,13663 +97546,387,10,47795,150569 +97547,413,11,20123,67912 +97548,317,10,94336,2332 +97549,317,10,51212,11201 +97550,289,6,149870,1236309 +97551,317,10,27671,98631 +97552,387,10,127585,11092 +97553,317,10,310567,1398226 +97554,387,10,27966,96696 +97555,317,10,70192,109852 +97556,234,1,19338,15663 +97557,234,1,68822,103393 +97558,32,8,896,1168086 +97559,387,10,329805,74117 +97560,53,2,29365,12145 +97561,7,3,5,1877361 +97562,234,1,103751,108847 +97563,105,7,48617,46436 +97564,209,7,298584,1619731 +97565,148,9,112961,1523408 +97566,387,10,6391,55045 +97567,73,7,414977,227110 +97568,105,7,182131,73191 +97569,317,10,94568,109704 +97570,234,1,11680,11187 +97571,314,2,773,1532250 +97572,209,7,103432,1555024 +97573,269,9,17971,12869 +97574,234,1,14555,77005 +97575,58,2,11577,1433316 +97576,108,10,72611,47120 +97577,234,1,68139,73289 +97578,5,10,4266,35876 +97579,413,11,9828,276 +97580,105,7,146521,1772144 +97581,108,10,183171,103736 +97582,53,2,1578,81533 +97583,53,2,102629,935301 +97584,413,11,9812,15807 +97585,394,7,70074,1399632 +97586,387,10,162282,225160 +97587,234,1,11960,71063 +97588,234,1,73969,143561 +97589,234,1,72474,78053 +97590,160,3,351211,141787 +97591,204,9,26809,137200 +97592,3,5,36612,14569 +97593,97,7,354287,1338971 +97594,333,2,3104,38060 +97595,317,10,71689,1227585 +97596,273,7,58903,1087519 +97597,387,10,55347,17439 +97598,387,10,201749,18903 +97599,229,6,257088,1428904 +97600,413,11,267935,493 +97601,286,3,277631,6570 +97602,387,10,238,3083 +97603,289,6,3933,1448063 +97604,239,5,313922,1616457 +97605,234,1,68987,554929 +97606,179,2,277355,1413854 +97607,234,1,399612,19841 +97608,234,1,210609,40402 +97609,105,7,288952,1389073 +97610,3,5,9423,28240 +97611,197,5,263115,1757626 +97612,75,5,284564,1417879 +97613,239,5,356296,1643803 +97614,75,5,127372,132641 +97615,317,10,93116,186476 +97616,75,5,10491,1429635 +97617,291,6,49521,1368867 +97618,314,2,24810,1818106 +97619,413,11,13853,10548 +97620,52,10,312669,1867185 +97621,234,1,21948,38689 +97622,291,6,27259,1624497 +97623,209,7,10145,1392145 +97624,373,7,117120,1532923 +97625,317,10,76600,6039 +97626,132,2,339403,1428582 +97627,3,5,23096,67898 +97628,413,11,4641,38698 +97629,413,11,75778,1357872 +97630,148,9,140470,33250 +97631,234,1,115810,37526 +97632,415,3,13549,1342072 +97633,413,11,423377,77783 +97634,3,5,11887,71277 +97635,293,2,58244,1618804 +97636,203,1,10391,1345635 +97637,328,6,14,1413100 +97638,234,1,281289,138653 +97639,204,9,193177,12346 +97640,289,6,9514,1642592 +97641,287,3,127521,1542744 +97642,53,2,65599,61502 +97643,403,10,31042,118299 +97644,234,1,77794,6778 +97645,232,10,42139,931317 +97646,317,10,15414,1339342 +97647,234,1,42515,13594 +97648,289,6,328111,1479532 +97649,105,7,220820,1332520 +97650,127,3,289198,1663359 +97651,387,10,45489,554493 +97652,3,5,14539,57913 +97653,317,10,137683,1079598 +97654,286,3,52475,5865 +97655,234,1,73952,206549 +97656,45,9,6977,1223192 +97657,317,10,82080,126971 +97658,3,5,3782,34380 +97659,413,11,5491,43610 +97660,234,1,128598,63937 +97661,234,1,321497,1125240 +97662,5,10,24936,109703 +97663,413,11,54384,150511 +97664,234,1,317,4634 +97665,182,8,294652,1722223 +97666,204,9,218778,1192526 +97667,273,7,14753,11382 +97668,317,10,48836,133281 +97669,53,2,270400,1267835 +97670,269,9,81541,1124513 +97671,234,1,257537,1086269 +97672,413,11,109391,4234 +97673,317,10,269518,133090 +97674,317,10,208869,63052 +97675,273,7,9354,1729 +97676,155,3,140607,11092 +97677,346,3,8470,1428511 +97678,127,3,24619,24529 +97679,413,11,12575,1871 +97680,234,1,48243,43553 +97681,381,9,36797,1393558 +97682,182,8,236324,1896201 +97683,399,9,13205,1815493 +97684,3,5,35001,14431 +97685,413,11,36758,10762 +97686,413,11,81182,1529261 +97687,75,5,334527,1548095 +97688,105,7,73896,30130 +97689,160,3,2107,1425491 +97690,289,6,9514,1642523 +97691,273,7,40719,3375 +97692,5,10,19823,3027 +97693,148,9,35052,1368852 +97694,234,1,69727,553881 +97695,196,7,9835,1551708 +97696,53,2,312221,135731 +97697,203,1,109424,1357600 +97698,234,1,53354,1374747 +97699,245,3,38099,62410 +97700,20,2,4806,46785 +97701,53,2,266285,19692 +97702,209,7,341174,1544639 +97703,234,1,171432,1153824 +97704,416,10,27637,66893 +97705,413,11,64304,43913 +97706,209,7,10950,1390536 +97707,317,10,44552,1081837 +97708,394,7,45244,19621 +97709,273,7,19754,52953 +97710,234,1,38579,46076 +97711,317,10,188640,1770592 +97712,399,9,17009,1447431 +97713,143,7,209112,113075 +97714,387,10,31671,1242310 +97715,97,7,10632,1227173 +97716,187,11,325263,1636524 +97717,412,9,755,1851726 +97718,289,6,98566,1459754 +97719,53,2,260001,1324192 +97720,234,1,35118,24970 +97721,209,7,274479,1397736 +97722,3,5,11830,70631 +97723,53,2,11950,119767 +97724,413,11,33273,71927 +97725,179,2,168027,1452342 +97726,360,3,16996,147361 +97727,301,5,283384,1429322 +97728,234,1,106851,1228986 +97729,328,6,755,1400564 +97730,413,11,147773,33685 +97731,204,9,107146,18986 +97732,204,9,22752,57334 +97733,287,3,20481,30081 +97734,292,3,341174,582535 +97735,232,10,50329,150185 +97736,148,9,69605,12349 +97737,234,1,5967,24882 +97738,204,9,27085,10183 +97739,262,6,1966,1398102 +97740,53,2,13493,62643 +97741,119,7,6947,1548698 +97742,333,2,334527,1579395 +97743,113,9,2666,1392670 +97744,286,3,42537,1534111 +97745,143,7,393445,85058 +97746,273,7,16638,7647 +97747,148,9,302528,1452698 +97748,53,2,256962,1423983 +97749,269,9,5922,35499 +97750,169,3,214756,1459723 +97751,413,11,106747,72030 +97752,200,3,98566,1456701 +97753,234,1,327749,81727 +97754,273,7,43522,30268 +97755,413,11,284537,32796 +97756,262,6,22076,1398184 +97757,394,7,11045,548444 +97758,53,2,323435,1571051 +97759,169,3,9457,1421721 +97760,413,11,378018,1572876 +97761,317,10,84318,1084962 +97762,269,9,32029,7512 +97763,413,11,11886,57338 +97764,53,2,4133,40471 +97765,5,10,52867,60986 +97766,3,5,511,1143 +97767,175,5,11832,1723387 +97768,387,10,11626,3850 +97769,263,11,25430,1125247 +97770,301,5,157354,1535120 +97771,234,1,86321,932971 +97772,234,1,201124,1182829 +97773,262,6,84336,1394029 +97774,292,3,664,1892496 +97775,182,8,47536,1712266 +97776,234,1,200511,1181360 +97777,3,5,99861,22161 +97778,204,9,42669,17763 +97779,328,6,241239,1468573 +97780,413,11,12637,1047 +97781,269,9,20047,1545177 +97782,208,2,9877,1317044 +97783,387,10,109001,76813 +97784,105,7,34496,1320560 +97785,169,3,59961,1053407 +97786,3,5,112885,12307 +97787,269,9,1647,19872 +97788,303,3,168259,57158 +97789,234,1,5393,142587 +97790,413,11,36519,14679 +97791,177,6,10320,1821193 +97792,387,10,11534,69759 +97793,317,10,75203,396903 +97794,289,6,81003,1454249 +97795,273,7,13496,894 +97796,52,10,19403,84657 +97797,357,3,10145,1424174 +97798,373,7,11812,1341138 +97799,234,1,453053,115322 +97800,234,1,24936,101446 +97801,234,1,76651,25161 +97802,289,6,106112,225713 +97803,387,10,11380,46442 +97804,387,10,52943,103511 +97805,387,10,90616,116271 +97806,387,10,46931,1261782 +97807,394,7,69,1416153 +97808,273,7,116236,1259 +97809,234,1,48594,145701 +97810,317,10,87826,179515 +97811,387,10,68882,227311 +97812,234,1,146270,85456 +97813,104,7,141,113837 +97814,413,11,56800,1019436 +97815,394,7,2503,14765 +97816,186,6,269149,1461997 +97817,182,8,2503,1406841 +97818,317,10,1694,27991 +97819,3,5,1125,15559 +97820,277,7,340101,53529 +97821,234,1,360249,22558 +97822,234,1,18990,29662 +97823,75,5,76170,1405238 +97824,204,9,102362,16494 +97825,413,11,220488,978686 +97826,3,5,246355,209918 +97827,3,5,4986,40392 +97828,234,1,60965,232032 +97829,105,7,37645,122 +97830,387,10,46436,56742 +97831,3,5,160160,1158764 +97832,60,1,351365,1891554 +97833,234,1,191502,1174066 +97834,413,11,125513,67935 +97835,269,9,921,548 +97836,413,11,27507,98015 +97837,234,1,199647,1179822 +97838,104,7,2300,1664278 +97839,5,10,3423,32316 +97840,3,5,287281,1353909 +97841,262,6,10727,1533794 +97842,333,2,2989,14653 +97843,180,7,26283,10155 +97844,3,5,193878,10537 +97845,273,7,10268,64533 +97846,325,5,10491,1429639 +97847,360,3,198663,1367491 +97848,64,6,9297,1455459 +97849,209,7,70981,1049333 +97850,97,7,9296,1341404 +97851,269,9,5638,81519 +97852,46,5,116463,1691484 +97853,413,11,13105,1118130 +97854,45,9,8915,1399490 +97855,317,10,295884,99388 +97856,3,5,352164,1611041 +97857,87,7,239566,52453 +97858,226,2,314065,1459851 +97859,257,3,163,1727307 +97860,179,2,219466,1640821 +97861,53,2,58166,1080 +97862,127,3,345922,1702414 +97863,234,1,4551,37932 +97864,175,5,22881,1378173 +97865,234,1,16876,43468 +97866,317,10,13480,17835 +97867,5,10,5998,47086 +97868,413,11,11017,67810 +97869,301,5,14126,1399565 +97870,273,7,329010,1298750 +97871,273,7,83732,234274 +97872,273,7,120942,227205 +97873,226,2,3087,1100324 +97874,160,3,1624,1400372 +97875,234,1,12103,5501 +97876,411,9,14869,14341 +97877,143,7,274479,80824 +97878,53,2,203819,1326326 +97879,203,1,32552,1759234 +97880,394,7,337339,15332 +97881,273,7,44902,97450 +97882,289,6,53217,100890 +97883,105,7,14977,1316790 +97884,232,10,63681,289518 +97885,13,1,2898,1302620 +97886,190,7,45562,999562 +97887,387,10,59424,127920 +97888,317,10,52991,70496 +97889,87,7,10796,21933 +97890,92,7,20174,85770 +97891,413,11,12601,73066 +97892,176,3,124470,1399112 +97893,228,2,379019,1780181 +97894,3,5,103597,1149308 +97895,22,9,186869,1757629 +97896,289,6,9514,1642584 +97897,250,11,298584,1404196 +97898,203,1,287,1400738 +97899,97,7,24624,1393300 +97900,373,7,3172,1327030 +97901,52,10,46972,57065 +97902,327,7,11812,1341405 +97903,387,10,17496,14838 +97904,234,1,38874,127823 +97905,210,9,9475,1800193 +97906,273,7,10691,2214 +97907,413,11,196359,1918 +97908,175,5,297762,1181554 +97909,105,7,10663,70554 +97910,45,9,274479,1608760 +97911,20,2,69,1279912 +97912,148,9,24810,1458192 +97913,394,7,9982,1400558 +97914,413,11,15081,120928 +97915,411,9,1125,15572 +97916,360,3,8292,1423209 +97917,303,3,16374,1470208 +97918,155,3,1578,9850 +97919,413,11,23857,227238 +97920,103,6,337339,1907217 +97921,317,10,409502,1661274 +97922,204,9,921,14913 +97923,398,9,10396,1534933 +97924,413,11,94874,1289028 +97925,182,8,116463,1427417 +97926,317,10,158947,1183912 +97927,387,10,181533,539 +97928,287,3,246403,1015060 +97929,12,10,98566,19502 +97930,175,5,59197,582732 +97931,60,1,46145,178267 +97932,3,5,202241,6345 +97933,105,7,415358,123314 +97934,273,7,131478,1079263 +97935,262,6,435,1392091 +97936,357,3,274857,1829972 +97937,269,9,16320,10820 +97938,53,2,68721,4061 +97939,333,2,46982,1537637 +97940,245,3,634,1576012 +97941,53,2,65545,1489396 +97942,373,7,11547,3119 +97943,52,10,397365,1653486 +97944,328,6,284564,1074793 +97945,77,10,16076,79169 +97946,181,7,3780,1529560 +97947,5,10,67748,1172512 +97948,286,3,166666,3769 +97949,190,7,8292,1676165 +97950,20,2,58060,1574119 +97951,3,5,11915,32319 +97952,413,11,211059,1331828 +97953,234,1,53358,71280 +97954,234,1,337789,76381 +97955,33,10,33613,1731243 +97956,387,10,10992,56412 +97957,60,1,539,1185253 +97958,328,6,72431,1484200 +97959,204,9,55534,1318880 +97960,25,2,245168,1422795 +97961,269,9,9032,20824 +97962,182,8,102428,1385150 +97963,413,11,36094,2588 +97964,61,7,2675,1447602 +97965,413,11,295723,1070382 +97966,3,5,159185,64996 +97967,377,3,2105,1552177 +97968,317,10,360592,1512110 +97969,387,10,79853,588124 +97970,77,10,11553,69831 +97971,160,3,9819,142159 +97972,306,7,356752,1841575 +97973,273,7,25142,20230 +97974,148,9,63773,117405 +97975,234,1,9470,57607 +97976,244,3,92496,1795212 +97977,105,7,27917,14930 +97978,179,2,245891,1513207 +97979,3,5,77338,50517 +97980,147,1,29161,1760097 +97981,3,5,46069,1540596 +97982,75,5,246655,1394756 +97983,304,10,148284,91552 +97984,234,1,254918,936014 +97985,273,7,77794,14930 +97986,398,9,76163,1368858 +97987,3,5,45627,30970 +97988,21,3,41298,1642100 +97989,204,9,294272,67115 +97990,75,5,37534,1438584 +97991,273,7,31977,6026 +97992,5,10,57103,978481 +97993,273,7,66526,5288 +97994,269,9,223946,1155077 +97995,143,7,210913,1201948 +97996,413,11,300,4280 +97997,204,9,45244,32840 +97998,373,7,12,1425978 +97999,317,10,12811,144810 +98000,3,5,66812,1678839 +98001,273,7,14750,29707 +98002,387,10,118948,120729 +98003,234,1,54354,213449 +98004,53,2,320011,1383563 +98005,273,7,32595,1195781 +98006,234,1,405388,89712 +98007,234,1,43419,37360 +98008,202,7,46387,1113618 +98009,298,5,324670,1400092 +98010,317,10,58081,224520 +98011,269,9,274483,1367027 +98012,317,10,82080,56742 +98013,11,6,81310,63646 +98014,289,6,12230,69003 +98015,53,2,183412,1419622 +98016,273,7,227262,708 +98017,203,1,324670,1544655 +98018,175,5,222935,1393568 +98019,3,5,6877,51333 +98020,3,5,94568,52759 +98021,317,10,27886,1039408 +98022,415,3,24657,1640414 +98023,75,5,33586,1814970 +98024,234,1,357130,30008 +98025,306,7,264525,1857574 +98026,234,1,14476,76946 +98027,317,10,319396,1430300 +98028,53,2,17467,554129 +98029,239,5,315664,1458448 +98030,387,10,2071,5231 +98031,3,5,15725,110529 +98032,317,10,16137,79541 +98033,317,10,99567,9855 +98034,3,5,1877,19710 +98035,269,9,12113,944 +98036,75,5,16432,1418511 +98037,226,2,117,1453173 +98038,52,10,280617,1035398 +98039,204,9,67375,8507 +98040,387,10,317214,1196004 +98041,413,11,58985,57642 +98042,175,5,961,1457398 +98043,204,9,98364,9798 +98044,387,10,43158,37915 +98045,234,1,15734,82800 +98046,387,10,8870,20757 +98047,43,2,62046,1393582 +98048,273,7,788,117 +98049,53,2,383618,1371204 +98050,234,1,12121,24318 +98051,175,5,15019,1394724 +98052,234,1,200311,544818 +98053,394,7,244316,1399918 +98054,373,7,12103,16177 +98055,333,2,37628,1714703 +98056,75,5,436,1624042 +98057,53,2,43195,9738 +98058,203,1,123109,1344843 +98059,234,1,50295,100645 +98060,273,7,46883,983343 +98061,317,10,248747,1287203 +98062,105,7,11917,2148 +98063,262,6,266433,1412178 +98064,234,1,77292,25598 +98065,262,6,15613,1377130 +98066,413,11,108048,1345408 +98067,198,6,100669,1632798 +98068,317,10,151937,130319 +98069,204,9,2966,29085 +98070,413,11,257088,1318882 +98071,327,7,10395,1341403 +98072,190,7,369406,1682261 +98073,3,5,146243,1327834 +98074,169,3,76203,1336718 +98075,1,7,75,533 +98076,105,7,431093,1305822 +98077,273,7,55420,1298750 +98078,328,6,6972,40765 +98079,53,2,127424,1360798 +98080,234,1,369776,61985 +98081,12,10,346672,3950 +98082,179,2,72431,1484220 +98083,204,9,118,1050634 +98084,327,7,1690,1564778 +98085,387,10,1164,273 +98086,328,6,243935,1414936 +98087,234,1,36063,1134541 +98088,317,10,361018,1513531 +98089,269,9,81409,1082654 +98090,204,9,351211,1437124 +98091,317,10,295581,1377017 +98092,204,9,332354,588979 +98093,394,7,328111,11174 +98094,317,10,87293,577811 +98095,387,10,11521,2199 +98096,3,5,413762,1036353 +98097,75,5,28452,234819 +98098,317,10,403431,1640647 +98099,360,3,240832,1367810 +98100,234,1,98541,94728 +98101,387,10,126889,932 +98102,3,5,10238,11905 +98103,387,10,90461,30011 +98104,333,2,3164,30974 +98105,52,10,14047,1392613 +98106,53,2,10440,6348 +98107,234,1,354296,1496450 +98108,234,1,102384,2000 +98109,234,1,18440,105976 +98110,83,2,296523,1780481 +98111,5,10,51349,51414 +98112,387,10,46992,26190 +98113,413,11,36737,1331892 +98114,317,10,101852,80207 +98115,234,1,24163,12453 +98116,234,1,191476,55934 +98117,239,5,176,1394414 +98118,182,8,12783,1394103 +98119,287,3,56937,76929 +98120,3,5,84772,103020 +98121,53,2,279690,1630964 +98122,317,10,53524,1299 +98123,234,1,256311,139162 +98124,394,7,181533,1340345 +98125,7,3,329865,1380391 +98126,234,1,94551,93904 +98127,105,7,273578,1330510 +98128,204,9,11618,10753 +98129,60,1,53860,1529435 +98130,317,10,61908,84940 +98131,111,7,10727,1463388 +98132,204,9,81182,1530233 +98133,5,10,24918,94371 +98134,234,1,146926,63937 +98135,203,1,419459,1729053 +98136,301,5,55534,1409711 +98137,381,9,12113,1405379 +98138,148,9,10691,19466 +98139,317,10,17144,101788 +98140,273,7,59935,1894780 +98141,286,3,43978,20033 +98142,234,1,38901,91046 +98143,234,1,174611,1004922 +98144,273,7,19142,98138 +98145,327,7,13336,54178 +98146,196,7,9472,1408301 +98147,203,1,46931,1595991 +98148,72,11,10491,1422853 +98149,413,11,44732,1352597 +98150,349,1,35,1447511 +98151,148,9,525,1261 +98152,317,10,82696,176489 +98153,273,7,660,9864 +98154,10,3,8916,1586922 +98155,158,2,69,1319158 +98156,273,7,35200,52025 +98157,317,10,252034,1288790 +98158,317,10,283686,94222 +98159,234,1,102629,995407 +98160,52,10,26326,4600 +98161,234,1,60759,43792 +98162,3,5,42494,1426134 +98163,327,7,16131,1419812 +98164,234,1,15016,45916 +98165,381,9,6557,1393558 +98166,5,10,210940,1245339 +98167,203,1,11056,1153233 +98168,5,10,338676,1493524 +98169,105,7,25385,14861 +98170,234,1,13391,70103 +98171,317,10,18035,1035188 +98172,273,7,13092,6489 +98173,122,8,337339,1547758 +98174,250,11,302528,1407714 +98175,273,7,66113,63969 +98176,53,2,326285,1493522 +98177,413,11,36657,11001 +98178,53,2,32274,19310 +98179,234,1,305147,1387593 +98180,387,10,43646,129741 +98181,286,3,14705,1660020 +98182,53,2,156981,1575336 +98183,373,7,102629,1394340 +98184,3,5,169760,148739 +98185,387,10,206277,1013009 +98186,387,10,11706,25798 +98187,234,1,954,1150 +98188,387,10,70586,558922 +98189,317,10,98302,553897 +98190,188,8,227975,1775641 +98191,57,2,189,1401126 +98192,413,11,9703,59983 +98193,234,1,298787,1037775 +98194,25,2,25241,16178 +98195,204,9,227973,1466446 +98196,180,7,91181,1342519 +98197,413,11,131475,995558 +98198,175,5,140554,1707852 +98199,204,9,42430,1618410 +98200,317,10,325189,192263 +98201,3,5,524,149 +98202,204,9,108222,8506 +98203,292,3,9882,1774552 +98204,317,10,25913,142532 +98205,331,3,28000,1645291 +98206,269,9,410118,1779184 +98207,387,10,21145,71929 +98208,317,10,339408,77277 +98209,317,10,37038,90371 +98210,204,9,19176,1419416 +98211,113,9,274479,1608761 +98212,387,10,295723,1418263 +98213,3,5,11677,36597 +98214,269,9,445993,1652772 +98215,87,7,49013,1291315 +98216,148,9,4413,4437 +98217,148,9,345922,1378195 +98218,317,10,84354,1161645 +98219,198,6,245168,1565661 +98220,234,1,102256,1343380 +98221,413,11,36373,13781 +98222,304,10,34106,1183417 +98223,234,1,12697,57323 +98224,317,10,188826,1170252 +98225,234,1,106016,5834 +98226,77,10,18381,227597 +98227,52,10,117550,1148723 +98228,196,7,360249,1635739 +98229,317,10,173494,19582 +98230,234,1,35284,64114 +98231,192,5,70074,1398972 +98232,226,2,18642,50580 +98233,287,3,16342,1037760 +98234,160,3,403605,1571480 +98235,234,1,51144,48566 +98236,234,1,9087,3026 +98237,314,2,107250,1834274 +98238,373,7,13056,1368866 +98239,187,11,375012,1405693 +98240,413,11,34806,1217 +98241,273,7,61988,14356 +98242,203,1,4516,1276868 +98243,292,3,9946,1688600 +98244,236,8,954,1886665 +98245,413,11,14134,9897 +98246,234,1,125705,203953 +98247,108,10,198600,144060 +98248,204,9,10549,29858 +98249,83,2,266856,26196 +98250,249,7,634,1576032 +98251,287,3,117120,1437959 +98252,75,5,116463,1410107 +98253,269,9,10829,1188583 +98254,302,9,333663,1709186 +98255,3,5,269306,34783 +98256,360,3,59197,1403324 +98257,415,3,9297,93258 +98258,317,10,112708,1173667 +98259,52,10,35926,55700 +98260,317,10,54845,61929 +98261,413,11,10326,10395 +98262,203,1,544,1367508 +98263,234,1,11449,13859 +98264,87,7,280092,1547763 +98265,234,1,14819,32593 +98266,269,9,75761,305663 +98267,317,10,24397,1385919 +98268,234,1,10351,11419 +98269,234,1,64190,1142405 +98270,204,9,1574,17636 +98271,53,2,339527,21004 +98272,45,9,3172,1423747 +98273,3,5,302026,1166608 +98274,273,7,76202,5628 +98275,387,10,146521,47947 +98276,373,7,24624,454855 +98277,317,10,2771,72206 +98278,234,1,11404,35005 +98279,209,7,109424,1400088 +98280,3,5,173205,225120 +98281,331,3,227306,1866293 +98282,387,10,112304,1070872 +98283,387,10,17168,81374 +98284,273,7,10909,1225 +98285,5,10,28484,80728 +98286,244,3,50126,1512852 +98287,269,9,277710,1330609 +98288,317,10,3059,11436 +98289,226,2,220,1530890 +98290,105,7,352327,57874 +98291,235,5,1579,1391130 +98292,3,5,42204,9213 +98293,52,10,178809,1204186 +98294,198,6,395992,1770983 +98295,403,10,109477,1873430 +98296,3,5,172785,997631 +98297,289,6,88018,123192 +98298,3,5,343140,25240 +98299,269,9,2805,552422 +98300,40,1,37534,1825167 +98301,53,2,157351,1090303 +98302,232,10,35284,138764 +98303,15,6,9593,1672567 +98304,179,2,419430,1475631 +98305,200,3,14,1585196 +98306,34,8,9472,1418403 +98307,49,7,55420,1553974 +98308,340,2,293167,1439111 +98309,273,7,58903,1087518 +98310,413,11,59981,56270 +98311,273,7,9070,5912 +98312,387,10,43434,56204 +98313,387,10,61541,132255 +98314,196,7,1950,1392081 +98315,234,1,76,564 +98316,234,1,18977,101225 +98317,269,9,9904,60222 +98318,387,10,1924,6728 +98319,148,9,407559,1418417 +98320,169,3,58060,1630071 +98321,387,10,11354,24173 +98322,87,7,298584,1619732 +98323,317,10,74661,9933 +98324,373,7,255343,24006 +98325,286,3,171308,558444 +98326,234,1,2565,26095 +98327,234,1,37502,588066 +98328,204,9,284296,1341400 +98329,234,1,171337,55916 +98330,204,9,41035,1475773 +98331,234,1,87311,83996 +98332,317,10,49954,143080 +98333,148,9,2565,4032 +98334,3,5,43277,127523 +98335,234,1,301491,1120003 +98336,208,2,283384,1320551 +98337,203,1,195269,1393423 +98338,413,11,253286,1293654 +98339,166,9,2662,1603301 +98340,64,6,10865,1447576 +98341,387,10,38964,30040 +98342,148,9,393445,1705465 +98343,413,11,57749,1411216 +98344,5,10,27138,1185443 +98345,413,11,159138,543385 +98346,289,6,127380,1455510 +98347,5,10,169881,1152061 +98348,413,11,70057,1069648 +98349,25,2,9905,1427823 +98350,203,1,42345,1344817 +98351,268,7,257088,93844 +98352,3,5,104211,137885 +98353,387,10,7299,13927 +98354,387,10,1369,16483 +98355,226,2,9286,223994 +98356,148,9,83666,1023712 +98357,3,5,208436,1433963 +98358,317,10,22317,57147 +98359,317,10,168552,1150431 +98360,250,11,329440,1445854 +98361,234,1,57351,225967 +98362,105,7,22779,64868 +98363,209,7,4982,1049333 +98364,5,10,67748,1172513 +98365,317,10,100063,69890 +98366,53,2,11639,961211 +98367,5,10,57419,1601699 +98368,373,7,49940,1545306 +98369,333,2,10145,1415333 +98370,176,3,10724,1442565 +98371,234,1,47682,95489 +98372,148,9,15749,1325689 +98373,182,8,26983,1705507 +98374,262,6,398289,1053823 +98375,97,7,9504,1530322 +98376,143,7,7210,11607 +98377,200,3,6972,1401723 +98378,160,3,10330,1404697 +98379,413,11,212756,1042439 +98380,204,9,18133,32279 +98381,97,7,11880,40823 +98382,317,10,310135,585934 +98383,182,8,2662,1392107 +98384,76,2,6947,1332186 +98385,333,2,266433,1415896 +98386,127,3,289,161961 +98387,398,9,9358,1441289 +98388,273,7,42571,966818 +98389,373,7,11056,1400474 +98390,53,2,426253,1174098 +98391,127,3,26761,1529476 +98392,306,7,301334,7658 +98393,64,6,17136,3252 +98394,234,1,197175,2725 +98395,234,1,99312,170115 +98396,413,11,9539,8317 +98397,148,9,18,8383 +98398,387,10,38808,19408 +98399,387,10,66175,109720 +98400,387,10,14878,26849 +98401,269,9,56937,1398242 +98402,234,1,292830,85387 +98403,387,10,93492,101108 +98404,413,11,61400,131859 +98405,5,10,22267,115563 +98406,179,2,57419,1601705 +98407,387,10,31773,149104 +98408,333,2,1690,1360875 +98409,234,1,359204,1064994 +98410,413,11,924,971 +98411,390,6,13205,1779873 +98412,204,9,374475,1337633 +98413,127,3,1976,1529476 +98414,234,1,63831,45138 +98415,5,10,65089,103736 +98416,5,10,196789,138233 +98417,147,1,384737,1825451 +98418,204,9,45205,132516 +98419,179,2,8247,1701156 +98420,413,11,408203,1426710 +98421,387,10,11572,69942 +98422,286,3,60935,55774 +98423,317,10,285803,1264504 +98424,105,7,127521,101022 +98425,179,2,9914,1094628 +98426,269,9,173499,1158429 +98427,40,1,11547,1677647 +98428,289,6,132714,226599 +98429,234,1,209112,15217 +98430,180,7,29829,1606760 +98431,189,3,12594,81694 +98432,234,1,9541,19303 +98433,413,11,103938,13350 +98434,234,1,53767,125354 +98435,185,11,10727,1741631 +98436,234,1,43923,53068 +98437,234,1,405670,1349251 +98438,11,6,9325,138170 +98439,413,11,47324,1620541 +98440,148,9,337339,75391 +98441,234,1,9461,57727 +98442,328,6,10529,1567329 +98443,269,9,285858,1456315 +98444,413,11,28071,37503 +98445,204,9,284053,1391707 +98446,60,1,41076,1866805 +98447,53,2,17136,1542617 +98448,289,6,98566,1459756 +98449,75,5,11832,72917 +98450,234,1,39356,55934 +98451,273,7,167073,19016 +98452,387,10,60665,66211 +98453,234,1,16687,1184084 +98454,204,9,1995,1556432 +98455,234,1,11403,70301 +98456,234,1,4257,12987 +98457,269,9,62394,957258 +98458,387,10,200505,1274506 +98459,200,3,76757,1461629 +98460,53,2,13681,5493 +98461,3,5,425591,1458711 +98462,273,7,110412,29056 +98463,3,5,21159,91793 +98464,317,10,84636,40 +98465,204,9,23599,2243 +98466,234,1,17241,67632 +98467,234,1,227325,85203 +98468,269,9,314011,1319740 +98469,179,2,42045,23353 +98470,226,2,1278,589494 +98471,269,9,38006,30139 +98472,234,1,42640,8823 +98473,269,9,220488,968332 +98474,234,1,9016,15811 +98475,317,10,298165,1375350 +98476,234,1,140883,84956 +98477,273,7,97614,7229 +98478,273,7,339408,227440 +98479,273,7,14295,39827 +98480,387,10,10626,26436 +98481,413,11,72105,11876 +98482,317,10,299165,102095 +98483,234,1,173456,8500 +98484,60,1,34106,1348081 +98485,175,5,4011,1398856 +98486,234,1,52437,21311 +98487,209,7,15019,1555681 +98488,413,11,244786,1156888 +98489,105,7,315855,1409538 +98490,287,3,117120,1437962 +98491,317,10,124625,105793 +98492,317,10,30143,554360 +98493,204,9,115565,960531 +98494,234,1,241254,1024823 +98495,413,11,73984,1130042 +98496,317,10,34598,99880 +98497,289,6,311324,1461150 +98498,97,7,15613,1170025 +98499,387,10,144792,70045 +98500,317,10,291270,202 +98501,387,10,10395,37426 +98502,413,11,46885,31177 +98503,394,7,8053,1339071 +98504,204,9,30054,5187 +98505,105,7,292062,72739 +98506,399,9,54491,1447432 +98507,45,9,6973,1452618 +98508,273,7,16307,1058728 +98509,196,7,966,1551974 +98510,368,7,2321,142166 +98511,141,7,339530,1543830 +98512,317,10,47535,113271 +98513,234,1,6933,51445 +98514,226,2,8870,1418265 +98515,360,3,2046,17222 +98516,75,5,397837,57968 +98517,317,10,58529,227936 +98518,52,10,338767,1455997 +98519,234,1,48210,10316 +98520,317,10,184155,1614409 +98521,387,10,32235,41887 +98522,413,11,17332,36590 +98523,413,11,4111,1182098 +98524,105,7,4547,117 +98525,413,11,139159,1038970 +98526,97,7,294254,1338372 +98527,3,5,166221,935542 +98528,383,3,353616,83655 +98529,234,1,50327,60621 +98530,234,1,67633,144632 +98531,286,3,11917,2149 +98532,327,7,73424,187847 +98533,182,8,68737,1401595 +98534,204,9,11577,12495 +98535,204,9,111017,41754 +98536,317,10,26768,96185 +98537,301,5,241855,1470709 +98538,306,7,664,1511737 +98539,333,2,152736,1332256 +98540,387,10,26805,69320 +98541,317,10,49502,142341 +98542,413,11,78265,583605 +98543,108,10,105548,1301956 +98544,239,5,278632,1582592 +98545,204,9,103731,1011958 +98546,387,10,10804,12920 +98547,234,1,41206,14674 +98548,3,5,43935,60404 +98549,234,1,26688,130837 +98550,413,11,864,12970 +98551,273,7,1049,531 +98552,273,7,73348,3375 +98553,203,1,96724,1338291 +98554,53,2,8079,35736 +98555,196,7,118,10972 +98556,3,5,9815,59528 +98557,234,1,279090,39588 +98558,387,10,93856,90591 +98559,3,5,291413,1358568 +98560,317,10,81895,170029 +98561,234,1,79836,120018 +98562,203,1,204922,1337422 +98563,234,1,73562,19937 +98564,148,9,22023,1307067 +98565,333,2,4375,41629 +98566,46,5,12103,1625901 +98567,413,11,9528,53361 +98568,301,5,33613,1455309 +98569,204,9,40095,11877 +98570,161,6,329865,1646541 +98571,88,6,11697,1578446 +98572,75,5,5413,22403 +98573,53,2,44363,165396 +98574,413,11,11591,30725 +98575,234,1,88224,124092 +98576,204,9,464111,1418415 +98577,234,1,26156,89467 +98578,317,10,76864,580704 +98579,390,6,152042,1590924 +98580,208,2,59115,1830875 +98581,209,7,122081,1719415 +98582,289,6,10539,1454753 +98583,67,10,9472,1567968 +98584,234,1,72766,12833 +98585,388,9,11024,1673523 +98586,52,10,33112,42063 +98587,226,2,14916,1430515 +98588,53,2,82990,1314152 +98589,269,9,11593,5329 +98590,419,10,134201,1366427 +98591,387,10,109451,1236679 +98592,413,11,505,6919 +98593,234,1,83540,163998 +98594,204,9,31596,1325696 +98595,203,1,286709,1339963 +98596,113,9,369885,1790901 +98597,187,11,10632,1297660 +98598,234,1,104474,11523 +98599,3,5,11364,15131 +98600,105,7,330770,1616019 +98601,250,11,354859,1685970 +98602,148,9,11832,1723382 +98603,203,1,262338,1410142 +98604,317,10,23128,94816 +98605,113,9,46261,77730 +98606,3,5,83223,91793 +98607,105,7,356486,1522133 +98608,234,1,33357,9855 +98609,226,2,2978,30394 +98610,226,2,127372,1431503 +98611,203,1,34723,1400356 +98612,262,6,7916,1338983 +98613,3,5,37514,117841 +98614,53,2,241574,1470161 +98615,64,6,75564,937544 +98616,32,8,13929,7894 +98617,268,7,935,1556556 +98618,234,1,5183,14674 +98619,317,10,53358,164866 +98620,234,1,27012,19266 +98621,387,10,58051,14086 +98622,87,7,311324,52453 +98623,3,5,10311,3769 +98624,176,3,44943,1403398 +98625,52,10,99567,1041606 +98626,3,5,26252,29732 +98627,105,7,106944,1568241 +98628,190,7,38027,1563430 +98629,413,11,9779,7035 +98630,333,2,14254,112656 +98631,234,1,388586,1385604 +98632,235,5,1966,46283 +98633,317,10,65123,142430 +98634,160,3,178809,1412595 +98635,373,7,2107,1672759 +98636,234,1,7454,53357 +98637,234,1,369019,152183 +98638,190,7,361018,1762820 +98639,234,1,104462,11523 +98640,234,1,157420,1138750 +98641,60,1,18,144848 +98642,226,2,178809,1412575 +98643,258,9,9297,1460488 +98644,180,7,154575,1707142 +98645,387,10,131457,130933 +98646,413,11,371645,1501949 +98647,273,7,296524,18264 +98648,269,9,162056,2366 +98649,3,5,5998,28982 +98650,234,1,397365,229252 +98651,387,10,30361,1379641 +98652,60,1,94009,1093512 +98653,105,7,36672,45567 +98654,234,1,293167,236539 +98655,273,7,9032,20822 +98656,413,11,397422,6742 +98657,287,3,23515,1440865 +98658,53,2,93676,18321 +98659,3,5,422906,117001 +98660,317,10,51890,134545 +98661,387,10,9607,58167 +98662,52,10,353879,101839 +98663,234,1,94513,119294 +98664,203,1,10096,1395290 +98665,5,10,340176,150779 +98666,317,10,131836,1093746 +98667,148,9,19918,959111 +98668,234,1,340275,5281 +98669,244,3,203833,1339060 +98670,273,7,72640,5467 +98671,234,1,179812,1162321 +98672,273,7,389630,19016 +98673,394,7,17577,1302966 +98674,53,2,28293,11491 +98675,234,1,211017,938768 +98676,3,5,133521,1460697 +98677,394,7,9286,1441250 +98678,148,9,147829,9063 +98679,270,9,46261,1425382 +98680,160,3,57749,1411235 +98681,286,3,285840,1593344 +98682,204,9,37100,568034 +98683,105,7,28268,1899325 +98684,187,11,328429,1636718 +98685,53,2,10708,15524 +98686,67,10,68179,1447323 +98687,175,5,200727,132642 +98688,53,2,17911,1871216 +98689,317,10,47194,141032 +98690,234,1,56666,224751 +98691,219,11,11024,931247 +98692,333,2,296523,1572521 +98693,234,1,224233,1209814 +98694,333,2,3023,29639 +98695,269,9,83770,18496 +98696,186,6,369885,1790950 +98697,143,7,76203,56765 +98698,204,9,896,12168 +98699,317,10,214086,223613 +98700,413,11,21955,11454 +98701,289,6,39045,1455541 +98702,289,6,12593,1208538 +98703,234,1,182131,109197 +98704,317,10,104275,48415 +98705,87,7,2355,24192 +98706,413,11,47536,95329 +98707,317,10,13058,76242 +98708,269,9,13567,1426222 +98709,5,10,54093,1553490 +98710,317,10,62441,204037 +98711,387,10,313628,568019 +98712,301,5,333663,1403863 +98713,273,7,100910,5467 +98714,121,2,634,1576010 +98715,97,7,57749,1411228 +98716,328,6,72431,1439731 +98717,413,11,105906,38590 +98718,175,5,10796,1378240 +98719,387,10,65048,240294 +98720,172,3,10326,1377237 +98721,67,10,3933,1218548 +98722,204,9,262,20358 +98723,273,7,8583,1528 +98724,113,9,8247,1408670 +98725,105,7,60807,585344 +98726,373,7,354859,40141 +98727,185,11,42418,1827972 +98728,373,7,8669,16177 +98729,387,10,13682,80675 +98730,105,7,17479,582251 +98731,413,11,319924,61249 +98732,186,6,329865,1646549 +98733,387,10,3513,16590 +98734,234,1,117942,98541 +98735,234,1,353979,1017209 +98736,387,10,366249,147750 +98737,127,3,52661,951607 +98738,208,2,28178,1329529 +98739,234,1,27937,99280 +98740,75,5,330459,937946 +98741,413,11,79707,74091 +98742,155,3,140607,11108 +98743,269,9,405670,1853231 +98744,204,9,3035,3945 +98745,317,10,238593,1169452 +98746,187,11,10950,1412704 +98747,52,10,19506,3435 +98748,52,10,44591,138467 +98749,317,10,75510,74879 +98750,234,1,365942,36804 +98751,52,10,183825,109704 +98752,371,3,285685,1618900 +98753,234,1,43882,33064 +98754,209,7,271404,585784 +98755,387,10,42941,37622 +98756,234,1,366249,938674 +98757,269,9,18,1000 +98758,360,3,11056,1418153 +98759,102,3,379019,1764747 +98760,269,9,203321,17255 +98761,234,1,11048,67924 +98762,204,9,112991,1524175 +98763,234,1,245394,1243871 +98764,286,3,82650,14139 +98765,52,10,59075,38748 +98766,234,1,13991,77911 +98767,110,1,9836,59767 +98768,3,5,31264,31775 +98769,200,3,145135,1417876 +98770,234,1,7326,52443 +98771,221,3,127585,1384395 +98772,3,5,86814,1017426 +98773,234,1,125623,77128 +98774,105,7,127817,1085822 +98775,413,11,10173,16593 +98776,226,2,5237,590079 +98777,273,7,8847,531 +98778,3,5,44389,6899 +98779,413,11,77794,6790 +98780,234,1,416256,1033579 +98781,5,10,868,11860 +98782,387,10,11909,11401 +98783,53,2,214910,1293694 +98784,232,10,43340,38247 +98785,286,3,118451,1301202 +98786,234,1,82481,229222 +98787,413,11,329135,37242 +98788,268,7,39103,122987 +98789,53,2,461955,1451535 +98790,317,10,406449,66969 +98791,3,5,36089,96726 +98792,3,5,273,3870 +98793,53,2,103597,36518 +98794,196,7,11472,1378696 +98795,203,1,296524,1340919 +98796,52,10,25388,14941 +98797,413,11,79611,1779299 +98798,53,2,250066,1338330 +98799,148,9,200505,19466 +98800,317,10,19017,136989 +98801,3,5,329868,24665 +98802,77,10,9779,57678 +98803,317,10,153541,1624313 +98804,387,10,298,16305 +98805,203,1,188927,1352983 +98806,328,6,72431,1484204 +98807,413,11,24918,853 +98808,3,5,98094,56983 +98809,3,5,4955,40987 +98810,298,5,321303,1512678 +98811,132,2,16996,1444909 +98812,413,11,19181,46871 +98813,148,9,19053,551923 +98814,317,10,109466,63937 +98815,413,11,26517,14999 +98816,234,1,408550,1658143 +98817,289,6,149870,19601 +98818,40,1,18843,1607917 +98819,387,10,10622,46319 +98820,287,3,11880,1414088 +98821,317,10,23719,21792 +98822,190,7,4133,1562262 +98823,269,9,14295,2867 +98824,52,10,324670,1425432 +98825,232,10,105548,34741 +98826,234,1,61151,153245 +98827,148,9,13105,8339 +98828,387,10,140883,230027 +98829,289,6,9297,1442214 +98830,415,3,3716,1568290 +98831,317,10,198652,149982 +98832,286,3,129851,103112 +98833,398,9,76203,1018480 +98834,301,5,267579,1583161 +98835,387,10,140470,1018951 +98836,52,10,29376,197796 +98837,234,1,36299,77086 +98838,289,6,302026,1570588 +98839,105,7,64454,229715 +98840,291,6,15653,1767048 +98841,273,7,66881,34734 +98842,127,3,294254,1622657 +98843,234,1,17657,14520 +98844,317,10,20650,8814 +98845,97,7,378236,1367362 +98846,234,1,12637,1032 +98847,234,1,29398,12011 +98848,413,11,1568,17627 +98849,203,1,11812,1531867 +98850,289,6,106358,1179322 +98851,77,10,9904,60208 +98852,5,10,42819,132547 +98853,234,1,64961,53657 +98854,75,5,81522,1130079 +98855,3,5,12499,1258 +98856,5,10,228074,1262606 +98857,204,9,50674,19690 +98858,413,11,378607,1566580 +98859,232,10,31417,128483 +98860,52,10,74645,572232 +98861,273,7,396330,1420598 +98862,234,1,464819,551926 +98863,204,9,1950,7235 +98864,105,7,407448,1213 +98865,234,1,59704,77104 +98866,234,1,416445,126125 +98867,161,6,46738,1536208 +98868,204,9,11385,5188 +98869,198,6,40807,1533019 +98870,269,9,71725,937601 +98871,234,1,111605,93025 +98872,105,7,22025,106591 +98873,317,10,61113,60616 +98874,234,1,42679,128439 +98875,13,5,378441,1797419 +98876,232,10,27035,84238 +98877,413,11,117,1264 +98878,60,1,9651,1513635 +98879,387,10,385114,1584424 +98880,317,10,126841,108 +98881,169,3,419430,1484983 +98882,234,1,10222,22012 +98883,411,9,2567,17829 +98884,317,10,149170,143286 +98885,234,1,48841,141194 +98886,413,11,10870,16931 +98887,204,9,54256,593006 +98888,333,2,145135,1417863 +98889,203,1,153854,1257720 +98890,234,1,295723,1070382 +98891,148,9,315837,1717990 +98892,113,9,2666,1392669 +98893,413,11,11719,5821 +98894,203,1,98066,1530074 +98895,387,10,10364,7795 +98896,234,1,60608,48583 +98897,105,7,314371,589283 +98898,204,9,4413,4187 +98899,317,10,180929,68132 +98900,53,2,2486,6209 +98901,176,3,11370,1433203 +98902,413,11,209112,6051 +98903,53,2,2637,20172 +98904,234,1,325428,1462259 +98905,20,2,12103,1538314 +98906,413,11,9778,7414 +98907,234,1,12622,3317 +98908,286,3,276401,1084983 +98909,328,6,19901,1391725 +98910,387,10,97910,50568 +98911,52,10,43504,103668 +98912,67,10,10204,40759 +98913,160,3,12573,1281538 +98914,225,7,6947,138617 +98915,60,1,55370,37495 +98916,60,1,14811,1234217 +98917,413,11,18919,550575 +98918,196,7,10665,1407681 +98919,273,7,25673,8619 +98920,45,9,203819,1355535 +98921,273,7,298935,82356 +98922,234,1,9795,27146 +98923,3,5,98349,1017376 +98924,317,10,339527,1886 +98925,387,10,324440,1481998 +98926,105,7,37628,1575752 +98927,3,5,63304,1680197 +98928,413,11,19827,11997 +98929,105,7,27573,1528 +98930,155,3,97614,179267 +98931,317,10,74430,161573 +98932,158,2,15616,1415508 +98933,234,1,11196,68554 +98934,244,3,105,735 +98935,179,2,332567,990036 +98936,3,5,4140,34950 +98937,317,10,98302,37126 +98938,277,3,37628,1641281 +98939,234,1,142051,204484 +98940,360,3,218778,1415610 +98941,105,7,13653,67265 +98942,52,10,69266,9181 +98943,53,2,327383,1286912 +98944,234,1,104954,103111 +98945,289,6,10539,1332501 +98946,234,1,53861,149125 +98947,53,2,144111,9064 +98948,175,5,263115,1391729 +98949,286,3,47863,566665 +98950,64,6,397837,1753857 +98951,317,10,240881,1279216 +98952,269,9,13834,62707 +98953,403,10,80343,22012 +98954,52,10,43548,21227 +98955,273,7,46145,88643 +98956,317,10,227871,100022 +98957,234,1,31150,11641 +98958,148,9,14047,65725 +98959,413,11,4978,40347 +98960,234,1,41886,1110611 +98961,269,9,81001,8883 +98962,411,9,399790,1402090 +98963,105,7,280617,1851698 +98964,204,9,302828,1406239 +98965,234,1,120972,14353 +98966,203,1,270403,1594813 +98967,360,3,69668,1337452 +98968,3,5,11084,69694 +98969,75,5,703,6490 +98970,317,10,9404,44916 +98971,20,2,311324,1621496 +98972,46,5,270851,1097217 +98973,317,10,26005,56865 +98974,317,10,241170,12627 +98975,234,1,11635,57130 +98976,273,7,13852,42383 +98977,164,3,10204,1557578 +98978,234,1,378446,230421 +98979,387,10,65891,323 +98980,196,7,72545,1406873 +98981,397,7,69974,557677 +98982,155,3,325712,1879692 +98983,399,9,13205,1779890 +98984,413,11,11259,6190 +98985,317,10,250029,2305 +98986,3,5,16005,6117 +98987,105,7,15022,1303218 +98988,273,7,319340,1300880 +98989,387,10,12716,73721 +98990,148,9,89086,8508 +98991,317,10,35907,227367 +98992,64,6,241254,1404192 +98993,3,5,175334,9080 +98994,273,7,101242,1026681 +98995,158,2,1125,1551520 +98996,234,1,57996,132188 +98997,203,1,29151,1483902 +98998,187,11,6557,1342658 +98999,204,9,178587,31204 +99000,234,1,109391,201 +99001,234,1,76544,6384 +99002,204,9,331354,1473843 +99003,387,10,9840,32502 +99004,77,10,58,1706 +99005,333,2,11589,1210144 +99006,132,2,128270,1533095 +99007,387,10,21753,63491 +99008,105,7,44257,1228024 +99009,127,3,126712,34187 +99010,60,1,46149,1602827 +99011,53,2,99,972 +99012,317,10,417489,142995 +99013,219,11,324440,1606212 +99014,179,2,82077,1458205 +99015,373,7,378485,1438419 +99016,387,10,14554,41751 +99017,317,10,348544,1486801 +99018,250,11,332567,1573040 +99019,143,7,106747,85960 +99020,346,3,10590,1398982 +99021,196,7,7299,1433721 +99022,398,9,44943,1403392 +99023,289,6,109451,1452997 +99024,250,11,263115,1407696 +99025,204,9,1991,1401122 +99026,317,10,18530,83224 +99027,317,10,21508,569201 +99028,207,3,8204,1351413 +99029,3,5,398633,1417964 +99030,317,10,40826,67688 +99031,357,3,140607,1550764 +99032,234,1,67216,56435 +99033,269,9,13852,42385 +99034,234,1,86975,86293 +99035,22,9,263115,1821878 +99036,413,11,204994,34439 +99037,234,1,25126,54472 +99038,92,7,10178,1141747 +99039,317,10,85525,150975 +99040,413,11,6076,49829 +99041,413,11,35002,157704 +99042,204,9,65674,1121982 +99043,97,7,6934,1419040 +99044,160,3,17927,122294 +99045,208,2,398289,223992 +99046,289,6,80928,148147 +99047,154,3,11206,81538 +99048,127,3,72105,1447945 +99049,234,1,36251,15452 +99050,75,5,22279,1408358 +99051,234,1,84305,3224 +99052,181,7,773,1466245 +99053,273,7,11415,20953 +99054,413,11,228970,1287614 +99055,3,5,10529,25744 +99056,416,10,6935,51490 +99057,3,5,88273,18830 +99058,87,7,45013,1818060 +99059,234,1,35572,114380 +99060,234,1,935,240 +99061,317,10,53042,147112 +99062,317,10,52362,14567 +99063,289,6,74961,549357 +99064,3,5,413998,68543 +99065,234,1,12453,72280 +99066,317,10,134350,67075 +99067,143,7,377151,932947 +99068,317,10,29111,88820 +99069,273,7,42796,34016 +99070,273,7,5552,44074 +99071,273,7,298722,1375641 +99072,52,10,207699,37591 +99073,18,2,9716,1661574 +99074,143,7,340101,40810 +99075,234,1,27983,16745 +99076,234,1,38916,238647 +99077,234,1,62731,150813 +99078,381,9,9352,1398914 +99079,53,2,174925,1663158 +99080,399,9,10020,1615290 +99081,317,10,362180,1332478 +99082,180,7,46931,1595994 +99083,387,10,4931,153760 +99084,234,1,359412,30058 +99085,269,9,86732,233721 +99086,53,2,38950,1483721 +99087,204,9,1995,22080 +99088,234,1,158908,66121 +99089,52,10,74961,362742 +99090,3,5,172520,1011461 +99091,277,3,26761,4129 +99092,161,6,9593,1360108 +99093,317,10,103731,71872 +99094,262,6,17609,1400327 +99095,226,2,46567,1008503 +99096,239,5,77246,1550576 +99097,317,10,282268,10713 +99098,3,5,63736,79392 +99099,204,9,225285,1431141 +99100,204,9,1995,8381 +99101,3,5,30924,3031 +99102,317,10,197583,1283754 +99103,273,7,1850,6957 +99104,158,2,273481,1568831 +99105,53,2,19255,52163 +99106,3,5,270403,26097 +99107,111,7,1966,1733790 +99108,234,1,26510,95576 +99109,95,8,126889,1746439 +99110,413,11,115565,212501 +99111,269,9,322443,60408 +99112,333,2,3476,32017 +99113,327,7,7326,1400093 +99114,262,6,202214,1362709 +99115,160,3,263115,92479 +99116,105,7,46368,932186 +99117,269,9,954,669 +99118,317,10,227462,1116351 +99119,317,10,94894,1086964 +99120,387,10,139170,444552 +99121,52,10,41591,126995 +99122,182,8,296524,1729038 +99123,292,3,924,1551652 +99124,387,10,43489,1168714 +99125,234,1,85424,138138 +99126,317,10,156268,1137588 +99127,63,7,152042,1801220 +99128,3,5,31875,960261 +99129,387,10,194722,1186246 +99130,158,2,12499,1536089 +99131,143,7,742,11242 +99132,317,10,18088,1554428 +99133,387,10,18897,64632 +99134,209,7,140554,1425568 +99135,308,3,74777,583473 +99136,333,2,16214,197875 +99137,218,1,634,1424574 +99138,273,7,15,1045 +99139,277,3,13614,1549320 +99140,413,11,6145,17816 +99141,105,7,14878,959364 +99142,147,1,159667,1849491 +99143,234,1,51362,13953 +99144,250,11,149509,1444301 +99145,413,11,95136,68127 +99146,273,7,62855,1592445 +99147,148,9,10744,1040861 +99148,234,1,315057,1113222 +99149,234,1,130745,126162 +99150,5,10,26612,29533 +99151,160,3,30361,9567 +99152,317,10,159138,543385 +99153,413,11,384262,1769663 +99154,262,6,49521,1439088 +99155,250,11,296523,1558721 +99156,287,3,207270,1102404 +99157,398,9,8414,54899 +99158,3,5,13506,1539699 +99159,304,10,301671,1707469 +99160,190,7,525,55228 +99161,413,11,352197,1442642 +99162,234,1,116711,5713 +99163,269,9,38157,75830 +99164,234,1,81895,31900 +99165,413,11,31280,114832 +99166,3,5,179818,9080 +99167,262,6,109439,578778 +99168,286,3,49110,45535 +99169,234,1,26358,49875 +99170,45,9,10070,1440736 +99171,333,2,158908,1521081 +99172,289,6,284274,1452932 +99173,317,10,142802,1117989 +99174,317,10,134362,1011787 +99175,387,10,14698,11626 +99176,275,9,408220,90367 +99177,234,1,10433,9200 +99178,132,2,6557,1627483 +99179,234,1,26301,56435 +99180,234,1,150056,104243 +99181,415,3,29161,4658 +99182,127,3,72105,1455503 +99183,234,1,84348,1039528 +99184,175,5,251,1411293 +99185,3,5,25941,32451 +99186,317,10,376934,1561593 +99187,200,3,334074,1396803 +99188,204,9,9918,16467 +99189,317,10,118490,1287442 +99190,413,11,10841,35171 +99191,234,1,211928,1056396 +99192,187,11,44129,1509364 +99193,160,3,43912,16347 +99194,387,10,910,4297 +99195,13,9,313646,1403840 +99196,148,9,9716,79252 +99197,349,1,10020,952327 +99198,288,3,413547,85052 +99199,286,3,51549,1381033 +99200,286,3,146679,1124592 +99201,413,11,82624,59728 +99202,198,6,337339,1725768 +99203,234,1,7871,53238 +99204,104,7,38322,548441 +99205,87,7,364088,1748529 +99206,53,2,31021,1611077 +99207,3,5,305342,1183644 +99208,67,10,31473,1113507 +99209,97,7,177677,1398918 +99210,234,1,31672,39463 +99211,411,9,1271,8704 +99212,198,6,354859,1884728 +99213,403,10,26581,1213436 +99214,387,10,35790,12160 +99215,148,9,9539,1363838 +99216,314,2,176,1817622 +99217,387,10,43231,24658 +99218,97,7,270403,1579517 +99219,234,1,118716,198375 +99220,234,1,15067,543568 +99221,373,7,329682,149294 +99222,52,10,43464,100914 +99223,413,11,9550,57914 +99224,273,7,113148,937895 +99225,53,2,105833,1462499 +99226,333,2,356752,1646789 +99227,60,1,15697,14055 +99228,234,1,31907,27846 +99229,387,10,13391,70103 +99230,3,5,148408,1208457 +99231,5,10,6591,3485 +99232,413,11,44398,115058 +99233,317,10,176321,2792 +99234,53,2,216046,1684925 +99235,187,11,10909,1411265 +99236,394,7,381015,1444289 +99237,289,6,9664,1557584 +99238,286,3,348689,1293085 +99239,105,7,35572,1662177 +99240,234,1,24440,91623 +99241,234,1,2637,11676 +99242,105,7,17136,13571 +99243,234,1,6589,50582 +99244,286,3,295581,1323117 +99245,3,5,337101,72812 +99246,160,3,403867,85052 +99247,234,1,27925,98835 +99248,66,11,263115,1821920 +99249,234,1,85580,97753 +99250,387,10,7233,52114 +99251,175,5,773,1415636 +99252,155,3,18094,928577 +99253,187,11,33135,1304274 +99254,196,7,7299,1433720 +99255,260,2,369885,1413927 +99256,234,1,81560,1041470 +99257,204,9,336804,1574320 +99258,234,1,79816,118471 +99259,317,10,52314,1773059 +99260,234,1,154371,1222038 +99261,273,7,14087,30027 +99262,5,10,27986,13971 +99263,174,6,100669,1540838 +99264,317,10,185111,1118000 +99265,317,10,222932,161827 +99266,53,2,31995,552406 +99267,179,2,2503,1319160 +99268,287,3,27381,15017 +99269,52,10,66893,234569 +99270,286,3,118658,1068335 +99271,97,7,9664,1393300 +99272,286,3,259997,1302529 +99273,5,10,37308,1789076 +99274,234,1,65416,543174 +99275,234,1,178,2042 +99276,234,1,28169,78023 +99277,225,7,544,113041 +99278,273,7,8869,9039 +99279,333,2,395982,1755127 +99280,203,1,13842,1458202 +99281,289,6,9514,91772 +99282,5,10,64044,24840 +99283,387,10,1416,1188 +99284,317,10,13956,104614 +99285,286,3,14134,1339737 +99286,143,7,4547,7763 +99287,387,10,198663,1257095 +99288,269,9,14869,4953 +99289,298,5,9457,91123 +99290,46,5,142402,1117109 +99291,387,10,34459,112400 +99292,234,1,443319,1324390 +99293,273,7,70500,559704 +99294,387,10,9882,736 +99295,105,7,279690,1610194 +99296,317,10,330171,1180568 +99297,226,2,76163,1407340 +99298,317,10,44119,1420230 +99299,244,3,188102,83347 +99300,143,7,28171,100012 +99301,387,10,511,2801 +99302,289,6,251,1453285 +99303,37,3,329865,113145 +99304,143,7,8049,53662 +99305,387,10,55728,2199 +99306,327,7,72984,589951 +99307,387,10,43195,15127 +99308,5,10,59569,13777 +99309,387,10,81022,429201 +99310,75,5,9438,1421731 +99311,45,9,10590,1446988 +99312,311,9,373546,1869453 +99313,317,10,25921,1381471 +99314,200,3,315837,1797232 +99315,277,3,43761,1678846 +99316,234,1,76010,1193421 +99317,28,9,9352,1586330 +99318,357,3,19995,1483226 +99319,148,9,2107,21616 +99320,182,8,49009,1459226 +99321,236,8,6163,1905097 +99322,175,5,177677,1389139 +99323,53,2,254679,551495 +99324,3,5,244117,928293 +99325,273,7,28268,1092903 +99326,273,7,59838,16748 +99327,127,3,345922,1309899 +99328,52,10,94811,102503 +99329,60,1,246415,1439319 +99330,175,5,332411,1579386 +99331,328,6,19995,1401790 +99332,180,7,55700,1537269 +99333,317,10,206237,1188612 +99334,234,1,230428,19143 +99335,317,10,2300,14710 +99336,5,10,227156,1383003 +99337,413,11,4988,3985 +99338,269,9,263855,1327777 +99339,52,10,61581,556752 +99340,289,6,15981,1847909 +99341,3,5,64944,56289 +99342,182,8,329440,1367560 +99343,148,9,4809,1335586 +99344,20,2,14181,22221 +99345,289,6,312100,1453524 +99346,273,7,157409,1289459 +99347,413,11,171446,1031548 +99348,373,7,8053,38400 +99349,304,10,103236,81986 +99350,387,10,26679,95998 +99351,143,7,359549,7659 +99352,269,9,11535,391 +99353,234,1,244801,1057496 +99354,413,11,69560,1325041 +99355,387,10,11008,64746 +99356,333,2,765,11747 +99357,327,7,5924,1378199 +99358,317,10,53064,1107766 +99359,3,5,2195,23173 +99360,394,7,405473,1547155 +99361,226,2,11610,1462236 +99362,317,10,30305,146512 +99363,415,3,890,14625 +99364,317,10,296194,1371393 +99365,289,6,3933,1448071 +99366,328,6,274857,1133287 +99367,317,10,78094,1322291 +99368,204,9,238781,64205 +99369,226,2,8276,773968 +99370,317,10,325690,1047948 +99371,3,5,51209,8677 +99372,234,1,10857,67268 +99373,77,10,194,2420 +99374,53,2,78318,4127 +99375,234,1,363890,1403654 +99376,53,2,241258,1401855 +99377,85,10,16235,147701 +99378,286,3,43904,960721 +99379,234,1,69404,1336607 +99380,269,9,16980,1517815 +99381,387,10,352199,1153467 +99382,97,7,62630,1106173 +99383,234,1,59726,229695 +99384,262,6,949,15849 +99385,234,1,78307,930628 +99386,45,9,55534,1523874 +99387,306,7,9472,1551727 +99388,387,10,285245,1349785 +99389,398,9,251,1378751 +99390,333,2,9028,1639049 +99391,203,1,28178,1183454 +99392,413,11,110115,1115633 +99393,234,1,33005,78806 +99394,269,9,125264,1131187 +99395,413,11,18273,994380 +99396,317,10,305147,932931 +99397,234,1,84397,129422 +99398,234,1,118889,76381 +99399,413,11,12144,40347 +99400,3,5,64948,240097 +99401,387,10,211139,31981 +99402,234,1,148265,147021 +99403,196,7,50725,9417 +99404,208,2,419430,1431554 +99405,75,5,24750,1712247 +99406,262,6,356326,1400327 +99407,175,5,203833,1406192 +99408,61,7,76757,1432599 +99409,175,5,15143,74992 +99410,289,6,378236,1840326 +99411,60,1,19096,1337171 +99412,46,5,15794,1593330 +99413,234,1,40060,112400 +99414,234,1,65973,81853 +99415,317,10,38433,30409 +99416,53,2,55612,971116 +99417,277,7,9928,113048 +99418,270,9,2666,1392672 +99419,5,10,74,11624 +99420,317,10,376047,146991 +99421,200,3,9457,5546 +99422,234,1,90319,128291 +99423,328,6,97614,1419725 +99424,333,2,194722,1456346 +99425,413,11,72057,1438845 +99426,413,11,41996,14295 +99427,413,11,6499,10613 +99428,234,1,11231,56828 +99429,317,10,46989,74638 +99430,387,10,26679,95996 +99431,5,10,257081,1374398 +99432,189,3,251227,1286588 +99433,387,10,55846,89287 +99434,72,11,9426,1445987 +99435,204,9,539,7306 +99436,148,9,11697,7687 +99437,3,5,9611,17948 +99438,317,10,241930,1121480 +99439,198,6,330459,1706706 +99440,72,11,11812,970033 +99441,187,7,169,1197676 +99442,3,5,134372,98631 +99443,234,1,279006,15630 +99444,239,5,3172,1403479 +99445,317,10,253612,1383174 +99446,413,11,26768,10179 +99447,415,3,264525,1857228 +99448,179,2,10529,1567303 +99449,273,7,312497,64156 +99450,3,5,64428,100982 +99451,204,9,11307,1329414 +99452,148,9,308,4437 +99453,234,1,96133,5561 +99454,75,5,70981,1390368 +99455,97,7,14430,1521677 +99456,387,10,40850,124829 +99457,3,5,10890,2287 +99458,160,3,76757,11354 +99459,387,10,327225,1431530 +99460,79,7,25918,4082 +99461,196,7,18,1405717 +99462,234,1,4930,6778 +99463,234,1,11633,70100 +99464,3,5,10692,67181 +99465,198,6,9664,1425551 +99466,317,10,30366,106172 +99467,53,2,230428,1464043 +99468,234,1,391995,219861 +99469,286,3,8652,1759524 +99470,53,2,99261,1509645 +99471,51,9,8619,1113960 +99472,196,7,4982,1342657 +99473,287,3,341886,1573337 +99474,5,10,27409,29188 +99475,387,10,80280,54526 +99476,269,9,47186,60870 +99477,333,2,19719,85114 +99478,413,11,786,4186 +99479,273,7,84340,66489 +99480,175,5,83430,1607053 +99481,323,10,373541,233527 +99482,3,5,16876,80964 +99483,277,7,9028,1707585 +99484,331,3,74,1549062 +99485,234,1,273202,1326205 +99486,269,9,76494,28636 +99487,53,2,26180,6392 +99488,317,10,70753,34741 +99489,262,6,330459,1401796 +99490,3,5,39995,1087772 +99491,208,2,285,406204 +99492,234,1,276120,1517864 +99493,373,7,858,92377 +99494,387,10,11007,12893 +99495,413,11,10139,5216 +99496,269,9,96132,1130007 +99497,236,8,13056,1708269 +99498,234,1,40709,581079 +99499,148,9,2669,26871 +99500,413,11,10663,21223 +99501,77,10,322,4722 +99502,273,7,1375,10494 +99503,189,3,8915,1337472 +99504,52,10,261273,1319649 +99505,413,11,86254,31157 +99506,3,5,26180,6626 +99507,226,2,1976,1542032 +99508,317,10,54107,169939 +99509,234,1,10488,66218 +99510,387,10,96793,109199 +99511,234,1,57548,151157 +99512,387,10,63178,5812 +99513,411,9,5516,8285 +99514,269,9,6166,48326 +99515,234,1,248087,43652 +99516,317,10,364088,1523168 +99517,413,11,11907,5641 +99518,373,7,122081,1338374 +99519,103,6,263115,1439092 +99520,53,2,107693,1112004 +99521,273,7,76686,32857 +99522,3,5,107250,1330951 +99523,234,1,191476,1412808 +99524,158,2,294254,1571478 +99525,413,11,198600,2761 +99526,333,2,40864,124863 +99527,387,10,40130,237402 +99528,52,10,86643,120493 +99529,209,7,20242,908 +99530,72,11,10590,1401897 +99531,234,1,10860,18378 +99532,5,10,10910,67448 +99533,234,1,191476,13275 +99534,186,6,72545,1859979 +99535,234,1,47867,1566166 +99536,3,5,43205,21783 +99537,234,1,65839,113337 +99538,166,9,10004,1325353 +99539,324,3,231176,120127 +99540,234,1,48780,5602 +99541,387,10,14830,1215939 +99542,413,11,322443,1467334 +99543,105,7,53883,585370 +99544,413,11,46286,7035 +99545,234,1,241620,1119073 +99546,413,11,375199,1113438 +99547,175,5,10070,1440742 +99548,289,6,65759,1452995 +99549,234,1,11799,15389 +99550,413,11,26958,1171851 +99551,204,9,18148,552003 +99552,317,10,44414,6111 +99553,413,11,104427,127515 +99554,413,11,9918,8752 +99555,373,7,5289,7659 +99556,234,1,11639,7908 +99557,296,3,163,1608876 +99558,53,2,53459,1301114 +99559,234,1,48136,16412 +99560,387,10,165159,1414059 +99561,3,5,616,2483 +99562,317,10,336265,1194699 +99563,53,2,18333,11908 +99564,413,11,4825,4102 +99565,387,10,1599,17883 +99566,3,5,18447,22085 +99567,234,1,6973,455 +99568,204,9,2124,21814 +99569,387,10,285,1706 +99570,269,9,33016,1143710 +99571,328,6,9946,1406763 +99572,87,7,43727,1555492 +99573,204,9,18111,1208333 +99574,413,11,12422,1100334 +99575,398,9,1116,15512 +99576,317,10,38164,24279 +99577,234,1,6947,11614 +99578,317,10,34806,113226 +99579,155,3,13042,12890 +99580,286,3,181753,16300 +99581,204,9,162862,9062 +99582,413,11,209248,52077 +99583,87,7,22803,1531494 +99584,333,2,246415,572367 +99585,204,9,25499,593025 +99586,387,10,15264,231131 +99587,317,10,42325,103360 +99588,204,9,11517,9270 +99589,203,1,41171,1469622 +99590,234,1,47778,65843 +99591,250,11,12783,1427511 +99592,67,10,16177,68184 +99593,53,2,195269,129988 +99594,333,2,48949,24313 +99595,327,7,77338,47817 +99596,203,1,315837,1437720 +99597,387,10,115665,932363 +99598,3,5,12707,73945 +99599,234,1,35921,2087 +99600,234,1,98349,1552936 +99601,413,11,11330,69018 +99602,53,2,277558,1318444 +99603,87,7,773,232158 +99604,412,9,40466,1760146 +99605,234,1,373200,1065761 +99606,187,11,14254,1406101 +99607,317,10,81182,18024 +99608,273,7,38034,68673 +99609,87,7,316042,1574436 +99610,52,10,40761,11030 +99611,387,10,13834,75868 +99612,75,5,198652,1548281 +99613,234,1,25538,143035 +99614,273,7,572,7741 +99615,77,10,1922,19984 +99616,75,5,254007,28561 +99617,148,9,11880,20507 +99618,317,10,21571,76789 +99619,3,5,12994,17048 +99620,250,11,14476,1411676 +99621,204,9,117,1260 +99622,3,5,43727,548152 +99623,97,7,20438,1423753 +99624,413,11,59726,1000569 +99625,187,11,183412,1419632 +99626,234,1,124979,1040888 +99627,289,6,8398,1448601 +99628,122,8,263115,1757633 +99629,53,2,11879,8681 +99630,97,7,443319,1578991 +99631,5,10,10565,66048 +99632,234,1,202215,1184335 +99633,235,5,16342,1410139 +99634,387,10,29338,40885 +99635,360,3,57419,1601708 +99636,234,1,85483,488 +99637,413,11,11889,9154 +99638,234,1,291336,1362167 +99639,269,9,12783,16364 +99640,179,2,6163,1826662 +99641,188,8,46738,1536641 +99642,413,11,36960,91885 +99643,413,11,3085,30154 +99644,273,7,10354,195 +99645,273,7,22408,4681 +99646,413,11,12206,70721 +99647,3,5,42215,58660 +99648,413,11,866,13005 +99649,234,1,227257,175450 +99650,234,1,20414,89193 +99651,3,5,59961,11409 +99652,234,1,61035,65518 +99653,3,5,22683,1308306 +99654,317,10,31742,27213 +99655,333,2,20123,1599493 +99656,373,7,22803,13177 +99657,262,6,167,1392093 +99658,317,10,35292,36804 +99659,234,1,254689,1230331 +99660,273,7,28561,4681 +99661,349,1,8916,1780706 +99662,234,1,19286,84981 +99663,413,11,226188,31157 +99664,317,10,52894,52371 +99665,234,1,11234,68682 +99666,234,1,180759,1504461 +99667,273,7,38807,4345 +99668,204,9,1443,5929 +99669,3,5,85651,18257 +99670,3,5,158942,228786 +99671,209,7,9423,1389597 +99672,53,2,11855,77252 +99673,387,10,9543,52358 +99674,169,3,82684,1669272 +99675,234,1,289191,82566 +99676,75,5,190955,1405326 +99677,53,2,30175,33456 +99678,387,10,118991,15795 +99679,317,10,268536,12900 +99680,204,9,200,2508 +99681,234,1,41097,125455 +99682,387,10,40466,33287 +99683,239,5,55534,1576249 +99684,314,2,115565,1131063 +99685,198,6,9664,1408855 +99686,286,3,290864,1295960 +99687,3,5,49009,31027 +99688,3,5,108723,1162976 +99689,53,2,130593,1155167 +99690,196,7,328111,1411522 +99691,317,10,23599,64821 +99692,387,10,41590,53387 +99693,317,10,154575,591273 +99694,127,3,186869,143904 +99695,394,7,183412,1419635 +99696,33,10,3037,2333 +99697,3,5,30934,30932 +99698,226,2,25796,1457038 +99699,269,9,315855,1409538 +99700,387,10,272663,103382 +99701,387,10,3556,32778 +99702,203,1,9352,570136 +99703,269,9,46567,32214 +99704,273,7,341174,531 +99705,269,9,9890,7716 +99706,413,11,277968,703 +99707,387,10,14612,29715 +99708,77,10,1554,4429 +99709,52,10,42305,3377 +99710,52,10,39833,103925 +99711,13,5,53949,4354 +99712,52,10,72545,566286 +99713,413,11,202214,1201564 +99714,387,10,333371,1493738 +99715,148,9,10063,15541 +99716,317,10,24238,92733 +99717,328,6,228066,1403191 +99718,234,1,298751,964889 +99719,277,3,278632,1582600 +99720,234,1,222619,44789 +99721,317,10,84831,12100 +99722,412,9,755,1851725 +99723,413,11,59935,48789 +99724,3,5,134155,1796919 +99725,5,10,106887,1302049 +99726,397,7,11886,143773 +99727,250,11,1165,1416481 +99728,20,2,356752,1841579 +99729,387,10,43385,233508 +99730,250,11,16436,1420193 +99731,3,5,77412,3637 +99732,234,1,49308,95501 +99733,250,11,132363,1407744 +99734,234,1,13312,81044 +99735,182,8,257088,1406193 +99736,203,1,38749,1338840 +99737,286,3,31850,1654639 +99738,141,7,15497,701959 +99739,387,10,59387,122967 +99740,53,2,67377,34855 +99741,411,9,259695,6922 +99742,60,1,29143,57652 +99743,317,10,269246,34936 +99744,269,9,255343,18496 +99745,234,1,346646,86325 +99746,234,1,4291,3317 +99747,234,1,264560,104876 +99748,387,10,142979,69973 +99749,3,5,73984,31343 +99750,317,10,57781,1382061 +99751,285,5,8470,1840066 +99752,387,10,3104,30168 +99753,273,7,28,2872 +99754,387,10,121791,148455 +99755,317,10,75446,1087734 +99756,317,10,99875,1288639 +99757,140,9,294254,1357044 +99758,376,10,31287,99121 +99759,234,1,463906,5917 +99760,269,9,36657,11002 +99761,394,7,246655,1398946 +99762,234,1,14016,25236 +99763,105,7,221234,1206331 +99764,415,3,384737,1825454 +99765,24,5,73835,1606282 +99766,269,9,47914,74692 +99767,234,1,17926,1045480 +99768,155,3,6973,190 +99769,273,7,273096,980261 +99770,104,7,13798,1565834 +99771,333,2,262338,1767522 +99772,97,7,1381,1304276 +99773,234,1,38021,96627 +99774,268,7,338,1585876 +99775,148,9,5237,1427548 +99776,328,6,1966,1398099 +99777,3,5,10097,63355 +99778,387,10,16234,1211813 +99779,53,2,262522,1460857 +99780,3,5,39130,3637 +99781,413,11,273481,999565 +99782,234,1,598,8559 +99783,196,7,436,1406898 +99784,123,3,204712,57325 +99785,203,1,11338,1344278 +99786,3,5,12449,54287 +99787,269,9,27265,1049 +99788,3,5,22602,33174 +99789,3,5,99283,1354554 +99790,413,11,278316,1333663 +99791,413,11,72856,1313115 +99792,234,1,6557,29214 +99793,413,11,229610,11997 +99794,85,10,291871,17051 +99795,387,10,49418,1561897 +99796,387,10,16232,52080 +99797,413,11,203264,1697264 +99798,387,10,83223,102112 +99799,77,10,10336,64849 +99800,234,1,197785,73256 +99801,234,1,30174,557603 +99802,269,9,56948,1689780 +99803,234,1,141418,112379 +99804,373,7,10674,74978 +99805,387,10,12122,71342 +99806,160,3,41211,37975 +99807,413,11,54155,81744 +99808,345,7,274857,1409296 +99809,160,3,47504,1372092 +99810,273,7,11933,7714 +99811,105,7,362180,1585713 +99812,204,9,14869,8705 +99813,415,3,262522,1460867 +99814,317,10,168616,1150497 +99815,234,1,152948,225723 +99816,127,3,2397,24528 +99817,387,10,68191,117720 +99818,75,5,312831,1594163 +99819,387,10,45000,25162 +99820,273,7,270851,1177276 +99821,234,1,186268,89745 +99822,273,7,29611,104346 +99823,317,10,108345,40200 +99824,415,3,74,499 +99825,52,10,39957,27574 +99826,203,1,121598,1435539 +99827,387,10,11298,68913 +99828,306,7,301875,1641232 +99829,204,9,47508,929821 +99830,157,3,19725,117295 +99831,333,2,9819,1458527 +99832,3,5,11231,8862 +99833,204,9,167935,1170638 +99834,97,7,47112,1403800 +99835,5,10,86297,1551729 +99836,97,7,264525,1857573 +99837,5,10,282069,1341930 +99838,5,10,10333,64839 +99839,331,3,8619,1619089 +99840,360,9,284052,1334429 +99841,317,10,329690,1230196 +99842,60,1,11645,18598 +99843,413,11,324150,1424110 +99844,387,10,3078,19019 +99845,234,1,335837,1175691 +99846,357,3,97365,1727618 +99847,273,7,43773,17503 +99848,387,10,338438,22467 +99849,234,1,63304,107669 +99850,387,10,79382,25645 +99851,327,7,19200,15432 +99852,148,9,10364,7688 +99853,317,10,302666,965697 +99854,286,3,26293,972162 +99855,373,7,86829,9619 +99856,387,10,90030,1048389 +99857,380,3,274857,1815723 +99858,269,9,354287,1185067 +99859,373,7,256347,1338151 +99860,269,9,220820,1332522 +99861,413,11,220287,1513394 +99862,244,3,6972,1401644 +99863,333,2,20242,13942 +99864,204,9,62046,964168 +99865,3,5,85350,576 +99866,317,10,116306,1063268 +99867,269,9,2428,7512 +99868,209,7,9423,1389598 +99869,317,10,70327,114427 +99870,204,9,246655,1409701 +99871,234,1,65904,55728 +99872,317,10,73835,567755 +99873,209,7,294254,1435194 +99874,413,11,29343,898 +99875,234,1,24363,12640 +99876,289,6,17421,1100798 +99877,234,1,64805,552975 +99878,66,11,284053,1814581 +99879,3,5,41970,1351145 +99880,317,10,98566,120015 +99881,204,9,105059,35154 +99882,158,2,200505,1454534 +99883,226,2,9778,1524659 +99884,415,3,120497,1394690 +99885,269,9,9828,1685813 +99886,234,1,123969,1090090 +99887,357,3,58244,1410598 +99888,179,2,19255,1552353 +99889,105,7,11697,1600049 +99890,196,7,124963,1342251 +99891,387,10,11537,65981 +99892,289,6,291270,1584365 +99893,395,3,10948,15810 +99894,262,6,314065,1466255 +99895,269,9,407448,1327160 +99896,317,10,335869,1504964 +99897,317,10,13794,38793 +99898,234,1,157293,1170143 +99899,273,7,53128,484158 +99900,286,3,49258,238811 +99901,317,10,64725,31603 +99902,127,3,188161,1488513 +99903,317,10,41076,141619 +99904,234,1,24671,9198 +99905,77,10,108,1132 +99906,387,10,178809,1204187 +99907,53,2,413421,1755492 +99908,204,9,11235,1402392 +99909,72,11,246655,1384372 +99910,204,9,54388,30685 +99911,5,10,56135,27916 +99912,258,9,13676,1447587 +99913,387,10,31165,10704 +99914,209,7,9835,1398979 +99915,53,2,14537,1547579 +99916,74,5,74,1747927 +99917,317,10,55534,20801 +99918,234,1,22025,1134988 +99919,387,10,59040,69973 +99920,273,7,265712,1537405 +99921,97,7,35253,114358 +99922,373,7,130948,32671 +99923,3,5,32275,32996 +99924,234,1,93891,81273 +99925,269,9,29786,936638 +99926,5,10,283489,1352956 +99927,175,5,341174,1391699 +99928,203,1,9042,1346957 +99929,204,9,96089,10604 +99930,234,1,404459,1665249 +99931,269,9,10674,1451228 +99932,317,10,37053,7449 +99933,5,10,10724,66812 +99934,413,11,352327,1491845 +99935,384,5,10727,1418310 +99936,5,10,33839,67775 +99937,53,2,19765,1032825 +99938,413,11,11859,6668 +99939,387,10,209271,1070555 +99940,3,5,54523,5556 +99941,3,5,26390,961664 +99942,415,3,35002,9402 +99943,5,10,19936,1304332 +99944,317,10,15830,126774 +99945,203,1,13849,1413950 +99946,204,9,43143,1018371 +99947,45,9,11472,1562447 +99948,234,1,39345,129952 +99949,105,7,294254,77949 +99950,373,7,333663,1419603 +99951,303,3,20919,1043649 +99952,209,7,50725,12945 +99953,413,11,7980,1377 +99954,198,6,93856,1547193 +99955,317,10,450530,1323533 +99956,179,2,12536,1559632 +99957,234,1,11908,70890 +99958,387,10,205587,74315 +99959,74,5,954,1761122 +99960,190,7,1624,12587 +99961,413,11,302699,111456 +99962,40,1,27814,1856491 +99963,234,1,11536,6593 +99964,317,10,356326,1500724 +99965,209,7,4133,1400537 +99966,288,3,24448,587735 +99967,234,1,11001,56911 +99968,180,7,84030,1302593 +99969,413,11,25796,1918 +99970,53,2,24821,971116 +99971,3,5,28480,100902 +99972,413,11,218582,29812 +99973,413,11,296524,18617 +99974,317,10,60173,63937 +99975,357,3,1966,1327026 +99976,148,9,81030,17670 +99977,301,5,11370,1440494 +99978,234,1,9900,60149 +99979,413,11,171648,105566 +99980,208,2,347031,403314 +99981,234,1,94725,97755 +99982,204,9,211059,1289957 +99983,333,2,3478,27187 +99984,234,1,422878,1218724 +99985,397,7,357390,1089943 +99986,234,1,127144,1271448 +99987,387,10,6976,30700 +99988,113,9,11880,1330898 +99989,3,5,48118,10253 +99990,269,9,2567,2366 +99991,234,1,38189,12453 +99992,317,10,76829,25950 +99993,387,10,34084,1019068 +99994,317,10,76097,55333 +99995,373,7,75162,1561880 +99996,269,9,334299,65581 +99997,148,9,251,16615 +99998,413,11,33557,156 +99999,234,1,25684,94085 +100000,5,10,27549,1222538 +100001,234,1,111014,937775 +100002,5,10,156627,1471965 +100003,387,10,1813,19242 +100004,317,10,199374,1077290 +100005,273,7,323315,1425661 +100006,204,9,259593,1027081 +100007,77,10,10005,61848 +100008,75,5,126889,1190661 +100009,387,10,35,162931 +100010,303,3,273404,1445372 +100011,387,10,2463,25237 +100012,234,1,57307,225889 +100013,269,9,315010,1443031 +100014,3,5,31671,3351 +100015,3,5,8491,56005 +100016,204,9,78734,1096786 +100017,3,5,74924,106502 +100018,53,2,98339,1179442 +100019,387,10,844,12453 +100020,196,7,130948,1298866 +100021,204,9,204922,1414089 +100022,158,2,41283,1400085 +100023,53,2,257345,963971 +100024,333,2,331075,1759500 +100025,198,6,203351,1097209 +100026,317,10,195022,1180694 +100027,317,10,77882,18266 +100028,75,5,8204,1402032 +100029,304,10,33336,18565 +100030,387,10,22292,116326 +100031,83,2,354859,1428911 +100032,317,10,338421,26767 +100033,203,1,338189,1528011 +100034,203,1,208529,1732670 +100035,175,5,283445,1059590 +100036,204,9,152570,9062 +100037,394,7,145135,1412452 +100038,105,7,84479,41572 +100039,3,5,41963,10639 +100040,317,10,245268,96253 +100041,413,11,288710,1168119 +100042,273,7,75174,63421 +100043,87,7,10733,1534893 +100044,113,9,9314,49345 +100045,286,3,142412,1117184 +100046,3,5,85610,10150 +100047,373,7,87826,1537463 +100048,15,6,332567,1512667 +100049,182,8,47112,1536109 +100050,317,10,376660,983909 +100051,269,9,117913,53626 +100052,169,3,218778,1085298 +100053,317,10,330711,227569 +100054,245,3,300983,1143559 +100055,413,11,9905,9001 +100056,387,10,152042,1254559 +100057,105,7,120497,30256 +100058,66,11,9475,938105 +100059,3,5,2861,24846 +100060,3,5,64456,97048 +100061,5,10,9785,59250 +100062,148,9,10440,17221 +100063,234,1,114096,8482 +100064,269,9,410537,1727202 +100065,394,7,1586,15432 +100066,387,10,293271,1364786 +100067,333,2,263115,1547670 +100068,301,5,12113,8673 +100069,204,9,163,8794 +100070,317,10,66193,1187847 +100071,333,2,64928,4128 +100072,317,10,200511,1181360 +100073,234,1,339669,43099 +100074,53,2,141,7238 +100075,413,11,168259,6668 +100076,148,9,280092,21323 +100077,387,10,83831,1084954 +100078,204,9,18317,1529525 +100079,207,3,8619,59040 +100080,158,2,5289,1404744 +100081,413,11,369894,222357 +100082,232,10,19618,84939 +100083,317,10,64414,19084 +100084,269,9,272878,17148 +100085,287,3,26517,11161 +100086,52,10,127380,10 +100087,413,11,10137,61298 +100088,273,7,120942,227204 +100089,45,9,10950,1765769 +100090,234,1,118131,1496 +100091,87,7,199575,1505086 +100092,328,6,17609,1400328 +100093,413,11,29111,1169694 +100094,413,11,125257,93102 +100095,204,9,315837,1717984 +100096,97,7,76170,1338372 +100097,182,8,121598,1179444 +100098,198,6,181533,1869380 +100099,3,5,65282,11442 +100100,5,10,344560,1469184 +100101,413,11,601,9966 +100102,317,10,77875,65316 +100103,204,9,27105,1544732 +100104,234,1,70498,10930 +100105,387,10,67377,212903 +100106,317,10,36634,82790 +100107,234,1,260826,137349 +100108,10,3,118,60068 +100109,158,2,209112,1661397 +100110,387,10,3061,29962 +100111,234,1,68976,70862 +100112,53,2,86920,1313993 +100113,127,3,72105,1455497 +100114,3,5,9951,60804 +100115,289,6,45665,112994 +100116,273,7,13279,8320 +100117,269,9,249021,1326488 +100118,196,7,1271,113097 +100119,234,1,7085,33542 +100120,234,1,47956,66224 +100121,234,1,15873,6778 +100122,143,7,242310,9430 +100123,373,7,177572,1397844 +100124,273,7,13680,36805 +100125,105,7,17136,1594360 +100126,395,3,10198,1337303 +100127,373,7,95516,117232 +100128,328,6,280092,1387185 +100129,387,10,49815,1443655 +100130,413,11,26758,9852 +100131,317,10,322487,129097 +100132,53,2,84030,147211 +100133,317,10,64678,119417 +100134,221,3,8467,1704252 +100135,75,5,241239,1410216 +100136,244,3,2662,1603314 +100137,209,7,206647,40827 +100138,105,7,135718,1323142 +100139,373,7,50126,1692502 +100140,148,9,127585,1384360 +100141,262,6,664,25453 +100142,179,2,522,1392109 +100143,234,1,84071,71732 +100144,3,5,341491,1129 +100145,207,3,10796,59040 +100146,53,2,88042,935719 +100147,37,3,59803,1656279 +100148,52,10,332979,24294 +100149,387,10,11017,19292 +100150,113,9,613,1425848 +100151,204,9,332872,1207976 +100152,387,10,4413,37160 +100153,35,10,284053,7624 +100154,287,3,85230,75833 +100155,387,10,77949,582918 +100156,148,9,32552,1461547 +100157,113,9,25376,1723529 +100158,3,5,64398,416764 +100159,398,9,9102,1178908 +100160,273,7,310568,937783 +100161,39,3,2288,1673059 +100162,387,10,214100,125267 +100163,317,10,2771,27976 +100164,269,9,66893,98508 +100165,3,5,98364,9057 +100166,317,10,18414,58955 +100167,23,9,163,1586890 +100168,273,7,109213,40150 +100169,387,10,12481,70334 +100170,269,9,12716,53784 +100171,317,10,21041,92410 +100172,105,7,249703,1398613 +100173,200,3,354859,1649521 +100174,317,10,11880,57581 +100175,148,9,324670,1327893 +100176,273,7,12237,72175 +100177,387,10,408381,1138344 +100178,413,11,70695,1006915 +100179,3,5,32716,109609 +100180,52,10,15379,136419 +100181,413,11,40139,1061 +100182,317,10,167810,30614 +100183,327,7,308269,1447901 +100184,3,5,18696,25826 +100185,387,10,18682,130319 +100186,189,3,97614,1384394 +100187,87,7,7340,1588238 +100188,301,5,9529,1391594 +100189,387,10,47404,25168 +100190,286,3,69974,557661 +100191,161,6,338189,1646573 +100192,387,10,809,12083 +100193,143,7,328429,1636720 +100194,273,7,47886,29501 +100195,387,10,262786,1207384 +100196,413,11,2786,28097 +100197,175,5,392271,1765171 +100198,204,9,38437,120450 +100199,22,9,10727,1584238 +100200,413,11,12453,72285 +100201,373,7,10909,548432 +100202,234,1,17825,64764 +100203,269,9,26149,7856 +100204,175,5,33613,1455310 +100205,273,7,28448,58296 +100206,132,2,17332,1409817 +100207,105,7,26861,111181 +100208,327,7,354859,1547520 +100209,3,5,91186,25471 +100210,10,3,378441,1797469 +100211,317,10,82481,31892 +100212,387,10,2441,16435 +100213,258,9,3933,1451301 +100214,166,9,2503,1406812 +100215,86,3,10999,16552 +100216,105,7,50123,42304 +100217,273,7,315880,1259 +100218,180,7,35021,1582946 +100219,52,10,42515,13620 +100220,387,10,42515,130319 +100221,317,10,27561,1219130 +100222,236,8,203833,1406195 +100223,204,9,45184,9062 +100224,413,11,291164,21267 +100225,413,11,6687,51068 +100226,234,1,9968,57199 +100227,269,9,436,1624029 +100228,210,9,354859,1884747 +100229,204,9,96713,33020 +100230,204,9,1687,9061 +100231,234,1,387845,1591382 +100232,209,7,8414,1337468 +100233,317,10,31856,1103820 +100234,190,7,413762,1811617 +100235,403,10,43811,22598 +100236,234,1,369033,120669 +100237,204,9,64215,1354326 +100238,122,8,337339,1896951 +100239,204,9,99861,1326451 +100240,169,3,37534,1412986 +100241,234,1,120129,532227 +100242,190,7,351211,1652046 +100243,234,1,370755,4429 +100244,317,10,70966,235417 +100245,204,9,68737,23770 +100246,77,10,13676,80673 +100247,136,1,13090,1473811 +100248,262,6,16436,1723851 +100249,317,10,33460,85725 +100250,200,3,297762,1411333 +100251,413,11,113638,42065 +100252,273,7,180299,1098740 +100253,204,9,39219,5187 +100254,387,10,35652,114484 +100255,289,6,149870,1456615 +100256,72,11,10733,1552336 +100257,105,7,27814,1856485 +100258,3,5,28533,45031 +100259,244,3,9514,57722 +100260,317,10,76784,27954 +100261,158,2,9914,1346953 +100262,143,7,273481,1368866 +100263,22,9,8619,1619082 +100264,317,10,202215,1186361 +100265,331,3,302699,1729090 +100266,154,3,1480,81538 +100267,234,1,24978,92937 +100268,413,11,113038,1056200 +100269,234,1,52021,45989 +100270,317,10,153518,239 +100271,180,7,14703,5809 +100272,37,3,4248,1455461 +100273,234,1,98289,95262 +100274,204,9,25520,22157 +100275,399,9,53210,573541 +100276,234,1,191476,568262 +100277,413,11,125063,1394150 +100278,226,2,18405,1842589 +100279,273,7,43139,31291 +100280,234,1,77246,581423 +100281,234,1,13630,447777 +100282,234,1,5,2294 +100283,413,11,7219,53197 +100284,273,7,62439,459872 +100285,333,2,59296,1460357 +100286,234,1,91217,57383 +100287,5,10,123047,1571428 +100288,324,3,222388,929925 +100289,234,1,17136,68 +100290,72,11,11056,16984 +100291,387,10,130593,1155148 +100292,143,7,15440,1336933 +100293,75,5,107250,1834280 +100294,5,10,149870,1129380 +100295,314,2,46738,1536183 +100296,413,11,61552,17137 +100297,97,7,329865,1646497 +100298,75,5,398633,1623943 +100299,273,7,2021,7741 +100300,262,6,9425,1392911 +100301,53,2,857,498 +100302,270,9,266856,1816126 +100303,232,10,52302,1175698 +100304,3,5,10053,17629 +100305,289,6,13225,1113194 +100306,3,5,73545,55518 +100307,269,9,205584,9343 +100308,234,1,84823,53914 +100309,234,1,44540,67632 +100310,204,9,183412,1419621 +100311,317,10,27470,95609 +100312,3,5,1578,1044 +100313,226,2,273404,1445363 +100314,3,5,101998,17393 +100315,269,9,15414,1528368 +100316,301,5,45019,1431630 +100317,413,11,374475,51714 +100318,234,1,104391,5602 +100319,148,9,345922,1718777 +100320,3,5,73969,9080 +100321,413,11,127864,53230 +100322,333,2,37936,1447122 +100323,234,1,347264,587567 +100324,373,7,239566,42034 +100325,387,10,11537,18899 +100326,105,7,18586,42650 +100327,203,1,419430,1456358 +100328,234,1,77060,237285 +100329,40,1,464111,1646828 +100330,394,7,354287,1373712 +100331,317,10,127521,78217 +100332,203,1,21208,1399521 +100333,234,1,14931,58294 +100334,234,1,19050,59649 +100335,182,8,332662,1570524 +100336,249,7,11351,1407814 +100337,52,10,153165,1503 +100338,317,10,51247,7018 +100339,273,7,213681,17767 +100340,413,11,208091,1155533 +100341,413,11,21052,950 +100342,269,9,58080,32311 +100343,4,6,337339,1907215 +100344,104,7,8617,1546115 +100345,273,7,43548,67973 +100346,143,7,209032,1192401 +100347,204,9,83015,958944 +100348,311,9,5924,1411264 +100349,360,3,17144,1436534 +100350,196,7,294272,1414177 +100351,204,9,142656,1132430 +100352,113,9,197,15878 +100353,273,7,3941,34452 +100354,138,3,18317,1529526 +100355,127,3,28090,147207 +100356,203,1,79935,1447091 +100357,234,1,148636,21377 +100358,210,9,664,1589724 +100359,317,10,36236,1327658 +100360,22,9,348631,1865194 +100361,328,6,203819,1355539 +100362,273,7,38766,30922 +100363,209,7,33107,1085522 +100364,413,11,33345,1125585 +100365,140,9,126889,74089 +100366,182,8,159667,1849514 +100367,234,1,215579,157301 +100368,317,10,333367,66022 +100369,203,1,10929,1427438 +100370,234,1,229304,1263929 +100371,234,1,128669,148849 +100372,371,3,12,1556615 +100373,55,5,352327,1491850 +100374,74,5,2300,1870675 +100375,234,1,73869,570365 +100376,317,10,215373,107837 +100377,360,3,7220,1490943 +100378,413,11,38742,8635 +100379,269,9,37926,1772856 +100380,148,9,3309,4126 +100381,413,11,88558,43792 +100382,53,2,64972,957249 +100383,317,10,426230,82885 +100384,234,1,12903,113896 +100385,413,11,324181,1424222 +100386,3,5,41857,40183 +100387,250,11,246415,1439406 +100388,60,1,66812,1082578 +100389,317,10,42725,52140 +100390,387,10,58790,107301 +100391,53,2,4248,35766 +100392,234,1,13823,16513 +100393,234,1,132363,20019 +100394,317,10,83782,146793 +100395,234,1,6964,17698 +100396,234,1,342765,553252 +100397,234,1,29100,31963 +100398,333,2,21135,1461764 +100399,52,10,69103,34479 +100400,204,9,16820,1046700 +100401,337,2,329440,63798 +100402,52,10,111302,1496 +100403,208,2,209263,1524763 +100404,186,6,395992,1770981 +100405,273,7,356842,1592877 +100406,182,8,283995,1403412 +100407,187,11,408616,1354925 +100408,317,10,203217,1185621 +100409,317,10,11354,24173 +100410,12,10,206647,9856 +100411,317,10,86828,10707 +100412,77,10,9472,57633 +100413,273,7,28297,7647 +100414,317,10,140231,85387 +100415,317,10,72655,41969 +100416,209,7,42188,1376807 +100417,277,3,887,13575 +100418,387,10,8954,56413 +100419,97,7,310133,92376 +100420,413,11,9577,33507 +100421,413,11,44716,1069614 +100422,148,9,88036,933575 +100423,75,5,8470,1399877 +100424,244,3,4012,181164 +100425,398,9,10796,966100 +100426,204,9,339419,1027140 +100427,234,1,47794,19069 +100428,204,9,3057,1360847 +100429,412,9,69668,1600612 +100430,277,3,44398,13322 +100431,158,2,16996,1532734 +100432,3,5,37992,103050 +100433,234,1,190410,1277587 +100434,53,2,75174,1305741 +100435,28,9,2924,1803768 +100436,413,11,31127,1429809 +100437,289,6,84617,78615 +100438,317,10,321039,1418227 +100439,204,9,14916,1375532 +100440,52,10,38783,12415 +100441,234,1,3638,33433 +100442,277,3,127372,1431511 +100443,119,7,46387,928205 +100444,394,7,55420,1073059 +100445,413,11,28325,53197 +100446,32,8,122019,1421191 +100447,273,7,75745,120944 +100448,3,5,107693,138326 +100449,77,10,9815,59523 +100450,234,1,4916,39996 +100451,75,5,267852,1622324 +100452,75,5,102382,1399467 +100453,3,5,64499,52449 +100454,53,2,62213,557 +100455,317,10,56339,73864 +100456,317,10,86118,932908 +100457,317,10,31161,83524 +100458,203,1,1986,1470209 +100459,273,7,257454,1297916 +100460,328,6,19995,1391692 +100461,381,9,4413,1406897 +100462,102,3,2675,1674662 +100463,77,10,9677,58483 +100464,234,1,8391,55439 +100465,269,9,127864,1129799 +100466,143,7,76170,113075 +100467,75,5,203833,1339054 +100468,317,10,174309,588736 +100469,387,10,27703,29433 +100470,333,2,19101,1319166 +100471,3,5,258147,122085 +100472,148,9,152748,984533 +100473,413,11,99767,114827 +100474,373,7,8470,1400072 +100475,269,9,5544,1154620 +100476,204,9,15321,1462071 +100477,53,2,38325,238624 +100478,360,9,693,1342241 +100479,234,1,73872,20587 +100480,204,9,43093,11125 +100481,234,1,25078,104688 +100482,234,1,82409,927851 +100483,234,1,76229,19606 +100484,3,5,76229,10602 +100485,158,2,284289,1339456 +100486,52,10,128169,13235 +100487,234,1,84178,221944 +100488,213,10,38625,1429337 +100489,204,9,153,17116 +100490,234,1,17144,43439 +100491,122,8,167,1549175 +100492,53,2,285400,4350 +100493,413,11,405473,16362 +100494,387,10,14370,57359 +100495,317,10,134368,131119 +100496,226,2,17971,1404271 +100497,387,10,44115,57631 +100498,387,10,30640,1546 +100499,387,10,5608,18503 +100500,341,2,11370,1798033 +100501,314,2,312221,1469619 +100502,108,10,118760,1281214 +100503,148,9,15090,1667528 +100504,304,10,22292,115466 +100505,273,7,9472,10572 +100506,7,3,116463,1691497 +100507,387,10,10897,18195 +100508,413,11,147815,37242 +100509,53,2,339994,1706504 +100510,273,7,74961,551674 +100511,317,10,19325,106827 +100512,5,10,15472,73799 +100513,269,9,128270,20569 +100514,3,5,356500,1147899 +100515,3,5,635,9165 +100516,5,10,242097,1178511 +100517,317,10,419459,1284099 +100518,226,2,11024,1182909 +100519,234,1,390782,1599119 +100520,234,1,86942,55119 +100521,286,3,74395,203350 +100522,53,2,189197,1303052 +100523,273,7,426253,1174095 +100524,273,7,344039,564111 +100525,373,7,222935,1338976 +100526,413,11,178,71194 +100527,3,5,62034,45671 +100528,208,2,158908,75628 +100529,387,10,80771,141061 +100530,53,2,204553,1293614 +100531,387,10,5646,4590 +100532,234,1,56947,35208 +100533,317,10,64316,1042643 +100534,413,11,12704,34484 +100535,226,2,17295,1588522 +100536,53,2,19901,27749 +100537,25,2,419192,1509636 +100538,234,1,5279,9789 +100539,104,7,693,1550829 +100540,333,2,186869,1835568 +100541,166,9,13483,1395677 +100542,286,3,102428,106697 +100543,269,9,28510,10936 +100544,234,1,330431,231004 +100545,234,1,299165,102095 +100546,105,7,42204,142611 +100547,234,1,181876,238954 +100548,234,1,8930,56836 +100549,175,5,14510,91805 +100550,3,5,6522,52055 +100551,52,10,28387,125504 +100552,127,3,384737,1825884 +100553,273,7,74527,4082 +100554,387,10,35032,26160 +100555,105,7,36075,1180039 +100556,273,7,374473,1528 +100557,97,7,18,548439 +100558,298,5,9358,1399071 +100559,387,10,223497,149104 +100560,160,3,242310,63423 +100561,187,11,72431,1376899 +100562,22,9,4147,1446993 +100563,403,10,55836,223230 +100564,196,7,58060,1400841 +100565,3,5,34652,18576 +100566,97,7,2503,1338372 +100567,298,5,296524,1399071 +100568,269,9,696,10441 +100569,317,10,319396,1302737 +100570,3,5,1049,1301 +100571,269,9,204384,28622 +100572,148,9,22881,948223 +100573,234,1,150049,1270257 +100574,239,5,392818,1754085 +100575,53,2,93492,1743905 +100576,413,11,8340,1566434 +100577,360,3,125490,1179443 +100578,269,9,177677,9967 +100579,301,5,159667,1415577 +100580,3,5,64156,57913 +100581,398,9,181533,1204225 +100582,273,7,2323,1729 +100583,105,7,150712,1009005 +100584,311,9,40466,1466443 +100585,273,7,28438,97047 +100586,273,7,172897,5340 +100587,5,10,130957,1092485 +100588,97,7,287636,1345264 +100589,166,9,70667,1351716 +100590,413,11,36402,1177175 +100591,3,5,374614,417754 +100592,387,10,63190,236588 +100593,373,7,9529,1408284 +100594,53,2,11600,1316805 +100595,269,9,325039,169743 +100596,236,8,69668,1877719 +100597,3,5,30996,1371271 +100598,234,1,78377,24425 +100599,234,1,33570,110922 +100600,187,11,270403,1136890 +100601,204,9,110540,3488 +100602,244,3,49013,8153 +100603,160,3,189,23285 +100604,413,11,375366,1733492 +100605,204,9,18776,1461988 +100606,77,10,9389,57558 +100607,148,9,39833,9587 +100608,75,5,37936,1102820 +100609,62,3,118,1336716 +100610,360,3,82624,1600788 +100611,239,5,9946,113089 +100612,273,7,4248,35753 +100613,388,9,198663,1367484 +100614,273,7,14370,153 +100615,3,5,326255,1647879 +100616,387,10,336004,74513 +100617,387,10,524,7163 +100618,234,1,403,5696 +100619,204,9,80316,1025726 +100620,289,6,291270,1453591 +100621,234,1,67794,54441 +100622,3,5,59419,94312 +100623,273,7,84185,1341534 +100624,162,6,75564,1204523 +100625,234,1,31671,18592 +100626,317,10,42678,2901 +100627,234,1,310602,206476 +100628,317,10,270899,96627 +100629,3,5,9462,57726 +100630,234,1,124639,1080311 +100631,74,5,7326,1866801 +100632,83,2,33592,91054 +100633,3,5,10862,2950 +100634,3,5,241593,1545301 +100635,105,7,10440,71473 +100636,273,7,31509,14283 +100637,273,7,9502,947 +100638,158,2,70667,1345267 +100639,317,10,224243,231199 +100640,268,7,241239,1468554 +100641,234,1,36432,105802 +100642,234,1,10596,26767 +100643,234,1,79781,587970 +100644,60,1,5915,82133 +100645,317,10,549,7482 +100646,289,6,12593,1458338 +100647,97,7,337339,1367493 +100648,413,11,9542,7715 +100649,3,5,15177,7746 +100650,226,2,12103,1286355 +100651,221,3,270851,190040 +100652,53,2,505,6924 +100653,387,10,12309,12991 +100654,394,7,324930,1402518 +100655,179,2,381518,1808366 +100656,234,1,82485,240735 +100657,269,9,13954,15368 +100658,105,7,9870,53012 +100659,204,9,39219,1458040 +100660,105,7,2132,21849 +100661,387,10,300690,1427687 +100662,164,3,177677,1373558 +100663,333,2,42501,1654575 +100664,87,7,9352,1586396 +100665,175,5,6933,1560273 +100666,234,1,73501,1513832 +100667,122,8,263115,1530720 +100668,317,10,51358,13953 +100669,317,10,202941,18579 +100670,127,3,9352,1586347 +100671,45,9,4547,1413087 +100672,166,9,2567,1378745 +100673,387,10,27622,98441 +100674,53,2,11979,12205 +100675,328,6,10929,1394752 +100676,204,9,14979,67240 +100677,11,6,12477,555254 +100678,3,5,11600,962907 +100679,188,8,69,1680299 +100680,413,11,45627,111418 +100681,148,9,13788,1323759 +100682,234,1,65496,25340 +100683,360,9,10320,1341776 +100684,387,10,18990,30700 +100685,234,1,30034,3428 +100686,234,1,76640,543568 +100687,164,3,2454,1327838 +100688,398,9,132363,1367488 +100689,387,10,11798,70520 +100690,333,2,18405,1276405 +100691,234,1,19371,62043 +100692,3,5,73144,568338 +100693,250,11,328429,1636721 +100694,3,5,29372,12418 +100695,105,7,122928,1099012 +100696,333,2,49847,1187590 +100697,413,11,8847,56073 +100698,317,10,37954,31843 +100699,3,5,3035,29811 +100700,234,1,292625,111481 +100701,317,10,16175,79899 +100702,317,10,261273,1427780 +100703,395,3,13205,1815481 +100704,3,5,11886,60684 +100705,328,6,1381,1447148 +100706,5,10,8619,55475 +100707,234,1,28527,211173 +100708,234,1,89086,37362 +100709,413,11,10585,65682 +100710,234,1,133521,1097458 +100711,75,5,97365,1727613 +100712,360,3,9532,1333988 +100713,387,10,266373,95318 +100714,346,3,203833,1406200 +100715,60,1,27114,1251963 +100716,200,3,6171,1401105 +100717,53,2,41073,10011 +100718,5,10,257331,1304598 +100719,76,2,70981,75081 +100720,273,7,357706,1123764 +100721,52,10,177572,1077830 +100722,226,2,436,1407011 +100723,132,2,186869,1412223 +100724,317,10,159770,201799 +100725,387,10,10860,68319 +100726,269,9,39824,1181130 +100727,317,10,41097,102511 +100728,148,9,40807,53114 +100729,226,2,110412,1590923 +100730,3,5,267793,19464 +100731,105,7,427680,1758450 +100732,387,10,140607,15344 +100733,306,7,211059,1604771 +100734,317,10,57918,73690 +100735,317,10,26030,3831 +100736,373,7,4011,1341781 +100737,352,3,2300,1870697 +100738,273,7,29117,8619 +100739,52,10,238302,1272711 +100740,234,1,54825,7314 +100741,413,11,60505,13673 +100742,234,1,147618,93905 +100743,234,1,31450,1667712 +100744,113,9,77338,1724197 +100745,273,7,10703,57304 +100746,141,7,10865,936765 +100747,187,11,210913,1405254 +100748,204,9,122,1316 +100749,108,10,241374,1041606 +100750,228,2,11370,1798032 +100751,234,1,284289,930644 +100752,181,7,45132,1551846 +100753,166,9,287,1534486 +100754,169,3,340275,1428190 +100755,203,1,6973,1345635 +100756,269,9,43231,25802 +100757,317,10,204800,1443001 +100758,327,7,414977,1676796 +100759,317,10,332839,223335 +100760,373,7,169881,1519296 +100761,97,7,277355,1338480 +100762,273,7,46494,20098 +100763,273,7,312174,1383185 +100764,413,11,228205,59930 +100765,333,2,284052,1574046 +100766,413,11,1995,1592 +100767,234,1,124517,132305 +100768,296,3,76170,1527920 +100769,64,6,8916,1780714 +100770,387,10,11202,1776 +100771,387,10,4497,793 +100772,3,5,387558,1643381 +100773,403,10,14029,44957 +100774,387,10,354979,1377740 +100775,204,9,35651,1590603 +100776,234,1,28681,99083 +100777,387,10,131739,555277 +100778,269,9,47238,1599049 +100779,317,10,63217,145211 +100780,127,3,40863,552392 +100781,289,6,9297,1354804 +100782,413,11,59408,22154 +100783,45,9,302828,1573467 +100784,52,10,52991,30008 +100785,269,9,22267,5670 +100786,387,10,32558,2748 +100787,273,7,36243,550583 +100788,234,1,86850,933761 +100789,269,9,273106,136738 +100790,105,7,241254,1770856 +100791,234,1,47059,138006 +100792,189,3,1251,1345620 +100793,317,10,120615,10077 +100794,105,7,33839,14647 +100795,413,11,61950,18333 +100796,234,1,327383,212674 +100797,53,2,98557,1018710 +100798,234,1,284306,225014 +100799,317,10,57351,58037 +100800,317,10,398786,1665422 +100801,287,3,287903,1569348 +100802,262,6,76757,937975 +100803,175,5,243940,1387186 +100804,287,3,924,1181767 +100805,314,2,167073,1327213 +100806,77,10,577,7794 +100807,273,7,31275,1031154 +100808,110,1,9836,58063 +100809,148,9,285270,1275661 +100810,234,1,51902,53859 +100811,148,9,163791,1312792 +100812,226,2,924,1146540 +100813,303,3,10727,1418308 +100814,53,2,10389,1104278 +100815,317,10,408203,1000952 +100816,226,2,130948,1298934 +100817,327,7,25241,1765281 +100818,232,10,14510,27992 +100819,286,3,383914,1494109 +100820,387,10,11185,56974 +100821,20,2,31911,1549583 +100822,3,5,9779,1527 +100823,413,11,43434,984014 +100824,204,9,338518,1402881 +100825,286,3,220809,1168680 +100826,368,7,11577,74811 +100827,5,10,39148,78322 +100828,3,5,310133,1094152 +100829,317,10,359245,939452 +100830,413,11,62441,97055 +100831,203,1,38322,1458202 +100832,273,7,3513,32347 +100833,234,1,402582,60074 +100834,403,10,815,15870 +100835,286,3,93350,56906 +100836,387,10,187737,25821 +100837,349,1,1267,1447497 +100838,87,7,339342,1466676 +100839,317,10,299730,1026369 +100840,97,7,343173,1454140 +100841,53,2,11917,51035 +100842,5,10,286267,1202100 +100843,234,1,31397,63937 +100844,387,10,32043,110833 +100845,234,1,21711,12964 +100846,52,10,10948,61758 +100847,180,7,143946,1547495 +100848,203,1,443319,1453143 +100849,234,1,85640,543946 +100850,234,1,9366,10723 +100851,127,3,384737,1825888 +100852,262,6,9425,1397846 +100853,234,1,50161,184927 +100854,413,11,28110,99726 +100855,306,7,2105,548435 +100856,3,5,11688,1452489 +100857,53,2,40864,124862 +100858,249,7,11880,1340117 +100859,105,7,26518,399477 +100860,52,10,272426,56598 +100861,245,3,10804,1393275 +100862,286,3,22448,1183158 +100863,127,3,384737,1463691 +100864,186,6,19995,1447503 +100865,387,10,50780,566273 +100866,64,6,79935,1447089 +100867,273,7,204922,1999 +100868,394,7,127585,9651 +100869,287,3,28170,99920 +100870,169,3,45019,1550223 +100871,333,2,935,11837 +100872,52,10,322922,136154 +100873,105,7,97206,65820 +100874,77,10,9779,59187 +100875,314,2,167,1523419 +100876,22,9,274857,1476361 +100877,234,1,244,3239 +100878,158,2,245168,1149777 +100879,105,7,3057,29938 +100880,204,9,10389,1307307 +100881,303,3,274479,1608763 +100882,234,1,43741,116607 +100883,209,7,218778,1408528 +100884,60,1,522,1486978 +100885,317,10,287483,1354319 +100886,317,10,42734,3376 +100887,413,11,28031,1217 +100888,60,1,11697,1340359 +100889,60,1,42501,1801506 +100890,387,10,66187,32013 +100891,387,10,371942,1173636 +100892,317,10,80368,1413292 +100893,333,2,30363,1633538 +100894,53,2,19140,33176 +100895,298,5,41283,91122 +100896,175,5,137504,1530409 +100897,234,1,364088,1523168 +100898,413,11,11647,21905 +100899,234,1,105325,137195 +100900,387,10,30202,11845 +100901,268,7,3933,1544903 +100902,234,1,85834,237653 +100903,346,3,8619,1619094 +100904,317,10,218351,1079871 +100905,317,10,332741,1532333 +100906,373,7,4806,1401562 +100907,273,7,291865,549340 +100908,317,10,128311,1085009 +100909,317,10,341201,112391 +100910,273,7,14069,81722 +100911,234,1,54715,9181 +100912,371,3,87826,935499 +100913,413,11,98277,67036 +100914,234,1,40221,9200 +100915,234,1,24458,91641 +100916,3,5,63139,37004 +100917,273,7,176,2148 +100918,234,1,346443,1429868 +100919,234,1,332788,1304672 +100920,3,5,39176,6603 +100921,234,1,13849,80384 +100922,317,10,33314,82620 +100923,3,5,16436,5865 +100924,143,7,10070,1235786 +100925,234,1,54566,150940 +100926,413,11,28571,17762 +100927,219,11,10066,1552549 +100928,317,10,43364,97202 +100929,413,11,2197,23299 +100930,204,9,9457,53813 +100931,286,3,458428,1820245 +100932,97,7,41283,548445 +100933,234,1,16791,1387618 +100934,97,7,418437,1760573 +100935,143,7,333352,1395023 +100936,198,6,50725,1387247 +100937,234,1,26182,94180 +100938,148,9,188826,1567297 +100939,53,2,4459,38229 +100940,196,7,936,1511729 +100941,3,5,43092,36967 +100942,204,9,197849,233721 +100943,53,2,21801,1183915 +100944,52,10,115712,1061942 +100945,317,10,75578,43708 +100946,387,10,49009,138183 +100947,387,10,11975,1776 +100948,333,2,274479,1406584 +100949,160,3,76163,1350254 +100950,219,11,80713,1617588 +100951,317,10,10047,2355 +100952,108,10,17820,98751 +100953,53,2,5,62277 +100954,269,9,30175,1392240 +100955,3,5,64414,37988 +100956,5,10,9585,58081 +100957,234,1,94674,135335 +100958,105,7,36785,116213 +100959,387,10,11645,20827 +100960,234,1,85429,257213 +100961,53,2,93350,1612793 +100962,53,2,488,6606 +100963,413,11,24831,898 +100964,413,11,2108,6453 +100965,234,1,31634,5030 +100966,179,2,1381,1319389 +100967,189,3,168027,1368885 +100968,411,9,37710,5673 +100969,413,11,88794,74319 +100970,208,2,347945,1618782 +100971,234,1,14829,148098 +100972,413,11,4257,21223 +100973,413,11,393367,1153023 +100974,387,10,9765,59022 +100975,388,9,2046,1455288 +100976,234,1,150223,934994 +100977,105,7,286372,57282 +100978,46,5,74,1747998 +100979,273,7,331588,4140 +100980,3,5,18575,3561 +100981,234,1,112456,1023720 +100982,387,10,285400,233111 +100983,234,1,214187,1157604 +100984,234,1,32451,1046353 +100985,148,9,17175,1537852 +100986,3,5,270672,1400682 +100987,287,3,109439,6446 +100988,53,2,83890,1143008 +100989,3,5,408537,584193 +100990,52,10,52868,70005 +100991,3,5,53150,1183567 +100992,380,3,809,1677820 +100993,209,7,8916,1404546 +100994,75,5,9032,1408359 +100995,234,1,360603,88077 +100996,52,10,56435,119430 +100997,413,11,374461,27677 +100998,317,10,180644,1056105 +100999,234,1,32891,1187307 +101000,105,7,195269,226463 +101001,387,10,10154,64031 +101002,244,3,4982,1404205 +101003,273,7,171759,1031536 +101004,5,10,118444,1647592 +101005,45,9,284052,1703116 +101006,221,3,10320,1691203 +101007,357,3,346672,1440909 +101008,323,10,140894,1763889 +101009,413,11,838,8556 +101010,269,9,64499,66569 +101011,52,10,322922,81297 +101012,344,9,10070,1440739 +101013,413,11,10889,67348 +101014,20,2,25376,1723531 +101015,317,10,84333,1201085 +101016,360,3,17654,1424600 +101017,387,10,14626,9888 +101018,387,10,29444,72125 +101019,317,10,30126,105737 +101020,234,1,277967,56570 +101021,317,10,27935,128296 +101022,3,5,97794,93529 +101023,60,1,4248,1667263 +101024,198,6,236324,1097209 +101025,250,11,83666,1078304 +101026,175,5,72465,1735567 +101027,317,10,35263,28069 +101028,53,2,55197,1453075 +101029,413,11,2140,21935 +101030,413,11,9956,2425 +101031,3,5,298865,64300 +101032,413,11,1482,21267 +101033,234,1,118,510 +101034,204,9,345925,1207539 +101035,204,9,393445,967 +101036,105,7,319073,39827 +101037,3,5,4191,3540 +101038,5,10,137491,138243 +101039,148,9,90395,29345 +101040,95,8,126889,1746442 +101041,244,3,9928,1447310 +101042,293,2,10733,1181711 +101043,387,10,1550,3290 +101044,273,7,313922,1315941 +101045,13,3,41213,1777265 +101046,72,11,58060,1600908 +101047,3,5,335778,61851 +101048,269,9,172,2083 +101049,289,6,284053,1459754 +101050,304,10,66526,237691 +101051,105,7,109477,1873427 +101052,226,2,208091,1193913 +101053,204,9,9426,1375599 +101054,234,1,66894,1214641 +101055,317,10,12650,144410 +101056,53,2,2965,29061 +101057,204,9,41516,12346 +101058,3,5,43470,8714 +101059,234,1,9403,31024 +101060,234,1,120077,130938 +101061,269,9,18467,22239 +101062,317,10,32489,43817 +101063,3,5,378087,1439846 +101064,333,2,274857,1402921 +101065,52,10,31947,41017 +101066,413,11,222517,1127102 +101067,113,9,1624,1766004 +101068,317,10,188858,944482 +101069,234,1,2486,25453 +101070,387,10,52520,146142 +101071,234,1,33931,4109 +101072,13,8,378441,1797467 +101073,234,1,222220,32919 +101074,46,5,3172,1738164 +101075,413,11,323665,989687 +101076,387,10,85442,38937 +101077,189,3,45273,1404821 +101078,273,7,42532,10536 +101079,53,2,41213,1657387 +101080,203,1,1966,1413808 +101081,60,1,114790,36842 +101082,328,6,287903,1569337 +101083,317,10,325039,80110 +101084,234,1,110898,1050789 +101085,45,9,9358,1441275 +101086,234,1,282268,23217 +101087,293,2,755,1897877 +101088,328,6,6972,1395454 +101089,105,7,19625,37241 +101090,272,3,11351,1125188 +101091,269,9,630,9061 +101092,333,2,11056,1352959 +101093,198,6,332794,1855828 +101094,273,7,11614,18836 +101095,269,9,42501,32075 +101096,333,2,315837,1609177 +101097,317,10,327982,1433564 +101098,387,10,27549,98132 +101099,387,10,57866,101889 +101100,413,11,17796,14457 +101101,234,1,312497,166461 +101102,413,11,1924,28841 +101103,3,5,8368,17791 +101104,269,9,28571,14878 +101105,360,3,302828,1406239 +101106,387,10,63179,5812 +101107,234,1,63197,236592 +101108,226,2,20325,1537801 +101109,317,10,17303,81582 +101110,53,2,58372,1522047 +101111,3,5,50647,36224 +101112,3,5,11402,31292 +101113,99,3,194853,930476 +101114,210,9,413998,1895008 +101115,317,10,201198,5602 +101116,298,5,230179,1512678 +101117,413,11,59828,10007 +101118,3,5,369406,75679 +101119,67,10,30061,105642 +101120,148,9,2047,1562214 +101121,273,7,1427,1071 +101122,413,11,40130,1089977 +101123,273,7,28425,30681 +101124,317,10,63376,237971 +101125,286,3,19244,84387 +101126,76,2,25941,1540183 +101127,333,2,324440,1606192 +101128,234,1,9396,57594 +101129,234,1,17306,42309 +101130,180,7,33253,49606 +101131,317,10,377362,1364419 +101132,234,1,93492,222607 +101133,304,10,223946,571194 +101134,262,6,70074,1395027 +101135,387,10,366566,20073 +101136,234,1,54139,37360 +101137,3,5,11618,8677 +101138,317,10,34651,13778 +101139,234,1,45133,132239 +101140,5,10,27480,228482 +101141,234,1,19528,70109 +101142,273,7,1995,5912 +101143,60,1,33364,82864 +101144,277,3,435,113089 +101145,182,8,157354,1535118 +101146,387,10,15807,13802 +101147,360,3,365942,1464516 +101148,333,2,15613,1442500 +101149,317,10,96147,85801 +101150,75,5,168259,1506373 +101151,387,10,16444,119322 +101152,387,10,100661,192165 +101153,234,1,2982,7506 +101154,234,1,28115,51607 +101155,234,1,20307,62020 +101156,204,9,2778,1455433 +101157,75,5,82448,928004 +101158,12,10,10837,34479 +101159,244,3,6947,1551950 +101160,190,7,11547,1557610 +101161,204,9,109472,1046571 +101162,394,7,22803,15332 +101163,3,5,108224,13338 +101164,105,7,17711,5666 +101165,413,11,50247,552002 +101166,387,10,18747,25239 +101167,3,5,1282,20071 +101168,80,3,390747,1662645 +101169,72,11,42418,1827963 +101170,273,7,2084,469 +101171,209,7,343173,1340125 +101172,413,11,36245,793 +101173,203,1,22784,1559396 +101174,52,10,142656,1117782 +101175,317,10,86168,30776 +101176,3,5,95919,232804 +101177,387,10,16214,51627 +101178,333,2,163,1325234 +101179,317,10,80220,1074298 +101180,158,2,339403,1506366 +101181,234,1,102858,143671 +101182,269,9,50463,3286 +101183,328,6,311324,1568469 +101184,45,9,60599,1400490 +101185,182,8,16436,1009264 +101186,53,2,51209,227225 +101187,403,10,94525,46625 +101188,317,10,193756,36602 +101189,127,3,12594,1161231 +101190,204,9,340961,1791410 +101191,3,5,25551,6452 +101192,398,9,102382,1360094 +101193,52,10,15050,3431 +101194,5,10,327749,355 +101195,317,10,19053,100557 +101196,234,1,21966,226920 +101197,388,9,11975,1455288 +101198,54,10,74935,1206804 +101199,317,10,25143,26717 +101200,234,1,77534,582221 +101201,387,10,866,13002 +101202,203,1,44578,1530129 +101203,148,9,77338,16734 +101204,397,7,20132,85711 +101205,64,6,53459,1437899 +101206,143,7,33005,1063962 +101207,52,10,42709,70366 +101208,234,1,69828,68687 +101209,3,5,11422,14094 +101210,182,8,293167,1410556 +101211,189,3,5289,1391702 +101212,204,9,39519,1174713 +101213,113,9,10727,1418270 +101214,234,1,78028,13265 +101215,3,5,5608,19517 +101216,234,1,149117,108107 +101217,234,1,45384,76936 +101218,377,3,13056,1650748 +101219,273,7,10269,10934 +101220,53,2,33792,1012329 +101221,3,5,222935,1118557 +101222,303,3,3057,96389 +101223,234,1,205798,12123 +101224,27,3,9472,1567963 +101225,269,9,49391,17165 +101226,413,11,437752,1099943 +101227,66,11,17295,1309439 +101228,239,5,9716,1429249 +101229,173,7,194,1399914 +101230,401,6,9982,1455566 +101231,387,10,75903,1042399 +101232,52,10,4882,39765 +101233,413,11,340488,6827 +101234,419,10,312100,113901 +101235,314,2,97365,1727620 +101236,317,10,25376,84714 +101237,317,10,80089,23994 +101238,317,10,242033,70558 +101239,204,9,14254,1324052 +101240,273,7,26252,89085 +101241,132,2,271718,32490 +101242,413,11,348689,1621109 +101243,129,11,38269,102721 +101244,387,10,11799,9747 +101245,160,3,72545,63935 +101246,148,9,46190,4104 +101247,208,2,1428,144146 +101248,273,7,84355,966335 +101249,234,1,11645,5026 +101250,317,10,31911,130699 +101251,387,10,49074,1198729 +101252,3,5,260312,22318 +101253,162,6,9426,64875 +101254,269,9,29143,14879 +101255,273,7,55152,559704 +101256,127,3,384737,1566276 +101257,3,5,182127,64907 +101258,413,11,196235,1176355 +101259,3,5,817,6050 +101260,273,7,30637,999160 +101261,196,7,338,54962 +101262,413,11,166253,122496 +101263,287,3,15762,106968 +101264,226,2,245891,1416796 +101265,413,11,5206,6156 +101266,179,2,76203,1320552 +101267,5,10,982,14724 +101268,3,5,22477,15194 +101269,204,9,8204,6922 +101270,234,1,39347,86009 +101271,148,9,42787,7687 +101272,291,6,329805,1551979 +101273,3,5,36373,9103 +101274,75,5,57419,1590437 +101275,176,3,157847,1372204 +101276,317,10,145316,225974 +101277,387,10,44921,76981 +101278,3,5,104343,1449599 +101279,45,9,209112,1484474 +101280,273,7,17906,82483 +101281,360,3,168259,1464516 +101282,413,11,8776,56305 +101283,234,1,94739,117686 +101284,269,9,33345,12017 +101285,317,10,44442,146117 +101286,105,7,40095,37592 +101287,204,9,111042,2763 +101288,413,11,253273,73292 +101289,106,3,8276,1544400 +101290,413,11,15936,43441 +101291,179,2,294272,1332514 +101292,387,10,150247,120541 +101293,387,10,55370,9747 +101294,148,9,14554,13974 +101295,148,9,103332,1316704 +101296,317,10,398633,1578815 +101297,317,10,136786,1106201 +101298,3,5,73027,103237 +101299,234,1,26670,39012 +101300,234,1,333354,1115305 +101301,317,10,19766,88077 +101302,204,9,203833,36924 +101303,182,8,289712,1437197 +101304,269,9,1924,568911 +101305,204,9,26505,1023192 +101306,317,10,205481,65879 +101307,387,10,14753,937405 +101308,97,7,47112,1398920 +101309,204,9,89086,1374561 +101310,166,9,8619,1377214 +101311,3,5,12652,20791 +101312,87,7,1058,1620057 +101313,152,2,14676,1061323 +101314,262,6,2666,1392706 +101315,72,11,204922,1414102 +101316,369,6,12,7948 +101317,317,10,276906,971273 +101318,203,1,383538,1783002 +101319,169,3,51250,1521492 +101320,333,2,22584,1529481 +101321,273,7,368342,2336 +101322,234,1,8985,932317 +101323,273,7,11547,5628 +101324,175,5,75622,1172443 +101325,262,6,339547,1579519 +101326,196,7,70670,1066233 +101327,220,7,69152,37789 +101328,234,1,253612,1383170 +101329,301,5,1294,1585880 +101330,273,7,6644,4360 +101331,273,7,58878,103489 +101332,179,2,38437,7652 +101333,3,5,16157,19596 +101334,387,10,17770,148118 +101335,234,1,16154,79726 +101336,273,7,157898,29810 +101337,234,1,387399,138776 +101338,360,3,15440,1336930 +101339,62,3,10590,1566253 +101340,413,11,9404,46326 +101341,239,5,99,1580204 +101342,160,3,52661,128179 +101343,234,1,16820,29471 +101344,208,2,146243,1486822 +101345,5,10,82817,71175 +101346,204,9,18774,931835 +101347,286,3,140418,109845 +101348,416,10,125623,1160474 +101349,269,9,286521,1718 +101350,234,1,341176,61440 +101351,273,7,14765,35073 +101352,204,9,256962,1819162 +101353,234,1,53857,145968 +101354,245,3,45019,1550209 +101355,413,11,28671,31268 +101356,234,1,105287,15254 +101357,182,8,209032,1192407 +101358,204,9,29959,1176363 +101359,12,10,77079,49450 +101360,333,2,29101,34878 +101361,286,3,33135,1304264 +101362,286,3,31128,120375 +101363,357,3,76757,1482840 +101364,273,7,606,2289 +101365,273,7,284289,53712 +101366,3,5,180418,63975 +101367,269,9,1850,6494 +101368,413,11,43997,3310 +101369,175,5,10739,1194262 +101370,97,7,6171,1338372 +101371,52,10,255388,120175 +101372,317,10,30363,106158 +101373,204,9,21451,5188 +101374,413,11,6443,51714 +101375,76,2,378441,1797444 +101376,273,7,241574,96285 +101377,108,10,17820,975566 +101378,53,2,20312,1424454 +101379,413,11,27622,14679 +101380,234,1,2012,20660 +101381,387,10,43195,3634 +101382,360,3,341174,1333084 +101383,204,9,709,10677 +101384,289,6,9042,1409237 +101385,11,6,14128,1031975 +101386,5,10,12631,73170 +101387,196,7,13616,1586591 +101388,269,9,60125,1100329 +101389,394,7,266102,1354925 +101390,97,7,70981,1338372 +101391,387,10,18283,27968 +101392,234,1,316776,1436388 +101393,234,1,156268,146977 +101394,234,1,38789,121415 +101395,360,3,102668,1031765 +101396,413,11,43195,15132 +101397,317,10,227975,1050896 +101398,82,3,11377,1545101 +101399,13,5,41213,1461214 +101400,387,10,59142,19019 +101401,105,7,13440,3562 +101402,333,2,29224,1092638 +101403,196,7,17144,1405204 +101404,413,11,42533,69955 +101405,226,2,25376,1723527 +101406,234,1,236324,128762 +101407,317,10,45303,135830 +101408,3,5,35263,1143 +101409,3,5,59838,3148 +101410,234,1,54660,15452 +101411,234,1,72648,1076174 +101412,321,11,372226,1540773 +101413,333,2,245692,1402234 +101414,317,10,173494,1721727 +101415,53,2,61121,1841884 +101416,273,7,47446,27439 +101417,234,1,129277,20026 +101418,317,10,41427,111427 +101419,234,1,17274,73494 +101420,360,3,149509,1333084 +101421,187,11,140554,1425568 +101422,158,2,10320,1531875 +101423,3,5,8014,53617 +101424,52,10,27629,19019 +101425,273,7,219335,1517368 +101426,148,9,17170,18173 +101427,269,9,424600,36808 +101428,226,2,10916,1402104 +101429,3,5,2966,29080 +101430,387,10,71322,225665 +101431,387,10,62349,235205 +101432,387,10,38006,66202 +101433,387,10,318922,1494775 +101434,415,3,107593,119537 +101435,413,11,239513,14095 +101436,39,3,12103,1513523 +101437,273,7,34651,14356 +101438,37,3,76757,1460652 +101439,317,10,70282,1897168 +101440,226,2,10740,1458571 +101441,5,10,12618,3390 +101442,234,1,11091,14911 +101443,148,9,205587,970192 +101444,387,10,46798,1053508 +101445,234,1,280422,225680 +101446,3,5,82501,960261 +101447,273,7,105833,1089018 +101448,234,1,377516,238591 +101449,269,9,30583,572055 +101450,148,9,714,9823 +101451,148,9,25430,34440 +101452,269,9,107811,10421 +101453,203,1,6557,1484538 +101454,127,3,140887,1141614 +101455,273,7,289183,1041255 +101456,234,1,85844,97202 +101457,387,10,263115,366 +101458,105,7,130272,1190874 +101459,187,11,448847,1048606 +101460,317,10,85837,103355 +101461,21,3,63333,1120178 +101462,60,1,152042,1816773 +101463,273,7,285245,1006691 +101464,413,11,6973,51692 +101465,105,7,37292,13571 +101466,394,7,225285,75098 +101467,317,10,2771,72205 +101468,189,3,251227,1286579 +101469,234,1,62694,37361 +101470,234,1,63859,151748 +101471,204,9,297762,23454 +101472,234,1,58081,89193 +101473,3,5,61121,1349528 +101474,387,10,155724,772 +101475,219,11,10320,1335156 +101476,135,3,9946,1633949 +101477,46,5,186869,1862946 +101478,413,11,9287,5821 +101479,317,10,73697,570175 +101480,317,10,15838,119411 +101481,3,5,95358,5806 +101482,317,10,103432,159492 +101483,208,2,132363,1158052 +101484,105,7,155128,91546 +101485,234,1,49410,51952 +101486,179,2,3597,1313233 +101487,317,10,206574,98190 +101488,105,7,60599,8377 +101489,166,9,44943,1403397 +101490,387,10,357529,32178 +101491,239,5,359245,1638337 +101492,60,1,324181,1775300 +101493,387,10,134355,157272 +101494,97,7,9785,1170025 +101495,105,7,39056,588412 +101496,72,11,10344,1446203 +101497,234,1,57866,224401 +101498,53,2,15489,3962 +101499,269,9,18405,2625 +101500,148,9,78691,1802995 +101501,158,2,12171,1421270 +101502,387,10,21181,79096 +101503,226,2,45019,1445469 +101504,413,11,121824,10574 +101505,273,7,234284,1308101 +101506,105,7,6081,1938 +101507,105,7,120172,1570078 +101508,250,11,263115,1548696 +101509,3,5,167,943 +101510,287,3,14138,1452257 +101511,234,1,28304,40199 +101512,3,5,9946,37710 +101513,413,11,130925,8071 +101514,317,10,103433,979418 +101515,132,2,333484,32282 +101516,234,1,160160,236421 +101517,317,10,381645,323331 +101518,52,10,132122,1094531 +101519,234,1,63139,16214 +101520,3,5,106049,1149940 +101521,234,1,35129,18854 +101522,360,3,11377,1505857 +101523,387,10,103947,1045547 +101524,413,11,9298,25515 +101525,3,5,356296,932539 +101526,317,10,8292,34672 +101527,105,7,413782,1673996 +101528,413,11,22257,1480853 +101529,273,7,330115,148736 +101530,413,11,21282,1152678 +101531,234,1,42225,24279 +101532,269,9,288710,1103717 +101533,234,1,9902,60243 +101534,176,3,9457,1410337 +101535,381,9,1966,1398090 +101536,387,10,220488,52910 +101537,234,1,15904,167407 +101538,317,10,296633,1296090 +101539,319,1,18,1821634 +101540,148,9,128866,1665460 +101541,333,2,88288,26175 +101542,387,10,5590,24882 +101543,204,9,43514,32999 +101544,135,3,11618,1619084 +101545,387,10,204040,30285 +101546,160,3,45132,84702 +101547,250,11,97614,1409875 +101548,127,3,297762,1789973 +101549,360,9,118,1335181 +101550,371,3,116463,1691506 +101551,158,2,274857,1829877 +101552,21,3,220,14266 +101553,232,10,19618,84938 +101554,387,10,448763,1395395 +101555,234,1,39833,89216 +101556,97,7,10326,9439 +101557,387,10,43806,3386 +101558,97,7,46857,137559 +101559,387,10,121636,100131 +101560,234,1,76097,28403 +101561,75,5,140607,1406847 +101562,413,11,313922,1149911 +101563,413,11,408024,1164454 +101564,52,10,257344,1106516 +101565,132,2,310888,1732089 +101566,72,11,1125,1073307 +101567,289,6,24556,91771 +101568,317,10,337549,1332962 +101569,204,9,68179,1273227 +101570,413,11,14242,1502574 +101571,269,9,48281,1018348 +101572,268,7,17771,1375604 +101573,3,5,9771,17146 +101574,413,11,86920,33715 +101575,234,1,2965,20412 +101576,328,6,145135,1413115 +101577,360,3,241254,1388484 +101578,234,1,214938,1199632 +101579,234,1,27351,464232 +101580,236,8,26390,1526846 +101581,155,3,33740,1447969 +101582,394,7,103332,1546856 +101583,234,1,388046,1591861 +101584,187,11,2662,1404364 +101585,317,10,66113,556085 +101586,226,2,228970,1414537 +101587,234,1,26882,68352 +101588,387,10,10735,66962 +101589,182,8,11351,1533787 +101590,413,11,99,413 +101591,234,1,177902,76381 +101592,208,2,316042,1446192 +101593,3,5,488,6603 +101594,148,9,29825,14915 +101595,234,1,145135,116357 +101596,387,10,43645,4818 +101597,204,9,41505,16494 +101598,3,5,266082,68821 +101599,306,7,7220,1551870 +101600,413,11,64792,239790 +101601,160,3,10796,92479 +101602,317,10,16460,56336 +101603,317,10,125673,1572904 +101604,208,2,233208,1340082 +101605,209,7,200505,1418002 +101606,77,10,11643,31273 +101607,234,1,112961,947014 +101608,169,3,11024,1531860 +101609,234,1,2132,21849 +101610,234,1,131764,108914 +101611,333,2,7220,1528387 +101612,160,3,60086,1567424 +101613,203,1,205864,1603896 +101614,187,11,76170,113055 +101615,262,6,44943,1403401 +101616,262,6,4413,1401292 +101617,317,10,101752,1028521 +101618,405,8,11024,1410304 +101619,269,9,22477,23966 +101620,3,5,27777,8713 +101621,317,10,11886,57334 +101622,12,10,105965,1039270 +101623,234,1,86600,70308 +101624,317,10,60189,230715 +101625,317,10,74950,64001 +101626,317,10,305147,1387593 +101627,234,1,52741,82255 +101628,317,10,289679,548185 +101629,398,9,755,1358149 +101630,53,2,300669,1279912 +101631,234,1,28384,1243 +101632,234,1,18189,24970 +101633,277,3,318922,1392981 +101634,317,10,64414,28615 +101635,345,7,1690,42036 +101636,413,11,5618,3526 +101637,317,10,28433,10601 +101638,387,10,2454,5551 +101639,141,7,75204,1426062 +101640,198,6,97365,1727617 +101641,234,1,102630,995407 +101642,234,1,72867,935910 +101643,204,9,3036,10497 +101644,204,9,10488,939990 +101645,373,7,169,1424130 +101646,234,1,27635,40199 +101647,277,7,22477,1458530 +101648,3,5,4497,37501 +101649,105,7,293660,56827 +101650,413,11,126958,1082578 +101651,208,2,345922,1541709 +101652,328,6,46738,1536211 +101653,317,10,355008,17835 +101654,5,10,44001,14291 +101655,3,5,9550,57913 +101656,387,10,296288,114484 +101657,52,10,26469,145191 +101658,226,2,14811,1432524 +101659,196,7,257088,1364412 +101660,234,1,13550,21377 +101661,327,7,443319,1440822 +101662,328,6,664,1478858 +101663,53,2,13507,66026 +101664,176,3,70074,1407349 +101665,317,10,47194,141030 +101666,333,2,257345,1547655 +101667,234,1,14262,10367 +101668,148,9,192558,1682059 +101669,196,7,2503,1342657 +101670,187,11,17577,1403005 +101671,79,7,34127,1242315 +101672,3,5,59181,110718 +101673,273,7,10665,60891 +101674,317,10,38765,115484 +101675,387,10,239513,980475 +101676,203,1,20357,1465634 +101677,3,5,18047,14431 +101678,97,7,332411,92604 +101679,387,10,115626,1235034 +101680,289,6,9502,1447381 +101681,317,10,54102,1224586 +101682,413,11,11145,7068 +101683,204,9,78028,7789 +101684,360,9,2300,1388862 +101685,328,6,274857,1384381 +101686,273,7,43155,8619 +101687,273,7,10829,51588 +101688,317,10,96921,129433 +101689,187,11,12573,1546856 +101690,53,2,105548,9064 +101691,234,1,116318,99875 +101692,204,9,84903,8623 +101693,204,9,177902,13958 +101694,234,1,82341,21227 +101695,387,10,69165,44693 +101696,273,7,14698,999160 +101697,373,7,6933,1537463 +101698,105,7,356500,1419368 +101699,234,1,20623,92693 +101700,53,2,30298,1355442 +101701,234,1,5332,19969 +101702,77,10,10066,22039 +101703,273,7,11186,5912 +101704,317,10,32497,57022 +101705,413,11,60281,1367915 +101706,105,7,145135,73417 +101707,298,5,7445,1407231 +101708,53,2,10134,1201858 +101709,196,7,37534,1640712 +101710,317,10,105945,1039202 +101711,245,3,635,1400003 +101712,373,7,664,1341781 +101713,234,1,42346,27875 +101714,413,11,9099,56972 +101715,301,5,2288,1408354 +101716,12,10,714,9856 +101717,234,1,228028,19975 +101718,72,11,28176,40151 +101719,273,7,2721,27439 +101720,273,7,99846,1797559 +101721,175,5,257088,1631410 +101722,3,5,54022,65506 +101723,226,2,46830,1418528 +101724,317,10,97632,102389 +101725,234,1,30202,105822 +101726,387,10,87481,15160 +101727,292,3,2675,1674654 +101728,273,7,26142,4055 +101729,413,11,3104,30418 +101730,234,1,315465,81718 +101731,65,3,9946,1417685 +101732,75,5,47112,45120 +101733,413,11,433,5841 +101734,387,10,277967,39905 +101735,3,5,59935,1221630 +101736,317,10,399894,78217 +101737,127,3,28090,9654 +101738,234,1,91419,70862 +101739,77,10,4932,40172 +101740,77,10,11440,14168 +101741,75,5,376188,1559213 +101742,413,11,15267,8307 +101743,277,3,435,1418462 +101744,413,11,31413,1603644 +101745,387,10,11012,8403 +101746,3,5,44436,130857 +101747,273,7,79372,8619 +101748,269,9,116236,1313634 +101749,75,5,225728,1402096 +101750,269,9,165,496 +101751,164,3,10529,1530192 +101752,187,11,1125,1404763 +101753,204,9,5899,46447 +101754,105,7,3563,2593 +101755,5,10,64398,413599 +101756,286,3,18620,1804395 +101757,226,2,47540,1468504 +101758,234,1,80350,589306 +101759,346,3,10724,1442568 +101760,413,11,44099,103673 +101761,105,7,57005,1760581 +101762,273,7,15371,78367 +101763,187,11,15613,1377127 +101764,266,3,312831,1594174 +101765,12,10,14611,7624 +101766,30,5,341174,1401593 +101767,413,11,38417,103085 +101768,3,5,9736,63900 +101769,234,1,84284,84369 +101770,234,1,335053,57865 +101771,60,1,155597,235398 +101772,413,11,54236,32212 +101773,5,10,36288,938281 +101774,11,6,345775,142070 +101775,204,9,5915,46592 +101776,234,1,8211,8723 +101777,269,9,30641,75830 +101778,387,10,1890,19799 +101779,148,9,27035,7687 +101780,289,6,90001,1563390 +101781,317,10,14052,68032 +101782,234,1,94727,10092 +101783,234,1,84735,41550 +101784,317,10,423093,1700462 +101785,317,10,252102,1016134 +101786,273,7,9673,58468 +101787,53,2,36657,9043 +101788,289,6,257088,1631413 +101789,52,10,2898,28780 +101790,287,3,56906,1423754 +101791,204,9,121230,8622 +101792,301,5,11056,1405365 +101793,160,3,2666,9357 +101794,357,3,354859,1621762 +101795,413,11,423988,1065276 +101796,234,1,21712,93107 +101797,234,1,136466,114004 +101798,273,7,3937,34173 +101799,317,10,26891,6011 +101800,66,11,9716,1562119 +101801,349,1,10198,1461396 +101802,203,1,329805,1621899 +101803,317,10,278632,143056 +101804,175,5,13849,1413943 +101805,127,3,76094,1204212 +101806,317,10,46924,68687 +101807,387,10,226140,1348063 +101808,3,5,60285,30288 +101809,387,10,357706,1642535 +101810,317,10,44682,115090 +101811,314,2,11377,1602864 +101812,52,10,126250,1012 +101813,189,3,10999,1338839 +101814,294,3,20132,85712 +101815,105,7,50463,153 +101816,298,5,68737,91122 +101817,234,1,88012,935706 +101818,340,2,11351,1320958 +101819,333,2,2978,32280 +101820,314,2,209112,1403389 +101821,387,10,11873,2989 +101822,317,10,118397,1067716 +101823,234,1,51601,21305 +101824,105,7,115427,1086316 +101825,132,2,413452,1635484 +101826,387,10,10889,11147 +101827,234,1,1838,19346 +101828,413,11,278348,569737 +101829,333,2,82448,11238 +101830,97,7,340488,1775762 +101831,234,1,296524,36602 +101832,3,5,86608,40183 +101833,3,5,56906,1394059 +101834,317,10,99579,229263 +101835,148,9,19995,12653 +101836,269,9,259694,39038 +101837,333,2,29143,26985 +101838,164,3,12450,1539775 +101839,226,2,936,1585999 +101840,5,10,84336,1142742 +101841,196,7,4806,83089 +101842,234,1,37103,6593 +101843,317,10,14016,58052 +101844,387,10,137315,83189 +101845,245,3,36658,236696 +101846,395,3,13205,1347646 +101847,262,6,203351,1550358 +101848,256,3,809,1678645 +101849,387,10,15356,78137 +101850,179,2,49009,1325583 +101851,75,5,9358,1421731 +101852,148,9,11577,7688 +101853,333,2,127521,1407677 +101854,207,3,10865,76003 +101855,269,9,14073,1083220 +101856,3,5,229304,1263929 +101857,317,10,296025,1173190 +101858,413,11,9405,1264 +101859,317,10,227462,1261712 +101860,413,11,9013,908 +101861,273,7,131764,26026 +101862,97,7,169881,16887 +101863,234,1,76821,96627 +101864,327,7,755,1341404 +101865,234,1,92393,155011 +101866,273,7,10390,7728 +101867,74,5,352890,1636817 +101868,87,7,426253,1733119 +101869,127,3,181753,1007395 +101870,387,10,76996,278228 +101871,105,7,5998,11524 +101872,403,10,13934,7911 +101873,317,10,336882,79323 +101874,262,6,10020,61417 +101875,204,9,15045,59838 +101876,3,5,37718,11371 +101877,187,11,284052,1352422 +101878,203,1,138222,1493529 +101879,373,7,16921,115810 +101880,60,1,156627,66454 +101881,268,7,140607,1389534 +101882,105,7,109298,5466 +101883,60,1,77165,1906848 +101884,234,1,27935,99280 +101885,111,7,9472,1441270 +101886,387,10,86600,21217 +101887,175,5,11975,18095 +101888,210,9,9716,91079 +101889,104,7,50126,113040 +101890,273,7,2047,2722 +101891,403,10,64784,116683 +101892,87,7,397837,113844 +101893,3,5,5767,30923 +101894,3,5,12593,73276 +101895,141,7,177572,1616082 +101896,3,5,10774,16331 +101897,287,3,40952,1437610 +101898,208,2,33788,1315617 +101899,53,2,285685,1618894 +101900,97,7,347945,1618779 +101901,317,10,41522,134049 +101902,304,10,347807,1457344 +101903,234,1,52856,3092 +101904,52,10,28561,30040 +101905,234,1,1394,8452 +101906,273,7,11813,18836 +101907,219,11,924,139953 +101908,413,11,37534,51795 +101909,209,7,41963,1344273 +101910,413,11,12704,73951 +101911,413,11,9963,7231 +101912,204,9,7340,10187 +101913,234,1,21380,45672 +101914,53,2,205587,3989 +101915,360,3,278632,1582591 +101916,3,5,168031,39798 +101917,413,11,19142,1712995 +101918,273,7,343173,56657 +101919,189,3,9286,1399069 +101920,314,2,333663,1709187 +101921,105,7,24453,7066 +101922,7,3,2567,1739551 +101923,413,11,76493,224530 +101924,203,1,54236,104130 +101925,169,3,242310,1367133 +101926,328,6,435,1392101 +101927,60,1,3580,1559640 +101928,3,5,2100,4950 +101929,270,9,10008,1334515 +101930,204,9,105981,1456432 +101931,160,3,9423,13458 +101932,3,5,44287,25398 +101933,262,6,277713,1609174 +101934,387,10,476,6470 +101935,166,9,228970,1470526 +101936,273,7,6522,4246 +101937,413,11,242224,1381420 +101938,52,10,26323,74879 +101939,3,5,256347,1217264 +101940,5,10,408024,566309 +101941,387,10,9023,20801 +101942,387,10,14432,76881 +101943,289,6,98566,1459764 +101944,387,10,116232,959728 +101945,269,9,1579,2486 +101946,135,3,4147,1558203 +101947,413,11,75336,25824 +101948,60,1,25768,86410 +101949,203,1,8457,1377239 +101950,75,5,1165,1407219 +101951,3,5,52784,22326 +101952,105,7,23155,89839 +101953,413,11,16551,2512 +101954,203,1,41963,1564848 +101955,234,1,253263,1288717 +101956,250,11,374473,1574102 +101957,413,11,11259,6189 +101958,398,9,284053,1814579 +101959,317,10,10275,1342854 +101960,203,1,284289,1179272 +101961,399,9,109329,225719 +101962,413,11,858,12926 +101963,234,1,30941,39996 +101964,204,9,44208,103446 +101965,234,1,427673,168751 +101966,127,3,11206,61838 +101967,3,5,623,8934 +101968,373,7,55846,40820 +101969,268,7,206647,1401631 +101970,234,1,112558,13776 +101971,52,10,43752,109841 +101972,64,6,382873,1679705 +101973,273,7,125264,25800 +101974,317,10,409447,7420 +101975,234,1,296194,57604 +101976,53,2,21132,1399022 +101977,234,1,39493,123009 +101978,317,10,245597,1284289 +101979,387,10,382589,1293457 +101980,234,1,27916,99251 +101981,245,3,102632,89154 +101982,269,9,248087,552535 +101983,394,7,949,1392084 +101984,189,3,9882,1548587 +101985,262,6,266102,1379051 +101986,317,10,58878,125085 +101987,317,10,113091,1056316 +101988,3,5,197082,3561 +101989,175,5,251227,1286581 +101990,317,10,215579,1213778 +101991,234,1,35558,43222 +101992,360,3,251,1453277 +101993,234,1,174350,1168882 +101994,234,1,13571,18378 +101995,97,7,210913,1201948 +101996,387,10,231176,120127 +101997,411,9,19995,12653 +101998,209,7,70981,1390382 +101999,97,7,2731,1730027 +102000,190,7,228496,1190604 +102001,64,6,11202,18638 +102002,273,7,18722,1760 +102003,3,5,76170,56786 +102004,158,2,285270,1367941 +102005,3,5,9539,994881 +102006,387,10,29872,1082918 +102007,262,6,294272,1393445 +102008,52,10,60488,231131 +102009,169,3,28,96912 +102010,204,9,11639,12654 +102011,387,10,262,3660 +102012,5,10,11869,70796 +102013,387,10,81560,1041470 +102014,317,10,60420,132964 +102015,52,10,45838,89602 +102016,53,2,39979,1441040 +102017,234,1,58763,1157087 +102018,413,11,9904,60221 +102019,368,7,14,1413169 +102020,3,5,27265,47275 +102021,204,9,17744,123777 +102022,394,7,6947,1339446 +102023,289,6,10539,1282566 +102024,413,11,10871,3987 +102025,3,5,29116,17761 +102026,97,7,168259,1367362 +102027,234,1,40719,89751 +102028,182,8,638,9361 +102029,203,1,336804,1595076 +102030,143,7,357706,1640807 +102031,175,5,634,1181554 +102032,160,3,127585,1384388 +102033,53,2,209764,1294088 +102034,234,1,46341,37561 +102035,234,1,362617,1350506 +102036,52,10,145963,201394 +102037,60,1,111398,1529567 +102038,387,10,2503,1921 +102039,387,10,93863,1334927 +102040,234,1,106256,106345 +102041,289,6,291270,1455702 +102042,387,10,985,5602 +102043,328,6,132363,1407733 +102044,317,10,44511,583495 +102045,333,2,41963,23703 +102046,234,1,80941,70862 +102047,175,5,77338,1558394 +102048,328,6,294272,1392706 +102049,204,9,137504,1529736 +102050,175,5,36737,230001 +102051,234,1,16082,18596 +102052,234,1,5421,31775 +102053,204,9,42532,1410820 +102054,317,10,235208,1127656 +102055,3,5,200505,52449 +102056,204,9,353728,1653745 +102057,77,10,10050,62512 +102058,317,10,413337,1675349 +102059,317,10,122081,51918 +102060,259,3,11351,1597196 +102061,387,10,118,1300 +102062,234,1,121655,558007 +102063,122,8,311324,1593266 +102064,317,10,30478,106381 +102065,204,9,51044,1124118 +102066,269,9,421365,980252 +102067,208,2,71668,1827275 +102068,234,1,69060,974548 +102069,387,10,70074,57561 +102070,75,5,226140,122085 +102071,273,7,1966,595 +102072,394,7,284052,16344 +102073,234,1,73474,928830 +102074,413,11,16980,1522749 +102075,234,1,290555,10995 +102076,234,1,129966,47826 +102077,175,5,243940,1420326 +102078,234,1,14128,51959 +102079,413,11,54893,931286 +102080,204,9,41076,929655 +102081,317,10,326045,1285234 +102082,234,1,35396,936794 +102083,234,1,19276,239063 +102084,317,10,44641,102445 +102085,333,2,228970,1047629 +102086,83,2,109439,1458065 +102087,3,5,410118,1779184 +102088,226,2,7299,1433005 +102089,286,3,44566,55073 +102090,234,1,26798,16544 +102091,371,3,107073,1481514 +102092,3,5,28430,83135 +102093,387,10,91070,78080 +102094,105,7,57749,1205939 +102095,204,9,330459,10788 +102096,360,3,5638,8573 +102097,3,5,12764,1027084 +102098,52,10,10020,15812 +102099,152,2,315837,1797245 +102100,234,1,241374,42060 +102101,413,11,14979,81827 +102102,5,10,54514,32564 +102103,162,6,18,11173 +102104,317,10,108822,64750 +102105,221,3,9504,142168 +102106,52,10,14676,544594 +102107,289,6,1381,1447143 +102108,234,1,260522,1303421 +102109,413,11,320588,1423980 +102110,85,10,18047,1172559 +102111,157,3,90110,25626 +102112,53,2,56292,605 +102113,269,9,86236,224960 +102114,325,5,263115,1821910 +102115,204,9,71041,47248 +102116,317,10,253232,72496 +102117,387,10,39938,144063 +102118,413,11,11397,51854 +102119,413,11,17956,2588 +102120,53,2,188826,79183 +102121,317,10,27925,98835 +102122,97,7,312221,8160 +102123,234,1,228205,66121 +102124,234,1,4923,19665 +102125,273,7,11607,20953 +102126,317,10,294272,1133332 +102127,360,3,7454,1328388 +102128,244,3,15,103945 +102129,3,5,5,3115 +102130,234,1,195,2428 +102131,20,2,1995,1287668 +102132,317,10,177979,182755 +102133,196,7,2105,1724870 +102134,273,7,18317,27265 +102135,349,1,9016,1447483 +102136,333,2,18977,1686744 +102137,21,3,3085,10792 +102138,113,9,46261,1401667 +102139,269,9,393367,1607284 +102140,127,3,116463,574380 +102141,179,2,1579,1329477 +102142,57,2,169881,1519289 +102143,204,9,1416,16969 +102144,234,1,144183,70055 +102145,209,7,257088,1393453 +102146,204,9,1579,17676 +102147,3,5,28061,25826 +102148,209,7,9593,1458533 +102149,317,10,30034,52589 +102150,234,1,40095,898 +102151,317,10,25407,50270 +102152,328,6,75174,6063 +102153,327,7,16131,1437717 +102154,413,11,11950,21821 +102155,99,3,279096,1386315 +102156,200,3,257088,1638141 +102157,413,11,9841,20846 +102158,234,1,29365,95723 +102159,234,1,1956,5216 +102160,67,10,8247,1701151 +102161,52,10,660,9951 +102162,148,9,11024,10858 +102163,53,2,218582,8717 +102164,317,10,82430,105712 +102165,234,1,17845,82418 +102166,413,11,428355,1716276 +102167,179,2,3716,1421660 +102168,413,11,246011,1321107 +102169,113,9,31413,1603647 +102170,269,9,323674,1435172 +102171,162,6,330459,1468112 +102172,46,5,47386,138793 +102173,204,9,262,21614 +102174,72,11,413421,1785031 +102175,413,11,116780,73261 +102176,317,10,248933,1059961 +102177,75,5,90616,1298625 +102178,53,2,4413,50462 +102179,387,10,4012,30458 +102180,317,10,342472,1480600 +102181,97,7,9102,1380385 +102182,234,1,75752,11147 +102183,204,9,315664,1535968 +102184,3,5,125736,13972 +102185,262,6,3057,1417979 +102186,234,1,371504,190873 +102187,11,6,294254,1418377 +102188,317,10,276906,76999 +102189,53,2,102144,11445 +102190,234,1,21001,86981 +102191,269,9,27414,1069073 +102192,234,1,192210,228041 +102193,234,1,18530,83224 +102194,373,7,10491,40818 +102195,373,7,10999,1338832 +102196,394,7,403605,1185946 +102197,327,7,10796,1407813 +102198,40,1,9836,1518756 +102199,5,10,4497,150340 +102200,3,5,55681,33618 +102201,321,11,11618,1589709 +102202,269,9,15022,1303222 +102203,3,5,429238,1308201 +102204,186,6,269149,1461996 +102205,387,10,69065,31439 +102206,317,10,253251,1288697 +102207,234,1,10797,58268 +102208,160,3,197,142325 +102209,204,9,272693,42635 +102210,60,1,354133,1496080 +102211,394,7,4982,1404212 +102212,204,9,169298,1299107 +102213,140,9,13283,570268 +102214,273,7,86709,52515 +102215,53,2,152989,1179892 +102216,203,1,340488,1775763 +102217,234,1,270946,44114 +102218,413,11,32595,3904 +102219,105,7,299165,1514882 +102220,413,11,105254,67522 +102221,360,9,634,1428473 +102222,234,1,24424,91603 +102223,387,10,75233,71609 +102224,234,1,45020,131933 +102225,148,9,18392,60385 +102226,46,5,9716,1661556 +102227,3,5,99361,46647 +102228,387,10,11635,57538 +102229,97,7,638,9440 +102230,411,9,214756,960673 +102231,234,1,376523,96199 +102232,52,10,10948,61678 +102233,317,10,19342,1409392 +102234,317,10,257237,1296807 +102235,220,7,59297,1658448 +102236,234,1,125520,6111 +102237,234,1,8329,54525 +102238,413,11,1640,20649 +102239,317,10,70199,558100 +102240,234,1,38978,32765 +102241,396,3,118957,1402894 +102242,286,3,31221,107797 +102243,187,11,45019,1393443 +102244,77,10,2721,27437 +102245,180,7,21734,1567996 +102246,187,11,11517,15527 +102247,273,7,52808,56036 +102248,317,10,42021,4415 +102249,411,9,82,60937 +102250,127,3,218784,1813644 +102251,317,10,24126,28239 +102252,234,1,318922,220702 +102253,53,2,15019,19971 +102254,394,7,42251,1446545 +102255,415,3,289,89532 +102256,413,11,36992,1485184 +102257,234,1,3050,31024 +102258,97,7,395992,1389614 +102259,234,1,413279,55934 +102260,262,6,206647,1551911 +102261,286,3,45211,80944 +102262,291,6,140607,1081073 +102263,226,2,17771,1421644 +102264,317,10,71668,51021 +102265,204,9,333484,1442117 +102266,164,3,293167,1543230 +102267,234,1,28938,18161 +102268,187,11,9358,1342658 +102269,3,5,10103,63433 +102270,234,1,62301,12180 +102271,196,7,17771,85964 +102272,377,3,263115,1691488 +102273,387,10,41234,34267 +102274,298,5,329440,1590442 +102275,158,2,302026,1570586 +102276,387,10,29577,65481 +102277,301,5,128270,91115 +102278,317,10,50696,20025 +102279,141,7,14811,491 +102280,234,1,11058,6361 +102281,413,11,398786,1492093 +102282,198,6,330459,1706707 +102283,105,7,213121,15347 +102284,413,11,12645,1017235 +102285,234,1,65614,1199016 +102286,387,10,86168,66215 +102287,189,3,50126,1692498 +102288,273,7,11259,491 +102289,204,9,224813,1210336 +102290,411,9,2454,37301 +102291,411,9,204922,49345 +102292,413,11,12221,73758 +102293,413,11,59115,60521 +102294,84,7,11975,1184250 +102295,77,10,25694,70647 +102296,5,10,32634,109464 +102297,105,7,402446,1315941 +102298,387,10,85265,1040545 +102299,3,5,168259,58192 +102300,203,1,9639,1565954 +102301,175,5,76757,1482845 +102302,301,5,82448,927996 +102303,268,7,10491,1376801 +102304,105,7,16358,9204 +102305,3,5,110972,32637 +102306,234,1,156288,81089 +102307,293,2,25376,1723532 +102308,3,5,946,1940 +102309,373,7,28032,928942 +102310,234,1,268735,120930 +102311,273,7,407,5592 +102312,317,10,211233,1197471 +102313,273,7,10754,1135 +102314,413,11,236808,1114580 +102315,317,10,46592,231414 +102316,196,7,273481,375 +102317,53,2,11832,1644085 +102318,387,10,92499,1294764 +102319,53,2,17771,1013535 +102320,239,5,263115,1269262 +102321,289,6,9078,138170 +102322,62,3,9425,1566835 +102323,373,7,140554,1425569 +102324,360,3,347945,81342 +102325,187,11,44115,1394716 +102326,72,11,2046,1303295 +102327,225,7,11236,1415464 +102328,413,11,52918,107828 +102329,317,10,21840,19459 +102330,203,1,24936,1400835 +102331,262,6,1381,1447150 +102332,196,7,97614,1393444 +102333,291,6,18,1346943 +102334,45,9,71859,1619485 +102335,234,1,8457,32593 +102336,413,11,319340,1177126 +102337,5,10,2454,5525 +102338,3,5,2012,20715 +102339,413,11,83079,138636 +102340,373,7,154972,1399587 +102341,169,3,126250,71165 +102342,388,9,10727,1418279 +102343,234,1,64167,21377 +102344,77,10,16171,79852 +102345,234,1,40146,1055182 +102346,25,2,294254,109870 +102347,160,3,8619,142157 +102348,269,9,540,22120 +102349,53,2,1665,18513 +102350,46,5,188102,1845773 +102351,360,9,346672,1825671 +102352,234,1,92285,544700 +102353,328,6,76163,138657 +102354,387,10,9502,57743 +102355,317,10,41852,879 +102356,286,3,15003,64379 +102357,234,1,10925,5045 +102358,25,2,48231,12614 +102359,113,9,297762,1824243 +102360,203,1,9013,1377239 +102361,175,5,9286,968264 +102362,289,6,10693,115754 +102363,160,3,14430,1521663 +102364,234,1,16356,22140 +102365,22,9,13380,1504064 +102366,411,3,267935,959555 +102367,387,10,62488,52054 +102368,158,2,241239,1468589 +102369,234,1,9836,20629 +102370,204,9,252171,1454380 +102371,289,6,9297,1462680 +102372,105,7,13562,13957 +102373,148,9,219233,1660929 +102374,12,10,308529,15111 +102375,3,5,210653,1027084 +102376,141,7,1647,122 +102377,157,3,84284,6562 +102378,273,7,120977,8503 +102379,175,5,312221,1407027 +102380,148,9,16784,14915 +102381,373,7,1991,158916 +102382,387,10,258193,1299059 +102383,387,10,229254,1166988 +102384,273,7,226968,70054 +102385,60,1,4443,24859 +102386,317,10,27599,98319 +102387,387,10,73984,179891 +102388,394,7,1640,1355878 +102389,317,10,104528,1318387 +102390,208,2,44115,1327895 +102391,220,7,161898,1010129 +102392,46,5,638,9379 +102393,317,10,42021,15191 +102394,273,7,51141,550766 +102395,234,1,43987,90470 +102396,413,11,24973,10603 +102397,387,10,11101,14614 +102398,398,9,435,1391751 +102399,3,5,406449,1166085 +102400,415,3,578,8586 +102401,413,11,71700,563696 +102402,3,5,9076,37681 +102403,286,3,347835,1485276 +102404,234,1,422550,84074 +102405,12,10,15379,72259 +102406,387,10,74836,1057910 +102407,65,3,118,1855220 +102408,232,10,18082,83175 +102409,53,2,40028,1426050 +102410,53,2,253235,971528 +102411,234,1,62522,188162 +102412,387,10,1911,19893 +102413,387,10,80775,68089 +102414,317,10,245168,93289 +102415,387,10,43894,26160 +102416,373,7,14181,9409 +102417,234,1,25499,593019 +102418,387,10,46228,1111280 +102419,301,5,11377,1602860 +102420,234,1,11950,67767 +102421,53,2,47186,9551 +102422,317,10,237756,1272154 +102423,52,10,73690,13594 +102424,52,10,43368,935862 +102425,204,9,76094,8622 +102426,387,10,4986,7394 +102427,234,1,83860,909318 +102428,34,8,14,1408285 +102429,269,9,300,4284 +102430,204,9,17654,13086 +102431,269,9,109451,1046497 +102432,413,11,100275,1519336 +102433,413,11,14457,1556999 +102434,175,5,265208,1393396 +102435,180,7,118257,9890 +102436,317,10,39578,123206 +102437,3,5,253284,1293645 +102438,148,9,167810,1397725 +102439,317,10,337758,229682 +102440,381,9,3172,1406090 +102441,413,11,239566,433 +102442,349,1,74,1699144 +102443,317,10,16432,938248 +102444,148,9,363439,1521384 +102445,175,5,418437,1421952 +102446,273,7,284052,15347 +102447,317,10,312497,1252423 +102448,148,9,3291,13626 +102449,234,1,62039,82518 +102450,161,6,10590,1334725 +102451,5,10,177043,109400 +102452,3,5,180305,59892 +102453,273,7,17692,1714546 +102454,317,10,184155,1030311 +102455,53,2,42094,5634 +102456,234,1,427680,1267666 +102457,175,5,68387,1544518 +102458,3,5,68347,64300 +102459,203,1,168676,102657 +102460,387,10,280045,543330 +102461,234,1,85317,107720 +102462,413,11,259694,25906 +102463,182,8,242224,1428876 +102464,415,3,10235,1593035 +102465,234,1,21435,37626 +102466,196,7,169,143917 +102467,175,5,13798,1565800 +102468,387,10,58166,53269 +102469,234,1,131903,152190 +102470,317,10,277713,93911 +102471,234,1,18128,87670 +102472,387,10,2160,7506 +102473,234,1,85778,223825 +102474,388,9,1381,1447128 +102475,273,7,12453,72304 +102476,413,11,12104,9163 +102477,234,1,38244,102445 +102478,277,7,1428,1548694 +102479,234,1,13536,30365 +102480,143,7,655,9889 +102481,105,7,94935,1003951 +102482,182,8,17956,1170987 +102483,317,10,369885,23227 +102484,143,7,10238,1332141 +102485,397,7,86126,932912 +102486,46,5,47386,138791 +102487,5,10,209112,2293 +102488,67,10,66045,57303 +102489,105,7,49961,143146 +102490,190,7,20312,1424456 +102491,97,7,83229,1037498 +102492,53,2,16993,29800 +102493,77,10,2613,26488 +102494,403,10,29286,48415 +102495,239,5,29263,1099204 +102496,317,10,27034,14875 +102497,5,10,28438,7748 +102498,273,7,20,106 +102499,317,10,7871,53238 +102500,269,9,16096,22045 +102501,3,5,4551,904 +102502,3,5,302528,55612 +102503,209,7,10204,1338287 +102504,52,10,103578,1185527 +102505,204,9,33839,3358 +102506,333,2,421365,1394171 +102507,245,3,2309,1467002 +102508,204,9,27443,11036 +102509,413,11,98612,11249 +102510,333,2,21338,1630532 +102511,53,2,34127,14571 +102512,166,9,1428,1431015 +102513,53,2,17144,559321 +102514,317,10,280422,1337733 +102515,317,10,239798,72196 +102516,413,11,9958,60969 +102517,373,7,19901,75437 +102518,317,10,63762,87755 +102519,204,9,49028,1434454 +102520,262,6,10727,1398872 +102521,398,9,31509,29574 +102522,317,10,33427,69417 +102523,273,7,6972,37757 +102524,387,10,3164,30968 +102525,196,7,37238,1377422 +102526,3,5,43390,98442 +102527,53,2,156711,39203 +102528,198,6,354859,1444919 +102529,317,10,266558,1165031 +102530,105,7,39979,18836 +102531,413,11,29236,103365 +102532,64,6,664,1455625 +102533,105,7,145220,105584 +102534,203,1,62728,1337422 +102535,3,5,28165,59953 +102536,67,10,15213,1462616 +102537,317,10,83666,38803 +102538,204,9,34651,9062 +102539,368,7,4248,1361676 +102540,3,5,2110,21273 +102541,387,10,810,12105 +102542,317,10,47493,585715 +102543,52,10,28421,100593 +102544,269,9,86472,1120805 +102545,105,7,64526,239308 +102546,234,1,131507,1093407 +102547,413,11,143946,552002 +102548,394,7,118,12761 +102549,92,7,46738,1536196 +102550,3,5,259075,1689882 +102551,234,1,54525,57436 +102552,203,1,10739,1459591 +102553,317,10,13075,96222 +102554,12,10,122857,57435 +102555,234,1,174946,1157585 +102556,85,10,38718,585015 +102557,234,1,1452,9032 +102558,3,5,476,5667 +102559,387,10,9598,58137 +102560,132,2,209112,1547221 +102561,45,9,257088,1335852 +102562,394,7,240832,1367814 +102563,413,11,50318,1125482 +102564,113,9,13056,1384358 +102565,3,5,41552,96427 +102566,273,7,11622,70054 +102567,45,9,44945,1520598 +102568,234,1,7942,14409 +102569,148,9,9529,9774 +102570,234,1,130457,50542 +102571,234,1,238398,1272849 +102572,273,7,259,3535 +102573,234,1,38303,58375 +102574,333,2,90030,29639 +102575,53,2,177155,1334944 +102576,176,3,5289,1409730 +102577,234,1,243881,1429653 +102578,204,9,1589,1325591 +102579,60,1,966,14055 +102580,413,11,14430,76864 +102581,40,1,418437,1049320 +102582,53,2,277778,978753 +102583,172,3,163,1727326 +102584,234,1,44751,65470 +102585,148,9,256962,1412482 +102586,226,2,257088,1551804 +102587,398,9,435,12639 +102588,234,1,228290,120135 +102589,234,1,89591,261347 +102590,413,11,6341,12419 +102591,3,5,11397,17948 +102592,203,1,326,1387544 +102593,234,1,98115,110283 +102594,234,1,349948,232672 +102595,53,2,24094,1313058 +102596,387,10,268212,1372046 +102597,105,7,47046,1601526 +102598,411,9,225285,1323353 +102599,387,10,44000,31253 +102600,23,9,339403,1635182 +102601,405,8,8916,1780708 +102602,3,5,32080,6570 +102603,277,3,266433,1415900 +102604,387,10,40879,1005504 +102605,234,1,84333,856440 +102606,53,2,9959,5493 +102607,207,3,544,1780216 +102608,75,5,9297,1425338 +102609,394,7,9835,58362 +102610,415,3,11496,1525613 +102611,273,7,84333,1191975 +102612,189,3,216580,1395232 +102613,204,9,53879,3358 +102614,166,9,10727,1418273 +102615,387,10,9899,14640 +102616,148,9,2675,10958 +102617,273,7,57977,1193974 +102618,328,6,69,1169459 +102619,158,2,97614,1384392 +102620,204,9,142984,38414 +102621,273,7,146243,1076 +102622,317,10,288313,556717 +102623,317,10,70981,564940 +102624,317,10,20047,1545171 +102625,60,1,6443,36564 +102626,234,1,241927,55189 +102627,317,10,293380,41751 +102628,204,9,11953,33132 +102629,413,11,28165,65326 +102630,209,7,522,15315 +102631,300,3,10590,8277 +102632,132,2,1428,1535727 +102633,148,9,283701,1647260 +102634,317,10,354832,1529885 +102635,398,9,2577,2071 +102636,273,7,9343,20552 +102637,273,7,23048,23486 +102638,3,5,76012,30057 +102639,187,11,41733,1408311 +102640,234,1,3554,32765 +102641,269,9,57419,1054798 +102642,3,5,373541,55427 +102643,387,10,27409,1189156 +102644,34,8,9835,1414289 +102645,204,9,17956,437 +102646,234,1,14916,140249 +102647,60,1,264525,1521653 +102648,234,1,60813,13680 +102649,87,7,16186,71948 +102650,234,1,9471,36425 +102651,234,1,107985,11090 +102652,289,6,10192,1460472 +102653,317,10,51167,27727 +102654,413,11,9639,31858 +102655,413,11,18843,56972 +102656,242,9,134475,552346 +102657,238,7,634,40813 +102658,196,7,334527,1403860 +102659,234,1,97767,99239 +102660,87,7,19348,1538827 +102661,411,9,287903,962679 +102662,3,5,59895,69814 +102663,5,10,12483,3027 +102664,175,5,10201,1172414 +102665,273,7,42191,5467 +102666,147,1,1647,1752651 +102667,182,8,337339,1420159 +102668,269,9,297736,217185 +102669,289,6,72640,573547 +102670,326,3,10865,12899 +102671,234,1,162006,589915 +102672,52,10,20968,76813 +102673,132,2,59861,1408293 +102674,286,3,18222,553981 +102675,234,1,72984,253696 +102676,317,10,27573,39781 +102677,413,11,137853,1184376 +102678,143,7,395982,1423393 +102679,234,1,97593,83467 +102680,180,7,2197,23298 +102681,234,1,409502,125637 +102682,203,1,445993,1411729 +102683,277,3,146243,1409889 +102684,273,7,310135,1397788 +102685,387,10,374473,15490 +102686,204,9,48205,1620074 +102687,234,1,40081,99436 +102688,176,3,2675,1573098 +102689,234,1,13614,2801 +102690,3,5,43790,109000 +102691,234,1,10948,67604 +102692,3,5,1661,1077 +102693,234,1,138522,109598 +102694,75,5,1251,1377132 +102695,317,10,251419,1286746 +102696,413,11,57201,7480 +102697,45,9,13056,1525209 +102698,52,10,88075,138466 +102699,234,1,384450,1172380 +102700,234,1,392832,138720 +102701,175,5,328429,1636696 +102702,204,9,17467,554128 +102703,333,2,26768,1568861 +102704,234,1,10165,240 +102705,387,10,79596,587538 +102706,3,5,9312,26714 +102707,387,10,56800,102844 +102708,182,8,85414,1406867 +102709,328,6,177677,1398100 +102710,413,11,369885,294 +102711,82,6,324181,1775304 +102712,317,10,351901,1348062 +102713,373,7,16436,1201942 +102714,122,8,26390,1526845 +102715,52,10,227700,499017 +102716,204,9,15689,1635090 +102717,239,5,1950,1550576 +102718,234,1,163814,106491 +102719,317,10,232731,128522 +102720,289,6,41213,1777244 +102721,286,3,366692,106520 +102722,179,2,60855,1396509 +102723,387,10,25078,93107 +102724,187,11,12573,1413092 +102725,314,2,33314,1406265 +102726,46,5,11024,1673524 +102727,296,3,49009,1539289 +102728,232,10,174769,48804 +102729,413,11,10860,10766 +102730,234,1,329216,119310 +102731,269,9,8014,53619 +102732,234,1,299,2000 +102733,182,8,70670,1586295 +102734,413,11,96411,937386 +102735,108,10,46758,6210 +102736,349,1,26809,1447483 +102737,3,5,8281,5431 +102738,3,5,9099,11958 +102739,148,9,8669,1326715 +102740,136,1,72431,1484224 +102741,204,9,346672,1554737 +102742,234,1,73027,35318 +102743,311,9,40466,1571745 +102744,273,7,2565,3535 +102745,234,1,12573,1224 +102746,413,11,47342,71044 +102747,289,6,67162,11429 +102748,413,11,1896,19811 +102749,87,7,29444,15308 +102750,317,10,8063,13317 +102751,413,11,99567,123773 +102752,234,1,961,10517 +102753,394,7,9438,1415618 +102754,262,6,13483,1379963 +102755,387,10,330333,1438821 +102756,82,6,324181,1775305 +102757,387,10,146381,80110 +102758,387,10,168496,9748 +102759,5,10,4478,37433 +102760,175,5,10066,1395243 +102761,53,2,120172,1570084 +102762,306,7,236808,1653027 +102763,289,6,69103,227127 +102764,333,2,145481,1526956 +102765,204,9,102841,1206546 +102766,269,9,10178,4085 +102767,234,1,26123,21475 +102768,234,1,250671,144422 +102769,204,9,253235,1855404 +102770,317,10,106944,129587 +102771,317,10,376188,1559212 +102772,37,3,99861,1456696 +102773,196,7,10070,1063965 +102774,234,1,32559,480666 +102775,5,10,15170,1686778 +102776,289,6,22752,148159 +102777,179,2,5,1547239 +102778,373,7,44943,113046 +102779,187,11,240832,1363847 +102780,3,5,166621,13338 +102781,203,1,141,1320713 +102782,381,9,2675,1573077 +102783,333,2,52270,26175 +102784,53,2,242310,1367123 +102785,234,1,48131,43553 +102786,72,11,243940,1525159 +102787,317,10,14215,77699 +102788,105,7,19610,35040 +102789,273,7,28303,3375 +102790,387,10,265712,43652 +102791,413,11,56816,1158488 +102792,189,3,30708,4506 +102793,226,2,296523,1776166 +102794,161,6,9472,1567911 +102795,244,3,613,1433214 +102796,273,7,241742,128763 +102797,387,10,30584,106567 +102798,413,11,245706,5361 +102799,317,10,321644,1419333 +102800,373,7,921,1070088 +102801,3,5,156360,2774 +102802,204,9,326,60596 +102803,387,10,42329,36116 +102804,175,5,84178,1404274 +102805,269,9,16177,1621064 +102806,413,11,214,2150 +102807,387,10,31672,26265 +102808,387,10,1917,18176 +102809,105,7,27144,97234 +102810,182,8,25241,1765282 +102811,105,7,14159,35786 +102812,273,7,16659,1609415 +102813,273,7,18111,19711 +102814,203,1,167,1400738 +102815,234,1,37936,18669 +102816,273,7,11535,996 +102817,234,1,338309,1462090 +102818,179,2,169,33284 +102819,25,2,109424,1430408 +102820,234,1,39102,1060540 +102821,357,3,140607,1550765 +102822,148,9,1377,7687 +102823,53,2,193,2397 +102824,34,8,9358,1441326 +102825,234,1,72419,60353 +102826,3,5,293863,1144816 +102827,234,1,111960,35318 +102828,387,10,43522,559101 +102829,213,10,138502,1108987 +102830,143,7,435,1334485 +102831,366,3,8619,1619090 +102832,234,1,2771,72205 +102833,167,3,70074,1407032 +102834,105,7,76397,14850 +102835,209,7,19995,6883 +102836,3,5,86297,69814 +102837,387,10,9294,46086 +102838,234,1,31995,2636 +102839,179,2,122857,1319157 +102840,373,7,203819,75301 +102841,39,3,18,1881567 +102842,5,10,43470,1165682 +102843,273,7,2486,9152 +102844,387,10,49850,556717 +102845,234,1,149600,1128865 +102846,413,11,37936,31182 +102847,45,9,10096,1546827 +102848,46,5,9472,1261680 +102849,198,6,312221,1580879 +102850,3,5,187028,968911 +102851,204,9,18414,40835 +102852,317,10,390777,1023127 +102853,113,9,18,11225 +102854,3,5,28586,9103 +102855,3,5,11950,14642 +102856,327,7,755,1440822 +102857,262,6,9426,115212 +102858,269,9,271404,1173302 +102859,286,3,51364,10522 +102860,333,2,1381,1447124 +102861,289,6,9514,1642536 +102862,108,10,107593,1729488 +102863,200,3,228066,1574095 +102864,3,5,39766,89159 +102865,262,6,345925,1337467 +102866,314,2,16186,1554754 +102867,234,1,38417,58861 +102868,333,2,70667,1448308 +102869,269,9,285181,45144 +102870,53,2,248639,4127 +102871,99,3,21734,87829 +102872,234,1,224204,1209785 +102873,285,5,176,1817627 +102874,234,1,117509,98385 +102875,387,10,1896,19805 +102876,3,5,46992,5432 +102877,328,6,206647,1398100 +102878,53,2,10025,543194 +102879,203,1,297762,6884 +102880,234,1,251,3415 +102881,105,7,51828,3562 +102882,97,7,448847,1699535 +102883,413,11,80560,1120041 +102884,226,2,76163,1407339 +102885,289,6,10020,1447370 +102886,317,10,336666,1402358 +102887,394,7,419192,1451515 +102888,387,10,130055,64750 +102889,234,1,332488,1445666 +102890,234,1,242033,70558 +102891,33,10,83430,1105213 +102892,234,1,6934,16730 +102893,169,3,72431,1443984 +102894,413,11,158942,1202604 +102895,291,6,8464,961445 +102896,234,1,6341,12840 +102897,20,2,354859,1619645 +102898,226,2,9443,1626426 +102899,148,9,169881,1398090 +102900,37,3,8870,1447557 +102901,234,1,269258,1844 +102902,317,10,14138,81327 +102903,234,1,37269,40243 +102904,127,3,22602,88979 +102905,387,10,12103,20274 +102906,314,2,112961,1452644 +102907,413,11,7234,52138 +102908,413,11,63139,125326 +102909,52,10,10829,26475 +102910,317,10,330588,43435 +102911,317,10,235260,128399 +102912,317,10,19042,218670 +102913,413,11,102629,1119658 +102914,286,3,72204,1449420 +102915,413,11,7299,1047 +102916,234,1,220515,230071 +102917,269,9,341886,1573323 +102918,413,11,15316,997341 +102919,360,3,7916,1333084 +102920,387,10,29286,30101 +102921,269,9,70586,905 +102922,289,6,345925,1453668 +102923,317,10,9539,59611 +102924,77,10,105210,1037689 +102925,373,7,14,1391571 +102926,403,10,22554,88914 +102927,3,5,12453,72284 +102928,105,7,23964,77208 +102929,413,11,70090,1093440 +102930,373,7,79995,1553772 +102931,333,2,105860,30897 +102932,75,5,333484,1437305 +102933,234,1,42634,10586 +102934,3,5,6081,47846 +102935,39,3,4147,1558214 +102936,148,9,505,6925 +102937,3,5,9664,23422 +102938,273,7,124157,69085 +102939,3,5,197089,26097 +102940,53,2,378018,1519339 +102941,3,5,406992,4376 +102942,411,9,334074,61846 +102943,413,11,8391,35332 +102944,273,7,19338,13669 +102945,289,6,1877,1417016 +102946,40,1,4547,17217 +102947,3,5,291,4338 +102948,353,7,71668,1376276 +102949,3,5,123757,1012097 +102950,289,6,378236,1840334 +102951,3,5,110525,13270 +102952,104,7,59962,1551705 +102953,180,7,10948,143773 +102954,234,1,15592,1201 +102955,413,11,10543,6051 +102956,317,10,58903,57898 +102957,113,9,340275,1577302 +102958,413,11,11887,21794 +102959,3,5,42512,28982 +102960,15,6,99861,1414189 +102961,413,11,15472,69018 +102962,3,5,935,7753 +102963,234,1,51311,6818 +102964,148,9,11511,41898 +102965,234,1,331642,1035833 +102966,204,9,338676,1143014 +102967,293,2,9819,1816567 +102968,72,11,11618,20846 +102969,373,7,22881,1378228 +102970,234,1,395914,1614737 +102971,246,6,283995,1774214 +102972,143,7,10476,1422979 +102973,234,1,43935,19499 +102974,60,1,16410,30938 +102975,234,1,40850,124831 +102976,234,1,429801,140244 +102977,52,10,6972,6201 +102978,333,2,330459,1616471 +102979,187,11,2675,1050930 +102980,387,10,41402,32278 +102981,387,10,29959,69320 +102982,371,3,38775,8863 +102983,196,7,9836,1539292 +102984,105,7,9464,22461 +102985,317,10,51406,1065698 +102986,387,10,93492,56742 +102987,234,1,136368,1105685 +102988,387,10,51571,13802 +102989,204,9,31527,8622 +102990,234,1,43158,37915 +102991,148,9,18098,119115 +102992,413,11,12449,11358 +102993,53,2,179818,9064 +102994,53,2,408537,1769624 +102995,77,10,12247,71872 +102996,203,1,11172,1393455 +102997,387,10,45243,35796 +102998,387,10,8882,63973 +102999,273,7,18937,9152 +103000,387,10,274857,956 +103001,250,11,246415,1190770 +103002,187,11,13849,1413937 +103003,289,6,58159,115754 +103004,62,3,949,548451 +103005,45,9,10320,1821123 +103006,53,2,9816,27041 +103007,317,10,319971,214108 +103008,317,10,336811,89628 +103009,60,1,61934,1678832 +103010,234,1,70586,131413 +103011,204,9,11880,33445 +103012,234,1,105503,1075464 +103013,204,9,114790,1406156 +103014,160,3,123109,1502542 +103015,317,10,104275,1695102 +103016,105,7,38325,238620 +103017,97,7,6947,557528 +103018,413,11,142061,1033619 +103019,273,7,25941,223574 +103020,179,2,4806,1521508 +103021,234,1,30806,82829 +103022,72,11,4982,1017296 +103023,3,5,48202,40392 +103024,277,3,32532,109314 +103025,327,7,83346,1350804 +103026,179,2,10999,1338836 +103027,75,5,109424,13670 +103028,317,10,26656,1017820 +103029,128,8,425774,1708030 +103030,3,5,71099,33459 +103031,333,2,9297,1462668 +103032,102,3,11618,1765797 +103033,317,10,228496,1320755 +103034,179,2,10529,1484531 +103035,250,11,246415,1439429 +103036,387,10,11442,49730 +103037,387,10,44631,120465 +103038,160,3,10484,38650 +103039,403,10,382591,129456 +103040,3,5,72785,27014 +103041,204,9,152748,1262343 +103042,234,1,336655,1456978 +103043,411,9,97630,23772 +103044,234,1,76176,117350 +103045,3,5,3595,33238 +103046,273,7,97910,4100 +103047,238,7,343173,1321144 +103048,196,7,294254,1360099 +103049,250,11,4413,1406903 +103050,413,11,16296,56989 +103051,317,10,203217,1185618 +103052,317,10,264729,1167113 +103053,14,7,447236,1439047 +103054,234,1,25633,2765 +103055,234,1,77314,143279 +103056,53,2,9778,46589 +103057,182,8,323435,1571056 +103058,234,1,52072,56214 +103059,269,9,98066,990070 +103060,204,9,28482,103979 +103061,75,5,70981,1388899 +103062,333,2,39284,937611 +103063,333,2,43241,10796 +103064,413,11,16987,1113606 +103065,210,9,297762,1430503 +103066,166,9,435,92214 +103067,3,5,163706,36016 +103068,273,7,9918,894 +103069,234,1,28036,98335 +103070,413,11,13834,75873 +103071,226,2,105860,24672 +103072,333,2,21927,1095897 +103073,3,5,69903,14094 +103074,387,10,116327,31253 +103075,234,1,2963,11523 +103076,289,6,17711,1450350 +103077,387,10,27144,97233 +103078,234,1,334298,12099 +103079,197,5,31947,1195689 +103080,273,7,410718,1492919 +103081,333,2,33273,1344149 +103082,387,10,89287,144791 +103083,148,9,47410,138871 +103084,234,1,236395,96255 +103085,105,7,207641,62811 +103086,317,10,431244,232019 +103087,250,11,237584,1621377 +103088,160,3,101325,6328 +103089,148,9,258251,1335138 +103090,317,10,81775,34264 +103091,97,7,265208,1341784 +103092,53,2,20357,59858 +103093,413,11,274479,13227 +103094,53,2,65674,1770621 +103095,387,10,118948,85996 +103096,387,10,9301,1071 +103097,311,9,9902,1840062 +103098,102,3,11351,1401992 +103099,413,11,12764,53008 +103100,187,11,284052,1388864 +103101,158,2,59965,1395033 +103102,317,10,14217,20310 +103103,317,10,41497,120410 +103104,273,7,17057,89804 +103105,3,5,46421,29320 +103106,148,9,48136,1461988 +103107,234,1,65579,84737 +103108,397,7,44945,150430 +103109,250,11,340275,1407744 +103110,75,5,2731,3924 +103111,52,10,133941,99471 +103112,234,1,32043,15175 +103113,413,11,42251,81827 +103114,52,10,206647,10783 +103115,200,3,70074,1407355 +103116,53,2,289712,1314152 +103117,158,2,418437,1763648 +103118,349,1,11024,1461149 +103119,53,2,39781,46589 +103120,179,2,324670,1726026 +103121,269,9,283995,15351 +103122,413,11,396330,1297324 +103123,15,6,10020,1337303 +103124,287,3,29161,103052 +103125,333,2,155597,1586000 +103126,273,7,11046,7752 +103127,413,11,70086,1135880 +103128,268,7,435,1432596 +103129,234,1,279690,1336328 +103130,327,7,308269,1447904 +103131,317,10,26510,19984 +103132,246,6,126889,1746434 +103133,53,2,63493,29928 +103134,113,9,110412,1563417 +103135,273,7,75641,9217 +103136,25,2,369885,1759883 +103137,234,1,191476,220303 +103138,5,10,64310,1184296 +103139,373,7,8204,1338976 +103140,234,1,362178,1520165 +103141,301,5,326,1407229 +103142,411,9,68737,17831 +103143,3,5,20096,59955 +103144,388,9,46261,1425372 +103145,239,5,43459,1637899 +103146,413,11,10999,1099 +103147,333,2,228205,1521491 +103148,250,11,167073,1473169 +103149,5,10,130062,24840 +103150,3,5,6145,50140 +103151,235,5,2503,1406846 +103152,3,5,322785,1426834 +103153,182,8,312221,1512738 +103154,164,3,9902,1531896 +103155,301,5,9882,91115 +103156,200,3,11370,1413507 +103157,53,2,868,13089 +103158,273,7,21451,26026 +103159,317,10,282268,8930 +103160,203,1,15090,1367679 +103161,234,1,180299,142013 +103162,273,7,15875,14647 +103163,317,10,56235,223825 +103164,239,5,245168,1578870 +103165,413,11,1659,18434 +103166,317,10,304336,586136 +103167,234,1,16358,4910 +103168,234,1,208091,1193917 +103169,180,7,43385,10155 +103170,273,7,51476,144264 +103171,413,11,48156,21508 +103172,273,7,4286,36017 +103173,203,1,84892,1015922 +103174,176,3,6171,1378689 +103175,52,10,16096,141825 +103176,234,1,43792,82389 +103177,77,10,163,1887 +103178,213,10,172890,140457 +103179,269,9,310135,1453145 +103180,188,8,26882,1773045 +103181,97,7,152736,1396793 +103182,387,10,11704,40345 +103183,317,10,353533,1168111 +103184,234,1,32648,27676 +103185,5,10,75578,393958 +103186,220,7,28000,7647 +103187,105,7,63773,24315 +103188,317,10,292387,1363531 +103189,234,1,63179,132188 +103190,209,7,311324,1519432 +103191,53,2,270383,1391798 +103192,234,1,81654,29433 +103193,262,6,245168,1409707 +103194,346,3,8870,1412758 +103195,371,3,29343,869 +103196,413,11,334074,1408843 +103197,293,2,395992,1770975 +103198,12,10,1452,20007 +103199,141,7,32634,91245 +103200,413,11,408537,1818462 +103201,333,2,68822,1433861 +103202,413,11,73424,158455 +103203,204,9,34512,553361 +103204,234,1,29233,100888 +103205,155,3,44115,952397 +103206,387,10,11895,12991 +103207,413,11,170517,1497383 +103208,148,9,8588,1318521 +103209,333,2,84708,29813 +103210,87,7,352164,1611043 +103211,97,7,13849,1337412 +103212,143,7,278632,1338482 +103213,273,7,54256,88141 +103214,373,7,4887,1377259 +103215,182,8,72431,1398935 +103216,269,9,76871,24297 +103217,204,9,105548,8506 +103218,5,10,9095,1558115 +103219,74,5,399790,1830193 +103220,301,5,1579,1400349 +103221,234,1,363439,101225 +103222,269,9,277355,962085 +103223,53,2,259695,958488 +103224,360,3,18417,83073 +103225,75,5,142966,1294569 +103226,5,10,186971,933415 +103227,15,6,72431,1484196 +103228,317,10,25037,37846 +103229,53,2,77964,4127 +103230,387,10,197335,1177492 +103231,40,1,2662,1552523 +103232,234,1,46187,1096377 +103233,387,10,10162,64045 +103234,60,1,27523,33924 +103235,97,7,27265,1170025 +103236,5,10,31586,62055 +103237,317,10,181456,26959 +103238,387,10,174195,34402 +103239,182,8,206647,1414096 +103240,306,7,263115,1821885 +103241,413,11,2160,22086 +103242,86,3,8916,1440822 +103243,273,7,15179,1164734 +103244,262,6,10590,1445885 +103245,75,5,352327,1491851 +103246,413,11,44960,1231676 +103247,187,11,309879,1621479 +103248,269,9,241930,1398016 +103249,413,11,13162,16567 +103250,234,1,300487,93004 +103251,60,1,31509,1364153 +103252,234,1,82350,45982 +103253,99,3,1924,157703 +103254,317,10,273879,5058 +103255,317,10,352025,16862 +103256,25,2,277713,19992 +103257,398,9,11045,1717517 +103258,53,2,107073,1481508 +103259,204,9,85640,107063 +103260,204,9,72207,1324261 +103261,187,11,298584,1583134 +103262,53,2,413452,1087249 +103263,234,1,58525,224204 +103264,387,10,31418,142503 +103265,188,8,8619,1619098 +103266,97,7,2105,1367493 +103267,234,1,323673,115178 +103268,52,10,54959,131346 +103269,273,7,62394,4140 +103270,269,9,10774,20968 +103271,387,10,9899,14639 +103272,413,11,67822,1195870 +103273,394,7,339994,548443 +103274,234,1,126415,128432 +103275,53,2,58918,1577012 +103276,3,5,262357,1271795 +103277,179,2,69,1327146 +103278,15,6,257088,1512667 +103279,273,7,41441,1294097 +103280,317,10,42204,1176556 +103281,273,7,31417,2704 +103282,234,1,98586,980124 +103283,269,9,23397,10641 +103284,394,7,815,15880 +103285,317,10,102961,1188914 +103286,234,1,397837,45419 +103287,269,9,42787,4085 +103288,53,2,57011,552561 +103289,97,7,130925,1572873 +103290,187,11,167073,1578009 +103291,234,1,60807,1070462 +103292,160,3,330459,1342659 +103293,143,7,22076,1398177 +103294,179,2,414977,1676805 +103295,413,11,194817,12721 +103296,127,3,82650,1007395 +103297,5,10,73984,1087694 +103298,234,1,113279,1081129 +103299,406,6,744,1463188 +103300,52,10,91548,277604 +103301,234,1,13318,85150 +103302,317,10,102461,229263 +103303,387,10,76493,57406 +103304,234,1,129553,32134 +103305,148,9,10696,107420 +103306,3,5,180576,5708 +103307,262,6,140814,1113460 +103308,234,1,2140,21931 +103309,317,10,332488,1445667 +103310,3,5,72460,19102 +103311,277,3,18093,1558020 +103312,234,1,74836,8949 +103313,160,3,1991,23285 +103314,333,2,5425,1632429 +103315,415,3,308269,1447888 +103316,257,3,15934,1618901 +103317,413,11,52520,558231 +103318,75,5,167330,48170 +103319,294,3,95516,1411146 +103320,179,2,45273,1332239 +103321,273,7,42825,14861 +103322,234,1,5289,42712 +103323,317,10,82481,229222 +103324,413,11,4012,35144 +103325,45,9,8204,1519865 +103326,234,1,48508,229307 +103327,292,3,14,1339462 +103328,277,3,100669,1632800 +103329,53,2,62728,45058 +103330,413,11,45838,1120804 +103331,317,10,63441,99436 +103332,413,11,8144,38595 +103333,208,2,6171,15017 +103334,204,9,120497,8622 +103335,349,1,35,1447474 +103336,52,10,17606,54121 +103337,127,3,174751,1521185 +103338,53,2,82,605 +103339,143,7,84577,1392938 +103340,148,9,128270,1372077 +103341,317,10,217038,151083 +103342,301,5,145135,1179562 +103343,226,2,9785,1401605 +103344,250,11,335778,1418443 +103345,53,2,28774,1466196 +103346,317,10,46247,124748 +103347,317,10,245324,18415 +103348,234,1,65887,32096 +103349,289,6,10491,1433231 +103350,291,6,225728,1571980 +103351,317,10,156268,1137589 +103352,234,1,38766,2000 +103353,357,3,76757,1482843 +103354,262,6,8464,1581509 +103355,234,1,10176,32277 +103356,102,3,4248,1667262 +103357,273,7,141,1589 +103358,234,1,10041,118901 +103359,3,5,153854,1010024 +103360,317,10,210047,90609 +103361,129,11,94480,136400 +103362,373,7,755,1424130 +103363,273,7,27265,9251 +103364,273,7,259975,96286 +103365,3,5,43199,10537 +103366,72,11,132363,1407745 +103367,286,3,41076,1092671 +103368,413,11,255491,25746 +103369,373,7,302828,1486916 +103370,413,11,49500,294 +103371,394,7,8467,1422982 +103372,234,1,35790,12160 +103373,413,11,2012,50559 +103374,273,7,52454,128763 +103375,175,5,436,1228007 +103376,180,7,52867,1611816 +103377,269,9,14145,1416971 +103378,317,10,35651,17386 +103379,77,10,1165,15730 +103380,413,11,43751,30825 +103381,53,2,62439,1296110 +103382,52,10,293863,225499 +103383,387,10,67174,1202157 +103384,234,1,293271,1364790 +103385,352,3,11547,1557603 +103386,53,2,287628,1316805 +103387,97,7,613,1394265 +103388,234,1,284246,1347528 +103389,317,10,136743,1588580 +103390,387,10,59726,229695 +103391,401,6,11688,56147 +103392,53,2,151826,20722 +103393,226,2,315664,1403576 +103394,250,11,924,13194 +103395,234,1,212713,33062 +103396,413,11,9673,19925 +103397,208,2,59419,1333149 +103398,298,5,250066,1495530 +103399,413,11,201749,1267833 +103400,387,10,38317,78435 +103401,75,5,116463,61851 +103402,234,1,35253,114351 +103403,75,5,8619,118867 +103404,413,11,10946,67598 +103405,293,2,146243,1583077 +103406,203,1,5123,1347761 +103407,317,10,455661,1809041 +103408,413,11,28115,13781 +103409,226,2,18417,83066 +103410,148,9,202662,1803897 +103411,387,10,264454,1309616 +103412,208,2,211144,1511135 +103413,66,11,99,1677183 +103414,234,1,27653,108097 +103415,87,7,18826,83655 +103416,3,5,111960,1279101 +103417,273,7,120478,1072143 +103418,234,1,271826,38516 +103419,305,9,376501,933117 +103420,234,1,161187,1021810 +103421,234,1,2625,6111 +103422,53,2,62441,957628 +103423,234,1,463800,82194 +103424,387,10,15934,78997 +103425,234,1,5748,4590 +103426,234,1,6183,1844 +103427,3,5,5753,46971 +103428,314,2,333484,1402708 +103429,5,10,71805,1061944 +103430,317,10,76681,87590 +103431,317,10,83588,929825 +103432,53,2,4988,8868 +103433,75,5,7916,1431079 +103434,273,7,3554,32770 +103435,234,1,14126,34672 +103436,373,7,70670,1545282 +103437,148,9,325189,965663 +103438,333,2,168259,1317667 +103439,317,10,21778,16922 +103440,317,10,405882,1283526 +103441,127,3,289720,1358975 +103442,317,10,336011,1454850 +103443,398,9,14372,25061 +103444,262,6,6972,1163750 +103445,52,10,43546,167903 +103446,317,10,15907,1350294 +103447,204,9,136752,1208808 +103448,413,11,19958,61806 +103449,287,3,15092,61996 +103450,226,2,1125,1408278 +103451,160,3,540,92482 +103452,204,9,12477,1009730 +103453,387,10,59981,1214818 +103454,3,5,425774,1707971 +103455,317,10,41903,81984 +103456,234,1,141,1577 +103457,3,5,170689,1027592 +103458,317,10,16240,1482098 +103459,3,5,42664,13809 +103460,234,1,319999,932317 +103461,234,1,54769,20869 +103462,186,6,2454,1447503 +103463,413,11,21734,1552 +103464,234,1,12764,57154 +103465,53,2,36519,9064 +103466,387,10,4832,39648 +103467,234,1,73984,14520 +103468,232,10,27061,3831 +103469,317,10,14804,143019 +103470,204,9,112991,1524177 +103471,286,3,15022,1035038 +103472,413,11,921,6190 +103473,234,1,144111,114337 +103474,413,11,301228,1519841 +103475,387,10,204839,980475 +103476,360,3,269173,1379045 +103477,234,1,72251,52094 +103478,333,2,398289,75294 +103479,273,7,16820,9217 +103480,286,3,198062,14139 +103481,328,6,10796,1868291 +103482,360,9,103432,1833310 +103483,245,3,95358,133182 +103484,187,11,9529,1309883 +103485,273,7,10805,66885 +103486,273,7,210913,2336 +103487,317,10,75892,972173 +103488,333,2,332354,1490653 +103489,3,5,249,1258 +103490,262,6,18801,1401714 +103491,204,9,42325,9062 +103492,376,10,157351,564082 +103493,3,5,16175,58818 +103494,53,2,343934,1527662 +103495,340,2,337339,1543193 +103496,269,9,1294,55288 +103497,208,2,318553,1647029 +103498,34,8,443319,1853857 +103499,45,9,209112,484529 +103500,104,7,2637,1565007 +103501,317,10,44260,814 +103502,317,10,8897,589490 +103503,234,1,18908,1011 +103504,317,10,242033,1131215 +103505,148,9,26142,65711 +103506,53,2,62492,60110 +103507,37,3,8989,20897 +103508,317,10,30690,1147667 +103509,234,1,62036,227311 +103510,203,1,41312,1652287 +103511,373,7,257534,1297710 +103512,317,10,184098,147712 +103513,234,1,57809,107720 +103514,108,10,39779,57625 +103515,143,7,205864,1553691 +103516,234,1,71139,1795130 +103517,413,11,270336,1320690 +103518,273,7,47508,1665500 +103519,234,1,392271,87550 +103520,387,10,3423,20789 +103521,234,1,18613,88391 +103522,113,9,216580,1395216 +103523,155,3,14770,1549395 +103524,187,11,316042,1338133 +103525,234,1,177566,81297 +103526,317,10,39939,56251 +103527,317,10,52109,11147 +103528,3,5,94176,29635 +103529,143,7,368006,1640317 +103530,204,9,90461,9062 +103531,161,6,46738,1536210 +103532,269,9,19765,72801 +103533,53,2,2110,21653 +103534,5,10,31074,1318481 +103535,5,10,47525,139064 +103536,182,8,18,1398110 +103537,387,10,130272,1090944 +103538,113,9,124470,1448295 +103539,75,5,337339,930028 +103540,333,2,312174,1274041 +103541,53,2,13005,1534030 +103542,317,10,87894,34741 +103543,234,1,147132,103699 +103544,333,2,285270,1367920 +103545,317,10,212481,230572 +103546,269,9,49940,1102110 +103547,317,10,294483,1144880 +103548,234,1,169009,35325 +103549,105,7,137193,1106978 +103550,387,10,84305,3226 +103551,387,10,3574,32995 +103552,113,9,19995,1376898 +103553,234,1,18079,74907 +103554,204,9,169881,1411329 +103555,273,7,755,5912 +103556,317,10,14751,1666879 +103557,234,1,19661,64114 +103558,328,6,6068,1536376 +103559,360,3,76203,1393439 +103560,52,10,289712,66074 +103561,53,2,255343,1321362 +103562,234,1,343921,110876 +103563,60,1,55604,1312999 +103564,87,7,283995,24192 +103565,3,5,36489,65502 +103566,314,2,373546,1869456 +103567,387,10,29959,30969 +103568,327,7,18417,83083 +103569,148,9,154,1800 +103570,213,10,109261,1046027 +103571,262,6,395992,1770992 +103572,234,1,50247,95501 +103573,234,1,13920,53178 +103574,3,5,49502,37865 +103575,333,2,9778,558227 +103576,75,5,293167,1395029 +103577,282,3,263115,1738123 +103578,287,3,294254,1571513 +103579,387,10,186227,223106 +103580,3,5,29056,4083 +103581,234,1,30875,29433 +103582,148,9,84903,34436 +103583,113,9,206647,1472773 +103584,234,1,186227,89632 +103585,317,10,45326,80675 +103586,3,5,332662,1570514 +103587,3,5,24927,46973 +103588,148,9,76341,61485 +103589,245,3,402672,85398 +103590,360,9,99261,1752039 +103591,387,10,337107,17623 +103592,204,9,362541,1518578 +103593,413,11,9959,3310 +103594,381,9,258251,1348589 +103595,234,1,242835,123401 +103596,203,1,24212,1649176 +103597,148,9,181533,60714 +103598,105,7,408616,469 +103599,317,10,348611,1486969 +103600,204,9,13654,1447347 +103601,234,1,128625,206780 +103602,148,9,353979,1286560 +103603,269,9,48231,6629 +103604,325,5,106747,1521393 +103605,203,1,15092,1158477 +103606,179,2,12526,1536927 +103607,53,2,100910,38229 +103608,360,3,339530,1420860 +103609,203,1,25520,1429643 +103610,61,7,197,1404212 +103611,204,9,35651,1590602 +103612,53,2,2662,989146 +103613,105,7,13058,1196692 +103614,203,1,308269,1447879 +103615,169,3,50126,1392262 +103616,387,10,18671,11993 +103617,339,2,755,1039595 +103618,113,9,2503,59682 +103619,60,1,9028,1688133 +103620,200,3,227306,1554365 +103621,3,5,336882,63746 +103622,234,1,184219,81251 +103623,209,7,218778,1394984 +103624,365,6,152042,1801214 +103625,12,10,38460,120531 +103626,328,6,8204,1341268 +103627,413,11,10207,9647 +103628,182,8,10529,1567318 +103629,269,9,341174,5508 +103630,346,3,198663,1425342 +103631,398,9,329865,1810163 +103632,387,10,11361,32813 +103633,66,11,313922,1396755 +103634,3,5,139519,1308529 +103635,269,9,1418,16439 +103636,273,7,23628,90418 +103637,204,9,296523,42635 +103638,58,2,9314,1749137 +103639,387,10,9659,20629 +103640,234,1,218329,85203 +103641,187,11,225285,75101 +103642,296,3,5,1851724 +103643,387,10,122221,185056 +103644,60,1,179103,1622157 +103645,262,6,351901,1558718 +103646,148,9,289,4126 +103647,97,7,188927,1426828 +103648,204,9,65488,35154 +103649,296,3,9472,1567970 +103650,51,9,10204,40757 +103651,3,5,1721,18835 +103652,387,10,14869,34672 +103653,317,10,58251,227565 +103654,72,11,4551,1119658 +103655,3,5,353979,1374810 +103656,330,3,144792,89045 +103657,234,1,31418,108049 +103658,317,10,65134,1139424 +103659,204,9,2965,29058 +103660,148,9,126516,1529727 +103661,413,11,25643,52450 +103662,317,10,354105,37361 +103663,373,7,142145,92377 +103664,317,10,220029,152016 +103665,179,2,2046,1455294 +103666,413,11,134806,69568 +103667,273,7,3941,34310 +103668,387,10,11185,56975 +103669,413,11,227717,103085 +103670,262,6,74,1268981 +103671,387,10,33025,14855 +103672,387,10,11915,39139 +103673,234,1,131932,1093950 +103674,269,9,60935,9618 +103675,317,10,15671,67395 +103676,317,10,110887,67428 +103677,317,10,8063,161186 +103678,190,7,1966,1733789 +103679,46,5,117,1558200 +103680,105,7,284279,128137 +103681,270,9,11351,66693 +103682,413,11,11139,10751 +103683,273,7,76757,15347 +103684,234,1,34615,16730 +103685,3,5,74436,13809 +103686,413,11,12230,64869 +103687,317,10,376538,21493 +103688,234,1,74645,109555 +103689,3,5,2169,22180 +103690,234,1,78362,63481 +103691,235,5,206647,1545995 +103692,3,5,140814,1113455 +103693,317,10,24971,92929 +103694,226,2,37926,1772858 +103695,67,10,14128,1447322 +103696,234,1,32893,1275989 +103697,250,11,384737,1404196 +103698,373,7,323435,1265617 +103699,32,8,351211,1652051 +103700,234,1,24750,1788 +103701,188,8,74,1868862 +103702,333,2,33586,1814998 +103703,245,3,78177,583267 +103704,204,9,96951,1353811 +103705,158,2,177677,1545914 +103706,175,5,10754,1609518 +103707,5,10,53574,557979 +103708,234,1,387957,223349 +103709,234,1,269246,1233653 +103710,3,5,36519,1498 +103711,200,3,274479,1403470 +103712,161,6,329865,1646568 +103713,304,10,58007,31892 +103714,3,5,9470,29692 +103715,235,5,408755,1660987 +103716,317,10,89647,1050722 +103717,196,7,127521,1335147 +103718,289,6,140607,1550761 +103719,3,5,17911,79392 +103720,3,5,38922,100147 +103721,373,7,354859,1400072 +103722,204,9,99861,983309 +103723,234,1,93457,21839 +103724,413,11,38654,10219 +103725,234,1,11346,49798 +103726,317,10,110146,187074 +103727,250,11,222935,1486847 +103728,234,1,436340,235932 +103729,208,2,68737,1441272 +103730,413,11,34231,1197416 +103731,273,7,12759,63199 +103732,333,2,11812,9333 +103733,413,11,2734,27677 +103734,413,11,72465,71495 +103735,127,3,28090,1719904 +103736,234,1,18971,372 +103737,234,1,10917,27676 +103738,46,5,263115,1821905 +103739,234,1,30492,82859 +103740,234,1,24432,53332 +103741,317,10,84337,1393258 +103742,53,2,397717,1143008 +103743,317,10,43989,129979 +103744,269,9,20210,20824 +103745,234,1,16993,6593 +103746,3,5,203321,1554230 +103747,160,3,277355,1094539 +103748,415,3,26936,1108681 +103749,413,11,46982,71131 +103750,398,9,19901,1391711 +103751,185,11,1647,1739962 +103752,415,3,80720,3252 +103753,328,6,245692,1574454 +103754,346,3,5638,81539 +103755,204,9,1904,19863 +103756,234,1,73628,552700 +103757,221,3,11377,1602870 +103758,3,5,12525,33618 +103759,387,10,80443,5810 +103760,234,1,433086,1732366 +103761,113,9,11450,58360 +103762,287,3,27814,1856488 +103763,269,9,14904,3109 +103764,394,7,9296,1341403 +103765,387,10,28263,53006 +103766,387,10,292625,1758583 +103767,5,10,433,5835 +103768,413,11,98125,41144 +103769,148,9,6933,1560275 +103770,262,6,2288,1403876 +103771,286,3,60807,1063739 +103772,52,10,91477,1193840 +103773,413,11,39578,66105 +103774,314,2,329865,1436493 +103775,333,2,34078,1633098 +103776,317,10,33588,110962 +103777,53,2,448847,1355309 +103778,187,11,33586,1411874 +103779,413,11,177572,61958 +103780,198,6,336882,1635803 +103781,387,10,46145,84238 +103782,3,5,197,2483 +103783,413,11,407448,1383143 +103784,75,5,181533,1404734 +103785,291,6,324670,1429245 +103786,317,10,48254,5812 +103787,269,9,86829,10575 +103788,413,11,19995,1721 +103789,53,2,40095,51693 +103790,207,3,181533,1419114 +103791,203,1,9893,1414532 +103792,204,9,55197,552003 +103793,387,10,11656,70363 +103794,3,5,24625,151 +103795,387,10,282069,43652 +103796,28,9,14,1096860 +103797,203,1,20439,1560265 +103798,273,7,128081,63854 +103799,3,5,30265,1357 +103800,226,2,1624,1413224 +103801,234,1,55624,6818 +103802,189,3,10320,1821187 +103803,143,7,83,1368866 +103804,45,9,302026,1570580 +103805,277,3,214938,1409642 +103806,317,10,21027,24792 +103807,3,5,211579,1294391 +103808,304,10,130544,1091591 +103809,105,7,379019,1780121 +103810,179,2,1717,1391597 +103811,34,8,7220,1416067 +103812,387,10,31675,70308 +103813,387,10,245597,1284286 +103814,317,10,51739,27814 +103815,204,9,43855,11036 +103816,175,5,183412,1419638 +103817,148,9,105965,63673 +103818,234,1,226163,1211583 +103819,317,10,13842,146019 +103820,234,1,188180,1113223 +103821,3,5,11889,293 +103822,234,1,352186,1491596 +103823,204,9,53857,9062 +103824,105,7,36657,7714 +103825,269,9,9846,9199 +103826,387,10,86985,1016259 +103827,333,2,55604,10796 +103828,234,1,27358,235783 +103829,317,10,137776,981823 +103830,317,10,41252,52264 +103831,387,10,137193,1106976 +103832,209,7,297762,15018 +103833,75,5,257088,1332515 +103834,403,10,20364,230008 +103835,239,5,98066,1345651 +103836,258,9,74777,583472 +103837,333,2,256092,1427457 +103838,373,7,975,1043428 +103839,234,1,120587,1112486 +103840,143,7,293660,1340345 +103841,234,1,37468,24939 +103842,373,7,318553,128980 +103843,273,7,403570,75940 +103844,234,1,325385,55119 +103845,317,10,351043,1125160 +103846,317,10,70498,1242310 +103847,273,7,91070,52454 +103848,239,5,445993,1808033 +103849,3,5,368006,419797 +103850,234,1,109587,36640 +103851,244,3,318553,1647034 +103852,234,1,141955,584304 +103853,72,11,8470,1550067 +103854,317,10,17350,56024 +103855,113,9,297762,1824245 +103856,165,9,961,14424 +103857,317,10,42260,21997 +103858,20,2,246655,1525883 +103859,387,10,53857,1504 +103860,387,10,14029,44955 +103861,413,11,35052,16346 +103862,286,3,36075,124125 +103863,196,7,188826,1583222 +103864,387,10,56599,96807 +103865,317,10,213095,41980 +103866,394,7,86829,9619 +103867,293,2,329865,1777639 +103868,262,6,10674,1813970 +103869,75,5,284052,1388898 +103870,234,1,1922,19983 +103871,269,9,4441,37282 +103872,166,9,78802,1665669 +103873,3,5,9778,24256 +103874,269,9,125257,555187 +103875,373,7,2047,1368864 +103876,328,6,76203,1393446 +103877,269,9,369883,20824 +103878,317,10,50012,143280 +103879,387,10,19901,56502 +103880,234,1,115782,64139 +103881,298,5,321303,1512680 +103882,179,2,369894,1317391 +103883,3,5,49689,1538302 +103884,3,5,91076,10688 +103885,333,2,19754,1555338 +103886,189,3,218778,1397737 +103887,317,10,84727,1368715 +103888,317,10,158739,1140154 +103889,413,11,246133,1079368 +103890,234,1,18696,10146 +103891,269,9,22881,7855 +103892,204,9,5289,1325693 +103893,298,5,435,1574637 +103894,273,7,258509,5666 +103895,413,11,10603,17164 +103896,317,10,14881,2235 +103897,155,3,2898,35508 +103898,292,3,10733,1571751 +103899,60,1,896,1305288 +103900,387,10,43158,134432 +103901,273,7,67748,549315 +103902,148,9,44545,1099213 +103903,204,9,122,1318 +103904,32,8,6163,1905092 +103905,204,9,39875,11002 +103906,75,5,322443,1401197 +103907,53,2,58757,228358 +103908,208,2,243935,1414917 +103909,3,5,40218,12242 +103910,317,10,14651,2245 +103911,234,1,44997,131884 +103912,148,9,31913,41156 +103913,77,10,14773,77308 +103914,286,3,29272,17584 +103915,234,1,4338,37036 +103916,75,5,410118,1791607 +103917,286,3,103215,1033142 +103918,413,11,1164,17115 +103919,317,10,413391,22807 +103920,387,10,53798,148863 +103921,333,2,966,14056 +103922,273,7,25655,1094201 +103923,45,9,9778,1471015 +103924,204,9,10087,63131 +103925,234,1,202941,18579 +103926,262,6,330459,1386912 +103927,273,7,27380,230125 +103928,234,1,27886,1039407 +103929,306,7,52454,1321935 +103930,187,11,251,1341405 +103931,234,1,100085,1023401 +103932,196,7,5289,1340115 +103933,234,1,110412,97652 +103934,234,1,31216,107753 +103935,169,3,302528,961445 +103936,105,7,14886,9796 +103937,108,10,28293,148442 +103938,204,9,3701,33860 +103939,143,7,398289,1401317 +103940,286,3,84848,931361 +103941,319,1,9352,1823512 +103942,234,1,48787,58384 +103943,277,3,214938,1597068 +103944,52,10,126550,97287 +103945,234,1,362150,1133446 +103946,196,7,131737,1427464 +103947,317,10,150338,153293 +103948,3,5,19757,231248 +103949,179,2,354287,1308605 +103950,333,2,43855,4352 +103951,187,11,173153,1414182 +103952,413,11,9977,61337 +103953,234,1,62439,1296107 +103954,262,6,312831,1454514 +103955,105,7,75336,38759 +103956,196,7,197,14764 +103957,234,1,56344,223973 +103958,75,5,168259,1411271 +103959,413,11,83890,1020407 +103960,53,2,10727,75683 +103961,262,6,10529,137118 +103962,234,1,39053,45405 +103963,317,10,52072,56214 +103964,277,3,254007,1201974 +103965,387,10,35,165828 +103966,203,1,93676,1399096 +103967,204,9,5237,1268548 +103968,289,6,22752,222469 +103969,72,11,283995,1608888 +103970,148,9,64129,1364888 +103971,413,11,15661,2866 +103972,53,2,16320,15524 +103973,234,1,117942,1066308 +103974,411,9,14372,8848 +103975,148,9,333371,888740 +103976,273,7,50153,88644 +103977,33,10,369406,1501763 +103978,3,5,9343,20553 +103979,52,10,166671,1330 +103980,273,7,19545,425396 +103981,234,1,278348,185995 +103982,75,5,285270,1367938 +103983,186,6,126889,1746446 +103984,317,10,370687,1543174 +103985,317,10,61984,78014 +103986,176,3,9716,1661572 +103987,413,11,113038,1056201 +103988,287,3,198663,1318185 +103989,387,10,77094,1108168 +103990,269,9,47794,60892 +103991,413,11,120657,34327 +103992,105,7,49853,144732 +103993,180,7,114790,1568008 +103994,179,2,366045,1830750 +103995,228,2,264525,1857582 +103996,234,1,414771,1701496 +103997,245,3,24363,1470174 +103998,376,10,30547,34741 +103999,97,7,13849,1411670 +104000,60,1,85640,1682639 +104001,317,10,264729,458811 +104002,387,10,214093,144782 +104003,204,9,11614,38917 +104004,413,11,60855,91885 +104005,234,1,38602,70055 +104006,289,6,172385,1455610 +104007,234,1,17780,123970 +104008,15,6,68737,1499160 +104009,53,2,12716,24873 +104010,373,7,21927,1416951 +104011,387,10,317214,1115945 +104012,204,9,2760,7388 +104013,75,5,58060,1296968 +104014,360,9,72984,1098868 +104015,317,10,74057,12920 +104016,317,10,44389,52930 +104017,60,1,2666,11266 +104018,78,3,263115,1757625 +104019,333,2,578,1574927 +104020,317,10,403119,1301112 +104021,148,9,59296,1460355 +104022,66,11,8204,1332292 +104023,3,5,742,11232 +104024,3,5,13526,7783 +104025,387,10,37645,58255 +104026,105,7,14286,7773 +104027,105,7,291907,1362893 +104028,333,2,12783,1427497 +104029,314,2,15661,1526509 +104030,269,9,10761,17148 +104031,60,1,25430,940683 +104032,3,5,781,1077 +104033,387,10,2100,21527 +104034,239,5,297702,1636861 +104035,160,3,44115,1341763 +104036,204,9,330459,11225 +104037,234,1,126319,126597 +104038,3,5,4923,243 +104039,333,2,47386,138786 +104040,317,10,12446,1012711 +104041,277,3,321303,1305971 +104042,387,10,2195,23168 +104043,234,1,94935,587089 +104044,401,6,10198,12072 +104045,105,7,84305,56632 +104046,346,3,10178,10588 +104047,373,7,17144,1436537 +104048,317,10,58704,1043264 +104049,317,10,17708,1173438 +104050,314,2,334,1533066 +104051,3,5,12639,96427 +104052,317,10,74921,228086 +104053,83,2,18405,1393278 +104054,277,3,358924,1741059 +104055,3,5,32904,76971 +104056,413,11,16137,1125824 +104057,113,9,5413,1556970 +104058,327,7,242310,1367130 +104059,413,11,105981,1010504 +104060,317,10,30305,146515 +104061,105,7,22779,31021 +104062,387,10,140554,40364 +104063,273,7,15379,73345 +104064,273,7,148284,5288 +104065,234,1,60189,230714 +104066,3,5,83714,63728 +104067,234,1,255456,89193 +104068,3,5,132939,40392 +104069,161,6,338189,1650734 +104070,289,6,13042,1408648 +104071,413,11,11202,11443 +104072,105,7,31473,1064021 +104073,234,1,43213,566314 +104074,174,6,10727,1584255 +104075,387,10,3081,31498 +104076,269,9,19996,1764156 +104077,77,10,1689,4956 +104078,234,1,25468,15389 +104079,3,5,202662,1004100 +104080,5,10,10671,52096 +104081,143,7,10865,8159 +104082,5,10,1715,18776 +104083,204,9,13205,1815472 +104084,269,9,10400,20968 +104085,127,3,223551,1263803 +104086,269,9,79593,1197918 +104087,204,9,35026,1364225 +104088,234,1,43157,129422 +104089,60,1,332354,115394 +104090,161,6,40466,1417016 +104091,273,7,42678,88673 +104092,77,10,220,2747 +104093,234,1,102024,224788 +104094,413,11,183412,1003014 +104095,53,2,4913,1492911 +104096,169,3,238589,1345265 +104097,97,7,638,9435 +104098,387,10,11113,27968 +104099,269,9,10834,2318 +104100,273,7,83770,278 +104101,413,11,223946,1177126 +104102,234,1,199647,1179833 +104103,413,11,3145,30762 +104104,317,10,121688,1166334 +104105,3,5,25037,20136 +104106,60,1,43522,1529473 +104107,226,2,137504,1530398 +104108,301,5,17111,1067257 +104109,226,2,10632,1444908 +104110,3,5,34193,14536 +104111,234,1,293270,227311 +104112,413,11,121462,1567546 +104113,394,7,395992,14765 +104114,143,7,106747,1401134 +104115,317,10,70199,85547 +104116,182,8,176,1817644 +104117,262,6,19995,1401801 +104118,3,5,1859,3637 +104119,127,3,184741,4130 +104120,234,1,11337,1243 +104121,413,11,40029,43913 +104122,148,9,10909,41898 +104123,22,9,17209,1544658 +104124,105,7,20361,33782 +104125,53,2,7210,17707 +104126,413,11,1369,16568 +104127,360,3,251,1380036 +104128,357,3,1991,1420155 +104129,387,10,26469,145192 +104130,403,10,44936,1401875 +104131,387,10,31498,103912 +104132,273,7,4516,37762 +104133,180,7,133521,1421498 +104134,373,7,33005,957840 +104135,97,7,312831,1425588 +104136,169,3,313922,1616460 +104137,3,5,120172,1570079 +104138,53,2,10692,1880499 +104139,40,1,118957,1584249 +104140,317,10,270470,567805 +104141,277,3,44208,13339 +104142,3,5,50079,12307 +104143,52,10,80168,1123346 +104144,3,5,9703,59984 +104145,413,11,12237,72177 +104146,226,2,51947,1650017 +104147,234,1,126083,108987 +104148,148,9,19754,10858 +104149,3,5,29510,7509 +104150,203,1,374473,1412126 +104151,317,10,25872,1322327 +104152,373,7,341174,1394130 +104153,413,11,8665,154 +104154,317,10,108648,134343 +104155,40,1,20312,1734495 +104156,52,10,12525,35088 +104157,387,10,27346,16525 +104158,356,2,11975,1428226 +104159,5,10,63858,1199264 +104160,317,10,104172,1384087 +104161,269,9,805,12017 +104162,53,2,47310,1464504 +104163,317,10,138977,1191330 +104164,387,10,385654,112926 +104165,317,10,51212,11202 +104166,328,6,58060,1402984 +104167,53,2,76397,417597 +104168,250,11,328111,1400354 +104169,234,1,10222,15111 +104170,198,6,273481,1568840 +104171,3,5,12102,3569 +104172,317,10,104720,9791 +104173,204,9,32044,32772 +104174,413,11,37939,70632 +104175,75,5,86920,1102221 +104176,357,3,246655,1412588 +104177,234,1,213681,53925 +104178,180,7,55197,1542919 +104179,413,11,22140,6156 +104180,387,10,121006,1022760 +104181,317,10,22554,88913 +104182,148,9,24750,1027800 +104183,10,3,179103,119538 +104184,234,1,32049,82443 +104185,413,11,110525,29324 +104186,196,7,169,1877165 +104187,85,10,1578,552081 +104188,87,7,9835,12945 +104189,161,6,77459,1821422 +104190,143,7,9529,969465 +104191,196,7,1125,1412699 +104192,413,11,22606,88976 +104193,105,7,53999,1042452 +104194,269,9,511,7097 +104195,317,10,30478,1376319 +104196,127,3,105059,50308 +104197,60,1,1421,3583 +104198,273,7,325263,939557 +104199,234,1,174278,87407 +104200,292,3,11370,1581131 +104201,269,9,297762,13839 +104202,3,5,28894,14284 +104203,333,2,10754,1609515 +104204,413,11,242076,5175 +104205,317,10,16687,130560 +104206,166,9,15092,1185063 +104207,3,5,43753,1060 +104208,3,5,89492,432 +104209,234,1,12516,18598 +104210,3,5,61541,127523 +104211,175,5,273481,1395275 +104212,262,6,373546,1869450 +104213,200,3,10391,15227 +104214,317,10,133704,41798 +104215,413,11,73723,8063 +104216,234,1,38322,61175 +104217,127,3,72105,237920 +104218,226,2,21968,1655550 +104219,289,6,12593,1458340 +104220,3,5,78094,72629 +104221,148,9,98364,9063 +104222,3,5,42669,8714 +104223,413,11,290316,1062745 +104224,201,6,274857,1829977 +104225,160,3,11812,81687 +104226,413,11,1950,46942 +104227,317,10,215881,19850 +104228,317,10,72611,270330 +104229,387,10,286369,470 +104230,270,9,9593,1423834 +104231,75,5,1579,1400346 +104232,317,10,44246,40213 +104233,317,10,94251,10003 +104234,317,10,14008,68294 +104235,53,2,2180,22329 +104236,269,9,374473,15512 +104237,289,6,286192,1485791 +104238,105,7,33427,14749 +104239,53,2,16296,1706332 +104240,234,1,188765,225244 +104241,317,10,235662,63932 +104242,113,9,296524,1729034 +104243,273,7,94568,1002552 +104244,273,7,7343,8576 +104245,289,6,108048,1381307 +104246,179,2,15414,1557545 +104247,244,3,41733,86907 +104248,105,7,44414,6111 +104249,314,2,298584,1619743 +104250,317,10,188507,1170046 +104251,387,10,11584,67773 +104252,204,9,370687,1188586 +104253,387,10,279096,133368 +104254,175,5,15019,75116 +104255,204,9,2503,962164 +104256,234,1,98536,14643 +104257,303,3,19765,1602159 +104258,148,9,19398,1469355 +104259,273,7,80775,30268 +104260,204,9,209112,930189 +104261,3,5,43277,1498 +104262,317,10,135652,161858 +104263,273,7,51802,57684 +104264,72,11,1723,18855 +104265,234,1,103301,557254 +104266,234,1,26689,65420 +104267,3,5,9890,60012 +104268,304,10,101783,146970 +104269,15,6,314065,1466253 +104270,317,10,136743,225702 +104271,60,1,41213,1777270 +104272,234,1,370178,1083156 +104273,21,3,125063,1338128 +104274,3,5,8064,53854 +104275,148,9,459,6813 +104276,325,5,16442,2005 +104277,164,3,312831,1371493 +104278,182,8,5289,1404740 +104279,413,11,38448,12685 +104280,286,3,268174,115835 +104281,187,7,9593,3430 +104282,317,10,80219,88923 +104283,3,5,13092,16425 +104284,75,5,314065,1466256 +104285,196,7,329865,1392955 +104286,3,5,22314,77729 +104287,413,11,197611,2988 +104288,319,1,274857,130625 +104289,234,1,323690,1142319 +104290,52,10,61151,119463 +104291,203,1,59981,1438920 +104292,234,1,118134,13953 +104293,416,10,10986,6210 +104294,175,5,17577,1423845 +104295,3,5,251232,1132268 +104296,317,10,52936,3111 +104297,419,10,171308,153745 +104298,234,1,45215,11528 +104299,387,10,469,4429 +104300,234,1,27805,84981 +104301,234,1,428687,1283668 +104302,3,5,42206,2725 +104303,3,5,511,7094 +104304,387,10,11011,13583 +104305,179,2,15019,1319844 +104306,143,7,1902,592336 +104307,3,5,79645,14431 +104308,413,11,377170,111418 +104309,234,1,18978,86051 +104310,413,11,40087,84023 +104311,387,10,34280,24455 +104312,413,11,17692,1219799 +104313,234,1,8368,17784 +104314,413,11,29786,58318 +104315,317,10,81225,1609322 +104316,209,7,435,6061 +104317,3,5,46492,18599 +104318,75,5,8915,92237 +104319,127,3,15794,1529476 +104320,5,10,22744,120999 +104321,413,11,160160,1079613 +104322,317,10,56858,934936 +104323,182,8,260030,1453128 +104324,269,9,64568,30139 +104325,413,11,167935,965309 +104326,273,7,17691,4360 +104327,273,7,128081,63853 +104328,413,11,92635,63198 +104329,53,2,31542,1307020 +104330,204,9,118957,1317650 +104331,413,11,64942,993849 +104332,286,3,356326,1172080 +104333,413,11,77864,1314294 +104334,143,7,4413,1333223 +104335,234,1,4529,37775 +104336,234,1,93350,12833 +104337,234,1,39240,122520 +104338,234,1,153266,2833 +104339,289,6,149870,1456631 +104340,52,10,85052,35086 +104341,97,7,11046,1391112 +104342,317,10,35337,4956 +104343,401,6,9982,73306 +104344,47,8,1647,1445983 +104345,387,10,15003,1117881 +104346,148,9,14295,4437 +104347,317,10,261005,140848 +104348,181,7,11096,1551025 +104349,234,1,364833,39787 +104350,172,3,8470,1426004 +104351,204,9,67375,8506 +104352,277,3,154442,1722924 +104353,148,9,302528,1704981 +104354,5,10,2965,2088 +104355,175,5,102428,1385151 +104356,53,2,47536,1860709 +104357,239,5,954,1886654 +104358,273,7,153102,28156 +104359,3,5,2637,17765 +104360,226,2,262338,1760527 +104361,132,2,313922,1616469 +104362,119,7,29959,18577 +104363,387,10,63858,111435 +104364,387,10,241254,1276377 +104365,317,10,204771,1187199 +104366,317,10,122843,55690 +104367,286,3,37100,1184460 +104368,413,11,24559,6453 +104369,317,10,381691,1135712 +104370,286,3,48419,140473 +104371,204,9,108345,1309577 +104372,179,2,245700,1324461 +104373,105,7,50506,960924 +104374,273,7,266433,1415893 +104375,5,10,10590,65721 +104376,317,10,226167,30478 +104377,291,6,354859,1538763 +104378,317,10,445602,545399 +104379,287,3,15762,1404891 +104380,333,2,80324,1609509 +104381,204,9,27777,1535876 +104382,209,7,1165,1338287 +104383,398,9,126889,1816362 +104384,77,10,10265,64486 +104385,204,9,935,9918 +104386,209,7,9836,1392736 +104387,234,1,80316,19457 +104388,53,2,133458,5997 +104389,105,7,211144,29294 +104390,28,9,693,92356 +104391,160,3,857,142325 +104392,413,11,82,15841 +104393,234,1,36929,58712 +104394,413,11,290825,19303 +104395,336,2,43875,7338 +104396,333,2,8053,1411259 +104397,298,5,145135,1417882 +104398,203,1,93350,1533096 +104399,413,11,28510,1324122 +104400,203,1,140894,1717433 +104401,234,1,314635,1406422 +104402,203,1,98339,1381934 +104403,333,2,17015,1840476 +104404,203,1,395982,1755110 +104405,394,7,1579,42036 +104406,269,9,11521,2243 +104407,387,10,26405,131506 +104408,317,10,401060,95321 +104409,175,5,116463,1296489 +104410,413,11,306966,1748592 +104411,97,7,246655,1544669 +104412,3,5,246133,967253 +104413,234,1,10524,1957 +104414,273,7,2029,20855 +104415,187,11,7299,13371 +104416,413,11,285840,190919 +104417,75,5,5425,1632423 +104418,52,10,157293,1170143 +104419,203,1,2115,1481828 +104420,148,9,14372,11388 +104421,373,7,4133,158916 +104422,160,3,97614,92234 +104423,234,1,271677,1284967 +104424,97,7,336050,1644778 +104425,10,3,5393,43105 +104426,181,7,8915,1337458 +104427,148,9,332079,7338 +104428,317,10,64850,1619655 +104429,75,5,222935,1726765 +104430,387,10,71805,68124 +104431,5,10,51802,2747 +104432,333,2,28820,102115 +104433,204,9,3587,33612 +104434,317,10,2742,224 +104435,148,9,43546,9063 +104436,394,7,270303,1375918 +104437,234,1,77283,109587 +104438,387,10,1568,14597 +104439,387,10,18776,3146 +104440,180,7,1480,7654 +104441,234,1,43319,29962 +104442,53,2,55681,1898926 +104443,53,2,21950,1759541 +104444,3,5,117534,1405777 +104445,234,1,42258,10491 +104446,387,10,228647,50302 +104447,13,7,378441,1797512 +104448,303,3,334074,1399033 +104449,75,5,124517,132305 +104450,207,3,70981,1390386 +104451,349,1,35,1460475 +104452,317,10,22257,107639 +104453,143,7,444713,1586801 +104454,234,1,31262,85637 +104455,3,5,20047,1452327 +104456,198,6,177677,1545983 +104457,204,9,42040,10200 +104458,368,7,5881,46291 +104459,234,1,77822,32919 +104460,269,9,407,5595 +104461,234,1,90590,101424 +104462,234,1,21828,72624 +104463,273,7,817,9204 +104464,164,3,325173,1601639 +104465,273,7,4459,14647 +104466,234,1,1599,17883 +104467,286,3,31042,98151 +104468,317,10,410259,1662781 +104469,179,2,243935,1405330 +104470,317,10,283445,928106 +104471,314,2,924,1425970 +104472,179,2,5638,81533 +104473,234,1,60853,4109 +104474,116,6,28893,29750 +104475,289,6,12593,1458349 +104476,160,3,16921,84702 +104477,413,11,39219,16751 +104478,273,7,250066,1495520 +104479,277,3,949,1629423 +104480,3,5,141955,3148 +104481,187,11,2105,1049325 +104482,234,1,48231,224 +104483,373,7,2300,1341854 +104484,387,10,37481,85453 +104485,413,11,51141,8735 +104486,234,1,124625,26595 +104487,395,3,15653,1767047 +104488,317,10,49597,552998 +104489,234,1,207270,1190085 +104490,127,3,52661,176448 +104491,234,1,24154,1009730 +104492,45,9,5289,1335042 +104493,85,10,45671,115054 +104494,413,11,21282,124865 +104495,234,1,25994,4566 +104496,317,10,132759,1158259 +104497,333,2,15019,1409821 +104498,198,6,58244,1618810 +104499,317,10,312149,59919 +104500,5,10,50001,111435 +104501,204,9,68737,25061 +104502,196,7,638,9427 +104503,45,9,74,1439013 +104504,53,2,257454,10011 +104505,317,10,23566,1215728 +104506,413,11,4703,8556 +104507,204,9,316042,1331116 +104508,97,7,10491,1187018 +104509,273,7,1950,19155 +104510,3,5,86254,36064 +104511,75,5,1647,1415189 +104512,273,7,381015,1140109 +104513,105,7,38157,1065513 +104514,3,5,58447,1324560 +104515,108,10,28571,237378 +104516,413,11,82627,928334 +104517,335,6,10204,1393015 +104518,204,9,11370,1536255 +104519,413,11,31347,1352125 +104520,148,9,1578,137192 +104521,234,1,8897,56207 +104522,75,5,132363,1144651 +104523,53,2,1574,557 +104524,57,2,11024,1401604 +104525,394,7,2503,1404212 +104526,53,2,6,7719 +104527,79,7,10020,62049 +104528,291,6,315335,1573339 +104529,277,3,1586,1548694 +104530,77,10,18120,82726 +104531,234,1,70151,12011 +104532,3,5,10714,20693 +104533,53,2,193177,4350 +104534,413,11,13562,2920 +104535,413,11,43753,1168870 +104536,53,2,116312,1489870 +104537,262,6,12171,1421269 +104538,387,10,15081,120925 +104539,53,2,10087,17063 +104540,234,1,46827,15868 +104541,75,5,293625,1198517 +104542,148,9,72545,62063 +104543,273,7,22899,1487840 +104544,317,10,32836,109708 +104545,288,3,357706,1642554 +104546,273,7,186869,19155 +104547,203,1,9613,1457045 +104548,387,10,70586,131413 +104549,148,9,10594,15223 +104550,387,10,408381,1657545 +104551,234,1,66897,33166 +104552,234,1,336265,1194699 +104553,200,3,19995,1401794 +104554,387,10,11216,65314 +104555,204,9,395883,1423422 +104556,368,7,46738,1536644 +104557,273,7,11636,63578 +104558,387,10,59118,78491 +104559,187,11,12783,1409294 +104560,234,1,32928,228729 +104561,3,5,168295,1083276 +104562,289,6,9514,1642179 +104563,234,1,14147,207419 +104564,411,9,42188,26193 +104565,269,9,375012,1150162 +104566,387,10,209556,1193842 +104567,3,5,13681,3569 +104568,52,10,42251,98132 +104569,317,10,9406,165655 +104570,180,7,154972,1452775 +104571,148,9,334538,1441806 +104572,179,2,76341,1454939 +104573,387,10,24254,2163 +104574,234,1,120478,97827 +104575,234,1,61217,72191 +104576,387,10,17657,14774 +104577,413,11,15902,146756 +104578,75,5,1991,1014919 +104579,105,7,196359,1547647 +104580,234,1,41142,108847 +104581,416,10,4516,24888 +104582,413,11,2625,1047 +104583,346,3,11351,1597201 +104584,317,10,83735,1001958 +104585,291,6,20242,1833855 +104586,141,7,154972,1755279 +104587,387,10,95037,85841 +104588,387,10,26689,96041 +104589,3,5,49521,1043831 +104590,234,1,213095,1090010 +104591,204,9,248933,36924 +104592,203,1,7515,1517399 +104593,245,3,15092,1414560 +104594,273,7,78450,584057 +104595,317,10,284053,109542 +104596,333,2,36245,1433861 +104597,204,9,11358,40614 +104598,5,10,26491,95534 +104599,196,7,8292,1399632 +104600,317,10,319513,27830 +104601,234,1,94135,39853 +104602,387,10,5165,41777 +104603,268,7,924,1546856 +104604,148,9,46738,1327222 +104605,3,5,333367,1051668 +104606,234,1,14750,70008 +104607,219,11,6947,1573106 +104608,373,7,378018,1418433 +104609,234,1,278738,1335499 +104610,234,1,55420,45459 +104611,176,3,635,1399992 +104612,328,6,336882,1635804 +104613,75,5,39979,1743944 +104614,235,5,2503,1406847 +104615,67,10,14829,78173 +104616,273,7,172828,1155523 +104617,75,5,378018,1376620 +104618,236,8,74,1395367 +104619,269,9,270383,61250 +104620,180,7,71329,1605720 +104621,413,11,212713,12015 +104622,234,1,264397,1309478 +104623,5,10,42532,1770594 +104624,394,7,339530,1338484 +104625,234,1,131457,14855 +104626,413,11,412103,1701474 +104627,289,6,283686,1528707 +104628,3,5,131737,25012 +104629,413,11,211139,33808 +104630,226,2,241254,1367124 +104631,52,10,17770,148118 +104632,169,3,201085,1572856 +104633,262,6,14145,1416986 +104634,387,10,128246,1086497 +104635,328,6,60599,1394751 +104636,413,11,10714,7784 +104637,203,1,168259,1389138 +104638,317,10,81660,1085051 +104639,328,6,294254,1367498 +104640,273,7,11908,70897 +104641,226,2,4592,1401606 +104642,75,5,2731,1730024 +104643,213,10,376934,1561592 +104644,234,1,86532,933308 +104645,148,9,143946,1542581 +104646,148,9,4133,10958 +104647,234,1,39414,53806 +104648,234,1,49271,11523 +104649,413,11,383140,1582468 +104650,250,11,98368,1580067 +104651,234,1,12638,50799 +104652,234,1,40028,98132 +104653,127,3,28090,1404815 +104654,234,1,127094,11523 +104655,204,9,16432,1327893 +104656,234,1,336885,1099354 +104657,234,1,332827,932585 +104658,327,7,49940,1455304 +104659,204,9,435,9271 +104660,387,10,9066,56884 +104661,108,10,39130,18739 +104662,53,2,13668,62860 +104663,3,5,310135,1397788 +104664,317,10,19996,85414 +104665,203,1,219466,1410204 +104666,387,10,9982,52695 +104667,234,1,116780,94198 +104668,169,3,359412,1521492 +104669,77,10,20075,63208 +104670,415,3,70327,111969 +104671,234,1,46403,1033808 +104672,51,9,19719,51856 +104673,3,5,113739,91877 +104674,387,10,36063,929481 +104675,234,1,90120,63198 +104676,234,1,108665,224519 +104677,234,1,703,1243 +104678,387,10,103758,72768 +104679,234,1,27834,38803 +104680,387,10,11614,51421 +104681,301,5,755,2294 +104682,302,9,296523,1463302 +104683,25,2,166671,40802 +104684,3,5,11855,56593 +104685,413,11,285400,30259 +104686,234,1,163077,145608 +104687,66,11,9836,1745224 +104688,3,5,11694,12418 +104689,53,2,214910,1293599 +104690,3,5,188161,42632 +104691,3,5,356842,1190998 +104692,234,1,43388,142297 +104693,54,10,417820,231716 +104694,317,10,103620,59291 +104695,273,7,63304,1680195 +104696,387,10,5172,41886 +104697,346,3,10727,1412758 +104698,53,2,144111,1310229 +104699,413,11,64725,25824 +104700,387,10,32088,136001 +104701,5,10,3035,28970 +104702,204,9,18,8382 +104703,5,10,43894,1157628 +104704,273,7,11832,70641 +104705,204,9,293660,936841 +104706,288,3,147815,1163445 +104707,221,3,9428,1561481 +104708,234,1,1554,4429 +104709,179,2,202214,1362712 +104710,53,2,1938,20147 +104711,234,1,18692,70862 +104712,53,2,316654,1389933 +104713,413,11,25538,1554166 +104714,317,10,38043,1325090 +104715,234,1,22267,1614 +104716,234,1,14830,105643 +104717,234,1,144331,1153617 +104718,204,9,78507,12320 +104719,317,10,69352,556112 +104720,53,2,16996,20745 +104721,46,5,263115,1821897 +104722,148,9,68822,1606888 +104723,234,1,27629,2662 +104724,3,5,75162,11905 +104725,105,7,142412,37240 +104726,196,7,10950,1367667 +104727,317,10,38978,32765 +104728,387,10,31216,224611 +104729,53,2,96702,1097362 +104730,234,1,22968,13980 +104731,269,9,43997,1821338 +104732,273,7,39957,489607 +104733,75,5,122081,1452327 +104734,413,11,11837,5056 +104735,11,6,19995,1401810 +104736,66,11,7220,1701758 +104737,314,2,6947,18787 +104738,3,5,11373,69153 +104739,317,10,84905,143569 +104740,179,2,5,1877356 +104741,3,5,31672,32381 +104742,5,10,31078,1327363 +104743,317,10,290714,1361062 +104744,234,1,39101,122186 +104745,158,2,9423,1389596 +104746,417,3,11547,1557602 +104747,53,2,48609,5634 +104748,411,9,71066,559561 +104749,52,10,24801,113925 +104750,317,10,44522,18565 +104751,3,5,172897,984113 +104752,289,6,46261,1452989 +104753,413,11,41030,114399 +104754,286,3,313074,1182248 +104755,105,7,10568,7647 +104756,333,2,65787,26175 +104757,234,1,274820,588380 +104758,387,10,96118,38127 +104759,287,3,298584,1169304 +104760,287,3,6552,42030 +104761,403,10,7555,16545 +104762,148,9,152737,555 +104763,317,10,54102,1218279 +104764,46,5,961,14424 +104765,226,2,155597,1585998 +104766,203,1,10803,1442518 +104767,77,10,9890,13019 +104768,234,1,69346,88800 +104769,234,1,126523,1118009 +104770,75,5,39979,1743942 +104771,269,9,348631,1815806 +104772,245,3,96724,1357009 +104773,3,5,28668,34802 +104774,32,8,896,1559103 +104775,403,10,43155,135362 +104776,234,1,493,6558 +104777,53,2,179154,1099817 +104778,187,7,29136,91879 +104779,175,5,3597,1393568 +104780,317,10,72655,40235 +104781,204,9,132363,66495 +104782,97,7,59981,80827 +104783,234,1,2293,19303 +104784,269,9,340275,966515 +104785,317,10,31670,41040 +104786,53,2,7515,6904 +104787,179,2,168259,1439747 +104788,387,10,61988,85453 +104789,52,10,347945,81334 +104790,3,5,104674,1313446 +104791,273,7,262988,12845 +104792,127,3,1278,16348 +104793,53,2,3478,32055 +104794,52,10,16436,41963 +104795,97,7,59965,1374169 +104796,234,1,47748,146698 +104797,97,7,209112,1367362 +104798,204,9,13526,1626525 +104799,273,7,11830,70630 +104800,234,1,159514,139570 +104801,413,11,9598,58066 +104802,12,10,49013,1609027 +104803,3,5,10276,3769 +104804,413,11,226968,13227 +104805,317,10,33127,110166 +104806,403,10,31127,175160 +104807,204,9,183827,9062 +104808,387,10,11440,53339 +104809,317,10,36258,16830 +104810,308,3,4547,1758623 +104811,234,1,438137,1068114 +104812,413,11,54796,29939 +104813,413,11,51104,18595 +104814,12,10,15602,16837 +104815,327,7,755,1269306 +104816,317,10,77459,65629 +104817,273,7,83995,12241 +104818,3,5,118889,137885 +104819,53,2,393732,1519922 +104820,3,5,28665,31126 +104821,10,3,3172,1553247 +104822,413,11,11077,51701 +104823,273,7,30022,7647 +104824,204,9,11202,14005 +104825,387,10,3164,30967 +104826,234,1,285946,148571 +104827,161,6,264525,1857577 +104828,291,6,25376,1584153 +104829,387,10,217648,32375 +104830,175,5,76203,1393448 +104831,269,9,394645,1047474 +104832,387,10,169869,85408 +104833,387,10,66125,74063 +104834,75,5,22881,1455293 +104835,75,5,244,3239 +104836,303,3,14,73667 +104837,234,1,18381,81437 +104838,77,10,45772,6210 +104839,269,9,195269,1188587 +104840,317,10,111582,89045 +104841,413,11,18977,34439 +104842,45,9,10330,1555489 +104843,269,9,56068,32213 +104844,286,3,420703,563400 +104845,236,8,82448,927997 +104846,3,5,53172,19290 +104847,327,7,2978,1415966 +104848,387,10,147829,145829 +104849,241,3,2976,29215 +104850,413,11,10491,13673 +104851,317,10,218772,1203508 +104852,387,10,2453,27005 +104853,273,7,45726,40460 +104854,105,7,159211,1301336 +104855,360,3,168027,1431557 +104856,234,1,43548,21227 +104857,182,8,333352,1210858 +104858,204,9,42599,40356 +104859,273,7,31596,1885596 +104860,387,10,228066,203285 +104861,85,10,18638,1776330 +104862,242,9,140276,8508 +104863,234,1,92132,992696 +104864,234,1,370213,1541732 +104865,387,10,224885,1269325 +104866,203,1,95516,1411144 +104867,113,9,70981,1335552 +104868,269,9,74714,1198735 +104869,387,10,78340,8373 +104870,234,1,414610,92227 +104871,187,11,56937,1412151 +104872,317,10,110392,10722 +104873,273,7,378570,1566498 +104874,234,1,103875,71056 +104875,317,10,28527,1368995 +104876,413,11,25430,117774 +104877,387,10,12525,57703 +104878,234,1,187596,32593 +104879,3,5,83119,67619 +104880,53,2,41760,9255 +104881,317,10,62896,116158 +104882,413,11,178385,1211685 +104883,317,10,197057,562603 +104884,234,1,191476,5602 +104885,317,10,149883,1217563 +104886,53,2,57680,1188377 +104887,317,10,33360,18565 +104888,53,2,93858,1681628 +104889,148,9,240913,1516532 +104890,189,3,2503,1406850 +104891,53,2,403570,75683 +104892,226,2,116463,1340090 +104893,317,10,72962,84496 +104894,105,7,365222,57304 +104895,387,10,29577,122963 +104896,268,7,638,9410 +104897,286,3,33134,1014591 +104898,234,1,26661,29627 +104899,269,9,29896,1518454 +104900,317,10,186630,31894 +104901,234,1,133704,58868 +104902,286,3,42537,32996 +104903,413,11,13058,1035076 +104904,387,10,834,1248221 +104905,273,7,98339,1124950 +104906,405,8,10204,1613297 +104907,113,9,2662,1190448 +104908,52,10,40879,124909 +104909,234,1,78094,125019 +104910,360,3,2567,1391763 +104911,317,10,24927,1007690 +104912,413,11,38749,2484 +104913,99,3,30666,106743 +104914,234,1,264646,474866 +104915,234,1,269,3776 +104916,360,3,169298,1321929 +104917,148,9,39938,1361701 +104918,244,3,11024,1673535 +104919,333,2,36785,116206 +104920,234,1,55192,95501 +104921,317,10,342588,1612326 +104922,77,10,10425,65108 +104923,234,1,121354,12515 +104924,234,1,117869,965 +104925,268,7,375366,75097 +104926,273,7,10986,67973 +104927,3,5,664,356 +104928,204,9,40085,132251 +104929,273,7,44932,64050 +104930,3,5,12704,7202 +104931,169,3,1991,1224272 +104932,234,1,58757,119430 +104933,234,1,289207,1357800 +104934,127,3,279096,1386317 +104935,413,11,19946,5821 +104936,234,1,58384,29605 +104937,46,5,47386,138794 +104938,3,5,22020,1060 +104939,413,11,109451,993265 +104940,273,7,43912,58120 +104941,413,11,259894,1200898 +104942,180,7,71041,40989 +104943,53,2,82624,1600782 +104944,387,10,5165,15189 +104945,53,2,37686,14352 +104946,387,10,924,14999 +104947,234,1,363479,224214 +104948,204,9,274857,1385883 +104949,53,2,353728,1500499 +104950,97,7,294272,1572873 +104951,234,1,105833,110519 +104952,105,7,37238,13571 +104953,179,2,18093,1558017 +104954,166,9,41283,1391383 +104955,52,10,13946,11419 +104956,92,7,27599,568059 +104957,387,10,27832,99121 +104958,60,1,397365,1653482 +104959,34,8,22803,566668 +104960,387,10,3064,31142 +104961,3,5,228496,57851 +104962,238,7,263115,1408672 +104963,273,7,105945,1039206 +104964,148,9,18405,15541 +104965,317,10,61361,586317 +104966,317,10,55638,221107 +104967,219,11,5915,417960 +104968,83,2,354859,1459859 +104969,105,7,264080,33911 +104970,277,3,19140,14964 +104971,204,9,44414,1204004 +104972,234,1,21736,90223 +104973,317,10,39230,553409 +104974,53,2,2731,17063 +104975,269,9,301228,1327138 +104976,234,1,314420,1283526 +104977,328,6,170279,229814 +104978,204,9,296288,1839937 +104979,75,5,9819,60012 +104980,234,1,21786,87877 +104981,234,1,44260,814 +104982,317,10,41427,126438 +104983,262,6,9914,1368649 +104984,317,10,81654,132189 +104985,413,11,6978,27583 +104986,77,10,13280,74355 +104987,148,9,132328,12437 +104988,287,3,186869,1202850 +104989,387,10,10610,66122 +104990,387,10,14430,76864 +104991,234,1,252916,30833 +104992,387,10,544,7397 +104993,234,1,371003,86445 +104994,234,1,14069,81718 +104995,387,10,46572,67928 +104996,75,5,55720,1408192 +104997,104,7,116463,1564354 +104998,287,3,145135,1417864 +104999,46,5,655,106118 +105000,204,9,573,7757 +105001,203,1,10400,1449183 +105002,234,1,7220,876 +105003,204,9,200505,1208355 +105004,5,10,29094,27904 +105005,273,7,9589,2308 +105006,317,10,270081,1227489 +105007,204,9,121848,33020 +105008,234,1,26125,16644 +105009,291,6,238,1318092 +105010,234,1,57627,936080 +105011,53,2,53230,8506 +105012,77,10,2978,1524 +105013,143,7,142402,1117107 +105014,387,10,1976,20371 +105015,287,3,241927,1585358 +105016,398,9,6163,1265079 +105017,234,1,118536,30252 +105018,328,6,198663,1425332 +105019,234,1,33117,76381 +105020,20,2,127585,1693424 +105021,360,3,127372,1394064 +105022,317,10,73420,568984 +105023,387,10,39436,4668 +105024,234,1,60120,1188433 +105025,234,1,24094,1313049 +105026,75,5,383538,1462723 +105027,387,10,1995,20505 +105028,273,7,27031,51808 +105029,183,5,340488,1601818 +105030,327,7,240913,1840081 +105031,53,2,90228,19342 +105032,226,2,5638,81520 +105033,53,2,8276,73390 +105034,234,1,85377,114722 +105035,5,10,76871,24534 +105036,396,3,11133,1395269 +105037,204,9,45714,559707 +105038,333,2,17287,112877 +105039,39,3,17209,1616178 +105040,381,9,93856,1409869 +105041,413,11,45215,19334 +105042,53,2,25918,1355442 +105043,236,8,169,1877171 +105044,328,6,12783,1394101 +105045,53,2,43316,1776719 +105046,273,7,38950,69049 +105047,273,7,116780,40460 +105048,204,9,242310,1074308 +105049,141,7,11206,30257 +105050,203,1,129359,1088220 +105051,273,7,55728,551922 +105052,317,10,84907,126837 +105053,387,10,356296,59914 +105054,105,7,18673,35786 +105055,250,11,13849,1413949 +105056,328,6,297762,1903934 +105057,180,7,48617,46438 +105058,182,8,297762,1392986 +105059,204,9,88558,231090 +105060,187,11,9664,1557591 +105061,3,5,37923,16300 +105062,317,10,13056,18875 +105063,317,10,409502,1661273 +105064,52,10,132939,88974 +105065,301,5,88273,1727717 +105066,317,10,69060,1060688 +105067,52,10,81310,63670 +105068,197,5,52661,1745159 +105069,143,7,678,10155 +105070,234,1,9076,28403 +105071,333,2,924,1526462 +105072,413,11,410718,1637951 +105073,257,3,2662,1603320 +105074,273,7,35021,934835 +105075,306,7,356752,1841576 +105076,262,6,294272,1401799 +105077,203,1,257088,1631405 +105078,3,5,11635,7413 +105079,273,7,29212,103235 +105080,413,11,54898,97082 +105081,234,1,152861,584967 +105082,213,10,170279,112096 +105083,88,6,379019,1780174 +105084,113,9,4413,20358 +105085,169,3,7916,1372414 +105086,52,10,92393,154591 +105087,387,10,65603,17814 +105088,387,10,1586,508 +105089,273,7,10409,37757 +105090,413,11,16999,997341 +105091,234,1,325263,1438342 +105092,187,11,598,8807 +105093,413,11,53230,70982 +105094,387,10,14695,2945 +105095,317,10,50153,41704 +105096,52,10,412209,1677244 +105097,413,11,16921,76454 +105098,234,1,369567,1052811 +105099,387,10,260312,1330175 +105100,269,9,418378,1705425 +105101,413,11,102630,31628 +105102,349,1,35,1447594 +105103,387,10,369245,45934 +105104,53,2,14886,77491 +105105,204,9,33673,4349 +105106,306,7,2675,17992 +105107,317,10,49597,42640 +105108,234,1,248633,936236 +105109,226,2,16307,1256621 +105110,148,9,69974,557673 +105111,3,5,10750,25398 +105112,273,7,186971,1161277 +105113,203,1,56937,1412155 +105114,234,1,41581,126964 +105115,387,10,5559,44116 +105116,72,11,15440,1412142 +105117,204,9,334538,1593476 +105118,273,7,112244,1487840 +105119,387,10,29638,98670 +105120,182,8,3037,1414670 +105121,77,10,17046,81261 +105122,45,9,773,1389129 +105123,317,10,88641,67834 +105124,413,11,28303,13289 +105125,413,11,2454,1117947 +105126,317,10,113700,174359 +105127,250,11,296523,1558722 +105128,394,7,240832,8159 +105129,306,7,8247,1548529 +105130,182,8,21338,1630522 +105131,204,9,19096,4349 +105132,7,3,1586,1611792 +105133,269,9,13507,33461 +105134,411,9,332567,1642832 +105135,269,9,37929,119149 +105136,273,7,10493,5912 +105137,269,9,20473,96910 +105138,234,1,9753,59023 +105139,187,11,233639,8806 +105140,273,7,71825,66100 +105141,387,10,79094,92928 +105142,387,10,11706,70298 +105143,353,7,37534,1099146 +105144,325,5,284052,14348 +105145,317,10,392660,1519337 +105146,234,1,29143,10930 +105147,234,1,41556,53276 +105148,234,1,149910,61244 +105149,402,11,8204,1725883 +105150,74,5,169,1550240 +105151,209,7,9785,1397736 +105152,317,10,110381,1207978 +105153,64,6,6963,1454884 +105154,269,9,1164,6208 +105155,373,7,10070,1367365 +105156,234,1,116385,40184 +105157,75,5,1950,1559512 +105158,273,7,111960,1053409 +105159,317,10,22471,76369 +105160,204,9,42709,990033 +105161,333,2,32068,1389310 +105162,413,11,5,3121 +105163,226,2,125264,1606800 +105164,317,10,211579,150975 +105165,387,10,31421,136903 +105166,317,10,105528,87432 +105167,3,5,113148,72264 +105168,287,3,333371,92336 +105169,394,7,116979,1835193 +105170,401,6,10020,12079 +105171,3,5,29117,103050 +105172,234,1,37514,117839 +105173,234,1,134397,1098980 +105174,207,3,12113,83114 +105175,76,2,408616,1311618 +105176,234,1,86598,40391 +105177,148,9,32080,1639067 +105178,234,1,14688,1963 +105179,234,1,300490,142857 +105180,148,9,17978,7513 +105181,15,6,274857,1829971 +105182,317,10,28736,101775 +105183,234,1,9023,56660 +105184,368,7,263115,1821934 +105185,273,7,15081,2107 +105186,189,3,11024,1673550 +105187,5,10,25736,14971 +105188,268,7,21338,1630528 +105189,203,1,16436,1438615 +105190,234,1,16371,80450 +105191,317,10,252682,1290923 +105192,269,9,399106,7951 +105193,317,10,413279,55934 +105194,234,1,34151,55299 +105195,65,3,2300,1870699 +105196,204,9,7220,76805 +105197,234,1,154019,937191 +105198,317,10,125548,93025 +105199,413,11,10744,800 +105200,269,9,47238,1599050 +105201,75,5,74,1102816 +105202,373,7,44732,1396409 +105203,403,10,62567,127522 +105204,196,7,20919,92610 +105205,413,11,1938,12143 +105206,182,8,9716,1415988 +105207,234,1,18273,212408 +105208,269,9,277558,62703 +105209,286,3,65887,32097 +105210,190,7,6163,1568990 +105211,113,9,277713,1609168 +105212,148,9,30690,2118 +105213,413,11,6948,11455 +105214,200,3,118,1428906 +105215,286,3,158739,1035116 +105216,3,5,198795,11968 +105217,162,6,294254,1571498 +105218,105,7,73835,30634 +105219,289,6,81003,1447459 +105220,3,5,11561,19129 +105221,204,9,154371,1340098 +105222,269,9,122857,935298 +105223,160,3,11096,1074163 +105224,148,9,43806,119400 +105225,413,11,28452,100686 +105226,105,7,44105,1204438 +105227,317,10,433945,1316413 +105228,3,5,64827,239897 +105229,53,2,237796,1318460 +105230,317,10,447758,1221053 +105231,317,10,146238,16305 +105232,234,1,193216,565332 +105233,234,1,5608,33542 +105234,317,10,14650,37637 +105235,3,5,47190,1663167 +105236,15,6,10020,1615281 +105237,234,1,400465,126125 +105238,169,3,8247,1552360 +105239,262,6,241258,1525153 +105240,46,5,7220,1762648 +105241,180,7,43441,10155 +105242,413,11,490,6653 +105243,203,1,15616,1402724 +105244,37,3,301566,1447545 +105245,317,10,71320,58180 +105246,234,1,83013,132177 +105247,333,2,80125,1441749 +105248,413,11,10265,64490 +105249,234,1,23830,90607 +105250,234,1,183964,32375 +105251,273,7,5922,10934 +105252,196,7,59678,1373711 +105253,204,9,77012,1128336 +105254,387,10,21159,85942 +105255,387,10,120357,223265 +105256,161,6,27259,1624495 +105257,277,3,126090,1537563 +105258,301,5,7454,1407672 +105259,387,10,12528,1222810 +105260,105,7,77079,44418 +105261,12,10,1497,19502 +105262,387,10,3028,29706 +105263,317,10,8672,6818 +105264,373,7,337339,1394131 +105265,3,5,9042,56786 +105266,113,9,28,795 +105267,234,1,53851,80570 +105268,87,7,43727,115311 +105269,286,3,268212,1503404 +105270,234,1,58309,129433 +105271,373,7,33586,91087 +105272,269,9,97614,40835 +105273,10,3,1586,59424 +105274,204,9,3172,11508 +105275,327,7,2692,30800 +105276,387,10,73194,14646 +105277,141,7,14615,1532469 +105278,413,11,301348,569737 +105279,169,3,19995,1401787 +105280,3,5,10761,3960 +105281,53,2,19936,3657 +105282,412,9,693,1760806 +105283,317,10,41556,53276 +105284,3,5,40925,1434896 +105285,3,5,363439,931363 +105286,234,1,435737,87565 +105287,53,2,291871,1894739 +105288,175,5,314065,1466258 +105289,155,3,14,2227 +105290,143,7,63215,1520930 +105291,59,3,809,1677816 +105292,317,10,131897,225140 +105293,148,9,90395,1506044 +105294,141,7,10320,932186 +105295,234,1,43395,46307 +105296,175,5,181454,1167892 +105297,234,1,27346,44765 +105298,234,1,211017,1065698 +105299,317,10,56391,1028361 +105300,269,9,11003,20824 +105301,360,3,245891,1393371 +105302,3,5,106016,11442 +105303,97,7,83,548435 +105304,234,1,56154,82800 +105305,53,2,44398,563074 +105306,317,10,254446,1290853 +105307,273,7,78362,929111 +105308,317,10,329289,1318094 +105309,269,9,28894,103507 +105310,387,10,405882,1361389 +105311,179,2,237584,1621364 +105312,3,5,408024,126755 +105313,148,9,16075,1465066 +105314,148,9,46029,1596655 +105315,387,10,87123,10148 +105316,413,11,394668,1611356 +105317,387,10,109477,237952 +105318,317,10,154019,937191 +105319,269,9,12205,1124464 +105320,97,7,9716,1580398 +105321,401,6,10198,1461399 +105322,286,3,381255,1817079 +105323,268,7,408755,76650 +105324,387,10,260947,1304136 +105325,289,6,14411,1453498 +105326,413,11,11035,32053 +105327,234,1,60046,31890 +105328,234,1,166027,107252 +105329,310,3,92499,1293663 +105330,234,1,12102,6729 +105331,262,6,251,1400820 +105332,182,8,225728,1430498 +105333,97,7,306966,1381236 +105334,204,9,19936,51900 +105335,387,10,140509,71640 +105336,234,1,336669,1466330 +105337,204,9,102384,11489 +105338,87,7,60281,1616391 +105339,262,6,924,1002652 +105340,62,3,10320,1552808 +105341,387,10,102949,99511 +105342,75,5,406431,1650634 +105343,387,10,2898,3388 +105344,198,6,257088,1638132 +105345,387,10,157343,74880 +105346,234,1,120109,21311 +105347,239,5,233639,1792031 +105348,413,11,110323,23978 +105349,413,11,9563,25058 +105350,77,10,7549,52910 +105351,60,1,43195,24657 +105352,409,7,442752,1761922 +105353,317,10,393659,1524727 +105354,317,10,38618,554583 +105355,234,1,37917,190 +105356,317,10,66925,564320 +105357,373,7,345925,1548596 +105358,3,5,8899,70313 +105359,234,1,29492,100616 +105360,3,5,12561,72825 +105361,187,11,45132,1347999 +105362,360,9,384737,1452334 +105363,262,6,1427,15910 +105364,204,9,76163,1412697 +105365,234,1,32540,129562 +105366,317,10,208869,63059 +105367,273,7,49597,52379 +105368,413,11,269173,1379027 +105369,75,5,25941,1357598 +105370,273,7,36915,1528 +105371,269,9,195796,1325489 +105372,387,10,13852,42378 +105373,166,9,178809,1412581 +105374,204,9,11511,31465 +105375,387,10,22448,229109 +105376,180,7,238,3104 +105377,53,2,197082,59683 +105378,234,1,45512,13859 +105379,413,11,118098,6875 +105380,413,11,152989,1058836 +105381,357,3,79316,1410105 +105382,317,10,44398,72062 +105383,3,5,18209,959727 +105384,328,6,70074,1360109 +105385,175,5,36094,1535320 +105386,52,10,88320,89860 +105387,234,1,97618,13927 +105388,349,1,10020,1447347 +105389,77,10,11889,1609930 +105390,234,1,16074,92015 +105391,155,3,23128,23626 +105392,234,1,41852,73496 +105393,278,6,924,1733247 +105394,187,11,353728,1699378 +105395,105,7,181656,555279 +105396,64,6,52454,1097207 +105397,234,1,38107,88648 +105398,143,7,267852,1388534 +105399,317,10,452606,109445 +105400,273,7,1125,15571 +105401,72,11,283445,1548099 +105402,314,2,193893,1533591 +105403,269,9,5516,4248 +105404,394,7,9543,1378168 +105405,105,7,16907,1123380 +105406,387,10,28176,19249 +105407,234,1,118408,73121 +105408,160,3,15310,936505 +105409,387,10,270007,33236 +105410,394,7,243935,92380 +105411,289,6,9023,118713 +105412,158,2,69,1532197 +105413,317,10,18801,139038 +105414,234,1,23331,11431 +105415,64,6,9946,1767323 +105416,182,8,198663,1367502 +105417,203,1,274479,1450000 +105418,53,2,755,11425 +105419,75,5,747,192625 +105420,317,10,84348,83858 +105421,412,9,13798,1565841 +105422,387,10,29352,103611 +105423,387,10,42456,218437 +105424,77,10,10008,61921 +105425,105,7,60199,5628 +105426,387,10,47536,100432 +105427,333,2,233639,560223 +105428,132,2,101325,578729 +105429,373,7,32657,42267 +105430,182,8,57419,1601707 +105431,387,10,256474,1294993 +105432,234,1,319396,1308906 +105433,317,10,398289,1637436 +105434,75,5,202241,957361 +105435,3,5,67696,29296 +105436,333,2,25941,1558430 +105437,333,2,2924,1316599 +105438,413,11,38031,1252 +105439,273,7,129,636 +105440,234,1,319340,1428168 +105441,196,7,59981,83085 +105442,413,11,5,156 +105443,273,7,17209,1467348 +105444,105,7,12104,67273 +105445,141,7,74,1535099 +105446,64,6,10727,1584256 +105447,387,10,11374,27519 +105448,225,7,193893,1824510 +105449,304,10,70881,70044 +105450,413,11,291907,1063379 +105451,180,7,15497,10605 +105452,234,1,172897,56714 +105453,148,9,351901,1377411 +105454,204,9,4547,9025 +105455,3,5,94663,1004100 +105456,200,3,2567,1402030 +105457,413,11,32043,21794 +105458,75,5,9514,56482 +105459,333,2,283445,1548104 +105460,148,9,965,7338 +105461,234,1,65795,19842 +105462,413,11,273404,1445360 +105463,234,1,222216,931778 +105464,234,1,65044,240283 +105465,53,2,245775,47815 +105466,317,10,27338,1216762 +105467,333,2,56937,1412145 +105468,317,10,87349,93658 +105469,52,10,62033,186126 +105470,234,1,155128,101142 +105471,234,1,206237,544711 +105472,234,1,62363,34630 +105473,234,1,16890,80988 +105474,5,10,5915,46587 +105475,67,10,13374,1447317 +105476,148,9,11206,4126 +105477,413,11,8340,1083065 +105478,413,11,172897,1027627 +105479,394,7,356500,1450947 +105480,83,2,40466,1760128 +105481,53,2,64499,1454543 +105482,317,10,32085,510 +105483,413,11,14830,1310334 +105484,413,11,52395,13584 +105485,234,1,43846,89749 +105486,269,9,19545,30467 +105487,234,1,14317,78488 +105488,234,1,150247,111172 +105489,217,3,1480,1461590 +105490,373,7,2046,1378755 +105491,328,6,9716,1536439 +105492,346,3,12171,1404873 +105493,333,2,13842,1424317 +105494,317,10,132759,1099999 +105495,269,9,92269,41152 +105496,105,7,92060,7182 +105497,387,10,127812,1082316 +105498,97,7,46261,1402740 +105499,5,10,317557,1482762 +105500,104,7,10201,55227 +105501,232,10,20766,57573 +105502,387,10,9078,57316 +105503,3,5,11879,2723 +105504,273,7,41206,7647 +105505,317,10,43139,12248 +105506,387,10,949,638 +105507,3,5,23196,67181 +105508,166,9,4147,1341851 +105509,204,9,82448,822886 +105510,53,2,12594,1326091 +105511,317,10,113638,29618 +105512,148,9,655,8706 +105513,180,7,147722,8511 +105514,234,1,127808,20412 +105515,234,1,24918,14639 +105516,273,7,347031,1645422 +105517,148,9,476,6481 +105518,204,9,9648,1813215 +105519,5,10,70966,235417 +105520,132,2,37534,1480628 +105521,204,9,2288,49345 +105522,204,9,356482,1733826 +105523,245,3,18763,57609 +105524,346,3,10145,1446694 +105525,208,2,77246,1364400 +105526,234,1,47934,6046 +105527,190,7,68387,1868465 +105528,12,10,9475,57641 +105529,413,11,9659,58439 +105530,357,3,315837,1797220 +105531,234,1,10020,62047 +105532,53,2,2267,23415 +105533,317,10,158870,1140231 +105534,219,11,9102,1192793 +105535,413,11,13440,969043 +105536,3,5,26958,19710 +105537,269,9,46924,391 +105538,333,2,228970,1867518 +105539,317,10,30330,35937 +105540,317,10,26182,91250 +105541,24,5,12,1742751 +105542,196,7,922,15433 +105543,204,9,196235,60111 +105544,234,1,127380,7929 +105545,234,1,77964,34740 +105546,180,7,10747,1408661 +105547,413,11,87827,1635 +105548,53,2,982,14727 +105549,262,6,140607,1394286 +105550,234,1,167,1978 +105551,179,2,17654,1424596 +105552,40,1,11370,1650190 +105553,273,7,16281,13367 +105554,122,8,337339,1463758 +105555,204,9,97024,9062 +105556,387,10,11848,70709 +105557,97,7,9472,1399917 +105558,148,9,43497,31067 +105559,164,3,315837,1866622 +105560,273,7,86297,14647 +105561,3,5,24238,92740 +105562,197,5,10590,960 +105563,187,7,369406,1872429 +105564,234,1,58396,132455 +105565,97,7,251227,1286572 +105566,3,5,183171,97048 +105567,148,9,33016,7147 +105568,3,5,452372,1796911 +105569,413,11,6643,14745 +105570,226,2,177677,1545923 +105571,187,11,60855,91885 +105572,234,1,8588,30365 +105573,148,9,12103,107420 +105574,286,3,253337,1308182 +105575,52,10,80539,148359 +105576,208,2,277558,1461479 +105577,179,2,74,1177713 +105578,234,1,18002,82804 +105579,3,5,14644,27224 +105580,387,10,3556,32777 +105581,179,2,36657,1326769 +105582,286,3,12888,1614965 +105583,226,2,176,1817621 +105584,148,9,15019,582929 +105585,20,2,365942,1552623 +105586,289,6,149870,1456614 +105587,53,2,33016,1143711 +105588,148,9,39938,7688 +105589,53,2,25796,1005624 +105590,189,3,9042,1389625 +105591,317,10,15,1040011 +105592,53,2,7445,1407233 +105593,105,7,423093,45546 +105594,53,2,10008,61936 +105595,87,7,293167,52452 +105596,45,9,94671,1520695 +105597,333,2,324930,1593832 +105598,52,10,9514,57801 +105599,304,10,22396,1105548 +105600,234,1,72640,11434 +105601,413,11,430826,1731915 +105602,234,1,219233,587603 +105603,387,10,10780,11708 +105604,166,9,32331,1399957 +105605,234,1,282069,43652 +105606,196,7,351211,1403860 +105607,234,1,269306,48566 +105608,317,10,30366,16767 +105609,387,10,213443,70981 +105610,87,7,9664,52452 +105611,173,7,198795,1163742 +105612,317,10,21148,42628 +105613,289,6,98566,1453933 +105614,413,11,961,8635 +105615,209,7,8915,1337469 +105616,234,1,74661,66109 +105617,387,10,44693,111475 +105618,37,3,362579,1518664 +105619,113,9,4147,54726 +105620,12,10,19766,111509 +105621,398,9,2274,22080 +105622,387,10,180819,85996 +105623,373,7,11202,18656 +105624,349,1,10193,72972 +105625,317,10,24619,946450 +105626,234,1,59354,124237 +105627,53,2,427680,1267666 +105628,204,9,53879,10604 +105629,53,2,392660,1711576 +105630,229,6,293167,1713066 +105631,76,2,393732,1559372 +105632,301,5,1579,1400081 +105633,53,2,245597,1805397 +105634,3,5,154019,1867210 +105635,234,1,72032,37742 +105636,317,10,89462,1102160 +105637,234,1,354287,114334 +105638,204,9,266373,17763 +105639,53,2,241742,1824681 +105640,269,9,15936,78982 +105641,317,10,19209,1199800 +105642,203,1,38922,1553113 +105643,403,10,90034,66797 +105644,182,8,9716,1661553 +105645,234,1,45156,58573 +105646,234,1,72898,53767 +105647,391,9,395992,1771006 +105648,269,9,257088,5867 +105649,413,11,218508,58673 +105650,317,10,297668,1114016 +105651,317,10,88012,84362 +105652,192,5,260030,1453126 +105653,234,1,142528,1117482 +105654,234,1,7445,53334 +105655,97,7,57749,1722225 +105656,234,1,18801,10076 +105657,317,10,29467,97471 +105658,317,10,85350,564 +105659,234,1,188826,66088 +105660,286,3,102949,30823 +105661,317,10,80276,465587 +105662,234,1,134215,92693 +105663,306,7,338063,1173170 +105664,387,10,43438,592252 +105665,3,5,57993,1940 +105666,317,10,85196,556913 +105667,160,3,98066,1399638 +105668,3,5,1404,15493 +105669,317,10,2293,19303 +105670,234,1,85038,223693 +105671,328,6,203833,1335882 +105672,317,10,21193,587861 +105673,3,5,10025,4501 +105674,396,3,311324,1407359 +105675,3,5,5183,666 +105676,317,10,175739,148011 +105677,3,5,788,1095 +105678,52,10,329010,1587602 +105679,160,3,18079,1584153 +105680,394,7,329865,1294674 +105681,52,10,260030,1316814 +105682,317,10,15020,173004 +105683,52,10,55728,1458271 +105684,394,7,10665,15226 +105685,317,10,88126,125587 +105686,52,10,44087,119322 +105687,182,8,168259,1437304 +105688,413,11,14698,37880 +105689,53,2,127521,1318884 +105690,234,1,211879,137492 +105691,105,7,360283,95865 +105692,53,2,32577,1312281 +105693,399,9,20558,1450356 +105694,141,7,2454,1459657 +105695,269,9,82448,822886 +105696,20,2,399790,1318892 +105697,387,10,410118,1099354 +105698,102,3,2567,1402033 +105699,53,2,125300,5549 +105700,411,9,266856,1320210 +105701,52,10,23739,6779 +105702,204,9,206647,986687 +105703,415,3,935,1201088 +105704,387,10,39195,10051 +105705,234,1,206514,79925 +105706,413,11,41298,31867 +105707,5,10,12206,47086 +105708,105,7,242683,30253 +105709,204,9,177677,71577 +105710,77,10,17236,81502 +105711,97,7,381518,40823 +105712,127,3,9461,62414 +105713,269,9,384682,28636 +105714,373,7,10198,83091 +105715,234,1,119820,44644 +105716,127,3,36658,1007395 +105717,77,10,32716,1534716 +105718,3,5,111960,97235 +105719,53,2,230428,1300159 +105720,317,10,252888,160447 +105721,234,1,142770,108764 +105722,148,9,82631,59429 +105723,143,7,53042,1362704 +105724,3,5,9673,35411 +105725,180,7,86814,1542497 +105726,387,10,42499,978927 +105727,317,10,57924,23799 +105728,53,2,43875,11491 +105729,52,10,55934,860526 +105730,179,2,11511,1352977 +105731,143,7,258193,1063962 +105732,273,7,12631,73171 +105733,234,1,1633,18250 +105734,53,2,90395,32442 +105735,182,8,84577,1392943 +105736,234,1,74629,13524 +105737,413,11,11048,59367 +105738,317,10,59965,234817 +105739,317,10,36249,58179 +105740,234,1,264644,83281 +105741,64,6,19996,1764178 +105742,5,10,64046,24840 +105743,3,5,366696,1769386 +105744,413,11,23152,10603 +105745,52,10,140887,976028 +105746,64,6,10865,1448084 +105747,77,10,6552,50721 +105748,167,3,93856,1335157 +105749,268,7,19765,1602163 +105750,387,10,621,8877 +105751,180,7,43195,1607233 +105752,317,10,63538,1133404 +105753,317,10,383538,78219 +105754,340,2,227306,1866353 +105755,3,5,13549,40392 +105756,317,10,20544,86299 +105757,105,7,9483,57662 +105758,5,10,3476,32083 +105759,413,11,347258,1525126 +105760,204,9,159667,1519344 +105761,226,2,334527,1579393 +105762,409,7,442752,1761924 +105763,387,10,19946,21227 +105764,387,10,422906,27919 +105765,269,9,267935,496 +105766,129,11,20174,85758 +105767,234,1,140554,54536 +105768,269,9,427680,1267666 +105769,413,11,362579,1518668 +105770,187,11,8053,1357059 +105771,234,1,22792,63983 +105772,234,1,4932,13294 +105773,75,5,12477,145351 +105774,204,9,70981,1327141 +105775,234,1,140708,1113222 +105776,413,11,2291,1047 +105777,328,6,297762,1903931 +105778,175,5,435,1183452 +105779,3,5,28171,20033 +105780,234,1,121530,121516 +105781,234,1,273404,562206 +105782,141,7,186869,19155 +105783,328,6,312831,1578001 +105784,413,11,16164,21656 +105785,53,2,277839,1163450 +105786,234,1,9820,17698 +105787,234,1,39771,21819 +105788,413,11,40804,29668 +105789,74,5,293167,1759768 +105790,413,11,332168,1503547 +105791,234,1,7514,52837 +105792,289,6,72105,1455532 +105793,273,7,197082,2949 +105794,226,2,10803,1412188 +105795,288,3,6973,1161231 +105796,239,5,188927,1638555 +105797,234,1,13972,76230 +105798,333,2,289,4128 +105799,234,1,469172,121585 +105800,397,7,21734,13960 +105801,234,1,237139,1118701 +105802,317,10,37420,23411 +105803,234,1,22779,5690 +105804,286,3,38742,10522 +105805,204,9,314065,1466249 +105806,234,1,13004,85435 +105807,317,10,265180,1063375 +105808,234,1,83587,995558 +105809,60,1,11045,92343 +105810,317,10,20055,938649 +105811,204,9,4809,8507 +105812,143,7,9664,999561 +105813,208,2,194509,7689 +105814,394,7,19101,1378756 +105815,203,1,6933,1386923 +105816,196,7,102382,1360098 +105817,234,1,253154,1292560 +105818,52,10,333667,1799672 +105819,407,6,2300,1537540 +105820,105,7,49418,1561898 +105821,365,6,82627,928336 +105822,317,10,61581,50740 +105823,234,1,25953,52172 +105824,289,6,10539,1448071 +105825,236,8,9352,1586387 +105826,234,1,77094,225151 +105827,387,10,43432,1023828 +105828,3,5,261273,558367 +105829,306,7,12103,1535541 +105830,317,10,139582,229108 +105831,413,11,244316,16651 +105832,11,6,39230,25622 +105833,198,6,287903,1569333 +105834,317,10,25682,31261 +105835,141,7,15213,68016 +105836,148,9,13965,76206 +105837,387,10,11131,21217 +105838,413,11,141138,43913 +105839,234,1,82243,624980 +105840,387,10,11979,71149 +105841,52,10,26593,131741 +105842,387,10,42648,170497 +105843,413,11,13681,9966 +105844,243,3,55534,1577958 +105845,105,7,5516,43850 +105846,143,7,419430,1335147 +105847,232,10,76642,33781 +105848,143,7,1818,19268 +105849,204,9,131737,1319729 +105850,234,1,328712,1434902 +105851,269,9,46931,1595153 +105852,258,9,10204,1470180 +105853,158,2,11045,1525196 +105854,3,5,43228,4101 +105855,301,5,17209,1399565 +105856,204,9,98025,1202524 +105857,3,5,10543,46081 +105858,394,7,809,11174 +105859,415,3,378441,1621072 +105860,387,10,86768,933697 +105861,413,11,369033,1455850 +105862,75,5,6171,1394974 +105863,273,7,38950,50715 +105864,175,5,274504,1609042 +105865,317,10,2321,68376 +105866,357,3,209112,1661403 +105867,403,10,117212,1200239 +105868,234,1,21736,86557 +105869,325,5,163,1412260 +105870,317,10,623,8930 +105871,413,11,14527,35332 +105872,398,9,340488,1775764 +105873,317,10,359413,1590181 +105874,234,1,57326,68762 +105875,234,1,120922,70027 +105876,269,9,18414,1046700 +105877,317,10,438597,1799082 +105878,53,2,40087,1646189 +105879,317,10,158750,1140172 +105880,234,1,8272,54240 +105881,234,1,310001,1046142 +105882,47,8,4147,460 +105883,132,2,257088,1445820 +105884,387,10,24405,71234 +105885,85,10,5924,589579 +105886,273,7,10071,41674 +105887,317,10,260310,1305989 +105888,269,9,261036,966560 +105889,234,1,60977,80172 +105890,3,5,42634,14132 +105891,77,10,9987,61495 +105892,262,6,72545,1859984 +105893,219,11,8619,13223 +105894,52,10,30054,168041 +105895,273,7,30875,59366 +105896,387,10,112130,134134 +105897,25,2,318922,41545 +105898,413,11,310568,35394 +105899,234,1,182843,72477 +105900,273,7,22998,719 +105901,413,11,47410,71006 +105902,152,2,10796,1868273 +105903,204,9,373546,1465332 +105904,188,8,425774,1708028 +105905,3,5,47190,1306896 +105906,413,11,9427,3310 +105907,3,5,278334,61919 +105908,208,2,57419,1599493 +105909,269,9,11056,15606 +105910,273,7,11404,69957 +105911,5,10,47412,241 +105912,187,11,146233,1458578 +105913,333,2,40085,26175 +105914,204,9,1724,18867 +105915,169,3,50725,1830513 +105916,387,10,55632,222833 +105917,3,5,333663,1209263 +105918,187,11,9563,1405232 +105919,232,10,35284,138765 +105920,234,1,34084,19708 +105921,269,9,362057,1129805 +105922,3,5,128412,1489479 +105923,3,5,351211,1395902 +105924,53,2,457,6249 +105925,35,10,315837,57303 +105926,5,10,201749,619186 +105927,327,7,9352,1378756 +105928,53,2,31011,56796 +105929,234,1,331588,18356 +105930,387,10,36797,72714 +105931,234,1,33338,110511 +105932,387,10,129851,56033 +105933,413,11,43231,15132 +105934,317,10,49038,1116049 +105935,53,2,118640,1596518 +105936,203,1,17609,1012 +105937,189,3,270851,1321940 +105938,148,9,174769,29280 +105939,45,9,329440,1335144 +105940,53,2,2274,22081 +105941,327,7,24679,1442508 +105942,204,9,98125,127200 +105943,360,3,635,1333153 +105944,245,3,6972,1243767 +105945,317,10,32139,108944 +105946,148,9,42251,1446540 +105947,252,3,242310,1340749 +105948,97,7,329865,17428 +105949,234,1,18826,83653 +105950,12,10,1498,19502 +105951,289,6,302026,1570594 +105952,419,10,15909,64185 +105953,105,7,16371,24993 +105954,403,10,84708,1172271 +105955,234,1,27112,9855 +105956,286,3,38157,64300 +105957,34,8,337339,1412329 +105958,3,5,11120,2702 +105959,3,5,285841,25744 +105960,53,2,194722,1325218 +105961,387,10,42436,78530 +105962,53,2,43912,1711584 +105963,53,2,15940,33193 +105964,105,7,37305,2027 +105965,273,7,3146,425396 +105966,249,7,11024,1159914 +105967,64,6,332662,1570525 +105968,234,1,235208,1270484 +105969,3,5,11909,65963 +105970,208,2,395883,1636736 +105971,67,10,24554,91767 +105972,97,7,7916,1413962 +105973,226,2,15762,1485649 +105974,87,7,219466,1640828 +105975,262,6,1271,1075261 +105976,207,3,266856,1410203 +105977,269,9,9555,5547 +105978,413,11,11379,11454 +105979,53,2,9835,14311 +105980,244,3,11377,1556285 +105981,317,10,49060,290572 +105982,234,1,86279,986564 +105983,413,11,91181,234727 +105984,328,6,15472,1395761 +105985,273,7,29416,1297756 +105986,387,10,35,5741 +105987,108,10,47758,5787 +105988,148,9,6068,14348 +105989,148,9,93313,12349 +105990,53,2,9746,2366 +105991,175,5,9593,1400082 +105992,289,6,291270,1584366 +105993,39,3,10590,1566268 +105994,398,9,75174,1378677 +105995,53,2,83666,1023713 +105996,301,5,271404,1764804 +105997,204,9,182899,9062 +105998,387,10,14370,12991 +105999,208,2,241254,1404190 +106000,277,3,287,1117459 +106001,3,5,99329,50551 +106002,75,5,293660,1580835 +106003,317,10,85052,1264503 +106004,387,10,43395,115760 +106005,204,9,99861,1510429 +106006,105,7,189556,998557 +106007,317,10,26873,96494 +106008,387,10,45874,106019 +106009,317,10,86520,133518 +106010,317,10,37939,1255674 +106011,413,11,392660,1711574 +106012,53,2,64499,1454542 +106013,3,5,87826,10709 +106014,148,9,10921,1330853 +106015,60,1,3716,1504785 +106016,234,1,13468,17277 +106017,317,10,344560,208171 +106018,326,3,4147,8217 +106019,244,3,163791,1601454 +106020,286,3,26955,1324904 +106021,273,7,5753,1522491 +106022,53,2,291413,66494 +106023,67,10,116711,1217416 +106024,53,2,18633,226308 +106025,317,10,55208,127451 +106026,269,9,378441,1362656 +106027,234,1,69898,15663 +106028,53,2,220488,1307116 +106029,273,7,3078,29276 +106030,234,1,15068,1843 +106031,413,11,294651,1307316 +106032,52,10,106747,2294 +106033,204,9,170759,1153036 +106034,317,10,229757,78158 +106035,413,11,371645,1404683 +106036,413,11,129851,101099 +106037,327,7,222935,1406190 +106038,387,10,205349,67929 +106039,317,10,68247,16888 +106040,387,10,121674,133876 +106041,60,1,43231,33924 +106042,262,6,19901,1391727 +106043,286,3,280583,1469054 +106044,289,6,9514,1642545 +106045,413,11,14765,1030265 +106046,317,10,42837,11630 +106047,204,9,68737,1499157 +106048,413,11,144475,1007753 +106049,67,10,9352,117217 +106050,234,1,13678,139818 +106051,158,2,44945,997367 +106052,204,9,19754,27157 +106053,234,1,81937,30678 +106054,53,2,403429,1337633 +106055,3,5,28438,33413 +106056,175,5,126889,1418310 +106057,143,7,112456,1357339 +106058,75,5,47536,1860712 +106059,387,10,9264,57066 +106060,203,1,353728,1699373 +106061,169,3,62630,1129208 +106062,99,3,279096,1386316 +106063,234,1,12632,1870 +106064,105,7,28071,72894 +106065,317,10,259645,1062920 +106066,3,5,2001,17453 +106067,204,9,9900,60155 +106068,175,5,18317,1529527 +106069,239,5,24619,1417881 +106070,289,6,214756,1453933 +106071,413,11,11535,17886 +106072,203,1,9428,1414532 +106073,104,7,9946,1559479 +106074,286,3,166207,1396373 +106075,179,2,49009,35775 +106076,394,7,27259,1393302 +106077,105,7,458808,67544 +106078,234,1,371462,1017396 +106079,209,7,10590,5712 +106080,234,1,45772,12079 +106081,360,3,329440,1424682 +106082,97,7,241855,1470706 +106083,269,9,51144,575524 +106084,273,7,9461,9217 +106085,213,10,18575,82310 +106086,234,1,4111,34740 +106087,310,3,214910,1294072 +106088,234,1,103260,201568 +106089,22,9,3172,1738162 +106090,234,1,336811,89628 +106091,3,5,86049,30923 +106092,412,9,109439,1585160 +106093,105,7,212756,1425357 +106094,234,1,33272,110427 +106095,3,5,43231,15131 +106096,203,1,22803,1418491 +106097,53,2,46992,9027 +106098,317,10,66469,51708 +106099,234,1,14753,78012 +106100,234,1,29572,57206 +106101,52,10,858,12921 +106102,234,1,57489,226347 +106103,331,3,11377,1602867 +106104,269,9,284052,32349 +106105,413,11,74581,1029784 +106106,317,10,276550,108217 +106107,169,3,98066,1759318 +106108,373,7,413882,1381703 +106109,148,9,27349,1261 +106110,3,5,72313,19397 +106111,269,9,309024,1575826 +106112,249,7,436,1395025 +106113,47,8,435,1767009 +106114,97,7,163,113041 +106115,273,7,132328,10934 +106116,3,5,137726,38168 +106117,289,6,72105,1455525 +106118,413,11,228290,1799715 +106119,148,9,5638,6359 +106120,317,10,147939,174468 +106121,387,10,92848,33029 +106122,373,7,13614,1392211 +106123,46,5,188102,1845774 +106124,269,9,4476,9199 +106125,262,6,4547,1409273 +106126,75,5,14370,70949 +106127,3,5,15239,59953 +106128,213,10,55853,73153 +106129,105,7,80324,12013 +106130,180,7,157343,8722 +106131,3,5,47446,29895 +106132,269,9,9877,21615 +106133,113,9,64215,1354350 +106134,262,6,140554,1707851 +106135,286,3,259997,1302530 +106136,53,2,147722,1355547 +106137,52,10,102632,1031475 +106138,333,2,9475,1511682 +106139,28,9,11618,1765770 +106140,273,7,47404,101711 +106141,204,9,11024,961544 +106142,306,7,43459,31874 +106143,269,9,403431,1273860 +106144,66,11,3780,1429269 +106145,234,1,256328,164665 +106146,273,7,2160,4683 +106147,234,1,71120,1199698 +106148,234,1,15086,77861 +106149,25,2,245700,1428470 +106150,306,7,1624,12533 +106151,269,9,261508,1305036 +106152,176,3,664,1798309 +106153,204,9,165,15843 +106154,413,11,93457,37880 +106155,5,10,112284,1123346 +106156,148,9,116385,1776617 +106157,413,11,96936,1782 +106158,18,2,2924,92358 +106159,360,9,2978,1341399 +106160,196,7,82,67865 +106161,273,7,77012,8503 +106162,5,10,65599,51534 +106163,262,6,206647,1551909 +106164,368,7,10727,1584254 +106165,219,11,10865,1552873 +106166,310,3,83754,1294787 +106167,269,9,57230,1625940 +106168,387,10,788,11707 +106169,234,1,5552,44070 +106170,234,1,48199,140027 +106171,387,10,17332,6340 +106172,166,9,505,1336516 +106173,155,3,140554,1707856 +106174,234,1,46193,50300 +106175,273,7,47900,544515 +106176,269,9,39045,1447357 +106177,317,10,38794,109445 +106178,387,10,9543,121479 +106179,317,10,24123,1228302 +106180,289,6,149870,1456625 +106181,25,2,1902,1492135 +106182,413,11,37053,931385 +106183,396,3,127521,1542337 +106184,269,9,16436,5867 +106185,169,3,109439,1357062 +106186,204,9,311324,1658865 +106187,196,7,9543,3503 +106188,52,10,9102,584 +106189,3,5,184098,930028 +106190,226,2,263627,1397275 +106191,269,9,93492,222612 +106192,343,3,38955,44916 +106193,53,2,79550,1317391 +106194,234,1,54548,25506 +106195,413,11,8080,67810 +106196,317,10,26173,2235 +106197,273,7,42472,491 +106198,387,10,263115,191937 +106199,196,7,9563,1367667 +106200,269,9,42456,7306 +106201,234,1,29272,233134 +106202,289,6,79218,1455598 +106203,89,5,274857,1774234 +106204,317,10,9836,58063 +106205,273,7,12536,20822 +106206,87,7,9893,1559586 +106207,273,7,10797,66848 +106208,289,6,98566,1459765 +106209,77,10,9977,61335 +106210,204,9,198277,1363964 +106211,273,7,19053,551922 +106212,269,9,47851,1584745 +106213,413,11,422603,1640278 +106214,273,7,22404,8503 +106215,190,7,755,1341339 +106216,203,1,73424,1544179 +106217,234,1,33280,583433 +106218,182,8,95516,1394782 +106219,234,1,20558,113896 +106220,53,2,35651,927278 +106221,387,10,48838,34510 +106222,413,11,20312,959124 +106223,196,7,257088,1428595 +106224,317,10,24357,9340 +106225,234,1,764,7623 +106226,187,11,79316,1547668 +106227,373,7,14181,1010751 +106228,262,6,8617,1392098 +106229,360,3,44363,1178650 +106230,413,11,10020,5721 +106231,317,10,97206,1341506 +106232,226,2,14537,1547580 +106233,333,2,3057,1539805 +106234,273,7,3092,2289 +106235,387,10,72638,14776 +106236,243,3,59297,1658443 +106237,203,1,102629,1350261 +106238,204,9,14869,6878 +106239,40,1,287587,1797110 +106240,3,5,9260,1214 +106241,143,7,83229,940810 +106242,3,5,11391,69177 +106243,204,9,75,553 +106244,273,7,275269,1414454 +106245,413,11,12279,2294 +106246,105,7,29259,103396 +106247,415,3,56937,1336934 +106248,5,10,175822,27904 +106249,289,6,378236,1840324 +106250,327,7,15653,1392129 +106251,234,1,44081,1061523 +106252,213,10,23367,18342 +106253,37,3,2135,1447557 +106254,387,10,36402,574069 +106255,387,10,11381,56156 +106256,293,2,1073,1792646 +106257,234,1,30411,106244 +106258,3,5,107985,9341 +106259,53,2,278316,15524 +106260,157,3,28169,99251 +106261,262,6,238589,1393416 +106262,39,3,241254,1404199 +106263,52,10,444713,88142 +106264,317,10,296192,1371389 +106265,5,10,140825,1113512 +106266,12,10,33305,224 +106267,269,9,117251,10819 +106268,269,9,46029,1027282 +106269,286,3,379019,34306 +106270,262,6,6038,1583827 +106271,3,5,18908,65882 +106272,286,3,188102,64300 +106273,415,3,174769,10157 +106274,234,1,27270,197925 +106275,413,11,244268,569737 +106276,269,9,47112,1325904 +106277,317,10,67900,43092 +106278,234,1,145963,143463 +106279,343,3,66756,1743596 +106280,413,11,171337,56278 +106281,413,11,43828,1552 +106282,208,2,6557,1320911 +106283,181,7,21208,405004 +106284,155,3,407806,13309 +106285,105,7,3145,30760 +106286,105,7,256962,72981 +106287,234,1,15092,20192 +106288,5,10,25335,1658760 +106289,234,1,11307,9577 +106290,286,3,352197,1511742 +106291,105,7,26963,96680 +106292,273,7,403867,53616 +106293,53,2,20766,928371 +106294,289,6,149870,1456612 +106295,327,7,35253,114358 +106296,387,10,19238,568258 +106297,198,6,293660,1580859 +106298,289,6,132714,148148 +106299,273,7,781,1075 +106300,127,3,814,14461 +106301,413,11,47459,138636 +106302,413,11,42640,989147 +106303,113,9,60599,1400491 +106304,413,11,150117,16362 +106305,286,3,14525,560194 +106306,234,1,10145,52629 +106307,234,1,285848,1170861 +106308,75,5,70074,1144651 +106309,105,7,147767,88593 +106310,103,6,154972,1558976 +106311,234,1,56807,225005 +106312,105,7,196852,1106748 +106313,387,10,37311,100914 +106314,328,6,82,1464538 +106315,196,7,146233,1399632 +106316,52,10,80193,1150484 +106317,234,1,103902,61335 +106318,53,2,11610,6851 +106319,244,3,69,1401644 +106320,87,7,443319,1534893 +106321,105,7,20372,1635713 +106322,373,7,9543,1378171 +106323,27,3,2924,1803773 +106324,148,9,13842,1378195 +106325,387,10,25953,1412537 +106326,196,7,169,1335122 +106327,413,11,26954,11372 +106328,333,2,286372,1378139 +106329,165,9,14430,1521707 +106330,187,11,333352,1609859 +106331,3,5,11077,20823 +106332,333,2,11137,1318873 +106333,175,5,17609,17704 +106334,413,11,26811,35839 +106335,105,7,345918,201210 +106336,387,10,9982,52694 +106337,413,11,49009,3904 +106338,217,3,9297,1462708 +106339,20,2,9882,18513 +106340,234,1,134144,1036754 +106341,143,7,102632,1586803 +106342,3,5,42472,14094 +106343,244,3,9882,1562239 +106344,413,11,269306,8735 +106345,317,10,270899,72319 +106346,148,9,31324,9063 +106347,403,10,34127,30010 +106348,204,9,318781,1622806 +106349,333,2,218778,15017 +106350,234,1,10847,61019 +106351,234,1,27443,93905 +106352,5,10,43364,134398 +106353,304,10,55853,64750 +106354,204,9,9563,12131 +106355,112,3,81589,928952 +106356,52,10,48846,29433 +106357,53,2,19101,10970 +106358,226,2,99,1677175 +106359,317,10,370213,1541732 +106360,53,2,6171,33456 +106361,50,3,9882,1774562 +106362,314,2,1125,1532232 +106363,3,5,17111,545305 +106364,167,3,167073,1409724 +106365,387,10,121848,121090 +106366,52,10,153163,33027 +106367,40,1,40466,1760131 +106368,273,7,256092,1325555 +106369,148,9,7515,1537515 +106370,46,5,339403,1635249 +106371,204,9,8588,1318520 +106372,234,1,75745,229252 +106373,234,1,72313,127678 +106374,273,7,179715,1006467 +106375,53,2,8457,19285 +106376,317,10,57230,225722 +106377,268,7,325173,1369376 +106378,203,1,6977,587969 +106379,204,9,613,1377250 +106380,12,10,1924,20008 +106381,52,10,15440,107744 +106382,317,10,37189,28615 +106383,204,9,91480,14963 +106384,413,11,11600,1264 +106385,3,5,16551,16389 +106386,394,7,267852,1388534 +106387,53,2,12169,1021802 +106388,273,7,9882,5912 +106389,234,1,254268,232022 +106390,5,10,252144,1287447 +106391,327,7,24679,4716 +106392,226,2,167,1524668 +106393,269,9,244610,1401005 +106394,3,5,19348,50101 +106395,53,2,32088,1656020 +106396,204,9,31671,936638 +106397,286,3,402446,970129 +106398,87,7,419430,1761131 +106399,169,3,37936,1639146 +106400,203,1,63736,1350808 +106401,387,10,40804,109726 +106402,333,2,27380,1638072 +106403,413,11,11540,54569 +106404,60,1,274990,72914 +106405,317,10,287628,1528153 +106406,387,10,75162,10931 +106407,232,10,18776,4358 +106408,3,5,88486,101574 +106409,53,2,9032,20826 +106410,387,10,301348,2130 +106411,5,10,63958,223230 +106412,234,1,217412,228943 +106413,204,9,340187,1579535 +106414,387,10,27703,44957 +106415,196,7,201085,1445838 +106416,234,1,284274,1266051 +106417,317,10,186759,1017005 +106418,175,5,1817,55246 +106419,387,10,98369,1018931 +106420,387,10,43489,178338 +106421,333,2,29151,91054 +106422,413,11,10379,44993 +106423,273,7,142770,1680195 +106424,234,1,29382,103686 +106425,217,3,14444,1448999 +106426,77,10,106851,6210 +106427,13,1,83015,126126 +106428,317,10,79783,587976 +106429,53,2,97365,5435 +106430,148,9,121636,1332196 +106431,200,3,42251,1446547 +106432,413,11,181533,54271 +106433,5,10,75233,26354 +106434,3,5,56068,544824 +106435,286,3,61581,98746 +106436,105,7,22683,71191 +106437,179,2,2309,1319120 +106438,175,5,755,74992 +106439,3,5,81001,9614 +106440,234,1,377362,1364419 +106441,209,7,6557,1435194 +106442,273,7,18392,42369 +106443,204,9,415255,1758717 +106444,53,2,112885,9064 +106445,67,10,293660,105643 +106446,234,1,272892,1325970 +106447,333,2,33135,1304270 +106448,413,11,207699,1612906 +106449,105,7,57005,1760580 +106450,413,11,296523,69229 +106451,148,9,83802,66284 +106452,143,7,300983,1643577 +106453,234,1,14215,77698 +106454,387,10,110525,89084 +106455,204,9,9289,12264 +106456,187,11,72545,1389134 +106457,234,1,129359,1089147 +106458,204,9,151043,1049 +106459,148,9,31083,1018346 +106460,273,7,868,13083 +106461,398,9,109439,61097 +106462,105,7,12412,5287 +106463,3,5,47889,1607803 +106464,317,10,296456,21246 +106465,234,1,300667,285385 +106466,234,1,117,1150 +106467,317,10,24886,1006773 +106468,175,5,6557,1407027 +106469,81,3,544,1780220 +106470,3,5,99567,890566 +106471,333,2,373546,1869459 +106472,317,10,201581,1183659 +106473,333,2,168027,1460741 +106474,413,11,230266,11233 +106475,3,5,61552,48911 +106476,234,1,15697,70862 +106477,234,1,320589,141934 +106478,413,11,9648,59442 +106479,286,3,374618,1554769 +106480,236,8,17911,1755561 +106481,234,1,31921,39012 +106482,269,9,11517,959360 +106483,328,6,10733,1397847 +106484,333,2,2989,23788 +106485,317,10,213681,82624 +106486,97,7,76757,1482837 +106487,53,2,223946,927278 +106488,20,2,10529,1567302 +106489,273,7,539,1045 +106490,387,10,7305,26095 +106491,5,10,235,3027 +106492,273,7,287903,57196 +106493,308,3,12,8165 +106494,373,7,15689,1545391 +106495,273,7,2132,21851 +106496,127,3,22606,89011 +106497,317,10,26368,76408 +106498,105,7,403130,1296724 +106499,360,3,1271,1394742 +106500,148,9,16643,28163 +106501,33,10,214938,1315635 +106502,34,8,10665,1407896 +106503,108,10,86297,1240887 +106504,413,11,96987,148737 +106505,373,7,20439,1345595 +106506,62,3,11045,1425917 +106507,387,10,42679,128439 +106508,148,9,10950,11413 +106509,204,9,139176,1353811 +106510,143,7,20432,1348000 +106511,204,9,74,961609 +106512,5,10,120,129 +106513,387,10,12249,71929 +106514,148,9,77246,65736 +106515,387,10,382873,63869 +106516,67,10,17566,555097 +106517,204,9,219335,1517369 +106518,387,10,215740,1200389 +106519,3,5,125063,1571979 +106520,333,2,245700,1434862 +106521,413,11,10659,32638 +106522,234,1,290864,70703 +106523,286,3,87654,116372 +106524,269,9,313922,90280 +106525,204,9,1966,60859 +106526,317,10,39939,52051 +106527,204,9,337104,1324834 +106528,387,10,11897,19573 +106529,327,7,413421,1785028 +106530,234,1,76349,18897 +106531,317,10,37969,5690 +106532,148,9,8457,33711 +106533,360,3,77949,1402092 +106534,366,3,18,1440843 +106535,203,1,13616,1399644 +106536,232,10,95169,1170213 +106537,333,2,263115,1757645 +106538,52,10,257088,15305 +106539,148,9,12221,1086400 +106540,269,9,36758,75479 +106541,273,7,62967,236339 +106542,192,5,246655,1693479 +106543,273,7,24397,1385924 +106544,143,7,93856,1389134 +106545,301,5,405473,1458556 +106546,360,3,11812,1421796 +106547,333,2,224944,1642141 +106548,203,1,13667,101449 +106549,92,7,638,9536 +106550,273,7,29449,491 +106551,314,2,228066,1415946 +106552,269,9,270303,1204004 +106553,148,9,2084,1465595 +106554,175,5,228066,1181554 +106555,413,11,458428,1820245 +106556,234,1,290825,19303 +106557,234,1,75262,237275 +106558,413,11,241930,1121480 +106559,196,7,310888,1409545 +106560,20,2,41171,1525883 +106561,234,1,244001,115128 +106562,286,3,91261,55518 +106563,234,1,122928,239912 +106564,305,9,121674,1422814 +106565,25,2,118,1411075 +106566,269,9,39781,141301 +106567,52,10,444713,150486 +106568,234,1,167810,30614 +106569,269,9,329440,8382 +106570,226,2,44943,1336431 +106571,328,6,1271,1391725 +106572,413,11,95177,592493 +106573,234,1,334317,14606 +106574,273,7,10847,20075 +106575,5,10,10436,65288 +106576,148,9,48156,34082 +106577,182,8,141489,1114936 +106578,387,10,31548,98751 +106579,234,1,27873,23858 +106580,234,1,212530,55761 +106581,387,10,10222,64682 +106582,3,5,3780,34380 +106583,179,2,346672,1483847 +106584,180,7,107593,4315 +106585,158,2,11618,1737233 +106586,3,5,362150,580790 +106587,289,6,14683,1395269 +106588,3,5,10142,1258 +106589,327,7,38325,238623 +106590,413,11,134350,67081 +106591,387,10,55784,1060479 +106592,413,11,16643,58720 +106593,148,9,336890,1492089 +106594,269,9,29355,874 +106595,175,5,10804,1840468 +106596,317,10,103713,1034657 +106597,289,6,9078,22066 +106598,273,7,45964,96286 +106599,166,9,9914,1402977 +106600,234,1,43525,6593 +106601,105,7,34106,4082 +106602,296,3,169,1548676 +106603,413,11,11485,68942 +106604,213,10,16661,143563 +106605,143,7,1956,56765 +106606,234,1,15797,16590 +106607,234,1,353533,1168111 +106608,387,10,220976,49422 +106609,60,1,40998,108216 +106610,234,1,49343,23858 +106611,387,10,162282,1144623 +106612,148,9,31428,1412170 +106613,105,7,47112,1095270 +106614,3,5,244534,1118557 +106615,286,3,87593,45405 +106616,415,3,263115,1821893 +106617,53,2,15414,81266 +106618,333,2,318781,1439128 +106619,234,1,341491,97143 +106620,3,5,37926,1109377 +106621,234,1,9677,25509 +106622,234,1,82929,928931 +106623,12,10,13495,1102178 +106624,83,2,8470,1548532 +106625,413,11,4550,10108 +106626,275,9,43641,89596 +106627,3,5,339994,67252 +106628,234,1,144680,1125890 +106629,179,2,12528,798 +106630,273,7,43902,13337 +106631,262,6,170279,1558976 +106632,387,10,19736,65363 +106633,75,5,20312,1399505 +106634,3,5,18506,57135 +106635,143,7,20,2331 +106636,148,9,27035,1432112 +106637,413,11,15560,77863 +106638,277,3,314371,1611071 +106639,53,2,53853,9064 +106640,263,11,142402,1117113 +106641,204,9,10075,23492 +106642,53,2,33345,60479 +106643,412,9,1966,1591552 +106644,97,7,263115,1338372 +106645,3,5,103938,127523 +106646,317,10,49843,43793 +106647,203,1,9532,1399582 +106648,413,11,18569,68417 +106649,53,2,2125,21824 +106650,234,1,4703,39012 +106651,317,10,172785,198555 +106652,175,5,241254,1376489 +106653,387,10,72545,72724 +106654,273,7,28425,30130 +106655,273,7,108282,52025 +106656,105,7,19398,589102 +106657,333,2,19957,10014 +106658,52,10,43316,129997 +106659,387,10,3941,34204 +106660,301,5,4806,21118 +106661,204,9,26142,16652 +106662,179,2,10396,1455393 +106663,234,1,108048,119234 +106664,105,7,15468,1259 +106665,165,9,5,1549015 +106666,234,1,285860,1030260 +106667,387,10,336029,524 +106668,234,1,209764,1293082 +106669,394,7,16432,969465 +106670,148,9,45610,15541 +106671,234,1,385750,963482 +106672,209,7,10330,1546457 +106673,226,2,152748,1475161 +106674,413,11,44945,17115 +106675,269,9,76397,578792 +106676,148,9,323435,1434326 +106677,413,11,244580,1279866 +106678,105,7,321303,1595706 +106679,273,7,82767,1719803 +106680,317,10,137381,1710373 +106681,413,11,10866,899 +106682,198,6,16996,1532730 +106683,234,1,315846,25645 +106684,148,9,201085,53114 +106685,52,10,191322,76519 +106686,333,2,5638,23703 +106687,413,11,293670,69388 +106688,77,10,10063,62682 +106689,105,7,26689,1102479 +106690,53,2,31532,4350 +106691,97,7,47386,138802 +106692,387,10,117534,1076192 +106693,234,1,10909,58498 +106694,234,1,57809,146599 +106695,413,11,12255,71958 +106696,3,5,172548,1155146 +106697,234,1,121823,74192 +106698,234,1,256421,34934 +106699,203,1,540,1371115 +106700,3,5,42542,7413 +106701,60,1,20325,1111814 +106702,75,5,216580,1395229 +106703,387,10,37725,80422 +106704,75,5,11607,55441 +106705,105,7,27019,227409 +106706,3,5,264309,1498 +106707,22,9,11351,1597189 +106708,64,6,46420,1452989 +106709,105,7,31005,4140 +106710,234,1,126250,1011 +106711,413,11,252102,545053 +106712,387,10,329135,78747 +106713,296,3,10204,1613268 +106714,317,10,111014,1052132 +106715,317,10,312138,1400484 +106716,273,7,96702,1086331 +106717,317,10,44256,14228 +106718,234,1,277388,2176 +106719,22,9,13380,1753065 +106720,325,5,418437,1521093 +106721,346,3,167073,1413858 +106722,413,11,13798,103679 +106723,209,7,9438,1461183 +106724,234,1,110160,143593 +106725,175,5,77010,1455022 +106726,301,5,10739,1393571 +106727,268,7,177677,1408378 +106728,75,5,204922,75113 +106729,187,11,10391,1404838 +106730,413,11,54690,1542408 +106731,317,10,214756,570785 +106732,234,1,161545,223965 +106733,413,11,11425,11776 +106734,269,9,246133,1343937 +106735,172,3,14,1753783 +106736,268,7,74,1546873 +106737,105,7,9076,56920 +106738,234,1,120676,14855 +106739,3,5,9396,31027 +106740,3,5,13667,68459 +106741,387,10,52203,153183 +106742,226,2,15414,1409395 +106743,161,6,18,1551515 +106744,269,9,35623,1149120 +106745,387,10,42679,73856 +106746,239,5,328429,1636711 +106747,234,1,324263,79680 +106748,273,7,16186,1554752 +106749,234,1,179288,585272 +106750,333,2,31258,1060909 +106751,269,9,1690,16492 +106752,413,11,44303,114351 +106753,105,7,166207,533375 +106754,360,9,176,1817631 +106755,387,10,9514,57800 +106756,234,1,311585,78021 +106757,387,10,3291,1461 +106758,174,6,8870,1540353 +106759,287,3,66881,1426211 +106760,234,1,343283,1474242 +106761,234,1,199647,1179825 +106762,182,8,76170,1402902 +106763,234,1,52903,235503 +106764,303,3,8870,1724248 +106765,234,1,41608,18834 +106766,52,10,47561,114641 +106767,80,3,19719,85129 +106768,286,3,71120,36148 +106769,175,5,399790,1411251 +106770,148,9,316154,1148632 +106771,3,5,3513,8306 +106772,234,1,28894,68 +106773,219,11,376394,1559480 +106774,413,11,38356,15841 +106775,187,11,312831,1547155 +106776,234,1,66926,123970 +106777,234,1,9080,4610 +106778,387,10,5201,42063 +106779,234,1,375199,133423 +106780,3,5,15497,13270 +106781,317,10,75532,27845 +106782,127,3,8869,1669267 +106783,413,11,61121,1841883 +106784,412,9,13798,1565847 +106785,273,7,370264,6422 +106786,3,5,323674,1106693 +106787,387,10,39840,125281 +106788,234,1,28155,19266 +106789,66,11,46286,4235 +106790,413,11,54523,67974 +106791,239,5,8869,1552537 +106792,269,9,18801,15877 +106793,413,11,32764,20452 +106794,3,5,33668,96252 +106795,327,7,5638,81526 +106796,346,3,62630,1404553 +106797,239,5,330770,1616024 +106798,3,5,1259,8969 +106799,234,1,2046,7623 +106800,196,7,9836,1585728 +106801,317,10,55922,61961 +106802,234,1,100450,1024313 +106803,373,7,24679,1399140 +106804,387,10,16026,79064 +106805,371,3,4147,1558211 +106806,45,9,6557,1532072 +106807,317,10,31206,107778 +106808,286,3,365447,1527515 +106809,273,7,42664,30777 +106810,269,9,18333,46876 +106811,1,7,11216,1145333 +106812,317,10,26182,94802 +106813,327,7,244786,1437193 +106814,67,10,49013,1447565 +106815,387,10,31262,85638 +106816,5,10,96716,236291 +106817,387,10,12696,74008 +106818,3,5,13788,54846 +106819,387,10,63858,51727 +106820,387,10,132928,2666 +106821,387,10,45875,12415 +106822,333,2,329440,1622455 +106823,234,1,249021,81297 +106824,46,5,270851,1321937 +106825,287,3,29161,99546 +106826,317,10,203321,1186790 +106827,327,7,169,1412195 +106828,390,6,9902,1841589 +106829,3,5,28120,97048 +106830,52,10,22396,88741 +106831,394,7,83,548438 +106832,127,3,28090,200402 +106833,413,11,125700,1595114 +106834,234,1,195522,102303 +106835,413,11,11879,10853 +106836,234,1,13934,225976 +106837,234,1,77877,33433 +106838,234,1,30943,140354 +106839,273,7,31555,91245 +106840,234,1,48775,1171055 +106841,413,11,1589,10935 +106842,388,9,18843,1438601 +106843,317,10,76115,1122355 +106844,415,3,42764,1309440 +106845,77,10,1381,16836 +106846,273,7,26503,14138 +106847,234,1,2929,28968 +106848,158,2,298,1392143 +106849,148,9,14537,1547578 +106850,3,5,43434,4404 +106851,333,2,112961,1537964 +106852,226,2,19053,551924 +106853,105,7,1922,19988 +106854,5,10,1984,15870 +106855,270,9,6972,1401672 +106856,234,1,287281,114109 +106857,3,5,12536,72703 +106858,3,5,331962,1024291 +106859,182,8,15440,1412140 +106860,141,7,1966,557706 +106861,164,3,131737,1542372 +106862,415,3,43143,18758 +106863,234,1,106739,1135637 +106864,317,10,69401,81085 +106865,289,6,378236,1677223 +106866,20,2,306966,1748599 +106867,158,2,41283,1440307 +106868,188,8,435,1547235 +106869,53,2,635,4189 +106870,333,2,76465,4128 +106871,387,10,3072,102429 +106872,262,6,184345,111895 +106873,53,2,73262,1275132 +106874,413,11,88273,782144 +106875,349,1,10948,1615256 +106876,413,11,45577,133243 +106877,3,5,403867,1057049 +106878,413,11,394668,1611357 +106879,53,2,37581,11491 +106880,226,2,13380,1753069 +106881,77,10,10596,65791 +106882,269,9,31880,11412 +106883,203,1,33314,1402047 +106884,209,7,11688,1814098 +106885,234,1,29260,2087 +106886,317,10,36960,1510940 +106887,373,7,109424,1395024 +106888,387,10,146216,112948 +106889,387,10,4146,34999 +106890,415,3,51947,1649543 +106891,360,3,329289,1548029 +106892,269,9,31947,9918 +106893,234,1,14411,52870 +106894,234,1,11379,18179 +106895,234,1,11895,14987 +106896,72,11,403,29380 +106897,268,7,169881,40470 +106898,373,7,6947,92377 +106899,317,10,30478,1057777 +106900,60,1,11645,1021564 +106901,273,7,336004,1015903 +106902,3,5,13685,5667 +106903,298,5,12113,1404244 +106904,398,9,2666,1392684 +106905,204,9,37481,1048633 +106906,317,10,101006,1002601 +106907,234,1,172004,1044732 +106908,39,3,16442,1003623 +106909,413,11,257912,49809 +106910,317,10,79869,147207 +106911,3,5,40985,13809 +106912,340,2,283995,1815816 +106913,250,11,284564,1445854 +106914,64,6,365222,1590387 +106915,234,1,57965,227239 +106916,286,3,108535,5556 +106917,148,9,9785,60714 +106918,3,5,10871,11409 +106919,234,1,10467,9168 +106920,413,11,309024,1154242 +106921,60,1,63825,123066 +106922,204,9,69165,1287812 +106923,62,3,11024,1408190 +106924,161,6,421365,1703768 +106925,273,7,765,11468 +106926,52,10,95169,119392 +106927,13,9,363413,1521300 +106928,317,10,53950,141383 +106929,64,6,55563,1149271 +106930,234,1,250535,41041 +106931,234,1,398289,2679 +106932,269,9,233487,1308343 +106933,317,10,91679,1252008 +106934,203,1,5551,1377140 +106935,234,1,40346,57617 +106936,52,10,6591,14268 +106937,317,10,41469,37948 +106938,317,10,5413,25598 +106939,273,7,30127,1799719 +106940,273,7,10003,5912 +106941,273,7,868,13082 +106942,60,1,27966,118448 +106943,293,2,58244,1618801 +106944,105,7,53223,7182 +106945,387,10,365942,34050 +106946,234,1,191562,81676 +106947,317,10,102841,1460721 +106948,53,2,9563,7418 +106949,175,5,42309,1377418 +106950,413,11,15788,1432108 +106951,387,10,38792,35318 +106952,413,11,252171,1409026 +106953,217,3,36489,43863 +106954,30,5,274857,1404244 +106955,394,7,45273,554887 +106956,179,2,369885,1338231 +106957,187,11,201085,1335182 +106958,269,9,130055,6031 +106959,387,10,8429,4410 +106960,200,3,312221,1401891 +106961,60,1,126516,1334742 +106962,398,9,143946,1547494 +106963,262,6,13616,1586588 +106964,317,10,257081,556858 +106965,22,9,7326,1866786 +106966,160,3,9358,1407839 +106967,360,3,206647,1551771 +106968,204,9,361146,1674626 +106969,234,1,12920,53176 +106970,3,5,253484,1209324 +106971,413,11,147722,14649 +106972,148,9,16806,906 +106973,413,11,11113,2773 +106974,81,3,14,1595472 +106975,413,11,7353,52750 +106976,234,1,3089,30293 +106977,234,1,59722,1362796 +106978,413,11,109251,2033 +106979,317,10,279543,1202963 +106980,234,1,73896,31336 +106981,411,9,256962,9821 +106982,398,9,9568,1546554 +106983,317,10,377587,119419 +106984,317,10,78789,1311778 +106985,269,9,56669,22008 +106986,373,7,173153,1337461 +106987,77,10,539,7299 +106988,269,9,327383,1143451 +106989,373,7,131737,117238 +106990,269,9,45431,550896 +106991,387,10,966,6835 +106992,387,10,37084,40166 +106993,250,11,76163,1377137 +106994,105,7,62046,41674 +106995,333,2,63360,1535779 +106996,234,1,1912,3722 +106997,53,2,71805,936664 +106998,203,1,76312,1266463 +106999,413,11,381032,1409026 +107000,303,3,10145,11113 +107001,209,7,43727,1412332 +107002,148,9,270383,1109358 +107003,182,8,241239,1401997 +107004,209,7,9032,1613970 +107005,234,1,28320,135439 +107006,387,10,56853,236588 +107007,273,7,69974,557667 +107008,209,7,19754,1807830 +107009,148,9,72431,15733 +107010,387,10,43880,26159 +107011,60,1,47324,1620547 +107012,105,7,3102,30400 +107013,273,7,21950,1780477 +107014,234,1,81313,591420 +107015,317,10,32286,61681 +107016,97,7,70670,1336914 +107017,234,1,76422,55257 +107018,234,1,125705,55152 +107019,234,1,103014,14692 +107020,3,5,13701,307 +107021,387,10,336004,1436974 +107022,317,10,70586,131413 +107023,5,10,41142,125623 +107024,97,7,302026,1392958 +107025,52,10,20438,99591 +107026,234,1,165402,110227 +107027,262,6,283445,1391693 +107028,234,1,45219,11528 +107029,387,10,1375,16483 +107030,5,10,91380,24767 +107031,176,3,9426,1445979 +107032,3,5,242224,1381419 +107033,234,1,41923,263284 +107034,273,7,64805,552977 +107035,204,9,57419,1601702 +107036,234,1,14885,77488 +107037,52,10,168676,44789 +107038,405,8,9928,1805175 +107039,53,2,325173,1516801 +107040,317,10,14843,1016700 +107041,25,2,28437,30974 +107042,204,9,3051,196995 +107043,373,7,273481,1368866 +107044,158,2,10796,1532723 +107045,200,3,245703,1407019 +107046,413,11,11859,18387 +107047,333,2,81541,1586001 +107048,187,11,203833,1394716 +107049,317,10,26809,137195 +107050,40,1,227306,7531 +107051,411,9,301875,1614966 +107052,273,7,224944,1423357 +107053,234,1,9071,6400 +107054,200,3,15613,1442512 +107055,413,11,3537,9163 +107056,234,1,30669,1004171 +107057,413,11,126090,1334942 +107058,53,2,294652,1431572 +107059,51,9,578,8573 +107060,403,10,315465,81718 +107061,234,1,8985,941580 +107062,314,2,12499,1437273 +107063,273,7,75229,440646 +107064,273,7,69560,58289 +107065,387,10,4248,35751 +107066,387,10,7837,52985 +107067,387,10,858,9248 +107068,413,11,358982,1509630 +107069,67,10,2300,91768 +107070,387,10,140509,1342697 +107071,317,10,33250,11368 +107072,317,10,82865,11806 +107073,77,10,7459,70216 +107074,3,5,13798,1565800 +107075,234,1,162056,72477 +107076,269,9,146238,958691 +107077,234,1,145051,80577 +107078,413,11,9102,52093 +107079,262,6,263115,1673231 +107080,269,9,131966,1178592 +107081,5,10,12182,71549 +107082,234,1,17687,14643 +107083,413,11,8247,11657 +107084,52,10,396643,1170143 +107085,187,7,193893,1380443 +107086,317,10,76380,280812 +107087,269,9,39013,7439 +107088,317,10,319924,61244 +107089,182,8,10529,1303155 +107090,270,9,46261,1425383 +107091,333,2,270403,1594819 +107092,234,1,540,7312 +107093,273,7,19995,1729 +107094,53,2,47143,957442 +107095,148,9,19665,1437912 +107096,387,10,831,12342 +107097,113,9,12103,1401283 +107098,181,7,16996,1551727 +107099,53,2,52440,14867 +107100,52,10,353326,1766500 +107101,32,8,37628,1619355 +107102,387,10,9443,14957 +107103,314,2,244786,1437191 +107104,45,9,1690,1334494 +107105,234,1,413430,213449 +107106,148,9,11003,1496657 +107107,413,11,118283,102784 +107108,5,10,1443,17229 +107109,387,10,10632,52943 +107110,277,3,120977,1368063 +107111,349,1,9325,1557777 +107112,3,5,694,2286 +107113,87,7,336890,1529602 +107114,175,5,333371,1393859 +107115,413,11,15143,23914 +107116,317,10,329216,131765 +107117,377,3,8870,1724246 +107118,387,10,43792,132800 +107119,5,10,359413,1590181 +107120,203,1,183412,1419645 +107121,273,7,44000,29056 +107122,333,2,62728,1896007 +107123,413,11,285,1721 +107124,175,5,277713,1609171 +107125,413,11,18908,1150425 +107126,53,2,693,10397 +107127,273,7,121923,13301 +107128,20,2,353728,1699371 +107129,148,9,20126,1625520 +107130,387,10,145247,74730 +107131,53,2,253235,7735 +107132,53,2,18971,1788582 +107133,317,10,21435,35137 +107134,226,2,11697,50580 +107135,381,9,1647,1419251 +107136,387,10,28304,30295 +107137,99,3,5206,6155 +107138,60,1,578,1416440 +107139,143,7,181533,113054 +107140,234,1,75142,96372 +107141,234,1,14666,63462 +107142,234,1,44047,130106 +107143,269,9,13542,1300832 +107144,413,11,2978,7068 +107145,32,8,11618,1765800 +107146,317,10,151068,562326 +107147,269,9,44754,7496 +107148,182,8,315335,1573340 +107149,234,1,206296,2163 +107150,75,5,205864,1603894 +107151,413,11,10973,2920 +107152,75,5,17295,557153 +107153,373,7,26656,1404840 +107154,105,7,58159,5466 +107155,234,1,211166,237884 +107156,346,3,15092,1409283 +107157,269,9,1721,29502 +107158,269,9,28,2875 +107159,209,7,256347,1547678 +107160,179,2,68737,1320977 +107161,87,7,41733,52161 +107162,250,11,10733,1418487 +107163,204,9,32088,10323 +107164,328,6,167,1392101 +107165,273,7,11321,59665 +107166,415,3,44655,1302495 +107167,52,10,294272,67428 +107168,317,10,71140,106244 +107169,41,3,14430,1521701 +107170,273,7,74126,125001 +107171,413,11,1690,7184 +107172,234,1,330011,1439930 +107173,234,1,35026,35959 +107174,234,1,51999,3055 +107175,413,11,7353,6453 +107176,413,11,3513,32348 +107177,148,9,4147,555 +107178,409,7,442752,1761917 +107179,52,10,53211,362742 +107180,234,1,21752,8568 +107181,413,11,53209,29971 +107182,269,9,30478,1057777 +107183,160,3,11618,1401363 +107184,387,10,2349,16227 +107185,53,2,413547,1718140 +107186,187,11,1271,1394747 +107187,234,1,87936,73256 +107188,204,9,207641,1269247 +107189,3,5,392818,1614894 +107190,317,10,25538,143035 +107191,413,11,390,5272 +107192,52,10,52302,1175699 +107193,273,7,179847,1536607 +107194,3,5,50073,119535 +107195,333,2,10921,1402105 +107196,187,11,22317,16593 +107197,45,9,302699,1729096 +107198,75,5,9428,11113 +107199,262,6,354859,1340352 +107200,77,10,1942,1173720 +107201,60,1,382155,1636677 +107202,236,8,251227,1286578 +107203,105,7,345438,223986 +107204,269,9,1942,12243 +107205,105,7,72602,1349487 +107206,75,5,13616,1458445 +107207,77,10,10761,13615 +107208,269,9,110573,10473 +107209,328,6,2567,1169459 +107210,3,5,5421,31775 +107211,304,10,31977,1447042 +107212,52,10,31275,931669 +107213,75,5,351211,1399068 +107214,327,7,12103,1555702 +107215,234,1,47535,1222374 +107216,413,11,19594,53344 +107217,239,5,140607,1550793 +107218,328,6,378441,1448317 +107219,317,10,24757,23799 +107220,234,1,32610,95293 +107221,317,10,292387,1363530 +107222,234,1,372640,225887 +107223,34,8,9425,1538440 +107224,3,5,12506,11847 +107225,3,5,363757,70237 +107226,317,10,49060,15207 +107227,15,6,274857,1829862 +107228,97,7,10999,1338833 +107229,387,10,118134,32994 +107230,143,7,910,4315 +107231,273,7,2293,12939 +107232,269,9,256962,16404 +107233,3,5,131475,1074053 +107234,234,1,77068,1053404 +107235,3,5,13561,74655 +107236,67,10,15213,1447317 +107237,40,1,544,7409 +107238,387,10,290999,1361546 +107239,399,9,13205,1461382 +107240,413,11,17770,56972 +107241,75,5,354859,1437269 +107242,387,10,1942,65251 +107243,3,5,310119,4185 +107244,317,10,43231,15127 +107245,306,7,329865,17427 +107246,179,2,312221,1544543 +107247,239,5,293660,1580846 +107248,209,7,201085,1572863 +107249,3,5,289,2005 +107250,333,2,59197,1331445 +107251,196,7,297762,117241 +107252,10,3,27739,98867 +107253,387,10,28577,139930 +107254,387,10,4476,21864 +107255,226,2,6972,1401642 +107256,52,10,259997,1302508 +107257,234,1,47186,17277 +107258,148,9,18776,1198731 +107259,273,7,62441,6377 +107260,397,7,325803,1428039 +107261,387,10,4529,37775 +107262,3,5,779,11577 +107263,179,2,2567,1328380 +107264,160,3,16096,558896 +107265,234,1,64129,33064 +107266,53,2,353462,37298 +107267,234,1,103539,1131832 +107268,176,3,370264,1542299 +107269,5,10,55846,563752 +107270,136,1,263115,1757624 +107271,161,6,9716,1401722 +107272,413,11,104744,46230 +107273,105,7,19912,6041 +107274,234,1,11425,1060 +107275,387,10,50725,111943 +107276,148,9,9070,1575727 +107277,250,11,205584,32806 +107278,317,10,226167,64157 +107279,327,7,230179,1512664 +107280,273,7,64605,21810 +107281,387,10,369524,1254 +107282,413,11,54093,97055 +107283,317,10,79816,1273533 +107284,250,11,318781,1391088 +107285,234,1,360592,1512110 +107286,143,7,383538,1783013 +107287,387,10,55370,15389 +107288,234,1,317114,225586 +107289,203,1,364690,1526969 +107290,273,7,508,7045 +107291,234,1,145244,33806 +107292,328,6,127372,1431512 +107293,127,3,214756,1457943 +107294,3,5,286873,61851 +107295,105,7,248933,36105 +107296,317,10,63736,112019 +107297,53,2,9464,17854 +107298,273,7,9598,58065 +107299,413,11,31275,1031151 +107300,234,1,9624,23880 +107301,234,1,50073,14643 +107302,92,7,21159,91802 +107303,53,2,26941,92207 +107304,234,1,75626,1173144 +107305,3,5,1278,16334 +107306,3,5,20342,232804 +107307,387,10,43155,29756 +107308,127,3,814,1600363 +107309,273,7,109213,947 +107310,234,1,41493,224825 +107311,317,10,23830,90607 +107312,3,5,5955,8969 +107313,3,5,254869,27043 +107314,234,1,175027,31497 +107315,158,2,373546,1869441 +107316,387,10,89086,116326 +107317,234,1,13842,85475 +107318,3,5,34977,9057 +107319,3,5,376660,929987 +107320,234,1,84337,116326 +107321,387,10,8856,61 +107322,387,10,1956,5216 +107323,204,9,27034,13572 +107324,333,2,38775,98164 +107325,204,9,20242,2396 +107326,226,2,21786,1336910 +107327,3,5,407559,1279803 +107328,287,3,15762,11419 +107329,413,11,157354,1141734 +107330,123,3,118408,118078 +107331,58,2,33586,1815005 +107332,234,1,300424,105642 +107333,304,10,53767,1042632 +107334,269,9,224,1610116 +107335,234,1,74922,41111 +107336,204,9,9289,12495 +107337,413,11,31027,1361 +107338,158,2,284052,1347751 +107339,108,10,120676,27916 +107340,105,7,160261,174547 +107341,161,6,1586,1578662 +107342,3,5,401164,1595005 +107343,97,7,408616,1403800 +107344,234,1,84340,113373 +107345,234,1,169656,17554 +107346,196,7,87826,1401135 +107347,226,2,13965,15330 +107348,245,3,76788,1640253 +107349,234,1,52454,97901 +107350,234,1,11328,21183 +107351,387,10,20153,3599 +107352,413,11,188598,1368193 +107353,234,1,170936,202174 +107354,234,1,73612,1050728 +107355,234,1,43904,142865 +107356,317,10,28452,100846 +107357,204,9,58076,132251 +107358,413,11,42345,16751 +107359,204,9,37103,10641 +107360,104,7,71859,1547458 +107361,317,10,76101,1082054 +107362,333,2,2805,1653578 +107363,234,1,185273,30833 +107364,317,10,27150,582087 +107365,373,7,37936,1554594 +107366,3,5,207636,98006 +107367,19,3,152989,1171588 +107368,3,5,910,13972 +107369,179,2,145135,937956 +107370,273,7,8391,39827 +107371,53,2,3037,4223 +107372,234,1,96552,1127753 +107373,143,7,334,1341403 +107374,169,3,10929,1408780 +107375,245,3,392271,8311 +107376,317,10,39510,1037807 +107377,234,1,2974,2991 +107378,105,7,29345,1269839 +107379,196,7,11547,1407879 +107380,387,10,43434,134415 +107381,273,7,28586,88643 +107382,262,6,332567,1395027 +107383,27,3,11024,1673527 +107384,169,3,237584,1085298 +107385,180,7,10484,1179785 +107386,234,1,45098,144410 +107387,234,1,356757,1501786 +107388,5,10,42619,1127734 +107389,273,7,55433,222355 +107390,113,9,77338,1724196 +107391,273,7,9968,5666 +107392,234,1,79008,14773 +107393,72,11,330459,1408401 +107394,143,7,86820,930008 +107395,419,10,137491,4137 +107396,262,6,70667,1448320 +107397,5,10,51267,60618 +107398,413,11,102384,231263 +107399,269,9,147939,1127740 +107400,187,11,381015,1444289 +107401,317,10,13763,58729 +107402,105,7,104211,1071172 +107403,317,10,417870,40589 +107404,317,10,22476,88832 +107405,3,5,118991,2596 +107406,175,5,5551,1538430 +107407,52,10,14073,78751 +107408,172,3,693,1761077 +107409,286,3,174188,57668 +107410,387,10,250638,1674845 +107411,398,9,79593,1378224 +107412,234,1,28668,12011 +107413,234,1,452606,121422 +107414,221,3,9893,1559615 +107415,317,10,54548,36466 +107416,203,1,1049,1393455 +107417,204,9,398786,1265981 +107418,34,8,177677,1422984 +107419,286,3,241254,30057 +107420,419,10,77625,17167 +107421,187,11,334,136008 +107422,234,1,36075,138865 +107423,234,1,320588,22215 +107424,52,10,250574,1155547 +107425,387,10,369883,1371386 +107426,277,3,68715,1543976 +107427,234,1,194104,1088582 +107428,413,11,4011,6900 +107429,317,10,63615,237583 +107430,3,5,11848,70712 +107431,413,11,43889,131411 +107432,357,3,19995,1483227 +107433,87,7,365942,1722487 +107434,3,5,20536,7067 +107435,317,10,33592,95462 +107436,387,10,29355,1176556 +107437,52,10,14782,484466 +107438,3,5,3115,30562 +107439,53,2,356500,1756284 +107440,52,10,109329,1362029 +107441,317,10,49689,563341 +107442,317,10,354133,1496095 +107443,333,2,414977,1676789 +107444,317,10,31397,119373 +107445,413,11,12637,2046 +107446,234,1,8329,54526 +107447,234,1,32085,510 +107448,5,10,41402,74397 +107449,190,7,238589,1345261 +107450,317,10,55197,95501 +107451,287,3,28155,50726 +107452,333,2,5289,1352923 +107453,234,1,60014,89193 +107454,239,5,2009,1557060 +107455,273,7,1659,18400 +107456,3,5,26971,96695 +107457,270,9,15613,119064 +107458,317,10,440508,1844146 +107459,234,1,199647,1179821 +107460,104,7,4011,1551213 +107461,204,9,857,1322142 +107462,182,8,284289,1425824 +107463,413,11,635,9163 +107464,234,1,258509,68573 +107465,387,10,163706,87267 +107466,387,10,31472,29885 +107467,77,10,1058,1650 +107468,387,10,70351,1417080 +107469,317,10,10109,63577 +107470,3,5,122081,14599 +107471,413,11,381008,1784757 +107472,179,2,283686,1492133 +107473,234,1,2323,23968 +107474,328,6,241927,1585355 +107475,3,5,354979,1538782 +107476,293,2,10529,1567305 +107477,317,10,29128,104211 +107478,127,3,9297,95747 +107479,234,1,21214,52422 +107480,182,8,41283,1440304 +107481,97,7,2300,9444 +107482,203,1,84735,1459591 +107483,102,3,8470,1598755 +107484,286,3,57749,979175 +107485,234,1,166076,1225820 +107486,234,1,83229,257772 +107487,262,6,202214,1362710 +107488,304,10,80539,237971 +107489,328,6,9042,1409234 +107490,187,11,857,1537139 +107491,105,7,371942,1547208 +107492,64,6,58,1454884 +107493,3,5,197297,1200606 +107494,105,7,11930,8806 +107495,204,9,94009,1128245 +107496,3,5,34205,25361 +107497,3,5,266285,65882 +107498,234,1,222339,105084 +107499,277,3,25673,9106 +107500,269,9,17258,19045 +107501,234,1,36758,10757 +107502,415,3,42764,1766562 +107503,388,9,9532,1441246 +107504,234,1,320736,18823 +107505,289,6,149870,1456620 +107506,317,10,73160,930137 +107507,234,1,11859,70850 +107508,317,10,36615,126519 +107509,181,7,140846,135012 +107510,226,2,1073,957264 +107511,387,10,42216,41712 +107512,232,10,33367,111687 +107513,53,2,26688,1319382 +107514,262,6,334074,1355964 +107515,3,5,244,3252 +107516,203,1,99698,1606181 +107517,234,1,27034,93975 +107518,317,10,13929,7930 +107519,187,11,1966,1398095 +107520,373,7,45562,999564 +107521,269,9,94348,1328411 +107522,5,10,31922,1160543 +107523,413,11,63773,1423659 +107524,413,11,57996,16325 +107525,196,7,188927,1360099 +107526,113,9,857,15328 +107527,75,5,2503,1406840 +107528,317,10,31417,1019435 +107529,273,7,54146,1089019 +107530,234,1,11647,66718 +107531,262,6,1966,1398103 +107532,413,11,352197,6406 +107533,333,2,34084,29813 +107534,143,7,13380,117468 +107535,303,3,1833,5582 +107536,182,8,339994,1706512 +107537,105,7,15486,77572 +107538,413,11,39413,1136 +107539,53,2,38978,1619131 +107540,387,10,411741,970777 +107541,234,1,140485,1112586 +107542,77,10,10087,63122 +107543,234,1,345915,90542 +107544,53,2,5,46589 +107545,387,10,99875,33166 +107546,357,3,293167,1460624 +107547,413,11,117120,1437955 +107548,3,5,1942,20105 +107549,262,6,4248,1271061 +107550,3,5,167707,1289856 +107551,387,10,77915,11993 +107552,3,5,17473,1085780 +107553,273,7,252102,983343 +107554,234,1,60307,33183 +107555,127,3,116463,1691470 +107556,75,5,29136,1421739 +107557,286,3,41441,1307613 +107558,317,10,192137,1366808 +107559,387,10,41733,127148 +107560,333,2,42837,32002 +107561,209,7,10804,1425513 +107562,273,7,10134,62272 +107563,387,10,42215,1081861 +107564,53,2,379019,1780180 +107565,394,7,206647,1404212 +107566,72,11,222935,1726771 +107567,127,3,220,2762 +107568,262,6,373546,1869451 +107569,105,7,47194,1351476 +107570,273,7,10917,13669 +107571,234,1,145925,252740 +107572,413,11,10950,8425 +107573,413,11,2898,3175 +107574,5,10,54406,150540 +107575,273,7,621,1485825 +107576,325,5,2503,1405196 +107577,234,1,33407,110597 +107578,234,1,12483,61824 +107579,204,9,28293,11036 +107580,286,3,62441,1147899 +107581,273,7,393134,67265 +107582,273,7,64792,21690 +107583,273,7,11502,12013 +107584,64,6,22582,1229003 +107585,387,10,12584,72991 +107586,160,3,13075,155535 +107587,87,7,262338,1528013 +107588,148,9,16066,79148 +107589,317,10,43211,129336 +107590,3,5,20644,16750 +107591,413,11,3055,14962 +107592,273,7,82191,51883 +107593,3,5,10727,40268 +107594,234,1,24258,91455 +107595,413,11,16410,93959 +107596,388,9,245700,1434865 +107597,204,9,10193,1290451 +107598,209,7,17771,1425513 +107599,198,6,294272,1660726 +107600,234,1,70368,8636 +107601,387,10,137200,1106987 +107602,269,9,109614,1324181 +107603,77,10,13680,36805 +107604,204,9,9819,60014 +107605,387,10,87302,1185041 +107606,373,7,59962,16177 +107607,317,10,229702,962580 +107608,387,10,51209,227091 +107609,286,3,86413,933249 +107610,234,1,82999,557359 +107611,317,10,252916,1062874 +107612,143,7,560,7654 +107613,289,6,1724,1453022 +107614,204,9,714,10754 +107615,333,2,39407,29813 +107616,105,7,57983,130879 +107617,301,5,302528,1704986 +107618,203,1,356500,1736954 +107619,94,5,11377,1395278 +107620,234,1,38327,89193 +107621,413,11,256962,59473 +107622,203,1,12103,1402039 +107623,3,5,3423,32319 +107624,360,3,12102,1380036 +107625,53,2,84333,1397713 +107626,3,5,91607,14536 +107627,317,10,315439,1191478 +107628,317,10,108177,84075 +107629,413,11,251421,31255 +107630,105,7,39347,227205 +107631,234,1,13075,96222 +107632,234,1,11056,54525 +107633,174,6,40466,1271061 +107634,317,10,140222,66258 +107635,387,10,24442,70495 +107636,52,10,164331,42309 +107637,234,1,270403,51084 +107638,234,1,27523,87267 +107639,269,9,339408,32403 +107640,234,1,79113,62081 +107641,204,9,43548,1355549 +107642,204,9,140607,1546028 +107643,317,10,319986,1430946 +107644,3,5,100088,1762 +107645,234,1,156277,41887 +107646,60,1,118,8275 +107647,5,10,20213,553223 +107648,187,11,1428,1204836 +107649,287,3,47342,50726 +107650,244,3,77930,63190 +107651,394,7,9946,1511086 +107652,234,1,345438,566999 +107653,53,2,272693,1192579 +107654,413,11,9425,3961 +107655,187,11,168259,1342658 +107656,53,2,36094,8868 +107657,398,9,9568,1546555 +107658,355,11,12,1556647 +107659,3,5,301272,70237 +107660,53,2,9828,1019814 +107661,413,11,11618,493 +107662,160,3,7299,1433735 +107663,236,8,11370,1581150 +107664,360,3,8619,1377215 +107665,314,2,1073,1746553 +107666,203,1,10733,1015925 +107667,317,10,316170,28256 +107668,52,10,112130,1059461 +107669,262,6,302828,1103572 +107670,234,1,212996,123195 +107671,250,11,278632,1582618 +107672,398,9,10708,1378224 +107673,179,2,287903,1583553 +107674,53,2,309581,40444 +107675,327,7,39995,58104 +107676,203,1,3172,1355532 +107677,273,7,36094,491 +107678,287,3,40060,101427 +107679,286,3,111479,1493533 +107680,387,10,3782,7449 +107681,192,5,1579,1400347 +107682,387,10,29343,103567 +107683,204,9,145481,14005 +107684,226,2,19912,1441380 +107685,413,11,65787,103182 +107686,273,7,57597,1522886 +107687,208,2,19901,1391708 +107688,105,7,126832,1386589 +107689,187,11,72105,1345596 +107690,5,10,20646,1529772 +107691,301,5,141,96746 +107692,333,2,522,1293492 +107693,317,10,277968,17055 +107694,3,5,36220,70810 +107695,155,3,2898,67994 +107696,148,9,9905,34005 +107697,387,10,248469,50961 +107698,127,3,435,6064 +107699,60,1,29959,172983 +107700,317,10,19325,106825 +107701,413,11,461955,62907 +107702,317,10,21001,86982 +107703,213,10,198227,1404940 +107704,327,7,393562,1669177 +107705,234,1,173847,1156668 +107706,234,1,18651,83399 +107707,234,1,6076,1844 +107708,360,3,9529,1334400 +107709,3,5,185111,1059557 +107710,148,9,41857,9587 +107711,148,9,21132,1467550 +107712,203,1,348631,1865204 +107713,239,5,325039,1409243 +107714,199,3,189,2293 +107715,269,9,260312,1123355 +107716,273,7,99351,72066 +107717,394,7,1278,16343 +107718,5,10,2897,2088 +107719,134,3,140607,11092 +107720,127,3,12103,9436 +107721,317,10,384682,52114 +107722,53,2,38715,9064 +107723,234,1,16092,79279 +107724,5,10,30060,70665 +107725,234,1,121674,10723 +107726,53,2,111582,4350 +107727,413,11,9264,57068 +107728,413,11,127585,9039 +107729,148,9,9846,7148 +107730,413,11,31548,2920 +107731,317,10,291865,78545 +107732,53,2,118991,60479 +107733,53,2,10265,64495 +107734,273,7,10333,1213 +107735,234,1,358895,3026 +107736,52,10,16417,80524 +107737,204,9,28452,1643877 +107738,387,10,58905,29756 +107739,394,7,185460,1427797 +107740,204,9,987,369 +107741,387,10,118,1299 +107742,269,9,389630,1417680 +107743,234,1,33511,1137903 +107744,387,10,43213,566315 +107745,234,1,69610,556839 +107746,234,1,430826,1731915 +107747,399,9,12593,1458347 +107748,376,10,85640,543946 +107749,387,10,92341,1010628 +107750,148,9,2135,6055 +107751,269,9,17464,81893 +107752,289,6,19594,1460472 +107753,204,9,25407,41710 +107754,204,9,3291,6922 +107755,234,1,42579,72191 +107756,234,1,5491,5058 +107757,234,1,240334,1156445 +107758,52,10,274857,42994 +107759,3,5,430834,1357065 +107760,413,11,442752,124281 +107761,317,10,37702,57607 +107762,413,11,28176,1217 +107763,317,10,100910,11993 +107764,306,7,809,1401687 +107765,234,1,19725,40940 +107766,208,2,340275,1732091 +107767,413,11,45522,31931 +107768,286,3,47120,28620 +107769,243,3,7551,1336716 +107770,333,2,11137,1090150 +107771,234,1,43641,89596 +107772,226,2,11137,1409755 +107773,182,8,22784,1559397 +107774,317,10,352036,1099717 +107775,213,10,73835,42041 +107776,413,11,250574,1435170 +107777,317,10,19294,84438 +107778,387,10,411741,1667325 +107779,234,1,13529,14598 +107780,234,1,232462,116930 +107781,273,7,58076,17667 +107782,111,7,10590,13170 +107783,273,7,11547,19659 +107784,234,1,255898,127123 +107785,234,1,378441,1362645 +107786,273,7,175331,41572 +107787,330,3,163,1629541 +107788,53,2,45610,1311133 +107789,387,10,28969,117097 +107790,333,2,9946,1431996 +107791,3,5,40221,11506 +107792,234,1,24821,111532 +107793,148,9,36375,12349 +107794,45,9,59419,1526963 +107795,169,3,403,74783 +107796,226,2,245168,1437622 +107797,387,10,357706,1504437 +107798,234,1,45693,92554 +107799,234,1,278632,143056 +107800,289,6,65973,122767 +107801,269,9,1689,11386 +107802,413,11,37083,51378 +107803,209,7,9543,1337411 +107804,3,5,25918,1940 +107805,317,10,177335,72554 +107806,234,1,288259,219783 +107807,360,3,24397,1385935 +107808,148,9,15661,1122387 +107809,387,10,42149,1152 +107810,317,10,75446,219239 +107811,136,1,266285,1475319 +107812,317,10,37050,112194 +107813,413,11,67748,10762 +107814,273,7,55347,30872 +107815,3,5,111302,98006 +107816,60,1,2323,1614186 +107817,53,2,38922,5634 +107818,3,5,55152,14944 +107819,273,7,27973,8503 +107820,234,1,179398,1161989 +107821,60,1,197849,1354656 +107822,234,1,34459,112400 +107823,398,9,77459,998577 +107824,196,7,10724,1401259 +107825,232,10,29259,35585 +107826,327,7,9877,91891 +107827,105,7,63859,50239 +107828,203,1,340190,1485172 +107829,218,1,121923,1867961 +107830,333,2,70981,25060 +107831,415,3,273481,1397876 +107832,413,11,46247,40138 +107833,234,1,402536,1141078 +107834,273,7,224,2802 +107835,317,10,112456,973712 +107836,20,2,225728,1568547 +107837,234,1,1859,2428 +107838,209,7,29161,1188976 +107839,234,1,61533,87776 +107840,239,5,11202,65238 +107841,269,9,49577,1687754 +107842,286,3,51971,1877270 +107843,373,7,9664,1395024 +107844,3,5,18939,133553 +107845,234,1,195561,1037658 +107846,250,11,75174,1418443 +107847,148,9,32021,66224 +107848,398,9,2666,1392681 +107849,204,9,42499,1129789 +107850,413,11,103012,1728379 +107851,413,11,184345,61126 +107852,333,2,10543,112656 +107853,87,7,2300,26264 +107854,105,7,63958,238315 +107855,39,3,26936,146656 +107856,273,7,228339,1277408 +107857,333,2,9314,1749142 +107858,234,1,59838,148601 +107859,196,7,6171,1367494 +107860,412,9,8470,1598736 +107861,317,10,206292,1188735 +107862,250,11,204922,1408403 +107863,40,1,755,71901 +107864,269,9,11134,26763 +107865,317,10,78522,99415 +107866,5,10,42634,1367580 +107867,3,5,11175,68453 +107868,413,11,329724,928257 +107869,234,1,80717,71203 +107870,53,2,366566,971722 +107871,286,3,29043,131446 +107872,317,10,438634,1748697 +107873,273,7,10849,20967 +107874,53,2,1726,962467 +107875,317,10,32934,133090 +107876,273,7,235208,12455 +107877,3,5,35405,40052 +107878,203,1,8247,1449183 +107879,317,10,71376,216662 +107880,72,11,181533,1580853 +107881,148,9,193756,2529 +107882,273,7,94365,137188 +107883,413,11,329712,7294 +107884,75,5,51250,1721876 +107885,209,7,41733,1394307 +107886,269,9,29449,32772 +107887,250,11,70074,1407372 +107888,182,8,325173,1411317 +107889,333,2,15762,1281588 +107890,23,9,24731,22061 +107891,333,2,5289,1409729 +107892,413,11,141145,54260 +107893,204,9,1382,53901 +107894,5,10,31592,103736 +107895,387,10,11196,68554 +107896,317,10,172520,1155118 +107897,3,5,67531,30192 +107898,413,11,10567,15815 +107899,83,2,8619,229801 +107900,105,7,28290,1045 +107901,200,3,332567,1644258 +107902,175,5,11351,1399130 +107903,286,3,177572,149 +107904,5,10,9820,11920 +107905,333,2,11880,560223 +107906,317,10,81549,1087568 +107907,189,3,263115,1576866 +107908,317,10,678,14971 +107909,234,1,5559,44114 +107910,143,7,183412,1419633 +107911,3,5,73835,31607 +107912,53,2,21734,9064 +107913,234,1,38286,120025 +107914,387,10,288788,1360145 +107915,317,10,31221,1478534 +107916,234,1,438643,1508820 +107917,328,6,14254,1378763 +107918,210,9,26882,1773274 +107919,234,1,16249,5834 +107920,289,6,9023,1447594 +107921,269,9,20992,34712 +107922,317,10,183015,64417 +107923,273,7,246011,1158098 +107924,175,5,343173,1403760 +107925,179,2,8870,1330048 +107926,286,3,29805,40052 +107927,51,9,2300,1404761 +107928,413,11,42641,2894 +107929,53,2,18514,1192559 +107930,273,7,88558,70710 +107931,413,11,139519,23401 +107932,175,5,78802,1391699 +107933,234,1,68472,129945 +107934,273,7,6933,1075 +107935,387,10,38807,233667 +107936,3,5,4953,313 +107937,53,2,98094,1499905 +107938,127,3,2321,142158 +107939,234,1,9648,59438 +107940,289,6,291270,1584369 +107941,204,9,422,5681 +107942,387,10,12221,73758 +107943,234,1,31059,139467 +107944,413,11,269494,1452555 +107945,317,10,233423,1002603 +107946,234,1,204965,1187344 +107947,188,8,9882,108147 +107948,148,9,169,906 +107949,105,7,126832,1083256 +107950,203,1,82990,1190783 +107951,387,10,92635,928670 +107952,53,2,36968,61539 +107953,243,3,13205,1779868 +107954,394,7,3172,1552882 +107955,317,10,435041,1190421 +107956,269,9,329865,102873 +107957,273,7,134394,64156 +107958,317,10,16806,111905 +107959,317,10,49502,84235 +107960,64,6,38317,1439088 +107961,269,9,271714,21568 +107962,3,5,341886,1573321 +107963,396,3,14979,1396811 +107964,387,10,9820,17698 +107965,413,11,116554,1131561 +107966,97,7,195269,173146 +107967,3,5,8383,237107 +107968,208,2,10900,1099133 +107969,87,7,1550,17863 +107970,328,6,10070,1298770 +107971,60,1,43195,1090073 +107972,53,2,440508,1844156 +107973,87,7,12591,1560780 +107974,234,1,336549,99255 +107975,234,1,42023,19333 +107976,226,2,425774,1707976 +107977,244,3,1715,18790 +107978,333,2,20919,1423406 +107979,317,10,252853,1211913 +107980,3,5,1976,2774 +107981,234,1,287281,1353914 +107982,413,11,64942,1125482 +107983,304,10,14073,1035475 +107984,234,1,210052,1193607 +107985,317,10,229594,214417 +107986,53,2,5551,461 +107987,289,6,346672,1721327 +107988,47,8,42418,1827964 +107989,204,9,63858,29637 +107990,203,1,25241,1553113 +107991,291,6,267579,1583163 +107992,60,1,39048,1530554 +107993,226,2,3580,1418453 +107994,147,1,461955,1833827 +107995,148,9,98339,1324466 +107996,135,3,1624,1769325 +107997,273,7,328429,1041663 +107998,234,1,16806,57434 +107999,179,2,74,197020 +108000,403,10,245917,1261020 +108001,234,1,55628,29802 +108002,105,7,373541,1551691 +108003,306,7,23196,1712322 +108004,32,8,10320,1428210 +108005,105,7,16171,29415 +108006,180,7,46872,121201 +108007,122,8,246655,1713051 +108008,234,1,43812,21305 +108009,52,10,18998,1214085 +108010,413,11,17771,10752 +108011,273,7,29151,94275 +108012,3,5,6972,57849 +108013,3,5,396535,1294128 +108014,268,7,131737,1341737 +108015,360,9,241258,1639577 +108016,204,9,28510,1318091 +108017,273,7,28902,5581 +108018,387,10,11839,50577 +108019,3,5,132332,2579 +108020,317,10,173301,1196507 +108021,387,10,406052,80523 +108022,34,8,257088,1397073 +108023,148,9,1999,20541 +108024,234,1,52520,80924 +108025,304,10,37645,144845 +108026,387,10,16131,79414 +108027,317,10,21956,96338 +108028,413,11,352960,1383654 +108029,333,2,43491,4128 +108030,3,5,59828,14678 +108031,381,9,109424,1408372 +108032,234,1,228407,559566 +108033,333,2,357106,1502722 +108034,387,10,10611,66118 +108035,269,9,26390,3287 +108036,317,10,420703,1072789 +108037,158,2,72545,1722170 +108038,234,1,91266,1626260 +108039,269,9,27031,33132 +108040,357,3,19995,1426854 +108041,234,1,87302,107482 +108042,234,1,283711,1016305 +108043,234,1,198062,68574 +108044,413,11,25528,56725 +108045,269,9,265208,936841 +108046,53,2,169656,1726734 +108047,317,10,342588,1612327 +108048,413,11,343934,1475578 +108049,328,6,109439,1483836 +108050,53,2,19754,62164 +108051,52,10,140887,33692 +108052,105,7,198993,554494 +108053,105,7,315664,2949 +108054,317,10,343369,1357879 +108055,394,7,921,4849 +108056,273,7,2487,1270420 +108057,75,5,78802,1194062 +108058,301,5,46738,73613 +108059,105,7,241254,989610 +108060,273,7,101325,62558 +108061,180,7,91459,113450 +108062,226,2,983,14750 +108063,3,5,9787,5506 +108064,287,3,332567,1642833 +108065,148,9,127560,1191326 +108066,143,7,376501,1792359 +108067,77,10,9904,60209 +108068,317,10,16075,166268 +108069,75,5,84318,1084969 +108070,204,9,131764,8622 +108071,360,3,44943,1364406 +108072,208,2,345925,1393490 +108073,317,10,62783,143732 +108074,198,6,809,1401149 +108075,168,3,311324,1106260 +108076,387,10,192675,99710 +108077,373,7,324670,9423 +108078,148,9,18282,1561103 +108079,317,10,316885,1411880 +108080,148,9,405473,1747165 +108081,234,1,320061,1020742 +108082,53,2,41610,46416 +108083,99,3,38437,120452 +108084,167,3,46738,1409724 +108085,370,3,378441,1797400 +108086,234,1,25385,133259 +108087,325,5,146216,1552521 +108088,234,1,38794,121422 +108089,53,2,57993,4350 +108090,413,11,9803,36240 +108091,273,7,3937,34227 +108092,289,6,24554,91772 +108093,234,1,185460,95024 +108094,317,10,22023,1392052 +108095,234,1,8998,56539 +108096,413,11,418772,1252 +108097,169,3,1428,1851751 +108098,85,10,332794,1247993 +108099,333,2,219466,1640827 +108100,204,9,9428,1018480 +108101,3,5,27986,9081 +108102,273,7,9013,531 +108103,187,11,949,1406826 +108104,273,7,21159,4683 +108105,373,7,9016,83091 +108106,387,10,54105,150971 +108107,175,5,339403,1452675 +108108,141,7,15189,68016 +108109,204,9,39435,13864 +108110,317,10,13483,74569 +108111,317,10,83456,86861 +108112,3,5,12716,73723 +108113,328,6,132363,1396806 +108114,45,9,7326,1866785 +108115,3,5,237,3079 +108116,40,1,93856,53530 +108117,53,2,98125,4350 +108118,3,5,65898,9752 +108119,204,9,104556,11036 +108120,234,1,15979,76813 +108121,413,11,9483,19238 +108122,60,1,25953,178267 +108123,273,7,22396,44261 +108124,187,11,8276,1544412 +108125,20,2,330459,1434870 +108126,234,1,90086,28236 +108127,234,1,128089,591420 +108128,3,5,71329,69551 +108129,270,9,1579,1400335 +108130,234,1,13979,921570 +108131,269,9,356500,60870 +108132,413,11,295627,1368957 +108133,198,6,324670,1726034 +108134,269,9,44732,1396400 +108135,135,3,14,1753765 +108136,328,6,395992,1551894 +108137,273,7,11537,68673 +108138,365,6,425774,1707971 +108139,53,2,4147,8885 +108140,317,10,15089,77867 +108141,269,9,48145,6654 +108142,53,2,280030,1594810 +108143,77,10,9956,58867 +108144,3,5,173205,1523140 +108145,20,2,381015,1828352 +108146,381,9,102629,1429344 +108147,12,10,25528,934838 +108148,147,1,3059,9049 +108149,226,2,145481,1696254 +108150,204,9,377170,1132401 +108151,148,9,11358,35699 +108152,95,8,126889,1746441 +108153,75,5,2897,100332 +108154,34,8,1624,1870782 +108155,105,7,292656,1363886 +108156,317,10,73527,379584 +108157,413,11,7942,53361 +108158,413,11,12289,74035 +108159,273,7,17590,9796 +108160,413,11,511,7096 +108161,234,1,290999,1361546 +108162,387,10,966,7335 +108163,3,5,53209,8620 +108164,179,2,329289,1548032 +108165,317,10,363841,1522376 +108166,413,11,60935,8307 +108167,52,10,82178,1129957 +108168,3,5,122,1313 +108169,196,7,24624,1540858 +108170,197,5,365942,1738135 +108171,53,2,27622,9064 +108172,387,10,8906,13734 +108173,236,8,1966,1408361 +108174,387,10,23114,223106 +108175,5,10,17744,143184 +108176,287,3,9286,1404706 +108177,273,7,10622,66053 +108178,262,6,287903,1569340 +108179,196,7,56937,1412138 +108180,387,10,64942,944511 +108181,317,10,24816,120893 +108182,3,5,29610,104335 +108183,234,1,8281,54296 +108184,413,11,70436,971 +108185,3,5,71670,56503 +108186,234,1,91186,123199 +108187,415,3,198795,1610936 +108188,234,1,85125,931761 +108189,317,10,19255,84414 +108190,234,1,33015,8635 +108191,204,9,54227,31204 +108192,328,6,324670,1388873 +108193,387,10,109424,21807 +108194,317,10,115929,87905 +108195,221,3,10590,552471 +108196,269,9,94809,102116 +108197,234,1,31448,108079 +108198,187,11,72105,1425343 +108199,234,1,150208,110783 +108200,75,5,16444,12242 +108201,234,1,142881,142510 +108202,87,7,1877,42229 +108203,196,7,366045,1519461 +108204,317,10,14449,993812 +108205,234,1,34205,56263 +108206,301,5,57419,584902 +108207,53,2,3780,553087 +108208,394,7,41283,1391386 +108209,148,9,97630,117218 +108210,317,10,393659,1594335 +108211,317,10,21442,87531 +108212,234,1,113273,96439 +108213,105,7,185934,2500 +108214,148,9,169881,968035 +108215,349,1,10948,1119046 +108216,45,9,418437,1355529 +108217,3,5,9551,57806 +108218,203,1,47386,138796 +108219,333,2,28893,1446542 +108220,97,7,194,1535767 +108221,53,2,80316,12145 +108222,413,11,9885,59930 +108223,25,2,381691,1620968 +108224,387,10,11084,21440 +108225,387,10,11185,68490 +108226,208,2,257345,23786 +108227,182,8,55534,1577973 +108228,317,10,49106,1118733 +108229,286,3,110323,38492 +108230,286,3,72733,1649451 +108231,286,3,107073,1076349 +108232,273,7,10070,62811 +108233,277,3,100669,1632801 +108234,204,9,28261,9062 +108235,208,2,313922,1616471 +108236,203,1,291164,1538241 +108237,291,6,2288,1637823 +108238,246,6,435,1767015 +108239,97,7,228970,1338372 +108240,269,9,41213,53859 +108241,302,9,293167,1683362 +108242,234,1,326359,1120694 +108243,226,2,210302,1193913 +108244,387,10,10727,65237 +108245,413,11,17566,1697 +108246,413,11,949,15841 +108247,203,1,6644,17916 +108248,234,1,128120,73752 +108249,234,1,85543,932315 +108250,413,11,69401,425435 +108251,413,11,69315,1115251 +108252,160,3,435,14385 +108253,333,2,28110,119770 +108254,387,10,91551,1041394 +108255,269,9,35337,33444 +108256,413,11,28519,53685 +108257,234,1,28263,1270 +108258,204,9,130948,1008506 +108259,234,1,910,11435 +108260,13,7,378441,1592877 +108261,398,9,16442,2110 +108262,204,9,318922,1575347 +108263,20,2,257088,1631403 +108264,204,9,13562,3945 +108265,176,3,5638,81525 +108266,13,3,378441,1797488 +108267,209,7,334527,1865518 +108268,394,7,59981,1227175 +108269,234,1,273312,80678 +108270,273,7,16176,70667 +108271,317,10,1924,7190 +108272,273,7,345915,54599 +108273,3,5,4147,8217 +108274,413,11,298935,935267 +108275,180,7,79521,4315 +108276,273,7,38322,3393 +108277,317,10,128657,7555 +108278,204,9,14869,20786 +108279,234,1,31018,13776 +108280,53,2,7972,53469 +108281,204,9,15263,5188 +108282,317,10,380856,1243745 +108283,97,7,376501,1394436 +108284,3,5,9274,57105 +108285,234,1,35292,36804 +108286,5,10,83770,238715 +108287,217,3,48617,1265625 +108288,148,9,18,8384 +108289,226,2,2666,1416918 +108290,3,5,68737,9040 +108291,234,1,22317,71192 +108292,12,10,9771,12920 +108293,108,10,42752,128623 +108294,3,5,63190,236590 +108295,85,10,18047,1172558 +108296,387,10,33472,29632 +108297,208,2,36960,25021 +108298,226,2,47412,138901 +108299,132,2,8053,1442097 +108300,387,10,10178,64116 +108301,52,10,140883,84956 +108302,234,1,320179,1423197 +108303,360,9,78802,1335043 +108304,234,1,242382,14773 +108305,273,7,11798,70526 +108306,232,10,151826,145117 +108307,234,1,36421,1016403 +108308,305,9,381008,1784768 +108309,208,2,16164,558227 +108310,208,2,348631,1510197 +108311,113,9,283384,1429320 +108312,234,1,379925,1569541 +108313,234,1,82817,96627 +108314,234,1,88922,1042634 +108315,66,11,28,1391387 +108316,333,2,29424,1477210 +108317,204,9,122081,1271456 +108318,273,7,44190,5467 +108319,413,11,79995,53661 +108320,234,1,66659,105084 +108321,15,6,9023,1450331 +108322,413,11,10458,40216 +108323,148,9,82448,927988 +108324,105,7,21734,13957 +108325,317,10,15674,96390 +108326,158,2,8619,1619081 +108327,15,6,9297,1462683 +108328,234,1,34280,16862 +108329,53,2,209112,5392 +108330,9,3,157117,1138332 +108331,204,9,11902,239843 +108332,234,1,10775,66718 +108333,113,9,343173,1742971 +108334,273,7,1773,18577 +108335,3,5,70670,7746 +108336,209,7,70981,1378722 +108337,53,2,9504,1035668 +108338,52,10,2487,25470 +108339,15,6,297762,1829971 +108340,413,11,76094,231003 +108341,64,6,9607,1460602 +108342,53,2,126516,1529914 +108343,143,7,127521,1409545 +108344,52,10,345922,1480594 +108345,208,2,300487,124863 +108346,3,5,390747,1142412 +108347,25,2,228066,1430408 +108348,209,7,118,1305 +108349,105,7,177979,51827 +108350,203,1,31947,1569315 +108351,204,9,76757,6235 +108352,413,11,41970,1359574 +108353,269,9,101342,1865203 +108354,234,1,126418,145605 +108355,113,9,11450,8794 +108356,373,7,10198,112609 +108357,226,2,6440,1524757 +108358,234,1,130278,1090951 +108359,204,9,2454,962164 +108360,99,3,284052,9624 +108361,269,9,2034,8220 +108362,234,1,308269,1447879 +108363,20,2,522,1553616 +108364,234,1,56744,63550 +108365,203,1,245703,1396984 +108366,234,1,335498,33026 +108367,239,5,49009,1539303 +108368,387,10,91076,1241 +108369,387,10,422,5396 +108370,39,3,857,1546756 +108371,203,1,292625,225153 +108372,311,9,924,1733231 +108373,208,2,257088,1638157 +108374,234,1,92769,133793 +108375,234,1,21138,56506 +108376,387,10,28367,14521 +108377,175,5,274857,1548134 +108378,317,10,14923,212 +108379,415,3,34127,100762 +108380,360,3,10204,40764 +108381,52,10,86363,1360888 +108382,166,9,293167,1386906 +108383,148,9,890,14620 +108384,317,10,36236,67884 +108385,413,11,62768,59395 +108386,5,10,169782,68690 +108387,333,2,4248,1390234 +108388,234,1,153420,1134232 +108389,413,11,146,1635 +108390,387,10,81522,2356 +108391,209,7,373200,46324 +108392,234,1,134360,122633 +108393,333,2,257088,1638159 +108394,387,10,92716,101887 +108395,317,10,16839,1217579 +108396,234,1,103161,929343 +108397,317,10,30806,17208 +108398,83,2,397837,1458517 +108399,52,10,10193,8 +108400,394,7,19995,1360103 +108401,105,7,109466,21411 +108402,317,10,38965,82346 +108403,292,3,2924,1803776 +108404,360,3,10395,1392237 +108405,11,6,5393,142587 +108406,3,5,102668,1031763 +108407,148,9,44115,1324019 +108408,204,9,325385,551822 +108409,310,3,346646,1294937 +108410,53,2,44801,10678 +108411,234,1,43139,7501 +108412,155,3,52454,1630394 +108413,209,7,10999,1338837 +108414,273,7,208091,19155 +108415,387,10,79500,1184124 +108416,187,11,332411,1579391 +108417,317,10,34623,4066 +108418,75,5,287,1532355 +108419,113,9,369885,1417411 +108420,3,5,49074,1340129 +108421,234,1,195516,1175903 +108422,3,5,52936,3114 +108423,72,11,324670,1119658 +108424,269,9,243940,1186280 +108425,52,10,66178,544828 +108426,277,3,358924,1741060 +108427,5,10,2197,22813 +108428,75,5,297762,1500872 +108429,333,2,333371,1069869 +108430,176,3,13483,1402046 +108431,269,9,126090,77599 +108432,52,10,83191,29533 +108433,273,7,28577,9796 +108434,387,10,544,7395 +108435,105,7,15022,1303219 +108436,53,2,875,7652 +108437,357,3,346672,1721336 +108438,317,10,227552,178877 +108439,332,8,269149,1461995 +108440,387,10,11706,120925 +108441,234,1,106573,1535450 +108442,204,9,9902,1317673 +108443,209,7,11045,1404546 +108444,3,5,63186,24665 +108445,198,6,206647,1551892 +108446,3,5,3405,26267 +108447,360,3,5289,1335043 +108448,387,10,227306,933 +108449,317,10,246403,19303 +108450,317,10,104431,1036281 +108451,413,11,296225,48225 +108452,75,5,857,1662303 +108453,53,2,1833,8428 +108454,413,11,44718,58292 +108455,413,11,82708,32939 +108456,317,10,227973,1302779 +108457,413,11,10750,493 +108458,387,10,3638,33434 +108459,387,10,80720,153245 +108460,148,9,19176,19157 +108461,62,3,10066,1401703 +108462,52,10,71945,29648 +108463,269,9,406052,938339 +108464,234,1,267579,50922 +108465,360,3,11607,1342621 +108466,413,11,227700,1320500 +108467,76,2,340101,5335 +108468,387,10,93562,998690 +108469,234,1,61267,232764 +108470,413,11,70006,55080 +108471,198,6,257088,1638134 +108472,269,9,75162,9247 +108473,148,9,3172,7857 +108474,234,1,61049,83455 +108475,53,2,225728,36591 +108476,387,10,12427,72194 +108477,269,9,339994,1611352 +108478,273,7,12289,63693 +108479,3,5,29338,103527 +108480,317,10,29043,13901 +108481,387,10,30996,107482 +108482,415,3,8276,937622 +108483,269,9,333663,548 +108484,5,10,137315,1107180 +108485,415,3,22584,1557103 +108486,349,1,10865,1461396 +108487,182,8,55420,1400105 +108488,234,1,64044,128302 +108489,317,10,102461,63898 +108490,203,1,315837,1797194 +108491,105,7,33613,19352 +108492,234,1,77728,448563 +108493,327,7,321315,1620692 +108494,105,7,87827,5359 +108495,204,9,378485,1742498 +108496,341,2,857,1738171 +108497,317,10,21062,24446 +108498,3,5,11035,15131 +108499,234,1,39978,25182 +108500,143,7,273404,1445370 +108501,317,10,298935,935267 +108502,234,1,393559,588869 +108503,53,2,251227,1286561 +108504,203,1,16921,1344842 +108505,273,7,36288,1213 +108506,209,7,33314,1344840 +108507,75,5,7916,1438622 +108508,209,7,268099,1316485 +108509,413,11,2994,29887 +108510,317,10,427673,168751 +108511,317,10,49522,63589 +108512,413,11,110146,37280 +108513,286,3,19203,84351 +108514,413,11,1914,19918 +108515,234,1,5481,25826 +108516,105,7,9078,57337 +108517,204,9,33729,47077 +108518,262,6,6972,1401698 +108519,234,1,936,1927 +108520,234,1,413198,70109 +108521,413,11,325712,1792697 +108522,273,7,144471,34016 +108523,234,1,10198,15811 +108524,333,2,167073,1327223 +108525,234,1,435041,1190421 +108526,317,10,156389,1145507 +108527,258,9,5559,1452488 +108528,317,10,26882,68352 +108529,148,9,26180,11021 +108530,269,9,49009,1325578 +108531,187,11,14145,1416978 +108532,176,3,13849,1413931 +108533,234,1,11839,50567 +108534,179,2,45019,1550206 +108535,234,1,42093,12150 +108536,53,2,74666,1594810 +108537,160,3,1586,1611794 +108538,234,1,11055,67924 +108539,30,5,664,1646055 +108540,53,2,294690,1367215 +108541,387,10,75595,1026085 +108542,234,1,153541,1624313 +108543,304,10,76642,33781 +108544,262,6,19995,113145 +108545,67,10,99861,1447326 +108546,64,6,52454,1630381 +108547,234,1,18893,22669 +108548,234,1,124501,969551 +108549,58,2,10204,1430501 +108550,31,9,10066,1864762 +108551,234,1,101766,116181 +108552,360,9,31947,1394777 +108553,387,10,124115,2666 +108554,387,10,39995,76942 +108555,179,2,318922,1575351 +108556,113,9,9457,1217703 +108557,346,3,44943,1403422 +108558,273,7,20361,33782 +108559,293,2,11521,1538221 +108560,317,10,47638,51627 +108561,105,7,70119,1461669 +108562,269,9,10344,1136056 +108563,53,2,36245,32098 +108564,273,7,39013,53712 +108565,105,7,92321,992867 +108566,148,9,961,14413 +108567,387,10,24005,20600 +108568,25,2,50318,27186 +108569,234,1,118257,2303 +108570,317,10,47200,130938 +108571,317,10,274820,1117947 +108572,204,9,209112,1305602 +108573,286,3,202984,74146 +108574,269,9,10488,19284 +108575,387,10,8776,55969 +108576,387,10,44208,2432 +108577,204,9,7916,62859 +108578,204,9,17609,45144 +108579,269,9,3146,30467 +108580,269,9,99698,1606180 +108581,398,9,284053,1185778 +108582,287,3,46885,12614 +108583,273,7,10622,66052 +108584,53,2,116780,1731564 +108585,234,1,2976,20739 +108586,3,5,924,2507 +108587,234,1,203539,147428 +108588,269,9,326285,33625 +108589,234,1,184578,29646 +108590,148,9,2259,23333 +108591,3,5,9030,720 +108592,92,7,809,91015 +108593,317,10,374247,1553949 +108594,219,11,42418,1827973 +108595,273,7,269,3837 +108596,317,10,44945,150431 +108597,34,8,325039,1544662 +108598,413,11,64225,73154 +108599,108,10,31835,108510 +108600,175,5,14145,1416990 +108601,200,3,9664,1024842 +108602,3,5,43903,3356 +108603,3,5,7871,53612 +108604,286,3,266044,28620 +108605,269,9,2757,1783 +108606,413,11,288977,1530754 +108607,176,3,10145,1446675 +108608,387,10,59424,237149 +108609,234,1,11186,65678 +108610,413,11,328111,1851 +108611,387,10,8669,55611 +108612,273,7,37308,1760 +108613,289,6,22582,1447473 +108614,204,9,200727,1614062 +108615,3,5,406052,68170 +108616,269,9,19827,1331823 +108617,397,7,169934,40340 +108618,204,9,271718,1015645 +108619,234,1,43821,68 +108620,52,10,34977,113512 +108621,234,1,1665,5216 +108622,175,5,43923,1402073 +108623,234,1,36811,52405 +108624,3,5,11227,997 +108625,387,10,21325,149403 +108626,204,9,330459,1373701 +108627,317,10,1661,3702 +108628,60,1,8340,1566437 +108629,234,1,242240,95040 +108630,204,9,21849,12017 +108631,234,1,39284,6648 +108632,394,7,4413,1333223 +108633,3,5,34127,41709 +108634,5,10,43319,1169897 +108635,3,5,39284,6652 +108636,413,11,18148,552002 +108637,387,10,1282,20072 +108638,148,9,361018,1792336 +108639,60,1,12102,1394643 +108640,317,10,18442,56981 +108641,394,7,19042,1412195 +108642,160,3,14138,1452260 +108643,244,3,83732,930018 +108644,204,9,8869,21866 +108645,97,7,116350,1542365 +108646,3,5,10137,59356 +108647,387,10,62630,584566 +108648,52,10,216369,1038590 +108649,287,3,297702,1321932 +108650,317,10,19665,191906 +108651,3,5,50780,8194 +108652,301,5,99861,1149583 +108653,419,10,424661,1709310 +108654,234,1,363890,1522480 +108655,234,1,25501,15890 +108656,187,11,9836,1745243 +108657,132,2,13056,1708303 +108658,105,7,53064,1170115 +108659,317,10,304613,1285985 +108660,234,1,257095,587535 +108661,289,6,291270,1584351 +108662,234,1,417820,1017258 +108663,234,1,128841,94917 +108664,166,9,243940,1525147 +108665,387,10,74505,95745 +108666,234,1,71322,225665 +108667,148,9,24453,23773 +108668,234,1,214676,608 +108669,3,5,8464,65962 +108670,234,1,86664,239542 +108671,317,10,67342,223829 +108672,394,7,188927,7239 +108673,148,9,1369,16571 +108674,53,2,11800,8222 +108675,387,10,192210,1668820 +108676,244,3,68737,1460672 +108677,165,9,11370,1581076 +108678,317,10,1624,18195 +108679,105,7,21566,131900 +108680,415,3,29372,103676 +108681,196,7,14979,1458994 +108682,373,7,209112,1368864 +108683,196,7,33005,1063962 +108684,53,2,14868,77731 +108685,190,7,84735,1712341 +108686,3,5,93313,11593 +108687,387,10,106821,29347 +108688,333,2,168676,1542247 +108689,387,10,93350,12833 +108690,3,5,11880,57585 +108691,3,5,22396,15131 +108692,75,5,78802,970003 +108693,398,9,744,1378161 +108694,75,5,269173,1400094 +108695,317,10,13653,74907 +108696,317,10,8063,101569 +108697,234,1,243935,99496 +108698,99,3,90616,1408596 +108699,234,1,214909,93906 +108700,234,1,140481,71797 +108701,3,5,201360,1183432 +108702,234,1,78383,71901 +108703,168,3,9352,1576007 +108704,3,5,37103,10339 +108705,273,7,10476,53639 +108706,5,10,115023,1079955 +108707,269,9,310119,9269 +108708,317,10,19827,41550 +108709,105,7,378441,1643928 +108710,269,9,18387,1049 +108711,148,9,21159,91795 +108712,158,2,9593,1877107 +108713,274,3,2567,1739562 +108714,317,10,76468,186549 +108715,269,9,4953,7496 +108716,234,1,57278,1071418 +108717,3,5,60505,35165 +108718,270,9,11024,1401556 +108719,75,5,55720,42032 +108720,273,7,3537,32398 +108721,3,5,691,10469 +108722,164,3,16997,1583171 +108723,234,1,23128,94815 +108724,269,9,2669,8308 +108725,60,1,578,1511704 +108726,387,10,2805,28233 +108727,287,3,294254,1552365 +108728,148,9,16999,997342 +108729,60,1,64215,1354348 +108730,394,7,381518,40810 +108731,83,2,230179,1564049 +108732,387,10,254661,120970 +108733,268,7,9352,1586394 +108734,273,7,1723,10771 +108735,269,9,25473,352394 +108736,317,10,84993,3567 +108737,413,11,10873,31437 +108738,196,7,338189,1559674 +108739,387,10,125413,55823 +108740,60,1,43228,1582620 +108741,317,10,49018,2128 +108742,249,7,283686,1400476 +108743,317,10,38221,1044263 +108744,3,5,257176,1443564 +108745,143,7,5551,900 +108746,273,7,1586,1551 +108747,269,9,212756,1315852 +108748,203,1,3597,1449577 +108749,317,10,266030,1312061 +108750,317,10,127493,230174 +108751,269,9,398633,555660 +108752,403,10,31265,1056409 +108753,105,7,378018,930054 +108754,394,7,202214,1362704 +108755,234,1,26469,145190 +108756,3,5,45219,39798 +108757,198,6,293167,1646601 +108758,3,5,5332,43624 +108759,413,11,98355,547582 +108760,317,10,136762,936169 +108761,387,10,32029,1234544 +108762,387,10,12639,19266 +108763,234,1,86168,7501 +108764,127,3,72105,1455504 +108765,368,7,8619,1554594 +108766,166,9,11056,1418154 +108767,234,1,59191,15775 +108768,20,2,15414,1550204 +108769,52,10,38322,1777724 +108770,234,1,72678,566916 +108771,234,1,36375,19457 +108772,289,6,10020,1455541 +108773,52,10,175339,24840 +108774,148,9,128215,1091477 +108775,387,10,57327,41968 +108776,105,7,41252,1178629 +108777,269,9,37923,1049 +108778,289,6,5393,1450986 +108779,273,7,18736,2120 +108780,387,10,16281,3027 +108781,52,10,21626,150552 +108782,289,6,109451,1452920 +108783,273,7,350060,6157 +108784,273,7,10710,5666 +108785,273,7,75,531 +108786,5,10,43266,145845 +108787,317,10,270774,1673840 +108788,166,9,31947,1433008 +108789,53,2,10005,61850 +108790,236,8,9716,1661545 +108791,234,1,88558,245248 +108792,52,10,45875,23411 +108793,234,1,9532,57134 +108794,187,11,17577,1423840 +108795,127,3,32657,1007395 +108796,234,1,365544,1567385 +108797,413,11,82631,47776 +108798,317,10,61070,232314 +108799,226,2,21950,1404271 +108800,234,1,75233,71609 +108801,225,7,284052,1463395 +108802,387,10,208579,1191694 +108803,203,1,42045,1377239 +108804,333,2,178809,1447896 +108805,234,1,251227,1286552 +108806,273,7,140818,128137 +108807,5,10,9613,58185 +108808,273,7,20715,81614 +108809,314,2,341174,1460819 +108810,84,7,10727,1413095 +108811,75,5,2503,1339054 +108812,286,3,63773,792 +108813,317,10,42430,71080 +108814,289,6,44896,1453594 +108815,234,1,30641,97618 +108816,40,1,72545,1859962 +108817,234,1,104062,586285 +108818,273,7,36992,56748 +108819,234,1,31901,12804 +108820,387,10,43546,240838 +108821,273,7,10550,4949 +108822,32,8,297762,1903909 +108823,148,9,11450,1535946 +108824,373,7,228066,1394003 +108825,387,10,249,3389 +108826,209,7,270383,1372412 +108827,317,10,47851,125862 +108828,317,10,13678,139818 +108829,45,9,271404,1764793 +108830,317,10,319092,1414915 +108831,20,2,68629,1484987 +108832,269,9,38303,11779 +108833,373,7,42502,31874 +108834,234,1,24578,117136 +108835,286,3,79707,74091 +108836,148,9,17771,1602313 +108837,387,10,2637,27548 +108838,209,7,8204,6883 +108839,60,1,154371,1533643 +108840,360,9,159667,1711573 +108841,269,9,24936,76016 +108842,317,10,134656,131521 +108843,413,11,124963,2033 +108844,234,1,290235,1341360 +108845,53,2,229638,13866 +108846,413,11,170936,1289039 +108847,232,10,32600,20780 +108848,204,9,70695,1303846 +108849,97,7,241639,1276649 +108850,45,9,118957,1401694 +108851,187,11,2503,548437 +108852,387,10,110,1132 +108853,413,11,299165,1498627 +108854,373,7,278632,80822 +108855,133,3,41078,125404 +108856,273,7,19101,9152 +108857,262,6,55846,1402996 +108858,273,7,43256,30130 +108859,287,3,39867,1437610 +108860,262,6,257088,1512674 +108861,234,1,248376,119410 +108862,413,11,53172,6390 +108863,304,10,13241,145600 +108864,269,9,118640,124861 +108865,317,10,145154,1122367 +108866,226,2,23223,1300922 +108867,198,6,293167,1658880 +108868,317,10,24050,114841 +108869,203,1,9541,1469634 +108870,204,9,213110,66266 +108871,13,3,3309,112007 +108872,105,7,46797,51064 +108873,187,11,365942,1364410 +108874,394,7,9882,1398946 +108875,387,10,9629,18503 +108876,413,11,324670,59930 +108877,52,10,338767,1463023 +108878,53,2,270024,228582 +108879,147,1,1428,1851743 +108880,3,5,11370,69286 +108881,269,9,9946,49909 +108882,180,7,55604,27969 +108883,148,9,179826,960963 +108884,203,1,66894,1593282 +108885,328,6,44943,1403407 +108886,234,1,70554,207687 +108887,317,10,72753,139757 +108888,317,10,84944,931475 +108889,317,10,377447,1820955 +108890,234,1,248469,69392 +108891,413,11,320736,18823 +108892,394,7,226140,1377416 +108893,401,6,12,1759722 +108894,360,9,68387,1377412 +108895,72,11,14181,1545483 +108896,273,7,48677,928828 +108897,234,1,238925,1273673 +108898,387,10,5922,37710 +108899,196,7,42418,579405 +108900,40,1,10950,1836317 +108901,148,9,110598,12848 +108902,53,2,9664,27818 +108903,182,8,11056,1002096 +108904,67,10,364111,1243962 +108905,234,1,348631,1219158 +108906,234,1,376047,85585 +108907,3,5,84823,103568 +108908,234,1,144651,1094057 +108909,12,10,185934,261037 +108910,387,10,1427,673 +108911,234,1,424971,1265785 +108912,333,2,273481,1406079 +108913,306,7,12220,1752929 +108914,5,10,23518,90231 +108915,413,11,42216,17399 +108916,234,1,9516,11447 +108917,60,1,31548,1611763 +108918,289,6,214756,1455534 +108919,289,6,159211,1438454 +108920,158,2,283995,1815820 +108921,105,7,27409,36931 +108922,234,1,63317,1083500 +108923,317,10,108282,131748 +108924,3,5,3941,34174 +108925,75,5,243940,1525155 +108926,317,10,42457,1008333 +108927,317,10,27791,60434 +108928,53,2,315837,1594602 +108929,175,5,7340,1408663 +108930,204,9,285213,231509 +108931,239,5,9785,1558794 +108932,12,10,165,24 +108933,52,10,109475,1046580 +108934,269,9,2107,21614 +108935,182,8,8915,1399508 +108936,234,1,32332,59874 +108937,204,9,354287,1373700 +108938,387,10,4960,202 +108939,3,5,5899,35506 +108940,3,5,773,17146 +108941,209,7,10476,1484222 +108942,317,10,38554,1182882 +108943,269,9,254193,1094153 +108944,182,8,28090,1533787 +108945,3,5,11450,3769 +108946,3,5,83223,1377367 +108947,3,5,4580,38168 +108948,225,7,11975,40109 +108949,143,7,283445,1399631 +108950,269,9,30091,3429 +108951,387,10,130055,49183 +108952,5,10,198663,1257087 +108953,234,1,13516,17087 +108954,234,1,77915,13980 +108955,3,5,41298,31317 +108956,12,10,26123,21584 +108957,75,5,17136,1594357 +108958,234,1,342917,1217656 +108959,303,3,58244,1180758 +108960,308,3,329865,1646493 +108961,317,10,82520,916958 +108962,317,10,20200,54291 +108963,328,6,69668,1335884 +108964,234,1,244182,1220367 +108965,3,5,572,7746 +108966,60,1,84720,1623581 +108967,180,7,33472,1567996 +108968,3,5,94671,34191 +108969,213,10,18493,83901 +108970,269,9,34469,1130007 +108971,37,3,102382,1463183 +108972,262,6,206647,1551913 +108973,269,9,28820,101554 +108974,113,9,17622,1430072 +108975,328,6,55534,1335422 +108976,196,7,664,15893 +108977,291,6,16436,1201318 +108978,273,7,11230,68673 +108979,327,7,203351,1747219 +108980,317,10,24619,946451 +108981,113,9,323435,1571052 +108982,234,1,52661,13776 +108983,413,11,112991,96919 +108984,401,6,10020,15775 +108985,52,10,41604,87178 +108986,234,1,27941,93230 +108987,75,5,419430,1629784 +108988,234,1,52696,224221 +108989,413,11,6934,23827 +108990,28,9,5,1877353 +108991,204,9,11975,1430231 +108992,333,2,189,1401127 +108993,413,11,325428,1810672 +108994,52,10,182415,88468 +108995,296,3,9882,564056 +108996,188,8,116463,1691485 +108997,3,5,208529,1554751 +108998,413,11,2100,11001 +108999,234,1,8935,56379 +109000,317,10,41301,67966 +109001,53,2,9314,10198 +109002,298,5,273481,91122 +109003,196,7,11547,1407877 +109004,234,1,119433,163539 +109005,3,5,43594,2774 +109006,387,10,36214,567063 +109007,289,6,72640,222238 +109008,53,2,3701,33861 +109009,52,10,72431,51679 +109010,234,1,255913,1293457 +109011,273,7,11236,1135 +109012,74,5,10066,1864768 +109013,87,7,20439,1537110 +109014,234,1,169068,1151278 +109015,3,5,59189,58660 +109016,317,10,303982,1689172 +109017,53,2,9451,35514 +109018,180,7,403429,1640638 +109019,269,9,10475,6480 +109020,53,2,2604,7536 +109021,234,1,43571,53657 +109022,328,6,240832,1367820 +109023,317,10,32552,16747 +109024,3,5,30155,1006147 +109025,234,1,43773,1193560 +109026,317,10,126442,989687 +109027,136,1,300983,1069245 +109028,269,9,312138,1360613 +109029,250,11,10204,1613291 +109030,5,10,238,3083 +109031,226,2,122081,75081 +109032,53,2,381015,1828327 +109033,413,11,195796,1714351 +109034,204,9,17170,23966 +109035,387,10,62567,29596 +109036,387,10,11415,69331 +109037,11,6,127380,1609044 +109038,52,10,28681,99083 +109039,209,7,5289,1301113 +109040,148,9,204922,965761 +109041,5,10,38154,562941 +109042,234,1,300596,563824 +109043,182,8,410118,1791603 +109044,317,10,118195,1282339 +109045,333,2,86126,1306120 +109046,52,10,365942,2184 +109047,387,10,239513,60585 +109048,166,9,8464,63806 +109049,325,5,8869,402272 +109050,53,2,16999,28845 +109051,53,2,300654,928074 +109052,187,11,206647,1399862 +109053,234,1,132227,71353 +109054,204,9,13056,1325886 +109055,234,1,34651,40199 +109056,387,10,342213,1168811 +109057,273,7,17963,1389038 +109058,234,1,76198,1961 +109059,234,1,85658,142594 +109060,273,7,177335,6918 +109061,269,9,316154,1273860 +109062,413,11,4497,37503 +109063,387,10,49844,18267 +109064,373,7,5237,1427553 +109065,229,6,293660,1580852 +109066,45,9,10096,1235847 +109067,413,11,52959,3099 +109068,387,10,311324,81203 +109069,204,9,2666,62484 +109070,3,5,2734,23951 +109071,148,9,339403,80801 +109072,387,10,211088,230426 +109073,3,5,31805,18744 +109074,53,2,332567,6209 +109075,234,1,73306,671828 +109076,198,6,354859,1828310 +109077,234,1,2721,27436 +109078,158,2,241239,1446690 +109079,20,2,4248,1639718 +109080,204,9,26502,31256 +109081,413,11,10604,65843 +109082,408,8,1267,1455461 +109083,413,11,62213,541 +109084,394,7,8329,1405362 +109085,413,11,5967,45532 +109086,148,9,284564,1185477 +109087,77,10,1049,1788 +109088,97,7,8467,1371064 +109089,158,2,190955,1405331 +109090,226,2,245168,1426312 +109091,64,6,116463,1373431 +109092,234,1,9607,58164 +109093,273,7,59189,69755 +109094,277,3,77338,1402244 +109095,3,5,57918,49069 +109096,75,5,21159,29393 +109097,234,1,19765,213337 +109098,79,7,134477,591170 +109099,234,1,274483,1141077 +109100,196,7,127585,1367494 +109101,317,10,26566,232025 +109102,148,9,31671,1311377 +109103,287,3,8869,29929 +109104,301,5,55720,1408192 +109105,234,1,79593,17880 +109106,52,10,18214,21406 +109107,317,10,55823,32375 +109108,419,10,17100,64821 +109109,317,10,244403,3905 +109110,187,11,11096,113055 +109111,387,10,43266,116326 +109112,148,9,19101,4032 +109113,387,10,290764,66824 +109114,203,1,28031,1400738 +109115,105,7,81232,62086 +109116,143,7,9016,9349 +109117,416,10,115616,66885 +109118,234,1,62143,31439 +109119,387,10,70090,148082 +109120,340,2,283995,1619081 +109121,360,3,9102,1380383 +109122,105,7,2180,22328 +109123,413,11,371459,1549252 +109124,387,10,126516,145249 +109125,77,10,16371,80453 +109126,273,7,52728,1106076 +109127,3,5,89008,63924 +109128,234,1,209293,227238 +109129,105,7,47143,1483091 +109130,143,7,168259,1392083 +109131,413,11,431093,1182523 +109132,148,9,64725,7205 +109133,317,10,31991,64278 +109134,234,1,42293,18969 +109135,209,7,149509,1444304 +109136,45,9,14,1478848 +109137,52,10,27414,1281015 +109138,172,3,8619,1377237 +109139,3,5,31118,89200 +109140,3,5,55694,51705 +109141,317,10,277968,4780 +109142,3,5,7233,22818 +109143,52,10,45627,95262 +109144,105,7,346672,60102 +109145,11,6,283995,1660719 +109146,286,3,38718,49069 +109147,317,10,18955,51100 +109148,3,5,40095,5667 +109149,127,3,384737,1825886 +109150,317,10,81003,590928 +109151,234,1,84348,1039527 +109152,239,5,949,1403479 +109153,317,10,52555,1568158 +109154,175,5,241258,1458581 +109155,176,3,188102,1845754 +109156,204,9,18977,1124118 +109157,148,9,11428,937881 +109158,317,10,92251,587347 +109159,286,3,18722,27099 +109160,148,9,52959,10918 +109161,208,2,180305,1059587 +109162,53,2,46924,9027 +109163,3,5,6644,9057 +109164,234,1,381518,183903 +109165,333,2,3024,29654 +109166,273,7,48617,1389416 +109167,20,2,24624,1540844 +109168,154,3,3059,1633998 +109169,273,7,8584,14712 +109170,317,10,18387,83038 +109171,75,5,283686,1143001 +109172,269,9,28902,9817 +109173,273,7,351242,1046691 +109174,232,10,198227,86358 +109175,189,3,44363,1451416 +109176,394,7,72545,1422411 +109177,196,7,316042,90769 +109178,148,9,124963,1513647 +109179,113,9,102382,1399449 +109180,75,5,241258,1795852 +109181,317,10,217923,53218 +109182,160,3,4982,1074163 +109183,413,11,332662,1570517 +109184,234,1,12273,85801 +109185,53,2,4550,1293613 +109186,273,7,340027,77949 +109187,198,6,296524,1646601 +109188,394,7,316042,1018349 +109189,273,7,158739,1208823 +109190,317,10,142802,1081127 +109191,53,2,340684,1472148 +109192,317,10,130450,89518 +109193,394,7,522,19747 +109194,317,10,17073,1184485 +109195,53,2,39907,1649573 +109196,148,9,196359,1547648 +109197,127,3,80410,1007395 +109198,301,5,328429,1636710 +109199,175,5,10145,1407027 +109200,234,1,26881,19138 +109201,415,3,43093,1477254 +109202,64,6,28893,102339 +109203,234,1,264746,1713740 +109204,387,10,10795,19866 +109205,234,1,37590,221466 +109206,187,11,13336,1410595 +109207,317,10,20123,15254 +109208,204,9,6068,14350 +109209,132,2,79316,1415330 +109210,204,9,23397,1511695 +109211,141,7,46738,57069 +109212,388,9,227306,1866290 +109213,3,5,9102,56983 +109214,413,11,10425,9772 +109215,58,2,37291,56383 +109216,327,7,924,1390524 +109217,317,10,142746,1117906 +109218,53,2,17609,35380 +109219,3,5,5590,11988 +109220,53,2,16373,4350 +109221,143,7,57419,1599961 +109222,22,9,297762,1767535 +109223,234,1,243940,928915 +109224,387,10,36094,46620 +109225,317,10,377516,1227439 +109226,333,2,16235,1605363 +109227,288,3,402672,1674920 +109228,328,6,137145,1542304 +109229,387,10,2757,1461644 +109230,77,10,378503,1142289 +109231,204,9,635,9178 +109232,387,10,43923,53069 +109233,75,5,73984,1130044 +109234,53,2,198663,1198826 +109235,333,2,694,10405 +109236,269,9,102632,1031497 +109237,3,5,26502,40183 +109238,203,1,89492,1352983 +109239,234,1,5,3110 +109240,85,10,10865,1552894 +109241,3,5,223551,1263646 +109242,200,3,257088,1615696 +109243,387,10,64685,27 +109244,413,11,10917,57642 +109245,269,9,140554,1707847 +109246,53,2,42683,8717 +109247,413,11,131689,1267021 +109248,304,10,105981,1170313 +109249,226,2,43455,31207 +109250,413,11,2,54766 +109251,328,6,9286,1394752 +109252,175,5,395992,1181554 +109253,204,9,10050,38556 +109254,387,10,58611,67971 +109255,148,9,72823,34115 +109256,185,11,83,1058068 +109257,113,9,149509,1329481 +109258,105,7,19621,84959 +109259,387,10,64968,5069 +109260,179,2,613,1425859 +109261,3,5,8316,32451 +109262,105,7,409536,10557 +109263,269,9,11024,1128347 +109264,234,1,201360,1183431 +109265,262,6,321039,1309862 +109266,239,5,323435,1571055 +109267,262,6,163,1392909 +109268,262,6,437253,1744991 +109269,333,2,107073,1011684 +109270,196,7,10972,1555193 +109271,287,3,9902,1600624 +109272,204,9,45244,23851 +109273,413,11,84336,1001393 +109274,60,1,4497,37495 +109275,52,10,28969,60438 +109276,5,10,29449,13326 +109277,371,3,384737,1825651 +109278,234,1,62897,116155 +109279,209,7,9893,1396827 +109280,413,11,13614,1179781 +109281,3,5,34078,4083 +109282,387,10,25335,148015 +109283,75,5,398633,1525930 +109284,262,6,410118,1791612 +109285,187,11,266856,40813 +109286,3,5,3537,9165 +109287,105,7,378236,9152 +109288,317,10,42416,128070 +109289,387,10,70151,109726 +109290,60,1,54563,11204 +109291,204,9,3016,14448 +109292,204,9,105059,10604 +109293,234,1,815,1387618 +109294,273,7,42640,1086334 +109295,53,2,21242,1497384 +109296,60,1,82767,1576123 +109297,244,3,259830,1340724 +109298,273,7,81541,116285 +109299,301,5,19995,1398970 +109300,75,5,27523,36016 +109301,179,2,322443,1325648 +109302,52,10,94176,105570 +109303,387,10,112304,218637 +109304,317,10,34151,55299 +109305,75,5,11046,1391115 +109306,75,5,744,70949 +109307,413,11,20842,66709 +109308,317,10,124277,1079149 +109309,234,1,177358,230438 +109310,387,10,303542,236865 +109311,204,9,54022,21148 +109312,209,7,72984,5062 +109313,317,10,57311,225896 +109314,234,1,42944,129147 +109315,182,8,332662,1406733 +109316,234,1,58404,57641 +109317,273,7,41213,544515 +109318,373,7,13483,1402071 +109319,234,1,16612,110348 +109320,398,9,37534,1468951 +109321,317,10,34615,3558 +109322,234,1,79419,930435 +109323,268,7,18,1404717 +109324,412,9,13798,1565848 +109325,127,3,156335,190775 +109326,413,11,376570,551463 +109327,373,7,14510,1449500 +109328,234,1,20174,14502 +109329,87,7,244786,1533101 +109330,5,10,43849,1388805 +109331,304,10,55152,135998 +109332,346,3,11370,1581143 +109333,53,2,10204,6688 +109334,301,5,59197,1402488 +109335,302,9,14430,1521682 +109336,204,9,18098,1462348 +109337,234,1,49446,45419 +109338,60,1,80125,1441756 +109339,413,11,14615,14679 +109340,333,2,206647,1315700 +109341,204,9,48205,142301 +109342,317,10,25936,86860 +109343,413,11,20372,1082868 +109344,317,10,270221,1322595 +109345,3,5,274991,1406544 +109346,234,1,40799,88648 +109347,250,11,45244,1605657 +109348,387,10,22504,239033 +109349,413,11,2525,6604 +109350,175,5,28176,1378173 +109351,213,10,26252,39058 +109352,413,11,177155,1334942 +109353,413,11,326285,17233 +109354,394,7,17654,3503 +109355,105,7,32275,4082 +109356,317,10,18977,62756 +109357,234,1,347666,27450 +109358,413,11,10857,70538 +109359,204,9,10596,65812 +109360,387,10,62630,7189 +109361,3,5,1624,31027 +109362,53,2,9426,13551 +109363,413,11,152532,69371 +109364,286,3,18620,1207493 +109365,234,1,8071,937278 +109366,105,7,36785,116212 +109367,3,5,128946,231917 +109368,387,10,2965,29055 +109369,148,9,3554,32772 +109370,317,10,62046,52114 +109371,387,10,150208,589083 +109372,3,5,148,104 +109373,234,1,282086,125971 +109374,387,10,230182,196124 +109375,269,9,294272,139145 +109376,413,11,11561,68942 +109377,234,1,295621,1105138 +109378,52,10,91480,1615268 +109379,79,7,34127,1759289 +109380,387,10,125759,232235 +109381,72,11,127372,1431514 +109382,3,5,46982,1182648 +109383,3,5,356757,56289 +109384,317,10,195544,229269 +109385,204,9,2288,1337394 +109386,368,7,4147,1558702 +109387,327,7,2978,1728444 +109388,269,9,24801,1484761 +109389,226,2,289225,929093 +109390,317,10,276220,1330182 +109391,373,7,118,1417517 +109392,398,9,10326,7734 +109393,234,1,366696,1095805 +109394,234,1,14372,16566 +109395,234,1,24452,102429 +109396,127,3,30361,1424176 +109397,296,3,9716,1534084 +109398,289,6,66984,148224 +109399,234,1,2666,21085 +109400,317,10,13536,73424 +109401,37,3,22559,1447557 +109402,317,10,222220,32919 +109403,235,5,11024,1441368 +109404,166,9,11351,1597176 +109405,413,11,216580,372442 +109406,317,10,121923,96704 +109407,234,1,101352,140457 +109408,353,7,9472,1546457 +109409,317,10,48959,1238983 +109410,317,10,88953,588925 +109411,403,10,20164,148356 +109412,158,2,132363,1399323 +109413,387,10,1394,8452 +109414,53,2,84903,12145 +109415,317,10,313074,1170386 +109416,204,9,13393,1603660 +109417,104,7,379,1552201 +109418,203,1,20372,1635715 +109419,143,7,37534,1377413 +109420,234,1,10586,2042 +109421,373,7,7220,1399861 +109422,182,8,9716,1561296 +109423,269,9,2640,2243 +109424,394,7,283995,1360103 +109425,269,9,69974,557671 +109426,387,10,33481,16767 +109427,317,10,51955,93133 +109428,204,9,335031,1451769 +109429,234,1,371459,4635 +109430,273,7,10320,48523 +109431,253,6,356500,1756291 +109432,317,10,31037,12677 +109433,53,2,10238,46876 +109434,413,11,245906,3310 +109435,413,11,14372,8881 +109436,413,11,15497,10603 +109437,143,7,267310,1451452 +109438,182,8,56937,1412156 +109439,317,10,41160,59248 +109440,234,1,310137,1310888 +109441,413,11,6935,51510 +109442,160,3,1950,963887 +109443,387,10,12638,50799 +109444,333,2,43525,4128 +109445,105,7,102197,23437 +109446,302,9,10204,1613199 +109447,179,2,274479,1177713 +109448,269,9,52369,939458 +109449,387,10,116160,85996 +109450,52,10,225499,1210948 +109451,204,9,96433,369 +109452,60,1,4024,1651259 +109453,226,2,73835,1433706 +109454,387,10,2075,21279 +109455,3,5,14527,5908 +109456,148,9,13580,10644 +109457,376,10,218778,1203521 +109458,234,1,3556,32776 +109459,413,11,2295,19303 +109460,317,10,81003,135795 +109461,289,6,62764,1453929 +109462,204,9,43095,1602602 +109463,387,10,83223,45577 +109464,226,2,1480,1581756 +109465,273,7,52959,95665 +109466,387,10,37340,97212 +109467,75,5,12113,1405391 +109468,373,7,4413,1400072 +109469,387,10,5257,42381 +109470,262,6,36243,552337 +109471,234,1,124597,1080277 +109472,269,9,3064,16614 +109473,289,6,69103,222311 +109474,269,9,19348,1030591 +109475,387,10,301272,1382321 +109476,196,7,43912,1409485 +109477,148,9,43157,8508 +109478,269,9,11600,958043 +109479,317,10,76047,5306 +109480,234,1,42122,12804 +109481,387,10,178569,105735 +109482,3,5,43172,13809 +109483,314,2,8470,1449149 +109484,234,1,43635,129697 +109485,413,11,142984,1118130 +109486,415,3,42542,1286354 +109487,234,1,59356,124238 +109488,75,5,184363,1601862 +109489,53,2,39013,962851 +109490,387,10,118677,59330 +109491,415,3,935,1206210 +109492,317,10,63144,932203 +109493,360,3,9423,1389589 +109494,75,5,324670,1577083 +109495,196,7,172385,1394418 +109496,387,10,11848,70721 +109497,398,9,77459,1821418 +109498,182,8,341886,1463744 +109499,232,10,112083,117029 +109500,208,2,194722,1325219 +109501,53,2,45013,1493964 +109502,204,9,36657,40835 +109503,234,1,14830,35268 +109504,3,5,79113,31627 +109505,287,3,8247,1701157 +109506,234,1,22241,53372 +109507,413,11,315837,567478 +109508,53,2,81182,53021 +109509,67,10,14317,1454249 +109510,234,1,32601,85231 +109511,413,11,27114,3486 +109512,234,1,43753,129801 +109513,228,2,274857,1829873 +109514,273,7,408203,1676937 +109515,3,5,83588,1046612 +109516,333,2,71066,1360779 +109517,286,3,25855,545209 +109518,143,7,92635,995468 +109519,234,1,8071,3776 +109520,268,7,126889,1432596 +109521,273,7,19050,63923 +109522,234,1,62732,235105 +109523,53,2,16643,8428 +109524,273,7,140883,565164 +109525,387,10,100275,1024216 +109526,3,5,8410,55742 +109527,52,10,33016,52024 +109528,269,9,4592,42634 +109529,234,1,11380,15521 +109530,328,6,302828,1103574 +109531,373,7,11688,74978 +109532,269,9,21711,14879 +109533,148,9,33673,7338 +109534,416,10,9474,4385 +109535,296,3,435,1574638 +109536,196,7,97614,1401135 +109537,317,10,156015,73153 +109538,413,11,24584,22154 +109539,413,11,257534,1297708 +109540,333,2,910,4128 +109541,175,5,293660,1394973 +109542,333,2,694,10407 +109543,413,11,31805,102784 +109544,54,10,109001,1821346 +109545,234,1,332283,1088579 +109546,219,11,246415,1439431 +109547,3,5,31977,55073 +109548,234,1,21060,87043 +109549,317,10,15584,80207 +109550,234,1,365065,1093748 +109551,148,9,44801,1824 +109552,155,3,9716,1661578 +109553,234,1,173465,567120 +109554,317,10,258751,260050 +109555,234,1,71125,9789 +109556,413,11,53857,14679 +109557,269,9,104275,83784 +109558,333,2,23966,1419798 +109559,387,10,294651,1367186 +109560,373,7,9042,13165 +109561,387,10,18405,20977 +109562,105,7,143240,1118741 +109563,333,2,379,9617 +109564,234,1,142746,1117904 +109565,287,3,198663,1415030 +109566,413,11,5482,44967 +109567,3,5,337104,1025264 +109568,398,9,3033,29788 +109569,391,9,369885,1771008 +109570,250,11,284564,1401770 +109571,203,1,16890,40107 +109572,387,10,73600,54443 +109573,269,9,36737,1468911 +109574,273,7,128866,77869 +109575,413,11,28902,12685 +109576,3,5,107146,3454 +109577,314,2,10727,1418264 +109578,75,5,2666,1392719 +109579,273,7,70327,138451 +109580,180,7,15199,1641984 +109581,89,5,284052,1774234 +109582,317,10,26558,28283 +109583,234,1,47057,15002 +109584,234,1,318052,1086388 +109585,221,3,19209,1711837 +109586,269,9,227700,1129799 +109587,74,5,394645,1864624 +109588,317,10,298228,98868 +109589,127,3,52661,69129 +109590,53,2,22968,3647 +109591,234,1,18015,22012 +109592,234,1,25655,94049 +109593,40,1,5,1120536 +109594,3,5,39578,47872 +109595,60,1,114790,50194 +109596,317,10,410259,122282 +109597,413,11,291865,16362 +109598,148,9,31498,12348 +109599,53,2,256740,1322011 +109600,60,1,3309,1533643 +109601,13,9,339403,1635183 +109602,3,5,36432,115352 +109603,269,9,10201,28636 +109604,196,7,27259,454855 +109605,105,7,48778,134463 +109606,148,9,365942,1632792 +109607,413,11,83714,19452 +109608,333,2,2262,23339 +109609,261,2,29398,50580 +109610,413,11,691,10179 +109611,53,2,9987,61503 +109612,143,7,8870,9349 +109613,234,1,222388,1207739 +109614,234,1,221801,113647 +109615,387,10,55612,103149 +109616,234,1,11626,55006 +109617,387,10,55448,104879 +109618,333,2,94663,1602285 +109619,234,1,67696,16897 +109620,317,10,156627,130313 +109621,5,10,124963,1405472 +109622,37,3,102382,1460652 +109623,3,5,294272,11699 +109624,387,10,690,10346 +109625,3,5,280030,42413 +109626,317,10,14449,1178713 +109627,52,10,119010,1620447 +109628,413,11,364088,1523168 +109629,180,7,53857,27969 +109630,176,3,102382,1399458 +109631,148,9,378441,1797447 +109632,413,11,11630,45862 +109633,273,7,24556,58289 +109634,3,5,8371,4807 +109635,12,10,4248,9562 +109636,333,2,2675,142152 +109637,77,10,4948,27436 +109638,53,2,43809,14494 +109639,349,1,10198,1461379 +109640,105,7,42683,29276 +109641,234,1,44123,1227247 +109642,53,2,151911,1574729 +109643,52,10,19096,1150504 +109644,269,9,51141,34768 +109645,398,9,2687,596 +109646,189,3,354859,1884739 +109647,330,3,102428,1385153 +109648,148,9,5040,41405 +109649,168,3,1073,1792651 +109650,333,2,167810,1484473 +109651,53,2,887,13574 +109652,277,3,76170,113048 +109653,317,10,402612,125384 +109654,234,1,422548,84074 +109655,204,9,42191,17763 +109656,387,10,39519,136543 +109657,13,5,378441,1797437 +109658,3,5,29698,26192 +109659,391,9,395992,1790904 +109660,97,7,4248,8761 +109661,105,7,27003,121115 +109662,127,3,147722,34094 +109663,234,1,22618,38527 +109664,399,9,10198,73306 +109665,198,6,181533,1869360 +109666,179,2,38157,1031823 +109667,148,9,244,3488 +109668,3,5,259645,55976 +109669,77,10,13062,7918 +109670,53,2,2355,8527 +109671,273,7,28592,14807 +109672,303,3,68737,1415634 +109673,413,11,388862,13673 +109674,3,5,207850,1542138 +109675,3,5,50350,20034 +109676,413,11,45556,1127862 +109677,187,11,93856,1350236 +109678,234,1,179105,22239 +109679,269,9,77459,1742332 +109680,269,9,4365,37594 +109681,3,5,39024,1455452 +109682,5,10,83491,932933 +109683,234,1,11008,14692 +109684,413,11,53150,1125677 +109685,234,1,258363,1003190 +109686,5,10,133183,1121956 +109687,32,8,333484,1551366 +109688,83,2,123109,29929 +109689,387,10,14705,87550 +109690,143,7,127585,113054 +109691,314,2,9441,1521022 +109692,345,7,126889,1459875 +109693,148,9,244786,1423984 +109694,179,2,193893,1389595 +109695,317,10,423377,1322315 +109696,234,1,21905,229275 +109697,317,10,14683,1674185 +109698,207,3,76203,1393456 +109699,387,10,39992,37365 +109700,234,1,10780,1201 +109701,3,5,285685,1616510 +109702,387,10,35856,235142 +109703,413,11,9296,10816 +109704,127,3,186869,1025090 +109705,268,7,287628,1341737 +109706,387,10,26153,87354 +109707,155,3,9716,1661577 +109708,232,10,51303,108795 +109709,234,1,46261,135601 +109710,75,5,297762,1406847 +109711,234,1,106944,35256 +109712,381,9,17654,1424603 +109713,3,5,244580,1084983 +109714,79,7,441881,71273 +109715,182,8,340101,1407862 +109716,189,3,10070,1190778 +109717,169,3,2687,11310 +109718,413,11,107693,81749 +109719,383,3,3172,1553251 +109720,52,10,45431,91768 +109721,387,10,152570,128398 +109722,415,3,11333,1441044 +109723,75,5,257345,75303 +109724,234,1,16096,67896 +109725,234,1,26465,131791 +109726,269,9,278348,1475287 +109727,317,10,74950,24445 +109728,394,7,601,9971 +109729,317,10,214910,1282607 +109730,333,2,7340,949558 +109731,234,1,72785,27014 +109732,273,7,10586,1760 +109733,52,10,115054,102737 +109734,387,10,8870,19241 +109735,234,1,71725,17554 +109736,127,3,18405,1842602 +109737,291,6,13616,1533488 +109738,289,6,18937,1840816 +109739,273,7,262786,1306690 +109740,387,10,795,2303 +109741,234,1,187602,236535 +109742,97,7,328429,1414886 +109743,182,8,2454,1398935 +109744,169,3,1369,13457 +109745,273,7,83666,2949 +109746,75,5,118957,1402900 +109747,235,5,10733,131198 +109748,269,9,409536,1577205 +109749,413,11,14273,1085000 +109750,387,10,238925,1273673 +109751,250,11,293167,1759819 +109752,343,3,66756,119461 +109753,234,1,366143,118713 +109754,333,2,11622,548412 +109755,317,10,133448,6210 +109756,148,9,52736,13677 +109757,413,11,18783,20601 +109758,273,7,22784,1559395 +109759,234,1,50086,69991 +109760,3,5,51104,100332 +109761,143,7,4344,40469 +109762,273,7,21629,18663 +109763,262,6,392818,1621369 +109764,286,3,85472,932222 +109765,232,10,56943,1302456 +109766,161,6,329865,1646585 +109767,317,10,12446,72248 +109768,60,1,58447,1732768 +109769,20,2,194,1551964 +109770,3,5,424488,61851 +109771,234,1,92251,3582 +109772,148,9,173456,7338 +109773,160,3,85414,182213 +109774,169,3,76170,1401694 +109775,262,6,51875,1689237 +109776,413,11,52847,19409 +109777,188,8,30361,1769262 +109778,53,2,59296,1313928 +109779,87,7,139519,1533532 +109780,105,7,101231,1259 +109781,273,7,326,894 +109782,204,9,1073,548849 +109783,178,10,381015,59931 +109784,60,1,90001,1326078 +109785,187,11,4133,548438 +109786,169,3,336050,1644777 +109787,234,1,10733,54040 +109788,269,9,12422,239156 +109789,317,10,51311,6818 +109790,317,10,2080,18185 +109791,234,1,16460,1069735 +109792,204,9,28425,16753 +109793,105,7,408755,1474658 +109794,105,7,86532,933311 +109795,209,7,260001,1336439 +109796,234,1,112675,122740 +109797,204,9,219466,1640818 +109798,234,1,8211,16323 +109799,317,10,76198,1961 +109800,162,6,10529,3964 +109801,371,3,76312,559146 +109802,269,9,7219,38917 +109803,234,1,27137,15663 +109804,162,6,169934,1442215 +109805,28,9,11351,1597180 +109806,262,6,337339,92471 +109807,234,1,52051,109695 +109808,269,9,13075,1030591 +109809,209,7,167,1340007 +109810,273,7,29236,39761 +109811,269,9,9274,40560 +109812,52,10,43548,129587 +109813,292,3,116463,1691494 +109814,317,10,13920,10683 +109815,333,2,223551,1263790 +109816,234,1,10425,27846 +109817,164,3,257088,1630071 +109818,3,5,338518,1170526 +109819,317,10,98203,1084989 +109820,3,5,84284,591400 +109821,203,1,354859,1403710 +109822,108,10,9611,58179 +109823,317,10,257831,23360 +109824,411,9,857,19291 +109825,270,9,49013,7960 +109826,387,10,118098,19304 +109827,317,10,233917,1269391 +109828,234,1,146373,84552 +109829,179,2,2300,46084 +109830,209,7,20312,1394984 +109831,234,1,332534,1452406 +109832,3,5,384682,69506 +109833,148,9,76871,26184 +109834,413,11,94674,1121526 +109835,206,3,7220,1748025 +109836,286,3,42941,55888 +109837,3,5,395914,1690609 +109838,269,9,1917,19932 +109839,317,10,172868,1063201 +109840,277,3,251,1453281 +109841,413,11,51971,70952 +109842,148,9,354979,1209872 +109843,148,9,791,11822 +109844,273,7,77117,459872 +109845,317,10,335450,1069379 +109846,317,10,86658,99005 +109847,234,1,10821,66979 +109848,317,10,15560,77863 +109849,234,1,400174,16214 +109850,273,7,19403,7769 +109851,387,10,210913,143031 +109852,296,3,8470,1598744 +109853,234,1,35110,113736 +109854,3,5,34482,1282191 +109855,234,1,92848,89749 +109856,169,3,190955,1393387 +109857,317,10,54503,150785 +109858,234,1,402455,1139814 +109859,317,10,284305,1347622 +109860,317,10,164013,1149291 +109861,273,7,11215,10494 +109862,75,5,72032,1120511 +109863,328,6,1966,1398098 +109864,289,6,257344,1473422 +109865,234,1,102913,1032520 +109866,204,9,301804,1340734 +109867,3,5,10937,1632 +109868,75,5,315837,1394768 +109869,413,11,36657,2484 +109870,203,1,117120,1437964 +109871,234,1,27358,235784 +109872,317,10,15022,1303217 +109873,234,1,85916,138076 +109874,413,11,90030,114327 +109875,161,6,11351,1394965 +109876,196,7,41733,1367494 +109877,5,10,6023,47284 +109878,77,10,9951,60804 +109879,317,10,57775,1277277 +109880,187,11,16996,1404366 +109881,46,5,116463,1691486 +109882,34,8,10543,1550056 +109883,234,1,163333,9740 +109884,53,2,50506,1180000 +109885,413,11,32029,8881 +109886,273,7,62033,99452 +109887,286,3,51976,1094169 +109888,3,5,82178,9081 +109889,398,9,263115,1407726 +109890,92,7,5881,46289 +109891,317,10,263627,969712 +109892,234,1,8899,45138 +109893,113,9,245891,1512728 +109894,3,5,16174,957150 +109895,313,6,2567,1512157 +109896,317,10,30708,14775 +109897,234,1,21135,15189 +109898,301,5,72105,1445895 +109899,262,6,17622,1399869 +109900,244,3,116463,1691490 +109901,234,1,30929,6603 +109902,413,11,47921,30412 +109903,53,2,334074,39670 +109904,73,7,33364,21787 +109905,234,1,112708,108129 +109906,3,5,62768,1327883 +109907,234,1,227552,43222 +109908,317,10,17007,148118 +109909,411,9,298,497 +109910,273,7,11653,46324 +109911,413,11,7445,13227 +109912,3,5,23048,356 +109913,75,5,293660,1580836 +109914,269,9,168676,61846 +109915,273,7,147829,29967 +109916,234,1,51434,13776 +109917,234,1,94365,118639 +109918,77,10,18912,83865 +109919,234,1,131861,12504 +109920,53,2,205864,1488731 +109921,213,10,82817,96627 +109922,413,11,109424,29405 +109923,52,10,291865,78545 +109924,387,10,39519,104556 +109925,413,11,337104,971868 +109926,413,11,268853,1021613 +109927,413,11,16232,1264 +109928,387,10,226936,1223575 +109929,269,9,11639,1125548 +109930,234,1,108017,8741 +109931,234,1,283424,22669 +109932,234,1,45800,82413 +109933,148,9,43499,8508 +109934,373,7,46387,1173952 +109935,340,2,8619,1538138 +109936,5,10,30034,31063 +109937,148,9,297853,59429 +109938,273,7,9948,49285 +109939,5,10,44398,130701 +109940,204,9,18093,1371916 +109941,387,10,149232,1128542 +109942,32,8,163,1727315 +109943,286,3,131903,1093931 +109944,3,5,28261,8504 +109945,387,10,16171,72156 +109946,74,5,39979,1743945 +109947,187,11,333663,1338221 +109948,202,7,46387,1113619 +109949,413,11,9771,1118728 +109950,75,5,336549,240565 +109951,333,2,277713,1609177 +109952,113,9,354859,1465985 +109953,262,6,237584,1621369 +109954,234,1,117120,1065014 +109955,317,10,48153,9747 +109956,53,2,4825,13574 +109957,160,3,425774,9598 +109958,20,2,245168,1437632 +109959,413,11,20213,7387 +109960,387,10,11232,366 +109961,166,9,9532,1401560 +109962,211,3,352327,1097200 +109963,262,6,310133,1524560 +109964,387,10,3055,31068 +109965,60,1,2567,7531 +109966,3,5,29263,414697 +109967,234,1,376252,1600905 +109968,234,1,380124,80602 +109969,204,9,40761,12346 +109970,204,9,5279,43385 +109971,24,5,11370,104781 +109972,317,10,18902,369420 +109973,232,10,49391,10747 +109974,148,9,838,12405 +109975,234,1,539,2636 +109976,360,3,31042,118295 +109977,123,3,147939,19503 +109978,3,5,9655,9645 +109979,179,2,340275,1397854 +109980,218,1,623,1394104 +109981,234,1,27526,2228 +109982,53,2,10066,62746 +109983,387,10,11706,29962 +109984,3,5,43670,30578 +109985,413,11,19912,5583 +109986,148,9,18783,34436 +109987,413,11,127424,1688357 +109988,161,6,329865,1646592 +109989,296,3,3172,1553248 +109990,196,7,20312,1424455 +109991,234,1,339312,1464979 +109992,306,7,357706,1641717 +109993,387,10,34106,19019 +109994,143,7,82,1412195 +109995,198,6,140607,1428902 +109996,179,2,28176,1435605 +109997,169,3,24619,569553 +109998,75,5,635,1399999 +109999,76,2,70981,1462918 +110000,234,1,15602,26502 +110001,262,6,1381,1438616 +110002,60,1,73969,87700 +110003,273,7,117913,931615 +110004,413,11,17978,3099 +110005,273,7,9840,2422 +110006,387,10,5638,6448 +110007,413,11,11972,71138 +110008,387,10,11333,52249 +110009,234,1,117500,70854 +110010,413,11,351242,1011975 +110011,317,10,31263,66224 +110012,196,7,4413,1406898 +110013,52,10,169343,1151386 +110014,143,7,124470,1372207 +110015,52,10,32143,70476 +110016,5,10,46492,46625 +110017,413,11,21927,1416934 +110018,52,10,62213,565491 +110019,387,10,32085,510 +110020,105,7,8371,6676 +110021,52,10,32996,1281524 +110022,303,3,47112,1536107 +110023,234,1,29318,103482 +110024,226,2,250066,1415330 +110025,413,11,127424,1195528 +110026,317,10,86254,99236 +110027,234,1,19140,10790 +110028,387,10,43497,93631 +110029,317,10,43095,135144 +110030,413,11,27523,15132 +110031,327,7,29056,1070097 +110032,3,5,46738,982586 +110033,97,7,9426,91878 +110034,204,9,38433,9104 +110035,317,10,33339,18342 +110036,413,11,109417,14768 +110037,148,9,9902,1326715 +110038,317,10,209293,551487 +110039,234,1,51209,876 +110040,3,5,113255,20553 +110041,387,10,185291,22598 +110042,287,3,21927,1416942 +110043,269,9,129359,11907 +110044,273,7,23857,1001707 +110045,210,9,69,1361069 +110046,413,11,42852,27920 +110047,209,7,70046,1549652 +110048,3,5,2002,20572 +110049,317,10,44536,6595 +110050,234,1,263855,131846 +110051,60,1,14703,31871 +110052,105,7,11202,1597780 +110053,273,7,11654,70380 +110054,105,7,77864,1750082 +110055,234,1,19548,84818 +110056,269,9,87481,1596537 +110057,87,7,418437,1609037 +110058,136,1,14128,1726810 +110059,77,10,13061,32535 +110060,45,9,8053,1571002 +110061,273,7,29113,30130 +110062,317,10,13073,66605 +110063,314,2,294254,1494525 +110064,52,10,13380,14640 +110065,234,1,271495,545782 +110066,204,9,286873,19690 +110067,148,9,8491,22010 +110068,234,1,126090,1082084 +110069,53,2,31911,52163 +110070,54,10,441728,469 +110071,234,1,60063,230426 +110072,180,7,26252,10354 +110073,269,9,231145,1106857 +110074,317,10,220005,1184377 +110075,413,11,54146,96810 +110076,373,7,322443,1615081 +110077,3,5,192558,1673759 +110078,394,7,13493,1400558 +110079,413,11,393079,1774797 +110080,234,1,101915,112833 +110081,317,10,19203,50460 +110082,127,3,116463,1691431 +110083,143,7,403867,1202999 +110084,346,3,353616,1635332 +110085,333,2,49853,39869 +110086,269,9,82631,10396 +110087,317,10,242458,1301201 +110088,273,7,24739,942947 +110089,104,7,94348,1546115 +110090,3,5,1416,16967 +110091,203,1,30708,1338851 +110092,387,10,82237,1580199 +110093,175,5,544,1460768 +110094,234,1,19342,78336 +110095,97,7,312221,8163 +110096,204,9,9877,19954 +110097,3,5,78691,1043831 +110098,234,1,448847,1088094 +110099,160,3,12113,1074163 +110100,273,7,10795,66841 +110101,234,1,78450,143035 +110102,200,3,287903,1569335 +110103,317,10,371003,86445 +110104,287,3,353979,23493 +110105,349,1,9982,1452489 +110106,40,1,379019,5199 +110107,273,7,15090,1868699 +110108,360,3,243568,1583224 +110109,387,10,407,5125 +110110,413,11,2280,2988 +110111,317,10,54804,1173675 +110112,387,10,328032,66059 +110113,387,10,24453,1532 +110114,413,11,199615,1307661 +110115,289,6,22752,222238 +110116,5,10,50506,218238 +110117,234,1,17401,81775 +110118,127,3,279096,1386327 +110119,413,11,9950,53468 +110120,160,3,635,1399998 +110121,53,2,374473,1650263 +110122,190,7,1586,1384366 +110123,204,9,26581,1179040 +110124,209,7,45132,91324 +110125,3,5,8840,28240 +110126,269,9,40562,60870 +110127,3,5,300155,19986 +110128,209,7,10201,1008052 +110129,234,1,10694,50583 +110130,306,7,1902,2330 +110131,262,6,333352,1053822 +110132,52,10,16232,68040 +110133,25,2,369406,1872422 +110134,190,7,230179,1881548 +110135,387,10,53857,2432 +110136,317,10,18148,131010 +110137,317,10,308165,89154 +110138,373,7,152736,56765 +110139,175,5,1125,1389139 +110140,53,2,115109,8509 +110141,234,1,41638,1080873 +110142,3,5,70074,43891 +110143,53,2,26390,957570 +110144,192,5,410118,1791610 +110145,413,11,4443,1667046 +110146,153,6,76757,1483136 +110147,301,5,635,983118 +110148,3,5,634,7262 +110149,387,10,110148,117483 +110150,387,10,35921,83905 +110151,3,5,10703,66772 +110152,3,5,264454,72052 +110153,175,5,329135,1667097 +110154,234,1,87894,89226 +110155,234,1,74561,122741 +110156,34,8,228066,1453652 +110157,234,1,47889,138322 +110158,317,10,9404,120414 +110159,245,3,42045,1397321 +110160,234,1,5177,18823 +110161,5,10,18704,76938 +110162,304,10,148284,237691 +110163,187,11,9835,1551060 +110164,160,3,44943,9558 +110165,3,5,347328,1507574 +110166,225,7,345918,1870214 +110167,273,7,10549,9152 +110168,413,11,1877,19712 +110169,234,1,148176,545675 +110170,226,2,17258,91853 +110171,72,11,246655,1713076 +110172,269,9,30298,7306 +110173,317,10,137072,1106617 +110174,105,7,341689,1045816 +110175,234,1,173300,209975 +110176,269,9,39578,1313707 +110177,317,10,42739,1332909 +110178,204,9,101852,1391649 +110179,301,5,262338,1428565 +110180,53,2,42191,38229 +110181,269,9,257345,1186280 +110182,317,10,289679,21228 +110183,273,7,56135,8503 +110184,5,10,77338,1031923 +110185,166,9,56937,1336927 +110186,209,7,118957,1425396 +110187,213,10,72856,1010628 +110188,413,11,37238,1127490 +110189,66,11,14794,1220996 +110190,387,10,300983,1069245 +110191,387,10,11456,52035 +110192,234,1,273868,70562 +110193,387,10,62330,235143 +110194,415,3,388862,1594070 +110195,317,10,42094,14090 +110196,273,7,14676,2027 +110197,52,10,34459,180528 +110198,105,7,15321,62086 +110199,333,2,122019,1511650 +110200,341,2,121598,1880923 +110201,148,9,13336,1335413 +110202,52,10,302699,198150 +110203,269,9,112304,1073676 +110204,5,10,53853,134418 +110205,57,2,204922,1401126 +110206,387,10,321528,1220917 +110207,413,11,896,12167 +110208,387,10,17074,1211813 +110209,222,6,16486,34517 +110210,273,7,61581,31853 +110211,75,5,193893,1618777 +110212,203,1,43231,1580988 +110213,204,9,10872,29219 +110214,269,9,320736,1161454 +110215,234,1,27989,57854 +110216,5,10,43997,178564 +110217,3,5,14945,1123072 +110218,3,5,28031,18257 +110219,291,6,18801,1628034 +110220,387,10,173638,1120403 +110221,197,5,194,1735709 +110222,273,7,40466,1347927 +110223,143,7,330770,1434952 +110224,158,2,9423,1389595 +110225,204,9,1773,29345 +110226,179,2,4547,1319744 +110227,3,5,177677,2950 +110228,60,1,180576,8275 +110229,188,8,28178,1532357 +110230,317,10,117499,222318 +110231,306,7,693,1761070 +110232,169,3,1687,18652 +110233,273,7,10761,2593 +110234,160,3,9032,1372092 +110235,286,3,248933,932676 +110236,273,7,209248,1066011 +110237,234,1,57683,15858 +110238,387,10,10476,53267 +110239,164,3,311324,1327838 +110240,399,9,16390,1450356 +110241,245,3,773,1552997 +110242,332,8,62764,1453943 +110243,3,5,284135,1294391 +110244,52,10,198176,1718780 +110245,234,1,82684,323 +110246,204,9,38404,118290 +110247,317,10,328692,1434875 +110248,5,10,27031,560321 +110249,394,7,1271,15226 +110250,182,8,74581,1029788 +110251,234,1,378435,1341116 +110252,387,10,320873,83594 +110253,269,9,10529,2679 +110254,204,9,3870,34855 +110255,208,2,45132,1458988 +110256,289,6,390747,1662621 +110257,204,9,15239,1355596 +110258,3,5,46190,12307 +110259,317,10,252680,590281 +110260,269,9,298584,1069713 +110261,387,10,75315,64117 +110262,234,1,316268,1410542 +110263,158,2,337339,1506366 +110264,3,5,153102,13670 +110265,234,1,55720,3288 +110266,105,7,48207,1860887 +110267,268,7,10543,1443065 +110268,317,10,24348,68993 +110269,3,5,12707,9867 +110270,317,10,179847,1126 +110271,77,10,9815,58987 +110272,99,3,55156,76812 +110273,273,7,9753,15874 +110274,317,10,210047,209879 +110275,317,10,54396,1300627 +110276,387,10,11654,70378 +110277,52,10,274991,1117901 +110278,365,6,23452,124889 +110279,3,5,46857,137610 +110280,317,10,99826,11805 +110281,124,3,379019,1780166 +110282,317,10,28577,238741 +110283,387,10,73208,200715 +110284,198,6,8617,1552369 +110285,357,3,205584,1585734 +110286,394,7,10004,95837 +110287,60,1,65904,1619400 +110288,289,6,10539,1454031 +110289,317,10,53354,1374747 +110290,196,7,10865,1401786 +110291,187,11,55846,1404861 +110292,3,5,173847,72751 +110293,286,3,39347,70848 +110294,273,7,43205,38646 +110295,141,7,25430,1090879 +110296,204,9,9352,11457 +110297,75,5,324670,1571112 +110298,3,5,23169,1171528 +110299,413,11,15875,14961 +110300,234,1,19209,69982 +110301,234,1,1254,21669 +110302,234,1,23518,13776 +110303,273,7,45577,133242 +110304,226,2,74126,1567540 +110305,234,1,46885,31177 +110306,300,3,11547,1557604 +110307,3,5,6440,16425 +110308,415,3,12593,1458329 +110309,413,11,3146,30466 +110310,413,11,63333,31251 +110311,413,11,3549,32722 +110312,387,10,83491,932931 +110313,175,5,42418,1827970 +110314,3,5,159095,30313 +110315,317,10,197583,7847 +110316,262,6,333484,1580895 +110317,77,10,16076,79172 +110318,273,7,101929,1487840 +110319,411,9,168259,1424153 +110320,273,7,10004,57902 +110321,317,10,20648,24949 +110322,289,6,9514,1642589 +110323,273,7,10805,66887 +110324,373,7,436,1342242 +110325,234,1,32891,1187306 +110326,64,6,13777,167789 +110327,413,11,8329,28500 +110328,75,5,102382,18087 +110329,387,10,43365,14646 +110330,234,1,334,4762 +110331,5,10,82501,51669 +110332,333,2,168259,1459196 +110333,97,7,10389,1437886 +110334,3,5,226140,1098928 +110335,387,10,38282,1769946 +110336,387,10,41166,8403 +110337,3,5,786,2483 +110338,60,1,31509,1349415 +110339,328,6,773,1387251 +110340,289,6,9514,1356774 +110341,269,9,9095,5491 +110342,273,7,857,491 +110343,289,6,9514,1642544 +110344,234,1,68646,107639 +110345,413,11,112722,1404128 +110346,269,9,87296,1598862 +110347,262,6,13614,1378478 +110348,182,8,55420,1400106 +110349,143,7,197696,930008 +110350,387,10,36943,154520 +110351,413,11,23196,13522 +110352,204,9,104297,7306 +110353,234,1,369245,56842 +110354,413,11,34223,42120 +110355,234,1,113255,6818 +110356,162,6,346672,1660722 +110357,317,10,398452,1623222 +110358,234,1,107096,63937 +110359,3,5,43342,14431 +110360,387,10,11001,67754 +110361,317,10,217923,26760 +110362,75,5,1251,1377131 +110363,387,10,7237,52140 +110364,60,1,18,1427298 +110365,333,2,245700,1413028 +110366,148,9,9639,1565953 +110367,296,3,9716,91065 +110368,22,9,72545,91860 +110369,3,5,41609,98442 +110370,236,8,318553,1686959 +110371,234,1,343809,1475136 +110372,75,5,76163,226464 +110373,234,1,59006,19656 +110374,3,5,125736,1555843 +110375,3,5,377158,20701 +110376,234,1,49084,133398 +110377,52,10,264080,102927 +110378,273,7,17111,552419 +110379,234,1,121462,148103 +110380,180,7,17057,1027014 +110381,104,7,9563,1552062 +110382,204,9,9423,1324883 +110383,387,10,31993,8617 +110384,132,2,10096,83064 +110385,3,5,127901,224493 +110386,257,3,3597,13072 +110387,203,1,163,1391605 +110388,105,7,15935,78966 +110389,273,7,43117,8619 +110390,413,11,2778,1083680 +110391,317,10,339148,1332325 +110392,141,7,266856,117992 +110393,234,1,38006,39853 +110394,148,9,48156,9063 +110395,204,9,55420,1193631 +110396,234,1,17911,65242 +110397,291,6,857,6060 +110398,244,3,2001,1781735 +110399,117,5,32099,108850 +110400,387,10,25673,13267 +110401,166,9,15472,1455330 +110402,328,6,375366,1740786 +110403,160,3,11046,161961 +110404,3,5,290379,127523 +110405,53,2,57749,1205940 +110406,148,9,105509,1605934 +110407,158,2,435,1392110 +110408,317,10,365447,1527515 +110409,234,1,14467,37239 +110410,5,10,30014,105504 +110411,175,5,244786,1420326 +110412,289,6,106112,153292 +110413,234,1,79500,19708 +110414,203,1,381518,1416957 +110415,162,6,31275,1853906 +110416,3,5,2196,17253 +110417,52,10,24655,53006 +110418,286,3,13440,16300 +110419,167,3,27259,1624419 +110420,54,10,201676,1183755 +110421,200,3,140607,1550775 +110422,387,10,9292,5128 +110423,127,3,29611,104347 +110424,413,11,116236,1688337 +110425,411,9,118,5021 +110426,289,6,22779,150111 +110427,301,5,949,21118 +110428,132,2,359412,1762821 +110429,273,7,7445,153 +110430,234,1,34840,20718 +110431,413,11,38099,46326 +110432,413,11,135313,1102126 +110433,387,10,32043,1096990 +110434,317,10,100594,969806 +110435,328,6,58244,1392908 +110436,204,9,56391,1725079 +110437,289,6,67130,557253 +110438,204,9,283445,1141796 +110439,45,9,70586,1520598 +110440,53,2,55823,5681 +110441,413,11,47955,20954 +110442,60,1,522,17217 +110443,187,11,8464,1581514 +110444,273,7,70864,29500 +110445,3,5,264644,56021 +110446,273,7,19819,4613 +110447,192,5,336882,1409401 +110448,413,11,10739,1252 +110449,234,1,15144,11505 +110450,45,9,10204,1334493 +110451,199,3,142061,2293 +110452,3,5,8325,17136 +110453,277,3,57749,1411222 +110454,203,1,101998,1445377 +110455,39,3,38322,222290 +110456,52,10,3549,1011 +110457,232,10,46492,125691 +110458,20,2,246655,1713049 +110459,289,6,80928,225709 +110460,317,10,77246,581423 +110461,387,10,1938,86357 +110462,273,7,82470,12331 +110463,317,10,60160,230653 +110464,208,2,209112,112656 +110465,320,3,2105,1552180 +110466,209,7,7326,1367676 +110467,108,10,43596,5013 +110468,277,3,41312,254 +110469,340,2,72545,1532244 +110470,226,2,1165,1525893 +110471,234,1,10011,61986 +110472,333,2,91070,1085603 +110473,52,10,95414,89755 +110474,317,10,19200,1243 +110475,169,3,312221,1580887 +110476,234,1,315252,211138 +110477,269,9,40208,1820854 +110478,411,9,209401,986677 +110479,269,9,377447,1824980 +110480,105,7,21052,937146 +110481,175,5,36245,1585021 +110482,182,8,167073,1402034 +110483,325,5,975,240 +110484,108,10,163376,1244595 +110485,360,3,93856,1335142 +110486,413,11,55347,71622 +110487,127,3,20174,102429 +110488,387,10,28553,53006 +110489,22,9,1428,1836192 +110490,273,7,5544,3535 +110491,269,9,70981,944 +110492,253,6,375366,1740784 +110493,3,5,82341,933326 +110494,148,9,696,10442 +110495,234,1,291413,82822 +110496,234,1,62488,58154 +110497,210,9,379019,1780193 +110498,169,3,293167,1463404 +110499,317,10,39939,52049 +110500,413,11,387558,1076007 +110501,105,7,312669,105669 +110502,5,10,11694,70263 +110503,188,8,9902,1600633 +110504,416,10,40649,19707 +110505,3,5,9519,60404 +110506,234,1,334557,1194706 +110507,45,9,2454,1554878 +110508,234,1,60125,733442 +110509,183,5,337339,1738131 +110510,413,11,28430,40355 +110511,3,5,47900,10253 +110512,387,10,8471,55251 +110513,360,3,435,1391759 +110514,387,10,664,9986 +110515,289,6,53219,564040 +110516,75,5,9457,1421739 +110517,46,5,638,9377 +110518,273,7,333884,1448591 +110519,15,6,126889,1746432 +110520,203,1,6440,1484538 +110521,273,7,19946,18837 +110522,25,2,203321,582710 +110523,97,7,613,16887 +110524,273,7,43117,26026 +110525,143,7,154972,454855 +110526,317,10,234815,139595 +110527,232,10,108224,1157603 +110528,333,2,42852,13986 +110529,234,1,35016,113594 +110530,273,7,47876,1938 +110531,262,6,1125,1551515 +110532,273,7,102382,947 +110533,286,3,381645,151068 +110534,273,7,8998,56540 +110535,180,7,284053,1406872 +110536,226,2,241239,1416796 +110537,5,10,26644,1850827 +110538,273,7,32577,22047 +110539,236,8,11045,1717527 +110540,165,9,11351,1597177 +110541,196,7,329865,1566366 +110542,387,10,77958,7557 +110543,72,11,11370,1413507 +110544,3,5,14137,65394 +110545,317,10,103201,95135 +110546,53,2,31993,1012329 +110547,317,10,257450,9424 +110548,269,9,79316,1492033 +110549,387,10,89247,127657 +110550,413,11,12796,80259 +110551,387,10,43685,549130 +110552,413,11,214086,222357 +110553,4,6,369885,1737643 +110554,45,9,25376,1723528 +110555,269,9,9956,21830 +110556,3,5,24469,71086 +110557,413,11,31993,3159 +110558,317,10,33489,16862 +110559,52,10,23096,26511 +110560,387,10,39943,123581 +110561,234,1,11012,15389 +110562,3,5,22029,133584 +110563,234,1,14369,82222 +110564,167,3,9532,1441268 +110565,277,3,2105,1552184 +110566,3,5,98125,4346 +110567,349,1,9297,1435377 +110568,234,1,54491,107274 +110569,204,9,262338,49345 +110570,53,2,116780,1731563 +110571,204,9,22881,1319750 +110572,213,10,33095,41968 +110573,413,11,59147,1688251 +110574,327,7,340488,17808 +110575,387,10,13205,74283 +110576,3,5,92389,31501 +110577,269,9,139159,1167049 +110578,273,7,103433,31229 +110579,234,1,37718,13 +110580,328,6,188927,1345602 +110581,234,1,53214,143059 +110582,53,2,147618,33176 +110583,160,3,28176,8432 +110584,413,11,77057,581141 +110585,105,7,14126,814150 +110586,404,6,274857,1789972 +110587,226,2,9457,1421693 +110588,148,9,1578,12437 +110589,317,10,26969,96691 +110590,286,3,60965,232046 +110591,273,7,51759,30256 +110592,317,10,150223,934994 +110593,204,9,87936,30926 +110594,234,1,91334,939440 +110595,127,3,126712,117589 +110596,234,1,211411,1195431 +110597,234,1,296344,1120003 +110598,413,11,40047,58135 +110599,262,6,9664,1392627 +110600,317,10,126958,1083432 +110601,304,10,393445,94564 +110602,317,10,57307,225890 +110603,75,5,330459,1428915 +110604,175,5,8869,1408721 +110605,273,7,10596,58057 +110606,181,7,19101,12533 +110607,342,3,14430,1521690 +110608,317,10,82650,67360 +110609,387,10,47876,6835 +110610,291,6,257088,1558086 +110611,3,5,1912,4652 +110612,204,9,15081,47415 +110613,160,3,33273,1448276 +110614,273,7,38955,60102 +110615,317,10,58384,29605 +110616,31,9,72545,1859967 +110617,413,11,90395,102784 +110618,234,1,3933,34891 +110619,67,10,109298,5449 +110620,273,7,15592,3535 +110621,269,9,10145,959360 +110622,3,5,99261,63947 +110623,187,11,3172,138617 +110624,3,5,240913,967020 +110625,187,11,11618,138617 +110626,387,10,20907,140027 +110627,269,9,12697,1125167 +110628,317,10,11917,51023 +110629,328,6,75174,1412592 +110630,333,2,17295,1588523 +110631,398,9,3059,1556107 +110632,3,5,147939,1127739 +110633,3,5,29345,443441 +110634,148,9,41171,960447 +110635,317,10,51364,8635 +110636,3,5,5516,151 +110637,317,10,40208,1314832 +110638,273,7,42325,14861 +110639,291,6,246655,1394952 +110640,387,10,80032,19094 +110641,3,5,21132,5360 +110642,3,5,101908,1016306 +110643,387,10,140554,57763 +110644,127,3,106358,50310 +110645,314,2,339403,1635161 +110646,306,7,40998,1640317 +110647,273,7,68163,68531 +110648,209,7,44155,1161626 +110649,175,5,954,1361170 +110650,3,5,21208,69506 +110651,234,1,243987,1228986 +110652,301,5,10344,1394974 +110653,333,2,18417,83065 +110654,317,10,251232,1286519 +110655,234,1,9593,1090 +110656,273,7,123961,1885500 +110657,105,7,52705,103396 +110658,273,7,1073,5628 +110659,148,9,17332,1328145 +110660,77,10,108,1128 +110661,143,7,43727,80824 +110662,105,7,17136,1535874 +110663,269,9,214086,9269 +110664,234,1,44658,82796 +110665,190,7,1428,1520393 +110666,387,10,137182,221028 +110667,234,1,110552,57214 +110668,127,3,966,1183967 +110669,204,9,335778,1556479 +110670,234,1,161885,143463 +110671,376,10,62764,74342 +110672,160,3,25376,1584153 +110673,148,9,1942,93962 +110674,204,9,11643,35836 +110675,249,7,95516,1411128 +110676,204,9,39833,132251 +110677,21,3,246299,131611 +110678,269,9,128246,1419514 +110679,209,7,72431,1484222 +110680,60,1,16442,1544013 +110681,3,5,38775,70810 +110682,5,10,29787,116394 +110683,204,9,3563,32903 +110684,53,2,2428,24797 +110685,234,1,270759,1188 +110686,226,2,691,958468 +110687,387,10,21430,39104 +110688,387,10,838,687 +110689,234,1,33107,137422 +110690,123,3,85377,58160 +110691,360,3,857,1662344 +110692,108,10,42402,11626 +110693,203,1,156711,1410205 +110694,5,10,36615,122223 +110695,12,10,2758,69660 +110696,234,1,136146,1308144 +110697,413,11,10436,3661 +110698,3,5,80717,1065251 +110699,387,10,32996,101889 +110700,413,11,32600,8635 +110701,226,2,69,1484966 +110702,413,11,99861,35176 +110703,234,1,27300,126125 +110704,317,10,43469,1009150 +110705,143,7,445993,1460016 +110706,234,1,74878,32096 +110707,234,1,297736,1374538 +110708,53,2,15849,13959 +110709,187,11,95516,1411127 +110710,234,1,44921,76981 +110711,413,11,61151,4309 +110712,317,10,255913,78221 +110713,3,5,45019,13140 +110714,301,5,9664,1393365 +110715,105,7,17144,1436529 +110716,158,2,17046,81266 +110717,148,9,351365,1178593 +110718,3,5,21765,35511 +110719,387,10,74753,295892 +110720,158,2,4413,1406900 +110721,188,8,414977,1676803 +110722,64,6,10066,1864803 +110723,413,11,52637,23402 +110724,234,1,26486,2689 +110725,187,11,223485,1531096 +110726,196,7,11975,1558254 +110727,148,9,189,1401123 +110728,273,7,236808,1123764 +110729,387,10,182899,230590 +110730,387,10,373397,230581 +110731,413,11,82327,984014 +110732,187,11,298,1419812 +110733,53,2,65545,1687756 +110734,53,2,262357,1442941 +110735,317,10,97206,65817 +110736,204,9,118134,32999 +110737,328,6,293167,1621770 +110738,394,7,19594,1814531 +110739,273,7,10005,61843 +110740,234,1,10344,64875 +110741,234,1,13017,74100 +110742,286,3,105760,67285 +110743,373,7,241239,1425978 +110744,413,11,169760,962392 +110745,317,10,92389,152680 +110746,5,10,356296,236588 +110747,221,3,9716,1661580 +110748,103,6,241239,1468572 +110749,244,3,3933,1117950 +110750,97,7,228496,1338143 +110751,317,10,77294,1088722 +110752,317,10,315723,986834 +110753,179,2,257088,1335886 +110754,289,6,72105,1455539 +110755,67,10,3172,1553269 +110756,226,2,165,1162118 +110757,226,2,98364,14681 +110758,286,3,51423,1025533 +110759,5,10,72203,3850 +110760,234,1,12113,578 +110761,333,2,407448,1468624 +110762,148,9,17771,1602309 +110763,234,1,23114,31497 +110764,5,10,76651,579729 +110765,179,2,215928,1537710 +110766,317,10,362617,1350506 +110767,413,11,48677,16594 +110768,234,1,318184,584991 +110769,234,1,21605,18357 +110770,234,1,233917,148011 +110771,97,7,353728,1699377 +110772,53,2,74879,1043365 +110773,234,1,82684,10781 +110774,60,1,97910,80568 +110775,273,7,64944,572245 +110776,158,2,62630,1423430 +110777,175,5,10008,1399563 +110778,141,7,74,43592 +110779,234,1,26768,56634 +110780,301,5,10733,1446661 +110781,413,11,42569,1080401 +110782,398,9,1271,1391751 +110783,5,10,29136,103040 +110784,286,3,191112,1171679 +110785,328,6,58244,1401569 +110786,75,5,183412,1419636 +110787,333,2,17978,14436 +110788,234,1,16197,1203482 +110789,317,10,70989,64210 +110790,269,9,261246,47696 +110791,74,5,1586,1590080 +110792,105,7,24150,15221 +110793,360,3,132363,1333980 +110794,53,2,168031,1355547 +110795,273,7,33201,146180 +110796,387,10,3035,29805 +110797,209,7,9425,1409721 +110798,234,1,17073,1184485 +110799,387,10,369245,56842 +110800,387,10,83890,1143005 +110801,182,8,190955,1372093 +110802,317,10,76101,228102 +110803,182,8,159211,1438460 +110804,234,1,31522,3776 +110805,127,3,345922,1366 +110806,234,1,147767,131856 +110807,209,7,11812,1384393 +110808,52,10,20287,8328 +110809,317,10,83195,895870 +110810,53,2,25241,1176038 +110811,234,1,27259,50757 +110812,53,2,10257,64429 +110813,141,7,118,1554041 +110814,286,3,31027,68328 +110815,387,10,73160,929727 +110816,52,10,134355,157272 +110817,77,10,273,3870 +110818,317,10,163942,1012238 +110819,81,3,9472,1567952 +110820,148,9,4551,38021 +110821,155,3,19719,85133 +110822,67,10,45772,1447338 +110823,236,8,3597,1790564 +110824,317,10,112885,5787 +110825,413,11,30973,10751 +110826,3,5,70586,68441 +110827,328,6,82448,927995 +110828,209,7,10948,70541 +110829,403,10,3638,18903 +110830,234,1,429238,812068 +110831,394,7,9563,1412452 +110832,412,9,163,1574114 +110833,306,7,18079,1589098 +110834,317,10,379335,1568231 +110835,317,10,45899,120227 +110836,268,7,39148,122938 +110837,75,5,705,1537732 +110838,286,3,105384,1355434 +110839,413,11,331161,1336974 +110840,166,9,11377,1435578 +110841,273,7,939,14283 +110842,317,10,298865,935933 +110843,20,2,10395,543194 +110844,317,10,242042,48493 +110845,234,1,162374,1144649 +110846,52,10,32628,10517 +110847,273,7,44741,240264 +110848,20,2,13056,1611787 +110849,234,1,103218,230598 +110850,234,1,35404,5029 +110851,168,3,435,91042 +110852,187,11,9946,1392901 +110853,317,10,120172,1570077 +110854,204,9,17577,1423830 +110855,413,11,74879,1600453 +110856,60,1,10915,4385 +110857,311,9,8619,1858338 +110858,234,1,261439,107414 +110859,34,8,263115,1425341 +110860,244,3,26517,15056 +110861,273,7,27036,96849 +110862,327,7,2978,1864221 +110863,387,10,43172,148431 +110864,225,7,9472,1562804 +110865,96,2,365942,1738146 +110866,175,5,8470,1436525 +110867,203,1,142402,1117115 +110868,203,1,8915,1399521 +110869,398,9,46261,1425376 +110870,234,1,58878,125085 +110871,317,10,198993,30026 +110872,413,11,258480,53713 +110873,148,9,9543,12787 +110874,333,2,379019,1780129 +110875,5,10,340027,1466674 +110876,245,3,69401,1640322 +110877,127,3,924,15230 +110878,52,10,17770,1569464 +110879,413,11,133521,1142943 +110880,60,1,112885,10015 +110881,188,8,118,1855221 +110882,256,3,10020,1450362 +110883,53,2,257534,1297709 +110884,289,6,94820,1453514 +110885,373,7,198663,16177 +110886,60,1,43850,1022067 +110887,52,10,82684,928567 +110888,82,6,109477,1046587 +110889,328,6,17577,1423841 +110890,387,10,204553,1121891 +110891,394,7,406431,1650631 +110892,387,10,9541,19303 +110893,269,9,15762,45090 +110894,105,7,296491,14807 +110895,15,6,6171,1426773 +110896,317,10,64191,108899 +110897,387,10,70133,144862 +110898,387,10,80264,10769 +110899,269,9,397717,1394660 +110900,226,2,294254,1571510 +110901,3,5,373514,19102 +110902,234,1,215740,72908 +110903,3,5,39056,1580505 +110904,262,6,7551,1337418 +110905,413,11,88036,51868 +110906,328,6,9423,1389592 +110907,387,10,51044,14053 +110908,273,7,27703,59366 +110909,234,1,190955,19866 +110910,317,10,13630,447777 +110911,317,10,324251,1599899 +110912,143,7,809,42267 +110913,196,7,25376,1147905 +110914,317,10,83481,798034 +110915,349,1,14317,1447459 +110916,413,11,8292,53641 +110917,46,5,297762,1824258 +110918,394,7,12831,73916 +110919,317,10,29698,83287 +110920,148,9,2525,25804 +110921,3,5,10946,67597 +110922,52,10,53573,148508 +110923,234,1,54752,10781 +110924,234,1,9948,60725 +110925,333,2,47112,1330586 +110926,148,9,35021,1611205 +110927,234,1,157343,9054 +110928,317,10,13962,960811 +110929,105,7,2760,27910 +110930,387,10,285,1705 +110931,3,5,50725,47293 +110932,196,7,170279,1580927 +110933,166,9,70981,1390340 +110934,112,3,352327,1491848 +110935,273,7,59197,959364 +110936,187,11,75174,558230 +110937,143,7,20,2330 +110938,317,10,25536,135830 +110939,413,11,117550,118196 +110940,234,1,124057,30586 +110941,28,9,2567,1739543 +110942,52,10,24825,136989 +110943,180,7,8340,1566438 +110944,3,5,939,14284 +110945,234,1,43114,18574 +110946,148,9,37686,73348 +110947,317,10,389972,72496 +110948,387,10,52827,196125 +110949,317,10,12412,72135 +110950,5,10,102197,1265106 +110951,269,9,29825,12637 +110952,273,7,8491,56004 +110953,234,1,11456,23213 +110954,357,3,75174,1472416 +110955,75,5,525,122133 +110956,148,9,43868,8508 +110957,234,1,30966,81502 +110958,3,5,400,5506 +110959,317,10,45098,144410 +110960,169,3,285,1368867 +110961,413,11,17962,25645 +110962,53,2,130739,1201976 +110963,187,11,7299,1413095 +110964,66,11,356752,1394680 +110965,74,5,325712,1879688 +110966,198,6,395883,1636733 +110967,175,5,314065,1466257 +110968,387,10,338189,143593 +110969,387,10,39979,98482 +110970,204,9,22023,1397305 +110971,387,10,4825,10601 +110972,387,10,306555,1390114 +110973,387,10,41038,1007265 +110974,413,11,76829,1663 +110975,373,7,22803,1387195 +110976,387,10,9298,6733 +110977,179,2,5915,1547239 +110978,3,5,72207,403 +110979,77,10,9904,60212 +110980,180,7,39284,8740 +110981,413,11,84337,30494 +110982,141,7,1586,1554041 +110983,273,7,53857,29967 +110984,387,10,128120,73752 +110985,349,1,15653,1767039 +110986,204,9,630,9062 +110987,234,1,63340,88148 +110988,286,3,291907,1362894 +110989,5,10,318922,1494775 +110990,75,5,8619,1377228 +110991,3,5,259292,89218 +110992,72,11,145135,1417876 +110993,314,2,167073,1516458 +110994,291,6,176,1280435 +110995,234,1,42669,9054 +110996,234,1,243934,1279066 +110997,317,10,15797,16590 +110998,32,8,354859,1884078 +110999,273,7,41516,30268 +111000,317,10,28071,72891 +111001,317,10,339342,1168715 +111002,413,11,9292,541 +111003,387,10,21629,26511 +111004,306,7,8247,113046 +111005,226,2,8619,1619079 +111006,234,1,30402,56979 +111007,66,11,73835,1606297 +111008,317,10,298296,1375751 +111009,189,3,195269,1393421 +111010,413,11,33740,8863 +111011,148,9,188826,1583203 +111012,273,7,73723,11098 +111013,409,7,7220,1762665 +111014,208,2,365942,1333900 +111015,317,10,24645,92117 +111016,317,10,226188,47100 +111017,328,6,49009,1373434 +111018,105,7,80473,1314750 +111019,105,7,42182,969913 +111020,113,9,2924,1208355 +111021,204,9,62330,31256 +111022,204,9,312221,16494 +111023,273,7,434873,1859547 +111024,148,9,271185,22070 +111025,3,5,8842,356 +111026,317,10,199647,1179827 +111027,317,10,113739,1057677 +111028,196,7,41283,58363 +111029,3,5,132859,12418 +111030,209,7,287,15315 +111031,413,11,10201,6742 +111032,413,11,328429,1113298 +111033,234,1,36113,15156 +111034,415,3,24619,1849996 +111035,148,9,353686,1548106 +111036,387,10,209406,64919 +111037,53,2,32657,6057 +111038,105,7,7220,27181 +111039,333,2,43470,4128 +111040,234,1,337549,142517 +111041,250,11,225728,1437162 +111042,286,3,169656,234290 +111043,105,7,156981,1307785 +111044,53,2,73565,15329 +111045,298,5,11024,1461175 +111046,373,7,413762,1143389 +111047,67,10,15653,1120174 +111048,387,10,70313,105735 +111049,413,11,99329,1694695 +111050,387,10,99261,1197370 +111051,269,9,2100,10819 +111052,226,2,43241,29640 +111053,419,10,15909,223236 +111054,3,5,198511,1632 +111055,160,3,18392,156108 +111056,234,1,29192,228708 +111057,158,2,9882,1774550 +111058,387,10,54236,37590 +111059,239,5,339403,1552009 +111060,289,6,146730,112993 +111061,105,7,3309,13571 +111062,160,3,2047,161787 +111063,273,7,43880,72066 +111064,52,10,205349,1081034 +111065,413,11,368006,1504441 +111066,204,9,144111,8506 +111067,52,10,15089,1471559 +111068,245,3,219466,1640817 +111069,234,1,102222,25527 +111070,234,1,60392,230978 +111071,328,6,70667,1448318 +111072,411,9,263115,60222 +111073,234,1,8985,1086267 +111074,413,11,46992,9154 +111075,160,3,19995,1401804 +111076,204,9,31945,5672 +111077,108,10,42641,590605 +111078,262,6,44943,1403404 +111079,413,11,433244,1738380 +111080,60,1,61934,1093512 +111081,12,10,31947,3238 +111082,317,10,373541,1159944 +111083,148,9,274479,5391 +111084,411,9,11639,10472 +111085,204,9,304134,1526518 +111086,20,2,28176,10970 +111087,204,9,2757,5956 +111088,3,5,63333,30837 +111089,328,6,102629,1345266 +111090,273,7,16154,79730 +111091,113,9,127372,1431505 +111092,166,9,42309,1440404 +111093,387,10,12606,13614 +111094,75,5,15613,1407023 +111095,158,2,76757,1482846 +111096,226,2,1369,16572 +111097,317,10,256092,1325839 +111098,28,9,8470,1391760 +111099,52,10,182035,1057674 +111100,394,7,15613,1442508 +111101,317,10,174720,1308426 +111102,387,10,9028,49450 +111103,105,7,9470,57607 +111104,76,2,17771,1411075 +111105,269,9,601,9967 +111106,234,1,15267,8300 +111107,333,2,379019,1780135 +111108,234,1,37108,62043 +111109,77,10,1381,6431 +111110,317,10,13312,81044 +111111,125,2,9902,1408667 +111112,387,10,10735,59187 +111113,226,2,145135,1417861 +111114,234,1,18597,78176 +111115,75,5,210653,1766527 +111116,148,9,228647,9063 +111117,286,3,146730,112994 +111118,387,10,9507,4782 +111119,293,2,857,1662320 +111120,403,10,10198,1615553 +111121,413,11,20301,871 +111122,3,5,84185,1074666 +111123,317,10,11230,68671 +111124,398,9,181533,1384362 +111125,413,11,26946,231373 +111126,317,10,83761,119294 +111127,413,11,11296,9163 +111128,200,3,9593,1379396 +111129,413,11,10857,70539 +111130,273,7,261249,30681 +111131,387,10,329010,1587602 +111132,204,9,198652,18986 +111133,204,9,131966,1178592 +111134,175,5,351211,1400407 +111135,203,1,264525,1431108 +111136,32,8,11377,1602877 +111137,204,9,1687,9587 +111138,234,1,157409,98251 +111139,180,7,49689,1594806 +111140,179,2,103432,1830935 +111141,387,10,104602,47844 +111142,175,5,340101,75107 +111143,234,1,61908,84940 +111144,387,10,26958,1174324 +111145,413,11,9312,3961 +111146,387,10,29113,69948 +111147,273,7,9914,60405 +111148,333,2,199155,1526483 +111149,413,11,73116,200484 +111150,398,9,11812,958691 +111151,325,5,263115,1463293 +111152,208,2,60599,1329529 +111153,273,7,225285,929145 +111154,413,11,27739,98865 +111155,314,2,2675,32492 +111156,60,1,53857,10015 +111157,52,10,68097,103925 +111158,413,11,193756,18617 +111159,75,5,28032,1462792 +111160,317,10,158908,1140270 +111161,373,7,25941,40819 +111162,53,2,4806,8885 +111163,169,3,9835,1416584 +111164,317,10,307081,200043 +111165,273,7,64129,5184 +111166,273,7,7340,14138 +111167,269,9,4887,40031 +111168,301,5,243940,1525157 +111169,387,10,48852,106019 +111170,204,9,13437,5672 +111171,60,1,126889,1578651 +111172,387,10,63186,6295 +111173,262,6,55420,1400102 +111174,387,10,29787,14999 +111175,273,7,424014,1420172 +111176,187,11,9472,1357059 +111177,317,10,143380,1280714 +111178,287,3,47386,138783 +111179,273,7,12311,72066 +111180,234,1,421741,237511 +111181,413,11,43469,33468 +111182,287,3,283384,1413898 +111183,387,10,298584,69803 +111184,3,5,140032,13972 +111185,413,11,43155,1067439 +111186,148,9,68737,11021 +111187,234,1,132518,1095725 +111188,373,7,287,91085 +111189,269,9,156711,1443031 +111190,402,11,240881,1327842 +111191,387,10,68191,70045 +111192,273,7,18495,35838 +111193,317,10,257345,453498 +111194,66,11,220820,1885863 +111195,317,10,24797,60585 +111196,148,9,12102,17877 +111197,333,2,58060,1630073 +111198,273,7,37731,555266 +111199,52,10,312221,1056121 +111200,203,1,107811,1364433 +111201,234,1,79892,29720 +111202,226,2,318553,1647030 +111203,12,10,20986,109192 +111204,105,7,30379,19746 +111205,387,10,73873,515 +111206,273,7,133328,89220 +111207,234,1,107973,129422 +111208,306,7,54563,26356 +111209,373,7,32080,18656 +111210,75,5,14254,1377131 +111211,387,10,168031,26884 +111212,317,10,24978,60545 +111213,286,3,173189,1155986 +111214,317,10,43009,44979 +111215,273,7,388862,52339 +111216,234,1,127817,1065698 +111217,317,10,74581,134343 +111218,234,1,32058,53861 +111219,67,10,154972,1755269 +111220,387,10,21711,225697 +111221,3,5,9977,3049 +111222,346,3,4147,1400539 +111223,196,7,310137,1583134 +111224,333,2,57489,1757095 +111225,317,10,376716,86860 +111226,5,10,54318,46299 +111227,273,7,10671,13571 +111228,175,5,180305,1420326 +111229,226,2,193893,1445824 +111230,317,10,319396,101930 +111231,200,3,324670,1401896 +111232,273,7,199647,1179841 +111233,204,9,34935,554870 +111234,317,10,77864,85670 +111235,317,10,43833,133237 +111236,3,5,20153,10150 +111237,401,6,59981,1451229 +111238,155,3,1986,56201 +111239,253,6,283995,1815922 +111240,387,10,10129,63908 +111241,234,1,27791,554474 +111242,204,9,31993,8622 +111243,15,6,10020,139474 +111244,234,1,110261,45672 +111245,77,10,9776,59164 +111246,269,9,16659,17165 +111247,209,7,26390,1407208 +111248,317,10,10389,31033 +111249,204,9,23367,59475 +111250,97,7,76543,1675116 +111251,273,7,171446,14283 +111252,3,5,93858,1166276 +111253,327,7,21671,227553 +111254,317,10,85009,130575 +111255,273,7,126516,1093460 +111256,32,8,11045,1585182 +111257,234,1,99642,567750 +111258,53,2,12171,962165 +111259,413,11,33314,61901 +111260,373,7,195269,1342242 +111261,413,11,78563,47639 +111262,239,5,52454,1630383 +111263,172,3,118,1855230 +111264,234,1,402446,1743407 +111265,3,5,207699,56324 +111266,105,7,41903,1325612 +111267,148,9,10925,44064 +111268,387,10,2029,20849 +111269,3,5,426265,1544238 +111270,3,5,10055,62583 +111271,234,1,30535,66166 +111272,3,5,105703,1158874 +111273,208,2,100669,35996 +111274,387,10,368006,85598 +111275,53,2,89086,1355547 +111276,293,2,69668,1877722 +111277,413,11,120497,120032 +111278,301,5,76203,983118 +111279,398,9,19995,1339441 +111280,317,10,52850,470 +111281,75,5,37936,100538 +111282,269,9,241239,1276817 +111283,234,1,52247,145608 +111284,413,11,62694,14962 +111285,204,9,53798,11036 +111286,234,1,42552,68913 +111287,273,7,31984,874306 +111288,387,10,3597,26458 +111289,333,2,1662,1511682 +111290,200,3,228066,1401147 +111291,413,11,3574,18800 +111292,52,10,95414,1048527 +111293,289,6,81310,148244 +111294,234,1,80343,22012 +111295,234,1,47863,139540 +111296,97,7,10929,548439 +111297,234,1,25903,290661 +111298,3,5,1689,7202 +111299,234,1,28387,5656 +111300,269,9,10866,21963 +111301,105,7,29896,1024243 +111302,53,2,8272,4190 +111303,328,6,245168,1394721 +111304,413,11,11561,16593 +111305,413,11,332079,127577 +111306,413,11,55922,1378569 +111307,5,10,75262,1330435 +111308,85,10,371645,1605314 +111309,175,5,254007,1448772 +111310,244,3,256962,1404749 +111311,269,9,209271,990139 +111312,317,10,85743,932556 +111313,53,2,29151,54900 +111314,5,10,18774,217624 +111315,45,9,14126,1334504 +111316,412,9,435,1567969 +111317,269,9,74,496 +111318,3,5,24453,57699 +111319,360,3,333371,1463352 +111320,286,3,220005,1184377 +111321,273,7,296225,46678 +111322,317,10,32526,59330 +111323,117,5,354133,1496091 +111324,234,1,121998,230349 +111325,207,3,241239,1468594 +111326,12,10,325133,1085179 +111327,5,10,79775,38233 +111328,234,1,76264,192 +111329,346,3,40807,1406057 +111330,155,3,390747,3727 +111331,319,1,126889,1805809 +111332,234,1,197297,1007638 +111333,204,9,97614,9271 +111334,234,1,44038,130080 +111335,262,6,1271,1394755 +111336,169,3,105965,1085298 +111337,273,7,8467,55165 +111338,234,1,20421,40345 +111339,413,11,2021,11072 +111340,387,10,76996,67583 +111341,105,7,89591,67507 +111342,234,1,37213,117071 +111343,3,5,844,12668 +111344,234,1,337876,1013089 +111345,273,7,18222,100544 +111346,22,9,418437,1816410 +111347,413,11,3164,30971 +111348,262,6,59115,1830884 +111349,387,10,131966,127535 +111350,387,10,13965,76193 +111351,204,9,332872,1087318 +111352,161,6,11045,1571781 +111353,234,1,56809,114597 +111354,234,1,186759,239075 +111355,373,7,140554,1425568 +111356,333,2,76163,1327184 +111357,5,10,11975,11060 +111358,204,9,31027,550957 +111359,317,10,74879,56214 +111360,387,10,10659,24120 +111361,141,7,22897,68016 +111362,85,10,77794,328424 +111363,234,1,50463,18281 +111364,413,11,46494,136399 +111365,3,5,9918,46784 +111366,52,10,176,2127 +111367,203,1,266856,1402943 +111368,53,2,77012,20123 +111369,413,11,10652,66105 +111370,286,3,325365,1100066 +111371,105,7,151937,40399 +111372,234,1,119893,1066705 +111373,105,7,412202,1669187 +111374,273,7,9956,13604 +111375,413,11,141955,19334 +111376,3,5,125513,1462950 +111377,52,10,36657,10994 +111378,204,9,262338,1138277 +111379,77,10,16076,79171 +111380,53,2,1381,6057 +111381,180,7,63401,19060 +111382,3,5,43316,13809 +111383,234,1,222297,78419 +111384,317,10,175065,40054 +111385,182,8,50126,1577973 +111386,349,1,9297,1462665 +111387,234,1,15310,2087 +111388,196,7,9928,92389 +111389,234,1,267931,1107724 +111390,52,10,106747,1337108 +111391,413,11,10500,23400 +111392,40,1,11351,1371001 +111393,387,10,12103,71244 +111394,196,7,26390,1023984 +111395,204,9,106020,33218 +111396,273,7,744,799 +111397,204,9,31682,12346 +111398,317,10,251227,1286554 +111399,234,1,27380,67767 +111400,317,10,104810,545763 +111401,415,3,287,4062 +111402,77,10,10268,64534 +111403,5,10,243987,32982 +111404,234,1,31880,7409 +111405,317,10,69903,9791 +111406,182,8,130948,1298941 +111407,387,10,289159,1357686 +111408,204,9,257345,1423985 +111409,387,10,264525,76869 +111410,204,9,99861,1326458 +111411,269,9,13279,905 +111412,413,11,16638,14491 +111413,262,6,345925,1296826 +111414,273,7,12205,57304 +111415,169,3,2046,4063 +111416,53,2,97910,8717 +111417,387,10,2998,66674 +111418,53,2,199647,1179843 +111419,413,11,159667,966564 +111420,234,1,239018,80523 +111421,158,2,19255,1552355 +111422,387,10,47446,65843 +111423,286,3,14159,1178237 +111424,262,6,8204,1377225 +111425,245,3,32068,1807522 +111426,317,10,126323,229180 +111427,387,10,291558,131408 +111428,413,11,310137,45552 +111429,175,5,368006,1640315 +111430,317,10,59191,59187 +111431,317,10,21533,1095381 +111432,317,10,275060,1167896 +111433,234,1,51167,61854 +111434,3,5,26283,11442 +111435,413,11,301228,1519840 +111436,387,10,68822,58232 +111437,3,5,12206,71646 +111438,160,3,34723,1395059 +111439,234,1,297814,139280 +111440,87,7,8414,107837 +111441,394,7,167073,40810 +111442,317,10,327237,65472 +111443,75,5,50725,1433655 +111444,234,1,59051,174678 +111445,333,2,6171,1426762 +111446,317,10,54243,141814 +111447,387,10,69,366 +111448,176,3,102382,1347732 +111449,317,10,88271,131010 +111450,327,7,126090,1484470 +111451,239,5,7326,1579180 +111452,360,3,8053,1576843 +111453,250,11,176,1817641 +111454,234,1,52612,14606 +111455,269,9,275696,1064439 +111456,317,10,352164,1491543 +111457,3,5,11647,70749 +111458,234,1,57342,55916 +111459,317,10,57230,225723 +111460,413,11,246655,9039 +111461,3,5,9951,60809 +111462,52,10,42871,129039 +111463,387,10,53798,148864 +111464,387,10,10647,66106 +111465,234,1,28851,102177 +111466,387,10,10796,57134 +111467,292,3,9593,1877112 +111468,234,1,51303,122969 +111469,204,9,30959,552639 +111470,413,11,244403,20568 +111471,289,6,44283,1455541 +111472,204,9,18642,5188 +111473,387,10,13957,76111 +111474,234,1,177354,1159715 +111475,327,7,21786,1336919 +111476,387,10,54795,126454 +111477,148,9,139455,55179 +111478,301,5,313922,1616453 +111479,226,2,198663,578730 +111480,250,11,198663,1400506 +111481,196,7,50725,1412699 +111482,269,9,266102,1606167 +111483,387,10,63190,236589 +111484,245,3,127372,1431516 +111485,148,9,95627,32606 +111486,28,9,8869,1552536 +111487,234,1,452372,1036191 +111488,75,5,9042,1409224 +111489,234,1,16417,80526 +111490,204,9,25953,120205 +111491,317,10,246655,9032 +111492,105,7,18971,40150 +111493,3,5,26516,4308 +111494,20,2,10733,1532720 +111495,182,8,413452,1877806 +111496,180,7,74126,1542919 +111497,204,9,31805,8622 +111498,387,10,43915,10931 +111499,20,2,405473,1800059 +111500,413,11,102222,1327846 +111501,273,7,340215,1201107 +111502,273,7,193756,1201063 +111503,250,11,318922,1575356 +111504,53,2,34181,1876051 +111505,182,8,52661,120795 +111506,3,5,184795,40052 +111507,269,9,18514,35147 +111508,152,2,126889,961143 +111509,273,7,11442,25548 +111510,200,3,206647,1428902 +111511,360,3,3035,1522922 +111512,204,9,140607,1373701 +111513,413,11,35026,45846 +111514,262,6,302828,1233109 +111515,286,3,133255,127198 +111516,75,5,18352,1602100 +111517,3,5,96936,10688 +111518,360,3,21786,1336912 +111519,234,1,56558,37362 +111520,77,10,9787,4319 +111521,87,7,141,1546047 +111522,203,1,356296,1643802 +111523,273,7,22881,1225 +111524,209,7,239566,7538 +111525,105,7,16058,79114 +111526,105,7,275136,1330510 +111527,317,10,75626,1173145 +111528,105,7,31364,37241 +111529,314,2,167,1465623 +111530,87,7,55347,1532396 +111531,12,10,15371,24767 +111532,333,2,6163,1905065 +111533,262,6,7299,1404533 +111534,180,7,43469,1538468 +111535,226,2,9426,1445976 +111536,234,1,37978,103699 +111537,60,1,10671,37360 +111538,187,11,277713,1404861 +111539,203,1,12171,1404871 +111540,234,1,351365,103346 +111541,234,1,69428,292250 +111542,160,3,30361,182095 +111543,273,7,33472,1938 +111544,52,10,93492,56721 +111545,292,3,1586,1611790 +111546,327,7,93858,1875123 +111547,273,7,93676,20648 +111548,234,1,56816,225014 +111549,234,1,44793,982586 +111550,387,10,29151,17697 +111551,234,1,3597,33254 +111552,234,1,34231,112174 +111553,226,2,435,1418454 +111554,155,3,13929,7911 +111555,317,10,261037,16852 +111556,166,9,241239,91071 +111557,269,9,294016,60193 +111558,328,6,76757,536491 +111559,189,3,9946,1357070 +111560,234,1,40761,33883 +111561,328,6,225728,1437160 +111562,317,10,158942,1140298 +111563,113,9,228066,1574052 +111564,3,5,80264,6452 +111565,105,7,90461,95665 +111566,5,10,1259,1171372 +111567,5,10,119374,1202606 +111568,234,1,245268,93906 +111569,269,9,230428,1464042 +111570,269,9,15177,77972 +111571,77,10,864,12965 +111572,161,6,329865,1646534 +111573,234,1,33740,145797 +111574,204,9,44105,1604770 +111575,160,3,186869,1399638 +111576,269,9,33556,1083220 +111577,87,7,16996,54514 +111578,387,10,55495,116155 +111579,234,1,105539,2891 +111580,387,10,84971,1503 +111581,286,3,13986,82079 +111582,234,1,45019,1128 +111583,3,5,31596,30946 +111584,413,11,153854,1396614 +111585,20,2,858,587803 +111586,333,2,10071,1532699 +111587,413,11,46924,28841 +111588,269,9,125490,15222 +111589,327,7,34078,1633099 +111590,387,10,43327,4357 +111591,413,11,28120,4167 +111592,3,5,61548,1129 +111593,99,3,3059,42060 +111594,204,9,74,7236 +111595,21,3,32328,148822 +111596,349,1,102161,573543 +111597,85,10,417820,231709 +111598,317,10,104376,113337 +111599,387,10,123025,212618 +111600,158,2,293660,1580831 +111601,413,11,226701,1291340 +111602,244,3,10733,1571755 +111603,250,11,19255,1551183 +111604,3,5,47508,1090854 +111605,5,10,37929,119147 +111606,317,10,58411,184478 +111607,204,9,19957,27937 +111608,158,2,74,1406848 +111609,262,6,395992,1770994 +111610,53,2,3087,8717 +111611,314,2,418437,1521093 +111612,234,1,24584,103586 +111613,238,7,289225,1406275 +111614,221,3,11607,75004 +111615,343,3,25645,18899 +111616,317,10,63304,107669 +111617,77,10,15664,10855 +111618,53,2,46286,20745 +111619,413,11,178587,64118 +111620,333,2,5123,1353528 +111621,148,9,43089,1465629 +111622,53,2,9843,59858 +111623,3,5,220,2760 +111624,3,5,5928,49358 +111625,413,11,174925,8636 +111626,387,10,2976,10367 +111627,289,6,32428,148152 +111628,20,2,11216,1631521 +111629,12,10,35026,24530 +111630,3,5,241374,14648 +111631,234,1,381767,1574550 +111632,234,1,72545,132876 +111633,45,9,375366,1580457 +111634,413,11,147876,14649 +111635,387,10,84508,240008 +111636,387,10,10626,2900 +111637,53,2,210092,1193690 +111638,234,1,72856,29962 +111639,413,11,43806,1182098 +111640,317,10,458808,1346455 +111641,317,10,9836,55474 +111642,349,1,13205,1779875 +111643,105,7,43522,1102214 +111644,18,2,2675,1596288 +111645,52,10,43546,935862 +111646,108,10,33792,149075 +111647,387,10,39358,96290 +111648,387,10,60505,144296 +111649,273,7,110980,44571 +111650,53,2,382873,1679703 +111651,52,10,289190,1357752 +111652,225,7,378485,1742506 +111653,317,10,127702,967703 +111654,291,6,287903,132614 +111655,31,9,118,1354916 +111656,169,3,21338,1630527 +111657,387,10,185273,133433 +111658,143,7,315837,58363 +111659,234,1,96888,1011135 +111660,3,5,21442,87536 +111661,387,10,2892,28741 +111662,268,7,9475,66167 +111663,273,7,27443,96251 +111664,317,10,82350,4664 +111665,52,10,192558,229109 +111666,317,10,15489,49904 +111667,234,1,238302,1272710 +111668,273,7,203819,1337328 +111669,373,7,225285,75099 +111670,387,10,408024,144762 +111671,262,6,46738,1536209 +111672,314,2,284564,1752053 +111673,53,2,47412,138902 +111674,413,11,1578,3661 +111675,113,9,41283,1428587 +111676,77,10,24821,111532 +111677,182,8,5924,559912 +111678,3,5,73896,231234 +111679,387,10,126927,168131 +111680,3,5,26954,554042 +111681,387,10,11122,68889 +111682,269,9,17609,6795 +111683,234,1,179188,5690 +111684,273,7,50327,570325 +111685,317,10,146315,1179020 +111686,317,10,69060,974548 +111687,387,10,103236,81986 +111688,387,10,201,932 +111689,204,9,221234,1284257 +111690,286,3,285858,936319 +111691,148,9,157847,958480 +111692,53,2,31947,91852 +111693,325,5,5804,313 +111694,234,1,189364,130988 +111695,360,9,264525,16997 +111696,387,10,341174,152003 +111697,53,2,13600,19310 +111698,166,9,11056,1335118 +111699,105,7,322922,959364 +111700,346,3,5289,939218 +111701,234,1,169022,1057492 +111702,234,1,173168,1155930 +111703,53,2,419459,1319731 +111704,349,1,10198,1461397 +111705,105,7,44877,565581 +111706,415,3,42683,119537 +111707,148,9,15613,19046 +111708,317,10,99095,34264 +111709,179,2,209112,1322016 +111710,187,11,273481,1568832 +111711,234,1,334074,11266 +111712,273,7,94468,10934 +111713,387,10,74753,4066 +111714,179,2,15749,1325690 +111715,269,9,7343,52531 +111716,413,11,10947,21794 +111717,204,9,2982,29279 +111718,317,10,295914,1719452 +111719,182,8,8470,1598759 +111720,158,2,7445,1406131 +111721,317,10,24059,115674 +111722,234,1,15671,18356 +111723,387,10,11402,14292 +111724,273,7,43141,4100 +111725,64,6,82448,927993 +111726,5,10,10747,66672 +111727,5,10,41581,126966 +111728,413,11,27349,57950 +111729,413,11,38157,72547 +111730,148,9,9890,17951 +111731,262,6,55534,1342601 +111732,234,1,351065,1265055 +111733,141,7,2897,29275 +111734,148,9,142391,1322108 +111735,286,3,25653,28000 +111736,317,10,24341,52122 +111737,3,5,11381,14536 +111738,373,7,2503,1391571 +111739,399,9,53211,573541 +111740,413,11,946,2920 +111741,387,10,19423,146846 +111742,317,10,77645,109852 +111743,387,10,61430,10533 +111744,1,7,397365,1653493 +111745,413,11,251232,1286519 +111746,3,5,399106,7980 +111747,97,7,410118,1136769 +111748,34,8,664,1408598 +111749,5,10,14931,98925 +111750,203,1,159667,1351024 +111751,169,3,70670,71165 +111752,226,2,9966,1424732 +111753,387,10,1724,11011 +111754,387,10,65881,1191478 +111755,273,7,14525,560193 +111756,249,7,9946,1395025 +111757,262,6,72431,1348005 +111758,148,9,71672,61158 +111759,203,1,26768,1568860 +111760,204,9,338676,1374787 +111761,196,7,4547,1399117 +111762,234,1,103578,106381 +111763,97,7,308269,1447901 +111764,3,5,1421,3569 +111765,204,9,140470,8622 +111766,239,5,42418,1827961 +111767,105,7,58732,17667 +111768,52,10,62213,1300 +111769,204,9,43092,93962 +111770,105,7,5759,1741936 +111771,317,10,260522,232859 +111772,387,10,9785,59248 +111773,234,1,126729,1083120 +111774,387,10,44658,82796 +111775,52,10,35632,114455 +111776,204,9,175035,9062 +111777,317,10,380058,177475 +111778,387,10,85052,550327 +111779,179,2,76163,1350256 +111780,147,1,42764,1012117 +111781,245,3,3087,1007702 +111782,52,10,30876,40926 +111783,373,7,949,1544638 +111784,234,1,12632,56201 +111785,3,5,30644,190257 +111786,148,9,9963,61094 +111787,387,10,1904,19852 +111788,105,7,5899,27879 +111789,413,11,222858,67853 +111790,3,5,71805,552320 +111791,53,2,82350,1003920 +111792,203,1,42739,1338291 +111793,226,2,287,74968 +111794,190,7,251227,1286571 +111795,53,2,70667,135954 +111796,317,10,19495,82798 +111797,381,9,693,1432587 +111798,34,8,62630,1266990 +111799,373,7,11351,1597217 +111800,317,10,88794,123997 +111801,234,1,79316,66681 +111802,23,9,924,1551668 +111803,75,5,22803,1525930 +111804,269,9,42045,1222 +111805,5,10,21544,959701 +111806,234,1,89756,127917 +111807,317,10,15527,33312 +111808,97,7,17111,1437886 +111809,187,11,70981,1352968 +111810,5,10,28969,117098 +111811,204,9,181876,992802 +111812,203,1,11547,1129907 +111813,53,2,379019,1780187 +111814,387,10,11391,69174 +111815,3,5,359245,1638333 +111816,5,10,151826,37127 +111817,148,9,40085,81384 +111818,85,10,212934,1724406 +111819,269,9,6038,7732 +111820,387,10,35,165810 +111821,387,10,41283,56281 +111822,360,3,52454,1630379 +111823,317,10,53648,2356 +111824,413,11,85196,99896 +111825,53,2,61934,12145 +111826,234,1,85126,73022 +111827,317,10,136146,1308144 +111828,3,5,209244,1098051 +111829,105,7,31287,45079 +111830,77,10,14400,1015895 +111831,204,9,35651,1590605 +111832,234,1,271039,1328180 +111833,413,11,25898,131411 +111834,333,2,16410,30939 +111835,387,10,6972,1707 +111836,413,11,101325,1429252 +111837,273,7,102630,1031252 +111838,273,7,86254,101022 +111839,317,10,305932,1389033 +111840,317,10,15260,413453 +111841,286,3,54146,96809 +111842,37,3,35,1448998 +111843,269,9,2758,9869 +111844,317,10,92496,1795204 +111845,234,1,134474,182174 +111846,5,10,43923,132714 +111847,317,10,18801,10076 +111848,317,10,2525,25798 +111849,273,7,11516,35073 +111850,413,11,80596,132588 +111851,161,6,544,1780233 +111852,331,3,8869,1552545 +111853,273,7,278706,1640387 +111854,234,1,40087,171170 +111855,3,5,2309,293 +111856,5,10,73348,570494 +111857,204,9,286521,1399455 +111858,387,10,46029,59879 +111859,53,2,22881,8411 +111860,105,7,76312,1024877 +111861,203,1,329440,1403359 +111862,3,5,290365,1360365 +111863,204,9,44921,3358 +111864,387,10,10776,62049 +111865,273,7,200505,4500 +111866,234,1,24202,2283 +111867,269,9,401164,1817404 +111868,317,10,218898,150478 +111869,234,1,6077,47786 +111870,52,10,253484,1295546 +111871,3,5,8869,31175 +111872,105,7,258193,1367359 +111873,376,10,38269,101225 +111874,357,3,98066,1759329 +111875,303,3,318781,1622813 +111876,287,3,765,107372 +111877,13,9,60488,980431 +111878,105,7,188826,1321167 +111879,169,3,9472,9456 +111880,83,2,188102,548598 +111881,175,5,703,1194262 +111882,234,1,310567,1398226 +111883,97,7,45019,9439 +111884,262,6,10066,1864804 +111885,3,5,117212,1098545 +111886,413,11,338189,143593 +111887,328,6,297762,1903932 +111888,226,2,9028,1734420 +111889,158,2,168259,1506364 +111890,74,5,379019,1780162 +111891,234,1,37291,91343 +111892,3,5,1058,1762 +111893,86,3,8204,1391822 +111894,209,7,11577,224966 +111895,287,3,42218,1358076 +111896,53,2,43075,4127 +111897,346,3,6972,1401745 +111898,234,1,31472,30700 +111899,3,5,158947,1523493 +111900,87,7,1480,342032 +111901,387,10,57201,66721 +111902,64,6,2604,1425994 +111903,301,5,16096,1395281 +111904,328,6,10727,1418300 +111905,273,7,109610,12700 +111906,143,7,95516,1187301 +111907,234,1,299828,58053 +111908,175,5,236808,1646135 +111909,244,3,9902,83347 +111910,209,7,315837,1387265 +111911,269,9,112531,960737 +111912,53,2,22803,6348 +111913,45,9,302026,1570579 +111914,113,9,613,1425849 +111915,234,1,172443,254114 +111916,179,2,76163,9493 +111917,226,2,1578,16538 +111918,3,5,271714,5667 +111919,154,3,3059,1572039 +111920,413,11,96132,3175 +111921,204,9,407,5595 +111922,53,2,240832,20722 +111923,5,10,3114,30548 +111924,387,10,14164,58037 +111925,148,9,388862,928271 +111926,317,10,75174,40223 +111927,388,9,228970,1867528 +111928,166,9,123109,1820650 +111929,387,10,26390,95324 +111930,3,5,82368,14268 +111931,317,10,227975,55018 +111932,53,2,345925,1517110 +111933,3,5,1381,4867 +111934,204,9,13954,1069712 +111935,77,10,9966,61118 +111936,60,1,107073,1481489 +111937,413,11,10400,1721 +111938,158,2,2503,1406848 +111939,244,3,2976,29211 +111940,46,5,76600,1897191 +111941,234,1,375366,1231927 +111942,3,5,9607,4501 +111943,3,5,84333,1675340 +111944,413,11,12652,20792 +111945,60,1,216363,1602835 +111946,306,7,40998,1666412 +111947,75,5,60599,1393571 +111948,53,2,2108,7719 +111949,269,9,60086,1069712 +111950,277,3,13336,1410594 +111951,413,11,11374,6189 +111952,234,1,238589,37710 +111953,148,9,1715,12258 +111954,327,7,34723,1429544 +111955,394,7,373546,1640714 +111956,234,1,16410,12238 +111957,413,11,57201,1722 +111958,289,6,328111,1479528 +111959,317,10,33003,109911 +111960,289,6,10539,1423225 +111961,234,1,53392,13848 +111962,226,2,11056,1418149 +111963,175,5,59115,1412328 +111964,273,7,121636,7182 +111965,204,9,308024,1069845 +111966,3,5,12605,54875 +111967,234,1,148451,30942 +111968,269,9,37305,1111050 +111969,190,7,337339,1787836 +111970,3,5,17386,33010 +111971,317,10,59147,932535 +111972,386,5,315837,12575 +111973,413,11,42494,58154 +111974,204,9,10087,6998 +111975,234,1,81600,87851 +111976,413,11,10867,39615 +111977,234,1,35032,13980 +111978,273,7,152737,278 +111979,413,11,83761,1355167 +111980,105,7,23966,1313019 +111981,415,3,98364,13292 +111982,204,9,43849,9062 +111983,204,9,21554,1000406 +111984,97,7,293167,80827 +111985,387,10,39045,193849 +111986,53,2,11889,19310 +111987,234,1,43978,20026 +111988,268,7,45019,930663 +111989,160,3,1903,15335 +111990,3,5,145244,41065 +111991,327,7,37633,19343 +111992,204,9,381015,1382491 +111993,387,10,22752,67373 +111994,85,10,174278,64859 +111995,155,3,10193,628 +111996,269,9,18352,1087137 +111997,234,1,32526,13861 +111998,203,1,122081,1719409 +111999,293,2,58244,1618802 +112000,3,5,10047,997 +112001,298,5,109424,1408392 +112002,64,6,269494,1452557 +112003,40,1,1586,1611808 +112004,387,10,10586,348 +112005,196,7,167073,1408374 +112006,127,3,9296,1332245 +112007,3,5,77056,67526 +112008,3,5,31509,8819 +112009,234,1,4550,10099 +112010,53,2,61548,5634 +112011,317,10,336549,99255 +112012,273,7,81463,1551806 +112013,234,1,6935,23728 +112014,52,10,40983,1531373 +112015,317,10,263855,131846 +112016,148,9,2978,4032 +112017,234,1,39039,87561 +112018,234,1,101669,2675 +112019,268,7,9358,1404841 +112020,413,11,34598,122464 +112021,187,11,755,1404838 +112022,346,3,15613,1399643 +112023,103,6,16374,1371285 +112024,360,3,77338,1724199 +112025,234,1,284052,55499 +112026,196,7,638,9417 +112027,234,1,53882,38689 +112028,3,5,36375,10537 +112029,5,10,131764,3353 +112030,314,2,196359,1547654 +112031,250,11,373546,1419729 +112032,305,9,12103,1861310 +112033,317,10,13493,1356794 +112034,143,7,11024,1414549 +112035,232,10,45219,22596 +112036,387,10,13531,65872 +112037,409,7,442752,1481655 +112038,413,11,107073,962197 +112039,148,9,28110,1433949 +112040,269,9,45988,1730424 +112041,75,5,76757,1390368 +112042,77,10,8008,53583 +112043,182,8,324670,1726030 +112044,333,2,7515,1537516 +112045,244,3,638,9405 +112046,320,3,390747,1662641 +112047,220,7,3085,34227 +112048,52,10,12,21198 +112049,387,10,11607,70005 +112050,204,9,8988,960673 +112051,394,7,74,1341403 +112052,208,2,6973,1269670 +112053,387,10,69152,92928 +112054,317,10,339362,1526647 +112055,234,1,12720,67075 +112056,203,1,60599,1400509 +112057,415,3,47386,138782 +112058,387,10,38987,6615 +112059,196,7,7299,1433718 +112060,234,1,30994,75286 +112061,387,10,31273,227217 +112062,273,7,17962,1087689 +112063,148,9,69668,957970 +112064,204,9,60599,1193618 +112065,53,2,46567,1008510 +112066,269,9,157351,1167490 +112067,262,6,206647,1551914 +112068,387,10,4832,39647 +112069,273,7,75564,1399616 +112070,3,5,344906,1478019 +112071,234,1,137683,90574 +112072,234,1,320011,22140 +112073,317,10,70863,77809 +112074,234,1,34944,8823 +112075,3,5,112991,589977 +112076,190,7,9314,1749139 +112077,3,5,84104,1114201 +112078,273,7,74924,1535446 +112079,3,5,17744,7753 +112080,3,5,199155,1262171 +112081,289,6,291270,1278671 +112082,108,10,96951,56712 +112083,286,3,256962,72972 +112084,105,7,376579,1661771 +112085,198,6,2978,1512019 +112086,317,10,66247,93194 +112087,317,10,25241,57239 +112088,273,7,86520,51808 +112089,53,2,15613,26984 +112090,273,7,10674,1760 +112091,143,7,24624,1484470 +112092,53,2,413882,1641647 +112093,333,2,188826,1468643 +112094,269,9,179154,9639 +112095,387,10,488,6593 +112096,273,7,8457,23486 +112097,413,11,31380,1337240 +112098,166,9,76163,1437693 +112099,169,3,37936,1707454 +112100,289,6,44510,5602 +112101,269,9,305127,1568237 +112102,234,1,117730,585248 +112103,234,1,228496,57851 +112104,317,10,84994,45489 +112105,360,3,294254,1571514 +112106,273,7,116327,19965 +112107,317,10,60935,115033 +112108,333,2,68684,1304298 +112109,53,2,85230,1031823 +112110,387,10,72096,1139745 +112111,143,7,47792,1393689 +112112,213,10,252773,1081846 +112113,234,1,1420,17016 +112114,357,3,19995,1483220 +112115,234,1,58076,82171 +112116,60,1,29492,73962 +112117,53,2,45649,1646384 +112118,387,10,387957,344781 +112119,234,1,298865,935933 +112120,289,6,72105,1455531 +112121,175,5,17332,1177850 +112122,226,2,6440,83066 +112123,413,11,3173,21905 +112124,413,11,183171,3486 +112125,301,5,55347,236613 +112126,53,2,72251,1632794 +112127,198,6,49009,1539294 +112128,12,10,1452,20008 +112129,323,10,79221,131503 +112130,18,2,11206,18369 +112131,317,10,125257,1081098 +112132,269,9,95136,1607806 +112133,45,9,68629,1538719 +112134,20,2,9352,1586334 +112135,413,11,8852,8751 +112136,204,9,37719,9062 +112137,250,11,329440,1396825 +112138,234,1,118690,1068377 +112139,413,11,8816,31194 +112140,64,6,33273,1367434 +112141,387,10,2758,32588 +112142,234,1,22779,74565 +112143,273,7,12622,73144 +112144,234,1,96987,45407 +112145,226,2,3476,21551 +112146,387,10,45610,133287 +112147,273,7,44458,66053 +112148,333,2,274504,1609048 +112149,273,7,14047,1213 +112150,3,5,201085,40268 +112151,269,9,319993,1389453 +112152,203,1,15440,1336936 +112153,229,6,201085,1403402 +112154,52,10,22371,47050 +112155,148,9,284053,62745 +112156,317,10,64304,96546 +112157,234,1,50166,57542 +112158,387,10,65496,25340 +112159,234,1,55934,545053 +112160,180,7,43228,1632930 +112161,169,3,10727,1418294 +112162,198,6,3057,1398930 +112163,74,5,373546,1869447 +112164,317,10,13056,78417 +112165,204,9,42149,1305808 +112166,169,3,206647,239885 +112167,204,9,43497,4085 +112168,286,3,25855,1132848 +112169,196,7,48231,1409225 +112170,328,6,921,1395365 +112171,317,10,154537,1135403 +112172,209,7,9032,1538435 +112173,74,5,284052,1509396 +112174,97,7,24624,295591 +112175,413,11,9464,6390 +112176,317,10,128866,98094 +112177,97,7,418437,9439 +112178,204,9,49521,60222 +112179,331,3,954,947741 +112180,387,10,67216,29936 +112181,87,7,7326,52453 +112182,190,7,9819,91096 +112183,415,3,9514,1642502 +112184,234,1,295581,184483 +112185,52,10,10865,62047 +112186,204,9,43491,1132129 +112187,105,7,19621,2585 +112188,387,10,56807,1888581 +112189,204,9,122857,1127245 +112190,105,7,77381,1537336 +112191,317,10,113137,1276969 +112192,273,7,39311,13337 +112193,317,10,92424,65569 +112194,234,1,137746,229164 +112195,3,5,9746,151 +112196,204,9,47889,1607806 +112197,234,1,82662,132257 +112198,204,9,329135,35740 +112199,234,1,395479,1638068 +112200,413,11,225285,1122199 +112201,196,7,66193,1402533 +112202,87,7,11045,1587383 +112203,189,3,116463,1367137 +112204,127,3,525,1907337 +112205,77,10,18015,82597 +112206,277,3,17744,1370816 +112207,234,1,8358,24 +112208,200,3,8869,1408326 +112209,203,1,55846,1404871 +112210,234,1,82708,16780 +112211,317,10,381008,197825 +112212,97,7,329865,1646494 +112213,3,5,1904,647 +112214,234,1,32532,109314 +112215,234,1,13005,1254 +112216,413,11,42537,8630 +112217,148,9,209112,107420 +112218,234,1,38950,29626 +112219,317,10,94739,939684 +112220,53,2,11607,1211074 +112221,387,10,65055,221132 +112222,387,10,444713,88142 +112223,413,11,9301,1078 +112224,187,11,26656,1454509 +112225,413,11,84154,1827779 +112226,269,9,84354,1161650 +112227,175,5,271718,992965 +112228,182,8,267852,1622325 +112229,234,1,35052,91759 +112230,413,11,72032,37742 +112231,395,3,129,1456614 +112232,41,3,14430,1521704 +112233,75,5,46586,30761 +112234,234,1,12575,49625 +112235,317,10,126415,24658 +112236,234,1,128856,1088045 +112237,387,10,14429,20236 +112238,105,7,43092,2289 +112239,3,5,166883,10537 +112240,154,3,2760,3602 +112241,413,11,59961,9646 +112242,53,2,14979,40444 +112243,226,2,2666,1416919 +112244,289,6,10539,1454749 +112245,387,10,37710,9033 +112246,3,5,9502,57746 +112247,234,1,13544,929403 +112248,234,1,47201,59023 +112249,234,1,280583,1338386 +112250,52,10,177572,7931 +112251,24,5,14430,1521702 +112252,234,1,328692,144196 +112253,234,1,111017,12515 +112254,269,9,2293,11373 +112255,5,10,17831,3557 +112256,97,7,12113,1338372 +112257,99,3,131360,1093512 +112258,3,5,85549,976674 +112259,234,1,52913,56742 +112260,187,11,10326,83088 +112261,77,10,10869,62397 +112262,333,2,2197,1403777 +112263,234,1,11120,2690 +112264,413,11,43022,120314 +112265,268,7,11618,1456474 +112266,51,9,8870,1619111 +112267,333,2,12499,1536092 +112268,45,9,12450,1393281 +112269,413,11,34838,2425 +112270,209,7,72105,1440496 +112271,12,10,49521,20008 +112272,190,7,13056,1708229 +112273,413,11,10872,52056 +112274,413,11,19625,1147194 +112275,234,1,55435,1247816 +112276,234,1,41479,126910 +112277,234,1,31605,1214133 +112278,5,10,104720,1006465 +112279,234,1,56448,84736 +112280,269,9,9426,8315 +112281,160,3,222858,1341763 +112282,234,1,20439,131196 +112283,234,1,223655,33062 +112284,148,9,95504,12348 +112285,317,10,325712,1084537 +112286,273,7,544,139767 +112287,413,11,10275,64689 +112288,111,7,13205,1811627 +112289,234,1,193523,227455 +112290,105,7,322487,193745 +112291,317,10,301729,1382921 +112292,148,9,18190,227198 +112293,203,1,16997,1583172 +112294,169,3,345918,1870208 +112295,198,6,10320,1560120 +112296,273,7,90110,98550 +112297,105,7,33005,40613 +112298,203,1,367147,1673200 +112299,3,5,27112,97241 +112300,317,10,1647,13927 +112301,3,5,114096,10005 +112302,301,5,87826,1401989 +112303,273,7,225499,14861 +112304,317,10,16997,107181 +112305,273,7,985,5602 +112306,234,1,24189,128107 +112307,226,2,61225,1456487 +112308,413,11,30175,1219383 +112309,72,11,245168,1044492 +112310,413,11,132859,13781 +112311,333,2,10929,1512251 +112312,317,10,12764,73587 +112313,3,5,21544,17791 +112314,333,2,181533,1869072 +112315,40,1,284288,1763412 +112316,387,10,12477,628 +112317,387,10,99261,123909 +112318,413,11,105059,1470160 +112319,196,7,1991,14764 +112320,234,1,45827,1211915 +112321,413,11,41402,181856 +112322,317,10,343284,1682323 +112323,234,1,43850,71788 +112324,3,5,20544,53290 +112325,148,9,29355,12437 +112326,301,5,27259,1528906 +112327,413,11,63215,23397 +112328,360,3,10921,1402107 +112329,97,7,256740,1402519 +112330,387,10,44631,51307 +112331,234,1,283726,4387 +112332,413,11,266030,1438562 +112333,132,2,122081,1414984 +112334,203,1,19754,1399582 +112335,77,10,32932,15575 +112336,5,10,12311,72065 +112337,387,10,334074,1466046 +112338,60,1,16177,1621063 +112339,317,10,45577,133237 +112340,53,2,27035,4350 +112341,52,10,255388,120546 +112342,40,1,284288,1763411 +112343,53,2,55347,188097 +112344,301,5,954,983118 +112345,75,5,366696,1287605 +112346,387,10,99698,1188420 +112347,387,10,3172,15795 +112348,53,2,141489,1035668 +112349,413,11,10691,17233 +112350,394,7,857,7764 +112351,333,2,330459,1459852 +112352,3,5,277839,1172029 +112353,200,3,127585,1384372 +112354,273,7,16442,3249 +112355,234,1,333367,548759 +112356,269,9,37710,2243 +112357,203,1,205864,1603898 +112358,234,1,19348,54025 +112359,234,1,53574,30099 +112360,234,1,273511,1329731 +112361,413,11,98066,1565104 +112362,289,6,12230,150111 +112363,155,3,70074,1407374 +112364,268,7,287,1422978 +112365,127,3,52661,1287916 +112366,387,10,396535,939147 +112367,234,1,69217,110834 +112368,52,10,113148,1061941 +112369,234,1,90461,117773 +112370,245,3,403867,81089 +112371,3,5,211059,1620756 +112372,289,6,69103,57314 +112373,234,1,42487,101225 +112374,148,9,121636,7687 +112375,148,9,29444,21674 +112376,317,10,230295,1265309 +112377,3,5,249703,88023 +112378,105,7,13965,76200 +112379,182,8,223485,1531098 +112380,3,5,76333,1310697 +112381,105,7,17895,595 +112382,196,7,8292,9430 +112383,273,7,46572,18836 +112384,188,8,2105,1724862 +112385,3,5,33107,10832 +112386,234,1,44657,3238 +112387,204,9,19957,41754 +112388,53,2,296025,1446136 +112389,413,11,811,8484 +112390,3,5,128644,21793 +112391,234,1,25568,94237 +112392,166,9,14019,76261 +112393,239,5,18,1881562 +112394,234,1,9292,7145 +112395,285,5,10590,1564215 +112396,273,7,41516,56928 +112397,269,9,25918,4085 +112398,204,9,297762,39668 +112399,286,3,278717,23925 +112400,25,2,1690,1889473 +112401,333,2,9425,23352 +112402,262,6,72431,1484205 +112403,105,7,131194,32159 +112404,234,1,107693,81749 +112405,273,7,45205,132513 +112406,203,1,82684,1535116 +112407,204,9,20421,1748503 +112408,273,7,44875,2500 +112409,387,10,68050,80586 +112410,40,1,334527,1802515 +112411,196,7,93856,1350237 +112412,3,5,340101,15083 +112413,387,10,2108,11505 +112414,53,2,328429,1293000 +112415,289,6,106112,115754 +112416,234,1,409903,237275 +112417,37,3,10198,1457649 +112418,113,9,316654,1208688 +112419,203,1,38356,1386923 +112420,413,11,27414,1023290 +112421,317,10,26368,118077 +112422,317,10,25707,232832 +112423,413,11,266102,73420 +112424,234,1,130957,544479 +112425,53,2,407448,62643 +112426,76,2,62728,1332186 +112427,333,2,197,11298 +112428,236,8,12102,1449180 +112429,269,9,32904,1735413 +112430,387,10,2280,23965 +112431,132,2,163,92332 +112432,209,7,243935,8760 +112433,3,5,9059,58209 +112434,314,2,270383,1514148 +112435,387,10,118984,1322956 +112436,166,9,59965,1395016 +112437,317,10,27993,57062 +112438,187,7,345918,1544359 +112439,273,7,2778,21068 +112440,226,2,19665,1287500 +112441,21,3,25807,344185 +112442,45,9,285685,1618897 +112443,13,1,110416,96677 +112444,320,3,2300,1870692 +112445,387,10,145481,1293595 +112446,373,7,12831,73917 +112447,328,6,395992,1770988 +112448,53,2,58076,14650 +112449,3,5,9443,10639 +112450,373,7,10204,570124 +112451,277,3,9846,1620101 +112452,3,5,2989,2209 +112453,238,7,395992,1401631 +112454,203,1,638,9320 +112455,53,2,168259,2519 +112456,328,6,2567,186721 +112457,87,7,318922,1575352 +112458,273,7,287,4055 +112459,373,7,10909,1418022 +112460,182,8,18801,1624421 +112461,180,7,125264,1547485 +112462,387,10,82990,54248 +112463,413,11,109614,10393 +112464,234,1,254188,150630 +112465,317,10,291871,1179823 +112466,333,2,17170,142152 +112467,204,9,18387,12868 +112468,5,10,76211,1163372 +112469,293,2,201085,1559620 +112470,175,5,145135,1059590 +112471,175,5,294254,1395275 +112472,360,3,226140,1377412 +112473,398,9,1647,1404355 +112474,221,3,8869,1552548 +112475,60,1,16176,41832 +112476,368,7,2105,1724869 +112477,3,5,43903,13972 +112478,3,5,97829,97048 +112479,273,7,43231,3098 +112480,409,7,194,2422 +112481,415,3,120497,1027339 +112482,234,1,315467,1262327 +112483,327,7,11812,8762 +112484,413,11,30666,15840 +112485,175,5,33336,26186 +112486,413,11,36672,22746 +112487,234,1,370168,1541541 +112488,108,10,42288,1227141 +112489,234,1,54779,98360 +112490,3,5,11656,11905 +112491,398,9,72545,14341 +112492,105,7,39347,88593 +112493,52,10,106635,1168878 +112494,317,10,306464,24357 +112495,190,7,98277,1849136 +112496,349,1,12593,1458344 +112497,387,10,544,7398 +112498,387,10,38883,121588 +112499,143,7,435,3687 +112500,97,7,337339,1077782 +112501,203,1,205584,1483584 +112502,244,3,167810,1793189 +112503,269,9,35021,1137873 +112504,266,3,693,1601603 +112505,23,9,11370,1581118 +112506,413,11,26533,1744 +112507,3,5,59726,1000828 +112508,250,11,1125,62723 +112509,210,9,339403,1635284 +112510,317,10,64393,239162 +112511,148,9,45215,8508 +112512,198,6,369885,1790956 +112513,60,1,174769,1338899 +112514,204,9,57103,3358 +112515,3,5,179847,1378 +112516,143,7,286192,7763 +112517,75,5,33336,1100812 +112518,234,1,118180,84907 +112519,413,11,270774,1529070 +112520,234,1,9746,1032 +112521,20,2,82624,1600784 +112522,53,2,107073,1481510 +112523,306,7,383538,1783015 +112524,3,5,4931,13809 +112525,3,5,339419,71880 +112526,373,7,245891,978127 +112527,108,10,11584,586438 +112528,387,10,55495,116158 +112529,373,7,10674,74976 +112530,387,10,18694,161550 +112531,413,11,352025,446672 +112532,277,3,24657,568610 +112533,204,9,982,8883 +112534,286,3,15371,78368 +112535,127,3,1624,11312 +112536,289,6,263115,1821913 +112537,269,9,2786,9358 +112538,327,7,43727,80825 +112539,317,10,382951,1319346 +112540,77,10,10087,27614 +112541,204,9,9841,22067 +112542,249,7,74,1395025 +112543,5,10,7085,33766 +112544,53,2,383538,1851918 +112545,317,10,47792,15191 +112546,317,10,114242,66797 +112547,360,9,354287,1440479 +112548,387,10,24140,18959 +112549,387,10,96107,29962 +112550,196,7,73424,1544190 +112551,317,10,125736,67428 +112552,198,6,354859,1721862 +112553,3,5,8617,59929 +112554,394,7,287,1392084 +112555,208,2,301875,1526544 +112556,413,11,356191,1610560 +112557,387,10,1902,19840 +112558,203,1,224251,1484532 +112559,234,1,151431,15378 +112560,3,5,343173,23543 +112561,317,10,41206,100131 +112562,77,10,9667,54971 +112563,148,9,172,796 +112564,203,1,317,1599484 +112565,234,1,98066,52049 +112566,234,1,223551,562939 +112567,269,9,128866,1665457 +112568,143,7,353686,1399631 +112569,53,2,9877,46589 +112570,234,1,27150,88096 +112571,306,7,390747,232159 +112572,158,2,345922,1815643 +112573,143,7,76757,1368866 +112574,327,7,9514,28922 +112575,234,1,27283,218637 +112576,52,10,28031,73622 +112577,234,1,15189,109857 +112578,317,10,151937,85844 +112579,3,5,377170,2760 +112580,413,11,157351,136486 +112581,234,1,396643,1170143 +112582,196,7,159667,1814014 +112583,203,1,71099,1484255 +112584,204,9,371459,1454993 +112585,394,7,2046,1412452 +112586,269,9,139519,1308530 +112587,398,9,77459,1297765 +112588,333,2,2321,142152 +112589,92,7,31042,118297 +112590,3,5,1984,20416 +112591,413,11,9532,57858 +112592,286,3,45562,999548 +112593,387,10,46513,29483 +112594,190,7,46738,1536197 +112595,53,2,10727,1209538 +112596,187,11,76341,1518778 +112597,387,10,242683,4297 +112598,234,1,57091,225521 +112599,25,2,378441,1797444 +112600,105,7,152736,1333577 +112601,301,5,279690,1415577 +112602,394,7,5915,1462845 +112603,234,1,10303,21819 +112604,352,3,435,1574647 +112605,190,7,317,1599486 +112606,289,6,99861,1456835 +112607,317,10,241739,462672 +112608,175,5,9540,1445986 +112609,269,9,5544,1625824 +112610,273,7,16182,3562 +112611,262,6,14370,1162239 +112612,411,9,49524,905 +112613,234,1,300487,124283 +112614,234,1,322,190 +112615,286,3,678,33413 +112616,273,7,22584,8619 +112617,208,2,225044,1314471 +112618,52,10,40221,233061 +112619,40,1,9946,35664 +112620,387,10,115173,1061039 +112621,269,9,11472,794 +112622,105,7,7514,52840 +112623,204,9,6440,18784 +112624,234,1,33592,95462 +112625,22,9,5924,1049695 +112626,204,9,74585,12333 +112627,398,9,2102,21559 +112628,53,2,215928,1143244 +112629,413,11,47653,13848 +112630,132,2,300596,1718166 +112631,203,1,127585,1384398 +112632,77,10,10075,15244 +112633,5,10,104376,30717 +112634,3,5,154371,40055 +112635,415,3,36635,1359680 +112636,234,1,31118,45091 +112637,204,9,40041,40203 +112638,204,9,47921,3945 +112639,234,1,126934,17309 +112640,277,3,435,113048 +112641,105,7,138522,1599046 +112642,415,3,45987,1334613 +112643,39,3,1586,1611793 +112644,413,11,32274,1808 +112645,387,10,1817,19266 +112646,413,11,141,1591 +112647,387,10,83389,608 +112648,269,9,141733,958043 +112649,169,3,7551,1118402 +112650,234,1,38962,29662 +112651,175,5,12783,1393883 +112652,324,3,125063,1394148 +112653,317,10,50108,31037 +112654,387,10,11959,71042 +112655,314,2,245692,1470205 +112656,226,2,378018,1762267 +112657,328,6,55534,75104 +112658,333,2,1480,14498 +112659,413,11,15379,58706 +112660,234,1,73827,227311 +112661,105,7,3484,29967 +112662,53,2,109439,9043 +112663,269,9,289225,1850520 +112664,303,3,8464,1581506 +112665,160,3,159211,25066 +112666,387,10,10747,66673 +112667,75,5,6163,1535319 +112668,3,5,94009,109609 +112669,3,5,296313,15083 +112670,3,5,244783,967792 +112671,413,11,458428,1820247 +112672,3,5,24918,1123041 +112673,269,9,112961,60870 +112674,234,1,26566,6980 +112675,204,9,74,497 +112676,52,10,15749,1325683 +112677,152,2,16090,7689 +112678,317,10,413992,986015 +112679,234,1,48677,29471 +112680,234,1,51994,93911 +112681,75,5,2454,1394073 +112682,234,1,41496,126707 +112683,105,7,19610,84914 +112684,13,3,378441,1797508 +112685,387,10,286873,1164125 +112686,387,10,36335,41828 +112687,317,10,20992,113337 +112688,234,1,15830,126774 +112689,273,7,25568,94238 +112690,317,10,13318,81400 +112691,333,2,71120,1532725 +112692,381,9,333371,1407729 +112693,317,10,38618,554582 +112694,3,5,64725,240922 +112695,234,1,68444,143010 +112696,325,5,257088,1440301 +112697,60,1,130717,1354030 +112698,234,1,294483,1144880 +112699,328,6,76203,1336715 +112700,169,3,37936,1015792 +112701,77,10,8989,56507 +112702,317,10,100791,1151326 +112703,262,6,241239,1468577 +112704,53,2,244201,13866 +112705,317,10,167190,1117498 +112706,148,9,116780,7338 +112707,3,5,30363,2307 +112708,413,11,43385,12143 +112709,143,7,283686,1405362 +112710,234,1,544,7396 +112711,273,7,47410,36164 +112712,387,10,128241,1001595 +112713,387,10,264264,28642 +112714,333,2,131343,1450086 +112715,53,2,29101,1516886 +112716,250,11,354287,1408403 +112717,273,7,30308,29727 +112718,34,8,297762,1903907 +112719,3,5,34899,232804 +112720,114,3,283445,1402501 +112721,97,7,181454,1338136 +112722,399,9,15653,1767052 +112723,268,7,244610,1542741 +112724,387,10,335778,1454287 +112725,58,2,394645,1864622 +112726,97,7,16455,40823 +112727,53,2,14047,15573 +112728,234,1,15256,3191 +112729,269,9,244316,62703 +112730,373,7,35052,1395024 +112731,190,7,99261,1752037 +112732,387,10,1984,20415 +112733,3,5,236395,35242 +112734,317,10,276220,1325161 +112735,317,10,85743,56370 +112736,387,10,85469,932205 +112737,399,9,9325,1554537 +112738,415,3,28482,103979 +112739,415,3,18939,133554 +112740,397,7,33680,27969 +112741,234,1,325645,12259 +112742,105,7,172673,1470531 +112743,104,7,4133,1552201 +112744,204,9,274504,1609030 +112745,204,9,875,8622 +112746,273,7,124994,993312 +112747,234,1,82178,99667 +112748,317,10,242458,1190569 +112749,3,5,2105,21588 +112750,317,10,102428,96369 +112751,3,5,13680,9645 +112752,208,2,15616,1159944 +112753,397,7,364111,570486 +112754,234,1,130739,20267 +112755,349,1,9982,1461397 +112756,234,1,94659,95501 +112757,204,9,283995,1192526 +112758,328,6,17654,1403410 +112759,317,10,21627,1224 +112760,234,1,115929,1111685 +112761,148,9,334074,1318091 +112762,148,9,28290,9799 +112763,234,1,10657,66076 +112764,419,10,109475,165770 +112765,5,10,215373,1203310 +112766,143,7,99,979 +112767,250,11,241254,1404196 +112768,113,9,206647,1551811 +112769,104,7,140607,1568519 +112770,190,7,15440,1336932 +112771,413,11,57419,28390 +112772,203,1,284296,1516294 +112773,3,5,360249,68572 +112774,234,1,302802,126971 +112775,387,10,11137,68308 +112776,52,10,48136,1214563 +112777,67,10,197854,1382280 +112778,204,9,333663,1571475 +112779,234,1,215016,1177381 +112780,45,9,9352,1398908 +112781,387,10,52302,30464 +112782,203,1,134201,1431975 +112783,387,10,15092,20192 +112784,317,10,49588,142522 +112785,245,3,1125,1412213 +112786,413,11,119010,1822322 +112787,105,7,62755,1297756 +112788,262,6,70074,21548 +112789,317,10,331962,1443611 +112790,234,1,112304,1054391 +112791,250,11,83,1567250 +112792,234,1,76380,550754 +112793,234,1,32901,478644 +112794,52,10,36658,10995 +112795,234,1,45191,125071 +112796,273,7,410718,278 +112797,172,3,69668,1426004 +112798,317,10,164331,42309 +112799,394,7,99861,1339446 +112800,3,5,1633,52055 +112801,209,7,13483,1402080 +112802,387,10,94348,21023 +112803,373,7,243940,1473445 +112804,273,7,63414,584950 +112805,1,7,11216,60628 +112806,387,10,157424,62554 +112807,204,9,1986,970107 +112808,373,7,310568,125895 +112809,413,11,7459,10123 +112810,204,9,6443,1683615 +112811,53,2,25673,4350 +112812,234,1,13354,113896 +112813,387,10,28571,1159912 +112814,333,2,18,1456365 +112815,269,9,1272,2071 +112816,306,7,11045,52405 +112817,234,1,262542,1461114 +112818,196,7,9836,1745244 +112819,317,10,398289,1637435 +112820,75,5,41283,1440301 +112821,387,10,19096,92720 +112822,413,11,298787,1376948 +112823,317,10,214756,52139 +112824,387,10,10870,67714 +112825,303,3,15440,1412134 +112826,317,10,21736,90225 +112827,143,7,896,12169 +112828,113,9,152042,1816771 +112829,87,7,19348,1538826 +112830,234,1,67377,9915 +112831,413,11,48778,134464 +112832,376,10,11202,12277 +112833,3,5,27035,12279 +112834,234,1,269390,1321688 +112835,234,1,84575,88077 +112836,396,3,6972,1401702 +112837,203,1,10950,1408365 +112838,75,5,146243,176687 +112839,234,1,19157,84211 +112840,387,10,184802,10003 +112841,387,10,320318,140518 +112842,390,6,59387,1447327 +112843,3,5,2428,18744 +112844,273,7,118283,4345 +112845,189,3,9352,1392249 +112846,415,3,14510,11419 +112847,373,7,46387,1556255 +112848,148,9,43656,1619363 +112849,317,10,52920,112412 +112850,203,1,376501,1179272 +112851,376,10,338438,89121 +112852,52,10,301671,1041355 +112853,273,7,17386,34734 +112854,333,2,2897,1465014 +112855,105,7,42599,1298412 +112856,286,3,17467,554124 +112857,160,3,13336,1410599 +112858,3,5,211,10231 +112859,273,7,21570,5288 +112860,317,10,60965,232037 +112861,387,10,36355,129941 +112862,3,5,265019,967123 +112863,5,10,26142,1851960 +112864,413,11,359412,56231 +112865,317,10,42191,19408 +112866,289,6,149870,1456619 +112867,5,10,9585,58082 +112868,400,6,11351,1839472 +112869,269,9,210615,24297 +112870,269,9,38950,22135 +112871,232,10,18040,81694 +112872,3,5,222858,50723 +112873,304,10,140883,230030 +112874,387,10,13689,68758 +112875,333,2,44363,1451403 +112876,413,11,66759,43913 +112877,181,7,5638,81527 +112878,52,10,15359,113902 +112879,269,9,39284,34768 +112880,352,3,2675,1573104 +112881,234,1,578,488 +112882,204,9,207699,1308815 +112883,373,7,59981,112609 +112884,317,10,185153,54441 +112885,413,11,263341,20382 +112886,328,6,70667,1448317 +112887,376,10,31411,42064 +112888,5,10,38027,1169108 +112889,132,2,418437,1521093 +112890,234,1,10198,15810 +112891,3,5,1574,647 +112892,317,10,128657,1087673 +112893,204,9,30126,132251 +112894,113,9,9529,1408280 +112895,333,2,278632,1582616 +112896,189,3,11547,1407885 +112897,234,1,56491,84981 +112898,203,1,202337,1404911 +112899,301,5,634,1402096 +112900,273,7,11909,57134 +112901,317,10,227200,155742 +112902,296,3,69668,1529005 +112903,289,6,329865,1461150 +112904,53,2,2009,39965 +112905,333,2,28071,1095244 +112906,413,11,15258,83346 +112907,273,7,70981,63421 +112908,234,1,46247,124748 +112909,210,9,263115,1821926 +112910,226,2,241239,117206 +112911,35,10,284053,18876 +112912,317,10,332168,1765666 +112913,147,1,145481,1136036 +112914,190,7,39979,1743941 +112915,127,3,39979,1400844 +112916,204,9,36094,33612 +112917,75,5,74,1376157 +112918,53,2,14527,1517110 +112919,325,5,116463,1198049 +112920,209,7,325263,1636538 +112921,377,3,11618,977230 +112922,135,3,8869,1552540 +112923,387,10,62694,567200 +112924,226,2,10733,1535733 +112925,360,9,263115,1415610 +112926,270,9,198663,1367479 +112927,413,11,18616,1556999 +112928,234,1,238362,1171039 +112929,317,10,165864,1149041 +112930,317,10,9963,1392461 +112931,154,3,42614,42061 +112932,204,9,140607,1388850 +112933,413,11,14976,1635 +112934,97,7,333352,1338134 +112935,160,3,2288,1393551 +112936,413,11,181753,1048 +112937,234,1,94809,22467 +112938,387,10,31634,131489 +112939,203,1,332567,1458872 +112940,317,10,141955,65251 +112941,113,9,8053,1172442 +112942,387,10,373546,15801 +112943,97,7,7445,9440 +112944,3,5,51947,31050 +112945,75,5,7454,1106425 +112946,203,1,505,1399146 +112947,234,1,10803,20412 +112948,234,1,817,6737 +112949,203,1,1903,958273 +112950,317,10,18977,106098 +112951,20,2,311324,1484514 +112952,273,7,226188,1391647 +112953,234,1,332286,1444883 +112954,413,11,26961,52276 +112955,189,3,1271,1384394 +112956,182,8,293660,1406767 +112957,5,10,348389,1486489 +112958,273,7,3784,10468 +112959,203,1,13162,1325049 +112960,180,7,43385,1539075 +112961,77,10,35253,114355 +112962,413,11,18998,1287813 +112963,286,3,57011,1328774 +112964,209,7,226140,1377419 +112965,413,11,11521,3394 +112966,413,11,180299,142013 +112967,207,3,19995,122607 +112968,250,11,244786,1547660 +112969,269,9,24123,1318447 +112970,3,5,1498,1385880 +112971,148,9,362541,1518578 +112972,317,10,280004,40054 +112973,273,7,103012,1195579 +112974,413,11,18736,1041072 +112975,333,2,274857,1425411 +112976,204,9,31264,136391 +112977,77,10,13022,59998 +112978,40,1,8470,8419 +112979,3,5,428493,1313754 +112980,306,7,10950,9891 +112981,317,10,34469,168819 +112982,244,3,59197,128762 +112983,317,10,286372,1375056 +112984,317,10,20919,118901 +112985,226,2,370234,1621863 +112986,75,5,102629,1429359 +112987,273,7,8471,11269 +112988,387,10,249264,33029 +112989,53,2,310888,1394634 +112990,317,10,16032,74758 +112991,349,1,10198,1447394 +112992,317,10,228294,209281 +112993,387,10,6973,455 +112994,269,9,381518,10908 +112995,245,3,43395,95293 +112996,286,3,32451,1046353 +112997,234,1,24432,80537 +112998,52,10,109298,44217 +112999,45,9,102668,1031760 +113000,409,7,442752,1761914 +113001,182,8,359412,1735080 +113002,3,5,28820,21232 +113003,273,7,505,6918 +113004,148,9,14554,9063 +113005,373,7,6171,1378171 +113006,317,10,43580,65705 +113007,175,5,11096,1402073 +113008,234,1,257344,10965 +113009,143,7,62630,16684 +113010,148,9,17691,7513 +113011,387,10,7972,53455 +113012,317,10,345519,1479513 +113013,268,7,197,1406921 +113014,204,9,57412,8622 +113015,234,1,57597,91659 +113016,262,6,20242,1458341 +113017,226,2,442752,1761882 +113018,317,10,270899,1322091 +113019,387,10,16249,5834 +113020,234,1,10739,1243 +113021,75,5,244786,1411844 +113022,387,10,8457,19274 +113023,327,7,1966,1733791 +113024,387,10,11630,65401 +113025,221,3,163,1335075 +113026,244,3,1165,75086 +113027,3,5,43093,558444 +113028,108,10,289,4132 +113029,357,3,228066,1574071 +113030,143,7,32536,1599543 +113031,234,1,259690,63868 +113032,158,2,228970,1470528 +113033,387,10,153652,30208 +113034,53,2,127585,9043 +113035,289,6,21032,1447385 +113036,273,7,245775,1692902 +113037,387,10,10518,348 +113038,317,10,145244,5555 +113039,413,11,1825,13432 +113040,52,10,33495,69038 +113041,143,7,324440,1600775 +113042,394,7,381518,40816 +113043,317,10,116350,1063343 +113044,269,9,116312,35358 +113045,269,9,345438,35507 +113046,317,10,5,3111 +113047,304,10,19625,37239 +113048,317,10,121725,106549 +113049,143,7,33005,1072968 +113050,208,2,24420,1322112 +113051,226,2,393562,1534379 +113052,273,7,4253,35786 +113053,53,2,137145,1542297 +113054,105,7,144271,1120641 +113055,53,2,616,1322 +113056,234,1,75622,34110 +113057,148,9,1950,8274 +113058,72,11,5289,1409749 +113059,387,10,714,10705 +113060,413,11,360924,1249250 +113061,381,9,49009,1539291 +113062,289,6,8916,1049272 +113063,187,11,159667,1610196 +113064,269,9,13848,958242 +113065,148,9,1382,53902 +113066,317,10,278334,586734 +113067,143,7,49013,15894 +113068,127,3,188927,1603473 +113069,234,1,63838,55516 +113070,53,2,62397,1600184 +113071,234,1,220,2746 +113072,387,10,12707,11057 +113073,3,5,87481,997118 +113074,340,2,59115,1830888 +113075,232,10,68822,103393 +113076,413,11,413770,1819033 +113077,105,7,45273,33290 +113078,157,3,14882,77515 +113079,234,1,16539,587376 +113080,148,9,20648,9968 +113081,105,7,55156,65993 +113082,108,10,197082,1177058 +113083,317,10,15163,23227 +113084,317,10,97936,590542 +113085,286,3,325892,1810675 +113086,60,1,198795,1511310 +113087,413,11,27380,68841 +113088,413,11,133941,1190487 +113089,269,9,7551,60579 +113090,234,1,43367,11435 +113091,204,9,21927,1416936 +113092,87,7,8869,52452 +113093,387,10,98536,100914 +113094,413,11,9427,27903 +113095,317,10,167928,88036 +113096,234,1,18446,16294 +113097,75,5,435,1418485 +113098,269,9,295581,1272707 +113099,413,11,1991,156 +113100,20,2,294254,1202779 +113101,105,7,222715,1288215 +113102,5,10,62694,567201 +113103,234,1,64393,239162 +113104,317,10,87759,1190398 +113105,104,7,14,1551222 +113106,317,10,19552,107730 +113107,317,10,16092,79279 +113108,209,7,82,1049333 +113109,12,10,49521,20007 +113110,148,9,25407,7338 +113111,204,9,10929,62859 +113112,413,11,112456,1816440 +113113,40,1,11639,71765 +113114,387,10,72638,67427 +113115,387,10,10724,15153 +113116,273,7,124071,1188502 +113117,72,11,381518,1808371 +113118,413,11,81120,591019 +113119,204,9,10275,64690 +113120,229,6,246655,1713066 +113121,387,10,433,5837 +113122,387,10,43277,149117 +113123,387,10,616,932 +113124,226,2,218778,1411166 +113125,53,2,329865,6057 +113126,234,1,191476,1444779 +113127,387,10,253484,589410 +113128,273,7,834,7229 +113129,413,11,8888,4528 +113130,232,10,120747,30548 +113131,234,1,234862,1270225 +113132,360,9,381015,1828351 +113133,234,1,709,10179 +113134,234,1,8355,5714 +113135,3,5,185153,1540038 +113136,188,8,11370,1581151 +113137,413,11,11399,6794 +113138,22,9,17911,1080049 +113139,234,1,58923,5281 +113140,413,11,322400,1660924 +113141,203,1,24679,114512 +113142,187,11,1966,1398093 +113143,209,7,313922,1603333 +113144,234,1,76996,142513 +113145,301,5,352327,1430500 +113146,234,1,197788,226619 +113147,317,10,27462,45460 +113148,204,9,35337,1462396 +113149,234,1,79833,127716 +113150,97,7,205584,1337413 +113151,234,1,156180,237137 +113152,204,9,41283,966100 +113153,187,11,435,1392085 +113154,387,10,598,8561 +113155,373,7,8329,1400474 +113156,187,11,170279,1573681 +113157,203,1,80713,1364110 +113158,413,11,20287,1731 +113159,394,7,14,3193 +113160,353,7,181533,1394306 +113161,234,1,43464,95723 +113162,317,10,101325,113233 +113163,135,3,28090,1719907 +113164,75,5,323929,1724366 +113165,317,10,298751,964889 +113166,3,5,29260,98151 +113167,234,1,43089,29471 +113168,387,10,1637,21206 +113169,97,7,23128,1337462 +113170,317,10,137504,125691 +113171,179,2,15613,41188 +113172,234,1,82650,33183 +113173,273,7,13580,30922 +113174,317,10,18704,127531 +113175,234,1,116432,1189543 +113176,200,3,10391,1404843 +113177,391,9,9314,1749133 +113178,180,7,18642,3103 +113179,387,10,5177,18823 +113180,314,2,7326,1426761 +113181,196,7,5915,1543231 +113182,234,1,26642,590243 +113183,317,10,273404,562206 +113184,53,2,5201,9064 +113185,269,9,23599,54776 +113186,387,10,302699,1454295 +113187,77,10,598,8560 +113188,234,1,84892,19311 +113189,413,11,268920,1217 +113190,413,11,53879,3099 +113191,333,2,334,1249773 +113192,328,6,240832,1363862 +113193,413,11,1995,899 +113194,387,10,30876,92928 +113195,52,10,26954,19707 +113196,234,1,232731,128522 +113197,234,1,21338,63709 +113198,328,6,378441,1797497 +113199,239,5,379019,1780170 +113200,273,7,50779,1728391 +113201,234,1,95177,139150 +113202,234,1,413547,95510 +113203,413,11,39415,6318 +113204,317,10,143876,1562551 +113205,148,9,127585,14915 +113206,273,7,76640,929598 +113207,387,10,94009,13802 +113208,87,7,163,1889 +113209,262,6,13616,1586589 +113210,386,5,337339,1421687 +113211,3,5,182131,109194 +113212,234,1,985,5602 +113213,317,10,284052,928106 +113214,5,10,98536,18739 +113215,273,7,11879,47927 +113216,234,1,219345,82335 +113217,141,7,12311,9102 +113218,413,11,204384,1098635 +113219,234,1,170279,112096 +113220,413,11,32921,18800 +113221,387,10,40490,27445 +113222,148,9,10804,11270 +113223,204,9,12,1303001 +113224,234,1,324181,1424222 +113225,3,5,293982,6426 +113226,234,1,425003,16377 +113227,160,3,46261,1418813 +113228,317,10,43596,14353 +113229,269,9,2259,5996 +113230,387,10,297702,1381500 +113231,317,10,75446,1087735 +113232,234,1,80713,141967 +113233,12,10,27549,58245 +113234,53,2,223551,1263788 +113235,234,1,278738,1335496 +113236,413,11,1724,13673 +113237,413,11,11688,71855 +113238,327,7,5,80824 +113239,317,10,317114,36130 +113240,387,10,634,9155 +113241,234,1,36140,16862 +113242,187,11,5289,1346939 +113243,406,6,401164,1817446 +113244,234,1,56264,77747 +113245,413,11,1369,898 +113246,83,2,37534,1316599 +113247,394,7,9472,14382 +113248,234,1,24254,18165 +113249,143,7,166076,1172888 +113250,111,7,10733,1748479 +113251,204,9,16137,1125825 +113252,175,5,326,1399066 +113253,167,3,11024,1408196 +113254,196,7,7299,1335122 +113255,204,9,411741,1018800 +113256,53,2,8619,2709 +113257,3,5,2758,9614 +113258,314,2,1966,1525890 +113259,234,1,43751,133004 +113260,317,10,37329,26959 +113261,234,1,31048,107564 +113262,234,1,18133,12920 +113263,289,6,214756,1452993 +113264,387,10,134397,1098980 +113265,317,10,26125,1681698 +113266,25,2,634,1576009 +113267,317,10,419430,291263 +113268,203,1,316042,1393423 +113269,317,10,335819,1460387 +113270,269,9,21619,1532240 +113271,3,5,890,14614 +113272,7,3,924,1551655 +113273,273,7,290714,1219207 +113274,52,10,30875,53193 +113275,269,9,10055,62584 +113276,387,10,19625,1662163 +113277,317,10,24916,63571 +113278,204,9,18801,11225 +113279,234,1,144680,77994 +113280,203,1,10740,1347761 +113281,289,6,9016,1447376 +113282,209,7,244610,1557038 +113283,234,1,16342,47724 +113284,234,1,1773,2662 +113285,387,10,102444,196895 +113286,3,5,20645,70129 +113287,211,3,82448,115920 +113288,234,1,15534,124688 +113289,64,6,5172,41891 +113290,234,1,43497,14860 +113291,314,2,949,15846 +113292,413,11,11422,7715 +113293,53,2,4955,40991 +113294,317,10,34100,111870 +113295,317,10,13411,72406 +113296,105,7,280690,88593 +113297,333,2,11576,1061323 +113298,273,7,336004,1465668 +113299,413,11,16066,79144 +113300,413,11,10488,25058 +113301,395,3,10198,1461378 +113302,387,10,1938,30491 +113303,53,2,23367,1457820 +113304,203,1,28665,1414532 +113305,204,9,193177,1147355 +113306,3,5,54898,50634 +113307,333,2,28293,33001 +113308,204,9,76757,1141796 +113309,273,7,29111,1377457 +113310,204,9,236395,11036 +113311,286,3,33333,1098846 +113312,387,10,125990,181904 +113313,387,10,317,4645 +113314,333,2,111960,120126 +113315,3,5,15807,14569 +113316,53,2,38322,971528 +113317,387,10,635,9168 +113318,394,7,112456,1153841 +113319,387,10,107973,121106 +113320,387,10,75066,18565 +113321,234,1,118150,29494 +113322,204,9,43157,874 +113323,387,10,31985,46912 +113324,105,7,30941,13301 +113325,239,5,31911,1460569 +113326,398,9,19995,42281 +113327,97,7,10145,1397823 +113328,158,2,1991,1420164 +113329,390,6,13205,1779872 +113330,209,7,76757,1389136 +113331,105,7,36658,9039 +113332,74,5,293167,1621226 +113333,269,9,29056,28236 +113334,203,1,2274,1346957 +113335,269,9,262338,9003 +113336,102,3,12103,1625925 +113337,3,5,77794,115374 +113338,234,1,191476,78059 +113339,262,6,11618,1378236 +113340,413,11,10603,2995 +113341,286,3,226672,551705 +113342,3,5,10866,720 +113343,3,5,62472,18614 +113344,234,1,34019,72496 +113345,3,5,172908,10079 +113346,3,5,3577,21739 +113347,20,2,294272,1024909 +113348,413,11,163791,1031160 +113349,413,11,31522,3526 +113350,108,10,174958,145834 +113351,204,9,82684,1407679 +113352,317,10,23599,29766 +113353,289,6,4978,1447370 +113354,234,1,35253,114352 +113355,387,10,43379,12329 +113356,273,7,15036,20682 +113357,333,2,3172,95142 +113358,333,2,2567,1402019 +113359,413,11,83119,33513 +113360,32,8,1724,1455462 +113361,234,1,52959,1744 +113362,52,10,77645,167896 +113363,226,2,54287,1411166 +113364,273,7,678,4345 +113365,234,1,125943,1081884 +113366,387,10,64202,34936 +113367,87,7,266856,1619627 +113368,327,7,245692,1402247 +113369,204,9,95358,9061 +113370,269,9,24331,1185206 +113371,234,1,37206,87121 +113372,148,9,59961,212823 +113373,317,10,346443,1482162 +113374,209,7,1073,1531504 +113375,288,3,76788,1472819 +113376,105,7,38775,121345 +113377,314,2,381015,1445364 +113378,3,5,17796,1196135 +113379,182,8,257534,1297712 +113380,289,6,106112,225711 +113381,182,8,14126,1407693 +113382,317,10,64944,572234 +113383,317,10,40863,66125 +113384,289,6,9297,1462681 +113385,97,7,635,1399994 +113386,204,9,8916,1780681 +113387,273,7,74753,12241 +113388,158,2,284052,1703126 +113389,148,9,36658,11021 +113390,273,7,210653,234726 +113391,148,9,77949,582929 +113392,399,9,10198,1464375 +113393,158,2,190955,1405328 +113394,77,10,10257,127439 +113395,204,9,329865,1409696 +113396,346,3,2105,1398982 +113397,204,9,15022,1303223 +113398,72,11,168259,1194885 +113399,234,1,36615,125091 +113400,387,10,987,3146 +113401,269,9,29233,179923 +113402,234,1,48843,141197 +113403,97,7,10008,1371064 +113404,333,2,169,1877159 +113405,60,1,54111,1086398 +113406,53,2,10529,19955 +113407,234,1,128795,1087772 +113408,148,9,171446,7688 +113409,273,7,8355,11098 +113410,324,3,342588,573796 +113411,175,5,75174,1378716 +113412,287,3,9539,94068 +113413,269,9,58244,1303 +113414,413,11,49220,11233 +113415,387,10,5551,44065 +113416,3,5,318922,45792 +113417,234,1,50549,39743 +113418,105,7,83185,1107426 +113419,105,7,364088,1523172 +113420,273,7,61541,8619 +113421,3,5,48156,12307 +113422,13,3,378441,1797507 +113423,387,10,499,6817 +113424,166,9,544,1532709 +113425,234,1,63217,236640 +113426,188,8,78177,583266 +113427,286,3,76101,76804 +113428,365,6,129,1456795 +113429,273,7,9717,29056 +113430,317,10,265712,932979 +113431,234,1,31287,99121 +113432,235,5,15019,1555686 +113433,387,10,381518,98104 +113434,226,2,62492,1072736 +113435,367,11,353616,6742 +113436,226,2,703,1411150 +113437,301,5,8204,1402032 +113438,234,1,48339,6759 +113439,413,11,108812,7510 +113440,3,5,33931,8714 +113441,289,6,40470,149100 +113442,317,10,104954,134212 +113443,204,9,505,6923 +113444,387,10,45938,1115473 +113445,52,10,332079,49064 +113446,413,11,13436,81034 +113447,277,3,13614,1610053 +113448,234,1,337339,37932 +113449,40,1,403605,1584249 +113450,413,11,11531,1782 +113451,75,5,22803,1445895 +113452,3,5,28417,65480 +113453,289,6,214756,1452989 +113454,52,10,38006,66202 +113455,234,1,403173,1652364 +113456,5,10,9079,56931 +113457,105,7,347807,71273 +113458,143,7,9946,13179 +113459,317,10,257912,1299569 +113460,5,10,363354,1181166 +113461,234,1,425774,1707753 +113462,239,5,376501,1792351 +113463,53,2,99698,559185 +113464,234,1,256356,103112 +113465,387,10,124527,153110 +113466,213,10,108048,1381304 +113467,413,11,21519,46326 +113468,269,9,45874,3358 +113469,166,9,949,1404308 +113470,234,1,28940,101377 +113471,127,3,52021,1827711 +113472,387,10,2267,23410 +113473,234,1,43670,66262 +113474,413,11,8915,6504 +113475,273,7,25501,2704 +113476,387,10,1377,116838 +113477,204,9,11697,116723 +113478,234,1,27717,16028 +113479,105,7,415633,1184547 +113480,105,7,76714,2578 +113481,373,7,14510,1449501 +113482,234,1,43550,129602 +113483,387,10,329712,7288 +113484,234,1,53417,13848 +113485,387,10,43812,20371 +113486,148,9,57201,4032 +113487,186,6,126889,1746447 +113488,190,7,13075,1509365 +113489,143,7,144680,1414147 +113490,413,11,71041,46339 +113491,286,3,23966,1189771 +113492,52,10,279598,14744 +113493,40,1,10204,1613281 +113494,317,10,37206,563649 +113495,387,10,104343,140623 +113496,28,9,634,1575992 +113497,234,1,361050,20976 +113498,105,7,263115,7229 +113499,203,1,18801,1643449 +113500,226,2,38922,1455395 +113501,204,9,28,794 +113502,234,1,9084,57324 +113503,105,7,13848,1000559 +113504,317,10,60106,1895223 +113505,289,6,137193,1447377 +113506,387,10,49524,54048 +113507,413,11,13075,6390 +113508,394,7,1956,56765 +113509,188,8,318553,1636827 +113510,289,6,188161,1453014 +113511,15,6,1966,1525894 +113512,75,5,195269,1393419 +113513,204,9,34082,5187 +113514,239,5,12594,1585164 +113515,52,10,17889,1184310 +113516,53,2,42532,1388418 +113517,234,1,43045,178247 +113518,232,10,42191,88974 +113519,239,5,353728,1239342 +113520,317,10,325173,59502 +113521,53,2,323675,1200487 +113522,234,1,98277,1002647 +113523,398,9,118957,1402732 +113524,317,10,54523,1216930 +113525,75,5,326,1407229 +113526,3,5,63401,21168 +113527,387,10,403867,1723494 +113528,204,9,62567,9062 +113529,387,10,43093,11558 +113530,3,5,45273,13931 +113531,387,10,9529,31211 +113532,413,11,32227,22428 +113533,235,5,168259,1375920 +113534,317,10,171738,1154279 +113535,262,6,132601,1396317 +113536,317,10,316885,560179 +113537,148,9,31713,7338 +113538,413,11,84903,20601 +113539,53,2,24397,1385928 +113540,292,3,10204,1613270 +113541,289,6,263115,1705346 +113542,286,3,42764,1186637 +113543,77,10,195,2429 +113544,234,1,1678,18598 +113545,52,10,97365,1123782 +113546,234,1,261035,131405 +113547,209,7,85414,1345268 +113548,61,7,11377,91091 +113549,287,3,168676,1543261 +113550,277,3,92950,1530004 +113551,3,5,261246,1392 +113552,269,9,9613,957624 +113553,413,11,4253,35773 +113554,226,2,49308,1351631 +113555,234,1,264555,92227 +113556,204,9,362057,1401005 +113557,269,9,30708,29279 +113558,75,5,84577,1392946 +113559,303,3,82,21118 +113560,301,5,270851,1097218 +113561,30,5,126889,1644252 +113562,333,2,42345,7689 +113563,175,5,8870,1392718 +113564,3,5,74629,8523 +113565,175,5,540,1559552 +113566,158,2,1125,1406130 +113567,234,1,11161,52413 +113568,87,7,40807,1531494 +113569,234,1,101338,56210 +113570,273,7,82368,238490 +113571,387,10,13391,70101 +113572,160,3,226140,168480 +113573,387,10,9385,34630 +113574,99,3,11577,70987 +113575,157,3,15653,1357399 +113576,234,1,49597,130708 +113577,387,10,6977,1223 +113578,413,11,30508,10234 +113579,387,10,11485,1243 +113580,234,1,4134,34881 +113581,196,7,197,3193 +113582,317,10,94820,1003240 +113583,262,6,8204,11300 +113584,53,2,137145,1189761 +113585,273,7,9667,37317 +113586,226,2,197,1406914 +113587,166,9,93856,1335145 +113588,387,10,142979,234556 +113589,273,7,42640,1086332 +113590,53,2,10761,66551 +113591,204,9,76788,1646138 +113592,262,6,20919,72113 +113593,244,3,345922,1404704 +113594,234,1,8316,1146 +113595,127,3,9593,1485666 +113596,75,5,1640,963861 +113597,53,2,2144,7735 +113598,3,5,195522,131470 +113599,327,7,49940,11243 +113600,234,1,252845,5678 +113601,203,1,21955,1044415 +113602,53,2,96118,11908 +113603,413,11,146243,1327835 +113604,387,10,189888,103035 +113605,234,1,53862,161858 +113606,234,1,108282,40378 +113607,387,10,283726,4387 +113608,387,10,6935,51483 +113609,234,1,340584,557179 +113610,161,6,33273,1538768 +113611,169,3,316042,1337466 +113612,415,3,263115,1821887 +113613,204,9,85640,1324618 +113614,387,10,172011,6818 +113615,273,7,3164,19965 +113616,269,9,19176,2999 +113617,5,10,294651,128702 +113618,172,3,102382,1360114 +113619,373,7,20439,1395446 +113620,269,9,108634,1050807 +113621,262,6,196469,1538338 +113622,53,2,67367,4285 +113623,3,5,2965,8934 +113624,143,7,1896,19817 +113625,234,1,30091,1614 +113626,387,10,9462,19429 +113627,269,9,240913,1317897 +113628,204,9,259593,3358 +113629,349,1,9023,1462665 +113630,349,1,9016,1447476 +113631,269,9,120,1314 +113632,204,9,72574,566356 +113633,234,1,10760,54597 +113634,286,3,43987,1309314 +113635,317,10,321644,91394 +113636,333,2,61225,1456489 +113637,387,10,335872,1278040 +113638,204,9,3023,29637 +113639,413,11,148478,88916 +113640,317,10,46169,87581 +113641,209,7,274504,1609035 +113642,3,5,29376,12307 +113643,3,5,273106,552430 +113644,269,9,303636,1831216 +113645,234,1,90034,938146 +113646,387,10,3595,33236 +113647,180,7,52270,8511 +113648,349,1,9325,937784 +113649,234,1,82040,176980 +113650,387,10,10204,64158 +113651,75,5,65898,1423896 +113652,97,7,99698,1300814 +113653,105,7,272693,1404094 +113654,234,1,43878,11528 +113655,238,7,12103,1547656 +113656,234,1,38922,10774 +113657,52,10,9928,57026 +113658,413,11,5319,43412 +113659,132,2,40807,1401605 +113660,234,1,286971,85925 +113661,53,2,1662,4189 +113662,77,10,55544,2792 +113663,273,7,304372,1639821 +113664,413,11,10805,1732 +113665,234,1,80080,124137 +113666,12,10,43846,1072714 +113667,204,9,10087,63130 +113668,412,9,755,1851727 +113669,360,9,1428,1401122 +113670,317,10,75892,1343564 +113671,413,11,356326,1500724 +113672,333,2,22292,26175 +113673,226,2,220820,1405260 +113674,203,1,245168,1404871 +113675,269,9,935,9869 +113676,234,1,201581,1183661 +113677,234,1,86118,932908 +113678,269,9,149883,552429 +113679,3,5,171337,56277 +113680,376,10,40804,143522 +113681,387,10,403450,229269 +113682,234,1,81434,996539 +113683,79,7,439050,1749863 +113684,317,10,183932,130705 +113685,273,7,24831,14138 +113686,373,7,328111,138618 +113687,333,2,190955,1405322 +113688,53,2,14765,1021802 +113689,210,9,10708,1786676 +113690,203,1,332411,1556404 +113691,413,11,1251,384 +113692,413,11,10841,10218 +113693,234,1,382589,19866 +113694,204,9,43385,4349 +113695,273,7,14400,2949 +113696,413,11,400,3175 +113697,413,11,30374,1279145 +113698,413,11,118,541 +113699,234,1,26149,5140 +113700,317,10,18925,78040 +113701,53,2,262,11476 +113702,413,11,29835,68417 +113703,413,11,353686,2150 +113704,176,3,11607,1342619 +113705,127,3,13836,1673003 +113706,387,10,857,12832 +113707,204,9,23196,1712321 +113708,333,2,43367,4352 +113709,273,7,693,7885 +113710,413,11,115712,1161453 +113711,373,7,287,1418022 +113712,373,7,14128,1551694 +113713,333,2,28290,26175 +113714,3,5,76609,462109 +113715,273,7,42515,558640 +113716,3,5,28297,3637 +113717,262,6,6972,1401590 +113718,3,5,621,2287 +113719,317,10,22160,10147 +113720,288,3,236808,1653028 +113721,273,7,106016,2916 +113722,387,10,116385,94258 +113723,3,5,85414,94654 +113724,333,2,220820,1332525 +113725,387,10,13440,53014 +113726,413,11,181454,1314613 +113727,3,5,244268,1140266 +113728,65,3,4147,9558 +113729,166,9,265208,1410098 +113730,317,10,19348,54025 +113731,273,7,393732,1778310 +113732,234,1,4978,40345 +113733,182,8,9358,1441324 +113734,143,7,36785,116210 +113735,3,5,102,1175 +113736,53,2,16164,558225 +113737,269,9,300,4283 +113738,105,7,132714,5466 +113739,413,11,8276,1046678 +113740,387,10,9765,673 +113741,317,10,21062,64001 +113742,72,11,75174,1463816 +113743,209,7,167073,1376807 +113744,234,1,87388,937879 +113745,105,7,33570,56748 +113746,234,1,67021,1269935 +113747,387,10,72465,71489 +113748,387,10,143092,127351 +113749,3,5,111017,70821 +113750,234,1,107250,25882 +113751,160,3,10491,1393882 +113752,187,11,334,1299405 +113753,66,11,9514,1642564 +113754,262,6,2567,1032536 +113755,53,2,283995,10970 +113756,317,10,63838,1596108 +113757,148,9,1850,19466 +113758,234,1,15060,74052 +113759,143,7,128866,1665463 +113760,262,6,4248,1392136 +113761,175,5,69,9360 +113762,317,10,37935,121485 +113763,239,5,20648,1537112 +113764,366,3,76757,1483142 +113765,187,11,1579,8762 +113766,60,1,63215,1520901 +113767,289,6,10193,8042 +113768,234,1,54405,36804 +113769,291,6,443319,1399863 +113770,234,1,19715,57314 +113771,234,1,446345,1774356 +113772,204,9,132601,1396314 +113773,273,7,12449,55773 +113774,287,3,41171,79185 +113775,289,6,24238,1454662 +113776,3,5,106635,144124 +113777,3,5,320005,1382743 +113778,3,5,29829,34326 +113779,129,11,3035,1553 +113780,226,2,42418,1445868 +113781,317,10,286709,1084436 +113782,234,1,142168,2165 +113783,317,10,31413,145518 +113784,166,9,167,1435689 +113785,198,6,8916,1780715 +113786,52,10,42182,17208 +113787,77,10,2291,3431 +113788,333,2,237796,16236 +113789,203,1,63831,1125858 +113790,7,3,116463,1691501 +113791,87,7,405473,1747167 +113792,60,1,17978,12993 +113793,336,2,2567,92085 +113794,53,2,4982,946 +113795,182,8,195269,1393418 +113796,52,10,47795,10316 +113797,301,5,356500,1393363 +113798,234,1,32226,109082 +113799,413,11,28263,66216 +113800,166,9,7220,1532709 +113801,5,10,27085,15776 +113802,5,10,11370,24840 +113803,413,11,145481,1170178 +113804,273,7,329135,5288 +113805,317,10,52021,45989 +113806,32,8,1724,1455461 +113807,333,2,10145,25751 +113808,97,7,222935,20228 +113809,127,3,14554,166335 +113810,64,6,209032,1192406 +113811,97,7,9423,1341856 +113812,413,11,144271,1120643 +113813,234,1,31111,107627 +113814,219,11,437122,1755174 +113815,273,7,152748,211391 +113816,317,10,273896,1348810 +113817,67,10,12182,1463874 +113818,262,6,251227,1286576 +113819,12,10,19912,57429 +113820,317,10,411802,1459908 +113821,387,10,12113,71311 +113822,269,9,54396,7716 +113823,204,9,42502,1000924 +113824,234,1,339408,77277 +113825,234,1,50363,12238 +113826,123,3,15981,1010005 +113827,52,10,31498,103912 +113828,317,10,98586,980124 +113829,317,10,315335,1407938 +113830,234,1,42709,20921 +113831,234,1,12447,12962 +113832,387,10,3035,29807 +113833,398,9,21786,1336909 +113834,234,1,115173,1061039 +113835,301,5,332411,1579385 +113836,286,3,135679,1103538 +113837,148,9,145135,1417859 +113838,234,1,310119,77162 +113839,181,7,9428,1410954 +113840,5,10,10874,29533 +113841,333,2,84903,31206 +113842,387,10,166886,1148528 +113843,21,3,86920,931830 +113844,3,5,4983,40387 +113845,148,9,43828,12348 +113846,317,10,36615,125091 +113847,200,3,10145,1371100 +113848,289,6,276909,1453003 +113849,204,9,43266,44878 +113850,328,6,315837,1797239 +113851,387,10,19968,29618 +113852,75,5,18843,122085 +113853,3,5,11377,58209 +113854,187,11,10972,1352966 +113855,148,9,10973,12348 +113856,413,11,38732,29636 +113857,161,6,1966,1733792 +113858,415,3,43093,12301 +113859,314,2,64807,1512725 +113860,148,9,22803,4909 +113861,127,3,1165,1512784 +113862,387,10,10565,66048 +113863,105,7,347945,1042452 +113864,317,10,46943,137893 +113865,3,5,65002,10253 +113866,3,5,20919,1168680 +113867,317,10,26331,52154 +113868,203,1,71859,1393455 +113869,234,1,8382,56353 +113870,415,3,935,13494 +113871,287,3,39875,1390235 +113872,317,10,188161,570785 +113873,234,1,295602,1368907 +113874,64,6,28118,1447494 +113875,269,9,12135,1056972 +113876,143,7,9982,1400558 +113877,198,6,206647,1551894 +113878,127,3,29372,103678 +113879,234,1,696,1243 +113880,413,11,9078,64869 +113881,190,7,1902,1730399 +113882,234,1,78568,21678 +113883,87,7,41733,1192700 +113884,317,10,52847,19094 +113885,273,7,4257,23739 +113886,413,11,140607,15350 +113887,27,3,857,1662332 +113888,293,2,353728,1699372 +113889,181,7,655,9890 +113890,413,11,31498,30412 +113891,234,1,325205,1426709 +113892,333,2,19338,1484705 +113893,204,9,242683,8622 +113894,75,5,9914,1540850 +113895,52,10,57575,40035 +113896,250,11,7445,1407235 +113897,203,1,84340,1339963 +113898,273,7,196235,1176353 +113899,234,1,401427,1633089 +113900,333,2,206647,1551800 +113901,387,10,142391,1322096 +113902,3,5,14976,6117 +113903,204,9,38807,41710 +113904,317,10,46121,25736 +113905,413,11,124470,1448292 +113906,303,3,11377,84702 +113907,52,10,27999,84941 +113908,317,10,32091,25238 +113909,164,3,209112,1661327 +113910,232,10,73969,726140 +113911,413,11,44943,6668 +113912,234,1,31942,170706 +113913,413,11,2124,17399 +113914,291,6,219466,1640820 +113915,413,11,43432,46861 +113916,204,9,128215,1208813 +113917,3,5,419459,1394652 +113918,387,10,21626,1215282 +113919,3,5,13005,16300 +113920,304,10,3063,30011 +113921,234,1,9472,57633 +113922,387,10,36758,65035 +113923,57,2,284052,1401126 +113924,3,5,39407,85855 +113925,234,1,458428,1820248 +113926,387,10,413452,1371036 +113927,317,10,264729,1167112 +113928,234,1,86472,236755 +113929,413,11,125490,989692 +113930,234,1,24685,34613 +113931,413,11,50350,578516 +113932,317,10,210609,178272 +113933,413,11,1859,19409 +113934,413,11,9297,44029 +113935,60,1,397365,1653481 +113936,209,7,4147,7538 +113937,234,1,92586,57641 +113938,72,11,14,993536 +113939,224,3,379019,61819 +113940,413,11,356842,31437 +113941,234,1,285840,190919 +113942,190,7,59678,1834969 +113943,53,2,2613,1522047 +113944,45,9,265208,1490941 +113945,413,11,7085,18554 +113946,317,10,282963,1214510 +113947,234,1,35395,101666 +113948,360,9,379019,1780151 +113949,5,10,137357,3353 +113950,403,10,315846,1066210 +113951,387,10,243935,1215397 +113952,148,9,946,12292 +113953,317,10,86497,1016054 +113954,413,11,46786,10613 +113955,234,1,6963,1704 +113956,175,5,154972,1403883 +113957,234,1,127521,5917 +113958,53,2,129553,12145 +113959,317,10,358199,1505159 +113960,204,9,10071,11374 +113961,234,1,31264,31775 +113962,286,3,418772,29231 +113963,273,7,86920,121005 +113964,413,11,392011,1603875 +113965,234,1,284305,1347622 +113966,250,11,351211,1616397 +113967,234,1,17935,82516 +113968,204,9,33333,1044527 +113969,413,11,15476,1327244 +113970,317,10,47057,87137 +113971,46,5,383538,1851920 +113972,52,10,10865,133118 +113973,105,7,22257,87241 +113974,3,5,544,7413 +113975,269,9,781,1079 +113976,53,2,81616,1423730 +113977,234,1,1890,19798 +113978,287,3,15762,1485648 +113979,234,1,6417,49667 +113980,387,10,49258,71640 +113981,3,5,11899,14456 +113982,387,10,10142,11055 +113983,234,1,79234,586219 +113984,66,11,156711,1547775 +113985,226,2,251,1453274 +113986,148,9,341491,1707195 +113987,387,10,72215,565332 +113988,203,1,283686,1582733 +113989,269,9,11800,17148 +113990,3,5,37911,109000 +113991,387,10,59738,1493200 +113992,204,9,148284,961268 +113993,250,11,17622,1440866 +113994,269,9,85494,118225 +113995,333,2,25941,1558431 +113996,387,10,126127,1022760 +113997,53,2,126323,963971 +113998,413,11,136752,1208807 +113999,3,5,351365,1334272 +114000,298,5,296524,1401593 +114001,387,10,111398,1530374 +114002,289,6,291270,1584352 +114003,52,10,340961,5810 +114004,234,1,80304,589159 +114005,413,11,271718,33283 +114006,196,7,15613,1115736 +114007,413,11,253257,569737 +114008,269,9,269258,1153034 +114009,317,10,62301,12180 +114010,160,3,2321,142161 +114011,387,10,144475,137207 +114012,73,7,28000,3646 +114013,275,9,378236,1653765 +114014,53,2,73348,4350 +114015,52,10,55720,932923 +114016,234,1,66178,45730 +114017,394,7,16996,1400812 +114018,397,7,91261,1802702 +114019,204,9,24554,90869 +114020,175,5,127521,1401196 +114021,317,10,45935,69831 +114022,413,11,49712,12758 +114023,5,10,118451,1294606 +114024,234,1,182228,1141883 +114025,196,7,2924,1339446 +114026,413,11,445993,1346489 +114027,269,9,490,6654 +114028,413,11,11456,6875 +114029,273,7,31671,1760 +114030,413,11,84993,67828 +114031,204,9,11600,11818 +114032,373,7,45019,9410 +114033,234,1,126141,9956 +114034,87,7,310888,1538714 +114035,273,7,44287,17212 +114036,413,11,373546,6995 +114037,387,10,1813,19241 +114038,155,3,378441,1643917 +114039,273,7,44732,25548 +114040,148,9,45527,1511789 +114041,387,10,193878,130001 +114042,3,5,82485,935296 +114043,317,10,153854,1134669 +114044,310,3,127380,1636397 +114045,286,3,358924,1741051 +114046,387,10,94727,10092 +114047,234,1,75315,19093 +114048,387,10,1427,1071 +114049,52,10,254679,1268359 +114050,387,10,70313,34402 +114051,269,9,248698,1640319 +114052,387,10,43354,115602 +114053,234,1,156141,1024850 +114054,200,3,193893,1496425 +114055,219,11,9946,1552188 +114056,204,9,294254,1571475 +114057,209,7,329440,1622443 +114058,413,11,142656,552002 +114059,198,6,293167,1646598 +114060,413,11,171213,2425 +114061,317,10,67021,548474 +114062,3,5,37284,1542409 +114063,111,7,126889,158596 +114064,360,3,613,1425850 +114065,289,6,3989,1454410 +114066,234,1,13596,26502 +114067,411,9,337339,1424153 +114068,203,1,12783,1740770 +114069,187,11,204922,1408377 +114070,162,6,48202,102795 +114071,413,11,11576,51767 +114072,387,10,11930,24120 +114073,20,2,373546,1869439 +114074,327,7,64215,1354355 +114075,87,7,21338,1536514 +114076,108,10,14703,3634 +114077,328,6,97365,1400768 +114078,317,10,139463,77104 +114079,317,10,22554,88914 +114080,97,7,140607,1550780 +114081,234,1,17614,160 +114082,273,7,55544,2996 +114083,77,10,6183,48494 +114084,234,1,317198,32868 +114085,165,9,12113,1405377 +114086,394,7,87826,58362 +114087,188,8,634,1576027 +114088,287,3,17209,1451548 +114089,234,1,138496,1048421 +114090,387,10,62764,58789 +114091,204,9,11607,958278 +114092,273,7,12720,73683 +114093,327,7,83461,1803566 +114094,77,10,13680,74938 +114095,273,7,17238,54670 +114096,182,8,16921,1401766 +114097,317,10,51284,1112037 +114098,3,5,151043,1027513 +114099,387,10,9717,774 +114100,317,10,41097,125456 +114101,234,1,80771,82389 +114102,317,10,201724,188269 +114103,148,9,158908,1521079 +114104,3,5,17007,21793 +114105,413,11,414749,54798 +114106,234,1,33668,13980 +114107,234,1,30349,233474 +114108,234,1,339148,1332325 +114109,244,3,10727,1584241 +114110,53,2,9648,77731 +114111,388,9,76163,1379427 +114112,204,9,194509,47077 +114113,226,2,244610,1559455 +114114,158,2,59296,1407743 +114115,179,2,334527,1735076 +114116,286,3,299165,33800 +114117,143,7,277355,1335147 +114118,273,7,814,7182 +114119,234,1,296288,114484 +114120,234,1,157117,533061 +114121,77,10,2984,13848 +114122,148,9,20312,1424453 +114123,5,10,2982,25167 +114124,234,1,255384,1271448 +114125,3,5,43645,1632 +114126,203,1,83890,1520690 +114127,148,9,41213,1777194 +114128,234,1,9325,57314 +114129,53,2,42569,8885 +114130,11,6,49013,1609044 +114131,287,3,27259,117243 +114132,234,1,46986,91343 +114133,77,10,10075,54248 +114134,286,3,64942,1051646 +114135,105,7,2692,30797 +114136,53,2,8292,15524 +114137,273,7,37311,117416 +114138,108,10,43141,7661 +114139,148,9,325039,1544658 +114140,34,8,4147,1558698 +114141,204,9,44754,40248 +114142,196,7,8617,1400070 +114143,269,9,75244,1085552 +114144,234,1,14694,1270 +114145,273,7,1793,8422 +114146,87,7,340176,1711436 +114147,5,10,336549,1134706 +114148,360,3,216580,1112804 +114149,413,11,39824,1917 +114150,413,11,11422,11997 +114151,373,7,69,1377220 +114152,317,10,114577,1059013 +114153,273,7,352094,1516317 +114154,317,10,57781,107669 +114155,387,10,27105,80610 +114156,234,1,55236,8823 +114157,148,9,12171,1421261 +114158,413,11,436,2866 +114159,413,11,115109,10603 +114160,387,10,393445,35736 +114161,387,10,48791,1466328 +114162,234,1,408508,1049745 +114163,317,10,323675,54048 +114164,398,9,5425,138638 +114165,105,7,23385,26191 +114166,234,1,46623,40199 +114167,148,9,43514,1531004 +114168,273,7,27599,6335 +114169,413,11,352327,1209172 +114170,328,6,443319,1888985 +114171,5,10,179826,29923 +114172,234,1,15749,34970 +114173,226,2,105059,113658 +114174,182,8,1586,1409709 +114175,234,1,53798,127515 +114176,234,1,104931,3776 +114177,175,5,70074,1378240 +114178,75,5,9358,1379160 +114179,204,9,14430,138355 +114180,317,10,241170,29924 +114181,387,10,291,4320 +114182,269,9,42684,970568 +114183,317,10,64736,127124 +114184,273,7,101852,80207 +114185,413,11,15725,110521 +114186,203,1,242310,1367139 +114187,352,3,773,1564535 +114188,52,10,158598,1139969 +114189,158,2,345922,1789314 +114190,413,11,4380,3032 +114191,273,7,15849,78832 +114192,304,10,81551,85801 +114193,209,7,340101,1099948 +114194,234,1,82079,1445700 +114195,273,7,16806,719 +114196,387,10,2017,20687 +114197,179,2,7299,23717 +114198,234,1,126963,1083453 +114199,373,7,1586,21103 +114200,317,10,14587,6975 +114201,373,7,10344,1406614 +114202,273,7,43441,5467 +114203,286,3,343284,11371 +114204,239,5,317,1599485 +114205,203,1,104674,1816952 +114206,3,5,207270,1162828 +114207,273,7,11346,69097 +114208,317,10,285213,1108065 +114209,289,6,149870,1456613 +114210,3,5,9286,57135 +114211,234,1,167935,1063051 +114212,45,9,48231,1643410 +114213,286,3,19936,37952 +114214,403,10,332354,1386790 +114215,175,5,10929,1566069 +114216,77,10,110,1132 +114217,132,2,274504,91051 +114218,273,7,80389,8576 +114219,234,1,134662,1099847 +114220,286,3,31347,12186 +114221,333,2,218778,1402105 +114222,234,1,255647,110968 +114223,249,7,9529,1395361 +114224,83,2,384737,1825450 +114225,75,5,354287,1388897 +114226,175,5,109424,1392718 +114227,234,1,27245,144014 +114228,273,7,192558,1414454 +114229,317,10,128412,1087031 +114230,148,9,3033,29789 +114231,262,6,9457,30148 +114232,273,7,176670,4345 +114233,160,3,24619,9567 +114234,317,10,118131,29965 +114235,175,5,17015,1840481 +114236,209,7,336882,1411814 +114237,273,7,39867,96003 +114238,289,6,10693,143786 +114239,208,2,302699,1309209 +114240,3,5,22404,14648 +114241,387,10,2734,1725 +114242,387,10,20221,590990 +114243,317,10,30666,190122 +114244,203,1,4011,1560855 +114245,53,2,40130,1129789 +114246,273,7,55604,8619 +114247,387,10,10096,63353 +114248,169,3,70074,14766 +114249,234,1,9289,57142 +114250,234,1,62967,236337 +114251,413,11,42218,21781 +114252,413,11,55192,552002 +114253,204,9,10257,64428 +114254,273,7,52991,109413 +114255,234,1,346106,84074 +114256,148,9,65674,1121982 +114257,54,10,314283,1391647 +114258,5,10,910,12493 +114259,317,10,125623,1062509 +114260,317,10,50647,77089 +114261,234,1,253794,1203693 +114262,158,2,10733,1397853 +114263,387,10,106573,30012 +114264,317,10,125344,130992 +114265,387,10,151431,29663 +114266,3,5,67822,31181 +114267,289,6,329865,1646552 +114268,53,2,13576,1449379 +114269,413,11,63493,5884 +114270,333,2,194,1449979 +114271,317,10,369363,1563239 +114272,53,2,664,7735 +114273,209,7,59981,1404393 +114274,317,10,29143,11770 +114275,196,7,131737,1341736 +114276,302,9,9298,1878421 +114277,413,11,74505,26850 +114278,398,9,2124,21813 +114279,3,5,390587,1164437 +114280,3,5,194407,98442 +114281,244,3,8870,1511803 +114282,75,5,5237,105108 +114283,3,5,32690,1092852 +114284,148,9,218778,948223 +114285,12,10,11950,68857 +114286,381,9,302699,1419099 +114287,234,1,375012,1262867 +114288,45,9,2662,1351274 +114289,394,7,227306,1031811 +114290,333,2,97614,1326401 +114291,203,1,24625,1427384 +114292,234,1,62463,15488 +114293,306,7,55720,1638067 +114294,40,1,33586,1814960 +114295,204,9,41733,1357043 +114296,196,7,25941,40816 +114297,269,9,6557,7234 +114298,269,9,24584,8805 +114299,273,7,42726,70179 +114300,203,1,10909,1427384 +114301,204,9,14181,7439 +114302,269,9,252171,1454379 +114303,234,1,44631,94096 +114304,5,10,57412,1125694 +114305,196,7,10344,1446198 +114306,77,10,476,6469 +114307,269,9,23964,23866 +114308,387,10,43155,559101 +114309,413,11,8897,6318 +114310,333,2,91583,89539 +114311,3,5,66526,110701 +114312,127,3,11045,1610245 +114313,52,10,188392,1004823 +114314,234,1,11227,59 +114315,196,7,7299,1433719 +114316,3,5,111839,17749 +114317,328,6,243940,1525152 +114318,181,7,206514,1189053 +114319,75,5,14811,1548281 +114320,155,3,23128,8984 +114321,234,1,31074,182700 +114322,286,3,1481,29081 +114323,200,3,1273,1451676 +114324,52,10,53576,148516 +114325,143,7,3933,7537 +114326,413,11,262841,3987 +114327,317,10,76198,25183 +114328,204,9,15613,21070 +114329,199,3,1271,2293 +114330,360,3,294652,1475736 +114331,148,9,4538,38807 +114332,333,2,86820,1740047 +114333,204,9,71805,1635809 +114334,3,5,35200,16331 +114335,162,6,9042,3964 +114336,174,6,194,1551985 +114337,105,7,302828,1573466 +114338,234,1,82631,84061 +114339,413,11,28533,101099 +114340,234,1,24059,115673 +114341,317,10,197297,145352 +114342,317,10,13079,136130 +114343,413,11,10268,1663 +114344,234,1,38150,87213 +114345,3,5,261112,1066228 +114346,273,7,122857,1099075 +114347,273,7,20715,46955 +114348,387,10,30307,588093 +114349,75,5,294690,1372427 +114350,209,7,7220,1382250 +114351,317,10,348320,1390087 +114352,234,1,128412,40260 +114353,270,9,9457,1421696 +114354,53,2,42188,9006 +114355,175,5,28171,100020 +114356,234,1,17236,7847 +114357,273,7,85160,1432466 +114358,148,9,13600,957666 +114359,3,5,38987,1171528 +114360,204,9,10336,14492 +114361,413,11,310135,1501949 +114362,250,11,51250,77107 +114363,317,10,55563,58973 +114364,387,10,12169,71506 +114365,148,9,38807,1337940 +114366,291,6,6068,1536374 +114367,3,5,82077,38697 +114368,413,11,339419,53645 +114369,286,3,61035,35655 +114370,198,6,181533,1869375 +114371,317,10,97088,55761 +114372,236,8,410537,1727206 +114373,413,11,270403,51086 +114374,208,2,58244,1402019 +114375,317,10,95177,139150 +114376,269,9,45013,34193 +114377,226,2,102629,1402546 +114378,217,3,14430,1521699 +114379,333,2,62630,26196 +114380,209,7,259728,1301991 +114381,105,7,29467,14356 +114382,60,1,42231,1359433 +114383,394,7,1690,42035 +114384,203,1,82696,1395373 +114385,317,10,43882,86357 +114386,166,9,283445,1548086 +114387,298,5,330459,1405241 +114388,204,9,99283,9062 +114389,203,1,11511,1403421 +114390,234,1,117426,143280 +114391,234,1,24963,21246 +114392,234,1,44449,11523 +114393,104,7,200727,1614064 +114394,234,1,16164,18844 +114395,157,3,54093,1553491 +114396,234,1,24926,1043047 +114397,346,3,9286,1407827 +114398,411,9,296524,21470 +114399,209,7,169881,1519302 +114400,20,2,13162,60366 +114401,413,11,1691,7184 +114402,234,1,50012,3776 +114403,269,9,51104,11558 +114404,368,7,423988,1818835 +114405,262,6,76163,1396801 +114406,398,9,284289,41890 +114407,387,10,44104,1202504 +114408,273,7,39356,1671688 +114409,226,2,3087,1529483 +114410,328,6,1271,1394749 +114411,234,1,374247,38625 +114412,78,3,365942,1738122 +114413,75,5,42764,1766570 +114414,298,5,1966,1404244 +114415,317,10,43989,129978 +114416,317,10,157919,1139094 +114417,234,1,134308,33056 +114418,317,10,290316,1029284 +114419,317,10,19912,20218 +114420,20,2,924,1548531 +114421,3,5,11622,4376 +114422,182,8,379019,1780163 +114423,234,1,142966,219052 +114424,45,9,168259,1506359 +114425,5,10,29117,35876 +114426,92,7,65898,10050 +114427,234,1,35113,172 +114428,204,9,291577,1362521 +114429,148,9,25918,4104 +114430,317,10,13017,1216184 +114431,273,7,11862,37 +114432,317,10,45987,134343 +114433,3,5,68976,18744 +114434,413,11,167810,54260 +114435,182,8,29224,1024185 +114436,234,1,45675,133426 +114437,132,2,60281,1428582 +114438,317,10,28466,3389 +114439,273,7,419459,1394654 +114440,204,9,11351,1046590 +114441,3,5,173301,1156076 +114442,273,7,815,15874 +114443,289,6,10674,1113194 +114444,203,1,102382,1399481 +114445,234,1,57816,1095833 +114446,333,2,273404,1445364 +114447,234,1,158232,1139404 +114448,60,1,11577,70250 +114449,289,6,294254,1571494 +114450,234,1,11983,18596 +114451,387,10,12617,57625 +114452,328,6,146243,1341775 +114453,72,11,329440,1530138 +114454,105,7,89325,1213 +114455,105,7,214138,1284154 +114456,387,10,10488,65378 +114457,200,3,225728,1453238 +114458,303,3,9358,1415634 +114459,413,11,43832,34224 +114460,287,3,341886,1573336 +114461,269,9,15179,1150533 +114462,289,6,10193,1413096 +114463,387,10,11007,67776 +114464,3,5,55612,65882 +114465,208,2,227306,1069714 +114466,387,10,38340,58180 +114467,245,3,49642,65976 +114468,387,10,270774,937016 +114469,5,10,86979,1177894 +114470,234,1,10395,5342 +114471,182,8,10344,91341 +114472,175,5,139519,1533601 +114473,226,2,12526,1536928 +114474,387,10,43464,100914 +114475,75,5,84226,1418441 +114476,204,9,139718,352394 +114477,18,2,46738,1150161 +114478,12,10,346672,3952 +114479,317,10,349441,583763 +114480,52,10,28859,101449 +114481,204,9,140607,1428907 +114482,269,9,318553,1646810 +114483,175,5,405473,1544494 +114484,52,10,63414,1055737 +114485,189,3,11351,1419160 +114486,419,10,34204,108784 +114487,148,9,340101,39202 +114488,412,9,302699,1532070 +114489,273,7,10992,4500 +114490,204,9,206647,1335539 +114491,250,11,243940,1427435 +114492,52,10,220488,66960 +114493,245,3,102428,1030578 +114494,234,1,51364,8635 +114495,148,9,65488,9063 +114496,413,11,44754,5884 +114497,234,1,29056,102429 +114498,141,7,11697,1532774 +114499,317,10,222619,1214705 +114500,66,11,45244,1605651 +114501,160,3,522,1424176 +114502,204,9,32868,966846 +114503,317,10,17170,1047730 +114504,273,7,195796,1714350 +114505,52,10,122857,56032 +114506,234,1,16985,87565 +114507,3,5,9457,37434 +114508,387,10,24777,1181308 +114509,53,2,319340,1440421 +114510,269,9,10351,1042653 +114511,269,9,179826,11877 +114512,387,10,12787,2295 +114513,317,10,385750,963482 +114514,360,3,2675,1333980 +114515,413,11,10103,10108 +114516,286,3,48419,140472 +114517,168,3,31146,91042 +114518,204,9,33613,1455301 +114519,67,10,1966,1453613 +114520,394,7,83732,930016 +114521,187,11,10395,73951 +114522,160,3,168027,102779 +114523,269,9,253235,198641 +114524,301,5,116979,1700888 +114525,52,10,53217,362742 +114526,57,2,921,1409824 +114527,160,3,69,81687 +114528,204,9,29372,34080 +114529,234,1,14405,1215 +114530,387,10,39779,57625 +114531,87,7,72984,185998 +114532,207,3,12783,1410203 +114533,234,1,393562,85670 +114534,53,2,6145,36624 +114535,273,7,149511,1362139 +114536,148,9,121598,1880905 +114537,387,10,38356,15244 +114538,234,1,103396,5029 +114539,105,7,172705,1155292 +114540,413,11,39875,12703 +114541,398,9,8870,1642832 +114542,273,7,20432,1099735 +114543,325,5,241239,1468587 +114544,306,7,66526,1640317 +114545,234,1,126712,33954 +114546,387,10,354287,114334 +114547,108,10,16899,12718 +114548,97,7,153,1389570 +114549,387,10,4248,9562 +114550,52,10,76101,228102 +114551,296,3,2567,1532617 +114552,328,6,195269,1391529 +114553,3,5,43114,3351 +114554,3,5,8989,56508 +114555,413,11,35921,3099 +114556,413,11,11007,7184 +114557,234,1,8014,7324 +114558,87,7,42188,1192700 +114559,413,11,1963,1188 +114560,226,2,227306,1866242 +114561,196,7,127380,1408799 +114562,317,10,638,6586 +114563,387,10,37911,69948 +114564,273,7,88320,7647 +114565,204,9,12994,1149269 +114566,5,10,524,7163 +114567,12,10,90956,120531 +114568,5,10,74924,573321 +114569,234,1,109354,41049 +114570,301,5,4982,983118 +114571,75,5,2721,1539840 +114572,53,2,84340,1045860 +114573,3,5,270851,79392 +114574,5,10,94674,1121522 +114575,234,1,228647,1496 +114576,234,1,31991,64278 +114577,46,5,28178,1532352 +114578,234,1,194393,101899 +114579,208,2,362057,109129 +114580,148,9,226188,1391683 +114581,387,10,16094,68215 +114582,203,1,9771,1536258 +114583,273,7,36335,97450 +114584,234,1,5721,4590 +114585,52,10,340961,1513371 +114586,317,10,288710,1168119 +114587,3,5,81120,591018 +114588,317,10,18557,188897 +114589,105,7,354133,1496075 +114590,239,5,67328,1583635 +114591,327,7,120478,128500 +114592,317,10,36375,4341 +114593,75,5,178809,1376294 +114594,161,6,329865,1646565 +114595,234,1,77950,94075 +114596,269,9,13668,774208 +114597,234,1,28063,25826 +114598,301,5,294254,1424696 +114599,226,2,37936,1474740 +114600,387,10,29786,69878 +114601,269,9,26510,1555741 +114602,333,2,10727,1418265 +114603,234,1,49502,93975 +114604,373,7,284052,8166 +114605,286,3,38034,119467 +114606,3,5,109122,89159 +114607,273,7,43022,8619 +114608,387,10,41581,126965 +114609,413,11,275269,99710 +114610,203,1,2613,1464541 +114611,75,5,6171,1392916 +114612,234,1,306966,54528 +114613,317,10,66967,53767 +114614,234,1,18238,82822 +114615,289,6,81003,1461156 +114616,234,1,18,59 +114617,387,10,17771,225898 +114618,46,5,159667,1849518 +114619,105,7,28001,30256 +114620,323,10,446345,1589029 +114621,5,10,129359,1088218 +114622,317,10,117506,58054 +114623,269,9,43976,1493013 +114624,394,7,9428,15432 +114625,60,1,308269,1447884 +114626,148,9,329010,1587605 +114627,148,9,11321,19157 +114628,234,1,65599,51534 +114629,3,5,47310,10079 +114630,314,2,31911,1445469 +114631,413,11,13549,5584 +114632,221,3,8204,1700837 +114633,204,9,29143,1178592 +114634,165,9,693,1552932 +114635,234,1,22615,93393 +114636,234,1,321191,75913 +114637,273,7,2731,9152 +114638,234,1,38807,71788 +114639,180,7,55197,1551747 +114640,323,10,27221,97327 +114641,317,10,38787,13953 +114642,273,7,8672,20552 +114643,317,10,28535,101105 +114644,415,3,41963,1411523 +114645,273,7,436,5881 +114646,234,1,2978,8858 +114647,286,3,94935,1662195 +114648,262,6,286372,1378149 +114649,180,7,47900,1179288 +114650,52,10,18696,25316 +114651,3,5,103620,23461 +114652,234,1,9629,18502 +114653,286,3,291871,1284733 +114654,387,10,11511,69673 +114655,413,11,8398,5546 +114656,52,10,259593,10792 +114657,167,3,12103,1625916 +114658,182,8,32657,1564160 +114659,317,10,21843,88021 +114660,148,9,262338,965761 +114661,234,1,148347,107721 +114662,3,5,172,2082 +114663,53,2,211144,1319152 +114664,234,1,33588,110962 +114665,34,8,209112,1661419 +114666,269,9,318553,1489933 +114667,234,1,287636,17051 +114668,75,5,433034,1431085 +114669,204,9,27114,3255 +114670,317,10,110146,1118631 +114671,398,9,311324,1378676 +114672,272,3,8619,1340132 +114673,105,7,47186,929985 +114674,87,7,200727,1573342 +114675,64,6,68721,1450362 +114676,75,5,70074,74989 +114677,52,10,206647,932 +114678,387,10,64720,71872 +114679,286,3,126415,236755 +114680,262,6,62630,1335048 +114681,317,10,16214,40185 +114682,234,1,270654,1323122 +114683,5,10,5928,13971 +114684,234,1,132759,235774 +114685,234,1,188684,97205 +114686,204,9,19901,1391707 +114687,349,1,13205,1779877 +114688,234,1,75623,371298 +114689,387,10,815,15871 +114690,234,1,220005,1184377 +114691,317,10,253192,1269249 +114692,234,1,319396,1430296 +114693,113,9,442752,1761887 +114694,269,9,152737,5329 +114695,234,1,74103,1174816 +114696,196,7,9358,1407813 +114697,234,1,239513,56353 +114698,387,10,42517,119423 +114699,273,7,45874,2704 +114700,317,10,381767,1574550 +114701,387,10,25625,10367 +114702,52,10,91480,89674 +114703,160,3,12171,1415957 +114704,110,1,328111,61300 +114705,317,10,140814,1113453 +114706,397,7,26558,1661844 +114707,273,7,310135,1501948 +114708,328,6,373546,1869449 +114709,387,10,10467,9168 +114710,234,1,15776,937648 +114711,210,9,379019,1780190 +114712,413,11,281124,131411 +114713,3,5,249021,81297 +114714,123,3,81895,1232954 +114715,239,5,379,1554310 +114716,234,1,2047,52968 +114717,234,1,41160,59248 +114718,3,5,71672,72957 +114719,234,1,3686,33542 +114720,136,1,241140,1312411 +114721,3,5,15935,42384 +114722,234,1,51357,13953 +114723,204,9,66125,1017015 +114724,234,1,221135,128947 +114725,3,5,16410,12242 +114726,105,7,284564,16848 +114727,287,3,333371,23788 +114728,234,1,24050,114841 +114729,5,10,17622,1122005 +114730,5,10,66967,1473530 +114731,3,5,23628,90415 +114732,127,3,10066,1307803 +114733,203,1,214756,1367679 +114734,273,7,77459,66841 +114735,387,10,10770,51421 +114736,387,10,211561,4415 +114737,203,1,2675,958273 +114738,179,2,21927,1416956 +114739,325,5,293167,1411272 +114740,301,5,45273,1404817 +114741,234,1,156015,73153 +114742,387,10,146926,63937 +114743,387,10,284293,82335 +114744,387,10,424014,1052203 +114745,317,10,231009,28256 +114746,387,10,24062,155376 +114747,187,11,9785,1404718 +114748,286,3,24123,957150 +114749,340,2,263115,1579005 +114750,52,10,112973,1056085 +114751,234,1,137528,1196006 +114752,387,10,128111,1086398 +114753,371,3,116463,1691513 +114754,75,5,346672,1398934 +114755,262,6,257088,1638136 +114756,108,10,10735,66961 +114757,45,9,71668,1827276 +114758,3,5,18190,6626 +114759,234,1,3587,13563 +114760,226,2,163,1509355 +114761,234,1,2,16767 +114762,60,1,332788,1446046 +114763,234,1,36635,29808 +114764,5,10,77060,5835 +114765,234,1,96702,89632 +114766,208,2,218778,23787 +114767,234,1,31412,97278 +114768,239,5,309879,1621477 +114769,60,1,18,1512798 +114770,387,10,14703,6593 +114771,286,3,394822,59871 +114772,262,6,330770,1374466 +114773,234,1,390059,229380 +114774,286,3,424600,1002482 +114775,387,10,27637,1724679 +114776,160,3,44363,62596 +114777,234,1,40205,118463 +114778,340,2,193893,1871270 +114779,196,7,293167,1412984 +114780,234,1,29832,1170415 +114781,53,2,6443,935742 +114782,413,11,156597,961349 +114783,52,10,91548,1055202 +114784,373,7,293660,113073 +114785,333,2,10929,1441345 +114786,53,2,29286,13959 +114787,234,1,270015,582417 +114788,27,3,10320,1394323 +114789,3,5,17654,967026 +114790,413,11,31527,2891 +114791,387,10,153162,1503 +114792,333,2,264525,1319417 +114793,105,7,19996,229965 +114794,234,1,25142,68519 +114795,108,10,236395,89084 +114796,40,1,71668,76060 +114797,85,10,374883,1288502 +114798,273,7,5421,42054 +114799,413,11,25241,80259 +114800,387,10,312831,56662 +114801,289,6,32532,109314 +114802,413,11,20644,22599 +114803,5,10,38010,1718440 +114804,3,5,12807,73746 +114805,3,5,202337,58826 +114806,234,1,83201,12099 +114807,179,2,228970,6924 +114808,373,7,257088,1399141 +114809,387,10,3933,34892 +114810,83,2,7326,112656 +114811,204,9,181533,62859 +114812,209,7,4547,16497 +114813,234,1,23515,230094 +114814,187,11,9438,13168 +114815,269,9,31083,961533 +114816,3,5,241927,1005592 +114817,327,7,128412,1176406 +114818,273,7,7219,119371 +114819,234,1,29483,36042 +114820,387,10,317557,60185 +114821,99,3,678,120753 +114822,45,9,16444,108815 +114823,75,5,84030,1579656 +114824,204,9,43141,47077 +114825,97,7,16436,144341 +114826,387,10,231082,1160253 +114827,269,9,48617,935705 +114828,3,5,26880,224832 +114829,317,10,102197,82592 +114830,67,10,1902,1617596 +114831,180,7,50247,1542919 +114832,105,7,91334,938459 +114833,387,10,48243,938567 +114834,190,7,3172,1338834 +114835,413,11,15873,1344742 +114836,413,11,390296,1598022 +114837,72,11,242224,1327334 +114838,174,6,345925,1717836 +114839,3,5,52991,10537 +114840,3,5,31561,12720 +114841,204,9,315465,1590939 +114842,387,10,193435,1127491 +114843,13,3,210653,11971 +114844,269,9,6171,2243 +114845,317,10,52475,17012 +114846,166,9,69668,1425975 +114847,303,3,9882,957361 +114848,387,10,8414,54891 +114849,273,7,53949,30268 +114850,413,11,572,7746 +114851,226,2,68737,1499159 +114852,258,9,3933,1448057 +114853,105,7,267793,60557 +114854,187,11,19901,1391721 +114855,53,2,286873,1209539 +114856,317,10,39176,589662 +114857,234,1,85648,24939 +114858,317,10,114333,1032968 +114859,52,10,4012,34542 +114860,204,9,58076,8506 +114861,413,11,10303,28841 +114862,413,11,3784,33830 +114863,34,8,9785,1575869 +114864,105,7,394822,931956 +114865,53,2,31083,959634 +114866,203,1,22267,1467080 +114867,53,2,354979,1670489 +114868,387,10,6934,16730 +114869,394,7,6947,7537 +114870,53,2,66187,544859 +114871,387,10,14878,82128 +114872,234,1,14369,82221 +114873,166,9,10491,1334493 +114874,327,7,755,1564584 +114875,105,7,62630,41846 +114876,387,10,10710,1838870 +114877,269,9,20357,945 +114878,180,7,28297,1567996 +114879,204,9,42345,74692 +114880,79,7,341895,1470726 +114881,45,9,15661,1526511 +114882,387,10,43089,76942 +114883,387,10,293970,1372441 +114884,141,7,10590,1046883 +114885,357,3,333484,1419103 +114886,289,6,29233,113285 +114887,381,9,116463,1490528 +114888,387,10,179103,34569 +114889,52,10,45729,57777 +114890,52,10,153165,33027 +114891,182,8,2105,1552193 +114892,413,11,10139,11017 +114893,234,1,25603,108249 +114894,97,7,126889,1393300 +114895,53,2,6947,5493 +114896,203,1,448847,1797881 +114897,87,7,346672,1555693 +114898,387,10,2692,28579 +114899,143,7,101342,940810 +114900,198,6,8619,1153846 +114901,204,9,91679,1782623 +114902,234,1,44562,196769 +114903,273,7,99,405 +114904,105,7,123103,1049547 +114905,387,10,221171,138138 +114906,413,11,151911,14962 +114907,273,7,186585,88643 +114908,3,5,92341,89218 +114909,317,10,44536,65481 +114910,234,1,277726,100516 +114911,3,5,323665,900406 +114912,333,2,764,11471 +114913,143,7,50086,1286345 +114914,234,1,20934,98839 +114915,317,10,31277,1342870 +114916,3,5,55823,1536652 +114917,234,1,44434,40863 +114918,333,2,334527,1015060 +114919,373,7,9846,1104829 +114920,286,3,393367,1492298 +114921,208,2,256474,1328123 +114922,273,7,262785,1306682 +114923,324,3,11206,1391094 +114924,296,3,206647,1551812 +114925,234,1,3962,5646 +114926,333,2,84030,1579651 +114927,66,11,209112,1781335 +114928,273,7,173847,966818 +114929,234,1,39024,121798 +114930,317,10,85430,994163 +114931,413,11,10373,64876 +114932,141,7,41505,68016 +114933,234,1,20164,93561 +114934,148,9,831,12348 +114935,108,10,33792,1240887 +114936,208,2,11351,1458878 +114937,289,6,3933,1401375 +114938,234,1,87851,935588 +114939,3,5,107811,47293 +114940,74,5,7220,1762647 +114941,234,1,105548,14855 +114942,87,7,10972,1534681 +114943,387,10,29798,63176 +114944,317,10,327528,69845 +114945,148,9,14372,6880 +114946,413,11,16154,1842849 +114947,105,7,19740,1938 +114948,333,2,198795,1511650 +114949,75,5,39979,1125104 +114950,97,7,46567,1008507 +114951,273,7,20017,2308 +114952,53,2,117251,6033 +114953,317,10,121822,12997 +114954,286,3,229304,1314075 +114955,148,9,316654,1208687 +114956,60,1,125264,1551762 +114957,387,10,104427,119464 +114958,236,8,244,3259 +114959,234,1,226792,118873 +114960,3,5,42448,16189 +114961,182,8,379,1395368 +114962,387,10,59040,89193 +114963,234,1,53364,18927 +114964,3,5,31548,2940 +114965,12,10,30554,62555 +114966,234,1,10776,7908 +114967,3,5,4140,34949 +114968,234,1,120303,1027099 +114969,387,10,9470,545535 +114970,273,7,11298,14138 +114971,317,10,62731,150813 +114972,46,5,16442,1545591 +114973,3,5,381691,1118112 +114974,413,11,120172,1570080 +114975,87,7,332411,1579383 +114976,413,11,9504,10853 +114977,3,5,19101,4185 +114978,85,10,4133,34851 +114979,234,1,8325,55117 +114980,105,7,384262,980260 +114981,72,11,4413,1406904 +114982,304,10,397365,150486 +114983,234,1,105787,1038652 +114984,204,9,55152,38055 +114985,387,10,61644,1169000 +114986,240,7,10733,1685571 +114987,187,11,348631,545806 +114988,234,1,32328,13594 +114989,360,9,442752,1674068 +114990,105,7,18633,4173 +114991,387,10,149657,1130876 +114992,269,9,71668,64232 +114993,317,10,220515,230071 +114994,317,10,142802,1166334 +114995,105,7,149465,8461 +114996,387,10,37581,1244303 +114997,317,10,47462,158473 +114998,273,7,20312,23486 +114999,3,5,22279,60085 +115000,143,7,17209,3963 +115001,180,7,294651,1664508 +115002,234,1,838,1 +115003,413,11,19754,14189 +115004,298,5,70667,1448325 +115005,52,10,1498,1332745 +115006,208,2,102382,1324481 +115007,53,2,27986,7652 +115008,373,7,14254,42034 +115009,387,10,26149,132195 +115010,74,5,98066,1759306 +115011,413,11,26882,1773036 +115012,208,2,6977,1325234 +115013,234,1,167190,1117498 +115014,181,7,102668,1031761 +115015,53,2,255491,1087249 +115016,317,10,16666,220518 +115017,314,2,339527,1566125 +115018,148,9,10590,65711 +115019,333,2,9846,3995 +115020,105,7,126323,1199828 +115021,234,1,76465,8823 +115022,3,5,15873,7648 +115023,182,8,363579,1294072 +115024,234,1,66045,16136 +115025,287,3,9286,1441347 +115026,127,3,85350,1372211 +115027,45,9,50725,1357045 +115028,204,9,341420,1642547 +115029,413,11,75595,969043 +115030,60,1,308269,1447888 +115031,317,10,26823,96363 +115032,5,10,144111,87667 +115033,387,10,25507,80728 +115034,105,7,10869,57337 +115035,20,2,16164,1322465 +115036,148,9,398289,1637438 +115037,75,5,341174,1405389 +115038,160,3,253235,1554936 +115039,387,10,14537,7449 +115040,345,7,9882,52193 +115041,296,3,283445,1548087 +115042,3,5,4338,37039 +115043,65,3,18,1392984 +115044,269,9,72105,53811 +115045,277,3,43346,1446434 +115046,286,3,120854,1289568 +115047,187,11,177155,957581 +115048,234,1,5123,41285 +115049,160,3,254007,132185 +115050,333,2,975,14559 +115051,250,11,283384,1418443 +115052,5,10,2966,2088 +115053,234,1,376716,1106190 +115054,317,10,138372,1108822 +115055,3,5,9032,10815 +115056,413,11,9438,5175 +115057,234,1,400174,65193 +115058,204,9,82448,927987 +115059,234,1,59147,119356 +115060,180,7,43266,8511 +115061,333,2,10075,47942 +115062,303,3,11045,15335 +115063,387,10,40719,95636 +115064,419,10,23692,15773 +115065,387,10,86828,58034 +115066,317,10,82191,179468 +115067,75,5,13616,1577083 +115068,32,8,116711,1455462 +115069,234,1,302118,52542 +115070,415,3,122019,1637885 +115071,108,10,33729,584535 +115072,394,7,244786,1049456 +115073,148,9,41963,38411 +115074,187,11,693,1299405 +115075,234,1,312497,5877 +115076,286,3,322614,1421249 +115077,317,10,53410,13848 +115078,269,9,193,2083 +115079,273,7,67177,3098 +115080,234,1,83185,145608 +115081,314,2,10096,1409819 +115082,273,7,42709,82271 +115083,234,1,102858,1063506 +115084,209,7,169,1394306 +115085,105,7,42764,1417521 +115086,317,10,41187,145518 +115087,60,1,108222,1373780 +115088,234,1,20715,36697 +115089,234,1,352327,1209172 +115090,75,5,72431,1037310 +115091,317,10,21801,641437 +115092,188,8,186869,1862950 +115093,3,5,53419,14020 +115094,5,10,17935,1097807 +115095,45,9,19901,1391709 +115096,413,11,405473,1647429 +115097,105,7,11084,21440 +115098,53,2,15022,1303224 +115099,13,3,3989,1462577 +115100,357,3,11024,1441357 +115101,333,2,413782,1674000 +115102,413,11,93891,554322 +115103,234,1,31276,234752 +115104,286,3,345069,1478655 +115105,387,10,218784,1090787 +115106,234,1,8053,2176 +115107,234,1,77564,582269 +115108,413,11,187028,1343949 +115109,64,6,9928,1805192 +115110,234,1,406052,80523 +115111,208,2,274479,1328146 +115112,53,2,283686,3657 +115113,239,5,2300,118867 +115114,270,9,2300,1143388 +115115,175,5,10999,555085 +115116,234,1,39013,121873 +115117,3,5,11706,6603 +115118,3,5,120,1313 +115119,387,10,49850,556719 +115120,160,3,11045,1074163 +115121,234,1,35683,65115 +115122,317,10,62143,18267 +115123,160,3,10066,1110992 +115124,234,1,25834,91659 +115125,204,9,91673,1391940 +115126,3,5,115427,225941 +115127,317,10,402446,1743407 +115128,387,10,13550,66140 +115129,384,5,337339,1560972 +115130,360,9,334074,1465940 +115131,53,2,13954,1328798 +115132,317,10,37368,13802 +115133,234,1,341201,112391 +115134,262,6,10632,9622 +115135,234,1,11440,48679 +115136,387,10,146381,228708 +115137,387,10,103578,1185526 +115138,3,5,12079,71334 +115139,204,9,1665,18511 +115140,64,6,55347,1179066 +115141,273,7,4551,11098 +115142,52,10,53766,1139079 +115143,234,1,28893,102334 +115144,5,10,93676,132547 +115145,77,10,23152,89811 +115146,105,7,266102,40825 +115147,262,6,214081,1367654 +115148,235,5,13075,1415887 +115149,54,10,2180,1583679 +115150,403,10,38618,15776 +115151,204,9,1271,1327907 +115152,22,9,381015,1828345 +115153,77,10,23107,1262422 +115154,387,10,30374,95859 +115155,209,7,10632,95834 +115156,317,10,54982,1357185 +115157,376,10,14609,35267 +115158,148,9,47324,1620542 +115159,187,11,273404,1445368 +115160,273,7,336882,128137 +115161,148,9,9918,37429 +115162,200,3,10632,1530363 +115163,317,10,384373,1180358 +115164,413,11,9441,7231 +115165,204,9,28592,101240 +115166,314,2,403570,1431501 +115167,11,6,205584,1585731 +115168,317,10,267481,1257133 +115169,25,2,351065,8584 +115170,53,2,4809,26174 +115171,411,9,9882,14608 +115172,317,10,13380,14640 +115173,148,9,16154,1842850 +115174,357,3,435,1418466 +115175,234,1,188598,1170106 +115176,234,1,424488,1045176 +115177,209,7,17144,1436541 +115178,360,3,245692,1574457 +115179,182,8,274857,1456054 +115180,226,2,81541,1585998 +115181,204,9,381008,1784764 +115182,317,10,347096,1188321 +115183,5,10,411442,1682677 +115184,387,10,78507,157 +115185,226,2,2084,1418265 +115186,3,5,151310,40461 +115187,226,2,4147,1402015 +115188,269,9,215373,2867 +115189,99,3,17295,132257 +115190,387,10,27461,8965 +115191,317,10,14874,1381536 +115192,317,10,173847,1156668 +115193,3,5,11003,17146 +115194,226,2,98339,1519329 +115195,52,10,279159,1171914 +115196,234,1,42819,54441 +115197,60,1,28304,559904 +115198,25,2,13614,1610058 +115199,317,10,384682,132315 +115200,273,7,365942,70789 +115201,53,2,9950,53469 +115202,376,10,14430,76869 +115203,387,10,128946,1088218 +115204,234,1,131799,81409 +115205,317,10,85494,41704 +115206,46,5,263115,1821895 +115207,234,1,408381,1138344 +115208,3,5,265208,4950 +115209,45,9,2567,1402021 +115210,113,9,329682,1577905 +115211,87,7,75622,1531494 +115212,409,7,442752,1761918 +115213,234,1,10659,59338 +115214,289,6,72105,1455535 +115215,222,6,13682,1447301 +115216,388,9,11351,92363 +115217,317,10,20126,4955 +115218,45,9,241239,1468540 +115219,66,11,105,1544698 +115220,97,7,279690,1430993 +115221,328,6,6171,1023364 +115222,387,10,33112,89535 +115223,3,5,858,11905 +115224,262,6,25941,1558428 +115225,234,1,1568,14597 +115226,273,7,32921,3249 +115227,387,10,11943,11056 +115228,317,10,161482,1144626 +115229,190,7,325712,1879685 +115230,413,11,11635,12940 +115231,234,1,244,3238 +115232,398,9,2662,1319135 +115233,273,7,14554,5805 +115234,413,11,12154,45862 +115235,413,11,70368,8636 +115236,234,1,8410,6818 +115237,317,10,17577,32546 +115238,413,11,48601,543838 +115239,234,1,253235,3026 +115240,295,7,425774,1708056 +115241,269,9,312221,990139 +115242,373,7,9785,9619 +115243,20,2,6557,1020061 +115244,333,2,82767,1511650 +115245,234,1,106355,32174 +115246,273,7,21554,1239860 +115247,3,5,48805,1337694 +115248,234,1,62045,234749 +115249,75,5,271404,1348009 +115250,204,9,173456,11036 +115251,317,10,71329,1075658 +115252,198,6,311324,1646601 +115253,204,9,88529,1592444 +115254,75,5,26390,961664 +115255,12,10,408220,11449 +115256,160,3,127372,132639 +115257,298,5,82,1399071 +115258,53,2,374614,1818642 +115259,262,6,302026,1417924 +115260,147,1,1586,1854997 +115261,3,5,298,1884 +115262,77,10,153717,5448 +115263,113,9,11450,1430231 +115264,234,1,26422,30309 +115265,387,10,15981,1010006 +115266,209,7,13042,1641217 +115267,67,10,74,61573 +115268,74,5,544,1771253 +115269,226,2,93856,1409864 +115270,262,6,6947,9622 +115271,317,10,74942,1044114 +115272,3,5,72032,95657 +115273,3,5,158942,556736 +115274,413,11,86472,18333 +115275,317,10,14452,23880 +115276,180,7,63401,1179785 +115277,387,10,43752,83905 +115278,317,10,24615,67395 +115279,3,5,26961,4614 +115280,273,7,21711,44261 +115281,204,9,91070,1085602 +115282,286,3,20432,970291 +115283,105,7,104376,1118003 +115284,229,6,227306,1568468 +115285,148,9,61934,31067 +115286,52,10,423377,1322315 +115287,317,10,363579,1521718 +115288,403,10,405473,1484835 +115289,413,11,810,69420 +115290,346,3,544,91941 +115291,169,3,50725,1416584 +115292,160,3,72251,963887 +115293,360,3,26656,1454507 +115294,113,9,55846,1138277 +115295,317,10,117999,3634 +115296,204,9,126516,552003 +115297,179,2,288977,1323629 +115298,289,6,66984,150755 +115299,87,7,18,948789 +115300,3,5,83,642 +115301,105,7,298040,1375173 +115302,387,10,10992,56411 +115303,302,9,245168,1578874 +115304,53,2,5413,43154 +115305,302,9,375366,1740765 +115306,234,1,41298,125071 +115307,273,7,8932,931688 +115308,413,11,61985,88976 +115309,176,3,8915,1399501 +115310,234,1,86980,106652 +115311,273,7,382589,139857 +115312,97,7,203833,1338971 +115313,273,7,73984,18837 +115314,234,1,3172,8246 +115315,273,7,8388,7182 +115316,413,11,306598,1643333 +115317,317,10,36236,25317 +115318,387,10,52991,30008 +115319,22,9,345922,1815606 +115320,387,10,476,6471 +115321,387,10,29260,46713 +115322,234,1,28290,8501 +115323,148,9,1673,31067 +115324,413,11,1382,53898 +115325,209,7,277355,1495877 +115326,73,7,425774,1051722 +115327,317,10,210068,87354 +115328,127,3,30379,1332245 +115329,244,3,11202,1104353 +115330,287,3,693,1406235 +115331,403,10,11688,15812 +115332,415,3,340176,112280 +115333,77,10,10257,25251 +115334,234,1,1630,3974 +115335,373,7,7445,1407227 +115336,317,10,88863,57777 +115337,387,10,90956,88986 +115338,234,1,365222,63571 +115339,3,5,284053,403 +115340,333,2,373546,1869458 +115341,413,11,31304,556015 +115342,3,5,325039,23461 +115343,317,10,52913,49451 +115344,234,1,32234,26882 +115345,175,5,41733,1324652 +115346,317,10,72140,151543 +115347,164,3,3057,1539799 +115348,167,3,277355,1335157 +115349,160,3,11024,1007395 +115350,209,7,2503,63906 +115351,317,10,82243,797316 +115352,234,1,336691,454177 +115353,166,9,10796,1868280 +115354,75,5,17577,1423843 +115355,3,5,114790,32530 +115356,333,2,296523,1295780 +115357,208,2,10071,1069714 +115358,87,7,309879,1556420 +115359,234,1,4974,4387 +115360,148,9,267579,1583159 +115361,394,7,243940,1049456 +115362,317,10,71140,1526 +115363,413,11,18392,51868 +115364,317,10,315664,3224 +115365,148,9,60106,1435401 +115366,387,10,109453,1448217 +115367,387,10,249264,111172 +115368,413,11,12584,57950 +115369,196,7,13380,68748 +115370,222,6,16486,34518 +115371,387,10,72105,570785 +115372,203,1,9529,1408287 +115373,3,5,98870,1183644 +115374,3,5,11024,11409 +115375,298,5,76757,1411341 +115376,413,11,40744,103085 +115377,387,10,111960,1053408 +115378,226,2,84720,30110 +115379,413,11,11011,14457 +115380,234,1,47462,158473 +115381,405,8,9836,1745216 +115382,413,11,6081,47847 +115383,143,7,74,1341403 +115384,413,11,72823,34224 +115385,234,1,57811,21771 +115386,75,5,3057,1539808 +115387,46,5,414910,1372067 +115388,234,1,4762,39298 +115389,52,10,17209,81461 +115390,3,5,50838,62922 +115391,3,5,199647,1153488 +115392,182,8,312831,1594168 +115393,3,5,21371,45738 +115394,234,1,14210,68913 +115395,317,10,42242,66124 +115396,387,10,10198,56611 +115397,5,10,284467,14489 +115398,394,7,294272,1376902 +115399,234,1,146380,1124099 +115400,53,2,259292,10153 +115401,190,7,47386,138788 +115402,317,10,64225,1347915 +115403,273,7,248087,1537405 +115404,3,5,9963,61092 +115405,234,1,16455,80537 +115406,262,6,19995,1401795 +115407,232,10,52047,1102160 +115408,234,1,73933,123708 +115409,234,1,43369,7501 +115410,314,2,78802,1441238 +115411,204,9,64129,1326391 +115412,314,2,50725,1460034 +115413,234,1,54566,116158 +115414,160,3,103332,1462675 +115415,3,5,179154,59443 +115416,413,11,31397,58706 +115417,317,10,149515,1058155 +115418,53,2,38282,1462342 +115419,289,6,164954,148180 +115420,269,9,98025,1202524 +115421,127,3,1578,1614958 +115422,327,7,2047,71633 +115423,317,10,31850,108538 +115424,387,10,12499,27518 +115425,182,8,15019,1555688 +115426,209,7,250066,1258045 +115427,387,10,11145,2158 +115428,190,7,116463,1691478 +115429,328,6,255343,1399588 +115430,317,10,381032,1122300 +115431,349,1,13205,1779881 +115432,181,7,285270,1367927 +115433,333,2,8247,102343 +115434,413,11,84340,37267 +115435,269,9,261273,1427777 +115436,234,1,22999,89669 +115437,204,9,157843,1907230 +115438,317,10,400174,1514153 +115439,33,10,50725,22504 +115440,3,5,352208,1611803 +115441,209,7,10665,1546457 +115442,234,1,32168,84998 +115443,53,2,273106,136738 +115444,3,5,18990,29667 +115445,187,11,219466,1380896 +115446,387,10,13766,65363 +115447,234,1,41468,81799 +115448,234,1,80560,123012 +115449,187,11,15092,1352966 +115450,273,7,41357,10934 +115451,415,3,26581,1179041 +115452,204,9,214756,1457949 +115453,398,9,8204,1384362 +115454,239,5,418437,1746552 +115455,204,9,921,14914 +115456,204,9,10344,53813 +115457,317,10,14181,24294 +115458,13,5,34127,1361978 +115459,208,2,32657,112656 +115460,250,11,273481,1432047 +115461,317,10,360924,1670908 +115462,239,5,194,1551961 +115463,273,7,134397,7769 +115464,221,3,2105,1392250 +115465,208,2,341174,1328146 +115466,289,6,102382,1455598 +115467,234,1,52808,22467 +115468,413,11,10269,5056 +115469,53,2,102428,931983 +115470,60,1,75564,171561 +115471,204,9,28304,369 +115472,314,2,44945,1520595 +115473,196,7,218778,1597 +115474,286,3,25538,983058 +115475,234,1,390296,1598022 +115476,234,1,25701,94123 +115477,234,1,63665,27436 +115478,3,5,448763,1848857 +115479,273,7,118098,1066805 +115480,273,7,185156,54449 +115481,72,11,225728,1519840 +115482,3,5,402672,85663 +115483,303,3,257345,1616436 +115484,234,1,39958,173190 +115485,273,7,30,186 +115486,28,9,744,1378163 +115487,269,9,333352,2625 +115488,413,11,360284,1459120 +115489,203,1,17175,1431000 +115490,218,1,67696,1651407 +115491,158,2,3172,1378244 +115492,179,2,10796,1322016 +115493,413,11,15936,78979 +115494,387,10,28482,100908 +115495,317,10,240334,1156445 +115496,317,10,257214,1296775 +115497,127,3,72105,1012973 +115498,333,2,9778,1405321 +115499,234,1,186585,70567 +115500,3,5,382125,46122 +115501,97,7,177677,1337412 +115502,292,3,2300,1559615 +115503,234,1,86703,97901 +115504,148,9,74629,35167 +115505,204,9,35651,1590601 +115506,108,10,44006,6210 +115507,387,10,62761,2690 +115508,160,3,117,92479 +115509,203,1,2034,982722 +115510,3,5,5,77162 +115511,166,9,69974,557676 +115512,317,10,374021,1120003 +115513,317,10,14885,80675 +115514,291,6,222935,1726769 +115515,52,10,172385,5714 +115516,327,7,12,1556634 +115517,234,1,45533,86009 +115518,269,9,29345,1825845 +115519,394,7,334,1341403 +115520,344,9,7916,1438603 +115521,234,1,345924,303064 +115522,226,2,225728,1550637 +115523,387,10,41733,127146 +115524,180,7,27443,7310 +115525,187,11,72105,1404717 +115526,53,2,330459,1706700 +115527,411,9,13600,9819 +115528,317,10,46982,3974 +115529,413,11,301368,1533186 +115530,234,1,42057,6220 +115531,317,10,9893,50706 +115532,204,9,188927,1271735 +115533,203,1,1995,1373729 +115534,413,11,27095,19055 +115535,234,1,228676,76462 +115536,387,10,174000,1141690 +115537,413,11,25551,8484 +115538,99,3,45205,132519 +115539,234,1,10265,46325 +115540,317,10,30708,14774 +115541,179,2,324670,1392652 +115542,387,10,30141,54349 +115543,317,10,43773,119294 +115544,277,3,11351,1451407 +115545,317,10,84295,10601 +115546,203,1,367412,1732802 +115547,413,11,172004,1044732 +115548,75,5,127521,1542738 +115549,387,10,45874,14521 +115550,387,10,156288,87713 +115551,3,5,289679,15194 +115552,387,10,86942,55119 +115553,196,7,1991,1407813 +115554,317,10,56589,91484 +115555,387,10,10834,2303 +115556,204,9,6145,65755 +115557,180,7,79372,27969 +115558,45,9,333484,1412450 +115559,108,10,121636,100131 +115560,72,11,373546,1419723 +115561,40,1,8619,62543 +115562,234,1,2321,16294 +115563,273,7,99567,39054 +115564,317,10,145051,80577 +115565,75,5,9981,1529591 +115566,53,2,696,8885 +115567,387,10,32921,67427 +115568,5,10,60071,39514 +115569,180,7,421365,1561809 +115570,234,1,59678,155531 +115571,317,10,18927,1076505 +115572,413,11,219466,31437 +115573,166,9,8869,1325353 +115574,317,10,46857,137606 +115575,277,3,8870,1392244 +115576,154,3,56599,550944 +115577,413,11,298584,1481334 +115578,413,11,34560,57164 +115579,273,7,52203,101984 +115580,291,6,954,9432 +115581,317,10,105384,1618543 +115582,175,5,4413,1406842 +115583,273,7,753,11416 +115584,143,7,3037,3700 +115585,269,9,121598,554929 +115586,269,9,298,1890 +115587,413,11,12129,68134 +115588,234,1,173294,1273712 +115589,60,1,949,212137 +115590,226,2,10973,29640 +115591,182,8,17111,1629471 +115592,52,10,24405,71235 +115593,413,11,76871,9958 +115594,234,1,64720,71872 +115595,234,1,40817,20646 +115596,3,5,10780,1153 +115597,317,10,248698,1284021 +115598,333,2,18417,23787 +115599,3,5,11925,55888 +115600,219,11,6973,13223 +115601,277,7,74,1411521 +115602,317,10,58832,130266 +115603,3,5,403,5708 +115604,413,11,300667,1173410 +115605,5,10,46059,21672 +115606,97,7,263115,1367493 +115607,413,11,29424,14999 +115608,105,7,19423,550644 +115609,413,11,379019,49829 +115610,273,7,79094,91546 +115611,234,1,381032,1122300 +115612,53,2,747,39203 +115613,317,10,383538,78217 +115614,373,7,315664,1425481 +115615,127,3,8457,1552521 +115616,317,10,61528,1017624 +115617,189,3,59965,1395034 +115618,147,1,325712,1879679 +115619,381,9,98066,1759304 +115620,239,5,33586,1814978 +115621,262,6,116463,1691479 +115622,3,5,10585,2287 +115623,387,10,125490,1081445 +115624,387,10,106821,193673 +115625,413,11,28031,1041072 +115626,175,5,72105,1400534 +115627,317,10,311417,217642 +115628,234,1,323665,989687 +115629,287,3,6522,15017 +115630,3,5,118957,56786 +115631,20,2,15661,1020061 +115632,286,3,23830,9573 +115633,317,10,51947,57625 +115634,140,9,8870,1404357 +115635,273,7,65759,11098 +115636,204,9,10063,62690 +115637,53,2,94725,1684300 +115638,5,10,51423,144136 +115639,373,7,241927,1397295 +115640,234,1,100024,1022794 +115641,317,10,20361,14246 +115642,105,7,183412,1419619 +115643,387,10,90228,548816 +115644,234,1,24797,26708 +115645,413,11,52728,554322 +115646,234,1,175386,8823 +115647,196,7,9358,15331 +115648,273,7,2786,18221 +115649,317,10,225499,1144687 +115650,317,10,43778,1120713 +115651,317,10,284306,225014 +115652,317,10,46872,26959 +115653,387,10,53949,165767 +115654,387,10,290999,1361555 +115655,291,6,9613,1529009 +115656,269,9,10915,4655 +115657,269,9,48116,1545740 +115658,45,9,1125,1551514 +115659,234,1,296225,1188745 +115660,200,3,293167,1573031 +115661,52,10,357706,1504437 +115662,209,7,11415,1796491 +115663,289,6,311324,1641660 +115664,3,5,19336,571552 +115665,234,1,45303,137143 +115666,53,2,8470,6392 +115667,104,7,11618,1576017 +115668,387,10,9272,36589 +115669,234,1,15044,80660 +115670,387,10,60853,85948 +115671,3,5,10596,25012 +115672,76,2,43384,14681 +115673,234,1,147722,108987 +115674,3,5,27573,20268 +115675,387,10,11680,39138 +115676,234,1,269165,1192926 +115677,413,11,64928,14447 +115678,97,7,287628,1398918 +115679,234,1,23319,80172 +115680,75,5,293660,1409744 +115681,317,10,28433,93631 +115682,5,10,49391,1011629 +115683,3,5,11007,56791 +115684,234,1,352890,1031144 +115685,3,5,369885,36 +115686,413,11,43778,1506425 +115687,289,6,72105,1455514 +115688,289,6,3989,1466481 +115689,234,1,101231,31890 +115690,304,10,253533,215912 +115691,295,7,9716,152660 +115692,34,8,283995,1439108 +115693,234,1,84318,930701 +115694,53,2,28902,6348 +115695,75,5,18,3924 +115696,234,1,334461,57604 +115697,333,2,388243,1622340 +115698,413,11,63260,230670 +115699,53,2,422005,147743 +115700,269,9,340961,1285483 +115701,286,3,71866,1103655 +115702,203,1,125490,1179438 +115703,148,9,37581,11036 +115704,317,10,64428,1050973 +115705,83,2,9441,1412081 +115706,45,9,10796,1530689 +115707,148,9,105,1261 +115708,413,11,37291,17278 +115709,77,10,10097,19665 +115710,5,10,18093,32982 +115711,415,3,9514,1642507 +115712,234,1,62768,44130 +115713,317,10,64792,112752 +115714,244,3,121674,1544665 +115715,3,5,110146,94342 +115716,3,5,73198,21793 +115717,273,7,5123,9989 +115718,317,10,71066,93905 +115719,262,6,40807,1336716 +115720,273,7,73262,1275130 +115721,234,1,112973,186511 +115722,387,10,322922,81297 +115723,289,6,90001,1563392 +115724,3,5,169881,8194 +115725,357,3,8870,1416157 +115726,32,8,117251,1455467 +115727,269,9,312831,1568951 +115728,3,5,20481,56548 +115729,333,2,59296,1431554 +115730,203,1,223485,1451518 +115731,77,10,259,1650 +115732,234,1,35021,113601 +115733,105,7,7514,52841 +115734,77,10,17457,81909 +115735,269,9,14886,4982 +115736,105,7,4913,39980 +115737,204,9,147876,8506 +115738,234,1,82098,40235 +115739,317,10,19765,135679 +115740,234,1,126958,11528 +115741,381,9,27265,1341853 +115742,273,7,118451,1294609 +115743,234,1,289010,1309934 +115744,52,10,77950,1453020 +115745,277,3,6947,8168 +115746,72,11,353686,1639576 +115747,413,11,9325,57338 +115748,234,1,4011,510 +115749,415,3,384737,1822723 +115750,333,2,343173,1459858 +115751,317,10,2608,31142 +115752,204,9,16442,1132129 +115753,148,9,284289,1523022 +115754,234,1,271954,1250945 +115755,398,9,227306,1816360 +115756,328,6,216580,1190669 +115757,234,1,15940,78992 +115758,53,2,11046,1325682 +115759,234,1,37481,81799 +115760,413,11,24442,2920 +115761,97,7,328111,1352421 +115762,5,10,110001,1074571 +115763,53,2,183171,11491 +115764,293,2,13056,1708298 +115765,3,5,294652,76845 +115766,234,1,27814,86250 +115767,204,9,678,4349 +115768,234,1,41932,151096 +115769,148,9,31005,62144 +115770,229,6,209112,1398958 +115771,273,7,616,947 +115772,317,10,41115,1073230 +115773,160,3,76341,1401735 +115774,11,6,9325,143786 +115775,234,1,91583,27339 +115776,204,9,52454,1340340 +115777,314,2,188102,1429333 +115778,3,5,183962,51838 +115779,234,1,31598,39996 +115780,34,8,72431,1484216 +115781,148,9,60599,5886 +115782,413,11,130948,33808 +115783,373,7,260030,1053852 +115784,3,5,189,2294 +115785,387,10,104776,2891 +115786,52,10,66893,1095722 +115787,387,10,81030,31967 +115788,387,10,10647,11708 +115789,179,2,4147,1321589 +115790,226,2,52395,16208 +115791,277,3,11045,1717524 +115792,148,9,9457,1322129 +115793,387,10,10657,18179 +115794,143,7,78802,1536975 +115795,413,11,139519,46809 +115796,204,9,29368,1102510 +115797,234,1,8672,6818 +115798,328,6,198663,1386913 +115799,387,10,8204,102445 +115800,15,6,284052,1428893 +115801,203,1,10999,1338840 +115802,305,9,413998,1422814 +115803,4,6,337339,1903916 +115804,413,11,264560,147359 +115805,340,2,310137,1816221 +115806,317,10,48376,140375 +115807,234,1,83354,2765 +115808,317,10,288694,130497 +115809,234,1,45132,15218 +115810,413,11,70322,1624468 +115811,60,1,69605,7655 +115812,387,10,364410,1524268 +115813,269,9,2102,12867 +115814,5,10,13305,5448 +115815,3,5,103433,1210969 +115816,387,10,171648,105566 +115817,387,10,182131,1164927 +115818,203,1,210047,1519819 +115819,333,2,103432,1456489 +115820,317,10,254047,22230 +115821,60,1,49940,1322043 +115822,413,11,1579,8752 +115823,3,5,20424,8620 +115824,53,2,965,10153 +115825,113,9,202337,1404917 +115826,234,1,109122,89157 +115827,234,1,43894,32427 +115828,234,1,43268,129422 +115829,75,5,325712,1879689 +115830,286,3,19501,1207970 +115831,277,3,1579,1400338 +115832,269,9,209293,1192793 +115833,360,3,36489,127203 +115834,234,1,1482,17278 +115835,411,9,664,14040 +115836,53,2,15013,77697 +115837,317,10,58396,27830 +115838,5,10,779,11573 +115839,415,3,36243,74950 +115840,234,1,11848,70709 +115841,3,5,82465,6847 +115842,273,7,241855,1281398 +115843,413,11,17258,3898 +115844,135,3,5,1877360 +115845,196,7,296523,1495179 +115846,234,1,10529,65525 +115847,3,5,84337,14648 +115848,413,11,15013,38522 +115849,148,9,7548,582929 +115850,413,11,96702,120032 +115851,403,10,744,11082 +115852,182,8,337339,8683 +115853,234,1,98355,98538 +115854,273,7,18682,1867549 +115855,148,9,311324,14915 +115856,209,7,1647,1458533 +115857,398,9,181533,1869084 +115858,207,3,19901,1120664 +115859,273,7,351211,98631 +115860,387,10,20325,149075 +115861,415,3,14430,1521693 +115862,182,8,8619,1619099 +115863,113,9,188826,1514147 +115864,234,1,94225,4081 +115865,52,10,62034,5397 +115866,155,3,13042,8 +115867,64,6,388862,1594069 +115868,304,10,40998,237691 +115869,234,1,89337,15206 +115870,83,2,284564,1430989 +115871,97,7,106747,9439 +115872,234,1,36194,39009 +115873,234,1,177572,70238 +115874,45,9,9423,1389586 +115875,317,10,265019,61510 +115876,234,1,8079,8311 +115877,189,3,9540,1714506 +115878,234,1,295884,99388 +115879,5,10,204040,1373476 +115880,317,10,43372,15127 +115881,286,3,188357,1317091 +115882,72,11,10491,1413127 +115883,333,2,39938,4352 +115884,204,9,1480,7306 +115885,317,10,82716,588689 +115886,209,7,284289,1523029 +115887,269,9,15489,23972 +115888,387,10,19101,59187 +115889,208,2,407448,1416096 +115890,413,11,300596,1400187 +115891,53,2,525,7211 +115892,234,1,2734,27676 +115893,413,11,107891,43913 +115894,323,10,345069,1478650 +115895,268,7,43092,1590917 +115896,198,6,324670,1709127 +115897,180,7,73194,11446 +115898,239,5,375366,1740777 +115899,413,11,11912,24666 +115900,317,10,217038,1201666 +115901,3,5,42678,29811 +115902,289,6,378236,1840325 +115903,387,10,10890,57132 +115904,52,10,17007,148118 +115905,3,5,4253,35787 +115906,377,3,857,1662341 +115907,3,5,12594,73001 +115908,53,2,9541,957570 +115909,245,3,41213,1777175 +115910,53,2,332354,1444934 +115911,3,5,1418,16982 +115912,3,5,5646,4590 +115913,387,10,17015,137933 +115914,234,1,104376,113337 +115915,190,7,544,1748872 +115916,105,7,295581,1002356 +115917,3,5,5257,42384 +115918,292,3,3172,1408723 +115919,387,10,43562,87407 +115920,317,10,30022,105568 +115921,413,11,11561,6848 +115922,270,9,44943,1403393 +115923,333,2,284052,23426 +115924,204,9,50001,29637 +115925,5,10,22279,1384007 +115926,3,5,8342,24721 +115927,97,7,45019,9438 +115928,148,9,283686,1511601 +115929,373,7,408755,1660983 +115930,234,1,112912,37361 +115931,387,10,341689,107926 +115932,92,7,12102,1546905 +115933,413,11,81616,33507 +115934,273,7,44631,30130 +115935,60,1,49308,1351632 +115936,317,10,32140,62755 +115937,3,5,125926,23331 +115938,273,7,11694,21011 +115939,3,5,34084,1052126 +115940,204,9,214,962731 +115941,127,3,384737,1386328 +115942,328,6,10145,1446682 +115943,360,3,70074,1333931 +115944,234,1,62692,128294 +115945,413,11,30298,64118 +115946,268,7,201085,1389534 +115947,333,2,102144,26175 +115948,287,3,312831,1594193 +115949,209,7,193893,1138332 +115950,387,10,131781,159506 +115951,3,5,22020,1207156 +115952,75,5,1950,1395463 +115953,373,7,241239,1352424 +115954,387,10,838,686 +115955,204,9,2323,23972 +115956,273,7,35405,1760 +115957,94,5,227306,1364623 +115958,204,9,75363,1349482 +115959,273,7,11879,69600 +115960,204,9,36056,7388 +115961,317,10,44463,1015918 +115962,66,11,80324,1610139 +115963,413,11,29825,937912 +115964,317,10,11800,8108 +115965,203,1,112991,1524178 +115966,180,7,143946,550945 +115967,317,10,41277,1375201 +115968,234,1,321303,137688 +115969,317,10,246011,150956 +115970,53,2,302042,1200900 +115971,196,7,33586,1063965 +115972,148,9,80316,34436 +115973,53,2,8840,6688 +115974,340,2,250066,1412459 +115975,349,1,81003,1447593 +115976,317,10,81274,1379563 +115977,204,9,19621,1121982 +115978,226,2,28295,14495 +115979,273,7,14052,153 +115980,234,1,54388,224872 +115981,269,9,425591,1020784 +115982,317,10,62978,235016 +115983,148,9,118,1185955 +115984,413,11,46387,1633154 +115985,105,7,75204,574142 +115986,317,10,4982,34542 +115987,413,11,403,1732 +115988,268,7,2567,1402026 +115989,234,1,40387,54451 +115990,234,1,377170,1018093 +115991,196,7,17209,1400093 +115992,317,10,43878,11528 +115993,208,2,169298,1099632 +115994,3,5,124071,949244 +115995,234,1,393445,35736 +115996,53,2,398633,1623956 +115997,105,7,105254,71355 +115998,273,7,40470,137562 +115999,387,10,177572,7931 +116000,158,2,4133,8287 +116001,76,2,9946,1411166 +116002,234,1,15559,670 +116003,413,11,11354,17254 +116004,387,10,17111,81251 +116005,387,10,6081,47844 +116006,53,2,8888,17807 +116007,387,10,9820,29715 +116008,411,9,11618,15572 +116009,180,7,82767,1511311 +116010,333,2,21159,91797 +116011,234,1,318973,1347380 +116012,360,9,9314,1398115 +116013,328,6,76757,1483139 +116014,234,1,316154,1289604 +116015,226,2,7326,1314457 +116016,317,10,44287,1125210 +116017,234,1,27461,8965 +116018,3,5,73247,41151 +116019,373,7,635,1399997 +116020,303,3,88273,140595 +116021,166,9,163,1727278 +116022,234,1,48937,57641 +116023,3,5,45522,1657 +116024,387,10,9568,58046 +116025,317,10,112885,95963 +116026,53,2,288977,12481 +116027,317,10,157829,1167896 +116028,401,6,177572,1319965 +116029,234,1,27317,147113 +116030,349,1,10020,1461379 +116031,413,11,6187,23397 +116032,53,2,4307,36275 +116033,232,10,156356,143561 +116034,269,9,59147,31014 +116035,387,10,10590,2460 +116036,3,5,16996,17146 +116037,234,1,220820,1206151 +116038,234,1,24426,74376 +116039,3,5,239513,56353 +116040,317,10,7445,1012 +116041,413,11,11799,25953 +116042,52,10,44896,146439 +116043,225,7,83,1776983 +116044,166,9,112961,1399189 +116045,234,1,4641,38692 +116046,219,11,2662,1603324 +116047,53,2,95136,1788055 +116048,66,11,9836,1745226 +116049,5,10,43369,136896 +116050,317,10,76640,1921 +116051,20,2,44115,1319731 +116052,413,11,8053,53687 +116053,37,3,409447,963406 +116054,302,9,142402,1117105 +116055,127,3,116463,1691477 +116056,203,1,177155,1537574 +116057,394,7,6972,577468 +116058,232,10,134155,1378001 +116059,97,7,8869,548439 +116060,182,8,163,1415988 +116061,387,10,98631,67075 +116062,413,11,6951,53008 +116063,75,5,70074,989600 +116064,273,7,38964,12241 +116065,234,1,53766,8636 +116066,113,9,954,22080 +116067,413,11,31347,1352124 +116068,204,9,10488,6411 +116069,387,10,325780,1694708 +116070,234,1,157843,6818 +116071,234,1,10320,26875 +116072,387,10,122221,1195387 +116073,401,6,118,1451229 +116074,419,10,49007,66194 +116075,60,1,28268,1115029 +116076,148,9,76163,1437691 +116077,65,3,4982,206398 +116078,317,10,175339,35407 +116079,234,1,248698,114379 +116080,373,7,9464,1342242 +116081,77,10,14752,78916 +116082,317,10,32588,112078 +116083,5,10,35021,1290484 +116084,204,9,10691,52088 +116085,226,2,2567,1444908 +116086,234,1,273106,150641 +116087,53,2,178809,90693 +116088,179,2,2978,1864233 +116089,234,1,131689,56151 +116090,52,10,239056,1276551 +116091,413,11,19625,85675 +116092,52,10,16987,1032103 +116093,234,1,384130,1581519 +116094,273,7,19971,70813 +116095,208,2,59965,1328146 +116096,234,1,393134,1512324 +116097,373,7,755,2294 +116098,123,3,31347,90573 +116099,5,10,125257,553112 +116100,204,9,275269,1676437 +116101,20,2,1966,1203136 +116102,234,1,155556,1136919 +116103,234,1,42168,47498 +116104,3,5,113638,1562094 +116105,291,6,354287,1685993 +116106,387,10,10207,64172 +116107,5,10,108648,1044748 +116108,25,2,283686,1582746 +116109,180,7,18148,552004 +116110,273,7,76703,579790 +116111,413,11,231616,582621 +116112,220,7,31672,45670 +116113,333,2,9529,143893 +116114,190,7,228970,1848863 +116115,234,1,33801,103129 +116116,234,1,413992,1498350 +116117,413,11,84496,3643 +116118,413,11,12632,73176 +116119,234,1,173189,139280 +116120,387,10,8951,56842 +116121,269,9,21786,1336909 +116122,234,1,28421,100593 +116123,226,2,346672,1635484 +116124,200,3,257088,1586118 +116125,155,3,28178,68227 +116126,413,11,8882,72773 +116127,273,7,37633,1501038 +116128,333,2,11610,1462237 +116129,394,7,272693,1406898 +116130,273,7,334074,23451 +116131,289,6,66984,150758 +116132,317,10,50225,975660 +116133,317,10,373977,1213831 +116134,5,10,134397,1098983 +116135,234,1,294016,6737 +116136,60,1,896,1559069 +116137,204,9,49500,1320452 +116138,413,11,408381,1657553 +116139,105,7,88018,551674 +116140,5,10,47459,56712 +116141,234,1,70278,580824 +116142,226,2,284564,1435638 +116143,203,1,6972,1392737 +116144,46,5,338189,1142799 +116145,249,7,118,1340117 +116146,317,10,75576,70301 +116147,234,1,82079,76045 +116148,413,11,180998,1295107 +116149,234,1,45184,13980 +116150,204,9,39130,1348060 +116151,387,10,83125,1044255 +116152,60,1,94182,118448 +116153,376,10,224951,97617 +116154,317,10,222890,105828 +116155,387,10,75204,574149 +116156,234,1,184866,194276 +116157,413,11,38978,1115632 +116158,415,3,419430,1814559 +116159,244,3,52454,128762 +116160,5,10,206197,27680 +116161,221,3,341174,1764546 +116162,75,5,11788,1421954 +116163,273,7,53714,88661 +116164,148,9,21734,25172 +116165,413,11,419192,1775562 +116166,273,7,63260,1259 +116167,60,1,47404,86410 +116168,274,3,435,1574665 +116169,52,10,43645,223988 +116170,317,10,128657,67972 +116171,234,1,129945,119294 +116172,269,9,58428,139145 +116173,53,2,1976,1200492 +116174,317,10,28063,99524 +116175,209,7,2567,1402037 +116176,113,9,177677,1472774 +116177,317,10,104374,548020 +116178,239,5,549,1521476 +116179,413,11,8410,6827 +116180,66,11,99,37555 +116181,306,7,339403,1550166 +116182,3,5,78802,2596 +116183,289,6,9514,1642600 +116184,3,5,291351,236606 +116185,304,10,55370,3573 +116186,304,10,26030,14228 +116187,234,1,298584,22239 +116188,301,5,19995,1177364 +116189,333,2,30644,1324995 +116190,387,10,12422,45192 +116191,198,6,9946,1767324 +116192,182,8,186869,1585183 +116193,208,2,693,229801 +116194,204,9,103689,20716 +116195,169,3,9882,1318092 +116196,105,7,137726,12013 +116197,387,10,48466,64446 +116198,269,9,23367,63293 +116199,3,5,10484,66271 +116200,317,10,46227,50099 +116201,34,8,41283,1440305 +116202,387,10,11257,54442 +116203,387,10,24978,92939 +116204,179,2,127585,1319389 +116205,269,9,70322,1808984 +116206,245,3,11812,420741 +116207,72,11,72431,1484221 +116208,234,1,33460,85725 +116209,3,5,81182,131539 +116210,273,7,55846,23451 +116211,234,1,437253,934628 +116212,317,10,125623,77128 +116213,5,10,79372,2747 +116214,234,1,98302,35216 +116215,387,10,174769,20097 +116216,182,8,203833,1406193 +116217,234,1,86252,933065 +116218,203,1,309581,1494288 +116219,234,1,293861,1225107 +116220,105,7,62492,54599 +116221,234,1,83223,45577 +116222,234,1,15506,5657 +116223,105,7,75204,574145 +116224,75,5,10145,1399143 +116225,387,10,413882,78747 +116226,161,6,329712,1849851 +116227,387,10,52440,85349 +116228,357,3,12171,1420778 +116229,234,1,28805,133423 +116230,52,10,12645,129712 +116231,127,3,153397,1835498 +116232,317,10,54779,151106 +116233,105,7,31397,1408459 +116234,415,3,638,114274 +116235,373,7,110972,91087 +116236,413,11,99579,23397 +116237,105,7,8398,18264 +116238,317,10,248706,237529 +116239,387,10,54801,1296276 +116240,289,6,9904,1453513 +116241,203,1,95627,1538344 +116242,317,10,74437,234798 +116243,164,3,15472,1731245 +116244,105,7,34723,10494 +116245,105,7,12112,49871 +116246,190,7,392818,1754092 +116247,373,7,3309,1533647 +116248,204,9,10178,13864 +116249,360,3,260030,1453112 +116250,60,1,703,10446 +116251,234,1,306952,1272849 +116252,415,3,435,6060 +116253,387,10,1950,323 +116254,75,5,177047,1420160 +116255,234,1,248747,235112 +116256,20,2,219466,1640822 +116257,148,9,755,11424 +116258,208,2,408381,1657572 +116259,190,7,410118,1791596 +116260,387,10,70368,558284 +116261,317,10,22494,113860 +116262,244,3,60599,1400486 +116263,3,5,10176,29080 +116264,273,7,40793,10771 +116265,52,10,13848,27991 +116266,210,9,272693,1709327 +116267,277,3,30637,1607280 +116268,80,3,107073,1481517 +116269,292,3,544,1780217 +116270,234,1,89551,115372 +116271,204,9,59726,965293 +116272,303,3,10929,1441261 +116273,204,9,14126,23492 +116274,273,7,11045,23486 +116275,77,10,195,2432 +116276,52,10,287587,208519 +116277,234,1,137357,261224 +116278,53,2,47120,19897 +116279,387,10,79008,49923 +116280,175,5,10744,1551221 +116281,105,7,41714,1135 +116282,3,5,19017,57360 +116283,127,3,214756,1457917 +116284,296,3,27259,1624418 +116285,226,2,152736,1409882 +116286,75,5,9438,1555378 +116287,75,5,11812,1367346 +116288,166,9,4413,1378672 +116289,273,7,13477,19155 +116290,204,9,52437,127200 +116291,317,10,31377,86926 +116292,413,11,240745,1406904 +116293,273,7,33305,55641 +116294,204,9,21866,11558 +116295,158,2,16921,1401767 +116296,3,5,323435,1385904 +116297,234,1,31890,109544 +116298,273,7,4613,21962 +116299,333,2,9443,10719 +116300,53,2,212530,1196912 +116301,53,2,11656,46876 +116302,204,9,14073,1674917 +116303,387,10,10379,64946 +116304,234,1,82941,38459 +116305,333,2,10326,1446652 +116306,317,10,53870,77163 +116307,105,7,1647,122 +116308,232,10,32093,29807 +116309,52,10,18405,5140 +116310,226,2,69668,1425970 +116311,234,1,82401,543495 +116312,234,1,38162,64508 +116313,317,10,59419,1526946 +116314,413,11,26376,14447 +116315,317,10,35696,114647 +116316,317,10,59115,77147 +116317,3,5,10096,36 +116318,394,7,2107,15332 +116319,5,10,83782,1182684 +116320,413,11,4147,3050 +116321,387,10,10797,564019 +116322,273,7,89720,1327729 +116323,83,2,241258,1402018 +116324,234,1,224243,231199 +116325,395,3,49013,8046 +116326,387,10,147876,30537 +116327,234,1,52520,80923 +116328,234,1,14353,2675 +116329,146,5,341174,1738103 +116330,234,1,298158,41222 +116331,273,7,308024,148736 +116332,273,7,97365,2949 +116333,165,9,14430,1521708 +116334,53,2,184795,18755 +116335,106,3,655,1315038 +116336,75,5,74,1452632 +116337,273,7,276550,68531 +116338,234,1,262,1032 +116339,413,11,137726,1295712 +116340,273,7,9815,469 +116341,273,7,37103,2578 +116342,289,6,9514,1642583 +116343,387,10,7085,18503 +116344,262,6,393562,1760327 +116345,269,9,331962,1279526 +116346,232,10,43385,30295 +116347,204,9,193893,1452641 +116348,75,5,68387,122085 +116349,97,7,206647,1367493 +116350,204,9,99861,1388855 +116351,5,10,86920,84942 +116352,226,2,3574,33000 +116353,64,6,188826,1583221 +116354,75,5,351211,1395902 +116355,180,7,15794,1613772 +116356,77,10,10425,65110 +116357,413,11,14916,1430512 +116358,387,10,35025,113611 +116359,175,5,39979,1581963 +116360,387,10,33556,87550 +116361,387,10,353595,150856 +116362,3,5,48787,28370 +116363,387,10,13549,66878 +116364,387,10,10610,147630 +116365,3,5,365942,54164 +116366,52,10,18722,129926 +116367,301,5,1271,1394756 +116368,387,10,41574,124796 +116369,383,3,49013,953331 +116370,3,5,126127,30177 +116371,179,2,74,1516293 +116372,234,1,70133,96372 +116373,317,10,26969,96689 +116374,250,11,333352,1434544 +116375,262,6,250066,1364100 +116376,148,9,43727,17853 +116377,103,6,260030,1453122 +116378,53,2,36658,9043 +116379,234,1,52556,145352 +116380,327,7,11639,1513638 +116381,317,10,13542,58152 +116382,52,10,10973,67688 +116383,75,5,23397,56593 +116384,234,1,51875,126501 +116385,273,7,154,1729 +116386,175,5,2978,555085 +116387,105,7,64928,1614291 +116388,53,2,376501,1494535 +116389,387,10,21468,122964 +116390,387,10,285858,986587 +116391,3,5,10395,15131 +116392,273,7,33592,108122 +116393,53,2,214,51035 +116394,413,11,40998,37242 +116395,269,9,12573,10575 +116396,403,10,141955,615156 +116397,234,1,28732,1142481 +116398,45,9,95627,1538342 +116399,143,7,2105,1398120 +116400,203,1,59678,1337422 +116401,262,6,20919,1405316 +116402,85,10,15199,19312 +116403,277,7,755,1596321 +116404,291,6,6947,1311507 +116405,234,1,23516,227565 +116406,52,10,43808,72063 +116407,317,10,330878,1442720 +116408,187,11,19995,1376901 +116409,52,10,15934,1374608 +116410,169,3,14254,1271920 +116411,317,10,18955,71309 +116412,204,9,8619,13434 +116413,53,2,540,52261 +116414,77,10,13614,82310 +116415,415,3,14510,59287 +116416,226,2,167,83066 +116417,3,5,309581,1149910 +116418,412,9,13798,1565839 +116419,105,7,52475,52230 +116420,413,11,55624,20554 +116421,317,10,355890,1536960 +116422,198,6,334074,1833103 +116423,317,10,182097,1164911 +116424,113,9,7220,1378750 +116425,252,3,7220,1573601 +116426,333,2,325039,1146969 +116427,52,10,31364,142630 +116428,365,6,12477,1456795 +116429,317,10,248633,936236 +116430,273,7,132859,30681 +116431,204,9,11234,29279 +116432,3,5,337,6545 +116433,234,1,76829,25950 +116434,5,10,42941,134606 +116435,105,7,86820,1095529 +116436,40,1,154972,1755265 +116437,3,5,260001,967129 +116438,11,6,14128,90262 +116439,317,10,14550,68037 +116440,273,7,9900,60150 +116441,387,10,79521,4341 +116442,204,9,4964,38022 +116443,317,10,424488,174514 +116444,165,9,10066,1864758 +116445,52,10,13517,63977 +116446,204,9,8467,7416 +116447,413,11,54563,25953 +116448,269,9,103689,1827467 +116449,291,6,333371,1558086 +116450,269,9,14372,25195 +116451,226,2,28430,1581329 +116452,204,9,70119,1771880 +116453,203,1,152989,1179895 +116454,413,11,42045,31931 +116455,373,7,401164,1286574 +116456,317,10,354105,1721802 +116457,32,8,31947,1896607 +116458,122,8,313922,1616456 +116459,148,9,949,13677 +116460,97,7,223551,1263799 +116461,196,7,9358,1423757 +116462,234,1,94336,2332 +116463,64,6,21734,100762 +116464,234,1,86658,99005 +116465,234,1,14136,5834 +116466,53,2,46982,1469785 +116467,97,7,3597,1374169 +116468,273,7,772,491 +116469,77,10,15372,59077 +116470,52,10,70500,559704 +116471,169,3,11472,1224272 +116472,317,10,166207,533375 +116473,72,11,196469,1047628 +116474,273,7,12636,73191 +116475,169,3,17609,1299048 +116476,5,10,257574,93127 +116477,234,1,135670,1103518 +116478,105,7,339994,1029332 +116479,354,3,755,1851723 +116480,3,5,44001,8620 +116481,234,1,356486,1522124 +116482,301,5,76163,1069627 +116483,182,8,7299,1553236 +116484,387,10,28997,929486 +116485,268,7,2321,1337461 +116486,234,1,114931,1059894 +116487,387,10,81188,23766 +116488,273,7,382125,95702 +116489,148,9,52440,9063 +116490,234,1,60071,47924 +116491,333,2,47324,1620544 +116492,204,9,340275,1395434 +116493,323,10,180371,1095855 +116494,273,7,210940,1535855 +116495,387,10,94809,56722 +116496,32,8,154442,1722923 +116497,132,2,201085,1408666 +116498,143,7,257088,1395023 +116499,234,1,12230,64864 +116500,234,1,43912,57436 +116501,269,9,17332,36656 +116502,413,11,5590,45532 +116503,317,10,16806,111907 +116504,234,1,337879,1675373 +116505,190,7,11351,1597214 +116506,217,3,269149,1462004 +116507,234,1,27696,98744 +116508,289,6,433,138170 +116509,413,11,93313,13350 +116510,203,1,21765,1488570 +116511,3,5,17771,47275 +116512,413,11,10354,384 +116513,182,8,256740,1402522 +116514,3,5,14537,51808 +116515,394,7,664,554887 +116516,413,11,246299,90069 +116517,11,6,92321,1504814 +116518,155,3,45205,132527 +116519,234,1,153561,933695 +116520,46,5,142402,187478 +116521,301,5,354859,1388895 +116522,328,6,40807,1336715 +116523,122,8,7551,1526479 +116524,234,1,19423,106491 +116525,53,2,382591,1681489 +116526,387,10,38718,20213 +116527,328,6,312221,1580893 +116528,234,1,39816,31654 +116529,234,1,280617,1035398 +116530,234,1,47758,10001 +116531,53,2,37311,4312 +116532,204,9,285,553 +116533,148,9,22476,1896851 +116534,234,1,18682,68682 +116535,148,9,60855,1396501 +116536,269,9,274479,5389 +116537,77,10,5804,1032 +116538,234,1,773,16960 +116539,373,7,84226,1418433 +116540,286,3,347258,1525128 +116541,394,7,9820,1546458 +116542,413,11,296633,69388 +116543,399,9,9325,148182 +116544,204,9,127380,1516157 +116545,3,5,55922,1378568 +116546,413,11,3078,30154 +116547,317,10,46920,59914 +116548,209,7,3682,1538707 +116549,53,2,16551,6455 +116550,234,1,38286,120019 +116551,317,10,48319,221664 +116552,203,1,30091,18127 +116553,289,6,11572,1460608 +116554,234,1,20704,67411 +116555,289,6,140607,7727 +116556,387,10,97794,565382 +116557,102,3,379019,1780176 +116558,317,10,53693,73099 +116559,226,2,11618,1435576 +116560,317,10,286372,1375057 +116561,197,5,354859,1884075 +116562,234,1,14881,14520 +116563,3,5,16075,29487 +116564,401,6,12,7967 +116565,3,5,20941,20693 +116566,37,3,10351,1455461 +116567,268,7,74,1408672 +116568,155,3,325712,1647581 +116569,262,6,1991,1420157 +116570,226,2,165,76701 +116571,181,7,11547,1557612 +116572,3,5,9945,24956 +116573,298,5,294272,1494209 +116574,234,1,20919,62342 +116575,53,2,44129,1317898 +116576,413,11,102629,31628 +116577,395,3,286192,1711834 +116578,234,1,118760,18627 +116579,3,5,121401,13809 +116580,148,9,772,8867 +116581,387,10,8916,3288 +116582,186,6,378236,1840320 +116583,387,10,126250,1012 +116584,3,5,318224,1357065 +116585,373,7,26941,1413907 +116586,234,1,7515,52856 +116587,3,5,55433,222356 +116588,148,9,241239,1422056 +116589,234,1,112912,2662 +116590,204,9,339312,1464985 +116591,97,7,293660,1338372 +116592,122,8,293660,1580843 +116593,262,6,1251,1377128 +116594,234,1,1687,9108 +116595,87,7,1950,329 +116596,53,2,15092,965666 +116597,415,3,378441,1503229 +116598,105,7,109587,1055276 +116599,317,10,155765,1067794 +116600,287,3,284564,1401175 +116601,289,6,433,22066 +116602,387,10,9470,545536 +116603,234,1,21070,18563 +116604,3,5,47876,1939 +116605,204,9,23823,1420336 +116606,122,8,365942,1571524 +116607,387,10,1819,19273 +116608,387,10,35405,68132 +116609,3,5,8277,54602 +116610,387,10,295723,1070384 +116611,99,3,16442,14773 +116612,53,2,14435,1312505 +116613,273,7,33336,22470 +116614,273,7,21208,9039 +116615,189,3,49009,1539320 +116616,387,10,90590,101424 +116617,234,1,2760,2636 +116618,53,2,17170,4150 +116619,188,8,227975,1775639 +116620,97,7,28178,92388 +116621,234,1,30634,99314 +116622,234,1,167874,29388 +116623,3,5,56800,1305028 +116624,317,10,44012,130030 +116625,234,1,123074,210161 +116626,317,10,461615,1832456 +116627,413,11,376188,1559214 +116628,269,9,6145,54776 +116629,234,1,14444,110873 +116630,3,5,27034,3148 +116631,376,10,14609,87173 +116632,3,5,44115,1570 +116633,365,6,81003,1459642 +116634,3,5,53230,3637 +116635,46,5,285270,1367934 +116636,373,7,2666,1392702 +116637,387,10,11096,68006 +116638,105,7,406449,936917 +116639,317,10,57011,84748 +116640,148,9,15613,1442498 +116641,3,5,85160,1432467 +116642,273,7,11915,39141 +116643,234,1,66447,37626 +116644,3,5,86718,55073 +116645,160,3,9358,16618 +116646,317,10,46658,137066 +116647,166,9,67328,1583630 +116648,289,6,159824,1455610 +116649,105,7,51999,46266 +116650,413,11,47878,10957 +116651,234,1,68063,225160 +116652,413,11,123025,1033619 +116653,234,1,64456,39009 +116654,413,11,1586,17766 +116655,158,2,4413,1406902 +116656,246,6,284052,1774214 +116657,45,9,17622,963697 +116658,286,3,86647,101468 +116659,3,5,180299,142026 +116660,413,11,5279,1635 +116661,287,3,42251,64722 +116662,175,5,16996,1394724 +116663,143,7,975,14560 +116664,204,9,22408,41710 +116665,373,7,145135,1406825 +116666,175,5,2300,1395028 +116667,188,8,14430,1486320 +116668,196,7,1647,1399117 +116669,105,7,53042,1076332 +116670,204,9,205584,1034192 +116671,188,8,9352,1586388 +116672,186,6,10204,1613321 +116673,77,10,17467,81915 +116674,3,5,105548,16750 +116675,273,7,29787,8422 +116676,413,11,291351,950 +116677,234,1,198176,9054 +116678,387,10,43792,939361 +116679,232,10,74689,1547744 +116680,148,9,59961,185037 +116681,148,9,95358,9799 +116682,127,3,15092,1669267 +116683,53,2,197696,1045860 +116684,74,5,329865,1777669 +116685,148,9,29313,103471 +116686,77,10,176983,84840 +116687,234,1,38769,129422 +116688,234,1,60173,63937 +116689,234,1,11235,68687 +116690,387,10,77949,110833 +116691,87,7,38322,24192 +116692,158,2,126889,1746454 +116693,52,10,174769,143414 +116694,175,5,4547,1172443 +116695,273,7,70670,15082 +116696,234,1,89269,83996 +116697,234,1,85834,10249 +116698,181,7,311291,1556735 +116699,360,3,9286,1441349 +116700,289,6,11024,1461151 +116701,413,11,13834,75871 +116702,234,1,2061,21183 +116703,373,7,9914,1349056 +116704,289,6,90001,550480 +116705,317,10,16921,84697 +116706,148,9,57103,9587 +116707,387,10,19354,549834 +116708,203,1,64807,1342629 +116709,387,10,28303,24792 +116710,413,11,28438,19457 +116711,175,5,11017,1554085 +116712,160,3,1647,142162 +116713,234,1,32029,4081 +116714,234,1,4806,1201 +116715,53,2,49524,20172 +116716,398,9,19995,1376887 +116717,365,6,116711,1731716 +116718,204,9,13614,1610044 +116719,413,11,211,10234 +116720,3,5,79521,13809 +116721,225,7,334527,1347999 +116722,373,7,291413,1395709 +116723,387,10,12652,23506 +116724,234,1,271234,1322764 +116725,148,9,268920,71560 +116726,387,10,5998,47086 +116727,269,9,308,5670 +116728,286,3,101376,928004 +116729,3,5,93313,8504 +116730,182,8,13616,1374792 +116731,269,9,369406,1325185 +116732,413,11,291270,1536584 +116733,234,1,11399,28279 +116734,413,11,5421,1505031 +116735,105,7,404459,1428041 +116736,234,1,3539,32415 +116737,105,7,80473,72441 +116738,32,8,190955,1405327 +116739,3,5,296025,966927 +116740,53,2,13842,6904 +116741,234,1,127257,584335 +116742,317,10,52705,4410 +116743,387,10,3087,20371 +116744,296,3,11045,91071 +116745,349,1,35,1447481 +116746,180,7,185153,1335146 +116747,234,1,10622,62410 +116748,317,10,9428,5655 +116749,269,9,76380,575524 +116750,204,9,384737,1170240 +116751,273,7,133255,120208 +116752,234,1,237,3055 +116753,3,5,31428,41411 +116754,148,9,64807,92350 +116755,220,7,1976,17915 +116756,3,5,193756,15559 +116757,314,2,16176,958468 +116758,97,7,77459,1724718 +116759,319,1,405473,1800056 +116760,333,2,220,4313 +116761,239,5,116463,1691483 +116762,92,7,25430,1703067 +116763,234,1,96011,56151 +116764,77,10,13685,887 +116765,387,10,12447,12962 +116766,387,10,430250,1722726 +116767,127,3,28090,138626 +116768,317,10,206514,212903 +116769,387,10,214138,985151 +116770,333,2,278621,1415886 +116771,269,9,10865,1463336 +116772,296,3,29151,1526852 +116773,53,2,15762,1147204 +116774,3,5,11886,60683 +116775,75,5,2454,1037310 +116776,179,2,226140,558371 +116777,333,2,43095,1602604 +116778,234,1,58918,1042113 +116779,387,10,52270,29596 +116780,175,5,274479,1377133 +116781,234,1,104602,1927 +116782,53,2,10484,19070 +116783,413,11,53354,63128 +116784,273,7,369883,54599 +116785,148,9,12994,1321333 +116786,60,1,27523,1139943 +116787,333,2,237584,1314463 +116788,291,6,1966,63798 +116789,245,3,9472,193127 +116790,234,1,18493,68994 +116791,373,7,309879,1621484 +116792,234,1,56191,222332 +116793,317,10,112244,587603 +116794,387,10,18722,23964 +116795,57,2,398289,1401604 +116796,269,9,16174,1440896 +116797,286,3,89921,1063181 +116798,234,1,20544,15663 +116799,398,9,15476,1392966 +116800,127,3,613,1427444 +116801,3,5,115427,1042221 +116802,204,9,6644,5188 +116803,234,1,158900,110054 +116804,226,2,703,10444 +116805,85,10,413770,67269 +116806,317,10,94874,163641 +116807,234,1,144792,14855 +116808,45,9,118,1561994 +116809,413,11,8464,63932 +116810,105,7,16374,35073 +116811,273,7,48156,5805 +116812,187,11,9428,1531576 +116813,413,11,51212,11206 +116814,234,1,7972,39996 +116815,234,1,74705,39787 +116816,60,1,3780,1087759 +116817,3,5,17622,1171528 +116818,234,1,10805,16483 +116819,3,5,256474,1403564 +116820,196,7,127372,1365541 +116821,192,5,9457,1398972 +116822,204,9,11688,986240 +116823,45,9,222935,1611976 +116824,52,10,419459,1284099 +116825,234,1,62213,510 +116826,234,1,375384,995570 +116827,53,2,241258,42909 +116828,387,10,28820,102112 +116829,12,10,28090,19266 +116830,269,9,44502,124238 +116831,252,3,6947,1573099 +116832,373,7,9946,1399141 +116833,413,11,598,8578 +116834,187,11,45019,1404366 +116835,403,10,285946,148571 +116836,333,2,262528,1340355 +116837,286,3,315855,148735 +116838,234,1,46658,137066 +116839,165,9,9946,1640478 +116840,413,11,1381,330 +116841,3,5,45431,550894 +116842,3,5,10671,9103 +116843,3,5,80596,6603 +116844,196,7,12,8159 +116845,207,3,11618,165734 +116846,204,9,11788,1430072 +116847,387,10,12645,68694 +116848,72,11,2300,1775928 +116849,286,3,32390,62956 +116850,3,5,2293,21405 +116851,3,5,8270,21039 +116852,204,9,8053,63293 +116853,3,5,3033,7183 +116854,3,5,30973,90690 +116855,234,1,168994,587603 +116856,52,10,84337,1170213 +116857,317,10,140595,36802 +116858,182,8,321303,1595282 +116859,196,7,9675,1535130 +116860,1,7,4982,1216495 +116861,273,7,137315,1107182 +116862,226,2,15661,1526510 +116863,53,2,2805,1653577 +116864,60,1,210653,1680408 +116865,387,10,11236,1901 +116866,325,5,297762,61851 +116867,160,3,9664,1388877 +116868,269,9,374473,1319156 +116869,360,9,5915,1417415 +116870,204,9,38732,29637 +116871,87,7,22881,83655 +116872,413,11,10866,21055 +116873,53,2,9475,4189 +116874,60,1,39979,144613 +116875,87,7,173153,1541694 +116876,103,6,461955,1403461 +116877,209,7,310888,1087512 +116878,234,1,13934,7879 +116879,387,10,70670,77966 +116880,203,1,259997,1302528 +116881,349,1,10198,1461401 +116882,84,7,8619,52193 +116883,413,11,112304,1073744 +116884,317,10,188507,129952 +116885,127,3,214756,1457942 +116886,289,6,80928,557250 +116887,12,10,181533,82995 +116888,210,9,383538,1851915 +116889,273,7,311324,10851 +116890,208,2,57749,1411218 +116891,169,3,19255,1552357 +116892,413,11,118677,10419 +116893,413,11,25834,75079 +116894,40,1,3597,57027 +116895,204,9,302026,1570574 +116896,360,3,21338,1630530 +116897,234,1,38061,119512 +116898,104,7,1659,18438 +116899,160,3,57597,1448276 +116900,196,7,8464,1581515 +116901,210,9,12103,1625898 +116902,333,2,6963,1458527 +116903,387,10,186997,1277409 +116904,200,3,302828,1453671 +116905,53,2,8064,45851 +116906,387,10,10643,66156 +116907,3,5,43434,23464 +116908,52,10,31390,7488 +116909,188,8,9472,1567924 +116910,53,2,130055,19368 +116911,234,1,273896,1348810 +116912,160,3,67328,1583639 +116913,148,9,128866,1665459 +116914,413,11,43503,9852 +116915,317,10,120587,1111822 +116916,188,8,186869,1862947 +116917,148,9,43316,12349 +116918,289,6,234377,173625 +116919,234,1,385379,1585242 +116920,387,10,424014,582899 +116921,273,7,320011,63853 +116922,196,7,51250,1415086 +116923,169,3,9428,1552357 +116924,234,1,11257,54441 +116925,3,5,15982,904 +116926,413,11,302042,1200898 +116927,234,1,21769,24636 +116928,83,2,373546,1383811 +116929,3,5,52847,41709 +116930,335,6,283995,1815935 +116931,234,1,36220,57110 +116932,3,5,14811,10339 +116933,175,5,5289,1401594 +116934,234,1,15472,19346 +116935,166,9,45019,1470538 +116936,188,8,82448,927999 +116937,269,9,136582,928259 +116938,182,8,22076,1398187 +116939,234,1,280030,1328703 +116940,204,9,228066,1354916 +116941,387,10,43889,131408 +116942,3,5,258363,1486210 +116943,413,11,8049,53661 +116944,273,7,11912,22470 +116945,75,5,285840,1646075 +116946,317,10,94674,1121523 +116947,289,6,18937,240779 +116948,234,1,413421,1672320 +116949,234,1,289923,76541 +116950,148,9,197611,1634780 +116951,303,3,102629,1363344 +116952,387,10,247354,253152 +116953,317,10,19150,84165 +116954,234,1,120657,29962 +116955,362,3,10590,1566249 +116956,317,10,179818,14824 +116957,317,10,384373,1582128 +116958,387,10,10890,52871 +116959,77,10,28171,120226 +116960,66,11,39979,1743946 +116961,373,7,180305,1399631 +116962,234,1,32237,1106142 +116963,11,6,10529,1432606 +116964,52,10,43809,22598 +116965,234,1,54690,150975 +116966,60,1,42517,1687348 +116967,413,11,8842,21055 +116968,387,10,7863,67887 +116969,234,1,208869,63052 +116970,413,11,13823,16513 +116971,415,3,954,15316 +116972,53,2,450530,35012 +116973,226,2,3513,32356 +116974,317,10,87388,937879 +116975,234,1,9312,4014 +116976,346,3,17654,1424642 +116977,234,1,2017,19450 +116978,132,2,418437,1635161 +116979,234,1,44877,209947 +116980,3,5,43809,127523 +116981,219,11,323929,1724364 +116982,317,10,423093,1264792 +116983,413,11,64499,1454540 +116984,3,5,6575,51853 +116985,234,1,46189,8500 +116986,413,11,18682,1020770 +116987,180,7,57230,1625944 +116988,3,5,11979,27099 +116989,234,1,11204,33036 +116990,387,10,73565,97942 +116991,175,5,167,9360 +116992,3,5,870,4998 +116993,273,7,11576,12142 +116994,113,9,325039,1544659 +116995,77,10,9914,60402 +116996,203,1,11058,135257 +116997,273,7,14242,84924 +116998,87,7,172828,1544312 +116999,317,10,328111,52361 +117000,327,7,54845,1429533 +117001,148,9,38437,33250 +117002,387,10,121793,27436 +117003,3,5,248639,8713 +117004,208,2,307081,1419091 +117005,387,10,23544,1633121 +117006,210,9,263115,1705348 +117007,387,10,54166,67971 +117008,349,1,35,1460442 +117009,328,6,11370,75104 +117010,234,1,61314,129059 +117011,291,6,8470,1337466 +117012,113,9,398289,1170990 +117013,317,10,51976,567736 +117014,301,5,11024,1409742 +117015,413,11,13934,8065 +117016,234,1,87953,64992 +117017,277,7,105548,14964 +117018,234,1,382597,37627 +117019,234,1,226630,100979 +117020,317,10,279692,994146 +117021,148,9,6972,62745 +117022,44,6,924,1733248 +117023,234,1,390777,1023127 +117024,234,1,14552,129951 +117025,3,5,1294,24076 +117026,413,11,297853,14095 +117027,296,3,118,1632605 +117028,64,6,325173,933118 +117029,317,10,187022,24011 +117030,269,9,18530,1318447 +117031,3,5,184345,1894620 +117032,317,10,264269,1311032 +117033,3,5,7343,52530 +117034,387,10,270015,103674 +117035,387,10,42941,134604 +117036,398,9,30363,5270 +117037,234,1,347127,130051 +117038,328,6,302026,1570599 +117039,289,6,378236,1840330 +117040,413,11,72545,22303 +117041,219,11,10733,13189 +117042,415,3,26946,89040 +117043,317,10,21413,1420608 +117044,148,9,86732,1303185 +117045,226,2,24750,83067 +117046,198,6,9716,1562119 +117047,3,5,11939,14678 +117048,75,5,145154,1122370 +117049,303,3,283384,1429335 +117050,273,7,76543,1317462 +117051,333,2,116312,1489871 +117052,234,1,202984,1185282 +117053,398,9,127585,1380378 +117054,273,7,40985,135166 +117055,203,1,42533,194568 +117056,234,1,62397,95456 +117057,286,3,152736,930009 +117058,413,11,334,1809 +117059,234,1,137491,4137 +117060,53,2,145481,1605760 +117061,234,1,335145,717 +117062,188,8,14,1181576 +117063,269,9,41760,6921 +117064,387,10,338,4781 +117065,317,10,418072,1685111 +117066,182,8,127372,72238 +117067,317,10,64383,49183 +117068,413,11,94811,89924 +117069,234,1,266433,512444 +117070,387,10,134368,57650 +117071,187,11,328111,1376899 +117072,3,5,263115,432 +117073,413,11,8342,1438845 +117074,3,5,50463,17146 +117075,143,7,244,3257 +117076,5,10,116780,70038 +117077,204,9,43457,7127 +117078,234,1,51836,68770 +117079,148,9,15934,1374609 +117080,413,11,14138,1352446 +117081,234,1,317720,613697 +117082,269,9,25643,25140 +117083,196,7,354287,1335562 +117084,269,9,772,2396 +117085,413,11,93858,150511 +117086,413,11,13654,60730 +117087,306,7,30361,1319356 +117088,143,7,6077,47789 +117089,234,1,15981,109191 +117090,75,5,21338,1394971 +117091,413,11,6591,67974 +117092,105,7,279608,1283028 +117093,187,11,1950,1352966 +117094,273,7,46286,69925 +117095,87,7,209263,13225 +117096,413,11,18530,47204 +117097,234,1,36236,12329 +117098,3,5,308,4434 +117099,234,1,138611,1020746 +117100,327,7,755,1851719 +117101,3,5,264264,28001 +117102,204,9,9028,1130016 +117103,53,2,9042,3962 +117104,317,10,70864,21228 +117105,234,1,19715,222238 +117106,204,9,49521,86591 +117107,387,10,26958,1174322 +117108,169,3,240832,16370 +117109,143,7,116350,1542363 +117110,5,10,13777,75287 +117111,234,1,41597,15378 +117112,234,1,11830,69167 +117113,113,9,14126,1409219 +117114,413,11,45714,115779 +117115,3,5,134435,1061215 +117116,234,1,203819,96166 +117117,317,10,400174,2103 +117118,3,5,16999,59982 +117119,317,10,407806,1066326 +117120,234,1,364410,1524269 +117121,268,7,297762,3040 +117122,3,5,9572,1870 +117123,286,3,14126,23461 +117124,269,9,10696,957258 +117125,234,1,70666,559175 +117126,46,5,1586,1854995 +117127,3,5,36194,40052 +117128,34,8,6947,1464521 +117129,401,6,10198,1615296 +117130,226,2,19912,578730 +117131,105,7,328032,1167034 +117132,373,7,10999,1338830 +117133,75,5,41733,1407229 +117134,328,6,57749,1411234 +117135,3,5,11257,3960 +117136,273,7,37084,5184 +117137,317,10,17708,69499 +117138,317,10,377362,1848900 +117139,273,7,66893,1095724 +117140,289,6,13929,1140576 +117141,113,9,10733,1339436 +117142,236,8,69668,1877721 +117143,289,6,12593,223588 +117144,333,2,922,15431 +117145,387,10,54415,125787 +117146,413,11,10834,2309 +117147,148,9,55604,10010 +117148,40,1,366045,1830744 +117149,143,7,203833,40810 +117150,5,10,890,124017 +117151,164,3,293167,1530726 +117152,317,10,46660,139305 +117153,3,5,578,2287 +117154,289,6,9514,1642585 +117155,219,11,755,1552549 +117156,278,6,40466,1760144 +117157,5,10,336029,583777 +117158,387,10,214105,1198740 +117159,15,6,74,1546843 +117160,67,10,8916,1450347 +117161,273,7,42684,969021 +117162,188,8,12102,1530326 +117163,105,7,455661,1544272 +117164,234,1,9540,224 +117165,176,3,102382,1399457 +117166,317,10,350765,1489186 +117167,262,6,169,54272 +117168,413,11,59189,21919 +117169,412,9,6947,1573079 +117170,203,1,8053,1406137 +117171,317,10,44945,150432 +117172,277,3,14983,1408771 +117173,387,10,20644,4358 +117174,3,5,12614,58660 +117175,105,7,24709,51529 +117176,415,3,42532,1813406 +117177,413,11,50153,99726 +117178,234,1,133448,150098 +117179,234,1,142402,635846 +117180,204,9,47386,138787 +117181,175,5,210910,1399105 +117182,269,9,9425,601 +117183,148,9,982,8339 +117184,413,11,261036,72038 +117185,204,9,325263,1459117 +117186,413,11,2309,9154 +117187,97,7,1251,1360101 +117188,387,10,11869,37899 +117189,262,6,10096,1405209 +117190,333,2,21451,7689 +117191,208,2,74,1249773 +117192,5,10,40060,135188 +117193,234,1,107146,39779 +117194,64,6,128246,1652817 +117195,226,2,42309,1440401 +117196,317,10,91380,103393 +117197,219,11,693,1680620 +117198,234,1,2196,7908 +117199,204,9,17692,1446539 +117200,287,3,169881,1519292 +117201,317,10,109614,936106 +117202,7,3,3597,1790555 +117203,234,1,319396,1430294 +117204,45,9,201085,1425973 +117205,413,11,86768,8484 +117206,53,2,2898,33456 +117207,413,11,67977,29417 +117208,226,2,337339,1725776 +117209,182,8,263115,1729038 +117210,269,9,283686,1323112 +117211,141,7,9882,28241 +117212,328,6,270303,1435646 +117213,413,11,24886,130791 +117214,413,11,92989,69834 +117215,234,1,94251,87700 +117216,273,7,11626,70062 +117217,175,5,127372,1394071 +117218,273,7,156700,1103630 +117219,87,7,393367,1660187 +117220,333,2,240913,35996 +117221,317,10,411081,1564950 +117222,208,2,382873,1679704 +117223,53,2,44208,7652 +117224,234,1,92393,154591 +117225,409,7,442752,1761915 +117226,3,5,10275,64686 +117227,273,7,56800,2704 +117228,180,7,142770,1483725 +117229,333,2,7916,1438592 +117230,75,5,76163,1408358 +117231,3,5,17691,9103 +117232,413,11,43491,4309 +117233,234,1,1589,17784 +117234,82,6,458428,1820244 +117235,317,10,236808,1271728 +117236,387,10,11045,59413 +117237,296,3,49009,1539288 +117238,53,2,53230,8630 +117239,273,7,29698,3562 +117240,317,10,103902,61335 +117241,53,2,106635,4127 +117242,413,11,6391,55054 +117243,234,1,23857,227238 +117244,234,1,339342,1168715 +117245,53,2,20126,1625521 +117246,234,1,54527,224610 +117247,413,11,233487,1280380 +117248,140,9,10693,77612 +117249,395,3,13042,8013 +117250,289,6,49524,1453021 +117251,147,1,381015,1828330 +117252,113,9,10066,1864755 +117253,234,1,24348,68993 +117254,66,11,10440,1406756 +117255,413,11,2978,8847 +117256,187,11,324930,1402518 +117257,148,9,1690,548427 +117258,245,3,21519,18897 +117259,317,10,215658,1223380 +117260,234,1,10948,67607 +117261,234,1,96333,79726 +117262,234,1,33839,80570 +117263,387,10,46261,12677 +117264,5,10,8070,39013 +117265,208,2,354859,1884068 +117266,235,5,3309,1551980 +117267,244,3,241254,1404191 +117268,387,10,15944,5836 +117269,317,10,74126,95501 +117270,53,2,338438,38917 +117271,204,9,40952,1148736 +117272,204,9,488,6605 +117273,3,5,312221,33678 +117274,317,10,230428,1261340 +117275,317,10,87229,4475 +117276,132,2,324670,1405704 +117277,3,5,129,19596 +117278,333,2,284052,1402921 +117279,53,2,39356,989349 +117280,324,3,118150,19903 +117281,234,1,200655,927798 +117282,3,5,244316,62922 +117283,286,3,403130,1642274 +117284,269,9,257302,1714063 +117285,413,11,84636,1421267 +117286,317,10,54514,120232 +117287,387,10,96935,148560 +117288,273,7,123757,1478538 +117289,175,5,2897,1549526 +117290,333,2,240832,1048884 +117291,64,6,20424,3357 +117292,34,8,8470,1408702 +117293,3,5,5491,3079 +117294,273,7,45987,7460 +117295,77,10,13574,17735 +117296,269,9,370234,1621859 +117297,317,10,276401,1167896 +117298,76,2,30361,1769270 +117299,196,7,156711,1337410 +117300,52,10,176627,78795 +117301,3,5,338189,982586 +117302,226,2,18447,81385 +117303,53,2,152737,47294 +117304,175,5,9675,1377133 +117305,160,3,287,4064 +117306,148,9,55534,1426735 +117307,303,3,140607,1364399 +117308,317,10,80080,124137 +117309,273,7,11171,68440 +117310,196,7,324670,1338482 +117311,273,7,31880,63454 +117312,387,10,49712,5555 +117313,34,8,19901,1418816 +117314,317,10,345775,1545619 +117315,317,10,8070,19636 +117316,7,3,8869,1552547 +117317,301,5,360249,1635737 +117318,373,7,8915,1337464 +117319,200,3,49009,582920 +117320,301,5,11045,1393571 +117321,226,2,10389,1437882 +117322,3,5,20806,7753 +117323,53,2,93856,1105594 +117324,413,11,318922,1343854 +117325,66,11,13205,1719703 +117326,273,7,74836,42625 +117327,314,2,33586,1815002 +117328,328,6,76163,1437713 +117329,269,9,336011,1394668 +117330,52,10,2487,25469 +117331,289,6,106112,225714 +117332,141,7,72105,1555210 +117333,286,3,97088,6244 +117334,234,1,422,4415 +117335,387,10,2012,20660 +117336,327,7,2300,1412195 +117337,77,10,13640,74864 +117338,317,10,18214,1267676 +117339,268,7,314065,1341734 +117340,250,11,140607,62723 +117341,277,3,24392,1398895 +117342,3,5,410537,372442 +117343,208,2,4248,1208435 +117344,413,11,43252,1539059 +117345,189,3,2503,1405243 +117346,273,7,10204,7020 +117347,289,6,9514,1642555 +117348,317,10,22328,62755 +117349,286,3,261508,1155190 +117350,3,5,134144,103020 +117351,317,10,12720,67075 +117352,53,2,15170,557 +117353,317,10,336882,1261968 +117354,269,9,88036,3117 +117355,234,1,50350,16862 +117356,234,1,202214,1184326 +117357,327,7,302828,1573932 +117358,105,7,23223,1072476 +117359,317,10,324150,1424108 +117360,269,9,10326,13675 +117361,333,2,343173,1647133 +117362,340,2,262338,1857048 +117363,209,7,310888,1556630 +117364,209,7,22881,1352979 +117365,273,7,1717,1729 +117366,3,5,49963,65506 +117367,365,6,413547,1718141 +117368,317,10,173499,1156239 +117369,234,1,239563,1141683 +117370,317,10,49852,58728 +117371,127,3,28090,156869 +117372,387,10,12707,5555 +117373,317,10,38987,6615 +117374,401,6,10198,1453550 +117375,387,10,108723,1166410 +117376,122,8,7551,1526478 +117377,269,9,336691,1547714 +117378,108,10,20625,144060 +117379,92,7,9946,1552603 +117380,317,10,38244,102445 +117381,357,3,9664,1448323 +117382,387,10,63326,92591 +117383,413,11,42329,10613 +117384,187,11,13493,93844 +117385,269,9,39415,1625127 +117386,182,8,448847,1642021 +117387,269,9,237584,1621358 +117388,204,9,356758,1501815 +117389,204,9,315837,111457 +117390,269,9,14370,986350 +117391,357,3,19995,1483222 +117392,158,2,296524,1418407 +117393,226,2,9472,1408293 +117394,269,9,20645,33132 +117395,203,1,365942,1395290 +117396,132,2,20648,1537104 +117397,360,9,13380,12706 +117398,387,10,32825,14567 +117399,269,9,37936,224070 +117400,66,11,9475,1627720 +117401,5,10,21619,87720 +117402,3,5,796,10815 +117403,160,3,26761,1034004 +117404,3,5,79611,1264277 +117405,148,9,30091,1468948 +117406,234,1,80545,1370610 +117407,273,7,76493,6739 +117408,175,5,9966,1392106 +117409,387,10,14128,72251 +117410,75,5,2731,1730023 +117411,273,7,10075,1076 +117412,234,1,15263,51875 +117413,234,1,334890,1695153 +117414,204,9,138308,31204 +117415,387,10,31265,95153 +117416,234,1,1481,65026 +117417,317,10,31021,1120447 +117418,387,10,43434,21678 +117419,273,7,1361,16415 +117420,413,11,18613,113290 +117421,3,5,57419,1601701 +117422,204,9,50247,552003 +117423,3,5,226701,938024 +117424,234,1,28031,8256 +117425,234,1,18044,88039 +117426,317,10,360205,1511017 +117427,387,10,75641,17814 +117428,22,9,369406,1872427 +117429,31,9,315837,1533533 +117430,317,10,18638,83472 +117431,175,5,32657,1391699 +117432,3,5,37329,14569 +117433,169,3,188102,1407247 +117434,317,10,18971,372 +117435,158,2,289225,1826475 +117436,113,9,318553,1647027 +117437,234,1,338676,140396 +117438,204,9,28430,12510 +117439,291,6,2567,15333 +117440,181,7,638,9382 +117441,417,3,2662,1597200 +117442,387,10,40060,135189 +117443,387,10,2309,23766 +117444,3,5,12684,3606 +117445,317,10,28974,13848 +117446,219,11,8870,1552549 +117447,3,5,351242,1167488 +117448,317,10,371459,4635 +117449,53,2,59726,1324922 +117450,234,1,26518,56383 +117451,250,11,324670,1616397 +117452,413,11,261273,1319649 +117453,208,2,8915,558227 +117454,234,1,193387,29648 +117455,3,5,31634,1148558 +117456,269,9,9438,957310 +117457,187,11,11472,8158 +117458,105,7,423078,1700417 +117459,234,1,288101,1355652 +117460,75,5,9441,52192 +117461,53,2,32904,76972 +117462,75,5,10632,1401263 +117463,289,6,264553,1332316 +117464,77,10,8915,115100 +117465,317,10,159304,1020087 +117466,72,11,280092,1548080 +117467,77,10,16371,79565 +117468,53,2,27095,1148738 +117469,317,10,20430,51785 +117470,5,10,62397,235264 +117471,331,3,9882,1774553 +117472,262,6,189,1401148 +117473,413,11,79521,68090 +117474,3,5,54022,1209263 +117475,269,9,102630,1170240 +117476,234,1,256969,1053651 +117477,234,1,63144,550669 +117478,413,11,58166,6076 +117479,102,3,176,1433954 +117480,234,1,31299,93560 +117481,317,10,176,2128 +117482,367,11,49013,1609033 +117483,226,2,222517,1560813 +117484,345,7,28263,577620 +117485,317,10,49446,1036825 +117486,394,7,1950,3193 +117487,413,11,377447,110511 +117488,3,5,185154,36967 +117489,273,7,128669,26026 +117490,380,3,12,8066 +117491,238,7,11351,1549587 +117492,60,1,63215,1520928 +117493,269,9,10087,471 +117494,113,9,6947,56697 +117495,387,10,71859,1075511 +117496,387,10,120657,1302250 +117497,317,10,331588,54488 +117498,317,10,53404,84473 +117499,387,10,48405,94248 +117500,234,1,67342,932916 +117501,269,9,109491,29788 +117502,328,6,6972,1401727 +117503,413,11,40095,57642 +117504,340,2,72545,1859993 +117505,387,10,32610,959728 +117506,413,11,65599,1038367 +117507,273,7,11601,1213 +117508,387,10,239566,120254 +117509,203,1,33273,1540831 +117510,269,9,218425,1312180 +117511,204,9,43821,103507 +117512,413,11,12631,50194 +117513,269,9,70327,1808984 +117514,3,5,9651,8934 +117515,3,5,325189,7413 +117516,415,3,29372,103677 +117517,387,10,27549,1477794 +117518,317,10,147287,2725 +117519,125,2,2924,75127 +117520,317,10,128612,63891 +117521,87,7,634,223202 +117522,413,11,67375,19334 +117523,3,5,11576,9103 +117524,387,10,3478,15127 +117525,53,2,142770,1632082 +117526,148,9,214938,1334762 +117527,257,3,10733,1571764 +117528,226,2,443319,1721226 +117529,53,2,11391,936664 +117530,148,9,23048,22147 +117531,333,2,360249,1419278 +117532,317,10,13728,2420 +117533,187,11,8292,1411265 +117534,53,2,72984,544821 +117535,273,7,4820,13571 +117536,413,11,30363,2309 +117537,269,9,14452,10857 +117538,204,9,277713,67115 +117539,234,1,92809,1338399 +117540,419,10,257574,42058 +117541,394,7,436,1333223 +117542,203,1,4413,992965 +117543,289,6,12593,573776 +117544,317,10,144271,1120638 +117545,273,7,12499,1213 +117546,53,2,180576,1121742 +117547,204,9,220002,1204940 +117548,387,10,30875,44957 +117549,387,10,88390,1069525 +117550,234,1,300210,932736 +117551,269,9,65904,1136810 +117552,261,2,9314,1749140 +117553,234,1,155397,1002925 +117554,317,10,58391,54767 +117555,97,7,225728,1393301 +117556,324,3,342588,1497016 +117557,60,1,32610,1585490 +117558,75,5,1058,1404765 +117559,182,8,47112,1209613 +117560,242,9,111302,9062 +117561,75,5,109391,1204710 +117562,204,9,10776,8973 +117563,234,1,248639,97774 +117564,3,5,16074,92017 +117565,317,10,119738,148168 +117566,387,10,91583,157017 +117567,234,1,48717,1032 +117568,148,9,82077,1033105 +117569,234,1,25520,93911 +117570,219,11,1251,1377136 +117571,3,5,82631,23543 +117572,413,11,31044,8425 +117573,413,11,82968,1153225 +117574,394,7,44129,1412452 +117575,55,5,10733,1571716 +117576,317,10,27052,96842 +117577,413,11,10727,8751 +117578,273,7,139718,1174359 +117579,269,9,167,23769 +117580,387,10,3539,32415 +117581,387,10,10219,33433 +117582,204,9,9542,1299406 +117583,204,9,11045,1319135 +117584,289,6,45205,132523 +117585,257,3,435,79620 +117586,75,5,230179,1512676 +117587,262,6,255343,1512783 +117588,317,10,137726,1007737 +117589,317,10,56693,34264 +117590,269,9,67509,1136065 +117591,234,1,151730,18626 +117592,234,1,86360,76381 +117593,148,9,2288,66552 +117594,105,7,461955,929145 +117595,277,3,73835,1606288 +117596,132,2,401164,1619743 +117597,317,10,15639,62058 +117598,317,10,106944,67948 +117599,413,11,9438,2995 +117600,373,7,9457,1052 +117601,387,10,36519,144423 +117602,50,3,9928,1805171 +117603,234,1,76203,72757 +117604,52,10,74437,98217 +117605,273,7,231009,1266166 +117606,387,10,396152,1211636 +117607,413,11,210615,9958 +117608,3,5,70322,1106077 +117609,37,3,393407,41572 +117610,3,5,227552,42370 +117611,273,7,31083,1213 +117612,3,5,33407,1005960 +117613,269,9,291164,1538234 +117614,273,7,10652,1551 +117615,105,7,18506,1485215 +117616,413,11,42204,66167 +117617,269,9,381032,1287629 +117618,268,7,356500,1553856 +117619,286,3,75336,2361 +117620,413,11,9664,68393 +117621,60,1,76465,1529473 +117622,387,10,194509,34369 +117623,3,5,24584,47650 +117624,413,11,2169,22181 +117625,180,7,44875,1554089 +117626,234,1,18045,82641 +117627,71,5,365942,1738131 +117628,234,1,15725,110522 +117629,403,10,16444,119321 +117630,3,5,31118,1002349 +117631,143,7,318781,1576810 +117632,317,10,270650,146801 +117633,413,11,44801,14457 +117634,234,1,90563,13859 +117635,209,7,285,1399327 +117636,204,9,57230,225723 +117637,234,1,37789,1249974 +117638,148,9,27629,17670 +117639,203,1,9877,1096363 +117640,317,10,117026,41704 +117641,3,5,292387,1149308 +117642,3,5,31413,1410163 +117643,97,7,77459,1821420 +117644,234,1,15037,13614 +117645,219,11,2924,1552549 +117646,398,9,42045,1397315 +117647,87,7,325133,1546047 +117648,304,10,12273,1705311 +117649,387,10,12089,25182 +117650,52,10,59962,230175 +117651,413,11,11446,52988 +117652,234,1,144421,1120754 +117653,87,7,45244,67544 +117654,234,1,72847,19528 +117655,250,11,257088,1412721 +117656,196,7,145135,1049322 +117657,5,10,200727,1181950 +117658,52,10,35129,47373 +117659,317,10,97593,46000 +117660,97,7,132363,92376 +117661,3,5,385750,17048 +117662,53,2,76640,957799 +117663,3,5,18977,2774 +117664,208,2,12573,1325234 +117665,234,1,205005,1187397 +117666,60,1,117,4701 +117667,269,9,2778,1328150 +117668,158,2,10145,1446690 +117669,413,11,53417,13848 +117670,204,9,345918,1170990 +117671,317,10,356332,230882 +117672,273,7,87936,12241 +117673,317,10,21948,1035 +117674,53,2,10596,65795 +117675,234,1,20287,1723 +117676,60,1,39415,127283 +117677,373,7,46387,1760322 +117678,234,1,60824,35911 +117679,234,1,32166,185995 +117680,413,11,251227,9187 +117681,357,3,118,1327026 +117682,204,9,37628,1056684 +117683,317,10,348631,79149 +117684,3,5,965,7648 +117685,273,7,24442,56928 +117686,413,11,151911,14961 +117687,208,2,79316,1418345 +117688,413,11,42149,3175 +117689,357,3,6171,1426769 +117690,317,10,106537,1040501 +117691,234,1,3048,29881 +117692,413,11,168676,1363345 +117693,160,3,86829,1281538 +117694,387,10,539,7300 +117695,148,9,936,14259 +117696,273,7,220,2027 +117697,105,7,58372,21276 +117698,317,10,43544,128459 +117699,273,7,334538,46266 +117700,317,10,125344,1081148 +117701,286,3,152737,52530 +117702,317,10,57701,226706 +117703,317,10,22792,51216 +117704,179,2,8619,1328139 +117705,317,10,126832,1083253 +117706,234,1,52784,47062 +117707,269,9,428493,1079116 +117708,182,8,10320,91903 +117709,273,7,29224,1092613 +117710,182,8,9846,1534226 +117711,234,1,123961,3663 +117712,317,10,35908,114925 +117713,387,10,12780,1346932 +117714,75,5,10632,118867 +117715,3,5,11536,13809 +117716,317,10,57089,61373 +117717,413,11,130055,1769922 +117718,273,7,10066,9039 +117719,317,10,45692,30295 +117720,244,3,8619,66513 +117721,387,10,33541,153738 +117722,413,11,44545,1653397 +117723,3,5,212063,32235 +117724,387,10,28732,240086 +117725,273,7,42149,1729 +117726,413,11,47792,1313872 +117727,234,1,9042,44179 +117728,204,9,354859,1621155 +117729,46,5,11547,1739974 +117730,413,11,9471,10957 +117731,132,2,241258,1524757 +117732,234,1,315855,97579 +117733,286,3,60125,1100326 +117734,301,5,240832,1412487 +117735,105,7,421958,560227 +117736,291,6,9013,13410 +117737,234,1,244316,2679 +117738,394,7,76203,1393443 +117739,113,9,95516,1411124 +117740,413,11,72251,69950 +117741,105,7,280617,1851699 +117742,97,7,3037,16887 +117743,204,9,10044,62415 +117744,419,10,153102,11777 +117745,3,5,263341,9040 +117746,203,1,284052,1774239 +117747,273,7,38765,21810 +117748,387,10,76609,341815 +117749,162,6,311324,1637330 +117750,29,3,12,1122225 +117751,67,10,9354,1447483 +117752,234,1,89722,583068 +117753,204,9,77930,1763646 +117754,269,9,374614,1063979 +117755,360,9,283995,1004624 +117756,147,1,18,1177814 +117757,75,5,22076,67238 +117758,234,1,72094,81020 +117759,60,1,966,8259 +117760,148,9,332411,1367127 +117761,3,5,12787,42119 +117762,333,2,312221,1404808 +117763,105,7,70586,1770856 +117764,317,10,101904,1029284 +117765,160,3,8869,14385 +117766,378,3,112722,1838187 +117767,234,1,68063,223693 +117768,387,10,26326,1204323 +117769,413,11,16806,1531 +117770,3,5,118497,56135 +117771,387,10,772,11505 +117772,234,1,13061,32535 +117773,57,2,12783,1427499 +117774,175,5,225728,1367562 +117775,413,11,10797,66851 +117776,232,10,81030,46712 +117777,317,10,43978,20026 +117778,416,10,28268,95501 +117779,204,9,8669,60088 +117780,87,7,13798,1565836 +117781,289,6,44896,1459736 +117782,269,9,300090,935298 +117783,60,1,393445,1705456 +117784,234,1,11450,4135 +117785,147,1,392271,1765162 +117786,234,1,26014,54590 +117787,239,5,329440,1622450 +117788,387,10,22020,102950 +117789,234,1,20438,99593 +117790,160,3,9981,14385 +117791,182,8,613,1425858 +117792,269,9,773,17148 +117793,52,10,140887,32179 +117794,53,2,299,13866 +117795,148,9,381518,1423909 +117796,75,5,9514,1642512 +117797,64,6,11024,1447543 +117798,273,7,11058,6041 +117799,204,9,127585,1354916 +117800,234,1,86838,54472 +117801,46,5,17111,1629470 +117802,234,1,74,488 +117803,200,3,634,1403637 +117804,387,10,172385,58144 +117805,97,7,72431,8163 +117806,234,1,9010,56570 +117807,269,9,11547,16492 +117808,226,2,14254,1421693 +117809,175,5,25941,1419222 +117810,273,7,97630,2949 +117811,148,9,10860,11413 +117812,314,2,298,1432032 +117813,413,11,3587,1721 +117814,387,10,40649,3893 +117815,387,10,121598,9147 +117816,234,1,193899,100036 +117817,234,1,10222,64681 +117818,52,10,79500,1184125 +117819,234,1,19827,133259 +117820,75,5,89492,1377132 +117821,74,5,434873,1754130 +117822,164,3,298584,1619730 +117823,317,10,196789,1274016 +117824,387,10,5767,5014 +117825,289,6,52021,1452932 +117826,387,10,33407,1815895 +117827,60,1,11888,1362798 +117828,219,11,8470,1403423 +117829,176,3,1991,1420153 +117830,53,2,4248,35764 +117831,387,10,10201,52934 +117832,3,5,97024,127523 +117833,301,5,339403,1177364 +117834,148,9,44875,1111050 +117835,5,10,4147,35020 +117836,105,7,75204,574146 +117837,269,9,10657,14540 +117838,32,8,18,1881569 +117839,105,7,8247,11098 +117840,158,2,333484,1573013 +117841,52,10,18209,18266 +117842,105,7,59981,150857 +117843,234,1,25353,1051654 +117844,317,10,252171,1289604 +117845,148,9,274990,1639015 +117846,277,3,314065,1466252 +117847,209,7,6171,1342663 +117848,3,5,248469,14678 +117849,328,6,1381,1394751 +117850,20,2,223485,1477627 +117851,269,9,28026,1322481 +117852,3,5,26142,2702 +117853,234,1,19587,29783 +117854,196,7,14254,1417516 +117855,53,2,363439,1262418 +117856,387,10,11950,67767 +117857,53,2,10004,61826 +117858,3,5,18447,29983 +117859,273,7,31027,1011224 +117860,413,11,186881,43913 +117861,39,3,9352,1586343 +117862,243,3,755,1462603 +117863,196,7,9846,1376819 +117864,331,3,31947,1896602 +117865,105,7,10753,66616 +117866,286,3,352372,1262635 +117867,317,10,77283,109587 +117868,234,1,121003,82413 +117869,357,3,245891,1512732 +117870,234,1,44527,229263 +117871,234,1,1950,323 +117872,105,7,374618,1554768 +117873,53,2,81110,7652 +117874,102,3,22582,1447587 +117875,269,9,300,4282 +117876,182,8,315837,1440757 +117877,269,9,356842,1640914 +117878,65,3,14,237920 +117879,64,6,19996,1764177 +117880,203,1,96724,1408530 +117881,53,2,53865,4127 +117882,387,10,5155,41634 +117883,234,1,40041,97355 +117884,169,3,13162,1341340 +117885,75,5,146970,36114 +117886,75,5,9514,1642511 +117887,143,7,13205,1415618 +117888,387,10,84449,1023672 +117889,97,7,24554,9444 +117890,419,10,38602,166244 +117891,3,5,6077,47788 +117892,269,9,42418,21589 +117893,143,7,6947,7537 +117894,166,9,1073,1792644 +117895,273,7,71670,544355 +117896,296,3,10543,1550059 +117897,317,10,24645,92108 +117898,77,10,16358,4910 +117899,108,10,105551,998719 +117900,3,5,13567,1684180 +117901,148,9,334,41082 +117902,273,7,16996,24190 +117903,200,3,6171,1426770 +117904,148,9,11247,1404339 +117905,204,9,101929,1132430 +117906,53,2,294254,2519 +117907,413,11,8617,59930 +117908,346,3,218778,91941 +117909,333,2,16638,30829 +117910,387,10,8366,18072 +117911,387,10,204040,227027 +117912,413,11,47914,71094 +117913,387,10,222858,52140 +117914,413,11,29398,18578 +117915,52,10,414910,1503547 +117916,104,7,858,1463390 +117917,270,9,181533,1400019 +117918,387,10,13805,35694 +117919,53,2,393445,8733 +117920,292,3,116463,1691496 +117921,204,9,70981,1385883 +117922,413,11,73835,67974 +117923,208,2,376501,1792360 +117924,158,2,10096,1446690 +117925,127,3,49524,60536 +117926,234,1,399790,97942 +117927,25,2,293660,15017 +117928,387,10,294254,1257144 +117929,234,1,28238,125067 +117930,148,9,1637,33711 +117931,373,7,6972,1401687 +117932,3,5,318553,1396777 +117933,273,7,14869,37 +117934,148,9,186869,1546768 +117935,286,3,70057,12668 +117936,234,1,125344,130992 +117937,413,11,12759,63198 +117938,373,7,218425,1451564 +117939,75,5,1381,92237 +117940,269,9,196359,90280 +117941,3,5,28712,3637 +117942,234,1,104674,101181 +117943,132,2,343934,1553970 +117944,209,7,71668,1376277 +117945,203,1,378018,1805339 +117946,64,6,129,1452489 +117947,66,11,28071,1176395 +117948,53,2,39938,11491 +117949,317,10,35021,113601 +117950,52,10,53209,120533 +117951,387,10,4806,41697 +117952,204,9,51581,551587 +117953,413,11,259,3585 +117954,175,5,10344,1394973 +117955,317,10,77673,1963 +117956,226,2,297762,1616063 +117957,273,7,189,999284 +117958,327,7,18417,83085 +117959,326,3,6947,1389573 +117960,317,10,81604,1178513 +117961,234,1,88036,225556 +117962,196,7,360249,1448313 +117963,3,5,13496,31027 +117964,234,1,53219,11426 +117965,53,2,140276,8509 +117966,234,1,31265,97573 +117967,3,5,154575,1143 +117968,289,6,149870,1456626 +117969,234,1,37779,118513 +117970,317,10,79329,141673 +117971,317,10,53853,149110 +117972,381,9,125705,1393558 +117973,234,1,43656,3111 +117974,387,10,10645,66110 +117975,160,3,2323,1378248 +117976,269,9,2115,9269 +117977,245,3,4147,1549210 +117978,209,7,2323,1424049 +117979,204,9,435,1325886 +117980,190,7,4248,1667273 +117981,413,11,348631,1511447 +117982,234,1,366630,182892 +117983,273,7,10055,62580 +117984,87,7,122081,52161 +117985,45,9,11450,1535947 +117986,210,9,11045,1685014 +117987,317,10,428398,1745328 +117988,234,1,31385,592883 +117989,15,6,13336,1410597 +117990,387,10,1420,17016 +117991,234,1,63224,130630 +117992,333,2,1942,1203137 +117993,3,5,29111,1156927 +117994,53,2,408024,1106162 +117995,87,7,343173,1642381 +117996,204,9,36129,1853966 +117997,45,9,1251,1377122 +117998,413,11,134209,119294 +117999,234,1,12477,628 +118000,310,3,41441,1307614 +118001,333,2,40139,1654751 +118002,7,3,11377,1553631 +118003,3,5,77165,30658 +118004,234,1,199879,1086408 +118005,3,5,132328,47453 +118006,328,6,100669,1539763 +118007,226,2,8470,15526 +118008,234,1,10724,190 +118009,333,2,302026,1570609 +118010,175,5,70670,1351731 +118011,262,6,9286,1394282 +118012,141,7,297762,1548942 +118013,46,5,9716,1661557 +118014,413,11,17711,5584 +118015,105,7,61203,545640 +118016,209,7,127585,1384393 +118017,52,10,128669,138406 +118018,373,7,24750,1399140 +118019,166,9,9593,1378162 +118020,413,11,204040,940729 +118021,179,2,3172,1323092 +118022,105,7,227306,2949 +118023,234,1,30060,70663 +118024,269,9,297702,1391649 +118025,187,7,31947,1896604 +118026,234,1,44626,37361 +118027,75,5,50725,1409511 +118028,412,9,121598,1880908 +118029,179,2,414977,1676804 +118030,175,5,203819,1355542 +118031,317,10,25919,79434 +118032,234,1,116973,8500 +118033,317,10,38150,87213 +118034,269,9,353979,1327777 +118035,262,6,44115,1394721 +118036,413,11,126127,1345303 +118037,3,5,45679,133439 +118038,148,9,333663,1523022 +118039,132,2,257088,36402 +118040,34,8,10066,1671607 +118041,413,11,351065,1465468 +118042,273,7,94671,1106274 +118043,317,10,220809,1205891 +118044,25,2,263115,75375 +118045,175,5,109391,1204690 +118046,317,10,28134,2283 +118047,46,5,383538,235631 +118048,180,7,108222,958515 +118049,317,10,39907,989768 +118050,239,5,442752,1532552 +118051,317,10,309024,1396430 +118052,394,7,70981,15332 +118053,413,11,384262,1646178 +118054,74,5,6947,1573082 +118055,273,7,8669,23486 +118056,234,1,19846,75510 +118057,413,11,13073,959279 +118058,204,9,30127,1437297 +118059,317,10,58011,32375 +118060,204,9,260947,1304137 +118061,234,1,302528,56205 +118062,53,2,35021,1573537 +118063,132,2,7220,1707113 +118064,394,7,313922,1582569 +118065,317,10,15156,96318 +118066,317,10,375355,65766 +118067,234,1,319986,1430937 +118068,3,5,109001,1337585 +118069,286,3,256836,1300938 +118070,175,5,24238,1418309 +118071,105,7,42309,937693 +118072,317,10,36075,1180037 +118073,387,10,39219,50567 +118074,135,3,2567,1681352 +118075,314,2,159667,1519346 +118076,105,7,274991,1118003 +118077,104,7,59678,1360275 +118078,269,9,29475,548 +118079,234,1,10269,10400 +118080,250,11,325263,1494212 +118081,270,9,32085,1226 +118082,244,3,107073,1309483 +118083,12,10,298,1885 +118084,13,7,378441,1318218 +118085,234,1,61348,81727 +118086,105,7,15616,64281 +118087,52,10,388243,1592195 +118088,369,6,12,1516157 +118089,305,9,10727,1802519 +118090,3,5,56212,1084378 +118091,204,9,36375,8506 +118092,317,10,64084,666935 +118093,234,1,63493,21808 +118094,113,9,2046,1376887 +118095,219,11,3933,1448050 +118096,105,7,63376,237681 +118097,105,7,310431,1031535 +118098,234,1,234284,131564 +118099,155,3,23128,10965 +118100,317,10,323370,1422665 +118101,333,2,16938,1351457 +118102,5,10,70753,1156004 +118103,269,9,311324,11002 +118104,413,11,11134,46326 +118105,269,9,16182,13469 +118106,75,5,348631,1441364 +118107,317,10,325173,78217 +118108,97,7,8276,1419155 +118109,387,10,285532,99440 +118110,394,7,817,9427 +118111,234,1,339327,1083925 +118112,387,10,86363,18579 +118113,3,5,13477,1527 +118114,190,7,61341,1338238 +118115,269,9,22744,127576 +118116,387,10,35129,47373 +118117,317,10,256930,85337 +118118,381,9,15092,1387216 +118119,269,9,17962,20703 +118120,317,10,199851,935102 +118121,317,10,19757,144139 +118122,234,1,201676,1363226 +118123,234,1,173300,1156073 +118124,3,5,28304,30258 +118125,349,1,10948,1700851 +118126,53,2,38404,120329 +118127,394,7,189,1401133 +118128,387,10,66187,32096 +118129,234,1,51800,1045855 +118130,317,10,337073,1190105 +118131,387,10,2778,28171 +118132,317,10,46920,59911 +118133,373,7,47942,1052 +118134,208,2,8617,1810646 +118135,234,1,31280,1163928 +118136,176,3,9358,1441285 +118137,182,8,308269,1447888 +118138,122,8,339403,1512025 +118139,262,6,2486,25458 +118140,12,10,4248,35690 +118141,317,10,39194,1092207 +118142,273,7,13336,56410 +118143,113,9,205584,1518775 +118144,148,9,10929,1441341 +118145,234,1,87992,1261548 +118146,60,1,51141,252340 +118147,204,9,118098,10754 +118148,270,9,9042,1334515 +118149,273,7,390296,1700431 +118150,317,10,318781,1450265 +118151,398,9,2924,1094395 +118152,373,7,263115,1340345 +118153,5,10,13495,8908 +118154,5,10,8844,42356 +118155,269,9,379,4248 +118156,387,10,7088,51933 +118157,317,10,42062,127518 +118158,413,11,29056,102721 +118159,317,10,378018,1037999 +118160,387,10,40060,90821 +118161,273,7,15916,1157114 +118162,333,2,43441,4313 +118163,234,1,53211,100888 +118164,66,11,10665,1896005 +118165,317,10,181454,215726 +118166,289,6,12593,1458342 +118167,3,5,117531,30192 +118168,198,6,296524,1551902 +118169,3,5,59861,1301 +118170,61,7,693,1553026 +118171,53,2,34106,1012329 +118172,20,2,1125,963705 +118173,317,10,16899,27889 +118174,234,1,49334,74697 +118175,198,6,2300,1445879 +118176,204,9,10109,63580 +118177,187,11,10929,1401631 +118178,234,1,322922,81297 +118179,175,5,264525,76869 +118180,234,1,124414,135449 +118181,3,5,452372,1573203 +118182,148,9,126127,11036 +118183,87,7,196359,1547653 +118184,269,9,9812,22120 +118185,234,1,157829,1167896 +118186,360,3,15613,1442503 +118187,187,11,392818,1746066 +118188,3,5,82679,783230 +118189,361,3,107073,1481488 +118190,387,10,408509,1174349 +118191,203,1,7551,1394313 +118192,387,10,8282,21678 +118193,387,10,193,2386 +118194,65,3,3580,1517894 +118195,317,10,118121,217617 +118196,3,5,10390,1527 +118197,203,1,1662,1508092 +118198,317,10,280477,228086 +118199,254,10,329865,1646469 +118200,234,1,14669,77134 +118201,269,9,11688,70240 +118202,286,3,46187,23925 +118203,387,10,31418,1204711 +118204,198,6,10929,1575773 +118205,105,7,299165,1377945 +118206,387,10,10917,69046 +118207,273,7,7326,52454 +118208,317,10,43544,69973 +118209,160,3,6171,229167 +118210,387,10,257907,117682 +118211,234,1,124633,1009298 +118212,198,6,10529,1567326 +118213,234,1,71771,561927 +118214,182,8,262522,63785 +118215,387,10,256969,1053651 +118216,221,3,14,1753770 +118217,203,1,213681,1409857 +118218,413,11,59981,40347 +118219,413,11,9968,53645 +118220,122,8,2105,1724863 +118221,269,9,194,13839 +118222,317,10,106131,66496 +118223,234,1,69471,65315 +118224,5,10,18352,1537578 +118225,387,10,5516,21008 +118226,75,5,118957,1391731 +118227,234,1,131836,612897 +118228,3,5,310888,1476760 +118229,3,5,330381,1440042 +118230,317,10,115929,1111686 +118231,190,7,448847,1641557 +118232,387,10,43692,141752 +118233,234,1,2742,224 +118234,317,10,65509,104025 +118235,234,1,316654,85670 +118236,273,7,49717,222479 +118237,204,9,126418,1348060 +118238,387,10,239566,73838 +118239,413,11,216521,1201133 +118240,75,5,44943,1403411 +118241,148,9,936,14257 +118242,273,7,133941,557350 +118243,87,7,334,91147 +118244,234,1,199155,19708 +118245,234,1,36773,1128 +118246,273,7,71041,29727 +118247,317,10,17895,82949 +118248,53,2,11017,60284 +118249,3,5,38807,33413 +118250,413,11,4344,40467 +118251,234,1,256836,1300938 +118252,5,10,53879,1170228 +118253,413,11,52047,1115037 +118254,413,11,121598,3080 +118255,3,5,20758,96252 +118256,373,7,137145,1456041 +118257,317,10,376501,1283814 +118258,269,9,47046,1601521 +118259,317,10,293380,200496 +118260,250,11,46261,1425393 +118261,176,3,2503,1400489 +118262,387,10,338438,21230 +118263,387,10,798,11921 +118264,413,11,9882,2484 +118265,387,10,48677,64796 +118266,234,1,17332,36588 +118267,60,1,437253,1744990 +118268,340,2,227306,1866356 +118269,196,7,13954,80821 +118270,360,3,145135,1273860 +118271,234,1,287811,1001719 +118272,317,10,62688,143630 +118273,398,9,1271,1384358 +118274,387,10,184328,133433 +118275,158,2,345922,1477793 +118276,328,6,127585,1384368 +118277,143,7,180299,1352424 +118278,52,10,290864,130560 +118279,198,6,227306,1866324 +118280,413,11,61908,33369 +118281,5,10,67102,8453 +118282,301,5,15472,928006 +118283,317,10,359204,1064994 +118284,105,7,240745,1306644 +118285,269,9,16005,20292 +118286,234,1,450875,110265 +118287,317,10,69428,292250 +118288,155,3,703,19789 +118289,282,3,8619,1858343 +118290,234,1,23637,26265 +118291,60,1,28261,1529435 +118292,160,3,269258,1816046 +118293,176,3,10921,1402108 +118294,53,2,2565,557 +118295,234,1,354296,1496449 +118296,3,5,9899,1214 +118297,373,7,332662,1570532 +118298,105,7,283995,15221 +118299,204,9,55846,39668 +118300,234,1,49850,88467 +118301,387,10,810,12100 +118302,317,10,201085,10828 +118303,317,10,174278,1157083 +118304,53,2,1819,19285 +118305,187,11,1991,1352966 +118306,234,1,18731,548474 +118307,127,3,297762,1824251 +118308,5,10,43438,996618 +118309,204,9,3556,12017 +118310,53,2,157,1801 +118311,180,7,62755,1547107 +118312,373,7,44943,113073 +118313,148,9,274857,15733 +118314,387,10,448763,1395396 +118315,415,3,77949,1402093 +118316,234,1,64204,238716 +118317,317,10,13807,93992 +118318,387,10,11813,70563 +118319,317,10,62616,1210747 +118320,273,7,43143,101984 +118321,234,1,96987,45405 +118322,52,10,37725,80422 +118323,317,10,131799,81409 +118324,413,11,15761,122496 +118325,203,1,15092,1414561 +118326,234,1,153141,83224 +118327,64,6,98277,1849141 +118328,204,9,109417,983595 +118329,203,1,10632,1422074 +118330,3,5,47238,54259 +118331,317,10,113119,228542 +118332,3,5,283995,23422 +118333,234,1,21734,2636 +118334,413,11,7305,15841 +118335,72,11,345922,1809365 +118336,273,7,4986,10771 +118337,52,10,9264,57065 +118338,12,10,165,1058 +118339,105,7,28484,17667 +118340,52,10,80720,76381 +118341,3,5,128900,1158263 +118342,182,8,25941,75117 +118343,317,10,12221,73758 +118344,52,10,39979,98482 +118345,87,7,156711,45056 +118346,287,3,27814,99033 +118347,75,5,333371,1423702 +118348,269,9,369524,9178 +118349,303,3,10178,927620 +118350,190,7,9716,1561297 +118351,143,7,324440,1157937 +118352,45,9,324670,1726024 +118353,317,10,40081,99436 +118354,286,3,26693,1178997 +118355,148,9,15,7338 +118356,3,5,94803,70 +118357,234,1,50725,71280 +118358,234,1,241982,206993 +118359,75,5,257088,1375182 +118360,269,9,61341,1160652 +118361,127,3,82485,1332245 +118362,12,10,1498,19503 +118363,398,9,18826,83658 +118364,317,10,18512,80728 +118365,413,11,245692,937652 +118366,148,9,68684,1076360 +118367,225,7,356500,1756306 +118368,66,11,284053,1700118 +118369,196,7,11377,1338152 +118370,387,10,274483,1141077 +118371,20,2,1294,1585879 +118372,75,5,343934,1553966 +118373,204,9,39938,11036 +118374,204,9,20986,109193 +118375,234,1,137312,123515 +118376,317,10,31264,31775 +118377,327,7,2978,1197267 +118378,413,11,39833,11443 +118379,234,1,29835,74878 +118380,317,10,145191,1051753 +118381,234,1,84352,101528 +118382,98,3,435,1574666 +118383,234,1,284135,150975 +118384,317,10,36695,32564 +118385,301,5,4413,1401264 +118386,317,10,84348,1039530 +118387,79,7,10020,15813 +118388,317,10,41496,126707 +118389,143,7,15092,1413453 +118390,387,10,29318,130946 +118391,317,10,315439,1191477 +118392,244,3,1966,1733751 +118393,196,7,2503,1406390 +118394,3,5,175035,16750 +118395,273,7,844,12455 +118396,13,5,41213,1777226 +118397,317,10,53739,34017 +118398,234,1,44338,550478 +118399,234,1,12650,1294805 +118400,413,11,299,4359 +118401,262,6,228970,1419725 +118402,269,9,40060,41152 +118403,3,5,227973,406615 +118404,413,11,408381,1657576 +118405,182,8,9529,51387 +118406,52,10,36540,57332 +118407,401,6,3933,1451229 +118408,87,7,3682,232158 +118409,413,11,552,7561 +118410,287,3,74777,583470 +118411,387,10,9389,58255 +118412,286,3,8897,24822 +118413,203,1,10590,1478953 +118414,148,9,634,75580 +118415,3,5,11134,65963 +118416,148,9,53798,7338 +118417,87,7,102632,233072 +118418,113,9,6972,1401668 +118419,3,5,43761,989049 +118420,234,1,18820,56710 +118421,234,1,29168,19707 +118422,52,10,45577,133239 +118423,407,6,18,1551985 +118424,3,5,25468,991684 +118425,148,9,240832,1367800 +118426,234,1,46797,58080 +118427,387,10,259183,119322 +118428,204,9,53949,41141 +118429,333,2,26656,1454505 +118430,204,9,53714,24330 +118431,413,11,109379,1597021 +118432,15,6,8844,8023 +118433,3,5,146970,103112 +118434,104,7,9568,1027033 +118435,143,7,13393,1603664 +118436,273,7,38282,20075 +118437,327,7,130948,1298939 +118438,273,7,266082,68820 +118439,3,5,95015,14284 +118440,234,1,19946,21227 +118441,196,7,11953,1880082 +118442,234,1,116723,1064952 +118443,387,10,26502,18579 +118444,226,2,140607,1550636 +118445,154,3,28,81538 +118446,387,10,11307,69002 +118447,148,9,14522,14009 +118448,360,9,10804,1428473 +118449,234,1,29054,102688 +118450,203,1,59115,1567766 +118451,208,2,122857,1324118 +118452,317,10,14642,106023 +118453,105,7,9470,57621 +118454,105,7,17464,58703 +118455,34,8,9286,1441369 +118456,413,11,51104,29503 +118457,203,1,33613,1455311 +118458,413,11,156981,1575333 +118459,3,5,44256,70935 +118460,234,1,32068,2226 +118461,164,3,1966,1525898 +118462,37,3,15653,1767055 +118463,301,5,76170,1527925 +118464,387,10,96252,159506 +118465,203,1,34231,1460044 +118466,269,9,336004,1039117 +118467,286,3,67025,39259 +118468,413,11,37686,15350 +118469,250,11,346672,1638160 +118470,209,7,36094,66142 +118471,387,10,200447,87374 +118472,269,9,19157,589938 +118473,250,11,418437,1407372 +118474,148,9,43266,8508 +118475,72,11,755,1767016 +118476,180,7,47404,27969 +118477,143,7,210910,1399103 +118478,52,10,4613,1506034 +118479,419,10,396392,1178551 +118480,234,1,29290,1323492 +118481,3,5,14476,1179731 +118482,234,1,49943,71871 +118483,317,10,33340,110513 +118484,13,9,378441,1797503 +118485,203,1,19996,1735924 +118486,203,1,256347,1408365 +118487,204,9,54093,1371916 +118488,234,1,18417,1201 +118489,413,11,693,10394 +118490,189,3,98066,1403508 +118491,13,1,378441,1797417 +118492,387,10,123359,105574 +118493,234,1,61966,543875 +118494,228,2,395992,1739260 +118495,53,2,8211,26932 +118496,387,10,6081,1927 +118497,317,10,58060,128219 +118498,3,5,128866,1665457 +118499,166,9,23823,1541739 +118500,200,3,206647,1551906 +118501,317,10,82,638 +118502,97,7,189,1371064 +118503,234,1,302828,1385213 +118504,413,11,27042,1168870 +118505,234,1,38202,41349 +118506,287,3,353686,1418266 +118507,269,9,30875,44958 +118508,387,10,215743,1188 +118509,52,10,94809,56722 +118510,317,10,66340,93193 +118511,387,10,48287,942560 +118512,169,3,145135,1417875 +118513,387,10,744,11081 +118514,226,2,2669,26873 +118515,204,9,9451,37023 +118516,40,1,31947,5015 +118517,387,10,24453,32767 +118518,413,11,72207,46942 +118519,3,5,5748,4590 +118520,317,10,25977,102774 +118521,52,10,102382,168309 +118522,269,9,52744,23966 +118523,5,10,31372,108013 +118524,245,3,4147,1549211 +118525,175,5,28739,1473726 +118526,53,2,149465,1900648 +118527,269,9,834,3964 +118528,234,1,73690,13620 +118529,368,7,2924,136080 +118530,3,5,76996,413105 +118531,165,9,8619,1619018 +118532,127,3,508,7052 +118533,3,5,4375,2307 +118534,234,1,96716,126537 +118535,67,10,8247,1553269 +118536,317,10,18514,145359 +118537,204,9,31473,1728685 +118538,204,9,11812,54160 +118539,83,2,7220,1319384 +118540,301,5,293167,1408357 +118541,148,9,21629,14846 +118542,234,1,42794,107463 +118543,387,10,8970,18323 +118544,45,9,13616,1394116 +118545,413,11,266856,1001393 +118546,317,10,239103,57752 +118547,413,11,34181,1017698 +118548,387,10,5608,45621 +118549,257,3,76600,1722384 +118550,3,5,22968,96252 +118551,3,5,12453,72280 +118552,413,11,445,6028 +118553,105,7,10643,66157 +118554,180,7,10973,1532478 +118555,286,3,266782,1313927 +118556,269,9,80304,15328 +118557,387,10,110447,1089538 +118558,234,1,14317,78485 +118559,219,11,4982,1552549 +118560,333,2,109424,40104 +118561,234,1,9977,61335 +118562,52,10,171446,1422735 +118563,141,7,69668,68016 +118564,234,1,169760,1151864 +118565,148,9,167073,1440477 +118566,5,10,36519,6595 +118567,273,7,9795,59472 +118568,387,10,327225,1431533 +118569,413,11,242,2988 +118570,333,2,1991,1420147 +118571,37,3,87827,1460634 +118572,387,10,9102,5045 +118573,327,7,47112,1409764 +118574,269,9,8617,11877 +118575,301,5,204922,34194 +118576,234,1,15560,950513 +118577,87,7,110972,86199 +118578,147,1,857,25457 +118579,234,1,121929,1088208 +118580,127,3,259695,1813644 +118581,413,11,73723,1531911 +118582,387,10,10775,66718 +118583,148,9,17464,22010 +118584,317,10,427095,127920 +118585,204,9,2974,29245 +118586,234,1,29698,83287 +118587,234,1,19166,88039 +118588,234,1,105077,587 +118589,301,5,8276,1371220 +118590,317,10,37315,11626 +118591,12,10,2907,69660 +118592,387,10,96935,72062 +118593,286,3,76202,20791 +118594,273,7,9648,59441 +118595,234,1,10299,18392 +118596,87,7,346672,1363083 +118597,52,10,53767,1042632 +118598,269,9,54155,36860 +118599,203,1,384682,1725748 +118600,317,10,14387,14293 +118601,387,10,26326,1204324 +118602,3,5,125490,66228 +118603,394,7,71668,957840 +118604,387,10,9528,4391 +118605,53,2,296225,1567812 +118606,60,1,122019,1511310 +118607,373,7,122081,1404716 +118608,234,1,24405,2778 +118609,317,10,32872,1222194 +118610,387,10,10585,65678 +118611,387,10,12089,38507 +118612,401,6,12,1260745 +118613,413,11,38808,12345 +118614,273,7,1539,17370 +118615,234,1,229594,150748 +118616,234,1,13788,3893 +118617,239,5,383538,1783004 +118618,387,10,73872,20587 +118619,273,7,18238,51064 +118620,148,9,50506,77204 +118621,317,10,22881,54040 +118622,64,6,188826,102231 +118623,203,1,4806,1480099 +118624,105,7,254007,1448759 +118625,373,7,152736,1084757 +118626,286,3,29083,92203 +118627,3,5,2982,22085 +118628,234,1,11880,57581 +118629,387,10,186268,120191 +118630,196,7,132601,1153906 +118631,75,5,55343,1630534 +118632,286,3,127864,16437 +118633,317,10,203351,1155331 +118634,273,7,10467,3562 +118635,3,5,181533,3113 +118636,53,2,238,81533 +118637,3,5,3701,33859 +118638,60,1,30637,1607279 +118639,387,10,16410,12238 +118640,3,5,8292,17629 +118641,53,2,375742,1095645 +118642,398,9,965,8507 +118643,180,7,51406,1586013 +118644,333,2,17209,1544378 +118645,289,6,214756,1465139 +118646,387,10,60547,120465 +118647,317,10,28940,101377 +118648,226,2,132363,1400847 +118649,257,3,116463,1691503 +118650,141,7,14554,1761 +118651,273,7,90001,1495651 +118652,387,10,62213,565491 +118653,387,10,336691,454177 +118654,387,10,95037,1127491 +118655,387,10,101783,1030393 +118656,45,9,13162,1532322 +118657,190,7,403605,1771812 +118658,236,8,8870,1635038 +118659,52,10,8869,56150 +118660,234,1,84348,98631 +118661,75,5,216580,1237937 +118662,387,10,99767,34741 +118663,234,1,59744,84978 +118664,387,10,26593,4298 +118665,234,1,72074,125101 +118666,413,11,2516,25633 +118667,200,3,189,1401143 +118668,58,2,332168,1765672 +118669,97,7,338,1425853 +118670,83,2,6947,142152 +118671,273,7,84209,12417 +118672,273,7,89551,1415873 +118673,333,2,47921,13989 +118674,234,1,47110,935643 +118675,143,7,10748,472 +118676,413,11,54102,18077 +118677,234,1,413644,1806868 +118678,234,1,15457,43993 +118679,269,9,41283,8221 +118680,234,1,199647,1179823 +118681,238,7,264525,1372633 +118682,204,9,227348,17852 +118683,160,3,193893,1333222 +118684,234,1,30363,2303 +118685,204,9,114577,1059050 +118686,234,1,274991,1457084 +118687,273,7,130957,22877 +118688,53,2,8842,15524 +118689,113,9,1966,1398083 +118690,204,9,72823,1176363 +118691,85,10,34840,1597758 +118692,317,10,270470,1201900 +118693,317,10,301876,106482 +118694,234,1,63938,141978 +118695,327,7,10204,91882 +118696,387,10,6068,31646 +118697,273,7,53882,21467 +118698,287,3,353979,1769036 +118699,234,1,83788,40235 +118700,317,10,68637,225142 +118701,413,11,39779,1552 +118702,175,5,52661,1745153 +118703,105,7,26036,18593 +118704,317,10,371818,1592939 +118705,204,9,44502,1646878 +118706,143,7,381518,40810 +118707,373,7,9563,548432 +118708,75,5,63958,238307 +118709,317,10,157117,94816 +118710,262,6,85446,1336716 +118711,234,1,58587,945167 +118712,234,1,13380,148119 +118713,105,7,15013,9152 +118714,340,2,178809,1857684 +118715,179,2,209263,1531499 +118716,3,5,11475,16769 +118717,196,7,205584,1585729 +118718,53,2,16784,22819 +118719,3,5,12450,72261 +118720,3,5,169794,7034 +118721,360,3,8329,1324227 +118722,35,10,127585,934847 +118723,53,2,407,5596 +118724,234,1,137746,1035398 +118725,269,9,333385,966594 +118726,234,1,36691,16304 +118727,317,10,42678,14971 +118728,317,10,322785,14639 +118729,105,7,22314,19155 +118730,75,5,7916,1438621 +118731,204,9,1715,18784 +118732,188,8,398633,1623940 +118733,105,7,326255,1647878 +118734,75,5,10724,356 +118735,97,7,95516,1411129 +118736,53,2,27114,11491 +118737,317,10,30126,47399 +118738,387,10,8355,5716 +118739,387,10,16234,931819 +118740,269,9,43195,98508 +118741,83,2,236324,1896177 +118742,273,7,29338,103519 +118743,52,10,23544,1697684 +118744,317,10,76333,118303 +118745,97,7,257088,1367493 +118746,148,9,1942,1475773 +118747,53,2,105860,1324753 +118748,53,2,983,4350 +118749,209,7,11618,15225 +118750,317,10,19209,96704 +118751,203,1,293863,1397693 +118752,333,2,19765,1360875 +118753,182,8,13849,1413945 +118754,333,2,345922,1685632 +118755,203,1,44363,1451417 +118756,148,9,287,4060 +118757,158,2,15092,1414557 +118758,53,2,85414,1203910 +118759,387,10,26283,2089 +118760,53,2,284052,13009 +118761,387,10,12716,37761 +118762,158,2,10590,1565950 +118763,175,5,9893,161159 +118764,108,10,130917,157395 +118765,317,10,142984,106019 +118766,203,1,258251,1348598 +118767,20,2,332662,1570522 +118768,373,7,18417,56765 +118769,160,3,31947,14049 +118770,208,2,242310,1367124 +118771,373,7,169,1807201 +118772,234,1,212934,51932 +118773,350,6,369885,1790945 +118774,234,1,398390,1622990 +118775,76,2,15414,1409729 +118776,317,10,277847,206161 +118777,387,10,78571,3289 +118778,179,2,3057,1539798 +118779,198,6,294254,1569333 +118780,269,9,413998,50952 +118781,204,9,363413,1158937 +118782,317,10,331641,1442569 +118783,127,3,293660,1547887 +118784,387,10,52440,14857 +118785,5,10,91571,19267 +118786,148,9,3055,9587 +118787,5,10,1361,129 +118788,296,3,9946,1767307 +118789,413,11,314065,27903 +118790,74,5,11370,1581123 +118791,179,2,289712,1547773 +118792,317,10,262542,1461114 +118793,269,9,9771,958921 +118794,226,2,250066,1423203 +118795,155,3,14301,101518 +118796,269,9,246422,1177501 +118797,269,9,40028,1426049 +118798,234,1,57627,936081 +118799,226,2,69668,1425971 +118800,232,10,159727,1141549 +118801,3,5,36615,419284 +118802,204,9,360784,1378684 +118803,158,2,167,1549171 +118804,412,9,4147,1558196 +118805,204,9,42206,2725 +118806,3,5,3682,33651 +118807,234,1,26679,95998 +118808,198,6,328429,1636713 +118809,273,7,124517,1080201 +118810,234,1,89287,144792 +118811,213,10,49559,73153 +118812,234,1,30305,146512 +118813,387,10,86608,50568 +118814,11,6,39102,122513 +118815,234,1,159824,185438 +118816,97,7,41283,548439 +118817,273,7,326359,23486 +118818,317,10,19116,1538389 +118819,132,2,258480,1406572 +118820,105,7,241239,1059009 +118821,75,5,10235,1593017 +118822,273,7,246127,2949 +118823,387,10,1640,455 +118824,317,10,42521,126125 +118825,234,1,26758,96159 +118826,317,10,19898,254681 +118827,3,5,11104,65994 +118828,413,11,246415,1439383 +118829,317,10,41478,135650 +118830,387,10,8899,56209 +118831,317,10,207270,93061 +118832,175,5,635,1400001 +118833,226,2,168259,1452643 +118834,234,1,156603,30833 +118835,182,8,34231,1460043 +118836,273,7,54155,1042444 +118837,269,9,345925,60430 +118838,3,5,17978,6452 +118839,333,2,336882,1635807 +118840,213,10,376934,1561593 +118841,234,1,17007,30477 +118842,333,2,11232,1524763 +118843,333,2,3574,4128 +118844,287,3,156981,88559 +118845,273,7,75595,1026085 +118846,148,9,42787,29280 +118847,52,10,122857,62941 +118848,175,5,230179,1403926 +118849,317,10,54111,150150 +118850,3,5,4550,10107 +118851,234,1,15745,15277 +118852,234,1,51786,97180 +118853,87,7,239566,75002 +118854,67,10,17566,234363 +118855,317,10,238398,120591 +118856,387,10,814,4610 +118857,72,11,167073,1578011 +118858,413,11,52203,32571 +118859,306,7,8292,1562476 +118860,413,11,39436,65837 +118861,269,9,51209,6494 +118862,3,5,64805,20844 +118863,314,2,9425,14714 +118864,385,6,1073,1395258 +118865,208,2,310888,1732092 +118866,207,3,118957,1402907 +118867,387,10,31276,234753 +118868,60,1,10165,1497448 +118869,53,2,10860,8222 +118870,160,3,15472,557759 +118871,203,1,132363,1402724 +118872,52,10,82350,45982 +118873,306,7,379019,1780155 +118874,203,1,52454,1350808 +118875,317,10,409082,137002 +118876,53,2,16876,60597 +118877,270,9,8870,1458540 +118878,387,10,11142,50680 +118879,234,1,360284,1038019 +118880,398,9,2309,23769 +118881,209,7,62728,1099948 +118882,234,1,11591,1895 +118883,387,10,105860,50818 +118884,413,11,356758,1029414 +118885,180,7,294651,1369117 +118886,413,11,753,11147 +118887,53,2,11236,11714 +118888,413,11,43656,57740 +118889,190,7,337339,1856178 +118890,269,9,71859,5389 +118891,105,7,268174,1316672 +118892,398,9,9358,1441288 +118893,268,7,10632,1551523 +118894,234,1,74510,559968 +118895,5,10,3092,31522 +118896,203,1,86829,587969 +118897,333,2,25655,1103524 +118898,357,3,9457,1421725 +118899,234,1,138450,1108871 +118900,413,11,130593,1155165 +118901,373,7,59965,1395024 +118902,328,6,181533,1869363 +118903,387,10,190876,1024246 +118904,148,9,38766,1344112 +118905,356,2,10665,1397382 +118906,273,7,1896,19818 +118907,317,10,212481,1089880 +118908,304,10,125835,116923 +118909,105,7,70586,989610 +118910,179,2,71668,1775582 +118911,234,1,199602,1087022 +118912,273,7,2125,21068 +118913,234,1,153781,146433 +118914,394,7,333371,1115738 +118915,306,7,11017,1552201 +118916,413,11,12811,16335 +118917,166,9,27265,1341851 +118918,273,7,112558,2027 +118919,387,10,293271,1364789 +118920,148,9,147773,970192 +118921,273,7,120747,3249 +118922,234,1,354128,1068848 +118923,53,2,258251,1348587 +118924,285,5,3172,1553252 +118925,234,1,114779,135795 +118926,387,10,24973,116326 +118927,273,7,156988,29501 +118928,419,10,29233,65705 +118929,373,7,223485,1392611 +118930,387,10,264454,1309617 +118931,234,1,64683,1184450 +118932,269,9,335970,1340088 +118933,413,11,13480,1126368 +118934,3,5,61765,1964 +118935,413,11,103875,23399 +118936,53,2,73835,1606292 +118937,333,2,169298,1407252 +118938,40,1,9352,1586385 +118939,53,2,8204,498 +118940,387,10,47942,6779 +118941,234,1,268380,1317165 +118942,53,2,39428,989050 +118943,3,5,2084,16425 +118944,317,10,17895,432083 +118945,204,9,9358,23812 +118946,3,5,215928,3049 +118947,15,6,168259,1506377 +118948,143,7,10796,3687 +118949,286,3,17908,51783 +118950,273,7,11584,69980 +118951,413,11,12513,72587 +118952,381,9,251227,1286568 +118953,387,10,43855,2666 +118954,257,3,2567,1705131 +118955,273,7,135718,545639 +118956,413,11,1539,56993 +118957,317,10,60106,28791 +118958,3,5,445993,1050600 +118959,413,11,9066,11372 +118960,204,9,10020,1498603 +118961,387,10,14615,94298 +118962,234,1,143092,82800 +118963,333,2,74777,583468 +118964,236,8,47386,138792 +118965,317,10,270672,1400680 +118966,273,7,171075,39055 +118967,317,10,325428,1810671 +118968,234,1,32891,55119 +118969,234,1,10204,57370 +118970,273,7,14467,5288 +118971,203,1,19255,1342669 +118972,413,11,271826,38522 +118973,317,10,91334,939440 +118974,23,9,48231,1643411 +118975,415,3,9472,1567973 +118976,413,11,101998,17387 +118977,234,1,84420,1039414 +118978,46,5,9716,1546904 +118979,198,6,4547,1415626 +118980,53,2,271185,42909 +118981,75,5,279690,1376294 +118982,387,10,421958,674 +118983,53,2,131343,1161455 +118984,239,5,399790,1830192 +118985,269,9,5421,1505032 +118986,311,9,4147,1414497 +118987,317,10,18392,551519 +118988,60,1,22584,1461989 +118989,415,3,24554,91769 +118990,287,3,10727,1418266 +118991,413,11,108869,30259 +118992,143,7,365222,1572965 +118993,209,7,1586,142165 +118994,180,7,46982,1334715 +118995,273,7,67696,933958 +118996,187,11,19901,1391719 +118997,143,7,9296,1341403 +118998,317,10,339526,570268 +118999,105,7,703,29352 +119000,273,7,41298,31218 +119001,234,1,66949,34614 +119002,328,6,329865,1621770 +119003,160,3,1375,16659 +119004,72,11,297762,256928 +119005,234,1,14705,87550 +119006,328,6,7551,1395261 +119007,53,2,60965,232063 +119008,209,7,110972,1408706 +119009,3,5,344120,1178907 +119010,203,1,60281,1400835 +119011,112,3,112722,1536334 +119012,37,3,76757,1447542 +119013,387,10,11374,69145 +119014,413,11,4547,17455 +119015,413,11,15935,78967 +119016,317,10,5206,42 +119017,317,10,44690,197909 +119018,5,10,10390,65234 +119019,3,5,260094,67169 +119020,148,9,270899,1769927 +119021,289,6,36736,1464458 +119022,317,10,363483,1048614 +119023,317,10,198652,149983 +119024,3,5,10610,26731 +119025,220,7,398786,1429047 +119026,387,10,37238,165767 +119027,105,7,15689,128964 +119028,75,5,296523,1084753 +119029,234,1,3037,2332 +119030,317,10,114284,11614 +119031,3,5,44398,6603 +119032,105,7,51250,1305961 +119033,148,9,123961,4311 +119034,387,10,3595,2989 +119035,234,1,95140,64508 +119036,413,11,47851,13703 +119037,3,5,19157,1665714 +119038,226,2,8204,1708304 +119039,225,7,10204,1540858 +119040,204,9,29829,1296570 +119041,234,1,92988,564789 +119042,127,3,279096,1386323 +119043,317,10,173874,1156680 +119044,289,6,13640,1460488 +119045,413,11,5552,44076 +119046,75,5,293982,1583085 +119047,234,1,85525,150975 +119048,303,3,188927,1364399 +119049,234,1,398633,65133 +119050,226,2,16214,1162118 +119051,287,3,141733,1625333 +119052,141,7,34127,30267 +119053,96,2,7220,1762649 +119054,168,3,12103,91042 +119055,72,11,359245,1638336 +119056,226,2,64807,1490939 +119057,52,10,70500,152000 +119058,180,7,42430,1456685 +119059,391,9,395992,1771008 +119060,127,3,2503,206398 +119061,387,10,3574,32992 +119062,204,9,38978,957624 +119063,317,10,399798,1231673 +119064,234,1,54111,939128 +119065,296,3,206647,1551770 +119066,3,5,10050,33678 +119067,291,6,219466,7050 +119068,273,7,6591,1259 +119069,158,2,2454,1554885 +119070,3,5,118943,8819 +119071,317,10,144111,1004953 +119072,387,10,10395,17880 +119073,382,9,4147,1417869 +119074,187,11,52661,1640691 +119075,148,9,376501,1199556 +119076,317,10,152113,1132460 +119077,53,2,264644,90693 +119078,203,1,44945,1481828 +119079,314,2,14,83066 +119080,357,3,395883,1636730 +119081,148,9,283384,62242 +119082,273,7,47851,592628 +119083,413,11,193,2033 +119084,105,7,12446,966278 +119085,143,7,388243,193178 +119086,306,7,80276,1704830 +119087,77,10,81220,89585 +119088,234,1,109886,14855 +119089,303,3,333371,1127474 +119090,387,10,9602,57328 +119091,204,9,34231,1460030 +119092,99,3,13834,75870 +119093,60,1,42501,1612833 +119094,277,3,9529,1404901 +119095,234,1,62034,32375 +119096,105,7,39039,121860 +119097,413,11,25653,231501 +119098,301,5,1950,1395281 +119099,169,3,9358,1378701 +119100,244,3,163,1721989 +119101,187,11,375366,1410127 +119102,317,10,129798,1206425 +119103,303,3,168259,13670 +119104,373,7,20919,1423413 +119105,219,11,106049,1121785 +119106,234,1,58416,16767 +119107,52,10,284288,1561317 +119108,148,9,63273,1005954 +119109,317,10,31890,26190 +119110,75,5,10391,1401296 +119111,413,11,22398,4868 +119112,105,7,5393,43103 +119113,413,11,384160,1293990 +119114,158,2,14019,76260 +119115,317,10,102384,1052330 +119116,204,9,120,1316 +119117,394,7,197,16736 +119118,234,1,23730,90525 +119119,155,3,5915,514 +119120,188,8,2503,1171004 +119121,53,2,2640,21617 +119122,399,9,74961,573308 +119123,72,11,11521,1347930 +119124,387,10,120837,86404 +119125,269,9,290714,1503520 +119126,52,10,184741,1167719 +119127,3,5,16442,8714 +119128,12,10,10198,1615564 +119129,75,5,9297,1462702 +119130,273,7,405473,590922 +119131,333,2,208091,1193913 +119132,45,9,10201,1391749 +119133,234,1,58013,225160 +119134,325,5,1125,1551518 +119135,148,9,336029,1678409 +119136,77,10,435,6046 +119137,317,10,169298,1098482 +119138,234,1,196508,41616 +119139,209,7,315837,1352981 +119140,291,6,623,8943 +119141,256,3,11024,1673541 +119142,413,11,27035,8621 +119143,413,11,32610,14679 +119144,204,9,67822,1015791 +119145,398,9,127372,1394060 +119146,234,1,64928,84641 +119147,269,9,285135,61250 +119148,387,10,24420,3431 +119149,413,11,13852,75905 +119150,387,10,382589,19866 +119151,209,7,264646,14749 +119152,5,10,37992,7748 +119153,387,10,12606,13615 +119154,3,5,15,8504 +119155,269,9,277713,17255 +119156,262,6,294272,1439092 +119157,234,1,48144,146295 +119158,273,7,476,5581 +119159,105,7,127864,1106128 +119160,317,10,261871,83547 +119161,234,1,17796,568711 +119162,289,6,18937,1453612 +119163,234,1,66175,29627 +119164,413,11,287903,20568 +119165,234,1,55433,222349 +119166,53,2,1480,14493 +119167,262,6,294652,1568853 +119168,234,1,214086,76010 +119169,250,11,285270,1367931 +119170,175,5,4012,1192391 +119171,3,5,68247,1020068 +119172,328,6,6972,1401728 +119173,373,7,6973,1399141 +119174,204,9,287,4059 +119175,317,10,316776,1436388 +119176,127,3,13534,1552521 +119177,234,1,49688,259792 +119178,234,1,104427,89932 +119179,60,1,179847,1544866 +119180,39,3,14,1753769 +119181,97,7,10204,1613303 +119182,317,10,214676,608 +119183,373,7,61341,1338240 +119184,148,9,831,12349 +119185,387,10,16373,38227 +119186,413,11,109491,5668 +119187,254,10,229254,1166988 +119188,5,10,36915,132432 +119189,317,10,382125,95700 +119190,413,11,371645,1409489 +119191,317,10,302026,12180 +119192,22,9,11370,1180972 +119193,252,3,9102,1380391 +119194,204,9,201223,70127 +119195,76,2,297736,1770722 +119196,3,5,15472,3925 +119197,376,10,88042,935718 +119198,234,1,58928,149225 +119199,52,10,71066,109088 +119200,154,3,142402,1117105 +119201,234,1,9483,19236 +119202,234,1,49844,18907 +119203,3,5,32634,18576 +119204,3,5,7511,460 +119205,190,7,448847,1797889 +119206,77,10,5289,42712 +119207,12,10,11351,56349 +119208,53,2,10344,183220 +119209,175,5,75595,582732 +119210,148,9,50463,4197 +119211,127,3,4413,1630461 +119212,3,5,317214,1331542 +119213,169,3,39053,1335069 +119214,196,7,345925,90769 +119215,234,1,189,2294 +119216,37,3,35,1449000 +119217,317,10,98302,39643 +119218,401,6,9982,1447503 +119219,387,10,33774,260267 +119220,317,10,50590,1519696 +119221,234,1,127144,1271449 +119222,317,10,77583,84569 +119223,273,7,181456,1259 +119224,333,2,329865,1638380 +119225,52,10,85640,543946 +119226,234,1,186606,1168914 +119227,286,3,98339,5931 +119228,234,1,42604,51373 +119229,226,2,169,1877158 +119230,196,7,9946,1406826 +119231,217,3,11370,1581139 +119232,175,5,15045,1453185 +119233,413,11,278706,1334335 +119234,75,5,74,1412203 +119235,234,1,64948,72191 +119236,234,1,31542,27213 +119237,204,9,10780,961534 +119238,234,1,43596,14353 +119239,387,10,35,6056 +119240,5,10,12716,38393 +119241,387,10,121003,11436 +119242,234,1,112083,95293 +119243,373,7,60855,1396476 +119244,269,9,411741,972052 +119245,52,10,43903,76981 +119246,204,9,9779,22061 +119247,413,11,58396,228525 +119248,413,11,5899,46445 +119249,234,1,209244,1187819 +119250,25,2,188927,75375 +119251,413,11,52936,56907 +119252,143,7,10916,3687 +119253,204,9,6947,17950 +119254,3,5,55615,1126289 +119255,204,9,94811,1462121 +119256,238,7,4547,1376902 +119257,39,3,6947,1573103 +119258,258,9,3933,1448075 +119259,52,10,102961,98136 +119260,232,10,43904,142865 +119261,304,10,264309,89914 +119262,291,6,634,10646 +119263,53,2,11697,4350 +119264,413,11,43327,8505 +119265,317,10,246133,132856 +119266,3,5,75622,1209263 +119267,53,2,38006,29894 +119268,3,5,42787,13338 +119269,140,9,240832,1367809 +119270,234,1,237799,35137 +119271,306,7,159667,1445369 +119272,52,10,110830,182095 +119273,360,3,44115,1394711 +119274,273,7,9314,57269 +119275,286,3,227975,73582 +119276,387,10,259695,880 +119277,34,8,9946,1432024 +119278,5,10,37084,40166 +119279,3,5,37126,139449 +119280,273,7,85196,1318389 +119281,317,10,49787,81328 +119282,20,2,274479,1608768 +119283,317,10,103713,1034655 +119284,229,6,274479,1608773 +119285,269,9,11101,1319735 +119286,40,1,2300,1814205 +119287,413,11,21629,67349 +119288,317,10,352917,1493313 +119289,105,7,138308,18577 +119290,285,5,9352,1586337 +119291,234,1,15909,196823 +119292,317,10,186630,5396 +119293,234,1,35320,56506 +119294,415,3,29161,88164 +119295,208,2,8247,1347722 +119296,317,10,44105,145518 +119297,53,2,70586,1208061 +119298,234,1,3064,716 +119299,13,5,157354,1293141 +119300,328,6,10727,113674 +119301,273,7,262522,1099146 +119302,234,1,84233,90820 +119303,289,6,291270,1453517 +119304,234,1,25388,19333 +119305,387,10,14134,8311 +119306,273,7,2107,21611 +119307,317,10,65599,78138 +119308,234,1,270024,546876 +119309,3,5,9474,5556 +119310,226,2,298,1533052 +119311,204,9,9651,16187 +119312,413,11,408616,2070 +119313,169,3,8915,1337466 +119314,317,10,46982,120482 +119315,413,11,312669,932147 +119316,250,11,9785,1458583 +119317,15,6,17654,1424621 +119318,20,2,163,1727293 +119319,12,10,353595,1262612 +119320,37,3,98566,1460658 +119321,3,5,15310,68459 +119322,196,7,9982,1415617 +119323,273,7,182499,29453 +119324,289,6,269149,1194137 +119325,317,10,116306,1063269 +119326,273,7,293670,69085 +119327,234,1,10238,6648 +119328,387,10,413998,7017 +119329,175,5,70981,1390366 +119330,234,1,58428,101542 +119331,234,1,2669,21370 +119332,319,1,634,1767781 +119333,75,5,345925,1559367 +119334,273,7,355008,53712 +119335,3,5,4921,24076 +119336,387,10,2666,21085 +119337,387,10,41110,18838 +119338,148,9,7220,11063 +119339,143,7,10145,9349 +119340,105,7,4254,1323163 +119341,53,2,4644,41680 +119342,387,10,14705,86782 +119343,273,7,42218,96286 +119344,176,3,10391,1399501 +119345,273,7,70046,7422 +119346,3,5,10145,19464 +119347,234,1,182035,1030519 +119348,147,1,263115,956198 +119349,234,1,16652,87169 +119350,333,2,15613,14713 +119351,60,1,80713,147332 +119352,413,11,31005,11625 +119353,234,1,102949,99511 +119354,373,7,190955,3996 +119355,234,1,79707,74091 +119356,175,5,302528,1415129 +119357,204,9,120676,9062 +119358,3,5,24801,25361 +119359,317,10,24556,30692 +119360,234,1,33025,14855 +119361,87,7,46738,1536649 +119362,269,9,84942,1325560 +119363,234,1,24150,16848 +119364,317,10,64044,142498 +119365,317,10,102272,39298 +119366,3,5,331958,1126411 +119367,373,7,10008,9410 +119368,399,9,13640,1450356 +119369,53,2,47694,554848 +119370,413,11,15037,12940 +119371,387,10,17386,59806 +119372,417,3,9593,1877138 +119373,387,10,31984,1152114 +119374,234,1,8989,56506 +119375,234,1,106020,157703 +119376,277,3,100910,27731 +119377,234,1,96035,1037369 +119378,204,9,21734,16753 +119379,3,5,28437,106502 +119380,234,1,44682,131250 +119381,140,9,76757,575766 +119382,317,10,284013,589579 +119383,394,7,180299,1352423 +119384,273,7,204802,1309681 +119385,413,11,145135,1186025 +119386,234,1,125764,208118 +119387,413,11,6978,1732 +119388,387,10,966,14521 +119389,18,2,246415,1439424 +119390,53,2,9987,61502 +119391,289,6,291270,1584357 +119392,53,2,12526,1281881 +119393,226,2,25385,14495 +119394,268,7,15613,1404903 +119395,204,9,5998,13887 +119396,53,2,39907,1309955 +119397,64,6,98277,1849139 +119398,5,10,12182,71550 +119399,203,1,413452,1084462 +119400,286,3,332354,1444932 +119401,52,10,14134,8311 +119402,349,1,9982,1615792 +119403,208,2,312221,29929 +119404,273,7,67377,3098 +119405,381,9,7220,1549418 +119406,317,10,305455,42742 +119407,209,7,37534,1400415 +119408,234,1,14589,32427 +119409,234,1,14242,31654 +119410,204,9,277713,1526057 +119411,52,10,270774,1601945 +119412,22,9,36245,26184 +119413,45,9,297762,1846738 +119414,20,2,634,1318478 +119415,75,5,131737,1536846 +119416,413,11,6977,1224 +119417,182,8,28176,1609382 +119418,234,1,191476,18514 +119419,317,10,58051,85030 +119420,232,10,56800,37303 +119421,52,10,169934,108953 +119422,415,3,14430,1521691 +119423,52,10,190352,31766 +119424,148,9,12113,20507 +119425,60,1,397365,1653483 +119426,3,5,10696,52055 +119427,273,7,157829,1778310 +119428,234,1,1904,17633 +119429,234,1,157351,564082 +119430,204,9,208091,1193911 +119431,204,9,197,7204 +119432,269,9,277237,1463162 +119433,5,10,10750,66624 +119434,387,10,73835,5810 +119435,37,3,15060,1447555 +119436,179,2,10330,1324453 +119437,413,11,150201,1448865 +119438,52,10,42764,22383 +119439,234,1,382873,1301845 +119440,196,7,181533,1031621 +119441,301,5,354287,8673 +119442,148,9,216363,1542580 +119443,158,2,28739,1407899 +119444,387,10,13912,12924 +119445,105,7,325173,62811 +119446,317,10,67102,82592 +119447,158,2,283995,1580964 +119448,289,6,284053,1358031 +119449,127,3,140887,616605 +119450,234,1,375794,79002 +119451,239,5,3059,1899130 +119452,234,1,392660,1519337 +119453,289,6,3933,1198798 +119454,3,5,43385,10150 +119455,148,9,43385,7338 +119456,413,11,31418,238621 +119457,53,2,1723,1051 +119458,53,2,67328,1583631 +119459,301,5,11511,41591 +119460,200,3,12783,1408380 +119461,317,10,425003,1219901 +119462,273,7,9301,1071 +119463,317,10,118737,1088682 +119464,234,1,27622,14674 +119465,158,2,373546,1869440 +119466,317,10,63291,236820 +119467,317,10,98368,121798 +119468,234,1,19235,84793 +119469,317,10,49559,64750 +119470,53,2,97024,9064 +119471,234,1,84827,937827 +119472,277,3,82999,929048 +119473,413,11,285,1722 +119474,413,11,560,7649 +119475,52,10,22998,2498 +119476,245,3,266102,1568596 +119477,360,3,256740,1402516 +119478,209,7,18801,1425513 +119479,317,10,18128,2632 +119480,269,9,11535,13933 +119481,97,7,55534,1338279 +119482,398,9,8204,1391756 +119483,196,7,10972,1555195 +119484,413,11,358924,1741049 +119485,273,7,11645,51808 +119486,333,2,31442,1580046 +119487,387,10,79707,74091 +119488,317,10,246655,11013 +119489,221,3,1578,1336507 +119490,273,7,157424,1116280 +119491,53,2,52847,3647 +119492,13,7,60488,1345301 +119493,317,10,54523,103611 +119494,298,5,257088,1394485 +119495,234,1,140519,1112606 +119496,141,7,14128,58289 +119497,273,7,294272,211391 +119498,413,11,51104,51378 +119499,52,10,52850,223573 +119500,204,9,20325,11036 +119501,387,10,12,10 +119502,203,1,241239,1402039 +119503,105,7,48885,1500798 +119504,52,10,65282,108498 +119505,387,10,39982,57239 +119506,273,7,110416,35073 +119507,273,7,107319,19155 +119508,269,9,44287,1125212 +119509,226,2,293167,1759809 +119510,37,3,214756,1457948 +119511,15,6,283995,1815923 +119512,289,6,12593,1458339 +119513,333,2,44655,31870 +119514,187,11,321303,1456097 +119515,273,7,9877,19155 +119516,72,11,10025,1119658 +119517,64,6,31027,550959 +119518,3,5,30624,4101 +119519,75,5,398633,1623944 +119520,387,10,33556,114379 +119521,373,7,314065,1414094 +119522,53,2,56669,557 +119523,160,3,7916,77623 +119524,273,7,23823,52339 +119525,53,2,332839,1494534 +119526,387,10,104083,167903 +119527,234,1,66893,234569 +119528,5,10,149170,548402 +119529,413,11,12632,73175 +119530,262,6,70074,1407357 +119531,301,5,15019,1555684 +119532,413,11,220820,54592 +119533,360,3,75174,1333988 +119534,399,9,53178,225718 +119535,180,7,10364,1586043 +119536,317,10,61267,232764 +119537,234,1,256347,4945 +119538,198,6,302026,1570595 +119539,105,7,43938,1251352 +119540,317,10,43571,119991 +119541,327,7,255343,1512772 +119542,234,1,112885,108983 +119543,234,1,44087,32919 +119544,317,10,43778,1349303 +119545,52,10,40879,1078460 +119546,52,10,40130,103132 +119547,3,5,60106,27224 +119548,204,9,64129,3358 +119549,413,11,92285,3175 +119550,182,8,82624,1547517 +119551,387,10,9648,59439 +119552,72,11,435,1046600 +119553,143,7,102382,95835 +119554,360,9,11577,143906 +119555,413,11,71866,958083 +119556,387,10,47794,232431 +119557,234,1,154,1788 +119558,387,10,53860,95862 +119559,234,1,8988,2836 +119560,3,5,3484,8713 +119561,204,9,308,4436 +119562,105,7,39907,552419 +119563,333,2,54563,1600185 +119564,197,5,3172,1738163 +119565,413,11,26805,34327 +119566,75,5,45714,31523 +119567,273,7,196235,1176354 +119568,75,5,17654,1424624 +119569,387,10,14,2152 +119570,234,1,9716,1243 +119571,148,9,165,602 +119572,394,7,544,1413095 +119573,403,10,179066,1733993 +119574,373,7,638,9408 +119575,198,6,293660,1533023 +119576,286,3,217038,1201673 +119577,132,2,121598,1880906 +119578,180,7,109379,1597026 +119579,269,9,413882,35740 +119580,52,10,24351,60400 +119581,413,11,17963,15768 +119582,204,9,403,3188 +119583,87,7,203321,1554234 +119584,317,10,296194,1222180 +119585,387,10,47914,95262 +119586,333,2,120172,1570086 +119587,333,2,12783,1427496 +119588,234,1,28553,8349 +119589,387,10,14019,76249 +119590,234,1,241855,1074560 +119591,317,10,144331,1153618 +119592,286,3,43904,5261 +119593,179,2,177677,1545912 +119594,175,5,9966,1458586 +119595,363,3,118,1559186 +119596,234,1,271185,54781 +119597,333,2,57993,7689 +119598,148,9,47504,1779034 +119599,234,1,51044,834 +119600,234,1,12684,2636 +119601,143,7,362057,1601197 +119602,387,10,118536,30252 +119603,387,10,188858,1063668 +119604,317,10,104275,83784 +119605,97,7,773,1342655 +119606,3,5,113525,19102 +119607,387,10,43594,20150 +119608,262,6,9532,1393390 +119609,387,10,228034,1112607 +119610,3,5,88012,30932 +119611,409,7,634,1767790 +119612,411,9,70667,61846 +119613,273,7,30943,7182 +119614,234,1,359413,1042389 +119615,234,1,73424,303056 +119616,273,7,69165,1473359 +119617,333,2,43459,1511650 +119618,105,7,80928,144566 +119619,165,9,1624,1334778 +119620,387,10,43727,1461039 +119621,196,7,258251,1348590 +119622,3,5,58428,1025921 +119623,387,10,121173,591994 +119624,53,2,218778,5215 +119625,387,10,77117,1295479 +119626,59,3,163,1727304 +119627,413,11,26516,3643 +119628,187,11,99861,1376901 +119629,273,7,11524,942947 +119630,317,10,40120,82415 +119631,269,9,12780,552386 +119632,387,10,37958,119253 +119633,175,5,2454,1391730 +119634,387,10,50549,122964 +119635,387,10,29113,25168 +119636,413,11,11886,61795 +119637,239,5,237584,1553615 +119638,52,10,155308,85894 +119639,373,7,28178,1392211 +119640,413,11,76,580 +119641,373,7,26941,1338135 +119642,269,9,393445,1705463 +119643,105,7,352372,1262634 +119644,273,7,347031,1412258 +119645,387,10,2978,1524 +119646,3,5,43157,14648 +119647,5,10,28120,3632 +119648,391,9,297762,1824242 +119649,413,11,40807,225628 +119650,289,6,20421,1447333 +119651,317,10,41923,590471 +119652,190,7,354859,1884344 +119653,189,3,11045,1398980 +119654,413,11,32657,6875 +119655,97,7,381518,1699535 +119656,190,7,20126,1826993 +119657,413,11,25736,120314 +119658,75,5,70074,1393862 +119659,387,10,29483,36042 +119660,3,5,11230,68674 +119661,337,2,197,1638257 +119662,204,9,857,60579 +119663,419,10,4641,38693 +119664,187,11,228970,1384367 +119665,53,2,5967,32098 +119666,333,2,20325,4352 +119667,3,5,3563,4501 +119668,234,1,246655,9032 +119669,317,10,8383,221348 +119670,234,1,18646,13284 +119671,204,9,9890,60014 +119672,234,1,169683,1151788 +119673,53,2,10145,47294 +119674,234,1,168202,110873 +119675,387,10,63831,56209 +119676,413,11,9771,16593 +119677,105,7,45013,969021 +119678,328,6,8619,1377224 +119679,273,7,43157,556860 +119680,333,2,230179,1881541 +119681,53,2,11812,21004 +119682,234,1,42267,42171 +119683,12,10,10198,1033844 +119684,203,1,36658,1384398 +119685,148,9,18826,21674 +119686,200,3,55534,1577960 +119687,387,10,26376,67428 +119688,273,7,27085,38646 +119689,64,6,102632,1556263 +119690,234,1,294093,1420246 +119691,289,6,106112,148147 +119692,3,5,88953,56135 +119693,122,8,167,1549179 +119694,12,10,16175,3027 +119695,204,9,31947,1332574 +119696,273,7,10594,13083 +119697,387,10,245917,1253060 +119698,141,7,9593,1376311 +119699,413,11,340275,1003175 +119700,3,5,341420,1469921 +119701,234,1,126676,225244 +119702,52,10,79008,49923 +119703,286,3,80304,59423 +119704,200,3,9286,1092901 +119705,273,7,47739,3249 +119706,317,10,62825,151084 +119707,5,10,25673,1041426 +119708,234,1,27671,98631 +119709,413,11,284052,1368849 +119710,234,1,43075,4109 +119711,373,7,3682,1327030 +119712,169,3,93856,1335149 +119713,187,11,41283,1440297 +119714,387,10,59726,43145 +119715,147,1,194,1735712 +119716,317,10,412202,1200565 +119717,52,10,43833,47686 +119718,317,10,19108,84103 +119719,413,11,45527,38955 +119720,317,10,29272,233134 +119721,365,6,15371,78372 +119722,387,10,10693,14687 +119723,113,9,435,1391762 +119724,3,5,422005,1178716 +119725,234,1,111239,163998 +119726,5,10,340101,1214963 +119727,287,3,6171,25405 +119728,229,6,181533,1630904 +119729,53,2,11697,960058 +119730,314,2,41171,1436493 +119731,204,9,12,7927 +119732,413,11,293660,62907 +119733,200,3,9946,1404313 +119734,132,2,333371,1445820 +119735,387,10,46014,30522 +119736,262,6,257345,1116331 +119737,413,11,11777,3050 +119738,200,3,2503,1399561 +119739,327,7,544,1390524 +119740,148,9,11397,17150 +119741,208,2,9675,1318445 +119742,333,2,14979,1412603 +119743,234,1,48412,73150 +119744,273,7,354859,5488 +119745,398,9,2087,9990 +119746,317,10,439998,1420167 +119747,269,9,91070,1064439 +119748,234,1,86985,143079 +119749,387,10,2280,23964 +119750,191,6,188927,1410580 +119751,3,5,27036,18744 +119752,32,8,132363,1401200 +119753,200,3,10929,1408326 +119754,77,10,53864,1539139 +119755,234,1,64850,87690 +119756,413,11,93856,181856 +119757,387,10,28165,1387710 +119758,234,1,25862,37361 +119759,317,10,43761,120227 +119760,317,10,319924,1315387 +119761,286,3,214138,1284152 +119762,53,2,371645,1678889 +119763,292,3,116463,1691492 +119764,5,10,4286,36015 +119765,273,7,9423,49285 +119766,234,1,38060,121216 +119767,27,3,60599,1400511 +119768,317,10,367732,1534232 +119769,5,10,4893,40353 +119770,204,9,49689,1316834 +119771,413,11,57597,1522887 +119772,158,2,145135,1347753 +119773,317,10,140519,1112606 +119774,413,11,27904,1271299 +119775,387,10,67375,14646 +119776,413,11,32390,23397 +119777,3,5,92341,39798 +119778,127,3,30361,9567 +119779,3,5,105981,1264551 +119780,234,1,44657,3239 +119781,148,9,74,8706 +119782,317,10,37910,74091 +119783,328,6,195269,1393415 +119784,179,2,10740,1372095 +119785,187,11,176,1652092 +119786,286,3,210079,1334588 +119787,413,11,31146,59479 +119788,188,8,227975,1775637 +119789,234,1,391069,488 +119790,317,10,427095,210248 +119791,53,2,370234,1621861 +119792,328,6,10096,1459906 +119793,196,7,332567,1338484 +119794,360,3,157847,1190764 +119795,3,5,16186,1554751 +119796,317,10,24094,97449 +119797,204,9,347096,1188586 +119798,148,9,11610,8427 +119799,52,10,326,1560762 +119800,269,9,304372,21747 +119801,5,10,46069,134675 +119802,317,10,87587,935267 +119803,188,8,163791,1601459 +119804,234,1,1163,15672 +119805,204,9,50073,33020 +119806,397,7,985,5602 +119807,317,10,124517,132305 +119808,317,10,58013,134224 +119809,301,5,77949,1402097 +119810,317,10,55663,222886 +119811,176,3,8870,1724247 +119812,349,1,10198,71856 +119813,269,9,18133,1222 +119814,234,1,271714,46588 +119815,269,9,192210,996401 +119816,234,1,5998,68 +119817,395,3,9928,229962 +119818,3,5,112558,98442 +119819,234,1,209263,56539 +119820,234,1,272878,52358 +119821,234,1,83965,6592 +119822,234,1,297633,1399549 +119823,387,10,72465,71485 +119824,273,7,11553,25472 +119825,3,5,41996,103589 +119826,203,1,26983,1705506 +119827,234,1,224778,231705 +119828,413,11,27573,25142 +119829,204,9,154442,1192996 +119830,262,6,34806,1336716 +119831,317,10,168164,18831 +119832,317,10,21044,6056 +119833,3,5,291164,65506 +119834,53,2,46420,79104 +119835,180,7,383914,1622037 +119836,360,3,66193,935300 +119837,196,7,10972,9417 +119838,269,9,86838,5779 +119839,97,7,243935,1039265 +119840,160,3,10070,92493 +119841,317,10,385372,63677 +119842,180,7,10973,7654 +119843,203,1,25796,1457045 +119844,317,10,253286,1060785 +119845,3,5,415255,1348778 +119846,273,7,165,37 +119847,3,5,402612,23614 +119848,387,10,17074,182257 +119849,317,10,84720,1024197 +119850,317,10,18477,5140 +119851,273,7,14534,1760 +119852,269,9,5279,10420 +119853,234,1,28681,3993 +119854,234,1,304134,1172858 +119855,269,9,14476,1411666 +119856,234,1,5559,44113 +119857,317,10,30330,58294 +119858,304,10,357706,1642537 +119859,3,5,390526,1183545 +119860,105,7,168676,544355 +119861,234,1,38237,152510 +119862,3,5,42093,45194 +119863,373,7,18,1368864 +119864,203,1,27917,1652266 +119865,413,11,84355,148737 +119866,53,2,219466,59533 +119867,328,6,198663,1367498 +119868,234,1,15712,21669 +119869,387,10,11391,69187 +119870,53,2,71672,55180 +119871,413,11,17295,33790 +119872,5,10,16356,545680 +119873,198,6,2567,1531519 +119874,234,1,2463,25236 +119875,53,2,251,1051 +119876,234,1,92349,296085 +119877,317,10,17687,33028 +119878,203,1,118,1462919 +119879,232,10,9519,37618 +119880,45,9,11975,1521770 +119881,203,1,50780,958273 +119882,113,9,1125,1389127 +119883,3,5,44693,65502 +119884,317,10,15177,77966 +119885,127,3,15,34101 +119886,175,5,103332,1172443 +119887,317,10,63665,71416 +119888,387,10,10692,67179 +119889,289,6,149870,1456632 +119890,287,3,364088,1748534 +119891,317,10,128625,1087479 +119892,317,10,81223,146873 +119893,250,11,228066,1574104 +119894,317,10,32901,478644 +119895,317,10,220674,190397 +119896,32,8,11351,1439107 +119897,234,1,285135,1187609 +119898,273,7,12601,73063 +119899,97,7,377151,1183168 +119900,387,10,80389,1026247 +119901,234,1,36672,22987 +119902,413,11,26252,11623 +119903,317,10,336655,1456977 +119904,5,10,41556,53276 +119905,273,7,132363,1280961 +119906,64,6,11046,952485 +119907,5,10,37923,1368744 +119908,387,10,55495,150940 +119909,53,2,9296,36624 +119910,234,1,124676,1038016 +119911,204,9,131689,1267022 +119912,175,5,410118,76554 +119913,304,10,84905,143569 +119914,187,11,76757,1404214 +119915,52,10,84030,83950 +119916,97,7,75174,1304276 +119917,387,10,334,4762 +119918,234,1,148176,1065698 +119919,239,5,341886,566665 +119920,234,1,358980,1182527 +119921,64,6,209032,1192404 +119922,328,6,4147,1548644 +119923,394,7,102382,1360103 +119924,60,1,51144,6648 +119925,273,7,104374,1063401 +119926,66,11,6973,1164294 +119927,234,1,206292,1188735 +119928,317,10,97088,1689590 +119929,234,1,168647,40230 +119930,160,3,70586,1364424 +119931,204,9,985,5602 +119932,273,7,37462,12241 +119933,204,9,14019,76259 +119934,301,5,664,1377132 +119935,327,7,220287,1210543 +119936,182,8,381015,1828339 +119937,413,11,227348,995462 +119938,148,9,95504,959193 +119939,60,1,351211,1652037 +119940,3,5,42309,1301382 +119941,333,2,124115,4128 +119942,317,10,255898,1296420 +119943,105,7,264646,24514 +119944,234,1,48489,1135340 +119945,234,1,105584,96369 +119946,234,1,18143,74091 +119947,387,10,703,10439 +119948,413,11,14217,58445 +119949,3,5,121598,3079 +119950,269,9,6948,7496 +119951,413,11,46494,136400 +119952,143,7,201085,42267 +119953,317,10,322443,967827 +119954,387,10,12230,57316 +119955,105,7,19610,10400 +119956,273,7,99859,57124 +119957,60,1,43459,1511310 +119958,5,10,45861,146101 +119959,234,1,100270,237583 +119960,3,5,43045,40387 +119961,234,1,120497,21311 +119962,196,7,325173,1409545 +119963,234,1,179103,89924 +119964,317,10,371462,1017396 +119965,46,5,26882,1773272 +119966,167,3,11045,1553253 +119967,204,9,77338,50517 +119968,403,10,109477,1169326 +119969,387,10,181533,59413 +119970,196,7,11517,1395690 +119971,234,1,82968,5269 +119972,226,2,33472,29640 +119973,87,7,223485,1531102 +119974,333,2,50506,1512761 +119975,234,1,68078,34799 +119976,219,11,13205,1610869 +119977,416,10,8588,55414 +119978,387,10,1818,19267 +119979,317,10,229134,22467 +119980,413,11,29959,34439 +119981,148,9,42325,9063 +119982,5,10,11832,10634 +119983,269,9,78177,583262 +119984,317,10,87826,34050 +119985,53,2,44115,141570 +119986,3,5,11446,69487 +119987,204,9,539,7307 +119988,234,1,49876,10586 +119989,413,11,10109,63574 +119990,203,1,9312,1158477 +119991,298,5,44943,1403415 +119992,234,1,69019,98539 +119993,204,9,389972,1831333 +119994,75,5,4982,983118 +119995,387,10,11397,69209 +119996,277,3,76163,1409889 +119997,269,9,2262,3771 +119998,323,10,84479,113736 +119999,234,1,27372,95501 +120000,317,10,69898,5143 +120001,302,9,74,1533005 +120002,3,5,88641,12846 +120003,413,11,330333,54331 +120004,273,7,57412,13571 +120005,234,1,44115,2034 +120006,239,5,40807,1552473 +120007,262,6,351901,1392098 +120008,57,2,274479,1608983 +120009,127,3,3063,34094 +120010,415,3,9514,1466434 +120011,262,6,313922,1527588 +120012,301,5,28178,1532359 +120013,397,7,115712,1161456 +120014,75,5,17609,1400330 +120015,269,9,200505,10420 +120016,234,1,146233,137427 +120017,314,2,10632,1341848 +120018,169,3,95627,1043368 +120019,234,1,362758,222505 +120020,269,9,347258,1525129 +120021,317,10,380124,80602 +120022,198,6,181533,1869381 +120023,387,10,357529,195916 +120024,3,5,35651,17393 +120025,234,1,18040,82627 +120026,5,10,42149,150211 +120027,394,7,69668,572622 +120028,273,7,12273,71273 +120029,3,5,369245,469154 +120030,387,10,94352,5524 +120031,273,7,6947,1213 +120032,317,10,39939,56252 +120033,234,1,21371,45730 +120034,416,10,41213,1777117 +120035,87,7,83430,54261 +120036,302,9,425774,1708006 +120037,105,7,47112,26140 +120038,317,10,452142,24534 +120039,289,6,12593,1113241 +120040,387,10,17464,81887 +120041,317,10,41378,99436 +120042,113,9,9946,1378825 +120043,269,9,159667,1460770 +120044,333,2,18642,939486 +120045,250,11,225728,1414101 +120046,328,6,17609,1395761 +120047,317,10,51276,143672 +120048,317,10,72655,70919 +120049,304,10,27061,3831 +120050,360,3,9716,1661571 +120051,317,10,260584,1111244 +120052,3,5,41073,7386 +120053,210,9,284052,1785940 +120054,387,10,26880,85735 +120055,327,7,332872,989004 +120056,196,7,142656,1547493 +120057,311,9,11547,1378194 +120058,204,9,3063,103507 +120059,180,7,10754,1609514 +120060,277,3,9042,1409231 +120061,327,7,9882,9408 +120062,291,6,8292,1535322 +120063,388,9,10066,1864759 +120064,208,2,334527,1579394 +120065,3,5,336804,1151804 +120066,105,7,120497,1274071 +120067,234,1,257176,19717 +120068,245,3,357706,1642548 +120069,105,7,304613,1387077 +120070,413,11,1995,1732 +120071,273,7,29143,59355 +120072,148,9,339419,984533 +120073,180,7,105981,1372221 +120074,148,9,35026,1364226 +120075,72,11,328111,1716004 +120076,209,7,341174,1305 +120077,32,8,214756,1453943 +120078,395,3,15653,142007 +120079,403,10,12,7 +120080,387,10,415072,32178 +120081,387,10,11813,67971 +120082,398,9,71120,1872255 +120083,133,3,7353,52748 +120084,53,2,46387,1100076 +120085,387,10,922,4429 +120086,53,2,97051,960759 +120087,105,7,46420,75678 +120088,387,10,173634,143563 +120089,234,1,28997,103452 +120090,327,7,84178,1550236 +120091,413,11,182899,22086 +120092,234,1,385379,1585241 +120093,234,1,10390,7623 +120094,317,10,17825,78221 +120095,381,9,31947,1395158 +120096,204,9,211144,63556 +120097,20,2,312221,1318502 +120098,3,5,343972,1062050 +120099,234,1,102428,96369 +120100,269,9,44414,7144 +120101,273,7,28000,14861 +120102,32,8,88529,1693556 +120103,413,11,42448,1918 +120104,77,10,10761,13614 +120105,413,11,12477,1697 +120106,234,1,196257,83313 +120107,52,10,87060,2435 +120108,204,9,31509,1141776 +120109,105,7,124470,1192854 +120110,387,10,105059,1111005 +120111,317,10,311301,5509 +120112,60,1,33333,1066151 +120113,53,2,167073,20424 +120114,262,6,228066,1335566 +120115,387,10,44081,1345980 +120116,349,1,59981,1447593 +120117,234,1,79783,4760 +120118,207,3,74,1415513 +120119,387,10,601,9964 +120120,53,2,10909,52751 +120121,53,2,340616,1468064 +120122,148,9,128311,1323770 +120123,317,10,52556,145352 +120124,317,10,413669,222572 +120125,52,10,45577,27916 +120126,317,10,244001,115128 +120127,52,10,41213,137032 +120128,234,1,299780,23315 +120129,387,10,3309,31843 +120130,333,2,82655,1288839 +120131,333,2,21968,1655548 +120132,333,2,31548,1088876 +120133,105,7,321142,1835172 +120134,317,10,188357,1317089 +120135,5,10,4459,38228 +120136,127,3,240832,1372951 +120137,234,1,358293,1073813 +120138,234,1,18917,83784 +120139,5,10,43849,1466761 +120140,204,9,70981,1388850 +120141,229,6,283995,1815939 +120142,413,11,76229,11443 +120143,3,5,19200,15194 +120144,387,10,84708,1172272 +120145,97,7,197,1341856 +120146,317,10,446345,1774356 +120147,388,9,693,1652448 +120148,60,1,1578,112526 +120149,413,11,48281,1518802 +120150,269,9,54093,1325904 +120151,204,9,8619,23867 +120152,387,10,55934,545053 +120153,317,10,29695,99095 +120154,273,7,29136,3278 +120155,46,5,4248,1667238 +120156,234,1,85431,65727 +120157,269,9,153854,1468091 +120158,158,2,102382,1190255 +120159,317,10,60189,120232 +120160,75,5,2675,91115 +120161,3,5,9287,4676 +120162,175,5,84178,1404275 +120163,413,11,205939,1191536 +120164,413,11,42532,18595 +120165,64,6,18937,1447554 +120166,67,10,169934,1572958 +120167,20,2,188927,1202779 +120168,277,3,122019,1511652 +120169,415,3,11391,69187 +120170,394,7,435,15332 +120171,198,6,10665,1432038 +120172,273,7,49847,142952 +120173,204,9,42251,1185063 +120174,413,11,31385,1298426 +120175,53,2,87827,6506 +120176,234,1,13440,16294 +120177,317,10,366170,1247786 +120178,273,7,86600,51883 +120179,204,9,49038,1457659 +120180,289,6,9514,1642586 +120181,413,11,11933,13432 +120182,234,1,335778,8300 +120183,162,6,638,9517 +120184,387,10,36919,11683 +120185,105,7,301876,1376619 +120186,3,5,29161,91306 +120187,75,5,10857,27337 +120188,413,11,400174,81827 +120189,105,7,285858,1387454 +120190,209,7,145481,1386762 +120191,333,2,30876,1410031 +120192,72,11,10204,1413041 +120193,124,3,315837,1790024 +120194,386,5,297762,61851 +120195,204,9,29058,457 +120196,143,7,109424,1335556 +120197,187,11,146233,1050930 +120198,3,5,549,7492 +120199,234,1,57809,23430 +120200,413,11,116236,16325 +120201,85,10,263341,1615 +120202,413,11,795,3394 +120203,286,3,92663,1802648 +120204,39,3,2924,1803779 +120205,87,7,334074,1528013 +120206,327,7,193893,1390523 +120207,269,9,127493,223990 +120208,77,10,14,2152 +120209,83,2,270383,1813879 +120210,229,6,286873,1553460 +120211,413,11,158015,1186025 +120212,262,6,14869,1336716 +120213,413,11,14904,68357 +120214,413,11,20160,1426710 +120215,175,5,97614,132642 +120216,3,5,38579,9645 +120217,127,3,188102,1239636 +120218,147,1,392271,1765163 +120219,18,2,118,1855212 +120220,234,1,19971,29494 +120221,398,9,9286,113028 +120222,413,11,12994,17115 +120223,387,10,96118,6648 +120224,55,5,14430,1520618 +120225,273,7,1903,11656 +120226,132,2,59419,1526972 +120227,234,1,121329,103111 +120228,234,1,206284,1156260 +120229,105,7,257344,227440 +120230,328,6,58244,1399920 +120231,413,11,380057,1569816 +120232,301,5,381518,1808369 +120233,317,10,11159,65452 +120234,234,1,142757,143676 +120235,148,9,55720,53902 +120236,234,1,54287,177876 +120237,203,1,267852,1622323 +120238,53,2,31527,7652 +120239,234,1,6166,48325 +120240,203,1,2323,1416072 +120241,234,1,91950,96369 +120242,234,1,49852,58728 +120243,387,10,16563,26160 +120244,317,10,1589,1517809 +120245,328,6,127585,1384374 +120246,317,10,52366,20718 +120247,3,5,10910,10339 +120248,333,2,390747,1662646 +120249,169,3,163,1335069 +120250,105,7,443319,1888973 +120251,3,5,13836,9645 +120252,2,6,339403,1635241 +120253,190,7,343173,1392983 +120254,398,9,9423,7236 +120255,234,1,21508,569201 +120256,203,1,20421,1338245 +120257,53,2,2994,29889 +120258,387,10,9312,57256 +120259,3,5,88036,19464 +120260,179,2,2454,1554883 +120261,204,9,42188,1426835 +120262,53,2,12102,1051 +120263,387,10,24405,57113 +120264,166,9,75174,1335041 +120265,127,3,40807,77623 +120266,368,7,1586,1431164 +120267,203,1,54845,124660 +120268,273,7,45807,168772 +120269,273,7,218778,23486 +120270,39,3,76203,1292478 +120271,310,3,118451,1293713 +120272,269,9,345915,1332209 +120273,3,5,23823,61851 +120274,415,3,45562,999567 +120275,169,3,10391,1404842 +120276,234,1,20359,87713 +120277,387,10,89008,1105485 +120278,301,5,194,40766 +120279,250,11,13614,1610049 +120280,238,7,3172,8158 +120281,132,2,28448,1434270 +120282,208,2,12135,1106971 +120283,387,10,29835,21223 +120284,179,2,44754,1634762 +120285,387,10,59738,1493202 +120286,269,9,77949,582928 +120287,3,5,12432,67324 +120288,209,7,193893,1407207 +120289,180,7,324440,1606200 +120290,234,1,30379,1318092 +120291,296,3,302699,1729093 +120292,148,9,359245,1638334 +120293,209,7,354287,1614061 +120294,5,10,19338,1441199 +120295,234,1,265934,136505 +120296,234,1,96712,64992 +120297,273,7,322,190 +120298,269,9,166,1966 +120299,269,9,52034,58608 +120300,286,3,229134,1179392 +120301,262,6,206647,1483141 +120302,3,5,11101,68025 +120303,317,10,21778,76820 +120304,357,3,257345,1568853 +120305,289,6,73723,118713 +120306,352,3,6947,1573104 +120307,239,5,97365,1727615 +120308,97,7,15476,1338480 +120309,203,1,14703,108656 +120310,234,1,350765,1382121 +120311,234,1,99004,12733 +120312,273,7,254193,1184547 +120313,377,3,163,1684987 +120314,387,10,56162,32633 +120315,317,10,112456,1023720 +120316,234,1,52920,146873 +120317,413,11,11798,31437 +120318,60,1,22784,987173 +120319,12,10,413279,7624 +120320,273,7,577,531 +120321,20,2,274857,1829866 +120322,387,10,56339,1891146 +120323,317,10,149868,1139080 +120324,52,10,100063,31180 +120325,52,10,52437,145984 +120326,234,1,35435,16137 +120327,317,10,19760,87137 +120328,3,5,10622,66054 +120329,190,7,272693,1548165 +120330,209,7,82624,5881 +120331,234,1,27035,51000 +120332,317,10,362439,1352878 +120333,148,9,78265,4126 +120334,105,7,267310,1451445 +120335,234,1,45205,132495 +120336,387,10,3072,30090 +120337,53,2,201749,1267835 +120338,3,5,28448,55427 +120339,317,10,126754,96042 +120340,75,5,339530,1543889 +120341,75,5,70670,1586294 +120342,234,1,1640,455 +120343,277,3,107073,559409 +120344,53,2,41171,6057 +120345,198,6,329865,113120 +120346,387,10,9071,6400 +120347,113,9,188927,1638550 +120348,234,1,30508,10230 +120349,160,3,13056,197930 +120350,387,10,28270,7630 +120351,179,2,12113,1322137 +120352,105,7,26293,549349 +120353,301,5,25941,1528906 +120354,234,1,26298,937278 +120355,269,9,334527,996410 +120356,186,6,11024,1671655 +120357,235,5,242224,1428877 +120358,273,7,63736,128763 +120359,52,10,9659,20629 +120360,5,10,152023,1132201 +120361,175,5,140607,1389139 +120362,234,1,80168,108983 +120363,296,3,302699,1729085 +120364,190,7,10665,1460572 +120365,148,9,28448,1417389 +120366,394,7,401164,1286574 +120367,182,8,379019,1780175 +120368,305,9,924,994550 +120369,127,3,3597,146352 +120370,204,9,29043,32000 +120371,219,11,76203,1662137 +120372,234,1,21544,55299 +120373,234,1,100661,112403 +120374,53,2,20481,959992 +120375,413,11,86049,6346 +120376,395,3,9352,1586381 +120377,3,5,54236,37836 +120378,87,7,9981,24192 +120379,333,2,401164,1817470 +120380,148,9,13056,1708292 +120381,97,7,410118,1791597 +120382,53,2,261273,558442 +120383,234,1,330878,1442719 +120384,239,5,205584,1585726 +120385,409,7,11351,1839468 +120386,317,10,18002,82804 +120387,269,9,54236,931326 +120388,3,5,240745,72264 +120389,289,6,49514,1455510 +120390,415,3,27409,20504 +120391,317,10,302042,139748 +120392,204,9,104556,4349 +120393,204,9,289,4125 +120394,289,6,328111,1455605 +120395,234,1,28577,1744 +120396,234,1,168259,2127 +120397,234,1,64674,1120003 +120398,234,1,140472,120437 +120399,289,6,124517,1080203 +120400,53,2,38021,411527 +120401,234,1,45527,23799 +120402,148,9,132363,224389 +120403,5,10,10948,67609 +120404,387,10,38027,21512 +120405,273,7,9981,4140 +120406,92,7,10235,1593016 +120407,204,9,245917,1175512 +120408,148,9,29510,11083 +120409,234,1,145547,1122812 +120410,75,5,9902,1401296 +120411,289,6,9514,1337304 +120412,357,3,9457,1401801 +120413,328,6,10066,1394445 +120414,269,9,60488,13958 +120415,52,10,66984,148153 +120416,203,1,20438,1473811 +120417,105,7,88273,1183015 +120418,333,2,104720,26175 +120419,413,11,179826,31127 +120420,387,10,35016,81964 +120421,289,6,149870,582611 +120422,317,10,448847,1797861 +120423,52,10,35790,1172911 +120424,269,9,31913,20968 +120425,328,6,23823,1541743 +120426,273,7,560,7647 +120427,387,10,127091,49892 +120428,75,5,13614,1166085 +120429,413,11,315872,1191309 +120430,269,9,44655,1043154 +120431,3,5,267310,1451446 +120432,349,1,234377,1015843 +120433,160,3,949,13458 +120434,239,5,11045,1711196 +120435,287,3,19912,107372 +120436,3,5,12101,1762 +120437,317,10,33135,1304262 +120438,387,10,95627,44023 +120439,53,2,50318,1045806 +120440,60,1,28178,1532068 +120441,75,5,17654,1424626 +120442,105,7,375012,1730004 +120443,387,10,21734,7661 +120444,287,3,205584,1585737 +120445,387,10,26949,32795 +120446,317,10,15559,77863 +120447,234,1,45562,999559 +120448,108,10,42678,128436 +120449,273,7,3989,5553 +120450,105,7,279159,1335345 +120451,60,1,53419,1415451 +120452,209,7,271718,1546047 +120453,394,7,9716,15432 +120454,234,1,403130,22239 +120455,328,6,14126,1391725 +120456,317,10,302104,1311564 +120457,317,10,37935,63550 +120458,148,9,256347,12568 +120459,3,5,29355,6490 +120460,234,1,203890,1186218 +120461,387,10,524,1032 +120462,234,1,82265,37613 +120463,317,10,12888,139874 +120464,373,7,82624,1339957 +120465,269,9,308269,1447878 +120466,189,3,773,1397737 +120467,258,9,26809,1447499 +120468,53,2,31509,1562887 +120469,262,6,93856,1335151 +120470,234,1,332936,1112607 +120471,232,10,42837,13901 +120472,333,2,219466,1640823 +120473,3,5,170517,4083 +120474,269,9,194722,1321170 +120475,52,10,295964,58097 +120476,3,5,49943,1298069 +120477,208,2,374614,1099133 +120478,75,5,101998,1420574 +120479,75,5,168259,1506371 +120480,269,9,171213,1022263 +120481,317,10,161187,1021810 +120482,234,1,179398,1161987 +120483,176,3,102382,1399456 +120484,196,7,398289,1637442 +120485,187,11,356752,1582568 +120486,413,11,1259,6491 +120487,360,9,38027,1762443 +120488,105,7,9056,28156 +120489,77,10,13680,74936 +120490,387,10,39875,48805 +120491,143,7,41733,1408301 +120492,52,10,14372,7191 +120493,105,7,11131,25143 +120494,25,2,11370,32355 +120495,105,7,189197,53017 +120496,148,9,31397,64339 +120497,204,9,18843,1339976 +120498,196,7,33586,1063962 +120499,301,5,18093,1330113 +120500,190,7,20438,1514675 +120501,234,1,32654,21905 +120502,226,2,126516,1529915 +120503,269,9,289183,1676935 +120504,373,7,103332,1404716 +120505,413,11,52440,32439 +120506,148,9,78028,10644 +120507,258,9,81188,1447493 +120508,166,9,20242,1833034 +120509,234,1,153717,221365 +120510,234,1,8464,55149 +120511,398,9,9102,1380380 +120512,360,3,55846,117226 +120513,234,1,124277,1079149 +120514,415,3,46492,18602 +120515,413,11,45949,44667 +120516,234,1,13542,70500 +120517,176,3,2503,1406813 +120518,333,2,35852,11837 +120519,269,9,289712,169743 +120520,196,7,12220,1403440 +120521,97,7,241239,20228 +120522,413,11,400668,1641405 +120523,148,9,100910,959193 +120524,273,7,9966,11468 +120525,3,5,261037,34191 +120526,413,11,37329,7649 +120527,158,2,2105,1401368 +120528,387,10,6499,50099 +120529,158,2,9358,1441328 +120530,413,11,53210,149379 +120531,373,7,225728,1424617 +120532,333,2,324670,1726046 +120533,166,9,857,1662299 +120534,53,2,42149,1309742 +120535,203,1,1647,1449183 +120536,387,10,143240,1245087 +120537,269,9,10351,1070016 +120538,413,11,91070,1269129 +120539,234,1,1726,15277 +120540,105,7,31850,4269 +120541,234,1,12767,6111 +120542,317,10,27460,3893 +120543,52,10,13042,225978 +120544,234,1,33339,18342 +120545,413,11,3520,32053 +120546,5,10,15592,198949 +120547,53,2,20047,997367 +120548,388,9,15613,1442505 +120549,236,8,755,1897888 +120550,53,2,954,1751448 +120551,3,5,9483,41300 +120552,387,10,5123,10295 +120553,387,10,169934,69293 +120554,3,5,3102,30401 +120555,180,7,15199,983595 +120556,234,1,92562,994387 +120557,289,6,13682,1451280 +120558,328,6,2567,1360109 +120559,234,1,77000,288233 +120560,317,10,325133,54734 +120561,317,10,324173,1371393 +120562,234,1,104776,2891 +120563,413,11,12454,11072 +120564,175,5,294272,1660717 +120565,234,1,123949,386918 +120566,286,3,46797,47613 +120567,164,3,11351,1597190 +120568,273,7,9736,30547 +120569,394,7,102668,43750 +120570,75,5,9514,1642513 +120571,204,9,28000,9059 +120572,413,11,4266,19087 +120573,234,1,3520,32375 +120574,317,10,72642,1000754 +120575,60,1,9882,1774870 +120576,3,5,109491,1301 +120577,54,10,409447,1699524 +120578,273,7,376570,1770856 +120579,234,1,40034,237682 +120580,328,6,322443,1052872 +120581,387,10,22267,1617 +120582,87,7,352186,17863 +120583,52,10,22429,1834634 +120584,413,11,394645,51482 +120585,273,7,9629,1090596 +120586,234,1,322400,1420 +120587,273,7,34838,57206 +120588,387,10,9358,20219 +120589,314,2,14181,1545475 +120590,367,11,312497,1287614 +120591,204,9,68629,1538717 +120592,399,9,10020,1615288 +120593,122,8,241258,1795853 +120594,75,5,9314,1749138 +120595,169,3,245891,1043368 +120596,196,7,28176,8276 +120597,413,11,301804,551463 +120598,31,9,72545,585767 +120599,387,10,266102,1312262 +120600,333,2,28448,1434270 +120601,234,1,213983,112132 +120602,387,10,709,9858 +120603,143,7,348631,1570500 +120604,257,3,9946,1171228 +120605,182,8,227975,1414670 +120606,179,2,7299,1322014 +120607,317,10,121929,1088208 +120608,325,5,29424,97920 +120609,102,3,7220,1463765 +120610,317,10,183412,1187853 +120611,147,1,40466,1394567 +120612,277,7,2924,1457285 +120613,53,2,117999,961075 +120614,328,6,329865,1644261 +120615,204,9,397365,1653496 +120616,97,7,72431,8160 +120617,20,2,6947,1573083 +120618,226,2,194,1551965 +120619,5,10,15371,78365 +120620,317,10,17796,18355 +120621,204,9,379019,1502506 +120622,387,10,153,1769 +120623,234,1,31682,33883 +120624,189,3,19995,1357070 +120625,198,6,8053,1459905 +120626,204,9,334074,1373700 +120627,234,1,11643,3451 +120628,204,9,3597,1688587 +120629,234,1,638,5602 +120630,204,9,78802,1770509 +120631,260,2,395992,1413927 +120632,234,1,14072,35771 +120633,204,9,218425,1312182 +120634,3,5,286521,1171528 +120635,269,9,64944,1178578 +120636,345,7,13205,1409270 +120637,232,10,37454,961757 +120638,250,11,11024,1402036 +120639,413,11,19594,33885 +120640,221,3,522,1397882 +120641,204,9,168259,1493864 +120642,234,1,270672,1400679 +120643,53,2,21927,1416939 +120644,53,2,121636,4350 +120645,53,2,83588,1066328 +120646,317,10,164013,1149292 +120647,373,7,177677,1395024 +120648,413,11,28062,7758 +120649,273,7,158908,72208 +120650,262,6,2046,92467 +120651,413,11,77673,11198 +120652,158,2,284564,1752047 +120653,317,10,1694,1697636 +120654,238,7,12,1556632 +120655,74,5,4147,1558200 +120656,204,9,43753,129805 +120657,317,10,80368,3558 +120658,303,3,360249,1635736 +120659,387,10,9514,57801 +120660,333,2,24973,26175 +120661,387,10,322460,107333 +120662,317,10,55825,75131 +120663,387,10,119409,1147706 +120664,188,8,378441,1797464 +120665,53,2,83754,1293666 +120666,273,7,298228,98867 +120667,105,7,16444,39055 +120668,108,10,279543,1202963 +120669,87,7,19688,1643804 +120670,234,1,37581,108983 +120671,387,10,1634,18256 +120672,317,10,18763,62412 +120673,412,9,664,1892486 +120674,53,2,357706,1641624 +120675,234,1,9577,36417 +120676,235,5,14,1568649 +120677,3,5,77859,226611 +120678,234,1,343878,1475410 +120679,148,9,16980,1711516 +120680,209,7,346672,1360111 +120681,234,1,18937,50582 +120682,45,9,132363,1407725 +120683,209,7,10320,1400088 +120684,269,9,13483,1330609 +120685,273,7,9659,58438 +120686,187,11,156711,111879 +120687,413,11,53766,51311 +120688,387,10,25430,18799 +120689,301,5,7299,1377503 +120690,239,5,57597,1332521 +120691,269,9,15036,1873049 +120692,387,10,86321,932971 +120693,413,11,406431,1511480 +120694,360,3,19324,116228 +120695,301,5,66193,1402534 +120696,317,10,320011,75122 +120697,52,10,14063,86378 +120698,234,1,14873,142007 +120699,387,10,36657,10995 +120700,181,7,72105,1534987 +120701,387,10,10294,64785 +120702,234,1,383538,1437178 +120703,317,10,261871,1305383 +120704,204,9,264644,967559 +120705,413,11,58,1722 +120706,105,7,267035,1314243 +120707,245,3,118,1401118 +120708,75,5,14126,1409224 +120709,234,1,176085,1056060 +120710,387,10,91181,94298 +120711,286,3,289198,1192574 +120712,187,11,2567,142155 +120713,67,10,1647,35499 +120714,269,9,300187,75830 +120715,127,3,117,1591739 +120716,226,2,3145,30763 +120717,317,10,67328,156029 +120718,53,2,20210,1323289 +120719,53,2,694,5671 +120720,273,7,11692,11098 +120721,317,10,32628,8635 +120722,413,11,34193,6491 +120723,67,10,3933,1451299 +120724,273,7,41857,1760 +120725,287,3,132363,1407722 +120726,232,10,147618,1551429 +120727,148,9,39407,980431 +120728,182,8,245891,1512738 +120729,3,5,137093,27154 +120730,269,9,72465,71496 +120731,164,3,181533,1558713 +120732,269,9,239018,1181130 +120733,3,5,339342,1308365 +120734,317,10,62897,116158 +120735,3,5,41733,5387 +120736,12,10,125510,1462947 +120737,317,10,364379,1523859 +120738,143,7,395992,1342657 +120739,203,1,5,1342669 +120740,226,2,14510,1449495 +120741,327,7,10330,83087 +120742,179,2,10320,1439109 +120743,53,2,19898,52962 +120744,310,3,10193,8092 +120745,317,10,46570,4955 +120746,273,7,9902,43609 +120747,75,5,16921,1367346 +120748,189,3,76600,1357070 +120749,273,7,150065,59885 +120750,196,7,19995,8159 +120751,226,2,167,957264 +120752,317,10,122368,4453 +120753,413,11,57996,31985 +120754,387,10,43751,133004 +120755,155,3,10193,1417 +120756,234,1,42472,21544 +120757,239,5,11377,1554339 +120758,317,10,77585,567964 +120759,204,9,79707,132946 +120760,113,9,9946,1432008 +120761,399,9,10198,1615581 +120762,373,7,294254,1347740 +120763,333,2,33729,7689 +120764,84,7,354859,1415964 +120765,317,10,21070,1063185 +120766,190,7,46738,1536193 +120767,269,9,261037,996410 +120768,244,3,755,57112 +120769,273,7,57996,1894237 +120770,3,5,108222,13270 +120771,333,2,10400,1477084 +120772,413,11,41171,10440 +120773,349,1,9023,1463252 +120774,387,10,22784,68684 +120775,317,10,71147,81826 +120776,413,11,229254,1114918 +120777,413,11,2355,24186 +120778,3,5,1589,25398 +120779,234,1,257345,59998 +120780,413,11,52251,48789 +120781,53,2,233639,1792021 +120782,342,3,43009,1529469 +120783,273,7,3574,29810 +120784,333,2,177155,1599493 +120785,234,1,382598,1067317 +120786,413,11,20481,898 +120787,245,3,18763,35452 +120788,3,5,10776,14456 +120789,273,7,43367,4082 +120790,204,9,83430,1129440 +120791,413,11,50647,5668 +120792,387,10,1271,1272667 +120793,317,10,127864,95528 +120794,273,7,99008,1019843 +120795,105,7,118195,1317239 +120796,387,10,17658,49183 +120797,3,5,28519,21655 +120798,269,9,110146,61627 +120799,52,10,43855,555902 +120800,213,10,47943,18175 +120801,234,1,250332,33377 +120802,317,10,19918,137550 +120803,317,10,96713,319923 +120804,413,11,12144,69613 +120805,148,9,239566,970192 +120806,148,9,120657,9063 +120807,262,6,12171,1193873 +120808,387,10,422,4415 +120809,273,7,64428,33216 +120810,108,10,101363,62923 +120811,127,3,4476,1007395 +120812,53,2,253310,1143008 +120813,3,5,17590,10765 +120814,46,5,9504,1530325 +120815,53,2,123961,41414 +120816,234,1,270470,31898 +120817,314,2,10665,1506367 +120818,234,1,120370,20833 +120819,127,3,244316,1737894 +120820,234,1,11812,11873 +120821,105,7,6183,48500 +120822,234,1,208968,65133 +120823,234,1,182899,70862 +120824,37,3,14128,1726806 +120825,34,8,4248,1552061 +120826,413,11,1813,1732 +120827,387,10,1942,1068828 +120828,226,2,257088,43159 +120829,387,10,38769,1043023 +120830,200,3,57201,1407019 +120831,3,5,118536,13809 +120832,286,3,24559,4008 +120833,333,2,73835,1606290 +120834,413,11,18725,1361 +120835,182,8,325712,1879671 +120836,196,7,10590,1406826 +120837,277,3,2675,1400368 +120838,196,7,11236,1881619 +120839,234,1,26687,28233 +120840,58,2,16176,1860717 +120841,289,6,3933,1448043 +120842,387,10,39957,1682906 +120843,317,10,40859,1180859 +120844,234,1,315850,57604 +120845,3,5,10586,12235 +120846,273,7,11120,2704 +120847,387,10,1640,137064 +120848,328,6,5915,113155 +120849,38,10,327225,114866 +120850,234,1,104211,72061 +120851,236,8,5,1601800 +120852,226,2,28893,1411166 +120853,232,10,104430,147010 +120854,273,7,42640,1086331 +120855,75,5,336050,1440042 +120856,317,10,151911,89084 +120857,234,1,127493,12786 +120858,413,11,345915,1328410 +120859,413,11,140,413 +120860,203,1,6038,1404549 +120861,143,7,1164,16994 +120862,394,7,370234,1470708 +120863,53,2,788,11714 +120864,413,11,24810,16568 +120865,234,1,184328,89745 +120866,143,7,334074,1337409 +120867,105,7,10692,1072476 +120868,373,7,84318,1084967 +120869,317,10,47466,1203291 +120870,113,9,82627,928337 +120871,234,1,4248,35689 +120872,179,2,2454,1323281 +120873,277,3,346672,1338845 +120874,158,2,127521,1542734 +120875,179,2,60935,1321698 +120876,46,5,6973,1706639 +120877,105,7,98368,1428539 +120878,234,1,45949,45133 +120879,250,11,328429,1379970 +120880,413,11,224251,1317662 +120881,148,9,443319,1888977 +120882,234,1,433471,8046 +120883,413,11,36751,116122 +120884,53,2,1058,1620056 +120885,15,6,10539,1454028 +120886,277,7,121636,1533682 +120887,203,1,42188,1394104 +120888,333,2,109379,1597025 +120889,387,10,257444,582039 +120890,352,3,9428,1550727 +120891,388,9,72545,1859963 +120892,75,5,312831,1594160 +120893,234,1,45431,171042 +120894,413,11,92950,564868 +120895,3,5,88390,41186 +120896,413,11,79645,7715 +120897,317,10,333667,12905 +120898,234,1,230295,76367 +120899,413,11,228339,1277470 +120900,123,3,15060,5741 +120901,317,10,312174,1400588 +120902,215,8,382155,1636682 +120903,53,2,95627,1538341 +120904,53,2,5922,1457520 +120905,189,3,9893,1559614 +120906,186,6,328111,1479533 +120907,234,1,182097,1163090 +120908,387,10,68063,225160 +120909,387,10,47489,37451 +120910,234,1,19855,18250 +120911,360,3,17577,1423835 +120912,413,11,241574,13781 +120913,234,1,209410,224221 +120914,203,1,87826,1473981 +120915,169,3,522,16641 +120916,3,5,274479,969171 +120917,234,1,131194,12009 +120918,208,2,403,1318806 +120919,234,1,26223,111412 +120920,105,7,9403,58099 +120921,387,10,275269,1676432 +120922,360,3,2105,1552181 +120923,239,5,68822,1411914 +120924,166,9,634,1575989 +120925,204,9,79593,1339812 +120926,53,2,43497,12145 +120927,234,1,34935,148098 +120928,209,7,11547,1407884 +120929,143,7,44943,113081 +120930,203,1,375366,1740770 +120931,325,5,287,1214 +120932,3,5,9717,1044 +120933,269,9,982,12017 +120934,413,11,128900,1158264 +120935,273,7,9274,57103 +120936,204,9,42191,4349 +120937,377,3,11377,1602866 +120938,234,1,183832,29962 +120939,317,10,370687,1188321 +120940,398,9,9426,6629 +120941,234,1,270007,33254 +120942,203,1,362057,1401635 +120943,394,7,11812,1544669 +120944,87,7,340101,1533532 +120945,413,11,12499,7068 +120946,190,7,11024,230134 +120947,384,5,10204,1556948 +120948,169,3,294272,1635535 +120949,286,3,365065,71277 +120950,234,1,286709,1352991 +120951,175,5,373546,1869444 +120952,317,10,38461,120709 +120953,317,10,331737,997630 +120954,234,1,379441,1499810 +120955,108,10,150247,1211787 +120956,273,7,389972,636 +120957,245,3,11832,1503457 +120958,3,5,264555,1396777 +120959,273,7,33025,101711 +120960,413,11,125521,1453725 +120961,5,10,287636,13971 +120962,204,9,30973,107418 +120963,234,1,10795,19866 +120964,105,7,327225,1036376 +120965,189,3,70074,1401771 +120966,97,7,7454,1353257 +120967,196,7,228066,1335562 +120968,373,7,167073,1465947 +120969,234,1,107028,47846 +120970,220,7,28000,175505 +120971,64,6,420703,1692968 +120972,317,10,57918,573778 +120973,273,7,76380,580664 +120974,135,3,6947,1229586 +120975,75,5,1966,1398108 +120976,262,6,69668,1221442 +120977,12,10,76600,2710 +120978,317,10,17971,44481 +120979,273,7,17009,4500 +120980,75,5,437253,1561811 +120981,3,5,49961,143148 +120982,234,1,170689,129433 +120983,234,1,443053,1673693 +120984,340,2,413452,1877805 +120985,188,8,163791,1601463 +120986,413,11,11517,11454 +120987,143,7,49009,1341403 +120988,273,7,172475,9217 +120989,3,5,43546,10537 +120990,413,11,121848,18595 +120991,188,8,10733,1463693 +120992,317,10,182228,558864 +120993,232,10,85507,14649 +120994,234,1,244783,1280037 +120995,60,1,105509,1682631 +120996,3,5,27102,19054 +120997,148,9,21338,54760 +120998,277,7,11953,1534577 +120999,269,9,17111,1629462 +121000,273,7,98339,1124949 +121001,66,11,11697,5166 +121002,317,10,47778,65843 +121003,333,2,28430,30939 +121004,143,7,8247,1340345 +121005,226,2,345922,1815599 +121006,74,5,10665,1836074 +121007,217,3,435,1574644 +121008,22,9,1586,1363843 +121009,317,10,2525,25797 +121010,127,3,57201,1521185 +121011,160,3,7220,92479 +121012,234,1,252028,552707 +121013,317,10,177104,5811 +121014,317,10,16023,34517 +121015,273,7,12124,71353 +121016,226,2,41283,1425409 +121017,52,10,26758,389190 +121018,5,10,11449,62719 +121019,164,3,1995,1546757 +121020,234,1,10748,56710 +121021,328,6,8053,1708859 +121022,3,5,15559,95759 +121023,387,10,10603,26978 +121024,314,2,154972,1731890 +121025,148,9,84735,4188 +121026,3,5,32595,1244651 +121027,2,6,7220,1707102 +121028,317,10,66668,62141 +121029,53,2,102362,5332 +121030,350,6,6947,1573115 +121031,317,10,277190,87905 +121032,328,6,8053,1708860 +121033,204,9,29239,13958 +121034,3,5,56669,720 +121035,387,10,17464,81886 +121036,387,10,2731,27614 +121037,411,9,77949,1087547 +121038,413,11,327225,930467 +121039,60,1,143946,1547483 +121040,269,9,12144,40345 +121041,187,11,84577,1392939 +121042,302,9,93676,1414050 +121043,234,1,225244,20869 +121044,72,11,354859,1884080 +121045,269,9,110160,60892 +121046,226,2,10396,9337 +121047,111,7,954,1749923 +121048,179,2,201085,1322465 +121049,234,1,29952,87510 +121050,387,10,50318,39104 +121051,204,9,44801,1556478 +121052,3,5,11404,30313 +121053,52,10,339530,1519602 +121054,413,11,86732,1004103 +121055,180,7,64928,12496 +121056,373,7,156711,1340116 +121057,143,7,14138,1402926 +121058,317,10,134215,94564 +121059,387,10,43828,148850 +121060,234,1,42494,15206 +121061,188,8,379019,1677763 +121062,53,2,205584,27750 +121063,413,11,171738,577617 +121064,234,1,31364,88142 +121065,394,7,10909,1370960 +121066,413,11,11370,5056 +121067,53,2,9956,10714 +121068,234,1,212481,1089880 +121069,232,10,59401,19708 +121070,317,10,105981,70045 +121071,53,2,265208,963705 +121072,53,2,18405,1522041 +121073,158,2,69,1339455 +121074,317,10,290825,19303 +121075,234,1,154441,933735 +121076,317,10,43891,1220391 +121077,148,9,351211,1339977 +121078,398,9,8619,38414 +121079,203,1,401164,1817457 +121080,239,5,351211,1530724 +121081,226,2,17057,31207 +121082,234,1,47143,9888 +121083,3,5,71725,234290 +121084,160,3,80125,40745 +121085,234,1,9598,58137 +121086,306,7,398633,1623937 +121087,234,1,339367,88800 +121088,275,9,378236,189943 +121089,3,5,13946,11419 +121090,75,5,60599,1400503 +121091,419,10,24090,91848 +121092,148,9,11618,11079 +121093,413,11,18897,19367 +121094,40,1,8869,1349452 +121095,234,1,296313,1012 +121096,77,10,13685,5655 +121097,3,5,47426,998745 +121098,3,5,272663,98161 +121099,127,3,11024,113194 +121100,208,2,11321,168214 +121101,234,1,75300,183760 +121102,387,10,153165,33029 +121103,273,7,274857,582922 +121104,286,3,72279,70030 +121105,273,7,8272,21266 +121106,387,10,43875,13802 +121107,234,1,6,2042 +121108,148,9,87516,957368 +121109,314,2,5,144146 +121110,187,11,9543,1299405 +121111,249,7,46261,1162866 +121112,234,1,49929,227412 +121113,373,7,9438,74978 +121114,87,7,88273,1727713 +121115,60,1,302104,1491281 +121116,317,10,174487,67583 +121117,234,1,278706,1344795 +121118,3,5,16232,57126 +121119,234,1,15476,55637 +121120,273,7,48805,1688233 +121121,204,9,38269,41710 +121122,127,3,11879,1907337 +121123,148,9,11017,1467298 +121124,234,1,17725,122590 +121125,3,5,242683,3148 +121126,413,11,339527,1465468 +121127,196,7,176,1339989 +121128,87,7,73424,1544180 +121129,166,9,181533,1368861 +121130,105,7,37725,41846 +121131,287,3,67328,1583636 +121132,413,11,336882,1143761 +121133,234,1,289679,31898 +121134,360,3,3172,1388862 +121135,209,7,245700,1422818 +121136,413,11,41970,62997 +121137,273,7,11333,49455 +121138,273,7,301348,1999 +121139,317,10,124501,212954 +121140,317,10,365222,237191 +121141,187,11,280092,1338151 +121142,413,11,27599,568068 +121143,277,3,289,1581757 +121144,219,11,106049,1149943 +121145,34,8,26390,1526842 +121146,53,2,522,557 +121147,143,7,266856,1338970 +121148,317,10,191820,57851 +121149,269,9,15090,1868701 +121150,226,2,693,1433998 +121151,317,10,20963,1269249 +121152,413,11,31995,70864 +121153,234,1,399810,590960 +121154,3,5,80592,2760 +121155,105,7,347096,1578487 +121156,286,3,84577,1189771 +121157,105,7,332662,1327782 +121158,209,7,245703,1389624 +121159,365,6,15805,1459642 +121160,203,1,2978,1453319 +121161,53,2,46387,1441227 +121162,413,11,285946,117578 +121163,262,6,188927,1345600 +121164,52,10,37936,69890 +121165,273,7,242310,1321167 +121166,148,9,121674,36696 +121167,3,5,177190,8714 +121168,273,7,151043,96709 +121169,373,7,244786,1049456 +121170,234,1,23196,96745 +121171,234,1,148435,232313 +121172,203,1,26656,1423712 +121173,413,11,1999,20538 +121174,148,9,4550,38018 +121175,234,1,26955,96657 +121176,52,10,71825,73194 +121177,198,6,72545,1859976 +121178,74,5,1902,1830641 +121179,413,11,10770,5821 +121180,387,10,237,3055 +121181,273,7,187737,25321 +121182,373,7,257345,1001712 +121183,75,5,72431,1178898 +121184,317,10,348689,1621106 +121185,317,10,268618,1156484 +121186,360,3,85837,1031867 +121187,234,1,153779,1134653 +121188,52,10,27003,935847 +121189,218,1,87936,1462629 +121190,357,3,312831,1594170 +121191,413,11,342765,1473507 +121192,234,1,10992,64191 +121193,387,10,296288,1839935 +121194,204,9,45019,17149 +121195,394,7,317,1599489 +121196,333,2,99261,1266717 +121197,317,10,99095,28256 +121198,67,10,8619,1619111 +121199,413,11,14372,53687 +121200,53,2,4365,37596 +121201,3,5,229,2940 +121202,3,5,12561,50662 +121203,387,10,329819,25340 +121204,53,2,9013,9255 +121205,273,7,1634,7728 +121206,413,11,41574,1583304 +121207,388,9,266856,1406815 +121208,182,8,10921,1402121 +121209,65,3,11351,1597202 +121210,413,11,298,1891 +121211,415,3,2503,1395692 +121212,234,1,149868,1129382 +121213,234,1,25500,93903 +121214,317,10,78568,21678 +121215,196,7,227306,1406390 +121216,143,7,108726,1412626 +121217,409,7,263115,1763560 +121218,373,7,2666,1292186 +121219,198,6,8870,1724282 +121220,333,2,1986,1547364 +121221,301,5,18079,1580956 +121222,37,3,276909,1447542 +121223,5,10,13823,75795 +121224,387,10,6591,50623 +121225,317,10,9059,56859 +121226,105,7,91334,939446 +121227,3,5,30708,14431 +121228,413,11,43139,6346 +121229,209,7,339530,1336439 +121230,53,2,15179,1873047 +121231,45,9,45019,1550202 +121232,234,1,27085,95329 +121233,298,5,76163,1404244 +121234,234,1,374698,128612 +121235,234,1,11862,56106 +121236,376,10,11524,638 +121237,403,10,43817,1258541 +121238,46,5,263115,1821907 +121239,3,5,66894,15804 +121240,387,10,51249,1113289 +121241,387,10,19610,30522 +121242,116,6,16157,77921 +121243,66,11,419430,1033103 +121244,387,10,14029,4955 +121245,175,5,51209,1452340 +121246,166,9,3059,1899121 +121247,317,10,51054,1239113 +121248,209,7,413998,1859629 +121249,60,1,61934,1586042 +121250,3,5,48116,1413561 +121251,403,10,148265,147022 +121252,273,7,38150,558 +121253,52,10,78265,153669 +121254,387,10,106049,1111221 +121255,269,9,3549,19351 +121256,203,1,334,1352983 +121257,234,1,32654,31033 +121258,273,7,336890,64156 +121259,268,7,356500,1445367 +121260,269,9,301334,1172514 +121261,127,3,116463,1456719 +121262,23,9,435,1574634 +121263,317,10,448847,1088094 +121264,148,9,16638,1159503 +121265,234,1,19017,19032 +121266,387,10,20678,1203 +121267,234,1,53870,65678 +121268,387,10,1561,17595 +121269,132,2,353686,1435638 +121270,317,10,110392,70009 +121271,286,3,302036,1384001 +121272,179,2,96724,1417837 +121273,286,3,91333,21289 +121274,317,10,34672,94980 +121275,387,10,160844,1142893 +121276,220,7,18783,34227 +121277,317,10,439998,1258076 +121278,234,1,4476,9181 +121279,273,7,92285,30922 +121280,286,3,202214,1143010 +121281,291,6,59118,1367810 +121282,413,11,136368,1176816 +121283,111,7,9836,1745249 +121284,413,11,10972,37948 +121285,273,7,59147,1705747 +121286,105,7,241639,20682 +121287,346,3,7220,1416826 +121288,234,1,141603,1115093 +121289,413,11,17009,1206324 +121290,387,10,16197,1203482 +121291,317,10,17935,82516 +121292,204,9,70734,14448 +121293,127,3,52661,4130 +121294,12,10,11886,57334 +121295,413,11,233208,1340078 +121296,317,10,23590,89748 +121297,317,10,12903,113896 +121298,204,9,52203,1102510 +121299,341,2,121598,1880928 +121300,148,9,2662,1397725 +121301,75,5,243568,1399513 +121302,200,3,354859,1811595 +121303,3,5,30508,69690 +121304,303,3,9914,33142 +121305,273,7,3081,31500 +121306,234,1,6145,17812 +121307,53,2,87293,1031770 +121308,158,2,238589,1345267 +121309,85,10,46806,83393 +121310,198,6,333371,1636663 +121311,234,1,28169,78021 +121312,286,3,63273,55467 +121313,273,7,287483,1594800 +121314,413,11,71668,1049770 +121315,234,1,17770,21217 +121316,3,5,1726,4867 +121317,103,6,356752,1589731 +121318,289,6,16366,1447297 +121319,105,7,131739,63693 +121320,317,10,28775,41704 +121321,3,5,11848,70713 +121322,317,10,207270,1190085 +121323,333,2,6440,1423204 +121324,387,10,15213,184499 +121325,105,7,327389,1432094 +121326,317,10,51481,106850 +121327,268,7,921,1415964 +121328,72,11,949,1432026 +121329,5,10,209406,1093998 +121330,3,5,209112,17284 +121331,301,5,36094,18084 +121332,53,2,405670,1853234 +121333,54,10,18506,1485213 +121334,387,10,10925,5045 +121335,203,1,63217,1518516 +121336,113,9,157847,1372205 +121337,413,11,63831,70323 +121338,75,5,27917,1340060 +121339,122,8,284052,1774237 +121340,317,10,94204,65817 +121341,234,1,36786,68 +121342,413,11,42787,73261 +121343,53,2,28293,1012329 +121344,317,10,356842,543250 +121345,127,3,22602,121062 +121346,198,6,167073,1578000 +121347,234,1,15213,20006 +121348,273,7,64807,894 +121349,27,3,11618,1765785 +121350,204,9,12780,552386 +121351,5,10,52270,69004 +121352,75,5,8915,1399513 +121353,209,7,17495,565140 +121354,3,5,44414,20693 +121355,413,11,30708,8505 +121356,270,9,3989,34526 +121357,105,7,9945,11770 +121358,234,1,43009,30129 +121359,273,7,29260,30922 +121360,317,10,43149,3241 +121361,123,3,327389,61824 +121362,60,1,132332,54361 +121363,53,2,11643,13866 +121364,289,6,72640,139539 +121365,226,2,11517,1444909 +121366,244,3,297853,1308983 +121367,105,7,77381,1537337 +121368,262,6,313922,1616467 +121369,108,10,36335,115053 +121370,196,7,9532,1407813 +121371,317,10,146233,935990 +121372,186,6,435,1574668 +121373,179,2,46286,1321000 +121374,387,10,40983,931246 +121375,413,11,14830,1009838 +121376,3,5,190410,1277589 +121377,234,1,55448,104879 +121378,234,1,105231,237072 +121379,105,7,308165,37240 +121380,317,10,36129,1100029 +121381,291,6,315664,1544361 +121382,203,1,107811,1460825 +121383,234,1,28178,5306 +121384,413,11,17467,554125 +121385,262,6,40466,36043 +121386,317,10,56143,10807 +121387,143,7,444713,1586803 +121388,12,10,14611,87172 +121389,317,10,18820,83856 +121390,234,1,2087,21370 +121391,132,2,17175,1435576 +121392,3,5,38964,109845 +121393,387,10,110412,97652 +121394,286,3,383914,1423896 +121395,198,6,293167,1759796 +121396,204,9,144475,1132129 +121397,132,2,72545,1338670 +121398,314,2,205584,1403711 +121399,234,1,53380,148000 +121400,22,9,186869,1862933 +121401,317,10,44661,131184 +121402,3,5,332079,33413 +121403,210,9,13056,1708306 +121404,415,3,121848,89533 +121405,344,9,127585,1384365 +121406,176,3,10916,1402108 +121407,234,1,158990,133398 +121408,317,10,32868,109745 +121409,394,7,6977,9619 +121410,277,3,76170,113089 +121411,75,5,145135,1417879 +121412,317,10,26636,95901 +121413,413,11,270899,3564 +121414,273,7,66125,75940 +121415,269,9,6077,47790 +121416,413,11,68184,60947 +121417,413,11,383538,1783000 +121418,413,11,37292,103182 +121419,373,7,263115,113073 +121420,234,1,63877,53861 +121421,413,11,74924,18578 +121422,3,5,73262,1275131 +121423,413,11,8282,23397 +121424,413,11,16281,15840 +121425,3,5,281124,958533 +121426,234,1,141015,212687 +121427,387,10,34127,16745 +121428,289,6,9297,1462695 +121429,234,1,315010,136531 +121430,234,1,33680,34740 +121431,411,9,311324,22061 +121432,386,5,263115,1411846 +121433,387,10,193216,565332 +121434,273,7,2998,1442 +121435,413,11,6935,51513 +121436,269,9,10484,1565956 +121437,148,9,29151,966121 +121438,67,10,19719,85120 +121439,301,5,15472,1455309 +121440,143,7,1164,1462845 +121441,3,5,433244,547303 +121442,387,10,9902,56452 +121443,53,2,236324,1896171 +121444,53,2,285,4034 +121445,269,9,194101,36205 +121446,413,11,8847,56072 +121447,204,9,27523,1190952 +121448,387,10,177474,6835 +121449,234,1,118948,30833 +121450,234,1,334527,17183 +121451,5,10,11171,68438 +121452,394,7,59965,1395022 +121453,190,7,4147,1341414 +121454,413,11,43546,9058 +121455,273,7,76533,1086968 +121456,327,7,395883,1636735 +121457,53,2,4012,35148 +121458,234,1,4286,15127 +121459,416,10,284279,142005 +121460,317,10,3870,4667 +121461,413,11,32904,1512677 +121462,180,7,179103,2791 +121463,5,10,75066,24534 +121464,286,3,7863,52055 +121465,273,7,364410,1536671 +121466,289,6,251,1453284 +121467,376,10,18495,55273 +121468,200,3,4147,1549202 +121469,387,10,22968,26160 +121470,317,10,56666,146970 +121471,317,10,440777,1754588 +121472,234,1,18809,149977 +121473,18,2,9946,1767305 +121474,143,7,146233,1368866 +121475,60,1,351211,1652035 +121476,236,8,2675,1657914 +121477,413,11,330115,60521 +121478,3,5,1991,138 +121479,106,3,11370,1581133 +121480,148,9,168031,8508 +121481,208,2,4133,1416096 +121482,327,7,4011,1550073 +121483,333,2,13777,75294 +121484,301,5,375366,1578004 +121485,234,1,59572,228856 +121486,234,1,9066,31024 +121487,387,10,63066,116583 +121488,204,9,89647,1366728 +121489,20,2,118,135161 +121490,387,10,11972,24912 +121491,234,1,94009,999886 +121492,203,1,312221,1419815 +121493,213,10,47119,49067 +121494,387,10,145247,1122547 +121495,317,10,18725,109300 +121496,143,7,54384,1712869 +121497,413,11,97614,6043 +121498,148,9,22023,1027800 +121499,188,8,163,1727313 +121500,317,10,224813,1210334 +121501,317,10,9981,56643 +121502,413,11,11788,70505 +121503,87,7,8053,1549353 +121504,209,7,10948,1700856 +121505,373,7,14126,1409221 +121506,360,3,127521,1401180 +121507,204,9,42739,34005 +121508,317,10,49073,1013742 +121509,234,1,114333,96369 +121510,387,10,788,11708 +121511,234,1,10134,63937 +121512,387,10,76465,2666 +121513,33,10,15472,1684030 +121514,105,7,13506,1638222 +121515,160,3,14457,92494 +121516,286,3,234155,933277 +121517,234,1,42136,148119 +121518,234,1,87516,5281 +121519,148,9,294272,33303 +121520,5,10,85377,58160 +121521,234,1,37702,65934 +121522,164,3,93856,1547197 +121523,104,7,435,1424533 +121524,97,7,44943,1360101 +121525,327,7,15653,1392131 +121526,387,10,29510,91263 +121527,387,10,4248,35748 +121528,262,6,394645,1864629 +121529,317,10,42251,124819 +121530,353,7,8669,1394984 +121531,104,7,414910,1653251 +121532,60,1,705,123574 +121533,72,11,1165,1544363 +121534,158,2,8470,1326717 +121535,273,7,30014,89804 +121536,413,11,15003,1117882 +121537,373,7,59965,158916 +121538,413,11,457,6245 +121539,262,6,41574,1583302 +121540,387,10,11358,16305 +121541,317,10,170603,50099 +121542,95,8,126889,1746438 +121543,398,9,11618,1391565 +121544,196,7,3682,1415465 +121545,413,11,58985,3661 +121546,234,1,281124,30008 +121547,10,3,5638,81535 +121548,234,1,1418,16973 +121549,72,11,337339,1548461 +121550,387,10,397365,150486 +121551,333,2,4459,26175 +121552,53,2,15045,62643 +121553,234,1,101929,76978 +121554,360,3,10070,1403856 +121555,413,11,67342,46326 +121556,287,3,42709,1413487 +121557,317,10,38546,120677 +121558,53,2,108222,7652 +121559,234,1,39435,76981 +121560,180,7,110412,14934 +121561,273,7,1404,1528 +121562,413,11,151431,10185 +121563,164,3,2454,1554879 +121564,234,1,433082,234400 +121565,317,10,130948,1088500 +121566,387,10,10396,11057 +121567,75,5,12783,132643 +121568,105,7,82708,37084 +121569,327,7,67328,1583638 +121570,413,11,49508,4309 +121571,317,10,13855,1296119 +121572,317,10,273511,1334092 +121573,289,6,24238,1185178 +121574,148,9,43395,9063 +121575,394,7,283686,1405362 +121576,53,2,10096,957115 +121577,277,3,53860,27969 +121578,387,10,42796,108997 +121579,234,1,47792,10316 +121580,239,5,167073,1578002 +121581,317,10,121091,18355 +121582,204,9,227975,1010763 +121583,349,1,8619,1619096 +121584,3,5,443319,1155532 +121585,413,11,53853,42065 +121586,105,7,365065,1518664 +121587,3,5,113638,1559944 +121588,50,3,10204,1613276 +121589,413,11,10389,21905 +121590,234,1,293189,1377521 +121591,314,2,100669,1632802 +121592,127,3,279096,1386320 +121593,387,10,80435,589479 +121594,18,2,104427,7338 +121595,3,5,321142,792304 +121596,148,9,11472,11413 +121597,262,6,145135,1417877 +121598,413,11,66925,1084770 +121599,76,2,81232,1530220 +121600,308,3,857,8159 +121601,373,7,9846,1398123 +121602,234,1,271404,128636 +121603,317,10,84617,933318 +121604,180,7,46149,1520849 +121605,360,3,353686,1639577 +121606,234,1,118293,37626 +121607,3,5,33250,73784 +121608,387,10,138191,1108168 +121609,75,5,356296,1156006 +121610,204,9,6644,31204 +121611,269,9,2172,1310027 +121612,317,10,15712,109888 +121613,111,7,126889,1816351 +121614,387,10,7343,52529 +121615,3,5,10162,23422 +121616,234,1,93263,21377 +121617,373,7,340101,117240 +121618,97,7,27265,1341856 +121619,373,7,313922,1402071 +121620,328,6,44115,1394445 +121621,190,7,9593,3991 +121622,333,2,214938,1597069 +121623,413,11,43256,21781 +121624,360,3,11045,1378217 +121625,234,1,158015,53120 +121626,419,10,271664,1246438 +121627,52,10,99599,1719855 +121628,234,1,11873,1032 +121629,234,1,51303,8635 +121630,373,7,1640,1342242 +121631,52,10,10948,57332 +121632,269,9,52736,13675 +121633,373,7,218778,1404218 +121634,5,10,212756,1197128 +121635,234,1,15022,67966 +121636,234,1,58051,14086 +121637,387,10,24655,56191 +121638,387,10,167221,129979 +121639,3,5,39308,10178 +121640,289,6,9023,1460201 +121641,127,3,52867,1190650 +121642,37,3,76757,1460648 +121643,333,2,359412,1820516 +121644,317,10,13383,1028011 +121645,273,7,28940,1173317 +121646,53,2,23964,1457662 +121647,12,10,95414,20008 +121648,327,7,703,17994 +121649,413,11,67509,53661 +121650,234,1,922,4429 +121651,209,7,58133,227407 +121652,234,1,191476,92796 +121653,259,3,2567,1739545 +121654,234,1,183258,1166389 +121655,207,3,12113,59040 +121656,273,7,11540,51064 +121657,127,3,11202,195854 +121658,413,11,10333,15005 +121659,198,6,293660,1580855 +121660,289,6,3933,1308887 +121661,196,7,149509,2688 +121662,204,9,409502,1779350 +121663,226,2,9504,91051 +121664,269,9,43228,31256 +121665,317,10,17609,42 +121666,317,10,169,1092 +121667,340,2,857,1837372 +121668,5,10,74525,87392 +121669,373,7,17622,229837 +121670,60,1,18,1128252 +121671,127,3,246655,1551344 +121672,234,1,139589,1037369 +121673,234,1,118677,1031692 +121674,413,11,10484,66272 +121675,387,10,11795,71300 +121676,53,2,369885,498 +121677,413,11,97365,4280 +121678,317,10,56937,77966 +121679,66,11,33273,1199577 +121680,204,9,291413,1746574 +121681,234,1,19958,72624 +121682,273,7,21142,40240 +121683,187,11,274857,1548389 +121684,105,7,318781,958778 +121685,273,7,8816,3862 +121686,413,11,9404,70112 +121687,413,11,229702,1070338 +121688,387,10,4266,19069 +121689,413,11,329865,999565 +121690,97,7,11377,1478854 +121691,234,1,64156,94744 +121692,273,7,184345,1094388 +121693,3,5,137321,8750 +121694,387,10,260312,69403 +121695,317,10,271185,54781 +121696,204,9,28893,29437 +121697,273,7,253310,1031656 +121698,5,10,108972,550582 +121699,60,1,16638,1035872 +121700,273,7,36785,116201 +121701,239,5,6171,1579180 +121702,182,8,167073,1578003 +121703,234,1,169782,47935 +121704,234,1,448879,1362660 +121705,75,5,34231,1460040 +121706,234,1,449674,52849 +121707,234,1,31078,4137 +121708,148,9,10351,1326089 +121709,413,11,283384,995558 +121710,105,7,49110,1168192 +121711,187,11,82,1357059 +121712,317,10,98328,117720 +121713,387,10,214909,14859 +121714,413,11,3782,5026 +121715,34,8,1647,1752689 +121716,413,11,258193,8751 +121717,182,8,76203,1490951 +121718,350,6,443319,1888984 +121719,226,2,168027,1460739 +121720,413,11,1773,29343 +121721,66,11,345915,1752050 +121722,66,11,578,66167 +121723,273,7,293516,230410 +121724,301,5,84577,1392944 +121725,269,9,383140,1097202 +121726,234,1,27503,1496 +121727,3,5,96411,23614 +121728,3,5,8888,35655 +121729,289,6,10539,8037 +121730,394,7,7299,554887 +121731,234,1,8665,14392 +121732,72,11,296523,1780486 +121733,3,5,815,15875 +121734,234,1,308024,1155547 +121735,317,10,238749,928670 +121736,317,10,10493,65432 +121737,77,10,50166,24530 +121738,234,1,810,12099 +121739,182,8,346672,1721320 +121740,105,7,25132,2294 +121741,53,2,9993,61627 +121742,245,3,924,1368878 +121743,273,7,62761,69980 +121744,5,10,2309,23765 +121745,269,9,3050,1260 +121746,97,7,6972,1337413 +121747,387,10,13440,16294 +121748,234,1,403119,100734 +121749,148,9,329865,1590089 +121750,53,2,364088,1748528 +121751,323,10,285270,1103651 +121752,67,10,9904,1447566 +121753,234,1,109417,1046142 +121754,5,10,41996,127456 +121755,135,3,9593,1701247 +121756,87,7,201085,52452 +121757,52,10,47739,139312 +121758,234,1,63958,143630 +121759,83,2,1073,1792656 +121760,213,10,16661,144015 +121761,317,10,59117,10847 +121762,182,8,271404,1764802 +121763,234,1,366631,1531416 +121764,53,2,69605,14493 +121765,333,2,168259,15330 +121766,148,9,3933,34898 +121767,273,7,263115,8377 +121768,105,7,63291,1826877 +121769,234,1,55027,225219 +121770,20,2,325039,1333944 +121771,97,7,230179,1512666 +121772,273,7,1374,16637 +121773,234,1,191536,1189782 +121774,208,2,1717,1318806 +121775,3,5,66175,103163 +121776,234,1,49642,18899 +121777,286,3,205864,1556396 +121778,226,2,60269,1605170 +121779,387,10,198663,1227160 +121780,317,10,42267,6912 +121781,269,9,2721,38090 +121782,387,10,33556,6496 +121783,234,1,63717,40260 +121784,387,10,292625,238752 +121785,333,2,116463,1318185 +121786,317,10,14286,84369 +121787,234,1,122019,974634 +121788,317,10,42225,24279 +121789,301,5,10145,1418398 +121790,387,10,103938,30171 +121791,226,2,19754,1286355 +121792,289,6,108048,1381308 +121793,3,5,315846,1333055 +121794,46,5,48281,1779337 +121795,3,5,357706,1504439 +121796,317,10,85317,223905 +121797,206,3,293167,1759739 +121798,234,1,93511,587 +121799,286,3,218772,1203510 +121800,415,3,817,14193 +121801,234,1,129115,1088581 +121802,413,11,10796,57858 +121803,22,9,418437,1461391 +121804,394,7,227306,1404903 +121805,403,10,41597,127018 +121806,45,9,332567,1718713 +121807,234,1,10797,66879 +121808,413,11,2071,5242 +121809,387,10,21242,69936 +121810,269,9,9568,1535125 +121811,317,10,120212,54349 +121812,413,11,44208,29598 +121813,301,5,311324,1395029 +121814,413,11,28739,16534 +121815,226,2,140607,1458416 +121816,234,1,12230,57314 +121817,413,11,18044,1021155 +121818,143,7,113432,1104950 +121819,234,1,41478,16214 +121820,77,10,10265,46325 +121821,182,8,332168,1437084 +121822,388,9,10727,1418277 +121823,234,1,110909,90 +121824,234,1,384594,1210464 +121825,53,2,163376,10189 +121826,97,7,46738,1536195 +121827,53,2,112991,960759 +121828,148,9,28026,1322482 +121829,273,7,28425,1694573 +121830,234,1,87204,252729 +121831,203,1,23048,1460786 +121832,415,3,15794,119537 +121833,3,5,29094,3351 +121834,64,6,33613,927979 +121835,234,1,26810,124971 +121836,236,8,18,1408361 +121837,387,10,11425,52845 +121838,373,7,264525,1568918 +121839,226,2,46586,1582125 +121840,269,9,255160,1348662 +121841,269,9,73723,61300 +121842,291,6,17771,1536574 +121843,387,10,291907,1066909 +121844,52,10,26036,9858 +121845,158,2,19995,1401814 +121846,346,3,10344,1403550 +121847,269,9,113148,1147603 +121848,373,7,10865,3996 +121849,165,9,664,1684676 +121850,317,10,120588,34312 +121851,317,10,71041,68 +121852,387,10,101669,238574 +121853,262,6,93856,14924 +121854,179,2,703,81532 +121855,53,2,26293,1308342 +121856,64,6,33364,545525 +121857,413,11,41760,3099 +121858,262,6,243940,1525154 +121859,5,10,238307,549129 +121860,207,3,1381,1401600 +121861,273,7,33792,26026 +121862,53,2,169881,19897 +121863,3,5,346723,1482820 +121864,53,2,189682,1078874 +121865,360,3,18417,83074 +121866,12,10,9651,1072763 +121867,234,1,47342,63937 +121868,236,8,329865,1593425 +121869,398,9,203833,1338964 +121870,204,9,86600,77601 +121871,188,8,21159,91807 +121872,187,11,328429,1636717 +121873,60,1,9716,1661544 +121874,234,1,86241,72427 +121875,203,1,373546,1869438 +121876,175,5,318553,1647018 +121877,234,1,165864,1149038 +121878,317,10,24685,34613 +121879,262,6,12783,1408384 +121880,234,1,55437,1247816 +121881,419,10,134201,1366426 +121882,333,2,177677,1428912 +121883,234,1,37438,613697 +121884,366,3,2675,1674657 +121885,3,5,61984,43659 +121886,226,2,13483,1402045 +121887,413,11,325133,225628 +121888,239,5,2009,1586629 +121889,158,2,203833,1339057 +121890,317,10,424971,1265785 +121891,234,1,48273,1191229 +121892,196,7,954,1400906 +121893,204,9,10389,24996 +121894,3,5,65488,10005 +121895,413,11,83802,1081853 +121896,317,10,60899,6648 +121897,387,10,51994,93911 +121898,105,7,203217,1683033 +121899,317,10,67025,111390 +121900,387,10,10872,1483063 +121901,15,6,76170,1452989 +121902,5,10,77762,1088722 +121903,209,7,9543,1405219 +121904,148,9,1833,19321 +121905,234,1,180252,1293597 +121906,394,7,338518,1334764 +121907,60,1,30644,1827211 +121908,317,10,336271,1029298 +121909,234,1,172705,1155287 +121910,273,7,70006,59885 +121911,234,1,26612,66076 +121912,387,10,310126,120025 +121913,317,10,24411,56281 +121914,333,2,205584,1403711 +121915,269,9,9717,12017 +121916,234,1,348389,12786 +121917,226,2,45714,1276604 +121918,387,10,3087,2665 +121919,387,10,5332,43621 +121920,234,1,1911,1090 +121921,3,5,12289,554080 +121922,133,3,24266,1202729 +121923,234,1,84340,163784 +121924,296,3,18,1536572 +121925,196,7,310137,1636832 +121926,72,11,12767,1327842 +121927,196,7,365942,1738140 +121928,360,3,189,1401130 +121929,360,3,137504,1530405 +121930,234,1,11636,70109 +121931,203,1,11321,1480099 +121932,148,9,2105,21591 +121933,148,9,42569,1050 +121934,413,11,215928,10762 +121935,75,5,49502,1398539 +121936,317,10,22025,130460 +121937,53,2,17691,1709861 +121938,234,1,371741,55251 +121939,244,3,77459,56230 +121940,273,7,9443,595 +121941,51,9,8916,64444 +121942,53,2,74777,583467 +121943,225,7,419430,1734426 +121944,177,6,9946,1620012 +121945,262,6,57749,1410554 +121946,273,7,9555,39624 +121947,413,11,1793,3175 +121948,413,11,7972,53468 +121949,234,1,67509,548759 +121950,198,6,8869,1076157 +121951,394,7,55846,1404861 +121952,317,10,16296,80249 +121953,413,11,2321,4869 +121954,327,7,251,3430 +121955,234,1,9677,58483 +121956,148,9,263627,1329405 +121957,132,2,333663,1269675 +121958,234,1,20424,11489 +121959,234,1,24927,92844 +121960,189,3,294690,63504 +121961,377,3,74,1853828 +121962,234,1,34449,112391 +121963,301,5,274479,1424696 +121964,413,11,116463,1313033 +121965,226,2,19176,1409819 +121966,234,1,38982,44847 +121967,413,11,9451,32796 +121968,317,10,17640,13286 +121969,413,11,1421,3585 +121970,20,2,312221,1490767 +121971,413,11,242090,1328183 +121972,262,6,157847,1372210 +121973,234,1,140652,141964 +121974,234,1,9023,12079 +121975,317,10,287603,1214063 +121976,387,10,277355,1413094 +121977,234,1,352094,145221 +121978,204,9,14047,7717 +121979,387,10,241239,556172 +121980,234,1,118943,100036 +121981,52,10,307479,545330 +121982,234,1,228331,48311 +121983,252,3,11607,1342630 +121984,60,1,25918,1369441 +121985,399,9,22582,1447431 +121986,387,10,417936,589410 +121987,234,1,10192,64151 +121988,413,11,10077,998 +121989,286,3,343878,1475413 +121990,234,1,17622,22140 +121991,234,1,450875,224687 +121992,226,2,1428,1070123 +121993,77,10,14819,41039 +121994,317,10,329550,1604345 +121995,53,2,38987,1154102 +121996,64,6,3172,1553268 +121997,317,10,121895,133050 +121998,273,7,55836,36997 +121999,203,1,1950,1371069 +122000,258,9,43231,32382 +122001,333,2,3484,29254 +122002,234,1,77882,140910 +122003,53,2,44718,8222 +122004,269,9,309879,1170536 +122005,75,5,9352,1373172 +122006,234,1,81787,34264 +122007,234,1,105763,48663 +122008,317,10,31901,58415 +122009,53,2,6575,41084 +122010,97,7,168259,1236340 +122011,180,7,73194,8511 +122012,333,2,19912,1441390 +122013,269,9,796,11877 +122014,394,7,189,1401136 +122015,67,10,26809,1364882 +122016,234,1,63281,236808 +122017,234,1,59424,127920 +122018,65,3,163,92503 +122019,387,10,38883,81796 +122020,204,9,19398,1469354 +122021,413,11,12540,56972 +122022,3,5,32029,19102 +122023,387,10,40804,143522 +122024,413,11,25953,88976 +122025,352,3,1251,1377138 +122026,413,11,52362,22087 +122027,234,1,28275,185455 +122028,415,3,27917,1340059 +122029,333,2,224,1610115 +122030,132,2,193893,1445820 +122031,387,10,106635,4509 +122032,53,2,1278,16340 +122033,234,1,41312,126126 +122034,314,2,272693,1412770 +122035,317,10,38362,98482 +122036,53,2,9441,36429 +122037,13,3,25673,24793 +122038,387,10,32921,81019 +122039,413,11,42093,64069 +122040,250,11,284564,1396825 +122041,246,6,40466,59287 +122042,289,6,205584,1453014 +122043,3,5,42187,127537 +122044,317,10,46189,135362 +122045,387,10,10863,58180 +122046,105,7,77459,1820915 +122047,289,6,291270,1453526 +122048,60,1,71067,29576 +122049,3,5,13777,75303 +122050,204,9,20357,17794 +122051,317,10,335051,229269 +122052,234,1,26299,567566 +122053,291,6,28176,1609386 +122054,75,5,43727,1149583 +122055,15,6,324670,1661400 +122056,3,5,89086,3356 +122057,234,1,63486,239442 +122058,105,7,157293,545639 +122059,301,5,293660,1394972 +122060,192,5,384262,1646175 +122061,204,9,16997,1128268 +122062,317,10,58309,129433 +122063,350,6,11618,1765817 +122064,317,10,61799,31890 +122065,387,10,86643,107002 +122066,250,11,167073,1574102 +122067,317,10,29101,74888 +122068,3,5,15559,1440070 +122069,289,6,53178,557250 +122070,387,10,51049,84692 +122071,387,10,202662,146827 +122072,360,9,334527,1579392 +122073,87,7,38579,1527657 +122074,373,7,287903,1395709 +122075,53,2,236399,1323119 +122076,175,5,12113,1177850 +122077,415,3,2084,34553 +122078,5,10,10645,66110 +122079,244,3,11370,1581134 +122080,317,10,57684,8501 +122081,413,11,94727,10092 +122082,77,10,16320,12891 +122083,413,11,14052,56944 +122084,176,3,269173,1379043 +122085,196,7,35001,122083 +122086,394,7,241239,7764 +122087,52,10,27966,80728 +122088,52,10,166904,133433 +122089,234,1,49073,141760 +122090,289,6,58159,150768 +122091,113,9,9785,60596 +122092,52,10,185289,133433 +122093,204,9,38715,11489 +122094,204,9,814,5059 +122095,5,10,26376,128780 +122096,273,7,168295,1487840 +122097,269,9,1574,11002 +122098,269,9,77875,19291 +122099,273,7,381015,586000 +122100,226,2,87514,1404271 +122101,52,10,164954,148161 +122102,387,10,198795,1149698 +122103,317,10,104954,50818 +122104,198,6,311324,113120 +122105,328,6,345925,1699376 +122106,413,11,9624,58208 +122107,328,6,97365,1565693 +122108,317,10,47878,1197996 +122109,52,10,85640,41720 +122110,175,5,130948,1298942 +122111,317,10,229328,1637883 +122112,5,10,11362,24840 +122113,317,10,64130,238637 +122114,5,10,8204,54052 +122115,5,10,1904,19853 +122116,204,9,413452,1103566 +122117,387,10,90034,938147 +122118,317,10,47694,554842 +122119,234,1,97643,36423 +122120,317,10,136368,962478 +122121,387,10,39407,5028 +122122,196,7,267579,1583167 +122123,234,1,317723,1413112 +122124,196,7,8869,14764 +122125,234,1,22579,88943 +122126,413,11,301304,1099943 +122127,148,9,87827,8384 +122128,317,10,16417,80526 +122129,234,1,184402,2798 +122130,387,10,4191,18558 +122131,182,8,353686,1417994 +122132,317,10,226968,195858 +122133,413,11,10208,45862 +122134,273,7,28421,30130 +122135,398,9,59981,1339441 +122136,204,9,10594,65768 +122137,234,1,64827,126973 +122138,289,6,22752,572069 +122139,317,10,347666,85553 +122140,317,10,161620,1214879 +122141,234,1,409550,1039349 +122142,179,2,539,3456 +122143,12,10,9358,57429 +122144,317,10,24936,101446 +122145,3,5,126550,117025 +122146,105,7,292387,932233 +122147,333,2,10973,14498 +122148,360,3,223551,1263793 +122149,262,6,15019,1540921 +122150,317,10,58704,1429017 +122151,273,7,37929,119148 +122152,204,9,27814,1856486 +122153,289,6,9514,1642551 +122154,373,7,74,1401687 +122155,196,7,189,85960 +122156,105,7,219466,72854 +122157,53,2,18801,1144738 +122158,204,9,46149,1132463 +122159,413,11,6341,51228 +122160,105,7,57680,45990 +122161,11,6,75174,1472418 +122162,317,10,31942,170706 +122163,413,11,199575,75730 +122164,289,6,19354,549834 +122165,292,3,2503,1657438 +122166,18,2,48231,1581119 +122167,387,10,15387,135678 +122168,12,10,280092,2128 +122169,204,9,99861,1334420 +122170,398,9,49308,1351635 +122171,5,10,62720,235857 +122172,3,5,18569,13270 +122173,304,10,12684,27918 +122174,234,1,15794,8823 +122175,331,3,169,1553254 +122176,234,1,42420,128107 +122177,66,11,419430,1814562 +122178,208,2,397837,1514576 +122179,234,1,40029,1041643 +122180,148,9,20372,1082878 +122181,387,10,18978,27968 +122182,204,9,2525,25802 +122183,235,5,274504,1444781 +122184,3,5,55283,1307748 +122185,413,11,82,10816 +122186,413,11,128625,1087479 +122187,317,10,407531,1654251 +122188,60,1,469172,1682256 +122189,234,1,17496,14838 +122190,317,10,61552,221503 +122191,203,1,2009,1566952 +122192,234,1,246741,55936 +122193,317,10,282024,120232 +122194,234,1,81188,151007 +122195,262,6,9664,1233684 +122196,87,7,1415,113844 +122197,204,9,274857,1428907 +122198,127,3,43522,161961 +122199,317,10,63924,101788 +122200,317,10,329440,1450234 +122201,333,2,84178,1332200 +122202,298,5,17654,1424631 +122203,53,2,10590,65710 +122204,311,9,8470,1840062 +122205,196,7,11517,1551345 +122206,346,3,9457,1421758 +122207,413,11,5721,4590 +122208,105,7,82178,998190 +122209,413,11,11680,57288 +122210,203,1,19338,1407251 +122211,268,7,11788,1379983 +122212,373,7,341174,1394131 +122213,317,10,47956,66224 +122214,51,9,10727,1584235 +122215,317,10,19029,84013 +122216,333,2,52395,1332210 +122217,413,11,173189,1099943 +122218,234,1,277396,3359 +122219,277,3,59981,1438903 +122220,387,10,1790,19105 +122221,412,9,74,1481340 +122222,387,10,464111,82195 +122223,148,9,43117,11083 +122224,273,7,47540,1057144 +122225,387,10,59962,132315 +122226,234,1,5551,190 +122227,387,10,12528,1723 +122228,60,1,95169,1093512 +122229,75,5,239566,1418398 +122230,180,7,33367,28685 +122231,234,1,415358,1069553 +122232,413,11,42619,1048 +122233,45,9,102629,1429342 +122234,53,2,197849,233723 +122235,45,9,302699,1608760 +122236,3,5,59744,67578 +122237,413,11,10795,3564 +122238,5,10,42941,37622 +122239,5,10,38433,117692 +122240,387,10,64807,1536766 +122241,3,5,113743,9080 +122242,208,2,337339,1309209 +122243,234,1,315880,65314 +122244,3,5,15745,1357 +122245,234,1,9252,3768 +122246,387,10,345775,1587695 +122247,5,10,49334,142034 +122248,317,10,156015,3583 +122249,182,8,11236,1398110 +122250,234,1,25969,56059 +122251,148,9,46261,5548 +122252,203,1,21629,1442518 +122253,277,3,55433,222366 +122254,20,2,2115,1534509 +122255,373,7,9358,158916 +122256,5,10,72199,126966 +122257,411,9,8204,8704 +122258,317,10,78177,102445 +122259,52,10,81310,148822 +122260,234,1,15045,54644 +122261,413,11,24624,957581 +122262,203,1,1902,1409857 +122263,209,7,40807,15354 +122264,234,1,43256,18392 +122265,289,6,9297,1455542 +122266,413,11,31287,238298 +122267,234,1,65211,111416 +122268,234,1,15875,8500 +122269,200,3,19995,1401791 +122270,413,11,34459,1569281 +122271,349,1,177572,1447483 +122272,286,3,332794,1473410 +122273,179,2,8053,1571719 +122274,234,1,142391,1322096 +122275,60,1,42669,1102133 +122276,398,9,218778,1666095 +122277,3,5,12,7988 +122278,317,10,27886,72900 +122279,269,9,173205,1321664 +122280,387,10,10610,66125 +122281,234,1,157559,550227 +122282,234,1,4012,30458 +122283,333,2,16442,1249179 +122284,105,7,77673,1204937 +122285,273,7,430826,2863 +122286,226,2,11370,560223 +122287,179,2,28263,1051959 +122288,328,6,333484,1419101 +122289,234,1,27052,96842 +122290,387,10,65048,240293 +122291,399,9,12903,1450356 +122292,187,11,265208,1360097 +122293,3,5,39943,6452 +122294,190,7,227306,1866299 +122295,175,5,42045,1395028 +122296,387,10,90228,9747 +122297,317,10,301804,551463 +122298,234,1,99374,39743 +122299,53,2,54093,33393 +122300,111,7,266856,1746703 +122301,413,11,62492,54798 +122302,317,10,228339,129528 +122303,75,5,44510,5602 +122304,273,7,10458,67501 +122305,234,1,93562,44878 +122306,187,11,131737,1341737 +122307,147,1,42764,1766559 +122308,376,10,157351,39781 +122309,143,7,242310,1355878 +122310,204,9,53150,30859 +122311,53,2,71041,49421 +122312,387,10,17464,81888 +122313,187,11,9836,1391721 +122314,317,10,47211,96369 +122315,286,3,144680,1847978 +122316,269,9,333484,12131 +122317,148,9,2778,35140 +122318,234,1,84228,562691 +122319,234,1,965,40 +122320,234,1,170759,1844 +122321,273,7,433,5838 +122322,262,6,10865,1397792 +122323,234,1,56937,225814 +122324,34,8,381015,1828342 +122325,317,10,11235,68687 +122326,317,10,70874,1189481 +122327,289,6,24238,1454663 +122328,234,1,91607,140354 +122329,282,3,8869,1738123 +122330,413,11,95134,108983 +122331,53,2,157354,8428 +122332,387,10,41857,24792 +122333,204,9,91076,21148 +122334,273,7,781,1076 +122335,52,10,86956,3485 +122336,411,9,7299,1433705 +122337,269,9,17479,1723342 +122338,317,10,41209,284642 +122339,317,10,73027,567806 +122340,225,7,274857,1815718 +122341,3,5,32684,33413 +122342,269,9,351065,1431609 +122343,234,1,33224,31336 +122344,317,10,70554,207687 +122345,3,5,58060,7560 +122346,234,1,38787,8635 +122347,387,10,22999,131406 +122348,46,5,3059,93905 +122349,304,10,5552,44070 +122350,277,3,28571,8627 +122351,3,5,285,120 +122352,3,5,178809,25744 +122353,167,3,2503,1406852 +122354,413,11,42182,50716 +122355,175,5,10796,1407822 +122356,160,3,245700,57569 +122357,53,2,76,3726 +122358,234,1,56232,228071 +122359,5,10,13562,74660 +122360,234,1,273296,78298 +122361,273,7,310137,7741 +122362,234,1,52366,20718 +122363,196,7,266856,1408374 +122364,169,3,194,1551969 +122365,409,7,238,1789636 +122366,317,10,96987,45407 +122367,77,10,12453,72280 +122368,413,11,11338,14457 +122369,234,1,311301,4617 +122370,204,9,323435,1559458 +122371,105,7,19918,41674 +122372,262,6,209112,1439088 +122373,234,1,53685,1016047 +122374,228,2,227306,1746452 +122375,387,10,246299,29807 +122376,413,11,241639,1018987 +122377,204,9,9297,14341 +122378,3,5,33592,983118 +122379,234,1,62116,24481 +122380,3,5,190876,1171446 +122381,52,10,1694,67054 +122382,289,6,146381,1455618 +122383,317,10,95169,9084 +122384,105,7,121848,13336 +122385,286,3,78450,584058 +122386,197,5,2662,1841915 +122387,97,7,168259,548445 +122388,273,7,35253,114357 +122389,234,1,24424,91602 +122390,75,5,8619,1377229 +122391,180,7,321315,1561810 +122392,60,1,86718,1056846 +122393,234,1,204553,1293085 +122394,190,7,8276,1544410 +122395,187,11,190955,1372087 +122396,203,1,24624,1540847 +122397,387,10,11545,5655 +122398,234,1,460870,1829915 +122399,234,1,416569,1064049 +122400,250,11,45244,1605656 +122401,5,10,25934,1185793 +122402,3,5,177566,81297 +122403,234,1,64357,21171 +122404,234,1,53622,88648 +122405,234,1,22328,15657 +122406,387,10,10869,5834 +122407,28,9,18417,83077 +122408,52,10,100275,179266 +122409,77,10,14078,76328 +122410,273,7,26180,6394 +122411,317,10,84450,1329898 +122412,143,7,1938,10155 +122413,53,2,14878,1033106 +122414,387,10,28564,10601 +122415,269,9,4703,1594469 +122416,105,7,214,2148 +122417,398,9,8247,1399909 +122418,234,1,9945,11770 +122419,317,10,27095,96927 +122420,301,5,200727,1585880 +122421,3,5,405670,1853229 +122422,269,9,96936,1784 +122423,3,5,16342,1036353 +122424,204,9,33839,1027081 +122425,75,5,203833,1339055 +122426,317,10,31385,222108 +122427,79,7,7326,52455 +122428,52,10,307479,545328 +122429,187,11,6972,1391720 +122430,64,6,14317,1459611 +122431,234,1,92796,10610 +122432,333,2,322443,1542341 +122433,317,10,64450,934090 +122434,148,9,936,14258 +122435,187,11,332411,1579390 +122436,179,2,11618,461 +122437,204,9,5967,24296 +122438,269,9,75363,33261 +122439,52,10,32628,10518 +122440,75,5,47112,1410581 +122441,317,10,29192,228709 +122442,77,10,146,1615 +122443,401,6,10198,137195 +122444,269,9,403605,1771807 +122445,398,9,19995,1376893 +122446,413,11,103850,1427297 +122447,234,1,20507,76813 +122448,204,9,10724,96910 +122449,158,2,4982,1333607 +122450,269,9,72431,6998 +122451,54,10,621,1485825 +122452,413,11,6947,5361 +122453,52,10,10925,64831 +122454,291,6,177677,1435644 +122455,208,2,44129,40104 +122456,3,5,18098,1251 +122457,234,1,200796,1104819 +122458,105,7,239103,8195 +122459,148,9,38950,41898 +122460,5,10,366630,1531415 +122461,317,10,210910,1194699 +122462,317,10,94170,153536 +122463,204,9,283995,9639 +122464,52,10,85648,1644282 +122465,3,5,96107,16750 +122466,327,7,2047,21079 +122467,413,11,57230,1625937 +122468,208,2,14430,1520952 +122469,328,6,14476,1338229 +122470,105,7,269650,1083854 +122471,105,7,57749,1205937 +122472,3,5,38303,27154 +122473,182,8,16997,1583178 +122474,317,10,52867,588071 +122475,269,9,8840,4710 +122476,258,9,19995,1447524 +122477,60,1,63215,548703 +122478,160,3,204922,141358 +122479,234,1,70027,1422815 +122480,390,6,77459,1297766 +122481,53,2,210047,1293000 +122482,403,10,102632,147022 +122483,34,8,435,1415635 +122484,187,11,1647,8158 +122485,317,10,68797,113601 +122486,232,10,120588,1018785 +122487,273,7,113525,65513 +122488,387,10,13685,5655 +122489,234,1,189472,1053264 +122490,148,9,28668,34115 +122491,207,3,12113,13050 +122492,52,10,175386,130059 +122493,317,10,44933,128459 +122494,273,7,8619,189696 +122495,387,10,12483,61824 +122496,413,11,257088,17399 +122497,269,9,375366,560182 +122498,273,7,416569,1681161 +122499,317,10,16820,15557 +122500,373,7,18937,1341858 +122501,234,1,28270,7501 +122502,3,5,193,1153 +122503,291,6,8204,4657 +122504,303,3,7916,33577 +122505,83,2,310137,1099843 +122506,204,9,17495,1744165 +122507,234,1,180635,99346 +122508,175,5,107250,1179441 +122509,3,5,14370,12235 +122510,234,1,319340,1364491 +122511,234,1,20735,47974 +122512,317,10,64850,87690 +122513,287,3,42149,60261 +122514,235,5,16921,1394414 +122515,387,10,4832,6193 +122516,3,5,20640,14678 +122517,203,1,127521,1427850 +122518,413,11,43455,20601 +122519,13,1,2898,1193637 +122520,269,9,3478,25802 +122521,273,7,28261,4082 +122522,262,6,4248,1399635 +122523,413,11,40047,30386 +122524,262,6,214081,1367653 +122525,3,5,86168,3454 +122526,317,10,21481,87581 +122527,289,6,346672,1721331 +122528,175,5,206647,1470167 +122529,269,9,8325,22120 +122530,204,9,204994,1176363 +122531,296,3,8467,1893227 +122532,387,10,10458,67497 +122533,328,6,324670,1726037 +122534,317,10,77986,107669 +122535,204,9,169881,1519285 +122536,269,9,71701,30139 +122537,53,2,15934,27041 +122538,262,6,329440,1354928 +122539,387,10,37084,22596 +122540,234,1,11561,1243 +122541,72,11,18,59983 +122542,60,1,125736,226631 +122543,234,1,43340,51677 +122544,413,11,890,1851 +122545,387,10,464111,82194 +122546,234,1,344170,87091 +122547,317,10,85699,57184 +122548,234,1,253258,1288712 +122549,373,7,190955,1372090 +122550,413,11,20941,1356138 +122551,416,10,377151,1640920 +122552,273,7,12103,4140 +122553,413,11,6935,51514 +122554,327,7,2721,1470070 +122555,99,3,5753,100266 +122556,317,10,311764,1422145 +122557,387,10,194722,1174924 +122558,401,6,10198,1463902 +122559,204,9,318781,1324460 +122560,53,2,26376,13866 +122561,234,1,28212,16767 +122562,317,10,265563,584335 +122563,53,2,189197,4034 +122564,333,2,156981,1575342 +122565,175,5,28893,1452319 +122566,148,9,19688,578719 +122567,5,10,9629,33766 +122568,161,6,69,1373433 +122569,360,3,140607,1335553 +122570,273,7,39176,32292 +122571,60,1,90395,29281 +122572,161,6,9882,1774880 +122573,413,11,52454,530073 +122574,85,10,630,9051 +122575,234,1,287179,1081449 +122576,53,2,42345,29800 +122577,204,9,50759,552003 +122578,317,10,58732,143998 +122579,249,7,56937,1392614 +122580,273,7,52440,72066 +122581,179,2,163,1607639 +122582,182,8,336882,1059152 +122583,387,10,184741,149128 +122584,331,3,10796,1421334 +122585,387,10,139718,1174357 +122586,387,10,11706,25316 +122587,413,11,41357,4309 +122588,226,2,64129,26176 +122589,387,10,59297,239858 +122590,273,7,68684,567344 +122591,234,1,282963,95893 +122592,317,10,91181,111580 +122593,148,9,290714,1503520 +122594,387,10,43459,1301927 +122595,226,2,36375,1369165 +122596,289,6,12593,1416424 +122597,333,2,98339,1327220 +122598,148,9,238589,1345257 +122599,181,7,96458,1009380 +122600,53,2,118889,8509 +122601,317,10,73700,104025 +122602,413,11,8906,4631 +122603,317,10,80988,1556855 +122604,147,1,32657,1734857 +122605,158,2,100669,1513447 +122606,234,1,460135,1827281 +122607,333,2,28,8340 +122608,3,5,11593,1527 +122609,75,5,11216,1631524 +122610,143,7,7326,1423757 +122611,166,9,286657,1354698 +122612,387,10,36063,1134542 +122613,234,1,363483,92591 +122614,241,3,13576,1449378 +122615,403,10,228355,1114570 +122616,317,10,203217,1095899 +122617,148,9,43117,7687 +122618,387,10,243683,1178584 +122619,97,7,256347,1338154 +122620,317,10,34449,1697477 +122621,234,1,13285,80948 +122622,235,5,198663,1423844 +122623,3,5,104374,17550 +122624,317,10,26566,6980 +122625,52,10,10003,876 +122626,45,9,102382,1347738 +122627,234,1,59828,46307 +122628,203,1,38099,119661 +122629,3,5,14357,1156988 +122630,234,1,210653,974548 +122631,74,5,375366,1740783 +122632,5,10,171337,1156298 +122633,204,9,35002,36823 +122634,394,7,226140,1189275 +122635,196,7,237584,1567347 +122636,317,10,173301,1156075 +122637,234,1,64225,73153 +122638,317,10,111839,72583 +122639,174,6,8619,1619109 +122640,349,1,74961,573543 +122641,286,3,257831,39751 +122642,234,1,308,4429 +122643,273,7,410718,142391 +122644,72,11,12783,1427512 +122645,262,6,159211,1438458 +122646,286,3,29101,1152400 +122647,209,7,9325,70541 +122648,75,5,22279,1725251 +122649,204,9,28110,29651 +122650,3,5,237796,4376 +122651,105,7,106887,1567235 +122652,182,8,7551,1412206 +122653,209,7,227306,1415642 +122654,387,10,134209,1354876 +122655,317,10,15090,77869 +122656,387,10,392271,6496 +122657,387,10,122525,1031934 +122658,349,1,14317,1450350 +122659,317,10,278901,217181 +122660,273,7,10119,63745 +122661,3,5,35021,1426438 +122662,345,7,8470,1372880 +122663,196,7,245168,1416454 +122664,204,9,49521,12653 +122665,373,7,10020,74976 +122666,387,10,75229,7736 +122667,234,1,104430,4109 +122668,105,7,376934,1561595 +122669,127,3,949,1576553 +122670,53,2,22292,1440932 +122671,3,5,27270,33010 +122672,269,9,32021,29651 +122673,234,1,41054,15189 +122674,413,11,140846,1113580 +122675,3,5,186971,26097 +122676,317,10,48843,944889 +122677,413,11,25918,4167 +122678,147,1,188102,1845751 +122679,273,7,139519,1208226 +122680,387,10,212713,83420 +122681,226,2,21968,1655551 +122682,148,9,392818,1754078 +122683,413,11,332806,1475037 +122684,3,5,82626,22057 +122685,45,9,352327,1491846 +122686,234,1,20357,4575 +122687,234,1,14703,6593 +122688,226,2,43139,30763 +122689,413,11,9443,5056 +122690,196,7,245703,1453667 +122691,234,1,79316,1039527 +122692,3,5,413452,61796 +122693,387,10,36658,11013 +122694,141,7,209112,68016 +122695,105,7,422005,228403 +122696,75,5,13616,1399639 +122697,187,11,201085,1561360 +122698,234,1,375355,1211779 +122699,53,2,8079,8733 +122700,387,10,123047,26157 +122701,234,1,43761,120227 +122702,234,1,19606,54451 +122703,234,1,73799,74091 +122704,234,1,148807,1092208 +122705,413,11,334299,65580 +122706,148,9,1381,1447120 +122707,182,8,31911,74985 +122708,317,10,345924,303064 +122709,32,8,189,1401153 +122710,413,11,79611,41376 +122711,317,10,44256,103772 +122712,269,9,309581,14609 +122713,373,7,44115,1394718 +122714,148,9,196469,4907 +122715,234,1,796,11873 +122716,234,1,113743,21506 +122717,277,3,88529,1693555 +122718,234,1,319396,1302737 +122719,387,10,84496,179488 +122720,105,7,65898,134463 +122721,148,9,262528,12120 +122722,3,5,39982,1408662 +122723,143,7,236808,1640807 +122724,270,9,11236,1394780 +122725,234,1,89325,8844 +122726,6,3,49013,1609019 +122727,188,8,2662,1603326 +122728,105,7,315855,1382110 +122729,387,10,3520,5811 +122730,52,10,47404,978545 +122731,317,10,105,1058 +122732,234,1,15440,87883 +122733,317,10,168259,58191 +122734,234,1,49522,63589 +122735,127,3,76341,1025090 +122736,158,2,76170,1323257 +122737,304,10,74585,1930 +122738,105,7,381008,1034503 +122739,273,7,12186,32398 +122740,234,1,11011,18281 +122741,203,1,124963,1449507 +122742,413,11,312174,1383169 +122743,317,10,215999,1111074 +122744,175,5,1381,1392106 +122745,182,8,12113,1553236 +122746,181,7,1950,1552027 +122747,286,3,39979,18835 +122748,415,3,107593,88664 +122749,53,2,118098,130276 +122750,234,1,56601,56506 +122751,333,2,41283,1428127 +122752,234,1,14761,141475 +122753,122,8,9425,1566833 +122754,53,2,27917,9955 +122755,239,5,1966,1733727 +122756,273,7,92257,18479 +122757,53,2,15661,35148 +122758,234,1,16378,80482 +122759,317,10,327935,590781 +122760,413,11,193177,13781 +122761,314,2,218778,1537106 +122762,273,7,108789,1086906 +122763,37,3,325803,1428041 +122764,413,11,441728,17254 +122765,314,2,9914,119556 +122766,77,10,3780,34373 +122767,305,9,31146,1841337 +122768,204,9,236395,3488 +122769,394,7,2924,7764 +122770,413,11,4248,9646 +122771,413,11,30174,1042439 +122772,7,3,14430,1087252 +122773,226,2,50506,1512760 +122774,269,9,14457,1089170 +122775,333,2,43514,4128 +122776,52,10,226968,1242112 +122777,413,11,253309,47204 +122778,52,10,88583,1403662 +122779,175,5,25796,1392106 +122780,269,9,2021,20776 +122781,269,9,8844,9967 +122782,273,7,172,1760 +122783,75,5,9457,23487 +122784,3,5,304372,1179270 +122785,317,10,254268,84027 +122786,305,9,121674,1878859 +122787,327,7,11812,1390524 +122788,182,8,11370,1401331 +122789,53,2,78403,935290 +122790,387,10,3686,18503 +122791,413,11,37247,12015 +122792,3,5,236808,1271730 +122793,415,3,3309,1359680 +122794,148,9,316042,15223 +122795,413,11,38356,13245 +122796,77,10,15677,78515 +122797,196,7,76170,373 +122798,289,6,16366,1176956 +122799,53,2,51144,1641455 +122800,234,1,135204,1101390 +122801,204,9,146521,1722969 +122802,317,10,335819,1460388 +122803,234,1,140887,90070 +122804,317,10,119639,993201 +122805,60,1,284052,1563756 +122806,234,1,327,3317 +122807,317,10,16296,80251 +122808,346,3,2288,1673230 +122809,204,9,16997,1336707 +122810,317,10,215658,1200309 +122811,105,7,77246,7229 +122812,77,10,23114,68690 +122813,204,9,11172,37406 +122814,333,2,3087,1350163 +122815,105,7,773,5359 +122816,235,5,46261,1425390 +122817,187,11,311324,1536974 +122818,387,10,93492,101110 +122819,7,3,4147,1352986 +122820,331,3,2105,231419 +122821,387,10,187442,147333 +122822,204,9,245168,1462348 +122823,148,9,15414,1327762 +122824,187,11,296523,1369376 +122825,53,2,403605,1771808 +122826,234,1,17175,82169 +122827,317,10,44637,131133 +122828,105,7,263627,1024243 +122829,317,10,16137,79544 +122830,317,10,173456,13802 +122831,317,10,273610,1458869 +122832,34,8,188927,1418404 +122833,189,3,10724,117779 +122834,333,2,158598,1139974 +122835,317,10,332806,1061561 +122836,234,1,37700,118346 +122837,148,9,26983,1705505 +122838,113,9,12113,1398083 +122839,45,9,12113,1387217 +122840,387,10,77165,5561 +122841,269,9,7299,7203 +122842,52,10,310137,1397796 +122843,256,3,110416,1618019 +122844,196,7,177677,1335562 +122845,317,10,85729,1059255 +122846,286,3,42430,1776969 +122847,3,5,3037,2337 +122848,77,10,17216,81477 +122849,317,10,31442,1170561 +122850,273,7,12618,10771 +122851,52,10,66526,91552 +122852,98,3,11024,1405210 +122853,234,1,267497,1217046 +122854,387,10,287587,1357551 +122855,409,7,55420,1298750 +122856,3,5,33729,3637 +122857,148,9,26864,1801308 +122858,413,11,9659,58440 +122859,387,10,276935,550327 +122860,269,9,1991,20489 +122861,53,2,13823,75801 +122862,413,11,169934,1694223 +122863,182,8,131737,1542369 +122864,239,5,205584,1585724 +122865,413,11,203819,61630 +122866,204,9,9504,1419416 +122867,148,9,180929,978423 +122868,3,5,10754,1129 +122869,108,10,40373,148609 +122870,269,9,302528,1318447 +122871,180,7,20372,1635716 +122872,132,2,291413,1401821 +122873,60,1,33025,1456433 +122874,52,10,339362,1526643 +122875,234,1,2566,4387 +122876,226,2,219466,1439132 +122877,234,1,68360,439442 +122878,97,7,9902,20228 +122879,234,1,9613,224 +122880,5,10,97088,1689589 +122881,234,1,57103,19606 +122882,317,10,70772,186409 +122883,257,3,6947,1573100 +122884,234,1,60935,1692687 +122885,234,1,7459,9339 +122886,234,1,230182,89745 +122887,234,1,47851,82796 +122888,387,10,13600,1901 +122889,327,7,302036,1417176 +122890,234,1,19736,58075 +122891,314,2,313922,1616470 +122892,5,10,31262,24534 +122893,11,6,15653,1767034 +122894,346,3,8869,1429256 +122895,234,1,57889,227083 +122896,234,1,88811,64992 +122897,413,11,26149,68615 +122898,413,11,6391,6794 +122899,143,7,102632,1586801 +122900,5,10,46513,23419 +122901,317,10,147533,125074 +122902,52,10,13279,2075 +122903,119,7,83015,108821 +122904,119,7,924,1548698 +122905,413,11,42120,128711 +122906,60,1,15794,1529473 +122907,245,3,17175,1537855 +122908,317,10,52903,235503 +122909,45,9,544,1780203 +122910,333,2,211879,1595813 +122911,204,9,694,5021 +122912,226,2,206647,1550637 +122913,317,10,455043,1396654 +122914,53,2,158967,1326486 +122915,105,7,26688,1077561 +122916,52,10,43646,129741 +122917,273,7,949,5581 +122918,234,1,18747,25236 +122919,196,7,9504,1400556 +122920,413,11,205864,1603892 +122921,413,11,9589,2362 +122922,234,1,1374,16483 +122923,269,9,2731,1966 +122924,412,9,1902,1830639 +122925,87,7,128270,107622 +122926,234,1,170234,145605 +122927,165,9,11975,1857345 +122928,234,1,15689,78545 +122929,204,9,131861,1403614 +122930,203,1,296523,1396984 +122931,127,3,601,9975 +122932,317,10,40095,1172278 +122933,187,11,12783,1427502 +122934,269,9,334,40471 +122935,273,7,1924,491 +122936,234,1,272663,130325 +122937,45,9,167810,1484474 +122938,373,7,153,1318476 +122939,360,3,241239,1468544 +122940,269,9,125300,60870 +122941,232,10,17057,12277 +122942,3,5,3476,22456 +122943,234,1,87428,74619 +122944,317,10,169382,1433976 +122945,317,10,13960,84124 +122946,286,3,220488,551916 +122947,268,7,29263,138651 +122948,53,2,3033,29790 +122949,53,2,333371,928329 +122950,317,10,413579,729 +122951,394,7,580,16210 +122952,244,3,19995,1234266 +122953,388,9,8915,1337456 +122954,387,10,120802,1128881 +122955,234,1,109258,19457 +122956,13,3,378441,1797487 +122957,113,9,9846,1299406 +122958,317,10,56095,65981 +122959,52,10,10222,15111 +122960,208,2,98066,1428234 +122961,5,10,26533,81184 +122962,413,11,43093,929377 +122963,204,9,10198,61420 +122964,203,1,22279,1338245 +122965,269,9,436,1380052 +122966,12,10,15379,53394 +122967,387,10,279096,1373961 +122968,269,9,429174,1414822 +122969,273,7,10604,27439 +122970,273,7,71805,9152 +122971,105,7,315837,6377 +122972,210,9,194,1551959 +122973,162,6,598,8594 +122974,204,9,48281,1517636 +122975,234,1,31027,67259 +122976,182,8,354859,1002096 +122977,401,6,10198,1451279 +122978,209,7,316042,1364801 +122979,127,3,28090,968316 +122980,204,9,47410,138870 +122981,234,1,9894,7399 +122982,387,10,8619,55474 +122983,273,7,158942,1202603 +122984,269,9,75174,957310 +122985,234,1,295748,74376 +122986,413,11,15316,588646 +122987,148,9,30973,107420 +122988,175,5,46261,1425391 +122989,105,7,85414,6041 +122990,165,9,132363,1407727 +122991,203,1,128946,1088220 +122992,97,7,334074,1337413 +122993,234,1,262988,44950 +122994,127,3,116463,1691480 +122995,108,10,15179,79274 +122996,387,10,11848,70707 +122997,196,7,1877,1341404 +122998,87,7,105,1490038 +122999,25,2,225728,1462065 +123000,234,1,26505,59 +123001,187,11,110972,83087 +123002,234,1,127372,16785 +123003,175,5,11236,1378839 +123004,387,10,10753,46318 +123005,273,7,362150,1081464 +123006,234,1,134477,932585 +123007,161,6,40466,1760151 +123008,387,10,62728,17608 +123009,286,3,252888,78387 +123010,317,10,43256,22596 +123011,234,1,44257,5602 +123012,3,5,126712,30192 +123013,204,9,49688,1160341 +123014,3,5,110573,546805 +123015,234,1,378607,589168 +123016,273,7,12831,73913 +123017,333,2,291413,1430988 +123018,387,10,33472,998690 +123019,413,11,102161,149379 +123020,3,5,302828,34950 +123021,3,5,14457,1191211 +123022,166,9,10299,1417018 +123023,387,10,110148,15112 +123024,317,10,21138,68040 +123025,413,11,400174,590824 +123026,234,1,38580,15812 +123027,234,1,19403,19244 +123028,387,10,28417,100742 +123029,234,1,37308,18592 +123030,335,6,8619,1858347 +123031,317,10,32720,3776 +123032,387,10,51249,118281 +123033,196,7,13380,91881 +123034,234,1,42087,73496 +123035,204,9,315837,1115682 +123036,317,10,41552,40169 +123037,108,10,99283,12718 +123038,317,10,278095,1311027 +123039,60,1,36635,1531001 +123040,317,10,45692,51727 +123041,53,2,966,1454977 +123042,360,3,5237,1368862 +123043,277,3,82767,31873 +123044,317,10,28665,32383 +123045,198,6,206647,1551893 +123046,235,5,11370,1581120 +123047,161,6,329865,1646576 +123048,190,7,163,1364411 +123049,234,1,82492,1055199 +123050,185,11,9352,1733142 +123051,190,7,153,1360102 +123052,262,6,16436,1723852 +123053,387,10,10373,65304 +123054,3,5,127585,9040 +123055,234,1,51548,145022 +123056,196,7,3057,1539809 +123057,3,5,125700,43995 +123058,196,7,9032,13166 +123059,317,10,190341,1063379 +123060,52,10,76163,1083163 +123061,413,11,157,1825 +123062,5,10,284289,57522 +123063,387,10,59981,199698 +123064,317,10,185154,54443 +123065,273,7,114096,7182 +123066,269,9,140607,496 +123067,403,10,43231,223230 +123068,413,11,30054,68645 +123069,148,9,10596,60285 +123070,317,10,63340,236926 +123071,317,10,369883,1465451 +123072,327,7,9877,15331 +123073,402,11,693,6742 +123074,394,7,186869,1558255 +123075,52,10,13380,148119 +123076,289,6,58159,148161 +123077,269,9,11832,1158318 +123078,148,9,33839,8508 +123079,53,2,149509,1444286 +123080,53,2,239056,1319731 +123081,204,9,47046,1601523 +123082,204,9,286873,1410273 +123083,3,5,393445,35738 +123084,234,1,208309,591269 +123085,204,9,214086,1357955 +123086,317,10,94340,1001700 +123087,333,2,3059,100036 +123088,148,9,89492,19157 +123089,273,7,27970,134806 +123090,273,7,38006,70443 +123091,387,10,1381,6431 +123092,387,10,10137,63952 +123093,160,3,10004,61838 +123094,374,8,9472,1567926 +123095,234,1,321644,91394 +123096,387,10,33792,67447 +123097,234,1,337073,1190105 +123098,53,2,445,6033 +123099,155,3,99,5624 +123100,3,5,29239,29635 +123101,132,2,167073,1407847 +123102,148,9,10204,41336 +123103,387,10,194853,1175177 +123104,387,10,43648,4664 +123105,269,9,10665,1395158 +123106,387,10,11399,28279 +123107,204,9,1850,10837 +123108,234,1,186991,236889 +123109,413,11,137381,1710372 +123110,104,7,243568,1685941 +123111,234,1,22450,84113 +123112,413,11,38021,41524 +123113,148,9,332079,1226286 +123114,12,10,52520,3950 +123115,234,1,433945,1735355 +123116,204,9,353686,1639570 +123117,327,7,141489,1054 +123118,387,10,11385,4298 +123119,327,7,10909,1551259 +123120,234,1,21024,72427 +123121,387,10,106358,1139051 +123122,234,1,383535,1579740 +123123,203,1,220,1639186 +123124,269,9,8277,54603 +123125,155,3,83666,67758 +123126,74,5,266856,1878521 +123127,234,1,153397,1134201 +123128,360,3,77246,1550577 +123129,97,7,323435,1414886 +123130,387,10,28673,100053 +123131,87,7,307081,1471726 +123132,286,3,27904,470995 +123133,373,7,272693,40142 +123134,104,7,59115,108190 +123135,413,11,7233,18276 +123136,387,10,303542,128219 +123137,387,10,15653,147703 +123138,127,3,293660,1168704 +123139,53,2,10066,35148 +123140,234,1,39194,122452 +123141,314,2,10543,1410327 +123142,72,11,45019,1550222 +123143,5,10,9503,1292588 +123144,196,7,328111,1418373 +123145,108,10,21030,87009 +123146,249,7,44105,1159914 +123147,317,10,323315,1425660 +123148,37,3,35,1447551 +123149,269,9,202337,961600 +123150,198,6,266856,1565661 +123151,3,5,365222,140488 +123152,54,10,18506,1485212 +123153,360,3,240832,1367811 +123154,13,3,41213,1777257 +123155,20,2,274857,1829869 +123156,273,7,39053,1589 +123157,317,10,13355,141708 +123158,204,9,340215,1630275 +123159,234,1,266856,76998 +123160,204,9,49853,1648805 +123161,286,3,127445,983278 +123162,317,10,61070,232313 +123163,20,2,9563,1533072 +123164,53,2,310119,10970 +123165,273,7,10173,1213 +123166,387,10,126127,1206239 +123167,234,1,365709,1185975 +123168,234,1,108224,129552 +123169,398,9,8211,24897 +123170,317,10,49343,135998 +123171,105,7,64215,70000 +123172,273,7,12639,7182 +123173,413,11,1995,2533 +123174,105,7,354105,12262 +123175,203,1,341174,1495051 +123176,387,10,13196,82937 +123177,234,1,13486,52968 +123178,269,9,1640,25550 +123179,413,11,250066,1167489 +123180,333,2,13834,75877 +123181,317,10,84105,150856 +123182,226,2,19912,1441382 +123183,105,7,332168,1274525 +123184,234,1,11521,1038 +123185,53,2,339530,23831 +123186,262,6,2675,9622 +123187,273,7,11247,23486 +123188,234,1,690,10346 +123189,53,2,35337,1462397 +123190,415,3,22584,121202 +123191,60,1,377170,1613989 +123192,273,7,26119,7769 +123193,317,10,333103,1448117 +123194,413,11,43880,9058 +123195,273,7,13493,1999 +123196,317,10,104251,137495 +123197,158,2,15440,1412141 +123198,32,8,9472,1401807 +123199,3,5,50329,33225 +123200,203,1,25430,1703068 +123201,46,5,116463,1691487 +123202,60,1,61934,1340359 +123203,180,7,266373,121284 +123204,3,5,9475,6490 +123205,394,7,308269,1447906 +123206,154,3,2604,1604352 +123207,387,10,19610,14643 +123208,289,6,84617,113285 +123209,333,2,2274,62824 +123210,234,1,71393,225024 +123211,317,10,17287,78021 +123212,317,10,33436,54360 +123213,413,11,23397,162916 +123214,148,9,177047,62586 +123215,175,5,549,1431631 +123216,182,8,13549,1706097 +123217,413,11,74911,11997 +123218,13,3,378441,1797492 +123219,269,9,20242,41141 +123220,208,2,1125,1526464 +123221,204,9,213443,9062 +123222,204,9,52021,33149 +123223,264,3,14262,10367 +123224,234,1,286940,65327 +123225,387,10,9425,7191 +123226,269,9,33511,50952 +123227,394,7,245168,1367557 +123228,387,10,132928,2665 +123229,273,7,342213,53946 +123230,234,1,169881,113500 +123231,387,10,20432,225899 +123232,234,1,72912,56453 +123233,53,2,3937,34225 +123234,3,5,99008,1019844 +123235,190,7,239566,1367665 +123236,234,1,92389,3428 +123237,221,3,8915,1337470 +123238,413,11,10425,58705 +123239,234,1,9079,5572 +123240,204,9,325189,21971 +123241,74,5,693,1463770 +123242,204,9,2454,77730 +123243,413,11,16281,10766 +123244,317,10,14531,166268 +123245,204,9,382501,113388 +123246,234,1,128190,112201 +123247,273,7,39938,3249 +123248,209,7,127372,1424637 +123249,413,11,266285,1030 +123250,387,10,12540,70115 +123251,273,7,482,6542 +123252,3,5,51601,13972 +123253,317,10,53576,148515 +123254,257,3,74,1407849 +123255,387,10,12707,5810 +123256,141,7,10727,1460669 +123257,413,11,198277,4868 +123258,317,10,18051,40832 +123259,234,1,298695,1117428 +123260,293,2,6947,1573087 +123261,413,11,47310,1630512 +123262,204,9,14522,8382 +123263,53,2,291270,1536587 +123264,413,11,62762,43913 +123265,234,1,126516,125690 +123266,196,7,205584,1495856 +123267,175,5,67328,1292777 +123268,25,2,413762,1811619 +123269,234,1,81223,146873 +123270,327,7,24212,1213685 +123271,75,5,13042,1451703 +123272,226,2,31947,27187 +123273,317,10,80094,124137 +123274,273,7,96089,5467 +123275,75,5,59678,1388897 +123276,269,9,260001,1174097 +123277,234,1,16157,79737 +123278,234,1,191476,130938 +123279,226,2,145135,1402475 +123280,204,9,84337,94166 +123281,234,1,186988,3124 +123282,317,10,111042,24939 +123283,387,10,10390,11898 +123284,148,9,31682,12348 +123285,3,5,10364,10639 +123286,3,5,12106,11099 +123287,5,10,39938,58095 +123288,333,2,334074,1369373 +123289,148,9,35008,939458 +123290,269,9,87826,20824 +123291,234,1,29959,192827 +123292,226,2,168259,1506367 +123293,387,10,48243,43553 +123294,3,5,32029,9103 +123295,413,11,606,2241 +123296,273,7,54146,1089018 +123297,234,1,117790,1034315 +123298,317,10,39130,34741 +123299,317,10,190269,1210065 +123300,148,9,48231,1030400 +123301,234,1,184345,1110102 +123302,105,7,47459,1089106 +123303,273,7,8292,6489 +123304,317,10,228290,1291504 +123305,317,10,30379,87432 +123306,203,1,443319,1888978 +123307,317,10,44256,130630 +123308,105,7,16074,79159 +123309,413,11,9475,908 +123310,204,9,29698,1399019 +123311,148,9,43395,1464564 +123312,234,1,105583,1092208 +123313,127,3,223551,1263802 +123314,234,1,86261,150975 +123315,3,5,96951,14478 +123316,20,2,311324,1658868 +123317,135,3,8467,1893229 +123318,234,1,196255,1176379 +123319,273,7,27358,1270116 +123320,3,5,4279,10469 +123321,387,10,66893,269201 +123322,204,9,9443,1378834 +123323,269,9,623,8936 +123324,317,10,39310,17278 +123325,413,11,42267,16593 +123326,3,5,165,1060 +123327,75,5,171357,971123 +123328,327,7,352208,1085290 +123329,387,10,12311,72063 +123330,413,11,73896,1552 +123331,413,11,162862,72067 +123332,413,11,10406,21140 +123333,52,10,67748,549310 +123334,234,1,60018,72191 +123335,413,11,33224,30536 +123336,234,1,253077,52849 +123337,75,5,16997,1128267 +123338,3,5,259975,1153 +123339,317,10,173294,1273712 +123340,234,1,28710,87014 +123341,234,1,77294,288215 +123342,225,7,72545,1387243 +123343,317,10,57749,236862 +123344,160,3,223485,1406072 +123345,204,9,32610,9062 +123346,148,9,124963,8755 +123347,66,11,170279,1262524 +123348,396,3,9946,1392095 +123349,234,1,33660,79983 +123350,234,1,176867,84641 +123351,122,8,293660,1580844 +123352,411,9,76170,33195 +123353,175,5,9457,1401594 +123354,387,10,186988,235042 +123355,262,6,8053,1300813 +123356,234,1,59249,133938 +123357,413,11,10585,4981 +123358,148,9,20473,1862926 +123359,196,7,4887,40373 +123360,169,3,9613,1399919 +123361,81,3,11618,1765792 +123362,317,10,279690,1336328 +123363,3,5,6687,37952 +123364,373,7,7299,1049324 +123365,273,7,35002,33216 +123366,387,10,11653,70691 +123367,278,6,435,1767013 +123368,105,7,361183,1368692 +123369,333,2,28571,1542032 +123370,105,7,12101,58249 +123371,304,10,280690,129161 +123372,53,2,10299,1467258 +123373,75,5,206647,1377503 +123374,3,5,1637,10765 +123375,117,5,354133,1496087 +123376,387,10,57215,514 +123377,234,1,48145,6648 +123378,387,10,62397,234743 +123379,317,10,327231,1770332 +123380,413,11,88176,36994 +123381,292,3,6947,1573090 +123382,234,1,301671,1903535 +123383,234,1,169869,146225 +123384,269,9,186869,1136056 +123385,317,10,178446,65873 +123386,234,1,234155,933277 +123387,196,7,82767,1617783 +123388,53,2,11614,1441040 +123389,127,3,28090,161824 +123390,179,2,544,1376714 +123391,3,5,13954,10418 +123392,105,7,66340,76888 +123393,234,1,59142,19328 +123394,179,2,418437,1763647 +123395,234,1,64567,21175 +123396,10,3,10865,1552870 +123397,148,9,866,13008 +123398,273,7,12696,74011 +123399,20,2,316042,1452223 +123400,234,1,15084,35785 +123401,413,11,72912,53124 +123402,196,7,318553,1545922 +123403,317,10,26971,96693 +123404,273,7,9292,7714 +123405,234,1,202662,137349 +123406,61,7,9902,1364796 +123407,413,11,16281,14999 +123408,296,3,10727,1584239 +123409,175,5,1877,1172414 +123410,373,7,41283,1340737 +123411,301,5,15019,1402097 +123412,3,5,10491,3285 +123413,226,2,5289,1409728 +123414,291,6,291413,1415619 +123415,303,3,15092,1198049 +123416,317,10,75137,96374 +123417,148,9,2669,26872 +123418,3,5,2503,11409 +123419,373,7,6973,13179 +123420,148,9,11697,7338 +123421,286,3,29382,103689 +123422,317,10,112287,1054380 +123423,317,10,430365,1033663 +123424,234,1,8939,56380 +123425,5,10,11257,54442 +123426,413,11,264525,962197 +123427,20,2,283995,11106 +123428,35,10,433945,1735354 +123429,143,7,393367,1660186 +123430,15,6,2675,1445426 +123431,226,2,26283,14495 +123432,221,3,98066,1759323 +123433,234,1,157178,587971 +123434,234,1,58391,54767 +123435,387,10,14615,68 +123436,3,5,18352,1126687 +123437,269,9,78691,961533 +123438,413,11,269149,967699 +123439,175,5,272693,1560273 +123440,5,10,76642,579541 +123441,226,2,17622,1440856 +123442,269,9,38162,42634 +123443,105,7,17236,60068 +123444,234,1,158942,1140298 +123445,64,6,52021,1707414 +123446,22,9,17015,1840479 +123447,273,7,4365,37592 +123448,3,5,41574,1583299 +123449,209,7,75174,1378722 +123450,269,9,24936,958228 +123451,52,10,200324,234564 +123452,204,9,17692,54776 +123453,333,2,332872,1334537 +123454,413,11,2009,20700 +123455,53,2,11788,961059 +123456,234,1,65646,70854 +123457,350,6,315837,1797214 +123458,317,10,78691,35092 +123459,317,10,33005,78806 +123460,45,9,2084,1465597 +123461,3,5,230428,54602 +123462,239,5,329805,1621901 +123463,333,2,34231,1460035 +123464,53,2,13842,35766 +123465,387,10,16997,107183 +123466,268,7,55534,1424935 +123467,105,7,9404,46324 +123468,234,1,37731,580209 +123469,105,7,15749,2214 +123470,234,1,458808,1822312 +123471,273,7,87514,125815 +123472,381,9,189,1401131 +123473,234,1,37311,8823 +123474,273,7,28668,138156 +123475,387,10,22076,52371 +123476,317,10,158483,608 +123477,39,3,11045,220011 +123478,64,6,356752,1468572 +123479,60,1,80125,1441757 +123480,175,5,194722,1456355 +123481,187,11,9457,8763 +123482,317,10,28452,100807 +123483,234,1,410537,1615503 +123484,387,10,6038,18924 +123485,143,7,283995,1235786 +123486,204,9,2001,1389555 +123487,161,6,10733,1571781 +123488,234,1,244201,67426 +123489,87,7,310568,1539406 +123490,269,9,443319,808746 +123491,204,9,49013,972432 +123492,317,10,144680,77994 +123493,64,6,18093,1447609 +123494,234,1,36427,69918 +123495,11,6,206647,1459878 +123496,302,9,9314,1749132 +123497,387,10,41703,127123 +123498,72,11,291413,1746623 +123499,174,6,435,1574662 +123500,234,1,924,15217 +123501,234,1,65595,2710 +123502,413,11,5060,41830 +123503,387,10,43771,120226 +123504,143,7,431093,1742507 +123505,234,1,189197,88391 +123506,234,1,49199,65994 +123507,317,10,353257,1428027 +123508,105,7,136752,1208811 +123509,3,5,329135,96345 +123510,12,10,263115,109542 +123511,413,11,262454,1390092 +123512,317,10,352327,1209172 +123513,234,1,201365,1183493 +123514,203,1,168259,1408365 +123515,53,2,239566,15573 +123516,317,10,14293,91392 +123517,308,3,297762,1824246 +123518,273,7,102222,963171 +123519,213,10,2890,28726 +123520,413,11,337107,50026 +123521,387,10,50838,227554 +123522,317,10,46190,20097 +123523,234,1,332662,1554690 +123524,250,11,246655,1414558 +123525,262,6,12113,1405385 +123526,262,6,22076,1396811 +123527,234,1,9317,39138 +123528,148,9,84340,1776888 +123529,229,6,246655,1713064 +123530,413,11,12684,27920 +123531,234,1,29801,100505 +123532,3,5,15849,78833 +123533,143,7,241239,7537 +123534,269,9,58013,1525826 +123535,387,10,14432,76879 +123536,127,3,12594,1448276 +123537,418,11,10865,69613 +123538,52,10,43514,101887 +123539,373,7,9563,1399861 +123540,234,1,41441,126489 +123541,289,6,69103,555753 +123542,286,3,160261,1692328 +123543,413,11,36236,15132 +123544,158,2,44945,1460748 +123545,196,7,146233,375 +123546,64,6,87827,1455463 +123547,333,2,788,406204 +123548,413,11,37284,1542408 +123549,373,7,205587,21103 +123550,387,10,8942,56383 +123551,53,2,222858,1341762 +123552,148,9,381518,1808363 +123553,234,1,253484,124722 +123554,366,3,76757,1483143 +123555,53,2,409502,1519807 +123556,187,11,5551,1377125 +123557,158,2,2503,1404233 +123558,46,5,435,1762795 +123559,317,10,324930,1500693 +123560,411,9,8247,10836 +123561,3,5,94811,2005 +123562,87,7,265208,1540471 +123563,413,11,15440,1050348 +123564,53,2,393445,102252 +123565,317,10,180644,1577343 +123566,204,9,26149,1468026 +123567,234,1,225285,1264231 +123568,196,7,75174,90692 +123569,204,9,14869,8795 +123570,178,10,178809,1857686 +123571,5,10,65795,139920 +123572,52,10,270672,1400679 +123573,53,2,381073,196821 +123574,75,5,188102,417754 +123575,262,6,72431,1439739 +123576,3,5,13436,1656903 +123577,179,2,369406,1872438 +123578,387,10,22396,88740 +123579,387,10,96411,1009351 +123580,418,11,10733,1534518 +123581,53,2,15936,78984 +123582,226,2,10740,1470182 +123583,204,9,62728,17794 +123584,346,3,10320,1409283 +123585,234,1,33134,123537 +123586,413,11,13823,75797 +123587,234,1,362154,110511 +123588,143,7,324670,1357061 +123589,5,10,38732,1095839 +123590,3,5,271826,994881 +123591,204,9,283686,1582725 +123592,234,1,145154,1122367 +123593,387,10,8371,44371 +123594,87,7,9664,52453 +123595,113,9,10491,141570 +123596,333,2,43395,1339685 +123597,148,9,9981,13626 +123598,273,7,60281,1099419 +123599,317,10,248087,133165 +123600,413,11,43095,1034269 +123601,317,10,26422,30309 +123602,317,10,458428,1820248 +123603,203,1,203833,190914 +123604,213,10,54563,11984 +123605,332,8,79218,1460602 +123606,60,1,242131,940683 +123607,226,2,302699,1630616 +123608,204,9,22803,16494 +123609,53,2,24392,1328818 +123610,3,5,49688,1607498 +123611,269,9,10008,61935 +123612,234,1,34652,18907 +123613,317,10,61113,3198 +123614,143,7,45132,1397822 +123615,333,2,1938,4352 +123616,317,10,43372,24658 +123617,187,11,149509,1444289 +123618,74,5,1624,1870767 +123619,203,1,45019,1480099 +123620,234,1,34052,73121 +123621,317,10,259395,1238012 +123622,244,3,809,1335621 +123623,234,1,226672,231521 +123624,317,10,105833,110519 +123625,413,11,9032,12865 +123626,148,9,16996,1341926 +123627,59,3,11618,1558210 +123628,97,7,323435,1571058 +123629,413,11,377853,47639 +123630,102,3,857,1662351 +123631,360,3,328429,1636701 +123632,234,1,43441,89905 +123633,289,6,98566,1459758 +123634,234,1,72823,82751 +123635,105,7,40085,10536 +123636,387,10,253310,5665 +123637,3,5,2267,21118 +123638,3,5,216046,1684922 +123639,234,1,106618,21377 +123640,60,1,33673,1559470 +123641,234,1,43471,31497 +123642,413,11,7229,24723 +123643,164,3,351901,1558714 +123644,317,10,84903,4970 +123645,105,7,9821,7020 +123646,204,9,8470,1317673 +123647,148,9,296025,1299360 +123648,190,7,291413,1339447 +123649,301,5,448847,1797886 +123650,235,5,28090,1141804 +123651,129,11,36140,9956 +123652,286,3,21843,88023 +123653,387,10,50759,95501 +123654,273,7,9289,2704 +123655,75,5,339403,1635235 +123656,317,10,186079,1168792 +123657,3,5,2577,179 +123658,203,1,9981,1457729 +123659,179,2,57597,1676194 +123660,204,9,37910,74091 +123661,317,10,101183,19084 +123662,235,5,28090,57158 +123663,52,10,31411,10517 +123664,239,5,10590,1565944 +123665,3,5,268920,16425 +123666,317,10,77068,1053404 +123667,268,7,375366,1553856 +123668,413,11,2241,17137 +123669,411,9,407448,936841 +123670,179,2,9946,1321374 +123671,387,10,144183,129037 +123672,317,10,26267,94982 +123673,317,10,16806,111906 +123674,234,1,16839,47634 +123675,105,7,294640,960383 +123676,166,9,9785,1438598 +123677,166,9,227306,1412735 +123678,234,1,65545,235417 +123679,52,10,31672,179891 +123680,234,1,85446,932088 +123681,317,10,82716,1399221 +123682,136,1,157351,1493532 +123683,234,1,25784,143430 +123684,234,1,31977,42804 +123685,273,7,95015,67429 +123686,3,5,33016,50240 +123687,245,3,37030,64703 +123688,111,7,9882,1391678 +123689,234,1,78464,236013 +123690,269,9,33673,5187 +123691,234,1,130900,93906 +123692,60,1,43773,1884017 +123693,180,7,68822,1297804 +123694,234,1,278316,5281 +123695,289,6,333667,1460472 +123696,175,5,284053,1392718 +123697,75,5,279690,1429335 +123698,333,2,2662,1603305 +123699,413,11,210653,31220 +123700,333,2,102629,1429341 +123701,269,9,179105,1069713 +123702,143,7,74879,572596 +123703,327,7,27904,1271299 +123704,5,10,3051,31047 +123705,305,9,340101,1422814 +123706,53,2,20421,26146 +123707,203,1,9540,1340919 +123708,13,3,53949,69159 +123709,419,10,312100,1719706 +123710,234,1,84348,101542 +123711,204,9,2567,27220 +123712,250,11,25376,1538878 +123713,234,1,28261,70 +123714,387,10,126947,105985 +123715,3,5,186227,16750 +123716,3,5,3574,1594855 +123717,204,9,306966,1748596 +123718,234,1,400552,71596 +123719,398,9,13056,1391756 +123720,317,10,177902,94298 +123721,105,7,398289,1108748 +123722,3,5,62492,1472426 +123723,103,6,283995,1379986 +123724,3,5,96118,11905 +123725,3,5,116312,31323 +123726,169,3,298,1335069 +123727,105,7,15671,21467 +123728,3,5,32088,23746 +123729,333,2,17258,16193 +123730,105,7,135286,38377 +123731,148,9,59838,1198731 +123732,5,10,99579,1023668 +123733,317,10,56647,34017 +123734,234,1,83461,426268 +123735,269,9,310593,1440790 +123736,105,7,336265,1417920 +123737,254,10,705,1102213 +123738,105,7,322443,1615075 +123739,3,5,345918,1162676 +123740,269,9,72545,1128347 +123741,317,10,359412,49281 +123742,413,11,33427,110644 +123743,127,3,116463,550473 +123744,413,11,9502,57747 +123745,317,10,45827,37364 +123746,269,9,260947,1304137 +123747,387,10,2196,22807 +123748,111,7,419430,1814557 +123749,234,1,13794,75589 +123750,323,10,271495,545782 +123751,269,9,103597,1646871 +123752,148,9,19255,4437 +123753,148,9,14370,12437 +123754,166,9,435,1391747 +123755,160,3,18,18775 +123756,3,5,392832,1501196 +123757,387,10,404567,25620 +123758,77,10,67,758 +123759,127,3,16356,1447518 +123760,187,11,228496,1338145 +123761,234,1,358924,22020 +123762,3,5,753,11414 +123763,387,10,3050,31025 +123764,12,10,110148,19451 +123765,234,1,32926,144194 +123766,5,10,202241,14971 +123767,413,11,82501,1125105 +123768,16,3,13042,1211220 +123769,413,11,146233,384 +123770,169,3,6972,1401695 +123771,289,6,26963,1776008 +123772,234,1,36212,1190017 +123773,234,1,24731,27236 +123774,11,6,29694,40345 +123775,413,11,40466,60411 +123776,53,2,1443,5215 +123777,286,3,37958,53841 +123778,45,9,9902,1600548 +123779,226,2,398289,1637443 +123780,236,8,241254,1404195 +123781,87,7,19255,52161 +123782,53,2,160160,1157008 +123783,273,7,198600,30267 +123784,387,10,73835,98780 +123785,204,9,225728,1384722 +123786,53,2,28304,4350 +123787,403,10,44000,70511 +123788,52,10,94170,113834 +123789,148,9,11639,9823 +123790,204,9,14295,996401 +123791,234,1,185153,54448 +123792,53,2,2721,959458 +123793,273,7,242076,1130319 +123794,286,3,99579,22153 +123795,273,7,12632,73174 +123796,148,9,49009,1325582 +123797,360,3,6972,1401665 +123798,60,1,129,233653 +123799,3,5,20108,11988 +123800,67,10,15359,105643 +123801,387,10,12525,72634 +123802,37,3,409447,9251 +123803,387,10,53486,56194 +123804,317,10,400174,2100 +123805,387,10,306555,1277073 +123806,413,11,49521,6051 +123807,413,11,16032,1150425 +123808,182,8,1902,1540922 +123809,413,11,114577,56989 +123810,182,8,72431,1484214 +123811,317,10,237584,34510 +123812,273,7,84903,13571 +123813,387,10,10897,18194 +123814,203,1,97365,1724200 +123815,383,3,86829,1483 +123816,52,10,81215,1050254 +123817,200,3,7551,1408326 +123818,413,11,23857,1500427 +123819,411,9,333484,23972 +123820,273,7,66634,15393 +123821,175,5,5413,1407866 +123822,413,11,197177,33790 +123823,47,8,8470,1598760 +123824,53,2,366045,1305455 +123825,75,5,336050,1421652 +123826,77,10,110,1126 +123827,273,7,82,960 +123828,387,10,99846,166190 +123829,189,3,76163,1437718 +123830,234,1,198365,1178814 +123831,413,11,3682,2866 +123832,143,7,122081,1404716 +123833,226,2,52661,1190242 +123834,116,6,20986,109197 +123835,208,2,102629,1402548 +123836,360,3,270403,1594817 +123837,53,2,294272,989349 +123838,317,10,9946,57532 +123839,33,10,19765,1602149 +123840,203,1,3057,1539800 +123841,273,7,109886,13336 +123842,304,10,11912,32013 +123843,249,7,10491,1433229 +123844,387,10,43342,103910 +123845,373,7,6972,1338976 +123846,60,1,126127,1337941 +123847,204,9,43266,8506 +123848,292,3,341174,1394488 +123849,269,9,302699,53811 +123850,343,3,60568,1743496 +123851,317,10,12683,40610 +123852,411,9,76341,62484 +123853,387,10,84184,78500 +123854,3,5,345438,1307423 +123855,3,5,70327,89171 +123856,413,11,277558,1357334 +123857,148,9,38765,7688 +123858,3,5,315880,67324 +123859,12,10,25682,934838 +123860,413,11,11570,12721 +123861,333,2,5421,31611 +123862,387,10,27036,43777 +123863,204,9,285400,1060877 +123864,40,1,284288,1763410 +123865,234,1,18890,21879 +123866,203,1,78802,1704110 +123867,346,3,273404,1067267 +123868,212,3,6947,1571761 +123869,234,1,45935,64992 +123870,317,10,30924,2093 +123871,317,10,42139,96369 +123872,3,5,16157,1718051 +123873,298,5,55846,1400092 +123874,273,7,19255,5394 +123875,234,1,31146,6400 +123876,3,5,13073,7034 +123877,394,7,163,1335127 +123878,413,11,47921,29343 +123879,182,8,11880,1424941 +123880,187,11,41298,31873 +123881,387,10,13436,1354731 +123882,317,10,14589,26160 +123883,3,5,121929,1112961 +123884,113,9,634,30463 +123885,3,5,77930,1884 +123886,3,5,43139,3454 +123887,387,10,146521,143285 +123888,140,9,285,146439 +123889,273,7,11639,7020 +123890,273,7,598,8575 +123891,273,7,37936,959524 +123892,273,7,271714,142391 +123893,413,11,30308,68417 +123894,333,2,19901,1418798 +123895,45,9,32657,1335042 +123896,305,9,1073,994550 +123897,269,9,9889,932118 +123898,148,9,12573,555 +123899,273,7,46738,57069 +123900,286,3,222517,1207940 +123901,234,1,104702,11523 +123902,3,5,225285,1271457 +123903,188,8,4147,1558696 +123904,333,2,10999,197875 +123905,190,7,10320,1737829 +123906,175,5,284052,1380002 +123907,105,7,23452,90138 +123908,92,7,25953,118297 +123909,317,10,20742,142632 +123910,234,1,225044,11805 +123911,234,1,21708,87789 +123912,189,3,3172,1321940 +123913,187,11,145135,1367666 +123914,204,9,28775,1206138 +123915,3,5,67977,1292141 +123916,273,7,198795,1597995 +123917,317,10,183258,1166389 +123918,413,11,120972,1210726 +123919,75,5,11377,1347763 +123920,277,3,14430,1520859 +123921,269,9,428687,1588422 +123922,160,3,55720,1358564 +123923,291,6,332567,1512783 +123924,180,7,95015,1531026 +123925,273,7,43369,39054 +123926,148,9,38027,7651 +123927,317,10,314420,1283526 +123928,160,3,105,16474 +123929,204,9,38433,8622 +123930,234,1,437122,1755174 +123931,269,9,42094,14097 +123932,286,3,212530,6244 +123933,286,3,377287,1380613 +123934,317,10,104810,88489 +123935,52,10,10999,70610 +123936,273,7,36089,18577 +123937,269,9,18417,53811 +123938,239,5,16997,1583181 +123939,234,1,35177,95255 +123940,5,10,88564,1159420 +123941,234,1,41703,127123 +123942,204,9,198663,66521 +123943,273,7,379,1225 +123944,317,10,4279,35955 +123945,10,3,263115,56535 +123946,377,3,297762,1905668 +123947,234,1,54662,16860 +123948,182,8,353728,1699375 +123949,234,1,54102,144798 +123950,180,7,39415,1625129 +123951,152,2,10590,1744051 +123952,413,11,76207,19087 +123953,3,5,38154,562946 +123954,203,1,329440,1486525 +123955,269,9,338,4809 +123956,234,1,96985,1004709 +123957,64,6,23128,1271077 +123958,387,10,6972,6201 +123959,52,10,43984,931291 +123960,325,5,378441,1797425 +123961,175,5,131343,1450095 +123962,317,10,13493,52360 +123963,269,9,367412,1282448 +123964,268,7,74,52193 +123965,60,1,210940,1780734 +123966,273,7,13495,14351 +123967,64,6,227975,1420187 +123968,287,3,33273,1585448 +123969,64,6,4978,226006 +123970,317,10,98302,28261 +123971,198,6,118,1536594 +123972,127,3,99861,1394331 +123973,273,7,52894,43393 +123974,269,9,24238,92733 +123975,52,10,4111,34741 +123976,289,6,9023,1447381 +123977,204,9,121636,74692 +123978,234,1,167938,148764 +123979,317,10,16137,79542 +123980,234,1,2977,29226 +123981,148,9,9102,1318148 +123982,234,1,31011,107490 +123983,387,10,280690,1304318 +123984,289,6,149870,1456610 +123985,3,5,16154,1146827 +123986,234,1,60855,1230367 +123987,413,11,118957,1352446 +123988,53,2,7980,5215 +123989,203,1,318553,1647012 +123990,317,10,341886,1278959 +123991,387,10,47171,3072 +123992,53,2,73247,1709648 +123993,234,1,41967,97579 +123994,317,10,75761,58245 +123995,273,7,11593,117 +123996,148,9,86709,933575 +123997,387,10,77794,31439 +123998,3,5,332806,1357 +123999,273,7,18820,46863 +124000,53,2,11950,119769 +124001,192,5,384262,1646176 +124002,12,10,34560,16835 +124003,97,7,21742,20229 +124004,3,5,744,904 +124005,234,1,4134,28218 +124006,3,5,77650,455064 +124007,105,7,117534,1683033 +124008,394,7,329682,1577909 +124009,75,5,366045,1830746 +124010,3,5,81409,544824 +124011,234,1,47574,139250 +124012,413,11,8954,2597 +124013,52,10,81310,57332 +124014,187,11,274479,1391679 +124015,245,3,43875,142625 +124016,413,11,11854,35739 +124017,203,1,8053,563760 +124018,5,10,12076,49557 +124019,234,1,9675,13235 +124020,413,11,35113,28157 +124021,5,10,22292,960415 +124022,234,1,250638,67259 +124023,3,5,44932,1060 +124024,148,9,48136,1137341 +124025,273,7,312138,1400502 +124026,75,5,9472,1567923 +124027,387,10,215016,1325657 +124028,218,1,20126,1826996 +124029,306,7,147815,1666868 +124030,387,10,50374,18741 +124031,359,6,14087,1010061 +124032,273,7,12144,1729 +124033,234,1,422906,94096 +124034,3,5,62764,53841 +124035,328,6,13954,1398872 +124036,317,10,98203,56213 +124037,190,7,263115,1821884 +124038,317,10,86274,109478 +124039,209,7,205584,1378724 +124040,333,2,78028,1645435 +124041,234,1,30385,103850 +124042,46,5,924,1733234 +124043,373,7,48231,1413907 +124044,53,2,48210,1638688 +124045,92,7,10320,1821191 +124046,413,11,15092,75591 +124047,60,1,19140,121314 +124048,333,2,257088,1551800 +124049,317,10,28484,12277 +124050,234,1,83754,1294783 +124051,204,9,22477,961164 +124052,234,1,348320,1486381 +124053,234,1,257574,1214133 +124054,72,11,145135,1417885 +124055,203,1,2105,1391605 +124056,387,10,135799,1096814 +124057,204,9,11902,1308504 +124058,269,9,132363,12257 +124059,52,10,31462,162231 +124060,185,11,442752,1761904 +124061,234,1,260672,51785 +124062,357,3,315837,1548869 +124063,387,10,63333,236915 +124064,234,1,11854,35736 +124065,217,3,269149,1461998 +124066,32,8,2662,1603327 +124067,333,2,10053,1427397 +124068,105,7,285135,43924 +124069,387,10,2046,21061 +124070,108,10,22943,148024 +124071,234,1,98250,102797 +124072,273,7,4923,40040 +124073,317,10,184098,147711 +124074,234,1,39331,122671 +124075,182,8,13056,1402034 +124076,226,2,6068,1535440 +124077,269,9,250066,1024912 +124078,413,11,9470,1361 +124079,387,10,127913,67813 +124080,22,9,264525,962199 +124081,387,10,79025,32375 +124082,234,1,41495,9054 +124083,105,7,64928,3249 +124084,204,9,9555,37283 +124085,234,1,51249,77919 +124086,64,6,45205,132521 +124087,74,5,405473,1747171 +124088,232,10,14510,58046 +124089,262,6,287628,1589731 +124090,3,5,30583,564052 +124091,13,3,81003,1447548 +124092,413,11,43384,42065 +124093,234,1,304613,1285985 +124094,273,7,9982,4500 +124095,413,11,5646,4590 +124096,198,6,72545,1859982 +124097,387,10,239566,21339 +124098,317,10,191502,1174068 +124099,5,10,70074,557922 +124100,196,7,205584,1539292 +124101,105,7,288526,1341298 +124102,234,1,35862,545625 +124103,328,6,419430,1761133 +124104,75,5,34459,122132 +124105,160,3,17144,1436539 +124106,53,2,242,5671 +124107,235,5,177677,1545994 +124108,269,9,41574,1583305 +124109,64,6,127380,1715748 +124110,234,1,99846,101891 +124111,317,10,114779,135795 +124112,387,10,8204,54051 +124113,262,6,435,6038 +124114,3,5,43256,3148 +124115,273,7,12573,1225 +124116,268,7,178809,1399558 +124117,387,10,54570,89905 +124118,58,2,38027,1762446 +124119,196,7,284052,1406873 +124120,52,10,14695,2945 +124121,232,10,56800,224984 +124122,317,10,1717,2260 +124123,317,10,428645,1533251 +124124,53,2,61950,37298 +124125,234,1,26983,1744 +124126,398,9,127585,1384362 +124127,95,8,181533,1869361 +124128,234,1,206574,98202 +124129,105,7,37534,17004 +124130,394,7,209112,15226 +124131,234,1,94663,137349 +124132,166,9,1624,1398854 +124133,5,10,197785,1238114 +124134,60,1,936,1190954 +124135,3,5,31555,109000 +124136,221,3,244786,1338158 +124137,234,1,82519,60045 +124138,3,5,76207,19086 +124139,53,2,62143,10221 +124140,157,3,1578,1422613 +124141,388,9,1251,1377123 +124142,75,5,379019,1780171 +124143,286,3,128657,239307 +124144,52,10,58011,5396 +124145,398,9,10326,1322017 +124146,175,5,9441,1412113 +124147,3,5,24348,559273 +124148,403,10,168031,10610 +124149,404,6,8916,1780713 +124150,234,1,9963,61087 +124151,234,1,43499,14643 +124152,289,6,81310,138170 +124153,234,1,252034,75003 +124154,289,6,9514,1642594 +124155,208,2,291413,1430989 +124156,143,7,77859,1615471 +124157,289,6,59387,1113194 +124158,333,2,233639,1792037 +124159,234,1,356332,1141556 +124160,317,10,59147,1527176 +124161,317,10,81477,1452729 +124162,234,1,17203,73282 +124163,327,7,52661,1555023 +124164,317,10,108535,1410018 +124165,234,1,10594,44138 +124166,273,7,134201,56004 +124167,387,10,2786,3776 +124168,413,11,39053,800252 +124169,413,11,52705,3782 +124170,108,10,47446,95219 +124171,317,10,347031,1317730 +124172,3,5,10645,36597 +124173,3,5,7229,49069 +124174,3,5,9987,61495 +124175,345,7,354287,1373712 +124176,413,11,231145,1099943 +124177,317,10,23516,227565 +124178,325,5,10491,16361 +124179,234,1,13574,17735 +124180,317,10,270470,70562 +124181,387,10,80193,1097894 +124182,387,10,156335,11431 +124183,234,1,59115,59328 +124184,234,1,43809,82800 +124185,387,10,127544,16137 +124186,387,10,13848,83949 +124187,77,10,9951,60828 +124188,3,5,246860,4404 +124189,373,7,1966,10054 +124190,303,3,10543,1212587 +124191,360,9,414910,1765637 +124192,3,5,67509,548759 +124193,286,3,42501,22456 +124194,190,7,157117,1138333 +124195,387,10,8617,52371 +124196,53,2,77930,582807 +124197,105,7,202337,1195778 +124198,234,1,11677,49625 +124199,273,7,11643,3375 +124200,3,5,5040,40913 +124201,387,10,217948,2768 +124202,234,1,28535,101104 +124203,387,10,9030,19656 +124204,317,10,82080,49451 +124205,53,2,157424,1301659 +124206,3,5,118,1301 +124207,262,6,15092,1401795 +124208,234,1,9078,57314 +124209,273,7,18133,35838 +124210,105,7,234377,1147358 +124211,387,10,75778,178564 +124212,317,10,337876,81085 +124213,333,2,311324,25060 +124214,234,1,11202,13265 +124215,234,1,81110,99325 +124216,234,1,408755,86535 +124217,317,10,120802,1387549 +124218,269,9,1165,15732 +124219,413,11,169934,1352117 +124220,52,10,32552,3147 +124221,317,10,23964,21820 +124222,317,10,257345,222102 +124223,147,1,11377,1841641 +124224,286,3,245700,60085 +124225,52,10,157343,235355 +124226,204,9,82631,21718 +124227,234,1,10275,1342845 +124228,333,2,177677,1545925 +124229,169,3,6171,1271920 +124230,3,5,101325,10418 +124231,53,2,194,47815 +124232,317,10,136619,223173 +124233,262,6,146243,1583079 +124234,129,11,28032,1454512 +124235,387,10,26679,96000 +124236,190,7,284564,1634426 +124237,62,3,1267,1447423 +124238,273,7,8204,1729 +124239,234,1,24126,48965 +124240,65,3,1966,1733768 +124241,3,5,34560,60456 +124242,254,10,409082,109469 +124243,234,1,773,16959 +124244,3,5,55563,1149267 +124245,413,11,127521,40269 +124246,97,7,12783,1398918 +124247,75,5,11056,58283 +124248,60,1,11645,1465042 +124249,234,1,50181,143353 +124250,387,10,43119,111486 +124251,234,1,348025,25950 +124252,148,9,134394,1321585 +124253,387,10,112973,1056088 +124254,277,3,2567,1402025 +124255,3,5,47386,138778 +124256,179,2,167,1323768 +124257,286,3,35572,1662182 +124258,413,11,17057,34224 +124259,317,10,314011,934047 +124260,269,9,71805,1310027 +124261,197,5,52661,1694267 +124262,105,7,3580,190 +124263,204,9,39308,33218 +124264,182,8,283995,1815822 +124265,180,7,85431,1681076 +124266,5,10,26891,30717 +124267,262,6,345922,1634432 +124268,21,3,74436,82838 +124269,179,2,38356,1319844 +124270,399,9,10198,1447390 +124271,413,11,11553,69834 +124272,52,10,88953,1196881 +124273,234,1,31913,47773 +124274,287,3,243940,1417864 +124275,246,6,315837,1746435 +124276,413,11,297762,9154 +124277,234,1,199373,1179590 +124278,234,1,36247,1021564 +124279,317,10,32623,44763 +124280,317,10,258585,1314864 +124281,289,6,12230,143786 +124282,141,7,6947,936765 +124283,53,2,74430,1821561 +124284,182,8,10066,75159 +124285,190,7,9946,1685017 +124286,102,3,16432,1418512 +124287,3,5,293167,17284 +124288,200,3,159211,1438455 +124289,325,5,263115,1821898 +124290,360,3,57419,1601709 +124291,317,10,28323,46619 +124292,317,10,55505,43586 +124293,317,10,16174,21705 +124294,3,5,30943,5582 +124295,413,11,83732,930012 +124296,234,1,390376,1614409 +124297,234,1,31596,43304 +124298,287,3,44363,1334793 +124299,196,7,33135,166177 +124300,387,10,177047,6899 +124301,317,10,47851,82796 +124302,234,1,286873,56533 +124303,415,3,2454,1460588 +124304,373,7,22076,1340319 +124305,105,7,76494,5666 +124306,182,8,97365,1544426 +124307,234,1,8340,54607 +124308,161,6,954,1367653 +124309,317,10,333103,1246573 +124310,387,10,174645,1157590 +124311,234,1,374473,15488 +124312,302,9,10727,1584233 +124313,269,9,90228,1161229 +124314,120,6,297762,1903937 +124315,317,10,15762,44056 +124316,273,7,37329,19965 +124317,52,10,41608,18834 +124318,301,5,188826,1583213 +124319,187,11,9785,1425343 +124320,269,9,263627,1392897 +124321,387,10,10173,10058 +124322,239,5,664,371 +124323,333,2,24212,38060 +124324,387,10,55236,95945 +124325,273,7,59895,34016 +124326,317,10,18148,95501 +124327,269,9,1595,17849 +124328,234,1,19719,51856 +124329,203,1,55534,1577965 +124330,210,9,54845,1411278 +124331,234,1,138544,57777 +124332,413,11,322922,81297 +124333,3,5,369366,1555620 +124334,32,8,169,1877170 +124335,413,11,100024,1793104 +124336,166,9,168259,1338147 +124337,234,1,3173,31033 +124338,286,3,333091,986472 +124339,286,3,33343,40442 +124340,273,7,295964,1042699 +124341,180,7,169656,1726736 +124342,234,1,17495,285104 +124343,52,10,10925,1205932 +124344,413,11,55343,1117395 +124345,204,9,49013,7956 +124346,204,9,209406,1067942 +124347,203,1,18044,1398164 +124348,269,9,7515,1190448 +124349,387,10,13092,64814 +124350,324,3,117550,1148723 +124351,45,9,1995,1556433 +124352,226,2,76203,1403426 +124353,3,5,78383,583874 +124354,317,10,122930,1018948 +124355,269,9,146,1636 +124356,314,2,1586,1436493 +124357,57,2,315664,1411074 +124358,317,10,358353,1048614 +124359,75,5,10389,1437892 +124360,269,9,1986,42414 +124361,387,10,11848,70719 +124362,72,11,42309,1440406 +124363,384,5,373546,1609042 +124364,234,1,104973,30956 +124365,234,1,286545,1086267 +124366,317,10,29694,5836 +124367,387,10,23855,44028 +124368,262,6,6557,1399287 +124369,148,9,107811,1460815 +124370,273,7,15045,21068 +124371,79,7,43828,2916 +124372,387,10,56533,1021627 +124373,53,2,59419,1525927 +124374,234,1,47980,139725 +124375,387,10,22999,148431 +124376,317,10,153141,83224 +124377,164,3,10733,1571745 +124378,3,5,19621,84960 +124379,32,8,109451,1455461 +124380,234,1,73194,8500 +124381,53,2,16058,79116 +124382,317,10,199647,1179830 +124383,239,5,2924,1400373 +124384,387,10,40490,27444 +124385,387,10,15873,14521 +124386,32,8,68721,1539172 +124387,226,2,9914,1466702 +124388,387,10,31682,86372 +124389,325,5,418437,1452688 +124390,97,7,333484,1367493 +124391,317,10,38237,169912 +124392,187,11,9882,136008 +124393,245,3,11639,1274065 +124394,234,1,290762,19850 +124395,234,1,270899,96627 +124396,317,10,4279,20789 +124397,210,9,10708,223242 +124398,3,5,27034,89218 +124399,387,10,331642,1035833 +124400,175,5,122081,17231 +124401,387,10,95874,70044 +124402,196,7,1877,1355879 +124403,166,9,337339,1338147 +124404,157,3,95756,220965 +124405,234,1,16803,80878 +124406,234,1,9296,8685 +124407,415,3,28430,18758 +124408,53,2,304372,65217 +124409,234,1,279606,1236075 +124410,349,1,19594,1450364 +124411,209,7,18094,1387265 +124412,387,10,10333,64839 +124413,269,9,13600,8525 +124414,413,11,365447,1527515 +124415,234,1,12,7 +124416,413,11,11101,5242 +124417,387,10,18698,330921 +124418,204,9,2463,25242 +124419,234,1,394645,82418 +124420,317,10,123949,1079143 +124421,269,9,270899,1040894 +124422,387,10,12652,20789 +124423,413,11,264080,1531 +124424,317,10,8292,84768 +124425,143,7,95516,1411126 +124426,234,1,122677,30678 +124427,317,10,139582,133423 +124428,317,10,39545,123132 +124429,387,10,146,1618 +124430,317,10,51167,61854 +124431,200,3,23823,1541744 +124432,273,7,5551,195 +124433,333,2,227306,1866245 +124434,403,10,89116,1180170 +124435,387,10,49853,5844 +124436,196,7,11614,1397066 +124437,387,10,55700,256841 +124438,204,9,19209,1633182 +124439,4,6,297762,1903916 +124440,250,11,76757,1421662 +124441,3,5,32338,579243 +124442,317,10,24077,7018 +124443,85,10,176143,1594224 +124444,387,10,379873,89193 +124445,234,1,40127,227703 +124446,234,1,32868,109745 +124447,317,10,41357,590542 +124448,413,11,17007,23952 +124449,412,9,2924,1558196 +124450,413,11,4338,563 +124451,394,7,13483,92391 +124452,413,11,28710,1070260 +124453,333,2,163791,1601453 +124454,413,11,263115,433 +124455,148,9,11589,1878362 +124456,415,3,5237,1427555 +124457,273,7,85009,22470 +124458,234,1,337012,215423 +124459,317,10,215373,84714 +124460,244,3,2105,1552179 +124461,387,10,383538,1782997 +124462,148,9,13505,22147 +124463,262,6,70981,1390362 +124464,13,1,169934,1243953 +124465,53,2,85435,15329 +124466,269,9,52362,1340958 +124467,387,10,31899,32994 +124468,317,10,9981,61398 +124469,3,5,312138,1384914 +124470,234,1,298165,1313680 +124471,286,3,79782,6427 +124472,413,11,24750,8847 +124473,317,10,76094,2430 +124474,52,10,24750,1229215 +124475,337,2,924,9424 +124476,387,10,6951,53006 +124477,269,9,9543,7203 +124478,317,10,78281,222216 +124479,53,2,43656,1551937 +124480,269,9,25684,103179 +124481,234,1,238749,207180 +124482,333,2,130948,31611 +124483,373,7,202337,1299147 +124484,234,1,17238,30309 +124485,173,7,1394,1625594 +124486,7,3,9946,1681364 +124487,105,7,93828,20459 +124488,234,1,88486,233343 +124489,52,10,284053,1744241 +124490,204,9,89086,1096786 +124491,182,8,2503,1406844 +124492,317,10,59419,56361 +124493,105,7,26880,43528 +124494,105,7,44896,947 +124495,273,7,93492,1086910 +124496,277,3,965,14512 +124497,204,9,330459,23453 +124498,273,7,3104,30137 +124499,387,10,19957,9052 +124500,317,10,42242,178486 +124501,105,7,7514,52813 +124502,234,1,11248,68774 +124503,387,10,43205,6778 +124504,3,5,9951,60834 +124505,187,11,1278,16344 +124506,34,8,1125,1533028 +124507,60,1,169656,1726735 +124508,25,2,206647,1409821 +124509,52,10,300667,285385 +124510,12,10,11024,13620 +124511,273,7,402672,5288 +124512,169,3,9914,1052871 +124513,66,11,9716,1580398 +124514,317,10,27091,96919 +124515,53,2,140607,605 +124516,52,10,379019,1780119 +124517,413,11,294690,1367212 +124518,127,3,186869,160342 +124519,234,1,13576,65310 +124520,60,1,56292,1455486 +124521,287,3,435,1418459 +124522,409,7,8869,1043374 +124523,277,3,76465,4315 +124524,346,3,159667,1242935 +124525,196,7,12113,1404217 +124526,75,5,342765,1473505 +124527,53,2,28712,9064 +124528,52,10,256356,67924 +124529,333,2,58076,1377159 +124530,3,5,22476,11371 +124531,269,9,336804,1568764 +124532,3,5,115023,1129 +124533,269,9,98339,1318447 +124534,328,6,315664,1516449 +124535,273,7,966,7182 +124536,317,10,155325,6415 +124537,273,7,41551,2916 +124538,234,1,81604,565330 +124539,5,10,397520,1277029 +124540,60,1,197849,1853681 +124541,333,2,11045,1717519 +124542,208,2,4248,1422054 +124543,277,7,86920,12247 +124544,160,3,601,9974 +124545,317,10,63360,1213382 +124546,317,10,315841,3317 +124547,234,1,127702,69310 +124548,75,5,9286,1400374 +124549,317,10,62768,31901 +124550,192,5,257088,565353 +124551,245,3,17015,1840483 +124552,80,3,27637,73104 +124553,234,1,19740,9577 +124554,64,6,10796,1459789 +124555,155,3,76341,1171315 +124556,234,1,37437,38250 +124557,413,11,42941,72643 +124558,3,5,11712,70330 +124559,413,11,108365,1267869 +124560,148,9,8869,36623 +124561,413,11,398289,1009265 +124562,269,9,11607,1342617 +124563,204,9,100110,1357058 +124564,143,7,539,7309 +124565,317,10,379441,1499810 +124566,234,1,35200,10930 +124567,413,11,14505,18387 +124568,45,9,54022,1521777 +124569,387,10,170234,72063 +124570,273,7,10013,2289 +124571,53,2,24886,1829628 +124572,208,2,257088,1416098 +124573,366,3,9425,1142860 +124574,234,1,361750,58868 +124575,204,9,42093,1087137 +124576,273,7,5516,1225 +124577,332,8,1267,1451682 +124578,289,6,98566,1459742 +124579,388,9,6947,1573076 +124580,317,10,343878,1475411 +124581,234,1,13957,4786 +124582,387,10,414977,1342601 +124583,143,7,18,8376 +124584,234,1,319513,1060223 +124585,52,10,70313,34402 +124586,413,11,11234,2773 +124587,317,10,54396,239176 +124588,269,9,338676,1117843 +124589,234,1,100275,1024216 +124590,317,10,33789,355686 +124591,234,1,103597,64751 +124592,413,11,41378,43913 +124593,204,9,42542,1015791 +124594,204,9,13852,75906 +124595,209,7,21208,1378722 +124596,269,9,25142,1414822 +124597,3,5,36245,1063181 +124598,234,1,76468,93475 +124599,196,7,17609,1283379 +124600,204,9,181533,1354916 +124601,387,10,58757,125561 +124602,143,7,227306,1390524 +124603,387,10,11008,22675 +124604,113,9,197,1406918 +124605,273,7,3405,30634 +124606,234,1,142145,1057062 +124607,160,3,262841,197930 +124608,105,7,381737,1574407 +124609,360,3,22076,1368862 +124610,52,10,11385,17843 +124611,60,1,10948,15814 +124612,317,10,16390,113896 +124613,218,1,83015,108656 +124614,32,8,11024,1653475 +124615,413,11,48636,70605 +124616,387,10,60547,52753 +124617,148,9,166221,1496657 +124618,180,7,44875,1055287 +124619,52,10,22371,47051 +124620,148,9,44943,14041 +124621,234,1,351365,157400 +124622,204,9,42093,1085054 +124623,204,9,18998,107418 +124624,317,10,159667,1154273 +124625,234,1,93116,130424 +124626,234,1,25353,93592 +124627,413,11,93676,56278 +124628,234,1,4592,13496 +124629,53,2,17209,62878 +124630,234,1,47110,935644 +124631,317,10,213110,66266 +124632,317,10,54700,66037 +124633,148,9,134201,1710644 +124634,286,3,17209,31627 +124635,409,7,27259,1733019 +124636,204,9,10070,64231 +124637,65,3,14430,1521685 +124638,373,7,44115,1394004 +124639,53,2,237584,1621361 +124640,333,2,298,1325234 +124641,234,1,119926,149929 +124642,399,9,15653,1767051 +124643,345,7,6947,1376902 +124644,5,10,32558,87628 +124645,413,11,27085,1412032 +124646,234,1,228108,518972 +124647,209,7,21208,1384393 +124648,269,9,266030,1438565 +124649,3,5,47851,69538 +124650,387,10,28293,108498 +124651,196,7,56937,1336914 +124652,99,3,29343,103569 +124653,398,9,9296,1341400 +124654,289,6,9514,1447355 +124655,148,9,6687,1323113 +124656,175,5,9032,1391583 +124657,413,11,421365,1373892 +124658,141,7,214756,1555210 +124659,387,10,70351,1417082 +124660,220,7,51044,55694 +124661,387,10,180635,223115 +124662,269,9,134350,548022 +124663,269,9,243568,6629 +124664,64,6,11377,103336 +124665,244,3,55420,1114902 +124666,394,7,12103,3193 +124667,97,7,9529,91094 +124668,317,10,30060,70663 +124669,234,1,1272,2034 +124670,52,10,269149,567562 +124671,286,3,192210,1531391 +124672,209,7,10529,1364801 +124673,72,11,544,993536 +124674,204,9,10294,112521 +124675,234,1,177677,9033 +124676,234,1,40866,51516 +124677,273,7,102382,419327 +124678,289,6,10539,1453483 +124679,169,3,169298,1169522 +124680,3,5,294651,1664507 +124681,317,10,22398,236291 +124682,105,7,398891,67265 +124683,181,7,2047,1550166 +124684,46,5,10204,1506373 +124685,3,5,52827,70821 +124686,399,9,21956,1450356 +124687,273,7,12506,1528 +124688,127,3,1369,16576 +124689,273,7,102444,51883 +124690,234,1,2687,11770 +124691,234,1,174748,1157342 +124692,234,1,447236,225941 +124693,196,7,169298,1407256 +124694,387,10,354857,1251101 +124695,413,11,166393,1147890 +124696,234,1,92309,107065 +124697,52,10,35543,27899 +124698,105,7,11635,10572 +124699,204,9,128669,8622 +124700,234,1,103689,20660 +124701,262,6,59965,80830 +124702,3,5,14750,6490 +124703,413,11,29829,34113 +124704,5,10,29483,126391 +124705,97,7,241639,142096 +124706,360,3,332411,1579392 +124707,5,10,87514,1291963 +124708,394,7,13225,1370914 +124709,335,6,10674,1813969 +124710,390,6,12,1623548 +124711,158,2,256740,1372213 +124712,234,1,126016,1131255 +124713,317,10,38789,79171 +124714,317,10,240733,109583 +124715,20,2,4286,1450723 +124716,3,5,107319,1089059 +124717,317,10,27740,19266 +124718,3,5,16026,23331 +124719,234,1,52122,3663 +124720,97,7,11618,14657 +124721,226,2,25941,1558430 +124722,189,3,5,1419160 +124723,273,7,38162,98606 +124724,105,7,433244,1285806 +124725,203,1,11521,992965 +124726,3,5,51763,151 +124727,196,7,257088,83085 +124728,349,1,9325,1653448 +124729,317,10,301804,1224355 +124730,387,10,9032,19292 +124731,113,9,13056,1708278 +124732,66,11,49521,1661423 +124733,413,11,910,13973 +124734,52,10,72545,72725 +124735,143,7,1271,113097 +124736,77,10,13640,34934 +124737,269,9,350060,1669846 +124738,404,6,118,1855228 +124739,234,1,121848,46959 +124740,166,9,312221,1580862 +124741,3,5,12206,9836 +124742,45,9,19255,1340734 +124743,304,10,44155,78418 +124744,203,1,9819,57705 +124745,317,10,73099,568077 +124746,182,8,634,1576028 +124747,53,2,11975,8428 +124748,105,7,29382,103693 +124749,273,7,11614,18837 +124750,413,11,255343,11358 +124751,317,10,33789,572363 +124752,204,9,31993,103446 +124753,269,9,196469,17148 +124754,387,10,30385,103850 +124755,317,10,308024,1155547 +124756,234,1,37189,28615 +124757,273,7,195522,1130047 +124758,127,3,244786,1099700 +124759,387,10,11122,39905 +124760,317,10,218351,1079872 +124761,234,1,85549,932318 +124762,317,10,24939,81461 +124763,190,7,127585,92216 +124764,387,10,129542,1028338 +124765,273,7,79218,77949 +124766,289,6,346672,1452998 +124767,234,1,1991,138 +124768,105,7,333352,13083 +124769,234,1,69266,9181 +124770,190,7,10484,1676545 +124771,53,2,241254,1205762 +124772,373,7,6933,579405 +124773,234,1,5544,11983 +124774,60,1,27622,10015 +124775,317,10,40744,58861 +124776,234,1,297560,1120003 +124777,154,3,539,19460 +124778,273,7,81616,32406 +124779,3,5,47942,19102 +124780,204,9,79853,1197729 +124781,413,11,2805,1647902 +124782,234,1,17711,588701 +124783,317,10,27019,73153 +124784,413,11,26173,10007 +124785,198,6,294272,1660727 +124786,175,5,445993,1808038 +124787,273,7,27986,29810 +124788,234,1,232739,1180859 +124789,413,11,289159,1357684 +124790,273,7,9540,117 +124791,18,2,10590,80811 +124792,234,1,20017,2303 +124793,273,7,180252,1293604 +124794,413,11,234377,1088275 +124795,105,7,40130,45670 +124796,269,9,124963,8866 +124797,317,10,21028,23442 +124798,209,7,921,7538 +124799,105,7,52270,14647 +124800,232,10,134475,34741 +124801,204,9,284052,1574043 +124802,23,9,132363,935300 +124803,317,10,27671,98632 +124804,289,6,257088,1631414 +124805,413,11,141733,81872 +124806,317,10,38916,548644 +124807,67,10,49521,105643 +124808,143,7,53042,1183166 +124809,269,9,9963,16614 +124810,203,1,49013,7924 +124811,273,7,9890,6489 +124812,5,10,38359,562603 +124813,141,7,9836,1745258 +124814,317,10,51619,137992 +124815,250,11,201085,1418443 +124816,317,10,84626,150094 +124817,333,2,2300,75628 +124818,203,1,79316,1473814 +124819,328,6,369885,1398930 +124820,5,10,10142,64032 +124821,387,10,4253,35785 +124822,234,1,116350,80260 +124823,270,9,954,1546572 +124824,317,10,13355,141707 +124825,3,5,196469,1318704 +124826,13,9,105,1198496 +124827,413,11,16432,43150 +124828,387,10,43471,7662 +124829,317,10,395992,7932 +124830,52,10,322922,1317159 +124831,387,10,508,7018 +124832,15,6,72431,1271924 +124833,317,10,36245,9747 +124834,53,2,39982,1701829 +124835,413,11,11391,69178 +124836,273,7,96159,1013074 +124837,5,10,56943,1712418 +124838,226,2,4547,83064 +124839,60,1,175334,81930 +124840,234,1,201124,108847 +124841,204,9,14069,1009730 +124842,317,10,55712,110279 +124843,250,11,14254,62723 +124844,234,1,276909,140264 +124845,180,7,3309,7128 +124846,317,10,59722,227082 +124847,412,9,13798,1565844 +124848,413,11,44631,30105 +124849,60,1,18148,20025 +124850,317,10,262088,1307600 +124851,413,11,74645,572233 +124852,319,1,126889,1816357 +124853,387,10,2135,932 +124854,232,10,43367,131048 +124855,317,10,38554,1182532 +124856,413,11,273879,24257 +124857,200,3,9946,1408326 +124858,234,1,14537,76978 +124859,387,10,148371,1812014 +124860,105,7,9551,57915 +124861,234,1,28032,40345 +124862,234,1,59408,43553 +124863,204,9,245536,1280968 +124864,273,7,9532,26981 +124865,225,7,354287,1338972 +124866,317,10,293262,1364771 +124867,160,3,16996,4064 +124868,3,5,464111,1424630 +124869,180,7,125264,1604536 +124870,289,6,6948,1326403 +124871,127,3,76094,88979 +124872,273,7,38749,1729 +124873,196,7,9846,1564865 +124874,317,10,17845,82419 +124875,317,10,70988,560039 +124876,269,9,21282,958314 +124877,413,11,86241,1491246 +124878,273,7,9389,58257 +124879,105,7,68737,7229 +124880,5,10,87759,590449 +124881,204,9,151911,14963 +124882,234,1,441043,1755726 +124883,403,10,293167,3238 +124884,413,11,25142,1642499 +124885,67,10,15213,1450353 +124886,234,1,183073,225568 +124887,57,2,47536,138639 +124888,180,7,43877,1029786 +124889,404,6,954,1886670 +124890,148,9,11917,1317670 +124891,413,11,17111,1271299 +124892,3,5,11001,28240 +124893,269,9,36245,1384701 +124894,269,9,2625,27543 +124895,314,2,77338,1724203 +124896,317,10,84994,45491 +124897,234,1,193959,1127304 +124898,234,1,744,893 +124899,387,10,79094,259027 +124900,3,5,10178,1940 +124901,273,7,445993,52339 +124902,203,1,3037,40493 +124903,192,5,2503,1403641 +124904,127,3,578,8591 +124905,289,6,81684,1455621 +124906,160,3,14,1614896 +124907,157,3,28169,1172673 +124908,196,7,10066,1864800 +124909,3,5,324440,1545383 +124910,415,3,7340,1081673 +124911,83,2,9352,15314 +124912,234,1,222487,985032 +124913,226,2,18,1406914 +124914,105,7,6964,947 +124915,324,3,2721,1541157 +124916,204,9,297762,1510429 +124917,273,7,7304,4140 +124918,13,3,289,112007 +124919,273,7,5257,42383 +124920,289,6,48617,935705 +124921,204,9,10391,1404834 +124922,394,7,157424,1375918 +124923,413,11,41206,8514 +124924,3,5,335340,39191 +124925,234,1,24357,56338 +124926,269,9,11415,13675 +124927,314,2,549,91053 +124928,289,6,309809,1460512 +124929,162,6,29058,98449 +124930,225,7,9819,1879202 +124931,234,1,16232,80215 +124932,273,7,5991,1197296 +124933,268,7,1125,1551523 +124934,273,7,84617,1113209 +124935,196,7,333663,1451407 +124936,105,7,51250,1305960 +124937,317,10,337958,75544 +124938,52,10,10198,1615536 +124939,143,7,413421,1785026 +124940,3,5,25673,18744 +124941,53,2,11058,28041 +124942,53,2,31027,66005 +124943,13,9,41213,1136825 +124944,3,5,11517,23969 +124945,234,1,80443,122016 +124946,317,10,232672,186858 +124947,325,5,443319,463602 +124948,234,1,409696,1668340 +124949,234,1,16460,87130 +124950,387,10,77950,582919 +124951,317,10,58133,3614 +124952,413,11,9352,17164 +124953,360,3,2503,1406809 +124954,238,7,340101,1406189 +124955,234,1,283701,229263 +124956,387,10,9451,13235 +124957,105,7,413198,1748371 +124958,268,7,10632,93844 +124959,105,7,16066,469 +124960,60,1,50759,1542608 +124961,204,9,10529,962731 +124962,198,6,329865,1634298 +124963,52,10,14626,42842 +124964,97,7,310568,17428 +124965,190,7,64215,1354335 +124966,234,1,129628,19969 +124967,198,6,188927,1638562 +124968,234,1,39334,122673 +124969,303,3,245891,1403479 +124970,317,10,253251,1502664 +124971,12,10,263115,934847 +124972,317,10,16137,79547 +124973,413,11,23367,1315 +124974,413,11,274857,56917 +124975,317,10,239519,69104 +124976,204,9,347945,1618761 +124977,317,10,41171,1316714 +124978,273,7,274479,1551816 +124979,269,9,84577,1327217 +124980,3,5,201419,232385 +124981,269,9,13763,14433 +124982,387,10,68737,1997 +124983,413,11,137193,1106974 +124984,286,3,27053,14234 +124985,413,11,383914,17532 +124986,187,11,116979,1409287 +124987,226,2,16235,1456487 +124988,85,10,86284,95741 +124989,317,10,338767,1463024 +124990,413,11,11122,68895 +124991,169,3,333352,1609857 +124992,66,11,9716,1406756 +124993,317,10,76268,586137 +124994,204,9,11370,59397 +124995,234,1,22396,20921 +124996,387,10,2029,20860 +124997,273,7,356326,1874694 +124998,317,10,38027,83239 +124999,387,10,127560,26190 +125000,387,10,64827,239895 +125001,53,2,28571,4350 +125002,203,1,150117,1410142 +125003,123,3,31347,555348 +125004,250,11,41283,1440308 +125005,317,10,377847,995513 +125006,148,9,10400,14915 +125007,317,10,62071,70675 +125008,234,1,104083,81285 +125009,171,3,340488,6826 +125010,3,5,13493,10815 +125011,204,9,10025,62062 +125012,413,11,5955,13227 +125013,387,10,87516,6854 +125014,289,6,32428,150758 +125015,96,2,341174,1638559 +125016,148,9,33792,9063 +125017,175,5,44578,1530136 +125018,412,9,9902,1600612 +125019,234,1,1715,5306 +125020,234,1,219931,71353 +125021,132,2,141,1401606 +125022,234,1,16151,79684 +125023,5,10,91419,82173 +125024,286,3,131822,1093739 +125025,234,1,340119,1466974 +125026,66,11,857,1327842 +125027,262,6,346672,1427572 +125028,5,10,214093,71175 +125029,413,11,20648,37003 +125030,204,9,25983,966560 +125031,373,7,245168,1338221 +125032,234,1,10797,66880 +125033,166,9,10344,229909 +125034,3,5,52705,3540 +125035,18,2,72574,566360 +125036,317,10,246917,104367 +125037,187,11,239566,1399862 +125038,158,2,373546,1459227 +125039,234,1,45167,132360 +125040,179,2,302026,558371 +125041,234,1,40139,15993 +125042,413,11,9591,8425 +125043,269,9,260030,1453106 +125044,381,9,178809,1412582 +125045,20,2,7551,1526465 +125046,99,3,12273,1418329 +125047,187,11,15472,4479 +125048,411,9,36658,46082 +125049,209,7,10066,1384393 +125050,317,10,25684,216662 +125051,317,10,378441,1362644 +125052,317,10,3061,29965 +125053,204,9,354859,1331893 +125054,105,7,103216,237336 +125055,273,7,210913,15478 +125056,234,1,42123,32277 +125057,234,1,125264,587603 +125058,387,10,16229,1725 +125059,32,8,410118,1791604 +125060,3,5,41599,10079 +125061,182,8,177677,1545989 +125062,387,10,10740,16447 +125063,60,1,33541,1676378 +125064,317,10,200117,1180768 +125065,234,1,353326,1496011 +125066,234,1,44486,887794 +125067,175,5,2924,18095 +125068,234,1,235092,64508 +125069,180,7,42641,13339 +125070,204,9,100770,1554560 +125071,179,2,315837,132648 +125072,273,7,126319,1163106 +125073,3,5,4547,37925 +125074,5,10,222935,1208353 +125075,234,1,129518,211173 +125076,373,7,4147,1391571 +125077,328,6,10529,1412707 +125078,180,7,12311,14010 +125079,317,10,36968,68770 +125080,60,1,5881,46292 +125081,234,1,52772,9168 +125082,289,6,273481,1568839 +125083,419,10,50674,311268 +125084,234,1,31547,109083 +125085,273,7,68347,1384196 +125086,3,5,174594,1090854 +125087,75,5,11593,1183453 +125088,204,9,198600,1077688 +125089,317,10,295588,1368829 +125090,234,1,24921,94045 +125091,277,3,1966,1733759 +125092,333,2,64807,1431553 +125093,203,1,212756,1528012 +125094,179,2,298584,1319446 +125095,403,10,2887,28708 +125096,269,9,24363,13228 +125097,387,10,10134,63937 +125098,148,9,6977,555 +125099,160,3,286372,1378150 +125100,234,1,78572,3776 +125101,234,1,197177,41632 +125102,413,11,39428,1115632 +125103,3,5,158900,1152812 +125104,398,9,11812,65824 +125105,317,10,41378,70675 +125106,273,7,655,6918 +125107,262,6,266433,1415901 +125108,317,10,77010,581062 +125109,234,1,32021,29648 +125110,203,1,6947,958273 +125111,413,11,38920,29693 +125112,262,6,54111,1285199 +125113,269,9,9451,35512 +125114,234,1,403867,1770592 +125115,148,9,347031,1645424 +125116,286,3,375199,1561987 +125117,105,7,19610,84912 +125118,3,5,83802,115486 +125119,234,1,34729,99362 +125120,234,1,68752,89838 +125121,413,11,98364,22086 +125122,105,7,106546,1350137 +125123,273,7,32690,7460 +125124,204,9,10761,23454 +125125,209,7,9836,1689963 +125126,387,10,39435,11993 +125127,234,1,48567,176153 +125128,39,3,1976,1437095 +125129,75,5,87827,51333 +125130,148,9,31947,1049695 +125131,234,1,79550,587439 +125132,273,7,43342,131267 +125133,333,2,90616,1692108 +125134,3,5,108282,40387 +125135,5,10,10703,66775 +125136,413,11,13493,17164 +125137,105,7,199851,1031007 +125138,413,11,43978,120226 +125139,387,10,244580,70723 +125140,317,10,19336,18611 +125141,234,1,77010,88820 +125142,208,2,9532,25021 +125143,413,11,152042,1315185 +125144,269,9,36960,1330885 +125145,105,7,284564,104842 +125146,273,7,32390,1070105 +125147,148,9,765,11746 +125148,190,7,773,1367665 +125149,105,7,102161,551674 +125150,60,1,25407,1338899 +125151,40,1,10727,1584249 +125152,234,1,98541,94562 +125153,317,10,11403,936626 +125154,317,10,433082,234400 +125155,269,9,6575,41081 +125156,226,2,59296,1401757 +125157,413,11,23515,1440864 +125158,262,6,333352,1609856 +125159,273,7,30995,1861810 +125160,3,5,2757,1781 +125161,387,10,338438,622942 +125162,148,9,28519,13008 +125163,234,1,42764,50739 +125164,269,9,225728,1172514 +125165,317,10,163791,91455 +125166,413,11,144680,77994 +125167,317,10,65545,1195751 +125168,273,7,325133,1589 +125169,234,1,84295,82800 +125170,234,1,103850,38696 +125171,189,3,857,1593085 +125172,204,9,107319,1559628 +125173,204,9,76203,548849 +125174,273,7,13805,49911 +125175,317,10,19754,85155 +125176,187,11,31911,1549584 +125177,28,9,9532,1546584 +125178,3,5,66187,32097 +125179,317,10,18551,10967 +125180,5,10,39176,1544 +125181,204,9,269173,1379034 +125182,333,2,403429,1640636 +125183,166,9,10543,1410346 +125184,34,8,354287,1616043 +125185,273,7,72279,18837 +125186,234,1,69165,103474 +125187,277,3,182899,27969 +125188,229,6,311324,1621454 +125189,3,5,43525,2774 +125190,333,2,238,1518601 +125191,387,10,64965,85551 +125192,234,1,8247,11694 +125193,127,3,72105,1122560 +125194,269,9,13777,75291 +125195,25,2,294652,76088 +125196,289,6,98566,1459725 +125197,143,7,68387,1397278 +125198,232,10,9389,57559 +125199,413,11,6171,9966 +125200,317,10,333367,548759 +125201,46,5,954,1886655 +125202,269,9,13596,35512 +125203,413,11,60281,1164588 +125204,273,7,158908,4140 +125205,387,10,198600,69936 +125206,277,3,9352,113048 +125207,11,6,127380,1715743 +125208,349,1,20421,1463245 +125209,187,11,245692,1372087 +125210,148,9,9675,5633 +125211,5,10,42734,1367580 +125212,3,5,345922,6389 +125213,180,7,145481,9950 +125214,269,9,17295,44986 +125215,301,5,25796,1399974 +125216,262,6,356296,1402983 +125217,269,9,263341,1314 +125218,148,9,817,9042 +125219,413,11,403130,68636 +125220,87,7,51209,227227 +125221,273,7,180576,3535 +125222,148,9,8368,54745 +125223,72,11,325173,1601644 +125224,60,1,76788,1721399 +125225,3,5,16980,58367 +125226,269,9,24420,2243 +125227,132,2,237584,1338670 +125228,373,7,204922,1414094 +125229,317,10,47161,1327119 +125230,234,1,11511,12988 +125231,317,10,141643,99116 +125232,160,3,198663,1367499 +125233,413,11,109122,114399 +125234,289,6,127521,1542729 +125235,108,10,14698,3634 +125236,387,10,42494,1014027 +125237,148,9,107811,112307 +125238,234,1,83588,929825 +125239,75,5,24624,1128511 +125240,77,10,127560,1191324 +125241,387,10,82650,1231184 +125242,273,7,17386,1473360 +125243,234,1,72614,1190179 +125244,399,9,13205,1815489 +125245,53,2,9778,60284 +125246,3,5,5460,33618 +125247,3,5,6391,759 +125248,234,1,278901,185438 +125249,234,1,76533,108430 +125250,269,9,284564,930982 +125251,5,10,18919,83881 +125252,413,11,13763,58729 +125253,148,9,147722,8508 +125254,187,11,10204,1613286 +125255,234,1,44937,78069 +125256,301,5,284564,1149583 +125257,234,1,417489,190103 +125258,113,9,693,81963 +125259,373,7,45988,1143389 +125260,3,5,157384,1046612 +125261,204,9,70667,60859 +125262,413,11,210913,231817 +125263,204,9,100910,4349 +125264,234,1,166,1961 +125265,234,1,67314,544034 +125266,3,5,28421,10602 +125267,87,7,266856,1746704 +125268,286,3,64786,1096189 +125269,273,7,16784,4500 +125270,234,1,186997,129896 +125271,387,10,70436,428344 +125272,105,7,20325,1151862 +125273,158,2,316042,1574435 +125274,77,10,9550,1334 +125275,273,7,25568,94239 +125276,269,9,74629,81893 +125277,234,1,161024,981342 +125278,203,1,202214,1183173 +125279,75,5,21671,138778 +125280,3,5,65048,25822 +125281,3,5,287587,66803 +125282,317,10,317168,1028485 +125283,234,1,499,6817 +125284,105,7,127445,68144 +125285,413,11,27358,235783 +125286,234,1,391899,1409374 +125287,3,5,194104,1174371 +125288,234,1,331161,1142953 +125289,52,10,127585,11092 +125290,245,3,2567,1402042 +125291,245,3,11024,1673528 +125292,333,2,8619,14381 +125293,387,10,54988,98538 +125294,204,9,30973,107419 +125295,413,11,13205,967699 +125296,152,2,284053,119182 +125297,234,1,23750,31493 +125298,20,2,445993,1820445 +125299,3,5,262785,1306683 +125300,328,6,294254,1425329 +125301,269,9,3539,32416 +125302,262,6,60599,1400500 +125303,74,5,369406,1872436 +125304,328,6,9664,1410187 +125305,317,10,296344,1120003 +125306,234,1,31021,105897 +125307,74,5,10320,1688593 +125308,269,9,6341,1500632 +125309,3,5,76084,41709 +125310,53,2,153,5215 +125311,273,7,1721,18837 +125312,87,7,31682,342032 +125313,3,5,1811,33672 +125314,203,1,222517,1699960 +125315,234,1,284305,1347623 +125316,179,2,9358,1441327 +125317,234,1,22784,1032 +125318,269,9,47446,1544992 +125319,77,10,220,2748 +125320,413,11,188927,931286 +125321,273,7,17015,1073310 +125322,234,1,37969,89685 +125323,3,5,31532,30258 +125324,234,1,11113,14674 +125325,53,2,48231,13551 +125326,413,11,37581,120177 +125327,25,2,126889,961143 +125328,387,10,11909,64423 +125329,54,10,621,1485824 +125330,396,3,435,1418480 +125331,373,7,9563,1400072 +125332,234,1,261101,1191336 +125333,208,2,300596,1507021 +125334,234,1,7237,52140 +125335,204,9,8915,1322019 +125336,81,3,809,1678639 +125337,357,3,19995,1483229 +125338,234,1,30082,53708 +125339,53,2,76494,19285 +125340,234,1,352199,1186192 +125341,413,11,197089,49186 +125342,52,10,27503,1496 +125343,234,1,121725,106549 +125344,200,3,257088,1638139 +125345,273,7,103218,66675 +125346,234,1,50153,5030 +125347,387,10,47112,84665 +125348,317,10,18190,20213 +125349,175,5,188927,1378716 +125350,204,9,45215,7337 +125351,160,3,1271,92235 +125352,304,10,208756,587090 +125353,105,7,341689,1797987 +125354,3,5,18530,19952 +125355,105,7,33851,10494 +125356,317,10,94725,97755 +125357,317,10,251555,113417 +125358,235,5,168259,1395281 +125359,317,10,185156,54443 +125360,77,10,10070,51021 +125361,196,7,201085,1399116 +125362,317,10,163376,1242310 +125363,234,1,2898,3388 +125364,387,10,211233,589083 +125365,188,8,14430,1431084 +125366,273,7,28663,100580 +125367,208,2,220820,1332524 +125368,413,11,403119,1312279 +125369,273,7,197297,1764584 +125370,60,1,975,1457185 +125371,413,11,57011,84746 +125372,132,2,693,589942 +125373,3,5,314011,1408389 +125374,53,2,86838,19285 +125375,413,11,14207,68393 +125376,208,2,11812,1316003 +125377,234,1,26805,39743 +125378,234,1,59046,228754 +125379,273,7,44936,1432706 +125380,273,7,12279,72030 +125381,413,11,606,1531 +125382,105,7,71329,545036 +125383,317,10,70821,226533 +125384,192,5,691,19474 +125385,3,5,364833,1272580 +125386,66,11,12102,1264 +125387,413,11,177677,49809 +125388,311,9,10733,1571762 +125389,105,7,49073,1043856 +125390,234,1,427045,52044 +125391,413,11,134656,131521 +125392,181,7,258480,1556407 +125393,381,9,163,1414174 +125394,249,7,21786,1340117 +125395,5,10,43685,549129 +125396,148,9,94663,1303185 +125397,317,10,441881,1172490 +125398,203,1,205864,1603900 +125399,269,9,203264,1697263 +125400,333,2,59408,1590424 +125401,234,1,14683,1180949 +125402,317,10,18801,92703 +125403,387,10,262975,1072277 +125404,269,9,131343,1161454 +125405,387,10,211139,1396759 +125406,387,10,16410,71023 +125407,317,10,74777,551463 +125408,413,11,324181,1775300 +125409,154,3,13042,8003 +125410,239,5,297702,1577160 +125411,234,1,13807,25236 +125412,64,6,9471,1459789 +125413,387,10,9736,63898 +125414,413,11,8247,54271 +125415,160,3,118,1415957 +125416,317,10,107891,1269422 +125417,387,10,112304,1070871 +125418,166,9,132363,1403397 +125419,3,5,93676,72751 +125420,53,2,397422,971528 +125421,398,9,19995,92359 +125422,413,11,180305,60521 +125423,3,5,20126,25322 +125424,234,1,382155,221064 +125425,3,5,9568,58049 +125426,387,10,27717,98826 +125427,45,9,1624,1549001 +125428,105,7,29233,1113209 +125429,273,7,18148,1295385 +125430,148,9,43455,34436 +125431,387,10,127380,1396739 +125432,64,6,127380,1715747 +125433,3,5,39957,1163706 +125434,317,10,15674,58816 +125435,75,5,197,1332515 +125436,262,6,236324,1097204 +125437,45,9,12526,1424896 +125438,102,3,9946,1406053 +125439,360,3,159211,1438450 +125440,286,3,270024,24788 +125441,234,1,57993,64114 +125442,328,6,287903,1569336 +125443,298,5,68737,1405389 +125444,234,1,49792,54590 +125445,317,10,27019,38341 +125446,105,7,4916,117 +125447,133,3,49974,1223499 +125448,234,1,22007,60099 +125449,40,1,924,1733238 +125450,210,9,163,1559566 +125451,105,7,30298,12142 +125452,234,1,82737,113337 +125453,234,1,50780,1038 +125454,166,9,435,1338147 +125455,387,10,15677,78517 +125456,259,3,435,1551653 +125457,387,10,28363,84940 +125458,234,1,129798,1206424 +125459,234,1,319396,1046586 +125460,273,7,39992,72679 +125461,413,11,66045,548012 +125462,234,1,56942,15488 +125463,203,1,356752,1841577 +125464,388,9,206647,1398089 +125465,317,10,24150,16848 +125466,234,1,20160,87322 +125467,273,7,8852,15445 +125468,46,5,379019,1638823 +125469,387,10,2898,28780 +125470,366,3,18,1440848 +125471,317,10,171075,35318 +125472,3,5,18836,141175 +125473,234,1,21780,33056 +125474,234,1,41261,125939 +125475,5,10,69903,65605 +125476,331,3,435,1574640 +125477,3,5,62397,5399 +125478,387,10,12076,138855 +125479,234,1,27332,15858 +125480,209,7,18671,139338 +125481,317,10,14644,26406 +125482,77,10,10594,59328 +125483,234,1,17590,39996 +125484,234,1,46149,20025 +125485,234,1,28438,10146 +125486,305,9,193893,15435 +125487,30,5,284052,1404244 +125488,105,7,41970,32804 +125489,226,2,78028,1605169 +125490,179,2,70667,1319165 +125491,77,10,10066,22038 +125492,403,10,29260,2089 +125493,148,9,2516,5060 +125494,148,9,511,7099 +125495,373,7,214081,45141 +125496,387,10,284293,82337 +125497,373,7,360249,1448311 +125498,204,9,45184,9061 +125499,5,10,28000,99371 +125500,3,5,26514,1060 +125501,273,7,298584,1116280 +125502,175,5,316042,1266989 +125503,387,10,37311,57624 +125504,200,3,79316,1547666 +125505,328,6,228066,1574097 +125506,287,3,359245,1455543 +125507,53,2,2259,9943 +125508,413,11,313074,1379027 +125509,160,3,17467,229303 +125510,87,7,3037,1585805 +125511,273,7,28974,13848 +125512,148,9,88953,544648 +125513,169,3,2687,15356 +125514,273,7,25507,14356 +125515,413,11,51994,47204 +125516,287,3,358982,1509637 +125517,273,7,209271,53712 +125518,387,10,27450,175973 +125519,234,1,458428,1820245 +125520,387,10,107073,112133 +125521,387,10,27873,1017367 +125522,262,6,1073,1413509 +125523,273,7,32657,23486 +125524,273,7,104297,178107 +125525,210,9,261036,1523331 +125526,273,7,272878,894 +125527,413,11,42837,31997 +125528,387,10,80596,41416 +125529,262,6,10201,16499 +125530,317,10,73257,202053 +125531,360,9,408616,1808712 +125532,3,5,52637,81743 +125533,273,7,107985,16368 +125534,5,10,59297,1524302 +125535,234,1,203186,55793 +125536,360,9,62728,1336517 +125537,53,2,106747,20490 +125538,204,9,157409,1208222 +125539,273,7,216363,1487840 +125540,387,10,15371,608 +125541,317,10,172386,543289 +125542,190,7,127585,1384366 +125543,10,3,5393,43107 +125544,3,5,6079,11692 +125545,234,1,21449,87543 +125546,387,10,83354,8501 +125547,226,2,15613,1442499 +125548,373,7,237584,1621371 +125549,234,1,5460,43439 +125550,273,7,27102,17529 +125551,203,1,54845,1400356 +125552,135,3,11024,1673529 +125553,3,5,64605,870 +125554,3,5,38715,14411 +125555,3,5,29212,103237 +125556,75,5,245168,1363598 +125557,188,8,194,1551971 +125558,258,9,3933,963843 +125559,75,5,245168,1578866 +125560,234,1,196852,583607 +125561,234,1,321315,1418980 +125562,273,7,46261,1014937 +125563,113,9,9882,10575 +125564,3,5,198227,1024473 +125565,204,9,330459,1860041 +125566,268,7,18,13168 +125567,172,3,8619,1377236 +125568,234,1,166253,1643171 +125569,234,1,290714,68167 +125570,234,1,62614,213330 +125571,182,8,128270,1209613 +125572,234,1,44519,229248 +125573,327,7,11880,11350 +125574,60,1,78265,1529473 +125575,234,1,79526,226101 +125576,53,2,18282,1357219 +125577,273,7,340961,31853 +125578,60,1,43514,1380404 +125579,273,7,372226,584950 +125580,286,3,108365,1043953 +125581,413,11,74525,346689 +125582,394,7,10201,1424167 +125583,5,10,65123,73170 +125584,398,9,15613,1374605 +125585,53,2,621,8885 +125586,3,5,19610,10005 +125587,413,11,742,11233 +125588,53,2,27523,1314149 +125589,317,10,255396,1299642 +125590,269,9,340103,1418416 +125591,37,3,86829,1457935 +125592,387,10,35,239 +125593,92,7,147815,1018719 +125594,269,9,19142,21640 +125595,49,7,356500,1578009 +125596,148,9,8292,23547 +125597,203,1,245775,1475321 +125598,143,7,332806,1663951 +125599,239,5,5991,2794 +125600,289,6,53219,148148 +125601,148,9,33336,103471 +125602,53,2,256122,1694677 +125603,234,1,30996,107482 +125604,317,10,26358,49888 +125605,317,10,325592,1543277 +125606,200,3,2300,1459895 +125607,317,10,36236,12330 +125608,413,11,241855,583479 +125609,317,10,45227,1330438 +125610,53,2,6557,50462 +125611,127,3,289,4130 +125612,317,10,345915,90542 +125613,10,3,47324,7647 +125614,60,1,284053,70500 +125615,105,7,70666,8576 +125616,148,9,294690,1367214 +125617,52,10,39195,10051 +125618,413,11,13380,22483 +125619,387,10,206647,21339 +125620,413,11,390296,1700430 +125621,387,10,160844,141114 +125622,413,11,52859,127627 +125623,234,1,251732,1229085 +125624,273,7,14615,8619 +125625,3,5,45987,1080822 +125626,210,9,263115,1444926 +125627,387,10,101231,234556 +125628,286,3,31262,591878 +125629,413,11,156360,105461 +125630,328,6,55534,1401569 +125631,317,10,228355,1264504 +125632,234,1,694,240 +125633,204,9,68715,1133156 +125634,204,9,43594,1546668 +125635,269,9,16432,1176478 +125636,213,10,32601,85231 +125637,209,7,9928,1404326 +125638,394,7,274857,1335559 +125639,79,7,33556,88140 +125640,317,10,29082,102844 +125641,234,1,37534,54527 +125642,317,10,266433,90684 +125643,301,5,10294,1408357 +125644,75,5,286372,1378151 +125645,226,2,48207,1615419 +125646,84,7,2978,1864222 +125647,360,9,72545,1412976 +125648,250,11,72431,1400506 +125649,234,1,11517,52629 +125650,204,9,6552,50722 +125651,234,1,91571,9740 +125652,373,7,314065,1392611 +125653,387,10,10916,33045 +125654,269,9,268174,1189980 +125655,234,1,44265,19713 +125656,266,3,312831,1594175 +125657,75,5,8869,1429249 +125658,3,5,128842,1067113 +125659,234,1,127369,985032 +125660,3,5,85494,29811 +125661,97,7,8619,1077782 +125662,182,8,45205,132522 +125663,106,3,809,68463 +125664,75,5,13380,65689 +125665,317,10,271404,128636 +125666,399,9,10020,7890 +125667,310,3,229304,141167 +125668,203,1,246655,1401309 +125669,387,10,51800,1045908 +125670,105,7,264553,1332309 +125671,273,7,284288,1763419 +125672,234,1,53931,55456 +125673,105,7,22429,37241 +125674,203,1,40130,1355571 +125675,52,10,34084,1019068 +125676,179,2,343173,72240 +125677,105,7,73697,240264 +125678,360,3,240832,1367808 +125679,148,9,266285,1475317 +125680,415,3,40466,1760137 +125681,268,7,313922,1383288 +125682,317,10,72086,567805 +125683,387,10,31042,118289 +125684,208,2,10320,9333 +125685,53,2,244580,188097 +125686,203,1,322443,1615077 +125687,234,1,10986,67972 +125688,273,7,344120,1321167 +125689,187,11,9835,228439 +125690,413,11,2300,7068 +125691,105,7,159727,959262 +125692,343,3,60568,119461 +125693,198,6,330459,1706705 +125694,269,9,621,8883 +125695,250,11,340275,1377116 +125696,289,6,13682,1447459 +125697,317,10,25633,19094 +125698,143,7,8072,3528 +125699,105,7,108634,1176979 +125700,415,3,38269,101227 +125701,307,6,338189,1650740 +125702,413,11,36658,11017 +125703,87,7,309581,111213 +125704,143,7,341420,1643573 +125705,413,11,59965,9772 +125706,204,9,31947,91989 +125707,317,10,128284,1045865 +125708,204,9,17495,1744163 +125709,3,5,9675,432 +125710,273,7,45649,133398 +125711,234,1,49588,142521 +125712,301,5,99861,1388897 +125713,273,7,23739,69980 +125714,401,6,9982,1713400 +125715,304,10,43904,142917 +125716,234,1,30127,135754 +125717,234,1,236368,129627 +125718,333,2,34127,1367963 +125719,387,10,193435,196263 +125720,234,1,1164,223 +125721,3,5,17015,110587 +125722,46,5,24619,1849997 +125723,3,5,48153,1435312 +125724,387,10,42683,94297 +125725,204,9,2604,3188 +125726,234,1,20411,58766 +125727,77,10,16124,7255 +125728,317,10,161243,28586 +125729,182,8,93856,1374792 +125730,262,6,245891,1403400 +125731,413,11,31522,3839 +125732,182,8,17144,62273 +125733,317,10,118131,109853 +125734,333,2,17015,1420630 +125735,333,2,65282,4352 +125736,176,3,188102,1845752 +125737,234,1,266030,1312061 +125738,158,2,7551,1418408 +125739,75,5,46261,1402900 +125740,234,1,278095,86152 +125741,317,10,333103,1215558 +125742,234,1,146238,144221 +125743,234,1,371942,72191 +125744,81,3,2675,1674656 +125745,3,5,10829,63154 +125746,179,2,354287,1452223 +125747,317,10,279159,1335343 +125748,3,5,244,3253 +125749,413,11,347096,1383102 +125750,373,7,1966,137125 +125751,200,3,109439,1403470 +125752,273,7,19181,123270 +125753,395,3,10198,65534 +125754,204,9,274857,422701 +125755,148,9,11902,28387 +125756,234,1,306464,94270 +125757,273,7,19029,1114037 +125758,234,1,218658,1065698 +125759,403,10,298584,16847 +125760,226,2,286657,1354697 +125761,317,10,250769,112002 +125762,180,7,17295,1537155 +125763,387,10,3554,32768 +125764,52,10,43645,9234 +125765,53,2,10748,66551 +125766,387,10,10344,63921 +125767,52,10,111470,128810 +125768,234,1,107430,19266 +125769,317,10,86647,30956 +125770,226,2,168259,1412767 +125771,301,5,2666,1392719 +125772,273,7,4893,33216 +125773,317,10,399790,1627499 +125774,415,3,38027,1588035 +125775,52,10,27635,51307 +125776,269,9,180576,1325578 +125777,387,10,85023,153669 +125778,226,2,61527,1526936 +125779,317,10,21028,137100 +125780,397,7,38027,1542141 +125781,306,7,2567,1552027 +125782,269,9,267852,1622319 +125783,221,3,3597,1790558 +125784,381,9,8954,1393558 +125785,327,7,145135,1417874 +125786,203,1,206647,1358025 +125787,317,10,53064,1107765 +125788,413,11,15940,10725 +125789,273,7,9550,12455 +125790,333,2,117550,41629 +125791,333,2,84030,1579650 +125792,208,2,56937,1336928 +125793,269,9,15013,46284 +125794,317,10,76438,578839 +125795,204,9,6557,958087 +125796,373,7,318781,1622817 +125797,160,3,32068,161285 +125798,182,8,333371,1558851 +125799,269,9,41357,1222 +125800,226,2,40130,1713105 +125801,181,7,47386,138789 +125802,234,1,56533,51677 +125803,3,5,15170,51981 +125804,52,10,77887,1117786 +125805,234,1,2085,10765 +125806,234,1,1896,19804 +125807,196,7,149509,1409225 +125808,387,10,78734,70045 +125809,3,5,9358,57432 +125810,387,10,522,7130 +125811,53,2,31867,119117 +125812,269,9,4955,12319 +125813,317,10,80276,146940 +125814,204,9,8870,9344 +125815,387,10,46623,19249 +125816,3,5,169343,1151389 +125817,244,3,10320,91133 +125818,387,10,25934,46611 +125819,234,1,53223,550483 +125820,387,10,378607,589168 +125821,204,9,120172,1570083 +125822,3,5,265180,68525 +125823,53,2,6023,47294 +125824,413,11,356296,993849 +125825,148,9,328429,1636703 +125826,234,1,429792,1409705 +125827,105,7,21338,58120 +125828,234,1,10219,33433 +125829,387,10,82368,21228 +125830,413,11,10692,3121 +125831,387,10,118760,1281214 +125832,169,3,1428,1760138 +125833,148,9,115565,1317269 +125834,73,7,82999,929049 +125835,317,10,254268,232022 +125836,147,1,98277,1849135 +125837,105,7,58244,59446 +125838,3,5,1715,16425 +125839,236,8,52661,1745158 +125840,53,2,152861,1134159 +125841,317,10,63105,63937 +125842,32,8,9297,1462709 +125843,190,7,18414,1303154 +125844,203,1,12573,587969 +125845,226,2,10804,404709 +125846,234,1,184098,20400 +125847,317,10,395763,72327 +125848,127,3,961,1167506 +125849,413,11,365222,63574 +125850,53,2,51044,7339 +125851,293,2,181533,1621498 +125852,204,9,174769,17763 +125853,273,7,1633,153 +125854,204,9,12780,552387 +125855,413,11,153518,13584 +125856,387,10,125835,116923 +125857,387,10,9821,59637 +125858,234,1,245891,40684 +125859,234,1,84283,1144604 +125860,234,1,287811,1066115 +125861,208,2,145135,1417862 +125862,394,7,44943,1394950 +125863,119,7,10865,1548698 +125864,317,10,85483,57727 +125865,317,10,277687,1182669 +125866,204,9,16058,77146 +125867,111,7,8916,1780711 +125868,32,8,13929,8089 +125869,108,10,118139,144010 +125870,413,11,1125,15560 +125871,387,10,88558,293939 +125872,250,11,315664,1414101 +125873,377,3,435,1574639 +125874,413,11,11535,8752 +125875,317,10,83435,86762 +125876,387,10,109213,107301 +125877,77,10,795,2305 +125878,77,10,2978,707 +125879,273,7,67822,1274353 +125880,387,10,8457,55098 +125881,187,11,5551,113055 +125882,387,10,62211,7884 +125883,289,6,149870,1456622 +125884,317,10,119172,579313 +125885,72,11,197,1406925 +125886,187,11,59962,1341405 +125887,304,10,160261,85801 +125888,328,6,315837,1797237 +125889,175,5,16921,1401765 +125890,83,2,407448,1533564 +125891,317,10,153161,33029 +125892,234,1,6522,34849 +125893,387,10,60140,230591 +125894,148,9,315880,1646437 +125895,175,5,1640,1551221 +125896,273,7,33015,47087 +125897,413,11,62320,937525 +125898,373,7,287,1446531 +125899,53,2,58428,1319731 +125900,387,10,73835,98779 +125901,387,10,97767,115869 +125902,161,6,338189,1650731 +125903,209,7,664,9351 +125904,164,3,227306,1730964 +125905,203,1,436,1532855 +125906,234,1,14422,26488 +125907,161,6,329865,1634298 +125908,234,1,38625,671828 +125909,75,5,382155,1636680 +125910,413,11,11133,23926 +125911,234,1,140607,15344 +125912,317,10,34588,50349 +125913,234,1,23289,579043 +125914,291,6,333352,1540344 +125915,105,7,181533,37 +125916,373,7,1690,1391571 +125917,234,1,81003,89112 +125918,289,6,56391,1724825 +125919,269,9,370755,5670 +125920,306,7,2924,1720842 +125921,3,5,76543,62354 +125922,204,9,27035,9104 +125923,234,1,64398,2636 +125924,52,10,301875,132964 +125925,413,11,20968,1640346 +125926,5,10,128364,1086966 +125927,234,1,45452,57617 +125928,203,1,50086,1429378 +125929,175,5,18,1367562 +125930,269,9,2046,11411 +125931,3,5,21734,17669 +125932,52,10,10020,15778 +125933,239,5,12311,545526 +125934,158,2,168259,1415019 +125935,373,7,1428,2294 +125936,387,10,197696,39104 +125937,234,1,43142,8823 +125938,317,10,384737,1436974 +125939,182,8,214938,1597067 +125940,234,1,43900,38393 +125941,317,10,398289,1637437 +125942,317,10,267481,1327018 +125943,234,1,64015,103602 +125944,46,5,664,1691954 +125945,411,9,70981,34513 +125946,317,10,79783,190579 +125947,3,5,408509,1025264 +125948,45,9,168676,1437693 +125949,64,6,29959,66758 +125950,3,5,3078,17761 +125951,317,10,57816,1095832 +125952,127,3,9472,9558 +125953,3,5,172828,960350 +125954,413,11,13173,224530 +125955,411,9,99861,1104780 +125956,333,2,35021,23617 +125957,204,9,29510,1226286 +125958,303,3,42251,51783 +125959,187,11,146243,1583080 +125960,301,5,238589,1429361 +125961,387,10,23397,7630 +125962,52,10,316654,85670 +125963,269,9,58166,36922 +125964,387,10,34078,139915 +125965,317,10,306464,1217213 +125966,333,2,6947,1521491 +125967,287,3,7916,1438594 +125968,5,10,48852,165303 +125969,333,2,3554,32773 +125970,387,10,186997,129896 +125971,413,11,198652,1179376 +125972,234,1,166161,1169976 +125973,234,1,25913,90638 +125974,20,2,126090,1599794 +125975,234,1,284096,37186 +125976,387,10,10750,774 +125977,413,11,31418,1804026 +125978,5,10,218508,1203227 +125979,413,11,98339,968603 +125980,317,10,410634,1013107 +125981,387,10,9611,58179 +125982,387,10,11712,5026 +125983,204,9,10780,102585 +125984,234,1,13180,74257 +125985,234,1,19482,84722 +125986,333,2,2288,1317305 +125987,158,2,15019,1424182 +125988,234,1,29911,77104 +125989,286,3,189197,58192 +125990,234,1,41038,30453 +125991,175,5,333663,1709179 +125992,204,9,95516,1411121 +125993,317,10,269173,71952 +125994,158,2,246655,1637287 +125995,209,7,11017,1551219 +125996,203,1,116979,1460788 +125997,5,10,51971,4387 +125998,357,3,76757,1482842 +125999,203,1,74777,583468 +126000,269,9,54384,1482125 +126001,286,3,49847,85160 +126002,269,9,17590,18755 +126003,273,7,54287,33911 +126004,234,1,172445,152222 +126005,143,7,1896,19816 +126006,105,7,284564,141289 +126007,188,8,6163,1905102 +126008,234,1,29471,225898 +126009,234,1,17566,234363 +126010,277,3,2503,1309884 +126011,387,10,343934,1226277 +126012,190,7,8915,1337459 +126013,317,10,47046,69759 +126014,176,3,185111,1367777 +126015,317,10,1361,105639 +126016,413,11,40060,375 +126017,204,9,29805,10880 +126018,53,2,179105,1143549 +126019,148,9,163,21707 +126020,234,1,301566,1232064 +126021,3,5,197335,21232 +126022,273,7,14273,229678 +126023,413,11,4547,7480 +126024,226,2,18417,83067 +126025,333,2,102382,406204 +126026,75,5,63215,1475350 +126027,105,7,413762,1811608 +126028,413,11,146233,74319 +126029,234,1,314371,43553 +126030,387,10,60307,178426 +126031,262,6,146243,1544370 +126032,3,5,43117,141595 +126033,273,7,9471,1999 +126034,387,10,179826,7775 +126035,234,1,40793,8482 +126036,166,9,418437,1413153 +126037,234,1,233639,62872 +126038,204,9,381691,1620966 +126039,234,1,215658,1200309 +126040,5,10,86920,84941 +126041,317,10,172828,1155519 +126042,105,7,351862,1605449 +126043,158,2,68629,1393451 +126044,269,9,31127,1372653 +126045,209,7,26390,1407207 +126046,3,5,199602,1179772 +126047,373,7,9982,1364417 +126048,3,5,244801,1111474 +126049,234,1,86118,932909 +126050,273,7,6069,491 +126051,234,1,12831,33156 +126052,413,11,370213,1815247 +126053,250,11,293167,1759816 +126054,273,7,43685,549138 +126055,277,3,14145,1416978 +126056,273,7,41495,14861 +126057,234,1,25694,82389 +126058,234,1,248833,1284180 +126059,15,6,230179,1512667 +126060,132,2,9504,32490 +126061,127,3,1586,1330749 +126062,317,10,180644,1577344 +126063,234,1,119592,1070460 +126064,413,11,266044,48789 +126065,3,5,10747,792 +126066,148,9,94348,61524 +126067,113,9,274857,1394001 +126068,21,3,44655,177677 +126069,3,5,42231,73784 +126070,234,1,71503,138867 +126071,387,10,10986,67972 +126072,157,3,423093,981313 +126073,239,5,98066,1532613 +126074,306,7,345922,1550166 +126075,203,1,297853,1790471 +126076,203,1,50463,1342629 +126077,234,1,13741,67714 +126078,387,10,359152,1044765 +126079,148,9,42739,39202 +126080,5,10,48156,29716 +126081,234,1,125700,557134 +126082,160,3,308269,1447878 +126083,234,1,92465,994254 +126084,113,9,223551,1263794 +126085,160,3,13058,1388878 +126086,413,11,20126,52258 +126087,127,3,279096,1386328 +126088,373,7,10724,1399140 +126089,3,5,285245,1424646 +126090,52,10,332168,1488675 +126091,373,7,45273,1338374 +126092,3,5,3144,30750 +126093,344,9,5289,1546584 +126094,3,5,310137,87625 +126095,53,2,24624,1099544 +126096,234,1,382501,107730 +126097,176,3,2503,1395359 +126098,317,10,127564,3632 +126099,387,10,42430,71081 +126100,234,1,55376,93290 +126101,317,10,34449,567850 +126102,273,7,403605,1185946 +126103,387,10,14012,2103 +126104,317,10,398452,1623221 +126105,387,10,30941,13861 +126106,53,2,266030,1438567 +126107,387,10,18094,8686 +126108,277,3,328111,1716003 +126109,97,7,369406,1086413 +126110,3,5,19181,1097802 +126111,387,10,10674,12906 +126112,289,6,328111,1479524 +126113,273,7,4375,22470 +126114,317,10,41994,212 +126115,286,3,13805,52260 +126116,3,5,43369,10339 +126117,413,11,36915,2241 +126118,273,7,57866,30256 +126119,5,10,309809,234279 +126120,333,2,333484,1636670 +126121,387,10,38950,45114 +126122,3,5,142984,19129 +126123,32,8,18843,1856788 +126124,317,10,219335,1459042 +126125,234,1,84089,126971 +126126,403,10,417820,958346 +126127,317,10,72614,1118733 +126128,45,9,8470,1598733 +126129,92,7,40130,1758922 +126130,413,11,1790,19104 +126131,105,7,81687,14647 +126132,317,10,120942,86782 +126133,158,2,293167,1759748 +126134,175,5,240913,1518583 +126135,105,7,409447,9251 +126136,179,2,109439,1323092 +126137,108,10,1976,1191097 +126138,157,3,90110,98549 +126139,289,6,291270,1332501 +126140,328,6,127585,1384381 +126141,111,7,9902,1841588 +126142,387,10,277237,109837 +126143,234,1,98302,37126 +126144,387,10,22477,1243 +126145,387,10,11589,58152 +126146,289,6,378236,1840327 +126147,317,10,13925,7879 +126148,5,10,46029,21672 +126149,234,1,23155,89817 +126150,413,11,88012,15384 +126151,105,7,395982,1419369 +126152,179,2,74,1323768 +126153,179,2,1272,1285933 +126154,234,1,75162,27014 +126155,245,3,316654,1676033 +126156,413,11,175331,1157937 +126157,203,1,16374,1470209 +126158,273,7,83013,37930 +126159,39,3,435,1486763 +126160,20,2,263115,1531264 +126161,289,6,72640,222311 +126162,234,1,400668,1641405 +126163,235,5,17654,1424630 +126164,204,9,284053,1713955 +126165,273,7,84944,1288503 +126166,273,7,293412,587195 +126167,360,3,26656,1454506 +126168,234,1,51267,143622 +126169,413,11,805,12015 +126170,273,7,9953,2863 +126171,317,10,28090,19266 +126172,234,1,43514,76381 +126173,3,5,45861,72023 +126174,53,2,2160,7514 +126175,97,7,2567,92376 +126176,3,5,21242,29906 +126177,203,1,256740,1142353 +126178,67,10,339403,1635175 +126179,234,1,29786,16544 +126180,317,10,37817,1751720 +126181,196,7,100669,1416898 +126182,317,10,48488,1020087 +126183,387,10,182349,1168581 +126184,52,10,11046,67450 +126185,148,9,246655,1712629 +126186,204,9,1966,967606 +126187,105,7,41949,947 +126188,203,1,8888,1565925 +126189,387,10,15944,62756 +126190,286,3,279159,1335346 +126191,147,1,11351,1734649 +126192,317,10,373838,1265105 +126193,234,1,82279,588689 +126194,198,6,1902,1274120 +126195,234,1,21736,90225 +126196,234,1,31165,65865 +126197,209,7,43727,1551840 +126198,60,1,11216,1349187 +126199,413,11,47312,6604 +126200,148,9,34723,1429528 +126201,244,3,15189,1460672 +126202,77,10,14765,52342 +126203,60,1,216363,1602585 +126204,64,6,279690,1630973 +126205,314,2,146233,1096345 +126206,413,11,12632,32635 +126207,234,1,2675,11614 +126208,273,7,163,1889 +126209,234,1,115239,7483 +126210,213,10,279598,1336136 +126211,413,11,20439,66519 +126212,387,10,110412,1591025 +126213,204,9,242683,103446 +126214,105,7,24756,1175138 +126215,234,1,96951,1011177 +126216,273,7,38978,1115092 +126217,234,1,40368,140848 +126218,317,10,403431,1180698 +126219,234,1,126927,7505 +126220,269,9,325205,1426711 +126221,40,1,1624,1553013 +126222,234,1,191068,100036 +126223,187,11,394645,1864633 +126224,262,6,49009,1384373 +126225,148,9,10134,1812184 +126226,317,10,42678,4297 +126227,373,7,22881,1399861 +126228,196,7,97614,1412699 +126229,160,3,21927,1416952 +126230,287,3,42251,1446543 +126231,273,7,11800,5628 +126232,289,6,11024,1461154 +126233,75,5,15613,1401109 +126234,387,10,29467,102935 +126235,269,9,26941,38523 +126236,387,10,330459,3288 +126237,127,3,345922,1381396 +126238,196,7,2503,1404217 +126239,234,1,259616,1244885 +126240,360,3,966,122754 +126241,234,1,83782,146793 +126242,360,3,59965,1395014 +126243,52,10,30308,131131 +126244,285,5,10733,1571752 +126245,3,5,28577,14726 +126246,75,5,28071,1698982 +126247,277,3,269173,1379047 +126248,234,1,22582,78615 +126249,273,7,1790,9796 +126250,3,5,4516,20524 +126251,53,2,79593,11802 +126252,413,11,2075,21281 +126253,234,1,266314,55449 +126254,387,10,8414,884 +126255,250,11,246655,32806 +126256,234,1,9462,19429 +126257,234,1,112503,101108 +126258,287,3,120172,1570088 +126259,52,10,38964,133241 +126260,122,8,263115,1729039 +126261,387,10,13834,75869 +126262,196,7,188102,1845758 +126263,269,9,25983,139145 +126264,317,10,48609,1927 +126265,317,10,345519,1376961 +126266,346,3,42739,1464970 +126267,277,3,56937,1412149 +126268,3,5,173205,1852928 +126269,75,5,366696,1753562 +126270,238,7,9902,1340346 +126271,413,11,1850,3394 +126272,234,1,90956,30833 +126273,387,10,140607,8844 +126274,387,10,86942,37379 +126275,234,1,12599,65429 +126276,182,8,351901,1398161 +126277,234,1,12124,71353 +126278,226,2,23518,14681 +126279,3,5,71067,9080 +126280,413,11,283995,1718580 +126281,327,7,14128,1415617 +126282,333,2,43093,1406343 +126283,413,11,34127,4102 +126284,190,7,12103,1458530 +126285,67,10,15213,1113507 +126286,413,11,77650,120518 +126287,3,5,22881,21039 +126288,105,7,19610,84911 +126289,52,10,89462,95501 +126290,413,11,105077,1115256 +126291,373,7,97614,1396794 +126292,234,1,16440,1201684 +126293,317,10,64468,239256 +126294,373,7,168259,1394130 +126295,105,7,38547,147780 +126296,413,11,290999,1361546 +126297,57,2,378441,1797460 +126298,204,9,209401,1323125 +126299,387,10,7916,40607 +126300,273,7,50123,42304 +126301,387,10,2110,59 +126302,234,1,80928,122633 +126303,327,7,10909,1391679 +126304,175,5,102629,1400317 +126305,75,5,76757,1428917 +126306,158,2,294254,1571481 +126307,234,1,248543,221940 +126308,53,2,45244,13089 +126309,317,10,125619,1081534 +126310,52,10,17057,81184 +126311,3,5,43503,33413 +126312,81,3,664,1633954 +126313,45,9,1717,1442116 +126314,273,7,15807,8619 +126315,196,7,309879,1621480 +126316,387,10,44869,69121 +126317,387,10,35405,1176570 +126318,413,11,29146,10640 +126319,3,5,18273,1357 +126320,234,1,2428,18738 +126321,262,6,244786,1547658 +126322,234,1,301729,1382921 +126323,234,1,253533,85598 +126324,413,11,181454,85964 +126325,196,7,294254,1397196 +126326,413,11,179066,1067439 +126327,289,6,149870,1456630 +126328,317,10,40139,29745 +126329,269,9,121173,1128304 +126330,245,3,8464,1581512 +126331,160,3,9902,8355 +126332,179,2,7326,1866818 +126333,413,11,11953,5026 +126334,413,11,8457,20297 +126335,203,1,296524,1533541 +126336,158,2,243935,1414948 +126337,387,10,67377,24658 +126338,72,11,7220,1432026 +126339,204,9,121636,5188 +126340,273,7,49009,1188738 +126341,273,7,21849,1098536 +126342,234,1,72898,24380 +126343,226,2,85350,1420147 +126344,148,9,302528,1704982 +126345,413,11,19209,1157 +126346,183,5,230179,1494209 +126347,234,1,112161,77885 +126348,234,1,241140,1276274 +126349,53,2,154575,6688 +126350,273,7,39510,1039936 +126351,269,9,137145,1189761 +126352,208,2,8619,1323090 +126353,3,5,8072,3540 +126354,333,2,1922,19992 +126355,387,10,23452,109196 +126356,234,1,58732,143998 +126357,234,1,10162,64045 +126358,387,10,215740,72908 +126359,317,10,15,1117970 +126360,413,11,16005,2597 +126361,175,5,209263,1399975 +126362,245,3,121823,62410 +126363,234,1,88818,125543 +126364,394,7,296523,1338484 +126365,157,3,294652,55474 +126366,317,10,36736,116077 +126367,269,9,91679,1782621 +126368,413,11,31672,4670 +126369,317,10,8998,56539 +126370,256,3,664,1892498 +126371,169,3,11975,1562841 +126372,387,10,50374,26264 +126373,200,3,177677,1459899 +126374,346,3,241239,1468596 +126375,204,9,14615,9063 +126376,203,1,82,1342669 +126377,317,10,202984,1185284 +126378,317,10,47201,1184798 +126379,317,10,195796,1366243 +126380,269,9,11889,9153 +126381,317,10,26873,96496 +126382,287,3,33613,1455302 +126383,387,10,172908,1361751 +126384,234,1,74525,46712 +126385,317,10,120172,1570076 +126386,360,9,227306,1334496 +126387,85,10,2323,23971 +126388,317,10,104062,586285 +126389,387,10,1421,17032 +126390,53,2,13763,60479 +126391,3,5,10063,50081 +126392,317,10,227383,1261548 +126393,188,8,8276,1544429 +126394,317,10,75537,10620 +126395,167,3,4147,1558208 +126396,234,1,22051,100516 +126397,346,3,35337,1462401 +126398,234,1,53543,1245933 +126399,325,5,183412,1419640 +126400,229,6,274857,1419165 +126401,413,11,105584,32212 +126402,373,7,8204,1401687 +126403,328,6,140607,1421268 +126404,234,1,655,2303 +126405,3,5,10500,8194 +126406,207,3,6171,13050 +126407,234,1,4375,9855 +126408,213,10,49559,64750 +126409,53,2,2288,5493 +126410,204,9,43912,1536255 +126411,66,11,383538,1851896 +126412,273,7,111017,8619 +126413,317,10,199887,1413536 +126414,111,7,194,1351727 +126415,234,1,365447,1527515 +126416,373,7,8619,113073 +126417,3,5,45191,31317 +126418,203,1,218425,1451566 +126419,53,2,37719,32442 +126420,3,5,308032,61550 +126421,234,1,14452,104831 +126422,234,1,296941,1372762 +126423,234,1,333667,12905 +126424,273,7,22803,6041 +126425,353,7,18937,8760 +126426,413,11,24619,1046600 +126427,204,9,57103,8507 +126428,387,10,206647,10783 +126429,52,10,18,59 +126430,3,5,36786,9103 +126431,234,1,114438,37709 +126432,317,10,16023,34518 +126433,292,3,341174,1764545 +126434,55,5,14430,1521670 +126435,164,3,24624,1540846 +126436,269,9,68684,1304292 +126437,350,6,378441,1797500 +126438,269,9,43469,1538466 +126439,60,1,86603,54564 +126440,293,2,8619,1619080 +126441,105,7,56191,1746448 +126442,387,10,249969,29098 +126443,127,3,33005,62824 +126444,234,1,151509,1024313 +126445,160,3,9297,1462675 +126446,413,11,16444,119326 +126447,413,11,10075,57087 +126448,72,11,11236,1691298 +126449,387,10,134394,1098979 +126450,317,10,98870,1018981 +126451,317,10,54156,1196802 +126452,292,3,7220,1573601 +126453,72,11,9472,1567974 +126454,3,5,8669,55612 +126455,262,6,87516,1336716 +126456,62,3,9946,1377223 +126457,5,10,41609,24840 +126458,148,9,14750,6925 +126459,413,11,43596,67845 +126460,160,3,72105,1406839 +126461,387,10,27805,84981 +126462,262,6,922,15435 +126463,204,9,124963,5672 +126464,105,7,111836,237681 +126465,105,7,285860,1519926 +126466,387,10,16157,79737 +126467,97,7,9529,9441 +126468,52,10,206647,10782 +126469,234,1,52013,234397 +126470,3,5,11333,49901 +126471,273,7,21027,30104 +126472,360,3,197,1335181 +126473,373,7,312221,1352424 +126474,234,1,3036,11181 +126475,53,2,340027,1509591 +126476,317,10,28668,30128 +126477,234,1,110608,558763 +126478,234,1,172520,1033719 +126479,387,10,77338,84426 +126480,286,3,378607,1566578 +126481,387,10,57680,1212231 +126482,273,7,2977,72854 +126483,165,9,4248,1667233 +126484,143,7,243935,1414922 +126485,226,2,11321,1481011 +126486,204,9,786,4197 +126487,317,10,64398,27905 +126488,234,1,57977,84714 +126489,317,10,100770,591537 +126490,53,2,77949,119117 +126491,304,10,413882,88140 +126492,89,5,297762,1774234 +126493,239,5,332567,1644253 +126494,180,7,220,2791 +126495,387,10,27637,66893 +126496,317,10,24363,12640 +126497,234,1,43372,15127 +126498,413,11,27150,9584 +126499,65,3,10590,1566276 +126500,190,7,193893,1871233 +126501,234,1,15616,58712 +126502,317,10,18206,103031 +126503,303,3,9425,57432 +126504,148,9,72207,1324262 +126505,387,10,74199,135679 +126506,305,9,94727,772490 +126507,302,9,118,1855205 +126508,52,10,43903,74879 +126509,317,10,92298,84657 +126510,5,10,48231,1030401 +126511,333,2,177677,1545926 +126512,180,7,117212,1707020 +126513,333,2,33839,26175 +126514,148,9,293625,1588196 +126515,234,1,30374,57142 +126516,234,1,256092,84981 +126517,273,7,2259,947 +126518,394,7,11024,1417972 +126519,244,3,46738,1536187 +126520,360,3,60855,1396504 +126521,175,5,246655,1713050 +126522,53,2,10804,1840451 +126523,269,9,6978,7186 +126524,413,11,63858,1552 +126525,317,10,63584,55517 +126526,314,2,14,1417399 +126527,413,11,3023,29636 +126528,234,1,20242,133259 +126529,204,9,27105,10604 +126530,286,3,18616,1191211 +126531,311,9,10727,76087 +126532,77,10,16026,79056 +126533,387,10,106417,1047243 +126534,273,7,1427,1076 +126535,269,9,64942,162545 +126536,317,10,399810,1231673 +126537,182,8,137145,1542307 +126538,333,2,251,9775 +126539,373,7,55420,1073059 +126540,273,7,858,9251 +126541,53,2,283384,960707 +126542,413,11,12614,10007 +126543,53,2,10488,6348 +126544,387,10,52437,16042 +126545,169,3,283445,1548089 +126546,387,10,328429,1611981 +126547,302,9,305127,1387616 +126548,204,9,14370,370 +126549,23,9,9286,1441355 +126550,108,10,9504,1255 +126551,147,1,8669,1734786 +126552,413,11,284288,42804 +126553,388,9,3172,1553237 +126554,387,10,293271,1364791 +126555,34,8,287903,1569341 +126556,387,10,42726,24455 +126557,413,11,170759,1153033 +126558,140,9,76341,1518781 +126559,317,10,24584,103587 +126560,317,10,115239,7483 +126561,269,9,61552,31240 +126562,3,5,329819,20593 +126563,3,5,300090,1384819 +126564,9,3,11645,54356 +126565,273,7,142145,267765 +126566,387,10,34092,127920 +126567,187,11,313922,1383288 +126568,368,7,24556,91015 +126569,200,3,82990,1547203 +126570,204,9,10491,23772 +126571,175,5,11472,12579 +126572,273,7,24238,92739 +126573,304,10,103236,81984 +126574,413,11,107319,1324972 +126575,3,5,10744,19002 +126576,53,2,4443,7308 +126577,190,7,374473,1650275 +126578,373,7,15092,1309884 +126579,273,7,2144,9251 +126580,387,10,28261,1546 +126581,317,10,348035,66 +126582,234,1,11879,14392 +126583,39,3,28026,106458 +126584,108,10,39779,57624 +126585,286,3,338063,1461483 +126586,413,11,43923,53069 +126587,52,10,244801,1057497 +126588,234,1,58692,228261 +126589,164,3,9593,1646230 +126590,317,10,15303,213380 +126591,413,11,50838,113290 +126592,413,11,88390,19409 +126593,413,11,39766,126996 +126594,413,11,24619,58705 +126595,328,6,296524,1387250 +126596,373,7,14979,1342242 +126597,226,2,312174,1400611 +126598,160,3,2503,1406839 +126599,269,9,73198,32640 +126600,387,10,342213,53943 +126601,169,3,306966,1748603 +126602,387,10,57412,29756 +126603,273,7,1691,19659 +126604,269,9,15689,1635089 +126605,234,1,413669,120529 +126606,234,1,56589,91484 +126607,3,5,149657,1162254 +126608,373,7,77338,47818 +126609,317,10,32068,41133 +126610,204,9,1271,17613 +126611,53,2,300487,1380791 +126612,360,3,9472,1388862 +126613,75,5,353686,1525155 +126614,387,10,306323,1000952 +126615,127,3,921,14926 +126616,234,1,82178,1142378 +126617,3,5,86825,10107 +126618,317,10,64046,142498 +126619,53,2,58985,62277 +126620,304,10,368006,85598 +126621,234,1,30982,13848 +126622,418,11,186869,1862956 +126623,234,1,3114,8500 +126624,52,10,43432,109356 +126625,234,1,32044,9789 +126626,262,6,8869,28925 +126627,53,2,68822,29670 +126628,239,5,4286,1793155 +126629,387,10,11346,55332 +126630,234,1,33495,69038 +126631,22,9,10733,1401123 +126632,53,2,398786,1665416 +126633,273,7,10208,64186 +126634,179,2,44943,1327178 +126635,182,8,337339,1654424 +126636,143,7,1938,20148 +126637,234,1,48882,545794 +126638,97,7,245891,1365542 +126639,413,11,170936,1289040 +126640,53,2,10710,9255 +126641,234,1,37247,5342 +126642,317,10,77381,84736 +126643,234,1,23107,29808 +126644,234,1,99,309 +126645,398,9,32049,30483 +126646,208,2,283995,1329417 +126647,182,8,11024,1673558 +126648,204,9,193893,1329938 +126649,289,6,81310,61678 +126650,234,1,238781,64205 +126651,5,10,63764,1655840 +126652,147,1,15,14511 +126653,234,1,23340,90054 +126654,273,7,10235,58024 +126655,413,11,101929,552002 +126656,234,1,47739,93975 +126657,387,10,44716,1012 +126658,413,11,22968,3643 +126659,413,11,43075,18800 +126660,411,9,170759,1153038 +126661,317,10,43754,123586 +126662,75,5,17609,1570 +126663,64,6,28682,16597 +126664,22,9,381015,1828347 +126665,317,10,35683,133626 +126666,203,1,116312,29394 +126667,34,8,7326,1575869 +126668,286,3,137193,1106977 +126669,273,7,105548,8503 +126670,158,2,283445,1548094 +126671,373,7,5915,1399141 +126672,328,6,56937,1412152 +126673,245,3,258509,1393784 +126674,15,6,10020,1461389 +126675,234,1,76543,14887 +126676,234,1,76686,114589 +126677,234,1,25667,94063 +126678,148,9,39219,224395 +126679,53,2,9287,937425 +126680,76,2,50318,42027 +126681,196,7,9946,1031810 +126682,413,11,138522,1599048 +126683,72,11,16342,1410141 +126684,262,6,19995,1401803 +126685,289,6,146730,1124650 +126686,273,7,49502,39054 +126687,77,10,1833,19312 +126688,143,7,3962,34386 +126689,317,10,414827,145470 +126690,203,1,137145,1542312 +126691,273,7,7233,20822 +126692,333,2,25430,10796 +126693,77,10,9396,57595 +126694,203,1,1717,1427384 +126695,75,5,325385,1714333 +126696,234,1,196359,1176454 +126697,234,1,78522,1114201 +126698,234,1,231616,1081135 +126699,291,6,127521,1052872 +126700,317,10,42206,2725 +126701,3,5,9624,1728 +126702,5,10,62330,235141 +126703,234,1,29825,6400 +126704,394,7,156981,41888 +126705,209,7,293660,1367505 +126706,234,1,79869,147207 +126707,105,7,280690,1078260 +126708,415,3,814,14460 +126709,413,11,9966,61126 +126710,196,7,9532,1335219 +126711,269,9,47112,17148 +126712,317,10,390880,1599402 +126713,296,3,1586,1611788 +126714,52,10,46010,1190374 +126715,273,7,179103,29276 +126716,77,10,16151,79684 +126717,317,10,86254,98132 +126718,204,9,222858,75391 +126719,53,2,27349,3456 +126720,273,7,117942,1069668 +126721,387,10,8079,8311 +126722,203,1,109391,1204708 +126723,250,11,284052,1632329 +126724,234,1,17038,115624 +126725,143,7,250066,80824 +126726,413,11,215373,572168 +126727,204,9,11950,119766 +126728,289,6,13798,580209 +126729,53,2,1922,19991 +126730,204,9,40466,1525934 +126731,387,10,100088,1023420 +126732,187,11,9532,1392904 +126733,282,3,11577,1631429 +126734,387,10,301334,1466661 +126735,398,9,18417,83078 +126736,46,5,263115,1821896 +126737,333,2,39578,1560751 +126738,234,1,128284,237859 +126739,413,11,211879,1504572 +126740,234,1,74481,1544559 +126741,234,1,62392,67349 +126742,234,1,46121,51524 +126743,219,11,9902,1600631 +126744,53,2,11185,1051 +126745,415,3,2288,1459917 +126746,123,3,118408,118077 +126747,52,10,107443,11993 +126748,269,9,20287,230126 +126749,373,7,10916,8166 +126750,3,5,370234,1276441 +126751,387,10,18722,4180 +126752,387,10,10692,9200 +126753,413,11,15559,77863 +126754,234,1,215797,1709736 +126755,234,1,10863,19800 +126756,60,1,21734,1623581 +126757,213,10,2764,27955 +126758,387,10,49514,66125 +126759,75,5,20648,1446403 +126760,204,9,73348,21456 +126761,387,10,2731,27722 +126762,317,10,199373,1179591 +126763,413,11,74935,1665912 +126764,387,10,49524,54047 +126765,143,7,44115,40810 +126766,317,10,1969,59 +126767,234,1,332168,1503547 +126768,413,11,28712,22599 +126769,127,3,345922,1815386 +126770,234,1,169726,39009 +126771,387,10,14609,1215939 +126772,234,1,126319,126599 +126773,3,5,17889,231234 +126774,273,7,444713,1768803 +126775,234,1,82153,58448 +126776,387,10,29801,214417 +126777,196,7,93856,1335147 +126778,303,3,11202,12344 +126779,387,10,76684,550327 +126780,269,9,150117,1023480 +126781,387,10,27259,1404052 +126782,234,1,384021,1581040 +126783,413,11,375082,1917 +126784,304,10,22504,25162 +126785,187,11,13393,1424569 +126786,289,6,22779,69003 +126787,123,3,334132,1451826 +126788,234,1,25006,93005 +126789,3,5,235,3031 +126790,53,2,22404,7652 +126791,198,6,8204,1460643 +126792,269,9,19336,1561110 +126793,180,7,42852,960844 +126794,105,7,41078,1456939 +126795,387,10,2,16767 +126796,394,7,332411,1084757 +126797,387,10,4955,40986 +126798,243,3,9664,1557583 +126799,53,2,6079,47832 +126800,52,10,46421,136123 +126801,53,2,9785,62860 +126802,204,9,1966,1328730 +126803,143,7,188927,1548462 +126804,53,2,34977,9064 +126805,180,7,51044,792562 +126806,204,9,1586,40320 +126807,289,6,346672,1721334 +126808,273,7,24916,66053 +126809,269,9,1589,1325904 +126810,317,10,22076,16830 +126811,273,7,29343,1729 +126812,97,7,2666,1391525 +126813,387,10,53230,89045 +126814,234,1,64965,85551 +126815,390,6,77459,1821417 +126816,273,7,9252,57008 +126817,234,1,271664,27676 +126818,413,11,31742,1208450 +126819,349,1,10198,1461408 +126820,413,11,135679,1103539 +126821,182,8,1271,1394757 +126822,387,10,6935,51486 +126823,273,7,10041,62347 +126824,105,7,21786,128137 +126825,219,11,11351,417960 +126826,148,9,1480,7651 +126827,317,10,45431,550892 +126828,234,1,50126,30149 +126829,66,11,16131,1055498 +126830,5,10,35284,138763 +126831,234,1,43754,123586 +126832,39,3,279096,1386330 +126833,413,11,254193,1457612 +126834,317,10,161795,117075 +126835,85,10,369883,105049 +126836,179,2,274479,1318814 +126837,413,11,86600,10219 +126838,148,9,94468,14826 +126839,158,2,1579,1400352 +126840,234,1,160106,585177 +126841,3,5,43195,12720 +126842,387,10,327225,1343581 +126843,234,1,122698,191677 +126844,413,11,2110,20296 +126845,3,5,448847,1642013 +126846,273,7,86838,1225 +126847,417,3,11351,1597200 +126848,413,11,115782,1084139 +126849,189,3,178809,1412597 +126850,234,1,2979,117168 +126851,148,9,102382,17221 +126852,328,6,132363,1407732 +126853,273,7,10585,65681 +126854,52,10,67375,223101 +126855,273,7,20842,12701 +126856,286,3,122368,1117188 +126857,234,1,100594,969801 +126858,53,2,21849,6851 +126859,394,7,258147,1298878 +126860,262,6,421365,1277471 +126861,317,10,76084,1046100 +126862,373,7,116463,1302410 +126863,77,10,10596,17207 +126864,72,11,255343,1300810 +126865,158,2,198663,1367504 +126866,387,10,12121,71337 +126867,317,10,28430,29663 +126868,148,9,294254,148697 +126869,204,9,316654,1676031 +126870,273,7,246741,1073734 +126871,208,2,72733,1649454 +126872,226,2,7220,1400741 +126873,234,1,206197,544748 +126874,413,11,51549,96557 +126875,226,2,227306,1401639 +126876,413,11,9519,68357 +126877,317,10,87302,107482 +126878,317,10,213681,1371386 +126879,97,7,294272,1414886 +126880,376,10,26949,30855 +126881,204,9,12645,1316190 +126882,234,1,253273,1111202 +126883,273,7,152042,89839 +126884,160,3,9042,1357342 +126885,234,1,39824,52968 +126886,317,10,74192,125068 +126887,204,9,378441,1510996 +126888,413,11,22007,58705 +126889,277,3,1966,125895 +126890,234,1,3055,19457 +126891,143,7,12526,7537 +126892,269,9,32872,11779 +126893,105,7,84184,1728359 +126894,234,1,19274,18897 +126895,148,9,28571,17670 +126896,66,11,279690,1630980 +126897,203,1,19688,1402724 +126898,317,10,138522,109598 +126899,304,10,43904,142865 +126900,3,5,21786,138856 +126901,12,10,109451,111877 +126902,273,7,598,8576 +126903,234,1,227973,71729 +126904,273,7,26510,62086 +126905,234,1,102362,19346 +126906,269,9,71329,1605711 +126907,53,2,81223,6688 +126908,87,7,428687,17863 +126909,3,5,92257,14234 +126910,3,5,1966,275 +126911,413,11,43316,30105 +126912,234,1,58411,8858 +126913,53,2,10739,9551 +126914,53,2,43369,31060 +126915,97,7,17111,1629468 +126916,75,5,16921,1401763 +126917,234,1,42460,12150 +126918,234,1,10394,2291 +126919,200,3,10008,1399561 +126920,250,11,7916,1438625 +126921,269,9,102629,935298 +126922,413,11,42614,30179 +126923,317,10,12811,1073230 +126924,53,2,16077,79183 +126925,208,2,166886,1584923 +126926,289,6,9297,1462676 +126927,413,11,41211,1031921 +126928,413,11,11813,15132 +126929,234,1,32286,16522 +126930,148,9,59965,1328145 +126931,204,9,128946,11907 +126932,273,7,74911,4681 +126933,113,9,14615,9060 +126934,204,9,88042,7717 +126935,66,11,92321,1817523 +126936,234,1,20806,18669 +126937,208,2,29896,1445365 +126938,234,1,329809,72005 +126939,252,3,5,1877363 +126940,373,7,9716,92377 +126941,413,11,15090,174108 +126942,333,2,13849,1355313 +126943,234,1,19101,11218 +126944,64,6,601,9973 +126945,204,9,20758,86532 +126946,108,10,120837,1368683 +126947,314,2,289712,1402475 +126948,209,7,4248,1537501 +126949,234,1,25653,1188 +126950,317,10,212503,583517 +126951,132,2,11812,1531870 +126952,317,10,423122,56159 +126953,317,10,203715,1186088 +126954,273,7,150338,3375 +126955,187,11,301875,1445479 +126956,413,11,122857,62941 +126957,286,3,26505,997 +126958,179,2,11232,1412119 +126959,333,2,16436,1029260 +126960,84,7,356752,1582568 +126961,5,10,896,13744 +126962,269,9,259695,10575 +126963,105,7,15092,122451 +126964,317,10,112072,236959 +126965,273,7,106828,1551 +126966,234,1,10549,11181 +126967,269,9,2897,9869 +126968,108,10,41599,127022 +126969,97,7,9716,1544908 +126970,3,5,173205,1435455 +126971,327,7,5237,1288257 +126972,234,1,47324,20023 +126973,22,9,418437,1286568 +126974,314,2,298,1413224 +126975,3,5,42987,666 +126976,158,2,4413,1406901 +126977,5,10,13569,74680 +126978,234,1,216989,84074 +126979,226,2,315664,1429628 +126980,387,10,795,2306 +126981,187,11,127585,1384367 +126982,3,5,14782,43891 +126983,190,7,7326,1740414 +126984,328,6,1966,1398100 +126985,387,10,18774,217624 +126986,296,3,7551,1120573 +126987,333,2,283686,1582745 +126988,148,9,28893,2053 +126989,97,7,403605,1185946 +126990,234,1,423988,1702826 +126991,204,9,268174,1189981 +126992,204,9,33134,1128155 +126993,269,9,84226,1418415 +126994,398,9,1381,1391751 +126995,387,10,14164,78322 +126996,413,11,79372,68417 +126997,234,1,255278,105860 +126998,234,1,207641,100369 +126999,234,1,42325,103360 +127000,3,5,121462,63432 +127001,387,10,269149,567562 +127002,387,10,270946,66511 +127003,298,5,333663,230159 +127004,234,1,18312,57970 +127005,317,10,255898,1425232 +127006,234,1,152748,592493 +127007,148,9,60994,75391 +127008,175,5,7445,589974 +127009,317,10,302036,1383997 +127010,119,7,38027,2704 +127011,273,7,75162,3098 +127012,182,8,126889,1746429 +127013,104,7,55420,1332126 +127014,234,1,83430,53995 +127015,413,11,23957,65351 +127016,141,7,12103,1459655 +127017,3,5,2071,8862 +127018,273,7,34193,1760 +127019,204,9,65545,1272393 +127020,209,7,1579,6883 +127021,317,10,22051,100516 +127022,333,2,18352,1409344 +127023,239,5,140607,1550796 +127024,317,10,283686,77125 +127025,179,2,10395,1325235 +127026,209,7,7454,1407675 +127027,209,7,109439,1428229 +127028,333,2,13965,76210 +127029,317,10,17681,56884 +127030,143,7,328429,1318476 +127031,148,9,76211,8508 +127032,52,10,61988,1070419 +127033,273,7,42206,3767 +127034,387,10,28704,567572 +127035,413,11,10129,61468 +127036,387,10,26958,71901 +127037,5,10,94468,133574 +127038,234,1,132426,116607 +127039,413,11,294254,6043 +127040,413,11,14422,224530 +127041,3,5,125736,1555842 +127042,182,8,10543,91341 +127043,328,6,296523,1394876 +127044,317,10,24792,93814 +127045,75,5,82767,1680407 +127046,53,2,44921,26174 +127047,289,6,395883,1636729 +127048,303,3,14476,1411675 +127049,387,10,31805,131408 +127050,103,6,167073,1510251 +127051,179,2,7445,1333903 +127052,234,1,155011,288233 +127053,317,10,13993,78190 +127054,77,10,108,1287141 +127055,317,10,125945,1157608 +127056,155,3,403,1238947 +127057,75,5,97614,1419726 +127058,203,1,5425,44478 +127059,66,11,58244,1536642 +127060,317,10,21786,87877 +127061,317,10,10192,12081 +127062,40,1,345922,1711214 +127063,234,1,455661,1809042 +127064,52,10,205349,67929 +127065,317,10,244117,1120874 +127066,3,5,75229,7746 +127067,53,2,43514,8717 +127068,269,9,280092,169743 +127069,394,7,318922,1338971 +127070,403,10,45489,80901 +127071,3,5,266433,1415894 +127072,97,7,341174,1397823 +127073,296,3,10396,1534932 +127074,387,10,393562,85670 +127075,317,10,274991,134108 +127076,286,3,92657,1781 +127077,219,11,14554,1578505 +127078,53,2,11103,557 +127079,289,6,302026,1570589 +127080,273,7,20108,36997 +127081,413,11,57230,1625938 +127082,234,1,24632,92101 +127083,269,9,17771,1602307 +127084,413,11,7014,51837 +127085,317,10,61400,233063 +127086,234,1,162899,276769 +127087,273,7,59861,1213 +127088,273,7,20806,134237 +127089,317,10,28677,18195 +127090,413,11,40765,119096 +127091,277,3,1966,1398092 +127092,273,7,9655,46324 +127093,75,5,109424,1353259 +127094,273,7,82079,963428 +127095,234,1,379959,1416383 +127096,203,1,26882,1473813 +127097,286,3,77950,1272637 +127098,317,10,242076,1277050 +127099,277,3,55846,1404862 +127100,289,6,22752,1506812 +127101,301,5,82448,928001 +127102,387,10,11001,67755 +127103,327,7,84569,930991 +127104,198,6,351901,1558715 +127105,3,5,28571,12279 +127106,226,2,3513,32353 +127107,148,9,5040,41404 +127108,413,11,32872,3175 +127109,234,1,337107,17623 +127110,234,1,252724,121829 +127111,5,10,31324,33273 +127112,234,1,259761,1302082 +127113,234,1,167935,1149641 +127114,396,3,6972,1401726 +127115,387,10,8368,54737 +127116,189,3,13056,936321 +127117,333,2,14145,1416972 +127118,387,10,42703,50961 +127119,183,5,296523,1727427 +127120,325,5,419430,1417867 +127121,105,7,14078,76337 +127122,317,10,28656,30956 +127123,287,3,24831,101608 +127124,317,10,27824,99080 +127125,413,11,18222,21854 +127126,96,2,8619,1747999 +127127,333,2,324930,1593833 +127128,273,7,369406,1323512 +127129,3,5,408616,9645 +127130,53,2,18,8385 +127131,3,5,29835,14678 +127132,328,6,102382,1360109 +127133,169,3,2105,1271793 +127134,105,7,7511,40468 +127135,373,7,6557,1364417 +127136,64,6,28586,101225 +127137,317,10,61765,3573 +127138,198,6,169,1050929 +127139,413,11,341895,1171340 +127140,234,1,383914,130030 +127141,413,11,13346,1217 +127142,5,10,126963,78322 +127143,3,5,261036,6740 +127144,294,3,95516,1411147 +127145,234,1,172847,21476 +127146,387,10,11425,69396 +127147,72,11,9532,1425328 +127148,204,9,1662,1534940 +127149,80,3,2662,1603311 +127150,413,11,43459,31867 +127151,317,10,14008,238277 +127152,60,1,43978,1020732 +127153,373,7,1381,1337464 +127154,204,9,11024,65812 +127155,317,10,44896,932 +127156,387,10,315664,1601942 +127157,158,2,346672,1721315 +127158,187,11,50725,1415007 +127159,317,10,85431,65727 +127160,317,10,14642,106022 +127161,317,10,70800,8741 +127162,273,7,147722,1535874 +127163,317,10,62297,235080 +127164,269,9,28169,1420387 +127165,387,10,82501,64194 +127166,234,1,276906,971273 +127167,198,6,11415,1796490 +127168,333,2,336882,1542341 +127169,234,1,296192,57604 +127170,346,3,12783,1427523 +127171,373,7,50126,1378754 +127172,10,3,78265,3249 +127173,234,1,180691,1566371 +127174,135,3,2924,1552998 +127175,269,9,32088,369 +127176,204,9,12,7949 +127177,234,1,2778,28169 +127178,3,5,22744,3356 +127179,204,9,9540,6629 +127180,160,3,10008,1399562 +127181,75,5,32080,1273466 +127182,373,7,353686,1409288 +127183,105,7,15440,128137 +127184,192,5,384262,1646177 +127185,286,3,30959,552308 +127186,204,9,2274,23489 +127187,413,11,69974,557668 +127188,3,5,47143,14196 +127189,317,10,73099,568078 +127190,317,10,409536,52849 +127191,60,1,896,1559101 +127192,53,2,9946,1318663 +127193,317,10,243568,56435 +127194,204,9,2486,22061 +127195,105,7,209401,1466671 +127196,147,1,186869,1862920 +127197,52,10,257302,31982 +127198,234,1,254869,10847 +127199,373,7,664,1378171 +127200,232,10,44902,115466 +127201,373,7,55534,15880 +127202,317,10,362703,1027173 +127203,317,10,92298,140102 +127204,419,10,41522,134049 +127205,317,10,376570,932076 +127206,317,10,32298,67360 +127207,53,2,9297,19310 +127208,387,10,74527,30287 +127209,53,2,11450,4149 +127210,373,7,283995,900 +127211,75,5,19946,36114 +127212,105,7,125521,66157 +127213,387,10,27276,58608 +127214,234,1,38554,1201 +127215,413,11,28421,30105 +127216,387,10,172445,254114 +127217,97,7,302699,1371064 +127218,60,1,17136,1592006 +127219,289,6,13493,1452989 +127220,273,7,220488,46324 +127221,373,7,45132,1347997 +127222,234,1,19731,6159 +127223,317,10,18111,88514 +127224,105,7,3037,2336 +127225,148,9,5,9042 +127226,160,3,2105,61570 +127227,413,11,42537,120032 +127228,185,11,41076,1889081 +127229,234,1,79221,586154 +127230,234,1,419522,229571 +127231,387,10,12158,71487 +127232,3,5,5172,22119 +127233,317,10,48636,70602 +127234,196,7,240832,1394418 +127235,387,10,193,2385 +127236,304,10,148265,238015 +127237,60,1,30363,1633542 +127238,413,11,44741,32310 +127239,394,7,109424,1408373 +127240,360,3,220820,1094461 +127241,234,1,289232,1357884 +127242,45,9,76163,1350233 +127243,269,9,9843,59859 +127244,328,6,109424,1408382 +127245,234,1,288977,74566 +127246,3,5,125673,8819 +127247,269,9,54752,19045 +127248,148,9,101929,1547530 +127249,234,1,48209,36384 +127250,53,2,6643,29800 +127251,387,10,8144,53943 +127252,52,10,18722,553421 +127253,60,1,141868,148063 +127254,317,10,64204,238715 +127255,317,10,47459,14268 +127256,105,7,3089,4082 +127257,273,7,110540,3249 +127258,234,1,37055,82714 +127259,262,6,304372,1391693 +127260,203,1,169298,1407263 +127261,234,1,2267,13663 +127262,208,2,425774,1707974 +127263,273,7,2140,7045 +127264,40,1,29161,87680 +127265,105,7,184098,49911 +127266,387,10,78802,2352 +127267,387,10,274857,74569 +127268,413,11,285245,1349785 +127269,60,1,43231,1502720 +127270,327,7,623,8941 +127271,355,11,2897,1566972 +127272,419,10,312100,14640 +127273,413,11,97794,93529 +127274,317,10,222858,178926 +127275,387,10,2565,26095 +127276,148,9,1271,1327222 +127277,387,10,323315,1425660 +127278,317,10,125835,116923 +127279,413,11,343173,507252 +127280,412,9,18,1608539 +127281,387,10,340488,6818 +127282,185,11,13205,1739962 +127283,7,3,116463,1691508 +127284,269,9,59197,1403322 +127285,189,3,250066,1495532 +127286,286,3,136368,1647412 +127287,289,6,12593,1458335 +127288,234,1,74549,60438 +127289,53,2,311324,17675 +127290,5,10,2002,20571 +127291,203,1,329289,1344842 +127292,317,10,148451,1127649 +127293,183,5,384737,1825662 +127294,317,10,116894,1012406 +127295,273,7,11839,3375 +127296,234,1,82687,29214 +127297,328,6,12171,1335186 +127298,302,9,25941,1558429 +127299,234,1,376188,1559203 +127300,413,11,26636,1772049 +127301,213,10,298396,1201593 +127302,3,5,1807,10688 +127303,323,10,103215,1033138 +127304,53,2,13075,41680 +127305,3,5,29313,50550 +127306,234,1,122930,1018948 +127307,45,9,205584,1475735 +127308,413,11,182127,64907 +127309,273,7,4988,7769 +127310,234,1,85414,199939 +127311,398,9,9423,1338148 +127312,234,1,28293,129552 +127313,81,3,18,1881565 +127314,413,11,14522,11880 +127315,203,1,68387,1511510 +127316,234,1,10521,17046 +127317,277,3,72602,1349489 +127318,373,7,89492,13177 +127319,234,1,132705,1028485 +127320,3,5,15263,40183 +127321,387,10,233208,1282039 +127322,286,3,14977,1155550 +127323,413,11,433086,1819560 +127324,234,1,262528,46959 +127325,317,10,42139,133182 +127326,317,10,28110,8328 +127327,317,10,367147,1182669 +127328,53,2,9274,1565939 +127329,234,1,395883,1614855 +127330,260,2,42251,29750 +127331,166,9,11045,1688587 +127332,387,10,371942,1272364 +127333,360,9,109439,1400010 +127334,273,7,28263,19746 +127335,105,7,17566,43520 +127336,413,11,383809,1817124 +127337,273,7,48210,73647 +127338,196,7,2503,1406826 +127339,317,10,48841,24792 +127340,234,1,238985,70565 +127341,180,7,65904,1191856 +127342,164,3,228066,1551797 +127343,204,9,70586,1018081 +127344,234,1,18836,130938 +127345,52,10,11137,58048 +127346,239,5,8470,1598737 +127347,387,10,197177,41632 +127348,209,7,44943,67695 +127349,3,5,29896,64300 +127350,3,5,2009,20701 +127351,317,10,99312,997904 +127352,234,1,193650,111508 +127353,398,9,2965,15877 +127354,413,11,52827,103654 +127355,52,10,43778,72646 +127356,387,10,46567,37590 +127357,286,3,416635,1681433 +127358,317,10,142106,1179854 +127359,235,5,77338,1724202 +127360,317,10,16137,79548 +127361,234,1,384682,60923 +127362,317,10,29923,105251 +127363,387,10,18696,99526 +127364,387,10,8840,56059 +127365,397,7,115712,1161457 +127366,387,10,400,3228 +127367,45,9,7220,1707115 +127368,234,1,438597,1799082 +127369,387,10,295964,23227 +127370,72,11,17654,1424636 +127371,234,1,67276,5602 +127372,3,5,11692,11409 +127373,317,10,37126,139448 +127374,234,1,21447,224884 +127375,317,10,32099,108849 +127376,234,1,63190,105114 +127377,37,3,76163,1460603 +127378,3,5,42251,17146 +127379,3,5,284537,6389 +127380,234,1,110447,105866 +127381,143,7,74,1377222 +127382,3,5,194393,98161 +127383,259,3,118,1262549 +127384,360,3,9504,1414994 +127385,333,2,330459,1439130 +127386,72,11,2567,1550732 +127387,277,7,172385,1815555 +127388,179,2,14430,1521687 +127389,360,3,142402,1117104 +127390,387,10,12289,993811 +127391,148,9,15616,62781 +127392,3,5,121848,1090854 +127393,203,1,76757,1380003 +127394,262,6,76757,1411533 +127395,317,10,34935,554869 +127396,5,10,354979,6939 +127397,3,5,50506,43925 +127398,3,5,311291,93188 +127399,234,1,29338,103509 +127400,105,7,35337,958449 +127401,413,11,3563,12865 +127402,179,2,8915,1329369 +127403,387,10,51601,14554 +127404,102,3,321779,1421391 +127405,3,5,82191,83135 +127406,273,7,10484,1965 +127407,75,5,2567,91912 +127408,75,5,85414,1632795 +127409,3,5,18736,13140 +127410,187,11,209112,1399862 +127411,287,3,284289,1406079 +127412,317,10,46421,136125 +127413,12,10,68721,18866 +127414,32,8,398633,1623941 +127415,317,10,67342,932916 +127416,349,1,35,1447478 +127417,244,3,14811,877 +127418,179,2,9568,1546537 +127419,3,5,2454,8677 +127420,411,9,88273,12037 +127421,203,1,109491,1371069 +127422,273,7,1724,7045 +127423,197,5,11351,1823796 +127424,3,5,23853,21405 +127425,250,11,225728,1571984 +127426,234,1,315855,1409534 +127427,234,1,77930,1884 +127428,52,10,72602,149104 +127429,317,10,195269,64158 +127430,273,7,246133,1301273 +127431,289,6,136087,1649727 +127432,328,6,6972,1401730 +127433,269,9,18044,1012891 +127434,317,10,91186,86319 +127435,234,1,4913,39978 +127436,234,1,72898,34613 +127437,169,3,33789,572367 +127438,373,7,16342,1377492 +127439,53,2,10776,11714 +127440,143,7,966,14527 +127441,413,11,11639,6604 +127442,190,7,256347,1338150 +127443,53,2,284293,1385487 +127444,53,2,425591,1051959 +127445,373,7,9846,1368864 +127446,53,2,211879,1595266 +127447,203,1,45019,1487530 +127448,75,5,189,1401152 +127449,196,7,273481,16994 +127450,413,11,35021,1006471 +127451,234,1,145760,1088719 +127452,341,2,10590,1744053 +127453,204,9,443319,1888975 +127454,3,5,84944,931473 +127455,373,7,17111,1392211 +127456,51,9,2662,16426 +127457,360,3,85414,1333162 +127458,234,1,293670,1296119 +127459,398,9,74,8279 +127460,317,10,79362,221499 +127461,289,6,72640,148774 +127462,413,11,838,2551 +127463,234,1,8080,17279 +127464,53,2,1817,8411 +127465,413,11,6935,51511 +127466,273,7,13391,70104 +127467,74,5,11377,1568647 +127468,387,10,63414,1055737 +127469,53,2,203321,1554233 +127470,5,10,197082,1174849 +127471,113,9,949,4727 +127472,269,9,117913,1853908 +127473,175,5,369894,1672750 +127474,234,1,235199,945172 +127475,387,10,18692,21453 +127476,234,1,236041,1028513 +127477,273,7,11880,62086 +127478,234,1,298,1884 +127479,53,2,15440,1143763 +127480,175,5,315837,1392718 +127481,324,3,46738,970214 +127482,169,3,124470,1372209 +127483,317,10,232100,1267375 +127484,234,1,323149,1422262 +127485,234,1,19968,9054 +127486,234,1,45679,84641 +127487,187,11,17654,1424605 +127488,269,9,285,1226 +127489,269,9,426253,1591750 +127490,387,10,79094,46349 +127491,292,3,379019,1780196 +127492,105,7,280045,1170812 +127493,314,2,20648,1457694 +127494,303,3,20357,32260 +127495,273,7,16075,1836142 +127496,413,11,175035,29971 +127497,234,1,161073,1143378 +127498,317,10,47410,138868 +127499,225,7,379019,1780154 +127500,413,11,147903,30154 +127501,179,2,283445,1012984 +127502,387,10,36915,2199 +127503,317,10,37653,59031 +127504,3,5,30126,13270 +127505,317,10,384594,1433398 +127506,160,3,343934,4438 +127507,190,7,181533,113066 +127508,52,10,24655,56191 +127509,234,1,91551,109978 +127510,387,10,242,3083 +127511,387,10,376252,1600906 +127512,234,1,61225,133259 +127513,3,5,156335,103496 +127514,234,1,38022,139210 +127515,317,10,156700,1137990 +127516,289,6,22752,227129 +127517,273,7,300155,62954 +127518,306,7,22584,1099567 +127519,52,10,73690,13620 +127520,204,9,31258,1477212 +127521,317,10,105528,1037977 +127522,22,9,13380,1560286 +127523,53,2,266102,16340 +127524,143,7,9438,21103 +127525,239,5,199575,1698855 +127526,273,7,27635,30922 +127527,317,10,47143,9888 +127528,32,8,2898,1537431 +127529,3,5,236399,90690 +127530,269,9,285848,1363838 +127531,317,10,21348,87429 +127532,413,11,29083,6995 +127533,415,3,46738,1536199 +127534,179,2,16997,1583174 +127535,209,7,9836,1404326 +127536,3,5,19142,101869 +127537,273,7,9593,7714 +127538,53,2,188927,2519 +127539,234,1,158750,85203 +127540,333,2,29263,1318868 +127541,298,5,9352,1404244 +127542,273,7,184351,4681 +127543,268,7,18417,8157 +127544,3,5,71133,237622 +127545,234,1,40916,82800 +127546,50,3,10733,1266649 +127547,333,2,291413,1746607 +127548,196,7,277355,1495179 +127549,61,7,11024,1673568 +127550,289,6,72105,1455529 +127551,234,1,363579,543568 +127552,208,2,9778,1320911 +127553,148,9,17590,18174 +127554,209,7,337339,67695 +127555,273,7,132122,1094533 +127556,179,2,76170,1527915 +127557,64,6,19996,1764176 +127558,53,2,244316,1098931 +127559,204,9,1904,15572 +127560,200,3,189,1401144 +127561,234,1,172890,140457 +127562,262,6,216580,1395222 +127563,75,5,297702,1636857 +127564,113,9,245891,1512729 +127565,387,10,110,1126 +127566,245,3,10733,1397856 +127567,234,1,30141,33054 +127568,234,1,33563,59419 +127569,352,3,544,1780226 +127570,187,11,72733,1095119 +127571,77,10,9956,60913 +127572,333,2,1578,16519 +127573,317,10,291866,1524504 +127574,317,10,72822,35904 +127575,273,7,110491,104398 +127576,387,10,13852,42381 +127577,413,11,329819,543838 +127578,317,10,199647,1179836 +127579,203,1,14145,1416993 +127580,75,5,8292,1399927 +127581,373,7,317,1447759 +127582,175,5,2898,1378173 +127583,5,10,30959,552637 +127584,360,3,9946,1333220 +127585,234,1,76207,19069 +127586,413,11,48207,29538 +127587,179,2,2135,1322089 +127588,3,5,1896,19810 +127589,234,1,211166,5714 +127590,317,10,101376,1024845 +127591,53,2,10351,6802 +127592,209,7,98066,1337680 +127593,413,11,10567,56749 +127594,333,2,63304,1646201 +127595,204,9,284053,62484 +127596,286,3,247436,1282923 +127597,188,8,383914,1622040 +127598,317,10,137381,1710374 +127599,5,10,94348,21022 +127600,127,3,949,142157 +127601,203,1,7445,1407238 +127602,143,7,1428,10630 +127603,387,10,2084,21340 +127604,67,10,308269,1447900 +127605,289,6,15045,1447376 +127606,234,1,69717,1006109 +127607,204,9,173205,1852926 +127608,67,10,11045,2043 +127609,317,10,91480,655062 +127610,413,11,987,10007 +127611,179,2,1251,1323092 +127612,328,6,924,1401292 +127613,102,3,924,1551659 +127614,204,9,43155,9062 +127615,54,10,156597,1024442 +127616,394,7,315335,928487 +127617,226,2,228205,1443945 +127618,187,11,315837,1387183 +127619,387,10,3478,24658 +127620,234,1,21132,34849 +127621,148,9,6,796 +127622,127,3,2034,1332245 +127623,394,7,16131,1335127 +127624,234,1,8292,6482 +127625,287,3,294254,1412687 +127626,3,5,11524,6490 +127627,317,10,42045,53810 +127628,158,2,203833,1336198 +127629,273,7,525,7182 +127630,346,3,204922,1409306 +127631,262,6,19901,1355540 +127632,286,3,38654,3454 +127633,317,10,28973,13848 +127634,328,6,9286,1391692 +127635,387,10,3989,34518 +127636,67,10,8204,1725892 +127637,204,9,9352,33933 +127638,234,1,88953,588925 +127639,3,5,81110,1265586 +127640,203,1,47186,1347761 +127641,333,2,117942,1069671 +127642,333,2,93858,1863919 +127643,289,6,65759,1453005 +127644,291,6,126889,1746449 +127645,53,2,12573,7418 +127646,234,1,66113,556084 +127647,105,7,47670,1058268 +127648,204,9,115109,1374561 +127649,234,1,34518,77257 +127650,143,7,193216,1274488 +127651,317,10,13962,59954 +127652,394,7,773,1031811 +127653,3,5,292625,1648570 +127654,105,7,13562,114280 +127655,188,8,544,1780229 +127656,105,7,180383,1388091 +127657,234,1,212756,113290 +127658,304,10,148284,1363304 +127659,53,2,256962,9551 +127660,204,9,96118,6654 +127661,75,5,11517,933949 +127662,317,10,64044,128302 +127663,60,1,128412,1489483 +127664,413,11,15199,1416398 +127665,3,5,4809,13270 +127666,273,7,48636,70607 +127667,5,10,42852,33273 +127668,234,1,340215,1630270 +127669,204,9,315465,1590938 +127670,234,1,9946,37710 +127671,399,9,88018,123192 +127672,52,10,74437,93689 +127673,413,11,77010,1124528 +127674,398,9,18417,46592 +127675,203,1,14145,1416994 +127676,105,7,464111,929145 +127677,269,9,337104,1174097 +127678,258,9,10539,1454756 +127679,387,10,27085,1163920 +127680,273,7,110,1135 +127681,387,10,68063,78530 +127682,273,7,352890,983343 +127683,234,1,108723,40378 +127684,371,3,142402,1117117 +127685,317,10,26152,146481 +127686,394,7,11880,1424935 +127687,269,9,9541,23654 +127688,328,6,72431,1484197 +127689,3,5,301334,1128434 +127690,176,3,127372,132597 +127691,317,10,116488,1277936 +127692,327,7,9877,14764 +127693,160,3,10320,15318 +127694,127,3,52661,50310 +127695,317,10,410537,30064 +127696,53,2,176,62587 +127697,182,8,153,1352284 +127698,234,1,16432,938248 +127699,53,2,35021,41115 +127700,394,7,3597,58362 +127701,273,7,11570,39054 +127702,373,7,228496,7659 +127703,22,9,2662,1603306 +127704,387,10,26679,95995 +127705,273,7,214,2148 +127706,234,1,86154,560264 +127707,381,9,11370,1581077 +127708,209,7,214756,1555208 +127709,234,1,426253,145130 +127710,204,9,2300,1447347 +127711,74,5,18,1881563 +127712,97,7,1271,1077782 +127713,52,10,145963,1106720 +127714,394,7,57201,1360103 +127715,60,1,43241,1582620 +127716,53,2,126418,9064 +127717,239,5,25643,1579180 +127718,234,1,12525,35087 +127719,175,5,64215,1354359 +127720,105,7,508,217371 +127721,234,1,163111,1090565 +127722,317,10,30547,7335 +127723,204,9,324930,1085055 +127724,75,5,9914,1407690 +127725,53,2,40807,23816 +127726,273,7,9541,23739 +127727,333,2,20126,1719808 +127728,53,2,8816,150839 +127729,60,1,46982,84736 +127730,234,1,98203,56213 +127731,234,1,40633,32134 +127732,317,10,88075,20097 +127733,387,10,44566,35785 +127734,187,11,10632,1404838 +127735,413,11,13614,1142943 +127736,234,1,203780,235958 +127737,60,1,80276,1704829 +127738,52,10,23739,19429 +127739,52,10,37865,1105489 +127740,234,1,11577,7767 +127741,289,6,90034,938147 +127742,234,1,191476,1444767 +127743,204,9,98125,8622 +127744,317,10,252059,1138216 +127745,53,2,118451,1294139 +127746,273,7,54563,39300 +127747,387,10,14063,1055500 +127748,273,7,343369,1283653 +127749,175,5,118,51841 +127750,286,3,53404,234793 +127751,317,10,360603,36130 +127752,5,10,167707,1199584 +127753,204,9,635,4058 +127754,83,2,98066,1428234 +127755,381,9,744,1378164 +127756,234,1,16137,79542 +127757,317,10,27941,1099642 +127758,413,11,252680,909318 +127759,3,5,10770,66641 +127760,311,9,291413,1461164 +127761,92,7,140276,8511 +127762,333,2,16214,119770 +127763,234,1,21052,9612 +127764,273,7,6552,5912 +127765,234,1,430834,938835 +127766,413,11,44902,30924 +127767,317,10,258384,37361 +127768,401,6,9982,1713397 +127769,234,1,26142,19798 +127770,207,3,163,1419114 +127771,53,2,256347,1338159 +127772,301,5,181533,1403640 +127773,286,3,8088,275 +127774,105,7,59408,1185211 +127775,244,3,14369,1752658 +127776,234,1,1662,18500 +127777,53,2,98115,1148633 +127778,270,9,10733,1397817 +127779,87,7,8292,1560905 +127780,52,10,42764,128670 +127781,209,7,103332,95842 +127782,286,3,117942,1069670 +127783,234,1,42457,630230 +127784,53,2,82077,1533789 +127785,373,7,9928,569912 +127786,317,10,358511,1506062 +127787,217,3,32600,10523 +127788,3,5,140276,8504 +127789,113,9,17209,1426090 +127790,60,1,25673,1183417 +127791,317,10,197297,1007638 +127792,317,10,199463,48566 +127793,148,9,229610,1539097 +127794,394,7,315837,14765 +127795,310,3,313108,1294937 +127796,182,8,111398,1529561 +127797,226,2,11137,1423203 +127798,273,7,145481,71523 +127799,273,7,132859,1090879 +127800,273,7,200117,30634 +127801,105,7,25132,1741203 +127802,387,10,242683,1244303 +127803,53,2,72912,1037915 +127804,182,8,99,1677184 +127805,3,5,109610,36165 +127806,337,2,6973,1059586 +127807,74,5,2924,1803769 +127808,166,9,227306,1536893 +127809,387,10,11421,69371 +127810,148,9,10055,62586 +127811,135,3,74,1704239 +127812,105,7,74395,962892 +127813,317,10,36489,44763 +127814,160,3,256092,1265157 +127815,413,11,245891,1017235 +127816,317,10,30690,167243 +127817,234,1,10476,53267 +127818,317,10,47405,138854 +127819,269,9,67748,1172514 +127820,3,5,229610,33413 +127821,413,11,25649,547970 +127822,398,9,331313,1728518 +127823,234,1,12454,65452 +127824,234,1,46124,70334 +127825,387,10,29313,40885 +127826,160,3,2503,1406838 +127827,413,11,369406,1442009 +127828,387,10,227325,85203 +127829,317,10,113178,51659 +127830,67,10,3933,1450347 +127831,333,2,186869,1835567 +127832,204,9,94725,1563920 +127833,387,10,1450,52910 +127834,413,11,2441,19845 +127835,234,1,87343,408 +127836,234,1,34469,15868 +127837,148,9,86241,1434205 +127838,204,9,174769,4349 +127839,175,5,10665,1460768 +127840,204,9,16090,8622 +127841,413,11,219233,1039764 +127842,234,1,347031,1383612 +127843,234,1,66526,91552 +127844,164,3,206647,1551797 +127845,244,3,8916,1339432 +127846,317,10,82708,16780 +127847,204,9,37923,1440462 +127848,148,9,9675,21729 +127849,97,7,316042,20228 +127850,234,1,24426,91604 +127851,52,10,42825,50269 +127852,317,10,68629,54469 +127853,387,10,153162,33029 +127854,234,1,13496,56911 +127855,387,10,43849,30520 +127856,317,10,363354,1181167 +127857,53,2,241374,9064 +127858,184,7,83,1433720 +127859,333,2,56135,26175 +127860,234,1,430058,123558 +127861,413,11,26826,47204 +127862,373,7,51036,1406614 +127863,169,3,10066,80828 +127864,103,6,250066,1495528 +127865,3,5,43211,51748 +127866,105,7,14489,1398646 +127867,234,1,85200,589816 +127868,20,2,315837,1797192 +127869,317,10,34652,18907 +127870,325,5,297762,1641083 +127871,75,5,72545,1445895 +127872,317,10,18317,2239 +127873,273,7,11853,1760 +127874,22,9,381015,1828346 +127875,234,1,142712,54559 +127876,180,7,101929,1547532 +127877,333,2,24469,1319624 +127878,340,2,365942,1521753 +127879,175,5,283384,1183452 +127880,398,9,126889,1816360 +127881,234,1,37628,793 +127882,317,10,341491,1301955 +127883,317,10,344255,88040 +127884,387,10,1810,2747 +127885,3,5,388862,229987 +127886,3,5,40983,1719999 +127887,234,1,58166,227466 +127888,72,11,188927,1407685 +127889,413,11,37301,1154805 +127890,333,2,193893,1871188 +127891,373,7,255491,1302966 +127892,234,1,189682,29571 +127893,234,1,105945,1039201 +127894,258,9,15213,1462619 +127895,187,11,341174,93844 +127896,269,9,14527,267877 +127897,398,9,198663,1367488 +127898,39,3,241254,1371880 +127899,77,10,118,1299 +127900,269,9,45935,69841 +127901,196,7,362057,1302793 +127902,332,8,19995,1453938 +127903,226,2,49009,1412601 +127904,45,9,11024,1531563 +127905,387,10,3577,28441 +127906,234,1,32546,109356 +127907,244,3,2924,72447 +127908,155,3,49013,12897 +127909,387,10,109391,1281414 +127910,219,11,10727,931247 +127911,327,7,34723,1417498 +127912,204,9,505,6922 +127913,269,9,40688,108782 +127914,53,2,2309,6380 +127915,317,10,183015,1166090 +127916,234,1,74199,135678 +127917,3,5,2061,1175 +127918,289,6,3933,1448065 +127919,387,10,43491,98441 +127920,249,7,5,1412242 +127921,317,10,28893,102334 +127922,328,6,59965,1395026 +127923,234,1,255343,40541 +127924,11,6,9514,1642563 +127925,317,10,315850,1371393 +127926,269,9,30583,572054 +127927,413,11,13805,33283 +127928,226,2,435,1402017 +127929,198,6,228066,1574084 +127930,394,7,11017,143913 +127931,269,9,47540,1267785 +127932,413,11,60994,563 +127933,204,9,27035,8622 +127934,277,3,214081,1367648 +127935,291,6,1690,1410154 +127936,293,2,11370,1581127 +127937,387,10,416569,1064049 +127938,333,2,418990,1695213 +127939,296,3,693,1761060 +127940,273,7,32029,12417 +127941,234,1,37603,581079 +127942,328,6,14,1404846 +127943,52,10,248376,548474 +127944,413,11,102841,16533 +127945,60,1,270851,1321934 +127946,148,9,42345,7338 +127947,3,5,74527,14431 +127948,72,11,333371,1451556 +127949,273,7,12483,57902 +127950,234,1,38340,14566 +127951,53,2,11832,1644086 +127952,269,9,47889,136738 +127953,317,10,1481,65026 +127954,87,7,10096,1471726 +127955,286,3,351065,1354949 +127956,221,3,857,1405243 +127957,413,11,693,10395 +127958,387,10,72638,116842 +127959,3,5,130739,1201973 +127960,269,9,2197,23296 +127961,387,10,256962,1296179 +127962,161,6,52454,1023419 +127963,234,1,21571,78922 +127964,203,1,82990,1406868 +127965,182,8,425774,1708031 +127966,203,1,102428,1385152 +127967,204,9,341957,1266307 +127968,234,1,136752,1208802 +127969,53,2,332411,1579379 +127970,234,1,64786,1095725 +127971,273,7,11647,21903 +127972,273,7,13853,37 +127973,160,3,32872,138626 +127974,158,2,17577,1423846 +127975,179,2,156711,1547755 +127976,155,3,1165,473 +127977,234,1,15944,30099 +127978,395,3,10865,1447376 +127979,77,10,15261,78039 +127980,273,7,27986,134806 +127981,269,9,25132,20489 +127982,204,9,33253,1180490 +127983,3,5,60269,84960 +127984,387,10,3933,1901 +127985,234,1,319073,78055 +127986,317,10,42132,1092631 +127987,317,10,30014,105017 +127988,234,1,56969,93290 +127989,52,10,192023,1172464 +127990,52,10,3146,136508 +127991,5,10,219233,142461 +127992,403,10,12154,35208 +127993,388,9,266856,1878501 +127994,200,3,8292,1452634 +127995,234,1,286940,87130 +127996,209,7,131737,1542366 +127997,52,10,19715,71211 +127998,62,3,8619,1073780 +127999,160,3,858,12948 +128000,204,9,10066,62744 +128001,234,1,21576,87670 +128002,53,2,31498,13959 +128003,413,11,411741,1716664 +128004,189,3,693,1477799 +128005,415,3,242,4659 +128006,53,2,186971,1174351 +128007,234,1,1926,20024 +128008,204,9,100910,3255 +128009,203,1,6934,1609156 +128010,181,7,10330,1555488 +128011,327,7,8870,1724276 +128012,208,2,11622,30391 +128013,234,1,62349,235204 +128014,52,10,49110,1280312 +128015,387,10,56339,73864 +128016,3,5,255388,132535 +128017,269,9,197849,233721 +128018,273,7,11561,1243 +128019,52,10,102382,15345 +128020,105,7,385372,1823568 +128021,141,7,634,1576031 +128022,53,2,86709,933576 +128023,273,7,10921,47927 +128024,234,1,38282,96627 +128025,198,6,315837,1797231 +128026,413,11,41604,236855 +128027,289,6,12230,22066 +128028,182,8,33586,1814988 +128029,387,10,11215,56106 +128030,226,2,53150,1746082 +128031,234,1,142984,128947 +128032,317,10,15534,58101 +128033,317,10,32604,41040 +128034,53,2,172897,1155579 +128035,325,5,145135,45738 +128036,387,10,329682,1106029 +128037,187,11,14126,1409222 +128038,327,7,54845,1412452 +128039,269,9,13496,1124107 +128040,191,6,297762,1797224 +128041,306,7,300596,1718167 +128042,234,1,20645,5026 +128043,5,10,103218,589495 +128044,203,1,408616,1358025 +128045,387,10,103012,176485 +128046,77,10,1049,7750 +128047,317,10,310123,126764 +128048,221,3,197,1405243 +128049,234,1,413417,1719069 +128050,250,11,294652,1410559 +128051,317,10,49954,143082 +128052,52,10,31167,40199 +128053,234,1,18477,5140 +128054,204,9,9541,1275452 +128055,175,5,362541,1518583 +128056,387,10,15849,1546 +128057,262,6,59197,1023419 +128058,60,1,42537,88983 +128059,143,7,48962,1362704 +128060,317,10,137528,1764637 +128061,293,2,79316,1463801 +128062,394,7,241239,7537 +128063,5,10,3686,33766 +128064,210,9,9716,1661562 +128065,204,9,257088,1338964 +128066,387,10,8329,54527 +128067,46,5,69,1680300 +128068,413,11,237796,1136 +128069,74,5,315837,1460581 +128070,53,2,345915,1423983 +128071,249,7,20919,13224 +128072,234,1,44338,550477 +128073,72,11,32577,1735127 +128074,317,10,15602,16837 +128075,317,10,52661,66919 +128076,317,10,13079,1279696 +128077,277,3,274479,1550237 +128078,317,10,130233,38193 +128079,273,7,12206,9838 +128080,72,11,10491,1433623 +128081,3,5,12186,9965 +128082,3,5,31263,1020077 +128083,3,5,43849,127523 +128084,53,2,130948,1008510 +128085,269,9,21148,38687 +128086,289,6,18939,133556 +128087,234,1,772,10965 +128088,273,7,11096,68007 +128089,273,7,10351,20953 +128090,413,11,11058,8751 +128091,203,1,2977,1547156 +128092,226,2,262522,1460861 +128093,234,1,29444,72125 +128094,413,11,11509,9966 +128095,20,2,413882,1735099 +128096,234,1,320299,138756 +128097,387,10,54715,9612 +128098,387,10,49850,88467 +128099,413,11,9563,57978 +128100,234,1,79678,587783 +128101,60,1,505,58471 +128102,387,10,27549,24757 +128103,286,3,36797,1590 +128104,234,1,345918,1130788 +128105,376,10,20160,88858 +128106,97,7,10389,1437887 +128107,273,7,79995,1553768 +128108,60,1,977,14584 +128109,143,7,233639,57187 +128110,205,10,356752,1746080 +128111,387,10,103758,63973 +128112,360,3,264560,1387540 +128113,105,7,53399,122451 +128114,413,11,42664,4309 +128115,3,5,300487,1144119 +128116,317,10,35197,115726 +128117,160,3,118957,1402898 +128118,3,5,4960,4434 +128119,204,9,1579,17677 +128120,413,11,166671,1848083 +128121,273,7,42533,559250 +128122,234,1,223485,1062805 +128123,333,2,196359,1525985 +128124,234,1,64868,25558 +128125,387,10,52782,27915 +128126,413,11,47900,134164 +128127,166,9,17144,1436535 +128128,3,5,33556,1026841 +128129,72,11,337339,1536977 +128130,387,10,15936,7678 +128131,387,10,13912,144066 +128132,387,10,9532,42121 +128133,166,9,12103,1625896 +128134,203,1,140846,1113582 +128135,306,7,42764,582413 +128136,273,7,6499,50099 +128137,234,1,219247,62797 +128138,305,9,10865,212135 +128139,317,10,55208,556912 +128140,352,3,664,1892500 +128141,234,1,227975,55018 +128142,3,5,124994,1080822 +128143,273,7,215928,1537708 +128144,234,1,413391,58064 +128145,75,5,9514,1642514 +128146,327,7,28,1407197 +128147,20,2,170279,1475701 +128148,132,2,22803,1428583 +128149,234,1,77650,18574 +128150,45,9,9042,1334504 +128151,160,3,251,93887 +128152,226,2,32868,1300337 +128153,53,2,266373,20147 +128154,413,11,82655,928459 +128155,234,1,410634,1013107 +128156,273,7,10610,1465627 +128157,273,7,9016,1213 +128158,413,11,353533,1488793 +128159,204,9,64784,1451782 +128160,269,9,23830,18511 +128161,286,3,74645,5556 +128162,387,10,116236,67971 +128163,413,11,12103,21271 +128164,105,7,45527,1099146 +128165,204,9,13411,12436 +128166,192,5,149509,71127 +128167,234,1,9016,15810 +128168,53,2,26378,8717 +128169,234,1,5915,2228 +128170,403,10,954,15312 +128171,182,8,5638,81529 +128172,234,1,124470,26850 +128173,204,9,18,8379 +128174,387,10,38154,552193 +128175,45,9,10071,1532690 +128176,234,1,343173,56635 +128177,234,1,42502,793 +128178,413,11,936,10007 +128179,204,9,6079,1350281 +128180,289,6,72105,1455518 +128181,317,10,34205,1212507 +128182,53,2,92499,1294130 +128183,196,7,5516,1496412 +128184,317,10,59828,69121 +128185,196,7,83,1049456 +128186,317,10,332741,1532332 +128187,175,5,354859,1540923 +128188,3,5,121674,943 +128189,289,6,106112,150768 +128190,127,3,99,141018 +128191,273,7,280690,85053 +128192,360,3,190955,1372085 +128193,314,2,17175,1537856 +128194,286,3,156700,1209871 +128195,236,8,8467,1893237 +128196,127,3,52661,161961 +128197,317,10,411221,1558149 +128198,413,11,11120,17399 +128199,160,3,227306,9357 +128200,60,1,246218,209680 +128201,328,6,5289,1041085 +128202,209,7,47412,1339213 +128203,413,11,9914,60411 +128204,148,9,7445,1012801 +128205,24,5,2567,1461175 +128206,175,5,376501,1792349 +128207,413,11,16938,12703 +128208,143,7,209112,65937 +128209,204,9,15,11036 +128210,273,7,45714,39054 +128211,175,5,14126,1401196 +128212,234,1,81346,103511 +128213,413,11,42093,72922 +128214,148,9,99861,1338477 +128215,204,9,59296,1334483 +128216,105,7,366170,16140 +128217,317,10,37586,130402 +128218,204,9,10204,11274 +128219,373,7,103332,9619 +128220,148,9,381015,1828344 +128221,226,2,7220,1528387 +128222,234,1,63333,31251 +128223,59,3,4147,1558210 +128224,132,2,200505,1411166 +128225,413,11,23730,11880 +128226,413,11,340881,127027 +128227,413,11,128625,959460 +128228,317,10,233423,1294342 +128229,273,7,18044,61843 +128230,317,10,13585,24265 +128231,234,1,1049,15148 +128232,262,6,50674,1042814 +128233,127,3,30361,1501053 +128234,387,10,43997,178564 +128235,160,3,18405,1396418 +128236,387,10,56596,93382 +128237,234,1,98566,66739 +128238,92,7,13678,1297471 +128239,301,5,16996,1559544 +128240,3,5,12255,64300 +128241,3,5,46326,1758 +128242,250,11,245703,1432047 +128243,187,11,345925,1717841 +128244,289,6,53211,163663 +128245,234,1,20075,63208 +128246,53,2,158900,1157943 +128247,273,7,17971,1754098 +128248,52,10,29151,1399155 +128249,204,9,12220,10575 +128250,387,10,10201,240376 +128251,176,3,60599,1400489 +128252,317,10,301368,1805792 +128253,97,7,329440,1344831 +128254,203,1,110972,230464 +128255,387,10,10803,14941 +128256,314,2,279690,1630978 +128257,3,5,125264,1083276 +128258,317,10,75623,371298 +128259,104,7,11812,1545460 +128260,204,9,2604,8285 +128261,387,10,10783,57107 +128262,413,11,69668,899 +128263,387,10,112284,1176920 +128264,77,10,23628,90394 +128265,15,6,228066,1444292 +128266,387,10,24479,939274 +128267,289,6,60316,133556 +128268,3,5,4413,1301 +128269,72,11,140607,1545996 +128270,203,1,340101,1389976 +128271,413,11,17386,1098 +128272,413,11,108282,181450 +128273,220,7,64928,17915 +128274,413,11,346473,1099943 +128275,234,1,70772,19142 +128276,66,11,3059,1899132 +128277,387,10,4988,6835 +128278,3,5,353728,983625 +128279,52,10,65131,63977 +128280,273,7,10020,15813 +128281,175,5,1640,589974 +128282,52,10,76640,1143493 +128283,387,10,1912,3931 +128284,234,1,43984,120227 +128285,387,10,29471,33323 +128286,3,5,63360,1441129 +128287,360,3,45019,1550218 +128288,387,10,359152,1309617 +128289,317,10,198277,45117 +128290,269,9,1550,275201 +128291,204,9,9354,136738 +128292,413,11,37917,3643 +128293,234,1,52936,3111 +128294,3,5,332839,1439176 +128295,234,1,134368,69719 +128296,273,7,293670,1294908 +128297,181,7,14181,1545495 +128298,387,10,48885,99920 +128299,18,2,1966,1733729 +128300,413,11,11421,69376 +128301,204,9,68737,77513 +128302,286,3,90616,1298625 +128303,53,2,41283,86197 +128304,413,11,214138,1004051 +128305,198,6,378018,1805349 +128306,399,9,10020,1615286 +128307,208,2,20648,1537105 +128308,269,9,131689,1064439 +128309,12,10,14830,7625 +128310,45,9,10326,1406083 +128311,387,10,54022,54469 +128312,64,6,8652,135847 +128313,273,7,359152,1507957 +128314,250,11,296523,1371519 +128315,273,7,37954,3249 +128316,249,7,129,934817 +128317,127,3,28090,1719887 +128318,53,2,301875,1571051 +128319,234,1,171357,971123 +128320,317,10,125249,1081105 +128321,105,7,107073,1481479 +128322,234,1,224950,1210483 +128323,398,9,10326,1446658 +128324,303,3,5289,56021 +128325,413,11,51423,1114918 +128326,413,11,104430,14285 +128327,127,3,384737,1825885 +128328,77,10,13484,54710 +128329,96,2,376501,1568831 +128330,53,2,28448,1476557 +128331,269,9,278632,989751 +128332,169,3,544,1549428 +128333,108,10,43489,1168712 +128334,3,5,198652,959727 +128335,387,10,118984,1230476 +128336,357,3,19995,1466035 +128337,269,9,27549,566356 +128338,317,10,333103,1446662 +128339,166,9,1991,1407347 +128340,262,6,297762,1449178 +128341,52,10,15379,57154 +128342,105,7,293167,227440 +128343,148,9,70695,11746 +128344,387,10,11425,30024 +128345,105,7,9042,1076 +128346,111,7,4147,1551665 +128347,317,10,134662,1099847 +128348,132,2,194722,1549194 +128349,333,2,10070,1207166 +128350,269,9,236399,6629 +128351,387,10,10354,1725 +128352,234,1,22602,34799 +128353,413,11,26283,12143 +128354,87,7,773,1394583 +128355,333,2,445993,1808048 +128356,273,7,27703,72678 +128357,413,11,10897,11372 +128358,234,1,245739,1215901 +128359,53,2,227975,1775627 +128360,234,1,307696,1088231 +128361,398,9,263115,1410100 +128362,175,5,145481,1698983 +128363,143,7,131737,1542366 +128364,269,9,63217,1518512 +128365,234,1,51364,13953 +128366,179,2,102629,1037915 +128367,3,5,481,6528 +128368,52,10,311324,112044 +128369,53,2,55720,1530085 +128370,317,10,96987,45405 +128371,387,10,1986,20430 +128372,40,1,10804,1513635 +128373,22,9,10590,1744046 +128374,317,10,360205,1511015 +128375,234,1,341077,1469397 +128376,398,9,8211,7097 +128377,204,9,140032,107063 +128378,234,1,3033,15557 +128379,234,1,289,4109 +128380,3,5,40562,130268 +128381,321,11,809,1678651 +128382,182,8,14430,1521669 +128383,5,10,164504,557979 +128384,289,6,53178,598929 +128385,234,1,98277,1017275 +128386,204,9,424488,1198658 +128387,203,1,1690,1483854 +128388,387,10,6978,53025 +128389,387,10,346672,120119 +128390,203,1,8617,1492941 +128391,273,7,6499,1407681 +128392,360,3,84226,1418427 +128393,317,10,58011,69973 +128394,3,5,40649,19710 +128395,79,7,13763,21037 +128396,175,5,11370,1424940 +128397,239,5,655,14196 +128398,77,10,50012,6210 +128399,234,1,42678,2891 +128400,166,9,225728,1338217 +128401,175,5,27637,1707852 +128402,387,10,15050,147014 +128403,317,10,89330,992854 +128404,387,10,10870,67717 +128405,269,9,33336,1330429 +128406,262,6,170279,1174526 +128407,234,1,58704,228279 +128408,3,5,24973,13270 +128409,413,11,383618,56398 +128410,77,10,34181,143368 +128411,234,1,253192,115122 +128412,413,11,61267,1276786 +128413,179,2,14145,1209076 +128414,273,7,88075,2916 +128415,328,6,198663,1367496 +128416,209,7,109439,1394984 +128417,373,7,285270,1367924 +128418,398,9,127380,1715751 +128419,317,10,147106,20061 +128420,7,3,74,1868857 +128421,175,5,19719,85125 +128422,234,1,18783,65852 +128423,234,1,49847,142952 +128424,412,9,266856,1878505 +128425,60,1,107593,1008625 +128426,403,10,49013,15892 +128427,5,10,11012,67799 +128428,3,5,103432,1033804 +128429,239,5,76170,1527926 +128430,3,5,60488,10602 +128431,387,10,30996,1735225 +128432,234,1,144942,148497 +128433,234,1,231009,28256 +128434,270,9,46261,1425378 +128435,413,11,38775,114399 +128436,413,11,19618,68090 +128437,234,1,423093,981313 +128438,317,10,413669,78158 +128439,301,5,345918,1825550 +128440,317,10,343283,563702 +128441,317,10,57100,53218 +128442,317,10,53999,141708 +128443,317,10,157305,1138632 +128444,314,2,340275,1732090 +128445,419,10,23692,1134202 +128446,97,7,84178,1404272 +128447,113,9,7916,1438597 +128448,248,2,126889,1746457 +128449,164,3,8470,1530192 +128450,3,5,96724,3285 +128451,234,1,10550,65615 +128452,187,11,325173,1369376 +128453,302,9,14430,1521680 +128454,234,1,146428,143285 +128455,269,9,8988,5779 +128456,234,1,150338,138140 +128457,53,2,332788,575443 +128458,273,7,259645,1138218 +128459,269,9,259645,1306874 +128460,234,1,125759,232235 +128461,75,5,1950,1318982 +128462,413,11,105760,41113 +128463,234,1,63291,236820 +128464,333,2,280092,1367920 +128465,236,8,638,9362 +128466,234,1,42832,240071 +128467,192,5,384262,1805973 +128468,413,11,2805,1653575 +128469,75,5,9532,1400374 +128470,3,5,11908,70898 +128471,5,10,70881,20875 +128472,413,11,15902,1196249 +128473,147,1,334538,1797246 +128474,204,9,6933,18900 +128475,174,6,4147,1464960 +128476,413,11,12186,18387 +128477,18,2,2108,21646 +128478,234,1,10201,59026 +128479,148,9,54287,1603862 +128480,52,10,269149,1318201 +128481,105,7,12432,20648 +128482,3,5,21282,40268 +128483,3,5,1950,9573 +128484,415,3,949,15848 +128485,317,10,31408,930598 +128486,413,11,1984,20417 +128487,22,9,226701,1860654 +128488,387,10,106417,1047244 +128489,317,10,16313,111481 +128490,175,5,1690,1401151 +128491,413,11,310431,68127 +128492,226,2,19338,1484704 +128493,226,2,265208,1490939 +128494,234,1,33367,111687 +128495,413,11,10890,67349 +128496,234,1,61527,53359 +128497,317,10,393732,1345743 +128498,387,10,30127,142175 +128499,333,2,43045,14056 +128500,317,10,356752,1501742 +128501,387,10,222935,77951 +128502,413,11,92499,1294769 +128503,413,11,37308,8505 +128504,269,9,18317,1398572 +128505,317,10,25649,1188 +128506,304,10,3063,30010 +128507,190,7,18,978114 +128508,234,1,341962,1470847 +128509,3,5,53879,13270 +128510,41,3,227975,1775642 +128511,226,2,29510,50580 +128512,5,10,11712,70329 +128513,87,7,339419,1616391 +128514,317,10,67342,62412 +128515,301,5,379,983118 +128516,203,1,76494,1401155 +128517,317,10,13529,14598 +128518,234,1,10947,65310 +128519,250,11,333663,1473167 +128520,277,7,55700,1283141 +128521,53,2,37481,1494610 +128522,52,10,30876,103612 +128523,317,10,26165,932743 +128524,226,2,122019,1584966 +128525,52,10,34223,19172 +128526,57,2,354287,1401126 +128527,234,1,353713,999845 +128528,234,1,46114,83736 +128529,287,3,23966,549455 +128530,328,6,46261,1425387 +128531,328,6,76757,1483137 +128532,413,11,19157,1665713 +128533,203,1,10796,1169741 +128534,234,1,126127,108987 +128535,158,2,283995,1387256 +128536,273,7,10379,14712 +128537,387,10,244316,1426223 +128538,317,10,118451,97142 +128539,411,9,435,17829 +128540,314,2,45019,91053 +128541,234,1,47886,100807 +128542,257,3,2675,1674658 +128543,180,7,42764,1766560 +128544,413,11,9956,15840 +128545,85,10,36540,77545 +128546,3,5,285946,120204 +128547,314,2,101325,578727 +128548,317,10,38955,1173613 +128549,262,6,394645,1864627 +128550,289,6,10539,1454752 +128551,411,9,369885,962164 +128552,3,5,110412,1075909 +128553,45,9,283445,1548085 +128554,203,1,37628,1619427 +128555,387,10,8906,4631 +128556,204,9,53853,9062 +128557,5,10,10473,65625 +128558,3,5,147287,9935 +128559,164,3,324670,1556418 +128560,328,6,8619,1339449 +128561,75,5,341886,1573329 +128562,203,1,12102,1481688 +128563,176,3,186869,1862930 +128564,387,10,93856,85809 +128565,204,9,32600,10523 +128566,317,10,43938,12833 +128567,53,2,72431,56642 +128568,304,10,144792,70044 +128569,387,10,317214,1618692 +128570,143,7,126889,1408373 +128571,209,7,32872,1347755 +128572,390,6,15653,1767035 +128573,234,1,27409,33724 +128574,158,2,14430,1521688 +128575,373,7,44129,1378697 +128576,273,7,25407,4345 +128577,317,10,20210,73137 +128578,113,9,297762,1394061 +128579,387,10,46189,94297 +128580,234,1,55563,59023 +128581,234,1,5955,2228 +128582,234,1,197725,115755 +128583,269,9,890,3771 +128584,77,10,85507,2004 +128585,243,3,10020,1615280 +128586,234,1,13333,57727 +128587,220,7,237672,1175369 +128588,333,2,9664,9161 +128589,75,5,8053,1403479 +128590,200,3,18843,1408782 +128591,168,3,341174,1738113 +128592,317,10,46830,1385535 +128593,314,2,206647,1480629 +128594,317,10,43117,141593 +128595,234,1,130055,64750 +128596,333,2,9286,1441345 +128597,317,10,331313,19273 +128598,234,1,298228,98868 +128599,234,1,71825,73194 +128600,3,5,9403,10418 +128601,234,1,34560,87130 +128602,52,10,124597,1080278 +128603,413,11,703,10548 +128604,234,1,190940,35736 +128605,387,10,413417,1719072 +128606,373,7,99861,1425978 +128607,187,11,4982,1342658 +128608,148,9,16131,1334484 +128609,3,5,795,2702 +128610,387,10,11899,70868 +128611,234,1,34796,9076 +128612,147,1,3059,1044969 +128613,148,9,37481,1461547 +128614,141,7,11377,1602885 +128615,328,6,1271,1394751 +128616,289,6,9514,1642593 +128617,291,6,62728,1637823 +128618,269,9,32049,3117 +128619,234,1,17473,81916 +128620,317,10,17566,550582 +128621,75,5,17622,1402937 +128622,360,3,613,1425851 +128623,387,10,59181,1427284 +128624,3,5,19618,14960 +128625,155,3,17654,10828 +128626,12,10,12593,73033 +128627,413,11,40990,1389212 +128628,273,7,52868,20953 +128629,3,5,86814,1542494 +128630,190,7,638,9385 +128631,3,5,45935,232804 +128632,413,11,211144,29693 +128633,190,7,379019,1780156 +128634,148,9,158739,1208827 +128635,413,11,38922,21244 +128636,273,7,12780,65993 +128637,187,11,82,1462841 +128638,203,1,12103,1469339 +128639,234,1,116350,1063342 +128640,105,7,11886,57337 +128641,53,2,73835,1606293 +128642,413,11,104193,46238 +128643,360,3,203833,40764 +128644,209,7,28176,3278 +128645,387,10,47778,1617029 +128646,287,3,205584,1585741 +128647,413,11,19971,52093 +128648,273,7,4762,39300 +128649,234,1,184267,103931 +128650,234,1,8985,16767 +128651,387,10,77459,109340 +128652,97,7,921,1039164 +128653,105,7,28293,1530889 +128654,105,7,166027,37241 +128655,5,10,39107,78322 +128656,413,11,55370,54359 +128657,52,10,340488,1642951 +128658,387,10,21566,86782 +128659,136,1,15653,1231000 +128660,168,3,230179,1881553 +128661,249,7,755,1412242 +128662,234,1,65718,9740 +128663,286,3,136799,57746 +128664,75,5,308269,1447888 +128665,234,1,70057,56739 +128666,387,10,262841,1020013 +128667,273,7,259695,5553 +128668,413,11,48949,2241 +128669,104,7,153,1337458 +128670,387,10,27300,126125 +128671,317,10,19629,1442187 +128672,5,10,127544,553254 +128673,143,7,11618,2216 +128674,317,10,52808,44957 +128675,413,11,41609,22086 +128676,234,1,23378,90037 +128677,262,6,2503,122274 +128678,117,5,4613,1451245 +128679,387,10,14136,5836 +128680,143,7,46857,1152385 +128681,289,6,98566,1459752 +128682,3,5,11056,37952 +128683,398,9,3145,30574 +128684,387,10,11788,70501 +128685,413,11,99351,32439 +128686,3,5,427680,1758558 +128687,317,10,273578,78297 +128688,289,6,39045,1460511 +128689,3,5,347096,1103662 +128690,317,10,46494,85453 +128691,53,2,91070,1200297 +128692,3,5,46286,42632 +128693,387,10,408381,1657544 +128694,289,6,14444,1454416 +128695,387,10,42648,51314 +128696,204,9,19995,132596 +128697,234,1,17288,550948 +128698,387,10,11680,11187 +128699,269,9,226968,234209 +128700,160,3,251,91243 +128701,204,9,51994,1320210 +128702,317,10,390991,82788 +128703,239,5,58244,1618809 +128704,259,3,4248,1667252 +128705,373,7,20439,1391571 +128706,158,2,298,1395360 +128707,236,8,435,1574649 +128708,387,10,10610,64901 +128709,273,7,33931,67429 +128710,5,10,76200,420654 +128711,411,9,127585,9271 +128712,387,10,51049,1219790 +128713,234,1,44960,15872 +128714,303,3,270303,1483635 +128715,234,1,412309,1669093 +128716,103,6,15457,1371285 +128717,387,10,36194,26157 +128718,52,10,144475,1235698 +128719,234,1,51955,93133 +128720,387,10,10740,66728 +128721,3,5,440508,1844148 +128722,196,7,84336,231582 +128723,105,7,1578,17657 +128724,317,10,201765,1325730 +128725,317,10,203539,1185915 +128726,105,7,58060,1034124 +128727,413,11,49220,77629 +128728,53,2,53714,24330 +128729,61,7,302699,1552205 +128730,175,5,2675,1378240 +128731,147,1,10204,1855062 +128732,53,2,298584,1577698 +128733,333,2,285270,1367923 +128734,209,7,9819,21149 +128735,181,7,1427,14623 +128736,7,3,14430,1043016 +128737,187,11,10395,99426 +128738,394,7,241927,1130513 +128739,226,2,10804,1838313 +128740,317,10,189,2293 +128741,373,7,72431,8166 +128742,273,7,111839,17004 +128743,236,8,1624,1809090 +128744,387,10,4286,15127 +128745,60,1,46492,1529565 +128746,327,7,253337,1149941 +128747,234,1,263873,224214 +128748,273,7,132859,19250 +128749,32,8,3597,1084413 +128750,413,11,2454,5542 +128751,234,1,23169,16834 +128752,148,9,45987,1711807 +128753,50,3,44943,1403409 +128754,53,2,242224,1317311 +128755,157,3,28169,1387712 +128756,75,5,383538,1579001 +128757,3,5,11909,67048 +128758,5,10,14019,76251 +128759,226,2,11321,66690 +128760,234,1,8332,54559 +128761,349,1,9325,143784 +128762,234,1,73098,59255 +128763,147,1,3059,121247 +128764,204,9,2898,1319383 +128765,97,7,16921,1401762 +128766,317,10,50647,22214 +128767,387,10,42066,1044005 +128768,250,11,5289,1409750 +128769,273,7,338189,5488 +128770,317,10,203264,1284262 +128771,273,7,28421,30104 +128772,234,1,412851,1154474 +128773,234,1,362057,21477 +128774,234,1,42307,108678 +128775,203,1,14,1341865 +128776,53,2,285270,1367940 +128777,394,7,70046,1197267 +128778,132,2,44945,86595 +128779,234,1,100532,1024814 +128780,269,9,323665,1423352 +128781,317,10,50387,27876 +128782,234,1,279598,1336135 +128783,77,10,9951,60809 +128784,234,1,378485,1205016 +128785,387,10,43316,988922 +128786,196,7,283995,1360099 +128787,234,1,2525,6593 +128788,388,9,8915,1337454 +128789,105,7,322614,1421248 +128790,234,1,58547,68432 +128791,321,11,285270,1367944 +128792,204,9,275244,1329254 +128793,317,10,79113,62079 +128794,66,11,284053,1814582 +128795,3,5,47412,138896 +128796,234,1,39779,123401 +128797,3,5,42989,21602 +128798,317,10,13728,14606 +128799,234,1,266741,119367 +128800,269,9,4988,41152 +128801,317,10,105509,232640 +128802,191,6,435,1767016 +128803,373,7,10145,1399141 +128804,289,6,14411,1447473 +128805,286,3,189556,1170731 +128806,387,10,323426,85530 +128807,234,1,24822,87894 +128808,317,10,118293,37626 +128809,419,10,54982,71149 +128810,113,9,8276,1544409 +128811,198,6,181533,1869365 +128812,105,7,80539,223157 +128813,387,10,14703,67447 +128814,413,11,11104,68030 +128815,53,2,10657,11823 +128816,317,10,328111,1024175 +128817,287,3,150201,1448873 +128818,204,9,301875,993880 +128819,273,7,11960,71065 +128820,357,3,206647,1459925 +128821,411,9,74,8794 +128822,413,11,288952,22218 +128823,234,1,42706,95135 +128824,327,7,403605,1185946 +128825,273,7,10119,63750 +128826,160,3,15092,75617 +128827,53,2,13393,1603661 +128828,387,10,33660,79983 +128829,53,2,83899,135731 +128830,269,9,127585,11002 +128831,3,5,63493,1209263 +128832,60,1,46069,1540599 +128833,141,7,1647,53017 +128834,317,10,12888,233449 +128835,269,9,43656,1619362 +128836,234,1,384130,1581517 +128837,376,10,85640,41720 +128838,148,9,32093,8508 +128839,374,8,351211,1652048 +128840,75,5,169,1226653 +128841,234,1,270672,1400680 +128842,158,2,167810,1399883 +128843,289,6,10674,1447380 +128844,105,7,15037,25143 +128845,317,10,24578,117136 +128846,234,1,250376,84300 +128847,413,11,37003,1670368 +128848,234,1,104485,3239 +128849,234,1,81549,236655 +128850,317,10,1579,17655 +128851,289,6,13654,1447562 +128852,273,7,10863,7647 +128853,317,10,44001,13803 +128854,105,7,82654,7229 +128855,203,1,196359,1387267 +128856,413,11,158739,1075786 +128857,317,10,43808,1072714 +128858,208,2,116463,1318185 +128859,373,7,332567,1537463 +128860,317,10,79362,586672 +128861,234,1,286789,223791 +128862,3,5,4974,4404 +128863,234,1,177271,1159663 +128864,304,10,63414,1663537 +128865,158,2,9613,1529011 +128866,413,11,12447,21271 +128867,3,5,428687,501226 +128868,234,1,63348,116431 +128869,3,5,343369,1725759 +128870,234,1,19610,13861 +128871,317,10,25450,183575 +128872,289,6,10693,57314 +128873,5,10,30496,1751355 +128874,317,10,187010,562583 +128875,317,10,128637,217632 +128876,376,10,82448,232123 +128877,381,9,132363,1407729 +128878,180,7,17136,120033 +128879,123,3,297762,1236448 +128880,210,9,263115,1821931 +128881,333,2,41283,1414541 +128882,286,3,158598,1042789 +128883,317,10,310001,1046142 +128884,273,7,16313,1176814 +128885,105,7,54111,553842 +128886,317,10,360606,64731 +128887,234,1,246320,41878 +128888,52,10,77625,17167 +128889,60,1,17295,1439884 +128890,277,3,17744,13323 +128891,250,11,243935,1403506 +128892,317,10,51357,8635 +128893,413,11,2637,3189 +128894,204,9,12276,551534 +128895,302,9,109391,1414050 +128896,53,2,68684,969859 +128897,77,10,38602,166244 +128898,234,1,47561,19244 +128899,413,11,270672,1400680 +128900,234,1,89330,992858 +128901,180,7,106573,8628 +128902,219,11,11812,1562248 +128903,269,9,402446,958242 +128904,317,10,369697,77815 +128905,317,10,27196,96412 +128906,204,9,47310,9062 +128907,376,10,42418,71760 +128908,317,10,49084,133398 +128909,235,5,240832,1412920 +128910,289,6,1381,1447146 +128911,317,10,9540,224 +128912,273,7,56435,4416 +128913,413,11,12450,64060 +128914,234,1,149509,59291 +128915,317,10,218329,170142 +128916,387,10,7233,52115 +128917,269,9,70670,1123792 +128918,208,2,373546,1423683 +128919,92,7,75229,574200 +128920,387,10,88583,190840 +128921,234,1,71996,67753 +128922,413,11,62764,56519 +128923,3,5,63401,24854 +128924,234,1,20372,224783 +128925,148,9,169881,1519287 +128926,234,1,73772,107736 +128927,53,2,3595,6192 +128928,148,9,62397,1538500 +128929,204,9,43546,9062 +128930,148,9,9841,59816 +128931,234,1,163018,1120000 +128932,204,9,87516,960673 +128933,66,11,98066,1719411 +128934,317,10,23223,190112 +128935,234,1,288438,1335312 +128936,3,5,102841,3351 +128937,234,1,55735,292876 +128938,413,11,43817,66732 +128939,317,10,340187,1567535 +128940,75,5,22584,1632529 +128941,269,9,126958,1083435 +128942,317,10,19342,1409394 +128943,317,10,140648,6351 +128944,234,1,100063,1040919 +128945,53,2,139176,1353811 +128946,387,10,4254,35736 +128947,413,11,26936,554163 +128948,413,11,140276,13350 +128949,328,6,274857,1156674 +128950,269,9,505,6921 +128951,333,2,817,14192 +128952,190,7,2662,1603331 +128953,99,3,28170,35328 +128954,53,2,142984,60879 +128955,317,10,54111,939128 +128956,317,10,226269,1211636 +128957,148,9,11096,65754 +128958,387,10,48787,58384 +128959,287,3,15762,1485647 +128960,213,10,28268,1081300 +128961,387,10,257344,56728 +128962,234,1,43832,11435 +128963,196,7,381015,1828372 +128964,234,1,219335,1202099 +128965,234,1,20941,46085 +128966,196,7,28090,83087 +128967,187,11,13493,1401358 +128968,269,9,10748,53526 +128969,333,2,10740,1330612 +128970,234,1,23178,51373 +128971,360,3,228970,20483 +128972,273,7,354979,1775972 +128973,234,1,291270,202 +128974,179,2,59296,1460358 +128975,317,10,226163,1211583 +128976,398,9,46261,1425374 +128977,204,9,356752,1842004 +128978,148,9,15143,39110 +128979,3,5,203833,10573 +128980,148,9,15697,21873 +128981,3,5,5551,356 +128982,289,6,257344,1473415 +128983,289,6,53178,11426 +128984,262,6,10070,1358021 +128985,3,5,74430,14094 +128986,317,10,41077,56302 +128987,127,3,384737,1821523 +128988,317,10,105077,77213 +128989,333,2,9426,563116 +128990,234,1,12220,3026 +128991,105,7,32532,41633 +128992,3,5,43783,137885 +128993,273,7,469,6394 +128994,317,10,179288,585272 +128995,387,10,186227,84237 +128996,394,7,338189,1559674 +128997,213,10,345438,211093 +128998,397,7,14430,1283157 +128999,148,9,302026,32880 +129000,148,9,239513,1389777 +129001,387,10,10333,14588 +129002,413,11,285858,1079613 +129003,196,7,9286,1031810 +129004,3,5,38955,65963 +129005,53,2,292625,1758592 +129006,269,9,187028,970107 +129007,413,11,329682,1038970 +129008,269,9,40130,1129789 +129009,75,5,348631,1865202 +129010,333,2,37719,10796 +129011,198,6,176,8911 +129012,5,10,51044,98751 +129013,387,10,52999,24485 +129014,262,6,263115,1757613 +129015,269,9,64499,81963 +129016,234,1,83995,67619 +129017,5,10,38950,45114 +129018,234,1,186869,64875 +129019,234,1,140846,729 +129020,413,11,13437,59870 +129021,419,10,86236,12415 +129022,53,2,59962,960323 +129023,37,3,102362,1460603 +129024,74,5,664,1892491 +129025,234,1,30298,4081 +129026,387,10,63190,105120 +129027,332,8,109451,1453938 +129028,289,6,9514,1642542 +129029,225,7,10066,1392084 +129030,413,11,18776,8621 +129031,3,5,772,11506 +129032,394,7,1966,47817 +129033,213,10,17630,82115 +129034,317,10,77246,1550573 +129035,387,10,8965,200014 +129036,6,3,8916,1780716 +129037,269,9,77794,6605 +129038,97,7,693,1586640 +129039,269,9,55612,1027593 +129040,234,1,2009,20657 +129041,204,9,9948,60731 +129042,3,5,31867,17598 +129043,196,7,1991,1414549 +129044,75,5,333354,1403565 +129045,5,10,42418,128100 +129046,196,7,264525,1568917 +129047,5,10,80775,1086434 +129048,333,2,223485,1457305 +129049,234,1,24005,26134 +129050,317,10,25998,1178904 +129051,53,2,35284,553803 +129052,234,1,14142,111414 +129053,204,9,10671,40170 +129054,273,7,4291,636 +129055,3,5,38715,1265586 +129056,3,5,12477,72420 +129057,413,11,103689,50559 +129058,148,9,1272,26194 +129059,273,7,705,8503 +129060,133,3,52440,145991 +129061,148,9,9950,60793 +129062,415,3,28063,25826 +129063,221,3,9472,1391600 +129064,314,2,329440,1409863 +129065,317,10,41551,62756 +129066,190,7,394645,1864631 +129067,3,5,392271,1756104 +129068,317,10,110323,84473 +129069,105,7,338312,1462231 +129070,105,7,15316,1107146 +129071,234,1,213683,228845 +129072,160,3,127585,9624 +129073,346,3,10204,1404873 +129074,234,1,13667,87565 +129075,148,9,102362,4909 +129076,148,9,140607,1325212 +129077,46,5,11618,1722373 +129078,75,5,311324,1658870 +129079,249,7,10999,1303184 +129080,234,1,48250,134219 +129081,346,3,13380,1428511 +129082,317,10,128598,970467 +129083,273,7,39219,5467 +129084,387,10,241742,1389040 +129085,287,3,224944,1642142 +129086,204,9,11003,32903 +129087,413,11,33364,1020770 +129088,60,1,13678,1297470 +129089,160,3,127585,1384390 +129090,317,10,356294,230426 +129091,189,3,74,1403418 +129092,317,10,85411,21279 +129093,250,11,374473,1650286 +129094,317,10,55156,548474 +129095,234,1,413337,1675349 +129096,317,10,49920,176794 +129097,234,1,14976,16294 +129098,273,7,25682,9204 +129099,317,10,124979,1289367 +129100,234,1,39519,35320 +129101,24,5,73835,1606284 +129102,289,6,205584,1585732 +129103,373,7,14,1345595 +129104,234,1,369820,61440 +129105,413,11,2611,11372 +129106,53,2,1579,17675 +129107,234,1,55208,556912 +129108,387,10,270774,1601945 +129109,413,11,51209,17115 +129110,203,1,28452,1643878 +129111,286,3,127728,1085648 +129112,5,10,14537,560321 +129113,53,2,300596,962756 +129114,25,2,18843,1384361 +129115,269,9,31442,1580045 +129116,234,1,146313,111772 +129117,105,7,19610,172365 +129118,105,7,9451,24190 +129119,273,7,10657,9152 +129120,3,5,10748,68333 +129121,317,10,103640,147709 +129122,204,9,229610,4349 +129123,387,10,4147,35021 +129124,179,2,105,1432044 +129125,317,10,82157,591221 +129126,52,10,177677,9033 +129127,3,5,91480,1498 +129128,53,2,156700,957249 +129129,182,8,378018,1762258 +129130,234,1,79151,46325 +129131,87,7,258480,52161 +129132,234,1,313896,1276771 +129133,413,11,300187,23926 +129134,234,1,305932,1389033 +129135,129,11,12,8 +129136,268,7,203833,1406189 +129137,387,10,107146,157849 +129138,360,3,10916,1402107 +129139,262,6,76163,1437714 +129140,333,2,82448,927989 +129141,250,11,274479,1403488 +129142,317,10,146243,1123885 +129143,204,9,82990,1178366 +129144,105,7,280840,405 +129145,413,11,1420,12685 +129146,346,3,5,1622121 +129147,235,5,132363,1407738 +129148,239,5,284289,1532609 +129149,301,5,46261,1394768 +129150,234,1,2169,22175 +129151,387,10,39413,25183 +129152,413,11,2778,1531 +129153,413,11,12707,6491 +129154,289,6,140607,1550759 +129155,317,10,60316,83784 +129156,234,1,77022,2106 +129157,333,2,194393,14056 +129158,269,9,341689,36205 +129159,232,10,81120,591014 +129160,413,11,152100,1688242 +129161,60,1,2503,1471947 +129162,269,9,40466,1760123 +129163,33,10,15472,1731246 +129164,325,5,183412,1419641 +129165,226,2,14,1444908 +129166,179,2,75622,1324794 +129167,53,2,412202,1000449 +129168,234,1,86700,933503 +129169,262,6,39845,1336716 +129170,28,9,18,1546177 +129171,234,1,38718,23393 +129172,286,3,49787,1316851 +129173,198,6,257088,114715 +129174,234,1,12645,67813 +129175,317,10,142499,1117466 +129176,317,10,60965,232032 +129177,357,3,58244,1412593 +129178,234,1,72592,566672 +129179,53,2,83015,1313993 +129180,143,7,10929,1441250 +129181,234,1,310135,1397786 +129182,148,9,21734,12348 +129183,234,1,100910,64114 +129184,53,2,82654,12040 +129185,268,7,325173,1249408 +129186,413,11,9079,14339 +129187,300,3,4147,1558221 +129188,187,11,8617,1377127 +129189,373,7,11096,113073 +129190,127,3,163,1727309 +129191,333,2,12102,1458527 +129192,226,2,19101,1418528 +129193,5,10,82098,1278964 +129194,60,1,154442,138041 +129195,64,6,209032,1192405 +129196,273,7,78028,1760 +129197,72,11,88273,1586288 +129198,286,3,101669,975143 +129199,45,9,18,1335179 +129200,3,5,104430,14284 +129201,5,10,11004,67758 +129202,387,10,10534,16829 +129203,317,10,125926,3857 +129204,148,9,121923,1178593 +129205,234,1,2144,21981 +129206,3,5,184741,3356 +129207,394,7,14181,9408 +129208,234,1,31911,2239 +129209,387,10,16164,56960 +129210,413,11,11577,69955 +129211,234,1,27886,1039408 +129212,317,10,142656,1530374 +129213,317,10,14809,1004924 +129214,413,11,12122,27583 +129215,273,7,42619,10771 +129216,399,9,10020,1615285 +129217,160,3,544,12772 +129218,204,9,369885,1342382 +129219,262,6,255343,1402249 +129220,234,1,84626,1075780 +129221,234,1,102144,34740 +129222,273,7,11943,39998 +129223,301,5,16921,95640 +129224,127,3,949,15850 +129225,182,8,251227,1286582 +129226,164,3,274857,1551791 +129227,269,9,922,15427 +129228,60,1,9514,1642500 +129229,387,10,3061,29982 +129230,317,10,255772,1341967 +129231,204,9,24452,28236 +129232,287,3,19901,56504 +129233,234,1,115565,72427 +129234,52,10,34652,97287 +129235,387,10,1404,15490 +129236,317,10,41211,142983 +129237,234,1,2195,18710 +129238,203,1,254918,1401164 +129239,190,7,413421,1785029 +129240,234,1,25898,131406 +129241,394,7,31911,1389134 +129242,269,9,15019,582928 +129243,234,1,23069,94787 +129244,333,2,31542,1589507 +129245,269,9,210910,1350851 +129246,53,2,206514,1189052 +129247,204,9,262528,120193 +129248,317,10,151043,214631 +129249,333,2,14979,957202 +129250,3,5,377170,13972 +129251,413,11,256347,13673 +129252,398,9,11247,1322017 +129253,3,5,206647,74401 +129254,234,1,41604,66224 +129255,387,10,11899,67649 +129256,387,10,23397,6939 +129257,182,8,44363,1402169 +129258,204,9,149793,31969 +129259,317,10,24746,116653 +129260,234,1,163791,91455 +129261,387,10,13196,72554 +129262,60,1,116463,1691476 +129263,53,2,22584,8717 +129264,234,1,51049,21377 +129265,198,6,315837,1797230 +129266,234,1,341745,221465 +129267,148,9,48609,9799 +129268,105,7,76829,10934 +129269,104,7,3172,1553265 +129270,413,11,392271,1756105 +129271,269,9,336882,1398242 +129272,105,7,28340,1181681 +129273,234,1,273578,80678 +129274,197,5,9352,1804884 +129275,387,10,109472,1046565 +129276,204,9,6591,1120805 +129277,317,10,261871,1305384 +129278,45,9,11521,1413149 +129279,52,10,311324,9181 +129280,219,11,27265,13223 +129281,287,3,29343,97724 +129282,317,10,39276,30464 +129283,85,10,354287,1781231 +129284,387,10,43894,26159 +129285,181,7,1579,42034 +129286,122,8,10320,1815438 +129287,105,7,44945,2863 +129288,234,1,186079,1168791 +129289,394,7,293660,113054 +129290,413,11,1428,2294 +129291,204,9,70981,34005 +129292,273,7,69668,4500 +129293,234,1,1165,3224 +129294,286,3,13834,45535 +129295,203,1,21927,1416957 +129296,273,7,78177,20836 +129297,373,7,403867,1723497 +129298,234,1,26736,107658 +129299,105,7,331313,567205 +129300,3,5,94182,14569 +129301,273,7,2075,10536 +129302,105,7,33586,7657 +129303,3,5,8340,1566433 +129304,105,7,32068,7182 +129305,158,2,9475,1534951 +129306,160,3,116463,1533714 +129307,83,2,924,1364792 +129308,373,7,243935,1414935 +129309,234,1,12407,1270 +129310,317,10,48281,1894627 +129311,53,2,79521,8717 +129312,3,5,353686,63099 +129313,413,11,9428,1809 +129314,105,7,142320,24286 +129315,317,10,279090,39588 +129316,387,10,2977,29230 +129317,87,7,11511,91142 +129318,413,11,81475,6245 +129319,245,3,337876,1886205 +129320,317,10,82737,113337 +129321,277,3,293625,1588198 +129322,333,2,13505,112656 +129323,398,9,1966,1398080 +129324,317,10,33356,30309 +129325,238,7,381015,1828374 +129326,179,2,340101,1580461 +129327,413,11,168027,2241 +129328,234,1,201633,1050201 +129329,413,11,43912,9154 +129330,289,6,1381,1447144 +129331,179,2,37534,1529457 +129332,204,9,43997,1325904 +129333,269,9,64972,39110 +129334,387,10,1924,3083 +129335,286,3,357106,98969 +129336,234,1,11104,12453 +129337,3,5,53714,12720 +129338,349,1,35,1447473 +129339,12,10,126889,5045 +129340,387,10,116312,37493 +129341,277,3,3780,1384148 +129342,269,9,2662,986334 +129343,103,6,356752,1616467 +129344,208,2,322922,1321920 +129345,52,10,27443,34204 +129346,148,9,13380,1753058 +129347,105,7,14019,76279 +129348,234,1,69605,46712 +129349,234,1,15414,1339342 +129350,273,7,296941,1457041 +129351,234,1,300654,1115958 +129352,317,10,79596,587535 +129353,303,3,21843,88024 +129354,273,7,135679,1103537 +129355,64,6,86126,1306119 +129356,219,11,3597,1552549 +129357,52,10,10193,7 +129358,204,9,52894,35166 +129359,234,1,10389,21905 +129360,387,10,39413,37633 +129361,175,5,37936,1707452 +129362,181,7,93856,1335146 +129363,53,2,20473,957875 +129364,77,10,16550,66605 +129365,387,10,182499,13927 +129366,234,1,252144,83467 +129367,232,10,269494,108536 +129368,198,6,228066,1574078 +129369,413,11,393732,310 +129370,269,9,7548,33444 +129371,175,5,200505,161159 +129372,234,1,360924,1670908 +129373,53,2,10389,1300912 +129374,3,5,662,9957 +129375,333,2,180305,1453132 +129376,5,10,51434,81271 +129377,317,10,81538,1156408 +129378,67,10,80125,58280 +129379,317,10,439998,1420168 +129380,141,7,46368,68016 +129381,273,7,57230,1625934 +129382,273,7,13539,60628 +129383,234,1,266433,1359995 +129384,87,7,20312,1734496 +129385,333,2,19936,1304334 +129386,234,1,5,138 +129387,317,10,327982,1099999 +129388,53,2,15036,1873050 +129389,317,10,85377,1136946 +129390,53,2,9966,61129 +129391,158,2,333663,1709178 +129392,23,9,102629,935300 +129393,209,7,549,1532409 +129394,317,10,31342,961023 +129395,317,10,148615,15658 +129396,3,5,337014,1377806 +129397,53,2,21338,1149101 +129398,234,1,277190,1111685 +129399,213,10,53766,148800 +129400,387,10,17658,54675 +129401,160,3,338189,92235 +129402,113,9,2300,1870668 +129403,245,3,189,995348 +129404,52,10,31773,133729 +129405,148,9,137145,1542301 +129406,387,10,33025,148562 +129407,262,6,9946,1401362 +129408,204,9,29376,9062 +129409,53,2,17956,14042 +129410,373,7,9946,1394130 +129411,105,7,144229,57892 +129412,3,5,27629,3356 +129413,317,10,123074,210161 +129414,3,5,690,10349 +129415,234,1,53231,10790 +129416,87,7,285,5132 +129417,60,1,3085,1312730 +129418,413,11,79113,21794 +129419,328,6,9358,1441323 +129420,387,10,8951,56845 +129421,317,10,84479,930778 +129422,413,11,85414,1333160 +129423,148,9,79372,9063 +129424,333,2,13505,223992 +129425,317,10,65545,1195752 +129426,415,3,74911,12344 +129427,5,10,31555,108998 +129428,269,9,27480,1185067 +129429,187,11,297702,1367161 +129430,234,1,78854,67164 +129431,273,7,141955,14861 +129432,158,2,42418,1426858 +129433,53,2,214938,1597063 +129434,273,7,43832,4082 +129435,413,11,32532,553075 +129436,166,9,210913,1405251 +129437,60,1,31672,1542052 +129438,387,10,9403,58098 +129439,67,10,15213,1730456 +129440,234,1,42418,18254 +129441,234,1,33065,108107 +129442,273,7,33673,5467 +129443,273,7,261246,70588 +129444,413,11,20623,961332 +129445,53,2,124470,1448293 +129446,317,10,340584,557179 +129447,160,3,8204,1725884 +129448,327,7,14145,1416983 +129449,3,5,12650,68909 +129450,21,3,31995,103736 +129451,398,9,169,1877160 +129452,234,1,301368,1533186 +129453,394,7,185460,1403861 +129454,387,10,113525,216949 +129455,269,9,227975,1010763 +129456,269,9,322922,1421796 +129457,113,9,283995,1680435 +129458,289,6,102161,113285 +129459,234,1,31161,83524 +129460,204,9,15092,1008115 +129461,387,10,10394,65037 +129462,20,2,369885,1546745 +129463,97,7,76170,1367493 +129464,289,6,12230,63646 +129465,3,5,37710,2702 +129466,234,1,46184,100793 +129467,3,5,10436,3769 +129468,3,5,366045,1590696 +129469,2,6,14,1585014 +129470,5,10,19757,8453 +129471,213,10,364833,1525326 +129472,269,9,196235,60106 +129473,234,1,27681,226552 +129474,3,5,395992,3285 +129475,394,7,278632,1350237 +129476,204,9,24973,10604 +129477,52,10,92716,101887 +129478,273,7,167935,1170637 +129479,12,10,98566,19503 +129480,317,10,27740,3027 +129481,387,10,103938,1172616 +129482,234,1,85052,14086 +129483,269,9,39001,6480 +129484,234,1,394668,1611356 +129485,175,5,329805,1621907 +129486,397,7,1568,17632 +129487,333,2,43522,4128 +129488,234,1,20432,225899 +129489,79,7,43828,41747 +129490,105,7,18595,551482 +129491,394,7,954,572622 +129492,317,10,356161,145675 +129493,187,11,42309,545806 +129494,387,10,1966,20294 +129495,273,7,39495,7182 +129496,287,3,73247,60261 +129497,53,2,124054,113779 +129498,387,10,21135,15189 +129499,75,5,11096,1400535 +129500,234,1,9030,56736 +129501,387,10,76686,32835 +129502,202,7,46387,1310478 +129503,387,10,177677,9033 +129504,234,1,381255,1186095 +129505,387,10,110540,1012037 +129506,176,3,76203,1393434 +129507,18,2,318553,1647028 +129508,204,9,19403,14097 +129509,169,3,84226,1418434 +129510,234,1,3089,11435 +129511,237,7,9902,1355878 +129512,234,1,116340,1063311 +129513,53,2,31509,1562885 +129514,158,2,1073,1378766 +129515,413,11,8951,56847 +129516,217,3,1976,571175 +129517,234,1,75336,57641 +129518,72,11,9946,1432026 +129519,3,5,16659,1095 +129520,388,9,2924,1803765 +129521,317,10,364111,1257117 +129522,289,6,58159,225709 +129523,317,10,74561,122741 +129524,387,10,210940,1420773 +129525,387,10,7353,52606 +129526,203,1,296524,1473814 +129527,317,10,359255,133405 +129528,333,2,43596,1546260 +129529,273,7,31021,1609222 +129530,158,2,157847,1372213 +129531,234,1,401895,53943 +129532,317,10,130948,1298932 +129533,234,1,366143,1024175 +129534,317,10,43759,223392 +129535,53,2,11897,11491 +129536,317,10,110447,105866 +129537,52,10,69217,110834 +129538,60,1,340176,1711429 +129539,387,10,79316,1273949 +129540,234,1,131478,81749 +129541,148,9,46286,1563892 +129542,204,9,284052,1326460 +129543,373,7,14126,1409220 +129544,234,1,49954,143081 +129545,387,10,6023,2163 +129546,269,9,7326,39038 +129547,387,10,10973,67687 +129548,387,10,424014,1710007 +129549,147,1,379019,1780145 +129550,53,2,40085,960362 +129551,52,10,46403,592998 +129552,3,5,10795,66842 +129553,269,9,118536,94166 +129554,204,9,27622,9062 +129555,317,10,33025,10601 +129556,301,5,14476,1411671 +129557,143,7,10201,1408301 +129558,3,5,83015,31292 +129559,234,1,43470,33062 +129560,196,7,227306,1377293 +129561,286,3,24486,8934 +129562,262,6,10674,1447576 +129563,413,11,11313,33438 +129564,314,2,8467,1546085 +129565,175,5,226140,1377418 +129566,387,10,190853,563356 +129567,131,7,8470,1094388 +129568,3,5,94365,217011 +129569,77,10,6977,51736 +129570,52,10,52859,126544 +129571,317,10,19918,1061060 +129572,387,10,31078,4137 +129573,234,1,190940,116143 +129574,165,9,9819,1879199 +129575,64,6,24831,7727 +129576,196,7,245703,1412984 +129577,234,1,46069,97202 +129578,77,10,125510,126260 +129579,234,1,387399,138775 +129580,234,1,261036,87672 +129581,53,2,24625,19971 +129582,387,10,15067,84715 +129583,273,7,40761,56928 +129584,234,1,36175,128476 +129585,269,9,284053,1373 +129586,413,11,99846,19409 +129587,387,10,149870,608 +129588,5,10,23397,6939 +129589,97,7,343173,1337413 +129590,286,3,70695,68441 +129591,360,3,9946,1390522 +129592,53,2,418437,1319382 +129593,3,5,19912,22818 +129594,387,10,107443,11993 +129595,387,10,21959,185 +129596,148,9,5915,1377218 +129597,289,6,98566,1459766 +129598,273,7,277237,1512675 +129599,81,3,9946,1767309 +129600,317,10,9793,5140 +129601,234,1,24874,92779 +129602,317,10,79836,131683 +129603,75,5,9514,1642517 +129604,413,11,26119,19244 +129605,234,1,203351,583932 +129606,317,10,53805,229270 +129607,234,1,297263,97579 +129608,387,10,14400,52344 +129609,269,9,9648,61631 +129610,53,2,33586,61318 +129611,301,5,418437,1149583 +129612,5,10,278939,14971 +129613,148,9,580,1261 +129614,234,1,395914,1614736 +129615,3,5,64225,24822 +129616,166,9,9423,1389588 +129617,328,6,76757,1194087 +129618,207,3,7299,1394986 +129619,53,2,6687,19897 +129620,53,2,110598,8885 +129621,160,3,20312,1424458 +129622,413,11,76163,67560 +129623,381,9,13092,1393558 +129624,221,3,2321,142168 +129625,105,7,118957,1402729 +129626,387,10,267935,9964 +129627,413,11,91571,14235 +129628,175,5,51311,1402718 +129629,234,1,75761,58245 +129630,346,3,15940,1408850 +129631,204,9,15849,935682 +129632,269,9,62397,1120805 +129633,3,5,4476,2483 +129634,160,3,132363,550473 +129635,413,11,57412,81285 +129636,234,1,320005,1427193 +129637,269,9,14047,437 +129638,273,7,96411,233719 +129639,317,10,427409,1713205 +129640,209,7,435,6062 +129641,273,7,33472,34015 +129642,204,9,116711,1208001 +129643,333,2,60269,1605169 +129644,127,3,122,1447518 +129645,262,6,18,1415630 +129646,15,6,209112,1661325 +129647,148,9,25941,1327791 +129648,317,10,32323,8635 +129649,317,10,37708,984135 +129650,3,5,296225,1437223 +129651,148,9,49308,1351628 +129652,317,10,291413,1338249 +129653,411,9,329865,8704 +129654,317,10,245169,209819 +129655,273,7,9543,5553 +129656,415,3,102155,1419937 +129657,3,5,122019,11968 +129658,52,10,31411,97389 +129659,317,10,97707,6818 +129660,5,10,63304,1282152 +129661,387,10,5183,136149 +129662,273,7,29786,29056 +129663,148,9,2604,12131 +129664,46,5,14019,76273 +129665,301,5,2454,1394072 +129666,53,2,2924,10678 +129667,196,7,325173,1579007 +129668,273,7,62330,15193 +129669,5,10,2274,23484 +129670,3,5,31167,33413 +129671,238,7,10796,548437 +129672,317,10,14518,58024 +129673,234,1,300487,102548 +129674,60,1,36245,37495 +129675,234,1,58402,49892 +129676,317,10,15321,36083 +129677,413,11,39519,3449 +129678,105,7,65496,543846 +129679,53,2,285245,1424647 +129680,234,1,47011,15191 +129681,317,10,263065,146666 +129682,346,3,2503,1406792 +129683,413,11,88288,133435 +129684,317,10,84348,1061519 +129685,234,1,48846,29433 +129686,3,5,65904,1182648 +129687,234,1,46572,67924 +129688,387,10,9563,1152 +129689,143,7,13042,8078 +129690,268,7,10665,1423861 +129691,164,3,11024,1597190 +129692,317,10,162877,558637 +129693,387,10,338079,1206407 +129694,234,1,41166,64061 +129695,317,10,426264,172 +129696,209,7,19255,1427381 +129697,226,2,339403,1635162 +129698,3,5,41312,30923 +129699,387,10,811,12113 +129700,3,5,961,14411 +129701,234,1,108582,14569 +129702,234,1,16314,12962 +129703,18,2,693,1761059 +129704,3,5,203819,57849 +129705,234,1,81576,31409 +129706,83,2,9902,558227 +129707,155,3,522,103080 +129708,285,5,2662,1603312 +129709,221,3,773,1552020 +129710,204,9,17057,1174632 +129711,148,9,2998,8339 +129712,105,7,146679,1124591 +129713,53,2,290714,1503521 +129714,52,10,52949,48415 +129715,3,5,60086,1038285 +129716,3,5,1914,19917 +129717,53,2,336882,1151225 +129718,52,10,47694,20640 +129719,394,7,10008,112875 +129720,387,10,6591,50624 +129721,333,2,117120,1427498 +129722,52,10,42709,57908 +129723,327,7,388243,92957 +129724,293,2,302026,1570584 +129725,143,7,246655,113075 +129726,234,1,12449,72253 +129727,52,10,60807,1327329 +129728,203,1,11397,1468036 +129729,317,10,390880,1599401 +129730,413,11,244801,1111474 +129731,204,9,9982,61420 +129732,204,9,40916,9062 +129733,204,9,284289,1018092 +129734,204,9,28482,1272077 +129735,273,7,580,6357 +129736,148,9,41213,1602073 +129737,332,8,227973,1455462 +129738,317,10,156603,1399672 +129739,3,5,18613,957150 +129740,399,9,10198,1615580 +129741,3,5,30669,94545 +129742,317,10,39907,1649571 +129743,394,7,36094,16639 +129744,317,10,117499,1029082 +129745,406,6,76757,1463182 +129746,317,10,443319,1257144 +129747,204,9,34806,963843 +129748,5,10,11329,11060 +129749,196,7,122019,1063528 +129750,387,10,41505,28399 +129751,413,11,7220,60706 +129752,60,1,246415,1439418 +129753,209,7,16996,1367676 +129754,387,10,2047,21075 +129755,75,5,17295,1588524 +129756,209,7,264553,1332309 +129757,413,11,28363,100578 +129758,234,1,41969,82505 +129759,164,3,343173,1742979 +129760,234,1,31083,52405 +129761,413,11,52150,575456 +129762,333,2,19995,29067 +129763,148,9,307081,1145972 +129764,413,11,29449,13488 +129765,273,7,13073,2863 +129766,75,5,346672,592772 +129767,234,1,37084,39009 +129768,413,11,41591,126996 +129769,413,11,4286,32053 +129770,234,1,37910,74091 +129771,333,2,19719,85112 +129772,3,5,258480,6345 +129773,53,2,1561,36998 +129774,77,10,14292,84340 +129775,60,1,52454,1097192 +129776,51,9,435,1084413 +129777,413,11,184098,57769 +129778,333,2,242224,1428870 +129779,209,7,203833,21122 +129780,3,5,246403,960350 +129781,317,10,439998,1052203 +129782,12,10,92848,1072714 +129783,317,10,433082,1513415 +129784,190,7,11618,1737829 +129785,234,1,53423,13848 +129786,268,7,255343,1512770 +129787,105,7,1833,283 +129788,388,9,302699,1729092 +129789,234,1,122435,102668 +129790,234,1,61813,225065 +129791,317,10,82999,557359 +129792,166,9,46738,1466745 +129793,365,6,80276,231586 +129794,401,6,9982,1713406 +129795,239,5,9352,1586331 +129796,219,11,11377,1429549 +129797,273,7,42242,14930 +129798,317,10,26688,68770 +129799,203,1,278348,1611980 +129800,289,6,399106,1455510 +129801,234,1,43228,51767 +129802,198,6,435,1574664 +129803,317,10,38061,119509 +129804,289,6,13355,1457214 +129805,381,9,9882,1407014 +129806,3,5,118984,75553 +129807,273,7,63190,27181 +129808,387,10,9593,57910 +129809,187,11,24619,92606 +129810,234,1,5393,133293 +129811,77,10,866,13002 +129812,234,1,7299,13927 +129813,394,7,205587,21103 +129814,327,7,325263,1636522 +129815,234,1,61548,72624 +129816,387,10,43967,12180 +129817,52,10,10872,1483063 +129818,234,1,28417,100742 +129819,269,9,65599,61500 +129820,387,10,11953,5026 +129821,286,3,200324,9049 +129822,413,11,34459,375 +129823,234,1,337751,96222 +129824,3,5,1986,6545 +129825,45,9,10204,40754 +129826,204,9,318553,1647026 +129827,148,9,36094,15223 +129828,182,8,55846,1404869 +129829,75,5,245891,1512743 +129830,262,6,773,1432039 +129831,234,1,115283,60707 +129832,127,3,3172,1553258 +129833,213,10,71067,105450 +129834,394,7,245700,40814 +129835,3,5,10753,66617 +129836,269,9,369894,9269 +129837,97,7,375366,16887 +129838,317,10,273481,1215399 +129839,413,11,27019,73154 +129840,234,1,107976,83016 +129841,77,10,13280,74357 +129842,196,7,15613,1442507 +129843,53,2,37633,579047 +129844,53,2,22477,6348 +129845,3,5,31162,23438 +129846,234,1,106635,81165 +129847,189,3,16921,1401771 +129848,373,7,251,154 +129849,340,2,109439,1377134 +129850,411,9,44943,9639 +129851,317,10,284306,1497981 +129852,328,6,356500,1756296 +129853,92,7,60599,1400496 +129854,413,11,524,3661 +129855,74,5,5,1708344 +129856,413,11,172847,1155551 +129857,333,2,35021,46269 +129858,203,1,11351,1492941 +129859,203,1,332354,1149058 +129860,66,11,210653,1382042 +129861,273,7,2034,9989 +129862,387,10,76493,6730 +129863,234,1,22881,54040 +129864,412,9,10727,1584234 +129865,208,2,360249,1336928 +129866,86,3,19142,15831 +129867,413,11,229,2920 +129868,5,10,11298,68912 +129869,317,10,64499,82337 +129870,53,2,11377,14352 +129871,3,5,19740,10005 +129872,397,7,39130,27969 +129873,234,1,145593,1114557 +129874,179,2,271404,1764798 +129875,317,10,268174,1316665 +129876,105,7,47194,1247723 +129877,108,10,17590,13019 +129878,158,2,19255,1325583 +129879,234,1,258353,110468 +129880,413,11,186971,1068048 +129881,387,10,14073,78751 +129882,273,7,4285,36004 +129883,105,7,47046,1601525 +129884,273,7,60420,233130 +129885,234,1,73160,929727 +129886,234,1,74911,103931 +129887,3,5,29398,7509 +129888,317,10,65839,1289780 +129889,373,7,2172,1100809 +129890,3,5,1415,32603 +129891,387,10,8665,20293 +129892,3,5,72984,52047 +129893,323,10,35016,113596 +129894,203,1,8467,58809 +129895,52,10,262841,57743 +129896,3,5,703,3097 +129897,3,5,42325,103364 +129898,174,6,8470,548450 +129899,148,9,834,12384 +129900,3,5,13794,1439907 +129901,3,5,173456,103020 +129902,234,1,84355,90492 +129903,3,5,43155,16750 +129904,317,10,291336,1362168 +129905,387,10,27621,87581 +129906,234,1,27460,29078 +129907,219,11,8869,1552549 +129908,413,11,31773,103485 +129909,234,1,8985,41040 +129910,317,10,58447,1015998 +129911,324,3,327749,355 +129912,413,11,253337,1308183 +129913,413,11,21191,4869 +129914,317,10,279606,1236075 +129915,273,7,623,8933 +129916,3,5,8276,54287 +129917,273,7,43903,30268 +129918,413,11,815,14769 +129919,155,3,18094,1704 +129920,200,3,257088,1371100 +129921,105,7,41604,129809 +129922,213,10,20213,27905 +129923,204,9,122928,110628 +129924,317,10,49322,1894442 +129925,209,7,25376,1607060 +129926,3,5,8906,4630 +129927,234,1,292033,96001 +129928,53,2,382501,20722 +129929,317,10,376188,932931 +129930,413,11,128216,958641 +129931,273,7,76651,11555 +129932,269,9,9819,5329 +129933,180,7,95015,1099567 +129934,72,11,340275,1732093 +129935,127,3,238,51302 +129936,234,1,45714,43792 +129937,234,1,270403,19942 +129938,161,6,338189,1646579 +129939,273,7,242631,3249 +129940,273,7,31915,2027 +129941,317,10,301228,1429200 +129942,234,1,361380,1514585 +129943,234,1,40744,58861 +129944,286,3,155128,1086922 +129945,60,1,1673,940683 +129946,317,10,93263,590392 +129947,72,11,9457,1407685 +129948,317,10,39436,1616988 +129949,204,9,43379,1567997 +129950,51,9,18,1881561 +129951,418,11,9314,1749143 +129952,75,5,70981,8673 +129953,53,2,72602,960153 +129954,62,3,87827,1355894 +129955,234,1,289278,69646 +129956,234,1,30149,81210 +129957,413,11,58372,7493 +129958,234,1,42614,145605 +129959,320,3,74,1868840 +129960,387,10,108365,1043952 +129961,234,1,292656,236856 +129962,273,7,172385,11098 +129963,113,9,6947,1389555 +129964,413,11,939,14285 +129965,87,7,312831,1202530 +129966,328,6,9425,1421724 +129967,317,10,374883,222316 +129968,105,7,51739,548755 +129969,273,7,2604,491 +129970,413,11,15873,1284604 +129971,394,7,177155,454855 +129972,317,10,26358,49875 +129973,3,5,47536,26267 +129974,245,3,20132,8311 +129975,234,1,83732,930012 +129976,53,2,261037,1179842 +129977,234,1,99579,229263 +129978,413,11,341886,1407236 +129979,278,6,9593,1551515 +129980,3,5,239519,2654 +129981,234,1,343369,78860 +129982,180,7,29959,961298 +129983,387,10,55343,1154771 +129984,234,1,36919,115318 +129985,413,11,158900,74403 +129986,75,5,1902,19844 +129987,273,7,9514,57805 +129988,204,9,258480,16494 +129989,148,9,46623,10010 +129990,296,3,186869,1862932 +129991,203,1,5289,1409751 +129992,413,11,245706,7230 +129993,234,1,40217,35475 +129994,175,5,122081,1719414 +129995,234,1,63326,64278 +129996,179,2,45019,1550205 +129997,52,10,40490,73570 +129998,143,7,10796,1407812 +129999,234,1,385114,1584424 +130000,52,10,168676,45987 +130001,387,10,35026,35959 +130002,387,10,332079,49064 +130003,349,1,35,1447458 +130004,413,11,72912,1037913 +130005,269,9,291270,1536585 +130006,3,5,18682,1939 +130007,52,10,23739,5563 +130008,3,5,126090,1068335 +130009,273,7,24655,2027 +130010,387,10,88558,996686 +130011,196,7,106747,80826 +130012,387,10,7942,22224 +130013,413,11,14159,35773 +130014,176,3,203833,1406187 +130015,234,1,97683,26457 +130016,413,11,88641,9797 +130017,198,6,293660,1580857 +130018,234,1,47761,30052 +130019,45,9,8915,1399503 +130020,67,10,169934,1509979 +130021,273,7,40028,98138 +130022,273,7,23515,230094 +130023,234,1,47231,27954 +130024,333,2,86603,1567537 +130025,34,8,8619,1141636 +130026,273,7,146970,45670 +130027,373,7,12573,1395255 +130028,234,1,26514,83413 +130029,72,11,328111,1716005 +130030,250,11,13614,1610052 +130031,234,1,347328,1507573 +130032,387,10,86979,1299 +130033,327,7,19101,1565158 +130034,175,5,405473,1407866 +130035,413,11,12079,71329 +130036,387,10,35,165843 +130037,387,10,80280,586103 +130038,317,10,36243,46366 +130039,398,9,280617,1035399 +130040,413,11,71329,1605693 +130041,273,7,50838,19016 +130042,234,1,26366,57604 +130043,182,8,9426,1445983 +130044,179,2,7548,1317048 +130045,161,6,85350,1628089 +130046,317,10,65787,14646 +130047,3,5,40826,29320 +130048,160,3,244786,198799 +130049,269,9,76757,9344 +130050,53,2,72465,1735563 +130051,234,1,172673,1050201 +130052,207,3,262338,1410203 +130053,234,1,44669,4346 +130054,387,10,63281,1612382 +130055,413,11,6935,51515 +130056,387,10,42871,30491 +130057,317,10,24746,103999 +130058,373,7,10916,1402111 +130059,217,3,10590,1566272 +130060,75,5,7299,1393364 +130061,277,3,34106,1635246 +130062,234,1,135713,1103638 +130063,164,3,257088,1631412 +130064,413,11,45191,31867 +130065,387,10,28586,30969 +130066,413,11,71329,1605706 +130067,60,1,4024,1155128 +130068,234,1,25353,151175 +130069,3,5,51311,6826 +130070,317,10,31372,108014 +130071,373,7,337339,1394130 +130072,160,3,55846,1225721 +130073,148,9,46872,118445 +130074,204,9,263472,1571126 +130075,234,1,17009,13620 +130076,387,10,62764,133287 +130077,234,1,356461,236742 +130078,387,10,18908,89689 +130079,387,10,8816,56397 +130080,293,2,49009,1539309 +130081,75,5,76341,1318090 +130082,234,1,393407,2245 +130083,317,10,17483,81963 +130084,50,3,9902,1403403 +130085,234,1,44578,116306 +130086,232,10,140825,9740 +130087,77,10,9010,56571 +130088,387,10,8494,55273 +130089,72,11,88273,1640040 +130090,387,10,2984,13848 +130091,234,1,13616,125681 +130092,376,10,32058,1183991 +130093,234,1,22317,18254 +130094,234,1,70988,560039 +130095,87,7,15019,1555682 +130096,105,7,11531,9315 +130097,52,10,1995,11402 +130098,5,10,193387,1379211 +130099,413,11,71329,1158026 +130100,333,2,74,579077 +130101,234,1,44000,5629 +130102,360,3,52454,1403324 +130103,190,7,13056,1708230 +130104,204,9,31586,14349 +130105,75,5,2978,1563481 +130106,317,10,197849,19829 +130107,234,1,309820,1115712 +130108,105,7,15934,145227 +130109,60,1,17295,1090578 +130110,413,11,87516,5289 +130111,273,7,19157,1665715 +130112,387,10,2611,10965 +130113,286,3,56937,1005960 +130114,113,9,9902,1423211 +130115,387,10,38875,574069 +130116,349,1,35,1460481 +130117,317,10,319396,1210789 +130118,148,9,71859,5391 +130119,226,2,47921,1532474 +130120,317,10,42684,128636 +130121,53,2,9953,28162 +130122,13,1,25673,18740 +130123,204,9,31428,148824 +130124,387,10,21159,12415 +130125,387,10,319179,94208 +130126,413,11,325039,68636 +130127,388,9,6171,1426763 +130128,387,10,174751,33192 +130129,317,10,49500,1048402 +130130,160,3,16342,141358 +130131,399,9,17421,1447431 +130132,273,7,198062,1178365 +130133,53,2,10055,62587 +130134,286,3,42599,83135 +130135,403,10,228970,1263516 +130136,317,10,269795,89287 +130137,175,5,60855,69366 +130138,123,3,64047,71951 +130139,3,5,43868,89218 +130140,366,3,74,1788396 +130141,413,11,12536,63659 +130142,289,6,90001,1563395 +130143,187,11,9563,1392901 +130144,204,9,146521,1772146 +130145,66,11,3580,1538127 +130146,3,5,26643,96427 +130147,273,7,12085,1213 +130148,413,11,194104,70323 +130149,317,10,143144,1118343 +130150,15,6,70667,1448314 +130151,333,2,6068,1415333 +130152,182,8,322443,1409403 +130153,413,11,49524,1098 +130154,234,1,296029,1370766 +130155,234,1,13962,11809 +130156,234,1,76200,19069 +130157,234,1,31945,12114 +130158,387,10,11577,64065 +130159,234,1,179066,32427 +130160,148,9,3539,45871 +130161,5,10,24752,78322 +130162,387,10,281291,146712 +130163,317,10,27053,97253 +130164,87,7,186869,1862959 +130165,373,7,11607,1342626 +130166,317,10,24939,81460 +130167,234,1,4993,37360 +130168,3,5,92257,1166214 +130169,53,2,153854,1427959 +130170,413,11,47540,60627 +130171,64,6,22582,1451677 +130172,321,11,21671,1302086 +130173,269,9,27380,12018 +130174,360,3,9286,113032 +130175,387,10,6522,52054 +130176,273,7,2982,4681 +130177,292,3,10590,1321940 +130178,304,10,37645,58255 +130179,236,8,23966,1419803 +130180,209,7,8869,1384393 +130181,413,11,418990,1408987 +130182,148,9,6557,4909 +130183,306,7,107146,1588241 +130184,196,7,24750,1294437 +130185,317,10,348025,25950 +130186,41,3,857,1662380 +130187,127,3,1578,1636371 +130188,317,10,16177,21440 +130189,52,10,12273,142632 +130190,62,3,274857,1552789 +130191,3,5,59678,968858 +130192,387,10,60505,1192185 +130193,209,7,13380,1800144 +130194,75,5,274857,1402937 +130195,234,1,19244,82286 +130196,234,1,24767,69791 +130197,289,6,22752,148774 +130198,5,10,64605,124084 +130199,269,9,10950,42634 +130200,387,10,280690,1819971 +130201,250,11,34231,1432641 +130202,204,9,43875,11036 +130203,413,11,103332,17147 +130204,12,10,693,17870 +130205,198,6,369885,1638135 +130206,203,1,11880,1419613 +130207,105,7,20132,85706 +130208,234,1,16176,31439 +130209,328,6,333371,1636666 +130210,52,10,9032,204761 +130211,317,10,85883,120565 +130212,301,5,10632,1408354 +130213,387,10,11537,69771 +130214,204,9,9438,61538 +130215,234,1,8277,26971 +130216,317,10,80988,1360624 +130217,105,7,58918,1499987 +130218,262,6,329865,1402029 +130219,387,10,54256,88809 +130220,387,10,242240,229222 +130221,52,10,52736,1346592 +130222,3,5,655,1632 +130223,15,6,13600,1409237 +130224,5,10,221732,1084906 +130225,158,2,188826,1583212 +130226,289,6,62764,1463784 +130227,419,10,46806,85155 +130228,226,2,37628,1619440 +130229,3,5,8847,56075 +130230,234,1,155941,1137312 +130231,148,9,580,796 +130232,3,5,19971,31181 +130233,78,3,10590,91932 +130234,413,11,11899,57925 +130235,3,5,13792,75553 +130236,219,11,325803,1428044 +130237,317,10,62616,1170558 +130238,234,1,31042,118288 +130239,258,9,15213,1462613 +130240,234,1,44472,71082 +130241,333,2,11202,559902 +130242,317,10,112885,14677 +130243,127,3,4147,1558216 +130244,317,10,207021,131791 +130245,234,1,4254,35735 +130246,333,2,347945,1618783 +130247,317,10,188765,289472 +130248,317,10,58903,1944 +130249,317,10,655,15207 +130250,387,10,396643,1170143 +130251,317,10,2608,31141 +130252,317,10,140825,9791 +130253,204,9,17889,13290 +130254,37,3,214756,1460179 +130255,328,6,321303,1347880 +130256,5,10,7014,51833 +130257,105,7,41171,15813 +130258,273,7,30036,19096 +130259,234,1,8954,2589 +130260,12,10,153169,33027 +130261,413,11,26283,1131139 +130262,368,7,11351,91144 +130263,234,1,72204,143722 +130264,234,1,8491,16544 +130265,387,10,23048,212576 +130266,250,11,205584,1585745 +130267,317,10,36427,122961 +130268,413,11,179154,1169343 +130269,148,9,94182,1529471 +130270,317,10,30363,106157 +130271,87,7,353686,1547763 +130272,187,11,60599,1400495 +130273,143,7,57201,900 +130274,53,2,10063,19692 +130275,387,10,153169,1503 +130276,286,3,80276,230015 +130277,226,2,935,958468 +130278,3,5,48594,1741411 +130279,250,11,250066,1181371 +130280,387,10,9846,15175 +130281,239,5,333484,1552778 +130282,200,3,76163,1402714 +130283,189,3,6171,1426781 +130284,132,2,274479,1401606 +130285,269,9,381073,136900 +130286,143,7,313922,1582569 +130287,413,11,11302,6848 +130288,413,11,9966,21271 +130289,289,6,328111,1479522 +130290,234,1,317246,76864 +130291,53,2,310137,1302516 +130292,317,10,362703,113233 +130293,147,1,4547,1758614 +130294,269,9,298935,1389971 +130295,317,10,378446,230421 +130296,204,9,40804,196995 +130297,3,5,43868,98442 +130298,97,7,638,9446 +130299,413,11,11373,15261 +130300,160,3,8204,1611794 +130301,269,9,9296,20292 +130302,287,3,240832,1412913 +130303,234,1,447758,1221053 +130304,52,10,183073,67971 +130305,387,10,136368,1105683 +130306,234,1,137654,129921 +130307,52,10,42515,13594 +130308,203,1,34459,1569290 +130309,3,5,343921,88134 +130310,413,11,137381,1710371 +130311,413,11,412851,927436 +130312,234,1,119172,579313 +130313,277,3,294652,1654520 +130314,273,7,11376,34305 +130315,105,7,394645,223986 +130316,234,1,6391,55046 +130317,148,9,72847,1137341 +130318,200,3,177677,1403504 +130319,394,7,84577,1392940 +130320,357,3,19995,1483232 +130321,175,5,131343,1450093 +130322,244,3,9475,75805 +130323,413,11,315882,1103619 +130324,3,5,122348,137174 +130325,3,5,65674,100332 +130326,234,1,361018,1513532 +130327,204,9,458428,1820256 +130328,269,9,5955,959360 +130329,143,7,223485,1409297 +130330,269,9,123961,1417674 +130331,328,6,6972,1401732 +130332,53,2,51947,1650015 +130333,413,11,14181,63521 +130334,387,10,31044,138107 +130335,317,10,31945,17814 +130336,317,10,33333,81107 +130337,234,1,109018,70862 +130338,413,11,12236,72142 +130339,3,5,20301,13270 +130340,273,7,166221,1188042 +130341,317,10,91691,83263 +130342,234,1,266314,15663 +130343,262,6,9358,1425917 +130344,3,5,98349,1143 +130345,236,8,8915,1364799 +130346,105,7,16899,1316159 +130347,317,10,54396,938741 +130348,333,2,47942,1069709 +130349,234,1,232711,1770592 +130350,196,7,33005,1072968 +130351,325,5,332567,1421687 +130352,234,1,47703,9603 +130353,180,7,2300,1870705 +130354,149,6,55534,1577963 +130355,74,5,11547,1557594 +130356,269,9,69921,1420880 +130357,269,9,26422,1901701 +130358,3,5,36129,1853967 +130359,303,3,72431,1484211 +130360,409,7,437122,1755175 +130361,160,3,70074,131532 +130362,234,1,31863,52629 +130363,234,1,64568,43789 +130364,269,9,16806,1802 +130365,413,11,266373,30536 +130366,269,9,104471,11523 +130367,234,1,369603,1118682 +130368,273,7,25738,8619 +130369,3,5,244610,1401003 +130370,387,10,11777,3389 +130371,331,3,118,1855215 +130372,53,2,14505,22071 +130373,53,2,50329,10524 +130374,234,1,315439,126809 +130375,105,7,314389,225318 +130376,143,7,329135,1341226 +130377,314,2,209263,1531498 +130378,75,5,95516,1411132 +130379,286,3,72949,1687846 +130380,234,1,1817,5572 +130381,286,3,31984,591018 +130382,328,6,9425,1566837 +130383,333,2,78028,1626421 +130384,155,3,378441,1797517 +130385,387,10,89242,146776 +130386,52,10,13380,590467 +130387,234,1,333091,1446636 +130388,234,1,109475,67451 +130389,175,5,10395,1177850 +130390,352,3,9593,1877140 +130391,40,1,10733,5545 +130392,239,5,263115,1654425 +130393,317,10,159211,1047497 +130394,105,7,20992,119208 +130395,269,9,8292,22145 +130396,273,7,1624,4500 +130397,333,2,11547,145558 +130398,317,10,162862,1162322 +130399,387,10,145220,26205 +130400,387,10,193177,47373 +130401,413,11,10257,63574 +130402,317,10,84097,930501 +130403,97,7,149509,20228 +130404,387,10,91067,933088 +130405,273,7,25388,2704 +130406,317,10,261246,116607 +130407,273,7,103597,57069 +130408,175,5,368006,1640312 +130409,204,9,4441,37283 +130410,234,1,312669,41670 +130411,53,2,1859,9064 +130412,3,5,78265,2760 +130413,219,11,544,1562248 +130414,53,2,79113,1094628 +130415,413,11,218784,6742 +130416,234,1,154821,656971 +130417,196,7,203833,1338970 +130418,413,11,10330,12970 +130419,3,5,369883,11506 +130420,273,7,6023,11098 +130421,317,10,48118,1116045 +130422,3,5,2976,11699 +130423,413,11,63493,229891 +130424,99,3,18417,83070 +130425,398,9,8204,1725885 +130426,166,9,9472,92345 +130427,176,3,4413,1406896 +130428,387,10,5491,43607 +130429,373,7,270403,1377259 +130430,66,11,28263,1886644 +130431,277,3,121848,1543599 +130432,148,9,329805,1621898 +130433,52,10,147618,1162322 +130434,187,11,43923,388770 +130435,387,10,264397,1309478 +130436,5,10,120457,577427 +130437,234,1,41522,113889 +130438,105,7,17189,104715 +130439,301,5,9946,1377131 +130440,40,1,356752,1841562 +130441,413,11,135679,502188 +130442,15,6,18,555978 +130443,234,1,16366,85716 +130444,333,2,27970,29813 +130445,273,7,120,117 +130446,387,10,11862,17698 +130447,52,10,30308,131130 +130448,373,7,334,1378828 +130449,226,2,7299,1406584 +130450,196,7,102629,1405204 +130451,317,10,134355,131721 +130452,204,9,1890,25185 +130453,387,10,59738,1493203 +130454,239,5,188826,1583218 +130455,387,10,412209,1104837 +130456,198,6,286873,1553459 +130457,387,10,384160,1260766 +130458,317,10,101783,86782 +130459,3,5,130055,22153 +130460,3,5,23223,36185 +130461,234,1,288668,1049535 +130462,387,10,29786,104871 +130463,196,7,18,548444 +130464,273,7,27095,1148737 +130465,413,11,187602,236535 +130466,53,2,259593,20123 +130467,52,10,193878,132782 +130468,413,11,66526,545004 +130469,57,2,9966,1409824 +130470,234,1,48838,34510 +130471,317,10,298165,1313680 +130472,317,10,19276,227201 +130473,166,9,149509,1399046 +130474,387,10,5721,43868 +130475,234,1,99361,46644 +130476,160,3,10326,4755 +130477,413,11,26693,555280 +130478,327,7,264525,1857575 +130479,53,2,97614,961452 +130480,413,11,392818,1396755 +130481,97,7,1125,9439 +130482,234,1,169794,1152007 +130483,234,1,28118,1126054 +130484,5,10,15613,83779 +130485,413,11,70981,950 +130486,387,10,8064,53847 +130487,275,9,321528,90367 +130488,303,3,333484,1411846 +130489,262,6,9472,1567909 +130490,324,3,441043,1755721 +130491,413,11,277355,1403403 +130492,105,7,241258,70789 +130493,415,3,378441,1797506 +130494,226,2,10096,1394565 +130495,317,10,52867,1931 +130496,148,9,114096,1568719 +130497,60,1,238,1625347 +130498,234,1,85196,556913 +130499,234,1,24619,124390 +130500,273,7,86825,6377 +130501,209,7,309581,1360111 +130502,301,5,8470,1399877 +130503,317,10,262958,70684 +130504,105,7,72602,1349488 +130505,317,10,50669,114339 +130506,273,7,246655,9039 +130507,317,10,268735,233326 +130508,317,10,44669,34204 +130509,239,5,436,1059168 +130510,413,11,122857,965809 +130511,413,11,10909,3961 +130512,5,10,29100,7748 +130513,413,11,289,2761 +130514,105,7,82654,1014937 +130515,328,6,173153,1412705 +130516,148,9,254679,552336 +130517,219,11,1624,13223 +130518,373,7,8915,1337463 +130519,387,10,293516,88468 +130520,413,11,66741,87878 +130521,108,10,12617,73257 +130522,333,2,62630,1182555 +130523,317,10,76829,25183 +130524,75,5,40130,105328 +130525,234,1,394403,291406 +130526,198,6,72545,1859988 +130527,97,7,2662,9435 +130528,3,5,31022,50723 +130529,160,3,14369,1007395 +130530,234,1,38594,1284691 +130531,3,5,22292,3148 +130532,273,7,12697,57263 +130533,5,10,23857,544636 +130534,234,1,138502,1108981 +130535,75,5,9102,25735 +130536,269,9,408616,1441666 +130537,303,3,19101,1214 +130538,398,9,3059,1899124 +130539,53,2,5421,1505032 +130540,113,9,6947,62062 +130541,75,5,58080,1125523 +130542,139,3,32628,10520 +130543,220,7,34127,96251 +130544,53,2,128089,1398748 +130545,317,10,371446,139357 +130546,234,1,226936,120018 +130547,317,10,1793,584535 +130548,286,3,166393,1147889 +130549,234,1,75174,40223 +130550,180,7,28261,27969 +130551,387,10,11830,69167 +130552,52,10,157898,223265 +130553,52,10,13654,1122590 +130554,234,1,241258,132876 +130555,3,5,190853,1143441 +130556,167,3,97614,1409724 +130557,234,1,36751,19744 +130558,209,7,9016,1342663 +130559,97,7,15689,1425588 +130560,269,9,9070,11779 +130561,234,1,44932,30689 +130562,373,7,57201,900 +130563,387,10,11450,45543 +130564,3,5,24254,9040 +130565,273,7,38021,1383096 +130566,53,2,809,5549 +130567,413,11,76864,580707 +130568,377,3,6947,566666 +130569,387,10,43340,2665 +130570,317,10,101183,1520665 +130571,3,5,276906,1331175 +130572,413,11,42648,6848 +130573,3,5,178341,8713 +130574,292,3,74,1868837 +130575,105,7,27814,1419431 +130576,13,3,177572,1397792 +130577,234,1,5759,45405 +130578,105,7,26030,111300 +130579,328,6,17911,85808 +130580,83,2,1690,1889471 +130581,273,7,10294,2214 +130582,413,11,393562,71275 +130583,234,1,295058,1367731 +130584,387,10,89659,1039943 +130585,53,2,83754,1294790 +130586,3,5,39436,11847 +130587,234,1,259694,63820 +130588,67,10,11618,1463304 +130589,419,10,62394,61479 +130590,105,7,75778,47203 +130591,208,2,10400,15845 +130592,317,10,330431,1439074 +130593,148,9,43009,33227 +130594,387,10,99351,70045 +130595,317,10,70981,28974 +130596,234,1,38157,116929 +130597,317,10,44389,76989 +130598,37,3,1267,1460602 +130599,317,10,25473,99644 +130600,198,6,324670,1726035 +130601,234,1,26153,87354 +130602,204,9,23452,109193 +130603,234,1,75595,1026085 +130604,234,1,367882,1534511 +130605,5,10,27034,96812 +130606,234,1,98302,33166 +130607,13,3,41213,1777267 +130608,273,7,10491,2289 +130609,413,11,253310,1423980 +130610,226,2,17144,1142796 +130611,262,6,11788,1430078 +130612,387,10,304372,57775 +130613,52,10,10865,12891 +130614,175,5,256092,1395242 +130615,413,11,50329,1530539 +130616,333,2,379019,1780137 +130617,387,10,12637,2554 +130618,3,5,121824,40511 +130619,105,7,9572,36596 +130620,289,6,269149,1462002 +130621,148,9,293625,1198517 +130622,289,6,329865,1646562 +130623,3,5,390777,1603224 +130624,53,2,39867,1437609 +130625,413,11,75510,107683 +130626,387,10,49028,76813 +130627,317,10,162458,445843 +130628,3,5,11897,3148 +130629,3,5,211144,25361 +130630,204,9,418437,1763646 +130631,387,10,300983,120953 +130632,234,1,21352,1174031 +130633,75,5,2721,1492959 +130634,234,1,17137,81296 +130635,273,7,210047,1015883 +130636,286,3,25501,56250 +130637,75,5,287628,1597138 +130638,273,7,293380,9217 +130639,105,7,353533,237681 +130640,234,1,224282,1209855 +130641,52,10,30996,107482 +130642,141,7,2675,1548698 +130643,234,1,286369,145304 +130644,234,1,458335,1825473 +130645,3,5,21135,5680 +130646,273,7,49940,1374477 +130647,53,2,3051,14933 +130648,234,1,271164,1322602 +130649,234,1,78318,49214 +130650,127,3,52661,1559495 +130651,3,5,43903,8714 +130652,317,10,37083,69812 +130653,387,10,4257,12936 +130654,387,10,5494,43674 +130655,317,10,51875,1633817 +130656,317,10,126418,46993 +130657,148,9,241927,1585354 +130658,166,9,245703,1393372 +130659,413,11,41590,17399 +130660,234,1,41591,49208 +130661,175,5,10865,1401196 +130662,3,5,28480,100903 +130663,317,10,29449,9789 +130664,75,5,93856,1409871 +130665,53,2,13312,24761 +130666,234,1,103758,63973 +130667,273,7,413882,5288 +130668,209,7,2503,21122 +130669,381,9,6947,1573077 +130670,273,7,286521,1361165 +130671,234,1,146,1614 +130672,75,5,525,55232 +130673,413,11,11511,69676 +130674,3,5,11933,1060 +130675,105,7,315837,929145 +130676,148,9,10025,62063 +130677,204,9,285858,1456315 +130678,67,10,15213,1462614 +130679,148,9,744,11083 +130680,239,5,140607,1020703 +130681,3,5,429200,1073579 +130682,209,7,186869,1727799 +130683,327,7,54845,1429529 +130684,234,1,288413,83961 +130685,226,2,315664,32491 +130686,273,7,96458,1009377 +130687,387,10,165567,107765 +130688,1,7,284288,1124968 +130689,234,1,38785,19003 +130690,289,6,291270,1453596 +130691,234,1,37702,57607 +130692,413,11,152748,1055498 +130693,182,8,28263,1540206 +130694,317,10,69019,555499 +130695,226,2,9664,9161 +130696,204,9,337339,1493864 +130697,5,10,20650,48415 +130698,335,6,337339,1473417 +130699,46,5,2662,1841936 +130700,105,7,32904,1735414 +130701,413,11,23518,3643 +130702,250,11,12783,1410196 +130703,373,7,19594,1814531 +130704,349,1,10198,1447590 +130705,53,2,330947,958488 +130706,333,2,433034,1846922 +130707,52,10,41733,127148 +130708,303,3,100669,1599819 +130709,203,1,205864,1603899 +130710,317,10,33436,1963 +130711,204,9,91583,7757 diff --git a/demo/install/resources/movies_csv/Movie Genre Map.csv b/demo/install/resources/movies_csv/Movie Genre Map.csv new file mode 100644 index 0000000000..661b2d23e3 --- /dev/null +++ b/demo/install/resources/movies_csv/Movie Genre Map.csv @@ -0,0 +1,25887 @@ +id,Movie,Genre +1,43757,10751 +2,48587,27 +3,14907,35 +4,340584,18 +5,1807,80 +6,51349,12 +7,29538,18 +8,58995,12 +9,119569,28 +10,251,18 +11,1427,14 +12,11540,80 +13,142770,12 +14,22328,37 +15,45714,18 +16,299828,35 +17,227325,18 +18,62439,18 +19,309879,27 +20,18671,53 +21,43158,10402 +22,41979,10751 +23,398289,28 +24,21837,28 +25,14885,10751 +26,169758,53 +27,126947,18 +28,297736,18 +29,20825,35 +30,330711,80 +31,14411,12 +32,72711,99 +33,78256,10749 +34,11622,10749 +35,220724,14 +36,340101,35 +37,399894,878 +38,73067,10752 +39,23340,12 +40,125619,35 +41,15156,18 +42,18374,28 +43,59066,10749 +44,47200,80 +45,131966,53 +46,499,18 +47,31835,35 +48,1247,53 +49,43680,878 +50,16032,53 +51,11012,18 +52,63764,18 +53,222297,99 +54,43759,35 +55,28969,878 +56,13842,18 +57,324670,28 +58,11589,10752 +59,68193,18 +60,418772,35 +61,45273,28 +62,28677,12 +63,19157,35 +64,22559,99 +65,11535,53 +66,20055,80 +67,6068,10749 +68,1969,28 +69,68715,27 +70,54093,35 +71,83201,16 +72,58646,35 +73,4365,27 +74,118098,18 +75,45205,878 +76,43395,10402 +77,53861,53 +78,146373,18 +79,15199,10402 +80,19286,14 +81,15761,10769 +82,74481,10769 +83,63877,35 +84,313922,53 +85,40047,18 +86,70670,53 +87,393732,53 +88,79735,37 +89,62492,10402 +90,22419,18 +91,21442,10749 +92,19957,12 +93,3577,18 +94,81296,35 +95,156268,35 +96,39545,18 +97,1634,12 +98,47410,27 +99,53573,35 +100,391757,18 +101,16131,18 +102,24657,18 +103,12591,27 +104,23857,53 +105,51167,35 +106,116019,10752 +107,219572,18 +108,284274,12 +109,43656,18 +110,22314,80 +111,21325,14 +112,241071,35 +113,59930,10749 +114,71067,10749 +115,45302,18 +116,383535,27 +117,18638,10752 +118,9958,35 +119,12289,12 +120,14773,99 +121,30022,10749 +122,189197,18 +123,10783,80 +124,50780,18 +125,21948,53 +126,291164,28 +127,26293,18 +128,60488,28 +129,50374,18 +130,76084,12 +131,37653,35 +132,43089,53 +133,54384,10402 +134,66966,10749 +135,125673,28 +136,30143,12 +137,132928,10749 +138,634,35 +139,25653,80 +140,19760,35 +141,39102,16 +142,19731,80 +143,76341,53 +144,27145,10749 +145,60392,10749 +146,363579,28 +147,1595,18 +148,181753,53 +149,153779,18 +150,43580,10770 +151,249969,10749 +152,279690,18 +153,41645,10769 +154,606,18 +155,104973,18 +156,40879,10402 +157,155341,27 +158,22784,18 +159,51759,35 +160,75090,35 +161,8358,12 +162,88818,35 +163,92341,18 +164,8053,18 +165,53168,35 +166,61225,18 +167,5172,12 +168,16899,35 +169,116352,35 +170,52949,18 +171,6187,18 +172,141210,27 +173,24202,10749 +174,33250,35 +175,46712,10749 +176,416635,12 +177,134362,99 +178,288193,99 +179,28465,53 +180,125409,80 +181,8204,12 +182,229297,10749 +183,12276,10749 +184,213121,16 +185,28280,28 +186,347096,12 +187,10354,80 +188,252144,53 +189,24810,53 +190,249,53 +191,41028,53 +192,342011,18 +193,83,53 +194,6964,18 +195,278706,27 +196,31276,878 +197,6575,35 +198,323929,35 +199,71885,35 +200,26366,35 +201,39129,35 +202,55853,12 +203,48706,35 +204,22267,10752 +205,35113,80 +206,42123,10752 +207,7237,14 +208,9935,53 +209,11980,53 +210,180685,12 +211,300983,53 +212,111017,10749 +213,228970,18 +214,370755,35 +215,20106,35 +216,34560,12 +217,121351,28 +218,90800,10402 +219,254679,10751 +220,211579,18 +221,22241,10769 +222,94225,18 +223,34469,36 +224,31522,35 +225,18917,27 +226,31856,80 +227,35689,9648 +228,120303,9648 +229,14467,18 +230,112244,18 +231,218778,35 +232,15749,28 +233,35632,28 +234,347096,28 +235,56906,27 +236,78657,35 +237,247500,18 +238,15264,37 +239,41402,18 +240,84993,18 +241,80220,35 +242,38807,28 +243,130993,99 +244,219335,35 +245,39413,18 +246,44104,10769 +247,87654,10749 +248,33314,10770 +249,34729,35 +250,8410,18 +251,203186,53 +252,39345,10751 +253,274857,28 +254,11653,14 +255,45069,10749 +256,71041,12 +257,10632,53 +258,37126,18 +259,84907,27 +260,60568,18 +261,21948,18 +262,56666,18 +263,16907,12 +264,30126,10751 +265,43407,10752 +266,375170,53 +267,47886,9648 +268,11658,28 +269,49834,35 +270,43139,35 +271,32720,18 +272,34623,10749 +273,83899,27 +274,138191,18 +275,189197,12 +276,14353,10402 +277,12422,10769 +278,67696,18 +279,339312,18 +280,63736,12 +281,48967,35 +282,15534,35 +283,186292,53 +284,54227,35 +285,39495,18 +286,81310,16 +287,56709,53 +288,173205,99 +289,42499,9648 +290,145593,35 +291,73144,28 +292,5183,18 +293,131689,27 +294,42678,53 +295,327528,18 +296,182131,14 +297,37468,12 +298,23730,27 +299,156,10749 +300,28917,35 +301,58704,16 +302,110001,80 +303,132150,99 +304,155325,18 +305,47536,10769 +306,51763,36 +307,8072,18 +308,142106,18 +309,35263,18 +310,10269,10402 +311,254679,18 +312,23178,10402 +313,61550,10751 +314,91583,35 +315,16666,99 +316,67018,18 +317,63838,53 +318,51955,878 +319,382589,10402 +320,188598,18 +321,90634,10749 +322,215999,18 +323,109074,27 +324,201429,10749 +325,362150,10751 +326,49492,10769 +327,33025,18 +328,11979,18 +329,4882,80 +330,18698,10751 +331,39148,16 +332,296626,27 +333,255384,27 +334,59075,14 +335,23823,53 +336,117942,35 +337,16442,18 +338,27966,80 +339,85883,10749 +340,207178,37 +341,13283,10751 +342,2047,28 +343,23382,27 +344,32540,53 +345,237171,18 +346,1273,12 +347,7547,18 +348,9550,12 +349,9870,10749 +350,121170,99 +351,8470,53 +352,63304,35 +353,281215,18 +354,39230,28 +355,53654,53 +356,2241,35 +357,12121,35 +358,24409,35 +359,125510,16 +360,25796,35 +361,24170,10749 +362,34796,10749 +363,985,14 +364,15805,16 +365,8079,35 +366,924,28 +367,30308,18 +368,38415,18 +369,8888,18 +370,86266,18 +371,11358,12 +372,22803,53 +373,9827,53 +374,11172,10402 +375,41611,18 +376,41495,18 +377,26036,18 +378,259695,18 +379,131781,10402 +380,142798,35 +381,11862,35 +382,37053,18 +383,19766,28 +384,301348,35 +385,24020,10751 +386,20968,18 +387,28063,12 +388,40146,27 +389,28448,18 +390,24927,27 +391,11358,53 +392,27351,10769 +393,19053,35 +394,83587,99 +395,327389,27 +396,127564,37 +397,346646,53 +398,34506,10770 +399,11589,35 +400,23628,18 +401,14076,53 +402,358982,53 +403,8998,18 +404,68174,18 +405,338063,99 +406,35826,35 +407,9793,27 +408,339403,28 +409,38274,10749 +410,74527,37 +411,24979,35 +412,295273,10749 +413,71996,28 +414,33586,35 +415,231540,35 +416,44732,28 +417,73775,18 +418,18569,35 +419,21413,35 +420,15759,10751 +421,32610,10402 +422,28367,14 +423,337012,18 +424,2100,28 +425,351809,80 +426,56599,9648 +427,42825,9648 +428,95536,36 +429,3513,18 +430,306598,99 +431,63859,10751 +432,73981,99 +433,63831,18 +434,13614,36 +435,43093,27 +436,9914,12 +437,120831,18 +438,107104,53 +439,60608,10769 +440,342588,9648 +441,2262,80 +442,24458,10752 +443,260672,35 +444,13562,10749 +445,12538,35 +446,109417,18 +447,18381,35 +448,112675,53 +449,33360,80 +450,11370,18 +451,56533,35 +452,327231,35 +453,5544,36 +454,21711,18 +455,242224,53 +456,9589,18 +457,33127,99 +458,41516,27 +459,16997,28 +460,10776,27 +461,19621,28 +462,102961,28 +463,29372,28 +464,57575,18 +465,32996,10402 +466,65603,27 +467,45827,10751 +468,84892,18 +469,18939,18 +470,81549,10751 +471,273096,10749 +472,290864,53 +473,49334,18 +474,45505,10769 +475,382951,10751 +476,9483,18 +477,342684,53 +478,22901,35 +479,15765,18 +480,2487,18 +481,25941,28 +482,43806,18 +483,31161,10749 +484,38202,12 +485,17985,27 +486,329286,35 +487,46403,53 +488,98541,99 +489,228676,27 +490,11618,53 +491,1678,53 +492,98094,35 +493,26688,9648 +494,61908,18 +495,352917,53 +496,11636,18 +497,68750,80 +498,159770,18 +499,89551,12 +500,64847,14 +501,65156,80 +502,94352,14 +503,9260,35 +504,295581,18 +505,56527,28 +506,6643,10749 +507,109610,10749 +508,17007,10770 +509,10829,28 +510,31448,35 +511,42453,12 +512,9756,53 +513,51104,28 +514,52959,10749 +515,47446,18 +516,24739,53 +517,30690,35 +518,84178,27 +519,39436,27 +520,186881,10769 +521,50506,10749 +522,75622,80 +523,2124,18 +524,30312,99 +525,19209,10751 +526,177677,53 +527,96411,80 +528,44960,18 +529,242224,27 +530,53524,18 +531,14137,35 +532,43319,37 +533,290825,14 +534,11205,28 +535,211928,12 +536,339408,18 +537,49834,18 +538,340961,18 +539,86600,28 +540,79435,18 +541,295748,35 +542,11577,37 +543,52903,99 +544,72946,10749 +545,1375,18 +546,29318,27 +547,403593,10402 +548,32031,12 +549,21032,16 +550,47324,80 +551,10999,28 +552,206657,99 +553,303982,35 +554,41949,10769 +555,83191,10770 +556,6589,12 +557,79833,18 +558,15179,35 +559,292625,27 +560,89751,80 +561,10693,12 +562,29467,80 +563,49943,80 +564,59704,10769 +565,14916,27 +566,18442,27 +567,167,18 +568,104644,27 +569,2160,878 +570,39240,53 +571,25936,35 +572,13073,18 +573,43727,18 +574,104103,18 +575,273578,16 +576,21840,28 +577,341745,18 +578,84636,18 +579,34019,10749 +580,382598,10751 +581,264397,53 +582,133160,18 +583,89720,27 +584,16866,16 +585,291155,99 +586,96035,35 +587,172445,35 +588,30379,28 +589,97630,36 +590,290864,28 +591,86825,18 +592,351043,53 +593,38048,28 +594,630,12 +595,9016,14 +596,74057,80 +597,142712,10749 +598,788,10751 +599,284564,27 +600,102197,53 +601,15674,14 +602,77875,35 +603,24615,16 +604,25768,35 +605,12154,35 +606,238362,35 +607,29067,27 +608,42892,35 +609,205481,18 +610,52034,27 +611,244534,35 +612,1647,53 +613,10303,10749 +614,43419,12 +615,32038,10751 +616,42170,80 +617,42187,27 +618,410634,27 +619,74103,18 +620,142064,35 +621,374319,9648 +622,18209,10749 +623,377691,18 +624,10991,28 +625,2786,18 +626,111836,35 +627,318973,53 +628,19235,18 +629,31022,80 +630,371504,9648 +631,22606,37 +632,63775,9648 +633,52868,53 +634,122662,878 +635,33729,35 +636,44943,878 +637,17566,16 +638,64961,35 +639,100024,53 +640,100594,878 +641,18585,18 +642,146216,28 +643,76349,12 +644,60120,18 +645,58447,28 +646,103433,35 +647,68163,27 +648,45565,10751 +649,49653,18 +650,16638,36 +651,74878,80 +652,399894,28 +653,74126,35 +654,325263,99 +655,10257,12 +656,15486,18 +657,49028,18 +658,313628,10749 +659,128637,28 +660,120588,10402 +661,15944,10751 +662,9963,9648 +663,15601,16 +664,63260,10749 +665,280690,28 +666,102,10749 +667,31527,10749 +668,47046,10749 +669,1838,18 +670,14527,28 +671,62213,14 +672,15689,878 +673,184866,53 +674,32124,18 +675,117500,18 +676,17189,16 +677,14482,27 +678,41187,18 +679,29143,27 +680,182131,28 +681,76640,53 +682,43000,35 +683,10354,18 +684,10724,53 +685,320910,18 +686,4365,35 +687,35,35 +688,313896,27 +689,10529,28 +690,18595,35 +691,131737,53 +692,381015,10749 +693,8852,27 +694,3072,878 +695,51442,27 +696,53423,35 +697,282762,18 +698,17962,14 +699,292387,35 +700,25518,35 +701,62825,10402 +702,55032,35 +703,25834,878 +704,73430,10749 +705,320589,99 +706,45324,18 +707,288710,80 +708,81616,18 +709,16171,9648 +710,72614,18 +711,265208,53 +712,338079,35 +713,61895,99 +714,392271,18 +715,296029,99 +716,32893,18 +717,18758,18 +718,1956,12 +719,2293,35 +720,62630,53 +721,223497,35 +722,39230,16 +723,333667,10751 +724,10025,14 +725,4913,18 +726,11202,10752 +727,116318,10751 +728,17057,53 +729,38285,35 +730,238302,10751 +731,335145,18 +732,286567,28 +733,107973,10402 +734,2757,18 +735,322487,10751 +736,10866,18 +737,73827,35 +738,25407,35 +739,285685,18 +740,13946,27 +741,263627,10770 +742,266741,10749 +743,80443,35 +744,38783,27 +745,51939,18 +746,42648,35 +747,18741,28 +748,10269,10749 +749,264560,18 +750,296192,35 +751,339312,36 +752,10795,53 +753,9013,35 +754,144111,18 +755,21032,12 +756,14207,35 +757,323435,53 +758,127380,35 +759,49110,53 +760,148,10749 +761,40990,53 +762,82178,18 +763,355008,35 +764,71859,18 +765,14833,53 +766,73869,18 +767,198600,35 +768,10710,35 +769,36968,35 +770,18290,28 +771,348631,10770 +772,98566,12 +773,252916,80 +774,24556,878 +775,18,878 +776,105860,28 +777,17421,28 +778,266741,10402 +779,112931,99 +780,17057,9648 +781,208529,35 +782,204922,53 +783,64316,18 +784,985,18 +785,63300,10749 +786,14263,10402 +787,128856,18 +788,62439,35 +789,24090,27 +790,71139,18 +791,18551,18 +792,3716,12 +793,86920,12 +794,192133,10402 +795,36246,35 +796,1482,28 +797,118139,80 +798,262945,18 +799,105906,10769 +800,66759,28 +801,10805,18 +802,155765,12 +803,374614,18 +804,33786,35 +805,221171,16 +806,172785,18 +807,34723,10751 +808,38031,10749 +809,41551,53 +810,14869,878 +811,90001,16 +812,6499,53 +813,128856,53 +814,53392,35 +815,43935,9648 +816,14587,18 +817,27349,37 +818,300424,16 +819,343369,10770 +820,55853,18 +821,20473,10751 +822,253337,10402 +823,53685,18 +824,82237,35 +825,34113,10402 +826,91715,35 +827,277968,18 +828,27245,14 +829,53514,10749 +830,78854,35 +831,14387,35 +832,7249,878 +833,41115,18 +834,16806,80 +835,86709,28 +836,76198,18 +837,78522,27 +838,282963,18 +839,163,80 +840,194407,10749 +841,2047,18 +842,35569,28 +843,94480,878 +844,37534,27 +845,39462,10751 +846,331075,14 +847,9765,18 +848,26502,18 +849,215379,37 +850,38055,16 +851,102444,37 +852,13437,80 +853,121154,10752 +854,46007,10402 +855,25941,80 +856,30876,27 +857,253286,80 +858,369366,99 +859,81538,36 +860,252724,18 +861,46586,53 +862,315256,27 +863,59962,28 +864,31377,10751 +865,15674,10751 +866,102629,18 +867,52784,18 +868,220674,35 +869,16999,12 +870,329243,35 +871,81687,10749 +872,37910,16 +873,14874,10749 +874,246741,35 +875,98369,35 +876,117999,18 +877,185154,18 +878,46368,28 +879,125300,35 +880,148,18 +881,33729,18 +882,9095,27 +883,29471,18 +884,32790,18 +885,317182,18 +886,8915,12 +887,68721,12 +888,363579,36 +889,38006,12 +890,317246,12 +891,230211,35 +892,3173,53 +893,42678,18 +894,12255,53 +895,219233,36 +896,2613,10749 +897,13596,10749 +898,16432,9648 +899,131343,53 +900,86472,37 +901,43369,10749 +902,278334,53 +903,16996,35 +904,113178,35 +905,14405,35 +906,317,18 +907,23152,10749 +908,58664,27 +909,53931,10751 +910,67328,28 +911,21250,16 +912,72096,18 +913,11887,35 +914,226701,10770 +915,270007,28 +916,34650,9648 +917,49009,12 +918,184341,18 +919,32921,10752 +920,71376,53 +921,358724,27 +922,393939,878 +923,7454,27 +924,68472,53 +925,9519,80 +926,85648,37 +927,51759,10402 +928,315664,18 +929,40466,53 +930,12631,35 +931,68179,10751 +932,13079,9648 +933,64316,28 +934,76465,10749 +935,82485,80 +936,34935,16 +937,3478,36 +938,119926,18 +939,121516,35 +940,55435,16 +941,240913,18 +942,446048,35 +943,104739,10769 +944,203539,10402 +945,354857,16 +946,13380,14 +947,77641,37 +948,93828,80 +949,334132,18 +950,96107,10749 +951,204040,12 +952,38850,80 +953,2463,53 +954,76871,10749 +955,7096,14 +956,1396,18 +957,16137,9648 +958,52949,9648 +959,68163,878 +960,94348,53 +961,225728,10752 +962,92349,18 +963,17483,10749 +964,47310,14 +965,10874,10402 +966,43209,12 +967,294483,18 +968,56491,28 +969,33112,10749 +970,245706,80 +971,84971,9648 +972,245597,10749 +973,2463,18 +974,187010,35 +975,490,18 +976,193387,35 +977,42402,18 +978,22554,35 +979,113040,878 +980,48502,10769 +981,8916,12 +982,3989,28 +983,65713,35 +984,43783,10402 +985,27380,878 +986,47943,35 +987,25006,18 +988,323370,27 +989,31597,80 +990,116432,18 +991,185460,9648 +992,21570,18 +993,342213,35 +994,27045,80 +995,83191,12 +996,215379,878 +997,10003,10749 +998,227200,16 +999,38021,10749 +1000,21620,10769 +1001,165181,878 +1002,277558,28 +1003,33916,80 +1004,374618,14 +1005,14136,35 +1006,32338,10751 +1007,25913,16 +1008,124115,10749 +1009,259830,878 +1010,210079,53 +1011,288521,10749 +1012,88557,16 +1013,145316,16 +1014,13654,10751 +1015,27966,18 +1016,84727,10749 +1017,81003,10751 +1018,177354,10749 +1019,296626,9648 +1020,107693,18 +1021,37108,878 +1022,18557,80 +1023,16249,35 +1024,86241,10402 +1025,66187,18 +1026,43000,18 +1027,5998,9648 +1028,139862,10752 +1029,20430,10749 +1030,407965,12 +1031,366759,28 +1032,38965,14 +1033,24266,37 +1034,72733,35 +1035,147106,18 +1036,31915,27 +1037,327,18 +1038,773,35 +1039,31111,18 +1040,22398,18 +1041,28482,12 +1042,12476,878 +1043,18893,99 +1044,30379,53 +1045,274479,35 +1046,343369,18 +1047,11630,35 +1048,72710,53 +1049,28465,12 +1050,2321,10749 +1051,259835,12 +1052,168031,35 +1053,8935,10769 +1054,77864,18 +1055,67375,36 +1056,359105,35 +1057,75745,28 +1058,2758,10751 +1059,16938,27 +1060,11897,36 +1061,51823,28 +1062,86360,35 +1063,20986,35 +1064,80468,27 +1065,62567,10402 +1066,293654,35 +1067,24939,35 +1068,29611,27 +1069,226792,53 +1070,129798,27 +1071,63486,10751 +1072,165402,10749 +1073,46920,18 +1074,128625,99 +1075,139521,35 +1076,208756,80 +1077,319910,9648 +1078,381032,27 +1079,14087,18 +1080,46278,28 +1081,87349,12 +1082,245168,18 +1083,57597,878 +1084,10549,18 +1085,15022,18 +1086,167410,18 +1087,151911,10752 +1088,121234,35 +1089,250574,53 +1090,33117,35 +1091,373397,10402 +1092,159005,99 +1093,44945,18 +1094,121791,18 +1095,97593,10770 +1096,13354,28 +1097,307479,28 +1098,31304,18 +1099,52859,10752 +1100,339342,27 +1101,11712,35 +1102,8840,14 +1103,62978,18 +1104,70133,12 +1105,28169,878 +1106,8471,53 +1107,75577,99 +1108,116160,35 +1109,19029,18 +1110,247218,35 +1111,22579,35 +1112,37098,99 +1113,34078,53 +1114,31921,9648 +1115,329550,35 +1116,35543,18 +1117,206296,18 +1118,169934,878 +1119,458335,18 +1120,54318,10751 +1121,38869,35 +1122,244580,10402 +1123,63938,80 +1124,105548,18 +1125,94811,18 +1126,300490,10402 +1127,358724,53 +1128,44933,35 +1129,26505,12 +1130,125409,53 +1131,33102,878 +1132,8897,18 +1133,73984,10769 +1134,43464,12 +1135,60977,35 +1136,193756,10752 +1137,42093,99 +1138,21334,10751 +1139,34469,10752 +1140,331588,10751 +1141,91551,16 +1142,46326,10749 +1143,137312,35 +1144,51823,80 +1145,131966,80 +1146,282070,878 +1147,16962,16 +1148,14041,28 +1149,4443,27 +1150,21070,18 +1151,21533,14 +1152,64605,53 +1153,359459,35 +1154,48882,18 +1155,15267,18 +1156,405473,18 +1157,47739,80 +1158,9294,10749 +1159,184802,10402 +1160,30508,10402 +1161,16331,18 +1162,268350,9648 +1163,1394,18 +1164,52999,9648 +1165,32286,18 +1166,51426,10749 +1167,138611,99 +1168,382501,18 +1169,49961,35 +1170,137776,53 +1171,364810,35 +1172,8989,14 +1173,4964,18 +1174,447758,99 +1175,293660,12 +1176,8204,10751 +1177,38055,28 +1178,24426,14 +1179,207699,28 +1180,11888,10751 +1181,362579,53 +1182,364088,18 +1183,108048,16 +1184,12704,35 +1185,25126,35 +1186,59408,35 +1187,301334,18 +1188,20092,18 +1189,17223,53 +1190,227266,878 +1191,286940,10751 +1192,64428,12 +1193,210910,27 +1194,25426,28 +1195,43092,18 +1196,41416,35 +1197,66045,878 +1198,32657,12 +1199,297560,35 +1200,63317,18 +1201,73624,35 +1202,289225,10770 +1203,70736,10749 +1204,41206,53 +1205,293863,10749 +1206,323968,14 +1207,78231,18 +1208,314285,12 +1209,49688,18 +1210,351065,18 +1211,26125,53 +1212,118131,18 +1213,262958,36 +1214,9677,35 +1215,158150,35 +1216,2012,18 +1217,73194,36 +1218,22910,80 +1219,29192,10751 +1220,207441,99 +1221,26643,10751 +1222,121936,10749 +1223,45324,80 +1224,80142,35 +1225,2805,35 +1226,32043,9648 +1227,206514,36 +1228,143883,10770 +1229,10192,14 +1230,68629,9648 +1231,168031,18 +1232,43075,18 +1233,114779,35 +1234,42136,28 +1235,21413,10749 +1236,118443,10749 +1237,14457,27 +1238,30535,18 +1239,21905,10749 +1240,44087,10749 +1241,42298,53 +1242,6076,18 +1243,26936,28 +1244,44960,53 +1245,320873,18 +1246,16016,16 +1247,13798,10751 +1248,377587,35 +1249,79466,80 +1250,153272,12 +1251,293122,18 +1252,37719,35 +1253,17100,18 +1254,256356,28 +1255,19053,10749 +1256,52360,10752 +1257,317182,878 +1258,27573,28 +1259,11236,18 +1260,2309,12 +1261,160160,53 +1262,76684,35 +1263,65280,53 +1264,15037,10749 +1265,32328,18 +1266,180635,10749 +1267,16791,10751 +1268,307696,16 +1269,66469,80 +1270,51249,10751 +1271,102630,53 +1272,19621,18 +1273,9950,18 +1274,332079,18 +1275,46924,14 +1276,354859,36 +1277,83125,35 +1278,21027,28 +1279,255528,10751 +1280,66925,35 +1281,105539,18 +1282,272693,35 +1283,13526,18 +1284,616,28 +1285,113148,35 +1286,26761,18 +1287,64191,18 +1288,198306,35 +1289,38164,18 +1290,49974,35 +1291,10268,35 +1292,433,10751 +1293,31263,27 +1294,193177,18 +1295,26686,35 +1296,32526,18 +1297,28677,28 +1298,44208,35 +1299,215797,35 +1300,429200,18 +1301,81541,80 +1302,4307,18 +1303,132957,9648 +1304,57983,12 +1305,356483,27 +1306,49028,28 +1307,43751,27 +1308,74199,35 +1309,419601,18 +1310,1726,28 +1311,31287,27 +1312,74645,35 +1313,348689,28 +1314,30624,10749 +1315,7234,28 +1316,26116,28 +1317,9528,10749 +1318,11838,27 +1319,38055,10751 +1320,301875,878 +1321,40624,18 +1322,140607,878 +1323,390,53 +1324,18939,14 +1325,286657,27 +1326,21145,35 +1327,13849,27 +1328,121824,28 +1329,234815,18 +1330,2463,28 +1331,52520,14 +1332,287903,14 +1333,8053,37 +1334,28775,27 +1335,38792,35 +1336,254439,35 +1337,125521,35 +1338,9013,80 +1339,37932,12 +1340,11813,35 +1341,345069,27 +1342,67794,10749 +1343,10866,53 +1344,8316,18 +1345,26809,14 +1346,60199,35 +1347,48419,99 +1348,28169,27 +1349,367492,18 +1350,51890,10769 +1351,9030,27 +1352,267497,878 +1353,212503,10770 +1354,242093,10402 +1355,250638,14 +1356,284467,53 +1357,60935,9648 +1358,1116,36 +1359,27671,27 +1360,22551,27 +1361,28430,18 +1362,18111,35 +1363,208700,35 +1364,40709,28 +1365,144331,36 +1366,116711,10751 +1367,22618,18 +1368,43757,18 +1369,164366,35 +1370,13355,9648 +1371,45800,10749 +1372,80032,10402 +1373,79728,18 +1374,118381,10402 +1375,109018,10749 +1376,809,14 +1377,315057,35 +1378,44472,18 +1379,437752,35 +1380,1850,35 +1381,332534,35 +1382,2692,99 +1383,15440,9648 +1384,24731,80 +1385,11175,37 +1386,9066,35 +1387,1877,53 +1388,25111,28 +1389,61686,18 +1390,104376,18 +1391,12767,9648 +1392,84907,53 +1393,141640,10770 +1394,33124,28 +1395,112083,10402 +1396,166,35 +1397,41077,12 +1398,32600,35 +1399,13369,18 +1400,54491,10751 +1401,26376,18 +1402,12481,28 +1403,416445,28 +1404,29610,28 +1405,17421,878 +1406,38150,53 +1407,25684,28 +1408,59066,18 +1409,118536,18 +1410,379,18 +1411,186630,35 +1412,44283,10751 +1413,53301,18 +1414,117452,10751 +1415,9987,53 +1416,149509,27 +1417,12528,18 +1418,43268,10402 +1419,76544,28 +1420,308165,35 +1421,2965,28 +1422,10889,80 +1423,43199,10402 +1424,9343,18 +1425,38531,35 +1426,54804,35 +1427,43514,35 +1428,14538,36 +1429,10524,53 +1430,325302,9648 +1431,59197,53 +1432,11897,12 +1433,167021,18 +1434,280617,35 +1435,3050,14 +1436,20544,18 +1437,77915,10749 +1438,47816,35 +1439,238362,10749 +1440,84030,14 +1441,42204,18 +1442,47143,18 +1443,336804,18 +1444,59191,10751 +1445,11338,18 +1446,92251,18 +1447,77473,10402 +1448,14041,53 +1449,1665,18 +1450,369033,53 +1451,70752,14 +1452,26491,10749 +1453,9474,35 +1454,19010,53 +1455,17275,35 +1456,14660,27 +1457,42537,18 +1458,298158,18 +1459,16075,18 +1460,29368,53 +1461,124042,18 +1462,254661,18 +1463,169069,35 +1464,11800,35 +1465,38920,18 +1466,124633,18 +1467,83965,12 +1468,32628,18 +1469,77887,16 +1470,156277,18 +1471,11313,9648 +1472,95177,10749 +1473,28062,53 +1474,4538,12 +1475,40633,10402 +1476,58011,35 +1477,74777,9648 +1478,326723,99 +1479,43973,18 +1480,369245,35 +1481,22779,16 +1482,181456,53 +1483,53168,18 +1484,35558,10770 +1485,134394,53 +1486,146373,35 +1487,125264,35 +1488,13574,18 +1489,36797,878 +1490,87194,16 +1491,228108,35 +1492,31150,53 +1493,18998,12 +1494,2675,18 +1495,44246,18 +1496,359105,18 +1497,9297,14 +1498,8316,36 +1499,31875,10769 +1500,128856,10769 +1501,59401,28 +1502,407448,36 +1503,168295,28 +1504,319073,99 +1505,106016,18 +1506,7551,878 +1507,271404,878 +1508,9894,18 +1509,12888,80 +1510,8368,18 +1511,3085,18 +1512,12807,10749 +1513,1984,878 +1514,80193,37 +1515,37936,27 +1516,59118,28 +1517,53864,9648 +1518,65156,35 +1519,2990,53 +1520,24777,35 +1521,111302,10749 +1522,413882,18 +1523,96238,10749 +1524,79329,27 +1525,185354,10752 +1526,16661,18 +1527,270336,18 +1528,16124,12 +1529,253395,18 +1530,38955,12 +1531,20992,53 +1532,6951,80 +1533,390526,10749 +1534,101929,18 +1535,10708,35 +1536,19403,80 +1537,341174,18 +1538,120802,12 +1539,505,80 +1540,17971,10751 +1541,189359,99 +1542,93263,18 +1543,174188,27 +1544,334074,53 +1545,388764,35 +1546,106131,18 +1547,90001,35 +1548,1421,18 +1549,19042,14 +1550,4147,80 +1551,245536,12 +1552,273481,18 +1553,226188,9648 +1554,8080,53 +1555,55853,10769 +1556,8199,10749 +1557,52803,16 +1558,11576,12 +1559,170279,35 +1560,544,10749 +1561,25921,18 +1562,22910,28 +1563,82368,35 +1564,160046,14 +1565,82716,14 +1566,16436,12 +1567,371818,18 +1568,171446,10749 +1569,49391,12 +1570,124013,80 +1571,16643,35 +1572,55712,53 +1573,41949,18 +1574,366566,35 +1575,64936,9648 +1576,15006,18 +1577,55989,28 +1578,488,12 +1579,15081,18 +1580,346490,18 +1581,146233,18 +1582,17288,28 +1583,42045,18 +1584,430250,27 +1585,102382,12 +1586,127144,16 +1587,33788,53 +1588,57737,16 +1589,100088,80 +1590,302528,53 +1591,107499,18 +1592,10364,18 +1593,182899,18 +1594,9624,53 +1595,81313,35 +1596,14489,10749 +1597,26866,10749 +1598,55720,18 +1599,109587,35 +1600,40387,27 +1601,13241,36 +1602,11055,80 +1603,1721,28 +1604,206563,18 +1605,60199,18 +1606,19618,80 +1607,83788,80 +1608,31347,35 +1609,52560,35 +1610,84030,12 +1611,11307,35 +1612,108282,18 +1613,25736,53 +1614,41378,28 +1615,1550,18 +1616,298695,53 +1617,38289,35 +1618,83013,10749 +1619,13616,18 +1620,403450,18 +1621,42298,9648 +1622,230295,35 +1623,89756,10770 +1624,331962,18 +1625,86241,18 +1626,378485,27 +1627,71114,18 +1628,9385,35 +1629,426670,18 +1630,21571,10769 +1631,14088,16 +1632,75,878 +1633,8965,16 +1634,9890,878 +1635,271954,10749 +1636,360592,10402 +1637,42752,18 +1638,31078,18 +1639,54715,18 +1640,24645,18 +1641,117942,27 +1642,57089,35 +1643,215881,53 +1644,36212,10751 +1645,71905,35 +1646,327225,10749 +1647,17911,27 +1648,44896,16 +1649,142012,53 +1650,16214,28 +1651,53654,80 +1652,23155,28 +1653,204802,18 +1654,50329,10749 +1655,57816,18 +1656,185273,35 +1657,64183,35 +1658,99361,35 +1659,111398,18 +1660,10550,12 +1661,10407,10749 +1662,245703,878 +1663,86820,18 +1664,17386,28 +1665,61563,35 +1666,70667,12 +1667,2087,53 +1668,110,18 +1669,44932,27 +1670,97614,53 +1671,44801,35 +1672,270946,35 +1673,180252,35 +1674,11959,35 +1675,51836,10770 +1676,10567,16 +1677,12079,18 +1678,105945,28 +1679,26293,9648 +1680,22404,53 +1681,315252,35 +1682,135204,53 +1683,42825,80 +1684,8371,18 +1685,11139,18 +1686,74057,35 +1687,302118,10751 +1688,27061,9648 +1689,359549,16 +1690,40217,53 +1691,325189,10751 +1692,82806,10769 +1693,97593,12 +1694,25707,80 +1695,1726,12 +1696,10890,35 +1697,32059,53 +1698,33356,18 +1699,119926,10752 +1700,98864,14 +1701,61109,10749 +1702,73116,18 +1703,397520,10770 +1704,390,18 +1705,282268,35 +1706,243683,18 +1707,43471,10749 +1708,22999,35 +1709,1273,35 +1710,28571,10749 +1711,32552,10402 +1712,97794,80 +1713,66926,12 +1714,306323,18 +1715,77060,14 +1716,50001,35 +1717,37936,9648 +1718,46592,10749 +1719,74035,27 +1720,84720,27 +1721,21159,27 +1722,73027,80 +1723,26142,18 +1724,99826,18 +1725,14651,18 +1726,332839,18 +1727,43228,27 +1728,282069,27 +1729,305932,35 +1730,74057,18 +1731,10137,35 +1732,64304,28 +1733,25633,80 +1734,5552,18 +1735,41581,35 +1736,30929,27 +1737,253283,35 +1738,19354,14 +1739,8998,10749 +1740,2300,14 +1741,366143,10751 +1742,19430,10752 +1743,19827,28 +1744,12279,10751 +1745,54146,14 +1746,294652,18 +1747,188468,10749 +1748,1369,53 +1749,25953,12 +1750,35284,28 +1751,102384,10749 +1752,838,18 +1753,113432,10751 +1754,227348,53 +1755,10257,28 +1756,17421,53 +1757,67174,10769 +1758,164504,28 +1759,58244,18 +1760,47404,80 +1761,289207,99 +1762,36373,53 +1763,135799,18 +1764,71945,27 +1765,43365,10402 +1766,16550,18 +1767,163706,53 +1768,15037,35 +1769,273084,9648 +1770,273868,35 +1771,9812,53 +1772,98612,18 +1773,286372,9648 +1774,322443,12 +1775,2280,14 +1776,10568,10749 +1777,409903,18 +1778,36162,10751 +1779,109466,53 +1780,74714,18 +1781,46729,878 +1782,52868,27 +1783,20372,10752 +1784,38547,10749 +1785,148408,10749 +1786,183932,10752 +1787,29352,878 +1788,83896,35 +1789,40817,35 +1790,76333,10749 +1791,64567,35 +1792,51947,18 +1793,242310,28 +1794,103201,28 +1795,388862,9648 +1796,25649,10749 +1797,45020,10749 +1798,210052,36 +1799,26736,35 +1800,107443,18 +1801,64861,10769 +1802,169382,99 +1803,45792,18 +1804,402582,35 +1805,28110,80 +1806,271234,80 +1807,11142,53 +1808,2487,53 +1809,47942,53 +1810,435707,35 +1811,2640,18 +1812,13062,16 +1813,24810,10770 +1814,104776,18 +1815,75510,35 +1816,278939,18 +1817,361183,878 +1818,25335,80 +1819,11298,27 +1820,24126,14 +1821,46121,80 +1822,69560,18 +1823,13258,35 +1824,140607,12 +1825,94568,35 +1826,357851,14 +1827,313646,10749 +1828,267506,53 +1829,286709,18 +1830,27653,16 +1831,16523,10751 +1832,47889,10749 +1833,29911,18 +1834,42787,53 +1835,13396,14 +1836,288259,99 +1837,6973,53 +1838,226792,18 +1839,102024,10749 +1840,22317,35 +1841,134394,27 +1842,30959,27 +1843,16019,18 +1844,70875,99 +1845,34013,10769 +1846,86703,878 +1847,72431,36 +1848,28510,53 +1849,11145,10749 +1850,23857,18 +1851,12523,18 +1852,34326,80 +1853,58995,10751 +1854,53128,10752 +1855,8270,18 +1856,381255,10749 +1857,332283,10749 +1858,11449,18 +1859,56151,18 +1860,27621,10402 +1861,157305,10751 +1862,15601,878 +1863,353533,10749 +1864,1589,35 +1865,69668,9648 +1866,2974,27 +1867,16017,18 +1868,145162,80 +1869,256092,28 +1870,209248,35 +1871,21843,99 +1872,9827,878 +1873,105906,28 +1874,69668,53 +1875,461615,16 +1876,638,18 +1877,70119,35 +1878,14387,28 +1879,61581,37 +1880,24440,53 +1881,26146,35 +1882,64310,10749 +1883,271164,18 +1884,448449,10402 +1885,53950,27 +1886,12205,53 +1887,56212,18 +1888,1924,878 +1889,128190,99 +1890,141635,18 +1891,247354,18 +1892,11234,878 +1893,50001,10749 +1894,51786,28 +1895,70368,18 +1896,9836,35 +1897,40221,878 +1898,126319,10751 +1899,110502,10751 +1900,5590,35 +1901,39195,878 +1902,8844,14 +1903,34128,18 +1904,9457,878 +1905,45649,27 +1906,48488,878 +1907,50350,18 +1908,39982,27 +1909,76703,35 +1910,89287,18 +1911,90762,14 +1912,4253,10751 +1913,107052,35 +1914,129553,18 +1915,100661,27 +1916,199373,53 +1917,70753,18 +1918,33460,53 +1919,29907,10769 +1920,22429,35 +1921,6522,35 +1922,73545,35 +1923,83785,9648 +1924,12407,12 +1925,27443,28 +1926,345637,16 +1927,403593,18 +1928,26301,18 +1929,363579,18 +1930,333091,18 +1931,56809,18 +1932,10754,80 +1933,62463,18 +1934,45988,28 +1935,334175,27 +1936,147722,80 +1937,83965,10751 +1938,32058,35 +1939,63584,10751 +1940,11694,37 +1941,39414,35 +1942,44190,80 +1943,17473,18 +1944,69727,35 +1945,30554,53 +1946,74505,27 +1947,13436,80 +1948,69535,878 +1949,80720,35 +1950,120657,10749 +1951,20871,35 +1952,310431,18 +1953,28510,878 +1954,360283,10402 +1955,52072,18 +1956,26758,37 +1957,22023,80 +1958,276906,35 +1959,32074,53 +1960,241170,99 +1961,4476,18 +1962,43562,12 +1963,31985,28 +1964,117212,80 +1965,39213,10749 +1966,31913,18 +1967,16560,28 +1968,52045,35 +1969,411741,35 +1970,169869,10749 +1971,29368,18 +1972,17282,53 +1973,21566,10749 +1974,44641,18 +1975,18222,10749 +1976,15170,12 +1977,70670,80 +1978,50696,18 +1979,9785,14 +1980,28533,53 +1981,78461,53 +1982,36325,99 +1983,91679,18 +1984,52655,28 +1985,49974,18 +1986,116303,10769 +1987,457,35 +1988,115161,10402 +1989,197624,878 +1990,14435,9648 +1991,32934,18 +1992,17274,18 +1993,24757,18 +1994,17825,35 +1995,10476,18 +1996,108365,18 +1997,15472,18 +1998,154,878 +1999,243940,27 +2000,252171,10749 +2001,80012,28 +2002,46094,35 +2003,50512,18 +2004,57327,18 +2005,178,28 +2006,6023,10749 +2007,4923,28 +2008,18082,18 +2009,11024,9648 +2010,327237,18 +2011,399810,35 +2012,45205,16 +2013,37700,18 +2014,37628,35 +2015,390376,35 +2016,14370,10749 +2017,118640,10749 +2018,13025,27 +2019,86556,10749 +2020,215646,99 +2021,65891,27 +2022,36797,35 +2023,199615,18 +2024,80545,18 +2025,62330,18 +2026,72545,12 +2027,132332,80 +2028,174594,18 +2029,22160,53 +2030,14145,27 +2031,284537,18 +2032,10603,10751 +2033,103432,18 +2034,1282,99 +2035,150338,80 +2036,939,10402 +2037,106355,878 +2038,355111,10751 +2039,19014,35 +2040,14134,18 +2041,78464,80 +2042,339116,14 +2043,309809,12 +2044,56292,12 +2045,147815,18 +2046,316883,99 +2047,779,27 +2048,39510,14 +2049,20325,10402 +2050,13962,35 +2051,14482,10769 +2052,118236,18 +2053,59231,18 +2054,2124,10749 +2055,42456,10749 +2056,47260,53 +2057,85910,10402 +2058,96106,14 +2059,24081,35 +2060,258147,99 +2061,304372,53 +2062,394645,53 +2063,690,80 +2064,10294,53 +2065,41301,27 +2066,107593,35 +2067,77381,35 +2068,32740,878 +2069,77534,18 +2070,10097,35 +2071,17136,18 +2072,12716,12 +2073,54022,28 +2074,17007,10751 +2075,165,878 +2076,11186,27 +2077,47003,53 +2078,361380,10751 +2079,19174,35 +2080,291866,878 +2081,11899,10751 +2082,408203,18 +2083,61528,10770 +2084,103902,10749 +2085,43790,10402 +2086,25674,10749 +2087,43912,10751 +2088,64357,35 +2089,205891,18 +2090,65055,53 +2091,21027,18 +2092,67102,18 +2093,43850,18 +2094,28031,10749 +2095,2760,18 +2096,54801,878 +2097,48205,36 +2098,45266,12 +2099,26378,18 +2100,44527,18 +2101,54845,18 +2102,20735,35 +2103,14770,99 +2104,103433,27 +2105,1251,12 +2106,42494,12 +2107,194509,35 +2108,33345,10402 +2109,54527,99 +2110,111960,10749 +2111,11235,18 +2112,371504,18 +2113,37628,18 +2114,258947,53 +2115,25005,10402 +2116,18206,18 +2117,744,10752 +2118,236399,53 +2119,60160,878 +2120,120872,14 +2121,253283,18 +2122,12476,53 +2123,39129,10751 +2124,12205,27 +2125,42120,53 +2126,18704,10749 +2127,43497,10749 +2128,18273,53 +2129,46124,18 +2130,40983,35 +2131,53150,35 +2132,77459,16 +2133,8282,35 +2134,272663,37 +2135,32558,14 +2136,63281,10749 +2137,4932,10749 +2138,86814,99 +2139,246655,878 +2140,102155,36 +2141,106546,28 +2142,37055,27 +2143,62297,18 +2144,46798,18 +2145,5965,18 +2146,41619,80 +2147,80717,18 +2148,194,35 +2149,6552,53 +2150,41609,10749 +2151,39324,28 +2152,76600,14 +2153,75,14 +2154,152100,35 +2155,10373,18 +2156,10207,18 +2157,19740,28 +2158,36334,80 +2159,77185,18 +2160,383914,10770 +2161,236399,18 +2162,9289,28 +2163,181454,99 +2164,70247,27 +2165,169721,99 +2166,112304,12 +2167,197611,18 +2168,54406,10751 +2169,50526,99 +2170,82430,10751 +2171,64407,80 +2172,12129,35 +2173,399790,10752 +2174,325039,27 +2175,44732,27 +2176,62720,9648 +2177,28384,10749 +2178,106944,35 +2179,12780,28 +2180,11591,35 +2181,30305,28 +2182,16182,27 +2183,35852,53 +2184,24775,12 +2185,131739,10752 +2186,71945,53 +2187,70500,28 +2188,426230,35 +2189,19150,28 +2190,42149,18 +2191,118889,18 +2192,16373,9648 +2193,39057,16 +2194,32091,28 +2195,428687,80 +2196,29577,10402 +2197,16820,28 +2198,21060,35 +2199,36786,18 +2200,262841,35 +2201,126127,10749 +2202,42623,10749 +2203,52395,53 +2204,49084,35 +2205,11912,35 +2206,124277,18 +2207,77882,35 +2208,9289,10752 +2209,15556,10749 +2210,78281,10749 +2211,86975,18 +2212,30298,18 +2213,288980,18 +2214,16164,18 +2215,8998,35 +2216,115332,10749 +2217,312497,878 +2218,21956,16 +2219,48706,12 +2220,10804,10751 +2221,43455,18 +2222,341077,28 +2223,127521,53 +2224,187993,27 +2225,140,80 +2226,45675,18 +2227,30624,18 +2228,408755,18 +2229,285532,35 +2230,40662,16 +2231,4191,9648 +2232,156288,35 +2233,26796,18 +2234,354667,9648 +2235,256474,28 +2236,13835,18 +2237,433086,99 +2238,20646,10769 +2239,49354,9648 +2240,6038,37 +2241,13555,27 +2242,10336,28 +2243,195068,18 +2244,20846,35 +2245,103732,99 +2246,360205,27 +2247,18209,35 +2248,406449,36 +2249,4893,53 +2250,388764,12 +2251,17445,28 +2252,205361,10770 +2253,311291,18 +2254,280477,18 +2255,300,35 +2256,147618,35 +2257,26566,28 +2258,19209,18 +2259,20879,12 +2260,64861,53 +2261,36288,53 +2262,103332,14 +2263,13834,18 +2264,12206,80 +2265,264729,10749 +2266,62694,18 +2267,74961,16 +2268,118,35 +2269,51947,28 +2270,23683,53 +2271,20640,10749 +2272,414547,35 +2273,315855,10749 +2274,8063,18 +2275,155597,18 +2276,21948,80 +2277,104945,878 +2278,88036,18 +2279,703,10749 +2280,31127,53 +2281,63449,18 +2282,84493,14 +2283,14642,18 +2284,310119,18 +2285,10744,18 +2286,16866,10751 +2287,245692,18 +2288,274504,53 +2289,323674,10749 +2290,104431,10769 +2291,142881,18 +2292,40866,14 +2293,15745,28 +2294,267977,18 +2295,70192,18 +2296,43367,12 +2297,43023,27 +2298,48677,12 +2299,21734,53 +2300,103620,27 +2301,10004,14 +2302,86520,36 +2303,99934,18 +2304,28001,35 +2305,353257,878 +2306,29695,53 +2307,357441,10751 +2308,316885,18 +2309,317168,27 +2310,77887,10751 +2311,158967,9648 +2312,11055,35 +2313,89330,80 +2314,36915,53 +2315,53945,28 +2316,240733,53 +2317,84617,10749 +2318,52913,35 +2319,290825,53 +2320,325712,18 +2321,287301,35 +2322,411081,10749 +2323,9664,12 +2324,18208,18 +2325,325690,35 +2326,186079,99 +2327,42604,10749 +2328,42852,18 +2329,9779,35 +2330,27904,10749 +2331,63505,36 +2332,49353,27 +2333,56235,99 +2334,17046,18 +2335,549,18 +2336,41283,53 +2337,38027,28 +2338,63584,35 +2339,82157,10751 +2340,267466,27 +2341,56135,10749 +2342,26689,53 +2343,1381,878 +2344,203351,878 +2345,48199,10769 +2346,62616,18 +2347,49418,35 +2348,2503,53 +2349,66178,18 +2350,49098,99 +2351,19187,35 +2352,114982,18 +2353,106358,878 +2354,116733,10751 +2355,17303,35 +2356,123109,27 +2357,68004,10749 +2358,90034,35 +2359,3024,878 +2360,41077,16 +2361,64683,99 +2362,60665,28 +2363,122857,28 +2364,33510,18 +2365,72660,10749 +2366,9591,35 +2367,14558,35 +2368,126418,35 +2369,181656,36 +2370,38951,18 +2371,17386,53 +2372,73628,10751 +2373,73420,10752 +2374,121662,18 +2375,133575,10749 +2376,31713,28 +2377,125063,10751 +2378,383064,18 +2379,66109,35 +2380,17744,18 +2381,43860,28 +2382,81274,10751 +2383,44746,18 +2384,407575,18 +2385,306952,10749 +2386,63360,53 +2387,5922,18 +2388,28297,18 +2389,44047,18 +2390,10333,18 +2391,29872,10749 +2392,21468,35 +2393,58704,35 +2394,34650,10749 +2395,4825,10749 +2396,37984,53 +2397,29343,27 +2398,84718,10749 +2399,14138,12 +2400,198511,18 +2401,4375,28 +2402,9943,35 +2403,195022,35 +2404,45562,36 +2405,51939,10749 +2406,114108,10751 +2407,34231,27 +2408,113038,18 +2409,194104,18 +2410,17295,10752 +2411,179103,18 +2412,94727,99 +2413,27085,12 +2414,42604,35 +2415,71771,99 +2416,126516,18 +2417,16137,27 +2418,21181,28 +2419,348389,28 +2420,48594,27 +2421,11531,53 +2422,215032,99 +2423,51249,12 +2424,299780,35 +2425,142802,27 +2426,62670,16 +2427,2989,53 +2428,34995,28 +2429,31380,18 +2430,52856,18 +2431,104041,28 +2432,62046,9648 +2433,105945,18 +2434,387957,28 +2435,82716,35 +2436,324670,53 +2437,21028,10749 +2438,341559,80 +2439,89921,28 +2440,292062,28 +2441,86023,53 +2442,83059,18 +2443,27019,18 +2444,378607,53 +2445,45505,80 +2446,335051,35 +2447,19348,18 +2448,2075,35 +2449,251419,35 +2450,348507,18 +2451,286657,878 +2452,18273,18 +2453,18722,35 +2454,14565,28 +2455,60307,10751 +2456,76101,28 +2457,194817,18 +2458,19936,27 +2459,86472,28 +2460,11848,35 +2461,82191,18 +2462,244783,18 +2463,97936,18 +2464,11035,35 +2465,426253,35 +2466,285400,35 +2467,3024,18 +2468,38417,53 +2469,81538,10769 +2470,10917,18 +2471,75145,18 +2472,45725,35 +2473,9272,27 +2474,26323,80 +2475,359105,36 +2476,5928,18 +2477,192990,18 +2478,117098,35 +2479,269149,10751 +2480,169800,36 +2481,80276,28 +2482,43499,28 +2483,18492,35 +2484,268920,35 +2485,429200,53 +2486,35118,35 +2487,42533,28 +2488,268920,80 +2489,186606,35 +2490,6417,18 +2491,356757,18 +2492,44732,18 +2493,6976,27 +2494,332411,28 +2495,42476,53 +2496,143240,35 +2497,9717,28 +2498,181574,10751 +2499,19957,10749 +2500,73700,10402 +2501,27145,18 +2502,33792,10749 +2503,14651,10749 +2504,96951,27 +2505,126315,18 +2506,230680,18 +2507,104931,99 +2508,36635,18 +2509,40793,80 +2510,15310,18 +2511,10862,18 +2512,14123,35 +2513,25807,9648 +2514,438144,99 +2515,14073,28 +2516,30330,18 +2517,408509,18 +2518,13506,10752 +2519,145247,12 +2520,114790,18 +2521,100275,27 +2522,49787,18 +2523,36253,18 +2524,32202,16 +2525,166621,10402 +2526,15734,35 +2527,108665,28 +2528,329682,36 +2529,45398,28 +2530,302960,10751 +2531,80032,10749 +2532,33792,18 +2533,70057,28 +2534,16486,16 +2535,43256,18 +2536,36162,16 +2537,82627,99 +2538,36175,35 +2539,149657,18 +2540,36960,878 +2541,31503,10749 +2542,69635,10749 +2543,191465,35 +2544,257088,80 +2545,43327,18 +2546,38031,18 +2547,43891,18 +2548,42837,18 +2549,344656,37 +2550,308032,18 +2551,14423,28 +2552,36657,878 +2553,8341,10749 +2554,7304,28 +2555,18937,16 +2556,232462,28 +2557,44945,80 +2558,39824,27 +2559,134155,18 +2560,4688,12 +2561,129628,35 +2562,48333,27 +2563,5491,878 +2564,99,18 +2565,382597,28 +2566,202214,12 +2567,11145,18 +2568,188357,12 +2569,41805,28 +2570,382597,35 +2571,11234,53 +2572,58704,28 +2573,39907,36 +2574,21430,18 +2575,85230,53 +2576,84944,27 +2577,269,80 +2578,13962,10751 +2579,10109,12 +2580,375355,53 +2581,281291,10749 +2582,51285,35 +2583,8584,28 +2584,25500,9648 +2585,25707,53 +2586,85472,10402 +2587,278978,18 +2588,54146,80 +2589,74154,10769 +2590,5413,18 +2591,105287,10402 +2592,43157,10402 +2593,11511,10751 +2594,249264,10749 +2595,16331,37 +2596,18801,9648 +2597,15468,53 +2598,83430,18 +2599,67130,16 +2600,65134,35 +2601,9904,16 +2602,39123,9648 +2603,2196,35 +2604,29117,18 +2605,259694,35 +2606,15577,18 +2607,293412,18 +2608,282983,18 +2609,694,53 +2610,9966,27 +2611,65650,53 +2612,77338,35 +2613,119213,53 +2614,38237,12 +2615,148435,35 +2616,408550,99 +2617,17687,80 +2618,20287,53 +2619,6068,35 +2620,10326,10749 +2621,53354,27 +2622,15577,80 +2623,146712,14 +2624,34512,35 +2625,353216,99 +2626,48885,35 +2627,17386,18 +2628,93828,28 +2629,57419,36 +2630,177677,12 +2631,76229,18 +2632,14830,28 +2633,361571,18 +2634,7547,10749 +2635,86820,53 +2636,26866,28 +2637,211179,12 +2638,29352,35 +2639,233639,10751 +2640,31413,18 +2641,24486,9648 +2642,350762,35 +2643,20414,10751 +2644,17725,35 +2645,122,28 +2646,42501,18 +2647,138502,18 +2648,430834,99 +2649,183962,80 +2650,2721,36 +2651,9607,10751 +2652,445916,27 +2653,16436,28 +2654,99329,10769 +2655,16016,28 +2656,242090,18 +2657,212934,35 +2658,42149,27 +2659,6972,18 +2660,17590,53 +2661,5590,10749 +2662,91607,35 +2663,12720,27 +2664,64398,18 +2665,36612,18 +2666,30876,12 +2667,27653,14 +2668,25918,18 +2669,393263,16 +2670,13526,9648 +2671,163942,18 +2672,145220,35 +2673,64481,10752 +2674,14011,12 +2675,105768,18 +2676,8932,18 +2677,108822,18 +2678,17133,53 +2679,18763,80 +2680,105384,53 +2681,155556,99 +2682,2197,18 +2683,6948,53 +2684,4279,12 +2685,42325,18 +2686,8341,12 +2687,48319,35 +2688,18040,9648 +2689,109453,18 +2690,15807,28 +2691,184219,10749 +2692,80281,10749 +2693,88641,18 +2694,47876,10751 +2695,39833,10749 +2696,242093,99 +2697,4964,35 +2698,39939,80 +2699,317214,12 +2700,76829,10749 +2701,43688,35 +2702,115565,9648 +2703,64465,80 +2704,80351,35 +2705,39107,16 +2706,16171,18 +2707,22559,878 +2708,43935,53 +2709,63859,14 +2710,43213,28 +2711,482,80 +2712,65718,18 +2713,16175,18 +2714,2080,28 +2715,82,12 +2716,33510,27 +2717,16563,18 +2718,421365,9648 +2719,371462,18 +2720,270221,27 +2721,22317,37 +2722,69152,28 +2723,51955,53 +2724,299730,28 +2725,131351,10770 +2726,8556,35 +2727,47561,12 +2728,28533,27 +2729,63736,28 +2730,373200,18 +2731,125521,14 +2732,58402,18 +2733,54525,53 +2734,63989,35 +2735,15213,28 +2736,134350,18 +2737,63505,80 +2738,129,10751 +2739,104973,27 +2740,287628,18 +2741,29058,878 +2742,27446,28 +2743,216153,10770 +2744,209413,35 +2745,14063,18 +2746,343283,18 +2747,18002,80 +2748,134350,28 +2749,164954,16 +2750,4191,53 +2751,376501,37 +2752,169314,14 +2753,49852,14 +2754,84285,28 +2755,28293,10402 +2756,191112,10749 +2757,266425,53 +2758,58886,10769 +2759,14207,14 +2760,67342,28 +2761,3784,18 +2762,336265,878 +2763,18165,53 +2764,53380,99 +2765,53648,10769 +2766,13312,27 +2767,29290,27 +2768,34588,35 +2769,45671,10749 +2770,94170,35 +2771,58918,80 +2772,38526,28 +2773,13459,16 +2774,90932,10751 +2775,367412,18 +2776,254918,18 +2777,83714,10749 +2778,18040,18 +2779,87428,35 +2780,45679,80 +2781,32891,14 +2782,18375,18 +2783,9274,35 +2784,24578,10769 +2785,27989,28 +2786,135718,35 +2787,46059,35 +2788,10008,53 +2789,103432,53 +2790,121351,37 +2791,8336,35 +2792,13517,16 +2793,9664,10749 +2794,10087,18 +2795,64678,18 +2796,21181,35 +2797,8382,53 +2798,38765,37 +2799,344120,28 +2800,290764,80 +2801,197177,80 +2802,76163,12 +2803,7288,35 +2804,164558,10402 +2805,91390,10749 +2806,126083,10749 +2807,13056,80 +2808,259,35 +2809,18836,80 +2810,70712,35 +2811,25694,28 +2812,190269,80 +2813,166221,35 +2814,59861,10749 +2815,130055,35 +2816,25426,12 +2817,255869,10402 +2818,21348,14 +2819,26517,27 +2820,25430,18 +2821,44746,10751 +2822,7340,53 +2823,296194,35 +2824,29572,10752 +2825,374247,10770 +2826,22051,10749 +2827,56151,10749 +2828,20,10749 +2829,322,53 +2830,257088,28 +2831,15934,10402 +2832,12427,18 +2833,43195,18 +2834,210092,18 +2835,73194,10752 +2836,407887,36 +2837,4923,878 +2838,74437,9648 +2839,362765,35 +2840,14126,27 +2841,39324,16 +2842,32067,28 +2843,46806,9648 +2844,24405,10749 +2845,341077,80 +2846,266856,10749 +2847,258251,12 +2848,3513,12 +2849,330588,18 +2850,2978,35 +2851,12432,10749 +2852,5967,10749 +2853,14809,80 +2854,133328,37 +2855,14611,878 +2856,63859,35 +2857,44634,18 +2858,31672,28 +2859,119569,878 +2860,82501,53 +2861,10645,35 +2862,8053,12 +2863,44896,37 +2864,4133,18 +2865,390930,18 +2866,289960,10402 +2867,28775,878 +2868,59726,53 +2869,24086,878 +2870,210940,878 +2871,6976,53 +2872,53472,10749 +2873,539,18 +2874,118150,80 +2875,31005,10749 +2876,140648,18 +2877,36634,18 +2878,80941,35 +2879,73420,18 +2880,74126,18 +2881,42725,18 +2882,161495,35 +2883,35139,53 +2884,24801,10770 +2885,435737,10751 +2886,261508,18 +2887,62684,35 +2888,101766,10769 +2889,5155,10749 +2890,10611,18 +2891,2453,28 +2892,6145,53 +2893,16096,35 +2894,27935,14 +2895,79234,14 +2896,186988,18 +2897,241374,18 +2898,45098,18 +2899,43342,27 +2900,10440,35 +2901,45336,18 +2902,2262,18 +2903,52021,14 +2904,87302,878 +2905,45098,10749 +2906,10075,18 +2907,195544,35 +2908,6171,878 +2909,117251,18 +2910,2742,80 +2911,174958,18 +2912,104522,16 +2913,11358,28 +2914,31385,27 +2915,356332,99 +2916,99312,10770 +2917,18557,9648 +2918,10694,35 +2919,10326,18 +2920,34482,18 +2921,85516,18 +2922,75623,27 +2923,445993,28 +2924,63498,10749 +2925,14422,35 +2926,103640,10749 +2927,23518,53 +2928,364690,18 +2929,112973,12 +2930,26961,878 +2931,22398,53 +2932,55604,12 +2933,67162,16 +2934,59881,10402 +2935,63045,35 +2936,262542,18 +2937,40252,18 +2938,43045,27 +2939,117,80 +2940,62728,80 +2941,149465,36 +2942,341490,36 +2943,187028,18 +2944,118121,18 +2945,19715,16 +2946,41402,9648 +2947,42416,35 +2948,17889,14 +2949,21950,80 +2950,42521,35 +2951,76341,12 +2952,15261,35 +2953,12614,10402 +2954,103260,10770 +2955,51549,18 +2956,40466,28 +2957,37437,18 +2958,16659,10749 +2959,26368,18 +2960,208434,18 +2961,331958,35 +2962,186881,28 +2963,58,14 +2964,301272,35 +2965,253309,99 +2966,341689,10402 +2967,18684,18 +2968,53648,35 +2969,83865,10751 +2970,193,53 +2971,21866,10749 +2972,10889,18 +2973,448847,80 +2974,39436,80 +2975,88518,28 +2976,323552,35 +2977,29313,27 +2978,72094,80 +2979,99367,35 +2980,21070,80 +2981,159667,18 +2982,94340,18 +2983,107891,12 +2984,134662,35 +2985,20196,14 +2986,36214,12 +2987,97794,10769 +2988,93562,37 +2989,26864,18 +2990,246415,18 +2991,30349,53 +2992,15940,35 +2993,38415,10769 +2994,286512,18 +2995,79221,35 +2996,64868,18 +2997,174594,80 +2998,63924,28 +2999,259975,37 +3000,9963,53 +3001,62764,10751 +3002,16938,9648 +3003,24584,18 +3004,244534,18 +3005,268099,10749 +3006,71114,35 +3007,2080,53 +3008,369567,12 +3009,3933,14 +3010,17457,27 +3011,2001,18 +3012,127105,53 +3013,54256,10749 +3014,180929,35 +3015,80771,10749 +3016,127257,10769 +3017,109354,35 +3018,11880,28 +3019,85009,80 +3020,56601,18 +3021,416256,27 +3022,68444,10749 +3023,27653,12 +3024,50327,12 +3025,265741,10770 +3026,2963,35 +3027,42307,53 +3028,266285,37 +3029,25078,10751 +3030,11832,35 +3031,302472,35 +3032,21057,18 +3033,192675,53 +3034,106358,28 +3035,64847,10402 +3036,834,53 +3037,11654,53 +3038,65035,36 +3039,23599,18 +3040,21138,18 +3041,47638,18 +3042,270303,27 +3043,70090,36 +3044,45875,53 +3045,15616,35 +3046,22968,35 +3047,51999,878 +3048,427045,10770 +3049,36658,878 +3050,23544,10751 +3051,26156,18 +3052,263472,18 +3053,12994,14 +3054,85494,878 +3055,110148,18 +3056,56947,35 +3057,55681,27 +3058,323929,18 +3059,153518,10751 +3060,84233,27 +3061,5319,10749 +3062,49954,99 +3063,403605,28 +3064,394668,99 +3065,286971,14 +3066,18729,18 +3067,398786,80 +3068,14787,35 +3069,47955,18 +3070,203264,80 +3071,83782,18 +3072,163870,18 +3073,33729,10749 +3074,56264,53 +3075,48207,10749 +3076,13912,10749 +3077,12912,10749 +3078,21041,53 +3079,178341,18 +3080,28893,12 +3081,97632,28 +3082,84337,18 +3083,5332,18 +3084,201749,18 +3085,214641,27 +3086,49013,10751 +3087,32067,35 +3088,29538,35 +3089,79596,10751 +3090,29365,18 +3091,28325,27 +3092,286595,18 +3093,75138,12 +3094,289159,99 +3095,301804,14 +3096,26180,35 +3097,206197,9648 +3098,12652,18 +3099,285803,28 +3100,26514,10751 +3101,61008,10769 +3102,2907,27 +3103,55922,35 +3104,9529,18 +3105,84865,35 +3106,181456,80 +3107,63938,18 +3108,130925,10751 +3109,77930,18 +3110,37189,18 +3111,71701,878 +3112,47535,18 +3113,28943,28 +3114,51141,18 +3115,16907,35 +3116,222619,878 +3117,32140,10751 +3118,237796,10749 +3119,78210,18 +3120,26505,14 +3121,53410,35 +3122,66224,18 +3123,298935,35 +3124,58515,16 +3125,456101,18 +3126,17691,37 +3127,1724,12 +3128,11887,10749 +3129,23637,10769 +3130,10047,28 +3131,283489,10749 +3132,10795,18 +3133,64805,53 +3134,13668,18 +3135,78464,28 +3136,31417,27 +3137,482,53 +3138,9948,10751 +3139,12249,18 +3140,11351,53 +3141,120370,28 +3142,55347,18 +3143,201124,35 +3144,62761,53 +3145,74705,10751 +3146,43833,9648 +3147,21959,18 +3148,16563,37 +3149,94135,18 +3150,25994,18 +3151,15712,10749 +3152,18178,9648 +3153,204839,27 +3154,28367,10751 +3155,25407,18 +3156,99261,9648 +3157,214,80 +3158,23590,37 +3159,218351,35 +3160,14138,18 +3161,3114,37 +3162,6877,35 +3163,37958,18 +3164,16313,27 +3165,26514,18 +3166,4644,35 +3167,26331,53 +3168,9354,878 +3169,332741,99 +3170,47200,18 +3171,76047,35 +3172,332827,18 +3173,104083,18 +3174,417820,10402 +3175,94820,16 +3176,218778,10751 +3177,57809,35 +3178,83195,35 +3179,64526,28 +3180,302666,12 +3181,12764,28 +3182,4882,18 +3183,31548,10402 +3184,41783,18 +3185,46982,35 +3186,18691,18 +3187,10425,53 +3188,95536,35 +3189,108789,28 +3190,249914,18 +3191,121940,18 +3192,280092,53 +3193,197737,18 +3194,205891,53 +3195,418029,878 +3196,201749,35 +3197,379335,18 +3198,149509,53 +3199,285245,35 +3200,329809,10749 +3201,67900,9648 +3202,347328,878 +3203,36883,99 +3204,81220,18 +3205,187993,35 +3206,28484,80 +3207,167012,10770 +3208,39982,53 +3209,41073,12 +3210,43046,36 +3211,45527,28 +3212,244403,18 +3213,38448,10749 +3214,122930,35 +3215,330275,18 +3216,1818,80 +3217,31258,12 +3218,1969,37 +3219,270383,10770 +3220,63096,18 +3221,290762,18 +3222,12855,10749 +3223,10918,35 +3224,356758,18 +3225,139862,18 +3226,72313,9648 +3227,339145,18 +3228,86732,18 +3229,29805,80 +3230,32635,18 +3231,10747,18 +3232,70322,28 +3233,65674,37 +3234,59296,35 +3235,35683,18 +3236,45522,28 +3237,32328,10749 +3238,21966,18 +3239,275065,10751 +3240,53179,35 +3241,17692,27 +3242,240733,80 +3243,30374,878 +3244,2637,18 +3245,755,53 +3246,77625,10749 +3247,152042,53 +3248,12639,37 +3249,33005,878 +3250,4476,10749 +3251,13507,18 +3252,85125,99 +3253,399219,16 +3254,15527,35 +3255,60599,53 +3256,26949,10749 +3257,13653,80 +3258,393521,18 +3259,76198,35 +3260,129533,16 +3261,42934,10749 +3262,375082,18 +3263,18671,18 +3264,31265,35 +3265,293452,53 +3266,10493,18 +3267,276550,10751 +3268,69315,28 +3269,9495,53 +3270,277710,18 +3271,10137,16 +3272,257912,53 +3273,297762,12 +3274,9042,28 +3275,9443,18 +3276,177335,18 +3277,53949,878 +3278,26946,878 +3279,79048,35 +3280,13614,10752 +3281,250671,99 +3282,109491,18 +3283,308165,53 +3284,28452,878 +3285,20941,18 +3286,130272,99 +3287,7234,14 +3288,47588,10769 +3289,300424,28 +3290,9568,53 +3291,22615,80 +3292,390357,18 +3293,48118,53 +3294,16175,53 +3295,18912,27 +3296,25037,10752 +3297,58309,35 +3298,17692,53 +3299,134890,53 +3300,157898,18 +3301,359471,53 +3302,3513,28 +3303,13180,10752 +3304,19423,35 +3305,82134,10749 +3306,32237,27 +3307,362154,53 +3308,85715,10752 +3309,28025,10749 +3310,51476,80 +3311,38743,18 +3312,270946,16 +3313,381691,35 +3314,107250,18 +3315,50506,35 +3316,84354,35 +3317,23516,35 +3318,1813,27 +3319,4253,10769 +3320,20153,18 +3321,12994,18 +3322,367735,35 +3323,71689,10770 +3324,39195,27 +3325,28736,28 +3326,44690,28 +3327,78318,18 +3328,404567,18 +3329,99,35 +3330,422603,12 +3331,257088,53 +3332,3172,28 +3333,22267,10749 +3334,31011,18 +3335,248417,14 +3336,791,27 +3337,114172,18 +3338,51571,18 +3339,43277,10749 +3340,359870,18 +3341,38931,35 +3342,46029,10749 +3343,5393,10751 +3344,3484,14 +3345,74,53 +3346,112044,878 +3347,193650,10751 +3348,13655,10751 +3349,46729,14 +3350,54795,35 +3351,75162,10749 +3352,3037,10749 +3353,43692,18 +3354,104744,18 +3355,14650,18 +3356,83475,10749 +3357,229296,10402 +3358,80350,18 +3359,21671,99 +3360,15267,10752 +3361,6934,18 +3362,42293,18 +3363,33541,37 +3364,366045,18 +3365,80435,35 +3366,81223,35 +3367,2124,53 +3368,24150,27 +3369,379335,35 +3370,103938,28 +3371,284274,16 +3372,24750,53 +3373,67509,18 +3374,21024,10402 +3375,128412,10749 +3376,98096,10402 +3377,79580,18 +3378,58985,10402 +3379,4931,80 +3380,202239,18 +3381,42456,35 +3382,83195,18 +3383,21752,35 +3384,332979,18 +3385,41468,37 +3386,374473,18 +3387,175457,16 +3388,14818,10769 +3389,64450,18 +3390,28465,28 +3391,94348,28 +3392,209112,28 +3393,278717,18 +3394,119694,10770 +3395,19809,10749 +3396,14419,18 +3397,11113,10749 +3398,20527,10769 +3399,2061,28 +3400,19325,878 +3401,48412,10752 +3402,145963,16 +3403,267852,53 +3404,108048,12 +3405,209764,80 +3406,56653,27 +3407,43499,18 +3408,10921,28 +3409,28665,35 +3410,20108,18 +3411,25643,10749 +3412,30547,18 +3413,198663,878 +3414,197854,878 +3415,228355,18 +3416,49446,18 +3417,15906,10751 +3418,24348,10402 +3419,9928,10751 +3420,8144,37 +3421,8272,18 +3422,6951,53 +3423,18763,35 +3424,39415,18 +3425,42418,18 +3426,381737,18 +3427,67499,10769 +3428,51902,12 +3429,17421,10751 +3430,28732,28 +3431,29076,28 +3432,1661,35 +3433,146216,35 +3434,11719,35 +3435,33916,99 +3436,39517,18 +3437,455601,35 +3438,1163,10770 +3439,199374,10751 +3440,371446,10749 +3441,392660,14 +3442,73933,27 +3443,393172,53 +3444,259358,12 +3445,21371,18 +3446,375794,35 +3447,46623,12 +3448,226936,35 +3449,27196,18 +3450,33740,10751 +3451,17609,53 +3452,187442,35 +3453,20017,18 +3454,57089,16 +3455,12102,18 +3456,125835,35 +3457,270469,99 +3458,19325,16 +3459,86603,28 +3460,9690,18 +3461,261207,99 +3462,41301,53 +3463,41963,10749 +3464,14907,878 +3465,19623,53 +3466,102961,18 +3467,8471,80 +3468,251,14 +3469,320910,35 +3470,4986,18 +3471,12186,35 +3472,44626,18 +3473,45335,10402 +3474,116894,18 +3475,51739,16 +3476,2963,12 +3477,11373,35 +3478,413279,878 +3479,113739,53 +3480,30126,35 +3481,237796,35 +3482,11330,28 +3483,310602,35 +3484,37030,35 +3485,18927,18 +3486,181533,12 +3487,10797,35 +3488,62045,18 +3489,91691,35 +3490,19200,35 +3491,31634,53 +3492,53622,18 +3493,10565,18 +3494,296633,18 +3495,38055,35 +3496,334299,10749 +3497,195796,53 +3498,86236,10770 +3499,345925,53 +3500,247436,18 +3501,45665,16 +3502,875,18 +3503,7511,18 +3504,22448,18 +3505,33356,878 +3506,23843,53 +3507,105981,10749 +3508,9095,18 +3509,14639,99 +3510,298722,35 +3511,52959,18 +3512,180929,80 +3513,361146,18 +3514,360606,10770 +3515,411442,12 +3516,125943,18 +3517,27417,27 +3518,37532,18 +3519,17170,18 +3520,493,12 +3521,87229,35 +3522,432883,35 +3523,14611,28 +3524,350060,10749 +3525,24986,10749 +3526,439050,10751 +3527,15906,16 +3528,177043,35 +3529,27019,14 +3530,172008,10769 +3531,108222,18 +3532,14435,27 +3533,42944,35 +3534,817,12 +3535,105576,35 +3536,307696,18 +3537,312831,14 +3538,79113,18 +3539,13090,18 +3540,44932,878 +3541,4820,18 +3542,14452,53 +3543,360341,10402 +3544,46227,18 +3545,10783,35 +3546,120357,18 +3547,54659,18 +3548,14096,10769 +3549,45213,35 +3550,2637,27 +3551,325592,10749 +3552,37438,10769 +3553,142757,10749 +3554,41764,18 +3555,198795,9648 +3556,189151,35 +3557,11509,80 +3558,106112,16 +3559,29959,27 +3560,339530,27 +3561,10033,35 +3562,104062,18 +3563,168259,28 +3564,14931,80 +3565,2144,80 +3566,41209,53 +3567,81313,18 +3568,84569,10752 +3569,95015,18 +3570,9550,28 +3571,36243,12 +3572,24993,12 +3573,9956,18 +3574,20439,18 +3575,49190,27 +3576,41468,28 +3577,14052,35 +3578,41054,18 +3579,78383,27 +3580,16791,12 +3581,315439,36 +3582,38965,35 +3583,52247,53 +3584,240913,53 +3585,312940,12 +3586,189225,99 +3587,185987,10752 +3588,10173,53 +3589,72474,37 +3590,92848,10749 +3591,86828,35 +3592,173443,16 +3593,286971,9648 +3594,10992,35 +3595,78691,9648 +3596,211179,28 +3597,50364,10749 +3598,64130,10751 +3599,22029,28 +3600,194407,35 +3601,153795,18 +3602,448449,99 +3603,64084,53 +3604,37100,16 +3605,37438,18 +3606,348857,35 +3607,77864,9648 +3608,42734,35 +3609,8080,80 +3610,313074,18 +3611,28421,18 +3612,51285,18 +3613,285532,10749 +3614,189,80 +3615,40034,18 +3616,98096,16 +3617,52827,10751 +3618,60759,80 +3619,105584,53 +3620,26612,12 +3621,119694,18 +3622,61799,35 +3623,75576,53 +3624,186584,18 +3625,21481,10770 +3626,1554,18 +3627,59722,28 +3628,35696,18 +3629,77958,18 +3630,27245,878 +3631,42473,10402 +3632,1999,53 +3633,16147,28 +3634,24749,878 +3635,132426,18 +3636,443319,878 +3637,96089,37 +3638,121636,35 +3639,60853,18 +3640,5289,18 +3641,40983,878 +3642,2009,18 +3643,522,35 +3644,403119,18 +3645,86647,28 +3646,22314,18 +3647,85160,27 +3648,51364,35 +3649,26336,99 +3650,84617,16 +3651,48780,10769 +3652,10041,27 +3653,44140,10402 +3654,213683,10749 +3655,334890,9648 +3656,5753,28 +3657,212156,16 +3658,69605,10749 +3659,292014,14 +3660,227257,10751 +3661,32654,28 +3662,21837,10751 +3663,83223,878 +3664,16643,18 +3665,94811,35 +3666,15081,53 +3667,28032,18 +3668,20174,28 +3669,43978,18 +3670,598,80 +3671,18971,35 +3672,302828,10752 +3673,43095,18 +3674,72638,18 +3675,29989,18 +3676,82684,18 +3677,482,28 +3678,109424,53 +3679,38164,35 +3680,24883,18 +3681,25953,80 +3682,75363,53 +3683,39347,35 +3684,44680,878 +3685,858,18 +3686,16137,18 +3687,31921,18 +3688,42794,10402 +3689,71859,53 +3690,144331,35 +3691,323426,35 +3692,59230,18 +3693,12601,10769 +3694,58416,10749 +3695,155426,35 +3696,772,10751 +3697,87123,53 +3698,186971,18 +3699,376391,99 +3700,24154,18 +3701,11788,36 +3702,394822,18 +3703,577,14 +3704,49609,28 +3705,254869,35 +3706,64784,10769 +3707,28238,18 +3708,19096,10752 +3709,186019,99 +3710,110381,18 +3711,44626,53 +3712,76349,18 +3713,18178,53 +3714,16687,28 +3715,32328,16 +3716,179105,878 +3717,9664,36 +3718,1817,18 +3719,573,53 +3720,55190,10751 +3721,82040,18 +3722,24632,27 +3723,28973,18 +3724,17926,10749 +3725,24126,27 +3726,130925,16 +3727,61035,35 +3728,188102,53 +3729,38982,10749 +3730,371741,10749 +3731,153228,37 +3732,16999,14 +3733,51994,18 +3734,28665,10749 +3735,397422,18 +3736,366692,35 +3737,26889,18 +3738,171075,80 +3739,13279,18 +3740,18381,18 +3741,54559,10751 +3742,31061,35 +3743,174487,80 +3744,8281,18 +3745,11839,12 +3746,256628,99 +3747,417489,35 +3748,141819,28 +3749,45132,18 +3750,36811,10749 +3751,116554,10752 +3752,238972,18 +3753,79234,10749 +3754,31805,35 +3755,87953,18 +3756,11839,28 +3757,14977,36 +3758,14750,10749 +3759,38000,10749 +3760,320011,80 +3761,15379,28 +3762,64465,53 +3763,82865,35 +3764,181456,18 +3765,84397,10402 +3766,20200,35 +3767,38432,18 +3768,75315,37 +3769,77762,16 +3770,29338,27 +3771,63762,10769 +3772,10603,12 +3773,139176,18 +3774,122709,18 +3775,69401,18 +3776,43388,10749 +3777,244403,35 +3778,295627,27 +3779,16066,10749 +3780,4380,10749 +3781,167956,27 +3782,1480,18 +3783,16176,12 +3784,269650,28 +3785,169298,80 +3786,17295,36 +3787,866,18 +3788,192558,10749 +3789,32124,53 +3790,287483,18 +3791,69315,878 +3792,3016,878 +3793,44658,10749 +3794,17935,36 +3795,35895,18 +3796,12594,14 +3797,29067,878 +3798,42571,80 +3799,14476,28 +3800,47863,35 +3801,89595,99 +3802,120478,27 +3803,37731,80 +3804,105548,37 +3805,46667,35 +3806,32834,14 +3807,240832,878 +3808,200511,80 +3809,43550,10749 +3810,168202,16 +3811,27446,18 +3812,43594,18 +3813,15616,10752 +3814,18739,35 +3815,17479,10769 +3816,52920,10769 +3817,75174,28 +3818,201365,10749 +3819,11380,53 +3820,263065,18 +3821,333371,18 +3822,49418,16 +3823,46760,35 +3824,169068,35 +3825,1938,80 +3826,140894,18 +3827,301304,35 +3828,143380,18 +3829,21905,18 +3830,261036,18 +3831,9016,878 +3832,25694,14 +3833,37189,10749 +3834,333484,37 +3835,59142,10402 +3836,25682,12 +3837,86608,28 +3838,52827,18 +3839,9404,35 +3840,56533,28 +3841,186881,12 +3842,229182,27 +3843,312138,18 +3844,395479,99 +3845,30634,35 +3846,57351,28 +3847,987,35 +3848,66628,28 +3849,359459,10770 +3850,85549,10769 +3851,68444,18 +3852,6978,12 +3853,49028,80 +3854,17479,10752 +3855,44690,53 +3856,110887,35 +3857,1579,53 +3858,37590,35 +3859,31985,878 +3860,10870,37 +3861,64983,10769 +3862,9095,53 +3863,11000,35 +3864,954,53 +3865,21753,18 +3866,19957,28 +3867,112973,10749 +3868,1904,10749 +3869,252034,35 +3870,73799,10749 +3871,11385,12 +3872,63706,27 +3873,274483,18 +3874,18282,10749 +3875,199056,18 +3876,24624,53 +3877,9966,9648 +3878,97206,18 +3879,100247,16 +3880,29835,53 +3881,11333,28 +3882,84318,99 +3883,11142,80 +3884,63273,53 +3885,10344,53 +3886,40028,878 +3887,452142,10770 +3888,128396,18 +3889,64780,10769 +3890,52655,80 +3891,37238,37 +3892,14262,80 +3893,224251,18 +3894,44338,16 +3895,144613,18 +3896,335970,35 +3897,660,28 +3898,20718,35 +3899,292656,10749 +3900,152113,99 +3901,80089,28 +3902,30061,12 +3903,116723,10749 +3904,157898,10749 +3905,222461,27 +3906,33146,10769 +3907,522,36 +3908,28940,27 +3909,27843,35 +3910,188927,28 +3911,16058,10751 +3912,9593,14 +3913,11133,53 +3914,43790,35 +3915,43912,18 +3916,13075,18 +3917,77585,35 +3918,81560,35 +3919,58251,35 +3920,44718,18 +3921,36657,28 +3922,54959,53 +3923,10391,27 +3924,24266,10749 +3925,47540,18 +3926,297853,18 +3927,270842,10749 +3928,949,18 +3929,50363,10749 +3930,119816,18 +3931,11983,12 +3932,296524,28 +3933,203217,35 +3934,277190,10752 +3935,10020,10751 +3936,76,10749 +3937,14429,10749 +3938,31901,10749 +3939,10948,10751 +3940,223485,37 +3941,3556,18 +3942,26422,10769 +3943,29056,14 +3944,32082,9648 +3945,31428,27 +3946,252520,16 +3947,347031,14 +3948,2487,28 +3949,69353,53 +3950,95414,28 +3951,16410,18 +3952,92257,18 +3953,43354,18 +3954,25403,35 +3955,204553,80 +3956,21955,35 +3957,72096,10402 +3958,6935,18 +3959,246011,35 +3960,30082,10749 +3961,37502,35 +3962,17347,18 +3963,47848,18 +3964,6081,28 +3965,38055,878 +3966,28293,10749 +3967,31067,53 +3968,258193,878 +3969,184219,35 +3970,26891,18 +3971,27503,18 +3972,73827,18 +3973,42231,18 +3974,25694,878 +3975,34630,99 +3976,63273,9648 +3977,30982,35 +3978,4547,53 +3979,59895,18 +3980,21583,10749 +3981,8072,9648 +3982,119364,99 +3983,132328,18 +3984,337958,10749 +3985,69605,18 +3986,73462,18 +3987,76465,35 +3988,42512,12 +3989,8366,35 +3990,19338,18 +3991,30680,18 +3992,13925,16 +3993,19354,18 +3994,51836,10751 +3995,39217,35 +3996,57737,10751 +3997,211139,28 +3998,178809,878 +3999,234284,10749 +4000,341007,12 +4001,398452,18 +4002,94009,35 +4003,7249,16 +4004,8070,18 +4005,47794,80 +4006,27079,18 +4007,81708,10751 +4008,12684,9648 +4009,11338,35 +4010,29786,18 +4011,1912,18 +4012,344147,12 +4013,18047,18 +4014,280004,10402 +4015,5155,80 +4016,315362,9648 +4017,32536,35 +4018,61580,18 +4019,360592,18 +4020,358895,18 +4021,28732,80 +4022,93562,28 +4023,19766,35 +4024,166,18 +4025,56746,18 +4026,27460,878 +4027,109466,28 +4028,360737,10751 +4029,11907,18 +4030,51939,35 +4031,17464,18 +4032,353879,28 +4033,38766,28 +4034,53883,28 +4035,71320,28 +4036,339362,10749 +4037,115290,12 +4038,34138,18 +4039,13391,28 +4040,33297,99 +4041,13383,10751 +4042,389614,80 +4043,29492,28 +4044,296288,35 +4045,26390,53 +4046,9084,16 +4047,16962,10749 +4048,9968,18 +4049,56329,9648 +4050,41552,18 +4051,4375,53 +4052,76996,35 +4053,188392,16 +4054,56744,53 +4055,291164,53 +4056,376579,53 +4057,109329,16 +4058,138522,18 +4059,201676,14 +4060,193610,35 +4061,9358,27 +4062,211220,99 +4063,330947,10749 +4064,20758,35 +4065,179288,18 +4066,391757,28 +4067,32577,80 +4068,47694,10749 +4069,175822,10749 +4070,42258,18 +4071,28209,18 +4072,4592,35 +4073,150211,53 +4074,39938,18 +4075,11035,18 +4076,370755,10749 +4077,57866,35 +4078,241639,18 +4079,57737,14 +4080,134475,10749 +4081,30265,10749 +4082,43997,10749 +4083,14262,27 +4084,367412,10402 +4085,403429,35 +4086,79743,80 +4087,118497,10752 +4088,58904,16 +4089,35862,27 +4090,108634,18 +4091,9087,18 +4092,623,35 +4093,18998,28 +4094,105077,878 +4095,27925,14 +4096,29113,18 +4097,62630,18 +4098,28261,35 +4099,123103,27 +4100,68023,12 +4101,11364,18 +4102,15601,10751 +4103,336484,28 +4104,90387,12 +4105,85640,18 +4106,70199,53 +4107,11633,16 +4108,280092,27 +4109,40368,27 +4110,303542,35 +4111,33280,80 +4112,61121,18 +4113,8776,18 +4114,44801,878 +4115,16563,10402 +4116,31445,14 +4117,104965,18 +4118,49963,18 +4119,13005,18 +4120,241982,35 +4121,857,18 +4122,29471,36 +4123,291558,18 +4124,69353,18 +4125,31462,35 +4126,115531,18 +4127,31473,10751 +4128,10603,35 +4129,272892,18 +4130,146341,18 +4131,47739,18 +4132,312452,99 +4133,43395,35 +4134,75880,18 +4135,31942,28 +4136,12477,16 +4137,64526,12 +4138,301804,27 +4139,4809,18 +4140,7445,53 +4141,182499,27 +4142,8665,53 +4143,135204,16 +4144,40208,53 +4145,241239,53 +4146,5998,80 +4147,10406,35 +4148,105860,53 +4149,159474,18 +4150,18955,35 +4151,67273,99 +4152,152748,37 +4153,232731,53 +4154,59726,18 +4155,245158,80 +4156,156326,18 +4157,27462,12 +4158,71630,35 +4159,346646,80 +4160,22579,10749 +4161,13701,18 +4162,35026,35 +4163,123770,28 +4164,5177,18 +4165,206292,878 +4166,62825,35 +4167,103168,28 +4168,14612,10751 +4169,84942,53 +4170,193878,35 +4171,3051,9648 +4172,17609,27 +4173,78450,18 +4174,14449,14 +4175,22855,12 +4176,428645,35 +4177,17590,18 +4178,52183,80 +4179,173294,35 +4180,66668,35 +4181,11330,53 +4182,46623,28 +4183,18282,35 +4184,40693,10749 +4185,360924,28 +4186,37269,35 +4187,179398,80 +4188,56653,18 +4189,42726,18 +4190,11653,28 +4191,327083,99 +4192,115905,27 +4193,118690,35 +4194,148284,10749 +4195,52051,35 +4196,15371,12 +4197,169298,28 +4198,35381,10749 +4199,67021,28 +4200,242551,10749 +4201,16032,18 +4202,78373,10751 +4203,49190,10769 +4204,31445,18 +4205,190250,53 +4206,82708,18 +4207,31244,14 +4208,220724,35 +4209,256474,53 +4210,20120,35 +4211,78507,28 +4212,13676,16 +4213,165,10751 +4214,10176,53 +4215,44389,35 +4216,38134,35 +4217,206574,27 +4218,22504,10751 +4219,68179,12 +4220,64725,9648 +4221,764,27 +4222,9462,80 +4223,4146,18 +4224,55534,18 +4225,11048,35 +4226,84993,27 +4227,60784,10769 +4228,16016,878 +4229,49013,12 +4230,229638,18 +4231,11496,35 +4232,124680,10749 +4233,265934,35 +4234,24589,35 +4235,37514,99 +4236,44283,16 +4237,13630,18 +4238,65035,18 +4239,60899,18 +4240,27332,18 +4241,47703,35 +4242,86709,53 +4243,143073,35 +4244,174720,35 +4245,359870,35 +4246,67342,35 +4247,19968,18 +4248,85633,99 +4249,54662,35 +4250,11129,18 +4251,34092,10751 +4252,116711,14 +4253,31901,28 +4254,40761,27 +4255,45452,27 +4256,156711,35 +4257,43923,18 +4258,38987,18 +4259,76640,80 +4260,16076,35 +4261,124501,27 +4262,55437,16 +4263,92635,53 +4264,43462,18 +4265,11024,12 +4266,316654,53 +4267,53256,35 +4268,56435,35 +4269,64499,18 +4270,63197,18 +4271,111960,878 +4272,796,53 +4273,266373,18 +4274,37789,16 +4275,137776,9648 +4276,112885,18 +4277,325712,80 +4278,7006,27 +4279,38460,35 +4280,191536,12 +4281,42453,14 +4282,35008,53 +4283,11677,35 +4284,16921,53 +4285,8886,10769 +4286,358980,18 +4287,21029,35 +4288,55448,28 +4289,19736,878 +4290,40562,18 +4291,60285,37 +4292,69278,53 +4293,26949,18 +4294,64968,10749 +4295,105287,99 +4296,63179,35 +4297,34899,18 +4298,21786,53 +4299,747,27 +4300,34231,53 +4301,148408,18 +4302,48136,27 +4303,233208,27 +4304,92298,9648 +4305,312669,10749 +4306,9312,28 +4307,119820,35 +4308,4413,53 +4309,14011,878 +4310,6391,18 +4311,308024,35 +4312,44442,53 +4313,86718,53 +4314,45649,35 +4315,48778,9648 +4316,80941,10749 +4317,2805,28 +4318,887,18 +4319,13986,10749 +4320,47342,12 +4321,12171,53 +4322,41496,18 +4323,15067,28 +4324,224951,28 +4325,32558,18 +4326,112675,12 +4327,40993,16 +4328,131457,18 +4329,42679,53 +4330,10999,12 +4331,204802,36 +4332,410774,14 +4333,37468,28 +4334,47194,53 +4335,37789,9648 +4336,58587,99 +4337,204765,35 +4338,49950,53 +4339,11120,18 +4340,39013,18 +4341,17906,18 +4342,252888,80 +4343,10165,36 +4344,255913,35 +4345,118150,53 +4346,121052,18 +4347,21148,35 +4348,173634,35 +4349,7511,35 +4350,46326,18 +4351,227200,10751 +4352,85959,10769 +4353,2021,35 +4354,102384,35 +4355,15497,18 +4356,154972,10749 +4357,40688,10751 +4358,26261,35 +4359,21712,16 +4360,2771,18 +4361,46420,27 +4362,94820,10751 +4363,309879,9648 +4364,43046,80 +4365,6644,37 +4366,11101,36 +4367,3476,10749 +4368,11024,35 +4369,463906,12 +4370,27621,35 +4371,338729,10749 +4372,121895,18 +4373,34652,80 +4374,41360,878 +4375,445602,27 +4376,303857,16 +4377,16643,10749 +4378,213121,10751 +4379,21508,10769 +4380,107596,35 +4381,27523,18 +4382,13436,53 +4383,264080,18 +4384,156356,10402 +4385,12076,35 +4386,290764,28 +4387,7837,53 +4388,293412,12 +4389,88953,18 +4390,315841,28 +4391,271007,99 +4392,294652,80 +4393,182127,18 +4394,91334,99 +4395,10109,14 +4396,38558,12 +4397,82519,18 +4398,25538,18 +4399,64568,27 +4400,96716,18 +4401,6973,18 +4402,128637,10769 +4403,44434,35 +4404,24750,12 +4405,362057,53 +4406,423078,35 +4407,229328,18 +4408,53172,35 +4409,288694,99 +4410,36807,878 +4411,398137,18 +4412,30974,28 +4413,11572,12 +4414,26686,18 +4415,70581,80 +4416,30349,35 +4417,54523,80 +4418,112284,18 +4419,11358,18 +4420,13169,10749 +4421,14078,35 +4422,44591,878 +4423,203072,18 +4424,82703,16 +4425,200511,18 +4426,127372,10752 +4427,12122,53 +4428,346672,14 +4429,9543,28 +4430,72215,35 +4431,42987,18 +4432,66759,10769 +4433,3146,27 +4434,30143,35 +4435,43469,18 +4436,49559,18 +4437,24409,27 +4438,89269,10770 +4439,248417,35 +4440,238749,18 +4441,36628,27 +4442,13640,878 +4443,32904,18 +4444,145162,18 +4445,461805,99 +4446,9470,28 +4447,45838,35 +4448,89145,18 +4449,337751,10770 +4450,118139,18 +4451,9591,18 +4452,577,18 +4453,58133,878 +4454,9425,10752 +4455,245268,10752 +4456,24978,35 +4457,22899,12 +4458,99453,99 +4459,86118,35 +4460,351901,53 +4461,469,35 +4462,173467,99 +4463,111332,99 +4464,235,80 +4465,210913,27 +4466,63197,27 +4467,55376,10749 +4468,1267,35 +4469,10586,12 +4470,26131,10770 +4471,61966,18 +4472,23319,35 +4473,9503,18 +4474,31083,35 +4475,2577,10749 +4476,12683,27 +4477,263115,28 +4478,811,12 +4479,45326,28 +4480,10568,18 +4481,16058,35 +4482,46286,35 +4483,295914,18 +4484,86254,28 +4485,60807,53 +4486,70666,18 +4487,20715,35 +4488,13567,27 +4489,226140,27 +4490,357706,28 +4491,35197,27 +4492,76163,28 +4493,48585,16 +4494,49852,28 +4495,270400,18 +4496,4953,35 +4497,2758,14 +4498,159810,36 +4499,47144,18 +4500,452606,10749 +4501,8981,18 +4502,221981,18 +4503,138372,35 +4504,185564,10749 +4505,37340,80 +4506,61988,10749 +4507,16229,18 +4508,35110,28 +4509,49097,99 +4510,35639,10751 +4511,52705,35 +4512,43646,35 +4513,15213,12 +4514,10610,53 +4515,79372,10749 +4516,51828,10749 +4517,4893,28 +4518,201223,14 +4519,34216,18 +4520,27102,10749 +4521,22894,27 +4522,65579,10749 +4523,148622,35 +4524,40804,878 +4525,169782,10770 +4526,259728,18 +4527,361018,18 +4528,10326,12 +4529,355111,10402 +4530,9846,28 +4531,118794,18 +4532,99283,35 +4533,10659,35 +4534,31995,80 +4535,11902,18 +4536,315319,35 +4537,222872,53 +4538,9016,10751 +4539,228066,18 +4540,32546,18 +4541,294093,878 +4542,411081,10770 +4543,210047,80 +4544,51311,99 +4545,11909,18 +4546,273743,53 +4547,417406,27 +4548,1890,10749 +4549,10433,80 +4550,417489,28 +4551,9343,12 +4552,49009,18 +4553,14411,10751 +4554,438144,10752 +4555,54405,10769 +4556,10947,35 +4557,29610,14 +4558,15671,35 +4559,182228,28 +4560,26642,18 +4561,14,18 +4562,29236,18 +4563,95919,10749 +4564,75229,27 +4565,9959,9648 +4566,10643,27 +4567,9539,27 +4568,31111,53 +4569,76011,10402 +4570,57103,10749 +4571,63859,10402 +4572,13196,10749 +4573,169760,12 +4574,37497,18 +4575,70636,878 +4576,42215,27 +4577,300983,28 +4578,268174,35 +4579,49514,28 +4580,15199,10749 +4581,56948,18 +4582,11004,35 +4583,116236,10749 +4584,19371,35 +4585,84089,18 +4586,310119,36 +4587,13849,80 +4588,28805,18 +4589,267977,35 +4590,21544,35 +4591,87296,35 +4592,187010,27 +4593,48627,35 +4594,32093,12 +4595,166161,27 +4596,11145,37 +4597,135652,35 +4598,197725,10751 +4599,107073,10769 +4600,379441,18 +4601,77165,53 +4602,118443,28 +4603,11046,18 +4604,30780,27 +4605,180050,18 +4606,27681,35 +4607,433082,36 +4608,297466,10749 +4609,11540,10749 +4610,30624,28 +4611,325382,878 +4612,310593,18 +4613,24163,10749 +4614,44566,10749 +4615,65898,18 +4616,21769,53 +4617,400610,27 +4618,441043,16 +4619,9095,10749 +4620,15239,35 +4621,288281,53 +4622,13225,878 +4623,53574,10749 +4624,413762,18 +4625,464111,27 +4626,174925,18 +4627,11570,28 +4628,18977,14 +4629,13105,35 +4630,10139,36 +4631,336655,35 +4632,16371,10769 +4633,272426,35 +4634,89247,35 +4635,66469,53 +4636,60140,80 +4637,57351,53 +4638,75778,35 +4639,61266,10749 +4640,19688,18 +4641,86664,18 +4642,13855,18 +4643,38460,80 +4644,28417,35 +4645,24397,18 +4646,11122,35 +4647,28902,53 +4648,32872,35 +4649,86274,10402 +4650,85916,28 +4651,84071,53 +4652,77825,18 +4653,11446,35 +4654,31258,35 +4655,16151,10749 +4656,13355,16 +4657,458428,28 +4658,19506,12 +4659,109716,36 +4660,62130,99 +4661,24559,35 +4662,12811,18 +4663,18586,18 +4664,41211,35 +4665,31277,10749 +4666,347630,35 +4667,277967,53 +4668,15907,10751 +4669,33668,35 +4670,293271,10751 +4671,253235,10749 +4672,2503,28 +4673,277688,35 +4674,69828,35 +4675,74237,99 +4676,6163,18 +4677,80988,10749 +4678,50775,35 +4679,125736,28 +4680,56068,35 +4681,58080,53 +4682,78377,35 +4683,868,80 +4684,76640,28 +4685,18747,80 +4686,211729,80 +4687,32708,18 +4688,42062,53 +4689,339527,18 +4690,348315,18 +4691,62349,18 +4692,230266,18 +4693,15092,80 +4694,193610,10749 +4695,14126,53 +4696,32451,10402 +4697,96419,18 +4698,1049,10749 +4699,11516,99 +4700,9667,14 +4701,25953,10749 +4702,32068,37 +4703,414827,27 +4704,11777,18 +4705,2990,80 +4706,53231,10749 +4707,26643,14 +4708,14676,12 +4709,39230,12 +4710,11422,36 +4711,52894,18 +4712,59861,18 +4713,411442,14 +4714,59424,18 +4715,31913,35 +4716,79645,28 +4717,664,28 +4718,32489,10749 +4719,7942,10749 +4720,115626,10402 +4721,24163,80 +4722,211144,18 +4723,115665,10769 +4724,20160,10749 +4725,48874,10751 +4726,42553,18 +4727,159824,35 +4728,287233,16 +4729,109491,10749 +4730,56669,53 +4731,40785,18 +4732,28212,18 +4733,43379,18 +4734,10874,10751 +4735,16005,18 +4736,32648,28 +4737,37405,18 +4738,325803,53 +4739,16980,35 +4740,4809,35 +4741,41516,12 +4742,16320,878 +4743,52949,27 +4744,13929,16 +4745,317557,18 +4746,109258,10752 +4747,9325,12 +4748,47448,80 +4749,83890,18 +4750,54406,18 +4751,99657,99 +4752,63498,16 +4753,65646,10749 +4754,14422,18 +4755,25536,18 +4756,142802,12 +4757,193756,18 +4758,121923,878 +4759,145668,28 +4760,10044,35 +4761,37686,53 +4762,26689,878 +4763,84626,878 +4764,334538,878 +4765,314371,53 +4766,10491,53 +4767,55192,18 +4768,43093,18 +4769,43902,18 +4770,10691,10749 +4771,260030,14 +4772,353533,18 +4773,63493,53 +4774,10320,27 +4775,79526,18 +4776,36089,27 +4777,24409,53 +4778,37308,28 +4779,136466,35 +4780,11456,53 +4781,2830,35 +4782,362703,28 +4783,17845,18 +4784,13338,10749 +4785,899,10749 +4786,38594,12 +4787,80094,18 +4788,464111,878 +4789,147287,80 +4790,49653,10769 +4791,290911,80 +4792,158483,16 +4793,43792,10402 +4794,1579,18 +4795,157129,53 +4796,10643,12 +4797,19495,10752 +4798,268321,18 +4799,1374,18 +4800,9472,35 +4801,202941,37 +4802,82716,10751 +4803,381008,18 +4804,340961,80 +4805,390059,10749 +4806,33774,10769 +4807,30198,28 +4808,38509,18 +4809,37628,80 +4810,295964,18 +4811,171873,10749 +4812,11011,35 +4813,921,36 +4814,94527,10769 +4815,38303,10749 +4816,9820,18 +4817,197854,27 +4818,417406,53 +4819,9301,18 +4820,275696,18 +4821,307649,35 +4822,7548,10749 +4823,353533,28 +4824,338676,27 +4825,16249,10751 +4826,33016,9648 +4827,72096,10749 +4828,35826,878 +4829,19946,37 +4830,111479,18 +4831,414453,18 +4832,10783,10749 +4833,385261,10749 +4834,36773,18 +4835,38769,10402 +4836,18374,35 +4837,66469,28 +4838,17111,9648 +4839,32609,18 +4840,83754,10749 +4841,231176,35 +4842,3089,37 +4843,22618,35 +4844,10274,18 +4845,64084,18 +4846,7340,27 +4847,60488,12 +4848,20443,35 +4849,25768,28 +4850,9471,28 +4851,14609,16 +4852,55934,18 +4853,39407,53 +4854,264553,99 +4855,166207,35 +4856,12787,18 +4857,84348,27 +4858,94480,27 +4859,166076,12 +4860,399894,27 +4861,26679,27 +4862,455661,35 +4863,51209,28 +4864,314285,14 +4865,103260,35 +4866,25673,10749 +4867,13391,16 +4868,35790,10749 +4869,6933,53 +4870,25736,18 +4871,332488,27 +4872,77283,35 +4873,308165,10749 +4874,20507,10769 +4875,14565,80 +4876,43281,10749 +4877,96888,18 +4878,100594,27 +4879,97598,18 +4880,202475,99 +4881,34181,18 +4882,53256,10749 +4883,65044,18 +4884,48874,35 +4885,10097,80 +4886,42216,9648 +4887,11205,35 +4888,987,18 +4889,232731,28 +4890,45302,53 +4891,364088,53 +4892,72140,35 +4893,17073,99 +4894,19403,28 +4895,146313,53 +4896,32558,10749 +4897,71672,53 +4898,180813,99 +4899,33135,10769 +4900,28026,10402 +4901,330770,27 +4902,12636,10769 +4903,9993,80 +4904,10950,18 +4905,57230,27 +4906,210047,18 +4907,31206,10402 +4908,14868,35 +4909,416290,35 +4910,10013,10749 +4911,64225,10749 +4912,95134,18 +4913,47342,35 +4914,8470,18 +4915,35002,12 +4916,37865,10770 +4917,38237,28 +4918,1673,37 +4919,108535,35 +4920,148176,35 +4921,138496,27 +4922,31713,80 +4923,44641,53 +4924,21138,28 +4925,409,10749 +4926,18,28 +4927,15661,53 +4928,77825,10769 +4929,35113,53 +4930,16074,18 +4931,8471,10749 +4932,26204,9648 +4933,58402,10769 +4934,211139,18 +4935,78568,18 +4936,342684,878 +4937,95358,10749 +4938,77068,27 +4939,2321,35 +4940,27224,18 +4941,43829,37 +4942,103014,10751 +4943,5899,35 +4944,153141,18 +4945,51357,35 +4946,181656,18 +4947,15177,10769 +4948,15830,18 +4949,37211,35 +4950,23966,27 +4951,31127,878 +4952,136799,16 +4953,33345,10749 +4954,257447,18 +4955,50725,10749 +4956,92796,18 +4957,45693,10749 +4958,46149,35 +4959,17317,53 +4960,14012,18 +4961,10004,53 +4962,45772,10751 +4963,52039,18 +4964,47889,18 +4965,6589,35 +4966,58402,28 +4967,171759,12 +4968,8460,10749 +4969,254435,18 +4970,58051,18 +4971,12255,80 +4972,154537,18 +4973,193387,80 +4974,177271,16 +4975,257331,18 +4976,356156,35 +4977,11704,16 +4978,276819,16 +4979,56150,10751 +4980,25078,878 +4981,60488,10749 +4982,87343,10770 +4983,114577,35 +4984,99567,10749 +4985,24238,18 +4986,18189,35 +4987,85564,53 +4988,11379,35 +4989,234284,16 +4990,46697,10402 +4991,2976,35 +4992,295723,27 +4993,38286,35 +4994,125229,18 +4995,66702,18 +4996,17445,16 +4997,171902,99 +4998,47886,27 +4999,3036,18 +5000,83788,18 +5001,76940,878 +5002,20126,27 +5003,84333,35 +5004,33801,27 +5005,339944,10751 +5006,318922,80 +5007,441728,35 +5008,325780,35 +5009,91266,99 +5010,72663,18 +5011,14476,80 +5012,119172,10769 +5013,186227,18 +5014,44449,27 +5015,41569,99 +5016,282086,18 +5017,14843,35 +5018,54700,18 +5019,45671,35 +5020,97910,80 +5021,32227,14 +5022,329216,18 +5023,9032,18 +5024,6552,35 +5025,1938,10749 +5026,8856,10749 +5027,21001,10749 +5028,136386,35 +5029,32657,10751 +5030,9532,27 +5031,289,18 +5032,141971,53 +5033,51247,35 +5034,367882,9648 +5035,378018,9648 +5036,220154,12 +5037,19958,18 +5038,203819,12 +5039,56558,10752 +5040,112130,80 +5041,42703,18 +5042,13358,10751 +5043,131689,14 +5044,341176,35 +5045,39311,80 +5046,379387,99 +5047,319910,80 +5048,91950,10402 +5049,61341,878 +5050,307081,28 +5051,252724,10770 +5052,30061,16 +5053,33436,35 +5054,36214,878 +5055,36247,14 +5056,452606,10751 +5057,1717,53 +5058,2993,53 +5059,318781,18 +5060,21118,35 +5061,257214,18 +5062,196469,14 +5063,206292,18 +5064,213755,9648 +5065,4953,18 +5066,26636,18 +5067,335340,18 +5068,22307,27 +5069,45627,80 +5070,14142,18 +5071,765,35 +5072,46261,27 +5073,13741,35 +5074,301875,18 +5075,322487,878 +5076,2887,18 +5077,2974,18 +5078,44540,10751 +5079,108282,53 +5080,13551,9648 +5081,98631,18 +5082,298040,18 +5083,68360,18 +5084,10119,18 +5085,242224,18 +5086,44369,35 +5087,388862,53 +5088,10910,18 +5089,264525,18 +5090,330878,12 +5091,24458,36 +5092,43117,53 +5093,12622,28 +5094,8954,53 +5095,87293,53 +5096,31262,9648 +5097,21132,18 +5098,80350,28 +5099,118283,18 +5100,977,10749 +5101,15616,12 +5102,19096,28 +5103,15640,80 +5104,24442,12 +5105,81435,18 +5106,132422,35 +5107,42218,27 +5108,11227,14 +5109,34334,10749 +5110,3309,18 +5111,14522,12 +5112,65755,10751 +5113,65256,14 +5114,72574,27 +5115,16082,53 +5116,74779,878 +5117,11048,80 +5118,292014,16 +5119,413452,18 +5120,98582,18 +5121,26014,10749 +5122,64605,28 +5123,10760,35 +5124,121636,18 +5125,61430,9648 +5126,10070,35 +5127,376292,878 +5128,41759,53 +5129,253794,53 +5130,118760,18 +5131,32552,35 +5132,13380,10751 +5133,5638,35 +5134,70583,27 +5135,347258,53 +5136,6557,35 +5137,32594,10752 +5138,20372,12 +5139,82395,35 +5140,80142,16 +5141,220820,53 +5142,10493,53 +5143,413391,35 +5144,29117,53 +5145,572,9648 +5146,44997,10749 +5147,52247,28 +5148,33336,10752 +5149,420743,35 +5150,330171,18 +5151,121640,18 +5152,100088,53 +5153,82868,10749 +5154,168819,9648 +5155,43900,18 +5156,115276,80 +5157,6069,14 +5158,86391,35 +5159,39907,28 +5160,8325,10749 +5161,11024,14 +5162,17590,35 +5163,22615,28 +5164,3064,35 +5165,33336,18 +5166,259,10749 +5167,15613,18 +5168,393367,10402 +5169,38654,28 +5170,353462,18 +5171,244,12 +5172,19901,14 +5173,338421,53 +5174,65066,28 +5175,15807,12 +5176,43685,12 +5177,77728,18 +5178,14301,35 +5179,67025,9648 +5180,250535,10751 +5181,53617,10749 +5182,18665,28 +5183,13534,28 +5184,12684,53 +5185,177203,36 +5186,390526,35 +5187,244316,27 +5188,233917,36 +5189,25376,18 +5190,94555,18 +5191,24939,27 +5192,46712,10769 +5193,48153,80 +5194,126754,9648 +5195,33273,53 +5196,283701,10749 +5197,34995,12 +5198,76757,878 +5199,146416,10749 +5200,45227,37 +5201,43384,28 +5202,198308,35 +5203,58391,10769 +5204,53781,37 +5205,149509,18 +5206,66741,28 +5207,16137,35 +5208,4993,53 +5209,63105,53 +5210,95177,9648 +5211,71120,18 +5212,83540,18 +5213,17009,878 +5214,115782,36 +5215,42062,18 +5216,87851,99 +5217,54832,18 +5218,85414,53 +5219,46872,28 +5220,32740,28 +5221,35651,18 +5222,31907,18 +5223,134477,10751 +5224,81409,36 +5225,81409,10752 +5226,355111,16 +5227,30709,10749 +5228,121848,12 +5229,118451,18 +5230,220154,10751 +5231,53459,53 +5232,32996,35 +5233,17350,35 +5234,61430,53 +5235,9816,10402 +5236,20983,35 +5237,76757,28 +5238,2288,18 +5239,20028,80 +5240,42267,18 +5241,266433,878 +5242,92132,35 +5243,322487,35 +5244,34944,18 +5245,9667,53 +5246,205584,14 +5247,12427,53 +5248,71701,14 +5249,10475,10749 +5250,42752,80 +5251,39840,18 +5252,330770,18 +5253,4476,12 +5254,67748,53 +5255,9928,16 +5256,64847,16 +5257,35052,9648 +5258,810,12 +5259,46368,27 +5260,31509,18 +5261,18586,10402 +5262,103215,10769 +5263,165567,27 +5264,83540,10769 +5265,13701,10749 +5266,353879,53 +5267,248706,18 +5268,14301,10402 +5269,116488,35 +5270,99312,18 +5271,28270,35 +5272,102382,14 +5273,34106,35 +5274,6068,28 +5275,11653,18 +5276,44414,27 +5277,136752,18 +5278,74395,18 +5279,39053,18 +5280,73208,18 +5281,151652,12 +5282,345054,53 +5283,114096,18 +5284,117098,10769 +5285,81660,35 +5286,49940,18 +5287,193959,35 +5288,10805,10402 +5289,52728,28 +5290,82696,10749 +5291,169314,16 +5292,41416,10769 +5293,362439,27 +5294,4547,80 +5295,211166,18 +5296,13505,80 +5297,388764,28 +5298,17577,53 +5299,187252,18 +5300,104431,18 +5301,12129,10751 +5302,339944,14 +5303,81110,28 +5304,22681,53 +5305,391438,18 +5306,216363,18 +5307,22792,35 +5308,20164,35 +5309,34623,10402 +5310,211387,14 +5311,54858,28 +5312,56264,80 +5313,16876,53 +5314,11001,28 +5315,50387,18 +5316,148636,10749 +5317,106155,80 +5318,26808,18 +5319,23683,27 +5320,10096,35 +5321,73952,28 +5322,409,10752 +5323,264393,10769 +5324,10657,18 +5325,16487,35 +5326,278316,35 +5327,151310,37 +5328,52122,35 +5329,41578,10749 +5330,270403,18 +5331,1819,35 +5332,21765,10751 +5333,9902,53 +5334,18290,18 +5335,18,14 +5336,24020,18 +5337,127493,80 +5338,38461,80 +5339,76703,18 +5340,102,18 +5341,21036,16 +5342,134355,35 +5343,157354,18 +5344,121006,18 +5345,17658,18 +5346,200505,18 +5347,31555,80 +5348,81022,18 +5349,2267,12 +5350,42040,18 +5351,16432,80 +5352,45013,35 +5353,42515,10749 +5354,46806,35 +5355,106747,53 +5356,34078,27 +5357,40952,27 +5358,36094,18 +5359,27409,27 +5360,9753,53 +5361,54900,18 +5362,14811,18 +5363,11215,10751 +5364,133715,10752 +5365,89722,27 +5366,200,12 +5367,9785,9648 +5368,238997,99 +5369,43089,27 +5370,108726,28 +5371,50295,28 +5372,294690,28 +5373,21413,18 +5374,157847,18 +5375,107096,53 +5376,59961,53 +5377,42424,12 +5378,54559,16 +5379,261035,12 +5380,264269,53 +5381,89086,36 +5382,315723,878 +5383,362178,18 +5384,65002,10769 +5385,9639,53 +5386,55628,35 +5387,332168,10749 +5388,21057,10749 +5389,414547,18 +5390,198227,10402 +5391,43743,53 +5392,82485,53 +5393,11960,18 +5394,158900,53 +5395,10915,37 +5396,35008,18 +5397,387399,53 +5398,15873,10752 +5399,13004,16 +5400,36758,10749 +5401,19166,9648 +5402,104251,14 +5403,86252,80 +5404,118150,35 +5405,60420,10749 +5406,221732,28 +5407,391642,35 +5408,11570,35 +5409,255491,35 +5410,22256,18 +5411,22029,18 +5412,338,18 +5413,9423,27 +5414,21780,10402 +5415,30993,35 +5416,9651,12 +5417,54406,10749 +5418,28325,18 +5419,67174,28 +5420,44888,12 +5421,54845,28 +5422,81477,27 +5423,266030,18 +5424,289336,10770 +5425,275244,10751 +5426,28859,27 +5427,72054,35 +5428,145135,53 +5429,272878,12 +5430,195269,12 +5431,197297,18 +5432,18586,10749 +5433,197583,18 +5434,228968,53 +5435,64807,35 +5436,10077,53 +5437,33333,28 +5438,334298,14 +5439,411221,16 +5440,452142,53 +5441,23178,18 +5442,24634,53 +5443,31586,18 +5444,31509,28 +5445,348611,10770 +5446,395982,53 +5447,430826,99 +5448,32021,27 +5449,11236,14 +5450,33340,18 +5451,46189,18 +5452,52741,18 +5453,7229,35 +5454,133160,10752 +5455,57005,10749 +5456,131478,10749 +5457,27443,37 +5458,336549,18 +5459,11091,35 +5460,14694,12 +5461,68179,35 +5462,228676,53 +5463,53714,53 +5464,142412,9648 +5465,217923,28 +5466,25376,10749 +5467,252724,35 +5468,327225,18 +5469,44436,10402 +5470,2525,18 +5471,39957,18 +5472,77625,18 +5473,27122,53 +5474,276935,10749 +5475,137683,35 +5476,383914,99 +5477,12085,80 +5478,49365,53 +5479,62731,35 +5480,15019,10749 +5481,31672,53 +5482,17189,28 +5483,48180,28 +5484,18506,10402 +5485,9529,53 +5486,21968,80 +5487,52655,10769 +5488,228198,18 +5489,21435,35 +5490,21533,10770 +5491,47200,10749 +5492,339428,35 +5493,19765,18 +5494,42819,18 +5495,112675,10752 +5496,53042,18 +5497,171594,80 +5498,30054,37 +5499,525,80 +5500,339944,9648 +5501,12221,18 +5502,64468,35 +5503,330711,18 +5504,241071,10749 +5505,27035,18 +5506,208436,10751 +5507,56435,18 +5508,75204,18 +5509,63197,9648 +5510,73247,10749 +5511,43372,35 +5512,293516,18 +5513,325302,18 +5514,28969,16 +5515,46494,18 +5516,140448,99 +5517,30059,16 +5518,57983,35 +5519,2144,28 +5520,62616,9648 +5521,14830,16 +5522,38006,27 +5523,8916,35 +5524,97762,99 +5525,49717,10402 +5526,229221,10749 +5527,41581,12 +5528,122192,80 +5529,5237,9648 +5530,17168,53 +5531,43753,27 +5532,90932,10402 +5533,125700,18 +5534,205818,18 +5535,38901,35 +5536,360205,9648 +5537,231762,10752 +5538,66741,878 +5539,41760,35 +5540,33338,35 +5541,81232,18 +5542,28275,10751 +5543,38579,35 +5544,71668,27 +5545,31618,10749 +5546,11259,18 +5547,253250,35 +5548,31984,53 +5549,104297,18 +5550,132426,10770 +5551,3172,35 +5552,66967,18 +5553,15489,35 +5554,37203,10402 +5555,92989,10751 +5556,92716,27 +5557,189888,18 +5558,26768,18 +5559,156015,53 +5560,36113,18 +5561,42515,9648 +5562,38602,10770 +5563,84209,28 +5564,140607,14 +5565,339669,10751 +5566,106131,10749 +5567,87894,18 +5568,44566,35 +5569,26603,14 +5570,245950,28 +5571,27270,878 +5572,24426,35 +5573,214129,10749 +5574,46121,18 +5575,28063,53 +5576,114348,18 +5577,20842,27 +5578,64190,18 +5579,104744,35 +5580,403119,27 +5581,2758,35 +5582,43473,18 +5583,198993,28 +5584,384450,37 +5585,400465,16 +5586,50849,18 +5587,101783,53 +5588,9464,80 +5589,115054,878 +5590,15359,16 +5591,335869,10749 +5592,158015,878 +5593,353326,18 +5594,84285,18 +5595,240733,9648 +5596,110392,16 +5597,179826,9648 +5598,41171,18 +5599,33680,18 +5600,12902,35 +5601,44895,80 +5602,33558,10769 +5603,44449,14 +5604,10665,9648 +5605,137381,99 +5606,39938,10751 +5607,47194,27 +5608,31276,14 +5609,65891,18 +5610,49334,53 +5611,11889,10749 +5612,16366,16 +5613,113525,878 +5614,72592,18 +5615,177677,28 +5616,9675,10749 +5617,101669,53 +5618,118953,53 +5619,340275,18 +5620,151509,9648 +5621,40826,80 +5622,263855,10752 +5623,27450,10749 +5624,388046,99 +5625,51290,10749 +5626,172385,10751 +5627,289183,18 +5628,352094,35 +5629,109122,878 +5630,9059,53 +5631,9470,80 +5632,14945,10749 +5633,10869,35 +5634,12638,18 +5635,75229,53 +5636,1793,18 +5637,426903,99 +5638,68822,18 +5639,13972,35 +5640,107596,27 +5641,9059,35 +5642,7511,10749 +5643,144475,9648 +5644,38955,28 +5645,2486,12 +5646,13807,28 +5647,55347,10749 +5648,18557,53 +5649,352498,10749 +5650,33689,10751 +5651,28209,10749 +5652,52485,12 +5653,83119,18 +5654,40218,9648 +5655,287233,35 +5656,4703,18 +5657,25373,10751 +5658,24050,18 +5659,9539,18 +5660,360924,53 +5661,147815,10749 +5662,63197,53 +5663,23544,14 +5664,127808,10402 +5665,245917,16 +5666,399798,35 +5667,42087,18 +5668,73474,18 +5669,128169,35 +5670,18405,18 +5671,36402,18 +5672,24828,35 +5673,126560,37 +5674,167410,878 +5675,10860,35 +5676,58886,35 +5677,11909,53 +5678,73194,37 +5679,83587,27 +5680,261005,80 +5681,178927,18 +5682,8842,18 +5683,313676,18 +5684,18729,36 +5685,61904,28 +5686,94248,28 +5687,286873,12 +5688,94204,80 +5689,325592,18 +5690,286789,36 +5691,39519,28 +5692,72753,18 +5693,9502,10751 +5694,62728,18 +5695,65759,35 +5696,352960,35 +5697,10436,18 +5698,68634,10749 +5699,43172,10402 +5700,25682,18 +5701,40998,10769 +5702,257444,27 +5703,320299,53 +5704,76297,35 +5705,4344,35 +5706,9828,53 +5707,805,18 +5708,10390,18 +5709,31597,53 +5710,81463,28 +5711,129798,12 +5712,52395,27 +5713,42517,28 +5714,14907,18 +5715,23169,18 +5716,393134,80 +5717,15560,99 +5718,41121,18 +5719,55663,14 +5720,12220,18 +5721,48601,18 +5722,177047,18 +5723,11688,10751 +5724,15177,18 +5725,364410,18 +5726,329809,18 +5727,116780,18 +5728,50662,18 +5729,61008,35 +5730,12902,10751 +5731,99188,10769 +5732,321303,10752 +5733,4592,10749 +5734,30666,27 +5735,59401,18 +5736,32872,10749 +5737,85052,35 +5738,80410,28 +5739,16884,35 +5740,1850,10749 +5741,263341,28 +5742,14414,18 +5743,244458,80 +5744,601,878 +5745,10162,35 +5746,42329,878 +5747,39286,10402 +5748,87936,10749 +5749,57775,14 +5750,230182,28 +5751,511,18 +5752,42604,18 +5753,270303,53 +5754,20941,10752 +5755,14878,878 +5756,310133,53 +5757,38415,10749 +5758,29959,878 +5759,41283,28 +5760,341957,53 +5761,226968,10749 +5762,28510,12 +5763,236324,18 +5764,57201,28 +5765,37468,18 +5766,41234,80 +5767,29128,10749 +5768,29449,18 +5769,80220,18 +5770,11048,28 +5771,88557,12 +5772,266568,10770 +5773,254007,14 +5774,238985,10749 +5775,28732,53 +5776,53654,28 +5777,14538,28 +5778,54107,35 +5779,44522,35 +5780,239562,35 +5781,121003,10749 +5782,112912,10752 +5783,40127,9648 +5784,370168,99 +5785,188180,35 +5786,252888,10770 +5787,10916,878 +5788,263472,53 +5789,92251,35 +5790,83354,37 +5791,2309,10751 +5792,63340,28 +5793,133523,53 +5794,124157,80 +5795,197297,80 +5796,152570,35 +5797,49853,18 +5798,10103,35 +5799,328032,14 +5800,13911,35 +5801,324930,27 +5802,16373,18 +5803,110909,35 +5804,42476,27 +5805,4344,18 +5806,8816,18 +5807,254065,18 +5808,10543,53 +5809,207641,28 +5810,38850,9648 +5811,31131,28 +5812,77859,16 +5813,34766,10751 +5814,9540,53 +5815,22494,35 +5816,249703,35 +5817,94894,28 +5818,49847,53 +5819,43205,12 +5820,10585,27 +5821,11206,80 +5822,264729,35 +5823,28280,53 +5824,72660,18 +5825,13519,18 +5826,22160,28 +5827,12289,18 +5828,11298,18 +5829,142012,80 +5830,84727,18 +5831,10344,878 +5832,153652,18 +5833,18919,14 +5834,11012,10749 +5835,12599,16 +5836,284467,9648 +5837,40916,10402 +5838,127901,18 +5839,25998,36 +5840,286709,80 +5841,65156,28 +5842,4024,18 +5843,18040,27 +5844,64328,35 +5845,148347,10749 +5846,211179,18 +5847,50329,12 +5848,37481,53 +5849,101363,10751 +5850,180685,16 +5851,43754,18 +5852,2428,36 +5853,6687,9648 +5854,50387,12 +5855,201676,35 +5856,98557,35 +5857,363483,10751 +5858,172520,18 +5859,703,35 +5860,396330,12 +5861,25797,10751 +5862,133783,18 +5863,25087,53 +5864,229757,35 +5865,396152,27 +5866,118,12 +5867,15068,28 +5868,35656,53 +5869,24632,35 +5870,68684,878 +5871,95134,10749 +5872,26261,28 +5873,28564,80 +5874,13105,18 +5875,9820,35 +5876,260947,9648 +5877,24420,14 +5878,423078,18 +5879,126127,35 +5880,5552,28 +5881,31083,18 +5882,385261,18 +5883,84718,18 +5884,28527,10749 +5885,35113,18 +5886,24086,18 +5887,26156,53 +5888,788,18 +5889,77012,35 +5890,21956,35 +5891,168217,18 +5892,42023,53 +5893,25407,53 +5894,11232,10749 +5895,17223,28 +5896,54796,18 +5897,3035,27 +5898,43277,10402 +5899,270024,18 +5900,227932,35 +5901,338767,27 +5902,57993,12 +5903,9828,18 +5904,228066,53 +5905,64983,53 +5906,44552,35 +5907,40252,27 +5908,103301,35 +5909,12591,35 +5910,75066,53 +5911,42852,10749 +5912,20674,28 +5913,337751,18 +5914,362363,99 +5915,120,14 +5916,215579,10751 +5917,233490,28 +5918,139692,18 +5919,55725,18 +5920,281979,10751 +5921,374460,16 +5922,10192,16 +5923,127803,35 +5924,64215,10769 +5925,93862,18 +5926,217648,35 +5927,98586,18 +5928,11848,18 +5929,39979,53 +5930,52914,28 +5931,227700,53 +5932,345924,80 +5933,114438,35 +5934,254575,878 +5935,161187,18 +5936,128437,37 +5937,44626,80 +5938,270946,12 +5939,31216,10749 +5940,87593,99 +5941,975,18 +5942,62363,10769 +5943,15189,35 +5944,86266,10749 +5945,20096,10749 +5946,1942,53 +5947,259616,35 +5948,14885,16 +5949,15476,27 +5950,58076,18 +5951,304336,18 +5952,18392,27 +5953,137776,80 +5954,13531,18 +5955,95807,9648 +5956,31128,28 +5957,38027,10749 +5958,70988,53 +5959,337879,27 +5960,77859,18 +5961,29263,36 +5962,284053,14 +5963,18978,10749 +5964,3078,35 +5965,208756,18 +5966,288521,35 +5967,68078,37 +5968,10025,10751 +5969,5759,18 +5970,23515,80 +5971,48838,80 +5972,208529,10749 +5973,90351,28 +5974,47882,80 +5975,22968,10749 +5976,73348,10749 +5977,41551,9648 +5978,212530,36 +5979,38962,53 +5980,10493,27 +5981,71336,18 +5982,32536,16 +5983,79218,10770 +5984,38048,12 +5985,223391,18 +5986,95627,80 +5987,42669,80 +5988,5551,12 +5989,15940,53 +5990,34977,18 +5991,80281,10769 +5992,42966,80 +5993,13163,35 +5994,86234,18 +5995,291413,53 +5996,29239,27 +5997,9963,18 +5998,205891,27 +5999,44641,28 +6000,209209,12 +6001,389972,10751 +6002,41131,18 +6003,116437,18 +6004,84720,18 +6005,31377,35 +6006,37609,18 +6007,94204,18 +6008,11321,18 +6009,31911,35 +6010,130233,10749 +6011,34181,10749 +6012,285270,18 +6013,313896,10770 +6014,270015,37 +6015,28323,37 +6016,30298,35 +6017,75537,18 +6018,75641,18 +6019,67216,18 +6020,91259,80 +6021,19277,53 +6022,79743,53 +6023,284013,80 +6024,24756,28 +6025,101231,9648 +6026,13493,35 +6027,36751,14 +6028,75903,27 +6029,144651,99 +6030,12526,27 +6031,74314,9648 +6032,371003,27 +6033,2830,10749 +6034,81463,80 +6035,131907,35 +6036,42298,18 +6037,140825,18 +6038,37600,10769 +6039,43904,18 +6040,9079,10749 +6041,284537,35 +6042,22899,878 +6043,11362,53 +6044,59230,80 +6045,221667,18 +6046,76544,18 +6047,87229,18 +6048,73501,12 +6049,54524,80 +6050,79782,10749 +6051,15664,53 +6052,259761,27 +6053,352186,35 +6054,15916,14 +6055,19014,28 +6056,12783,36 +6057,29694,28 +6058,8989,10751 +6059,70695,18 +6060,94568,10402 +6061,25038,53 +6062,10930,18 +6063,180691,99 +6064,29239,9648 +6065,10055,27 +6066,194722,35 +6067,42796,27 +6068,10139,18 +6069,10753,53 +6070,53486,18 +6071,99261,53 +6072,15073,18 +6073,2611,10749 +6074,56816,18 +6075,14207,28 +6076,51481,35 +6077,19898,27 +6078,28535,10749 +6079,77000,35 +6080,18694,10749 +6081,18683,35 +6082,130507,10749 +6083,415255,53 +6084,31821,10749 +6085,26378,9648 +6086,6341,18 +6087,218508,18 +6088,11837,12 +6089,18836,18 +6090,1497,878 +6091,39833,18 +6092,29903,14 +6093,25645,10749 +6094,74561,28 +6095,122134,99 +6096,415542,35 +6097,24554,10751 +6098,26644,14 +6099,148176,16 +6100,23239,53 +6101,85729,10749 +6102,188507,12 +6103,67314,27 +6104,255647,35 +6105,15356,53 +6106,347031,35 +6107,145194,18 +6108,31277,35 +6109,3104,27 +6110,616,18 +6111,29146,878 +6112,44578,18 +6113,35564,27 +6114,94874,27 +6115,39276,27 +6116,37410,18 +6117,50153,878 +6118,17606,53 +6119,220,18 +6120,63326,10770 +6121,36674,10751 +6122,31111,80 +6123,410965,35 +6124,83770,12 +6125,244956,18 +6126,106537,99 +6127,33305,27 +6128,12453,18 +6129,50761,12 +6130,29416,28 +6131,381518,35 +6132,14931,53 +6133,37779,12 +6134,56800,18 +6135,27150,53 +6136,70199,27 +6137,20439,35 +6138,35001,37 +6139,22279,35 +6140,11440,18 +6141,61400,10769 +6142,43113,878 +6143,327909,10749 +6144,29694,9648 +6145,64190,10751 +6146,48488,14 +6147,61991,18 +6148,121929,18 +6149,2300,10751 +6150,29286,27 +6151,103236,28 +6152,59387,28 +6153,57749,80 +6154,44282,35 +6155,19342,18 +6156,271164,10402 +6157,197,28 +6158,9585,18 +6159,300667,18 +6160,14019,35 +6161,310135,12 +6162,209112,12 +6163,202214,878 +6164,71689,35 +6165,96252,10402 +6166,47065,878 +6167,302699,35 +6168,51284,18 +6169,68191,10749 +6170,127105,18 +6171,48376,99 +6172,38310,35 +6173,32684,53 +6174,30941,80 +6175,248376,28 +6176,39276,14 +6177,43365,18 +6178,10925,27 +6179,24212,878 +6180,141971,9648 +6181,444713,28 +6182,53767,18 +6183,12113,18 +6184,24357,28 +6185,464819,99 +6186,354128,10749 +6187,20473,35 +6188,15285,18 +6189,274127,18 +6190,56078,80 +6191,9785,18 +6192,39130,18 +6193,2280,18 +6194,77068,28 +6195,14142,80 +6196,206284,10402 +6197,85525,10769 +6198,94739,10402 +6199,9516,80 +6200,20646,80 +6201,63326,9648 +6202,319993,18 +6203,2102,12 +6204,755,28 +6205,56558,10749 +6206,525,35 +6207,28940,35 +6208,49277,35 +6209,197210,16 +6210,33534,16 +6211,75745,53 +6212,68347,27 +6213,10657,27 +6214,25667,18 +6215,16232,35 +6216,19101,18 +6217,126927,27 +6218,297762,14 +6219,17339,12 +6220,21753,10749 +6221,13374,18 +6222,46513,12 +6223,14295,18 +6224,387399,18 +6225,270672,10749 +6226,294093,12 +6227,2924,18 +6228,40041,9648 +6229,17038,878 +6230,85699,35 +6231,13169,35 +6232,82153,99 +6233,47500,35 +6234,288313,18 +6235,26958,27 +6236,60551,12 +6237,27840,27 +6238,63414,10749 +6239,38783,53 +6240,27503,10749 +6241,875,10749 +6242,92391,80 +6243,106747,80 +6244,269149,12 +6245,53654,18 +6246,29101,35 +6247,21959,878 +6248,84994,27 +6249,144475,18 +6250,70006,18 +6251,314635,35 +6252,15081,878 +6253,28858,36 +6254,11230,28 +6255,61070,35 +6256,174769,10749 +6257,220029,18 +6258,14429,35 +6259,12122,27 +6260,105528,10751 +6261,32298,35 +6262,275269,28 +6263,80280,27 +6264,8325,18 +6265,178446,18 +6266,10733,37 +6267,12422,18 +6268,88271,18 +6269,182035,35 +6270,53574,37 +6271,60422,35 +6272,25694,12 +6273,56143,99 +6274,43526,10752 +6275,24749,18 +6276,396535,27 +6277,108,9648 +6278,167956,35 +6279,153163,18 +6280,29128,27 +6281,18082,35 +6282,145481,35 +6283,33357,80 +6284,253232,35 +6285,125344,18 +6286,64362,18 +6287,12637,10402 +6288,145760,35 +6289,2637,9648 +6290,252888,18 +6291,16015,18 +6292,18690,10402 +6293,424014,35 +6294,296344,35 +6295,334132,10749 +6296,18312,99 +6297,46623,18 +6298,25074,18 +6299,315465,28 +6300,1421,35 +6301,19255,35 +6302,209556,99 +6303,44658,18 +6304,102949,37 +6305,27653,9648 +6306,34205,10770 +6307,13436,27 +6308,344147,878 +6309,418990,35 +6310,297814,35 +6311,10871,28 +6312,18506,35 +6313,113194,14 +6314,26670,35 +6315,416445,35 +6316,10320,53 +6317,121354,18 +6318,246860,18 +6319,279179,10749 +6320,56264,28 +6321,48375,99 +6322,290825,35 +6323,791,53 +6324,44388,10749 +6325,539,53 +6326,18475,18 +6327,343934,35 +6328,308529,18 +6329,43441,35 +6330,213121,35 +6331,6391,35 +6332,1723,35 +6333,36194,18 +6334,336029,18 +6335,100110,53 +6336,169800,37 +6337,3574,27 +6338,107319,28 +6339,125025,10769 +6340,130900,10402 +6341,153169,18 +6342,17100,878 +6343,47914,37 +6344,38162,18 +6345,50326,18 +6346,276536,99 +6347,105,878 +6348,20304,12 +6349,20047,80 +6350,10986,35 +6351,25673,18 +6352,74505,53 +6353,15472,9648 +6354,1497,28 +6355,185564,35 +6356,117212,9648 +6357,71805,12 +6358,106573,10749 +6359,50463,35 +6360,12599,14 +6361,18514,18 +6362,110588,27 +6363,59401,10752 +6364,12645,53 +6365,16320,12 +6366,61113,35 +6367,38950,53 +6368,2669,18 +6369,294047,53 +6370,288710,53 +6371,400174,36 +6372,55612,28 +6373,29212,53 +6374,18472,53 +6375,28425,27 +6376,70282,18 +6377,43656,35 +6378,213443,35 +6379,351211,27 +6380,257344,35 +6381,160046,12 +6382,45671,18 +6383,12106,37 +6384,172,28 +6385,14843,10749 +6386,123025,16 +6387,175822,28 +6388,415358,53 +6389,172004,99 +6390,128795,53 +6391,8010,28 +6392,74714,10752 +6393,19736,14 +6394,20623,18 +6395,33253,35 +6396,42678,9648 +6397,18917,35 +6398,10929,27 +6399,71444,28 +6400,44540,18 +6401,831,9648 +6402,394723,10749 +6403,153854,18 +6404,36968,10751 +6405,198890,35 +6406,15534,10749 +6407,53864,10749 +6408,22396,10769 +6409,155765,16 +6410,110989,10751 +6411,430973,35 +6412,88176,53 +6413,110598,10749 +6414,242090,10749 +6415,13792,53 +6416,382589,35 +6417,322922,28 +6418,34729,10751 +6419,60935,53 +6420,310972,10749 +6421,96701,35 +6422,362180,18 +6423,20132,53 +6424,15916,27 +6425,114108,14 +6426,46326,80 +6427,28295,27 +6428,146,28 +6429,45000,14 +6430,3291,36 +6431,116232,35 +6432,158739,80 +6433,111239,53 +6434,161602,9648 +6435,78364,18 +6436,910,53 +6437,68987,10749 +6438,16806,35 +6439,168027,35 +6440,15934,18 +6441,24810,10749 +6442,10208,14 +6443,85230,27 +6444,345924,18 +6445,43935,878 +6446,50761,9648 +6447,323665,53 +6448,128270,18 +6449,39356,35 +6450,85628,10749 +6451,396330,16 +6452,245017,10751 +6453,41597,10752 +6454,293982,10752 +6455,173153,10770 +6456,36915,18 +6457,436343,18 +6458,131932,35 +6459,19971,18 +6460,25807,53 +6461,26376,80 +6462,274483,35 +6463,43645,14 +6464,27358,27 +6465,104193,18 +6466,18809,35 +6467,79779,10769 +6468,47816,28 +6469,27034,80 +6470,38022,28 +6471,461955,28 +6472,41932,35 +6473,81409,18 +6474,24795,18 +6475,90762,35 +6476,44389,10749 +6477,209410,10749 +6478,393562,53 +6479,2805,10749 +6480,53798,10749 +6481,690,18 +6482,74950,10402 +6483,56853,18 +6484,11008,35 +6485,20678,35 +6486,38356,878 +6487,17136,53 +6488,277388,37 +6489,27966,10749 +6490,87388,53 +6491,14694,28 +6492,15359,28 +6493,9301,10749 +6494,70752,18 +6495,2291,27 +6496,10663,35 +6497,322317,99 +6498,19582,99 +6499,270470,36 +6500,28068,27 +6501,229757,10749 +6502,44012,18 +6503,21138,35 +6504,5559,35 +6505,2976,10749 +6506,21430,878 +6507,162458,10402 +6508,18094,99 +6509,24655,9648 +6510,11960,10749 +6511,288694,80 +6512,150247,10751 +6513,125548,35 +6514,268735,35 +6515,143380,80 +6516,311764,35 +6517,4413,80 +6518,36554,18 +6519,459,18 +6520,17956,35 +6521,21442,35 +6522,337107,18 +6523,429838,9648 +6524,70351,27 +6525,63876,35 +6526,352024,16 +6527,86732,10752 +6528,362703,12 +6529,302528,18 +6530,7515,18 +6531,330171,35 +6532,419430,27 +6533,369052,10751 +6534,136466,18 +6535,124277,16 +6536,59181,35 +6537,115929,10769 +6538,28363,27 +6539,408140,27 +6540,354287,18 +6541,20296,53 +6542,89688,10769 +6543,197788,35 +6544,59189,878 +6545,24392,878 +6546,18917,14 +6547,16938,53 +6548,157843,36 +6549,33172,53 +6550,57811,10769 +6551,286372,53 +6552,193878,10749 +6553,246320,35 +6554,14537,36 +6555,36658,12 +6556,68174,9648 +6557,11626,10751 +6558,26301,80 +6559,43806,36 +6560,9675,35 +6561,411638,53 +6562,37586,18 +6563,8951,18 +6564,19676,10749 +6565,317114,10749 +6566,24685,18 +6567,29938,878 +6568,52920,35 +6569,401222,53 +6570,20495,10769 +6571,352498,18 +6572,151730,99 +6573,43149,27 +6574,283995,12 +6575,118490,28 +6576,198652,35 +6577,10937,10749 +6578,40662,28 +6579,252746,35 +6580,190955,80 +6581,317114,35 +6582,61563,18 +6583,74777,53 +6584,21866,18 +6585,184402,16 +6586,127091,28 +6587,35572,35 +6588,40970,10769 +6589,167012,35 +6590,9977,35 +6591,9716,10749 +6592,32331,18 +6593,108812,18 +6594,424661,12 +6595,17908,18 +6596,247500,80 +6597,13798,12 +6598,73257,35 +6599,44303,14 +6600,18897,18 +6601,366630,10770 +6602,123728,18 +6603,39578,35 +6604,312174,27 +6605,86532,28 +6606,333667,16 +6607,29192,16 +6608,90125,99 +6609,157117,10402 +6610,251232,18 +6611,55694,14 +6612,9905,80 +6613,37581,18 +6614,424488,18 +6615,265019,27 +6616,203186,27 +6617,2613,35 +6618,47410,53 +6619,53617,35 +6620,13965,28 +6621,324440,27 +6622,200796,35 +6623,374883,10752 +6624,18616,53 +6625,28120,9648 +6626,26808,36 +6627,114931,10769 +6628,88075,18 +6629,47867,14 +6630,25695,18 +6631,25855,28 +6632,18890,878 +6633,31473,16 +6634,26336,10749 +6635,7445,18 +6636,49844,9648 +6637,128412,18 +6638,41516,14 +6639,93492,18 +6640,22371,10770 +6641,47112,10749 +6642,42674,35 +6643,42040,28 +6644,128637,53 +6645,112722,99 +6646,38558,18 +6647,90228,35 +6648,15043,18 +6649,15810,80 +6650,18919,18 +6651,241930,878 +6652,65367,53 +6653,245019,18 +6654,4191,10749 +6655,49712,18 +6656,44875,9648 +6657,339994,18 +6658,60082,35 +6659,11899,35 +6660,26149,18 +6661,40095,35 +6662,102057,35 +6663,11425,878 +6664,61908,80 +6665,43645,35 +6666,76788,28 +6667,38325,53 +6668,226630,27 +6669,9835,35 +6670,252853,18 +6671,277687,9648 +6672,33740,99 +6673,91333,28 +6674,154371,878 +6675,82679,35 +6676,10053,27 +6677,85196,27 +6678,24746,12 +6679,336775,35 +6680,34840,18 +6681,142979,35 +6682,62684,53 +6683,435,12 +6684,8247,14 +6685,18646,10402 +6686,134435,37 +6687,13025,28 +6688,89445,18 +6689,9981,10749 +6690,225285,53 +6691,31682,878 +6692,61950,18 +6693,103539,10769 +6694,365709,9648 +6695,11692,878 +6696,139455,27 +6697,59981,10751 +6698,333354,12 +6699,27450,80 +6700,86920,53 +6701,36251,10751 +6702,17216,53 +6703,63105,878 +6704,67633,18 +6705,229610,10749 +6706,14286,99 +6707,147767,28 +6708,373200,12 +6709,31146,18 +6710,300690,35 +6711,114242,14 +6712,33273,28 +6713,46972,10751 +6714,21734,80 +6715,59965,9648 +6716,17303,28 +6717,25603,35 +6718,14292,18 +6719,39129,18 +6720,35026,12 +6721,32694,10769 +6722,7459,10751 +6723,38107,37 +6724,45649,9648 +6725,393559,10751 +6726,13655,35 +6727,19324,35 +6728,32074,28 +6729,120729,35 +6730,320420,99 +6731,62190,18 +6732,258384,18 +6733,7326,18 +6734,95177,80 +6735,54166,10752 +6736,51955,35 +6737,212996,28 +6738,44566,10402 +6739,226354,18 +6740,126934,10749 +6741,25633,18 +6742,115283,35 +6743,17590,80 +6744,32628,35 +6745,246403,35 +6746,20527,10749 +6747,198062,35 +6748,74779,28 +6749,14787,16 +6750,64936,80 +6751,32834,12 +6752,12783,18 +6753,31978,10749 +6754,42764,28 +6755,173301,99 +6756,112531,18 +6757,315465,16 +6758,2102,18 +6759,54555,35 +6760,13649,18 +6761,121824,35 +6762,217775,35 +6763,203321,18 +6764,32654,14 +6765,374416,35 +6766,197335,35 +6767,302026,878 +6768,384737,53 +6769,76115,10402 +6770,105760,18 +6771,291270,35 +6772,345519,99 +6773,9423,28 +6774,275065,12 +6775,92389,53 +6776,80012,53 +6777,1950,10749 +6778,137321,14 +6779,16638,28 +6780,321039,878 +6781,85916,35 +6782,201365,18 +6783,25074,28 +6784,58570,18 +6785,198890,18 +6786,9882,80 +6787,9982,16 +6788,10889,28 +6789,116733,12 +6790,13396,12 +6791,300669,53 +6792,66045,16 +6793,244458,27 +6794,55823,10752 +6795,195763,18 +6796,212530,18 +6797,51250,28 +6798,267466,53 +6799,104211,10749 +6800,37038,10402 +6801,77294,16 +6802,2102,28 +6803,314352,35 +6804,268212,12 +6805,79778,80 +6806,83761,18 +6807,330878,10749 +6808,28732,12 +6809,13477,14 +6810,27283,10749 +6811,69560,10770 +6812,210126,16 +6813,141267,53 +6814,76286,35 +6815,18002,35 +6816,11531,9648 +6817,292033,18 +6818,75244,10751 +6819,15387,18 +6820,336882,18 +6821,3716,35 +6822,43808,35 +6823,98125,10749 +6824,14615,10749 +6825,59838,10749 +6826,805,27 +6827,34582,53 +6828,82624,10769 +6829,87514,28 +6830,170677,18 +6831,285858,80 +6832,337879,18 +6833,82409,18 +6834,337876,18 +6835,332286,36 +6836,90228,18 +6837,12432,18 +6838,218443,53 +6839,11630,10751 +6840,255388,35 +6841,297745,35 +6842,159138,99 +6843,73642,10749 +6844,100275,35 +6845,62330,28 +6846,20153,53 +6847,398633,35 +6848,34326,28 +6849,37984,10769 +6850,43931,18 +6851,280422,35 +6852,35292,35 +6853,18492,28 +6854,16147,10769 +6855,298935,18 +6856,58985,18 +6857,121662,878 +6858,2029,35 +6859,44442,18 +6860,133704,35 +6861,7551,28 +6862,41301,10749 +6863,254193,27 +6864,163870,36 +6865,289207,53 +6866,267310,99 +6867,54102,10752 +6868,43354,10749 +6869,162374,18 +6870,270724,10749 +6871,127144,14 +6872,14945,878 +6873,9540,18 +6874,75969,35 +6875,213755,14 +6876,127521,80 +6877,364833,18 +6878,857,36 +6879,50126,18 +6880,52782,18 +6881,40047,10770 +6882,293167,14 +6883,28047,10749 +6884,149465,18 +6885,10004,27 +6886,17479,18 +6887,81312,35 +6888,185987,18 +6889,71771,10769 +6890,140509,18 +6891,219572,80 +6892,60547,37 +6893,40799,37 +6894,74585,18 +6895,206296,10749 +6896,146315,18 +6897,70090,35 +6898,43700,35 +6899,67794,18 +6900,12606,35 +6901,10916,12 +6902,9042,53 +6903,37329,37 +6904,153717,10751 +6905,65131,10749 +6906,11979,27 +6907,23861,18 +6908,300090,18 +6909,52358,18 +6910,9899,35 +6911,11003,10749 +6912,300424,12 +6913,23382,53 +6914,197854,10769 +6915,121539,10749 +6916,364324,28 +6917,105833,10749 +6918,53459,27 +6919,22855,16 +6920,30060,16 +6921,50008,36 +6922,19398,35 +6923,66175,80 +6924,11601,53 +6925,220287,18 +6926,214081,10749 +6927,306952,35 +6928,309879,53 +6929,33923,80 +6930,27671,53 +6931,316042,10752 +6932,36658,28 +6933,86321,18 +6934,294819,35 +6935,46943,53 +6936,229297,35 +6937,9426,878 +6938,84352,80 +6939,111042,10402 +6940,37339,10769 +6941,14923,35 +6942,56815,53 +6943,77645,28 +6944,5559,16 +6945,34734,53 +6946,353641,10751 +6947,27300,16 +6948,384262,99 +6949,214100,18 +6950,34138,28 +6951,21057,16 +6952,413770,18 +6953,47911,35 +6954,79707,12 +6955,105077,12 +6956,10326,878 +6957,19548,35 +6958,601,10751 +6959,18283,10402 +6960,26486,28 +6961,21753,35 +6962,282963,10770 +6963,29143,18 +6964,8332,80 +6965,90110,35 +6966,71120,28 +6967,43808,10751 +6968,10265,28 +6969,10972,9648 +6970,398891,10749 +6971,110980,27 +6972,19989,37 +6973,46943,18 +6974,68050,53 +6975,102629,12 +6976,334527,80 +6977,2080,12 +6978,21519,35 +6979,136087,35 +6980,86266,10769 +6981,45562,18 +6982,55846,28 +6983,324572,18 +6984,60189,35 +6985,55823,35 +6986,9079,18 +6987,72574,80 +6988,32158,28 +6989,27791,27 +6990,20055,9648 +6991,253286,53 +6992,14979,28 +6993,61267,10749 +6994,336691,10749 +6995,134238,35 +6996,63612,35 +6997,422005,35 +6998,403867,80 +6999,13205,18 +7000,42703,37 +7001,805,9648 +7002,57829,36 +7003,85836,18 +7004,76097,35 +7005,10696,10749 +7006,26687,27 +7007,68684,35 +7008,49843,35 +7009,89659,27 +7010,47959,10749 +7011,176079,18 +7012,31273,18 +7013,18575,28 +7014,113743,12 +7015,166255,10749 +7016,443053,18 +7017,304134,35 +7018,58904,27 +7019,2611,35 +7020,53209,10749 +7021,29398,9648 +7022,376523,99 +7023,53693,10751 +7024,18711,9648 +7025,83435,35 +7026,64568,9648 +7027,14293,18 +7028,55712,28 +7029,1773,18 +7030,11496,12 +7031,305127,18 +7032,25037,35 +7033,38594,16 +7034,19736,28 +7035,2965,878 +7036,131478,18 +7037,9828,9648 +7038,301348,36 +7039,37672,18 +7040,306598,18 +7041,52049,53 +7042,17895,12 +7043,32328,10402 +7044,43459,12 +7045,13685,35 +7046,13408,35 +7047,136087,14 +7048,22899,27 +7049,112287,53 +7050,61400,35 +7051,118443,18 +7052,13682,10751 +7053,45990,18 +7054,26736,12 +7055,97672,35 +7056,111759,12 +7057,27461,36 +7058,13517,35 +7059,13022,28 +7060,25921,35 +7061,24050,35 +7062,219781,99 +7063,19403,53 +7064,87296,28 +7065,64393,18 +7066,5544,10749 +7067,53870,12 +7068,407887,28 +7069,73462,12 +7070,36807,14 +7071,52705,10752 +7072,64868,10751 +7073,285733,14 +7074,10693,16 +7075,267466,18 +7076,25801,18 +7077,76200,80 +7078,84284,99 +7079,224903,53 +7080,10326,14 +7081,25597,14 +7082,141138,28 +7083,14449,18 +7084,20107,10749 +7085,37108,10751 +7086,111759,10749 +7087,34496,80 +7088,98364,18 +7089,31275,878 +7090,12683,28 +7091,308032,53 +7092,24479,99 +7093,127445,18 +7094,137491,18 +7095,205587,18 +7096,332354,35 +7097,348689,12 +7098,433082,10752 +7099,13788,9648 +7100,19294,18 +7101,41209,28 +7102,2897,14 +7103,42553,80 +7104,14008,35 +7105,86703,53 +7106,183039,18 +7107,19108,80 +7108,156141,36 +7109,12538,10749 +7110,39308,14 +7111,84333,10749 +7112,283489,12 +7113,12614,10749 +7114,38021,18 +7115,267623,18 +7116,87826,35 +7117,74836,878 +7118,84903,35 +7119,79782,18 +7120,374475,35 +7121,28320,10749 +7122,13411,80 +7123,12144,12 +7124,7871,18 +7125,67377,35 +7126,44902,18 +7127,30974,27 +7128,36868,16 +7129,19995,12 +7130,46193,37 +7131,3055,10402 +7132,47405,18 +7133,14069,878 +7134,88005,35 +7135,113432,18 +7136,175334,18 +7137,21571,35 +7138,41077,14 +7139,343140,10402 +7140,117730,18 +7141,166904,35 +7142,34672,10751 +7143,49492,10749 +7144,3033,18 +7145,55759,35 +7146,126754,53 +7147,146322,18 +7148,14292,36 +7149,94671,18 +7150,61935,10749 +7151,395982,35 +7152,129966,18 +7153,52555,18 +7154,24914,16 +7155,4983,28 +7156,18642,35 +7157,43808,10749 +7158,73262,27 +7159,10696,18 +7160,13849,53 +7161,76203,18 +7162,26030,80 +7163,56391,10751 +7164,47900,14 +7165,39123,12 +7166,291270,10749 +7167,59296,10749 +7168,44877,10749 +7169,41559,53 +7170,28345,18 +7171,203715,16 +7172,348315,80 +7173,60160,28 +7174,22140,9648 +7175,11380,27 +7176,303857,12 +7177,37725,14 +7178,409696,14 +7179,141145,18 +7180,98631,80 +7181,24936,18 +7182,41110,10749 +7183,18633,14 +7184,37936,18 +7185,37954,18 +7186,15045,35 +7187,2017,53 +7188,246917,27 +7189,85052,10749 +7190,16342,53 +7191,273896,18 +7192,11380,28 +7193,9894,35 +7194,66949,18 +7195,84030,10751 +7196,92391,10769 +7197,448992,99 +7198,16331,28 +7199,185291,18 +7200,130717,10402 +7201,83562,18 +7202,15156,80 +7203,4930,53 +7204,262786,35 +7205,48466,35 +7206,76411,18 +7207,348025,35 +7208,200727,35 +7209,9084,10769 +7210,14372,27 +7211,276123,35 +7212,281215,10752 +7213,31922,10749 +7214,44105,18 +7215,46286,18 +7216,49852,10751 +7217,69828,12 +7218,10070,28 +7219,28025,18 +7220,46658,18 +7221,12104,10402 +7222,124517,18 +7223,5551,28 +7224,51302,35 +7225,240881,28 +7226,11329,53 +7227,54700,27 +7228,13763,18 +7229,10433,10749 +7230,53150,27 +7231,347945,53 +7232,29825,18 +7233,43846,10749 +7234,42571,18 +7235,29368,9648 +7236,30924,35 +7237,235260,18 +7238,26961,14 +7239,157919,18 +7240,15379,10752 +7241,23619,35 +7242,50674,12 +7243,2977,10749 +7244,49190,53 +7245,51999,10749 +7246,40850,10749 +7247,54570,35 +7248,64225,18 +7249,227266,18 +7250,116303,18 +7251,13956,14 +7252,44875,10749 +7253,80343,28 +7254,270007,53 +7255,655,18 +7256,120837,18 +7257,319513,18 +7258,11259,10749 +7259,20186,18 +7260,397837,18 +7261,267557,35 +7262,32428,35 +7263,40850,18 +7264,252102,35 +7265,24348,99 +7266,46729,10749 +7267,68797,10749 +7268,44896,35 +7269,1073,18 +7270,42473,10751 +7271,12450,12 +7272,77964,10749 +7273,79500,878 +7274,43935,27 +7275,44682,53 +7276,1793,10751 +7277,26252,28 +7278,29082,28 +7279,76094,10749 +7280,21786,9648 +7281,243568,9648 +7282,30941,18 +7283,298228,27 +7284,52251,27 +7285,403570,35 +7286,126523,18 +7287,924,27 +7288,408508,18 +7289,11887,10751 +7290,65488,10749 +7291,14869,53 +7292,57230,14 +7293,270383,53 +7294,269246,878 +7295,14869,28 +7296,258251,28 +7297,83361,12 +7298,137357,18 +7299,25969,10749 +7300,295748,18 +7301,51786,10751 +7302,11091,10749 +7303,44895,35 +7304,2,80 +7305,9664,28 +7306,52362,18 +7307,38417,80 +7308,85446,10402 +7309,99861,28 +7310,296523,18 +7311,61348,18 +7312,91690,18 +7313,113119,878 +7314,48254,18 +7315,15497,28 +7316,60281,10749 +7317,15506,18 +7318,42307,878 +7319,87612,80 +7320,45807,35 +7321,15148,18 +7322,20644,10749 +7323,435737,35 +7324,22943,18 +7325,26005,80 +7326,21028,35 +7327,110608,9648 +7328,64202,28 +7329,13072,28 +7330,102632,28 +7331,85673,53 +7332,13680,10751 +7333,40873,99 +7334,333354,18 +7335,10303,35 +7336,421741,18 +7337,241254,28 +7338,62764,35 +7339,29239,18 +7340,24757,80 +7341,382125,18 +7342,241071,18 +7343,60551,10749 +7344,361050,80 +7345,26293,53 +7346,54752,18 +7347,11202,36 +7348,285848,10751 +7349,219067,99 +7350,412209,10749 +7351,52454,27 +7352,197854,16 +7353,70006,28 +7354,10176,878 +7355,73420,10402 +7356,61113,10749 +7357,41805,18 +7358,25468,18 +7359,105965,10751 +7360,30695,18 +7361,142746,35 +7362,24916,27 +7363,16005,35 +7364,20879,35 +7365,40799,28 +7366,42045,10402 +7367,34734,27 +7368,110227,10751 +7369,16234,16 +7370,43277,18 +7371,226269,27 +7372,109379,18 +7373,11907,10751 +7374,82243,9648 +7375,115290,18 +7376,282963,878 +7377,333352,10752 +7378,64215,27 +7379,63081,27 +7380,110992,18 +7381,76684,18 +7382,105254,18 +7383,244001,35 +7384,10458,28 +7385,33015,37 +7386,40879,35 +7387,141210,35 +7388,293167,28 +7389,21769,12 +7390,88491,35 +7391,57627,10749 +7392,20986,28 +7393,373541,53 +7394,225499,35 +7395,120657,18 +7396,73306,18 +7397,200,878 +7398,3587,10751 +7399,96872,35 +7400,19174,80 +7401,314283,18 +7402,43525,10749 +7403,87827,12 +7404,245917,36 +7405,7326,35 +7406,73565,35 +7407,18334,27 +7408,126250,35 +7409,18088,35 +7410,14753,18 +7411,15527,27 +7412,322400,99 +7413,36089,878 +7414,83729,35 +7415,20421,16 +7416,47694,10769 +7417,20287,28 +7418,1452,28 +7419,244956,36 +7420,31022,27 +7421,298751,35 +7422,61203,10769 +7423,122271,18 +7424,208637,18 +7425,11496,28 +7426,122435,12 +7427,51548,18 +7428,79935,10752 +7429,220669,18 +7430,24752,12 +7431,9613,9648 +7432,5646,35 +7433,85959,18 +7434,12230,12 +7435,11354,35 +7436,59803,16 +7437,38340,28 +7438,110146,18 +7439,66526,10769 +7440,29695,9648 +7441,12449,80 +7442,35177,10751 +7443,121510,35 +7444,31439,10752 +7445,104398,16 +7446,90395,10402 +7447,39957,53 +7448,1418,18 +7449,177902,35 +7450,17258,80 +7451,5915,12 +7452,47405,35 +7453,32901,99 +7454,11045,35 +7455,5608,12 +7456,211387,878 +7457,159810,18 +7458,20742,80 +7459,373546,18 +7460,16234,10751 +7461,255343,10749 +7462,242076,18 +7463,21769,878 +7464,11232,35 +7465,1899,18 +7466,16382,10749 +7467,248633,27 +7468,104146,35 +7469,66668,10749 +7470,43049,35 +7471,11975,53 +7472,133255,37 +7473,53403,35 +7474,61473,10751 +7475,25941,18 +7476,29094,18 +7477,309581,18 +7478,63144,99 +7479,3057,18 +7480,16907,28 +7481,241374,35 +7482,39347,10749 +7483,49230,28 +7484,177572,10751 +7485,35139,10749 +7486,38625,28 +7487,285213,36 +7488,229134,10749 +7489,94570,18 +7490,298931,10402 +7491,21828,10749 +7492,83718,53 +7493,34723,28 +7494,24801,35 +7495,293380,36 +7496,76047,10749 +7497,42569,35 +7498,93828,12 +7499,123770,18 +7500,41380,35 +7501,65089,35 +7502,31542,18 +7503,20742,18 +7504,13480,35 +7505,35337,10749 +7506,72574,53 +7507,28000,18 +7508,280617,28 +7509,12764,12 +7510,14263,99 +7511,11601,9648 +7512,33367,10749 +7513,41923,35 +7514,31911,10749 +7515,63449,10749 +7516,126754,10749 +7517,76609,36 +7518,24486,80 +7519,346723,18 +7520,338100,10751 +7521,62132,27 +7522,101185,18 +7523,393445,18 +7524,377287,18 +7525,36214,14 +7526,13766,10751 +7527,12637,18 +7528,54825,35 +7529,81775,18 +7530,772,80 +7531,18633,35 +7532,77950,16 +7533,138496,53 +7534,58704,10751 +7535,44936,27 +7536,40852,28 +7537,27814,35 +7538,334527,18 +7539,23452,12 +7540,220674,10770 +7541,109001,28 +7542,14830,878 +7543,369885,18 +7544,46014,10402 +7545,27711,27 +7546,210609,37 +7547,114719,10749 +7548,844,10749 +7549,27042,35 +7550,469172,14 +7551,339367,18 +7552,10488,12 +7553,23957,80 +7554,10529,14 +7555,105902,80 +7556,75564,80 +7557,22328,10751 +7558,108723,10749 +7559,5481,27 +7560,11777,35 +7561,47412,878 +7562,326228,35 +7563,3145,27 +7564,409502,18 +7565,29611,53 +7566,75578,14 +7567,72375,18 +7568,212156,878 +7569,104275,27 +7570,31922,53 +7571,149232,80 +7572,177572,16 +7573,322460,35 +7574,252028,35 +7575,17669,36 +7576,86252,18 +7577,72057,18 +7578,8951,35 +7579,267935,10751 +7580,96712,18 +7581,157409,35 +7582,326874,35 +7583,91070,35 +7584,21325,18 +7585,136786,99 +7586,25653,35 +7587,2195,28 +7588,81312,18 +7589,43327,10749 +7590,1634,10751 +7591,257081,18 +7592,341886,878 +7593,13390,53 +7594,254188,27 +7595,23750,10769 +7596,141015,28 +7597,9023,35 +7598,269165,80 +7599,66597,18 +7600,29829,9648 +7601,407,53 +7602,185934,35 +7603,57011,27 +7604,23516,18 +7605,17317,80 +7606,43880,37 +7607,10795,80 +7608,37308,10752 +7609,43143,878 +7610,10829,27 +7611,62320,99 +7612,270842,18 +7613,199463,18 +7614,17332,18 +7615,23805,10751 +7616,1902,18 +7617,9495,14 +7618,98914,18 +7619,76846,35 +7620,70583,53 +7621,2160,12 +7622,39195,18 +7623,209248,10402 +7624,31671,12 +7625,22681,27 +7626,300769,35 +7627,64720,53 +7628,26390,18 +7629,186079,12 +7630,82655,9648 +7631,56744,9648 +7632,9464,35 +7633,31299,10749 +7634,32338,35 +7635,30143,80 +7636,298935,10749 +7637,133523,27 +7638,1724,878 +7639,13022,27 +7640,49609,10752 +7641,1790,37 +7642,35926,18 +7643,273084,53 +7644,249021,878 +7645,3145,878 +7646,329206,18 +7647,10834,18 +7648,11425,28 +7649,73896,37 +7650,72105,35 +7651,255456,35 +7652,23855,35 +7653,20493,878 +7654,77338,18 +7655,413421,18 +7656,86829,18 +7657,922,18 +7658,78028,12 +7659,125926,18 +7660,105,12 +7661,14878,27 +7662,318922,53 +7663,140,53 +7664,271039,18 +7665,45019,10749 +7666,225044,10402 +7667,156547,35 +7668,77459,14 +7669,9577,99 +7670,35826,14 +7671,86643,27 +7672,363757,10749 +7673,54525,27 +7674,259690,18 +7675,197624,28 +7676,33345,35 +7677,42170,18 +7678,30941,53 +7679,40957,35 +7680,85580,10751 +7681,34869,18 +7682,258947,18 +7683,33623,9648 +7684,156700,35 +7685,26390,80 +7686,193893,35 +7687,37291,35 +7688,328429,53 +7689,18646,35 +7690,19757,878 +7691,117531,18 +7692,73723,10751 +7693,31700,18 +7694,26558,53 +7695,211729,27 +7696,31835,10749 +7697,11980,14 +7698,39217,18 +7699,113040,14 +7700,360603,35 +7701,41261,18 +7702,29067,53 +7703,6068,12 +7704,227156,18 +7705,31031,18 +7706,312100,10751 +7707,55934,9648 +7708,43849,10402 +7709,102384,12 +7710,98115,35 +7711,51275,18 +7712,167330,53 +7713,68004,18 +7714,74911,53 +7715,349394,35 +7716,42996,12 +7717,179847,99 +7718,83223,27 +7719,174751,18 +7720,63568,18 +7721,42453,28 +7722,22584,53 +7723,154,53 +7724,38931,99 +7725,8583,10749 +7726,29903,28 +7727,184741,10749 +7728,66634,18 +7729,55208,53 +7730,125513,14 +7731,104430,10752 +7732,335869,18 +7733,68987,35 +7734,146970,37 +7735,35856,35 +7736,172548,35 +7737,19505,10402 +7738,8856,10751 +7739,233423,12 +7740,10154,35 +7741,13196,35 +7742,343878,10749 +7743,9297,10751 +7744,69035,53 +7745,201223,27 +7746,362057,27 +7747,28273,18 +7748,30619,28 +7749,161545,35 +7750,313108,18 +7751,7514,10402 +7752,28387,10749 +7753,27543,18 +7754,204994,37 +7755,87514,18 +7756,10543,18 +7757,23750,35 +7758,20381,28 +7759,87148,27 +7760,55823,18 +7761,47201,53 +7762,210302,18 +7763,237672,18 +7764,209764,53 +7765,86979,18 +7766,221732,18 +7767,58428,27 +7768,37708,18 +7769,623,80 +7770,47535,10770 +7771,31397,878 +7772,78233,18 +7773,10396,12 +7774,179398,35 +7775,63348,18 +7776,144271,35 +7777,408220,53 +7778,27834,878 +7779,87992,36 +7780,70815,10749 +7781,86118,16 +7782,62211,16 +7783,24331,878 +7784,46943,28 +7785,12129,12 +7786,165,12 +7787,186759,35 +7788,40688,35 +7789,72074,9648 +7790,91480,10749 +7791,96793,28 +7792,31548,18 +7793,36113,35 +7794,96252,35 +7795,96724,10749 +7796,413644,16 +7797,32234,53 +7798,59163,18 +7799,438634,18 +7800,28063,27 +7801,258509,16 +7802,44489,18 +7803,209764,28 +7804,2687,878 +7805,88012,35 +7806,53367,99 +7807,308639,18 +7808,229056,18 +7809,42599,10749 +7810,43850,10749 +7811,17074,16 +7812,1586,53 +7813,77794,36 +7814,24926,10751 +7815,12,16 +7816,1991,28 +7817,314389,28 +7818,30289,878 +7819,294093,10751 +7820,91391,35 +7821,12477,10752 +7822,1589,10749 +7823,74,878 +7824,83899,53 +7825,7548,18 +7826,331313,28 +7827,51358,35 +7828,362045,36 +7829,47084,18 +7830,28774,27 +7831,374614,35 +7832,122435,18 +7833,11647,53 +7834,51406,16 +7835,42132,18 +7836,43141,10749 +7837,46029,35 +7838,332567,27 +7839,18206,80 +7840,369820,35 +7841,26661,35 +7842,55694,878 +7843,32932,12 +7844,15697,10402 +7845,440597,14 +7846,27019,35 +7847,43023,10749 +7848,118957,27 +7849,228968,18 +7850,325189,10402 +7851,98069,10402 +7852,43522,35 +7853,48778,18 +7854,211879,18 +7855,57489,18 +7856,43093,14 +7857,10921,12 +7858,10207,10749 +7859,292062,18 +7860,11257,10749 +7861,17203,18 +7862,222858,35 +7863,40458,27 +7864,134308,12 +7865,126415,37 +7866,8463,10749 +7867,74035,35 +7868,755,80 +7869,361050,9648 +7870,51619,18 +7871,244610,53 +7872,10047,10752 +7873,375366,18 +7874,14765,53 +7875,214129,35 +7876,39102,12 +7877,39024,27 +7878,16666,10402 +7879,44369,10769 +7880,86727,18 +7881,311324,28 +7882,24149,35 +7883,30174,10749 +7884,13682,16 +7885,98566,14 +7886,363841,10749 +7887,11658,36 +7888,62132,35 +7889,85602,28 +7890,125759,10752 +7891,416569,18 +7892,52520,28 +7893,172847,18 +7894,417820,10752 +7895,18696,18 +7896,90563,35 +7897,45729,27 +7898,66292,18 +7899,13374,10751 +7900,58076,10752 +7901,190352,10751 +7902,86360,10402 +7903,26864,10749 +7904,16820,53 +7905,11854,10749 +7906,3554,18 +7907,321528,12 +7908,8584,35 +7909,17236,18 +7910,62289,53 +7911,41787,53 +7912,22752,10751 +7913,61532,18 +7914,208309,18 +7915,35404,18 +7916,49172,80 +7917,145220,12 +7918,181574,18 +7919,252724,10749 +7920,220674,18 +7921,18117,18 +7922,10871,9648 +7923,289225,18 +7924,238749,10770 +7925,35689,80 +7926,9673,35 +7927,86049,53 +7928,127864,14 +7929,32552,10749 +7930,47794,18 +7931,11930,28 +7932,7220,80 +7933,11943,12 +7934,376501,18 +7935,109479,53 +7936,97614,18 +7937,37534,53 +7938,57438,18 +7939,393659,35 +7940,13678,12 +7941,148265,878 +7942,38389,35 +7943,75578,18 +7944,12855,18 +7945,376660,35 +7946,291,99 +7947,10693,14 +7948,30349,28 +7949,385114,99 +7950,27042,16 +7951,1574,35 +7952,90590,80 +7953,78177,18 +7954,29372,18 +7955,10869,10751 +7956,113525,27 +7957,56435,10749 +7958,353595,10751 +7959,1924,12 +7960,49850,18 +7961,41497,53 +7962,359807,99 +7963,10003,28 +7964,116432,35 +7965,67900,16 +7966,335819,80 +7967,109441,10749 +7968,73194,18 +7969,13442,18 +7970,28482,14 +7971,29259,80 +7972,30174,35 +7973,54243,18 +7974,70027,99 +7975,5177,35 +7976,52418,53 +7977,281979,878 +7978,15068,53 +7979,292656,35 +7980,77673,12 +7981,320037,18 +7982,4820,28 +7983,56448,10752 +7984,273868,36 +7985,20438,10749 +7986,48186,10751 +7987,45184,18 +7988,127560,18 +7989,33336,36 +7990,178,53 +7991,86126,80 +7992,265432,18 +7993,48805,35 +7994,14181,18 +7995,240913,9648 +7996,61548,18 +7997,58773,35 +7998,7514,18 +7999,101338,18 +8000,19050,10751 +8001,22396,28 +8002,24971,18 +8003,22292,9648 +8004,134806,10749 +8005,52475,18 +8006,46738,10752 +8007,375355,27 +8008,392818,27 +8009,18803,18 +8010,131764,12 +8011,17771,18 +8012,30994,10402 +8013,15776,18 +8014,252680,35 +8015,5257,36 +8016,17189,80 +8017,14510,27 +8018,76996,10749 +8019,43670,10402 +8020,341689,878 +8021,41076,35 +8022,331588,35 +8023,41760,18 +8024,46695,27 +8025,15916,16 +8026,43833,35 +8027,1377,18 +8028,21866,37 +8029,3051,80 +8030,44545,27 +8031,1381,12 +8032,49950,18 +8033,12632,10769 +8034,26889,878 +8035,98115,10749 +8036,56191,28 +8037,44875,35 +8038,47120,18 +8039,12617,53 +8040,74661,18 +8041,320318,53 +8042,48787,10769 +8043,358511,18 +8044,232462,80 +8045,11953,28 +8046,15044,18 +8047,79611,14 +8048,94744,53 +8049,37708,9648 +8050,36519,80 +8051,381767,27 +8052,385261,36 +8053,6933,9648 +8054,440597,53 +8055,17496,10749 +8056,132957,80 +8057,57829,18 +8058,1924,14 +8059,318973,80 +8060,29577,10749 +8061,79833,878 +8062,449674,35 +8063,10396,28 +8064,31037,18 +8065,19989,28 +8066,28469,35 +8067,18908,35 +8068,21338,80 +8069,294272,10751 +8070,9993,18 +8071,347127,27 +8072,4285,35 +8073,3016,18 +8074,32764,18 +8075,253337,99 +8076,22450,28 +8077,288503,53 +8078,39771,28 +8079,67377,12 +8080,29610,878 +8081,63449,14 +8082,33117,10402 +8083,15677,18 +8084,12289,28 +8085,358901,80 +8086,25597,27 +8087,14609,878 +8088,81996,35 +8089,53882,53 +8090,21379,10751 +8091,83354,28 +8092,434873,27 +8093,292033,36 +8094,90030,878 +8095,97630,53 +8096,1247,18 +8097,47683,18 +8098,32031,28 +8099,8981,10751 +8100,9102,878 +8101,226630,53 +8102,10400,18 +8103,197725,18 +8104,19621,80 +8105,18620,10749 +8106,84249,18 +8107,29698,18 +8108,28739,27 +8109,10475,18 +8110,25074,80 +8111,55563,878 +8112,156360,18 +8113,46069,10749 +8114,8970,35 +8115,99934,10749 +8116,16066,10769 +8117,110980,18 +8118,186997,99 +8119,463906,28 +8120,77165,37 +8121,78364,10749 +8122,37969,12 +8123,122857,27 +8124,12499,35 +8125,32834,10749 +8126,28366,28 +8127,33117,10749 +8128,137528,35 +8129,11373,10769 +8130,28263,35 +8131,277558,53 +8132,8882,80 +8133,86497,18 +8134,45324,35 +8135,109261,18 +8136,15689,27 +8137,12206,53 +8138,42305,10749 +8139,9951,28 +8140,11377,53 +8141,109424,28 +8142,75233,18 +8143,43268,12 +8144,107250,9648 +8145,71496,18 +8146,116904,10749 +8147,333103,35 +8148,43741,18 +8149,47559,10749 +8150,47955,27 +8151,25701,35 +8152,58,12 +8153,406052,14 +8154,14072,10749 +8155,27989,10749 +8156,109491,14 +8157,266856,18 +8158,72199,16 +8159,71099,18 +8160,36635,53 +8161,83785,53 +8162,50123,28 +8163,16432,18 +8164,225503,28 +8165,73116,27 +8166,2061,80 +8167,104297,10751 +8168,392818,18 +8169,21721,10402 +8170,83965,35 +8171,79995,35 +8172,25919,35 +8173,11362,12 +8174,299165,35 +8175,313896,14 +8176,35118,18 +8177,277229,28 +8178,14053,35 +8179,101752,18 +8180,112708,28 +8181,64353,12 +8182,21352,12 +8183,118,14 +8184,360605,12 +8185,41298,35 +8186,299730,53 +8187,78265,80 +8188,64225,14 +8189,375012,27 +8190,450530,18 +8191,347031,18 +8192,1917,53 +8193,207636,18 +8194,10693,10402 +8195,20196,10751 +8196,16083,18 +8197,129882,18 +8198,148265,10749 +8199,36375,53 +8200,41277,35 +8201,27031,36 +8202,88818,10769 +8203,348544,18 +8204,64605,80 +8205,58790,12 +8206,22447,18 +8207,3115,14 +8208,56135,18 +8209,86718,28 +8210,128169,10749 +8211,34766,35 +8212,91673,16 +8213,190955,18 +8214,311301,18 +8215,39230,878 +8216,69315,18 +8217,79054,35 +8218,266568,14 +8219,76468,18 +8220,15050,878 +8221,198993,16 +8222,252028,18 +8223,20583,28 +8224,83802,35 +8225,1267,16 +8226,84993,53 +8227,15981,16 +8228,40761,878 +8229,366170,12 +8230,21132,53 +8231,298787,53 +8232,191562,35 +8233,82430,878 +8234,222216,28 +8235,22292,14 +8236,58487,35 +8237,62045,10769 +8238,2085,28 +8239,269173,878 +8240,30996,53 +8241,298931,35 +8242,46128,18 +8243,15256,10749 +8244,8463,18 +8245,376660,18 +8246,34977,80 +8247,30644,12 +8248,243881,18 +8249,26574,35 +8250,35200,37 +8251,40765,53 +8252,3053,35 +8253,14301,28 +8254,138544,27 +8255,28036,99 +8256,30034,80 +8257,232731,27 +8258,67822,12 +8259,18128,35 +8260,376391,10402 +8261,236007,28 +8262,19042,10751 +8263,301729,53 +8264,102362,18 +8265,117913,18 +8266,13934,16 +8267,25568,99 +8268,11204,36 +8269,6038,35 +8270,64015,18 +8271,62764,878 +8272,222619,28 +8273,48489,53 +8274,284052,878 +8275,77165,9648 +8276,40205,14 +8277,23599,53 +8278,36628,35 +8279,140222,10749 +8280,21138,878 +8281,413052,80 +8282,123047,18 +8283,301804,53 +8284,363354,35 +8285,260310,16 +8286,69060,35 +8287,19174,28 +8288,49074,28 +8289,146679,28 +8290,33338,28 +8291,300487,35 +8292,44773,28 +8293,73532,35 +8294,256474,80 +8295,220724,28 +8296,80410,18 +8297,85024,27 +8298,66967,80 +8299,171308,53 +8300,147722,10749 +8301,14286,18 +8302,52051,14 +8303,340684,10749 +8304,21138,12 +8305,45512,35 +8306,24397,10749 +8307,41574,27 +8308,275136,16 +8309,31561,10749 +8310,5516,35 +8311,20003,18 +8312,83459,35 +8313,25655,80 +8314,16373,14 +8315,128841,53 +8316,47342,878 +8317,14429,18 +8318,13285,12 +8319,19957,14 +8320,58918,28 +8321,9030,53 +8322,68684,27 +8323,317198,35 +8324,41559,35 +8325,26131,18 +8326,45303,28 +8327,64183,18 +8328,279690,35 +8329,408537,18 +8330,10198,10751 +8331,79216,14 +8332,35177,878 +8333,340187,35 +8334,36421,27 +8335,310123,10749 +8336,74924,14 +8337,239513,18 +8338,327749,18 +8339,10109,18 +8340,18442,878 +8341,13848,9648 +8342,20678,12 +8343,248268,18 +8344,3048,10769 +8345,35381,37 +8346,16023,35 +8347,61988,28 +8348,33592,27 +8349,315439,18 +8350,64928,10402 +8351,2577,878 +8352,98438,35 +8353,412103,80 +8354,77864,53 +8355,375732,10402 +8356,9314,10749 +8357,9703,14 +8358,9982,10751 +8359,3104,878 +8360,34899,10769 +8361,12759,27 +8362,28370,878 +8363,89116,10751 +8364,118889,10749 +8365,831,878 +8366,144271,80 +8367,25006,28 +8368,58646,10769 +8369,234377,16 +8370,189888,80 +8371,24767,10751 +8372,413417,35 +8373,373977,10770 +8374,34995,53 +8375,121173,35 +8376,329010,53 +8377,83201,10751 +8378,46924,35 +8379,4111,18 +8380,365340,99 +8381,63578,18 +8382,174487,18 +8383,47900,10752 +8384,257907,18 +8385,42021,10749 +8386,39779,53 +8387,2984,35 +8388,11591,878 +8389,17708,28 +8390,48587,53 +8391,82622,18 +8392,105231,16 +8393,165567,9648 +8394,13333,53 +8395,61035,10402 +8396,4133,80 +8397,311585,99 +8398,110160,10749 +8399,41963,53 +8400,50759,18 +8401,30126,18 +8402,7233,35 +8403,81232,10751 +8404,31597,28 +8405,144942,10770 +8406,35572,18 +8407,82448,18 +8408,13056,28 +8409,414749,35 +8410,33740,10402 +8411,224,36 +8412,81522,35 +8413,27501,35 +8414,73772,10751 +8415,20107,35 +8416,55370,18 +8417,56154,18 +8418,189197,10752 +8419,190876,18 +8420,121824,53 +8421,40859,18 +8422,21348,10751 +8423,48319,53 +8424,28,18 +8425,12113,28 +8426,60106,35 +8427,3595,53 +8428,115905,10769 +8429,26405,18 +8430,138222,35 +8431,24955,18 +8432,11196,35 +8433,325555,35 +8434,381073,35 +8435,12594,27 +8436,59735,27 +8437,116350,14 +8438,8906,10749 +8439,110261,14 +8440,156288,10749 +8441,41097,10751 +8442,175339,18 +8443,59838,35 +8444,29239,53 +8445,118658,10752 +8446,24420,10749 +8447,11296,36 +8448,77000,10751 +8449,47003,10769 +8450,22584,10749 +8451,14136,10751 +8452,383618,10751 +8453,42669,18 +8454,43828,35 +8455,28761,28 +8456,233639,12 +8457,94468,18 +8458,341007,16 +8459,16985,35 +8460,161795,10749 +8461,23730,878 +8462,3035,18 +8463,126415,18 +8464,202337,18 +8465,12707,27 +8466,109018,35 +8467,2140,53 +8468,50326,10751 +8469,199615,10752 +8470,43752,35 +8471,26687,10769 +8472,26165,36 +8473,63376,10769 +8474,155128,18 +8475,57770,10751 +8476,43850,35 +8477,13569,18 +8478,113638,18 +8479,364111,16 +8480,43562,37 +8481,37329,36 +8482,63498,10402 +8483,85317,35 +8484,111605,35 +8485,83865,16 +8486,27259,53 +8487,32067,53 +8488,19995,878 +8489,76714,18 +8490,16866,878 +8491,9667,18 +8492,70587,10751 +8493,39219,18 +8494,68720,35 +8495,31512,35 +8496,257176,18 +8497,41164,18 +8498,31390,37 +8499,10458,80 +8500,238307,10749 +8501,56947,18 +8502,13763,10402 +8503,16442,10752 +8504,31380,878 +8505,180252,10749 +8506,214,27 +8507,417936,10749 +8508,84473,27 +8509,12279,35 +8510,271826,18 +8511,70404,53 +8512,27003,80 +8513,9070,878 +8514,64268,18 +8515,141,9648 +8516,85009,53 +8517,41166,10749 +8518,283445,27 +8519,19552,18 +8520,48594,9648 +8521,75892,18 +8522,52203,27 +8523,56558,18 +8524,83614,10749 +8525,296901,35 +8526,61716,27 +8527,29286,35 +8528,9959,80 +8529,20986,12 +8530,84772,10749 +8531,344039,35 +8532,83,18 +8533,253277,10749 +8534,18704,18 +8535,70327,878 +8536,41591,18 +8537,46567,37 +8538,18002,28 +8539,36243,14 +8540,126712,80 +8541,136087,16 +8542,62761,9648 +8543,43471,18 +8544,56491,53 +8545,38107,12 +8546,31598,28 +8547,64353,878 +8548,32855,18 +8549,2259,10749 +8550,170430,18 +8551,395992,27 +8552,38850,18 +8553,98302,10749 +8554,97794,53 +8555,16176,10749 +8556,2143,10749 +8557,45211,37 +8558,25528,28 +8559,9946,28 +8560,30644,28 +8561,9541,10749 +8562,136146,18 +8563,3686,37 +8564,126712,28 +8565,227717,35 +8566,333667,12 +8567,32088,53 +8568,44388,35 +8569,59297,16 +8570,241593,99 +8571,13689,18 +8572,124054,27 +8573,23967,35 +8574,10047,12 +8575,2087,18 +8576,65787,18 +8577,46623,37 +8578,1539,10749 +8579,11103,35 +8580,48273,35 +8581,54155,10749 +8582,269650,878 +8583,103578,27 +8584,74919,80 +8585,52188,18 +8586,173189,35 +8587,13920,18 +8588,284564,53 +8589,57654,18 +8590,39428,18 +8591,137200,10751 +8592,15943,10751 +8593,28090,27 +8594,108648,27 +8595,196789,18 +8596,9441,18 +8597,26954,27 +8598,55370,80 +8599,105833,18 +8600,26465,10402 +8601,24420,18 +8602,10394,18 +8603,14669,18 +8604,45179,35 +8605,317389,12 +8606,89688,99 +8607,18120,35 +8608,322922,53 +8609,33436,80 +8610,51120,35 +8611,4921,10769 +8612,112244,10749 +8613,339327,99 +8614,12128,35 +8615,62630,28 +8616,38282,10749 +8617,55343,18 +8618,356296,53 +8619,14449,36 +8620,198227,35 +8621,10050,35 +8622,86825,53 +8623,79221,10749 +8624,198365,18 +8625,58372,14 +8626,32489,35 +8627,4806,10749 +8628,81001,14 +8629,11939,35 +8630,1253,18 +8631,9461,28 +8632,236395,18 +8633,33228,14 +8634,9914,28 +8635,46830,35 +8636,982,53 +8637,226188,53 +8638,37084,18 +8639,210079,9648 +8640,70436,53 +8641,29094,53 +8642,232672,35 +8643,92562,27 +8644,376188,18 +8645,83735,10751 +8646,21135,18 +8647,19912,27 +8648,46567,35 +8649,26030,18 +8650,98644,12 +8651,142770,35 +8652,78789,35 +8653,64780,10402 +8654,157117,99 +8655,339419,10749 +8656,19325,10751 +8657,158967,53 +8658,14088,10752 +8659,10750,28 +8660,200,53 +8661,15875,35 +8662,47670,10751 +8663,10873,27 +8664,49522,10751 +8665,112284,36 +8666,47412,53 +8667,73984,37 +8668,60623,18 +8669,404459,18 +8670,16652,16 +8671,71147,53 +8672,106049,99 +8673,24266,10751 +8674,28673,27 +8675,144271,10749 +8676,377447,10752 +8677,142012,18 +8678,17209,27 +8679,9593,35 +8680,84071,27 +8681,44657,18 +8682,77459,10751 +8683,935,10752 +8684,37438,35 +8685,456781,28 +8686,8398,80 +8687,61348,10749 +8688,39024,53 +8689,59387,10751 +8690,19325,12 +8691,44001,9648 +8692,17985,18 +8693,103332,18 +8694,315465,12 +8695,83015,35 +8696,2061,18 +8697,19371,28 +8698,80394,28 +8699,410718,99 +8700,27381,80 +8701,10917,80 +8702,15256,35 +8703,13911,10402 +8704,65904,878 +8705,26963,14 +8706,399811,35 +8707,87514,53 +8708,231082,35 +8709,45987,18 +8710,449131,80 +8711,330770,9648 +8712,192623,18 +8713,86980,35 +8714,115173,35 +8715,94513,99 +8716,377428,10770 +8717,336167,53 +8718,125087,18 +8719,6963,18 +8720,13986,18 +8721,18642,10402 +8722,63260,37 +8723,31275,27 +8724,8247,878 +8725,97614,80 +8726,24163,28 +8727,85743,80 +8728,223946,35 +8729,30921,878 +8730,613,18 +8731,356483,28 +8732,10406,10751 +8733,284343,18 +8734,52314,53 +8735,18093,18 +8736,327528,10402 +8737,43503,18 +8738,73565,18 +8739,53209,18 +8740,118984,18 +8741,76198,10769 +8742,58467,10402 +8743,12516,14 +8744,35908,53 +8745,30792,53 +8746,293970,35 +8747,157723,35 +8748,84228,27 +8749,78691,53 +8750,325365,99 +8751,291907,10749 +8752,92499,27 +8753,57983,14 +8754,35118,9648 +8755,76757,14 +8756,16296,35 +8757,322,18 +8758,44502,10749 +8759,17657,28 +8760,47559,18 +8761,73247,35 +8762,11403,10749 +8763,329809,80 +8764,130457,18 +8765,298,53 +8766,11618,9648 +8767,241855,27 +8768,71066,10749 +8769,68720,10749 +8770,370213,99 +8771,15372,35 +8772,45772,16 +8773,142391,53 +8774,56647,35 +8775,59882,35 +8776,43761,18 +8777,102197,28 +8778,353652,99 +8779,109441,12 +8780,104430,18 +8781,18998,53 +8782,15601,35 +8783,15068,80 +8784,255772,18 +8785,267793,53 +8786,44718,35 +8787,5965,53 +8788,164331,53 +8789,37917,18 +8790,11101,10752 +8791,156335,28 +8792,15003,80 +8793,14554,80 +8794,26503,27 +8795,64674,35 +8796,43967,16 +8797,13848,27 +8798,9795,14 +8799,110909,10749 +8800,273481,80 +8801,17974,35 +8802,2982,14 +8803,130055,18 +8804,344255,18 +8805,118953,80 +8806,110491,12 +8807,52661,80 +8808,19237,27 +8809,38922,10749 +8810,14518,10751 +8811,39771,53 +8812,31263,18 +8813,62492,10749 +8814,70586,28 +8815,54022,18 +8816,5544,18 +8817,291907,18 +8818,17203,35 +8819,74935,99 +8820,9543,10749 +8821,315855,9648 +8822,318781,10749 +8823,71700,53 +8824,23155,9648 +8825,18671,80 +8826,11425,10751 +8827,165402,18 +8828,54236,18 +8829,215657,16 +8830,35926,80 +8831,62731,14 +8832,64046,12 +8833,35921,18 +8834,167410,14 +8835,43228,18 +8836,63988,10751 +8837,73257,10751 +8838,44486,35 +8839,50123,18 +8840,136762,35 +8841,371741,18 +8842,14683,35 +8843,73565,10749 +8844,363354,28 +8845,246218,27 +8846,18692,35 +8847,15902,99 +8848,156954,18 +8849,18088,10749 +8850,11216,18 +8851,24411,80 +8852,3309,80 +8853,48339,18 +8854,9405,878 +8855,41591,53 +8856,27472,35 +8857,125025,99 +8858,413770,10752 +8859,73612,18 +8860,337101,18 +8861,444623,10770 +8862,256930,18 +8863,14818,28 +8864,212756,18 +8865,364088,27 +8866,56948,10769 +8867,32594,18 +8868,33135,18 +8869,15084,35 +8870,232739,18 +8871,67,80 +8872,4365,878 +8873,193387,18 +8874,31442,10752 +8875,772,35 +8876,17168,9648 +8877,27986,80 +8878,10890,28 +8879,43390,10402 +8880,30126,12 +8881,67025,18 +8882,15584,99 +8883,1428,28 +8884,55495,35 +8885,12526,53 +8886,61212,18 +8887,116351,878 +8888,270383,9648 +8889,24837,27 +8890,35558,35 +8891,74581,18 +8892,84226,28 +8893,93676,18 +8894,45335,10749 +8895,10020,10749 +8896,5237,53 +8897,41857,37 +8898,10488,14 +8899,65904,35 +8900,43938,10749 +8901,13655,10770 +8902,68634,10769 +8903,9607,12 +8904,40709,14 +8905,54548,10749 +8906,437253,35 +8907,20055,18 +8908,21468,10402 +8909,118245,10749 +8910,312669,18 +8911,41645,10749 +8912,2001,53 +8913,12276,18 +8914,123334,99 +8915,15697,18 +8916,124963,10752 +8917,3072,18 +8918,11704,18 +8919,14555,18 +8920,30675,28 +8921,32080,80 +8922,85628,14 +8923,31111,28 +8924,145963,14 +8925,36236,10749 +8926,95807,18 +8927,200813,99 +8928,81475,18 +8929,37710,10749 +8930,300596,35 +8931,111744,18 +8932,13025,878 +8933,25649,53 +8934,24005,18 +8935,301729,878 +8936,77185,10749 +8937,56143,10752 +8938,15036,10769 +8939,62301,10769 +8940,322,9648 +8941,17038,27 +8942,66812,10749 +8943,74705,12 +8944,5922,28 +8945,53862,35 +8946,38808,37 +8947,505,18 +8948,8332,18 +8949,253257,18 +8950,86168,10402 +8951,54405,35 +8952,224944,9648 +8953,1721,35 +8954,265563,10749 +8955,120676,35 +8956,73873,18 +8957,94570,10749 +8958,40029,10752 +8959,42424,35 +8960,100669,18 +8961,79869,10751 +8962,202238,18 +8963,319999,35 +8964,261274,18 +8965,107976,27 +8966,84994,10402 +8967,140472,12 +8968,130957,18 +8969,38580,18 +8970,13519,12 +8971,290235,27 +8972,55376,28 +8973,96712,10752 +8974,25335,18 +8975,151826,18 +8976,16997,18 +8977,544,35 +8978,77664,10751 +8979,9016,12 +8980,38901,18 +8981,49158,53 +8982,325189,35 +8983,33005,27 +8984,378227,18 +8985,49521,14 +8986,38684,10749 +8987,45649,14 +8988,136087,10751 +8989,104067,18 +8990,9555,12 +8991,457,10749 +8992,377587,27 +8993,118150,18 +8994,152042,16 +8995,703,18 +8996,64784,16 +8997,51104,53 +8998,79216,16 +8999,59572,99 +9000,25132,10751 +9001,21794,10769 +9002,90034,14 +9003,277237,18 +9004,30202,53 +9005,406449,10752 +9006,59419,35 +9007,256092,35 +9008,75626,18 +9009,62688,35 +9010,119738,35 +9011,20992,80 +9012,8355,10751 +9013,10493,80 +9014,28131,80 +9015,1377,35 +9016,73723,16 +9017,124115,18 +9018,49110,18 +9019,2110,35 +9020,25801,10769 +9021,20034,53 +9022,27036,80 +9023,225044,18 +9024,375732,99 +9025,227257,16 +9026,11007,35 +9027,430058,35 +9028,285908,18 +9029,39495,35 +9030,30126,14 +9031,14254,18 +9032,17421,16 +9033,72140,10770 +9034,14882,10751 +9035,78174,99 +9036,308024,9648 +9037,47342,28 +9038,19166,53 +9039,9843,53 +9040,74942,36 +9041,173300,99 +9042,178809,28 +9043,27917,18 +9044,89145,80 +9045,27970,14 +9046,51250,53 +9047,19203,35 +9048,282070,27 +9049,70322,12 +9050,65777,53 +9051,45964,27 +9052,128237,18 +9053,288952,18 +9054,72279,35 +9055,91380,9648 +9056,119172,18 +9057,70199,80 +9058,64961,14 +9059,43860,18 +9060,284305,53 +9061,53514,35 +9062,137315,35 +9063,27052,10749 +9064,18783,28 +9065,75066,9648 +9066,398289,18 +9067,77439,80 +9068,121725,18 +9069,98289,12 +9070,264525,35 +9071,1267,10751 +9072,51902,16 +9073,58701,35 +9074,13798,16 +9075,41479,18 +9076,33333,18 +9077,35197,9648 +9078,87311,18 +9079,172828,35 +9080,10394,28 +9081,167707,18 +9082,72710,28 +9083,33689,35 +9084,75018,99 +9085,120129,10769 +9086,161795,18 +9087,12483,53 +9088,29083,35 +9089,241739,18 +9090,22398,80 +9091,35623,10749 +9092,21828,18 +9093,161885,16 +9094,74911,80 +9095,78323,80 +9096,2267,10751 +9097,49190,9648 +9098,9841,27 +9099,237,80 +9100,102305,18 +9101,55437,14 +9102,12412,10752 +9103,82178,10402 +9104,1278,18 +9105,41645,18 +9106,29143,9648 +9107,34128,35 +9108,38579,10751 +9109,279090,35 +9110,150223,18 +9111,228676,18 +9112,8988,10752 +9113,118195,18 +9114,32532,16 +9115,245950,12 +9116,436343,10749 +9117,1387,18 +9118,27986,18 +9119,20055,53 +9120,308269,27 +9121,85564,27 +9122,142946,28 +9123,70966,18 +9124,8939,35 +9125,166666,18 +9126,115810,10769 +9127,39436,9648 +9128,80304,35 +9129,75262,35 +9130,52637,18 +9131,46827,18 +9132,363890,16 +9133,19855,18 +9134,121230,37 +9135,50590,35 +9136,10165,18 +9137,9987,878 +9138,19901,53 +9139,107985,35 +9140,151043,10402 +9141,34482,10751 +9142,295656,9648 +9143,325039,53 +9144,11196,28 +9145,99642,18 +9146,11895,80 +9147,286940,12 +9148,21721,18 +9149,319092,36 +9150,37992,18 +9151,91443,18 +9152,30695,10749 +9153,1480,80 +9154,38950,18 +9155,87516,28 +9156,17875,99 +9157,341895,10402 +9158,18919,16 +9159,24634,27 +9160,50153,27 +9161,34482,35 +9162,85525,18 +9163,50549,35 +9164,9946,27 +9165,3476,18 +9166,43149,12 +9167,63300,35 +9168,5590,18 +9169,61966,28 +9170,100532,99 +9171,11379,878 +9172,413882,10749 +9173,96872,10751 +9174,377847,35 +9175,395763,53 +9176,104193,80 +9177,22701,878 +9178,38164,14 +9179,32080,53 +9180,332512,35 +9181,51945,10749 +9182,88285,10769 +9183,142402,10751 +9184,8336,53 +9185,403,35 +9186,46190,18 +9187,33851,28 +9188,337958,35 +9189,12279,28 +9190,124979,18 +9191,43915,18 +9192,18925,18 +9193,13536,18 +9194,49642,35 +9195,85543,10769 +9196,49271,14 +9197,195068,10402 +9198,6636,10769 +9199,76084,28 +9200,75537,53 +9201,31018,53 +9202,339116,35 +9203,259894,9648 +9204,362026,18 +9205,83770,18 +9206,30305,878 +9207,146521,10752 +9208,297298,35 +9209,12652,10749 +9210,106821,35 +9211,44793,18 +9212,35435,18 +9213,190269,18 +9214,108788,10770 +9215,55731,18 +9216,14770,36 +9217,39435,37 +9218,49273,35 +9219,64353,35 +9220,16016,12 +9221,369567,18 +9222,59189,27 +9223,37311,10749 +9224,332746,99 +9225,49492,18 +9226,102428,18 +9227,13600,14 +9228,8457,35 +9229,42832,35 +9230,140,10749 +9231,27265,35 +9232,107942,18 +9233,11450,18 +9234,66125,35 +9235,279598,18 +9236,104103,35 +9237,298865,27 +9238,122662,16 +9239,76494,35 +9240,40957,10749 +9241,322518,53 +9242,103850,18 +9243,18051,28 +9244,265208,80 +9245,101766,18 +9246,20473,878 +9247,111960,35 +9248,15242,10751 +9249,180305,53 +9250,14819,35 +9251,87311,37 +9252,10433,35 +9253,51120,14 +9254,38060,10751 +9255,42515,12 +9256,67367,99 +9257,130272,36 +9258,233490,10751 +9259,354979,80 +9260,72096,35 +9261,2274,10751 +9262,37420,878 +9263,38715,18 +9264,267481,35 +9265,62034,35 +9266,4550,53 +9267,18317,14 +9268,124821,18 +9269,218784,27 +9270,380731,53 +9271,21431,53 +9272,147767,35 +9273,359549,28 +9274,40087,27 +9275,31863,80 +9276,179066,18 +9277,219335,27 +9278,128767,36 +9279,1721,12 +9280,100024,27 +9281,195022,27 +9282,43372,18 +9283,4986,80 +9284,133458,53 +9285,9716,35 +9286,33107,27 +9287,40229,53 +9288,242332,80 +9289,9655,10751 +9290,94055,80 +9291,273106,10402 +9292,28047,80 +9293,36094,10749 +9294,18598,18 +9295,20411,18 +9296,28681,27 +9297,49597,27 +9298,385379,99 +9299,120932,12 +9300,457307,99 +9301,86040,18 +9302,25682,28 +9303,29290,18 +9304,4820,10752 +9305,51828,18 +9306,13561,27 +9307,328712,18 +9308,60994,18 +9309,135313,99 +9310,43117,878 +9311,31083,10749 +9312,55225,99 +9313,89462,18 +9314,142150,12 +9315,277726,35 +9316,28519,18 +9317,9294,18 +9318,256421,99 +9319,54825,16 +9320,452372,10770 +9321,29825,10749 +9322,59744,27 +9323,28668,53 +9324,10947,10770 +9325,23637,35 +9326,5172,18 +9327,45431,53 +9328,482,12 +9329,122843,35 +9330,21334,35 +9331,12182,10402 +9332,182035,37 +9333,20210,28 +9334,125548,10749 +9335,55728,53 +9336,96433,35 +9337,116352,16 +9338,365753,10749 +9339,4344,27 +9340,189197,36 +9341,113255,99 +9342,20096,35 +9343,31675,10752 +9344,27989,35 +9345,252096,28 +9346,318973,99 +9347,23668,18 +9348,237584,53 +9349,216374,10749 +9350,36807,18 +9351,38602,10751 +9352,121598,18 +9353,38000,53 +9354,393443,99 +9355,43792,10749 +9356,38715,10749 +9357,33272,53 +9358,41979,28 +9359,16032,9648 +9360,335872,53 +9361,30139,35 +9362,32338,10749 +9363,63414,18 +9364,3036,878 +9365,14651,35 +9366,25934,18 +9367,113279,99 +9368,33481,18 +9369,120615,18 +9370,9928,878 +9371,20047,18 +9372,71336,10752 +9373,22213,28 +9374,42725,28 +9375,65887,18 +9376,69019,10402 +9377,224894,99 +9378,13580,53 +9379,53862,10749 +9380,152737,35 +9381,12407,80 +9382,55655,99 +9383,331642,35 +9384,53223,99 +9385,111960,18 +9386,4916,18 +9387,303360,53 +9388,47493,53 +9389,148031,18 +9390,26656,27 +9391,2577,18 +9392,1628,10749 +9393,42418,10751 +9394,4253,35 +9395,224944,53 +9396,25988,18 +9397,347807,28 +9398,34449,18 +9399,17590,9648 +9400,357851,80 +9401,58244,10749 +9402,2288,10749 +9403,141733,35 +9404,180607,10749 +9405,214938,35 +9406,356486,35 +9407,1427,18 +9408,310567,18 +9409,197082,18 +9410,96935,12 +9411,71376,18 +9412,73098,35 +9413,33065,16 +9414,217925,99 +9415,118716,878 +9416,104556,35 +9417,39001,10749 +9418,34615,18 +9419,33613,53 +9420,183171,9648 +9421,48935,35 +9422,21242,37 +9423,66292,53 +9424,320910,10749 +9425,198663,53 +9426,100791,10751 +9427,210079,27 +9428,9609,18 +9429,15850,10749 +9430,96458,35 +9431,6,53 +9432,277967,35 +9433,13827,35 +9434,378485,14 +9435,61935,35 +9436,20625,35 +9437,10154,10749 +9438,51786,16 +9439,177566,14 +9440,196508,14 +9441,22784,53 +9442,25801,35 +9443,601,12 +9444,123777,99 +9445,88075,80 +9446,38509,35 +9447,2898,35 +9448,78265,18 +9449,412309,99 +9450,306598,10749 +9451,139176,10749 +9452,34598,28 +9453,15256,18 +9454,210653,27 +9455,64968,10769 +9456,42242,35 +9457,17496,18 +9458,11137,35 +9459,110989,9648 +9460,10740,9648 +9461,62967,16 +9462,186292,18 +9463,33613,28 +9464,106135,18 +9465,43158,10751 +9466,67025,53 +9467,16907,16 +9468,289191,18 +9469,71041,10749 +9470,228647,9648 +9471,38618,28 +9472,20846,18 +9473,96433,80 +9474,342052,99 +9475,318922,35 +9476,10694,28 +9477,53573,80 +9478,22784,80 +9479,14429,10751 +9480,10652,18 +9481,16444,10752 +9482,137269,99 +9483,71066,18 +9484,81687,18 +9485,153141,10749 +9486,84708,878 +9487,72074,80 +9488,45671,14 +9489,417678,18 +9490,42552,28 +9491,42837,10402 +9492,228294,35 +9493,12454,18 +9494,9900,35 +9495,34204,12 +9496,18070,28 +9497,10947,10751 +9498,43457,18 +9499,23367,35 +9500,364410,878 +9501,126319,18 +9502,202238,35 +9503,10937,18 +9504,5917,28 +9505,30307,878 +9506,107430,35 +9507,74465,18 +9508,185354,53 +9509,119433,35 +9510,82745,18 +9511,72949,18 +9512,2897,12 +9513,85959,10749 +9514,332936,10749 +9515,31003,27 +9516,137093,35 +9517,49334,80 +9518,66193,80 +9519,11096,53 +9520,84831,10751 +9521,44888,10749 +9522,194817,10749 +9523,357851,18 +9524,405473,35 +9525,26465,99 +9526,48118,18 +9527,96333,18 +9528,47404,9648 +9529,259593,10402 +9530,86603,12 +9531,116232,10749 +9532,214100,10749 +9533,45215,80 +9534,23853,10749 +9535,40555,10749 +9536,9736,53 +9537,127493,28 +9538,341007,10751 +9539,79728,35 +9540,18937,10749 +9541,63348,10751 +9542,156597,27 +9543,24094,53 +9544,12182,35 +9545,277190,10751 +9546,69784,28 +9547,110115,18 +9548,20164,18 +9549,267931,53 +9550,79775,18 +9551,2486,10751 +9552,395479,36 +9553,215999,10770 +9554,323679,18 +9555,273404,18 +9556,64928,18 +9557,280030,18 +9558,43832,18 +9559,56943,18 +9560,352164,18 +9561,57683,53 +9562,356900,35 +9563,149883,35 +9564,47500,10749 +9565,99374,35 +9566,109861,10749 +9567,42501,35 +9568,55343,10752 +9569,11399,35 +9570,4882,53 +9571,56666,10749 +9572,210408,18 +9573,27461,10752 +9574,394051,27 +9575,79550,27 +9576,83562,10752 +9577,14076,80 +9578,49273,10402 +9579,238302,35 +9580,25078,14 +9581,11376,27 +9582,216369,18 +9583,107891,10769 +9584,148034,35 +9585,282024,18 +9586,58832,18 +9587,71668,35 +9588,246218,878 +9589,52936,35 +9590,431093,10749 +9591,407448,80 +9592,16356,14 +9593,23385,53 +9594,77067,12 +9595,52452,18 +9596,166,10749 +9597,227973,16 +9598,14050,18 +9599,13004,10751 +9600,42441,35 +9601,30637,80 +9602,276906,18 +9603,267793,10770 +9604,78231,10402 +9605,109475,10752 +9606,127094,35 +9607,59965,28 +9608,31118,18 +9609,391004,18 +9610,30817,53 +9611,393659,10749 +9612,35907,18 +9613,86543,37 +9614,83754,35 +9615,123047,35 +9616,10803,878 +9617,171648,18 +9618,38317,10749 +9619,69315,53 +9620,14138,27 +9621,26119,37 +9622,15359,12 +9623,105503,28 +9624,122023,35 +9625,50463,10749 +9626,16157,878 +9627,43546,10402 +9628,4974,10749 +9629,13225,10751 +9630,76333,18 +9631,43855,35 +9632,56589,35 +9633,91067,10769 +9634,2071,53 +9635,113040,53 +9636,227306,10752 +9637,413417,10749 +9638,332411,53 +9639,182415,35 +9640,32484,18 +9641,53851,35 +9642,43700,28 +9643,397520,10751 +9644,438597,18 +9645,38547,36 +9646,108,18 +9647,17209,53 +9648,13986,35 +9649,202662,18 +9650,43455,10749 +9651,27935,10749 +9652,43877,18 +9653,16839,18 +9654,417820,10749 +9655,17745,10751 +9656,33511,18 +9657,93114,53 +9658,28325,10749 +9659,209112,14 +9660,90932,18 +9661,393367,99 +9662,32595,35 +9663,245703,18 +9664,129277,10769 +9665,71125,18 +9666,51976,18 +9667,44877,80 +9668,163706,80 +9669,319179,14 +9670,129798,53 +9671,90799,35 +9672,19936,53 +9673,408220,878 +9674,8467,35 +9675,48787,53 +9676,18282,18 +9677,322487,12 +9678,168552,18 +9679,29449,27 +9680,21741,99 +9681,31522,18 +9682,34127,35 +9683,20325,35 +9684,14834,18 +9685,261036,35 +9686,290379,18 +9687,12154,10751 +9688,50364,10751 +9689,32068,28 +9690,43089,9648 +9691,177203,10770 +9692,336265,27 +9693,27549,14 +9694,392660,18 +9695,156015,35 +9696,25998,10752 +9697,31161,10769 +9698,4254,18 +9699,60568,10769 +9700,246355,53 +9701,130593,18 +9702,71139,99 +9703,12561,27 +9704,83599,18 +9705,51349,10751 +9706,9655,35 +9707,22317,28 +9708,5516,80 +9709,318184,10770 +9710,14823,53 +9711,43228,14 +9712,186869,27 +9713,38048,10751 +9714,22213,12 +9715,185156,10749 +9716,6591,9648 +9717,171213,10749 +9718,12593,35 +9719,41609,12 +9720,41604,37 +9721,1254,18 +9722,22943,10749 +9723,320588,35 +9724,131907,18 +9725,3036,10749 +9726,11058,878 +9727,148636,18 +9728,112072,99 +9729,82401,35 +9730,30002,35 +9731,49609,18 +9732,7483,18 +9733,10539,16 +9734,238302,16 +9735,9071,35 +9736,39436,53 +9737,22803,18 +9738,22683,18 +9739,60285,28 +9740,30943,9648 +9741,48145,14 +9742,13549,27 +9743,211158,18 +9744,384682,35 +9745,32274,18 +9746,15805,80 +9747,440777,18 +9748,171337,80 +9749,9404,12 +9750,10362,10749 +9751,317723,10751 +9752,56815,18 +9753,289960,99 +9754,44890,28 +9755,13506,18 +9756,61533,80 +9757,27203,9648 +9758,10622,35 +9759,43641,28 +9760,230179,28 +9761,28363,53 +9762,41970,10769 +9763,357106,27 +9764,71051,35 +9765,1687,28 +9766,32044,35 +9767,9403,35 +9768,276819,10751 +9769,61934,18 +9770,14226,18 +9771,21193,10402 +9772,108003,35 +9773,51823,18 +9774,1448,18 +9775,323426,18 +9776,10693,10751 +9777,293085,10749 +9778,44099,18 +9779,83666,18 +9780,104391,18 +9781,83459,10749 +9782,87827,28 +9783,337549,18 +9784,18051,878 +9785,19014,37 +9786,255913,10749 +9787,133953,27 +9788,161482,18 +9789,983,12 +9790,38359,18 +9791,45988,36 +9792,256421,16 +9793,9528,18 +9794,20530,18 +9795,31867,53 +9796,27941,10769 +9797,37339,99 +9798,241968,18 +9799,329682,18 +9800,199575,18 +9801,199374,12 +9802,225728,18 +9803,38340,18 +9804,13596,35 +9805,32068,35 +9806,338676,878 +9807,9902,27 +9808,241855,878 +9809,124527,18 +9810,32600,10749 +9811,280045,35 +9812,3556,80 +9813,140222,18 +9814,361018,10749 +9815,197696,18 +9816,6963,35 +9817,134480,10749 +9818,340961,12 +9819,329805,10749 +9820,34774,12 +9821,115223,12 +9822,61109,35 +9823,108224,10402 +9824,84226,878 +9825,18098,18 +9826,13092,35 +9827,43079,10769 +9828,18045,53 +9829,43340,18 +9830,376538,10769 +9831,198317,18 +9832,11536,18 +9833,92562,878 +9834,40916,35 +9835,2965,12 +9836,302042,53 +9837,80389,18 +9838,29129,10769 +9839,65142,10749 +9840,72074,53 +9841,31042,878 +9842,147538,18 +9843,27843,27 +9844,198365,53 +9845,319096,10402 +9846,47959,18 +9847,281418,53 +9848,2084,53 +9849,36530,878 +9850,369524,35 +9851,11103,53 +9852,45020,18 +9853,28290,18 +9854,28044,9648 +9855,254435,10751 +9856,26153,18 +9857,395767,53 +9858,392011,99 +9859,196257,14 +9860,9598,14 +9861,62441,36 +9862,9664,18 +9863,601,14 +9864,3092,80 +9865,86252,27 +9866,153397,18 +9867,238307,12 +9868,334394,27 +9869,122081,80 +9870,140595,35 +9871,98125,35 +9872,252144,28 +9873,56292,28 +9874,376292,28 +9875,1294,10402 +9876,89247,14 +9877,49354,53 +9878,216580,53 +9879,407531,53 +9880,52452,28 +9881,10055,53 +9882,16320,28 +9883,259695,80 +9884,441881,18 +9885,242551,35 +9886,14761,99 +9887,81549,12 +9888,289198,80 +9889,131739,36 +9890,10013,14 +9891,111960,14 +9892,65646,18 +9893,146233,53 +9894,11610,18 +9895,57775,35 +9896,37213,10749 +9897,38269,27 +9898,16440,27 +9899,52696,10749 +9900,73600,18 +9901,79343,18 +9902,129966,35 +9903,422,14 +9904,59117,28 +9905,444193,27 +9906,94225,35 +9907,14525,35 +9908,10395,14 +9909,185180,18 +9910,201085,18 +9911,29483,18 +9912,142966,35 +9913,9717,53 +9914,63194,10752 +9915,118134,10749 +9916,54801,9648 +9917,362150,28 +9918,9753,18 +9919,27053,80 +9920,28110,18 +9921,43878,18 +9922,35395,10749 +9923,100063,53 +9924,440508,28 +9925,6076,35 +9926,125521,16 +9927,34729,18 +9928,400610,53 +9929,10692,80 +9930,70086,10770 +9931,35826,27 +9932,13062,10751 +9933,376823,99 +9934,23830,18 +9935,14254,53 +9936,265717,35 +9937,22408,28 +9938,37609,10770 +9939,214086,10749 +9940,23805,35 +9941,144680,99 +9942,55825,18 +9943,66469,35 +9944,27621,10751 +9945,38461,9648 +9946,64183,28 +9947,26156,12 +9948,121640,12 +9949,72710,12 +9950,83896,27 +9951,427095,18 +9952,48186,10770 +9953,81687,10752 +9954,328429,18 +9955,88564,18 +9956,15981,35 +9957,18093,10749 +9958,367732,35 +9959,10900,27 +9960,8342,36 +9961,256836,99 +9962,1969,80 +9963,425774,37 +9964,222872,878 +9965,11610,10749 +9966,67216,53 +9967,54795,10749 +9968,27061,18 +9969,103597,18 +9970,62567,18 +9971,81003,16 +9972,1662,53 +9973,71041,53 +9974,166027,10749 +9975,308269,53 +9976,27653,878 +9977,7326,10749 +9978,62761,27 +9979,84805,16 +9980,59006,35 +9981,14136,14 +9982,396392,10770 +9983,58402,53 +9984,52251,53 +9985,57811,10749 +9986,36220,27 +9987,408755,27 +9988,33102,28 +9989,319910,18 +9990,354832,10751 +9991,25969,10751 +9992,363413,18 +9993,26516,18 +9994,40028,27 +9995,20357,18 +9996,33472,35 +9997,43931,9648 +9998,28466,18 +9999,71866,18 +10000,2124,9648 +10001,44896,10751 +10002,30921,27 +10003,118737,28 +10004,19354,12 +10005,8916,16 +10006,4478,18 +10007,104462,27 +10008,117678,35 +10009,24486,53 +10010,48791,18 +10011,71945,10749 +10012,62441,18 +10013,75300,28 +10014,4497,18 +10015,9542,53 +10016,121749,99 +10017,11706,10749 +10018,227094,53 +10019,1164,18 +10020,26873,878 +10021,24821,53 +10022,45098,10769 +10023,167874,28 +10024,6552,27 +10025,133715,12 +10026,387845,9648 +10027,323968,18 +10028,121674,10749 +10029,337339,80 +10030,9659,12 +10031,15745,35 +10032,16487,16 +10033,205939,14 +10034,14815,28 +10035,60063,35 +10036,137145,53 +10037,24077,10749 +10038,147132,35 +10039,88794,18 +10040,111042,10749 +10041,18440,28 +10042,24797,53 +10043,3989,10402 +10044,29058,27 +10045,1793,35 +10046,174946,18 +10047,343809,18 +10048,293262,99 +10049,30993,27 +10050,38580,16 +10051,16800,99 +10052,84718,27 +10053,8014,18 +10054,42453,10751 +10055,32331,10749 +10056,62783,35 +10057,38154,10752 +10058,4988,18 +10059,306464,35 +10060,37055,18 +10061,61939,10769 +10062,77381,18 +10063,84465,35 +10064,33102,35 +10065,180819,35 +10066,265351,80 +10067,48156,80 +10068,185156,18 +10069,65134,28 +10070,104251,18 +10071,47186,18 +10072,134215,10769 +10073,54242,35 +10074,2486,14 +10075,40660,18 +10076,18472,28 +10077,36554,28 +10078,85507,18 +10079,56942,18 +10080,33344,18 +10081,57918,14 +10082,88042,35 +10083,13794,99 +10084,61578,10769 +10085,42533,18 +10086,67693,35 +10087,214138,18 +10088,260826,18 +10089,74674,35 +10090,103578,10769 +10091,79645,18 +10092,224778,27 +10093,87936,18 +10094,2760,80 +10095,88320,9648 +10096,23853,53 +10097,331485,99 +10098,142656,18 +10099,76940,18 +10100,299,80 +10101,66045,28 +10102,25625,35 +10103,80713,10769 +10104,10004,9648 +10105,2021,10749 +10106,145760,10751 +10107,6163,36 +10108,119010,12 +10109,291336,53 +10110,136799,10751 +10111,73933,35 +10112,81576,10769 +10113,70583,878 +10114,1554,80 +10115,11370,12 +10116,80168,35 +10117,41823,18 +10118,245169,18 +10119,18440,878 +10120,14159,10769 +10121,285270,35 +10122,46020,27 +10123,5915,18 +10124,4338,35 +10125,43321,10402 +10126,18939,16 +10127,355890,10749 +10128,413644,35 +10129,6557,10749 +10130,41733,18 +10131,306952,18 +10132,47466,16 +10133,12584,37 +10134,360784,53 +10135,58763,35 +10136,1896,18 +10137,13336,80 +10138,87759,18 +10139,243683,10402 +10140,9292,12 +10141,33427,12 +10142,16460,10751 +10143,130993,10749 +10144,35139,27 +10145,115565,80 +10146,31165,18 +10147,37600,18 +10148,372640,35 +10149,80012,18 +10150,38107,18 +10151,3962,35 +10152,41762,10402 +10153,203833,18 +10154,263115,18 +10155,365447,99 +10156,55376,18 +10157,2453,53 +10158,38048,18 +10159,20871,18 +10160,86647,53 +10161,31044,18 +10162,377853,18 +10163,84450,18 +10164,33774,18 +10165,27450,18 +10166,25060,27 +10167,46813,18 +10168,12920,18 +10169,39493,9648 +10170,4978,12 +10171,12584,12 +10172,139856,18 +10173,50506,10770 +10174,15356,18 +10175,367596,18 +10176,23590,10749 +10177,52856,35 +10178,72642,53 +10179,128089,18 +10180,82929,18 +10181,10622,28 +10182,312669,35 +10183,14537,18 +10184,10336,878 +10185,58905,18 +10186,253533,35 +10187,145668,35 +10188,67748,27 +10189,9846,53 +10190,809,12 +10191,50086,14 +10192,340937,10749 +10193,17711,28 +10194,13733,35 +10195,19430,18 +10196,1116,18 +10197,8965,14 +10198,9470,35 +10199,55784,27 +10200,21571,80 +10201,27105,37 +10202,37917,37 +10203,10142,18 +10204,21619,18 +10205,72710,10749 +10206,45303,80 +10207,148284,28 +10208,325645,18 +10209,40127,27 +10210,26165,18 +10211,171308,10770 +10212,383809,35 +10213,129277,18 +10214,34204,14 +10215,55563,35 +10216,65958,36 +10217,28455,53 +10218,131343,27 +10219,31044,35 +10220,25643,18 +10221,66925,27 +10222,151086,18 +10223,2750,18 +10224,25919,10402 +10225,154779,99 +10226,13486,28 +10227,395992,53 +10228,42634,18 +10229,13956,12 +10230,240913,10770 +10231,2687,14 +10232,274857,14 +10233,120637,35 +10234,6499,12 +10235,51994,10749 +10236,167951,18 +10237,11259,12 +10238,213983,35 +10239,9981,10751 +10240,115173,18 +10241,99261,27 +10242,141643,28 +10243,75761,35 +10244,84831,80 +10245,68752,18 +10246,31586,35 +10247,209032,18 +10248,288710,18 +10249,20507,27 +10250,6964,10749 +10251,54524,18 +10252,41078,12 +10253,186585,37 +10254,109439,35 +10255,153541,18 +10256,44510,53 +10257,118134,80 +10258,14569,35 +10259,341689,35 +10260,86049,35 +10261,339148,35 +10262,2108,35 +10263,57412,18 +10264,127094,14 +10265,19140,10751 +10266,75341,99 +10267,110073,16 +10268,2355,18 +10269,98355,99 +10270,15613,27 +10271,58790,28 +10272,222935,18 +10273,74942,18 +10274,258193,53 +10275,9427,35 +10276,61904,10769 +10277,134750,35 +10278,24458,99 +10279,322443,37 +10280,21927,27 +10281,20372,18 +10282,43596,18 +10283,362844,878 +10284,369776,35 +10285,32234,35 +10286,50318,18 +10287,98065,10402 +10288,42424,10749 +10289,14301,878 +10290,354979,18 +10291,43149,878 +10292,208869,28 +10293,44338,18 +10294,63958,35 +10295,5201,10749 +10296,278901,35 +10297,301325,27 +10298,63139,18 +10299,99312,10751 +10300,27031,10749 +10301,43321,28 +10302,160106,10751 +10303,40983,27 +10304,12079,80 +10305,89008,35 +10306,11879,53 +10307,139862,36 +10308,50779,99 +10309,45377,53 +10310,376502,27 +10311,12483,27 +10312,38982,18 +10313,37055,36 +10314,263873,35 +10315,78571,18 +10316,39415,10749 +10317,317214,35 +10318,21030,35 +10319,50350,10749 +10320,106136,18 +10321,271677,53 +10322,3023,35 +10323,354128,35 +10324,101669,27 +10325,4291,10751 +10326,10488,35 +10327,293452,27 +10328,53168,10749 +10329,16442,36 +10330,15037,18 +10331,46830,10749 +10332,11113,18 +10333,39045,16 +10334,118948,53 +10335,17566,878 +10336,14423,35 +10337,52772,10749 +10338,123969,16 +10339,25646,28 +10340,15764,10749 +10341,21794,53 +10342,168676,10752 +10343,26644,18 +10344,95743,18 +10345,104081,18 +10346,36375,18 +10347,44773,12 +10348,79781,18 +10349,127105,28 +10350,10063,35 +10351,109587,10749 +10352,43252,18 +10353,241953,99 +10354,220002,10751 +10355,340937,18 +10356,45205,10769 +10357,37305,18 +10358,10865,16 +10359,176983,16 +10360,8669,18 +10361,280690,10749 +10362,115109,10749 +10363,278867,18 +10364,346443,10402 +10365,31128,80 +10366,31947,28 +10367,116488,10769 +10368,113119,10769 +10369,54139,53 +10370,62692,878 +10371,32648,18 +10372,84184,35 +10373,209406,35 +10374,31718,16 +10375,2195,18 +10376,252144,10770 +10377,378018,878 +10378,234815,80 +10379,229297,18 +10380,43327,36 +10381,9843,35 +10382,44486,16 +10383,122857,53 +10384,93350,10749 +10385,52440,10749 +10386,246127,18 +10387,25473,18 +10388,414910,27 +10389,244610,27 +10390,201419,99 +10391,18692,10749 +10392,42288,18 +10393,37438,80 +10394,37911,18 +10395,62522,10749 +10396,18569,18 +10397,265314,80 +10398,337789,10402 +10399,51890,27 +10400,195068,10749 +10401,56666,10769 +10402,44519,18 +10403,9507,80 +10404,51302,10402 +10405,10610,28 +10406,13586,35 +10407,97724,99 +10408,36063,878 +10409,58060,18 +10410,333367,18 +10411,31344,10752 +10412,2075,10749 +10413,43895,35 +10414,37700,10751 +10415,43250,37 +10416,17592,99 +10417,17630,35 +10418,3064,878 +10419,36691,35 +10420,84496,53 +10421,38157,27 +10422,128154,10749 +10423,29903,12 +10424,112072,10769 +10425,363483,10770 +10426,339527,80 +10427,208436,14 +10428,81030,18 +10429,28851,27 +10430,32067,10749 +10431,16214,35 +10432,323673,10749 +10433,322148,35 +10434,10632,18 +10435,227094,18 +10436,2259,18 +10437,43390,10749 +10438,34899,10749 +10439,416680,10402 +10440,54022,53 +10441,120212,53 +10442,26811,27 +10443,321039,27 +10444,16366,10402 +10445,51763,18 +10446,28090,28 +10447,60807,10749 +10448,22182,35 +10449,97035,99 +10450,61904,27 +10451,16135,35 +10452,47260,28 +10453,116554,35 +10454,9602,10749 +10455,84774,14 +10456,88359,28 +10457,222890,878 +10458,319340,35 +10459,87587,18 +10460,61939,18 +10461,47715,35 +10462,29236,80 +10463,413998,10749 +10464,129851,37 +10465,85411,18 +10466,39103,16 +10467,14284,99 +10468,17771,36 +10469,96238,35 +10470,6443,18 +10471,40490,28 +10472,52369,27 +10473,442949,28 +10474,30946,35 +10475,9624,28 +10476,2898,10749 +10477,36463,80 +10478,26331,9648 +10479,78403,53 +10480,242097,35 +10481,211,35 +10482,197089,35 +10483,92716,35 +10484,24828,28 +10485,144942,35 +10486,43491,10749 +10487,85429,18 +10488,49907,35 +10489,316637,27 +10490,20646,53 +10491,19103,10749 +10492,11402,35 +10493,332168,18 +10494,30709,28 +10495,26558,10752 +10496,142150,28 +10497,36554,12 +10498,351043,27 +10499,122019,9648 +10500,94340,35 +10501,42402,37 +10502,12780,80 +10503,63538,12 +10504,41609,28 +10505,362682,10749 +10506,69898,18 +10507,57977,10749 +10508,180299,80 +10509,51358,10749 +10510,317198,12 +10511,211387,28 +10512,18512,35 +10513,28682,10749 +10514,30583,10751 +10515,77012,18 +10516,113700,18 +10517,1976,18 +10518,117905,27 +10519,17445,878 +10520,283384,53 +10521,109001,10769 +10522,10109,10749 +10523,125490,878 +10524,431244,12 +10525,77825,10749 +10526,177155,18 +10527,111605,10749 +10528,180685,18 +10529,121329,35 +10530,17770,35 +10531,16371,9648 +10532,2034,28 +10533,13710,35 +10534,15143,10749 +10535,82662,18 +10536,133941,80 +10537,358924,99 +10538,42457,18 +10539,17044,10752 +10540,82098,53 +10541,24086,10751 +10542,180644,10751 +10543,49943,18 +10544,283711,53 +10545,354287,35 +10546,39995,53 +10547,104810,18 +10548,10198,10402 +10549,10647,18 +10550,15239,28 +10551,27941,27 +10552,295621,18 +10553,2321,80 +10554,12637,10749 +10555,46227,10770 +10556,18283,10749 +10557,37055,80 +10558,234284,878 +10559,14815,36 +10560,46875,10752 +10561,80410,12 +10562,1420,18 +10563,788,35 +10564,26593,37 +10565,16174,12 +10566,50073,18 +10567,94696,18 +10568,63486,12 +10569,82313,28 +10570,16351,18 +10571,49343,27 +10572,359412,53 +10573,36361,35 +10574,138222,18 +10575,13519,27 +10576,10391,80 +10577,29979,80 +10578,303867,35 +10579,76784,18 +10580,23239,10769 +10581,41963,9648 +10582,12476,28 +10583,200796,53 +10584,83444,10752 +10585,83896,878 +10586,72822,35 +10587,65545,10769 +10588,15602,10749 +10589,156015,18 +10590,306966,27 +10591,94663,36 +10592,264553,16 +10593,26131,37 +10594,62741,18 +10595,1877,878 +10596,138372,9648 +10597,13017,10751 +10598,23367,18 +10599,76198,10749 +10600,19887,10769 +10601,49577,35 +10602,273510,18 +10603,660,53 +10604,20287,18 +10605,80351,37 +10606,29911,14 +10607,110525,36 +10608,53853,18 +10609,408755,53 +10610,108812,10752 +10611,67276,27 +10612,41402,27 +10613,10192,12 +10614,14873,10751 +10615,887,36 +10616,10692,53 +10617,13496,28 +10618,149793,12 +10619,24266,28 +10620,2929,27 +10621,795,10749 +10622,36214,28 +10623,8583,18 +10624,43546,35 +10625,268712,14 +10626,80089,16 +10627,98368,53 +10628,154019,99 +10629,406052,10751 +10630,413547,80 +10631,247447,18 +10632,43093,878 +10633,7837,878 +10634,51875,35 +10635,310126,35 +10636,8929,18 +10637,45725,12 +10638,18932,27 +10639,48949,18 +10640,10004,18 +10641,236041,18 +10642,393559,18 +10643,194407,18 +10644,85327,53 +10645,30,878 +10646,63441,10769 +10647,42242,28 +10648,408272,35 +10649,70133,36 +10650,69310,18 +10651,10837,35 +10652,37103,10752 +10653,54893,878 +10654,41619,10749 +10655,31890,36 +10656,73462,10749 +10657,61400,10749 +10658,393521,35 +10659,227306,18 +10660,18898,18 +10661,8049,35 +10662,47638,12 +10663,366736,36 +10664,29538,10769 +10665,31405,35 +10666,58166,18 +10667,55589,35 +10668,63775,14 +10669,41591,9648 +10670,120747,18 +10671,196469,10749 +10672,269149,35 +10673,353464,18 +10674,33489,35 +10675,81435,10769 +10676,43913,53 +10677,370687,12 +10678,70046,10770 +10679,284053,28 +10680,44190,18 +10681,300321,878 +10682,41496,35 +10683,105,10751 +10684,262088,35 +10685,254268,16 +10686,83614,18 +10687,206183,27 +10688,19797,10749 +10689,369406,878 +10690,49199,28 +10691,37645,53 +10692,167262,37 +10693,39939,35 +10694,49762,18 +10695,317723,12 +10696,43680,35 +10697,65131,14 +10698,197057,18 +10699,70585,10749 +10700,274325,18 +10701,98302,18 +10702,30778,28 +10703,70988,28 +10704,82485,18 +10705,41967,27 +10706,125945,10752 +10707,391438,10749 +10708,11232,14 +10709,24448,10749 +10710,320179,99 +10711,402536,16 +10712,936,35 +10713,80351,12 +10714,30584,14 +10715,36635,80 +10716,72215,10751 +10717,11975,18 +10718,171446,18 +10719,41783,10769 +10720,310972,18 +10721,294651,18 +10722,36519,53 +10723,176,9648 +10724,248933,18 +10725,96716,10749 +10726,69765,36 +10727,11643,35 +10728,104522,18 +10729,9607,35 +10730,27834,18 +10731,84925,99 +10732,259183,18 +10733,14128,14 +10734,38558,28 +10735,10837,14 +10736,1271,12 +10737,11534,10749 +10738,8460,35 +10739,18665,35 +10740,38060,16 +10741,286192,16 +10742,41890,10751 +10743,78094,18 +10744,135670,53 +10745,97632,53 +10746,58197,18 +10747,33305,878 +10748,44800,18 +10749,323370,878 +10750,34052,16 +10751,273510,10749 +10752,194817,35 +10753,54105,10749 +10754,33558,10749 +10755,393939,35 +10756,189682,10749 +10757,51302,10751 +10758,13569,27 +10759,2046,27 +10760,28425,878 +10761,249,35 +10762,26358,878 +10763,9787,18 +10764,19594,10751 +10765,34113,99 +10766,33172,878 +10767,301804,18 +10768,114284,18 +10769,278632,53 +10770,14886,18 +10771,16428,10749 +10772,91138,18 +10773,359412,80 +10774,184267,10749 +10775,14626,18 +10776,371645,18 +10777,236041,35 +10778,24625,35 +10779,390,10769 +10780,49013,16 +10781,20561,99 +10782,46885,53 +10783,78323,28 +10784,129,14 +10785,22328,35 +10786,97110,35 +10787,78362,878 +10788,38920,35 +10789,83666,10749 +10790,119409,35 +10791,209209,14 +10792,24775,28 +10793,343173,27 +10794,15387,35 +10795,346672,27 +10796,95627,35 +10797,98582,28 +10798,26156,10751 +10799,13058,18 +10800,42640,10749 +10801,52440,18 +10802,53358,35 +10803,69035,9648 +10804,75137,10752 +10805,198227,10749 +10806,43009,878 +10807,52560,10749 +10808,19819,18 +10809,4254,35 +10810,203539,35 +10811,37315,18 +10812,261035,28 +10813,9593,12 +10814,8079,18 +10815,54287,28 +10816,360924,12 +10817,326359,12 +10818,362154,80 +10819,126927,53 +10820,162282,35 +10821,41608,28 +10822,278475,35 +10823,1942,9648 +10824,32332,35 +10825,90406,37 +10826,11391,80 +10827,82470,35 +10828,370687,28 +10829,44081,10769 +10830,45013,10751 +10831,327935,35 +10832,315010,18 +10833,92393,878 +10834,126712,878 +10835,246741,27 +10836,25501,9648 +10837,134750,16 +10838,129882,14 +10839,67272,35 +10840,70712,18 +10841,50001,9648 +10842,238307,10402 +10843,11853,37 +10844,157351,18 +10845,325712,35 +10846,59569,18 +10847,42706,18 +10848,323968,878 +10849,37710,28 +10850,196257,35 +10851,81708,18 +10852,76170,28 +10853,109261,35 +10854,40709,18 +10855,17287,27 +10856,2349,18 +10857,286567,12 +10858,52943,27 +10859,64015,10749 +10860,126083,35 +10861,54396,35 +10862,53870,18 +10863,44875,14 +10864,43596,10749 +10865,8325,35 +10866,15472,80 +10867,16441,28 +10868,35395,35 +10869,11333,14 +10870,99324,10749 +10871,99846,18 +10872,8332,53 +10873,188357,28 +10874,857,10752 +10875,49277,14 +10876,66984,16 +10877,100063,28 +10878,392386,35 +10879,112161,10749 +10880,23823,27 +10881,77860,18 +10882,48466,16 +10883,14815,12 +10884,21451,18 +10885,28943,80 +10886,11902,10752 +10887,16351,10752 +10888,398452,10749 +10889,257214,35 +10890,51902,14 +10891,70057,18 +10892,33427,28 +10893,11692,35 +10894,19017,12 +10895,52959,10402 +10896,79500,18 +10897,15943,35 +10898,297265,18 +10899,29416,878 +10900,422,18 +10901,176,80 +10902,18736,35 +10903,24059,53 +10904,75745,18 +10905,85735,10749 +10906,24746,878 +10907,31131,878 +10908,3580,9648 +10909,43083,36 +10910,54982,18 +10911,66340,18 +10912,42941,27 +10913,16164,53 +10914,177203,53 +10915,284052,12 +10916,54287,878 +10917,122487,18 +10918,81475,27 +10919,28323,10752 +10920,270221,18 +10921,69346,53 +10922,13836,14 +10923,53214,10749 +10924,19797,35 +10925,139455,9648 +10926,18711,53 +10927,60153,99 +10928,49940,35 +10929,40866,10751 +10930,31942,27 +10931,51104,18 +10932,9070,12 +10933,315850,35 +10934,43775,10749 +10935,33134,80 +10936,42871,37 +10937,400552,35 +10938,22023,18 +10939,337012,10751 +10940,26204,80 +10941,26936,80 +10942,32029,18 +10943,9406,27 +10944,7515,28 +10945,9287,37 +10946,18079,53 +10947,94135,10752 +10948,165567,18 +10949,228331,18 +10950,358724,9648 +10951,86049,10749 +10952,55534,14 +10953,64861,27 +10954,11635,35 +10955,44874,16 +10956,67314,12 +10957,56329,18 +10958,68737,12 +10959,662,10749 +10960,11517,35 +10961,16378,35 +10962,13350,16 +10963,43812,18 +10964,54959,28 +10965,82341,35 +10966,9438,35 +10967,6183,35 +10968,32921,18 +10969,375366,53 +10970,37329,10749 +10971,167221,18 +10972,19688,35 +10973,9519,18 +10974,43228,878 +10975,12247,18 +10976,20342,14 +10977,43384,37 +10978,341201,10752 +10979,39545,10749 +10980,3055,18 +10981,44591,27 +10982,65256,12 +10983,118948,80 +10984,35908,27 +10985,71503,53 +10986,33839,35 +10987,678,9648 +10988,33660,10751 +10989,95177,18 +10990,48495,18 +10991,166221,28 +10992,369697,18 +10993,131799,35 +10994,62301,878 +10995,118444,18 +10996,34766,10770 +10997,3933,16 +10998,59117,80 +10999,35320,10751 +11000,21451,80 +11001,127391,35 +11002,111836,28 +11003,337073,27 +11004,61988,18 +11005,13092,18 +11006,90465,80 +11007,58887,35 +11008,320011,18 +11009,10991,16 +11010,110972,35 +11011,46891,10749 +11012,210307,35 +11013,31978,18 +11014,12920,10751 +11015,104954,18 +11016,53950,18 +11017,83346,18 +11018,64190,10769 +11019,33786,18 +11020,8088,18 +11021,18387,18 +11022,148327,18 +11023,2110,28 +11024,74911,9648 +11025,18783,18 +11026,196235,18 +11027,21338,53 +11028,31682,53 +11029,55370,35 +11030,18897,27 +11031,14873,16 +11032,295314,36 +11033,705,18 +11034,258193,27 +11035,8464,35 +11036,73628,18 +11037,77473,878 +11038,17780,35 +11039,157723,99 +11040,72094,53 +11041,330418,878 +11042,4993,28 +11043,82703,10751 +11044,339419,18 +11045,140595,99 +11046,116762,35 +11047,31821,35 +11048,43023,878 +11049,23628,10749 +11050,12764,10752 +11051,43580,10751 +11052,10543,10749 +11053,184345,35 +11054,141733,28 +11055,47536,36 +11056,9504,80 +11057,18691,10402 +11058,307649,10749 +11059,210487,35 +11060,65873,99 +11061,86768,28 +11062,60807,10769 +11063,57307,35 +11064,21567,10769 +11065,201676,16 +11066,4641,10770 +11067,388862,28 +11068,10708,10751 +11069,445,9648 +11070,16441,14 +11071,89086,18 +11072,16820,12 +11073,50008,18 +11074,72251,18 +11075,10796,878 +11076,353898,18 +11077,9756,27 +11078,28169,35 +11079,23964,35 +11080,1480,53 +11081,44415,10751 +11082,142412,53 +11083,64526,80 +11084,193216,16 +11085,41703,18 +11086,10077,28 +11087,163814,10749 +11088,62463,35 +11089,14819,10751 +11090,26301,10770 +11091,38404,878 +11092,57190,27 +11093,54563,18 +11094,178,18 +11095,37311,18 +11096,84340,35 +11097,359154,18 +11098,66966,80 +11099,28345,10751 +11100,5753,53 +11101,414977,14 +11102,5460,18 +11103,28704,18 +11104,23853,28 +11105,224,18 +11106,182545,35 +11107,40952,53 +11108,81310,10402 +11109,48627,10751 +11110,21481,18 +11111,41142,36 +11112,227348,27 +11113,33689,10749 +11114,67822,27 +11115,61487,99 +11116,352197,18 +11117,64328,10751 +11118,24619,53 +11119,59163,10769 +11120,191536,18 +11121,263627,18 +11122,151068,10752 +11123,47241,35 +11124,43268,10751 +11125,53761,18 +11126,43580,16 +11127,27983,10751 +11128,83860,18 +11129,47507,35 +11130,66659,878 +11131,242458,18 +11132,924,14 +11133,402612,18 +11134,86838,80 +11135,4978,10751 +11136,56934,10749 +11137,146216,80 +11138,38602,18 +11139,2084,80 +11140,3164,27 +11141,292656,18 +11142,23397,80 +11143,31498,27 +11144,635,53 +11145,37517,80 +11146,20623,10769 +11147,47900,18 +11148,46786,18 +11149,10257,878 +11150,54242,18 +11151,176983,28 +11152,84337,35 +11153,28974,18 +11154,163111,99 +11155,43470,18 +11156,435,878 +11157,79419,16 +11158,21250,18 +11159,32306,35 +11160,181753,18 +11161,19812,10751 +11162,20674,10770 +11163,70027,10402 +11164,17008,35 +11165,271007,10752 +11166,149870,16 +11167,14676,37 +11168,100532,10749 +11169,374319,10770 +11170,56807,18 +11171,39045,12 +11172,9890,28 +11173,327909,35 +11174,15661,18 +11175,66659,28 +11176,17465,10749 +11177,25674,18 +11178,55283,18 +11179,273896,35 +11180,27637,35 +11181,34223,35 +11182,13196,18 +11183,174350,99 +11184,31397,28 +11185,7980,14 +11186,28170,9648 +11187,286709,28 +11188,21778,35 +11189,238593,18 +11190,95536,18 +11191,3549,18 +11192,178569,35 +11193,23515,53 +11194,105231,28 +11195,43984,18 +11196,31342,35 +11197,28384,35 +11198,22136,878 +11199,14705,18 +11200,31618,28 +11201,86956,18 +11202,269173,28 +11203,125413,18 +11204,84569,99 +11205,10748,878 +11206,22136,14 +11207,208968,35 +11208,11391,10751 +11209,182349,53 +11210,18682,10749 +11211,377290,18 +11212,115929,18 +11213,70057,53 +11214,55628,12 +11215,285935,18 +11216,131764,10749 +11217,11231,12 +11218,131781,10749 +11219,44657,99 +11220,55448,80 +11221,315846,18 +11222,11688,16 +11223,118948,35 +11224,10733,36 +11225,61966,10749 +11226,48207,35 +11227,1271,10752 +11228,50838,53 +11229,425774,36 +11230,40985,10749 +11231,14676,18 +11232,2180,35 +11233,19827,35 +11234,315335,35 +11235,58428,53 +11236,59297,14 +11237,13580,18 +11238,14457,9648 +11239,47260,18 +11240,302104,10749 +11241,8494,35 +11242,35724,53 +11243,55730,35 +11244,264646,12 +11245,19096,18 +11246,12593,18 +11247,340224,18 +11248,100669,27 +11249,74919,28 +11250,52741,10749 +11251,9514,35 +11252,82327,10749 +11253,52867,18 +11254,74879,80 +11255,7234,12 +11256,96724,18 +11257,383618,12 +11258,64304,10769 +11259,58384,27 +11260,11925,35 +11261,329712,18 +11262,11853,35 +11263,147903,37 +11264,7980,18 +11265,411802,16 +11266,72753,10751 +11267,578,27 +11268,190250,878 +11269,43434,18 +11270,254869,28 +11271,16447,18 +11272,104859,35 +11273,50108,28 +11274,60665,18 +11275,123074,99 +11276,20304,18 +11277,98349,35 +11278,76609,28 +11279,21193,18 +11280,6440,10749 +11281,9076,35 +11282,36797,10751 +11283,9613,18 +11284,85610,35 +11285,97797,18 +11286,28176,18 +11287,176670,37 +11288,149793,9648 +11289,166076,28 +11290,118134,18 +11291,105325,35 +11292,23397,18 +11293,31262,53 +11294,28421,53 +11295,39061,18 +11296,9882,28 +11297,1659,37 +11298,44655,18 +11299,39129,10749 +11300,108723,18 +11301,360249,18 +11302,158015,53 +11303,71996,9648 +11304,115531,10770 +11305,190352,35 +11306,6023,18 +11307,76297,10749 +11308,54659,10769 +11309,140814,35 +11310,24154,14 +11311,93492,12 +11312,161885,35 +11313,9443,36 +11314,21619,80 +11315,257574,10770 +11316,399790,18 +11317,53865,18 +11318,975,10752 +11319,338189,18 +11320,93492,28 +11321,298165,27 +11322,12129,14 +11323,123359,53 +11324,24679,10402 +11325,120637,10769 +11326,373247,35 +11327,47683,35 +11328,50126,10770 +11329,73943,27 +11330,47955,53 +11331,31713,53 +11332,43550,35 +11333,54801,53 +11334,298165,10749 +11335,76397,10402 +11336,78403,18 +11337,97910,18 +11338,42571,53 +11339,30059,14 +11340,14834,10749 +11341,5482,18 +11342,77930,35 +11343,2140,28 +11344,64437,10749 +11345,10275,28 +11346,33367,36 +11347,225503,12 +11348,11001,35 +11349,37978,35 +11350,16235,27 +11351,126523,36 +11352,238589,28 +11353,977,18 +11354,30708,37 +11355,37284,27 +11356,5060,35 +11357,83718,35 +11358,43821,18 +11359,252773,35 +11360,73628,10749 +11361,30036,80 +11362,84295,10751 +11363,35129,18 +11364,18282,10751 +11365,83491,18 +11366,25941,53 +11367,13411,35 +11368,300490,18 +11369,11133,27 +11370,301325,53 +11371,40060,27 +11372,128043,18 +11373,89008,10749 +11374,33542,80 +11375,110608,10752 +11376,13562,35 +11377,152989,35 +11378,286267,18 +11379,15179,18 +11380,50875,53 +11381,327083,10770 +11382,19495,28 +11383,3291,18 +11384,985,27 +11385,11139,35 +11386,12525,27 +11387,273106,10751 +11388,13571,18 +11389,63625,35 +11390,78318,36 +11391,16314,35 +11392,17926,35 +11393,5767,10749 +11394,61035,10751 +11395,72912,28 +11396,141267,80 +11397,82430,14 +11398,11888,35 +11399,15156,28 +11400,22213,53 +11401,166225,28 +11402,11206,27 +11403,46806,10751 +11404,40465,10769 +11405,103332,10749 +11406,131343,878 +11407,21352,18 +11408,81937,35 +11409,119592,878 +11410,10596,28 +11411,261273,28 +11412,378441,18 +11413,48254,35 +11414,94894,35 +11415,11909,80 +11416,94009,80 +11417,50318,35 +11418,56725,18 +11419,319396,27 +11420,213681,80 +11421,48962,35 +11422,46187,18 +11423,7916,53 +11424,33253,80 +11425,231616,18 +11426,289010,18 +11427,4806,35 +11428,35052,18 +11429,57230,18 +11430,59147,18 +11431,120854,53 +11432,97365,18 +11433,44751,18 +11434,33253,53 +11435,10257,35 +11436,86305,18 +11437,418378,18 +11438,193603,53 +11439,28656,18 +11440,102629,28 +11441,201223,9648 +11442,213635,18 +11443,197788,80 +11444,32654,12 +11445,60568,28 +11446,284305,18 +11447,393407,35 +11448,15907,18 +11449,20411,28 +11450,21468,10749 +11451,53879,10749 +11452,1662,18 +11453,27970,27 +11454,54514,35 +11455,152748,10749 +11456,43526,18 +11457,48885,27 +11458,77056,35 +11459,73123,10751 +11460,26983,18 +11461,174645,80 +11462,60002,18 +11463,189225,36 +11464,52864,18 +11465,379873,35 +11466,39305,99 +11467,38908,35 +11468,27150,28 +11469,16442,28 +11470,26502,37 +11471,325555,10749 +11472,265314,28 +11473,60063,99 +11474,363841,10752 +11475,80304,37 +11476,145135,27 +11477,46227,35 +11478,41831,10751 +11479,52183,18 +11480,104485,18 +11481,11712,18 +11482,28421,9648 +11483,397837,9648 +11484,49038,10751 +11485,109614,10749 +11486,192023,53 +11487,273610,35 +11488,37502,878 +11489,61267,10769 +11490,101669,80 +11491,37923,9648 +11492,302699,28 +11493,13318,14 +11494,172972,28 +11495,30402,53 +11496,40807,35 +11497,13991,35 +11498,53622,28 +11499,8906,18 +11500,28263,53 +11501,100910,10749 +11502,13996,18 +11503,36129,10751 +11504,88075,10749 +11505,133521,18 +11506,4955,18 +11507,21786,27 +11508,27045,53 +11509,20646,28 +11510,82469,35 +11511,175035,35 +11512,42066,18 +11513,56329,28 +11514,61580,53 +11515,53210,16 +11516,54548,35 +11517,4983,53 +11518,84508,27 +11519,29113,53 +11520,199647,10749 +11521,28438,27 +11522,19971,9648 +11523,183218,18 +11524,20495,35 +11525,123757,35 +11526,43997,35 +11527,53792,18 +11528,336655,18 +11529,44997,99 +11530,24671,12 +11531,56150,878 +11532,287628,12 +11533,46247,16 +11534,2979,14 +11535,53945,12 +11536,384737,28 +11537,348601,35 +11538,330115,35 +11539,15616,18 +11540,209263,35 +11541,39407,27 +11542,11799,12 +11543,21765,878 +11544,86023,10769 +11545,155397,10769 +11546,361050,18 +11547,87936,53 +11548,59572,35 +11549,39833,37 +11550,452606,35 +11551,67375,18 +11552,47386,53 +11553,363890,28 +11554,14751,18 +11555,13369,28 +11556,965,10749 +11557,10694,80 +11558,73969,10749 +11559,28577,80 +11560,18908,10749 +11561,279606,10749 +11562,125619,99 +11563,43022,80 +11564,13805,28 +11565,27983,35 +11566,27824,35 +11567,49060,10749 +11568,2291,9648 +11569,55156,35 +11570,153561,18 +11571,14181,53 +11572,37211,9648 +11573,142084,10402 +11574,51971,18 +11575,262841,28 +11576,11511,14 +11577,324670,878 +11578,23048,35 +11579,1272,53 +11580,54801,27 +11581,79707,16 +11582,8665,36 +11583,35,16 +11584,18691,10749 +11585,158483,12 +11586,35002,878 +11587,5998,53 +11588,9507,53 +11589,73241,10402 +11590,68139,35 +11591,407559,27 +11592,409536,18 +11593,11001,80 +11594,41131,10752 +11595,154,12 +11596,9010,35 +11597,36211,10769 +11598,180813,10402 +11599,16436,18 +11600,18467,18 +11601,15935,53 +11602,22744,18 +11603,418072,80 +11604,63105,28 +11605,14019,80 +11606,118236,53 +11607,6069,35 +11608,61934,35 +11609,52049,10769 +11610,77117,18 +11611,92311,18 +11612,42346,35 +11613,46178,35 +11614,31011,878 +11615,116554,10769 +11616,15936,35 +11617,104702,14 +11618,10610,35 +11619,14510,878 +11620,13610,10749 +11621,172385,12 +11622,56858,10751 +11623,128241,53 +11624,191562,27 +11625,36075,878 +11626,39148,28 +11627,193756,53 +11628,8672,99 +11629,52454,878 +11630,52072,35 +11631,112708,18 +11632,31450,10769 +11633,172890,35 +11634,41301,35 +11635,45179,10751 +11636,150201,27 +11637,30959,14 +11638,11337,10749 +11639,85430,35 +11640,5759,27 +11641,290365,878 +11642,31344,36 +11643,30054,18 +11644,31003,10749 +11645,249264,35 +11646,16839,80 +11647,23096,35 +11648,51036,35 +11649,34766,12 +11650,211233,80 +11651,28061,27 +11652,35652,35 +11653,2675,9648 +11654,45273,27 +11655,90231,35 +11656,211166,10749 +11657,198277,18 +11658,120729,18 +11659,280019,53 +11660,109451,16 +11661,2565,14 +11662,333354,53 +11663,26505,16 +11664,211387,12 +11665,468707,35 +11666,38883,28 +11667,83965,10770 +11668,172385,35 +11669,433,14 +11670,39276,878 +11671,60082,10749 +11672,2132,35 +11673,33542,53 +11674,8340,18 +11675,105763,10749 +11676,3780,18 +11677,9325,16 +11678,9945,28 +11679,19176,28 +11680,1415,18 +11681,15762,878 +11682,8939,18 +11683,54099,18 +11684,22471,35 +11685,139244,9648 +11686,30174,18 +11687,77534,35 +11688,55989,53 +11689,395883,878 +11690,356461,18 +11691,112456,18 +11692,256969,18 +11693,126319,35 +11694,59142,10749 +11695,253263,99 +11696,349028,53 +11697,80596,18 +11698,86658,27 +11699,82157,18 +11700,48770,10751 +11701,41380,10769 +11702,199575,878 +11703,16307,27 +11704,6978,14 +11705,121401,27 +11706,70436,9648 +11707,382501,10749 +11708,148371,18 +11709,269246,16 +11710,426264,35 +11711,1833,18 +11712,110323,18 +11713,42182,27 +11714,28170,27 +11715,14430,10769 +11716,169934,28 +11717,71320,53 +11718,29568,10749 +11719,54111,10749 +11720,62675,35 +11721,10947,10402 +11722,257345,27 +11723,57684,35 +11724,264644,53 +11725,308639,80 +11726,26254,99 +11727,9056,80 +11728,276220,18 +11729,28681,12 +11730,244403,10402 +11731,32058,10749 +11732,280004,10749 +11733,4931,18 +11734,248710,35 +11735,72105,14 +11736,18333,18 +11737,141267,28 +11738,289712,27 +11739,166027,53 +11740,39839,18 +11741,45861,18 +11742,91259,10749 +11743,34326,18 +11744,339994,80 +11745,55731,12 +11746,122023,10749 +11747,284296,18 +11748,127493,18 +11749,8617,80 +11750,139433,99 +11751,79853,10751 +11752,42684,878 +11753,31991,18 +11754,66966,18 +11755,38043,35 +11756,105528,18 +11757,36691,18 +11758,9629,12 +11759,47211,80 +11760,6,80 +11761,1633,35 +11762,101376,10769 +11763,70881,10749 +11764,83666,35 +11765,16231,27 +11766,26131,10749 +11767,5333,27 +11768,15,9648 +11769,408220,28 +11770,213443,18 +11771,4520,18 +11772,27137,18 +11773,31448,878 +11774,109451,10751 +11775,69075,53 +11776,60269,80 +11777,552,10749 +11778,340881,18 +11779,36737,878 +11780,19203,28 +11781,37206,18 +11782,44680,53 +11783,172,878 +11784,5955,18 +11785,149515,37 +11786,435366,28 +11787,28938,35 +11788,80473,80 +11789,204965,35 +11790,91217,18 +11791,26005,18 +11792,72642,9648 +11793,16162,35 +11794,31273,36 +11795,29979,28 +11796,22579,18 +11797,24918,35 +11798,118293,35 +11799,120172,28 +11800,13849,35 +11801,17008,18 +11802,140418,28 +11803,47003,27 +11804,430156,10402 +11805,425961,28 +11806,43753,18 +11807,39230,18 +11808,156220,99 +11809,345176,35 +11810,54514,18 +11811,34651,37 +11812,76651,35 +11813,9568,27 +11814,98870,18 +11815,116979,27 +11816,10137,14 +11817,11591,10749 +11818,60193,35 +11819,385654,18 +11820,102161,16 +11821,26252,80 +11822,270759,18 +11823,40470,16 +11824,11145,35 +11825,11908,27 +11826,155724,10770 +11827,376570,53 +11828,1259,10749 +11829,14644,35 +11830,127614,10769 +11831,42094,10749 +11832,112162,99 +11833,10999,53 +11834,37672,35 +11835,47540,10749 +11836,62692,10769 +11837,321644,99 +11838,46738,9648 +11839,78281,18 +11840,83475,35 +11841,99909,10749 +11842,205054,35 +11843,35862,10749 +11844,105077,18 +11845,368006,28 +11846,43049,10749 +11847,423377,18 +11848,13655,18 +11849,58402,80 +11850,312174,53 +11851,2577,53 +11852,12903,16 +11853,226354,10751 +11854,10274,80 +11855,8916,10751 +11856,43114,28 +11857,289126,53 +11858,29786,35 +11859,195653,99 +11860,92298,53 +11861,38034,80 +11862,27703,9648 +11863,262447,18 +11864,57190,53 +11865,6499,878 +11866,12106,28 +11867,49018,27 +11868,46875,18 +11869,19898,9648 +11870,86709,18 +11871,32609,80 +11872,103758,35 +11873,85265,18 +11874,29168,878 +11875,317,36 +11876,173177,35 +11877,206647,12 +11878,39545,35 +11879,47536,18 +11880,300155,18 +11881,43811,36 +11882,18990,27 +11883,118098,10402 +11884,55167,18 +11885,331161,18 +11886,101231,18 +11887,23239,18 +11888,279690,27 +11889,25695,35 +11890,40205,10751 +11891,47508,10751 +11892,63681,18 +11893,38433,53 +11894,43641,16 +11895,22093,10749 +11896,29260,18 +11897,85564,9648 +11898,42305,35 +11899,44680,18 +11900,276935,53 +11901,19482,35 +11902,72431,10752 +11903,17711,10751 +11904,15712,18 +11905,69404,10749 +11906,135670,27 +11907,11647,80 +11908,31532,35 +11909,1926,18 +11910,82781,18 +11911,81414,18 +11912,15759,18 +11913,3115,878 +11914,108812,10749 +11915,11534,14 +11916,1450,53 +11917,63215,18 +11918,31921,53 +11919,90465,35 +11920,101929,80 +11921,29492,35 +11922,16175,9648 +11923,109466,27 +11924,50526,10402 +11925,84848,18 +11926,108048,14 +11927,43775,35 +11928,78339,53 +11929,24709,18 +11930,21338,28 +11931,43001,18 +11932,46758,18 +11933,9675,18 +11934,27381,53 +11935,18206,10749 +11936,15073,53 +11937,100814,12 +11938,72900,10769 +11939,299,35 +11940,410118,12 +11941,19335,18 +11942,2892,18 +11943,293982,10749 +11944,36960,53 +11945,99188,18 +11946,23382,80 +11947,11354,18 +11948,45452,35 +11949,42794,27 +11950,41590,18 +11951,26851,36 +11952,98289,18 +11953,6069,27 +11954,307479,53 +11955,32825,18 +11956,10872,35 +11957,276935,28 +11958,74549,18 +11959,39766,10752 +11960,141138,10769 +11961,395479,10752 +11962,693,35 +11963,248639,18 +11964,264264,18 +11965,9981,35 +11966,11540,9648 +11967,228558,35 +11968,281289,35 +11969,363439,27 +11970,39907,10752 +11971,17241,53 +11972,20359,10769 +11973,476,18 +11974,9056,53 +11975,235662,10770 +11976,115810,99 +11977,344120,53 +11978,70498,10749 +11979,348035,35 +11980,6643,18 +11981,80374,35 +11982,265208,18 +11983,25132,35 +11984,82080,35 +11985,52859,18 +11986,43792,35 +11987,112973,35 +11988,45693,35 +11989,25659,35 +11990,127544,16 +11991,57201,12 +11992,22160,18 +11993,300983,10749 +11994,8985,18 +11995,15794,53 +11996,28704,28 +11997,118991,18 +11998,66926,35 +11999,43209,28 +12000,69065,80 +12001,370264,28 +12002,280495,878 +12003,37911,28 +12004,74830,35 +12005,13333,80 +12006,44890,10752 +12007,65416,27 +12008,37929,53 +12009,11658,12 +12010,20186,10769 +12011,8816,35 +12012,308165,28 +12013,29343,878 +12014,24440,35 +12015,82868,35 +12016,108789,18 +12017,47574,18 +12018,26881,12 +12019,121793,18 +12020,79611,18 +12021,14878,53 +12022,168496,18 +12023,379925,14 +12024,525,28 +12025,403130,53 +12026,295884,10751 +12027,24272,10402 +12028,400,80 +12029,47851,10749 +12030,6163,28 +12031,429238,80 +12032,48567,10751 +12033,7299,28 +12034,14254,27 +12035,71996,53 +12036,264555,53 +12037,146381,12 +12038,40029,18 +12039,26899,18 +12040,573,80 +12041,157384,18 +12042,12697,10751 +12043,66756,28 +12044,256740,28 +12045,27549,12 +12046,382995,35 +12047,49322,10752 +12048,59424,10752 +12049,34838,10402 +12050,89325,10749 +12051,124501,18 +12052,76493,35 +12053,63333,878 +12054,27629,10749 +12055,18843,10751 +12056,29444,35 +12057,14869,12 +12058,145135,878 +12059,26152,35 +12060,241930,9648 +12061,176085,35 +12062,443007,18 +12063,433471,16 +12064,79783,10751 +12065,205724,35 +12066,11442,27 +12067,65044,27 +12068,1448,27 +12069,21840,18 +12070,111239,28 +12071,4344,10751 +12072,5279,18 +12073,368006,53 +12074,347979,10749 +12075,49717,18 +12076,50364,18 +12077,44027,53 +12078,44502,14 +12079,12636,878 +12080,277688,27 +12081,34577,14 +12082,108869,18 +12083,85414,28 +12084,31995,12 +12085,30308,53 +12086,105981,18 +12087,399106,10751 +12088,395982,14 +12089,12101,878 +12090,68063,35 +12091,153518,16 +12092,73208,80 +12093,42139,10402 +12094,128284,99 +12095,70772,18 +12096,65881,35 +12097,5965,12 +12098,11248,18 +12099,59881,18 +12100,146679,35 +12101,48243,53 +12102,101363,14 +12103,9504,9648 +12104,87311,10770 +12105,9514,16 +12106,341886,27 +12107,262,18 +12108,44414,9648 +12109,159469,10752 +12110,19140,18 +12111,29907,35 +12112,4932,35 +12113,48495,10749 +12114,65142,35 +12115,2669,36 +12116,11960,10769 +12117,42251,878 +12118,270383,18 +12119,40852,37 +12120,44038,99 +12121,12311,12 +12122,407531,27 +12123,2300,16 +12124,17577,28 +12125,92269,18 +12126,281968,18 +12127,82501,9648 +12128,36785,18 +12129,44006,18 +12130,9317,878 +12131,11536,28 +12132,322548,10749 +12133,33172,28 +12134,114108,878 +12135,27696,27 +12136,97707,99 +12137,8398,27 +12138,4982,18 +12139,28893,28 +12140,204965,10749 +12141,5511,53 +12142,86664,10749 +12143,84185,99 +12144,9292,28 +12145,151509,35 +12146,14164,14 +12147,50329,18 +12148,72203,10751 +12149,21794,27 +12150,175998,9648 +12151,12516,878 +12152,198317,10402 +12153,40081,18 +12154,101752,10749 +12155,2046,9648 +12156,16171,35 +12157,324150,53 +12158,369894,18 +12159,253235,35 +12160,17963,16 +12161,455043,28 +12162,242033,53 +12163,341957,27 +12164,45938,18 +12165,42502,10749 +12166,11645,18 +12167,65545,10749 +12168,5393,878 +12169,120,12 +12170,59930,18 +12171,437122,878 +12172,12994,9648 +12173,281289,53 +12174,51902,10751 +12175,95743,10749 +12176,9655,18 +12177,24750,35 +12178,24403,18 +12179,14539,28 +12180,75577,10402 +12181,73208,9648 +12182,16240,35 +12183,39510,16 +12184,30806,28 +12185,24921,27 +12186,261273,27 +12187,68822,80 +12188,92769,27 +12189,3057,9648 +12190,356161,16 +12191,39545,878 +12192,260001,35 +12193,9550,18 +12194,344147,28 +12195,117629,10749 +12196,172908,53 +12197,42996,28 +12198,245700,18 +12199,43119,80 +12200,332512,10751 +12201,92060,10402 +12202,24655,27 +12203,95453,18 +12204,63958,18 +12205,351365,35 +12206,94352,10751 +12207,42420,10769 +12208,10749,18 +12209,186869,53 +12210,13496,37 +12211,14660,53 +12212,348673,99 +12213,269165,18 +12214,1717,18 +12215,19244,80 +12216,10473,12 +12217,222932,27 +12218,9016,16 +12219,135718,18 +12220,12903,10751 +12221,158947,10769 +12222,1694,27 +12223,174751,28 +12224,46387,10749 +12225,41097,16 +12226,53404,9648 +12227,39493,18 +12228,26261,10751 +12229,56191,878 +12230,37665,18 +12231,47761,18 +12232,108345,37 +12233,64450,80 +12234,369019,18 +12235,84283,18 +12236,241140,18 +12237,9406,35 +12238,362617,18 +12239,41478,18 +12240,15936,18 +12241,187458,10402 +12242,2110,18 +12243,250066,28 +12244,104232,10749 +12245,38043,18 +12246,5048,14 +12247,41733,35 +12248,76784,35 +12249,525,10402 +12250,361146,53 +12251,5638,18 +12252,369444,18 +12253,134662,18 +12254,85778,99 +12255,4762,35 +12256,103012,18 +12257,27270,28 +12258,72074,18 +12259,2979,878 +12260,323665,27 +12261,14538,18 +12262,30709,35 +12263,91391,18 +12264,26941,35 +12265,15653,16 +12266,8856,18 +12267,36674,35 +12268,38875,53 +12269,13285,10751 +12270,155128,53 +12271,19610,18 +12272,14411,16 +12273,21348,12 +12274,30709,18 +12275,32021,9648 +12276,347031,12 +12277,53354,53 +12278,11886,10751 +12279,31548,35 +12280,315467,99 +12281,126934,10751 +12282,28527,10769 +12283,18530,18 +12284,28761,12 +12285,11509,37 +12286,282086,35 +12287,50166,35 +12288,172972,35 +12289,279096,878 +12290,279543,18 +12291,43935,35 +12292,2107,35 +12293,14159,10749 +12294,13649,10402 +12295,142012,28 +12296,133382,18 +12297,11524,53 +12298,59118,53 +12299,11777,10749 +12300,18405,53 +12301,49038,10402 +12302,433,35 +12303,47046,18 +12304,7459,28 +12305,116439,12 +12306,128081,35 +12307,9542,27 +12308,246422,18 +12309,27599,10751 +12310,303542,12 +12311,408140,53 +12312,40220,27 +12313,86703,27 +12314,54146,10769 +12315,216580,18 +12316,41479,35 +12317,6687,80 +12318,65881,36 +12319,6978,35 +12320,34013,18 +12321,33839,10751 +12322,8965,10751 +12323,273511,35 +12324,278348,53 +12325,345915,53 +12326,1959,10749 +12327,1497,12 +12328,140231,28 +12329,109424,18 +12330,109479,18 +12331,45565,18 +12332,283995,35 +12333,84569,18 +12334,92796,10749 +12335,30298,10752 +12336,15060,16 +12337,43316,10749 +12338,56744,80 +12339,6171,18 +12340,17238,18 +12341,16313,53 +12342,84178,53 +12343,142507,18 +12344,8870,878 +12345,72232,10751 +12346,407806,99 +12347,14050,36 +12348,160297,99 +12349,45726,53 +12350,104720,18 +12351,461955,878 +12352,217923,14 +12353,297288,35 +12354,192210,18 +12355,359255,27 +12356,85656,28 +12357,395992,878 +12358,310888,10749 +12359,310567,35 +12360,12144,10751 +12361,1415,80 +12362,3037,18 +12363,57278,12 +12364,31421,10749 +12365,282553,18 +12366,11421,18 +12367,5924,18 +12368,94820,12 +12369,65416,35 +12370,1662,80 +12371,353257,28 +12372,58763,10749 +12373,272892,35 +12374,14207,53 +12375,34806,10749 +12376,2017,28 +12377,3146,28 +12378,48205,18 +12379,325555,28 +12380,83899,9648 +12381,31273,12 +12382,33534,35 +12383,3081,18 +12384,490,14 +12385,14765,80 +12386,25528,53 +12387,12780,18 +12388,36236,18 +12389,153162,18 +12390,21840,12 +12391,95807,53 +12392,17057,18 +12393,77650,10749 +12394,78362,53 +12395,78028,18 +12396,119801,10749 +12397,236053,35 +12398,58611,35 +12399,21062,10749 +12400,182799,18 +12401,36288,35 +12402,46660,18 +12403,2613,18 +12404,9516,18 +12405,15689,35 +12406,84016,18 +12407,300669,27 +12408,433082,18 +12409,17240,53 +12410,58414,10769 +12411,206197,53 +12412,33613,80 +12413,86413,99 +12414,37301,37 +12415,329718,18 +12416,68097,28 +12417,134397,18 +12418,23048,878 +12419,364379,27 +12420,13668,10749 +12421,21208,27 +12422,93313,18 +12423,14295,10749 +12424,44287,53 +12425,48333,28 +12426,52847,18 +12427,21620,10749 +12428,42216,53 +12429,160844,35 +12430,19509,35 +12431,148697,35 +12432,24936,9648 +12433,54227,10751 +12434,1247,36 +12435,55846,80 +12436,11607,28 +12437,104277,18 +12438,46189,10752 +12439,18477,27 +12440,30141,80 +12441,26030,28 +12442,321303,18 +12443,47715,18 +12444,110525,10752 +12445,12601,27 +12446,98328,18 +12447,9366,18 +12448,42825,18 +12449,140418,53 +12450,9659,53 +12451,262338,80 +12452,25872,28 +12453,47489,18 +12454,68123,35 +12455,17906,10749 +12456,60140,18 +12457,12112,18 +12458,45441,18 +12459,12525,35 +12460,36463,18 +12461,14945,16 +12462,16023,16 +12463,366630,18 +12464,41209,35 +12465,75162,28 +12466,27036,9648 +12467,412851,18 +12468,42188,18 +12469,10865,878 +12470,67314,9648 +12471,77079,37 +12472,11584,10749 +12473,49577,18 +12474,37126,80 +12475,18056,28 +12476,9779,18 +12477,7871,10749 +12478,44536,10752 +12479,390777,35 +12480,21141,53 +12481,11795,878 +12482,425774,18 +12483,46261,53 +12484,1890,18 +12485,4938,28 +12486,29542,27 +12487,24341,14 +12488,188507,10751 +12489,253851,35 +12490,16539,35 +12491,45120,18 +12492,13495,28 +12493,200511,53 +12494,397837,53 +12495,461615,878 +12496,13536,80 +12497,273743,18 +12498,12720,53 +12499,84450,80 +12500,51802,18 +12501,399790,53 +12502,18736,10751 +12503,71825,35 +12504,324251,12 +12505,11622,35 +12506,98250,37 +12507,33660,18 +12508,8869,28 +12509,213110,35 +12510,120303,27 +12511,31598,53 +12512,12476,27 +12513,134474,35 +12514,105860,18 +12515,22267,18 +12516,238985,37 +12517,58757,18 +12518,324251,18 +12519,21481,35 +12520,48852,35 +12521,33228,18 +12522,302036,18 +12523,458618,10770 +12524,179603,80 +12525,81110,18 +12526,58928,10752 +12527,24140,18 +12528,9272,53 +12529,298787,27 +12530,51739,10751 +12531,99318,10752 +12532,16307,9648 +12533,18820,35 +12534,47956,12 +12535,17223,10769 +12536,116350,16 +12537,102024,18 +12538,29136,18 +12539,332283,18 +12540,140887,28 +12541,59115,27 +12542,48131,18 +12543,64936,53 +12544,281979,12 +12545,572,27 +12546,202241,18 +12547,37340,18 +12548,298931,18 +12549,220820,18 +12550,6947,18 +12551,11655,27 +12552,58462,18 +12553,56943,36 +12554,76864,53 +12555,273096,80 +12556,6171,53 +12557,254420,28 +12558,74753,53 +12559,185289,35 +12560,92663,18 +12561,210864,99 +12562,70583,28 +12563,28323,28 +12564,422472,27 +12565,86979,53 +12566,58372,35 +12567,15979,27 +12568,37939,80 +12569,52943,53 +12570,24821,27 +12571,10568,12 +12572,38461,35 +12573,313922,27 +12574,1813,9648 +12575,44661,53 +12576,44890,12 +12577,28535,18 +12578,30584,28 +12579,19506,18 +12580,185354,878 +12581,259997,9648 +12582,10585,53 +12583,25353,16 +12584,21430,9648 +12585,361181,35 +12586,14405,12 +12587,198130,35 +12588,815,35 +12589,21736,12 +12590,26688,27 +12591,69717,18 +12592,3028,27 +12593,5551,53 +12594,352733,18 +12595,46875,28 +12596,9542,28 +12597,56815,27 +12598,125300,10749 +12599,285733,12 +12600,172445,10749 +12601,40562,35 +12602,27543,53 +12603,49712,53 +12604,34084,27 +12605,16412,35 +12606,37984,28 +12607,191465,9648 +12608,29151,18 +12609,298584,27 +12610,8355,16 +12611,294047,27 +12612,26688,53 +12613,107985,878 +12614,53407,37 +12615,115565,18 +12616,229757,18 +12617,7304,53 +12618,17306,53 +12619,14886,35 +12620,383140,28 +12621,25425,28 +12622,19971,53 +12623,73896,28 +12624,57544,35 +12625,27045,9648 +12626,7515,10749 +12627,51275,36 +12628,63958,80 +12629,212996,10769 +12630,327383,35 +12631,18937,14 +12632,22007,27 +12633,141733,10749 +12634,107096,28 +12635,17654,878 +12636,28448,36 +12637,13550,53 +12638,228108,18 +12639,29649,18 +12640,11186,18 +12641,40029,28 +12642,36264,35 +12643,61950,9648 +12644,248376,80 +12645,84601,16 +12646,42706,28 +12647,101330,18 +12648,220029,10770 +12649,191502,99 +12650,339116,28 +12651,220514,27 +12652,33343,18 +12653,317182,12 +12654,51303,35 +12655,9404,18 +12656,9664,10752 +12657,10753,80 +12658,44115,18 +12659,24432,10751 +12660,10948,12 +12661,41516,878 +12662,92499,10749 +12663,46368,878 +12664,5257,35 +12665,17464,10402 +12666,204922,9648 +12667,201361,99 +12668,109861,18 +12669,18684,35 +12670,271185,18 +12671,249914,35 +12672,84827,99 +12673,339148,10749 +12674,57684,10402 +12675,359255,53 +12676,14069,16 +12677,54166,35 +12678,274857,18 +12679,83389,16 +12680,23107,18 +12681,393079,18 +12682,124414,99 +12683,64481,18 +12684,366045,10770 +12685,89086,12 +12686,177271,10751 +12687,2608,35 +12688,291558,10749 +12689,239368,99 +12690,30478,27 +12691,10776,35 +12692,11540,12 +12693,17614,10752 +12694,6947,9648 +12695,104232,27 +12696,170689,18 +12697,37702,35 +12698,354857,35 +12699,32588,18 +12700,97767,10402 +12701,21734,18 +12702,78563,18 +12703,41357,10749 +12704,71701,18 +12705,12697,16 +12706,282762,35 +12707,10336,12 +12708,172385,16 +12709,74753,18 +12710,251227,35 +12711,369366,16 +12712,21712,9648 +12713,46124,28 +12714,229,27 +12715,71945,10769 +12716,83342,10769 +12717,268099,99 +12718,130900,35 +12719,182097,10749 +12720,367006,53 +12721,47851,18 +12722,87204,18 +12723,14615,80 +12724,9502,16 +12725,177190,35 +12726,50086,18 +12727,331745,99 +12728,333371,878 +12729,373397,35 +12730,45928,80 +12731,10500,18 +12732,10235,18 +12733,72199,35 +12734,215928,18 +12735,19912,9648 +12736,5618,10749 +12737,139455,53 +12738,20963,35 +12739,276635,35 +12740,37725,35 +12741,24775,53 +12742,239018,10751 +12743,280840,18 +12744,1825,28 +12745,78373,18 +12746,44363,53 +12747,27480,18 +12748,107096,878 +12749,25872,10751 +12750,160046,16 +12751,19766,12 +12752,24554,12 +12753,174769,18 +12754,56232,10749 +12755,463906,80 +12756,21334,18 +12757,154972,18 +12758,56162,35 +12759,95919,18 +12760,36129,16 +12761,37959,35 +12762,41283,18 +12763,68139,10770 +12764,180691,10402 +12765,22897,10749 +12766,10874,28 +12767,24886,10751 +12768,48791,12 +12769,76940,28 +12770,360249,28 +12771,15810,9648 +12772,153272,14 +12773,201676,10402 +12774,10407,35 +12775,50153,10749 +12776,33642,53 +12777,19958,10769 +12778,215743,18 +12779,277778,28 +12780,22476,35 +12781,52784,35 +12782,2982,12 +12783,132714,16 +12784,31206,18 +12785,187028,53 +12786,83229,18 +12787,21431,18 +12788,43562,10749 +12789,359412,28 +12790,54105,35 +12791,323675,35 +12792,17658,35 +12793,331962,80 +12794,14615,53 +12795,233423,16 +12796,9812,18 +12797,379959,18 +12798,289278,18 +12799,4641,18 +12800,172520,53 +12801,232100,14 +12802,4538,35 +12803,284288,18 +12804,248698,10749 +12805,9023,12 +12806,25862,18 +12807,401222,878 +12808,24971,28 +12809,11633,28 +12810,246218,53 +12811,55435,14 +12812,31586,878 +12813,2186,27 +12814,28677,35 +12815,7551,53 +12816,342765,18 +12817,108712,18 +12818,237,53 +12819,316154,878 +12820,244539,35 +12821,15036,18 +12822,140489,35 +12823,11234,28 +12824,10750,12 +12825,77986,10749 +12826,33427,16 +12827,85023,53 +12828,18472,12 +12829,47493,36 +12830,63045,10749 +12831,266373,80 +12832,9071,18 +12833,70554,18 +12834,36672,10749 +12835,427673,35 +12836,19901,28 +12837,57089,10751 +12838,31067,18 +12839,23207,99 +12840,116973,9648 +12841,360249,12 +12842,89330,35 +12843,76012,9648 +12844,100594,28 +12845,70489,10749 +12846,55681,35 +12847,56533,53 +12848,121822,9648 +12849,330459,12 +12850,285869,18 +12851,32235,18 +12852,99545,18 +12853,227156,878 +12854,9821,18 +12855,16090,80 +12856,65614,18 +12857,70404,10769 +12858,22160,12 +12859,252874,35 +12860,62211,10751 +12861,32921,28 +12862,198795,27 +12863,24199,18 +12864,755,27 +12865,1999,18 +12866,69310,10769 +12867,29798,27 +12868,149170,10749 +12869,105352,18 +12870,72602,80 +12871,377158,18 +12872,3701,10769 +12873,191112,18 +12874,11832,18 +12875,398786,18 +12876,151068,18 +12877,321497,18 +12878,84823,18 +12879,37211,10751 +12880,59401,37 +12881,73198,10751 +12882,15371,35 +12883,11647,28 +12884,38322,80 +12885,20359,35 +12886,151509,10402 +12887,62838,35 +12888,9087,35 +12889,80928,16 +12890,295748,28 +12891,408024,18 +12892,167810,53 +12893,366170,16 +12894,41604,28 +12895,115109,18 +12896,44328,14 +12897,142216,18 +12898,11876,18 +12899,59249,35 +12900,155605,35 +12901,23857,9648 +12902,8935,18 +12903,14945,12 +12904,109472,18 +12905,45219,18 +12906,10770,35 +12907,88005,18 +12908,215373,18 +12909,2890,99 +12910,102272,18 +12911,25597,18 +12912,18446,18 +12913,27211,35 +12914,34838,10769 +12915,14522,18 +12916,412202,18 +12917,43368,10749 +12918,268712,10751 +12919,16417,35 +12920,329227,99 +12921,47096,18 +12922,31899,35 +12923,119893,10751 +12924,70498,18 +12925,56901,53 +12926,27414,53 +12927,20583,10770 +12928,17745,35 +12929,15285,10749 +12930,57201,37 +12931,413279,14 +12932,131351,18 +12933,336549,36 +12934,114931,18 +12935,78802,10749 +12936,27144,27 +12937,173153,18 +12938,5460,10749 +12939,72900,35 +12940,103938,10752 +12941,294652,28 +12942,10008,27 +12943,12645,28 +12944,42179,35 +12945,11636,28 +12946,282963,12 +12947,1859,10749 +12948,42231,10749 +12949,53231,18 +12950,198277,10402 +12951,68750,28 +12952,429792,35 +12953,33107,53 +12954,27112,10749 +12955,22213,18 +12956,50186,10749 +12957,250638,28 +12958,53714,18 +12959,18094,10402 +12960,18002,53 +12961,41590,28 +12962,85984,99 +12963,11688,35 +12964,58467,35 +12965,15045,18 +12966,214100,35 +12967,48405,16 +12968,49920,10751 +12969,3053,27 +12970,64156,10769 +12971,48199,18 +12972,2,18 +12973,11232,878 +12974,99008,27 +12975,62762,28 +12976,241742,10751 +12977,173847,35 +12978,209556,35 +12979,302026,53 +12980,391004,10749 +12981,50161,28 +12982,77439,10769 +12983,22259,878 +12984,5759,35 +12985,58570,53 +12986,412363,10749 +12987,90956,35 +12988,80089,878 +12989,100770,27 +12990,446345,10749 +12991,52109,18 +12992,36737,53 +12993,154575,18 +12994,18890,10751 +12995,43395,10749 +12996,48204,10749 +12997,72232,18 +12998,336004,28 +12999,811,18 +13000,41578,35 +13001,293660,35 +13002,20481,18 +13003,218425,10749 +13004,2454,12 +13005,949,80 +13006,14029,27 +13007,127614,35 +13008,43241,878 +13009,94696,10752 +13010,5460,53 +13011,20871,80 +13012,11653,12 +13013,27276,18 +13014,343921,53 +13015,387845,53 +13016,24059,18 +13017,31850,80 +13018,27904,18 +13019,10865,12 +13020,11485,35 +13021,10491,18 +13022,329682,53 +13023,2115,18 +13024,2897,35 +13025,2924,53 +13026,332662,27 +13027,11313,18 +13028,16174,878 +13029,74447,18 +13030,289720,28 +13031,8053,80 +13032,91627,27 +13033,9475,18 +13034,91186,18 +13035,162877,10749 +13036,33534,12 +13037,103947,35 +13038,74666,18 +13039,257534,18 +13040,21325,27 +13041,2034,18 +13042,36615,18 +13043,86369,18 +13044,39816,10769 +13045,26014,35 +13046,13853,18 +13047,63505,18 +13048,38950,80 +13049,34193,18 +13050,10774,18 +13051,385372,35 +13052,335031,35 +13053,83718,18 +13054,5967,18 +13055,4248,35 +13056,42703,12 +13057,72847,80 +13058,5,80 +13059,147876,18 +13060,25953,18 +13061,147575,37 +13062,41857,28 +13063,13531,35 +13064,68822,10749 +13065,26864,10769 +13066,208091,18 +13067,58404,35 +13068,28564,10749 +13069,31991,27 +13070,72933,10749 +13071,50669,53 +13072,23719,28 +13073,11058,18 +13074,54503,10769 +13075,311324,12 +13076,18684,10402 +13077,12783,10749 +13078,26656,878 +13079,74465,35 +13080,69217,53 +13081,384160,18 +13082,11385,28 +13083,19765,10749 +13084,44470,27 +13085,137776,10770 +13086,40804,27 +13087,10075,14 +13088,35623,18 +13089,16439,10749 +13090,100088,28 +13091,14452,28 +13092,27681,10751 +13093,31411,35 +13094,242310,80 +13095,30061,28 +13096,23367,10402 +13097,127372,18 +13098,33642,80 +13099,868,18 +13100,42764,37 +13101,3933,10749 +13102,265351,18 +13103,94336,18 +13104,303636,18 +13105,20432,27 +13106,147287,35 +13107,212713,35 +13108,635,9648 +13109,42512,14 +13110,12528,80 +13111,11129,35 +13112,11056,27 +13113,1073,53 +13114,34013,10749 +13115,29345,878 +13116,242042,10749 +13117,338309,18 +13118,275244,16 +13119,12144,16 +13120,12618,18 +13121,48180,12 +13122,31161,35 +13123,37708,80 +13124,125521,12 +13125,256969,10752 +13126,146970,35 +13127,82687,35 +13128,36355,10751 +13129,13979,18 +13130,77067,27 +13131,34205,14 +13132,74481,27 +13133,10744,10749 +13134,13333,18 +13135,348631,18 +13136,45156,18 +13137,40373,18 +13138,142946,35 +13139,83209,18 +13140,20372,28 +13141,325173,80 +13142,72313,27 +13143,53870,28 +13144,11415,27 +13145,85200,27 +13146,245170,16 +13147,427409,16 +13148,306464,16 +13149,65795,18 +13150,136752,28 +13151,58244,878 +13152,349045,35 +13153,12618,10749 +13154,383140,53 +13155,64481,10749 +13156,227700,18 +13157,109122,27 +13158,1273,16 +13159,21780,10751 +13160,42355,18 +13161,212996,80 +13162,47536,10752 +13163,119364,28 +13164,105965,35 +13165,361750,35 +13166,55604,10749 +13167,1595,36 +13168,56212,80 +13169,709,28 +13170,28170,35 +13171,157,878 +13172,249264,80 +13173,28115,80 +13174,14829,14 +13175,84449,53 +13176,167012,18 +13177,65156,10751 +13178,103640,18 +13179,356482,27 +13180,21866,28 +13181,126227,37 +13182,321497,53 +13183,9461,80 +13184,130925,14 +13185,13652,80 +13186,102428,10402 +13187,49847,27 +13188,132608,18 +13189,17906,35 +13190,21736,99 +13191,26866,35 +13192,27085,14 +13193,10336,53 +13194,5491,10752 +13195,4012,18 +13196,106020,80 +13197,281418,18 +13198,104674,18 +13199,2323,18 +13200,19661,53 +13201,96411,53 +13202,252144,18 +13203,76829,12 +13204,12573,35 +13205,54503,28 +13206,70122,10751 +13207,66022,18 +13208,62755,18 +13209,177358,18 +13210,11058,27 +13211,295627,53 +13212,134360,16 +13213,58051,35 +13214,135390,35 +13215,14804,18 +13216,54700,53 +13217,41522,878 +13218,35623,10769 +13219,413279,35 +13220,387886,18 +13221,26298,99 +13222,13561,35 +13223,405621,18 +13224,26889,35 +13225,552,35 +13226,40130,27 +13227,12720,18 +13228,25353,12 +13229,56150,18 +13230,55343,36 +13231,41831,28 +13232,127493,53 +13233,21060,10749 +13234,38743,35 +13235,202941,35 +13236,78285,35 +13237,49559,80 +13238,55663,12 +13239,174769,10402 +13240,28268,18 +13241,12158,27 +13242,24238,35 +13243,27703,27 +13244,290656,27 +13245,120747,12 +13246,62488,80 +13247,325712,10751 +13248,340215,18 +13249,73043,10769 +13250,59163,35 +13251,189696,10752 +13252,51371,35 +13253,47942,12 +13254,43931,27 +13255,781,18 +13256,363413,35 +13257,224951,27 +13258,70404,28 +13259,43213,80 +13260,64129,10749 +13261,48153,53 +13262,118900,10752 +13263,455661,10749 +13264,25738,80 +13265,26223,53 +13266,45489,53 +13267,381737,53 +13268,69310,28 +13269,124581,28 +13270,136368,12 +13271,59387,16 +13272,17401,99 +13273,258363,53 +13274,259183,9648 +13275,13486,12 +13276,129533,10751 +13277,13279,53 +13278,44751,80 +13279,22404,10752 +13280,246299,18 +13281,13855,80 +13282,88863,18 +13283,10005,12 +13284,178446,36 +13285,56744,10751 +13286,402446,18 +13287,20342,53 +13288,43364,18 +13289,86236,18 +13290,24589,16 +13291,393939,14 +13292,99229,18 +13293,47758,10749 +13294,10066,27 +13295,49521,12 +13296,10299,9648 +13297,310135,878 +13298,12247,53 +13299,49833,35 +13300,84449,27 +13301,65055,27 +13302,345922,35 +13303,14752,10749 +13304,44658,35 +13305,179066,35 +13306,166610,16 +13307,85709,18 +13308,21769,28 +13309,212934,18 +13310,230428,18 +13311,393134,878 +13312,17566,14 +13313,79707,18 +13314,43022,18 +13315,24795,14 +13316,19898,53 +13317,85633,10402 +13318,61341,53 +13319,12636,27 +13320,86520,10769 +13321,61400,18 +13322,67021,10769 +13323,72611,35 +13324,13979,53 +13325,62855,28 +13326,168022,10749 +13327,81010,53 +13328,14349,18 +13329,16026,35 +13330,87514,12 +13331,52323,18 +13332,81708,35 +13333,417489,80 +13334,403450,35 +13335,118640,35 +13336,20495,10749 +13337,46494,80 +13338,85844,53 +13339,76681,27 +13340,37939,18 +13341,78281,9648 +13342,44000,27 +13343,32038,14 +13344,76341,28 +13345,13354,12 +13346,65839,10749 +13347,174188,35 +13348,18117,35 +13349,44022,37 +13350,131815,27 +13351,161179,18 +13352,40925,18 +13353,11547,27 +13354,401222,9648 +13355,43860,12 +13356,37203,99 +13357,206157,27 +13358,37050,35 +13359,117730,10769 +13360,90799,10749 +13361,70988,80 +13362,320005,18 +13363,42345,36 +13364,17317,28 +13365,49588,28 +13366,279606,18 +13367,195,10749 +13368,352890,10749 +13369,47638,80 +13370,139826,18 +13371,76785,18 +13372,374461,18 +13373,173847,10749 +13374,22752,14 +13375,138372,53 +13376,28510,28 +13377,49837,99 +13378,124075,99 +13379,354857,10770 +13380,13073,35 +13381,323435,14 +13382,437838,18 +13383,24624,28 +13384,12089,9648 +13385,67748,80 +13386,22020,53 +13387,73257,878 +13388,209271,18 +13389,166886,18 +13390,122677,27 +13391,9945,14 +13392,25450,35 +13393,264080,53 +13394,47980,10402 +13395,61266,18 +13396,120942,10749 +13397,4024,10749 +13398,1995,28 +13399,55448,18 +13400,459295,35 +13401,86850,99 +13402,283995,878 +13403,11172,35 +13404,263341,18 +13405,28712,80 +13406,21605,878 +13407,143876,80 +13408,93862,10769 +13409,49172,18 +13410,10714,18 +13411,83501,35 +13412,60046,35 +13413,53219,16 +13414,16486,53 +13415,73144,878 +13416,32284,35 +13417,390376,18 +13418,32284,18 +13419,132422,28 +13420,7972,53 +13421,22450,53 +13422,161187,36 +13423,22020,18 +13424,335869,35 +13425,12902,16 +13426,10918,10749 +13427,423377,53 +13428,430365,35 +13429,29542,35 +13430,180299,53 +13431,55236,18 +13432,168164,99 +13433,22076,878 +13434,184155,18 +13435,333352,18 +13436,431244,10749 +13437,47110,35 +13438,39833,28 +13439,32298,18 +13440,46278,18 +13441,14809,28 +13442,10379,35 +13443,76422,10751 +13444,43340,10749 +13445,165718,10749 +13446,321191,36 +13447,27653,10751 +13448,7454,28 +13449,99229,53 +13450,39345,35 +13451,300321,27 +13452,10948,16 +13453,84496,18 +13454,47956,18 +13455,11880,53 +13456,5965,35 +13457,57996,35 +13458,22682,35 +13459,38433,28 +13460,5516,53 +13461,122857,878 +13462,68987,18 +13463,32080,18 +13464,105210,878 +13465,16154,27 +13466,73430,35 +13467,44436,99 +13468,229221,10402 +13469,7220,28 +13470,10425,28 +13471,14977,12 +13472,159824,16 +13473,101838,80 +13474,47758,35 +13475,11216,10749 +13476,51890,35 +13477,80316,35 +13478,27276,10769 +13479,54845,53 +13480,41206,18 +13481,10714,12 +13482,13630,35 +13483,1904,18 +13484,184710,878 +13485,25551,18 +13486,13954,878 +13487,32233,53 +13488,187516,35 +13489,15092,53 +13490,11131,35 +13491,284053,12 +13492,11933,12 +13493,32286,28 +13494,19606,12 +13495,43771,10749 +13496,262713,99 +13497,303867,878 +13498,18763,53 +13499,57419,12 +13500,24886,9648 +13501,20934,10751 +13502,6077,53 +13503,43783,10749 +13504,25738,18 +13505,817,35 +13506,58518,35 +13507,44238,35 +13508,12903,35 +13509,111042,35 +13510,201,53 +13511,347096,14 +13512,17467,28 +13513,71266,18 +13514,32855,10749 +13515,27095,18 +13516,214093,18 +13517,9023,10751 +13518,137853,99 +13519,125759,10770 +13520,49712,28 +13521,52044,27 +13522,22606,28 +13523,25037,18 +13524,43252,14 +13525,79025,35 +13526,6973,80 +13527,13956,16 +13528,332662,53 +13529,9753,12 +13530,111744,10770 +13531,225244,35 +13532,88375,18 +13533,38099,28 +13534,28370,14 +13535,81604,14 +13536,72984,14 +13537,30366,10402 +13538,29694,12 +13539,29020,16 +13540,1394,10749 +13541,268875,35 +13542,182131,35 +13543,62488,14 +13544,30202,878 +13545,124523,18 +13546,51284,36 +13547,151068,36 +13548,64044,12 +13549,23853,35 +13550,29416,27 +13551,134215,18 +13552,121640,10752 +13553,267793,18 +13554,117531,10749 +13555,113178,10749 +13556,16296,878 +13557,32928,35 +13558,52847,10749 +13559,339362,35 +13560,47876,10749 +13561,11524,18 +13562,281590,35 +13563,45522,35 +13564,65612,18 +13565,51955,10749 +13566,42996,35 +13567,2034,53 +13568,126300,10769 +13569,236399,10770 +13570,49354,27 +13571,120172,878 +13572,17133,80 +13573,34193,53 +13574,90992,18 +13575,11458,18 +13576,10473,35 +13577,53387,35 +13578,22494,18 +13579,33364,18 +13580,362045,10752 +13581,62394,18 +13582,38850,53 +13583,85956,35 +13584,96872,16 +13585,939,18 +13586,13354,10751 +13587,5183,35 +13588,2757,35 +13589,123103,53 +13590,9945,53 +13591,10775,80 +13592,16390,16 +13593,199647,18 +13594,61563,28 +13595,28665,18 +13596,46387,18 +13597,405473,10749 +13598,64961,878 +13599,267935,14 +13600,279179,35 +13601,43114,37 +13602,9551,16 +13603,102913,18 +13604,16962,10751 +13605,337012,12 +13606,44022,28 +13607,33931,12 +13608,77067,35 +13609,332567,53 +13610,99909,18 +13611,43889,35 +13612,539,27 +13613,14830,14 +13614,80368,27 +13615,20361,37 +13616,38785,99 +13617,461088,10751 +13618,39519,10752 +13619,24752,28 +13620,352960,27 +13621,1818,53 +13622,333667,35 +13623,20715,16 +13624,329718,36 +13625,33172,27 +13626,56693,10769 +13627,107705,18 +13628,44463,18 +13629,28746,27 +13630,142115,10749 +13631,125736,18 +13632,374614,10749 +13633,304372,18 +13634,44680,12 +13635,108282,9648 +13636,99318,18 +13637,131861,18 +13638,43548,35 +13639,28682,18 +13640,44369,18 +13641,130957,37 +13642,314389,53 +13643,112885,35 +13644,28370,10749 +13645,19957,18 +13646,333360,99 +13647,277190,18 +13648,43157,35 +13649,33316,99 +13650,14761,28 +13651,222858,27 +13652,21627,80 +13653,32003,27 +13654,438597,878 +13655,50001,53 +13656,293189,99 +13657,251,9648 +13658,54825,10751 +13659,76349,36 +13660,2454,14 +13661,64414,18 +13662,12513,18 +13663,34650,53 +13664,209293,18 +13665,35304,18 +13666,57382,35 +13667,48585,28 +13668,44442,80 +13669,64362,35 +13670,314388,10749 +13671,77583,10749 +13672,30496,18 +13673,306464,10402 +13674,293625,18 +13675,244458,53 +13676,4375,12 +13677,11694,35 +13678,134201,35 +13679,372640,18 +13680,11397,35 +13681,97051,53 +13682,339403,80 +13683,381645,18 +13684,7549,18 +13685,401060,53 +13686,5638,10402 +13687,289159,18 +13688,99861,12 +13689,262357,18 +13690,33611,10752 +13691,73661,53 +13692,26736,14 +13693,57100,10769 +13694,24140,36 +13695,200447,18 +13696,74436,10749 +13697,32932,14 +13698,18405,27 +13699,274820,18 +13700,97643,35 +13701,49963,10749 +13702,45556,878 +13703,8869,53 +13704,10863,10749 +13705,60935,27 +13706,78572,35 +13707,162862,18 +13708,72086,80 +13709,78307,18 +13710,106821,10402 +13711,65612,35 +13712,30091,28 +13713,356191,53 +13714,36915,9648 +13715,1813,18 +13716,332872,10749 +13717,347465,35 +13718,47312,80 +13719,65367,27 +13720,10491,10749 +13721,366860,35 +13722,17640,10749 +13723,32559,18 +13724,201085,14 +13725,11248,28 +13726,106944,10749 +13727,30143,16 +13728,15838,10751 +13729,25353,10751 +13730,9451,35 +13731,14660,18 +13732,125520,18 +13733,95504,35 +13734,18912,53 +13735,238593,10749 +13736,49844,10749 +13737,52655,53 +13738,20650,18 +13739,36540,16 +13740,1497,10751 +13741,58467,18 +13742,201223,16 +13743,75761,27 +13744,11046,36 +13745,9846,80 +13746,14611,12 +13747,409696,10751 +13748,262338,53 +13749,421962,16 +13750,10900,9648 +13751,36983,28 +13752,102362,80 +13753,6171,27 +13754,73527,35 +13755,228968,28 +13756,43868,35 +13757,11712,28 +13758,26636,53 +13759,79372,18 +13760,460135,16 +13761,58664,14 +13762,14650,53 +13763,9885,53 +13764,32836,35 +13765,127913,18 +13766,157293,10402 +13767,14073,12 +13768,11113,10402 +13769,122019,14 +13770,18279,18 +13771,43200,18 +13772,24392,27 +13773,19286,27 +13774,88273,10749 +13775,195867,878 +13776,54769,35 +13777,345888,14 +13778,30966,99 +13779,524,18 +13780,70327,12 +13781,23719,35 +13782,238398,18 +13783,60855,10749 +13784,32049,28 +13785,14750,35 +13786,25646,53 +13787,8199,878 +13788,11236,10751 +13789,88176,18 +13790,22504,14 +13791,340187,53 +13792,45692,18 +13793,20126,9648 +13794,35564,10749 +13795,49106,10752 +13796,257344,28 +13797,378236,35 +13798,9778,35 +13799,250574,27 +13800,18548,35 +13801,43199,18 +13802,226001,10751 +13803,27629,35 +13804,93313,10749 +13805,46986,10749 +13806,227717,10749 +13807,370755,18 +13808,12528,53 +13809,20107,18 +13810,422550,35 +13811,33586,10749 +13812,19719,35 +13813,14353,35 +13814,90563,10749 +13815,256924,35 +13816,74035,28 +13817,61049,37 +13818,11120,12 +13819,359152,18 +13820,96985,35 +13821,426265,18 +13822,2861,35 +13823,11399,18 +13824,54384,10749 +13825,26687,18 +13826,340627,10749 +13827,264309,35 +13828,46813,35 +13829,64936,35 +13830,16486,35 +13831,256962,35 +13832,15089,99 +13833,18651,10749 +13834,183962,53 +13835,104041,18 +13836,93114,16 +13837,40034,53 +13838,18634,878 +13839,11333,35 +13840,14698,9648 +13841,56095,10769 +13842,55934,35 +13843,13350,10770 +13844,137528,27 +13845,166221,80 +13846,30265,18 +13847,92663,878 +13848,66447,35 +13849,317144,53 +13850,8897,10749 +13851,46513,9648 +13852,87148,10769 +13853,75203,28 +13854,44511,18 +13855,43880,18 +13856,82655,27 +13857,275060,18 +13858,89269,18 +13859,63825,18 +13860,92424,10749 +13861,56709,28 +13862,29067,10769 +13863,20640,35 +13864,488,10749 +13865,44641,10769 +13866,96985,28 +13867,11902,35 +13868,33642,12 +13869,14829,16 +13870,39833,10402 +13871,99318,10749 +13872,13654,16 +13873,64450,53 +13874,11428,27 +13875,436,80 +13876,42934,878 +13877,15310,10749 +13878,78734,28 +13879,60935,878 +13880,31277,10751 +13881,146,18 +13882,31127,28 +13883,437830,53 +13884,7088,10749 +13885,170234,18 +13886,183827,37 +13887,273481,28 +13888,18467,53 +13889,419192,99 +13890,294690,10752 +13891,30198,10769 +13892,10011,27 +13893,9389,878 +13894,3580,18 +13895,83342,18 +13896,15003,35 +13897,43752,10752 +13898,25784,18 +13899,19898,28 +13900,31417,18 +13901,303542,878 +13902,17258,35 +13903,52485,10751 +13904,6341,53 +13905,135204,35 +13906,9899,10402 +13907,45899,18 +13908,5289,80 +13909,814,27 +13910,54146,18 +13911,152861,18 +13912,84626,10751 +13913,48717,35 +13914,18044,27 +13915,29911,9648 +13916,256092,80 +13917,358982,27 +13918,79743,18 +13919,340187,27 +13920,175171,35 +13921,8341,18 +13922,2084,35 +13923,26510,10749 +13924,2105,10749 +13925,128856,28 +13926,64685,18 +13927,360592,10749 +13928,352372,53 +13929,315882,99 +13930,45752,10751 +13931,68179,16 +13932,117098,53 +13933,367882,28 +13934,335819,878 +13935,325385,14 +13936,193040,27 +13937,118948,9648 +13938,42532,878 +13939,143876,35 +13940,107973,10749 +13941,118059,18 +13942,13649,10751 +13943,74830,18 +13944,270654,878 +13945,37929,27 +13946,47002,10749 +13947,10274,53 +13948,345489,18 +13949,169869,37 +13950,34496,53 +13951,169881,12 +13952,321528,28 +13953,238589,53 +13954,70074,80 +13955,81654,35 +13956,205943,53 +13957,98339,53 +13958,79783,18 +13959,24792,10751 +13960,14979,80 +13961,63326,53 +13962,72663,10749 +13963,120942,10769 +13964,115929,10751 +13965,348544,36 +13966,41994,35 +13967,52021,27 +13968,949,28 +13969,2002,18 +13970,19010,878 +13971,32093,18 +13972,16092,53 +13973,11381,35 +13974,22784,10749 +13975,218784,35 +13976,214100,10402 +13977,29260,53 +13978,99351,18 +13979,76286,10402 +13980,1966,10752 +13981,254065,10770 +13982,333371,53 +13983,24746,28 +13984,182228,878 +13985,37910,18 +13986,20304,80 +13987,12273,28 +13988,105763,35 +13989,3051,27 +13990,3085,35 +13991,14823,18 +13992,9819,18 +13993,36597,18 +13994,378236,16 +13995,25736,80 +13996,54804,10769 +13997,77459,35 +13998,29739,35 +13999,302036,10749 +14000,3023,27 +14001,338767,18 +14002,216580,28 +14003,134806,18 +14004,327655,18 +14005,94055,18 +14006,280004,18 +14007,140472,9648 +14008,22744,10749 +14009,339526,10751 +14010,630,14 +14011,39347,10769 +14012,103972,10769 +14013,43832,28 +14014,302435,35 +14015,184710,27 +14016,5608,18 +14017,128612,878 +14018,97618,53 +14019,44890,18 +14020,7233,10751 +14021,14301,12 +14022,46026,35 +14023,109477,35 +14024,30352,28 +14025,228074,18 +14026,15003,28 +14027,332759,10770 +14028,15838,35 +14029,18290,35 +14030,1818,18 +14031,91548,18 +14032,231082,27 +14033,5123,18 +14034,79995,18 +14035,243568,53 +14036,32021,10770 +14037,17956,10749 +14038,65973,28 +14039,119844,53 +14040,38356,12 +14041,84577,27 +14042,37665,10749 +14043,413198,12 +14044,209032,36 +14045,264080,10770 +14046,25142,18 +14047,79833,10749 +14048,86700,16 +14049,17609,18 +14050,18047,10770 +14051,52696,35 +14052,27501,27 +14053,31074,18 +14054,3016,27 +14055,131737,28 +14056,44458,10402 +14057,120497,10749 +14058,19276,35 +14059,224243,27 +14060,277355,28 +14061,238255,35 +14062,57091,16 +14063,112655,10749 +14064,11328,80 +14065,290555,28 +14066,382591,35 +14067,55731,10751 +14068,13551,53 +14069,87516,9648 +14070,146380,27 +14071,985,878 +14072,4459,53 +14073,49308,18 +14074,18763,28 +14075,64428,14 +14076,353464,9648 +14077,11895,35 +14078,74154,18 +14079,45649,18 +14080,13005,35 +14081,415255,9648 +14082,12614,35 +14083,177474,18 +14084,44536,18 +14085,287483,35 +14086,70586,53 +14087,58928,18 +14088,39450,10749 +14089,220809,18 +14090,81188,16 +14091,108048,878 +14092,26963,10751 +14093,182131,16 +14094,21032,10751 +14095,52051,18 +14096,4279,36 +14097,180759,18 +14098,77877,10749 +14099,219572,53 +14100,139998,18 +14101,109477,28 +14102,48489,10749 +14103,15761,18 +14104,2994,80 +14105,120802,35 +14106,47489,53 +14107,340101,18 +14108,22606,12 +14109,22136,10769 +14110,196257,10770 +14111,20242,35 +14112,26153,14 +14113,94182,28 +14114,335498,18 +14115,38618,12 +14116,269650,16 +14117,47588,18 +14118,19754,80 +14119,43432,10769 +14120,14016,80 +14121,62397,35 +14122,1811,18 +14123,55208,10769 +14124,242,53 +14125,190955,53 +14126,27983,18 +14127,316154,10749 +14128,211,18 +14129,239845,10752 +14130,111480,80 +14131,47059,99 +14132,342917,10751 +14133,8899,18 +14134,34106,10749 +14135,14829,18 +14136,312831,27 +14137,120259,10749 +14138,33570,18 +14139,21837,12 +14140,64882,10749 +14141,62978,35 +14142,36236,35 +14143,29116,53 +14144,357529,37 +14145,142528,18 +14146,46883,18 +14147,19794,35 +14148,74878,35 +14149,714,12 +14150,31527,18 +14151,256740,53 +14152,117098,12 +14153,88288,35 +14154,55608,18 +14155,10909,80 +14156,22897,35 +14157,15797,28 +14158,33333,53 +14159,95874,35 +14160,28704,35 +14161,37206,10751 +14162,55735,10749 +14163,81996,28 +14164,115290,10749 +14165,79701,10751 +14166,258255,27 +14167,20196,878 +14168,9651,28 +14169,1579,12 +14170,259075,27 +14171,16987,18 +14172,22448,28 +14173,276846,28 +14174,118257,99 +14175,130917,18 +14176,10775,18 +14177,31364,18 +14178,339312,10752 +14179,100814,10752 +14180,193641,35 +14181,310001,18 +14182,18725,80 +14183,3520,18 +14184,42023,28 +14185,18447,28 +14186,43751,9648 +14187,60965,53 +14188,10362,18 +14189,217775,10769 +14190,150201,53 +14191,21041,28 +14192,38916,35 +14193,361380,12 +14194,31221,14 +14195,253251,10749 +14196,73772,18 +14197,41252,18 +14198,37517,18 +14199,39053,10749 +14200,1450,28 +14201,18690,35 +14202,325302,27 +14203,184351,10749 +14204,48281,10770 +14205,31264,14 +14206,5922,53 +14207,109979,35 +14208,37633,14 +14209,1574,80 +14210,60106,9648 +14211,38883,35 +14212,838,35 +14213,101783,28 +14214,21849,18 +14215,82703,12 +14216,85424,16 +14217,425591,53 +14218,251232,10749 +14219,71905,18 +14220,18317,35 +14221,60083,35 +14222,11329,18 +14223,92298,18 +14224,76642,35 +14225,68716,35 +14226,27501,9648 +14227,1907,18 +14228,56596,35 +14229,2977,18 +14230,15674,878 +14231,12855,35 +14232,16890,18 +14233,13965,18 +14234,20678,28 +14235,9539,53 +14236,50108,35 +14237,15849,27 +14238,9795,18 +14239,48180,14 +14240,1058,53 +14241,1416,18 +14242,217038,80 +14243,108634,10749 +14244,29286,9648 +14245,159514,18 +14246,272878,18 +14247,405388,35 +14248,27031,18 +14249,44741,35 +14250,186634,35 +14251,2107,14 +14252,41609,18 +14253,183218,35 +14254,157,53 +14255,54548,18 +14256,146315,53 +14257,149509,14 +14258,54523,18 +14259,26430,99 +14260,35337,18 +14261,9294,14 +14262,157305,10749 +14263,18722,10749 +14264,24023,53 +14265,40034,27 +14266,32868,35 +14267,1984,18 +14268,34205,12 +14269,396535,28 +14270,94525,27 +14271,34205,10751 +14272,104739,99 +14273,55208,10749 +14274,142946,12 +14275,14164,12 +14276,27973,80 +14277,43321,18 +14278,445840,35 +14279,26042,14 +14280,238,18 +14281,180252,18 +14282,179549,35 +14283,14467,35 +14284,10869,14 +14285,25037,10749 +14286,45752,16 +14287,10863,18 +14288,29424,9648 +14289,7229,80 +14290,116327,878 +14291,90465,10749 +14292,33558,18 +14293,99545,10751 +14294,117026,27 +14295,10837,10751 +14296,84285,10752 +14297,20968,80 +14298,33541,35 +14299,113194,12 +14300,15177,35 +14301,79596,14 +14302,90465,9648 +14303,459,10749 +14304,12506,18 +14305,20718,10749 +14306,131366,18 +14307,99861,878 +14308,16164,80 +14309,99242,18 +14310,310123,53 +14311,1251,28 +14312,428687,35 +14313,84735,35 +14314,316154,53 +14315,19103,18 +14316,14016,28 +14317,76176,27 +14318,54099,27 +14319,38065,27 +14320,49500,18 +14321,18597,35 +14322,20645,10769 +14323,25473,28 +14324,51736,18 +14325,5040,36 +14326,132601,10751 +14327,74822,18 +14328,90461,9648 +14329,42941,53 +14330,10063,27 +14331,16157,16 +14332,23107,80 +14333,99826,35 +14334,17339,10752 +14335,76010,99 +14336,18551,10749 +14337,74525,9648 +14338,1976,10749 +14339,50295,18 +14340,14400,28 +14341,104297,35 +14342,53857,18 +14343,10671,28 +14344,32790,10751 +14345,55208,28 +14346,80988,18 +14347,115626,10770 +14348,60160,12 +14349,31418,18 +14350,12903,53 +14351,380057,35 +14352,319092,99 +14353,285848,10749 +14354,13336,878 +14355,13336,28 +14356,352960,18 +14357,126889,53 +14358,12622,18 +14359,62768,18 +14360,103758,18 +14361,97365,10749 +14362,287,10749 +14363,121662,53 +14364,61168,35 +14365,25538,10749 +14366,92988,18 +14367,118015,18 +14368,70327,28 +14369,319910,53 +14370,6499,28 +14371,39127,18 +14372,161620,14 +14373,3115,28 +14374,11346,35 +14375,56329,53 +14376,37238,36 +14377,269306,18 +14378,1427,80 +14379,390587,53 +14380,259835,28 +14381,152736,18 +14382,317168,28 +14383,353979,53 +14384,20806,18 +14385,24341,27 +14386,24163,18 +14387,72203,16 +14388,121688,18 +14389,17691,35 +14390,21626,10749 +14391,143876,9648 +14392,87481,18 +14393,19545,878 +14394,102222,28 +14395,1924,28 +14396,35110,878 +14397,72278,18 +14398,261249,18 +14399,206563,53 +14400,54514,80 +14401,11972,35 +14402,24955,35 +14403,10829,53 +14404,27543,28 +14405,365544,16 +14406,39995,9648 +14407,228074,10749 +14408,40095,27 +14409,38794,35 +14410,16186,18 +14411,26826,35 +14412,86956,12 +14413,13241,35 +14414,9023,16 +14415,445,53 +14416,35405,35 +14417,8276,18 +14418,8844,12 +14419,115332,18 +14420,147815,28 +14421,53766,35 +14422,448763,10749 +14423,104343,18 +14424,14698,53 +14425,54156,18 +14426,201676,10751 +14427,82327,18 +14428,19325,28 +14429,16356,878 +14430,15084,18 +14431,18731,28 +14432,371645,35 +14433,39048,9648 +14434,99875,35 +14435,25551,53 +14436,5481,53 +14437,286532,35 +14438,293122,36 +14439,48967,10402 +14440,2160,18 +14441,82654,27 +14442,85956,10749 +14443,9677,27 +14444,43340,10402 +14445,71905,99 +14446,13305,10751 +14447,289232,10749 +14448,448538,14 +14449,38154,18 +14450,352164,35 +14451,24163,53 +14452,31428,10770 +14453,318184,35 +14454,24424,18 +14455,36246,53 +14456,171581,28 +14457,10466,35 +14458,315837,878 +14459,336669,18 +14460,116554,18 +14461,354667,27 +14462,44680,28 +14463,19082,10402 +14464,22259,12 +14465,38460,9648 +14466,45533,10749 +14467,99229,80 +14468,51367,35 +14469,17614,18 +14470,2102,878 +14471,82492,18 +14472,1272,878 +14473,14449,28 +14474,53576,35 +14475,319096,18 +14476,172386,12 +14477,24357,16 +14478,103432,80 +14479,348537,10749 +14480,19166,18 +14481,9405,28 +14482,64944,28 +14483,131475,53 +14484,36926,99 +14485,961,35 +14486,362151,18 +14487,14476,53 +14488,210910,878 +14489,76757,12 +14490,28668,9648 +14491,22682,10402 +14492,248543,18 +14493,242131,18 +14494,126754,27 +14495,23750,878 +14496,217038,10749 +14497,36375,80 +14498,54523,53 +14499,231216,35 +14500,51999,18 +14501,141,14 +14502,9010,53 +14503,339994,53 +14504,32635,28 +14505,64202,16 +14506,58416,35 +14507,124581,53 +14508,406431,99 +14509,131194,18 +14510,84030,10749 +14511,6687,53 +14512,3063,35 +14513,90351,18 +14514,62732,35 +14515,82806,35 +14516,347666,35 +14517,76543,10749 +14518,86828,878 +14519,345918,53 +14520,139170,18 +14521,428355,35 +14522,322266,53 +14523,387957,18 +14524,165095,14 +14525,255692,28 +14526,37254,27 +14527,30547,10751 +14528,2907,14 +14529,323679,9648 +14530,204800,18 +14531,25988,10749 +14532,96411,18 +14533,42191,18 +14534,433945,18 +14535,18776,18 +14536,29572,18 +14537,11636,53 +14538,173494,18 +14539,83389,18 +14540,24556,14 +14541,249703,18 +14542,377432,10749 +14543,83599,35 +14544,167882,10749 +14545,59861,35 +14546,23223,18 +14547,34506,35 +14548,32610,35 +14549,127098,35 +14550,1912,35 +14551,26558,18 +14552,4286,18 +14553,13486,14 +14554,20507,9648 +14555,30163,80 +14556,25500,80 +14557,27777,18 +14558,142746,10749 +14559,47596,10749 +14560,95140,53 +14561,72917,18 +14562,37481,37 +14563,56948,10749 +14564,69401,28 +14565,2861,10749 +14566,246415,37 +14567,65839,18 +14568,58547,35 +14569,15440,27 +14570,14554,37 +14571,78527,99 +14572,274991,18 +14573,99767,18 +14574,71066,28 +14575,302666,18 +14576,9785,53 +14577,453053,99 +14578,9030,18 +14579,48508,18 +14580,82650,10751 +14581,16999,18 +14582,182129,14 +14583,67174,878 +14584,15592,18 +14585,116437,35 +14586,310119,12 +14587,118283,35 +14588,255343,53 +14589,25695,10769 +14590,29043,18 +14591,2017,9648 +14592,25872,10749 +14593,173294,18 +14594,392832,35 +14595,7210,35 +14596,20880,14 +14597,31442,18 +14598,81215,10749 +14599,64310,10769 +14600,83435,18 +14601,28577,18 +14602,43923,35 +14603,120942,35 +14604,11450,36 +14605,293271,35 +14606,58832,10751 +14607,27925,18 +14608,124597,27 +14609,79048,18 +14610,70498,35 +14611,41996,18 +14612,74950,18 +14613,75138,36 +14614,146381,16 +14615,135713,99 +14616,10847,18 +14617,354287,10752 +14618,5482,80 +14619,15906,10749 +14620,72215,16 +14621,26264,35 +14622,39324,12 +14623,41209,18 +14624,17889,35 +14625,12575,53 +14626,80219,10770 +14627,443319,27 +14628,252853,53 +14629,145220,10751 +14630,103168,37 +14631,167556,27 +14632,43002,37 +14633,77283,10749 +14634,28131,18 +14635,10947,18 +14636,112044,53 +14637,321497,9648 +14638,206647,28 +14639,39194,35 +14640,16687,18 +14641,381737,10770 +14642,43976,18 +14643,385750,35 +14644,110502,10749 +14645,16873,12 +14646,207270,27 +14647,29362,10751 +14648,37103,12 +14649,16022,18 +14650,15067,37 +14651,4344,10769 +14652,450875,99 +14653,83384,18 +14654,37181,18 +14655,38164,9648 +14656,38775,53 +14657,10857,18 +14658,15156,53 +14659,299309,99 +14660,14977,28 +14661,92988,53 +14662,237171,10752 +14663,29054,28 +14664,36247,28 +14665,340616,18 +14666,398891,35 +14667,58878,18 +14668,257454,35 +14669,1452,12 +14670,26005,10749 +14671,46432,18 +14672,5279,53 +14673,10626,35 +14674,43752,10751 +14675,285840,35 +14676,95516,80 +14677,14613,10751 +14678,59935,18 +14679,164331,878 +14680,192210,28 +14681,378607,27 +14682,51426,18 +14683,52661,28 +14684,27561,80 +14685,371504,10770 +14686,2102,10769 +14687,20342,99 +14688,75101,35 +14689,29143,53 +14690,59349,35 +14691,287305,35 +14692,11589,12 +14693,60505,18 +14694,268920,28 +14695,96419,10749 +14696,70500,12 +14697,60551,10752 +14698,16436,53 +14699,4146,35 +14700,319096,10749 +14701,89247,16 +14702,81182,18 +14703,10590,28 +14704,54893,18 +14705,108312,18 +14706,84295,18 +14707,43026,9648 +14708,72204,10751 +14709,82520,18 +14710,43680,18 +14711,11134,80 +14712,307020,10769 +14713,96147,35 +14714,251421,53 +14715,12638,12 +14716,79836,35 +14717,9905,53 +14718,22213,80 +14719,334,18 +14720,65488,18 +14721,1938,18 +14722,14818,53 +14723,253533,14 +14724,8882,18 +14725,103396,18 +14726,11614,35 +14727,266314,18 +14728,41277,18 +14729,332788,10749 +14730,13685,18 +14731,43065,27 +14732,1452,14 +14733,70192,37 +14734,127380,10751 +14735,84971,35 +14736,38978,18 +14737,9056,28 +14738,22901,53 +14739,693,10749 +14740,384130,99 +14741,42640,37 +14742,49314,18 +14743,273106,10770 +14744,17465,18 +14745,19255,18 +14746,117790,18 +14747,26882,27 +14748,124676,18 +14749,198890,10402 +14750,86363,37 +14751,55638,35 +14752,11202,18 +14753,227094,27 +14754,199985,18 +14755,293660,28 +14756,38460,18 +14757,16094,35 +14758,44527,10769 +14759,147829,36 +14760,301368,35 +14761,17582,18 +14762,339327,10402 +14763,50327,35 +14764,88012,18 +14765,270851,35 +14766,84285,10769 +14767,346443,35 +14768,2924,9648 +14769,122857,9648 +14770,19582,35 +14771,33788,18 +14772,16687,10769 +14773,362180,27 +14774,64720,18 +14775,8464,878 +14776,28047,53 +14777,10783,12 +14778,28746,53 +14779,14147,27 +14780,47792,18 +14781,325712,10402 +14782,151431,10751 +14783,298158,35 +14784,26267,9648 +14785,2979,35 +14786,89921,10769 +14787,36751,16 +14788,23331,878 +14789,214129,18 +14790,356156,10749 +14791,35656,28 +14792,78339,80 +14793,308165,18 +14794,41611,53 +14795,26252,18 +14796,20096,14 +14797,229221,35 +14798,253533,10751 +14799,14703,10749 +14800,13390,80 +14801,36251,35 +14802,293670,27 +14803,59051,10749 +14804,91419,12 +14805,38000,10769 +14806,72465,18 +14807,35392,28 +14808,235092,80 +14809,23239,35 +14810,16307,53 +14811,124963,18 +14812,41559,18 +14813,71444,878 +14814,10849,10749 +14815,344170,99 +14816,101904,18 +14817,148622,10749 +14818,9366,80 +14819,56264,18 +14820,270851,27 +14821,11509,18 +14822,33436,12 +14823,28663,18 +14824,32694,35 +14825,85673,28 +14826,73043,18 +14827,32588,10751 +14828,19150,35 +14829,28032,14 +14830,64725,27 +14831,24258,18 +14832,443053,80 +14833,114499,99 +14834,296225,35 +14835,27035,28 +14836,293452,18 +14837,19371,10751 +14838,10208,878 +14839,19995,28 +14840,32168,53 +14841,377516,35 +14842,30385,27 +14843,253251,35 +14844,49258,18 +14845,60420,18 +14846,425591,80 +14847,179549,80 +14848,65131,18 +14849,10390,10749 +14850,14830,10751 +14851,254007,27 +14852,19142,27 +14853,78464,53 +14854,108177,10770 +14855,360603,10770 +14856,75532,18 +14857,39331,35 +14858,26612,10751 +14859,90414,35 +14860,21712,12 +14861,870,18 +14862,24822,80 +14863,111839,10770 +14864,41762,18 +14865,79521,10749 +14866,303856,27 +14867,9703,10752 +14868,57781,35 +14869,21118,10749 +14870,96458,16 +14871,72875,18 +14872,61532,53 +14873,1986,18 +14874,43692,10749 +14875,29151,10749 +14876,51370,99 +14877,25626,18 +14878,18072,18 +14879,51362,14 +14880,71885,10751 +14881,239563,35 +14882,130948,28 +14883,230179,53 +14884,17133,18 +14885,17687,18 +14886,379,53 +14887,43209,36 +14888,9836,16 +14889,157351,53 +14890,37686,878 +14891,616,10752 +14892,162056,35 +14893,63333,53 +14894,15060,35 +14895,100910,18 +14896,217775,18 +14897,151043,18 +14898,53211,35 +14899,120109,35 +14900,127521,28 +14901,80350,53 +14902,91571,18 +14903,224233,35 +14904,22584,10752 +14905,28026,18 +14906,31372,18 +14907,21052,80 +14908,409082,35 +14909,351862,99 +14910,43504,18 +14911,10396,10749 +14912,10336,14 +14913,42683,18 +14914,52859,28 +14915,83444,18 +14916,36817,35 +14917,27276,14 +14918,161073,18 +14919,10803,10749 +14920,67276,9648 +14921,321039,53 +14922,92384,18 +14923,31263,9648 +14924,22901,18 +14925,29128,9648 +14926,9659,28 +14927,62116,18 +14928,14694,18 +14929,100528,18 +14930,58995,28 +14931,80324,10749 +14932,44888,28 +14933,94674,9648 +14934,18978,10402 +14935,24254,35 +14936,10529,878 +14937,32168,28 +14938,182097,18 +14939,321160,35 +14940,49642,28 +14941,9889,35 +14942,387886,10751 +14943,13285,16 +14944,69765,18 +14945,382873,18 +14946,245175,35 +14947,82495,28 +14948,20439,53 +14949,79466,12 +14950,22267,37 +14951,91691,18 +14952,370264,18 +14953,438597,28 +14954,365222,18 +14955,8948,18 +14956,340101,10749 +14957,80389,28 +14958,43369,18 +14959,27937,35 +14960,25087,28 +14961,37100,10749 +14962,359025,53 +14963,42472,37 +14964,10714,10751 +14965,244971,36 +14966,64129,28 +14967,9389,28 +14968,16147,18 +14969,72094,9648 +14970,11517,28 +14971,78231,10770 +14972,72962,16 +14973,23668,80 +14974,128598,27 +14975,18056,53 +14976,43457,10749 +14977,3870,36 +14978,162006,18 +14979,365942,12 +14980,371181,9648 +14981,107146,28 +14982,12599,878 +14983,106155,28 +14984,23155,16 +14985,222388,18 +14986,696,18 +14987,53472,53 +14988,324440,35 +14989,77583,35 +14990,43711,18 +14991,94251,35 +14992,30817,28 +14993,309024,18 +14994,94009,18 +14995,77922,18 +14996,26264,10751 +14997,4291,35 +14998,435737,14 +14999,50028,18 +15000,242683,18 +15001,384594,27 +15002,8211,10769 +15003,286971,10749 +15004,86297,35 +15005,366548,35 +15006,48199,27 +15007,145247,35 +15008,10145,9648 +15009,96935,18 +15010,42515,10751 +15011,314389,80 +15012,31161,80 +15013,348537,35 +15014,3484,27 +15015,49007,18 +15016,12230,16 +15017,24963,27 +15018,36220,35 +15019,310888,18 +15020,340176,27 +15021,26849,9648 +15022,25694,10751 +15023,160160,80 +15024,346838,12 +15025,64437,18 +15026,21619,28 +15027,11446,18 +15028,41283,80 +15029,9828,80 +15030,98203,18 +15031,119926,10749 +15032,82622,35 +15033,38922,35 +15034,36674,10749 +15035,17590,10749 +15036,75576,18 +15037,109251,18 +15038,101363,35 +15039,23966,10749 +15040,1914,35 +15041,53404,80 +15042,293380,10751 +15043,59962,35 +15044,38433,80 +15045,49009,36 +15046,257444,18 +15047,73697,35 +15048,294652,53 +15049,287636,18 +15050,137200,16 +15051,115626,35 +15052,834,14 +15053,196359,18 +15054,107250,10770 +15055,124202,35 +15056,81684,14 +15057,40218,27 +15058,169009,18 +15059,296524,18 +15060,131781,35 +15061,268893,16 +15062,262522,9648 +15063,336666,12 +15064,204384,18 +15065,81895,12 +15066,255528,12 +15067,270646,18 +15068,14823,80 +15069,79506,35 +15070,26880,18 +15071,36960,9648 +15072,7514,80 +15073,32166,9648 +15074,21581,99 +15075,378018,27 +15076,42418,12 +15077,229254,18 +15078,125513,35 +15079,52850,36 +15080,157420,18 +15081,10299,80 +15082,43635,10749 +15083,9918,18 +15084,52654,18 +15085,139571,18 +15086,396987,35 +15087,16464,99 +15088,217948,18 +15089,180576,18 +15090,357390,53 +15091,15613,9648 +15092,168217,35 +15093,47876,18 +15094,17015,10749 +15095,43250,28 +15096,37731,35 +15097,81232,35 +15098,24469,18 +15099,38437,12 +15100,26558,27 +15101,10550,53 +15102,293516,35 +15103,401222,12 +15104,3028,35 +15105,81312,10769 +15106,278316,53 +15107,98364,35 +15108,13655,10402 +15109,39213,35 +15110,47003,9648 +15111,660,12 +15112,6591,53 +15113,56095,53 +15114,134238,10749 +15115,1416,53 +15116,1450,12 +15117,9059,27 +15118,37305,10752 +15119,289723,9648 +15120,34193,27 +15121,39450,35 +15122,33091,10751 +15123,76,18 +15124,33009,35 +15125,28297,80 +15126,52049,18 +15127,32904,53 +15128,23692,27 +15129,91548,28 +15130,3989,16 +15131,158990,80 +15132,61686,10749 +15133,91261,10749 +15134,266425,80 +15135,140,18 +15136,104697,14 +15137,96951,14 +15138,52744,18 +15139,19203,18 +15140,32099,10402 +15141,204040,18 +15142,57811,18 +15143,5257,18 +15144,1498,10751 +15145,142478,99 +15146,200,28 +15147,308,18 +15148,336050,10752 +15149,57215,35 +15150,45522,10752 +15151,41166,18 +15152,27814,27 +15153,48202,35 +15154,26841,35 +15155,128396,16 +15156,62046,35 +15157,121998,80 +15158,20536,18 +15159,31412,10749 +15160,229056,14 +15161,27549,28 +15162,315465,14 +15163,47535,53 +15164,73943,53 +15165,12796,10749 +15166,11887,10402 +15167,11540,28 +15168,167012,10749 +15169,39495,10749 +15170,297702,53 +15171,42062,10749 +15172,9289,36 +15173,28044,18 +15174,13676,10751 +15175,118957,53 +15176,294016,18 +15177,168496,10752 +15178,58159,16 +15179,282919,18 +15180,6038,28 +15181,46915,18 +15182,24331,27 +15183,165567,53 +15184,194853,18 +15185,177203,18 +15186,153781,18 +15187,413782,99 +15188,201765,35 +15189,52736,35 +15190,24559,14 +15191,8776,35 +15192,28115,28 +15193,40029,27 +15194,29805,28 +15195,271234,28 +15196,12584,18 +15197,239619,35 +15198,119592,27 +15199,238398,35 +15200,27409,10769 +15201,3513,53 +15202,77882,18 +15203,63612,18 +15204,1568,53 +15205,24081,18 +15206,133448,18 +15207,421365,53 +15208,9968,80 +15209,139244,18 +15210,357390,16 +15211,18897,9648 +15212,57209,35 +15213,302666,28 +15214,89242,10749 +15215,12575,35 +15216,63081,53 +15217,29787,27 +15218,90616,28 +15219,287281,14 +15220,24273,35 +15221,121636,10749 +15222,252171,27 +15223,25645,28 +15224,208869,18 +15225,122081,18 +15226,49717,35 +15227,11980,27 +15228,29048,10752 +15229,30155,27 +15230,139589,35 +15231,188161,35 +15232,98864,18 +15233,361183,10749 +15234,351065,16 +15235,2033,10749 +15236,48209,18 +15237,10201,35 +15238,391995,99 +15239,139244,53 +15240,447758,35 +15241,1294,18 +15242,9470,14 +15243,63988,28 +15244,32395,18 +15245,348320,53 +15246,28805,80 +15247,9325,10751 +15248,27052,18 +15249,45384,878 +15250,132759,35 +15251,63764,10749 +15252,251,10749 +15253,10754,18 +15254,71689,16 +15255,19509,10749 +15256,37053,36 +15257,63665,18 +15258,10775,53 +15259,71885,18 +15260,439998,35 +15261,46169,18 +15262,54139,18 +15263,103590,18 +15264,921,10749 +15265,13852,35 +15266,9982,35 +15267,50153,53 +15268,315855,18 +15269,37917,35 +15270,21449,28 +15271,20123,35 +15272,39217,10749 +15273,18691,35 +15274,188826,36 +15275,13640,16 +15276,9843,28 +15277,94176,37 +15278,98302,35 +15279,182499,53 +15280,12593,16 +15281,45384,28 +15282,260947,53 +15283,15661,35 +15284,209401,10749 +15285,402672,18 +15286,6183,10749 +15287,31742,18 +15288,4641,10751 +15289,92391,18 +15290,73532,18 +15291,2994,35 +15292,48778,35 +15293,133458,18 +15294,126832,10770 +15295,364111,14 +15296,9904,10751 +15297,217412,10749 +15298,61644,35 +15299,229304,18 +15300,219335,14 +15301,96107,18 +15302,117550,53 +15303,45120,35 +15304,13505,35 +15305,26752,18 +15306,11456,80 +15307,18939,27 +15308,217923,12 +15309,106848,18 +15310,29568,10769 +15311,28805,10769 +15312,267955,99 +15313,365709,80 +15314,285400,10749 +15315,20034,28 +15316,236324,9648 +15317,60125,10749 +15318,14550,35 +15319,288977,18 +15320,156180,18 +15321,152532,36 +15322,319986,18 +15323,70807,10749 +15324,43231,18 +15325,9289,18 +15326,47504,18 +15327,93858,18 +15328,201085,27 +15329,263260,10751 +15330,256311,53 +15331,50669,18 +15332,52251,18 +15333,408620,28 +15334,37923,53 +15335,185057,35 +15336,8776,10752 +15337,53419,10749 +15338,43499,37 +15339,50028,53 +15340,72655,28 +15341,17606,10749 +15342,327982,18 +15343,387558,18 +15344,20583,10749 +15345,15810,18 +15346,38654,53 +15347,280583,18 +15348,60665,53 +15349,44746,10770 +15350,317723,35 +15351,300155,53 +15352,147773,18 +15353,174645,53 +15354,39998,10749 +15355,10652,10752 +15356,256930,36 +15357,11008,12 +15358,92341,10749 +15359,127585,14 +15360,49577,10749 +15361,262528,18 +15362,18613,18 +15363,83461,18 +15364,343693,10751 +15365,23178,10770 +15366,65599,18 +15367,78174,10769 +15368,73043,10749 +15369,17770,10749 +15370,212063,99 +15371,9690,10402 +15372,244971,18 +15373,145668,53 +15374,257831,12 +15375,64784,12 +15376,20916,53 +15377,119213,18 +15378,68750,53 +15379,383567,35 +15380,13805,35 +15381,293092,18 +15382,10044,28 +15383,82999,27 +15384,125510,12 +15385,3870,18 +15386,122,14 +15387,11643,12 +15388,31713,18 +15389,239513,53 +15390,24348,18 +15391,16232,18 +15392,42739,18 +15393,20304,28 +15394,9441,10749 +15395,4978,18 +15396,30022,9648 +15397,6636,18 +15398,3087,18 +15399,9028,18 +15400,34216,10769 +15401,26826,18 +15402,409,18 +15403,97024,35 +15404,10849,35 +15405,15016,16 +15406,98536,10749 +15407,33556,53 +15408,409447,35 +15409,19665,99 +15410,109886,18 +15411,38433,9648 +15412,121655,10769 +15413,16307,10402 +15414,61203,18 +15415,59189,53 +15416,277968,35 +15417,332872,18 +15418,2017,80 +15419,224243,9648 +15420,10596,53 +15421,14819,18 +15422,14882,18 +15423,65496,18 +15424,357851,9648 +15425,257081,12 +15426,42122,18 +15427,24831,27 +15428,46432,10769 +15429,244117,18 +15430,80281,28 +15431,124501,9648 +15432,26736,10751 +15433,40258,27 +15434,57100,28 +15435,24486,27 +15436,312100,10770 +15437,237672,28 +15438,10518,53 +15439,10796,53 +15440,39545,14 +15441,166666,80 +15442,123969,27 +15443,289190,18 +15444,19545,12 +15445,235208,18 +15446,40217,878 +15447,43195,10749 +15448,44027,18 +15449,11330,80 +15450,407887,18 +15451,140222,10752 +15452,47745,80 +15453,86970,28 +15454,49398,35 +15455,94204,9648 +15456,2640,35 +15457,5421,27 +15458,52556,10749 +15459,37291,18 +15460,110830,28 +15461,18978,12 +15462,29129,27 +15463,87296,80 +15464,65891,53 +15465,13391,878 +15466,67328,37 +15467,10897,10751 +15468,3937,35 +15469,82655,53 +15470,53217,16 +15471,262975,16 +15472,10829,878 +15473,63858,18 +15474,2085,53 +15475,226693,18 +15476,179398,10749 +15477,86556,18 +15478,2734,18 +15479,17963,35 +15480,22396,37 +15481,18214,28 +15482,43155,18 +15483,910,9648 +15484,31048,10749 +15485,315837,28 +15486,25501,80 +15487,98566,878 +15488,13610,10751 +15489,10671,18 +15490,86497,35 +15491,36929,35 +15492,60086,53 +15493,16873,878 +15494,36299,35 +15495,29067,18 +15496,330333,10749 +15497,277778,878 +15498,133953,878 +15499,106739,99 +15500,294483,53 +15501,488,10752 +15502,54662,18 +15503,120077,10751 +15504,348025,18 +15505,295058,18 +15506,74689,18 +15507,134308,9648 +15508,29938,27 +15509,209556,18 +15510,179154,18 +15511,301566,35 +15512,284250,18 +15513,31428,53 +15514,172475,12 +15515,416635,35 +15516,79599,10751 +15517,83114,36 +15518,313074,28 +15519,154,28 +15520,50166,37 +15521,45133,18 +15522,86825,27 +15523,47794,9648 +15524,32158,10749 +15525,3870,10749 +15526,36432,99 +15527,24795,10751 +15528,7459,878 +15529,50725,18 +15530,1637,28 +15531,18898,35 +15532,58905,12 +15533,35392,18 +15534,381073,18 +15535,11472,35 +15536,91259,10769 +15537,9914,53 +15538,10070,27 +15539,5590,14 +15540,380058,35 +15541,16374,10752 +15542,60965,9648 +15543,10333,10749 +15544,7972,80 +15545,196027,9648 +15546,42402,28 +15547,99324,18 +15548,214641,14 +15549,54093,18 +15550,19606,18 +15551,409447,10402 +15552,320181,878 +15553,357106,14 +15554,37100,35 +15555,103713,99 +15556,39992,27 +15557,17287,35 +15558,5482,53 +15559,19050,35 +15560,21525,10402 +15561,159638,35 +15562,202215,35 +15563,332936,53 +15564,29572,10402 +15565,77825,35 +15566,260310,12 +15567,578,12 +15568,39127,53 +15569,188161,37 +15570,108222,10749 +15571,78705,10769 +15572,15356,27 +15573,8965,28 +15574,365222,28 +15575,42499,27 +15576,43976,10769 +15577,365544,10752 +15578,198795,18 +15579,356191,18 +15580,71700,18 +15581,17240,27 +15582,447236,12 +15583,4279,35 +15584,19629,35 +15585,284053,878 +15586,224944,27 +15587,240881,53 +15588,262454,18 +15589,17483,28 +15590,79382,18 +15591,7299,878 +15592,71670,27 +15593,65771,18 +15594,43388,28 +15595,299828,10749 +15596,43809,10402 +15597,24675,878 +15598,20110,99 +15599,91076,18 +15600,26469,35 +15601,32093,37 +15602,47980,18 +15603,215373,53 +15604,18711,18 +15605,44626,10749 +15606,24926,16 +15607,142746,10402 +15608,297466,18 +15609,176867,37 +15610,33481,80 +15611,88018,16 +15612,97618,28 +15613,10208,35 +15614,11983,28 +15615,53851,10749 +15616,3554,10749 +15617,114333,18 +15618,146,12 +15619,10409,18 +15620,42123,36 +15621,46436,80 +15622,169760,99 +15623,105077,28 +15624,10869,10749 +15625,16092,27 +15626,183039,10749 +15627,9841,53 +15628,1904,36 +15629,742,18 +15630,58903,878 +15631,27622,53 +15632,45019,18 +15633,10937,35 +15634,245158,99 +15635,34935,35 +15636,92389,18 +15637,50079,18 +15638,157293,18 +15639,165095,35 +15640,47462,35 +15641,365065,18 +15642,18899,28 +15643,38749,18 +15644,17111,14 +15645,34019,18 +15646,40120,35 +15647,253235,18 +15648,431244,18 +15649,179603,18 +15650,80389,53 +15651,11933,35 +15652,62967,35 +15653,10603,10749 +15654,98250,28 +15655,48287,18 +15656,280674,99 +15657,4413,18 +15658,47211,18 +15659,19823,18 +15660,12079,35 +15661,72251,10770 +15662,54243,28 +15663,110980,10749 +15664,53256,18 +15665,31377,28 +15666,52034,878 +15667,127144,27 +15668,308639,35 +15669,16174,14 +15670,19715,14 +15671,369054,10751 +15672,90231,27 +15673,41035,27 +15674,8965,878 +15675,36658,53 +15676,10550,28 +15677,75778,10749 +15678,25468,35 +15679,29259,18 +15680,4140,99 +15681,162006,28 +15682,364324,12 +15683,47493,18 +15684,236808,53 +15685,9483,35 +15686,42532,27 +15687,229134,36 +15688,43809,10749 +15689,140887,12 +15690,39219,35 +15691,294272,12 +15692,110598,18 +15693,46930,18 +15694,257574,18 +15695,47900,35 +15696,24810,9648 +15697,373514,10770 +15698,20644,35 +15699,41505,27 +15700,43967,35 +15701,169881,36 +15702,201,12 +15703,10071,35 +15704,10077,12 +15705,315664,35 +15706,201581,18 +15707,5965,28 +15708,125673,37 +15709,64627,878 +15710,42683,80 +15711,257345,53 +15712,117534,35 +15713,94663,18 +15714,24440,99 +15715,47065,12 +15716,37939,10769 +15717,354979,53 +15718,390880,35 +15719,52454,28 +15720,377362,27 +15721,234155,99 +15722,1271,28 +15723,42168,18 +15724,12279,878 +15725,43571,10749 +15726,107682,10749 +15727,91459,99 +15728,16077,53 +15729,345069,35 +15730,21208,53 +15731,175822,80 +15732,1963,10749 +15733,43880,12 +15734,1586,9648 +15735,53931,18 +15736,5123,10402 +15737,98349,18 +15738,50181,18 +15739,78177,10749 +15740,21905,10769 +15741,31665,37 +15742,103073,18 +15743,15050,53 +15744,17744,10752 +15745,280477,35 +15746,37817,35 +15747,85435,35 +15748,142061,28 +15749,323674,18 +15750,82911,18 +15751,508,10749 +15752,18935,35 +15753,41497,28 +15754,36229,18 +15755,66756,10769 +15756,397365,53 +15757,18763,18 +15758,29151,35 +15759,42706,12 +15760,33228,9648 +15761,10610,14 +15762,4982,80 +15763,11645,28 +15764,4923,53 +15765,57412,10749 +15766,241927,27 +15767,338676,18 +15768,85052,18 +15769,95140,28 +15770,18290,53 +15771,80592,37 +15772,54988,99 +15773,119172,878 +15774,66894,35 +15775,12453,35 +15776,63441,28 +15777,277713,18 +15778,20242,9648 +15779,36264,10752 +15780,86768,53 +15781,13526,80 +15782,22279,18 +15783,77165,28 +15784,85735,35 +15785,24634,18 +15786,319924,35 +15787,132332,18 +15788,38772,18 +15789,27777,80 +15790,31150,27 +15791,76494,18 +15792,39308,12 +15793,11377,9648 +15794,57278,10769 +15795,39101,16 +15796,51619,10752 +15797,26264,12 +15798,443319,9648 +15799,45807,10749 +15800,330459,878 +15801,69775,18 +15802,112044,18 +15803,47914,27 +15804,9953,18 +15805,10491,9648 +15806,139159,10749 +15807,96133,37 +15808,38770,35 +15809,40826,18 +15810,287903,35 +15811,105384,80 +15812,417936,35 +15813,140231,18 +15814,29204,10402 +15815,410774,10751 +15816,30449,27 +15817,1859,35 +15818,41121,10769 +15819,10299,27 +15820,26796,10402 +15821,27042,878 +15822,41522,28 +15823,44680,35 +15824,34944,36 +15825,28736,10751 +15826,14357,18 +15827,28433,18 +15828,16432,28 +15829,19042,16 +15830,158015,27 +15831,47863,10402 +15832,32526,80 +15833,182129,10749 +15834,28656,27 +15835,86252,53 +15836,376252,35 +15837,59962,10749 +15838,10837,12 +15839,9659,878 +15840,2300,18 +15841,47065,14 +15842,24986,35 +15843,22314,53 +15844,64328,10402 +15845,407887,10752 +15846,38625,10752 +15847,4938,37 +15848,5206,35 +15849,302802,18 +15850,49365,27 +15851,15734,10402 +15852,52183,10749 +15853,9870,35 +15854,285733,16 +15855,49018,53 +15856,30996,9648 +15857,209263,10749 +15858,162877,18 +15859,1369,12 +15860,935,18 +15861,47171,18 +15862,384737,80 +15863,57100,53 +15864,80320,37 +15865,138535,99 +15866,320181,18 +15867,77950,10751 +15868,115712,18 +15869,83785,18 +15870,50032,18 +15871,14400,12 +15872,55846,53 +15873,817,878 +15874,126250,10749 +15875,33134,53 +15876,177043,18 +15877,76097,18 +15878,214756,35 +15879,10801,35 +15880,78464,10769 +15881,38027,36 +15882,388243,27 +15883,157,28 +15884,11521,18 +15885,210052,18 +15886,134201,28 +15887,24883,10751 +15888,206183,53 +15889,222220,18 +15890,28820,28 +15891,35543,9648 +15892,28433,80 +15893,173443,36 +15894,29787,53 +15895,31922,28 +15896,336271,27 +15897,11422,28 +15898,395982,27 +15899,54559,35 +15900,29116,18 +15901,140276,10752 +15902,56800,80 +15903,430156,99 +15904,77137,35 +15905,428398,12 +15906,2757,80 +15907,88953,27 +15908,99579,36 +15909,29510,35 +15910,37609,35 +15911,43833,53 +15912,45990,35 +15913,38326,18 +15914,12561,28 +15915,65674,28 +15916,4551,80 +15917,99767,10749 +15918,14522,28 +15919,463800,10752 +15920,94204,53 +15921,134480,35 +15922,169794,18 +15923,89492,35 +15924,279608,14 +15925,43915,28 +15926,159469,10749 +15927,12638,53 +15928,96936,18 +15929,88953,9648 +15930,45527,27 +15931,58013,35 +15932,23452,16 +15933,635,27 +15934,96147,10769 +15935,233208,53 +15936,11983,10749 +15937,210408,10749 +15938,10865,10751 +15939,34838,10749 +15940,238781,18 +15941,63736,878 +15942,10003,878 +15943,82279,10751 +15944,35381,28 +15945,15765,10402 +15946,347979,35 +15947,75578,10751 +15948,21052,18 +15949,39875,27 +15950,300187,35 +15951,18133,18 +15952,169009,10751 +15953,120872,18 +15954,9543,14 +15955,17577,878 +15956,356483,53 +15957,365065,878 +15958,12236,28 +15959,279096,35 +15960,52360,36 +15961,60173,53 +15962,168496,10749 +15963,12169,18 +15964,64454,878 +15965,147829,37 +15966,39414,18 +15967,13493,10751 +15968,295273,18 +15969,353595,12 +15970,34280,35 +15971,57749,9648 +15972,65066,35 +15973,10134,878 +15974,25973,10749 +15975,15584,80 +15976,16661,35 +15977,320589,10402 +15978,33784,27 +15979,352094,80 +15980,148284,35 +15981,186268,35 +15982,16460,35 +15983,84104,27 +15984,48250,35 +15985,163376,35 +15986,8414,18 +15987,226672,28 +15988,29717,10751 +15989,171213,18 +15990,46184,80 +15991,55604,18 +15992,30361,53 +15993,15489,10751 +15994,68637,35 +15995,65211,53 +15996,12135,27 +15997,272892,10749 +15998,61578,10749 +15999,10119,35 +16000,46697,99 +16001,400,18 +16002,85429,10769 +16003,133575,18 +16004,15260,99 +16005,9087,10749 +16006,83599,10749 +16007,20242,28 +16008,91259,18 +16009,53648,18 +16010,271185,9648 +16011,290714,53 +16012,70815,35 +16013,28120,53 +16014,236737,35 +16015,54898,10749 +16016,266044,18 +16017,220154,16 +16018,13934,10751 +16019,85023,27 +16020,347328,35 +16021,250535,35 +16022,315872,18 +16023,43754,53 +16024,23515,27 +16025,42542,878 +16026,1640,18 +16027,47748,99 +16028,15850,18 +16029,120129,18 +16030,44415,18 +16031,22093,10769 +16032,50512,10749 +16033,45665,10751 +16034,1589,10402 +16035,311324,14 +16036,27681,14 +16037,59408,18 +16038,71114,10769 +16039,9385,10751 +16040,406992,35 +16041,53064,16 +16042,14430,18 +16043,190341,10749 +16044,56937,27 +16045,52914,35 +16046,24589,10751 +16047,217057,16 +16048,267506,28 +16049,43113,27 +16050,420481,10749 +16051,317144,18 +16052,102155,10752 +16053,294690,18 +16054,59349,18 +16055,116318,14 +16056,118943,35 +16057,99846,28 +16058,84305,35 +16059,37108,14 +16060,47906,18 +16061,38274,35 +16062,73241,99 +16063,37454,80 +16064,403867,10749 +16065,172457,27 +16066,438643,10751 +16067,209921,35 +16068,346106,35 +16069,325428,18 +16070,57100,27 +16071,82626,18 +16072,17744,53 +16073,91628,35 +16074,373977,53 +16075,20357,53 +16076,61341,28 +16077,61168,10749 +16078,24154,16 +16079,26891,9648 +16080,37936,53 +16081,10874,35 +16082,12182,10749 +16083,305455,35 +16084,47410,12 +16085,20381,53 +16086,82,53 +16087,27432,18 +16088,352036,35 +16089,357441,35 +16090,54318,14 +16091,329805,18 +16092,20645,35 +16093,26119,28 +16094,70586,80 +16095,102256,14 +16096,46773,35 +16097,22504,16 +16098,61984,878 +16099,47647,10769 +16100,47942,18 +16101,29787,18 +16102,43880,10749 +16103,60678,18 +16104,1498,28 +16105,174751,37 +16106,20421,14 +16107,237,10749 +16108,17495,18 +16109,109472,53 +16110,28261,27 +16111,84337,10749 +16112,18971,18 +16113,425961,18 +16114,50079,10749 +16115,8588,36 +16116,43846,35 +16117,37813,27 +16118,313074,12 +16119,29352,14 +16120,418437,18 +16121,166262,35 +16122,181533,10751 +16123,6977,18 +16124,16005,36 +16125,73247,10751 +16126,82622,10749 +16127,11704,10751 +16128,10204,12 +16129,321528,16 +16130,55638,10751 +16131,245268,18 +16132,345069,53 +16133,35564,35 +16134,65280,10749 +16135,72655,80 +16136,177358,35 +16137,111017,18 +16138,167583,80 +16139,381255,18 +16140,21282,10751 +16141,25716,53 +16142,42309,27 +16143,251555,35 +16144,3682,18 +16145,238749,35 +16146,55420,878 +16147,144183,10770 +16148,68193,53 +16149,104528,27 +16150,43778,35 +16151,12122,878 +16152,43083,35 +16153,287,35 +16154,68634,18 +16155,367492,10749 +16156,297762,28 +16157,37211,16 +16158,229594,53 +16159,10145,878 +16160,1995,14 +16161,111479,10402 +16162,411221,10751 +16163,79113,35 +16164,15144,35 +16165,69352,18 +16166,11475,35 +16167,9396,35 +16168,41497,10752 +16169,9297,16 +16170,13681,18 +16171,5155,18 +16172,16314,28 +16173,60307,35 +16174,355890,18 +16175,122271,35 +16176,333385,28 +16177,45533,18 +16178,285733,10751 +16179,2565,878 +16180,30366,12 +16181,43504,10752 +16182,13383,18 +16183,52109,35 +16184,13550,27 +16185,73969,35 +16186,27145,35 +16187,44470,35 +16188,43984,10769 +16189,16791,14 +16190,338,10749 +16191,38221,878 +16192,42123,12 +16193,37329,18 +16194,10534,18 +16195,29610,35 +16196,4986,35 +16197,37813,53 +16198,41969,18 +16199,186991,10749 +16200,1810,36 +16201,26761,10749 +16202,65545,18 +16203,82134,35 +16204,262522,53 +16205,52452,80 +16206,125249,28 +16207,64944,53 +16208,176867,12 +16209,45512,28 +16210,24886,12 +16211,71191,35 +16212,177697,18 +16213,312221,18 +16214,11449,53 +16215,396330,28 +16216,844,14 +16217,89445,14 +16218,42706,37 +16219,15764,18 +16220,52705,18 +16221,86186,10770 +16222,14215,18 +16223,90086,28 +16224,13836,28 +16225,43903,10402 +16226,70772,10751 +16227,44123,35 +16228,73257,14 +16229,112655,18 +16230,124071,99 +16231,183825,37 +16232,46931,18 +16233,331962,53 +16234,290365,18 +16235,365222,36 +16236,1817,53 +16237,257331,10751 +16238,14609,28 +16239,69075,12 +16240,10747,37 +16241,53949,27 +16242,85544,18 +16243,76211,35 +16244,10776,10402 +16245,65509,18 +16246,153541,35 +16247,303867,16 +16248,12525,53 +16249,46247,12 +16250,222619,14 +16251,70133,28 +16252,67102,878 +16253,130739,18 +16254,31586,14 +16255,31921,35 +16256,199644,18 +16257,16314,10751 +16258,79701,16 +16259,1382,35 +16260,9428,35 +16261,47329,18 +16262,257450,27 +16263,15875,10749 +16264,2989,12 +16265,64456,18 +16266,260310,35 +16267,125764,10769 +16268,29568,18 +16269,282762,10749 +16270,119010,99 +16271,23750,18 +16272,5279,9648 +16273,126323,53 +16274,73353,99 +16275,45215,9648 +16276,35435,16 +16277,282963,10751 +16278,37003,10402 +16279,71133,35 +16280,38034,10769 +16281,90590,28 +16282,360606,35 +16283,64191,10770 +16284,4191,80 +16285,79593,53 +16286,209244,35 +16287,43000,10752 +16288,28044,80 +16289,10458,53 +16290,30289,12 +16291,29829,80 +16292,206647,80 +16293,44593,18 +16294,49950,27 +16295,76609,18 +16296,144475,80 +16297,53685,10749 +16298,29398,878 +16299,16390,10751 +16300,86252,28 +16301,68247,12 +16302,34512,99 +16303,56906,53 +16304,32067,18 +16305,42179,18 +16306,120872,16 +16307,116894,9648 +16308,125409,18 +16309,11584,35 +16310,49609,10749 +16311,126934,18 +16312,15873,36 +16313,140470,53 +16314,51144,18 +16315,257534,35 +16316,97683,18 +16317,25659,18 +16318,403593,10749 +16319,337789,35 +16320,88005,878 +16321,36868,10751 +16322,47921,18 +16323,92309,28 +16324,1561,18 +16325,85844,10749 +16326,228028,35 +16327,10973,878 +16328,210940,35 +16329,43131,35 +16330,120605,28 +16331,48375,35 +16332,1659,35 +16333,40258,35 +16334,18375,10749 +16335,117506,80 +16336,86321,99 +16337,73554,27 +16338,3423,18 +16339,58646,10749 +16340,31003,28 +16341,53701,10769 +16342,63568,10749 +16343,260584,18 +16344,70586,18 +16345,1377,10751 +16346,48836,53 +16347,43817,18 +16348,463800,878 +16349,336050,53 +16350,42293,35 +16351,289225,9648 +16352,47212,18 +16353,302960,12 +16354,254435,12 +16355,18682,10402 +16356,43645,10749 +16357,12255,18 +16358,403570,10751 +16359,39130,35 +16360,50108,14 +16361,347258,878 +16362,16137,10749 +16363,259292,35 +16364,136087,878 +16365,86829,10402 +16366,3057,27 +16367,25006,80 +16368,125842,18 +16369,28304,10749 +16370,285848,18 +16371,48180,878 +16372,36373,18 +16373,38987,878 +16374,41852,18 +16375,52991,18 +16376,2669,28 +16377,9756,18 +16378,18290,10749 +16379,19017,28 +16380,9840,10769 +16381,20424,878 +16382,322455,99 +16383,181456,10749 +16384,128396,10752 +16385,463800,28 +16386,32143,37 +16387,39310,18 +16388,325712,53 +16389,18598,35 +16390,14041,12 +16391,10238,18 +16392,339527,9648 +16393,300690,18 +16394,55236,10752 +16395,21554,10402 +16396,410259,18 +16397,10484,35 +16398,41831,18 +16399,131689,53 +16400,35907,28 +16401,10665,27 +16402,77664,878 +16403,358353,10751 +16404,90056,16 +16405,258353,18 +16406,57209,10749 +16407,11576,80 +16408,16281,27 +16409,342472,10749 +16410,43149,28 +16411,76341,878 +16412,42457,35 +16413,13576,10402 +16414,293092,35 +16415,20174,80 +16416,31018,99 +16417,202239,80 +16418,1850,18 +16419,30,16 +16420,954,12 +16421,57701,35 +16422,414632,35 +16423,183258,53 +16424,46563,18 +16425,79234,35 +16426,48852,80 +16427,197,18 +16428,114872,18 +16429,47238,18 +16430,70587,35 +16431,41380,12 +16432,27472,12 +16433,71381,10749 +16434,323673,10770 +16435,128311,27 +16436,29979,53 +16437,244575,16 +16438,14752,18 +16439,14931,28 +16440,26581,12 +16441,79779,14 +16442,184363,99 +16443,16374,18 +16444,97630,18 +16445,34334,18 +16446,107445,35 +16447,40693,10402 +16448,60994,10749 +16449,6977,80 +16450,139455,35 +16451,345888,27 +16452,139563,35 +16453,27105,28 +16454,41970,18 +16455,19350,12 +16456,298522,35 +16457,44458,18 +16458,17139,10769 +16459,337758,53 +16460,126550,37 +16461,234862,10751 +16462,82481,35 +16463,57918,35 +16464,185158,99 +16465,15909,35 +16466,187219,18 +16467,279543,10749 +16468,16432,53 +16469,115223,10751 +16470,244201,10749 +16471,122192,28 +16472,28484,37 +16473,127424,14 +16474,73194,10749 +16475,44751,28 +16476,153397,10749 +16477,74629,35 +16478,72847,53 +16479,14770,10402 +16480,75204,14 +16481,44510,28 +16482,52850,10751 +16483,11101,18 +16484,52728,12 +16485,126415,28 +16486,1049,9648 +16487,341559,18 +16488,82767,35 +16489,309929,10752 +16490,9438,10751 +16491,54107,10751 +16492,34204,10770 +16493,104041,10770 +16494,24986,18 +16495,37438,12 +16496,2047,53 +16497,10265,18 +16498,201,878 +16499,29260,80 +16500,30669,53 +16501,42640,12 +16502,13072,53 +16503,133160,10749 +16504,21619,27 +16505,11561,35 +16506,83785,80 +16507,183015,28 +16508,10409,10749 +16509,64454,18 +16510,8388,35 +16511,102382,28 +16512,39800,35 +16513,104232,35 +16514,3716,10749 +16515,381645,28 +16516,38766,10752 +16517,16843,27 +16518,376047,10749 +16519,228205,18 +16520,203819,18 +16521,63838,10749 +16522,11907,35 +16523,53851,18 +16524,39462,878 +16525,27351,878 +16526,31890,10752 +16527,42123,18 +16528,410774,10770 +16529,12089,35 +16530,1813,53 +16531,10992,10751 +16532,17962,18 +16533,29372,36 +16534,16371,27 +16535,300155,10749 +16536,32932,18 +16537,4520,53 +16538,35689,53 +16539,76543,18 +16540,92251,10749 +16541,121923,18 +16542,32451,99 +16543,238985,18 +16544,36243,28 +16545,27549,878 +16546,8382,12 +16547,47011,10769 +16548,76333,878 +16549,3701,53 +16550,323675,28 +16551,82191,10751 +16552,10467,35 +16553,84449,18 +16554,137145,27 +16555,137182,18 +16556,53217,35 +16557,61813,53 +16558,1381,18 +16559,41996,36 +16560,293670,9648 +16561,45227,10749 +16562,94348,9648 +16563,86369,35 +16564,42188,878 +16565,70575,27 +16566,42023,18 +16567,125990,18 +16568,215740,18 +16569,14430,80 +16570,174611,18 +16571,53857,35 +16572,1595,10752 +16573,266782,35 +16574,300424,10751 +16575,128081,18 +16576,226001,14 +16577,10867,18 +16578,27629,10402 +16579,796,10749 +16580,135286,35 +16581,75101,27 +16582,58051,10749 +16583,333385,10749 +16584,270650,35 +16585,274504,28 +16586,62775,18 +16587,66247,18 +16588,121003,35 +16589,26955,18 +16590,314285,10751 +16591,51275,10752 +16592,39779,18 +16593,43894,18 +16594,285,28 +16595,234862,35 +16596,206514,18 +16597,17467,53 +16598,246403,27 +16599,31665,28 +16600,2463,80 +16601,58790,27 +16602,183662,53 +16603,9308,35 +16604,26961,27 +16605,130593,10402 +16606,19108,53 +16607,377516,18 +16608,161620,28 +16609,5333,18 +16610,10829,35 +16611,810,14 +16612,21968,28 +16613,284362,99 +16614,16320,53 +16615,301228,878 +16616,296313,18 +16617,24235,99 +16618,10596,12 +16619,52713,35 +16620,155397,28 +16621,130507,18 +16622,289191,53 +16623,13739,35 +16624,64882,18 +16625,21959,10769 +16626,107104,878 +16627,218351,10402 +16628,13954,27 +16629,100791,14 +16630,30554,27 +16631,29695,27 +16632,292262,99 +16633,246917,53 +16634,48770,18 +16635,22910,18 +16636,80545,35 +16637,38772,35 +16638,126415,10749 +16639,75745,10749 +16640,239798,18 +16641,580,53 +16642,11688,12 +16643,887,10749 +16644,427680,10749 +16645,71905,28 +16646,55433,35 +16647,166610,35 +16648,407448,18 +16649,41703,35 +16650,28304,37 +16651,15805,28 +16652,811,878 +16653,40085,18 +16654,288130,99 +16655,91181,9648 +16656,14907,53 +16657,222858,53 +16658,403450,10752 +16659,2966,28 +16660,19676,18 +16661,120729,10770 +16662,31522,10749 +16663,262338,28 +16664,25005,18 +16665,343284,35 +16666,25855,53 +16667,174162,18 +16668,31445,10749 +16669,76011,18 +16670,46010,35 +16671,18729,37 +16672,61533,53 +16673,11422,18 +16674,17956,18 +16675,43119,28 +16676,116340,18 +16677,8410,878 +16678,30640,27 +16679,52696,18 +16680,81600,10769 +16681,11534,18 +16682,18776,28 +16683,81225,99 +16684,17003,18 +16685,422603,10749 +16686,41805,53 +16687,244316,53 +16688,73600,10749 +16689,31915,878 +16690,20648,10749 +16691,15602,35 +16692,19336,10769 +16693,40688,16 +16694,72460,35 +16695,17009,35 +16696,29299,28 +16697,1273,10751 +16698,99329,35 +16699,74822,80 +16700,178446,10752 +16701,21379,28 +16702,261538,35 +16703,12309,35 +16704,270007,18 +16705,11084,35 +16706,19661,9648 +16707,16806,28 +16708,18190,53 +16709,20164,28 +16710,22259,16 +16711,278475,10749 +16712,47459,18 +16713,70581,53 +16714,40879,18 +16715,48376,35 +16716,324150,80 +16717,11046,12 +16718,37189,35 +16719,43759,18 +16720,206563,80 +16721,49230,53 +16722,71496,14 +16723,27970,18 +16724,33344,35 +16725,348689,18 +16726,14242,99 +16727,44115,53 +16728,324150,18 +16729,29144,35 +16730,87827,18 +16731,381691,18 +16732,223497,10749 +16733,58411,27 +16734,43775,18 +16735,38202,28 +16736,5928,35 +16737,69152,878 +16738,315723,28 +16739,41805,9648 +16740,16080,27 +16741,436339,18 +16742,14164,28 +16743,375599,28 +16744,35381,53 +16745,33135,53 +16746,39284,18 +16747,11645,36 +16748,88953,53 +16749,39978,35 +16750,31167,53 +16751,54287,53 +16752,8383,80 +16753,12912,18 +16754,11643,10749 +16755,29082,80 +16756,17009,10751 +16757,38769,18 +16758,9070,10751 +16759,197057,35 +16760,42448,35 +16761,16666,10752 +16762,157343,35 +16763,81120,18 +16764,34127,14 +16765,213681,28 +16766,11848,16 +16767,11839,10751 +16768,54102,36 +16769,146,10749 +16770,72962,10751 +16771,192675,18 +16772,29365,80 +16773,1628,18 +16774,446345,35 +16775,6933,27 +16776,429200,80 +16777,6,28 +16778,116303,35 +16779,38048,37 +16780,49522,35 +16781,314011,18 +16782,337958,18 +16783,120212,10769 +16784,65035,10749 +16785,49597,12 +16786,11887,18 +16787,14372,53 +16788,2998,18 +16789,4887,18 +16790,1361,10751 +16791,45527,9648 +16792,11376,53 +16793,13346,10749 +16794,11706,10752 +16795,332827,10751 +16796,332806,99 +16797,37910,878 +16798,14977,27 +16799,9827,27 +16800,13042,10751 +16801,24578,10749 +16802,44801,28 +16803,11607,53 +16804,27351,27 +16805,41963,18 +16806,43368,37 +16807,34774,18 +16808,72823,18 +16809,52556,18 +16810,22476,27 +16811,143946,18 +16812,396643,12 +16813,141,18 +16814,47638,10751 +16815,28805,28 +16816,128842,18 +16817,109391,18 +16818,2666,9648 +16819,47812,10749 +16820,139244,27 +16821,25834,27 +16822,99545,27 +16823,33357,18 +16824,25520,18 +16825,136466,10749 +16826,26173,53 +16827,273106,14 +16828,19238,35 +16829,245536,16 +16830,43016,35 +16831,61314,35 +16832,37789,878 +16833,82495,10769 +16834,29161,27 +16835,18440,27 +16836,1689,36 +16837,48609,35 +16838,24062,35 +16839,1574,10402 +16840,82626,10751 +16841,44869,18 +16842,420703,35 +16843,106131,35 +16844,59981,10402 +16845,28110,28 +16846,63578,35 +16847,8942,18 +16848,37665,35 +16849,16176,10751 +16850,57811,53 +16851,75066,18 +16852,107976,53 +16853,25653,18 +16854,188836,28 +16855,29835,9648 +16856,44874,10751 +16857,139159,18 +16858,140846,10402 +16859,104697,35 +16860,82654,10749 +16861,295314,18 +16862,115276,53 +16863,4580,18 +16864,10847,53 +16865,14983,27 +16866,24792,99 +16867,15749,27 +16868,36672,18 +16869,16174,10751 +16870,343972,37 +16871,10178,18 +16872,92737,53 +16873,43783,35 +16874,310568,18 +16875,60759,18 +16876,103731,18 +16877,215646,35 +16878,11227,10749 +16879,18585,35 +16880,382995,10751 +16881,36634,80 +16882,10750,53 +16883,28847,27 +16884,11897,37 +16885,46592,18 +16886,13383,14 +16887,109614,18 +16888,69784,18 +16889,32588,35 +16890,11537,35 +16891,21352,10751 +16892,5559,10751 +16893,53064,27 +16894,15981,878 +16895,438137,99 +16896,70500,878 +16897,449131,18 +16898,62527,35 +16899,834,878 +16900,2180,18 +16901,14073,10749 +16902,37437,28 +16903,285860,35 +16904,258751,10749 +16905,254575,28 +16906,185460,27 +16907,44434,18 +16908,268735,10770 +16909,26123,35 +16910,369885,53 +16911,92384,10769 +16912,90634,18 +16913,13807,80 +16914,358353,10770 +16915,198176,18 +16916,404567,12 +16917,84105,18 +16918,43700,37 +16919,87587,10749 +16920,301325,18 +16921,40998,10752 +16922,10803,28 +16923,76333,10769 +16924,40998,18 +16925,20003,80 +16926,34223,27 +16927,107811,35 +16928,214910,28 +16929,7088,35 +16930,43828,37 +16931,62688,28 +16932,117251,53 +16933,10219,10749 +16934,341895,10749 +16935,14874,18 +16936,72638,28 +16937,20493,10749 +16938,15379,53 +16939,387999,35 +16940,39356,18 +16941,351065,35 +16942,59115,878 +16943,1630,18 +16944,19506,28 +16945,63449,35 +16946,76821,18 +16947,24440,28 +16948,83562,35 +16949,76268,18 +16950,20301,10749 +16951,318224,99 +16952,290316,18 +16953,70981,9648 +16954,148284,18 +16955,7088,18 +16956,289190,27 +16957,101783,10769 +16958,2135,12 +16959,72421,18 +16960,147722,18 +16961,167330,80 +16962,1950,18 +16963,104700,14 +16964,77650,18 +16965,259728,36 +16966,291336,27 +16967,130925,35 +16968,79599,16 +16969,122698,18 +16970,63376,35 +16971,30307,27 +16972,54318,12 +16973,167556,80 +16974,53064,18 +16975,54198,18 +16976,21132,80 +16977,156981,27 +16978,112130,18 +16979,5767,18 +16980,80320,18 +16981,20983,18 +16982,44208,10749 +16983,35032,10402 +16984,11215,35 +16985,47226,10402 +16986,35683,53 +16987,10440,9648 +16988,115810,10402 +16989,41764,10749 +16990,16791,18 +16991,9882,18 +16992,31372,28 +16993,13437,28 +16994,36129,12 +16995,20075,35 +16996,51371,18 +16997,62775,35 +16998,259075,28 +16999,285858,18 +17000,13017,18 +17001,85429,35 +17002,3638,35 +17003,429838,53 +17004,44631,28 +17005,300,18 +17006,29161,53 +17007,38732,37 +17008,81477,878 +17009,118490,12 +17010,11104,35 +17011,58905,36 +17012,36811,18 +17013,24023,28 +17014,69428,10749 +17015,32532,18 +17016,29872,10402 +17017,10643,878 +17018,172897,35 +17019,29076,10749 +17020,14695,18 +17021,31597,9648 +17022,16249,14 +17023,12237,99 +17024,16281,35 +17025,38437,9648 +17026,80316,10749 +17027,59118,80 +17028,126319,16 +17029,35139,80 +17030,8669,35 +17031,61541,10749 +17032,291164,80 +17033,284306,18 +17034,37609,10402 +17035,796,18 +17036,29272,10769 +17037,384450,27 +17038,207402,35 +17039,36253,10749 +17040,95536,10752 +17041,31128,18 +17042,10847,12 +17043,74430,18 +17044,10724,28 +17045,68192,35 +17046,69727,80 +17047,207699,80 +17048,365753,10751 +17049,37633,18 +17050,107682,18 +17051,45303,53 +17052,69903,18 +17053,92465,35 +17054,325205,18 +17055,30675,16 +17056,223551,35 +17057,260528,10752 +17058,39334,18 +17059,97632,878 +17060,44877,28 +17061,73554,53 +17062,56853,36 +17063,12128,27 +17064,2047,80 +17065,27886,27 +17066,42288,53 +17067,779,18 +17068,81274,10770 +17069,38134,10402 +17070,322148,27 +17071,25143,36 +17072,70247,878 +17073,20312,35 +17074,151911,18 +17075,89116,10749 +17076,108789,37 +17077,3587,35 +17078,376538,28 +17079,31450,18 +17080,11185,80 +17081,13576,99 +17082,119893,18 +17083,10568,10752 +17084,43571,35 +17085,325555,18 +17086,37700,35 +17087,319999,18 +17088,198663,28 +17089,27866,35 +17090,68202,35 +17091,74510,99 +17092,17306,878 +17093,34216,28 +17094,41823,10749 +17095,11704,14 +17096,107262,80 +17097,65134,37 +17098,48243,10752 +17099,49508,80 +17100,301729,14 +17101,53689,35 +17102,58467,10749 +17103,60813,878 +17104,224885,18 +17105,289923,27 +17106,40127,10769 +17107,8211,35 +17108,742,10749 +17109,42329,14 +17110,5608,14 +17111,308529,28 +17112,10145,18 +17113,229594,28 +17114,288503,9648 +17115,37865,27 +17116,560,53 +17117,105763,10769 +17118,26422,18 +17119,33091,18 +17120,134350,35 +17121,37292,37 +17122,51290,35 +17123,13225,16 +17124,21525,99 +17125,253192,35 +17126,101852,53 +17127,292062,80 +17128,141643,18 +17129,10805,10749 +17130,137193,16 +17131,35428,35 +17132,19760,10749 +17133,32868,18 +17134,19335,80 +17135,21566,18 +17136,26823,10749 +17137,168022,18 +17138,108391,53 +17139,2033,18 +17140,71393,18 +17141,12220,10749 +17142,97206,9648 +17143,61168,10770 +17144,107073,18 +17145,18977,12 +17146,255160,35 +17147,301224,53 +17148,254193,53 +17149,317720,18 +17150,64167,18 +17151,24559,878 +17152,213842,53 +17153,101915,18 +17154,62764,12 +17155,374618,27 +17156,437122,18 +17157,11593,18 +17158,252916,35 +17159,31372,12 +17160,75892,10749 +17161,31380,10749 +17162,14353,878 +17163,180299,28 +17164,21567,18 +17165,111470,37 +17166,11692,28 +17167,363841,18 +17168,1443,18 +17169,14489,10751 +17170,216153,18 +17171,62392,10749 +17172,336011,18 +17173,188507,878 +17174,84479,18 +17175,19676,35 +17176,1579,28 +17177,17282,28 +17178,57278,878 +17179,32093,10749 +17180,227462,16 +17181,51044,10749 +17182,334557,80 +17183,38325,18 +17184,370178,27 +17185,76411,10402 +17186,60599,18 +17187,15356,80 +17188,406052,27 +17189,339152,99 +17190,55663,878 +17191,24363,35 +17192,160160,18 +17193,26861,53 +17194,1125,18 +17195,381032,35 +17196,53048,18 +17197,77057,18 +17198,182129,35 +17199,79645,53 +17200,47882,9648 +17201,82598,18 +17202,2625,18 +17203,88224,35 +17204,81787,18 +17205,93891,18 +17206,7972,18 +17207,78096,10770 +17208,74485,99 +17209,33623,18 +17210,14945,18 +17211,3595,28 +17212,42487,27 +17213,49574,18 +17214,415072,37 +17215,17911,878 +17216,2274,14 +17217,42252,18 +17218,17241,18 +17219,152748,18 +17220,21036,10751 +17221,377362,18 +17222,10198,10749 +17223,141803,35 +17224,406449,18 +17225,393172,9648 +17226,64736,10749 +17227,43459,10749 +17228,45565,10749 +17229,128841,27 +17230,41441,28 +17231,1902,53 +17232,371181,10770 +17233,31700,28 +17234,39766,18 +17235,112961,10749 +17236,405882,27 +17237,4253,10749 +17238,11812,35 +17239,297853,80 +17240,116977,10751 +17241,214909,35 +17242,27462,28 +17243,22943,35 +17244,46570,37 +17245,13079,53 +17246,13536,9648 +17247,291351,18 +17248,9013,12 +17249,10364,35 +17250,39107,28 +17251,237756,35 +17252,32043,18 +17253,11658,18 +17254,48706,28 +17255,347945,878 +17256,32489,10402 +17257,74718,35 +17258,140818,28 +17259,40095,53 +17260,100669,28 +17261,265563,18 +17262,29903,878 +17263,256924,10402 +17264,67314,53 +17265,12707,12 +17266,41331,99 +17267,123109,53 +17268,47816,10749 +17269,7942,35 +17270,66881,878 +17271,76012,28 +17272,101185,10749 +17273,336885,10751 +17274,1116,10752 +17275,18190,18 +17276,11899,10749 +17277,69921,10751 +17278,413998,18 +17279,264644,18 +17280,12135,10769 +17281,197849,18 +17282,2687,35 +17283,366631,10770 +17284,123359,27 +17285,9252,35 +17286,573,18 +17287,46513,18 +17288,403330,10749 +17289,132705,27 +17290,52362,10749 +17291,267579,37 +17292,27019,9648 +17293,2625,10749 +17294,19996,18 +17295,340275,35 +17296,95675,18 +17297,44265,27 +17298,10041,53 +17299,5,35 +17300,269494,28 +17301,9272,18 +17302,31991,53 +17303,136743,10749 +17304,72032,37 +17305,145194,35 +17306,18178,27 +17307,336167,9648 +17308,12186,14 +17309,130739,35 +17310,340961,35 +17311,209293,36 +17312,43685,878 +17313,15902,27 +17314,137321,18 +17315,70313,35 +17316,256962,10752 +17317,423988,878 +17318,9366,53 +17319,340584,53 +17320,101998,18 +17321,28268,35 +17322,493,80 +17323,26581,878 +17324,24452,35 +17325,189151,14 +17326,9034,35 +17327,18165,18 +17328,19176,37 +17329,27503,27 +17330,11248,53 +17331,159469,18 +17332,13279,80 +17333,18690,18 +17334,47507,10769 +17335,394051,9648 +17336,212530,10752 +17337,8049,18 +17338,63401,18 +17339,266568,10751 +17340,363413,10749 +17341,77864,80 +17342,80648,53 +17343,58570,28 +17344,19501,18 +17345,245169,35 +17346,80125,35 +17347,323555,99 +17348,159185,18 +17349,12230,10751 +17350,64850,10749 +17351,17144,28 +17352,342163,35 +17353,183832,18 +17354,24825,53 +17355,954,28 +17356,41469,18 +17357,5425,27 +17358,31263,53 +17359,10860,10749 +17360,343284,27 +17361,18826,35 +17362,82027,18 +17363,273511,27 +17364,28366,35 +17365,68193,10770 +17366,62684,80 +17367,18621,80 +17368,341077,18 +17369,59678,35 +17370,12124,18 +17371,269258,35 +17372,31037,36 +17373,49230,878 +17374,11403,18 +17375,139521,10769 +17376,108726,53 +17377,41038,878 +17378,150049,99 +17379,107250,80 +17380,125835,10749 +17381,48843,27 +17382,18040,878 +17383,50838,9648 +17384,322785,35 +17385,38027,18 +17386,20735,10751 +17387,197737,10749 +17388,10491,10752 +17389,55420,18 +17390,11950,28 +17391,260310,10751 +17392,10473,14 +17393,31773,10749 +17394,24816,35 +17395,14554,18 +17396,212481,12 +17397,73799,18 +17398,38681,12 +17399,362844,28 +17400,102629,53 +17401,53419,35 +17402,9667,9648 +17403,28387,18 +17404,65759,16 +17405,326,53 +17406,10727,53 +17407,36971,35 +17408,58411,35 +17409,75162,18 +17410,31262,80 +17411,59704,18 +17412,19958,10749 +17413,44081,18 +17414,57749,53 +17415,14977,18 +17416,2771,35 +17417,49689,18 +17418,52520,27 +17419,18783,12 +17420,43117,27 +17421,169068,10749 +17422,60173,878 +17423,2982,878 +17424,156711,10749 +17425,12696,18 +17426,41597,53 +17427,1448,14 +17428,51881,10751 +17429,68716,28 +17430,12135,53 +17431,238,80 +17432,72204,16 +17433,211233,28 +17434,31347,10749 +17435,815,18 +17436,147829,18 +17437,271404,28 +17438,47410,28 +17439,36288,80 +17440,34977,9648 +17441,8398,28 +17442,106355,12 +17443,92384,10749 +17444,26574,12 +17445,128598,37 +17446,5991,18 +17447,386100,18 +17448,29076,53 +17449,260094,35 +17450,9602,35 +17451,14432,18 +17452,19277,28 +17453,378087,35 +17454,59507,10749 +17455,56339,35 +17456,14862,35 +17457,54156,10749 +17458,277558,18 +17459,43743,9648 +17460,2085,80 +17461,26861,80 +17462,136386,10749 +17463,57749,27 +17464,124157,28 +17465,325712,28 +17466,56601,10751 +17467,95516,18 +17468,55177,35 +17469,436340,18 +17470,195,35 +17471,32091,14 +17472,96419,9648 +17473,59199,18 +17474,50363,18 +17475,177354,18 +17476,20210,35 +17477,18803,35 +17478,27740,27 +17479,150211,27 +17480,29233,16 +17481,431093,35 +17482,40217,27 +17483,309929,36 +17484,39053,35 +17485,62741,10749 +17486,277710,53 +17487,262988,99 +17488,17708,35 +17489,38221,12 +17490,35435,9648 +17491,127560,36 +17492,283701,18 +17493,21786,18 +17494,329865,9648 +17495,28090,53 +17496,333667,10402 +17497,326359,10751 +17498,44545,878 +17499,9703,28 +17500,71725,18 +17501,15674,10770 +17502,224778,28 +17503,29872,35 +17504,20758,10751 +17505,339116,53 +17506,129229,16 +17507,273481,53 +17508,33065,18 +17509,24756,53 +17510,358511,35 +17511,121640,53 +17512,107319,12 +17513,19505,18 +17514,218688,35 +17515,8951,10751 +17516,329865,18 +17517,13734,35 +17518,31634,878 +17519,49230,35 +17520,37718,35 +17521,37410,35 +17522,27937,14 +17523,28917,18 +17524,211411,99 +17525,13585,35 +17526,4147,18 +17527,16356,53 +17528,347031,10749 +17529,44282,18 +17530,302960,16 +17531,273578,10751 +17532,340275,10402 +17533,69266,18 +17534,125513,16 +17535,64454,35 +17536,59434,80 +17537,1966,10749 +17538,935,35 +17539,77534,10769 +17540,213110,16 +17541,87343,35 +17542,1253,10749 +17543,90395,14 +17544,155765,28 +17545,25969,35 +17546,113739,27 +17547,29138,99 +17548,82631,18 +17549,395883,28 +17550,254047,35 +17551,101242,10749 +17552,72431,18 +17553,3023,878 +17554,5721,18 +17555,196852,28 +17556,9893,10751 +17557,20583,18 +17558,14019,53 +17559,58664,10751 +17560,359204,99 +17561,261246,10749 +17562,320343,10749 +17563,2924,28 +17564,59191,35 +17565,356486,27 +17566,26116,53 +17567,347331,28 +17568,84875,18 +17569,17681,35 +17570,12796,18 +17571,8010,878 +17572,340215,53 +17573,9648,35 +17574,147106,35 +17575,260528,18 +17576,242332,28 +17577,29896,27 +17578,85431,10749 +17579,447511,99 +17580,40081,28 +17581,381767,18 +17582,253337,36 +17583,19116,878 +17584,35656,12 +17585,17657,18 +17586,70489,18 +17587,16157,28 +17588,64225,35 +17589,44486,10749 +17590,1991,53 +17591,7555,28 +17592,393732,18 +17593,47647,35 +17594,109441,35 +17595,320343,18 +17596,14430,35 +17597,164558,99 +17598,384450,35 +17599,73551,12 +17600,88583,18 +17601,272072,35 +17602,356752,18 +17603,322548,80 +17604,16083,53 +17605,124042,9648 +17606,74645,12 +17607,7249,35 +17608,254007,53 +17609,13835,35 +17610,80560,18 +17611,1903,10749 +17612,11046,10752 +17613,13701,10402 +17614,98328,10402 +17615,86254,80 +17616,9102,27 +17617,1058,10749 +17618,167556,18 +17619,285400,10402 +17620,118451,10749 +17621,493,28 +17622,218784,878 +17623,50012,35 +17624,43855,10749 +17625,3405,18 +17626,16371,53 +17627,27380,12 +17628,87302,27 +17629,180371,35 +17630,153272,16 +17631,92716,9648 +17632,336004,80 +17633,33542,35 +17634,11257,18 +17635,17216,80 +17636,314420,53 +17637,64882,35 +17638,113520,9648 +17639,405670,14 +17640,76600,878 +17641,56969,10749 +17642,303542,14 +17643,142528,878 +17644,15316,18 +17645,34560,14 +17646,188392,35 +17647,21571,18 +17648,55612,53 +17649,94587,99 +17650,172673,37 +17651,21044,16 +17652,13848,53 +17653,66125,10751 +17654,29449,14 +17655,44943,28 +17656,38269,878 +17657,14476,18 +17658,5289,28 +17659,33314,18 +17660,70864,28 +17661,31672,80 +17662,456101,27 +17663,14088,18 +17664,499,35 +17665,245950,14 +17666,121998,18 +17667,1903,53 +17668,57701,10749 +17669,208869,80 +17670,26941,18 +17671,85837,80 +17672,96106,28 +17673,21620,18 +17674,13061,16 +17675,64483,18 +17676,254268,14 +17677,19610,10749 +17678,215579,35 +17679,40970,35 +17680,14976,18 +17681,60623,10749 +17682,242042,35 +17683,42206,18 +17684,16366,10751 +17685,106546,18 +17686,98066,35 +17687,85916,53 +17688,106635,35 +17689,12407,18 +17690,41903,878 +17691,66659,12 +17692,110972,10749 +17693,285803,18 +17694,203072,35 +17695,27079,28 +17696,51054,18 +17697,32284,10749 +17698,66812,18 +17699,56807,10749 +17700,20092,10769 +17701,335450,35 +17702,79419,10751 +17703,44566,18 +17704,16092,9648 +17705,87612,18 +17706,146238,53 +17707,31586,10751 +17708,97051,27 +17709,40624,53 +17710,8342,28 +17711,24795,35 +17712,61348,10770 +17713,16154,53 +17714,142802,9648 +17715,227383,18 +17716,93891,53 +17717,68174,53 +17718,99859,53 +17719,127762,99 +17720,16890,10749 +17721,13534,80 +17722,277847,18 +17723,31899,10749 +17724,382170,18 +17725,409550,9648 +17726,88390,80 +17727,53766,10749 +17728,92321,10749 +17729,384594,53 +17730,18206,53 +17731,26864,53 +17732,24675,16 +17733,84184,10749 +17734,22701,10769 +17735,264269,9648 +17736,265712,14 +17737,21708,28 +17738,94182,12 +17739,43903,10749 +17740,184345,27 +17741,10145,80 +17742,13689,10749 +17743,248087,10752 +17744,87296,10402 +17745,15067,12 +17746,74922,35 +17747,36075,27 +17748,72678,35 +17749,46189,28 +17750,30014,18 +17751,127702,9648 +17752,334317,878 +17753,43829,80 +17754,34204,10751 +17755,38322,35 +17756,17606,18 +17757,23114,18 +17758,65755,35 +17759,255869,18 +17760,45533,35 +17761,12206,27 +17762,40709,10752 +17763,1578,18 +17764,425961,80 +17765,60269,37 +17766,52147,18 +17767,241374,10749 +17768,102461,18 +17769,22160,9648 +17770,29100,80 +17771,37992,80 +17772,147773,35 +17773,51104,12 +17774,159095,53 +17775,43832,12 +17776,10604,18 +17777,356482,53 +17778,29146,10749 +17779,105860,80 +17780,286971,12 +17781,22559,28 +17782,50161,18 +17783,42251,27 +17784,62732,14 +17785,8010,14 +17786,169364,18 +17787,174645,28 +17788,29076,35 +17789,46872,10752 +17790,376252,10749 +17791,220500,18 +17792,15982,28 +17793,116977,28 +17794,8665,18 +17795,33130,10769 +17796,10870,35 +17797,347264,35 +17798,336890,35 +17799,20648,35 +17800,2280,10749 +17801,329135,10751 +17802,3115,10769 +17803,122677,878 +17804,40555,18 +17805,151489,18 +17806,67216,9648 +17807,293982,36 +17808,125510,35 +17809,10567,10751 +17810,52661,35 +17811,7096,18 +17812,15325,99 +17813,84774,10769 +17814,335837,35 +17815,329135,18 +17816,368342,80 +17817,96011,18 +17818,261871,10749 +17819,87992,18 +17820,795,18 +17821,89774,99 +17822,31421,18 +17823,270470,18 +17824,169009,14 +17825,35404,80 +17826,19766,10751 +17827,387399,27 +17828,120922,35 +17829,117629,18 +17830,11536,10749 +17831,24448,18 +17832,47190,18 +17833,240334,36 +17834,28370,35 +17835,19552,10749 +17836,243935,80 +17837,216156,18 +17838,90590,18 +17839,90616,878 +17840,238436,10402 +17841,13996,35 +17842,429238,10751 +17843,340053,99 +17844,338421,28 +17845,455363,99 +17846,336004,53 +17847,14444,16 +17848,34560,10770 +17849,5552,878 +17850,82806,18 +17851,43441,10749 +17852,12273,35 +17853,63291,10749 +17854,37305,28 +17855,25074,35 +17856,118293,16 +17857,2196,18 +17858,30778,878 +17859,52867,35 +17860,433945,28 +17861,36361,10749 +17862,278939,12 +17863,13960,18 +17864,80592,28 +17865,93350,18 +17866,319179,18 +17867,37926,878 +17868,25403,18 +17869,126963,28 +17870,242076,53 +17871,45336,16 +17872,63825,28 +17873,86556,878 +17874,292539,99 +17875,114155,18 +17876,49073,35 +17877,10860,18 +17878,52360,18 +17879,371459,18 +17880,60285,10752 +17881,24397,35 +17882,74777,27 +17883,56969,53 +17884,42057,35 +17885,508,35 +17886,10276,35 +17887,60807,28 +17888,28118,10751 +17889,14069,18 +17890,132859,37 +17891,36540,10751 +17892,87123,28 +17893,407,18 +17894,107262,18 +17895,340027,18 +17896,128866,878 +17897,313922,80 +17898,5123,10751 +17899,19203,12 +17900,3057,878 +17901,12599,10751 +17902,55836,18 +17903,36246,80 +17904,25385,10752 +17905,26125,28 +17906,45800,18 +17907,366736,10752 +17908,899,18 +17909,400668,99 +17910,10109,35 +17911,114719,35 +17912,214909,10749 +17913,46448,35 +17914,287233,10751 +17915,74192,35 +17916,222890,10770 +17917,223485,10749 +17918,116327,27 +17919,330947,18 +17920,3782,18 +17921,795,14 +17922,291270,18 +17923,63194,18 +17924,77068,12 +17925,112503,10749 +17926,32497,35 +17927,9502,35 +17928,35320,18 +17929,49792,35 +17930,58903,27 +17931,293861,18 +17932,109610,53 +17933,48281,35 +17934,41357,35 +17935,145247,18 +17936,277934,18 +17937,39057,10751 +17938,90319,16 +17939,81720,28 +17940,10204,35 +17941,28212,10749 +17942,14159,18 +17943,360341,99 +17944,76651,18 +17945,1723,18 +17946,262945,80 +17947,259997,35 +17948,152948,14 +17949,9471,35 +17950,46658,27 +17951,281124,35 +17952,33851,18 +17953,336271,53 +17954,55589,18 +17955,19277,18 +17956,82737,18 +17957,144792,18 +17958,345916,18 +17959,323665,9648 +17960,4882,28 +17961,114333,28 +17962,285,14 +17963,73624,878 +17964,45512,37 +17965,76202,18 +17966,353713,12 +17967,43692,9648 +17968,13318,35 +17969,68347,878 +17970,335897,35 +17971,205349,35 +17972,52847,10402 +17973,11888,12 +17974,22602,37 +17975,138977,18 +17976,157305,16 +17977,271714,18 +17978,349441,18 +17979,77822,18 +17980,10033,10749 +17981,10534,28 +17982,145162,10749 +17983,45861,35 +17984,73215,53 +17985,38189,9648 +17986,246133,35 +17987,440767,35 +17988,64944,18 +17989,37108,12 +17990,93856,53 +17991,14317,12 +17992,43407,18 +17993,1498,35 +17994,270886,18 +17995,30402,27 +17996,22136,18 +17997,44960,9648 +17998,10973,27 +17999,34231,12 +18000,81215,18 +18001,291866,53 +18002,414977,35 +18003,90932,35 +18004,45215,53 +18005,14537,28 +18006,8429,18 +18007,41360,53 +18008,26798,35 +18009,22551,53 +18010,19294,35 +18011,37969,10751 +18012,368051,27 +18013,15303,35 +18014,16432,12 +18015,25797,14 +18016,52744,10749 +18017,94182,10749 +18018,150117,35 +18019,88478,35 +18020,46007,35 +18021,12220,35 +18022,26644,9648 +18023,39056,18 +18024,279608,9648 +18025,694,27 +18026,11077,35 +18027,18651,10402 +18028,196065,35 +18029,83588,18 +18030,10632,28 +18031,55448,53 +18032,58732,35 +18033,32623,27 +18034,234862,16 +18035,93114,28 +18036,94811,28 +18037,65131,35 +18038,31947,27 +18039,3597,53 +18040,18148,18 +18041,19623,10769 +18042,6499,14 +18043,14979,53 +18044,42619,37 +18045,9959,18 +18046,244539,18 +18047,32085,16 +18048,42664,18 +18049,359746,99 +18050,25716,28 +18051,398390,16 +18052,9541,35 +18053,22450,27 +18054,9890,35 +18055,68191,10402 +18056,9354,35 +18057,98069,99 +18058,16412,10751 +18059,154441,35 +18060,259075,12 +18061,79779,35 +18062,10391,53 +18063,4921,18 +18064,5048,18 +18065,18801,27 +18066,45949,18 +18067,88818,80 +18068,152042,14 +18069,43987,28 +18070,18079,18 +18071,211139,12 +18072,39957,27 +18073,43976,35 +18074,40346,28 +18075,167073,10749 +18076,3989,12 +18077,111836,10769 +18078,11798,18 +18079,31596,27 +18080,338,35 +18081,19203,80 +18082,27805,28 +18083,5881,35 +18084,60173,28 +18085,11859,53 +18086,37311,12 +18087,87953,10749 +18088,16876,18 +18089,103161,99 +18090,53701,18 +18091,42453,878 +18092,24405,35 +18093,14611,16 +18094,161880,16 +18095,383535,35 +18096,54146,878 +18097,24556,10751 +18098,382598,35 +18099,56391,16 +18100,250638,27 +18101,88036,10402 +18102,429801,35 +18103,317168,14 +18104,31280,878 +18105,93891,10769 +18106,52039,10749 +18107,1381,10749 +18108,32082,18 +18109,46114,28 +18110,69471,36 +18111,91691,878 +18112,12449,9648 +18113,42307,27 +18114,42512,18 +18115,24750,18 +18116,28115,53 +18117,20421,10402 +18118,12085,35 +18119,241258,53 +18120,323426,53 +18121,96159,18 +18122,25796,18 +18123,6341,80 +18124,38743,80 +18125,75363,10752 +18126,46368,53 +18127,153196,99 +18128,116723,53 +18129,284189,35 +18130,81274,18 +18131,9821,35 +18132,74779,12 +18133,10527,10751 +18134,46421,18 +18135,38362,80 +18136,60608,18 +18137,14589,35 +18138,332759,28 +18139,60002,10749 +18140,36334,18 +18141,39958,18 +18142,45610,28 +18143,79500,14 +18144,9023,37 +18145,90228,36 +18146,29577,35 +18147,21627,53 +18148,240745,18 +18149,271954,18 +18150,64202,10751 +18151,320588,10749 +18152,422005,10751 +18153,244801,10751 +18154,17831,28 +18155,253286,18 +18156,154371,10751 +18157,245170,12 +18158,19736,12 +18159,65887,53 +18160,76438,18 +18161,32526,10749 +18162,68629,878 +18163,28340,27 +18164,455661,10751 +18165,42966,53 +18166,28118,16 +18167,288035,99 +18168,15067,35 +18169,208305,18 +18170,8329,9648 +18171,43459,18 +18172,46145,878 +18173,10857,16 +18174,216989,35 +18175,61527,35 +18176,4516,35 +18177,40087,53 +18178,58903,53 +18179,71393,80 +18180,47596,35 +18181,116463,878 +18182,84465,10749 +18183,10222,53 +18184,46712,18 +18185,11853,28 +18186,52021,53 +18187,418029,28 +18188,77381,10402 +18189,102534,53 +18190,135670,9648 +18191,39195,53 +18192,100110,12 +18193,13468,18 +18194,336149,14 +18195,17845,10749 +18196,109886,10749 +18197,42634,10749 +18198,58692,53 +18199,43895,10751 +18200,60551,37 +18201,1773,80 +18202,57308,35 +18203,39276,28 +18204,25373,18 +18205,11917,80 +18206,80324,18 +18207,146521,18 +18208,86532,16 +18209,28303,35 +18210,180644,16 +18211,193,878 +18212,73123,12 +18213,412363,35 +18214,26962,27 +18215,2516,18 +18216,9948,16 +18217,110416,10751 +18218,20123,14 +18219,75564,27 +18220,173634,37 +18221,53883,18 +18222,389630,18 +18223,80473,10749 +18224,51212,35 +18225,249,18 +18226,13534,35 +18227,82708,10769 +18228,60086,27 +18229,277839,35 +18230,77060,10751 +18231,31503,35 +18232,55694,10749 +18233,287628,53 +18234,44119,28 +18235,33340,10769 +18236,44732,53 +18237,66628,878 +18238,57438,10749 +18239,156627,18 +18240,38987,9648 +18241,89756,53 +18242,34652,53 +18243,206197,18 +18244,250769,99 +18245,19610,10402 +18246,67531,18 +18247,58985,35 +18248,42515,16 +18249,340176,53 +18250,1694,35 +18251,299,10402 +18252,30675,878 +18253,299715,35 +18254,75137,36 +18255,38150,27 +18256,11610,35 +18257,105945,10752 +18258,18843,35 +18259,327935,18 +18260,104427,35 +18261,173638,18 +18262,153397,10770 +18263,22998,35 +18264,165718,16 +18265,24424,80 +18266,765,27 +18267,14053,28 +18268,180383,99 +18269,109475,10770 +18270,61361,80 +18271,168994,18 +18272,20325,10749 +18273,43369,10751 +18274,206563,12 +18275,47670,16 +18276,38461,18 +18277,8355,35 +18278,22387,18 +18279,147538,35 +18280,45935,18 +18281,117120,27 +18282,413579,99 +18283,11655,18 +18284,13640,28 +18285,301671,27 +18286,85628,10751 +18287,26809,10751 +18288,2721,18 +18289,79094,37 +18290,56934,18 +18291,21711,35 +18292,10075,10749 +18293,93114,18 +18294,236007,12 +18295,111480,28 +18296,4974,18 +18297,353728,18 +18298,31131,14 +18299,83079,18 +18300,10433,18 +18301,32716,37 +18302,173301,36 +18303,134362,18 +18304,987,10749 +18305,128140,10752 +18306,17133,35 +18307,302828,12 +18308,71630,18 +18309,39039,18 +18310,71700,878 +18311,85472,99 +18312,43065,99 +18313,1807,18 +18314,248469,18 +18315,67314,18 +18316,103396,80 +18317,100247,35 +18318,62330,80 +18319,23861,10752 +18320,11096,9648 +18321,369366,80 +18322,24756,12 +18323,378236,10751 +18324,83185,18 +18325,81775,35 +18326,39310,80 +18327,102630,28 +18328,202214,28 +18329,172897,18 +18330,21866,35 +18331,90956,80 +18332,11008,10751 +18333,87060,18 +18334,6951,10751 +18335,159128,27 +18336,30934,27 +18337,97206,53 +18338,362178,9648 +18339,60199,9648 +18340,46094,10751 +18341,238749,10749 +18342,29475,18 +18343,351043,9648 +18344,405621,10770 +18345,15944,35 +18346,27917,80 +18347,16784,35 +18348,342917,16 +18349,10871,53 +18350,293863,14 +18351,186971,36 +18352,151870,99 +18353,268536,18 +18354,43741,10769 +18355,48636,27 +18356,30308,9648 +18357,34449,10752 +18358,32168,10769 +18359,44256,18 +18360,48617,16 +18361,77645,10749 +18362,274060,35 +18363,53701,35 +18364,64736,35 +18365,13358,35 +18366,94251,80 +18367,441043,35 +18368,11680,35 +18369,80264,18 +18370,10389,27 +18371,49271,35 +18372,177474,35 +18373,55728,9648 +18374,284274,28 +18375,426264,18 +18376,9297,35 +18377,50725,35 +18378,77094,18 +18379,362057,18 +18380,252059,80 +18381,373977,878 +18382,45527,53 +18383,267523,16 +18384,404471,99 +18385,32825,10749 +18386,82968,18 +18387,41890,18 +18388,257444,53 +18389,9877,53 +18390,6391,10769 +18391,10727,27 +18392,375082,35 +18393,10724,878 +18394,53042,10749 +18395,8930,99 +18396,4441,18 +18397,14642,14 +18398,217923,80 +18399,122,12 +18400,56858,35 +18401,353595,28 +18402,86820,878 +18403,184795,18 +18404,60392,35 +18405,42599,35 +18406,45752,35 +18407,10311,53 +18408,11876,10752 +18409,184578,18 +18410,81720,18 +18411,11953,36 +18412,48333,878 +18413,13092,10749 +18414,96132,80 +18415,161073,35 +18416,87516,53 +18417,61341,12 +18418,172847,53 +18419,120212,28 +18420,18890,16 +18421,110148,53 +18422,58904,53 +18423,178809,27 +18424,3055,10749 +18425,40208,27 +18426,9358,9648 +18427,57419,10749 +18428,15143,18 +18429,12154,18 +18430,13667,35 +18431,53404,53 +18432,242076,80 +18433,36944,99 +18434,68569,18 +18435,45069,18 +18436,59066,10769 +18437,45725,10751 +18438,81589,99 +18439,269165,10770 +18440,38964,53 +18441,296313,35 +18442,37454,18 +18443,277687,18 +18444,187028,10749 +18445,10294,27 +18446,47962,12 +18447,62630,10752 +18448,323370,53 +18449,17927,35 +18450,13852,18 +18451,53857,10749 +18452,88558,18 +18453,96159,35 +18454,136799,12 +18455,17681,16 +18456,18621,18 +18457,196255,35 +18458,29705,878 +18459,165095,10751 +18460,222216,18 +18461,4983,80 +18462,125945,18 +18463,91480,18 +18464,43231,10749 +18465,134806,37 +18466,26378,80 +18467,634,10749 +18468,44793,10749 +18469,37055,10770 +18470,28178,18 +18471,26955,10749 +18472,22701,28 +18473,54524,53 +18474,35320,35 +18475,25330,35 +18476,424488,10752 +18477,300654,53 +18478,39123,878 +18479,403,18 +18480,21893,35 +18481,48495,35 +18482,371446,18 +18483,52713,18 +18484,43346,35 +18485,85038,35 +18486,184351,12 +18487,71689,10751 +18488,225283,35 +18489,63217,35 +18490,31244,27 +18491,21198,53 +18492,89287,35 +18493,19398,18 +18494,36249,35 +18495,46403,10769 +18496,244201,35 +18497,57326,27 +18498,27122,27 +18499,377432,10770 +18500,5393,35 +18501,7454,36 +18502,76115,10749 +18503,340224,35 +18504,290370,878 +18505,178755,99 +18506,2021,18 +18507,311764,10402 +18508,260312,18 +18509,236317,18 +18510,11113,10751 +18511,58570,10769 +18512,34459,28 +18513,60457,18 +18514,405882,14 +18515,103433,80 +18516,357130,10749 +18517,353686,53 +18518,26180,28 +18519,65123,35 +18520,44869,10749 +18521,24777,27 +18522,289336,18 +18523,10176,18 +18524,66597,10749 +18525,50225,18 +18526,12103,53 +18527,1443,10749 +18528,33588,99 +18529,290864,80 +18530,14587,35 +18531,10837,16 +18532,153165,18 +18533,307081,18 +18534,15440,53 +18535,9966,53 +18536,201643,99 +18537,42187,53 +18538,29056,27 +18539,43385,18 +18540,161482,10749 +18541,420743,18 +18542,112912,36 +18543,72847,18 +18544,28270,80 +18545,395982,18 +18546,42424,28 +18547,13336,53 +18548,46924,18 +18549,9968,35 +18550,20411,53 +18551,26510,35 +18552,329865,878 +18553,373397,10749 +18554,127372,36 +18555,11812,10749 +18556,19898,878 +18557,54111,27 +18558,43829,18 +18559,346170,53 +18560,343878,18 +18561,366759,12 +18562,191322,10751 +18563,6947,53 +18564,400948,99 +18565,53950,9648 +18566,14874,35 +18567,271039,10749 +18568,267035,35 +18569,43522,18 +18570,379297,18 +18571,19354,16 +18572,132714,14 +18573,316268,878 +18574,21626,18 +18575,27999,18 +18576,44398,12 +18577,1498,878 +18578,110160,18 +18579,77986,35 +18580,170936,28 +18581,109213,53 +18582,85544,35 +18583,261112,18 +18584,58692,28 +18585,75510,18 +18586,315837,53 +18587,59895,80 +18588,245706,9648 +18589,280092,18 +18590,46020,53 +18591,33339,35 +18592,156,35 +18593,36164,10749 +18594,29101,80 +18595,62012,35 +18596,28893,878 +18597,35558,10749 +18598,188826,18 +18599,69075,878 +18600,51759,10749 +18601,57680,10770 +18602,71630,12 +18603,2907,35 +18604,13802,18 +18605,370687,14 +18606,18417,10749 +18607,21250,12 +18608,8270,53 +18609,41206,80 +18610,33003,99 +18611,350060,18 +18612,287603,35 +18613,23069,10749 +18614,31561,36 +18615,26173,80 +18616,159638,27 +18617,294093,14 +18618,77246,10770 +18619,27381,35 +18620,120303,53 +18621,319179,10751 +18622,239056,35 +18623,41903,28 +18624,430250,53 +18625,19754,18 +18626,382155,28 +18627,61563,10769 +18628,146730,16 +18629,267506,878 +18630,12650,10749 +18631,276401,10749 +18632,48567,16 +18633,40660,35 +18634,257912,9648 +18635,16440,16 +18636,257377,18 +18637,118497,18 +18638,2675,53 +18639,127544,878 +18640,360605,35 +18641,35,10751 +18642,11485,80 +18643,8292,28 +18644,365942,878 +18645,314635,18 +18646,42787,18 +18647,31856,35 +18648,105584,18 +18649,30411,35 +18650,49787,27 +18651,337339,53 +18652,23207,10769 +18653,55448,35 +18654,36211,18 +18655,36971,10769 +18656,72094,18 +18657,15092,28 +18658,83897,18 +18659,41932,28 +18660,13355,35 +18661,36657,12 +18662,174309,99 +18663,102256,53 +18664,2125,28 +18665,76871,28 +18666,166225,53 +18667,314420,18 +18668,19103,35 +18669,17216,28 +18670,126963,16 +18671,19545,10749 +18672,54227,12 +18673,47508,14 +18674,128120,99 +18675,50350,53 +18676,310568,10749 +18677,41110,18 +18678,28303,28 +18679,108,10402 +18680,20919,27 +18681,59297,12 +18682,27112,9648 +18683,42571,10749 +18684,121052,53 +18685,10857,35 +18686,76170,14 +18687,90563,18 +18688,106417,18 +18689,354133,27 +18690,21380,27 +18691,239845,18 +18692,26165,10769 +18693,41497,36 +18694,15213,35 +18695,39072,18 +18696,26486,35 +18697,28299,35 +18698,51044,10402 +18699,113175,12 +18700,10047,18 +18701,84831,35 +18702,336271,18 +18703,17295,18 +18704,210653,80 +18705,108972,9648 +18706,161495,18 +18707,11855,35 +18708,408381,53 +18709,59961,28 +18710,24731,35 +18711,125510,14 +18712,284279,35 +18713,41211,10749 +18714,9389,16 +18715,66967,53 +18716,43379,35 +18717,18893,10402 +18718,481,18 +18719,85790,16 +18720,132422,18 +18721,51836,35 +18722,376716,35 +18723,38164,10749 +18724,28561,80 +18725,18333,27 +18726,227964,35 +18727,154537,10751 +18728,46813,12 +18729,294651,80 +18730,60677,18 +18731,43759,10751 +18732,48287,10751 +18733,41903,12 +18734,328429,878 +18735,9464,10749 +18736,86236,53 +18737,258751,18 +18738,199415,10749 +18739,216374,18 +18740,59040,35 +18741,4257,35 +18742,364111,18 +18743,78694,16 +18744,311093,10770 +18745,425591,18 +18746,429174,18 +18747,366143,16 +18748,47310,16 +18749,75576,9648 +18750,146712,10751 +18751,180305,27 +18752,27346,27 +18753,285594,99 +18754,126016,10402 +18755,11545,35 +18756,55728,35 +18757,45377,9648 +18758,14676,28 +18759,223551,10769 +18760,18098,10751 +18761,74314,53 +18762,279598,16 +18763,82401,10751 +18764,40863,99 +18765,192990,10749 +18766,90319,10751 +18767,11879,18 +18768,42045,10749 +18769,30959,18 +18770,198993,10769 +18771,18696,28 +18772,2984,10749 +18773,10467,10749 +18774,11333,878 +18775,32428,16 +18776,56669,27 +18777,10011,53 +18778,2102,53 +18779,260522,35 +18780,9543,12 +18781,80032,35 +18782,10632,80 +18783,72431,12 +18784,37053,28 +18785,109379,10749 +18786,577,53 +18787,22241,18 +18788,291871,18 +18789,26204,53 +18790,9084,10751 +18791,318553,18 +18792,156141,10752 +18793,3537,18 +18794,332936,18 +18795,51167,10749 +18796,21036,35 +18797,102668,35 +18798,265712,16 +18799,143380,35 +18800,176627,18 +18801,137321,10749 +18802,137321,9648 +18803,88320,18 +18804,2100,53 +18805,38356,28 +18806,419786,878 +18807,64156,10749 +18808,140825,9648 +18809,336691,35 +18810,36758,18 +18811,75315,10749 +18812,10857,10752 +18813,352208,99 +18814,73690,35 +18815,32202,35 +18816,10003,53 +18817,72074,10769 +18818,86284,35 +18819,76349,10752 +18820,72823,80 +18821,20645,18 +18822,279332,35 +18823,23512,18 +18824,34840,35 +18825,11837,18 +18826,2080,878 +18827,188927,12 +18828,39536,35 +18829,43882,18 +18830,132928,35 +18831,18747,18 +18832,104602,35 +18833,105551,18 +18834,11058,53 +18835,24916,10769 +18836,41996,10749 +18837,83735,18 +18838,18035,10749 +18839,11656,18 +18840,455368,99 +18841,132601,16 +18842,56372,28 +18843,34052,12 +18844,163791,35 +18845,9690,35 +18846,37926,12 +18847,353464,53 +18848,22371,12 +18849,92307,18 +18850,13668,35 +18851,17457,28 +18852,80775,10752 +18853,26331,80 +18854,295884,35 +18855,331641,18 +18856,76094,28 +18857,1959,18 +18858,97794,27 +18859,253283,10749 +18860,90461,80 +18861,45205,14 +18862,41805,12 +18863,433244,53 +18864,16131,53 +18865,342588,16 +18866,44287,18 +18867,245891,28 +18868,37420,9648 +18869,10379,10751 +18870,28820,53 +18871,52418,9648 +18872,40387,53 +18873,37935,27 +18874,332286,18 +18875,17831,18 +18876,84718,9648 +18877,5618,35 +18878,166883,18 +18879,24357,878 +18880,10162,10749 +18881,392660,10749 +18882,85446,18 +18883,46586,80 +18884,77915,18 +18885,28730,18 +18886,296626,53 +18887,27034,18 +18888,39345,12 +18889,439050,18 +18890,99008,35 +18891,3563,10749 +18892,42168,10749 +18893,78507,53 +18894,336811,18 +18895,12994,53 +18896,92060,27 +18897,74,12 +18898,15090,53 +18899,48596,18 +18900,132185,99 +18901,310972,10751 +18902,118900,35 +18903,153795,35 +18904,25425,35 +18905,10521,35 +18906,128241,80 +18907,3933,10402 +18908,45179,10749 +18909,24392,28 +18910,10063,53 +18911,348611,18 +18912,62363,53 +18913,43434,80 +18914,228355,28 +18915,28902,18 +18916,44502,10402 +18917,24671,10752 +18918,70989,35 +18919,63838,878 +18920,33005,53 +18921,145316,10751 +18922,60662,18 +18923,22419,35 +18924,9264,53 +18925,331075,27 +18926,9483,10769 +18927,102144,35 +18928,49158,878 +18929,379,80 +18930,207699,53 +18931,30806,53 +18932,14522,10751 +18933,248417,10402 +18934,46492,18 +18935,11509,28 +18936,17223,12 +18937,340684,18 +18938,121091,53 +18939,4307,10749 +18940,23566,16 +18941,39072,35 +18942,107319,878 +18943,284305,27 +18944,156288,28 +18945,253154,18 +18946,279608,16 +18947,393562,80 +18948,314389,9648 +18949,344656,12 +18950,3563,35 +18951,11338,53 +18952,210653,18 +18953,270886,35 +18954,457,18 +18955,11975,80 +18956,18820,18 +18957,2100,18 +18958,194,10749 +18959,20536,36 +18960,11830,35 +18961,206157,37 +18962,42057,10749 +18963,70747,18 +18964,80276,18 +18965,98369,18 +18966,18683,18 +18967,301491,18 +18968,113175,18 +18969,262542,9648 +18970,35790,18 +18971,94803,80 +18972,47653,35 +18973,374319,10751 +18974,147829,10749 +18975,94811,10749 +18976,54406,35 +18977,14609,12 +18978,6499,10751 +18979,32855,35 +18980,105583,99 +18981,19971,27 +18982,46421,80 +18983,9756,9648 +18984,59117,35 +18985,27941,878 +18986,119816,35 +18987,831,53 +18988,352372,27 +18989,45576,18 +18990,3587,14 +18991,48488,28 +18992,10596,878 +18993,353713,36 +18994,337339,28 +18995,228290,35 +18996,57781,18 +18997,43989,35 +18998,53766,18 +18999,28480,18 +19000,4476,10752 +19001,44486,878 +19002,27999,53 +19003,265712,10751 +19004,41505,53 +19005,22582,10751 +19006,11159,18 +19007,965,18 +19008,330115,18 +19009,127585,28 +19010,152736,53 +19011,278316,10749 +19012,64725,53 +19013,371645,12 +19014,190341,18 +19015,436,18 +19016,373514,9648 +19017,121091,18 +19018,31671,28 +19019,32080,28 +19020,696,35 +19021,84354,18 +19022,22585,35 +19023,362579,27 +19024,28974,10749 +19025,76397,18 +19026,85956,18 +19027,56725,28 +19028,170689,53 +19029,44458,10749 +19030,54102,18 +19031,233423,10751 +19032,105763,18 +19033,11373,28 +19034,200481,10749 +19035,27138,18 +19036,37789,12 +19037,15321,35 +19038,421741,28 +19039,31258,80 +19040,193603,27 +19041,93858,10749 +19042,52047,18 +19043,55424,10749 +19044,13283,16 +19045,70476,18 +19046,31867,28 +19047,54022,35 +19048,13241,99 +19049,13842,10402 +19050,977,12 +19051,96132,28 +19052,15639,35 +19053,9593,28 +19054,173443,10749 +19055,61203,80 +19056,282069,878 +19057,118195,35 +19058,67342,27 +19059,36968,14 +19060,137217,27 +19061,24797,18 +19062,38317,10751 +19063,41469,35 +19064,54155,18 +19065,169683,35 +19066,2135,878 +19067,121936,35 +19068,36129,14 +19069,10436,10749 +19070,95169,10752 +19071,294640,18 +19072,11422,10752 +19073,137654,99 +19074,44562,35 +19075,8194,18 +19076,45505,18 +19077,101376,99 +19078,15086,35 +19079,11600,10752 +19080,34774,28 +19081,203264,28 +19082,149511,18 +19083,13836,53 +19084,70966,35 +19085,220820,28 +19086,72140,18 +19087,414977,10749 +19088,342588,27 +19089,116439,53 +19090,335145,10749 +19091,8292,80 +19092,37645,28 +19093,51823,53 +19094,39800,18 +19095,53798,35 +19096,279096,28 +19097,300,14 +19098,57215,18 +19099,263065,10770 +19100,38807,37 +19101,356482,9648 +19102,106747,28 +19103,33673,18 +19104,62143,80 +19105,270774,35 +19106,16371,80 +19107,48186,14 +19108,29101,18 +19109,24816,10751 +19110,10178,10752 +19111,37917,10402 +19112,144271,18 +19113,20758,10749 +19114,92968,35 +19115,108177,35 +19116,91380,80 +19117,226701,53 +19118,21191,53 +19119,112083,35 +19120,28484,18 +19121,56191,16 +19122,31977,18 +19123,28303,37 +19124,408220,14 +19125,281291,18 +19126,56078,35 +19127,51423,18 +19128,169,53 +19129,45577,9648 +19130,410259,10751 +19131,18937,10751 +19132,63876,36 +19133,366249,35 +19134,68721,878 +19135,245597,35 +19136,73123,18 +19137,11876,10749 +19138,120605,53 +19139,58878,28 +19140,185768,10402 +19141,392271,10749 +19142,773,18 +19143,51739,14 +19144,327389,53 +19145,76438,80 +19146,15170,35 +19147,331485,36 +19148,239519,18 +19149,4134,53 +19150,11656,80 +19151,108665,10769 +19152,64861,18 +19153,9461,53 +19154,11247,35 +19155,403867,28 +19156,573,9648 +19157,15674,35 +19158,78802,12 +19159,21585,35 +19160,49876,35 +19161,10921,18 +19162,132363,18 +19163,120497,35 +19164,5917,37 +19165,255647,12 +19166,15022,35 +19167,24632,53 +19168,398137,35 +19169,9457,28 +19170,69401,10749 +19171,337876,28 +19172,21583,35 +19173,14076,18 +19174,194101,18 +19175,69217,18 +19176,31850,18 +19177,195068,36 +19178,21619,53 +19179,29259,53 +19180,13653,53 +19181,10235,10752 +19182,203780,35 +19183,25977,878 +19184,27717,878 +19185,356842,53 +19186,159142,99 +19187,377362,9648 +19188,95136,18 +19189,14369,35 +19190,62897,35 +19191,122928,18 +19192,11658,10752 +19193,22257,80 +19194,69,10749 +19195,21379,16 +19196,21348,16 +19197,326045,37 +19198,280690,35 +19199,84905,28 +19200,275136,10751 +19201,264560,10770 +19202,375366,27 +19203,96159,10749 +19204,52049,9648 +19205,37959,18 +19206,90762,12 +19207,99008,10402 +19208,156603,35 +19209,222715,878 +19210,21343,27 +19211,4644,18 +19212,32690,18 +19213,264646,28 +19214,452372,99 +19215,293625,27 +19216,259,18 +19217,24453,18 +19218,50012,18 +19219,10841,18 +19220,127257,18 +19221,2604,18 +19222,56448,36 +19223,1690,27 +19224,21554,18 +19225,7304,18 +19226,28592,27 +19227,24775,35 +19228,38792,12 +19229,153141,35 +19230,310137,53 +19231,158900,18 +19232,117,18 +19233,52302,878 +19234,44888,18 +19235,73869,878 +19236,31342,18 +19237,44087,18 +19238,13836,12 +19239,43997,10769 +19240,27925,35 +19241,25913,12 +19242,39286,10749 +19243,831,27 +19244,9317,35 +19245,401164,18 +19246,65958,18 +19247,24554,16 +19248,18506,10749 +19249,324181,99 +19250,10025,18 +19251,12311,36 +19252,66628,16 +19253,20842,35 +19254,41556,35 +19255,11096,27 +19256,10269,18 +19257,222461,9648 +19258,33016,53 +19259,115616,18 +19260,324440,18 +19261,37633,35 +19262,9793,53 +19263,184578,10749 +19264,12525,878 +19265,36695,18 +19266,9457,27 +19267,11204,18 +19268,8358,18 +19269,50849,10752 +19270,16203,878 +19271,17288,12 +19272,3513,36 +19273,131475,80 +19274,24005,53 +19275,219233,10752 +19276,85837,28 +19277,37437,10751 +19278,103073,80 +19279,9028,37 +19280,16162,18 +19281,285532,16 +19282,11004,18 +19283,341174,10749 +19284,540,28 +19285,269246,28 +19286,14794,18 +19287,1661,18 +19288,36140,10752 +19289,86700,12 +19290,75948,14 +19291,257302,53 +19292,333884,18 +19293,119172,14 +19294,293380,18 +19295,79783,35 +19296,407559,53 +19297,25376,9648 +19298,40041,53 +19299,28340,878 +19300,292830,878 +19301,124475,10769 +19302,39102,28 +19303,129,12 +19304,25898,35 +19305,6081,80 +19306,22371,35 +19307,279090,18 +19308,43281,35 +19309,81477,12 +19310,44155,35 +19311,25388,10752 +19312,46972,18 +19313,2180,10769 +19314,1404,18 +19315,9746,18 +19316,70863,28 +19317,71885,10770 +19318,50647,35 +19319,339530,878 +19320,177572,28 +19321,18725,53 +19322,3035,878 +19323,85656,878 +19324,222517,35 +19325,17908,10751 +19326,91443,28 +19327,59935,12 +19328,72766,35 +19329,121154,18 +19330,9080,12 +19331,26914,27 +19332,201085,53 +19333,127808,18 +19334,31984,878 +19335,42436,35 +19336,29694,53 +19337,55544,18 +19338,45227,35 +19339,32286,12 +19340,60965,27 +19341,85411,35 +19342,105551,10749 +19343,43266,18 +19344,7353,18 +19345,59678,28 +19346,226672,12 +19347,7304,80 +19348,57866,10749 +19349,296523,53 +19350,10803,12 +19351,78383,53 +19352,6440,18 +19353,44751,53 +19354,348631,9648 +19355,14613,16 +19356,48136,9648 +19357,70801,18 +19358,269149,16 +19359,286521,18 +19360,397422,35 +19361,1450,878 +19362,13180,99 +19363,55424,35 +19364,90395,878 +19365,39176,27 +19366,241574,37 +19367,76600,12 +19368,10475,35 +19369,80219,18 +19370,63472,99 +19371,114790,10749 +19372,4613,80 +19373,616,36 +19374,104275,9648 +19375,6978,28 +19376,355984,35 +19377,345915,35 +19378,334298,28 +19379,30289,28 +19380,53693,35 +19381,33788,10749 +19382,38060,10770 +19383,13848,80 +19384,338518,28 +19385,228205,10749 +19386,94248,80 +19387,42021,35 +19388,36874,18 +19389,40866,878 +19390,88273,36 +19391,208756,53 +19392,148807,99 +19393,48846,27 +19394,89751,18 +19395,192023,27 +19396,20034,27 +19397,49060,53 +19398,265226,18 +19399,39001,35 +19400,9816,10751 +19401,48567,35 +19402,26405,53 +19403,10671,53 +19404,370234,53 +19405,3059,18 +19406,638,9648 +19407,228968,80 +19408,58995,18 +19409,112885,10749 +19410,5491,28 +19411,139998,35 +19412,9882,53 +19413,84944,18 +19414,257377,10752 +19415,294272,14 +19416,150117,10749 +19417,24351,12 +19418,82817,18 +19419,16563,35 +19420,772,12 +19421,28437,27 +19422,244,27 +19423,140595,10402 +19424,27259,27 +19425,235046,53 +19426,357390,28 +19427,18317,18 +19428,348320,35 +19429,106851,18 +19430,353686,27 +19431,165,35 +19432,293082,878 +19433,103938,18 +19434,3173,18 +19435,288413,35 +19436,17711,16 +19437,28062,18 +19438,25078,16 +19439,304613,27 +19440,285841,18 +19441,49084,878 +19442,328692,18 +19443,245017,18 +19444,92389,80 +19445,2966,12 +19446,45335,35 +19447,41380,28 +19448,9843,80 +19449,78340,35 +19450,312497,18 +19451,41028,35 +19452,361183,18 +19453,20438,35 +19454,98349,10749 +19455,84097,10749 +19456,225728,36 +19457,10020,10402 +19458,44869,35 +19459,337879,80 +19460,41831,12 +19461,22584,28 +19462,56448,18 +19463,40095,878 +19464,305147,12 +19465,244,18 +19466,31555,53 +19467,4441,10749 +19468,45505,10749 +19469,38107,28 +19470,87302,35 +19471,28573,18 +19472,1877,28 +19473,12767,53 +19474,98536,18 +19475,17935,18 +19476,41574,878 +19477,155096,18 +19478,9404,53 +19479,32082,35 +19480,35284,18 +19481,210615,18 +19482,236324,10770 +19483,10219,18 +19484,413770,16 +19485,29717,35 +19486,30669,18 +19487,196027,18 +19488,140554,35 +19489,7871,35 +19490,110261,18 +19491,76264,18 +19492,13305,14 +19493,77283,18 +19494,306199,35 +19495,94182,35 +19496,6341,28 +19497,181533,35 +19498,113882,18 +19499,73984,28 +19500,390526,18 +19501,30139,10749 +19502,108017,18 +19503,32484,10751 +19504,62033,80 +19505,28663,80 +19506,29355,35 +19507,115616,10769 +19508,34469,18 +19509,336806,18 +19510,393134,53 +19511,45013,18 +19512,14444,10751 +19513,63838,28 +19514,45132,28 +19515,19244,99 +19516,42614,10749 +19517,142563,16 +19518,13713,35 +19519,118490,18 +19520,19042,12 +19521,9540,27 +19522,290764,18 +19523,416445,16 +19524,33611,35 +19525,141819,80 +19526,81310,10751 +19527,46069,18 +19528,32601,18 +19529,26042,27 +19530,20126,53 +19531,10862,10749 +19532,1163,18 +19533,171075,35 +19534,45132,35 +19535,26643,28 +19536,45398,10752 +19537,58080,80 +19538,170517,35 +19539,308,35 +19540,30082,18 +19541,2441,18 +19542,64310,18 +19543,15613,53 +19544,244,28 +19545,158150,10770 +19546,32390,35 +19547,103539,18 +19548,74237,10402 +19549,103332,35 +19550,5748,18 +19551,85377,18 +19552,42216,35 +19553,151652,28 +19554,28071,27 +19555,2115,10402 +19556,105509,18 +19557,86543,10770 +19558,5998,18 +19559,310593,35 +19560,11697,37 +19561,11654,10749 +19562,522,18 +19563,40221,35 +19564,29805,53 +19565,111302,80 +19566,1911,28 +19567,375384,35 +19568,46738,18 +19569,59981,16 +19570,228198,35 +19571,105210,18 +19572,286567,878 +19573,9717,12 +19574,268618,18 +19575,365942,18 +19576,76533,10749 +19577,165864,35 +19578,255898,18 +19579,5748,80 +19580,10694,53 +19581,202239,28 +19582,25625,27 +19583,20123,18 +19584,8929,36 +19585,30943,18 +19586,205076,53 +19587,57680,18 +19588,354296,9648 +19589,55433,10769 +19590,13836,878 +19591,437253,18 +19592,37308,12 +19593,54555,28 +19594,40649,27 +19595,79775,10769 +19596,28,10752 +19597,18045,878 +19598,48145,18 +19599,4285,18 +19600,26809,16 +19601,72614,10752 +19602,47065,28 +19603,284096,18 +19604,31993,35 +19605,43525,18 +19606,340881,10751 +19607,53211,10751 +19608,49230,12 +19609,38461,53 +19610,9425,28 +19611,17139,36 +19612,88285,18 +19613,104810,10749 +19614,8204,14 +19615,10050,10749 +19616,39311,27 +19617,285946,12 +19618,48967,10751 +19619,11876,12 +19620,13551,80 +19621,12206,18 +19622,153,18 +19623,174195,35 +19624,22307,53 +19625,132714,10751 +19626,47694,18 +19627,261439,18 +19628,62755,10752 +19629,245226,99 +19630,30175,35 +19631,116312,35 +19632,18917,16 +19633,22476,878 +19634,234155,36 +19635,258480,18 +19636,11011,10751 +19637,285181,18 +19638,13185,18 +19639,19594,35 +19640,43935,28 +19641,363579,53 +19642,49106,18 +19643,72733,10749 +19644,9474,37 +19645,267497,53 +19646,9042,27 +19647,85715,18 +19648,64393,80 +19649,244316,28 +19650,13079,18 +19651,1377,10749 +19652,173465,99 +19653,182415,18 +19654,33280,53 +19655,314011,35 +19656,352694,10749 +19657,316776,28 +19658,32716,10749 +19659,274504,18 +19660,24258,35 +19661,399219,35 +19662,58923,99 +19663,10053,53 +19664,70863,35 +19665,634,18 +19666,110552,28 +19667,309809,14 +19668,16182,9648 +19669,146233,80 +19670,89560,35 +19671,2675,878 +19672,76788,53 +19673,38962,80 +19674,288668,9648 +19675,47011,99 +19676,48405,878 +19677,14087,16 +19678,71393,10769 +19679,47761,28 +19680,175791,35 +19681,43489,35 +19682,58,28 +19683,15982,18 +19684,30060,18 +19685,9385,12 +19686,9529,27 +19687,1278,10749 +19688,201429,18 +19689,8856,28 +19690,28421,27 +19691,73969,18 +19692,265351,28 +19693,28165,27 +19694,89774,10402 +19695,242,80 +19696,435,28 +19697,39578,27 +19698,19587,53 +19699,340190,35 +19700,335819,35 +19701,17473,10749 +19702,394051,18 +19703,48846,10769 +19704,272693,10749 +19705,373977,18 +19706,224950,53 +19707,336850,27 +19708,155605,18 +19709,152737,18 +19710,27832,27 +19711,10925,35 +19712,25716,35 +19713,62527,10751 +19714,59726,27 +19715,10192,10751 +19716,36971,18 +19717,37103,18 +19718,124470,27 +19719,134144,18 +19720,31875,18 +19721,349045,16 +19722,20304,53 +19723,2640,53 +19724,12311,10749 +19725,21769,16 +19726,142320,35 +19727,33016,27 +19728,86186,18 +19729,41038,27 +19730,81937,28 +19731,16900,99 +19732,68184,35 +19733,85327,18 +19734,19142,878 +19735,52366,18 +19736,15258,35 +19737,191476,14 +19738,9423,878 +19739,316654,18 +19740,266687,35 +19741,11915,35 +19742,128946,35 +19743,246417,27 +19744,239562,18 +19745,15909,14 +19746,85602,35 +19747,25983,27 +19748,8869,27 +19749,95136,35 +19750,55257,18 +19751,121888,27 +19752,62522,35 +19753,37710,53 +19754,55347,35 +19755,22259,10751 +19756,35626,35 +19757,284052,28 +19758,134209,18 +19759,228355,35 +19760,19850,35 +19761,315846,35 +19762,353979,27 +19763,272878,10751 +19764,30141,35 +19765,75532,35 +19766,396643,28 +19767,35025,35 +19768,135718,14 +19769,67367,10769 +19770,27805,18 +19771,21141,27 +19772,207021,99 +19773,13280,35 +19774,11055,18 +19775,159128,18 +19776,16436,36 +19777,214910,53 +19778,61151,35 +19779,1539,18 +19780,284117,99 +19781,35002,14 +19782,105945,10751 +19783,266782,99 +19784,118443,37 +19785,228407,18 +19786,8954,80 +19787,24202,18 +19788,20742,10769 +19789,11607,27 +19790,166255,18 +19791,399612,878 +19792,117550,18 +19793,295782,18 +19794,236399,9648 +19795,101852,9648 +19796,319971,35 +19797,2140,80 +19798,24126,878 +19799,40130,53 +19800,15310,10402 +19801,24625,18 +19802,81463,53 +19803,10900,53 +19804,49521,28 +19805,127585,12 +19806,27300,35 +19807,983,18 +19808,32834,10751 +19809,329809,35 +19810,405670,18 +19811,102362,53 +19812,335450,18 +19813,40978,18 +19814,285858,36 +19815,41581,16 +19816,136762,99 +19817,31618,53 +19818,30527,18 +19819,4551,35 +19820,43882,10749 +19821,28741,27 +19822,68023,10749 +19823,678,18 +19824,81463,27 +19825,359105,10752 +19826,284135,18 +19827,89560,18 +19828,48186,27 +19829,45489,28 +19830,62728,53 +19831,21181,10769 +19832,33789,27 +19833,55728,10749 +19834,19029,10749 +19835,80394,27 +19836,139826,28 +19837,214081,18 +19838,14539,12 +19839,78210,10749 +19840,42787,9648 +19841,150657,14 +19842,161620,10770 +19843,32595,10769 +19844,2397,28 +19845,20364,18 +19846,327383,18 +19847,11328,53 +19848,10783,53 +19849,200655,99 +19850,43195,36 +19851,34796,18 +19852,55934,53 +19853,60189,14 +19854,45377,80 +19855,14273,99 +19856,210068,10749 +19857,166255,28 +19858,55694,35 +19859,1259,18 +19860,64678,10749 +19861,42424,10751 +19862,226632,35 +19863,95516,53 +19864,388055,99 +19865,149511,10752 +19866,169343,99 +19867,27150,27 +19868,13807,53 +19869,63360,9648 +19870,87908,35 +19871,198652,80 +19872,26881,18 +19873,27446,53 +19874,27230,27 +19875,77412,18 +19876,80089,53 +19877,408620,80 +19878,2731,18 +19879,810,16 +19880,69165,53 +19881,58074,35 +19882,88558,10749 +19883,213095,28 +19884,20357,9648 +19885,277237,80 +19886,37725,10749 +19887,343140,18 +19888,44800,80 +19889,26267,35 +19890,264061,10752 +19891,19901,27 +19892,71322,18 +19893,360603,10749 +19894,65282,80 +19895,148478,18 +19896,50108,27 +19897,24825,12 +19898,83714,18 +19899,74465,10751 +19900,5924,80 +19901,29352,28 +19902,12113,53 +19903,43514,10402 +19904,134656,27 +19905,116977,35 +19906,15935,35 +19907,338438,12 +19908,43751,53 +19909,211928,18 +19910,13569,53 +19911,21191,18 +19912,23196,18 +19913,438012,35 +19914,333663,35 +19915,25520,10749 +19916,31276,27 +19917,10863,28 +19918,61035,18 +19919,60269,18 +19920,26656,53 +19921,10142,10752 +19922,81549,35 +19923,12483,18 +19924,227975,18 +19925,37779,18 +19926,314065,9648 +19927,394403,18 +19928,24973,36 +19929,2750,35 +19930,87022,10769 +19931,377151,99 +19932,265741,18 +19933,98277,18 +19934,58704,12 +19935,81001,35 +19936,99567,35 +19937,341689,10749 +19938,18621,53 +19939,65579,18 +19940,48677,10751 +19941,54111,14 +19942,348631,80 +19943,359025,28 +19944,44282,10749 +19945,46020,878 +19946,65771,10749 +19947,47057,35 +19948,11979,14 +19949,153779,36 +19950,42420,18 +19951,9598,10751 +19952,64972,10751 +19953,48489,28 +19954,16440,28 +19955,28658,10749 +19956,285,12 +19957,580,12 +19958,15664,18 +19959,323435,18 +19960,39219,10749 +19961,78318,10749 +19962,16447,10749 +19963,28120,18 +19964,14072,18 +19965,52314,28 +19966,95358,10402 +19967,41597,18 +19968,12528,36 +19969,28280,80 +19970,64780,99 +19971,4931,53 +19972,77246,10749 +19973,13855,53 +19974,92499,35 +19975,379297,10402 +19976,133715,18 +19977,858,35 +19978,44716,18 +19979,139170,10752 +19980,20312,9648 +19981,64130,18 +19982,18405,80 +19983,30163,35 +19984,333354,80 +19985,40866,35 +19986,48937,35 +19987,167928,18 +19988,192210,53 +19989,55612,80 +19990,115223,16 +19991,259728,10752 +19992,14843,18 +19993,199374,35 +19994,30363,18 +19995,116711,12 +19996,1049,53 +19997,14096,35 +19998,30141,9648 +19999,84226,27 +20000,19274,28 +20001,16186,10749 +20002,229702,53 +20003,55731,35 +20004,29694,35 +20005,60807,35 +20006,342472,18 +20007,58244,14 +20008,104211,14 +20009,10775,28 +20010,30527,36 +20011,108972,53 +20012,13614,18 +20013,259645,18 +20014,226701,18 +20015,248833,878 +20016,163814,10770 +20017,20674,53 +20018,12716,18 +20019,29355,18 +20020,8088,10749 +20021,25973,35 +20022,57575,10749 +20023,37030,28 +20024,96713,35 +20025,447236,36 +20026,359413,35 +20027,11442,53 +20028,336850,878 +20029,3941,35 +20030,42664,36 +20031,14181,80 +20032,86049,10769 +20033,137726,10749 +20034,16239,35 +20035,18682,35 +20036,92285,18 +20037,42679,18 +20038,42136,37 +20039,127728,18 +20040,153781,10769 +20041,46169,10770 +20042,92848,35 +20043,113091,10749 +20044,274479,18 +20045,42329,53 +20046,26156,28 +20047,65599,27 +20048,54256,18 +20049,1058,28 +20050,33534,18 +20051,322,80 +20052,97088,18 +20053,197737,10402 +20054,38010,10402 +20055,448879,16 +20056,22404,18 +20057,380124,35 +20058,42701,37 +20059,366759,35 +20060,7237,28 +20061,38766,18 +20062,228034,18 +20063,25536,80 +20064,43868,10402 +20065,20028,18 +20066,43388,12 +20067,104081,10769 +20068,54715,35 +20069,5955,80 +20070,1058,18 +20071,10351,27 +20072,29424,18 +20073,301876,53 +20074,106851,36 +20075,20521,10402 +20076,14945,28 +20077,8388,37 +20078,71041,18 +20079,33224,80 +20080,348689,36 +20081,18569,10749 +20082,343693,16 +20083,7085,12 +20084,43817,53 +20085,18209,14 +20086,150338,18 +20087,70436,80 +20088,9099,10751 +20089,120942,18 +20090,8471,18 +20091,31397,10751 +20092,128767,12 +20093,84493,16 +20094,53622,37 +20095,83995,18 +20096,14765,18 +20097,28820,27 +20098,82077,80 +20099,68202,10749 +20100,109716,18 +20101,95414,16 +20102,49418,12 +20103,94365,27 +20104,329440,27 +20105,46857,18 +20106,469,18 +20107,27470,35 +20108,9585,53 +20109,82696,35 +20110,16550,35 +20111,62527,18 +20112,27372,18 +20113,8088,53 +20114,12085,28 +20115,101185,36 +20116,76940,10769 +20117,3144,35 +20118,15,18 +20119,41886,99 +20120,2978,14 +20121,277388,12 +20122,18803,10749 +20123,43119,36 +20124,35177,14 +20125,146416,18 +20126,192573,35 +20127,413547,53 +20128,2143,18 +20129,86985,53 +20130,68023,36 +20131,14210,878 +20132,84209,18 +20133,45156,10749 +20134,245394,99 +20135,110588,878 +20136,65787,10402 +20137,286789,12 +20138,10991,12 +20139,110588,35 +20140,125623,18 +20141,16791,878 +20142,47882,35 +20143,46278,10769 +20144,93350,35 +20145,356161,12 +20146,23223,80 +20147,896,18 +20148,51044,18 +20149,17175,18 +20150,57190,878 +20151,74911,18 +20152,84774,10751 +20153,13788,27 +20154,49844,53 +20155,83718,10749 +20156,171337,18 +20157,270946,10751 +20158,206296,35 +20159,16803,35 +20160,54898,18 +20161,346170,27 +20162,291866,27 +20163,378441,99 +20164,114242,18 +20165,55283,10749 +20166,270899,18 +20167,55776,35 +20168,11374,35 +20169,59678,878 +20170,451709,35 +20171,403119,12 +20172,96793,53 +20173,221981,53 +20174,20307,80 +20175,84772,37 +20176,369883,35 +20177,447758,878 +20178,27035,53 +20179,42430,35 +20180,58887,10749 +20181,5201,18 +20182,9803,35 +20183,362682,35 +20184,84831,9648 +20185,37939,28 +20186,33673,53 +20187,197089,18 +20188,16417,18 +20189,68569,10752 +20190,18317,10749 +20191,90351,80 +20192,376538,80 +20193,79218,10751 +20194,39824,53 +20195,82495,878 +20196,44510,18 +20197,46436,35 +20198,23590,18 +20199,41857,18 +20200,26165,10749 +20201,18937,18 +20202,29260,9648 +20203,88518,53 +20204,53128,18 +20205,36164,35 +20206,182035,10749 +20207,285213,12 +20208,309929,18 +20209,344906,28 +20210,118549,80 +20211,13205,10751 +20212,8281,80 +20213,278095,35 +20214,21927,53 +20215,413669,9648 +20216,37108,35 +20217,51267,35 +20218,33558,53 +20219,28736,37 +20220,23957,18 +20221,12650,14 +20222,268380,16 +20223,180759,80 +20224,2015,18 +20225,2179,10402 +20226,84875,10749 +20227,62033,18 +20228,103875,53 +20229,99579,18 +20230,18190,9648 +20231,17015,18 +20232,115565,53 +20233,34560,10751 +20234,114922,35 +20235,50942,27 +20236,219247,27 +20237,70864,878 +20238,2125,53 +20239,18495,35 +20240,345775,16 +20241,39462,14 +20242,52728,27 +20243,75626,10751 +20244,69061,35 +20245,81687,36 +20246,14683,16 +20247,67,18 +20248,302036,878 +20249,82321,18 +20250,80410,14 +20251,25797,878 +20252,256969,53 +20253,30666,53 +20254,33124,18 +20255,10109,28 +20256,38237,878 +20257,41967,14 +20258,363890,27 +20259,80389,80 +20260,41497,18 +20261,55725,35 +20262,198277,10749 +20263,208579,27 +20264,19276,10769 +20265,236808,27 +20266,66022,9648 +20267,14353,27 +20268,19495,36 +20269,36245,18 +20270,121154,10770 +20271,24351,28 +20272,32834,28 +20273,6522,80 +20274,18417,18 +20275,14215,53 +20276,31428,9648 +20277,253277,35 +20278,127864,18 +20279,99819,35 +20280,199575,53 +20281,48231,53 +20282,418072,12 +20283,320343,53 +20284,10770,878 +20285,61988,12 +20286,33015,35 +20287,320005,878 +20288,423122,35 +20289,9457,12 +20290,55825,10769 +20291,62045,10749 +20292,176143,18 +20293,76142,99 +20294,9785,80 +20295,18283,14 +20296,31773,35 +20297,42040,12 +20298,8584,37 +20299,101838,53 +20300,12449,53 +20301,9010,80 +20302,329865,53 +20303,35381,18 +20304,45928,53 +20305,377691,35 +20306,14370,35 +20307,9314,878 +20308,193756,28 +20309,8366,37 +20310,22371,10751 +20311,72710,878 +20312,2929,878 +20313,49391,18 +20314,34204,35 +20315,10916,28 +20316,353746,99 +20317,36929,10751 +20318,86718,878 +20319,175027,18 +20320,45213,10749 +20321,21605,10751 +20322,84355,35 +20323,373838,35 +20324,18977,10751 +20325,11391,35 +20326,48836,27 +20327,39979,28 +20328,18446,10749 +20329,85327,35 +20330,72013,16 +20331,43635,18 +20332,105352,14 +20333,10692,18 +20334,337,18 +20335,64115,35 +20336,29483,9648 +20337,408381,18 +20338,14565,53 +20339,105787,99 +20340,82999,53 +20341,248747,35 +20342,377447,35 +20343,33557,35 +20344,9078,16 +20345,277934,10749 +20346,25507,80 +20347,90932,10749 +20348,24709,10751 +20349,18731,35 +20350,21481,14 +20351,11880,27 +20352,295588,18 +20353,393079,35 +20354,16873,16 +20355,25376,80 +20356,199056,35 +20357,131815,878 +20358,222935,10749 +20359,27460,28 +20360,157424,27 +20361,197583,35 +20362,11142,28 +20363,15838,16 +20364,18035,35 +20365,11561,10749 +20366,276401,18 +20367,9946,9648 +20368,18214,18 +20369,41619,35 +20370,117913,80 +20371,35113,10749 +20372,30349,10749 +20373,43895,18 +20374,110447,18 +20375,43829,36 +20376,85483,27 +20377,19629,18 +20378,15979,53 +20379,55437,28 +20380,158990,35 +20381,19342,35 +20382,408140,35 +20383,369885,28 +20384,10948,18 +20385,85549,18 +20386,27941,10751 +20387,16866,12 +20388,116385,18 +20389,28969,10751 +20390,63186,10752 +20391,70074,28 +20392,10204,28 +20393,314371,18 +20394,60316,16 +20395,9572,35 +20396,245906,35 +20397,26823,18 +20398,220002,18 +20399,85883,18 +20400,266044,10749 +20401,308,9648 +20402,8939,10749 +20403,402455,18 +20404,85543,18 +20405,2760,53 +20406,288438,99 +20407,129553,10749 +20408,15177,10749 +20409,71329,18 +20410,160046,10751 +20411,29694,10751 +20412,86168,18 +20413,15044,36 +20414,75446,99 +20415,41213,14 +20416,71668,53 +20417,43685,10749 +20418,96987,35 +20419,28304,18 +20420,335053,35 +20421,22752,16 +20422,41030,27 +20423,110491,99 +20424,22259,28 +20425,61985,36 +20426,33592,53 +20427,352694,35 +20428,14552,10749 +20429,9502,12 +20430,46972,35 +20431,7343,18 +20432,322922,27 +20433,19850,18 +20434,81188,14 +20435,48838,18 +20436,32029,80 +20437,81684,12 +20438,10394,53 +20439,39849,99 +20440,88518,12 +20441,11854,18 +20442,14945,14 +20443,228066,878 +20444,68191,18 +20445,127544,28 +20446,117099,18 +20447,15163,18 +20448,19754,10770 +20449,33673,10749 +20450,31344,10769 +20451,4547,18 +20452,14073,36 +20453,28433,53 +20454,273879,18 +20455,73799,16 +20456,9551,35 +20457,87587,35 +20458,388862,80 +20459,52221,10749 +20460,149145,99 +20461,24739,878 +20462,2993,9648 +20463,60784,35 +20464,303857,14 +20465,76533,35 +20466,194393,27 +20467,14811,10749 +20468,32158,18 +20469,249021,28 +20470,28553,18 +20471,278095,10751 +20472,31439,10749 +20473,27012,35 +20474,23857,27 +20475,271677,12 +20476,41493,10751 +20477,30792,27 +20478,354857,878 +20479,174611,27 +20480,5511,18 +20481,47190,36 +20482,88922,27 +20483,13517,10751 +20484,12591,14 +20485,27993,35 +20486,26643,18 +20487,346723,35 +20488,264569,35 +20489,103578,878 +20490,45714,27 +20491,392271,36 +20492,203321,10749 +20493,113119,28 +20494,182799,80 +20495,43142,10752 +20496,347127,53 +20497,3597,27 +20498,200727,10749 +20499,427045,10749 +20500,136368,16 +20501,382125,35 +20502,40693,35 +20503,25953,28 +20504,46020,35 +20505,13616,36 +20506,809,35 +20507,213110,878 +20508,321191,18 +20509,12599,12 +20510,19901,878 +20511,75880,35 +20512,2994,28 +20513,73198,18 +20514,28131,9648 +20515,11636,80 +20516,29056,35 +20517,36047,53 +20518,27112,53 +20519,14543,99 +20520,53853,10749 +20521,153102,18 +20522,34280,12 +20523,33065,35 +20524,278935,80 +20525,148347,12 +20526,14207,18 +20527,17820,10749 +20528,38558,80 +20529,391618,10749 +20530,141418,10751 +20531,210302,35 +20532,49220,18 +20533,175035,10749 +20534,195763,10751 +20535,18902,99 +20536,9816,18 +20537,6951,28 +20538,13338,35 +20539,357130,18 +20540,12101,9648 +20541,38332,18 +20542,356161,10751 +20543,52013,99 +20544,2323,14 +20545,56533,12 +20546,278621,18 +20547,36355,12 +20548,45562,10752 +20549,341559,28 +20550,82626,35 +20551,19887,18 +20552,16523,14 +20553,613,10752 +20554,63876,10749 +20555,269173,53 +20556,116977,16 +20557,9651,878 +20558,45336,35 +20559,17908,35 +20560,339362,28 +20561,16314,12 +20562,29204,16 +20563,50531,18 +20564,14688,35 +20565,84905,37 +20566,11259,37 +20567,344120,18 +20568,2274,53 +20569,13396,28 +20570,19286,35 +20571,296025,18 +20572,14011,16 +20573,2274,12 +20574,284289,53 +20575,110540,18 +20576,85844,18 +20577,133458,80 +20578,84209,80 +20579,45452,14 +20580,21159,878 +20581,72592,10749 +20582,10739,10749 +20583,120932,18 +20584,16921,27 +20585,244458,35 +20586,33510,14 +20587,128215,18 +20588,52772,18 +20589,1911,14 +20590,21028,18 +20591,369885,10752 +20592,172443,35 +20593,23378,18 +20594,363354,10749 +20595,241254,53 +20596,422906,35 +20597,239619,10749 +20598,19482,10749 +20599,15745,53 +20600,1907,12 +20601,61430,10749 +20602,21468,18 +20603,81576,99 +20604,11328,18 +20605,2125,878 +20606,375199,18 +20607,961,12 +20608,621,10749 +20609,34506,99 +20610,126418,18 +20611,89722,10769 +20612,287587,35 +20613,312940,35 +20614,24363,18 +20615,84875,35 +20616,1481,28 +20617,870,10749 +20618,256924,18 +20619,167424,18 +20620,33364,10749 +20621,359483,18 +20622,112130,53 +20623,62837,18 +20624,22051,18 +20625,42267,28 +20626,15762,35 +20627,140595,10770 +20628,102256,18 +20629,183962,9648 +20630,310135,28 +20631,48596,10769 +20632,77094,10749 +20633,110148,80 +20634,351043,18 +20635,38437,28 +20636,413232,10402 +20637,363479,10770 +20638,55853,9648 +20639,36489,878 +20640,76871,18 +20641,76012,12 +20642,17940,878 +20643,157129,12 +20644,189556,99 +20645,199851,10749 +20646,17889,10749 +20647,35052,53 +20648,84154,35 +20649,222715,16 +20650,76714,10749 +20651,326228,14 +20652,55257,35 +20653,249457,35 +20654,32049,53 +20655,134477,18 +20656,336484,18 +20657,340275,80 +20658,27935,35 +20659,8247,12 +20660,415358,18 +20661,22279,10749 +20662,11104,18 +20663,197725,16 +20664,346672,28 +20665,97797,27 +20666,49106,36 +20667,82178,10749 +20668,1715,18 +20669,43434,53 +20670,110001,18 +20671,82265,18 +20672,166076,16 +20673,19294,10749 +20674,142106,35 +20675,128364,18 +20676,147360,18 +20677,60269,28 +20678,36288,18 +20679,31547,35 +20680,13484,35 +20681,114108,27 +20682,48210,18 +20683,32139,10751 +20684,23152,18 +20685,284293,18 +20686,356326,27 +20687,49013,35 +20688,18045,27 +20689,31011,10749 +20690,51800,16 +20691,67025,10769 +20692,114922,10769 +20693,32139,35 +20694,146243,27 +20695,216374,27 +20696,25366,99 +20697,70575,53 +20698,80539,80 +20699,161885,27 +20700,50942,878 +20701,132608,35 +20702,426670,10751 +20703,323149,53 +20704,279690,53 +20705,38021,10769 +20706,231145,35 +20707,7305,28 +20708,8194,80 +20709,42149,53 +20710,41213,16 +20711,202337,35 +20712,344656,878 +20713,37926,28 +20714,29111,27 +20715,315723,14 +20716,341491,18 +20717,23048,12 +20718,40466,27 +20719,38978,28 +20720,189197,28 +20721,47386,27 +20722,598,18 +20723,38684,18 +20724,216046,18 +20725,42996,10751 +20726,16186,35 +20727,29923,53 +20728,179105,28 +20729,54256,35 +20730,30305,12 +20731,212503,35 +20732,52034,53 +20733,29475,10402 +20734,16638,18 +20735,147538,14 +20736,293271,16 +20737,68797,18 +20738,3405,35 +20739,117023,878 +20740,147876,35 +20741,273481,9648 +20742,6076,10749 +20743,147590,10749 +20744,226167,10749 +20745,43503,10402 +20746,20986,16 +20747,71393,28 +20748,18414,35 +20749,181656,16 +20750,2666,878 +20751,31867,878 +20752,54690,18 +20753,38448,18 +20754,17893,18 +20755,241239,80 +20756,18493,99 +20757,82401,878 +20758,43316,18 +20759,20301,18 +20760,183827,35 +20761,6589,10751 +20762,25111,35 +20763,435821,18 +20764,22007,53 +20765,44746,35 +20766,82654,35 +20767,45899,10749 +20768,53714,80 +20769,331161,35 +20770,229,878 +20771,28482,35 +20772,18725,28 +20773,39867,27 +20774,36253,10402 +20775,403570,18 +20776,41569,10769 +20777,46992,10402 +20778,198993,10752 +20779,172972,14 +20780,10173,28 +20781,4993,37 +20782,101342,35 +20783,97548,18 +20784,13436,35 +20785,263341,12 +20786,143092,35 +20787,27873,878 +20788,258509,10751 +20789,267483,18 +20790,271664,18 +20791,428398,28 +20792,382591,18 +20793,15379,12 +20794,62630,80 +20795,156141,18 +20796,11639,14 +20797,65002,18 +20798,14372,878 +20799,26252,10749 +20800,299730,27 +20801,216580,27 +20802,3092,18 +20803,48967,18 +20804,2195,53 +20805,170430,27 +20806,271677,18 +20807,261581,35 +20808,312940,16 +20809,117212,18 +20810,13058,80 +20811,320061,99 +20812,19812,35 +20813,92381,35 +20814,53543,16 +20815,69,10402 +20816,211085,99 +20817,71140,53 +20818,118015,10769 +20819,55731,28 +20820,13652,35 +20821,74436,12 +20822,199415,35 +20823,82077,18 +20824,47507,18 +20825,83342,10402 +20826,61528,18 +20827,284296,35 +20828,83714,35 +20829,117452,10769 +20830,101838,18 +20831,32634,37 +20832,77022,16 +20833,290825,27 +20834,243940,53 +20835,271718,35 +20836,31264,12 +20837,329289,27 +20838,936,80 +20839,13734,10749 +20840,6081,53 +20841,268212,80 +20842,307020,35 +20843,34598,35 +20844,153266,35 +20845,332534,18 +20846,53622,12 +20847,1694,878 +20848,48585,35 +20849,10761,10749 +20850,93676,35 +20851,161620,12 +20852,38718,18 +20853,105906,53 +20854,75948,28 +20855,27091,18 +20856,353595,16 +20857,86979,27 +20858,21062,35 +20859,34052,14 +20860,79644,35 +20861,28997,18 +20862,10142,36 +20863,36489,27 +20864,3050,10751 +20865,92393,27 +20866,45213,18 +20867,1554,35 +20868,10396,53 +20869,13350,10751 +20870,45215,18 +20871,15144,10749 +20872,180607,18 +20873,163,53 +20874,109298,16 +20875,29054,878 +20876,2204,18 +20877,8064,18 +20878,220002,35 +20879,51434,53 +20880,81600,53 +20881,31417,53 +20882,2135,28 +20883,64850,10769 +20884,220488,35 +20885,303360,18 +20886,28774,18 +20887,85483,10770 +20888,39781,35 +20889,101183,18 +20890,8652,18 +20891,47876,35 +20892,8932,10749 +20893,84575,10751 +20894,13965,12 +20895,75564,878 +20896,137491,10751 +20897,65650,18 +20898,46145,18 +20899,151431,35 +20900,13889,18 +20901,41787,9648 +20902,214105,9648 +20903,151489,10752 +20904,198663,9648 +20905,329440,53 +20906,15640,35 +20907,196852,12 +20908,34577,16 +20909,57011,878 +20910,28564,18 +20911,92989,18 +20912,137683,18 +20913,28761,18 +20914,75315,18 +20915,390296,99 +20916,33407,35 +20917,72826,878 +20918,8053,9648 +20919,52918,18 +20920,51362,35 +20921,64786,35 +20922,63066,18 +20923,26491,18 +20924,23544,16 +20925,71266,36 +20926,300654,12 +20927,27703,53 +20928,47540,9648 +20929,34840,10749 +20930,11517,80 +20931,140554,10402 +20932,1568,18 +20933,12632,18 +20934,128081,28 +20935,340103,27 +20936,46387,10769 +20937,92496,35 +20938,42726,10749 +20939,190410,18 +20940,2778,10751 +20941,66628,12 +20942,28387,35 +20943,119213,80 +20944,88486,14 +20945,461088,35 +20946,52247,18 +20947,37308,37 +20948,10096,10749 +20949,54107,10749 +20950,208869,35 +20951,63066,35 +20952,65367,28 +20953,20495,18 +20954,63924,53 +20955,4641,35 +20956,41556,18 +20957,11370,28 +20958,352890,18 +20959,27526,18 +20960,25500,53 +20961,27937,18 +20962,26841,80 +20963,8897,10769 +20964,10674,16 +20965,310135,35 +20966,332280,28 +20967,280019,28 +20968,21742,99 +20969,28732,18 +20970,59349,10752 +20971,26502,12 +20972,118444,35 +20973,111302,18 +20974,218329,28 +20975,30143,28 +20976,9555,28 +20977,118991,53 +20978,709,12 +20979,192675,28 +20980,1539,10402 +20981,29272,18 +20982,338312,28 +20983,29345,27 +20984,57327,10749 +20985,140648,28 +20986,90461,35 +20987,36212,878 +20988,2017,18 +20989,15476,53 +20990,127808,10749 +20991,19101,10751 +20992,278901,16 +20993,11337,35 +20994,456101,53 +20995,4253,18 +20996,218443,35 +20997,19587,18 +20998,96712,9648 +20999,858,10749 +21000,92424,35 +21001,115427,18 +21002,10780,10749 +21003,256520,10749 +21004,177572,12 +21005,20558,10751 +21006,106355,28 +21007,37958,14 +21008,61361,18 +21009,41252,10749 +21010,376934,18 +21011,121530,18 +21012,269258,18 +21013,79113,10751 +21014,43891,80 +21015,157343,10749 +21016,10991,14 +21017,127329,28 +21018,312100,14 +21019,51209,53 +21020,59142,35 +21021,266102,18 +21022,27973,18 +21023,173456,18 +21024,90351,10769 +21025,48502,18 +21026,29801,28 +21027,121006,80 +21028,31713,9648 +21029,742,35 +21030,84348,53 +21031,184098,35 +21032,13542,18 +21033,134394,9648 +21034,30508,18 +21035,348315,53 +21036,35392,10752 +21037,25473,80 +21038,19101,14 +21039,2565,35 +21040,229182,53 +21041,48677,28 +21042,328111,16 +21043,45384,14 +21044,810,10751 +21045,441043,878 +21046,13333,28 +21047,64383,35 +21048,379335,10402 +21049,38162,28 +21050,44442,10769 +21051,271677,28 +21052,19108,28 +21053,55505,28 +21054,101904,14 +21055,15084,10749 +21056,91690,35 +21057,292035,35 +21058,63877,18 +21059,18352,53 +21060,28155,27 +21061,10821,10752 +21062,214,53 +21063,389972,35 +21064,2172,12 +21065,41160,35 +21066,32166,53 +21067,106573,18 +21068,9425,878 +21069,83540,99 +21070,4988,35 +21071,11373,12 +21072,11521,10751 +21073,10096,14 +21074,90762,878 +21075,185460,53 +21076,118381,35 +21077,53739,53 +21078,159128,53 +21079,9343,28 +21080,18776,36 +21081,66447,10769 +21082,31942,53 +21083,72460,80 +21084,52943,18 +21085,379019,35 +21086,368006,878 +21087,315880,10749 +21088,13956,10751 +21089,12446,18 +21090,53178,16 +21091,46432,10749 +21092,450530,878 +21093,224282,18 +21094,36530,12 +21095,86608,18 +21096,73835,35 +21097,396535,53 +21098,22477,18 +21099,264269,27 +21100,390409,99 +21101,2503,9648 +21102,1662,28 +21103,80276,35 +21104,152532,18 +21105,11537,28 +21106,16382,18 +21107,286192,10751 +21108,43049,18 +21109,10692,27 +21110,345775,12 +21111,8460,53 +21112,199887,18 +21113,21431,28 +21114,46261,14 +21115,22160,10749 +21116,11614,28 +21117,37211,10770 +21118,71444,16 +21119,8391,18 +21120,43440,18 +21121,6948,27 +21122,369362,99 +21123,52741,35 +21124,10647,10749 +21125,73527,10751 +21126,19809,35 +21127,16612,99 +21128,52475,10749 +21129,47867,18 +21130,11618,14 +21131,327935,10749 +21132,241968,35 +21133,32059,9648 +21134,142085,18 +21135,116236,35 +21136,27270,12 +21137,128842,80 +21138,61212,10752 +21139,46872,18 +21140,59354,16 +21141,359245,53 +21142,61991,35 +21143,62762,10769 +21144,43771,9648 +21145,252102,12 +21146,1911,12 +21147,122221,53 +21148,549,36 +21149,128598,28 +21150,6077,28 +21151,11230,35 +21152,135832,10751 +21153,245175,10749 +21154,16022,10749 +21155,13396,16 +21156,5333,53 +21157,67,53 +21158,338312,35 +21159,214209,53 +21160,8954,18 +21161,119801,35 +21162,26358,28 +21163,273879,14 +21164,29444,18 +21165,10482,35 +21166,28774,878 +21167,73099,18 +21168,14041,18 +21169,43670,18 +21170,32610,18 +21171,9716,10402 +21172,13544,28 +21173,77875,10749 +21174,4266,53 +21175,115972,12 +21176,87481,10769 +21177,325712,14 +21178,23966,53 +21179,15016,10751 +21180,12101,53 +21181,26502,28 +21182,753,18 +21183,58529,18 +21184,26801,80 +21185,74525,18 +21186,43938,35 +21187,83079,10749 +21188,122023,18 +21189,31863,18 +21190,104275,16 +21191,347106,35 +21192,24331,28 +21193,16551,35 +21194,22160,80 +21195,28658,35 +21196,24266,18 +21197,46931,10402 +21198,45522,10749 +21199,33339,10402 +21200,95756,99 +21201,142051,99 +21202,200481,16 +21203,32233,28 +21204,81475,53 +21205,79500,35 +21206,32091,10769 +21207,48778,80 +21208,73262,53 +21209,80193,28 +21210,1956,9648 +21211,44693,27 +21212,42430,14 +21213,12605,18 +21214,30127,35 +21215,30149,35 +21216,357851,53 +21217,8470,80 +21218,37454,9648 +21219,35197,53 +21220,9870,18 +21221,86261,35 +21222,21148,10749 +21223,63376,10749 +21224,22899,28 +21225,14698,18 +21226,49098,10769 +21227,18646,10749 +21228,330459,28 +21229,92663,10402 +21230,425774,28 +21231,86920,28 +21232,239566,18 +21233,9815,18 +21234,338312,80 +21235,52437,10749 +21236,98203,53 +21237,115665,18 +21238,244580,18 +21239,10991,10751 +21240,5393,14 +21241,26752,35 +21242,10783,28 +21243,10222,28 +21244,149232,18 +21245,49815,18 +21246,360205,53 +21247,60505,53 +21248,104485,12 +21249,54796,10770 +21250,31306,35 +21251,35696,35 +21252,86820,14 +21253,10691,18 +21254,35435,878 +21255,330381,18 +21256,50506,14 +21257,179818,18 +21258,369697,53 +21259,39045,10751 +21260,89647,10749 +21261,416680,18 +21262,172828,27 +21263,809,10751 +21264,42258,10749 +21265,10674,12 +21266,11215,10749 +21267,142712,18 +21268,26430,10402 +21269,24825,28 +21270,33668,10749 +21271,129383,35 +21272,17644,10751 +21273,68797,10769 +21274,17241,10770 +21275,52302,14 +21276,428493,10749 +21277,45964,53 +21278,31592,27 +21279,92848,10751 +21280,438634,10751 +21281,265563,35 +21282,193,28 +21283,47703,14 +21284,64183,10751 +21285,245394,35 +21286,49834,10402 +21287,227383,10749 +21288,43434,36 +21289,22494,10749 +21290,17044,10749 +21291,19968,35 +21292,36247,878 +21293,11813,28 +21294,359025,12 +21295,36615,35 +21296,104297,37 +21297,287587,18 +21298,57419,18 +21299,13225,14 +21300,134890,28 +21301,51945,35 +21302,40990,18 +21303,410537,27 +21304,42187,28 +21305,8870,53 +21306,174278,18 +21307,10946,99 +21308,61267,18 +21309,42252,37 +21310,19336,878 +21311,441728,10749 +21312,53172,80 +21313,121052,9648 +21314,62045,9648 +21315,61541,14 +21316,262088,18 +21317,44434,10749 +21318,126141,99 +21319,147533,18 +21320,127380,12 +21321,29923,27 +21322,51426,10752 +21323,18783,10752 +21324,55615,16 +21325,44308,10749 +21326,69471,14 +21327,21508,99 +21328,407448,53 +21329,146238,18 +21330,36919,35 +21331,30349,18 +21332,45533,10769 +21333,10863,53 +21334,70046,27 +21335,36807,35 +21336,259183,80 +21337,1369,10752 +21338,82465,53 +21339,261101,18 +21340,408537,35 +21341,43773,18 +21342,76821,10749 +21343,37083,80 +21344,24403,99 +21345,27457,18 +21346,10003,12 +21347,50463,18 +21348,53048,35 +21349,30014,80 +21350,37865,53 +21351,27018,18 +21352,14207,10749 +21353,2291,18 +21354,43438,18 +21355,4380,18 +21356,47448,18 +21357,12516,18 +21358,284052,14 +21359,5165,18 +21360,20558,53 +21361,21629,35 +21362,186584,80 +21363,75001,35 +21364,10740,18 +21365,13483,53 +21366,13459,10751 +21367,256347,53 +21368,23069,10751 +21369,11908,35 +21370,100791,35 +21371,320873,35 +21372,95807,80 +21373,213842,18 +21374,37779,10749 +21375,256593,35 +21376,10391,18 +21377,20213,18 +21378,50186,18 +21379,102858,18 +21380,61527,18 +21381,16342,27 +21382,53953,27 +21383,57770,35 +21384,25426,53 +21385,25388,12 +21386,11799,35 +21387,339526,16 +21388,47956,28 +21389,31342,10749 +21390,91627,18 +21391,17622,28 +21392,48116,18 +21393,414771,35 +21394,21449,35 +21395,232462,53 +21396,63081,9648 +21397,330333,18 +21398,25872,18 +21399,27245,18 +21400,10005,53 +21401,13653,18 +21402,136752,80 +21403,403431,18 +21404,21950,18 +21405,29743,35 +21406,189,53 +21407,53406,35 +21408,84636,10770 +21409,401442,35 +21410,99934,12 +21411,32140,35 +21412,3574,53 +21413,335778,28 +21414,43828,28 +21415,3024,53 +21416,11647,18 +21417,43670,10749 +21418,60422,18 +21419,19594,16 +21420,42242,12 +21421,42664,12 +21422,300187,18 +21423,32235,878 +21424,112130,28 +21425,134475,35 +21426,71805,10751 +21427,290555,27 +21428,4988,10749 +21429,11227,35 +21430,366631,10749 +21431,341420,35 +21432,63260,28 +21433,287170,35 +21434,68472,28 +21435,35021,18 +21436,10897,10749 +21437,116894,53 +21438,7305,12 +21439,339944,12 +21440,109417,10402 +21441,68629,53 +21442,94055,28 +21443,284154,18 +21444,6079,35 +21445,195522,18 +21446,12763,10402 +21447,110416,14 +21448,140818,12 +21449,188468,10402 +21450,82098,80 +21451,381054,35 +21452,313896,10751 +21453,65777,9648 +21454,26851,99 +21455,111014,53 +21456,126560,18 +21457,20307,53 +21458,11664,35 +21459,128241,18 +21460,48209,14 +21461,14666,35 +21462,317214,18 +21463,11654,27 +21464,127329,18 +21465,163791,18 +21466,38955,80 +21467,117,36 +21468,447169,99 +21469,44519,10749 +21470,415255,27 +21471,104476,14 +21472,295914,28 +21473,16410,35 +21474,83481,18 +21475,4688,10749 +21476,20,18 +21477,19623,28 +21478,16014,35 +21479,1450,27 +21480,13551,18 +21481,223551,18 +21482,16032,27 +21483,35852,80 +21484,338729,14 +21485,94659,18 +21486,379925,10749 +21487,98277,53 +21488,3050,35 +21489,47878,35 +21490,20096,878 +21491,12479,35 +21492,75341,10769 +21493,121823,28 +21494,207270,53 +21495,86363,28 +21496,44012,10769 +21497,43987,35 +21498,195522,36 +21499,21765,35 +21500,58518,18 +21501,1369,28 +21502,2608,14 +21503,110573,18 +21504,44369,10749 +21505,30641,53 +21506,333372,35 +21507,45729,53 +21508,50875,18 +21509,9885,27 +21510,447236,10749 +21511,44631,12 +21512,343921,18 +21513,204994,10752 +21514,60153,35 +21515,74510,35 +21516,169934,16 +21517,64736,18 +21518,79234,18 +21519,84309,99 +21520,22494,878 +21521,264309,18 +21522,288788,10749 +21523,107916,18 +21524,48202,27 +21525,158483,14 +21526,219572,28 +21527,10198,16 +21528,1497,35 +21529,48585,27 +21530,53861,9648 +21531,390547,18 +21532,19350,14 +21533,1724,28 +21534,158150,10749 +21535,20430,35 +21536,72431,28 +21537,184098,10749 +21538,112675,36 +21539,118953,9648 +21540,28774,53 +21541,10005,28 +21542,17985,53 +21543,40719,37 +21544,62071,10769 +21545,241855,10749 +21546,53860,35 +21547,21544,10749 +21548,32595,27 +21549,352025,10749 +21550,44945,53 +21551,126043,99 +21552,318553,53 +21553,42502,18 +21554,44536,28 +21555,261273,878 +21556,203124,35 +21557,318781,36 +21558,242,18 +21559,50126,14 +21560,311093,10749 +21561,16075,10749 +21562,171594,9648 +21563,38189,28 +21564,37686,9648 +21565,15794,18 +21566,333372,16 +21567,19237,53 +21568,213914,18 +21569,125727,18 +21570,13241,18 +21571,55197,18 +21572,834,28 +21573,34459,53 +21574,17614,10749 +21575,66113,18 +21576,32021,80 +21577,260030,27 +21578,17744,28 +21579,433945,27 +21580,167583,53 +21581,325385,18 +21582,15359,878 +21583,301304,10770 +21584,13022,53 +21585,10373,10402 +21586,49158,27 +21587,39816,18 +21588,55190,18 +21589,2742,18 +21590,27053,18 +21591,98025,35 +21592,54491,16 +21593,81765,99 +21594,19625,35 +21595,229353,99 +21596,20674,18 +21597,43491,18 +21598,450530,10770 +21599,14878,28 +21600,36212,12 +21601,19255,10749 +21602,214086,18 +21603,11045,28 +21604,12186,18 +21605,58790,10769 +21606,198795,14 +21607,26946,27 +21608,33542,28 +21609,445,18 +21610,6977,53 +21611,419430,53 +21612,3164,878 +21613,198277,35 +21614,91961,18 +21615,63773,18 +21616,58197,10749 +21617,2976,10751 +21618,119172,35 +21619,15486,53 +21620,86970,53 +21621,22314,28 +21622,11045,53 +21623,27085,878 +21624,94527,18 +21625,106887,18 +21626,408272,18 +21627,43009,18 +21628,207696,28 +21629,28323,18 +21630,62755,28 +21631,15875,12 +21632,31700,53 +21633,321142,18 +21634,63178,35 +21635,327,53 +21636,91390,10769 +21637,72912,53 +21638,17687,28 +21639,62143,12 +21640,334890,18 +21641,76170,878 +21642,16090,18 +21643,25053,18 +21644,17168,18 +21645,33556,10769 +21646,20221,35 +21647,137726,35 +21648,187596,35 +21649,40864,18 +21650,27380,28 +21651,4762,18 +21652,15981,80 +21653,70581,28 +21654,44414,10749 +21655,130233,18 +21656,362541,18 +21657,52913,80 +21658,362541,35 +21659,234868,18 +21660,8063,28 +21661,64784,14 +21662,337758,18 +21663,20047,53 +21664,9894,53 +21665,33135,10749 +21666,49588,80 +21667,365544,12 +21668,287281,35 +21669,73700,18 +21670,7096,12 +21671,326359,16 +21672,14207,12 +21673,28165,28 +21674,69784,12 +21675,445727,35 +21676,43904,10749 +21677,63326,80 +21678,28437,878 +21679,25143,18 +21680,352960,14 +21681,179715,18 +21682,21027,37 +21683,11859,10749 +21684,228496,27 +21685,1415,35 +21686,42448,18 +21687,26378,53 +21688,60316,35 +21689,42703,28 +21690,18683,10749 +21691,13946,878 +21692,354859,10749 +21693,61049,28 +21694,2046,53 +21695,316170,35 +21696,363479,10749 +21697,118,10751 +21698,151652,18 +21699,68387,18 +21700,59882,10749 +21701,1550,35 +21702,60125,35 +21703,44287,10749 +21704,441881,10752 +21705,61563,10749 +21706,13205,16 +21707,333352,53 +21708,262,35 +21709,15873,28 +21710,72203,12 +21711,13393,18 +21712,138486,37 +21713,47112,18 +21714,81541,18 +21715,339547,27 +21716,117099,10769 +21717,14047,18 +21718,9816,10749 +21719,101852,10749 +21720,32202,18 +21721,18082,10769 +21722,12454,35 +21723,10299,53 +21724,244786,18 +21725,982,9648 +21726,198176,10402 +21727,11950,35 +21728,54415,14 +21729,448538,99 +21730,36736,35 +21731,82313,37 +21732,36736,16 +21733,10665,53 +21734,45167,878 +21735,40034,9648 +21736,4923,14 +21737,142061,16 +21738,11428,53 +21739,18634,53 +21740,10013,35 +21741,128120,53 +21742,383538,53 +21743,1673,28 +21744,1811,878 +21745,41469,10749 +21746,10973,12 +21747,18044,878 +21748,23152,35 +21749,110525,18 +21750,28658,10402 +21751,23367,10751 +21752,10103,18 +21753,41312,10752 +21754,121998,35 +21755,139571,35 +21756,29263,18 +21757,80771,35 +21758,13574,35 +21759,25969,18 +21760,9820,10751 +21761,41890,35 +21762,301875,10749 +21763,86600,53 +21764,55027,99 +21765,50722,18 +21766,39358,18 +21767,63762,10751 +21768,74629,878 +21769,30289,10770 +21770,10796,28 +21771,10539,10751 +21772,156700,18 +21773,70133,10752 +21774,44087,10752 +21775,455043,36 +21776,8989,35 +21777,109472,10749 +21778,14317,16 +21779,13180,36 +21780,88794,36 +21781,42664,10749 +21782,268893,10751 +21783,13539,10749 +21784,235199,10752 +21785,238952,99 +21786,10622,80 +21787,2002,10749 +21788,13777,35 +21789,12237,27 +21790,184741,35 +21791,12645,18 +21792,391995,36 +21793,38625,18 +21794,22371,878 +21795,38743,10402 +21796,78734,18 +21797,61541,35 +21798,50916,35 +21799,10748,10751 +21800,26368,16 +21801,41030,878 +21802,373541,9648 +21803,46169,10751 +21804,42094,35 +21805,279692,18 +21806,11983,53 +21807,14053,12 +21808,52918,99 +21809,150247,35 +21810,109213,28 +21811,245168,36 +21812,35016,10749 +21813,196789,10749 +21814,54795,18 +21815,60551,18 +21816,18512,28 +21817,11570,12 +21818,49963,35 +21819,211579,10749 +21820,41969,53 +21821,309809,16 +21822,336882,28 +21823,508,18 +21824,46169,14 +21825,33851,80 +21826,18447,37 +21827,110392,99 +21828,552,18 +21829,255160,18 +21830,34512,10770 +21831,107891,28 +21832,359105,28 +21833,15807,18 +21834,30973,36 +21835,27045,10749 +21836,15045,10751 +21837,116488,10749 +21838,38134,878 +21839,47310,10402 +21840,30780,53 +21841,79775,28 +21842,11983,18 +21843,11404,18 +21844,352199,18 +21845,14164,878 +21846,57100,9648 +21847,45266,28 +21848,1637,12 +21849,40916,10749 +21850,20907,18 +21851,70554,35 +21852,51276,18 +21853,1599,35 +21854,83079,10402 +21855,23196,80 +21856,63762,18 +21857,44522,80 +21858,41760,10749 +21859,63493,18 +21860,13354,16 +21861,193652,16 +21862,28169,28 +21863,14128,16 +21864,158739,18 +21865,193,12 +21866,40633,18 +21867,84105,10751 +21868,284135,35 +21869,404479,99 +21870,91551,18 +21871,88005,10749 +21872,100814,28 +21873,48488,35 +21874,61578,18 +21875,94803,18 +21876,40633,10749 +21877,293167,12 +21878,14405,10751 +21879,214187,99 +21880,97767,18 +21881,42580,35 +21882,72766,10749 +21883,14753,10749 +21884,34013,35 +21885,265019,53 +21886,283489,878 +21887,20123,80 +21888,43821,37 +21889,376570,27 +21890,40807,18 +21891,44921,37 +21892,434873,18 +21893,10192,35 +21894,24615,10751 +21895,155724,53 +21896,263260,35 +21897,31561,18 +21898,43155,10749 +21899,2486,28 +21900,9504,18 +21901,10193,10751 +21902,709,53 +21903,73952,18 +21904,63736,14 +21905,15749,12 +21906,7219,27 +21907,321160,10749 +21908,8988,18 +21909,105325,16 +21910,20992,28 +21911,82079,99 +21912,321315,18 +21913,10336,27 +21914,18758,28 +21915,37451,18 +21916,53739,18 +21917,28384,18 +21918,333354,28 +21919,31003,35 +21920,2503,18 +21921,70800,18 +21922,116439,18 +21923,99863,18 +21924,100270,27 +21925,13788,53 +21926,33557,18 +21927,369697,35 +21928,86274,35 +21929,370234,27 +21930,5804,80 +21931,142499,18 +21932,22899,14 +21933,99698,18 +21934,19606,36 +21935,35284,10752 +21936,47812,35 +21937,6643,37 +21938,332079,35 +21939,323665,878 +21940,197175,35 +21941,66893,18 +21942,362180,878 +21943,206657,10402 +21944,19918,35 +21945,120280,35 +21946,8128,18 +21947,20742,28 +21948,78705,18 +21949,353533,10751 +21950,452142,9648 +21951,15979,10769 +21952,253277,18 +21953,7916,28 +21954,259894,53 +21955,12,10751 +21956,345918,18 +21957,476,80 +21958,5955,53 +21959,11502,18 +21960,28044,53 +21961,48180,10769 +21962,30778,27 +21963,376538,53 +21964,303857,28 +21965,424661,10751 +21966,362844,27 +21967,74689,35 +21968,27621,18 +21969,283995,28 +21970,131966,18 +21971,81604,16 +21972,56744,18 +21973,195796,27 +21974,257296,12 +21975,10873,18 +21976,11943,37 +21977,79935,28 +21978,174188,14 +21979,84071,18 +21980,217412,35 +21981,388243,53 +21982,48488,16 +21983,31018,28 +21984,24752,16 +21985,251,53 +21986,13483,9648 +21987,65044,10769 +21988,330011,10749 +21989,33095,35 +21990,460870,99 +21991,5511,80 +21992,31262,18 +21993,33407,10751 +21994,44027,80 +21995,297633,35 +21996,32332,10749 +21997,170548,80 +21998,125619,18 +21999,25625,80 +22000,4191,18 +22001,107916,35 +22002,121674,18 +22003,22419,10749 +22004,81434,18 +22005,3580,80 +22006,79316,27 +22007,42021,18 +22008,242310,53 +22009,42571,9648 +22010,47112,53 +22011,18638,18 +22012,34598,80 +22013,28671,53 +22014,216374,53 +22015,30155,53 +22016,29239,14 +22017,324251,99 +22018,263855,18 +22019,20287,80 +22020,47065,27 +22021,169758,9648 +22022,83890,80 +22023,29694,18 +22024,2197,10752 +22025,19209,12 +22026,9753,27 +22027,43903,35 +22028,13529,878 +22029,37911,53 +22030,395914,28 +22031,66113,53 +22032,128216,99 +22033,41608,37 +22034,57326,878 +22035,13162,35 +22036,22140,27 +22037,90414,10749 +22038,25499,35 +22039,22602,28 +22040,101242,35 +22041,4529,28 +22042,203780,18 +22043,77776,35 +22044,94725,18 +22045,295273,28 +22046,32043,53 +22047,71381,35 +22048,14096,18 +22049,76176,35 +22050,11798,80 +22051,100270,35 +22052,357130,35 +22053,13408,28 +22054,69668,18 +22055,9948,35 +22056,13436,18 +22057,124963,80 +22058,257095,16 +22059,157,12 +22060,152736,80 +22061,131737,80 +22062,35856,18 +22063,30054,28 +22064,18,12 +22065,28120,80 +22066,39101,28 +22067,45576,99 +22068,176,27 +22069,115972,14 +22070,54690,10749 +22071,62213,35 +22072,78568,10769 +22073,112558,18 +22074,49521,878 +22075,113148,18 +22076,402672,12 +22077,11618,27 +22078,15371,16 +22079,351242,18 +22080,47324,18 +22081,6980,18 +22082,36253,35 +22083,79054,878 +22084,18492,10769 +22085,21142,12 +22086,22752,35 +22087,305147,18 +22088,209401,18 +22089,17082,53 +22090,22939,35 +22091,287170,10749 +22092,66193,28 +22093,29224,35 +22094,152570,10749 +22095,21135,10749 +22096,68247,37 +22097,3078,10749 +22098,11614,18 +22099,222487,18 +22100,376047,18 +22101,440777,28 +22102,157843,18 +22103,69165,27 +22104,50531,35 +22105,264393,18 +22106,205481,53 +22107,308640,18 +22108,434873,35 +22109,9314,18 +22110,42641,10749 +22111,238456,99 +22112,70734,18 +22113,65973,16 +22114,167810,14 +22115,72856,18 +22116,810,35 +22117,20704,35 +22118,20561,10769 +22119,7445,10752 +22120,34518,35 +22121,37718,14 +22122,39230,10752 +22123,28363,9648 +22124,11688,14 +22125,16177,35 +22126,43648,35 +22127,40095,18 +22128,2295,35 +22129,50374,53 +22130,16281,14 +22131,27805,10402 +22132,342917,28 +22133,141733,80 +22134,84903,18 +22135,177474,10749 +22136,38326,9648 +22137,23069,12 +22138,235,18 +22139,31472,27 +22140,377362,14 +22141,337549,10770 +22142,413421,35 +22143,25921,10402 +22144,44682,27 +22145,419459,35 +22146,10473,28 +22147,61699,99 +22148,88486,27 +22149,15934,36 +22150,343795,18 +22151,21198,27 +22152,258585,18 +22153,222461,53 +22154,13766,12 +22155,29787,878 +22156,2144,35 +22157,86261,18 +22158,8929,10752 +22159,71701,27 +22160,134806,10770 +22161,1481,18 +22162,26687,9648 +22163,8014,10749 +22164,49524,28 +22165,9977,18 +22166,18040,53 +22167,15559,99 +22168,93863,18 +22169,3144,27 +22170,47119,18 +22171,38322,28 +22172,4538,18 +22173,243935,18 +22174,81312,10749 +22175,93856,27 +22176,91691,27 +22177,391375,35 +22178,16820,35 +22179,9959,53 +22180,124680,18 +22181,114790,35 +22182,2897,10751 +22183,95627,53 +22184,10866,9648 +22185,1361,14 +22186,45243,35 +22187,73775,10749 +22188,31162,28 +22189,662,878 +22190,62855,878 +22191,278939,80 +22192,149910,10751 +22193,79783,12 +22194,51406,35 +22195,9598,35 +22196,136582,18 +22197,84971,18 +22198,26963,16 +22199,59249,10749 +22200,9877,27 +22201,35626,27 +22202,28973,35 +22203,188468,35 +22204,40490,35 +22205,78096,18 +22206,167073,18 +22207,70585,35 +22208,38010,35 +22209,30198,878 +22210,10364,10752 +22211,42641,18 +22212,32233,18 +22213,38978,37 +22214,209921,16 +22215,149868,53 +22216,10804,35 +22217,18731,10769 +22218,139519,53 +22219,31005,18 +22220,111839,10749 +22221,334298,35 +22222,78339,878 +22223,28263,28 +22224,289232,18 +22225,68050,80 +22226,20481,27 +22227,30973,18 +22228,38404,35 +22229,9296,18 +22230,83831,37 +22231,47795,18 +22232,95037,35 +22233,107028,10749 +22234,31299,18 +22235,30995,27 +22236,16331,10770 +22237,49717,10749 +22238,10193,35 +22239,11535,28 +22240,239534,10749 +22241,57203,27 +22242,205864,18 +22243,43878,10749 +22244,8199,18 +22245,31512,18 +22246,365339,53 +22247,16154,9648 +22248,55624,10769 +22249,43200,35 +22250,2566,18 +22251,82469,28 +22252,332788,35 +22253,2963,878 +22254,19823,53 +22255,302026,28 +22256,90034,10751 +22257,1647,28 +22258,15263,37 +22259,910,80 +22260,88529,28 +22261,10821,36 +22262,105703,18 +22263,77625,80 +22264,347945,9648 +22265,125727,28 +22266,393659,10770 +22267,69065,18 +22268,336885,18 +22269,274990,18 +22270,10643,28 +22271,5559,12 +22272,26283,18 +22273,18098,14 +22274,254446,99 +22275,50526,10769 +22276,57011,53 +22277,43902,10749 +22278,5721,10749 +22279,39936,35 +22280,24739,10749 +22281,25655,28 +22282,9396,12 +22283,3048,99 +22284,18557,27 +22285,10889,53 +22286,213443,10749 +22287,844,878 +22288,35026,37 +22289,362974,53 +22290,35652,10749 +22291,286940,16 +22292,75595,18 +22293,298396,35 +22294,157305,35 +22295,55257,10749 +22296,10916,18 +22297,16962,14 +22298,27052,10752 +22299,98644,10749 +22300,1624,35 +22301,3028,878 +22302,30994,18 +22303,13681,10751 +22304,221732,12 +22305,274127,10749 +22306,12499,10751 +22307,120370,18 +22308,24411,28 +22309,300601,35 +22310,215999,80 +22311,213681,35 +22312,73262,878 +22313,13163,10749 +22314,13972,10749 +22315,382155,18 +22316,352025,35 +22317,468707,10749 +22318,630,10751 +22319,73872,18 +22320,263627,35 +22321,9034,18 +22322,208091,35 +22323,9987,27 +22324,12412,18 +22325,262542,878 +22326,18111,27 +22327,425841,35 +22328,52045,18 +22329,74924,35 +22330,336167,27 +22331,290762,35 +22332,78362,18 +22333,112503,37 +22334,267579,18 +22335,144229,53 +22336,64786,10749 +22337,16873,28 +22338,34127,10402 +22339,26326,35 +22340,336882,53 +22341,59930,35 +22342,73027,18 +22343,74879,18 +22344,14642,878 +22345,51434,18 +22346,143073,10749 +22347,56527,53 +22348,435,53 +22349,51120,10751 +22350,5646,37 +22351,215061,16 +22352,67377,10752 +22353,82941,18 +22354,90956,9648 +22355,73424,35 +22356,61985,37 +22357,2274,18 +22358,82492,53 +22359,171759,10751 +22360,27317,35 +22361,1956,18 +22362,32834,18 +22363,714,28 +22364,18927,28 +22365,8869,35 +22366,391778,18 +22367,70881,18 +22368,49876,18 +22369,1483,27 +22370,43811,18 +22371,11576,28 +22372,73690,16 +22373,82153,10402 +22374,9835,80 +22375,80468,53 +22376,108788,27 +22377,219233,18 +22378,41852,35 +22379,129542,18 +22380,120977,18 +22381,58251,18 +22382,14293,35 +22383,205943,9648 +22384,277967,80 +22385,28741,53 +22386,120528,99 +22387,363807,35 +22388,35569,18 +22389,106020,35 +22390,45184,10749 +22391,9080,35 +22392,92769,18 +22393,229134,18 +22394,42218,878 +22395,26941,10749 +22396,403119,53 +22397,108501,28 +22398,38547,35 +22399,43743,18 +22400,115626,10751 +22401,76312,18 +22402,17796,35 +22403,310001,35 +22404,86413,18 +22405,72207,35 +22406,24123,10749 +22407,167956,28 +22408,89242,18 +22409,101908,18 +22410,284246,99 +22411,24801,10749 +22412,12249,35 +22413,211088,18 +22414,84944,14 +22415,210052,10752 +22416,17100,27 +22417,112961,35 +22418,18843,14 +22419,403330,10751 +22420,162374,35 +22421,65089,10749 +22422,42501,10749 +22423,364810,18 +22424,15457,18 +22425,10013,18 +22426,92950,18 +22427,37958,28 +22428,189696,16 +22429,49060,80 +22430,14534,18 +22431,26518,18 +22432,103073,10769 +22433,41552,80 +22434,341490,18 +22435,43868,10749 +22436,417820,18 +22437,38034,28 +22438,89591,53 +22439,29054,35 +22440,150657,35 +22441,258363,18 +22442,121940,28 +22443,63186,18 +22444,456101,9648 +22445,69775,80 +22446,10396,80 +22447,6935,80 +22448,177572,35 +22449,191312,27 +22450,63194,99 +22451,90110,16 +22452,32904,27 +22453,22448,10749 +22454,316654,80 +22455,48281,18 +22456,10915,35 +22457,49588,35 +22458,44593,35 +22459,119010,9648 +22460,13072,18 +22461,356900,18 +22462,40041,878 +22463,390547,35 +22464,60784,18 +22465,37789,10769 +22466,69065,28 +22467,32227,35 +22468,53423,10752 +22469,118180,99 +22470,2721,53 +22471,10344,27 +22472,8277,35 +22473,125943,35 +22474,24584,10749 +22475,123611,35 +22476,58462,10749 +22477,49787,53 +22478,365339,878 +22479,209032,35 +22480,26119,12 +22481,8886,18 +22482,41923,16 +22483,99453,10769 +22484,248698,18 +22485,14615,18 +22486,204255,35 +22487,17258,10749 +22488,286372,27 +22489,209209,16 +22490,112456,28 +22491,57683,80 +22492,18939,878 +22493,15019,18 +22494,43342,18 +22495,14128,10749 +22496,11458,53 +22497,248417,12 +22498,273404,9648 +22499,10539,12 +22500,81538,99 +22501,323679,35 +22502,43753,9648 +22503,84575,35 +22504,6589,28 +22505,12540,35 +22506,21191,80 +22507,82598,36 +22508,89116,18 +22509,14400,18 +22510,10154,80 +22511,182127,28 +22512,31675,36 +22513,39493,10769 +22514,159824,10751 +22515,101217,35 +22516,47201,28 +22517,63291,35 +22518,20444,35 +22519,18774,18 +22520,289723,18 +22521,188765,18 +22522,301228,9648 +22523,17074,28 +22524,4960,18 +22525,10910,10402 +22526,314283,35 +22527,44669,80 +22528,17845,9648 +22529,245917,35 +22530,5172,878 +22531,22582,16 +22532,44657,12 +22533,52735,10749 +22534,140470,28 +22535,10047,36 +22536,42619,18 +22537,31921,10749 +22538,41078,14 +22539,13957,10749 +22540,30641,10770 +22541,51786,12 +22542,220976,18 +22543,14703,18 +22544,46827,36 +22545,23524,99 +22546,72640,16 +22547,191820,18 +22548,243683,10749 +22549,116236,18 +22550,11706,18 +22551,172548,18 +22552,7305,18 +22553,115161,10770 +22554,70122,12 +22555,283686,53 +22556,32044,18 +22557,13506,36 +22558,26326,10402 +22559,166027,18 +22560,115239,18 +22561,153717,14 +22562,41714,18 +22563,36527,18 +22564,240832,28 +22565,22803,80 +22566,19545,28 +22567,441881,36 +22568,23518,18 +22569,2105,35 +22570,374247,14 +22571,69266,10770 +22572,45610,53 +22573,29695,18 +22574,21708,35 +22575,205361,36 +22576,32928,12 +22577,315362,80 +22578,57278,14 +22579,316268,27 +22580,17046,14 +22581,314285,35 +22582,120370,878 +22583,43849,35 +22584,183412,27 +22585,20174,18 +22586,190853,18 +22587,77625,53 +22588,203351,28 +22589,13318,18 +22590,40208,10402 +22591,26880,10749 +22592,111759,37 +22593,120172,18 +22594,96921,18 +22595,316268,53 +22596,417936,10770 +22597,50364,35 +22598,12994,878 +22599,15414,53 +22600,246355,27 +22601,112991,18 +22602,9403,18 +22603,280422,80 +22604,39839,10769 +22605,78233,35 +22606,62143,35 +22607,1251,10752 +22608,86727,10752 +22609,39979,10769 +22610,24978,28 +22611,60160,27 +22612,75174,18 +22613,422548,35 +22614,68737,14 +22615,61533,18 +22616,340101,10752 +22617,68472,80 +22618,24810,18 +22619,814,35 +22620,45069,10770 +22621,17236,10749 +22622,17820,10402 +22623,413052,53 +22624,91443,53 +22625,28480,14 +22626,12912,35 +22627,33563,35 +22628,46729,35 +22629,452142,80 +22630,341420,27 +22631,76203,36 +22632,45874,37 +22633,15916,18 +22634,69635,10751 +22635,15020,18 +22636,47065,53 +22637,66526,53 +22638,96118,35 +22639,334299,35 +22640,220820,80 +22641,30680,53 +22642,2662,27 +22643,54155,35 +22644,37084,53 +22645,351901,28 +22646,332839,53 +22647,53211,16 +22648,84071,80 +22649,13440,9648 +22650,38244,18 +22651,42191,80 +22652,51601,18 +22653,390357,35 +22654,40130,9648 +22655,19108,12 +22656,169656,35 +22657,289190,10749 +22658,1995,53 +22659,120615,37 +22660,82,28 +22661,34806,35 +22662,18447,18 +22663,112304,28 +22664,88273,18 +22665,52302,27 +22666,52034,28 +22667,3173,28 +22668,145220,80 +22669,32235,14 +22670,371942,10770 +22671,13285,14 +22672,41689,18 +22673,22881,18 +22674,5721,35 +22675,167,878 +22676,19995,14 +22677,57770,12 +22678,40850,53 +22679,251232,12 +22680,87123,80 +22681,27283,18 +22682,241258,27 +22683,285840,27 +22684,23289,35 +22685,31048,18 +22686,27526,53 +22687,14087,10752 +22688,64850,35 +22689,413337,18 +22690,79120,18 +22691,89242,12 +22692,17711,12 +22693,57011,28 +22694,396643,14 +22695,49524,14 +22696,31306,18 +22697,10145,53 +22698,10311,18 +22699,50166,16 +22700,30330,35 +22701,122019,18 +22702,40085,10749 +22703,58832,35 +22704,13728,35 +22705,10871,12 +22706,29168,27 +22707,35337,35 +22708,17111,27 +22709,358724,18 +22710,37923,10749 +22711,75137,28 +22712,17339,28 +22713,13912,35 +22714,81549,18 +22715,254679,36 +22716,397717,18 +22717,37590,18 +22718,104471,27 +22719,308671,18 +22720,458618,99 +22721,86254,53 +22722,52808,28 +22723,13763,10749 +22724,66247,35 +22725,10652,28 +22726,44257,10402 +22727,28134,35 +22728,15019,35 +22729,50761,35 +22730,7288,53 +22731,14016,53 +22732,3701,80 +22733,53150,878 +22734,59722,878 +22735,84942,27 +22736,258509,12 +22737,20372,53 +22738,62720,53 +22739,37315,35 +22740,306555,18 +22741,411741,18 +22742,209410,18 +22743,62289,28 +22744,399106,16 +22745,28063,878 +22746,132939,37 +22747,82485,28 +22748,29054,12 +22749,62837,10751 +22750,184802,35 +22751,71945,9648 +22752,192133,18 +22753,291865,27 +22754,172008,18 +22755,44502,18 +22756,32657,14 +22757,13393,35 +22758,334557,53 +22759,24238,16 +22760,21214,35 +22761,966,37 +22762,2734,36 +22763,69075,27 +22764,254047,10749 +22765,27112,18 +22766,19731,35 +22767,20879,10749 +22768,4011,35 +22769,79775,10770 +22770,42614,18 +22771,69404,18 +22772,30637,27 +22773,7085,37 +22774,351211,53 +22775,9495,28 +22776,166621,18 +22777,9354,12 +22778,253337,10751 +22779,18143,10749 +22780,11545,18 +22781,212996,18 +22782,114284,35 +22783,9778,10749 +22784,377428,10749 +22785,333385,35 +22786,31945,18 +22787,3577,53 +22788,52612,35 +22789,85743,18 +22790,4703,10749 +22791,42521,16 +22792,56596,18 +22793,20934,14 +22794,148284,878 +22795,151937,10770 +22796,47231,18 +22797,367882,53 +22798,43915,35 +22799,126090,35 +22800,288101,99 +22801,34774,10751 +22802,16074,28 +22803,64928,10749 +22804,21671,35 +22805,2397,878 +22806,169,878 +22807,55152,27 +22808,254420,18 +22809,361380,16 +22810,17137,18 +22811,48775,80 +22812,345915,28 +22813,156360,10749 +22814,204712,16 +22815,64847,18 +22816,13516,99 +22817,47412,10770 +22818,3597,9648 +22819,12683,14 +22820,128246,10749 +22821,66949,36 +22822,8491,35 +22823,63706,878 +22824,1482,18 +22825,16659,18 +22826,209406,10749 +22827,227257,14 +22828,51875,80 +22829,38761,878 +22830,70086,99 +22831,4550,18 +22832,18392,53 +22833,67025,10749 +22834,264397,878 +22835,10265,53 +22836,192137,18 +22837,54660,35 +22838,27358,878 +22839,31532,10402 +22840,6948,9648 +22841,104462,35 +22842,28345,10402 +22843,20424,53 +22844,354296,35 +22845,578,53 +22846,329690,35 +22847,9945,27 +22848,33534,14 +22849,330333,35 +22850,77056,10749 +22851,18633,18 +22852,38742,35 +22853,62034,10749 +22854,127424,18 +22855,120457,35 +22856,9639,18 +22857,3064,14 +22858,92968,878 +22859,42966,18 +22860,44754,18 +22861,118794,16 +22862,116973,12 +22863,1396,36 +22864,8985,35 +22865,43896,18 +22866,10805,28 +22867,390782,99 +22868,33407,12 +22869,35032,10749 +22870,69898,10402 +22871,103689,18 +22872,9928,35 +22873,17606,9648 +22874,691,28 +22875,248933,37 +22876,108788,14 +22877,17875,18 +22878,33107,80 +22879,71503,27 +22880,15601,9648 +22881,264555,18 +22882,5955,9648 +22883,285946,37 +22884,15199,18 +22885,352197,99 +22886,290714,18 +22887,72545,28 +22888,1819,10749 +22889,28858,99 +22890,305342,35 +22891,26936,35 +22892,116463,27 +22893,40985,18 +22894,278901,14 +22895,45522,18 +22896,275269,53 +22897,9099,35 +22898,28710,18 +22899,74192,10749 +22900,57683,18 +22901,70874,35 +22902,159211,27 +22903,27221,18 +22904,101325,18 +22905,217038,35 +22906,3520,35 +22907,118408,14 +22908,340627,18 +22909,300667,35 +22910,47911,10402 +22911,265180,18 +22912,124625,18 +22913,13436,9648 +22914,332794,12 +22915,220674,10752 +22916,47507,10749 +22917,44398,36 +22918,11496,37 +22919,48287,35 +22920,204768,35 +22921,69619,28 +22922,145760,16 +22923,30844,14 +22924,146341,80 +22925,85564,80 +22926,1165,18 +22927,258509,35 +22928,14862,27 +22929,57680,10751 +22930,34151,35 +22931,17100,53 +22932,1382,18 +22933,9945,18 +22934,27102,18 +22935,269795,18 +22936,169298,53 +22937,11205,80 +22938,26761,53 +22939,59704,10749 +22940,174000,18 +22941,26693,27 +22942,47867,10751 +22943,68123,10769 +22944,41171,10749 +22945,29376,35 +22946,148622,18 +22947,15258,99 +22948,11531,27 +22949,84827,35 +22950,12707,18 +22951,245706,18 +22952,219666,18 +22953,64129,10752 +22954,76494,10749 +22955,52221,18 +22956,92384,53 +22957,25645,35 +22958,691,53 +22959,38526,35 +22960,22476,28 +22961,13440,53 +22962,230182,35 +22963,314065,27 +22964,322487,16 +22965,714,53 +22966,15807,10752 +22967,149149,18 +22968,45988,10752 +22969,334461,35 +22970,197785,18 +22971,94663,10752 +22972,334461,10770 +22973,101006,18 +22974,14293,53 +22975,21948,28 +22976,282768,35 +22977,41759,878 +22978,3172,10749 +22979,403605,53 +22980,419522,35 +22981,13680,35 +22982,320061,10751 +22983,33704,35 +22984,8429,36 +22985,78507,18 +22986,79120,10749 +22987,336845,80 +22988,74436,28 +22989,59356,16 +22990,8355,12 +22991,188858,10749 +22992,2924,80 +22993,41759,27 +22994,28047,18 +22995,25551,80 +22996,10733,10752 +22997,46797,10749 +22998,82624,18 +22999,244801,18 +23000,19731,28 +23001,81708,36 +23002,9607,14 +23003,30996,27 +23004,15734,10749 +23005,120977,10749 +23006,38724,18 +23007,14931,18 +23008,5319,18 +23009,33642,18 +23010,112161,35 +23011,53472,9648 +23012,278939,10749 +23013,416256,53 +23014,329550,10749 +23015,99242,10751 +23016,39781,18 +23017,330878,35 +23018,101338,10769 +23019,48273,16 +23020,27523,28 +23021,201085,9648 +23022,11351,27 +23023,17708,80 +23024,347835,99 +23025,11553,18 +23026,19238,10749 +23027,79596,16 +23028,70026,18 +23029,49038,10749 +23030,109251,10749 +23031,72545,878 +23032,74199,10402 +23033,268735,18 +23034,85658,99 +23035,57924,36 +23036,16560,18 +23037,109587,12 +23038,82313,12 +23039,116979,53 +23040,123777,18 +23041,10137,10751 +23042,14868,10751 +23043,11362,18 +23044,20481,14 +23045,65456,18 +23046,24411,53 +23047,18698,14 +23048,172475,35 +23049,34128,10749 +23050,27338,10770 +23051,1877,14 +23052,280617,878 +23053,82495,53 +23054,24767,12 +23055,57993,18 +23056,334394,14 +23057,81720,80 +23058,98566,35 +23059,44260,99 +23060,198993,18 +23061,356296,18 +23062,325645,35 +23063,58372,18 +23064,24971,10769 +23065,264646,16 +23066,259358,10751 +23067,371504,80 +23068,458808,99 +23069,404459,10749 +23070,92809,27 +23071,577,35 +23072,363439,53 +23073,30141,10402 +23074,443007,53 +23075,25684,53 +23076,23599,28 +23077,48281,10749 +23078,46883,10749 +23079,32085,14 +23080,9629,37 +23081,174278,80 +23082,162382,35 +23083,120259,18 +23084,9812,80 +23085,342588,878 +23086,64928,35 +23087,46660,35 +23088,42260,18 +23089,173494,35 +23090,88359,35 +23091,43369,35 +23092,52728,878 +23093,87349,18 +23094,16358,18 +23095,14510,14 +23096,199602,18 +23097,63315,10749 +23098,245775,18 +23099,14467,10749 +23100,115616,35 +23101,11511,35 +23102,26983,80 +23103,31216,18 +23104,27462,878 +23105,88811,18 +23106,14705,80 +23107,10841,36 +23108,43079,35 +23109,27300,27 +23110,267497,28 +23111,42225,18 +23112,134477,35 +23113,35200,28 +23114,24170,18 +23115,85350,18 +23116,12236,35 +23117,52856,10751 +23118,144183,35 +23119,1903,9648 +23120,17845,53 +23121,73562,18 +23122,123634,18 +23123,55628,28 +23124,15081,14 +23125,16016,35 +23126,83732,18 +23127,21519,28 +23128,84449,28 +23129,291413,27 +23130,63360,27 +23131,84496,80 +23132,72753,35 +23133,22448,80 +23134,142391,878 +23135,16428,35 +23136,19736,10751 +23137,79500,10751 +23138,2861,18 +23139,43855,80 +23140,209263,18 +23141,14552,18 +23142,8463,35 +23143,24086,14 +23144,18222,53 +23145,91548,53 +23146,215379,18 +23147,25388,18 +23148,362765,9648 +23149,82626,10749 +23150,119374,10749 +23151,18551,9648 +23152,91390,18 +23153,35694,18 +23154,9563,18 +23155,9352,35 +23156,79372,35 +23157,13792,18 +23158,217341,878 +23159,396392,10749 +23160,27414,27 +23161,70667,36 +23162,273096,18 +23163,119569,14 +23164,278706,878 +23165,18178,18 +23166,187022,18 +23167,53685,35 +23168,44129,18 +23169,258480,10749 +23170,44223,35 +23171,42188,10749 +23172,18620,18 +23173,16980,18 +23174,41073,18 +23175,82650,35 +23176,13346,35 +23177,28665,10402 +23178,353462,36 +23179,18739,10749 +23180,286971,53 +23181,17825,18 +23182,196789,35 +23183,61765,12 +23184,11572,16 +23185,96701,14 +23186,68139,18 +23187,46570,53 +23188,55283,10769 +23189,1896,36 +23190,46227,10751 +23191,10626,18 +23192,301491,35 +23193,9611,35 +23194,447236,18 +23195,354667,53 +23196,167882,18 +23197,391642,10749 +23198,28597,35 +23199,9312,14 +23200,145668,27 +23201,354296,53 +23202,126832,99 +23203,169,28 +23204,372226,53 +23205,85126,80 +23206,12622,80 +23207,32043,27 +23208,197,36 +23209,325039,18 +23210,410118,53 +23211,31665,35 +23212,277355,53 +23213,25913,10751 +23214,84089,10769 +23215,2998,10749 +23216,16997,37 +23217,181753,9648 +23218,12158,35 +23219,24971,36 +23220,11800,10749 +23221,36243,18 +23222,14142,53 +23223,47962,18 +23224,256740,18 +23225,13042,16 +23226,7916,878 +23227,30695,10769 +23228,17711,35 +23229,128246,14 +23230,121823,18 +23231,103201,53 +23232,172785,35 +23233,19166,27 +23234,107781,27 +23235,362703,37 +23236,203890,27 +23237,4380,35 +23238,270759,80 +23239,60160,14 +23240,31347,14 +23241,9070,14 +23242,13574,10749 +23243,12704,12 +23244,64968,18 +23245,2143,10752 +23246,47525,10749 +23247,43931,53 +23248,146216,53 +23249,363757,35 +23250,30624,53 +23251,21627,35 +23252,64882,10751 +23253,24963,53 +23254,58995,10769 +23255,229559,18 +23256,94874,53 +23257,70636,53 +23258,50364,10769 +23259,248698,35 +23260,178927,35 +23261,55956,878 +23262,15239,878 +23263,83013,18 +23264,125229,28 +23265,31509,10749 +23266,11227,18 +23267,9550,10749 +23268,63876,18 +23269,380856,35 +23270,63825,10749 +23271,343702,35 +23272,33460,10769 +23273,233466,99 +23274,65874,18 +23275,26173,12 +23276,42345,18 +23277,17577,27 +23278,97707,10770 +23279,124517,14 +23280,19509,18 +23281,194722,10749 +23282,256328,99 +23283,12450,28 +23284,1966,18 +23285,21620,35 +23286,8619,12 +23287,68163,80 +23288,401427,878 +23289,70874,10751 +23290,9812,28 +23291,128140,99 +23292,113091,35 +23293,18442,53 +23294,59408,10749 +23295,125705,18 +23296,173443,18 +23297,921,18 +23298,229610,35 +23299,62838,10749 +23300,148347,35 +23301,300983,18 +23302,74103,35 +23303,329868,35 +23304,220488,10749 +23305,2976,10402 +23306,9286,9648 +23307,346473,35 +23308,11655,53 +23309,55435,28 +23310,144229,18 +23311,65367,18 +23312,69727,28 +23313,59197,878 +23314,1726,878 +23315,270774,28 +23316,106417,53 +23317,413421,10749 +23318,28320,18 +23319,400174,18 +23320,88224,18 +23321,27461,18 +23322,172,53 +23323,34459,18 +23324,79034,18 +23325,128169,10769 +23326,50327,10751 +23327,80168,18 +23328,38883,80 +23329,64792,27 +23330,2974,80 +23331,70712,10749 +23332,46885,27 +23333,292014,12 +23334,92796,9648 +23335,222715,18 +23336,97206,27 +23337,46247,10751 +23338,323315,35 +23339,38010,18 +23340,417870,35 +23341,327,80 +23342,10020,14 +23343,16390,35 +23344,58133,28 +23345,18698,35 +23346,13105,10751 +23347,12279,12 +23348,32834,35 +23349,377447,28 +23350,127369,99 +23351,29233,10751 +23352,213110,12 +23353,94525,18 +23354,22020,28 +23355,125513,12 +23356,77094,35 +23357,39358,9648 +23358,55236,28 +23359,30875,27 +23360,91961,80 +23361,215741,99 +23362,132759,18 +23363,106537,10770 +23364,304134,27 +23365,68629,18 +23366,208434,12 +23367,253794,27 +23368,356326,53 +23369,354105,18 +23370,176143,10752 +23371,16460,16 +23372,31018,18 +23373,22093,18 +23374,79995,10749 +23375,138730,27 +23376,85023,18 +23377,142145,12 +23378,84105,10770 +23379,70981,12 +23380,15556,18 +23381,150065,18 +23382,68976,80 +23383,382155,80 +23384,8847,99 +23385,23452,35 +23386,36530,10770 +23387,117499,18 +23388,289198,28 +23389,30995,35 +23390,86603,53 +23391,107287,18 +23392,18,53 +23393,42267,80 +23394,10077,878 +23395,37645,80 +23396,24874,27 +23397,44256,80 +23398,67822,53 +23399,75138,28 +23400,524,80 +23401,40047,10402 +23402,16066,18 +23403,266425,18 +23404,373200,28 +23405,19665,18 +23406,26510,18 +23407,241930,18 +23408,21968,18 +23409,9404,28 +23410,81434,35 +23411,33851,53 +23412,10527,16 +23413,13993,18 +23414,7014,35 +23415,278706,18 +23416,369885,10749 +23417,357706,18 +23418,22029,80 +23419,129,16 +23420,20758,18 +23421,24077,35 +23422,57816,53 +23423,81313,10769 +23424,174645,18 +23425,3064,10749 +23426,50590,18 +23427,32226,18 +23428,21282,35 +23429,14108,99 +23430,8329,27 +23431,51581,35 +23432,45205,35 +23433,55624,99 +23434,175822,53 +23435,81409,10749 +23436,24916,35 +23437,124080,99 +23438,11361,27 +23439,118737,53 +23440,46786,35 +23441,16082,18 +23442,10097,18 +23443,38787,35 +23444,205939,12 +23445,19274,35 +23446,32298,10749 +23447,31377,12 +23448,29290,878 +23449,285135,10770 +23450,192558,18 +23451,11653,35 +23452,43172,35 +23453,12536,10751 +23454,10235,36 +23455,44238,18 +23456,48231,18 +23457,11953,10752 +23458,35451,18 +23459,88794,80 +23460,14873,12 +23461,14907,27 +23462,74585,10749 +23463,18381,10769 +23464,33272,36 +23465,49410,35 +23466,13437,35 +23467,88811,80 +23468,385654,35 +23469,48962,10749 +23470,10320,18 +23471,12171,27 +23472,410718,10770 +23473,299715,10749 +23474,408220,16 +23475,43002,18 +23476,15213,18 +23477,26736,18 +23478,28736,35 +23479,47405,10769 +23480,131457,10749 +23481,67748,18 +23482,102444,878 +23483,352327,18 +23484,13017,16 +23485,13477,10749 +23486,76703,10749 +23487,32648,12 +23488,46660,10749 +23489,141955,35 +23490,377287,35 +23491,10674,10751 +23492,40744,18 +23493,415633,27 +23494,28032,10751 +23495,40804,28 +23496,9948,12 +23497,324150,9648 +23498,418378,35 +23499,336666,18 +23500,91067,18 +23501,207696,18 +23502,105210,35 +23503,285213,28 +23504,163018,18 +23505,418969,9648 +23506,78373,35 +23507,28586,27 +23508,16137,16 +23509,49792,18 +23510,8128,16 +23511,2075,80 +23512,11859,28 +23513,25977,53 +23514,66702,10749 +23515,324263,99 +23516,157409,12 +23517,43141,35 +23518,26182,35 +23519,31618,18 +23520,4825,35 +23521,11055,28 +23522,458428,12 +23523,240881,18 +23524,19082,99 +23525,34560,35 +23526,9613,53 +23527,3539,18 +23528,31003,53 +23529,69828,28 +23530,97598,10749 +23531,301325,9648 +23532,42989,35 +23533,51349,16 +23534,142115,18 +23535,70874,10749 +23536,47794,53 +23537,32845,80 +23538,3478,18 +23539,26299,10749 +23540,257344,878 +23541,118957,28 +23542,7006,18 +23543,289,10749 +23544,14782,53 +23545,266044,35 +23546,267793,10749 +23547,248833,16 +23548,69103,16 +23549,71672,27 +23550,9507,878 +23551,28270,28 +23552,88863,80 +23553,21956,9648 +23554,24619,18 +23555,47921,10749 +23556,31527,36 +23557,29952,18 +23558,2778,35 +23559,62764,14 +23560,79707,14 +23561,5767,35 +23562,138496,9648 +23563,390343,99 +23564,70086,35 +23565,9951,35 +23566,1689,18 +23567,15749,18 +23568,5917,18 +23569,161602,80 +23570,118408,16 +23571,40087,35 +23572,12561,878 +23573,27245,53 +23574,289183,35 +23575,110412,27 +23576,9296,35 +23577,19996,28 +23578,341077,53 +23579,360784,27 +23580,10897,35 +23581,300210,99 +23582,185111,35 +23583,56095,28 +23584,46658,28 +23585,2897,10749 +23586,42709,27 +23587,8856,12 +23588,315855,35 +23589,248888,99 +23590,43432,18 +23591,30352,35 +23592,44593,10749 +23593,75,35 +23594,119816,10749 +23595,376502,99 +23596,9426,27 +23597,28894,37 +23598,28031,18 +23599,226188,18 +23600,75745,80 +23601,123025,28 +23602,19200,53 +23603,38769,10751 +23604,1655,35 +23605,10735,35 +23606,50374,28 +23607,14751,10769 +23608,71125,10749 +23609,43967,14 +23610,154371,12 +23611,378485,18 +23612,57627,35 +23613,1825,18 +23614,47647,28 +23615,13477,35 +23616,128866,27 +23617,105902,27 +23618,268853,18 +23619,38162,53 +23620,40990,80 +23621,238307,878 +23622,215740,36 +23623,331313,35 +23624,63224,18 +23625,1637,80 +23626,119364,53 +23627,339116,12 +23628,52654,10749 +23629,82990,27 +23630,86838,35 +23631,14518,16 +23632,55700,18 +23633,25241,27 +23634,63401,10749 +23635,104108,27 +23636,43821,28 +23637,297633,28 +23638,317182,14 +23639,106887,10749 +23640,82083,35 +23641,35907,10769 +23642,201360,99 +23643,354859,18 +23644,219466,18 +23645,27230,18 +23646,70752,35 +23647,48204,18 +23648,43967,878 +23649,29094,9648 +23650,76163,53 +23651,9771,35 +23652,28712,18 +23653,288788,18 +23654,46982,18 +23655,26881,28 +23656,77794,18 +23657,367596,35 +23658,13355,10751 +23659,11206,53 +23660,11017,35 +23661,84097,10402 +23662,230179,12 +23663,15213,16 +23664,259395,35 +23665,110491,36 +23666,117,53 +23667,214093,53 +23668,193650,35 +23669,28943,18 +23670,9296,878 +23671,31412,18 +23672,15285,35 +23673,402612,35 +23674,17241,9648 +23675,17640,10402 +23676,255278,53 +23677,266373,12 +23678,218898,53 +23679,134474,10749 +23680,37672,10749 +23681,39493,27 +23682,1691,27 +23683,76422,18 +23684,55735,35 +23685,809,16 +23686,412209,35 +23687,362703,53 +23688,25385,36 +23689,13591,35 +23690,65891,9648 +23691,133523,80 +23692,9946,14 +23693,199155,18 +23694,31532,10749 +23695,57889,35 +23696,66125,18 +23697,10134,28 +23698,20342,18 +23699,42837,35 +23700,147590,35 +23701,33558,28 +23702,32234,27 +23703,39992,10769 +23704,53761,12 +23705,10594,53 +23706,31880,35 +23707,42346,10769 +23708,66897,35 +23709,27150,878 +23710,259894,18 +23711,35016,35 +23712,69315,10770 +23713,374247,10751 +23714,405050,53 +23715,79778,9648 +23716,37213,35 +23717,46121,53 +23718,256962,18 +23719,83456,35 +23720,77949,27 +23721,15761,28 +23722,11607,878 +23723,107430,27 +23724,25501,18 +23725,89921,53 +23726,69775,28 +23727,80351,10751 +23728,24679,18 +23729,24973,18 +23730,15321,18 +23731,62768,10749 +23732,34582,35 +23733,356191,27 +23734,18475,35 +23735,192573,27 +23736,13823,18 +23737,181656,27 +23738,32926,35 +23739,191068,18 +23740,428493,18 +23741,378503,18 +23742,1903,878 +23743,320588,18 +23744,17889,10402 +23745,132957,27 +23746,16806,53 +23747,31027,35 +23748,378446,18 +23749,285685,10749 +23750,26323,18 +23751,11428,14 +23752,230428,35 +23753,51249,18 +23754,43880,10402 +23755,331485,10751 +23756,274991,14 +23757,32540,27 +23758,21533,12 +23759,57924,99 +23760,57005,18 +23761,38916,10749 +23762,11524,80 +23763,36259,14 +23764,126090,18 +23765,21250,10751 +23766,56232,35 +23767,11337,18 +23768,37939,9648 +23769,54858,10769 +23770,31347,16 +23771,130745,99 +23772,14531,10752 +23773,253632,53 +23774,50387,35 +23775,2786,53 +23776,409696,12 +23777,8842,10749 +23778,64942,18 +23779,331354,35 +23780,332567,18 +23781,469172,18 +23782,285840,9648 +23783,27112,14 +23784,37609,10751 +23785,1452,878 +23786,320910,28 +23787,390747,99 +23788,253533,18 +23789,47778,10749 +23790,83732,99 +23791,75300,18 +23792,125759,18 +23793,295602,99 +23794,62764,18 +23795,147106,37 +23796,18595,18 +23797,70583,18 +23798,98557,10749 +23799,46992,18 +23800,33124,10749 +23801,251544,53 +23802,1678,27 +23803,26153,35 +23804,325173,28 +23805,17978,18 +23806,48959,35 +23807,11889,18 +23808,6166,35 +23809,127380,16 +23810,29117,9648 +23811,10724,12 +23812,110227,14 +23813,71067,18 +23814,424600,18 +23815,13519,14 +23816,379959,35 +23817,20481,28 +23818,92349,14 +23819,2454,10751 +23820,44119,53 +23821,367006,18 +23822,2963,14 +23823,16866,35 +23824,40229,9648 +23825,18998,878 +23826,233487,28 +23827,53853,36 +23828,33427,10751 +23829,16890,10402 +23830,283686,27 +23831,286657,53 +23832,180635,35 +23833,245891,53 +23834,10425,80 +23835,31985,14 +23836,9889,10749 +23837,43367,37 +23838,26643,12 +23839,360605,14 +23840,24199,35 +23841,16176,14 +23842,20132,28 +23843,52850,18 +23844,235199,99 +23845,50166,10751 +23846,315057,18 +23847,34092,18 +23848,10874,12 +23849,205943,27 +23850,18899,53 +23851,101669,18 +23852,14589,18 +23853,369373,18 +23854,31021,18 +23855,11302,35 +23856,20357,27 +23857,12650,18 +23858,96951,18 +23859,85644,28 +23860,15081,9648 +23861,10379,14 +23862,33107,9648 +23863,420648,35 +23864,57597,27 +23865,46729,18 +23866,284279,28 +23867,161880,35 +23868,11161,18 +23869,16439,18 +23870,10604,12 +23871,244268,18 +23872,12561,12 +23873,70554,10749 +23874,247691,18 +23875,16077,27 +23876,118408,18 +23877,1907,53 +23878,25797,35 +23879,90034,16 +23880,127614,18 +23881,53230,18 +23882,9519,53 +23883,21142,18 +23884,27507,18 +23885,255528,10749 +23886,63315,35 +23887,35200,18 +23888,53879,18 +23889,44718,9648 +23890,14217,27 +23891,90030,27 +23892,322443,18 +23893,11839,35 +23894,59434,35 +23895,322614,12 +23896,188927,878 +23897,20527,18 +23898,367147,18 +23899,80080,18 +23900,10145,27 +23901,9298,35 +23902,29835,80 +23903,11171,18 +23904,84397,35 +23905,43754,9648 +23906,255692,878 +23907,111839,18 +23908,393559,16 +23909,315841,35 +23910,12536,80 +23911,158382,35 +23912,32694,99 +23913,3087,10402 +23914,31542,36 +23915,77877,18 +23916,68179,878 +23917,145760,14 +23918,362045,10749 +23919,24559,18 +23920,11425,12 +23921,77673,35 +23922,266314,10770 +23923,117120,878 +23924,292294,37 +23925,62567,10749 +23926,72648,27 +23927,7006,14 +23928,33792,35 +23929,10129,18 +23930,50942,53 +23931,43727,10749 +23932,64934,35 +23933,34838,18 +23934,435707,18 +23935,62527,10770 +23936,1687,878 +23937,421958,18 +23938,201485,35 +23939,47525,18 +23940,85377,53 +23941,8584,12 +23942,55294,18 +23943,6951,35 +23944,11003,35 +23945,43832,10749 +23946,18417,35 +23947,74395,35 +23948,112912,99 +23949,45800,35 +23950,107028,12 +23951,62439,27 +23952,60547,28 +23953,215379,28 +23954,41213,12 +23955,13678,18 +23956,125257,18 +23957,19017,80 +23958,14459,27 +23959,2071,9648 +23960,270672,35 +23961,40229,27 +23962,262528,80 +23963,77949,53 +23964,31919,35 +23965,744,10749 +23966,13956,878 +23967,9893,35 +23968,28704,53 +23969,128396,36 +23970,162458,18 +23971,36063,53 +23972,420648,27 +23973,79218,16 +23974,90395,35 +23975,326255,99 +23976,63317,27 +23977,58391,18 +23978,84774,16 +23979,28115,18 +23980,91583,80 +23981,2293,10749 +23982,49574,35 +23983,7549,28 +23984,127585,878 +23985,63260,18 +23986,16638,10749 +23987,40095,28 +23988,48601,10749 +23989,116059,99 +23990,137504,18 +23991,81684,16 +23992,152948,10751 +23993,59424,10749 +23994,315362,53 +23995,118397,53 +23996,18143,16 +23997,4930,18 +23998,28730,53 +23999,65509,35 +24000,28293,35 +24001,10020,16 +24002,96552,99 +24003,13836,10751 +24004,45000,18 +24005,26805,18 +24006,236053,878 +24007,28178,10751 +24008,235092,18 +24009,269795,53 +24010,9516,28 +24011,69917,99 +24012,42267,10749 +24013,33360,35 +24014,31473,12 +24015,121462,18 +24016,65973,12 +24017,76333,35 +24018,11235,35 +24019,8391,10749 +24020,333484,28 +24021,128154,18 +24022,46059,28 +24023,175386,37 +24024,56725,80 +24025,18317,878 +24026,52437,18 +24027,6973,9648 +24028,1421,10749 +24029,96702,18 +24030,38134,27 +24031,84708,27 +24032,238781,53 +24033,16899,10749 +24034,18352,27 +24035,35554,35 +24036,6935,28 +24037,11524,28 +24038,135708,35 +24039,32323,35 +24040,70966,10749 +24041,43875,18 +24042,176983,12 +24043,26971,35 +24044,120399,18 +24045,13600,10751 +24046,159514,35 +24047,64784,35 +24048,12311,18 +24049,73353,18 +24050,302042,18 +24051,47212,80 +24052,21893,36 +24053,345003,18 +24054,103972,18 +24055,85648,28 +24056,93511,18 +24057,277631,18 +24058,10775,9648 +24059,82737,10752 +24060,353616,35 +24061,16373,27 +24062,22584,12 +24063,423078,10402 +24064,69921,14 +24065,337104,18 +24066,1498,12 +24067,84336,53 +24068,12536,35 +24069,245703,12 +24070,38766,12 +24071,59051,27 +24072,82,80 +24073,57684,10749 +24074,391618,35 +24075,16803,18 +24076,371818,10752 +24077,19116,27 +24078,169721,35 +24079,130881,18 +24080,68097,37 +24081,25358,35 +24082,80539,28 +24083,80394,878 +24084,85446,10749 +24085,15916,878 +24086,42250,27 +24087,259694,10749 +24088,271185,53 +24089,213110,28 +24090,59882,37 +24091,88390,28 +24092,191312,9648 +24093,32099,18 +24094,39493,53 +24095,49391,14 +24096,5590,10402 +24097,73116,9648 +24098,209251,53 +24099,2280,10751 +24100,308,10749 +24101,2108,18 +24102,356500,53 +24103,180418,18 +24104,16240,18 +24105,381356,35 +24106,44937,35 +24107,48131,27 +24108,13649,35 +24109,9951,10769 +24110,193435,35 +24111,2179,35 +24112,249914,10769 +24113,66247,28 +24114,285135,878 +24115,51601,28 +24116,203186,9648 +24117,696,10749 +24118,32845,28 +24119,41493,16 +24120,47171,35 +24121,329819,18 +24122,77859,10751 +24123,10425,18 +24124,142757,18 +24125,28448,37 +24126,276550,18 +24127,3072,27 +24128,27561,35 +24129,60855,35 +24130,910,18 +24131,77645,37 +24132,29492,80 +24133,21956,10751 +24134,377428,35 +24135,35253,16 +24136,105768,10751 +24137,38594,28 +24138,345925,878 +24139,89325,18 +24140,41556,10749 +24141,16342,9648 +24142,245700,36 +24143,52440,10752 +24144,14372,28 +24145,14372,12 +24146,10797,16 +24147,20421,35 +24148,51049,18 +24149,383535,53 +24150,26368,14 +24151,79816,35 +24152,27916,27 +24153,106020,18 +24154,179826,53 +24155,294640,35 +24156,17139,18 +24157,31258,878 +24158,1810,37 +24159,17009,16 +24160,28421,878 +24161,560,80 +24162,263260,14 +24163,55989,18 +24164,26533,53 +24165,158739,9648 +24166,40490,10751 +24167,118549,18 +24168,14419,35 +24169,376394,99 +24170,30680,80 +24171,428687,18 +24172,39936,10402 +24173,257450,35 +24174,215016,18 +24175,44414,53 +24176,43342,878 +24177,30584,12 +24178,43790,10749 +24179,209266,18 +24180,278632,27 +24181,44519,10769 +24182,27114,9648 +24183,28340,35 +24184,73208,53 +24185,71996,18 +24186,7006,53 +24187,403130,27 +24188,33272,18 +24189,242090,35 +24190,63706,53 +24191,96936,80 +24192,4443,53 +24193,253310,35 +24194,99599,18 +24195,10740,53 +24196,26153,10749 +24197,922,14 +24198,43504,36 +24199,51209,18 +24200,9292,35 +24201,57983,36 +24202,89481,35 +24203,345438,35 +24204,36992,27 +24205,74447,35 +24206,177271,12 +24207,235662,10751 +24208,75537,27 +24209,214676,16 +24210,39286,35 +24211,126889,878 +24212,14145,14 +24213,129115,18 +24214,24767,18 +24215,9286,27 +24216,293970,27 +24217,17144,53 +24218,63281,18 +24219,62492,35 +24220,15940,18 +24221,227262,35 +24222,193650,16 +24223,330011,35 +24224,493,9648 +24225,11456,9648 +24226,340103,18 +24227,817,80 +24228,383538,878 +24229,172011,99 +24230,9598,18 +24231,45899,10751 +24232,786,18 +24233,831,12 +24234,99846,80 +24235,66447,18 +24236,222216,80 +24237,11879,27 +24238,38951,35 +24239,112973,18 +24240,150056,35 +24241,16455,10751 +24242,949,53 +24243,79853,16 +24244,1966,36 +24245,428398,14 +24246,155597,35 +24247,400465,35 +24248,14164,53 +24249,45191,35 +24250,23566,10751 +24251,83114,16 +24252,268350,35 +24253,120972,18 +24254,19506,36 +24255,145963,28 +24256,1907,10749 +24257,390777,18 +24258,115023,18 +24259,77439,18 +24260,85431,35 +24261,2034,80 +24262,79137,35 +24263,336265,28 +24264,124597,878 +24265,4978,16 +24266,26422,10749 +24267,159211,53 +24268,342163,10749 +24269,383140,878 +24270,29911,10751 +24271,274991,9648 +24272,70821,18 +24273,33784,53 +24274,206296,10402 +24275,14019,18 +24276,152748,80 +24277,36258,878 +24278,87654,18 +24279,24936,80 +24280,339116,878 +24281,229296,99 +24282,19621,53 +24283,6183,18 +24284,102949,28 +24285,203321,35 +24286,360284,18 +24287,2309,14 +24288,48319,18 +24289,47653,18 +24290,27045,18 +24291,32234,878 +24292,9555,36 +24293,362974,18 +24294,31439,18 +24295,8008,18 +24296,273,18 +24297,120637,10749 +24298,125666,12 +24299,292830,27 +24300,36194,10749 +24301,81110,10752 +24302,81188,10751 +24303,36691,10749 +24304,86608,37 +24305,81684,10751 +24306,10303,12 +24307,242042,18 +24308,218425,878 +24309,189359,10402 +24310,392271,10752 +24311,67696,10749 +24312,9795,12 +24313,47504,28 +24314,68721,28 +24315,373541,27 +24316,153781,10749 +24317,72313,53 +24318,64156,18 +24319,22292,10749 +24320,4286,10749 +24321,165864,27 +24322,8617,27 +24323,72917,10749 +24324,83761,12 +24325,338421,80 +24326,1251,18 +24327,115929,10749 +24328,31146,35 +24329,9555,18 +24330,97936,10749 +24331,321779,18 +24332,2107,18 +24333,59115,9648 +24334,286545,80 +24335,65881,18 +24336,8072,878 +24337,158908,18 +24338,28671,27 +24339,31598,18 +24340,13507,36 +24341,113119,35 +24342,303966,27 +24343,45244,18 +24344,103640,28 +24345,68976,18 +24346,42204,10402 +24347,11853,18 +24348,85009,9648 +24349,170759,35 +24350,169314,27 +24351,86305,27 +24352,44223,10749 +24353,91261,18 +24354,217412,18 +24355,339526,12 +24356,90634,10769 +24357,365997,99 +24358,70051,28 +24359,45197,18 +24360,31605,18 +24361,38546,35 +24362,35021,14 +24363,8588,18 +24364,20558,16 +24365,285908,80 +24366,123634,80 +24367,229638,10749 +24368,228339,10749 +24369,128795,18 +24370,28171,18 +24371,4291,18 +24372,5494,12 +24373,286971,27 +24374,25872,10402 +24375,10075,27 +24376,798,18 +24377,76170,12 +24378,11600,18 +24379,10590,10752 +24380,36527,10751 +24381,315723,12 +24382,97910,9648 +24383,89606,10751 +24384,11917,53 +24385,82696,18 +24386,110416,16 +24387,422878,35 +24388,15189,10751 +24389,245917,28 +24390,360283,99 +24391,427680,53 +24392,44303,10751 +24393,46563,10749 +24394,229610,10751 +24395,11886,16 +24396,359471,28 +24397,56934,10402 +24398,14072,35 +24399,62071,28 +24400,81409,12 +24401,340488,53 +24402,10303,28 +24403,54779,878 +24404,136619,16 +24405,127424,27 +24406,301876,878 +24407,30361,9648 +24408,256520,10751 +24409,22387,10749 +24410,153161,18 +24411,47426,99 +24412,38031,35 +24413,269494,53 +24414,80094,35 +24415,11046,28 +24416,311417,18 +24417,11404,35 +24418,47201,12 +24419,189888,35 +24420,358895,10749 +24421,330711,10770 +24422,25407,12 +24423,15090,28 +24424,73642,35 +24425,36817,10751 +24426,409903,35 +24427,15907,12 +24428,371942,18 +24429,433945,53 +24430,108419,99 +24431,16980,10749 +24432,186869,35 +24433,3146,878 +24434,119374,18 +24435,27276,27 +24436,85651,18 +24437,17467,35 +24438,42494,878 +24439,180644,35 +24440,30641,27 +24441,291558,35 +24442,11561,878 +24443,126300,18 +24444,39845,18 +24445,93891,28 +24446,11134,28 +24447,9717,80 +24448,269518,99 +24449,36063,18 +24450,92341,12 +24451,96921,53 +24452,42309,9648 +24453,3036,27 +24454,20421,10751 +24455,45675,35 +24456,922,37 +24457,17745,18 +24458,291270,16 +24459,70046,53 +24460,129530,80 +24461,25005,53 +24462,27061,80 +24463,24801,10751 +24464,61908,28 +24465,25649,18 +24466,51285,10749 +24467,9428,18 +24468,37702,12 +24469,173847,80 +24470,10488,10751 +24471,70476,10770 +24472,197,10752 +24473,15472,53 +24474,1420,35 +24475,24578,18 +24476,48617,18 +24477,397520,18 +24478,15807,36 +24479,117098,18 +24480,8071,18 +24481,88818,18 +24482,64129,18 +24483,16124,35 +24484,58547,18 +24485,13954,53 +24486,53417,35 +24487,33201,14 +24488,664,12 +24489,15170,10751 +24490,864,35 +24491,14317,10751 +24492,2966,14 +24493,9354,10751 +24494,36229,10749 +24495,56527,27 +24496,10590,36 +24497,88641,35 +24498,68184,10749 +24499,11535,878 +24500,14414,10402 +24501,110887,18 +24502,23599,80 +24503,54832,35 +24504,9028,28 +24505,46592,10752 +24506,51249,28 +24507,27114,80 +24508,20312,18 +24509,117023,27 +24510,55632,35 +24511,110608,18 +24512,786,10402 +24513,21605,35 +24514,31875,10749 +24515,172386,10751 +24516,328589,18 +24517,41312,18 +24518,28571,18 +24519,44233,35 +24520,296750,18 +24521,11104,10749 +24522,91181,18 +24523,31264,28 +24524,139718,35 +24525,42120,28 +24526,25903,35 +24527,23114,10751 +24528,413198,28 +24529,55396,18 +24530,62692,14 +24531,88564,10752 +24532,169881,18 +24533,48489,18 +24534,33642,28 +24535,159166,99 +24536,461088,18 +24537,99324,10752 +24538,139571,10749 +24539,63538,36 +24540,22855,28 +24541,20521,35 +24542,309581,53 +24543,85729,14 +24544,267935,12 +24545,29825,35 +24546,175171,10749 +24547,14518,10402 +24548,13354,9648 +24549,3701,28 +24550,32577,35 +24551,4916,53 +24552,19850,10770 +24553,277229,18 +24554,18616,27 +24555,245324,18 +24556,24123,35 +24557,31273,80 +24558,50196,35 +24559,42329,37 +24560,365942,10749 +24561,92269,10749 +24562,63899,18 +24563,42329,28 +24564,47489,80 +24565,26566,35 +24566,10780,35 +24567,21138,10751 +24568,25536,28 +24569,37003,99 +24570,48207,18 +24571,359154,36 +24572,144471,37 +24573,10208,10751 +24574,44693,878 +24575,27935,18 +24576,38317,35 +24577,27381,27 +24578,961,18 +24579,79521,18 +24580,6575,10402 +24581,106155,53 +24582,87516,18 +24583,290762,10749 +24584,419430,9648 +24585,43199,10749 +24586,53860,10752 +24587,116318,16 +24588,123961,35 +24589,336050,18 +24590,47212,10749 +24591,77794,10752 +24592,333484,12 +24593,246133,18 +24594,332411,80 +24595,269,18 +24596,262987,35 +24597,14695,53 +24598,50761,80 +24599,23155,53 +24600,32059,80 +24601,38874,35 +24602,40925,10749 +24603,418969,10770 +24604,48852,18 +24605,58757,10751 +24606,356296,80 +24607,105945,36 +24608,256907,53 +24609,29424,27 +24610,51247,36 +24611,11377,27 +24612,24403,35 +24613,118245,35 +24614,41979,12 +24615,18598,10751 +24616,287903,27 +24617,89606,16 +24618,83361,28 +24619,37820,18 +24620,95358,35 +24621,298,80 +24622,11837,16 +24623,109379,10752 +24624,315880,18 +24625,46403,28 +24626,128612,10749 +24627,136743,18 +24628,149154,18 +24629,109258,18 +24630,93116,35 +24631,73313,18 +24632,16987,10749 +24633,26761,37 +24634,35543,80 +24635,292014,10751 +24636,112675,28 +24637,314283,10751 +24638,16374,36 +24639,27840,878 +24640,442752,80 +24641,29352,12 +24642,20766,12 +24643,45273,53 +24644,8870,28 +24645,890,18 +24646,11137,10749 +24647,1049,18 +24648,46797,18 +24649,14833,18 +24650,381015,18 +24651,305127,878 +24652,76829,35 +24653,85420,35 +24654,330011,18 +24655,18446,35 +24656,21587,35 +24657,158947,18 +24658,16171,14 +24659,88059,18 +24660,16175,27 +24661,39939,9648 +24662,14688,10749 +24663,334538,18 +24664,47115,18 +24665,46989,18 +24666,15677,10749 +24667,269494,80 +24668,380124,27 +24669,4147,53 +24670,197854,28 +24671,17306,27 +24672,110,9648 +24673,15440,18 +24674,267852,27 +24675,289225,10751 +24676,46059,80 +24677,207641,878 +24678,61765,35 +24679,341895,35 +24680,51619,10749 +24681,317720,35 +24682,19181,35 +24683,92635,27 +24684,28527,18 +24685,377170,37 +24686,297265,10402 +24687,163018,35 +24688,366736,18 +24689,20432,18 +24690,11205,10749 +24691,298296,27 +24692,45441,35 +24693,85837,18 +24694,13957,18 +24695,59191,18 +24696,218898,28 +24697,228339,18 +24698,73043,27 +24699,4613,35 +24700,413052,18 +24701,147538,16 +24702,22025,35 +24703,293982,18 +24704,1995,12 +24705,332411,18 +24706,30644,27 +24707,85793,16 +24708,48431,53 +24709,362765,53 +24710,13507,10752 +24711,61473,18 +24712,344656,14 +24713,24993,28 +24714,30637,53 +24715,961,28 +24716,11361,53 +24717,8079,10749 +24718,61699,10752 +24719,120605,80 +24720,36917,27 +24721,73067,10749 +24722,200324,37 +24723,10025,10749 +24724,22584,18 +24725,52735,18 +24726,49524,80 +24727,76681,35 +24728,13600,12 +24729,109475,36 +24730,205361,18 +24731,32275,37 +24732,203186,12 +24733,8014,12 +24734,41357,18 +24735,19551,27 +24736,79645,80 +24737,42139,18 +24738,224813,18 +24739,76438,28 +24740,422603,35 +24741,40205,18 +24742,17386,80 +24743,15213,10751 +24744,31993,10749 +24745,390059,35 +24746,58515,18 +24747,189682,18 +24748,16455,16 +24749,35113,10402 +24750,91571,80 +24751,14128,10751 +24752,378570,35 +24753,9385,16 +24754,33460,28 +24755,8270,80 +24756,16358,35 +24757,25890,35 +24758,41857,10749 +24759,114514,99 +24760,255948,18 +24761,102222,18 +24762,8316,27 +24763,76207,18 +24764,136921,878 +24765,16094,18 +24766,320736,18 +24767,375170,27 +24768,39413,35 +24769,11853,12 +24770,72655,18 +24771,72602,35 +24772,10703,18 +24773,21027,12 +24774,22606,18 +24775,172,12 +24776,23385,18 +24777,12573,18 +24778,332662,878 +24779,162862,10749 +24780,261246,18 +24781,242382,18 +24782,173577,99 +24783,218329,53 +24784,237799,35 +24785,75778,18 +24786,425591,35 +24787,206284,18 +24788,103215,99 +24789,43354,35 +24790,10753,28 +24791,276819,14 +24792,248087,18 +24793,100110,28 +24794,25598,18 +24795,165095,16 +24796,5165,9648 +24797,31867,80 +24798,98566,28 +24799,13090,35 +24800,69917,18 +24801,323690,35 +24802,49920,18 +24803,196257,10751 +24804,14073,18 +24805,37247,18 +24806,24671,18 +24807,18238,27 +24808,15689,28 +24809,418969,10749 +24810,20364,10749 +24811,15592,35 +24812,115712,35 +24813,76864,18 +24814,79008,35 +24815,326285,18 +24816,11045,80 +24817,11185,35 +24818,20132,10769 +24819,14815,18 +24820,11385,35 +24821,268099,18 +24822,52147,9648 +24823,47508,35 +24824,164504,37 +24825,29382,99 +24826,44637,35 +24827,23739,14 +24828,44896,12 +24829,1903,18 +24830,393445,10749 +24831,408616,18 +24832,38460,53 +24833,31675,18 +24834,21576,35 +24835,74154,35 +24836,10703,28 +24837,112072,10402 +24838,102256,27 +24839,82243,53 +24840,110261,12 +24841,42187,10769 +24842,255528,16 +24843,43213,53 +24844,364833,35 +24845,69019,16 +24846,382155,53 +24847,74779,53 +24848,42309,53 +24849,13853,12 +24850,36246,28 +24851,12477,18 +24852,47975,99 +24853,124527,80 +24854,227552,10749 +24855,11175,35 +24856,2731,10749 +24857,46513,53 +24858,13652,53 +24859,1387,10402 +24860,3061,18 +24861,60063,10402 +24862,20825,10749 +24863,20916,10769 +24864,227871,27 +24865,420648,53 +24866,125063,878 +24867,118381,10749 +24868,36245,80 +24869,10466,10749 +24870,16135,18 +24871,11048,18 +24872,117251,28 +24873,45431,27 +24874,246355,80 +24875,78362,27 +24876,844,18 +24877,20364,35 +24878,47226,18 +24879,34723,12 +24880,204712,10751 +24881,28295,9648 +24882,238792,18 +24883,31682,18 +24884,168541,18 +24885,28212,35 +24886,376501,53 +24887,11122,18 +24888,44208,18 +24889,17622,53 +24890,5237,27 +24891,15090,12 +24892,9651,14 +24893,44877,53 +24894,7837,28 +24895,117026,14 +24896,62045,53 +24897,262841,878 +24898,257116,99 +24899,37702,28 +24900,11172,10749 +24901,91607,18 +24902,14881,37 +24903,346646,35 +24904,15713,35 +24905,10025,35 +24906,161179,28 +24907,106546,53 +24908,65759,10751 +24909,7220,18 +24910,17216,18 +24911,276909,99 +24912,19725,35 +24913,41142,18 +24914,49597,28 +24915,41441,18 +24916,13396,10751 +24917,30379,878 +24918,266285,18 +24919,129542,10769 +24920,18082,10749 +24921,2567,18 +24922,35977,27 +24923,17044,18 +24924,115782,18 +24925,43079,10749 +24926,253077,35 +24927,26969,35 +24928,270221,9648 +24929,15749,53 +24930,21191,28 +24931,3484,12 +24932,27349,28 +24933,5393,16 +24934,31011,14 +24935,17082,28 +24936,8460,28 +24937,86520,18 +24938,375742,10402 +24939,80324,10402 +24940,125990,53 +24941,7555,53 +24942,234862,14 +24943,138308,37 +24944,409536,35 +24945,7305,53 +24946,96935,10749 +24947,1811,35 +24948,28712,53 +24949,35921,80 +24950,34723,18 +24951,301228,53 +24952,74154,10749 +24953,424643,27 +24954,67900,10751 +24955,19719,99 +24956,110146,35 +24957,17457,35 +24958,263115,878 +24959,18673,53 +24960,72460,18 +24961,127812,9648 +24962,572,53 +24963,239103,10752 +24964,13802,35 +24965,309820,10749 +24966,225499,18 +24967,178446,28 +24968,70801,35 +24969,41590,53 +24970,95169,18 +24971,21208,9648 +24972,94348,80 +24973,28430,878 +24974,49446,35 +24975,26810,18 +24976,14066,18 +24977,4948,18 +24978,196852,18 +24979,59965,53 +24980,61985,18 +24981,144331,18 +24982,49788,18 +24983,253851,10749 +24984,75137,12 +24985,336199,18 +24986,80473,53 +24987,20766,18 +24988,140481,99 +24989,64239,53 +24990,14804,10402 +24991,110540,10749 +24992,123770,80 +24993,16993,18 +24994,257447,28 +24995,53399,18 +24996,71945,18 +24997,116351,16 +24998,12112,53 +24999,31592,18 +25000,73027,53 +25001,29020,35 +25002,89647,37 +25003,25983,9648 +25004,62036,35 +25005,325133,35 +25006,11633,878 +25007,30640,878 +25008,15725,99 +25009,62488,35 +25010,119694,35 +25011,18079,80 +25012,8652,878 +25013,183832,10749 +25014,10299,18 +25015,40221,27 +25016,29376,10402 +25017,29835,18 +25018,392882,18 +25019,30924,27 +25020,38362,35 +25021,37038,18 +25022,212481,35 +25023,34869,53 +25024,321191,10749 +25025,83229,10749 +25026,64928,80 +25027,25919,18 +25028,77010,27 +25029,28280,12 +25030,24750,878 +25031,21481,10751 +25032,313628,35 +25033,47404,18 +25034,383809,99 +25035,53805,53 +25036,10795,9648 +25037,19528,28 +25038,84352,18 +25039,326,28 +25040,11091,18 +25041,45167,18 +25042,116711,16 +25043,33272,37 +25044,38150,18 +25045,52270,10749 +25046,18939,35 +25047,142499,10749 +25048,92321,14 +25049,84892,10749 +25050,140607,28 +25051,108224,35 +25052,89551,28 +25053,91628,18 +25054,26656,28 +25055,37462,18 +25056,62392,35 +25057,40465,27 +25058,455661,16 +25059,283726,18 +25060,37311,36 +25061,116733,14 +25062,28295,53 +25063,47561,28 +25064,44308,18 +25065,104945,53 +25066,184328,35 +25067,38282,18 +25068,5172,35 +25069,3405,10749 +25070,103432,10770 +25071,394822,10402 +25072,152948,16 +25073,366696,99 +25074,2001,80 +25075,36259,10751 +25076,9703,12 +25077,81654,10769 +25078,10739,35 +25079,375199,28 +25080,26299,10402 +25081,381737,80 +25082,41160,10749 +25083,2300,35 +25084,7288,28 +25085,43875,36 +25086,4111,35 +25087,287179,99 +25088,10821,18 +25089,55433,18 +25090,28893,27 +25091,336845,18 +25092,15013,18 +25093,40346,35 +25094,172972,12 +25095,14787,10751 +25096,41857,80 +25097,18912,80 +25098,14904,18 +25099,168295,18 +25100,345438,10749 +25101,12447,35 +25102,62761,35 +25103,62896,35 +25104,339669,16 +25105,3682,10402 +25106,46014,35 +25107,19740,18 +25108,135204,28 +25109,6391,10749 +25110,371818,10402 +25111,271919,18 +25112,299780,18 +25113,24647,35 +25114,188858,18 +25115,75752,18 +25116,330431,28 +25117,14286,36 +25118,57103,18 +25119,356294,99 +25120,33789,35 +25121,239566,10402 +25122,30022,53 +25123,261036,10751 +25124,253251,18 +25125,66702,10769 +25126,14809,35 +25127,32790,14 +25128,32166,27 +25129,23452,28 +25130,52999,18 +25131,300654,18 +25132,37100,18 +25133,678,53 +25134,157723,10770 +25135,316042,18 +25136,46114,35 +25137,127257,10749 +25138,24020,10770 +25139,28165,35 +25140,308174,35 +25141,27635,18 +25142,3092,53 +25143,68472,18 +25144,66193,53 +25145,105,35 +25146,44398,10752 +25147,131194,37 +25148,328589,35 +25149,36335,53 +25150,310137,27 +25151,24914,878 +25152,13965,10751 +25153,22020,80 +25154,54198,35 +25155,154972,10752 +25156,262958,18 +25157,248417,878 +25158,9078,10751 +25159,25862,10402 +25160,25335,28 +25161,51209,80 +25162,11788,18 +25163,223485,53 +25164,37789,28 +25165,286369,18 +25166,52264,35 +25167,24351,53 +25168,216369,10749 +25169,10909,53 +25170,64972,35 +25171,13929,10751 +25172,30022,80 +25173,63612,10749 +25174,51955,28 +25175,44104,18 +25176,56693,18 +25177,193387,10751 +25178,6973,36 +25179,22257,35 +25180,15653,35 +25181,11362,28 +25182,815,10751 +25183,294483,80 +25184,36056,18 +25185,21001,18 +25186,330947,10402 +25187,80720,27 +25188,374475,18 +25189,19827,12 +25190,17971,35 +25191,16074,10769 +25192,253250,10752 +25193,84226,18 +25194,13685,80 +25195,23128,99 +25196,272072,10749 +25197,16151,18 +25198,220287,27 +25199,11425,35 +25200,80473,18 +25201,3989,35 +25202,75262,10749 +25203,56292,53 +25204,195269,28 +25205,346646,28 +25206,417678,10749 +25207,19740,12 +25208,65891,14 +25209,20968,28 +25210,326,27 +25211,8429,10752 +25212,46986,18 +25213,29048,35 +25214,243568,18 +25215,89551,10751 +25216,24816,14 +25217,11917,27 +25218,42664,10752 +25219,18352,18 +25220,97683,35 +25221,83361,35 +25222,121230,10749 +25223,121173,18 +25224,63486,16 +25225,141819,18 +25226,296029,36 +25227,45875,27 +25228,374460,99 +25229,4688,10402 +25230,39995,27 +25231,35405,28 +25232,45302,28 +25233,2169,35 +25234,88863,53 +25235,121539,18 +25236,58007,35 +25237,106136,10749 +25238,253258,35 +25239,76642,18 +25240,319993,36 +25241,40041,27 +25242,211059,18 +25243,29146,18 +25244,81895,28 +25245,613,36 +25246,70199,9648 +25247,16197,35 +25248,4011,14 +25249,218658,16 +25250,364324,53 +25251,14833,27 +25252,184795,10749 +25253,8342,18 +25254,379441,10751 +25255,10409,35 +25256,79550,53 +25257,84771,35 +25258,383538,28 +25259,89008,18 +25260,11576,35 +25261,46121,9648 +25262,54243,10751 +25263,21801,18 +25264,77459,12 +25265,26180,10749 +25266,88557,10751 +25267,18927,80 +25268,38332,35 +25269,224778,12 +25270,10265,35 +25271,26882,53 +25272,344039,18 +25273,241239,18 +25274,84993,9648 +25275,15534,18 +25276,238307,18 +25277,45610,80 +25278,30054,10749 +25279,317198,10770 +25280,9294,878 +25281,24963,878 +25282,33367,18 +25283,141868,35 +25284,48594,53 +25285,77246,18 +25286,17339,53 +25287,11134,53 +25288,124475,18 +25289,411442,28 +25290,94468,10749 +25291,133715,28 +25292,237756,53 +25293,185460,12 +25294,43649,35 +25295,13972,18 +25296,73067,18 +25297,88375,80 +25298,8899,80 +25299,118677,35 +25300,10761,35 +25301,157829,18 +25302,25388,28 +25303,89145,35 +25304,75174,53 +25305,30637,18 +25306,179812,18 +25307,133183,53 +25308,27834,35 +25309,351809,53 +25310,33613,9648 +25311,6081,35 +25312,84355,18 +25313,73642,10769 +25314,15794,80 +25315,28032,16 +25316,114719,18 +25317,11593,35 +25318,411013,99 +25319,425003,35 +25320,9593,10751 +25321,24078,18 +25322,84617,35 +25323,47942,28 +25324,156,18 +25325,1483,14 +25326,12112,10749 +25327,15414,18 +25328,206277,18 +25329,49524,35 +25330,86703,28 +25331,6038,12 +25332,142375,99 +25333,184267,18 +25334,12230,35 +25335,22408,37 +25336,402672,10749 +25337,121234,10749 +25338,9404,80 +25339,13483,80 +25340,9462,28 +25341,107985,28 +25342,48281,14 +25343,49502,18 +25344,23830,10749 +25345,293863,18 +25346,62397,18 +25347,27061,53 +25348,266082,18 +25349,222339,14 +25350,2046,18 +25351,28466,35 +25352,53619,35 +25353,16296,27 +25354,262088,27 +25355,57544,10769 +25356,105503,18 +25357,151431,18 +25358,87759,10749 +25359,3102,18 +25360,1966,12 +25361,210047,53 +25362,18651,36 +25363,8281,35 +25364,137726,18 +25365,14011,28 +25366,747,35 +25367,48594,18 +25368,198365,9648 +25369,70322,878 +25370,84655,10749 +25371,241742,35 +25372,9070,28 +25373,15148,35 +25374,12135,18 +25375,27003,27 +25376,42580,10751 +25377,20312,12 +25378,25385,18 +25379,163376,10749 +25380,31111,10769 +25381,402446,53 +25382,11953,18 +25383,52999,80 +25384,339530,28 +25385,72086,27 +25386,24556,16 +25387,271164,10749 +25388,458428,35 +25389,116019,18 +25390,146238,80 +25391,80539,10769 +25392,21024,35 +25393,204553,28 +25394,35626,9648 +25395,23155,18 +25396,1963,18 +25397,18651,18 +25398,73952,9648 +25399,1599,10749 +25400,11296,18 +25401,390991,35 +25402,18935,10751 +25403,5804,53 +25404,262786,18 +25405,62289,35 +25406,56800,28 +25407,33472,878 +25408,15081,10751 +25409,44115,12 +25410,227871,28 +25411,215658,18 +25412,104277,35 +25413,110989,12 +25414,100669,53 +25415,65777,18 +25416,245170,14 +25417,35396,35 +25418,35139,878 +25419,187993,16 +25420,66881,27 +25421,55836,10749 +25422,181533,14 +25423,4688,18 +25424,24874,53 +25425,70074,53 +25426,76200,18 +25427,336199,35 +25428,402672,36 +25429,288526,35 +25430,42517,18 +25431,407965,99 +25432,664,18 +25433,17175,10749 +25434,12158,10749 +25435,10972,27 +25436,45156,35 +25437,15916,9648 +25438,72984,10751 +25439,14505,35 +25440,1969,35 +25441,33472,14 +25442,31901,35 +25443,52051,10751 +25444,29538,10749 +25445,109451,35 +25446,6341,878 +25447,110,10749 +25448,245739,10770 +25449,34082,35 +25450,39103,28 +25451,41468,12 +25452,169800,18 +25453,211233,35 +25454,237,18 +25455,40387,9648 +25456,266400,35 +25457,13965,37 +25458,211729,53 +25459,79816,10749 +25460,75622,18 +25461,92321,16 +25462,11511,878 +25463,2604,10752 +25464,2075,18 +25465,329724,18 +25466,26156,35 +25467,59803,10751 +25468,12888,18 +25469,77964,18 +25470,70026,10749 +25471,946,18 +25472,2428,18 +25473,189151,10749 +25474,46773,18 +25475,2087,28 +25476,371084,35 +25477,69,18 +25478,2280,35 +25479,409696,16 +25480,33273,18 +25481,4964,10749 +25482,118677,18 +25483,321779,35 +25484,98644,18 +25485,435041,35 +25486,261037,18 +25487,52661,12 +25488,42989,80 +25489,8282,18 +25490,11873,18 +25491,418072,28 +25492,44246,10751 +25493,6964,35 +25494,298165,18 +25495,273202,16 +25496,72946,18 +25497,744,28 +25498,69278,878 +25499,393172,18 +25500,36212,14 +25501,115109,12 +25502,172705,18 +25503,47410,80 +25504,2966,878 +25505,57977,18 +25506,380731,28 +25507,171873,35 +25508,14262,14 +25509,85729,35 +25510,30708,18 +25511,10748,35 +25512,436,53 +25513,76600,28 +25514,33305,28 +25515,151937,35 +25516,73482,99 +25517,47161,18 +25518,29832,35 +25519,36737,27 +25520,12528,28 +25521,138496,878 +25522,14069,14 +25523,31347,12 +25524,19187,28 +25525,18711,35 +25526,37502,28 +25527,140276,18 +25528,30366,35 +25529,15653,10751 +25530,11415,35 +25531,213755,28 +25532,296941,99 +25533,60281,18 +25534,102841,35 +25535,201,28 +25536,418437,53 +25537,33112,35 +25538,3173,80 +25539,38950,28 +25540,17258,18 +25541,17111,53 +25542,260001,10749 +25543,37368,37 +25544,118991,80 +25545,72638,10752 +25546,26642,10749 +25547,638,53 +25548,43379,14 +25549,116340,37 +25550,52850,35 +25551,26686,10749 +25552,14262,35 +25553,127702,18 +25554,349948,53 +25555,15909,10751 +25556,23378,10402 +25557,1966,28 +25558,307931,99 +25559,29128,10769 +25560,83481,12 +25561,303281,35 +25562,186634,28 +25563,52270,18 +25564,30941,28 +25565,148636,27 +25566,31304,10749 +25567,61527,10749 +25568,264080,28 +25569,38554,35 +25570,37817,10402 +25571,14531,18 +25572,199373,80 +25573,403431,35 +25574,31074,10751 +25575,33314,10749 +25576,1922,18 +25577,287391,80 +25578,7299,53 +25579,322548,18 +25580,39286,18 +25581,367147,9648 +25582,86126,18 +25583,31555,18 +25584,123047,10749 +25585,71701,10749 +25586,327749,10751 +25587,214641,18 +25588,15762,27 +25589,12249,10769 +25590,51736,10749 +25591,73624,14 +25592,20287,37 +25593,18694,18 +25594,126442,35 +25595,15239,27 +25596,765,14 +25597,8382,28 +25598,46586,18 +25599,94935,18 +25600,31671,53 +25601,117506,28 +25602,55376,53 +25603,38789,35 +25604,30492,18 +25605,28452,27 +25606,28969,18 +25607,123961,10752 +25608,11601,27 +25609,109001,18 +25610,32093,28 +25611,84305,18 +25612,2565,10749 +25613,382951,18 +25614,103938,10749 +25615,348389,53 +25616,53230,10749 +25617,15303,18 +25618,43775,10769 +25619,73147,35 +25620,13061,10751 +25621,384021,18 +25622,104374,18 +25623,48145,35 +25624,4825,10402 +25625,218728,18 +25626,2061,53 +25627,165718,35 +25628,18111,878 +25629,10921,878 +25630,413421,14 +25631,48717,18 +25632,36943,12 +25633,25796,10749 +25634,9655,10749 +25635,3784,10749 +25636,29572,10749 +25637,43771,18 +25638,45489,80 +25639,9042,12 +25640,29362,35 +25641,330418,35 +25642,209410,35 +25643,312100,16 +25644,412103,35 +25645,52803,27 +25646,335509,12 +25647,120,28 +25648,3784,35 +25649,286545,35 +25650,59881,35 +25651,40139,27 +25652,29108,35 +25653,122930,53 +25654,19350,878 +25655,7863,18 +25656,17133,28 +25657,13346,18 +25658,169782,18 +25659,159701,18 +25660,21583,18 +25661,110148,9648 +25662,20307,28 +25663,13610,18 +25664,45197,28 +25665,1073,9648 +25666,15788,35 +25667,75336,35 +25668,13956,28 +25669,89647,12 +25670,328111,10751 +25671,1833,10749 +25672,329135,10749 +25673,324173,35 +25674,73527,18 +25675,423093,18 +25676,38415,35 +25677,45377,18 +25678,110502,35 +25679,46227,9648 +25680,15497,10752 +25681,30508,35 +25682,156335,9648 +25683,79329,35 +25684,18015,27 +25685,12704,28 +25686,29362,18 +25687,70736,18 +25688,4832,99 +25689,38327,35 +25690,109479,10749 +25691,163706,18 +25692,253250,36 +25693,27621,10770 +25694,83456,10749 +25695,42623,35 +25696,1678,878 +25697,8844,10751 +25698,13173,35 +25699,80468,35 +25700,294254,28 +25701,97598,35 +25702,256907,27 +25703,59046,35 +25704,153102,27 +25705,18585,10749 +25706,334527,53 +25707,177566,28 +25708,394723,18 +25709,139862,28 +25710,121655,99 +25711,70581,18 +25712,9776,35 +25713,20544,10770 +25714,372226,18 +25715,39334,10749 +25716,50247,18 +25717,176124,18 +25718,13374,35 +25719,19215,99 +25720,122368,18 +25721,193523,18 +25722,357851,28 +25723,335498,80 +25724,1574,28 +25725,109213,27 +25726,126889,27 +25727,103902,18 +25728,229559,35 +25729,183258,80 +25730,22020,35 +25731,42204,35 +25732,62046,80 +25733,1810,18 +25734,270724,35 +25735,23169,10749 +25736,177190,18 +25737,26603,35 +25738,290999,27 +25739,331588,18 +25740,73952,53 +25741,33680,10749 +25742,300669,80 +25743,131898,18 +25744,14591,99 +25745,37437,12 +25746,14400,53 +25747,39943,53 +25748,12584,28 +25749,9471,12 +25750,360737,18 +25751,201485,10749 +25752,26505,10751 +25753,374021,35 +25754,41078,16 +25755,17483,18 +25756,314388,18 +25757,26173,28 +25758,125490,27 +25759,44140,18 +25760,20312,14 +25761,39936,18 +25762,164013,35 +25763,299,53 +25764,18912,18 +25765,239103,18 +25766,69899,16 +25767,43143,27 +25768,9840,18 +25769,322614,18 +25770,66634,10402 +25771,102256,9648 +25772,108282,28 +25773,256561,99 +25774,49844,35 +25775,691,12 +25776,65456,27 +25777,273404,878 +25778,457307,9648 +25779,43692,53 +25780,53209,35 +25781,20650,27 +25782,280019,80 +25783,46513,80 +25784,8464,27 +25785,326,80 +25786,21570,10749 +25787,38761,27 +25788,127702,80 +25789,197624,10770 +25790,10330,35 +25791,11869,35 +25792,93115,99 +25793,133121,16 +25794,322614,878 +25795,414610,53 +25796,249969,35 +25797,27622,18 +25798,52264,16 +25799,47761,14 +25800,186991,18 +25801,10193,16 +25802,98368,27 +25803,14432,10749 +25804,12636,28 +25805,14489,14 +25806,30974,53 +25807,374614,10770 +25808,206266,99 +25809,72013,14 +25810,23544,18 +25811,440597,27 +25812,10611,35 +25813,14916,878 +25814,19176,35 +25815,18238,35 +25816,30060,12 +25817,36259,878 +25818,70695,35 +25819,102949,35 +25820,1574,18 +25821,1361,16 +25822,29138,10402 +25823,18755,35 +25824,59738,27 +25825,38303,35 +25826,102362,28 +25827,101352,35 +25828,438597,12 +25829,11449,27 +25830,182035,80 +25831,73306,27 +25832,41505,9648 +25833,25903,10749 +25834,62472,878 +25835,18694,10402 +25836,9464,18 +25837,264746,18 +25838,59722,12 +25839,32328,10751 +25840,1633,18 +25841,47002,18 +25842,261871,35 +25843,10849,14 +25844,53864,18 +25845,375742,27 +25846,76115,18 +25847,70807,35 +25848,369883,10751 +25849,48874,16 +25850,80713,18 +25851,105059,37 +25852,281418,80 +25853,64316,10769 +25854,236737,10749 +25855,24123,18 +25856,86241,10749 +25857,25872,35 +25858,9032,35 +25859,84184,18 +25860,93457,18 +25861,560,18 +25862,76349,28 +25863,19042,10749 +25864,262542,53 +25865,31027,28 +25866,16638,10752 +25867,42552,53 +25868,69717,10751 +25869,34623,18 +25870,70981,878 +25871,47405,10749 +25872,375599,35 +25873,3172,80 +25874,84569,36 +25875,48341,18 +25876,21142,28 +25877,2107,10749 +25878,260522,878 +25879,73600,10769 +25880,19846,18 +25881,351242,35 +25882,58384,53 +25883,211088,99 +25884,73551,28 +25885,99095,35 +25886,15940,80 diff --git a/demo/install/resources/movies_csv/Movie Production Company Map.csv b/demo/install/resources/movies_csv/Movie Production Company Map.csv new file mode 100644 index 0000000000..3d699f2f9d --- /dev/null +++ b/demo/install/resources/movies_csv/Movie Production Company Map.csv @@ -0,0 +1,19960 @@ +id,Movie,Production Company +1,58757,30943 +2,26505,1076 +3,73247,33 +4,36971,254 +5,76411,8263 +6,341957,54225 +7,34223,6562 +8,18893,6705 +9,61341,6739 +10,87516,829 +11,43976,9209 +12,47792,15276 +13,26533,6 +14,330275,37034 +15,12638,29165 +16,264269,21946 +17,33364,8411 +18,450530,5340 +19,265208,59490 +20,108869,13993 +21,30126,5021 +22,377170,6194 +23,13889,1779 +24,1640,25433 +25,299730,36786 +26,57327,1711 +27,10869,2 +28,49688,79621 +29,2029,3823 +30,23367,2454 +31,235260,23920 +32,32690,4641 +33,42045,514 +34,3933,11537 +35,28238,73307 +36,214093,3984 +37,33660,5331 +38,58547,12292 +39,119738,79559 +40,135708,10989 +41,13889,2680 +42,396330,2785 +43,352733,50511 +44,12205,4563 +45,157843,58092 +46,48787,16561 +47,1991,45194 +48,16436,2094 +49,60855,806 +50,99261,4745 +51,168552,16 +52,336011,1422 +53,27144,16557 +54,89591,3869 +55,72203,14599 +56,49524,333 +57,9771,10210 +58,106049,13148 +59,417678,10067 +60,421365,51401 +61,140607,1634 +62,26808,4591 +63,135204,12432 +64,23692,41564 +65,31165,10462 +66,294652,19638 +67,44960,19463 +68,85699,21411 +69,25500,7090 +70,15067,685 +71,63838,886 +72,14916,47178 +73,341201,8791 +74,8080,763 +75,239566,11262 +76,3172,8411 +77,17771,181 +78,49522,288 +79,5491,7406 +80,56391,84599 +81,63300,5120 +82,30308,5235 +83,34193,11503 +84,440777,93624 +85,18189,3950 +86,10004,32 +87,9296,12 +88,28482,4804 +89,34496,23516 +90,20108,7446 +91,231176,45724 +92,3520,10000 +93,31078,4898 +94,312221,88686 +95,28325,77369 +96,17332,6735 +97,26670,56 +98,11422,33 +99,354859,61018 +100,330770,11921 +101,146243,73666 +102,13495,3315 +103,56807,37264 +104,12103,172 +105,406449,75631 +106,70747,80103 +107,13668,441 +108,42684,7295 +109,84336,288 +110,28417,3132 +111,373200,55802 +112,82708,608 +113,11113,6194 +114,3597,441 +115,286709,49982 +116,10866,10104 +117,306598,78686 +118,36657,22970 +119,41211,11620 +120,46567,10454 +121,11004,8878 +122,296313,8281 +123,288694,6037 +124,11633,3364 +125,1825,6194 +126,245917,3153 +127,134360,5 +128,300669,17393 +129,13823,508 +130,37586,75419 +131,59961,13778 +132,19898,5755 +133,28366,3320 +134,44414,7380 +135,362178,90980 +136,332488,49430 +137,345519,55989 +138,336549,5120 +139,316042,6408 +140,87343,66587 +141,189,10807 +142,22076,10254 +143,75622,22842 +144,76229,306 +145,12122,33 +146,3478,2013 +147,49850,2683 +148,37291,181 +149,94340,38598 +150,333352,75932 +151,103597,26606 +152,48627,6194 +153,47412,2112 +154,125409,11858 +155,371003,69224 +156,26153,35831 +157,10354,80 +158,75532,43706 +159,218425,50834 +160,292294,441 +161,8247,7384 +162,315846,3341 +163,286709,3240 +164,32234,5072 +165,257331,7036 +166,126927,9266 +167,13728,616 +168,4286,1638 +169,35694,26468 +170,20372,54088 +171,41505,2088 +172,17111,4007 +173,45693,7035 +174,82243,65085 +175,635,559 +176,53178,5 +177,347331,57188 +178,76268,729 +179,27635,10096 +180,49277,7159 +181,21566,68596 +182,28090,888 +183,8869,6194 +184,327749,54880 +185,341174,33 +186,51739,10342 +187,4520,58 +188,27300,4660 +189,75138,7783 +190,15081,2 +191,8072,63558 +192,216156,2683 +193,32395,6563 +194,259997,20976 +195,354859,20656 +196,8088,34 +197,338676,10137 +198,123283,10307 +199,33127,5251 +200,61985,35430 +201,3033,18880 +202,2143,697 +203,12614,8411 +204,264393,5906 +205,180299,12141 +206,64725,10680 +207,9529,278 +208,60807,45585 +209,13542,564 +210,19754,3670 +211,230179,5056 +212,6038,58262 +213,15907,6194 +214,338676,7345 +215,46184,33 +216,1554,21612 +217,312100,2785 +218,30973,10167 +219,412103,8300 +220,54752,4 +221,52051,4343 +222,381518,62230 +223,297560,12093 +224,390930,5897 +225,320873,79275 +226,91076,4248 +227,261036,39517 +228,323555,21206 +229,55192,5070 +230,337012,19982 +231,84097,441 +232,76094,4 +233,28417,11932 +234,11655,6566 +235,208091,11801 +236,92950,77268 +237,20312,3857 +238,40863,35040 +239,42521,6970 +240,143380,18898 +241,296626,70571 +242,59231,70 +243,81223,15568 +244,202337,42232 +245,45649,23002 +246,106573,4 +247,9602,30 +248,223485,14631 +249,445,310 +250,21765,8411 +251,890,610 +252,3291,2030 +253,844,354 +254,18178,3461 +255,27085,660 +256,84450,25012 +257,51994,9349 +258,33336,1477 +259,46915,14063 +260,177335,559 +261,138522,13338 +262,47426,15231 +263,129277,856 +264,15371,9155 +265,141241,11216 +266,38157,1069 +267,375355,86621 +268,16358,2188 +269,55712,4826 +270,163,6194 +271,82327,6111 +272,397422,76778 +273,11979,172 +274,228034,2374 +275,99859,1270 +276,10063,13534 +277,283445,3172 +278,340176,69967 +279,616,14718 +280,14669,2943 +281,147829,8411 +282,14787,2785 +283,1271,78685 +284,47493,441 +285,8932,8468 +286,55433,6684 +287,9928,11749 +288,344147,20235 +289,76397,33 +290,17609,3221 +291,17906,21374 +292,226269,1311 +293,336804,51696 +294,1271,449 +295,965,6 +296,16366,3487 +297,201581,15012 +298,15797,14175 +299,30995,4918 +300,255491,8704 +301,15653,3475 +302,655,7025 +303,1539,725 +304,193756,21897 +305,2666,908 +306,25551,893 +307,256740,23688 +308,276123,60847 +309,27381,6194 +310,122,11 +311,17046,3246 +312,77673,82 +313,40387,32665 +314,15148,3043 +315,63831,310 +316,46190,8411 +317,59354,7281 +318,322,172 +319,351043,61428 +320,29471,28762 +321,48205,1521 +322,49717,6417 +323,62837,1088 +324,25078,13412 +325,41077,48669 +326,266433,17561 +327,125510,5542 +328,31527,4 +329,317182,28049 +330,38618,4792 +331,392011,4748 +332,336050,48581 +333,245891,36433 +334,26593,2532 +335,58404,4 +336,10198,2 +337,11048,10523 +338,33740,8411 +339,57458,51715 +340,177271,4081 +341,345489,12046 +342,246860,789 +343,103902,10229 +344,73043,50094 +345,12113,1645 +346,44690,9266 +347,382951,80652 +348,348631,50076 +349,18093,71543 +350,377287,223 +351,116385,441 +352,20430,3777 +353,2034,6194 +354,140481,2740 +355,154371,19743 +356,1427,2875 +357,38922,5612 +358,10198,6125 +359,10915,3602 +360,73241,41698 +361,45324,36029 +362,49273,37046 +363,55156,44642 +364,13005,33 +365,223946,13318 +366,139455,11517 +367,97365,5358 +368,152989,3416 +369,12121,6194 +370,20123,49255 +371,109391,12391 +372,42288,5235 +373,99934,8411 +374,322548,37432 +375,411221,82855 +376,122081,15231 +377,161885,8302 +378,379335,51065 +379,252888,19694 +380,10866,7161 +381,126418,8411 +382,274990,235 +383,72251,514 +384,436340,16887 +385,44631,10330 +386,403570,53042 +387,15044,7429 +388,256092,17161 +389,33273,10031 +390,5967,1147 +391,327,528 +392,82485,11647 +393,10165,385 +394,158908,3356 +395,42453,3166 +396,78691,3492 +397,5123,30131 +398,19176,23 +399,132363,18921 +400,47638,11142 +401,128311,14066 +402,48156,8411 +403,77964,6194 +404,265563,6446 +405,79216,14599 +406,298931,33 +407,9354,32 +408,4248,1607 +409,190955,2908 +410,13258,860 +411,42725,9266 +412,43503,6 +413,795,508 +414,27221,4606 +415,2687,644 +416,43049,4402 +417,12249,2675 +418,408024,21990 +419,28739,5321 +420,242097,2418 +421,21629,441 +422,252680,3291 +423,333484,5 +424,295656,6425 +425,27526,14 +426,168819,38 +427,10829,3854 +428,82,33 +429,69828,1153 +430,363841,65430 +431,104041,537 +432,150201,50185 +433,81463,56253 +434,42179,17286 +435,10493,2537 +436,104973,4799 +437,21062,5485 +438,420648,32485 +439,445,225 +440,37108,4063 +441,296524,435 +442,169881,44113 +443,31111,2683 +444,35404,4 +445,58166,10947 +446,126323,22066 +447,18070,5388 +448,15303,81029 +449,33789,5401 +450,696,13309 +451,32546,30290 +452,51947,10568 +453,98566,2348 +454,75174,8532 +455,56448,6743 +456,9301,1972 +457,21968,44610 +458,6575,10105 +459,291164,1596 +460,50506,6426 +461,356842,288 +462,14945,11734 +463,146381,47 +464,1665,7429 +465,151431,659 +466,13823,5358 +467,257574,537 +468,32540,5212 +469,49853,230 +470,10391,4 +471,161024,12862 +472,19482,3616 +473,329868,220 +474,343878,55170 +475,45649,5358 +476,42678,1486 +477,291865,50810 +478,183412,12671 +479,14011,9993 +480,126319,27350 +481,336804,18626 +482,37108,2 +483,18079,4718 +484,78854,7705 +485,601,56 +486,274857,25577 +487,65123,10845 +488,10433,33 +489,246655,22213 +490,241930,41094 +491,327,11562 +492,318781,2094 +493,91571,1657 +494,88224,2974 +495,47144,850 +496,63988,38291 +497,98203,10417 +498,58074,9387 +499,9607,915 +500,149657,94789 +501,12516,6194 +502,363841,65429 +503,5955,1403 +504,82911,7429 +505,34205,47441 +506,268212,1283 +507,215061,10473 +508,102428,38249 +509,322614,45437 +510,339312,52917 +511,64784,3034 +512,266102,21460 +513,13798,4944 +514,53209,1442 +515,84284,11376 +516,14215,5258 +517,118150,1987 +518,42325,8411 +519,16124,94201 +520,17609,320 +521,137193,7456 +522,39907,7663 +523,8669,8411 +524,57489,302 +525,251555,29566 +526,17306,3285 +527,21135,7046 +528,14538,2921 +529,86254,4602 +530,122487,1704 +531,252059,53518 +532,341007,83224 +533,44458,6137 +534,9659,11962 +535,2898,559 +536,19665,11634 +537,36915,11308 +538,187022,567 +539,32708,76273 +540,2861,53 +541,101998,66030 +542,59408,1627 +543,157843,51864 +544,37710,3281 +545,140554,200 +546,352372,45754 +547,81576,2875 +548,296901,34966 +549,40952,10309 +550,9585,8411 +551,86234,76566 +552,38883,23082 +553,104193,9181 +554,2979,3743 +555,44874,6220 +556,262,306 +557,6687,9335 +558,210092,15784 +559,184363,75167 +560,8325,694 +561,32684,6 +562,4248,10958 +563,56647,7342 +564,173205,14078 +565,370264,68940 +566,19936,21138 +567,102629,28176 +568,80080,1931 +569,222935,22213 +570,178755,11793 +571,50186,5120 +572,51802,60 +573,9785,89895 +574,59297,11671 +575,43368,6194 +576,194509,4 +577,87060,2650 +578,42260,10869 +579,39413,2585 +580,31127,74248 +581,39057,7606 +582,12412,20341 +583,186227,8411 +584,41733,923 +585,413770,69192 +586,12144,69627 +587,82313,11227 +588,82817,5358 +589,398137,68599 +590,37454,7805 +591,180576,15526 +592,14644,1524 +593,14676,3070 +594,6068,175 +595,43256,5 +596,15616,6363 +597,38006,1314 +598,18899,5632 +599,227156,10221 +600,88036,11466 +601,60965,6873 +602,26204,14091 +603,3563,33 +604,360603,11061 +605,127864,22127 +606,245394,686 +607,18692,4 +608,101998,66031 +609,393367,79947 +610,60965,1632 +611,17940,20139 +612,90228,14074 +613,131739,9255 +614,235,90897 +615,3563,2608 +616,98025,36288 +617,84617,8411 +618,377516,18663 +619,74879,75040 +620,413782,71095 +621,107693,6584 +622,755,53009 +623,15303,67005 +624,18514,20811 +625,10921,2181 +626,817,595 +627,3478,1129 +628,38807,6 +629,38618,1766 +630,59197,1371 +631,27599,6181 +632,126323,22061 +633,60420,9350 +634,269173,36109 +635,9396,4 +636,67794,2370 +637,244316,24012 +638,76494,19577 +639,52999,84800 +640,32139,40093 +641,105551,4 +642,3405,4 +643,329805,76994 +644,2102,958 +645,343921,6679 +646,40744,13479 +647,28665,8411 +648,42456,2102 +649,22259,4081 +650,303856,38676 +651,12697,8178 +652,145668,23190 +653,50849,2185 +654,7459,1885 +655,92251,1498 +656,15213,306 +657,78265,6194 +658,11983,97 +659,20640,8411 +660,300155,18230 +661,125300,35 +662,14349,4564 +663,11576,8040 +664,75145,7429 +665,42136,71238 +666,145162,13646 +667,43379,1875 +668,244580,3846 +669,10425,10254 +670,15661,1539 +671,37586,74992 +672,27372,5070 +673,326359,6125 +674,332936,50110 +675,120357,441 +676,283686,6735 +677,10862,14 +678,3716,204 +679,795,676 +680,6163,2034 +681,223485,9349 +682,445916,88849 +683,17926,126 +684,199647,8924 +685,8588,2451 +686,253533,44098 +687,85673,1950 +688,8954,2543 +689,130507,6194 +690,9993,8724 +691,12205,84047 +692,64944,23330 +693,40041,17957 +694,101006,7777 +695,365222,4054 +696,2080,10893 +697,11235,7049 +698,42494,46412 +699,265180,11895 +700,247436,3506 +701,8342,23433 +702,240745,19671 +703,271234,9342 +704,358980,62876 +705,87204,157 +706,285869,47495 +707,83461,10845 +708,10521,10104 +709,226188,7119 +710,65509,1473 +711,9948,2 +712,335897,15892 +713,19140,28205 +714,61348,9027 +715,1724,420 +716,12089,1147 +717,16907,2918 +718,317723,43908 +719,85729,20491 +720,57737,43498 +721,385750,68937 +722,126712,441 +723,112991,4631 +724,8985,55584 +725,270899,2927 +726,136752,1388 +727,17744,11830 +728,21581,8117 +729,133160,1516 +730,15261,919 +731,20411,925 +732,8014,15671 +733,170677,10878 +734,35405,306 +735,8672,315 +736,113743,8411 +737,53042,3289 +738,70587,19649 +739,77338,6301 +740,360249,78093 +741,64568,1314 +742,51049,4 +743,47226,16125 +744,105760,16366 +745,259830,3471 +746,42062,306 +747,76170,9168 +748,47212,137 +749,12206,43854 +750,26505,6896 +751,4887,4231 +752,19548,9 +753,48419,9255 +754,27470,3266 +755,173865,90753 +756,9457,915 +757,30583,6181 +758,55836,14680 +759,9950,95296 +760,11516,208 +761,250638,2521 +762,290365,44097 +763,1428,7405 +764,11943,6194 +765,11980,7405 +766,142012,12245 +767,115290,12799 +768,2196,3801 +769,2355,3800 +770,260001,37578 +771,26152,22763 +772,64428,516 +773,25890,446 +774,28673,4858 +775,14977,3265 +776,38765,2532 +777,119801,4402 +778,15749,2053 +779,70199,8411 +780,286971,7419 +781,165159,641 +782,206563,32243 +783,16342,288 +784,13805,2053 +785,18128,5360 +786,18333,6181 +787,46513,5827 +788,987,13 +789,11428,23308 +790,45243,2877 +791,25536,5632 +792,33407,2966 +793,3036,559 +794,62046,1208 +795,13390,2865 +796,68247,8411 +797,293670,11766 +798,9677,4339 +799,33005,7405 +800,11853,306 +801,105210,62452 +802,264644,5267 +803,61966,3006 +804,17332,33 +805,363757,2683 +806,364690,79623 +807,34013,313 +808,287483,35508 +809,50942,4056 +810,44283,8164 +811,47112,20521 +812,35632,18027 +813,290764,76992 +814,77060,5120 +815,18897,7466 +816,8204,862 +817,385654,41356 +818,57489,6458 +819,30584,90757 +820,10274,3958 +821,1278,11561 +822,1418,10011 +823,9793,1600 +824,17956,4 +825,9836,8089 +826,55027,6758 +827,29058,76329 +828,5413,686 +829,13993,3600 +830,53128,644 +831,13855,11590 +832,109074,75621 +833,2976,12 +834,26963,23948 +835,35852,5577 +836,43833,73658 +837,45179,8437 +838,128154,23972 +839,256969,30187 +840,51209,14589 +841,9950,95293 +842,10044,2521 +843,46094,82607 +844,11848,3626 +845,5915,41051 +846,299165,36421 +847,14019,2853 +848,62320,11359 +849,336890,23108 +850,78318,6194 +851,51144,6181 +852,340488,6692 +853,264553,13150 +854,214093,7894 +855,42533,91672 +856,71133,88113 +857,30959,14879 +858,3484,8411 +859,44682,22925 +860,16866,12297 +861,79120,10443 +862,4520,1668 +863,67822,4952 +864,77875,8056 +865,394723,76054 +866,75142,7783 +867,2984,33 +868,26689,41 +869,128767,19024 +870,10674,2 +871,39415,21505 +872,82911,21754 +873,63831,11248 +874,257345,33 +875,8985,200 +876,127493,925 +877,9423,762 +878,118549,4388 +879,1404,7680 +880,29043,2078 +881,11859,1885 +882,209401,20369 +883,11058,57347 +884,42307,14430 +885,26612,6189 +886,135313,10915 +887,28561,6 +888,25078,11884 +889,150223,15406 +890,314388,4667 +891,275269,12865 +892,43670,52767 +893,315362,11682 +894,23668,4245 +895,31411,8411 +896,7511,126 +897,382589,2612 +898,17168,4 +899,153228,6194 +900,15263,60 +901,37731,7984 +902,364379,65769 +903,25142,81997 +904,29108,27014 +905,207402,1905 +906,37939,955 +907,60140,4395 +908,12639,2101 +909,14698,11356 +910,106417,882 +911,216580,25884 +912,238985,90641 +913,126227,3282 +914,29259,641 +915,44943,7295 +916,52850,2054 +917,352890,56403 +918,365065,62331 +919,29129,1574 +920,151086,26305 +921,246011,9198 +922,414749,1538 +923,19812,5402 +924,38157,2623 +925,76115,7922 +926,20715,59149 +927,46729,10853 +928,77949,8088 +929,41949,18947 +930,141955,306 +931,37686,11461 +932,2309,12 +933,336655,51609 +934,10077,2978 +935,64129,306 +936,320037,44537 +937,13600,4171 +938,288710,86834 +939,101998,14820 +940,8194,2341 +941,29100,4903 +942,57684,306 +943,24775,6584 +944,59051,4867 +945,227462,17312 +946,456781,90130 +947,64428,1314 +948,10204,10221 +949,8358,11395 +950,14126,2061 +951,64720,21925 +952,13058,1178 +953,411013,82064 +954,24424,16053 +955,338,201 +956,455043,92394 +957,21778,5870 +958,1165,247 +959,18475,3494 +960,98586,10071 +961,158947,51411 +962,29224,10627 +963,330115,3898 +964,147876,4985 +965,37917,171 +966,43157,306 +967,277847,52854 +968,36355,38181 +969,127560,15577 +970,339527,12075 +971,2274,10221 +972,189151,5906 +973,12182,3287 +974,18897,12035 +975,13542,3324 +976,283686,6736 +977,104462,45867 +978,1251,27 +979,13225,81129 +980,227717,8411 +981,109671,42712 +982,132714,3166 +983,407531,79545 +984,139826,3268 +985,74437,13381 +986,27711,1369 +987,4923,306 +988,161187,41510 +989,4921,1761 +990,122081,14036 +991,23739,6120 +992,27145,223 +993,21159,4142 +994,10173,306 +995,14765,9271 +996,56558,306 +997,49521,6194 +998,258509,711 +999,52705,2260 +1000,178809,14495 +1001,42298,306 +1002,101998,10949 +1003,38034,40594 +1004,195068,6194 +1005,1665,11486 +1006,75262,5120 +1007,63831,7466 +1008,381255,2490 +1009,24150,15822 +1010,36807,9195 +1011,82990,4 +1012,52744,4 +1013,82501,10949 +1014,9343,8765 +1015,228294,37583 +1016,18935,9195 +1017,118257,11359 +1018,84735,6194 +1019,77459,8992 +1020,17622,11668 +1021,42188,43 +1022,37731,7983 +1023,181656,5542 +1024,67314,28348 +1025,38221,882 +1026,119433,5466 +1027,58704,49734 +1028,105,33 +1029,8951,7705 +1030,12594,2188 +1031,1624,33 +1032,102382,19551 +1033,345916,56239 +1034,18477,20716 +1035,14527,807 +1036,7343,23906 +1037,271039,43255 +1038,56807,2452 +1039,76333,9335 +1040,28820,2185 +1041,79707,7967 +1042,16428,5673 +1043,168541,15165 +1044,213443,8411 +1045,298751,55146 +1046,343173,54850 +1047,12450,6368 +1048,10077,2755 +1049,33541,33 +1050,1793,306 +1051,27966,6194 +1052,29233,8811 +1053,33091,5351 +1054,33339,5286 +1055,228496,26770 +1056,13459,6220 +1057,68684,21125 +1058,25941,2452 +1059,17770,12 +1060,11313,79 +1061,43093,14058 +1062,245703,6194 +1063,14123,20241 +1064,1272,20478 +1065,7980,27 +1066,28032,6194 +1067,273610,24156 +1068,154537,16259 +1069,16016,13210 +1070,10897,33 +1071,21605,1178 +1072,436,2291 +1073,303856,38675 +1074,20242,9195 +1075,623,8411 +1076,126315,14534 +1077,49688,79619 +1078,280004,8411 +1079,26955,11833 +1080,121530,165 +1081,281291,2186 +1082,133183,5754 +1083,83754,7819 +1084,262338,10254 +1085,84944,77683 +1086,218508,31059 +1087,422005,4101 +1088,8388,3268 +1089,77338,8018 +1090,28031,7429 +1091,58159,16685 +1092,50326,3065 +1093,280617,15886 +1094,55846,25629 +1095,59408,4 +1096,107916,3137 +1097,246860,32289 +1098,11639,24931 +1099,331962,49152 +1100,87827,711 +1101,8276,1475 +1102,300596,6639 +1103,154019,15446 +1104,30637,5077 +1105,264309,8411 +1106,6341,441 +1107,49577,7157 +1108,85435,18987 +1109,2355,7295 +1110,53870,62942 +1111,13486,33 +1112,28178,1843 +1113,341490,9372 +1114,10724,171 +1115,11428,5 +1116,27019,461 +1117,121823,3393 +1118,300669,86128 +1119,23830,8073 +1120,172520,31145 +1121,38916,18947 +1122,16157,5844 +1123,86543,73727 +1124,27635,4927 +1125,37103,306 +1126,16997,12250 +1127,49009,66330 +1128,43114,441 +1129,151870,12493 +1130,94170,14069 +1131,4516,779 +1132,45679,6194 +1133,199615,2665 +1134,313922,1976 +1135,11330,12413 +1136,47795,16527 +1137,16550,10565 +1138,10586,6033 +1139,51209,21815 +1140,297702,26637 +1141,78285,16772 +1142,14886,5 +1143,263341,308 +1144,8414,2414 +1145,3172,1212 +1146,10129,76233 +1147,20766,7405 +1148,10735,975 +1149,41522,6438 +1150,219572,19659 +1151,40688,2 +1152,408381,53597 +1153,16351,805 +1154,336882,3079 +1155,45649,12856 +1156,44338,68540 +1157,284293,26590 +1158,5481,15191 +1159,2675,9195 +1160,97618,285 +1161,31672,2400 +1162,365065,54574 +1163,5048,1832 +1164,27095,5358 +1165,4147,80 +1166,211928,10845 +1167,101669,3052 +1168,128241,16265 +1169,271404,78752 +1170,85435,18942 +1171,327,11563 +1172,99329,68399 +1173,93511,81829 +1174,29471,4606 +1175,438643,86166 +1176,21193,68432 +1177,39230,3153 +1178,9474,218 +1179,85644,4 +1180,14145,5975 +1181,214,35 +1182,43935,1172 +1183,53128,8342 +1184,322148,23868 +1185,6522,33 +1186,253251,8530 +1187,45610,11958 +1188,4982,7295 +1189,45964,441 +1190,218329,8690 +1191,13991,8411 +1192,8014,21645 +1193,445,7025 +1194,42216,11333 +1195,83079,78439 +1196,156356,82843 +1197,90319,14599 +1198,37911,13382 +1199,336669,16889 +1200,70575,7405 +1201,44129,705 +1202,773,12808 +1203,17927,7947 +1204,67174,57662 +1205,362541,11801 +1206,55534,12200 +1207,76341,79 +1208,139521,12154 +1209,41903,64655 +1210,59349,3823 +1211,108345,6194 +1212,430365,23497 +1213,157829,738 +1214,52803,10250 +1215,38244,307 +1216,55681,95698 +1217,11351,738 +1218,82501,10441 +1219,108634,13260 +1220,20200,2612 +1221,71701,1314 +1222,16351,12800 +1223,24767,2 +1224,13354,2785 +1225,228968,48191 +1226,186997,17298 +1227,79372,8411 +1228,14467,3661 +1229,115782,10427 +1230,12593,5067 +1231,14011,2785 +1232,12796,8913 +1233,14050,16061 +1234,38920,14590 +1235,22582,19 +1236,51054,4 +1237,133941,1406 +1238,300,11911 +1239,19505,2230 +1240,43855,6 +1241,131903,10663 +1242,255948,44989 +1243,4825,28205 +1244,82098,22710 +1245,53648,6620 +1246,54093,8004 +1247,262988,14773 +1248,18569,1553 +1249,4592,35445 +1250,47792,7254 +1251,15677,5612 +1252,22899,881 +1253,25598,42345 +1254,21250,33 +1255,10972,2065 +1256,163814,5723 +1257,330878,49055 +1258,320318,790 +1259,10044,3054 +1260,257447,68260 +1261,53150,12360 +1262,3537,8411 +1263,259695,29313 +1264,73612,40044 +1265,60285,441 +1266,41378,5798 +1267,14819,175 +1268,59569,525 +1269,332283,45015 +1270,460870,5996 +1271,216374,13894 +1272,17111,3255 +1273,20034,7981 +1274,31417,13437 +1275,814,276 +1276,21132,1566 +1277,28062,17513 +1278,57005,86711 +1279,8869,79 +1280,9885,2806 +1281,407559,79563 +1282,42329,4051 +1283,242310,24972 +1284,45384,6755 +1285,189197,6068 +1286,344039,55256 +1287,73348,4 +1288,413998,43 +1289,19348,3635 +1290,333484,79 +1291,248543,13969 +1292,14977,3551 +1293,12796,4 +1294,83430,12352 +1295,15261,33 +1296,1599,23488 +1297,74437,6 +1298,97024,8411 +1299,18282,11043 +1300,18690,8411 +1301,21208,4253 +1302,747,53047 +1303,13280,2448 +1304,194853,8479 +1305,325133,17393 +1306,125413,4 +1307,333091,51788 +1308,157,4 +1309,37206,10969 +1310,11358,8411 +1311,253251,6639 +1312,20536,3795 +1313,18843,1302 +1314,293660,306 +1315,319096,53716 +1316,16137,3144 +1317,215379,8275 +1318,9950,95294 +1319,53648,6618 +1320,10550,2755 +1321,18897,11776 +1322,27480,8081 +1323,237584,18240 +1324,81274,25438 +1325,254193,14066 +1326,27507,8411 +1327,38718,87839 +1328,336804,5358 +1329,318922,60323 +1330,231145,6805 +1331,1833,497 +1332,329724,12096 +1333,121791,26890 +1334,4024,142 +1335,13678,2668 +1336,83666,23449 +1337,61121,5358 +1338,50506,6425 +1339,69103,61 +1340,177979,46 +1341,24657,7446 +1342,330459,2 +1343,22140,8109 +1344,101998,2514 +1345,56292,11461 +1346,49314,41 +1347,13017,3294 +1348,110887,5488 +1349,290555,5106 +1350,8470,23019 +1351,11415,1950 +1352,57749,43529 +1353,84942,23991 +1354,88273,119 +1355,102197,76043 +1356,60106,40984 +1357,43645,42084 +1358,1896,777 +1359,11692,79 +1360,312831,6901 +1361,348025,189 +1362,254679,9300 +1363,345489,55969 +1364,45098,21966 +1365,38322,306 +1366,45671,11561 +1367,10193,3 +1368,138222,16947 +1369,12618,5 +1370,5915,838 +1371,280674,26855 +1372,9593,55528 +1373,96724,10146 +1374,137193,8676 +1375,67822,10313 +1376,176,55405 +1377,44578,7252 +1378,121674,2372 +1379,88794,23 +1380,366170,21592 +1381,10992,1757 +1382,11302,13309 +1383,660,7576 +1384,30175,4255 +1385,115023,6194 +1386,45431,22023 +1387,23223,8 +1388,16436,14877 +1389,277355,43906 +1390,200481,3 +1391,273481,3528 +1392,76494,1632 +1393,21145,20240 +1394,384682,7293 +1395,11338,33 +1396,25376,9335 +1397,26125,6956 +1398,118283,6194 +1399,347096,14787 +1400,2666,12 +1401,258751,65604 +1402,127091,16353 +1403,20047,69353 +1404,795,6194 +1405,773,43 +1406,77625,26687 +1407,41479,3870 +1408,199985,13561 +1409,46094,1382 +1410,29959,5 +1411,63578,163 +1412,245692,68546 +1413,10890,5848 +1414,10671,33 +1415,36635,6194 +1416,353326,80468 +1417,336050,12520 +1418,168994,10640 +1419,61580,56801 +1420,63578,3324 +1421,11837,5016 +1422,71125,1444 +1423,300424,2785 +1424,74549,3291 +1425,338100,9217 +1426,81182,39734 +1427,34084,5410 +1428,35558,3213 +1429,33788,829 +1430,48805,6246 +1431,408272,23457 +1432,229296,10427 +1433,283384,21882 +1434,63472,4870 +1435,8869,172 +1436,284052,2 +1437,215743,684 +1438,220287,77519 +1439,51800,22971 +1440,70881,8411 +1441,211166,32769 +1442,61984,3363 +1443,9550,724 +1444,197057,14651 +1445,44591,14234 +1446,236737,13287 +1447,104041,3535 +1448,76714,15843 +1449,159770,12142 +1450,41166,21590 +1451,49852,24015 +1452,946,33 +1453,83346,11510 +1454,48250,82005 +1455,142881,5120 +1456,168496,16553 +1457,2731,1180 +1458,11589,3057 +1459,61934,441 +1460,64215,5369 +1461,111042,306 +1462,9541,14 +1463,143092,3468 +1464,77117,7036 +1465,43266,306 +1466,445727,87500 +1467,111839,3268 +1468,21966,6349 +1469,14369,1171 +1470,2143,981 +1471,36094,8411 +1472,21413,7161 +1473,30141,2315 +1474,179603,6 +1475,240913,23384 +1476,356296,65517 +1477,358511,62945 +1478,317,168 +1479,157409,21546 +1480,359746,90792 +1481,12432,2441 +1482,393445,83151 +1483,10320,49325 +1484,161545,2441 +1485,8842,53905 +1486,13495,2975 +1487,293982,10826 +1488,267310,50820 +1489,322548,10039 +1490,42457,20460 +1491,210047,3095 +1492,140509,27719 +1493,13956,10159 +1494,11645,1657 +1495,146,20289 +1496,118134,3245 +1497,118293,6623 +1498,3072,1312 +1499,39127,2268 +1500,71701,441 +1501,289183,25491 +1502,14457,22901 +1503,61361,3823 +1504,48836,52149 +1505,13162,18985 +1506,55612,7940 +1507,5552,23872 +1508,104211,5488 +1509,38761,15185 +1510,31011,796 +1511,290379,1442 +1512,21721,1087 +1513,16839,8833 +1514,114172,33398 +1515,42683,6194 +1516,45132,14406 +1517,83191,11713 +1518,58985,17218 +1519,56800,5779 +1520,86643,17102 +1521,187596,737 +1522,72545,12 +1523,8491,1648 +1524,374473,856 +1525,205864,75332 +1526,14525,3362 +1527,36634,8411 +1528,72421,17052 +1529,5494,19259 +1530,28178,66328 +1531,145135,7625 +1532,10193,2 +1533,14459,7979 +1534,13495,306 +1535,71668,7405 +1536,32044,441 +1537,19995,444 +1538,37003,11522 +1539,11056,357 +1540,922,506 +1541,19495,3622 +1542,47878,898 +1543,60599,24933 +1544,339527,7493 +1545,11633,882 +1546,51800,22972 +1547,58372,2492 +1548,1421,53 +1549,11524,20042 +1550,634,14 +1551,2567,54502 +1552,83890,65144 +1553,50934,688 +1554,44282,20840 +1555,75880,4 +1556,279096,34911 +1557,14868,3009 +1558,345775,18367 +1559,1924,51862 +1560,174958,6762 +1561,70586,10405 +1562,22683,56365 +1563,98631,3656 +1564,103539,71333 +1565,25143,1267 +1566,259593,306 +1567,47194,29491 +1568,52859,1281 +1569,34899,4606 +1570,81937,17659 +1571,300601,29566 +1572,86321,13970 +1573,17978,47557 +1574,173494,42045 +1575,2140,973 +1576,47143,74216 +1577,11205,2521 +1578,13440,33 +1579,41597,11865 +1580,32234,6194 +1581,9902,53350 +1582,401164,90399 +1583,13836,2 +1584,293863,22107 +1585,3037,451 +1586,31005,41252 +1587,8930,6111 +1588,156627,84368 +1589,51736,7249 +1590,10857,19261 +1591,11972,21000 +1592,18620,89522 +1593,33107,51901 +1594,227964,5591 +1595,8398,2481 +1596,46592,5120 +1597,125623,7811 +1598,14069,822 +1599,80720,6 +1600,44655,85947 +1601,30163,13192 +1602,244458,264 +1603,227700,694 +1604,61813,15709 +1605,13162,18984 +1606,92796,60 +1607,76829,10522 +1608,229182,26421 +1609,17708,9195 +1610,128246,11589 +1611,2758,258 +1612,30921,15378 +1613,13346,306 +1614,42040,4 +1615,44682,1241 +1616,9639,3319 +1617,383064,11199 +1618,14753,164 +1619,346723,56779 +1620,12220,97 +1621,28068,9213 +1622,14069,4288 +1623,79611,19802 +1624,109491,32184 +1625,245700,9349 +1626,33660,5333 +1627,1058,652 +1628,101998,11576 +1629,217923,3393 +1630,72013,53504 +1631,140595,71837 +1632,9787,559 +1633,25330,477 +1634,899,4759 +1635,228290,29223 +1636,120854,21918 +1637,67748,7584 +1638,132939,56442 +1639,43849,8411 +1640,11236,6194 +1641,27904,25818 +1642,44751,7610 +1643,125229,881 +1644,36929,6194 +1645,19203,3938 +1646,3053,8411 +1647,272878,83397 +1648,118408,3196 +1649,157424,19402 +1650,4986,1138 +1651,27349,14771 +1652,6171,97 +1653,67696,4376 +1654,245917,6452 +1655,61580,74760 +1656,51406,17027 +1657,221732,14602 +1658,59296,7419 +1659,233423,20183 +1660,240832,5358 +1661,119409,1024 +1662,127585,7505 +1663,37653,603 +1664,315872,2441 +1665,379019,5870 +1666,966,219 +1667,97365,729 +1668,26153,6583 +1669,84348,15156 +1670,49273,7159 +1671,32720,29229 +1672,118293,14542 +1673,53219,61 +1674,291351,32554 +1675,125926,17593 +1676,328111,6452 +1677,79008,60 +1678,16373,4 +1679,73043,9177 +1680,13569,2776 +1681,24163,43934 +1682,33623,28064 +1683,284052,420 +1684,102630,3608 +1685,107985,33 +1686,62728,2452 +1687,241639,2269 +1688,58159,3166 +1689,149910,19649 +1690,29510,10324 +1691,1579,9195 +1692,126319,2675 +1693,48706,12 +1694,15310,8263 +1695,30876,55576 +1696,85327,18203 +1697,82737,318 +1698,7547,2266 +1699,66193,25262 +1700,131366,70277 +1701,9651,76462 +1702,50008,3449 +1703,137683,14912 +1704,340027,49389 +1705,122134,44916 +1706,36960,2873 +1707,328032,47 +1708,25998,5686 +1709,127864,17298 +1710,36658,19551 +1711,166221,4063 +1712,23289,3675 +1713,205054,5316 +1714,54384,9020 +1715,47795,255 +1716,66984,3166 +1717,61109,33 +1718,4443,22123 +1719,8071,14679 +1720,181533,22213 +1721,3580,171 +1722,361571,21556 +1723,4550,946 +1724,11035,11994 +1725,44115,43 +1726,97365,11800 +1727,86186,7928 +1728,364324,61239 +1729,8342,49181 +1730,152737,16280 +1731,24062,4 +1732,435737,16443 +1733,362703,71890 +1734,34204,3213 +1735,1586,1271 +1736,343283,7446 +1737,17711,596 +1738,21619,3993 +1739,39943,5795 +1740,43045,17452 +1741,315010,10197 +1742,77338,3823 +1743,177979,13596 +1744,43973,54377 +1745,152532,13 +1746,12780,5551 +1747,10394,269 +1748,341490,235 +1749,126016,6431 +1750,415072,14317 +1751,5319,1892 +1752,11909,6213 +1753,49787,7584 +1754,82767,65192 +1755,58244,53496 +1756,7916,6356 +1757,189225,1640 +1758,44888,306 +1759,12454,10100 +1760,1259,2452 +1761,35026,16804 +1762,11046,8411 +1763,329865,2575 +1764,41478,31715 +1765,29382,4945 +1766,273202,14599 +1767,38654,13721 +1768,8272,2361 +1769,315837,88981 +1770,30535,33729 +1771,37055,20639 +1772,47144,57301 +1773,53459,4800 +1774,2300,55527 +1775,51581,75224 +1776,375742,74925 +1777,2080,431 +1778,21626,25686 +1779,133704,7084 +1780,295058,48430 +1781,178569,4928 +1782,239566,13 +1783,53172,7595 +1784,10735,67990 +1785,339994,27497 +1786,227552,6425 +1787,7459,6194 +1788,35405,95586 +1789,103597,10611 +1790,228970,43 +1791,229702,5225 +1792,8014,18367 +1793,256836,30600 +1794,28425,33 +1795,358980,62875 +1796,30155,16272 +1797,224950,8204 +1798,14145,44603 +1799,39048,13914 +1800,78705,28810 +1801,1369,14723 +1802,7304,18621 +1803,82679,2348 +1804,62688,17962 +1805,75892,306 +1806,12171,18361 +1807,41171,56628 +1808,381015,91066 +1809,11517,5 +1810,40709,20500 +1811,8916,27 +1812,11798,2452 +1813,24331,15102 +1814,419430,72725 +1815,301325,75277 +1816,409502,85628 +1817,38027,4 +1818,5060,10329 +1819,15045,1302 +1820,91261,5120 +1821,16077,10163 +1822,403119,63443 +1823,4291,1598 +1824,29471,3391 +1825,50295,4110 +1826,96888,24477 +1827,54659,3616 +1828,7220,827 +1829,215741,7699 +1830,37451,306 +1831,339403,31922 +1832,64383,5870 +1833,10740,839 +1834,8079,2343 +1835,9252,29165 +1836,114719,23036 +1837,391375,76207 +1838,67,315 +1839,214100,284 +1840,24825,4112 +1841,25053,9177 +1842,40957,5 +1843,11979,67988 +1844,31128,76057 +1845,7549,14714 +1846,73501,63967 +1847,376501,7579 +1848,84284,8659 +1849,1902,635 +1850,195796,18177 +1851,86520,9181 +1852,9776,36390 +1853,323435,37432 +1854,261871,21279 +1855,1428,441 +1856,296523,51942 +1857,1963,822 +1858,9966,22039 +1859,12205,52024 +1860,13823,6194 +1861,30127,2429 +1862,16164,1811 +1863,34482,10067 +1864,31548,33 +1865,18990,1314 +1866,248543,2429 +1867,149793,441 +1868,20825,3842 +1869,329690,1538 +1870,182097,76305 +1871,25538,30241 +1872,428355,49261 +1873,6933,763 +1874,209251,5444 +1875,141138,5798 +1876,72710,8073 +1877,209406,805 +1878,33250,4 +1879,36056,51816 +1880,45610,8852 +1881,121234,5015 +1882,50161,4098 +1883,30974,9 +1884,26955,6596 +1885,13610,1632 +1886,408024,15614 +1887,102197,3467 +1888,8340,2440 +1889,142061,2785 +1890,54022,65327 +1891,11496,21001 +1892,78373,4714 +1893,18919,185 +1894,97365,11779 +1895,8247,10104 +1896,88273,3221 +1897,11058,846 +1898,106747,11005 +1899,337107,5125 +1900,10176,6928 +1901,46567,1672 +1902,44793,12113 +1903,10097,3565 +1904,133941,3602 +1905,31880,18665 +1906,26849,441 +1907,127762,11793 +1908,336265,14066 +1909,417678,16322 +1910,46982,1931 +1911,28739,4560 +1912,21544,4189 +1913,64720,10936 +1914,30163,354 +1915,8008,31217 +1916,112558,47685 +1917,14452,8582 +1918,273879,33538 +1919,72614,4581 +1920,17654,8582 +1921,11654,8411 +1922,159469,6 +1923,17609,76 +1924,814,33 +1925,10992,6363 +1926,84333,71806 +1927,42136,13349 +1928,169,1885 +1929,335970,2608 +1930,12477,10342 +1931,25353,7801 +1932,44001,4 +1933,171357,13346 +1934,47914,10308 +1935,236737,4601 +1936,29568,76935 +1937,72917,694 +1938,296313,14758 +1939,184155,6453 +1940,60935,33 +1941,27599,157 +1942,13574,2777 +1943,13092,11752 +1944,42709,8262 +1945,245700,11267 +1946,67509,5358 +1947,16921,25134 +1948,172443,36191 +1949,11004,4650 +1950,2503,11349 +1951,32080,306 +1952,345775,73894 +1953,17622,11669 +1954,36113,1615 +1955,84473,9384 +1956,16090,4 +1957,17566,3343 +1958,41994,21205 +1959,14159,1569 +1960,325385,87695 +1961,58166,8658 +1962,145247,28004 +1963,44746,7710 +1964,323675,49968 +1965,34588,4887 +1966,62978,75848 +1967,342213,16675 +1968,21193,7961 +1969,2110,963 +1970,24331,3498 +1971,202215,10339 +1972,224778,34249 +1973,78281,16366 +1974,27989,51996 +1975,44256,8130 +1976,29076,4258 +1977,189,14 +1978,5060,10265 +1979,252773,729 +1980,257088,264 +1981,11358,13816 +1982,180050,13662 +1983,27462,1582 +1984,78377,7961 +1985,159304,17027 +1986,47653,930 +1987,91076,2152 +1988,257088,10289 +1989,266102,5056 +1990,29290,6175 +1991,228339,8342 +1992,188765,18485 +1993,32559,75430 +1994,8064,200 +1995,289278,3792 +1996,43367,6 +1997,124057,7320 +1998,200505,491 +1999,34899,7753 +2000,17927,87390 +2001,41787,15117 +2002,36657,22969 +2003,394403,77429 +2004,435366,92805 +2005,63472,10478 +2006,1723,624 +2007,116340,2907 +2008,345775,76915 +2009,127864,19037 +2010,10992,3169 +2011,86825,9350 +2012,31413,43382 +2013,25649,12743 +2014,598,346 +2015,36375,28205 +2016,41078,48669 +2017,236808,12630 +2018,218425,50838 +2019,194,4411 +2020,18917,18161 +2021,25934,16124 +2022,72105,2531 +2023,786,7293 +2024,63988,925 +2025,7299,7405 +2026,13912,4 +2027,1902,9335 +2028,153397,12574 +2029,83430,12346 +2030,44522,18925 +2031,18897,12031 +2032,55624,843 +2033,41970,4606 +2034,24357,4164 +2035,35632,17552 +2036,5165,2342 +2037,9785,158 +2038,371462,72130 +2039,122677,13981 +2040,16820,41 +2041,48419,47005 +2042,42242,33 +2043,103731,10892 +2044,56647,7341 +2045,41357,6194 +2046,53217,174 +2047,28677,6548 +2048,116350,11244 +2049,17566,6194 +2050,25862,6194 +2051,341689,7217 +2052,88359,14391 +2053,38285,5051 +2054,38955,2521 +2055,44470,37356 +2056,409447,26727 +2057,22387,8411 +2058,39276,622 +2059,33588,14914 +2060,68737,923 +2061,140472,4 +2062,92393,41427 +2063,38783,2166 +2064,43821,306 +2065,67342,6379 +2066,21576,8803 +2067,20287,559 +2068,65759,79 +2069,76198,8930 +2070,26125,35002 +2071,56943,29223 +2072,86828,39420 +2073,228290,89156 +2074,22897,6452 +2075,81895,16677 +2076,70670,5746 +2077,63498,11428 +2078,106851,5996 +2079,38269,5695 +2080,370755,23437 +2081,22855,4811 +2082,2486,306 +2083,338676,23513 +2084,14414,2906 +2085,345925,27753 +2086,445,850 +2087,6978,306 +2088,63938,86861 +2089,445,6916 +2090,13652,11205 +2091,1116,19929 +2092,9425,6194 +2093,13766,13671 +2094,13380,2 +2095,62670,53009 +2096,23750,4264 +2097,10780,16368 +2098,47795,25513 +2099,17241,11073 +2100,32484,306 +2101,11536,60 +2102,10269,60 +2103,57575,8411 +2104,124994,5906 +2105,289225,78037 +2106,4191,53 +2107,9655,126 +2108,43806,4361 +2109,47161,6216 +2110,64450,23812 +2111,278632,5357 +2112,143380,10845 +2113,409447,5253 +2114,26030,1826 +2115,26689,4561 +2116,27270,13549 +2117,623,11352 +2118,11351,60 +2119,300487,79811 +2120,28178,66327 +2121,13853,4357 +2122,421958,1080 +2123,11337,60 +2124,81220,3135 +2125,18273,68258 +2126,85651,1819 +2127,270303,26995 +2128,65759,28381 +2129,2924,11262 +2130,1691,3287 +2131,19403,12252 +2132,116350,7025 +2133,106747,11006 +2134,10491,763 +2135,127094,45867 +2136,12432,2683 +2137,10710,97 +2138,25403,9364 +2139,63831,1926 +2140,10521,444 +2141,51999,5474 +2142,46286,11061 +2143,6171,13040 +2144,74,4 +2145,19901,3207 +2146,352890,65803 +2147,53693,3675 +2148,11535,748 +2149,40804,3760 +2150,14459,8724 +2151,336666,51615 +2152,401060,12142 +2153,63493,21897 +2154,33556,69952 +2155,352197,63627 +2156,71670,1631 +2157,27621,3213 +2158,12525,12 +2159,358982,62877 +2160,406449,72421 +2161,244539,11461 +2162,45489,22221 +2163,242076,20659 +2164,186630,1399 +2165,155011,6246 +2166,10539,2 +2167,7515,68096 +2168,70057,7908 +2169,6972,7888 +2170,383538,64949 +2171,43915,306 +2172,109018,8411 +2173,9948,5391 +2174,64383,7089 +2175,117999,6194 +2176,13185,6361 +2177,185291,12274 +2178,742,448 +2179,34995,59398 +2180,48205,223 +2181,36992,37040 +2182,17044,12918 +2183,33613,5747 +2184,48202,14047 +2185,18446,6194 +2186,320910,12466 +2187,13486,3299 +2188,214756,33 +2189,157843,6692 +2190,108726,14526 +2191,319396,46547 +2192,18897,12033 +2193,399798,77476 +2194,63876,643 +2195,16523,79 +2196,31275,92615 +2197,55534,73209 +2198,8342,7466 +2199,92988,46296 +2200,18776,6194 +2201,42580,9195 +2202,362579,16238 +2203,26298,4483 +2204,367882,1633 +2205,12767,9195 +2206,8897,11777 +2207,183825,6194 +2208,11373,2441 +2209,72105,8789 +2210,248376,25619 +2211,36658,306 +2212,44566,7142 +2213,133523,7254 +2214,31880,3478 +2215,302699,33 +2216,29204,441 +2217,21968,79635 +2218,40217,21783 +2219,1579,152 +2220,70500,78203 +2221,34019,9177 +2222,244268,45004 +2223,184345,7625 +2224,246917,15132 +2225,18405,134 +2226,277396,10705 +2227,2734,1080 +2228,292625,7683 +2229,2525,516 +2230,10063,7770 +2231,8942,1976 +2232,125548,40967 +2233,7220,36326 +2234,41505,23200 +2235,5753,1971 +2236,76544,33 +2237,150117,20664 +2238,55730,1930 +2239,49876,8213 +2240,1922,789 +2241,62441,10532 +2242,377447,90636 +2243,25796,33 +2244,128437,33 +2245,75510,6194 +2246,121936,7981 +2247,67216,20353 +2248,142757,5120 +2249,82327,12392 +2250,93492,95309 +2251,19350,14627 +2252,15534,3172 +2253,121793,83 +2254,26644,12745 +2255,29705,4978 +2256,193756,10405 +2257,49308,5070 +2258,613,5755 +2259,70981,19747 +2260,37291,3644 +2261,41076,6181 +2262,10747,15298 +2263,14217,73394 +2264,31880,3169 +2265,15749,5322 +2266,105945,22036 +2267,2604,4198 +2268,96951,30194 +2269,288694,225 +2270,275060,738 +2271,51036,41 +2272,17895,84888 +2273,140887,4743 +2274,11534,5381 +2275,9607,12288 +2276,28270,33 +2277,59181,46609 +2278,21132,1274 +2279,98339,11876 +2280,409550,14625 +2281,24939,52135 +2282,126141,54259 +2283,399790,60622 +2284,9950,8848 +2285,86261,17387 +2286,121674,288 +2287,5917,6194 +2288,14923,21228 +2289,63831,5358 +2290,84056,6246 +2291,67174,8341 +2292,38964,1314 +2293,16460,3980 +2294,255692,20067 +2295,336804,72917 +2296,293189,33271 +2297,6183,9195 +2298,33729,14154 +2299,270886,21381 +2300,51311,5766 +2301,11712,882 +2302,295058,28367 +2303,77246,70230 +2304,17687,6194 +2305,356294,13742 +2306,103875,28182 +2307,18978,4051 +2308,362180,7543 +2309,21554,3978 +2310,11362,158 +2311,110416,69194 +2312,2516,8411 +2313,8985,122 +2314,177085,6765 +2315,10077,87849 +2316,346723,56782 +2317,41283,3356 +2318,35632,18024 +2319,64942,11990 +2320,339527,3604 +2321,169656,84722 +2322,113255,16814 +2323,18955,22997 +2324,8844,10201 +2325,374473,5165 +2326,63179,641 +2327,45610,11960 +2328,61984,6516 +2329,56533,13943 +2330,19797,65658 +2331,598,10954 +2332,3050,306 +2333,336845,68047 +2334,80219,11056 +2335,171581,10339 +2336,505,277 +2337,55435,6681 +2338,339403,2531 +2339,48205,30277 +2340,345925,75357 +2341,24123,2649 +2342,61908,5229 +2343,273578,3204 +2344,8665,11371 +2345,177155,26105 +2346,30946,61335 +2347,16231,74487 +2348,10992,6194 +2349,40252,4847 +2350,329724,31229 +2351,747,443 +2352,65367,1360 +2353,19551,4839 +2354,46885,6160 +2355,139170,4 +2356,43832,441 +2357,94525,94936 +2358,277237,9349 +2359,1694,1212 +2360,8340,208 +2361,12236,32508 +2362,46773,328 +2363,50153,13716 +2364,403593,50089 +2365,42664,33 +2366,99599,84216 +2367,13225,47154 +2368,261207,7671 +2369,82080,1242 +2370,61168,1811 +2371,303542,29223 +2372,3078,441 +2373,78028,8100 +2374,180576,8411 +2375,92989,25346 +2376,152532,19631 +2377,270400,9 +2378,22256,44 +2379,264644,41077 +2380,119364,3167 +2381,10208,6254 +2382,27045,5 +2383,62394,16977 +2384,10373,10932 +2385,36874,21555 +2386,335897,8490 +2387,125990,37714 +2388,7340,60 +2389,15414,35002 +2390,50196,6397 +2391,71329,75515 +2392,99698,49022 +2393,57993,4 +2394,44877,27896 +2395,28564,8411 +2396,44303,10473 +2397,242224,2806 +2398,42501,1548 +2399,39781,6667 +2400,9274,30634 +2401,327,11561 +2402,31005,9195 +2403,134475,1442 +2404,260030,46088 +2405,89242,441 +2406,267557,46111 +2407,61984,11846 +2408,54563,20931 +2409,9624,6194 +2410,31993,4 +2411,208700,17392 +2412,282983,27991 +2413,46124,8039 +2414,211879,6144 +2415,36658,9168 +2416,18919,18367 +2417,6977,2092 +2418,1165,10843 +2419,291351,911 +2420,11374,23 +2421,359413,63078 +2422,128089,24908 +2423,60120,89773 +2424,61267,6942 +2425,253250,8411 +2426,406449,74689 +2427,39578,4630 +2428,47525,4056 +2429,7459,264 +2430,86266,6597 +2431,115283,22146 +2432,46885,4952 +2433,56589,58273 +2434,82696,1423 +2435,11950,6194 +2436,245775,7673 +2437,109671,4639 +2438,287483,24662 +2439,24094,22218 +2440,104427,6 +2441,1294,14794 +2442,23169,491 +2443,35405,95587 +2444,10467,5 +2445,14644,1168 +2446,72917,18367 +2447,69346,3749 +2448,203780,1038 +2449,23207,4200 +2450,83501,90630 +2451,276401,14036 +2452,322487,90680 +2453,15472,5403 +2454,76493,4 +2455,190955,16804 +2456,107811,7295 +2457,133121,3361 +2458,66045,528 +2459,38625,9300 +2460,2105,491 +2461,216156,22789 +2462,277967,14877 +2463,87022,2345 +2464,250638,3055 +2465,12593,94147 +2466,14539,21334 +2467,398891,78370 +2468,13022,79 +2469,271185,23751 +2470,294652,36148 +2471,62392,1830 +2472,43635,3656 +2473,10622,2521 +2474,2994,4 +2475,10549,97 +2476,13728,7248 +2477,52868,17611 +2478,49009,6555 +2479,59249,58253 +2480,133575,80578 +2481,83430,12348 +2482,85735,8352 +2483,49559,5414 +2484,11706,4 +2485,13889,2752 +2486,83435,5120 +2487,344039,10039 +2488,31880,2248 +2489,11056,7302 +2490,395763,3304 +2491,25598,15505 +2492,345775,16804 +2493,267579,6735 +2494,125945,225 +2495,345888,7036 +2496,47914,60 +2497,157919,22353 +2498,97206,24025 +2499,24625,1693 +2500,9529,559 +2501,43548,1701 +2502,20983,3877 +2503,319096,12799 +2504,197624,3991 +2505,25626,6377 +2506,81787,5051 +2507,18072,3446 +2508,75375,3324 +2509,161795,27584 +2510,16436,21274 +2511,140554,201 +2512,12902,1353 +2513,256347,3172 +2514,64805,7347 +2515,38006,1313 +2516,298584,73192 +2517,114779,16042 +2518,22897,258 +2519,1825,1445 +2520,6,4248 +2521,168295,4641 +2522,144942,5996 +2523,44890,306 +2524,70587,3202 +2525,378446,28793 +2526,106131,30256 +2527,46830,5253 +2528,128216,17027 +2529,174188,748 +2530,134350,44805 +2531,259358,7201 +2532,298931,42327 +2533,24020,2017 +2534,15616,13812 +2535,151509,83440 +2536,331642,9967 +2537,169760,26693 +2538,12103,10104 +2539,23048,12886 +2540,33107,16839 +2541,89247,10118 +2542,27259,3080 +2543,133121,14788 +2544,50780,10039 +2545,34280,7110 +2546,342472,89204 +2547,276906,23701 +2548,91419,8411 +2549,47144,83478 +2550,294652,55254 +2551,214129,4676 +2552,24671,2809 +2553,50590,1804 +2554,3989,258 +2555,41171,56629 +2556,24739,3952 +2557,90563,3070 +2558,29272,11408 +2559,9030,838 +2560,131027,7013 +2561,343795,68117 +2562,46827,3078 +2563,377158,79104 +2564,75315,5 +2565,104376,310 +2566,177047,50649 +2567,287587,18346 +2568,19971,59645 +2569,77165,11639 +2570,71051,5120 +2571,76059,12041 +2572,303982,2429 +2573,8342,85742 +2574,83666,10146 +2575,37254,3268 +2576,20735,2 +2577,2140,972 +2578,269258,6194 +2579,18374,11431 +2580,347835,57505 +2581,132859,1432 +2582,1483,69112 +2583,10647,6194 +2584,13539,89439 +2585,209921,27404 +2586,348389,23970 +2587,121791,26889 +2588,92848,45725 +2589,14833,2970 +2590,21334,11460 +2591,38150,21461 +2592,107693,69232 +2593,283686,7062 +2594,86254,10399 +2595,61988,4 +2596,747,694 +2597,6972,6332 +2598,380058,21940 +2599,3476,1417 +2600,14012,306 +2601,1273,6194 +2602,390357,1231 +2603,30666,16857 +2604,355008,53152 +2605,7972,826 +2606,287391,1987 +2607,106747,14358 +2608,14349,212 +2609,131027,8100 +2610,37308,306 +2611,254679,4641 +2612,407806,82852 +2613,61578,16923 +2614,3870,7508 +2615,289159,31226 +2616,270724,4053 +2617,356161,69287 +2618,61341,6677 +2619,298,6194 +2620,159667,14185 +2621,24647,6416 +2622,123109,10339 +2623,753,453 +2624,606,205 +2625,383140,63430 +2626,330770,10611 +2627,8939,140 +2628,43209,6484 +2629,493,8411 +2630,3478,1406 +2631,348631,6438 +2632,26331,6194 +2633,42852,5579 +2634,223485,7714 +2635,17203,52581 +2636,6934,75879 +2637,13842,746 +2638,289712,49724 +2639,208529,85122 +2640,290235,27460 +2641,31074,14109 +2642,147903,441 +2643,40990,72448 +2644,18040,94358 +2645,45556,8631 +2646,10946,9 +2647,45935,4641 +2648,42604,4 +2649,33660,5330 +2650,195544,35216 +2651,25645,4408 +2652,7445,7295 +2653,12499,8816 +2654,233487,14262 +2655,78285,875 +2656,50374,4 +2657,314352,9023 +2658,116977,4174 +2659,241739,77460 +2660,24749,33 +2661,66022,33 +2662,199615,7307 +2663,49559,28670 +2664,339527,2273 +2665,189888,37441 +2666,227975,48663 +2667,82327,703 +2668,40205,3213 +2669,17241,12029 +2670,10603,10227 +2671,61799,1735 +2672,83389,11848 +2673,28774,5570 +2674,8619,306 +2675,9835,9195 +2676,8951,7704 +2677,1381,6438 +2678,14698,12612 +2679,47211,220 +2680,30641,55129 +2681,297762,444 +2682,46738,313 +2683,315837,14439 +2684,817,12 +2685,21447,8123 +2686,25528,1444 +2687,62046,23159 +2688,86979,61080 +2689,244610,25701 +2690,39057,5897 +2691,29355,16368 +2692,258147,20602 +2693,121636,4 +2694,84493,8486 +2695,15022,21025 +2696,24126,4063 +2697,22279,8 +2698,330770,7395 +2699,38433,4 +2700,64944,8453 +2701,37254,23188 +2702,206277,20693 +2703,30934,15848 +2704,269258,1989 +2705,13336,26233 +2706,26180,441 +2707,188507,58572 +2708,4982,33 +2709,844,26492 +2710,338189,50488 +2711,33784,5352 +2712,8583,348 +2713,18557,56492 +2714,102057,56889 +2715,101183,109 +2716,13835,40044 +2717,417870,33 +2718,323675,33 +2719,7514,31400 +2720,46261,11627 +2721,16331,10631 +2722,96147,16020 +2723,65509,62337 +2724,329440,51860 +2725,3145,8263 +2726,8882,10932 +2727,28739,3019 +2728,37923,60 +2729,10311,1448 +2730,10999,1885 +2731,86284,47685 +2732,89242,8488 +2733,303856,38677 +2734,293970,64662 +2735,211220,5054 +2736,370687,81166 +2737,351862,87920 +2738,572,327 +2739,28417,11180 +2740,310568,74856 +2741,76101,54834 +2742,38325,7157 +2743,127614,18444 +2744,26223,5356 +2745,177271,77645 +2746,329712,10611 +2747,373200,72883 +2748,2567,7380 +2749,273096,29672 +2750,199575,12142 +2751,53950,1009 +2752,47426,4198 +2753,57627,3237 +2754,1116,19932 +2755,104376,12784 +2756,93828,9016 +2757,218425,50835 +2758,10145,30833 +2759,127864,6111 +2760,39936,27383 +2761,104251,9181 +2762,59507,729 +2763,407575,95386 +2764,88042,306 +2765,48838,3281 +2766,285181,4227 +2767,6443,268 +2768,131739,40522 +2769,63414,72613 +2770,52894,13549 +2771,47536,4241 +2772,113148,10989 +2773,51406,11745 +2774,2731,5358 +2775,253235,31832 +2776,87428,7295 +2777,28268,5070 +2778,122192,10653 +2779,10796,5 +2780,87936,5952 +2781,163870,2073 +2782,98566,2481 +2783,118,6194 +2784,298,79 +2785,94663,9059 +2786,150056,585 +2787,28577,60 +2788,254193,1360 +2789,96793,4 +2790,9529,1382 +2791,8852,17824 +2792,253192,20103 +2793,77930,8850 +2794,70753,38097 +2795,11397,333 +2796,4191,64 +2797,54825,297 +2798,13411,4194 +2799,65674,5008 +2800,294652,55251 +2801,28974,1315 +2802,2731,1179 +2803,62630,7178 +2804,14019,2852 +2805,2750,1219 +2806,9366,2604 +2807,9677,28957 +2808,242224,7584 +2809,1726,420 +2810,14217,882 +2811,69,711 +2812,103597,5358 +2813,23385,698 +2814,34840,82 +2815,983,624 +2816,157847,9015 +2817,66967,54749 +2818,85424,12432 +2819,38157,888 +2820,329682,83 +2821,26125,7817 +2822,11950,2521 +2823,88863,11015 +2824,84848,33279 +2825,12144,56 +2826,270469,44548 +2827,17479,3327 +2828,190876,13316 +2829,12113,2609 +2830,9819,14 +2831,20106,6586 +2832,12638,28320 +2833,91076,11955 +2834,298787,36123 +2835,24918,11717 +2836,143240,5622 +2837,20108,6116 +2838,11171,1615 +2839,9314,86084 +2840,100661,9346 +2841,9950,1225 +2842,32331,6194 +2843,205864,7254 +2844,266285,1880 +2845,9087,97 +2846,120854,2324 +2847,33436,7961 +2848,1394,23119 +2849,423988,91183 +2850,186997,309 +2851,372226,35124 +2852,24442,10330 +2853,38164,28504 +2854,86168,60 +2855,20342,5686 +2856,209406,12467 +2857,371446,46225 +2858,353533,69125 +2859,76207,17763 +2860,21027,33 +2861,810,521 +2862,6973,2089 +2863,747,10163 +2864,25568,3447 +2865,43195,1679 +2866,218658,10473 +2867,118451,7819 +2868,72013,8376 +2869,50073,3245 +2870,71668,18524 +2871,2355,11708 +2872,64454,4606 +2873,124057,10260 +2874,810,27 +2875,39148,5542 +2876,325712,66430 +2877,253232,192 +2878,136466,16449 +2879,47231,23968 +2880,34092,1259 +2881,333371,4 +2882,340101,288 +2883,235260,7483 +2884,54796,3693 +2885,17971,3166 +2886,11145,33 +2887,28658,441 +2888,45800,8411 +2889,252171,51192 +2890,283445,69110 +2891,126090,26105 +2892,87827,289 +2893,809,27 +2894,6877,258 +2895,311324,507 +2896,49787,10951 +2897,150117,26387 +2898,52366,6542 +2899,9902,24211 +2900,15092,11152 +2901,438634,63364 +2902,261249,4051 +2903,365942,47729 +2904,63317,51152 +2905,2805,1241 +2906,44115,20076 +2907,15476,20108 +2908,26502,2532 +2909,27711,15627 +2910,3962,1528 +2911,43457,6194 +2912,11509,5 +2913,13105,8791 +2914,30363,23722 +2915,193756,11030 +2916,7229,1524 +2917,339527,88460 +2918,14429,81133 +2919,269173,6371 +2920,14369,431 +2921,108535,1497 +2922,10632,11462 +2923,17306,3284 +2924,179103,6194 +2925,12106,559 +2926,215881,3172 +2927,10917,19237 +2928,13678,3823 +2929,315362,235 +2930,5289,26146 +2931,47795,25515 +2932,54898,30345 +2933,58,2 +2934,65496,2951 +2935,32657,6332 +2936,16523,6194 +2937,16921,3478 +2938,35197,5535 +2939,42402,32483 +2940,28510,23867 +2941,74465,8518 +2942,48136,16064 +2943,56653,5358 +2944,38437,4 +2945,1633,33 +2946,8063,4 +2947,27018,27110 +2948,31299,5140 +2949,20,49 +2950,49018,11341 +2951,80280,3631 +2952,1278,682 +2953,43727,52387 +2954,83890,2830 +2955,230428,49933 +2956,103732,23233 +2957,2021,247 +2958,211166,2429 +2959,148636,1765 +2960,101998,5358 +2961,83430,3984 +2962,378485,19771 +2963,137321,6194 +2964,4476,1656 +2965,13374,19926 +2966,63291,13852 +2967,72279,875 +2968,41551,6 +2969,56807,8591 +2970,11248,3268 +2971,195653,18758 +2972,67509,6301 +2973,14053,3436 +2974,399612,89881 +2975,12427,57614 +2976,68737,13444 +2977,8665,763 +2978,427095,1259 +2979,418072,81825 +2980,243568,11073 +2981,31995,14701 +2982,12171,8719 +2983,254047,10962 +2984,67509,12400 +2985,33611,68129 +2986,157343,9329 +2987,64685,4 +2988,42614,8411 +2989,227348,21223 +2990,35026,6301 +2991,18530,393 +2992,352164,59650 +2993,42021,8411 +2994,219466,9987 +2995,103732,23231 +2996,8014,850 +2997,262841,4 +2998,66193,25263 +2999,102144,306 +3000,48841,6297 +3001,7514,4717 +3002,22504,22358 +3003,193756,8536 +3004,21570,10822 +3005,68444,2075 +3006,49850,29314 +3007,78028,8099 +3008,30002,26727 +3009,2978,441 +3010,39995,74065 +3011,289960,8273 +3012,9607,5888 +3013,86118,19067 +3014,11516,793 +3015,367147,7787 +3016,55448,915 +3017,197297,14656 +3018,47260,761 +3019,57327,26157 +3020,24363,12260 +3021,26505,2525 +3022,59744,49321 +3023,20704,4 +3024,286971,1422 +3025,9870,33 +3026,924,657 +3027,270646,726 +3028,107073,22028 +3029,18015,925 +3030,13763,6194 +3031,165718,12657 +3032,17175,3265 +3033,16092,29266 +3034,38356,4 +3035,317557,2 +3036,9427,8764 +3037,12454,635 +3038,54825,181 +3039,59006,5295 +3040,229594,1647 +3041,11930,5755 +3042,9812,1382 +3043,30583,157 +3044,56391,84598 +3045,99,83 +3046,5899,93901 +3047,9286,48772 +3048,38749,8310 +3049,50326,1957 +3050,41714,11679 +3051,391375,76208 +3052,11004,657 +3053,330770,7792 +3054,11636,14714 +3055,3092,1319 +3056,46261,11628 +3057,23048,8411 +3058,91076,13367 +3059,10915,218 +3060,120802,39026 +3061,11159,10100 +3062,291866,65903 +3063,408024,92199 +3064,8985,36920 +3065,67748,2806 +3066,378441,30601 +3067,34944,6194 +3068,13483,547 +3069,8852,17823 +3070,101998,83 +3071,384737,6666 +3072,194722,16649 +3073,53766,29729 +3074,80928,16685 +3075,244539,51566 +3076,44545,3458 +3077,15556,8411 +3078,38509,126 +3079,9651,76460 +3080,10529,1208 +3081,177047,13238 +3082,128795,37790 +3083,169,306 +3084,21338,3470 +3085,127369,2083 +3086,241140,12801 +3087,97593,66650 +3088,265208,45980 +3089,2757,8856 +3090,53404,80255 +3091,15316,8924 +3092,20521,3802 +3093,114719,23038 +3094,975,60 +3095,21605,2746 +3096,30547,8411 +3097,393559,42171 +3098,41380,6379 +3099,11374,33 +3100,271185,23749 +3101,234284,21581 +3102,2172,1003 +3103,22803,5802 +3104,18209,306 +3105,1586,23651 +3106,32332,12467 +3107,371645,76342 +3108,352036,1756 +3109,84805,1506 +3110,31162,1038 +3111,172828,5124 +3112,183412,45085 +3113,40826,4928 +3114,36089,3458 +3115,17771,608 +3116,345775,5358 +3117,31306,5 +3118,21435,461 +3119,3513,1438 +3120,35,306 +3121,154442,84456 +3122,51104,3065 +3123,29272,11427 +3124,70057,7907 +3125,34652,441 +3126,111960,13580 +3127,150338,41571 +3128,32546,6458 +3129,333385,23921 +3130,48180,6259 +3131,25501,251 +3132,37462,441 +3133,131737,68946 +3134,12536,1556 +3135,9366,11317 +3136,285803,7294 +3137,83430,12345 +3138,51601,6194 +3139,44874,6221 +3140,6934,1066 +3141,577,364 +3142,86727,1112 +3143,11939,8411 +3144,28510,23770 +3145,185987,45824 +3146,2143,985 +3147,28280,4782 +3148,11003,3929 +3149,11104,10932 +3150,26422,4508 +3151,334299,11798 +3152,31022,81550 +3153,11610,4 +3154,341420,11856 +3155,190853,12407 +3156,367732,67592 +3157,6557,6332 +3158,61984,1393 +3159,371462,72129 +3160,17654,20667 +3161,9667,129 +3162,28448,12421 +3163,118497,1931 +3164,23340,4222 +3165,42604,18768 +3166,288521,3245 +3167,36773,1403 +3168,309581,11858 +3169,12412,4319 +3170,9314,86083 +3171,86608,3381 +3172,28363,441 +3173,8211,10941 +3174,15671,9075 +3175,10521,6332 +3176,13596,4220 +3177,10727,79 +3178,27681,2786 +3179,11908,3960 +3180,169298,20613 +3181,82654,491 +3182,16410,659 +3183,39127,393 +3184,332567,5 +3185,24005,306 +3186,232672,6194 +3187,19850,3268 +3188,28367,8411 +3189,49850,11238 +3190,327528,2649 +3191,15321,31080 +3192,241254,33831 +3193,72105,33 +3194,29365,441 +3195,552,317 +3196,104430,6194 +3197,24746,4714 +3198,266082,18367 +3199,17609,779 +3200,15379,1444 +3201,380856,50074 +3202,117251,5 +3203,45132,10059 +3204,127864,7543 +3205,8916,520 +3206,149870,20192 +3207,24619,10254 +3208,49712,22805 +3209,162056,15868 +3210,314283,41530 +3211,136087,37938 +3212,18843,93605 +3213,142391,23694 +3214,43369,6113 +3215,357529,4395 +3216,43213,72688 +3217,245692,1992 +3218,342163,7680 +3219,38340,11865 +3220,402612,78248 +3221,8965,2 +3222,74527,18284 +3223,8471,54647 +3224,26323,6194 +3225,77949,288 +3226,191820,3391 +3227,298722,93974 +3228,15170,5 +3229,120457,2683 +3230,13162,9118 +3231,171308,7894 +3232,3423,22792 +3233,30091,53728 +3234,63139,5830 +3235,74919,17377 +3236,25988,8 +3237,208305,7177 +3238,273,117 +3239,191820,44225 +3240,30994,78565 +3241,93891,881 +3242,153717,21015 +3243,10134,1444 +3244,15472,3221 +3245,28712,8411 +3246,8366,1107 +3247,33729,4 +3248,287636,42203 +3249,13733,885 +3250,50761,1426 +3251,21371,10943 +3252,7980,2300 +3253,104485,4 +3254,44502,5766 +3255,15170,6254 +3256,13519,3156 +3257,1271,923 +3258,83788,10481 +3259,38618,79 +3260,20210,51768 +3261,45273,25575 +3262,31592,33 +3263,64202,429 +3264,121234,4 +3265,27983,39856 +3266,100088,18058 +3267,86828,11317 +3268,12575,2538 +3269,82327,12389 +3270,49418,19997 +3271,50674,2493 +3272,62492,14298 +3273,9034,43 +3274,2750,7981 +3275,211144,63507 +3276,111470,8411 +3277,159727,632 +3278,47906,33 +3279,20034,3829 +3280,20174,3733 +3281,53781,35430 +3282,83770,5358 +3283,27035,3468 +3284,27034,4 +3285,10075,51852 +3286,317198,6438 +3287,63831,856 +3288,354544,21206 +3289,326359,2 +3290,453053,58423 +3291,86234,13930 +3292,315846,3656 +3293,30363,77946 +3294,289232,288 +3295,44256,22396 +3296,329289,48022 +3297,121173,15808 +3298,382501,57752 +3299,268712,8047 +3300,30973,10168 +3301,16026,1763 +3302,155605,5070 +3303,124527,1314 +3304,317389,43810 +3305,187516,4395 +3306,112973,278 +3307,87148,18055 +3308,8460,6384 +3309,102197,77594 +3310,311324,923 +3311,17332,10163 +3312,250066,60515 +3313,77338,5358 +3314,330770,58659 +3315,169881,32510 +3316,20421,8888 +3317,118139,3245 +3318,8270,14 +3319,85640,10243 +3320,174000,26977 +3321,15907,5367 +3322,12783,18188 +3323,61578,52926 +3324,15050,8411 +3325,377151,6916 +3326,459295,92957 +3327,118,79 +3328,16074,3393 +3329,14452,2865 +3330,13962,2 +3331,12707,1216 +3332,290316,11796 +3333,183258,33 +3334,334299,7118 +3335,234284,21579 +3336,32872,4 +3337,10900,2623 +3338,384130,63105 +3339,16907,3034 +3340,6,33 +3341,4938,441 +3342,1427,753 +3343,142320,1429 +3344,65055,7215 +3345,41714,53427 +3346,19765,608 +3347,36736,5615 +3348,57201,2691 +3349,179549,16217 +3350,11633,3362 +3351,18495,68062 +3352,16234,2785 +3353,1999,842 +3354,27245,23481 +3355,39428,38778 +3356,33511,9987 +3357,9613,17449 +3358,222715,3756 +3359,75948,59427 +3360,21132,40759 +3361,79550,22706 +3362,127913,10970 +3363,26469,6527 +3364,55922,36605 +3365,10710,16061 +3366,222461,6302 +3367,9472,306 +3368,32720,876 +3369,36288,11391 +3370,83995,1319 +3371,352036,6964 +3372,70667,11561 +3373,38317,46221 +3374,84993,34341 +3375,104374,13246 +3376,58080,1701 +3377,25142,12557 +3378,1690,17793 +3379,31044,5612 +3380,11142,6658 +3381,39057,33 +3382,34449,53431 +3383,56947,23118 +3384,59961,7295 +3385,14073,3579 +3386,45431,53826 +3387,47540,73335 +3388,52366,6541 +3389,39957,21471 +3390,38883,1115 +3391,21348,7466 +3392,62694,306 +3393,2034,172 +3394,317144,35471 +3395,285848,13839 +3396,244971,6838 +3397,1807,7430 +3398,29416,13981 +3399,14357,3792 +3400,21442,3965 +3401,11046,14390 +3402,390343,1030 +3403,38010,7036 +3404,97614,12199 +3405,12169,5358 +3406,169869,4 +3407,2160,79401 +3408,17771,3388 +3409,108,591 +3410,22615,4117 +3411,24363,11391 +3412,30666,15980 +3413,60568,5798 +3414,167810,2527 +3415,9953,2448 +3416,232672,2608 +3417,10694,826 +3418,43526,8411 +3419,430365,6454 +3420,70119,20980 +3421,13649,3213 +3422,325133,16615 +3423,1838,76 +3424,43026,11284 +3425,339669,51863 +3426,30363,77949 +3427,28387,5842 +3428,27265,258 +3429,78461,10389 +3430,52728,881 +3431,267931,58547 +3432,291351,7571 +3433,104430,9329 +3434,29128,9126 +3435,31265,15318 +3436,53210,6194 +3437,15776,3120 +3438,72875,9968 +3439,21481,3213 +3440,21752,6446 +3441,337107,2250 +3442,40218,660 +3443,327,6516 +3444,64807,6194 +3445,11172,10222 +3446,257088,70993 +3447,16351,803 +3448,265563,9962 +3449,124821,41052 +3450,43083,16 +3451,187442,14299 +3452,16523,923 +3453,239563,15855 +3454,158990,44486 +3455,152100,45724 +3456,79521,6194 +3457,15089,2916 +3458,2002,694 +3459,259645,13558 +3460,244801,48685 +3461,124633,5983 +3462,17008,2247 +3463,19587,738 +3464,50126,82227 +3465,5393,614 +3466,294652,41636 +3467,21736,4158 +3468,20941,84497 +3469,9070,306 +3470,9042,995 +3471,33689,89131 +3472,18512,14154 +3473,13600,10221 +3474,132939,11735 +3475,9787,5 +3476,1833,5 +3477,35337,2640 +3478,260030,46089 +3479,28586,4928 +3480,18098,264 +3481,381518,694 +3482,193893,28787 +3483,1902,20295 +3484,112083,6194 +3485,27409,17490 +3486,62768,2521 +3487,95536,6584 +3488,82327,11246 +3489,139159,15530 +3490,4253,1569 +3491,28437,60 +3492,10925,469 +3493,285840,18906 +3494,23452,3041 +3495,381356,2951 +3496,16890,18666 +3497,7343,345 +3498,236399,3958 +3499,20106,3823 +3500,70086,3268 +3501,83015,659 +3502,94340,1380 +3503,31276,42137 +3504,50512,6453 +3505,170759,1989 +3506,40041,3952 +3507,30202,8411 +3508,308032,17379 +3509,352890,41653 +3510,25921,908 +3511,53459,48328 +3512,22051,3279 +3513,40466,86686 +3514,30675,13252 +3515,44896,24955 +3516,103758,2441 +3517,189197,4171 +3518,30402,1311 +3519,378227,72432 +3520,52360,5 +3521,66894,7405 +3522,6591,1429 +3523,72638,6194 +3524,411638,85573 +3525,11630,10201 +3526,84626,3322 +3527,48838,6899 +3528,23830,23035 +3529,36253,1243 +3530,53654,4 +3531,123047,85945 +3532,4882,9266 +3533,5491,19718 +3534,11933,9265 +3535,76202,7933 +3536,9572,5755 +3537,70586,5830 +3538,19423,5092 +3539,122081,26676 +3540,258480,11752 +3541,13836,3538 +3542,54242,15997 +3543,37813,12665 +3544,15592,10535 +3545,8844,559 +3546,29272,16055 +3547,36658,79027 +3548,6079,1999 +3549,336804,18367 +3550,408620,27133 +3551,60965,6872 +3552,5955,10210 +3553,295058,9083 +3554,76411,3978 +3555,57889,21928 +3556,220002,16725 +3557,25450,10399 +3558,339527,12 +3559,444713,80393 +3560,11257,11493 +3561,72962,3 +3562,101325,8333 +3563,15981,5781 +3564,9260,6194 +3565,38950,13549 +3566,9648,90123 +3567,10269,8845 +3568,261273,23404 +3569,275060,14036 +3570,102222,40294 +3571,43199,5 +3572,17895,84887 +3573,2197,5358 +3574,228066,20478 +3575,24486,8364 +3576,10783,4 +3577,340961,10793 +3578,13788,2481 +3579,14613,420 +3580,68179,7289 +3581,59930,9195 +3582,26636,5609 +3583,38021,15671 +3584,86703,1311 +3585,11232,85 +3586,110416,69191 +3587,25132,174 +3588,19176,33 +3589,11830,13255 +3590,81225,2744 +3591,765,3102 +3592,62567,8411 +3593,78364,13945 +3594,8281,2366 +3595,193523,39407 +3596,10055,52209 +3597,334299,78945 +3598,54396,20772 +3599,329805,83 +3600,788,10230 +3601,9474,3602 +3602,10303,306 +3603,99861,15357 +3604,5494,16850 +3605,67272,6416 +3606,278717,46939 +3607,14794,3067 +3608,29368,1221 +3609,66741,23715 +3610,98368,16546 +3611,10783,694 +3612,182129,1138 +3613,123025,4811 +3614,21135,21078 +3615,98349,9206 +3616,10491,701 +3617,252680,559 +3618,10003,11661 +3619,394822,94402 +3620,288710,86833 +3621,117531,22158 +3622,25520,65683 +3623,388055,74335 +3624,298722,93973 +3625,24486,5846 +3626,8270,158 +3627,274857,23202 +3628,245169,40975 +3629,397365,79481 +3630,9589,1627 +3631,43935,7219 +3632,13380,10531 +3633,17046,3247 +3634,11897,8411 +3635,1382,307 +3636,12205,955 +3637,40252,29812 +3638,134474,18229 +3639,1690,1633 +3640,52556,71447 +3641,139521,13678 +3642,10847,10218 +3643,24939,52136 +3644,18725,7405 +3645,43385,6 +3646,13042,3 +3647,348035,8858 +3648,117251,347 +3649,177677,6277 +3650,27031,882 +3651,140,6780 +3652,237584,22500 +3653,25716,822 +3654,204765,23291 +3655,430365,10611 +3656,49524,33 +3657,93828,1645 +3658,271718,3341 +3659,922,254 +3660,946,605 +3661,59296,52288 +3662,95536,83 +3663,3682,1483 +3664,12089,9 +3665,269795,69756 +3666,393559,4621 +3667,57308,1147 +3668,281979,4762 +3669,96724,33 +3670,25682,1444 +3671,42537,33333 +3672,315837,44311 +3673,284564,18922 +3674,81616,254 +3675,11645,8886 +3676,8332,2438 +3677,345176,33022 +3678,84575,4985 +3679,70981,1645 +3680,47238,13413 +3681,27573,333 +3682,86608,6194 +3683,3061,8411 +3684,3057,4056 +3685,75229,7843 +3686,274991,10845 +3687,408537,52162 +3688,11056,7956 +3689,13241,11517 +3690,445,591 +3691,19545,882 +3692,20825,3844 +3693,28902,56 +3694,693,33 +3695,15639,18575 +3696,219466,78482 +3697,199615,12346 +3698,146233,12199 +3699,79707,3756 +3700,21525,746 +3701,24624,1370 +3702,336011,71895 +3703,100275,7048 +3704,14869,76067 +3705,44773,1311 +3706,965,11447 +3707,9539,22029 +3708,202941,8411 +3709,67531,8411 +3710,39048,33531 +3711,15387,5928 +3712,56095,74153 +3713,73501,63968 +3714,76864,7446 +3715,215881,49982 +3716,47792,10769 +3717,46924,79561 +3718,330947,7493 +3719,29896,15645 +3720,91076,888 +3721,51423,5975 +3722,10834,7025 +3723,3870,64 +3724,80941,8411 +3725,265208,49969 +3726,82098,20803 +3727,33297,17252 +3728,35632,18025 +3729,278901,6760 +3730,409550,80051 +3731,31005,2154 +3732,15414,35000 +3733,44338,68539 +3734,338767,23460 +3735,7096,4056 +3736,18620,89521 +3737,33570,17837 +3738,326255,79085 +3739,6552,6092 +3740,11535,2216 +3741,10567,2 +3742,55846,1632 +3743,160844,12855 +3744,199373,6819 +3745,66634,2756 +3746,262447,5120 +3747,277713,6938 +3748,8886,4503 +3749,8985,55589 +3750,39982,39961 +3751,67633,28221 +3752,80713,357 +3753,315057,42621 +3754,179154,60108 +3755,10918,1071 +3756,351809,7345 +3757,22471,4522 +3758,37633,1742 +3759,2105,33 +3760,6081,10257 +3761,376716,20103 +3762,616,6194 +3763,21057,1779 +3764,287483,32545 +3765,29020,6194 +3766,285841,10260 +3767,48791,53268 +3768,15356,12221 +3769,54384,16691 +3770,334,12 +3771,312497,76782 +3772,100247,15634 +3773,4257,7405 +3774,9294,9195 +3775,949,6194 +3776,329809,9 +3777,44287,11952 +3778,83802,14177 +3779,337107,18367 +3780,39013,19778 +3781,11391,235 +3782,60307,5420 +3783,183171,6 +3784,230295,17806 +3785,4413,1885 +3786,49943,886 +3787,9352,27 +3788,1637,306 +3789,321528,2785 +3790,262988,10915 +3791,349948,59374 +3792,173177,5891 +3793,348389,89546 +3794,924,656 +3795,120676,8411 +3796,186997,851 +3797,334557,41465 +3798,435,306 +3799,429174,729 +3800,197089,8997 +3801,194817,19340 +3802,17771,806 +3803,329805,19233 +3804,13225,81130 +3805,80080,34351 +3806,42832,7320 +3807,31128,76056 +3808,264555,5225 +3809,36247,622 +3810,383809,2566 +3811,83666,258 +3812,270672,41606 +3813,245692,11795 +3814,39358,2318 +3815,2143,982 +3816,36751,1 +3817,314389,86750 +3818,51434,23683 +3819,264644,806 +3820,109122,9266 +3821,50225,10399 +3822,459,59425 +3823,63876,14697 +3824,20017,7025 +3825,310567,59033 +3826,25684,1444 +3827,110160,9209 +3828,47795,23119 +3829,192210,80561 +3830,678,6 +3831,179105,8189 +3832,290911,101 +3833,33563,12355 +3834,83899,15159 +3835,11096,306 +3836,184802,8411 +3837,8070,64 +3838,21734,4005 +3839,52661,306 +3840,99642,6962 +3841,314065,52352 +3842,60623,7110 +3843,4644,1844 +3844,45838,5710 +3845,88794,11845 +3846,104931,33266 +3847,57190,38617 +3848,146313,11624 +3849,21712,3033 +3850,245226,6068 +3851,91628,2541 +3852,50463,365 +3853,37929,5669 +3854,8985,16450 +3855,72215,14599 +3856,11202,306 +3857,297736,70197 +3858,267481,24242 +3859,95177,82235 +3860,21352,4 +3861,310133,13466 +3862,27904,75515 +3863,123103,18142 +3864,23239,8724 +3865,74505,15160 +3866,46494,4388 +3867,324670,84419 +3868,16447,68952 +3869,94248,33991 +3870,9968,1204 +3871,48180,6261 +3872,350762,33810 +3873,13507,15316 +3874,42640,5488 +3875,2115,964 +3876,47342,20479 +3877,246741,6510 +3878,8342,2442 +3879,317557,18595 +3880,19812,17557 +3881,10999,306 +3882,30363,27992 +3883,21041,7330 +3884,108726,14528 +3885,12637,12252 +3886,142770,5120 +3887,238589,28179 +3888,42307,22897 +3889,1116,3012 +3890,41213,2331 +3891,24936,26927 +3892,395982,69334 +3893,74395,12 +3894,49521,923 +3895,112961,68154 +3896,17339,441 +3897,20527,4641 +3898,208436,12508 +3899,32338,7038 +3900,42170,10444 +3901,13701,4564 +3902,98870,84845 +3903,6557,711 +3904,46563,6194 +3905,39493,3472 +3906,5421,4836 +3907,136799,306 +3908,336484,51363 +3909,46420,2729 +3910,445,223 +3911,260584,5120 +3912,47144,76880 +3913,68472,21572 +3914,157117,48176 +3915,9841,3295 +3916,38794,4639 +3917,331642,7680 +3918,14215,25980 +3919,11516,8453 +3920,190955,2612 +3921,215579,46108 +3922,21242,60963 +3923,133183,11637 +3924,374461,19456 +3925,203217,93180 +3926,82327,310 +3927,41211,7766 +3928,4551,8411 +3929,51212,461 +3930,17189,3560 +3931,8366,1635 +3932,308024,1974 +3933,12205,9068 +3934,1404,19930 +3935,161073,6517 +3936,42123,69456 +3937,42819,1172 +3938,781,1972 +3939,72421,7025 +3940,25551,441 +3941,382501,11773 +3942,313074,10393 +3943,26612,4542 +3944,28340,45984 +3945,9667,551 +3946,57829,19151 +3947,58447,15166 +3948,10162,43 +3949,61121,3221 +3950,321160,6530 +3951,156,235 +3952,216369,8491 +3953,330459,68738 +3954,403450,21246 +3955,384737,73685 +3956,88794,171 +3957,29398,4 +3958,269,10907 +3959,144471,4928 +3960,42684,12158 +3961,1561,14680 +3962,15616,49336 +3963,10847,97 +3964,314371,6265 +3965,694,6194 +3966,226140,7571 +3967,15003,6018 +3968,339669,7584 +3969,13056,1632 +3970,62439,26324 +3971,9441,5 +3972,227700,23513 +3973,126442,60601 +3974,31083,8411 +3975,52034,3033 +3976,21024,60 +3977,136386,25999 +3978,49522,50246 +3979,38460,306 +3980,15940,284 +3981,79728,8342 +3982,65211,6194 +3983,18317,13334 +3984,114982,856 +3985,204922,694 +3986,9443,306 +3987,39039,7822 +3988,151068,410 +3989,32049,91380 +3990,92285,4952 +3991,44716,76 +3992,10299,306 +3993,8981,80272 +3994,172008,14966 +3995,464111,91393 +3996,44463,5 +3997,32928,25606 +3998,155325,73037 +3999,59006,2265 +4000,335498,6194 +4001,49410,6562 +4002,177047,13235 +4003,36971,10046 +4004,18971,10492 +4005,284189,6962 +4006,57412,4 +4007,28384,559 +4008,5551,6194 +4009,49500,6135 +4010,287233,2785 +4011,3587,508 +4012,32825,306 +4013,63498,2268 +4014,285935,3623 +4015,30554,441 +4016,598,11446 +4017,377151,2683 +4018,24077,4878 +4019,70988,5907 +4020,37050,13969 +4021,9779,10067 +4022,108017,17620 +4023,399790,25954 +4024,267579,73673 +4025,177677,11461 +4026,104744,9182 +4027,37590,201 +4028,190940,7356 +4029,375170,74732 +4030,88042,444 +4031,2487,622 +4032,1427,1208 +4033,31048,5114 +4034,341201,28567 +4035,9539,616 +4036,18595,3353 +4037,17144,48075 +4038,8899,2696 +4039,31984,5078 +4040,80443,58255 +4041,99859,1268 +4042,14317,2348 +4043,79316,22213 +4044,241639,5614 +4045,84305,10146 +4046,2017,16850 +4047,39867,15062 +4048,72431,22883 +4049,1164,2531 +4050,153717,21017 +4051,96701,7159 +4052,14833,2971 +4053,44502,6216 +4054,199615,10273 +4055,20307,33 +4056,27777,13866 +4057,129,10342 +4058,325263,78161 +4059,11630,9195 +4060,29224,10626 +4061,190955,33928 +4062,67,95 +4063,445,11388 +4064,38718,6919 +4065,86254,10559 +4066,16320,17032 +4067,290764,41649 +4068,57781,21700 +4069,110416,23948 +4070,99642,5358 +4071,73981,13200 +4072,222461,7215 +4073,315855,11517 +4074,18477,6429 +4075,267931,22784 +4076,46145,17023 +4077,325189,3213 +4078,339116,80885 +4079,28290,306 +4080,38742,5711 +4081,11633,3361 +4082,429238,84167 +4083,167330,46 +4084,391004,5822 +4085,153397,12575 +4086,16032,3389 +4087,103590,15326 +4088,76101,54835 +4089,40252,6595 +4090,265712,5897 +4091,110416,13350 +4092,43809,1460 +4093,92769,4899 +4094,2731,12965 +4095,329712,11246 +4096,10373,14312 +4097,135670,7324 +4098,16234,429 +4099,2267,12 +4100,41213,2329 +4101,95140,925 +4102,9900,2608 +4103,11298,10312 +4104,115290,8899 +4105,1966,591 +4106,6643,12315 +4107,137776,10969 +4108,20473,670 +4109,154,4 +4110,357706,14294 +4111,9028,2259 +4112,32708,850 +4113,109587,653 +4114,50166,5851 +4115,45211,7508 +4116,224282,41425 +4117,47942,89143 +4118,4551,1693 +4119,102629,1885 +4120,351809,73567 +4121,27003,441 +4122,333354,89989 +4123,256962,7075 +4124,83114,17364 +4125,9451,4 +4126,2687,6194 +4127,68721,420 +4128,343173,50098 +4129,71329,75519 +4130,120837,6194 +4131,190955,7454 +4132,214093,27126 +4133,95807,25929 +4134,241639,6838 +4135,5608,18908 +4136,48210,33152 +4137,236737,2674 +4138,14123,87605 +4139,423988,7493 +4140,83430,12344 +4141,28656,4856 +4142,30060,60 +4143,296313,118 +4144,210408,41675 +4145,409536,15993 +4146,10780,67823 +4147,10033,995 +4148,102256,27826 +4149,53879,306 +4150,146243,24428 +4151,96252,8411 +4152,1272,289 +4153,68716,7675 +4154,5544,6116 +4155,255898,46244 +4156,158908,20313 +4157,14405,2 +4158,11943,12273 +4159,76600,574 +4160,9882,20634 +4161,280030,76756 +4162,353641,33326 +4163,18741,6379 +4164,82501,11895 +4165,60665,12939 +4166,49514,1341 +4167,107499,16934 +4168,105059,8411 +4169,156700,28286 +4170,79466,8411 +4171,34806,1423 +4172,45928,6194 +4173,86956,659 +4174,283726,149 +4175,88005,771 +4176,80717,86975 +4177,69315,11282 +4178,4291,567 +4179,32577,39838 +4180,369776,3012 +4181,16899,1205 +4182,146216,429 +4183,22257,1829 +4184,36530,4821 +4185,110381,16887 +4186,19757,1931 +4187,71444,5357 +4188,82027,93125 +4189,22681,7372 +4190,184866,73322 +4191,256474,24511 +4192,32093,306 +4193,198277,14319 +4194,86168,87476 +4195,814,607 +4196,25674,33 +4197,239056,18615 +4198,13486,19643 +4199,28297,10330 +4200,280840,103 +4201,36253,6916 +4202,43026,53 +4203,463800,91393 +4204,11247,5367 +4205,13616,7340 +4206,94935,80108 +4207,34588,11446 +4208,72875,22199 +4209,62213,79 +4210,401164,26249 +4211,52847,8411 +4212,18919,6216 +4213,375366,19638 +4214,18551,705 +4215,106821,306 +4216,14164,3477 +4217,309809,2203 +4218,21282,9372 +4219,99909,6194 +4220,33107,49092 +4221,103597,29201 +4222,5289,972 +4223,25797,4313 +4224,153102,6529 +4225,9846,60 +4226,65089,64052 +4227,296313,119 +4228,207270,64695 +4229,186759,215 +4230,22584,6194 +4231,16417,38209 +4232,31417,1679 +4233,21250,24955 +4234,101183,12243 +4235,8457,4 +4236,16907,1778 +4237,65035,3449 +4238,189,13241 +4239,166076,429 +4240,19017,12611 +4241,12079,15231 +4242,183218,5 +4243,13526,20719 +4244,35626,8457 +4245,32708,13337 +4246,111470,1460 +4247,37820,11840 +4248,326255,73068 +4249,294819,5780 +4250,136386,26000 +4251,302104,57611 +4252,122081,14718 +4253,43046,11276 +4254,25568,5018 +4255,75138,17196 +4256,12279,7405 +4257,13493,2 +4258,188826,73679 +4259,63260,1428 +4260,62855,34745 +4261,2143,181 +4262,81654,6390 +4263,236317,5076 +4264,50512,4564 +4265,377158,33384 +4266,52452,6544 +4267,28131,4750 +4268,18273,68257 +4269,246860,22587 +4270,37497,11024 +4271,7343,13969 +4272,32390,3823 +4273,77949,8087 +4274,88018,3197 +4275,9675,12157 +4276,333667,2787 +4277,1628,22657 +4278,5924,599 +4279,329712,313 +4280,178809,5113 +4281,286521,30998 +4282,33228,25756 +4283,14644,10051 +4284,101998,66029 +4285,127424,81925 +4286,5393,1718 +4287,10900,2624 +4288,108665,5798 +4289,418378,8238 +4290,35001,15299 +4291,41131,8411 +4292,41764,3221 +4293,394051,76473 +4294,89008,1785 +4295,382597,11773 +4296,46014,6033 +4297,267852,39240 +4298,83788,10785 +4299,32233,5633 +4300,33792,8411 +4301,13680,2 +4302,88273,9111 +4303,38965,54851 +4304,13241,92794 +4305,83430,11933 +4306,24874,4365 +4307,373541,70422 +4308,258947,14262 +4309,218898,64403 +4310,53805,2683 +4311,24062,15122 +4312,18758,8039 +4313,9882,13769 +4314,85431,51965 +4315,10070,7405 +4316,62764,12005 +4317,360283,67977 +4318,11358,10339 +4319,104810,5120 +4320,48609,441 +4321,390547,5085 +4322,35921,306 +4323,88558,11707 +4324,19116,34236 +4325,2742,88920 +4326,101998,18367 +4327,256092,24032 +4328,18620,1422 +4329,19209,17411 +4330,13534,3936 +4331,27462,5126 +4332,47911,787 +4333,1599,43 +4334,35337,40768 +4335,416635,81522 +4336,16985,3235 +4337,481,257 +4338,176867,6194 +4339,173874,13432 +4340,13531,6194 +4341,14873,5391 +4342,428645,5591 +4343,150117,23616 +4344,279606,826 +4345,33273,7346 +4346,41441,4983 +4347,10565,5011 +4348,68716,7674 +4349,1724,11533 +4350,1624,23 +4351,26864,6458 +4352,7305,9195 +4353,21430,6455 +4354,12079,23909 +4355,377587,4616 +4356,38965,43838 +4357,237756,13235 +4358,20544,1693 +4359,13889,3214 +4360,7549,2271 +4361,105584,12009 +4362,9819,258 +4363,149870,11846 +4364,27622,8411 +4365,264646,4082 +4366,114779,38395 +4367,56947,3823 +4368,10837,5391 +4369,37454,10481 +4370,17962,12424 +4371,146216,9993 +4372,12144,33 +4373,55612,5123 +4374,8842,53904 +4375,44937,2901 +4376,7555,1632 +4377,141803,2953 +4378,375742,72890 +4379,57382,6896 +4380,66966,2486 +4381,125409,6197 +4382,4248,1608 +4383,127372,8299 +4384,202215,2913 +4385,13794,19130 +4386,366692,67116 +4387,13551,19851 +4388,29743,4986 +4389,28263,16337 +4390,20153,6 +4391,25385,30200 +4392,14818,4207 +4393,337758,54760 +4394,169656,84723 +4395,2105,506 +4396,29101,3134 +4397,12169,6586 +4398,696,60 +4399,12637,60 +4400,7511,54502 +4401,18897,11924 +4402,376570,1224 +4403,868,566 +4404,74942,12827 +4405,24657,6116 +4406,17577,3338 +4407,364088,86057 +4408,37534,40202 +4409,12599,12306 +4410,38874,21113 +4411,283489,1632 +4412,299715,2700 +4413,20521,3803 +4414,73067,5358 +4415,27095,6586 +4416,9815,1183 +4417,112304,4030 +4418,370178,56277 +4419,10946,5996 +4420,17771,3391 +4421,2897,1258 +4422,44945,925 +4423,71689,2 +4424,311764,41045 +4425,162864,62009 +4426,345925,8146 +4427,80094,6720 +4428,315846,882 +4429,322455,45302 +4430,27137,1957 +4431,13788,134 +4432,27380,2521 +4433,53862,919 +4434,336669,16897 +4435,10550,76491 +4436,31262,1394 +4437,45512,4376 +4438,45576,806 +4439,460135,2785 +4440,51875,7216 +4441,206296,15354 +4442,98125,4 +4443,41234,441 +4444,48268,55540 +4445,101006,39339 +4446,191536,12062 +4447,269650,29097 +4448,9598,2537 +4449,1999,14 +4450,320453,83978 +4451,19760,6194 +4452,71670,11341 +4453,62670,18557 +4454,25643,7419 +4455,11576,60 +4456,59408,1704 +4457,23967,763 +4458,1995,4 +4459,10075,12270 +4460,110447,22393 +4461,296941,51626 +4462,28275,7339 +4463,4550,1688 +4464,318553,78747 +4465,15213,4279 +4466,21348,16804 +4467,540,3287 +4468,248633,19249 +4469,153518,50848 +4470,3146,1333 +4471,202239,3681 +4472,200813,6790 +4473,40465,35141 +4474,335053,8521 +4475,16124,94199 +4476,11370,53010 +4477,32275,62 +4478,153161,8411 +4479,36129,14599 +4480,62527,3213 +4481,109466,21437 +4482,11045,6896 +4483,177047,50650 +4484,8316,1817 +4485,54795,288 +4486,6933,1088 +4487,2486,711 +4488,201765,6538 +4489,3686,249 +4490,49013,3 +4491,32604,186 +4492,125490,7320 +4493,26574,4535 +4494,249969,6194 +4495,265208,59488 +4496,290714,32287 +4497,82485,23770 +4498,2017,18516 +4499,233490,56499 +4500,322,171 +4501,46029,10201 +4502,45556,8632 +4503,14008,87552 +4504,121154,3324 +4505,35292,915 +4506,10400,919 +4507,127585,22213 +4508,72823,3458 +4509,143068,5120 +4510,1912,783 +4511,10739,247 +4512,21348,8175 +4513,173634,441 +4514,264397,8395 +4515,51250,73685 +4516,109441,13999 +4517,38618,60294 +4518,47003,4 +4519,101998,10611 +4520,368051,50104 +4521,8988,746 +4522,325365,6303 +4523,353464,63187 +4524,36786,3754 +4525,166,7961 +4526,246655,9168 +4527,396535,20064 +4528,35632,18026 +4529,8665,10104 +4530,17082,11405 +4531,93313,14925 +4532,175331,5381 +4533,308032,3898 +4534,54524,2744 +4535,106016,6 +4536,17421,3313 +4537,796,506 +4538,29204,4921 +4539,371003,20659 +4540,56162,7333 +4541,16016,3922 +4542,9551,52597 +4543,10594,6384 +4544,62046,11565 +4545,274504,50478 +4546,70192,5475 +4547,182129,5845 +4548,11899,6254 +4549,138502,11086 +4550,316042,164 +4551,9532,12 +4552,10867,1702 +4553,99846,80717 +4554,88059,42263 +4555,32158,7565 +4556,392386,45852 +4557,49940,7937 +4558,17479,84476 +4559,9613,806 +4560,1394,32054 +4561,339428,191 +4562,141,185 +4563,11096,73955 +4564,317723,43909 +4565,358724,73759 +4566,120615,8411 +4567,71041,12778 +4568,99579,1249 +4569,36094,206 +4570,344120,60843 +4571,36983,19237 +4572,285733,33365 +4573,56800,6397 +4574,25872,10778 +4575,3682,61337 +4576,17609,321 +4577,1995,3324 +4578,29449,18203 +4579,16075,3324 +4580,227964,53105 +4581,341077,564 +4582,12591,35 +4583,21029,3401 +4584,9703,289 +4585,6978,965 +4586,130948,1701 +4587,375366,85170 +4588,47143,1711 +4589,10834,27992 +4590,285908,35 +4591,18912,3552 +4592,141,3334 +4593,1902,779 +4594,83013,21332 +4595,18836,3488 +4596,338063,73528 +4597,245168,7981 +4598,419601,7961 +4599,25936,9342 +4600,62330,93399 +4601,12101,8411 +4602,58995,1704 +4603,26983,16748 +4604,22314,4380 +4605,3033,13495 +4606,25520,65682 +4607,2567,691 +4608,13596,7948 +4609,103301,383 +4610,39840,17513 +4611,12,3 +4612,310135,62055 +4613,302828,38272 +4614,27332,3166 +4615,377447,72091 +4616,76821,875 +4617,239619,2684 +4618,43891,441 +4619,100814,2159 +4620,398891,36956 +4621,10077,87852 +4622,433244,55570 +4623,508,694 +4624,164558,5 +4625,79234,19212 +4626,82501,9349 +4627,39347,18794 +4628,910,6194 +4629,82327,6916 +4630,30624,306 +4631,11547,35 +4632,246011,19003 +4633,60599,24930 +4634,60106,9 +4635,246218,4199 +4636,8989,56 +4637,41967,64620 +4638,52520,126 +4639,49521,9993 +4640,257095,2502 +4641,387999,23431 +4642,9966,768 +4643,348389,89544 +4644,170517,16064 +4645,33788,22636 +4646,4913,26468 +4647,294016,4205 +4648,18826,14589 +4649,82684,10221 +4650,328111,6704 +4651,29224,7446 +4652,22504,30098 +4653,315335,736 +4654,13056,11106 +4655,403450,2683 +4656,41970,12745 +4657,14538,3965 +4658,31206,5 +4659,11045,306 +4660,796,5 +4661,302026,77760 +4662,339408,423 +4663,56807,74857 +4664,132363,326 +4665,32536,63349 +4666,15934,35443 +4667,77877,8057 +4668,26518,14862 +4669,384262,89613 +4670,229328,7281 +4671,27993,4734 +4672,52868,12 +4673,66125,7584 +4674,18925,769 +4675,2994,1216 +4676,256474,12410 +4677,10055,8068 +4678,35656,71489 +4679,22051,9353 +4680,151086,64201 +4681,124501,12696 +4682,125344,94 +4683,29146,88161 +4684,172011,843 +4685,80094,57005 +4686,11056,7405 +4687,290825,35043 +4688,325133,33 +4689,263472,55497 +4690,98870,84846 +4691,435707,78113 +4692,613,3391 +4693,13849,2452 +4694,252888,41564 +4695,108822,40578 +4696,345637,3 +4697,12526,35 +4698,2453,22059 +4699,9471,19813 +4700,308269,49988 +4701,42093,11114 +4702,329712,18367 +4703,814,606 +4704,295602,34245 +4705,12584,10308 +4706,29483,22528 +4707,45273,42218 +4708,174751,8873 +4709,70046,7483 +4710,242332,14317 +4711,17771,3390 +4712,18569,60 +4713,17708,3929 +4714,10033,6363 +4715,342472,89203 +4716,288977,23920 +4717,3549,76 +4718,237756,1012 +4719,246133,19002 +4720,115565,22958 +4721,169,840 +4722,16806,306 +4723,257302,10523 +4724,9042,126 +4725,335053,29564 +4726,9948,91935 +4727,82327,6301 +4728,23957,41 +4729,13834,2829 +4730,20473,35514 +4731,11680,461 +4732,49398,82 +4733,257537,201 +4734,55846,342 +4735,71329,75516 +4736,54146,9181 +4737,51763,14 +4738,332979,37765 +4739,82327,7307 +4740,43902,4 +4741,105503,39932 +4742,15749,12087 +4743,184098,49968 +4744,8981,2452 +4745,103432,2166 +4746,39415,9 +4747,79526,38355 +4748,6687,10843 +4749,30307,441 +4750,64683,27072 +4751,126963,306 +4752,128612,21750 +4753,186869,8411 +4754,356161,11794 +4755,335053,104 +4756,147773,14319 +4757,21583,7382 +4758,33333,62452 +4759,381691,77133 +4760,255160,43092 +4761,333663,7308 +4762,35129,5527 +4763,72611,14809 +4764,129359,8222 +4765,346672,7738 +4766,33689,11661 +4767,177271,429 +4768,33788,14739 +4769,63681,1664 +4770,88273,76 +4771,10991,89164 +4772,3595,90663 +4773,1599,258 +4774,438597,86050 +4775,27259,10163 +4776,137182,24845 +4777,82,52846 +4778,47119,5358 +4779,1416,12743 +4780,14073,2320 +4781,41076,16270 +4782,71041,1724 +4783,83761,11460 +4784,40127,7173 +4785,123961,5533 +4786,25520,980 +4787,97051,23858 +4788,61548,4665 +4789,139463,3492 +4790,377447,90634 +4791,303542,67678 +4792,91380,22411 +4793,285869,11220 +4794,31111,26879 +4795,107976,2073 +4796,63831,6301 +4797,352025,1742 +4798,118640,3154 +4799,236324,20486 +4800,54243,16850 +4801,122023,4762 +4802,37053,3038 +4803,343173,12977 +4804,11012,12 +4805,9312,4174 +4806,292033,2186 +4807,186997,17084 +4808,24914,11671 +4809,333667,89486 +4810,49950,3287 +4811,371459,70871 +4812,57005,86710 +4813,31977,34088 +4814,21567,3979 +4815,32764,224 +4816,226354,39281 +4817,1904,780 +4818,17238,1041 +4819,405670,79197 +4820,2280,18 +4821,74510,7480 +4822,403,80 +4823,2293,11462 +4824,26656,5820 +4825,250535,6417 +4826,161024,7977 +4827,73869,2683 +4828,328032,5754 +4829,153141,80550 +4830,30155,11227 +4831,47201,15063 +4832,48250,2441 +4833,13004,2213 +4834,46114,74023 +4835,10567,10217 +4836,398633,42479 +4837,25643,4403 +4838,4441,37811 +4839,210910,29366 +4840,286521,906 +4841,11979,6194 +4842,32657,436 +4843,425774,89446 +4844,60665,3801 +4845,279179,1251 +4846,9042,3287 +4847,3057,67082 +4848,58,19936 +4849,21752,13969 +4850,403119,7405 +4851,12920,27 +4852,63876,21078 +4853,379,306 +4854,1387,15830 +4855,104744,9181 +4856,140814,30535 +4857,29239,33 +4858,24752,5542 +4859,9423,552 +4860,169,1302 +4861,177572,2 +4862,413052,22891 +4863,72474,6194 +4864,47119,28400 +4865,11880,8900 +4866,85494,13709 +4867,87204,17513 +4868,377447,36958 +4869,11832,235 +4870,2731,208 +4871,10066,79 +4872,90125,2265 +4873,6443,81694 +4874,119926,14035 +4875,72207,10105 +4876,10740,12 +4877,35656,71490 +4878,181753,51277 +4879,290316,81541 +4880,26880,14937 +4881,69315,7534 +4882,43172,6 +4883,10696,89627 +4884,18932,3558 +4885,30202,23843 +4886,1595,26469 +4887,73896,10330 +4888,20304,91637 +4889,83430,12341 +4890,120972,30336 +4891,163,129 +4892,59838,6194 +4893,2002,11246 +4894,46029,9195 +4895,333667,89489 +4896,304613,24650 +4897,83389,11726 +4898,69035,14 +4899,10925,4763 +4900,32609,15383 +4901,15013,7419 +4902,13092,9349 +4903,44105,18587 +4904,144475,6194 +4905,101330,76410 +4906,111605,60 +4907,11103,335 +4908,2625,559 +4909,48838,21923 +4910,296524,86900 +4911,99657,843 +4912,427045,4056 +4913,10033,54280 +4914,306966,70521 +4915,38010,27718 +4916,338438,16670 +4917,375742,37732 +4918,94352,2787 +4919,314388,9209 +4920,2140,5358 +4921,101669,22107 +4922,21032,56 +4923,118957,41905 +4924,10162,24356 +4925,76788,7143 +4926,2454,11442 +4927,62764,12006 +4928,272693,4022 +4929,277558,7587 +4930,14164,10893 +4931,71329,18367 +4932,22051,3459 +4933,11385,10696 +4934,61904,42810 +4935,76170,431 +4936,188927,4 +4937,22683,11073 +4938,8383,62402 +4939,290762,67285 +4940,134355,8411 +4941,31146,13190 +4942,81684,5644 +4943,1963,684 +4944,271185,23752 +4945,118059,8411 +4946,124821,38567 +4947,10950,12 +4948,45772,2885 +4949,9651,76463 +4950,360283,67976 +4951,63736,1371 +4952,291351,22842 +4953,241239,14861 +4954,55725,10892 +4955,227964,21454 +4956,9286,12067 +4957,394822,86523 +4958,33016,1382 +4959,259830,27264 +4960,323426,3750 +4961,375012,55142 +4962,201085,923 +4963,287587,55289 +4964,95037,441 +4965,332411,73316 +4966,319340,9 +4967,244458,8532 +4968,84185,4183 +4969,177203,8400 +4970,82624,2291 +4971,4547,7795 +4972,171075,4913 +4973,11618,7 +4974,369366,71150 +4975,348689,7819 +4976,101006,35558 +4977,61121,64464 +4978,18047,12551 +4979,105981,5488 +4980,360737,7025 +4981,4820,1845 +4982,280583,60749 +4983,375366,85169 +4984,103620,1992 +4985,346646,12987 +4986,2107,960 +4987,329010,74006 +4988,95504,33 +4989,50647,41962 +4990,49787,22897 +4991,99819,7529 +4992,28178,7419 +4993,17238,12110 +4994,150657,5225 +4995,7483,2250 +4996,522,9195 +4997,8325,5358 +4998,17771,805 +4999,664,6194 +5000,18897,12034 +5001,9945,4248 +5002,68822,11290 +5003,213681,58553 +5004,107916,24018 +5005,301334,20782 +5006,32609,1323 +5007,253794,19785 +5008,273743,58591 +5009,8247,444 +5010,123103,18144 +5011,62630,7300 +5012,120588,441 +5013,9945,23895 +5014,125990,6426 +5015,352164,59649 +5016,127864,6778 +5017,266030,836 +5018,11813,1639 +5019,14873,3475 +5020,73775,7201 +5021,40978,876 +5022,85446,491 +5023,174925,13400 +5024,18352,26819 +5025,156,758 +5026,24348,78455 +5027,48207,16593 +5028,84185,25845 +5029,104720,306 +5030,277967,608 +5031,25376,21915 +5032,33613,17513 +5033,288788,2726 +5034,2861,223 +5035,29101,25488 +5036,31262,5131 +5037,11134,2521 +5038,84823,14679 +5039,191820,19639 +5040,93828,9015 +5041,59935,223 +5042,34512,2789 +5043,188858,10113 +5044,107073,8861 +5045,242382,4928 +5046,127585,431 +5047,128081,18956 +5048,80193,6194 +5049,31273,266 +5050,123359,23457 +5051,48412,5040 +5052,154671,9138 +5053,75204,14551 +5054,8985,18078 +5055,44208,4 +5056,408024,34495 +5057,399612,6639 +5058,125520,24827 +5059,83890,44396 +5060,266082,20881 +5061,4806,126 +5062,186634,3865 +5063,15472,33822 +5064,30708,2532 +5065,411741,80990 +5066,202662,18464 +5067,140607,11461 +5068,31509,4759 +5069,45988,14085 +5070,84348,15157 +5071,4982,8083 +5072,45243,6194 +5073,147590,49986 +5074,148347,2877 +5075,42684,12007 +5076,346443,24930 +5077,99008,9233 +5078,310431,46667 +5079,43973,856 +5080,64225,28700 +5081,9286,3169 +5082,14284,21673 +5083,107073,56472 +5084,137193,10610 +5085,209410,1569 +5086,99312,31060 +5087,72465,726 +5088,17203,932 +5089,45197,89221 +5090,9516,12 +5091,56491,95918 +5092,35977,285 +5093,809,521 +5094,130925,2 +5095,29903,1641 +5096,49410,35868 +5097,62567,31892 +5098,73984,21640 +5099,83788,62132 +5100,118716,4141 +5101,29083,4899 +5102,13517,3922 +5103,44741,1216 +5104,44875,2159 +5105,294651,12386 +5106,32657,10893 +5107,72279,82 +5108,214676,10342 +5109,20424,21732 +5110,163706,7110 +5111,10805,4 +5112,435,35 +5113,285400,4 +5114,79995,7395 +5115,10529,2116 +5116,49950,829 +5117,4592,51765 +5118,110573,9055 +5119,142712,24143 +5120,345438,23595 +5121,12102,5 +5122,8888,1704 +5123,238307,14620 +5124,387886,77501 +5125,41787,14159 +5126,2758,41 +5127,13567,2775 +5128,327383,50812 +5129,341420,12298 +5130,4529,1650 +5131,844,255 +5132,357706,2320 +5133,44238,77337 +5134,549,53009 +5135,33623,3307 +5136,62132,44717 +5137,8342,12024 +5138,394668,76045 +5139,88641,365 +5140,755,59 +5141,6145,16946 +5142,41591,5874 +5143,204965,61101 +5144,26882,87564 +5145,34052,5397 +5146,73981,254 +5147,4551,215 +5148,10003,4 +5149,28894,4934 +5150,140825,459 +5151,63717,27124 +5152,167073,1508 +5153,14923,3268 +5154,2608,4535 +5155,44115,7981 +5156,436340,73467 +5157,23207,4201 +5158,40465,5534 +5159,45576,50910 +5160,55396,12986 +5161,180305,4022 +5162,98328,8411 +5163,19096,6 +5164,24154,3544 +5165,5551,171 +5166,33931,6194 +5167,6947,258 +5168,215579,9223 +5169,17658,3366 +5170,74674,11672 +5171,1165,5358 +5172,7972,2288 +5173,16659,37553 +5174,1273,3463 +5175,27970,33 +5176,16900,3233 +5177,430058,68120 +5178,125520,22289 +5179,337104,81551 +5180,374475,16110 +5181,270646,6916 +5182,185934,21254 +5183,319993,80500 +5184,1163,670 +5185,9778,870 +5186,315010,3164 +5187,270654,46241 +5188,2288,5 +5189,41604,11468 +5190,9080,8760 +5191,140509,27717 +5192,46992,181 +5193,32904,13459 +5194,54804,33783 +5195,58251,44643 +5196,27904,28410 +5197,44658,92853 +5198,9816,746 +5199,25626,10289 +5200,77673,14188 +5201,57996,1679 +5202,92251,1499 +5203,91070,47330 +5204,407559,7046 +5205,11614,80261 +5206,1427,2116 +5207,5,14 +5208,3580,23 +5209,1550,26468 +5210,418378,78999 +5211,110447,2683 +5212,18747,5633 +5213,429174,94 +5214,74924,441 +5215,230179,39734 +5216,116236,1679 +5217,364111,13113 +5218,249703,33380 +5219,256628,20539 +5220,38580,6125 +5221,5552,3823 +5222,73348,44730 +5223,1687,306 +5224,63178,1679 +5225,10145,497 +5226,36915,364 +5227,197082,8620 +5228,18447,1322 +5229,5551,79 +5230,277713,75882 +5231,86985,76 +5232,27993,12 +5233,9563,431 +5234,37725,36346 +5235,50849,1701 +5236,27259,10462 +5237,309809,59725 +5238,335509,441 +5239,102949,8485 +5240,45120,2019 +5241,254193,4592 +5242,63831,2695 +5243,157409,62281 +5244,72984,13549 +5245,21036,9155 +5246,28063,53179 +5247,273879,33540 +5248,365065,66160 +5249,26861,4612 +5250,50196,6398 +5251,298396,12583 +5252,240832,23616 +5253,50329,10718 +5254,2323,13 +5255,26593,10696 +5256,20493,3786 +5257,74103,7750 +5258,76757,450 +5259,76115,7923 +5260,54845,15980 +5261,274504,8924 +5262,13957,2844 +5263,76202,7934 +5264,10013,70 +5265,11077,23 +5266,212530,7448 +5267,218329,8691 +5268,107443,3760 +5269,34512,3268 +5270,12422,17178 +5271,98066,84640 +5272,1914,44224 +5273,33792,11770 +5274,26390,8151 +5275,40916,8411 +5276,315837,7294 +5277,17654,11 +5278,279690,26432 +5279,26761,6194 +5280,53792,33 +5281,118245,6194 +5282,31439,25299 +5283,49559,1244 +5284,16410,660 +5285,50079,8411 +5286,284246,4740 +5287,82237,306 +5288,152748,14635 +5289,149509,19177 +5290,133458,228 +5291,260312,3823 +5292,17606,3346 +5293,58244,45970 +5294,38356,435 +5295,59726,18078 +5296,45928,10210 +5297,4443,80444 +5298,390059,74472 +5299,296456,10967 +5300,10362,856 +5301,280422,42096 +5302,184351,6194 +5303,17927,3287 +5304,86829,20664 +5305,12783,288 +5306,117120,829 +5307,2110,356 +5308,5511,73 +5309,298,129 +5310,788,306 +5311,148347,33578 +5312,118760,3492 +5313,118536,60 +5314,35623,42670 +5315,42293,7897 +5316,83761,11459 +5317,318922,51860 +5318,18598,3511 +5319,333663,83397 +5320,96712,9091 +5321,105860,15868 +5322,28171,208 +5323,11370,16850 +5324,211166,32770 +5325,27031,75232 +5326,10004,13153 +5327,47943,1115 +5328,4476,348 +5329,10087,2756 +5330,278901,7899 +5331,3033,35 +5332,48209,2328 +5333,9904,58324 +5334,118408,4262 +5335,1640,1632 +5336,8985,55588 +5337,27886,18952 +5338,8014,836 +5339,384682,13778 +5340,128237,11999 +5341,228108,17379 +5342,78464,3623 +5343,469172,18888 +5344,254188,36227 +5345,121749,12062 +5346,58462,13813 +5347,211144,5003 +5348,43049,8411 +5349,34650,6 +5350,20766,846 +5351,85735,3921 +5352,15584,3087 +5353,271826,280 +5354,308,22456 +5355,318973,77718 +5356,93862,34127 +5357,10207,18093 +5358,34449,10617 +5359,56807,22625 +5360,17895,3341 +5361,17744,441 +5362,258363,51696 +5363,384373,41800 +5364,47889,75713 +5365,16066,3129 +5366,9589,39823 +5367,118257,7949 +5368,117212,3790 +5369,114333,12009 +5370,29161,4746 +5371,274990,12984 +5372,54107,3202 +5373,244580,18852 +5374,19688,52017 +5375,49853,26254 +5376,9056,3054 +5377,29108,181 +5378,15902,16014 +5379,109453,57021 +5380,27637,84330 +5381,73612,38215 +5382,51548,6518 +5383,93676,2683 +5384,291871,80222 +5385,8672,2475 +5386,9102,3388 +5387,165,20448 +5388,68737,3528 +5389,44238,17636 +5390,9404,2521 +5391,7229,7248 +5392,20443,41 +5393,223391,192 +5394,84577,22061 +5395,241968,5358 +5396,245706,10104 +5397,332794,2927 +5398,197175,4497 +5399,302104,19781 +5400,31262,28190 +5401,62488,11308 +5402,19423,1063 +5403,72875,7662 +5404,33273,11397 +5405,287628,973 +5406,127864,850 +5407,252680,10156 +5408,246011,27913 +5409,273481,33681 +5410,45384,4641 +5411,42187,925 +5412,43213,72689 +5413,43817,21446 +5414,15745,2188 +5415,196469,18188 +5416,340187,18609 +5417,5552,6586 +5418,88863,285 +5419,43504,306 +5420,86829,694 +5421,18836,254 +5422,89591,4474 +5423,19050,4 +5424,76543,3829 +5425,16996,12 +5426,88075,614 +5427,128311,14067 +5428,8840,33 +5429,14510,1212 +5430,43268,306 +5431,287301,6339 +5432,13393,67496 +5433,32546,9974 +5434,390747,89082 +5435,156356,13914 +5436,2611,477 +5437,9503,10947 +5438,1247,10210 +5439,8672,5975 +5440,260094,2683 +5441,14683,81017 +5442,29805,85470 +5443,72875,22200 +5444,193,4 +5445,78691,1532 +5446,20017,2592 +5447,218784,5752 +5448,21380,4531 +5449,17771,10272 +5450,279606,8411 +5451,24625,3268 +5452,204802,5120 +5453,310135,19324 +5454,8886,4505 +5455,104251,12797 +5456,34181,9079 +5457,54563,6116 +5458,14164,444 +5459,13616,73899 +5460,2197,850 +5461,262454,479 +5462,174958,44382 +5463,39195,83348 +5464,694,88 +5465,39107,5542 +5466,4953,12 +5467,41261,7260 +5468,15697,13999 +5469,14881,171 +5470,328692,34200 +5471,1282,795 +5472,291155,40249 +5473,327389,4279 +5474,153163,8411 +5475,94874,1444 +5476,34588,6446 +5477,413430,80999 +5478,39781,6691 +5479,48205,9292 +5480,10543,23 +5481,297702,78186 +5482,14869,4 +5483,44303,2786 +5484,18222,17068 +5485,76714,8411 +5486,353533,69124 +5487,344170,10950 +5488,81409,95315 +5489,6964,735 +5490,3089,60 +5491,86603,72417 +5492,25568,70746 +5493,39130,8411 +5494,41402,3576 +5495,53419,4114 +5496,141868,4148 +5497,298722,29223 +5498,98586,10070 +5499,1922,790 +5500,131343,229 +5501,17209,3244 +5502,9099,33 +5503,9495,4028 +5504,352327,35449 +5505,65066,6194 +5506,150049,14404 +5507,1125,415 +5508,70586,7788 +5509,26293,21597 +5510,92465,90406 +5511,245168,9349 +5512,75903,14235 +5513,8672,201 +5514,11516,7025 +5515,10475,10791 +5516,46758,75476 +5517,345775,12350 +5518,17609,10932 +5519,21721,44730 +5520,96333,770 +5521,161620,1957 +5522,322518,5486 +5523,248933,404 +5524,83475,10845 +5525,125926,78362 +5526,8053,2322 +5527,176085,307 +5528,13484,4740 +5529,132518,10695 +5530,21927,707 +5531,413417,84161 +5532,76198,58273 +5533,49398,20395 +5534,32868,20728 +5535,85644,10324 +5536,418990,42479 +5537,41970,2458 +5538,28592,4842 +5539,28417,11245 +5540,381032,34777 +5541,126319,694 +5542,266044,122 +5543,390,36229 +5544,11101,23417 +5545,59434,14035 +5546,205724,24513 +5547,336811,2673 +5548,13411,6194 +5549,21132,2499 +5550,3037,4606 +5551,245700,16804 +5552,16899,288 +5553,230179,62407 +5554,9607,1504 +5555,107319,41474 +5556,61225,20986 +5557,111479,31142 +5558,134662,43463 +5559,60599,12501 +5560,70090,10650 +5561,90056,24060 +5562,17711,11391 +5563,19621,11561 +5564,51945,7089 +5565,19255,1522 +5566,50725,7295 +5567,118490,68746 +5568,103875,1249 +5569,43891,14950 +5570,19552,5358 +5571,22855,429 +5572,38031,6538 +5573,235662,5225 +5574,119820,1541 +5575,13853,22297 +5576,18392,12 +5577,37725,4564 +5578,17209,126 +5579,172386,66178 +5580,1662,41 +5581,82624,12220 +5582,362178,90979 +5583,18642,4 +5584,69668,10210 +5585,315855,10473 +5586,303867,63349 +5587,42832,11578 +5588,61765,64 +5589,241855,12142 +5590,175331,11776 +5591,31805,4 +5592,157351,18402 +5593,381737,4382 +5594,122435,16643 +5595,257345,3172 +5596,146521,87514 +5597,10750,1595 +5598,15749,8582 +5599,47921,33 +5600,328032,52597 +5601,270650,31718 +5602,28071,38792 +5603,57489,11093 +5604,314065,53245 +5605,11869,619 +5606,200511,3095 +5607,435041,5120 +5608,15179,3221 +5609,59118,5870 +5610,71140,306 +5611,26963,4621 +5612,101998,22884 +5613,86241,18203 +5614,78281,5358 +5615,8467,12 +5616,43141,13677 +5617,95015,6194 +5618,6440,14 +5619,17622,1063 +5620,15875,4 +5621,11692,97 +5622,48339,11672 +5623,8342,1016 +5624,213914,4963 +5625,188357,21819 +5626,83389,11849 +5627,2075,634 +5628,65599,5574 +5629,83015,6730 +5630,33107,694 +5631,70027,7481 +5632,11139,2514 +5633,55208,7423 +5634,74879,75039 +5635,96552,12023 +5636,2259,33027 +5637,16047,76 +5638,176124,3291 +5639,114931,588 +5640,353326,4135 +5641,302960,2786 +5642,158990,20856 +5643,63831,11920 +5644,44877,6371 +5645,47540,73336 +5646,134394,10339 +5647,282268,11486 +5648,363579,6194 +5649,65131,10845 +5650,12528,11142 +5651,39957,13921 +5652,14444,4 +5653,399612,11199 +5654,44012,10647 +5655,82157,8595 +5656,181533,2575 +5657,1381,6194 +5658,46570,8146 +5659,13957,2843 +5660,86814,8171 +5661,11535,1484 +5662,290316,5358 +5663,2196,10760 +5664,37992,33 +5665,46885,6161 +5666,98586,10076 +5667,145668,23189 +5668,46029,20295 +5669,307931,59030 +5670,98339,11875 +5671,49220,321 +5672,42309,48612 +5673,321039,62708 +5674,27091,4631 +5675,176983,50411 +5676,70670,235 +5677,340190,54131 +5678,314285,11672 +5679,1924,6194 +5680,197849,92603 +5681,98586,10069 +5682,150117,10163 +5683,19506,3362 +5684,315855,17722 +5685,183412,45084 +5686,10476,746 +5687,327389,27140 +5688,72847,6194 +5689,297762,83838 +5690,32029,4377 +5691,47812,6234 +5692,41556,6692 +5693,28304,3468 +5694,15472,118 +5695,288977,3902 +5696,266044,20691 +5697,223551,2197 +5698,130948,20606 +5699,77673,1869 +5700,143240,25147 +5701,84336,3353 +5702,13678,11912 +5703,198130,17652 +5704,297762,9993 +5705,286372,23868 +5706,59569,15123 +5707,104474,45867 +5708,26593,3070 +5709,39495,4 +5710,256474,21656 +5711,133448,5826 +5712,102,76 +5713,12247,10989 +5714,834,3287 +5715,16962,6220 +5716,225728,20664 +5717,148034,15165 +5718,91679,10056 +5719,214093,22071 +5720,283995,2 +5721,30330,3268 +5722,211059,11237 +5723,222461,24048 +5724,82409,59458 +5725,42252,60 +5726,413421,12154 +5727,53407,5109 +5728,158908,13238 +5729,345775,71863 +5730,266082,78941 +5731,9297,5752 +5732,86727,1869 +5733,145220,6421 +5734,2750,163 +5735,260312,856 +5736,48805,19079 +5737,122857,21897 +5738,336691,69766 +5739,43790,8411 +5740,32558,1553 +5741,34623,6194 +5742,84626,17386 +5743,440777,56696 +5744,374614,91787 +5745,192210,41602 +5746,302104,57612 +5747,22559,10221 +5748,35337,20783 +5749,119213,8284 +5750,378446,41258 +5751,12247,19148 +5752,28774,57986 +5753,205587,8406 +5754,1253,932 +5755,56725,16636 +5756,91961,9329 +5757,10972,236 +5758,125736,6194 +5759,2977,1267 +5760,145247,28003 +5761,258193,3615 +5762,12483,11061 +5763,72822,6586 +5764,255384,50109 +5765,227257,33365 +5766,166610,8298 +5767,10396,67709 +5768,2196,1014 +5769,13805,19248 +5770,29318,15297 +5771,1448,719 +5772,13312,5358 +5773,52696,1569 +5774,327225,10417 +5775,11137,11345 +5776,14400,6750 +5777,19286,4063 +5778,43894,8411 +5779,136582,1666 +5780,17657,1138 +5781,18755,5117 +5782,44536,306 +5783,382501,7981 +5784,29952,10046 +5785,85435,10951 +5786,306966,62170 +5787,10077,87847 +5788,340103,41077 +5789,244786,3172 +5790,273481,1632 +5791,85602,15606 +5792,366692,2922 +5793,13025,3240 +5794,99599,84215 +5795,429174,1926 +5796,8414,2413 +5797,47778,85383 +5798,49106,3681 +5799,245700,10100 +5800,747,53048 +5801,13853,6194 +5802,5511,11788 +5803,333663,50079 +5804,63831,11926 +5805,13678,7715 +5806,86814,10647 +5807,1361,688 +5808,127369,81443 +5809,14869,158 +5810,249914,3703 +5811,62071,5798 +5812,180576,20004 +5813,284274,420 +5814,28090,80297 +5815,868,563 +5816,205587,6194 +5817,245692,856 +5818,184351,30647 +5819,128043,8100 +5820,44510,12226 +5821,33495,2683 +5822,180305,3172 +5823,337549,15278 +5824,8989,33 +5825,8870,53997 +5826,10154,97 +5827,316885,19592 +5828,6963,11930 +5829,24624,2100 +5830,39428,94478 +5831,37301,13370 +5832,37645,3823 +5833,3686,1492 +5834,238302,18713 +5835,57419,5311 +5836,246403,9081 +5837,38681,8016 +5838,9078,3166 +5839,17216,3271 +5840,8665,2471 +5841,18094,22477 +5842,9066,4 +5843,73067,181 +5844,252171,51194 +5845,88491,23343 +5846,27832,17946 +5847,79113,15048 +5848,283445,69111 +5849,258193,1633 +5850,811,33 +5851,11953,882 +5852,13056,8848 +5853,73624,2429 +5854,55197,5070 +5855,63831,850 +5856,191476,17723 +5857,378446,93504 +5858,29020,8298 +5859,32088,1704 +5860,222858,4688 +5861,20028,3697 +5862,19610,3645 +5863,26491,5996 +5864,3686,3602 +5865,108003,7576 +5866,81475,65962 +5867,39347,18793 +5868,11855,17411 +5869,154441,13969 +5870,31342,40769 +5871,70815,11446 +5872,109074,75620 +5873,219466,19089 +5874,24331,4899 +5875,3085,5 +5876,109122,14571 +5877,13531,10104 +5878,74666,5358 +5879,323555,6964 +5880,319910,7294 +5881,9495,14 +5882,13495,2029 +5883,177697,254 +5884,337107,2490 +5885,18190,1382 +5886,322548,45514 +5887,241140,46499 +5888,58518,2441 +5889,12780,3618 +5890,24655,33 +5891,62616,25924 +5892,310602,63596 +5893,15144,33 +5894,336804,8152 +5895,55505,1647 +5896,296025,52428 +5897,13655,3213 +5898,26390,10254 +5899,32610,8411 +5900,375366,16877 +5901,71329,11694 +5902,76203,10104 +5903,24397,15104 +5904,72640,3166 +5905,298584,73193 +5906,179188,3166 +5907,162458,77195 +5908,173638,49161 +5909,100669,20358 +5910,23114,1553 +5911,61984,12385 +5912,97707,843 +5913,116733,14599 +5914,409696,7899 +5915,28417,3984 +5916,53865,6194 +5917,89145,4395 +5918,39358,858 +5919,189197,15258 +5920,222935,711 +5921,24679,69934 +5922,155724,2230 +5923,101915,3449 +5924,124157,3491 +5925,25053,12424 +5926,151826,24960 +5927,9352,53012 +5928,46029,21108 +5929,110323,3578 +5930,80089,12081 +5931,18238,3471 +5932,549,93380 +5933,46247,9383 +5934,17692,33 +5935,38060,4898 +5936,321497,7543 +5937,383809,73555 +5938,254065,11073 +5939,32234,78656 +5940,101838,6417 +5941,270654,46240 +5942,46972,12 +5943,17464,559 +5944,12276,38550 +5945,214086,1092 +5946,410718,17369 +5947,413770,5165 +5948,101342,8492 +5949,43342,5939 +5950,76203,1246 +5951,64942,11991 +5952,15762,1174 +5953,15414,35001 +5954,47795,25514 +5955,18045,14185 +5956,11101,1704 +5957,110830,1978 +5958,8588,315 +5959,4993,4 +5960,39875,39647 +5961,10488,10221 +5962,5123,6194 +5963,47112,16923 +5964,13555,2767 +5965,88075,12274 +5966,44921,306 +5967,10521,508 +5968,8619,53009 +5969,119374,10047 +5970,11003,12 +5971,33344,14 +5972,186881,5798 +5973,10857,12745 +5974,213842,7429 +5975,43365,306 +5976,87894,8411 +5977,97365,11795 +5978,327528,8204 +5979,431244,21899 +5980,204800,19722 +5981,6145,97 +5982,28273,10624 +5983,268875,8411 +5984,142115,58675 +5985,16659,38670 +5986,314389,3522 +5987,71672,5755 +5988,42457,20459 +5989,134475,8411 +5990,11535,657 +5991,163376,11496 +5992,3172,52944 +5993,203264,82573 +5994,23692,19683 +5995,4476,559 +5996,101752,9301 +5997,1116,5267 +5998,15712,4176 +5999,34223,2165 +6000,79120,10441 +6001,58611,5051 +6002,74510,35327 +6003,14626,11332 +6004,13196,1422 +6005,45610,7295 +6006,311291,9349 +6007,63144,6735 +6008,25053,570 +6009,13539,711 +6010,40060,17778 +6011,440508,73934 +6012,34231,5437 +6013,9703,16923 +6014,98631,25348 +6015,183039,465 +6016,37628,37673 +6017,111839,48039 +6018,62012,5821 +6019,57489,9974 +6020,1259,43 +6021,11909,6214 +6022,399106,3 +6023,11358,23938 +6024,125063,13777 +6025,186019,18758 +6026,88042,6332 +6027,1116,225 +6028,4592,51763 +6029,173294,28917 +6030,10529,1204 +6031,2,2396 +6032,2009,35020 +6033,228676,6644 +6034,266082,14246 +6035,15734,3468 +6036,270403,22231 +6037,34774,3166 +6038,92769,24946 +6039,43753,9165 +6040,34449,1328 +6041,14262,2880 +6042,28,60 +6043,191068,21555 +6044,2805,1239 +6045,47119,93503 +6046,21671,20943 +6047,21044,9383 +6048,128412,15406 +6049,39845,826 +6050,376501,57147 +6051,7459,450 +6052,270774,53634 +6053,320005,10694 +6054,94248,8411 +6055,921,33 +6056,47525,3902 +6057,353326,50079 +6058,57749,43528 +6059,68347,3679 +6060,13792,2810 +6061,44081,79260 +6062,16074,76795 +6063,14207,19528 +6064,1271,7636 +6065,118257,36229 +6066,118293,189 +6067,17609,5358 +6068,356500,50079 +6069,7459,12170 +6070,252028,11208 +6071,890,608 +6072,345922,2575 +6073,116327,9266 +6074,8915,43 +6075,52999,635 +6076,24971,22792 +6077,31671,441 +6078,356757,91437 +6079,69,85 +6080,365447,73067 +6081,18352,1931 +6082,295748,4308 +6083,286545,210 +6084,68569,550 +6085,441881,59294 +6086,355984,61661 +6087,41505,23199 +6088,74666,18485 +6089,58923,4319 +6090,389630,87427 +6091,96921,16804 +6092,1969,5358 +6093,23196,4197 +6094,8464,73524 +6095,56135,306 +6096,4307,105 +6097,5955,12264 +6098,84577,24278 +6099,32044,41311 +6100,25520,65681 +6101,42252,29119 +6102,12811,33155 +6103,448763,6446 +6104,39781,23912 +6105,244539,13466 +6106,29467,6194 +6107,12103,79 +6108,10484,13192 +6109,274504,41077 +6110,397422,5752 +6111,440597,49389 +6112,104376,10845 +6113,75244,17208 +6114,14452,2393 +6115,87826,2608 +6116,277355,30420 +6117,403119,13161 +6118,7096,20358 +6119,151826,7827 +6120,301875,80835 +6121,374475,79268 +6122,10691,9195 +6123,64847,1598 +6124,208968,14282 +6125,50318,58840 +6126,27265,4 +6127,321039,62709 +6128,26503,1429 +6129,19101,6194 +6130,91217,4354 +6131,84479,11931 +6132,376660,47729 +6133,48609,6407 +6134,214909,1460 +6135,71805,1003 +6136,255772,40456 +6137,46872,6152 +6138,13713,147 +6139,32934,22109 +6140,367147,35562 +6141,18595,2335 +6142,204712,8177 +6143,121940,10289 +6144,29058,8599 +6145,408537,87318 +6146,9542,559 +6147,6973,2087 +6148,79120,10442 +6149,67216,10287 +6150,44246,46 +6151,332534,25350 +6152,26881,4608 +6153,123777,67385 +6154,79382,8156 +6155,7555,10254 +6156,109391,1784 +6157,172385,11749 +6158,102057,56890 +6159,18279,5975 +6160,38021,15316 +6161,13536,10958 +6162,19587,73330 +6163,11096,711 +6164,205481,85975 +6165,21052,22308 +6166,19325,3202 +6167,238255,14966 +6168,285,2 +6169,127585,9168 +6170,17609,11238 +6171,14626,75482 +6172,7220,19551 +6173,10330,3538 +6174,9904,58323 +6175,30527,5057 +6176,382598,1992 +6177,28663,33 +6178,395992,82925 +6179,360784,3911 +6180,9272,306 +6181,174751,14358 +6182,224282,41426 +6183,406431,79289 +6184,2080,19551 +6185,9475,33 +6186,9389,5381 +6187,12584,4 +6188,87827,444 +6189,9667,11509 +6190,352960,61604 +6191,76785,1030 +6192,403593,80071 +6193,166076,9993 +6194,264061,33 +6195,410537,82774 +6196,3682,1811 +6197,221732,6194 +6198,72822,5358 +6199,215928,14970 +6200,353464,13678 +6201,43139,20544 +6202,17009,1353 +6203,169794,41676 +6204,23966,45119 +6205,413762,25795 +6206,13807,5552 +6207,77915,8411 +6208,77949,5870 +6209,132608,6194 +6210,289923,27570 +6211,13680,22881 +6212,14226,2269 +6213,49028,7990 +6214,120212,6197 +6215,81576,55260 +6216,28480,6762 +6217,2454,76043 +6218,273,116 +6219,72875,7660 +6220,75969,336 +6221,17464,4110 +6222,310593,7981 +6223,4286,32208 +6224,307696,73856 +6225,10025,10104 +6226,29082,1342 +6227,14878,2986 +6228,17687,9329 +6229,46029,6861 +6230,24448,4311 +6231,156547,1429 +6232,13685,441 +6233,90590,14148 +6234,74666,7307 +6235,225728,9349 +6236,47792,46391 +6237,63401,7459 +6238,84336,13242 +6239,24777,8411 +6240,10354,6194 +6241,152042,6689 +6242,35110,5521 +6243,300,11912 +6244,259690,20916 +6245,18919,23483 +6246,1966,866 +6247,168676,769 +6248,17170,32793 +6249,5759,1974 +6250,13536,1403 +6251,9905,1382 +6252,1904,27 +6253,74911,6 +6254,8342,85741 +6255,560,323 +6256,274990,118 +6257,55756,7510 +6258,208869,7353 +6259,12614,8844 +6260,29979,12 +6261,31598,14723 +6262,204922,1645 +6263,175331,8471 +6264,12135,2699 +6265,207178,6194 +6266,40807,491 +6267,262,10214 +6268,1896,12010 +6269,70489,559 +6270,63825,3118 +6271,3016,29729 +6272,167021,7254 +6273,354832,3282 +6274,32143,8772 +6275,430826,36870 +6276,6081,10258 +6277,11570,30724 +6278,268174,7500 +6279,43434,6111 +6280,16320,33 +6281,110416,69192 +6282,77986,5120 +6283,283686,44211 +6284,11329,1171 +6285,36527,64111 +6286,74666,12346 +6287,14012,711 +6288,121791,26891 +6289,90616,8605 +6290,26891,224 +6291,191562,3653 +6292,11889,288 +6293,76211,306 +6294,7249,1556 +6295,18530,738 +6296,30411,47327 +6297,18613,4045 +6298,1381,7503 +6299,47404,8411 +6300,114096,6194 +6301,113148,12650 +6302,408024,28336 +6303,362057,11565 +6304,31146,1644 +6305,324930,61789 +6306,31445,18870 +6307,200447,13479 +6308,8460,333 +6309,1049,104 +6310,18598,3510 +6311,39048,60 +6312,13614,10826 +6313,52736,28398 +6314,177203,5996 +6315,47112,11571 +6316,26736,3213 +6317,109251,33 +6318,120,11 +6319,10391,4564 +6320,174751,14359 +6321,1926,793 +6322,88042,7076 +6323,53739,784 +6324,18621,711 +6325,2976,2378 +6326,413547,80393 +6327,43473,4137 +6328,327383,50813 +6329,93350,10565 +6330,6972,289 +6331,54662,7307 +6332,10077,87848 +6333,126889,1645 +6334,210940,16733 +6335,47386,24259 +6336,31048,5113 +6337,3597,1464 +6338,47795,7254 +6339,21968,6194 +6340,121401,71158 +6341,86768,37648 +6342,63831,11921 +6343,53128,8943 +6344,258751,10015 +6345,27351,328 +6346,20107,2224 +6347,9079,306 +6348,27114,6 +6349,15468,22165 +6350,9904,58325 +6351,17241,76101 +6352,51739,11846 +6353,56533,6194 +6354,24426,4308 +6355,96132,23531 +6356,11472,436 +6357,67367,11911 +6358,298158,29493 +6359,122192,9066 +6360,811,23276 +6361,1723,441 +6362,32635,94763 +6363,35651,18367 +6364,181533,20478 +6365,302026,72665 +6366,5924,4928 +6367,9314,9998 +6368,57201,37382 +6369,25087,10354 +6370,157787,6896 +6371,444193,90077 +6372,17566,3341 +6373,43023,5094 +6374,38317,46222 +6375,25450,8856 +6376,40028,2760 +6377,75341,7911 +6378,2750,2452 +6379,9793,2890 +6380,290656,87826 +6381,43912,3470 +6382,10586,457 +6383,349028,59559 +6384,344170,79082 +6385,18467,23375 +6386,11321,1423 +6387,193650,5370 +6388,74525,19014 +6389,16993,441 +6390,601,33 +6391,53853,8411 +6392,40850,5820 +6393,3780,2680 +6394,347264,72414 +6395,46738,7272 +6396,16444,3192 +6397,271714,1246 +6398,302036,37955 +6399,27443,5426 +6400,40060,80761 +6401,244268,39024 +6402,99,82 +6403,101330,52921 +6404,27461,4 +6405,26149,53009 +6406,82501,11620 +6407,38962,1314 +6408,13728,83 +6409,45227,5120 +6410,121895,16772 +6411,42634,4051 +6412,59895,4928 +6413,27681,14585 +6414,56391,14599 +6415,43211,18283 +6416,212713,6194 +6417,63260,1131 +6418,15534,51597 +6419,8916,521 +6420,172972,3619 +6421,11917,2061 +6422,17057,441 +6423,182228,1371 +6424,24254,3496 +6425,4580,20846 +6426,36243,74807 +6427,7863,11840 +6428,84508,9303 +6429,376660,18 +6430,68360,3040 +6431,11930,1472 +6432,8852,33 +6433,11296,559 +6434,27224,13945 +6435,105077,3585 +6436,13312,2673 +6437,270015,5 +6438,62764,7295 +6439,64944,78505 +6440,15263,2532 +6441,47466,11586 +6442,578,33 +6443,345922,12 +6444,14137,68353 +6445,63773,29386 +6446,22779,60 +6447,117550,4799 +6448,98586,10073 +6449,225044,17091 +6450,9343,10869 +6451,198663,12292 +6452,71859,288 +6453,307649,42877 +6454,45019,58247 +6455,4703,1722 +6456,234868,2650 +6457,44661,4009 +6458,10011,94575 +6459,429174,191 +6460,41277,7828 +6461,319924,48861 +6462,11376,191 +6463,39358,11245 +6464,294254,3672 +6465,423377,22062 +6466,838,1 +6467,8584,9195 +6468,30709,8411 +6469,2990,10210 +6470,123109,7396 +6471,26955,94847 +6472,151509,83441 +6473,61578,718 +6474,118953,4395 +6475,1554,42043 +6476,28304,4 +6477,16432,44828 +6478,32932,5454 +6479,961,12190 +6480,126315,14532 +6481,330431,7435 +6482,858,559 +6483,262338,18230 +6484,41619,2192 +6485,15486,14591 +6486,10071,559 +6487,59935,76149 +6488,74510,40268 +6489,329440,69579 +6490,61578,591 +6491,1938,6 +6492,134238,6194 +6493,259358,4595 +6494,173662,306 +6495,290825,16301 +6496,61473,3235 +6497,256311,2352 +6498,40826,16428 +6499,49521,78685 +6500,35001,6 +6501,192558,3522 +6502,32601,12420 +6503,206296,20671 +6504,399219,32930 +6505,41552,8411 +6506,268321,5388 +6507,70074,7625 +6508,47200,318 +6509,348320,57851 +6510,230179,19639 +6511,55283,16424 +6512,10604,306 +6513,101669,18950 +6514,17654,20668 +6515,96713,6194 +6516,38982,5 +6517,354979,290 +6518,29286,33 +6519,126832,3324 +6520,461615,11671 +6521,106136,66209 +6522,56947,635 +6523,32021,2166 +6524,16066,3130 +6525,16074,12363 +6526,15013,7646 +6527,285946,4395 +6528,524,33 +6529,10611,8411 +6530,33556,5129 +6531,167,840 +6532,84228,26610 +6533,340027,42101 +6534,61049,4 +6535,38282,3578 +6536,266285,17748 +6537,284537,13240 +6538,60307,711 +6539,158015,18065 +6540,81182,248 +6541,43321,13700 +6542,348389,89545 +6543,7249,29500 +6544,27079,58565 +6545,39414,10559 +6546,216363,5070 +6547,9540,806 +6548,8332,2051 +6549,459295,59811 +6550,9613,22209 +6551,188468,6194 +6552,5559,1903 +6553,365065,66162 +6554,49850,2278 +6555,153854,26251 +6556,68123,1787 +6557,14372,4753 +6558,27703,12778 +6559,41759,12 +6560,19594,306 +6561,15616,813 +6562,17074,2785 +6563,15640,20793 +6564,91390,14 +6565,376252,11420 +6566,43808,8411 +6567,638,236 +6568,54523,15868 +6569,31344,9185 +6570,29492,4956 +6571,39001,4063 +6572,197089,310 +6573,10775,5552 +6574,233208,27127 +6575,18801,236 +6576,384450,74136 +6577,271404,10936 +6578,30973,10169 +6579,10947,3213 +6580,25143,1266 +6581,47794,75035 +6582,59408,74197 +6583,47739,6194 +6584,508,10163 +6585,12606,4 +6586,77922,68319 +6587,77010,7996 +6588,580,33 +6589,35856,23437 +6590,52122,4 +6591,1369,559 +6592,323370,3176 +6593,2135,27 +6594,19754,3671 +6595,89720,36785 +6596,76788,7990 +6597,210047,20313 +6598,17669,6438 +6599,5237,927 +6600,339148,14912 +6601,8776,2501 +6602,193387,9228 +6603,66756,5798 +6604,237672,63178 +6605,13986,1569 +6606,247500,19138 +6607,21752,11446 +6608,13486,4792 +6609,193756,22610 +6610,37932,22573 +6611,327982,21179 +6612,343283,7834 +6613,170234,8411 +6614,67162,3166 +6615,182127,2726 +6616,1969,3823 +6617,128089,21446 +6618,245891,491 +6619,177155,26106 +6620,655,1448 +6621,286873,24143 +6622,47794,14235 +6623,11159,236 +6624,102629,11647 +6625,9914,3495 +6626,35337,11561 +6627,11516,254 +6628,36960,63457 +6629,430365,2902 +6630,39176,41 +6631,245775,19037 +6632,67102,4581 +6633,88036,559 +6634,77079,1701 +6635,29896,36158 +6636,94739,73765 +6637,28071,4948 +6638,378485,81248 +6639,2259,118 +6640,36612,6194 +6641,49074,16434 +6642,26558,3052 +6643,23805,5 +6644,35651,5358 +6645,13436,6018 +6646,15464,3750 +6647,31011,2366 +6648,24634,33 +6649,382873,36748 +6650,38982,6313 +6651,245703,19246 +6652,10303,3470 +6653,91477,8411 +6654,17015,288 +6655,319999,73744 +6656,38404,5699 +6657,41164,6033 +6658,9102,7958 +6659,29952,74895 +6660,315664,892 +6661,94468,78039 +6662,345775,11795 +6663,28739,25947 +6664,9841,3294 +6665,29483,4958 +6666,322,79 +6667,47959,3502 +6668,254268,6720 +6669,39845,1208 +6670,30946,23587 +6671,26486,10227 +6672,329805,2612 +6673,216374,5357 +6674,23823,3635 +6675,136743,66079 +6676,97614,846 +6677,19918,4634 +6678,126516,5070 +6679,28417,310 +6680,10050,53009 +6681,20075,3741 +6682,8471,289 +6683,376501,79324 +6684,265208,972 +6685,53256,10947 +6686,356500,61922 +6687,14016,5632 +6688,148284,7135 +6689,9314,18947 +6690,124470,15160 +6691,34838,36765 +6692,47324,62478 +6693,16151,18722 +6694,88818,3324 +6695,59231,4051 +6696,194101,7281 +6697,3172,16061 +6698,120303,20974 +6699,67,4508 +6700,73775,13653 +6701,73775,5766 +6702,13842,6548 +6703,77875,10254 +6704,243683,2378 +6705,201124,5181 +6706,51434,23684 +6707,21208,1786 +6708,211139,35746 +6709,26503,11398 +6710,18392,21085 +6711,56601,19905 +6712,300155,11199 +6713,112304,23320 +6714,10087,15671 +6715,336845,6823 +6716,2009,73925 +6717,51357,13913 +6718,1497,2521 +6719,289010,31149 +6720,408537,6639 +6721,198663,8569 +6722,47943,744 +6723,47144,393 +6724,369603,12991 +6725,184578,70591 +6726,120747,6194 +6727,99567,14029 +6728,198130,17653 +6729,17644,91005 +6730,47003,4630 +6731,10797,13210 +6732,9703,10308 +6733,71329,7025 +6734,19552,18367 +6735,132122,10673 +6736,10948,3166 +6737,25919,2224 +6738,356842,50079 +6739,46513,3449 +6740,41283,5490 +6741,331962,49153 +6742,341745,2125 +6743,53857,8411 +6744,2143,984 +6745,14752,2934 +6746,390376,7157 +6747,10409,2081 +6748,93350,316 +6749,243935,44308 +6750,16342,3272 +6751,8342,85740 +6752,13374,19925 +6753,74777,24562 +6754,377587,45431 +6755,12476,3772 +6756,39358,6111 +6757,59678,9349 +6758,15734,4 +6759,26962,19528 +6760,9555,2948 +6761,18206,308 +6762,117251,34981 +6763,300,5358 +6764,37686,56 +6765,38303,9195 +6766,248087,3219 +6767,16938,3238 +6768,172828,1974 +6769,84569,8421 +6770,28527,865 +6771,334074,54409 +6772,197788,10852 +6773,28155,17069 +6774,55720,1089 +6775,57918,6126 +6776,8652,684 +6777,380731,13708 +6778,11172,79 +6779,241258,7437 +6780,11600,3097 +6781,399790,5056 +6782,88018,2 +6783,320910,35124 +6784,259358,588 +6785,48231,2728 +6786,14429,81132 +6787,80473,10348 +6788,52021,1370 +6789,53219,3166 +6790,58905,4 +6791,322443,21817 +6792,204765,19491 +6793,89008,1962 +6794,29786,4 +6795,102197,6453 +6796,32868,20729 +6797,133448,5996 +6798,19325,14 +6799,137145,68937 +6800,41360,21593 +6801,105539,76902 +6802,88273,320 +6803,2291,14723 +6804,36736,1538 +6805,44256,22397 +6806,18836,12527 +6807,84626,17385 +6808,63831,779 +6809,11058,18620 +6810,16652,87859 +6811,2262,16814 +6812,31003,15231 +6813,11354,12 +6814,31919,1010 +6815,208434,8411 +6816,347666,29566 +6817,103332,43 +6818,33472,10330 +6819,146322,542 +6820,28293,6 +6821,19335,5 +6822,18506,1558 +6823,105254,7445 +6824,263855,39703 +6825,53767,78246 +6826,42215,33 +6827,68737,40112 +6828,49524,552 +6829,476,251 +6830,57201,37381 +6831,2454,11440 +6832,44012,42044 +6833,251232,40540 +6834,47943,24476 +6835,242683,4 +6836,39938,6 +6837,1966,19116 +6838,284189,76733 +6839,76341,2537 +6840,124680,28273 +6841,276401,10425 +6842,276220,20769 +6843,345775,309 +6844,28417,11935 +6845,15036,6301 +6846,44027,5958 +6847,31472,1314 +6848,300601,9335 +6849,397365,79479 +6850,83185,72870 +6851,17238,13715 +6852,6976,16593 +6853,105,56 +6854,76788,7135 +6855,30943,441 +6856,316885,76345 +6857,49712,22806 +6858,2805,1240 +6859,42521,4660 +6860,19042,8411 +6861,20164,6339 +6862,32855,6194 +6863,3089,1317 +6864,369883,1632 +6865,15907,5329 +6866,146712,16442 +6867,36960,63458 +6868,28061,52537 +6869,151826,15671 +6870,14815,8411 +6871,255343,20339 +6872,108712,59620 +6873,96935,641 +6874,154537,16258 +6875,9885,6016 +6876,33015,12190 +6877,92285,5 +6878,31342,27 +6879,436343,11008 +6880,44257,278 +6881,103620,2577 +6882,34082,5409 +6883,326874,58534 +6884,87992,6159 +6885,75137,5171 +6886,170689,13319 +6887,3577,1479 +6888,28820,4269 +6889,342588,31058 +6890,15043,3018 +6891,11633,3360 +6892,22371,3213 +6893,324670,8858 +6894,74103,7749 +6895,10096,19636 +6896,300,9 +6897,1833,436 +6898,13794,50842 +6899,14527,806 +6900,308174,2254 +6901,32038,15979 +6902,13549,7508 +6903,152748,14636 +6904,58704,5542 +6905,31561,14029 +6906,27917,14377 +6907,36335,4927 +6908,376047,72730 +6909,210910,29365 +6910,42216,35140 +6911,337107,11921 +6912,34840,18367 +6913,10077,1403 +6914,75300,8081 +6915,14979,10254 +6916,75174,11278 +6917,32038,20178 +6918,46368,22934 +6919,329712,4176 +6920,61984,12384 +6921,193435,4928 +6922,985,17877 +6923,29825,126 +6924,2567,19116 +6925,333091,3572 +6926,270403,74575 +6927,36758,31080 +6928,346443,15316 +6929,200727,1266 +6930,369033,18852 +6931,53256,1972 +6932,638,373 +6933,14419,2908 +6934,8014,6586 +6935,241927,61411 +6936,46145,77826 +6937,10204,19481 +6938,37308,8425 +6939,176,23019 +6940,413279,420 +6941,29117,6194 +6942,1691,1633 +6943,15189,27 +6944,8882,2683 +6945,53358,38016 +6946,41599,306 +6947,39781,10161 +6948,37817,13969 +6949,4887,1760 +6950,10796,48772 +6951,112973,1382 +6952,85435,7584 +6953,177566,1311 +6954,85648,33 +6955,1443,70 +6956,78364,5 +6957,190955,5358 +6958,18613,805 +6959,9890,2609 +6960,27621,2 +6961,369406,29506 +6962,215928,28602 +6963,1561,6116 +6964,11362,7693 +6965,12289,656 +6966,65035,5171 +6967,11704,90400 +6968,76200,2508 +6969,540,769 +6970,63493,21901 +6971,10047,5 +6972,23107,6194 +6973,14878,2984 +6974,69,86 +6975,921,23 +6976,57816,22467 +6977,11358,23940 +6978,68050,46391 +6979,50549,306 +6980,3291,14175 +6981,399798,21683 +6982,85656,22875 +6983,347127,57029 +6984,352186,10255 +6985,46992,718 +6986,114982,5358 +6987,8471,54651 +6988,43882,11865 +6989,1640,25432 +6990,228290,20416 +6991,10320,7 +6992,104172,37985 +6993,122081,17719 +6994,37645,6896 +6995,44155,1115 +6996,4344,2091 +6997,38317,8411 +6998,72199,14599 +6999,54662,7306 +7000,18530,23487 +7001,103396,11901 +7002,202241,3268 +7003,371462,5353 +7004,11959,19029 +7005,16077,694 +7006,319073,7281 +7007,316154,13184 +7008,20357,288 +7009,408537,9974 +7010,284013,28443 +7011,19209,441 +7012,58547,34035 +7013,44932,15673 +7014,9016,10217 +7015,9827,14 +7016,83114,17365 +7017,316042,72933 +7018,54796,4056 +7019,76600,22213 +7020,57209,8549 +7021,2565,56 +7022,195796,17811 +7023,10077,16850 +7024,630,31892 +7025,190341,18190 +7026,406449,76035 +7027,52270,306 +7028,20983,3876 +7029,15022,21026 +7030,181533,306 +7031,53406,5109 +7032,76609,4176 +7033,158598,12719 +7034,44115,9349 +7035,85009,35839 +7036,11172,19813 +7037,339530,17009 +7038,493,12145 +7039,285245,16498 +7040,9613,46695 +7041,30363,4606 +7042,121998,2441 +7043,82368,8894 +7044,455661,18359 +7045,14527,19090 +7046,82687,6277 +7047,82687,4 +7048,213681,1756 +7049,153141,6098 +7050,92269,53785 +7051,9667,846 +7052,18747,3029 +7053,310568,74857 +7054,14489,3681 +7055,158990,318 +7056,301875,41077 +7057,77625,26688 +7058,360603,64216 +7059,88005,10039 +7060,253337,21591 +7061,62978,20550 +7062,26505,5358 +7063,91690,6519 +7064,7445,11370 +7065,408203,29062 +7066,58309,42202 +7067,84336,5267 +7068,116312,1183 +7069,28938,336 +7070,342917,2785 +7071,190955,34782 +7072,91961,6194 +7073,167021,10769 +7074,122019,18010 +7075,226354,10283 +7076,89492,10105 +7077,8014,13198 +7078,32043,33 +7079,43016,35265 +7080,215741,48689 +7081,71700,1676 +7082,17745,915 +7083,201765,10130 +7084,76059,12042 +7085,4762,1407 +7086,253235,97 +7087,2274,306 +7088,166076,2785 +7089,482,8411 +7090,312831,67259 +7091,20123,3719 +7092,58462,11952 +7093,19812,3676 +7094,258480,1422 +7095,28303,7698 +7096,105325,6125 +7097,18741,8039 +7098,248469,16628 +7099,309809,60658 +7100,359412,3604 +7101,84626,888 +7102,10033,94719 +7103,5899,88920 +7104,125623,591 +7105,286567,290 +7106,1116,12696 +7107,198795,73800 +7108,103620,5358 +7109,9717,8775 +7110,33851,8888 +7111,9885,6017 +7112,14137,2870 +7113,255491,20990 +7114,159770,72063 +7115,351242,18346 +7116,218508,5906 +7117,82679,4 +7118,117534,7762 +7119,41831,41 +7120,25626,14714 +7121,125945,94 +7122,83666,25626 +7123,246741,2372 +7124,190955,34774 +7125,378446,591 +7126,21052,1811 +7127,61341,5122 +7128,209271,13045 +7129,42345,64771 +7130,38317,8000 +7131,10070,48688 +7132,9541,267 +7133,16560,3195 +7134,17170,67823 +7135,291413,11565 +7136,129115,81895 +7137,168259,40890 +7138,34449,3280 +7139,8899,2695 +7140,398786,69640 +7141,246127,17513 +7142,2295,308 +7143,2140,306 +7144,73043,2788 +7145,111759,4203 +7146,431093,84651 +7147,33511,1267 +7148,52047,5070 +7149,375199,19145 +7150,1634,6194 +7151,363579,88030 +7152,73262,22787 +7153,283384,29099 +7154,443319,1645 +7155,159514,28103 +7156,14476,2917 +7157,326874,7673 +7158,105153,18758 +7159,41886,73461 +7160,693,11391 +7161,12683,23462 +7162,20106,22355 +7163,269494,50998 +7164,157384,26953 +7165,38874,7007 +7166,15616,10405 +7167,29111,9384 +7168,199373,30023 +7169,128246,11592 +7170,5289,26147 +7171,43346,14377 +7172,35826,17069 +7173,320318,4176 +7174,14295,11351 +7175,109610,806 +7176,35392,6194 +7177,130739,1747 +7178,32546,45190 +7179,293167,6194 +7180,43828,33 +7181,41054,18272 +7182,374461,82598 +7183,42216,1704 +7184,20210,185 +7185,14923,17106 +7186,122698,4 +7187,22279,5996 +7188,186991,7117 +7189,49018,21742 +7190,1903,349 +7191,43075,3245 +7192,256740,20307 +7193,655,36229 +7194,693,2242 +7195,345489,55968 +7196,45156,5801 +7197,33336,22396 +7198,11011,6194 +7199,30929,5 +7200,113638,8411 +7201,76333,6538 +7202,376047,2320 +7203,337012,51831 +7204,96702,5488 +7205,5257,1066 +7206,353595,2785 +7207,148327,13316 +7208,13946,51360 +7209,30174,5023 +7210,921,631 +7211,86297,13689 +7212,38043,927 +7213,572,328 +7214,179154,11006 +7215,84071,1988 +7216,11298,494 +7217,9959,497 +7218,433244,8858 +7219,481,256 +7220,33314,3996 +7221,14369,158 +7222,40041,17958 +7223,102949,4780 +7224,12276,2798 +7225,82990,21223 +7226,154371,19742 +7227,124042,24365 +7228,315837,17449 +7229,10351,21084 +7230,140,9335 +7231,1715,1693 +7232,59419,66350 +7233,20017,1001 +7234,10740,8 +7235,105833,9181 +7236,117120,17700 +7237,339408,53155 +7238,18897,11920 +7239,43741,288 +7240,218508,3341 +7241,33923,4 +7242,1991,10807 +7243,104954,1701 +7244,149657,82249 +7245,97630,5 +7246,311301,10343 +7247,23048,60 +7248,407559,4080 +7249,10008,4298 +7250,25241,13099 +7251,9366,559 +7252,28732,826 +7253,47119,83 +7254,34506,3268 +7255,362682,64858 +7256,101838,2817 +7257,17473,3331 +7258,83729,4340 +7259,61991,63893 +7260,270383,10969 +7261,207270,46844 +7262,78572,745 +7263,27791,56396 +7264,349441,66512 +7265,194,592 +7266,371741,32243 +7267,43829,306 +7268,205864,71981 +7269,109886,441 +7270,296192,1538 +7271,14047,308 +7272,9474,1639 +7273,11004,762 +7274,175035,8411 +7275,165095,4484 +7276,383064,7463 +7277,864,5888 +7278,14076,2858 +7279,91186,5686 +7280,72207,6452 +7281,11328,12413 +7282,38237,10348 +7283,439998,3920 +7284,110115,7281 +7285,239513,8335 +7286,238952,6116 +7287,339116,80884 +7288,2021,271 +7289,255343,7561 +7290,5638,3276 +7291,52713,635 +7292,56947,23119 +7293,18897,12030 +7294,205584,72441 +7295,122930,8135 +7296,147618,4 +7297,9613,46694 +7298,14210,19616 +7299,9966,771 +7300,244403,23031 +7301,87936,660 +7302,10139,10146 +7303,33343,7300 +7304,17692,79415 +7305,405882,36685 +7306,15267,4923 +7307,5155,1874 +7308,258193,2253 +7309,4592,30257 +7310,103012,84844 +7311,198130,9 +7312,394723,39257 +7313,20438,10565 +7314,12103,33433 +7315,56154,8411 +7316,63281,21163 +7317,321779,63051 +7318,78802,70801 +7319,866,14 +7320,98582,7342 +7321,102362,10339 +7322,17614,93095 +7323,11247,46051 +7324,421365,35267 +7325,20108,14680 +7326,3144,1332 +7327,442949,86881 +7328,63831,11923 +7329,403450,29223 +7330,48852,42040 +7331,414910,81186 +7332,445,11389 +7333,16523,5289 +7334,18079,7100 +7335,7515,2262 +7336,85516,28323 +7337,76544,22340 +7338,47459,12731 +7339,47795,10769 +7340,27543,59666 +7341,10075,8411 +7342,176627,6194 +7343,39056,73443 +7344,11837,494 +7345,9471,5 +7346,67509,2318 +7347,73262,22788 +7348,390,8366 +7349,229134,8500 +7350,52637,1249 +7351,271718,6452 +7352,9563,6194 +7353,213681,7295 +7354,8049,2318 +7355,64627,4606 +7356,12158,4 +7357,936,60 +7358,279332,52669 +7359,27085,4630 +7360,152736,8924 +7361,22471,2302 +7362,209112,9993 +7363,135799,12424 +7364,55731,559 +7365,42703,11585 +7366,32904,85309 +7367,6081,60 +7368,59434,8423 +7369,68750,5388 +7370,47342,90020 +7371,84284,8469 +7372,38099,3055 +7373,369885,4 +7374,62761,17966 +7375,10550,1403 +7376,796,505 +7377,118257,875 +7378,104700,45867 +7379,83079,1377 +7380,166262,1429 +7381,3059,1307 +7382,29835,8411 +7383,146730,16874 +7384,109614,4056 +7385,192675,3781 +7386,28263,1444 +7387,222872,30376 +7388,43089,15100 +7389,44233,87807 +7390,2293,37 +7391,317720,43900 +7392,41970,31596 +7393,11377,6194 +7394,82817,850 +7395,31597,559 +7396,42787,20615 +7397,2046,126 +7398,217341,6677 +7399,38150,707 +7400,148265,44160 +7401,13526,11371 +7402,63764,1723 +7403,316042,11517 +7404,24469,1049 +7405,219466,64479 +7406,42701,38111 +7407,255160,30531 +7408,8342,85743 +7409,56151,4167 +7410,19901,4024 +7411,44741,1496 +7412,110608,33276 +7413,97365,10611 +7414,127380,3 +7415,10647,788 +7416,18673,3522 +7417,75595,10479 +7418,296029,34478 +7419,43489,60 +7420,341077,62265 +7421,159138,22532 +7422,13805,7571 +7423,353326,80469 +7424,376047,72731 +7425,56292,76043 +7426,47715,46391 +7427,245168,2054 +7428,42623,4051 +7429,387558,78697 +7430,935,88 +7431,104776,38972 +7432,282069,6452 +7433,11137,35 +7434,107811,8852 +7435,19017,306 +7436,42057,7621 +7437,340101,62230 +7438,155325,76499 +7439,395883,27753 +7440,92391,7353 +7441,26864,89299 +7442,36212,622 +7443,43432,18552 +7444,61528,288 +7445,87827,10893 +7446,164331,1020 +7447,149511,12838 +7448,330770,76446 +7449,2907,4 +7450,10433,18736 +7451,10400,33 +7452,59419,6831 +7453,10710,172 +7454,5460,506 +7455,152948,5120 +7456,62213,8601 +7457,1813,824 +7458,10394,52926 +7459,114444,7281 +7460,291871,8924 +7461,19625,3781 +7462,747,9349 +7463,42987,4894 +7464,47889,75712 +7465,24886,9074 +7466,11161,2644 +7467,4012,14159 +7468,27417,1360 +7469,142979,10882 +7470,44527,2700 +7471,98025,1701 +7472,49963,3644 +7473,20963,9342 +7474,251232,18852 +7475,279543,5120 +7476,267935,56 +7477,211220,10864 +7478,12645,2157 +7479,13333,2521 +7480,179154,11005 +7481,27904,61202 +7482,313896,29133 +7483,25038,24093 +7484,226632,21208 +7485,35,18 +7486,1819,59957 +7487,9667,827 +7488,256740,20306 +7489,24927,74791 +7490,2084,9349 +7491,228290,3110 +7492,29094,306 +7493,147106,893 +7494,339944,17692 +7495,344120,8728 +7496,34588,13969 +7497,2721,72 +7498,85435,1013 +7499,43645,371 +7500,347106,33817 +7501,42764,8694 +7502,982,60 +7503,174751,13242 +7504,157847,20848 +7505,194722,16647 +7506,14457,3911 +7507,25768,12190 +7508,3053,1138 +7509,1377,4 +7510,59419,66349 +7511,228970,93542 +7512,96106,4940 +7513,21711,8776 +7514,2887,7429 +7515,19688,5515 +7516,19971,11114 +7517,37100,5542 +7518,266082,7980 +7519,59678,2452 +7520,337339,333 +7521,379297,6345 +7522,329289,17393 +7523,103947,18776 +7524,44115,10892 +7525,188161,31470 +7526,368006,55821 +7527,157117,48177 +7528,54898,25818 +7529,18684,13219 +7530,268920,6194 +7531,167874,1465 +7532,61578,729 +7533,43811,21 +7534,244610,25702 +7535,246655,78091 +7536,399894,25262 +7537,10776,6194 +7538,14705,3513 +7539,338729,49096 +7540,42168,5 +7541,4592,51762 +7542,105352,22518 +7543,15982,4357 +7544,146243,11029 +7545,245950,18970 +7546,71329,75514 +7547,15764,964 +7548,15534,51596 +7549,31532,4 +7550,271404,87026 +7551,15794,6194 +7552,8080,4 +7553,63096,8411 +7554,954,44 +7555,141,2214 +7556,101325,33199 +7557,12994,2721 +7558,330711,2161 +7559,262454,11790 +7560,103597,6111 +7561,14128,40148 +7562,18774,35265 +7563,82485,23771 +7564,9899,145 +7565,14703,8411 +7566,13954,3295 +7567,353326,6455 +7568,68050,37353 +7569,5618,7961 +7570,312831,19638 +7571,28044,306 +7572,28597,33 +7573,36519,8411 +7574,10326,6194 +7575,33436,1216 +7576,13358,774 +7577,276220,13413 +7578,23223,272 +7579,8471,2137 +7580,68737,20478 +7581,10897,56 +7582,5922,4 +7583,421958,10947 +7584,42517,1950 +7585,634,11358 +7586,26299,10463 +7587,233639,9336 +7588,96888,29725 +7589,9425,2596 +7590,22398,4090 +7591,11129,2920 +7592,57866,4 +7593,114790,12372 +7594,3784,4 +7595,270899,32327 +7596,42307,7584 +7597,2742,1201 +7598,14688,6844 +7599,34615,89840 +7600,10008,3533 +7601,14254,829 +7602,22471,4524 +7603,57201,37380 +7604,424600,21864 +7605,227975,8580 +7606,58547,27050 +7607,318224,2740 +7608,11397,2882 +7609,28026,23719 +7610,153165,8411 +7611,75623,4052 +7612,1811,1474 +7613,32628,12190 +7614,63681,44614 +7615,45610,9137 +7616,21060,3897 +7617,184267,4 +7618,15560,3447 +7619,41556,6691 +7620,152100,31077 +7621,5491,6194 +7622,340488,44225 +7623,38359,5120 +7624,29290,8411 +7625,176143,6 +7626,71805,2 +7627,1481,92031 +7628,67499,2345 +7629,157305,17700 +7630,67018,4268 +7631,18098,31060 +7632,21849,4299 +7633,11862,9195 +7634,1165,16804 +7635,437752,59811 +7636,25060,1360 +7637,8619,33 +7638,16412,3737 +7639,366630,14987 +7640,62033,4802 +7641,367006,2396 +7642,329819,15671 +7643,9885,1380 +7644,125548,1483 +7645,14882,5200 +7646,19181,44438 +7647,67102,91620 +7648,242310,22347 +7649,9483,756 +7650,11259,23 +7651,312831,67258 +7652,38883,4696 +7653,69,84 +7654,13701,5 +7655,32546,6639 +7656,49852,24013 +7657,1259,284 +7658,16358,25918 +7659,41963,8411 +7660,9425,248 +7661,180759,62412 +7662,125926,7446 +7663,13507,2951 +7664,20650,21555 +7665,8128,2329 +7666,333484,1423 +7667,48706,5 +7668,37340,13665 +7669,26326,1950 +7670,10770,3920 +7671,14787,6194 +7672,85435,18988 +7673,13072,136 +7674,124633,16975 +7675,58013,57747 +7676,94725,22836 +7677,41171,37498 +7678,288313,30817 +7679,191820,33199 +7680,408024,20663 +7681,60935,655 +7682,31911,16827 +7683,13678,844 +7684,346672,3287 +7685,236324,20485 +7686,114790,8219 +7687,11472,306 +7688,218443,318 +7689,2,2303 +7690,44718,6717 +7691,59726,1314 +7692,85430,39820 +7693,264644,2335 +7694,14907,5856 +7695,393562,7435 +7696,19336,70472 +7697,15,11447 +7698,153717,21016 +7699,25376,7680 +7700,33786,5353 +7701,302528,805 +7702,73562,8512 +7703,352186,59663 +7704,403,6194 +7705,215646,48663 +7706,264560,39022 +7707,19501,61007 +7708,40208,35915 +7709,278901,6759 +7710,13640,429 +7711,14868,3010 +7712,11234,19972 +7713,53172,7193 +7714,72032,1521 +7715,448847,20783 +7716,145247,28005 +7717,1259,289 +7718,84184,598 +7719,60599,24934 +7720,29054,4688 +7721,18575,58225 +7722,19552,25818 +7723,291351,41077 +7724,24828,5 +7725,65777,4006 +7726,74942,12828 +7727,10872,10288 +7728,25807,15957 +7729,21242,12266 +7730,19398,53824 +7731,59401,8411 +7732,15089,7192 +7733,14226,5945 +7734,79382,8157 +7735,181454,85313 +7736,377691,155 +7737,12182,5 +7738,83361,55665 +7739,211,402 +7740,31347,6999 +7741,43868,306 +7742,340103,49724 +7743,271718,33 +7744,76333,7344 +7745,175998,11735 +7746,104193,9182 +7747,380124,6567 +7748,26422,4506 +7749,419601,82096 +7750,53851,306 +7751,33427,4082 +7752,367492,67498 +7753,4380,14 +7754,29212,4918 +7755,121848,6194 +7756,123103,10246 +7757,985,12226 +7758,71266,83124 +7759,82708,2067 +7760,127564,8411 +7761,17771,3385 +7762,158739,2828 +7763,377516,72341 +7764,359245,26590 +7765,10077,2982 +7766,299,6194 +7767,20941,59 +7768,63401,512 +7769,85883,13311 +7770,296750,29716 +7771,63538,18684 +7772,284620,28798 +7773,60965,6875 +7774,9945,5 +7775,9503,6246 +7776,1859,8411 +7777,935,441 +7778,18586,14645 +7779,72313,13499 +7780,31244,90401 +7781,361025,69882 +7782,51548,6517 +7783,31262,55461 +7784,38808,10330 +7785,13507,15671 +7786,27523,12240 +7787,296344,22155 +7788,33704,83 +7789,53064,77004 +7790,330770,76447 +7791,107073,15903 +7792,221667,12096 +7793,19996,25410 +7794,93856,1088 +7795,253395,6339 +7796,264080,2166 +7797,54318,497 +7798,329440,32300 +7799,408024,21996 +7800,3104,1314 +7801,201676,2598 +7802,157343,6194 +7803,27102,223 +7804,256561,14253 +7805,317557,3166 +7806,121824,126 +7807,45671,720 +7808,655,181 +7809,35651,21972 +7810,58244,53497 +7811,64304,5798 +7812,40662,2785 +7813,347031,77939 +7814,109477,54957 +7815,70874,12617 +7816,96793,18170 +7817,165,56 +7818,20242,10201 +7819,693,27 +7820,10929,12 +7821,166886,74959 +7822,55347,6531 +7823,13954,2786 +7824,45215,306 +7825,90616,15086 +7826,284362,28638 +7827,261439,5996 +7828,24266,306 +7829,19403,12253 +7830,310119,14036 +7831,50512,6194 +7832,18634,5494 +7833,34588,93187 +7834,10077,1171 +7835,337876,1892 +7836,326,12 +7837,60199,373 +7838,28261,8411 +7839,49852,24014 +7840,79218,11749 +7841,51994,37676 +7842,10929,48772 +7843,27873,26769 +7844,241258,3172 +7845,4988,60 +7846,59147,2441 +7847,30143,882 +7848,234862,21019 +7849,76203,508 +7850,27904,78242 +7851,72207,23876 +7852,116488,7036 +7853,170689,13318 +7854,38027,10308 +7855,270015,19913 +7856,1381,508 +7857,12593,89283 +7858,53209,8411 +7859,16058,3125 +7860,26826,4595 +7861,866,560 +7862,83459,5120 +7863,38594,5542 +7864,66109,20943 +7865,322614,45436 +7866,63584,21978 +7867,388764,6950 +7868,270336,14418 +7869,262841,2348 +7870,239018,3282 +7871,272878,5219 +7872,98289,441 +7873,58060,22393 +7874,261439,119 +7875,18387,6128 +7876,42149,6194 +7877,390777,29060 +7878,54146,3212 +7879,110598,3978 +7880,53524,48266 +7881,96552,41816 +7882,17927,16946 +7883,332354,59407 +7884,275065,15419 +7885,15414,7817 +7886,2742,88919 +7887,8471,2506 +7888,53870,5003 +7889,112961,68155 +7890,32716,5488 +7891,9667,1208 +7892,33172,33 +7893,45964,2124 +7894,41857,306 +7895,27012,8441 +7896,15979,3124 +7897,140825,1398 +7898,38237,4 +7899,293982,44464 +7900,26505,3823 +7901,218778,2 +7902,38164,44406 +7903,84727,34204 +7904,100110,3146 +7905,14295,68304 +7906,664,33 +7907,27549,1113 +7908,15264,6 +7909,402455,5822 +7910,10703,2965 +7911,46924,79560 +7912,857,4 +7913,11428,23309 +7914,88273,6417 +7915,366631,4598 +7916,47848,43711 +7917,132363,695 +7918,143946,5070 +7919,82313,62411 +7920,7210,736 +7921,21627,441 +7922,18051,3437 +7923,11535,8411 +7924,23385,7276 +7925,47715,78552 +7926,261037,738 +7927,50942,2230 +7928,30508,2387 +7929,33273,2674 +7930,58244,2577 +7931,185111,80198 +7932,17609,11237 +7933,3173,87466 +7934,411221,82853 +7935,50838,24178 +7936,30583,3221 +7937,21041,1929 +7938,210940,91360 +7939,144680,12069 +7940,33305,15102 +7941,18214,56811 +7942,245700,45503 +7943,286545,29822 +7944,11307,8792 +7945,146238,7420 +7946,4191,1216 +7947,158150,21041 +7948,330770,76444 +7949,72710,12075 +7950,19725,10265 +7951,27351,4673 +7952,31078,6529 +7953,11137,4 +7954,142391,10890 +7955,430826,2813 +7956,31244,90402 +7957,81937,4270 +7958,8128,2331 +7959,13185,6359 +7960,348320,72733 +7961,4248,7405 +7962,53524,486 +7963,35651,23446 +7964,71725,5940 +7965,142145,38925 +7966,399894,25263 +7967,138522,7025 +7968,345775,10611 +7969,52369,7346 +7970,329550,75378 +7971,37779,9 +7972,7555,20363 +7973,15577,22747 +7974,205891,15312 +7975,200324,36191 +7976,94348,491 +7977,44693,4788 +7978,19187,7480 +7979,14295,691 +7980,117026,13739 +7981,275269,44163 +7982,52203,10939 +7983,395992,5 +7984,5494,8900 +7985,32044,41310 +7986,266102,75564 +7987,36288,6651 +7988,11440,44224 +7989,43407,6194 +7990,18893,37764 +7991,30061,429 +7992,9673,47 +7993,146,2269 +7994,75090,20744 +7995,81522,10000 +7996,394645,12118 +7997,142746,13852 +7998,312221,12 +7999,16921,18667 +8000,59297,29177 +8001,108048,37246 +8002,55152,14149 +8003,403130,78619 +8004,298695,36057 +8005,283686,12142 +8006,205584,3528 +8007,31618,60 +8008,31273,73861 +8009,263260,64510 +8010,356161,69288 +8011,19336,622 +8012,122709,5488 +8013,9563,4198 +8014,48488,10473 +8015,11697,10698 +8016,764,467 +8017,313074,20277 +8018,302528,2254 +8019,10992,79 +8020,11635,27 +8021,37481,4388 +8022,63859,66722 +8023,45505,13411 +8024,12311,8411 +8025,334394,12142 +8026,234377,6194 +8027,9779,813 +8028,64454,5982 +8029,159824,5 +8030,37292,306 +8031,255343,19037 +8032,58166,191 +8033,182499,21084 +8034,13807,5632 +8035,51349,5306 +8036,70133,3649 +8037,20357,17449 +8038,233487,21570 +8039,2259,850 +8040,335053,6639 +8041,316154,90733 +8042,27053,14550 +8043,44283,1487 +8044,14123,41669 +8045,269494,11430 +8046,6687,12371 +8047,300155,1267 +8048,365339,66386 +8049,16015,235 +8050,131739,40521 +8051,98203,7008 +8052,89325,53303 +8053,76703,10651 +8054,92257,14550 +8055,284306,46421 +8056,49559,5358 +8057,44006,16355 +8058,170677,20151 +8059,422550,21206 +8060,92496,8101 +8061,28732,285 +8062,11091,5 +8063,7515,769 +8064,336004,67778 +8065,49920,17172 +8066,1271,2995 +8067,199155,4928 +8068,8277,134 +8069,259075,23709 +8070,31542,4990 +8071,315362,8267 +8072,16281,14180 +8073,110608,3252 +8074,20200,694 +8075,20106,9 +8076,341491,166 +8077,42599,2102 +8078,17445,429 +8079,121929,83545 +8080,7085,168 +8081,10703,4617 +8082,30669,368 +8083,18128,3268 +8084,43489,13479 +8085,32029,15980 +8086,70864,1679 +8087,58985,691 +8088,12289,3491 +8089,21711,6194 +8090,159005,14914 +8091,328429,78178 +8092,76864,1728 +8093,267793,62765 +8094,31397,1444 +8095,44449,45867 +8096,210913,404 +8097,26873,3681 +8098,18405,773 +8099,38874,4526 +8100,48319,43793 +8101,60269,5971 +8102,63498,6778 +8103,29236,8411 +8104,94671,11005 +8105,35623,13283 +8106,95134,4 +8107,167424,1618 +8108,26969,63713 +8109,48339,4589 +8110,54287,6177 +8111,85196,17911 +8112,318973,10479 +8113,79775,33666 +8114,104275,2329 +8115,10727,21840 +8116,107073,53494 +8117,69065,21459 +8118,1116,2274 +8119,215646,51102 +8120,128237,16813 +8121,67,7307 +8122,48874,7898 +8123,43522,6194 +8124,19731,1950 +8125,127864,6916 +8126,18045,64574 +8127,54022,236 +8128,301875,14446 +8129,9539,5358 +8130,51141,6181 +8131,461955,91393 +8132,48594,9335 +8133,12540,33 +8134,18148,5070 +8135,267793,35761 +8136,80320,306 +8137,230182,4928 +8138,205864,7255 +8139,325039,9340 +8140,13358,1975 +8141,6948,24159 +8142,12697,4968 +8143,2080,9076 +8144,58309,694 +8145,194853,93202 +8146,2087,33 +8147,181456,6881 +8148,29313,4929 +8149,7916,6357 +8150,59249,58254 +8151,121791,5358 +8152,437752,49261 +8153,258251,5706 +8154,37213,4641 +8155,13390,5321 +8156,6934,75880 +8157,44669,441 +8158,59726,7310 +8159,29903,5462 +8160,30941,441 +8161,16331,3268 +8162,68163,12 +8163,46857,6153 +8164,17692,4904 +8165,8398,1268 +8166,37003,80711 +8167,15092,126 +8168,42456,5 +8169,284564,49152 +8170,43757,11840 +8171,3638,79 +8172,25376,6458 +8173,86979,5579 +8174,16082,5 +8175,126676,6519 +8176,3291,11509 +8177,256474,3635 +8178,351901,10339 +8179,49158,47821 +8180,315335,1706 +8181,83079,14529 +8182,45211,10560 +8183,14452,10399 +8184,148615,75575 +8185,16890,23058 +8186,32428,6470 +8187,47046,75135 +8188,18899,189 +8189,199615,18367 +8190,159166,500 +8191,284564,20277 +8192,88557,33 +8193,43388,8411 +8194,335778,10285 +8195,16563,8411 +8196,42739,181 +8197,48118,6288 +8198,156,223 +8199,25037,14029 +8200,86647,4856 +8201,322922,21139 +8202,13391,9149 +8203,84892,2130 +8204,10744,1420 +8205,101669,12007 +8206,35129,5526 +8207,18898,744 +8208,231145,2953 +8209,5237,12745 +8210,50329,3245 +8211,128237,52436 +8212,187022,1079 +8213,43878,44715 +8214,229638,6194 +8215,51581,3214 +8216,190955,856 +8217,270774,79733 +8218,174946,31782 +8219,15356,5574 +8220,10201,6194 +8221,301875,33769 +8222,13258,2243 +8223,10596,2188 +8224,9902,24212 +8225,341559,20915 +8226,371446,71910 +8227,64398,1704 +8228,378503,20037 +8229,295964,215 +8230,15,6 +8231,7555,925 +8232,280840,18786 +8233,1116,19933 +8234,11880,16921 +8235,18736,89603 +8236,151826,16804 +8237,124414,18370 +8238,97936,4051 +8239,3172,13816 +8240,339408,13240 +8241,161545,2683 +8242,73872,10101 +8243,47200,3623 +8244,118098,5231 +8245,71503,4952 +8246,36113,74695 +8247,7210,201 +8248,85602,78973 +8249,8080,126 +8250,10539,1755 +8251,99599,6673 +8252,2115,965 +8253,124202,10519 +8254,87827,290 +8255,186585,77803 +8256,32058,41 +8257,100910,6 +8258,87148,18056 +8259,57103,306 +8260,100275,806 +8261,318224,17980 +8262,58918,10933 +8263,21742,3447 +8264,97206,27501 +8265,34334,6194 +8266,63493,21899 +8267,44155,616 +8268,70313,4928 +8269,83430,12342 +8270,156326,7448 +8271,42515,441 +8272,8985,706 +8273,314420,43351 +8274,9099,23 +8275,114779,38396 +8276,176,35 +8277,31978,5174 +8278,374021,12093 +8279,44022,60 +8280,16899,2650 +8281,199373,10405 +8282,74430,494 +8283,178341,6194 +8284,131194,364 +8285,167707,16276 +8286,9385,7964 +8287,14823,25794 +8288,4443,80445 +8289,170279,62711 +8290,8942,1360 +8291,70074,12075 +8292,29568,1247 +8293,3037,138 +8294,961,13913 +8295,9877,11317 +8296,104376,5982 +8297,257345,55265 +8298,13333,3526 +8299,228496,26648 +8300,158015,729 +8301,348611,58091 +8302,26798,559 +8303,310593,83 +8304,118737,21745 +8305,52827,306 +8306,40220,52704 +8307,126090,26106 +8308,2613,306 +8309,8194,2292 +8310,42149,14150 +8311,190955,11261 +8312,44751,7611 +8313,13062,3 +8314,60994,14 +8315,343283,17544 +8316,15414,4794 +8317,188927,69484 +8318,11888,2 +8319,11048,14074 +8320,332872,44602 +8321,316154,17209 +8322,38850,826 +8323,78256,5 +8324,168031,306 +8325,271677,93020 +8326,2687,5358 +8327,13056,11533 +8328,360737,20326 +8329,3638,7747 +8330,39356,2372 +8331,10529,2366 +8332,14518,6554 +8333,312174,6760 +8334,60420,21892 +8335,30082,54036 +8336,61984,7912 +8337,27446,21159 +8338,274857,79 +8339,92809,56289 +8340,142478,10202 +8341,118,80 +8342,33563,21317 +8343,26946,13751 +8344,38269,9266 +8345,295748,47502 +8346,107073,56477 +8347,1662,761 +8348,332283,5122 +8349,31586,5 +8350,84479,3040 +8351,363807,16442 +8352,78789,7466 +8353,20301,306 +8354,284343,76756 +8355,117506,5552 +8356,63831,11919 +8357,49271,45867 +8358,51999,698 +8359,14047,3298 +8360,312497,88463 +8361,332827,16401 +8362,342765,11240 +8363,38783,9228 +8364,52440,8411 +8365,15838,5674 +8366,26864,9974 +8367,177271,79557 +8368,124075,16843 +8369,11330,17516 +8370,27717,4704 +8371,24795,2 +8372,294483,25828 +8373,12697,6194 +8374,162374,17469 +8375,37305,3077 +8376,96936,3012 +8377,9423,33 +8378,144229,364 +8379,132608,13969 +8380,329289,37567 +8381,5721,24108 +8382,14052,79025 +8383,155765,6452 +8384,18908,9372 +8385,86732,56056 +8386,46494,60 +8387,17003,94624 +8388,7972,2287 +8389,131739,40523 +8390,373397,16422 +8391,11232,14 +8392,26679,4558 +8393,49521,9996 +8394,2017,4298 +8395,10484,1524 +8396,9252,74683 +8397,17241,5003 +8398,125264,4641 +8399,57781,19211 +8400,13956,10160 +8401,102155,78243 +8402,621,4 +8403,348601,12178 +8404,125945,9209 +8405,24993,4255 +8406,257081,306 +8407,29444,37 +8408,22029,17069 +8409,378018,12142 +8410,362617,64815 +8411,7445,11371 +8412,126415,4784 +8413,43419,4 +8414,13496,10210 +8415,326045,11045 +8416,13105,306 +8417,47559,7495 +8418,31083,316 +8419,38618,10566 +8420,286512,83 +8421,286567,49983 +8422,14979,4741 +8423,39310,4319 +8424,84333,4306 +8425,12171,3121 +8426,32825,45228 +8427,50838,806 +8428,76600,306 +8429,28665,60 +8430,16900,3232 +8431,24757,23462 +8432,444193,90076 +8433,524,11583 +8434,332872,49 +8435,109466,7954 +8436,244316,3217 +8437,135832,58744 +8438,31280,13731 +8439,86709,11073 +8440,325385,43957 +8441,27904,5381 +8442,64481,189 +8443,15674,18880 +8444,137528,18121 +8445,33253,7173 +8446,8342,850 +8447,31867,7295 +8448,1404,12695 +8449,46660,17094 +8450,3089,1316 +8451,209244,10161 +8452,124633,30226 +8453,108726,14527 +8454,12617,10330 +8455,84354,24459 +8456,85656,955 +8457,15019,34999 +8458,96089,8411 +8459,16296,3173 +8460,21626,10316 +8461,287,1312 +8462,315872,5125 +8463,280045,8015 +8464,188927,83644 +8465,35651,726 +8466,39771,1950 +8467,216046,3623 +8468,9568,4063 +8469,41578,21149 +8470,80351,20193 +8471,72822,189 +8472,167424,10771 +8473,121791,10611 +8474,29424,55524 +8475,343972,441 +8476,33016,22527 +8477,62630,7299 +8478,96712,29871 +8479,19610,6194 +8480,45726,8411 +8481,287903,923 +8482,20126,3570 +8483,8080,44 +8484,56601,19904 +8485,77645,10330 +8486,41574,73688 +8487,144229,40751 +8488,58411,36551 +8489,286532,14319 +8490,9945,1644 +8491,317,122 +8492,42852,8411 +8493,169881,10947 +8494,22328,3166 +8495,97365,11797 +8496,126927,1427 +8497,159810,10051 +8498,103597,78986 +8499,367735,787 +8500,49642,13433 +8501,48594,6639 +8502,293380,57712 +8503,110,183 +8504,2758,4 +8505,210047,20312 +8506,127864,8907 +8507,9423,4650 +8508,410537,21678 +8509,39781,23911 +8510,55433,6685 +8511,81003,521 +8512,8816,6181 +8513,20108,6181 +8514,53761,4 +8515,12617,1823 +8516,56807,94979 +8517,206284,30270 +8518,334538,13240 +8519,9443,7049 +8520,78507,12372 +8521,105548,21540 +8522,9457,45518 +8523,26518,31302 +8524,28090,80298 +8525,22683,29647 +8526,1554,3492 +8527,42739,2441 +8528,73420,1446 +8529,140509,27716 +8530,214756,13778 +8531,18897,11938 +8532,10142,441 +8533,17926,763 +8534,199602,25114 +8535,21840,4016 +8536,44655,19906 +8537,6443,75860 +8538,12154,10201 +8539,65579,14063 +8540,11832,42079 +8541,205891,3546 +8542,10394,18737 +8543,226163,17165 +8544,314283,12608 +8545,45610,11956 +8546,72592,11811 +8547,84305,7262 +8548,7006,1063 +8549,118737,21746 +8550,11830,64128 +8551,24411,5388 +8552,2675,7383 +8553,55823,1216 +8554,2321,14150 +8555,11959,41 +8556,55534,8582 +8557,337107,76447 +8558,345775,41258 +8559,17003,58 +8560,298040,46346 +8561,9589,1001 +8562,348389,77636 +8563,115782,12075 +8564,197854,13077 +8565,47112,31059 +8566,216580,25885 +8567,127105,21555 +8568,177572,6125 +8569,72710,13649 +8570,24078,2757 +8571,43231,12111 +8572,75761,3595 +8573,267931,22785 +8574,13855,11591 +8575,80713,6878 +8576,9613,8582 +8577,408024,92232 +8578,37710,23732 +8579,102161,6194 +8580,248376,17820 +8581,53514,2479 +8582,17622,11662 +8583,43354,659 +8584,28732,16835 +8585,13477,66966 +8586,9427,306 +8587,56653,201 +8588,172785,1811 +8589,3291,846 +8590,43089,494 +8591,211088,13742 +8592,271919,10522 +8593,17590,6194 +8594,31276,42138 +8595,200311,8196 +8596,265019,3017 +8597,1404,27559 +8598,136582,12389 +8599,3870,1521 +8600,772,477 +8601,291336,32553 +8602,67342,3106 +8603,389630,46160 +8604,8981,53874 +8605,94674,4313 +8606,125063,48266 +8607,26123,2365 +8608,159211,17517 +8609,19335,14404 +8610,16441,4950 +8611,22897,7295 +8612,791,497 +8613,24973,306 +8614,360737,5766 +8615,5721,54599 +8616,11813,14035 +8617,1724,33 +8618,121824,1632 +8619,126415,144 +8620,60420,13369 +8621,408537,10188 +8622,13526,2760 +8623,292033,4350 +8624,36658,79026 +8625,23857,61746 +8626,20481,10210 +8627,20715,20421 +8628,170759,6737 +8629,411221,82854 +8630,6964,441 +8631,18971,3593 +8632,214,23019 +8633,43379,12663 +8634,63260,10539 +8635,43022,15856 +8636,253235,32245 +8637,10204,23636 +8638,13788,423 +8639,353728,164 +8640,772,306 +8641,18755,27259 +8642,330431,3653 +8643,42684,10936 +8644,17209,53458 +8645,505,14723 +8646,60125,6863 +8647,274483,49934 +8648,13842,15312 +8649,9532,3169 +8650,20411,10254 +8651,53179,82 +8652,241574,10330 +8653,22701,3094 +8654,6972,240 +8655,37865,35920 +8656,2015,868 +8657,80717,16657 +8658,381356,694 +8659,36264,55649 +8660,98364,8411 +8661,28090,68248 +8662,217923,2269 +8663,339669,72280 +8664,408537,302 +8665,392882,5822 +8666,23823,491 +8667,211144,6438 +8668,105760,83622 +8669,197,7965 +8670,297762,6194 +8671,32139,40094 +8672,394403,7025 +8673,35921,13630 +8674,282069,41861 +8675,80351,6470 +8676,403867,64779 +8677,301875,1645 +8678,10665,1224 +8679,2179,12178 +8680,277839,57294 +8681,129332,10494 +8682,82911,8360 +8683,119374,16537 +8684,36797,2 +8685,11450,316 +8686,44502,6916 +8687,370264,13777 +8688,359245,22784 +8689,10162,5358 +8690,228034,21792 +8691,267579,21915 +8692,127144,50104 +8693,47504,12 +8694,38684,2054 +8695,10440,559 +8696,272663,4928 +8697,62046,21897 +8698,298931,686 +8699,31773,8411 +8700,353728,82552 +8701,28134,43 +8702,333667,89488 +8703,340101,2395 +8704,30959,14881 +8705,21966,6346 +8706,22803,12180 +8707,105965,2 +8708,23805,4267 +8709,292656,5120 +8710,45522,1138 +8711,54318,1267 +8712,63304,5120 +8713,65759,28382 +8714,2084,931 +8715,329135,12630 +8716,4147,306 +8717,63831,11922 +8718,87123,6194 +8719,63081,3651 +8720,51994,2452 +8721,329206,1268 +8722,3291,14315 +8723,119409,4526 +8724,2196,737 +8725,342765,54732 +8726,8985,2412 +8727,5767,306 +8728,331313,711 +8729,334299,18367 +8730,5551,10566 +8731,65891,9266 +8732,55720,28707 +8733,4988,1813 +8734,6552,441 +8735,49322,95392 +8736,286595,14026 +8737,2486,1302 +8738,49837,74429 +8739,113255,843 +8740,10776,2956 +8741,24810,3996 +8742,157424,42786 +8743,121929,31137 +8744,924,78685 +8745,138544,10345 +8746,413770,5996 +8747,40087,881 +8748,38021,37762 +8749,1073,3287 +8750,255388,6 +8751,107073,22622 +8752,40952,12 +8753,97365,1926 +8754,10491,27318 +8755,9977,20196 +8756,42796,15856 +8757,16997,12251 +8758,40387,6318 +8759,7980,11843 +8760,195544,21246 +8761,381518,2268 +8762,9540,10210 +8763,16985,2527 +8764,284053,2 +8765,325803,46722 +8766,11975,14941 +8767,22792,4379 +8768,3716,25757 +8769,26405,8412 +8770,64483,23290 +8771,284096,6916 +8772,2994,1497 +8773,56725,80772 +8774,10524,5358 +8775,85564,49847 +8776,41556,6693 +8777,268893,3204 +8778,123025,429 +8779,70489,23098 +8780,157829,2372 +8781,38322,10104 +8782,21435,3823 +8783,2169,998 +8784,334132,48873 +8785,295588,34234 +8786,239566,27319 +8787,23544,82610 +8788,10524,61506 +8789,326285,72441 +8790,61035,19331 +8791,67328,73706 +8792,178809,4909 +8793,21338,3603 +8794,3053,1303 +8795,63333,5328 +8796,103731,7493 +8797,192133,37816 +8798,19736,9195 +8799,300490,37123 +8800,84352,8412 +8801,15559,53511 +8802,19552,16366 +8803,300669,3045 +8804,325385,5125 +8805,18283,8411 +8806,24331,8335 +8807,445993,10339 +8808,177271,79556 +8809,98582,257 +8810,60662,7483 +8811,102256,14802 +8812,9102,4899 +8813,22023,42385 +8814,84226,13362 +8815,21627,757 +8816,44140,441 +8817,152748,6724 +8818,37911,5 +8819,76012,1311 +8820,158015,2481 +8821,9882,306 +8822,6023,17449 +8823,45693,12200 +8824,16820,3597 +8825,6557,158 +8826,333371,78177 +8827,38792,4 +8828,17209,20451 +8829,41714,53902 +8830,124042,19625 +8831,116894,35459 +8832,16791,826 +8833,281968,393 +8834,6499,9255 +8835,13550,2764 +8836,2976,70994 +8837,133448,44632 +8838,76333,12065 +8839,11645,1598 +8840,10549,6189 +8841,84892,491 +8842,32654,5217 +8843,35008,744 +8844,229328,95096 +8845,16366,521 +8846,53211,174 +8847,29345,4527 +8848,4286,12778 +8849,52221,9027 +8850,42251,1950 +8851,8063,12111 +8852,99698,15316 +8853,70122,6147 +8854,14869,435 +8855,338767,17555 +8856,266082,5358 +8857,18897,6586 +8858,18682,4402 +8859,102913,86121 +8860,399612,7543 +8861,340215,77713 +8862,16342,829 +8863,49343,12745 +8864,118257,77946 +8865,30374,4388 +8866,25568,48564 +8867,26891,7333 +8868,245775,2902 +8869,10610,73998 +8870,397717,22146 +8871,252680,80078 +8872,20210,5367 +8873,183662,1224 +8874,108812,8411 +8875,25385,33 +8876,42825,21 +8877,242224,32301 +8878,43438,4006 +8879,377447,90635 +8880,369524,8833 +8881,156711,19374 +8882,50008,288 +8883,41441,11420 +8884,5955,1171 +8885,332979,23243 +8886,29299,5745 +8887,289720,21549 +8888,37954,6194 +8889,288980,52859 +8890,28741,1360 +8891,150657,12467 +8892,286940,20375 +8893,30959,882 +8894,245706,81 +8895,288281,25578 +8896,84577,24276 +8897,20357,13323 +8898,57829,2640 +8899,96118,6181 +8900,26768,4576 +8901,82501,5381 +8902,380124,1632 +8903,60899,35793 +8904,18665,89807 +8905,747,10462 +8906,1956,1171 +8907,118957,10950 +8908,44682,22924 +8909,13763,76360 +8910,210052,5766 +8911,10693,6 +8912,205584,88715 +8913,82999,8321 +8914,364833,21582 +8915,81687,306 +8916,34078,14838 +8917,311324,5635 +8918,84993,34342 +8919,5881,1954 +8920,219466,1205 +8921,27703,17741 +8922,124075,16842 +8923,263472,83744 +8924,92311,2070 +8925,31380,26646 +8926,5917,599 +8927,461805,525 +8928,109477,93932 +8929,49762,12854 +8930,336004,10405 +8931,125673,21555 +8932,286940,79 +8933,32124,921 +8934,146238,508 +8935,156277,19632 +8936,60599,14580 +8937,17288,4754 +8938,83770,614 +8939,24963,70128 +8940,274990,7446 +8941,121791,11199 +8942,210079,26742 +8943,2140,6896 +8944,16432,5770 +8945,142712,2049 +8946,91715,60 +8947,84496,8411 +8948,38332,19024 +8949,9289,13630 +8950,1278,20783 +8951,41762,6194 +8952,25918,893 +8953,13318,3667 +8954,203351,25092 +8955,43321,174 +8956,43812,6194 +8957,11930,87550 +8958,9297,11395 +8959,73306,528 +8960,8070,53 +8961,239563,3314 +8962,17609,315 +8963,32921,6194 +8964,30022,33 +8965,4146,1529 +8966,298584,35849 +8967,19552,84254 +8968,64942,11258 +8969,13338,654 +8970,200311,42604 +8971,10394,20777 +8972,34838,39696 +8973,31083,36600 +8974,329805,45663 +8975,229134,5724 +8976,209112,6194 +8977,209112,41624 +8978,16612,18758 +8979,157829,14036 +8980,9296,27465 +8981,252096,86914 +8982,59726,23937 +8983,14650,3823 +8984,263472,85885 +8985,51426,6194 +8986,30996,34578 +8987,93856,7493 +8988,32604,21083 +8989,82,52845 +8990,41609,8411 +8991,45167,5992 +8992,11370,23770 +8993,193610,75017 +8994,19823,14364 +8995,45324,8690 +8996,33314,5388 +8997,261508,13389 +8998,1375,60 +8999,255343,8676 +9000,263341,35315 +9001,94248,33992 +9002,206296,11093 +9003,24424,5766 +9004,40765,6 +9005,77022,2 +9006,411442,19463 +9007,126083,5 +9008,43250,4 +9009,3145,1314 +9010,77822,12744 +9011,40034,15064 +9012,14527,803 +9013,13576,5 +9014,305147,39045 +9015,93457,20518 +9016,20107,16260 +9017,11131,20076 +9018,360592,63691 +9019,1427,342 +9020,116977,6574 +9021,68193,5777 +9022,8672,2473 +9023,14292,5888 +9024,2993,1527 +9025,30054,5015 +9026,74585,1875 +9027,270774,79729 +9028,30061,4811 +9029,105077,7534 +9030,263115,22213 +9031,338,46 +9032,92269,441 +9033,322548,2570 +9034,283489,491 +9035,206292,17168 +9036,20304,91638 +9037,11364,4 +9038,10696,306 +9039,106417,6755 +9040,256520,3681 +9041,35320,31739 +9042,13580,4 +9043,6166,18499 +9044,27653,33 +9045,52556,23072 +9046,25597,4399 +9047,169800,45899 +9048,136368,10988 +9049,10521,26670 +9050,106417,6999 +9051,77338,22123 +9052,290316,3040 +9053,154537,16262 +9054,26146,12180 +9055,407887,3965 +9056,14609,13252 +9057,10857,9210 +9058,142412,94395 +9059,59965,24557 +9060,86727,82 +9061,22398,7571 +9062,9495,4029 +9063,224282,16930 +9064,46924,6194 +9065,83802,33 +9066,8010,2333 +9067,78450,25345 +9068,195522,5153 +9069,39345,3635 +9070,271164,49945 +9071,59191,813 +9072,83,22376 +9073,44943,5 +9074,238589,28177 +9075,20648,1630 +9076,33305,15103 +9077,13954,3294 +9078,6948,24161 +9079,16077,10462 +9080,174720,10845 +9081,48601,18367 +9082,31397,13549 +9083,31915,4 +9084,99861,76043 +9085,30535,2683 +9086,10534,1645 +9087,105325,2 +9088,36214,622 +9089,18897,6519 +9090,11496,1042 +9091,82178,4 +9092,344120,6920 +9093,35026,311 +9094,63498,6780 +9095,21052,58 +9096,10320,6363 +9097,17295,10207 +9098,332512,318 +9099,230211,8962 +9100,124633,86296 +9101,1995,657 +9102,260947,21110 +9103,61225,33 +9104,229304,53446 +9105,54415,35153 +9106,101929,5070 +9107,27904,61201 +9108,21118,14 +9109,266082,11935 +9110,393732,979 +9111,347630,81735 +9112,296626,35711 +9113,149870,25634 +9114,17203,65403 +9115,343921,4740 +9116,47405,6212 +9117,83389,11847 +9118,41608,7866 +9119,11535,507 +9120,130957,10617 +9121,128169,7550 +9122,127560,3207 +9123,137145,67995 +9124,11362,7692 +9125,1254,942 +9126,111302,8411 +9127,332411,76777 +9128,16374,1793 +9129,399219,87638 +9130,59572,5846 +9131,245324,7350 +9132,230179,25954 +9133,17906,21375 +9134,74057,6194 +9135,30527,5055 +9136,1950,812 +9137,126442,20853 +9138,49653,7157 +9139,613,7201 +9140,5618,459 +9141,15797,89388 +9142,341689,82010 +9143,60505,7429 +9144,59735,1531 +9145,24077,6197 +9146,10137,5555 +9147,11440,4411 +9148,2613,89314 +9149,70046,7482 +9150,177902,5488 +9151,186997,311 +9152,62397,1216 +9153,185564,3282 +9154,35026,309 +9155,164331,713 +9156,31890,3712 +9157,7445,11369 +9158,2180,1005 +9159,271185,23750 +9160,78362,49924 +9161,67,850 +9162,334394,560 +9163,180252,7819 +9164,228970,15829 +9165,16077,22150 +9166,56292,4 +9167,28774,57987 +9168,265563,21915 +9169,59296,18668 +9170,27791,1596 +9171,15849,33 +9172,17654,2300 +9173,17170,932 +9174,1890,4 +9175,461615,21660 +9176,6976,14149 +9177,206574,26957 +9178,7343,4887 +9179,42424,11661 +9180,49850,3366 +9181,118957,18988 +9182,7551,9195 +9183,50161,9987 +9184,15805,2785 +9185,32091,47 +9186,43525,6194 +9187,37368,6 +9188,7980,9349 +9189,226693,7237 +9190,2262,1627 +9191,9746,9195 +9192,22602,4114 +9193,19606,10720 +9194,41823,4319 +9195,1726,4 +9196,75903,364 +9197,35683,58204 +9198,171213,75508 +9199,49391,2650 +9200,12186,6194 +9201,31947,484 +9202,343693,41642 +9203,18209,11404 +9204,151826,1524 +9205,309581,49277 +9206,47795,25516 +9207,55435,12657 +9208,110,38 +9209,9820,2 +9210,356752,91716 +9211,57816,22466 +9212,65002,1521 +9213,224233,25755 +9214,10897,23506 +9215,20210,3742 +9216,37311,6194 +9217,31977,34087 +9218,332662,72662 +9219,152861,28367 +9220,62900,61211 +9221,84340,95035 +9222,2160,306 +9223,26299,60535 +9224,133941,7516 +9225,60599,11093 +9226,17771,850 +9227,317389,21137 +9228,206296,15353 +9229,39995,5186 +9230,40985,3333 +9231,345918,7625 +9232,197210,14599 +9233,127812,8411 +9234,64725,10523 +9235,1165,1178 +9236,13105,1812 +9237,345775,23677 +9238,303542,67680 +9239,169298,20612 +9240,14705,3653 +9241,9717,9195 +9242,14072,1569 +9243,200311,54178 +9244,9519,8724 +9245,16177,23011 +9246,224251,5003 +9247,184341,7289 +9248,278458,76038 +9249,10925,4764 +9250,67276,7473 +9251,341174,89473 +9252,21544,9195 +9253,97365,3132 +9254,18897,790 +9255,19053,3267 +9256,77022,3197 +9257,221981,7928 +9258,82368,52586 +9259,19237,131 +9260,73981,13199 +9261,39286,289 +9262,16137,2675 +9263,184155,77594 +9264,361181,17997 +9265,11692,172 +9266,172475,60 +9267,295314,6937 +9268,4516,147 +9269,120854,21916 +9270,29362,12 +9271,63144,7469 +9272,22554,4104 +9273,64944,95504 +9274,30666,16856 +9275,242,4 +9276,9059,69626 +9277,39875,1554 +9278,362026,3324 +9279,10870,7248 +9280,28465,4810 +9281,49009,13920 +9282,191476,62016 +9283,32140,3166 +9284,52637,7003 +9285,140418,1441 +9286,9977,20197 +9287,360737,12372 +9288,270007,19404 +9289,16899,2651 +9290,408508,8858 +9291,345775,311 +9292,14761,6303 +9293,28176,4 +9294,69668,8430 +9295,89688,71087 +9296,16643,1171 +9297,27137,15116 +9298,40490,2 +9299,295723,29506 +9300,50008,1400 +9301,17609,5766 +9302,1267,6125 +9303,68737,40890 +9304,33481,2303 +9305,27211,4639 +9306,270221,17517 +9307,10394,19320 +9308,128612,21751 +9309,12205,20192 +9310,49559,16366 +9311,73690,8411 +9312,21765,6255 +9313,194,30994 +9314,23152,306 +9315,17654,12200 +9316,13305,12364 +9317,50942,2231 +9318,377447,3407 +9319,1586,54502 +9320,30091,10039 +9321,120457,2441 +9322,70074,20356 +9323,38448,5703 +9324,333667,89487 +9325,197082,355 +9326,11839,4 +9327,101231,10000 +9328,76170,22213 +9329,189,29076 +9330,49013,2 +9331,304134,27621 +9332,9629,3602 +9333,2662,1632 +9334,41522,6677 +9335,47911,21216 +9336,23805,41539 +9337,59962,907 +9338,4478,4 +9339,390357,14821 +9340,10364,73862 +9341,61580,74214 +9342,16997,12249 +9343,11450,11407 +9344,66759,5798 +9345,75142,17195 +9346,19398,30966 +9347,121793,13837 +9348,36915,12 +9349,14254,384 +9350,26958,4867 +9351,257574,15694 +9352,321142,84420 +9353,57683,15095 +9354,258480,9349 +9355,85350,11510 +9356,59349,18108 +9357,48231,470 +9358,278095,29924 +9359,5721,54600 +9360,351065,164 +9361,152861,93906 +9362,86768,60 +9363,10394,4117 +9364,22025,882 +9365,206284,30271 +9366,319073,71785 +9367,84284,67360 +9368,194,27897 +9369,102222,3608 +9370,20481,3557 +9371,186585,92161 +9372,85836,7120 +9373,98277,17223 +9374,14254,27 +9375,43149,6 +9376,74961,174 +9377,276401,738 +9378,266102,32201 +9379,31408,4639 +9380,10173,23308 +9381,32604,18367 +9382,356296,10102 +9383,18098,52598 +9384,15457,16804 +9385,324173,2933 +9386,57489,33118 +9387,215646,4606 +9388,8906,166 +9389,43594,81930 +9390,363479,4598 +9391,52959,6304 +9392,815,678 +9393,413882,3118 +9394,276635,7049 +9395,51828,5420 +9396,303857,7392 +9397,100088,3167 +9398,285,19936 +9399,322455,37535 +9400,40649,4867 +9401,16281,14179 +9402,407448,8411 +9403,10696,415 +9404,22494,7429 +9405,55167,7906 +9406,15414,34997 +9407,2108,33 +9408,11122,608 +9409,29076,915 +9410,15489,95597 +9411,154537,16260 +9412,384262,89612 +9413,9352,2364 +9414,159727,1314 +9415,62741,6453 +9416,45556,8630 +9417,4441,29052 +9418,14683,9266 +9419,76757,79 +9420,108822,18367 +9421,259292,6 +9422,244201,3245 +9423,31042,14093 +9424,83430,7976 +9425,17386,8411 +9426,11259,33 +9427,86321,346 +9428,203715,58658 +9429,27472,4 +9430,458428,90596 +9431,11516,12012 +9432,8588,4606 +9433,25649,139 +9434,8847,58 +9435,80276,44072 +9436,94182,6194 +9437,263115,7505 +9438,227156,308 +9439,229221,3245 +9440,52864,6194 +9441,321779,5928 +9442,207699,21666 +9443,65603,10318 +9444,24238,4096 +9445,13459,2213 +9446,312831,67257 +9447,294272,3036 +9448,10219,862 +9449,43546,8411 +9450,16026,1968 +9451,38718,7541 +9452,13383,12120 +9453,11607,14723 +9454,42473,60 +9455,29739,6194 +9456,41402,1314 +9457,68444,70098 +9458,284189,20662 +9459,6948,3135 +9460,32227,1010 +9461,56068,95351 +9462,62116,13907 +9463,259830,27268 +9464,4443,12 +9465,11915,249 +9466,13561,2772 +9467,198663,306 +9468,31634,16768 +9469,204765,24463 +9470,31498,33 +9471,263472,18142 +9472,337958,73694 +9473,120,12 +9474,352094,58399 +9475,10590,53005 +9476,369406,11840 +9477,212756,66512 +9478,753,452 +9479,75510,9329 +9480,186079,14087 +9481,140554,7201 +9482,1267,2 +9483,222461,24049 +9484,136752,6520 +9485,10071,3215 +9486,31304,1763 +9487,1966,10926 +9488,9423,288 +9489,13713,3823 +9490,79645,634 +9491,24348,16644 +9492,193610,306 +9493,15213,2885 +9494,280019,7270 +9495,32790,6425 +9496,15909,6254 +9497,269173,36735 +9498,338676,29564 +9499,127098,45867 +9500,6,1644 +9501,14226,882 +9502,6069,4357 +9503,56947,20091 +9504,92321,22602 +9505,296313,1789 +9506,75300,8080 +9507,397365,79480 +9508,129332,10495 +9509,51249,11194 +9510,10568,659 +9511,44732,4792 +9512,30974,3416 +9513,9591,1274 +9514,345922,73118 +9515,18,9 +9516,6644,4 +9517,133575,20873 +9518,383914,8171 +9519,10013,559 +9520,36194,8263 +9521,17170,60 +9522,25450,3432 +9523,366045,66791 +9524,220,6194 +9525,132426,5996 +9526,41206,20281 +9527,340488,94 +9528,27085,59891 +9529,41609,1460 +9530,321191,26324 +9531,16938,17468 +9532,140489,60014 +9533,6947,12236 +9534,10425,8056 +9535,24921,3244 +9536,133783,49069 +9537,19912,12 +9538,22279,16027 +9539,120729,5996 +9540,38154,7550 +9541,8886,4504 +9542,2742,11561 +9543,268212,62263 +9544,318781,6938 +9545,39358,7184 +9546,26612,19980 +9547,91217,6194 +9548,265208,1632 +9549,174188,6573 +9550,89330,5975 +9551,2924,33 +9552,445727,87499 +9553,80125,5726 +9554,38787,3245 +9555,17796,3397 +9556,10866,508 +9557,40205,6679 +9558,4806,4 +9559,17609,119 +9560,75363,73658 +9561,53168,3477 +9562,3870,60 +9563,54523,1671 +9564,94365,5652 +9565,28297,2942 +9566,83890,12876 +9567,12103,508 +9568,4762,46 +9569,399612,7792 +9570,74666,24477 +9571,9902,5755 +9572,16154,4 +9573,406449,79280 +9574,243935,25140 +9575,15242,3070 +9576,106049,13149 +9577,28176,1 +9578,60422,8872 +9579,24918,1296 +9580,96724,10163 +9581,48116,13020 +9582,268712,1251 +9583,8583,25087 +9584,36968,670 +9585,315846,12424 +9586,88042,48638 +9587,41298,85680 +9588,9504,12 +9589,5559,521 +9590,12447,1382 +9591,210052,9292 +9592,66109,21217 +9593,286521,30997 +9594,18206,13358 +9595,11313,6194 +9596,1452,923 +9597,30265,4063 +9598,41760,306 +9599,30974,21528 +9600,1497,12 +9601,3055,2409 +9602,14444,59150 +9603,237756,1013 +9604,26517,14180 +9605,43440,8411 +9606,4520,771 +9607,335051,21246 +9608,2428,13579 +9609,1956,32599 +9610,47886,22592 +9611,2012,865 +9612,315664,288 +9613,411741,90733 +9614,408024,5358 +9615,403429,25381 +9616,8494,559 +9617,43464,6 +9618,34598,10399 +9619,216369,2846 +9620,252102,35561 +9621,375170,74731 +9622,356483,65834 +9623,227552,3282 +9624,22968,8411 +9625,32395,4634 +9626,227964,80352 +9627,265351,47351 +9628,88390,6194 +9629,12135,39515 +9630,16441,8411 +9631,55544,12372 +9632,10603,2 +9633,332567,67069 +9634,39345,2106 +9635,26758,11983 +9636,137145,67994 +9637,38010,3219 +9638,365447,73068 +9639,204768,12398 +9640,22792,28320 +9641,160160,13839 +9642,85126,16127 +9643,96987,1974 +9644,332794,77552 +9645,56601,19903 +9646,129533,2213 +9647,227973,9383 +9648,9827,7405 +9649,79500,7616 +9650,259830,27267 +9651,108723,49675 +9652,29116,4913 +9653,36075,14836 +9654,2034,24939 +9655,64015,22060 +9656,287903,33 +9657,25468,55643 +9658,22701,73766 +9659,46421,13755 +9660,168259,86655 +9661,2742,22210 +9662,270774,79730 +9663,127391,11793 +9664,99579,10051 +9665,294093,45229 +9666,256628,20538 +9667,361380,49983 +9668,420648,10012 +9669,206657,59086 +9670,511,52 +9671,63498,11424 +9672,14226,93117 +9673,10276,8830 +9674,8981,1178 +9675,296523,856 +9676,13852,13675 +9677,20742,3839 +9678,10900,68355 +9679,329712,6916 +9680,330947,43155 +9681,210126,17027 +9682,9841,24363 +9683,94135,1314 +9684,11196,1436 +9685,339403,10163 +9686,34127,28205 +9687,13004,6220 +9688,63317,26684 +9689,52943,6639 +9690,95169,5488 +9691,60199,278 +9692,22292,306 +9693,407448,20344 +9694,323665,60583 +9695,42542,6194 +9696,10986,41973 +9697,39286,46399 +9698,147773,43 +9699,337107,76446 +9700,49588,20771 +9701,314352,101 +9702,196359,54537 +9703,16124,94198 +9704,212756,11571 +9705,33511,91542 +9706,93828,7625 +9707,26125,34999 +9708,46368,22933 +9709,94336,138 +9710,229254,6181 +9711,598,345 +9712,949,508 +9713,3050,1302 +9714,38509,43 +9715,83456,8373 +9716,11912,19158 +9717,49850,5358 +9718,9102,23098 +9719,270842,5687 +9720,9611,9195 +9721,122698,18201 +9722,15934,1620 +9723,326285,126 +9724,578,1865 +9725,45610,11957 +9726,21519,3055 +9727,360341,59811 +9728,80713,3857 +9729,393134,1877 +9730,28682,41789 +9731,148622,5120 +9732,34899,94 +9733,49028,47702 +9734,13092,9987 +9735,205939,14787 +9736,188927,83645 +9737,207021,5912 +9738,423122,8858 +9739,103168,10569 +9740,82,52844 +9741,271714,1512 +9742,20106,5358 +9743,31597,14723 +9744,131689,17928 +9745,166255,19230 +9746,17139,938 +9747,2293,16934 +9748,269165,2048 +9749,194101,34527 +9750,193756,6666 +9751,27470,4 +9752,95134,29729 +9753,14372,8411 +9754,30379,5044 +9755,354857,7899 +9756,16014,76 +9757,81616,7025 +9758,1294,7333 +9759,82501,11894 +9760,29101,2105 +9761,36299,2499 +9762,73943,5106 +9763,390296,82811 +9764,44552,2302 +9765,95136,12475 +9766,2080,444 +9767,2321,41 +9768,66125,53042 +9769,31922,13603 +9770,28367,11275 +9771,34334,5358 +9772,29896,2393 +9773,248747,1038 +9774,172847,10039 +9775,242033,26344 +9776,14457,3517 +9777,47046,61201 +9778,43470,6194 +9779,343795,10405 +9780,85656,4673 +9781,47119,18367 +9782,116350,16527 +9783,149926,757 +9784,10873,831 +9785,76333,62735 +9786,10066,1786 +9787,293092,85808 +9788,8342,85745 +9789,49060,17449 +9790,8672,843 +9791,341491,83275 +9792,293660,78091 +9793,185154,2370 +9794,52045,20339 +9795,40368,42978 +9796,3933,8601 +9797,19551,4840 +9798,315880,36168 +9799,18392,21086 +9800,44754,258 +9801,384737,23735 +9802,18722,33 +9803,184341,52066 +9804,121725,5904 +9805,954,4 +9806,112304,23323 +9807,29398,10324 +9808,13614,10827 +9809,426253,41077 +9810,71866,3782 +9811,323435,72697 +9812,419430,88934 +9813,16214,6194 +9814,25520,247 +9815,195522,14567 +9816,11380,12 +9817,51800,22973 +9818,17139,3259 +9819,33102,5247 +9820,32657,444 +9821,110598,6292 +9822,332079,6 +9823,97088,12372 +9824,79526,13563 +9825,388862,10339 +9826,4133,12 +9827,48419,47006 +9828,248933,1972 +9829,184345,10427 +9830,308529,86465 +9831,128169,3341 +9832,43231,12549 +9833,103732,23232 +9834,309929,5358 +9835,157676,43265 +9836,43117,4 +9837,42669,3245 +9838,78231,718 +9839,85435,1012 +9840,193756,8537 +9841,9461,3526 +9842,63066,93535 +9843,169800,42039 +9844,9812,278 +9845,182228,9030 +9846,46697,17434 +9847,33005,2811 +9848,10005,306 +9849,408381,23959 +9850,411638,78370 +9851,248376,16927 +9852,6069,6194 +9853,10774,60 +9854,39957,13923 +9855,342472,86523 +9856,1721,12063 +9857,144183,3324 +9858,32390,9 +9859,47794,42182 +9860,4266,1612 +9861,1116,1898 +9862,13205,5391 +9863,205943,15963 +9864,32790,6533 +9865,48495,6823 +9866,94170,60 +9867,245692,67994 +9868,31596,94734 +9869,322487,20789 +9870,170689,13320 +9871,45213,10481 +9872,82703,73951 +9873,130739,9292 +9874,262841,10256 +9875,252034,9342 +9876,456101,44632 +9877,32552,6194 +9878,84333,10161 +9879,356482,93741 +9880,9736,694 +9881,14145,14988 +9882,19150,9195 +9883,47143,6916 +9884,229254,3159 +9885,233490,56500 +9886,2204,7025 +9887,190352,2159 +9888,183412,23761 +9889,322266,48530 +9890,35052,10843 +9891,8368,2391 +9892,14983,42876 +9893,55846,25628 +9894,52999,69195 +9895,116979,52139 +9896,332280,49297 +9897,22551,3295 +9898,307931,22632 +9899,121923,441 +9900,84154,21216 +9901,146926,7954 +9902,36373,4532 +9903,11247,6194 +9904,24273,813 +9905,256924,33603 +9906,268618,69659 +9907,26642,48476 +9908,17566,11814 +9909,170603,5735 +9910,10336,12 +9911,50463,41 +9912,315465,6452 +9913,24086,1887 +9914,43931,8853 +9915,24212,5078 +9916,12477,12521 +9917,193756,20153 +9918,327,567 +9919,16032,6417 +9920,12237,16014 +9921,28466,441 +9922,62755,83361 +9923,455043,5552 +9924,37100,5871 +9925,371003,69225 +9926,356842,50082 +9927,11096,1894 +9928,9914,2748 +9929,222858,4343 +9930,124597,5070 +9931,40085,306 +9932,15457,7981 +9933,415633,23712 +9934,108726,738 +9935,68139,25458 +9936,33613,5746 +9937,40130,88865 +9938,42139,47804 +9939,18801,70 +9940,298722,20416 +9941,129553,3473 +9942,77860,7816 +9943,152570,8411 +9944,8932,8469 +9945,243940,1632 +9946,42787,4 +9947,11832,84478 +9948,1922,791 +9949,77338,9 +9950,26809,6125 +9951,29923,5006 +9952,109475,1765 +9953,31473,33 +9954,30708,6194 +9955,12289,2812 +9956,4688,598 +9957,176983,5542 +9958,77877,813 +9959,32395,597 +9960,245692,50630 +9961,8272,23105 +9962,13542,5031 +9963,44303,14772 +9964,254065,11114 +9965,334299,11620 +9966,96035,16217 +9967,38850,56011 +9968,598,856 +9969,152736,18440 +9970,14145,6339 +9971,25078,55494 +9972,4497,1659 +9973,167221,6275 +9974,246655,306 +9975,232462,18298 +9976,272878,6194 +9977,133458,6181 +9978,482,12145 +9979,1073,22512 +9980,124680,28274 +9981,10467,10157 +9982,83666,9350 +9983,62213,2691 +9984,11654,8846 +9985,245169,40976 +9986,6145,12 +9987,324670,2735 +9988,373397,62744 +9989,74779,15799 +9990,3291,51850 +9991,53861,6623 +9992,339526,5556 +9993,212503,2352 +9994,21451,4 +9995,10710,25473 +9996,38055,521 +9997,12716,3823 +9998,108177,8290 +9999,10860,559 +10000,33689,6194 +10001,32559,37732 +10002,258255,73401 +10003,2084,932 +10004,418029,81818 +10005,120497,4 +10006,64685,6194 +10007,84720,33 +10008,40807,771 +10009,184795,4051 +10010,371645,81364 +10011,60120,35558 +10012,290825,23700 +10013,10747,6194 +10014,385654,21446 +10015,184155,3467 +10016,31146,4248 +10017,91679,26952 +10018,261036,455 +10019,188161,8789 +10020,332411,2373 +10021,201765,10128 +10022,83430,12347 +10023,42309,48613 +10024,181456,876 +10025,241639,18367 +10026,43346,35746 +10027,20186,63846 +10028,42739,486 +10029,28366,3973 +10030,2898,18 +10031,40470,8411 +10032,121003,8411 +10033,334538,41077 +10034,94009,5488 +10035,168259,6452 +10036,105763,40668 +10037,256962,90508 +10038,16157,3153 +10039,29204,4922 +10040,82817,7454 +10041,31428,1957 +10042,331161,21789 +10043,26030,5349 +10044,21132,3901 +10045,14703,516 +10046,50001,5235 +10047,100770,1754 +10048,844,19858 +10049,342765,54733 +10050,218784,5 +10051,1811,1475 +10052,5552,7832 +10053,76349,15071 +10054,290864,45424 +10055,51358,13913 +10056,4913,26467 +10057,11912,1740 +10058,217648,9387 +10059,51209,5860 +10060,22803,5257 +10061,245706,508 +10062,41516,10330 +10063,42293,5755 +10064,77650,1432 +10065,11593,4 +10066,220674,3324 +10067,179826,19643 +10068,116236,1216 +10069,161495,12883 +10070,402672,2320 +10071,19823,6901 +10072,227700,88606 +10073,18939,3554 +10074,16203,54446 +10075,203217,53105 +10076,13614,11240 +10077,11104,540 +10078,89462,5070 +10079,417870,49968 +10080,45244,8294 +10081,259694,12 +10082,263627,64054 +10083,22471,4521 +10084,163814,77329 +10085,189,11006 +10086,19509,3628 +10087,102632,3170 +10088,192558,3749 +10089,359154,52867 +10090,82703,521 +10091,29343,1950 +10092,70667,50093 +10093,303636,44127 +10094,65488,8411 +10095,74581,26043 +10096,190955,9015 +10097,83785,6530 +10098,5393,46875 +10099,71381,3451 +10100,62394,16978 +10101,188507,23703 +10102,338189,806 +10103,318922,19638 +10104,48145,6181 +10105,10466,56 +10106,62768,4923 +10107,31111,19385 +10108,156326,4903 +10109,200447,60 +10110,31347,20202 +10111,31258,55525 +10112,422,9387 +10113,245536,18923 +10114,63414,45587 +10115,410537,82773 +10116,25796,27128 +10117,57458,24372 +10118,19819,4 +10119,193177,33 +10120,7305,4 +10121,51601,3245 +10122,44211,6037 +10123,75174,12234 +10124,94671,3490 +10125,11422,219 +10126,41619,5755 +10127,42182,9077 +10128,10596,3383 +10129,11697,4 +10130,352025,14175 +10131,208436,18370 +10132,24023,235 +10133,11373,3723 +10134,14660,1205 +10135,25407,6 +10136,239845,22055 +10137,325173,68373 +10138,10406,8830 +10139,5332,1899 +10140,25538,1195 +10141,297853,88601 +10142,90406,8411 +10143,137093,415 +10144,71668,11761 +10145,15303,81030 +10146,369883,5490 +10147,43395,8411 +10148,45219,14273 +10149,57683,10254 +10150,14886,2993 +10151,203321,10443 +10152,14142,3924 +10153,1665,13507 +10154,244201,6194 +10155,17908,6194 +10156,2280,21451 +10157,341077,31787 +10158,118,8601 +10159,19912,48792 +10160,7454,2244 +10161,32227,1009 +10162,17303,16960 +10163,9905,980 +10164,39061,63784 +10165,36615,80401 +10166,124821,3958 +10167,340101,11752 +10168,18512,60 +10169,227348,3172 +10170,921,14 +10171,16083,2448 +10172,26880,18507 +10173,405882,38159 +10174,166221,37171 +10175,322460,14093 +10176,23128,4186 +10177,97910,3245 +10178,329819,2951 +10179,417489,7177 +10180,414977,65858 +10181,10863,4255 +10182,48770,938 +10183,6443,16110 +10184,74878,22164 +10185,82781,3412 +10186,18035,52698 +10187,14983,3005 +10188,52475,1107 +10189,44658,20091 +10190,329550,75377 +10191,82368,10795 +10192,36943,559 +10193,11134,3054 +10194,342472,290 +10195,43877,26043 +10196,30379,5045 +10197,18646,8411 +10198,33357,5702 +10199,345918,85466 +10200,6171,79 +10201,1574,14 +10202,86820,856 +10203,17622,11664 +10204,44190,6 +10205,220287,77518 +10206,129383,1598 +10207,2143,983 +10208,213121,2 +10209,8316,2371 +10210,108312,8866 +10211,51739,11200 +10212,352164,49964 +10213,43434,5358 +10214,10918,3869 +10215,302528,41077 +10216,9778,21518 +10217,267931,68265 +10218,11694,11585 +10219,420703,82270 +10220,161243,328 +10221,42093,162 +10222,235,90896 +10223,189,41658 +10224,72032,7508 +10225,39061,20411 +10226,20034,21599 +10227,63568,5120 +10228,72096,5 +10229,26182,8411 +10230,332567,23513 +10231,62675,1147 +10232,362703,71891 +10233,1813,20555 +10234,2267,20569 +10235,31364,4428 +10236,328631,47776 +10237,413998,39509 +10238,145963,8302 +10239,65881,686 +10240,161187,8142 +10241,10534,915 +10242,252916,4395 +10243,30363,77947 +10244,61581,2115 +10245,29483,22529 +10246,83540,9262 +10247,40785,7937 +10248,191322,36195 +10249,11196,2761 +10250,230179,62410 +10251,107705,5120 +10252,130900,8411 +10253,13437,1403 +10254,16907,570 +10255,336669,24845 +10256,41505,7437 +10257,322487,20788 +10258,179715,7254 +10259,97614,762 +10260,152113,33 +10261,1599,23489 +10262,1450,11553 +10263,104376,12785 +10264,137321,433 +10265,2071,8411 +10266,44308,14 +10267,14698,441 +10268,50108,88982 +10269,94251,306 +10270,13390,45809 +10271,19971,42183 +10272,52314,16337 +10273,345775,42210 +10274,61904,44598 +10275,24405,6194 +10276,15163,2233 +10277,339994,74472 +10278,1294,73852 +10279,1721,10509 +10280,76341,6194 +10281,26693,9221 +10282,146712,16441 +10283,308,10146 +10284,8588,23207 +10285,60281,656 +10286,41115,255 +10287,4550,1691 +10288,151826,24959 +10289,413052,48860 +10290,55725,921 +10291,31913,306 +10292,18595,9209 +10293,28433,306 +10294,20304,60615 +10295,15765,9195 +10296,79550,22975 +10297,308639,58445 +10298,390547,52867 +10299,16432,7733 +10300,76871,10522 +10301,99367,21933 +10302,9675,1187 +10303,121462,43979 +10304,6069,2537 +10305,26261,559 +10306,188765,1051 +10307,126712,429 +10308,540,2313 +10309,11899,559 +10310,1634,508 +10311,97051,23857 +10312,9664,6362 +10313,21413,14 +10314,435707,8858 +10315,289720,17653 +10316,975,611 +10317,67328,73707 +10318,72900,357 +10319,32234,78657 +10320,16436,2438 +10321,11902,6242 +10322,101998,20919 +10323,141241,3244 +10324,9846,396 +10325,88811,4641 +10326,325263,5576 +10327,25983,1360 +10328,201429,602 +10329,82817,5381 +10330,25403,16366 +10331,244539,7372 +10332,45827,3166 +10333,136619,779 +10334,100669,6355 +10335,2262,11626 +10336,399894,23555 +10337,9591,306 +10338,13849,15282 +10339,56162,39613 +10340,73827,1379 +10341,315723,72481 +10342,25468,55642 +10343,8870,22351 +10344,634,33 +10345,53739,9335 +10346,67021,5798 +10347,19552,311 +10348,27091,328 +10349,297265,1219 +10350,58076,306 +10351,338421,41465 +10352,664,56 +10353,336669,74000 +10354,40624,16791 +10355,58372,28205 +10356,33689,6130 +10357,21041,74636 +10358,202337,42231 +10359,82817,10610 +10360,9950,12260 +10361,28178,11341 +10362,353879,60536 +10363,27276,4650 +10364,163,2596 +10365,6963,1423 +10366,159810,8530 +10367,105860,1701 +10368,37410,1596 +10369,28,26663 +10370,112304,23319 +10371,345775,27350 +10372,10596,10254 +10373,347945,14531 +10374,67822,10314 +10375,14611,420 +10376,17386,4110 +10377,11832,118 +10378,68123,1048 +10379,199155,6181 +10380,11159,7832 +10381,292387,16804 +10382,6687,2064 +10383,373546,93633 +10384,12622,6918 +10385,61984,12387 +10386,22683,7613 +10387,64720,21926 +10388,321497,63610 +10389,5413,71357 +10390,14128,3475 +10391,185460,7357 +10392,2757,267 +10393,56807,18367 +10394,205818,4917 +10395,82817,591 +10396,9591,38944 +10397,14181,12 +10398,70800,17620 +10399,217038,16469 +10400,315439,3491 +10401,86391,10238 +10402,7863,8724 +10403,12144,1 +10404,755,7405 +10405,53798,6 +10406,298,2596 +10407,205587,79 +10408,217948,8411 +10409,47955,4 +10410,27480,2806 +10411,11421,93383 +10412,76829,22164 +10413,408381,79785 +10414,80168,4 +10415,9914,1370 +10416,154972,62711 +10417,11302,60 +10418,41762,16750 +10419,381015,74105 +10420,1825,1444 +10421,13477,8299 +10422,106049,13150 +10423,362439,10399 +10424,15601,1353 +10425,349045,2785 +10426,407965,79651 +10427,47211,41730 +10428,14317,24955 +10429,70500,65585 +10430,298935,38115 +10431,9426,396 +10432,270403,74572 +10433,14676,5538 +10434,59249,58255 +10435,336804,11237 +10436,21449,1333 +10437,97598,8411 +10438,29318,15296 +10439,43692,4978 +10440,62213,3281 +10441,36253,856 +10442,1790,8411 +10443,61400,2320 +10444,330418,12630 +10445,48281,6679 +10446,21435,884 +10447,76465,6194 +10448,11639,15980 +10449,33534,5306 +10450,62320,836 +10451,314371,3353 +10452,65973,5542 +10453,29911,152 +10454,58060,225 +10455,5998,2127 +10456,209263,43 +10457,1877,4867 +10458,293167,923 +10459,25855,4206 +10460,19971,42182 +10461,249457,10975 +10462,106747,10427 +10463,39517,5778 +10464,16249,3166 +10465,10847,365 +10466,10796,497 +10467,193959,15634 +10468,410634,81886 +10469,25921,8724 +10470,46857,18405 +10471,80304,6644 +10472,868,565 +10473,32657,289 +10474,258353,6345 +10475,305342,39077 +10476,1574,8797 +10477,47112,982 +10478,332283,34886 +10479,259358,35210 +10480,8985,1049 +10481,14589,8411 +10482,46029,1382 +10483,46059,14115 +10484,14370,3088 +10485,9070,9255 +10486,26861,4611 +10487,45562,3324 +10488,41097,4884 +10489,17711,594 +10490,32080,77748 +10491,64456,4 +10492,9648,90124 +10493,9950,26947 +10494,93350,60919 +10495,226163,17164 +10496,87302,69317 +10497,246133,49586 +10498,126127,6 +10499,347945,76708 +10500,9703,6370 +10501,24801,47441 +10502,15258,3516 +10503,226354,19404 +10504,103850,23967 +10505,126319,13351 +10506,2565,6194 +10507,44626,19752 +10508,330770,3307 +10509,6068,961 +10510,9503,72498 +10511,144792,5488 +10512,88005,9350 +10513,337104,14534 +10514,148615,18437 +10515,31867,33 +10516,18651,6 +10517,334651,22123 +10518,58547,5860 +10519,85483,18775 +10520,1480,10330 +10521,284343,16 +10522,37181,7033 +10523,78563,3040 +10524,11231,441 +10525,391438,18010 +10526,115290,11073 +10527,311291,7281 +10528,269149,2 +10529,83430,12349 +10530,164954,61 +10531,50647,7295 +10532,76609,1475 +10533,332788,15268 +10534,31618,8880 +10535,28178,11278 +10536,68720,10330 +10537,69035,20928 +10538,5967,14680 +10539,60488,10096 +10540,9483,4606 +10541,377447,90633 +10542,190955,10611 +10543,11511,10201 +10544,7837,2289 +10545,168022,18262 +10546,256474,24510 +10547,382598,12398 +10548,56943,83636 +10549,13312,16468 +10550,419192,13742 +10551,303857,5542 +10552,244580,2570 +10553,282070,41861 +10554,44470,37357 +10555,32049,44962 +10556,335897,51249 +10557,45693,36024 +10558,102382,53462 +10559,117251,34982 +10560,9389,7089 +10561,32577,359 +10562,18093,3449 +10563,335778,59827 +10564,13336,5358 +10565,435821,86706 +10566,94674,11619 +10567,409502,85627 +10568,366170,9255 +10569,1966,4588 +10570,53648,6617 +10571,155128,64910 +10572,126442,22823 +10573,176627,9329 +10574,94809,10521 +10575,29143,441 +10576,1911,9195 +10577,22259,4083 +10578,53150,8821 +10579,271919,23871 +10580,27834,60 +10581,441728,11199 +10582,54559,6704 +10583,19618,6194 +10584,97365,7466 +10585,6038,58264 +10586,62036,8894 +10587,293970,4205 +10588,22998,5612 +10589,16162,4319 +10590,39992,1242 +10591,42267,441 +10592,70554,21699 +10593,85160,42001 +10594,4111,8411 +10595,33317,18758 +10596,13536,1171 +10597,116432,12062 +10598,167,19116 +10599,30127,10954 +10600,311324,86434 +10601,264729,29564 +10602,36971,7977 +10603,8063,5120 +10604,169758,11675 +10605,329865,32300 +10606,345775,76912 +10607,378236,5 +10608,225728,5870 +10609,125945,39718 +10610,204922,10254 +10611,32872,126 +10612,17640,8411 +10613,54156,8658 +10614,43641,4811 +10615,300669,768 +10616,35026,23478 +10617,138308,5 +10618,49961,10178 +10619,102629,3608 +10620,266687,22329 +10621,33336,2060 +10622,118957,9129 +10623,337879,52360 +10624,327749,54879 +10625,83430,12340 +10626,15013,3008 +10627,320588,16945 +10628,283384,5486 +10629,336011,71894 +10630,97910,6194 +10631,362057,12292 +10632,272878,8411 +10633,311324,48873 +10634,256474,24514 +10635,31277,2636 +10636,18040,3338 +10637,14138,50954 +10638,226632,4316 +10639,63899,21978 +10640,210940,91359 +10641,126319,32853 +10642,70057,7909 +10643,30641,20358 +10644,40863,6377 +10645,346490,22028 +10646,81538,18740 +10647,194407,13479 +10648,103620,10611 +10649,57683,925 +10650,36917,4562 +10651,66741,4009 +10652,79329,6869 +10653,27019,76482 +10654,76101,22061 +10655,540,10039 +10656,77915,32951 +10657,227964,7764 +10658,32720,9 +10659,3035,33 +10660,408220,9993 +10661,198993,3234 +10662,34449,28486 +10663,2280,306 +10664,15616,10254 +10665,43119,9266 +10666,37206,1266 +10667,330333,14628 +10668,92393,95561 +10669,30946,17559 +10670,15143,4 +10671,4011,6194 +10672,18917,9292 +10673,10735,813 +10674,133521,10826 +10675,445,1704 +10676,31899,6194 +10677,110148,3025 +10678,134144,50574 +10679,46069,5070 +10680,92989,77405 +10681,13185,6360 +10682,6079,486 +10683,77412,8411 +10684,37514,13045 +10685,76333,8111 +10686,14138,22897 +10687,62211,2 +10688,4291,6516 +10689,11329,508 +10690,281418,37004 +10691,18704,3520 +10692,10710,7293 +10693,107073,44626 +10694,17009,33 +10695,310888,7437 +10696,274820,73253 +10697,323665,2294 +10698,14931,3002 +10699,121354,6292 +10700,125705,4056 +10701,45324,36028 +10702,431244,22498 +10703,10693,3166 +10704,59296,5113 +10705,137093,5490 +10706,101669,22106 +10707,219335,64614 +10708,113525,5538 +10709,2441,9974 +10710,155426,37732 +10711,27457,13969 +10712,14873,3476 +10713,16993,2070 +10714,45156,1302 +10715,31364,7142 +10716,183827,8411 +10717,19968,6194 +10718,15640,5754 +10719,47886,6082 +10720,12169,12096 +10721,44006,6194 +10722,14353,35 +10723,403605,87477 +10724,82631,10221 +10725,119569,420 +10726,104471,7159 +10727,359459,44739 +10728,21544,2651 +10729,284293,28361 +10730,136582,12392 +10731,38724,8411 +10732,10003,2767 +10733,18530,23486 +10734,22136,7627 +10735,76609,83 +10736,184328,4395 +10737,302042,15645 +10738,227975,93177 +10739,16643,81134 +10740,20432,24643 +10741,35021,28598 +10742,393445,19146 +10743,315465,15662 +10744,277968,1972 +10745,97936,14380 +10746,35651,6916 +10747,65614,63095 +10748,299,67993 +10749,344170,7584 +10750,39240,5763 +10751,35025,189 +10752,43741,7429 +10753,351809,10031 +10754,2124,915 +10755,42987,14536 +10756,55846,972 +10757,9502,521 +10758,29224,235 +10759,52021,4867 +10760,56943,51454 +10761,329805,71885 +10762,32657,28431 +10763,1416,11554 +10764,171446,3245 +10765,10389,3405 +10766,9495,4030 +10767,51549,75054 +10768,7942,6847 +10769,26693,4563 +10770,25053,3033 +10771,242310,8692 +10772,10394,9349 +10773,1673,441 +10774,9514,13096 +10775,358980,17408 +10776,56942,27023 +10777,259835,20951 +10778,178809,43807 +10779,168295,5070 +10780,52520,3287 +10781,42182,25473 +10782,110412,74257 +10783,25598,8411 +10784,51549,3219 +10785,89551,84008 +10786,343934,4 +10787,35543,14317 +10788,29259,1826 +10789,21380,4835 +10790,78705,28812 +10791,172457,63716 +10792,264264,14714 +10793,4931,33 +10794,257534,1277 +10795,10500,16610 +10796,42040,553 +10797,84284,4606 +10798,105945,22037 +10799,8584,158 +10800,18890,13 +10801,329805,5358 +10802,146,20291 +10803,29224,8222 +10804,59935,224 +10805,126090,15040 +10806,425591,12142 +10807,46738,7273 +10808,109417,3287 +10809,262338,2236 +10810,68637,7248 +10811,43670,995 +10812,42231,5 +10813,41283,97 +10814,83788,62133 +10815,28032,90512 +10816,412202,21872 +10817,8869,347 +10818,126889,19747 +10819,9651,76461 +10820,124042,24366 +10821,39943,441 +10822,14242,62137 +10823,24739,59403 +10824,122857,2982 +10825,136752,15511 +10826,45191,85804 +10827,38107,35430 +10828,8584,961 +10829,24955,19000 +10830,7229,11037 +10831,27917,2650 +10832,80717,6458 +10833,297762,507 +10834,202241,8411 +10835,126323,5357 +10836,108003,10761 +10837,10173,3495 +10838,69060,62730 +10839,8981,52723 +10840,13710,9 +10841,101998,46513 +10842,335869,62513 +10843,239562,1632 +10844,118139,6194 +10845,9664,6277 +10846,44328,45867 +10847,46567,1527 +10848,3587,6194 +10849,12186,360 +10850,41115,68053 +10851,10703,4054 +10852,74878,1603 +10853,61121,70462 +10854,10137,441 +10855,24486,8363 +10856,868,564 +10857,145162,8411 +10858,12477,5844 +10859,360784,6194 +10860,11333,17956 +10861,27221,1448 +10862,15321,21629 +10863,179818,8411 +10864,21159,4141 +10865,52395,12360 +10866,10645,2051 +10867,13616,73898 +10868,77165,80975 +10869,9264,12 +10870,2757,1274 +10871,43023,10329 +10872,28000,8411 +10873,14527,12800 +10874,174195,4395 +10875,2085,1885 +10876,6068,9195 +10877,344170,15393 +10878,337339,7154 +10879,16432,44829 +10880,14452,3495 +10881,256836,30601 +10882,136368,79046 +10883,22259,4082 +10884,168022,328 +10885,133523,10769 +10886,10222,4255 +10887,12783,892 +10888,28068,4948 +10889,257454,1221 +10890,12450,3282 +10891,16235,10308 +10892,126754,13071 +10893,39072,5749 +10894,56807,94978 +10895,82696,771 +10896,85431,81496 +10897,38875,2219 +10898,92389,4 +10899,54662,7305 +10900,84226,44816 +10901,12230,3166 +10902,431093,86274 +10903,64393,886 +10904,294254,22213 +10905,55615,12081 +10906,539,10717 +10907,98536,6194 +10908,28071,38791 +10909,22881,1088 +10910,44657,33333 +10911,226672,58546 +10912,82327,12390 +10913,67822,36555 +10914,310119,1092 +10915,662,6116 +10916,258251,28877 +10917,2172,14723 +10918,241239,53656 +10919,8816,7931 +10920,33273,7345 +10921,46286,30393 +10922,431093,17024 +10923,11889,763 +10924,163111,36412 +10925,65035,43253 +10926,264560,4106 +10927,100661,9345 +10928,99318,8411 +10929,47536,21 +10930,13437,6370 +10931,48791,53267 +10932,45752,2786 +10933,127864,6639 +10934,1247,70 +10935,4254,66326 +10936,49843,19451 +10937,84305,1785 +10938,72013,20659 +10939,258193,31473 +10940,284467,33 +10941,211166,34786 +10942,19348,127 +10943,14552,47848 +10944,384130,5996 +10945,25500,8799 +10946,311324,86433 +10947,31867,6452 +10948,1482,1596 +10949,82941,39825 +10950,14874,37310 +10951,16873,3223 +10952,74777,24563 +10953,2441,32718 +10954,320873,68466 +10955,80304,2088 +10956,197696,856 +10957,121530,28763 +10958,6973,11509 +10959,159810,2278 +10960,213110,2526 +10961,2009,73926 +10962,41380,3055 +10963,108822,10645 +10964,55725,43 +10965,21544,58583 +10966,45243,923 +10967,31586,97 +10968,42218,1819 +10969,41714,22253 +10970,283701,254 +10971,182415,1082 +10972,25716,4640 +10973,134355,13684 +10974,42501,1497 +10975,2830,7405 +10976,43364,9303 +10977,50838,7775 +10978,33642,5316 +10979,8464,1203 +10980,58692,23378 +10981,24963,10968 +10982,28573,4834 +10983,59117,6538 +10984,125926,1728 +10985,13571,4 +10986,40146,13363 +10987,26486,59955 +10988,18897,3307 +10989,94204,34 +10990,267935,2 +10991,296524,6735 +10992,122677,4951 +10993,44105,7254 +10994,76203,9349 +10995,345775,76914 +10996,123047,26373 +10997,72660,28440 +10998,112531,3707 +10999,55663,71109 +11000,293660,11307 +11001,111332,574 +11002,256311,4606 +11003,363757,1429 +11004,293625,27805 +11005,323690,21206 +11006,13092,2731 +11007,87516,4319 +11008,73772,22309 +11009,8414,2412 +11010,809,520 +11011,35696,10210 +11012,11129,2937 +11013,46623,8411 +11014,46420,3427 +11015,41996,364 +11016,244403,13238 +11017,374475,201 +11018,198663,3672 +11019,45938,34757 +11020,144183,19423 +11021,43092,14003 +11022,47851,13464 +11023,61991,1060 +11024,98277,14324 +11025,838,33 +11026,89287,9209 +11027,50363,659 +11028,389972,5906 +11029,183073,13884 +11030,34193,306 +11031,32634,441 +11032,14750,306 +11033,26642,5940 +11034,16371,3184 +11035,75174,10427 +11036,81477,13992 +11037,198652,94225 +11038,28775,4866 +11039,8371,7025 +11040,300090,38159 +11041,381255,796 +11042,2441,82310 +11043,4520,97 +11044,19621,3649 +11045,37926,36881 +11046,335897,6938 +11047,434873,86331 +11048,76494,11317 +11049,72640,61 +11050,1907,359 +11051,84907,8516 +11052,20003,306 +11053,22398,3766 +11054,13728,22758 +11055,353979,87331 +11056,31372,882 +11057,435,11362 +11058,17771,3386 +11059,9457,1504 +11060,691,60 +11061,41645,328 +11062,99698,3984 +11063,36785,5625 +11064,208436,18371 +11065,2566,147 +11066,60086,3545 +11067,435,347 +11068,309929,7060 +11069,82911,5227 +11070,49009,76067 +11071,1272,284 +11072,246355,2061 +11073,47959,6246 +11074,41599,11865 +11075,8852,14723 +11076,242090,20671 +11077,17893,12010 +11078,134368,2373 +11079,224944,47547 +11080,300769,1442 +11081,313896,1775 +11082,391757,29097 +11083,312831,67260 +11084,21371,10944 +11085,115276,10393 +11086,26005,5922 +11087,85411,8797 +11088,352186,1473 +11089,395992,7431 +11090,9475,136 +11091,354979,83037 +11092,186997,26255 +11093,323929,41077 +11094,399790,61770 +11095,83342,200 +11096,47412,86290 +11097,29805,14374 +11098,9950,9037 +11099,243568,8899 +11100,70863,7537 +11101,273096,41861 +11102,301804,7295 +11103,195544,2683 +11104,38150,2451 +11105,1589,8934 +11106,80264,441 +11107,110447,10102 +11108,33623,12030 +11109,2009,5545 +11110,9841,2786 +11111,1995,19105 +11112,376501,52738 +11113,40081,5798 +11114,10053,3287 +11115,14525,2928 +11116,8672,7025 +11117,616,20634 +11118,303542,22393 +11119,140222,11165 +11120,50779,14862 +11121,81604,14599 +11122,27380,16379 +11123,326723,639 +11124,126319,6973 +11125,121923,93566 +11126,6977,14 +11127,261101,10346 +11128,25694,4 +11129,16643,1302 +11130,101998,11895 +11131,2742,1200 +11132,83788,7948 +11133,128215,16568 +11134,405473,30280 +11135,393659,77762 +11136,21032,4105 +11137,345922,84135 +11138,21525,4 +11139,127329,17820 +11140,49500,11493 +11141,15907,1512 +11142,30374,4 +11143,278334,2266 +11144,9358,12 +11145,64627,70154 +11146,42045,559 +11147,40978,6060 +11148,660,8411 +11149,2486,289 +11150,15177,3049 +11151,262975,11745 +11152,158990,20857 +11153,64928,3245 +11154,81001,306 +11155,19506,15270 +11156,115223,33 +11157,239563,7076 +11158,46387,66728 +11159,8929,2568 +11160,98094,24338 +11161,35026,30994 +11162,347979,9342 +11163,308639,14638 +11164,285213,7819 +11165,129277,54377 +11166,8970,2232 +11167,21605,5521 +11168,47144,83479 +11169,74666,26629 +11170,125513,5542 +11171,149232,33569 +11172,226672,22705 +11173,31364,8147 +11174,241254,33832 +11175,195385,17741 +11176,2085,6194 +11177,203217,13969 +11178,148265,44161 +11179,252171,34519 +11180,29108,52539 +11181,205724,38506 +11182,23128,6735 +11183,72917,83 +11184,98586,6780 +11185,306323,71702 +11186,105833,13246 +11187,185354,46567 +11188,13062,2 +11189,27105,8411 +11190,137321,79 +11191,199851,24727 +11192,127521,23283 +11193,329805,10611 +11194,375355,86622 +11195,17614,91 +11196,1251,171 +11197,47493,58240 +11198,269,10906 +11199,64944,22319 +11200,329010,3898 +11201,11381,4 +11202,50759,4641 +11203,414910,81185 +11204,10201,79 +11205,59118,3823 +11206,103539,3623 +11207,11077,33 +11208,351862,50510 +11209,104556,6 +11210,7233,3929 +11211,58251,1873 +11212,64685,258 +11213,206563,345 +11214,18317,37449 +11215,31005,41251 +11216,36236,64 +11217,16083,3135 +11218,10176,6927 +11219,340176,6919 +11220,344906,55686 +11221,28820,14799 +11222,378446,11795 +11223,190853,3500 +11224,229297,23716 +11225,242551,41671 +11226,74126,5070 +11227,66113,7584 +11228,29192,15242 +11229,234862,21018 +11230,46931,6154 +11231,64454,38298 +11232,67693,25072 +11233,84772,36181 +11234,20806,6028 +11235,98870,34455 +11236,8870,6194 +11237,4820,8411 +11238,310888,53215 +11239,82990,3172 +11240,47535,3448 +11241,38509,4665 +11242,71945,8411 +11243,277355,20671 +11244,426230,72725 +11245,58903,17915 +11246,107028,15980 +11247,9667,3801 +11248,445,5870 +11249,356332,64716 +11250,42057,7620 +11251,14217,955 +11252,6038,158 +11253,79316,1302 +11254,37936,4952 +11255,341886,25884 +11256,24123,55639 +11257,8292,4 +11258,18098,6408 +11259,19794,2224 +11260,26693,4562 +11261,31262,5132 +11262,174751,13403 +11263,418969,53015 +11264,372226,14143 +11265,270403,20881 +11266,321644,45012 +11267,73984,21641 +11268,64167,5358 +11269,11171,20993 +11270,203264,5677 +11271,108,1610 +11272,7237,78412 +11273,43093,14056 +11274,84772,50574 +11275,32166,35459 +11276,58080,10000 +11277,125548,40968 +11278,10867,14 +11279,41714,53901 +11280,134350,28045 +11281,73697,819 +11282,107073,22625 +11283,270400,3500 +11284,4983,1812 +11285,31880,18668 +11286,1661,1972 +11287,62297,21507 +11288,255491,20991 +11289,103597,6916 +11290,184155,19126 +11291,2080,9168 +11292,145244,11702 +11293,16643,508 +11294,9471,4022 +11295,78571,18479 +11296,93676,3193 +11297,20919,45881 +11298,153717,21404 +11299,6145,41359 +11300,21029,79025 +11301,63498,11426 +11302,290864,45425 +11303,10178,893 +11304,19398,53823 +11305,104945,12778 +11306,44105,75419 +11307,252102,35562 +11308,369033,55570 +11309,42674,371 +11310,1922,792 +11311,11607,559 +11312,11321,5 +11313,188357,21820 +11314,43875,6 +11315,413770,84772 +11316,3092,1318 +11317,116894,7483 +11318,367006,44821 +11319,17238,34472 +11320,573,33 +11321,2604,33 +11322,302118,38018 +11323,362045,3171 +11324,259,53 +11325,9292,559 +11326,81538,80136 +11327,81616,5766 +11328,33224,5266 +11329,16890,54818 +11330,1690,1507 +11331,82501,6555 +11332,28437,4802 +11333,2144,987 +11334,300090,65649 +11335,172828,19761 +11336,26378,6194 +11337,243940,3172 +11338,49343,927 +11339,83501,91210 +11340,16784,89720 +11341,613,7025 +11342,349028,59558 +11343,18111,4065 +11344,9472,12178 +11345,303636,17555 +11346,8588,5766 +11347,10204,53416 +11348,42267,44142 +11349,47211,1661 +11350,290764,82423 +11351,336804,22627 +11352,32058,11616 +11353,2486,2735 +11354,359154,25221 +11355,238,10211 +11356,407531,79546 +11357,257907,73631 +11358,78571,11391 +11359,58060,1533 +11360,209401,49944 +11361,287305,7025 +11362,8842,4 +11363,57307,5358 +11364,377362,33197 +11365,5924,60832 +11366,42187,20813 +11367,30527,5056 +11368,272426,1589 +11369,7972,2286 +11370,31042,18215 +11371,43469,54849 +11372,411442,81614 +11373,242131,441 +11374,82279,6062 +11375,46420,11840 +11376,10917,37177 +11377,41759,36887 +11378,107430,17069 +11379,38850,56012 +11380,2001,376 +11381,66967,29851 +11382,13162,4004 +11383,301729,37723 +11384,338438,8500 +11385,1942,800 +11386,205076,2865 +11387,1428,10807 +11388,9993,6237 +11389,11024,748 +11390,407531,79548 +11391,82745,72537 +11392,15981,56674 +11393,21583,737 +11394,405670,16906 +11395,51250,5830 +11396,74585,75626 +11397,19181,7446 +11398,16177,70733 +11399,21753,76942 +11400,13596,2953 +11401,158015,3172 +11402,232462,4792 +11403,10364,4 +11404,20880,3863 +11405,62764,12008 +11406,405473,5267 +11407,43896,6 +11408,62675,7961 +11409,89086,306 +11410,4012,1539 +11411,15045,306 +11412,322548,19548 +11413,266082,6916 +11414,205481,307 +11415,10409,62139 +11416,241374,8411 +11417,340488,1719 +11418,68569,1758 +11419,367006,1728 +11420,161073,3040 +11421,56653,18367 +11422,338100,41032 +11423,329868,11994 +11424,49500,3525 +11425,38060,8402 +11426,198277,11448 +11427,70074,3608 +11428,317,167 +11429,75233,49936 +11430,354979,83039 +11431,177190,3245 +11432,77338,7038 +11433,48508,20811 +11434,26491,31183 +11435,19398,1615 +11436,31561,14028 +11437,82624,12219 +11438,55343,77733 +11439,82703,520 +11440,35652,3293 +11441,156335,4743 +11442,88583,18201 +11443,360592,63690 +11444,49258,5906 +11445,2009,73927 +11446,10201,80 +11447,282762,23868 +11448,1058,651 +11449,433471,3 +11450,11531,2188 +11451,9519,1271 +11452,13685,18 +11453,416569,81500 +11454,125257,71843 +11455,10077,87850 +11456,2993,2324 +11457,11879,13956 +11458,310593,11752 +11459,112991,62138 +11460,33680,8411 +11461,41211,10146 +11462,8842,53906 +11463,19958,3688 +11464,30330,8816 +11465,2669,10308 +11466,439998,6246 +11467,258947,27318 +11468,3172,1171 +11469,14833,2969 +11470,17654,559 +11471,65002,1281 +11472,320318,11773 +11473,201223,2883 +11474,198511,7025 +11475,82501,7457 +11476,22398,19323 +11477,335819,52295 +11478,42136,4952 +11479,345925,59592 +11480,39435,441 +11481,36797,175 +11482,383535,41735 +11483,39428,94477 +11484,1116,2452 +11485,508,33 +11486,257447,68261 +11487,29698,288 +11488,252028,12025 +11489,2453,22058 +11490,17495,35461 +11491,238589,28176 +11492,12113,6194 +11493,47876,33 +11494,419601,5120 +11495,337758,33214 +11496,114108,7159 +11497,322548,45515 +11498,9613,16419 +11499,163,79 +11500,12483,15106 +11501,263855,39704 +11502,408024,10611 +11503,14430,2911 +11504,75622,22843 +11505,41171,14589 +11506,54898,223 +11507,178809,43808 +11508,284296,24021 +11509,39001,11343 +11510,28209,4765 +11511,73873,8717 +11512,13792,7888 +11513,11351,53348 +11514,39995,22046 +11515,78568,874 +11516,5332,1898 +11517,125249,441 +11518,245891,36259 +11519,137315,50915 +11520,257534,1394 +11521,327383,7680 +11522,120657,8411 +11523,47489,17219 +11524,73969,21540 +11525,61035,7247 +11526,78281,67892 +11527,282070,6452 +11528,13596,1632 +11529,2108,11043 +11530,175171,8411 +11531,57627,24980 +11532,43340,1823 +11533,79728,2577 +11534,4913,8857 +11535,77057,75862 +11536,31503,9195 +11537,332872,103 +11538,336004,67777 +11539,185153,2370 +11540,159824,2251 +11541,254188,36228 +11542,37126,4278 +11543,10075,51851 +11544,4551,216 +11545,259183,19980 +11546,33315,18758 +11547,39127,995 +11548,54700,52160 +11549,577,441 +11550,5552,21631 +11551,2907,258 +11552,73624,13969 +11553,36245,4781 +11554,16428,3287 +11555,27480,15089 +11556,293262,10146 +11557,376501,54391 +11558,18045,3435 +11559,217412,7930 +11560,28761,6194 +11561,78734,306 +11562,377853,22261 +11563,345775,76913 +11564,107811,10227 +11565,206563,10163 +11566,43670,888 +11567,59861,7460 +11568,24392,24734 +11569,259616,602 +11570,48131,14698 +11571,310133,51611 +11572,300490,37124 +11573,11979,67989 +11574,10735,6194 +11575,199373,5830 +11576,152532,33 +11577,21325,882 +11578,11137,13923 +11579,9894,441 +11580,3577,1478 +11581,14349,816 +11582,28323,3434 +11583,16182,3157 +11584,417489,68273 +11585,10041,7155 +11586,11333,17955 +11587,127560,1471 +11588,64868,3166 +11589,27681,3213 +11590,11895,6194 +11591,10874,2504 +11592,85317,1038 +11593,25520,6705 +11594,382995,9290 +11595,145220,32 +11596,90030,13749 +11597,87204,7446 +11598,92311,5 +11599,55500,38407 +11600,243683,491 +11601,8842,53673 +11602,45649,20856 +11603,46773,65553 +11604,13678,11745 +11605,47559,4234 +11606,10482,33 +11607,14923,3849 +11608,28592,4843 +11609,359471,35396 +11610,39176,538 +11611,178,8411 +11612,60855,8 +11613,4520,679 +11614,32166,5358 +11615,44238,157 +11616,18051,2365 +11617,14660,52180 +11618,11521,41 +11619,29611,5999 +11620,34840,5358 +11621,49847,11605 +11622,97365,11794 +11623,135390,78546 +11624,321497,5387 +11625,19901,3135 +11626,215032,26103 +11627,237796,7680 +11628,28031,598 +11629,49500,11494 +11630,48207,4597 +11631,264746,7083 +11632,21447,8124 +11633,24624,7793 +11634,85844,5070 +11635,13336,9 +11636,105763,23647 +11637,141267,235 +11638,32082,17088 +11639,9013,136 +11640,14069,2073 +11641,27409,6397 +11642,199887,6529 +11643,887,28205 +11644,127544,12657 +11645,17771,803 +11646,2047,33 +11647,226632,21206 +11648,35404,3468 +11649,210615,15868 +11650,336691,69765 +11651,42448,306 +11652,76544,79 +11653,199575,23815 +11654,85837,38609 +11655,8329,3631 +11656,174769,6 +11657,165864,11391 +11658,169355,4 +11659,125300,15042 +11660,6963,4 +11661,84178,10285 +11662,362057,3172 +11663,14317,4 +11664,1247,33 +11665,54227,3166 +11666,11633,1393 +11667,20879,10845 +11668,33025,8411 +11669,14400,856 +11670,12764,16414 +11671,20200,3823 +11672,28118,5644 +11673,290656,23928 +11674,36657,9168 +11675,11227,6896 +11676,150247,8411 +11677,98066,3172 +11678,12912,97 +11679,301491,12093 +11680,14522,6194 +11681,38317,3045 +11682,14554,8411 +11683,180418,7680 +11684,84903,441 +11685,57201,130 +11686,15497,306 +11687,44282,20838 +11688,4960,1785 +11689,17566,1077 +11690,326285,35 +11691,390547,8078 +11692,153141,80551 +11693,369524,39644 +11694,70667,14756 +11695,26864,302 +11696,186759,5490 +11697,104739,55217 +11698,10795,2612 +11699,169881,64893 +11700,25834,24257 +11701,97614,1030 +11702,16094,12 +11703,77585,5176 +11704,9968,826 +11705,81522,1714 +11706,17347,790 +11707,116463,10345 +11708,11362,9195 +11709,23155,5887 +11710,32395,2293 +11711,44566,60536 +11712,393407,856 +11713,419430,3172 +11714,12573,7295 +11715,10797,235 +11716,134656,32299 +11717,329135,3118 +11718,413782,88543 +11719,26223,5357 +11720,43079,6564 +11721,10610,3320 +11722,134750,15634 +11723,429174,5630 +11724,69315,3585 +11725,16032,513 +11726,194393,4928 +11727,228066,306 +11728,13468,14728 +11729,13542,1066 +11730,29272,18586 +11731,86718,7125 +11732,5289,26144 +11733,127585,76043 +11734,33839,306 +11735,291164,68222 +11736,19765,75190 +11737,29263,79898 +11738,177085,8992 +11739,55846,9987 +11740,415255,81235 +11741,43641,429 +11742,226672,5635 +11743,12811,93149 +11744,10910,60 +11745,82679,10039 +11746,80988,71334 +11747,8942,14862 +11748,28063,1679 +11749,12593,14238 +11750,17457,3320 +11751,6443,19677 +11752,17622,11667 +11753,124633,393 +11754,71825,36146 +11755,264525,21805 +11756,86829,5490 +11757,315846,9149 +11758,60899,35794 +11759,385750,65191 +11760,269246,429 +11761,18897,12032 +11762,41252,12877 +11763,69103,3166 +11764,40662,429 +11765,21250,4 +11766,24154,4287 +11767,340488,87721 +11768,119374,16418 +11769,42599,8623 +11770,2017,16921 +11771,73981,13198 +11772,257537,7201 +11773,4365,1665 +11774,37590,11237 +11775,27989,1030 +11776,21132,11391 +11777,8342,85744 +11778,134350,4673 +11779,8985,2075 +11780,16162,33 +11781,203351,1311 +11782,314420,4748 +11783,99545,33 +11784,42206,10869 +11785,742,235 +11786,10396,6194 +11787,43670,52766 +11788,61578,635 +11789,2001,5 +11790,327083,2933 +11791,169343,6111 +11792,18937,6194 +11793,96419,17390 +11794,2143,986 +11795,158750,11130 +11796,116711,9383 +11797,5491,1403 +11798,70815,55319 +11799,336655,2567 +11800,156360,6 +11801,149870,11848 +11802,30141,1363 +11803,9793,444 +11804,365942,30131 +11805,50387,32473 +11806,150117,104 +11807,209271,20313 +11808,54715,205 +11809,31911,6194 +11810,5460,333 +11811,11186,33 +11812,52520,831 +11813,287170,4207 +11814,5922,2070 +11815,321303,5240 +11816,8985,51980 +11817,18222,12 +11818,44105,43382 +11819,15944,3166 +11820,2196,1012 +11821,108312,3906 +11822,2778,41 +11823,2786,1216 +11824,7233,306 +11825,232462,18297 +11826,66125,56787 +11827,284189,11795 +11828,2998,8411 +11829,49522,2310 +11830,194407,72613 +11831,158908,19761 +11832,27637,4606 +11833,17238,34471 +11834,272072,18180 +11835,45019,915 +11836,15440,3079 +11837,121888,79168 +11838,345775,851 +11839,12129,3166 +11840,67018,928 +11841,63217,64758 +11842,340176,69969 +11843,22897,33 +11844,43792,8411 +11845,61541,8411 +11846,424488,19483 +11847,356156,5897 +11848,382597,23441 +11849,292014,46315 +11850,288526,12093 +11851,36657,431 +11852,351862,21398 +11853,99567,20287 +11854,191502,14564 +11855,35284,1216 +11856,55735,28236 +11857,11813,32208 +11858,16137,2317 +11859,33343,15362 +11860,102197,9342 +11861,17609,6916 +11862,294651,4641 +11863,25738,19760 +11864,41115,33155 +11865,120172,74910 +11866,35639,25894 +11867,360737,2710 +11868,42170,5070 +11869,45987,881 +11870,28533,4827 +11871,22618,4123 +11872,131739,9300 +11873,11812,85 +11874,469172,19609 +11875,34506,2789 +11876,10207,813 +11877,329805,11795 +11878,282069,11848 +11879,80264,388 +11880,282024,3006 +11881,30059,688 +11882,40624,934 +11883,57775,318 +11884,107096,21437 +11885,52859,60 +11886,332979,86096 +11887,407,67261 +11888,15022,2374 +11889,102428,18612 +11890,11876,582 +11891,347331,57187 +11892,39781,23910 +11893,31462,306 +11894,381645,85668 +11895,16638,10253 +11896,8388,960 +11897,38978,1980 +11898,70981,444 +11899,77381,2502 +11900,11879,484 +11901,1912,122 +11902,267935,10221 +11903,382597,356 +11904,75595,8755 +11905,104466,47270 +11906,61765,12111 +11907,346723,56780 +11908,215741,48690 +11909,59387,7899 +11910,337107,5358 +11911,72086,13992 +11912,22779,3166 +11913,134435,4928 +11914,57011,955 +11915,18551,19534 +11916,25143,18942 +11917,42648,14982 +11918,66187,22710 +11919,28974,11511 +11920,215379,38284 +11921,549,93381 +11922,360737,3391 +11923,348025,16259 +11924,2731,84954 +11925,1634,644 +11926,1690,1631 +11927,343702,591 +11928,37725,2844 +11929,47886,11480 +11930,142402,15798 +11931,51836,63226 +11932,339527,20313 +11933,48205,533 +11934,49097,69329 +11935,393172,86092 +11936,96133,9237 +11937,17622,8582 +11938,90001,14599 +11939,142061,429 +11940,128284,51322 +11941,14569,2929 +11942,82817,3060 +11943,71329,75513 +11944,544,306 +11945,57327,6962 +11946,23823,47 +11947,1690,1632 +11948,225503,62562 +11949,8325,856 +11950,369697,22841 +11951,80094,1931 +11952,8988,4 +11953,10915,1869 +11954,53622,35430 +11955,370755,20580 +11956,56292,21777 +11957,8932,8470 +11958,16281,6194 +11959,5646,1943 +11960,19350,3039 +11961,250066,44884 +11962,1282,794 +11963,47144,31157 +11964,24775,11061 +11965,8128,2330 +11966,2029,63893 +11967,3870,4 +11968,77010,51321 +11969,12144,20448 +11970,341077,70879 +11971,19495,3624 +11972,21135,9387 +11973,11561,13954 +11974,40229,17096 +11975,5516,3638 +11976,377691,93815 +11977,247500,19139 +11978,45512,73264 +11979,59726,23936 +11980,79935,8501 +11981,320588,19548 +11982,314283,39771 +11983,22007,10254 +11984,9095,18737 +11985,339669,20187 +11986,21849,6194 +11987,284096,635 +11988,11004,3324 +11989,5552,1169 +11990,21057,20192 +11991,40859,64335 +11992,33336,22275 +11993,281418,22062 +11994,91679,3728 +11995,59117,9335 +11996,15943,3166 +11997,52109,4110 +11998,79218,9383 +11999,72421,17051 +12000,86236,898 +12001,21786,3079 +12002,27338,16323 +12003,296523,5294 +12004,51370,5826 +12005,10735,67991 +12006,32068,12265 +12007,340961,68231 +12008,32395,3782 +12009,14134,3653 +12010,88036,11341 +12011,70734,19599 +12012,21052,694 +12013,30363,11895 +12014,96107,8411 +12015,499,109 +12016,45213,1477 +12017,18586,46317 +12018,97630,13184 +12019,11475,2303 +12020,258509,22213 +12021,90800,15653 +12022,85265,10417 +12023,19740,13 +12024,28739,2763 +12025,106747,13241 +12026,16921,2248 +12027,300669,3287 +12028,230179,62408 +12029,34838,718 +12030,319513,18485 +12031,72032,64 +12032,271718,10105 +12033,52949,67881 +12034,112885,8411 +12035,161795,40955 +12036,26949,15846 +12037,115023,11081 +12038,6643,14269 +12039,19794,25473 +12040,109477,93933 +12041,173205,73067 +12042,71329,75518 +12043,14217,3363 +12044,50838,8582 +12045,133458,1929 +12046,164366,626 +12047,2029,883 +12048,17771,2051 +12049,68569,843 +12050,274857,6194 +12051,103875,94 +12052,56807,94977 +12053,97707,4606 +12054,3063,4 +12055,49717,17540 +12056,10466,33 +12057,48791,7110 +12058,245891,6194 +12059,24469,288 +12060,95627,1596 +12061,54405,14 +12062,99861,420 +12063,281968,60215 +12064,11370,19944 +12065,280422,42097 +12066,174611,16048 +12067,261037,8147 +12068,344147,16839 +12069,26761,11276 +12070,17926,995 +12071,11688,2 +12072,11800,8 +12073,89325,13040 +12074,47412,4 +12075,1427,5755 +12076,81541,13786 +12077,195796,18178 +12078,51423,7330 +12079,10268,9 +12080,22476,4097 +12081,33107,2289 +12082,12636,622 +12083,41312,15913 +12084,74314,4 +12085,899,60 +12086,59678,5870 +12087,11975,4 +12088,9664,3241 +12089,10025,890 +12090,44442,3061 +12091,28973,1315 +12092,38107,4395 +12093,15179,7937 +12094,153795,10254 +12095,127560,1632 +12096,179826,16278 +12097,244316,23596 +12098,353979,24428 +12099,38580,2 +12100,406052,80778 +12101,384737,85885 +12102,50166,7964 +12103,59118,11107 +12104,430365,1115 +12105,9274,21248 +12106,11172,97 +12107,337789,4 +12108,68797,55649 +12109,114931,665 +12110,157829,10425 +12111,18093,55424 +12112,144613,6194 +12113,42619,33 +12114,51267,19804 +12115,1717,7295 +12116,21950,1950 +12117,9451,746 +12118,12446,744 +12119,62463,181 +12120,49974,27124 +12121,30363,8366 +12122,9423,657 +12123,153795,13621 +12124,20623,80066 +12125,338189,9209 +12126,124979,67128 +12127,198227,4 +12128,86305,17561 +12129,327389,13152 +12130,37315,60 +12131,31275,46907 +12132,54406,5996 +12133,96132,1216 +12134,23590,66465 +12135,16417,1066 +12136,310119,80060 +12137,214081,33961 +12138,257534,4606 +12139,15060,29500 +12140,1984,441 +12141,15239,3052 +12142,362974,7819 +12143,41312,63030 +12144,15601,2785 +12145,7353,830 +12146,58060,26261 +12147,4547,1685 +12148,798,509 +12149,10390,33 +12150,69,6402 +12151,13849,2690 +12152,19552,5869 +12153,382591,7460 +12154,317114,23868 +12155,85699,1635 +12156,78571,10146 +12157,2454,5888 +12158,108048,875 +12159,396643,3750 +12160,13519,2483 +12161,86838,5490 +12162,64944,21990 +12163,78210,5281 +12164,72900,3631 +12165,38021,18367 +12166,320453,78851 +12167,18673,1841 +12168,44896,3281 +12169,9406,915 +12170,225728,7217 +12171,298722,10975 +12172,42094,5 +12173,43497,5 +12174,382170,2487 +12175,28586,14270 +12176,146,58 +12177,1969,6586 +12178,48594,8530 +12179,35435,12657 +12180,12720,1195 +12181,23367,10221 +12182,6417,404 +12183,8325,45826 +12184,2061,20987 +12185,355008,61115 +12186,44754,932 +12187,13090,7374 +12188,393559,7034 +12189,109298,3166 +12190,164954,3166 +12191,11983,6194 +12192,277237,34338 +12193,27122,2828 +12194,12525,66755 +12195,16523,4171 +12196,9325,2 +12197,66022,1830 +12198,347331,57186 +12199,325189,27095 +12200,3164,1347 +12201,28169,3052 +12202,109329,16685 +12203,12089,17873 +12204,18998,467 +12205,395479,93645 +12206,16899,6901 +12207,3478,8411 +12208,38869,1829 +12209,31742,90611 +12210,35895,15606 +12211,19255,10146 +12212,39781,23913 +12213,19108,69832 +12214,221171,6147 +12215,315837,83645 +12216,89247,10119 +12217,140554,1760 +12218,353728,82551 +12219,14052,10201 +12220,19754,3668 +12221,27986,4 +12222,226140,10339 +12223,75066,1541 +12224,17831,8411 +12225,1912,3391 +12226,77664,4016 +12227,225499,8411 +12228,139455,18949 +12229,259358,3134 +12230,8915,24885 +12231,9593,441 +12232,2309,20360 +12233,363841,65428 +12234,27671,47687 +12235,130739,5766 +12236,43976,60000 +12237,137182,24846 +12238,334527,50491 +12239,36657,19551 +12240,13061,3 +12241,17350,1115 +12242,378446,5358 +12243,35021,19150 +12244,2012,864 +12245,180635,4 +12246,436340,16882 +12247,159474,641 +12248,12476,68949 +12249,43407,622 +12250,120109,441 +12251,76170,7505 +12252,152737,22695 +12253,10407,33 +12254,41211,7038 +12255,319092,86139 +12256,41187,43382 +12257,12220,33 +12258,60623,875 +12259,27112,49755 +12260,29952,21914 +12261,47703,9040 +12262,396392,3039 +12263,168027,3120 +12264,1950,6194 +12265,41035,5 +12266,28469,3391 +12267,244,6 +12268,8588,2452 +12269,14226,10284 +12270,7288,2214 +12271,18015,9077 +12272,11206,6194 +12273,28510,23423 +12274,26841,21703 +12275,18133,9195 +12276,278706,26004 +12277,340027,12217 +12278,4964,33 +12279,237796,8209 +12280,257088,1088 +12281,144183,5417 +12282,10529,20571 +12283,87612,3245 +12284,11577,8411 +12285,14518,6553 +12286,18070,3495 +12287,13507,5358 +12288,48617,64945 +12289,25969,12 +12290,70133,7782 +12291,38099,2521 +12292,17483,3328 +12293,13934,3 +12294,7548,2267 +12295,325385,87696 +12296,113175,4343 +12297,9785,915 +12298,261037,45783 +12299,44414,8411 +12300,77459,1075 +12301,1773,441 +12302,315841,567 +12303,106131,30257 +12304,198663,290 +12305,116762,33130 +12306,39308,1314 +12307,200311,44093 +12308,55167,17644 +12309,10696,89628 +12310,9555,57623 +12311,107250,2476 +12312,160046,14599 +12313,10973,10330 +12314,329550,75379 +12315,323675,83397 +12316,44877,22310 +12317,31522,8930 +12318,1450,11552 +12319,13853,69889 +12320,182228,14290 +12321,1790,3760 +12322,5172,1861 +12323,309809,8858 +12324,398289,53531 +12325,117913,36389 +12326,10733,9195 +12327,36691,10254 +12328,422878,82830 +12329,83119,3632 +12330,331354,33916 +12331,285840,6587 +12332,46875,306 +12333,24757,22793 +12334,396392,6425 +12335,30527,5054 +12336,362045,3653 +12337,24775,11062 +12338,289,6194 +12339,398891,78371 +12340,52705,512 +12341,107028,16710 +12342,31037,42 +12343,42571,6246 +12344,42066,5 +12345,72917,5967 +12346,72204,14599 +12347,370687,52699 +12348,347031,41077 +12349,13653,2794 +12350,48852,1176 +12351,26891,201 +12352,56601,19902 +12353,12780,2521 +12354,135708,55060 +12355,11171,1474 +12356,23518,3810 +12357,124075,16844 +12358,5928,599 +12359,3782,882 +12360,63498,11425 +12361,2742,806 +12362,44155,5358 +12363,25499,503 +12364,21208,5870 +12365,126090,16897 +12366,14531,20267 +12367,170430,8335 +12368,88075,6 +12369,177104,13567 +12370,50647,10105 +12371,21712,11671 +12372,13173,14576 +12373,227975,11445 +12374,67342,657 +12375,8128,210 +12376,53574,4 +12377,122081,8924 +12378,266082,11246 +12379,11879,13957 +12380,47715,1042 +12381,273106,24067 +12382,76609,2577 +12383,16784,763 +12384,11449,9266 +12385,125344,26600 +12386,109329,3166 +12387,156597,24630 +12388,15559,5018 +12389,125490,7799 +12390,45649,6916 +12391,17044,763 +12392,1950,79 +12393,83491,10845 +12394,347807,80112 +12395,458428,90595 +12396,54243,36613 +12397,267977,75140 +12398,71191,1075 +12399,121052,12146 +12400,78210,8799 +12401,4441,211 +12402,2611,306 +12403,922,182 +12404,261207,10915 +12405,199602,34679 +12406,59803,15933 +12407,118737,3349 +12408,14429,306 +12409,309809,15433 +12410,394723,8046 +12411,227700,11565 +12412,421958,74 +12413,21828,2537 +12414,75229,254 +12415,385654,1653 +12416,10804,33 +12417,17082,5552 +12418,141819,64231 +12419,38021,6584 +12420,132426,7429 +12421,319986,47561 +12422,26005,5923 +12423,43384,8411 +12424,290555,49925 +12425,334074,925 +12426,273404,24195 +12427,302666,41945 +12428,266568,1251 +12429,38883,11199 +12430,1595,742 +12431,18208,2909 +12432,14134,2343 +12433,11917,1632 +12434,127864,53195 +12435,272693,5490 +12436,149509,551 +12437,10860,1177 +12438,5967,1080 +12439,54256,64776 +12440,47046,61202 +12441,33305,8335 +12442,22606,35430 +12443,47312,14687 +12444,88042,10221 +12445,15640,424 +12446,19794,1843 +12447,146322,4952 +12448,18736,2 +12449,184341,52064 +12450,19901,8724 +12451,75622,22841 +12452,14644,3823 +12453,19142,46328 +12454,64454,8219 +12455,102384,13866 +12456,13506,3423 +12457,72822,3823 +12458,32068,12266 +12459,71376,1432 +12460,17654,11029 +12461,78522,1009 +12462,214910,11420 +12463,38356,22826 +12464,10207,788 +12465,48207,18170 +12466,246299,13892 +12467,31672,144 +12468,1956,32598 +12469,9816,53673 +12470,6951,554 +12471,15602,19464 +12472,86838,7281 +12473,82327,4247 +12474,12599,3627 +12475,14945,7967 +12476,345775,118 +12477,170936,1432 +12478,140818,3079 +12479,340616,83960 +12480,18,5 +12481,375742,74926 +12482,49689,584 +12483,11227,356 +12484,40983,8441 +12485,21671,20944 +12486,38987,25817 +12487,43903,6194 +12488,62837,10280 +12489,31347,20206 +12490,16356,803 +12491,85435,18989 +12492,21348,6973 +12493,297702,78185 +12494,85038,6246 +12495,12427,81321 +12496,336804,72919 +12497,4550,1689 +12498,40785,17513 +12499,48339,14938 +12500,1165,866 +12501,34326,9255 +12502,366860,67229 +12503,27523,1679 +12504,983,625 +12505,357851,62457 +12506,107693,11143 +12507,363413,65217 +12508,241968,2674 +12509,312221,8411 +12510,126516,10652 +12511,246127,19000 +12512,14527,8582 +12513,15762,559 +12514,268380,22937 +12515,257447,68265 +12516,117534,13969 +12517,41581,72996 +12518,53178,3166 +12519,60599,2394 +12520,26390,2435 +12521,83223,4835 +12522,339403,559 +12523,14459,23574 +12524,284564,37432 +12525,33339,26468 +12526,412851,4349 +12527,10400,10619 +12528,14369,9195 +12529,9495,6455 +12530,359255,65546 +12531,13483,2152 +12532,25376,5623 +12533,33460,5299 +12534,101998,12053 +12535,99367,1632 +12536,345775,76909 +12537,6687,12372 +12538,36334,306 +12539,71672,491 +12540,46786,4255 +12541,1396,5120 +12542,126927,13721 +12543,136743,33715 +12544,65713,5120 +12545,9966,3287 +12546,24559,4332 +12547,12573,5870 +12548,8049,2317 +12549,157384,26951 +12550,59981,48471 +12551,13507,11937 +12552,15414,34999 +12553,15749,4297 +12554,26486,9195 +12555,103578,15121 +12556,99312,3282 +12557,79593,915 +12558,16417,38208 +12559,293082,33199 +12560,10550,76492 +12561,91583,31394 +12562,366548,67037 +12563,189,11005 +12564,42996,14024 +12565,356191,54245 +12566,86472,7855 +12567,1640,12260 +12568,37050,11793 +12569,13823,79 +12570,332662,72663 +12571,175027,6 +12572,205864,29241 +12573,55934,6531 +12574,23128,4184 +12575,25625,17405 +12576,11788,7429 +12577,104739,10645 +12578,1271,2994 +12579,21966,6347 +12580,13437,6194 +12581,11692,54502 +12582,82941,11389 +12583,44398,11865 +12584,44945,65129 +12585,31146,126 +12586,435707,32485 +12587,79833,4056 +12588,10708,1302 +12589,241239,6735 +12590,6023,1088 +12591,655,8366 +12592,9286,48788 +12593,21734,33 +12594,64928,6194 +12595,38684,288 +12596,19238,2659 +12597,20075,5 +12598,227973,11749 +12599,271039,43256 +12600,286512,94 +12601,284053,420 +12602,390747,64282 +12603,263115,306 +12604,8341,2441 +12605,33135,21120 +12606,119738,4811 +12607,112991,65846 +12608,10691,12548 +12609,182131,50908 +12610,22579,19788 +12611,12783,7981 +12612,42345,4 +12613,22683,29646 +12614,241254,10405 +12615,310568,25539 +12616,16455,308 +12617,70695,3766 +12618,316042,43344 +12619,167810,2266 +12620,199851,11999 +12621,268350,14317 +12622,128364,16979 +12623,169068,11658 +12624,15016,6220 +12625,14527,19091 +12626,13667,11043 +12627,26961,4703 +12628,16157,4719 +12629,238589,3608 +12630,75066,14035 +12631,61984,7093 +12632,18897,11921 +12633,8617,2514 +12634,116350,68945 +12635,246403,13642 +12636,20034,2452 +12637,42837,7448 +12638,91679,88152 +12639,371459,69985 +12640,43009,6194 +12641,83389,10342 +12642,161880,8298 +12643,18044,2865 +12644,199155,10940 +12645,117212,9255 +12646,38765,6194 +12647,55294,11148 +12648,3580,7295 +12649,61151,6194 +12650,137853,35659 +12651,1903,485 +12652,88518,4688 +12653,80089,13412 +12654,13468,14731 +12655,43778,5175 +12656,359483,35389 +12657,1273,30900 +12658,68444,17355 +12659,158908,41640 +12660,15909,10202 +12661,177677,4 +12662,55420,8145 +12663,117506,5686 +12664,407,4606 +12665,4459,306 +12666,22579,8237 +12667,378087,8078 +12668,301348,6901 +12669,62488,11661 +12670,18763,2521 +12671,42787,20614 +12672,28571,4 +12673,157384,4748 +12674,60994,10254 +12675,369406,7584 +12676,95536,11143 +12677,110540,6 +12678,44502,23617 +12679,90030,13748 +12680,285135,30082 +12681,42258,9331 +12682,162056,20091 +12683,15640,2221 +12684,41495,8411 +12685,13336,6301 +12686,31287,12354 +12687,426230,50080 +12688,47310,8411 +12689,38322,81136 +12690,63831,83 +12691,58404,4087 +12692,310133,65906 +12693,214105,16 +12694,8342,85746 +12695,5,59 +12696,13842,4 +12697,237584,41077 +12698,4948,1820 +12699,136582,18367 +12700,294016,33603 +12701,50780,6735 +12702,58664,33862 +12703,33592,26932 +12704,126889,22213 +12705,18514,3279 +12706,274479,22213 +12707,20034,9349 +12708,18586,7301 +12709,11656,6181 +12710,24348,16645 +12711,61991,95009 +12712,415633,66454 +12713,53870,31133 +12714,18051,3436 +12715,55495,59996 +12716,8194,3318 +12717,81232,63607 +12718,153518,91920 +12719,51828,2335 +12720,142979,54583 +12721,24420,12 +12722,37718,236 +12723,2993,9220 +12724,39057,6687 +12725,83896,42613 +12726,363579,49971 +12727,110,591 +12728,7549,2272 +12729,37725,28320 +12730,382589,1115 +12731,8342,25159 +12732,76333,31123 +12733,17258,5264 +12734,13162,86 +12735,232731,6306 +12736,10865,10217 +12737,25473,5409 +12738,18512,13993 +12739,39284,6181 +12740,19765,13965 +12741,32088,6194 +12742,246403,13241 +12743,41038,22220 +12744,284293,6831 +12745,11421,806 +12746,43241,13597 +12747,9836,2537 +12748,337758,63197 +12749,86664,955 +12750,47508,48490 +12751,151310,8411 +12752,122857,23423 +12753,106887,75567 +12754,49277,37046 +12755,294272,2 +12756,377853,7034 +12757,58060,29223 +12758,20,77 +12759,260001,25706 +12760,264264,15866 +12761,216580,40495 +12762,15830,76 +12763,1647,58262 +12764,29272,18587 +12765,102629,2982 +12766,48836,23386 +12767,135832,23948 +12768,125623,10303 +12769,12599,12288 +12770,332411,3084 +12771,25330,306 +12772,358353,3282 +12773,398289,85885 +12774,330770,25818 +12775,365065,66161 +12776,290316,18367 +12777,5551,1757 +12778,356191,19150 +12779,32489,1830 +12780,19846,94202 +12781,12599,3034 +12782,356486,74705 +12783,91070,34951 +12784,336004,67776 +12785,50073,6194 +12786,28746,13032 +12787,59965,3672 +12788,131739,40527 +12789,49018,7437 +12790,13058,6359 +12791,71670,17837 +12792,63681,142 +12793,4953,10146 +12794,6499,306 +12795,13640,2786 +12796,159095,9349 +12797,153266,37659 +12798,786,5 +12799,244458,6667 +12800,10524,47078 +12801,298695,36058 +12802,295914,40456 +12803,2034,19507 +12804,20645,2680 +12805,1259,288 +12806,48205,9 +12807,336804,72921 +12808,47536,4 +12809,108391,9024 +12810,333371,11461 +12811,18977,18582 +12812,10874,2 +12813,29979,10254 +12814,315664,7981 +12815,82501,2452 +12816,44022,2117 +12817,80125,230 +12818,78568,5358 +12819,338,1972 +12820,64450,7008 +12821,413452,36433 +12822,46149,955 +12823,18128,8803 +12824,22023,33 +12825,11103,2630 +12826,805,4 +12827,75066,7808 +12828,141,306 +12829,80596,15870 +12830,14349,3574 +12831,4344,1618 +12832,38286,3112 +12833,308,208 +12834,33305,3498 +12835,335340,50989 +12836,29056,4820 +12837,198277,10105 +12838,287628,54944 +12839,12763,54512 +12840,70322,881 +12841,75229,3792 +12842,157384,6531 +12843,153652,20259 +12844,33134,5793 +12845,61991,7147 +12846,260310,21384 +12847,18405,17611 +12848,93511,9313 +12849,129966,7981 +12850,4413,79 +12851,12121,508 +12852,249457,1147 +12853,82080,49589 +12854,21468,306 +12855,22396,10499 +12856,347666,7342 +12857,72096,3906 +12858,289712,2527 +12859,10096,5 +12860,3682,53009 +12861,19116,1172 +12862,59147,10975 +12863,15472,6417 +12864,70074,7437 +12865,41478,37580 +12866,352917,60061 +12867,59115,17837 +12868,28170,17071 +12869,419459,1030 +12870,9385,5851 +12871,26252,7046 +12872,61121,228 +12873,398633,77170 +12874,29952,3963 +12875,7980,12248 +12876,2262,29165 +12877,634,5870 +12878,18334,3481 +12879,245775,69195 +12880,237,11561 +12881,24420,81 +12882,26486,59952 +12883,39428,181 +12884,56150,4 +12885,85656,86628 +12886,7863,8 +12887,29444,1382 +12888,17465,60 +12889,84905,6194 +12890,151911,60 +12891,177697,736 +12892,36919,1931 +12893,41559,24352 +12894,55728,4 +12895,1813,6194 +12896,16026,3455 +12897,352208,26137 +12898,144111,28205 +12899,28340,10348 +12900,123025,9993 +12901,440777,2832 +12902,280840,10031 +12903,127864,7792 +12904,338729,26324 +12905,378227,72433 +12906,16440,4811 +12907,175339,12950 +12908,186634,60949 +12909,11912,1398 +12910,11145,316 +12911,77625,26686 +12912,300654,64430 +12913,4024,15719 +12914,38874,21111 +12915,259694,6127 +12916,48882,5120 +12917,120831,8411 +12918,11058,35 +12919,289720,8976 +12920,276635,181 +12921,332794,796 +12922,35052,3353 +12923,37936,55005 +12924,1640,2448 +12925,5413,1898 +12926,240832,6896 +12927,2760,1222 +12928,259695,6194 +12929,41110,2683 +12930,101669,22105 +12931,19506,3627 +12932,33570,5003 +12933,18417,9195 +12934,28417,11248 +12935,3638,97 +12936,315465,882 +12937,128270,838 +12938,341957,54224 +12939,18493,49625 +12940,48287,10157 +12941,20919,2949 +12942,15759,9027 +12943,44238,7446 +12944,10276,9195 +12945,420703,10954 +12946,74629,78463 +12947,30478,35905 +12948,31542,20091 +12949,10991,89163 +12950,190955,32242 +12951,131457,6194 +12952,36943,23098 +12953,133255,10747 +12954,70667,14758 +12955,72592,3033 +12956,16784,306 +12957,11337,13309 +12958,18178,3460 +12959,118900,306 +12960,76170,306 +12961,16791,39060 +12962,2757,23227 +12963,54491,21234 +12964,5257,13674 +12965,73835,1429 +12966,123109,22306 +12967,63498,5644 +12968,2002,16804 +12969,104602,5409 +12970,24420,23046 +12971,325173,1872 +12972,50916,2159 +12973,65771,49723 +12974,41714,46201 +12975,25430,441 +12976,362180,73843 +12977,62320,743 +12978,37284,399 +12979,37586,94965 +12980,311291,10441 +12981,10077,2234 +12982,31586,12 +12983,303636,8269 +12984,214081,2927 +12985,37517,39601 +12986,11377,1786 +12987,315465,13845 +12988,283445,2514 +12989,31547,4639 +12990,117499,38212 +12991,9664,289 +12992,336265,29366 +12993,91480,8411 +12994,328429,44396 +12995,362178,90981 +12996,215881,52075 +12997,65282,6 +12998,34615,85681 +12999,8985,76 +13000,178927,6194 +13001,87654,14624 +13002,1995,840 +13003,287483,789 +13004,48210,87587 +13005,19725,73195 +13006,342163,70083 +13007,188765,7766 +13008,44877,27895 +13009,73430,6 +13010,303542,1533 +13011,21736,4157 +13012,1116,7680 +13013,86825,1645 +13014,62978,8451 +13015,124414,12514 +13016,3172,890 +13017,12573,2092 +13018,43809,8411 +13019,8014,21644 +13020,22901,4151 +13021,39324,5542 +13022,218508,75225 +13023,311291,64479 +13024,10550,20033 +13025,284564,10370 +13026,50364,75459 +13027,97365,83 +13028,29113,10330 +13029,52485,1632 +13030,113091,27499 +13031,10761,333 +13032,28062,7937 +13033,44718,6716 +13034,46827,38204 +13035,62036,12111 +13036,267310,50821 +13037,5991,12372 +13038,84636,10621 +13039,10999,396 +13040,420648,85516 +13041,132608,18514 +13042,339994,10039 +13043,139519,1422 +13044,147773,3263 +13045,133715,441 +13046,42569,53696 +13047,10033,11278 +13048,84771,559 +13049,24821,5241 +13050,1986,591 +13051,9655,27 +13052,71329,53 +13053,15616,13807 +13054,385750,77022 +13055,36236,1216 +13056,262338,17513 +13057,54555,11420 +13058,57327,26156 +13059,74666,786 +13060,208579,14070 +13061,258509,5219 +13062,41028,4 +13063,70351,44622 +13064,142061,4811 +13065,24775,4792 +13066,22615,4116 +13067,8932,8472 +13068,401060,59811 +13069,17908,1088 +13070,6443,81693 +13071,274479,711 +13072,371462,24306 +13073,333484,8411 +13074,406449,72890 +13075,433,3166 +13076,68387,3958 +13077,18783,441 +13078,193893,306 +13079,44657,29729 +13080,29786,4989 +13081,15559,3447 +13082,8368,2392 +13083,104954,10000 +13084,78231,181 +13085,278706,26002 +13086,9389,18367 +13087,296025,52426 +13088,295884,3291 +13089,1904,158 +13090,52999,8138 +13091,329805,75984 +13092,298865,53169 +13093,9389,2203 +13094,159474,8894 +13095,199615,7013 +13096,340101,6417 +13097,28564,1442 +13098,24123,11054 +13099,131764,4 +13100,329805,76446 +13101,138191,6889 +13102,22681,4135 +13103,82624,486 +13104,278706,59629 +13105,10866,11461 +13106,81310,3166 +13107,90932,45725 +13108,84727,34202 +13109,218582,6194 +13110,72711,13042 +13111,156627,7984 +13112,272663,10096 +13113,75233,2783 +13114,382125,2783 +13115,17711,33 +13116,18040,94357 +13117,60173,7954 +13118,74666,851 +13119,69315,11281 +13120,24971,10453 +13121,131898,10330 +13122,10330,93528 +13123,42487,79613 +13124,62211,3 +13125,10333,5 +13126,82817,8350 +13127,246741,21213 +13128,284096,5358 +13129,308165,3653 +13130,74465,485 +13131,267466,22588 +13132,8053,6896 +13133,4982,1645 +13134,12171,3539 +13135,22752,6 +13136,153652,13665 +13137,9471,10239 +13138,43759,6 +13139,91186,1268 +13140,159128,2341 +13141,186997,6111 +13142,275269,44164 +13143,63498,2395 +13144,48131,11561 +13145,41574,73686 +13146,10657,97 +13147,13925,3 +13148,79500,4867 +13149,278632,46298 +13150,49009,23993 +13151,47459,12732 +13152,3291,20451 +13153,69619,4053 +13154,11485,3065 +13155,330171,2683 +13156,291558,2159 +13157,256593,3792 +13158,30924,33660 +13159,49792,14723 +13160,254869,7864 +13161,37686,4 +13162,69784,306 +13163,222220,28184 +13164,11899,7585 +13165,26880,36913 +13166,15982,559 +13167,334074,8880 +13168,20941,84498 +13169,394822,1422 +13170,374473,729 +13171,15906,6220 +13172,150208,6339 +13173,41211,19959 +13174,104083,4927 +13175,8355,11749 +13176,45649,5381 +13177,6980,2159 +13178,140648,4952 +13179,118131,8411 +13180,441728,1267 +13181,38322,81137 +13182,190853,2908 +13183,336775,51663 +13184,171213,5358 +13185,325205,51065 +13186,330947,49389 +13187,68097,21732 +13188,199985,1822 +13189,709,7576 +13190,31742,641 +13191,10373,14313 +13192,46924,7049 +13193,106635,6194 +13194,33542,12 +13195,17100,3254 +13196,2486,445 +13197,73067,8 +13198,19606,6194 +13199,16019,16 +13200,82327,5358 +13201,127913,10971 +13202,85984,87977 +13203,9648,8724 +13204,337101,10143 +13205,50674,42272 +13206,45610,11961 +13207,19898,248 +13208,40041,22049 +13209,49712,559 +13210,59199,26468 +13211,443319,39644 +13212,37238,36248 +13213,12085,52046 +13214,14029,4746 +13215,268920,8411 +13216,11584,959 +13217,1723,29119 +13218,284305,32485 +13219,268618,10116 +13220,258947,44315 +13221,84708,33 +13222,48231,78702 +13223,378018,89472 +13224,19235,328 +13225,56693,26288 +13226,215379,4186 +13227,153228,48591 +13228,30583,7678 +13229,49110,11860 +13230,49018,2514 +13231,1687,12943 +13232,23967,47 +13233,7304,5357 +13234,52913,10519 +13235,286595,46205 +13236,266856,10163 +13237,9532,48772 +13238,300667,7437 +13239,19688,2266 +13240,51739,20193 +13241,44414,841 +13242,156981,3548 +13243,38715,31062 +13244,16999,3244 +13245,9659,2537 +13246,43771,9209 +13247,20200,1115 +13248,58664,33861 +13249,2750,60 +13250,270899,819 +13251,209293,749 +13252,9016,2 +13253,8008,2327 +13254,1116,19931 +13255,19495,3623 +13256,69560,19237 +13257,62764,12007 +13258,14136,3166 +13259,20625,4 +13260,253283,8147 +13261,1640,19528 +13262,67748,23315 +13263,36657,306 +13264,166221,10399 +13265,22448,3749 +13266,234284,21580 +13267,10204,264 +13268,37710,682 +13269,148371,12167 +13270,126227,3693 +13271,14459,11840 +13272,47878,21541 +13273,16412,2865 +13274,9977,8724 +13275,237796,19320 +13276,228968,54238 +13277,331588,35799 +13278,182499,4899 +13279,9877,559 +13280,339547,7662 +13281,11379,8791 +13282,9914,5388 +13283,83430,12351 +13284,76,98 +13285,15577,7383 +13286,38965,8135 +13287,101904,12389 +13288,22076,25473 +13289,13507,2902 +13290,203833,264 +13291,12622,6919 +13292,280019,7271 +13293,103597,851 +13294,7353,2139 +13295,58244,53495 +13296,170517,6194 +13297,244534,29652 +13298,53689,6416 +13299,83389,11846 +13300,10491,1756 +13301,77930,34981 +13302,44502,4606 +13303,40085,10917 +13304,1819,33 +13305,283445,8147 +13306,5201,8411 +13307,36968,16971 +13308,214756,8789 +13309,415358,81254 +13310,105254,634 +13311,47504,8 +13312,351809,73568 +13313,16231,3656 +13314,33338,5285 +13315,8998,34 +13316,38322,73956 +13317,16985,8411 +13318,166076,4811 +13319,34334,508 +13320,9598,33 +13321,23719,455 +13322,107891,5798 +13323,324173,1538 +13324,150117,255 +13325,19606,168 +13326,259395,2953 +13327,25890,1490 +13328,10760,10210 +13329,13391,2788 +13330,64674,12093 +13331,74527,6 +13332,381356,68543 +13333,58013,6246 +13334,12888,2188 +13335,283701,8512 +13336,89688,71088 +13337,10145,2721 +13338,267557,2683 +13339,13852,13674 +13340,20968,3652 +13341,167073,7177 +13342,12573,10146 +13343,346723,5928 +13344,82409,6941 +13345,226188,17163 +13346,47525,9027 +13347,52736,441 +13348,9993,94304 +13349,109716,6194 +13350,8906,830 +13351,140818,17513 +13352,3484,1442 +13353,312221,6194 +13354,16791,1205 +13355,18506,8968 +13356,11788,11842 +13357,9785,7937 +13358,202214,2846 +13359,73532,186 +13360,94568,17097 +13361,10590,4564 +13362,82501,5358 +13363,249,306 +13364,90086,9266 +13365,385114,15507 +13366,136582,28452 +13367,245692,10611 +13368,138522,11143 +13369,12684,4978 +13370,51423,3221 +13371,11145,5 +13372,14518,6555 +13373,14430,21805 +13374,22554,6339 +13375,70554,10425 +13376,43491,6194 +13377,10008,22705 +13378,102382,31828 +13379,12594,3417 +13380,14782,2962 +13381,9343,843 +13382,14977,11341 +13383,72086,40349 +13384,41478,31080 +13385,35200,5538 +13386,336271,3571 +13387,140509,27718 +13388,315837,3407 +13389,2179,12 +13390,102362,333 +13391,83896,18013 +13392,41035,4630 +13393,26971,14245 +13394,83890,58590 +13395,27999,20796 +13396,80775,6292 +13397,25507,8411 +13398,376570,3172 +13399,22267,10565 +13400,177677,21777 +13401,10740,54031 +13402,16017,11672 +13403,259830,27269 +13404,9675,43 +13405,18072,3445 +13406,108869,219 +13407,49974,1880 +13408,10872,9195 +13409,50780,491 +13410,159638,16860 +13411,127864,11921 +13412,35651,33149 +13413,11704,60 +13414,122192,3366 +13415,84336,37343 +13416,18897,5358 +13417,85350,307 +13418,422603,82713 +13419,73194,306 +13420,54318,10157 +13421,50326,6130 +13422,88375,8411 +13423,8954,2542 +13424,8014,254 +13425,424600,3298 +13426,52713,8138 +13427,17963,306 +13428,76312,47605 +13429,13354,1353 +13430,25074,3054 +13431,218688,36614 +13432,15044,9217 +13433,112531,6555 +13434,10992,172 +13435,41590,6194 +13436,11103,8 +13437,46513,3324 +13438,260522,9340 +13439,2107,14723 +13440,16157,81418 +13441,247447,15505 +13442,52520,7740 +13443,20766,8073 +13444,140648,4042 +13445,1817,711 +13446,14505,65655 +13447,49609,306 +13448,28902,27 +13449,48949,8411 +13450,45807,12190 +13451,354979,2520 +13452,82650,711 +13453,15940,52607 +13454,182499,23903 +13455,90110,5648 +13456,1995,4650 +13457,126523,5120 +13458,295884,27610 +13459,26949,12 +13460,450875,7521 +13461,7210,198 +13462,47943,24475 +13463,59075,1445 +13464,146233,18208 +13465,53399,5030 +13466,2002,5358 +13467,30929,13747 +13468,254679,10921 +13469,11887,2 +13470,16366,3486 +13471,8988,258 +13472,402672,78259 +13473,22317,11308 +13474,34977,8411 +13475,6077,2038 +13476,49688,79620 +13477,17203,763 +13478,2197,1016 +13479,352025,5358 +13480,786,485 +13481,314065,2690 +13482,55784,11480 +13483,55720,1473 +13484,42499,9244 +13485,4024,1476 +13486,2731,18367 +13487,227306,39443 +13488,13169,307 +13489,26405,55947 +13490,211059,32545 +13491,4809,306 +13492,66193,25261 +13493,20414,4753 +13494,3476,1416 +13495,35021,266 +13496,319993,8698 +13497,16182,14063 +13498,55347,10146 +13499,13312,6301 +13500,11298,502 +13501,11889,14 +13502,73123,12046 +13503,133183,11636 +13504,21193,28766 +13505,55720,491 +13506,66125,7888 +13507,275696,5124 +13508,374475,77155 +13509,14886,2992 +13510,263115,431 +13511,19166,7817 +13512,138522,13337 +13513,205481,6138 +13514,105509,1679 +13515,42094,11097 +13516,122843,328 +13517,325133,10338 +13518,2454,10221 +13519,5804,84609 +13520,1164,10039 +13521,96888,27334 +13522,205587,27467 +13523,22504,25827 +13524,47561,76194 +13525,31264,4836 +13526,125548,40966 +13527,70747,29265 +13528,59191,146 +13529,511,6804 +13530,30959,7040 +13531,408620,7036 +13532,346723,56781 +13533,78383,7035 +13534,238985,4928 +13535,5123,7036 +13536,10796,93580 +13537,289723,50090 +13538,831,10330 +13539,32657,711 +13540,1427,7956 +13541,68387,6530 +13542,31618,32793 +13543,284296,4 +13544,403431,58 +13545,49787,3256 +13546,11593,594 +13547,48116,11191 +13548,333367,2137 +13549,303542,21972 +13550,193878,306 +13551,59882,5 +13552,8672,2474 +13553,17445,2785 +13554,127864,9335 +13555,56906,3608 +13556,30690,6194 +13557,156711,19375 +13558,228074,6730 +13559,157847,10989 +13560,267579,2535 +13561,84577,21917 +13562,193756,22611 +13563,20825,3843 +13564,48601,70587 +13565,11534,61201 +13566,13678,68108 +13567,76684,3985 +13568,80771,2159 +13569,146679,1647 +13570,8355,9383 +13571,11601,2188 +13572,20361,1740 +13573,50161,89253 +13574,393732,50084 +13575,26941,58 +13576,2300,8816 +13577,277558,63208 +13578,273096,34993 +13579,237584,24510 +13580,172,4 +13581,381008,88295 +13582,1810,306 +13583,393367,79948 +13584,377151,78498 +13585,9890,7293 +13586,121640,5005 +13587,46026,2159 +13588,4613,14589 +13589,69075,10345 +13590,13792,94302 +13591,31044,8411 +13592,267935,7383 +13593,5552,22366 +13594,78571,1473 +13595,14885,2 +13596,245700,47802 +13597,62463,983 +13598,440767,8858 +13599,35026,15671 +13600,340584,12215 +13601,84284,77344 +13602,436,8 +13603,383809,73552 +13604,340275,20580 +13605,24405,10210 +13606,152023,12500 +13607,400,14 +13608,46227,4679 +13609,58547,34981 +13610,16921,18668 +13611,46758,75475 +13612,32031,559 +13613,23128,4183 +13614,22408,16331 +13615,382597,7981 +13616,62132,12360 +13617,63493,1208 +13618,42941,768 +13619,9056,3055 +13620,161495,915 +13621,47959,10102 +13622,351211,6302 +13623,146238,215 +13624,59738,60045 +13625,413669,5488 +13626,119213,2499 +13627,16164,2253 +13628,105384,76679 +13629,27832,17947 +13630,28026,23720 +13631,137193,8675 +13632,21769,7776 +13633,55435,6682 +13634,10294,23890 +13635,58080,10526 +13636,370687,14787 +13637,18897,856 +13638,340103,18239 +13639,13477,9195 +13640,42764,1858 +13641,14644,7981 +13642,127864,1991 +13643,59199,1002 +13644,95414,8302 +13645,73723,33 +13646,264644,35846 +13647,61578,12745 +13648,123359,23838 +13649,9071,13187 +13650,31067,1957 +13651,19174,17953 +13652,30298,893 +13653,182228,1311 +13654,20715,59150 +13655,122081,14531 +13656,14273,15486 +13657,14008,670 +13658,378236,2251 +13659,103938,8411 +13660,5590,1497 +13661,416445,4660 +13662,316268,43436 +13663,209112,429 +13664,136386,6371 +13665,378018,5113 +13666,241239,7493 +13667,99188,3033 +13668,26152,856 +13669,92769,16953 +13670,49963,53408 +13671,54659,58870 +13672,85656,17228 +13673,310568,27125 +13674,8277,33 +13675,116979,19456 +13676,366696,67117 +13677,1418,87870 +13678,197849,2501 +13679,124680,294 +13680,97365,11799 +13681,303542,5051 +13682,414610,78747 +13683,45243,3527 +13684,58372,3906 +13685,134360,2 +13686,86497,24205 +13687,40130,9245 +13688,8856,1174 +13689,360924,85434 +13690,29787,41 +13691,42501,12111 +13692,41131,483 +13693,343702,104 +13694,10696,441 +13695,2924,2231 +13696,124633,5358 +13697,365942,85283 +13698,169758,16617 +13699,252102,35563 +13700,53805,1429 +13701,29151,57094 +13702,364324,2270 +13703,85673,18884 +13704,90956,4395 +13705,4887,200 +13706,82485,3608 +13707,4344,4606 +13708,9877,53473 +13709,29959,3458 +13710,6068,8816 +13711,36615,80402 +13712,39024,78890 +13713,40218,4630 +13714,81030,8232 +13715,35113,163 +13716,236395,6 +13717,235,1153 +13718,260094,46111 +13719,25603,4401 +13720,24955,6417 +13721,310135,7662 +13722,32168,7653 +13723,30060,5016 +13724,26688,4194 +13725,19946,11984 +13726,48838,43792 +13727,83899,2395 +13728,98355,3150 +13729,22494,288 +13730,34138,15847 +13731,11004,4 +13732,15285,741 +13733,703,60 +13734,266741,2828 +13735,53739,5444 +13736,28115,3760 +13737,77585,77196 +13738,28238,11376 +13739,76163,10254 +13740,20544,7429 +13741,45431,6560 +13742,236324,1311 +13743,47194,29490 +13744,82716,5928 +13745,20645,5070 +13746,2009,859 +13747,341007,53804 +13748,32202,4921 +13749,197082,18392 +13750,315256,9259 +13751,85507,14646 +13752,47143,18367 +13753,9443,7965 +13754,18739,83663 +13755,220820,25635 +13756,27045,15299 +13757,108222,306 +13758,99312,3693 +13759,412209,26995 +13760,79316,306 +13761,190955,34780 +13762,21583,12292 +13763,10665,829 +13764,186268,4395 +13765,59726,10393 +13766,70074,14654 +13767,412103,32542 +13768,10744,18621 +13769,280092,34 +13770,14823,15282 +13771,229134,16670 +13772,49787,22898 +13773,14164,6332 +13774,14650,21321 +13775,123047,660 +13776,73123,15163 +13777,20034,2690 +13778,241927,17457 +13779,12103,1171 +13780,26946,4928 +13781,81110,4 +13782,302699,12 +13783,57996,217 +13784,45324,11801 +13785,68179,2213 +13786,292387,28452 +13787,134201,3614 +13788,42599,8622 +13789,18801,25129 +13790,54156,7682 +13791,26042,4063 +13792,18613,807 +13793,166621,3245 +13794,15457,1168 +13795,10708,5 +13796,163,12202 +13797,2196,1013 +13798,64882,7036 +13799,390880,52295 +13800,332794,77550 +13801,33570,11341 +13802,69899,14599 +13803,374473,12695 +13804,155765,3234 +13805,2692,1235 +13806,173443,4243 +13807,97206,23839 +13808,228647,8411 +13809,25376,11408 +13810,35139,6194 +13811,11425,2 +13812,37817,19035 +13813,76544,22339 +13814,11055,29165 +13815,85414,3256 +13816,140894,27206 +13817,7220,35 +13818,14531,15276 +13819,283384,29098 +13820,101915,3324 +13821,227700,6538 +13822,16016,235 +13823,2567,14 +13824,107250,6252 +13825,303542,20416 +13826,40562,14 +13827,33357,5701 +13828,4592,51764 +13829,383064,7184 +13830,96433,4 +13831,21032,33 +13832,76784,7986 +13833,11017,6365 +13834,31598,559 +13835,374473,1926 +13836,2197,18367 +13837,37710,158 +13838,342684,10654 +13839,238972,5861 +13840,98369,36108 +13841,38303,11837 +13842,20842,3850 +13843,116351,68562 +13844,6972,306 +13845,19995,306 +13846,192023,25136 +13847,90563,11496 +13848,6391,2426 +13849,1950,813 +13850,524,10898 +13851,95627,40757 +13852,204994,441 +13853,638,374 +13854,59117,7864 +13855,9070,2106 +13856,130993,3221 +13857,261101,19904 +13858,399106,6421 +13859,376394,3324 +13860,51945,7088 +13861,29786,4988 +13862,76411,56518 +13863,330459,1 +13864,22404,306 +13865,25983,23457 +13866,131194,21347 +13867,215999,14063 +13868,121929,40230 +13869,43455,441 +13870,25913,13 +13871,11876,83 +13872,392271,60536 +13873,35696,6194 +13874,488,60 +13875,92424,7118 +13876,40217,5856 +13877,183832,8411 +13878,22582,14 +13879,54156,876 +13880,336804,72918 +13881,83540,9263 +13882,7096,7928 +13883,9425,10210 +13884,8471,312 +13885,39219,89197 +13886,43459,37440 +13887,16235,75480 +13888,36211,6939 +13889,16374,3186 +13890,77012,306 +13891,6947,9195 +13892,15916,8182 +13893,113194,18758 +13894,7299,35304 +13895,109439,923 +13896,51284,886 +13897,31111,2282 +13898,107985,443 +13899,82708,986 +13900,94820,6550 +13901,229297,12966 +13902,13667,3902 +13903,199463,1728 +13904,13680,80510 +13905,256474,5860 +13906,22784,9266 +13907,245597,7819 +13908,36259,12 +13909,2321,1072 +13910,13957,2842 +13911,11385,4 +13912,342765,54734 +13913,77964,3245 +13914,6973,491 +13915,80281,45587 +13916,25626,6379 +13917,103597,14683 +13918,339419,60263 +13919,418990,20943 +13920,277778,25933 +13921,34231,52222 +13922,75174,1645 +13923,1404,707 +13924,62392,10330 +13925,1599,892 +13926,366170,53504 +13927,14242,62138 +13928,28120,6 +13929,63360,80522 +13930,147287,28955 +13931,31048,5116 +13932,10055,52210 +13933,32275,614 +13934,4613,23787 +13935,334527,50492 +13936,408616,60622 +13937,2046,11462 +13938,198130,6992 +13939,11003,4286 +13940,79120,1917 +13941,6877,84423 +13942,82990,6302 +13943,176670,6194 +13944,257344,2608 +13945,303542,67679 +13946,118,55512 +13947,73723,6704 +13948,25919,62329 +13949,24126,870 +13950,392271,7356 +13951,318781,5754 +13952,29872,6 +13953,273511,25925 +13954,9982,2 +13955,5413,3488 +13956,26636,5708 +13957,78464,48860 +13958,66597,36174 +13959,148,78 +13960,445,5358 +13961,21544,11352 +13962,393172,4080 +13963,315465,11723 +13964,47312,3632 +13965,52556,45627 +13966,32274,9195 +13967,29136,803 +13968,46169,3202 +13969,59297,12655 +13970,966,20931 +13971,15303,44455 +13972,23566,5024 +13973,141733,17457 +13974,359255,65547 +13975,56669,49803 +13976,29471,8895 +13977,315837,4 +13978,42267,61781 +13979,43850,659 +13980,2963,37046 +13981,174712,5542 +13982,256474,24513 +13983,47143,11402 +13984,459,59426 +13985,49391,29193 +13986,39875,4284 +13987,16124,294 +13988,172520,31144 +13989,55922,8583 +13990,11633,3363 +13991,11704,90512 +13992,7942,2245 +13993,286512,6300 +13994,131739,40529 +13995,24363,30131 +13996,38162,25473 +13997,352498,45086 +13998,117942,31296 +13999,15940,718 +14000,153854,26250 +14001,20242,10531 +14002,62762,5798 +14003,82696,4220 +14004,64454,47077 +14005,17317,81199 +14006,10077,2980 +14007,233423,20182 +14008,36047,10210 +14009,82624,6420 +14010,341745,10947 +14011,121895,30147 +14012,101998,7454 +14013,205943,16465 +14014,132363,18922 +14015,23750,4265 +14016,40785,55652 +14017,29492,1950 +14018,404459,80327 +14019,114499,3166 +14020,42168,1177 +14021,126250,76 +14022,137504,66913 +14023,46261,2605 +14024,70575,7748 +14025,24756,3546 +14026,33360,7961 +14027,192133,39004 +14028,10657,12 +14029,286789,2325 +14030,13956,8676 +14031,2300,3592 +14032,635,13721 +14033,30535,7699 +14034,16938,36555 +14035,34280,64 +14036,178587,893 +14037,24452,34281 +14038,10071,497 +14039,386100,25412 +14040,34806,5490 +14041,335450,29729 +14042,87229,88966 +14043,52039,6532 +14044,40060,2124 +14045,229182,8739 +14046,43089,15099 +14047,11658,11420 +14048,36944,5640 +14049,343702,729 +14050,60759,14837 +14051,161073,17223 +14052,339419,12808 +14053,338100,53583 +14054,25500,148 +14055,52772,396 +14056,63498,5705 +14057,319971,72494 +14058,256924,6831 +14059,92663,15406 +14060,442752,7510 +14061,16938,43459 +14062,109451,5 +14063,373541,70420 +14064,45384,9177 +14065,1578,60 +14066,84295,4 +14067,288977,15257 +14068,59387,174 +14069,218351,5999 +14070,371504,20244 +14071,69635,12630 +14072,16232,9195 +14073,44793,20169 +14074,42260,11626 +14075,72711,13043 +14076,32904,13460 +14077,13654,3475 +14078,63217,64757 +14079,439998,19916 +14080,88818,251 +14081,38157,2188 +14082,11205,42393 +14083,113700,3072 +14084,166161,14217 +14085,188927,11461 +14086,5206,76 +14087,327389,3039 +14088,353464,64666 +14089,251555,41758 +14090,180644,73170 +14091,16659,14590 +14092,5544,841 +14093,343173,79009 +14094,742,321 +14095,22744,306 +14096,524,11584 +14097,57201,2 +14098,63831,7454 +14099,296524,491 +14100,76268,7089 +14101,347031,78874 +14102,72917,95497 +14103,245917,3034 +14104,285181,32510 +14105,13169,26468 +14106,289198,12142 +14107,31216,15073 +14108,277968,25684 +14109,7220,11533 +14110,16550,12 +14111,63066,74901 +14112,22371,42053 +14113,17332,694 +14114,309879,76953 +14115,115023,230 +14116,54715,33 +14117,35337,6246 +14118,45156,36433 +14119,256311,24144 +14120,64456,4933 +14121,4413,6194 +14122,19766,2 +14123,248087,882 +14124,383567,59811 +14125,10219,33 +14126,169068,10368 +14127,8856,441 +14128,62761,17967 +14129,292033,654 +14130,25941,2395 +14131,154537,16257 +14132,16806,5419 +14133,99738,11143 +14134,9963,559 +14135,25143,6855 +14136,13092,3272 +14137,301325,75278 +14138,13713,11774 +14139,14615,8411 +14140,47535,2015 +14141,39358,18367 +14142,335869,62512 +14143,329805,11246 +14144,134656,13786 +14145,48836,52148 +14146,33333,5284 +14147,2080,289 +14148,90762,93591 +14149,249,18 +14150,220820,23688 +14151,14518,6552 +14152,360737,32771 +14153,73262,4 +14154,77949,9987 +14155,117629,16 +14156,197175,2277 +14157,172847,15710 +14158,8870,172 +14159,138486,4928 +14160,12104,8411 +14161,290379,8411 +14162,62732,11987 +14163,1164,11258 +14164,137093,34886 +14165,16866,559 +14166,13507,6301 +14167,49365,54531 +14168,17654,10884 +14169,424600,7429 +14170,334,179 +14171,6171,172 +14172,12449,22761 +14173,373546,48738 +14174,11516,5358 +14175,52520,7738 +14176,172008,14965 +14177,114096,4255 +14178,24150,7405 +14179,11511,9195 +14180,82501,726 +14181,202215,1992 +14182,8292,435 +14183,393659,56236 +14184,21371,8510 +14185,14254,2363 +14186,277710,50479 +14187,53949,37 +14188,159474,4498 +14189,50725,19855 +14190,354287,59811 +14191,289207,31242 +14192,18919,3554 +14193,10727,21839 +14194,15592,9195 +14195,13929,3 +14196,63186,1549 +14197,53230,33995 +14198,40041,22050 +14199,9519,7337 +14200,180644,34171 +14201,28171,54377 +14202,4948,1821 +14203,13336,7799 +14204,8672,8857 +14205,323426,12466 +14206,10491,27319 +14207,227156,53464 +14208,65674,13947 +14209,11516,15671 +14210,264644,3353 +14211,61984,12383 +14212,84971,6 +14213,76115,33 +14214,6443,5754 +14215,9461,14665 +14216,274820,73252 +14217,124071,3924 +14218,266373,68386 +14219,50086,1615 +14220,37238,36245 +14221,13531,676 +14222,35554,12032 +14223,141971,5166 +14224,12716,9 +14225,99767,8411 +14226,60551,10330 +14227,14069,12540 +14228,43685,383 +14229,11216,10209 +14230,227700,63808 +14231,12128,5755 +14232,47653,762 +14233,8072,46654 +14234,58701,641 +14235,52452,6546 +14236,38579,306 +14237,127560,12075 +14238,49963,53407 +14239,270654,6692 +14240,79735,33 +14241,14587,5778 +14242,16866,5653 +14243,341689,2395 +14244,254188,12142 +14245,308024,63631 +14246,289207,38485 +14247,298787,36124 +14248,398452,74144 +14249,276635,500 +14250,36983,4056 +14251,17911,3991 +14252,25655,5660 +14253,5289,1171 +14254,204255,18903 +14255,1165,258 +14256,270646,24662 +14257,81188,521 +14258,246403,41077 +14259,10475,860 +14260,91690,591 +14261,25855,7726 +14262,71672,10999 +14263,392011,73091 +14264,13855,11592 +14265,129533,6220 +14266,98870,84847 +14267,286709,49981 +14268,265226,4384 +14269,16890,54814 +14270,17238,871 +14271,16177,23009 +14272,61578,83 +14273,122,12 +14274,227262,17466 +14275,43228,4697 +14276,194,12000 +14277,398786,4284 +14278,125700,91698 +14279,14052,306 +14280,80032,8411 +14281,131366,2076 +14282,39345,11098 +14283,83599,24951 +14284,241930,37870 +14285,6591,11595 +14286,127864,12100 +14287,80389,152 +14288,331958,12991 +14289,169881,64894 +14290,36992,6429 +14291,82817,10611 +14292,4529,32584 +14293,166,9 +14294,36113,9175 +14295,27137,2428 +14296,48775,13880 +14297,35139,13941 +14298,25520,1270 +14299,939,6194 +14300,15527,3295 +14301,55784,16704 +14302,105763,40669 +14303,286267,29650 +14304,59142,441 +14305,42023,8668 +14306,35554,45724 +14307,360249,16076 +14308,24254,5231 +14309,348537,2674 +14310,370264,68941 +14311,15534,12026 +14312,273404,11576 +14313,310602,118 +14314,9260,185 +14315,119926,8411 +14316,27573,7295 +14317,86825,43 +14318,62472,882 +14319,9821,14 +14320,271404,39708 +14321,212756,5267 +14322,329718,10031 +14323,210047,20310 +14324,40047,3734 +14325,28417,11936 +14326,51999,6417 +14327,20096,4 +14328,276935,3750 +14329,25633,4402 +14330,160160,11578 +14331,60547,10330 +14332,351211,15159 +14333,7863,41999 +14334,28061,641 +14335,236399,19623 +14336,1404,95346 +14337,15489,4 +14338,2110,480 +14339,38448,19961 +14340,52555,1640 +14341,293654,9340 +14342,71041,18908 +14343,20106,2490 +14344,26686,5 +14345,14217,14645 +14346,5955,12263 +14347,430826,8634 +14348,2503,11348 +14349,109379,15567 +14350,342684,6778 +14351,56212,886 +14352,9958,2514 +14353,49963,11912 +14354,156603,4395 +14355,285860,65015 +14356,412103,47394 +14357,333103,1538 +14358,315880,20644 +14359,15468,3823 +14360,252853,9223 +14361,35025,1992 +14362,47238,74917 +14363,1421,64 +14364,39358,21153 +14365,289183,33398 +14366,10303,396 +14367,26679,4557 +14368,169656,49691 +14369,35651,1666 +14370,59881,73471 +14371,2567,675 +14372,71140,39958 +14373,14830,420 +14374,19629,128 +14375,315465,52024 +14376,217341,7938 +14377,209112,507 +14378,268099,22837 +14379,430365,7561 +14380,18843,3635 +14381,259694,2214 +14382,10396,1312 +14383,93676,5708 +14384,795,20555 +14385,20304,91636 +14386,20934,3681 +14387,146238,562 +14388,374475,1618 +14389,441043,45486 +14390,54660,4 +14391,38322,21237 +14392,43113,882 +14393,31276,42139 +14394,199615,11248 +14395,1554,10932 +14396,13849,2268 +14397,150338,441 +14398,55823,30931 +14399,13542,288 +14400,22213,6194 +14401,334299,76994 +14402,19765,1083 +14403,207402,14085 +14404,354133,60676 +14405,34138,65642 +14406,156954,12997 +14407,407559,79562 +14408,131343,44603 +14409,25376,6639 +14410,17332,8299 +14411,11516,311 +14412,77068,1269 +14413,6933,20363 +14414,123047,798 +14415,109298,16685 +14416,91628,7333 +14417,237796,732 +14418,335778,10156 +14419,70586,11449 +14420,10754,7984 +14421,1415,1420 +14422,14539,2269 +14423,70864,7933 +14424,5559,520 +14425,7014,2171 +14426,30305,8146 +14427,15749,5321 +14428,21966,6350 +14429,9023,521 +14430,14931,41 +14431,266425,42485 +14432,19957,8411 +14433,48180,6260 +14434,9648,2948 +14435,10652,4361 +14436,39545,3017 +14437,214,2061 +14438,14164,289 +14439,35826,8411 +14440,70074,25876 +14441,315465,14789 +14442,1673,16326 +14443,83788,12956 +14444,28452,4809 +14445,9543,2 +14446,188357,22932 +14447,15285,93175 +14448,124523,1286 +14449,14811,10154 +14450,28668,4977 +14451,137193,11020 +14452,705,306 +14453,5183,8411 +14454,260030,6108 +14455,10020,10282 +14456,1717,23238 +14457,10918,23632 +14458,43095,14465 +14459,57089,7582 +14460,37247,8793 +14461,1640,2087 +14462,17236,3274 +14463,15067,49971 +14464,374473,5996 +14465,228205,12292 +14466,10344,5612 +14467,82481,8893 +14468,451709,8858 +14469,11589,5940 +14470,279606,37260 +14471,11370,46195 +14472,29352,4940 +14473,17496,4 +14474,102222,11647 +14475,354979,61106 +14476,376501,41 +14477,2291,559 +14478,63493,21898 +14479,27989,24133 +14480,41733,3527 +14481,25655,3029 +14482,9918,2 +14483,4024,44614 +14484,11547,22956 +14485,52907,4978 +14486,21576,21200 +14487,270303,52739 +14488,305127,21733 +14489,26581,14786 +14490,75,8601 +14491,18633,769 +14492,53767,95040 +14493,363439,2513 +14494,262338,12139 +14495,39436,6246 +14496,222517,28926 +14497,45675,11055 +14498,172705,5344 +14499,65603,5 +14500,126963,5542 +14501,53256,5766 +14502,23196,4199 +14503,16092,3137 +14504,48243,6266 +14505,13056,33808 +14506,42188,284 +14507,377158,6417 +14508,115054,4 +14509,16124,17087 +14510,41360,10806 +14511,241239,14862 +14512,329809,32714 +14513,10703,5637 +14514,88288,306 +14515,43354,660 +14516,25643,11953 +14517,18897,11248 +14518,153266,67805 +14519,12994,769 +14520,152532,10255 +14521,75595,10478 +14522,68347,14723 +14523,315880,2683 +14524,11204,2278 +14525,8008,2254 +14526,89756,4899 +14527,146233,1088 +14528,410718,562 +14529,17622,10843 +14530,16342,2310 +14531,6443,4247 +14532,157351,34456 +14533,25241,9266 +14534,381073,74432 +14535,17609,8555 +14536,329865,4 +14537,259690,20915 +14538,1579,4564 +14539,57654,89970 +14540,296524,8539 +14541,101852,6353 +14542,86814,4606 +14543,131343,10116 +14544,393407,1992 +14545,71805,6181 +14546,36917,4563 +14547,274483,1666 +14548,435707,10012 +14549,43434,11394 +14550,296633,36633 +14551,244403,34846 +14552,15067,49972 +14553,469172,8171 +14554,26805,441 +14555,37053,881 +14556,66966,29851 +14557,8985,55590 +14558,213914,9024 +14559,67102,6147 +14560,3114,6194 +14561,298695,12319 +14562,15759,36287 +14563,407448,13184 +14564,39001,11308 +14565,390747,80147 +14566,169069,6194 +14567,127864,9974 +14568,32099,5181 +14569,246011,27912 +14570,46930,6170 +14571,46773,15808 +14572,62213,6194 +14573,36691,10226 +14574,2963,7159 +14575,153854,22632 +14576,319513,44438 +14577,94225,893 +14578,301228,37503 +14579,109441,8411 +14580,27245,23482 +14581,100110,8411 +14582,111839,48038 +14583,214909,8411 +14584,209266,53975 +14585,60106,5358 +14586,10407,11262 +14587,66187,1375 +14588,36915,10171 +14589,220976,1678 +14590,238302,22135 +14591,123770,41 +14592,90465,8411 +14593,135390,6181 +14594,10632,126 +14595,89659,38798 +14596,25674,3929 +14597,38625,5897 +14598,2295,16934 +14599,246415,48510 +14600,161495,10201 +14601,20357,2268 +14602,353686,55265 +14603,60623,8276 +14604,24657,9210 +14605,76494,1088 +14606,19665,11065 +14607,46059,306 +14608,12591,12007 +14609,117629,15 +14610,248639,6194 +14611,461805,66479 +14612,11622,17887 +14613,12169,694 +14614,9945,23893 +14615,81576,55259 +14616,283995,420 +14617,47212,12360 +14618,353686,3172 +14619,44257,2786 +14620,4550,1687 +14621,14210,19615 +14622,56858,29587 +14623,84178,8185 +14624,101342,11143 +14625,8014,13199 +14626,367735,5466 +14627,408024,92231 +14628,28430,16206 +14629,30143,10919 +14630,15472,235 +14631,59349,13657 +14632,44363,3960 +14633,83890,51235 +14634,75532,217 +14635,4953,1784 +14636,85549,59275 +14637,362617,64814 +14638,140509,11814 +14639,20644,8411 +14640,3405,1379 +14641,26505,854 +14642,286595,18367 +14643,74919,75924 +14644,266425,59572 +14645,128154,16453 +14646,8272,10059 +14647,8470,12 +14648,38602,1585 +14649,64720,21927 +14650,16907,2883 +14651,13653,2792 +14652,34138,4350 +14653,101915,25570 +14654,11547,22953 +14655,37653,82 +14656,87516,17393 +14657,342472,53243 +14658,288694,30987 +14659,57749,43531 +14660,10937,13549 +14661,23668,734 +14662,59349,62270 +14663,53472,6288 +14664,103758,53334 +14665,43432,18549 +14666,175822,16210 +14667,11838,4563 +14668,13652,3823 +14669,10991,3035 +14670,375742,74691 +14671,39936,250 +14672,39936,15417 +14673,13550,14723 +14674,289923,27571 +14675,10008,3244 +14676,93858,9020 +14677,51971,5125 +14678,362765,64898 +14679,28367,1704 +14680,41994,21229 +14681,77958,13168 +14682,56292,76067 +14683,18040,94356 +14684,29475,306 +14685,38303,5698 +14686,83191,11712 +14687,78210,5358 +14688,38150,5705 +14689,93856,14734 +14690,332759,31527 +14691,28455,9195 +14692,10527,521 +14693,314388,3407 +14694,2135,6194 +14695,10674,10217 +14696,123103,18148 +14697,39436,82322 +14698,9736,15671 +14699,85735,5358 +14700,9639,1895 +14701,2731,84953 +14702,180418,9971 +14703,52072,40989 +14704,37368,16136 +14705,336029,11092 +14706,333663,5056 +14707,118889,306 +14708,74919,266 +14709,5289,5357 +14710,57011,24728 +14711,111398,882 +14712,82679,13204 +14713,17820,8411 +14714,17691,42033 +14715,347258,4692 +14716,43880,8411 +14717,284246,8196 +14718,68347,14159 +14719,31977,3170 +14720,345922,79 +14721,43002,3810 +14722,42987,14535 +14723,294016,13470 +14724,258509,508 +14725,270774,79731 +14726,12716,6962 +14727,8467,11061 +14728,78094,2806 +14729,74395,4286 +14730,2012,863 +14731,346473,21206 +14732,16358,738 +14733,259292,50226 +14734,195544,20416 +14735,34334,644 +14736,37865,537 +14737,9785,24902 +14738,85230,40065 +14739,98289,5475 +14740,95177,82234 +14741,14435,1632 +14742,285860,806 +14743,8981,698 +14744,25655,5633 +14745,9358,3169 +14746,48677,33 +14747,11545,9195 +14748,17889,8411 +14749,127372,14870 +14750,26643,18582 +14751,336199,73741 +14752,37368,1281 +14753,25403,20769 +14754,334,178 +14755,11593,761 +14756,8471,860 +14757,14008,3213 +14758,17288,28703 +14759,949,675 +14760,128866,26646 +14761,129851,1501 +14762,46931,6171 +14763,8358,4171 +14764,42305,4 +14765,410259,14551 +14766,334299,6916 +14767,298722,21246 +14768,80560,14557 +14769,92381,41 +14770,97797,9342 +14771,14873,2 +14772,29101,865 +14773,31003,40866 +14774,11813,10523 +14775,351365,95162 +14776,352917,60062 +14777,43095,881 +14778,245775,3304 +14779,51571,6 +14780,362180,7792 +14781,99859,10272 +14782,64167,20777 +14783,55934,7203 +14784,90799,14828 +14785,452606,4639 +14786,25796,8855 +14787,286873,60227 +14788,61430,14030 +14789,20361,144 +14790,54796,3282 +14791,136582,15671 +14792,1634,104 +14793,306199,20528 +14794,88359,60 +14795,19587,30818 +14796,9889,306 +14797,157847,14037 +14798,27480,1380 +14799,73772,36600 +14800,138502,11087 +14801,394403,10947 +14802,977,69037 +14803,270774,79732 +14804,72251,29493 +14805,298695,36059 +14806,11376,2082 +14807,157829,14037 +14808,413198,80815 +14809,44801,8411 +14810,335778,5 +14811,445,315 +14812,278939,888 +14813,3780,882 +14814,152748,6819 +14815,64784,5458 +14816,276220,22029 +14817,1599,8874 +14818,18189,3545 +14819,82631,2605 +14820,43882,306 +14821,107073,11240 +14822,218778,2575 +14823,209271,21775 +14824,245692,591 +14825,3638,6194 +14826,155325,48708 +14827,936,23533 +14828,406449,74601 +14829,14011,17 +14830,59965,829 +14831,2675,12236 +14832,42457,20458 +14833,12499,6194 +14834,14012,12194 +14835,37969,2 +14836,9648,418 +14837,33127,5252 +14838,74661,6288 +14839,93828,7437 +14840,2454,11345 +14841,50123,13534 +14842,39992,1701 +14843,8932,8471 +14844,488,3632 +14845,149515,29729 +14846,49009,23992 +14847,18414,4 +14848,191820,7333 +14849,106546,74682 +14850,16985,2308 +14851,12427,254 +14852,44896,10262 +14853,168259,7154 +14854,8870,79 +14855,508,284 +14856,245158,922 +14857,61934,81359 +14858,241742,1311 +14859,44801,60 +14860,32604,6586 +14861,160160,77187 +14862,97794,8237 +14863,30943,1236 +14864,87148,18054 +14865,37700,859 +14866,81541,12750 +14867,388243,77022 +14868,10204,53413 +14869,10760,46052 +14870,57005,86712 +14871,316654,8444 +14872,9042,26033 +14873,6948,60 +14874,28238,67756 +14875,257444,12671 +14876,208309,1931 +14877,26125,7818 +14878,127585,306 +14879,186292,91896 +14880,22618,328 +14881,1691,35 +14882,38317,2608 +14883,180299,12142 +14884,20325,6 +14885,34651,8411 +14886,27259,5358 +14887,81120,14197 +14888,360606,3213 +14889,6977,258 +14890,120,5237 +14891,25376,11427 +14892,180929,6318 +14893,254007,31052 +14894,59189,4 +14895,385114,82779 +14896,10204,53414 +14897,74465,306 +14898,12476,68948 +14899,351211,88016 +14900,7549,2269 +14901,83430,2345 +14902,606,33 +14903,11600,22884 +14904,398289,78226 +14905,18551,4 +14906,340101,58546 +14907,13163,769 +14908,49514,6377 +14909,42418,90281 +14910,62213,9228 +14911,377853,3040 +14912,99859,718 +14913,232672,20788 +14914,136582,7131 +14915,23367,491 +14916,42179,11765 +14917,11873,9195 +14918,11677,4606 +14919,5511,21777 +14920,318781,88045 +14921,287483,16 +14922,139718,14513 +14923,259695,562 +14924,187022,3407 +14925,198600,6194 +14926,270650,1804 +14927,43231,19753 +14928,34216,60684 +14929,2002,951 +14930,366143,6704 +14931,336806,14924 +14932,140,11736 +14933,184710,14019 +14934,47493,591 +14935,39517,2015 +14936,4986,17446 +14937,85735,5381 +14938,61121,2669 +14939,242224,21181 +14940,55720,28708 +14941,457,241 +14942,9406,10895 +14943,11442,7405 +14944,76198,9 +14945,2021,20777 +14946,40060,17779 +14947,282963,29843 +14948,44502,3541 +14949,278867,75533 +14950,53689,16270 +14951,74,27 +14952,318359,71398 +14953,39939,2773 +14954,211166,21454 +14955,11618,1560 +14956,107430,1138 +14957,12764,13549 +14958,336885,51748 +14959,159474,12240 +14960,300601,7341 +14961,9441,436 +14962,88271,4641 +14963,15677,441 +14964,20421,500 +14965,99698,75566 +14966,45527,95580 +14967,5544,881 +14968,19995,289 +14969,80928,3166 +14970,9317,461 +14971,212934,7928 +14972,122928,8924 +14973,146679,11860 +14974,91333,11045 +14975,246133,19003 +14976,35032,8411 +14977,88811,29842 +14978,289232,7281 +14979,61527,6847 +14980,79593,10201 +14981,1969,11473 +14982,357706,44163 +14983,17236,54517 +14984,156597,805 +14985,42206,1448 +14986,228108,15462 +14987,38749,306 +14988,10748,23164 +14989,10774,8411 +14990,18143,3617 +14991,265351,47352 +14992,108177,21219 +14993,24750,41 +14994,127369,10473 +14995,288952,57094 +14996,7980,11 +14997,368006,12630 +14998,1628,53 +14999,286595,1666 +15000,14284,11594 +15001,48805,3112 +15002,127864,37264 +15003,14088,4288 +15004,12780,5552 +15005,22007,925 +15006,14226,93118 +15007,11485,2380 +15008,70966,5120 +15009,382501,83 +15010,10748,2651 +15011,377151,43244 +15012,54146,882 +15013,19794,61814 +15014,197057,14650 +15015,162877,54833 +15016,35021,71465 +15017,11001,5 +15018,131739,8671 +15019,41574,73687 +15020,1850,762 +15021,110980,5164 +15022,11553,255 +15023,16996,2378 +15024,26030,13715 +15025,12593,94148 +15026,14452,11567 +15027,193523,17513 +15028,15019,3587 +15029,3023,10330 +15030,84284,46234 +15031,51371,12190 +15032,174769,68391 +15033,301224,37492 +15034,201365,2460 +15035,13241,94375 +15036,8882,2441 +15037,80304,4740 +15038,11647,5552 +15039,9890,4 +15040,16307,660 +15041,59387,2785 +15042,37468,306 +15043,26264,2 +15044,44751,7609 +15045,30946,506 +15046,12614,8846 +15047,27637,84329 +15048,47342,484 +15049,45013,11279 +15050,19108,9266 +15051,212156,53787 +15052,53459,48329 +15053,11502,42243 +15054,5928,3070 +15055,26518,1976 +15056,18190,278 +15057,279598,14599 +15058,19661,33 +15059,259728,20915 +15060,13017,18713 +15061,10803,8411 +15062,28739,5322 +15063,333352,9137 +15064,101325,38245 +15065,288952,57096 +15066,277190,72315 +15067,84284,3324 +15068,8869,3241 +15069,162862,21 +15070,345775,76908 +15071,330459,47706 +15072,69075,10885 +15073,33511,9349 +15074,60994,377 +15075,24955,157 +15076,286789,1379 +15077,295588,34233 +15078,53648,6619 +15079,145135,3172 +15080,110552,4207 +15081,64167,1200 +15082,106355,1432 +15083,201676,7225 +15084,49920,17171 +15085,50780,6736 +15086,133575,2832 +15087,225044,17090 +15088,289191,76 +15089,115290,8797 +15090,64483,22690 +15091,131360,5488 +15092,52039,6531 +15093,13920,497 +15094,53230,8411 +15095,315465,11720 +15096,125521,5542 +15097,43757,13344 +15098,29649,559 +15099,278706,26001 +15100,105,20448 +15101,1959,820 +15102,53573,8411 +15103,35626,8458 +15104,183073,7869 +15105,71689,18978 +15106,72648,14237 +15107,11321,12485 +15108,9966,2779 +15109,47462,328 +15110,9950,95295 +15111,139455,18950 +15112,20160,6339 +15113,284154,28513 +15114,49963,254 +15115,400610,72758 +15116,217057,2879 +15117,5482,1912 +15118,39276,688 +15119,188836,13796 +15120,196789,6 +15121,15256,4 +15122,399798,21684 +15123,26864,9209 +15124,82327,12394 +15125,1630,34 +15126,196508,21594 +15127,70981,306 +15128,5928,16125 +15129,46094,10201 +15130,106944,25060 +15131,662,533 +15132,4286,1639 +15133,84831,3166 +15134,47161,95163 +15135,28345,306 +15136,1273,70995 +15137,81787,6317 +15138,143876,72026 +15139,149870,10342 +15140,16313,5369 +15141,373541,70421 +15142,19181,1531 +15143,167810,12562 +15144,9102,23096 +15145,21430,1438 +15146,70821,6438 +15147,177043,52354 +15148,13681,559 +15149,27414,559 +15150,2734,974 +15151,17303,16961 +15152,254869,29566 +15153,38021,21972 +15154,13225,306 +15155,94176,10330 +15156,45020,307 +15157,50725,23 +15158,310568,27193 +15159,177474,4 +15160,19995,574 +15161,26914,6082 +15162,19765,6242 +15163,72949,10845 +15164,81182,39735 +15165,1986,836 +15166,33542,2521 +15167,25388,4377 +15168,63612,11424 +15169,9539,2578 +15170,52454,1311 +15171,317,169 +15172,3051,1138 +15173,8970,4 +15174,30305,5137 +15175,73532,254 +15176,332354,49328 +15177,86727,10522 +15178,28519,90093 +15179,17238,9210 +15180,15489,2348 +15181,96712,9090 +15182,50247,5070 +15183,310568,850 +15184,14534,559 +15185,71320,10313 +15186,11370,53011 +15187,45335,8411 +15188,188161,2531 +15189,20210,975 +15190,177104,13566 +15191,134656,8869 +15192,71099,19777 +15193,284289,33433 +15194,1374,60 +15195,33124,3781 +15196,401164,90734 +15197,28681,47593 +15198,39056,1779 +15199,57351,77852 +15200,270400,38418 +15201,210047,20311 +15202,170603,2106 +15203,6687,2065 +15204,10008,3608 +15205,25684,11513 +15206,14765,1702 +15207,103236,64402 +15208,83770,10611 +15209,9542,514 +15210,184795,47745 +15211,10077,2979 +15212,210653,47082 +15213,32720,22811 +15214,41608,15408 +15215,441728,85466 +15216,59297,1778 +15217,47260,20049 +15218,377151,1848 +15219,21070,75258 +15220,72856,8411 +15221,13090,12807 +15222,48376,7890 +15223,14126,53962 +15224,186585,4946 +15225,16643,77845 +15226,7515,17700 +15227,16137,2250 +15228,9779,1088 +15229,9438,2 +15230,209271,21773 +15231,10610,2877 +15232,12412,2683 +15233,343140,10284 +15234,260312,3092 +15235,35926,18160 +15236,139519,21622 +15237,205864,6242 +15238,51311,11063 +15239,214081,11620 +15240,247691,306 +15241,289723,50089 +15242,96921,5869 +15243,173189,2953 +15244,303542,11011 +15245,381518,288 +15246,42871,441 +15247,322400,2401 +15248,62034,88216 +15249,17644,1382 +15250,121674,11752 +15251,25626,3407 +15252,19855,33 +15253,275136,15419 +15254,45714,4913 +15255,329865,7493 +15256,115782,12073 +15257,135313,10916 +15258,15067,7036 +15259,277778,21576 +15260,25376,5517 +15261,53231,29729 +15262,379873,4753 +15263,4641,42053 +15264,312497,68884 +15265,45772,9195 +15266,364088,65594 +15267,310431,1009 +15268,292062,48106 +15269,153397,3324 +15270,47260,11273 +15271,26670,9195 +15272,21966,6345 +15273,259075,82105 +15274,390357,2362 +15275,171337,14016 +15276,186988,5096 +15277,2034,79 +15278,396643,5567 +15279,377853,8009 +15280,17209,53459 +15281,384373,73569 +15282,20287,14723 +15283,58244,12391 +15284,13279,3287 +15285,91627,13863 +15286,17473,3330 +15287,313896,7201 +15288,24424,11631 +15289,109610,15059 +15290,103902,12022 +15291,228205,711 +15292,19827,6194 +15293,39957,1632 +15294,320589,20778 +15295,70368,29749 +15296,12526,1305 +15297,30363,1448 +15298,351211,829 +15299,12412,9195 +15300,137528,18120 +15301,655,6116 +15302,125666,4395 +15303,59981,22135 +15304,38021,5358 +15305,22023,4361 +15306,44027,11610 +15307,192133,12622 +15308,403431,77973 +15309,28820,4268 +15310,638,105 +15311,241254,3604 +15312,38920,56787 +15313,147939,12188 +15314,122221,10176 +15315,176124,261 +15316,27573,12199 +15317,9981,33 +15318,82624,12218 +15319,255692,20068 +15320,378446,12054 +15321,405670,20490 +15322,11880,46197 +15323,74,44 +15324,98631,6999 +15325,231082,15352 +15326,194853,93203 +15327,85411,152 +15328,157354,14639 +15329,25598,42344 +15330,157384,26952 +15331,198511,27992 +15332,37710,23731 +15333,266102,9987 +15334,130717,33 +15335,312669,41659 +15336,14819,2 +15337,41402,11448 +15338,65156,3166 +15339,17622,11663 +15340,60899,8222 +15341,15788,4 +15342,29272,18588 +15343,339403,443 +15344,354287,45778 +15345,96935,8894 +15346,10521,26671 +15347,87759,5120 +15348,435,54502 +15349,374475,77154 +15350,340176,69968 +15351,28370,484 +15352,323315,45732 +15353,97630,20344 +15354,64807,975 +15355,9555,57624 +15356,70666,345 +15357,117506,5632 +15358,61361,3620 +15359,10665,134 +15360,66966,10795 +15361,28710,52165 +15362,168259,333 +15363,32038,17619 +15364,212934,12467 +15365,7006,12026 +15366,15457,23067 +15367,11307,6194 +15368,158483,10342 +15369,5289,1896 +15370,378485,26607 +15371,110416,69190 +15372,6687,2674 +15373,278632,46299 +15374,339527,34081 +15375,41823,33 +15376,18279,6339 +15377,10077,87851 +15378,10475,5358 +15379,33273,5358 +15380,287301,14757 +15381,49844,441 +15382,41402,12807 +15383,78028,67984 +15384,140509,3219 +15385,384682,27 +15386,9902,506 +15387,5917,4376 +15388,8583,508 +15389,60420,2313 +15390,201223,13113 +15391,49850,29223 +15392,16314,9195 +15393,168259,3341 +15394,214081,856 +15395,32604,5358 +15396,423988,89545 +15397,14138,417 +15398,46586,6576 +15399,51999,288 +15400,270303,8714 +15401,26149,1600 +15402,48281,11114 +15403,2143,980 +15404,24397,15105 +15405,146380,34145 +15406,277355,13472 +15407,283686,44210 +15408,525,33 +15409,62764,11581 +15410,9095,559 +15411,316654,12154 +15412,17073,1030 +15413,441728,308 +15414,11101,21948 +15415,199373,31833 +15416,145247,42620 +15417,45665,2 +15418,286595,12392 +15419,27983,60537 +15420,261112,333 +15421,36811,44224 +15422,277688,30688 +15423,85715,25065 +15424,49172,6165 +15425,78383,6644 +15426,1991,7405 +15427,82941,10273 +15428,82708,4349 +15429,290316,10611 +15430,16436,510 +15431,32497,321 +15432,15163,289 +15433,51739,20191 +15434,43471,306 +15435,21447,8125 +15436,99863,6194 +15437,47200,16522 +15438,201365,1472 +15439,370755,26995 +15440,108177,1538 +15441,7551,130 +15442,433945,5906 +15443,362579,63809 +15444,43846,8411 +15445,11800,2658 +15446,204922,17513 +15447,46286,4714 +15448,31344,109 +15449,21736,3447 +15450,9753,42004 +15451,40139,1295 +15452,14555,2926 +15453,106112,2 +15454,406449,79281 +15455,214093,9 +15456,1116,12695 +15457,4982,23 +15458,29259,534 +15459,25707,6956 +15460,330588,1251 +15461,177677,11413 +15462,333484,79566 +15463,42188,9349 +15464,56937,3079 +15465,79526,33960 +15466,9286,12 +15467,9366,11407 +15468,107073,9980 +15469,73067,1898 +15470,60965,6874 +15471,11137,1171 +15472,300187,9027 +15473,18897,8303 +15474,15321,52518 +15475,319396,17840 +15476,127803,30534 +15477,3114,1322 +15478,12697,8177 +15479,2577,288 +15480,49852,24016 +15481,17467,3326 +15482,8391,2480 +15483,74666,33245 +15484,84226,44815 +15485,152100,6246 +15486,8985,55586 +15487,352208,76082 +15488,10585,60 +15489,83614,10845 +15490,61266,5120 +15491,410118,51748 +15492,151826,7454 +15493,337,189 +15494,1723,13954 +15495,17681,1353 +15496,22582,90403 +15497,21866,6194 +15498,318224,19900 +15499,126227,20358 +15500,98339,4186 +15501,31442,81478 +15502,4516,856 +15503,9542,3078 +15504,178446,1479 +15505,46010,5120 +15506,9013,33 +15507,166262,6246 +15508,148408,20091 +15509,1819,11844 +15510,150117,694 +15511,245692,5358 +15512,51275,16700 +15513,115616,10740 +15514,68629,26468 +15515,38681,22792 +15516,30669,37844 +15517,36658,431 +15518,1251,6194 +15519,263341,12005 +15520,316042,17457 +15521,101998,54606 +15522,4978,56 +15523,16464,48026 +15524,54982,6068 +15525,23518,516 +15526,93457,10165 +15527,31167,6 +15528,14452,925 +15529,323426,38056 +15530,49220,6417 +15531,293863,126 +15532,46326,4781 +15533,12103,824 +15534,11516,850 +15535,392818,75524 +15536,300983,42694 +15537,339669,72281 +15538,260001,19548 +15539,12450,4056 +15540,12599,5372 +15541,15414,34998 +15542,380058,2953 +15543,219233,10640 +15544,13689,6292 +15545,362150,42694 +15546,153169,8411 +15547,15807,6194 +15548,8948,2541 +15549,25890,34842 +15550,91607,3070 +15551,288952,57095 +15552,92251,10522 +15553,81538,8333 +15554,97110,10196 +15555,133704,3849 +15556,8985,55585 +15557,2033,888 +15558,26422,53268 +15559,134350,17228 +15560,112503,73 +15561,76544,14714 +15562,44552,7971 +15563,305342,54602 +15564,76533,5846 +15565,171213,2926 +15566,412103,6760 +15567,352025,71510 +15568,93676,6693 +15569,82817,8352 +15570,184741,6194 +15571,52264,8212 +15572,39495,5771 +15573,4762,403 +15574,18919,23484 +15575,10409,8724 +15576,116780,611 +15577,2110,104 +15578,42832,13306 +15579,227094,7956 +15580,59962,3929 +15581,25520,718 +15582,5804,21147 +15583,20055,8411 +15584,256474,24517 +15585,38448,40605 +15586,245906,14637 +15587,29263,79897 +15588,46667,6470 +15589,106417,4330 +15590,88558,364 +15591,5881,31047 +15592,17479,30231 +15593,38021,6586 +15594,37958,11761 +15595,17609,4606 +15596,39779,1830 +15597,62363,22259 +15598,31713,6 +15599,5460,177 +15600,25898,8411 +15601,418029,51905 +15602,10761,5 +15603,20196,41 +15604,333103,2933 +15605,43741,5645 +15606,258585,71825 +15607,267579,11293 +15608,140607,1 +15609,9286,48785 +15610,229757,8411 +15611,6081,23537 +15612,14147,5388 +15613,168027,52324 +15614,224,52 +15615,209401,9987 +15616,6948,24157 +15617,42204,33 +15618,41054,12239 +15619,328589,53151 +15620,17845,3411 +15621,15850,328 +15622,269149,6125 +15623,7551,1645 +15624,321142,168 +15625,27450,12 +15626,51104,11275 +15627,83831,4 +15628,21955,1009 +15629,179826,10843 +15630,145760,14809 +15631,92393,38024 +15632,38448,5704 +15633,33668,8411 +15634,413198,20543 +15635,323435,72698 +15636,408381,23398 +15637,16124,94200 +15638,9899,34 +15639,37710,14577 +15640,169934,4288 +15641,23223,20809 +15642,140818,25713 +15643,43987,3520 +15644,24392,41247 +15645,58244,2203 +15646,15713,2908 +15647,36489,22384 +15648,376391,11594 +15649,354979,83038 +15650,9252,4606 +15651,2687,67992 +15652,23382,1172 +15653,31048,5115 +15654,55628,3852 +15655,3309,6194 +15656,37514,44532 +15657,11547,2763 +15658,25037,364 +15659,94820,32910 +15660,257831,1627 +15661,13596,12020 +15662,16382,2910 +15663,97365,11798 +15664,252102,14912 +15665,14878,2985 +15666,290316,8009 +15667,226001,21404 +15668,186997,11246 +15669,125344,71223 +15670,244786,32157 +15671,159810,21525 +15672,290764,41648 +15673,117452,2345 +15674,10740,54030 +15675,11536,516 +15676,94803,12372 +15677,26954,4867 +15678,19760,10210 +15679,2731,354 +15680,247354,46979 +15681,313922,49389 +15682,267931,80612 +15683,744,4 +15684,326228,21594 +15685,438144,85985 +15686,46286,4131 +15687,247436,19135 +15688,73208,8912 +15689,26152,22761 +15690,44012,10645 +15691,58166,28479 +15692,47186,9209 +15693,55922,36604 +15694,30921,12579 +15695,12855,52012 +15696,36751,775 +15697,36868,1353 +15698,118536,17139 +15699,9877,333 +15700,15321,359 +15701,92562,4063 +15702,37609,26423 +15703,132363,18920 +15704,13396,71884 +15705,34459,9266 +15706,262958,3353 +15707,115565,22957 +15708,45726,1823 +15709,207636,8411 +15710,327383,50814 +15711,290555,8147 +15712,132227,10676 +15713,167,1178 +15714,82708,124 +15715,616,44 +15716,142979,85676 +15717,109491,36390 +15718,10053,1302 +15719,29979,5009 +15720,37053,3341 +15721,2262,67081 +15722,57683,1757 +15723,373838,1038 +15724,49850,6301 +15725,167583,9290 +15726,35651,22319 +15727,324440,13537 +15728,83896,26704 +15729,79645,2595 +15730,56807,94976 +15731,203833,5219 +15732,8282,2381 +15733,294640,17432 +15734,36264,7013 +15735,25890,2265 +15736,2516,1138 +15737,339116,76809 +15738,18621,17422 +15739,65545,18047 +15740,39407,33 +15741,275696,11049 +15742,43752,441 +15743,339527,85885 +15744,59356,3541 +15745,173638,49160 +15746,81541,51301 +15747,193650,5731 +15748,16331,12886 +15749,24469,1420 +15750,211059,8943 +15751,68387,58987 +15752,41468,441 +15753,17609,11239 +15754,430365,34774 +15755,87428,5 +15756,12697,11918 +15757,10025,508 +15758,225728,8087 +15759,17609,7446 +15760,26688,491 +15761,137093,13444 +15762,223485,41077 +15763,2640,10170 +15764,4550,1690 +15765,2274,2527 +15766,15472,33821 +15767,9904,1836 +15768,382589,7981 +15769,13022,19010 +15770,340616,8471 +15771,101183,10000 +15772,118015,10992 +15773,378018,50084 +15774,405473,89181 +15775,204922,36991 +15776,33788,2448 +15777,426264,163 +15778,124075,4899 +15779,56339,2683 +15780,1966,763 +15781,613,2683 +15782,10972,987 +15783,1991,308 +15784,123109,22305 +15785,37710,5 +15786,2687,508 +15787,19398,4508 +15788,11007,3929 +15789,15749,5319 +15790,69165,13549 +15791,77473,228 +15792,424488,10285 +15793,111017,10917 +15794,1813,676 +15795,2976,289 +15796,90351,9255 +15797,1253,14 +15798,137357,4006 +15799,76757,6194 +15800,25918,37668 +15801,38931,6264 +15802,41611,8411 +15803,51802,2159 +15804,179066,8411 +15805,42512,12372 +15806,10362,4384 +15807,45244,6368 +15808,38060,8811 +15809,72207,33 +15810,264729,7810 +15811,43596,52003 +15812,118098,33 +15813,18698,6194 +15814,50838,11567 +15815,15199,11152 +15816,96333,484 +15817,11862,5842 +15818,73306,73737 +15819,95136,12474 +15820,22160,5 +15821,9403,4 +15822,52705,109 +15823,6575,441 +15824,122081,78780 +15825,42726,1742 +15826,20047,69352 +15827,10643,622 +15828,11000,60 +15829,104702,45867 +15830,17317,5388 +15831,11853,89311 +15832,333372,14809 +15833,18585,2226 +15834,101006,1394 +15835,73869,2441 +15836,56942,8263 +15837,334298,10284 +15838,67130,3166 +15839,256628,20537 +15840,6166,7201 +15841,9963,1172 +15842,188858,4583 +15843,48339,21446 +15844,360603,6425 +15845,337107,11199 +15846,387399,40560 +15847,66125,46381 +15848,3146,882 +15849,81787,7248 +15850,278621,44467 +15851,74505,16310 +15852,366249,17516 +15853,7233,73956 +15854,18120,48116 +15855,144183,3449 +15856,80473,594 +15857,20645,4641 +15858,27095,729 +15859,27937,5120 +15860,15640,6194 +15861,254575,38970 +15862,244783,9015 +15863,266082,43649 +15864,295914,63928 +15865,185273,4395 +15866,279096,73091 +15867,118,45778 +15868,362974,48114 +15869,28448,4808 +15870,54093,5820 +15871,41030,19584 +15872,38625,5026 +15873,27599,7678 +15874,21191,13 +15875,7304,1507 +15876,18801,25128 +15877,18698,19691 +15878,122843,17010 +15879,335897,21987 +15880,55534,4056 +15881,78507,80588 +15882,15689,3101 +15883,15022,21024 +15884,14979,10405 +15885,444713,14055 +15886,47226,6916 +15887,77583,3598 +15888,209032,3033 +15889,123359,22865 +15890,22419,2248 +15891,194,591 +15892,98612,254 +15893,45899,79260 +15894,35790,14409 +15895,31945,1648 +15896,51285,3006 +15897,337107,77850 +15898,132601,15196 +15899,370755,86041 +15900,51476,4222 +15901,70670,10947 +15902,204965,24144 +15903,11215,60 +15904,126323,22062 +15905,278632,46297 +15906,169934,82346 +15907,15044,23060 +15908,120932,8411 +15909,18035,52699 +15910,374460,65251 +15911,10077,2981 +15912,11421,93382 +15913,20123,44449 +15914,20307,10210 +15915,238307,10845 +15916,17287,3052 +15917,9462,2521 +15918,22396,7870 +15919,93676,29223 +15920,191820,608 +15921,613,2278 +15922,289712,3172 +15923,118150,1740 +15924,45649,6930 +15925,19912,48788 +15926,10543,33 +15927,41206,33 +15928,340584,53568 +15929,49963,181 +15930,71496,7554 +15931,49853,7201 +15932,133328,10878 +15933,67216,8589 +15934,79593,1382 +15935,2662,10370 +15936,32934,21525 +15937,12079,18811 +15938,15759,11706 +15939,183932,8411 +15940,13536,174 +15941,65256,5747 +15942,8358,306 +15943,151826,18367 +15944,411221,7543 +15945,86369,23932 +15946,277847,52855 +15947,301804,24510 +15948,422548,21206 +15949,24816,3166 +15950,121942,46567 +15951,186869,5612 +15952,16907,3234 +15953,11370,10828 +15954,211387,420 +15955,11007,306 +15956,6934,7429 +15957,30082,45004 +15958,11902,653 +15959,324440,60939 +15960,17622,11666 +15961,58060,56584 +15962,28597,23 +15963,252171,51193 +15964,430365,19037 +15965,14254,2364 +15966,101342,6584 +15967,49853,26255 +15968,8932,8467 +15969,21044,306 +15970,383618,44438 +15971,15761,19230 +15972,104739,8492 +15973,49876,3462 +15974,4024,9387 +15975,14510,50340 +15976,42472,8411 +15977,148636,7258 +15978,35002,1314 +15979,16176,48941 +15980,2503,33 +15981,121230,4 +15982,43155,8411 +15983,25074,2521 +15984,13701,2630 +15985,197737,8411 +15986,635,14723 +15987,340027,3574 +15988,16186,35 +15989,128120,33118 +15990,9568,21084 +15991,63858,10330 +15992,272426,5754 +15993,134350,44806 +15994,76746,255 +15995,24685,4348 +15996,383538,35396 +15997,58428,4592 +15998,3989,4 +15999,20766,13649 +16000,121539,7320 +16001,27349,33 +16002,57918,1242 +16003,71067,21540 +16004,121895,29651 +16005,40466,25473 +16006,199373,27993 +16007,31901,5 +16008,107916,24017 +16009,11839,14917 +16010,45324,8689 +16011,14881,33 +16012,284306,6159 +16013,13180,39242 +16014,6644,10697 +16015,187596,7263 +16016,64202,3592 +16017,193756,33 +16018,8588,2254 +16019,104172,4606 +16020,10070,2811 +16021,238302,7353 +16022,39103,5542 +16023,8665,4 +16024,9902,491 +16025,33135,21121 +16026,393659,6425 +16027,22559,2 +16028,124680,295 +16029,2525,1216 +16030,429200,41077 +16031,336850,17157 +16032,17566,6452 +16033,91181,6 +16034,1986,837 +16035,29290,6176 +16036,33511,91543 +16037,65839,886 +16038,408537,6458 +16039,10594,333 +16040,363807,16441 +16041,116318,8486 +16042,412851,34804 +16043,254869,29564 +16044,48805,1701 +16045,14916,16636 +16046,23830,9 +16047,134480,6194 +16048,286567,53592 +16049,328589,288 +16050,12920,13816 +16051,259358,22071 +16052,13391,7542 +16053,107811,52337 +16054,9945,23894 +16055,31264,12 +16056,38554,11661 +16057,70586,3604 +16058,6341,2070 +16059,293982,24930 +16060,369567,68428 +16061,17609,8289 +16062,22897,735 +16063,51302,2504 +16064,89751,15597 +16065,51549,11846 +16066,228108,15465 +16067,15489,95596 +16068,63186,9 +16069,28417,11931 +16070,18493,10986 +16071,158015,33 +16072,86727,22123 +16073,41714,53903 +16074,42542,2159 +16075,168259,87857 +16076,333352,8147 +16077,23196,4198 +16078,8844,2550 +16079,312669,41660 +16080,401222,77854 +16081,136743,33214 +16082,13655,39016 +16083,69605,10330 +16084,149465,5120 +16085,8014,744 +16086,40095,8043 +16087,9260,5367 +16088,55604,8411 +16089,153795,925 +16090,14651,5358 +16091,241239,6736 +16092,45610,5294 +16093,302026,20162 +16094,138308,5039 +16095,334299,76445 +16096,8672,3324 +16097,52859,10096 +16098,196027,5746 +16099,70666,33 +16100,18222,17067 +16101,334527,50490 +16102,13279,12485 +16103,10760,46051 +16104,31890,18939 +16105,140470,4 +16106,43434,2254 +16107,65545,5120 +16108,48489,25484 +16109,124470,46240 +16110,24363,38771 +16111,58244,48188 +16112,252773,15308 +16113,20718,3830 +16114,12811,29223 +16115,9539,856 +16116,121006,8411 +16117,694,11272 +16118,8457,10105 +16119,54093,70773 +16120,172520,31143 +16121,80988,40020 +16122,48131,364 +16123,15143,477 +16124,46992,20777 +16125,42457,4 +16126,357106,1331 +16127,45627,6194 +16128,14751,3188 +16129,106944,144 +16130,137093,17393 +16131,255948,18933 +16132,10694,306 +16133,242076,19177 +16134,44522,8423 +16135,43931,7295 +16136,17875,16354 +16137,268920,12 +16138,73313,8411 +16139,71329,75517 +16140,284189,20663 +16141,438634,26174 +16142,50326,1192 +16143,29449,441 +16144,13056,83338 +16145,351065,345 +16146,84030,77601 +16147,78307,81962 +16148,340053,6111 +16149,44458,12183 +16150,368342,40788 +16151,39979,10519 +16152,2204,10869 +16153,78307,81963 +16154,16231,2997 +16155,11516,10046 +16156,27138,898 +16157,1125,4 +16158,38883,7981 +16159,13934,2 +16160,120478,1371 +16161,136799,521 +16162,36672,602 +16163,2929,18758 +16164,340176,3033 +16165,168259,33 +16166,167073,16486 +16167,24831,1950 +16168,314389,80514 +16169,128795,37789 +16170,211579,58870 +16171,9585,841 +16172,11313,97 +16173,48594,11651 +16174,33613,3221 +16175,71700,22921 +16176,155341,93638 +16177,7014,2170 +16178,76170,10893 +16179,64383,7009 +16180,19794,10808 +16181,48770,86119 +16182,78691,3644 +16183,51209,6802 +16184,74,56 +16185,26119,18039 +16186,284279,1003 +16187,31922,12474 +16188,125945,19385 +16189,64454,47078 +16190,142656,5070 +16191,1715,1811 +16192,5516,9195 +16193,43562,6194 +16194,85420,76194 +16195,16239,3165 +16196,269246,2785 +16197,142012,18880 +16198,12182,771 +16199,83770,70 +16200,332283,7310 +16201,124470,30023 +16202,201365,21327 +16203,376501,79323 +16204,329206,3393 +16205,12650,11833 +16206,316170,1583 +16207,41380,2734 +16208,344656,55545 +16209,17609,7777 +16210,420648,29566 +16211,15602,6194 +16212,499,14683 +16213,4024,6116 +16214,94525,94937 +16215,359459,21199 +16216,46758,1573 +16217,1690,3287 +16218,106747,25608 +16219,54796,95097 +16220,78705,28811 +16221,131737,23411 +16222,275060,14037 +16223,6077,1990 +16224,87827,13480 +16225,72917,5358 +16226,13728,22683 +16227,108822,5358 +16228,36929,10210 +16229,284288,3171 +16230,333385,15465 +16231,211729,15984 +16232,20444,11496 +16233,96133,15407 +16234,59297,13412 +16235,46261,14 +16236,43119,38536 +16237,420703,4 +16238,199373,31832 +16239,212481,16073 +16240,12182,1473 +16241,374883,23222 +16242,25682,1799 +16243,19187,1420 +16244,13678,5358 +16245,29829,4977 +16246,62728,694 +16247,329682,28452 +16248,412851,48496 +16249,145316,3 +16250,252102,20311 +16251,10991,12653 +16252,31880,18667 +16253,82624,8145 +16254,146,10565 +16255,73027,364 +16256,2613,89313 +16257,11236,70 +16258,429174,90658 +16259,125945,21321 +16260,43023,9266 +16261,81232,6583 +16262,153162,8411 +16263,35623,46226 +16264,230179,44224 +16265,37437,4 +16266,346672,126 +16267,30361,36911 +16268,51311,843 +16269,83714,915 +16270,37710,3045 +16271,318052,16581 +16272,29260,4927 +16273,283726,819 +16274,14979,906 +16275,228198,95200 +16276,28893,1950 +16277,12169,15671 +16278,40761,10330 +16279,11346,3735 +16280,92132,12617 +16281,271919,581 +16282,127380,2 +16283,413421,80879 +16284,64191,19237 +16285,37254,177 +16286,9613,826 +16287,2757,278 +16288,41979,5120 +16289,23385,10583 +16290,199647,73383 +16291,82191,64862 +16292,29416,4951 +16293,25388,11985 +16294,11055,15191 +16295,154575,52 +16296,29136,8797 +16297,332806,13788 +16298,72207,7295 +16299,36463,3458 +16300,15045,89719 +16301,264729,9335 +16302,74666,6916 +16303,1049,508 +16304,44936,41796 +16305,17985,3421 +16306,283726,12096 +16307,5552,6246 +16308,9504,67781 +16309,68629,19671 +16310,84397,6 +16311,15179,2669 +16312,443007,86962 +16313,290316,11923 +16314,79935,8502 +16315,28668,441 +16316,59197,1311 +16317,45132,14407 +16318,58664,32430 +16319,14976,1274 +16320,8204,4 +16321,6933,2073 +16322,80389,11732 +16323,52741,559 +16324,228028,10425 +16325,270842,11415 +16326,11008,33 +16327,14537,5070 +16328,44869,8411 +16329,407806,8858 +16330,274479,13184 +16331,80316,441 +16332,62783,18064 +16333,321315,19246 +16334,12650,4983 +16335,27230,6455 +16336,58985,33 +16337,30036,8411 +16338,410718,40260 +16339,30554,2124 +16340,140509,12469 +16341,351211,1632 +16342,101376,16269 +16343,100669,3282 +16344,200727,47 +16345,14698,12611 +16346,64225,10901 +16347,13468,14730 +16348,62213,20004 +16349,34899,5358 +16350,58,130 +16351,298931,42328 +16352,51548,6519 +16353,21927,12696 +16354,298751,55145 +16355,43009,72590 +16356,51481,52010 +16357,14904,11840 +16358,17287,18321 +16359,32088,8792 +16360,344120,475 +16361,1116,19930 +16362,23397,4376 +16363,129518,3142 +16364,430250,77130 +16365,11694,441 +16366,77010,51320 +16367,185987,10444 +16368,290764,36614 +16369,24409,4359 +16370,49559,27124 +16371,47886,4805 +16372,19794,10254 +16373,199602,8666 +16374,146238,10104 +16375,10692,11506 +16376,1995,762 +16377,56435,641 +16378,11456,4 +16379,14904,39250 +16380,254007,41001 +16381,128120,16701 +16382,27283,10420 +16383,83599,24950 +16384,11589,8411 +16385,83718,8888 +16386,37083,4928 +16387,2355,2608 +16388,12422,3061 +16389,167956,54957 +16390,188392,4178 +16391,50008,3078 +16392,9426,5612 +16393,8014,11248 +16394,13853,69888 +16395,13549,60 +16396,3941,441 +16397,375082,1591 +16398,18616,3517 +16399,35113,31080 +16400,18472,3495 +16401,329868,9232 +16402,300,6586 +16403,22020,42843 +16404,38322,508 +16405,186971,1848 +16406,109491,6194 +16407,79500,4 +16408,43390,8411 +16409,104343,9182 +16410,51548,6520 +16411,336011,64854 +16412,6977,838 +16413,38237,40422 +16414,2637,126 +16415,85414,25729 +16416,115782,12074 +16417,151937,26074 +16418,47459,4784 +16419,157424,25951 +16420,302036,37954 +16421,12499,1885 +16422,13391,7394 +16423,59961,33 +16424,45324,8692 +16425,91627,13864 +16426,11643,16354 +16427,10395,5 +16428,270403,74574 +16429,14904,5186 +16430,290764,12292 +16431,71945,9228 +16432,27805,14112 +16433,240881,5617 +16434,13965,2848 +16435,131781,8411 +16436,13654,2 +16437,138730,21594 +16438,55836,1497 +16439,287281,3047 +16440,76286,4820 +16441,32428,61 +16442,18893,43790 +16443,3701,1503 +16444,219572,19660 +16445,328429,19632 +16446,21030,8411 +16447,13391,5261 +16448,71336,84006 +16449,44211,6038 +16450,15060,16323 +16451,30141,152 +16452,203539,8146 +16453,50318,11992 +16454,1715,14 +16455,11397,441 +16456,242076,20658 +16457,30640,1221 +16458,16987,82128 +16459,246417,10845 +16460,22943,4148 +16461,3556,1453 +16462,311093,6679 +16463,267579,52162 +16464,54102,11842 +16465,19545,8409 +16466,18414,126 +16467,6552,598 +16468,63472,17980 +16469,287587,1974 +16470,340187,73376 +16471,4806,10201 +16472,26152,3823 +16473,10534,1644 +16474,406431,79290 +16475,10326,4564 +16476,10916,5730 +16477,256311,24145 +16478,20986,3041 +16479,19255,12808 +16480,24810,6530 +16481,43904,11476 +16482,20941,28334 +16483,83770,21914 +16484,9928,9383 +16485,29151,66334 +16486,9659,8831 +16487,44937,2902 +16488,9771,6194 +16489,185987,13341 +16490,67162,16685 +16491,25520,8256 +16492,9260,129 +16493,42045,3268 +16494,23178,4191 +16495,383535,73386 +16496,130272,12023 +16497,63498,11423 +16498,445727,23468 +16499,49158,47822 +16500,52556,2462 +16501,28110,9266 +16502,372226,12466 +16503,235662,6425 +16504,17240,3608 +16505,114438,1107 +16506,24266,4293 +16507,29146,634 +16508,63498,11427 +16509,17282,17915 +16510,235,5 +16511,9602,4 +16512,168259,87858 +16513,68179,5024 +16514,318184,6145 +16515,337107,76994 +16516,52856,915 +16517,88953,1931 +16518,413198,20542 +16519,53860,8411 +16520,145135,25673 +16521,253277,39077 +16522,26811,4630 +16523,16551,306 +16524,101998,19932 +16525,59961,6452 +16526,33253,3707 +16527,18189,25433 +16528,10594,506 +16529,137315,2683 +16530,235092,15296 +16531,25053,1141 +16532,82485,1786 +16533,10849,41 +16534,395914,13852 +16535,156277,65466 +16536,16182,46792 +16537,42837,43854 +16538,236399,19625 +16539,5289,21869 +16540,43459,4361 +16541,280030,16 +16542,436,7429 +16543,117534,53105 +16544,83770,8372 +16545,197583,48401 +16546,47144,36746 +16547,2503,862 +16548,38850,56010 +16549,1924,51861 +16550,294483,16053 +16551,175386,6194 +16552,11873,514 +16553,9717,554 +16554,177714,13588 +16555,43771,95106 +16556,25953,4946 +16557,9071,13190 +16558,39195,83349 +16559,17622,806 +16560,8985,25188 +16561,52850,288 +16562,26823,4594 +16563,61984,9149 +16564,322922,54803 +16565,45522,5940 +16566,74585,41116 +16567,35284,441 +16568,1976,6194 +16569,145135,2514 +16570,128089,6841 +16571,49834,25350 +16572,241639,18626 +16573,37269,5452 +16574,46193,8411 +16575,834,126 +16576,186630,14097 +16577,147815,3118 +16578,44754,10161 +16579,1073,126 +16580,40029,5798 +16581,37609,3213 +16582,291351,32555 +16583,21371,3788 +16584,205891,5357 +16585,280840,26590 +16586,45019,175 +16587,258751,5104 +16588,11035,64 +16589,329805,694 +16590,171759,72408 +16591,46567,10453 +16592,48231,2844 +16593,31682,10330 +16594,332872,79368 +16595,41497,2393 +16596,290316,11921 +16597,64725,1787 +16598,355111,6220 +16599,309820,37230 +16600,341077,19638 +16601,9042,26032 +16602,41211,19957 +16603,228066,22213 +16604,24559,33 +16605,60665,12940 +16606,132328,5740 +16607,434973,38407 +16608,21948,9266 +16609,294254,12292 +16610,318553,5225 +16611,12704,5 +16612,217038,5975 +16613,317723,43907 +16614,67,15 +16615,49717,6690 +16616,251232,40539 +16617,389630,87428 +16618,77079,1242 +16619,70436,7295 +16620,5237,181 +16621,50696,955 +16622,253251,49389 +16623,288313,30816 +16624,35021,71464 +16625,297265,35180 +16626,273511,25927 +16627,55922,36606 +16628,28387,5841 +16629,378503,15261 +16630,121936,616 +16631,13996,7653 +16632,75752,4 +16633,411741,27497 +16634,64847,51354 +16635,9403,11661 +16636,37084,37658 +16637,27144,4395 +16638,7459,79 +16639,352025,83 +16640,3423,10522 +16641,29129,9384 +16642,293271,33299 +16643,27681,10202 +16644,39101,5542 +16645,85327,60 +16646,37820,8724 +16647,103758,5125 +16648,206647,5 +16649,120977,28205 +16650,381518,13854 +16651,11798,3519 +16652,5511,42182 +16653,9589,39822 +16654,6076,1989 +16655,51054,18288 +16656,149170,5120 +16657,83430,8708 +16658,306966,12371 +16659,106747,10808 +16660,440597,60621 +16661,44087,8213 +16662,38022,28518 +16663,210913,11388 +16664,6171,24939 +16665,19946,9152 +16666,4916,915 +16667,1813,508 +16668,38157,24076 +16669,70587,19650 +16670,1251,56 +16671,39286,288 +16672,174000,38356 +16673,256740,20305 +16674,10391,42221 +16675,1984,76206 +16676,13505,4 +16677,337107,75983 +16678,56601,19901 +16679,103012,6834 +16680,302699,13778 +16681,24821,24493 +16682,635,24905 +16683,9835,870 +16684,21519,6379 +16685,15472,5746 +16686,220976,810 +16687,338518,21646 +16688,14047,8801 +16689,16342,26173 +16690,209271,21774 +16691,279606,17411 +16692,164013,1038 +16693,273404,22208 +16694,301671,9259 +16695,341490,2396 +16696,46492,882 +16697,40998,3118 +16698,132601,3980 +16699,63105,21437 +16700,256474,21655 +16701,55989,41047 +16702,359412,63075 +16703,1586,441 +16704,22999,6 +16705,282070,11848 +16706,13411,4195 +16707,207270,64694 +16708,14527,11551 +16709,72875,7661 +16710,9423,7237 +16711,290316,11798 +16712,16980,37812 +16713,378446,18367 +16714,15003,3007 +16715,205481,11912 +16716,17465,4357 +16717,46586,5681 +16718,80713,36920 +16719,134806,89425 +16720,267579,1719 +16721,11230,13433 +16722,203217,54386 +16723,130055,8997 +16724,359412,10405 +16725,57809,1038 +16726,16890,3231 +16727,44282,11999 +16728,267579,67475 +16729,210068,5260 +16730,15805,429 +16731,114108,37046 +16732,1595,741 +16733,34588,2432 +16734,7210,451 +16735,45527,1063 +16736,362151,60282 +16737,408537,33916 +16738,46261,7263 +16739,15940,52608 +16740,14217,1393 +16741,293452,7295 +16742,167882,72797 +16743,91628,5766 +16744,79234,19213 +16745,285135,10399 +16746,116554,12476 +16747,9423,11533 +16748,14705,5129 +16749,44655,85946 +16750,73600,2370 +16751,2259,10598 +16752,59861,33 +16753,219572,7529 +16754,31306,4434 +16755,10020,6125 +16756,251421,15418 +16757,345915,10255 +16758,38749,36392 +16759,239562,5984 +16760,765,47380 +16761,13842,6547 +16762,5393,1632 +16763,309581,15312 +16764,285869,2391 +16765,15592,10282 +16766,445,10273 +16767,36811,16923 +16768,34019,4641 +16769,4641,47441 +16770,4291,528 +16771,41479,2147 +16772,58428,1360 +16773,2750,9349 +16774,177043,6194 +16775,268920,15829 +16776,390,11143 +16777,418378,64997 +16778,157384,26950 +16779,356500,5056 +16780,253309,57430 +16781,163706,16804 +16782,70670,8246 +16783,8429,2421 +16784,47943,5358 +16785,5425,15669 +16786,80473,2876 +16787,19506,6051 +16788,259835,11892 +16789,31445,6 +16790,57701,21163 +16791,56448,3268 +16792,354296,318 +16793,82745,86556 +16794,77056,5358 +16795,20941,2253 +16796,22051,9352 +16797,357390,20024 +16798,214756,44783 +16799,59965,24561 +16800,10671,1830 +16801,13668,7295 +16802,14041,8146 +16803,10910,3632 +16804,67,93 +16805,31347,4641 +16806,40633,8411 +16807,157354,14638 +16808,76757,444 +16809,59163,9 +16810,96936,41077 +16811,8915,24884 +16812,17136,3257 +16813,75142,7782 +16814,32526,14648 +16815,25797,30636 +16816,264644,7493 +16817,2982,306 +16818,19336,882 +16819,322785,5612 +16820,76207,18477 +16821,321160,11073 +16822,214081,11199 +16823,98349,608 +16824,27259,246 +16825,51249,11195 +16826,50295,35933 +16827,11880,9110 +16828,36773,1363 +16829,98339,11877 +16830,49843,364 +16831,27042,4627 +16832,15359,2785 +16833,2757,10565 +16834,82941,62704 +16835,20983,3875 +16836,7547,21856 +16837,39053,1645 +16838,349441,24662 +16839,21619,3992 +16840,37581,6 +16841,331641,74328 +16842,15661,14159 +16843,1640,25434 +16844,24926,3166 +16845,216369,16387 +16846,155128,4745 +16847,378503,86346 +16848,1452,9168 +16849,24679,6194 +16850,296313,17513 +16851,27036,5235 +16852,200,4 +16853,312831,18078 +16854,118257,27992 +16855,39939,43 +16856,30141,11732 +16857,241639,18625 +16858,155597,8930 +16859,37910,3756 +16860,13507,11939 +16861,153141,6705 +16862,10154,6194 +16863,82696,5 +16864,8906,5766 +16865,99698,6941 +16866,28155,6194 +16867,98066,7625 +16868,99283,8411 +16869,57489,86518 +16870,43143,4278 +16871,377151,48689 +16872,115276,22789 +16873,76543,7975 +16874,55294,11149 +16875,53256,7025 +16876,37305,60 +16877,28417,7466 +16878,30496,3324 +16879,857,56 +16880,284296,10351 +16881,21148,3909 +16882,15013,1207 +16883,60420,838 +16884,343140,25657 +16885,32558,614 +16886,82817,10609 +16887,791,498 +16888,16560,559 +16889,19338,57342 +16890,10047,9 +16891,8985,55587 +16892,257831,17994 +16893,84104,72965 +16894,22939,3324 +16895,38772,33 +16896,408537,22031 +16897,320873,79276 +16898,298722,93972 +16899,56693,4990 +16900,113525,95919 +16901,245700,9987 +16902,171337,10102 +16903,110525,306 +16904,392660,14186 +16905,41301,5948 +16906,19715,5888 +16907,371942,8988 +16908,14945,1077 +16909,275060,2372 +16910,10694,35709 +16911,91679,17731 +16912,31522,109 +16913,290370,12467 +16914,218898,64402 +16915,309809,41042 +16916,15534,737 +16917,37725,7419 +16918,27432,93224 +16919,9982,10217 +16920,326723,7201 +16921,188598,57493 +16922,93116,6203 +16923,17306,3283 +16924,8583,6194 +16925,45184,8411 +16926,394645,37337 +16927,539,4 +16928,159211,2683 +16929,121791,5609 +16930,27358,8463 +16931,30289,3991 +16932,1969,828 +16933,337107,591 +16934,4923,55637 +16935,8494,2509 +16936,39356,294 +16937,2029,884 +16938,3050,1301 +16939,206514,5996 +16940,60662,35498 +16941,230179,62409 +16942,14765,2490 +16943,242042,60250 +16944,22894,2266 +16945,114348,5488 +16946,46924,58750 +16947,18890,4105 +16948,68193,5776 +16949,258251,21014 +16950,9736,2585 +16951,31597,33 +16952,359870,83604 +16953,85414,25728 +16954,5040,1829 +16955,42402,6194 +16956,2259,705 +16957,188765,33593 +16958,310568,44438 +16959,7326,43 +16960,344170,79083 +16961,12247,6724 +16962,244117,68290 +16963,18739,10393 +16964,384594,47547 +16965,303542,38591 +16966,99351,8411 +16967,298722,6246 +16968,29272,8943 +16969,64678,7499 +16970,267931,80613 +16971,36758,278 +16972,21966,6348 +16973,116312,4808 +16974,333484,34034 +16975,17630,23577 +16976,213121,3 +16977,54690,68952 +16978,24675,11671 +16979,48787,38960 +16980,10550,1171 +16981,11547,22955 +16982,44800,4 +16983,55294,11147 +16984,42678,60 +16985,330418,14294 +16986,273404,7320 +16987,44896,2348 +16988,13551,5330 +16989,2731,25023 +16990,146,12205 +16991,176,2061 +16992,70815,13969 +16993,61225,51560 +16994,74942,6752 +16995,17057,3248 +16996,378087,29566 +16997,7972,11542 +16998,8014,7799 +16999,64944,18367 +17000,9297,5 +17001,286595,27123 +17002,42571,1533 +17003,13788,7295 +17004,34723,2 +17005,20507,2320 +17006,1049,644 +17007,53864,8411 +17008,40693,6194 +17009,77165,11638 +17010,43773,79260 +17011,85735,21860 +17012,186988,2683 +17013,290999,32400 +17014,11933,6194 +17015,39358,11244 +17016,238589,23770 +17017,85735,11199 +17018,203819,7217 +17019,92716,8411 +17020,279690,10530 +17021,87514,19972 +17022,18072,3444 +17023,87516,17395 +17024,332979,1047 +17025,8985,48427 +17026,60106,1115 +17027,4932,306 +17028,2105,3169 +17029,6522,23 +17030,61984,4649 +17031,253251,17727 +17032,10351,24075 +17033,227262,17465 +17034,390747,89083 +17035,52418,7036 +17036,1381,10104 +17037,10475,4227 +17038,20438,35929 +17039,61765,7110 +17040,68050,13565 +17041,51367,12190 +17042,10134,1445 +17043,30163,1524 +17044,354859,61019 +17045,46169,3213 +17046,72545,1836 +17047,100088,18059 +17048,13391,4641 +17049,82098,22792 +17050,45610,8532 +17051,67,91 +17052,11516,11402 +17053,22471,4523 +17054,34078,9266 +17055,309879,76952 +17056,8985,27559 +17057,444193,37208 +17058,325039,44884 +17059,99698,4606 +17060,336149,73502 +17061,44937,11066 +17062,8463,12 +17063,86284,60 +17064,228968,19037 +17065,136146,40245 +17066,31347,528 +17067,41522,20358 +17068,59296,52284 +17069,63326,7119 +17070,337789,82957 +17071,205864,70788 +17072,39519,4389 +17073,64678,500 +17074,31555,441 +17075,382873,60759 +17076,35200,60 +17077,353713,16067 +17078,3587,1484 +17079,250066,7587 +17080,44000,14093 +17081,153518,18642 +17082,146216,491 +17083,11584,960 +17084,38732,10330 +17085,182899,8411 +17086,315880,26261 +17087,198993,5650 +17088,54801,13718 +17089,16899,23068 +17090,51619,659 +17091,404567,79974 +17092,664,23370 +17093,73872,22393 +17094,47670,6254 +17095,224,6804 +17096,89591,2081 +17097,266568,12651 +17098,51549,4667 +17099,361750,3849 +17100,297814,21206 +17101,15090,26646 +17102,101752,75584 +17103,59861,4170 +17104,48567,5024 +17105,22998,306 +17106,77057,1516 +17107,97767,6194 +17108,153266,266 +17109,390547,76984 +17110,11361,4351 +17111,203321,41115 +17112,327231,17516 +17113,101838,9334 +17114,294652,41077 +17115,432883,59811 +17116,103168,5 +17117,131351,7429 +17118,74629,3268 +17119,14811,60 +17120,9030,4622 +17121,190955,2490 +17122,42832,10260 +17123,419522,1429 +17124,285803,4336 +17125,295964,36390 +17126,31512,3219 +17127,21250,5371 +17128,118957,12752 +17129,201765,8111 +17130,13017,6254 +17131,56807,2690 +17132,340053,29972 +17133,17622,11665 +17134,341201,54762 +17135,86360,5488 +17136,18070,2100 +17137,16164,308 +17138,37517,8724 +17139,146,20290 +17140,10336,23364 +17141,338676,12520 +17142,17771,3389 +17143,9785,58262 +17144,93676,20648 +17145,172908,8411 +17146,44115,6708 +17147,201749,191 +17148,55236,6194 +17149,26173,13219 +17150,17479,18367 +17151,36245,534 +17152,85735,15671 +17153,43912,1988 +17154,63538,5120 +17155,72032,168 +17156,424643,83092 +17157,1634,23397 +17158,377516,3324 +17159,285,130 +17160,357706,11835 +17161,3423,1401 +17162,169881,27392 +17163,36253,82757 +17164,33095,11332 +17165,70074,1786 +17166,320736,1190 +17167,174594,36191 +17168,163053,18758 +17169,2259,13096 +17170,459295,8858 +17171,20941,5084 +17172,62441,9987 +17173,61430,441 +17174,30478,71249 +17175,9470,5 +17176,11185,559 +17177,351809,29564 +17178,399612,9335 +17179,152748,14634 +17180,11133,8411 +17181,246127,4503 +17182,12309,81143 +17183,294690,10890 +17184,24685,4347 +17185,312100,84207 +17186,43514,6194 +17187,14794,4 +17188,322,6194 +17189,922,663 +17190,4538,258 +17191,7219,2187 +17192,108535,10451 +17193,8342,2683 +17194,9297,56 +17195,14076,2859 +17196,256421,2785 +17197,254575,37860 +17198,32323,10473 +17199,64328,2 +17200,101998,8582 +17201,838,536 +17202,15189,2348 +17203,257444,34519 +17204,139519,21623 +17205,23155,53787 +17206,11351,70 +17207,12783,838 +17208,27085,13730 +17209,10379,1382 +17210,12763,12 +17211,118957,7584 +17212,12506,33 +17213,405050,62925 +17214,81463,30391 +17215,441881,59293 +17216,343369,54927 +17217,336666,51614 +17218,283445,7625 +17219,15457,15671 +17220,239563,308 +17221,315465,20192 +17222,14,27 +17223,286873,37888 +17224,266082,6111 +17225,39102,5542 +17226,15092,1632 +17227,2453,8411 +17228,43092,8730 +17229,245917,6451 +17230,11537,13433 +17231,126934,3213 +17232,31385,36549 +17233,3087,6194 +17234,114779,12875 +17235,40817,2441 +17236,13848,3571 +17237,77950,521 +17238,8014,19932 +17239,153102,6790 +17240,223497,6 +17241,30363,77948 +17242,60935,10210 +17243,104697,7159 +17244,621,3978 +17245,20361,3757 +17246,72431,306 +17247,161602,5579 +17248,19809,3679 +17249,460870,37457 +17250,87826,5 +17251,2002,18367 +17252,144229,19463 +17253,58251,80099 +17254,490,6181 +17255,36773,70 +17256,10066,6194 +17257,72431,1 +17258,108535,32791 +17259,9503,19477 +17260,159095,20664 +17261,34280,1742 +17262,12538,7405 +17263,47410,20479 +17264,14164,81135 +17265,450530,20580 +17266,27480,11840 +17267,12481,2521 +17268,753,454 +17269,364410,65785 +17270,42634,33934 +17271,364410,17173 +17272,109261,49619 +17273,58060,5358 +17274,42764,15179 +17275,274857,433 +17276,14444,2348 +17277,17317,81200 +17278,130881,1221 +17279,896,26424 +17280,305455,2908 +17281,70801,21540 +17282,13526,694 +17283,81522,1766 +17284,121173,8355 +17285,270403,44601 +17286,245703,50914 +17287,139589,16217 +17288,1165,225 +17289,42502,19906 +17290,69560,4056 +17291,188468,9329 +17292,62675,17873 +17293,19103,3804 +17294,31127,20479 +17295,5413,40605 +17296,21866,89137 +17297,230266,2009 +17298,11972,20999 +17299,80545,15276 +17300,86838,2376 +17301,200813,5996 +17302,14226,93119 +17303,11813,1400 +17304,300321,66454 +17305,30265,104 +17306,287636,18440 +17307,408024,92233 +17308,304336,5218 +17309,28917,2699 +17310,57996,88216 +17311,109614,18880 +17312,108723,4952 +17313,390547,76985 +17314,164504,4 +17315,4307,49 +17316,10909,3589 +17317,41787,14723 +17318,461805,89819 +17319,48254,371 +17320,48508,6941 +17321,54139,306 +17322,14977,3641 +17323,490,10932 +17324,9461,6194 +17325,215016,18880 +17326,13350,1353 +17327,15037,5 +17328,5421,6082 +17329,26644,3324 +17330,333385,19632 +17331,27019,21505 +17332,310137,41045 +17333,84831,20741 +17334,302026,12657 +17335,3036,70 +17336,223551,12021 +17337,377151,29223 +17338,299828,3393 +17339,88005,10146 +17340,50123,36959 +17341,9059,33 +17342,336882,74636 +17343,1450,3689 +17344,68184,4922 +17345,83770,79077 +17346,113432,87674 +17347,127372,47283 +17348,16907,882 +17349,60269,75466 +17350,32124,3788 +17351,10087,2055 +17352,99374,8411 +17353,11516,18367 +17354,187028,38175 +17355,268212,12782 +17356,271404,17364 +17357,103161,14007 +17358,325592,59111 +17359,198663,22213 +17360,130957,41112 +17361,9503,12372 +17362,3933,6194 +17363,29352,5798 +17364,403119,79822 +17365,434873,52207 +17366,29610,4 +17367,69152,13682 +17368,41590,10210 +17369,37958,8852 +17370,89591,1071 +17371,348315,32911 +17372,237584,18239 +17373,283686,8111 +17374,84848,863 +17375,1818,745 +17376,44793,20170 +17377,1498,2521 +17378,47194,29489 +17379,18690,4402 +17380,11972,10882 +17381,277558,19776 +17382,119213,3480 +17383,40041,22051 +17384,122843,17012 +17385,266741,22338 +17386,805,10324 +17387,59965,24558 +17388,3520,1714 +17389,99329,5779 +17390,445602,87464 +17391,47588,40424 +17392,12154,9195 +17393,2892,66255 +17394,190955,19690 +17395,3059,1308 +17396,8985,51549 +17397,205584,908 +17398,17577,3336 +17399,30844,2936 +17400,19200,41 +17401,70586,6819 +17402,46189,8411 +17403,128043,55540 +17404,11706,217 +17405,14823,25795 +17406,60853,6194 +17407,92465,90405 +17408,63681,1398 +17409,107973,306 +17410,17609,118 +17411,17175,68140 +17412,406052,32430 +17413,12221,16421 +17414,185291,6194 +17415,36162,7502 +17416,26390,4654 +17417,7547,1838 +17418,172445,36191 +17419,36175,8390 +17420,330459,86561 +17421,223655,71352 +17422,346646,8146 +17423,98582,103 +17424,154972,8676 +17425,26811,4 +17426,283445,7437 +17427,336804,72920 +17428,189682,8411 +17429,359245,26700 +17430,54491,4107 +17431,14554,1460 +17432,87343,4062 +17433,41733,6194 +17434,107593,6194 +17435,42057,3747 +17436,395992,6277 +17437,241258,10339 +17438,169869,12978 +17439,2262,33352 +17440,387957,8411 +17441,10991,3034 +17442,267935,7294 +17443,128396,4288 +17444,225728,58085 +17445,10362,846 +17446,77864,22486 +17447,167928,6339 +17448,14207,5730 +17449,314389,35063 +17450,2566,104 +17451,154537,16256 +17452,47329,9195 +17453,20213,51816 +17454,44896,4 +17455,9297,2251 +17456,92381,285 +17457,13090,12808 +17458,290762,39829 +17459,347630,81732 +17460,19338,57341 +17461,82631,59391 +17462,3064,559 +17463,14370,559 +17464,51212,82 +17465,72419,13000 +17466,333367,254 +17467,15749,11567 +17468,63066,67853 +17469,336804,10611 +17470,9609,8411 +17471,12599,12307 +17472,330770,18367 +17473,33314,6530 +17474,79775,33511 +17475,31863,5 +17476,102461,874 +17477,356842,78496 +17478,14217,4563 +17479,9555,8724 +17480,11142,6657 +17481,8886,2700 +17482,49334,2514 +17483,139176,30194 +17484,45219,14274 +17485,1724,25121 +17486,330770,76445 +17487,3115,5897 +17488,348507,455 +17489,50008,1645 +17490,70667,14757 +17491,233639,5755 +17492,285685,29315 +17493,325173,75142 +17494,437253,20678 +17495,11688,10217 +17496,201485,1632 +17497,337107,7395 +17498,428355,787 +17499,49689,74571 +17500,1116,707 +17501,429200,94312 +17502,24424,32545 +17503,341886,54191 +17504,34449,53432 +17505,23967,377 +17506,51945,7090 +17507,134806,63813 +17508,118948,4395 +17509,58060,851 +17510,10389,5346 +17511,38150,21460 +17512,142798,6745 +17513,18189,84422 +17514,198511,45 +17515,422906,3458 +17516,104528,23156 +17517,21132,6996 +17518,369885,83645 +17519,136752,16952 +17520,19901,1632 +17521,47536,93009 +17522,53714,4079 +17523,39766,1556 +17524,11837,47264 +17525,237756,2561 +17526,1273,308 +17527,16077,33 +17528,10739,27 +17529,66247,16430 +17530,23730,1950 +17531,102197,19126 +17532,347264,41684 +17533,63360,48743 +17534,345918,85465 +17535,8325,2435 +17536,92060,19222 +17537,84493,8487 +17538,117,4 +17539,13960,6194 +17540,2100,27 +17541,82684,711 +17542,168217,5488 +17543,54700,52161 +17544,8652,2467 +17545,10703,3618 +17546,56292,6277 +17547,291270,32542 +17548,88922,5798 +17549,177677,69484 +17550,38874,7680 +17551,29577,306 +17552,59965,35 +17553,383064,6111 +17554,44718,6715 +17555,43327,306 +17556,795,507 +17557,7304,2227 +17558,56344,34350 +17559,48243,6267 +17560,357106,4715 +17561,17282,42643 +17562,94570,18758 +17563,120259,4 +17564,97614,694 +17565,392660,83581 +17566,126550,10330 +17567,7288,14 +17568,239845,2986 +17569,67273,7261 +17570,71120,1647 +17571,9905,181 +17572,456101,5220 +17573,58995,3166 +17574,1899,6896 +17575,58462,65453 +17576,259894,50882 +17577,97797,9124 +17578,28665,126 +17579,10889,5 +17580,17609,6417 +17581,29224,6181 +17582,199415,84105 +17583,314352,740 +17584,11622,2980 +17585,9032,5 +17586,4913,26469 +17587,352372,1360 +17588,127560,15578 +17589,76200,18477 +17590,15163,911 +17591,199615,3385 +17592,333354,23754 +17593,7548,2268 +17594,193893,28788 +17595,205724,5113 +17596,10727,497 +17597,17074,429 +17598,27224,5 +17599,340961,12786 +17600,151652,3623 +17601,111479,1676 +17602,64130,1507 +17603,20017,36229 +17604,319993,70098 +17605,49500,9210 +17606,39781,10146 +17607,8272,67504 +17608,158150,34710 +17609,10652,4 +17610,103850,494 +17611,24822,12743 +17612,25520,4343 +17613,359105,63306 +17614,84337,5488 +17615,112284,8411 +17616,61813,52095 +17617,9343,1448 +17618,286595,7454 +17619,2293,33 +17620,7210,46 +17621,30941,15176 +17622,242310,22348 +17623,10946,4436 +17624,47119,1524 +17625,49850,21972 +17626,205724,38507 +17627,121824,737 +17628,13468,14315 +17629,857,762 +17630,39286,732 +17631,83599,12800 +17632,103972,235 +17633,81296,882 +17634,293970,64663 +17635,47942,6194 +17636,72912,3546 +17637,76163,925 +17638,290316,78966 +17639,30127,11446 +17640,307081,28438 +17641,924,655 +17642,10311,7025 +17643,227871,50983 +17644,26686,1177 +17645,267955,37208 +17646,77875,5802 +17647,1813,10104 +17648,28510,21897 +17649,121640,58714 +17650,42532,5409 +17651,163942,17432 +17652,381518,1645 +17653,10916,2181 +17654,38448,5267 +17655,10801,47 +17656,126516,4641 +17657,96419,18646 +17658,27973,28205 +17659,105231,7164 +17660,98277,58837 +17661,188858,10815 +17662,34280,7508 +17663,83430,12343 +17664,64942,856 +17665,31412,94967 +17666,14683,19 +17667,10096,497 +17668,148636,5173 +17669,375355,38146 +17670,19398,8659 +17671,5552,844 +17672,83430,11237 +17673,109451,649 +17674,67377,1216 +17675,59115,22791 +17676,5279,987 +17677,11101,998 +17678,97051,4917 +17679,102272,38298 +17680,44754,43 +17681,77877,79 +17682,10708,497 +17683,13437,22006 +17684,214938,15567 +17685,417678,8411 +17686,1902,778 +17687,2087,1644 +17688,224243,23665 +17689,52264,591 +17690,72013,4570 +17691,15616,13811 +17692,378485,81247 +17693,9287,29165 +17694,287,41 +17695,64483,1039 +17696,9966,5 +17697,2140,73954 +17698,44945,10254 +17699,168552,39719 +17700,690,7933 +17701,10004,1558 +17702,304372,3287 +17703,12855,2230 +17704,20304,1420 +17705,50674,4792 +17706,26142,9195 +17707,307081,1423 +17708,57351,27204 +17709,18165,63714 +17710,1717,441 +17711,2115,3268 +17712,41805,915 +17713,330770,5358 +17714,369885,3281 +17715,159701,19999 +17716,307649,42878 +17717,194,5358 +17718,9423,23932 +17719,8985,55583 +17720,33112,33 +17721,23739,5538 +17722,371645,6510 +17723,219572,19658 +17724,118195,5462 +17725,205584,491 +17726,1966,6194 +17727,198993,3465 +17728,36253,82756 +17729,193878,3754 +17730,65787,306 +17731,26752,4573 +17732,54700,12500 +17733,11024,6194 +17734,82327,1666 +17735,172785,49967 +17736,448538,88138 +17737,48852,3110 +17738,311291,11895 +17739,272693,42119 +17740,14979,2053 +17741,16154,35298 +17742,37534,12026 +17743,21028,5120 +17744,4964,10105 +17745,250574,3172 +17746,246127,18999 +17747,127091,16352 +17748,19014,4 +17749,270403,44602 +17750,58133,12096 +17751,5646,1942 +17752,30082,54035 +17753,9776,27 +17754,73532,2375 +17755,177677,69485 +17756,17771,3236 +17757,10874,6254 +17758,82485,23772 +17759,143092,4 +17760,35977,11061 +17761,53654,30668 +17762,244786,2266 +17763,126323,22065 +17764,449674,59811 +17765,271007,4223 +17766,82448,8265 +17767,293660,22213 +17768,422603,79808 +17769,321779,487 +17770,48567,13 +17771,13391,1393 +17772,18836,2652 +17773,64316,6379 +17774,3037,5766 +17775,204553,20064 +17776,924,572 +17777,174645,13498 +17778,60965,6876 +17779,65646,67232 +17780,27150,441 +17781,227348,6302 +17782,182035,4743 +17783,691,10761 +17784,134477,59305 +17785,206647,69434 +17786,95807,48782 +17787,225285,47241 +17788,55728,51870 +17789,21927,1093 +17790,93350,1382 +17791,127493,10254 +17792,374475,52412 +17793,62720,15844 +17794,114438,1394 +17795,94671,11006 +17796,334299,18626 +17797,36915,6137 +17798,8398,1224 +17799,83714,175 +17800,85735,6896 +17801,57327,26158 +17802,93511,7429 +17803,11046,14391 +17804,316776,73179 +17805,343173,21014 +17806,341490,7446 +17807,10710,5 +17808,128767,18583 +17809,58878,8640 +17810,127521,11061 +17811,488,262 +17812,32328,8409 +17813,52358,8411 +17814,168259,86352 +17815,2197,201 +17816,27346,4237 +17817,13823,644 +17818,48601,6916 +17819,352498,85815 +17820,1899,7828 +17821,25643,7295 +17822,140509,7831 +17823,257344,5 +17824,83718,10565 +17825,412209,34456 +17826,38448,1266 +17827,60173,21437 +17828,10235,5120 +17829,63831,11925 +17830,199374,9369 +17831,24810,5388 +17832,76600,1246 +17833,44115,6194 +17834,356752,88370 +17835,80324,1587 +17836,7326,771 +17837,17577,3337 +17838,197,11353 +17839,128120,19196 +17840,91186,8250 +17841,57680,4063 +17842,208309,1587 +17843,8272,43 +17844,75066,23249 +17845,199373,6715 +17846,72602,5488 +17847,29376,8411 +17848,63215,10645 +17849,11516,17873 +17850,443053,86918 +17851,293625,27804 +17852,26283,6 +17853,158967,24184 +17854,25538,30242 +17855,89008,7400 +17856,276401,2372 +17857,278316,4319 +17858,126250,235 +17859,34469,5461 +17860,153541,59463 +17861,11370,4077 +17862,341007,83223 +17863,42087,9195 +17864,76084,4213 +17865,256836,6715 +17866,32390,2700 +17867,9102,23097 +17868,16980,97 +17869,8588,288 +17870,93263,3267 +17871,60599,1632 +17872,75595,2290 +17873,17457,3321 +17874,34734,7592 +17875,17963,9383 +17876,40221,1444 +17877,24150,10370 +17878,37340,15921 +17879,307479,40157 +17880,147538,63349 +17881,227306,36390 +17882,102222,2982 +17883,57230,21700 +17884,59726,1899 +17885,1550,728 +17886,43252,6194 +17887,30449,5049 +17888,35651,311 +17889,264644,82552 +17890,30778,6306 +17891,367147,90751 +17892,65904,1931 +17893,195,4 +17894,23964,6858 +17895,29101,2197 +17896,87612,6194 +17897,18890,56 +17898,35428,9342 +17899,12573,10163 +17900,14242,62136 +17901,9308,559 +17902,10192,521 +17903,857,27 +17904,47112,181 +17905,109213,8101 +17906,36355,27128 +17907,42191,6 +17908,52323,5373 +17909,9451,2570 +17910,82817,8291 +17911,40087,5735 +17912,153518,30692 +17913,12650,6596 +17914,40879,5821 +17915,21208,4252 +17916,419601,25148 +17917,12528,15706 +17918,124963,4988 +17919,7942,2246 +17920,86254,3825 +17921,10857,15255 +17922,132363,18919 +17923,245692,15433 +17924,330770,11199 +17925,245917,2883 +17926,77094,5369 +17927,24094,22219 +17928,121052,3065 +17929,104674,56820 +17930,124115,6194 +17931,155096,684 +17932,303542,2683 +17933,187596,126 +17934,31021,2552 +17935,12104,500 +17936,348544,58045 +17937,110830,1066 +17938,99826,921 +17939,42832,13305 +17940,2033,887 +17941,74689,11745 +17942,397365,79478 +17943,241140,33276 +17944,30054,4 +17945,127585,37336 +17946,24777,13768 +17947,48962,2846 +17948,25903,42203 +17949,286971,6831 +17950,315335,5755 +17951,5899,938 +17952,216153,8263 +17953,176321,49273 +17954,75578,239 +17955,2734,1082 +17956,49009,6736 +17957,132122,641 +17958,232672,4194 +17959,245891,23008 +17960,106112,16685 +17961,405882,21139 +17962,14626,75483 +17963,80350,16636 +17964,4978,33 +17965,197785,441 +17966,77056,30232 +17967,14147,40401 +17968,82968,9205 +17969,32085,3166 +17970,32577,284 +17971,321528,9993 +17972,186079,14088 +17973,38775,5721 +17974,13437,22007 +17975,196359,54539 +17976,144331,13339 +17977,9298,10462 +17978,1482,1595 +17979,255343,10497 +17980,82703,73952 +17981,50725,134 +17982,17236,335 +17983,66526,14368 +17984,66125,7887 +17985,257534,201 +17986,82430,8263 +17987,47201,3952 +17988,41495,1460 +17989,100275,118 +17990,329243,1538 +17991,11925,2681 +17992,98536,9329 +17993,56807,94975 +17994,418772,68919 +17995,34216,2726 +17996,42418,862 +17997,44363,5855 +17998,72733,5369 +17999,45179,8436 +18000,190269,5711 +18001,58060,2683 +18002,318973,77717 +18003,42641,4 +18004,222890,14987 +18005,29101,12046 +18006,10518,4 +18007,27629,4 +18008,258193,11448 +18009,110001,73820 +18010,20530,5070 +18011,343921,39703 +18012,13652,104 +18013,91333,11049 +18014,15170,6255 +18015,10008,8933 +18016,57983,1931 +18017,78256,13719 +18018,3173,1240 +18019,15489,8878 +18020,363890,70973 +18021,2454,11441 +18022,49792,14159 +18023,54111,26669 +18024,323426,78597 +18025,21626,25687 +18026,456781,90129 +18027,74753,14127 +18028,29272,18585 +18029,773,2570 +18030,67,6916 +18031,43158,441 +18032,9028,1398 +18033,42187,8464 +18034,13591,25307 +18035,40130,9244 +18036,352327,35605 +18037,19621,3644 +18038,30034,36107 +18039,245692,72936 +18040,58007,641 +18041,25673,4 +18042,240832,3823 +18043,73262,1107 +18044,404567,1424 +18045,93511,8847 +18046,97365,11796 +18047,9539,6301 +18048,5544,46570 +18049,179603,20158 +18050,370234,18609 +18051,225244,15731 +18052,4550,1692 +18053,94340,38599 +18054,409,14 +18055,10739,291 +18056,13408,1632 +18057,23178,4608 +18058,44895,36242 +18059,9503,47 +18060,43923,10146 +18061,27549,1432 +18062,136582,28453 +18063,46094,82606 +18064,204712,7025 +18065,266082,10611 +18066,77338,7766 +18067,40719,14317 +18068,10208,5 +18069,42832,13304 +18070,109491,1088 +18071,27503,8411 +18072,286595,16804 +18073,1452,429 +18074,430973,21293 +18075,13853,11670 +18076,5177,11672 +18077,187993,3287 +18078,5608,5940 +18079,329712,5358 +18080,94525,94935 +18081,376538,955 +18082,121598,7295 +18083,47144,10901 +18084,20916,3867 +18085,133328,6194 +18086,13483,308 +18087,212063,25582 +18088,35623,7201 +18089,43783,306 +18090,10336,3907 +18091,21742,48696 +18092,76203,81 +18093,21736,2753 +18094,8464,73525 +18095,10750,559 +18096,52991,5214 +18097,413052,80783 +18098,82501,8352 +18099,32489,33 +18100,1058,41 +18101,193650,45528 +18102,215999,3449 +18103,25037,11382 +18104,59962,444 +18105,32139,40092 +18106,35025,1115 +18107,293660,7505 +18108,62720,6194 +18109,85038,10102 +18110,197089,5358 +18111,75174,10285 +18112,11011,1302 +18113,104343,9181 +18114,22256,6194 +18115,45324,8691 +18116,65759,6194 +18117,29136,3559 +18118,1073,22513 +18119,12639,11579 +18120,118150,1496 +18121,9428,9195 +18122,52264,11905 +18123,9289,306 +18124,107073,11978 +18125,37410,37909 +18126,126963,50411 +18127,68360,865 +18128,10390,10157 +18129,107250,43671 +18130,53128,7254 +18131,83389,32853 +18132,9087,5 +18133,9260,21625 +18134,163791,22155 +18135,83770,83 +18136,123047,46410 +18137,137491,4345 +18138,55347,7400 +18139,56599,3038 +18140,13536,76490 +18141,229,33 +18142,32532,63349 +18143,1404,698 +18144,151911,10096 +18145,177358,12154 +18146,205076,10399 +18147,10866,1171 +18148,64481,15671 +18149,63449,21978 +18150,82708,11237 +18151,14353,2061 +18152,159095,443 +18153,44099,33 +18154,30644,18176 +18155,127864,78943 +18156,43364,21195 +18157,139433,4100 +18158,45610,11959 +18159,12479,915 +18160,286595,10611 +18161,13480,12088 +18162,10871,11661 +18163,321303,6162 +18164,42512,6762 +18165,48210,10769 +18166,69075,925 +18167,63360,57032 +18168,91551,39168 +18169,376391,40797 +18170,11235,500 +18171,53739,2674 +18172,9472,19354 +18173,33586,90232 +18174,114155,47416 +18175,29355,6194 +18176,5491,10210 +18177,57489,49 +18178,300596,12625 +18179,37710,21212 +18180,72545,10221 +18181,33704,48215 +18182,16374,7429 +18183,314420,43352 +18184,9443,6194 +18185,245268,8411 +18186,248469,8411 +18187,214756,86655 +18188,351809,2674 +18189,76268,7118 +18190,16921,18665 +18191,11622,12 +18192,98203,23812 +18193,49502,3468 +18194,36253,8041 +18195,228968,8146 +18196,505,276 +18197,18739,64890 +18198,10739,5358 +18199,228290,6194 +18200,28417,11934 +18201,50364,19366 +18202,13350,5173 +18203,51044,799 +18204,9292,1885 +18205,203833,711 +18206,47851,13465 +18207,191476,62015 +18208,857,11362 +18209,292625,5369 +18210,43441,6 +18211,325173,4322 +18212,10663,9195 +18213,19354,52458 +18214,9312,12 +18215,1717,11317 +18216,74879,27100 +18217,118497,2502 +18218,32074,8411 +18219,44591,14233 +18220,54514,33882 +18221,14284,9349 +18222,247447,95161 +18223,42669,9329 +18224,43316,10330 +18225,35689,4135 +18226,320343,49248 +18227,150117,57778 +18228,9023,27 +18229,245692,52594 +18230,51759,4 +18231,61361,6586 +18232,36615,80403 +18233,19918,817 +18234,8358,27 +18235,19338,2064 +18236,409,12204 +18237,17609,11240 +18238,50364,2054 +18239,99324,6194 +18240,56969,11791 +18241,322487,20790 +18242,100770,1361 +18243,83770,346 +18244,18613,19892 +18245,37329,6152 +18246,17074,1957 +18247,239513,9024 +18248,83430,12350 +18249,18897,3984 +18250,174278,6194 +18251,68004,3054 +18252,154972,52437 +18253,370264,6480 +18254,50506,63634 +18255,46094,12883 +18256,76640,435 +18257,9870,10105 +18258,43984,60399 +18259,180819,4395 +18260,2001,846 +18261,38987,42050 +18262,173153,7429 +18263,202662,8100 +18264,33117,6194 +18265,40095,1950 +18266,243940,55265 +18267,25633,8411 +18268,82327,12391 +18269,65904,2502 +18270,15359,429 +18271,8460,506 +18272,352498,59822 +18273,414771,16 +18274,197,4564 +18275,46094,915 +18276,3146,1334 +18277,9946,919 +18278,10491,191 +18279,26376,6194 +18280,87826,8000 +18281,27993,4733 +18282,22881,12194 +18283,181533,436 +18284,24927,7535 +18285,103014,3213 +18286,161795,40956 +18287,10797,3389 +18288,48805,2694 +18289,127493,831 +18290,10436,5 +18291,19495,856 +18292,120854,21917 +18293,77915,1138 +18294,342163,7100 +18295,80351,7586 +18296,10871,4 +18297,345775,69193 +18298,92341,6 +18299,321142,84421 +18300,254435,70464 +18301,89551,84007 +18302,17473,3332 +18303,15472,7446 +18304,39462,882 +18305,376188,13850 +18306,31867,4403 +18307,13437,1171 +18308,31347,4288 +18309,255647,5311 +18310,43319,10330 +18311,227306,923 +18312,178809,7177 +18313,94336,7333 +18314,366170,50879 +18315,9828,3564 +18316,47758,33 +18317,154972,22071 +18318,141819,13695 +18319,103597,18367 +18320,9690,161 +18321,286940,6194 +18322,79113,11061 +18323,265208,24049 +18324,13391,11543 +18325,14126,1632 +18326,30637,14049 +18327,57489,34073 +18328,35451,23399 +18329,13562,33 +18330,313628,7036 +18331,49689,4520 +18332,110416,11904 +18333,106358,441 +18334,62732,11989 +18335,341559,60759 +18336,120605,8532 +18337,53404,10609 +18338,374461,39644 +18339,9343,4606 +18340,36251,1957 +18341,319092,7266 +18342,13794,7506 +18343,104476,7159 +18344,9846,8668 +18345,26962,23564 +18346,128169,5896 +18347,335837,51198 +18348,38931,73340 +18349,327982,3451 +18350,48466,521 +18351,126560,71447 +18352,70327,881 +18353,13676,5391 +18354,31439,1078 +18355,356296,2683 +18356,17332,7 +18357,378018,86852 +18358,101998,806 +18359,34449,168 +18360,9951,95799 +18361,384450,1311 +18362,369894,1092 +18363,87428,2608 +18364,11257,11494 +18365,204965,19677 +18366,313896,588 +18367,263472,12372 +18368,94587,55573 +18369,391642,5897 +18370,70581,21379 +18371,11876,5358 +18372,403431,78472 +18373,49009,18392 +18374,11257,500 +18375,364690,65956 +18376,403431,19632 +18377,47329,798 +18378,170430,58068 +18379,1272,2452 +18380,2977,2689 +18381,149657,11441 +18382,366045,80713 +18383,21193,1549 +18384,44751,7608 +18385,102382,5 +18386,395982,21873 +18387,32604,51980 +18388,28710,69051 +18389,282268,37814 +18390,28527,8106 +18391,2640,1950 +18392,2107,559 +18393,8942,4748 +18394,146313,42002 +18395,383618,73519 +18396,385261,7819 +18397,64786,5915 +18398,67,89 +18399,228066,1302 +18400,47900,1542 +18401,83770,12467 +18402,65002,403 +18403,114872,8411 +18404,8072,54659 +18405,70057,7910 +18406,378485,15507 +18407,63498,9974 +18408,340616,7466 +18409,223551,2198 +18410,613,986 +18411,4688,497 +18412,209764,20063 +18413,418437,813 +18414,337012,8590 +18415,103758,2683 +18416,295964,32243 +18417,15616,975 +18418,8410,2416 +18419,12811,2683 +18420,22494,4128 +18421,12650,11832 +18422,201485,35 +18423,8471,2317 +18424,29272,7255 +18425,265226,2683 +18426,14069,12541 +18427,13911,4 +18428,9010,608 +18429,208305,15587 +18430,2731,255 +18431,297762,9995 +18432,266044,48467 +18433,49963,10565 +18434,17609,6962 +18435,343173,8087 +18436,369524,4700 +18437,17962,12423 +18438,35895,14031 +18439,290656,87827 +18440,284537,4740 +18441,9963,2378 +18442,63194,78321 +18443,72013,50879 +18444,26636,87494 +18445,134155,35353 +18446,315880,3110 +18447,68720,1830 +18448,63401,75625 +18449,59726,23460 +18450,104931,9 +18451,27561,4518 +18452,76012,4382 +18453,33095,23084 +18454,13468,14729 +18455,31324,8411 +18456,81475,94244 +18457,240832,33 +18458,161073,786 +18459,29510,4 +18460,17771,3387 +18461,41073,1221 +18462,15788,5533 +18463,85743,6505 +18464,8342,85739 +18465,27561,64031 +18466,376579,80070 +18467,63773,45955 +18468,63441,5798 +18469,328111,3341 +18470,302042,64942 +18471,337107,11795 +18472,22029,9266 +18473,83770,11795 +18474,8985,55591 +18475,35253,17027 +18476,327225,4676 +18477,15613,4 +18478,9629,168 +18479,413452,24133 +18480,76011,306 +18481,118737,21747 +18482,67130,16685 +18483,76207,27472 +18484,10354,171 +18485,11704,32178 +18486,28739,21840 +18487,237799,1869 +18488,97365,11793 +18489,101006,20008 +18490,14476,2310 +18491,166207,8011 +18492,18317,3324 +18493,27904,24372 +18494,263472,22146 +18495,355008,13240 +18496,146322,33 +18497,47792,4606 +18498,284013,73 +18499,359471,63430 +18500,213110,1632 +18501,199887,7938 +18502,153854,26249 +18503,14869,2598 +18504,67509,11246 +18505,62143,21459 +18506,107985,10146 +18507,229182,26422 +18508,384737,76991 +18509,15577,22746 +18510,42023,14391 +18511,118139,9329 +18512,37719,8411 +18513,11011,1885 +18514,32934,67166 +18515,34899,7754 +18516,274483,49935 +18517,61644,3052 +18518,440777,56697 +18519,64944,1666 +18520,361183,72906 +18521,21671,20942 +18522,45244,22858 +18523,43680,10845 +18524,1498,12 +18525,32059,8411 +18526,27230,88064 +18527,61984,12386 +18528,18893,16486 +18529,164558,34 +18530,1950,430 +18531,45938,60 +18532,214129,10417 +18533,225283,16877 +18534,2750,1218 +18535,425591,1976 +18536,47812,6233 +18537,31442,5120 +18538,223485,58085 +18539,14979,20363 +18540,25520,744 +18541,41121,49976 +18542,90461,8411 +18543,8985,55461 +18544,54559,33 +18545,9541,23022 +18546,31264,6083 +18547,27259,694 +18548,43889,2159 +18549,58060,6301 +18550,82911,21755 +18551,44006,2008 +18552,110148,12014 +18553,72057,63459 +18554,13380,7320 +18555,132939,441 +18556,259183,19228 +18557,14550,33 +18558,33436,4 +18559,314011,63708 +18560,159810,23495 +18561,31462,396 +18562,17825,1115 +18563,52959,306 +18564,57829,19150 +18565,47410,60037 +18566,345438,8962 +18567,309879,77381 +18568,9968,1208 +18569,24589,3 +18570,66628,5542 +18571,9677,69281 +18572,169800,45898 +18573,44129,7288 +18574,98582,6878 +18575,36251,6130 +18576,33774,21546 +18577,204040,306 +18578,301334,16280 +18579,297762,81620 +18580,37291,10348 +18581,270851,25092 +18582,109424,5 +18583,9904,2 +18584,121598,89772 +18585,34106,5 +18586,82191,441 +18587,29611,35839 +18588,294690,13313 +18589,131861,6194 +18590,19823,8583 +18591,206647,10761 +18592,48567,65621 +18593,10521,711 +18594,108634,9181 +18595,91551,16937 +18596,403,2630 +18597,18919,3324 +18598,319073,71784 +18599,13374,2 +18600,17303,16959 +18601,315837,92138 +18602,2071,927 +18603,714,7576 +18604,42684,134 +18605,14078,2861 +18606,53404,83 +18607,10491,8896 +18608,63105,7954 +18609,76703,1574 +18610,199373,3604 +18611,55433,6686 +18612,83430,850 +18613,341895,32732 +18614,43277,8411 +18615,89647,6194 +18616,11358,10227 +18617,37653,5358 +18618,6023,412 +18619,7916,1062 +18620,23967,65403 +18621,91551,19982 +18622,32284,29692 +18623,376579,80069 +18624,6687,7956 +18625,10269,3645 +18626,62297,12021 +18627,19918,6563 +18628,56151,60 +18629,190853,5358 +18630,51104,4388 +18631,10829,3853 +18632,192137,53972 +18633,196359,69758 +18634,34459,17778 +18635,397837,10991 +18636,76059,12043 +18637,26267,21221 +18638,116711,11749 +18639,61267,6941 +18640,32195,32 +18641,54022,925 +18642,33673,6 +18643,84336,9987 +18644,136087,79236 +18645,27409,17488 +18646,25796,10535 +18647,208529,85121 +18648,44732,19237 +18649,10753,3054 +18650,198317,20151 +18651,118444,6194 +18652,259358,56833 +18653,37936,441 +18654,240745,6692 +18655,169364,88965 +18656,280495,13282 +18657,174000,4056 +18658,27999,60 +18659,68387,7322 +18660,8939,2572 +18661,22307,9266 +18662,340881,23749 +18663,27523,12111 +18664,16092,12488 +18665,331313,49325 +18666,11886,3166 +18667,209401,7281 +18668,204965,7333 +18669,33345,6194 +18670,8128,2328 +18671,12104,8834 +18672,37710,694 +18673,316268,43437 +18674,3574,3245 +18675,145481,85229 +18676,379,11273 +18677,62670,7339 +18678,373546,52738 +18679,61548,14 +18680,42501,753 +18681,110146,6748 +18682,2977,6342 +18683,11045,3929 +18684,202239,12617 +18685,329805,27125 +18686,222935,12292 +18687,48787,38959 +18688,71066,13399 +18689,15697,8411 +18690,342684,35442 +18691,18763,3055 +18692,9959,258 +18693,31718,4 +18694,308639,15495 +18695,74779,4322 +18696,15902,16015 +18697,195269,10339 +18698,277713,43274 +18699,152748,6531 +18700,36554,306 +18701,12807,2711 +18702,204922,18230 +18703,16876,3225 +18704,110608,83029 +18705,23861,8411 +18706,43131,8411 +18707,14423,2780 +18708,413782,7912 +18709,28421,33 +18710,210615,459 +18711,38432,10330 +18712,25736,8411 +18713,43499,306 +18714,267955,69827 +18715,201,4 +18716,431093,58399 +18717,71700,22562 +18718,157293,2320 +18719,175334,21540 +18720,73262,4340 +18721,28448,12422 +18722,58416,254 +18723,22267,33 +18724,1969,6896 +18725,331962,10405 +18726,22213,694 +18727,32690,5070 +18728,46227,4106 +18729,9900,306 +18730,173456,6 +18731,10733,23 +18732,86979,8411 +18733,11373,93571 +18734,13580,2781 +18735,28710,7100 +18736,340101,18230 +18737,54514,21978 +18738,264393,13246 +18739,286709,41077 +18740,31512,1393 +18741,25941,5374 +18742,47504,285 +18743,203186,60644 +18744,10590,53006 +18745,123025,2785 +18746,239519,6194 +18747,294819,33879 +18748,121793,13836 +18749,96921,1180 +18750,273511,25926 +18751,10991,66289 +18752,129966,5358 +18753,35320,31741 +18754,49354,16510 +18755,9756,3631 +18756,12526,12691 +18757,15457,5755 +18758,27805,14113 +18759,167,763 +18760,2009,69462 +18761,30163,11037 +18762,75622,22844 +18763,20758,8411 +18764,49974,19033 +18765,173638,5238 +18766,226354,36988 +18767,8342,884 +18768,95874,8411 +18769,100275,64899 +18770,125490,2514 +18771,14293,12026 +18772,61168,53009 +18773,14254,23856 +18774,1073,22514 +18775,127864,35559 +18776,9462,3526 +18777,17386,1444 +18778,12561,74807 +18779,366566,796 +18780,39833,306 +18781,27150,21470 +18782,221667,6896 +18783,266285,8275 +18784,227932,54386 +18785,142061,9993 +18786,15749,2865 +18787,1717,1208 +18788,152100,82019 +18789,1116,744 +18790,152748,14637 +18791,28171,5870 +18792,114982,18367 +18793,447169,18758 +18794,52903,7079 +18795,44458,5346 +18796,109379,74743 +18797,80343,7872 +18798,82465,4 +18799,51739,20192 +18800,429200,37504 +18801,315872,9364 +18802,52894,4110 +18803,18739,2310 +18804,184219,5369 +18805,62768,24442 +18806,64605,306 +18807,8471,10441 +18808,39356,2498 +18809,369406,93857 +18810,7210,315 +18811,249264,8411 +18812,242631,6194 +18813,27102,7110 +18814,63360,48742 +18815,10008,20451 +18816,39907,1240 +18817,332839,21882 +18818,11171,328 +18819,60855,4908 +18820,1662,364 +18821,18633,11571 +18822,2110,6896 +18823,156700,12808 +18824,13092,2452 +18825,6591,3602 +18826,198795,18010 +18827,20678,5 +18828,53354,7694 +18829,310602,758 +18830,58391,1497 +18831,72917,7184 +18832,11639,33 +18833,11584,5 +18834,37820,31317 +18835,95516,15195 +18836,9461,2521 +18837,6951,9195 +18838,200505,1632 +18839,406449,74691 +18840,320453,83979 +18841,1125,27 +18842,18836,324 +18843,99567,20288 +18844,42206,11626 +18845,270946,521 +18846,14811,13219 +18847,49158,9266 +18848,98914,6507 +18849,458335,52258 +18850,43997,1261 +18851,40034,15065 +18852,119694,4056 +18853,13855,11589 +18854,262958,729 +18855,11639,2504 +18856,266082,11245 +18857,26661,5726 +18858,40221,11481 +18859,64942,11992 +18860,30982,5109 +18861,188927,34530 +18862,54898,30344 +18863,11798,2690 +18864,267483,46979 +18865,258384,9000 +18866,2525,49775 +18867,11142,6659 +18868,81001,5771 +18869,24170,3060 +18870,71825,11391 +18871,21571,2212 +18872,19766,75692 +18873,38770,14028 +18874,47426,16777 +18875,333663,25954 +18876,192210,11740 +18877,47886,4804 +18878,16157,5906 +18879,353879,2320 +18880,48841,6296 +18881,22076,2876 +18882,64398,1221 +18883,310593,1533 +18884,28295,10324 +18885,177697,5383 +18886,155724,18880 +18887,36971,67853 +18888,63773,12365 +18889,84348,15158 +18890,238749,4598 +18891,24801,57495 +18892,111960,1221 +18893,169343,6778 +18894,34151,915 +18895,30584,13549 +18896,251421,85538 +18897,33511,2452 +18898,42521,856 +18899,290316,12389 +18900,41283,559 +18901,345775,76916 +18902,747,33 +18903,58416,706 +18904,153518,5 +18905,85483,3902 +18906,364833,5120 +18907,14765,9 +18908,69401,80492 +18909,16938,4952 +18910,18093,14063 +18911,19552,11699 +18912,262958,12695 +18913,10294,3287 +18914,124277,14747 +18915,4806,9195 +18916,3933,57751 +18917,43045,17451 +18918,13551,126 +18919,334538,164 +18920,26864,10046 +18921,38654,13646 +18922,32332,38567 +18923,24469,2452 +18924,330770,52184 +18925,18671,3760 +18926,47489,9 +18927,329712,6111 +18928,57230,5120 +18929,61113,39050 +18930,14087,2863 +18931,28417,11921 +18932,24420,8073 +18933,337339,33 +18934,99229,10116 +18935,65142,5120 +18936,29492,2165 +18937,8342,54378 +18938,13682,2 +18939,92796,13479 +18940,49508,6194 +18941,33660,5332 +18942,79234,19214 +18943,213681,34594 +18944,45452,46634 +18945,38317,5 +18946,25667,4406 +18947,2503,11347 +18948,17258,5263 +18949,52850,2310 +18950,99846,1950 +18951,66881,46429 +18952,16442,6194 +18953,10727,21838 +18954,8471,9349 +18955,28273,882 +18956,18642,3468 +18957,124633,18188 +18958,875,4 +18959,27501,4684 +18960,297853,88602 +18961,85435,4186 +18962,57327,5358 +18963,45244,191 +18964,425774,89447 +18965,19181,7937 +18966,26514,1949 +18967,33356,7281 +18968,83430,12353 +18969,29449,3952 +18970,22476,152 +18971,119433,21209 +18972,302699,37845 +18973,75300,8079 +18974,16076,7971 +18975,66967,2486 +18976,65973,24051 +18977,267793,19623 +18978,28165,3052 +18979,132759,3451 +18980,35320,31740 +18981,213914,16197 +18982,2734,678 +18983,63831,11924 +18984,8930,15671 +18985,231762,17927 +18986,80717,21545 +18987,390357,24845 +18988,33407,55008 +18989,90395,5488 +18990,230179,19638 +18991,44155,7981 +18992,277687,79351 +18993,127864,66894 +18994,168552,39720 +18995,146216,435 +18996,31003,24996 +18997,413882,19146 +18998,16899,3539 +18999,274990,8555 +19000,282983,12625 +19001,634,10163 +19002,5881,16259 +19003,2021,31080 +19004,44087,4006 +19005,70498,8792 +19006,18620,89523 +19007,273896,93961 +19008,157351,60106 +19009,83770,9209 +19010,258363,16322 +19011,121793,310 +19012,188765,6916 +19013,105760,1587 +19014,3520,8930 +19015,9443,8770 +19016,26864,6639 +19017,14,2721 +19018,11531,15160 +19019,19552,75458 +19020,183412,3127 +19021,131739,528 +19022,87349,659 +19023,22881,12193 +19024,6499,2106 +19025,212156,5887 +19026,110416,5267 +19027,258509,10930 +19028,107028,92312 +19029,7549,708 +19030,13678,68106 +19031,82157,14169 +19032,12599,4570 +19033,115972,1314 +19034,37291,37909 +19035,16296,8610 +19036,37936,36555 +19037,9716,14 +19038,383140,35396 +19039,66812,70359 +19040,72054,7048 +19041,159638,16861 +19042,30,11671 +19043,98566,4 +19044,1271,6194 +19045,335869,62514 +19046,31150,5126 +19047,218778,6254 +19048,38065,3770 +19049,26036,306 +19050,115109,306 +19051,100528,8411 +19052,38769,306 +19053,68139,5996 +19054,14207,3241 +19055,13920,2184 +19056,27935,5120 +19057,4011,4354 +19058,27573,5 +19059,153,70 +19060,14787,90403 +19061,21627,467 +19062,25643,4404 +19063,11798,1917 +19064,84774,19997 +19065,220809,4545 +19066,77887,3 +19067,14650,7827 +19068,276401,14037 +19069,393445,12154 +19070,122192,10654 +19071,110,1245 +19072,93492,60064 +19073,26603,441 +19074,28417,11397 +19075,75204,14552 +19076,95807,63939 +19077,20034,1917 +19078,10201,437 +19079,336029,8873 +19080,982,623 +19081,33172,14723 +19082,216989,21206 +19083,300,591 +19084,52713,72272 +19085,3081,441 +19086,38134,1212 +19087,327749,54881 +19088,11635,2364 +19089,314065,21569 +19090,23719,306 +19091,81538,2632 +19092,86732,8100 +19093,181574,5948 +19094,117026,4928 +19095,62036,641 +19096,41970,181 +19097,35026,10344 +19098,28001,4 +19099,82696,8411 +19100,214081,33957 +19101,227156,17145 +19102,24632,292 +19103,82485,23773 +19104,408616,70773 +19105,22582,8923 +19106,328111,33 +19107,2002,243 +19108,347331,19142 +19109,17609,11236 +19110,149117,5306 +19111,18897,850 +19112,76871,26288 +19113,10406,915 +19114,42739,11912 +19115,284293,1422 +19116,84569,8420 +19117,360737,7333 +19118,147106,5 +19119,54318,10221 +19120,15764,1155 +19121,83770,9349 +19122,374475,7025 +19123,11004,8877 +19124,23730,85889 +19125,16358,25919 +19126,255692,20066 +19127,27203,6 +19128,363354,1393 +19129,62728,288 +19130,413547,80906 +19131,11979,79 +19132,119010,76866 +19133,5516,2092 +19134,140222,11166 +19135,14422,2909 +19136,94811,6194 +19137,20444,4 +19138,361571,79193 +19139,251,4 +19140,252680,6427 +19141,73123,865 +19142,755,11705 +19143,51549,9177 +19144,71099,40969 +19145,10871,1280 +19146,13075,4732 +19147,319999,73745 +19148,37923,48617 +19149,150117,3823 +19150,129851,2185 +19151,222216,38995 +19152,29212,4919 +19153,10937,13349 +19154,260030,51045 +19155,369885,11395 +19156,2002,6586 +19157,2124,1504 +19158,107287,41730 +19159,11084,938 +19160,321315,8940 +19161,366170,55914 +19162,59115,58205 +19163,212996,3619 +19164,28438,6 +19165,296523,95674 +19166,228968,9325 +19167,12783,225 +19168,109439,3527 +19169,36691,23596 +19170,341176,21206 +19171,18633,3923 +19172,42734,306 +19173,5767,11404 +19174,38356,19751 +19175,64115,13558 +19176,130739,10847 +19177,197725,2 +19178,127864,8676 +19179,277778,5569 +19180,2984,48755 +19181,47851,5120 +19182,254918,2870 +19183,194101,9349 +19184,76,6194 +19185,88564,5120 +19186,25653,95940 +19187,77079,14799 +19188,9405,1236 +19189,86814,10645 +19190,143073,5120 +19191,1589,8719 +19192,298931,10163 +19193,105902,2512 +19194,43860,4978 +19195,38461,306 +19196,286192,3 +19197,16997,11842 +19198,334299,78944 +19199,52999,73441 +19200,52362,6 +19201,270403,6916 +19202,18935,10531 +19203,13972,12 +19204,290864,2726 +19205,6973,2088 +19206,18495,11018 +19207,268618,21445 +19208,241739,77459 +19209,28480,2127 +19210,9427,181 +19211,16638,11929 +19212,13993,3601 +19213,37686,23300 +19214,78734,13630 +19215,118957,3207 +19216,26801,33 +19217,4147,27 +19218,27409,17489 +19219,18493,49626 +19220,41852,60 +19221,83430,2362 +19222,356757,89464 +19223,469172,8492 +19224,28577,12112 +19225,301804,13241 +19226,296524,8537 +19227,166,28766 +19228,40799,35430 +19229,51947,31267 +19230,43252,4293 +19231,10921,5730 +19232,17295,3280 +19233,21966,6351 +19234,26796,4586 +19235,430365,9053 +19236,166666,5755 +19237,382591,819 +19238,71329,75512 +19239,27814,65285 +19240,6038,9195 +19241,54236,12009 +19242,14411,521 +19243,6687,12370 +19244,468707,84883 +19245,172385,9383 +19246,293380,16323 +19247,45649,6111 +19248,64678,5387 +19249,26516,8411 +19250,31273,73860 +19251,25643,33 +19252,28484,6194 +19253,285858,7828 +19254,59297,1195 +19255,7555,10405 +19256,6589,2 +19257,13996,18524 +19258,105906,1701 +19259,82327,12393 +19260,2355,5 +19261,339145,83316 +19262,119801,8411 +19263,312831,7310 +19264,10991,12288 +19265,11450,915 +19266,116973,306 +19267,422,10882 +19268,377847,45460 +19269,52867,4147 +19270,9778,14 +19271,339408,551 +19272,31911,8888 +19273,34588,7765 +19274,137528,18122 +19275,85525,17387 +19276,24757,5373 +19277,6038,58263 +19278,315880,14016 +19279,408220,2785 +19280,32996,4 +19281,72875,22198 +19282,62297,31137 +19283,5332,58 +19284,345775,76911 +19285,191820,5766 +19286,11329,10104 +19287,62855,9255 +19288,14069,9068 +19289,408024,21987 +19290,76333,10086 +19291,2516,1139 +19292,81232,1490 +19293,10299,2595 +19294,74629,1957 +19295,413770,85596 +19296,91333,7587 +19297,4146,1530 +19298,18917,181 +19299,149870,9195 +19300,83890,65146 +19301,19181,6181 +19302,7871,2309 +19303,269795,8915 +19304,30921,8335 +19305,15472,4606 +19306,6877,4 +19307,86838,9349 +19308,149870,882 +19309,21843,4017 +19310,14069,12542 +19311,194,25020 +19312,150201,80268 +19313,17654,8504 +19314,188161,27451 +19315,234155,77235 +19316,22307,1461 +19317,32600,12190 +19318,119409,77766 +19319,15916,1779 +19320,539,33 +19321,55167,38212 +19322,112244,5070 +19323,100791,9340 +19324,241239,41077 +19325,14108,2866 +19326,45266,41 +19327,87296,882 +19328,223551,4508 +19329,36325,4211 +19330,37038,364 +19331,312831,25838 +19332,66893,641 +19333,126442,3768 +19334,153141,12745 +19335,10484,11037 +19336,71336,5120 +19337,32038,7320 +19338,1903,4 +19339,16652,2526 +19340,194,23446 +19341,14612,3166 +19342,68715,74810 +19343,2907,41 +19344,8930,15670 +19345,32166,65760 +19346,347127,57028 +19347,243934,18810 +19348,177697,714 +19349,10865,2 +19350,336271,2391 +19351,4538,43 +19352,48706,97 +19353,47863,67646 +19354,241968,24017 +19355,104477,7159 +19356,48287,441 +19357,95536,11912 +19358,193216,14599 +19359,22279,12745 +19360,9503,17051 +19361,2625,1177 +19362,71133,12778 +19363,300667,12808 +19364,121173,10417 +19365,35683,58205 +19366,15457,793 +19367,397837,63484 +19368,10991,89165 +19369,16135,23680 +19370,78373,16517 +19371,55589,7575 +19372,128946,10477 +19373,12144,6422 +19374,2989,8310 +19375,9585,12548 +19376,10909,278 +19377,352694,51905 +19378,107985,10163 +19379,126889,306 +19380,84284,77343 +19381,17614,15 +19382,148478,71825 +19383,293863,737 +19384,408203,5974 +19385,133575,689 +19386,51364,3245 +19387,39436,15139 +19388,10020,2 +19389,32559,74691 +19390,11004,258 +19391,86920,364 +19392,31835,5 +19393,23967,27204 +19394,141819,955 +19395,71503,55517 +19396,136582,15894 +19397,116232,8411 +19398,54570,5488 +19399,10780,8411 +19400,86980,5293 +19401,33343,15361 +19402,284096,28476 +19403,215379,39004 +19404,48495,6822 +19405,39013,10039 +19406,31005,13816 +19407,55694,2090 +19408,274990,6181 +19409,202215,23577 +19410,32166,2813 +19411,156,980 +19412,19053,8784 +19413,117550,87558 +19414,255343,63810 +19415,14164,306 +19416,8665,20344 +19417,5551,76068 +19418,85009,13282 +19419,58732,306 +19420,287603,21206 +19421,9474,12726 +19422,276819,12667 +19423,11859,6194 +19424,921,9195 +19425,34796,5488 +19426,314388,6916 +19427,20034,21598 +19428,32328,6194 +19429,99859,21972 +19430,77067,8146 +19431,83229,23724 +19432,18763,44283 +19433,178,2231 +19434,108224,28205 +19435,1164,838 +19436,340275,4319 +19437,20421,6422 +19438,13390,45810 +19439,393732,75806 +19440,9080,6194 +19441,207641,4992 +19442,74465,444 +19443,65456,51151 +19444,347630,81734 +19445,270851,1311 +19446,12309,81144 +19447,33107,3898 +19448,132332,9058 +19449,42794,9344 +19450,33336,8015 +19451,54491,559 +19452,246655,7505 +19453,257447,68264 +19454,598,11445 +19455,121674,9987 +19456,16980,1382 +19457,81538,80135 +19458,133121,5752 +19459,253154,59811 +19460,118943,21555 +19461,33065,886 +19462,26936,6919 +19463,127091,10519 +19464,11321,7295 +19465,28553,1432 +19466,13681,7585 +19467,286709,5708 +19468,222297,16867 +19469,203217,75999 +19470,61035,9078 +19471,13653,2793 +19472,274060,6194 +19473,1807,7429 +19474,300596,10031 +19475,46920,10102 +19476,51349,318 +19477,130925,3 +19478,26644,718 +19479,12811,4243 +19480,260030,44455 +19481,34560,2787 +19482,366249,66903 +19483,18633,19950 +19484,28417,11933 +19485,69266,1392 +19486,29233,2230 +19487,9607,1755 +19488,9405,5 +19489,27457,11446 +19490,140595,24487 +19491,10753,3055 +19492,13965,2 +19493,293670,7485 +19494,9543,130 +19495,319073,17643 +19496,109690,10012 +19497,229610,6 +19498,374475,58 +19499,301804,1224 +19500,21057,10342 +19501,27904,310 +19502,47493,58241 +19503,311324,33 +19504,44552,6416 +19505,77473,79340 +19506,323675,2780 +19507,208968,1538 +19508,23128,4185 +19509,2567,6194 +19510,97051,20319 +19511,80545,31818 +19512,5915,8769 +19513,1678,622 +19514,38389,364 +19515,14400,3823 +19516,86709,11533 +19517,9385,7963 +19518,47186,53505 +19519,96106,21137 +19520,55725,4205 +19521,9503,2875 +19522,58416,2396 +19523,62838,12 +19524,11788,5778 +19525,2241,230 +19526,42476,5409 +19527,1966,54997 +19528,233487,21569 +19529,99229,92754 +19530,256740,7720 +19531,110416,69193 +19532,8942,31301 +19533,53524,5846 +19534,180644,13450 +19535,332839,49609 +19536,779,7448 +19537,10735,5367 +19538,131932,56674 +19539,13437,2755 +19540,65874,67576 +19541,87481,4582 +19542,8470,17106 +19543,38150,2268 +19544,3595,9195 +19545,123770,1302 +19546,274479,1302 +19547,41211,12609 +19548,22051,7400 +19549,158908,3766 +19550,16643,10104 +19551,1259,258 +19552,67,703 +19553,47900,18399 +19554,84718,33 +19555,37789,8182 +19556,154537,16261 +19557,356326,45461 +19558,7445,1632 +19559,430365,5358 +19560,28063,12240 +19561,9968,31599 +19562,262841,24955 +19563,9504,67780 +19564,323665,3768 +19565,144421,52782 +19566,85009,58052 +19567,393521,68453 +19568,47715,93146 +19569,66893,10673 +19570,27221,843 +19571,319986,47562 +19572,29649,216 +19573,142064,429 +19574,445,224 +19575,15982,3088 +19576,13549,9228 +19577,379441,72489 +19578,37189,1255 +19579,193756,433 +19580,43935,7218 +19581,428398,18065 +19582,62439,94914 +19583,413232,15045 +19584,103161,30401 +19585,68347,12 +19586,14874,10254 +19587,35052,6538 +19588,36245,1825 +19589,5413,5778 +19590,334394,80529 +19591,140481,13928 +19592,122271,47843 +19593,10351,285 +19594,269,249 +19595,308529,14718 +19596,82941,3391 +19597,10524,591 +19598,110148,11073 +19599,108048,37249 +19600,9298,33 +19601,71859,4748 +19602,27777,4 +19603,90034,72049 +19604,46931,5240 +19605,82077,11505 +19606,14372,1073 +19607,10033,5496 +19608,29471,74657 +19609,43751,6651 +19610,16784,19354 +19611,345775,76910 +19612,10748,2650 +19613,13079,846 +19614,371741,73204 +19615,19765,3391 +19616,86363,2532 +19617,32845,11279 +19618,27904,22625 +19619,308032,2289 +19620,216156,8764 +19621,11777,4 +19622,222461,7263 +19623,336804,4247 +19624,19754,3669 +19625,35862,43640 +19626,21036,10342 +19627,19338,57340 +19628,62363,64 +19629,248376,8250 +19630,45874,611 +19631,124501,707 +19632,47238,729 +19633,1904,441 +19634,340101,89818 +19635,75564,41344 +19636,64465,1399 +19637,23518,4 +19638,49815,365 +19639,88126,90752 +19640,4580,82 +19641,211017,10473 +19642,315837,27 +19643,44932,15672 +19644,19274,18674 +19645,52772,8411 +19646,16550,1422 +19647,11534,71237 +19648,9902,508 +19649,34615,53009 +19650,255913,694 +19651,33146,5260 +19652,23096,41917 +19653,300669,11341 +19654,75363,659 +19655,45527,1062 +19656,54155,223 +19657,143240,266 +19658,45019,961 +19659,48231,808 +19660,2108,8812 +19661,46420,7584 +19662,11159,181 +19663,26936,528 +19664,53417,930 +19665,45874,29386 +19666,323929,80515 +19667,69828,28205 +19668,12273,7294 +19669,61580,11240 +19670,19371,12 +19671,95358,306 +19672,60120,89774 +19673,3638,12202 +19674,338767,17537 +19675,37710,23733 +19676,171648,35212 +19677,5237,6282 +19678,39311,4 +19679,334651,3630 +19680,84355,1424 +19681,67509,12609 +19682,44943,333 +19683,81274,12113 +19684,414610,5225 +19685,20107,42696 +19686,287628,83315 +19687,393659,4852 +19688,300654,38956 +19689,15457,23066 +19690,30619,3419 +19691,105509,68461 +19692,127380,88016 +19693,198277,1785 +19694,2021,5358 +19695,97632,1311 +19696,56448,6744 +19697,38021,37763 +19698,691,7576 +19699,8619,9118 +19700,30082,54034 +19701,20126,1131 +19702,82941,7153 +19703,60855,36024 +19704,32657,5219 +19705,265934,5340 +19706,284620,20980 +19707,23515,48701 +19708,246655,431 +19709,26422,4507 +19710,42120,4997 +19711,11120,6194 +19712,286372,29700 +19713,38874,21114 +19714,70498,6194 +19715,180383,39134 +19716,15873,16354 +19717,85743,8483 +19718,61563,60 +19719,384682,4 +19720,48243,6265 +19721,46570,12767 +19722,13369,13 +19723,267481,9342 +19724,264729,29566 +19725,88036,11317 +19726,13965,2847 +19727,88390,81302 +19728,40127,25427 +19729,73984,1408 +19730,261246,5996 +19731,12309,81142 +19732,38761,8411 +19733,18214,56812 +19734,238,4 +19735,39308,14159 +19736,598,11444 +19737,381356,83 +19738,57100,2798 +19739,413198,30148 +19740,13713,694 +19741,11046,13721 +19742,9507,559 +19743,11633,3365 +19744,188927,82819 +19745,395767,76298 +19746,99698,7466 +19747,398633,77171 +19748,22582,285 +19749,167424,52412 +19750,47200,62611 +19751,17007,559 +19752,11591,6194 +19753,47489,3823 +19754,140276,306 +19755,1574,734 +19756,257450,25654 +19757,10238,7446 +19758,2002,8277 +19759,5915,1246 +19760,77060,14620 +19761,76821,876 +19762,30352,9195 +19763,72057,2683 +19764,22910,1950 +19765,70667,6417 +19766,19594,11231 +19767,26123,33 +19768,50318,58839 +19769,94727,29729 +19770,337107,1524 +19771,80592,6194 +19772,47943,6962 +19773,72826,9255 +19774,143240,58224 +19775,2486,444 +19776,10075,126 +19777,10109,2269 +19778,315837,93466 +19779,215579,4 +19780,80560,14558 +19781,1899,83 +19782,46660,7020 +19783,36355,33 +19784,22398,2152 +19785,12476,12 +19786,259075,37780 +19787,310133,60891 +19788,69278,6458 +19789,45527,95579 +19790,336845,11073 +19791,24077,10163 +19792,51250,8692 +19793,51999,76 +19794,301304,21206 +19795,393407,5358 +19796,6443,1618 +19797,38162,10254 +19798,12085,10254 +19799,83831,45955 +19800,355984,21206 +19801,327083,75969 +19802,50166,7963 +19803,165,33 +19804,17962,1141 +19805,67375,306 +19806,59189,14239 +19807,107096,7954 +19808,86543,9027 +19809,47882,6194 +19810,116303,3033 +19811,18620,8888 +19812,70133,7783 +19813,42706,4063 +19814,157898,6194 +19815,27925,5120 +19816,10330,2 +19817,23544,5648 +19818,15640,1080 +19819,10137,58331 +19820,72710,10427 +19821,20174,76329 +19822,15019,258 +19823,24795,175 +19824,39840,5828 +19825,2567,562 +19826,405473,3353 +19827,9819,11391 +19828,79218,2787 +19829,84577,24277 +19830,22682,219 +19831,294652,13235 +19832,52782,1221 +19833,33613,235 +19834,151937,12077 +19835,32331,1312 +19836,9541,16934 +19837,313108,7036 +19838,42093,1964 +19839,211220,8572 +19840,88059,86863 +19841,6964,6194 +19842,34560,3213 +19843,9905,359 +19844,238781,2926 +19845,279159,26212 +19846,29352,4941 +19847,14874,2365 +19848,60855,17027 +19849,2080,306 +19850,116236,82027 +19851,82,675 +19852,421958,13591 +19853,34204,47441 +19854,196852,4027 +19855,109453,6353 +19856,52949,49734 +19857,11547,22954 +19858,85984,87978 +19859,48231,19245 +19860,341490,94783 +19861,270654,24277 +19862,77473,77440 +19863,82624,2441 +19864,14518,6551 +19865,9540,47396 +19866,369883,6735 +19867,209293,2671 +19868,8985,4595 +19869,87204,7937 +19870,394645,5547 +19871,207641,925 +19872,17935,9342 +19873,13763,76359 +19874,23599,1950 +19875,18595,988 +19876,64398,29577 +19877,23397,14568 +19878,167073,5267 +19879,43367,13987 +19880,387558,78696 +19881,1689,14 +19882,1448,721 +19883,246320,15308 +19884,11880,46196 +19885,47426,16776 +19886,20992,318 +19887,45935,29842 +19888,328429,26951 +19889,156,698 +19890,11247,8807 +19891,3686,168 +19892,10394,11358 +19893,17044,181 +19894,210913,10273 +19895,18467,3960 +19896,258363,70654 +19897,209112,9995 +19898,62755,4946 +19899,287636,52351 +19900,167556,6906 +19901,85411,10201 +19902,67509,2137 +19903,85735,7454 +19904,343173,19037 +19905,39800,53303 +19906,25385,3809 +19907,397520,81225 +19908,147722,306 +19909,67367,1784 +19910,18747,5632 +19911,184341,52065 +19912,58309,13318 +19913,334074,10254 +19914,156141,5120 +19915,75300,8082 +19916,126315,14531 +19917,205724,25953 +19918,107976,7036 +19919,249021,1311 +19920,154575,1587 +19921,73872,45970 +19922,359154,5085 +19923,278706,26003 +19924,7085,3602 +19925,17258,306 +19926,3597,1236 +19927,20871,5120 +19928,40465,35142 +19929,24939,1370 +19930,26861,4610 +19931,35026,5358 +19932,35543,15874 +19933,44105,32194 +19934,77877,6194 +19935,225283,16259 +19936,35392,11276 +19937,244268,6531 +19938,122487,2328 +19939,22615,4118 +19940,94874,66337 +19941,10238,7445 +19942,270654,12142 +19943,29272,7254 +19944,220488,8250 +19945,106020,23337 +19946,110608,46281 +19947,126227,4056 +19948,8988,2546 +19949,18098,52597 +19950,77079,2185 +19951,201749,16937 +19952,446345,87656 +19953,26390,925 +19954,4516,3823 +19955,183015,4110 +19956,335145,11661 +19957,84636,1416 +19958,146,2798 +19959,1452,6194 diff --git a/demo/install/resources/movies_csv/Movie Production Country Map.csv b/demo/install/resources/movies_csv/Movie Production Country Map.csv new file mode 100644 index 0000000000..d92b4a9120 --- /dev/null +++ b/demo/install/resources/movies_csv/Movie Production Country Map.csv @@ -0,0 +1,14088 @@ +id,Movie,Production Country +1,52122,95 +2,96712,73 +3,5915,95 +4,43548,33 +5,76094,95 +6,24973,95 +7,429174,26 +8,220488,91 +9,343173,60 +10,15674,95 +11,40826,116 +12,46797,95 +13,63260,60 +14,28775,95 +15,37672,95 +16,124480,60 +17,16074,91 +18,56943,33 +19,36253,73 +20,18088,64 +21,71147,112 +22,16382,102 +23,32158,106 +24,101006,69 +25,37969,95 +26,42168,95 +27,20650,95 +28,364111,104 +29,27886,95 +30,69352,68 +31,42512,92 +32,44463,95 +33,76714,95 +34,338767,50 +35,409,95 +36,229254,50 +37,14885,95 +38,171648,57 +39,398390,37 +40,580,95 +41,410118,57 +42,43889,95 +43,39781,95 +44,48874,95 +45,58518,33 +46,64268,26 +47,15163,95 +48,89330,71 +49,58701,33 +50,77338,121 +51,82481,60 +52,390,105 +53,348611,95 +54,255913,121 +55,427045,95 +56,280004,95 +57,299828,91 +58,69310,91 +59,31672,121 +60,6877,95 +61,126415,92 +62,59419,95 +63,295656,9 +64,308269,9 +65,57924,92 +66,69727,67 +67,362178,91 +68,198993,104 +69,50696,104 +70,107073,92 +71,10657,95 +72,145316,95 +73,2487,104 +74,66469,95 +75,84496,95 +76,88042,95 +77,4930,95 +78,54256,31 +79,12446,121 +80,9795,95 +81,34506,95 +82,348631,95 +83,10754,8 +84,8204,95 +85,195269,95 +86,308024,95 +87,353595,95 +88,15764,64 +89,71322,26 +90,48254,33 +91,43368,95 +92,3989,92 +93,256593,50 +94,121823,91 +95,7871,95 +96,46014,95 +97,413547,31 +98,106747,95 +99,37603,26 +100,119213,95 +101,87428,95 +102,16993,95 +103,80545,64 +104,86643,64 +105,9507,95 +106,16638,95 +107,53211,95 +108,214209,106 +109,23239,113 +110,63681,121 +111,111470,95 +112,11404,64 +113,27409,33 +114,39276,104 +115,2015,106 +116,289278,50 +117,66966,33 +118,60420,95 +119,21044,95 +120,80142,9 +121,43327,95 +122,36355,95 +123,46738,121 +124,12454,64 +125,18178,60 +126,88273,93 +127,289,95 +128,212934,9 +129,52936,33 +130,247500,121 +131,30993,95 +132,169760,56 +133,42438,33 +134,46563,95 +135,33130,36 +136,439050,1 +137,149465,26 +138,2979,95 +139,47241,21 +140,705,95 +141,182545,44 +142,19995,64 +143,13383,102 +144,264061,95 +145,104211,95 +146,106049,95 +147,19765,82 +148,199415,3 +149,343284,95 +150,326723,93 +151,17691,95 +152,120280,71 +153,39779,95 +154,246127,50 +155,2669,95 +156,90932,95 +157,327,95 +158,207021,95 +159,246127,9 +160,2012,102 +161,49833,68 +162,35907,31 +163,12780,67 +164,335051,33 +165,117506,67 +166,43877,104 +167,268380,95 +168,225244,92 +169,56491,95 +170,1550,95 +171,86118,95 +172,244801,113 +173,60935,95 +174,42402,95 +175,39056,104 +176,157843,95 +177,419430,95 +178,331485,95 +179,51548,69 +180,128866,95 +181,5608,6 +182,107443,95 +183,38922,95 +184,46026,95 +185,14128,95 +186,20123,33 +187,334394,68 +188,14293,95 +189,38162,95 +190,30666,95 +191,15776,93 +192,33305,95 +193,33407,57 +194,149657,39 +195,213842,95 +196,257537,16 +197,177203,64 +198,29094,95 +199,57866,95 +200,30943,95 +201,28571,95 +202,8886,33 +203,30973,9 +204,16839,64 +205,9423,64 +206,1443,95 +207,44442,8 +208,126090,82 +209,32932,76 +210,22257,8 +211,31445,95 +212,12477,104 +213,42216,95 +214,134362,99 +215,14527,9 +216,64407,121 +217,43340,95 +218,27791,95 +219,85836,104 +220,22615,64 +221,31037,95 +222,33305,9 +223,69035,64 +224,157898,95 +225,56807,35 +226,139582,31 +227,227700,64 +228,173153,95 +229,42726,121 +230,47444,95 +231,312831,94 +232,70747,109 +233,2012,92 +234,56947,121 +235,3597,95 +236,120,76 +237,461955,9 +238,24993,95 +239,321644,95 +240,128089,105 +241,55167,71 +242,90351,104 +243,45219,95 +244,9900,95 +245,371003,95 +246,255160,95 +247,117,95 +248,75090,95 +249,186227,95 +250,20424,95 +251,284288,31 +252,28155,95 +253,27052,36 +254,14565,95 +255,43365,95 +256,37911,95 +257,52696,31 +258,398390,48 +259,287391,121 +260,34449,33 +261,108723,9 +262,14145,71 +263,32029,64 +264,261439,64 +265,34469,36 +266,238362,71 +267,31031,64 +268,51044,95 +269,10727,113 +270,143876,26 +271,311324,91 +272,43459,95 +273,227200,95 +274,193610,95 +275,241855,95 +276,198227,95 +277,61168,95 +278,84337,95 +279,176124,95 +280,218425,113 +281,265712,104 +282,41996,64 +283,154441,81 +284,231145,95 +285,19827,95 +286,19606,95 +287,13544,49 +288,6643,95 +289,182899,95 +290,104471,121 +291,45752,95 +292,136799,95 +293,413279,113 +294,38326,26 +295,76202,33 +296,29611,95 +297,41967,9 +298,10585,95 +299,61341,95 +300,51763,95 +301,269246,95 +302,7096,95 +303,25376,69 +304,336804,65 +305,330947,95 +306,11939,95 +307,62630,36 +308,50364,95 +309,125520,95 +310,41097,92 +311,39345,95 +312,245703,95 +313,5289,9 +314,333667,91 +315,11161,95 +316,385654,39 +317,85230,9 +318,18939,64 +319,74879,68 +320,359025,95 +321,23967,95 +322,369366,95 +323,30366,92 +324,60307,95 +325,26502,95 +326,126090,68 +327,141145,92 +328,332567,95 +329,21708,106 +330,81296,104 +331,1723,95 +332,105763,59 +333,1415,36 +334,12516,104 +335,10776,95 +336,329868,33 +337,42537,95 +338,213121,95 +339,58372,95 +340,285869,9 +341,175331,20 +342,347630,95 +343,14651,121 +344,8398,95 +345,27834,20 +346,24351,64 +347,46187,26 +348,58878,104 +349,327225,75 +350,4191,121 +351,188392,95 +352,255948,49 +353,222858,95 +354,399612,60 +355,29471,82 +356,31254,104 +357,31011,92 +358,31462,95 +359,43546,95 +360,21742,9 +361,20678,95 +362,172396,9 +363,4938,95 +364,31863,95 +365,21193,33 +366,429792,95 +367,206237,82 +368,38189,95 +369,18633,95 +370,277713,20 +371,61563,95 +372,96724,121 +373,268853,36 +374,14108,95 +375,213110,95 +376,11313,95 +377,186997,121 +378,48376,95 +379,25643,9 +380,286267,71 +381,1689,121 +382,157424,95 +383,128946,50 +384,90387,92 +385,41209,95 +386,395982,64 +387,156141,26 +388,32600,95 +389,335874,95 +390,36063,104 +391,227262,121 +392,208700,104 +393,310568,121 +394,165095,101 +395,289191,92 +396,27843,104 +397,352960,95 +398,337339,95 +399,19736,95 +400,55612,57 +401,267557,33 +402,42456,95 +403,33315,95 +404,14510,95 +405,64861,95 +406,87516,95 +407,126319,20 +408,144613,95 +409,24409,95 +410,391375,95 +411,20296,31 +412,157829,95 +413,14210,118 +414,151310,95 +415,89688,10 +416,118150,33 +417,18417,95 +418,11017,95 +419,127544,104 +420,43117,95 +421,32428,95 +422,32140,95 +423,108,8 +424,17332,95 +425,319513,36 +426,20414,33 +427,31059,26 +428,22429,31 +429,320736,93 +430,125619,69 +431,86814,121 +432,93858,105 +433,54503,67 +434,44655,102 +435,39061,17 +436,36075,104 +437,15089,95 +438,10739,64 +439,54659,106 +440,26264,113 +441,362765,95 +442,17479,26 +443,184328,95 +444,84309,95 +445,20411,95 +446,8316,92 +447,16077,121 +448,43775,92 +449,52914,33 +450,167556,95 +451,100528,95 +452,118293,121 +453,21786,57 +454,342011,102 +455,34334,95 +456,12311,95 +457,228407,1 +458,11296,95 +459,18405,95 +460,50247,104 +461,44751,44 +462,269,121 +463,1813,95 +464,81188,95 +465,42517,75 +466,12103,95 +467,211088,76 +468,26851,95 +469,436339,121 +470,68163,95 +471,104973,60 +472,60269,113 +473,124414,15 +474,9607,64 +475,332839,95 +476,9968,9 +477,73624,81 +478,9366,95 +479,37725,9 +480,135313,95 +481,64627,92 +482,50722,121 +483,140489,95 +484,29067,64 +485,41764,93 +486,186991,82 +487,35554,33 +488,35696,95 +489,27457,81 +490,392011,95 +491,18492,49 +492,81001,95 +493,24752,104 +494,2565,95 +495,47466,37 +496,1694,95 +497,217925,95 +498,21430,95 +499,19898,64 +500,22939,64 +501,98369,95 +502,239845,23 +503,38654,64 +504,23861,95 +505,73116,64 +506,25568,95 +507,10889,95 +508,371084,95 +509,96936,95 +510,215743,106 +511,79521,95 +512,22317,95 +513,258251,64 +514,134362,102 +515,94170,95 +516,212756,9 +517,227383,71 +518,203819,113 +519,1420,94 +520,83456,26 +521,76115,64 +522,33495,33 +523,145135,95 +524,11880,64 +525,325385,64 +526,33095,121 +527,125300,95 +528,33436,33 +529,57680,95 +530,13685,95 +531,23524,95 +532,64683,95 +533,82745,69 +534,45324,9 +535,77958,33 +536,41969,95 +537,203264,95 +538,334175,68 +539,42182,95 +540,376934,71 +541,351809,60 +542,256930,73 +543,27114,95 +544,809,95 +545,29743,33 +546,8282,121 +547,21893,94 +548,72660,81 +549,274990,93 +550,236399,95 +551,44338,92 +552,202238,102 +553,14609,95 +554,12528,107 +555,274325,95 +556,2259,121 +557,337549,64 +558,25684,95 +559,362151,71 +560,24126,95 +561,393562,31 +562,150049,121 +563,12759,95 +564,21338,95 +565,180383,95 +566,9343,97 +567,47795,121 +568,34650,95 +569,338421,67 +570,70575,95 +571,135718,31 +572,333663,64 +573,47959,33 +574,540,95 +575,49792,95 +576,359152,33 +577,51476,95 +578,1950,95 +579,128284,36 +580,31522,33 +581,170936,95 +582,118549,95 +583,57829,50 +584,4580,121 +585,357441,46 +586,11385,95 +587,48636,92 +588,37628,102 +589,247447,104 +590,96701,121 +591,352164,95 +592,30298,95 +593,379873,33 +594,42094,95 +595,227973,95 +596,361018,95 +597,325592,95 +598,34052,104 +599,58757,107 +600,41764,33 +601,54406,64 +602,20992,26 +603,65650,95 +604,53861,121 +605,66925,95 +606,13962,95 +607,9297,95 +608,10873,95 +609,37586,68 +610,69035,95 +611,48333,95 +612,16643,95 +613,30946,95 +614,40217,9 +615,134782,64 +616,35895,95 +617,34106,95 +618,337107,44 +619,163053,95 +620,44246,92 +621,145191,20 +622,70666,81 +623,29117,95 +624,241742,95 +625,383064,84 +626,131932,60 +627,3291,121 +628,39305,95 +629,147360,121 +630,630,95 +631,469172,121 +632,16016,93 +633,50531,33 +634,8382,95 +635,172386,113 +636,53219,95 +637,178587,95 +638,28425,95 +639,25060,95 +640,76012,95 +641,27999,95 +642,398891,60 +643,11902,37 +644,3016,95 +645,28212,71 +646,201085,95 +647,98364,95 +648,180644,63 +649,84071,95 +650,278632,95 +651,145244,33 +652,87654,57 +653,90799,95 +654,58159,95 +655,47200,121 +656,105254,95 +657,363413,31 +658,46368,95 +659,117913,33 +660,779,121 +661,387999,95 +662,1811,121 +663,44308,64 +664,35543,95 +665,38625,104 +666,8665,95 +667,86168,64 +668,392011,68 +669,45179,81 +670,65579,64 +671,14226,104 +672,56150,95 +673,188357,95 +674,9611,95 +675,24795,95 +676,212503,92 +677,243683,95 +678,47878,95 +679,32306,95 +680,31206,95 +681,11909,67 +682,28465,95 +683,28448,60 +684,24971,60 +685,47260,95 +686,28564,95 +687,310593,64 +688,48617,44 +689,29286,95 +690,26801,95 +691,47096,33 +692,43497,95 +693,18088,92 +694,11853,95 +695,38022,31 +696,115712,14 +697,220154,64 +698,88491,26 +699,18472,95 +700,4978,95 +701,10871,95 +702,6166,92 +703,18755,9 +704,49588,8 +705,232672,95 +706,38964,64 +707,14931,95 +708,54804,64 +709,40458,95 +710,105509,33 +711,340275,95 +712,169760,41 +713,277558,9 +714,29260,95 +715,48287,95 +716,1976,95 +717,42701,95 +718,84228,95 +719,5460,95 +720,121674,95 +721,39057,104 +722,73194,95 +723,7210,92 +724,83346,95 +725,49074,31 +726,13346,95 +727,43646,33 +728,109475,95 +729,125835,31 +730,8669,95 +731,27480,113 +732,1361,95 +733,10044,67 +734,71672,92 +735,180576,95 +736,118397,95 +737,197696,95 +738,68360,44 +739,15239,95 +740,17306,95 +741,403429,78 +742,303856,92 +743,72823,95 +744,48596,69 +745,26378,95 +746,74192,121 +747,77877,95 +748,388764,91 +749,14591,95 +750,14770,64 +751,47792,33 +752,266102,64 +753,18493,95 +754,55208,83 +755,27460,95 +756,88018,95 +757,13459,9 +758,61203,31 +759,185460,95 +760,52147,68 +761,328692,36 +762,353326,64 +763,321528,95 +764,76198,33 +765,1375,95 +766,6948,95 +767,99242,73 +768,209266,92 +769,72431,95 +770,45861,91 +771,7304,92 +772,342472,95 +773,21242,60 +774,23196,95 +775,16094,95 +776,119433,95 +777,218329,9 +778,9264,95 +779,42515,95 +780,46986,104 +781,9815,64 +782,115810,33 +783,242332,95 +784,60083,44 +785,9765,92 +786,146381,60 +787,82703,95 +788,87992,71 +789,131360,95 +790,139718,95 +791,125520,64 +792,305127,95 +793,186991,121 +794,23069,95 +795,141241,78 +796,140648,9 +797,20160,71 +798,356191,8 +799,171902,92 +800,9438,95 +801,86829,64 +802,41994,95 +803,198795,102 +804,105763,26 +805,10336,95 +806,110416,93 +807,13766,95 +808,20361,60 +809,16176,64 +810,157384,95 +811,26642,95 +812,114872,95 +813,171581,95 +814,300490,68 +815,407806,95 +816,54700,95 +817,47226,121 +818,83079,95 +819,9274,92 +820,8414,36 +821,54563,33 +822,11134,67 +823,43514,95 +824,13649,95 +825,9443,64 +826,58197,95 +827,14907,95 +828,14419,121 +829,11442,95 +830,28943,64 +831,188826,95 +832,61799,33 +833,53354,121 +834,34869,26 +835,4253,31 +836,61935,44 +837,101342,105 +838,29444,95 +839,41516,95 +840,42307,113 +841,43875,95 +842,21141,95 +843,82243,31 +844,80280,60 +845,33272,113 +846,11800,95 +847,52221,95 +848,140276,95 +849,340584,9 +850,216580,95 +851,20174,95 +852,41416,73 +853,33112,95 +854,53172,95 +855,10394,64 +856,127812,95 +857,10837,95 +858,104476,121 +859,64465,33 +860,16962,95 +861,43711,95 +862,29829,95 +863,61908,95 +864,10276,95 +865,9703,33 +866,87826,95 +867,47886,95 +868,120399,113 +869,42120,67 +870,53256,92 +871,37368,95 +872,10041,64 +873,25450,95 +874,52868,95 +875,18939,48 +876,78256,64 +877,67328,95 +878,13517,92 +879,17963,95 +880,53767,31 +881,140231,31 +882,27703,33 +883,256561,55 +884,31618,104 +885,43648,33 +886,371741,90 +887,234868,64 +888,41121,91 +889,247354,95 +890,261274,93 +891,19901,113 +892,15807,95 +893,5748,95 +894,161602,64 +895,377170,95 +896,51875,95 +897,49852,64 +898,8954,95 +899,52661,95 +900,98566,95 +901,10870,60 +902,31472,64 +903,11879,95 +904,43973,121 +905,4344,92 +906,44105,68 +907,8388,95 +908,634,121 +909,12652,33 +910,9756,64 +911,24486,64 +912,128644,95 +913,46421,95 +914,137646,95 +915,1579,95 +916,176085,95 +917,13280,95 +918,29483,113 +919,42476,95 +920,334074,95 +921,9030,95 +922,414771,4 +923,153162,95 +924,44129,95 +925,17566,104 +926,94809,121 +927,369444,8 +928,20742,31 +929,127585,64 +930,169760,36 +931,10275,67 +932,28484,95 +933,26518,95 +934,114719,95 +935,1589,94 +936,19187,95 +937,41252,31 +938,14550,95 +939,213681,95 +940,29224,93 +941,41597,64 +942,431244,95 +943,131739,104 +944,25538,73 +945,260310,26 +946,22477,95 +947,420703,81 +948,16890,95 +949,421958,92 +950,317144,64 +951,662,121 +952,77930,95 +953,72875,33 +954,28437,95 +955,53150,95 +956,12483,92 +957,64468,68 +958,403431,95 +959,236053,68 +960,212713,95 +961,13681,95 +962,74911,95 +963,188858,60 +964,284013,33 +965,216153,95 +966,151870,50 +967,26469,95 +968,18333,50 +969,142150,95 +970,24936,95 +971,60140,95 +972,277355,95 +973,844,33 +974,48838,64 +975,44489,9 +976,284564,64 +977,13505,92 +978,80264,95 +979,23515,95 +980,8930,121 +981,108282,95 +982,32166,95 +983,403119,64 +984,58928,121 +985,9462,67 +986,263472,109 +987,198890,21 +988,130948,33 +989,245158,95 +990,11933,95 +991,110909,95 +992,43211,33 +993,11540,33 +994,24403,54 +995,43757,113 +996,204922,121 +997,64928,95 +998,27349,95 +999,283701,44 +1000,105059,95 +1001,128044,37 +1002,160106,48 +1003,49028,31 +1004,67,34 +1005,47201,95 +1006,53853,95 +1007,4955,121 +1008,443007,95 +1009,360592,95 +1010,44890,95 +1011,369406,113 +1012,49521,64 +1013,124963,95 +1014,30141,95 +1015,244539,95 +1016,124597,104 +1017,31875,64 +1018,27150,95 +1019,14522,95 +1020,18722,104 +1021,70800,50 +1022,395914,26 +1023,7326,95 +1024,57489,121 +1025,114438,92 +1026,45266,95 +1027,267579,69 +1028,41552,95 +1029,338309,73 +1030,213914,95 +1031,12855,9 +1032,286512,121 +1033,129530,95 +1034,49190,106 +1035,16652,95 +1036,70667,92 +1037,54105,95 +1038,429200,95 +1039,46786,95 +1040,43079,94 +1041,52803,95 +1042,12697,92 +1043,23518,95 +1044,328111,95 +1045,14644,121 +1046,613,33 +1047,10862,95 +1048,16791,121 +1049,415255,97 +1050,198511,92 +1051,5494,20 +1052,255898,26 +1053,100024,95 +1054,443053,95 +1055,45899,1 +1056,331354,60 +1057,19996,95 +1058,19053,95 +1059,6068,95 +1060,80343,17 +1061,323426,31 +1062,292656,26 +1063,278717,26 +1064,22314,95 +1065,63215,44 +1066,125945,121 +1067,337101,109 +1068,456781,95 +1069,22744,95 +1070,38558,95 +1071,28421,95 +1072,38509,95 +1073,64850,44 +1074,233487,64 +1075,46094,95 +1076,16314,95 +1077,37718,95 +1078,31442,26 +1079,51275,26 +1080,43931,95 +1081,18070,95 +1082,94811,95 +1083,375599,91 +1084,128657,33 +1085,11925,50 +1086,394645,44 +1087,22998,95 +1088,10693,95 +1089,15830,93 +1090,40146,95 +1091,40205,95 +1092,362057,95 +1093,162458,121 +1094,14666,95 +1095,92321,104 +1096,290714,95 +1097,296313,93 +1098,65795,105 +1099,61765,33 +1100,319092,95 +1101,32604,121 +1102,224282,46 +1103,94803,92 +1104,30690,95 +1105,2731,121 +1106,338676,37 +1107,57809,26 +1108,256311,92 +1109,124115,95 +1110,84336,94 +1111,153781,60 +1112,92796,33 +1113,24777,95 +1114,30973,64 +1115,43902,95 +1116,33016,95 +1117,30,104 +1118,119374,105 +1119,33333,104 +1120,19606,98 +1121,48281,95 +1122,450530,64 +1123,50463,95 +1124,312221,95 +1125,70752,107 +1126,3063,95 +1127,42684,95 +1128,384130,64 +1129,99863,95 +1130,391438,102 +1131,295627,95 +1132,32338,121 +1133,319986,95 +1134,29805,95 +1135,4825,95 +1136,9301,92 +1137,10849,95 +1138,20421,94 +1139,156360,95 +1140,73262,107 +1141,140825,121 +1142,200311,113 +1143,453053,95 +1144,136466,95 +1145,138191,49 +1146,9272,95 +1147,418029,104 +1148,572,50 +1149,183218,95 +1150,19495,121 +1151,32628,95 +1152,87293,95 +1153,21533,9 +1154,314635,48 +1155,85429,121 +1156,172445,95 +1157,148265,31 +1158,44012,121 +1159,98631,104 +1160,922,95 +1161,133255,95 +1162,336845,95 +1163,253283,95 +1164,18971,95 +1165,301228,64 +1166,30780,9 +1167,37633,121 +1168,18925,95 +1169,2625,95 +1170,37410,95 +1171,41478,64 +1172,107319,75 +1173,193650,95 +1174,42187,120 +1175,214909,95 +1176,6391,4 +1177,19989,95 +1178,64191,95 +1179,8053,95 +1180,70313,95 +1181,51426,95 +1182,28263,95 +1183,65256,113 +1184,18120,60 +1185,82,108 +1186,121640,64 +1187,1561,121 +1188,436,95 +1189,33172,9 +1190,25536,67 +1191,19354,92 +1192,86284,95 +1193,21032,95 +1194,21208,9 +1195,92769,9 +1196,11142,92 +1197,48144,67 +1198,8008,64 +1199,26963,44 +1200,76047,50 +1201,39845,92 +1202,18595,94 +1203,95414,95 +1204,38765,102 +1205,2750,64 +1206,10204,92 +1207,48207,64 +1208,142507,113 +1209,26173,95 +1210,17711,92 +1211,25053,104 +1212,4953,64 +1213,28238,95 +1214,76544,91 +1215,403867,31 +1216,21544,64 +1217,47459,33 +1218,511,8 +1219,27332,95 +1220,130278,95 +1221,51823,95 +1222,57438,92 +1223,222715,104 +1224,6963,95 +1225,58013,33 +1226,24679,95 +1227,613,82 +1228,81274,95 +1229,201749,121 +1230,13173,95 +1231,253235,95 +1232,222890,95 +1233,887,95 +1234,67021,67 +1235,43900,121 +1236,188507,95 +1237,55589,93 +1238,12249,121 +1239,57326,95 +1240,33172,95 +1241,129115,69 +1242,81003,95 +1243,66022,64 +1244,42683,95 +1245,319993,48 +1246,62330,95 +1247,9298,121 +1248,26149,95 +1249,278458,69 +1250,29048,64 +1251,82624,33 +1252,251,95 +1253,7549,91 +1254,3024,95 +1255,385654,6 +1256,35926,95 +1257,205054,95 +1258,330418,31 +1259,32720,64 +1260,53798,95 +1261,198600,95 +1262,231176,33 +1263,64046,26 +1264,395992,95 +1265,72733,49 +1266,295314,84 +1267,141955,121 +1268,42258,36 +1269,40139,95 +1270,34082,95 +1271,222461,78 +1272,156547,33 +1273,9287,33 +1274,8619,95 +1275,121942,8 +1276,381356,121 +1277,7353,95 +1278,139272,68 +1279,14830,95 +1280,12453,107 +1281,29471,6 +1282,3782,104 +1283,261508,17 +1284,66984,95 +1285,445727,95 +1286,8886,92 +1287,53419,95 +1288,10364,95 +1289,48775,26 +1290,27989,95 +1291,9746,95 +1292,47694,91 +1293,173177,33 +1294,290555,9 +1295,210910,95 +1296,42764,26 +1297,105583,95 +1298,13889,104 +1299,34944,95 +1300,35253,9 +1301,29835,95 +1302,9629,92 +1303,29136,95 +1304,14843,95 +1305,27671,95 +1306,77922,57 +1307,210615,121 +1308,5206,93 +1309,14753,104 +1310,11003,95 +1311,15936,95 +1312,9260,92 +1313,82481,33 +1314,65282,95 +1315,13062,95 +1316,11421,9 +1317,213095,33 +1318,266400,64 +1319,46169,95 +1320,9317,121 +1321,49717,50 +1322,72032,98 +1323,31412,68 +1324,79008,95 +1325,203321,64 +1326,14522,64 +1327,62071,67 +1328,9483,92 +1329,17640,95 +1330,245906,92 +1331,42040,95 +1332,31498,95 +1333,241239,95 +1334,41759,95 +1335,244971,91 +1336,12601,92 +1337,14476,64 +1338,393659,95 +1339,47959,78 +1340,161073,121 +1341,94352,95 +1342,30363,105 +1343,38531,95 +1344,26761,95 +1345,12112,121 +1346,24816,95 +1347,63260,33 +1348,11370,95 +1349,375170,73 +1350,124625,82 +1351,18758,106 +1352,95504,95 +1353,94744,33 +1354,413644,44 +1355,32601,78 +1356,1586,95 +1357,60678,71 +1358,202239,42 +1359,6443,92 +1360,94568,95 +1361,6972,113 +1362,83732,95 +1363,11862,95 +1364,58692,95 +1365,264560,9 +1366,118408,104 +1367,14405,95 +1368,8494,95 +1369,138496,113 +1370,58704,104 +1371,24405,95 +1372,11328,64 +1373,14698,95 +1374,1497,67 +1375,168496,95 +1376,172847,95 +1377,38684,64 +1378,332788,68 +1379,346170,95 +1380,3587,95 +1381,249914,31 +1382,129277,121 +1383,72826,104 +1384,32716,95 +1385,28032,95 +1386,81215,121 +1387,22701,95 +1388,312831,64 +1389,94820,31 +1390,8342,33 +1391,88922,67 +1392,86261,106 +1393,417678,95 +1394,460135,95 +1395,58391,71 +1396,24921,95 +1397,42093,92 +1398,322614,71 +1399,42989,64 +1400,131194,64 +1401,1689,115 +1402,251421,95 +1403,64805,121 +1404,45874,95 +1405,55989,95 +1406,127424,69 +1407,15003,49 +1408,31867,9 +1409,448538,95 +1410,327083,95 +1411,12079,95 +1412,76312,93 +1413,261101,60 +1414,28061,33 +1415,392832,33 +1416,99229,48 +1417,365222,67 +1418,17274,95 +1419,149926,95 +1420,73430,95 +1421,351365,95 +1422,155341,95 +1423,10753,67 +1424,265934,64 +1425,359245,121 +1426,41277,9 +1427,41522,95 +1428,8144,60 +1429,9889,95 +1430,184795,95 +1431,101998,9 +1432,36094,95 +1433,99579,121 +1434,170677,95 +1435,82279,48 +1436,47956,95 +1437,296225,92 +1438,423988,92 +1439,12427,92 +1440,49688,102 +1441,3556,95 +1442,42215,64 +1443,51054,95 +1444,24589,95 +1445,43670,95 +1446,79113,95 +1447,17496,95 +1448,46827,37 +1449,42298,95 +1450,201365,20 +1451,299730,95 +1452,295588,95 +1453,10137,95 +1454,45556,113 +1455,52894,95 +1456,49073,69 +1457,255491,95 +1458,33611,6 +1459,193177,95 +1460,208309,8 +1461,388764,106 +1462,118257,95 +1463,299715,121 +1464,79995,121 +1465,110160,9 +1466,45167,74 +1467,9703,121 +1468,48231,92 +1469,2742,104 +1470,43935,95 +1471,32058,95 +1472,35689,95 +1473,31287,95 +1474,430250,95 +1475,2974,92 +1476,29903,95 +1477,14983,95 +1478,9902,92 +1479,200655,9 +1480,267579,95 +1481,430973,75 +1482,245169,9 +1483,10703,67 +1484,79836,33 +1485,44591,95 +1486,60281,95 +1487,218425,64 +1488,286567,64 +1489,27196,64 +1490,53931,95 +1491,31397,120 +1492,126415,33 +1493,184267,95 +1494,68569,95 +1495,132426,95 +1496,270899,121 +1497,209271,95 +1498,178569,95 +1499,77860,64 +1500,13017,95 +1501,78094,113 +1502,259358,42 +1503,373397,105 +1504,19995,95 +1505,125229,104 +1506,24978,95 +1507,281418,95 +1508,109441,95 +1509,150223,59 +1510,38164,33 +1511,121822,95 +1512,79234,26 +1513,362682,91 +1514,1907,64 +1515,177572,95 +1516,18111,95 +1517,29572,64 +1518,10390,95 +1519,384373,60 +1520,125548,95 +1521,427095,36 +1522,47459,92 +1523,63988,95 +1524,348320,44 +1525,190876,9 +1526,239619,92 +1527,18758,67 +1528,99767,95 +1529,15639,95 +1530,109001,31 +1531,15156,95 +1532,49559,121 +1533,44716,93 +1534,11798,64 +1535,235260,95 +1536,15725,95 +1537,126204,95 +1538,118957,113 +1539,29938,95 +1540,246655,95 +1541,369885,95 +1542,40863,67 +1543,53865,95 +1544,63876,33 +1545,27122,95 +1546,10235,26 +1547,961,95 +1548,336811,121 +1549,59296,95 +1550,1917,121 +1551,43200,33 +1552,271714,95 +1553,168259,104 +1554,6069,95 +1555,21794,20 +1556,26517,95 +1557,1267,95 +1558,12888,95 +1559,44389,95 +1560,214676,104 +1561,23898,26 +1562,325302,95 +1563,11839,95 +1564,381073,95 +1565,206292,69 +1566,370234,95 +1567,18711,95 +1568,71672,95 +1569,18514,106 +1570,85431,95 +1571,346490,92 +1572,179105,95 +1573,259183,64 +1574,56078,8 +1575,27085,64 +1576,49963,92 +1577,15794,95 +1578,13042,95 +1579,78691,64 +1580,38060,95 +1581,88375,95 +1582,9846,95 +1583,51947,95 +1584,278095,26 +1585,48791,121 +1586,33427,95 +1587,319340,121 +1588,71805,95 +1589,20242,95 +1590,14019,44 +1591,9639,92 +1592,319924,95 +1593,17445,95 +1594,15749,95 +1595,9010,82 +1596,140595,95 +1597,52047,104 +1598,14226,91 +1599,109716,95 +1600,3057,15 +1601,75142,64 +1602,26331,95 +1603,11502,8 +1604,84493,104 +1605,47410,9 +1606,74527,95 +1607,31273,8 +1608,24341,95 +1609,26558,95 +1610,77294,26 +1611,338676,60 +1612,8899,33 +1613,41762,95 +1614,1689,33 +1615,188468,95 +1616,1877,95 +1617,445,95 +1618,16428,95 +1619,64720,95 +1620,314065,64 +1621,250066,9 +1622,85377,104 +1623,42499,33 +1624,22396,33 +1625,28090,95 +1626,63317,95 +1627,12584,95 +1628,123047,64 +1629,310137,95 +1630,241374,95 +1631,124633,64 +1632,73462,95 +1633,18044,9 +1634,376934,48 +1635,32067,95 +1636,208436,92 +1637,296025,95 +1638,128089,121 +1639,48567,95 +1640,76788,31 +1641,130055,121 +1642,214086,95 +1643,2907,95 +1644,252096,71 +1645,55190,95 +1646,26422,20 +1647,43989,33 +1648,11379,95 +1649,16075,64 +1650,29694,64 +1651,127372,104 +1652,71996,95 +1653,60083,84 +1654,6933,104 +1655,226354,64 +1656,28118,64 +1657,319999,8 +1658,74465,95 +1659,239091,95 +1660,108582,95 +1661,292625,49 +1662,137093,95 +1663,70667,93 +1664,38766,95 +1665,50674,92 +1666,12994,95 +1667,215928,113 +1668,27450,64 +1669,35026,121 +1670,37451,95 +1671,25801,31 +1672,254268,48 +1673,42188,95 +1674,33570,9 +1675,348025,121 +1676,176670,95 +1677,161073,69 +1678,78318,95 +1679,13848,95 +1680,8080,92 +1681,62527,95 +1682,22450,95 +1683,38770,64 +1684,351901,95 +1685,43083,4 +1686,363841,60 +1687,255647,6 +1688,110598,95 +1689,2742,64 +1690,140222,95 +1691,2666,113 +1692,15163,64 +1693,341745,92 +1694,296288,81 +1695,241170,95 +1696,310602,93 +1697,345888,106 +1698,16235,33 +1699,19958,113 +1700,236395,95 +1701,38901,95 +1702,324670,95 +1703,11205,60 +1704,121929,109 +1705,12639,95 +1706,256907,31 +1707,29083,95 +1708,10543,95 +1709,134782,95 +1710,123047,95 +1711,304134,31 +1712,45671,121 +1713,116723,64 +1714,52918,116 +1715,72856,95 +1716,81937,95 +1717,15050,95 +1718,13022,113 +1719,215740,92 +1720,48180,69 +1721,9673,92 +1722,70734,95 +1723,383567,95 +1724,1165,64 +1725,25716,104 +1726,63326,95 +1727,248376,91 +1728,97794,75 +1729,261246,64 +1730,46124,67 +1731,286657,95 +1732,245394,64 +1733,5237,30 +1734,9659,113 +1735,74103,92 +1736,158990,26 +1737,50875,95 +1738,62397,33 +1739,1421,121 +1740,39939,95 +1741,51759,95 +1742,266285,93 +1743,362180,60 +1744,35862,44 +1745,67531,95 +1746,19623,31 +1747,16356,9 +1748,281968,33 +1749,267955,95 +1750,31277,95 +1751,305932,95 +1752,128598,69 +1753,64129,95 +1754,73600,95 +1755,117629,4 +1756,128043,37 +1757,24926,95 +1758,28656,95 +1759,36758,64 +1760,20312,9 +1761,359204,64 +1762,20907,37 +1763,285841,9 +1764,22551,95 +1765,17467,67 +1766,29352,102 +1767,21371,95 +1768,14753,33 +1769,141803,95 +1770,99283,95 +1771,61487,95 +1772,40041,113 +1773,21769,104 +1774,37653,121 +1775,77068,114 +1776,19901,95 +1777,51902,48 +1778,24442,95 +1779,41206,95 +1780,93904,95 +1781,201,95 +1782,44470,95 +1783,26946,95 +1784,2012,36 +1785,111839,95 +1786,282024,26 +1787,237,121 +1788,11908,95 +1789,16374,121 +1790,32021,95 +1791,24272,95 +1792,426253,95 +1793,14284,95 +1794,50780,95 +1795,159304,9 +1796,27549,95 +1797,258363,102 +1798,1595,95 +1799,395479,26 +1800,3933,95 +1801,364379,113 +1802,183962,121 +1803,284052,95 +1804,166207,60 +1805,119738,95 +1806,261036,95 +1807,9066,95 +1808,244316,95 +1809,64450,121 +1810,425003,95 +1811,57683,95 +1812,24331,9 +1813,41764,57 +1814,9690,92 +1815,209921,121 +1816,44754,95 +1817,171075,64 +1818,6972,64 +1819,457307,26 +1820,345176,64 +1821,50123,95 +1822,104556,95 +1823,4644,95 +1824,2355,95 +1825,12476,95 +1826,43095,104 +1827,19621,64 +1828,28417,44 +1829,61765,121 +1830,19665,9 +1831,16412,9 +1832,180685,44 +1833,67273,95 +1834,1986,44 +1835,157305,64 +1836,5123,95 +1837,17238,33 +1838,38269,95 +1839,27045,95 +1840,18971,64 +1841,128089,64 +1842,24750,95 +1843,33338,91 +1844,40879,121 +1845,57627,49 +1846,82716,48 +1847,33091,50 +1848,11622,95 +1849,22579,75 +1850,27351,104 +1851,278621,95 +1852,29233,95 +1853,167,92 +1854,95169,95 +1855,16638,33 +1856,28974,95 +1857,414749,95 +1858,81600,36 +1859,213443,95 +1860,9042,95 +1861,112912,95 +1862,32635,69 +1863,266285,50 +1864,154371,95 +1865,209401,64 +1866,63825,31 +1867,197583,95 +1868,348537,60 +1869,413052,9 +1870,1966,92 +1871,297853,95 +1872,9470,91 +1873,215032,9 +1874,19715,95 +1875,37050,81 +1876,9079,95 +1877,7299,95 +1878,9358,95 +1879,183015,75 +1880,64934,121 +1881,440767,95 +1882,256628,9 +1883,79216,26 +1884,11694,95 +1885,13205,95 +1886,313676,104 +1887,85525,106 +1888,159185,91 +1889,27137,95 +1890,8899,92 +1891,354133,95 +1892,189197,95 +1893,133941,33 +1894,96724,64 +1895,46494,95 +1896,274990,57 +1897,703,95 +1898,315664,64 +1899,36129,26 +1900,8247,9 +1901,4291,104 +1902,58918,95 +1903,16560,95 +1904,45019,95 +1905,286709,95 +1906,58411,9 +1907,49220,50 +1908,326359,95 +1909,230211,36 +1910,234862,121 +1911,283686,60 +1912,20357,64 +1913,28273,104 +1914,274060,95 +1915,47653,95 +1916,5048,36 +1917,228108,95 +1918,123949,26 +1919,38031,60 +1920,238781,121 +1921,44449,121 +1922,254047,95 +1923,45489,104 +1924,177043,95 +1925,36672,92 +1926,63538,26 +1927,336850,95 +1928,198317,95 +1929,51836,95 +1930,74436,95 +1931,153518,95 +1932,270015,95 +1933,17927,95 +1934,17295,33 +1935,63681,33 +1936,101242,95 +1937,370264,64 +1938,38965,95 +1939,87936,64 +1940,409,64 +1941,31890,64 +1942,3539,92 +1943,257088,91 +1944,170517,95 +1945,44001,95 +1946,265208,95 +1947,81687,95 +1948,52520,95 +1949,49853,49 +1950,103161,95 +1951,201633,9 +1952,89751,95 +1953,78340,121 +1954,8930,107 +1955,197210,26 +1956,7980,95 +1957,8985,39 +1958,44104,33 +1959,59040,33 +1960,43367,95 +1961,9325,95 +1962,19606,67 +1963,47489,121 +1964,152539,121 +1965,91261,28 +1966,228968,36 +1967,105153,95 +1968,10165,95 +1969,290365,9 +1970,241982,44 +1971,198308,64 +1972,31527,95 +1973,1640,95 +1974,14370,95 +1975,140883,31 +1976,105763,44 +1977,338676,121 +1978,41441,106 +1979,18190,95 +1980,268920,95 +1981,16197,113 +1982,109690,69 +1983,94671,26 +1984,116762,4 +1985,25078,104 +1986,336691,95 +1987,207402,94 +1988,12636,104 +1989,36361,95 +1990,59803,26 +1991,180050,78 +1992,10491,64 +1993,173443,81 +1994,356482,95 +1995,17457,67 +1996,61895,95 +1997,36758,95 +1998,26323,95 +1999,103732,95 +2000,2721,121 +2001,85602,95 +2002,482,95 +2003,256916,60 +2004,31344,121 +2005,261871,55 +2006,177697,92 +2007,9296,95 +2008,8985,121 +2009,20919,64 +2010,99698,44 +2011,59569,95 +2012,265563,81 +2013,72984,95 +2014,157723,95 +2015,33788,95 +2016,43023,64 +2017,469,95 +2018,56527,95 +2019,30996,95 +2020,47446,21 +2021,866,64 +2022,242631,95 +2023,211139,33 +2024,36249,95 +2025,86985,93 +2026,38356,95 +2027,36971,80 +2028,110552,49 +2029,45729,95 +2030,246127,92 +2031,359870,64 +2032,48339,93 +2033,34113,64 +2034,8064,92 +2035,284246,92 +2036,61578,64 +2037,37686,95 +2038,47342,95 +2039,45133,50 +2040,121793,121 +2041,320343,95 +2042,41645,60 +2043,13393,68 +2044,21585,95 +2045,101852,95 +2046,36554,95 +2047,27031,104 +2048,342213,60 +2049,66966,121 +2050,73313,95 +2051,353713,60 +2052,87311,95 +2053,62320,121 +2054,15,95 +2055,319096,95 +2056,9354,95 +2057,28469,82 +2058,336804,92 +2059,12811,81 +2060,32093,95 +2061,8840,95 +2062,19482,106 +2063,13484,95 +2064,277839,121 +2065,844,91 +2066,339530,95 +2067,16907,104 +2068,20444,95 +2069,177085,95 +2070,27265,95 +2071,15810,113 +2072,60994,95 +2073,145194,50 +2074,8336,95 +2075,28387,95 +2076,8998,95 +2077,10645,92 +2078,317214,100 +2079,366630,9 +2080,15788,95 +2081,42204,95 +2082,1482,95 +2083,78789,121 +2084,18684,95 +2085,9528,64 +2086,390343,95 +2087,65759,113 +2088,303857,104 +2089,37917,95 +2090,1481,113 +2091,80717,69 +2092,35021,8 +2093,342684,121 +2094,43469,33 +2095,274483,121 +2096,14589,95 +2097,257088,92 +2098,9087,95 +2099,172386,95 +2100,81720,95 +2101,8672,71 +2102,28320,95 +2103,12639,60 +2104,102841,95 +2105,169068,95 +2106,249,95 +2107,9624,95 +2108,66526,31 +2109,39072,95 +2110,319993,121 +2111,67102,8 +2112,246860,121 +2113,31306,95 +2114,16214,95 +2115,1890,95 +2116,22140,93 +2117,128154,95 +2118,28761,95 +2119,210047,95 +2120,43213,95 +2121,270724,91 +2122,182415,33 +2123,64942,121 +2124,19181,50 +2125,405882,95 +2126,126250,121 +2127,78691,95 +2128,13539,95 +2129,97593,95 +2130,10740,92 +2131,20342,67 +2132,64850,9 +2133,210609,95 +2134,38761,95 +2135,9753,95 +2136,10603,95 +2137,22999,95 +2138,1995,95 +2139,51548,60 +2140,114982,121 +2141,175822,64 +2142,107445,92 +2143,13436,49 +2144,105584,60 +2145,320299,121 +2146,41764,64 +2147,83729,92 +2148,71336,26 +2149,125926,50 +2150,334132,91 +2151,303636,50 +2152,283489,95 +2153,318184,119 +2154,1633,95 +2155,174611,95 +2156,15060,95 +2157,45377,95 +2158,235450,95 +2159,45013,95 +2160,349948,95 +2161,138522,92 +2162,96133,33 +2163,94725,95 +2164,109213,95 +2165,210092,9 +2166,244316,9 +2167,41035,95 +2168,64328,95 +2169,48787,95 +2170,24123,95 +2171,24979,95 +2172,11593,95 +2173,67174,75 +2174,122192,44 +2175,97707,92 +2176,17658,121 +2177,290656,95 +2178,19505,95 +2179,29355,95 +2180,18035,95 +2181,70436,95 +2182,30374,95 +2183,71125,95 +2184,157420,92 +2185,32872,95 +2186,28115,95 +2187,266044,82 +2188,4641,95 +2189,15143,95 +2190,48585,113 +2191,9550,67 +2192,332936,95 +2193,10207,95 +2194,223655,64 +2195,18093,64 +2196,18015,4 +2197,79151,67 +2198,38618,113 +2199,44746,64 +2200,36212,104 +2201,63186,33 +2202,11887,95 +2203,62713,33 +2204,190352,95 +2205,155011,33 +2206,55236,95 +2207,344170,113 +2208,71496,44 +2209,18208,95 +2210,49787,113 +2211,74585,33 +2212,25643,95 +2213,65718,121 +2214,62694,95 +2215,10004,95 +2216,19101,95 +2217,21451,95 +2218,60316,48 +2219,11171,95 +2220,86297,95 +2221,376391,64 +2222,167424,8 +2223,43525,95 +2224,18977,95 +2225,87936,95 +2226,28433,95 +2227,327,104 +2228,390409,57 +2229,57103,95 +2230,26689,95 +2231,430985,95 +2232,15256,95 +2233,25087,95 +2234,14787,95 +2235,284306,71 +2236,52251,92 +2237,15613,95 +2238,173874,64 +2239,82708,92 +2240,423988,95 +2241,377287,121 +2242,45431,95 +2243,106112,95 +2244,25111,95 +2245,170689,121 +2246,224,8 +2247,43829,95 +2248,8460,95 +2249,103758,121 +2250,362617,60 +2251,351862,64 +2252,22076,118 +2253,20846,95 +2254,60120,60 +2255,47405,57 +2256,403450,33 +2257,32928,26 +2258,229134,121 +2259,229182,95 +2260,409447,95 +2261,93858,92 +2262,47310,95 +2263,253310,95 +2264,29313,60 +2265,18557,113 +2266,26642,6 +2267,344120,121 +2268,16032,50 +2269,238952,121 +2270,71320,95 +2271,41131,95 +2272,315837,31 +2273,16921,95 +2274,37419,68 +2275,34496,113 +2276,30363,95 +2277,16131,95 +2278,13374,9 +2279,11186,95 +2280,4146,107 +2281,320588,95 +2282,48488,9 +2283,75948,67 +2284,61151,95 +2285,14459,113 +2286,40041,76 +2287,263873,95 +2288,265432,92 +2289,278978,92 +2290,4613,95 +2291,359204,87 +2292,15982,95 +2293,38850,95 +2294,426230,95 +2295,91380,121 +2296,866,95 +2297,9613,9 +2298,11373,33 +2299,20495,31 +2300,37247,95 +2301,177335,95 +2302,4955,92 +2303,89720,95 +2304,242310,121 +2305,367596,92 +2306,186988,121 +2307,2274,95 +2308,302118,92 +2309,13991,95 +2310,13517,93 +2311,155325,8 +2312,110001,60 +2313,22279,64 +2314,106355,95 +2315,56901,31 +2316,98349,82 +2317,99367,95 +2318,11545,95 +2319,64725,6 +2320,38875,8 +2321,1589,64 +2322,359154,60 +2323,17241,95 +2324,56486,82 +2325,225285,64 +2326,340101,64 +2327,332979,95 +2328,337012,94 +2329,30492,95 +2330,11206,95 +2331,140708,71 +2332,182499,95 +2333,45215,95 +2334,296524,95 +2335,42614,95 +2336,13241,9 +2337,91571,121 +2338,16240,9 +2339,31264,33 +2340,25649,106 +2341,56344,44 +2342,36162,26 +2343,48243,37 +2344,11046,95 +2345,42987,64 +2346,352208,95 +2347,25568,9 +2348,10077,64 +2349,127560,113 +2350,67342,67 +2351,60813,121 +2352,40719,95 +2353,58,95 +2354,64310,121 +2355,455661,95 +2356,7096,64 +2357,14518,64 +2358,366548,121 +2359,28510,95 +2360,128081,9 +2361,86254,9 +2362,15902,95 +2363,26182,95 +2364,362154,91 +2365,158990,121 +2366,48787,26 +2367,19336,104 +2368,31128,33 +2369,11035,33 +2370,133160,104 +2371,83125,95 +2372,10050,95 +2373,105077,95 +2374,28527,36 +2375,9102,9 +2376,227262,92 +2377,202475,95 +2378,44303,9 +2379,43149,95 +2380,9812,95 +2381,19398,36 +2382,228968,64 +2383,39240,95 +2384,19342,95 +2385,356191,4 +2386,66175,95 +2387,291336,95 +2388,124527,64 +2389,14669,95 +2390,409536,95 +2391,98289,95 +2392,69,92 +2393,46857,71 +2394,17609,121 +2395,10870,121 +2396,57209,26 +2397,15084,31 +2398,152100,33 +2399,318553,95 +2400,237756,95 +2401,88224,95 +2402,26123,95 +2403,228339,21 +2404,13495,60 +2405,38681,121 +2406,244268,121 +2407,15560,95 +2408,179549,64 +2409,5206,33 +2410,209251,78 +2411,413762,64 +2412,176983,104 +2413,285135,9 +2414,24363,95 +2415,51302,95 +2416,43473,95 +2417,15019,95 +2418,17609,92 +2419,13852,113 +2420,436340,44 +2421,92796,95 +2422,102629,95 +2423,23114,95 +2424,381015,9 +2425,2047,95 +2426,438634,60 +2427,12787,95 +2428,246011,95 +2429,85516,64 +2430,57089,95 +2431,66109,95 +2432,280583,9 +2433,303966,31 +2434,12273,31 +2435,47112,92 +2436,16014,93 +2437,19582,95 +2438,910,95 +2439,20287,95 +2440,11175,33 +2441,141419,82 +2442,24140,82 +2443,103689,102 +2444,34899,92 +2445,72642,95 +2446,277631,95 +2447,326723,92 +2448,151509,95 +2449,257088,95 +2450,42225,33 +2451,18551,95 +2452,26376,95 +2453,285245,50 +2454,254679,104 +2455,406431,95 +2456,152570,95 +2457,335145,95 +2458,40660,71 +2459,52264,36 +2460,127094,121 +2461,58133,60 +2462,84184,95 +2463,30478,64 +2464,84823,121 +2465,120109,95 +2466,54139,95 +2467,271826,9 +2468,42580,95 +2469,193650,9 +2470,329550,8 +2471,208305,9 +2472,229610,95 +2473,8970,95 +2474,120854,95 +2475,70863,95 +2476,41714,95 +2477,354859,60 +2478,18514,95 +2479,111017,95 +2480,16455,121 +2481,309820,91 +2482,54524,92 +2483,377151,33 +2484,331075,67 +2485,194101,64 +2486,76829,121 +2487,25403,121 +2488,1662,95 +2489,128795,113 +2490,25921,113 +2491,8128,92 +2492,126043,81 +2493,293654,26 +2494,131351,95 +2495,8410,64 +2496,125700,7 +2497,11354,95 +2498,2805,49 +2499,92716,95 +2500,65545,26 +2501,15713,121 +2502,25005,9 +2503,268321,95 +2504,33792,95 +2505,15916,104 +2506,8985,48 +2507,286521,95 +2508,6687,60 +2509,60285,95 +2510,4279,121 +2511,169881,92 +2512,66668,95 +2513,11943,95 +2514,19338,95 +2515,321160,95 +2516,177354,64 +2517,274991,26 +2518,694,95 +2519,72465,121 +2520,15457,48 +2521,193216,26 +2522,28367,95 +2523,6947,95 +2524,38327,33 +2525,290864,91 +2526,11381,95 +2527,184098,95 +2528,251232,93 +2529,33534,26 +2530,2924,95 +2531,24050,9 +2532,1554,92 +2533,14751,31 +2534,79218,95 +2535,125945,4 +2536,47535,64 +2537,287603,95 +2538,105703,73 +2539,29352,67 +2540,2009,78 +2541,75341,34 +2542,46278,21 +2543,247447,1 +2544,27338,95 +2545,890,82 +2546,227700,95 +2547,140472,95 +2548,29345,95 +2549,5421,33 +2550,18642,95 +2551,330459,95 +2552,31439,91 +2553,15745,95 +2554,57351,95 +2555,94727,95 +2556,35683,95 +2557,392818,95 +2558,36695,26 +2559,35856,92 +2560,212530,92 +2561,41970,64 +2562,9787,92 +2563,28681,95 +2564,96935,95 +2565,91715,95 +2566,37038,64 +2567,12276,91 +2568,81604,26 +2569,275244,104 +2570,70966,26 +2571,92988,82 +2572,24810,9 +2573,171873,82 +2574,18392,95 +2575,15759,95 +2576,1999,95 +2577,1404,92 +2578,11045,121 +2579,10527,95 +2580,2516,64 +2581,59117,60 +2582,48243,94 +2583,13823,95 +2584,73981,92 +2585,24348,95 +2586,2637,95 +2587,14435,95 +2588,79382,104 +2589,21070,121 +2590,288521,95 +2591,53128,47 +2592,67025,106 +2593,18955,121 +2594,10691,95 +2595,19050,95 +2596,15258,95 +2597,70046,95 +2598,9956,95 +2599,22897,95 +2600,49220,36 +2601,169069,33 +2602,51994,95 +2603,17654,120 +2604,39195,95 +2605,378503,92 +2606,73562,121 +2607,336029,4 +2608,213755,33 +2609,10473,95 +2610,9260,95 +2611,258509,95 +2612,44000,95 +2613,331962,95 +2614,23590,95 +2615,43987,106 +2616,18051,95 +2617,40060,95 +2618,256740,95 +2619,80089,104 +2620,39839,31 +2621,19430,92 +2622,224251,95 +2623,423377,95 +2624,122271,64 +2625,286940,106 +2626,15013,120 +2627,127369,9 +2628,140607,95 +2629,45800,95 +2630,161187,95 +2631,119409,60 +2632,1687,95 +2633,1817,95 +2634,360737,92 +2635,16412,95 +2636,127864,121 +2637,2009,44 +2638,67018,95 +2639,318781,121 +2640,17771,37 +2641,137504,104 +2642,38554,95 +2643,42641,95 +2644,82999,69 +2645,168496,121 +2646,1272,64 +2647,33224,95 +2648,257176,95 +2649,45807,95 +2650,183412,95 +2651,86664,104 +2652,29911,95 +2653,349045,95 +2654,54845,95 +2655,208968,95 +2656,53781,95 +2657,312174,95 +2658,19719,95 +2659,5516,95 +2660,21950,95 +2661,11832,93 +2662,170078,46 +2663,362180,121 +2664,32540,64 +2665,60551,95 +2666,20645,104 +2667,1125,95 +2668,10154,64 +2669,6589,95 +2670,84284,64 +2671,353728,9 +2672,221171,119 +2673,273610,95 +2674,288105,95 +2675,96089,95 +2676,22259,95 +2677,170279,36 +2678,62392,95 +2679,30644,75 +2680,315855,9 +2681,57918,33 +2682,140648,95 +2683,42325,95 +2684,270774,67 +2685,318781,64 +2686,59297,104 +2687,228198,81 +2688,26422,121 +2689,32088,95 +2690,6557,95 +2691,214,95 +2692,14613,95 +2693,11196,64 +2694,65887,92 +2695,285,95 +2696,93492,33 +2697,45205,104 +2698,11531,95 +2699,117999,95 +2700,50363,95 +2701,192558,31 +2702,18646,95 +2703,265832,95 +2704,31083,95 +2705,29352,95 +2706,133458,50 +2707,2503,95 +2708,82134,9 +2709,366631,9 +2710,99374,95 +2711,51364,95 +2712,8981,64 +2713,83481,60 +2714,47900,121 +2715,41970,92 +2716,58402,33 +2717,53851,95 +2718,113520,9 +2719,14078,50 +2720,41764,71 +2721,201676,95 +2722,44732,120 +2723,393445,31 +2724,11535,95 +2725,43491,95 +2726,83599,92 +2727,266687,95 +2728,180759,64 +2729,49963,64 +2730,36175,104 +2731,76821,121 +2732,284305,60 +2733,34449,66 +2734,9503,92 +2735,15527,95 +2736,99312,95 +2737,106887,97 +2738,10219,95 +2739,58189,33 +2740,16938,9 +2741,346443,8 +2742,1574,95 +2743,88794,95 +2744,18375,95 +2745,345438,36 +2746,193603,95 +2747,330711,95 +2748,69035,104 +2749,156,93 +2750,340488,95 +2751,92251,33 +2752,11333,33 +2753,257912,64 +2754,204802,26 +2755,11688,95 +2756,13676,95 +2757,15468,107 +2758,378236,95 +2759,50350,121 +2760,13391,104 +2761,147876,95 +2762,363479,9 +2763,42216,121 +2764,35129,95 +2765,11600,95 +2766,284467,95 +2767,397520,9 +2768,2786,33 +2769,31347,104 +2770,31945,95 +2771,17015,64 +2772,279690,9 +2773,43455,95 +2774,78854,33 +2775,82968,105 +2776,201749,44 +2777,28847,33 +2778,1394,33 +2779,11298,95 +2780,12289,91 +2781,363354,104 +2782,11601,95 +2783,10488,95 +2784,344147,95 +2785,2262,92 +2786,43141,95 +2787,289232,64 +2788,54796,92 +2789,10326,95 +2790,13225,95 +2791,22328,95 +2792,110573,121 +2793,172673,82 +2794,2611,95 +2795,14979,95 +2796,46992,64 +2797,24971,121 +2798,11516,121 +2799,270024,44 +2800,49038,95 +2801,54514,121 +2802,186634,95 +2803,42501,121 +2804,18902,95 +2805,20644,95 +2806,46712,102 +2807,97035,121 +2808,51276,26 +2809,125344,36 +2810,126712,95 +2811,80961,68 +2812,58462,95 +2813,253277,95 +2814,11011,95 +2815,71329,121 +2816,198130,121 +2817,329690,95 +2818,8371,92 +2819,42569,95 +2820,41809,113 +2821,413452,95 +2822,43026,121 +2823,103689,121 +2824,137955,9 +2825,259894,9 +2826,48268,37 +2827,11103,95 +2828,100661,75 +2829,26165,33 +2830,10797,93 +2831,42191,95 +2832,265226,92 +2833,10204,64 +2834,45522,6 +2835,193435,95 +2836,282070,104 +2837,13710,121 +2838,60488,95 +2839,39800,95 +2840,61950,64 +2841,257534,92 +2842,191502,95 +2843,27599,50 +2844,36211,60 +2845,49788,95 +2846,22681,95 +2847,17825,121 +2848,181456,121 +2849,18978,95 +2850,27507,95 +2851,8939,52 +2852,56969,31 +2853,214129,75 +2854,31509,95 +2855,93858,81 +2856,155386,63 +2857,76703,121 +2858,20107,95 +2859,15765,95 +2860,27003,95 +2861,33489,9 +2862,46798,95 +2863,437253,21 +2864,26642,9 +2865,13965,113 +2866,6499,104 +2867,66187,121 +2868,37534,95 +2869,48156,95 +2870,277710,95 +2871,134656,113 +2872,37581,95 +2873,200505,95 +2874,27834,121 +2875,52913,33 +2876,303360,76 +2877,30496,64 +2878,61121,71 +2879,11458,92 +2880,8341,92 +2881,32901,95 +2882,377587,95 +2883,11171,36 +2884,205584,113 +2885,51548,121 +2886,9551,92 +2887,322,95 +2888,29143,95 +2889,116488,106 +2890,128767,26 +2891,65612,107 +2892,85644,95 +2893,12614,64 +2894,244783,95 +2895,245226,95 +2896,51955,95 +2897,355008,64 +2898,284620,121 +2899,13162,95 +2900,335498,95 +2901,374883,71 +2902,40047,95 +2903,6976,64 +2904,60125,95 +2905,69,95 +2906,35113,64 +2907,350762,95 +2908,41932,95 +2909,31258,95 +2910,48587,9 +2911,12450,95 +2912,128588,33 +2913,7916,9 +2914,268212,33 +2915,47112,64 +2916,224951,9 +2917,103731,95 +2918,19618,95 +2919,142881,26 +2920,43753,95 +2921,12144,95 +2922,105860,33 +2923,58251,95 +2924,374461,95 +2925,323552,95 +2926,31742,33 +2927,65795,69 +2928,417870,95 +2929,37725,95 +2930,65777,64 +2931,57382,121 +2932,92393,95 +2933,180635,95 +2934,308174,92 +2935,48333,92 +2936,10311,92 +2937,32195,95 +2938,206647,64 +2939,634,64 +2940,38769,95 +2941,353464,31 +2942,11712,104 +2943,361571,9 +2944,43817,64 +2945,356296,33 +2946,12407,9 +2947,41261,104 +2948,65123,26 +2949,47792,21 +2950,242076,95 +2951,11869,92 +2952,25855,49 +2953,270774,95 +2954,31299,60 +2955,106417,104 +2956,63831,33 +2957,15534,95 +2958,104430,95 +2959,104083,95 +2960,817,95 +2961,54022,95 +2962,24883,95 +2963,2102,104 +2964,15464,31 +2965,172520,95 +2966,220820,95 +2967,13549,95 +2968,278316,95 +2969,13957,95 +2970,16026,50 +2971,2195,92 +2972,64454,121 +2973,6499,95 +2974,79316,95 +2975,49258,104 +2976,9555,113 +2977,346672,95 +2978,356332,95 +2979,16005,95 +2980,49110,95 +2981,265180,26 +2982,382125,57 +2983,10714,95 +2984,51423,50 +2985,291164,95 +2986,254575,95 +2987,499,121 +2988,2002,33 +2989,234155,51 +2990,59115,95 +2991,124202,33 +2992,378441,64 +2993,336669,63 +2994,336666,9 +2995,436,63 +2996,53524,64 +2997,42623,95 +2998,43860,64 +2999,47446,95 +3000,85656,104 +3001,27079,95 +3002,80276,31 +3003,10409,113 +3004,77056,121 +3005,24709,92 +3006,324440,92 +3007,40041,95 +3008,28063,33 +3009,338676,95 +3010,29111,121 +3011,11645,121 +3012,25626,91 +3013,43142,95 +3014,213755,92 +3015,48186,95 +3016,358895,95 +3017,121006,95 +3018,3513,95 +3019,62116,121 +3020,318359,95 +3021,11653,91 +3022,378485,102 +3023,333667,95 +3024,88012,64 +3025,41497,9 +3026,69401,31 +3027,23169,95 +3028,110,8 +3029,77583,95 +3030,152532,95 +3031,377287,44 +3032,327528,9 +3033,12614,95 +3034,19423,9 +3035,11535,92 +3036,11680,121 +3037,27144,64 +3038,79995,44 +3039,133575,95 +3040,17911,95 +3041,7555,92 +3042,47212,95 +3043,108812,95 +3044,413782,104 +3045,64084,95 +3046,15602,95 +3047,408537,60 +3048,45243,95 +3049,55823,121 +3050,245692,59 +3051,142115,95 +3052,82368,33 +3053,20,9 +3054,28325,33 +3055,36868,95 +3056,59354,64 +3057,210940,95 +3058,137182,44 +3059,345922,95 +3060,413998,95 +3061,11895,95 +3062,18094,9 +3063,172908,64 +3064,315872,33 +3065,7555,95 +3066,18597,64 +3067,49322,71 +3068,27966,95 +3069,13561,95 +3070,81477,95 +3071,60199,95 +3072,12684,64 +3073,30061,95 +3074,43773,1 +3075,63414,31 +3076,33592,64 +3077,68387,9 +3078,23830,121 +3079,33005,95 +3080,80320,95 +3081,289191,93 +3082,330878,26 +3083,142979,33 +3084,35337,92 +3085,62046,92 +3086,127702,60 +3087,237,64 +3088,36530,95 +3089,51303,95 +3090,179715,68 +3091,168217,95 +3092,83788,60 +3093,163942,37 +3094,24212,64 +3095,10407,95 +3096,116979,95 +3097,32323,9 +3098,1689,64 +3099,37454,33 +3100,10400,95 +3101,86497,50 +3102,83119,64 +3103,147575,33 +3104,241930,95 +3105,288281,95 +3106,75066,33 +3107,49013,95 +3108,62755,75 +3109,43688,95 +3110,153541,57 +3111,2887,95 +3112,378087,60 +3113,11540,60 +3114,26581,64 +3115,307081,95 +3116,55534,9 +3117,218784,95 +3118,14538,91 +3119,348389,64 +3120,30305,49 +3121,10750,95 +3122,34838,69 +3123,77067,95 +3124,6076,92 +3125,15457,92 +3126,28044,95 +3127,402455,104 +3128,54524,82 +3129,83599,101 +3130,47863,95 +3131,36736,95 +3132,56815,92 +3133,33436,121 +3134,40916,95 +3135,268875,95 +3136,108177,95 +3137,94671,95 +3138,8985,15 +3139,34838,92 +3140,49929,64 +3141,20715,95 +3142,11697,95 +3143,23619,33 +3144,9963,95 +3145,9385,121 +3146,100110,95 +3147,34449,95 +3148,59387,95 +3149,318781,92 +3150,54227,95 +3151,199879,9 +3152,330115,95 +3153,150201,95 +3154,73160,81 +3155,15263,95 +3156,2966,113 +3157,27446,95 +3158,12422,105 +3159,8358,95 +3160,302828,95 +3161,385379,104 +3162,54801,64 +3163,29192,60 +3164,54309,33 +3165,394822,92 +3166,8211,8 +3167,3114,95 +3168,179066,95 +3169,13562,95 +3170,42501,33 +3171,319910,95 +3172,18530,92 +3173,98612,92 +3174,5998,92 +3175,79611,26 +3176,48153,95 +3177,3145,64 +3178,10550,95 +3179,47882,95 +3180,52034,104 +3181,10467,95 +3182,24792,95 +3183,51902,15 +3184,80775,95 +3185,290825,95 +3186,35284,33 +3187,15325,95 +3188,118257,92 +3189,28304,95 +3190,29610,95 +3191,225728,95 +3192,31922,95 +3193,13920,95 +3194,27681,95 +3195,55712,95 +3196,313074,64 +3197,28001,95 +3198,4948,121 +3199,84774,26 +3200,70351,95 +3201,239103,92 +3202,128215,9 +3203,131027,37 +3204,402455,68 +3205,97762,64 +3206,381737,95 +3207,96921,121 +3208,70807,92 +3209,247218,33 +3210,32395,95 +3211,62033,95 +3212,36251,95 +3213,222872,95 +3214,44398,95 +3215,572,57 +3216,68797,8 +3217,390,92 +3218,18575,8 +3219,328589,64 +3220,148034,6 +3221,107976,106 +3222,3554,95 +3223,12606,95 +3224,97088,92 +3225,6417,78 +3226,43904,121 +3227,135713,121 +3228,32635,60 +3229,169298,95 +3230,130457,60 +3231,32143,95 +3232,315872,121 +3233,108003,64 +3234,11561,95 +3235,201749,95 +3236,39057,95 +3237,1911,95 +3238,105760,8 +3239,131898,95 +3240,105945,95 +3241,39305,64 +3242,111759,95 +3243,16076,119 +3244,329682,121 +3245,42487,95 +3246,10142,49 +3247,217341,95 +3248,447169,95 +3249,13678,107 +3250,30792,64 +3251,24432,121 +3252,332534,68 +3253,13574,95 +3254,46769,121 +3255,29108,92 +3256,13056,92 +3257,166161,95 +3258,8929,121 +3259,1924,95 +3260,289159,50 +3261,85430,95 +3262,1986,121 +3263,144580,95 +3264,130993,50 +3265,44527,107 +3266,48231,107 +3267,317389,33 +3268,3537,95 +3269,25376,60 +3270,140032,95 +3271,6417,37 +3272,133121,104 +3273,101915,95 +3274,46007,95 +3275,32168,106 +3276,373200,91 +3277,32764,82 +3278,49009,95 +3279,1259,64 +3280,4887,92 +3281,27937,26 +3282,325173,95 +3283,2454,95 +3284,76543,64 +3285,33472,95 +3286,2110,121 +3287,18747,67 +3288,397837,95 +3289,43895,95 +3290,69668,9 +3291,11511,95 +3292,85640,95 +3293,9308,95 +3294,16873,95 +3295,844,67 +3296,18044,95 +3297,8342,44 +3298,383064,121 +3299,25998,67 +3300,122,76 +3301,43978,121 +3302,43855,95 +3303,115810,121 +3304,325428,95 +3305,47703,26 +3306,42267,9 +3307,276906,95 +3308,4529,121 +3309,30366,95 +3310,57575,121 +3311,253192,26 +3312,24351,95 +3313,32099,71 +3314,200813,64 +3315,36874,95 +3316,17962,104 +3317,43158,95 +3318,99846,95 +3319,329440,95 +3320,20421,95 +3321,287391,33 +3322,14615,95 +3323,2293,95 +3324,255772,53 +3325,14753,9 +3326,19274,67 +3327,28973,64 +3328,392882,104 +3329,2309,64 +3330,109671,68 +3331,165,95 +3332,18495,95 +3333,41783,92 +3334,76544,95 +3335,23966,95 +3336,68750,9 +3337,49522,64 +3338,714,64 +3339,87481,91 +3340,3104,64 +3341,53766,95 +3342,62967,60 +3343,288101,121 +3344,55167,50 +3345,41115,33 +3346,19548,121 +3347,394668,95 +3348,8906,92 +3349,5413,94 +3350,12103,113 +3351,301491,21 +3352,12206,92 +3353,44657,95 +3354,19850,95 +3355,10805,95 +3356,4547,95 +3357,181753,9 +3358,337012,36 +3359,17622,9 +3360,336806,121 +3361,2,71 +3362,16659,113 +3363,10176,76 +3364,53399,33 +3365,9539,9 +3366,17003,103 +3367,24432,64 +3368,69668,95 +3369,29129,121 +3370,52264,107 +3371,320318,121 +3372,398452,1 +3373,53209,95 +3374,173638,64 +3375,40799,95 +3376,12526,95 +3377,330381,37 +3378,18414,95 +3379,1415,95 +3380,345489,36 +3381,173914,16 +3382,88036,95 +3383,51581,104 +3384,10748,64 +3385,58060,33 +3386,118690,64 +3387,70327,104 +3388,1116,107 +3389,44238,50 +3390,141868,95 +3391,267579,81 +3392,217057,95 +3393,68629,95 +3394,4550,106 +3395,215379,120 +3396,289198,109 +3397,302528,9 +3398,46341,60 +3399,43369,64 +3400,3784,95 +3401,32091,104 +3402,23668,95 +3403,352025,121 +3404,11145,95 +3405,21627,95 +3406,86732,37 +3407,10389,54 +3408,32764,92 +3409,82598,95 +3410,17609,33 +3411,388862,95 +3412,42819,95 +3413,385750,95 +3414,45266,75 +3415,444713,31 +3416,332354,60 +3417,255343,60 +3418,98066,95 +3419,20527,104 +3420,8985,60 +3421,384160,95 +3422,422548,95 +3423,212996,67 +3424,294016,95 +3425,241140,6 +3426,58447,68 +3427,375012,1 +3428,17657,95 +3429,47921,95 +3430,4688,95 +3431,8965,95 +3432,26036,95 +3433,102384,95 +3434,297265,64 +3435,10921,95 +3436,95536,105 +3437,53168,67 +3438,1164,104 +3439,320589,95 +3440,24448,31 +3441,58384,50 +3442,8008,92 +3443,48205,92 +3444,21959,104 +3445,343795,95 +3446,135832,121 +3447,28902,95 +3448,10900,95 +3449,2897,95 +3450,30641,9 +3451,9877,121 +3452,21352,95 +3453,276819,113 +3454,2288,95 +3455,34935,104 +3456,339526,95 +3457,13848,64 +3458,8464,9 +3459,5393,92 +3460,56154,95 +3461,60662,95 +3462,29398,95 +3463,31031,120 +3464,49828,68 +3465,1450,91 +3466,55396,71 +3467,134155,95 +3468,24403,67 +3469,86727,121 +3470,86258,95 +3471,39998,67 +3472,128246,106 +3473,38134,95 +3474,83782,121 +3475,126442,95 +3476,42218,95 +3477,14869,48 +3478,40983,95 +3479,38724,95 +3480,71114,60 +3481,209032,104 +3482,85327,95 +3483,22448,31 +3484,69278,69 +3485,37725,64 +3486,58400,33 +3487,11374,95 +3488,55604,95 +3489,226632,95 +3490,46813,64 +3491,72215,26 +3492,62567,95 +3493,1850,95 +3494,361183,44 +3495,34216,73 +3496,329718,64 +3497,105503,95 +3498,28592,121 +3499,184795,64 +3500,14874,9 +3501,14041,64 +3502,285908,9 +3503,102527,71 +3504,69605,95 +3505,28165,95 +3506,302472,31 +3507,187516,95 +3508,190269,95 +3509,168647,95 +3510,29259,33 +3511,696,95 +3512,18477,64 +3513,122698,95 +3514,11889,9 +3515,55836,121 +3516,30669,95 +3517,38602,64 +3518,102961,95 +3519,94739,95 +3520,370755,95 +3521,11980,95 +3522,209293,9 +3523,3057,95 +3524,129851,33 +3525,333360,64 +3526,206284,95 +3527,53949,95 +3528,15037,95 +3529,259075,60 +3530,437752,95 +3531,13668,95 +3532,34577,104 +3533,44442,121 +3534,76996,113 +3535,137145,59 +3536,41054,95 +3537,2742,9 +3538,101352,1 +3539,49502,64 +3540,301272,33 +3541,118948,95 +3542,21581,9 +3543,122843,64 +3544,158967,95 +3545,77864,31 +3546,82990,95 +3547,21605,64 +3548,48412,95 +3549,67748,113 +3550,42021,121 +3551,253337,95 +3552,119694,95 +3553,397422,95 +3554,39840,78 +3555,227871,95 +3556,30289,95 +3557,1807,95 +3558,185354,8 +3559,44190,95 +3560,56906,95 +3561,20126,33 +3562,241968,60 +3563,7551,95 +3564,17044,64 +3565,422,121 +3566,93511,95 +3567,59935,82 +3568,939,95 +3569,110540,95 +3570,36211,36 +3571,4516,121 +3572,207178,95 +3573,39907,49 +3574,47900,15 +3575,43891,95 +3576,312100,95 +3577,29903,69 +3578,31150,95 +3579,33273,121 +3580,20825,95 +3581,2757,95 +3582,98582,60 +3583,78657,121 +3584,48717,95 +3585,75880,95 +3586,275136,95 +3587,2108,95 +3588,7220,95 +3589,72917,121 +3590,25667,8 +3591,9314,64 +3592,1661,92 +3593,81435,32 +3594,78464,26 +3595,10379,95 +3596,53064,104 +3597,104744,104 +3598,58051,31 +3599,62046,95 +3600,57308,121 +3601,107693,105 +3602,43022,95 +3603,7445,95 +3604,82098,121 +3605,94874,95 +3606,20941,95 +3607,167073,94 +3608,130957,92 +3609,52999,107 +3610,19545,104 +3611,82495,121 +3612,11972,33 +3613,284246,95 +3614,12247,95 +3615,225728,64 +3616,62741,26 +3617,382995,95 +3618,37817,81 +3619,8844,95 +3620,273511,95 +3621,10774,95 +3622,10539,95 +3623,138730,121 +3624,39356,76 +3625,11399,121 +3626,312669,95 +3627,165095,26 +3628,9475,95 +3629,343809,95 +3630,407965,37 +3631,10567,95 +3632,18665,67 +3633,366143,95 +3634,81120,64 +3635,21282,93 +3636,1628,121 +3637,329805,121 +3638,10063,95 +3639,26961,95 +3640,46857,119 +3641,132939,95 +3642,9389,20 +3643,100910,95 +3644,16439,121 +3645,41035,64 +3646,5559,95 +3647,11428,95 +3648,14387,64 +3649,252034,26 +3650,259835,79 +3651,76097,92 +3652,48836,95 +3653,98870,95 +3654,32595,113 +3655,9071,95 +3656,329206,67 +3657,118,95 +3658,72096,95 +3659,136368,49 +3660,53654,95 +3661,13258,121 +3662,12683,95 +3663,19166,64 +3664,289923,95 +3665,140,60 +3666,108822,121 +3667,35032,95 +3668,353257,9 +3669,44502,92 +3670,43384,95 +3671,44527,121 +3672,14539,91 +3673,59678,64 +3674,84056,33 +3675,9655,95 +3676,30844,113 +3677,13678,9 +3678,411013,95 +3679,108017,50 +3680,104810,26 +3681,29911,64 +3682,6341,95 +3683,229134,33 +3684,16090,95 +3685,43751,60 +3686,1969,121 +3687,82654,9 +3688,12538,95 +3689,71067,95 +3690,89008,95 +3691,132705,102 +3692,2830,95 +3693,347807,31 +3694,15904,95 +3695,407887,106 +3696,93562,95 +3697,27973,95 +3698,27259,64 +3699,82469,106 +3700,21711,95 +3701,51212,121 +3702,43649,33 +3703,64868,95 +3704,11159,121 +3705,115929,36 +3706,54236,60 +3707,70554,95 +3708,54715,95 +3709,76411,95 +3710,95015,95 +3711,181574,95 +3712,118984,113 +3713,173294,64 +3714,283384,95 +3715,270851,95 +3716,10708,95 +3717,321303,119 +3718,10929,95 +3719,14751,49 +3720,242,33 +3721,572,93 +3722,286971,95 +3723,59981,95 +3724,39347,31 +3725,77664,95 +3726,83361,95 +3727,86254,95 +3728,104376,26 +3729,29204,95 +3730,103972,93 +3731,47959,121 +3732,31417,33 +3733,343283,50 +3734,47886,33 +3735,51036,95 +3736,37189,121 +3737,28682,33 +3738,359483,92 +3739,263115,95 +3740,44081,1 +3741,40925,95 +3742,216363,104 +3743,300596,60 +3744,17386,95 +3745,56807,62 +3746,30547,95 +3747,112961,95 +3748,166262,33 +3749,31161,104 +3750,219247,95 +3751,29372,102 +3752,37291,95 +3753,64972,95 +3754,367147,95 +3755,24831,95 +3756,2966,95 +3757,70821,9 +3758,50761,64 +3759,28668,95 +3760,142946,95 +3761,4024,33 +3762,63486,104 +3763,45576,91 +3764,13517,121 +3765,305342,95 +3766,36258,95 +3767,12106,104 +3768,28212,121 +3769,62688,26 +3770,10096,95 +3771,389614,50 +3772,402446,95 +3773,445916,95 +3774,142770,26 +3775,24986,91 +3776,64190,121 +3777,47171,113 +3778,18897,44 +3779,412209,95 +3780,262958,94 +3781,159638,95 +3782,369885,64 +3783,2172,57 +3784,68139,64 +3785,18694,95 +3786,134209,1 +3787,390357,36 +3788,245597,106 +3789,435821,106 +3790,33124,31 +3791,67367,121 +3792,15677,64 +3793,121749,16 +3794,240881,95 +3795,407559,95 +3796,192133,64 +3797,59199,95 +3798,56858,93 +3799,25695,106 +3800,213095,68 +3801,18917,64 +3802,14705,31 +3803,206563,81 +3804,4893,64 +3805,44693,95 +3806,51945,121 +3807,1926,102 +3808,25796,95 +3809,175334,95 +3810,154575,8 +3811,53573,95 +3812,18477,95 +3813,115276,64 +3814,54102,95 +3815,84569,95 +3816,43434,121 +3817,411741,95 +3818,110323,121 +3819,74779,54 +3820,13569,8 +3821,10351,95 +3822,51311,82 +3823,12449,121 +3824,98349,92 +3825,402446,9 +3826,1966,121 +3827,70981,95 +3828,39123,104 +3829,377447,91 +3830,82313,95 +3831,15213,95 +3832,74199,48 +3833,52920,8 +3834,22855,95 +3835,187442,97 +3836,48778,121 +3837,325712,95 +3838,41478,95 +3839,82157,92 +3840,40709,26 +3841,44022,95 +3842,74192,60 +3843,38982,95 +3844,1452,95 +3845,182843,33 +3846,43155,95 +3847,47942,95 +3848,8368,64 +3849,46492,104 +3850,24657,121 +3851,84831,95 +3852,315850,95 +3853,69899,26 +3854,173865,71 +3855,170279,95 +3856,193387,95 +3857,31165,121 +3858,135832,94 +3859,237756,113 +3860,186630,69 +3861,449131,26 +3862,27925,26 +3863,211579,106 +3864,287628,35 +3865,49508,95 +3866,86369,36 +3867,33253,49 +3868,12764,95 +3869,43407,104 +3870,34469,95 +3871,10986,33 +3872,77964,95 +3873,5155,33 +3874,17303,76 +3875,3144,64 +3876,31324,95 +3877,43806,95 +3878,244534,95 +3879,146712,95 +3880,303281,31 +3881,32825,95 +3882,65367,95 +3883,42966,31 +3884,156220,121 +3885,290555,121 +3886,132601,106 +3887,86956,64 +3888,2259,105 +3889,655,95 +3890,73873,64 +3891,116303,104 +3892,78572,121 +3893,331642,60 +3894,38775,95 +3895,65002,92 +3896,188765,121 +3897,200481,95 +3898,10796,95 +3899,33511,64 +3900,382951,95 +3901,16249,95 +3902,30363,60 +3903,14873,95 +3904,58732,95 +3905,125736,95 +3906,84508,104 +3907,201223,104 +3908,25006,95 +3909,13411,95 +3910,70006,95 +3911,37181,1 +3912,17464,95 +3913,300601,60 +3914,393407,121 +3915,3682,95 +3916,84425,33 +3917,369019,64 +3918,31244,95 +3919,332872,60 +3920,62616,26 +3921,25738,95 +3922,16047,93 +3923,207641,120 +3924,201124,71 +3925,314388,91 +3926,9540,9 +3927,15457,121 +3928,33065,26 +3929,27085,95 +3930,10204,94 +3931,29368,64 +3932,11907,92 +3933,241927,9 +3934,26180,95 +3935,271164,95 +3936,105991,91 +3937,60505,95 +3938,3173,49 +3939,36926,95 +3940,158900,50 +3941,31146,104 +3942,104376,121 +3943,47794,9 +3944,4982,64 +3945,108869,95 +3946,100270,60 +3947,24810,92 +3948,375012,100 +3949,8985,93 +3950,107916,60 +3951,173467,95 +3952,19625,31 +3953,204765,121 +3954,72419,92 +3955,12573,64 +3956,15073,60 +3957,539,95 +3958,20312,95 +3959,358901,65 +3960,402536,121 +3961,345915,95 +3962,90406,95 +3963,403570,113 +3964,118497,48 +3965,19157,95 +3966,195,95 +3967,1966,33 +3968,21533,95 +3969,295058,33 +3970,67102,26 +3971,42062,95 +3972,68347,9 +3973,11376,92 +3974,63493,92 +3975,20558,95 +3976,32043,95 +3977,293189,6 +3978,379335,71 +3979,356326,93 +3980,322317,119 +3981,29128,121 +3982,177047,95 +3983,25969,95 +3984,8985,44 +3985,121674,64 +3986,42441,33 +3987,53128,21 +3988,99329,7 +3989,31555,95 +3990,29116,95 +3991,3476,33 +3992,42521,95 +3993,23957,95 +3994,48231,64 +3995,185291,95 +3996,245891,91 +3997,445602,95 +3998,416445,95 +3999,347835,95 +4000,49688,109 +4001,79995,64 +4002,85543,109 +4003,25936,26 +4004,374460,64 +4005,277713,64 +4006,281291,121 +4007,27916,95 +4008,48770,64 +4009,183662,95 +4010,157384,19 +4011,30982,95 +4012,13442,95 +4013,91390,64 +4014,339403,64 +4015,22317,113 +4016,8088,60 +4017,351065,81 +4018,10950,95 +4019,13849,64 +4020,110416,121 +4021,78231,64 +4022,54555,106 +4023,122221,64 +4024,90465,95 +4025,14262,95 +4026,41469,95 +4027,36194,64 +4028,40693,95 +4029,15022,95 +4030,413198,91 +4031,24757,9 +4032,623,95 +4033,121688,26 +4034,68004,95 +4035,90590,95 +4036,83897,105 +4037,30995,95 +4038,44536,64 +4039,38951,95 +4040,85424,119 +4041,20123,64 +4042,29705,64 +4043,73723,95 +4044,338438,121 +4045,62301,104 +4046,304613,113 +4047,92285,9 +4048,9389,64 +4049,13654,95 +4050,63938,71 +4051,41097,95 +4052,44869,95 +4053,79580,26 +4054,9396,95 +4055,53514,106 +4056,63224,121 +4057,17238,64 +4058,31919,95 +4059,26873,26 +4060,26941,95 +4061,43241,95 +4062,11972,121 +4063,72574,95 +4064,376538,104 +4065,277934,68 +4066,192675,31 +4067,9890,95 +4068,30934,64 +4069,187252,121 +4070,436340,92 +4071,84060,33 +4072,93891,104 +4073,94551,95 +4074,19552,121 +4075,214081,44 +4076,83782,33 +4077,57996,33 +4078,257444,95 +4079,146679,95 +4080,290999,113 +4081,14369,95 +4082,99229,64 +4083,381008,95 +4084,435366,106 +4085,8916,95 +4086,23367,95 +4087,94336,92 +4088,215928,95 +4089,369820,95 +4090,46029,95 +4091,79779,102 +4092,19082,64 +4093,82469,49 +4094,262786,33 +4095,1717,95 +4096,17669,9 +4097,253154,95 +4098,153397,64 +4099,78563,121 +4100,35908,95 +4101,39979,33 +4102,8342,64 +4103,59735,64 +4104,4140,64 +4105,395767,121 +4106,424488,95 +4107,75564,95 +4108,18178,85 +4109,29542,95 +4110,10475,57 +4111,313628,106 +4112,270774,91 +4113,24624,78 +4114,188765,62 +4115,19237,95 +4116,119801,95 +4117,271677,31 +4118,264555,95 +4119,11930,92 +4120,298,95 +4121,86603,95 +4122,30876,33 +4123,31011,44 +4124,411081,9 +4125,18133,95 +4126,127560,64 +4127,11677,92 +4128,38107,95 +4129,57011,104 +4130,37126,64 +4131,747,121 +4132,298040,8 +4133,15749,92 +4134,7233,95 +4135,62213,113 +4136,77585,95 +4137,246741,76 +4138,237796,60 +4139,13823,64 +4140,63831,121 +4141,37083,95 +4142,378485,121 +4143,18040,95 +4144,293122,55 +4145,41073,64 +4146,43550,64 +4147,55853,121 +4148,174720,26 +4149,87204,50 +4150,49308,104 +4151,7549,67 +4152,118180,106 +4153,60807,31 +4154,34615,120 +4155,134475,95 +4156,9778,95 +4157,381691,31 +4158,458808,69 +4159,99599,73 +4160,5279,92 +4161,76203,95 +4162,239103,121 +4163,72465,44 +4164,429174,121 +4165,9585,95 +4166,43209,49 +4167,295058,39 +4168,13318,57 +4169,74753,64 +4170,233423,9 +4171,46986,92 +4172,302960,95 +4173,294047,95 +4174,298787,31 +4175,8948,92 +4176,140470,95 +4177,16487,95 +4178,68716,95 +4179,27561,9 +4180,239103,8 +4181,322518,9 +4182,45725,95 +4183,63401,121 +4184,325385,104 +4185,35632,92 +4186,11129,64 +4187,14555,121 +4188,333354,95 +4189,71266,95 +4190,261207,95 +4191,150065,95 +4192,326285,67 +4193,126889,64 +4194,315846,104 +4195,29638,95 +4196,138522,121 +4197,72032,121 +4198,135686,95 +4199,169869,95 +4200,9664,64 +4201,13004,95 +4202,309809,121 +4203,345775,121 +4204,109979,33 +4205,30363,121 +4206,205584,95 +4207,206657,92 +4208,119010,95 +4209,2734,95 +4210,9059,95 +4211,112885,95 +4212,9076,92 +4213,167935,80 +4214,125344,92 +4215,29376,95 +4216,120605,95 +4217,256916,69 +4218,339148,67 +4219,28295,95 +4220,153717,82 +4221,38048,95 +4222,340488,102 +4223,112558,95 +4224,123777,95 +4225,44458,110 +4226,414632,95 +4227,79781,95 +4228,276123,18 +4229,35337,64 +4230,10671,95 +4231,21893,64 +4232,230179,64 +4233,18317,64 +4234,9717,95 +4235,8617,95 +4236,38310,33 +4237,14050,95 +4238,224282,95 +4239,259695,95 +4240,132332,121 +4241,49974,121 +4242,163870,104 +4243,12432,33 +4244,36264,8 +4245,137321,95 +4246,14558,8 +4247,65718,33 +4248,59726,64 +4249,43419,95 +4250,54662,95 +4251,1924,64 +4252,201633,64 +4253,43093,95 +4254,47144,21 +4255,4953,95 +4256,94659,104 +4257,143946,104 +4258,9899,95 +4259,116351,121 +4260,259835,33 +4261,35263,8 +4262,76684,31 +4263,1247,95 +4264,103396,92 +4265,8932,60 +4266,353879,31 +4267,24709,9 +4268,69428,31 +4269,51939,95 +4270,69346,31 +4271,2669,64 +4272,17317,95 +4273,9771,95 +4274,153165,95 +4275,39840,50 +4276,287628,64 +4277,178385,95 +4278,16666,95 +4279,53714,64 +4280,49653,26 +4281,4809,95 +4282,219572,67 +4283,9028,33 +4284,4931,95 +4285,220674,64 +4286,28969,95 +4287,29136,9 +4288,157409,109 +4289,440597,9 +4290,137217,9 +4291,39127,92 +4292,257447,9 +4293,127468,69 +4294,46193,95 +4295,28480,92 +4296,65509,95 +4297,174946,95 +4298,20941,3 +4299,46924,64 +4300,259728,98 +4301,16239,95 +4302,452606,68 +4303,10020,95 +4304,48153,33 +4305,11706,33 +4306,333884,33 +4307,176627,95 +4308,18620,95 +4309,392271,31 +4310,284048,60 +4311,267931,95 +4312,319396,95 +4313,44502,121 +4314,294690,95 +4315,1773,95 +4316,2071,95 +4317,66893,33 +4318,341886,95 +4319,10484,121 +4320,2771,95 +4321,30308,95 +4322,157847,95 +4323,156597,9 +4324,16551,95 +4325,43083,118 +4326,8852,95 +4327,71393,26 +4328,2085,95 +4329,95136,95 +4330,2977,95 +4331,256421,95 +4332,395883,64 +4333,2486,37 +4334,105539,95 +4335,245906,95 +4336,121636,95 +4337,34052,95 +4338,302666,95 +4339,183171,95 +4340,17216,95 +4341,239562,95 +4342,249021,95 +4343,314635,92 +4344,83185,81 +4345,91548,95 +4346,108665,67 +4347,94251,95 +4348,317,66 +4349,16096,95 +4350,94820,91 +4351,81684,64 +4352,51994,64 +4353,64225,121 +4354,186630,33 +4355,65887,33 +4356,11122,82 +4357,14818,49 +4358,41054,33 +4359,31605,95 +4360,62463,64 +4361,77949,64 +4362,4307,60 +4363,73690,95 +4364,9503,60 +4365,15379,95 +4366,14372,95 +4367,18613,21 +4368,58611,33 +4369,112244,104 +4370,195867,95 +4371,145247,50 +4372,39103,104 +4373,9803,92 +4374,75229,57 +4375,18683,95 +4376,76341,95 +4377,298722,33 +4378,10550,92 +4379,203351,95 +4380,51549,104 +4381,31548,95 +4382,11055,92 +4383,12631,92 +4384,243934,44 +4385,326285,95 +4386,327935,68 +4387,174958,92 +4388,31011,121 +4389,22602,95 +4390,92657,95 +4391,28997,64 +4392,278458,33 +4393,295602,71 +4394,262338,95 +4395,6687,114 +4396,18613,9 +4397,39102,104 +4398,49060,64 +4399,248376,67 +4400,27622,95 +4401,329718,121 +4402,129542,92 +4403,63584,26 +4404,18143,104 +4405,38433,95 +4406,199615,37 +4407,343140,91 +4408,11636,67 +4409,150208,71 +4410,204922,50 +4411,98536,95 +4412,30778,95 +4413,330171,33 +4414,169758,93 +4415,1282,95 +4416,48204,95 +4417,88075,95 +4418,56135,95 +4419,82708,82 +4420,24625,95 +4421,96935,121 +4422,267506,64 +4423,81708,68 +4424,406449,8 +4425,81346,60 +4426,16550,95 +4427,127257,60 +4428,54563,121 +4429,148622,26 +4430,3595,95 +4431,145963,95 +4432,48243,57 +4433,115054,95 +4434,62675,121 +4435,259395,95 +4436,120588,95 +4437,24005,95 +4438,57597,95 +4439,167583,33 +4440,63859,95 +4441,5332,95 +4442,215741,33 +4443,79935,95 +4444,265226,33 +4445,11983,95 +4446,17845,44 +4447,172972,67 +4448,150736,121 +4449,18374,106 +4450,270336,68 +4451,69765,9 +4452,23964,95 +4453,79707,104 +4454,76297,95 +4455,217648,33 +4456,70747,92 +4457,63612,60 +4458,56815,109 +4459,18045,9 +4460,638,95 +4461,11618,95 +4462,198652,64 +4463,21571,31 +4464,241982,121 +4465,218582,95 +4466,43778,116 +4467,26142,95 +4468,10458,92 +4469,54156,92 +4470,62732,26 +4471,29144,95 +4472,59349,121 +4473,16439,92 +4474,13689,95 +4475,82448,93 +4476,46891,95 +4477,320179,95 +4478,35826,95 +4479,75145,95 +4480,44087,64 +4481,831,95 +4482,54752,95 +4483,294483,92 +4484,19403,95 +4485,14,95 +4486,68737,91 +4487,11975,95 +4488,32904,64 +4489,2998,95 +4490,13576,95 +4491,25988,95 +4492,14123,95 +4493,176321,92 +4494,371459,66 +4495,328429,95 +4496,37339,104 +4497,18178,118 +4498,10521,95 +4499,130993,64 +4500,330431,31 +4501,55700,105 +4502,200727,95 +4503,19528,67 +4504,65646,121 +4505,43119,95 +4506,1926,64 +4507,270759,106 +4508,118150,92 +4509,61049,95 +4510,52808,33 +4511,259997,95 +4512,258947,36 +4513,28656,92 +4514,64605,95 +4515,4257,95 +4516,259616,92 +4517,72678,121 +4518,441043,121 +4519,19277,95 +4520,153,95 +4521,353979,60 +4522,18015,120 +4523,84720,95 +4524,384682,95 +4525,378227,31 +4526,58692,92 +4527,199851,69 +4528,34623,95 +4529,46403,31 +4530,400610,44 +4531,114333,60 +4532,13788,95 +4533,189888,95 +4534,24272,64 +4535,7229,121 +4536,1825,95 +4537,264553,9 +4538,64362,121 +4539,391004,104 +4540,11639,95 +4541,285858,9 +4542,121725,104 +4543,435707,60 +4544,317,98 +4545,145220,95 +4546,281968,121 +4547,38526,49 +4548,50329,95 +4549,71147,95 +4550,11509,95 +4551,183039,64 +4552,125344,121 +4553,122192,121 +4554,88059,71 +4555,248268,95 +4556,11899,95 +4557,34995,95 +4558,77022,95 +4559,42418,95 +4560,259830,64 +4561,37055,64 +4562,8272,95 +4563,11361,95 +4564,32059,95 +4565,262,95 +4566,9968,76 +4567,305455,121 +4568,52741,95 +4569,71670,95 +4570,90395,95 +4571,43464,95 +4572,23331,95 +4573,58428,95 +4574,126560,68 +4575,38931,95 +4576,46915,64 +4577,211059,92 +4578,182035,95 +4579,64156,91 +4580,28071,60 +4581,44388,95 +4582,9607,95 +4583,228968,44 +4584,42448,95 +4585,46738,9 +4586,331958,21 +4587,18990,64 +4588,17136,95 +4589,309929,121 +4590,51267,26 +4591,403593,95 +4592,127091,121 +4593,132150,10 +4594,26880,14 +4595,115023,92 +4596,18932,95 +4597,66597,95 +4598,8070,121 +4599,44486,92 +4600,47739,95 +4601,147106,95 +4602,57965,33 +4603,16235,102 +4604,41164,95 +4605,158947,15 +4606,47200,26 +4607,77068,95 +4608,16373,95 +4609,115223,104 +4610,9753,64 +4611,13777,113 +4612,29952,60 +4613,49577,26 +4614,60547,95 +4615,25403,33 +4616,31299,64 +4617,70815,81 +4618,164504,95 +4619,302042,9 +4620,146380,95 +4621,321497,97 +4622,283701,92 +4623,76229,95 +4624,333360,33 +4625,21866,95 +4626,28032,94 +4627,157843,23 +4628,44519,31 +4629,325385,109 +4630,20123,66 +4631,291558,95 +4632,178341,95 +4633,333360,95 +4634,47046,121 +4635,352890,95 +4636,9425,95 +4637,20718,95 +4638,128841,64 +4639,45167,120 +4640,46069,104 +4641,28466,95 +4642,386100,92 +4643,34181,93 +4644,810,95 +4645,56344,92 +4646,463800,9 +4647,34560,95 +4648,51802,95 +4649,17175,95 +4650,22494,64 +4651,18312,95 +4652,5237,95 +4653,16800,95 +4654,21583,95 +4655,57889,26 +4656,40807,95 +4657,12696,92 +4658,69828,95 +4659,36807,95 +4660,96132,121 +4661,41760,95 +4662,143092,95 +4663,601,95 +4664,66113,113 +4665,14076,64 +4666,257534,16 +4667,40879,95 +4668,25674,95 +4669,235662,95 +4670,43113,104 +4671,159095,64 +4672,16358,95 +4673,61541,95 +4674,29568,60 +4675,71689,95 +4676,209251,60 +4677,141603,31 +4678,82501,64 +4679,285946,95 +4680,352199,33 +4681,3291,95 +4682,164558,95 +4683,36992,95 +4684,20941,102 +4685,47694,67 +4686,11216,33 +4687,9099,95 +4688,19587,95 +4689,91583,64 +4690,21024,95 +4691,84636,121 +4692,3638,95 +4693,126083,95 +4694,27834,33 +4695,299165,60 +4696,370213,107 +4697,53805,33 +4698,10803,95 +4699,103012,120 +4700,8341,121 +4701,114108,121 +4702,29343,95 +4703,29020,95 +4704,59572,64 +4705,194393,95 +4706,44510,95 +4707,27904,121 +4708,26661,95 +4709,99861,95 +4710,63578,64 +4711,33588,95 +4712,71503,9 +4713,18598,95 +4714,7340,95 +4715,37254,95 +4716,375366,64 +4717,352694,104 +4718,18927,92 +4719,14538,106 +4720,7006,95 +4721,38749,95 +4722,161880,95 +4723,25653,121 +4724,93828,95 +4725,65044,73 +4726,84479,44 +4727,86980,50 +4728,49853,27 +4729,32836,95 +4730,205891,95 +4731,70122,119 +4732,7343,81 +4733,67633,6 +4734,124075,92 +4735,69152,33 +4736,244268,21 +4737,73208,64 +4738,17654,95 +4739,98125,95 +4740,280617,95 +4741,26301,95 +4742,359746,121 +4743,16371,106 +4744,190955,121 +4745,42553,95 +4746,73043,104 +4747,8588,92 +4748,1724,95 +4749,11185,95 +4750,37308,95 +4751,379,95 +4752,327749,95 +4753,76333,60 +4754,317,82 +4755,129553,95 +4756,45938,64 +4757,14254,9 +4758,33689,95 +4759,27904,49 +4760,17057,95 +4761,116894,9 +4762,16077,64 +4763,271039,95 +4764,244580,95 +4765,24822,106 +4766,288313,33 +4767,314371,8 +4768,75001,33 +4769,2105,95 +4770,83865,26 +4771,43407,95 +4772,84577,95 +4773,162006,104 +4774,3048,64 +4775,410259,95 +4776,238,95 +4777,151911,95 +4778,64942,95 +4779,62143,64 +4780,78568,121 +4781,40387,64 +4782,367006,121 +4783,444193,95 +4784,279608,104 +4785,20411,118 +4786,185156,95 +4787,14411,95 +4788,100088,95 +4789,14076,95 +4790,75969,92 +4791,66949,33 +4792,96118,50 +4793,18704,106 +4794,128241,64 +4795,320005,26 +4796,28851,95 +4797,41556,95 +4798,8985,33 +4799,55420,95 +4800,47559,95 +4801,52358,95 +4802,262841,95 +4803,15468,121 +4804,391642,104 +4805,13549,33 +4806,32049,95 +4807,5332,64 +4808,49158,33 +4809,8470,95 +4810,85549,69 +4811,13986,31 +4812,123025,95 +4813,26326,95 +4814,236317,68 +4815,237799,121 +4816,51406,9 +4817,79728,21 +4818,110416,20 +4819,24657,50 +4820,10139,95 +4821,208579,75 +4822,49514,67 +4823,42260,92 +4824,1655,92 +4825,25126,94 +4826,36288,95 +4827,141,95 +4828,261101,102 +4829,2107,95 +4830,32234,104 +4831,88478,113 +4832,7837,95 +4833,357130,95 +4834,29100,95 +4835,139176,95 +4836,8888,92 +4837,94182,95 +4838,81463,60 +4839,27034,95 +4840,8985,36 +4841,15148,95 +4842,411221,60 +4843,32044,95 +4844,285840,9 +4845,206237,92 +4846,114514,95 +4847,50549,95 +4848,325039,95 +4849,258751,60 +4850,8281,121 +4851,13075,95 +4852,17711,95 +4853,45384,104 +4854,56292,95 +4855,366249,71 +4856,90228,121 +4857,6980,95 +4858,279606,95 +4859,72592,104 +4860,39936,8 +4861,64882,106 +4862,45527,9 +4863,54093,64 +4864,84284,36 +4865,2734,33 +4866,73952,113 +4867,18698,95 +4868,40633,95 +4869,27573,95 +4870,40993,37 +4871,43228,95 +4872,14554,95 +4873,1926,121 +4874,122487,92 +4875,18493,9 +4876,87302,95 +4877,47099,121 +4878,288668,95 +4879,354979,95 +4880,105210,104 +4881,65603,95 +4882,103850,95 +4883,11899,64 +4884,246218,95 +4885,368006,31 +4886,5881,64 +4887,3050,95 +4888,119569,95 +4889,66881,95 +4890,167,95 +4891,66741,95 +4892,139455,95 +4893,288952,95 +4894,114577,95 +4895,9820,95 +4896,164954,95 +4897,30708,95 +4898,112503,33 +4899,72313,95 +4900,450875,95 +4901,440777,95 +4902,345519,95 +4903,15601,95 +4904,120303,102 +4905,266425,95 +4906,229297,95 +4907,18897,33 +4908,64936,95 +4909,464819,95 +4910,159810,92 +4911,258147,9 +4912,294640,37 +4913,49940,50 +4914,89756,9 +4915,424600,95 +4916,62768,9 +4917,1984,64 +4918,83079,60 +4919,200324,95 +4920,70500,64 +4921,242224,9 +4922,380058,95 +4923,9716,95 +4924,241639,91 +4925,146341,95 +4926,180299,17 +4927,322614,60 +4928,282069,104 +4929,20438,95 +4930,94570,95 +4931,8842,95 +4932,112531,8 +4933,51370,95 +4934,23967,64 +4935,71866,95 +4936,399810,95 +4937,114172,71 +4938,1956,69 +4939,12637,95 +4940,401164,95 +4941,20934,26 +4942,13653,60 +4943,400,95 +4944,74585,95 +4945,13653,121 +4946,3035,95 +4947,112304,95 +4948,356500,120 +4949,26603,95 +4950,103620,121 +4951,45303,67 +4952,39148,104 +4953,84727,95 +4954,264525,102 +4955,284135,106 +4956,47201,64 +4957,27372,104 +4958,84617,95 +4959,180418,60 +4960,36635,95 +4961,138522,114 +4962,175027,95 +4963,97797,26 +4964,35008,121 +4965,82696,95 +4966,10475,50 +4967,109491,95 +4968,270469,26 +4969,84352,64 +4970,69019,95 +4971,10761,64 +4972,11930,20 +4973,47559,74 +4974,258947,64 +4975,93114,92 +4976,59961,95 +4977,120872,95 +4978,31503,95 +4979,80771,95 +4980,23128,95 +4981,488,64 +4982,14372,33 +4983,101838,60 +4984,308639,95 +4985,71630,9 +4986,10747,95 +4987,9982,95 +4988,46623,95 +4989,10344,95 +4990,275696,95 +4991,31127,95 +4992,8316,95 +4993,26962,118 +4994,166621,95 +4995,128237,69 +4996,359412,9 +4997,126550,95 +4998,36773,95 +4999,294819,33 +5000,8869,95 +5001,113255,92 +5002,211220,9 +5003,40465,92 +5004,57458,64 +5005,17687,95 +5006,43459,102 +5007,31304,50 +5008,242097,95 +5009,407531,95 +5010,81477,75 +5011,14761,95 +5012,254575,9 +5013,128612,95 +5014,9428,95 +5015,276220,7 +5016,84425,9 +5017,285181,57 +5018,76380,50 +5019,9828,95 +5020,16080,95 +5021,38322,95 +5022,74705,26 +5023,306966,95 +5024,26861,95 +5025,120457,33 +5026,88518,75 +5027,160329,95 +5028,192023,95 +5029,102272,92 +5030,138502,44 +5031,50387,36 +5032,264569,95 +5033,296626,95 +5034,3085,95 +5035,40029,67 +5036,422906,95 +5037,38546,95 +5038,102913,57 +5039,44634,95 +5040,62297,36 +5041,38417,95 +5042,206514,64 +5043,318973,95 +5044,20718,121 +5045,47778,21 +5046,24886,95 +5047,2034,95 +5048,11516,92 +5049,34518,95 +5050,2197,44 +5051,404567,60 +5052,209413,33 +5053,352197,95 +5054,88811,73 +5055,106821,95 +5056,335819,26 +5057,347945,95 +5058,2929,95 +5059,87827,95 +5060,403330,95 +5061,152611,60 +5062,351065,9 +5063,43812,95 +5064,414977,95 +5065,370264,48 +5066,43049,95 +5067,62855,104 +5068,121154,64 +5069,270383,9 +5070,50196,33 +5071,47144,121 +5072,1568,121 +5073,463906,95 +5074,45452,67 +5075,390296,95 +5076,25643,64 +5077,287483,4 +5078,5289,95 +5079,88557,104 +5080,59147,33 +5081,105548,95 +5082,125257,104 +5083,293982,8 +5084,322487,9 +5085,33336,60 +5086,11004,95 +5087,285848,9 +5088,21567,31 +5089,14819,95 +5090,33668,95 +5091,24392,113 +5092,621,95 +5093,18671,95 +5094,13358,9 +5095,196789,95 +5096,45512,95 +5097,83666,95 +5098,107073,8 +5099,365065,60 +5100,8556,92 +5101,26914,95 +5102,120172,4 +5103,17606,64 +5104,54898,121 +5105,21843,71 +5106,52264,44 +5107,170234,95 +5108,377516,64 +5109,1404,33 +5110,218898,31 +5111,38715,95 +5112,107705,26 +5113,42604,95 +5114,336655,87 +5115,2994,33 +5116,58133,92 +5117,53358,9 +5118,65002,121 +5119,24756,95 +5120,11888,9 +5121,35626,95 +5122,310568,114 +5123,261037,95 +5124,354128,91 +5125,9736,121 +5126,24749,95 +5127,4497,102 +5128,46697,95 +5129,144651,92 +5130,10011,95 +5131,145481,60 +5132,437122,64 +5133,68004,67 +5134,74822,121 +5135,163111,95 +5136,154442,104 +5137,109886,95 +5138,39129,95 +5139,9396,113 +5140,210913,82 +5141,165159,33 +5142,220514,95 +5143,146730,95 +5144,185273,95 +5145,439998,33 +5146,1273,95 +5147,158990,95 +5148,11635,95 +5149,23750,64 +5150,15497,95 +5151,51947,94 +5152,3941,95 +5153,84449,95 +5154,227348,95 +5155,349441,9 +5156,9877,95 +5157,64304,67 +5158,51049,95 +5159,20132,31 +5160,408509,121 +5161,2291,95 +5162,43850,64 +5163,26889,95 +5164,26687,49 +5165,333103,95 +5166,41283,95 +5167,106020,64 +5168,48935,33 +5169,115810,102 +5170,44773,95 +5171,10475,95 +5172,13185,64 +5173,41166,95 +5174,356483,95 +5175,210126,9 +5176,31417,121 +5177,215016,95 +5178,26670,95 +5179,3484,95 +5180,26533,95 +5181,108822,44 +5182,45714,64 +5183,177677,91 +5184,5393,95 +5185,224233,81 +5186,108972,106 +5187,65787,95 +5188,271185,95 +5189,54503,73 +5190,50722,92 +5191,24554,95 +5192,200,95 +5193,30675,95 +5194,122192,33 +5195,331161,95 +5196,6972,95 +5197,28438,95 +5198,2687,121 +5199,62297,44 +5200,32489,95 +5201,126516,104 +5202,77165,33 +5203,18692,95 +5204,19846,113 +5205,9918,95 +5206,99738,121 +5207,286595,121 +5208,15653,95 +5209,12516,95 +5210,137381,9 +5211,53883,31 +5212,184402,92 +5213,13493,95 +5214,20003,95 +5215,17630,121 +5216,41028,95 +5217,197725,95 +5218,18283,95 +5219,7014,121 +5220,128120,121 +5221,44552,50 +5222,54523,33 +5223,118098,64 +5224,288526,21 +5225,10837,121 +5226,19215,95 +5227,217923,91 +5228,136743,85 +5229,17780,37 +5230,166393,64 +5231,287628,65 +5232,634,94 +5233,87229,14 +5234,20153,95 +5235,33839,95 +5236,159810,60 +5237,76170,64 +5238,46931,26 +5239,104522,26 +5240,34651,95 +5241,9080,95 +5242,6023,95 +5243,140825,33 +5244,8776,37 +5245,53648,33 +5246,31428,95 +5247,267852,9 +5248,264644,9 +5249,207850,95 +5250,19176,95 +5251,137200,91 +5252,105991,121 +5253,222216,91 +5254,87343,95 +5255,11475,50 +5256,1404,44 +5257,59935,121 +5258,37315,95 +5259,28859,95 +5260,307479,9 +5261,20640,95 +5262,83223,33 +5263,199887,95 +5264,32648,48 +5265,8471,64 +5266,15873,95 +5267,52045,121 +5268,13610,9 +5269,25707,95 +5270,4982,95 +5271,1922,92 +5272,29108,64 +5273,293085,71 +5274,339669,113 +5275,146926,95 +5276,2125,95 +5277,290235,95 +5278,7980,76 +5279,17974,121 +5280,192137,95 +5281,62394,9 +5282,395914,55 +5283,94525,104 +5284,16441,95 +5285,45772,64 +5286,20034,64 +5287,187022,91 +5288,28171,121 +5289,59726,94 +5290,15981,104 +5291,15797,95 +5292,36527,113 +5293,219335,71 +5294,5289,64 +5295,19809,95 +5296,51890,104 +5297,108535,92 +5298,50512,95 +5299,297814,95 +5300,17681,95 +5301,15486,113 +5302,75892,95 +5303,336484,26 +5304,202941,95 +5305,412851,16 +5306,72898,33 +5307,116733,26 +5308,135799,104 +5309,37368,102 +5310,52850,64 +5311,30202,64 +5312,24411,95 +5313,147773,95 +5314,143883,26 +5315,145760,26 +5316,14886,95 +5317,61267,121 +5318,75066,121 +5319,205864,21 +5320,240832,95 +5321,108222,95 +5322,78373,95 +5323,128154,4 +5324,29338,60 +5325,173662,95 +5326,29979,95 +5327,78174,121 +5328,40466,95 +5329,44115,64 +5330,135204,119 +5331,365323,21 +5332,16092,69 +5333,31561,64 +5334,20846,9 +5335,57829,8 +5336,185154,64 +5337,14400,121 +5338,18530,121 +5339,81225,82 +5340,47120,82 +5341,115782,95 +5342,17240,95 +5343,80350,95 +5344,16162,95 +5345,31162,26 +5346,32332,95 +5347,299,95 +5348,114155,64 +5349,244403,95 +5350,141971,71 +5351,375355,64 +5352,42599,64 +5353,51999,64 +5354,298158,95 +5355,28026,95 +5356,134782,71 +5357,114377,95 +5358,159474,33 +5359,22007,95 +5360,9495,95 +5361,132426,64 +5362,55608,118 +5363,311301,121 +5364,17771,92 +5365,72460,95 +5366,29272,21 +5367,43440,95 +5368,14137,95 +5369,16997,95 +5370,41115,69 +5371,16899,9 +5372,4266,44 +5373,41578,95 +5374,118444,95 +5375,182129,64 +5376,10025,95 +5377,11837,64 +5378,23830,95 +5379,117251,95 +5380,62363,121 +5381,70051,95 +5382,47588,21 +5383,31985,95 +5384,353326,95 +5385,17770,95 +5386,834,95 +5387,199985,33 +5388,11813,33 +5389,64483,26 +5390,80988,21 +5391,7916,92 +5392,121640,4 +5393,21135,33 +5394,182127,91 +5395,31473,95 +5396,142145,95 +5397,252680,95 +5398,155605,104 +5399,10395,95 +5400,225728,121 +5401,365942,95 +5402,40761,95 +5403,96132,95 +5404,50849,33 +5405,83540,94 +5406,133704,95 +5407,44932,95 +5408,339116,95 +5409,265717,33 +5410,203072,71 +5411,204007,60 +5412,42648,95 +5413,383618,36 +5414,85984,95 +5415,3064,95 +5416,242131,95 +5417,3037,92 +5418,154671,50 +5419,36402,8 +5420,42725,95 +5421,142106,95 +5422,47115,95 +5423,3102,26 +5424,39436,33 +5425,8929,44 +5426,253794,95 +5427,35177,95 +5428,42457,64 +5429,119172,104 +5430,27543,95 +5431,5881,78 +5432,385261,106 +5433,356752,95 +5434,336804,121 +5435,40804,64 +5436,369033,95 +5437,76681,95 +5438,88271,104 +5439,15264,95 +5440,5425,33 +5441,1726,95 +5442,33570,95 +5443,48706,95 +5444,121824,95 +5445,90762,85 +5446,70747,121 +5447,29067,95 +5448,153717,92 +5449,4983,95 +5450,16996,95 +5451,17100,9 +5452,3962,92 +5453,55192,104 +5454,91961,95 +5455,73348,95 +5456,238302,95 +5457,25528,95 +5458,185153,64 +5459,47792,64 +5460,139519,95 +5461,89242,64 +5462,21905,31 +5463,70587,95 +5464,47226,77 +5465,13993,95 +5466,1272,95 +5467,10674,95 +5468,9464,95 +5469,198663,95 +5470,104041,95 +5471,5544,104 +5472,72279,121 +5473,1912,92 +5474,292062,95 +5475,40229,95 +5476,691,64 +5477,419601,26 +5478,241739,95 +5479,84060,95 +5480,40368,95 +5481,15944,95 +5482,29272,37 +5483,244458,92 +5484,64944,121 +5485,14878,95 +5486,26656,64 +5487,17978,95 +5488,13827,95 +5489,341490,71 +5490,308671,92 +5491,146521,26 +5492,353686,95 +5493,62213,95 +5494,18178,92 +5495,75532,33 +5496,11215,95 +5497,85844,104 +5498,153266,8 +5499,416569,71 +5500,199602,50 +5501,337879,95 +5502,3059,95 +5503,342163,60 +5504,36811,92 +5505,16900,95 +5506,11656,50 +5507,87851,95 +5508,315664,95 +5509,194817,64 +5510,109466,95 +5511,54690,106 +5512,32080,95 +5513,12704,95 +5514,422603,31 +5515,13529,95 +5516,81274,9 +5517,10610,67 +5518,82077,95 +5519,50590,95 +5520,26841,26 +5521,18801,95 +5522,49018,95 +5523,52859,95 +5524,31942,95 +5525,84185,95 +5526,84473,121 +5527,8329,60 +5528,329868,95 +5529,11953,104 +5530,380856,95 +5531,245700,64 +5532,91673,26 +5533,52556,121 +5534,4916,95 +5535,14147,95 +5536,2241,92 +5537,16135,121 +5538,1662,64 +5539,25903,95 +5540,14011,95 +5541,204768,121 +5542,277237,64 +5543,13369,95 +5544,11397,95 +5545,422005,71 +5546,49850,92 +5547,33786,50 +5548,367735,95 +5549,31598,95 +5550,127391,121 +5551,4441,113 +5552,293262,95 +5553,430826,95 +5554,36883,9 +5555,10972,95 +5556,10780,95 +5557,9514,92 +5558,102197,26 +5559,107430,95 +5560,9664,95 +5561,188927,95 +5562,14525,104 +5563,132759,26 +5564,21570,31 +5565,54107,95 +5566,2890,36 +5567,78507,92 +5568,28533,33 +5569,40095,95 +5570,21052,95 +5571,21030,95 +5572,83896,95 +5573,29290,104 +5574,97618,95 +5575,141733,9 +5576,291,121 +5577,257302,33 +5578,43771,1 +5579,33009,95 +5580,438597,26 +5581,172443,95 +5582,13305,92 +5583,358511,8 +5584,55615,104 +5585,17609,50 +5586,26752,20 +5587,56807,34 +5588,10529,95 +5589,19294,95 +5590,46885,9 +5591,13380,9 +5592,28577,95 +5593,123103,95 +5594,28178,95 +5595,116780,95 +5596,16803,21 +5597,50108,49 +5598,18843,95 +5599,32720,107 +5600,3476,92 +5601,44874,95 +5602,33460,31 +5603,66082,36 +5604,126319,44 +5605,49907,33 +5606,29538,31 +5607,67272,50 +5608,64353,64 +5609,22894,95 +5610,101352,121 +5611,124013,121 +5612,247500,44 +5613,79871,67 +5614,18273,95 +5615,229304,106 +5616,94176,95 +5617,19029,118 +5618,17744,95 +5619,25918,95 +5620,13440,95 +5621,259690,98 +5622,201633,82 +5623,49502,95 +5624,2734,92 +5625,12513,121 +5626,46010,26 +5627,73697,33 +5628,88863,95 +5629,54102,64 +5630,270650,95 +5631,56807,32 +5632,17609,8 +5633,3989,95 +5634,20,60 +5635,285181,92 +5636,221801,95 +5637,146341,118 +5638,13396,64 +5639,300321,95 +5640,33680,95 +5641,97614,95 +5642,79743,71 +5643,93858,121 +5644,43759,95 +5645,165567,95 +5646,42739,64 +5647,7454,95 +5648,10549,64 +5649,41903,31 +5650,79833,64 +5651,49084,121 +5652,277968,92 +5653,44027,92 +5654,15640,92 +5655,179103,95 +5656,26962,95 +5657,282268,64 +5658,89086,95 +5659,64968,121 +5660,8882,33 +5661,17744,64 +5662,15199,95 +5663,49220,93 +5664,35651,121 +5665,84942,95 +5666,329809,121 +5667,11403,95 +5668,6081,95 +5669,289336,71 +5670,1790,95 +5671,24351,78 +5672,27621,95 +5673,85834,121 +5674,45132,95 +5675,122928,95 +5676,452372,95 +5677,37100,104 +5678,10549,95 +5679,342052,95 +5680,24916,67 +5681,85472,95 +5682,108822,107 +5683,18809,64 +5684,33336,92 +5685,61578,121 +5686,21447,60 +5687,92499,106 +5688,15677,95 +5689,159128,95 +5690,327383,60 +5691,121929,36 +5692,43001,82 +5693,9836,113 +5694,101915,64 +5695,50318,95 +5696,34138,95 +5697,2687,95 +5698,46128,33 +5699,83444,26 +5700,458808,75 +5701,1165,95 +5702,266285,44 +5703,126676,121 +5704,26826,48 +5705,73067,64 +5706,6,104 +5707,66082,121 +5708,299203,95 +5709,33357,33 +5710,16436,107 +5711,28482,60 +5712,10724,95 +5713,28820,121 +5714,336655,121 +5715,65599,95 +5716,124821,95 +5717,26612,95 +5718,38461,95 +5719,124680,76 +5720,269795,113 +5721,270946,95 +5722,455368,64 +5723,121462,106 +5724,32298,95 +5725,8410,121 +5726,15073,120 +5727,17771,82 +5728,9550,91 +5729,3078,95 +5730,36612,95 +5731,127614,71 +5732,43912,95 +5733,202215,121 +5734,39995,113 +5735,123103,109 +5736,156954,92 +5737,62761,113 +5738,339145,95 +5739,80539,31 +5740,89462,104 +5741,284189,121 +5742,121791,87 +5743,272878,95 +5744,33542,67 +5745,390357,44 +5746,12169,121 +5747,17139,44 +5748,19174,95 +5749,116160,95 +5750,2567,95 +5751,83384,95 +5752,22618,9 +5753,19918,95 +5754,86360,95 +5755,136366,113 +5756,76940,104 +5757,11458,95 +5758,6948,64 +5759,54396,95 +5760,271718,95 +5761,13550,9 +5762,125945,33 +5763,76264,95 +5764,49712,33 +5765,226354,95 +5766,2075,95 +5767,69784,95 +5768,37311,95 +5769,32594,78 +5770,32068,95 +5771,94348,95 +5772,72640,95 +5773,347096,95 +5774,65131,26 +5775,52936,104 +5776,90034,121 +5777,11830,104 +5778,98203,75 +5779,349028,9 +5780,167810,95 +5781,301876,95 +5782,896,31 +5783,138535,95 +5784,74779,95 +5785,379297,95 +5786,83223,121 +5787,31011,9 +5788,12536,95 +5789,106573,95 +5790,44637,120 +5791,9016,95 +5792,379019,92 +5793,20381,95 +5794,7459,113 +5795,23178,95 +5796,381767,50 +5797,46930,119 +5798,814,64 +5799,18890,95 +5800,85052,31 +5801,6077,121 +5802,323435,95 +5803,51434,95 +5804,48466,95 +5805,32996,95 +5806,58995,64 +5807,75233,57 +5808,1278,64 +5809,207641,95 +5810,371741,64 +5811,134662,95 +5812,29475,95 +5813,122081,95 +5814,45562,64 +5815,14750,95 +5816,80316,95 +5817,194722,95 +5818,20325,95 +5819,241140,92 +5820,58664,95 +5821,82080,33 +5822,10910,64 +5823,78694,92 +5824,132714,95 +5825,15489,95 +5826,14226,67 +5827,13630,57 +5828,9563,95 +5829,499,33 +5830,369697,95 +5831,56804,33 +5832,63291,55 +5833,52360,95 +5834,105763,121 +5835,428493,64 +5836,21036,104 +5837,114444,64 +5838,27221,92 +5839,87388,95 +5840,102057,95 +5841,5040,8 +5842,10937,95 +5843,2102,95 +5844,37590,92 +5845,17137,95 +5846,71732,44 +5847,315439,106 +5848,15661,95 +5849,43016,64 +5850,11248,95 +5851,44746,21 +5852,82409,121 +5853,11370,20 +5854,4024,121 +5855,186759,95 +5856,107096,95 +5857,74714,121 +5858,74430,95 +5859,279159,106 +5860,135713,95 +5861,362150,31 +5862,51601,95 +5863,54527,93 +5864,288788,91 +5865,69717,64 +5866,26954,95 +5867,125990,95 +5868,10075,95 +5869,44626,95 +5870,25518,113 +5871,47231,36 +5872,50759,104 +5873,39001,95 +5874,361146,81 +5875,41078,37 +5876,13689,92 +5877,376570,95 +5878,18616,95 +5879,71099,9 +5880,392660,9 +5881,30054,95 +5882,2441,60 +5883,86709,95 +5884,10493,113 +5885,89591,64 +5886,59408,64 +5887,52637,104 +5888,38303,95 +5889,325189,95 +5890,40765,95 +5891,32648,95 +5892,3686,33 +5893,365065,95 +5894,38325,26 +5895,1382,95 +5896,41574,95 +5897,227094,9 +5898,161243,92 +5899,84233,95 +5900,35139,95 +5901,655,121 +5902,151826,121 +5903,199373,95 +5904,198306,64 +5905,14537,104 +5906,1058,95 +5907,30994,113 +5908,71140,95 +5909,23319,95 +5910,137491,95 +5911,31991,95 +5912,48153,121 +5913,40130,92 +5914,128841,95 +5915,51284,26 +5916,3146,104 +5917,2974,82 +5918,344656,95 +5919,162862,95 +5920,167928,71 +5921,4913,95 +5922,169760,120 +5923,26636,92 +5924,44208,95 +5925,19166,78 +5926,70753,95 +5927,101908,91 +5928,3423,33 +5929,153652,64 +5930,42188,64 +5931,34729,95 +5932,19797,95 +5933,166610,95 +5934,25862,95 +5935,112162,76 +5936,49876,64 +5937,11537,67 +5938,352890,92 +5939,39024,17 +5940,3057,92 +5941,90319,26 +5942,13569,95 +5943,281979,64 +5944,21028,26 +5945,13486,120 +5946,88176,92 +5947,11876,121 +5948,47906,95 +5949,363439,95 +5950,8899,121 +5951,230428,95 +5952,60623,121 +5953,146,91 +5954,195522,102 +5955,46872,95 +5956,43256,95 +5957,28519,64 +5958,183073,33 +5959,21468,95 +5960,20200,121 +5961,64428,64 +5962,9406,121 +5963,236324,95 +5964,91477,95 +5965,35320,95 +5966,13468,95 +5967,36634,95 +5968,298865,9 +5969,94820,57 +5970,85483,95 +5971,8049,121 +5972,11422,95 +5973,12632,92 +5974,39013,95 +5975,18927,9 +5976,340584,95 +5977,16464,64 +5978,4974,121 +5979,134474,31 +5980,413279,95 +5981,37206,94 +5982,333367,92 +5983,14804,107 +5984,48677,95 +5985,12085,95 +5986,44115,95 +5987,5183,95 +5988,163376,95 +5989,37926,9 +5990,13542,120 +5991,3036,64 +5992,193650,121 +5993,11425,95 +5994,16439,48 +5995,96106,33 +5996,318781,20 +5997,269494,106 +5998,340027,9 +5999,55823,33 +6000,252102,95 +6001,39517,64 +6002,385114,102 +6003,78563,20 +6004,245891,9 +6005,74057,95 +6006,142412,31 +6007,38150,64 +6008,84907,95 +6009,49974,33 +6010,103947,105 +6011,24077,64 +6012,140595,64 +6013,7220,92 +6014,144471,95 +6015,226001,82 +6016,4375,121 +6017,383064,44 +6018,19594,95 +6019,246860,92 +6020,365447,5 +6021,18442,9 +6022,11449,95 +6023,143240,8 +6024,104427,95 +6025,29786,95 +6026,11216,121 +6027,99698,23 +6028,128598,95 +6029,3686,98 +6030,79120,64 +6031,12807,121 +6032,367492,68 +6033,31713,95 +6034,18222,95 +6035,302026,9 +6036,26368,104 +6037,159469,95 +6038,1715,95 +6039,46931,71 +6040,310568,36 +6041,18072,64 +6042,24775,95 +6043,20106,121 +6044,362703,95 +6045,252102,14 +6046,27739,95 +6047,31671,95 +6048,121895,121 +6049,76207,33 +6050,28290,95 +6051,374475,92 +6052,127901,50 +6053,35856,121 +6054,1497,95 +6055,21193,121 +6056,31995,64 +6057,8014,104 +6058,10622,67 +6059,30644,95 +6060,238985,95 +6061,52637,121 +6062,202239,26 +6063,1630,95 +6064,298935,95 +6065,86236,95 +6066,256328,95 +6067,177474,95 +6068,286372,64 +6069,61580,8 +6070,240832,121 +6071,52251,82 +6072,17956,95 +6073,10610,95 +6074,111239,64 +6075,380124,95 +6076,79466,95 +6077,67216,95 +6078,56800,33 +6079,323315,94 +6080,61109,95 +6081,110608,37 +6082,12811,33 +6083,120729,64 +6084,16164,95 +6085,203780,26 +6086,55628,95 +6087,124979,71 +6088,86040,95 +6089,10611,95 +6090,329243,95 +6091,364324,91 +6092,36960,9 +6093,418072,103 +6094,163,95 +6095,63300,26 +6096,378503,121 +6097,250638,67 +6098,6417,82 +6099,110146,113 +6100,65795,121 +6101,110608,6 +6102,54166,121 +6103,19335,95 +6104,42664,95 +6105,13338,76 +6106,20108,121 +6107,62897,71 +6108,430250,63 +6109,382501,121 +6110,43878,121 +6111,9474,33 +6112,17203,92 +6113,59142,95 +6114,399811,95 +6115,371459,98 +6116,374416,33 +6117,13934,95 +6118,280092,95 +6119,286567,95 +6120,228558,64 +6121,5618,121 +6122,227306,95 +6123,69610,68 +6124,74666,4 +6125,17582,121 +6126,16486,95 +6127,257331,106 +6128,946,95 +6129,84718,95 +6130,124075,107 +6131,402536,9 +6132,17009,95 +6133,13682,95 +6134,16806,95 +6135,19794,95 +6136,205818,95 +6137,332512,26 +6138,52247,81 +6139,26823,95 +6140,28894,95 +6141,73306,104 +6142,261249,95 +6143,28561,95 +6144,142757,26 +6145,14815,95 +6146,11517,95 +6147,102256,50 +6148,253258,95 +6149,292294,95 +6150,25358,95 +6151,108535,33 +6152,791,9 +6153,125705,95 +6154,1963,106 +6155,88273,48 +6156,175386,95 +6157,197788,95 +6158,265226,107 +6159,149117,26 +6160,119816,92 +6161,218508,104 +6162,62783,26 +6163,20213,64 +6164,28774,95 +6165,310119,95 +6166,10077,95 +6167,21544,95 +6168,33135,9 +6169,81215,95 +6170,47795,21 +6171,85446,95 +6172,11362,95 +6173,18148,104 +6174,228968,95 +6175,11655,102 +6176,259835,32 +6177,104343,104 +6178,222935,95 +6179,15356,95 +6180,37586,21 +6181,280019,106 +6182,8341,33 +6183,26204,95 +6184,66894,95 +6185,186881,67 +6186,262958,64 +6187,42460,92 +6188,125666,95 +6189,369373,94 +6190,60083,121 +6191,179826,95 +6192,41402,64 +6193,19276,31 +6194,63498,64 +6195,15045,95 +6196,121936,121 +6197,104431,69 +6198,96147,31 +6199,188161,95 +6200,78383,95 +6201,140652,95 +6202,165095,28 +6203,6522,95 +6204,256962,102 +6205,12427,12 +6206,52827,95 +6207,11456,95 +6208,55032,64 +6209,381518,64 +6210,108535,121 +6211,18206,95 +6212,27805,113 +6213,412851,114 +6214,146,95 +6215,135670,95 +6216,127329,67 +6217,82911,95 +6218,320736,14 +6219,36245,121 +6220,22554,71 +6221,46570,33 +6222,1377,95 +6223,118943,95 +6224,38328,33 +6225,37645,121 +6226,227462,26 +6227,32610,95 +6228,47200,92 +6229,49007,95 +6230,206657,50 +6231,317557,120 +6232,259593,95 +6233,10145,95 +6234,9457,95 +6235,25934,64 +6236,356156,104 +6237,118794,26 +6238,85580,95 +6239,476,95 +6240,13653,69 +6241,53230,95 +6242,11589,95 +6243,299715,44 +6244,24154,104 +6245,14159,31 +6246,74661,36 +6247,4111,95 +6248,53406,95 +6249,38955,67 +6250,126090,121 +6251,242033,95 +6252,79728,121 +6253,48770,36 +6254,71147,9 +6255,155128,33 +6256,184155,26 +6257,13058,64 +6258,155096,106 +6259,16022,95 +6260,714,95 +6261,291865,94 +6262,4285,92 +6263,55424,121 +6264,99095,33 +6265,181533,95 +6266,46184,95 +6267,46875,95 +6268,93313,95 +6269,18736,95 +6270,99642,121 +6271,70057,91 +6272,65488,95 +6273,104477,121 +6274,17082,67 +6275,311324,9 +6276,11247,95 +6277,5257,113 +6278,544,95 +6279,15036,33 +6280,9541,95 +6281,18919,121 +6282,88583,95 +6283,26849,95 +6284,60014,33 +6285,315335,92 +6286,54198,95 +6287,54779,95 +6288,66659,95 +6289,105763,55 +6290,294651,104 +6291,31921,95 +6292,148408,33 +6293,28746,9 +6294,41551,95 +6295,18238,64 +6296,48118,92 +6297,76202,121 +6298,49762,95 +6299,116385,95 +6300,30934,95 +6301,142402,95 +6302,36971,69 +6303,13279,95 +6304,47493,95 +6305,83802,95 +6306,409696,95 +6307,408203,71 +6308,50725,92 +6309,481,60 +6310,9785,9 +6311,39176,64 +6312,204255,64 +6313,97365,121 +6314,68472,95 +6315,18696,33 +6316,91679,64 +6317,60599,95 +6318,27230,95 +6319,122081,121 +6320,34729,113 +6321,84355,95 +6322,21343,64 +6323,58007,33 +6324,295914,53 +6325,144475,95 +6326,410965,95 +6327,124633,21 +6328,111960,64 +6329,330333,121 +6330,79234,121 +6331,172457,60 +6332,353257,95 +6333,35435,104 +6334,366860,102 +6335,198317,121 +6336,17073,95 +6337,109417,95 +6338,325385,121 +6339,424014,33 +6340,33740,95 +6341,338729,106 +6342,252171,95 +6343,183825,95 +6344,28677,95 +6345,196508,121 +6346,256561,91 +6347,80324,8 +6348,28275,95 +6349,21626,9 +6350,27886,64 +6351,306464,95 +6352,296313,92 +6353,44732,95 +6354,57749,113 +6355,35405,95 +6356,26223,95 +6357,44283,95 +6358,6417,92 +6359,76,107 +6360,208637,31 +6361,47057,95 +6362,55728,95 +6363,21159,95 +6364,60106,121 +6365,233208,64 +6366,315837,76 +6367,43522,95 +6368,16015,93 +6369,32720,121 +6370,39286,60 +6371,125409,64 +6372,201365,44 +6373,4529,92 +6374,74525,95 +6375,32227,95 +6376,10761,95 +6377,147538,95 +6378,64567,121 +6379,18741,67 +6380,127521,95 +6381,76746,26 +6382,180929,95 +6383,13534,95 +6384,10829,95 +6385,68720,95 +6386,286789,33 +6387,74437,95 +6388,332411,95 +6389,80713,60 +6390,348320,36 +6391,1926,95 +6392,72949,26 +6393,173189,95 +6394,11521,95 +6395,42752,95 +6396,16866,60 +6397,86814,92 +6398,13807,67 +6399,63105,95 +6400,8199,95 +6401,256347,95 +6402,152748,95 +6403,10047,121 +6404,410718,95 +6405,8340,62 +6406,47003,64 +6407,67509,121 +6408,325133,95 +6409,17495,121 +6410,252773,121 +6411,96419,10 +6412,375599,106 +6413,329712,121 +6414,37481,95 +6415,66926,37 +6416,79221,8 +6417,25768,95 +6418,72074,67 +6419,39766,95 +6420,42837,92 +6421,104062,14 +6422,348601,95 +6423,284289,95 +6424,6163,9 +6425,51800,92 +6426,104041,64 +6427,252916,95 +6428,280617,9 +6429,37700,14 +6430,13678,33 +6431,120747,95 +6432,30312,95 +6433,116019,71 +6434,407575,97 +6435,142798,59 +6436,28592,33 +6437,23730,95 +6438,86369,121 +6439,61225,95 +6440,193,95 +6441,1427,92 +6442,211928,26 +6443,85543,105 +6444,204040,95 +6445,12255,9 +6446,11370,92 +6447,61813,9 +6448,37992,95 +6449,118134,95 +6450,98586,60 +6451,51999,92 +6452,57215,95 +6453,12144,94 +6454,40624,95 +6455,9609,95 +6456,43846,95 +6457,9540,95 +6458,422878,95 +6459,394822,95 +6460,61950,48 +6461,10918,92 +6462,65898,121 +6463,27105,95 +6464,11377,95 +6465,1966,64 +6466,47876,95 +6467,73896,95 +6468,9904,9 +6469,336890,9 +6470,228028,95 +6471,374475,82 +6472,220002,68 +6473,47312,64 +6474,10626,92 +6475,64850,92 +6476,132608,81 +6477,7515,95 +6478,259358,48 +6479,81654,33 +6480,76600,95 +6481,84994,95 +6482,16229,9 +6483,50008,95 +6484,65674,64 +6485,33025,95 +6486,84772,95 +6487,325205,71 +6488,31634,95 +6489,88518,95 +6490,52867,95 +6491,31275,95 +6492,315837,9 +6493,330770,121 +6494,65456,95 +6495,152948,26 +6496,109587,6 +6497,180162,95 +6498,301334,95 +6499,42267,95 +6500,47099,52 +6501,47410,95 +6502,301876,9 +6503,66812,121 +6504,1278,33 +6505,156,64 +6506,382589,121 +6507,262958,121 +6508,277558,95 +6509,9084,92 +6510,8072,121 +6511,36615,91 +6512,24559,95 +6513,21449,104 +6514,31111,33 +6515,28,95 +6516,40470,95 +6517,54660,95 +6518,377853,44 +6519,62439,106 +6520,359245,9 +6521,7514,117 +6522,127445,69 +6523,2204,92 +6524,203833,92 +6525,7942,64 +6526,95140,9 +6527,98557,95 +6528,16820,95 +6529,339527,95 +6530,8366,92 +6531,287587,95 +6532,108224,95 +6533,269165,92 +6534,32657,95 +6535,38718,64 +6536,319179,44 +6537,13848,9 +6538,296344,21 +6539,38789,50 +6540,5552,33 +6541,311291,64 +6542,310123,31 +6543,441728,64 +6544,11373,92 +6545,5967,121 +6546,277968,44 +6547,15472,93 +6548,73827,33 +6549,312137,121 +6550,43692,64 +6551,120259,95 +6552,15068,92 +6553,28732,95 +6554,15697,95 +6555,14518,8 +6556,14809,95 +6557,346473,95 +6558,110887,95 +6559,15761,31 +6560,22899,104 +6561,147533,106 +6562,296523,95 +6563,46586,64 +6564,17074,95 +6565,36334,95 +6566,41110,33 +6567,37984,67 +6568,39493,104 +6569,199575,113 +6570,39578,64 +6571,230179,92 +6572,67314,44 +6573,141138,67 +6574,44741,33 +6575,423093,60 +6576,156700,95 +6577,339428,92 +6578,13586,64 +6579,211017,9 +6580,1420,64 +6581,14134,31 +6582,224894,64 +6583,29101,36 +6584,244458,95 +6585,24469,36 +6586,154019,105 +6587,182228,95 +6588,4413,95 +6589,2525,33 +6590,2087,104 +6591,35320,9 +6592,8467,95 +6593,14688,121 +6594,96716,95 +6595,121003,95 +6596,294652,113 +6597,1073,95 +6598,4887,68 +6599,29805,60 +6600,36259,95 +6601,107319,95 +6602,53217,95 +6603,382155,8 +6604,10775,67 +6605,38317,95 +6606,37789,104 +6607,91076,60 +6608,214100,64 +6609,2397,95 +6610,41783,91 +6611,10665,95 +6612,44105,21 +6613,88285,113 +6614,11664,92 +6615,83209,82 +6616,142320,33 +6617,15090,95 +6618,254869,60 +6619,237796,121 +6620,2259,93 +6621,49963,95 +6622,85743,50 +6623,42021,33 +6624,236808,31 +6625,298396,44 +6626,12855,95 +6627,73869,33 +6628,21057,104 +6629,11077,95 +6630,52039,95 +6631,71701,64 +6632,408272,95 +6633,168819,8 +6634,27873,76 +6635,41949,13 +6636,120932,95 +6637,48243,8 +6638,167874,33 +6639,80193,95 +6640,77673,121 +6641,58396,36 +6642,74,95 +6643,44945,95 +6644,254435,81 +6645,38808,95 +6646,41645,92 +6647,264729,60 +6648,55694,95 +6649,35632,120 +6650,229056,95 +6651,347331,31 +6652,270221,33 +6653,9966,95 +6654,9904,95 +6655,2963,121 +6656,18893,94 +6657,258480,64 +6658,101231,33 +6659,118658,66 +6660,11008,95 +6661,17483,95 +6662,310126,33 +6663,9298,92 +6664,246133,95 +6665,15267,95 +6666,43727,95 +6667,23823,95 +6668,1589,92 +6669,30806,95 +6670,153854,95 +6671,49172,95 +6672,92663,59 +6673,16876,9 +6674,79853,26 +6675,82650,95 +6676,80720,95 +6677,308032,95 +6678,48962,105 +6679,5172,95 +6680,37710,33 +6681,57278,8 +6682,79869,95 +6683,295782,92 +6684,613,92 +6685,43775,60 +6686,69635,31 +6687,5,95 +6688,26283,95 +6689,58487,121 +6690,36489,95 +6691,100063,95 +6692,16436,82 +6693,116463,95 +6694,250574,95 +6695,442752,71 +6696,22585,95 +6697,369567,60 +6698,13600,95 +6699,7972,95 +6700,77246,95 +6701,47190,26 +6702,258384,121 +6703,28893,95 +6704,93676,95 +6705,755,95 +6706,10033,92 +6707,5494,64 +6708,40826,95 +6709,27462,95 +6710,8342,39 +6711,76,82 +6712,80389,95 +6713,427680,49 +6714,314389,31 +6715,104739,105 +6716,24671,64 +6717,14242,95 +6718,10740,95 +6719,74395,95 +6720,17144,95 +6721,14012,95 +6722,45665,95 +6723,82687,95 +6724,14029,33 +6725,82321,95 +6726,57438,50 +6727,343369,95 +6728,949,95 +6729,84030,48 +6730,238749,9 +6731,289720,95 +6732,321315,21 +6733,27834,95 +6734,9877,9 +6735,29056,95 +6736,8079,31 +6737,95358,95 +6738,31165,94 +6739,97632,95 +6740,264646,95 +6741,27417,95 +6742,91480,95 +6743,211166,81 +6744,127728,95 +6745,214105,4 +6746,41077,37 +6747,58309,121 +6748,162056,33 +6749,381255,121 +6750,216156,64 +6751,64850,20 +6752,72710,95 +6753,99698,92 +6754,14016,67 +6755,18128,95 +6756,198317,9 +6757,28938,92 +6758,16234,95 +6759,76268,121 +6760,293863,95 +6761,186988,33 +6762,277388,95 +6763,55720,95 +6764,28656,107 +6765,152113,121 +6766,337789,95 +6767,58011,33 +6768,34840,121 +6769,83491,26 +6770,38594,104 +6771,17007,95 +6772,30082,95 +6773,76202,95 +6774,274325,9 +6775,28741,95 +6776,616,104 +6777,139170,64 +6778,26955,106 +6779,345637,95 +6780,16661,95 +6781,83209,92 +6782,14286,121 +6783,44943,95 +6784,49418,26 +6785,362579,60 +6786,1926,1 +6787,72614,26 +6788,338189,121 +6789,147939,95 +6790,15934,95 +6791,26811,64 +6792,85910,95 +6793,103972,50 +6794,107073,121 +6795,198062,95 +6796,293082,95 +6797,269306,50 +6798,19528,91 +6799,43499,95 +6800,70981,64 +6801,42179,95 +6802,9032,95 +6803,31675,64 +6804,116977,95 +6805,245168,64 +6806,2100,95 +6807,145481,102 +6808,392386,95 +6809,266030,121 +6810,58080,33 +6811,126927,64 +6812,63178,33 +6813,36944,95 +6814,41171,9 +6815,285935,52 +6816,49712,121 +6817,36519,95 +6818,30174,9 +6819,84284,95 +6820,134362,95 +6821,86472,33 +6822,33146,76 +6823,45273,95 +6824,82662,33 +6825,377362,81 +6826,40562,95 +6827,8652,104 +6828,57307,121 +6829,84209,95 +6830,65066,95 +6831,26574,95 +6832,142979,121 +6833,33297,121 +6834,12412,33 +6835,15013,64 +6836,46029,60 +6837,50849,92 +6838,168202,26 +6839,48787,64 +6840,276220,121 +6841,128169,104 +6842,126963,104 +6843,24671,76 +6844,194,92 +6845,8985,21 +6846,171698,95 +6847,60855,9 +6848,180305,95 +6849,22292,95 +6850,11540,64 +6851,57654,95 +6852,12499,95 +6853,815,95 +6854,96419,121 +6855,19661,95 +6856,43432,60 +6857,14128,104 +6858,3053,95 +6859,43670,92 +6860,209209,93 +6861,106851,64 +6862,10294,95 +6863,10198,95 +6864,34280,121 +6865,241071,95 +6866,80094,48 +6867,26963,94 +6868,29416,95 +6869,293271,71 +6870,126889,95 +6871,23289,93 +6872,709,64 +6873,12540,95 +6874,365339,95 +6875,15067,106 +6876,31074,95 +6877,183015,95 +6878,113194,95 +6879,362703,9 +6880,50647,95 +6881,43231,121 +6882,16066,113 +6883,145668,95 +6884,18634,95 +6885,408203,93 +6886,193040,64 +6887,36325,70 +6888,29801,95 +6889,31146,95 +6890,50838,9 +6891,128111,106 +6892,28176,95 +6893,25659,104 +6894,44661,95 +6895,29872,95 +6896,68179,9 +6897,23805,95 +6898,13196,95 +6899,162374,121 +6900,185111,21 +6901,163791,21 +6902,371645,76 +6903,43596,92 +6904,47792,92 +6905,159824,95 +6906,13667,95 +6907,338100,95 +6908,120831,95 +6909,99188,104 +6910,384594,9 +6911,77079,33 +6912,224950,9 +6913,197177,33 +6914,418378,75 +6915,42709,95 +6916,10529,92 +6917,90125,95 +6918,113119,95 +6919,17046,64 +6920,269149,95 +6921,13529,121 +6922,57983,48 +6923,24020,95 +6924,1498,95 +6925,12573,95 +6926,2021,64 +6927,80473,95 +6928,24709,95 +6929,44718,95 +6930,50161,64 +6931,54111,106 +6932,11639,64 +6933,31078,95 +6934,17133,95 +6935,86608,95 +6936,111302,95 +6937,1640,92 +6938,13440,92 +6939,2140,95 +6940,49642,67 +6941,10406,95 +6942,56292,35 +6943,128856,92 +6944,121888,33 +6945,64190,120 +6946,295656,95 +6947,2259,95 +6948,2454,48 +6949,10733,95 +6950,11979,113 +6951,202214,105 +6952,32328,95 +6953,48508,106 +6954,341490,14 +6955,84097,95 +6956,82485,95 +6957,375012,64 +6958,145191,44 +6959,383538,95 +6960,168295,104 +6961,39824,95 +6962,77875,95 +6963,225503,95 +6964,12605,92 +6965,71329,122 +6966,13954,95 +6967,45875,9 +6968,278935,81 +6969,1634,95 +6970,275060,95 +6971,124994,104 +6972,56942,64 +6973,238589,64 +6974,27091,95 +6975,126016,95 +6976,13616,37 +6977,10795,121 +6978,22881,95 +6979,24238,113 +6980,55846,95 +6981,19604,95 +6982,11472,95 +6983,315837,95 +6984,340961,81 +6985,91070,95 +6986,1902,60 +6987,48791,36 +6988,15414,95 +6989,449674,95 +6990,325803,19 +6991,129,104 +6992,82327,92 +6993,165864,95 +6994,11572,121 +6995,44328,121 +6996,266044,20 +6997,26636,95 +6998,74777,95 +6999,47638,95 +7000,63568,26 +7001,81522,33 +7002,284013,10 +7003,36253,121 +7004,115173,69 +7005,181656,104 +7006,88273,50 +7007,26486,95 +7008,11045,95 +7009,59401,95 +7010,73565,113 +7011,11235,64 +7012,127762,121 +7013,16182,64 +7014,43771,121 +7015,153228,95 +7016,2132,95 +7017,273096,104 +7018,14683,95 +7019,170759,92 +7020,206574,92 +7021,285213,106 +7022,335837,107 +7023,413232,95 +7024,32124,95 +7025,40346,67 +7026,87060,64 +7027,175035,95 +7028,168676,95 +7029,41604,95 +7030,63217,9 +7031,127091,33 +7032,9423,92 +7033,52555,84 +7034,356842,64 +7035,37813,33 +7036,46827,95 +7037,24619,95 +7038,257534,121 +7039,360205,81 +7040,11056,95 +7041,24150,95 +7042,11259,95 +7043,226936,33 +7044,2666,95 +7045,33660,95 +7046,4932,95 +7047,327528,64 +7048,284564,95 +7049,14782,9 +7050,47959,60 +7051,33250,95 +7052,91679,95 +7053,38157,95 +7054,46326,121 +7055,266782,95 +7056,108391,95 +7057,146243,95 +7058,123757,95 +7059,21191,102 +7060,921,95 +7061,64674,21 +7062,86814,44 +7063,76757,95 +7064,82679,95 +7065,83501,26 +7066,1396,26 +7067,171337,33 +7068,18690,95 +7069,26030,121 +7070,279179,92 +7071,11236,95 +7072,61527,95 +7073,45184,95 +7074,197082,8 +7075,10869,95 +7076,52782,64 +7077,52772,95 +7078,9841,95 +7079,359204,111 +7080,3072,95 +7081,354857,95 +7082,17940,95 +7083,67377,33 +7084,133523,21 +7085,7547,95 +7086,104376,92 +7087,209244,95 +7088,109074,95 +7089,12412,95 +7090,10003,95 +7091,122134,121 +7092,52991,95 +7093,30974,121 +7094,45679,95 +7095,11351,95 +7096,335053,60 +7097,70670,92 +7098,131781,95 +7099,86828,64 +7100,104973,121 +7101,48209,92 +7102,43321,95 +7103,69404,31 +7104,84865,33 +7105,46513,64 +7106,18912,82 +7107,224813,71 +7108,40649,95 +7109,104193,104 +7110,376716,26 +7111,2029,121 +7112,396392,95 +7113,75336,33 +7114,31532,95 +7115,341201,95 +7116,50363,64 +7117,9451,95 +7118,96106,60 +7119,93676,33 +7120,47848,33 +7121,133783,93 +7122,74674,93 +7123,13477,95 +7124,72711,95 +7125,1678,104 +7126,76544,67 +7127,74629,95 +7128,1164,121 +7129,32552,95 +7130,336271,9 +7131,33338,67 +7132,306598,106 +7133,50725,95 +7134,10834,92 +7135,57775,26 +7136,5922,95 +7137,127105,95 +7138,48145,50 +7139,45964,95 +7140,96793,95 +7141,167073,9 +7142,55846,64 +7143,84944,71 +7144,32708,121 +7145,18414,9 +7146,2976,64 +7147,205076,95 +7148,3023,95 +7149,50153,95 +7150,105325,95 +7151,145162,64 +7152,90563,95 +7153,12599,95 +7154,76349,67 +7155,47404,95 +7156,43471,95 +7157,130233,92 +7158,13390,9 +7159,279690,95 +7160,17139,36 +7161,65674,60 +7162,57100,73 +7163,267955,9 +7164,234284,104 +7165,23223,95 +7166,103432,95 +7167,2428,95 +7168,132227,69 +7169,14317,95 +7170,14868,113 +7171,2084,64 +7172,43438,64 +7173,8391,9 +7174,188981,104 +7175,29151,95 +7176,14794,64 +7177,44363,95 +7178,284154,6 +7179,102144,95 +7180,371504,64 +7181,59744,95 +7182,35396,21 +7183,326255,92 +7184,24825,95 +7185,8340,121 +7186,132150,121 +7187,89921,68 +7188,256969,95 +7189,36325,121 +7190,204553,106 +7191,68684,95 +7192,46770,121 +7193,25994,95 +7194,31547,68 +7195,59981,31 +7196,71805,50 +7197,1448,64 +7198,22584,95 +7199,24810,95 +7200,41783,64 +7201,171213,105 +7202,10265,106 +7203,85544,69 +7204,438643,95 +7205,5511,33 +7206,31418,26 +7207,156711,95 +7208,134477,31 +7209,66178,95 +7210,31867,95 +7211,197,95 +7212,125521,104 +7213,31385,9 +7214,5332,94 +7215,40785,50 +7216,9102,95 +7217,57230,26 +7218,43009,95 +7219,243473,121 +7220,33789,95 +7221,329868,60 +7222,20164,71 +7223,149170,26 +7224,94009,95 +7225,9703,79 +7226,82745,81 +7227,46114,67 +7228,34652,95 +7229,19551,95 +7230,217923,67 +7231,20968,31 +7232,10857,64 +7233,159474,121 +7234,260947,95 +7235,146322,9 +7236,62978,107 +7237,62211,95 +7238,43526,95 +7239,75300,95 +7240,244610,95 +7241,201485,95 +7242,10154,95 +7243,43075,95 +7244,70801,95 +7245,124277,113 +7246,11055,33 +7247,300487,71 +7248,14284,64 +7249,129798,95 +7250,63096,95 +7251,44658,95 +7252,342163,69 +7253,126090,66 +7254,5767,64 +7255,59935,68 +7256,31216,64 +7257,16899,64 +7258,33357,121 +7259,379925,95 +7260,84226,95 +7261,10087,64 +7262,38340,64 +7263,1480,95 +7264,33146,35 +7265,14414,95 +7266,196257,95 +7267,174162,95 +7268,395883,33 +7269,219043,60 +7270,44502,64 +7271,5333,69 +7272,267497,33 +7273,66949,121 +7274,45213,121 +7275,279332,95 +7276,26936,104 +7277,125264,104 +7278,5177,14 +7279,660,95 +7280,284246,93 +7281,11257,64 +7282,12450,92 +7283,67276,95 +7284,16455,64 +7285,197854,104 +7286,186997,27 +7287,22910,95 +7288,82327,121 +7289,47745,95 +7290,168541,6 +7291,67102,55 +7292,52744,95 +7293,8886,121 +7294,113700,64 +7295,123961,95 +7296,48419,104 +7297,142478,95 +7298,42355,73 +7299,38787,95 +7300,117499,71 +7301,122930,95 +7302,13929,95 +7303,17287,95 +7304,26153,31 +7305,72279,33 +7306,35110,92 +7307,132150,109 +7308,71376,95 +7309,81030,95 +7310,32834,95 +7311,9519,113 +7312,20963,26 +7313,234155,60 +7314,25037,64 +7315,13336,121 +7316,25973,95 +7317,27993,9 +7318,29318,64 +7319,35451,104 +7320,86369,44 +7321,168031,95 +7322,44902,95 +7323,110980,95 +7324,62034,33 +7325,14301,95 +7326,17170,95 +7327,83599,9 +7328,79775,64 +7329,14292,95 +7330,430365,121 +7331,1624,95 +7332,182127,67 +7333,13092,64 +7334,27346,95 +7335,11440,92 +7336,356161,121 +7337,18897,20 +7338,27036,95 +7339,131737,64 +7340,431093,102 +7341,1859,95 +7342,4520,95 +7343,130507,95 +7344,17209,95 +7345,44099,95 +7346,367732,95 +7347,293167,95 +7348,197737,95 +7349,1164,102 +7350,29382,95 +7351,290764,95 +7352,33356,64 +7353,8985,37 +7354,156,50 +7355,2021,121 +7356,46667,95 +7357,167956,60 +7358,310431,95 +7359,82655,95 +7360,41764,121 +7361,40957,95 +7362,104739,121 +7363,175457,92 +7364,4365,95 +7365,65839,26 +7366,22582,95 +7367,70404,95 +7368,16980,95 +7369,39875,95 +7370,86391,121 +7371,6391,121 +7372,184866,95 +7373,50669,95 +7374,10008,64 +7375,343972,95 +7376,5917,95 +7377,162864,95 +7378,13072,95 +7379,48627,95 +7380,45505,67 +7381,14626,121 +7382,81576,60 +7383,90231,36 +7384,12,95 +7385,4011,95 +7386,71945,95 +7387,32934,60 +7388,61533,95 +7389,257377,64 +7390,5590,121 +7391,360924,113 +7392,34449,92 +7393,39407,95 +7394,162406,104 +7395,324150,95 +7396,76200,121 +7397,18893,64 +7398,42533,95 +7399,133183,92 +7400,1903,95 +7401,7511,95 +7402,24023,50 +7403,17654,9 +7404,50779,95 +7405,10274,95 +7406,378503,52 +7407,52475,92 +7408,72912,95 +7409,274990,50 +7410,26336,95 +7411,92389,95 +7412,1116,121 +7413,34127,95 +7414,169934,104 +7415,75903,64 +7416,360341,95 +7417,211139,121 +7418,336885,57 +7419,7304,95 +7420,103758,33 +7421,1673,95 +7422,47683,21 +7423,425961,8 +7424,80717,81 +7425,49018,9 +7426,12220,95 +7427,16563,95 +7428,18093,95 +7429,11004,104 +7430,181533,64 +7431,268712,92 +7432,4986,95 +7433,272426,92 +7434,50327,95 +7435,335869,95 +7436,413052,67 +7437,11848,64 +7438,385654,24 +7439,41115,121 +7440,289960,64 +7441,10586,92 +7442,88126,71 +7443,24828,95 +7444,26612,64 +7445,98368,17 +7446,167012,95 +7447,31408,68 +7448,38792,64 +7449,11328,93 +7450,114779,95 +7451,4380,95 +7452,205724,3 +7453,26866,33 +7454,11534,49 +7455,120676,95 +7456,201365,121 +7457,43685,26 +7458,62720,95 +7459,18696,121 +7460,152023,95 +7461,118236,64 +7462,90800,95 +7463,3580,95 +7464,8870,95 +7465,110412,64 +7466,184363,28 +7467,84905,95 +7468,319513,92 +7469,11024,95 +7470,369776,121 +7471,188684,104 +7472,37665,95 +7473,18282,95 +7474,7249,95 +7475,80928,95 +7476,323555,95 +7477,113432,14 +7478,19823,95 +7479,76341,113 +7480,5804,60 +7481,62289,95 +7482,28452,60 +7483,43172,95 +7484,31342,95 +7485,64483,55 +7486,57005,73 +7487,87908,21 +7488,31911,95 +7489,41599,95 +7490,13614,8 +7491,381767,93 +7492,334538,9 +7493,48118,36 +7494,43809,95 +7495,94809,33 +7496,1374,95 +7497,1956,95 +7498,150247,95 +7499,9629,98 +7500,9406,20 +7501,287903,95 +7502,306966,60 +7503,21001,64 +7504,8342,121 +7505,11536,95 +7506,24963,95 +7507,51800,97 +7508,37959,104 +7509,11230,67 +7510,57458,49 +7511,17796,95 +7512,82027,8 +7513,376047,31 +7514,31670,121 +7515,68193,9 +7516,102161,95 +7517,118121,95 +7518,339148,95 +7519,1926,31 +7520,18683,64 +7521,20361,33 +7522,169343,121 +7523,26293,95 +7524,362045,31 +7525,359459,95 +7526,76170,95 +7527,434873,95 +7528,317182,64 +7529,85549,60 +7530,53042,105 +7531,90110,95 +7532,51349,26 +7533,76,95 +7534,180819,95 +7535,18908,93 +7536,16687,67 +7537,104931,121 +7538,41764,14 +7539,15016,95 +7540,19936,60 +7541,26299,95 +7542,333352,64 +7543,234862,20 +7544,327909,37 +7545,13678,92 +7546,49098,8 +7547,49834,68 +7548,8985,71 +7549,336669,109 +7550,258363,121 +7551,19082,104 +7552,10760,95 +7553,29467,95 +7554,84735,95 +7555,225499,95 +7556,291155,113 +7557,82448,92 +7558,256561,92 +7559,159667,9 +7560,27300,95 +7561,153161,95 +7562,26864,121 +7563,31978,95 +7564,255160,6 +7565,92381,95 +7566,134215,31 +7567,55152,64 +7568,330770,44 +7569,366170,104 +7570,93116,95 +7571,17288,68 +7572,360784,95 +7573,319092,64 +7574,312831,95 +7575,222517,33 +7576,48838,95 +7577,179818,95 +7578,191322,95 +7579,47144,6 +7580,225044,95 +7581,216374,95 +7582,309879,64 +7583,347835,104 +7584,10482,64 +7585,30366,121 +7586,5646,95 +7587,248543,81 +7588,288710,95 +7589,42634,95 +7590,235092,64 +7591,11799,121 +7592,24647,50 +7593,9667,95 +7594,260030,6 +7595,103640,31 +7596,10925,95 +7597,14449,67 +7598,287170,49 +7599,17350,121 +7600,339403,95 +7601,107976,104 +7602,4133,95 +7603,34326,104 +7604,108419,95 +7605,322460,64 +7606,126250,33 +7607,393172,9 +7608,321191,106 +7609,15472,92 +7610,17347,36 +7611,95919,73 +7612,231216,82 +7613,174751,95 +7614,13025,95 +7615,200511,95 +7616,55934,95 +7617,9423,95 +7618,1165,121 +7619,413882,31 +7620,102444,9 +7621,10137,92 +7622,193523,50 +7623,85543,69 +7624,59249,33 +7625,300,121 +7626,63665,4 +7627,343878,93 +7628,268893,95 +7629,63717,33 +7630,38404,95 +7631,35656,95 +7632,40252,9 +7633,9095,95 +7634,177566,95 +7635,67314,121 +7636,25335,71 +7637,337107,121 +7638,39311,95 +7639,118900,95 +7640,169800,95 +7641,178755,121 +7642,41610,33 +7643,74447,95 +7644,32657,9 +7645,72474,95 +7646,27983,95 +7647,15261,95 +7648,54388,95 +7649,42309,9 +7650,129383,104 +7651,11321,95 +7652,19501,95 +7653,226140,95 +7654,36983,95 +7655,43489,95 +7656,4146,121 +7657,41949,64 +7658,115810,60 +7659,169343,92 +7660,85038,33 +7661,43984,1 +7662,18937,95 +7663,384262,57 +7664,8276,92 +7665,43114,95 +7666,43783,95 +7667,148636,95 +7668,66247,31 +7669,83459,26 +7670,231762,107 +7671,107682,67 +7672,27042,95 +7673,124523,95 +7674,226188,95 +7675,377158,8 +7676,164419,71 +7677,19968,95 +7678,112675,78 +7679,15979,31 +7680,26152,121 +7681,11231,95 +7682,14008,95 +7683,38950,95 +7684,172785,95 +7685,24757,92 +7686,84626,120 +7687,8292,95 +7688,41787,95 +7689,16436,92 +7690,243473,23 +7691,39435,95 +7692,84993,76 +7693,25430,95 +7694,8414,95 +7695,23544,95 +7696,43833,64 +7697,101006,121 +7698,103590,59 +7699,176867,95 +7700,11058,95 +7701,53870,95 +7702,106546,26 +7703,71041,92 +7704,12618,95 +7705,11175,95 +7706,1394,28 +7707,985,95 +7708,1810,95 +7709,9968,95 +7710,120357,95 +7711,238589,95 +7712,46261,113 +7713,368051,64 +7714,5991,92 +7715,55505,95 +7716,52264,121 +7717,99657,92 +7718,85959,106 +7719,295723,9 +7720,28000,95 +7721,40085,95 +7722,13517,94 +7723,113091,95 +7724,126947,95 +7725,26864,69 +7726,13496,95 +7727,18209,64 +7728,118,113 +7729,374473,121 +7730,21062,107 +7731,9457,9 +7732,4012,95 +7733,121598,64 +7734,106135,95 +7735,38055,95 +7736,46797,64 +7737,36236,33 +7738,39957,95 +7739,140509,104 +7740,334,95 +7741,423078,71 +7742,1914,92 +7743,52713,121 +7744,411442,67 +7745,228294,113 +7746,26261,95 +7747,99826,95 +7748,53862,95 +7749,37098,95 +7750,16612,95 +7751,352094,95 +7752,164419,92 +7753,30941,95 +7754,32484,95 +7755,42669,95 +7756,62036,121 +7757,30034,95 +7758,41211,61 +7759,2110,104 +7760,314352,92 +7761,177190,95 +7762,59197,95 +7763,54242,95 +7764,304372,95 +7765,286940,99 +7766,20646,104 +7767,14452,95 +7768,42424,95 +7769,296901,68 +7770,56971,33 +7771,55846,121 +7772,153169,95 +7773,376501,95 +7774,225614,104 +7775,34231,95 +7776,18334,104 +7777,70667,50 +7778,86829,121 +7779,16358,92 +7780,332079,95 +7781,39771,95 +7782,10694,95 +7783,44038,95 +7784,33364,95 +7785,78210,121 +7786,172828,95 +7787,27637,92 +7788,47911,95 +7789,38099,67 +7790,42494,95 +7791,44282,69 +7792,606,95 +7793,95919,91 +7794,32451,9 +7795,441881,31 +7796,1294,92 +7797,68545,9 +7798,2186,95 +7799,240334,81 +7800,76465,95 +7801,55283,31 +7802,121662,94 +7803,138977,95 +7804,72822,121 +7805,302036,64 +7806,125063,64 +7807,13283,95 +7808,314388,104 +7809,303982,81 +7810,57993,95 +7811,83754,106 +7812,232731,95 +7813,29365,95 +7814,35639,44 +7815,13437,95 +7816,51209,95 +7817,102362,95 +7818,80168,95 +7819,127864,60 +7820,51371,95 +7821,20842,95 +7822,169355,95 +7823,7237,95 +7824,24424,4 +7825,13610,95 +7826,20443,95 +7827,121998,33 +7828,259075,33 +7829,121539,9 +7830,84305,95 +7831,52903,71 +7832,91076,95 +7833,8942,95 +7834,47507,121 +7835,257537,92 +7836,246355,113 +7837,237672,31 +7838,39130,95 +7839,25682,9 +7840,88486,33 +7841,89287,44 +7842,54384,105 +7843,39308,64 +7844,337876,31 +7845,10238,50 +7846,363890,95 +7847,43903,95 +7848,101006,36 +7849,8985,16 +7850,6163,44 +7851,79372,95 +7852,65614,26 +7853,56744,95 +7854,72086,95 +7855,6963,92 +7856,87123,95 +7857,81895,95 +7858,63717,26 +7859,73257,95 +7860,320179,93 +7861,14423,95 +7862,43379,33 +7863,50327,81 +7864,26491,64 +7865,248087,104 +7866,88288,95 +7867,9981,95 +7868,45772,95 +7869,15653,113 +7870,126250,93 +7871,3024,9 +7872,36229,92 +7873,50126,9 +7874,28062,92 +7875,110447,33 +7876,113175,95 +7877,73215,36 +7878,210615,33 +7879,333367,121 +7880,43045,95 +7881,66584,9 +7882,348689,106 +7883,43645,33 +7884,61348,95 +7885,35977,95 +7886,77439,54 +7887,19898,92 +7888,59895,95 +7889,13486,95 +7890,336004,95 +7891,267466,106 +7892,101998,121 +7893,26736,95 +7894,233490,95 +7895,60568,67 +7896,5881,121 +7897,157293,31 +7898,82237,95 +7899,120977,95 +7900,35724,95 +7901,273202,26 +7902,48136,95 +7903,25977,95 +7904,80410,9 +7905,10379,64 +7906,116432,16 +7907,39101,104 +7908,117212,104 +7909,27211,68 +7910,412103,95 +7911,9298,64 +7912,66700,33 +7913,21181,113 +7914,75174,95 +7915,24634,95 +7916,126889,76 +7917,9950,92 +7918,312497,95 +7919,185289,95 +7920,135713,37 +7921,47161,121 +7922,164331,95 +7923,41619,92 +7924,42794,95 +7925,82631,95 +7926,15909,95 +7927,409903,26 +7928,61581,33 +7929,1483,95 +7930,39982,95 +7931,421741,55 +7932,146216,121 +7933,16074,67 +7934,86979,64 +7935,16791,95 +7936,102428,60 +7937,55544,92 +7938,83430,36 +7939,69165,95 +7940,60759,64 +7941,35197,64 +7942,75204,9 +7943,271007,95 +7944,25797,36 +7945,14273,95 +7946,8985,50 +7947,146233,95 +7948,40859,81 +7949,43828,95 +7950,376252,106 +7951,29212,95 +7952,161073,44 +7953,102155,95 +7954,341490,50 +7955,125344,75 +7956,71066,95 +7957,55731,95 +7958,18897,121 +7959,102382,95 +7960,20704,95 +7961,264269,26 +7962,53860,95 +7963,660,11 +7964,10991,104 +7965,13798,50 +7966,11633,104 +7967,73545,26 +7968,493,95 +7969,43882,95 +7970,9613,64 +7971,23857,9 +7972,35428,55 +7973,10033,9 +7974,15321,64 +7975,90616,95 +7976,41852,95 +7977,10703,106 +7978,43372,33 +7979,11120,95 +7980,307696,94 +7981,79234,95 +7982,335778,95 +7983,44414,95 +7984,283701,121 +7985,45692,95 +7986,18917,107 +7987,43680,26 +7988,25653,106 +7989,490,50 +7990,8410,92 +7991,339408,95 +7992,28178,64 +7993,84805,95 +7994,10897,95 +7995,364833,26 +7996,12135,44 +7997,9902,95 +7998,32623,95 +7999,237796,92 +8000,114348,95 +8001,35263,92 +8002,399798,95 +8003,11838,104 +8004,1498,67 +8005,214081,121 +8006,77625,95 +8007,10201,95 +8008,377158,50 +8009,16232,95 +8010,116340,95 +8011,163814,95 +8012,168259,95 +8013,92349,95 +8014,143073,26 +8015,53179,121 +8016,228290,33 +8017,278475,68 +8018,210068,31 +8019,193523,93 +8020,82409,81 +8021,292033,94 +8022,31262,121 +8023,214138,10 +8024,118195,69 +8025,15734,95 +8026,9503,64 +8027,38807,95 +8028,269795,95 +8029,322443,95 +8030,50916,95 +8031,137528,95 +8032,60316,64 +8033,13516,95 +8034,139433,95 +8035,354296,26 +8036,421741,26 +8037,38718,95 +8038,138544,95 +8039,12479,95 +8040,31048,95 +8041,361380,95 +8042,71825,95 +8043,63775,121 +8044,11358,95 +8045,153541,44 +8046,131343,71 +8047,33107,121 +8048,104528,95 +8049,63139,95 +8050,109477,60 +8051,41733,95 +8052,52736,95 +8053,48199,37 +8054,616,76 +8055,8932,121 +8056,94225,95 +8057,245019,113 +8058,2144,95 +8059,41097,37 +8060,9787,95 +8061,25941,64 +8062,13061,95 +8063,326045,9 +8064,43195,33 +8065,59051,95 +8066,32331,95 +8067,43811,95 +8068,13652,121 +8069,95134,95 +8070,242076,11 +8071,156603,95 +8072,616,95 +8073,10440,95 +8074,36785,69 +8075,37600,36 +8076,60899,50 +8077,371462,20 +8078,6973,95 +8079,24837,95 +8080,86829,95 +8081,4964,95 +8082,32390,121 +8083,312940,26 +8084,47647,67 +8085,3036,104 +8086,298931,64 +8087,298751,95 +8088,259358,92 +8089,51249,95 +8090,337104,121 +8091,43775,116 +8092,113119,104 +8093,352498,95 +8094,79593,95 +8095,12594,95 +8096,44522,33 +8097,138222,95 +8098,30091,95 +8099,28917,95 +8100,149870,104 +8101,7863,113 +8102,140418,64 +8103,191312,60 +8104,62762,67 +8105,47011,33 +8106,118490,113 +8107,150117,121 +8108,54384,121 +8109,68444,44 +8110,10890,95 +8111,48186,9 +8112,129533,95 +8113,11889,64 +8114,43023,95 +8115,12650,106 +8116,413052,52 +8117,419459,95 +8118,338312,37 +8119,11979,95 +8120,31907,95 +8121,21132,95 +8122,12796,64 +8123,35623,92 +8124,47324,32 +8125,59075,95 +8126,40028,95 +8127,124633,6 +8128,1049,121 +8129,55495,71 +8130,34838,36 +8131,278867,8 +8132,95536,121 +8133,41831,95 +8134,14429,95 +8135,77534,26 +8136,366696,95 +8137,42579,33 +8138,115290,95 +8139,70368,95 +8140,193893,95 +8141,187022,121 +8142,24081,95 +8143,1963,104 +8144,25142,26 +8145,8342,66 +8146,7085,92 +8147,41581,26 +8148,3870,92 +8149,117534,81 +8150,72847,95 +8151,9286,9 +8152,43967,104 +8153,25520,92 +8154,266568,92 +8155,21742,95 +8156,15092,95 +8157,10053,95 +8158,61699,4 +8159,415358,31 +8160,118451,106 +8161,60160,104 +8162,49974,93 +8163,254918,95 +8164,30554,95 +8165,38285,33 +8166,8325,95 +8167,166,121 +8168,26510,64 +8169,269650,104 +8170,84465,95 +8171,58587,60 +8172,9461,67 +8173,208091,95 +8174,29372,95 +8175,47444,104 +8176,32546,60 +8177,12528,64 +8178,134362,2 +8179,288168,9 +8180,14881,95 +8181,41131,107 +8182,76785,95 +8183,2454,39 +8184,70695,95 +8185,327982,26 +8186,424643,95 +8187,37514,95 +8188,355984,95 +8189,46436,33 +8190,315057,71 +8191,75315,95 +8192,29698,64 +8193,43752,95 +8194,28268,104 +8195,29952,69 +8196,402612,37 +8197,100594,71 +8198,6935,121 +8199,68822,121 +8200,18682,95 +8201,243940,95 +8202,318922,64 +8203,12638,92 +8204,47489,33 +8205,30619,26 +8206,8072,33 +8207,227257,95 +8208,246299,95 +8209,289225,95 +8210,24163,67 +8211,359471,95 +8212,74879,66 +8213,162437,104 +8214,215646,33 +8215,196255,95 +8216,27904,82 +8217,315723,64 +8218,111398,104 +8219,25633,95 +8220,408616,64 +8221,99318,95 +8222,115905,31 +8223,125623,121 +8224,14765,121 +8225,31276,95 +8226,11647,67 +8227,58529,37 +8228,975,95 +8229,301876,20 +8230,257344,95 +8231,345916,95 +8232,1278,121 +8233,22398,95 +8234,78028,95 +8235,9539,121 +8236,236737,60 +8237,2692,92 +8238,43281,121 +8239,54166,33 +8240,428645,81 +8241,163706,121 +8242,205943,9 +8243,36463,95 +8244,17609,93 +8245,14210,95 +8246,102305,95 +8247,39230,104 +8248,24479,95 +8249,109298,95 +8250,254661,95 +8251,3686,121 +8252,310593,33 +8253,148478,71 +8254,987,95 +8255,189151,104 +8256,335509,95 +8257,21449,95 +8258,57412,95 +8259,17606,33 +8260,291577,109 +8261,409502,95 +8262,8144,33 +8263,186292,71 +8264,15486,33 +8265,213681,3 +8266,3423,107 +8267,14207,95 +8268,13551,95 +8269,170548,64 +8270,11647,91 +8271,691,95 +8272,106635,95 +8273,10476,95 +8274,226163,69 +8275,21198,121 +8276,34838,121 +8277,54959,31 +8278,121791,65 +8279,40817,33 +8280,422550,95 +8281,3164,95 +8282,8915,95 +8283,10466,95 +8284,37437,95 +8285,45527,92 +8286,222932,75 +8287,2033,95 +8288,34138,9 +8289,85735,44 +8290,293271,121 +8291,24452,95 +8292,34598,95 +8293,34193,95 +8294,299780,64 +8295,383618,50 +8296,101752,104 +8297,19688,95 +8298,2046,95 +8299,32654,67 +8300,10354,95 +8301,227975,92 +8302,85793,104 +8303,286789,121 +8304,244117,95 +8305,135390,50 +8306,93862,64 +8307,36243,104 +8308,149145,121 +8309,70086,95 +8310,131907,60 +8311,30695,31 +8312,6591,33 +8313,42040,64 +8314,33316,64 +8315,46567,33 +8316,228496,95 +8317,70670,57 +8318,42453,95 +8319,38869,8 +8320,52936,121 +8321,253263,95 +8322,37420,95 +8323,85729,26 +8324,108726,95 +8325,389614,119 +8326,13823,13 +8327,36245,33 +8328,280422,26 +8329,128120,43 +8330,428687,95 +8331,9404,113 +8332,39943,95 +8333,266285,120 +8334,32926,68 +8335,18381,9 +8336,37609,95 +8337,2169,92 +8338,1416,106 +8339,18094,95 +8340,184219,49 +8341,83475,26 +8342,488,95 +8343,11959,95 +8344,65089,26 +8345,142712,92 +8346,795,95 +8347,341201,6 +8348,377853,121 +8349,84105,9 +8350,47161,1 +8351,83770,64 +8352,319073,9 +8353,41823,95 +8354,53857,95 +8355,73565,64 +8356,33510,9 +8357,40258,121 +8358,48495,95 +8359,1991,95 +8360,84178,95 +8361,25241,95 +8362,67,121 +8363,341895,31 +8364,263341,91 +8365,10475,121 +8366,161795,95 +8367,21629,95 +8368,71381,26 +8369,2613,95 +8370,171213,121 +8371,44793,9 +8372,172890,121 +8373,61361,121 +8374,1721,33 +8375,796,95 +8376,83770,121 +8377,21348,20 +8378,13258,92 +8379,406052,95 +8380,1539,92 +8381,340881,95 +8382,79735,95 +8383,47112,104 +8384,203715,121 +8385,61400,31 +8386,42532,95 +8387,1404,60 +8388,140894,36 +8389,9102,104 +8390,8410,95 +8391,19740,95 +8392,197624,95 +8393,81463,107 +8394,103301,26 +8395,370687,95 +8396,37517,113 +8397,8869,113 +8398,96552,36 +8399,10703,91 +8400,45156,95 +8401,65496,121 +8402,395763,121 +8403,21135,121 +8404,400552,92 +8405,74919,8 +8406,39331,8 +8407,3309,95 +8408,5967,92 +8409,24955,50 +8410,37731,8 +8411,10475,92 +8412,76203,64 +8413,14430,102 +8414,65612,121 +8415,27035,95 +8416,14829,104 +8417,12767,95 +8418,35052,64 +8419,17003,95 +8420,31682,95 +8421,47794,121 +8422,39992,33 +8423,407,92 +8424,189,95 +8425,49941,92 +8426,12279,95 +8427,47588,121 +8428,38006,64 +8429,238302,31 +8430,10874,95 +8431,18467,95 +8432,20544,95 +8433,3701,33 +8434,10077,92 +8435,35337,33 +8436,20879,26 +8437,27409,60 +8438,48791,93 +8439,317214,87 +8440,52323,95 +8441,278939,95 +8442,75578,36 +8443,77412,95 +8444,288413,95 +8445,290379,95 +8446,85494,95 +8447,20430,95 +8448,17236,95 +8449,5759,95 +8450,47186,95 +8451,15671,95 +8452,12186,95 +8453,21968,95 +8454,13312,121 +8455,296524,67 +8456,34449,98 +8457,45227,26 +8458,76494,95 +8459,30366,48 +8460,20342,73 +8461,5206,121 +8462,31380,95 +8463,108345,95 +8464,268212,121 +8465,51104,95 +8466,63144,95 +8467,326,95 +8468,45197,67 +8469,63179,33 +8470,143005,26 +8471,77794,64 +8472,39415,121 +8473,24632,9 +8474,303867,95 +8475,111744,92 +8476,137491,9 +8477,14833,8 +8478,334394,95 +8479,25551,95 +8480,15875,95 +8481,78571,95 +8482,96107,95 +8483,14823,64 +8484,213983,102 +8485,19731,95 +8486,36797,95 +8487,11570,95 +8488,352094,103 +8489,18279,71 +8490,12593,95 +8491,4134,36 +8492,366566,121 +8493,1938,95 +8494,14072,31 +8495,42734,95 +8496,222297,121 +8497,128412,59 +8498,127098,121 +8499,13526,121 +8500,9914,95 +8501,194407,95 +8502,457,82 +8503,232739,81 +8504,51828,64 +8505,340103,95 +8506,29805,64 +8507,196359,95 +8508,13834,95 +8509,47194,95 +8510,38034,67 +8511,46592,26 +8512,72207,95 +8513,293670,106 +8514,15179,50 +8515,71329,104 +8516,145154,95 +8517,19096,95 +8518,8985,47 +8519,10947,95 +8520,36211,92 +8521,124633,92 +8522,190955,95 +8523,14945,104 +8524,81538,121 +8525,11630,95 +8526,35564,95 +8527,273879,9 +8528,29161,33 +8529,30780,95 +8530,197175,92 +8531,57458,92 +8532,70027,95 +8533,13374,95 +8534,11329,95 +8535,16410,64 +8536,16351,121 +8537,204922,64 +8538,14882,95 +8539,425591,95 +8540,211179,33 +8541,57311,121 +8542,270403,121 +8543,215379,94 +8544,39048,95 +8545,14862,95 +8546,6183,92 +8547,38883,121 +8548,356500,64 +8549,179603,95 +8550,22256,95 +8551,56232,104 +8552,169760,113 +8553,70736,95 +8554,83540,64 +8555,24971,33 +8556,47715,33 +8557,43388,95 +8558,164013,26 +8559,42132,37 +8560,92968,95 +8561,25353,121 +8562,47065,95 +8563,76864,50 +8564,264080,95 +8565,29263,69 +8566,49844,95 +8567,86647,107 +8568,60853,95 +8569,105965,95 +8570,9289,95 +8571,33015,95 +8572,429238,95 +8573,14695,92 +8574,375199,31 +8575,436340,121 +8576,11399,33 +8577,345925,95 +8578,132859,95 +8579,82178,95 +8580,63838,26 +8581,19629,95 +8582,420648,69 +8583,52452,64 +8584,72199,26 +8585,114503,95 +8586,340961,33 +8587,290316,121 +8588,58923,95 +8589,11591,95 +8590,9905,64 +8591,38742,95 +8592,13380,95 +8593,45211,33 +8594,64414,121 +8595,30361,95 +8596,10860,95 +8597,109439,95 +8598,77650,95 +8599,17590,95 +8600,284296,95 +8601,242310,95 +8602,116437,16 +8603,293452,95 +8604,69619,67 +8605,10303,95 +8606,133448,64 +8607,47201,102 +8608,363757,33 +8609,237303,95 +8610,36047,95 +8611,28031,95 +8612,146373,95 +8613,267481,26 +8614,40662,95 +8615,147829,95 +8616,25499,31 +8617,157676,92 +8618,709,95 +8619,17692,95 +8620,78802,95 +8621,90086,95 +8622,18651,95 +8623,9945,95 +8624,3638,113 +8625,173205,31 +8626,436339,105 +8627,54559,95 +8628,286532,95 +8629,56800,121 +8630,43849,95 +8631,96888,4 +8632,248639,95 +8633,9577,82 +8634,18015,95 +8635,83718,95 +8636,81538,4 +8637,273578,95 +8638,81310,95 +8639,278348,95 +8640,35110,60 +8641,14087,104 +8642,18919,48 +8643,13507,121 +8644,35026,69 +8645,23207,64 +8646,367882,106 +8647,14538,67 +8648,50079,95 +8649,362026,64 +8650,75903,9 +8651,17203,95 +8652,108,121 +8653,32690,104 +8654,3520,121 +8655,4703,95 +8656,63717,121 +8657,348035,95 +8658,37719,95 +8659,168616,64 +8660,178446,92 +8661,10999,95 +8662,83588,95 +8663,110909,60 +8664,22267,95 +8665,42460,4 +8666,343173,64 +8667,20766,95 +8668,34723,95 +8669,287391,92 +8670,28238,64 +8671,110148,95 +8672,15387,48 +8673,22076,95 +8674,37438,31 +8675,16124,76 +8676,48787,92 +8677,19957,95 +8678,9343,92 +8679,65156,95 +8680,18919,64 +8681,9959,95 +8682,52556,68 +8683,45726,95 +8684,31672,33 +8685,9827,95 +8686,36140,121 +8687,20432,95 +8688,335897,107 +8689,41171,95 +8690,25834,64 +8691,303636,92 +8692,337104,102 +8693,84340,95 +8694,4820,95 +8695,35052,94 +8696,255948,104 +8697,121401,95 +8698,45120,95 +8699,14531,64 +8700,103689,36 +8701,23155,104 +8702,55922,9 +8703,28340,95 +8704,110160,121 +8705,14286,9 +8706,24424,92 +8707,844,121 +8708,46883,95 +8709,207270,64 +8710,42996,95 +8711,125490,9 +8712,83770,81 +8713,21893,121 +8714,85265,75 +8715,158483,104 +8716,77459,121 +8717,414173,95 +8718,11719,33 +8719,38765,95 +8720,255343,121 +8721,221234,119 +8722,37213,104 +8723,25074,67 +8724,408024,121 +8725,25330,95 +8726,71329,92 +8727,30411,95 +8728,311324,113 +8729,16652,92 +8730,173205,95 +8731,13794,95 +8732,325690,33 +8733,83831,64 +8734,415633,95 +8735,38916,95 +8736,36246,104 +8737,47504,95 +8738,266373,95 +8739,71114,69 +8740,37181,121 +8741,121036,73 +8742,18899,67 +8743,87759,26 +8744,983,95 +8745,82501,8 +8746,19812,93 +8747,34899,83 +8748,868,120 +8749,382591,121 +8750,26116,95 +8751,295581,9 +8752,130717,95 +8753,93828,64 +8754,143380,26 +8755,53210,95 +8756,343934,95 +8757,52864,95 +8758,116232,95 +8759,50318,33 +8760,142528,107 +8761,49837,113 +8762,82341,33 +8763,62488,95 +8764,49009,35 +8765,348315,36 +8766,9472,92 +8767,19819,95 +8768,397717,95 +8769,12182,95 +8770,5494,92 +8771,11450,95 +8772,77185,26 +8773,44415,95 +8774,2976,95 +8775,22025,104 +8776,118257,121 +8777,35623,4 +8778,5048,64 +8779,20047,95 +8780,31390,95 +8781,11799,33 +8782,54795,64 +8783,371446,95 +8784,285935,104 +8785,8932,107 +8786,53761,95 +8787,49060,9 +8788,64130,48 +8789,8340,1 +8790,142061,95 +8791,39334,95 +8792,119374,81 +8793,5955,95 +8794,52728,104 +8795,32845,95 +8796,29896,9 +8797,85778,95 +8798,11346,92 +8799,347127,95 +8800,334527,95 +8801,74314,95 +8802,6171,95 +8803,28261,95 +8804,60086,95 +8805,266102,35 +8806,399894,95 +8807,61035,92 +8808,23599,95 +8809,9034,95 +8810,28774,64 +8811,42571,33 +8812,393559,121 +8813,120972,33 +8814,195796,9 +8815,121598,9 +8816,138372,95 +8817,109861,71 +8818,383914,121 +8819,101330,121 +8820,365447,95 +8821,32233,67 +8822,4248,9 +8823,66082,92 +8824,144111,95 +8825,42057,64 +8826,88564,26 +8827,42502,102 +8828,14012,64 +8829,37710,95 +8830,447236,37 +8831,549,95 +8832,30640,64 +8833,91391,95 +8834,12104,64 +8835,81409,33 +8836,318224,95 +8837,251555,60 +8838,12483,95 +8839,9404,26 +8840,61716,95 +8841,6591,92 +8842,124071,95 +8843,74126,104 +8844,58692,26 +8845,10055,95 +8846,16231,104 +8847,14295,95 +8848,16017,93 +8849,168814,73 +8850,22020,95 +8851,139159,121 +8852,252888,95 +8853,9441,95 +8854,128270,95 +8855,314011,64 +8856,43868,95 +8857,204712,92 +8858,17895,104 +8859,345775,93 +8860,41611,95 +8861,192133,95 +8862,28323,95 +8863,127493,95 +8864,103875,91 +8865,102632,31 +8866,144421,92 +8867,51571,95 +8868,25682,95 +8869,12903,95 +8870,32532,95 +8871,63333,95 +8872,12237,95 +8873,19325,95 +8874,18820,64 +8875,9951,95 +8876,96702,95 +8877,146216,95 +8878,25673,95 +8879,753,95 +8880,80080,48 +8881,33134,113 +8882,180252,106 +8883,413430,71 +8884,64167,64 +8885,191562,31 +8886,18621,95 +8887,396643,31 +8888,209410,31 +8889,13855,106 +8890,358901,87 +8891,1969,102 +8892,282919,92 +8893,229638,95 +8894,15414,64 +8895,56725,95 +8896,2984,64 +8897,70587,9 +8898,69103,95 +8899,16374,72 +8900,838,95 +8901,46387,31 +8902,31167,95 +8903,167882,95 +8904,48791,64 +8905,120615,95 +8906,10518,95 +8907,118381,67 +8908,31947,95 +8909,162382,33 +8910,464111,9 +8911,8935,73 +8912,62472,104 +8913,81541,95 +8914,96035,64 +8915,16366,95 +8916,94674,44 +8917,169382,92 +8918,272072,95 +8919,72013,104 +8920,9352,95 +8921,3577,92 +8922,233639,92 +8923,211879,119 +8924,59424,36 +8925,343693,92 +8926,282086,48 +8927,68184,95 +8928,73872,33 +8929,370755,121 +8930,21208,95 +8931,4923,94 +8932,19350,95 +8933,83995,64 +8934,70586,95 +8935,356486,95 +8936,33511,9 +8937,18939,104 +8938,29362,33 +8939,42216,92 +8940,80468,95 +8941,126832,64 +8942,11330,93 +8943,360737,82 +8944,104602,95 +8945,19506,104 +8946,83788,33 +8947,16023,95 +8948,121940,95 +8949,245268,95 +8950,70874,42 +8951,315465,104 +8952,141145,36 +8953,64942,33 +8954,42472,95 +8955,55197,104 +8956,315837,91 +8957,2786,121 +8958,210052,92 +8959,104674,95 +8960,26808,64 +8961,120497,95 +8962,44888,95 +8963,143068,26 +8964,747,64 +8965,16320,95 +8966,264264,91 +8967,66756,67 +8968,9894,95 +8969,314420,95 +8970,126250,92 +8971,243568,95 +8972,264746,106 +8973,22213,95 +8974,8856,95 +8975,69976,26 +8976,223551,36 +8977,86703,95 +8978,283384,9 +8979,43997,64 +8980,26593,95 +8981,336149,64 +8982,12076,57 +8983,92562,95 +8984,270672,95 +8985,228074,64 +8986,11902,121 +8987,13480,95 +8988,68737,9 +8989,19142,95 +8990,35856,4 +8991,43973,1 +8992,112130,95 +8993,353652,95 +8994,134394,9 +8995,16417,120 +8996,144183,95 +8997,14703,95 +8998,48882,26 +8999,24426,68 +9000,73067,121 +9001,156,121 +9002,179837,82 +9003,17906,95 +9004,52369,121 +9005,83770,95 +9006,85735,121 +9007,64725,33 +9008,15906,95 +9009,5319,31 +9010,139563,33 +9011,16235,95 +9012,171308,64 +9013,12453,121 +9014,284537,95 +9015,277190,36 +9016,58404,92 +9017,126141,121 +9018,20880,95 +9019,45627,95 +9020,34459,95 +9021,167424,92 +9022,7980,64 +9023,70322,104 +9024,10063,120 +9025,39276,95 +9026,102461,121 +9027,30143,104 +9028,10436,95 +9029,382597,121 +9030,89445,95 +9031,22682,95 +9032,21736,95 +9033,26881,95 +9034,10604,95 +9035,17295,84 +9036,382598,121 +9037,394822,64 +9038,27317,95 +9039,49850,121 +9040,9648,113 +9041,340488,38 +9042,27283,55 +9043,41599,64 +9044,91334,95 +9045,3055,95 +9046,385654,98 +9047,58570,67 +9048,58133,121 +9049,340119,33 +9050,374473,64 +9051,341559,98 +9052,172475,95 +9053,9406,64 +9054,10692,95 +9055,445,92 +9056,211085,9 +9057,326228,121 +9058,83342,92 +9059,27501,95 +9060,188765,92 +9061,328032,92 +9062,159514,36 +9063,28858,95 +9064,39545,95 +9065,10208,95 +9066,135832,92 +9067,458428,69 +9068,13526,95 +9069,4191,33 +9070,27629,95 +9071,20919,95 +9072,248747,26 +9073,128169,95 +9074,124042,95 +9075,41590,95 +9076,10739,36 +9077,190410,33 +9078,175998,95 +9079,301304,95 +9080,14874,95 +9081,314285,93 +9082,13542,64 +9083,2160,95 +9084,84626,64 +9085,42136,9 +9086,44257,95 +9087,10299,95 +9088,149511,8 +9089,339547,4 +9090,34734,95 +9091,77762,26 +9092,2566,121 +9093,135713,92 +9094,27635,95 +9095,47046,49 +9096,99698,121 +9097,214093,121 +9098,12573,121 +9099,257095,48 +9100,5511,121 +9101,50374,95 +9102,214756,95 +9103,81223,8 +9104,88558,64 +9105,120657,95 +9106,744,95 +9107,86768,95 +9108,80125,92 +9109,10916,95 +9110,357106,95 +9111,34216,67 +9112,99579,60 +9113,150056,92 +9114,27711,95 +9115,390880,26 +9116,18585,104 +9117,9703,64 +9118,249969,95 +9119,150657,9 +9120,77887,95 +9121,445,121 +9122,300424,95 +9123,11048,121 +9124,68247,95 +9125,146313,95 +9126,253395,71 +9127,310593,107 +9128,134806,95 +9129,9819,95 +9130,10433,95 +9131,21966,104 +9132,191820,92 +9133,371459,6 +9134,121354,95 +9135,85699,92 +9136,184578,95 +9137,13802,64 +9138,10162,121 +9139,447511,95 +9140,397365,31 +9141,33851,64 +9142,18935,95 +9143,29058,95 +9144,35652,81 +9145,186268,95 +9146,417489,9 +9147,39867,95 +9148,177714,60 +9149,19244,95 +9150,10524,121 +9151,41608,33 +9152,31397,95 +9153,152042,104 +9154,15762,95 +9155,10770,33 +9156,1838,93 +9157,226672,64 +9158,321039,95 +9159,38359,26 +9160,324173,95 +9161,132150,116 +9162,270646,4 +9163,158015,95 +9164,44682,95 +9165,8985,88 +9166,12124,69 +9167,25385,95 +9168,12631,82 +9169,282983,60 +9170,22396,60 +9171,281085,9 +9172,28597,95 +9173,16066,64 +9174,8316,121 +9175,24921,9 +9176,27270,95 +9177,60935,9 +9178,156954,107 +9179,53648,121 +9180,45244,92 +9181,19946,33 +9182,2061,93 +9183,149793,95 +9184,172897,95 +9185,224778,95 +9186,14979,92 +9187,16351,9 +9188,244268,95 +9189,10727,95 +9190,184341,40 +9191,5206,14 +9192,26566,9 +9193,43277,95 +9194,38043,64 +9195,175331,92 +9196,22803,95 +9197,358353,95 +9198,430058,9 +9199,25736,95 +9200,18917,92 +9201,29054,95 +9202,8080,64 +9203,51311,92 +9204,10696,95 +9205,29471,37 +9206,8014,33 +9207,341420,31 +9208,55700,121 +9209,30002,95 +9210,13912,95 +9211,8053,121 +9212,42416,33 +9213,58074,33 +9214,168541,95 +9215,370755,92 +9216,226672,91 +9217,60392,31 +9218,376579,64 +9219,62838,95 +9220,84875,121 +9221,338438,33 +9222,30307,95 +9223,115531,95 +9224,26516,95 +9225,149509,9 +9226,177979,92 +9227,12902,95 +9228,78233,4 +9229,32235,95 +9230,339419,95 +9231,4993,95 +9232,43199,95 +9233,17908,95 +9234,52395,95 +9235,1986,33 +9236,64678,95 +9237,22408,95 +9238,226693,92 +9239,1793,95 +9240,46931,119 +9241,67499,36 +9242,83430,92 +9243,11626,50 +9244,50001,95 +9245,44522,121 +9246,16374,95 +9247,238255,64 +9248,108312,95 +9249,9542,95 +9250,303542,33 +9251,112284,95 +9252,178927,95 +9253,13739,121 +9254,134355,95 +9255,17168,95 +9256,258255,64 +9257,10821,68 +9258,280045,60 +9259,26405,113 +9260,30637,64 +9261,35558,95 +9262,1926,122 +9263,28712,95 +9264,13655,95 +9265,46567,121 +9266,55156,67 +9267,598,81 +9268,63449,26 +9269,17771,9 +9270,128190,64 +9271,76784,36 +9272,40217,95 +9273,57701,26 +9274,58790,21 +9275,13437,121 +9276,46567,60 +9277,215646,92 +9278,261273,95 +9279,300090,95 +9280,15764,95 +9281,21519,67 +9282,66659,75 +9283,293970,95 +9284,377691,93 +9285,33623,64 +9286,85160,95 +9287,142989,95 +9288,351211,9 +9289,20108,50 +9290,87296,104 +9291,14505,95 +9292,353898,31 +9293,5333,64 +9294,103620,95 +9295,28997,81 +9296,82708,119 +9297,10534,95 +9298,9987,95 +9299,326255,95 +9300,8080,95 +9301,49277,121 +9302,142064,95 +9303,12158,95 +9304,77060,26 +9305,147618,95 +9306,7234,69 +9307,106358,95 +9308,91070,9 +9309,252028,44 +9310,85837,95 +9311,82448,50 +9312,30959,104 +9313,39127,64 +9314,69060,102 +9315,45335,95 +9316,37935,95 +9317,75641,64 +9318,14650,121 +9319,216156,33 +9320,264397,102 +9321,403130,95 +9322,2994,121 +9323,94365,95 +9324,270007,64 +9325,39324,104 +9326,11101,92 +9327,12407,64 +9328,341491,92 +9329,48502,102 +9330,11247,9 +9331,346490,121 +9332,61991,121 +9333,27866,95 +9334,9756,92 +9335,94480,95 +9336,60422,95 +9337,47959,64 +9338,45649,25 +9339,109391,95 +9340,14518,102 +9341,334074,64 +9342,21619,95 +9343,298165,64 +9344,99859,95 +9345,65142,26 +9346,4443,121 +9347,58244,121 +9348,310135,9 +9349,26636,121 +9350,53231,95 +9351,8951,33 +9352,13090,95 +9353,79778,9 +9354,134201,95 +9355,27203,95 +9356,13836,95 +9357,43880,95 +9358,21801,95 +9359,96713,95 +9360,101838,64 +9361,51828,95 +9362,11534,121 +9363,11333,95 +9364,303542,121 +9365,336806,8 +9366,560,95 +9367,151086,95 +9368,90056,26 +9369,46806,95 +9370,10735,95 +9371,260312,60 +9372,2012,121 +9373,14834,95 +9374,55257,71 +9375,325555,31 +9376,50073,95 +9377,46660,113 +9378,73984,121 +9379,291413,95 +9380,134480,95 +9381,42305,95 +9382,37926,95 +9383,20715,37 +9384,66340,31 +9385,41380,67 +9386,3716,92 +9387,64792,106 +9388,84903,95 +9389,91076,104 +9390,296029,95 +9391,66045,104 +9392,99261,33 +9393,91067,44 +9394,10396,95 +9395,53574,95 +9396,92424,121 +9397,26679,95 +9398,28293,95 +9399,138308,95 +9400,20648,95 +9401,9602,95 +9402,1926,104 +9403,38794,68 +9404,8010,121 +9405,41209,9 +9406,354859,95 +9407,245950,21 +9408,53701,104 +9409,34977,95 +9410,38978,64 +9411,89287,121 +9412,11307,95 +9413,57811,81 +9414,55534,95 +9415,5237,64 +9416,6934,120 +9417,142802,26 +9418,77473,50 +9419,15086,121 +9420,323929,95 +9421,50350,64 +9422,870,104 +9423,323690,95 +9424,7483,44 +9425,23512,64 +9426,357851,95 +9427,56162,92 +9428,21525,95 +9429,56647,60 +9430,32536,95 +9431,47119,121 +9432,136087,49 +9433,11777,95 +9434,61988,95 +9435,208436,48 +9436,39053,95 +9437,157919,95 +9438,435,95 +9439,123770,95 +9440,24767,95 +9441,423122,95 +9442,87148,3 +9443,91186,67 +9444,84848,121 +9445,2525,95 +9446,79599,113 +9447,292035,36 +9448,890,92 +9449,59231,95 +9450,287636,95 +9451,101766,106 +9452,88818,95 +9453,77165,92 +9454,283711,91 +9455,26958,95 +9456,49354,95 +9457,59861,95 +9458,63190,33 +9459,6951,95 +9460,264393,104 +9461,49060,20 +9462,138522,105 +9463,10142,95 +9464,220976,95 +9465,141015,60 +9466,29739,95 +9467,98355,95 +9468,174645,95 +9469,8014,92 +9470,257574,95 +9471,9423,121 +9472,122857,95 +9473,2989,95 +9474,18079,69 +9475,48339,14 +9476,765,95 +9477,13005,95 +9478,33201,33 +9479,172385,95 +9480,140887,95 +9481,23152,95 +9482,172004,92 +9483,2861,121 +9484,360606,95 +9485,75778,94 +9486,82941,82 +9487,358982,64 +9488,8071,121 +9489,45244,120 +9490,334461,95 +9491,34806,95 +9492,83788,121 +9493,273743,95 +9494,130925,95 +9495,118015,9 +9496,132957,106 +9497,84575,95 +9498,228066,95 +9499,276536,64 +9500,32634,95 +9501,149515,95 +9502,30924,95 +9503,80410,92 +9504,31061,68 +9505,28063,95 +9506,6933,95 +9507,11888,95 +9508,362363,95 +9509,85350,95 +9510,11313,113 +9511,56151,95 +9512,68752,95 +9513,9968,92 +9514,362439,95 +9515,69315,95 +9516,87827,73 +9517,393134,37 +9518,260584,26 +9519,112991,95 +9520,131861,95 +9521,31977,31 +9522,13957,64 +9523,84493,95 +9524,36211,102 +9525,309024,95 +9526,9404,67 +9527,271234,26 +9528,336669,36 +9529,55756,71 +9530,1116,33 +9531,31344,60 +9532,20055,95 +9533,32708,105 +9534,279096,95 +9535,118737,64 +9536,9532,95 +9537,167424,82 +9538,19551,9 +9539,28270,95 +9540,63273,95 +9541,14286,93 +9542,16281,95 +9543,322266,95 +9544,26366,95 +9545,13960,95 +9546,16643,9 +9547,59356,64 +9548,345489,68 +9549,39833,95 +9550,159166,64 +9551,70667,57 +9552,53792,95 +9553,9835,95 +9554,137776,9 +9555,6978,95 +9556,36056,64 +9557,30508,92 +9558,3870,33 +9559,82134,95 +9560,41591,95 +9561,30363,92 +9562,20028,95 +9563,83714,95 +9564,72875,60 +9565,6933,92 +9566,391757,95 +9567,27653,95 +9568,289207,95 +9569,302699,95 +9570,89247,60 +9571,346723,15 +9572,44398,64 +9573,33923,95 +9574,73952,76 +9575,48489,49 +9576,17654,76 +9577,1926,32 +9578,9070,104 +9579,104103,121 +9580,13678,121 +9581,28068,60 +9582,26505,121 +9583,64456,95 +9584,132122,33 +9585,169760,51 +9586,114922,109 +9587,272663,95 +9588,104485,95 +9589,56666,31 +9590,18352,48 +9591,239566,95 +9592,281291,91 +9593,11636,91 +9594,14449,91 +9595,77057,104 +9596,8652,106 +9597,83013,106 +9598,264644,94 +9599,270646,121 +9600,360249,57 +9601,505,95 +9602,421365,21 +9603,339367,31 +9604,54318,95 +9605,24432,95 +9606,205939,95 +9607,12422,121 +9608,67822,95 +9609,269258,92 +9610,20521,92 +9611,10973,95 +9612,76871,121 +9613,280840,121 +9614,24273,95 +9615,11643,95 +9616,153541,8 +9617,55435,104 +9618,91217,95 +9619,239563,95 +9620,221981,95 +9621,31118,95 +9622,57489,69 +9623,145051,8 +9624,242683,95 +9625,230182,95 +9626,322400,95 +9627,899,95 +9628,3028,95 +9629,267579,102 +9630,6977,95 +9631,25682,120 +9632,41234,95 +9633,18475,95 +9634,290864,67 +9635,152861,39 +9636,335450,95 +9637,315880,33 +9638,28671,95 +9639,426903,95 +9640,21753,95 +9641,47540,95 +9642,75778,92 +9643,30155,95 +9644,371942,33 +9645,31111,121 +9646,12528,95 +9647,274127,121 +9648,267623,121 +9649,93492,60 +9650,99545,95 +9651,56191,104 +9652,42293,92 +9653,24624,95 +9654,100791,26 +9655,30817,95 +9656,403,95 +9657,137683,95 +9658,194853,81 +9659,10632,95 +9660,10866,95 +9661,128089,8 +9662,270654,95 +9663,14467,31 +9664,4476,95 +9665,99875,121 +9666,71191,121 +9667,114931,92 +9668,22504,121 +9669,75262,26 +9670,9042,92 +9671,11812,95 +9672,413669,95 +9673,11534,92 +9674,149883,95 +9675,103938,95 +9676,26165,60 +9677,11227,121 +9678,402672,31 +9679,19017,95 +9680,88953,48 +9681,140485,68 +9682,11380,95 +9683,1251,95 +9684,43896,95 +9685,37731,50 +9686,340684,95 +9687,142746,26 +9688,47795,33 +9689,51367,95 +9690,10063,92 +9691,103073,31 +9692,21159,33 +9693,330275,121 +9694,8014,121 +9695,45098,106 +9696,1659,92 +9697,19103,64 +9698,221667,121 +9699,39219,95 +9700,445,33 +9701,47867,95 +9702,48601,121 +9703,37030,67 +9704,64044,26 +9705,81182,64 +9706,96333,95 +9707,9946,95 +9708,130544,92 +9709,78705,69 +9710,336199,121 +9711,105352,95 +9712,18898,121 +9713,186585,95 +9714,405473,94 +9715,273,92 +9716,135713,33 +9717,10647,95 +9718,51619,64 +9719,64407,33 +9720,154,95 +9721,126889,113 +9722,195796,121 +9723,316268,95 +9724,71668,95 +9725,103578,64 +9726,378018,9 +9727,3291,64 +9728,111480,121 +9729,116236,33 +9730,75595,95 +9731,62132,95 +9732,40060,9 +9733,24403,104 +9734,10373,64 +9735,20473,95 +9736,11373,85 +9737,66193,95 +9738,388764,67 +9739,336882,57 +9740,28303,95 +9741,110,107 +9742,14753,64 +9743,11859,95 +9744,408620,106 +9745,203217,81 +9746,21734,95 +9747,340176,104 +9748,374473,44 +9749,25994,64 +9750,14676,95 +9751,85420,95 +9752,325263,95 +9753,83831,95 +9754,13763,95 +9755,32790,9 +9756,9516,95 +9757,56448,37 +9758,42764,33 +9759,328712,33 +9760,84333,95 +9761,21208,92 +9762,39414,95 +9763,34588,81 +9764,63441,67 +9765,104720,95 +9766,56162,95 +9767,190341,71 +9768,50506,95 +9769,11607,95 +9770,78450,73 +9771,14286,95 +9772,82624,95 +9773,43395,95 +9774,19238,95 +9775,17015,121 +9776,123109,95 +9777,62900,71 +9778,76163,95 +9779,296029,107 +9780,10930,121 +9781,146,67 +9782,259694,95 +9783,300654,95 +9784,17282,69 +9785,189556,26 +9786,2017,95 +9787,74689,9 +9788,30527,72 +9789,49271,121 +9790,13567,95 +9791,40208,95 +9792,52440,95 +9793,126754,95 +9794,313896,92 +9795,69717,60 +9796,210653,102 +9797,15838,93 +9798,148615,95 +9799,459,92 +9800,176,95 +9801,394403,92 +9802,300983,31 +9803,271404,54 +9804,111836,31 +9805,34084,95 +9806,40970,64 +9807,50186,26 +9808,340961,121 +9809,240913,95 +9810,27138,95 +9811,86647,121 +9812,31411,95 +9813,218443,26 +9814,29224,50 +9815,15036,121 +9816,20110,95 +9817,779,92 +9818,300667,95 +9819,91690,121 +9820,19324,95 +9821,334298,91 +9822,192210,81 +9823,51357,95 +9824,99738,114 +9825,781,92 +9826,1690,95 +9827,78464,52 +9828,55730,95 +9829,133941,92 +9830,47211,60 +9831,334557,67 +9832,12561,104 +9833,22371,95 +9834,184802,95 +9835,52021,95 +9836,6145,92 +9837,16083,95 +9838,51481,95 +9839,140846,95 +9840,10568,64 +9841,253077,95 +9842,202337,95 +9843,390357,118 +9844,332280,9 +9845,37238,95 +9846,84105,95 +9847,119926,95 +9848,8985,20 +9849,14642,95 +9850,7219,33 +9851,17339,64 +9852,9914,64 +9853,110412,44 +9854,11139,9 +9855,22910,75 +9856,109251,95 +9857,376391,104 +9858,195653,95 +9859,376660,95 +9860,199463,50 +9861,31044,95 +9862,47507,44 +9863,56304,26 +9864,370264,8 +9865,26866,121 +9866,157117,95 +9867,139455,9 +9868,5279,64 +9869,331588,95 +9870,359105,75 +9871,227094,60 +9872,65891,95 +9873,3476,121 +9874,50008,64 +9875,122677,95 +9876,30527,9 +9877,20623,31 +9878,55759,71 +9879,339312,94 +9880,359413,9 +9881,317720,31 +9882,109453,95 +9883,84771,95 +9884,232462,120 +9885,63858,95 +9886,96433,95 +9887,13225,113 +9888,80596,64 +9889,121791,44 +9890,43131,95 +9891,72232,95 +9892,10077,48 +9893,111480,33 +9894,128216,9 +9895,199602,39 +9896,27824,95 +9897,1896,60 +9898,13258,64 +9899,168027,95 +9900,139826,95 +9901,242382,95 +9902,285685,3 +9903,41886,95 +9904,84336,64 +9905,38244,95 +9906,99738,36 +9907,329289,95 +9908,16175,95 +9909,41522,9 +9910,47186,121 +9911,260094,33 +9912,174925,95 +9913,16019,4 +9914,275269,31 +9915,41038,95 +9916,59722,95 +9917,40034,95 +9918,8247,95 +9919,212063,95 +9920,4147,95 +9921,694,64 +9922,73067,94 +9923,263260,92 +9924,147590,67 +9925,40218,64 +9926,56292,48 +9927,336806,50 +9928,46187,121 +9929,286873,92 +9930,413770,64 +9931,76349,91 +9932,4538,95 +9933,265351,68 +9934,267579,121 +9935,15577,95 +9936,34013,121 +9937,71859,64 +9938,162864,82 +9939,41714,57 +9940,426264,64 +9941,10659,92 +9942,18178,33 +9943,168552,4 +9944,68737,95 +9945,13842,95 +9946,36883,95 +9947,1165,33 +9948,366759,68 +9949,66022,95 +9950,136146,95 +9951,11547,95 +9952,77825,73 +9953,259,121 +9954,15849,95 +9955,17985,93 +9956,220287,96 +9957,446345,121 +9958,15013,121 +9959,130739,92 +9960,107693,121 +9961,137776,95 +9962,49609,95 +9963,33117,95 +9964,24939,95 +9965,407448,95 +9966,48617,64 +9967,399219,48 +9968,81475,9 +9969,43089,113 +9970,30449,60 +9971,58790,64 +9972,31083,64 +9973,2577,64 +9974,5494,95 +9975,42206,92 +9976,98302,121 +9977,351043,95 +9978,18917,48 +9979,62492,95 +9980,245706,95 +9981,17467,104 +9982,8277,95 +9983,451709,95 +9984,301325,95 +9985,130900,95 +9986,331313,95 +9987,18843,9 +9988,5551,95 +9989,38031,95 +9990,38448,95 +9991,44960,9 +9992,20986,104 +9993,345489,33 +9994,84425,40 +9995,174769,95 +9996,332827,31 +9997,42430,104 +9998,183932,95 +9999,280092,9 +10000,158015,121 +10001,134435,95 +10002,393367,76 +10003,2993,121 +10004,83191,94 +10005,17479,121 +10006,46770,69 +10007,20359,31 +10008,47758,95 +10009,15943,95 +10010,82519,95 +10011,113148,95 +10012,284279,57 +10013,12106,95 +10014,289720,91 +10015,11516,33 +10016,340215,95 +10017,864,95 +10018,73067,95 +10019,116350,121 +10020,197849,121 +10021,79526,26 +10022,10075,78 +10023,265563,69 +10024,53178,95 +10025,201913,95 +10026,310135,76 +10027,8672,95 +10028,248710,71 +10029,100275,93 +10030,36113,91 +10031,393172,95 +10032,31901,95 +10033,114790,92 +10034,343702,121 +10035,59189,95 +10036,37454,121 +10037,94513,1 +10038,26643,95 +10039,11337,95 +10040,36915,95 +10041,9816,95 +10042,85883,9 +10043,82767,102 +10044,249264,95 +10045,25132,95 +10046,46758,121 +10047,28370,95 +10048,373838,26 +10049,384737,9 +10050,91627,95 +10051,27259,121 +10052,206296,95 +10053,215579,95 +10054,29236,95 +10055,7088,95 +10056,288980,95 +10057,177902,95 +10058,47500,95 +10059,14770,36 +10060,8128,48 +10061,356294,76 +10062,77000,33 +10063,104954,33 +10064,151652,52 +10065,199602,93 +10066,72086,50 +10067,32891,121 +10068,203833,95 +10069,41963,95 +10070,26693,104 +10071,1450,104 +10072,137182,36 +10073,31027,67 +10074,11104,67 +10075,1959,64 +10076,24266,113 +10077,159810,121 +10078,24170,121 +10079,39938,95 +10080,43641,95 +10081,46924,104 +10082,85648,95 +10083,43385,95 +10084,408024,107 +10085,3423,121 +10086,10604,21 +10087,3870,121 +10088,8457,95 +10089,11654,64 +10090,43252,95 +10091,11795,95 +10092,13805,95 +10093,320910,31 +10094,78999,95 +10095,72203,26 +10096,30385,95 +10097,55347,95 +10098,300,33 +10099,84397,95 +10100,66628,104 +10101,13517,64 +10102,52959,95 +10103,19203,95 +10104,73799,104 +10105,16342,64 +10106,14073,31 +10107,10783,121 +10108,59434,121 +10109,130272,36 +10110,63665,121 +10111,32003,95 +10112,38547,68 +10113,186971,121 +10114,20983,95 +10115,267977,104 +10116,29113,95 +10117,67822,9 +10118,153781,8 +10119,182131,104 +10120,281085,95 +10121,109610,9 +10122,98349,95 +10123,47144,68 +10124,105884,33 +10125,107811,95 +10126,344170,62 +10127,267579,60 +10128,230295,50 +10129,212156,104 +10130,47683,47 +10131,86363,95 +10132,19140,95 +10133,18927,64 +10134,442949,95 +10135,8989,95 +10136,5165,33 +10137,215999,64 +10138,61984,104 +10139,72638,95 +10140,9056,67 +10141,2990,95 +10142,104700,121 +10143,552,33 +10144,159770,9 +10145,25645,67 +10146,259645,8 +10147,84284,113 +10148,256122,81 +10149,319993,78 +10150,269650,95 +10151,175791,33 +10152,14053,9 +10153,53693,93 +10154,63989,121 +10155,50326,9 +10156,78323,26 +10157,114982,107 +10158,12767,64 +10159,436340,87 +10160,258193,95 +10161,137357,64 +10162,13180,95 +10163,196469,95 +10164,20186,64 +10165,41609,95 +10166,295748,68 +10167,64807,95 +10168,300210,121 +10169,73098,95 +10170,239519,95 +10171,22023,95 +10172,63899,26 +10173,256561,54 +10174,109614,95 +10175,69266,95 +10176,101929,104 +10177,59930,95 +10178,333091,95 +10179,59507,121 +10180,52314,95 +10181,634,95 +10182,46806,64 +10183,29076,95 +10184,54156,121 +10185,294652,64 +10186,147722,95 +10187,48341,104 +10188,72204,26 +10189,32497,50 +10190,6440,95 +10191,27814,95 +10192,8899,44 +10193,107693,107 +10194,41479,95 +10195,86279,31 +10196,17170,104 +10197,18739,64 +10198,28586,95 +10199,2115,95 +10200,13350,95 +10201,194,121 +10202,18472,9 +10203,32085,95 +10204,19610,95 +10205,57201,95 +10206,144183,64 +10207,135713,60 +10208,10394,92 +10209,15213,9 +10210,27472,95 +10211,36113,67 +10212,10033,95 +10213,88811,104 +10214,44690,95 +10215,37462,64 +10216,296750,104 +10217,139589,64 +10218,35002,64 +10219,30022,95 +10220,131343,14 +10221,21849,95 +10222,342917,95 +10223,93263,95 +10224,4762,92 +10225,66897,121 +10226,10565,92 +10227,51836,9 +10228,435737,95 +10229,26146,64 +10230,236399,9 +10231,31022,60 +10232,195763,54 +10233,308,121 +10234,227700,121 +10235,284362,69 +10236,101183,33 +10237,78362,95 +10238,91691,8 +10239,9529,95 +10240,49314,95 +10241,102222,95 +10242,99567,64 +10243,358980,121 +10244,283995,95 +10245,29572,121 +10246,389972,104 +10247,278334,120 +10248,277847,64 +10249,375082,95 +10250,52109,95 +10251,329286,95 +10252,204994,95 +10253,19766,113 +10254,103875,121 +10255,21041,71 +10256,21431,81 +10257,1647,95 +10258,245692,121 +10259,119364,64 +10260,32166,121 +10261,4459,95 +10262,21027,95 +10263,408537,69 +10264,110,121 +10265,36407,8 +10266,30163,121 +10267,267483,95 +10268,366692,95 +10269,151870,95 +10270,49220,64 +10271,73247,95 +10272,340488,121 +10273,13056,9 +10274,37292,95 +10275,76397,95 +10276,635,95 +10277,11647,54 +10278,25983,95 +10279,206277,82 +10280,68569,92 +10281,150338,95 +10282,227975,81 +10283,229134,98 +10284,13163,95 +10285,82817,121 +10286,9870,95 +10287,44658,33 +10288,69075,81 +10289,55663,95 +10290,311324,67 +10291,322487,106 +10292,28110,95 +10293,246403,95 +10294,2764,36 +10295,85673,75 +10296,118640,71 +10297,20372,57 +10298,66967,121 +10299,103168,95 +10300,37305,95 +10301,37779,121 +10302,260001,95 +10303,6636,69 +10304,39428,64 +10305,42045,95 +10306,193756,95 +10307,75341,4 +10308,331641,60 +10309,128364,95 +10310,40817,121 +10311,16151,113 +10312,79596,48 +10313,306952,95 +10314,177104,33 +10315,2034,113 +10316,291155,64 +10317,44631,95 +10318,46228,9 +10319,52203,64 +10320,33510,64 +10321,340488,92 +10322,223497,95 +10323,294819,60 +10324,9470,67 +10325,109018,95 +10326,270842,91 +10327,295884,95 +10328,10872,95 +10329,31586,95 +10330,338518,64 +10331,254007,92 +10332,36751,95 +10333,399612,44 +10334,28345,95 +10335,175331,121 +10336,64383,121 +10337,124075,82 +10338,54318,64 +10339,2140,121 +10340,329206,91 +10341,317114,9 +10342,281291,9 +10343,341174,95 +10344,41213,48 +10345,10841,92 +10346,39816,95 +10347,19971,9 +10348,33273,60 +10349,149509,95 +10350,433244,95 +10351,86023,9 +10352,104973,33 +10353,448879,26 +10354,92132,42 +10355,24094,95 +10356,323675,95 +10357,49334,64 +10358,40127,49 +10359,278901,95 +10360,188836,67 +10361,395883,88 +10362,73969,95 +10363,256962,95 +10364,98289,64 +10365,12783,64 +10366,14518,57 +10367,122368,93 +10368,387845,106 +10369,52847,95 +10370,49097,8 +10371,9404,95 +10372,58166,92 +10373,154972,44 +10374,2084,95 +10375,55343,64 +10376,91067,121 +10377,70498,95 +10378,302104,75 +10379,229296,95 +10380,104702,121 +10381,49574,26 +10382,31913,95 +10383,68444,36 +10384,1926,4 +10385,82929,95 +10386,28384,95 +10387,10590,92 +10388,41360,95 +10389,283726,121 +10390,70667,64 +10391,33786,94 +10392,65874,64 +10393,12128,92 +10394,83860,95 +10395,46448,33 +10396,44937,121 +10397,82501,121 +10398,3092,64 +10399,305147,26 +10400,8985,119 +10401,14181,95 +10402,19725,64 +10403,35921,95 +10404,287305,92 +10405,19765,15 +10406,34223,95 +10407,377847,92 +10408,90414,95 +10409,25388,64 +10410,227552,95 +10411,336775,95 +10412,384021,95 +10413,44578,95 +10414,151431,64 +10415,70436,60 +10416,43761,1 +10417,209764,106 +10418,13073,95 +10419,104697,121 +10420,43157,95 +10421,96951,95 +10422,34512,95 +10423,14976,95 +10424,177155,66 +10425,11897,95 +10426,311093,95 +10427,356757,33 +10428,118536,95 +10429,8583,95 +10430,811,95 +10431,32139,95 +10432,332283,20 +10433,410634,26 +10434,56807,36 +10435,285803,31 +10436,1595,9 +10437,75137,64 +10438,62755,95 +10439,63493,95 +10440,209112,95 +10441,56558,95 +10442,29146,95 +10443,66447,121 +10444,113739,95 +10445,28665,95 +10446,13505,95 +10447,129966,121 +10448,400948,95 +10449,9023,95 +10450,140554,92 +10451,100814,95 +10452,185987,104 +10453,6964,95 +10454,84295,95 +10455,21431,95 +10456,101342,121 +10457,9423,104 +10458,33340,57 +10459,4882,95 +10460,37929,113 +10461,461615,104 +10462,8870,113 +10463,169760,40 +10464,12831,93 +10465,77117,106 +10466,193959,95 +10467,316042,9 +10468,27414,95 +10469,187028,34 +10470,4279,78 +10471,311764,95 +10472,56212,26 +10473,208305,107 +10474,375742,8 +10475,315837,104 +10476,291351,95 +10477,6187,121 +10478,129277,1 +10479,352036,95 +10480,61430,95 +10481,345003,95 +10482,64568,64 +10483,10257,67 +10484,64115,8 +10485,2892,113 +10486,179154,95 +10487,109261,121 +10488,68023,121 +10489,105902,64 +10490,70133,64 +10491,664,95 +10492,254446,9 +10493,223485,64 +10494,41030,95 +10495,50225,95 +10496,41402,95 +10497,10622,113 +10498,73532,92 +10499,333372,26 +10500,405670,26 +10501,92384,95 +10502,52270,95 +10503,118245,95 +10504,20625,95 +10505,9675,95 +10506,286940,95 +10507,56143,95 +10508,26752,78 +10509,333354,3 +10510,108726,29 +10511,56746,60 +10512,31262,37 +10513,4921,92 +10514,89659,95 +10515,27018,113 +10516,29239,95 +10517,343921,95 +10518,345918,95 +10519,52366,121 +10520,71859,95 +10521,40252,95 +10522,362844,95 +10523,126934,95 +10524,316776,86 +10525,10344,9 +10526,38580,95 +10527,67693,95 +10528,146970,33 +10529,79435,121 +10530,137193,121 +10531,21148,95 +10532,2721,84 +10533,52936,95 +10534,11475,71 +10535,10070,95 +10536,223391,104 +10537,10103,106 +10538,134397,95 +10539,349441,4 +10540,81010,95 +10541,12454,121 +10542,24050,95 +10543,237584,95 +10544,33931,95 +10545,269518,60 +10546,366045,9 +10547,445840,60 +10548,29510,95 +10549,124625,94 +10550,11540,121 +10551,38332,26 +10552,36375,95 +10553,459295,95 +10554,107287,60 +10555,15584,95 +10556,63625,37 +10557,21741,95 +10558,74645,33 +10559,82,95 +10560,46920,33 +10561,116352,121 +10562,48273,64 +10563,37932,95 +10564,160160,9 +10565,52713,107 +10566,41468,95 +10567,218778,95 +10568,27012,95 +10569,32031,95 +10570,48250,33 +10571,3549,50 +10572,135335,104 +10573,45935,104 +10574,147287,92 +10575,81475,92 +10576,94248,95 +10577,11133,95 +10578,12652,92 +10579,111332,95 +10580,43364,104 +10581,320873,31 +10582,12652,121 +10583,455043,91 +10584,49943,26 +10585,277687,95 +10586,47889,95 +10587,43316,95 +10588,13506,26 +10589,98094,9 +10590,3549,93 +10591,34019,104 +10592,157,95 +10593,44801,95 +10594,87827,64 +10595,287628,100 +10596,184341,95 +10597,1427,60 +10598,39039,31 +10599,20916,31 +10600,115283,95 +10601,120528,95 +10602,126127,95 +10603,321497,60 +10604,367006,71 +10605,63498,60 +10606,82368,121 +10607,40744,95 +10608,9406,36 +10609,194853,69 +10610,126323,95 +10611,44308,95 +10612,241140,98 +10613,93115,95 +10614,36658,95 +10615,157178,8 +10616,42216,33 +10617,45987,104 +10618,16083,92 +10619,27717,95 +10620,172011,92 +10621,62630,44 +10622,8665,92 +10623,47426,95 +10624,9013,95 +10625,104374,104 +10626,64685,95 +10627,85715,55 +10628,80351,95 +10629,43470,95 +10630,38792,121 +10631,105231,104 +10632,38987,9 +10633,101838,50 +10634,161024,69 +10635,14286,64 +10636,201429,92 +10637,216046,26 +10638,23452,104 +10639,72663,26 +10640,26963,121 +10641,53882,95 +10642,85709,106 +10643,12121,95 +10644,90956,95 +10645,18506,95 +10646,42460,107 +10647,320453,104 +10648,394723,69 +10649,267506,33 +10650,11302,95 +10651,41357,95 +10652,16154,95 +10653,363807,95 +10654,35404,95 +10655,49852,37 +10656,11007,95 +10657,19765,48 +10658,42345,95 +10659,40087,104 +10660,335897,20 +10661,14052,95 +10662,84305,64 +10663,263472,95 +10664,73420,95 +10665,12236,95 +10666,156981,95 +10667,127257,69 +10668,71120,95 +10669,9427,64 +10670,76202,44 +10671,369603,21 +10672,99,121 +10673,89145,95 +10674,19116,95 +10675,215797,95 +10676,74942,95 +10677,234377,95 +10678,19760,95 +10679,48118,64 +10680,1986,4 +10681,419522,33 +10682,33556,31 +10683,32558,95 +10684,48243,121 +10685,16092,60 +10686,52044,50 +10687,10173,95 +10688,7305,95 +10689,3115,104 +10690,8270,95 +10691,44027,95 +10692,53945,92 +10693,48763,68 +10694,10178,95 +10695,184710,95 +10696,49410,95 +10697,2321,95 +10698,17831,95 +10699,23739,95 +10700,332283,64 +10701,118957,54 +10702,20221,109 +10703,121173,75 +10704,186971,92 +10705,28363,95 +10706,45671,95 +10707,175339,92 +10708,149910,95 +10709,68721,91 +10710,159185,67 +10711,11706,95 +10712,33360,121 +10713,33317,95 +10714,33774,109 +10715,37910,104 +10716,30139,95 +10717,5491,95 +10718,30126,95 +10719,1813,92 +10720,295964,95 +10721,242,95 +10722,425774,113 +10723,369883,95 +10724,27935,26 +10725,49847,64 +10726,65958,121 +10727,24440,64 +10728,117550,121 +10729,764,95 +10730,97936,95 +10731,274127,9 +10732,12716,121 +10733,24821,57 +10734,35852,64 +10735,43635,104 +10736,34482,95 +10737,24657,64 +10738,26983,95 +10739,85673,95 +10740,258480,95 +10741,68545,64 +10742,124581,95 +10743,455363,95 +10744,435041,28 +10745,43503,95 +10746,99453,64 +10747,9840,121 +10748,297762,95 +10749,105981,95 +10750,9893,95 +10751,9677,92 +10752,17577,95 +10753,105551,95 +10754,25507,95 +10755,341491,14 +10756,42796,95 +10757,39845,95 +10758,134782,33 +10759,92950,104 +10760,28238,104 +10761,8932,34 +10762,56807,121 +10763,11902,6 +10764,13741,121 +10765,1691,95 +10766,97598,95 +10767,71725,6 +10768,268099,95 +10769,319993,118 +10770,88005,95 +10771,17258,95 +10772,25473,95 +10773,49398,121 +10774,152737,95 +10775,54570,95 +10776,342684,60 +10777,266044,92 +10778,422,33 +10779,348673,64 +10780,25598,95 +10781,15472,50 +10782,206563,64 +10783,103332,95 +10784,78789,44 +10785,47561,64 +10786,42703,95 +10787,90992,104 +10788,61985,95 +10789,11415,95 +10790,115665,60 +10791,103014,95 +10792,30449,94 +10793,131689,95 +10794,11658,106 +10795,384262,71 +10796,61950,33 +10797,26298,100 +10798,157343,95 +10799,10915,33 +10800,182097,4 +10801,126418,95 +10802,13911,95 +10803,936,95 +10804,28448,102 +10805,22683,95 +10806,46760,11 +10807,52907,64 +10808,259292,95 +10809,12506,64 +10810,12122,95 +10811,63066,80 +10812,347031,95 +10813,30921,95 +10814,83015,64 +10815,162877,36 +10816,9312,95 +10817,3291,104 +10818,43434,92 +10819,9793,95 +10820,42087,95 +10821,21052,121 +10822,51800,33 +10823,3780,104 +10824,87148,60 +10825,49060,121 +10826,58244,9 +10827,9950,95 +10828,90001,26 +10829,74505,95 +10830,289720,121 +10831,60608,121 +10832,38874,33 +10833,81220,95 +10834,109379,118 +10835,302026,104 +10836,268618,14 +10837,30666,64 +10838,320037,60 +10839,84284,92 +10840,9885,113 +10841,297263,9 +10842,29043,92 +10843,102,93 +10844,351211,95 +10845,208434,95 +10846,18548,64 +10847,9577,92 +10848,94468,95 +10849,59118,121 +10850,5924,95 +10851,11048,33 +10852,58404,121 +10853,25597,106 +10854,3033,95 +10855,291270,95 +10856,39286,64 +10857,9426,64 +10858,72602,95 +10859,8010,64 +10860,13848,92 +10861,38043,95 +10862,36919,48 +10863,297560,21 +10864,218351,95 +10865,8816,50 +10866,408381,33 +10867,38328,21 +10868,98328,95 +10869,115565,95 +10870,134238,95 +10871,24486,95 +10872,120837,95 +10873,22471,50 +10874,351242,95 +10875,331745,95 +10876,2994,95 +10877,5638,95 +10878,263855,68 +10879,22419,64 +10880,252853,95 +10881,89551,113 +10882,85411,95 +10883,70119,121 +10884,29272,60 +10885,77822,64 +10886,239845,64 +10887,39519,95 +10888,11917,95 +10889,290316,44 +10890,43913,95 +10891,82624,18 +10892,99008,95 +10893,346723,48 +10894,19255,95 +10895,9785,95 +10896,48210,121 +10897,149149,60 +10898,91551,92 +10899,43457,95 +10900,273084,95 +10901,347106,50 +10902,14215,113 +10903,56653,121 +10904,284343,4 +10905,5899,36 +10906,74666,121 +10907,174594,95 +10908,40850,64 +10909,12447,95 +10910,38681,33 +10911,11391,93 +10912,72900,60 +10913,71444,104 +10914,49110,121 +10915,81110,95 +10916,36960,95 +10917,85743,121 +10918,341490,93 +10919,126523,26 +10920,239018,95 +10921,16032,93 +10922,42215,95 +10923,19855,95 +10924,41495,95 +10925,24258,21 +10926,293092,71 +10927,155765,104 +10928,413417,95 +10929,6038,95 +10930,211387,95 +10931,303857,95 +10932,336265,95 +10933,254193,95 +10934,92391,64 +10935,32091,91 +10936,8355,95 +10937,49391,64 +10938,37084,95 +10939,53417,95 +10940,277688,95 +10941,12622,104 +10942,31021,8 +10943,1271,95 +10944,124625,64 +10945,207699,95 +10946,112287,64 +10947,81538,95 +10948,104776,104 +10949,229221,95 +10950,55681,95 +10951,18826,95 +10952,110381,121 +10953,159138,95 +10954,3087,95 +10955,33102,95 +10956,50674,120 +10957,115810,44 +10958,48780,95 +10959,20096,95 +10960,168022,113 +10961,17473,95 +10962,46261,95 +10963,294254,95 +10964,42787,95 +10965,97910,95 +10966,43390,95 +10967,208869,64 +10968,31899,95 +10969,20493,31 +10970,1922,44 +10971,73772,64 +10972,44287,95 +10973,52936,60 +10974,43231,33 +10975,59189,64 +10976,33916,48 +10977,268212,92 +10978,21214,95 +10979,27102,121 +10980,91628,92 +10981,10013,95 +10982,115427,37 +10983,62684,92 +10984,211,92 +10985,25890,95 +10986,337,121 +10987,135317,92 +10988,11370,64 +10989,92257,121 +10990,19350,9 +10991,26798,95 +10992,72057,33 +10993,55448,95 +10994,220500,95 +10995,34334,121 +10996,35008,44 +10997,105833,104 +10998,110416,44 +10999,16876,95 +11000,87514,95 +11001,844,92 +11002,15170,95 +11003,95037,95 +11004,134394,95 +11005,80012,95 +11006,325428,5 +11007,16784,92 +11008,40130,33 +11009,13591,64 +11010,83229,105 +11011,14587,64 +11012,7459,95 +11013,51736,95 +11014,11960,67 +11015,36657,95 +11016,65713,26 +11017,347666,60 +11018,23048,95 +11019,16177,36 +11020,29695,95 +11021,6644,95 +11022,8276,121 +11023,5552,64 +11024,62731,26 +11025,215658,21 +11026,310567,31 +11027,128311,95 +11028,339944,119 +11029,1899,121 +11030,120802,95 +11031,263873,9 +11032,36335,64 +11033,118,64 +11034,10389,49 +11035,41312,64 +11036,268350,95 +11037,42542,9 +11038,16444,64 +11039,7288,95 +11040,83114,54 +11041,390059,95 +11042,10744,95 +11043,191476,95 +11044,15177,57 +11045,22160,95 +11046,285860,9 +11047,14869,95 +11048,206647,95 +11049,70278,119 +11050,44511,4 +11051,14695,95 +11052,31165,64 +11053,17926,95 +11054,2280,95 +11055,144331,16 +11056,75204,71 +11057,73943,9 +11058,32921,95 +11059,14066,113 +11060,103539,52 +11061,2124,95 +11062,338189,9 +11063,85414,95 +11064,11137,48 +11065,44211,33 +11066,56095,73 +11067,61528,64 +11068,98339,9 +11069,50674,95 +11070,254439,81 +11071,85628,48 +11072,378446,121 +11073,14660,95 +11074,3478,121 +11075,38681,60 +11076,209263,95 +11077,45576,64 +11078,13437,107 +11079,47112,60 +11080,100024,9 +11081,54514,26 +11082,43832,95 +11083,17189,104 +11084,317,92 +11085,359255,95 +11086,91067,67 +11087,258585,71 +11088,46420,113 +11089,11534,33 +11090,75,95 +11091,27986,95 +11092,383809,121 +11093,45302,95 +11094,12720,104 +11095,354832,95 +11096,97614,121 +11097,72421,92 +11098,788,95 +11099,76829,33 +11100,74924,95 +11101,20017,92 +11102,332283,94 +11103,35632,30 +11104,418969,95 +11105,347979,26 +11106,52362,95 +11107,315010,64 +11108,47914,95 +11109,4478,95 +11110,36929,95 +11111,387957,95 +11112,40978,121 +11113,37865,95 +11114,9472,95 +11115,224944,9 +11116,63773,95 +11117,47816,95 +11118,211059,21 +11119,315841,104 +11120,57575,95 +11121,67130,95 +11122,133783,50 +11123,33784,50 +11124,11333,60 +11125,79526,44 +11126,25898,95 +11127,18512,95 +11128,359204,121 +11129,68444,118 +11130,230266,57 +11131,9286,92 +11132,42678,95 +11133,55294,95 +11134,117452,36 +11135,10740,64 +11136,21576,95 +11137,61904,17 +11138,8665,64 +11139,7483,60 +11140,262988,95 +11141,75892,60 +11142,45522,95 +11143,298695,64 +11144,35292,95 +11145,48617,36 +11146,49853,92 +11147,218688,92 +11148,122,95 +11149,293660,95 +11150,291,95 +11151,23397,95 +11152,16077,95 +11153,2463,67 +11154,31421,95 +11155,203186,95 +11156,61548,95 +11157,11373,6 +11158,53459,64 +11159,241639,121 +11160,19108,95 +11161,120077,95 +11162,127913,14 +11163,335970,95 +11164,118760,95 +11165,160046,26 +11166,96252,95 +11167,238749,95 +11168,11234,95 +11169,39284,50 +11170,19150,95 +11171,11873,95 +11172,79550,95 +11173,390547,60 +11174,142656,104 +11175,46145,95 +11176,57438,57 +11177,14422,95 +11178,74581,104 +11179,11610,95 +11180,49837,64 +11181,524,95 +11182,9389,121 +11183,347258,113 +11184,42852,64 +11185,205724,95 +11186,344039,95 +11187,47112,94 +11188,376394,64 +11189,156277,95 +11190,132328,95 +11191,274820,95 +11192,53407,95 +11193,9028,121 +11194,84450,95 +11195,94820,64 +11196,116318,104 +11197,9252,92 +11198,2778,95 +11199,48339,92 +11200,44658,26 +11201,32546,69 +11202,27019,121 +11203,150117,64 +11204,75778,64 +11205,100770,64 +11206,84848,102 +11207,380731,121 +11208,59881,95 +11209,25143,64 +11210,4988,95 +11211,152989,121 +11212,436,51 +11213,43319,95 +11214,25005,95 +11215,100661,95 +11216,14452,9 +11217,77012,95 +11218,122709,95 +11219,167021,21 +11220,42170,104 +11221,655,92 +11222,210079,33 +11223,58985,95 +11224,1254,121 +11225,246127,57 +11226,11553,73 +11227,284274,95 +11228,7483,121 +11229,45649,121 +11230,26264,95 +11231,280840,60 +11232,329135,31 +11233,438012,71 +11234,14008,9 +11235,259761,50 +11236,31984,64 +11237,75162,95 +11238,131822,71 +11239,14543,95 +11240,34092,36 +11241,282762,47 +11242,219233,104 +11243,413052,49 +11244,222388,95 +11245,63304,26 +11246,228066,64 +11247,83899,95 +11248,42501,92 +11249,67794,64 +11250,295621,34 +11251,1163,95 +11252,44566,31 +11253,31372,104 +11254,220,95 +11255,112973,95 +11256,56435,33 +11257,26758,95 +11258,317214,35 +11259,347328,4 +11260,61113,95 +11261,9426,95 +11262,322785,95 +11263,9598,113 +11264,55370,33 +11265,38157,9 +11266,21250,95 +11267,173847,33 +11268,21029,95 +11269,120212,64 +11270,1164,95 +11271,14904,113 +11272,27917,64 +11273,261112,57 +11274,42187,95 +11275,273879,64 +11276,375012,65 +11277,83761,1 +11278,11338,95 +11279,11159,64 +11280,137315,33 +11281,36220,95 +11282,180644,80 +11283,157354,95 +11284,21765,95 +11285,2180,50 +11286,15036,21 +11287,360205,94 +11288,16791,64 +11289,55534,92 +11290,10222,95 +11291,211144,9 +11292,195068,95 +11293,28320,9 +11294,21380,33 +11295,29259,121 +11296,17008,92 +11297,458808,92 +11298,1116,64 +11299,44877,64 +11300,199647,95 +11301,217412,92 +11302,32338,9 +11303,30330,95 +11304,178809,9 +11305,260522,26 +11306,301671,31 +11307,31542,33 +11308,181454,9 +11309,59191,64 +11310,135713,107 +11311,80220,121 +11312,436340,7 +11313,10491,92 +11314,67377,64 +11315,51250,95 +11316,269173,64 +11317,44458,67 +11318,43462,121 +11319,169343,60 +11320,19042,95 +11321,107073,102 +11322,31850,106 +11323,287483,92 +11324,99859,64 +11325,66187,33 +11326,336050,37 +11327,276401,95 +11328,165718,104 +11329,16884,93 +11330,44641,95 +11331,64190,64 +11332,32684,95 +11333,68097,95 +11334,13056,95 +11335,34899,121 +11336,54662,92 +11337,45610,95 +11338,267523,31 +11339,10129,92 +11340,10652,95 +11341,4286,33 +11342,158947,48 +11343,83614,26 +11344,54287,95 +11345,786,95 +11346,47200,52 +11347,144229,9 +11348,8063,33 +11349,2349,92 +11350,36373,95 +11351,4832,95 +11352,2259,92 +11353,16800,64 +11354,184351,95 +11355,15086,33 +11356,257345,95 +11357,47812,26 +11358,43342,95 +11359,194509,95 +11360,13680,95 +11361,16092,50 +11362,306199,95 +11363,364410,64 +11364,83435,26 +11365,20120,95 +11366,10204,95 +11367,294652,9 +11368,10870,92 +11369,85435,64 +11370,448992,92 +11371,74666,92 +11372,461088,1 +11373,200813,95 +11374,49974,105 +11375,232100,95 +11376,106155,33 +11377,10394,94 +11378,18165,95 +11379,43524,95 +11380,297702,95 +11381,15616,95 +11382,411638,60 +11383,256092,113 +11384,45990,33 +11385,308,95 +11386,22051,95 +11387,169,95 +11388,72545,95 +11389,163018,21 +11390,340616,121 +11391,42892,33 +11392,23385,64 +11393,163706,63 +11394,29424,95 +11395,70988,31 +11396,57327,121 +11397,31597,95 +11398,128396,104 +11399,37710,121 +11400,10087,121 +11401,416635,119 +11402,42706,95 +11403,201581,95 +11404,388243,95 +11405,42021,95 +11406,293625,95 +11407,398390,15 +11408,121234,95 +11409,27461,95 +11410,381054,95 +11411,19274,106 +11412,26165,105 +11413,75948,91 +11414,146216,9 +11415,32526,95 +11416,13596,95 +11417,52784,50 +11418,107593,95 +11419,14164,95 +11420,20364,31 +11421,47493,121 +11422,58903,95 +11423,89551,64 +11424,357529,95 +11425,50012,95 +11426,48791,92 +11427,304336,95 +11428,21413,95 +11429,185158,95 +11430,128120,105 +11431,292033,76 +11432,48210,33 +11433,16987,31 +11434,169760,95 +11435,131475,9 +11436,154207,95 +11437,284293,95 +11438,52936,92 +11439,118059,95 +11440,29362,120 +11441,127564,95 +11442,47065,69 +11443,75510,95 +11444,30709,95 +11445,27970,95 +11446,18763,67 +11447,124633,121 +11448,20521,95 +11449,310133,95 +11450,25598,104 +11451,293189,31 +11452,48202,95 +11453,38027,95 +11454,100669,95 +11455,97024,95 +11456,86234,81 +11457,75622,95 +11458,105384,33 +11459,21118,95 +11460,935,95 +11461,15440,57 +11462,2002,121 +11463,153795,95 +11464,118953,95 +11465,247691,95 +11466,9598,95 +11467,128190,94 +11468,5721,95 +11469,11577,95 +11470,61121,50 +11471,129332,95 +11472,47536,64 +11473,37939,104 +11474,94135,64 +11475,208529,95 +11476,26644,64 +11477,293380,95 +11478,353979,95 +11479,62045,102 +11480,18803,95 +11481,13701,95 +11482,244,95 +11483,103902,113 +11484,340616,44 +11485,169721,120 +11486,334298,67 +11487,44458,91 +11488,1819,95 +11489,109329,95 +11490,295314,121 +11491,12525,95 +11492,22404,95 +11493,323665,95 +11494,8985,82 +11495,75244,64 +11496,89116,104 +11497,290911,92 +11498,167221,33 +11499,13957,9 +11500,329865,95 +11501,193878,95 +11502,92060,95 +11503,143169,95 +11504,72946,95 +11505,137726,44 +11506,104474,121 +11507,11886,95 +11508,10749,92 +11509,32451,95 +11510,56339,33 +11511,26298,121 +11512,43346,64 +11513,57342,33 +11514,36164,106 +11515,37590,21 +11516,1599,92 +11517,358980,33 +11518,62837,95 +11519,336549,26 +11520,22752,95 +11521,149154,26 +11522,31131,95 +11523,79137,64 +11524,136752,10 +11525,38962,64 +11526,90125,64 +11527,43976,1 +11528,5481,33 +11529,13486,92 +11530,264553,95 +11531,330588,92 +11532,54243,92 +11533,81549,68 +11534,31128,95 +11535,371462,36 +11536,33563,95 +11537,1595,92 +11538,92465,71 +11539,20307,95 +11540,19348,95 +11541,63360,95 +11542,86838,64 +11543,43432,69 +11544,49106,26 +11545,13956,95 +11546,1253,64 +11547,270400,121 +11548,2179,95 +11549,104277,104 +11550,35,95 +11551,59199,9 +11552,67102,119 +11553,30875,33 +11554,10596,95 +11555,59965,95 +11556,283445,95 +11557,28730,95 +11558,16076,50 +11559,21671,95 +11560,16432,37 +11561,10801,92 +11562,142499,106 +11563,3563,95 +11564,110608,98 +11565,84104,95 +11566,41505,95 +11567,85469,92 +11568,99229,85 +11569,225283,64 +11570,42242,95 +11571,250535,64 +11572,56391,104 +11573,977,95 +11574,10493,95 +11575,79419,64 +11576,4266,33 +11577,408220,95 +11578,72933,104 +11579,94674,36 +11580,9651,64 +11581,73835,33 +11582,2323,95 +11583,10362,95 +11584,73984,33 +11585,1251,104 +11586,343173,44 +11587,38783,95 +11588,262975,9 +11589,306323,71 +11590,7549,95 +11591,85196,95 +11592,207636,95 +11593,26899,95 +11594,12575,92 +11595,68050,33 +11596,76640,95 +11597,17708,95 +11598,13536,95 +11599,140818,57 +11600,389630,95 +11601,24254,95 +11602,42517,95 +11603,418772,95 +11604,18998,95 +11605,440508,52 +11606,64454,92 +11607,2135,95 +11608,384450,95 +11609,46190,95 +11610,31003,95 +11611,15086,44 +11612,13333,95 +11613,280495,95 +11614,105254,50 +11615,111042,95 +11616,4806,95 +11617,21435,121 +11618,44895,95 +11619,24918,95 +11620,34078,95 +11621,112072,71 +11622,433,95 +11623,63081,49 +11624,77094,49 +11625,29923,57 +11626,22447,64 +11627,85435,113 +11628,27224,95 +11629,10075,92 +11630,60677,71 +11631,109354,26 +11632,246127,121 +11633,142798,26 +11634,22136,121 +11635,12617,95 +11636,27832,95 +11637,38021,121 +11638,351809,121 +11639,31805,95 +11640,43143,64 +11641,21587,95 +11642,86543,95 +11643,32202,95 +11644,29471,92 +11645,82492,95 +11646,80281,31 +11647,922,104 +11648,329724,121 +11649,352917,37 +11650,65795,60 +11651,276635,64 +11652,146315,95 +11653,14349,95 +11654,2196,64 +11655,27053,121 +11656,48205,121 +11657,49009,8 +11658,224243,64 +11659,1578,95 +11660,246320,121 +11661,20301,95 +11662,24062,95 +11663,43266,95 +11664,273404,9 +11665,118150,121 +11666,270403,92 +11667,81232,64 +11668,14126,95 +11669,74922,8 +11670,226269,95 +11671,42739,33 +11672,170677,64 +11673,36786,95 +11674,296750,73 +11675,47110,21 +11676,9753,20 +11677,1899,9 +11678,461615,121 +11679,433082,93 +11680,65973,104 +11681,17044,121 +11682,91380,33 +11683,80219,95 +11684,2965,95 +11685,339994,95 +11686,43504,95 +11687,26949,95 +11688,84348,95 +11689,1450,121 +11690,11056,60 +11691,73241,95 +11692,25694,95 +11693,64499,95 +11694,23512,113 +11695,36691,95 +11696,47748,106 +11697,240745,95 +11698,280674,9 +11699,17935,26 +11700,117120,64 +11701,390376,26 +11702,14752,31 +11703,53206,68 +11704,354544,95 +11705,209401,19 +11706,23566,95 +11707,227700,60 +11708,80941,95 +11709,15310,95 +11710,403605,17 +11711,266856,64 +11712,21380,60 +11713,73262,92 +11714,7234,95 +11715,78285,121 +11716,311021,95 +11717,29290,113 +11718,32082,95 +11719,308165,82 +11720,25520,64 +11721,157787,121 +11722,245536,37 +11723,14611,95 +11724,390930,104 +11725,9294,95 +11726,182799,95 +11727,30060,95 +11728,13390,95 +11729,805,95 +11730,243935,95 +11731,13996,95 +11732,341077,64 +11733,46813,121 +11734,74549,95 +11735,9461,95 +11736,53380,95 +11737,30363,36 +11738,291871,95 +11739,27276,104 +11740,11204,92 +11741,29959,95 +11742,10500,92 +11743,308529,95 +11744,37936,9 +11745,82624,93 +11746,210052,114 +11747,34449,6 +11748,26005,67 +11749,21778,121 +11750,54825,64 +11751,171759,95 +11752,21620,76 +11753,71700,9 +11754,9078,95 +11755,56693,33 +11756,248933,92 +11757,28940,95 +11758,14694,9 +11759,82321,92 +11760,5048,121 +11761,153,104 +11762,8672,64 +11763,12831,92 +11764,25625,95 +11765,338063,95 +11766,41209,64 +11767,39413,121 +11768,36421,64 +11769,14811,95 +11770,250066,20 +11771,64215,49 +11772,1966,95 +11773,36236,121 +11774,18189,95 +11775,11584,95 +11776,128842,91 +11777,4254,31 +11778,93350,95 +11779,43001,121 +11780,9776,95 +11781,95453,106 +11782,212481,64 +11783,75363,64 +11784,16135,94 +11785,34469,92 +11786,94340,113 +11787,10389,67 +11788,32091,73 +11789,387886,106 +11790,47386,95 +11791,76011,95 +11792,31265,95 +11793,11880,20 +11794,105760,121 +11795,38460,95 +11796,107973,95 +11797,29825,95 +11798,267310,82 +11799,139692,104 +11800,11446,95 +11801,431244,33 +11802,1637,95 +11803,377151,121 +11804,65771,93 +11805,227156,95 +11806,104172,92 +11807,52188,68 +11808,81522,121 +11809,19200,95 +11810,260030,24 +11811,1833,95 +11812,217948,95 +11813,289712,95 +11814,6,95 +11815,408508,95 +11816,690,121 +11817,335837,82 +11818,371462,94 +11819,29449,64 +11820,71805,57 +11821,228676,95 +11822,191536,16 +11823,56329,67 +11824,3053,64 +11825,118889,95 +11826,33623,104 +11827,322614,12 +11828,35284,95 +11829,37003,95 +11830,83430,44 +11831,59181,95 +11832,28209,121 +11833,42252,95 +11834,48319,95 +11835,66967,33 +11836,241574,95 +11837,38389,64 +11838,33481,121 +11839,205481,64 +11840,73872,121 +11841,49850,33 +11842,75578,44 +11843,21348,44 +11844,347264,95 +11845,227717,95 +11846,29694,95 +11847,5206,50 +11848,55725,95 +11849,205481,93 +11850,131366,92 +11851,38920,113 +11852,21348,121 +11853,26503,33 +11854,92496,95 +11855,10948,95 +11856,14136,95 +11857,45441,104 +11858,97767,95 +11859,314283,95 +11860,5608,92 +11861,65904,48 +11862,316154,95 +11863,65881,106 +11864,36811,64 +11865,59408,92 +11866,33107,95 +11867,9406,95 +11868,20521,9 +11869,289159,95 +11870,5552,121 +11871,79526,36 +11872,28212,50 +11873,23340,95 +11874,76010,60 +11875,52302,104 +11876,53864,95 +11877,1926,66 +11878,74237,36 +11879,8985,8 +11880,11131,64 +11881,40087,95 +11882,44006,64 +11883,8985,64 +11884,92989,73 +11885,5060,64 +11886,31262,92 +11887,31067,95 +11888,16203,95 +11889,101183,121 +11890,43821,95 +11891,4520,64 +11892,410537,95 +11893,45514,121 +11894,191820,33 +11895,42832,9 +11896,15712,64 +11897,47525,95 +11898,83,95 +11899,14357,50 +11900,205724,64 +11901,16157,104 +11902,47412,95 +11903,127585,95 +11904,155325,121 +11905,286545,92 +11906,253257,95 +11907,68063,33 +11908,325712,102 +11909,88641,95 +11910,45928,95 +11911,412851,119 +11912,30175,95 +11913,72105,95 +11914,289010,92 +11915,95627,95 +11916,41142,71 +11917,164366,44 +11918,108048,121 +11919,37710,64 +11920,41569,92 +11921,109451,95 +11922,30198,104 +11923,266102,23 +11924,322148,92 +11925,37340,64 +11926,25807,95 +11927,64239,121 +11928,32868,95 +11929,18638,95 +11930,354287,95 +11931,31005,95 +11932,111605,95 +11933,399106,95 +11934,8897,121 +11935,47536,33 +11936,92341,95 +11937,22093,102 +11938,266433,9 +11939,315319,33 +11940,67696,95 +11941,363579,106 +11942,35395,64 +11943,190853,121 +11944,21242,95 +11945,94587,95 +11946,289159,114 +11947,32038,9 +11948,38732,95 +11949,46436,121 +11950,27358,95 +11951,26116,92 +11952,37291,64 +11953,43973,58 +11954,118283,95 +11955,131836,121 +11956,25520,121 +11957,213914,9 +11958,15712,121 +11959,14142,95 +11960,38772,95 +11961,13925,95 +11962,264560,95 +11963,46020,95 +11964,65055,95 +11965,101838,71 +11966,197297,68 +11967,221732,49 +11968,28805,31 +11969,21481,95 +11970,117500,121 +11971,16440,95 +11972,297633,120 +11973,10005,95 +11974,328631,71 +11975,2454,8 +11976,413770,20 +11977,8985,105 +11978,151068,26 +11979,70199,95 +11980,136743,95 +11981,45675,95 +11982,10075,64 +11983,27470,95 +11984,2898,95 +11985,10739,121 +11986,390747,95 +11987,396535,106 +11988,23855,95 +11989,2503,92 +11990,9426,9 +11991,2604,95 +11992,11524,95 +11993,337958,113 +11994,772,95 +11995,37340,95 +11996,44921,95 +11997,48885,95 +11998,52943,60 +11999,211729,95 +12000,42941,95 +12001,37969,9 +12002,219572,91 +12003,238307,26 +12004,17875,95 +12005,184741,95 +12006,38244,102 +12007,133328,95 +12008,365709,60 +12009,8988,95 +12010,12205,104 +12011,13853,95 +12012,49158,95 +12013,41805,95 +12014,468707,71 +12015,46247,95 +12016,41187,68 +12017,65416,95 +12018,6166,107 +12019,101006,92 +12020,169656,92 +12021,188357,33 +12022,10586,95 +12023,122435,92 +12024,255692,9 +12025,118139,95 +12026,202241,95 +12027,216989,95 +12028,954,95 +12029,24170,33 +12030,267935,95 +12031,17644,95 +12032,44369,75 +12033,264309,95 +12034,327,64 +12035,21752,81 +12036,290370,9 +12037,52238,33 +12038,64850,121 +12039,935,64 +12040,11001,95 +12041,239056,95 +12042,22387,95 +12043,147903,95 +12044,47851,26 +12045,191068,95 +12046,3478,92 +12047,60153,8 +12048,23967,92 +12049,18899,121 +12050,74961,95 +12051,57654,72 +12052,169656,6 +12053,29979,9 +12054,51999,50 +12055,15559,95 +12056,30929,64 +12057,34151,64 +12058,82,80 +12059,78339,95 +12060,443319,95 +12061,265019,95 +12062,381525,82 +12063,44669,95 +12064,404459,19 +12065,9292,95 +12066,10066,95 +12067,18446,95 +12068,18731,67 +12069,28062,50 +12070,274857,95 +12071,106016,95 +12072,131457,95 +12073,418437,95 +12074,31665,95 +12075,31700,95 +12076,342765,8 +12077,30265,67 +12078,41559,95 +12079,14977,95 +12080,36247,104 +12081,235,95 +12082,38792,33 +12083,242090,95 +12084,16331,95 +12085,56391,26 +12086,129518,36 +12087,26882,95 +12088,68752,92 +12089,10865,95 +12090,116894,95 +12091,69775,31 +12092,172,95 +12093,63291,26 +12094,432883,95 +12095,10491,36 +12096,84655,95 +12097,14047,95 +12098,230179,71 +12099,96132,33 +12100,5482,33 +12101,13408,95 +12102,13580,64 +12103,132363,95 +12104,208436,15 +12105,3061,95 +12106,46986,95 +12107,63472,95 +12108,325780,33 +12109,18783,95 +12110,8985,114 +12111,44155,121 +12112,15081,95 +12113,41764,92 +12114,75375,64 +12115,16058,113 +12116,48949,95 +12117,24078,95 +12118,577,95 +12119,42231,95 +12120,25603,64 +12121,32708,114 +12122,36811,26 +12123,18722,95 +12124,37468,95 +12125,312497,9 +12126,1404,64 +12127,38437,95 +12128,316654,31 +12129,316170,33 +12130,32226,95 +12131,660,64 +12132,144792,95 +12133,522,95 +12134,162282,33 +12135,19552,83 +12136,28448,95 +12137,115109,95 +12138,298584,95 +12139,100088,64 +12140,174278,95 +12141,48339,64 +12142,92132,26 +12143,14873,113 +12144,340187,95 +12145,175171,95 +12146,96133,92 +12147,60083,20 +12148,45671,64 +12149,73981,107 +12150,22029,95 +12151,32609,95 +12152,37429,68 +12153,12101,95 +12154,230680,92 +12155,40990,64 +12156,254188,95 +12157,83890,95 +12158,47448,57 +12159,42023,95 +12160,70192,95 +12161,124501,64 +12162,125673,95 +12163,122023,64 +12164,91261,26 +12165,36325,95 +12166,22182,33 +12167,61314,33 +12168,199374,93 +12169,14552,95 +12170,382873,98 +12171,148284,31 +12172,412202,94 +12173,35025,121 +12174,87612,95 +12175,342684,50 +12176,104466,121 +12177,35428,26 +12178,44933,33 +12179,37978,9 +12180,47211,121 +12181,42619,95 +12182,370213,92 +12183,30584,64 +12184,167,64 +12185,88390,95 +12186,67162,95 +12187,313108,106 +12188,68721,95 +12189,52949,95 +12190,66634,113 +12191,227932,81 +12192,99738,26 +12193,260312,121 +12194,327389,95 +12195,72032,33 +12196,20304,95 +12197,14145,14 +12198,37329,95 +12199,72375,121 +12200,400610,36 +12201,214910,106 +12202,18586,95 +12203,3036,95 +12204,219666,114 +12205,72251,95 +12206,73501,95 +12207,22307,95 +12208,2309,92 +12209,6552,95 +12210,33343,95 +12211,357706,31 +12212,12707,95 +12213,114096,95 +12214,2758,95 +12215,15664,95 +12216,302802,33 +12217,362541,95 +12218,2675,95 +12219,381645,95 +12220,174712,104 +12221,233466,95 +12222,3089,95 +12223,117942,95 +12224,223485,76 +12225,4286,121 +12226,34838,64 +12227,28673,33 +12228,59738,95 +12229,76468,95 +12230,12129,95 +12231,43002,95 +12232,49500,64 +12233,33613,50 +12234,11645,104 +12235,257831,92 +12236,37405,92 +12237,222220,64 +12238,15189,95 +12239,156356,95 +12240,246417,26 +12241,79645,95 +12242,161885,95 +12243,12102,95 +12244,16447,106 +12245,56937,57 +12246,126227,95 +12247,12113,64 +12248,3051,64 +12249,41857,95 +12250,310888,95 +12251,66634,121 +12252,9589,92 +12253,10330,95 +12254,322548,95 +12255,1966,36 +12256,340053,121 +12257,215881,95 +12258,127372,95 +12259,46261,102 +12260,86241,95 +12261,795,92 +12262,153163,95 +12263,21712,104 +12264,102949,60 +12265,70247,95 +12266,220809,64 +12267,32091,67 +12268,28169,95 +12269,461805,95 +12270,409550,104 +12271,71329,45 +12272,51434,9 +12273,49950,95 +12274,151937,95 +12275,66125,113 +12276,43092,64 +12277,214093,107 +12278,14217,104 +12279,39127,121 +12280,49524,95 +12281,105528,95 +12282,155724,95 +12283,5177,93 +12284,110525,95 +12285,103236,31 +12286,28535,9 +12287,255384,64 +12288,43976,121 +12289,136582,121 +12290,47096,121 +12291,14041,95 +12292,72898,121 +12293,375599,67 +12294,322922,95 +12295,33586,95 +12296,51141,50 +12297,179715,21 +12298,11653,67 +12299,8842,92 +12300,7548,64 +12301,368342,92 +12302,10946,95 +12303,29082,121 +12304,189225,84 +12305,284117,36 +12306,12767,9 +12307,45191,102 +12308,35110,121 +12309,253277,9 +12310,88273,92 +12311,73984,60 +12312,13555,95 +12313,70585,95 +12314,40985,95 +12315,19029,95 +12316,38618,95 +12317,46059,95 +12318,13734,121 +12319,17111,49 +12320,2309,95 +12321,18725,67 +12322,76493,95 +12323,90030,95 +12324,421962,9 +12325,315256,31 +12326,156711,64 +12327,68569,64 +12328,214938,118 +12329,44680,9 +12330,15044,64 +12331,241254,95 +12332,171357,95 +12333,172705,17 +12334,125510,104 +12335,78265,95 +12336,82622,95 +12337,8491,95 +12338,20421,64 +12339,9928,95 +12340,135708,95 +12341,118677,95 +12342,139521,31 +12343,9502,95 +12344,110608,66 +12345,176143,95 +12346,419192,76 +12347,75138,64 +12348,138486,95 +12349,25520,95 +12350,14138,113 +12351,69065,64 +12352,301224,113 +12353,33704,121 +12354,423988,36 +12355,253309,64 +12356,62441,64 +12357,28553,9 +12358,300210,92 +12359,30449,33 +12360,36971,60 +12361,42122,64 +12362,74921,8 +12363,266102,78 +12364,19286,95 +12365,229594,95 +12366,70489,95 +12367,3033,64 +12368,245917,104 +12369,43268,95 +12370,325365,95 +12371,412363,4 +12372,17347,20 +12373,11854,31 +12374,102949,33 +12375,14569,95 +12376,35001,95 +12377,288977,95 +12378,216046,52 +12379,48852,95 +12380,32834,9 +12381,262454,121 +12382,25038,9 +12383,9639,95 +12384,267497,64 +12385,195385,33 +12386,81541,33 +12387,31993,95 +12388,70074,95 +12389,99,60 +12390,27380,95 +12391,30535,33 +12392,288694,33 +12393,270886,9 +12394,57816,121 +12395,266285,64 +12396,54796,95 +12397,29787,95 +12398,107985,64 +12399,78563,44 +12400,67,36 +12401,11004,92 +12402,38221,104 +12403,373546,95 +12404,116312,60 +12405,63958,26 +12406,133716,95 +12407,398137,95 +12408,294093,113 +12409,20210,95 +12410,339419,64 +12411,128437,95 +12412,36299,95 +12413,17940,9 +12414,414453,95 +12415,38010,104 +12416,266082,121 +12417,43912,121 +12418,166255,31 +12419,25953,95 +12420,198277,95 +12421,25518,121 +12422,73532,71 +12423,172908,95 +12424,256924,95 +12425,428355,95 +12426,40990,9 +12427,50942,95 +12428,219466,64 +12429,146,73 +12430,340027,94 +12431,2977,64 +12432,26686,95 +12433,129359,50 +12434,101783,31 +12435,28820,33 +12436,858,95 +12437,24397,95 +12438,508,64 +12439,31263,95 +12440,27381,95 +12441,14353,95 +12442,79500,95 +12443,192210,95 +12444,25913,95 +12445,142391,95 +12446,26805,95 +12447,54318,113 +12448,284362,109 +12449,382170,104 +12450,86820,95 +12451,228647,95 +12452,45336,69 +12453,1369,95 +12454,34774,95 +12455,64961,33 +12456,13728,121 +12457,469172,105 +12458,15556,95 +12459,98644,95 +12460,314371,94 +12461,9953,95 +12462,337758,85 +12463,88529,104 +12464,16147,9 +12465,15935,113 +12466,11912,121 +12467,248211,31 +12468,228355,31 +12469,16229,95 +12470,26809,95 +12471,58416,71 +12472,12591,9 +12473,227964,81 +12474,63615,60 +12475,34582,57 +12476,42871,95 +12477,10847,95 +12478,242458,106 +12479,10918,95 +12480,42825,95 +12481,161545,33 +12482,12309,95 +12483,28280,95 +12484,11129,94 +12485,13318,14 +12486,70074,107 +12487,101376,50 +12488,47682,64 +12489,94663,37 +12490,12599,104 +12491,33489,121 +12492,55700,93 +12493,93856,95 +12494,364088,95 +12495,330770,60 +12496,361025,95 +12497,4551,95 +12498,56815,102 +12499,2453,95 +12500,14782,95 +12501,61716,91 +12502,10425,92 +12503,136743,48 +12504,11572,9 +12505,12230,95 +12506,16137,121 +12507,286545,20 +12508,23637,33 +12509,1599,95 +12510,85126,95 +12511,37301,95 +12512,31596,95 +12513,46982,48 +12514,2978,95 +12515,78802,121 +12516,387399,95 +12517,414827,68 +12518,5965,95 +12519,209406,9 +12520,1418,60 +12521,445,82 +12522,399612,121 +12523,7085,98 +12524,25407,95 +12525,412851,26 +12526,452142,64 +12527,247436,37 +12528,13079,95 +12529,28663,95 +12530,42329,95 +12531,21948,95 +12532,11091,95 +12533,154537,95 +12534,13169,95 +12535,10643,104 +12536,76198,121 +12537,42066,95 +12538,70282,95 +12539,52485,95 +12540,65887,121 +12541,289723,95 +12542,52454,95 +12543,10071,95 +12544,359746,60 +12545,120478,95 +12546,131039,9 +12547,84708,95 +12548,311324,95 +12549,6687,92 +12550,45838,95 +12551,185564,95 +12552,22606,95 +12553,268174,95 +12554,33481,71 +12555,25468,95 +12556,10917,95 +12557,25919,95 +12558,395479,95 +12559,35572,31 +12560,11046,64 +12561,82,92 +12562,49815,95 +12563,6145,95 +12564,166886,16 +12565,57781,26 +12566,91333,9 +12567,9651,95 +12568,118131,95 +12569,25538,104 +12570,288438,95 +12571,142012,95 +12572,30624,95 +12573,2143,64 +12574,1116,92 +12575,183258,64 +12576,38874,60 +12577,51423,71 +12578,230266,64 +12579,31364,31 +12580,24584,64 +12581,50780,35 +12582,78281,121 +12583,37103,95 +12584,250535,95 +12585,43354,64 +12586,9593,95 +12587,83461,28 +12588,169364,31 +12589,291155,95 +12590,257716,71 +12591,78522,95 +12592,40220,95 +12593,267935,31 +12594,353641,71 +12595,277396,64 +12596,413198,67 +12597,307020,68 +12598,75174,9 +12599,99095,121 +12600,301729,113 +12601,14878,23 +12602,68179,95 +12603,414610,95 +12604,31018,95 +12605,73775,92 +12606,154972,36 +12607,76059,44 +12608,155597,33 +12609,14539,67 +12610,155426,8 +12611,28573,33 +12612,41160,64 +12613,1116,44 +12614,34763,31 +12615,244201,95 +12616,80032,95 +12617,91390,92 +12618,4375,64 +12619,39107,104 +12620,10193,95 +12621,33623,121 +12622,76101,95 +12623,267310,4 +12624,59349,92 +12625,50086,49 +12626,53739,60 +12627,15907,120 +12628,30379,95 +12629,38718,104 +12630,126315,102 +12631,271919,121 +12632,39495,95 +12633,341077,120 +12634,192133,94 +12635,11950,95 +12636,13972,95 +12637,10590,95 +12638,31280,64 +12639,7006,9 +12640,157351,95 +12641,5413,64 +12642,398289,95 +12643,279543,26 +12644,107445,26 +12645,86543,9 +12646,26891,92 +12647,68123,92 +12648,508,95 +12649,293189,21 +12650,73123,36 +12651,341007,46 +12652,28212,92 +12653,75752,95 +12654,43894,95 +12655,76609,121 +12656,18,121 +12657,17495,9 +12658,33673,95 +12659,32275,95 +12660,11626,92 +12661,70090,121 +12662,11704,95 +12663,167707,105 +12664,248469,95 +12665,7288,92 +12666,19495,52 +12667,14482,26 +12668,21828,113 +12669,229328,64 +12670,295273,91 +12671,76211,95 +12672,183962,33 +12673,289183,71 +12674,98025,33 +12675,321497,95 +12676,53879,95 +12677,332759,92 +12678,229297,64 +12679,54099,95 +12680,43571,33 +12681,106944,33 +12682,262088,113 +12683,18002,64 +12684,44140,95 +12685,10162,95 +12686,2982,95 +12687,293189,50 +12688,30352,95 +12689,47459,64 +12690,75623,95 +12691,45576,9 +12692,27993,95 +12693,300155,64 +12694,300669,95 +12695,345069,95 +12696,53472,36 +12697,390777,95 +12698,104462,121 +12699,50295,95 +12700,319971,95 +12701,68715,104 +12702,61799,113 +12703,16447,121 +12704,56448,26 +12705,13713,121 +12706,71133,33 +12707,355111,95 +12708,360603,95 +12709,315837,64 +12710,1922,121 +12711,215379,95 +12712,22701,104 +12713,10097,94 +12714,9948,95 +12715,336029,95 +12716,238302,64 +12717,166076,95 +12718,8063,26 +12719,296029,23 +12720,257454,64 +12721,10333,95 +12722,6038,67 +12723,42139,60 +12724,187010,95 +12725,42473,95 +12726,158150,95 +12727,156335,95 +12728,136386,64 +12729,27503,95 +12730,16866,95 +12731,209251,26 +12732,88359,95 +12733,48116,78 +12734,51144,50 +12735,52556,107 +12736,16358,64 +12737,33623,44 +12738,196852,31 +12739,38286,33 +12740,257450,95 +12741,81589,95 +12742,9405,95 +12743,126319,121 +12744,26042,95 +12745,12171,95 +12746,100275,9 +12747,61966,26 +12748,32577,64 +12749,42679,33 +12750,5237,120 +12751,17974,33 +12752,11855,95 +12753,183832,95 +12754,333484,95 +12755,121848,95 +12756,26267,95 +12757,399790,64 +12758,29290,95 +12759,241258,95 +12760,49230,95 +12761,8847,95 +12762,142528,121 +12763,10425,95 +12764,36971,92 +12765,1381,95 +12766,267793,95 +12767,334299,121 +12768,814,95 +12769,120,95 +12770,323370,95 +12771,33336,121 +12772,382501,44 +12773,1427,121 +12774,117531,95 +12775,111479,95 +12776,155325,93 +12777,16999,78 +12778,290762,64 +12779,135652,95 +12780,12483,9 +12781,8588,64 +12782,215740,121 +12783,183073,60 +12784,43544,33 +12785,99909,95 +12786,27095,121 +12787,21208,121 +12788,116327,95 +12789,43790,95 +12790,45693,9 +12791,39358,121 +12792,24685,64 +12793,9504,95 +12794,4592,95 +12795,13733,121 +12796,223946,121 +12797,110381,7 +12798,76438,52 +12799,96935,33 +12800,383140,95 +12801,747,95 +12802,50032,64 +12803,428398,26 +12804,156627,8 +12805,17820,95 +12806,983,64 +12807,43046,95 +12808,44896,95 +12809,17622,64 +12810,105,95 +12811,285733,95 +12812,29568,121 +12813,49597,95 +12814,137853,95 +12815,114499,95 +12816,248933,82 +12817,4497,60 +12818,13333,67 +12819,4266,121 +12820,99738,105 +12821,418990,95 +12822,146238,95 +12823,578,95 +12824,10804,95 +12825,40120,95 +12826,149232,95 +12827,159211,33 +12828,18569,95 +12829,87022,36 +12830,10918,64 +12831,86321,81 +12832,20481,95 +12833,6079,48 +12834,8341,31 +12835,11516,60 +12836,64847,104 +12837,43093,64 +12838,15592,95 +12839,2993,33 +12840,338,92 +12841,50126,95 +12842,12645,95 +12843,63281,26 +12844,24921,121 +12845,168994,104 +12846,97672,26 +12847,89688,121 +12848,341957,95 +12849,64784,104 +12850,40998,31 +12851,361750,95 +12852,924,95 +12853,5165,121 +12854,71051,26 +12855,64725,92 +12856,34469,33 +12857,5753,95 +12858,296941,95 +12859,130957,66 +12860,84626,95 +12861,11485,95 +12862,10008,95 +12863,393732,9 +12864,16077,9 +12865,75229,50 +12866,47002,104 +12867,29352,33 +12868,124470,95 +12869,109424,95 +12870,267035,92 +12871,292014,26 +12872,112083,95 +12873,29577,95 +12874,308165,31 +12875,9779,95 +12876,204965,92 +12877,42420,33 +12878,17465,95 +12879,74950,107 +12880,82737,26 +12881,258251,6 +12882,69217,95 +12883,44256,121 +12884,286372,95 +12885,257081,95 +12886,4248,95 +12887,270403,4 +12888,326874,121 +12889,204800,95 +12890,277967,82 +12891,21132,9 +12892,374614,9 +12893,49920,95 +12894,257912,95 +12895,70436,37 +12896,15303,6 +12897,13519,95 +12898,101325,95 +12899,49038,4 +12900,315837,67 +12901,112304,26 +12902,37206,9 +12903,11902,92 +12904,134350,104 +12905,217038,71 +12906,15689,94 +12907,29299,26 +12908,99351,95 +12909,184345,95 +12910,110115,64 +12911,20361,121 +12912,693,95 +12913,81708,21 +12914,64437,121 +12915,15144,95 +12916,100247,95 +12917,73873,94 +12918,52705,121 +12919,76207,121 +12920,18047,95 +12921,82098,33 +12922,84154,95 +12923,29698,121 +12924,34796,95 +12925,2295,95 +12926,52072,68 +12927,360283,95 +12928,1907,95 +12929,1634,121 +12930,123283,95 +12931,94820,8 +12932,70874,26 +12933,49929,94 +12934,445993,95 +12935,325039,26 +12936,296194,95 +12937,38237,75 +12938,91419,95 +12939,73612,95 +12940,121791,121 +12941,28417,121 +12942,319513,44 +12943,276935,31 +12944,61934,95 +12945,26880,57 +12946,5279,95 +12947,253250,95 +12948,253263,31 +12949,27432,95 +12950,16985,95 +12951,15089,9 +12952,966,95 +12953,48131,64 +12954,14444,95 +12955,40793,95 +12956,21142,95 +12957,17282,95 +12958,166883,121 +12959,352372,95 +12960,6575,95 +12961,37702,67 +12962,34151,95 +12963,22476,95 +12964,101330,107 +12965,162442,104 +12966,126889,9 +12967,14923,95 +12968,311301,92 +12969,39536,95 +12970,161495,95 +12971,47144,85 +12972,171446,95 +12973,91607,95 +12974,411221,9 +12975,105576,121 +12976,56372,26 +12977,345925,9 +12978,11915,121 +12979,343140,67 +12980,43978,1 +12981,86718,31 +12982,20075,95 +12983,64481,121 +12984,364690,95 +12985,121530,93 +12986,10162,64 +12987,404567,95 +12988,47238,114 +12989,429801,95 +12990,256561,95 +12991,41076,50 +12992,141955,95 +12993,46149,104 +12994,411442,91 +12995,86305,9 +12996,300210,44 +12997,283686,95 +12998,228205,95 +12999,37958,95 +13000,47508,95 +13001,321142,64 +13002,341689,95 +13003,1253,95 +13004,147815,31 +13005,28710,69 +13006,12221,105 +13007,63764,121 +13008,346490,85 +13009,187022,104 +13010,37053,104 +13011,253533,31 +13012,16171,92 +13013,655,64 +13014,259075,102 +13015,63186,121 +13016,19166,121 +13017,45213,33 +13018,1969,95 +13019,11084,36 +13020,329819,121 +13021,99324,95 +13022,10867,33 +13023,11496,33 +13024,189682,95 +13025,15285,9 +13026,317723,95 +13027,89492,95 +13028,27696,95 +13029,53214,113 +13030,13571,95 +13031,85507,95 +13032,9471,95 +13033,49273,121 +13034,47238,92 +13035,678,95 +13036,1116,60 +13037,2300,95 +13038,273106,95 +13039,63215,121 +13040,18098,95 +13041,58886,44 +13042,35735,71 +13043,8471,121 +13044,205587,95 +13045,73933,9 +13046,48609,95 +13047,19166,92 +13048,58251,121 +13049,47143,121 +13050,177358,31 +13051,140814,95 +13052,37923,95 +13053,82520,95 +13054,33339,95 +13055,113178,95 +13056,20758,95 +13057,35790,31 +13058,200727,64 +13059,10268,121 +13060,2486,95 +13061,226163,33 +13062,52183,68 +13063,336011,95 +13064,27443,95 +13065,141819,104 +13066,9572,92 +13067,41301,9 +13068,385654,64 +13069,8584,67 +13070,133715,95 +13071,101006,60 +13072,28455,95 +13073,160261,31 +13074,249703,71 +13075,14432,9 +13076,43562,95 +13077,57737,95 +13078,26880,92 +13079,33541,95 +13080,177271,95 +13081,58081,33 +13082,33642,95 +13083,144942,64 +13084,153541,121 +13085,352186,95 +13086,125413,95 +13087,95874,95 +13088,37269,95 +13089,48231,9 +13090,196027,50 +13091,64736,26 +13092,393559,107 +13093,24199,36 +13094,12481,67 +13095,1554,95 +13096,63376,31 +13097,221732,104 +13098,52150,68 +13099,25132,35 +13100,369894,95 +13101,35200,95 +13102,38908,95 +13103,83562,64 +13104,10783,95 +13105,44578,64 +13106,32074,95 +13107,239619,4 +13108,94935,31 +13109,26796,64 +13110,15316,95 +13111,317557,95 +13112,83195,73 +13113,124517,104 +13114,195544,33 +13115,28430,64 +13116,266741,95 +13117,45949,92 +13118,39310,95 +13119,39978,121 +13120,103597,121 +13121,376823,95 +13122,68637,121 +13123,24927,95 +13124,288259,95 +13125,111744,95 +13126,49843,64 +13127,267931,109 +13128,29989,120 +13129,273481,95 +13130,22559,95 +13131,78461,95 +13132,219781,71 +13133,110392,64 +13134,9914,78 +13135,13355,95 +13136,11196,93 +13137,48273,9 +13138,23382,95 +13139,229559,60 +13140,253263,64 +13141,16135,64 +13142,153141,64 +13143,29192,64 +13144,24746,95 +13145,52918,95 +13146,20561,64 +13147,244786,95 +13148,458808,31 +13149,87148,95 +13150,188102,9 +13151,63194,64 +13152,45069,95 +13153,28170,95 +13154,5544,121 +13155,56601,95 +13156,292033,9 +13157,13956,44 +13158,53367,95 +13159,121923,95 +13160,287,95 +13161,61581,60 +13162,32166,9 +13163,229702,95 +13164,97630,95 +13165,120370,95 +13166,134360,95 +13167,24739,95 +13168,24655,95 +13169,84354,109 +13170,80443,33 +13171,14916,95 +13172,158908,95 +13173,11137,95 +13174,42674,33 +13175,43923,95 +13176,18585,95 +13177,460870,64 +13178,7515,64 +13179,310593,121 +13180,124625,92 +13181,15043,95 +13182,97051,95 +13183,58076,95 +13184,242224,113 +13185,226001,92 +13186,55784,95 +13187,82430,64 +13188,113525,95 +13189,84892,95 +13190,246917,9 +13191,19103,95 +13192,261439,93 +13193,292387,121 +13194,24874,95 +13195,28171,1 +13196,263627,9 +13197,244268,81 +13198,315837,113 +13199,11364,95 +13200,16082,95 +13201,377516,95 +13202,21442,106 +13203,11058,9 +13204,10269,95 +13205,97206,78 +13206,11692,95 +13207,39462,104 +13208,91571,33 +13209,123969,93 +13210,159810,33 +13211,116554,64 +13212,167951,95 +13213,8985,94 +13214,139463,64 +13215,291866,95 +13216,9993,113 +13217,58060,121 +13218,27777,95 +13219,38448,94 +13220,318052,4 +13221,25501,95 +13222,296456,95 +13223,11004,64 +13224,58547,95 +13225,113743,95 +13226,102630,95 +13227,49365,95 +13228,127144,64 +13229,216369,105 +13230,137145,95 +13231,337012,92 +13232,369524,95 +13233,300210,64 +13234,79833,95 +13235,9543,95 +13236,3520,33 +13237,352733,64 +13238,22779,95 +13239,148,60 +13240,80592,95 +13241,68202,95 +13242,46758,95 +13243,48333,22 +13244,12912,95 +13245,369245,33 +13246,1665,95 +13247,19887,31 +13248,317723,78 +13249,73147,4 +13250,63736,95 +13251,773,95 +13252,38164,121 +13253,190250,64 +13254,63831,44 +13255,208309,48 +13256,57100,67 +13257,19209,95 +13258,51971,121 +13259,16866,64 +13260,342588,104 +13261,26252,121 +13262,72611,26 +13263,46773,75 +13264,77068,33 +13265,309581,95 +13266,297736,64 +13267,60189,26 +13268,41764,50 +13269,82465,95 +13270,347835,9 +13271,121230,95 +13272,4592,92 +13273,5201,95 +13274,54548,92 +13275,394051,91 +13276,49521,95 +13277,38874,102 +13278,3686,92 +13279,55624,92 +13280,46189,95 +13281,35392,95 +13282,8665,9 +13283,86825,95 +13284,67669,9 +13285,131764,95 +13286,26752,121 +13287,21145,121 +13288,26688,95 +13289,107028,64 +13290,50506,9 +13291,85544,107 +13292,98914,26 +13293,72648,95 +13294,34734,9 +13295,307931,95 +13296,64310,107 +13297,89481,64 +13298,197089,121 +13299,54146,104 +13300,14457,95 +13301,9667,92 +13302,8332,92 +13303,20507,31 +13304,64450,75 +13305,76533,64 +13306,182499,9 +13307,301804,95 +13308,77241,68 +13309,287233,95 +13310,17971,95 +13311,152736,95 +13312,248633,95 +13313,124157,106 +13314,101904,121 +13315,51739,104 +13316,134355,121 +13317,336655,34 +13318,63876,121 +13319,287301,71 +13320,209251,121 +13321,46286,95 +13322,92311,95 +13323,9286,95 +13324,7483,4 +13325,272693,95 +13326,135286,121 +13327,81684,92 +13328,73952,95 +13329,43250,95 +13330,37954,95 +13331,3081,95 +13332,22792,95 +13333,27523,33 +13334,113638,95 +13335,76286,95 +13336,51976,10 +13337,32237,106 +13338,43000,121 +13339,34995,102 +13340,11205,67 +13341,23719,95 +13342,33228,64 +13343,246860,107 +13344,231540,92 +13345,33345,95 +13346,321142,98 +13347,135713,98 +13348,46830,95 +13349,273896,95 +13350,16307,64 +13351,52999,121 +13352,14349,9 +13353,70881,95 +13354,109690,60 +13355,284096,121 +13356,280583,57 +13357,64130,95 +13358,71320,9 +13359,14489,26 +13360,2662,95 +13361,45827,95 +13362,235208,33 +13363,263855,95 +13364,6081,64 +13365,90461,95 +13366,11692,113 +13367,47559,64 +13368,10946,92 +13369,49689,4 +13370,11516,107 +13371,16523,95 +13372,38743,95 +13373,42251,95 +13374,99819,60 +13375,55853,107 +13376,20871,26 +13377,301368,95 +13378,10134,95 +13379,78377,121 +13380,77950,95 +13381,109391,64 +13382,67,92 +13383,185180,60 +13384,315362,50 +13385,139519,109 +13386,251232,95 +13387,127369,107 +13388,19082,95 +13389,43741,64 +13390,80560,95 +13391,11113,95 +13392,55437,104 +13393,98864,95 +13394,10710,95 +13395,43915,64 +13396,28739,95 +13397,26864,60 +13398,40221,95 +13399,96411,37 +13400,15476,95 +13401,127380,95 +13402,30402,95 +13403,21927,64 +13404,19912,95 +13405,332168,95 +13406,29362,95 +13407,30366,8 +13408,114242,92 +13409,95516,64 +13410,448763,81 +13411,352327,95 +13412,283686,63 +13413,130881,64 +13414,229,95 +13415,178,95 +13416,80717,109 +13417,147360,92 +13418,64393,26 +13419,36968,95 +13420,282963,64 +13421,74510,95 +13422,49343,64 +13423,525,95 +13424,81022,69 +13425,243473,44 +13426,358724,95 +13427,12121,121 +13428,56599,104 +13429,447758,64 +13430,197057,26 +13431,623,64 +13432,87894,95 +13433,106136,95 +13434,370178,113 +13435,351809,69 +13436,381032,95 +13437,18774,64 +13438,3172,95 +13439,10119,57 +13440,15371,104 +13441,62036,33 +13442,86520,104 +13443,132518,49 +13444,38432,95 +13445,18836,95 +13446,14069,104 +13447,286873,107 +13448,18082,102 +13449,416680,80 +13450,301875,95 +13451,26971,60 +13452,3478,33 +13453,31773,95 +13454,33146,31 +13455,62764,95 +13456,86023,64 +13457,209556,95 +13458,28120,95 +13459,132601,95 +13460,294272,95 +13461,46124,73 +13462,85317,26 +13463,1984,95 +13464,2760,64 +13465,14534,95 +13466,321303,71 +13467,2640,95 +13468,13483,95 +13469,45556,9 +13470,15749,9 +13471,144229,64 +13472,173456,95 +13473,38154,104 +13474,10491,95 +13475,173494,59 +13476,87349,64 +13477,982,95 +13478,875,95 +13479,104739,44 +13480,167330,92 +13481,7085,33 +13482,316885,93 +13483,16784,95 +13484,108634,104 +13485,31512,104 +13486,189696,95 +13487,43808,95 +13488,78734,95 +13489,160844,33 +13490,1116,94 +13491,382873,6 +13492,413052,95 +13493,45935,73 +13494,47886,60 +13495,174000,95 +13496,9070,95 +13497,242042,95 +13498,91181,95 +13499,93457,95 +13500,2197,121 +13501,67,4 +13502,253251,60 +13503,47943,121 +13504,56068,33 +13505,200447,95 +13506,33280,57 +13507,277778,95 +13508,37497,95 +13509,64786,49 +13510,42123,76 +13511,252059,8 +13512,55370,121 +13513,16539,36 +13514,56669,95 +13515,301348,95 +13516,33510,94 +13517,174195,95 +13518,4338,95 +13519,226167,9 +13520,324930,95 +13521,47329,95 +13522,436343,37 +13523,18440,95 +13524,20806,64 +13525,188598,54 +13526,31856,8 +13527,256474,64 +13528,185156,64 +13529,13105,95 +13530,44012,44 +13531,10192,95 +13532,73981,31 +13533,2267,95 +13534,45000,121 +13535,37284,106 +13536,31413,68 +13537,21060,95 +13538,32588,95 +13539,48508,121 +13540,61212,33 +13541,239513,95 +13542,288193,95 +13543,19971,121 +13544,16171,64 +13545,11012,64 +13546,333385,95 +13547,13835,9 +13548,28036,95 +13549,47574,113 +13550,31042,95 +13551,6687,64 +13552,22784,95 +13553,325645,33 +13554,137651,95 +13555,86266,106 +13556,20092,31 +13557,11000,95 +13558,13354,95 +13559,284053,113 +13560,8672,92 +13561,85602,60 +13562,32635,80 +13563,12154,95 +13564,28297,95 +13565,77010,121 +13566,344120,9 +13567,261273,9 +13568,416680,69 +13569,8584,95 +13570,43594,95 +13571,2080,95 +13572,18447,95 +13573,9403,95 +13574,126250,50 +13575,116973,95 +13576,107499,95 +13577,327231,50 +13578,26514,95 +13579,31880,95 +13580,4960,95 +13581,31439,67 +13582,321779,48 +13583,307649,26 +13584,97110,105 +13585,10909,95 +13586,25500,121 +13587,86920,64 +13588,85543,121 +13589,59006,95 +13590,414910,95 +13591,148347,26 +13592,68139,94 +13593,48846,33 +13594,12113,95 +13595,11788,64 +13596,1811,95 +13597,33107,69 +13598,19757,48 +13599,11589,6 +13600,84249,95 +13601,9591,95 +13602,3405,33 +13603,12831,95 +13604,257907,95 +13605,104251,104 +13606,84284,104 +13607,17745,95 +13608,9882,95 +13609,30036,95 +13610,97365,44 +13611,14400,44 +13612,119820,82 +13613,271664,95 +13614,357390,104 +13615,319092,55 +13616,148327,9 +13617,11614,33 +13618,857,95 +13619,177677,95 +13620,413998,64 +13621,17614,4 +13622,13792,113 +13623,11912,33 +13624,8985,92 +13625,12632,82 +13626,387558,95 +13627,125409,95 +13628,16296,95 +13629,47446,64 +13630,69560,95 +13631,141145,44 +13632,76084,95 +13633,9943,92 +13634,17893,60 +13635,10992,95 +13636,279090,92 +13637,83735,95 +13638,197785,95 +13639,398786,31 +13640,188836,73 +13641,268099,107 +13642,373541,95 +13643,339342,114 +13644,274479,95 +13645,16442,95 +13646,10946,64 +13647,50166,121 +13648,20536,95 +13649,70436,6 +13650,27526,95 +13651,70581,113 +13652,62670,95 +13653,1942,64 +13654,51999,93 +13655,27221,113 +13656,46178,93 +13657,187993,95 +13658,95177,95 +13659,142984,95 +13660,109122,95 +13661,268380,104 +13662,21721,95 +13663,332794,121 +13664,84993,113 +13665,13358,95 +13666,415072,95 +13667,89647,95 +13668,134750,95 +13669,48841,95 +13670,21041,50 +13671,70057,67 +13672,36915,64 +13673,229757,95 +13674,154972,37 +13675,44123,95 +13676,393521,4 +13677,81522,92 +13678,21325,104 +13679,38362,33 +13680,128237,95 +13681,524,121 +13682,296192,95 +13683,15805,95 +13684,285400,95 +13685,61813,95 +13686,21334,1 +13687,70864,33 +13688,44716,50 +13689,174188,95 +13690,201749,92 +13691,39217,31 +13692,8383,92 +13693,68737,64 +13694,101669,95 +13695,115972,64 +13696,20530,104 +13697,108712,81 +13698,52418,106 +13699,336804,68 +13700,54491,95 +13701,68569,94 +13702,36943,95 +13703,45211,60 +13704,53622,95 +13705,41211,121 +13706,128767,21 +13707,31618,95 +13708,922,92 +13709,62012,121 +13710,133521,8 +13711,12427,121 +13712,361181,68 +13713,56853,33 +13714,17038,95 +13715,2486,64 +13716,44875,95 +13717,41979,26 +13718,45505,104 +13719,18214,95 +13720,11232,95 +13721,252034,55 +13722,202662,37 +13723,67375,95 +13724,13834,9 +13725,660,121 +13726,156326,121 +13727,31915,95 +13728,1387,95 +13729,8929,5 +13730,166666,92 +13731,134144,95 +13732,75229,92 +13733,280030,4 +13734,42436,33 +13735,37405,107 +13736,73027,64 +13737,22968,95 +13738,61644,95 +13739,16313,49 +13740,1904,95 +13741,10109,67 +13742,118716,95 +13743,42346,36 +13744,43792,95 +13745,77915,95 +13746,398633,95 +13747,228970,95 +13748,332806,64 +13749,2608,95 +13750,83191,64 +13751,11096,95 +13752,218728,92 +13753,395767,44 +13754,13946,95 +13755,8010,69 +13756,9958,9 +13757,346646,106 +13758,197849,37 +13759,9843,64 +13760,32559,8 +13761,29492,95 +13762,16460,95 +13763,284306,36 +13764,31592,95 +13765,255388,95 +13766,1049,95 +13767,249457,33 +13768,30583,50 +13769,188858,121 +13770,25655,67 +13771,403593,89 +13772,14088,104 +13773,125764,113 +13774,284013,121 +13775,136762,9 +13776,21893,92 +13777,159701,95 +13778,44233,95 +13779,15260,95 +13780,255160,64 +13781,125249,95 +13782,28658,95 +13783,31522,121 +13784,34672,95 +13785,270303,95 +13786,77137,33 +13787,187596,95 +13788,336669,81 +13789,107052,33 +13790,32274,95 +13791,11001,92 +13792,353533,31 +13793,40952,95 +13794,84971,95 +13795,19371,95 +13796,42149,95 +13797,53950,95 +13798,47955,95 +13799,95536,33 +13800,173634,95 +13801,77986,26 +13802,7459,92 +13803,15830,50 +13804,573,64 +13805,92251,121 +13806,72614,55 +13807,117790,36 +13808,598,121 +13809,81787,33 +13810,22943,95 +13811,38282,121 +13812,2993,60 +13813,44936,95 +13814,18776,95 +13815,92848,95 +13816,18093,94 +13817,59191,95 +13818,77381,48 +13819,203539,92 +13820,148371,104 +13821,26119,64 +13822,32029,95 +13823,96987,95 +13824,148807,95 +13825,81616,92 +13826,28452,95 +13827,255456,33 +13828,28366,67 +13829,18530,64 +13830,55608,26 +13831,9821,95 +13832,15242,95 +13833,1818,121 +13834,798,92 +13835,10362,121 +13836,5206,92 +13837,75761,95 +13838,313922,95 +13839,139244,64 +13840,92269,95 +13841,10740,121 +13842,59838,95 +13843,24469,64 +13844,57489,60 +13845,73532,121 +13846,286873,120 +13847,18898,64 +13848,56589,121 +13849,36089,95 +13850,8932,44 +13851,3574,95 +13852,12591,95 +13853,14078,100 +13854,17889,95 +13855,179847,8 +13856,98277,121 +13857,27145,121 +13858,107250,9 +13859,95807,95 +13860,17203,64 +13861,12763,95 +13862,11576,95 +13863,11202,95 +13864,30127,81 +13865,201085,9 +13866,65211,95 +13867,9568,95 +13868,278706,95 +13869,11402,64 +13870,60071,95 +13871,36917,104 +13872,17038,9 +13873,16135,95 +13874,8194,95 +13875,48594,60 +13876,121052,64 +13877,77564,26 +13878,186019,95 +13879,26768,64 +13880,41298,102 +13881,94204,95 +13882,42021,92 +13883,36214,104 +13884,73661,95 +13885,29989,64 +13886,13531,95 +13887,44545,95 +13888,52705,33 +13889,14041,9 +13890,231216,107 +13891,41166,64 +13892,158739,95 +13893,136619,33 +13894,50838,95 +13895,199155,95 +13896,44800,95 +13897,43139,64 +13898,80304,95 +13899,12089,121 +13900,86274,64 +13901,23096,95 +13902,64944,107 +13903,2890,60 +13904,88818,64 +13905,53945,33 +13906,79094,33 +13907,1428,95 +13908,108664,33 +13909,433945,104 +13910,11012,121 +13911,61266,26 +13912,183827,95 +13913,2087,95 +13914,197082,121 +13915,10269,64 +13916,23107,95 +13917,319073,64 +13918,241239,35 +13919,456101,95 +13920,413421,31 +13921,99329,121 +13922,163706,33 +13923,53404,121 +13924,10663,95 +13925,10391,95 +13926,21955,95 +13927,19754,95 +13928,72032,92 +13929,59882,95 +13930,448847,64 +13931,317198,9 +13932,262447,26 +13933,29449,95 +13934,401222,95 +13935,116711,95 +13936,123359,102 +13937,256092,9 +13938,26390,95 +13939,296633,106 +13940,119374,60 +13941,81787,92 +13942,245775,121 +13943,8414,9 +13944,87953,73 +13945,44472,64 +13946,78307,95 +13947,358924,95 +13948,54415,95 +13949,26969,60 +13950,153518,71 +13951,10320,95 +13952,218658,9 +13953,201765,60 +13954,51358,95 +13955,141267,50 +13956,344906,95 +13957,33729,95 +13958,79025,33 +13959,329868,121 +13960,32284,95 +13961,65035,64 +13962,5928,95 +13963,2001,95 +13964,256474,3 +13965,378570,33 +13966,372226,31 +13967,112044,36 +13968,243934,69 +13969,48210,21 +13970,420648,60 +13971,72054,93 +13972,212756,94 +13973,30363,64 +13974,27245,104 +13975,43441,95 +13976,459,82 +13977,16432,64 +13978,359807,81 +13979,333371,95 +13980,347835,40 +13981,59962,95 +13982,64316,67 +13983,117026,95 +13984,405050,113 +13985,43754,95 +13986,299780,37 +13987,28973,95 +13988,18801,64 +13989,26422,64 +13990,24420,95 +13991,12632,50 +13992,8429,33 +13993,11535,104 +13994,9977,113 +13995,38874,121 +13996,15260,64 +13997,110830,95 +13998,47342,102 +13999,48116,121 +14000,59735,95 +14001,82191,64 +14002,92809,95 +14003,89325,95 +14004,438144,121 +14005,186869,95 +14006,27380,67 +14007,362974,106 +14008,122019,102 +14009,33801,33 +14010,166221,95 +14011,9503,33 +14012,364410,37 +14013,169683,33 +14014,49220,48 +14015,60173,95 +14016,19235,95 +14017,20196,95 +14018,49961,105 +14019,255343,44 +14020,159727,64 +14021,82684,95 +14022,18387,95 +14023,119893,9 +14024,15940,64 +14025,376188,26 +14026,245891,95 +14027,11172,95 +14028,56807,64 +14029,11880,95 +14030,185934,95 +14031,329010,95 +14032,73144,95 +14033,45988,64 +14034,10863,64 +14035,62728,64 +14036,38618,92 +14037,28519,95 +14038,742,50 +14039,189225,121 +14040,24685,121 +14041,32233,91 +14042,110416,94 +14043,42288,95 +14044,21554,95 +14045,48805,33 +14046,268735,64 +14047,83389,104 +14048,367006,50 +14049,38579,95 +14050,47886,3 +14051,21566,31 +14052,324181,95 +14053,11902,48 +14054,181753,95 +14055,51285,26 +14056,965,95 +14057,332662,64 +14058,28047,95 +14059,23692,95 +14060,33314,95 +14061,256836,64 +14062,42640,95 +14063,18691,95 +14064,226701,95 +14065,81787,121 +14066,396330,95 +14067,37820,113 +14068,22901,64 +14069,77645,95 +14070,322455,60 +14071,56533,95 +14072,64015,67 +14073,256520,26 +14074,115023,82 +14075,356482,33 +14076,27061,121 +14077,329718,60 +14078,13640,95 +14079,12171,64 +14080,47596,95 +14081,18530,9 +14082,1450,67 +14083,106131,95 +14084,172008,64 +14085,187252,44 +14086,57419,6 +14087,58404,33 diff --git a/demo/install/resources/movies_csv/Movie Spoken Language Map.csv b/demo/install/resources/movies_csv/Movie Spoken Language Map.csv new file mode 100644 index 0000000000..05df2d5843 --- /dev/null +++ b/demo/install/resources/movies_csv/Movie Spoken Language Map.csv @@ -0,0 +1,14952 @@ +id,Movie,Spoken Language +1,94009,65 +2,16234,65 +3,127372,101 +4,408508,65 +5,85709,31 +6,186630,29 +7,184341,41 +8,60422,33 +9,256328,33 +10,11509,65 +11,57544,41 +12,2994,29 +13,134477,28 +14,104343,101 +15,5333,65 +16,12309,65 +17,9902,65 +18,14688,33 +19,76642,33 +20,62071,32 +21,52612,33 +22,14751,64 +23,47186,65 +24,226163,29 +25,58904,65 +26,13788,65 +27,310568,22 +28,307931,65 +29,8342,41 +30,16019,66 +31,28363,65 +32,159128,65 +33,118716,65 +34,270303,65 +35,35683,65 +36,10890,65 +37,40139,65 +38,28739,65 +39,284117,65 +40,22618,82 +41,2,18 +42,10946,100 +43,56533,65 +44,56078,79 +45,76746,82 +46,16074,94 +47,30330,65 +48,58,65 +49,16164,65 +50,14284,13 +51,142145,65 +52,40804,65 +53,430365,65 +54,378236,65 +55,87516,65 +56,43023,65 +57,2566,65 +58,169068,65 +59,51141,44 +60,12716,33 +61,42457,65 +62,119433,65 +63,118889,65 +64,134215,64 +65,127913,27 +66,65156,65 +67,58007,29 +68,336149,29 +69,105325,65 +70,209244,65 +71,19765,35 +72,18133,65 +73,130457,41 +74,399612,65 +75,18917,67 +76,54982,65 +77,3051,65 +78,17926,65 +79,61548,65 +80,25633,65 +81,287170,76 +82,18638,65 +83,159667,65 +84,153169,65 +85,13459,65 +86,1498,33 +87,383064,33 +88,46920,29 +89,156268,35 +90,48339,65 +91,68050,65 +92,47653,65 +93,28746,65 +94,33541,65 +95,1690,65 +96,285946,65 +97,18557,65 +98,86305,65 +99,7972,65 +100,25674,65 +101,66966,33 +102,408620,31 +103,17956,65 +104,85507,65 +105,50849,65 +106,17590,65 +107,43321,65 +108,21955,65 +109,116432,9 +110,37959,101 +111,68387,65 +112,28425,65 +113,120747,65 +114,10921,65 +115,38286,29 +116,18079,41 +117,17908,65 +118,390782,65 +119,35001,65 +120,276909,65 +121,110001,69 +122,442949,65 +123,19765,82 +124,14809,65 +125,214138,41 +126,27526,65 +127,402455,90 +128,25645,72 +129,288788,32 +130,63291,82 +131,45197,72 +132,54139,65 +133,25536,72 +134,148,33 +135,3716,90 +136,13517,65 +137,87148,41 +138,80539,47 +139,16096,65 +140,353898,64 +141,96458,8 +142,10947,65 +143,15943,65 +144,36094,65 +145,140222,65 +146,177474,65 +147,1986,66 +148,61203,64 +149,281124,65 +150,100247,65 +151,289190,65 +152,380731,65 +153,181574,65 +154,21242,41 +155,25006,65 +156,159201,65 +157,15092,65 +158,336050,13 +159,11440,35 +160,21948,65 +161,148622,82 +162,34013,33 +163,16843,100 +164,158947,67 +165,141603,64 +166,11572,65 +167,78789,33 +168,104965,65 +169,120854,65 +170,10870,16 +171,213110,65 +172,34582,75 +173,103012,65 +174,1926,65 +175,80443,29 +176,75510,65 +177,13531,65 +178,47867,65 +179,13610,65 +180,26005,72 +181,70636,65 +182,31277,65 +183,11979,65 +184,12113,65 +185,81895,33 +186,28656,65 +187,17708,65 +188,309929,33 +189,253263,65 +190,147287,35 +191,11329,29 +192,118948,65 +193,4279,33 +194,54858,32 +195,96089,65 +196,56527,65 +197,10097,65 +198,377691,8 +199,36251,33 +200,24397,65 +201,14782,79 +202,121052,65 +203,19350,65 +204,437752,65 +205,24993,65 +206,16203,65 +207,296633,31 +208,79995,65 +209,141138,32 +210,45577,65 +211,285803,64 +212,41416,32 +213,274479,41 +214,190269,65 +215,78461,65 +216,87349,65 +217,55420,65 +218,8064,35 +219,292035,16 +220,54491,33 +221,102362,33 +222,26689,65 +223,43832,65 +224,44105,90 +225,330459,65 +226,33297,33 +227,25796,65 +228,126016,65 +229,49717,44 +230,419459,65 +231,152113,33 +232,118257,90 +233,47386,65 +234,81541,29 +235,105965,35 +236,22683,65 +237,193650,65 +238,4443,33 +239,109258,65 +240,10003,65 +241,45452,72 +242,30637,65 +243,29224,44 +244,8588,35 +245,87992,44 +246,123283,65 +247,34151,65 +248,86497,65 +249,26533,65 +250,3989,65 +251,8316,67 +252,11129,65 +253,42641,65 +254,293122,14 +255,284729,91 +256,19936,82 +257,74777,65 +258,38269,65 +259,287587,65 +260,10077,32 +261,259830,82 +262,43046,29 +263,52943,41 +264,408755,65 +265,4930,65 +266,74237,65 +267,49712,65 +268,59735,65 +269,57924,35 +270,36868,65 +271,9260,65 +272,13802,65 +273,10761,33 +274,38987,65 +275,6077,35 +276,128089,33 +277,13162,65 +278,26758,65 +279,16135,65 +280,8932,66 +281,53688,44 +282,10178,65 +283,78691,65 +284,232462,65 +285,283701,32 +286,236324,65 +287,131907,41 +288,104556,65 +289,30126,65 +290,57327,33 +291,4551,82 +292,282086,67 +293,161545,29 +294,63304,82 +295,128866,65 +296,336050,79 +297,77585,65 +298,63625,13 +299,15584,65 +300,248639,65 +301,40985,65 +302,23830,65 +303,19946,29 +304,124013,33 +305,65898,33 +306,55283,47 +307,53870,65 +308,56901,64 +309,58923,65 +310,365753,65 +311,163942,13 +312,17238,29 +313,260094,29 +314,329865,65 +315,44921,65 +316,67102,82 +317,430973,107 +318,201419,65 +319,21828,65 +320,138308,33 +321,84226,65 +322,24986,32 +323,110416,65 +324,10780,33 +325,57816,32 +326,1850,65 +327,26533,29 +328,150657,33 +329,50012,101 +330,714,72 +331,86261,31 +332,375384,65 +333,409447,65 +334,481,41 +335,8463,65 +336,109074,65 +337,975,35 +338,61895,65 +339,70800,15 +340,21193,33 +341,39305,82 +342,37710,65 +343,26889,41 +344,41522,65 +345,1723,65 +346,41076,44 +347,311093,65 +348,34449,45 +349,124963,65 +350,13283,65 +351,36489,65 +352,74561,65 +353,107705,82 +354,24258,2 +355,41283,65 +356,49689,35 +357,424600,65 +358,7326,65 +359,17003,41 +360,258193,35 +361,262522,65 +362,203321,65 +363,82191,65 +364,19237,79 +365,242131,65 +366,86126,41 +367,89325,65 +368,45489,101 +369,9675,53 +370,8985,41 +371,107096,35 +372,13993,65 +373,83201,65 +374,14292,65 +375,128396,101 +376,49974,100 +377,2990,65 +378,285841,65 +379,11361,65 +380,81775,41 +381,177902,65 +382,133458,44 +383,162458,33 +384,37581,33 +385,2241,35 +386,179154,65 +387,51434,82 +388,16800,35 +389,19495,65 +390,117023,65 +391,301348,65 +392,10333,65 +393,5559,65 +394,353641,18 +395,16560,65 +396,1428,41 +397,118150,33 +398,228355,64 +399,33704,33 +400,197082,35 +401,403,79 +402,157351,65 +403,25385,84 +404,17046,33 +405,137072,65 +406,67216,65 +407,3937,65 +408,448763,100 +409,9900,65 +410,369820,65 +411,94570,15 +412,10274,65 +413,102144,65 +414,26301,65 +415,36807,65 +416,714,8 +417,49876,65 +418,174751,65 +419,16232,65 +420,6976,65 +421,243473,33 +422,37514,65 +423,20003,29 +424,11589,35 +425,41131,13 +426,29376,65 +427,143005,82 +428,75341,66 +429,331485,65 +430,63260,29 +431,46513,41 +432,9993,65 +433,399810,65 +434,56669,65 +435,44634,65 +436,282983,41 +437,28586,65 +438,19740,65 +439,53211,65 +440,231540,35 +441,322785,65 +442,2742,84 +443,131799,65 +444,133121,101 +445,1599,65 +446,1369,65 +447,182499,65 +448,32234,101 +449,623,82 +450,16432,65 +451,340684,65 +452,360924,65 +453,22136,33 +454,109466,65 +455,336885,93 +456,16999,65 +457,8985,57 +458,25143,65 +459,21828,29 +460,12783,65 +461,336845,65 +462,197335,29 +463,29572,92 +464,47226,33 +465,15325,65 +466,40952,65 +467,64353,65 +468,13173,65 +469,73147,66 +470,105509,29 +471,15830,35 +472,19050,65 +473,254689,65 +474,253258,65 +475,24655,65 +476,302104,107 +477,42187,35 +478,96433,65 +479,8329,101 +480,124042,65 +481,21041,35 +482,2274,65 +483,48287,65 +484,44718,33 +485,303281,64 +486,54898,33 +487,179837,35 +488,52903,18 +489,104277,101 +490,115929,16 +491,25551,65 +492,15749,65 +493,21468,41 +494,393134,13 +495,9664,65 +496,114931,35 +497,125705,65 +498,12449,35 +499,192133,65 +500,43016,65 +501,24154,33 +502,370264,82 +503,193641,29 +504,193523,44 +505,316654,64 +506,48243,84 +507,56589,33 +508,406431,65 +509,12454,33 +510,16371,35 +511,246403,65 +512,178385,65 +513,10275,32 +514,1773,65 +515,47342,65 +516,40220,65 +517,10643,101 +518,28031,65 +519,85651,65 +520,418772,65 +521,33436,33 +522,47670,65 +523,10596,65 +524,67900,65 +525,105833,33 +526,26264,65 +527,284274,65 +528,98349,65 +529,267931,65 +530,256836,65 +531,394723,41 +532,37308,33 +533,28238,65 +534,421962,65 +535,24816,29 +536,209401,65 +537,352327,65 +538,257831,35 +539,14534,41 +540,84355,65 +541,36229,35 +542,108365,33 +543,110980,65 +544,65603,65 +545,209410,64 +546,121793,65 +547,195867,65 +548,14072,64 +549,32074,65 +550,99698,33 +551,6166,65 +552,43849,65 +553,57918,29 +554,56934,65 +555,123334,65 +556,388243,65 +557,19336,101 +558,47959,33 +559,9787,41 +560,56666,64 +561,317114,29 +562,46592,82 +563,3484,65 +564,11719,65 +565,47410,35 +566,11077,29 +567,160160,29 +568,31522,33 +569,13061,65 +570,1673,65 +571,14527,65 +572,297288,29 +573,78563,33 +574,145135,65 +575,195653,15 +576,14703,65 +577,13807,72 +578,153,65 +579,84865,29 +580,217925,65 +581,243568,65 +582,12767,65 +583,22371,65 +584,76380,44 +585,27599,44 +586,13571,65 +587,76170,65 +588,275136,65 +589,429838,65 +590,351809,41 +591,289232,65 +592,167,65 +593,112655,65 +594,5618,33 +595,8583,65 +596,62838,65 +597,58462,65 +598,63045,65 +599,95627,65 +600,296192,65 +601,59935,65 +602,43935,90 +603,271954,90 +604,105,65 +605,82598,65 +606,209413,29 +607,51311,65 +608,64084,65 +609,38554,65 +610,39276,101 +611,188765,84 +612,300983,71 +613,145668,65 +614,6077,42 +615,404479,18 +616,85494,65 +617,12540,65 +618,27711,65 +619,166225,64 +620,356757,29 +621,204384,33 +622,560,65 +623,382125,84 +624,383064,84 +625,50838,65 +626,234284,101 +627,68720,65 +628,255772,70 +629,44027,65 +630,235,65 +631,79113,65 +632,109354,82 +633,817,35 +634,381670,9 +635,46798,31 +636,91390,65 +637,18045,65 +638,36943,65 +639,9298,41 +640,173874,65 +641,227975,100 +642,33124,64 +643,66881,65 +644,171337,65 +645,118658,45 +646,49009,65 +647,118180,31 +648,393732,65 +649,295748,90 +650,1574,13 +651,74942,65 +652,312174,65 +653,28209,33 +654,81477,65 +655,9816,65 +656,104083,65 +657,189151,101 +658,24154,101 +659,11004,65 +660,25426,41 +661,50225,33 +662,9013,67 +663,14411,65 +664,92989,32 +665,26299,65 +666,177677,65 +667,87302,41 +668,11402,65 +669,428687,65 +670,9885,44 +671,56943,29 +672,131194,65 +673,17654,85 +674,38850,65 +675,178809,65 +676,45875,29 +677,185111,2 +678,336050,66 +679,34652,65 +680,26899,65 +681,25667,82 +682,9918,65 +683,4993,65 +684,2742,65 +685,26861,65 +686,48508,31 +687,50350,84 +688,9032,65 +689,21570,71 +690,1813,33 +691,157343,65 +692,18548,65 +693,54858,72 +694,75229,93 +695,11680,33 +696,84831,65 +697,76286,65 +698,11639,29 +699,42996,41 +700,173467,65 +701,59040,29 +702,238302,65 +703,66193,65 +704,260312,33 +705,32237,31 +706,9079,33 +707,38164,29 +708,80094,67 +709,72638,65 +710,62675,33 +711,37978,33 +712,170279,33 +713,42996,35 +714,10003,82 +715,191312,41 +716,54832,65 +717,254193,65 +718,200447,65 +719,63877,65 +720,199615,35 +721,106016,65 +722,39938,65 +723,140276,65 +724,41427,29 +725,275244,82 +726,13090,41 +727,26030,65 +728,23719,65 +729,38048,33 +730,30060,65 +731,37718,65 +732,8985,67 +733,215928,65 +734,209209,8 +735,53210,65 +736,30708,65 +737,113700,65 +738,22504,33 +739,102362,41 +740,411638,41 +741,145191,33 +742,11011,80 +743,261508,5 +744,31262,65 +745,96089,33 +746,20132,64 +747,67342,72 +748,25520,65 +749,325039,65 +750,96793,65 +751,14829,101 +752,43000,35 +753,40662,65 +754,21753,65 +755,5590,33 +756,370213,46 +757,22999,29 +758,76846,44 +759,127091,29 +760,73872,36 +761,84575,65 +762,100594,18 +763,385372,65 +764,196508,15 +765,348389,65 +766,110540,65 +767,48116,92 +768,11134,65 +769,329809,33 +770,56596,44 +771,92393,65 +772,346443,79 +773,15387,67 +774,118658,29 +775,24973,2 +776,333372,82 +777,41131,79 +778,10529,65 +779,336484,82 +780,34766,65 +781,76198,33 +782,43434,65 +783,112161,65 +784,435821,31 +785,88564,82 +786,29108,65 +787,43143,65 +788,363483,65 +789,179066,65 +790,40120,65 +791,96985,65 +792,166610,65 +793,192675,64 +794,3549,64 +795,14976,65 +796,115810,33 +797,376252,31 +798,47703,15 +799,77412,65 +800,11104,72 +801,153717,35 +802,214081,65 +803,9793,41 +804,28268,15 +805,18739,65 +806,47143,33 +807,423377,65 +808,186634,65 +809,78450,32 +810,48805,29 +811,18506,65 +812,373200,32 +813,25060,65 +814,56815,41 +815,49642,72 +816,171902,35 +817,62732,82 +818,193,65 +819,57342,65 +820,62301,101 +821,57816,35 +822,20312,65 +823,295884,65 +824,13225,65 +825,805,65 +826,53222,33 +827,53767,64 +828,352094,100 +829,241855,65 +830,256561,82 +831,334394,90 +832,407173,65 +833,7942,65 +834,314371,79 +835,133458,29 +836,121530,8 +837,11917,65 +838,17386,33 +839,163,29 +840,416635,65 +841,14868,13 +842,55027,65 +843,31299,65 +844,10344,79 +845,54563,33 +846,280045,41 +847,115565,65 +848,42123,88 +849,241574,65 +850,62036,29 +851,22429,64 +852,35656,65 +853,108789,29 +854,162755,33 +855,96888,66 +856,23855,100 +857,13616,13 +858,58832,65 +859,41110,29 +860,224,79 +861,13569,65 +862,10193,41 +863,41604,65 +864,363890,65 +865,41261,101 +866,34280,29 +867,28553,65 +868,142216,65 +869,53172,65 +870,125623,33 +871,38808,65 +872,40252,65 +873,9568,65 +874,245536,15 +875,62694,65 +876,7288,65 +877,211088,79 +878,47682,65 +879,35852,65 +880,35652,100 +881,36243,101 +882,227717,65 +883,44669,65 +884,189556,82 +885,136366,101 +886,378435,90 +887,128625,65 +888,24756,65 +889,10565,35 +890,37865,65 +891,94182,65 +892,8915,65 +893,9502,65 +894,36658,65 +895,403431,65 +896,320318,33 +897,7549,32 +898,33107,65 +899,89720,65 +900,202238,41 +901,57770,82 +902,300654,65 +903,8270,65 +904,28730,65 +905,10775,72 +906,302666,65 +907,2503,41 +908,10204,65 +909,71805,65 +910,279332,65 +911,13555,65 +912,347979,82 +913,939,65 +914,1640,65 +915,84071,35 +916,35110,35 +917,229,65 +918,10586,65 +919,180299,65 +920,105254,44 +921,106944,29 +922,198317,65 +923,9945,65 +924,17496,65 +925,119364,65 +926,16900,65 +927,21159,65 +928,26116,65 +929,26182,65 +930,27573,65 +931,40998,95 +932,91627,65 +933,32558,65 +934,41115,29 +935,83890,65 +936,288424,65 +937,46924,65 +938,18279,18 +939,72232,65 +940,21191,41 +941,12652,33 +942,54769,35 +943,52440,35 +944,11636,72 +945,53574,65 +946,79362,35 +947,173914,9 +948,61581,29 +949,337789,65 +950,41608,29 +951,138222,65 +952,32395,65 +953,21447,41 +954,180252,31 +955,27886,65 +956,17770,33 +957,328032,35 +958,302435,91 +959,70736,65 +960,403570,65 +961,58886,16 +962,83666,65 +963,12446,33 +964,62045,41 +965,131366,35 +966,10134,65 +967,412202,65 +968,108665,72 +969,111744,35 +970,11313,65 +971,56435,29 +972,348025,33 +973,11017,41 +974,32275,65 +975,73775,35 +976,81538,65 +977,11535,65 +978,84479,65 +979,80351,65 +980,134656,65 +981,39101,101 +982,396392,29 +983,246741,35 +984,58011,29 +985,51049,65 +986,373838,82 +987,33345,33 +988,62033,65 +989,134782,65 +990,137651,65 +991,46014,65 +992,18392,65 +993,352960,65 +994,123634,65 +995,314388,65 +996,10744,65 +997,166671,65 +998,260826,13 +999,46857,48 +1000,101752,101 +1001,13600,65 +1002,63215,65 +1003,369054,65 +1004,366736,103 +1005,13614,35 +1006,18774,65 +1007,48787,82 +1008,284013,33 +1009,429801,65 +1010,297633,65 +1011,65674,65 +1012,57575,13 +1013,284048,41 +1014,43978,46 +1015,203351,65 +1016,76203,65 +1017,12279,65 +1018,39048,65 +1019,47848,29 +1020,11593,65 +1021,307696,65 +1022,409502,65 +1023,17046,65 +1024,12476,65 +1025,461805,65 +1026,38340,65 +1027,397837,65 +1028,33130,16 +1029,130739,65 +1030,11788,65 +1031,13042,15 +1032,103260,65 +1033,132608,100 +1034,359025,41 +1035,17209,65 +1036,289225,65 +1037,11540,33 +1038,21508,41 +1039,46448,29 +1040,43902,65 +1041,253251,54 +1042,2100,65 +1043,44932,13 +1044,85673,107 +1045,318052,66 +1046,38303,65 +1047,11235,65 +1048,31128,65 +1049,66926,13 +1050,12631,35 +1051,15902,65 +1052,292294,65 +1053,47955,65 +1054,43093,65 +1055,27443,35 +1056,47934,65 +1057,8906,35 +1058,101766,31 +1059,94587,65 +1060,69668,65 +1061,13823,35 +1062,14565,100 +1063,248698,64 +1064,29054,65 +1065,11902,35 +1066,8460,65 +1067,9325,65 +1068,94336,35 +1069,11000,33 +1070,157,82 +1071,83119,65 +1072,31165,65 +1073,92285,65 +1074,10622,32 +1075,121036,32 +1076,4893,65 +1077,381015,65 +1078,20096,33 +1079,52021,65 +1080,2604,41 +1081,45019,65 +1082,75892,41 +1083,28561,65 +1084,121940,65 +1085,150065,65 +1086,18747,32 +1087,376502,65 +1088,41187,90 +1089,273404,65 +1090,54523,65 +1091,322443,65 +1092,99545,65 +1093,5481,65 +1094,331642,41 +1095,18747,65 +1096,20648,65 +1097,72251,65 +1098,148,65 +1099,42453,93 +1100,2892,65 +1101,118640,18 +1102,67375,65 +1103,236395,65 +1104,46986,65 +1105,27460,65 +1106,15242,65 +1107,47694,32 +1108,6636,41 +1109,251421,65 +1110,55589,8 +1111,33314,65 +1112,21348,33 +1113,40983,65 +1114,86838,65 +1115,46187,82 +1116,319092,82 +1117,138544,65 +1118,51284,82 +1119,26223,65 +1120,91391,65 +1121,1926,46 +1122,77012,65 +1123,45627,65 +1124,1813,32 +1125,15906,65 +1126,269795,65 +1127,359255,65 +1128,20221,41 +1129,18731,72 +1130,103012,61 +1131,43976,46 +1132,16231,65 +1133,298751,65 +1134,28484,65 +1135,178927,65 +1136,79743,18 +1137,391438,41 +1138,1922,65 +1139,91583,65 +1140,1926,84 +1141,186971,35 +1142,48636,65 +1143,283701,33 +1144,24750,65 +1145,20919,65 +1146,360605,65 +1147,233639,35 +1148,27873,65 +1149,92465,44 +1150,28510,65 +1151,315252,16 +1152,284343,35 +1153,38317,65 +1154,245775,33 +1155,75101,65 +1156,25111,65 +1157,21062,29 +1158,75162,65 +1159,62630,65 +1160,266856,29 +1161,17630,33 +1162,133458,33 +1163,10590,33 +1164,34869,82 +1165,61765,33 +1166,16147,33 +1167,73554,65 +1168,1382,65 +1169,11622,65 +1170,1689,65 +1171,10484,33 +1172,48281,65 +1173,174000,65 +1174,221981,65 +1175,77986,82 +1176,116780,65 +1177,20986,101 +1178,77079,65 +1179,69828,65 +1180,20968,64 +1181,24170,65 +1182,25649,31 +1183,13383,41 +1184,1724,65 +1185,143876,82 +1186,28293,65 +1187,296491,29 +1188,11658,31 +1189,163376,65 +1190,185354,79 +1191,339145,65 +1192,13728,33 +1193,436339,100 +1194,12483,65 +1195,20871,82 +1196,59006,65 +1197,60120,54 +1198,13792,65 +1199,430834,65 +1200,29743,29 +1201,169869,35 +1202,364833,82 +1203,22023,41 +1204,84993,65 +1205,49060,65 +1206,52936,65 +1207,46989,65 +1208,11873,41 +1209,10482,65 +1210,19495,92 +1211,25694,65 +1212,360249,35 +1213,8886,29 +1214,25973,65 +1215,47812,82 +1216,435366,31 +1217,24939,35 +1218,13678,65 +1219,345054,33 +1220,159514,16 +1221,106020,65 +1222,30844,65 +1223,31671,65 +1224,17282,65 +1225,15616,65 +1226,87311,65 +1227,88558,65 +1228,24978,65 +1229,28893,65 +1230,288281,65 +1231,10841,65 +1232,180050,92 +1233,21619,65 +1234,49220,44 +1235,75138,13 +1236,86186,65 +1237,8954,65 +1238,261273,65 +1239,18755,65 +1240,177335,65 +1241,39347,64 +1242,324251,65 +1243,42472,33 +1244,91261,82 +1245,92663,89 +1246,26941,33 +1247,29128,33 +1248,369776,33 +1249,43000,33 +1250,38962,65 +1251,57103,65 +1252,22943,65 +1253,104193,101 +1254,1959,65 +1255,51423,44 +1256,26914,65 +1257,16314,29 +1258,50722,35 +1259,16638,80 +1260,110525,65 +1261,402455,101 +1262,57307,33 +1263,94671,65 +1264,38766,101 +1265,54396,65 +1266,151870,65 +1267,29492,65 +1268,5804,65 +1269,242042,65 +1270,21135,65 +1271,107287,41 +1272,26603,65 +1273,13169,65 +1274,14066,35 +1275,40085,65 +1276,43113,101 +1277,77950,65 +1278,128270,65 +1279,19582,65 +1280,112961,65 +1281,36325,41 +1282,20421,65 +1283,49524,65 +1284,153163,65 +1285,25941,65 +1286,9840,33 +1287,41206,65 +1288,30680,65 +1289,315439,31 +1290,13436,76 +1291,267579,65 +1292,22314,82 +1293,167956,41 +1294,19812,8 +1295,15044,65 +1296,16124,65 +1297,10889,65 +1298,52920,79 +1299,29204,34 +1300,39219,65 +1301,26430,65 +1302,47882,65 +1303,32139,65 +1304,79611,35 +1305,86023,65 +1306,48341,101 +1307,20342,32 +1308,27145,33 +1309,40688,65 +1310,41559,65 +1311,65777,65 +1312,69346,64 +1313,30305,76 +1314,200324,65 +1315,613,82 +1316,41213,67 +1317,82395,65 +1318,136368,29 +1319,56095,35 +1320,2084,82 +1321,157919,65 +1322,94176,65 +1323,2084,65 +1324,2034,41 +1325,45729,65 +1326,325302,65 +1327,35694,65 +1328,37911,65 +1329,53953,65 +1330,47647,72 +1331,119592,65 +1332,426230,65 +1333,982,65 +1334,2976,65 +1335,56292,44 +1336,13408,65 +1337,136368,35 +1338,15264,65 +1339,117942,65 +1340,253250,65 +1341,29829,65 +1342,24424,84 +1343,84449,35 +1344,29204,82 +1345,30478,65 +1346,1724,41 +1347,103539,23 +1348,14694,33 +1349,7233,65 +1350,11206,65 +1351,131457,65 +1352,82708,33 +1353,102858,82 +1354,83491,82 +1355,922,65 +1356,157420,35 +1357,43268,65 +1358,424488,65 +1359,43984,46 +1360,17771,65 +1361,409,29 +1362,27224,65 +1363,378018,65 +1364,347807,64 +1365,46178,8 +1366,24479,65 +1367,295314,84 +1368,124075,33 +1369,245891,65 +1370,333667,65 +1371,151068,15 +1372,64627,35 +1373,104477,15 +1374,25403,65 +1375,9870,101 +1376,118690,65 +1377,332936,65 +1378,268212,35 +1379,191112,64 +1380,7237,65 +1381,77439,65 +1382,241593,44 +1383,147815,47 +1384,41578,65 +1385,17577,65 +1386,286545,96 +1387,47324,84 +1388,70667,65 +1389,10567,65 +1390,201749,65 +1391,159474,29 +1392,9677,35 +1393,74830,65 +1394,320299,33 +1395,18238,65 +1396,83191,65 +1397,23128,65 +1398,3063,65 +1399,61985,65 +1400,1273,65 +1401,37420,35 +1402,32168,76 +1403,154537,65 +1404,245394,65 +1405,85959,31 +1406,377287,33 +1407,11888,65 +1408,5899,16 +1409,215379,65 +1410,37084,65 +1411,37813,65 +1412,37420,41 +1413,288788,72 +1414,67130,65 +1415,1926,101 +1416,14611,65 +1417,105528,65 +1418,21708,31 +1419,168616,65 +1420,14945,101 +1421,43319,65 +1422,42215,65 +1423,10466,65 +1424,351901,65 +1425,9977,65 +1426,20108,33 +1427,36554,35 +1428,239103,79 +1429,61686,33 +1430,133941,35 +1431,18035,65 +1432,38916,35 +1433,37708,65 +1434,293982,79 +1435,3989,31 +1436,10055,82 +1437,52859,65 +1438,25499,64 +1439,260310,82 +1440,199374,8 +1441,204007,41 +1442,83191,35 +1443,177697,35 +1444,52654,65 +1445,40990,65 +1446,33095,33 +1447,40034,65 +1448,56151,65 +1449,290825,33 +1450,28421,65 +1451,34506,65 +1452,224951,65 +1453,29568,33 +1454,809,65 +1455,73027,65 +1456,9843,65 +1457,241639,32 +1458,145194,44 +1459,4809,65 +1460,4644,33 +1461,366630,65 +1462,24123,65 +1463,319986,65 +1464,65579,65 +1465,292262,65 +1466,66045,101 +1467,10610,65 +1468,4978,65 +1469,82481,29 +1470,277968,33 +1471,289720,65 +1472,178,65 +1473,252724,65 +1474,28673,29 +1475,6687,32 +1476,33107,41 +1477,74645,35 +1478,54779,65 +1479,170234,65 +1480,10754,35 +1481,194393,65 +1482,33357,29 +1483,248469,65 +1484,19053,65 +1485,44414,65 +1486,19101,65 +1487,108972,31 +1488,381691,28 +1489,110573,33 +1490,84450,65 +1491,2861,33 +1492,14207,65 +1493,8342,33 +1494,76714,13 +1495,41360,65 +1496,73241,65 +1497,24411,65 +1498,13017,79 +1499,257450,65 +1500,635,65 +1501,225044,65 +1502,11161,65 +1503,13516,65 +1504,101904,33 +1505,12412,35 +1506,8194,65 +1507,28068,41 +1508,352890,35 +1509,35554,29 +1510,84089,65 +1511,65614,82 +1512,63217,65 +1513,26882,65 +1514,87827,65 +1515,73578,47 +1516,42460,35 +1517,11876,33 +1518,104720,65 +1519,16921,65 +1520,59191,65 +1521,12707,65 +1522,49110,41 +1523,58905,65 +1524,4913,84 +1525,168552,66 +1526,17317,65 +1527,407575,41 +1528,26889,65 +1529,158947,57 +1530,20758,65 +1531,24685,33 +1532,14811,82 +1533,29989,65 +1534,36247,101 +1535,48489,65 +1536,337549,65 +1537,226167,35 +1538,406449,82 +1539,270851,65 +1540,53953,79 +1541,303636,44 +1542,180305,65 +1543,84903,65 +1544,199575,65 +1545,353533,47 +1546,2172,106 +1547,68174,65 +1548,76493,66 +1549,448847,65 +1550,377447,65 +1551,163,16 +1552,80264,65 +1553,2143,41 +1554,74779,65 +1555,343921,65 +1556,96159,64 +1557,121793,33 +1558,132518,76 +1559,49508,65 +1560,9066,35 +1561,40146,65 +1562,248633,65 +1563,539,65 +1564,390357,40 +1565,48706,65 +1566,138486,65 +1567,44287,65 +1568,49106,82 +1569,126300,104 +1570,211387,65 +1571,46885,65 +1572,45990,29 +1573,13486,65 +1574,219572,72 +1575,36220,65 +1576,140708,18 +1577,28597,65 +1578,8935,32 +1579,19946,100 +1580,233487,65 +1581,62472,101 +1582,35008,33 +1583,426265,100 +1584,12237,35 +1585,414827,90 +1586,43199,65 +1587,214,65 +1588,340488,41 +1589,76864,29 +1590,126090,45 +1591,174645,65 +1592,32540,65 +1593,47190,82 +1594,84771,65 +1595,78383,65 +1596,95140,65 +1597,291866,82 +1598,43692,65 +1599,10821,90 +1600,34084,65 +1601,18711,65 +1602,31037,65 +1603,81787,29 +1604,36736,65 +1605,375742,79 +1606,32694,65 +1607,115223,33 +1608,99599,32 +1609,359154,41 +1610,81708,2 +1611,19096,65 +1612,83785,65 +1613,20983,65 +1614,25426,65 +1615,310431,65 +1616,108,79 +1617,128657,29 +1618,10201,65 +1619,84971,65 +1620,50363,29 +1621,44233,65 +1622,72733,76 +1623,110160,65 +1624,71329,105 +1625,9675,65 +1626,46420,65 +1627,425003,65 +1628,254420,64 +1629,2441,41 +1630,11232,65 +1631,26149,41 +1632,18094,65 +1633,10025,65 +1634,43046,35 +1635,62143,13 +1636,18613,2 +1637,57816,65 +1638,11614,65 +1639,64414,29 +1640,63876,33 +1641,134201,65 +1642,40957,65 +1643,24448,71 +1644,96333,65 +1645,44022,65 +1646,9981,65 +1647,17831,41 +1648,186585,65 +1649,14550,65 +1650,190955,29 +1651,83770,33 +1652,1773,35 +1653,298040,79 +1654,18990,65 +1655,47099,82 +1656,255898,82 +1657,181533,65 +1658,111470,65 +1659,70313,65 +1660,17303,65 +1661,16390,65 +1662,2140,65 +1663,24825,65 +1664,268920,41 +1665,11346,35 +1666,7483,41 +1667,14164,101 +1668,8856,65 +1669,277190,16 +1670,97936,65 +1671,146341,65 +1672,18692,65 +1673,103073,91 +1674,383809,33 +1675,28304,65 +1676,212713,65 +1677,47876,65 +1678,123025,33 +1679,301272,29 +1680,99329,62 +1681,32546,41 +1682,5123,65 +1683,11422,65 +1684,98612,35 +1685,18998,65 +1686,105902,65 +1687,114108,15 +1688,146322,65 +1689,54814,101 +1690,104466,15 +1691,6145,65 +1692,60422,65 +1693,8282,33 +1694,303867,65 +1695,64605,65 +1696,54243,65 +1697,17654,86 +1698,29572,33 +1699,13493,65 +1700,27470,65 +1701,157384,65 +1702,151431,65 +1703,253395,18 +1704,27332,65 +1705,96987,65 +1706,1404,65 +1707,62472,65 +1708,285733,65 +1709,71725,99 +1710,28275,35 +1711,38282,33 +1712,8985,2 +1713,14815,65 +1714,123103,41 +1715,52560,65 +1716,378227,91 +1717,12831,65 +1718,36264,79 +1719,14694,67 +1720,10534,35 +1721,43967,101 +1722,1902,41 +1723,67693,65 +1724,37420,65 +1725,151509,65 +1726,10874,65 +1727,35856,66 +1728,241140,103 +1729,8899,33 +1730,71336,82 +1731,9472,65 +1732,276220,62 +1733,97707,29 +1734,44458,72 +1735,12249,33 +1736,19989,41 +1737,302960,44 +1738,11561,34 +1739,64328,65 +1740,352197,65 +1741,16174,65 +1742,18613,34 +1743,63179,29 +1744,333367,33 +1745,50108,76 +1746,810,65 +1747,43548,29 +1748,388764,76 +1749,441043,33 +1750,168164,8 +1751,259975,65 +1752,378570,65 +1753,83201,33 +1754,5881,65 +1755,72663,82 +1756,62762,32 +1757,2140,32 +1758,27740,65 +1759,406449,79 +1760,31258,65 +1761,99283,65 +1762,18120,65 +1763,78464,82 +1764,362151,18 +1765,241982,33 +1766,43117,65 +1767,17445,65 +1768,45013,65 +1769,24973,65 +1770,53404,101 +1771,70476,65 +1772,81225,35 +1773,231216,35 +1774,365222,32 +1775,27095,33 +1776,70667,93 +1777,1282,65 +1778,348673,65 +1779,31421,65 +1780,4133,65 +1781,18569,65 +1782,174350,65 +1783,168031,65 +1784,126415,29 +1785,12311,13 +1786,213443,65 +1787,2897,65 +1788,1498,65 +1789,50780,65 +1790,87388,65 +1791,255343,65 +1792,109441,41 +1793,1247,83 +1794,118794,82 +1795,65759,65 +1796,14543,65 +1797,173294,65 +1798,30361,65 +1799,253235,65 +1800,14650,33 +1801,161795,65 +1802,236737,69 +1803,65509,65 +1804,285848,34 +1805,2001,82 +1806,85673,65 +1807,12129,41 +1808,238589,33 +1809,31206,65 +1810,277388,65 +1811,115712,27 +1812,1589,65 +1813,45675,65 +1814,73306,101 +1815,206647,33 +1816,336199,33 +1817,212756,33 +1818,88320,65 +1819,12169,33 +1820,93935,35 +1821,73430,65 +1822,37992,65 +1823,44388,65 +1824,284467,65 +1825,93858,79 +1826,65416,65 +1827,37292,65 +1828,377587,65 +1829,28345,65 +1830,129,101 +1831,69,82 +1832,86703,65 +1833,249703,18 +1834,76829,65 +1835,83599,35 +1836,42476,65 +1837,24411,67 +1838,99361,35 +1839,172890,33 +1840,1912,35 +1841,64191,65 +1842,11104,32 +1843,184341,65 +1844,67276,65 +1845,173205,65 +1846,488,35 +1847,339547,65 +1848,64225,33 +1849,254869,41 +1850,17236,65 +1851,134209,46 +1852,9593,65 +1853,42764,29 +1854,11838,101 +1855,19348,65 +1856,27095,65 +1857,18548,79 +1858,89551,65 +1859,375355,65 +1860,41380,32 +1861,50531,29 +1862,43894,65 +1863,118677,65 +1864,13374,65 +1865,35118,79 +1866,109690,41 +1867,33009,65 +1868,33839,65 +1869,9716,65 +1870,84508,101 +1871,79094,29 +1872,108634,101 +1873,26331,33 +1874,144475,65 +1875,214093,33 +1876,173494,42 +1877,96702,65 +1878,16962,65 +1879,34449,65 +1880,89337,65 +1881,121636,65 +1882,282247,65 +1883,213681,65 +1884,281968,33 +1885,9461,72 +1886,82448,35 +1887,86321,100 +1888,85420,65 +1889,59197,32 +1890,162877,16 +1891,13105,65 +1892,241254,65 +1893,8080,65 +1894,259593,65 +1895,28263,65 +1896,94348,65 +1897,49834,90 +1898,125619,41 +1899,249914,64 +1900,7210,35 +1901,47715,29 +1902,25653,31 +1903,29467,65 +1904,288694,29 +1905,11385,41 +1906,254679,101 +1907,13279,65 +1908,2135,65 +1909,8882,32 +1910,20017,35 +1911,126523,82 +1912,105548,65 +1913,43904,82 +1914,64015,72 +1915,197,65 +1916,29043,15 +1917,98339,65 +1918,306323,18 +1919,11535,101 +1920,26955,31 +1921,25994,65 +1922,1647,65 +1923,41689,13 +1924,84030,67 +1925,22447,65 +1926,307081,65 +1927,1678,101 +1928,332741,29 +1929,197696,65 +1930,101330,33 +1931,18493,15 +1932,42170,101 +1933,332759,35 +1934,74505,65 +1935,20364,64 +1936,30780,65 +1937,43471,65 +1938,177043,65 +1939,42726,33 +1940,257716,18 +1941,181456,33 +1942,10873,35 +1943,99242,32 +1944,171308,65 +1945,220154,65 +1946,166621,65 +1947,126418,65 +1948,125727,64 +1949,293271,8 +1950,127812,65 +1951,37725,65 +1952,53472,16 +1953,10391,65 +1954,90563,65 +1955,142966,65 +1956,86980,76 +1957,3520,29 +1958,203819,65 +1959,19495,23 +1960,977,65 +1961,10436,29 +1962,293085,18 +1963,32790,65 +1964,27824,65 +1965,18820,65 +1966,198795,41 +1967,10626,35 +1968,292014,82 +1969,42191,65 +1970,30002,65 +1971,209921,33 +1972,27036,65 +1973,38285,29 +1974,161495,65 +1975,107028,65 +1976,341201,65 +1977,71503,65 +1978,46436,29 +1979,93904,65 +1980,39045,65 +1981,18722,65 +1982,56947,33 +1983,220515,65 +1984,26969,41 +1985,347328,66 +1986,8382,65 +1987,30141,65 +1988,79316,65 +1989,15260,65 +1990,386100,35 +1991,59349,35 +1992,10657,65 +1993,30695,64 +1994,333371,65 +1995,264746,31 +1996,338189,33 +1997,83599,82 +1998,118257,33 +1999,17927,65 +2000,49230,65 +2001,224204,65 +2002,14400,65 +2003,18178,102 +2004,93935,65 +2005,204768,84 +2006,9286,65 +2007,46806,65 +2008,146216,82 +2009,121824,65 +2010,79596,67 +2011,84228,65 +2012,10269,65 +2013,46189,65 +2014,453053,65 +2015,30014,65 +2016,325892,64 +2017,9464,65 +2018,9028,65 +2019,49852,8 +2020,136619,29 +2021,58664,65 +2022,29161,65 +2023,17445,41 +2024,335509,65 +2025,3089,35 +2026,14489,82 +2027,32845,65 +2028,157843,65 +2029,49853,65 +2030,26643,65 +2031,435041,82 +2032,28577,65 +2033,12994,65 +2034,102901,41 +2035,11980,65 +2036,123770,65 +2037,2288,65 +2038,21024,65 +2039,325645,29 +2040,131027,13 +2041,18165,65 +2042,190410,29 +2043,42456,65 +2044,92321,101 +2045,360592,65 +2046,98125,65 +2047,195269,65 +2048,48567,65 +2049,28367,13 +2050,257296,31 +2051,138730,15 +2052,290656,65 +2053,17074,65 +2054,3053,65 +2055,33680,65 +2056,1624,65 +2057,33801,29 +2058,86985,79 +2059,10493,65 +2060,22317,35 +2061,333352,6 +2062,46368,65 +2063,408220,41 +2064,17295,33 +2065,1452,35 +2066,49588,65 +2067,53870,33 +2068,206296,65 +2069,54242,65 +2070,63681,33 +2071,263855,65 +2072,4931,65 +2073,60199,65 +2074,109475,65 +2075,168164,65 +2076,166904,65 +2077,19350,35 +2078,76176,65 +2079,206237,35 +2080,32497,44 +2081,70864,29 +2082,15468,67 +2083,17692,65 +2084,51763,35 +2085,70500,65 +2086,24624,65 +2087,9611,33 +2088,33668,65 +2089,300155,65 +2090,75142,65 +2091,4974,33 +2092,49787,79 +2093,899,15 +2094,293863,65 +2095,796,4 +2096,62670,65 +2097,302828,65 +2098,15805,65 +2099,45987,101 +2100,184328,65 +2101,19324,65 +2102,209248,35 +2103,128311,65 +2104,82911,65 +2105,508,33 +2106,525,65 +2107,229328,65 +2108,86254,65 +2109,177190,65 +2110,30996,65 +2111,43114,65 +2112,10714,65 +2113,36375,65 +2114,34806,65 +2115,93676,101 +2116,77056,33 +2117,39992,29 +2118,4134,16 +2119,17825,33 +2120,215032,17 +2121,788,65 +2122,65545,82 +2123,26180,65 +2124,87827,32 +2125,82941,65 +2126,21208,33 +2127,156603,65 +2128,156627,33 +2129,781,35 +2130,16016,8 +2131,26891,35 +2132,135679,65 +2133,71133,29 +2134,410718,33 +2135,42225,80 +2136,115427,13 +2137,259075,41 +2138,10389,65 +2139,11003,65 +2140,83782,29 +2141,217038,18 +2142,82469,31 +2143,45019,33 +2144,26612,65 +2145,206647,65 +2146,24238,34 +2147,14293,65 +2148,241239,65 +2149,146233,65 +2150,130593,65 +2151,118150,29 +2152,10652,65 +2153,6187,33 +2154,61533,65 +2155,271714,65 +2156,21570,64 +2157,17168,65 +2158,49028,47 +2159,28171,12 +2160,22259,65 +2161,18616,79 +2162,74561,33 +2163,48846,65 +2164,205054,65 +2165,20846,32 +2166,99453,65 +2167,73208,65 +2168,12606,65 +2169,14811,65 +2170,356842,65 +2171,46563,65 +2172,443319,65 +2173,320005,82 +2174,32872,65 +2175,11897,41 +2176,1116,21 +2177,14612,65 +2178,173634,65 +2179,38558,65 +2180,21849,65 +2181,356326,8 +2182,379925,65 +2183,147773,65 +2184,99351,65 +2185,30974,33 +2186,28859,65 +2187,34113,65 +2188,21325,82 +2189,13848,65 +2190,44933,29 +2191,64215,76 +2192,15468,33 +2193,93115,65 +2194,26963,65 +2195,10265,31 +2196,3089,29 +2197,126043,100 +2198,154019,100 +2199,12912,65 +2200,14538,32 +2201,165567,65 +2202,21741,65 +2203,47011,29 +2204,14977,65 +2205,114779,65 +2206,203186,65 +2207,55694,82 +2208,313922,65 +2209,132705,41 +2210,74126,101 +2211,74154,47 +2212,73313,65 +2213,369033,65 +2214,68184,65 +2215,338063,65 +2216,20287,41 +2217,163814,65 +2218,91070,65 +2219,76871,33 +2220,92848,65 +2221,11630,33 +2222,457,35 +2223,175739,18 +2224,97794,107 +2225,3114,65 +2226,19809,65 +2227,5767,33 +2228,146315,65 +2229,43904,33 +2230,2487,101 +2231,336811,33 +2232,36140,33 +2233,49929,65 +2234,161024,41 +2235,9451,65 +2236,24921,65 +2237,78461,33 +2238,53689,44 +2239,98870,65 +2240,85469,35 +2241,18044,65 +2242,85735,65 +2243,896,17 +2244,323673,65 +2245,10518,35 +2246,35337,65 +2247,113038,7 +2248,3549,8 +2249,55376,64 +2250,13834,4 +2251,119694,65 +2252,118900,65 +2253,41211,33 +2254,366860,41 +2255,11139,33 +2256,10925,65 +2257,90125,65 +2258,12112,33 +2259,1938,65 +2260,25536,65 +2261,9443,65 +2262,35790,17 +2263,8899,35 +2264,127702,41 +2265,16486,65 +2266,108312,65 +2267,49689,66 +2268,54900,90 +2269,72105,65 +2270,14904,65 +2271,9264,65 +2272,18613,35 +2273,102197,82 +2274,85580,65 +2275,81551,64 +2276,20357,65 +2277,261871,82 +2278,26873,82 +2279,293262,65 +2280,47748,31 +2281,435707,41 +2282,50350,33 +2283,18598,65 +2284,84720,65 +2285,15677,65 +2286,43821,65 +2287,20092,64 +2288,179103,65 +2289,62330,65 +2290,126927,65 +2291,183932,65 +2292,73869,29 +2293,61070,18 +2294,22450,79 +2295,24081,35 +2296,32690,101 +2297,367006,65 +2298,84892,65 +2299,259292,41 +2300,110001,41 +2301,341420,71 +2302,403605,41 +2303,125300,13 +2304,80324,79 +2305,433945,101 +2306,27380,65 +2307,319993,92 +2308,290825,65 +2309,31713,65 +2310,125764,65 +2311,43089,65 +2312,341689,65 +2313,11096,65 +2314,97683,100 +2315,29572,29 +2316,295602,18 +2317,117678,33 +2318,55681,65 +2319,11403,65 +2320,239368,65 +2321,621,65 +2322,9664,33 +2323,194817,65 +2324,408203,18 +2325,26768,65 +2326,63197,65 +2327,26261,65 +2328,13440,33 +2329,174958,35 +2330,330418,71 +2331,74585,33 +2332,46992,65 +2333,60281,65 +2334,5767,65 +2335,352498,65 +2336,63081,76 +2337,341490,27 +2338,24795,41 +2339,324440,35 +2340,1999,99 +2341,15560,65 +2342,42179,65 +2343,179812,65 +2344,71689,65 +2345,78657,33 +2346,11879,65 +2347,276635,65 +2348,414749,65 +2349,94674,16 +2350,233208,65 +2351,44655,41 +2352,239619,65 +2353,8652,31 +2354,175331,104 +2355,172396,65 +2356,10491,35 +2357,24767,65 +2358,4953,65 +2359,285848,65 +2360,180299,101 +2361,42614,65 +2362,41495,65 +2363,145247,35 +2364,87908,2 +2365,277355,65 +2366,282268,65 +2367,10747,65 +2368,239845,65 +2369,51836,65 +2370,8332,35 +2371,152861,43 +2372,188598,33 +2373,39286,41 +2374,11084,16 +2375,24403,65 +2376,116350,33 +2377,159005,65 +2378,245017,33 +2379,29161,8 +2380,21435,33 +2381,301875,65 +2382,48836,65 +2383,9343,35 +2384,4986,65 +2385,9389,33 +2386,26204,41 +2387,392386,65 +2388,9042,67 +2389,77060,82 +2390,9611,65 +2391,40041,65 +2392,126250,29 +2393,61266,82 +2394,262088,65 +2395,16371,31 +2396,66082,33 +2397,15875,65 +2398,49929,33 +2399,3048,65 +2400,10500,35 +2401,104398,15 +2402,227552,65 +2403,96724,65 +2404,5421,29 +2405,1914,35 +2406,207641,65 +2407,256561,65 +2408,13986,64 +2409,78256,65 +2410,347127,65 +2411,114242,35 +2412,796,65 +2413,317720,65 +2414,86643,65 +2415,294093,65 +2416,5165,65 +2417,90762,102 +2418,42206,35 +2419,58529,35 +2420,15671,65 +2421,42517,65 +2422,23367,65 +2423,81616,35 +2424,211088,29 +2425,19294,65 +2426,155325,8 +2427,15258,65 +2428,50126,29 +2429,80713,41 +2430,24625,65 +2431,40993,13 +2432,43473,65 +2433,88126,18 +2434,331958,2 +2435,52122,65 +2436,47588,2 +2437,41787,65 +2438,29805,65 +2439,332354,41 +2440,493,65 +2441,48770,65 +2442,264397,41 +2443,37633,33 +2444,232672,65 +2445,83562,65 +2446,14217,101 +2447,111398,101 +2448,117730,66 +2449,246218,65 +2450,289225,35 +2451,41703,65 +2452,60551,65 +2453,27417,65 +2454,13468,65 +2455,68472,65 +2456,44741,29 +2457,308024,100 +2458,280030,66 +2459,22007,65 +2460,420743,46 +2461,137614,41 +2462,118397,65 +2463,241258,65 +2464,18111,65 +2465,79435,35 +2466,84249,65 +2467,43499,65 +2468,9959,65 +2469,155426,79 +2470,88557,8 +2471,167424,35 +2472,47120,35 +2473,105210,101 +2474,326285,65 +2475,77338,65 +2476,37581,35 +2477,245692,49 +2478,337104,65 +2479,8010,65 +2480,74950,35 +2481,11302,65 +2482,242382,65 +2483,22279,65 +2484,53860,33 +2485,20301,65 +2486,72096,65 +2487,214209,31 +2488,14683,65 +2489,147829,65 +2490,137193,33 +2491,6081,33 +2492,75233,65 +2493,11035,33 +2494,15213,67 +2495,83587,65 +2496,371459,103 +2497,41852,65 +2498,72419,35 +2499,9835,65 +2500,76544,32 +2501,94725,65 +2502,29572,65 +2503,120280,18 +2504,46326,33 +2505,242835,65 +2506,222216,72 +2507,182097,84 +2508,30308,65 +2509,302036,65 +2510,118293,33 +2511,107976,31 +2512,42641,33 +2513,238985,65 +2514,13667,65 +2515,34577,29 +2516,103938,41 +2517,28061,29 +2518,128111,31 +2519,85699,41 +2520,10389,32 +2521,280690,64 +2522,85424,48 +2523,137381,65 +2524,371462,65 +2525,376660,65 +2526,60488,65 +2527,15163,65 +2528,32067,33 +2529,34774,65 +2530,255343,41 +2531,162056,29 +2532,80220,33 +2533,35639,16 +2534,180162,65 +2535,228647,65 +2536,15577,65 +2537,202337,65 +2538,53805,29 +2539,9352,29 +2540,82040,67 +2541,26644,65 +2542,164558,100 +2543,86828,65 +2544,149515,65 +2545,108822,33 +2546,419430,65 +2547,142115,65 +2548,34899,4 +2549,15807,65 +2550,359105,107 +2551,172457,41 +2552,12103,41 +2553,26469,65 +2554,40826,65 +2555,13576,65 +2556,403450,29 +2557,60623,33 +2558,172520,65 +2559,127521,41 +2560,155096,31 +2561,16876,65 +2562,260030,65 +2563,2503,65 +2564,25473,65 +2565,188858,33 +2566,226632,65 +2567,41969,65 +2568,402446,65 +2569,94568,65 +2570,24424,66 +2571,31428,65 +2572,22256,65 +2573,8358,82 +2574,35977,35 +2575,13972,65 +2576,19430,35 +2577,239619,35 +2578,296344,2 +2579,217923,32 +2580,32168,32 +2581,7549,65 +2582,49588,33 +2583,348673,8 +2584,77534,82 +2585,63333,65 +2586,216363,101 +2587,21451,65 +2588,79892,33 +2589,53459,65 +2590,16539,100 +2591,65958,33 +2592,7551,65 +2593,45610,84 +2594,240913,65 +2595,271234,33 +2596,104700,15 +2597,414453,31 +2598,285,65 +2599,14430,41 +2600,2262,35 +2601,28120,65 +2602,53399,29 +2603,6341,65 +2604,365065,65 +2605,22579,65 +2606,12575,35 +2607,24883,65 +2608,52913,35 +2609,80775,65 +2610,25667,79 +2611,323674,65 +2612,15762,65 +2613,55922,100 +2614,70587,79 +2615,148807,22 +2616,24086,65 +2617,9428,65 +2618,54405,65 +2619,14752,64 +2620,11601,65 +2621,63376,47 +2622,1825,65 +2623,72094,65 +2624,2080,65 +2625,20735,65 +2626,256421,15 +2627,4012,65 +2628,37665,65 +2629,58570,72 +2630,383618,44 +2631,94251,65 +2632,27052,16 +2633,30982,65 +2634,369894,65 +2635,417489,65 +2636,28155,65 +2637,179288,65 +2638,207402,65 +2639,17350,33 +2640,70046,65 +2641,216046,82 +2642,13681,65 +2643,218351,65 +2644,10753,72 +2645,273312,65 +2646,229254,44 +2647,19116,35 +2648,19725,65 +2649,18045,79 +2650,145154,65 +2651,3478,29 +2652,128644,65 +2653,32226,65 +2654,153420,101 +2655,32536,65 +2656,25385,65 +2657,97707,35 +2658,169794,65 +2659,72642,65 +2660,95358,65 +2661,22681,65 +2662,238952,33 +2663,9532,65 +2664,84309,65 +2665,234155,69 +2666,246011,65 +2667,280495,65 +2668,347031,65 +2669,37923,65 +2670,24671,65 +2671,38964,65 +2672,332794,33 +2673,300487,18 +2674,51144,44 +2675,77338,33 +2676,71041,35 +2677,22897,33 +2678,59408,65 +2679,64204,65 +2680,407559,65 +2681,19209,65 +2682,25353,33 +2683,42139,41 +2684,81120,65 +2685,52728,101 +2686,401060,35 +2687,31273,90 +2688,14123,65 +2689,9943,35 +2690,323315,65 +2691,179826,65 +2692,20766,65 +2693,16320,65 +2694,64414,65 +2695,9457,65 +2696,11832,8 +2697,35735,18 +2698,251,65 +2699,35292,65 +2700,18472,65 +2701,1416,41 +2702,10396,41 +2703,4592,65 +2704,34598,65 +2705,19181,44 +2706,11535,82 +2707,90056,15 +2708,46169,33 +2709,126315,41 +2710,14881,41 +2711,296288,100 +2712,48882,82 +2713,345888,31 +2714,234815,41 +2715,35002,65 +2716,3291,65 +2717,23524,65 +2718,21794,65 +2719,19528,35 +2720,70282,33 +2721,10748,65 +2722,9438,65 +2723,114096,65 +2724,221171,48 +2725,11370,13 +2726,44536,65 +2727,5917,65 +2728,29989,61 +2729,45679,65 +2730,49106,35 +2731,38874,100 +2732,379873,29 +2733,4960,65 +2734,59704,29 +2735,2764,16 +2736,26518,65 +2737,281979,65 +2738,162006,101 +2739,6077,33 +2740,15712,65 +2741,26116,82 +2742,163791,2 +2743,110381,62 +2744,283686,65 +2745,10671,29 +2746,30363,33 +2747,82321,65 +2748,162877,65 +2749,35021,79 +2750,124480,41 +2751,28455,65 +2752,24777,65 +2753,40208,65 +2754,65367,65 +2755,284154,103 +2756,16539,16 +2757,10044,72 +2758,177564,33 +2759,72826,101 +2760,242076,65 +2761,46193,65 +2762,13062,65 +2763,10937,65 +2764,283445,65 +2765,57829,65 +2766,44888,65 +2767,16076,48 +2768,29299,35 +2769,10671,65 +2770,40649,65 +2771,18898,65 +2772,117500,33 +2773,170517,65 +2774,49220,84 +2775,41234,65 +2776,198062,65 +2777,309581,65 +2778,80720,65 +2779,85038,29 +2780,255940,65 +2781,62116,33 +2782,333360,65 +2783,8981,65 +2784,128588,65 +2785,39148,101 +2786,9945,80 +2787,277778,65 +2788,153228,65 +2789,216647,35 +2790,123961,65 +2791,313108,31 +2792,114982,33 +2793,11017,33 +2794,69152,35 +2795,44087,65 +2796,282963,65 +2797,32489,41 +2798,48419,101 +2799,293092,18 +2800,9389,65 +2801,278901,65 +2802,130925,65 +2803,1793,65 +2804,5201,65 +2805,635,33 +2806,310972,33 +2807,25934,65 +2808,35118,35 +2809,9948,65 +2810,405882,65 +2811,46572,29 +2812,42679,29 +2813,51054,65 +2814,15689,79 +2815,35026,33 +2816,17100,65 +2817,70133,34 +2818,38531,65 +2819,52736,65 +2820,51548,41 +2821,14753,80 +2822,110588,65 +2823,398891,41 +2824,277713,65 +2825,46830,65 +2826,18912,35 +2827,81215,65 +2828,102668,65 +2829,93457,65 +2830,38099,32 +2831,277968,35 +2832,12903,65 +2833,2734,65 +2834,254065,65 +2835,1986,36 +2836,36162,82 +2837,9648,65 +2838,362541,65 +2839,15613,65 +2840,14666,65 +2841,9272,65 +2842,335778,65 +2843,44875,65 +2844,117,65 +2845,58133,33 +2846,12573,65 +2847,130278,65 +2848,4703,65 +2849,177714,41 +2850,24993,35 +2851,237672,28 +2852,8371,35 +2853,18447,65 +2854,136743,102 +2855,181454,65 +2856,11307,65 +2857,88036,65 +2858,433086,64 +2859,137357,65 +2860,11058,65 +2861,14226,32 +2862,10235,82 +2863,374614,65 +2864,149117,15 +2865,49398,35 +2866,9343,41 +2867,150338,65 +2868,63401,33 +2869,445993,65 +2870,77246,65 +2871,157424,65 +2872,108582,65 +2873,43828,82 +2874,42132,13 +2875,325803,52 +2876,34205,65 +2877,79151,32 +2878,10972,65 +2879,99738,82 +2880,49920,65 +2881,17657,65 +2882,341174,65 +2883,129851,29 +2884,28320,65 +2885,58244,65 +2886,28571,33 +2887,449674,65 +2888,260522,82 +2889,346838,65 +2890,43158,65 +2891,108,33 +2892,53354,33 +2893,362765,65 +2894,114499,65 +2895,18440,65 +2896,374618,65 +2897,172972,72 +2898,70247,65 +2899,381255,33 +2900,97767,65 +2901,21118,65 +2902,36421,35 +2903,255456,29 +2904,11012,65 +2905,6391,65 +2906,120657,65 +2907,92251,33 +2908,43469,65 +2909,54559,65 +2910,98644,53 +2911,87428,65 +2912,124517,33 +2913,47143,65 +2914,24955,46 +2915,15764,33 +2916,51285,82 +2917,188468,65 +2918,86920,65 +2919,270899,33 +2920,2786,33 +2921,14052,65 +2922,198890,2 +2923,11610,65 +2924,34763,47 +2925,113137,65 +2926,50696,101 +2927,6068,35 +2928,59249,29 +2929,128557,65 +2930,10268,33 +2931,278706,65 +2932,57829,41 +2933,452142,65 +2934,20644,65 +2935,157,65 +2936,213983,41 +2937,83965,33 +2938,275060,65 +2939,33495,29 +2940,59230,65 +2941,12513,33 +2942,101342,100 +2943,211085,65 +2944,34482,65 +2945,42706,29 +2946,67499,16 +2947,77057,101 +2948,19936,41 +2949,12617,65 +2950,41131,66 +2951,360249,93 +2952,93891,101 +2953,185460,65 +2954,93676,65 +2955,103168,65 +2956,150736,33 +2957,361146,100 +2958,18417,65 +2959,32093,41 +2960,339527,65 +2961,354857,65 +2962,128767,82 +2963,10204,64 +2964,96712,101 +2965,162282,29 +2966,158942,13 +2967,266687,65 +2968,77022,65 +2969,235199,65 +2970,46286,65 +2971,44552,34 +2972,21893,65 +2973,16351,65 +2974,145220,35 +2975,11636,65 +2976,118549,65 +2977,301804,65 +2978,14372,65 +2979,110598,65 +2980,336149,65 +2981,168027,65 +2982,16444,65 +2983,163018,2 +2984,94348,35 +2985,39781,65 +2986,238997,65 +2987,2929,15 +2988,30921,65 +2989,75244,65 +2990,11572,35 +2991,304134,91 +2992,11227,41 +2993,47889,65 +2994,33343,65 +2995,49446,65 +2996,206292,41 +2997,99819,41 +2998,29638,65 +2999,26954,29 +3000,191536,9 +3001,231616,65 +3002,194104,65 +3003,273,35 +3004,267935,65 +3005,2611,21 +3006,177677,35 +3007,77728,33 +3008,124115,65 +3009,73835,29 +3010,10354,65 +3011,104973,29 +3012,339419,65 +3013,43811,65 +3014,24554,65 +3015,80351,35 +3016,348601,65 +3017,121662,65 +3018,25969,65 +3019,131822,65 +3020,8329,41 +3021,58587,41 +3022,634,65 +3023,178595,2 +3024,88557,29 +3025,131898,65 +3026,14698,65 +3027,85729,82 +3028,42552,65 +3029,19629,65 +3030,423122,65 +3031,340176,101 +3032,32648,29 +3033,22744,65 +3034,86814,33 +3035,48596,41 +3036,32082,65 +3037,47120,65 +3038,16417,85 +3039,8556,35 +3040,49514,65 +3041,85125,65 +3042,16083,65 +3043,49354,65 +3044,12479,33 +3045,124633,65 +3046,149657,43 +3047,9639,65 +3048,21671,65 +3049,55294,65 +3050,11719,29 +3051,50662,65 +3052,7210,33 +3053,5332,65 +3054,29343,65 +3055,260947,65 +3056,19042,65 +3057,2608,65 +3058,20444,65 +3059,277967,90 +3060,438144,33 +3061,105965,16 +3062,14979,16 +3063,28036,65 +3064,36164,31 +3065,122435,35 +3066,95536,29 +3067,16249,65 +3068,390747,65 +3069,132122,29 +3070,2132,65 +3071,211729,65 +3072,82485,65 +3073,167424,65 +3074,15934,41 +3075,39334,65 +3076,362844,65 +3077,55608,49 +3078,817,65 +3079,101929,101 +3080,166666,65 +3081,177104,29 +3082,9928,29 +3083,796,33 +3084,9483,35 +3085,26405,65 +3086,142391,65 +3087,222517,29 +3088,259075,29 +3089,259694,65 +3090,244117,65 +3091,376391,65 +3092,24357,65 +3093,219067,29 +3094,46769,33 +3095,17238,65 +3096,31287,65 +3097,2124,65 +3098,53219,65 +3099,99579,33 +3100,29449,65 +3101,286873,65 +3102,9963,65 +3103,63831,33 +3104,10862,65 +3105,1811,65 +3106,463906,65 +3107,318184,48 +3108,4375,35 +3109,44593,79 +3110,12289,32 +3111,86040,65 +3112,78507,15 +3113,245175,65 +3114,312669,65 +3115,1404,51 +3116,9274,35 +3117,11653,32 +3118,281291,65 +3119,5172,65 +3120,256924,65 +3121,29694,65 +3122,57412,65 +3123,142802,82 +3124,23397,72 +3125,10154,65 +3126,312137,33 +3127,338312,13 +3128,69352,90 +3129,45714,65 +3130,128612,65 +3131,49097,79 +3132,74961,65 +3133,92635,65 +3134,348611,65 +3135,201913,65 +3136,167262,65 +3137,96552,32 +3138,101908,32 +3139,2002,33 +3140,361340,65 +3141,209266,84 +3142,4257,65 +3143,413417,65 +3144,91419,41 +3145,54893,65 +3146,208700,101 +3147,359870,65 +3148,11035,65 +3149,11458,65 +3150,130233,35 +3151,197737,65 +3152,286971,65 +3153,210068,64 +3154,55846,65 +3155,12599,101 +3156,11902,33 +3157,29161,35 +3158,10622,65 +3159,5289,65 +3160,32140,65 +3161,954,33 +3162,9889,65 +3163,660,65 +3164,274060,65 +3165,254435,100 +3166,253484,65 +3167,10326,65 +3168,29362,65 +3169,32552,33 +3170,63924,65 +3171,103201,65 +3172,214909,79 +3173,29082,33 +3174,352199,29 +3175,418969,65 +3176,124994,101 +3177,2115,65 +3178,15734,13 +3179,10201,48 +3180,134435,65 +3181,74436,65 +3182,414632,65 +3183,10344,65 +3184,85431,65 +3185,72074,32 +3186,53486,33 +3187,10645,35 +3188,367412,65 +3189,31048,93 +3190,172828,65 +3191,31031,35 +3192,138611,33 +3193,352036,65 +3194,81560,101 +3195,14029,29 +3196,86241,65 +3197,11909,4 +3198,387957,65 +3199,71329,60 +3200,160046,82 +3201,291351,101 +3202,53217,33 +3203,55612,93 +3204,14457,65 +3205,70821,65 +3206,21135,35 +3207,52323,13 +3208,107319,65 +3209,28032,65 +3210,66125,79 +3211,161243,35 +3212,336050,57 +3213,18586,65 +3214,73257,41 +3215,92424,33 +3216,12697,35 +3217,62684,35 +3218,44398,35 +3219,12182,65 +3220,197611,65 +3221,26336,65 +3222,2034,31 +3223,56372,82 +3224,94739,65 +3225,54107,65 +3226,287903,35 +3227,47959,41 +3228,204800,65 +3229,225499,65 +3230,270015,65 +3231,47493,65 +3232,302960,65 +3233,62741,82 +3234,346170,65 +3235,11204,35 +3236,290316,33 +3237,15979,64 +3238,47329,65 +3239,55712,65 +3240,75363,35 +3241,47778,2 +3242,180299,84 +3243,25682,65 +3244,37454,33 +3245,11204,65 +3246,91679,65 +3247,389630,65 +3248,159824,76 +3249,22160,65 +3250,17687,65 +3251,430058,33 +3252,37103,65 +3253,102949,29 +3254,97630,65 +3255,60083,33 +3256,75066,33 +3257,18747,72 +3258,71670,33 +3259,128437,33 +3260,25796,33 +3261,153141,65 +3262,3537,65 +3263,2675,100 +3264,341895,71 +3265,250332,65 +3266,3405,29 +3267,70695,65 +3268,220809,65 +3269,261035,65 +3270,73532,33 +3271,27035,65 +3272,125520,65 +3273,74629,65 +3274,82654,65 +3275,28573,29 +3276,360627,65 +3277,9870,35 +3278,27970,65 +3279,43491,65 +3280,38908,65 +3281,9366,101 +3282,325712,65 +3283,15457,33 +3284,72912,65 +3285,73257,65 +3286,288101,33 +3287,41479,67 +3288,42787,65 +3289,219666,79 +3290,15073,41 +3291,48874,65 +3292,390296,65 +3293,48885,65 +3294,245170,35 +3295,44104,41 +3296,84718,65 +3297,11516,65 +3298,11572,33 +3299,55836,33 +3300,339145,35 +3301,42218,65 +3302,277237,65 +3303,19398,65 +3304,31083,65 +3305,28270,33 +3306,10801,35 +3307,170548,65 +3308,18530,65 +3309,91333,65 +3310,47911,65 +3311,9904,65 +3312,145247,41 +3313,56527,79 +3314,128917,65 +3315,78571,33 +3316,144942,65 +3317,791,65 +3318,156326,33 +3319,134480,65 +3320,39001,65 +3321,284189,33 +3322,75,33 +3323,29835,65 +3324,144942,13 +3325,447758,65 +3326,10900,65 +3327,2731,33 +3328,5319,64 +3329,198663,65 +3330,811,65 +3331,270403,66 +3332,61578,65 +3333,42501,33 +3334,317114,65 +3335,1911,93 +3336,4613,65 +3337,358353,65 +3338,77010,65 +3339,337107,33 +3340,10373,65 +3341,330171,29 +3342,469172,100 +3343,9846,41 +3344,11960,32 +3345,49961,100 +3346,286657,65 +3347,94525,101 +3348,1550,65 +3349,2757,80 +3350,43470,65 +3351,37269,65 +3352,110,33 +3353,61267,33 +3354,9287,65 +3355,256907,64 +3356,16563,65 +3357,35284,33 +3358,114577,65 +3359,142712,65 +3360,27137,65 +3361,175822,65 +3362,79521,65 +3363,2567,65 +3364,82157,35 +3365,34838,33 +3366,119738,13 +3367,102632,64 +3368,42941,65 +3369,10727,65 +3370,49833,90 +3371,139244,65 +3372,13285,65 +3373,255692,65 +3374,102057,65 +3375,31547,90 +3376,18809,65 +3377,24272,65 +3378,43434,41 +3379,74666,84 +3380,8071,33 +3381,25903,65 +3382,34082,65 +3383,91067,32 +3384,147132,65 +3385,69727,65 +3386,16015,8 +3387,41131,35 +3388,149465,82 +3389,11647,65 +3390,11930,65 +3391,45874,65 +3392,43407,101 +3393,131836,33 +3394,33344,65 +3395,17654,58 +3396,44140,65 +3397,552,29 +3398,13258,65 +3399,5183,65 +3400,11511,65 +3401,318359,65 +3402,390991,65 +3403,103014,65 +3404,13823,65 +3405,187010,65 +3406,39039,64 +3407,40465,65 +3408,18897,29 +3409,44338,15 +3410,353879,64 +3411,30312,65 +3412,42453,8 +3413,139571,65 +3414,284096,33 +3415,19187,82 +3416,151826,33 +3417,43001,33 +3418,72086,65 +3419,58704,101 +3420,10770,29 +3421,15639,65 +3422,75001,29 +3423,28710,41 +3424,28026,65 +3425,366548,33 +3426,78318,65 +3427,395992,65 +3428,17483,82 +3429,393079,33 +3430,11056,65 +3431,78377,33 +3432,292033,65 +3433,26422,33 +3434,166883,33 +3435,119213,65 +3436,191476,65 +3437,262958,65 +3438,388862,65 +3439,10691,65 +3440,229610,65 +3441,31031,65 +3442,19238,65 +3443,64239,33 +3444,199415,65 +3445,8985,79 +3446,51212,33 +3447,252034,82 +3448,433,65 +3449,129277,68 +3450,76397,65 +3451,37083,65 +3452,29151,65 +3453,354979,65 +3454,62297,16 +3455,41121,32 +3456,390376,82 +3457,44519,64 +3458,257116,65 +3459,53767,65 +3460,37108,65 +3461,83995,65 +3462,11133,65 +3463,17935,33 +3464,232731,65 +3465,36246,101 +3466,180371,100 +3467,12154,65 +3468,549,41 +3469,76684,64 +3470,10750,65 +3471,52251,35 +3472,19174,65 +3473,10930,33 +3474,42989,65 +3475,20381,65 +3476,84907,65 +3477,67328,33 +3478,20196,65 +3479,11330,8 +3480,167935,41 +3481,37419,90 +3482,393367,88 +3483,80389,41 +3484,98250,65 +3485,64805,82 +3486,52366,33 +3487,264729,41 +3488,343934,65 +3489,63938,18 +3490,422603,65 +3491,357706,71 +3492,15875,33 +3493,14423,65 +3494,46738,33 +3495,16523,65 +3496,20742,64 +3497,32227,65 +3498,160324,65 +3499,224894,65 +3500,150117,65 +3501,16661,65 +3502,228331,65 +3503,27349,44 +3504,49365,65 +3505,193878,65 +3506,19971,65 +3507,153161,65 +3508,281215,65 +3509,13163,65 +3510,287391,33 +3511,30289,65 +3512,34729,65 +3513,23114,65 +3514,102256,44 +3515,11475,18 +3516,80343,65 +3517,16342,65 +3518,165159,29 +3519,12129,65 +3520,10804,33 +3521,121006,65 +3522,121998,29 +3523,19276,64 +3524,96712,32 +3525,56135,65 +3526,765,65 +3527,52418,31 +3528,270650,65 +3529,395479,82 +3530,369885,33 +3531,10109,32 +3532,86284,65 +3533,339403,65 +3534,41115,33 +3535,81551,7 +3536,12311,65 +3537,18492,76 +3538,353686,65 +3539,81110,65 +3540,12249,18 +3541,1272,65 +3542,378446,33 +3543,43912,65 +3544,144111,65 +3545,103850,65 +3546,93858,65 +3547,5516,65 +3548,59981,65 +3549,56858,8 +3550,16436,33 +3551,91628,35 +3552,142106,65 +3553,363479,65 +3554,354105,33 +3555,342765,79 +3556,278475,90 +3557,354859,35 +3558,36691,65 +3559,77762,82 +3560,60935,93 +3561,55663,35 +3562,43434,82 +3563,119172,101 +3564,4550,65 +3565,4644,35 +3566,34326,101 +3567,66113,65 +3568,5552,65 +3569,305342,65 +3570,60046,29 +3571,58529,65 +3572,128412,82 +3573,195522,41 +3574,332079,65 +3575,270946,65 +3576,43205,65 +3577,295588,65 +3578,10145,65 +3579,12499,65 +3580,28,33 +3581,72207,65 +3582,35572,91 +3583,203264,65 +3584,3989,84 +3585,32338,33 +3586,44661,35 +3587,332806,65 +3588,172259,65 +3589,314388,72 +3590,21544,65 +3591,13056,65 +3592,116437,9 +3593,139272,90 +3594,75948,32 +3595,274504,65 +3596,30198,101 +3597,45800,65 +3598,10518,65 +3599,32764,92 +3600,28273,101 +3601,29204,65 +3602,13542,85 +3603,252096,18 +3604,28370,67 +3605,127521,65 +3606,72140,33 +3607,60678,18 +3608,438643,65 +3609,379335,18 +3610,84226,35 +3611,153272,65 +3612,230428,65 +3613,85411,65 +3614,13022,65 +3615,9013,65 +3616,145244,29 +3617,30155,65 +3618,369052,33 +3619,57597,65 +3620,5491,33 +3621,19286,65 +3622,63859,65 +3623,15003,76 +3624,285213,31 +3625,41714,72 +3626,162406,101 +3627,10096,100 +3628,138522,15 +3629,138496,65 +3630,815,65 +3631,31005,65 +3632,44155,33 +3633,44363,65 +3634,13562,13 +3635,335819,82 +3636,84352,65 +3637,296029,65 +3638,22020,65 +3639,59349,33 +3640,169298,65 +3641,35626,65 +3642,14076,65 +3643,81687,41 +3644,9885,65 +3645,72933,101 +3646,122928,65 +3647,12614,65 +3648,58051,64 +3649,84305,41 +3650,284343,66 +3651,47914,65 +3652,135335,101 +3653,73984,65 +3654,26331,65 +3655,350762,65 +3656,51999,65 +3657,47312,65 +3658,2293,65 +3659,136146,65 +3660,171738,65 +3661,73116,65 +3662,253154,65 +3663,252746,65 +3664,11591,65 +3665,387886,31 +3666,104522,82 +3667,132714,65 +3668,50012,33 +3669,461615,33 +3670,382951,65 +3671,69921,65 +3672,240745,35 +3673,320011,65 +3674,98914,82 +3675,127864,41 +3676,5748,65 +3677,43727,65 +3678,1726,7 +3679,30349,65 +3680,89287,33 +3681,376579,65 +3682,374883,18 +3683,44510,65 +3684,13005,65 +3685,9366,65 +3686,41110,65 +3687,35118,65 +3688,13834,65 +3689,43891,65 +3690,58,90 +3691,41783,32 +3692,90616,65 +3693,163,65 +3694,12447,65 +3695,116979,65 +3696,27145,35 +3697,62439,31 +3698,390526,65 +3699,259695,41 +3700,68004,72 +3701,51800,41 +3702,2259,65 +3703,108665,32 +3704,4147,65 +3705,23853,65 +3706,9301,35 +3707,312831,21 +3708,176627,65 +3709,176085,65 +3710,359471,65 +3711,31074,65 +3712,452372,65 +3713,298,41 +3714,45377,65 +3715,294016,65 +3716,342588,101 +3717,369883,65 +3718,8816,44 +3719,45807,65 +3720,86118,15 +3721,109261,33 +3722,29259,33 +3723,28367,65 +3724,9428,29 +3725,32233,72 +3726,9539,33 +3727,12249,65 +3728,297560,2 +3729,33740,65 +3730,220005,29 +3731,71700,65 +3732,391642,101 +3733,14126,33 +3734,107811,65 +3735,6591,65 +3736,21583,65 +3737,43469,29 +3738,74921,79 +3739,2267,65 +3740,39979,29 +3741,4012,13 +3742,44256,33 +3743,32298,65 +3744,46931,18 +3745,57809,82 +3746,280674,65 +3747,230680,35 +3748,218898,47 +3749,85230,65 +3750,62764,65 +3751,19901,65 +3752,76,65 +3753,64239,41 +3754,25890,65 +3755,264356,65 +3756,417820,65 +3757,102461,33 +3758,106417,101 +3759,14349,65 +3760,188598,65 +3761,164504,65 +3762,23397,65 +3763,239103,35 +3764,150201,65 +3765,114172,18 +3766,80560,65 +3767,43046,65 +3768,22213,65 +3769,301491,2 +3770,289159,22 +3771,43365,65 +3772,85640,65 +3773,40761,65 +3774,42579,29 +3775,41556,33 +3776,45384,101 +3777,14207,100 +3778,72949,82 +3779,14136,72 +3780,339367,64 +3781,42057,51 +3782,65904,67 +3783,182127,72 +3784,16800,33 +3785,428493,65 +3786,37181,35 +3787,88285,65 +3788,42701,65 +3789,336271,65 +3790,81274,65 +3791,348631,65 +3792,300667,65 +3793,250376,65 +3794,303542,29 +3795,124075,32 +3796,25037,33 +3797,73215,16 +3798,58790,65 +3799,125666,65 +3800,288413,65 +3801,9099,65 +3802,310123,64 +3803,277847,65 +3804,2017,65 +3805,154441,100 +3806,23152,65 +3807,16997,65 +3808,242,65 +3809,15003,101 +3810,334795,82 +3811,345922,65 +3812,340616,65 +3813,44626,65 +3814,15016,65 +3815,50327,65 +3816,2830,65 +3817,29355,65 +3818,111239,65 +3819,197,80 +3820,314285,29 +3821,31216,65 +3822,118497,67 +3823,13788,66 +3824,11972,33 +3825,427045,65 +3826,44001,65 +3827,11706,29 +3828,55190,33 +3829,56906,65 +3830,9352,101 +3831,66668,65 +3832,268536,65 +3833,52654,29 +3834,39998,32 +3835,83897,100 +3836,30139,65 +3837,28,20 +3838,24821,93 +3839,14088,101 +3840,30402,65 +3841,262338,65 +3842,13668,65 +3843,10458,35 +3844,27937,82 +3845,2982,65 +3846,9292,29 +3847,429238,65 +3848,322487,65 +3849,411802,65 +3850,60678,44 +3851,238307,82 +3852,385654,56 +3853,32684,65 +3854,43753,65 +3855,46770,33 +3856,10534,33 +3857,344147,65 +3858,73943,65 +3859,334298,32 +3860,11247,65 +3861,310123,65 +3862,270469,15 +3863,64784,101 +3864,12639,41 +3865,68360,33 +3866,27805,65 +3867,36992,35 +3868,203833,35 +3869,38150,79 +3870,41599,65 +3871,11379,65 +3872,314388,32 +3873,10869,65 +3874,31913,65 +3875,43635,101 +3876,166901,65 +3877,75233,93 +3878,308024,65 +3879,46184,65 +3880,17911,65 +3881,390357,16 +3882,10055,65 +3883,52147,90 +3884,23069,65 +3885,164331,65 +3886,99826,65 +3887,72574,65 +3888,1659,35 +3889,26123,65 +3890,205891,65 +3891,255491,65 +3892,80410,65 +3893,203715,33 +3894,159138,65 +3895,10330,65 +3896,10829,65 +3897,19101,33 +3898,64190,65 +3899,11712,101 +3900,205076,65 +3901,435737,65 +3902,55032,65 +3903,82027,79 +3904,440597,65 +3905,88794,65 +3906,1661,35 +3907,104430,65 +3908,45000,33 +3909,41054,29 +3910,71066,65 +3911,388764,31 +3912,365222,76 +3913,329216,65 +3914,323435,65 +3915,151652,23 +3916,42293,35 +3917,61935,16 +3918,54988,65 +3919,857,35 +3920,86154,65 +3921,54796,65 +3922,6978,72 +3923,30941,41 +3924,103597,33 +3925,233423,65 +3926,310137,65 +3927,362154,32 +3928,430365,33 +3929,30584,65 +3930,336882,93 +3931,23239,65 +3932,171648,93 +3933,76494,65 +3934,14804,65 +3935,16806,65 +3936,85883,33 +3937,21029,65 +3938,45533,64 +3939,3682,65 +3940,15260,41 +3941,19551,65 +3942,126090,65 +3943,13336,33 +3944,33542,65 +3945,15759,65 +3946,343173,65 +3947,28571,65 +3948,29368,65 +3949,19715,65 +3950,18843,65 +3951,47459,29 +3952,44566,64 +3953,20342,65 +3954,9659,65 +3955,37340,65 +3956,67696,65 +3957,64383,33 +3958,11589,65 +3959,37030,35 +3960,572,93 +3961,47241,2 +3962,31498,65 +3963,70051,65 +3964,32140,13 +3965,295621,84 +3966,390409,35 +3967,12121,65 +3968,12171,65 +3969,32093,65 +3970,5965,79 +3971,226001,16 +3972,70351,65 +3973,76142,65 +3974,81720,65 +3975,84185,65 +3976,31417,33 +3977,78339,65 +3978,10063,65 +3979,22025,101 +3980,174712,101 +3981,403605,5 +3982,38874,80 +3983,72592,101 +3984,329286,65 +3985,285848,66 +3986,65795,41 +3987,48852,65 +3988,5237,65 +3989,13763,65 +3990,61168,65 +3991,690,33 +3992,21380,29 +3993,16014,8 +3994,43385,65 +3995,128767,65 +3996,207178,65 +3997,75137,65 +3998,276935,64 +3999,45875,65 +4000,10096,33 +4001,460870,65 +4002,225285,65 +4003,4024,33 +4004,369885,35 +4005,23382,65 +4006,314285,8 +4007,284279,93 +4008,12683,100 +4009,41495,41 +4010,295588,35 +4011,429792,65 +4012,107445,35 +4013,12696,35 +4014,28171,65 +4015,71147,65 +4016,9470,72 +4017,32635,41 +4018,10550,65 +4019,70151,65 +4020,102444,65 +4021,257345,65 +4022,37291,65 +4023,73160,100 +4024,37468,65 +4025,311324,41 +4026,289159,82 +4027,363579,101 +4028,285270,65 +4029,46421,65 +4030,18002,65 +4031,286521,65 +4032,91477,65 +4033,51971,33 +4034,939,41 +4035,18725,72 +4036,35395,41 +4037,9298,65 +4038,36236,29 +4039,3172,65 +4040,62768,65 +4041,42796,65 +4042,145247,65 +4043,110909,65 +4044,41479,65 +4045,253251,41 +4046,18128,65 +4047,50463,65 +4048,32604,29 +4049,31380,65 +4050,49609,65 +4051,26949,65 +4052,31244,65 +4053,258363,41 +4054,31264,29 +4055,3078,65 +4056,42023,65 +4057,88557,35 +4058,20846,65 +4059,25538,32 +4060,384021,65 +4061,15006,65 +4062,293271,18 +4063,93263,65 +4064,7837,65 +4065,61988,41 +4066,4140,94 +4067,359245,65 +4068,10992,35 +4069,26798,65 +4070,94874,65 +4071,22471,44 +4072,8388,35 +4073,82178,65 +4074,79735,65 +4075,29352,29 +4076,73348,65 +4077,170279,65 +4078,13496,65 +4079,28527,16 +4080,111744,65 +4081,301325,65 +4082,246655,65 +4083,300210,84 +4084,266400,65 +4085,47186,33 +4086,31445,65 +4087,9403,65 +4088,7548,65 +4089,40258,33 +4090,209112,65 +4091,166076,33 +4092,11907,35 +4093,21148,65 +4094,38359,82 +4095,28118,65 +4096,26636,33 +4097,24020,65 +4098,315850,65 +4099,99312,65 +4100,370755,65 +4101,49653,82 +4102,25241,29 +4103,13354,65 +4104,14565,65 +4105,193177,65 +4106,81654,29 +4107,148371,101 +4108,85715,82 +4109,29263,65 +4110,37603,35 +4111,100270,41 +4112,117550,33 +4113,14522,65 +4114,320589,65 +4115,14387,65 +4116,67822,65 +4117,15089,65 +4118,157787,33 +4119,265712,76 +4120,10674,32 +4121,28438,65 +4122,362045,35 +4123,41703,82 +4124,31385,65 +4125,48210,2 +4126,9753,41 +4127,15830,8 +4128,42309,65 +4129,15213,8 +4130,42619,65 +4131,109479,65 +4132,44943,65 +4133,94727,15 +4134,32536,44 +4135,72465,33 +4136,43711,65 +4137,16281,65 +4138,211139,41 +4139,384262,44 +4140,64481,33 +4141,444193,65 +4142,76349,32 +4143,11113,65 +4144,118131,65 +4145,157847,65 +4146,28001,65 +4147,37710,29 +4148,12453,33 +4149,114922,41 +4150,184578,65 +4151,11953,101 +4152,244,65 +4153,412851,48 +4154,705,33 +4155,48254,29 +4156,93856,65 +4157,75564,65 +4158,231082,65 +4159,12479,65 +4160,59197,76 +4161,70667,33 +4162,195763,32 +4163,31548,65 +4164,76101,65 +4165,3549,65 +4166,42794,65 +4167,3085,65 +4168,27983,65 +4169,42436,29 +4170,92269,65 +4171,356758,29 +4172,25538,65 +4173,105763,82 +4174,105763,42 +4175,84425,33 +4176,104528,65 +4177,31835,65 +4178,3686,35 +4179,16938,65 +4180,24918,65 +4181,81003,65 +4182,17654,61 +4183,24212,65 +4184,62775,18 +4185,231176,29 +4186,85414,65 +4187,22314,65 +4188,314389,90 +4189,103161,65 +4190,37103,101 +4191,27230,65 +4192,101231,29 +4193,42580,65 +4194,696,65 +4195,206574,35 +4196,14429,65 +4197,274479,65 +4198,278978,35 +4199,331962,65 +4200,19887,64 +4201,14983,65 +4202,98203,107 +4203,9819,65 +4204,17295,65 +4205,71140,65 +4206,37481,65 +4207,216156,65 +4208,240832,65 +4209,63825,71 +4210,76200,33 +4211,45512,65 +4212,61550,65 +4213,21533,65 +4214,82080,29 +4215,14589,65 +4216,53404,65 +4217,236399,65 +4218,17111,76 +4219,8584,32 +4220,162864,65 +4221,32451,65 +4222,24331,35 +4223,54570,65 +4224,36075,101 +4225,8886,65 +4226,8888,35 +4227,9457,31 +4228,405388,65 +4229,36634,65 +4230,331745,65 +4231,50526,65 +4232,58887,65 +4233,142478,65 +4234,46513,65 +4235,131966,29 +4236,64499,65 +4237,77922,65 +4238,126442,65 +4239,9542,65 +4240,20186,65 +4241,857,67 +4242,390409,93 +4243,319513,16 +4244,38404,65 +4245,15661,82 +4246,43846,65 +4247,52475,35 +4248,30966,65 +4249,35110,33 +4250,52045,33 +4251,61035,35 +4252,109417,65 +4253,362579,41 +4254,257912,65 +4255,424661,65 +4256,79728,2 +4257,124625,35 +4258,337758,102 +4259,130062,15 +4260,46007,65 +4261,11012,33 +4262,59181,65 +4263,8985,44 +4264,321039,33 +4265,80193,41 +4266,64674,2 +4267,57100,32 +4268,288313,29 +4269,141819,101 +4270,12639,65 +4271,3476,33 +4272,19898,35 +4273,337751,65 +4274,365222,72 +4275,333663,100 +4276,12,65 +4277,127105,15 +4278,111042,65 +4279,80350,65 +4280,102629,65 +4281,91259,65 +4282,11472,82 +4283,96713,65 +4284,8088,41 +4285,16182,65 +4286,15936,65 +4287,83114,101 +4288,387999,65 +4289,83346,65 +4290,53949,65 +4291,42258,16 +4292,277558,65 +4293,263341,65 +4294,64483,82 +4295,39358,65 +4296,31027,72 +4297,127424,19 +4298,9820,100 +4299,469,65 +4300,55694,13 +4301,131351,65 +4302,82,41 +4303,257095,67 +4304,294640,13 +4305,343878,8 +4306,73420,65 +4307,40925,65 +4308,24150,65 +4309,19354,15 +4310,117531,65 +4311,159770,65 +4312,298935,65 +4313,128089,35 +4314,41478,65 +4315,26119,65 +4316,11848,65 +4317,2012,65 +4318,70670,8 +4319,11653,31 +4320,83209,35 +4321,2608,41 +4322,9443,33 +4323,59297,101 +4324,39779,65 +4325,4140,29 +4326,2734,35 +4327,280477,79 +4328,14609,65 +4329,19957,65 +4330,81895,65 +4331,78096,65 +4332,46114,32 +4333,210910,65 +4334,36983,65 +4335,74911,65 +4336,268735,65 +4337,10493,29 +4338,10364,29 +4339,85160,65 +4340,262454,33 +4341,164366,16 +4342,319999,79 +4343,890,35 +4344,80142,65 +4345,7085,35 +4346,37038,65 +4347,15486,101 +4348,375199,64 +4349,11450,65 +4350,16873,65 +4351,346646,31 +4352,88953,67 +4353,64942,29 +4354,15765,65 +4355,122698,65 +4356,110502,65 +4357,99863,65 +4358,188161,65 +4359,18739,35 +4360,10033,65 +4361,285181,33 +4362,88641,65 +4363,37368,65 +4364,316776,65 +4365,20106,33 +4366,91950,41 +4367,20907,13 +4368,15734,65 +4369,33273,69 +4370,64847,101 +4371,15022,65 +4372,15527,13 +4373,244268,65 +4374,3061,65 +4375,17708,41 +4376,320873,64 +4377,301729,65 +4378,27372,101 +4379,105153,15 +4380,226630,65 +4381,447511,65 +4382,55347,33 +4383,43880,65 +4384,55922,65 +4385,268321,65 +4386,175171,65 +4387,15745,65 +4388,188357,65 +4389,75145,65 +4390,37590,35 +4391,39867,65 +4392,171357,65 +4393,11524,65 +4394,245692,82 +4395,103620,65 +4396,70122,48 +4397,18642,65 +4398,9746,65 +4399,49314,65 +4400,33367,65 +4401,343702,33 +4402,82243,64 +4403,245170,101 +4404,85350,41 +4405,439998,29 +4406,76047,44 +4407,18899,72 +4408,285685,41 +4409,10008,65 +4410,12573,34 +4411,41402,65 +4412,338438,65 +4413,14457,41 +4414,58,2 +4415,86838,4 +4416,10518,34 +4417,52369,33 +4418,58611,29 +4419,256311,35 +4420,9354,65 +4421,197,30 +4422,56292,84 +4423,11046,65 +4424,85377,101 +4425,170279,16 +4426,371181,65 +4427,464819,65 +4428,53879,65 +4429,96252,65 +4430,78373,65 +4431,39536,65 +4432,86274,65 +4433,8429,35 +4434,59199,65 +4435,274991,82 +4436,435,101 +4437,73772,65 +4438,211220,65 +4439,17654,55 +4440,204553,31 +4441,15712,90 +4442,18190,35 +4443,109491,65 +4444,1377,29 +4445,83540,65 +4446,31942,65 +4447,14569,79 +4448,70712,41 +4449,76788,71 +4450,315846,101 +4451,42494,65 +4452,14181,65 +4453,49190,35 +4454,345519,65 +4455,6499,65 +4456,377362,100 +4457,69060,41 +4458,85196,65 +4459,381073,65 +4460,308529,65 +4461,14432,65 +4462,49073,41 +4463,28465,65 +4464,71099,65 +4465,10849,65 +4466,255384,65 +4467,79833,65 +4468,31922,65 +4469,71866,35 +4470,42252,65 +4471,935,65 +4472,39123,101 +4473,203217,100 +4474,55608,82 +4475,14505,65 +4476,43434,13 +4477,316170,29 +4478,25597,31 +4479,284135,65 +4480,65599,65 +4481,85837,65 +4482,8144,29 +4483,39957,65 +4484,85317,82 +4485,119569,65 +4486,10871,65 +4487,340616,35 +4488,43546,41 +4489,367732,65 +4490,155765,101 +4491,56486,35 +4492,61121,44 +4493,245170,65 +4494,4550,31 +4495,13585,65 +4496,31542,29 +4497,245891,13 +4498,49847,65 +4499,44732,65 +4500,29739,65 +4501,86391,33 +4502,10733,65 +4503,251419,65 +4504,120077,65 +4505,108419,65 +4506,41645,41 +4507,38448,33 +4508,104275,67 +4509,345637,65 +4510,328692,16 +4511,61699,66 +4512,51349,82 +4513,383535,65 +4514,41552,65 +4515,345775,8 +4516,185158,65 +4517,290555,65 +4518,49009,82 +4519,187028,66 +4520,20907,65 +4521,66894,65 +4522,19996,65 +4523,83459,82 +4524,35253,65 +4525,222297,33 +4526,17401,65 +4527,8366,35 +4528,9882,65 +4529,317198,65 +4530,170603,65 +4531,399894,65 +4532,148284,64 +4533,12716,1 +4534,69610,90 +4535,31805,65 +4536,51247,65 +4537,245268,65 +4538,19604,65 +4539,147533,31 +4540,8281,33 +4541,95874,65 +4542,101376,44 +4543,182129,65 +4544,11446,65 +4545,118451,31 +4546,16487,65 +4547,10265,101 +4548,28902,65 +4549,19082,65 +4550,369885,65 +4551,1377,65 +4552,349441,66 +4553,395479,65 +4554,14534,65 +4555,10847,65 +4556,43432,41 +4557,104427,65 +4558,6552,65 +4559,10005,82 +4560,8464,65 +4561,67216,35 +4562,44800,65 +4563,377853,33 +4564,342213,41 +4565,28387,65 +4566,49522,82 +4567,42684,65 +4568,7220,65 +4569,130957,35 +4570,263873,65 +4571,60269,65 +4572,354287,12 +4573,43231,29 +4574,168295,101 +4575,9981,29 +4576,77079,41 +4577,244956,101 +4578,58060,29 +4579,65718,33 +4580,22292,65 +4581,24559,13 +4582,69428,71 +4583,206328,65 +4584,124277,65 +4585,341077,65 +4586,76094,65 +4587,124597,101 +4588,29610,65 +4589,9899,65 +4590,844,32 +4591,28299,65 +4592,56095,32 +4593,110381,33 +4594,12085,65 +4595,99579,35 +4596,9079,100 +4597,216521,65 +4598,110552,76 +4599,24059,33 +4600,34223,65 +4601,37609,41 +4602,31978,65 +4603,9528,65 +4604,149149,41 +4605,10749,35 +4606,147538,65 +4607,99642,65 +4608,24341,65 +4609,302528,65 +4610,15261,65 +4611,253232,101 +4612,286192,65 +4613,66469,65 +4614,44038,65 +4615,85126,65 +4616,47143,31 +4617,141419,15 +4618,71381,82 +4619,19528,72 +4620,24420,65 +4621,36926,65 +4622,96133,29 +4623,257377,65 +4624,55347,65 +4625,57458,76 +4626,228074,65 +4627,258363,65 +4628,30034,65 +4629,103396,35 +4630,202984,65 +4631,49844,65 +4632,43158,41 +4633,81188,33 +4634,16638,65 +4635,8471,65 +4636,46872,65 +4637,3577,35 +4638,26581,65 +4639,390,65 +4640,19661,65 +4641,81576,41 +4642,19606,65 +4643,45303,72 +4644,48153,33 +4645,259728,35 +4646,922,41 +4647,86391,13 +4648,14073,64 +4649,392882,101 +4650,144580,65 +4651,24077,65 +4652,39230,101 +4653,263115,65 +4654,7459,65 +4655,47795,2 +4656,169382,65 +4657,253533,47 +4658,76349,33 +4659,21780,65 +4660,351862,65 +4661,9946,65 +4662,14400,100 +4663,54198,65 +4664,168819,79 +4665,169298,35 +4666,140652,65 +4667,44552,44 +4668,342163,13 +4669,47161,46 +4670,366249,18 +4671,252682,65 +4672,844,101 +4673,148034,103 +4674,3549,44 +4675,297342,2 +4676,122019,41 +4677,281968,29 +4678,54309,29 +4679,10518,33 +4680,252874,101 +4681,64942,35 +4682,104528,35 +4683,100791,82 +4684,14537,101 +4685,42168,65 +4686,410965,65 +4687,323370,65 +4688,91390,35 +4689,56725,65 +4690,9946,80 +4691,226188,65 +4692,43026,33 +4693,330333,33 +4694,15497,65 +4695,165,65 +4696,65887,33 +4697,33146,64 +4698,16455,79 +4699,290365,33 +4700,12273,64 +4701,284306,18 +4702,71191,33 +4703,43778,41 +4704,8014,101 +4705,37929,65 +4706,205349,29 +4707,74527,65 +4708,3597,65 +4709,233917,18 +4710,390343,65 +4711,11547,65 +4712,13196,66 +4713,210092,65 +4714,48841,65 +4715,171075,65 +4716,9296,65 +4717,11626,44 +4718,12594,65 +4719,77882,65 +4720,415358,64 +4721,141643,65 +4722,53622,65 +4723,10948,65 +4724,88018,15 +4725,325205,18 +4726,278334,65 +4727,217948,65 +4728,33360,33 +4729,42640,65 +4730,10865,65 +4731,198511,35 +4732,43440,41 +4733,45522,65 +4734,33253,76 +4735,1890,65 +4736,19731,65 +4737,45562,65 +4738,218508,101 +4739,10409,41 +4740,28974,65 +4741,176321,35 +4742,279690,65 +4743,11889,65 +4744,25988,65 +4745,18927,65 +4746,29083,65 +4747,293122,65 +4748,129518,16 +4749,62492,65 +4750,443053,65 +4751,82708,82 +4752,24709,65 +4753,15177,93 +4754,213914,65 +4755,374021,2 +4756,352694,101 +4757,413782,101 +4758,238,65 +4759,59930,65 +4760,14073,71 +4761,14134,64 +4762,13333,65 +4763,44238,44 +4764,522,65 +4765,17889,65 +4766,123592,90 +4767,376394,65 +4768,26390,65 +4769,230182,65 +4770,317214,84 +4771,295314,33 +4772,190940,65 +4773,39356,88 +4774,82368,29 +4775,265226,33 +4776,43497,65 +4777,19505,65 +4778,25953,65 +4779,28325,29 +4780,300424,65 +4781,18290,65 +4782,54156,33 +4783,269173,65 +4784,16077,65 +4785,18691,65 +4786,8063,82 +4787,287483,66 +4788,694,65 +4789,46128,29 +4790,110148,65 +4791,352186,65 +4792,264309,65 +4793,390930,101 +4794,78999,65 +4795,351365,65 +4796,22267,65 +4797,9956,33 +4798,10395,65 +4799,155011,29 +4800,36214,101 +4801,2160,33 +4802,14830,65 +4803,34449,56 +4804,31273,14 +4805,173847,29 +4806,166221,65 +4807,224243,65 +4808,270007,65 +4809,11902,65 +4810,57684,65 +4811,92499,31 +4812,12427,36 +4813,13079,65 +4814,319073,65 +4815,1833,65 +4816,317,103 +4817,14136,41 +4818,84336,65 +4819,70133,100 +4820,209556,65 +4821,9613,65 +4822,36373,65 +4823,152989,33 +4824,50126,65 +4825,47201,41 +4826,160106,67 +4827,60063,65 +4828,13544,76 +4829,11048,29 +4830,44308,33 +4831,142412,64 +4832,1926,64 +4833,286940,65 +4834,213121,65 +4835,76,33 +4836,84354,41 +4837,146712,65 +4838,17139,35 +4839,33340,44 +4840,87204,44 +4841,86768,65 +4842,14882,65 +4843,62397,29 +4844,208305,33 +4845,36915,65 +4846,29204,66 +4847,251555,41 +4848,109122,65 +4849,924,29 +4850,246860,33 +4851,28597,29 +4852,303360,65 +4853,45928,65 +4854,252853,65 +4855,17962,101 +4856,80596,65 +4857,51890,101 +4858,92384,65 +4859,53256,35 +4860,120872,65 +4861,19676,35 +4862,112244,101 +4863,21250,35 +4864,393659,65 +4865,10594,65 +4866,28044,65 +4867,244580,65 +4868,149511,79 +4869,2966,65 +4870,74935,65 +4871,11853,82 +4872,11677,35 +4873,773,65 +4874,34216,32 +4875,37817,100 +4876,41733,41 +4877,14411,72 +4878,152113,100 +4879,241927,65 +4880,390,35 +4881,266568,35 +4882,196469,65 +4883,38244,41 +4884,24348,41 +4885,289336,44 +4886,361183,16 +4887,129542,65 +4888,43139,65 +4889,120605,65 +4890,101998,65 +4891,63498,65 +4892,377151,65 +4893,312100,65 +4894,51267,82 +4895,159701,65 +4896,26517,65 +4897,9519,65 +4898,9507,65 +4899,255647,41 +4900,60813,33 +4901,119820,35 +4902,63665,65 +4903,413279,65 +4904,22585,33 +4905,18352,67 +4906,82134,65 +4907,3539,35 +4908,336050,35 +4909,51036,65 +4910,616,65 +4911,144229,65 +4912,207021,65 +4913,173189,65 +4914,43211,29 +4915,25784,4 +4916,47794,65 +4917,144651,15 +4918,60125,65 +4919,19898,4 +4920,121929,41 +4921,134662,65 +4922,29572,82 +4923,311291,65 +4924,75761,65 +4925,79137,65 +4926,212481,65 +4927,216369,100 +4928,70670,65 +4929,211158,35 +4930,11442,65 +4931,52264,33 +4932,147360,33 +4933,107445,82 +4934,51275,82 +4935,205481,65 +4936,31863,65 +4937,297762,35 +4938,105352,15 +4939,48466,65 +4940,374416,29 +4941,413391,65 +4942,25673,65 +4943,76543,65 +4944,37181,46 +4945,47886,41 +4946,87060,65 +4947,45335,65 +4948,10585,65 +4949,87654,93 +4950,457307,82 +4951,77381,67 +4952,64129,65 +4953,137093,65 +4954,5924,65 +4955,413998,65 +4956,29952,41 +4957,41211,41 +4958,179847,79 +4959,42819,35 +4960,54388,65 +4961,15163,33 +4962,32489,65 +4963,68976,65 +4964,252773,33 +4965,68752,35 +4966,261249,65 +4967,351211,65 +4968,43895,65 +4969,43464,29 +4970,11521,13 +4971,10103,31 +4972,12638,35 +4973,25797,16 +4974,293654,82 +4975,358895,65 +4976,104744,101 +4977,29568,41 +4978,101242,65 +4979,18682,65 +4980,58080,29 +4981,148,41 +4982,90228,33 +4983,21752,100 +4984,118658,65 +4985,10694,65 +4986,410118,93 +4987,127329,72 +4988,161179,64 +4989,39958,41 +4990,82237,65 +4991,16214,65 +4992,1640,41 +4993,314420,35 +4994,8965,65 +4995,9252,35 +4996,77650,65 +4997,99008,65 +4998,72375,33 +4999,54662,65 +5000,377447,32 +5001,92257,33 +5002,237756,65 +5003,43113,35 +5004,256328,65 +5005,39816,64 +5006,339148,65 +5007,134238,65 +5008,12764,4 +5009,267793,33 +5010,16820,67 +5011,20153,65 +5012,14869,30 +5013,11385,78 +5014,120802,65 +5015,133183,65 +5016,104954,29 +5017,417936,65 +5018,123969,65 +5019,171213,33 +5020,14076,64 +5021,22551,65 +5022,284250,2 +5023,1694,65 +5024,10604,2 +5025,84473,33 +5026,47886,65 +5027,203072,18 +5028,53179,33 +5029,43023,35 +5030,346672,14 +5031,41505,65 +5032,151489,10 +5033,44104,66 +5034,1976,65 +5035,17906,34 +5036,53617,65 +5037,362703,3 +5038,257331,31 +5039,47211,41 +5040,103433,65 +5041,38654,65 +5042,122487,35 +5043,27834,33 +5044,43142,65 +5045,62441,35 +5046,319340,33 +5047,7555,50 +5048,43809,65 +5049,71859,65 +5050,130739,35 +5051,90351,101 +5052,10873,65 +5053,336890,65 +5054,14977,79 +5055,18932,65 +5056,11873,65 +5057,127372,65 +5058,17038,65 +5059,966,65 +5060,47448,93 +5061,41610,29 +5062,11545,33 +5063,110447,29 +5064,14626,29 +5065,20110,65 +5066,381518,65 +5067,197297,90 +5068,412103,65 +5069,18971,65 +5070,142656,101 +5071,258353,65 +5072,20096,65 +5073,199887,65 +5074,36335,65 +5075,15982,65 +5076,33357,65 +5077,12601,35 +5078,16005,65 +5079,27432,65 +5080,2758,65 +5081,13794,65 +5082,19294,33 +5083,42062,65 +5084,102913,93 +5085,348320,16 +5086,61212,29 +5087,921,65 +5088,248211,64 +5089,187993,65 +5090,17007,33 +5091,53883,71 +5092,23544,65 +5093,58995,65 +5094,420703,100 +5095,128767,2 +5096,88036,33 +5097,382125,65 +5098,70090,65 +5099,51759,65 +5100,80125,35 +5101,169364,28 +5102,435,41 +5103,88529,101 +5104,79935,65 +5105,21198,65 +5106,153518,65 +5107,111014,65 +5108,301325,41 +5109,32904,65 +5110,329819,33 +5111,14029,65 +5112,90395,65 +5113,73933,65 +5114,772,65 +5115,46124,32 +5116,256628,33 +5117,82968,100 +5118,456781,65 +5119,7249,65 +5120,51999,33 +5121,41131,65 +5122,149870,101 +5123,41378,32 +5124,85024,65 +5125,120303,41 +5126,269258,35 +5127,66949,33 +5128,250503,65 +5129,63300,82 +5130,157293,64 +5131,10659,35 +5132,298,33 +5133,2,35 +5134,364410,65 +5135,27414,65 +5136,257176,65 +5137,9785,65 +5138,64015,65 +5139,17654,65 +5140,29100,65 +5141,8985,33 +5142,33273,65 +5143,30624,65 +5144,258480,65 +5145,126319,33 +5146,13616,82 +5147,54514,82 +5148,36658,29 +5149,35543,65 +5150,11902,82 +5151,46121,65 +5152,22582,65 +5153,192023,65 +5154,19108,65 +5155,205724,65 +5156,58081,29 +5157,108177,65 +5158,26936,101 +5159,229296,65 +5160,17139,16 +5161,20047,65 +5162,129542,35 +5163,79550,65 +5164,293670,101 +5165,10165,65 +5166,43562,65 +5167,104374,101 +5168,24554,33 +5169,170689,82 +5170,72474,65 +5171,214086,65 +5172,393367,65 +5173,30449,65 +5174,121791,84 +5175,37502,31 +5176,79526,16 +5177,92796,65 +5178,16428,65 +5179,77887,65 +5180,18937,65 +5181,15849,65 +5182,9297,65 +5183,55823,29 +5184,67018,33 +5185,319971,65 +5186,14370,65 +5187,57438,93 +5188,2965,65 +5189,1164,33 +5190,199373,65 +5191,68163,65 +5192,42709,65 +5193,45792,65 +5194,23823,65 +5195,290999,65 +5196,209266,65 +5197,238,80 +5198,77067,65 +5199,43868,65 +5200,299780,65 +5201,36628,65 +5202,20625,65 +5203,390587,65 +5204,159469,65 +5205,28115,65 +5206,20544,65 +5207,200655,65 +5208,95756,65 +5209,1890,67 +5210,180929,65 +5211,79329,65 +5212,177358,64 +5213,2463,65 +5214,70581,101 +5215,312497,65 +5216,83435,82 +5217,16464,15 +5218,41077,13 +5219,333352,65 +5220,96419,41 +5221,187442,41 +5222,338767,44 +5223,1361,65 +5224,46247,65 +5225,2140,33 +5226,77283,65 +5227,369697,65 +5228,25716,65 +5229,13004,65 +5230,60824,33 +5231,209251,41 +5232,49172,65 +5233,2687,65 +5234,987,65 +5235,59838,65 +5236,84626,65 +5237,57351,65 +5238,79550,29 +5239,24657,33 +5240,13105,35 +5241,39414,33 +5242,157898,65 +5243,36929,65 +5244,272426,35 +5245,18514,65 +5246,89756,65 +5247,949,41 +5248,325133,65 +5249,90086,65 +5250,185934,65 +5251,45156,65 +5252,43268,29 +5253,9529,65 +5254,18897,33 +5255,136743,40 +5256,11122,35 +5257,29236,65 +5258,41301,65 +5259,75137,13 +5260,142946,65 +5261,105254,65 +5262,35428,82 +5263,299165,41 +5264,167262,33 +5265,90992,65 +5266,51442,65 +5267,155386,41 +5268,325039,82 +5269,221732,101 +5270,26422,72 +5271,274857,76 +5272,153781,79 +5273,19621,41 +5274,6687,82 +5275,246133,65 +5276,72640,65 +5277,135652,65 +5278,24559,35 +5279,33339,41 +5280,24403,32 +5281,10193,65 +5282,253277,65 +5283,331075,72 +5284,121888,29 +5285,13929,15 +5286,118737,65 +5287,20507,64 +5288,49850,65 +5289,961,65 +5290,27461,65 +5291,119738,65 +5292,17640,65 +5293,59051,65 +5294,245775,84 +5295,96716,65 +5296,92389,65 +5297,77294,82 +5298,276401,65 +5299,210408,90 +5300,98644,65 +5301,306952,65 +5302,51302,65 +5303,325263,65 +5304,66700,29 +5305,12089,33 +5306,24363,33 +5307,75623,65 +5308,54111,31 +5309,12855,65 +5310,63958,82 +5311,348537,54 +5312,10916,65 +5313,31634,65 +5314,79781,65 +5315,242458,31 +5316,71732,33 +5317,19157,65 +5318,218688,35 +5319,126712,65 +5320,2295,65 +5321,209032,101 +5322,154371,65 +5323,1058,65 +5324,46883,65 +5325,252888,65 +5326,32928,82 +5327,42752,41 +5328,79054,65 +5329,101995,90 +5330,51581,101 +5331,315880,65 +5332,64454,35 +5333,10703,32 +5334,11380,33 +5335,12720,101 +5336,25038,65 +5337,60568,72 +5338,118236,65 +5339,107891,32 +5340,42502,41 +5341,169656,65 +5342,122221,65 +5343,46798,65 +5344,263472,65 +5345,34280,65 +5346,2108,65 +5347,40693,33 +5348,106635,65 +5349,12516,101 +5350,89247,41 +5351,76438,23 +5352,48466,79 +5353,89330,18 +5354,47596,65 +5355,158483,101 +5356,152611,41 +5357,66659,65 +5358,9095,65 +5359,414610,65 +5360,54690,31 +5361,81589,65 +5362,258947,65 +5363,34838,65 +5364,59722,65 +5365,59115,65 +5366,90319,82 +5367,52247,100 +5368,88583,65 +5369,47310,65 +5370,7304,82 +5371,43195,29 +5372,236007,64 +5373,4921,35 +5374,178446,35 +5375,43773,46 +5376,417678,65 +5377,52520,65 +5378,2262,65 +5379,128669,65 +5380,27221,65 +5381,10129,35 +5382,11653,64 +5383,17111,100 +5384,237799,33 +5385,9563,65 +5386,18919,80 +5387,34734,65 +5388,43083,66 +5389,6951,65 +5390,216580,65 +5391,57816,33 +5392,227306,29 +5393,44895,65 +5394,55728,65 +5395,136087,76 +5396,38743,65 +5397,19029,65 +5398,80320,65 +5399,50387,16 +5400,46570,29 +5401,18902,35 +5402,88863,65 +5403,248087,82 +5404,188981,101 +5405,24632,65 +5406,66702,35 +5407,2280,65 +5408,290864,32 +5409,65488,65 +5410,22029,65 +5411,54527,65 +5412,163053,15 +5413,407887,65 +5414,124480,100 +5415,21070,33 +5416,11248,35 +5417,327749,65 +5418,321142,56 +5419,22584,33 +5420,102961,65 +5421,6589,65 +5422,1481,65 +5423,45935,72 +5424,96552,16 +5425,14405,65 +5426,82485,79 +5427,110608,103 +5428,72900,41 +5429,379,30 +5430,5721,65 +5431,83430,41 +5432,58251,65 +5433,10201,31 +5434,227973,65 +5435,43896,65 +5436,31442,82 +5437,10351,65 +5438,215032,32 +5439,62132,33 +5440,182097,66 +5441,11975,65 +5442,115223,35 +5443,24405,65 +5444,1247,35 +5445,31397,65 +5446,54801,65 +5447,101217,90 +5448,11091,65 +5449,13391,101 +5450,121749,9 +5451,63578,65 +5452,21028,82 +5453,709,41 +5454,24752,65 +5455,2087,65 +5456,29801,65 +5457,42216,29 +5458,33556,64 +5459,249457,29 +5460,28775,65 +5461,127564,65 +5462,51549,101 +5463,82941,35 +5464,377290,44 +5465,268853,16 +5466,279543,82 +5467,9472,35 +5468,25918,65 +5469,81232,65 +5470,41581,82 +5471,248417,65 +5472,99229,65 +5473,34651,65 +5474,82679,65 +5475,64627,65 +5476,88224,65 +5477,9289,33 +5478,44716,44 +5479,27717,41 +5480,58404,29 +5481,14357,44 +5482,250671,41 +5483,75203,65 +5484,21554,65 +5485,62755,65 +5486,202214,65 +5487,228294,65 +5488,196065,65 +5489,638,65 +5490,168202,82 +5491,52907,65 +5492,18283,65 +5493,1254,33 +5494,76012,65 +5495,49502,65 +5496,52637,33 +5497,46169,65 +5498,225728,65 +5499,17831,65 +5500,65771,8 +5501,22618,35 +5502,355111,67 +5503,24749,65 +5504,79743,82 +5505,39356,65 +5506,9066,13 +5507,2180,44 +5508,101185,65 +5509,39072,65 +5510,75142,82 +5511,322400,65 +5512,11205,65 +5513,126250,8 +5514,315664,65 +5515,245906,65 +5516,149170,82 +5517,81708,90 +5518,113638,65 +5519,188102,65 +5520,29129,33 +5521,18919,67 +5522,43372,29 +5523,71805,93 +5524,1416,31 +5525,15060,65 +5526,24348,65 +5527,167951,65 +5528,224903,41 +5529,264646,67 +5530,86608,65 +5531,50725,65 +5532,27045,65 +5533,227383,18 +5534,245692,33 +5535,255948,76 +5536,17421,65 +5537,38027,65 +5538,76703,33 +5539,102527,18 +5540,857,33 +5541,19552,4 +5542,245950,2 +5543,27102,33 +5544,5544,65 +5545,64807,65 +5546,55694,65 +5547,40368,65 +5548,12221,100 +5549,42487,65 +5550,33201,35 +5551,158870,65 +5552,256328,41 +5553,357706,64 +5554,21242,65 +5555,62688,82 +5556,148807,65 +5557,11517,65 +5558,376391,101 +5559,21371,41 +5560,13073,66 +5561,62761,65 +5562,83735,65 +5563,47231,16 +5564,76084,65 +5565,414977,65 +5566,43277,65 +5567,13173,41 +5568,158739,65 +5569,42305,65 +5570,289,33 +5571,58197,65 +5572,29911,65 +5573,418990,65 +5574,28290,65 +5575,158015,65 +5576,122192,33 +5577,42187,65 +5578,32202,65 +5579,76438,82 +5580,5753,65 +5581,57326,65 +5582,13667,13 +5583,7305,65 +5584,32588,65 +5585,15379,4 +5586,103332,65 +5587,140595,65 +5588,332827,28 +5589,184219,76 +5590,10409,65 +5591,426264,41 +5592,1907,56 +5593,17592,65 +5594,45205,101 +5595,60608,33 +5596,17464,65 +5597,14587,65 +5598,44246,90 +5599,149145,15 +5600,74436,100 +5601,17170,65 +5602,80168,65 +5603,4538,65 +5604,265712,101 +5605,7549,101 +5606,39107,101 +5607,348673,41 +5608,77583,65 +5609,241742,82 +5610,26505,65 +5611,35392,65 +5612,44746,65 +5613,257302,65 +5614,105991,32 +5615,28663,65 +5616,92381,65 +5617,267310,65 +5618,31532,65 +5619,25568,65 +5620,285869,65 +5621,245692,65 +5622,24927,82 +5623,87514,65 +5624,49018,65 +5625,10841,35 +5626,252102,65 +5627,39936,79 +5628,61686,84 +5629,318781,65 +5630,44081,46 +5631,15797,65 +5632,9404,72 +5633,5608,35 +5634,28270,65 +5635,85602,65 +5636,15143,65 +5637,95536,2 +5638,17015,65 +5639,126516,101 +5640,81010,33 +5641,8358,65 +5642,67509,33 +5643,78694,35 +5644,65881,31 +5645,38761,65 +5646,185180,41 +5647,14078,44 +5648,214753,65 +5649,11636,32 +5650,34723,35 +5651,3580,65 +5652,335837,35 +5653,20210,65 +5654,57701,82 +5655,50126,100 +5656,22939,65 +5657,31273,59 +5658,145247,82 +5659,117506,72 +5660,47878,65 +5661,9483,33 +5662,362363,65 +5663,19398,76 +5664,27472,65 +5665,32996,65 +5666,3024,65 +5667,433082,8 +5668,42453,27 +5669,19014,65 +5670,116977,65 +5671,10735,65 +5672,9555,65 +5673,75174,65 +5674,413644,65 +5675,42136,65 +5676,421741,82 +5677,125541,23 +5678,144271,33 +5679,353326,38 +5680,49688,41 +5681,158750,65 +5682,48587,82 +5683,606,78 +5684,44257,65 +5685,85544,41 +5686,299,65 +5687,301304,65 +5688,36175,101 +5689,13996,35 +5690,94809,29 +5691,72898,33 +5692,199463,44 +5693,111839,65 +5694,2897,41 +5695,36089,65 +5696,78028,65 +5697,27346,65 +5698,376538,101 +5699,156335,65 +5700,125513,101 +5701,182228,65 +5702,59117,41 +5703,52039,65 +5704,178755,15 +5705,188765,104 +5706,135317,35 +5707,223391,101 +5708,42599,65 +5709,24392,79 +5710,30929,35 +5711,9079,65 +5712,85610,65 +5713,38189,65 +5714,87612,65 +5715,19010,65 +5716,13614,79 +5717,226163,41 +5718,100661,65 +5719,82737,82 +5720,63472,65 +5721,9950,65 +5722,112456,65 +5723,35052,65 +5724,77673,33 +5725,84905,65 +5726,44637,65 +5727,183039,65 +5728,229221,65 +5729,27671,65 +5730,71670,65 +5731,127257,41 +5732,410537,65 +5733,297853,65 +5734,17483,65 +5735,24126,65 +5736,115054,65 +5737,72711,65 +5738,259835,29 +5739,177203,65 +5740,173153,65 +5741,42040,65 +5742,34052,65 +5743,51976,41 +5744,936,65 +5745,18683,65 +5746,88075,65 +5747,11329,33 +5748,171759,65 +5749,32932,65 +5750,52555,33 +5751,38034,32 +5752,116351,15 +5753,130881,65 +5754,85516,65 +5755,94555,31 +5756,32648,65 +5757,43065,65 +5758,268618,27 +5759,47096,29 +5760,320181,65 +5761,311021,65 +5762,26119,41 +5763,22023,65 +5764,356191,79 +5765,26864,41 +5766,397422,65 +5767,334298,76 +5768,31665,65 +5769,22606,65 +5770,9779,65 +5771,65787,65 +5772,84727,65 +5773,163111,15 +5774,105384,29 +5775,176143,101 +5776,38950,65 +5777,41556,65 +5778,332839,65 +5779,71670,13 +5780,73424,65 +5781,14411,29 +5782,11813,33 +5783,38162,33 +5784,82687,65 +5785,16820,82 +5786,15321,65 +5787,45244,55 +5788,86850,65 +5789,58309,33 +5790,37284,31 +5791,84209,65 +5792,64683,65 +5793,27276,101 +5794,33436,35 +5795,1448,65 +5796,50849,33 +5797,227871,65 +5798,14818,35 +5799,16047,84 +5800,273896,65 +5801,133704,65 +5802,134209,89 +5803,359105,41 +5804,23966,65 +5805,11887,65 +5806,43075,65 +5807,9779,2 +5808,90762,65 +5809,26514,65 +5810,402672,64 +5811,10204,35 +5812,347630,65 +5813,22241,64 +5814,44246,35 +5815,57889,82 +5816,76202,65 +5817,36612,65 +5818,52847,65 +5819,142085,16 +5820,91551,35 +5821,55208,4 +5822,387399,65 +5823,246741,65 +5824,117629,66 +5825,88491,82 +5826,120977,65 +5827,52918,84 +5828,214909,65 +5829,88811,32 +5830,27970,72 +5831,205349,35 +5832,54660,65 +5833,177047,65 +5834,19898,65 +5835,33273,41 +5836,33134,65 +5837,28671,65 +5838,10521,65 +5839,271404,65 +5840,25353,79 +5841,430365,82 +5842,11908,65 +5843,346672,65 +5844,354859,65 +5845,5279,65 +5846,89116,101 +5847,90799,65 +5848,118640,65 +5849,147939,65 +5850,11227,33 +5851,30973,65 +5852,86709,65 +5853,30265,65 +5854,21481,33 +5855,54105,65 +5856,291413,65 +5857,274857,65 +5858,53870,79 +5859,91333,67 +5860,14660,65 +5861,10207,65 +5862,26971,41 +5863,271495,82 +5864,81576,54 +5865,280004,65 +5866,34280,41 +5867,289207,65 +5868,461805,82 +5869,19294,35 +5870,31412,90 +5871,41903,64 +5872,28280,65 +5873,14145,65 +5874,18634,65 +5875,28682,29 +5876,15013,65 +5877,358982,65 +5878,22602,65 +5879,68202,65 +5880,169656,82 +5881,30363,65 +5882,32058,65 +5883,38742,65 +5884,4012,66 +5885,237796,33 +5886,42515,35 +5887,14286,65 +5888,339116,65 +5889,9292,65 +5890,37053,101 +5891,86985,8 +5892,4478,65 +5893,45726,65 +5894,21801,65 +5895,13442,65 +5896,137726,33 +5897,26030,33 +5898,426670,65 +5899,153779,90 +5900,41733,65 +5901,145481,41 +5902,359204,33 +5903,173301,65 +5904,161602,65 +5905,1628,35 +5906,42571,41 +5907,39462,101 +5908,38874,41 +5909,122,65 +5910,8194,41 +5911,9821,65 +5912,14263,65 +5913,73562,33 +5914,1907,33 +5915,394051,32 +5916,41497,35 +5917,49028,64 +5918,19625,64 +5919,24397,66 +5920,287636,65 +5921,37609,65 +5922,319096,65 +5923,16374,26 +5924,250671,65 +5925,46891,65 +5926,35,65 +5927,45800,41 +5928,290714,41 +5929,254188,65 +5930,396987,82 +5931,310593,41 +5932,175331,35 +5933,271039,65 +5934,418378,107 +5935,8985,11 +5936,36785,41 +5937,27621,65 +5938,134474,28 +5939,4248,65 +5940,43327,65 +5941,85910,65 +5942,62034,29 +5943,27446,65 +5944,105760,79 +5945,273202,82 +5946,339944,48 +5947,194407,65 +5948,63498,33 +5949,227200,65 +5950,376047,64 +5951,38547,90 +5952,29113,65 +5953,32934,41 +5954,13241,65 +5955,936,29 +5956,367735,65 +5957,338,35 +5958,108664,29 +5959,239534,90 +5960,9607,65 +5961,188507,65 +5962,45324,65 +5963,64678,65 +5964,43931,65 +5965,245706,29 +5966,42094,65 +5967,36635,65 +5968,47792,2 +5969,6522,65 +5970,15697,65 +5971,107973,65 +5972,16082,65 +5973,316885,65 +5974,157305,65 +5975,59895,65 +5976,44869,65 +5977,399811,65 +5978,355111,16 +5979,159304,65 +5980,293167,65 +5981,44552,65 +5982,325385,41 +5983,363579,31 +5984,15838,65 +5985,1634,65 +5986,104859,65 +5987,104931,65 +5988,8776,13 +5989,27034,65 +5990,25538,101 +5991,5491,65 +5992,104462,15 +5993,96888,65 +5994,24199,65 +5995,49907,33 +5996,108723,65 +5997,226163,35 +5998,422,65 +5999,236041,90 +6000,20132,35 +6001,16094,65 +6002,51311,35 +6003,51736,65 +6004,47956,65 +6005,362682,32 +6006,1963,31 +6007,954,67 +6008,31995,65 +6009,31922,29 +6010,26642,65 +6011,4520,65 +6012,46931,48 +6013,41211,101 +6014,77664,65 +6015,2291,65 +6016,82448,44 +6017,786,65 +6018,252028,16 +6019,76600,35 +6020,125700,62 +6021,28270,35 +6022,37954,65 +6023,352498,41 +6024,163870,101 +6025,333663,65 +6026,14159,64 +6027,43504,65 +6028,66634,65 +6029,25087,65 +6030,63899,82 +6031,167012,65 +6032,141635,65 +6033,60086,65 +6034,7511,65 +6035,86850,33 +6036,144471,65 +6037,39345,65 +6038,4551,65 +6039,8276,65 +6040,33851,65 +6041,31512,101 +6042,39519,101 +6043,44223,65 +6044,42515,65 +6045,12122,65 +6046,153,101 +6047,14694,29 +6048,16313,76 +6049,38546,65 +6050,76714,82 +6051,28658,65 +6052,22998,65 +6053,76011,65 +6054,1969,65 +6055,43877,101 +6056,314420,65 +6057,39839,64 +6058,444713,64 +6059,66526,71 +6060,43002,65 +6061,4916,65 +6062,8882,33 +6063,99374,65 +6064,61908,65 +6065,151062,65 +6066,26261,13 +6067,29483,65 +6068,54415,65 +6069,13440,35 +6070,393562,64 +6071,59803,82 +6072,51212,65 +6073,135708,65 +6074,26687,76 +6075,2061,8 +6076,38043,65 +6077,41211,84 +6078,342684,41 +6079,32274,65 +6080,48717,65 +6081,2179,65 +6082,395992,72 +6083,76714,65 +6084,176983,101 +6085,109379,40 +6086,145593,65 +6087,19342,65 +6088,74035,65 +6089,59230,29 +6090,1568,33 +6091,413998,29 +6092,77459,33 +6093,6964,33 +6094,4497,41 +6095,56162,65 +6096,161885,65 +6097,17139,65 +6098,14752,7 +6099,939,34 +6100,34672,33 +6101,85648,65 +6102,92716,65 +6103,46770,41 +6104,13925,65 +6105,293982,35 +6106,10747,41 +6107,16066,65 +6108,84348,65 +6109,38150,65 +6110,46020,65 +6111,111479,35 +6112,70436,65 +6113,37254,65 +6114,83614,82 +6115,106546,82 +6116,39495,65 +6117,111960,65 +6118,98328,65 +6119,38031,65 +6120,1428,65 +6121,132928,65 +6122,201,65 +6123,85735,33 +6124,18273,65 +6125,25241,65 +6126,28997,100 +6127,408220,35 +6128,86236,65 +6129,52362,65 +6130,265180,29 +6131,122134,15 +6132,320343,65 +6133,341559,56 +6134,99909,65 +6135,64928,65 +6136,125344,107 +6137,266022,65 +6138,39519,65 +6139,79372,65 +6140,72962,65 +6141,40047,65 +6142,1724,100 +6143,264553,65 +6144,85564,65 +6145,8929,65 +6146,71051,82 +6147,16017,67 +6148,44773,65 +6149,2453,65 +6150,177271,65 +6151,52302,101 +6152,76757,65 +6153,4441,65 +6154,60547,65 +6155,1049,65 +6156,84496,65 +6157,151937,65 +6158,186997,33 +6159,29695,65 +6160,373200,76 +6161,403,65 +6162,177979,35 +6163,102362,65 +6164,378087,41 +6165,60488,35 +6166,353257,65 +6167,85743,44 +6168,104251,101 +6169,398891,79 +6170,4146,33 +6171,99642,33 +6172,211144,65 +6173,45120,65 +6174,44434,65 +6175,43648,29 +6176,32740,64 +6177,414547,18 +6178,54384,100 +6179,325189,65 +6180,168676,35 +6181,85633,65 +6182,45827,65 +6183,24810,65 +6184,56135,33 +6185,98025,29 +6186,414453,65 +6187,31167,65 +6188,35451,101 +6189,49712,33 +6190,1717,65 +6191,1694,35 +6192,325173,65 +6193,48180,65 +6194,8619,100 +6195,308269,65 +6196,84295,65 +6197,102362,77 +6198,69103,65 +6199,20806,65 +6200,13437,65 +6201,419522,29 +6202,118150,35 +6203,344906,65 +6204,21519,72 +6205,67633,103 +6206,27791,65 +6207,369373,65 +6208,172705,5 +6209,37420,33 +6210,97632,65 +6211,11391,8 +6212,71668,65 +6213,254661,65 +6214,363757,29 +6215,10066,82 +6216,6963,67 +6217,208579,107 +6218,241739,65 +6219,1966,65 +6220,64167,65 +6221,61528,65 +6222,90030,65 +6223,205818,65 +6224,284289,65 +6225,84823,33 +6226,18696,65 +6227,432883,65 +6228,174188,65 +6229,54700,65 +6230,9080,82 +6231,47171,65 +6232,49815,65 +6233,28851,65 +6234,337339,65 +6235,109298,65 +6236,28847,29 +6237,41714,65 +6238,10524,33 +6239,179603,65 +6240,13956,65 +6241,169758,65 +6242,167810,65 +6243,38749,65 +6244,32332,65 +6245,1907,76 +6246,11655,41 +6247,714,32 +6248,124157,65 +6249,43407,33 +6250,216374,65 +6251,1877,35 +6252,59147,29 +6253,381276,65 +6254,83456,82 +6255,336806,44 +6256,32168,65 +6257,127493,44 +6258,391757,65 +6259,66741,65 +6260,26502,65 +6261,36047,33 +6262,70006,65 +6263,246860,65 +6264,293122,82 +6265,11236,65 +6266,110412,65 +6267,3513,65 +6268,1420,65 +6269,346473,65 +6270,190250,65 +6271,406052,65 +6272,116385,65 +6273,261005,29 +6274,1995,65 +6275,15073,65 +6276,21866,35 +6277,134355,65 +6278,379,34 +6279,88486,29 +6280,109001,64 +6281,64934,33 +6282,21948,41 +6283,390880,82 +6284,337876,64 +6285,11600,65 +6286,36968,65 +6287,29056,65 +6288,16390,8 +6289,499,33 +6290,99859,65 +6291,256969,65 +6292,339428,35 +6293,96107,65 +6294,234155,41 +6295,9778,65 +6296,4806,65 +6297,11909,72 +6298,6980,65 +6299,143946,101 +6300,10162,80 +6301,52999,33 +6302,260672,65 +6303,157829,65 +6304,21057,101 +6305,76297,65 +6306,98612,65 +6307,43095,101 +6308,53514,31 +6309,97724,65 +6310,56292,65 +6311,15664,29 +6312,1904,65 +6313,693,65 +6314,49199,72 +6315,334557,32 +6316,60855,65 +6317,2046,65 +6318,18722,13 +6319,32306,65 +6320,47574,65 +6321,61991,33 +6322,31473,65 +6323,74549,65 +6324,49334,65 +6325,407,35 +6326,212756,30 +6327,39358,33 +6328,10744,82 +6329,286789,29 +6330,112885,65 +6331,29825,29 +6332,33660,65 +6333,8588,65 +6334,142746,82 +6335,245168,65 +6336,121895,33 +6337,11142,82 +6338,11795,65 +6339,112162,65 +6340,459,35 +6341,8932,84 +6342,422005,18 +6343,33931,65 +6344,84097,65 +6345,22682,65 +6346,438634,54 +6347,84318,65 +6348,77794,33 +6349,83501,82 +6350,41211,65 +6351,20411,65 +6352,27349,35 +6353,31742,29 +6354,52183,90 +6355,42021,29 +6356,19846,65 +6357,121003,65 +6358,623,29 +6359,24752,101 +6360,332286,65 +6361,98586,33 +6362,23566,65 +6363,14979,65 +6364,314283,65 +6365,363579,65 +6366,167583,29 +6367,11950,65 +6368,247691,65 +6369,12526,65 +6370,59142,65 +6371,329805,33 +6372,80435,65 +6373,54227,65 +6374,61563,65 +6375,208968,65 +6376,55956,101 +6377,104931,33 +6378,52454,41 +6379,48601,33 +6380,5967,33 +6381,24238,65 +6382,407531,65 +6383,128044,13 +6384,18684,65 +6385,13848,41 +6386,326723,8 +6387,402582,65 +6388,288521,65 +6389,416680,41 +6390,36527,65 +6391,38526,65 +6392,26142,65 +6393,32872,33 +6394,69976,82 +6395,251732,65 +6396,84479,33 +6397,16884,8 +6398,24426,90 +6399,49788,65 +6400,1247,41 +6401,3423,33 +6402,21001,65 +6403,193387,65 +6404,29577,65 +6405,253283,65 +6406,137528,65 +6407,289723,65 +6408,52949,65 +6409,11296,65 +6410,13507,33 +6411,172385,100 +6412,10070,65 +6413,37030,32 +6414,153162,65 +6415,284537,65 +6416,2085,32 +6417,6183,79 +6418,379,29 +6419,57489,41 +6420,83430,33 +6421,62441,65 +6422,80592,41 +6423,42120,72 +6424,29717,65 +6425,62363,33 +6426,22559,65 +6427,105902,35 +6428,270886,33 +6429,48268,13 +6430,377516,65 +6431,73194,65 +6432,244403,65 +6433,14613,65 +6434,413452,65 +6435,60082,65 +6436,207441,65 +6437,20558,65 +6438,86647,35 +6439,391778,64 +6440,11639,65 +6441,109453,65 +6442,280092,76 +6443,10219,101 +6444,246860,35 +6445,197785,65 +6446,1810,35 +6447,148615,65 +6448,11374,65 +6449,67102,48 +6450,35032,65 +6451,125249,65 +6452,228968,65 +6453,333484,65 +6454,7219,29 +6455,9882,84 +6456,73262,35 +6457,14419,33 +6458,10407,65 +6459,56068,29 +6460,384594,65 +6461,171594,65 +6462,101330,65 +6463,92562,65 +6464,261439,65 +6465,59434,33 +6466,41211,32 +6467,30149,44 +6468,35908,65 +6469,14833,65 +6470,27925,82 +6471,124075,65 +6472,50196,29 +6473,34106,82 +6474,9577,35 +6475,413430,18 +6476,13852,65 +6477,80717,79 +6478,213681,41 +6479,55156,72 +6480,289183,18 +6481,48846,29 +6482,29290,65 +6483,52803,15 +6484,52772,65 +6485,11899,65 +6486,364379,65 +6487,35381,65 +6488,220,65 +6489,112558,65 +6490,58692,82 +6491,49190,31 +6492,10075,100 +6493,83185,100 +6494,362703,41 +6495,183832,65 +6496,339530,65 +6497,289336,18 +6498,324150,65 +6499,121942,79 +6500,211166,65 +6501,374247,35 +6502,10663,65 +6503,76207,33 +6504,374475,92 +6505,87827,71 +6506,64115,79 +6507,422,35 +6508,30709,65 +6509,49398,33 +6510,8617,29 +6511,20123,29 +6512,22585,65 +6513,34449,35 +6514,235260,65 +6515,72946,65 +6516,242,29 +6517,428645,100 +6518,248706,65 +6519,14626,82 +6520,173662,65 +6521,346490,77 +6522,112130,65 +6523,27105,65 +6524,63498,41 +6525,12591,65 +6526,25625,65 +6527,47412,65 +6528,36737,65 +6529,24458,65 +6530,221801,65 +6531,2001,65 +6532,46124,72 +6533,268875,65 +6534,300769,65 +6535,64428,65 +6536,14869,33 +6537,47238,15 +6538,336011,65 +6539,85658,32 +6540,56800,33 +6541,15601,65 +6542,109979,29 +6543,17082,32 +6544,83481,54 +6545,39310,65 +6546,44658,29 +6547,47112,41 +6548,300490,90 +6549,83444,82 +6550,156220,65 +6551,47900,57 +6552,14874,35 +6553,16135,33 +6554,5955,65 +6555,333884,29 +6556,82520,65 +6557,58384,44 +6558,43395,65 +6559,27112,65 +6560,267035,35 +6561,51364,65 +6562,20304,65 +6563,353686,41 +6564,42188,65 +6565,373247,65 +6566,107250,65 +6567,21352,65 +6568,9461,65 +6569,15310,65 +6570,21866,65 +6571,110146,65 +6572,1369,4 +6573,21742,65 +6574,61527,65 +6575,28304,33 +6576,26503,65 +6577,13017,65 +6578,5040,79 +6579,60106,33 +6580,20075,65 +6581,4344,35 +6582,13073,65 +6583,54102,65 +6584,425961,79 +6585,90465,65 +6586,41638,65 +6587,41516,65 +6588,14750,65 +6589,379441,65 +6590,423988,65 +6591,36944,65 +6592,2666,65 +6593,99229,67 +6594,17895,101 +6595,440508,82 +6596,306199,65 +6597,14457,33 +6598,75375,65 +6599,362703,65 +6600,78362,65 +6601,392832,29 +6602,324572,16 +6603,128089,65 +6604,148265,47 +6605,50079,65 +6606,174195,65 +6607,35284,65 +6608,34449,29 +6609,540,65 +6610,197089,33 +6611,214100,65 +6612,118059,65 +6613,8985,96 +6614,25862,65 +6615,301876,65 +6616,84305,65 +6617,66597,65 +6618,13305,35 +6619,70282,65 +6620,116327,65 +6621,28452,65 +6622,16382,41 +6623,233487,33 +6624,23518,65 +6625,60505,65 +6626,29101,84 +6627,400610,16 +6628,325385,33 +6629,9102,65 +6630,1817,65 +6631,126947,65 +6632,11635,65 +6633,119409,41 +6634,367492,90 +6635,255772,82 +6636,62213,65 +6637,38006,65 +6638,244458,65 +6639,2267,41 +6640,137315,29 +6641,62045,100 +6642,91186,32 +6643,63858,65 +6644,64456,41 +6645,74753,65 +6646,84056,29 +6647,30143,101 +6648,99324,65 +6649,42648,65 +6650,349948,65 +6651,84154,65 +6652,27622,65 +6653,2989,65 +6654,101376,65 +6655,46667,65 +6656,52744,65 +6657,263472,41 +6658,28178,65 +6659,19757,67 +6660,31254,101 +6661,12273,51 +6662,15,65 +6663,22140,8 +6664,248933,35 +6665,85844,101 +6666,15810,65 +6667,9495,65 +6668,129359,44 +6669,151652,82 +6670,146730,15 +6671,294254,65 +6672,41380,72 +6673,37100,101 +6674,94225,65 +6675,17935,82 +6676,10020,65 +6677,253309,65 +6678,198993,101 +6679,146521,82 +6680,265351,90 +6681,445727,65 +6682,88271,101 +6683,134397,65 +6684,82622,65 +6685,71905,65 +6686,9956,65 +6687,12506,65 +6688,104776,65 +6689,329718,65 +6690,76211,65 +6691,11496,29 +6692,10119,93 +6693,59231,65 +6694,111017,65 +6695,381525,35 +6696,26941,65 +6697,52913,29 +6698,264729,35 +6699,14642,65 +6700,98203,65 +6701,28858,65 +6702,83481,41 +6703,33117,65 +6704,91217,65 +6705,12076,93 +6706,320588,65 +6707,414771,66 +6708,135286,33 +6709,13180,65 +6710,21605,65 +6711,302042,65 +6712,327383,41 +6713,190940,64 +6714,4644,65 +6715,73661,65 +6716,3114,41 +6717,37213,101 +6718,70815,100 +6719,25598,65 +6720,340027,65 +6721,60677,18 +6722,284246,65 +6723,52556,90 +6724,38162,65 +6725,703,35 +6726,187516,65 +6727,4254,64 +6728,10330,32 +6729,168541,103 +6730,38769,65 +6731,13549,65 +6732,37600,65 +6733,84097,29 +6734,69899,82 +6735,15036,33 +6736,42307,90 +6737,26558,65 +6738,80961,90 +6739,327982,82 +6740,15189,65 +6741,12525,65 +6742,324181,65 +6743,9423,65 +6744,15022,79 +6745,34723,65 +6746,194101,65 +6747,295914,70 +6748,59704,65 +6749,7483,66 +6750,71885,65 +6751,60935,8 +6752,67174,107 +6753,8316,65 +6754,47886,29 +6755,393172,65 +6756,22448,64 +6757,37315,65 +6758,230295,44 +6759,423078,18 +6760,32168,82 +6761,334074,65 +6762,332512,82 +6763,109018,65 +6764,18755,82 +6765,25936,82 +6766,255496,65 +6767,24615,65 +6768,70404,65 +6769,15387,82 +6770,58013,29 +6771,33611,103 +6772,69560,65 +6773,22999,65 +6774,43761,46 +6775,10390,65 +6776,4974,29 +6777,88557,65 +6778,13652,65 +6779,42532,65 +6780,103432,65 +6781,335874,65 +6782,156277,65 +6783,18696,33 +6784,18620,65 +6785,91186,72 +6786,15749,79 +6787,209764,31 +6788,20583,65 +6789,19103,65 +6790,343972,65 +6791,206514,65 +6792,93313,65 +6793,71670,35 +6794,44265,35 +6795,14422,65 +6796,20495,64 +6797,345916,65 +6798,92465,18 +6799,98368,65 +6800,103590,42 +6801,18222,65 +6802,18651,65 +6803,40793,65 +6804,282069,101 +6805,58547,65 +6806,30298,65 +6807,39998,72 +6808,26422,29 +6809,7305,100 +6810,231762,15 +6811,26841,82 +6812,149232,65 +6813,57382,33 +6814,138308,65 +6815,69152,29 +6816,142757,82 +6817,42499,29 +6818,36259,65 +6819,334299,33 +6820,49559,33 +6821,86284,35 +6822,30535,29 +6823,11205,72 +6824,68193,65 +6825,56391,82 +6826,436,65 +6827,21843,18 +6828,10973,65 +6829,149870,33 +6830,89445,65 +6831,106573,33 +6832,36299,65 +6833,40709,82 +6834,253337,65 +6835,17003,65 +6836,32577,65 +6837,385114,41 +6838,200813,65 +6839,6417,92 +6840,20530,101 +6841,1164,41 +6842,83,65 +6843,23223,65 +6844,259616,35 +6845,33642,65 +6846,283711,32 +6847,45179,100 +6848,348537,63 +6849,112722,65 +6850,9779,41 +6851,25834,65 +6852,11706,65 +6853,21449,65 +6854,72013,65 +6855,89145,65 +6856,73098,65 +6857,256520,82 +6858,277967,92 +6859,19203,65 +6860,32091,33 +6861,31265,65 +6862,2604,65 +6863,9690,35 +6864,185156,65 +6865,25659,101 +6866,334,35 +6867,14041,65 +6868,46563,41 +6869,317557,65 +6870,16197,65 +6871,270024,16 +6872,11930,35 +6873,400,65 +6874,77964,65 +6875,48780,65 +6876,34838,35 +6877,111480,35 +6878,267815,41 +6879,21250,44 +6880,286532,65 +6881,86700,32 +6882,14765,33 +6883,75229,44 +6884,210653,41 +6885,315872,65 +6886,139862,35 +6887,55720,41 +6888,82079,65 +6889,13534,65 +6890,8342,45 +6891,112931,33 +6892,52914,29 +6893,36919,67 +6894,357851,65 +6895,277687,65 +6896,42250,33 +6897,73353,65 +6898,30619,82 +6899,15179,44 +6900,353462,65 +6901,14886,65 +6902,156627,29 +6903,29649,65 +6904,1415,65 +6905,377428,65 +6906,37779,33 +6907,101320,65 +6908,42515,29 +6909,31462,65 +6910,161880,65 +6911,2321,65 +6912,18925,65 +6913,47745,65 +6914,76268,33 +6915,334317,33 +6916,63612,41 +6917,4550,101 +6918,21282,8 +6919,120837,65 +6920,13025,65 +6921,47504,65 +6922,72074,72 +6923,24235,65 +6924,19968,65 +6925,9703,65 +6926,1896,41 +6927,14525,101 +6928,85658,65 +6929,353728,65 +6930,31586,65 +6931,13678,33 +6932,17203,33 +6933,11230,72 +6934,45243,76 +6935,52864,65 +6936,17203,65 +6937,1450,65 +6938,357529,65 +6939,7863,65 +6940,307479,65 +6941,44047,65 +6942,60899,44 +6943,32657,65 +6944,30943,65 +6945,34577,101 +6946,104973,65 +6947,37926,65 +6948,72596,27 +6949,10527,65 +6950,139521,64 +6951,218778,65 +6952,10714,57 +6953,16351,90 +6954,106358,65 +6955,35320,65 +6956,237214,64 +6957,13991,65 +6958,21442,31 +6959,202215,33 +6960,10192,65 +6961,75138,82 +6962,49828,90 +6963,348673,33 +6964,18374,31 +6965,80545,65 +6966,64304,32 +6967,155128,29 +6968,95919,32 +6969,14353,65 +6970,41559,41 +6971,11024,65 +6972,20325,65 +6973,279608,15 +6974,276550,65 +6975,131861,65 +6976,59189,65 +6977,140470,65 +6978,32634,65 +6979,46145,65 +6980,74822,33 +6981,8211,79 +6982,360341,65 +6983,40817,29 +6984,36960,65 +6985,1278,33 +6986,508,100 +6987,117026,65 +6988,56150,65 +6989,2160,65 +6990,19142,65 +6991,361571,33 +6992,12104,65 +6993,21371,33 +6994,11196,8 +6995,45505,72 +6996,20055,65 +6997,56816,18 +6998,203890,65 +6999,288035,65 +7000,257081,65 +7001,29382,65 +7002,59935,46 +7003,110115,65 +7004,207699,65 +7005,180299,5 +7006,285858,29 +7007,348537,41 +7008,135204,48 +7009,70119,33 +7010,359459,65 +7011,308165,64 +7012,2107,65 +7013,131194,41 +7014,11475,65 +7015,336050,82 +7016,69035,65 +7017,305932,65 +7018,12787,65 +7019,47446,65 +7020,348673,44 +7021,44631,65 +7022,137853,65 +7023,245703,65 +7024,119816,35 +7025,5552,33 +7026,623,65 +7027,4344,76 +7028,303982,100 +7029,334,65 +7030,21198,33 +7031,354544,65 +7032,29903,65 +7033,2300,65 +7034,18908,8 +7035,43252,65 +7036,39284,44 +7037,29272,41 +7038,9528,33 +7039,20758,29 +7040,73067,65 +7041,44937,33 +7042,145247,33 +7043,19760,65 +7044,31061,90 +7045,309024,65 +7046,11077,65 +7047,45133,44 +7048,41131,33 +7049,82098,35 +7050,82327,8 +7051,190341,18 +7052,195,65 +7053,29272,2 +7054,40095,65 +7055,103215,16 +7056,6591,35 +7057,362026,65 +7058,16320,32 +7059,36695,82 +7060,8388,65 +7061,19766,65 +7062,9815,65 +7063,33592,65 +7064,139463,65 +7065,15163,13 +7066,118236,41 +7067,57100,65 +7068,381767,8 +7069,35895,65 +7070,1630,65 +7071,84735,65 +7072,39061,5 +7073,35558,65 +7074,238749,65 +7075,93828,65 +7076,174162,65 +7077,43213,65 +7078,97548,41 +7079,327389,65 +7080,381032,65 +7081,308032,65 +7082,6963,65 +7083,353326,71 +7084,54523,29 +7085,360283,65 +7086,71945,65 +7087,117098,65 +7088,107028,41 +7089,408616,65 +7090,56235,65 +7091,317723,92 +7092,251232,8 +7093,511,35 +7094,577,65 +7095,31127,65 +7096,10425,65 +7097,103640,64 +7098,84397,65 +7099,17339,41 +7100,4111,65 +7101,76686,35 +7102,143169,65 +7103,88375,65 +7104,2110,101 +7105,270842,32 +7106,89659,65 +7107,335970,65 +7108,18899,65 +7109,54570,29 +7110,284343,33 +7111,144331,9 +7112,40744,65 +7113,224251,65 +7114,24828,65 +7115,96419,33 +7116,38461,65 +7117,15081,33 +7118,24397,41 +7119,49009,79 +7120,184710,65 +7121,196789,65 +7122,342472,65 +7123,8840,65 +7124,27061,65 +7125,90001,82 +7126,116312,41 +7127,31442,35 +7128,315010,65 +7129,11142,35 +7130,22701,65 +7131,53406,65 +7132,132759,82 +7133,24403,101 +7134,117790,16 +7135,259075,65 +7136,322548,65 +7137,511,79 +7138,54814,65 +7139,215797,65 +7140,11185,65 +7141,58411,65 +7142,24452,65 +7143,43546,65 +7144,28,65 +7145,27409,29 +7146,67025,31 +7147,163333,65 +7148,31221,65 +7149,117452,16 +7150,178569,65 +7151,887,65 +7152,71630,33 +7153,314635,67 +7154,87022,16 +7155,50590,65 +7156,43829,65 +7157,46261,65 +7158,14752,65 +7159,57816,101 +7160,180576,65 +7161,25403,29 +7162,292625,76 +7163,36530,65 +7164,139692,101 +7165,2577,65 +7166,51423,18 +7167,90800,65 +7168,142984,65 +7169,28297,65 +7170,246415,82 +7171,69065,65 +7172,65055,65 +7173,159727,65 +7174,15664,79 +7175,64046,82 +7176,85699,35 +7177,127544,101 +7178,140554,65 +7179,56448,65 +7180,86603,65 +7181,11008,65 +7182,223946,33 +7183,96921,33 +7184,38732,65 +7185,9404,14 +7186,31945,65 +7187,410634,82 +7188,371504,65 +7189,140818,93 +7190,15904,65 +7191,268099,65 +7192,33472,65 +7193,24792,65 +7194,51939,65 +7195,2516,65 +7196,380058,65 +7197,691,65 +7198,13506,33 +7199,11247,35 +7200,314635,35 +7201,18047,65 +7202,135799,101 +7203,63194,65 +7204,19200,65 +7205,165718,101 +7206,80473,65 +7207,39072,33 +7208,37710,33 +7209,90387,35 +7210,206647,41 +7211,86985,65 +7212,36402,79 +7213,124517,101 +7214,46857,82 +7215,49158,65 +7216,12807,33 +7217,137646,65 +7218,18405,65 +7219,24816,65 +7220,190352,65 +7221,273481,65 +7222,61988,65 +7223,11799,41 +7224,80316,65 +7225,42460,33 +7226,60422,35 +7227,8414,65 +7228,62527,65 +7229,65891,65 +7230,401442,65 +7231,40879,65 +7232,41209,65 +7233,365942,65 +7234,94663,13 +7235,9070,65 +7236,32595,65 +7237,104931,29 +7238,396392,65 +7239,14907,65 +7240,42634,41 +7241,25736,65 +7242,40978,33 +7243,426253,100 +7244,21571,64 +7245,17669,65 +7246,194722,65 +7247,105768,65 +7248,206197,65 +7249,222388,65 +7250,57575,65 +7251,201485,65 +7252,45431,65 +7253,214105,66 +7254,1691,79 +7255,298865,65 +7256,62012,33 +7257,340616,33 +7258,1375,65 +7259,336691,65 +7260,84104,65 +7261,5965,65 +7262,28533,29 +7263,31131,65 +7264,3146,101 +7265,198176,65 +7266,1903,65 +7267,31503,65 +7268,46623,65 +7269,12186,101 +7270,13685,65 +7271,9404,32 +7272,125945,66 +7273,4380,65 +7274,15534,65 +7275,6973,65 +7276,23155,101 +7277,84875,33 +7278,87123,65 +7279,227094,65 +7280,262447,82 +7281,11812,65 +7282,30640,65 +7283,84569,65 +7284,12632,35 +7285,2144,65 +7286,32654,32 +7287,42087,65 +7288,290825,35 +7289,8844,65 +7290,49577,82 +7291,52270,65 +7292,17691,65 +7293,47444,65 +7294,59738,65 +7295,27381,65 +7296,166,33 +7297,38022,64 +7298,12454,65 +7299,9982,65 +7300,3033,65 +7301,288503,65 +7302,12186,65 +7303,184155,82 +7304,46026,84 +7305,375599,31 +7306,83430,46 +7307,18143,101 +7308,33339,65 +7309,69775,64 +7310,18093,65 +7311,345918,65 +7312,10013,65 +7313,291164,65 +7314,85836,101 +7315,30583,44 +7316,182131,101 +7317,219666,22 +7318,50838,33 +7319,33586,65 +7320,41493,44 +7321,9423,82 +7322,31890,65 +7323,13346,65 +7324,9795,65 +7325,1396,82 +7326,363354,101 +7327,60935,65 +7328,16993,65 +7329,15838,8 +7330,99329,33 +7331,45576,32 +7332,360284,65 +7333,120588,65 +7334,35907,64 +7335,70327,101 +7336,3780,101 +7337,280019,31 +7338,46760,65 +7339,42453,65 +7340,50350,65 +7341,11799,65 +7342,39845,65 +7343,15556,65 +7344,403605,65 +7345,23107,65 +7346,313676,101 +7347,17133,65 +7348,43388,65 +7349,92496,65 +7350,212934,65 +7351,10797,8 +7352,23668,65 +7353,29076,65 +7354,356191,65 +7355,81215,26 +7356,327237,16 +7357,31675,65 +7358,164013,82 +7359,145925,29 +7360,339526,65 +7361,155724,65 +7362,45191,41 +7363,5991,15 +7364,64047,65 +7365,440777,65 +7366,156711,65 +7367,41857,65 +7368,201765,41 +7369,129530,65 +7370,25407,65 +7371,36960,79 +7372,89921,33 +7373,5551,65 +7374,36597,65 +7375,9846,65 +7376,94480,65 +7377,294819,29 +7378,48333,65 +7379,21334,46 +7380,95453,31 +7381,410718,65 +7382,36658,35 +7383,19548,41 +7384,42460,65 +7385,46738,65 +7386,37438,64 +7387,270672,65 +7388,10760,65 +7389,3537,82 +7390,200505,65 +7391,134362,41 +7392,11248,65 +7393,11385,65 +7394,9030,41 +7395,197210,82 +7396,29923,93 +7397,23599,65 +7398,34512,65 +7399,11329,65 +7400,131039,35 +7401,151911,65 +7402,64183,65 +7403,753,65 +7404,16175,65 +7405,14137,65 +7406,24657,65 +7407,128169,101 +7408,44716,65 +7409,24883,41 +7410,326359,65 +7411,14317,29 +7412,160261,35 +7413,53798,65 +7414,371084,65 +7415,341176,65 +7416,11553,32 +7417,61203,65 +7418,422878,65 +7419,17940,65 +7420,9609,65 +7421,152023,65 +7422,33124,65 +7423,19665,65 +7424,86543,65 +7425,250769,65 +7426,133715,65 +7427,8985,29 +7428,39992,35 +7429,85446,65 +7430,71444,101 +7431,369406,65 +7432,256347,65 +7433,293380,65 +7434,62825,18 +7435,336004,65 +7436,10740,65 +7437,36773,65 +7438,24254,65 +7439,78705,41 +7440,8388,41 +7441,29192,65 +7442,38770,65 +7443,156627,82 +7444,22584,65 +7445,78174,33 +7446,43158,66 +7447,340937,65 +7448,12089,29 +7449,1926,41 +7450,164954,65 +7451,11171,65 +7452,31078,65 +7453,41569,65 +7454,6038,32 +7455,48587,35 +7456,11101,35 +7457,38594,101 +7458,5413,65 +7459,43266,65 +7460,50326,65 +7461,114872,65 +7462,55730,65 +7463,8128,67 +7464,278738,65 +7465,42453,44 +7466,315465,101 +7467,226693,35 +7468,84944,18 +7469,226163,65 +7470,36917,101 +7471,260528,39 +7472,359204,65 +7473,256924,29 +7474,348537,65 +7475,364324,32 +7476,289278,44 +7477,131478,100 +7478,2979,65 +7479,18731,79 +7480,287301,18 +7481,348320,35 +7482,102161,65 +7483,48186,35 +7484,76115,65 +7485,18098,41 +7486,21585,65 +7487,1904,101 +7488,19325,65 +7489,7088,65 +7490,57215,65 +7491,13957,65 +7492,1810,65 +7493,44208,33 +7494,8342,65 +7495,32855,65 +7496,11104,101 +7497,29233,65 +7498,26962,65 +7499,136743,35 +7500,28452,41 +7501,39311,65 +7502,33345,65 +7503,4974,65 +7504,300090,65 +7505,3145,65 +7506,30059,65 +7507,175386,65 +7508,20481,65 +7509,75262,82 +7510,42430,101 +7511,14414,65 +7512,86360,65 +7513,16985,65 +7514,24078,65 +7515,126090,103 +7516,33436,65 +7517,26283,65 +7518,73462,65 +7519,84060,65 +7520,6972,101 +7521,67177,29 +7522,30792,65 +7523,24746,65 +7524,208869,65 +7525,92060,65 +7526,33025,65 +7527,223497,65 +7528,215373,65 +7529,18690,65 +7530,16791,65 +7531,390,100 +7532,246422,33 +7533,72614,82 +7534,8355,65 +7535,393443,65 +7536,81522,65 +7537,329135,71 +7538,430250,65 +7539,48846,35 +7540,74666,66 +7541,81522,33 +7542,329550,79 +7543,372226,47 +7544,77000,29 +7545,168616,27 +7546,54166,29 +7547,85435,65 +7548,77137,29 +7549,18736,29 +7550,106016,41 +7551,14834,65 +7552,251227,65 +7553,13701,65 +7554,64942,65 +7555,48594,41 +7556,294483,35 +7557,31555,65 +7558,174278,65 +7559,19140,65 +7560,60173,65 +7561,27561,65 +7562,65282,65 +7563,212996,72 +7564,266425,65 +7565,140554,35 +7566,284564,41 +7567,32080,65 +7568,29313,41 +7569,20430,65 +7570,397520,65 +7571,114719,65 +7572,52314,65 +7573,29611,65 +7574,9462,65 +7575,363841,65 +7576,256916,41 +7577,52555,84 +7578,44282,41 +7579,316042,65 +7580,21380,41 +7581,75204,65 +7582,136762,15 +7583,47588,65 +7584,280583,65 +7585,127560,65 +7586,15472,65 +7587,11351,65 +7588,25855,76 +7589,122525,41 +7590,42225,29 +7591,227156,65 +7592,9023,65 +7593,126300,33 +7594,303636,35 +7595,505,33 +7596,2186,65 +7597,289923,65 +7598,21052,65 +7599,10394,65 +7600,3016,65 +7601,71376,65 +7602,58701,65 +7603,317389,29 +7604,79611,82 +7605,66897,33 +7606,31993,33 +7607,33611,35 +7608,57089,65 +7609,56971,29 +7610,124157,101 +7611,193878,41 +7612,297762,65 +7613,16017,65 +7614,23590,65 +7615,208091,65 +7616,22317,65 +7617,268893,65 +7618,43046,33 +7619,313628,31 +7620,2110,33 +7621,24059,65 +7622,17189,101 +7623,399106,65 +7624,108365,65 +7625,33613,44 +7626,53419,65 +7627,95015,65 +7628,84425,29 +7629,152539,33 +7630,40221,65 +7631,15944,65 +7632,30022,65 +7633,173456,65 +7634,11001,65 +7635,413762,65 +7636,20735,33 +7637,15873,35 +7638,186869,65 +7639,22784,65 +7640,317168,41 +7641,342011,41 +7642,80012,65 +7643,310593,35 +7644,82662,29 +7645,384262,18 +7646,46786,65 +7647,87343,65 +7648,19855,65 +7649,243935,65 +7650,28433,65 +7651,33689,65 +7652,21135,29 +7653,55731,65 +7654,29299,82 +7655,49110,65 +7656,359746,65 +7657,11137,8 +7658,82465,65 +7659,330770,33 +7660,142499,31 +7661,186019,15 +7662,38150,33 +7663,27283,65 +7664,10077,65 +7665,137217,41 +7666,273511,65 +7667,60392,64 +7668,82684,65 +7669,7863,34 +7670,362150,71 +7671,366170,101 +7672,2977,90 +7673,61580,79 +7674,71125,65 +7675,82767,41 +7676,43997,65 +7677,48199,13 +7678,9385,33 +7679,2890,16 +7680,75595,65 +7681,3104,65 +7682,332794,65 +7683,211166,100 +7684,49588,79 +7685,7871,65 +7686,29129,29 +7687,17606,65 +7688,55192,101 +7689,153102,65 +7690,318224,65 +7691,104297,65 +7692,71322,82 +7693,182545,16 +7694,88005,65 +7695,38326,82 +7696,357441,7 +7697,10219,65 +7698,44260,65 +7699,45211,29 +7700,10565,90 +7701,128598,65 +7702,98586,32 +7703,268174,65 +7704,347807,35 +7705,32836,65 +7706,199602,65 +7707,28134,29 +7708,11377,65 +7709,11376,65 +7710,196852,64 +7711,54555,31 +7712,10222,65 +7713,3089,65 +7714,46567,29 +7715,60855,72 +7716,44680,65 +7717,330878,82 +7718,336804,90 +7719,226167,65 +7720,99095,29 +7721,20992,82 +7722,224903,101 +7723,10696,65 +7724,44472,65 +7725,228066,65 +7726,387845,31 +7727,5511,33 +7728,123359,41 +7729,218728,35 +7730,33774,41 +7731,82990,65 +7732,79599,65 +7733,140554,41 +7734,9776,65 +7735,31011,65 +7736,14063,65 +7737,312221,65 +7738,11397,65 +7739,27203,65 +7740,59881,65 +7741,97630,84 +7742,141640,41 +7743,33280,93 +7744,11298,65 +7745,23385,65 +7746,11137,65 +7747,185768,65 +7748,139563,29 +7749,65142,82 +7750,323675,65 +7751,12683,65 +7752,44442,79 +7753,46341,41 +7754,42242,65 +7755,17622,13 +7756,798,35 +7757,43645,29 +7758,110972,65 +7759,152748,65 +7760,70587,44 +7761,12584,65 +7762,257447,65 +7763,6972,65 +7764,46494,65 +7765,42674,29 +7766,241618,65 +7767,47200,82 +7768,209293,33 +7769,126560,90 +7770,18736,65 +7771,83481,13 +7772,21533,41 +7773,239619,66 +7774,44265,65 +7775,13766,65 +7776,14591,65 +7777,3115,101 +7778,80281,47 +7779,68063,29 +7780,30202,65 +7781,10693,65 +7782,8272,65 +7783,365709,41 +7784,242,80 +7785,121640,65 +7786,310567,64 +7787,28110,41 +7788,30496,65 +7789,10992,33 +7790,284288,64 +7791,18477,65 +7792,44308,65 +7793,28290,35 +7794,164558,65 +7795,58487,33 +7796,82817,29 +7797,25913,65 +7798,9877,29 +7799,239018,65 +7800,337,90 +7801,42448,65 +7802,275244,101 +7803,37789,101 +7804,440508,65 +7805,131737,65 +7806,83588,65 +7807,23967,65 +7808,16843,65 +7809,9425,65 +7810,56853,29 +7811,20645,101 +7812,62045,65 +7813,61552,35 +7814,14087,101 +7815,284250,104 +7816,245158,65 +7817,13090,65 +7818,108726,65 +7819,33091,44 +7820,50153,65 +7821,1163,65 +7822,165095,82 +7823,10176,65 +7824,18098,65 +7825,53864,65 +7826,10162,21 +7827,10364,33 +7828,209293,65 +7829,314352,35 +7830,220514,65 +7831,12230,65 +7832,298787,64 +7833,64362,33 +7834,89591,65 +7835,3784,65 +7836,208434,65 +7837,43316,65 +7838,128856,35 +7839,121848,65 +7840,31042,41 +7841,12144,65 +7842,3144,65 +7843,336549,82 +7844,31985,65 +7845,31915,65 +7846,17332,65 +7847,96458,65 +7848,37984,72 +7849,261207,65 +7850,126090,56 +7851,26376,65 +7852,302528,35 +7853,171446,65 +7854,13849,65 +7855,37405,35 +7856,3716,35 +7857,16866,41 +7858,110491,65 +7859,371942,29 +7860,267310,35 +7861,278621,65 +7862,4529,65 +7863,30163,33 +7864,359025,35 +7865,10303,84 +7866,206183,65 +7867,24647,44 +7868,20439,65 +7869,40970,65 +7870,60014,29 +7871,220287,73 +7872,47120,56 +7873,34216,72 +7874,6947,65 +7875,293189,65 +7876,10162,65 +7877,91076,65 +7878,119926,65 +7879,9812,65 +7880,55257,18 +7881,25872,65 +7882,9820,65 +7883,61950,65 +7884,17306,65 +7885,423093,41 +7886,10238,44 +7887,9462,32 +7888,310593,65 +7889,111332,65 +7890,71114,41 +7891,38920,65 +7892,351065,100 +7893,344120,33 +7894,42420,29 +7895,43157,65 +7896,8063,65 +7897,205943,65 +7898,14286,35 +7899,345924,65 +7900,80125,33 +7901,196235,65 +7902,250535,65 +7903,42045,65 +7904,105945,65 +7905,173168,65 +7906,27259,65 +7907,28178,101 +7908,75969,35 +7909,128412,42 +7910,278458,41 +7911,12309,101 +7912,42225,35 +7913,412363,66 +7914,271164,33 +7915,277688,65 +7916,47410,65 +7917,90110,65 +7918,126889,65 +7919,9532,33 +7920,50247,101 +7921,25655,65 +7922,26510,65 +7923,59507,65 +7924,153781,41 +7925,53861,65 +7926,12573,66 +7927,127585,65 +7928,245739,65 +7929,186971,1 +7930,33228,65 +7931,204255,65 +7932,10703,31 +7933,9959,29 +7934,126934,65 +7935,338100,65 +7936,38792,65 +7937,264264,32 +7938,83015,65 +7939,75018,65 +7940,112287,65 +7941,14467,64 +7942,222935,65 +7943,265832,65 +7944,52452,65 +7945,38000,31 +7946,1259,33 +7947,10568,65 +7948,56709,65 +7949,228496,65 +7950,116236,29 +7951,463800,4 +7952,435,33 +7953,48153,65 +7954,32601,92 +7955,112503,29 +7956,3055,65 +7957,17770,65 +7958,184866,65 +7959,19918,65 +7960,2503,84 +7961,24453,65 +7962,10867,29 +7963,273481,41 +7964,16351,35 +7965,32926,90 +7966,5177,8 +7967,41714,32 +7968,19398,35 +7969,128216,65 +7970,460135,79 +7971,5516,4 +7972,82737,65 +7973,13526,65 +7974,118381,72 +7975,39129,65 +7976,227932,100 +7977,340627,65 +7978,43503,65 +7979,30082,65 +7980,152861,45 +7981,30061,29 +7982,121688,82 +7983,77094,76 +7984,22182,29 +7985,98094,65 +7986,37329,65 +7987,19150,41 +7988,36325,65 +7989,10890,82 +7990,21468,65 +7991,169,65 +7992,56804,29 +7993,12561,101 +7994,50387,41 +7995,3554,65 +7996,104965,68 +7997,336265,65 +7998,45752,65 +7999,273879,65 +8000,9953,65 +8001,11645,101 +8002,45398,65 +8003,238,29 +8004,28527,79 +8005,38901,65 +8006,183171,65 +8007,26503,29 +8008,54524,65 +8009,156141,82 +8010,356161,33 +8011,48489,76 +8012,12902,65 +8013,184098,65 +8014,78734,65 +8015,398137,65 +8016,14829,41 +8017,27211,90 +8018,26866,33 +8019,14555,33 +8020,30934,65 +8021,310135,65 +8022,292062,65 +8023,26152,33 +8024,81463,41 +8025,26491,65 +8026,185153,65 +8027,148478,18 +8028,46813,65 +8029,43828,65 +8030,134394,65 +8031,51902,67 +8032,255278,65 +8033,107146,65 +8034,413882,64 +8035,18646,65 +8036,4580,33 +8037,55823,35 +8038,11302,34 +8039,41809,65 +8040,51875,65 +8041,60807,47 +8042,11622,33 +8043,10992,76 +8044,20028,65 +8045,193893,65 +8046,37581,101 +8047,430826,65 +8048,31921,65 +8049,55544,15 +8050,76097,35 +8051,19528,65 +8052,266082,33 +8053,376570,65 +8054,226693,65 +8055,26298,33 +8056,15020,35 +8057,20650,15 +8058,61348,65 +8059,76,35 +8060,26880,27 +8061,8204,65 +8062,32088,65 +8063,127329,32 +8064,41994,65 +8065,450530,65 +8066,366045,65 +8067,271954,35 +8068,73873,65 +8069,109251,65 +8070,17302,65 +8071,55534,65 +8072,80771,65 +8073,20934,82 +8074,26042,65 +8075,5460,65 +8076,14317,65 +8077,43790,65 +8078,1253,65 +8079,48935,29 +8080,220002,90 +8081,112044,16 +8082,22396,29 +8083,16987,64 +8084,26796,65 +8085,167882,65 +8086,41357,65 +8087,270774,32 +8088,25037,35 +8089,74689,65 +8090,15476,35 +8091,169760,65 +8092,2565,65 +8093,28973,65 +8094,279606,65 +8095,28171,79 +8096,267579,41 +8097,204922,65 +8098,3037,35 +8099,183412,65 +8100,63348,65 +8101,81182,65 +8102,31018,65 +8103,47426,65 +8104,201223,101 +8105,38931,65 +8106,63105,65 +8107,145316,65 +8108,223485,65 +8109,28212,33 +8110,94340,65 +8111,74878,33 +8112,22476,65 +8113,33784,44 +8114,2197,33 +8115,2692,35 +8116,73027,41 +8117,167928,18 +8118,57278,79 +8119,42871,65 +8120,580,65 +8121,36672,35 +8122,47459,65 +8123,267466,31 +8124,29116,65 +8125,13934,65 +8126,120357,65 +8127,10433,65 +8128,53882,65 +8129,152737,65 +8130,29694,35 +8131,62855,101 +8132,31324,33 +8133,63273,65 +8134,63493,65 +8135,10986,13 +8136,124470,65 +8137,38684,65 +8138,243940,65 +8139,26422,101 +8140,107693,100 +8141,38978,35 +8142,39286,65 +8143,23452,101 +8144,875,65 +8145,19017,65 +8146,50374,65 +8147,52238,29 +8148,125700,33 +8149,72279,29 +8150,74585,65 +8151,228970,65 +8152,257237,29 +8153,359807,100 +8154,85699,82 +8155,63717,33 +8156,201085,65 +8157,56232,101 +8158,94135,65 +8159,424643,65 +8160,169343,41 +8161,9987,35 +8162,14295,65 +8163,310602,65 +8164,72847,65 +8165,2503,82 +8166,60568,32 +8167,9475,13 +8168,87302,65 +8169,81296,101 +8170,80280,33 +8171,373397,100 +8172,199647,35 +8173,246299,65 +8174,356500,65 +8175,51370,65 +8176,68822,33 +8177,98536,65 +8178,286372,65 +8179,82650,65 +8180,80660,65 +8181,46986,101 +8182,128089,100 +8183,10665,65 +8184,409,65 +8185,343284,65 +8186,67162,65 +8187,11537,32 +8188,74430,65 +8189,39517,65 +8190,28466,65 +8191,62720,65 +8192,55615,101 +8193,46827,65 +8194,246829,29 +8195,343795,100 +8196,374475,35 +8197,1483,65 +8198,243984,65 +8199,210052,35 +8200,42701,33 +8201,75336,29 +8202,11425,65 +8203,12684,65 +8204,27035,41 +8205,38982,65 +8206,288952,65 +8207,1969,41 +8208,9591,65 +8209,17241,65 +8210,201361,65 +8211,84178,65 +8212,206563,100 +8213,54156,35 +8214,48787,65 +8215,46697,65 +8216,76493,65 +8217,30547,65 +8218,63615,41 +8219,382598,33 +8220,43441,65 +8221,55759,18 +8222,129553,65 +8223,208309,79 +8224,3057,33 +8225,274990,8 +8226,10860,65 +8227,32526,65 +8228,22618,65 +8229,365997,65 +8230,171581,79 +8231,59569,65 +8232,418437,65 +8233,37653,33 +8234,13495,41 +8235,41759,65 +8236,16076,44 +8237,22894,65 +8238,6068,65 +8239,338676,65 +8240,92663,42 +8241,156988,29 +8242,289,65 +8243,320589,29 +8244,39101,65 +8245,11862,65 +8246,264560,65 +8247,63360,65 +8248,51141,35 +8249,38460,65 +8250,392011,90 +8251,34723,33 +8252,9753,82 +8253,188640,64 +8254,109329,65 +8255,6417,13 +8256,362180,65 +8257,112304,65 +8258,78563,82 +8259,29138,104 +8260,102,8 +8261,288438,65 +8262,84283,65 +8263,219335,18 +8264,269494,31 +8265,77864,64 +8266,118953,65 +8267,38134,65 +8268,323679,65 +8269,26954,65 +8270,1819,65 +8271,69635,47 +8272,38775,65 +8273,136921,65 +8274,26958,65 +8275,16550,35 +8276,50225,65 +8277,340187,65 +8278,405050,65 +8279,17339,65 +8280,9893,100 +8281,65089,82 +8282,15356,65 +8283,329690,65 +8284,121598,64 +8285,359025,65 +8286,79216,82 +8287,2721,82 +8288,21843,65 +8289,199602,8 +8290,613,13 +8291,26149,65 +8292,83729,90 +8293,25005,65 +8294,28323,65 +8295,26014,65 +8296,340053,33 +8297,31048,65 +8298,390777,65 +8299,291866,65 +8300,382155,79 +8301,32628,15 +8302,76864,44 +8303,406449,14 +8304,169022,31 +8305,104697,15 +8306,2566,33 +8307,10611,65 +8308,38327,29 +8309,50012,82 +8310,343369,65 +8311,13996,65 +8312,279598,82 +8313,83013,31 +8314,99861,65 +8315,96132,65 +8316,299715,33 +8317,51759,33 +8318,341745,35 +8319,349045,65 +8320,351242,65 +8321,130544,29 +8322,57811,100 +8323,17708,4 +8324,168496,33 +8325,8049,33 +8326,24486,65 +8327,52440,65 +8328,3309,41 +8329,74447,65 +8330,43757,65 +8331,1633,65 +8332,36427,65 +8333,53693,8 +8334,252845,29 +8335,82492,65 +8336,170936,65 +8337,224282,65 +8338,18955,33 +8339,11231,65 +8340,9993,4 +8341,18056,65 +8342,118195,41 +8343,10173,65 +8344,317182,65 +8345,12645,65 +8346,27917,65 +8347,21430,65 +8348,76785,65 +8349,195796,65 +8350,2085,65 +8351,256356,29 +8352,377158,79 +8353,14435,65 +8354,17985,8 +8355,26173,65 +8356,27114,65 +8357,28592,29 +8358,187022,72 +8359,217948,29 +8360,80648,35 +8361,229297,65 +8362,11939,65 +8363,27349,65 +8364,291351,65 +8365,101669,65 +8366,142320,29 +8367,56942,65 +8368,154,65 +8369,48376,65 +8370,34204,65 +8371,9803,35 +8372,413669,65 +8373,133521,79 +8374,42623,65 +8375,52150,90 +8376,68179,65 +8377,293861,65 +8378,16551,65 +8379,47386,35 +8380,48145,44 +8381,3309,65 +8382,127521,33 +8383,20200,33 +8384,24081,65 +8385,21769,101 +8386,149910,79 +8387,48319,65 +8388,370234,65 +8389,2034,82 +8390,43092,65 +8391,288977,65 +8392,64827,29 +8393,271164,29 +8394,10075,79 +8395,47112,30 +8396,24363,65 +8397,242090,65 +8398,43209,76 +8399,44489,65 +8400,112287,33 +8401,27717,65 +8402,75892,65 +8403,81435,84 +8404,247218,29 +8405,285858,33 +8406,73697,29 +8407,47404,65 +8408,49391,65 +8409,92657,65 +8410,288105,65 +8411,245706,65 +8412,3114,74 +8413,222890,65 +8414,2047,65 +8415,153779,46 +8416,301228,65 +8417,573,65 +8418,45827,33 +8419,70090,29 +8420,192210,100 +8421,217775,16 +8422,156981,65 +8423,2012,33 +8424,26252,33 +8425,56191,101 +8426,1813,41 +8427,13654,65 +8428,42225,97 +8429,8985,16 +8430,47002,101 +8431,383538,65 +8432,8619,65 +8433,3087,65 +8434,2033,65 +8435,57993,65 +8436,25376,41 +8437,44123,65 +8438,262945,35 +8439,156356,65 +8440,265432,35 +8441,27300,65 +8442,68569,65 +8443,295656,65 +8444,55433,65 +8445,183258,65 +8446,147590,72 +8447,21032,65 +8448,58701,29 +8449,21142,65 +8450,268712,35 +8451,138977,65 +8452,110447,33 +8453,413992,65 +8454,210615,33 +8455,345775,16 +8456,11855,65 +8457,13962,65 +8458,10780,65 +8459,85023,65 +8460,186227,65 +8461,76349,65 +8462,38602,65 +8463,48273,65 +8464,246917,65 +8465,5165,29 +8466,29290,101 +8467,118,65 +8468,224714,91 +8469,295273,101 +8470,22998,79 +8471,55424,33 +8472,53211,33 +8473,10909,65 +8474,215881,65 +8475,32233,65 +8476,10527,29 +8477,18621,29 +8478,46278,2 +8479,13380,29 +8480,52696,65 +8481,44693,65 +8482,31003,65 +8483,29959,65 +8484,3537,33 +8485,44877,65 +8486,116318,101 +8487,271185,65 +8488,204802,82 +8489,300601,41 +8490,32610,65 +8491,14881,65 +8492,10805,41 +8493,112284,65 +8494,11647,32 +8495,250275,65 +8496,176124,65 +8497,69152,65 +8498,27338,33 +8499,97088,35 +8500,66447,33 +8501,7555,76 +8502,340584,65 +8503,33774,65 +8504,218898,64 +8505,47046,76 +8506,32168,31 +8507,29263,41 +8508,96958,44 +8509,39428,65 +8510,72660,100 +8511,14703,41 +8512,143092,65 +8513,130544,35 +8514,1387,65 +8515,9894,65 +8516,13574,65 +8517,74705,82 +8518,166207,41 +8519,124680,65 +8520,31597,65 +8521,37672,65 +8522,606,65 +8523,113255,65 +8524,79435,33 +8525,1125,65 +8526,147722,65 +8527,946,65 +8528,6978,65 +8529,14207,33 +8530,28917,65 +8531,26593,65 +8532,89086,65 +8533,17082,72 +8534,327,41 +8535,14862,65 +8536,24140,35 +8537,463800,65 +8538,94659,101 +8539,70670,82 +8540,83831,65 +8541,29979,65 +8542,263115,41 +8543,276846,64 +8544,32323,65 +8545,166076,65 +8546,14108,65 +8547,72460,65 +8548,250574,65 +8549,275065,65 +8550,36211,41 +8551,43419,65 +8552,124157,31 +8553,36212,101 +8554,41312,65 +8555,84636,33 +8556,353979,65 +8557,317144,65 +8558,18575,79 +8559,10795,33 +8560,9589,35 +8561,60018,29 +8562,84105,65 +8563,278717,82 +8564,37959,31 +8565,154671,44 +8566,13954,65 +8567,660,33 +8568,48186,65 +8569,40029,32 +8570,41097,13 +8571,273084,65 +8572,336811,7 +8573,116733,82 +8574,114377,65 +8575,5,65 +8576,80080,67 +8577,83079,65 +8578,25983,65 +8579,41619,35 +8580,121539,33 +8581,61487,65 +8582,46492,101 +8583,55177,65 +8584,224778,65 +8585,169298,33 +8586,115665,41 +8587,16890,51 +8588,83729,35 +8589,11333,65 +8590,10219,35 +8591,139718,65 +8592,229559,65 +8593,8989,65 +8594,11131,65 +8595,338729,31 +8596,173443,100 +8597,7353,65 +8598,31993,65 +8599,85429,33 +8600,17622,65 +8601,11545,65 +8602,159824,65 +8603,336811,65 +8604,43524,65 +8605,38107,65 +8606,83125,65 +8607,179818,65 +8608,348689,31 +8609,38883,33 +8610,9572,35 +8611,2267,76 +8612,21145,33 +8613,65002,35 +8614,79550,33 +8615,132601,65 +8616,135390,44 +8617,41479,33 +8618,82655,65 +8619,130272,5 +8620,42424,65 +8621,128140,34 +8622,31042,65 +8623,211579,31 +8624,159211,65 +8625,270774,65 +8626,259728,56 +8627,42325,65 +8628,19277,65 +8629,95140,33 +8630,46712,41 +8631,185057,82 +8632,62211,65 +8633,140887,35 +8634,47500,65 +8635,28438,41 +8636,97024,65 +8637,37497,65 +8638,384262,65 +8639,319993,90 +8640,47758,65 +8641,373541,65 +8642,36554,65 +8643,34280,33 +8644,72602,41 +8645,14128,65 +8646,122930,65 +8647,166161,35 +8648,10204,72 +8649,89688,41 +8650,9787,65 +8651,89560,33 +8652,92311,65 +8653,27543,65 +8654,12103,33 +8655,113178,65 +8656,253851,65 +8657,68191,65 +8658,85009,65 +8659,326,65 +8660,116488,31 +8661,80389,65 +8662,93116,65 +8663,51358,15 +8664,33792,65 +8665,122271,65 +8666,142085,65 +8667,132859,65 +8668,18890,65 +8669,102382,65 +8670,118283,65 +8671,28171,46 +8672,353713,41 +8673,141267,44 +8674,25716,101 +8675,66741,35 +8676,377151,29 +8677,18978,65 +8678,152570,65 +8679,70074,65 +8680,244610,65 +8681,38618,65 +8682,47851,82 +8683,60120,65 +8684,336775,65 +8685,63988,65 +8686,29923,44 +8687,44522,33 +8688,9551,35 +8689,186630,41 +8690,330115,65 +8691,104211,65 +8692,38526,76 +8693,87587,65 +8694,128241,65 +8695,13842,65 +8696,29416,65 +8697,112072,18 +8698,19736,65 +8699,10910,65 +8700,62472,35 +8701,1253,35 +8702,266856,80 +8703,44211,29 +8704,9317,33 +8705,287903,65 +8706,321142,65 +8707,57983,67 +8708,23739,65 +8709,271826,65 +8710,116318,65 +8711,27993,35 +8712,48405,101 +8713,12247,65 +8714,110227,65 +8715,9629,35 +8716,182799,65 +8717,94935,91 +8718,40470,65 +8719,105059,65 +8720,107073,41 +8721,2637,65 +8722,298,65 +8723,54825,35 +8724,258147,65 +8725,267623,33 +8726,23967,33 +8727,372640,33 +8728,23378,65 +8729,76229,65 +8730,74714,33 +8731,283726,33 +8732,51104,65 +8733,19958,65 +8734,31682,65 +8735,250638,72 +8736,433471,65 +8737,37055,65 +8738,43752,65 +8739,43546,33 +8740,74436,82 +8741,50126,32 +8742,321779,33 +8743,111582,65 +8744,41611,65 +8745,302118,35 +8746,197089,29 +8747,45562,41 +8748,279159,31 +8749,395767,33 +8750,43889,65 +8751,7483,65 +8752,64468,90 +8753,43915,65 +8754,11000,65 +8755,277229,64 +8756,74192,41 +8757,183827,65 +8758,271664,65 +8759,42892,29 +8760,9080,65 +8761,139176,65 +8762,22257,79 +8763,46875,65 +8764,36674,44 +8765,19244,65 +8766,46228,65 +8767,11777,35 +8768,274820,65 +8769,436,41 +8770,13655,65 +8771,149870,35 +8772,106887,41 +8773,284052,65 +8774,13965,65 +8775,42604,65 +8776,75578,16 +8777,17240,65 +8778,1578,65 +8779,76544,72 +8780,25142,82 +8781,310888,65 +8782,11895,65 +8783,183825,65 +8784,41590,65 +8785,30054,65 +8786,57342,41 +8787,111479,65 +8788,77473,44 +8789,332567,65 +8790,15805,100 +8791,36407,79 +8792,326723,65 +8793,88359,65 +8794,184345,65 +8795,12113,84 +8796,175035,65 +8797,250066,65 +8798,157409,35 +8799,246415,65 +8800,19335,65 +8801,30307,65 +8802,31263,65 +8803,173638,65 +8804,27012,65 +8805,37978,65 +8806,42418,65 +8807,126323,65 +8808,19823,65 +8809,326874,33 +8810,9016,65 +8811,220820,65 +8812,74057,65 +8813,1586,65 +8814,2613,65 +8815,23750,65 +8816,104776,101 +8817,42944,65 +8818,337012,65 +8819,55624,35 +8820,47489,33 +8821,8072,33 +8822,44129,65 +8823,210126,15 +8824,10674,65 +8825,253794,65 +8826,51371,65 +8827,30,101 +8828,27150,65 +8829,154207,65 +8830,103938,65 +8831,37969,65 +8832,27472,41 +8833,118098,65 +8834,283995,65 +8835,362439,65 +8836,72602,65 +8837,16080,65 +8838,30817,65 +8839,201633,15 +8840,57996,29 +8841,73799,101 +8842,37437,65 +8843,13649,65 +8844,36194,65 +8845,255869,65 +8846,388046,100 +8847,195763,65 +8848,2204,16 +8849,64965,29 +8850,67794,65 +8851,25684,65 +8852,51571,65 +8853,125257,101 +8854,89242,65 +8855,211879,48 +8856,41252,64 +8857,23196,65 +8858,256962,65 +8859,1715,65 +8860,24094,65 +8861,80089,101 +8862,296523,65 +8863,120942,64 +8864,107985,65 +8865,280030,84 +8866,344170,65 +8867,27653,65 +8868,186268,65 +8869,152532,65 +8870,14676,33 +8871,26752,92 +8872,72875,65 +8873,26808,65 +8874,84577,65 +8875,289336,82 +8876,259645,79 +8877,18208,65 +8878,94204,65 +8879,24801,65 +8880,92988,35 +8881,14923,65 +8882,88012,65 +8883,36883,65 +8884,9651,65 +8885,87827,101 +8886,156360,65 +8887,14811,66 +8888,119639,65 +8889,42329,65 +8890,84465,65 +8891,67748,65 +8892,327231,44 +8893,1807,65 +8894,52868,65 +8895,40029,72 +8896,11012,35 +8897,55500,18 +8898,15067,31 +8899,15170,65 +8900,176670,65 +8901,31273,79 +8902,79382,101 +8903,316268,65 +8904,12412,65 +8905,280583,93 +8906,403130,65 +8907,29138,90 +8908,24979,65 +8909,80125,65 +8910,443007,65 +8911,5482,29 +8912,413198,72 +8913,22803,65 +8914,21711,65 +8915,6038,65 +8916,48207,65 +8917,83195,32 +8918,59118,33 +8919,93114,15 +8920,105703,32 +8921,17681,65 +8922,52358,65 +8923,18673,64 +8924,16017,8 +8925,23048,82 +8926,57342,29 +8927,7445,65 +8928,254268,67 +8929,23861,65 +8930,70863,65 +8931,26801,65 +8932,442752,18 +8933,34469,65 +8934,28165,101 +8935,14558,79 +8936,230266,65 +8937,197849,13 +8938,108282,65 +8939,36245,33 +8940,26688,65 +8941,69619,72 +8942,43438,65 +8943,81030,65 +8944,36463,65 +8945,28564,65 +8946,124054,65 +8947,1662,65 +8948,403119,65 +8949,38310,29 +8950,5206,8 +8951,43806,65 +8952,51434,65 +8953,411442,32 +8954,48502,41 +8955,67633,56 +8956,75341,65 +8957,70133,41 +8958,64015,101 +8959,26636,65 +8960,345925,65 +8961,51601,65 +8962,315837,65 +8963,2503,33 +8964,54524,29 +8965,15935,65 +8966,76686,46 +8967,56212,82 +8968,127803,65 +8969,43384,65 +8970,47739,65 +8971,36786,65 +8972,48268,35 +8973,28295,65 +8974,23857,33 +8975,43149,35 +8976,27045,101 +8977,86825,65 +8978,37581,80 +8979,261101,41 +8980,21721,65 +8981,38437,65 +8982,14476,65 +8983,10604,65 +8984,8079,64 +8985,14369,65 +8986,212503,35 +8987,92311,33 +8988,21712,101 +8989,5544,33 +8990,43522,65 +8991,41764,44 +8992,47906,65 +8993,220515,33 +8994,57419,103 +8995,36361,65 +8996,172673,15 +8997,129383,101 +8998,17479,82 +8999,18,65 +9000,55776,18 +9001,128215,65 +9002,212063,65 +9003,21968,65 +9004,85442,65 +9005,340488,65 +9006,116312,54 +9007,41209,29 +9008,37936,65 +9009,1267,65 +9010,58428,65 +9011,104602,65 +9012,80717,41 +9013,116340,65 +9014,65646,33 +9015,13058,65 +9016,106851,65 +9017,50001,65 +9018,8467,65 +9019,397717,65 +9020,127901,44 +9021,422548,65 +9022,54318,65 +9023,313074,65 +9024,94803,35 +9025,51334,90 +9026,75778,65 +9027,16980,65 +9028,413770,65 +9029,79120,65 +9030,52713,33 +9031,15256,65 +9032,15764,67 +9033,32901,65 +9034,2029,33 +9035,239498,65 +9036,1568,35 +9037,87759,82 +9038,48775,82 +9039,74661,35 +9040,214187,65 +9041,16171,65 +9042,25528,65 +9043,27480,65 +9044,100770,65 +9045,59296,65 +9046,41597,35 +9047,61699,65 +9048,33338,32 +9049,11415,65 +9050,109587,103 +9051,167874,65 +9052,131039,65 +9053,70554,65 +9054,73262,33 +9055,81604,82 +9056,12454,84 +9057,71496,33 +9058,366696,65 +9059,82745,100 +9060,43775,41 +9061,137182,65 +9062,336029,66 +9063,97206,65 +9064,288130,65 +9065,139582,64 +9066,12479,67 +9067,15239,65 +9068,28681,65 +9069,61939,100 +9070,27966,65 +9071,31083,33 +9072,296524,65 +9073,35337,33 +9074,13480,65 +9075,61430,65 +9076,133783,8 +9077,435,84 +9078,20561,65 +9079,236808,71 +9080,16439,67 +9081,14804,33 +9082,53879,32 +9083,341491,27 +9084,93492,29 +9085,140,41 +9086,41569,35 +9087,31672,65 +9088,53417,65 +9089,84655,65 +9090,241071,65 +9091,101838,18 +9092,64156,32 +9093,39345,29 +9094,94170,65 +9095,171698,84 +9096,39939,65 +9097,85984,65 +9098,57201,65 +9099,219572,32 +9100,34598,35 +9101,9034,65 +9102,83342,35 +9103,138502,16 +9104,132332,33 +9105,245775,65 +9106,47194,65 +9107,10803,65 +9108,32328,65 +9109,8672,35 +9110,18282,65 +9111,184802,65 +9112,27462,65 +9113,336655,33 +9114,100024,65 +9115,21062,35 +9116,349028,65 +9117,381008,65 +9118,241742,65 +9119,13075,65 +9120,37305,65 +9121,207850,65 +9122,61716,65 +9123,15713,33 +9124,67328,65 +9125,28,4 +9126,97618,65 +9127,36811,65 +9128,128169,65 +9129,15506,65 +9130,10276,65 +9131,242332,65 +9132,12481,32 +9133,57749,65 +9134,64786,76 +9135,9540,65 +9136,508,65 +9137,85916,65 +9138,3081,65 +9139,8985,90 +9140,94248,65 +9141,42825,65 +9142,28480,35 +9143,40998,65 +9144,10866,65 +9145,192623,65 +9146,51426,74 +9147,64936,65 +9148,51786,65 +9149,41970,65 +9150,52221,65 +9151,337,33 +9152,64805,33 +9153,26946,65 +9154,80592,65 +9155,31067,65 +9156,22314,29 +9157,308529,76 +9158,79466,65 +9159,104391,65 +9160,21141,65 +9161,4253,65 +9162,131739,35 +9163,375366,65 +9164,26533,35 +9165,295273,32 +9166,416569,18 +9167,156,65 +9168,11257,65 +9169,104376,82 +9170,125835,47 +9171,46797,65 +9172,9312,65 +9173,57209,82 +9174,91551,65 +9175,37645,65 +9176,11647,72 +9177,13889,101 +9178,33336,33 +9179,183073,29 +9180,141,65 +9181,4955,35 +9182,10518,41 +9183,32428,65 +9184,14016,32 +9185,15640,35 +9186,118490,65 +9187,297298,90 +9188,296025,65 +9189,351065,65 +9190,89751,65 +9191,76609,33 +9192,68139,65 +9193,43935,65 +9194,21533,82 +9195,286595,33 +9196,138372,65 +9197,398786,64 +9198,9673,35 +9199,9914,65 +9200,38874,65 +9201,1984,65 +9202,16022,65 +9203,37211,65 +9204,44190,65 +9205,44458,65 +9206,253284,65 +9207,41979,82 +9208,37820,65 +9209,45167,65 +9210,44801,65 +9211,20521,65 +9212,262841,65 +9213,476,65 +9214,868,61 +9215,240881,65 +9216,76333,41 +9217,11399,33 +9218,27866,65 +9219,99004,41 +9220,46059,65 +9221,41831,65 +9222,60189,82 +9223,9543,65 +9224,8985,43 +9225,11120,65 +9226,38509,65 +9227,68715,101 +9228,60759,65 +9229,215032,41 +9230,172385,65 +9231,77645,65 +9232,42057,65 +9233,25501,65 +9234,8429,29 +9235,16090,65 +9236,11933,65 +9237,8247,33 +9238,206647,29 +9239,18939,67 +9240,70981,65 +9241,62132,65 +9242,91673,82 +9243,22093,41 +9244,29365,65 +9245,195068,65 +9246,38432,65 +9247,137491,65 +9248,222932,65 +9249,6977,41 +9250,107035,29 +9251,22307,33 +9252,83461,82 +9253,74935,35 +9254,7916,65 +9255,85656,101 +9256,50166,33 +9257,348035,65 +9258,136386,65 +9259,13369,65 +9260,255948,101 +9261,31221,100 +9262,42512,35 +9263,74199,67 +9264,1452,65 +9265,20443,65 +9266,158900,44 +9267,75,65 +9268,287,29 +9269,113040,65 +9270,50669,65 +9271,64437,33 +9272,9624,65 +9273,58732,65 +9274,305147,82 +9275,21250,65 +9276,169800,65 +9277,103301,82 +9278,155325,65 +9279,25330,65 +9280,117251,65 +9281,13849,33 +9282,10320,65 +9283,34650,65 +9284,52454,33 +9285,146216,33 +9286,37410,65 +9287,91186,65 +9288,14931,65 +9289,186606,65 +9290,209266,35 +9291,384130,65 +9292,70581,65 +9293,262,65 +9294,153854,65 +9295,11381,65 +9296,25921,65 +9297,391375,65 +9298,320037,41 +9299,70133,33 +9300,291577,41 +9301,2195,35 +9302,9541,65 +9303,83896,65 +9304,349045,29 +9305,226001,35 +9306,10603,41 +9307,42764,65 +9308,184363,15 +9309,216153,65 +9310,132939,65 +9311,235662,65 +9312,182035,65 +9313,75903,65 +9314,106747,41 +9315,54559,41 +9316,302472,91 +9317,83223,29 +9318,42569,65 +9319,15316,65 +9320,3587,65 +9321,19181,65 +9322,8852,65 +9323,278939,65 +9324,31044,65 +9325,97365,33 +9326,44398,65 +9327,321191,31 +9328,1554,29 +9329,15981,101 +9330,31280,65 +9331,83732,65 +9332,4011,65 +9333,365323,2 +9334,128190,65 +9335,140894,16 +9336,122709,65 +9337,31919,65 +9338,50506,33 +9339,28293,100 +9340,27138,65 +9341,141733,65 +9342,31875,65 +9343,8053,65 +9344,118139,65 +9345,28176,65 +9346,16229,65 +9347,28469,35 +9348,382170,101 +9349,41963,33 +9350,92968,65 +9351,4285,35 +9352,742,44 +9353,134750,15 +9354,14869,65 +9355,403429,92 +9356,122677,65 +9357,256740,65 +9358,243683,65 +9359,56491,65 +9360,4459,65 +9361,68347,65 +9362,115905,64 +9363,26254,65 +9364,35435,101 +9365,265226,29 +9366,421958,35 +9367,305127,65 +9368,27003,65 +9369,379019,35 +9370,148284,65 +9371,16356,65 +9372,39103,65 +9373,19548,33 +9374,219043,41 +9375,38724,65 +9376,6591,29 +9377,29694,29 +9378,66628,101 +9379,14874,65 +9380,45861,32 +9381,13849,79 +9382,172705,35 +9383,428398,82 +9384,125521,101 +9385,11799,33 +9386,342163,41 +9387,10047,80 +9388,924,65 +9389,16151,65 +9390,18209,65 +9391,174645,5 +9392,137200,35 +9393,43832,41 +9394,121725,101 +9395,78340,33 +9396,43049,65 +9397,38789,44 +9398,91548,13 +9399,44006,65 +9400,455661,65 +9401,205587,65 +9402,409082,82 +9403,69727,72 +9404,364810,4 +9405,29318,65 +9406,25358,65 +9407,340103,65 +9408,255396,65 +9409,86942,65 +9410,112708,65 +9411,47144,103 +9412,206277,65 +9413,134350,101 +9414,5206,82 +9415,100110,65 +9416,662,35 +9417,356191,34 +9418,89492,65 +9419,132957,31 +9420,1574,65 +9421,11035,29 +9422,42683,65 +9423,49410,65 +9424,17963,65 +9425,43342,65 +9426,11622,80 +9427,70772,65 +9428,23289,8 +9429,220029,65 +9430,280422,82 +9431,61813,65 +9432,264269,82 +9433,16058,65 +9434,70587,65 +9435,57683,65 +9436,37247,65 +9437,102155,65 +9438,16539,65 +9439,128637,65 +9440,248376,72 +9441,146,32 +9442,27196,65 +9443,43812,65 +9444,37910,101 +9445,14242,65 +9446,403,13 +9447,31276,65 +9448,285135,65 +9449,10710,65 +9450,205939,65 +9451,24273,65 +9452,248087,101 +9453,45326,65 +9454,35395,65 +9455,147767,64 +9456,103073,64 +9457,86980,44 +9458,135713,65 +9459,30876,29 +9460,103972,8 +9461,102858,79 +9462,58402,29 +9463,152042,101 +9464,5048,65 +9465,49792,65 +9466,215741,29 +9467,28736,65 +9468,83965,35 +9469,19665,33 +9470,276123,77 +9471,84994,65 +9472,52051,65 +9473,24409,65 +9474,153266,65 +9475,131764,65 +9476,11202,65 +9477,188102,41 +9478,13912,65 +9479,103597,65 +9480,13355,93 +9481,15045,65 +9482,98302,33 +9483,388764,65 +9484,261036,65 +9485,16417,65 +9486,257534,9 +9487,284293,65 +9488,123103,65 +9489,337101,41 +9490,197725,65 +9491,119893,65 +9492,178587,65 +9493,5206,65 +9494,29144,65 +9495,2009,92 +9496,191562,64 +9497,19688,65 +9498,45213,29 +9499,130745,65 +9500,65002,65 +9501,8457,65 +9502,43685,82 +9503,50161,65 +9504,411081,65 +9505,56693,65 +9506,60420,65 +9507,42832,33 +9508,115283,65 +9509,200727,65 +9510,192573,91 +9511,413579,65 +9512,82327,65 +9513,6644,41 +9514,13358,41 +9515,88075,41 +9516,43354,65 +9517,166076,41 +9518,72313,65 +9519,5638,65 +9520,68716,65 +9521,51823,65 +9522,26566,33 +9523,188180,18 +9524,1726,84 +9525,58400,29 +9526,57203,65 +9527,13477,29 +9528,20108,80 +9529,13196,65 +9530,56666,7 +9531,10754,79 +9532,410774,35 +9533,48594,35 +9534,84617,65 +9535,43368,65 +9536,40346,32 +9537,82327,35 +9538,29143,65 +9539,2012,41 +9540,47596,13 +9541,88478,65 +9542,114444,65 +9543,4882,65 +9544,11521,65 +9545,12538,65 +9546,50364,65 +9547,140231,64 +9548,709,65 +9549,77241,90 +9550,14611,41 +9551,868,85 +9552,38055,65 +9553,105539,65 +9554,89337,29 +9555,303857,101 +9556,277710,65 +9557,45098,31 +9558,15156,65 +9559,16177,16 +9560,69471,65 +9561,27150,41 +9562,118245,65 +9563,50942,65 +9564,755,65 +9565,77875,65 +9566,86234,100 +9567,74525,65 +9568,316776,78 +9569,435,65 +9570,59424,16 +9571,68444,16 +9572,376501,65 +9573,48205,35 +9574,19765,67 +9575,370178,65 +9576,831,65 +9577,113119,65 +9578,13436,65 +9579,96888,35 +9580,83788,33 +9581,304613,65 +9582,158150,65 +9583,126127,65 +9584,53701,101 +9585,47761,65 +9586,31111,29 +9587,34588,100 +9588,14,65 +9589,25126,65 +9590,413547,64 +9591,105833,65 +9592,21950,65 +9593,149910,44 +9594,88273,35 +9595,64942,33 +9596,54256,64 +9597,31670,33 +9598,55694,100 +9599,201124,18 +9600,130917,65 +9601,8199,65 +9602,45949,35 +9603,132363,65 +9604,80304,65 +9605,26679,65 +9606,137321,65 +9607,13798,8 +9608,93511,65 +9609,140814,65 +9610,188836,32 +9611,205891,33 +9612,343283,44 +9613,48204,65 +9614,17465,65 +9615,436343,13 +9616,346672,76 +9617,116160,65 +9618,225614,101 +9619,15359,65 +9620,358924,65 +9621,23169,65 +9622,24671,35 +9623,390357,65 +9624,35564,100 +9625,23843,29 +9626,46658,65 +9627,9550,32 +9628,339669,65 +9629,301334,65 +9630,15734,33 +9631,37517,65 +9632,11880,65 +9633,24955,44 +9634,61049,65 +9635,1450,101 +9636,9084,35 +9637,28940,65 +9638,45132,65 +9639,29048,65 +9640,11328,8 +9641,59965,65 +9642,26368,101 +9643,42725,65 +9644,188927,65 +9645,409903,82 +9646,62616,82 +9647,23730,65 +9648,40799,65 +9649,445602,65 +9650,51828,65 +9651,44470,65 +9652,212530,35 +9653,149870,29 +9654,83860,65 +9655,140032,65 +9656,10475,65 +9657,369697,66 +9658,343140,32 +9659,202475,65 +9660,167424,92 +9661,347264,65 +9662,11145,65 +9663,1877,65 +9664,286709,65 +9665,148031,65 +9666,57230,82 +9667,76142,33 +9668,227325,65 +9669,16890,65 +9670,11800,65 +9671,14123,41 +9672,50549,65 +9673,1539,35 +9674,8277,65 +9675,448449,65 +9676,20473,65 +9677,116554,65 +9678,332794,35 +9679,154972,35 +9680,32623,65 +9681,42641,41 +9682,17295,84 +9683,334557,72 +9684,181656,101 +9685,42293,4 +9686,39053,65 +9687,8951,29 +9688,401895,41 +9689,21765,65 +9690,50363,65 +9691,54093,65 +9692,50761,65 +9693,321315,2 +9694,290764,65 +9695,50012,65 +9696,107430,65 +9697,16240,65 +9698,33427,65 +9699,1637,65 +9700,44716,8 +9701,171698,65 +9702,17137,65 +9703,117120,65 +9704,16229,35 +9705,157117,65 +9706,68545,65 +9707,47115,65 +9708,293271,65 +9709,77165,29 +9710,64961,29 +9711,136368,76 +9712,385750,65 +9713,383140,65 +9714,4913,65 +9715,429200,65 +9716,33016,65 +9717,186705,33 +9718,76544,65 +9719,27696,65 +9720,20493,64 +9721,15759,13 +9722,256593,44 +9723,13369,41 +9724,10761,65 +9725,20160,18 +9726,15601,8 +9727,4191,33 +9728,40719,65 +9729,56807,84 +9730,125759,65 +9731,226701,65 +9732,81220,65 +9733,2015,31 +9734,338518,65 +9735,24795,29 +9736,115173,41 +9737,25646,65 +9738,24657,44 +9739,261538,101 +9740,139170,65 +9741,11215,65 +9742,153397,65 +9743,16803,2 +9744,10774,65 +9745,321303,82 +9746,11572,82 +9747,10265,65 +9748,146970,29 +9749,220500,65 +9750,414910,65 +9751,54524,35 +9752,3036,65 +9753,10549,65 +9754,332794,29 +9755,70090,33 +9756,48677,65 +9757,10918,65 +9758,190955,41 +9759,18206,65 +9760,70586,65 +9761,113148,65 +9762,104485,65 +9763,169869,65 +9764,3556,65 +9765,75341,84 +9766,29058,65 +9767,11799,35 +9768,21208,48 +9769,19618,65 +9770,174611,65 +9771,193603,65 +9772,104103,33 +9773,245775,82 +9774,329010,65 +9775,186988,29 +9776,31324,65 +9777,9427,65 +9778,408509,33 +9779,28665,65 +9780,31821,65 +9781,2924,65 +9782,331313,65 +9783,24556,65 +9784,79526,82 +9785,6023,65 +9786,44012,33 +9787,306966,65 +9788,15321,10 +9789,15068,65 +9790,235208,29 +9791,85430,65 +9792,15019,65 +9793,33015,65 +9794,60153,79 +9795,133575,65 +9796,105583,65 +9797,202241,65 +9798,256930,32 +9799,28969,65 +9800,7555,65 +9801,308639,65 +9802,113038,65 +9803,48778,33 +9804,172008,65 +9805,293970,65 +9806,391642,65 +9807,41028,65 +9808,51367,65 +9809,124581,65 +9810,67018,65 +9811,126227,65 +9812,127564,35 +9813,285594,65 +9814,352917,13 +9815,9352,65 +9816,37710,82 +9817,276120,65 +9818,25078,101 +9819,27270,65 +9820,117913,29 +9821,6079,35 +9822,72856,65 +9823,296313,8 +9824,39982,65 +9825,188858,41 +9826,132939,41 +9827,31021,79 +9828,370213,65 +9829,17347,65 +9830,33729,65 +9831,46798,41 +9832,71120,65 +9833,264080,65 +9834,309809,65 +9835,834,13 +9836,11664,35 +9837,10774,35 +9838,71825,65 +9839,381356,33 +9840,34518,65 +9841,122857,65 +9842,68684,65 +9843,240832,31 +9844,241239,41 +9845,28340,65 +9846,108224,65 +9847,269,33 +9848,46026,65 +9849,42641,29 +9850,21576,65 +9851,41805,65 +9852,381670,82 +9853,204384,35 +9854,399798,65 +9855,103689,41 +9856,72032,65 +9857,288259,65 +9858,26693,101 +9859,24634,65 +9860,10440,65 +9861,13411,65 +9862,94894,65 +9863,31408,90 +9864,270400,33 +9865,127493,65 +9866,9968,65 +9867,16082,82 +9868,81522,29 +9869,31901,65 +9870,28527,35 +9871,202941,65 +9872,25385,35 +9873,44303,65 +9874,40804,21 +9875,248268,65 +9876,20444,41 +9877,121895,65 +9878,59401,65 +9879,146341,40 +9880,103902,65 +9881,44511,66 +9882,10362,65 +9883,1986,33 +9884,27970,80 +9885,228108,65 +9886,33623,33 +9887,104739,33 +9888,32716,65 +9889,21765,35 +9890,10488,65 +9891,23515,65 +9892,47715,101 +9893,413421,64 +9894,51426,41 +9895,9793,65 +9896,17288,65 +9897,149793,65 +9898,34334,65 +9899,90414,65 +9900,10534,65 +9901,395992,101 +9902,16231,101 +9903,9568,35 +9904,36129,82 +9905,223485,90 +9906,135536,29 +9907,140472,65 +9908,79234,82 +9909,11925,44 +9910,11502,79 +9911,102222,65 +9912,6443,35 +9913,242631,65 +9914,140418,65 +9915,184795,65 +9916,294690,33 +9917,186991,33 +9918,6,65 +9919,14138,65 +9920,43525,65 +9921,245775,101 +9922,25353,67 +9923,30994,65 +9924,27265,65 +9925,127728,65 +9926,5206,27 +9927,334461,65 +9928,199415,41 +9929,339994,65 +9930,382589,33 +9931,13580,13 +9932,33542,72 +9933,448879,82 +9934,34838,41 +9935,21430,101 +9936,212756,65 +9937,271164,65 +9938,54959,64 +9939,20414,29 +9940,46986,35 +9941,17287,65 +9942,118984,65 +9943,12759,65 +9944,8070,33 +9945,58384,35 +9946,53654,29 +9947,45671,65 +9948,10142,65 +9949,52485,65 +9950,301876,33 +9951,16026,44 +9952,359105,65 +9953,41923,65 +9954,32158,31 +9955,83229,65 +9956,99318,65 +9957,112130,41 +9958,391899,65 +9959,56948,41 +9960,230211,16 +9961,12128,35 +9962,269149,65 +9963,377432,65 +9964,91691,79 +9965,289712,65 +9966,73873,33 +9967,229056,65 +9968,56339,29 +9969,50073,65 +9970,14782,65 +9971,330711,65 +9972,30875,29 +9973,62392,65 +9974,32489,35 +9975,128043,13 +9976,47260,65 +9977,49597,65 +9978,38951,65 +9979,13569,35 +9980,237549,65 +9981,42298,65 +9982,389972,101 +9983,146596,29 +9984,180691,65 +9985,76010,41 +9986,18375,65 +9987,26661,65 +9988,3933,65 +9989,35689,65 +9990,37534,79 +9991,2669,65 +9992,14069,101 +9993,25132,65 +9994,65973,101 +9995,91690,33 +9996,17317,35 +9997,15440,93 +9998,37238,65 +9999,203780,82 +10000,16539,33 +10001,121598,7 +10002,69921,33 +10003,126550,65 +10004,37865,100 +10005,58529,13 +10006,125300,65 +10007,135670,65 +10008,241374,65 +10009,105833,101 +10010,196359,65 +10011,3513,67 +10012,17317,41 +10013,11046,35 +10014,52894,65 +10015,37308,65 +10016,156180,100 +10017,345775,33 +10018,43434,84 +10019,27144,65 +10020,239798,46 +10021,329712,33 +10022,156388,65 +10023,117534,100 +10024,29705,65 +10025,171902,33 +10026,11496,65 +10027,77949,65 +10028,25006,35 +10029,49343,65 +10030,3716,92 +10031,31618,65 +10032,34935,101 +10033,12220,65 +10034,468707,18 +10035,65795,33 +10036,50759,101 +10037,142770,82 +10038,46069,101 +10039,455368,65 +10040,27739,65 +10041,253310,65 +10042,163333,33 +10043,21030,65 +10044,54659,31 +10045,1579,65 +10046,47959,29 +10047,28535,65 +10048,100910,65 +10049,63441,32 +10050,26267,65 +10051,75641,65 +10052,96724,82 +10053,294640,67 +10054,362178,32 +10055,36361,41 +10056,69315,65 +10057,39276,65 +10058,32067,65 +10059,77079,29 +10060,31018,67 +10061,82077,65 +10062,66022,65 +10063,156954,35 +10064,184402,15 +10065,168259,65 +10066,46758,65 +10067,18665,65 +10068,347106,44 +10069,33460,64 +10070,2731,4 +10071,148284,71 +10072,292656,82 +10073,49013,65 +10074,325592,65 +10075,72431,35 +10076,174309,65 +10077,33305,65 +10078,45527,65 +10079,18206,41 +10080,26165,41 +10081,189225,33 +10082,1497,65 +10083,13318,93 +10084,82,65 +10085,49712,29 +10086,124157,72 +10087,85525,31 +10088,172908,65 +10089,1404,41 +10090,17609,65 +10091,34019,101 +10092,411013,65 +10093,113739,65 +10094,189197,65 +10095,378441,65 +10096,461955,65 +10097,41591,65 +10098,24939,65 +10099,37935,65 +10100,39943,65 +10101,38157,65 +10102,14885,65 +10103,16455,65 +10104,44591,65 +10105,333385,65 +10106,16076,65 +10107,205864,2 +10108,2525,65 +10109,90932,65 +10110,363807,65 +10111,17644,65 +10112,14761,65 +10113,33788,65 +10114,109716,65 +10115,81001,65 +10116,34138,35 +10117,33065,82 +10118,339312,65 +10119,11531,65 +10120,98277,33 +10121,48250,29 +10122,50674,65 +10123,34623,65 +10124,149910,65 +10125,365339,65 +10126,47942,65 +10127,107443,65 +10128,84337,65 +10129,975,80 +10130,26823,65 +10131,4832,65 +10132,122368,8 +10133,48791,8 +10134,62488,65 +10135,13805,65 +10136,411741,65 +10137,167330,35 +10138,371818,35 +10139,103731,65 +10140,38794,90 +10141,37189,33 +10142,65496,29 +10143,256092,65 +10144,870,101 +10145,33201,33 +10146,9396,65 +10147,257907,65 +10148,71320,65 +10149,143240,79 +10150,74505,33 +10151,214910,31 +10152,9746,94 +10153,10647,65 +10154,401060,65 +10155,11593,67 +10156,37645,33 +10157,48587,29 +10158,148265,71 +10159,239566,65 +10160,24023,44 +10161,295964,65 +10162,32068,65 +10163,3870,29 +10164,795,79 +10165,242,35 +10166,104476,15 +10167,162374,33 +10168,12311,37 +10169,356156,101 +10170,53792,29 +10171,27042,65 +10172,51481,65 +10173,15661,65 +10174,273167,65 +10175,41331,65 +10176,15940,65 +10177,22404,65 +10178,48609,65 +10179,16235,65 +10180,244001,65 +10181,90956,65 +10182,31472,65 +10183,189225,65 +10184,78231,65 +10185,9503,65 +10186,11364,65 +10187,12796,65 +10188,431244,65 +10189,8144,41 +10190,85327,65 +10191,2721,65 +10192,19294,41 +10193,39345,8 +10194,291558,65 +10195,211928,82 +10196,211088,65 +10197,209251,92 +10198,10198,33 +10199,75752,65 +10200,39519,33 +10201,228558,65 +10202,210913,35 +10203,152948,82 +10204,34796,65 +10205,35921,65 +10206,43759,65 +10207,10539,65 +10208,39800,65 +10209,152100,29 +10210,122843,65 +10211,16412,65 +10212,29094,65 +10213,6643,29 +10214,291907,18 +10215,344170,84 +10216,6079,67 +10217,49929,35 +10218,248710,18 +10219,64720,65 +10220,1165,35 +10221,21041,44 +10222,24163,72 +10223,314283,33 +10224,381525,65 +10225,31856,79 +10226,61934,65 +10227,367147,65 +10228,58076,65 +10229,206284,65 +10230,17906,13 +10231,43670,82 +10232,104081,41 +10233,14518,65 +10234,240832,32 +10235,89606,65 +10236,242224,65 +10237,47816,65 +10238,115810,65 +10239,270403,33 +10240,44486,35 +10241,9870,65 +10242,35977,65 +10243,180418,41 +10244,39833,65 +10245,78568,33 +10246,29896,65 +10247,220820,67 +10248,381737,65 +10249,35110,101 +10250,864,82 +10251,16075,65 +10252,13741,67 +10253,10991,65 +10254,16410,65 +10255,101783,64 +10256,10783,65 +10257,105833,100 +10258,857,65 +10259,229638,65 +10260,10865,41 +10261,15764,82 +10262,239091,65 +10263,77010,33 +10264,260500,65 +10265,99,41 +10266,11656,29 +10267,167073,65 +10268,65612,33 +10269,39771,65 +10270,215032,64 +10271,35113,65 +10272,217648,29 +10273,145760,82 +10274,239056,65 +10275,2907,65 +10276,267481,33 +10277,511,82 +10278,253286,65 +10279,15084,35 +10280,51999,67 +10281,296941,65 +10282,404459,65 +10283,298165,65 +10284,128437,65 +10285,39240,65 +10286,54503,32 +10287,14651,33 +10288,258193,65 +10289,256474,65 +10290,77860,65 +10291,19166,65 +10292,85709,32 +10293,395763,33 +10294,356483,65 +10295,72917,33 +10296,37958,65 +10297,143883,82 +10298,18495,65 +10299,39127,65 +10300,31592,65 +10301,63315,65 +10302,235450,65 +10303,106136,65 +10304,95536,65 +10305,193040,65 +10306,14676,65 +10307,66984,65 +10308,86979,65 +10309,55663,65 +10310,84425,65 +10311,327935,90 +10312,237,65 +10313,429238,33 +10314,1164,82 +10315,76686,65 +10316,323929,65 +10317,22855,65 +10318,318781,41 +10319,43878,33 +10320,12450,65 +10321,341491,35 +10322,13835,65 +10323,12528,33 +10324,27635,65 +10325,2259,41 +10326,259830,65 +10327,39493,101 +10328,55197,101 +10329,284053,65 +10330,9406,33 +10331,105965,44 +10332,73952,65 +10333,240745,33 +10334,44945,65 +10335,655,65 +10336,105551,65 +10337,56292,82 +10338,13440,84 +10339,10041,65 +10340,16687,32 +10341,96147,64 +10342,88273,33 +10343,27843,101 +10344,51955,65 +10345,412851,82 +10346,63989,33 +10347,42996,65 +10348,87296,101 +10349,188765,90 +10350,285840,65 +10351,27061,33 +10352,9905,65 +10353,43656,65 +10354,11876,29 +10355,445,33 +10356,1251,101 +10357,79782,79 +10358,58166,35 +10359,216989,65 +10360,403867,64 +10361,76341,65 +10362,4964,65 +10363,10389,82 +10364,28366,65 +10365,16074,32 +10366,179105,65 +10367,288980,65 +10368,333103,65 +10369,140509,101 +10370,35284,35 +10371,14669,65 +10372,85644,65 +10373,64407,33 +10374,60120,41 +10375,142989,65 +10376,11972,29 +10377,37710,41 +10378,39875,65 +10379,191112,91 +10380,33135,65 +10381,195544,29 +10382,151870,44 +10383,35826,65 +10384,10632,65 +10385,6081,65 +10386,332168,65 +10387,83599,53 +10388,21905,64 +10389,133448,65 +10390,127445,41 +10391,75622,65 +10392,28732,65 +10393,15037,65 +10394,47525,65 +10395,9827,65 +10396,25335,18 +10397,864,65 +10398,8939,82 +10399,11854,64 +10400,24971,29 +10401,14615,65 +10402,14694,65 +10403,43369,65 +10404,43407,35 +10405,56744,65 +10406,31605,65 +10407,120972,29 +10408,62301,32 +10409,364690,65 +10410,79853,82 +10411,285181,93 +10412,147876,65 +10413,21620,65 +10414,83599,65 +10415,13733,33 +10416,14868,65 +10417,36249,65 +10418,284564,65 +10419,325803,87 +10420,197175,35 +10421,201724,65 +10422,20123,45 +10423,78403,65 +10424,13836,65 +10425,488,78 +10426,33673,65 +10427,10897,65 +10428,241620,65 +10429,414173,65 +10430,61109,65 +10431,81022,41 +10432,8336,65 +10433,56558,65 +10434,148327,33 +10435,156015,33 +10436,69903,65 +10437,55632,65 +10438,43266,10 +10439,13710,33 +10440,21734,65 +10441,34560,65 +10442,63144,65 +10443,50779,65 +10444,45649,65 +10445,201581,65 +10446,12289,76 +10447,42966,64 +10448,112912,65 +10449,108017,15 +10450,41078,13 +10451,290762,65 +10452,13056,82 +10453,90590,65 +10454,58,32 +10455,22051,65 +10456,197089,65 +10457,123025,65 +10458,16032,8 +10459,6391,33 +10460,73247,65 +10461,24926,65 +10462,82327,33 +10463,18072,65 +10464,10011,65 +10465,115239,79 +10466,374460,65 +10467,57627,76 +10468,43119,65 +10469,49852,65 +10470,163706,29 +10471,17144,65 +10472,51823,41 +10473,25784,65 +10474,2611,2 +10475,38325,82 +10476,52637,101 +10477,41038,65 +10478,37917,65 +10479,217412,35 +10480,43228,65 +10481,229134,29 +10482,81310,65 +10483,192210,82 +10484,13680,65 +10485,60853,65 +10486,42355,32 +10487,8584,41 +10488,31150,65 +10489,60307,65 +10490,18597,65 +10491,80219,65 +10492,601,65 +10493,148347,82 +10494,37311,65 +10495,38787,65 +10496,10299,65 +10497,76996,65 +10498,43455,65 +10499,98364,65 +10500,21041,16 +10501,17057,65 +10502,127369,65 +10503,434873,65 +10504,339342,22 +10505,409696,65 +10506,114514,65 +10507,4993,33 +10508,13536,65 +10509,88018,65 +10510,16460,65 +10511,128154,84 +10512,222030,65 +10513,965,65 +10514,419786,65 +10515,18317,65 +10516,41115,41 +10517,32764,35 +10518,119592,35 +10519,59861,65 +10520,33127,65 +10521,43079,65 +10522,311324,65 +10523,30036,65 +10524,95134,35 +10525,33272,65 +10526,30265,32 +10527,36251,65 +10528,315855,65 +10529,17708,76 +10530,8869,65 +10531,1381,65 +10532,142979,29 +10533,83229,33 +10534,126963,65 +10535,294047,65 +10536,32604,92 +10537,35197,65 +10538,347331,91 +10539,29475,65 +10540,28090,65 +10541,54491,65 +10542,69605,65 +10543,368051,65 +10544,13017,33 +10545,257454,65 +10546,118257,65 +10547,97707,65 +10548,13640,65 +10549,27079,65 +10550,49314,29 +10551,169934,101 +10552,68097,33 +10553,16331,65 +10554,46931,82 +10555,111480,33 +10556,192210,65 +10557,82401,65 +10558,16154,65 +10559,226672,65 +10560,136466,65 +10561,59075,65 +10562,39938,35 +10563,2397,65 +10564,9953,100 +10565,35025,33 +10566,24005,65 +10567,3059,15 +10568,415255,41 +10569,115531,65 +10570,10336,65 +10571,259997,65 +10572,219247,65 +10573,46403,64 +10574,53648,29 +10575,71670,67 +10576,391004,101 +10577,45266,65 +10578,16441,65 +10579,32049,65 +10580,334175,90 +10581,366736,77 +10582,47059,65 +10583,74661,16 +10584,279090,35 +10585,176124,35 +10586,72278,33 +10587,331354,41 +10588,45303,65 +10589,3595,65 +10590,29572,34 +10591,328429,65 +10592,10066,65 +10593,191820,65 +10594,382125,33 +10595,39510,65 +10596,23207,31 +10597,15592,65 +10598,834,65 +10599,25037,65 +10600,208529,65 +10601,42669,65 +10602,4365,65 +10603,239519,65 +10604,11007,65 +10605,32195,65 +10606,42260,35 +10607,356752,65 +10608,294272,65 +10609,56969,64 +10610,73723,65 +10611,95743,65 +10612,80304,41 +10613,20879,82 +10614,14695,65 +10615,11234,65 +10616,86363,65 +10617,390059,65 +10618,227348,65 +10619,425774,65 +10620,14400,33 +10621,31880,65 +10622,381645,65 +10623,180819,65 +10624,58416,82 +10625,1165,33 +10626,98566,65 +10627,48587,65 +10628,1896,54 +10629,102841,65 +10630,14047,65 +10631,384450,65 +10632,30202,82 +10633,85543,41 +10634,14254,65 +10635,150208,18 +10636,44389,65 +10637,18514,31 +10638,86975,65 +10639,94551,65 +10640,28273,65 +10641,45838,65 +10642,35724,65 +10643,106049,65 +10644,26670,65 +10645,6687,41 +10646,288710,65 +10647,288168,33 +10648,28170,65 +10649,188684,101 +10650,98586,41 +10651,123949,82 +10652,13734,33 +10653,44369,107 +10654,27501,65 +10655,350060,27 +10656,70498,65 +10657,32683,65 +10658,228968,16 +10659,75138,65 +10660,27999,65 +10661,142085,13 +10662,12154,82 +10663,153266,79 +10664,15199,65 +10665,38202,35 +10666,15036,35 +10667,13920,65 +10668,179549,15 +10669,377847,35 +10670,118536,65 +10671,18776,65 +10672,39978,33 +10673,83899,65 +10674,9078,65 +10675,40785,44 +10676,39176,65 +10677,445916,65 +10678,134806,65 +10679,258585,18 +10680,18684,41 +10681,270759,31 +10682,30946,65 +10683,39057,65 +10684,10834,65 +10685,24883,33 +10686,21927,65 +10687,321160,82 +10688,140519,65 +10689,27814,65 +10690,703,65 +10691,20718,65 +10692,11516,33 +10693,214129,107 +10694,47201,65 +10695,319910,65 +10696,42739,65 +10697,52856,65 +10698,80468,65 +10699,124979,18 +10700,18990,35 +10701,131781,65 +10702,101915,65 +10703,113432,27 +10704,347945,65 +10705,373546,65 +10706,56601,65 +10707,70489,65 +10708,114790,35 +10709,99367,65 +10710,346106,65 +10711,440767,65 +10712,3638,65 +10713,65256,65 +10714,73981,64 +10715,14029,35 +10716,357390,101 +10717,49013,33 +10718,10476,65 +10719,45505,101 +10720,34672,65 +10721,35139,65 +10722,70027,65 +10723,13506,82 +10724,134732,65 +10725,334132,32 +10726,10863,35 +10727,331641,41 +10728,9056,72 +10729,139159,33 +10730,16447,31 +10731,83389,101 +10732,22140,44 +10733,38718,65 +10734,11257,29 +10735,125510,101 +10736,57308,33 +10737,11404,65 +10738,199602,43 +10739,44519,7 +10740,308671,35 +10741,66925,65 +10742,47110,2 +10743,27443,65 +10744,362057,65 +10745,211017,15 +10746,2805,76 +10747,47561,65 +10748,41597,65 +10749,39824,65 +10750,91181,65 +10751,24062,100 +10752,21214,65 +10753,416445,65 +10754,369883,13 +10755,73144,65 +10756,17820,65 +10757,11930,82 +10758,141803,65 +10759,395982,65 +10760,278867,79 +10761,34231,65 +10762,38154,101 +10763,77822,65 +10764,5544,101 +10765,131966,65 +10766,12650,31 +10767,10020,33 +10768,10527,76 +10769,8342,35 +10770,185273,65 +10771,38955,72 +10772,9835,29 +10773,36657,65 +10774,123047,65 +10775,273578,65 +10776,48617,15 +10777,78522,65 +10778,29424,65 +10779,18893,65 +10780,50512,65 +10781,416256,65 +10782,300,33 +10783,188598,32 +10784,39816,65 +10785,87481,32 +10786,171581,41 +10787,327,65 +10788,136799,65 +10789,80928,65 +10790,11012,29 +10791,201365,65 +10792,76640,65 +10793,272693,65 +10794,86956,65 +10795,38244,65 +10796,26805,65 +10797,194,33 +10798,44682,65 +10799,17306,82 +10800,46982,67 +10801,16839,65 +10802,129332,65 +10803,133941,29 +10804,39958,65 +10805,70057,32 +10806,84333,65 +10807,19676,65 +10808,59387,65 +10809,35177,65 +10810,23898,82 +10811,64450,107 +10812,29286,65 +10813,300669,65 +10814,13550,65 +10815,25655,72 +10816,83802,65 +10817,14164,64 +10818,10929,65 +10819,352164,65 +10820,9441,65 +10821,10139,65 +10822,118257,35 +10823,27629,33 +10824,31364,64 +10825,22494,65 +10826,201676,65 +10827,33305,35 +10828,25353,65 +10829,14873,65 +10830,15050,65 +10831,33570,65 +10832,97051,65 +10833,58918,65 +10834,335869,65 +10835,31131,13 +10836,286512,33 +10837,630,65 +10838,81576,65 +10839,24731,65 +10840,45938,65 +10841,73700,65 +10842,77068,65 +10843,221527,29 +10844,48156,65 +10845,87229,27 +10846,82077,29 +10847,26326,65 +10848,578,65 +10849,359154,54 +10850,186881,32 +10851,11653,65 +10852,61904,5 +10853,48466,33 +10854,14794,65 +10855,140846,65 +10856,9717,65 +10857,215646,29 +10858,190955,65 +10859,343140,72 +10860,69217,65 +10861,75532,29 +10862,15849,84 +10863,29510,65 +10864,6644,65 +10865,2463,72 +10866,2071,65 +10867,32654,72 +10868,34092,16 +10869,9404,82 +10870,91961,65 +10871,78854,29 +10872,23619,29 +10873,83191,33 +10874,369567,41 +10875,8669,65 +10876,229594,65 +10877,259358,35 +10878,41932,65 +10879,17744,65 +10880,14823,65 +10881,209266,33 +10882,14554,65 +10883,27457,100 +10884,9030,65 +10885,9066,29 +10886,360784,65 +10887,128795,65 +10888,160844,29 +10889,14794,80 +10890,13685,41 +10891,397365,64 +10892,9585,65 +10893,146381,65 +10894,403593,65 +10895,45899,46 +10896,266558,2 +10897,86664,101 +10898,406449,35 +10899,12249,35 +10900,332411,65 +10901,43649,29 +10902,66340,71 +10903,377447,101 +10904,74581,101 +10905,101183,33 +10906,2355,65 +10907,45610,65 +10908,127380,65 +10909,14066,65 +10910,14147,65 +10911,12601,65 +10912,33481,18 +10913,58985,65 +10914,12407,29 +10915,142061,65 +10916,114982,65 +10917,76600,65 +10918,53654,65 +10919,460135,100 +10920,28270,84 +10921,270724,32 +10922,25385,29 +10923,72823,65 +10924,12637,65 +10925,23855,65 +10926,42623,41 +10927,43514,65 +10928,85699,29 +10929,39057,35 +10930,361380,65 +10931,9358,65 +10932,71996,65 +10933,207270,65 +10934,129277,46 +10935,20034,65 +10936,378607,93 +10937,17295,29 +10938,30366,65 +10939,73545,82 +10940,4253,35 +10941,60071,65 +10942,22450,65 +10943,46660,65 +10944,275696,65 +10945,50350,41 +10946,44658,33 +10947,44502,100 +10948,118760,65 +10949,747,65 +10950,163,33 +10951,8494,65 +10952,87593,65 +10953,20432,65 +10954,10590,4 +10955,39407,65 +10956,127468,41 +10957,60140,65 +10958,384160,65 +10959,20,65 +10960,314371,65 +10961,19274,32 +10962,112531,79 +10963,53945,35 +10964,15464,64 +10965,18783,65 +10966,235260,66 +10967,267793,65 +10968,1628,33 +10969,209032,35 +10970,91419,65 +10971,6977,65 +10972,19936,79 +10973,463906,100 +10974,26156,65 +10975,11045,41 +10976,189,65 +10977,284620,33 +10978,168496,65 +10979,264644,65 +10980,41110,82 +10981,38913,8 +10982,32390,33 +10983,15267,41 +10984,79506,29 +10985,11134,24 +10986,50008,65 +10987,10857,65 +10988,257344,65 +10989,277967,35 +10990,82627,65 +10991,298228,65 +10992,79779,41 +10993,58447,90 +10994,18117,65 +10995,27053,33 +10996,83384,65 +10997,115782,65 +10998,70981,30 +10999,4948,33 +11000,13956,67 +11001,376292,65 +11002,289159,65 +11003,20842,65 +11004,26826,67 +11005,19325,8 +11006,58416,18 +11007,11137,35 +11008,3989,33 +11009,41760,65 +11010,49522,65 +11011,186292,18 +11012,103236,64 +11013,118991,65 +11014,75300,65 +11015,84228,33 +11016,319924,65 +11017,56653,33 +11018,31344,33 +11019,8014,64 +11020,295581,65 +11021,354859,33 +11022,370264,13 +11023,69,65 +11024,52395,65 +11025,287,65 +11026,691,84 +11027,59419,65 +11028,37813,35 +11029,49907,29 +11030,25738,65 +11031,239103,34 +11032,371003,65 +11033,420648,41 +11034,69165,65 +11035,26036,65 +11036,126963,101 +11037,18051,65 +11038,379,65 +11039,18214,65 +11040,321779,67 +11041,14695,41 +11042,33333,101 +11043,256628,65 +11044,281085,65 +11045,92132,82 +11046,96951,15 +11047,176079,65 +11048,63066,41 +11049,15476,65 +11050,47011,82 +11051,116762,66 +11052,140894,65 +11053,120172,65 +11054,256930,101 +11055,10724,65 +11056,4344,64 +11057,95536,100 +11058,95516,65 +11059,109424,6 +11060,10543,65 +11061,113525,65 +11062,47943,33 +11063,31306,65 +11064,74395,65 +11065,43987,31 +11066,21966,101 +11067,91334,65 +11068,26761,65 +11069,166262,29 +11070,69635,71 +11071,3513,33 +11072,228034,65 +11073,17744,82 +11074,9877,65 +11075,105860,29 +11076,25919,65 +11077,23340,65 +11078,379297,65 +11079,12101,65 +11080,408272,65 +11081,19797,65 +11082,30174,33 +11083,412851,22 +11084,17274,65 +11085,40807,65 +11086,135313,65 +11087,1394,82 +11088,36432,65 +11089,24062,65 +11090,31899,65 +11091,79728,35 +11092,11186,90 +11093,14012,65 +11094,215743,31 +11095,1164,84 +11096,1394,29 +11097,316154,65 +11098,86391,67 +11099,20164,18 +11100,293982,33 +11101,129966,33 +11102,411221,41 +11103,55343,65 +11104,238589,65 +11105,15764,79 +11106,72054,8 +11107,23957,65 +11108,102630,65 +11109,185154,65 +11110,5494,65 +11111,127614,44 +11112,238781,33 +11113,81687,65 +11114,270221,65 +11115,97365,65 +11116,32577,101 +11117,88273,8 +11118,266856,65 +11119,27681,65 +11120,50364,35 +11121,24469,65 +11122,18475,65 +11123,237303,65 +11124,345489,65 +11125,296901,90 +11126,44511,32 +11127,167707,100 +11128,43860,65 +11129,86266,31 +11130,422,29 +11131,109610,65 +11132,148636,65 +11133,12103,65 +11134,61984,101 +11135,336167,65 +11136,45725,65 +11137,96935,65 +11138,28047,65 +11139,44896,65 +11140,41714,4 +11141,354832,65 +11142,24971,65 +11143,254918,65 +11144,35651,33 +11145,459295,65 +11146,398452,46 +11147,184351,65 +11148,177572,65 +11149,193435,65 +11150,168031,82 +11151,118408,101 +11152,341895,28 +11153,8470,65 +11154,252520,101 +11155,8842,65 +11156,37628,41 +11157,35623,66 +11158,124680,99 +11159,262988,65 +11160,37586,90 +11161,270646,66 +11162,185987,101 +11163,51249,41 +11164,18120,41 +11165,8383,35 +11166,414771,84 +11167,396643,64 +11168,15090,65 +11169,241968,41 +11170,24679,65 +11171,62900,18 +11172,96118,35 +11173,408537,41 +11174,318184,65 +11175,73690,65 +11176,44415,65 +11177,39436,29 +11178,62394,65 +11179,11647,76 +11180,247447,46 +11181,285908,33 +11182,311324,32 +11183,12622,101 +11184,406992,65 +11185,10050,65 +11186,72678,33 +11187,38978,65 +11188,78177,65 +11189,341201,103 +11190,12888,65 +11191,85483,65 +11192,169656,35 +11193,307649,82 +11194,43009,65 +11195,125548,65 +11196,393559,33 +11197,39127,33 +11198,70575,65 +11199,336666,65 +11200,95177,65 +11201,33923,65 +11202,15807,101 +11203,7219,65 +11204,13185,65 +11205,2196,65 +11206,21132,65 +11207,49500,65 +11208,43751,41 +11209,26486,65 +11210,44104,65 +11211,15003,65 +11212,242683,65 +11213,235046,65 +11214,65123,82 +11215,59726,65 +11216,41759,35 +11217,59744,65 +11218,11607,65 +11219,79025,29 +11220,95807,65 +11221,398633,65 +11222,330431,64 +11223,44874,65 +11224,128140,65 +11225,8008,65 +11226,278348,65 +11227,13350,65 +11228,33558,41 +11229,297263,65 +11230,19116,65 +11231,248543,100 +11232,60994,65 +11233,400610,65 +11234,132328,65 +11235,94513,46 +11236,266030,33 +11237,259690,56 +11238,165864,65 +11239,128364,65 +11240,43771,46 +11241,146679,65 +11242,9308,65 +11243,31005,66 +11244,277934,90 +11245,329135,47 +11246,366566,33 +11247,303856,35 +11248,18613,65 +11249,50875,65 +11250,74924,65 +11251,1942,65 +11252,37339,65 +11253,6440,65 +11254,11577,65 +11255,14819,65 +11256,34106,65 +11257,315841,101 +11258,21786,93 +11259,227306,101 +11260,120370,65 +11261,13484,65 +11262,63317,65 +11263,169343,54 +11264,145220,65 +11265,16800,65 +11266,106155,29 +11267,64268,82 +11268,9528,35 +11269,8053,41 +11270,664,65 +11271,64130,65 +11272,330947,65 +11273,6391,66 +11274,1482,65 +11275,118497,35 +11276,17347,16 +11277,84708,65 +11278,87827,64 +11279,8870,65 +11280,9602,65 +11281,16890,32 +11282,63215,33 +11283,36113,32 +11284,524,65 +11285,92950,101 +11286,37603,82 +11287,24458,33 +11288,26516,65 +11289,171581,65 +11290,227700,65 +11291,296626,65 +11292,44104,84 +11293,254047,65 +11294,62978,33 +11295,23152,29 +11296,19623,64 +11297,31342,65 +11298,32233,64 +11299,24831,65 +11300,49850,35 +11301,14753,65 +11302,714,65 +11303,336850,65 +11304,392818,65 +11305,129798,65 +11306,8882,29 +11307,78094,65 +11308,83430,65 +11309,52238,35 +11310,236317,90 +11311,8619,33 +11312,272663,65 +11313,154442,101 +11314,7014,15 +11315,117999,65 +11316,118121,65 +11317,450875,65 +11318,452606,90 +11319,14452,65 +11320,3539,90 +11321,284564,35 +11322,108535,29 +11323,126676,33 +11324,100063,65 +11325,447236,13 +11326,14770,65 +11327,267654,33 +11328,19995,65 +11329,26422,65 +11330,14273,65 +11331,224233,100 +11332,43550,65 +11333,107682,72 +11334,126090,35 +11335,4887,90 +11336,11011,65 +11337,11428,65 +11338,196027,44 +11339,330588,35 +11340,28943,65 +11341,13855,31 +11342,12449,33 +11343,424488,84 +11344,156627,35 +11345,145963,65 +11346,141145,16 +11347,18758,32 +11348,1259,65 +11349,280617,65 +11350,342917,13 +11351,40985,35 +11352,93862,65 +11353,9462,29 +11354,62783,82 +11355,136752,41 +11356,1926,33 +11357,314065,65 +11358,371446,65 +11359,18070,65 +11360,72032,29 +11361,17216,65 +11362,237584,65 +11363,198652,65 +11364,23096,65 +11365,329868,29 +11366,1687,65 +11367,67,65 +11368,382125,93 +11369,273610,65 +11370,115332,65 +11371,369885,84 +11372,9471,41 +11373,59961,41 +11374,17780,13 +11375,103713,65 +11376,53739,41 +11377,209271,65 +11378,17614,66 +11379,199985,29 +11380,100088,65 +11381,78233,66 +11382,16440,65 +11383,19255,65 +11384,73043,35 +11385,156268,65 +11386,15764,35 +11387,11534,76 +11388,97614,65 +11389,63736,65 +11390,108869,65 +11391,45215,65 +11392,224950,65 +11393,294651,101 +11394,14444,65 +11395,8985,35 +11396,79500,65 +11397,25507,65 +11398,226354,65 +11399,340961,29 +11400,53404,33 +11401,5155,29 +11402,447169,15 +11403,83965,65 +11404,62143,78 +11405,134308,65 +11406,21583,72 +11407,331313,66 +11408,42819,79 +11409,318973,65 +11410,29192,76 +11411,985,65 +11412,21338,65 +11413,120497,65 +11414,48949,65 +11415,265226,35 +11416,13996,33 +11417,34630,65 +11418,53486,29 +11419,10491,65 +11420,438137,65 +11421,13561,65 +11422,161187,65 +11423,9483,65 +11424,31875,82 +11425,13542,58 +11426,47143,82 +11427,9771,65 +11428,12427,65 +11429,65650,65 +11430,7304,65 +11431,9366,29 +11432,13676,65 +11433,40555,65 +11434,31048,35 +11435,10691,41 +11436,422,33 +11437,13614,14 +11438,222216,65 +11439,370264,79 +11440,55628,65 +11441,3033,13 +11442,346490,103 +11443,2978,65 +11444,125409,65 +11445,52203,65 +11446,250671,33 +11447,211139,29 +11448,95504,65 +11449,36253,32 +11450,128900,8 +11451,11798,65 +11452,18616,65 +11453,77877,65 +11454,714,35 +11455,168814,32 +11456,33534,82 +11457,53042,100 +11458,310602,8 +11459,13338,65 +11460,10999,65 +11461,18621,65 +11462,245891,82 +11463,96936,65 +11464,40465,35 +11465,356332,65 +11466,109379,33 +11467,133523,2 +11468,360606,65 +11469,358511,79 +11470,101852,65 +11471,215999,65 +11472,15830,13 +11473,13580,65 +11474,15036,2 +11475,66893,29 +11476,266856,33 +11477,1271,65 +11478,1251,65 +11479,42634,65 +11480,88176,35 +11481,76059,16 +11482,2075,65 +11483,29542,33 +11484,187022,32 +11485,5060,65 +11486,10396,65 +11487,32038,35 +11488,32604,13 +11489,77864,65 +11490,348315,16 +11491,38874,33 +11492,7096,65 +11493,168541,65 +11494,55437,101 +11495,12763,65 +11496,17479,49 +11497,296194,65 +11498,87851,65 +11499,27145,65 +11500,300210,66 +11501,37098,65 +11502,45302,65 +11503,18548,64 +11504,29938,65 +11505,72204,82 +11506,9066,65 +11507,26758,35 +11508,74481,64 +11509,6076,35 +11510,11485,65 +11511,82279,67 +11512,365222,65 +11513,136786,65 +11514,37708,79 +11515,222890,35 +11516,132227,41 +11517,27523,29 +11518,9404,65 +11519,332280,65 +11520,155556,65 +11521,11449,65 +11522,6948,65 +11523,1721,29 +11524,121462,31 +11525,14181,82 +11526,23805,35 +11527,403605,100 +11528,43390,65 +11529,44527,33 +11530,195,29 +11531,43459,41 +11532,301671,64 +11533,17640,29 +11534,55236,65 +11535,63186,29 +11536,12764,65 +11537,106623,29 +11538,143380,82 +11539,175998,65 +11540,135718,64 +11541,245909,65 +11542,5393,65 +11543,97683,65 +11544,327909,13 +11545,10005,65 +11546,15081,65 +11547,170677,65 +11548,1999,65 +11549,69765,33 +11550,73827,29 +11551,363841,69 +11552,83079,41 +11553,90406,65 +11554,40916,65 +11555,26849,65 +11556,38681,33 +11557,27031,101 +11558,8063,29 +11559,25707,65 +11560,1116,65 +11561,206647,35 +11562,109439,65 +11563,179715,90 +11564,130948,29 +11565,33005,65 +11566,43462,33 +11567,383064,90 +11568,57005,32 +11569,326228,15 +11570,59197,65 +11571,347666,41 +11572,68737,65 +11573,10294,65 +11574,296456,65 +11575,277687,90 +11576,11643,65 +11577,32559,79 +11578,29372,65 +11579,18803,65 +11580,32834,65 +11581,32552,65 +11582,62320,33 +11583,153795,65 +11584,63764,33 +11585,12683,67 +11586,24821,44 +11587,46830,41 +11588,10724,82 +11589,954,65 +11590,45964,65 +11591,21044,65 +11592,159095,65 +11593,104041,65 +11594,372226,71 +11595,194509,65 +11596,172475,65 +11597,48231,65 +11598,143073,82 +11599,369019,65 +11600,94820,65 +11601,289126,33 +11602,9504,65 +11603,13652,33 +11604,405670,82 +11605,3092,65 +11606,48838,65 +11607,62837,65 +11608,120399,65 +11609,63449,82 +11610,29825,65 +11611,14878,65 +11612,264080,35 +11613,44773,33 +11614,83599,66 +11615,132150,41 +11616,229757,65 +11617,375732,65 +11618,360737,35 +11619,48937,29 +11620,32609,65 +11621,31377,65 +11622,126250,65 +11623,44578,65 +11624,30778,65 +11625,28417,33 +11626,326255,65 +11627,43680,82 +11628,28025,65 +11629,103218,29 +11630,38048,65 +11631,322922,65 +11632,1793,35 +11633,68247,65 +11634,22398,65 +11635,6935,33 +11636,13072,65 +11637,28270,13 +11638,348537,33 +11639,58763,65 +11640,110323,33 +11641,169782,65 +11642,246127,65 +11643,97910,65 +11644,19610,65 +11645,875,72 +11646,28370,65 +11647,72984,65 +11648,322460,65 +11649,14587,64 +11650,8916,65 +11651,16281,29 +11652,6934,61 +11653,14459,33 +11654,36519,65 +11655,353616,65 +11656,2974,35 +11657,44208,65 +11658,936,33 +11659,45556,65 +11660,20678,65 +11661,9765,35 +11662,3941,65 +11663,11915,33 +11664,24351,65 +11665,40660,18 +11666,31372,101 +11667,167021,2 +11668,37581,65 +11669,47535,65 +11670,116723,65 +11671,12236,35 +11672,298396,16 +11673,267977,101 +11674,96411,13 +11675,102144,41 +11676,24757,65 +11677,124633,103 +11678,249969,65 +11679,353652,65 +11680,16820,65 +11681,51426,65 +11682,82817,33 +11683,267557,29 +11684,140485,90 +11685,245917,101 +11686,57311,33 +11687,1917,33 +11688,181753,65 +11689,227964,100 +11690,8948,35 +11691,142064,65 +11692,269518,41 +11693,321160,65 +11694,64685,65 +11695,15559,65 +11696,9815,41 +11697,99261,29 +11698,359483,35 +11699,70881,65 +11700,400174,65 +11701,25053,101 +11702,122081,65 +11703,25500,33 +11704,315319,29 +11705,44283,33 +11706,16455,13 +11707,396330,65 +11708,15371,101 +11709,357106,65 +11710,142881,82 +11711,180635,65 +11712,94811,65 +11713,17209,82 +11714,162862,65 +11715,9352,35 +11716,320910,71 +11717,178341,65 +11718,149883,65 +11719,146216,65 +11720,51250,65 +11721,198130,33 +11722,2897,33 +11723,35632,65 +11724,77949,33 +11725,13542,65 +11726,222890,33 +11727,10805,65 +11728,1480,41 +11729,24886,65 +11730,43808,65 +11731,43281,33 +11732,44223,35 +11733,10257,32 +11734,150247,65 +11735,15725,65 +11736,118015,65 +11737,3962,35 +11738,18082,41 +11739,64456,65 +11740,43903,65 +11741,37719,29 +11742,138191,76 +11743,1628,65 +11744,51209,65 +11745,21036,101 +11746,56329,72 +11747,76784,16 +11748,76829,33 +11749,82098,65 +11750,186881,72 +11751,37731,44 +11752,106747,65 +11753,172847,65 +11754,245168,35 +11755,76940,101 +11756,92341,65 +11757,133255,65 +11758,2771,65 +11759,1817,78 +11760,62755,101 +11761,121329,29 +11762,46010,82 +11763,431244,29 +11764,26516,29 +11765,40466,65 +11766,406449,34 +11767,11456,65 +11768,187028,84 +11769,53217,65 +11770,392271,64 +11771,27941,65 +11772,125990,65 +11773,116019,44 +11774,431093,65 +11775,69310,72 +11776,79218,65 +11777,42819,65 +11778,387558,65 +11779,352372,65 +11780,9946,29 +11781,191502,65 +11782,79419,35 +11783,60285,65 +11784,130272,16 +11785,121822,65 +11786,101352,33 +11787,53380,65 +11788,366143,65 +11789,415633,65 +11790,16296,65 +11791,240832,41 +11792,168022,65 +11793,488,65 +11794,60160,101 +11795,10137,65 +11796,228205,65 +11797,82469,76 +11798,269165,35 +11799,87827,33 +11800,3537,41 +11801,352208,65 +11802,63414,47 +11803,75626,65 +11804,32484,65 +11805,249021,65 +11806,317,45 +11807,42703,65 +11808,81549,90 +11809,141971,18 +11810,461088,46 +11811,258509,65 +11812,131343,27 +11813,2662,65 +11814,157409,65 +11815,61644,65 +11816,81346,41 +11817,45243,65 +11818,180813,65 +11819,97672,82 +11820,121234,65 +11821,49013,101 +11822,49308,101 +11823,8292,41 +11824,72203,82 +11825,11485,34 +11826,43646,29 +11827,336050,34 +11828,30492,65 +11829,115109,65 +11830,325803,65 +11831,11859,65 +11832,41823,65 +11833,38362,29 +11834,157723,65 +11835,38154,65 +11836,9928,65 +11837,70199,65 +11838,323426,64 +11839,16307,65 +11840,20003,65 +11841,227717,33 +11842,58372,65 +11843,10950,65 +11844,197082,33 +11845,28131,65 +11846,22396,65 +11847,106112,65 +11848,75142,13 +11849,52013,65 +11850,54845,65 +11851,14008,65 +11852,69619,76 +11853,48136,65 +11854,47426,41 +11855,16373,65 +11856,111605,29 +11857,204040,65 +11858,17258,65 +11859,261037,65 +11860,6687,65 +11861,14142,65 +11862,11536,65 +11863,128237,41 +11864,20941,41 +11865,112675,35 +11866,8368,65 +11867,155597,29 +11868,40624,65 +11869,74585,35 +11870,78364,65 +11871,202984,94 +11872,37050,100 +11873,74103,35 +11874,156700,65 +11875,22076,65 +11876,392271,65 +11877,1950,65 +11878,4476,81 +11879,284343,84 +11880,156389,65 +11881,10917,65 +11882,110830,65 +11883,125063,65 +11884,115810,41 +11885,234868,65 +11886,15043,65 +11887,12536,65 +11888,18040,65 +11889,6163,65 +11890,13551,65 +11891,296750,101 +11892,983,65 +11893,30527,65 +11894,319092,65 +11895,97794,65 +11896,61400,64 +11897,293452,65 +11898,11055,29 +11899,18190,65 +11900,19551,35 +11901,39194,65 +11902,56647,41 +11903,37451,65 +11904,61966,82 +11905,24837,65 +11906,9343,29 +11907,437838,35 +11908,71393,82 +11909,33224,65 +11910,335053,41 +11911,43045,65 +11912,51426,101 +11913,12920,65 +11914,75623,13 +11915,27351,101 +11916,52784,44 +11917,41609,65 +11918,334298,72 +11919,196257,65 +11920,245169,65 +11921,415542,65 +11922,28165,65 +11923,67273,65 +11924,190876,33 +11925,115223,101 +11926,27904,76 +11927,22897,65 +11928,16550,29 +11929,402612,13 +11930,293271,79 +11931,158908,65 +11932,21587,65 +11933,115929,35 +11934,169343,82 +11935,2309,65 +11936,230179,18 +11937,42521,65 +11938,421365,2 +11939,2124,67 +11940,56292,33 +11941,358511,65 +11942,38766,65 +11943,178595,41 +11944,359746,31 +11945,55370,33 +11946,19912,65 +11947,11216,29 +11948,40127,76 +11949,128081,65 +11950,102629,41 +11951,367882,31 +11952,54022,29 +11953,31527,65 +11954,346723,67 +11955,4988,65 +11956,29101,16 +11957,129533,65 +11958,16176,29 +11959,25998,72 +11960,137315,33 +11961,13567,65 +11962,7343,100 +11963,77930,65 +11964,34840,33 +11965,201429,35 +11966,280840,41 +11967,19594,65 +11968,12236,65 +11969,10733,41 +11970,69717,35 +11971,42473,65 +11972,31598,65 +11973,173301,35 +11974,26593,41 +11975,100275,65 +11976,16047,8 +11977,82703,65 +11978,312831,65 +11979,8886,35 +11980,15527,65 +11981,858,65 +11982,29449,33 +11983,274127,65 +11984,369524,65 +11985,41949,65 +11986,31718,65 +11987,17566,101 +11988,103578,65 +11989,117499,18 +11990,137182,16 +11991,36355,65 +11992,43172,65 +11993,11232,33 +11994,13682,65 +11995,6964,65 +11996,28774,65 +11997,170689,100 +11998,33588,65 +11999,159142,65 +12000,404567,65 +12001,262357,65 +12002,82501,65 +12003,40863,72 +12004,86049,65 +12005,252059,79 +12006,31390,65 +12007,38965,65 +12008,39217,64 +12009,375170,32 +12010,54406,65 +12011,83229,29 +12012,36334,65 +12013,110392,65 +12014,66187,33 +12015,300321,65 +12016,40863,65 +12017,2204,65 +12018,295964,33 +12019,24739,65 +12020,320453,101 +12021,356294,65 +12022,63224,33 +12023,28110,65 +12024,44436,65 +12025,41131,67 +12026,32038,65 +12027,80988,2 +12028,65496,33 +12029,64398,65 +12030,9471,65 +12031,25430,65 +12032,139589,15 +12033,88273,65 +12034,29272,65 +12035,113175,65 +12036,356191,35 +12037,30385,65 +12038,31947,65 +12039,18088,65 +12040,44458,32 +12041,14609,41 +12042,180383,65 +12043,15086,33 +12044,79593,65 +12045,21566,64 +12046,400948,65 +12047,185289,65 +12048,448992,35 +12049,10834,35 +12050,41886,65 +12051,409,84 +12052,335498,65 +12053,98369,65 +12054,40562,65 +12055,1911,65 +12056,38221,101 +12057,21371,62 +12058,68174,35 +12059,1859,65 +12060,44545,65 +12061,13280,65 +12062,118444,65 +12063,866,65 +12064,164419,18 +12065,146243,65 +12066,25898,65 +12067,429174,82 +12068,49940,44 +12069,23512,65 +12070,184267,65 +12071,83430,19 +12072,70670,93 +12073,339362,65 +12074,120932,65 +12075,57737,65 +12076,249,65 +12077,22968,65 +12078,42441,29 +12079,10946,65 +12080,244971,32 +12081,17288,90 +12082,24199,16 +12083,34977,65 +12084,36258,65 +12085,18696,29 +12086,104674,65 +12087,8998,65 +12088,19403,65 +12089,126141,33 +12090,70666,100 +12091,87293,65 +12092,28366,72 +12093,32489,33 +12094,282268,41 +12095,398390,15 +12096,21519,100 +12097,259894,65 +12098,838,65 +12099,108812,65 +12100,1647,46 +12101,163,32 +12102,20287,65 +12103,266285,65 +12104,127424,41 +12105,28169,65 +12106,33916,67 +12107,32284,65 +12108,191322,65 +12109,7483,84 +12110,262786,29 +12111,53685,65 +12112,48243,65 +12113,48210,33 +12114,211,35 +12115,52440,33 +12116,10473,65 +12117,8325,65 +12118,20107,65 +12119,11654,65 +12120,2898,65 +12121,88518,65 +12122,10071,65 +12123,85350,65 +12124,97548,66 +12125,83754,31 +12126,88557,33 +12127,105576,33 +12128,257444,65 +12129,168994,101 +12130,293670,41 +12131,391618,41 +12132,297702,65 +12133,11570,65 +12134,346672,20 +12135,18899,33 +12136,271677,64 +12137,19819,65 +12138,266044,35 +12139,37238,41 +12140,38869,79 +12141,398786,28 +12142,19235,65 +12143,128557,29 +12144,12614,33 +12145,124517,65 +12146,814,65 +12147,21449,101 +12148,37451,29 +12149,16659,65 +12150,1165,65 +12151,153165,65 +12152,81188,65 +12153,144271,66 +12154,48202,65 +12155,17974,29 +12156,9528,79 +12157,380124,65 +12158,40130,29 +12159,70192,65 +12160,257088,65 +12161,52867,65 +12162,352890,65 +12163,344039,65 +12164,11370,65 +12165,378570,29 +12166,29492,100 +12167,86732,80 +12168,42416,29 +12169,35856,101 +12170,125229,101 +12171,244801,65 +12172,352025,33 +12173,13396,65 +12174,83788,82 +12175,270654,65 +12176,13946,65 +12177,2977,65 +12178,264525,41 +12179,10550,41 +12180,268920,65 +12181,14136,65 +12182,245226,65 +12183,40218,65 +12184,43833,65 +12185,27450,65 +12186,11853,65 +12187,354296,82 +12188,285848,41 +12189,20361,29 +12190,278095,82 +12191,368006,71 +12192,11338,65 +12193,99657,35 +12194,177566,65 +12195,42123,65 +12196,43913,65 +12197,1655,35 +12198,31907,65 +12199,204994,65 +12200,21379,33 +12201,210047,65 +12202,438597,82 +12203,53714,65 +12204,11321,65 +12205,86556,65 +12206,298584,65 +12207,146270,64 +12208,32143,65 +12209,691,29 +12210,51406,15 +12211,29117,65 +12212,25695,31 +12213,45514,65 +12214,68004,32 +12215,50350,29 +12216,123109,65 +12217,37939,101 +12218,12124,41 +12219,17893,41 +12220,41277,33 +12221,31672,29 +12222,239513,65 +12223,10622,72 +12224,7547,65 +12225,16186,65 +12226,56154,65 +12227,30644,65 +12228,346490,35 +12229,365447,65 +12230,49850,29 +12231,74879,90 +12232,15414,65 +12233,73896,65 +12234,31596,65 +12235,267955,65 +12236,199879,65 +12237,433082,35 +12238,139455,65 +12239,572,44 +12240,137683,65 +12241,70752,35 +12242,65131,82 +12243,323690,65 +12244,84184,65 +12245,4476,65 +12246,31118,65 +12247,27986,65 +12248,26323,65 +12249,24440,65 +12250,232100,65 +12251,336669,41 +12252,139519,41 +12253,11321,41 +12254,425591,65 +12255,217341,65 +12256,348673,77 +12257,4266,33 +12258,47683,2 +12259,295058,43 +12260,71866,65 +12261,14650,84 +12262,4921,29 +12263,370687,65 +12264,59961,65 +12265,6575,65 +12266,69266,65 +12267,128588,29 +12268,58878,101 +12269,47715,65 +12270,20623,64 +12271,147815,71 +12272,176143,65 +12273,12477,101 +12274,82501,33 +12275,13630,93 +12276,20174,65 +12277,11630,65 +12278,64944,33 +12279,409536,65 +12280,13505,65 +12281,329682,33 +12282,264393,101 +12283,20536,65 +12284,124501,65 +12285,267483,65 +12286,130900,65 +12287,8071,65 +12288,34193,65 +12289,255388,65 +12290,43022,65 +12291,43580,65 +12292,14011,65 +12293,40952,41 +12294,14126,65 +12295,333354,65 +12296,72013,101 +12297,321303,35 +12298,16366,65 +12299,402536,33 +12300,13614,82 +12301,63326,65 +12302,29538,64 +12303,321528,65 +12304,37590,2 +12305,28894,65 +12306,65718,29 +12307,135832,35 +12308,42837,35 +12309,57781,82 +12310,15267,65 +12311,239563,65 +12312,341957,65 +12313,14159,65 +12314,12106,65 +12315,616,101 +12316,78318,41 +12317,9568,29 +12318,49514,72 +12319,16455,33 +12320,41301,33 +12321,324670,65 +12322,458428,41 +12323,266102,65 +12324,9042,65 +12325,88557,101 +12326,303542,90 +12327,170689,33 +12328,15263,65 +12329,8588,33 +12330,56937,93 +12331,115276,65 +12332,14449,32 +12333,354859,53 +12334,204768,33 +12335,448538,65 +12336,276906,65 +12337,401222,65 +12338,102858,65 +12339,154972,16 +12340,23805,65 +12341,38792,13 +12342,83229,35 +12343,61799,29 +12344,108812,41 +12345,105210,80 +12346,187596,65 +12347,3782,101 +12348,11697,65 +12349,26736,65 +12350,21765,16 +12351,176,65 +12352,41496,35 +12353,10389,76 +12354,12154,33 +12355,405473,21 +12356,17978,65 +12357,37206,65 +12358,334890,65 +12359,109213,65 +12360,401164,65 +12361,267852,65 +12362,11584,65 +12363,16374,65 +12364,14164,65 +12365,67314,33 +12366,14539,32 +12367,64861,65 +12368,1991,65 +12369,2625,65 +12370,20825,65 +12371,301368,65 +12372,37702,72 +12373,44000,65 +12374,205584,65 +12375,18551,65 +12376,41967,27 +12377,5257,65 +12378,36758,29 +12379,104431,41 +12380,91380,33 +12381,80343,5 +12382,38765,65 +12383,18312,65 +12384,32825,65 +12385,382501,33 +12386,14804,35 +12387,86168,65 +12388,105584,41 +12389,193756,65 +12390,260030,103 +12391,329724,33 +12392,116303,101 +12393,330275,33 +12394,40387,65 +12395,116973,65 +12396,108048,33 +12397,42438,29 +12398,141955,65 +12399,186971,33 +12400,131689,65 +12401,9655,65 +12402,258751,41 +12403,23397,41 +12404,315362,44 +12405,136582,33 +12406,107593,65 +12407,97598,65 +12408,72431,33 +12409,80368,65 +12410,14787,65 +12411,53407,15 +12412,104810,82 +12413,21525,65 +12414,394822,65 +12415,186079,65 +12416,366692,65 +12417,23331,65 +12418,35404,65 +12419,9471,32 +12420,544,65 +12421,306598,31 +12422,86980,93 +12423,61225,65 +12424,14705,64 +12425,11175,65 +12426,12427,35 +12427,98864,65 +12428,33250,65 +12429,5915,8 +12430,159638,65 +12431,47003,65 +12432,352094,41 +12433,6166,35 +12434,21027,65 +12435,73043,101 +12436,37534,33 +12437,31306,82 +12438,101325,65 +12439,22901,65 +12440,39995,65 +12441,91607,65 +12442,3716,99 +12443,79645,65 +12444,292539,65 +12445,82929,65 +12446,8491,65 +12447,29475,29 +12448,17139,33 +12449,173739,100 +12450,42149,65 +12451,206657,44 +12452,293660,65 +12453,46026,33 +12454,142712,35 +12455,14569,65 +12456,172011,35 +12457,259395,65 +12458,34615,65 +12459,65839,82 +12460,42752,65 +12461,20527,101 +12462,14818,76 +12463,17875,65 +12464,84774,82 +12465,43688,65 +12466,9071,65 +12467,42093,33 +12468,12780,72 +12469,29345,65 +12470,25643,65 +12471,72648,65 +12472,12102,65 +12473,9585,46 +12474,363483,33 +12475,24432,65 +12476,430156,65 +12477,332872,41 +12478,38684,33 +12479,42987,65 +12480,90634,64 +12481,259292,65 +12482,52109,65 +12483,315057,18 +12484,130507,65 +12485,79778,65 +12486,5922,65 +12487,42852,65 +12488,18783,29 +12489,85628,67 +12490,21343,65 +12491,131739,101 +12492,94182,41 +12493,144680,65 +12494,13853,65 +12495,9503,80 +12496,47921,65 +12497,10863,65 +12498,210940,65 +12499,49943,82 +12500,4254,35 +12501,354667,98 +12502,76411,65 +12503,203539,35 +12504,48962,100 +12505,29471,35 +12506,98277,82 +12507,43855,65 +12508,393939,65 +12509,15303,103 +12510,67669,65 +12511,8276,33 +12512,420648,35 +12513,330381,13 +12514,112531,84 +12515,13519,65 +12516,233490,65 +12517,155605,101 +12518,41160,65 +12519,298158,65 +12520,390357,33 +12521,32331,65 +12522,42267,65 +12523,298931,65 +12524,285860,65 +12525,16436,29 +12526,4307,41 +12527,1554,65 +12528,127614,18 +12529,51357,65 +12530,385261,31 +12531,282070,101 +12532,194853,100 +12533,57775,82 +12534,277839,33 +12535,13483,65 +12536,49941,35 +12537,63315,35 +12538,140825,65 +12539,102305,41 +12540,304372,65 +12541,30554,65 +12542,376716,82 +12543,811,35 +12544,74674,8 +12545,6171,65 +12546,2984,65 +12547,124157,32 +12548,139826,65 +12549,109391,65 +12550,4825,65 +12551,53178,65 +12552,439050,46 +12553,146926,65 +12554,66967,33 +12555,38021,33 +12556,288193,65 +12557,45227,82 +12558,99846,65 +12559,124625,65 +12560,455043,32 +12561,105833,29 +12562,49853,20 +12563,76821,33 +12564,335509,35 +12565,266433,65 +12566,63178,29 +12567,68023,33 +12568,36992,101 +12569,34128,65 +12570,74585,29 +12571,949,65 +12572,222030,41 +12573,17906,65 +12574,791,29 +12575,64850,33 +12576,258251,65 +12577,167221,29 +12578,9836,65 +12579,88042,65 +12580,27989,65 +12581,47653,29 +12582,52454,65 +12583,103215,65 +12584,3023,65 +12585,8292,65 +12586,63538,82 +12587,29101,33 +12588,4982,65 +12589,98066,65 +12590,10047,65 +12591,49322,18 +12592,9958,65 +12593,44890,65 +12594,160261,64 +12595,119374,100 +12596,199644,67 +12597,43250,65 +12598,81687,33 +12599,106135,65 +12600,14815,84 +12601,238705,29 +12602,412209,65 +12603,133160,101 +12604,108391,65 +12605,15907,65 +12606,51476,65 +12607,10087,65 +12608,13483,101 +12609,191112,65 +12610,40087,65 +12611,393407,33 +12612,335872,65 +12613,30061,65 +12614,2486,65 +12615,15943,35 +12616,200481,15 +12617,92809,65 +12618,8617,65 +12619,14979,82 +12620,44902,65 +12621,9314,65 +12622,221667,33 +12623,148408,29 +12624,705,65 +12625,744,65 +12626,86472,29 +12627,40633,65 +12628,44754,65 +12629,25403,32 +12630,8985,8 +12631,1926,66 +12632,1595,65 +12633,57965,29 +12634,44641,29 +12635,64465,29 +12636,16358,65 +12637,29338,41 +12638,55989,65 +12639,215875,65 +12640,341007,7 +12641,33314,33 +12642,20646,101 +12643,408381,65 +12644,253251,65 +12645,226968,65 +12646,409550,101 +12647,28062,44 +12648,247354,65 +12649,38916,65 +12650,32604,33 +12651,399790,65 +12652,62463,65 +12653,278632,65 +12654,15486,65 +12655,7445,33 +12656,35263,35 +12657,18015,65 +12658,83718,65 +12659,25603,65 +12660,455601,65 +12661,85778,65 +12662,312138,33 +12663,33511,65 +12664,42231,65 +12665,65044,32 +12666,18585,101 +12667,21629,65 +12668,322518,65 +12669,24916,72 +12670,260584,82 +12671,10053,65 +12672,121823,65 +12673,2034,65 +12674,1813,65 +12675,27085,65 +12676,104644,65 +12677,390409,65 +12678,190940,91 +12679,3102,82 +12680,194,82 +12681,30374,65 +12682,13596,65 +12683,68752,65 +12684,11380,65 +12685,30641,65 +12686,27834,65 +12687,32600,65 +12688,58391,18 +12689,2757,65 +12690,328111,65 +12691,324930,65 +12692,33336,65 +12693,128841,65 +12694,6183,35 +12695,55784,35 +12696,43434,33 +12697,189364,41 +12698,1956,65 +12699,407,90 +12700,240832,33 +12701,57419,33 +12702,31262,33 +12703,11103,65 +12704,88390,65 +12705,31275,65 +12706,17457,72 +12707,4983,65 +12708,142012,65 +12709,74103,33 +12710,8088,65 +12711,53851,65 +12712,98557,65 +12713,2204,35 +12714,145247,44 +12715,10303,65 +12716,2125,65 +12717,83761,46 +12718,113520,65 +12719,347258,65 +12720,210609,65 +12721,245700,65 +12722,38060,65 +12723,11704,65 +12724,34723,82 +12725,84942,65 +12726,19545,101 +12727,327083,65 +12728,52655,65 +12729,9890,65 +12730,52991,65 +12731,22387,65 +12732,73872,29 +12733,287603,65 +12734,39331,79 +12735,291270,65 +12736,148435,18 +12737,192558,64 +12738,266741,65 +12739,19150,65 +12740,371818,41 +12741,129115,41 +12742,374473,65 +12743,1907,44 +12744,9474,29 +12745,40081,32 +12746,15916,101 +12747,43875,65 +12748,32043,65 +12749,32166,65 +12750,66584,33 +12751,87826,65 +12752,13369,35 +12753,43346,65 +12754,48209,35 +12755,5928,65 +12756,159514,35 +12757,20704,65 +12758,407,99 +12759,182349,65 +12760,24170,33 +12761,349441,33 +12762,340190,65 +12763,118134,65 +12764,52696,64 +12765,147360,35 +12766,264646,65 +12767,388764,32 +12768,51739,101 +12769,183662,65 +12770,30993,65 +12771,4375,65 +12772,17771,33 +12773,26422,32 +12774,27935,82 +12775,28805,64 +12776,314011,65 +12777,38579,65 +12778,355111,65 +12779,54814,64 +12780,13440,65 +12781,38356,65 +12782,127762,15 +12783,48131,65 +12784,12636,101 +12785,400668,65 +12786,29542,65 +12787,261274,15 +12788,31161,101 +12789,84233,65 +12790,15086,65 +12791,83714,65 +12792,199851,41 +12793,394645,16 +12794,64605,33 +12795,8942,65 +12796,89008,65 +12797,35564,65 +12798,25518,33 +12799,52661,65 +12800,255948,33 +12801,157178,79 +12802,41497,65 +12803,8340,104 +12804,255647,103 +12805,10796,65 +12806,353326,65 +12807,60599,65 +12808,15761,64 +12809,32099,18 +12810,131903,65 +12811,283489,65 +12812,75336,13 +12813,66247,71 +12814,74,65 +12815,24963,65 +12816,371153,90 +12817,63838,82 +12818,54559,33 +12819,18977,65 +12820,11354,65 +12821,45184,65 +12822,35405,65 +12823,30175,65 +12824,1647,82 +12825,47241,35 +12826,72431,65 +12827,2349,35 +12828,398289,65 +12829,81475,65 +12830,262713,44 +12831,69775,65 +12832,25468,65 +12833,155325,79 +12834,48627,33 +12835,33112,65 +12836,66247,28 +12837,300669,14 +12838,36421,65 +12839,62567,65 +12840,49007,65 +12841,23692,65 +12842,88818,65 +12843,345438,16 +12844,41963,65 +12845,62143,65 +12846,18783,35 +12847,14210,65 +12848,80276,47 +12849,331161,65 +12850,371645,65 +12851,100814,65 +12852,353595,65 +12853,378485,41 +12854,382995,65 +12855,46924,30 +12856,79644,65 +12857,120109,65 +12858,18826,65 +12859,72822,33 +12860,43641,65 +12861,73600,65 +12862,86600,35 +12863,334538,65 +12864,21181,65 +12865,109886,65 +12866,290379,65 +12867,109614,65 +12868,18381,33 +12869,120615,65 +12870,1899,32 +12871,20424,65 +12872,17008,35 +12873,42093,65 +12874,321303,48 +12875,29048,33 +12876,11545,80 +12877,79707,101 +12878,121936,65 +12879,19274,72 +12880,125264,101 +12881,25450,65 +12882,7515,65 +12883,146238,65 +12884,6069,65 +12885,42345,65 +12886,361750,65 +12887,121674,65 +12888,48144,32 +12889,177155,45 +12890,39057,101 +12891,79816,35 +12892,20715,65 +12893,31911,65 +12894,173177,29 +12895,87953,32 +12896,21581,33 +12897,97110,100 +12898,269306,44 +12899,14510,65 +12900,10986,29 +12901,11134,72 +12902,405473,65 +12903,28761,65 +12904,214909,33 +12905,130055,33 +12906,27637,35 +12907,9624,67 +12908,409,35 +12909,43670,65 +12910,55853,33 +12911,193610,65 +12912,93863,29 +12913,10837,65 +12914,65055,100 +12915,16442,65 +12916,4913,33 +12917,16436,35 +12918,172897,65 +12919,9882,41 +12920,15934,65 +12921,11421,33 +12922,21325,101 +12923,295627,65 +12924,44641,65 +12925,13827,65 +12926,254575,65 +12927,11358,65 +12928,26358,65 +12929,200511,65 +12930,259183,65 +12931,39308,65 +12932,41378,72 +12933,16907,101 +12934,39102,65 +12935,33102,65 +12936,28280,35 +12937,22477,65 +12938,43526,65 +12939,85265,107 +12940,351043,65 +12941,64202,65 +12942,42678,65 +12943,20825,79 +12944,48763,90 +12945,333091,65 +12946,222715,101 +12947,19506,101 +12948,282762,65 +12949,6068,76 +12950,76397,41 +12951,310119,65 +12952,73551,65 +12953,37932,65 +12954,246417,82 +12955,8584,65 +12956,391995,65 +12957,120,65 +12958,293670,31 +12959,429238,35 +12960,120528,65 +12961,55448,65 +12962,188392,65 +12963,44463,65 +12964,86718,71 +12965,43256,65 +12966,332788,90 +12967,53619,65 +12968,337879,65 +12969,282762,2 +12970,74437,65 +12971,1640,32 +12972,104859,33 +12973,43741,13 +12974,315335,35 +12975,39013,65 +12976,42706,65 +12977,226269,65 +12978,38769,33 +12979,82696,65 +12980,420481,82 +12981,227262,35 +12982,55604,65 +12983,44751,16 +12984,284117,16 +12985,185564,65 +12986,332979,33 +12987,80648,65 +12988,28261,65 +12989,441728,65 +12990,76264,65 +12991,26949,29 +12992,73984,13 +12993,286567,65 +12994,115023,35 +12995,33563,29 +12996,75363,65 +12997,430985,65 +12998,1561,33 +12999,13519,29 +13000,35284,29 +13001,21371,65 +13002,142150,65 +13003,3563,65 +13004,58074,29 +13005,62046,65 +13006,9514,35 +13007,28417,16 +13008,124057,65 +13009,29376,33 +13010,11777,65 +13011,364833,48 +13012,150056,35 +13013,244786,65 +13014,65002,84 +13015,2323,65 +13016,37570,90 +13017,261112,93 +13018,65211,65 +13019,52827,65 +13020,32594,92 +13021,20372,93 +13022,271919,33 +13023,32085,65 +13024,41611,41 +13025,49787,65 +13026,35016,16 +13027,25977,65 +13028,13889,65 +13029,184741,65 +13030,274483,33 +13031,130993,65 +13032,209406,65 +13033,13979,65 +13034,46190,65 +13035,3716,40 +13036,366631,65 +13037,9076,35 +13038,124821,65 +13039,300,41 +13040,220674,65 +13041,15213,65 +13042,226936,29 +13043,68752,82 +13044,136743,65 +13045,10915,29 +13046,1924,65 +13047,39195,65 +13048,27091,65 +13049,18801,65 +13050,4820,65 +13051,59735,41 +13052,19371,65 +13053,63139,65 +13054,283384,65 +13055,81223,79 +13056,43141,65 +13057,66292,64 +13058,114155,65 +13059,338309,32 +13060,92769,65 +13061,210079,43 +13062,159185,32 +13063,329865,82 +13064,81600,16 +13065,13390,65 +13066,74689,33 +13067,79008,65 +13068,218329,65 +13069,9475,65 +13070,10204,33 +13071,413198,32 +13072,297265,65 +13073,25074,72 +13074,229182,65 +13075,125736,65 +13076,11960,72 +13077,25520,33 +13078,8672,41 +13079,72655,33 +13080,261101,65 +13081,39130,65 +13082,70747,41 +13083,15144,65 +13084,7229,33 +13085,52959,65 +13086,5924,41 +13087,408024,33 +13088,229559,41 +13089,127329,33 +13090,28820,65 +13091,322317,82 +13092,99188,101 +13093,141015,41 +13094,19719,65 +13095,199155,65 +13096,308,65 +13097,764,65 +13098,254446,65 +13099,318553,65 +13100,17895,29 +13101,41441,31 +13102,613,35 +13103,54715,65 +13104,361050,65 +13105,9406,65 +13106,16162,65 +13107,271234,82 +13108,53931,65 +13109,24266,65 +13110,58903,65 +13111,79836,29 +13112,7096,35 +13113,70988,71 +13114,11545,41 +13115,329865,32 +13116,11101,82 +13117,230179,65 +13118,30127,100 +13119,29398,65 +13120,9893,65 +13121,289191,65 +13122,49038,65 +13123,33336,35 +13124,105231,101 +13125,37978,103 +13126,19398,16 +13127,239562,65 +13128,16137,33 +13129,63505,65 +13130,170759,35 +13131,134750,65 +13132,50318,65 +13133,124202,29 +13134,42472,65 +13135,34127,65 +13136,236737,41 +13137,31561,65 +13138,62967,65 +13139,419601,82 +13140,10708,65 +13141,103732,65 +13142,228290,29 +13143,173301,33 +13144,1818,33 +13145,1813,35 +13146,269,65 +13147,42093,35 +13148,286267,18 +13149,20880,65 +13150,13539,65 +13151,39103,101 +13152,1427,65 +13153,327528,65 +13154,302699,65 +13155,48243,79 +13156,77292,65 +13157,310133,65 +13158,15674,65 +13159,39053,79 +13160,20718,41 +13161,271234,29 +13162,112973,65 +13163,16314,35 +13164,53853,65 +13165,42553,65 +13166,25425,72 +13167,291,65 +13168,113743,65 +13169,12528,65 +13170,232739,100 +13171,42537,65 +13172,30995,65 +13173,46943,65 +13174,273743,65 +13175,33407,93 +13176,242097,65 +13177,252680,65 +13178,72753,65 +13179,197057,82 +13180,197583,33 +13181,253257,65 +13182,189682,15 +13183,121640,66 +13184,265563,41 +13185,10603,65 +13186,55435,101 +13187,12205,101 +13188,41073,65 +13189,51947,65 +13190,23207,65 +13191,21191,79 +13192,289,35 +13193,13739,33 +13194,53865,65 +13195,228198,100 +13196,52072,90 +13197,41645,65 +13198,26656,65 +13199,98289,65 +13200,53150,65 +13201,87204,93 +13202,31304,44 +13203,1116,80 +13204,128946,44 +13205,1421,33 +13206,50526,79 +13207,42599,33 +13208,301566,65 +13209,28384,65 +13210,218772,29 +13211,21041,65 +13212,158750,33 +13213,152532,101 +13214,16080,79 +13215,77117,31 +13216,11017,65 +13217,426264,65 +13218,45069,65 +13219,227306,65 +13220,52556,104 +13221,14834,33 +13222,30690,65 +13223,65456,65 +13224,27832,65 +13225,14301,65 +13226,186759,65 +13227,55236,35 +13228,70667,44 +13229,20963,82 +13230,14053,65 +13231,50086,76 +13232,13911,65 +13233,96238,65 +13234,74919,79 +13235,14552,65 +13236,426903,15 +13237,10590,65 +13238,84340,65 +13239,15036,65 +13240,39840,92 +13241,50506,65 +13242,32338,65 +13243,2998,65 +13244,44641,41 +13245,389614,44 +13246,11655,65 +13247,28303,65 +13248,18442,65 +13249,69404,71 +13250,8897,33 +13251,46586,65 +13252,382125,78 +13253,44960,65 +13254,17796,65 +13255,9900,100 +13256,9516,65 +13257,121598,65 +13258,198600,65 +13259,145162,65 +13260,31413,90 +13261,291865,65 +13262,26686,65 +13263,257574,65 +13264,20296,64 +13265,329243,65 +13266,64942,66 +13267,40458,65 +13268,31059,82 +13269,11337,65 +13270,12276,32 +13271,140883,64 +13272,86718,65 +13273,11706,82 +13274,868,58 +13275,79871,72 +13276,53358,65 +13277,29698,65 +13278,8672,65 +13279,94365,65 +13280,11593,13 +13281,40029,8 +13282,333663,16 +13283,78571,65 +13284,39324,101 +13285,28597,100 +13286,1164,101 +13287,13519,33 +13288,8844,33 +13289,864,35 +13290,87936,65 +13291,10761,82 +13292,41551,65 +13293,332662,65 +13294,12237,65 +13295,137217,65 +13296,52850,65 +13297,11362,65 +13298,18414,65 +13299,375012,46 +13300,103875,32 +13301,16666,65 +13302,67367,33 +13303,55190,65 +13304,46930,48 +13305,76465,65 +13306,300690,65 +13307,16996,65 +13308,339342,65 +13309,43923,65 +13310,54548,35 +13311,128842,32 +13312,82708,48 +13313,277631,65 +13314,32044,65 +13315,1278,65 +13316,39347,65 +13317,16612,15 +13318,253192,82 +13319,254007,35 +13320,169355,65 +13321,47536,65 +13322,71672,65 +13323,54236,41 +13324,29272,29 +13325,2611,65 +13326,13960,65 +13327,31773,65 +13328,124680,88 +13329,21060,65 +13330,41468,65 +13331,262987,29 +13332,26378,65 +13333,19621,65 +13334,80280,54 +13335,85549,41 +13336,162382,29 +13337,46059,67 +13338,113882,65 +13339,101006,41 +13340,15472,44 +13341,172785,65 +13342,30929,65 +13343,74510,65 +13344,47540,65 +13345,89462,101 +13346,62728,65 +13347,67377,65 +13348,82430,65 +13349,5915,65 +13350,44540,65 +13351,28519,65 +13352,2021,65 +13353,80032,65 +13354,4938,65 +13355,66178,65 +13356,18189,65 +13357,197177,29 +13358,39545,65 +13359,55700,100 +13360,20674,65 +13361,598,100 +13362,86732,65 +13363,57011,101 +13364,44716,82 +13365,322614,36 +13366,150223,42 +13367,24918,82 +13368,10890,79 +13369,4338,65 +13370,19482,31 +13371,53862,65 +13372,2105,65 +13373,94055,65 +13374,113255,35 +13375,74314,65 +13376,81538,66 +13377,43434,101 +13378,156597,65 +13379,2760,65 +13380,8930,33 +13381,19501,65 +13382,36615,32 +13383,33789,65 +13384,21626,65 +13385,3035,65 +13386,11472,65 +13387,270336,90 +13388,362045,64 +13389,393263,65 +13390,7234,65 +13391,182843,29 +13392,19850,65 +13393,40562,41 +13394,222858,65 +13395,1247,65 +13396,81538,35 +13397,17136,65 +13398,32720,33 +13399,241140,35 +13400,11943,65 +13401,199615,13 +13402,128900,44 +13403,28482,41 +13404,18694,65 +13405,46915,65 +13406,143068,82 +13407,78323,82 +13408,16652,65 +13409,30666,65 +13410,441881,64 +13411,9010,35 +13412,63775,33 +13413,40060,65 +13414,371741,65 +13415,18665,72 +13416,84284,65 +13417,10467,65 +13418,19794,65 +13419,3173,76 +13420,114348,65 +13421,17044,65 +13422,103012,64 +13423,50647,65 +13424,139519,65 +13425,98355,65 +13426,85200,65 +13427,16378,65 +13428,114503,65 +13429,7980,65 +13430,755,41 +13431,82999,41 +13432,29444,65 +13433,27629,65 +13434,112991,65 +13435,384737,65 +13436,155341,65 +13437,156627,79 +13438,149509,65 +13439,40346,72 +13440,20916,64 +13441,53206,90 +13442,6933,65 +13443,86520,101 +13444,72215,82 +13445,18595,65 +13446,208173,41 +13447,26983,65 +13448,16643,65 +13449,40029,101 +13450,72611,82 +13451,88922,32 +13452,244575,82 +13453,19166,33 +13454,15022,67 +13455,245019,65 +13456,295723,65 +13457,32235,65 +13458,197624,65 +13459,124680,101 +13460,11104,65 +13461,121640,84 +13462,227975,35 +13463,118257,100 +13464,211233,18 +13465,10534,8 +13466,1480,65 +13467,8985,22 +13468,135686,65 +13469,36797,65 +13470,11886,65 +13471,8852,80 +13472,76312,8 +13473,245597,31 +13474,64736,82 +13475,62297,65 +13476,124414,57 +13477,64882,31 +13478,291155,65 +13479,237214,91 +13480,23319,65 +13481,76681,65 +13482,34181,8 +13483,19989,65 +13484,29786,65 +13485,183962,33 +13486,4923,65 +13487,377170,65 +13488,67102,79 +13489,75137,82 +13490,305455,33 +13491,11688,65 +13492,79113,33 +13493,103597,41 +13494,88059,18 +13495,116463,65 +13496,288526,2 +13497,219233,101 +13498,257214,65 +13499,46149,101 +13500,40850,65 +13501,235092,65 +13502,345176,65 +13503,17845,16 +13504,108648,101 +13505,49418,82 +13506,105884,29 +13507,39102,101 +13508,159166,65 +13509,238792,65 +13510,253612,65 +13511,258384,33 +13512,41166,65 +13513,92349,65 +13514,14207,80 +13515,125413,65 +13516,95037,65 +13517,24392,65 +13518,2102,65 +13519,101376,46 +13520,214756,65 +13521,38389,65 +13522,55784,65 +13523,49963,65 +13524,300187,33 +13525,116904,65 +13526,26811,65 +13527,222461,65 +13528,17467,72 +13529,37958,2 +13530,19181,35 +13531,49762,65 +13532,21567,64 +13533,18334,101 +13534,83229,100 +13535,168031,33 +13536,12255,65 +13537,32489,13 +13538,219466,65 +13539,1640,31 +13540,4253,64 +13541,4538,94 +13542,38362,13 +13543,21138,65 +13544,12638,65 +13545,69019,65 +13546,206563,65 +13547,57412,33 +13548,17711,82 +13549,18283,41 +13550,82495,33 +13551,166886,9 +13552,9289,65 +13553,460135,65 +13554,395914,82 +13555,25701,65 +13556,242033,65 +13557,115290,65 +13558,27358,65 +13559,33489,33 +13560,16239,65 +13561,56369,29 +13562,43364,101 +13563,72545,65 +13564,270007,67 +13565,384682,65 +13566,247500,33 +13567,1374,65 +13568,304336,65 +13569,70133,13 +13570,325385,65 +13571,45219,65 +13572,18333,44 +13573,49277,15 +13574,169298,41 +13575,167556,65 +13576,103758,29 +13577,55735,65 +13578,99567,65 +13579,51763,65 +13580,10992,65 +13581,121354,65 +13582,48627,65 +13583,315723,65 +13584,14262,65 +13585,208436,57 +13586,369245,29 +13587,21956,65 +13588,224813,18 +13589,174720,82 +13590,225503,15 +13591,9987,65 +13592,1418,41 +13593,131822,18 +13594,422550,65 +13595,364088,65 +13596,240745,65 +13597,3574,65 +13598,29872,65 +13599,26851,65 +13600,53256,65 +13601,40217,65 +13602,469172,33 +13603,38448,65 +13604,43792,65 +13605,10406,33 +13606,104471,15 +13607,39415,33 +13608,68097,65 +13609,99579,29 +13610,52047,101 +13611,95136,65 +13612,11859,41 +13613,26881,65 +13614,281590,65 +13615,9951,65 +13616,11535,31 +13617,2143,65 +13618,128120,100 +13619,28071,41 +13620,14644,33 +13621,469,13 +13622,54287,65 +13623,9819,41 +13624,73969,65 +13625,78281,33 +13626,332979,65 +13627,8471,82 +13628,336050,2 +13629,128284,15 +13630,55505,65 +13631,93350,65 +13632,32921,65 +13633,11259,65 +13634,248747,82 +13635,44936,65 +13636,22881,65 +13637,43751,35 +13638,90034,33 +13639,2613,16 +13640,53472,65 +13641,42571,29 +13642,82519,65 +13643,27703,29 +13644,11589,33 +13645,11839,65 +13646,169721,65 +13647,299828,32 +13648,35396,2 +13649,86970,65 +13650,158990,65 +13651,28938,35 +13652,10275,72 +13653,204965,35 +13654,34944,65 +13655,121173,107 +13656,38417,65 +13657,43379,29 +13658,111836,47 +13659,346170,35 +13660,91715,65 +13661,47959,65 +13662,325690,29 +13663,355890,65 +13664,28712,65 +13665,791,13 +13666,22328,65 +13667,7454,65 +13668,79775,65 +13669,31867,65 +13670,7299,65 +13671,79869,65 +13672,69717,65 +13673,169881,65 +13674,40859,100 +13675,54752,65 +13676,238204,46 +13677,15849,33 +13678,39413,33 +13679,127144,65 +13680,35790,65 +13681,37462,65 +13682,47426,100 +13683,422603,28 +13684,321039,65 +13685,407887,31 +13686,29343,35 +13687,57654,26 +13688,376188,82 +13689,31439,32 +13690,15712,104 +13691,72199,82 +13692,32091,65 +13693,64868,65 +13694,36971,41 +13695,77915,65 +13696,284296,65 +13697,52188,90 +13698,63584,82 +13699,152736,65 +13700,342917,65 +13701,43367,65 +13702,29136,65 +13703,1813,29 +13704,92298,65 +13705,238593,65 +13706,18,44 +13707,107445,65 +13708,51276,82 +13709,4641,65 +13710,32059,65 +13711,42066,65 +13712,7454,35 +13713,282024,82 +13714,104931,82 +13715,82098,33 +13716,48412,65 +13717,31411,65 +13718,1294,35 +13719,53367,65 +13720,64568,65 +13721,58928,33 +13722,42182,65 +13723,105763,33 +13724,43489,65 +13725,21062,33 +13726,12079,65 +13727,15689,65 +13728,10274,29 +13729,364111,101 +13730,11535,33 +13731,69035,41 +13732,229304,31 +13733,16023,65 +13734,9841,65 +13735,76163,65 +13736,326045,65 +13737,455363,65 +13738,14226,101 +13739,49843,65 +13740,42542,65 +13741,144792,65 +13742,59962,65 +13743,199647,65 +13744,131475,79 +13745,10400,65 +13746,158967,65 +13747,51044,65 +13748,12158,65 +13749,33364,65 +13750,50849,13 +13751,56143,65 +13752,17216,35 +13753,62522,65 +13754,55167,18 +13755,343795,65 +13756,197,33 +13757,407806,65 +13758,70086,65 +13759,42021,65 +13760,218443,82 +13761,49013,29 +13762,63486,101 +13763,41762,65 +13764,259,33 +13765,1976,33 +13766,428355,65 +13767,11159,65 +13768,32489,29 +13769,9736,33 +13770,16550,65 +13771,77859,101 +13772,73981,65 +13773,138502,33 +13774,67,84 +13775,27503,65 +13776,15776,8 +13777,4291,101 +13778,1640,46 +13779,119801,65 +13780,81937,65 +13781,174769,65 +13782,8985,65 +13783,329289,65 +13784,38237,65 +13785,56304,82 +13786,41996,65 +13787,11618,65 +13788,9611,13 +13789,18333,93 +13790,57419,40 +13791,98582,41 +13792,24584,65 +13793,106573,65 +13794,203833,65 +13795,19995,41 +13796,117869,41 +13797,47119,33 +13798,14286,84 +13799,41574,65 +13800,417489,33 +13801,26293,65 +13802,98582,35 +13803,9746,32 +13804,45213,33 +13805,18512,65 +13806,20120,65 +13807,16351,33 +13808,86732,13 +13809,82716,67 +13810,8341,94 +13811,12599,65 +13812,23048,65 +13813,127391,15 +13814,287233,65 +13815,41142,18 +13816,117212,101 +13817,34630,35 +13818,27973,65 +13819,355008,65 +13820,82626,65 +13821,46773,107 +13822,13827,79 +13823,22779,65 +13824,108712,100 +13825,43209,32 +13826,359746,41 +13827,354287,65 +13828,28437,65 +13829,37700,27 +13830,255913,33 +13831,105077,65 +13832,59507,33 +13833,678,65 +13834,279096,65 +13835,21208,65 +13836,38783,65 +13837,42122,65 +13838,2640,65 +13839,315872,29 +13840,11692,65 +13841,78285,33 +13842,152113,65 +13843,10406,65 +13844,8970,65 +13845,248376,32 +13846,84848,41 +13847,80280,41 +13848,2428,65 +13849,272072,65 +13850,36751,65 +13851,173499,65 +13852,63340,65 +13853,49258,101 +13854,368342,35 +13855,15148,65 +13856,72574,100 +13857,13312,33 +13858,353464,64 +13859,11902,103 +13860,121923,65 +13861,72057,29 +13862,315256,64 +13863,36288,65 +13864,267481,82 +13865,89481,65 +13866,39024,5 +13867,228968,35 +13868,46738,84 +13869,10004,65 +13870,115616,65 +13871,94468,65 +13872,416635,48 +13873,18446,65 +13874,33280,8 +13875,44104,29 +13876,40028,65 +13877,22307,65 +13878,45273,65 +13879,272878,65 +13880,13042,65 +13881,327,101 +13882,30411,65 +13883,38625,101 +13884,12591,79 +13885,3064,65 +13886,244182,65 +13887,45441,101 +13888,322,65 +13889,202239,82 +13890,431093,41 +13891,37451,32 +13892,157354,65 +13893,125490,65 +13894,210487,79 +13895,8985,18 +13896,56150,13 +13897,284250,90 +13898,264061,65 +13899,100528,65 +13900,201749,33 +13901,84493,65 +13902,244539,65 +13903,28668,65 +13904,204712,35 +13905,338438,29 +13906,36334,35 +13907,20359,64 +13908,293082,65 +13909,107916,41 +13910,71670,79 +13911,25366,65 +13912,116894,65 +13913,14050,65 +13914,49853,35 +13915,314389,64 +13916,121791,66 +13917,352025,65 +13918,20983,33 +13919,369883,100 +13920,202662,13 +13921,64968,33 +13922,255160,103 +13923,13929,65 +13924,124527,65 +13925,120457,29 +13926,161073,33 +13927,41805,33 +13928,19936,35 +13929,86297,65 +13930,83201,44 +13931,3028,65 +13932,239103,66 +13933,80941,65 +13934,43434,35 +13935,43340,65 +13936,43900,33 +13937,382873,56 +13938,49074,71 +13939,44690,65 +13940,341886,65 +13941,10865,33 +13942,42346,16 +13943,83361,65 +13944,55720,65 +13945,29239,65 +13946,37429,90 +13947,55725,65 +13948,261246,65 +13949,45336,41 +13950,40693,65 +13951,315837,101 +13952,11959,65 +13953,284135,31 +13954,329206,32 +13955,13092,65 +13956,155941,31 +13957,228339,2 +13958,42664,65 +13959,55756,18 +13960,136743,103 +13961,94352,65 +13962,62039,65 +13963,24559,65 +13964,336050,33 +13965,26574,65 +13966,83354,65 +13967,340215,65 +13968,31048,13 +13969,37301,65 +13970,26366,65 +13971,121823,32 +13972,52034,65 +13973,2963,15 +13974,98582,33 +13975,1810,29 +13976,3701,29 +13977,24331,65 +13978,75315,65 +13979,103332,33 +13980,78572,33 +13981,147903,65 +13982,327,29 +13983,97762,65 +13984,29146,65 +13985,19754,65 +13986,32604,65 +13987,149154,82 +13988,396152,65 +13989,116439,65 +13990,76533,65 +13991,64393,82 +13992,49521,65 +13993,294652,65 +13994,2675,65 +13995,69784,65 +13996,41298,41 +13997,18387,65 +13998,61151,65 +13999,91571,33 +14000,418072,41 +14001,63281,82 +14002,1726,46 +14003,86820,65 +14004,252171,46 +14005,20640,65 +14006,52360,65 +14007,30959,101 +14008,28997,65 +14009,43195,35 +14010,264555,65 +14011,197583,65 +14012,39907,76 +14013,29260,65 +14014,31003,41 +14015,30669,65 +14016,40229,65 +14017,74465,65 +14018,975,65 +14019,29787,65 +14020,38433,65 +14021,55152,65 +14022,4921,16 +14023,133121,65 +14024,66125,65 +14025,333367,65 +14026,14400,103 +14027,58159,65 +14028,11576,65 +14029,82708,35 +14030,37600,16 +14031,28063,29 +14032,241930,65 +14033,51362,65 +14034,61341,65 +14035,15909,65 +14036,209263,65 +14037,26809,65 +14038,142507,65 +14039,15749,82 +14040,141241,92 +14041,26298,84 +14042,59678,65 +14043,50123,65 +14044,9352,33 +14045,129229,82 +14046,427095,16 +14047,21959,101 +14048,74922,79 +14049,14753,101 +14050,8470,41 +14051,24589,65 +14052,111605,65 +14053,92391,65 +14054,59961,85 +14055,319396,65 +14056,33557,65 +14057,213095,29 +14058,456101,65 +14059,30806,65 +14060,73642,65 +14061,1907,65 +14062,45514,33 +14063,8847,65 +14064,19587,65 +14065,17473,65 +14066,45324,33 +14067,11247,67 +14068,44661,65 +14069,61314,29 +14070,212156,101 +14071,29111,33 +14072,81409,29 +14073,273096,101 +14074,68721,65 +14075,374475,65 +14076,42251,65 +14077,47112,65 +14078,31977,65 +14079,105981,65 +14080,308174,35 +14081,298522,65 +14082,180644,41 +14083,61113,65 +14084,220976,65 +14085,255528,15 +14086,31977,64 +14087,193959,65 +14088,458618,65 +14089,215579,65 +14090,77825,32 +14091,25373,65 +14092,93858,100 +14093,147106,65 +14094,29067,65 +14095,292387,33 +14096,10889,41 +14097,257534,82 +14098,62731,82 +14099,182415,29 +14100,6877,65 +14101,311301,35 +14102,9966,65 +14103,266373,65 +14104,11832,44 +14105,131932,41 +14106,289198,41 +14107,2454,65 +14108,18585,65 +14109,309879,65 +14110,160160,33 +14111,16899,65 +14112,40085,41 +14113,266285,8 +14114,2721,33 +14115,153652,65 +14116,13586,65 +14117,77794,65 +14118,2110,82 +14119,285245,44 +14120,11045,65 +14121,37686,65 +14122,393407,29 +14123,482,65 +14124,50186,82 +14125,68637,33 +14126,2887,65 +14127,29161,29 +14128,98631,101 +14129,300596,41 +14130,40490,65 +14131,47638,65 +14132,359413,33 +14133,35569,65 +14134,31146,65 +14135,20438,65 +14136,226140,65 +14137,187252,33 +14138,137614,54 +14139,10692,65 +14140,1550,32 +14141,37126,65 +14142,149868,18 +14143,43457,65 +14144,85052,64 +14145,11134,76 +14146,140648,65 +14147,43783,65 +14148,340053,65 +14149,13689,65 +14150,37731,65 +14151,42307,65 +14152,5425,29 +14153,12135,16 +14154,105965,65 +14155,361018,65 +14156,79221,79 +14157,9294,65 +14158,339408,65 +14159,280092,65 +14160,44502,65 +14161,96106,29 +14162,21736,65 +14163,210079,29 +14164,40205,65 +14165,24795,65 +14166,219781,18 +14167,17175,65 +14168,332283,65 +14169,20126,29 +14170,52782,15 +14171,395883,65 +14172,11830,101 +14173,29212,65 +14174,222619,65 +14175,172,65 +14176,9059,65 +14177,10872,65 +14178,65674,33 +14179,2169,35 +14180,287281,65 +14181,193652,65 +14182,33356,65 +14183,4762,35 +14184,16784,65 +14185,120259,65 +14186,1691,65 +14187,34459,65 +14188,52520,82 +14189,2750,65 +14190,12206,35 +14191,13777,65 +14192,21481,65 +14193,15489,65 +14194,100669,65 +14195,303636,65 +14196,31162,82 +14197,169009,65 +14198,70874,82 +14199,106131,65 +14200,30941,65 +14201,10747,74 +14202,39578,65 +14203,31984,65 +14204,382591,33 +14205,32708,33 +14206,43850,65 +14207,13777,29 +14208,75229,79 +14209,383567,65 +14210,85472,65 +14211,57190,65 +14212,3050,65 +14213,246355,65 +14214,48791,65 +14215,36540,79 +14216,288668,65 +14217,329440,65 +14218,12704,65 +14219,48636,35 +14220,108222,65 +14221,113091,65 +14222,32868,65 +14223,410718,90 +14224,23964,65 +14225,48118,65 +14226,37003,65 +14227,11045,100 +14228,15764,65 +14229,121230,65 +14230,910,65 +14231,39056,101 +14232,37731,79 +14233,101338,41 +14234,50032,65 +14235,24822,31 +14236,321528,41 +14237,43155,65 +14238,37581,82 +14239,79580,82 +14240,21840,65 +14241,328589,65 +14242,43131,65 +14243,19215,65 +14244,116711,65 +14245,48488,65 +14246,11521,33 +14247,51802,65 +14248,64567,33 +14249,490,44 +14250,28677,65 +14251,137145,65 +14252,60662,65 +14253,252916,65 +14254,43594,65 +14255,70133,65 +14256,44718,65 +14257,15379,65 +14258,795,65 +14259,23637,29 +14260,259695,65 +14261,54146,101 +14262,139998,65 +14263,51890,33 +14264,270383,65 +14265,13333,72 +14266,228676,65 +14267,206657,65 +14268,36758,65 +14269,335051,29 +14270,170279,101 +14271,151310,65 +14272,11633,101 +14273,105833,41 +14274,12103,29 +14275,3478,33 +14276,107096,65 +14277,47212,65 +14278,253273,65 +14279,124071,65 +14280,275269,64 +14281,4538,64 +14282,31405,90 +14283,41469,65 +14284,10436,65 +14285,9032,29 +14286,215032,65 +14287,82631,65 +14288,53128,2 +14289,73123,16 +14290,246320,33 +14291,64567,65 +14292,242310,65 +14293,19176,65 +14294,13562,65 +14295,157676,35 +14296,4344,65 +14297,101342,33 +14298,12593,65 +14299,10208,65 +14300,102272,35 +14301,365340,82 +14302,86980,65 +14303,3072,65 +14304,86258,65 +14305,47507,33 +14306,118957,65 +14307,90461,65 +14308,24090,65 +14309,43596,35 +14310,18704,32 +14311,244783,65 +14312,18,35 +14313,14207,25 +14314,13105,41 +14315,157420,65 +14316,9667,65 +14317,177677,44 +14318,80717,33 +14319,73565,65 +14320,62692,82 +14321,150049,33 +14322,11561,65 +14323,39435,65 +14324,224903,65 +14325,121401,65 +14326,227257,65 +14327,38332,82 +14328,40998,71 +14329,244534,65 +14330,110160,33 +14331,43241,65 +14332,352733,65 +14333,99767,65 +14334,8988,65 +14335,3089,41 +14336,41967,65 +14337,107052,29 +14338,31700,65 +14339,114333,41 +14340,8985,100 +14341,115161,65 +14342,70278,48 +14343,269650,65 +14344,43200,29 +14345,18548,82 +14346,17009,65 +14347,88288,65 +14348,18758,72 +14349,262542,65 +14350,18646,13 +14351,126204,15 +14352,255647,65 +14353,38875,79 +14354,26961,65 +14355,53857,65 +14356,9828,65 +14357,38322,65 +14358,84449,65 +14359,27916,65 +14360,193216,82 +14361,241170,65 +14362,170689,65 +14363,844,72 +14364,64414,33 +14365,31262,13 +14366,13741,33 +14367,413052,65 +14368,9426,65 +14369,142798,42 +14370,11837,65 +14371,72710,65 +14372,12432,29 +14373,262528,65 +14374,334,33 +14375,46729,65 +14376,108345,65 +14377,10075,65 +14378,43754,65 +14379,18665,32 +14380,19181,93 +14381,16296,33 +14382,25388,65 +14383,121936,33 +14384,69401,71 +14385,115972,65 +14386,285848,29 +14387,276819,65 +14388,426253,65 +14389,9298,33 +14390,128154,66 +14391,128246,31 +14392,10311,35 +14393,116019,18 +14394,15712,33 +14395,436340,33 +14396,359204,84 +14397,9405,65 +14398,426265,65 +14399,308640,65 +14400,170998,64 +14401,13713,33 +14402,128140,35 +14403,177354,65 +14404,11172,65 +14405,142528,33 +14406,10096,65 +14407,10804,65 +14408,77625,65 +14409,64310,33 +14410,7340,65 +14411,73624,100 +14412,116232,65 +14413,53792,65 +14414,14916,65 +14415,321497,65 +14416,300,65 +14417,265208,65 +14418,433244,65 +14419,22076,82 +14420,287628,84 +14421,340881,65 +14422,2566,35 +14423,13616,65 +14424,211059,2 +14425,54825,65 +14426,28430,65 +14427,19237,65 +14428,2640,29 +14429,23382,33 +14430,9028,29 +14431,137614,65 +14432,21627,65 +14433,8391,65 +14434,18098,79 +14435,33786,44 +14436,11600,41 +14437,11373,103 +14438,18763,72 +14439,47792,65 +14440,382597,33 +14441,63096,65 +14442,35696,65 +14443,236053,90 +14444,119010,65 +14445,197854,101 +14446,28448,65 +14447,25403,84 +14448,40765,65 +14449,14482,82 +14450,28290,29 +14451,4688,65 +14452,30091,65 +14453,98541,65 +14454,244316,65 +14455,82409,100 +14456,200,65 +14457,15602,65 +14458,137504,101 +14459,17467,32 +14460,16351,53 +14461,24936,65 +14462,68123,35 +14463,106355,65 +14464,331588,65 +14465,83770,65 +14466,215740,35 +14467,112083,65 +14468,109451,65 +14469,78802,65 +14470,102428,41 +14471,17889,41 +14472,45772,65 +14473,198227,65 +14474,134368,65 +14475,21413,65 +14476,34078,65 +14477,11912,33 +14478,44793,33 +14479,49574,82 +14480,549,65 +14481,338421,72 +14482,22408,65 +14483,15850,65 +14484,65066,65 +14485,10198,65 +14486,109424,65 +14487,5646,65 +14488,240733,65 +14489,129628,65 +14490,359412,65 +14491,42533,65 +14492,45693,65 +14493,238362,18 +14494,12220,29 +14495,38448,92 +14496,393445,64 +14497,13477,65 +14498,22618,33 +14499,52044,65 +14500,12422,33 +14501,966,41 +14502,347096,65 +14503,35200,65 +14504,123757,65 +14505,21041,33 +14506,43379,65 +14507,82716,57 +14508,48836,79 +14509,365340,35 +14510,53064,101 +14511,2778,65 +14512,10364,65 +14513,241953,65 +14514,36047,65 +14515,427680,76 +14516,407448,65 +14517,73527,65 +14518,68750,65 +14519,43407,65 +14520,22615,65 +14521,13653,41 +14522,16131,65 +14523,13393,90 +14524,44119,65 +14525,11622,35 +14526,51945,33 +14527,38010,101 +14528,271826,33 +14529,1452,33 +14530,218784,65 +14531,326,76 +14532,24775,65 +14533,60965,65 +14534,132426,65 +14535,171759,35 +14536,94696,82 +14537,16092,41 +14538,290864,72 +14539,284305,41 +14540,138535,15 +14541,380057,65 +14542,171873,35 +14543,5759,65 +14544,14843,65 +14545,78258,33 +14546,371818,2 +14547,31418,82 +14548,18741,72 +14549,12412,29 +14550,82737,49 +14551,46387,64 +14552,17223,29 +14553,33510,65 +14554,117026,35 +14555,80193,65 +14556,146428,82 +14557,10870,79 +14558,46029,65 +14559,84089,29 +14560,28000,65 +14561,11186,65 +14562,15653,65 +14563,18148,101 +14564,65256,35 +14565,4547,65 +14566,144271,65 +14567,65795,65 +14568,83475,82 +14569,24645,65 +14570,289,29 +14571,263627,65 +14572,1790,65 +14573,38807,65 +14574,3478,35 +14575,13591,65 +14576,12407,65 +14577,18704,31 +14578,41714,24 +14579,14215,65 +14580,38328,29 +14581,18935,65 +14582,124523,65 +14583,118257,29 +14584,43882,65 +14585,70966,82 +14586,38766,41 +14587,103216,29 +14588,74645,29 +14589,83865,82 +14590,103947,100 +14591,29192,41 +14592,77958,29 +14593,258255,65 +14594,47065,65 +14595,451709,65 +14596,779,35 +14597,54155,33 +14598,41035,65 +14599,32029,65 +14600,24874,65 +14601,281418,65 +14602,64792,31 +14603,9756,65 +14604,32021,65 +14605,375794,41 +14606,244201,65 +14607,144421,15 +14608,43002,41 +14609,179188,65 +14610,124075,35 +14611,22910,65 +14612,392660,65 +14613,9087,65 +14614,417870,65 +14615,28466,41 +14616,108003,65 +14617,44115,65 +14618,446345,33 +14619,345915,65 +14620,105503,65 +14621,58757,35 +14622,382591,65 +14623,47559,65 +14624,204765,33 +14625,78210,33 +14626,10703,72 +14627,14626,33 +14628,320736,27 +14629,18836,82 +14630,16314,65 +14631,20123,65 +14632,66175,65 +14633,49098,79 +14634,11983,65 +14635,51619,65 +14636,318922,65 +14637,8398,65 +14638,44562,65 +14639,120478,65 +14640,396535,31 +14641,17073,65 +14642,140887,65 +14643,317246,41 +14644,99579,65 +14645,19338,65 +14646,253077,65 +14647,4932,65 +14648,15873,65 +14649,30352,65 +14650,81684,65 +14651,67272,44 +14652,86829,65 +14653,1443,65 +14654,9771,29 +14655,21778,33 +14656,17745,65 +14657,125926,44 +14658,22899,101 +14659,17658,33 +14660,42402,65 +14661,95536,33 +14662,264646,35 +14663,323665,65 +14664,228407,46 +14665,51800,66 +14666,133328,65 +14667,43938,65 +14668,45692,65 +14669,43440,65 +14670,15788,65 +14671,65713,82 +14672,22752,65 +14673,168676,65 +14674,8932,65 +14675,43149,65 +14676,27019,33 +14677,44658,82 +14678,9598,65 +14679,381054,65 +14680,48489,29 +14681,224944,65 +14682,38772,65 +14683,31598,41 +14684,219666,82 +14685,32124,65 +14686,7514,65 +14687,19827,65 +14688,218425,65 +14689,17386,65 +14690,362617,41 +14691,354128,32 +14692,190853,33 +14693,79701,82 +14694,43751,65 +14695,286545,35 +14696,53792,34 +14697,35926,65 +14698,13380,65 +14699,393521,66 +14700,69310,32 +14701,22792,65 +14702,45988,65 +14703,65650,41 +14704,47405,93 +14705,53950,65 +14706,34449,103 +14707,11832,33 +14708,355984,65 +14709,86279,91 +14710,20242,65 +14711,9753,65 +14712,109671,90 +14713,97365,79 +14714,78265,65 +14715,146380,65 +14716,62289,65 +14717,7006,65 +14718,37719,65 +14719,172386,65 +14720,291871,65 +14721,77564,82 +14722,464111,65 +14723,37534,65 +14724,188826,65 +14725,26125,65 +14726,220488,32 +14727,24795,33 +14728,11614,29 +14729,19423,65 +14730,51994,65 +14731,260001,65 +14732,282762,35 +14733,53168,72 +14734,30508,35 +14735,13925,15 +14736,111744,29 +14737,175027,65 +14738,2993,29 +14739,137776,65 +14740,33851,13 +14741,226188,33 +14742,317720,64 +14743,82341,29 +14744,22554,18 +14745,189888,65 +14746,52705,33 +14747,3164,65 +14748,27245,101 +14749,49277,33 +14750,293625,65 +14751,126300,84 +14752,18467,65 +14753,5881,33 +14754,63568,82 +14755,27549,65 +14756,662,33 +14757,95414,65 +14758,222216,32 +14759,173865,18 +14760,340275,65 +14761,4516,33 +14762,445840,41 +14763,42216,65 +14764,4286,29 +14765,269246,65 +14766,249264,65 +14767,286709,33 +14768,32031,65 +14769,57866,65 +14770,407,2 +14771,25807,65 +14772,65002,33 +14773,313896,35 +14774,85125,64 +14775,35129,65 +14776,56162,35 +14777,356296,29 +14778,154575,79 +14779,10204,90 +14780,285181,65 +14781,18836,65 +14782,328631,18 +14783,16157,101 +14784,52696,51 +14785,79728,33 +14786,53223,65 +14787,20307,65 +14788,8429,65 +14789,198277,65 +14790,31850,31 +14791,17971,65 +14792,290714,65 +14793,97797,82 +14794,410259,65 +14795,505,65 +14796,104931,35 +14797,24927,65 +14798,6687,33 +14799,41171,65 +14800,8665,65 +14801,303966,64 +14802,31347,101 +14803,48567,41 +14804,64044,82 +14805,60120,82 +14806,30924,65 +14807,772,33 +14808,1164,65 +14809,10776,65 +14810,64316,72 +14811,175331,90 +14812,115626,65 +14813,61541,65 +14814,57977,41 +14815,6557,65 +14816,363841,35 +14817,91459,65 +14818,14531,65 +14819,4538,35 +14820,10870,33 +14821,26204,65 +14822,46094,65 +14823,112675,92 +14824,285848,33 +14825,27993,65 +14826,419192,65 +14827,61473,65 +14828,56599,101 +14829,24442,65 +14830,42734,65 +14831,116352,33 +14832,152393,65 +14833,69075,65 +14834,18671,65 +14835,34496,65 +14836,139433,65 +14837,134360,65 +14838,334527,65 +14839,325780,29 +14840,21242,33 +14841,288788,65 +14842,11869,35 +14843,71701,65 +14844,13205,65 +14845,340101,65 +14846,50295,65 +14847,54804,65 +14848,18698,65 +14849,834,33 +14850,10055,35 +14851,94744,29 +14852,256122,100 +14853,42288,65 +14854,10770,65 +14855,11694,65 +14856,1073,65 +14857,135317,65 +14858,10379,65 +14859,100450,65 +14860,106546,79 +14861,311764,65 +14862,182899,65 +14863,197788,65 +14864,302026,65 +14865,27317,65 +14866,337958,65 +14867,1726,65 +14868,28510,40 +14869,18633,65 +14870,15794,65 +14871,166253,64 +14872,26116,79 +14873,42641,84 +14874,29138,65 +14875,11813,29 +14876,1838,8 +14877,9289,35 +14878,251232,65 +14879,110148,33 +14880,271718,65 +14881,229702,65 +14882,109477,41 +14883,174309,35 +14884,4413,65 +14885,25626,32 +14886,90231,16 +14887,70247,35 +14888,49273,15 +14889,24619,65 +14890,254439,100 +14891,165402,35 +14892,77185,82 +14893,69278,41 +14894,278316,65 +14895,398891,65 +14896,126083,65 +14897,10739,65 +14898,12811,29 +14899,362974,31 +14900,11535,84 +14901,408220,65 +14902,11897,65 +14903,8410,65 +14904,140607,65 +14905,214938,40 +14906,16866,65 +14907,42204,65 +14908,413782,65 +14909,115223,65 +14910,146416,82 +14911,55934,65 +14912,41030,65 +14913,59882,65 +14914,70807,35 +14915,30379,65 +14916,345003,65 +14917,21430,35 +14918,78307,65 +14919,12605,35 +14920,297736,65 +14921,1247,82 +14922,48495,65 +14923,12618,65 +14924,8939,23 +14925,64725,29 +14926,57680,65 +14927,217057,65 +14928,511,34 +14929,75090,65 +14930,59197,101 +14931,76468,65 +14932,864,33 +14933,226792,65 +14934,374461,65 +14935,357130,65 +14936,93562,65 +14937,62897,18 +14938,12538,100 +14939,162437,101 +14940,33340,93 +14941,13258,33 +14942,15664,65 +14943,56746,41 +14944,276536,35 +14945,28417,84 +14946,22419,65 +14947,82624,77 +14948,11535,35 +14949,49950,65 +14950,353464,65 +14951,133716,65 diff --git a/demo/install/resources/movies_csv/Movies.csv b/demo/install/resources/movies_csv/Movies.csv new file mode 100644 index 0000000000..dbaf37e032 --- /dev/null +++ b/demo/install/resources/movies_csv/Movies.csv @@ -0,0 +1,13110 @@ +id,Title,Release Date,Runtime,Homepage,Sub-Collection,Imdb ID,Tagline,Overview,Budget,Revenue,Original Title,Original Language +426903,Buffalo Running,1883-11-19,1.0,,,tt5459794,,Individual photographs of the running of a buffalo shot in rapid succession.,0,0,Buffalo Running,en +16464,Traffic Crossing Leeds Bridge,1888-10-15,1.0,,,tt0343112,,"A film by Louis Aimé Augustin Le Prince, shot in late October 1888, showing pedestrians and carriages crossing Leeds Bridge.",0,0,Traffic Crossing Leeds Bridge,xx +33316,London's Trafalgar Square,1890-01-01,1.0,,,tt1202028,,"Moving picture of London's Trafalgar Square traffic, filmed with a kinesigraph.",0,0,London's Trafalgar Square,xx +386743,Mosquinha,1890-03-09,1.0,,,tt5285442,,Shot of the flight of a fly.,0,0,Mosquinha,en +33315,"Monkeyshines, No. 2",1890-11-21,1.0,,,tt0416046,,"Experimental film that follows up on the results of ""Monkeyshines, No. 1"". Once again, an Edison company worker moves around in front of the motion picture camera.",0,0,"Monkeyshines, No. 2",xx +33317,"Monkeyshines, No. 3",1890-11-21,1.0,,,tt0416047,,"Experimental film that follows up on the results of ""Monkeyshines, No. 1"" and ""Monkeyshines, No. 2"". Once again, an Edison company worker moves around in front of the motion picture camera.",0,0,"Monkeyshines, No. 3",xx +416258,Two Fencers,1891-01-02,1.0,,,tt5447082,,Short film of two men fencers,0,0,Two Fencers,en +312452,La Vague,1891-11-15,1.0,,,tt3508566,,"Experimental film of a wave, recorded on the bay of Naples.",0,0,La Vague,xx +105153,Fencing,1892-01-01,1.0,,,tt0241446,,Early Edison short showing two men fencing.,0,0,Fencing,en +16612,Carmencita,1894-03-14,1.0,,,tt0000001,,"The first woman to appear in front of an Edison motion picture camera and possibly the first woman to appear in a motion picture within the United States. In the film, Carmencita is recorded going through a routine she had been performing at Koster & Bial's in New York since February 1890.",0,0,Carmencita,en +186019,Souvenir Strip of the Edison Kinetoscope,1894-05-18,1.0,,,tt0203853,,"Eugen Sandow, who claims to be the strongest man in the world, appears in the Edison Company's film studio.",0,0,Souvenir Strip of the Edison Kinetoscope,en +144421,Wintergartenprogramm,1895-11-01,7.0,,,tt1754898,,,0,0,Wintergartenprogramm,en +122134,Baby's Meal,1895-12-27,1.0,,,tt0000029,,"A father, a mother and a baby are sitting at a table, on a patio outside. Dad is feeding baby his lunch, while mum is serving tea.",0,0,Repas de Bébé,fr +127762,Baignade en Mer,1895-12-28,1.0,,,tt0000023,,"Several little boys run along a pier, then jump into the ocean.",0,0,Baignade en Mer,fr +104466,The Vanishing Lady,1896-01-01,1.0,,,tt0000075,,"Georges Méliès makes a woman disappear, then reappear.",0,0,Escamotage d'une dame chez Robert-Houdin,fr +178755,"Arab Cortege, Geneva",1896-01-01,1.0,,,tt0256607,,"A stationary camera looks across a busy corner toward a store front marked ""The Divan."" The words ""des fees"" are beneath. A cortege of Arabs, about 20 persons in the party, walk past; the dignitaries are in front, attended by men with horns and drums. Coming in the other direction are local Swiss, who pay little attention, and a group of native-garbed Africans. The dozen or so well-dressed denizens of Geneva who are sitting on the steps of the Divan take it all in.",0,0,Cortège arabe,fr +104462,A Terrible Night,1896-01-01,1.0,,,tt0000131,,"A man tries to get a good night's sleep, but is disturbed by a giant spider that leaps onto his bed, and a battle ensues in hilarious comic fashion.",0,0,Une nuit terrible,fr +94570,The Kiss,1896-04-01,1.0,,,tt0139738,,"They get ready to kiss, begin to kiss, and kiss and kiss and kiss in a way that brings down the house every time. (Edison films catalog)",0,0,The Kiss,en +163053,A Morning Bath,1896-10-30,1.0,,,tt0203700,,"“Mammy is washing her little pickaninny. She thrusts him, kicking and struggling, into a tub full of foaming suds.” (Edison film catalog)",0,0,A Morning Bath,en +189807,Mounted Police Charge,1896-11-02,1.0,,,tt0203708,,No Overview,0,0,Mounted Police Charge,en +104476,The Bewitched Inn,1897-01-01,2.0,,,tt0000138,,"A weary traveler stops at an inn along the way to get a good night's sleep, but his rest is interrupted by odd happenings when he gets to his room--beds vanishing and re-appearing, candles exploding, pants flying through the air and his shoes walking away by themselves.",0,0,L'Auberge ensorcelée,fr +104477,After the Ball,1897-01-01,1.0,,,tt0222735,,A woman arrives home after the ball. Her servant helps her undress and bathe. Arguably the first adult film ever made.,0,0,Après le Bal,fr +104471,The Haunted Castle,1897-01-01,1.0,,,tt1213033,,A man has an encounter with several spooky apparitions in a castle that is evidently owned by the Devil.,0,0,Le château hanté,fr +104474,Between Calais and Dover,1897-01-01,1.0,,,tt0223223,,A rocky sea voyage as reenacted by Georges Méliès.,0,0,Entre Calais et Douvres,fr +189820,"Fifth Avenue, New York",1897-03-05,1.0,,,tt0215764,,No Overview,0,0,"Fifth Avenue, New York",en +212362,Serpentine Dance: Loïe Fuller,1897-08-05,1.0,,,tt1189078,,Loïe Fuller performs a serpentine dance.,0,0,Danse Serpentine: Loie Fuller,en +104697,Adventures of William Tell,1898-01-01,1.0,,,tt0222768,,"The scene opens in an artist's studio where the unfinished statue of William Tell stands upon a pedestal. A clown appears and sticks a clay arm and clay head on the statue, thus completing it. He places a large brick on top of the head to make it stick. When he turns his back the statue turns into a living representation of William Tell. (Edison Catalog)",0,0,Guillaume Tell et le Clown,fr +127391,The Merry Skeleton,1898-01-01,1.0,,,tt1740545,,A skeleton dances.,0,0,Le Squelette Joyeux,en +104702,The Temptation of St. Anthony,1898-01-01,1.0,,,tt0224240,,"St. Anthony is tempted by visions of women, including one that is transformed from the image of Jesus Christ Himself!",0,0,La tentation de Saint-Antoine,fr +104700,The Astronomer's Dream,1898-01-01,3.0,,,tt0000211,,An astronomer has a terrifying dream.,0,0,La lune à un mètre,fr +114108,Cinderella,1899-10-01,5.0,,,tt0000230,,"A fairy godmother magically turns Cinderella's rags to a beautiful dress, and a pumpkin into a coach. Cinderella goes to the ball, where she meets the Prince - but will she remember to leave before the magic runs out? Méliès based the art direction on engravings by Gustave Doré. First known example of a fairy-tale adapted to film, and the first film to use dissolves to go from one scene to another.",0,0,Cendrillon,fr +195592,Gymnasium Exercises and Drill at Newport Training School,1900-05-21,1.0,,,tt0327821,,"This picture shows the young cadets going through their daily exercises and drill, and is full of life, and photographically perfect.",0,0,Gymnasium Exercises and Drill at Newport Training School,en +195561,Champs de Mars,1900-08-21,1.0,,,tt0302397,,"Shows all the prominent buildings on this thoroughfare, ending with a close view of the base of the Eiffel Tower, with the Trocadero Palace in the background.",0,0,Champs de Mars,en +74878,Cloportes,1965-10-01,0.0,,,tt0059491,,,0,0,La Métamorphose des cloportes,fr +195653,Scene from the Elevator Ascending Eiffel Tower,1900-08-21,2.0,,,tt0310118,,"“A marvelously clear picture taken from the top of the elevator of the Eiffel Tower during going up and coming down of the car. This wonderful tower is 1,000 feet in height, and the picture produces a most sensational effect. As the camera leaves the ground and rises to the top of the tower, the enormous white city opens out to the view of the astonished spectator. Arriving at the top of the tower, a bird's eye view of the Exposition looking toward the Trocadero, and also toward the Palace of Electricity, is made, and the camera begins its descent. The entire trip is shown on a 200-foot film. 30.00. We furnish the ascent in 125 foot film.” (Edison film catalog)",0,0,Scene from the Elevator Ascending Eiffel Tower,en +179549,Stop Thief!,1901-01-01,1.0,,,tt0132534,,"A lad from a butcher shop is carrying a tray laden with a roast or a leg of lamb. A hobo grabs it and runs. The boy gives chase, joined by dogs, as neighbors watch the spectacle. The hobo jumps into a large rain barrel, followed by the dogs.",0,0,Stop Thief!,en +447169,"Arrival of McKinley’s Funeral Train at Canton, Ohio",1901-09-30,1.0,,,tt0307969,,"In recording this scene the position of our camera was an excellent one, and we present to the public a most perfect picture of the train’s arrival. The engine is decorated with crepe to mark the solemnity of this great historical event. As the train stops at the platform great respect for the dead President is shown by the waiting diplomats and reception committee baring their heads and standing respectfully on one side as the mourners leave the train.",0,0,"Arrival of McKinley’s Funeral Train at Canton, Ohio",xx +96035,The Big Swallow,1901-10-15,1.0,,,tt0202815,,"A man, objecting to being filmed, comes closer and closer to the camera lens until his mouth is all we see. Then he opens wide and swallows camera and cinematographer. He steps back, chews, and grins.",0,0,The Big Swallow,en +195713,"Captain Nissen Going Through Whirlpool Rapids, Niagara Falls",1901-10-21,2.0,,,tt0360454,,"Here we show Captain N. P. Nissen, formerly known as Captain Bowser, making a trip through the Whirlpool Rapids in his famous twenty-four foot craft known as the ""Fool Killer""...",0,0,"Captain Nissen Going Through Whirlpool Rapids, Niagara Falls",en +127098,Extraordinary Illusions,1903-01-01,2.0,,,tt0223509,,Pioneer filmmaker Georges Méliès performs his cine-magic act.,0,0,Illusions funambulesques,fr +163111,Down the Hudson,1903-03-22,3.0,,,tt0402144,,"Film taken from a boat heading down the Hudson is shown at varying speeds, often giving a sense of rapid transit.",0,0,Down the Hudson,en +96701,The Infernal Cakewalk,1903-06-12,5.0,,,tt0222874,,"Pluto, having seen the earth, comes back home amazed at the success of that well-known dance, the ""cake-walk."" He has brought back with him two noted well-known dancers, who start their favorite dance amidst the flames.",0,0,Le cake-walk infernal,fr +44449,The Monster,1903-08-14,2.0,,,tt0223755,,An Egyptian prince has lost his beloved wife and he has sought a dervish who dwells at the base of the sphinx.,0,0,Le monstre,fr +49273,The Melomaniac,1903-08-15,3.0,,,tt0000455,,The leader of a marching band demonstrates an unusual way of writing music.,0,0,Le Mélomane,fr +127094,Apparitions,1903-10-16,2.0,,,tt0189363,,"Alone in his room at an inn, a lustful old man is haunted by spirits.",0,0,Le Revenant,fr +44328,The Mermaid,1904-01-01,4.0,,,tt0215992,,A man performs tricks with an aquarium and a mermaid,0,0,La sirène,fr +232137,"Annual Baby Parade, 1904, Asbury Park, N.J.",1904-09-01,6.0,,,tt0918623,,"Baby Parade at Asbury Park, N.J., in 1904.",0,0,"Annual Baby Parade, 1904, Asbury Park, N.J.",en +139589,An Interesting Story,1904-10-01,4.0,,,tt0249600,,The adventures of an inattentive man who can't look away from his book.,0,0,An Interesting Story,en +2963,The Impossible Voyage,1904-10-01,20.0,,,tt0000499,,"Using every known means of transportation, several savants from the Geographic Society undertake a journey through the Alps to the Sun which finishes under the sea.",7500,0,Voyage à travers l'impossible,fr +49277,The Hilarious Posters,1906-01-01,3.0,,,tt0135122,,A wall full of advertising posters comes to life.,0,0,Les affiches en goguette,en +134750,Humorous Phases of Funny Faces,1906-04-05,3.0,,,tt0000554,,A cartoonist draws faces and figures on a blackboard - and they come to life.,0,0,Humorous Phases of Funny Faces,en +196491,Les tulipes,1907-05-23,3.0,,,tt0173368,,"Magical flowery frolics, similar to a Melies film.",0,0,Les tulipes,fr +196508,Easter Eggs,1907-07-24,3.0,,,tt0449325,,A magical woman and her magical eggs.,0,0,Les Oeufs De Pâques,en +138730,The House of Ghosts,1908-01-01,6.0,,,tt1548598,,"A group of travellers go into a house for protection. Little do they know, it is filled with ghosts who make unusual things happen to them.",0,0,La maison ensorcelée,en +49271,The Devilish Tenant,1909-01-01,6.0,,,tt0127948,,A man rents an apartment and furnishes it in remarkable fashion.,0,0,Le locataire diabolique,en +118943,Those Awful Hats,1909-01-25,2.0,,,tt0001062,,A pair of young ladies cause trouble at the cinema with their lavish hats.,0,0,Those Awful Hats,en +127105,The Lonely Villa,1909-06-10,8.0,,,tt0000942,,"A gang of thieves lure a man out of his home so that they can rob it and threaten his wife and children. The family barricade themselves in an interior room, but the criminals are well-equipped for breaking in. When the father finds out what is happening, he must race against time to get back home.",0,0,The Lonely Villa,en +36874,The Country Doctor,1909-07-08,14.0,,,tt0000833,,"While caring for his sick daughter, a doctor is called away to the sickbed of a neighbor. He finds the neighbor gravely ill, and ignores his wife's pleas to come home and care for his own daughter, who has taken a turn for the worse.",0,0,The Country Doctor,en +20650,The Sealed Room,1909-09-02,11.0,,,tt0001032,,"The Count sets out to make a private room for him and his Countess, built in such a way no one can see, hear, and most importantly, disturb them. But unbeknownst to the Count, his wife has set her eyes on the court minstrel. Based on Edgar Allan Poe's “The Cask of Amontillado” and Honoré de Balzac's “La Grande Breteche”.",0,0,The Sealed Room,en +113194,A Trip to Mars,1910-02-18,5.0,,,tt1515725,,"The obvious inspiration for this short film is Georges Méliès' 1903 A TRIP TO THE MOON, but while Méliès based his movie on a Jules Verne novel, this clearly is based on H.G. Wells' FROM THE EARTH TO THE MOON -- with the names rubbed off and the site of the action changed to avoid lawsuits. Even though we see the same sort of mix of stage and movie magic that Méliès used, the purpose has shifted subtly from being special effects that the audience would gape at, to special effects that are used to get from plot point A to plot point B. When chairs float in the air, it is not to frighten and bewilder the audience and the movie's character, but to illustrate the invention of anti-gravity. When the scientist flails about while seeming to fly through outer space, it is to get to Mars. Special effects are no longer the point of the movie. They are part of the grammar.",0,0,A Trip to Mars,en +2929,Frankenstein,1910-03-18,13.0,,,tt0001223,,"Frankenstein, a young medical student, trying to create the perfect human being, instead creates a misshapen monster. Made ill by what he has done, Frankenstein is comforted by his fiancée but on his wedding night he is visited by the monster. A fight ensues but the monster, seeing himself in a mirror, is horrified and runs away. He later returns, entering the bride's room, and finds her alone…",0,0,Frankenstein,en +326228,Brains Repaired,1911-01-01,6.0,,,tt0130978,,Depicts a doctor looking into his patient's brain and seeing a collection of hideous and grotesque figures.,0,0,Le retapeur de cervelles,fr +130450,The Lonedale Operator,1911-03-23,17.0,,,tt0001740,,"A young woman takes over her sick father's role as telegraph operator at a railway station, and has to deal with a team intent on train robbery. Film first released 23 March 1911.",0,0,The Lonedale Operator,en +100247,"Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics",1911-04-08,12.0,,,tt0001737,,"Cartoon figures announce, via comic strip balloons, that they will move - and move they do, in a wildly exaggerated style.",0,0,"Winsor McCay, the Famous Cartoonist of the N.Y. Herald and His Moving Comics",en +193959,Her Crowning Glory,1911-09-11,14.0,,,tt0001660,,"A widower becomes infatuated with his daughter's governess, to the displeasure of the child and her nurse.",0,0,Her Crowning Glory,en +190883,The Miser's Heart,1911-11-20,18.0,,,tt0001789,,"Thieves decide to steal the money an old miser has hidden away. He refuses to open the safe for them, so they threaten to kill a girl who lives in his building",0,0,The Miser's Heart,en +192301,The Mender of Nets,1912-02-14,16.0,,,tt0002357,,"A young woman who works mending fishermen's nets is engaged to be married. But her fiancé has an old love who refuses to let him go. Further, his former girlfriend has a brother who is willing to use violence to protect his sister's honor.",0,0,The Mender of Nets,en +46758,Richard III,1912-10-15,55.0,,,tt0002461,,"Shakespeare's tragedy of the hump-backed Duke of Gloucester, who rises to the throne of England by chicanery, treachery, and brilliance, only to find that his own methods have prepared the groundwork for his downfall.",0,0,Richard III,en +90056,The Cameraman's Revenge,1912-10-27,12.0,,,tt0001527,,"A jilted husband takes his revenge by filming his wife and her lover and showing the result at the local cinema. This was one of Starewicz' first animated films, and stars very realistic animated beetles",0,0,Mest kinematograficheskogo operatora (Cameraman's Revenge),ru +105352,The Land Beyond the Sunset,1912-10-28,14.0,,,tt0000488,,"A poor, young boy goes on a field trip and dreams of escaping to a land beyond the sunset.",0,0,The Land Beyond the Sunset,en +42553,The Musketeers of Pig Alley,1912-10-31,17.0,,,tt0002381,,"The film is about a poor married couple living in New York City. The husband works as a musician and must travel often for work. When returning, his wallet is taken by a gangster. His wife goes to a ball where a man tries to drug her, but his attempt is stopped by the same man who robbed the husband. The two criminals become rivals, and a shootout ensues. The husband gets caught in the shootout and recognizes one of the men as the gangster who took his money. The husband sneaks his wallet back and the gangster goes to safety in the couple's apartment. Policemen track the gangster down but the wife gives him a false alibi.",0,0,The Musketeers of Pig Alley,en +71266,Cleopatra,1912-11-13,88.0,,,tt0002101,,The fabled queen of Egypt's affair with Roman general Marc Antony is ulimately disastrous for both of them.,0,0,Cleopatra,en +191068,The Painted Lady,1912-11-24,12.0,,,tt0002415,,"A lonely young woman lives with her strict father who forbids her to wear make-up. One day at an ice cream social, she meets a young man you seems interested in her. However, unknown to her, he is a burglar who is only interested in breaking into her father's house. One night she is awakened by a noise.",0,0,The Painted Lady,en +128671,The New York Hat,1912-12-05,16.0,,,tt0002391,,"To fulfill a dying mother's bequest for her daughter, the town pastor purchases the daughter a stylish hat, and gossip spreads through the town.",0,0,The New York Hat,en +193899,The Burglar’s Dilemma,1912-12-16,15.0,,,tt0002082,,"In this latter day Cain and Abel story, a jealous brother strikes down his sibling just as a young burglar is about to enter the house. The jealous brother summons police, who then charge the young intruder with murder. How can the burglar prove his innocence?",0,0,The Burglar’s Dilemma,en +125673,The Battle at Elderbush Gulch,1913-01-01,29.0,,,tt0003662,,"Two young girls are sent away to live with their uncle, which sets off a chain of events resulting in an Indian attack on the town",0,0,The Battle at Elderbush Gulch,en +116857,Death's Marathon,1913-01-01,17.0,,,tt0002795,,"Two business partners pursue the same woman. She accepts the marriage proposal of the irresponsible partner, much to her later regret. He squanders money on gambling, as his interest in her gradually wanes. One day after losing the company money in a card game, he decides to commit suicide. He telephones his wife from the office, as he puts a revolver near his head. The wife tries to keep him talking while the reliable business partner races to the office in an attempt to save his old friend. Will he make it in time?",0,0,Death's Marathon,en +375298,Milling the Militants,1913-03-31,8.0,,,tt0249011,,A hen-pecked husband with a suffragette wife dreams he is Prime Minister.,0,0,Milling the Militants,en +191427,The House of Darkness,1913-05-10,17.0,,,tt0002985,,No Overview,0,0,The House of Darkness,en +53387,Mabel's Married Life,1914-06-20,17.0,,,tt0004282,,Mabel goes home after being humiliated by a masher whom her husband won't fight. The husband goes off to a bar and gets drunk.,0,0,Mabel's Married Life,en +53392,His New Profession,1914-08-31,16.0,,,tt0004101,,Charlie takes care of a man in a wheelchair.,0,0,His New Profession,en +22943,Tillie's Punctured Romance,1914-11-14,82.0,,,tt0004707,The WORLD'S OUTSTANDING COMEDIANS IN THE FUNNIEST COMEDY OF ALL TIME,"Chaplin plays a womanizing city man who meets Tillie (Dressler) in the country after a fight with his girlfriend (Normand). When he sees that Tillie's father has a very large bankroll for his workers, he persuades her to elope with him. In the city, he meets the woman he was seeing already, and tries to work around the complication to steal Tillie's money.",0,0,Tillie's Punctured Romance,en +92349,Cinderella,1914-12-28,52.0,,,tt0003772,,"Based on Charles Perrault's fairy tale: Cinderella is mistreated by her stepmother and stepsisters, but she is able to go to the Royal Ball with the help of the Fairy Godmother.",0,0,Cinderella,en +134144,The Italian,1915-01-01,78.0,,,tt0005557,,An immigrant leaves his sweetheart in Italy to find a better life across the sea in the grimy slums of New York.,0,0,The Italian,en +53403,A Night Out,1915-02-15,33.0,,,tt0005810,,"After a visit to a pub, Charlie and Ben cause a ruckus at a posh restaurant. Charlie later finds himself in a compromising position at a hotel with the head waiter's wife.",0,0,A Night Out,en +50775,A Jitney Elopement,1915-04-01,33.0,,,tt0005571,Charlie Chaplin's fifth film for Essanay Films,"Edna's father wants her to marry wealthy Count He-Ha. Charlie, Edna's true love, impersonates the Count at dinner, but the real Count shows up and Charlie is thrown out.",0,0,A Jitney Elopement,en +30982,The Tramp,1915-04-12,27.0,,,tt0006177,,"The Little Fellow finds the girl of his dreams and work on a family farm. He helps defend the farm against criminals, and all seems well, until he discovers the girl of his dreams already has someone in her life. Unwilling to be a problem in their lives, he takes to the road, though he is seen skipping and swinging his cane as if happy to be back on the road where he knows he belongs.",0,0,The Tramp,en +53406,By the Sea,1915-04-29,15.0,,,tt0005044,,"It is windy at a bathing resort. After fighting with one of the two husbands, Charlie approaches Edna while the two husbands themselves fight over ice cream. Driven away by her husband, Charlie turns to the other's wife.",0,0,By the Sea,en +53407,His Regeneration,1915-05-07,15.0,,,tt0192120,,A rough criminal gets into an argument over a girl in a dance hall.,0,0,His Regeneration,en +53410,The Bank,1915-08-09,33.0,,,tt0004936,,"In a departure from the tramp character, Chaplin plays a janitor at a bank. Edna Purviance plays the secretary on whom Charlie has a crush and dreams that she has fallen in love with him.",0,0,The Bank,en +29082,Les vampires,1915-11-13,399.0,,,tt0006206,,"Two journalists attempt to uncover the truth behind the criminal organisation, known as The Vampires, who are terrorizing Paris.",0,0,Les vampires,fr +70368,The Cheat,1915-12-13,59.0,,,tt0005078,,"A venal, spoiled stockbroker's wife impulsively embezzles $10,000 from the charity she chairs and desperately turns to a Burmese ivory trader to replace the stolen money.",17311,137365,The Cheat,en +141868,Fatty and Mabel Adrift,1916-01-09,34.0,,,tt0006668,,Villains launch Fatty and Mabel's beachfront house into the ocean.,0,0,Fatty and Mabel Adrift,en +172443,His Picture in the Papers,1916-02-13,62.0,,,tt0006809,,"A young man can only get the woman he loves if he becomes famous and manages to get his picture in the newspapers. He determines to let nothing stand in the way of his doing exactly that, and in the process winds up getting involved with a gang of criminals and a locomotive chase.",0,0,His Picture in the Papers,en +84772,Hell's Hinges,1916-03-05,64.0,,,tt0006780,,"When Reverend Robert Henley and his sister Faith arrive in the town of Hell's Hinges, saloon owner Silk Miller and his cohorts sense danger to their evil ways. They hire gunman Blaze Tracy to run the minister out of town. But Blaze finds something in Faith Henley that turns him around, and soon Silk Miller and his compadres have Blaze to deal with.",0,0,Hell's Hinges,en +174552,A Life for a Life,1916-05-09,66.0,,,tt0212633,,"Wealthy Mrs. Khromova has a natural daughter, Musya, and an adopted daughter, Nata. The merchant Zhurov is in love with Nata, and hopes to marry her, but she is non-committal.",0,0,Zhizn za zhizn,en +174594,Going Straight,1916-06-03,60.0,,,tt0006731,,"A man and his wife both have criminal pasts, but have quit crime and are now respectable citizens. One day a member of their old gang shows up and threatens to expose them if they don't help him pull a heist.",0,0,Going Straight,en +53417,The Fireman,1916-06-12,32.0,,,tt0006684,,Charlie is a fireman who always does everything wrong. A man talks the Fire Chief into ignoring his burning home (he wants the insurance money) unaware that his daughter (the love of the Chief) is upstairs in the house. When the house next door catches fire its owner rouses Charlie who rouses the force.,0,0,The Fireman,en +200324,The Half-Breed,1916-07-30,50.0,,,tt0006753,,A Western outsider tries to help a woman on the run after killing her faithless lover,0,0,The Half-Breed,en +3059,Intolerance: Love's Struggle Throughout the Ages,1916-09-04,197.0,,,tt0006864,The Cruel Hand of Intolerance,"The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.",8394751,0,Intolerance: Love's Struggle Throughout the Ages,en +151086,The Ocean Waif,1916-11-02,40.0,,,tt0004413,,An abused woman finds love in the arms of a famous novelist,0,0,The Ocean Waif,en +53419,Behind the Screen,1916-11-13,24.0,,,tt0006414,,Charlie is an overworked labourer at a film studio who helps a young woman find work even while his coworkers strike against his tyrannical boss.,0,0,Behind the Screen,en +172445,The Matrimaniac,1916-12-16,46.0,,,tt0007047,,"A young couple attempts to elope, with the bride's irate father in hot pursuit. The train stops briefly and the young man dashes off to find a minister, but before he can get himself and the minister onto the train, it leaves, carrying his bride-to- be away. Now the young man, minister in tow, pursues his bride while her father and a horde of lawmen pursue them both.",0,0,The Matrimaniac,en +134155,King Lear,1916-12-17,63.0,,,tt0006895,,Silent adaptation of Shakespeare's King Lear,0,0,King Lear,en +108017,A Man There Was,1917-01-29,55.0,,,tt0008663,,"Terje Vigen, a sailor, suffers the loss of his family through the cruelty of another man. Years later, when his enemy's family finds itself dependent on Terje's benevolence, Terje must decide whether to avenge himself.",0,0,Terje Vigen,sv +47653,The Immigrant,1917-06-17,20.0,,,tt0008133,"""The Tramp"" arrives in New York",Charlie is an immigrant who endures a challenging voyage and gets into trouble as soon as he arrives in America.,0,0,The Immigrant,en +206390,The Girl from the Marsh Croft,1917-09-09,74.0,,,tt0008710,,"A 1917 Swedish drama film directed by Victor Sjöström, based on a 1913 novel by Selma Lagerlöf. It was the first in a series of successful Lagerlöf adaptions by Sjöström, made possible by a deal between Lagerlöf and A-B Svenska Biografteatern (later AB Svensk Filmindustri) to adapt at least one Lagerlöf novel each year. Lagerlöf had for many years denied any proposal to let her novels be adapted for film, but after seeing Sjöström's Terje Vigen she finally decided to give her allowance.",0,0,Tösen från Stormyrtorpet,en +70800,The Outlaw and His Wife,1918-01-01,136.0,,,tt0008879,,"A stranger comes to work at widow Halla's farm. Halla and the stranger fall in love, but when he is revealed as Eyvind, an escaped thief forced into crime by his family's starvation, they flee and become two of the many outlaws of Iceland's mountains.",0,0,Berg-Ejvind och hans hustru,sv +70753,Stella Maris,1918-01-21,84.0,,,tt0009652,,"Stella Maris is a beautiful, crippled girl, who is cared for by a rich family. They shield her from the harsh realities of the world, so that she has no idea of the cruel things that some people do. Unity Blake is a poor orphan all too familiar with the harsh realities of the real world. These two young women both fall in love with John, love which is complicated by the fact that he is still married to (though separated from) a bad wife.",0,0,Stella Maris,en +54198,My Boy,1921-12-01,55.0,,,tt0012486,,An orphan escapes immigration officials at Ellis Island and goes to live with an old ship's master who can't find work and can't pay the rent.,0,0,My Boy,en +45838,The Bell Boy,1918-03-18,33.0,,,tt0008874,,"At the Elk's Head Hotel bellhops torment the lobby, each other and guests. The elevator is powered by a stubborn horse. A sham robbery turns into a real one. And there is a chase on a runaway trolley.",0,0,The Bell Boy,en +47190,Father Sergius,1918-05-14,112.0,,,tt0008395,,"The story of Prince Stepán Kasátsky discovering his fiancée was the mistress of the Czar, so he then becomes a monk.",0,0,Отец Сергий,ru +174925,Old Wives for New,1918-05-18,60.0,,,tt0009440,,"Charles Murdock neglects his fat and lazy wife in favor of Juliet Raeburn but, when Juliet's name is involved in murder, he marries Viola and takes her to Paris.",0,0,Old Wives for New,en +54242,Mickey,1918-08-01,93.0,,,tt0009369,,"Mickey, an orphan who has been brought up in a mining settlement, is sent to New York to live with her aunt.",250000,8000000,Mickey,en +53423,Shoulder Arms,1918-08-20,45.0,,,tt0009611,,Charlie is a boot camp private who has a dream of being a hero who goes on a daring mission behind enemy lines.,0,0,Shoulder Arms,en +49837,South,1919-01-01,81.0,,,tt0198559,,The story of the 1914-1916 Antarctic exploration mission of Sir Ernest Shackleton.,0,0,South,en +70801,Daddy-Long-Legs,1919-05-11,85.0,,,tt0010040,,"Wealthy Jervis Pendleton acts as benefactor for orphan Judy Abbott, anonymously sponsoring her in her boarding school. But as she grows up, he finds himself falling in love with her, and she with him, though she does not know that the man she has fallen for is her benefactor.",0,0,Daddy-Long-Legs,en +899,Broken Blossoms,1919-05-13,90.0,,,tt0009968,,Broken Blossoms is an American silent film from director D. W. Griffith. This melodrama tells the love story of an abused English woman and a Chinese Buddhist in a time when London was a brutal and harsh place to live.,0,0,Broken Blossoms,en +174946,The Busher,1919-05-17,55.0,,,tt0009976,,A young baseball pitcher in the bush leagues is discovered by a big-league manager and given his chance in the major leagues.,0,0,The Busher,en +38531,Back Stage,1919-09-07,26.0,,,tt0009899,,"Roscoe and Buster give a bullying Strongman the what-for, and after the performance troupe quits it's up to Fatty and Buster and St. John to keep the show going.",0,0,Back Stage,fr +53761,Male and Female,1919-11-23,116.0,,,tt0010418,,"Gloria Swanson plays a spoiled maiden who always gets her way until shipwrecked with her butler, then learns which qualities are really admirable in a person.",0,0,Male and Female,en +174958,Harakiri,1919-12-18,80.0,,,tt0010208,,"The Buddah priest wants the Daughter of the Daimyo to become a priest at the Forbidden Garden. The Daimyo thinks, if he was in Europe, that his daughter should decide on her own, but he is denuciated and has to comit harakiri. She meets Olaf, falls in love and marries him but after a few months he has to return to Europe. She gave birth to a child and is waiting for him, while he marries in Europe. When he comes back to Japan 4 years later, he is accompained by his European wife...",0,0,Harakiri,en +341962,Stavitel chrámu,1920-03-05,0.0,,,tt1075062,,A Czechoslovakia drama about a Cathedral Builder.,0,0,Stavitel chrámu,en +3016,Dr. Jekyll and Mr. Hyde,1920-03-18,67.0,,,tt0011130,The world's greatest actor in a tremendous story of man at his best and worst!,Dr. Jekyll and Mr. Hyde is a 1920 horror silent film based upon Robert Louis Stevenson's novella The Strange Case of Dr Jekyll and Mr Hyde and starring actor John Barrymore.,0,0,Dr. Jekyll and Mr. Hyde,en +32683,The Flapper,1920-05-10,88.0,,,tt0011193,,"A silent comedy about a Southern teen who, sent to a ritzy boarding school, gets into mischief while acting the sophisticated grownup to impress a suave gentleman and match wits with a pair of jewel thieves. Staring Olive Thomas in one of her few surviving film roles.",0,0,The Flapper,en +53766,Why Change Your Wife?,1920-05-21,90.0,,,tt0011865,,"Robert and Beth Bordon are married but share little. He runs into Sally at a cabaret and the Gordons are soon divorced. Just as he gets bored with Sally's superficiality, Beth strives to improve her looks. The original couple falls in love again at a summer resort.",0,0,Why Change Your Wife?,en +31509,Way Down East,1920-09-03,145.0,,,tt0011841,,"A naive country girl is tricked into a sham marriage by a wealthy womanizer, then must rebuild her life despite the taint of having borne a child out of wedlock.",0,0,Way Down East,en +335450,Life of the Party,1920-11-21,50.0,,,tt0011401,,An attorney is thrust into wild adventures by an attractive young woman.,0,0,Life of the Party,en +51357,The Scarecrow,1920-12-22,19.0,,,tt0011656,,Buster competes with another farmhand for the love of the farmer's daughter.,0,0,The Scarecrow,en +51358,Neighbors,1920-12-22,18.0,,,tt0011508,,The Romeo and Juliet story played out in a tenement neighborhood with Buster and Virginia's families hating each other over the fence separating their buildings.,0,0,Neighbors,en +175334,The Love Light,1921-01-08,89.0,,,tt0012408,,"Angela maintains a coastal lighthouse in Italy, where she awaits the return of her brothers from the war. She learns they are casualties and takes solace in the arms of an American sailor washed ashore. However, the sailor turns out to be a German spy, and she is torn between her love for him and her realization that he is part of the enemy force that has destroyed her family.",0,0,The Love Light,en +175339,Mad Love,1921-09-09,82.0,,,tt0012645,,"The drama begins when handsome Johannes Riemann (as Richard de la Croix) is summoned to an asylum, to check on insane brother Alfred Abel (as Andreas de la Croix). As we see in a later flashback, the alluring Pola Negri (as Sappho) left the innocent Mr. Abel, a lowly engineer, for his well-heeled boss Albert Steinrück (as George Bertink); this helped drive Mr. Abel insane. Presently, when Mr. Riemann finds Ms. Negri, she leaves Mr. Steinruck and moves in with Riemann.",0,0,Sappho,de +139176,Camille,1921-09-26,70.0,,,tt0012027,,"Camille is a courtesan in Paris. She falls deeply in love with a young man of promise, Armand Duval. When Armand's father begs her not to ruin his hope of a career and position by marrying Armand, she acquiesces and leaves her lover. However, when poverty and terminal illness overwhelm her, Camille discovers that Armand has not lost his love for her.",0,0,Camille,en +51362,The Play House,1921-10-26,22.0,,,tt0012570,,"The opening scene, a dream sequence prior to the vaudeville routines which follow, is what makes this film famous. In it Keaton plays everyone in a theatre simultaneously (through multiple exposures).",0,0,The Play House,en +300769,Enchantment,1921-10-29,90.0,,,tt0012136,,The frothy experiences of a vain little flapper. Her father induces an actor friend to become a gentlemanly cave man and the film becomes another variation of the 'Taming of the Shrew' theme.,0,0,Enchantment,en +225503,The Adventures of Tarzan,1921-12-01,150.0,,,tt0011908,,"Tarzan spurns the love of La, Queen of Opar. When he isn't trying to keep the Bolshevik Rokoff and Clayton (pretender to the Greystoke estate) from reaching Opar, he is attacked simultaneously by two lions, dropped into a pit when a volcano splits the ground, nearly sacrificed by sun worshipers, and so on.",0,0,The Adventures of Tarzan,en +131366,Backstairs,1921-12-11,50.0,,,tt0012281,,"A crippled mailman is in love with a maid who lives in the same building he does in one of the city's poor neighborhoods. She, however, is in love with a wealthy, handsome young man. Desperate to win her love, he begins to intercept love letters they send to each other and replaces them with his own messages, which each thinks is from the other. His plan seems to be succeeding, but then something happens that bring tragic results to them all.",0,0,Hintertreppe,de +175457,Opus II,1921-12-31,4.0,,,tt0403386,,An abstract animation from Walter Ruttmann.,0,0,Opus II,en +38742,Cops,1922-03-15,18.0,,,tt0013025,,Buster Keaton gets involved in a series of misunderstandings involving a horse and cart. Eventually he infuriates every cop in the city when he accidentally interrupts a police parade.,0,0,Cops,en +171432,The Man from Beyond,1922-04-01,74.0,,,tt0013367,,A man who has been frozen in the Arctic ice for 100 years returns to civilization to find his lost love.,0,0,The Man from Beyond,en +5998,"Dr. Mabuse, the Gambler",1922-04-27,270.0,,,tt0013086,,"Arch-criminal Dr. Mabuse, who is a master of disguise and has been hypnotising people into doing his bidding, sets out to make a fortune and run Berlin. Detective Wenk sets out to stop him.",0,0,"Dr. Mabuse, der Spieler",de +53231,Beyond the Rocks,1922-05-07,80.0,,,tt0012938,,A young woman marries an older millionaire and then falls in love with a handsome nobleman on her honeymoon.,0,0,Beyond the Rocks,en +95134,Blood and Sand,1922-08-05,80.0,,,tt0012952,,"Juan is the son of a poor widow in Seville. Against his mother's wishes he pursues a career as toreador. He rapidly gains national prominence, and takes his childhood sweetheart Carmen as his bride. He meets the Marquis' daughter Dona Sol, and finds himself in the awkward position of being in love with two women, which threatens the stability of his family and his position in society. He finds interesting parallels in the life of the infamous bandit Plumitas when they eventually meet by chance.",0,0,Blood and Sand,en +71066,Robin Hood,1922-08-18,120.0,,,tt0013556,,"Amid big-budget medieval pageantry, King Richard goes on the Crusades leaving his brother Prince John as regent, who promptly emerges as a cruel, grasping, treacherous tyrant. Apprised of England's peril by message from his lady-love Marian, the dashing Earl of Huntingdon endangers his life and honor by returning to oppose John, but finds himself and his friends outlawed, and Marian apparently dead. Enter Robin Hood, acrobatic champion of the oppressed, laboring to set things right through swash buckling feats and cliffhanging perils!",0,0,Robin Hood,en +130062,The Three Must-Get-Theres,1922-08-22,58.0,,,tt0013674,,"In this movie, Max Linder parodies the famous novel ""The Three Musketeers"".",0,0,The Three Must-Get-Theres,en +51364,The Frozen North,1922-08-28,17.0,,,tt0013158,,"This satirical parody of William S. Hart's melodramatic films finds Buster in the frozen north, ""last stop on the subway."" He uses a wanted poster as his partner in robbing a gambling house. When he thinks he spies his wife making love to another man he shoots them both only to learn it isn't his cabin after all.",0,0,The Frozen North,en +184267,The Young Rajah,1922-11-11,54.0,,,tt0013802,"HE WAS A PRINCE of India, she an American girl.",A young man raised in the American South discovers he is an Indian prince whose throne was taken by usurpers.,0,0,The Young Rajah,en +71067,Tess of the Storm Country,1922-11-12,118.0,,,tt0013662,,"Wealthy Elias Graves builds his home on the top of a hill, where a group of squatters have taken up residence at the bottom. Many of the men in the squatters' village have their eyes on young Tess, and one of them, Ben Letts, frames Tess's father for murder. While maintaining her father's innocence, Tess must keep her love for Graves' son a secret, while caring for Elias' daughter's illegitamate child.",0,0,Tess of the Storm Country,en +28480,Phantom,1922-11-13,125.0,,,tt0013496,,Lorenz Lubota is a city clerk with no direction in life. One day on his way to work he is run over by a woman driving a chariot and he is immediately infatuated with her.,0,0,Phantom,de +38787,Day Dreams,1922-11-15,18.0,,,tt0013055,,"In order to impress the father of a girl he is keen on, Buster goes to the city in search of work. In his letters home he writes of his various jobs which her imagination expands into much nobler ones than those that he is actually attempting.",0,0,Day Dreams,fr +47703,Glumov's Diary,1923-01-01,5.0,,,tt0013992,,"Filmic insert to Eisenstein's modernized, free adaptation of Ostrovskiy's 19th-century Russian stage play, ""The Wise Man"" (""Na vsyakogo mudretsa dovolno prostoty""). The anti-hero Glumov tries to escape exposure in the midst of acrobatics, derring-do, and farcical clowning. Several members of Eisenstein's troupe at the legendary ""Proletkult"" stage theatre in Moscow briefly appear in this little film.",0,0,Дневник Глумова,xx +146730,Alice's Wonderland,1923-01-01,12.0,,,tt0013823,,"Instead of Wonderland, Alice visits the Walt Disney animation room.",0,0,Alice's Wonderland,en +45807,The Balloonatic,1923-01-22,22.0,,,tt0013858,,Buster and Phyllis endure a number of outdoor adventures trying to prove to each other their survival skills. The balloon which lands Buster in the wilderness proves useful later on as their canoe is about go over a waterfall.,0,0,The Balloonatic,en +96951,Salomé,1923-02-15,74.0,,,tt0013571,,Based on Oscar Wilde's play telling the story of how Salomé agrees to dance for King Herod in return for the head of John the Baptist,350000,0,Salomé,en +51367,The Love Nest,1923-03-01,20.0,,,tt0014218,,"In an attempt to forget his lost sweetheart, Buster takes a long trip at the sea when he's caught by pirates.",0,0,The Love Nest,en +70734,The White Sister,1923-09-05,135.0,,,tt0014605,,"Angela Chiaromonte (Lillian Gish) is the daughter of a wealthy Italian prince who is killed in a fall from his horse. Though Angela stands to inherit half of a large estate, her older half-sister burns the will and thus inherits everything herself, throwing Angela into poverty. Fortunately, Angela is engaged to marry dashing Captain Giovanni Severi (Ronald Colman) - but he soon is captured by Arabs while on an expedition to Africa. Believing him dead, Angela, dedicating her life to his memory, becomes a nun, unaware that her lover has escaped his captors and is returning to Italy! The dramatic climax takes place against a backdrop of the eruption of Mount Vesuvius.",0,0,The White Sister,en +32628,Three Ages,1923-09-24,63.0,,,tt0014538,,"""The Three Ages,"" Buster Keaton's first feature-length film after a number of comedy shorts, is his parody of Griffith's ""Intolerance."" Keaton tells three parallel stories about the perils of romance, one set in the Stone Age, one during the Roman Empire, and one during the 20th century.",0,0,Three Ages,en +28974,A Woman of Paris,1923-10-01,78.0,,,tt0014624,,"When Marie St. Clair believes she has been jilted by her artist fiance Jean, she decides to leave for Paris on her own. After spending a year in the city as a mistress of the wealthy Pierre Revel, she is reunited with Jean by chance. This leaves her with the choice between a glamorous life in Paris, and the true love she left behind.",0,0,A Woman of Paris: A Drama of Fate,en +176321,New Year's Eve,1924-01-03,66.0,,,tt0014524,,The film is set in a bar on New Year's Eve. We see plenty of Germans swilling beer non-stop and the owner of the bar and his wife await the arrival of his mother for a little celebration together.,0,0,Sylvester,en +96713,The Marriage Circle,1924-02-10,85.0,,,tt0015119,,"Professor Stock and his wife Mizzi are always bickering. Mizzi tries to seduce Dr. Franz Braun, the new husband of her good friend Charlotte",212000,0,The Marriage Circle,en +104067,America,1924-02-21,141.0,,,tt0014672,,The story of a family caught up in the American Revolutionary War.,0,0,America,en +176298,Opus III,1924-03-11,3.0,,,tt0177955,,An abstract animation from Walter Ruttmann.,0,0,Opus III,en +144613,Beau Brummel,1924-03-30,127.0,,,tt0014702,,"George Bryan Brummel, a British military officer, loves Lady Margery, the betrothed of Lord Alvanley. Despite her own desperate love for Brummel, she submits to family pressure and marries Lord Alvanley. Brummel, broken-hearted, embarks upon a life of revelry.",0,0,Beau Brummel,en +42512,Die Nibelungen: Kriemhild's Revenge,1924-04-25,129.0,,158038,tt0015174,,"After Siegfried's death, Kriemhild marries Etzel, the King of the Huns. She gives birth to a child, and invites her brothers for a party. She tries to persuade Etzel and the other Huns to kill Hagen, the murderer of Siegfried, but he is protected by her brothers. A fierce battle begins to force her brothers to give Hagen to her.",0,0,Die Nibelungen: Kriemhilds Rache,de +32928,The Extraordinary Adventures of Mr. West in the Land of the Bolsheviks,1924-04-26,94.0,,,tt0015167,,"An example of ironic Soviet propagandistic film from the silent era, this film chronicles the adventures of an American, ""Mr. West,"" and his faithful bodyguard and servant Jeddie, as they visit the land of the horrible, evil Bolsheviks. Through various mishaps, Mr. West discovers that the Soviets are actually quite remarkable people, and, by the end of the film, his opinion of them has changed to one of glowing admiration! Written by Mark Toscano",0,0,Neobychainye priklyucheniya mistera Vesta,ru +50329,The Sea Hawk,1924-06-14,123.0,,,tt0015310,,"The adventures of Oliver Tressilian, who goes from English gentry to galley slave to captain of a Moorish fighting ship...",0,0,The Sea Hawk,en +148326,Captain January,1924-07-06,64.0,,,tt0014760,,A lighthouse keeper finds a little girl who is washed ashore tied to some wreckage. He adopts her and they become inseparable. Eventually her real family finds her and tries to take her away.,0,0,Captain January,en +2974,The Hands of Orlac,1924-09-23,113.0,,,tt0015202,,"A world-famous pianist loses both hands in an accident. When new hands are grafted on, he is horrified to learn they once belonged to a murderer.",0,0,Orlacs Hände,de +5991,The Last Laugh,1924-12-23,90.0,,,tt0015064,,"An aging doorman, after being fired from his prestigious job at a luxurious Hotel is forced to face the scorn of his friends, neighbours and society.",0,0,Der letzte Mann,de +120672,Peter Pan,1924-12-29,105.0,,,tt0015224,,Childrens' adventures in Neverland.,0,0,Peter Pan,en +47508,The Wizard of Oz,1925-01-01,81.0,,,tt0016544,,"Toymaker tells a bizarre story about how the Land of Oz was ruled by Prince Kynd, but he was overthrown by Prime Minister Kruel. Dorothy learns from Aunt Em that fat, cruel Uncle Henry is not her uncle, and gives her a note due on her eighteenth birthday, which reveals she is actually Princess Dorothea of Oz, and is supposed to marry Prince Kynd. She, Uncle Henry , and two farmhands are swept to Oz by a tornado. Snowball, a black farmhand soon joins them after a lightning bolt chases him into the sky. They land in Oz, where the farmhands try to avoid capture. Semon becomes a scarecrow, Hardy briefly disguises himself as a Tin Woodman, and Snowball is given a Lion suit by the Wizard, which he uses to scare the Pumperdink guards. Written by Scott Hutchins",0,0,The Wizard of Oz,en +38715,Cobra,1925-01-02,70.0,,,tt0015693,,An impoverished Italian nobleman (Rudolph Valentino) takes a job with a New York antique dealer and falls in love with the secretary. Complications arise when he makes a date with the antique dealer's wife who mysteriously is murdered at the appointed meeting place.,0,0,Cobra,en +184363,Kino-pravda no. 21 - Lenin Kino-Pravda. A Film Poem about Lenin,1925-01-22,23.0,,,tt0015977,,"Film made to commemorate the first anniversary of the death of Vladimir Ilich Lenin (21st January 1924 - 1925) drawn from 'The Final Journey' [Poslednii reis], a Pravda feuilleton written on the occasion of Lenin's funeral, by the man who had introduced Vertov to cinema, Mikhail Koltsov.",0,0,Кино-Правда No 21,ru +105539,The Salvation Hunters,1925-02-15,70.0,,,tt0016310,,A poor family on the docks move to the city to find fulfillment.,0,0,The Salvation Hunters,en +32600,Seven Chances,1925-03-11,56.0,,,tt0016332,Seven laughs a minute!,A man learns he will inherit a fortune if he marries -- by 7 p.m. today.,0,0,Seven Chances,en +184402,Opus IV,1925-04-09,4.0,,,tt0177956,,An abstract animation by Walter Ruttmann.,0,0,Opus IV,de +111759,Don Q Son of Zorro,1925-06-15,111.0,,,tt0015758,,"Returning to the legend that inspired his first swashbuckling adventure, Fairbanks appeared in DON Q, SON OF ZORRO. Don Cesar De Vega (Fairbanks) crosses swords with a vicious member of the Queen's Guard (Donald Crisp, who also directed), and steals the affection of a young heiress (Mary Astor). When the officer frames the young upstart for murder, Don Cesar fakes his own death and retreats to the crumbling ruins of the family castle he plots his vengeance.",0,0,Don Q Son of Zorro,en +168217,Lightnin',1925-08-23,104.0,,,tt0016022,,"Set in a hotel straddling the border between California and Nevada, this early John Ford comedy follows a female hotel owner's efforts to turn a profit and get some work out of her husband.",0,0,Lightnin',en +53230,The Merry Widow,1925-08-26,137.0,,,tt0016104,,"Prince Danilo falls in love with dancer Sally O'Hara. His uncle, King Nikita I of Monteblanco forbids the marriage because she is a commoner. Thinking she has been jilted by her prince, Sally marries old, lecherous Baron Sadoja, whose wealth has kept the kingdom afloat. When he dies suddenly, Sally must be wooed all over again by Danilo.",592,1,The Merry Widow,en +120676,The Circle,1925-09-22,66.0,,,tt0015684,,Silent comedy. A deja vu story of runaway young love.,0,0,The Circle,en +55589,Master of the House,1925-10-05,107.0,,,tt0015768,,A bully browbeats his wife and children until he meets his match in the woman who raised him.,0,0,Du skal ære din hustru,da +149515,The Vanishing American,1925-10-15,110.0,,,tt0016480,,A tribe of Navajo live on a reservation overseen by an Indian-hating agent.,0,0,The Vanishing American,en +33015,Go West,1925-11-01,69.0,,,tt0015863,,"Keaton portrays Friendless, who travels west to try to make his fortune. Once there, he tries his hand at bronco-busting, cattle wrangling, and dairy farming, eventually forming a bond with a cow named ""Brown Eyes."" Eventually he finds himself leading a herd of cattle through Los Angeles.",0,0,Go West,en +130717,Broadway,1929-05-27,105.0,,,tt0019725,,A naive young dancer in a Broadway show innocently gets involved in backstage bootlegging and murder.,1000000,0,Broadway,en +64398,The Pleasure Garden,1925-11-03,75.0,,,tt0016230,,"Patsy Brand is a chorus girl at the Pleasure Garden music hall. She meets Jill Cheyne who is down on her luck and gets her a job as a dancer. Jill meets adventurer Hugh Fielding and they get engaged, but when Hugh travels out of the country, she begins to play around.",0,0,The Pleasure Garden,de +147618,Stage Struck,1925-11-16,70.0,,,tt0016394,,"Stage Struck (1925) is a silent comedy film starring Gloria Swanson, Lawrence Gray, Gertrude Astor, and Ford Sterling. The film was directed by Allan Dwan, and released by Paramount Pictures with sequences filmed in the early two-color Technicolor. The film, including its Technicolor sequences was restored by the George Eastman House film archive in 2004.",0,0,Stage Struck,en +94803,Variety,1925-11-16,104.0,,,tt0016481,NOTHING EVER LIKE IT BEFORE!,The murderer “Boss” Huller – after having spent ten years in prison – breaks his silence to tell the warden his story.,0,0,Varieté,de +89647,Clash of the Wolves,1925-11-17,74.0,,,tt0015687,,"A fire in the mountains drive a wolf pack into the nearby desert where they terrorize the local residents. The leader of the wolf pack is Lobo, actually a halfbreed (Rin Tin Tin). When the pack is discovered hunting a herd of cows, a posse gives chase. Lobo leaves his pack to lead the posse away. He is injured and found by a local prospector, Dave Weston (Charles Farrell). The prospector nurses Lobo back to health and the two become close friends. Meanwhile, Weston has made a Borax find in the area. His girl friend May Barstowe (June Marlowe), daughter of a wealthy rancher, is pleased. However the local chemist, Borax Horton (Pat Hartigan), actually a claim jumper, plans to steal the claim.",0,0,Clash of the Wolves,en +55544,Tartuffe,1925-11-20,74.0,,,tt0017448,,"Young man shows his millionaire grandfather a film based on Molière's Tartuffe, in order to expose the old man's hypocritical governess who covets his own inheritance.",0,0,Herr Tartüff,de +94727,Moana,1926-01-07,77.0,,,tt0017162,,"Robert J. Flaherty's South Seas follow-up to Nanook of the North is a Gauguin idyll moved by ""pride of beauty... pride of strength.""",0,0,Moana,en +111302,The Blackbird,1926-01-11,86.0,,,tt0016655,,"Two thieves, the Blackbird and West End Bertie, fall in love with the same girl, a French nightclub performer named Fifi. Each man tries to outdo the other to win her heart.",0,0,The Blackbird,en +183932,Mare Nostrum,1926-02-15,102.0,,,tt0017120,,The story of a female German spy who willingly sacrifices her life for her country.,0,0,Mare Nostrum,en +27501,The Bat,1926-03-14,86.0,,,tt0016629,A laugh with every gasp!,A masked criminal who dresses like a giant bat terrorizes the guests at an old house rented by a mystery writer.,0,0,The Bat,en +66812,Nana,1926-06-25,150.0,,,tt0017196,,"A government official, Count Muffat, falls under the spell of Nana, a young actress. She becomes his mistress, living in the sumptuous apartment which he provides for her. Instead of elevating herself to Muffat's level, however, Nana drags the poor man down to hers - in the end, both lives have been utterly destroyed.",0,0,Nana,fr +189621,Beau Geste,1926-08-24,102.0,,,tt0016634,,"Michael ""Beau"" Geste leaves England in disgrace and joins the infamous French Foreign Legion. He is reunited with his two brothers in North Africa, where they face greater danger from their own sadistic commander than from the rebellious Arabs.",0,0,Beau Geste,en +32716,3 Bad Men,1926-08-28,92.0,,,tt0017463,,Three outlaws come to the aid of a young girl after her father is killed. A silent film directed by John Ford.,0,0,3 Bad Men,en +19354,The Adventures of Prince Achmed,1926-09-03,65.0,,,tt0015532,,"Based on stories from ""The Arabian Nights."" A wicked sorcerer tricks Prince Achmed into riding a magical flying horse. The heroic prince is able to subdue the magical horse, which he uses to fly off to many adventures. While travelling, he falls in love with the beautiful Princess Peri Banu, and must defeat an army of demons to win her heart. The film is animated using the silhouette technique.",0,0,Die Abenteuer des Prinzen Achmed,de +51371,Battling Butler,1926-09-19,77.0,,,tt0016630,,"Alfred's father feels his son has grown up too comfortably and as a result has not become what a man should be. To remedy this predicament he sends his son Alfred off on a hunting trip. On the trip, in the midst of many follies brought on by his inexperience with the outdoors, he meets a young mountain girl and falls in love with her. Alfred's butler, who has accompanied him on the outing, is sent to arrange the marriage with the girl's father, who thinks Alfred is too weak to become a member of the family. In an attempt to change the father's mind, the butler tells the girl's father and brother that Alfred is actually Alfred ""Battling"" Butler, a professional boxer. The deception works and a wedding is arranged. Comic mischief ensues as Alfred and his butler attempt to make their newly fabricated story seem plausible to the family of his new bride.",0,0,Battling Butler,en +94525,A Page of Madness,1926-09-24,70.0,,,tt0017048,,A man takes a job at an asylum with hopes of freeing his imprisoned wife.,0,0,Kurutta ippêji,ja +98914,Mother,1926-10-11,89.0,,,tt0017128,,"A story about a family torn apart by a worker's strike. At first, the mother wants to protect her family from the troublemakers, but eventually she realizes that her son is right and the workers should strike.",0,0,Мать,ru +102024,The Bridal Party in Hardanger,1926-12-26,104.0,,,tt0016691,,"Based on the novel ""Marit Skjølte"" by Kristofer Janson, this Norwegian silent movie tells the story of young Marit and her love, Anders, who travels to America to seek his fortune. Without Marit's knowledge, he returns to marry a farm heiress.",0,0,Brudeferden i Hardanger,en +961,The General,1926-12-31,79.0,,,tt0017925,"Buster drives ""The General"" to trainload of laughter. (Trade paper ad).","During America’s Civil War Union spies steal engineer Johnnie Gray's (Buster Keaton's) beloved locomotive The General and he single-handedly must do all in his power to get it back. Released throughout most of the world in 1927, this Silent comedy-action film flopped when originally released, but now is regarded as one of the great American motion pictures. The story is based on actual historic events.",750000,0,The General,en +16661,The Kid Brother,1927-01-17,82.0,,,tt0018051,,"The most important family in Hickoryville is (naturally enough) the Hickorys, with sheriff Jim and his tough manly sons Leo and Olin. The timid youngest son, Harold, doesn't have the muscles to match up to them, so he has to use his wits to win the respect of his strong father and also the love of beautiful Mary.",0,0,The Kid Brother,en +134475,The Red Mill,1927-01-29,74.0,,,tt0018311,,"Marion Davies stars in this 1927 silent comedy, about a servant girl who plays matchmaker for the local burgomaster's daughter while setting her own sights on a visiting Irishman. Directed by Fatty Arbuckle (using the pseudonym ""William Goodrich""), the film also features Owen Moore, Louise Fazenda and Snitz Edwards.",0,0,The Red Mill,en +131360,Upstream,1927-01-30,60.0,,,tt0018530,,A silent comedy set in an actor's boardinghouse. Some plot points are seemingly inspired by the Barrymore dynasty.,0,0,Upstream,en +143240,Nigdy w życiu!,2004-02-13,100.0,,,tt0400688,,Journey to find true love.,0,0,Nigdy w życiu!,pl +2760,The Lodger: A Story of the London Fog,1927-02-14,99.0,,,tt0017075,,A London landlady suspects her mysterious new lodger may be The Avenger who is killing blonde women.,12000,0,The Lodger: A Story of the London Fog,en +87894,Mr. Wu,1927-03-26,90.0,,,tt0018179,,"Raised by his grandfather to adhere to the ancient laws of China, Mandarin Wu is a strict authoritarian. However, he is a doting father to his beautiful daughter Nang Ping. Nang Ping is to be married to a man of her father's choosing, a man she does not even know. But she falls in love with a dashing British visitor to China, Basil Gregory. Basil informs Nang Ping that he must return to Britain with his family, but she surprises him with the revelation that she carries his child. Wu learns of his daughter's dishonor and lets the ancient laws of China lead him relentlessly toward tragedy",0,0,Mr. Wu,en +189682,Annie Laurie,1927-05-10,90.0,,,tt0017632,,"The story of the famous battle between the Scots clans of Macdonald and Campbell, and the young woman who comes between them, Annie Laurie.",0,0,Annie Laurie,en +269390,Skull,1927-05-10,48.0,,,tt0943415,,"A rare film which depicts the tragic fate of a Christian lord who fought for his fate in the Edo period. Of note is Utaemon Ichikawa's extraordinary memorable final scenes in which he takes on his enemy with a gash in his forehead and a wild, unkempt mane.",0,0,恐苦呂,en +27503,The Unknown,1927-06-04,63.0,,48802,tt0018528,,Lon Chaney is carnival knife thrower Alonzo the Armless and Joan Crawford is the scantily clad carnival girl he hopes to marry.,217000,0,The Unknown,en +91480,Mockery,1927-08-13,75.0,,,tt0018166,,There is hunger in Siberia during the Russian Civil War. Dim-witted peasant Sergei is searching corpses for food. He meets a mysterious young woman looking for the town of Novokursk. She asks Sergei to tell anyone they might meet that he is her husband. They find an abandoned house where they can rest... But a stranger is hiding inside...,0,0,Mockery,en +44657,Chang: A Drama of the Wilderness,1927-09-03,69.0,,,tt0017743,,"Elephants disrupt the lives of a family deep in the jungles of Northern Siam, and an entire village.",0,0,Chang: A Drama of the Wilderness,en +102384,Two Arabian Knights,1927-09-23,92.0,,,tt0018515,,"Director Lewis Milestone's 1927 comedy follows the exploits of two American soldiers during WWI. Starring William Boyd, Mary Astor and Louis Wolheim.",0,0,Two Arabian Knights,en +36056,The Ring,1927-10-01,116.0,,,tt0018328,Two boxers compete for the love of a woman.,"Both Jack Sander and Bob Corby are boxers in love with Mabel. Jack and Mabel wed, but their marriage is flat. The young wife looks to Bob for comfort.",0,0,The Ring,en +939,The Jazz Singer,1927-10-06,89.0,,,tt0018037,,"A young Jewish man is torn between tradition and individuality when his old-fashioned family objects to his career as a jazz singer. This is the first full length feature film to use synchronized sound, and is the original film musical.",0,0,The Jazz Singer,en +52782,Downhill,1927-10-24,110.0,,,tt0017825,,"After public school student Roddy Berwick takes the blame for a friend's transgression and is expelled, his life goes downhill.",0,0,Downhill,en +73969,My Best Girl,1927-10-31,80.0,,,tt0018183,,"Joe Merrill, son of the millionaire owner of a chain of 5 and 10 cent stores, poses as Joe Grant, and takes a job in the stockroom of one of his father's stores, to prove that he can be a success without his father's influence. There he meets stockroom girl Maggie Johnson, and they fall in love. This causes problems, because Mrs. Merrill had planned for her son to marry Millicent Rogers, a high society girl.",483103,1027757,My Best Girl,en +120831,Love,1927-11-28,81.0,,,tt0018107,Love Makes the World Go 'Round. It Will Spin Lots Faster After You See -- Love,"In Imperial Russia, Anna Karenina falls in love with the dashing military officer Count Vronsky and abandons her husband and child to become his mistress.",0,0,Love,en +67531,West Point,1928-01-07,95.0,,,tt0017534,His idea of Field Manuevers weren't military -- he thought they meant a petting party! While the other,"Wealthy Brice Wayne enters West Point and, though he does well on the football field, angers fellow cadets with his arrogance.",0,0,West Point,en +99875,The Italian Straw Hat,1928-01-13,105.0,,,tt0018523,,"On the day of Fadinard's wedding, his horse eats a lady's hat on a bush at the roadside, while the lady is hidden behind the bush with her lover Lieutenant Tavernier. Because she is married, she cannot return home hatless without being compromised, and Tavernier orders Fadinard to replace the hat with one exactly like it - or else he will wreck his new home. In an elaborate sequence of complications, Fadinard tries to find a hat while keeping to his marriage schedule",0,0,Un chapeau de paille d'Italie,fr +222220,Shooting Stars,1928-02-06,103.0,,,tt0018392,,The husband and wife acting team of Mae Feather and Julian Gordon is torn apart when he discovers she is having an affair with the screen comedian Andy Wilks.,0,0,Shooting Stars,en +95169,Four Sons,1928-02-13,100.0,,,tt0018909,BIG AS THE HEART OF HUMANITY!,"A family saga in which three of a Bavarian widow's sons go to war for Germany and the fourth goes to America, Germany's eventual opponent.",0,0,Four Sons,en +25768,"Steamboat Bill, Jr.",1928-02-14,70.0,,,tt0019421,The Laugh Special of the Age. See It.,The just out of college effete son of a no-nonsense steamboat captain comes to visit his father whom he's not seen since he was little.,0,0,"Steamboat Bill, Jr.",en +3061,The Crowd,1928-02-18,104.0,,,tt0018806,,"The film centers on ambitious but undisciplined New York City office worker John who meets and marries Mary. They start a family, struggle to cope with marital stress, financial setbacks, and tragedy, all while lost amid the anonymous, pitiless throngs of the big city.",0,0,The Crowd,en +110887,A Girl in Every Port,1928-02-26,62.0,,,tt0018937,"You'll Like This One!---It's a rollicking, jolly, happy picture---a laugh all the way.","Two sailors with a rivalry over chasing women become friends. But when one decides to finally settle down, will this mysterious young women come between them?",0,0,A Girl in Every Port,en +78507,Spies,1928-03-22,145.0,,,tt0019415,,The mastermind behind a ubiquitous spy operation learns of a dangerous romance between a Russian lady in his employ and a dashing agent from the government's secret service.,0,0,Spione,de +27507,"Laugh, Clown, Laugh",1928-04-14,73.0,,,tt0019074,,"A professional clown and a self-indulgent count learn to help each other with their problems, but both fall in love with the same young woman.",293000,0,"Laugh, Clown, Laugh",en +53209,The Patsy,1928-04-22,78.0,,,tt0019258,,"A hillarious movie from director King Vidor, with Marion Davies AND Marie Dresler! As the perpetually feuding mother and daughter, Dresler and Davies are not only side-splittingly funny, they are actually quite touching.",0,0,The Patsy,en +104485,The Four Feathers,1929-06-01,0.0,,,tt0018908,Paramount's new sensation!,An Englishman (Richard Arlen) fights in the Sudan after receiving white feathers of cowardice from his fiancee (Fay Wray) and friends.,0,0,The Four Feathers,en +77241,Bir Avuç Deniz,2011-03-11,0.0,,,tt1807984,,,0,0,Bir Avuç Deniz,tr +45665,Plane Crazy,1928-05-14,6.0,,,tt0019278,A Mickey Mouse Sound Cartoon,"Plane Crazy is an American animated short film directed by Walt Disney and Ub Iwerks. The cartoon, released in 1929 by The Walt Disney Studio, was the first creation of the character Mickey Mouse. It was made as a silent film and given a test screening to a theater audience on May 15, 1928, but failed to pick up a distributor. Later that year, Disney released Mickey's first sound cartoon, Steamboat Willie, which was an enormous success. Following this, Plane Crazy was released as a sound cartoon on March 17, 1929.",0,0,Plane Crazy,en +207636,The Cossacks,1928-06-23,92.0,,,tt0018795,,"Stirring romance, hard riding, desperate fighting with the Cossacks playing their game of war and chivalry. A mighty picturization of Count Leo Tolstoi's famous novel of the same name.",0,0,The Cossacks,en +144651,Ghosts Before Breakfast,1928-07-14,6.0,,,tt0123318,,"Hans Richter, noted for his abstract shorts, has everyday objects rebelling against their daily routine.",0,0,Vormittagsspuk,de +42614,Our Dancing Daughters,1928-09-01,84.0,,,tt0019237,,"Diana is outwardly the hit of the party but inwardly virtuous and idealistic. Her friend Ann is thoroughly selfish and amoral. Both are attracted to Ben Black, soon-to-be millionaire. He takes Diana's flirtations with other boys as a sign of disinterest in him and pursues Ann instead, though his real feelings are with Diana.",0,0,Our Dancing Daughters,en +31411,The Cameraman,1928-09-16,76.0,,,tt0018742,,"Buster is a tintype portrait photographer who at first sight develops a serious crush on Sally, a beautiful young woman who works as a secretary for MGM's newsreel department. Buster seeks to also work there, as a newsreel cameraman, in hopes of impressing her. However, his skills with a movie camera are lacking at first. Buster is determined to succeed, in hopes of winning the girl.",0,0,The Cameraman,en +42537,The Wedding March,1928-10-06,113.0,,,tt0019558,,"Prince Nikki, Lieutenant of the Guard in pre WWI Vienna, is flat broke, but the only advice he gets from his parents is either to shoot himself or to marry money. During the Chorpus Christi parade his horse accidentaly hurts poor Mitzi, the daughter of inn-keepers in a Viennese suburb, who is, according to the wishes of her parents, going to marry the butcher Schani. When Nikki visits her at the hospital, they fall in love, much to the dislike of her parents and Schani. Nikki's parents, meanwhile have arranged a prospective marriage with Cecilia, the limping daughter of a very rich non-aristocratic industrial. Due to the fact, that Nikki's father is a general in the Austrian-Hungarian Army, resitance is useless. When Mitzi, after hearing of it, is still refusing Schani's proposal, he vowes to shoot Nikki when he leaves the church.",0,0,The Wedding March,en +27777,The Racket,1928-11-01,84.0,,,tt0019304,,"In this silent film, a renegade police captain sets out to catch a sadistic mob boss.",0,0,The Racket,en +104430,Noah's Ark,1928-11-01,135.0,,,tt0020223,See and Hear the spectacle of the ages!,"The Biblical story of Noah and the Great Flood, with a parallel story of soldiers in the First World War.",0,0,Noah's Ark,en +50916,Two Tars,1928-11-03,21.0,,,tt0019504,,"Stanley and Oliver, two sailors on shore leave, rent a car and go on a drive with their dates, but soon get involved in a huge traffic jam with dozens of ill-tempered motorists. A minor collision sets off an escalating series of retaliations. This film is recognized as one of Laurel and Hardy's greatest.",0,0,Two Tars,en +66897,Les deux timides,1928-12-04,0.0,,,tt0018826,,"Garadoux has beaten his wife. His lawyer Fremissin is young and very shy, and therefore, not very efficient... Two years after, Garadoux is trying to seduce Cecile, but she prefers Fremissin...",0,0,Les deux timides,fr +50181,L'argent,1928-12-25,165.0,,,tt0019646,,"Adapted from the novel L'Argent by Émile Zola, the film portrays the world of banking and the stock market in Paris in the 1920s.",0,0,L'argent,en +173494,My Grandmother,1929-01-01,65.0,,,tt0249816,,"The protagonist, a lazy pen-pusher, gets the sack for his bureaucratic idleness, and learns that the way back into the job market depends on getting a letter of recommendation from a ""grandmother""",0,0,Chemi Bebia,ka +151068,The New Babylon,1929-01-01,120.0,,,tt0020230,,"In the early days of the industrial revolution, a young shop worker falls in love with a soldier before he goes off to war.",0,0,Новый Вавилон,ru +99934,The Flying Fleet,1929-01-19,100.0,,,tt0019886,,"Six friends are to graduate the next day from the United States Naval Academy. They all hope to become aviators. When the officer of the day becomes sick, Tommy Winslow (Ramon Navarro) has to take his place, while the others go out and celebrate.",0,0,The Flying Fleet,en +20213,The Manxman,1929-01-21,100.0,,,tt0020142,,A fisherman and a rising lawyer who grew up as brothers fall in love with the same woman.,0,0,The Manxman,en +171446,Weary River,1929-02-10,86.0,,,tt0019557,,"A gangster is put in prison, but finds salvation through music while serving his time. Again on the outside, he finds success elusive and temptations abound.",0,0,Weary River,en +126958,The Tournament,1929-02-18,90.0,,,tt0019486,,"Rival knights compete for the hand of a beautiful maiden in this period feature from Jean Renoir, unfortunately only available in truncated form.",0,0,Le tournoi dans la cité,fr +5201,Wild Orchids,1929-02-23,100.0,,,tt0020589,,"A prince in Java tries to seduce his visitor's wife, but he's discovered.",322000,0,Wild Orchids,en +85715,Arsenal,1929-02-25,70.0,,441443,tt0019649,,"Set in the bleak aftermath and devastation of the World War I, a recently demobbed soldier, Timosh, returns to his hometown Kiev, after having survived a train wreck. His arrival coincides with a national celebration of Ukrainian freedom, but the festivities are not to last as a disenchanted.",0,0,Арсенал,uk +288521,Why Be Good?,1929-02-28,84.0,,,tt0020585,,Colleen Moore as a flapper who unwittingly falls for the Boss' son.,0,0,Why Be Good?,en +51303,Spite Marriage,1929-03-24,76.0,,,tt0020442,,"Elmer, a humble worker in a dry cleaning establishment, idolizes stage actress Trilby Drew. She, in turn, is carrying a torch for fellow actor Lionel Benmore. When he spurns her for the younger Ethyl Norcrosse, she impulsively asks Elmer to marry her, only to regret it almost immediately. Her handlers extricate her from the marriage, and when Elmer finds himself first in the hands of criminals and then at sea, he is more than happy for the opportunity to forget her. But a series of coincidences throw Elmer and Trilby back together again and she will have cause to re-evaluate her opinion of him.",0,0,Spite Marriage,en +80168,The Wild Party,1929-04-06,77.0,,,tt0020590,The Life of the Party and how!,A comely collegian (Clara Bow) falls for an anthropology professor (Fredric March) and accompanies him on a jungle expedition.,0,0,The Wild Party,en +85507,Coquette,1929-04-06,76.0,,,tt0019788,,A Southern belle's flirtation with a working man leads to tragedy.,0,0,Coquette,en +118131,Where East is East,1929-05-04,65.0,,,tt0020581,,A Chinese wife returns to the American family she left and moves in on her daughter's (Lupe Velez) beau (Lloyd Hughes).,0,0,Where East is East,en +198176,Broadway Babies,1929-06-29,86.0,,,tt0019726,,Dee lives with her two girlfriends in a boarding house. Billy is in love with Dee and runs the show where Dee is in the chorus. He has Dee stepping from the chorus to featured dancer. Gessant is a importer and gambler from Detroit. A gang is trying to keep him in town to fleece him and they use Dee as bait. He is introduced to Dee after her show and she and her friends go out with Gessant and his gambling buddies only because Dee is mad at Billy. Gessant helps her get another job as headliner at the New Moon Club. Billy and Dee break up over this job and Gessant falls for Dee. But Billy still loves Dee and Gessant loves Dee and Dee must choose who she wants.,0,0,Broadway Babies,en +20625,The Cocoanuts,1929-08-03,96.0,,,tt0019777,Paramount's All Talking Musicomedy Sensation,"During the Florida land boom, the Marx Brothers run a hotel, auction off some land and thwart a jewel robbery.",0,0,The Cocoanuts,en +105981,Lucky Star,1929-08-18,90.0,,,tt0020122,,"Mary, a poor farm girl, meets Tim just as word comes that war has been declared. Tim enlists in the army and goes to the battlefields of Europe, where he is wounded and loses the use of his legs. Home again, Tim is visited by Mary, and they are powerfully attracted to each other; but his physical handicap prevents him from declaring his love for her. Deeper complications set in when Martin, Tim's former sergeant and a bully, takes a shine to Mary.",0,0,Lucky Star,en +72856,Hallelujah,1929-08-20,100.0,,,tt0019959,HEAR AND SEE 100 JUBILEE SINGERS!,A black laborer turns preacher after accidentally killing a man.,0,0,Hallelujah,en +88018,The Skeleton Dance,1929-08-21,6.0,,,tt0020414,,"When night falls at a church cemetery, amidst howling dogs, hooting owls and fighting cats, four skeletons rise from their graves for macabre merriment. Dancing and playing music by using each other as instruments, the skeletons party until the rise of the sun, where they frantically rush back into their graves, forming a skeletal chimera to get back faster.",5485,0,The Skeleton Dance,en +117531,The Great Gabbo,1929-09-12,92.0,,,tt0019946,,"For the ventriloquist Gabbo his wooden dummy Otto is the only means of expression. When he starts relying more and more on Otto, he starts going mad.",0,0,The Great Gabbo,en +29043,White Hell of Pitz Palu,1929-10-10,150.0,,,tt0020570,,"A man climbs a 12,000-foot mountain to search for his wife, who was lost on their honeymoon. Another couple makes the dangerous climb with him.",0,0,Die weiße Hölle vom Piz Palü,de +190352,Bouncing Babies,1929-10-11,20.0,,,tt0019715,,"With Wheezer's new baby brother getting all the attention, he tries to send the baby back.",0,0,Bouncing Babies,en +77922,Laila,1929-10-14,165.0,,,tt0020075,,"Ranged across several generations, the story begins with a wealthy merchant, Lind, and his wife travelling in the coldest depths of winter to christen their baby daughter. Attacked by wolves, they lose the baby, which is found by the Lapp Jaampa (a dominating performance by Tryggve Larssen) and subsequently raised by a rich reindeer herder,",0,0,Laila,en +91715,The Taming of the Shrew,1929-10-26,63.0,,,tt0020479,,"Adapted from Shakespeare's play: Baptista Minola, a wealthy resident of Padua, is the father of Katherine and Bianca. The younger daughter, Bianca, is charming and has many suitors. But her father will not allow Bianca to be married until her older sister, who is notoriously quarrelsome and bad-tempered, is married first. When Petruchio comes from Verona to Padua in search of a wife, he hears of this situation, and he accepts the challenge of trying to woo and marry the ill-natured Katherine.",0,0,The Taming of the Shrew,en +190341,The Gypsy Charmer,1929-11-03,69.0,,,tt0015152,,A Finish silent feature about gypsy romance.....,0,0,Mustalaishurmaaja,fi +39048,The Locked Door,1929-11-16,74.0,,,tt0020103,A drama of sacrifice and supreme love,"On her first anniversary, Ann Reagan finds that her sister-in-law is involved with a shady character that she used to be intimate with, and determines to intervene.",0,0,The Locked Door,en +51759,The Love Parade,1929-11-19,107.0,,,tt0020112,,"The queen of mythical Sylvania marries a courtier, who finds his new life unsatisfying.",0,0,The Love Parade,en +77022,The Haunted House,1929-12-02,7.0,,,tt0019968,,Mickey seeks shelter from a storm in a house that turns out to be haunted.The skeletons command him to play the organ; they dance and play along.,0,0,The Haunted House,en +128284,Rain,1929-12-14,12.0,,,tt0020321,,A beautiful and evocative portrait of Ivens' native city of Amsterdam.,0,0,Regen,nl +264309,Navy Blues,1929-12-20,77.0,,,tt0020210,,"On shore leave, a young sailor meets and falls in love with a pretty young blonde. He goes home with her to meet her parents, but they don't approve of him at all. Their daughter takes offense at this, and in the ensuing argument she storms out of the house determined to live on her own.",0,0,Navy Blues,en +86360,Sunnyside Up,1929-12-25,121.0,,,tt0020466,"The screen's first original all talking, singing, dancing musical comedy.","Molly and Bee, sweet young 'working girls,' live in a cheap room over a New York grocery store. Molly's idol, wealthy Jack Cromwell, lives in a Long Island mansion but is markedly less happy, since his fiancée Jane won't discourage her other admirers. Fleeing in his car, Jack ends up in an urban block party where he meets you-know-who.",0,0,Sunnyside Up,en +99767,Their Own Desire,1929-12-27,65.0,,,tt0020488,,"Lally is a rich girl whose Father who writes books and plays Polo. After 23 years of marriage, Father decides to divorce Harriet, his wife, and marry Mrs. Chevers who is also divorcing her husband. This sours Lally on all men, but on vacation she meets Jack, who succeeds in stealing her heart. The trouble begins when Lally discovers that Jack is the son of Beth Chevers, the woman who is to marry her father.",0,0,Their Own Desire,en +190269,New York Nights,1929-12-28,82.0,,,tt0020217,,"Show girl Jill Deverne is married to song writer Fred Deverne, and everyone is involved in the Broadway night life and endless parties. Jill is being pursued by a gangster, and she leaves her husband after he spends the night with a floozie. Jill ends up as the gangster's moll, but she soon gets tired of the lifestyle.",0,0,New York Nights,en +34796,City Girl,1930-02-16,90.0,,,tt0020768,,"Lem goes to Chicago to sell the wheat his family has grown on their farm in Minnesota. There he meets the waitress Kate. They fall in love and get married before going back to the farm. Kate is accepted by Lem's mother and kid sister but is rejected by his father, who believes she married for the money. (And the fact that Lem didn't get a fair price for the wheat is her fault too). The reapers arrive and quickly they make things even more complicated by making their move on Kate. Lem misunderstands the situation and believes Kate is actually interested. In despair Kate leaves the farm and Lem goes looking for her.",0,0,City Girl,en +229221,Spring Is Here,1930-04-13,69.0,,,tt0021413,,Early '30s musical about two sisters in love with the same man.,0,0,Spring Is Here,en +198227,Young Man of Manhattan,1930-05-17,79.0,,,tt0021568,,Two flappers (Claudette Colbert and Ginger Rogers) try to get their newspaper reporter boyfriends to pay attention to them.,0,0,Young Man of Manhattan,en +241374,The Lady of Scandal,1930-05-24,76.0,,,tt0021042,She was put on trial for love because her fiancé's family scented scandal.,"A British man shocks his snooty, disapproving family when he becomes engaged to a famous actress.",0,0,The Lady of Scandal,en +94009,Born Reckless,1930-06-06,82.0,,,tt0020702,The master mind of gangdom gets a change of heart!,"In order to use the publicity to get re-elected, a judge sentences a notorious gangster to fight in the war.",0,0,Born Reckless,en +49308,That Night's Wife,1930-07-06,65.0,,,tt0021406,,"The film revolves around a desperate man who commits a crime in order to support his family, and the moral dilemma the policeman who tracks him down finds himself in.",0,0,その夜の妻,ja +120837,Three Faces East,1930-08-26,71.0,,,tt0021472,,The action takes place during the Great War in the home of the First Lord of the Admiralty.,0,0,Three Faces East,en +77412,Romance,1930-08-26,76.0,,,tt0021310,,An opera star (Greta Garbo) kept by a rich older man (Lewis Stone) falls in love with a preacher (Gavin Gordon).,0,0,Romance,en +166621,Bright Lights,1930-09-20,69.0,,,tt0020713,What a Cast and Story - Crammed With Drama -- Songs -- Girls -- Hatred. And How Dorothy Does That Hula-Hula -- Oh Boy!,"In this light-hearted musical, an early color film, a successful actress tires of the bustle and hustle of her tawdry life and settles down to what she thinks is the blissful mundaneness of married life. Unfortunately, the actual drudgery of wifedom takes her by surprise and domestic turmoil ensues.",0,0,Bright Lights,en +85610,Half Shot at Sunrise,1930-10-04,78.0,,,tt0020945,,"Wheeler and Woolsey play two soldiers who go absent without leave in Paris, during World War I.",0,0,Half Shot at Sunrise,en +108224,Whoopee!,1930-10-05,93.0,,,tt0021549,,"Western sheriff Bob Wells is preparing to marry Sally Morgan; she loves part-Indian Wanenis, whose race is an obstacle. Sally flees the wedding with hypochondriac Henry Williams, who thinks he's just giving her a ride; but she left a note saying they've eloped! Chasing them are jilted Bob, Henry's nurse Mary (who's been trying to seduce him) and others.",0,0,Whoopee!,en +144792,Liliom,1930-10-05,94.0,,,tt0021074,Charles Farrell in his greatest role,"A carousel barker falls in love with a young woman. Both are fired from their jobs, and when the young woman becomes pregnant, the carousel barker tries to help pull off a robbery, which goes wrong. Because of the robbery, he dies, and after spending time in hell, is sent back to earth for one day to try to make amends.",0,0,Liliom,en +72602,Up the River,1930-10-12,85.0,,,tt0021508,You bet ~ IT'S FUNNY a movietone laugh riot,"Two prisoners, Saint Louis and Dannemora Dan, escape during a theatrical production in order to go to the aid of Steve, a former prisoner whose past is about to be exposed by the man who framed Judy unless Steve agrees to help him commit another crime.",0,0,Up the River,en +65874,Borderline,1930-10-13,63.0,,,tt0020701,,A groundbreaking film which deals with an inter-racial love triangle and its effects on the local townsfolk.,0,0,Borderline,en +183832,Billy the Kid,1930-10-18,98.0,,,tt0020693,,"Billy, after shooting down land baron William Donovan's henchmen for killing Billy's boss, is hunted down and captured by his friend, Sheriff Pat Garrett. He escapes and is on his way to Mexico when Garrett, recapturing him, must decide whether to bring him in or to let him go.",0,0,Billy the Kid,en +42640,The Big Trail,1930-11-01,125.0,,,tt0020691,The Most Important Picture Ever Produced,"Breck Coleman leads a wagon train of pioneers through Indian attack, storms, deserts, swollen rivers, down cliffs and so on while looking for the murder of a trapper and falling in love with Ruth Cameron.",0,0,The Big Trail,en +42641,Morocco,1930-11-14,92.0,,,tt0021156,,"The Foreign Legion marches in to Mogador with booze and women in mind just as singer Amy Jolly arrives from Paris to work at Lo Tinto's cabaret. That night, insouciant legionnaire Tom Brown catches her inimitably seductive, tuxedo-clad act. Both bruised by their past lives, the two edge cautiously into a no-strings relationship while being pursued by others. But Tom must leave on a perilous mission: is it too late for them?",0,0,Morocco,en +118134,The Widow From Chicago,1930-11-23,64.0,,,tt0021551,WIDOW STEALS GANGSTERS LOVE,A woman infiltrates a criminal mob to avenge her brother's death.,0,0,The Widow From Chicago,en +90395,Just Imagine,1930-11-23,113.0,,,tt0021016,,"New York, 1980: airplanes have replaced cars, numbers have replaced names, pills have replaced food, government-arranged marriages have replaced love, and test tube babies have replaced ... well, you get the idea. Scientists revive a man struck by lightning in 1930; he is rechristened ""Single O"". He is befriended by J-21, who can't marry the girl of his dreams because he isn't ""distinguished"" enough -- until he is chosen for a 4-month expedition to Mars by a renegade scientist. The Mars J-21, his friend, and stowaway Single O visit is full of scantily clad women doing Busby Berkeley-style dance numbers and worshiping a fat middle-aged man.",0,0,Just Imagine,en +179818,Paid,1930-12-30,86.0,,,tt0021228,,"Mary Turner goes up for three years on a crime she didn't commit. Once out she and former prison mates plan a scam in which old men can be sued for breach of promise - the ""heart balm"" racket. After plotting verious ways to get back at the men who set her up initially, she softens and settles down.",0,0,Paid,en +156360,Millie,1931-02-08,85.0,,,tt0022149,MAN PAYS A PRICE...WOMAN PAYS A PENALTY!,"Millie Blake has a love affair that goes wrong, so Millie plays the field recklessly from that point on. When she finds out that one of the reckless players from her past has now cast his spell on her daughter, she takes matters into her own hands and finds herself in a courtroom trying to find a better defense plea than mother-love and honor-protection.",0,0,Millie,en +42837,The 3 Penny Opera,1931-02-18,112.0,,,tt0021818,,"In London at the turn of the century, the bandit Mack the Knife marries Polly without the knowledge of her father, Peachum, the 'king of the beggars'.",0,0,Die 3 Groschen-Oper,de +156356,Kiki,1931-03-14,87.0,,,tt0022026,,"A young Frenchwoman is determined to get into and stay in show business, no matter what. Then she's determined to win a recently divorced man's heart... again, no matter what.",0,0,Kiki,en +977,Tabu,1931-03-18,84.0,,,tt0022458,,"The youngsters Matahi and Reri are in love with each other. The old warrior Hitu announces that Reri is to be the new chosen virgin for the gods. This means she must stay untouched, otherwise she and her lover will be killed. But Matahi abducts and escapes with her to an island ruled by the white man, where their gods would be harmless and powerless. Tabu is the last film from director F.W. Murnau; he died before the film’s premiere in a car accident.",0,0,Tabu,en +106573,Man of the World,1931-03-28,74.0,,,tt0022119,Beyond the 'shadow of the Law',A young American girl visits Paris accompanied by her fiancee and her wealthy uncle. There she meets and is romanced by a worldly novelist; what she doesn't know is that he is a blackmailer who is using her to get to her uncle.,0,0,Man of the World,en +73420,Dishonored,1931-04-04,91.0,,,tt0021800,Can a Woman Kill a Man With Who She Has Known a Night of Love ?,The Austrian Secret Service sends its most seductive agent to spy on the Russians.,0,0,Dishonored,en +162611,Portrait of a Young Man in Three Movements,1931-04-15,54.0,,,tt0875140,,"This is a non-narrative film comprised mostly of long takes of natural events such as the flow of the tide on a seashore, or the leaves of a tree, or the clouds in the sky.",0,0,Portrait of a Young Man in Three Movements,en +17687,The Public Enemy,1931-04-23,83.0,,,tt0022286,,"James Cagney star's as Tom Powers, a trouble-ridden individual who rises from the position of cheap thug to that of a powerful Prohibition gangster. When his best friend is murdered, Powers self-destructively seeks deadly retaliation.",0,0,The Public Enemy,en +84295,Skippy,1931-04-25,85.0,,,tt0022397,,"Skippy, the mischievous son of a wealthy doctor, meets Sooky in poverty-ridden Shantytown, and together they try to save Sooky's pet from a cruel dogcatcher.",0,0,Skippy,en +178927,The Millionaire,1931-05-01,80.0,,,tt0022151,,"A millionaire automaker retires upon the advice of his doctor, but becomes so bored he buys half interest in a gas station and works it on the sly.",0,0,The Millionaire,en +187993,Halloween,1931-05-01,6.0,,,tt0150814,,Toby the Pup organises a Halloween celebration. Some witches and elves join the party.,0,0,Halloween,en +156335,The Vanishing Legion,1931-06-01,220.0,,,tt0022531,,"A mysterious master criminal known as The Voice plots with his gang to sabotage the Milesburg Oil Company, but the rightful heir has a secret army of her own to protect her rights.",0,0,The Vanishing Legion,en +97024,The Man in Possession,1931-07-04,84.0,,,tt0022117,,"Raymond Dabney returns home after serving a jail sentence for selling a car that is not his. Both his father and brother offered him 500 pounds to get out of the country so he won't bring any trouble to his brother's prospective engagement to a presumably wealthy young lady. Raymond refused and prefer to stay in England on his own expense. Soon enough he finds himself a job as a sherif officer. His first task unexpectedly lead him to be the man in possession to his older brother's fiancee who, as it turns out, not at all wealthy but actually in a lot of debts and desperate to look for a wealthy husband.",0,0,The Man in Possession,en +44463,The Miracle Woman,1931-07-17,90.0,,,tt0022153,,A phony faith healer falls for a blind man and seeks to go straight.,0,0,The Miracle Woman,en +53178,The Cat's Out,1931-07-28,7.0,,,tt0021720,,"A cat, being sent out for the night, begins to make trouble for some birds. He later has a nightmare that the birds grow and begin to extract their revenge.",11087,0,The Cat's Out,en +91961,The Star Witness,1931-08-22,68.0,,,tt0022430,The Greatest Picture of the Year!,"A tough District Attorney (Walter Huston) goes after a murderous crime gang, only to find that his witnesses, an innocent family, have clammed up in fear of reprisals.",0,0,The Star Witness,en +13911,Monkey Business,1931-09-19,77.0,,,tt0022158,,Four stowaways get mixed up with gangsters while running riot on an ocean liner.,0,0,Monkey Business,en +42669,Five Star Final,1931-09-26,89.0,,,tt0021873,A picture as sensational as its subject!,An unscrupulous newspaper editor searches for headlines at any cost.,0,0,Five Star Final,en +53573,Sidewalks of New York,1931-09-26,74.0,,,tt0022382,,A dim-witted slumlord tries to reform a gang of urban boys (and impress an attractive young woman) by transforming their rough neighborhood into a more decent place.,0,0,Sidewalks of New York,en +156326,L'opéra de quat'sous,1931-11-04,104.0,,,tt0022235,,The French-language version of the The Threepenny Opera with a different crew from the german version.,0,0,L'opéra de quat'sous,en +3035,Frankenstein,1931-11-21,71.0,,218406,tt0021884,The man who made a monster.,Henry Frankenstein is a doctor who is trying to discover a way to make the dead walk. He succeeds and creates a monster that has to deal with living again.,291000,12000000,Frankenstein,en +134360,Mickey's Orphans,1931-12-09,7.0,,,tt0022147,,"At Christmas time, Mickey Mouse, Minnie and Pluto are beset by an enormous litter of bratty orphan cats.",0,0,Mickey's Orphans,en +99283,Private Lives,1931-12-12,84.0,,,tt0022279,,"Elyot and Sibyl are being married in a big church ceremony. Amanda and Victor are being married by a French Justice of the Peace. Both couples go to a hotel on the same day and are put in adjoining rooms with adjoining terraces. Things go fine until Amanda sees her former husband Elyot on the adjacent terrace. While they both pretend to be happy, both make plans to leave, but their spouses do not want to leave as it is their respective honeymoons. So the other spouses each go down to the bar. This leaves Elyot and Amanda together and they reminisce. Before long, the sparks again fly and they both decide to leave together to the Mountains of Switzerland. They love, they bicker, they fight, they stop. Then it begins over and over. Then Victor and Sibyl show up at their chalet.",0,0,Private Lives,en +247354,Veiled Aristocrats,1932-02-01,48.0,,,tt0023655,,"A young woman plans to marry, but her mother and brother--a lawyer--don't like her prospective husband and scheme to prevent the marriage.",0,0,Veiled Aristocrats,en +875,Shanghai Express,1932-02-02,80.0,,,tt0023458,,Shanghai Express is an American love story and adventure film by Josef von Sternberg from 1932 starring Marlene Dietrich. The film takes place in a train during the Chinese civil war.,0,0,Shanghai Express,en +118139,The Hatchet Man,1932-02-06,74.0,,,tt0022979,He kills! She thrills!,"When he's forced to kill his best friend, a Chinese hit man adopts the man's daughter.",0,0,The Hatchet Man,en +177190,It's Tough to Be Famous,1932-04-02,79.0,,,tt0021919,He Was Too Busy Making History to Make Love!,A Navy war hero (Douglas Fairbanks Jr.) marries his girlfriend (Mary Brian) and tries to avoid publicity.,0,0,It's Tough to Be Famous,en +246299,Young Bride,1932-04-07,76.0,,,tt0023720,,A newlywed discovers her husband is a cheating phony.,0,0,Young Bride,en +118245,Beauty and the Boss,1932-04-09,66.0,,,tt0021647,,A plain-Jane stenographer blossoms when she accompanies her boss on a business trip to Paris.,0,0,Beauty and the Boss,en +309820,Wild Rose,1932-04-11,70.0,,,tt0485441,,A wild country girl moves to Shanghai with her painter boyfriend and experiences exploitation and poverty.,0,0,野玫瑰,zh +156389,Runt Page,1932-04-11,10.0,,164072,tt0134070,,A kids parody of the Academy nominated movie The Front Page (1931).,0,0,Runt Page,en +125736,The Crowd Roars,1932-04-16,85.0,,,tt0022792,Ablaze with excitement-Heart pounding romance Women never Forget!,"Famous motor-racing champion Joe Greer returns to his hometown to compete in a local race. He discovers his younger brother has aspirations to become a racing champion, and during the race Joe loses his nerve when another driver is killed, leaving his brother to win. Joe's luck takes a plunge whilst his brother rises to height of fame.",0,0,The Crowd Roars,en +175065,Fun on a Weekend,1947-05-15,93.0,,,tt0039405,,Penniless strangers team up to fleece the rich.,0,0,Fun on a Weekend,en +98536,So Big!,1932-04-30,81.0,,,tt0023491,Edna Ferber's epic of American Womanhood,A farmer's widow takes on the land and her late husband's tempestuous son.,0,0,So Big!,en +779,Vampyr,1932-05-06,73.0,,,tt0023649,,A traveler obsessed with the supernatural visits an old inn and finds evidence of vampires.,0,0,Vampyr - Der Traum des Allan Grey,de +33680,Grand Hotel,1932-05-25,112.0,,,tt0022958,Thank The Stars For A Great Entertainment !,"Guests at a posh Berlin hotel struggle through worry, scandal, and heartache.",700000,2594000,Grand Hotel,en +28268,"I Was Born, But...",1932-06-03,100.0,,,tt0023634,,Two young brothers become the leaders of a gang of kids in their neighborhood. Ozu's charming film is a social satire that draws from the antics of childhood as well as the tragedy of maturity.,0,0,Otona no miru ehon - Umarete wa mita keredo,ja +75510,The Purchase Price,1932-07-23,68.0,,,tt0023362,She took another woman's place on her wedding night!,"Barbara Stanwyck plays Joan Gordon, a torch singer who runs away from her gangster boyfriend (Lyle Talbot) to become a mail-order bride to a struggling North Dakota farmer (George Brent). Their relationship has a rocky start, but just as Joan realizes that she is developing feelings for her husband, her old boyfriend arrives to win her back.",0,0,The Purchase Price,en +106112,Flowers and Trees,1932-07-30,8.0,,,tt0022899,,Flowers and trees dance to the music in this Silly Symphony.,15887,0,Flowers and Trees,en +1773,American Madness,1932-08-04,73.0,,,tt0022626,The Great American Picture of Today!,American Madness is a film from director Frank Capra from 1932. Set during the depression the film depicts a bank trustee involved in a robbery scandal.,0,0,American Madness,en +92341,Bird of Paradise,1932-08-12,80.0,,,tt0022689,,"A native girl falls for a visitor to her island, but she's chosen to be sacrificed to the volcano god.",0,0,Bird of Paradise,en +31532,Love Me Tonight,1932-08-13,104.0,,,tt0023158,Warm Love! Hilarious fun! Sweet music! Hot lyrics!,"A Parisian tailor finds himself posing as a baron in order to collect a sizeable bill from an aristocrat, only to fall in love with an aloof young princess.",0,0,Love Me Tonight,en +43131,Speak Easily,1932-08-13,81.0,,,tt0023498,,A professor gets mixed up with chorus girls in a Broadway musical.,0,0,Speak Easily,en +13912,Horse Feathers,1932-08-19,68.0,,,tt0023027,The Maddest Comics of the Screen!,"Quincy Adams Wagstaff, the new president of Huxley U, hires bumblers Baravelli and Pinky to help his school win the big football game against rival Darwin U.",0,0,Horse Feathers,en +3574,Doctor X,1932-08-27,76.0,,,tt0022827,Out-Thrills them all!,A wisecracking New York reporter intrudes on a research scientist's quest to unmask The Moon Killer.,0,0,Doctor X,en +4111,Blondie of the Follies,1932-09-01,91.0,,,tt0022700,,"New York City tenement dwelling neighbors Blondie and Lottie are best friends. When Lottie makes the cast of a big Broadway show, she arranges for Blondie to join the cast as well. But the friendship goes awry when Lottie's sweetheart, wealthy Larry Belmont, falls for Blondie.",0,0,Blondie of the Follies,en +175822,The Phantom Fiend,1932-09-08,85.0,,,tt0023145,,"An elderly couple's lodger, a British musician (Ivor Novello), becomes the suspect in a series of killings.",0,0,The Phantom Fiend,en +68078,Broadway to Cheyenne,1932-09-10,52.0,,,tt0022921,,A cowboy detective goes up against a gang of big-city thugs trying to set up a protection racket out west.,0,0,Broadway to Cheyenne,en +91181,Thirteen Women,1932-09-16,59.0,,,tt0023582,Each One Doomed,"Thirteen women who were schoolmates send to a swami for their horoscopes. Little do they realize that Ursula, a half-breed Asian, is using her hypnotic powers over the swami and them to lead them or their families to their deaths. It seems that she too went to their school, but was forced to leave by their bigotry, and is exacting revenge. Will she be stopped in time to save Laura's son, Bobby?",0,0,Thirteen Women,en +80193,The Big Stampede,1932-10-08,54.0,,,tt0022681,,Deputy Sheriff John Steele recruits bandit Sonora Joe to help him find out who's been bumping off all the local lawmen and rustling the cattle.,0,0,The Big Stampede,en +88271,Where Now Are the Dreams of Youth?,1932-10-13,86.0,,,tt0023450,,"When a young man inherits his father's lucrative business, he cheats the system to set up three of his college friends with jobs.",0,0,Seishun no yume imaizuko,ja +27114,The Phantom of Crestwood,1932-10-14,76.0,,,tt0023335,WHO KILLED JENNY WREN?,Five men have to prove their innocence when a blackmailer is murdered.,0,0,The Phantom of Crestwood,en +170234,Faithless,1932-10-15,77.0,,,tt0022873,,Socialite Carol Morgan romps through the depression and her wealth while breaking up with Bill Wade and getting back together with him.,0,0,Faithless,en +43075,The Cabin in the Cotton,1932-10-15,78.0,,,tt0022735,"They said this book was ""throbbing, vital, absorbing."" (N.Y. American) You'll say the same thing about the picture!",Sharecropper's son Marvin tries to help his community overcome poverty and ignorance.,0,0,The Cabin in the Cotton,en +31592,The Old Dark House,1932-10-20,72.0,,,tt0023293,,"Seeking shelter from a pounding rainstorm in a remote region of Wales, several travellers are admitted to a gloomy, foreboding mansion belonging to the extremely strange Femm family. Trying to make the best of it, the guests must deal with their sepulchral host, Horace Femm and his obsessive, malevolent sister Rebecca. Things get worse as the brutish manservant Morgan gets drunk and runs amok.",0,0,The Old Dark House,en +195,Trouble in Paradise,1932-10-21,83.0,,,tt0023622,,"Trouble in Paradise is one of the most important films of Actor, Producer, and Director Ernst Lubitisch, and his personal favorite of all the films he’s made. A story of two thieves who fall in love and begin doing jobs together under the employment of a beautiful woman who stirs up the relationship.",0,0,Trouble in Paradise,en +156388,The Pie-Covered Wagon,1932-10-30,10.0,,164072,tt0023337,,Baby Burlesk on wagon train fight with Indians.,0,0,The Pie-Covered Wagon,en +3484,The Mask of Fu Manchu,1932-11-05,68.0,,,tt0023194,,Boris Karloff stars as the villainous Dr. Fu Manchu in a race with a team of Englishmen to find the tomb of Ghengis Khan. Fu Manchu wants to use the relics to cause an uprising in the East to wipe out the white race.,0,0,The Mask of Fu Manchu,en +36519,Payment Deferred,1932-11-07,81.0,,,tt0023326,,"Bank clerk William Marble is desperate for money to pay his family's bills. When his wealthy nephew visits, Marble asks him for a loan, but the young man refuses. Marble decides to kill his nephew. It is a twisted path to justice after Marble is transformed by the crime he committed and the wealth he gains.",0,0,Payment Deferred,en +80928,Babes in the Woods,1932-11-19,7.0,,,tt0022647,,"A loose retelling of Hansel and Gretel: two children, lost in the woods, stumble upon a dwarf village. They're lured into a candy house by a Witch with horror-fying results.",16855,0,Babes in the Woods,en +113638,Eskimo,1933-11-14,117.0,,,tt0023990,,The happy life of an Eskimo is disastrously changed when he mingles with an unscrupulous white trader.,0,0,Eskimo,en +84337,Me and My Gal,1932-12-04,79.0,,,tt0023202,,"The film tells the story of jaunty young policeman Danny Dolan (Tracy), who falls in love with waterfront cafe waitress Helen Riley (Bennett)",0,0,Me and My Gal,en +84971,Penguin Pool Murder,1932-12-09,70.0,,,tt0023327,,The body of unscrupulous stockbroker Gerald Parker suddenly appears in the penguin tank at the aquarium.,0,0,Penguin Pool Murder,en +152570,Fast Life,1932-12-16,82.0,,,tt0022882,"The fastest boats afloat! The gayest romance you've ever thrilled at , in a glamorous setting of the millionaire's playground of the Pacific!","Two sailors are leaving the US Navy after 10 years. In their spare time, one of them (Haines) invents a carburetor that should increase the speed that powered boats will run...",0,0,Fast Life,en +15849,The Mummy,1932-12-22,73.0,,221544,tt0023245,It comes to life!,"An ancient Egyptian priest called Imhotep is revived when an archaeological expedition finds his mummy and one of the archaeologists accidentally reads an ancient life-giving spell. Imhotep, escaping from the field site, goes in search for the reincarnation of the soul of his lover.",196000,0,The Mummy,en +354105,The Old Devil,1933-01-01,99.0,,,tt0026193,,French Film,0,0,Cette vieille canaille,fr +46813,Don Quixote,1933-01-01,73.0,,,tt0023956,,"In Spain, in the sixteenth century, an elderly gentleman named Don Quixote has gone mad from reading too many books on chivalry...",0,0,Don Quixote,en +157343,Hard to Handle,1933-01-28,78.0,,,tt0024090,"Hey, Folks!... I'm back!",A hustling public relations man promotes a series of fads.,0,0,Hard to Handle,en +161880,One Step Ahead of My Shadow,1933-02-04,7.0,,,tt0024413,,"Several Chinese residents play music. A dragon frees himself from a cage and goes after them, but fireworks are shoved down the dragon's throat. This causes him to explode and turn into a walking dragon skeleton.",0,0,One Step Ahead of My Shadow,en +53576,What! No Beer?,1933-02-10,66.0,,,tt0024762,,"When Prohibition ends, a barber tries to get in the liquor business only to come up against mobsters.",0,0,What! No Beer?,en +103938,Today We Live,1933-03-03,113.0,,,tt0024675,,"The two lovers are living together and are not married as they hesitantly explain to her brother. They had made a promise as children to get married when they grew up, but they ""didn't wait."" It's an important plot point as it drives Cooper's actions when he discovers that Crawford and Young are living in sin.",0,0,Today We Live,en +37581,Christopher Strong,1933-03-09,78.0,,,tt0023891,"Higher and higher! Faster and faster! She gave herself to the great god Speed, and tried to run away from the fires within her!",A romance develops between a happily married middle-aged British politician and an adventurous young aviatrix.,0,0,Christopher Strong,en +43596,Liebelei,1933-03-10,88.0,,,tt0024252,,"Vienna in the beginning of the twentieth century. Cavalry Lieutenant Fritz Lobheimer is about to end his affair with Baroness Eggerdorff when he meets the young Christine, the daughter of an opera violinist. Baron Eggerdorff however soon hears of his past misfortune...",0,0,Liebelei,de +105548,Secrets,1933-03-16,83.0,,,tt0024539,,"Mary Pickford's final film, Secrets (1933) was a fitting swan song, offering Pickford's best performance in a talking film, in a bravura role that takes her character from flirtatious girlhood through maturity and old age. It's a much better performance than her Oscar-winning one in her first talkie Coquette (1929), which today looks hammy and stilted. Based on a popular 1922 Broadway play by Rudolph Besier and Mary Edginton, Secrets is the story of the marriage of Mary and John Carlton, played by Pickford and Leslie Howard. Mary, the headstrong daughter of a New England shipping magnate, elopes to California in the 1860s with her father's employee. The young pioneers face many hardships both on the journey west and after their arrival, as they create a life, a family and a future together. Years later, John gets involved in politics, and some of the couple's secrets emerge, threatening the marriage and his career.",0,0,Secrets,en +335509,Below the Sea,1933-03-28,78.0,,,tt0023793,Drama of Romance and Danger on the Bottom of the Sea!,"A wealthy woman funds an underwater expedition to explore for marine life, but what she doesn't know is that her ""colleagues"" have other intentions.",0,0,Below the Sea,en +39311,Murders in the Zoo,1933-03-31,62.0,,,tt0024360,,A crazed zoologist uses zoo animals to dispose of his wife's suitors.,0,0,Murders in the Zoo,en +140887,The Three Musketeers,1933-04-07,210.0,,,tt0024663,,,0,0,The Three Musketeers,en +244,King Kong,1933-04-07,100.0,,135495,tt0024216,A Monster of Creation's Dawn Breaks Loose in Our World Today!,An adventure film about a film crew in search of a monster on a remote island. The crew finds King Kong and decides to take him back to New York as a money making spectacle. The film is a masterpiece of Stop-Motion in filmmaking history and inspired a line of King Kong films.,672000,10000000,King Kong,en +12206,The Testament of Dr. Mabuse,1933-04-21,122.0,,,tt0023563,,"Fritz Lang directed this sequel to his nearly four-hour Dr. Mabuse silent of 1922. The film opens with Detective Hofmeister spying on the activities of a criminal syndicate. Not realizing he has been seen, Hofmeister is attacked by the thugs and later turns up out of his mind.",0,0,Das Testament des Dr. Mabuse,de +290379,Looking Forward,1933-04-28,82.0,,,tt0024269,,"Depression Era story set in London has department store owner (Lewis Stone) facing bankruptcy while his family fritters away money. A long-standing employee (Lionel Barrymore) gets fired but finds new life in a home-based bakery. The owner's wife (Benita Hume) can't face life without money, so she runs off with another man. The tables turn, however, when a last-minute reprieve saves the store and a new relationship is forged between the men.",0,0,Looking Forward,en +122709,Zoo in Budapest,1933-04-28,94.0,,,tt0024800,,"Zani is an unusual young man who has spent his entire life in a zoo in Budapest. His only true friends are the zoo's animals. When Zani meets Eve, a young orphan girl, they fall in love. To be together Eve must somehow escape from her strict orphan school. When she does she and Zani must hide overnight in the zoo - where everyone is looking to find them.",0,0,Zoo in Budapest,en +161898,Oil: A Symphony in Motion,1933-05-01,8.0,,,tt1218342,,"A self-proclaimed saga of oil, celebrating the speed and power of plane, trains, and automobiles.",0,0,Oil: A Symphony in Motion,en +27986,The Story of Temple Drake,1933-05-06,70.0,,,tt0024617,,"A wealthy but neurotic Southern belle finds herself trapped in the hideout of a gang of vicious bootleggers. The gang's leader lusts after her, and is determined not to let anything stand in the way of his having her.",0,0,The Story of Temple Drake,en +81110,The Eagle and the Hawk,1933-05-06,68.0,,,tt0023973,,The pilots of a Royal Air Force squadron in World War I face not only physical but mental dangers in their struggle to survive while fighting the enemy.,0,0,The Eagle and the Hawk,en +179066,I Live My Life,1935-10-04,97.0,,,tt0026417,The dancing lady has a new sweetheart ...!,A flighty society girl tries to make a go of her marriage to an archaeologist.,0,0,I Live My Life,en +162862,Peg o' My Heart,1933-05-26,87.0,,,tt0024433,,"Peg and her father live a simple life in an Irish fishing village. One day Sir Gerald arrives at the village to tell Pat that Peg is heir to estate of her grandfather, who hated Pat. The upshot of the will is that she must go to England for 3 years to learn to be a lady and that Pat can never see her again.",0,0,Peg o' My Heart,en +84905,Somewhere in Sonora,1933-05-27,59.0,,,tt0024592,Death rides south of the border!,"John Bishop discovers a plot to rob a silver mine belonging to his girlfriend Mary's father and, to foil the evildoers, he joins them.",0,0,Somewhere in Sonora,en +126516,Every-Night Dreams,1933-06-08,64.0,,,tt0024793,,"In the formally ravishing Every-Night Dreams, set in the dockside neighborhoods of Tokyo, a single mother works tirelessly as a Ginza bar hostess to ensure a better life for her young son—until her long-lost husband returns.",0,0,Yogoto no yume,ja +242131,Ann Carver's Profession,1933-06-09,71.0,,,tt0023758,Pity me... I had love -- and threw it away!,Newlyweds experience marital problems when the wife's highly successful job as an attorney overshadows her husband's stagnant career.,0,0,Ann Carver's Profession,en +223497,Professional Sweetheart,1933-06-09,73.0,,,tt0024476,,A radio star's pure image leads to a fake engagement to a hayseed.,0,0,Professional Sweetheart,en +175035,When Ladies Meet,1933-06-23,85.0,,,tt0024763,,"Mary, a writer working on a novel about a love triangle, is attracted to her publisher. Her suitor Jimmy is determined to break them up; he introduces Mary to the publisher's wife without telling Mary who she is.",0,0,When Ladies Meet,en +248639,The Narrow Corner,1933-07-07,69.0,,,tt0024373,,An Englishman sought for murder escapes to South Seas island.,0,0,The Narrow Corner,en +114348,Pilgrimage,1933-07-12,96.0,,,tt0024453,,"The story of an Arkansas farm woman and her son. When the son expresses his desire to marry a girl who comes from a family that the mother thinks is trash, she enrolls him in the army.",0,0,Pilgrimage,en +80592,The Man from Monterey,1933-07-15,57.0,,,tt0024293,,A cavalry officer helps save a family's ranch from land grabbers,0,0,The Man from Monterey,en +175027,Double Harness,1933-07-21,69.0,,,tt0023960,The story of a temporary marriage,"After tricking him into marriage, a woman (Ann Harding) tries to win the love of her philandering husband (William Powell).",0,0,Double Harness,en +176627,Mary Stevens M.D.,1933-07-22,72.0,,,tt0024307,,A woman doctor decides to have a baby without benefit of marriage.,0,0,Mary Stevens M.D.,en +120657,The Stranger's Return,1933-07-28,89.0,,,tt0024620,A story of real people,"""Miriam Hopkins plays Louise Starr, who gets divorced from her husband and returns to the home she left on a farm where she reunites with her grandfather. He introduces her to Guy Crane with whom she falls in love; however, he is married.""",0,0,The Stranger's Return,en +164504,Man of the Forest,1933-08-24,62.0,,,tt0024301,,"Beasley, who is after Gayner's land, plans to kidnap his daughter. But Dale overhears their plan and kidnaps her himself. When Gayner arrives to retrieve his daughter, Beasley kills him and makes the Sheriff arrest Dale for the murder.",0,0,Man of the Forest,en +206237,Ray of Sunshine,1933-08-25,87.0,,,tt0024600,,"Hans, living in Vienna during the Great Depression, intends to drown himself in the river after losing his livelihood. While there he meets a girl named Anna after pulling her from the river.",0,0,Sonnenstrahl,de +39130,Dinner at Eight,1933-08-29,111.0,,,tt0023948,,"Social climbing Millicent and Oliver Jordan throw a dinner for a bunch of New York society types, each of whom has much to reveal.",0,0,Dinner at Eight,en +122435,S.O.S. Iceberg,1933-08-30,90.0,,,tt0024514,,A expedition goes in search of a party lost the year before.,0,0,S.O.S. Eisberg,de +180635,One Sunday Afternoon,1933-09-01,85.0,,,tt0024414,,"Middle-aged dentist Biff Grimes reminisces about his unrequited love for beautiful Virginia Brush and her husband Hugo, his ex-friend, who betrayed him.",0,0,One Sunday Afternoon,en +126127,Rafter Romance,1933-09-01,73.0,,,tt0024484,,"A working girl shares her apartment with an artist, taking the place in shifts.",0,0,Rafter Romance,en +82178,Torch Singer,1933-09-08,71.0,,,tt0024685,,"When she can't support her illegitimate child, an abandoned young woman puts her up for adoption and pursues a career as a torch singer.",0,0,Torch Singer,en +34977,Penthouse,1933-09-08,88.0,,,tt0024435,,"Gertie Waxted (Myrna Loy) knows how a notorious gangster Jim Crelliman runs his rackets, because she’s long been under the hoodlum’s thumb. No more. She’s secretly helping lawyer Jackson Durant (Warner Baxter) in a snoop job aimed at pinning a murder on the thug. Her life will be in peril when that secret gets out.",0,0,Penthouse,en +413669,Charlie Chan's Greatest Case,1933-09-14,70.0,,38451,tt0023881,,Charlie Chan's Greatest Case,0,0,Charlie Chan's Greatest Case,en +104211,Berkeley Square,1933-09-15,84.0,,,tt0023794,,A young American man is transported back to London in the time of the American Revolution and meets his ancestors.,0,0,Berkeley Square,en +50073,Wild Boys of the Road,1933-09-22,68.0,,,tt0024772,Girls living like boys! Boys living like savages!,"At the height of the Great Depression, Tommy's mother has been out of work for months when Eddie's father loses his job. Eager not to burden their parents, the two high school Sophomores decide to hop the freight trains and look for work.",0,0,Wild Boys of the Road,en +43594,The Emperor Jones,1933-09-29,72.0,,,tt0023985,,"Unscrupulously ambitious ,Brutus Jones escapes from jail after killing a guard and, through bluff and bravado, finds himself the emperor of a Caribbean island.",0,0,The Emperor Jones,en +96702,The Power and the Glory,1933-10-06,76.0,,,tt0024465,,"A man's life is retold just after his funeral. Beginning as a track walker, Tom Garner rose through all sorts of railroad jobs to head the company. In the meantime he lost touch with his family. When he saw what was happening it was already too late.",0,0,The Power and the Glory,en +147876,The Bowery,1933-10-07,92.0,,,tt0023838,,"""In the Gay Nineties New York had grown up into bustles and balloon Sleeves ... but The Bowery had grown younger, louder and more rowdy until it was known as the 'Livest Mile on the face of the globe' ... the cradle of men who were later to be famous.",421496,0,The Bowery,en +161885,Betty Boop's Hallowe'en Party,1933-11-03,7.0,,,tt0023800,,Betty Boop hosts a Hallowe'en party with a few uninvited guests.,0,0,Betty Boop's Hallowe'en Party,en +49961,A Song of Lisbon,1933-11-07,85.0,,,tt0023871,,"Vasco is a medical student in Lisbon, supported by his rich aunts, whom he had falsely told he had already graduated. In fact, he devotes himself to a bohemian life, preferring the popular fairs and pretty women, especially Alice, a seamstress from the Castelinhos quarter, which rather upsets her ambitious father, tailor Caetano, who is familiar with Vasco's debts. After failing yet another final exam, he is surprised by his aunts' announcement that they will visit him in Lisbon to see his practice.",0,0,A Canção de Lisboa,pt +3063,Duck Soup,1933-11-17,68.0,,,tt0023969,War Is Swell ...when the Marx Brothers are in it. They'll be out of the trenches by Christmas...if the food doesn't improve,Rufus T. Firefly is named president/dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of wealthy Mrs. Teasdale.,0,0,Duck Soup,en +109886,Man's Castle,1933-11-20,75.0,,,tt0024302,,"Impoverished Bill befriends starving Trina and takes her into his shantytown cabin and looks after her, but making clear there are no strings attached and that he remains entirely free.",0,0,Man's Castle,en +39938,Little Women,1933-11-24,115.0,,,tt0024264,,"Little Women is a ""coming of age"" drama tracing the lives of four sisters: Meg, Jo, Beth and Amy. During the American Civil War, the girls father is away serving as a minister to the troops. The family, headed by thier beloved Marmee, must struggle to make ends meet, with the help of their kind and wealthy neighbor, Mr. Laurence, and his high spirited grandson Laurie.",424,0,Little Women,en +126418,Should Ladies Behave,1933-12-01,87.0,,,tt0024553,,"A middle-aged houseguest causes romantic turmoil when he falls in love with his host's teenage daughter. Director Harry Beaumont's pre-code comedy stars Lionel Barrymore, Alice Brady, Godfrey Tearle, Mary Carlisle, William Janney, Katharine Alexander and Halliwell Hobbes.",0,0,Should Ladies Behave,en +161967,Sittin' on a Backyard Fence,1933-12-15,7.0,,,tt0024569,,Cats fighting each other over a tabby around the eponymous back yard fence.,0,0,Sittin' on a Backyard Fence,en +23590,Sagebrush Trail,1933-12-15,54.0,,,tt0024516,Romance rides in a drama of thundering hoofs and blazing guns!,"Imprisoned for a murder he did not commit, John Brant escapes and ends up out west where, after giving the local lawmen the slip, he joins up with an outlaw gang. Brant finds out that 'Jones', one of the outlaws he has become friends with, committed the murder that Brant was sent up for, but has no knowledge that anyone was ever put in jail for his crime. Willing to forgive and forget, Brant doesn't realize that 'Jones' has not only fallen for the same pretty shopgirl Brant has, but begins to suspect that Brant is not truly an outlaw.",0,0,Sagebrush Trail,en +25694,Alice in Wonderland,1933-12-22,76.0,,,tt0023753,The Entertainment Miracle Of All Times!,"On a boring winter afternoon, Alice dreams, that she's visiting the land behind the mirror. This turns out to be a surrealistic nightmare, with all sorts of strange things happening to her, like changing her size or playing croquet with flamingos.",0,0,Alice in Wonderland,en +43149,The Son of Kong,1933-12-22,70.0,,135495,tt0024593,SEE! The cannibals! The earthquake! The sea serpent! The fighting monsters of ages past!,Beleaguered adventurer Carl Denham returns to the island where he found King Kong.,250000,0,The Son of Kong,en +53792,Counsellor at Law,1933-12-25,82.0,,,tt0023911,Great is the word for...COUNSELLOR AT LAW!,Successful attorney has his Jewish heritage and poverty-stricken background brought home to him when he learns his wife has been unfaithful.,0,0,Counsellor at Law,en +28293,Flying Down to Rio,1933-12-29,89.0,,,tt0024025,Too big for the world... So they staged it in the clouds... Too beautiful for words... So they set it to music!,A dance-band leader finds love and success in Brazil. The first Fred Astaire-Ginger Rogers movie.,0,0,Flying Down to Rio,en +43692,The Clairvoyant,1934-01-01,81.0,,,tt0024989,HEXED BY THE EVIL EYE,A fake psychic suddenly turns into the real thing when he meets a young beauty. (TCM),0,0,The Clairvoyant,en +120972,Everybody's Woman,1934-01-01,97.0,,,tt0025791,,"Gaby is expelled from school after a married teacher commits suicide after telling her he can't live without her. Though she has done nothing, she is punished for his act.",0,0,La signora di tutti,it +52907,Waltzes from Vienna,1934-01-31,81.0,,,tt0024747,,The story of Johann Strauss the elder and younger.,0,0,Waltzes from Vienna,en +144111,Nana,1934-02-01,90.0,,,tt0025555,,Two Brothers fight over a revue singer who becomes the toast of late-1800's Paris. Black & White,0,0,Nana,en +178341,Mandalay,1934-02-10,65.0,,,tt0025461,,"Abandoned by her lover, a woman becomes the main ""hostess"" in a decadent nightclub, but tries to put her past behind her on a steamer to Mandalay.",0,0,Mandalay,en +40799,West of the Divide,1934-02-15,54.0,,,tt0025969,A Two Gun Son Of The West Takes The Law Into His Own Hands!,Ted Hayden impersonates a wanted man and joins Gentry's gang only to learn later that Gentry was the one who killed his father.,0,0,West of the Divide,en +3078,It Happened One Night,1934-02-22,105.0,,,tt0025316,TOGETHER... for the first time,"Ellie Andrews has just tied the knot with society aviator King Westley when she is whisked away to her father's yacht and out of King's clutches. Ellie jumps ship and eventually winds up on a bus headed back to her husband. Reluctantly she must accept the help of out-of- work reporter Peter Warne. Actually, Warne doesn't give her any choice: either she sticks with him until he gets her back to her husband, or he'll blow the whistle on Ellie to her father. Either way, Peter gets what he wants... a really juicy newspaper story!",325000,4500000,It Happened One Night,en +87123,Heat Lightning,1934-03-03,63.0,,,tt0025228,"""I just killed a rat!""",A lady gas station attendant gets mixed up with escaped murderers.,0,0,Heat Lightning,en +236395,Success At Any Price,1934-03-16,74.0,,,tt0025844,,A ruthless opportunist climbs his way up the business ladder. Drama.,0,0,Success At Any Price,en +42752,Midnight,1934-03-17,76.0,,,tt0025499,,"Jury foreman Edward Weldon's questioning leads to the death sentence for Ethel Saxon. His daughter Stella claims to have killed her lover, the gangster Garboni, just as Saxon was to sit in the electric chair.",0,0,Midnight,en +109298,The Big Bad Wolf,1934-04-14,9.0,,,tt0024886,,The Big Bad Wolf torments Robin Hood and the Three Little Pigs.,27878,0,The Big Bad Wolf,en +43904,L'Atalante,1934-04-24,89.0,,,tt0024844,,Newly married couple Juliette and a ship captain Jean struggle through marriage as they travel on the L'atalante along with the captain's first mate Le père Jules and a cabin boy.,0,0,L'Atalante,fr +32996,We're Not Dressing,1934-04-27,74.0,,,tt0025965,,"Beautiful high society type Doris Worthington is entertaining guests on her yacht in the Pacific when it hits a reef and sinks. She makes her way to an island with the help of singing sailor Stephen Jones. Her friend Edith, Uncle Hubert, and Princes Michael and Alexander make it to the same island but all prove to be useless in the art of survival. The sailor is the only one with the practical knowhow to survive but Doris and the others snub his leadership offer. That is until he starts a clam bake and wafts the fumes in their starving faces. The group gradually gives into his leadership, the only question now is if Doris will give into his charms.",0,0,We're Not Dressing,en +22606,Texas Terror,1935-10-17,50.0,,,tt0027087,,Sheriff John Higgins quits and goes into prospecting after he thinks he has killed his best friend in shooting it out with robbers. He encounters his dead buddy's sister and helps her run her ranch. Then she finds out about his past.,0,0,Texas Terror,en +166883,Le Grand Jeu,1934-05-02,110.0,,,tt0025198,,"Pierre , a young lawyer, has enormous debts due to his mistress Florence and her whims of luxury life. Pierre has gone too far and put the family firm in jeopardy. They ask him to expatriate. To avoid scandal, Pierre joins the Foreign Legion. In Morocco, near the desert, Pierre goes with his comrades of the Legion to a bar-restaurant-brothel, owned by a shady character, Mr. Clement . Clement lives more or less with Ms.Blanche who is a fortune teller with cards, as a hobby. But Clement is also after his girls now and then. Pierre is still obsessed with Florence but he meets Irma , one of Clement's girls, who is the double of Florence except for hair color. Irma has had an accident and has lost part of her memory at a certain point of her recent past, and Pierre slowly persuades himself she is Florence, but cannot remember it. Advised by Ms.Blanche, Irma finally accepts to act as if she was Florence because she is falling in love with Pierre.",0,0,Le grand jeu,fr +28564,Manhattan Melodrama,1934-05-04,93.0,,,tt0025464,"He knew about her past, but he didn't care.",The friendship between two orphans endures even though they grow up on opposite sides of the law and fall in love with the same woman.,0,0,Manhattan Melodrama,en +31527,The Scarlet Empress,1934-05-09,104.0,,,tt0025746,,Young German princess Sophia is married off to Russia's half-mad Grand Duke Peter in the hope of improving the royal blood line.,900000,0,The Scarlet Empress,en +31835,Twentieth Century,1934-05-11,91.0,,,tt0025919,,"Oscar Jaffe is a successful Broadway director, Lily Garland his biggest star. When she leaves his direction, his success goes with her. When he recognizes her aboard the Twentieth Century Limited, the train that both of them are riding, he tries to get her back for a new show. But accomplishing that feat isn't as simple as he had thought.",0,0,Twentieth Century,en +135335,A Mother Should Be Loved,1934-05-11,93.0,,,tt0025214,,The film tells of the strained relationship between a mother and her two sons after the death of the family patriarch.,0,0,母を恋はずや,ja +53622,The Man From Utah,1934-05-15,55.0,,,tt0025455,FRAMED BY A GANG of Murderig Thieves!,"The Marshal sends John Weston to a rodeo to see if he can find out who is killing the rodeo riders who are about to win the prize money. Barton has organized the rodeo and plans to leave with all the prize money put up by the townspeople. When it appears that Weston will beat Barton's rider, he has his men prepare the same fate for him that befell the other riders.",0,0,The Man From Utah,en +132714,Gulliver Mickey,1934-05-19,8.0,,,tt0025211,,"Mickey is first seen reading Gulliver's Travels while the mice orphan children are pretending to be sailors. After ruining their game Mickey tries to make it up to them by retelling the Liliput sequences of Gulliver's Travels pretending it was a real event that happened to him by portraying the role of Gulliver. The story ends with Mickey saving the town from a giant spider (Pete). However after telling the story, one of the children dangles a fake spider attached to a fishing rod which scares Mickey out of his witts.",0,0,Gulliver Mickey,en +22602,Randy Rides Alone,1934-06-05,53.0,,,tt0025699,Fearless--- He Rode the Danger Trail!,"Bandits lead by Matt the Mute enter a bar and kill multiple people. Randy Bowers comes to town and is framed by Matt the Mute, who is working with the sheriff (who doesn't know Matt is really a criminal). Randy escapes with the help of the niece of the dead owner of the bar. Bowers ends up running from the sheriff, and ends up in the cave in which the bandits have their hide-out…",0,0,Randy Rides Alone,en +53865,The Key,1934-06-09,71.0,,,tt0025346,,A British officer stationed in Ireland falls for the wife of an intelligence man.,0,0,The Key,en +130881,Red Ensign,1934-06-17,69.0,,,tt0025704,not applicable,David Barr is the manager and chief designer of a British shipyard in decline. The shipyard is in financial trouble but Barr has a design for a new ship that will save them all. Can he get the ship built in spite of the opposition from his own bankers as well as the rival shipbuilders and their infiltrated militants.,0,0,Red Ensign,en +43688,The Old Fashioned Way,1934-07-13,71.0,,,tt0025590,,The Great McGonigle and his troupe of third-rate vaudevillians manage to stay one step ahead of the bill collectors and the sheriff.,0,0,The Old Fashioned Way,en +57866,Kiss and Make-Up,1934-07-13,78.0,,,tt0025351,...a racy romance of a famous beauty doctor.,"Dr. Maurice Lamar is a noted plastic-surgeon who makes his rich clients beautiful, and also makes them. He makes Eve Caron, the wife of Marcel Caron, so satisfied with his skilled hands that she leaves Marcel and marries Maurice. They go on a Mediterranean honeymoon, where he soon finds the affects of his own beauty regulations are more than he can handle. He bids adieu to his new bride, wings it back to Paris with the intention of giving up his practice and becoming a scientific researcher...after winning back the love of his simple, unadorned secretary, Anne.",0,0,Kiss and Make-Up,en +38107,The Star Packer,1934-07-30,53.0,,,tt0025830,He fought for justice--and battled for love! He fought for JUSTICE!-- Battled for LOVE!,"John Travers and Yak, his faithful Indian sidekick, pick up where a murdered sheriff leaves off, and try to nab the mysterious Shadow.",0,0,The Star Packer,en +121003,The Girl from Missouri,1934-08-03,75.0,,,tt0025173,,Chorus girl Eadie is determined to marry a millionaire without sacrificing her virtue.,0,0,The Girl from Missouri,en +111582,She Loves Me Not,1934-08-31,85.0,,,tt0025774,,A cabaret dancer witnesses a murder and is forced to hide from gangsters by disguising herself as a male Princeton student.,0,0,She Loves Me Not,en +50079,Chained,1934-08-31,76.0,,,tt0024963,"When she's in his arms, it's the grandest thrill the screen can give!",A mistress of one man has a shipboard romance with another and is torn between both men.,0,0,Chained,en +43903,Dames,1934-09-01,91.0,,,tt0025028,,A reformer's daughter wins the lead in a scandalous Broadway show.,0,0,Dames,en +157898,Desirable,1934-09-08,68.0,,,tt0025046,,A man meets the daughter of his lover and they begin to fall in love.,0,0,Desirable,en +110540,The Age of Innocence,1934-09-14,81.0,,,tt0024819,,An engaged attorney and a divorcee fall for each other in 1870s Manhattan.,0,0,The Age of Innocence,en +84097,One Night of Love,1934-09-15,84.0,,,tt0025601,A great star comes into her own!,"Mary Barrett is an aspiring Opera singer who is taken under the wings of a famous operatic maestro, Guilio Monterverdi. After spending endless working hours together and arguing, their relationship develops into love. But, jealousy and misunderstandings prevent Mary and Guilio from acknowledging their true feelings.",0,0,One Night of Love,en +75880,Belle of the Nineties,1934-09-21,70.0,,,tt0024873,,"Mae West, full of bosom and double entendre, wrote this lightweight saga of multiple loves which appears in a lavish (for 1934) production featuring songs backed by Duke Ellington.",0,0,Belle of the Nineties,en +183039,Broken Blossoms,1936-05-20,84.0,,,tt0027400,,"A Chinese missionary comes to England. He helps a young girl ill-treated by her father. A remake of D. W. Griffith's ""Masterpiece"".",0,0,Broken Blossoms,en +144475,The Case of the Howling Dog,1934-09-22,74.0,,,tt0024958,,"A very nervous man named Cartwright comes into Perry's office to have the neighbor arrested for his howling dog. He states that the howling is a sign that there is a death in the neighborhood. He also wants a will written giving his estate to the lady living at the neighbors house. It is all very mysterious and by the next day, his will is changed and Cartwright is missing, as is the lady of the house next door. Perry has a will and a retainer and must find out whether he has a client or a beneficiary.",0,0,The Case of the Howling Dog,en +43902,Cleopatra,1934-10-05,100.0,,,tt0024991,,The queen of Egypt (Claudette Colbert) barges the Nile and flirts with Mark Antony (Henry Wilcoxon) and Julius Caesar (Warren William).,0,0,Cleopatra,en +43900,Angele,1934-10-26,145.0,,,tt0024830,,"Angèle is a 1934 French drama film directed, produced and written by Marcel Pagnol. It stars Orane Demazis as a naive young woman who is seduced and abandoned. It is based on the novel Un de Baumugnes by Jean Giono.",0,0,Angèle,en +179603,Woman in the Dark,1934-11-08,68.0,,,tt0026003,,Lightweight but entertaining crime/drama about a man (Ralph Bellamy) released from prison and deciding to stay alone in his cabin so that his bad temper won't get him back into prison.,0,0,Woman in the Dark,en +53864,Evelyn Prentice,1934-11-09,79.0,,,tt0025091,"Remember ""The Thin Man""? Well, here they are together again!",A criminal lawyer's wife faces blackmail when she has an affair.,0,0,Evelyn Prentice,en +182035,In Old Santa Fe,1934-11-15,64.0,,,tt0025303,An unusual and colorful western with music and a beautiful background.,"Gangster Chandler and his accomplice Tracy arrive at a dude ranch. Cowboy Kentucky arrives at the same time. When Tracy double-crosses his boss and has the stage robbed, Kentucky finds the outlaws and brings them in. Tracy frames him for the murder of the driver but his pal Cactus gets him out of jail. He returns just as Chandler shoots Tracy and Kentucky finds himself arrested for another murder.",0,0,In Old Santa Fe,en +47921,Imitation of Life,1934-11-26,111.0,,,tt0025301,Claudette Colbert at her finest in Imitation of Life,A widow and her housekeeper go into business together but almost lose their daughters.,0,0,Imitation of Life,en +28001,It's a Gift,1934-11-30,68.0,,,tt0025318,,"After he inherits some money, Harold Bissonette (""pronounced bis-on-ay"") decides to give up the grocery business, move to California and run an orange grove. Despite his family's objections and the news that the land he bought is worthless, Bissonette packs up and drives out to California with his nagging wife Amelia and children.",0,0,It's a Gift,en +183171,Dangerous Corner,1934-12-04,66.0,,,tt0025031,,Friends uncover a dark secret when they compare notes about a theft and suicide.,0,0,Dangerous Corner,en +25898,Babes in Toyland,1934-12-14,73.0,,,tt0024852,,"Ollie Dee and Stanley Dum try to borrow money from their employer, the toymaker, to pay off the mortgage on Mother Peep's shoe and keep it and Little Bo Peep from the clutches of the evil Barnaby. When that fails, they trick Barnaby into marrying Stanley Dum instead of Bo Peep. Enraged, Barnaby unleashes the bogeymen from their caverns to destroy Toyland.",0,0,Babes in Toyland,en +169355,Here Is My Heart,1934-12-28,77.0,,,tt0025239,,"A rich and famous singer disguises himself as a waiter in order to be near the woman he loves, a European princess.",0,0,Here Is My Heart,en +43895,Our Little Girl,1935-01-01,65.0,,,tt0026835,,"Don Middleton is so caught up with his work he neglects his wife Elsa. Lonely Elsa begins to spend more time with Don's best friend and they become attracted to one another. Don and Elsa decide to get a divorce, unaware of the effect their problems are having on their daughter Molly. When Elsa announces plans to remarry, Molly runs away from home.",0,0,Our Little Girl,en +58159,The Tortoise and the Hare,1935-01-05,9.0,,,tt0027126,,"The Tortoise and the Hare is an animated short film released on January 5, 1935 by United Artists, produced by Walt Disney and directed by Wilfred Jackson. Based on an Aesop's fable of the same name, The Tortoise and the Hare won the 1934 Academy Award for Best Short Subject: Cartoons. This cartoon is also believed to be one of the influences for Bugs Bunny.",32671,0,The Tortoise and the Hare,en +195516,Baboona,1935-01-19,0.0,,,tt0129767,,"Mr. and Mrs. Martin Johnson take a flying trip across darkest Africa (sponsored by Fox Movietone News), and film everything in sight before returning to New York,where the Fox Movietone Newsreel department made something out of the footage they brought back. As usual, staged scenes of danger and peril, such as landing their plane on an unexplored lake filled with crocodiles, which didn't seem to bother whoever was on the unexplored shore shooting the landing. Lots of wild animal and African native-tribes footage included.",0,0,Baboona,en +26323,Bordertown,1935-01-23,90.0,,,tt0026129,,"An ambitious Mexican-American gets mixed up with his boss""s neurotic wife.",0,0,Bordertown,en +196789,Enchanted April,1935-02-01,66.0,,,tt0026313,,"Mrs. Lotty Wilkins is an unhappily wife whom's life husband and romance have departed. In order to possibly salvage some of the missing elements in her life she rents an old Italian mansion and sharing it with three women. Here the four women plan to spend the month of April away from the cares of home, husbands and the everyday monotony.",0,0,Enchanted April,en +84718,Mystery of Edwin Drood,1935-02-04,87.0,,,tt0026758,,An opium-addicted choirmaster develops an obsession for a beautiful young girl and will not stop short of murder in order to have her.,0,0,Mystery of Edwin Drood,en +94811,Devil Dogs of the Air,1935-02-09,85.0,,,tt0026275,"Bigger Than ""Here Comes The Navy"" !",Two Marine pilots vie for romance and glory.,0,0,Devil Dogs of the Air,en +47758,The Good Fairy,1935-02-18,98.0,,,tt0026424,,"Luisa Ginglebusher (Sullavan) leaves the orphanage where she grew up to take a job as a movie theater usherette. Out in the world for the first time, Luisa is unsure of what to do about the attentions of men, so she ends up telling lies that get her tangled up in a sticky situation.",0,0,The Good Fairy,en +186227,Vanessa: Her Love Story,1935-03-01,74.0,,,tt0027166,,The Victorian wife (Helen Hayes) of a mad baron waits years for a British soldier (Robert Montgomery) sent to Egypt.,0,0,Vanessa: Her Love Story,en +53781,Rainbow Valley,1935-03-15,49.0,,,tt0026908,,John Martin is a government agent working under cover. Leading citizen Morgan calls in gunman Galt who blows Martin's cover.,0,0,Rainbow Valley,en +152948,The New Gulliver,1935-03-25,75.0,,,tt0026793,,"The story, a Communist re-telling of Gulliver's Travels, is about a young boy who dreams of himself as a version of Gulliver who has landed in Lilliput suffering under capitalist inequality and exploitation.",0,0,Novyy Gulliver,en +43894,Naughty Marietta,1935-03-29,105.0,,,tt0026768,Jeanette MacDonald and Nelson Eddy together for the first time!,A French princess in Colonial America gets involved with an Indian scout.,0,0,Naughty Marietta,en +43877,Osaka Elegy,1936-05-28,71.0,,,tt0028021,,Ayako becomes the mistress of her boss so she can pay her father's debt and prevent him from going to prison for embezzlement.,0,0,Naniwa erejî,ja +76380,Swedenhielms,1935-04-08,92.0,,,tt0027062,,"The Swedenhielms is an old aristocratic family. The head of the family is professor Rolf Swedenhielm. His three children Bo, Julia and Rolf Jr also live in the house. They also have an excellent house maid, Boman. Because of the family's extravagance, they are heading for bankruptcy. But perhaps their problems would be solved if Rolf was awarded the Nobel Prize?",0,0,Swedenhielms,sv +217802,Love In Bloom,1935-04-20,75.0,,,tt0026656,,A young girl runs away from her carnival family to make it in New York and becomes involved with a young songwriter.,0,0,Love In Bloom,en +229,Bride of Frankenstein,1935-04-21,75.0,,218406,tt0026138,The monster demands a mate.,"Bride of Frankenstein begins where James Whale's Frankenstein from 1931 ended. Dr. Frankenstein has not been killed as previously portrayed and now he wants to get away from the mad experiments. Yet when his wife is kidnapped by his creation, Frankenstein agrees to help him create a new monster, this time a woman.",393750,0,Bride of Frankenstein,en +291558,Vagabond Lady,1935-05-03,71.0,,,tt0025176,,"Josephine Spiggins is thinking of marrying John Spear, the stuffed-shirt son of a department store owner. When John's free-spirit brother Tony returns from touring the South Seas in his boat, the ""Vagabond Lady,"" Jo is attracted to him instead.",0,0,Vagabond Lady,en +43896,The Informer,1935-05-09,91.0,,,tt0026529,,"In 1922, an Irish rebel informs on his friend, then feels doom closing in.",243000,950000,The Informer,en +86956,Sanders of the River,1935-05-10,98.0,,,tt0026966,He Breaks Loose in the Jungle!,"British District Officer in Nigeria in the 1930's rules his area strictly but justly, and struggles with gun-runners and slavers with the aid of a loyal native chief.",0,0,Sanders of the River,en +27970,Werewolf of London,1935-05-13,75.0,,259027,tt0027194,Beware the Stalking Being - Half-Human - Half-Beast!,A strange animal attack turns a botanist into a bloodthirsty monster.,0,0,Werewolf of London,en +177902,Doubting Thomas,1935-07-10,73.0,,,tt0026292,,"A husband makes fun of his wife's theatrical aspirations when she agrees to appear in a local production. When she begins to neglect him, he decides to retaliate by also going on stage.",0,0,Doubting Thomas,en +28261,Mad Love,1935-07-12,68.0,,,tt0026663,"A new, a strange, a gifted personality comes to the screen!",An insane surgeon's obsession with an actress leads him to replace her wounded pianist's hands with the hands of a knife murderer which still have the urge to throw knives.,0,0,Mad Love,en +27003,The Black Room,1935-07-15,70.0,,,tt0026123,Dead or Alive... He could kill!,"Karloff is once again chilling and brilliant in this highly-regarded dual role which showcases two sides of the actor. He plays twin brothers Anton and Gregor. It has been prophesied that Anton, the younger brother, will eventually murder Gregor in their castle's ""Black Room."" Gregor is an evil Baron who is loathed by everyone, while Anton is highly regarded and revered.",0,0,The Black Room,en +112083,Bright Lights,1935-07-27,82.0,,,tt0026139,IT'S GOT EVERYTHING!,Husband-and-wife vaudeville stars separate when success goes to his head.,0,0,Bright Lights,en +92950,Wife! Be Like a Rose!,1935-08-15,74.0,,,tt0027138,,Tokyo salary girl lives with very serious bluestocking haiku writing mother. Salary girl seeks to marry the attendant dish but needs absent father to act as go-between...,0,0,Tsuma yo bara no yô ni,ja +61985,Westward Ho,1935-08-19,61.0,,,tt0027200,,"Ballard's trail jumpers attack the Wyatt Company wagon train, killing young John's parents and kidnaping his brother, Jim. In post-Civil War California, John Wyatt, now a man, pulls together a vigilante posse, The Singing Riders, who all ride white horses, dress alike, and ride the trails singing and rounding up outlaw gangs. Meanwhile, John is ever on the lookout for the gang that murdered his parents As a youngster John Wyatt saw his parents killed and his brother kidnapped. On a wagon train heading West he meets his brother who is now a spy for the gang which originally did the dirty work. He and his brother both fall for Mary Gordon When Ballard and his men attack the Wyatt wagon train, they kill all except two young brothers. Twelve years later one brother John has organized a vigilante group. The other brother Jim is now part of Ballard's gang and the two are destined to meet again",0,0,Westward Ho,en +58905,The Crusades,1935-08-21,125.0,,,tt0026249,,King Richard the Lionhearted launches a crusade to preserve Christianity in Jerusalem.,0,0,The Crusades,en +43889,Bonnie Scotland,1935-08-23,80.0,,,tt0026126,,"Stan and Ollie stow away to Scotland expecting to inherit the MacLaurel estate. When things don't quite turn out that way, they unwittingly enlist in the Scottish army and are posted to India.",0,0,Bonnie Scotland,en +70881,Anna Karenina,1935-08-30,95.0,,,tt0026071,,In 19th century Russia a woman in a respectable marriage to a doctor must grapple with her love for a dashing soldier.,1152000,1439000,Anna Karenina,en +67162,Pluto's Judgement Day,1935-08-31,7.0,,,tt0026872,,"Pluto chases a kitten through a window and right into Mickey's lap. Mickey scolds him, and goes off to wash the kitten. Pluto falls asleep in front of the fire, and dreams of a hell ruled by cats where he is put on trial for all his crimes against cats and, of course, found guilty.",0,0,Pluto's Judgement Day,en +188468,Page Miss Glory,1935-09-07,93.0,,,tt0026840,AN ALL-STAR CAST in an ALL-STAR COMEDY RIOT!,"A country girl goes to the city and gets a job in a posh hotel, and winds up becoming an instant celebrity thanks to an ambitious photographer.",0,0,Page Miss Glory,en +120977,The Dark Angel,1935-09-08,106.0,,,tt0026264,,"Kitty Vane, Alan Trent, and Gerald Shannon have been inseparable friends since childhood. Kitty has always known she would marry one of them, but has waited until the beginning of World War I before finally choosing Alan. Gerald graciously gives them his blessing. Then, Gerald and Alan go to war. Angered over a misunderstanding involving Alan and Kitty, Gerald sends Alan on a dangerous mission that will change all their lives forever.",0,0,The Dark Angel,en +194407,Red Salute,1935-09-12,80.0,,,tt0026919,True! Timely! Terrific! See the effect RED teachings have on the youth of today!,"The rebellious daughter of an army general gets involved with a Communist agitator, mainly to annoy her father. He arranges to have her kidnapped and taken to Mexico--hoping that she will forget her ""Red"" boyfriend--by a young, handsome soldier named Jeff who, while somewhat of a goof-up, the general believes is still better for her.",0,0,Red Salute,en +54570,The Gay Deception,1935-09-13,77.0,,,tt0026400,,"Mirabel wins a $5,000 lottery which will enable her to live like a queen in New York. There she meets Sandro, a bellboy who is really a prince, so she does get to be a queen after all.",0,0,The Gay Deception,en +52864,Special Agent,1935-09-14,76.0,,,tt0027029,,Newspaperman Bill Bradford becomes a special agent for the tax service trying to end the career of racketeer Nick Carston. Julie Gardner is Carston's bookkeeper. Bradford enters Carston's organization and Julie cooperates with him to land Carston in jail. An informer squeals on them. Julie is kidnapped by Carston's henchmen as she is about to testify,0,0,Special Agent,en +258384,Flight into Darkness,1935-10-22,111.0,,,tt0027244,,"During the First World War, before joining a squadron at the front in 1918, Herbillon (Jean-Pierre Aumont) has a liaison with Helene (Annabella), a married woman. The young man discovers that his mistress is none other than the wife of Maury (Charles Vanel), an aviator friend.",0,0,L'équipage,fr +53860,Rendezvous,1935-10-25,94.0,,,tt0026922,,A decoding expert tangles with enemy spies.,0,0,Rendezvous,en +29705,The Tunnel,1935-10-27,94.0,,,tt0027131,GB's Eight Star Special,An engineer (Richard Dix) leads the building of a trans-Atlantic tunnel linking Britain and the United States.,0,0,The Tunnel,en +57412,Peter Ibbetson,1935-11-07,88.0,,,tt0026866,,"Architect Peter Ibbetson is hired by the Duke of Towers to design a building for him. Ibbetson discovers that the Duchess of Towers, Mary, is his now-grown childhood sweetheart. Their love revives, but Peter is sentenced to life in prison for an accidental killing. Mary comes to him in dreams and they are able to live out their romance in a dream world.",0,0,Peter Ibbetson,en +37719,A Night at the Opera,1935-11-08,96.0,,,tt0026778,Don't miss it! The funniest picture ever made!,The Marx Brothers take on high society and the opera world to bring two lovers together.,0,0,A Night at the Opera,en +12311,Mutiny on the Bounty,1935-11-08,132.0,,,tt0026752,Clark Gable as the daring mutineer in the screen's most exciting adventure story!,"Fletcher Christian successfully leads a revolt against the ruthless Captain Bligh on the HMS Bounty. However, Bligh returns one year later, hell bent on avenging his captors.",1950000,4460000,Mutiny on the Bounty,en +89462,An Inn in Tokyo,1935-11-21,80.0,,,tt0027118,,"Kihachi, an unemployed worker, wanders around the industrial flatlands of Tokyo's Koto district with his two young sons, Zenko and Masako. He is unable to find a job and has to rely on his sons catching stray dogs to earn reward money for their meals. As days go by, Kihachi and the boys no longer have enough money to stay at an inn for the night. Luckily for him, he encounters an old friend, Otsune, who finds him a job and allows them to stay at her eatery house.",0,0,東京の宿,ja +43891,Crime and Punishment,1935-11-22,88.0,,,tt0026246,I am Sonya! You don't know who or what I am... the police know! They know I'm in love with a murderer! But a woman like me might still save a man's soul!,A man is haunted by a murder he's committed.,0,0,Crime and Punishment,en +122525,Fair of the Dove,1935-12-23,78.0,,,tt0025942,,A young printer's relationship with his girlfriend is in trouble after she accepts another suitor's invitation to the fair. This adaption of a popular operetta aims to please with a simple storyline and goofy slapstick.,0,0,La verbena de la Paloma,en +120497,The Bride Comes Home,1935-12-25,83.0,,,tt0026137,,"A penniless socialite is hired by two young men as a front in their plan to start a magazine. Soon, however, they find themselves more interested in her than in their publishing venture.",0,0,The Bride Comes Home,en +17831,A Tale of Two Cities,1935-12-25,128.0,,,tt0027075,The Immortal Story of Love and Intrigue During French Revolution!,"The exciting story of Dr. Manette, who escapes the horrors of the infamous Bastille prison in Paris. The action switches between London and Paris on the eve of the revolution where we witness 'the best of times and the worst of times' - love, hope, the uncaring French Aristocrats and the terror of a revolutionary citizen's army intent on exacting revenge.",0,0,A Tale of Two Cities,en +126083,If You Could Only Cook,1935-12-30,72.0,,,tt0026519,SHE GAVE UP HER PARK BENCH FOR HIM! HE GAVE UP MILLIONS FOR HER!,An auto engineer (Herbert Marshall) and a professor's daughter (Jean Arthur) pose as married servants in a mobster's (Leo Carrillo) mansion.,0,0,If You Could Only Cook,en +210621,The Searchers of Happiness,1936-01-01,84.0,,,tt0026119,,"During the 1920s, many impoverished Jews searching for a better life made their way to Birobidzhan, the Soviet Jewish Autonomous Region on the Chinese border. This melodrama tells the story of a Jewish family's immigration to Birobidzhan and their experiences as settlers on a collective farm in the area.",0,0,Искатели счастья,ru +121006,Riffraff,1936-01-03,94.0,,,tt0026932,When a red-headed woman meets a red-headed man!,"Fisherman Dutch marries cannery worker Hattie. After he is kicked out of his union and fired from his job he leaves Hattie who steals money for him and goes to jail. He gets a new job, foils a plot to dynamite the ship, and promises to wait for Hattie.",0,0,Riffraff,en +43880,Rose Marie,1936-01-31,113.0,,,tt0028207,Jeanette MacDonald and Nelson Eddy in the most famous film of their careers!,"Opera singer, Marie de Flor, seeks out fugitive brother in the Canadian wilderness. During her trek, she meets a Canadian mountie, Sgt. Bruce, who is also searching for her brother. Romance ensues, resulting in several love duets between the two.",0,0,Rose Marie,en +182899,The Voice of Bugle Ann,1936-02-15,72.0,,,tt0028471,When love is young,A Missouri farmer's (Lionel Barrymore) son (Eric Linden) loves the daughter (Maureen O'Sullivan) of a neighbor who has killed the farmer's foxhound.,0,0,The Voice of Bugle Ann,en +134238,Song of the Saddle,1936-02-28,58.0,,,tt0028284,,"Frank Sr. sells his supplies to Hook, but then Hook has the Bannion Boys bushwhack his wagon to get the money back. Frank is murdered, but Junior gets away. He comes back 10 years later to settle the score as the Singing Cowboy. He finds that Hook is still doing his dirty deeds on the unsuspecting people. Along the way, Frank meets the lovely Jen, who came out in the same wagon train 10 years before.",0,0,Song of the Saddle,en +23114,Little Lord Fauntleroy,1936-03-06,102.0,,,tt0027893,,"An American boy turns out to be the heir of a wealthy British earl. He is sent to live with the irritable and unsentimental aristocrat, his grandfather.",0,0,Little Lord Fauntleroy,en +76094,The Trail of the Lonesome Pine,1936-03-13,102.0,,,tt0028401,,A well-established tale of a long-running feud between two mountain clans. The features of this production were the new three-strip Technicolor process showing the outdoor Californian settings and an energetic young cast. It is said that Li'l Abner was based on Henry Fonda's performance.,0,0,The Trail of the Lonesome Pine,en +43277,The Great Ziegfeld,1936-04-08,176.0,,,tt0027698,The Last Word In Entertainment!,"Lavish biography of Flo Ziegfeld, the producer who became Broadway's biggest starmaker.",0,0,The Great Ziegfeld,en +109329,Three Little Wolves,1936-04-18,9.0,,,tt0028368,,Two little pigs cry wolf on their brother and then an actual wolf comes.,0,0,Three Little Wolves,en +43878,A Day in the Country,1936-05-05,40.0,,,tt0028445,,"The family of a Parisian shop-owner spends a day in the country. The daughter falls in love to a man at the inn, where they spend the day.",0,0,Partie de campagne,fr +31548,Show Boat,1936-05-17,113.0,,,tt0028249,HEAR Glorious New Music and Songs by Jerome Kern and Oscar Hammerstein II:,"Despite her mother's objections, the naive young daughter of a show boat captain is thrust into the limelight as the company's new leading lady.",0,0,Show Boat,en +14615,Fury,1936-05-29,90.0,,,tt0027652,TWO LOVERS...VICTIMS OF MOB VIOLENCE!,"When a prisoner barely survives a lynch mob attack and is presumed dead, he vindictively decides to frame the mob for his murder.",0,0,Fury,en +121351,Aces and Eights,1936-06-06,62.0,,,tt0027255,Gentleman Tim Deals A Death Hand In A Crooked Game!,A card sharp steps in when a Mexican family's ranch is threatened by swindlers and cheats.,0,0,Aces and Eights,en +202020,Melody on Parade,1936-06-17,5.0,,,tt1218341,,Musical short about Presidents of the United States,0,0,Melody on Parade,en +67130,Moving Day,1936-06-20,9.0,,,tt0027994,,"Donald and Mickey are overdue on their rent, so the sheriff is preparing to evict them and sell their belongings. Goofy the ice-man comes by and helps them move out before the sale, but their piano doesn't want to stay on his truck. Meanwhile, Donald has a fight with a plunger and a fishbowl after removing a heater from the gas line.",0,0,Moving Day,en +195068,Hearts Divided,1936-06-20,76.0,,,tt0027726,,"Napoleon Bonaparte's younger brother, visiting the United States, falls madly in love with a young woman he meets in Baltimore.",0,0,Hearts Divided,en +82237,"Thank You, Jeeves!",1936-06-30,57.0,,122778,tt0028353,,Jeeves tries to keep his young master out of trouble.,0,0,"Thank You, Jeeves!",en +195522,Redes,1936-07-15,65.0,http://worldcinemafoundation.org/films/the-wave,303969,tt0028165,,A Mexican fishing village fights against government exploitation.,0,0,Redes,es +52358,Suzy,1936-07-20,93.0,,,tt0028330,,A French air ace discovers that his showgirl wife's first husband is still alive.,0,0,Suzy,en +43268,Poor Little Rich Girl,1936-07-24,79.0,,,tt0028118,,"Cossetted and bored, Barbara Barry is finally sent off to school by her busy if doting widowed soap manufacturer father. When her nurse is injured en route, Barbara finds herself alone in town, ending up as part of radio song-and-dance act Dolan and Dolan sponsored by a rival soap company.",0,0,Poor Little Rich Girl,en +95015,The Green Pastures,1936-08-01,93.0,,,tt0027700,,"God, heaven, and several Old Testament stories, including the Creation and Noah's Ark, are described supposedly using the perspective of rural, black Americans.",0,0,The Green Pastures,en +159727,Song of Freedom,1936-08-16,80.0,,,tt0028282,,"John Zinga is a black dockworker in England in the 18th century, with a great baritone singing voice. He is discovered by an opera impresario, and is catapulted into great fame as an international opera star. Yet he feels alienated from his African past, and out of place in England. By chance, he is informed that an ancestral medallion that he wears is proof of his lineage to African kings, and he leaves fame and fortune to take his rightful place of royalty. Reunited with his people, he plans to improve their lives by combining the best of western technology with the best of traditional African ways.",0,0,Song of Freedom,en +135286,Watch Your Left,1936-08-20,13.0,,,tt0028275,,"Roger, son of a farmer, wants to be a boxer, and gets his chance by filling in for a boxer's sparring partner. However, Roger does not know how to box and reads a rule book while in the ring.",0,0,Soigne ton Gauche,fr +223655,The Beloved Vagabond,1936-08-24,68.0,,,tt0027347,,Flying from one charming lady---eluding another---and almost losing both!,0,0,The Beloved Vagabond,en +20325,Swing Time,1936-08-27,103.0,,,tt0028333,A glorious songburst of gaiety and laughter!,"Lucky is tricked into missing his wedding to Margaret by the other members of Pop's magic and dance act, and has to make $25000 to be allowed to marry her. He and Pop go to New York where they run into Penny, a dancing instructor. She and Lucky form a successful dance partnership, but romance is blighted (till the end of the film at least!) by his old attachment to Margaret and hers for Ricardo, the band leader who won't play for them to dance together.",886000,2600000,Swing Time,en +43875,Mary of Scotland,1936-08-28,123.0,,,tt0027948,"History called her ""The Temptress""!",The recently widowed Mary Stuart returns to Scotland to reclaim her throne but is opposed by her half-brother and her own Scottish lords.,864000,1276000,Mary of Scotland,en +112284,The Gorgeous Hussy,1936-08-28,103.0,,,tt0027690,,"It's the early nineteenth century Washington. Young adult Margaret O'Neal, Peggy to most that know her, is the daughter of Major William O'Neal, who is the innkeeper of the establishment where most out-of-town politicians and military men stay when they're in Washington. Peggy is pretty and politically aware. She is courted by several of those politicians and military men who all want to marry her, except for the one with who she is truly in love.",1119000,2019000,The Gorgeous Hussy,en +140276,The Road to Glory,1936-09-04,103.0,,,tt0028191,,The story of trench life during World War I through the lives of a French regiment. As men are killed and replaced jaunty Lt. Denet becomes more and more somber. His rival for the affection of nurse Monique is Capt. La Roche. Written by Ed Stephan,0,0,The Road to Glory,en +377170,Trailin' West,1936-09-04,56.0,,,tt0028402,"REACH FOR THE SKY, STRANGER!",A singing secret agent tracks down renegades at President Lincoln's request.,0,0,Trailin' West,en +30640,The Man Who Changed His Mind,1936-09-11,66.0,,,tt0027938,,"Dr. Laurence, a once-respectable scientist, begins to research the origin of the mind and the soul. The science community rejects him, and he risks losing everything for which he has worked. He begins to use his discoveries to save his research and further his own causes, thereby becoming... a Mad Scientist, almost unstoppable...",0,0,The Man Who Changed His Mind,en +52047,The Only Son,1936-09-15,87.0,,,tt0027752,,"A poor factory worker, visiting the Tokyo son she has skimped to educate, finds even a college degree doesn't make a difference in Depression era Japan.",0,0,一人息子,ja +13562,My Man Godfrey,1936-09-17,94.0,,,tt0028010,,A zany heiress tries to help a tramp by making him the family butler.,0,0,My Man Godfrey,en +76651,Jenny,1936-09-18,0.0,,,tt0027818,,"When her fiancé breaks off their engagement, Danielle leaves London and returns to her mother, Jenny, in Paris. With her business partner Benoît, Jenny runs what appears to be a respectable nightclub – it is in fact a place where wealthy men can buy the favours of attractive young women. Oblivious to her mother's professional and personal life, Danielle meets a handsome young man named Lucien, and falls in love with him – not realising that he is Jenny's lover...",0,0,Jenny,fr +120357,Craig's Wife,1936-09-25,74.0,,,tt0027474,,"A spoiled, materialistic woman makes life miserable for everyone around her.",0,0,Craig's Wife,en +184741,Cain and Mabel,1936-09-26,90.0,,,tt0027413,It's the Romantic Battle of the Century with a World championship Cast!,A chorus girl (Marion Davies) and a heavyweight boxer (Clark Gable) are paired romantically as a publicity stunt.,0,0,Cain and Mabel,en +32484,Dimples,1936-10-08,79.0,,,tt0027527,,"Shirley Temple lives with the pick-pocket grandfather in 19th century New York City. She entertains the crowds while he works his racket. A rich lady makes it possible for the girl to go legit. ""Uncle Tom's Cabin"" is performed.",0,0,Dimples,en +31773,Libeled Lady,1936-10-09,98.0,,,tt0027884,At the Top of their game.,"When an heiress sues a newspaper, the editor hires a reporter to compromise her.",0,0,Libeled Lady,en +121848,Isle of Fury,1936-10-10,60.0,,,tt0027805,,An island fugitive (Humphrey Bogart) and his bride (Margaret Lindsay) make room for a shipwrecked detective (Donald Woods).,0,0,Isle of Fury,en +74581,Sisters of the Gion,1936-10-15,69.0,,,tt0027672,,"Umekichi, a geisha in the Gion district of Kyoto, feels obliged to help her lover Furusawa when he asks to stay with her after becoming bankrupt and leaving his wife. However her younger sister Omocha tells her she is wasting her time and money on a loser. She thinks that they should both find wealthy patrons to support them. Omocha therefore tries various schemes to get rid of Furusawa, and set themselves up with better patrons.",0,0,祇園の姉妹,ja +268875,All American Chump,1936-10-16,63.0,,,tt0027272,,A country bumpkin who's a mathematical genius falls into the hands of gangsters.,0,0,All American Chump,en +46026,Our Relations,1936-10-30,73.0,,,tt0028070,Fast Furious Funny Full-Length Feature,Two sailors get caught in a mountain of mix-ups when they meet their long-lost twins. Laurel and Hardy play themselves and their twins.,400000,0,Our Relations,it +93313,Come and Get It,1936-11-06,99.0,,,tt0027459,,"An ambitious lumberjack abandons his saloon girl lover so that he can marry into wealth, but years later becomes infatuated with the woman's daughter.",0,0,Come and Get It,en +61541,Love on the Run,1936-11-20,80.0,,,tt0027914,,A runaway bride and an undercover reporter get caught up in political intrigue as they lead a merry chase across Europe and uncover a spy plot.,0,0,Love on the Run,en +81687,Lloyd's of London,1936-11-29,118.0,,,tt0027902,,Blake is in love with an aristocratic woman whose husband seriously injures him. Blake's friendship with Lord Nelson provides the basis for Blake's part in the growth of Lloyd's insurance business following the Battle of Trafalgar. Only very slightly based on history.,0,0,Lloyd's of London,en +12684,Sabotage,1936-12-02,76.0,,,tt0028212,...A Bomb Plot ...A Killing ...Justice,"A Scotland Yard undercover detective is on the trail of a saboteur who is part of a plot to set off a bomb in London. But when the detective's cover is blown, the plot begins to unravel.",0,0,Sabotage,en +28044,Charlie Chan at the Opera,1936-12-05,68.0,,38451,tt0027440,A fiendish killer lurks at the opera! Weird! Thrilling! The Master Minds of Crime Match Wits Against Each Other!,"A dangerous amnesiac escapes from an asylum, hides in the opera house, and is suspected of getting revenge on those who tried to murder him 13 years ago.",0,0,Charlie Chan at the Opera,en +173456,The Plough and the Stars,1936-12-26,72.0,,,tt0028112,,Barbara Stanwyck stars as the wife of an Irish revolutionary during the Easter rebellion.,0,0,The Plough and the Stars,en +193652,An Optical Poem,1937-01-01,6.0,,,tt0029350,,A dance of shapes.,0,0,An Optical Poem,en +43860,King Solomon's Mines,1937-01-01,80.0,,,tt0029081,,Adventurer Allan Quartermain leads an expedition into uncharted African territory in an attempt to locate an explorer who went missing during his search for the fabled diamond mines of King Solomon.,0,0,King Solomon's Mines,en +124979,Juha,1937-01-24,101.0,,,tt0137048,,"Eastern Finland in 18th century. Farmer Juha has raised an orphan girl Marja and married her. Karelian trader Shemeikka visits the farm and starts to make advances to young and beautiful Marja, tempting her to run away with him.",0,0,Juha,fi +26252,Pépé le Moko,1937-01-28,94.0,,,tt0029453,,"Pepe Le Moko is a gangster from Paris hiding in Algier's Casbah, where he is safe and able to elude police's attempts to capture him. But he misses his freedom, after two years in the Casbah. He meets a gorgeous Parisian tourist, Gaby, and they fall in love. Native Inspector Slimane tries to use her to attract Pepe out of the Casbah in order to catch him...",0,153936,Pépé le Moko,fr +42683,Black Legion,1937-01-30,83.0,,,tt0027367,The Murdered at Midnight!,"When a hard-working machinist loses a promotion to a Polish-born worker, he is seduced into joining the secretive Black Legion, which intimidates foreigners through violence.",235000,0,Black Legion,en +53857,The Last of Mrs. Cheyney,1937-02-19,98.0,,,tt0029120,,A chic jewel thief in England falls in love with one of her marks.,0,0,The Last of Mrs. Cheyney,en +131457,Green Light,1937-02-20,85.0,,,tt0028958,,A brilliant young surgeon takes the blame for a colleague when a botched surgery causes a patient's death and buries himself at a wilderness research facility.,0,0,Green Light,en +105551,"Swing High, Swing Low",1937-03-12,92.0,,,tt0029626,,"In Panama, Maggie King meets soldier Skid Johnson on his last day in the army and reluctantly agrees to a date to celebrate. The two become involved in a nightclub brawl which causes Maggie to miss her ship back to the States. Now stranded, she's forced to move in with Skid and his pal Harry. She soon falls in love with Skid. Skid gets a job playing the trumpet at a local club and becomes a big success. Fame and fortune go to his head which eventually destroys his relationship Maggie and his career.",0,0,"Swing High, Swing Low",en +90034,The Tale of the Fox,1937-04-09,65.0,,,tt0021309,,"In the kingdom of animals, Master Fox is used to trick and fool everyone. So the King, the Lion, receives more and more complaints about him. He orders that Master Fox is arrested and brought to him.",0,0,Le Roman de Renard,fr +78734,In Old Chicago,1937-04-14,95.0,,,tt0029047,The great American motion picture!,"The O'Leary brothers -- honest Jack and roguish Dion -- become powerful figures, and eventually rivals, in Chicago on the eve of its Great Fire.",0,0,In Old Chicago,en +38437,Bulldog Drummond Escapes,1937-04-21,67.0,,,tt0028668,,Bulldog protects an heiress.,0,0,Bulldog Drummond Escapes,en +140418,Bulldog Drummond at Bay,1937-05-01,78.0,,,tt0028669,Bulldog Drummond goes up against foreign agents trying to steal plans for a top-secret aircraft.,Bulldog Drummond goes up against foreign agents trying to steal plans for a top-secret aircraft.,0,0,Bulldog Drummond at Bay,en +150712,They Gave Him a Gun,1937-05-07,94.0,,,tt0029656,,"With no other prospects, a World War I veteran turns to crime.",0,0,They Gave Him a Gun,en +168031,Café Metropole,1937-05-07,84.0,,,tt0028676,,An American posing as a Russian prince woos a visiting Ohio heiress.,0,0,Café Metropole,en +70090,The Pearls of the Crown,1937-05-12,105.0,,,tt0029394,,"The story of the seven pearls of the English Crown, from Henry VIII to 1937; three of them missing.",0,0,Les perles de la couronne,fr +51601,San Quentin,1937-05-24,70.0,,,tt0029511,... Amazing Drama of Desperate Men Behind the Walls!,"Ex-Army officer Jameson takes a job a prison guard at San Quentin. Joe, the brother of his new girlfriend May, is sentenced to the prison for robbery. When Jameson tries to separate lawbreakers from hardened criminals, badguy Hansen tries to stir up trouble by telling Joe about Jameson's interest in his sister.",0,0,San Quentin,en +15468,"Spy, Stand Up",1982-01-27,98.0,,,tt0082342,,A French espionage thriller playing in Zürich.,0,0,"Espion, lève-toi",fr +147722,This Is My Affair,1937-05-28,100.0,,,tt0029662,,"A saloon singer tries to reform a gangster, not knowing he's really an undercover detective.",0,0,This Is My Affair,en +11939,A Day at the Races,1937-06-11,111.0,,,tt0028772,"America's Joy-Friends are back again in the grandest entertainment gallop of 1937! More howls, more girls, more song hits than ""A Night At The Opera""! Oh boy!","Doctor Hugo Hackenbush, Tony, and Stuffy try and save Judy's farm by winning a big race with her horse. There are a few problems. Hackenbush runs a high priced clinic for the wealthy who don't know he has his degree in Veterinary Medicine.",0,0,A Day at the Races,en +204040,Slave Ship,1937-06-16,92.0,,,tt0029577,,"Action-filled drama about a ship captain, ashamed of his background in the slave trade, forced against his will to again transport human cargo.",0,0,Slave Ship,en +238436,The Robber Symphony,1937-07-01,136.0,,,tt0028196,,"A bag of loot is stashed in a piano that belongs to a family of traveling entertainers. A gang of robbers tries to get the loot back, and though they kddnap two members of the troop, the third, a young boy, has run off with the piano.",0,0,The Robber Symphony,en +53853,The Emperor's Candlesticks,1937-07-02,89.0,,,tt0028829,Drama that will toy with your heart,Spies on opposite sides fall in love in pre-revolutionary Russia.,0,0,The Emperor's Candlesticks,en +31899,Ever Since Eve,1937-07-15,80.0,,,tt0028842,,"Madge Winton (Marion Davies), a beautiful secretary, makes herself look homely in order to avoid advances by lecherous bosses. When her new employer, writer Freddy Matthews (Robert Montgomery), accidentally sees her without her disguise, she has to pretend to be her roommate Sadie.",0,0,Ever Since Eve,en +45800,Saratoga,1937-07-23,92.0,,,tt0029516,A Tribute and a Triumph that the world demanded to see . . . ! !,"A horse breeder's (Lionel Barrymore) granddaughter (Jean Harlow) falls in love with a gambler (Clark Gable) in Saratoga Springs, N.Y.",0,0,Saratoga,en +27973,Dead End,1937-08-27,93.0,,,tt0028773,THE GREATEST GANGSTER THRILLER THAT EVER EXPLODED FROM THE SCREEN!,"This film introduced the Dead End Kids in their intricate East Side slum, overlooked by the apartments of the rich. Their antics, some funny, some vicious, alternate with subplots: unemployed architect Dave is torn between Drina, sweet but equally poor, and Kay, a rich man's mistress; gangster Baby Face Martin returns to his old neighborhood and finds that nobody is glad to see him. Then violent crime, both juvenile and adult, impacts the neighborhood and its people.",300000,0,Dead End,en +170936,SOS Coast Guard,1937-08-28,224.0,,,tt0029508,,"In his third of four action serials, horror star Bela Lugosi played Boroff, an internationally notorious fiend who's attempting to pawn off his deadly invention, a disintegrating gas, to the highest bidder. Before the gas can be manufactured, however, Boroff must go in search of certain hard to come by ingredients and the villain is thwarted at every step by US coast guard agent Terry Kent (Ralph Byrd) and crusading newspaper woman Jean Norman (Maxine Doyle). In the serial's 12th and final chapter, ""The Deadly Circle,"" Boroff is finally destroyed by his own invention, civilization thus saved for Democracy.",0,0,SOS Coast Guard,en +242332,Escape by Night,1937-09-01,72.0,,,tt0028836,A blast of drama when a city mob hides out in the country!,Runyonesque crooks on the lam hide out on blind man's pastoral farm and decide to go straight.,0,0,Escape by Night,en +43419,Souls at Sea,1937-09-03,92.0,,,tt0029593,Men Against The Sea! Stark Drama No Fiction Can Equal!,Michael 'Nuggin' Taylor and Powdah save lives during a sea tragedy in this story about the slave trade on the high seas during 1842.,0,0,Souls at Sea,en +43868,Thin Ice,1937-09-03,79.0,,,tt0029659,,Swiss hotel ski instructor (Henie) falls in love with a man (Power) who goes skiing every morning.,0,0,Thin Ice,en +92257,Dance Program,1937-09-09,130.0,,,tt0029706,,"After the death of her husband, Christine realizes she has possibly wasted her life by marrying him instead of the man towards whom, in her youth, she had a stronger inclination. To overcome these dreary thoughts, she decides to find out about him and the other men who danced with her during a ball that was a turning point in her life, many years ago. She pays a visit to those forgotten acquaintances one after the other; Christine is not only surprised to see how they have fared, but also discovers the impact she had, unknowingly, on the feelings and the destiny of these persons.",0,0,Un carnet de bal,fr +77964,That Certain Woman,1937-09-18,93.0,,,tt0029650,Love Broke Her Heart !,A gangster's widow fights for love despite society's disapproval.,0,0,That Certain Woman,en +218351,The Girl Said No,1937-09-18,76.0,,,tt0028931,,"Jimmie Allen, a shady bookie, is in love with Pearl Proctor, a greedy dance hall girl. He schemes to get her back after she rejects him; and along the way, he revives a failing Gilbert and Sullivan troupe.",0,0,The Girl Said No,en +38433,Bulldog Drummond Comes Back,1937-09-24,64.0,,,tt0028667,,Drummond's girlfriend has been kidnapped for revenge.,0,0,Bulldog Drummond Comes Back,en +112655,Idol of the Crowds,1937-09-30,60.0,,,tt0029044,,"Retired hockey player Johnny Hansen, in order to make money to enlarge his chicken farm, returns to the game and leads his team into the championship series. Just before the series starts, he is offered a bribe to throw the games but refuses. An attempt is made on his life which results in Bobby, the team's mascot, being injured. Written by Les Adams",0,0,Idol of the Crowds,en +112885,The Bride Wore Red,1937-10-15,103.0,,,tt0028661,,A poor singer in a bar masquerades a rich society woman thanks to a rich benefactor.,0,0,The Bride Wore Red,en +28345,Heidi,1937-10-15,88.0,,,tt0028988,Shirley's A Little Swiss Miss In The Loveliest Story of Her Career !,"Heidi is orphaned and her uncaring maternal Aunt Dete takes her to the mountains to live with her reclusive, grumpy paternal grandfather, Adolph Kramer. Heidi brings her grandfather back into mountain society through her sweet ways and sheer love. When Dete later returns and steals Heidi away to become the companion of a rich man's wheelchair-bound daughter, the grandfather is heartsick to discover his little girl missing and immediately sets out to get her back.",0,0,Heidi,en +293085,Juurakon Hulda,1937-10-17,82.0,,,tt0029072,,Valentin Vaala's film from 1937.,0,0,Juurakon Hulda,fi +44208,Angel,1937-10-29,91.0,,,tt0028575,I want love - and I'm going to get it!,"Woman and her husband take separate vacations, and she falls in love with another man.",0,0,Angel,en +134480,The Great Garrick,1937-10-30,89.0,,,tt0028953,,A British actor insults a French acting group only to fall victim to a prank that might destroy his career.,0,0,The Great Garrick,en +72640,The Old Mill,1937-11-05,9.0,,,tt0029339,,"We see the various birds, mice, and bats that have moved into an old windmill, followed by the frogs, crickets, and fireflies making their music in an adjacent pond. Then a storm comes, shaking loose parts in mill and threatening everything we've seen.",50663,0,The Old Mill,en +35543,The Great Flamarion,1945-01-14,78.0,,,tt0037749,Great with a gun!,A vaudevillian is tricked into murder by a bored wife.,0,0,The Great Flamarion,en +229638,Alcatraz Island,1937-11-06,63.0,,,tt0028564,THE ROCK...for killers too tough for steel walls to cage!,A man who has been railroaded into prison is framed for the murder of a fellow inmate and must prove his innocence.,0,0,Alcatraz Island,en +204802,Lenin in October,1937-11-07,93.0,,,tt0029132,,"Commissioned by Josef Stalin to commemorate the 20th anniversary of the Soviet Revolution, Lenin in October was the first of Russian director Mikhail Romm's tributes to the Marxist visionary who helped orchestrate the insurrection of October, 1917.",0,0,Ленин в Октябре,ru +28712,The Last Gangster,1937-11-12,81.0,,,tt0029118,The First Gangster and The Last Gangster.,"Edward G. Robinson stars as a crime boss who goes searching for his ex-wife and son after a 10 year prison stint. Robinson's old gang has other plans though, and use the child to try and make him disclose the location of the loot he hid before going to the slammer. A young James Stewart, early in his career, plays a sizable role as a newspaper reporter who marries the gangster's wife.",0,0,The Last Gangster,en +106635,It's Love I'm After,1937-11-20,90.0,,,tt0029058,The tops in topsy-turvy romance!,An infatuated debutante renews a Shakespearean actor's running feud with his leading lady.,0,0,It's Love I'm After,en +53574,Born to the West,1937-12-10,59.0,,,tt0028653,CRIMSON-STREAKED ROMANCE HITS THE TRAIL!,"Dare Rudd takes a shine to his cattleman cousin Tom's girlfriend who asks Tom to hire Dare to head the big cattle drive. Dare loses the money for the drive to cardsharps, but Tom wins it back, but Dare must save Tom's life.",0,0,Born to the West,en +116232,You're Only Young Once,1937-12-10,78.0,,,tt0030997,"I'M 17! I'M NO BABY, DAD!",Andy Hardy and his sister find romance during a family vacation in Catalina.,0,0,You're Only Young Once,en +33025,Mannequin,1937-12-14,95.0,,,tt0030413,The Romance of a Shopgirl's Millions,"Rags-to-riches Hennessey meets newlyweds Jessie and Eddie from his old neighborhood. Eddie plots to have Jessie divorce him, marry Hennessey, divorce Hennessey, then bring Hennessey's money into remarriage with Eddie. His plan goes awry at several points.",0,0,Mannequin,en +140472,Bulldog Drummond's Revenge,1937-12-16,57.0,,,tt0028670,,The dapper British sleuth (John Howard) beats a Scotland Yard colonel (John Barrymore) to the stolen formula for a new bomb.,0,0,Bulldog Drummond's Revenge,en +32428,Lonesome Ghosts,1937-12-24,9.0,,,tt0029161,,"Four bored ghosts in a haunted house who've scared everyone away call up Ghost Hunters Mickey, Donald, and Goofy in hopes to have a little fun scaring them off.",0,0,Lonesome Ghosts,en +362463,The Cantor's Son,1937-12-26,0.0,,,tt0029079,,"This musical drama marks the screen debut of Moishe Oysher, in a film critic J. Hoberman calls an ""anti-Jazz Singer."" Oysher stars as a wayward youth who makes his way from his Polish shtetl to New York's Lower East Side where he is ""discovered"" and becomes a well-known singer. Ultimately, he returns home to the Old Country and reunites with his parents and his childhood sweetheart.",0,0,The Cantor's Son,en +438144,Return to Life,1937-12-31,47.0,,,tt0030676,,"In this propaganda film intended to raise money for republicans fighting in the Spanish Civil War, Henri Cartier-Bresson first presents the achievements of the Spanish Republic in the field of public health. He then shows how members of the public and organizations across the world were supporting the fighters.",0,0,Victoire de la vie,fr +94739,The Duke Is Tops,1938-01-02,63.0,,,tt0030089,,A theatrical producer puts aside his own success to boost the career of a talented singer.,0,0,The Duke Is Tops,en +213443,Man-Proof,1938-01-07,75.0,,,tt0030412,,"A newspaper illustrator tries to remain best friends with the man she secretly loves, even though he recently married another woman.",0,0,Man-Proof,en +43850,The Divorce of Lady X,1938-01-15,92.0,,,tt0030063,,"The morning after a London barrister lets a mystery woman stay in his suite, a friend files for divorce.",0,0,The Divorce of Lady X,en +76703,Quadrille,1938-01-29,95.0,,,tt0030642,,,0,0,Quadrille,fr +53851,The Baroness and the Butler,1938-02-18,80.0,,,tt0029899,,A Butler (Powell) gets elected to the Hungarian parliament where he opposes his master's government.,0,0,The Baroness and the Butler,en +127812,Arsène Lupin Returns,1938-02-25,81.0,,,tt0029884,,A reformed jewel thief helps detectives track down a criminal.,0,0,Arsène Lupin Returns,en +1976,Jezebel,1938-03-19,103.0,,,tt0030287,A Fearless Feminine Creature with a heart full of love!,"In 1850s Louisiana, the willfulness of a tempestuous Southern belle threatens to destroy all who care for her.",1250000,0,Jezebel,en +257907,Spirit of Youth,1938-04-01,66.0,,,tt0030781,,"The story of the rise of boxer Joe Thomas, which paralleled the life of Joe Louis.",0,0,Spirit of Youth,en +69103,Donald's Nephews,1938-04-15,8.0,,,tt0030070,,"Donald's sister Dumbella sends her three sons Huey, Dewey, and Louie to visit their uncle Donald. They prove to be quite a handful for Donald, even with help from his book on child rearing.",0,0,Donald's Nephews,en +43155,Test Pilot,1938-04-22,118.0,,,tt0030848,They're yours... in a heart-walloping love story!,Jim is a test pilot. His wife Ann and best friend Gunner try their best to keep him sober. But the life of a test pilot is anything but safe.,0,0,Test Pilot,en +116973,Four Men and a Prayer,1938-04-29,85.0,,,tt0030150,,The sons of a disgraced British officer try to clear his name.,0,0,Four Men and a Prayer,en +267483,Swing!,1938-04-29,69.0,,,tt0031999,,"Ted Gregory is trying to be the first black producer to mount a show on Broadway, but he has trouble with his star singer.",0,0,Swing!,en +53219,Mickey's Trailer,1938-05-06,7.0,,,tt0030448,,"Goofy's in the driver's seat, Mickey's in the kitchen, and Donald's in bed in Mickey's high-tech house trailer. When Goofy comes back to eat breakfast, leaving the car on autopilot, it takes them onto a dangerous closed mountain road. When Goofy realizes this, he accidentally unhooks the trailer, sending it on a perilous route. They come very close to disaster several times, while the oblivious Goofy drives on and hooks back up to them.",0,0,Mickey's Trailer,en +268350,Romance on the Run,1938-05-11,0.0,,,tt0030694,,A (rather shady?) private detective specializing in recovering highly insured items gets involved in recovering a stolen necklace. In the process also gets involved with a secretary at the insurance company.,0,0,Romance on the Run,en +46326,Port of Shadows,1938-05-18,91.0,,,tt0030643,...A Story Which the French Have Put On the Screen With Daring Skill!,A military deserter in a French port city finds love amidst trouble.,0,0,Le Quai des brumes,fr +396987,Медведь,1938-06-11,,,,tt0030428,,,0,0,Медведь,ru +151911,Blockade,1938-06-17,85.0,,,tt0029924,Romance under Fire!,A simple peasant is forced to take up arms to defend his farm during the Spanish Civil War. Along the way he falls in love with Russian whose father is involved in espionage.,0,0,Blockade,en +259292,Honeymoon,1947-05-17,74.0,,,tt0039472,A Racy Tale of ROMANCE!,A prospective bride and groom have misadventures in Mexico City.,0,0,Honeymoon,en +99318,The Shopworn Angel,1938-07-15,85.0,,,tt0030744,,"During WWI Bill Pettigrew, a naive young Texan soldier is sent to New York for basic training. He meets worldly wise actress Daisy Heath when her car nearly runs him over.",0,0,The Shopworn Angel,en +43846,Love Finds Andy Hardy,1938-07-22,91.0,,,tt0030386,The new story of Judge Hardy's family!,A 1938 romantic comedy film which tells the story of a teenage boy who becomes entangled with three different girls all at the same time.,0,0,Love Finds Andy Hardy,en +38769,Little Miss Broadway,1938-07-29,72.0,,,tt0030371,,An orphan is provisionally adopted by the manager of a hotel populated by show business people. The hotel's owner doesn't like the entertainers and wants the girl returned to the orphanage.,0,0,Little Miss Broadway,en +34106,You Can't Take It With You,1938-08-23,126.0,,,tt0030993,YOU'LL LOVE THEM ALL FOR GIVING YOU THE SWELLEST TIME YOU'VE EVER HAD!,"Alice, the only relatively normal member of the eccentric Sycamore family, falls in love with Tony Kirby. His wealthy banker father, Anthony P. Kirby, and his snobbish mother, strongly disapprove of the match. When the Kirbys are invited to dinner to become better acquainted with their future in-laws, things do not turn out the way Alice had hoped.",1644736,7433101,You Can't Take It With You,en +29872,Carefree,1938-09-02,83.0,,,tt0029971,Together again!,"Dr. Tony Flagg's friend, Steven, has problems in the relationship with his fiancee, Amanda, so he persuades her to visit Dr. Flagg. After some minor misunderstandings, she falls in love with Dr. Flagg. When he tries to use hypnosis to strengthen her feelings for Steven, things get complicated.",0,0,Carefree,en +104427,The Affairs of Annabel,1938-09-09,68.0,,,tt0029845,,"Wonder Pictures' seedy publicity man Lanny Morgan has put the studio's biggest star, Annabel Allison, in one crazy stunt after another. His latest scheme has Annabel pretending to be a maid in order to research her next screen role. Her disastrous attempts at cooking and cleaning, and her involvement with two fugitives hiding out at her employers' house provide her with more material than she really wanted.",0,0,The Affairs of Annabel,en +153161,Young Dr. Kildare,1938-10-14,82.0,,,tt0031000,Women in sables! Men in white!,An intern (Lew Ayres) handles emergencies and wins an older doctor's (Lionel Barrymore) approval at a New York hospital.,0,0,Young Dr. Kildare,en +80771,There Goes My Heart,1938-10-14,83.0,,,tt0030856,,An heiress takes a job as a department store clerk.,0,0,There Goes My Heart,en +43855,The Mad Miss Manton,1938-10-21,80.0,,,tt0030396,,"When the murdered body discovered by beautiful, vivacious socialite Melsa Manton disappears, police and press label her a prankster until she proves them wrong.",0,0,The Mad Miss Manton,en +90932,"Listen, Darling",1938-10-21,75.0,,,tt0030368,See it with a song in your heart!,"To stop Pinkie's mother Dottie from marrying a man they know she does not love, Pinkie and her friend Buzz kidnap her in the family trailer to live a life on the open road without worries about how to make ends meet. They then get the idea to find a husband for her whom both she and Pinkie would like.",0,0,"Listen, Darling",en +62567,The Great Waltz,1938-11-04,104.0,,,tt0030202,"Your beating heart,your pounding pulse will tell you it's the most exciting musical love story ever told!",Composer Johann Strauss risks his marriage over his infatuation with a beautiful singer.,0,0,The Great Waltz,en +104556,Annabel Takes a Tour,1938-11-10,67.0,,,tt0029872,,"Annabel Allison, star of Wonder Pictures, is irked at her poor publicity, especially when a rival gets engaged to a Marquis; so she makes studio head Webb re-hire disgraced publicity agent Morgan for her personal appearance tour. The trip proceeds with a flurry of Morgan's crazy, slapstick publicity stunts. Then Annabel has her chance to ""bag"" a real Viscount.",0,0,Annabel Takes a Tour,en +43157,Just Around the Corner,1938-11-11,70.0,,,tt0030302,,Penny helps her idealistic architect father get his dream of a slum clearance project; The little miss dances with Corporal Jones.,0,0,Just Around the Corner,en +132859,"Come On, Rangers",1938-11-21,0.0,,,tt0030006,,A Texas Ranger (Roy Rogers) and his pals come out of forced retirement to do what the cavalry cannot.,0,0,"Come On, Rangers",nl +10235,Alexander Nevsky,1938-11-24,112.0,,,tt0029850,,"It is the 13th century, and Russia is overrun by foreign invaders. A Russian knyaz', or prince, Alexander Nevsky, rallies the people to form a ragtag army to drive back an invasion by the Teutonic knights. This is a true story based on the actual battle at a lake near Novgorod. Soviet film-maker Sergei Eisenstein's only successfully-completed sound film project with producer acceptance, it was none-the-less pulled from release upon Josef Stalin's disastrous signing of the ""peace pact"" with the Third Reich just a few weeks after its premiere; but it was quickly put back into distribution when the Germans (also disastrously) decided to invade the USSR, pact or no pact, a few months later and it has remained an acclaimed example of Soviet film to the present time.",0,0,Александр Невский,ru +257081,Submarine Patrol,1938-11-25,95.0,,,tt0030808,,A naval officer is demoted for negligence and put in command of a run-down submarine chaser with a motley crew.,0,0,Submarine Patrol,en +176867,Heart of the North,1938-12-10,83.0,,,tt0030225,"See Canada's ""finest"" swing into action in the first color-epic of the mounties...",A two-fisted Canadian Mountie leads lawmen in pursuit of the thieves who stole an Edmonton-bound freighter's cargo.,0,0,Heart of the North,en +242683,Zaza,1938-12-29,83.0,,,tt0032157,,A seductive music hall star falls in love with a married aristocrat.,0,0,Zaza,en +43849,Sweethearts,1938-12-30,114.0,,,tt0030817,America's Singing Sweethearts are Sweethearts!,Bickering husband-and-wife stage stars are manipulated into a break-up for publicity purposes.,0,0,Sweethearts,en +118889,Kentucky,1938-12-30,96.0,,,tt0030317,,Romeo and Juliet story set amidst horseracing in Kentucky. The family feud of lovers Jack and Sally goes back to the Civil War and is kept alive by her Uncle Peter.,0,0,Kentucky,en +14589,Another Thin Man,1939-01-01,103.0,,47814,tt0031047,Their Merriest Hit! Mr. and Mrs. Thin Man Have a B-A-B-Y!,An explosives manufacturer suspects a young man is out to kill him. He calls in Nick and Nora (with new baby) to sort things out.,0,0,Another Thin Man,en +147829,Stand Up and Fight,1939-01-06,97.0,,,tt0031972,,A southern aristocrat clashes with a driver transporting stolen slaves to freedom.,0,0,Stand Up and Fight,en +27966,King of the Underworld,1939-01-14,67.0,,,tt0031536,Don't Kill This Killer! Bring Him Back Alive!,"Niles and Carol Niles are married doctors who save one of ganglord Gurney's men. Gurney exploits them, then kills Niles leaving Carol to take the fall. He next kidnaps writer Bill Forrest to write his biography. Knowing Bill will be killed when the biography is finished, Carol takes matters into her own hands.",0,0,King of the Underworld,en +43829,Jesse James,1939-01-14,106.0,,,tt0031507,Motion Pictures' Supreme Epic !,"After railroad agents forcibly evict the James family from their family farm, Jesse and Frank turn to banditry for revenge.",1600000,0,Jesse James,en +149793,The Lone Wolf Spy Hunt,1939-01-27,71.0,,395433,tt0031589,WANTED As A Spy Suspect!,Spies force former jewel thief Michael Lanyard (Warren William) to steal defense secrets in Washington.,0,0,The Lone Wolf Spy Hunt,en +26378,They Made Me a Criminal,1939-01-28,92.0,,,tt0032022,Sensational Human Drama!,"A boxer flees, believing he has committed a murder while he was drunk.",0,0,They Made Me a Criminal,en +133255,Harlem Rides the Range,1939-02-01,56.0,,,tt0031406,Men Of Action Blaze A Trail Of Love And Lead As Law And Order Comes To The Old West!,A cowboy and his sidekick try to help a homesteader from being cheated out of his property.,0,0,Harlem Rides the Range,nl +18569,Made for Each Other,1939-02-10,92.0,,,tt0031602,Heartbreak...!,A couple struggle to find happiness after a whirlwind courtship.,0,0,Made for Each Other,en +197737,Let Freedom Ring,1939-02-24,87.0,,,tt0031565,Thrill-Blasting Drama of Men and Women at the Turn of a New Era with a cast as big as the Majestic land they Glorify !,A Harvard man (Nelson Eddy) fights a railroad baron with a disguise and the power of the press.,0,0,Let Freedom Ring,en +244201,"Yes, My Darling Daughter",1939-02-25,86.0,,,tt0032149,,"Ellen is a free spirited young woman in love with Doug. Sadly he must leave America for a two year job in Belgium. Ellen and Doug decide to spend their last weekend together in a tourist cabin at a rural lake. Her family is shocked that a young unmarried woman would engage in such amoral activity. The comic plot develops as Ellen argues her case for women's freedom and independence, trying to win over her mother, grandmother, and other dubious relatives.",0,0,"Yes, My Darling Daughter",en +87612,You Can't Get Away with Murder,1939-03-23,89.0,,,tt0032153,,"Johnnie learns crime from petty thug Frank Wilson. When Wilson kills a pawnbroker with a gun stolen from Johnnie's sister Madge's fiance Fred Burke, Fred goes to Sing Sing's death house. Wilson uses all the pressure can to keep Johnnie silent, even after he and Johnnie themselves wind up in the big house.",0,0,You Can't Get Away with Murder,en +31993,Midnight,1939-03-24,94.0,,,tt0031647,,An unemployed showgirl poses as Hungarian royalty to infiltrate Parisian society.,0,0,Midnight,en +74314,Bulldog Drummond's Secret Police,1939-03-29,56.0,,,tt0031125,TRAPPED IN A CAGE WITH DEATH while a Madman cracks the whip!,Captain Drummond and his girlfriend want to marry but a hidden treasure in the house in which they want to celebrate their marriage is complicating the situation. (Volker Boehm),0,0,Bulldog Drummond's Secret Police,en +18651,The Story of Vernon and Irene Castle,1939-03-29,93.0,,,tt0031983,,"In 1911, Vernon Castle, minor stage comic meets stage-struck Irene Foote. A few misadventures later, they're married. They abandon comedy to attempt a dancing career, which lands them in Paris without a sou. Fortunately, agent Maggie Sutton hears them rehearse and starts them on their brilliant career as the world's foremost ballroom dancers. But at the height of their fame, World War I begins...",0,0,The Story of Vernon and Irene Castle,en +67375,The Story of Alexander Graham Bell,1939-04-04,98.0,,,tt0031981,Darryl F. Zanuck's Entertainment gem will take its place in the Hall of Fame !,"Alexander Graham Bell falls in love with deaf girl Mabel Hubbard while teaching the deaf and trying to invent means for telegraphing the human voice. She urges him to put off thoughts of marriage until his experiments are complete. He invents the telephone, marries and becomes rich and famous, though his happiness is threatened when a rival company sets out to ruin him.",0,0,The Story of Alexander Graham Bell,en +10568,The Four Feathers,1939-04-20,129.0,,,tt0031334,See...The Dreaded Dervishes! - Kipling's Famous FUZZY WUZZIES!,A disgraced officer risks his life to help his childhood friends in battle.,0,0,The Four Feathers,en +153162,Calling Dr. Kildare,1939-04-28,86.0,,,tt0031133,,Young Dr. Kildare (Lew Ayres) treats a hoodlum for gunshot wounds without telling Dr. Gillespie (Lionel Barrymore).,0,0,Calling Dr. Kildare,en +31995,Jamaica Inn,1939-05-11,108.0,,,tt0031505,,"In coastal Cornwall, England, during the early 19th Century, a young woman discovers that she's living with a gang of criminals who arrange shipwrecking for profit.",0,0,Jamaica Inn,en +41234,Blind Alley,1939-05-11,69.0,,,tt0031104,STAND IN HIS WAY..AND DIE!,A gangster takes a doctor and his family hostage.,0,0,Blind Alley,en +43832,Only Angels Have Wings,1939-05-15,121.0,,,tt0031762,BIG As The Fog-Shrouded Andes!,"Geoff Carter (Cary Grant) is the head of a crumbling air freight service in desperate need of a replacement pilot. He is forced to hire a descredited aviator (Richard Barthelmess) who arrives with his wife (Rita Hayworth), Carter's ex-lover. Meanwhile, traveler Bonnie Lee (Jean Arthur) tries to get close to the emotionally closed-off Carter. The film received two Academy Award nominations.",0,0,Only Angels Have Wings,en +83435,The Foundling,1939-06-06,68.0,,,tt0184823,,A little girl is lost in Moscow and hits the road making fun (not intentionally) of everybody she meets. She'll be back home soon but she will change the life of at least one man forever...,0,0,Podkidysh,ru +52437,Invitation to Happiness,1939-06-07,97.0,,,tt0031493,,An egotistical boxer romances a rich backer's daughter.,0,0,Invitation to Happiness,en +27053,Le Jour se Lève,1939-06-08,93.0,,,tt0031514,,"After committing a murder, a man locks himself in his apartment and recollects the events the led him to the killing.",0,0,Le jour se lève,fr +78318,Juarez,1939-06-10,125.0,,,tt0031516,See It Now ! You'll Remember It Always !,The newly named emperor Maximilian and his wife Carolotta arrive in Mexico to face popular sentiment favoring Benito Juraez and democracy..,0,0,Juarez,en +43833,Q Planes,1939-06-20,82.0,,,tt0031831,,An eccentric Scotland Yard inspector (Ralph Richardson) thinks something beamed from a spy ship is dropping planes.,0,0,Q Planes,en +292656,Tractor Drivers,1939-07-03,88.0,,,tt0032050,,"The story takes place in a Soviet placed in what is now Ukraine. A mechanic arrives in the Soviet, lead by a young independent woman driving tractors and, between many comedy sketches and propaganda mottoes, a love comes to light.",0,0,Трактористы,ru +140470,Bulldog Drummond's Bride,1939-07-12,56.0,,,tt0031124,HIS Greatest CASE...HIS TOUGHEST BATTLE WAS ON ITS WAY AS WEDDING BELLS WERE RINGING!,Capt. (ret.) Hugh “Bulldog” Drummond is on the precipice of matrimony to his beloved Phyllis--but a bank robbery and a daring escape is going to get in their way before they reach the altar in this brisk-paced finale to the Paramount Drummond series.,0,0,Bulldog Drummond's Bride,en +42852,"Goodbye, Mr. Chips",1939-07-28,114.0,,,tt0031385,At The Top Of The Year's,"A shy British teacher looks back nostalgically at his long career, taking note of the people touched his life.",0,0,"Goodbye, Mr. Chips",en +228647,Miracles For Sale,1939-08-14,71.0,,,tt0031657,Thrills! Chills! Laughs!,A maker (Robert Young) of illusions for magicians protects an ingenue (Florence Rice) likely to be murdered.,0,0,Miracles For Sale,en +59828,Killer McCoy,1947-12-01,104.0,,,tt0039531,His NEW sensational Role!,A lightweight boxer gets mixed up in murder.,0,0,Killer McCoy,en +630,The Wizard of Oz,1939-08-15,102.0,http://thewizardofoz.warnerbros.com/,,tt0032138,"We're off to see the Wizard, the wonderful Wizard of Oz!","Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.",2777000,33754967,The Wizard of Oz,en +89086,Stanley and Livingstone,1939-08-18,101.0,,,tt0031973,,"When American newspaperman and adventurer Henry M. Stanley comes back from the western Indian wars, his editor James Gordon Bennett sends him to Africa to find Dr. David Livingstone, the missing Scottish missionary. Stanley finds Livingstone (""Dr. Livingstone, I presume."") blissfully doling out medicine and religion to the happy natives. His story is at first disbelieved.",0,0,Stanley and Livingstone,en +99909,The Angels Wash Their Faces,1939-08-26,86.0,,,tt0031045,,"A young man just released from a reformatory moves to a new neighborhood with his sister, intending to start a new life. However, he gets mixed up with the local mob boss and corrupt politicians and soon finds himself being framed for an arson and murder he didn't commit.",0,0,The Angels Wash Their Faces,en +47882,Nancy Drew and the Hidden Staircase,1939-09-09,60.0,,354066,tt0031708,,Nancy Drew and Ted Nickerson solve a murder and save two elderly ladies from losing their family home. The old mansion is complete with a moving wall and a hidden staircase.,0,0,Nancy Drew and the Hidden Staircase,en +115109,The Rains Came,1939-09-15,104.0,,,tt0031835,,"Indian aristocrat Rama Safti returns from medical training in the U.S. to give his life to the poor folk of Ranchipur. Lady Edwina and her drunken artist ex-lover Ransome get in the way, but everyone shapes up when faced by plague, earthquakes and flooding.",0,0,The Rains Came,en +98125,Honeymoon in Bali,1939-09-29,95.0,,,tt0031440,,"Bill Burnett, a resident of Bali, visits New York City, meets and falls in love with Gail Allen, the successful manager of a Fifth Avenue shop, who is determined to remain free and independent. Bill proposes, Gail declines and Bill goes home to Bali. But a young girl, Rosie, and Tony the Window Cleaner, who dispels advice on every floor, soon have Gail thinking maybe she was a bit hasty with her no to Bill's proposal. Ere long she discovers that she does love Bill and can't live without him. She goes down to Bali to give him the good news. He learns that he is soon to marry Noel Van Ness. She goes back to New York City.",0,0,Honeymoon in Bali,en +362758,Seven Brothers,1939-09-30,108.0,,,tt0031914,,Based on a novel by Aleksis Kivi. Tells the growth story of seven brothers of Jukola in 19th century Finland.,0,0,Seitsemän veljestä,fi +1859,Ninotchka,1939-10-06,110.0,,,tt0031725,Greta Garbo laughs!,A stern Russian woman sent to Paris on official business finds herself attracted to a man who represents everything she is supposed to detest.,1365000,2279000,Ninotchka,en +75363,The Spy in Black,1939-10-07,82.0,,,tt0031968,Today's U-boat terror makes this the year's timeliest picture!,A German submarine is sent to the Orkney Isles in 1917 to sink the British fleet.,4668069,0,The Spy in Black,en +32610,Babes in Arms,1939-10-13,93.0,,,tt0031066,The big musical fun show!,"Mickey Moran, son of two vaudeville veterans, decide to put up his own vaudeville show with his girlfriend Patsy Barton. But child actress Rosalie wants to make a comeback and replace Patsy both professionally and as Mickey's girl.",0,0,Babes in Arms,en +46069,The Story of the Last Chrysanthemum,1939-10-13,142.0,,,tt0032156,,"In Tokyo in 1888, Kikunosuke Onoue, the adoptive son of an important actor, discovers that he is praised for his acting only because he is his father's heir, and that the troupe complains how bad he is behind his back. The only person to talk to him honestly about his acting is Otoku, the wet-nurse of his adoptive father's child. She is fired by the family, and Kikunosuke is forbidden to see her, because of the gossip a relationship with a servant would cause. Kikunosuke falls in love with Otoku, and leaves home to try to make a living on his own merits outside Tokyo. He is eventually joined by Otoku, who encourages him to become a famous actor to regain the recognition of his family. Written by Will Gilbert",0,0,残菊物語,ja +102901,Sighs of Spain,1939-10-16,100.0,,,tt0030814,,"Dolores, a woman of bad temper and good feelings, works as a laundress with her daughter Sole. They live with the stepfather and godfather, a charming bon vivant who often returns home drunk. They all have a very different character, but share the illusion of seeing Sole turned into a great artist. Then, a representative of artists comes to Sevilla looking for a good singer to launch to fame",0,0,Suspiros de España,en +22999,The Flying Deuces,1939-10-28,69.0,,,tt0031322,They dish out the dizziest rib-ride of the year!,"Ollie is in love with a woman. When he discovers that she is already married, he tries to kill himself. Of course, the suicide is avoided and the boys join the Foreign Legion to get away from their troubles. Finally, they are arrested for trying to desert the Legion and to escape the firing squad by stealing a plane.",0,0,The Flying Deuces,en +27144,The Dark Eyes of London,1939-11-03,76.0,,,tt0031208,,Insurance agent-physician collects on policies of men murdered by a disfigured resident of the home for the blind where he acts as doctor-on-call.,0,0,The Dark Eyes of London,en +73194,Drums Along the Mohawk,1939-11-03,104.0,,,tt0031252,Red-Blooded DRAMA !,"Set in America's Colonial period, John Ford's adventure tale follows Gilbert (Henry Fonda) and Lana Martin (Claudette Colbert) as they try to survive the rugged frontier. After their settlement is repeatedly attacked by Indians, the couple is taken in by a spinster (Edna May Oliver). Lana bears a son, while Gilbert heads off to fight the Indians and the British. He returns, wounded, to find his family once again under attack by the Indians.",0,0,Drums Along the Mohawk,en +179103,On Dress Parade,1939-11-18,62.0,,,tt0031012,,"The final feature in the ""Dead End Kids"" film series finds a youth trying to adjust to life at a military school.",0,0,On Dress Parade,en +153163,The Secret of Dr. Kildare,1939-11-24,84.0,,,tt0031909,,Intern Kildare (Lew Ayres) heals a millionaire's daughter and tricks Dr. Gillespie (Lionel Barrymore) into taking a vacation.,0,0,The Secret of Dr. Kildare,en +43828,Destry Rides Again,1939-11-30,94.0,,,tt0031225,They make the fighting sinful west blaze into action before your eyes!,"When a tough western town needs taming, the mild-mannered son of a hard-nosed sheriff gets the job.",0,0,Destry Rides Again,en +47404,"Nick Carter, Master Detective",1939-12-15,59.0,,47400,tt0031721,THE WIZARD OF CLUES!!! Nick Carter lives again in the fierce brutal...dangerous era of TODAY!,"Detective Nick Carter is brought in to foil spies at the Radex Airplane Factory, where a new fighter plane is under manufacture.",0,0,"Nick Carter, Master Detective",en +200447,Miss Annie Rooney,1942-05-29,82.0,,,tt0035068,Glamor girls beware!,"A poor girl falls for a wealthy young man. He invites her to his gala birthday party, but she doesn't have the right kind of dress to wear, so her family and friends band together to raise money to get her the proper dress.",0,0,Miss Annie Rooney,en +124115,Four Wives,1939-12-25,99.0,,,tt0031336,"The ""Four Daughters"" are now ""Four Wives"" It's a four belle picture! For these four wedding belles!","In this sequel to Four Daughters, Adam Lemp and his daughters have gone on with life after the death of Mickey Borden. Ann, Mickey's widow, falls in love with Felix Dietz, but on the day of her engagement discovers that she carries Mickey's child.",0,0,Four Wives,en +51802,Of Mice and Men,1939-12-30,106.0,,,tt0031742,She was made for love... and tragedy.,A mentally retarded giant and his level headed guardian find work at a sadistic cowboy's ranch in depression era America.,0,0,Of Mice and Men,en +104398,Dots,1940-01-01,2.0,,,tt0032408,,Experimental short film in which color patches are painted directly on film boxes,0,0,Dots,en +31445,Beyond Tomorrow,1940-01-01,84.0,,,tt0032247,Is there a better time to fall in love?,Three ghosts try to help two young lovers whom they knew when alive.,0,0,Beyond Tomorrow,en +250332,The Green Hornet,1940-01-08,258.0,,,tt0031394,,A newspaper publisher and his Korean servant fight crime as vigilantes who pose as a notorious masked gangster and his aide.,0,0,The Green Hornet,en +28421,The Invisible Man Returns,1940-01-12,81.0,,259401,tt0032635,,"The owner of a coal mining operation, falsely imprisoned for fratricide, takes a drug to make him invisible, despite its side effect: gradual madness.",0,0,The Invisible Man Returns,en +3085,His Girl Friday,1940-01-18,92.0,,,tt0032599,She learned about men from him!,"Hildy, the journalist former wife of newspaper editor Walter Burns, visits his office to inform him that she's engaged and will be getting remarried the next day. Walter can't let that happen and frames the fiancé, Bruce Baldwin, for one thing after another, to keep him temporarily held in prison, while trying to steer Hildy into returning to her old job as his employee.",0,0,His Girl Friday,en +72638,The Fighting 69th,1940-01-27,90.0,,,tt0032467,Jammed With Action ! . . Loaded With Excitement ! . . . And Every Thrill-Packed Word Is True !,"Although loudmouthed braggart Jerry Plunkett alienates his comrades and officers, Father Duffy, the regimental chaplain, has faith that he'll prove himself in the end.",0,0,The Fighting 69th,en +43809,Broadway Melody of 1940,1940-02-09,102.0,,,tt0032284,Eleanor Powell - Fred Astaire - In The Finest Broadway Melody Of Them All,"Johnny Brett and King Shaw are an unsuccessful dance team in New York. A producer discovers Brent as the new partner for Clare Bennett, but Brett, who thinks he is one of the people they lent money to gives him the name of his partner.",0,0,Broadway Melody of 1940,en +43806,Abe Lincoln in Illinois,1940-02-12,110.0,,,tt0032181,Now on the screen!,Abe Lincoln in Illinois is a 1940 biographical film which tells the story of the life of Abraham Lincoln from his departure from Kentucky until his election as President of the United States.,0,0,Abe Lincoln in Illinois,en +26376,Castle on the Hudson,1940-02-17,77.0,,,tt0032315,,A hardened crook behind bars comes up against a reform-minded warden.,0,0,Castle on the Hudson,en +3937,Blondie on a Budget,1940-02-29,72.0,,177062,tt0032263,,"Dagwood wants to join the trout club and Blondie wants a fur coat. Jealousy reigns when Dag's old girlfriend Joan shows up, but nothing else matters when a drawing at the movie theatre provides money for the coat.",0,0,Blondie on a Budget,en +56154,Young Tom Edison,1940-03-15,86.0,,,tt0033289,,"Inventor Thomas Edison's boyhood is chronicled and shows him as a lad whose early inventions and scientific experiments usually end up causing disastrous results. As a result, the towns folk all think Tom is crazy, and creating a strained relationship between Tom and his father. Toms only solace is his understanding mother who believes he's headed to do great things.",0,0,Young Tom Edison,en +249969,Three Cheers for the Irish,1940-03-16,99.0,,,tt0033157,,"Peter Casey has been with the New York City police department for 25 years. He's totally surprised when he's asked to retire on his 25th anniversary with the force. He's even more unprepared for the romance that develops between his favorite daughter, Maureen, and the Scottish cop who takes over his beat.",0,0,Three Cheers for the Irish,en +120109,Too Many Husbands,1940-04-03,81.0,,,tt0033174,JUST MARRIED.......BUT TO WHOM?,Romantic comedy adapted from a Somerset Maugham play.,0,0,Too Many Husbands,en +87060,The Proud Valley,1940-04-06,76.0,,,tt0031828,,"In a Welsh coal mining valley, a young man with a beautiful singing voice is called upon to make the ultimate sacrifice when a pit disaster threatens.",0,0,The Proud Valley,en +64928,It All Came True,1940-04-06,97.0,,,tt0032643,HURRY! HERE'S A HIT!,"After crooked nightclub owner Chips Maguire murders a police informant, he blackmails his piano player to allow him to stay at his eccentric mother's boarding house.",0,0,It All Came True,en +415072,Hi-Yo Silver,1940-04-10,68.0,,,tt0032590,,"Edited version of the 1938 Republic serial ""The Lone Ranger.""",0,0,Hi-Yo Silver,en +153165,Dr. Kildare's Strange Case,1940-04-12,77.0,,,tt0032416,,"Kildare (Lew Ayres) tries brain surgery, advised by Dr. Gillespie (Lionel Barrymore), and faces a rival for nurse Lamont (Laraine Day).",0,0,Dr. Kildare's Strange Case,en +264061,Ski Patrol,1940-05-09,64.0,,,tt0033056,,"In 1939, a group of Finnish soldiers defend the border from Russian invaders.",0,0,Ski Patrol,en +43811,"Edison, the Man",1940-05-10,107.0,,,tt0032432,Spencer Tracy's greatest performance!,"In flashback, fifty years after inventing the light bulb, an 82-year-old Edison tells his story starting at age twenty-two with his arrival in New York. He's on his way with invention of an early form of stock market ticker.",0,0,"Edison, the Man",en +99863,Flight Angels,1940-05-18,74.0,,,tt0032476,Women Are TOUGH Angels... They Can Handle Anything That Flies... Except A Pilot!,"Federal Airlines ace pilot Chick Faber is grounded by Flight Superintendent Bill Graves when a doctor says his eyesight is failing. Aided by Mary Norvell and Nan Hudson, Graves persuades Chick to take a job as teacher in the school for airline hostesses, and Chick and Mary get married. He learns that the Army is going to test a stratosphere plane that he and Artie Dixon designed and feels that he should make the first flight but permission is refused.",0,0,Flight Angels,en +94182,Torrid Zone,1940-05-25,88.0,,,tt0033175,,A Central American plantation manager and his boss battle over a traveling showgirl.,0,0,Torrid Zone,en +110525,Four Sons,1940-06-14,89.0,,,tt0032490,,Four Sons is a 1940 film directed by Archie Mayo. It stars Don Ameche and Eugenie Leontovich. It is a remake of the 1928 film of the same name.,0,0,Four Sons,en +43808,Andy Hardy Meets Debutante,1940-07-05,88.0,,,tt0032206,Look out Broadway -- Here comes Mickey!,"Judge Hardy takes his family to New York City, where Andy quickly falls in love with a socialite. He finds the high society life too expensive, and eventually decides that he liked it better back home.",0,0,Andy Hardy Meets Debutante,en +43821,The Return of Frank James,1940-08-16,92.0,,,tt0032983,,"Farmer Frank (Henry Fonda) and his ward (Jackie Cooper) hunt brother Jesse's killers, the back-shooting Fords.",0,0,The Return of Frank James,en +128669,Rhythm on the River,1940-08-28,92.0,,,tt0032986,,"Popular songwriter Oliver Courtney has been getting by for years using one ghost writer for his music and another for his lyrics. When both writers meet at an inn, they fall in love and then try to sell their songs under their own name. The problem is every song publisher thinks they're copying Courtney's style.",0,0,Rhythm on the River,en +55604,Boom Town,1940-08-30,119.0,,,tt0032273,Where Men Are Rough And Tough . . . And Like Their Women The Same Way !,McMasters and Sand come to oil towns to get rich. Betsey comes West intending to marry Sand but marries McMasters instead. Getting rich and losing it all teaches McMasters and Sand the value of personal ties.,2000000,9172000,Boom Town,en +41597,Night Train to Munich,1940-08-31,95.0,,,tt0032842,,"When the Germans march into Prague, armour-plating inventor Dr Bomasch flees to England. His daughter Anna escapes from arrest to join him, but the Gestapo manage to kidnap them both back to Berlin. As war looms, British secret service agent Gus Bennet follows disguised as a senior German army officer. His ploy -- not unpleasant one -- is pretending to woo Anna to the German cause.",0,0,Night Train to Munich,en +286267,One Man's Fate,1940-09-01,93.0,,,tt0137951,,"Young farmer Paavo's wife dies in childbirth, and their baby soon after. The wife's family claim back the dowry she brought to their marriage, but Paavo has already used most of it for improvements at the farm. Paavo's life starts going downhill as he resorts to drinking.",0,0,Miehen tie,fi +69060,Ahí está el detalle,1940-09-11,112.0,,,tt0032186,,"Cantinflas, the boyfriend of the servant of a rich industrial man, gets into the house in order to kill a mad dog. Suddenly this man appears so the servant tells him that Cantinflas is his wife's brother (Leonardo), who had been lost for years. The rich man then remembers that his father in law's testament could only be paid when all brothers get together, so treats Cantinflas, a real bum, as a king.",0,0,Ahí está el detalle,es +132928,No Time for Comedy,1940-09-14,98.0,,,tt0032846,A country boy takes over Broadway . . . until he gets into heart-trouble!,"Director William Keighley's 1940 film adaptation of S. N. Behrman's stage hit, about an aspiring playwright who finds himself an overnight Broadway success, stars James Stewart, Rosalind Russell, Genevieve Tobin, Louise Beavers, Charles Ruggles and Allyn Joslyn.",0,0,No Time for Comedy,en +52360,The Howards of Virginia,1940-09-19,116.0,,,tt0032612,The Vivid Drama Of A Nation's Birth !,Beautiful young Virginian Jane steps down from her proper aristocratic upbringing when she marries down-to-earth surveyor Matt Howard. Matt joins the Colonial forces in their fight for freedom against England. Matt will meet Jane's father in the battlefield.,0,0,The Howards of Virginia,en +31498,The Mummy's Hand,1940-09-20,67.0,,221544,tt0032818,The tomb of a thousand terrors!,"A couple of young, out-of-work archaeologists in Egypt discover evidence of the burial place of the ancient Egyptian princess Ananka. After receiving funding from an eccentric magician and his beautiful daughter, they set out into the desert only to be terrorized by a sinister high priest and the living mummy Kharis who are the guardians of Ananka's tomb.",0,0,The Mummy's Hand,en +43812,Knute Rockne All American,1940-10-05,98.0,,,tt0032676,,The story of legendary Notre Dame football player and coach Knute Rockne.,0,0,Knute Rockne All American,en +109716,A Dispatch from Reuter's,1940-10-19,90.0,,,tt0032396,,"German Julius Reuter (Edward G. Robinson) sends 19th-century news by carrier pigeon and then by wire, founding a news agency.",0,0,A Dispatch from Reuter's,en +32093,The Mark of Zorro,1940-11-08,94.0,,,tt0032762,,"Around 1820 the son of a California nobleman comes home from Spain to find his native land under a villainous dictatorship. On the one hand he plays the useless fop, while on the other he is the masked avenger Zorro.",0,0,The Mark of Zorro,en +52859,The Long Voyage Home,1940-11-11,105.0,,,tt0032728,John Ford's epic of savage emotions !,The crew of the merchant ship Glencairn hope to survive a transatlantic crossing during World War II. Adapted from four Eugene O'Neill one-act plays.,0,0,The Long Voyage Home,en +80720,You'll Find Out,1940-11-22,97.0,,,tt0033283,A Cold-Shiver MYSTERY With Hot-Rhythm MUSIC!,"The manager of Kay Kyser's band books them for a birthday party bash for an heiress at a spooky mansion, where sinister forces try to kill her.",0,0,You'll Find Out,en +108222,Tin Pan Alley,1940-11-29,94.0,,,tt0033167,,"Songwriters Calhoun and Harrigan get Katie and Lily Blane to introduce a new one. Lily goes to England, and Katy joins her after the boys give a new song to Nora Bayes. All are reunited when the boys, now in the army, show up in England.",0,0,Tin Pan Alley,en +413232,"No, No, Nanette",1940-12-19,96.0,,,tt0032847,,"Perky young Nanette attempts to save the marriage of her uncle and aunt by untangling Uncle Jimmy from several innocent but ensnaring flirtations. Attempting one such unentanglement, Nanette enlists the help of theatrical producer Bill Trainor, who promptly falls in love with her. The same thing happens when artist Tom Gillespie is called on for help. But soon Uncle Jimmy's flirtations become too numerous, and Nanette's romances with Tom and Bill run into trouble. Will Uncle Jimmy's marriage survive, and will Nanette find happiness with Tom, Bill, or somebody else?",0,0,"No, No, Nanette",en +84875,The Well-Digger's Daughter,1940-12-20,0.0,,,tt0033603,,"A rural maiden's two suitors go off to war, leaving her pregnant.",0,0,La fille du puisatier,fr +56151,Lydia,1941-01-01,104.0,,,tt0033858,The Story of a free woman and her romances!,"Lydia MacMillan, a wealthy old woman who has never married, invites several men her own age to her home to reminisce about the times when they were young and courted her. In memory, each romance seemed splendid and destined for happiness, but in each case, Lydia realizes, the truth was less romantic, and ill-starred.",0,0,Lydia,en +130507,Four Mothers,1941-01-04,86.0,,,tt0033628,,"Adam Lemp and his four daughters (Ann, Thea, Kay, and Emma) find themselves in financial and emotional crises. Thea's husband Ben has promoted a Florida housing development to everyone in town, and when a hurricane wipes out the investments of all their friends, the Lemps decide to pay back the losses, even if it costs them their own home. Kay's husband Clint is so devoted to his medical research that he risks losing Kay. And Ann's husband Felix, encountering Kay during an out-of-town trip, finds his loneliness putting his marriage at risk. Meanwhile, as a result of the antipathy of the townspeople due to the investment disaster, Adam loses his beloved position with the musical society.",0,0,Four Mothers,en +94251,"Tall, Dark and Handsome",1941-01-24,78.0,,,tt0034262,,"Robin Hoodish gangster in 1929 Chicago is an object of affection, kind to New York hood and bad to a bad crook.",0,0,"Tall, Dark and Handsome",en +30307,The Devil Commands,1941-02-03,65.0,,,tt0033530,When the Devil commands Karloff obeys...!,A scientist kills innocent victims in his efforts to communicate with his late wife.,0,0,The Devil Commands,en +42062,Moontide,1942-05-29,94.0,,,tt0035082,,After a drunken night out a longshoreman thinks he may have killed a man.,0,0,Moontide,en +76465,The Strawberry Blonde,1941-02-22,97.0,,,tt0034236,"Wanting what others have can only be destructive, or is it?","Biff Grimes is desperately in love with Virginia, but his best friend Hugo marries her and manipulates Biff into becoming involved in his somewhat nefarious businesses. Hugo appears to have stolen Biff's dreams, and Biff has to deal with the realisation that having what he wants and wanting what another has can be very different things.",0,0,The Strawberry Blonde,en +3941,Blondie Goes Latin,1941-02-27,72.0,,177062,tt0033403,Where there's a Bumstead...there's always trouble and fun!,"The 8th film in the Blondie series - Blondie Goes Latin. Mr. Dithers invites the Bumstead's on a South American cruise. Somehow Dagwood winds up as the female drummer in the ship's band, while Penny Singleton gets to show off her Broadway background in some lively musical numbers.",0,0,Blondie Goes Latin,en +94659,Brothers and Sisters of the Toda Family,1941-03-01,105.0,,,tt0034298,,"After the death of her husband, Mrs Toda and her youngest daughter receive a frosty welcome from the extended family.",0,0,Todake no kyodai,ja +31324,Rage in Heaven,1941-03-07,85.0,,,tt0034078,,Robert Montgomery plays a jealous man who plots to fake his death and incriminate his wife's suspected lover.,0,0,Rage in Heaven,en +335498,The Penalty,1941-03-13,80.0,,,tt0034011,Find the Blonde and Get the Gangster!,"In this crime drama, a ruthless gangster's son is soon following in his father's footsteps. When his daddy kills an FBI agent and a cabby, the boy sees it all. Fortunately the courts intervene and send the lad off to live with a family of farmers.",0,0,The Penalty,en +44875,Topper Returns,1941-03-21,88.0,,438087,tt0034303,Topper's having girl trouble again!,"Topper is once again tormented by a fun-loving spirit. This time, it's Gail Richards, who was accidentally murdered while vacationing at the home of her wealthy friend, Ann Carrington (Landis), the intended victim. With Topper's help, Gail sets out to find her killer with the expected zany results.",0,0,Topper Returns,en +33931,The Sea Wolf,1941-03-21,100.0,,,tt0034162,Jack London's great novel of terror afloat.,Shipwrecked fugitives try to escape a brutal sea captain who's losing his mind.,0,0,The Sea Wolf,en +183827,The Bad Man,1941-03-28,70.0,,,tt0033368,His Great New 1941 Thrill Drama!,"Lopez is a bandit who has stolen the herd at Gil's ranch, so Hardy is about to foreclose. But Lucia has come back from New York and Gil is happy until he meets her husband, Morgan.",0,0,The Bad Man,en +38460,Dead Men Tell,1941-03-28,61.0,,413661,tt0033519,Aboard a treasure ship Chan battles his most elusive adversary... the ghost of a pirate 100 years dead!,"A treasure map in four pieces, the ghost of a hanged pirate, a talking parrot, and a ship full of red herrings complicate Charlie's search for a murderer on board a docked ship.",0,0,Dead Men Tell,en +238362,Morsian yllättää,1941-04-27,67.0,,,tt0121398,,"Valentin Vaala's crazy, romantic comedy.",0,0,Morsian yllättää,en +15,Citizen Kane,1941-04-30,119.0,,,tt0033467,It's Terrific!,"Newspaper magnate, Charles Foster Kane is taken from his mother as a boy and made the ward of a rich industrialist. As a result, every well-meaning, tyrannical or self-destructive move he makes for the rest of his life appears in some way to be a reaction to that deeply wounding event.",839727,23217674,Citizen Kane,en +29286,The Black Cat,1941-05-02,70.0,,,tt0033397,Even Ladd is scared!,"Greedy heirs wait in a mansion for a rich cat lover to die, only to learn her cats come first.",176000,0,The Black Cat,en +218582,Thieves Fall Out,1941-05-03,72.0,,,tt0034282,,"Eddie Barnes, tired of being a nobody and living with his parents, decides to cash in his mother's legacy and use the money to buy a business. Unfortunately, Eddie's mother has to die before the broker can collect the full value of the policy and the broker's gangster partner doesn't want to wait for nature to take its course.",0,0,Thieves Fall Out,en +27622,A Woman's Face,1941-05-09,106.0,,,tt0034399,HOW COULD THIS WOMAN WIN A MAN'S LOVE...HIS KISSES...HIS EMBRACES...?,Plastic surgery gives a scarred female criminal a new outlook on life.,0,0,A Woman's Face,en +38770,Major Barbara,1941-05-14,131.0,,,tt0033868,,"A young and idealistic woman, who has adopted the Salvation Army and whose father is an armament industrialist, will save more souls directing her father's business. A comedy with social commentary.",0,0,Major Barbara,en +20644,Love Crazy,1941-05-23,99.0,,,tt0033852,Hearty laughers welcome! Come on over and HOWL!,William Powell and Myrna Loy are a couple whose marriage is on the verge of being broken up by his old girlfriend and her disapproving mother.,0,0,Love Crazy,en +111470,Billy the Kid,1941-05-30,94.0,,,tt0033389,"WANTED FOR MURDER WILLIAM BONNEY ALIAS ""BILLY THE KID""","Billy Bonney is a hot-headed gunslinger who narrowly skirts a life of crime by being befriended and hired by a peaceful rancher, Eric Keating. When Keating is killed, Billy seeks revenge on the men who killed him, even if it means opposing his friend, Marshal Jim Sherwood.",0,0,Billy the Kid,de +95037,Time Out for Rhythm,1941-06-05,75.0,,,tt0034296,A Stage Show and Love Story Too Big for Any Stage... Only Screen could Bring Them To You!,"A producer (Rudy Vallee) and his partner clash over two women (Ann Miller, Rosemary Lane) in show business.",0,0,Time Out for Rhythm,en +25507,The Get-Away,1941-06-13,89.0,,,tt0033577,Keep your eye on the beautiful brunette!,A jailed cop befriends a mob chieftain and stages a breakout with him.,0,0,The Get-Away,en +22404,Man Hunt,1941-06-13,105.0,,,tt0033873,,"British hunter Thorndike vacationing in Bavaria has Hitler in his gun sight. He is captured, beaten, left for dead, and escapes back to London where he is hounded by German agents and aided by a young woman.",0,0,Man Hunt,en +22752,The Reluctant Dragon,1941-06-19,74.0,,,tt0034091,The big feature show with a thousand surprises!,"Humorist Robert Benchley attempts to find Walt Disney to ask him to adapt a short story about a gentle dragon who would rather recite poetry than be ferocious. Along the way, he is given a tour of Walt Disney Studios, and learns about the animation process.",0,0,The Reluctant Dragon,en +26182,The Big Store,1941-06-21,83.0,,,tt0033388,Gorgeous Girls! Uproarious Fun! The Big Musical Show!,The Marx brothers run havoc in a department store while protecting its owner.,0,0,The Big Store,en +81120,Love on the Dole,1941-06-28,94.0,,,tt0033853,,"Depressing and realistic family drama about the struggles of unemployment and poverty in 1930s Lancashire. The 20-year-old Kerr gives an emotionally charged performance as Hardcastle, one of the cotton workers trying to make life better. Interlaced with humour that brings a ray of sunshine to the pervasive bleakness, this remains a powerful social study of life between the wars, and was a rare problem picture to come out of Britain at the time.",0,0,Love on the Dole,en +97910,Juke Girl,1942-05-30,90.0,,,tt0034926,Sure She's Easy To Meet .....but try and forget her!,A hitchhiker (Ronald Reagan) and a jukebox-joint hostess (Ann Sheridan) are framed for murder in Florida tomato country.,0,0,Juke Girl,en +16442,Sergeant York,1941-07-02,134.0,,,tt0034167,Missiles! Jets! Tanks! ...It's Still The Guy With Guts And A Gun Who Wins The War!,Alvin York a hillbilly sharpshooter transforms himself from ruffian to religious pacifist. He is then called to serve his country and despite deep religious and moral objections to fighting becomes one of the most celebrated American heroes of WWI.,1400000,16361885,Sergeant York,en +95552,Jungle Cavalcade,1941-07-03,76.0,,,tt0033775,,Compilation of footage from Frank Buck's three films about his adventures capturing animals for the world's zoos.,0,0,Jungle Cavalcade,en +61109,The Flame of New Orleans,1941-07-07,79.0,,,tt0033606,,"In old New Orleans, a beautiful adventuress juggles the attentions of a rich banker and a dashing sea captain.",0,0,The Flame of New Orleans,en +183825,Bad Men of Missouri,1941-07-26,71.0,,,tt0033369,,"The Younger brothers return to Missouri after the Civil War with intent to avenge the misdeeds of William Merrick, a crooked banker who has been buying up warrants on back-taxes and dispossessing the farmers.",0,0,Bad Men of Missouri,en +42298,Dressed to Kill,1941-08-08,74.0,,,tt0033558,,A detective's wedding is postponed when gunshots are heard nearby.,0,0,Dressed to Kill,en +43792,Lady Be Good,1941-09-01,112.0,,,tt0033803,"THE TAP-HAPPIEST, SWING-SINGIEST, MELODIC MIRACLE SINCE ""ZIEGFELD GIRL""!",Married songwriters almost split up while putting on a big show.,0,0,Lady Be Good,en +38461,Charlie Chan in Rio,1941-09-05,60.0,,413661,tt0033458,,"A pair of murders in Rio de Janeiro leads the local police to call the famed detective. Charlie is puzzled, at first, when it appears that one of the murderers is killed by the first victim's widow.",0,0,Charlie Chan in Rio,en +42066,Ladies in Retirement,1941-09-09,91.0,,,tt0033802,The Great Broadway Melodrama comes to flaming life on the screen!,"In this gothic tale, a housekeeper tries to juggle taking care of a retired actress and keeping an eye on her two sisters.",0,0,Ladies in Retirement,en +97110,The Tyrannical Father,1941-09-19,114.0,,,tt0033994,,"While rehearsing the annual play, a clerk tries to regain the attention of his beloved, in a comedy of equivoques.",0,0,O Pai Tirano,pt +28658,You'll Never Get Rich,1941-09-25,88.0,,,tt0034409,Exciting loveliness and rhythm in a star-spangled army musical!,A Broadway choreographer (Fred Astaire) gets drafted and puts on a GI show with his girlfriend (Rita Hayworth) and producer (Robert Benchley).,0,0,You'll Never Get Rich,en +95414,The Mad Scientist,1941-09-26,10.0,,,tt0034247,Amazing! Startling!,The Man of Steel fights a mad scientist who is destroying Metropolis with an energy cannon.,100000,0,The Mad Scientist,en +49609,A Yank in the R.A.F.,1941-09-26,98.0,,,tt0034405,ROLLICKING ROMANCE! GLORIOUS ADVENTURE!,"Tyrone Power is a pilots' pilot, but he doesn't believe in anything beyond his own abilities. He gets into trouble by flying a new fighter directly to Canada instead of to New York and letting it be towed across as the law demands, but is offered a new job ferrying bombers to war torn England. While on a layover he finds Betty Grable, an old flame, has joined the RAF as a WREN in her attempt to fight for democracy. Power joins up to impress her and in the course of his several missions begins to develope an understanding of what they are fighting for.",0,0,A Yank in the R.A.F.,en +33112,It Started with Eve,1941-09-26,90.0,,,tt0033766,The Most Romantic Riot Since Eve Gave Adam the Applesauce!,"A young man asks a hat check girl to pose as his fiancée in order to make his dying father's last moments happy. However, the old man's health takes a turn for the better and now his son doesn't know how to break the news that he's engaged to someone else, especially since his father is so taken with the impostor.",0,0,It Started with Eve,en +53798,Father Takes a Wife,1941-10-03,79.0,,,tt0033592,,A famous actress has to win over her ready-made family when she weds a shipping magnate.,0,0,Father Takes a Wife,en +75315,Texas,1941-10-09,93.0,,,tt0034269,All the thrills of the roaring West!,"Two Virginians are heading for a new life in Texas when they witness a stagecoach being held up. They decide to rob the robbers and make off with the loot. To escape a posse, they split up and don't see each other again for a long time. When they do meet up again, they find themselves on different sides of the law. This leads to the increasing estrangement of the two men, who once thought of themselves as brothers.",0,0,Texas,en +45215,Swamp Water,1941-10-23,88.0,,,tt0034251,,A hunter happens upon a fugitive and his daughter living in a Georgia swamp. He falls in love with the girl and persuades the fugitive to return to town.,0,0,Swamp Water,en +43266,How Green Was My Valley,1941-10-28,118.0,,,tt0033729,Millions Have Read This Great Novel... Millions more will see an even greater picture!,"At the turn of the century in a Welsh mining village, the Morgans (he stern, she gentle) raise coal-mining sons and hope their youngest will find a better life. Lots of atmosphere, very sentimental view of pre-union miners' lives. The film is based on the 1939 Richard Llewellyn novel of the same name.",1250000,6000000,How Green Was My Valley,en +25862,Blues in the Night,1941-11-15,88.0,,,tt0033409,2 GRAND BANDS! JIMMY LUNCEFORD'S and WILL OSBORNE'S! MUSIC GALORE!,Members of a traveling jazz band try to keep their talented leader from dying after he breaks from the band and begins drinking and taking drugs.,0,0,Blues in the Night,en +95874,Two-Faced Woman,1941-11-30,90.0,,,tt0034328,"Love-laughs explode all over the place when Garbo plays twin sisters, and Melvyn Douglas loves both of them!","While at a ski lodge, Larry Blake sees instructor Karin Borg and decides to sign up for private lessons. The next thing he knows, she is Mrs. Blake. When he announces that he is going back to work on his magazine in New York the next day, Karin refuses to go with him. She later comes to New York, buys expensive clothes, and goes to meet him when she sees he is with old flame Griselda. Caught by Blake's business partner, O.O. Miller, before she can leave, she explains that she is really Karin's twin sister Katherine. Hard to believe, but that is what she tries to make everyone, including Larry, believe. Larry, however, has serious doubts, but plays the game to the hilt as the worldly Katherine tries to take him away from both Griselda and Karin.",0,0,Two-Faced Woman,en +41495,Johnny Eager,1941-12-09,107.0,,,tt0033774,"I've heard all about you, Johnny Eager . . . but I still want you to kiss me!","A charming racketeer seduces the DA's daughter for revenge, then falls in love.",0,0,Johnny Eager,en +11869,"Quax, der Bruchpilot",1941-12-16,92.0,,,tt0034076,,No overview found.,0,0,"Quax, der Bruchpilot",de +96107,"H.M. Pulham, Esq.",1941-12-18,120.0,,,tt0033686,THERE'S A GIRL LIKE MARVIN MYLES HIDDEN IN EVERY MAN'S LIFE,"A man who lived his life as he was was told he should, not as he would have chosen to, is brought out of his shell by a beautiful young woman.",0,0,"H.M. Pulham, Esq.",en +3087,Yankee Doodle Dandy,1942-06-06,126.0,,,tt0035575,"Get ready to Laugh, to Sing, to Shout! ...For here comes Uncle Sam's Star Spangled Yankee Doodle Dandy!","A film of the life of the renowned musical composer, playwright, actor, dancer and singer George M. Cohan.",0,0,Yankee Doodle Dandy,en +97598,Kathleen,1941-12-18,88.0,,,tt0033780,She's twelve and TERRIFIC now,"Kathleen is a 12 year old who lives in a big house with a nanny, a butler, maids, no mother and a father who is working most of the time. She dreams of a family with a mother, father and her, and tells everyone that she has such a family. Because of this story, she cannot invite any friends over as they will see that it is not true.",0,0,Kathleen,en +56558,Remember the Day,1941-12-25,86.0,,,tt0034092,,"Elderly schoolteacher Nora Trinell, waiting to meet presidential nominee Dewey Roberts, recalls him as her student back in 1916 and his relation to Dan Hopkins, the man she married and lost.",0,0,Remember the Day,en +42678,The Shanghai Gesture,1941-12-25,99.0,,,tt0034175,Mystery-lure of the Far East!,A gambling queen uses blackmail to stop a British financier from closing her Chinese clip joint.,0,0,The Shanghai Gesture,en +43790,Babes on Broadway,1941-12-31,118.0,,,tt0034485,The Show That's Out Of This World,Penny Morris and Tommy Williams are both starstruck young teens but nobody seems to give them any chance to perform. Instead they decide to put up their own show to collect money for a summer camp for the kids.,0,0,Babes on Broadway,en +26801,Sealed Lips,1942-01-02,62.0,,,tt0034163,Master criminal or missing citizen?,"There's something very odd about Romano (John Litel), a notorious gangster serving time in the federal pen. For one thing, Romano doesn't sound much like himself. For another, he always seems to be hiding something. Detective Lee (William Gargan) suspects that something's amiss, and he's probably right! A pedestrian effort with excellent cinematography by Stanley Cortez.",0,0,Sealed Lips,en +20640,Woman of the Year,1942-01-19,114.0,,,tt0035567,The picture of the year!,"Rival reporters Sam and Tess fall in love and get married, only to find their relationship strained when Sam comes to resent Tess' hectic lifestyle.",3000000,0,Woman of the Year,en +153169,Dr. Kildare's Victory,1942-02-04,92.0,,,tt0033554,,Dr. Gillespie (Lionel Barrymore) supports Kildare's (Lew Ayres) crusade against their hospital's deal with a rival hospital.,0,0,Dr. Kildare's Victory,en +33541,Ride 'Em Cowboy,1942-02-13,82.0,,,tt0035252,They'd make a horse LAUGH!,"Two peanut vendors at a rodeo show get in trouble with their boss and hide out on a railroad train heading west. They get jobs as cowboys on a dude ranch, despite the fact that neither of them knows anything about cowboys, horses, or anything else.",0,0,Ride 'Em Cowboy,en +261035,Captain Midnight,1942-02-15,270.0,,,tt0034577,,"Secret Service Major Steel is one of the few men in America aware of the fact that Captain Albright is also Captain Midnight, daring masked aviator dedicated to fighting gangsters and enemies of America.",0,0,Captain Midnight,en +57684,Roxie Hart,1942-02-20,75.0,,,tt0035272,The gal who became a national pastime!,"To try and kick-start her show-business career, our heroine admits to a Chicago murder. But although Cook County don't seem to let dames swing, and even with top slippery lawyer Billy Flynn, it's all something of a gamble. The original version of the movie ""Chicago"".",0,0,Roxie Hart,en +32921,Captains of the Clouds,1942-02-21,114.0,,,tt0034578,So full of spectacle and glory it had to be made in Technicolor!,"Inspired by Churchill's Dunkirk speech, brash, undisciplined Canadian bush pilot Brian MacLean and three friends enlist in the RCAF.",0,0,Captains of the Clouds,en +212530,The Great King,1942-03-02,118.0,,,tt0034814,,"King Frederick II (aka ""Frederick the Great"") of Prussia is engaged in a major battle against the Austrian army at Kunersdorf, and things aren't going well. The Austrians are inflicting major casualties, and his army is beginning to crumble. Defeat seems inevitable when a combination of events gives him hope that he may pull victory from the jaws of defeat after all",0,0,Der große König,de +43783,Song of the Islands,1942-03-13,76.0,,,tt0035361,BETTY'S EVEN GOT THE PALM TREES SWAYING!,"With his sidekick Rusty, Jeff Harper sails to paradisiacal tropical isle Ahmi-Oni to bargain on behalf of his cattle baron father for land owned by transplanted Irishman Dennis O'Brien. But Jeff falls in love with O'Brien's daughter, Eileen, and even his father can't break them up after he arrives and himself falls under the spell of island splendor.",0,0,Song of the Islands,en +97767,Always in My Heart,1942-03-14,92.0,,,tt0034454,,"A man is pardoned from prison and returns to Santa Rita, CA to be with his family, but discovers his children have been told he's dead and his wife is in love with another man.",0,0,Always in My Heart,en +145963,The Bulleteers,1942-03-26,9.0,,,tt0034556,,"Criminals with rocket powered car loot and extort the city, and only Superman can stop them!",0,0,The Bulleteers,en +27372,There Was a Father,1942-04-01,94.0,,,tt0034591,,"Shuhei Horikawa, a poor schoolteacher, struggles to raise his son Ryohei by himself, despite neither money nor prospects.",0,0,Chichi Ariki,ja +23107,Lady Gangster,1942-04-01,62.0,,,tt0034959,,"An actress gets involved with a criminal gang and winds up taking the rap for a $40,000 robbery. Before being sent to prison, she steals the money from her partners and hides it, she is thinking to use it as a bargaining chip to be released from prison. However, her former partners don´t have the same ideas.",0,0,Lady Gangster,en +29020,Horton Hatches the Egg,1942-04-11,10.0,,,tt0034870,,"Horton the elephant agrees to watch over lazy Maisie bird's egg while she vacations. Much later, after...",0,0,Horton Hatches the Egg,en +214909,We Were Dancing,1942-04-30,95.0,,,tt0035537,The hilarious story of two lovable chiselers.,"A penniless former princess weds an equally cash-strapped baron, so they support themselves by becoming houseguests at the homes of wealthy American socialites. Norma Shearer's last film.",0,0,We Were Dancing,en +110980,The Mad Monster,1942-05-15,77.0,,,tt0035009,The blood of a wolf he placed in the veins of a man... and created a monster such as the world has never known!,A reporter's (Johnny Downs) girlfriend's (Anne Nagel) father (George Zucco) injects a farmhand with wolf blood.,0,0,The Mad Monster,en +43525,In This Our Life,1942-05-16,97.0,,,tt0034890,A sensational novel throbs to life! The cast is one of Warner Bros. best - the picture is one of Warner Bros. biggest!,"A young woman dumps her fiancée and runs off with her sister's husband. They marry, settle in Baltimore, and Stanley ultimately drives Peter to drink and suicide. Stanley returns home to Richmond only to learn that her sister Roy and old flame Craig have fallen in love and plan to marry. The jealous and selfish Stanley attempts to win back Craig's affections, but her true character is revealed when, rather than take the rap herself, she attempts to pin a hit and run accident on the young black clerk who works in Craig's law office.",0,0,In This Our Life,en +79372,Tortilla Flat,1942-05-21,105.0,,,tt0035460,"THEY'RE STRONG FOR WINE, WOMEN, AND SONG.","Danny, a poor northern Californian Mexican-American, inherits two houses from his grandfather and is quickly taken advantage of by his vagabond friends.",0,0,Tortilla Flat,en +97829,Syncopation,1942-05-22,88.0,,,tt0035405,,A young trumpeter rises through the jazz world and finds love.,0,0,Syncopation,en +965,The Magnificent Ambersons,1942-07-10,88.0,,,tt0035015,,The spoiled young heir to the decaying Amberson fortune comes between his widowed mother and the man she has always loved.,0,0,The Magnificent Ambersons,en +19140,The Pride of the Yankees,1942-07-14,128.0,,,tt0035211,"Intimate and thrilling drama of a hero of the headlines... the girl who had his love and shared his life, but dared not question his one secret!","The story of the life and career of the baseball hall of famer, Lou Gehrig.",0,0,The Pride of the Yankees,en +42825,Crossroads,1942-07-23,83.0,,,tt0034622,Where women wait to seal your fate!,A French diplomat who's recovered from amnesia is blackmailed over crimes he can't remember.,0,0,Crossroads,en +166610,The Ducktators,1942-08-01,8.0,,,tt0034685,,A wartime cartoon that satirizes the Axis leaders of World War II.,0,0,The Ducktators,en +100528,The War Against Mrs. Hadley,1942-08-07,86.0,,,tt0035531,,"Wealthy American society matron, Stella Hadley (Fay Bainter) refuses to sacrifice her material comforts to aid the war effort until she realizes that her selfishness is cheating the boys overseas who are fighting for her freedom.",0,0,The War Against Mrs. Hadley,en +99324,Busses Roar,1942-08-18,58.0,,,tt0034558,"BYE-BYE, SPY! HERE COME THE MARINES!...What action! Iron-fisted leatherneck mows down sabotage ring...on hurtling cross-country bus!",A sergeant (Richard Travis) saves the day when Axis agents plant a bomb on a bus bound for California oil fields.,0,0,Busses Roar,en +56143,The Battle of Midway,1942-09-14,18.0,http://www.archive.org/details/BattleOfMidway,,tt0034498,,"The Japanese attack on Midway in June 1942, filmed as it happened.",0,0,The Battle of Midway,en +16444,The First of the Few,1942-09-14,118.0,,,tt0034734,,This 1942 fictionalized biopic chronicles the true story of how two of the most remarkable men in aviation history - visionary Spitfire designer R.J. Mitchell and his test pilot Geoffrey Crisp - designed a streamlined monoplane that led to the development of the Spitfire.,0,0,The First of the Few,en +43524,Iceland,1942-09-21,79.0,,,tt0034886,, ,0,0,Iceland,en +55236,Desperate Journey,1942-09-25,107.0,,,tt0034646,"Man alive, Just picture this excitement!","When Flight Lt Forbes and his crew are shot down after bombing their target, they discover valuable information, about a hidden German aircraft factory, that must get back to England. In their way across Germany, they try and cause as much damage as possible. Then with the chasing Germans about to pounce, they come up with an ingenious plan to escape.",0,0,Desperate Journey,en +29372,Flying Tigers,1942-10-08,102.0,,,tt0034742,Strong Brave Men Flying in the Face of Death that We may Live ...,"Jim Gordon commands a unit of the famed Flying Tigers, the American Volunteer Group which fought the Japanese in China before America's entry into World War II. Gordon must send his outnumbered band of fighter pilots out against overwhelming odds while juggling the disparate personalities and problems of his fellow flyers.",0,0,Flying Tigers,en +99545,Night Monster,1942-10-20,73.0,,,tt0035124,What kind of a thing is it?!,"There's a'doin's transpirin' at the Old Dark Manse of Old Man Ingston where, one-by-one, invited guests are being mysteriously murdered by the monster of the fog-shrouded moors.",0,0,Night Monster,en +29239,The Mummy's Tomb,1942-10-23,60.0,,221544,tt0035096,The FEAR of the Year!,A high priest of Karnak travels to America with the living mummy Kharis (Lon Chaney Jr.) to kill all those who had desecrated the tomb of the Egyptian princess Ananka thirty years earlier.,0,0,The Mummy's Tomb,en +31805,Road to Morocco,1942-11-10,82.0,,135441,tt0035262,You'll Shriek At These Shieks! . . . trying the double - Oh! on Sheikess Dorothy Lamour!,"Two carefree castaways on a desert shore find an Arabian Nights city, where they compete for the luscious Princess Shalmar.",0,0,Road to Morocco,en +43522,Gentleman Jim,1942-11-14,104.0,,,tt0034778,"The grandest story of the Naughty ""Nineties"" becomes the gayest picture of the Fighting ""Forties!""","As bareknuckled boxing enters the modern era, brash extrovert Jim Corbett uses new rules and dazzlingly innovative footwork to rise to the top of the top of the boxing world.",0,0,Gentleman Jim,en +289,Casablanca,1942-11-26,102.0,,,tt0034583,They had a date with fate in Casablanca!,"In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.",878000,10462500,Casablanca,en +90461,Whistling in Dixie,1942-12-01,74.0,,435108,tt0035552,FUNNIEST FILM EVER MADE !,"Radio sleuth Wally 'The Fox' Benton travels to Georgia with his fiancé Carol to be married; and to help Carol's college chum, Ellamae Downs, solve a mystery involving a murdered man, old Fort Dixon, and buried treasure.",0,0,Whistling in Dixie,en +45000,Les Visiteurs du Soir,1942-12-05,120.0,,,tt0035521,,"At the end of the 15th century, two minstrels Gilles and Dominique come from nowhere into the castle of Baron Hugues. Gilles charms Anne, Hughes' daughter, while Dominique charms both Hugues and Ann's fiance. Gilles and Dominique are not really in love they are sent by the Devil to desperate people. But Ann is so pure that Gilles is caught to his own trap... How will they fight against the Devil ?",0,0,Les visiteurs du soir,fr +43526,Journey for Margaret,1942-12-17,81.0,,,tt0034923,,"An American newspaperman and his wife, caught in the London blitz, lose their unborn child in an air raid. Outraged, they visit a shelter for homeless children where they fall in love with orphans Margaret and her brother Peter. They eventaully adopt the children and bring them to America.",0,0,Journey for Margaret,en +22387,Random Harvest,1942-12-17,126.0,,,tt0035238,He had found love - lost it - and now had found it again!,"An amnesiac World War I vet falls in love with a music hall star, only to suffer an accident which restores his original memories but erases his post-War life.",0,0,Random Harvest,en +60488,Arabian Nights,1942-12-25,86.0,,,tt0034465,Dashing Thieves of Baghdad...riding out of the magic and splendor of Arabian Nights,"Jon Hall, Maria Montez and Sabu star in this lush, epic story of two half brothers who battle each other for the power of the throne and the love of a sensual, gorgeous dancing girl, Scheherazade",0,0,Arabian Nights,en +112912,Why We Fight: The Battle of Russia,1943-01-01,83.0,,158365,tt0036629,,"""The Battle of Russia,"" Chapter V of Frank Capra's ""Why We Fight"" series, follows the beginning of the end for Adolph Hitler.",0,0,Why We Fight: The Battle of Russia,en +21734,Shadow of a Doubt,1943-01-16,108.0,,,tt0036342,A Blast of DRAMATIC Dynamite exploded right before your eyes!,"A bored young woman, a teen living in Santa Rosa, California, Charlotte ""Charlie"" Newton (Wright), is frustrated because nothing seems to be happening in her life and that of her family. Then, she receives wonderful news: her uncle (for whom she was named), Charlie Oakley (Cotten), is arriving for a visit. But Uncle Charlie may not be the man he seems to be.",0,0,Shadow of a Doubt,en +194509,The Crystal Ball,1943-01-22,81.0,,,tt0035771,,A young woman pretends to be a fortune teller in order to find romance.,0,0,The Crystal Ball,en +36612,The Hard Way,1943-02-20,109.0,,,tt0034828,There are two sides to every story -- and every woman!,"An ambitious woman doesn""t care who she hurts in her drive to make her sister a star.",0,0,The Hard Way,en +120588,Something to Shout About,1943-02-25,90.0,,,tt0036375,,"A press agent (Don Ameche), a composer (Janet Blair) and a landlord (Jack Oakie) of a theatrical boardinghouse revive vaudeville on Broadway.",0,0,Something to Shout About,en +15807,Air Force,1943-03-20,124.0,,,tt0035616,GIANTS OF THE SKY...blazing a trail to victory!,The crew of an Air Force bomber arrives in Pearl Harbor in the aftermath of the Japanese attack and is sent on to Manila to help with the defense of the Philippines.,0,0,Air Force,en +58076,Immortal Sergeant,1943-04-29,91.0,,,tt0036037,,"During WWII, a corporal in the desert reminisces about the love he left behind and faces uncertainty about his strength as a leader.",0,0,Immortal Sergeant,en +28438,The Leopard Man,1943-05-08,66.0,,,tt0036104,"Woman alone the victims of strange, savage killer!","When a leopard escapes during a publicity stunt, it triggers a series of murders.",0,0,The Leopard Man,en +5155,Ossessione,1943-05-16,140.0,,,tt0035160,,"Gino, a drifter, begins an affair with inn-owner Giovanna as they plan to get rid of her older husband.",0,0,Ossessione,it +59882,The Desperadoes,1943-05-25,87.0,,,tt0035798,Red-Blooded Action,"Popular mailcoach driver Uncle Willie is in fact in league with the town's crooked banker. They plan to have the bank robbed after emptying it, and when Willie's choice for this doesn't show in time, he gets some local boys to do it. When his man does turn up he decides to stick around, as he is pals with the sheriff and also takes a shine to Willie's daughter Allison. This gives the bad men several new problems.",0,0,The Desperadoes,en +50001,Lady of Burlesque,1943-06-01,91.0,,,tt0036094,Mirth! Murder! Melody! Mystery! and Girls! Girls! Girls!,"After one member of their group is murdered, the performers at a burlesque house must work together to find out who the killer is before they strike again.",0,0,Lady of Burlesque,en +84708,Captive Wild Woman,1943-06-04,61.0,,,tt0035713,STRANGEST OF SIGHTS... The brain of an animal... the form of a woman!,An insane scientist doing experimentation in glandular research becomes obsessed with transforming a female gorilla into a human...even though it costs human life.,0,0,Captive Wild Woman,en +25037,The Life and Death of Colonel Blimp,1943-06-10,163.0,,,tt0036112,,"General Clive Candy lives through four decades of war and peace - from the Boer War to World War II - trying to stay true to his belief that ""right will always defeat might"" and trying to stay relevant while the world changes irrevocably around him.",0,0,The Life and Death of Colonel Blimp,en +34944,Background to Danger,1943-07-03,80.0,,,tt0035659,,An American gets caught up in wartime action in Turkey.,0,0,Background to Danger,en +125249,The Bat Man,1943-07-16,260.0,,,tt0035665,A HUNDRED TIMES MORE THRILLING ON THE SCREEN!,"Japanese master spy Daka operates a covert espionage-sabotage organization located in Metropolis' now-deserted Little Tokyo, which turns American scientists into pliable zombies.",0,0,The Bat Man,en +22779,Victory Through Air Power,1943-07-17,70.0,,,tt0036497,,"This is a unique film in Disney Production's history. This film is essentially a propaganda film selling Major Alexander de Seversky's theories about the practical uses of long range strategic bombing. Using a combination of animation humorously telling about the development of air warfare, the film switches to the Major illustrating his ideas could win the war for the allies.",0,0,Victory Through Air Power,en +176143,Behind the Rising Sun,1943-08-01,88.0,,,tt0035669,The year's most timely story.,A Japanese publisher urges his American-educated son to side with the Axis.,0,0,Behind the Rising Sun,en +90799,Hi Diddle Diddle,1943-08-02,72.0,,,tt0035996,,"When the bride's mother is supposedly swindled out of her money by a spurned suitor, the groom's father orchestrates a scheme of his own to set things right. He is aided by a cabaret singer, while placating a jealous wife.",0,0,Hi Diddle Diddle,en +245268,The Man from Down Under,1943-08-04,103.0,,,tt0031612,THRILLS! FUN! ACTION!,An Australian blowhard raises two orphaned children as his own in the years leading up to WWII.,0,0,The Man from Down Under,en +100814,Nazty Nuisance,1943-08-06,43.0,,,tt0036423,GET READY FOR ROARS! THEY'RE GOING TO DROP HITLER ON BERLIN...When Hal Roach Presents,"Germany's Adolf Hitler, with his Axis-stooges, Italy's Mussolini and Japan's Suki Yama, although he tried to avoid taking them, is on his way, via submarine, to a tropical country to negotiate a treaty with the High Chief Paj Mab. However, an American P.T-boat crew is already there and have some plans for schickenbit-grubber and his buddies.",0,0,Nazty Nuisance,en +41996,The Man in Grey,1943-08-06,116.0,,,tt0036135,,Melodrama about two girls whose fortunes run on very different paths.,0,0,The Man in Grey,en +26533,The Fallen Sparrow,1943-08-19,94.0,,,tt0035860,,"A former Spanish Civil War prisoner, John McKittrick arrives in New York to find the truth behind the death of his friend Louie Lepetino. Based on the popular Dorothy B. Hughes best seller.",0,0,The Fallen Sparrow,en +18783,Sahara,1943-09-02,97.0,,,tt0036323,Their dramatic story can now be told!,"Sergeant Joe Gunn and his tank crew pick up five British soldiers, a Frenchman and a Sudanese man with an Italian prisoner crossing the Libyan Desert to rejoin their command after the fall of Tobruk. Tambul, the Sudanese leads them to an abandoned desert fortress where they hope to find water. Soon a detachment of German soldiers arrives and attempts to barter food for water, but Gunn and his followers refuse. When the Germans attack, Gunn leads his desert-weary men in a desperate battle, hoping that British reinforcements can arrive in time.",0,0,Sahara,en +43514,Thank Your Lucky Stars,1943-09-25,127.0,,,tt0036422,A thousand shows in one!,An Eddie Cantor look-alike organizes an all-star show to help the war effort.,0,0,Thank Your Lucky Stars,en +285946,Blazing Guns,1943-10-08,54.0,,,tt0035681,THE WEST'S THRILL CHAMPS IN ACTION AGAIN!,The Governor sends Ken and Hoot to clean up the town of Willow Springs.,0,0,Blazing Guns,en +175171,Swing Fever,1943-11-01,79.0,,,tt0037335,Dance! Sing! It's So JOYOUS!,Comedy about a bandleader with hypnotic powers.,0,0,Swing Fever,en +73430,Government Girl,1943-11-05,93.0,,,tt0035952,,An aviation engineer and a government secretary are thrown together by the war effort.,0,0,Government Girl,en +118953,The Mystery of the 13th Guest,1943-11-05,60.0,,,tt0036189,IT'S MURDER!...and it's HORRIFIC!,Murders result from an uncle's wish to eliminate beneficiaries to a will.,0,0,The Mystery of the 13th Guest,en +81030,Summer Storm,1944-07-14,106.0,,,tt0037325,,"Linda Darnell plays a beautiful Russian peasant in this moody Sirk melodrama, based on Chekhov's ""The Shooting Party."" Trying to pull herself out of serf-ish poverty, she works her charms on an engaged aristocrat (George Sanders) with tragic results.",0,0,Summer Storm,en +55763,Vääpeli Körmy - Taisteluni,1994-09-16,0.0,,148320,tt0111648,,,0,0,Vääpeli Körmy - Taisteluni,fi +40916,Girl Crazy,1943-11-26,99.0,,,tt0035942,The Big Musical with Broadway Flair and a Western Air!,"Rich kid Danny Churchill has a taste for wine, women and song, but not for higher education. So his father ships him to an all-male college out West where there's not supposed to be a female for miles. But before Danny arrives, he spies a pair of legs extending out from under a stalled roadster. They belong to the Dean's granddaughter, Ginger Gray, who is more interested in keeping the financially strapped college open than falling for Danny's romantic line. At least at first...",0,0,Girl Crazy,en +43172,Around the World,1943-11-27,80.0,,,tt0035648,THE MUSICAL THAT GOES PLACES... all over the global map on a song-and-laugh tour of our fighting fronts!,"Bandleader Kay Kyser takes his troupe of nutty musicians, goofball comics and pretty girl singers on a tour around the world to entertain the troops during World War II.",0,0,Around the World,en +90465,Whistling in Brooklyn,1943-12-01,87.0,,435108,tt0036533,IT'S RED-ROARIOUS ! SKY-HIGH SKELTON FUN !,"Radio crime show host ""The Fox"" finds himself on the trail of a serial killer while a suspect himself.",0,0,Whistling in Brooklyn,en +40719,War of the Wildcats,1943-12-06,102.0,,,tt0036038,BATTLE-HEAT! Untamed men clash in a well of violence!,"Cowboy Dan Somers and oilman Jim ""Hunk"" Gardner compete for oil lease rights on Indian land in Oklahoma, as well as for the favors of schoolteacher Cathy Allen.",0,0,War of the Wildcats,en +65646,The Eternal Return,1943-12-13,107.0,,,tt0036566,,,0,0,L'éternel retour,fr +40765,The Ghost Ship,1943-12-24,69.0,,,tt0035937,MYSTERY TERROR!,A new crew member has to deal with a sea captain that may be crazy.,0,0,The Ghost Ship,en +22744,Jane Eyre,1943-12-24,97.0,,,tt0036969,,"After a harsh childhood, orphan Jane Eyre is hired by Edward Rochester, the brooding lord of a mysterious manor house to care for his young daughter.",0,0,Jane Eyre,en +100910,Tender Comrade,1943-12-29,102.0,,,tt0036418,Unforgettable,"Ginger Rogers, a young defense plant worker whose husband is in the military during World War II, shares a house with three other women in the same situation.",0,0,Tender Comrade,en +43499,Buffalo Bill,1943-12-31,90.0,,,tt0036677,His adventure made him a hero.His showmanship made him a legend.,"Scout William F. Cody (Joel McCrea) marries a U.S. senator's daughter (Maureen O'Hara), fights the Cheyenne and leads a Wild West show.",0,0,Buffalo Bill,en +29094,The Lodger,1944-01-19,84.0,,,tt0037024,,The inhabitants of a boarding house fear the new lodger is Jack the Ripper.,0,0,The Lodger,en +37992,Phantom Lady,1944-01-28,87.0,,,tt0036260,IT'S UNIQUE...suspense...mystery...drama!,A mystery woman is a murder suspect's only alibi for the night of his wife's death. Based on a story by noir scribe Cornell Woolrich.,0,0,Phantom Lady,en +110573,The Woman Who Dared,1944-02-03,105.0,,,tt0035737,,The strength of a couple's fascination with airplanes and flight is to the detriment of their family,0,0,Le ciel est à vous,fr +43504,The Fighting Sullivans,1944-02-03,112.0,,,tt0037323,THEY MET LIFE - AND GLORY - IN ONE BLINDING FLASH!!,The lives of a close-knit group of brothers growing up in Iowa during the days of the Great Depression and of World War II and their eventual deaths in action in the Pacific theater are chronicled in this film based on a true story.,0,0,The Fighting Sullivans,en +106355,Captain America,1944-02-05,244.0,,,tt0036697,,"Serial - First screen adaptation of Timely Comics' Captain America. Note that he is NOT a super-soldier, is NOT Steve Rogers, and does NOT carry a shield.",0,0,Captain America,en +16373,The Uninvited,1944-02-18,99.0,,,tt0037415,"From the Most Popular Mystery Romance since ""Rebecca""!",A brother and sister move into an old seaside house they find abandoned for many years on the English coast. Their original enchantment with the house diminishes as they hear stories of the previous owners and meet their daughter (now a young woman) who now lives as a neighbor with her grandfather. Also heard are unexplained sounds during the night. It becomes obvious that the house is haunted.,0,0,The Uninvited,en +106821,Four Jills in a Jeep,1944-03-17,89.0,,,tt0036836,,Reenactments of actual USO experiences of its female stars entertaining troops overseas.,0,0,Four Jills in a Jeep,en +28668,The Whistler,1944-03-30,59.0,,33381,tt0037461,Radio's master of mystery NOW on the screen!,The first in a series of movies based on the popular radio drama.,0,0,The Whistler,en +118059,An American Romance,1944-04-16,121.0,,,tt0036596,OUT OF THE HOPE AND COURAGE OF A MAN ...THE LOVE AND DEVOTION OF A WOMAN!,A European immigrant becomes a master of industry but almost loses his family.,3,0,An American Romance,en +120747,The Adventures of Mark Twain,1944-05-03,130.0,,,tt0036582,The Life Story of the Creator of Tom Sawyer and Huckleberry Finn - His keen pen wove a fabric of wit into the lives of Americans !,"A dramatised life of Samuel Langhorn Clemens, or Mark Twain.",0,0,The Adventures of Mark Twain,en +92848,Andy Hardy's Blonde Trouble,1944-05-04,107.0,,,tt0036602,MGM Presents THE LEAP YEAR COMEDY!,"Andy is going to Wainwright College as did his father. He sees a pretty blonde on the train and he is alternately winked at or slapped every time he sees her. Andy is clueless. On the train Andy meets Kay and Dr. Standish who are both headed for Wainwright. Andy likes Kay, but Dr. Standish also seems to take an interest in her. Things are going well at College with Kay, but the blonde is nice one minute and ignores Andy the next. When Andy finds out that the blonde is really identical twins, he tries to help them out with their father but gets caught at their rooming house after midnight.",0,0,Andy Hardy's Blonde Trouble,en +52440,The White Cliffs of Dover,1944-05-11,126.0,,,tt0037462,The greatest love story of our time! It will live forever in your heart! MGM's greatest triumph!,An American woman with a British husband fights to keep her family together through two world wars.,0,0,The White Cliffs of Dover,en +99567,On Approval,1944-05-22,80.0,,,tt0037149,,"Two wealthy Victorian widows are courted tentatively by two impoverished British aristocrats. When one of the dowagers suggests that her beau go away with her for a month to see if they are compatible, the fireworks begin.",0,0,On Approval,en +28425,The Invisible Man's Revenge,1944-06-09,78.0,,259401,tt0036959,,"An eccentric scientist helps a fugitive from the law become invisible, unwittingly giving him the power to exact revenge on his former friends.",0,0,The Invisible Man's Revenge,en +80941,Two Girls and a Sailor,1944-06-14,124.0,,,tt0037408,M-G-M's ship-shapey musical!,"A sailor helps two sisters start up a service canteen. The sailor soon becomes taken with gorgeous sister Jean, unaware that her sibling Patsy is also in love with him.",0,0,Two Girls and a Sailor,en +43546,Bathing Beauty,1944-07-01,101.0,,,tt0036628,M.G.M's Mammoth Technicolor Musical Spectacle!,A big splash in her first starring role: Esther Williams is a teacher at a women's college -- and wacky Red Skelton enrolls to be near her. An astonishing flames-and-fountains aquatic finale.,2361000,6892000,Bathing Beauty,en +43503,Step Lively,1944-07-26,88.0,,,tt0037313,It's Fun!,"Fly-by-night producers dodge bill collectors while trying for one big hit. Step Lively was based on the 1937 play Room Service, by Allen Boretz and John Murray, which also was the basis for the Marx Brothers' film by the same name.",0,0,Step Lively,en +66984,How to Play Football,1944-09-15,7.0,,,tt0036933,,It's Taxidermy Tech vs. Anthropology A&M for this introduction to college football.,0,0,How to Play Football,en +257454,Give Us the Moon,1944-09-18,95.0,,,tt0035945,,"Set just after the end of WWII (but filmed in the middle of it) in a time of general euphoria at having won the war, with full employment and general happiness for all (or nearly all). Peter, the young wastrel son of a hard working hotel owner doesn't like the idea of having to work for a living. He discovers a society of ""White Elephants"" who are quite willing to be poor as long as they don't have to work. They are protected and guided by Nina (Margaret Lockwood) and her precocious sister Heidi (Jean Simmons).",0,0,Give Us the Moon,en +131764,Frenchman's Creek,1944-09-20,110.0,,,tt0036840,A Lady of Fire and Ice... A Rogue of Steel and Gallantry,An English lady falls madly in love with a French Pirate after he kidnaps her from her ancestral home on the coast of Cornwall.,0,0,Frenchman's Creek,en +118900,"In the Meantime, Darling",1944-09-22,72.0,,,tt0036955,A gay and tender story of G.I. love!,A young bride who comes from a rich family has a hard time adjusting to life in a boarding house with other soldiers and their wives. Her spoiled ways cause resentment from the other wives and problems with her husband.,0,0,"In the Meantime, Darling",en +15264,Tall in the Saddle,1944-09-29,87.0,,,tt0037343,WAYNE PACKS A WALLOP...In Action...In Love!,When Rocklin (John Wayne) arrives in a western town he finds that the rancher who hired him as a foreman has been murdered. He is out to solve the murder and thwart the scheming to take the ranch from its rightful owner.,0,0,Tall in the Saddle,en +51144,Torment,1944-10-02,101.0,,,tt0036914,,"An idealistic adolescent, suffering under the thumb of a sadistic schoolmaster, falls in love with a loose girl who is bullied and tormented by another lover.",0,0,Hets,sv +22584,To Have and Have Not,1944-10-11,100.0,,,tt0037382,TALK ABOUT T.N.T.! THIS is IT!,A Martinique charter boat skipper gets mixed up with the underground French resistance operatives during WWII.,0,3650000,To Have and Have Not,en +21451,Ministry of Fear,1944-10-15,86.0,,,tt0037075,Thrilling drama of the Invisible Network of Terror!,"Stephen Neale is released into WWII England after two years in an asylum, but it doesn't seem so sane outside either. On his way back to London to rejoin civilization, he stumbles across a murderous spy ring and doesn't quite know to whom to turn.",0,0,Ministry of Fear,en +52362,None But the Lonely Heart,1944-10-17,113.0,,,tt0037135,"""Black as the Ace I am!""","When an itinerant reluctantly returns home to help his sickly mother run her shop, they're both tempted to turn to crime to help make ends meet.",0,0,None But the Lonely Heart,en +39407,The Climax,1944-10-20,86.0,,,tt0036715,"Greater than ""The PHANTOM of the OPERA""","Dr. Hohner (Karloff), theatre physician at the Vienna Royal Theatre, murders his mistress, the star soprano when his jealousy drives him to the point of mad obsession. Ten years later, another young singer (Foster) reminds Hohner of the late diva, and his old mania kicks in. Hohner wants to prevent her from singing for anyone but him, even if it means silencing her forever. The singer's fiancée (Bey) rushes to save her in the film's climax.",0,0,The Climax,en +17136,The Woman in the Window,1944-11-03,99.0,,,tt0037469,It was the look in her eyes that made him think of murder.,A seductive woman gets an innocent professor mixed up in murder.,0,0,The Woman in the Window,en +26849,The Missing Juror,1944-11-16,66.0,,,tt0037078,,A detective tries to stop whomever is murdering the jurors on a notorious murder case.,0,0,The Missing Juror,en +171594,Enter Arsene Lupin,1944-11-24,72.0,,,tt0036794,Mystery fiction's most notorious rogue... now on the screen!,"French jewel thief Lupin (Charles Korvin) robs an heiress (Ella Raines) on a train, then follows her to England and saves her life.",0,0,Enter Arsene Lupin,en +168994,Army,1944-12-07,87.0,,,tt0037227,,A widow raises her sickly son to be strong enough to join the army and fight on the front lines.,0,0,Rikugun,ja +97088,The Great Sacrifice,1944-12-08,98.0,,,tt0037154,,"A young woman from Sweden (Kristina Söderbaum) living in Hamburg in the summer months attracts a newly married explorer, Albrecht Froben (Carl Raddatz) who has just returned to his native city. But although she seems to be 'life itself', she suffers from a tropical disease which is slowly killing her. Froben is torn between Äls and his wife Octavia (Irene von Mayendorff), who is seen as a kind of 'heavenly' counterpart to the earthy Äls.",0,0,Opfergang,de +42288,Guest in the House,1944-12-08,121.0,,,tt0036886,No girl has ever been called more names! That's Evelyn...the guest...who manages to throw her pretty shadow around where any man near must see it - and when it comes to a man she grants no rights to anyone but herself!,"Evelyn (Anne Baxter), an emotionally vulnerable and unstable woman, stays at the home of her doctor Dan Proctor (Scott McKay). There she meets and falls in love with his brother, Douglas (Ralph Bellamy), who is happily married to Ann (Ruth Warrick). Evelyn then sets forth to break up the happy marriage and win the love of Douglas -- with tragic results.",0,0,Guest in the House,en +46184,Destiny,1944-12-22,65.0,,,tt0036757,,A bank robber reflects on his life of crime while hiding out after a bank heist.,0,0,Destiny,en +271007,Appointment in Tokyo,1945-01-01,56.0,,,tt0214483,,"Produced by the Army Pictorial Service, Signal Corps, with the cooperation of the Army Air Forces and the United States Navy, and released by Warner Bros. for the War Activities Committee shortly after the surrender of Japan. Follow General Douglas MacArthur and his men from their exile from the Philippines in early 1942, through the signing of the instrument of surrender on the USS Missouri on September 1, 1945",0,0,Appointment in Tokyo,en +46769,Vingt-quatre heures de la vie d'un clown,1945-01-01,18.0,,,tt0038222,,"The movie follows the clock round as music hall clown Beby takes off his make up, goes home for a meal, looks at photos and goes to bed to rise, spend a day in the village and perform with his new partner.",0,0,Vingt-quatre heures de la vie d'un clown,en +34127,Wonder Man,1945-01-01,98.0,,,tt0038260,,"Boisterous nightclub entertainer Buzzy Bellew was the witness to a murder committed by gangster Ten Grand Jackson. One night, two of Jackson's thugs kill Buzzy and dump his body in the lake at Prospect Park in Brooklyn. Buzzy comes back as a ghost and summons his bookworm twin, Edwin Dingle, to Prospect Park so that he can help the police nail Jackson.",0,0,Wonder Man,en +43497,Tonight and Every Night,1945-01-09,92.0,,,tt0038178,The screen's first dramatic musical,An American girl falls for an RAF pilot while performing at a British music hall.,0,0,Tonight and Every Night,en +44434,LOL,2006-03-13,81.0,,,tt0462392,,The relationships of three men are examined through their use of technology.,0,0,LOL,en +118948,Adventures of Kitty O'Day,1945-01-19,63.0,,,tt0036758,KITTY CHASES KILLERS...And Gets Her Man! The body was missing...but Kitty was willing!,"A telephone operator (Jean Parker) plays homicide detective with her boyfriend (Peter Cookson), making it harder for the police.",0,0,Adventures of Kitty O'Day,en +28115,Dillinger,1945-03-02,70.0,,,tt0037644,A Cold Blooded Bandit and a Hot Blooded Blonde ... who stopped at Nothing!,The life of American public enemy number one who was shot by the police in 1934.,0,0,Dillinger,en +52827,Thunderhead - Son of Flicka,1945-03-15,78.0,,100992,tt0038172,"A young boy tries to train Thunderhead, a beautiful white colt and the son of his beloved Flicka, to be a champion race horse.","A young boy tries to train Thunderhead, a beautiful white colt and the son of his beloved Flicka, to be a champion race horse.",0,0,Thunderhead - Son of Flicka,en +43489,Brewster's Millions,1945-04-07,79.0,,,tt0037557,,"Monty Brewster is a pennyless, former U.S. Army soldier back from World War II Europe who learns that he has inherited $8 million from a distant relative. But there's a catch: he must spend $1 million of that money in less than two months before his 30th birthday in order to inherit the rest.",0,0,Brewster's Millions,en +173634,Rockin' In The Rockies,1945-04-17,63.0,,,tt0038033,IT'S THE COMICAL...RHYTHMICAL...ACTION MUSICAL EVERYBODY'S HEADIN' FOR!,A group of entertainers decide to put on a show at a western ranch.,0,0,Rockin' In The Rockies,en +45219,The Southerner,1945-04-30,92.0,,,tt0038107,,A sharecropper fights the elements to start his own farm.,0,0,The Southerner,en +58732,The Bullfighters,1945-05-01,61.0,,,tt0037563,,"Bumbling detective Stan Laurel disguises himself as a famous matador in order to hide from the vengeful Richard K. Muldoon, who spent time in prison on Stan's bogus testimony.",0,0,The Bullfighters,en +44001,The Unseen,1945-05-12,80.0,,,tt0038205,Menace more deadly than,A nanny taking care of two kids discover secrets hidden in an old spooky house in their neighborhood.,0,0,The Unseen,en +259593,Where Do We Go from Here?,1945-05-23,74.0,,,tt0038245,,"Bill wants to join the Army, but he's 4F so he asks a wizard to help him, but the wizard has slight problems with his history knowlege, so he sends Bill everywhere in history, but not to WWII.",0,0,Where Do We Go from Here?,en +352719,Molly and Me,1945-05-25,77.0,,,tt0037923,,"A vivacious actress needing work becomes a housekeeper for a crusty retired politician, and gives his life the shaking-up that it needs.",0,0,Molly and Me,en +29368,A Place of One's Own,1945-05-28,92.0,,,tt0037179,,"An elderly couple move into an old, supposedly haunted abandoned house. A young girl comes to live with the pair as a companion for the wife. However, soon the girl is possessed by the spirit of another girl, a wealthy woman who had once lived in the house but who had been murdered there.",0,0,A Place of One's Own,en +19096,Back to Bataan,1945-05-30,95.0,,,tt0037522,SEE! Battle of Bataan! March of Death! Guerilla Raids! Fierce bolo fighters in action!,An Army colonel leads a guerrilla campaign against the Japanese in the Philippines.,0,0,Back to Bataan,en +44087,The Way to the Stars,1945-06-16,109.0,,,tt0038238,,"Life on a British bomber base, and the surrounding towns, from the opening days of the Battle of Britain, to the arrival of the Americans, who join in the bomber offensive. The film centres around Pilot Officer Peter Penrose, fresh out of a training unit, who joins the squadron, and quickly discovers about life during war time. He falls for Iris, a young girl who lives at the local hotel, but he becomes disillusioned about marriage, when the squadron commander dies in a raid, and leaves his wife, the hotel manageress, with a young son to bring up. As the war progresses, Penross comes to terms that he has survived, while others have been killed.",0,0,The Way to the Stars,en +42325,Bewitched,1945-07-04,65.0,,,tt0037539,SHE LIVED TWO AMAZING LIVES! Darling of Society... Cruel Love-Killer,A girl enlists a psychic to get rid of her murderous alternate personality.,0,0,Bewitched,en +73690,Mouse in Manhattan,1945-07-07,8.0,,,tt0037929,,"Jerry Mouse gets tired of living the country life and decides to head to the big city. However, the experience doesn't turn out quite like Jerry had expected.",0,0,Mouse in Manhattan,en +285400,Out of This World,1945-07-13,96.0,,,tt0037964,"He's got it, but it isn't his!","After struggling to become a success, Betty Miller and her all-girl orchestra finally hit pay dirt when crooner Herbie Fenton comes on board. Problems arise when Betty and her girls try to find backers to invest in Herbie and they sell 125 percent of him.",0,0,Out of This World,en +17889,Anchors Aweigh,1945-07-14,143.0,,,tt0037514,"ON WAVES OF SONG, LAUGHTER AND ROMANCE ! TWO LOVE-LOST SAILORS ON A FOUR-DAY LEAVE OF FUN AND FRIVOLITY !","Two sailors, Joe (Kelly) and Clarence (Sinatra) have four days shore leave in spend their shore leave trying to get a girl for Clarence. Clarence has his eye on a girl with musical aspirations, and before Joe can stop him, promises to get her an audition with José Iturbi. But the trouble really starts when Joe realizes he's falling for his buddy's girl.",0,0,Anchors Aweigh,en +30022,Lady on a Train,1945-08-17,94.0,,,tt0037859,Deanna... on a Man (Oh! Man) Hunt !,"While waiting at a train station, Nikki Collins witnesses a murder from a nearby building. When she brings the police to the scene of the crime, they think she's crazy since there's no body. She then enlists a popular mystery writer to help with her sleuthing",0,0,Lady on a Train,en +43491,Rhapsody in Blue,1945-09-22,135.0,,,tt0038026,The jubilant story of George Gershwin.,Fictionalized biography of George Gershwin and his fight to bring serious music to Broadway.,0,0,Rhapsody in Blue,en +40470,Flirty Birdy,1945-09-22,7.0,,,tt0037709,,"Tom is all set to eat Jerry when a hawk swoops down and grabs Jerry. To get Jerry back, Tom poses as a female hawk and quickly finds his new lover to be more than he bargained for.",0,0,Flirty Birdy,en +3309,Mildred Pierce,1945-09-24,111.0,,,tt0037913,A mother's love leads to murder,"After her cheating husband leaves her, Mildred Pierce proves she can become independent and successful, but can't win the approval of her spoiled daughter.",1453000,5638000,Mildred Pierce,en +364684,Takhir and Zukhra,1945-10-21,0.0,,,tt0237800,,A Romeo & Juliet-esque tale set in Uzbekistan.,0,0,Takir and Zukhra,en +42191,Johnny Angel,1945-10-24,79.0,,,tt0037832,A New Orleans Woman Plots Murder and Mutiny For Love!,George Raft plays a sailor who sets out to solve his father's mysterious death.,0,0,Johnny Angel,en +60140,Allotment Wives,1945-11-08,80.0,,,tt0037505,They're Pretty To Look At . . . But POISON To Love!,Unscrupulous women marry servicemen for their pay.,0,0,Allotment Wives,en +107973,The Dolly Sisters,1945-11-14,114.0,,,tt0037651,,Two sisters from Hungary become famous entertainers in the early 1900s. Fictionalized biography with lots of songs.,0,0,The Dolly Sisters,en +90800,Hi-De-Ho,1947-05-09,72.0,,,tt0039460,,"Cab Calloway plays himself in a plot about jealousy, night clubs, and gangsters. Ends with a series of musical numbers.",0,0,Hi-De-Ho,en +36635,Danger Signal,1945-11-14,78.0,,,tt0037632,High Explosive! HANDS OFF! She loves hard...She hates hard...She lives hard! She's the danger dame the boys couldn't tame!,A man suspected of murder charms a secretary into helping him.,0,0,Danger Signal,en +41073,The Wicked Lady,1945-11-15,104.0,,,tt0038250,The most daring pair danger ever designed!,A married woman finds new thrills as a masked robber on the highways.,0,0,The Wicked Lady,en +255388,Man Alive,1945-11-16,70.0,,,tt0037892,A Super-Natural for laughs!,A reportedly dead man (Pat O'Brien) haunts his wife (Ellen Drew) and her boyfriend.,0,0,Man Alive,it +46563,Saratoga Trunk,1945-11-21,135.0,,,tt0038053,,An opportunistic Texas gambler and the exiled Creole daughter of an aristocratic family join forces to achieve justice from the society that has ostracized them.,1750000,0,Saratoga Trunk,en +31561,Caesar and Cleopatra,1945-12-11,138.0,,,tt0038390,The most lavish picture ever on the screen!,The aging Caesar finds himself intrigued by the young Egyptian queen. Adapted by George Bernard Shaw from his own play.,0,0,Caesar and Cleopatra,en +44869,Adventure,1945-12-28,135.0,,,tt0037494,GABLE'S back and GARSON'S got him!,A rough and tumble man of the sea falls for a meek librarian.,0,0,Adventure,en +43473,Dirty Gertie from Harlem U.S.A.,1946-01-01,65.0,,,tt0038480,,"Dirty Gertie is a nightclub entertainer from the Harlem neighborhood of New York City. She arrives on the Caribbean island of ""Rinidad"" to perform as the headliner in a revue at the Paradise Hotel. On the island she attracts the attention of several men.",0,0,Dirty Gertie from Harlem U.S.A.,en +38807,Badman's Territory,1946-01-04,97.0,,,tt0038321,NOTORIOUS FRONTIER OUTLAWS...IN ACTION!,"After some gun play with a posse, the James Gang head for Quinto in a section of land which is not a part of America. Anyone there is beyond the law so the town is populated with outlaws. Next to arrive is Sheriff Rowley, following his brother whom the Gang have brought in injured. Rowley has no authority and gets on well enough with the James boys but is soon involved in other local goings-on, including a move to vote for annexation with Oklahoma which would allow the law well and truly in.",0,0,Badman's Territory,en +227717,A Letter for Evie,1946-01-28,89.0,,,tt0037870,,"Evie's co-workers at the uniform shirt factory, and her almost-fiancée's inability to kiss, inspire her to slip a letter into a size sixteen-and-a-half shirt for some anonymous soldier. It's received by ""Wolf"" Larson, who immediately throws it away, but his sensitive, dreaming--and short--buddy John McPherson snags it, and begins a correspondence with Evie, pretending to be Wolf. But things get complicated when Evie wants to meet her tall, handsome soldier. And even more complicated when Wolf sees Evie and likes what he sees.",0,0,A Letter for Evie,en +117913,The Testimony,1946-02-15,98.0,,,tt0038155,,,0,0,Il testimone,it +159469,From This Day Forward,1946-03-02,95.0,,,tt0038537,,"A young American soldier, with an honorable discharge, returns home from World War II to his bride, whom he married after a short courtship and has not seen for several years. The two come together with many questions, trials and tribulations in trying to preserve their marriage in the post-war years.",0,0,From This Day Forward,it +26805,Night Editor,1946-03-29,68.0,,,tt0038774,In the middle of a kiss...Murder!,"""Night Editor"" was based on the already existing radio program in which a newspaper editor would recount the 'inside story' of some bit newspaper story, and later became a television series.",0,0,Night Editor,en +34650,Deadline at Dawn,1946-04-03,83.0,,,tt0038458,Dancehall lovelie! Boy on leave! Murder became their business!,A young Navy sailor has one night to find out why a woman was killed and he ended up with a bag of money after a drinking blackout.,0,0,Deadline at Dawn,en +29829,Mysterious Intruder,1946-04-11,61.0,,33381,tt0038766,Radio's master of mystery... in his most thrilling case!,A detective discovers the woman hess been hired to track down is the key to an unusual inheritance.,0,0,Mysterious Intruder,en +16090,The Blue Dahlia,1946-04-19,96.0,,,tt0038369,Double dame trouble! Double-barrelled action!,This film noir stars Alan Ladd as a war veteran framed for the murder of his own wife and follows his search for the real murderer. Veronica Lake plays the sultry femme fatale who provides unexpected help.,0,0,The Blue Dahlia,en +43469,Shoeshine,1946-04-27,93.0,,,tt0038913,,"At a track near Rome, shoeshine boys are watching horses run. Two of the boys Pasquale, an orphan, and Giuseppe, his younger friend are riding. The pair have been saving to buy a horse of their own to ride...",0,0,Sciuscià,it +52270,Cluny Brown,1946-05-01,100.0,,,tt0038419,,Amateur plumber Cluny Brown gets sent off by her uncle to work as a servant at an English country estate..,0,0,Cluny Brown,en +25736,The Postman Always Rings Twice,1946-05-02,113.0,,,tt0038854,Their Love was a Flame that Destroyed,Illicit lovers plot to kill the woman's older husband.,0,0,The Postman Always Rings Twice,en +121230,The Virginian,1946-05-05,90.0,,,tt0039082,,"Arriving at Medicine Bow, eastern schoolteacher Molly Woods meets two cowboys, irresponsible Steve and the ""Virginian,"" who gets off on the wrong foot with her. To add to his troubles, the Virginian finds that his old pal Steve is mixed up with black-hatted Trampas and his rustlers...then finds himself at the head of a posse after said rustlers; and Molly hates the violent side of frontier life.",0,0,The Virginian,en +99351,The Green Years,1946-07-04,127.0,,,tt0038578,,An orphaned Irish boy is taken in by his mother's Scottish relations.,0,0,The Green Years,en +43470,A Stolen Life,1946-07-06,109.0,,,tt0038984,BETTE DAVIS IN HER GREATEST OF ALL HER TRIUMPHS!,A twin takes her deceased sister's place as wife of the man they both love.,0,0,A Stolen Life,en +43471,Anna and the King of Siam,1946-08-11,128.0,,,tt0038303,,"In 1862, a young Englishwoman becomes royal tutor in Siam and befriends the King.",0,0,Anna and the King of Siam,en +910,The Big Sleep,1946-08-23,116.0,,,tt0038355,The picture they were born for!,"Private Detective Philip Marlowe is hired by a rich family. Before the complex case is over, he's seen murder, blackmail, and what might be love.",0,0,The Big Sleep,en +74911,Step By Step,1946-08-23,62.0,,,tt0038982,You can't use kid gloves on a killer... or a blonde!,The FBI trails a young couple suspected of stealing government plans.,0,0,Step By Step,en +114790,Under the Bridges,1946-08-31,99.0,,,tt0038206,,Two barge skippers fall in love with the same woman.,0,0,Unter den Brücken,de +20028,Decoy,1946-09-14,76.0,,,tt0038462,She Treats Men the Way They've Been Treating Women for Years!,A fatally shot female gangleader recounts her sordid life of crime to a police officer just before she dies.,0,0,Decoy,en +117500,Pastoral Symphony,1946-09-26,110.0,,,tt0039004,,"A minister falls in love with a blind young woman he sheltered, but so does his son.",0,0,La symphonie pastorale,en +225499,Three Wise Fools,1946-09-26,90.0,,,tt0039031,FOR YOUR HEART'S SAKE SEE IT!,An orphan girl melts the hearts of three crusty old men.,0,0,Three Wise Fools,en +84720,The Brute Man,1946-10-01,58.0,,,tt0038387,No woman was safe from his crushing arms...,"A facially deformed and mentally unhinged man wreaks his revenge on those he believes deformed him, with a series of brutal murders.",0,0,The Brute Man,en +31206,The Jolson Story,1946-10-10,128.0,,,tt0038661,,"The Jolson Story is a 1946 musical biography which purports to tell the life story of singer Al Jolson. It stars Larry Parks as Jolson, Evelyn Keyes as ""Julie Benson"" (approximating Jolson's wife, Ruby Keeler), William Demarest as his manager, Ludwig Donath and Tamara Shayne as his parents, and Scotty Beckett as the young Jolson.",0,0,The Jolson Story,en +51571,Sister Kenny,1946-10-10,116.0,,,tt0038948,A woman made for love . . . but whose service to humanity became her destiny!,True story of the Australian nurse who fought to gain acceptance for her polio-treatment methods.,0,0,Sister Kenny,en +61151,Never Say Goodbye,1946-11-09,97.0,,,tt0038773,"Surely not Shirley, but better!!","Phil and Ellen Gayley have been divorced for a year, and their 8-year old daughter, Flip, is very unhappy that her parents are not together. Flip starts a correspondence with a marine, sending a picture of her beautiful mother as the author of Flip's flirtatious letters. When the marine shows up to meet his pen pal, Ellen takes the opportunity to make her ex-husband jealous.",0,0,Never Say Goodbye,en +29100,The Chase,1946-11-16,86.0,,,tt0038409,,Chuck Scott gets a job as chauffeur to tough guy Eddie Roman; but Chuck's involvement with Eddie's fearful wife becomes a nightmare.,0,0,The Chase,en +56135,The Razor's Edge,1946-11-19,145.0,,,tt0038873,Hunger no love . . . woman . . . or wealth could satisfy!,"A adventuresome young man goes off to find himself and loses his socialite fiancée in the process. But when he returns 10 years later, she will stop at nothing to get him back, even though she is already married.",0,0,The Razor's Edge,en +44099,Temptation,1946-12-02,98.0,,,tt0039015,YOU CAN'T RESIST IT!,A Victorian-era drama about a beautiful young woman with a shady past.,0,0,Temptation,en +8429,Paisan,1946-12-10,125.0,,256729,tt0038823,,"Six vignettes follow the Allied invasion from July 1943 to winter 1944, from Sicily north to Venice.",0,0,Paisà,it +887,The Best Years of Our Lives,1946-12-25,172.0,,,tt0036868,Three wonderful loves in the best picture of the year!,"It's the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare. Captain Fred Derry is returning to a loveless marriage; Sergeant Al Stephenson is a stranger to a family that's grown up without him; and young sailor Homer Parrish is tormented by the loss of his hands. Can these three men find the courage to rebuild their world? Or are the best years of their lives a thing of the past?",2100000,23650000,The Best Years of Our Lives,en +32275,Duel in the Sun,1946-12-31,144.0,,,tt0038499,Emotions . . . As Violent As The Wind-Swept Prairie !,"Beautiful half-breed Pearl Chavez becomes the ward of her dead father's first love and finds herself torn between her sons, one good and the other bad.",6000000,20400000,Duel in the Sun,en +43459,The Pearl,1947-01-01,85.0,,,tt0037981,,"A poor Mexican diver discovers a valuable pearl in the ocean, but it brings his family only trouble",0,0,La perla,es +111042,The Shocking Miss Pilgrim,1947-01-04,85.0,,,tt0039819,A Merry Escapade! Scandalous! Joyous!,"In the late 1800s, Miss Pilgrim, a young stenographer, or typewriter, becomes the first female employee at a Boston shipping office. Although the men object to her at first, she soon charms them all, especially the handsome young head of the company. Their romance gets sidetracked when she becomes involved in the Women's Suffrage movement.",0,0,The Shocking Miss Pilgrim,en +137357,Hungry Hill,1947-01-07,92.0,,,tt0039479,,Life becomes a tragedy for the wife (Margaret Lockwood) of an Irish heir (Dennis Price) to a 19th-century family feud and fortune.,0,0,Hungry Hill,en +116733,The Hunchedback Horse,1947-01-10,57.0,,,tt0050604,,Adventures of Ivan the Fool and humpbacked horse in the world of kind magical creatures and cruel people.,0,0,Конек-Горбунок,ru +43464,Sinbad il marinaio,1947-01-13,116.0,,321063,tt0039826,BRAVE in Adventure! BOLD in Love!,"The tale of the ""eighth"" voyage of Sinbad, wherein he discovers the lost treasure of Alexander the Great.",0,0,Sinbad il marinaio,en +43462,Panic,1947-01-15,91.0,,,tt0038824,,"The strange and slightly unsettling Monsieur Hire is suspected of a crime. A crowd tracks the man down, who seeks escape on the roof of a building.",0,0,Panique,en +23340,Queen of the Amazons,1947-01-15,61.0,,,tt0039743,,"Jean Preston is determined to find her fiancée, Greg Jones, who went on a safari and didn’t come back when expected. She travels to Akbar, India with Greg’s father, Colonel Jones, Wayne Monroe and the Professor. She asks about Jones at the front desk of the hotel where she stays.",0,0,Queen of the Amazons,en +19335,Johnny O'Clock,1947-01-23,85.0,,,tt0039515,JOHNNY'S NO GOOD...but that's how women want him!,"Slick, egotistical Johnny O'Clock (Powell) is a partner in a gambling house that has seen better days. When the hat-check girl is found murdered, he gets involved with crooked cops and criminals that includes his shady partner in the casino, Pete.",0,0,Johnny O'Clock,en +237139,McDougal's Rest Farm,1947-01-30,0.0,,,tt0148458,,"Heckle & Jeckle are looking for a place to build a bird house, and they decide to do so on McDougal's Rest Farm, which is reserved for peace and quiet. Dimwit, apparently the guard dog here, tries to stop all the racket.",0,0,McDougal's Rest Farm,en +369567,Las inquietudes de Shanti Andía,1947-02-03,121.0,,,tt0038641,,"Shanti Andía puts together the fragments of a diary written in different times in his life. He tells of his childhood in the Basque village of Lúzaro, his dreamy youth in the lands of Cádiz, his adventures and misadventures as a ship captain, and his fascinatin with his uncle Juan de Aguirre, part of the line of ancient Basque seamen, whose adventurous life is filled with picturesque deeds. Based on the novel by Pío Baroja.",0,0,Las inquietudes de Shanti Andía,en +29236,The Arnelo Affair,1947-02-13,86.0,,,tt0039160,,A neglected wife gets mixed up with an hypnotic charmer and murder.,0,0,The Arnelo Affair,en +26761,Pursued,1947-03-02,101.0,,,tt0039737,Robert Mitchum fights for the love of three people who want to see him dead...his family.,A hard-hitting western drama starring Mitchum as an orphan raised by a feuding family who wants to see him dead.,0,0,Pursued,en +51476,Shoot to Kill,1947-03-15,64.0,,,tt0039820,A Newspaperman... A Grafting Politician... And A Beautiful Girl... In A Story Of Underworld Revenge!,A gritty crime story involving a newspaper man and crooked politicians.,0,0,Shoot to Kill,en +118536,The Private Affairs of Bel Ami,1947-04-25,112.0,,,tt0039735,All women take to men who have the appearance of wickedness,A self-serving journalist (George Sanders) uses influential women in late-1800s Paris and denies the one (Angela Lansbury) who truly loves him.,0,0,The Private Affairs of Bel Ami,en +74126,Record of a Tenement Gentleman,1947-05-21,72.0,,,tt0039651,,"An errant salaryman's son gets lost until a man from the Tokyo tenements brings him to vendor Tane, who's reluctant to let the kid board.",0,0,Nagaya shinshiroku,ja +29365,Framed,1947-05-25,82.0,,,tt0039396,Let's get things straight about you and me and him....,"Mike Lambert, seeking a mining job, instead becomes the patsy for a femme-fatale's schemes.",0,0,Framed,en +29113,The Web,1947-05-25,87.0,,,tt0039973,,"Leopold Kroner, formerly of Colby Enterprises, is released after five years in prison for embezzlement. Andrew Colby, claiming that Kroner has threatened him, hires lawyer Bob Regan as a secret bodyguard. Sure enough, Kroner turns up in Colby's room with a gun, and Regan kills him. Then Regan, who sticks around to romance Colby's secretary Noel, begins to suspect he's been used.",0,0,The Web,en +44626,The Long Night,1947-05-28,101.0,http://vidup.me/jpwqm0cftqvr,,tt0039581,COMING AT YOU ... in a blast of terrific drama!,City police surround a building attempting to capture a suspected murder. The suspect knows there is no escape but refuses to give in.,0,0,The Long Night,en +72847,The Unfaithful,1947-06-05,109.0,,,tt0039937,It's so easy to cry 'SHAME'!,Chris Hunter kills an intruder and tells her husband and lawyer it was an act of self-defense. It's later revealed that he was actually her lover and she had posed for an incriminating statue he created.,0,0,The Unfaithful,en +175386,Cheyenne,1947-06-06,99.0,,,tt0039260,LOVE AND ACTION RIDE HAND-IN-HAND!,A gambler is determined to capture the outlaw bandit responsible for a series of stagecoach robberies. Director Raoul Walsh's 1947 western stars Dennis Morgan and Jane Wyman.,0,0,Cheyenne,en +36335,Dear Murderer,1947-06-23,90.0,,,tt0039306,,"When a man discovers his wife is having an affair, he commits the perfect crime.",0,0,Dear Murderer,en +49334,They Made Me a Fugitive,1947-06-24,99.0,,,tt0039895,,"After being framed for a policeman's murder, a criminal escapes prison and sets out for revenge.",0,0,They Made Me a Fugitive,en +22292,The Ghost and Mrs. Muir,1947-06-26,104.0,,,tt0039420,THE SPIRIT... so willing! THE FLESH... so weak! THE ROMANCE... so wonderful!,"In 1900, strong-willed widow Lucy Muir goes to live in Gull Cottage by the British seaside, even though it appears to be haunted. Sure enough, that very night she meets the ghost of crusty former owner Captain Gregg...and refuses to be scared off. Indeed, they become friends and allies, after Lucy gets used to the idea of a man's ghost haunting her bedroom. But when a charming live man comes courting, Lucy and the captain must deal with their feelings for each other.",0,0,The Ghost and Mrs. Muir,en +25407,Riff-Raff,1947-06-28,80.0,,,tt0039772,,A private detective foils the plans of villains attempting to take over Panamanian oilfields when he hides a valuable map in plain sight.,0,0,Riff-Raff,en +28297,Brute Force,1947-06-30,98.0,,,tt0039224,Power Packed Picture!,Prison inmates revolt against a sadistic guard.,0,0,Brute Force,en +27203,They Won't Believe Me,1947-07-16,95.0,,,tt0039896,He lived a lie that led him from one disastrous love to another!,"A stockbroker (Robert Young) tells the court how his rich wife and one of two girlfriends (Susan Hayward, Jane Greer) died.",0,0,They Won't Believe Me,en +62720,Cry Wolf,1947-07-18,83.0,,,tt0039288,The howl in the night is the voice of danger.,A woman uncovers deadly secrets when she visits her late husband's family.,0,0,Cry Wolf,en +28120,Crossfire,1947-07-22,86.0,,,tt0039286,Hate is like a loaded gun!,"A man is murdered, apparently by one of a group of soldiers just out of the army. But which one? And why?",0,0,Crossfire,en +89551,Bush Christmas,1947-07-28,77.0,,,tt0039231,Four children... Three horse thieves... One amazing adventure!,"In Australia, five children pursue horse thieves through the mountains.",0,0,Bush Christmas,en +229757,The Romance of Rosy Ridge,1947-08-04,105.0,,,tt0039783,A LOVE - BORN OF VIOLENCE and a HATE that brought him face to face with his worst enemy - the father of his sweetheart!,A mysterious Civil War veteran (Van Johnson) courts a Missouri farmer's (Thomas Mitchell) daughter (Janet Leigh) amid postwar unrest.,0,0,The Romance of Rosy Ridge,en +27034,Desert Fury,1947-08-15,96.0,,,tt0039311,Two men wanted her love ... The third wanted her life !,"The daughter of a Nevada casino owner gets involved with a racketeer, despite everyone's efforts to separate them.",0,0,Desert Fury,en +65777,The October Man,1947-08-28,110.0,,,tt0039676,,"Jim Ackland, who suffers from a head injury sustained in a bus crash , is the chief suspect in a murder hunt, when a girl that he has just met is found dead on the local common, and he has no alibi for the time she was killed.",0,0,The October Man,en +30308,Lured,1947-08-28,102.0,,,tt0039589,Don't answer this ad... Don't... don't... don't...,A woman helps the police catch the serial killer who murdered her best friend.,0,0,Lured,en +63764,Devil in the Flesh,1947-09-22,110.0,,,tt0038476,,,0,0,Le diable au corps,fr +353713,La nao Capitana,1947-09-29,,,,tt0039653,,,0,0,La nao Capitana,es +104720,Forever Amber,1947-10-10,138.0,,,tt0039391,,"Amber St Clair, orphaned during the English Civil War and raised by a family of farmers, aspires to be a lady of high society; when a group of cavaliers ride into town, she sneaks away with them to London to achieve her dreams.",0,0,Forever Amber,en +29117,The Unsuspected,1947-10-11,103.0,,,tt0039941,YOU CAN'T FORSEE IT! YOU CAN'T FORGET IT!,"A girl has been murdered. A woman cannot remember a man who claims to be her husband. Her uncle hosts a radio murder mystery show called ""The Unsuspected"". Who killed the girl? Why? And who is this mystery husband?",0,0,The Unsuspected,en +37368,The Fugitive,1947-11-03,104.0,,,tt0039402,,"Based of the Graham Greene novel about a revolutionary priest in Central America. A priest who is The Fugitive is trying to getaway from the authorities who have denounced Christianity and want anyone linked to it dead. The Fugitive finds shelter with an Indian Woman (The Woman), a faithful parishioner, who gives the priest directions to Puerto Grande, where he could then board a ship and sail to freedom in America. On his journey to Puerto Grande, he meets up with a man who says he will protect him. In reality, he is the Police Informer and once The Fugitive realizes this, he is back on the run, but the Police Informer is never far behind along with the authorities.",0,0,The Fugitive,en +174769,Night Song,1947-11-10,102.0,,,tt0039659,,A socialite (Merle Oberon) pretends to be poor and blind in her plan to help a blinded pianist (Dana Andrews).,0,0,Night Song,en +105509,Angelina,1947-11-12,90.0,,,tt0039682,,,0,0,L'onorevole Angelina,it +678,Out of the Past,1947-11-13,97.0,,,tt0039689,A MAN - Trying to run away from his past... A WOMAN - Trying to escape her future...,"Jeff Bailey seems to be a mundane gas station owner in remote Bridgeport, CA. He is dating local girl Ann Miller and lives a quiet life. But Jeff has a secret past, and when a mysterious stranger arrives in town, Jeff is forced to return to the dark world he had tried to escape.",0,0,Out of the Past,en +332079,The Judge Steps Out,1947-12-15,91.0,,,tt0041531,He Handed Down a Decision IN FAVOR OF HIMSELF!,A judge flees the pressures of professional and family life for a job as a short-order cook.,0,0,The Judge Steps Out,en +82767,¡A volar joven!,1947-12-23,113.0,,,tt0161215,,"Cantinflas is a private, who doesn't know anything about discipline or following rules. He only wants to think about his girlfriend, the maid in an opulent hacienda. The owner has an ugly and shy daughter, who is in love with Cantinflas. The problems arrive when the family arrange a wedding between the ugly girl and Cantinflas, who in order to avoid the commitment causes himself an arrest. During the punishment, Cantinflas will learn to fly with a silly and not to much trained instructor.",0,0,¡A volar joven!,es +20301,Daisy Kenyon,1947-12-25,99.0,,,tt0039294,,"Daisy Kenyon (Crawford) is a Manhattan commercial artist having an affair with an arrogant and overbearing but successful lawyer named Dan O'Mara (Andrews). O'Mara is married and has children. Daisy meets a single man, a war veteran named Peter Lapham (Fonda), and after a brief and hesitant courtship decides to marry him, although she is still in love with Dan.",0,0,Daisy Kenyon,en +41206,A Double Life,1947-12-25,104.0,,,tt0039335,,A Shakespearian actor starring as Othello opposite his wife finds the character's jealous rage taking over his mind off-stage.,0,0,A Double Life,en +164954,Pluto's Blue Note,1947-12-26,7.0,,,tt0039711,,"Pluto wants to sing along with the birds, bee and cricket, but he is tone deaf.",0,0,Pluto's Blue Note,en +76211,Sitting Pretty,1948-01-01,83.0,,,tt0040795,Never was a baby-sitter like this!,"Tacey and Harry King are a suburban couple with three sons and a serious need of a babysitter. Tacey puts an ad in the paper for a live-in babysitter, and the ad is answered by Lynn Belvedere. But when she arrives, she turns out to be a man. And not just any man, but a most eccentric, outrageously forthright genius with seemingly a million careers and experiences behind him.",0,0,Sitting Pretty,en +560,Secret Beyond the Door,1948-01-01,99.0,,,tt0040766,,Fritz Lang’s psycho thriller tells the story of a woman who marries a stranger with a deadly hobby and through their love he attempts to fight off his obsessive-compulsive actions.,0,0,Secret Beyond the Door,en +27035,I Walk Alone,1948-01-16,97.0,,,tt0039482,Once I trusted a dame... now I Walk Alone,"Frankie Madison returns to New York after 14 years in prison. Noll Turner, Frankie's former partner in bootlegging, is now a wealthy nightclub manager, and Frankie is expecting him to honor a verbal '50:50' agreement they made when he was caught and Noll got away. Fat chance! Can Frankie, who knows only the strong-arm methods of Prohibition, win out against Big Business? It'll be tough...even with the unlikely alliance of torch singer Kay (Noll's ex-girlfriend).",0,0,I Walk Alone,en +88320,A Woman's Vengeance,1948-01-29,96.0,,,tt0040002,,The clock ticks as an innocent man (Charles Boyer) faces hanging for killing his wife.,0,0,A Woman's Vengeance,en +39943,To the Ends of the Earth,1948-02-07,109.0,,,tt0040887,,A treasury agent becomes obsessed with exposing an international drug ring.,0,0,To the Ends of the Earth,en +40985,Arch of Triumph,1948-02-17,115.0,,,tt0040109,The story of an outcast and a killer!,Based on the novel Arch of Triumph from Erich Maria Remarque.,0,0,Arch of Triumph,en +74525,"Sleep, My Love",1948-02-18,97.0,,,tt0040798,...the most terrifying words a man ever whispered to a woman!,"A woman wakes up in the middle of the night on board a train, but she can't remember how she got there. Danger and suspense ensue.",0,0,"Sleep, My Love",en +41599,Escape,1948-03-01,78.0,,,tt0040325,,Escape is a thriller about a World War II vet who goes to prison for murder and then escapes. He meets a woman who tries to get him to surrender.,0,0,Escape,en +49502,So Evil My Love,1948-03-03,112.0,,,tt0040809,,"A missionary's widow meets charming Mark Bellis, artist and rogue, on the ship taking them both back to 1890s London. She will soon find out he has dark ambitions.",0,0,So Evil My Love,en +89145,Angels' Alley,1948-03-07,0.0,,415931,tt0040097,TWO-FISTED DRAMA!,"Slip invites his cousin Jimmy to stay with his family after he is released from prison. However, Jimmy soon gets mixed up with an auto-theft ring.",0,0,Angels' Alley,en +41131,The Search,1948-03-26,104.0,,,tt0040765,,"In post war Germany, a dislocated and orphaned Czech boy is befriended by an American soldier while his mother desperately searches for him.",0,0,The Search,en +242240,Lost Youth,1948-04-02,0.0,,,tt0039424,,,0,0,Gioventù perduta,it +111960,Miranda,1948-04-06,80.0,,,tt0040597,Miranda Has Everything!,"A young married physician discovers a mermaid, and gives into her request to be taken to see London. Comedy and romantic entanglements ensue soon after.",784170,834332,Miranda,en +43457,Winter Meeting,1948-04-07,104.0,,,tt0040971,"You've told me your secret, now I'll tell you mine.",A troubled heiress (Bette Davis) falls in love with a World War II hero (James Davis) who becomes a priest.,0,0,Winter Meeting,en +946,Letter from an Unknown Woman,1948-04-28,87.0,,,tt0040536,,"A pianist about to flee from a duel receives a letter from a woman he cannot remember. As she tells the story of her lifelong love for him, he is forced to reinterpret his own past.",0,0,Letter from an Unknown Woman,en +33792,State of the Union,1948-04-30,124.0,,,tt0040834,How's the State of the Union? It's GREAT!,"An industrialist is urged to run for President, but this requires uncomfortable compromises on both political and marital levels.",0,0,State of the Union,en +85844,Women of the Night,1948-05-26,74.0,,,tt0040980,,"Fusako, a drug dealer's young mistress in postwar Japan, loses her tenuous grasp on life upon learning about her lover's affair.",0,0,夜の女たち,ja +35032,The Pirate,1948-06-11,102.0,,,tt0040694,The great MGM musical romance,"A girl is engaged to the local richman, but meanwhile she has dreams about the legendary pirate Macoco. A traveling singer falls in love with her and to impress her he poses as the pirate.",3700000,2956000,The Pirate,en +61908,Canon City,1948-06-30,82.0,,,tt0040210,Filmed with the NAKED FURY of fact!,Prisoners battle each other -- and the police -- when they escape the Colorado State Penitentiary.,0,0,Canon City,en +357529,Cowboy Cavalier,1948-07-11,57.0,,,tt0040253,He packs a SOCK in each SONG...and FURY in each FIST!,"Jimmy Wakely and ""Cannonball"" Taylor protect shipments along a stage and freight line from villainous bandits.",0,0,Cowboy Cavalier,en +29116,The Velvet Touch,1948-07-13,100.0,,,tt0040934,Rosalind has her eye on three men... three men have their eye on Rosalind... one of them is up to no good!,"After accidentally killing her lecherous producer, a famous actress tries to hide her guilt.",0,0,The Velvet Touch,en +126712,Superman,1948-07-15,244.0,,,tt0040852,,Superman comes to Earth as a child and grows up to be his home's first superhero with his first major challenge being to oppose The Spider Lady.,0,0,Superman,en +333372,"Wings, Legs and Tails",1986-01-01,4.0,,,tt1350929,,An ostrich is trying to learn how to fly in a dessert.,0,0,"Крылья, ноги и хвосты",ru +27112,Corridor of Mirrors,1948-07-24,105.0,,,tt0040246,,A man falls in love with a beautiful young woman and begins to suspect that he may have also loved her in a previous life.,0,0,Corridor of Mirrors,en +96252,A Date with Judy,1948-07-29,113.0,,,tt0040271,The best date you ever had!,"Developed from a radio program which began in 1941, hyperactive teenager Judy challenges and is challeged by her overly proper parents, pest of a brother Randolph and boyfriend Oogie.",0,0,A Date with Judy,en +253250,A Southern Yankee,1948-08-05,90.0,,,tt0040825,HE'S A SPY FOR BOTH SIDES!,"Red Skelton plays Aubrey Filmore, a feather-brained but lovable bellboy who dreams of becoming an agent for the Union's secret service during the Civil War.",0,0,A Southern Yankee,en +44190,They Live by Night,1948-08-06,95.0,,,tt0040872,Cops or no cops I'm going through!,The story of a petty criminal and his girlfriend who try to escape their gang after a double cross of the thieves.,0,0,They Live by Night,en +43455,The Loves of Carmen,1948-08-23,99.0,,,tt0040552,,"Gypsy Carmen drives men wild in 1820s Spain, especially the dragoon Don Jose.",0,0,The Loves of Carmen,en +3089,Red River,1948-08-26,133.0,,,tt0040724,Big as the men who faced this challenge! Bold as the women who loved them!,"Dunson is driving his cattle to Red River when his adopted son, Matthew, turns against him.",3000000,9012000,Red River,en +30624,Road House,1948-09-22,95.0,,,tt0040740,There's nothing like a woman to come between men !,A night club owner becomes infatuated with a torch singer and frames his best friend/manager for embezzlement when the chanteuse falls in love with him.,0,0,Road House,en +77822,The Winslow Boy,1948-09-24,117.0,,,tt0040970,,"In pre-WW1 England, a youngster is expelled from a naval academy over a petty theft, but his parents raise a political furor by demanding a trial.",0,0,The Winslow Boy,en +41609,The Three Musketeers,1948-10-10,125.0,,,tt0040876,THE COMPLETE ROMANCE...THE FULL NOVEL!,"The hectic adventures of D'Artagnan, a young provincial noble who just comes to Paris to enter the musketeers. He will meet action, love, hate, the king and the queen as his impetuousness gets him involved in political plots... and of course virile and indestructible friendship with the three musketeers Athos, Porthos and Aramis. Written by Yepok",0,0,The Three Musketeers,en +51141,Port of Call,1948-10-11,99.0,,,tt0040418,,"A suicidal factory girl out of reformatory school, anxious to escape her overbearing mother, falls in love with a sailor who can't forgive her past.",0,0,Hamnstad,sv +107593,June Bride,1948-10-29,96.0,,,tt0040499,,"A magazine's staff, including bickering ex-lovers Linda and Carey, cover an Indiana wedding, which goes slightly wrong...",0,0,June Bride,en +62694,The Snake Pit,1948-11-04,108.0,,,tt0040806,Married and in Love . . . with a Man She Didn't Know or Want!,Olivia de Havilland stars in this look inside a state-run insane asylum.,0,0,The Snake Pit,en +43759,The Boy with Green Hair,1948-11-16,82.0,,,tt0040185,Please don't tell why his hair turned green!,This parable looks at public reaction when the hair of an American war orphan mysteriously turns green.,0,0,The Boy with Green Hair,en +95504,Family Honeymoon,1948-12-06,90.0,,,tt0040342,,"Grant Jordan, bachelor botany professor, marries Katie, a widow with three kids, despite the machinations of Grant's former girlfriend Minna. But on the wedding day, Aunt Jo, who was to babysit, breaks a leg; so the kids come along on the honeymoon.",0,0,Family Honeymoon,en +90956,The Feathered Serpent,1948-12-19,68.0,,413663,tt0040347,,"In order to learn the location of a fabled Aztec treasure, a professor kidnaps his colleague, the only man able to read the ancient Aztec script that is supposed to reveal the location of the treasure. Charlie Chan and his #1 and #2 sons journey to the jungles of Mexico to find the victim and bring the kidnapper and his gang to justice.",0,0,The Feathered Serpent,en +23861,Command Decision,1948-12-23,112.0,,,tt0040242,"Heroes, cowards, fighters, braggarts, liars... and what goes on in their hearts!",High-ranking officers struggle with the decision to prioritize bombing German factories producing new jet fighters over the extremely high casualties the mission will cost.,0,0,Command Decision,en +43441,Every Girl Should Be Married,1948-12-25,85.0,,,tt0040331,"""Every Girl Should be Married"" says Cary Grant, Noted Bachelor Baby Doctor, so she took his advice and married HIM!","Anabel Sims is determined to find the perfect husband. She thinks she's found her man in Madison Brown, a handsome pediatrician. She then prepares an elaborate scheme to trap him into marriage",0,0,Every Girl Should Be Married,en +32558,Portrait of Jennie,1948-12-25,86.0,,,tt0040705,The screen's most romantic team!,A mysterious girl inspires a struggling artist.,0,0,Portrait of Jennie,en +186585,Last of the Wild Horses,1948-12-27,84.0,,,tt0040530,Wild fury... Wide open thrills!,A cowboy must clear himself of a murder he did not commit.,0,0,Last of the Wild Horses,en +274060,John Loves Mary,1949-01-01,96.0,,,tt0041526,,"After four long years apart, there are so many things returning World War II soldier John Lawrence wants to tell his sweetheart, Mary McKinley. That he loves her. That he's missed her. And that he's married.",0,0,John Loves Mary,en +124994,Flame of My Love,1949-02-13,96.0,,,tt0042031,,"A woman's struggle for equality in Japan in the 1880s. Eiko Hirayama leaves Okayama for Tokyo, where she helps the fledgling Liberal Party and falls in love with its leader Kentaro Omoi, just as the party is being disbanded by the government.",0,0,わが恋は燃えぬ,ja +65211,Flaxy Martin,1949-02-15,86.0,,,tt0041374,A girl with a heart of ice!,Messing with a mobster's girlfriend gets a lawyer framed for murder.,0,0,Flaxy Martin,en +228074,The Blue Lagoon,1949-03-01,101.0,,,tt0041190,,"In the Victorian period two British children are the survivors of a shipwreck in the South Pacific. After days afloat, they are marooned on a lush tropical island in the company of kindly old sailor. Together they survive solely on their resourcefulness, and the bounty of their remote paradise.",0,0,The Blue Lagoon,en +132332,Manon,1949-03-09,100.0,,,tt0041634,,A World War II French freedom fighter falls under a devious woman's spell.,0,0,Manon,fr +64407,Between Eleven and Midnight,1949-03-23,0.0,,,tt0143235,,,0,0,Entre onze heures et minuit,fr +55524,Prinsessa Ruusunen,1949-04-08,,,,tt0121641,,,0,0,Prinsessa Ruusunen,fi +87194,Señor Droopy,1949-04-09,8.0,,,tt0041858,,"The wolf, the champion toreador, and Droopy, the challenger, are competing to see who is best in the bullring in the hopes of winning the hand of actress Lina Romay (who appears in a live action shot).",0,0,Señor Droopy,en +25918,Champion,1949-04-09,99.0,,,tt0041239,This is the only sport in the world where two guys get paid for doing something they'd be arrested for if they got drunk and did it for nothing.,"An unscrupulous boxer fights his way to the top, but eventually alienates all of the people who helped him on the way up.",600,0,Champion,en +27637,Horst Schlämmer - Isch kandidiere!,2009-08-20,96.0,,,tt1462050,,No overview found.,0,0,Horst Schlämmer - Isch kandidiere!,de +104083,Tulsa,1949-04-13,90.0,,,tt0041994,,"It's Tulsa, Oklahoma at the start of the oil boom and Cherokee Lansing's rancher father is killed in a fight with the Tanner Oil Company. Cherokee plans revenge by bringing in her own wells with the help of oil expert Brad Brady and childhood friend Jim Redbird. When the oil and the money start gushing in, both Brad and Jim want to protect the land but Cherokee has different ideas. What started out as revenge for her father's death has turned into an obsession for wealth and power.",0,0,Tulsa,en +77012,Mr. Belvedere Goes to College,1949-04-15,83.0,,,tt0041662,,A middle-aged genius goes to college for the first time.,0,0,Mr. Belvedere Goes to College,en +79596,The Emperor's Nightingale,1949-04-15,72.0,,,tt0043410,,"Adaptation of a fairy tale by Hans Christian Andersen, about an emperor who prefers the tinkling of a bejeweled mechanical bird to the song of a real nightingale. When the Emperor is near death, the nightingale's song restores his health.",0,0,Císařův slavík,cs +229610,Adventure in Baltimore,1949-04-19,89.0,,,tt0041093,What Happened in the Greenhouse?,Dinah Sheldon is a student at an exclusive girl's school who starts campaigning for women's rights. Her minister father and her boyfriend Tom Wade do not approve.,0,0,Adventure in Baltimore,en +44669,Johnny Allegro,1949-05-26,81.0,,,tt0041527,,"Treasury Department officials recruit a florist (Raft) to lead them to a wanted criminal (Macready); but once he gets too close, he finds he's the hunted.",0,0,Johnny Allegro,en +43440,The Stratton Story,1949-06-01,106.0,,,tt0041928,,"Star major league pitcher Monty Stratton loses a leg in a hunting accident, but becomes determined to leave the game on his own terms.",0,0,The Stratton Story,en +88288,It Happens Every Spring,1949-06-10,87.0,,,tt0041514,"""oh yeah?"" ""Oh yeah!""",A scientist discovers a formula that makes a baseball which is repelled by wood. He promptly sets out to exploit his discovery.,0,0,It Happens Every Spring,en +28484,Colorado Territory,1949-06-11,94.0,,,tt0041253,"A mighty, memorable new adventure hurtling out of the heroic vastness of Colorado Territory.",Western remake of High Sierra with Joel McCrea taking over the Humphrey Bogart role.,0,0,Colorado Territory,en +20003,House of Strangers,1949-07-01,101.0,,,tt0041487,,"Gino Monetti is a ruthless Italian-American banker who engaged in a number of criminal activities. Three of his four grown sons, refuse to help their father stay out of prison after he's arrested for his questionable business practices. Three of the sons take over the business but kick their father out. Max, a lawyer, is the only son that stays loyal to his father.",0,0,House of Strangers,en +31167,Follow Me Quietly,1949-07-07,60.0,,,tt0041378,Police baffled by the FACELESS KILLER!,"1949 thriller about the hunt for a serial killer known as ""the Judge"" who kills his victims on rainy nights.",0,0,Follow Me Quietly,en +32552,It's a Great Feeling,1949-08-01,85.0,,,tt0041515,Guest stars galore!,A waitress at the Warner Brothers commissary is anxious to break into pictures. She thinks her big break may have arrived when actors Jack Carson and Dennis Morgan agree to help her.,0,0,It's a Great Feeling,en +35852,Obsession,1949-08-03,96.0,,,tt0041460,Hidden LOVE! Hidden HATE! Hidden FEAR!,"Dr. Clive Riordan's beautiful-but-flirty wife, ""Storm"", comes home one night in the company of an American diplomat, Bill Kronin. Riordan, obsessed with jealousy, determines to murder his most recent rival and plans, as only a psychiatrist would, to not only kill bill, but to commit the perfect crime in the process.",0,0,Obsession,en +32684,The Window,1949-08-06,73.0,,,tt0042046,It never lets you go!,A boy who always lies witnesses a murder but can't get anyone but the killer to believe him.,0,0,The Window,en +27036,Too Late for Tears,1949-08-13,99.0,,,tt0041968,That's just to remind you... You're in a tough racket now!,"One night on a lonely highway, a speeding car tosses a satchel of money, meant for somebody else, into Jane and Alan Palmer's back seat. Alan wants to turn it over to the police, but Jane, with luxury within her reach, persuades him to hang onto it ""for a while."" Soon, the Palmers are traced by one Danny Fuller, a sleazy character who claims the money is his. To hang onto it, Jane will need all the qualities of an ultimate femme fatale...and does she ever have them!",0,0,Too Late for Tears,en +92796,Black Magic,1949-08-19,105.0,,,tt0041182,"The biggest picture in ten years! The greatest cavalcade of intrigue, spectacle, adventure and excitement you'll ever see on the screen",Hypnotist uses his powers for revenge against King Louis XV's court.,0,0,Black Magic,en +45184,Madame Bovary,1949-08-25,115.0,,,tt0041615,Whatever it is that French women have ... Madame Bovary had more of it!,"A provincial doctor's wife's romantic illusions about life and social status lead her to betray her naive husband, take on lovers and run up ruinous debts.",0,0,Madame Bovary,en +87654,Death Is a Caress,1949-08-29,89.0,,,tt0136099,,"The story of a working man, who's got a gorgeous fiancée but who falls for a rich older woman - who turns out to be a femme fatale.",0,0,Døden er et kjærtegn,no +15794,White Heat,1949-09-02,114.0,,,tt0042041,"Pick up the pieces folks, Jimmy's in action again!","A psychopathic criminal (Cagney) with a mother complex makes a daring break from prison and then leads his old gang in a chemical plant payroll heist. After the heist, events take a crazy turn.",0,0,White Heat,en +20530,Late Spring,1949-09-13,108.0,,,tt0041154,,"In the post-WWII Japan, the twenty-seven year-old Noriko Somiya lives a simple but happy life with her fifty-seven year-old widower father, the college professor Shukichi Somiya in the suburb of Tokyo. Noriko has recovered from a disease she had during the war, and her aunt Masa Taguchi and her friend Aya Kitagawa press her to get married. However, Noriko would rather stay single and taking care of her beloved father. When Masa finds a promising fiancé to Noriko, she tells that her father will remarry sooner, forcing the reluctant Noriko to take a decision.",0,0,晩春,ja +74961,Fast and Furry-Ous,1949-09-17,7.0,,,tt0041349,,"This was the debut for Wile E. Coyote and the Road Runner. It was also their only cartoon made in the 1940s. It set the template for the series, in which Wile E. Coyote (here given the ersatz Latin name Carnivorous Vulgaris) tries to catch Roadrunner (Accelleratii Incredibus) through many traps, plans and products, although in this first cartoon not all of the products are yet made by the Acme Corporation.",0,0,Fast and Furry-Ous,en +70151,Johnny Stool Pigeon,1949-09-22,76.0,,,tt0041529,,A federal agent infiltrates a crime syndicate.,0,0,Johnny Stool Pigeon,en +186268,Angels in Disguise,1949-09-25,63.0,,415931,tt0041124,It's their Funniest Fightin-est Film!,Slip and the gang (Bowery Boys) stray from newspaper work to detective work.,0,0,Angels in Disguise,en +28304,The Furies,1950-08-16,109.0,,,tt0042490,,"A New Mexico cattle man and his strong-willed daughter clash over the man's choice for a new bride. Things get worse when the elder man has his daughter's lover hanged. With the help of an old flame, a gambler, the daughter puts into motion a plan to drive her father from his estate.",0,0,The Furies,en +25807,Red Light,1949-09-30,83.0,,,tt0041790,THERE'S TROUBLE AHEAD!,"Nick Cherney, in prison for embezzling from Torno Freight Co., sees a chance to get back at Johnny Torno through his young priest brother Jess. He pays fellow prisoner Rocky, who gets out a week before Nick, to murder Jess... who, dying, tells revenge-minded Johnny that he'd written a clue ""in the Bible."" Frustrated, Johnny obsessively searches for the missing Gideon Bible from Jess's hotel room.",0,0,Red Light,en +29260,Trapped,1949-10-01,78.0,,,tt0041983,When a killer dreams of millions... and a girl to spend them on!,U.S. Treasury Department agents go after a ring of counterfeiters.,0,0,Trapped,en +28571,The Heiress,1949-10-06,115.0,,,tt0041452,A truly great motion picture (one-sheet),"Dull and plain Catherine (Olivia de Havilland) lives with her emotionally distant father, Dr. Sloper (Ralph Richardson), in 1840s New York. Her days are empty -- filled with little more than needlepoint. Enter handsome Morris Townsend (Montgomery Clift), a dashing social climber with his eye on the spinster's heart and substantial inheritance. William Wyler's Oscar-winning film is an adaptation of the Henry James novel Washington Square.",2600000,0,The Heiress,en +27635,Reign of Terror,1949-10-15,89.0,,,tt0041796,Open or shut.... it can cost your life.,Opponents plot to bring down Robespierre during the French Revolution.,0,0,Reign of Terror,en +33923,Chicago Deadline,1949-10-17,86.0,,,tt0041243,He's a fighting reporter making front page history!,"On Chicago's South Side reporter Ed Ames finds the body of a dead girl. Her address book leads to a host of names of men frightened by her death but claiming never to have known her. Ames comes to know quite a lot, dangerously so.",0,0,Chicago Deadline,en +132122,Chains,1949-10-29,90.0,,,tt0041232,,A family drama involving a wife torn between her husband and her criminal ex-lover,0,0,Catene,it +41551,Strange Bargain,1949-11-05,68.0,,,tt0041926,"$10,000 if you make my suicide look like Murder!",A young bookkeeper is framed for his boss's murder.,0,0,Strange Bargain,en +25430,All the King's Men,1949-11-08,109.0,,,tt0041113,He Might Have Been A Pretty Good Guy … If Too Much Power … And Women … Hadn’t Gone To his Head!,All The King's Men is the story of the rise of politician Willie Stark from a rural county seat to the governor's mansion.,0,0,All the King's Men,en +65718,The Walls of Malapaga,1949-11-16,95.0,,,tt0040137,,,0,0,Le mura di Malapaga,fr +185934,A Kiss for Corliss,1949-11-25,88.0,,,tt0041549,CORLISS COULD DO NO WRONG ...but brother How She Tried!,"After a brief encounter with the romantic and thrice divorced Kenneth Marquis, Corliss Archer decides to write in her diary that they are together in order to make her boyfriend Dexter jealous. Corliss' father had also served as attorney representing Kenneth Marquis' ex-wife during his most recent divorce trial. When Corliss and Dexter don't come home one evening until five in the morning, Corliss decides to pretend to have amnesia to avoid the inevitable punishment awaiting her.",0,0,A Kiss for Corliss,en +166904,Master Minds,1949-11-27,64.0,,415931,tt0041644,THE CHILLS WILL ELECTRIFY YOU When The Bowery Boys Meet The Monster.,"When Sach eats too much sugar, he goes into a trance whereby he's able to predict the future. Slip tries to make some money off of Sach by using him as a fortune teller in a carnival, until a mad scientist kidnaps Sach to use him in an intelligence-switching experiment with a monster.",0,0,Master Minds,en +43438,The Rocking Horse Winner,1949-11-30,91.0,,,tt0042898,Exciting As Your Wildest Dreams!,A strange and ultimately tragic tale of a young boy who learns how to pick winners at the racetrack by riding his rocking horse to aid his parents out of their endless round of debts.,0,0,The Rocking Horse Winner,en +15497,Twelve O'Clock High,1949-12-21,132.0,,,tt0041996,A story of twelve men as their women never knew them...,"In this story of the early days of daylight bombing raids over Germany, General Frank Savage must take command of a ""hard luck"" bomber group. Much of the story deals with his struggle to whip his group into a disciplined fighting unit in spite of heavy losses, and withering attacks by German fighters over their targets. --KC Hunt",0,3225000,Twelve O'Clock High,en +229056,The Christmas Carol,1949-12-25,25.0,,,tt0225394,,"A Christmas Carol was a 1949 low-budget, black and white television special narrated by Vincent Price.",0,0,The Christmas Carol,en +83015,The Happiest Days of Your Life,1950-01-01,81.0,,,tt0042541,,"Nutbourne College, an old established, all-boys, boarding school is told that another school is to be billeted with due to wartime restrictions. The shock is that it's an all-girls school that has been sent. The two head teachers are soon battling for the upper hand with each other and the Ministry. But a crisis (or two) forces them to work together.",0,0,The Happiest Days of Your Life,en +43395,Two Weeks with Love,1950-01-01,92.0,,,tt0043081,The Gayest LOVE STORY EVER FILMED!,"The Robinson family are spending two weeks of summer vacation at a resort in the Catskills. Older daughter Patti vies with her friend, Valeria, for the affections of Demi Armendez but Patti is at a disadvantage because her parents think she is too young for boys. But with Patti singing at an amateur show and a dance, her adventures in quest of Armendez ends happily.",0,0,Two Weeks with Love,en +151310,Ambush,1950-01-13,90.0,,,tt0041117,M-G-M's Great Drama of the Adventurous West!,A Westerner searches for a white woman held by the Apaches.,0,0,Ambush,en +35404,The File on Thelma Jordon,1950-01-18,100.0,,,tt0041368,...SHE'LL LIE...KILL OR KISS HER WAY OUT OF ANYTHING!,A woman seduces a District Attorney and pulls him into a web of theft and murder.,0,0,The File on Thelma Jordon,en +236112,Hurdy-Gurdy Hare,1950-01-20,7.0,,,tt0042583,,Hurdy gurdy operator Bugs must get rid of his Chimp when the ape steals the take from him. The replacement ape is is a Gorrilla.,0,0,Hurdy-Gurdy Hare,en +18671,Gun Crazy,1950-01-20,86.0,,,tt0042530,THRILL CRAZY... KILL CRAZY...,"Bart Tare is an ex-Army man who has a lifelong fixation with guns, he meets a kindred spirit in sharpshooter Annie Starr and goes to work at a carnival. After upsetting the carnival owner who lusts after Starr, they both get fired. Soon, on Starr's behest, they embark on a crime spree for cash. Subjects of a manhunt, they are tracked by police in the hills Tare enjoyed as a boy.",0,0,Gun Crazy,en +262454,The Cheat,1950-01-25,91.0,,,tt0041635,,The life of a weak-willed man is thrust into a downward spiral by the scheming of his manipulative girlfriend and her mother.,0,0,Manèges,fr +257095,Prince Bayaya,1950-01-26,87.0,,,tt0225145,,The first fairy tale transformed into a full-length picture by Jiri Trnka. It is based on the charming story about prince Bajaja by Bozena Nemcova. Bajaja saves three princesses from a dragon’s claws and then marries the youngest of them.,0,0,Bajaja, +25953,Radar Secret Service,1950-01-28,59.0,,,tt0042874,,A federal agent (John Howard) and his partner track uranium-ore hijackers with radar.,0,0,Radar Secret Service,en +4809,Good Morning Miss Dove,1955-11-23,107.0,,,tt0048130,,Beloved schoolteacher reflects back on her life and former students when she is hospitalized...,0,0,Good Morning Miss Dove,en +34623,Young Man with a Horn,1950-02-09,112.0,,,tt0043153,"Put down your trumpet, jazzman -- I'm in the mood for love!","Aimless youth Rick Martin learns he has a gift for music and falls in love with the trumpet. Legendary trumpeter Art Hazzard takes Rick under his wing and teaches him all he knows about playing. To the exclusion of anything else in life, Rick becomes a star trumpeter, but his volatile personality and desire to play jazz rather than the restricted tunes of the bands he works for lands him in trouble.",0,0,Young Man with a Horn,en +185180,Mi adorado Juan,1950-02-12,0.0,,,tt0041649,,,0,0,Mi adorado Juan,es +45692,Paid in Full,1950-02-15,98.0,,,tt0042830,,"Two sisters fall in love with the same man. After the wedding, the new husband realizes he may have married the wrong sister.",0,0,Paid in Full,en +39284,To Joy,1950-02-20,98.0,,,tt0043048,,To Joy (Swedish: Till glädje) is a 1950 Swedish film directed by Ingmar Bergman about a young married couple who play together in a Swedish orchestra.,0,0,Till glädje,sv +74437,The Secret Fury,1950-02-21,85.0,,,tt0042935,Could she kill and kiss and not remember?,A mysterious figure tries to stop a woman's marriage by driving her mad.,0,0,The Secret Fury,en +37329,The Baron of Arizona,1950-03-04,97.0,,,tt0042229,,The U.S. government recognizes land grants made when the West was under Spanish rule. This inspires James Reavis to forge a chain of historical evidence that makes a foundling girl the Baroness of Arizona. Reavis marries the girl and presses his claim to the entire Arizona territory.,0,0,The Baron of Arizona,en +130900,Nancy Goes to Rio,1950-03-10,100.0,,,tt0042779,,"Mother and daughter (Sothern and Powell) compete over same singing role and, unbeknownst to each other, the same man.",0,0,Nancy Goes to Rio,en +41552,Black Hand,1950-03-12,92.0,,,tt0041181,It's Gene Kelly against The Black Hand!,"In turn-of-the-century New York, an Italian seeks vengeance on the mobsters who killed his father.",0,0,Black Hand,en +125666,Killer Shark,1950-03-19,76.0,,,tt0042642,,"A college student takes a break and goes out to sea with his father, the captain of a shark-hunting boat. When his inexperience results in an accident in which his father and a crewman are badly injured, he tries to make up for it by rounding up another crew and going back out on the hunt. However, things don't turn out quite the way he planned.",0,0,Killer Shark,en +30014,House by the River,1950-03-25,88.0,,,tt0042579,,"Louis Hayward stars as a wealthy man who tries to seduce the family maid. She resists, and he kills her. Long jealous of his brother Lee Bowman, Hayward does his best to pin the blame for the murder on his sibling. Also affected by Hayward's arrogant dementia is his long-suffering wife Jane Wyatt. Originally, director Lang had proposed that the unfortunate maid be a black woman, but was over ruled",0,0,House by the River,en +33839,Cheaper by the Dozen,1950-03-31,85.0,,,tt0042327,He's the New Father of His Country!,"""Cheaper by the Dozen"", based on the real-life story of the Gilbreth family, follows them from Providence, Rhode Island, to Montclair, New Jersey, and details the amusing anecdotes found in large families.",0,0,Cheaper by the Dozen,en +391438,El amor no es ciego,1950-04-04,0.0,,,tt0262225,,,0,0,El amor no es ciego,en +37468,The Big Lift,1950-04-26,120.0,,,tt0042249,From the Ruins came Hope and Despair,The Berlin Air Lift from the point of view of two NCOs.,0,0,The Big Lift,en +32690,Scandal,1950-04-30,104.0,,,tt0042958,,Akira Kurosawa directed this drama about a paparazzi photo that a tabloid magazine spins into a scandalous story and soon sparks a court case.,0,0,醜聞,ja +66175,I Was a Shoplifter,1950-05-13,74.0,,,tt0042588,,A police detective uses any means possible to trap a gang of shoplifters.,0,0,I Was a Shoplifter,en +17057,In a Lonely Place,1950-05-17,94.0,,,tt0042593,The Bogart suspense picture with the surprise finish -,"Dixon 'Dix' Steele, a down-on-his-luck screenwriter, needs to adapt a trashy novel. At a nightclub, the hatcheck girl, Mildred Atkinson, is engrossed reading it. Too tired to read the novel, he asks Mildred to go home with him, to explain the plot. Later that night, Mildred is murdered and Steele is a prime suspect. His record of violence when angry goes against him.",0,0,In a Lonely Place,en +64456,The Lawless,1950-06-01,83.0,,,tt0042669,,A newspaper editor takes on the cause of oppressed migrant Mexican fruit pickers..,0,0,The Lawless,en +20758,Father of the Bride,1950-06-16,92.0,,,tt0042451,You're invited . . . to a hilarious wedding !,"Proud father Stanley Banks remembers the day his daughter, Kay, got married. Starting when she announces her engagement through to the wedding itself, we learn of all the surprises and disasters along the way.",0,0,Father of the Bride,en +45627,This Side of the Law,1950-06-17,74.0,,,tt0043040,Trapped! Tricked! and Treacherous!,A man - trapped in a cistern - reflects on the dark events that lead to his lonely entrapment.,0,0,This Side of the Law,en +96433,My Friend Irma Goes West,1950-06-25,91.0,,,tt0042769,"You'll Say: ""FUNNIEST"" picture of my Life!","Singer Steve, friend Seymour and fiance Jane, along with her dizzy blonde room mate Irma, have a series of misadventures on a California-bound train and end up involved with a gang of murderous gangsters in Las Vegas.",0,0,My Friend Irma Goes West,en +20153,Where Danger Lives,1950-07-14,82.0,,,tt0043131,Mitchum! Action!,A young doctor falls in love with a disturbed young woman and apparently becomes involved in the death of her husband. They head for Mexico trying to outrun the law.,0,0,Where Danger Lives,en +173662,Stella,1950-07-20,83.0,,,tt0043000,,Screwball black comedy about a wacky family that forgets where they've buried a corpse.,0,0,Stella,en +106358,Atom Man vs Superman,1950-07-20,252.0,,,tt0042211,,Serial - sequel to Superman (1948); Superman faces off against Lex Luthor.,0,0,Atom Man vs Superman,en +210653,The Man Without a Face,1950-07-29,91.0,,,tt0043647,,A faceless killer who hunts women can only be stopped by a detective with a disturbing past.,0,0,El Hombre Sin Rostro,es +37292,Broken Arrow,1950-08-01,93.0,,,tt0042286,The Most Powerful Weapon is Courage..,"Indian scout Tom Jeffords (James Stewart) is sent out to stem the war between the Whites and Apaches in the late 1870s. He learns (through an uncomfortably close encounter) that the Indians kill only to protect themselves, or out of retaliation for white atrocities.",0,0,Broken Arrow,en +36375,Edge of Doom,1950-08-03,99.0,,,tt0042428,"100 BREATH-TAKING MINUTES OF ""EDGE-OF-YOUR-SEAT"" SUSPENSE AND PULSE-POUNDING MYSTERY!",A priest sets out to catch the man who killed one of his colleagues.,0,0,Edge of Doom,en +184328,Triple Trouble,1950-08-13,67.0,,415931,tt0043071,"THEY'VE GOT THOSE ""JAIL-BOID"" BLUES! Leo talked them into the big house...but even Huntz can't clown his way out!",Slip and the gang (Bowery Boys) take the rap for a robbery they did not commit.,0,0,Triple Trouble,en +39039,Awaara,1951-04-07,193.0,,,tt0043306,,"A petty thief is put on trial for the attempted murder of a lawyer. Through a series of flashbacks, the intertwining lives of the thief, the lawyer, and the thief's defense lawyer are illustrated.",0,0,Awaara,hi +28433,No Way Out,1950-08-16,106.0,,,tt0042792,Is it a question... or an answer,"The Biddle brothers, shot while robbing a gas station, are taken to the prison ward of the County Hospital; Ray Biddle, a rabid racist, wants no treatment from black resident Dr. Luther Brooks. When brother John dies while Luther tries to save him, Ray is certain it's murder and becomes obsessed with vengeance. But there are black racists around too, and the situation slides rapidly toward violence.",0,0,No Way Out,en +52847,The Toast of New Orleans,1950-08-24,97.0,,,tt0043053,M-G-M's Technicolor fiesta!,"Snooty opera singer meets a rough-and-tumble fisherman in the Louisiana bayous, but this fisherman can sing! Her agent lures him away to New Orleans to teach him to sing opera, but comes to regret this rash decision when the singers fall in love.",0,0,The Toast of New Orleans,en +43390,Summer Stock,1950-08-31,108.0,,,tt0043012,MGM brings on the show with music - dancing - Technicolor,"To Jane Falbury's New England farm comes a troup of actors to put up a show, invited by Jane's sister. At first reluctant she has them do farm chores in exchange for food. Her reluctance becomes attraction when she falls in love with the director, Joe, who happens to be her sister's fiance.",0,0,Summer Stock,en +44398,The Black Rose,1950-09-01,116.0,,,tt0042256,,"In the time of the crusades, a Saxon youth is forced to run away from England. He goes with his loyal retainer who brings along a British long bow. The two go all the way to China where they become involved in intrigues in the court of Kubla Kahn.",0,0,The Black Rose,en +33117,Tea for Two,1950-09-02,98.0,,,tt0043030,Everybody's goin' gay with --,"In this reworking of ""No, No, Nanette,"" wealthy heiress Nanette Carter bets her uncle $25,000 that she can say ""no"" to everything for 48 hours. If she wins, she can invest the money in a Broadway show featuring songs written by her beau, and of course, in which she will star. Trouble is, she doesn't realize her uncle's been wiped out by the Stock Market crash.",0,0,Tea for Two,en +118236,The Great Manhunt,1950-09-11,104.0,,,tt0042522,,"Visiting in England, famed American surgeon Doctor John Marlowe is decoyed to a middle European country, and discovers the operation he is to perform is on the Vosnian dictator. When the latter dies, he is replaced by a look-alike, but Marlowe is the object of a shoot-to-kill, vicious pursuit by the secret police of Vosnia since it is vital to Vosnia that the dictator's death does not become known. Fleeing, he seeks help from an English-speaking actress, Lisa Robinson, and the two are harried across the countryside before being captured.",0,0,State Secret,en +34651,Devil's Doorway,1950-09-15,84.0,,,tt0042395,,A Native American Civil War hero returns home to fight for his people.,0,0,Devil's Doorway,en +76011,My Blue Heaven,1950-09-15,95.0,,,tt0042767,,"Radio star Kitty Moran, long married to partner Jack, finds she's pregnant, but miscarries. For a change, the couple turn their act into a series on early TV and try to adopt a baby. Finally they acquiring a girl in a somewhat back alley manner.",0,0,My Blue Heaven,en +145813,Bunker Hill Bunny,1950-09-23,7.0,,,tt0042290,,Sam Von Schamm The Hessian and Bugs Bunny fight it out in the little known American Revolutionary War Battle of Bagel Heights.,0,0,Bunker Hill Bunny,en +43385,Born to Be Bad,1950-09-28,94.0,,,tt0042275,A woman of beauty...who wielded ruthless power over men!,"A manipulative woman plots to seduce her cousin's rich fiance, but is also in love with the only man who can see her selfish true nature. Based on the 1928 bestseller ""All Kneeling"" by Anne Parrish.",0,0,Born to Be Bad,en +102144,Mister 880,1950-09-29,90.0,,,tt0042742,,"The Skipper is a charming old man loved by all his neighbors. What they don't know is that he is also Mr. 880, an amateurish counterfeiter who has amazingly managed to elude the Secret Service for 20 years.",0,0,Mister 880,es +37954,The Breaking Point,1950-10-06,97.0,,,tt0042281,A guy who had nothing to sell but guts!,Based on the Hemingway novel To Have and Have Not. A fisherman with money problems hires out his boat to transport criminals.,0,0,The Breaking Point,en +88075,"Walk Softly, Stranger",1950-10-14,81.0,,,tt0043118,A Strange Lie! A Strange Love!,A petty crook (Joseph Cotten) moves to an Ohio town and courts a factory owner's disabled daughter (Valli).,0,0,"Walk Softly, Stranger",en +185289,Blues Busters,1950-10-29,67.0,,415931,tt0042266,The most riotous night club kings you've ever seen!,The Bowery Boys (Bowery Boys) open a nightclub after Sach has his tonsils out and wakes up with a singing voice.,0,0,Blues Busters,en +43388,King Solomon's Mines,1950-11-09,103.0,,135508,tt0042646,Lovers trapped in animal stampede !,Adventurer Allan Quartermain leads an expedition into uncharted African territory in an attempt to locate an explorer who went missing during his search for the fabled diamond mines of King Solomon.,0,0,King Solomon's Mines,en +705,All About Eve,1950-11-09,138.0,,,tt0042192,It's all about women... and their men!,"From the moment she glimpses her idol at the stage door, Eve Harrington is determined to take the reins of power away from the great actress Margo Channing. Eve maneuvers her way into Margo's Broadway role, becomes a sensation and even causes turmoil in the lives of Margo's director boyfriend, her playwright and his wife. Only the cynical drama critic sees through Eve, admiring her audacity and perfect pattern of deceit.",1400000,63463,All About Eve,en +47745,Southside 1-1000,1950-11-16,73.0,,,tt0042989,,The U.S. Secret Service goes after a counterfeiting ring by placing one of it's agents in a criminal mob.,0,0,Southside 1-1000,en +28663,Woman on the Run,1950-11-29,77.0,,,tt0043142,As Startling as Your OWN Scream in the Night!,"Frank Johnson, sole witness to a gangland murder, goes into hiding and is trailed by Police Inspector Ferris, on the theory that Frank is trying to escape from possible retaliation. Frank's wife, Eleanor, suspects he is actually running away from their unsuccessful marriage. Aided by a newspaperman, Danny Leggett, Eleanor sets out to locate her husband. The killer is also looking for him, and keeps close tabs on Eleanor.",0,0,Woman on the Run,en +63179,Totò Sceicco,1950-11-30,,,421566,tt0043059,,,0,0,Totò Sceicco,it +401895,Brigada criminal,1950-12-04,80.0,,,tt0042283,,"A young policemen witnesses a bank robbery which will become his first case. To catch the thieves he will infiltrate himself as one of the gang members. At first it works, but it won't be so easy afterwards.",0,0,Brigada criminal,es +249264,Watch the Birdie,1950-12-11,71.0,,,tt0043120,,A photographer falls for a rich girl and gets mixed up with crooks.,0,0,Watch the Birdie,en +27543,The Sound of Fury,1950-12-12,85.0,,,tt0043075,,A family man -desperate for a job- latches onto a friend that encourages him into being a criminal.,0,0,The Sound of Fury,en +65282,Gambling House,1950-12-27,80.0,,,tt0042496,Here comes Mature !,A gambler faces deportation when he gets mixed up with murder.,0,0,Gambling House,en +80374,Toto and the King of Rome,1951-01-01,0.0,,421566,tt0044141,,,0,0,Totò e i re di Roma,it +262987,Filomena Marturano,1951-01-01,,,,tt0043533,,,0,0,Filomena Marturano,it +312137,Has the Film Already Started?,1951-01-01,62.0,,,tt0259309,,"“A pink moving screen will stand at the entrance to the theatre, in the night. One hour before the screening a projectionist will show Griffith’s Intolerance on this screen. The start of the film will be announced at 8.30 but no one will enter before 9.30. During these 60 minutes of waiting, people on the first floor of the building will shake out very dusty carpets, and someone else will throw ice water on the heads of those spectators waiting for the screening. Some actors who have infiltrated the crowd will insult other actors on the first floor. At this moment only, and to stop the beginning of a scandal, the doors of the theatre will open…”",0,0,Le film est déjà commencé?,en +80596,The Magic Box,1951-01-01,118.0,,,tt0043769,"A rich and deeply moving story of a man whose achievement opened up a new world, and of the two women whose love and sacrifices made it possible!","Now old, ill, poor, and largely forgotten, William Freise-Greene was once very different. As young and handsome William Green he changed his name to include his first wife's so that it sounded more impressive for the photographic portrait work he was so good at. But he was also an inventor and his search for a way to project moving pictures became an obsession that ultimately changed the life of all those he loved.",0,0,The Magic Box,en +18646,Royal Wedding,1951-01-01,93.0,,,tt0043983,,"Fred Astaire (Tom) and Jane Powell (Ellen) are asked to perform as a dance team in England at the time of Princess Elizabeth's wedding. As brother and sister, each develops a British love interest, Ellen with Lord John Brindale (Peter Lawford) and Tom with dancer Anne Ashmond (Sarah Churchill--Winston's daughter).",0,0,Royal Wedding,en +38766,Halls of Montezuma,1951-01-04,113.0,,,tt0042539,,"Richard Widmark leads an all star cast of marine leathernecks including Jack Palance, Robert Wagner, Karl Malden, Richard Boone and Jack Webb into battle on a heavily fortified island. This action-packed story follows the squad as they pick their way through enemy-infested jungles on a time sensitive mission to find the source of the enemy rockets. As the mission progresses, the squad and leader overcome many challenges as they are transformed into an effective and efficient fighting unit.",0,0,Halls of Montezuma,en +185273,Bowery Battalion,1951-01-24,69.0,,415931,tt0043356,THEY'RE THE DAFFIEST DRAFTEES IN HISTORY!,"Slip, Sach and the gang (Bowery Boys) think an air-raid test is for real and join the Army.",0,0,Bowery Battalion,en +44890,The Frogmen,1951-01-25,96.0,,,tt0043565,UNCLE SAM'S UNDERWATER COMMANDOS!,"The new commander of a Navy Underwater Demolition Team--nicknamed ""Frogmen""--must earn the respect of the men in his unit, who are still grieving over the death of their former commander and resentful of the new one.",0,0,The Frogmen,en +181876,Blackmailed,1951-01-30,85.0,,,tt0042257,,"A blackmailer is murdered, and those who witnessed the scene agree to keep quiet; the complication is that the scene is also witnessed by a young artist, a victim of blackmail as well. (BFI Website)",0,0,Blackmailed,en +46872,The Steel Helmet,1951-02-02,85.0,,,tt0044072,It's the REAL Korean Story!,A ragtag group of American stragglers battles against superior Communist troops in an abandoned Buddhist temple during the Korean War.,0,0,The Steel Helmet,en +43384,Vengeance Valley,1951-02-06,83.0,,,tt0044186,,"A cattle baron takes in an orphaned boy and raises him, causing his own son to resent the boy. As they get older the resentment festers into hatred, and eventually the real son frames his stepbrother for fathering an illegitimate child that is actually his, seeing it as an opportunity to get his half-brother out of the way so he can have his father's empire all to himself.",0,0,Vengeance Valley,en +43379,Miracle in Milan,1951-02-08,100.0,,,tt0043809,"An impudent, riotous laugh on the lives and morals of our day!","Once upon a time an old woman discovers a baby in her cabbage patch. She brings up the child and, when she dies, the boy, Toto, enters an orphanage. Toto leaves the orphanage a happy young man, and looks for work in post-war Milan. He ends up with the homeless and organizes them to build a shanty town in a vacant lot. The squatters discover oil in the land and Toto sees a vision of the old woman who gives him a magic dove that will grant him anything he wishes.",0,0,Miracolo a Milano,it +27917,Pool of London,1951-02-20,85.0,,,tt0042851,A drama of the river underworld,"Jewel thieves, murder and a manhunt swirl around a sailor (Bonar Colleano) off a cargo ship in London.",0,0,Pool of London,en +197785,Saturday's Hero,1951-03-01,111.0,,,tt0043994,,A talented high school football player encounters trouble in a college program.,0,0,Saturday's Hero,en +36373,M,1951-03-01,88.0,,,tt0043766,The most gripping motion picture you've ever seen!,"Remake of the 1931 original. In the city, someone is murdering children. The Police search is so intense, it is disturbing the 'normal' criminals, and the local hoods decide to help find the murderer as quickly as possible.",0,0,M,en +197788,Behave Yourself!,1951-03-15,81.0,,,tt0043327,,A young man takes in a dog that turns out to be wanted by mobsters.,0,0,Behave Yourself!,en +59401,The Red Badge of Courage,1951-03-16,69.0,,,tt0043961,Stephen Crane's Great American Story of the Civil War,Truncated adaptation of Stephen Crane's novel about a Civil War Union soldier who stuggles to find the courage to fight in the heat of battle.,1640000,0,The Red Badge of Courage,en +125264,Carmen Comes Home,1951-03-21,86.0,,,tt0043699,,"A girl who'd left her hometown for the exciting adventure of the big city returns home years later for a visit, soon somehow causing scandal.",0,0,Karumen kokyo ni kaeru,ja +29835,Cause for Alarm,1951-03-30,74.0,,,tt0043390,This girl is in trouble!,A woman fights to intercept a letter in which her husband tries to prove her guilty of murder.,0,0,Cause for Alarm,en +147903,Santa Fe,1951-04-01,88.0,,,tt0043992,,"After their service in the Civil War, four brothers go their separate ways, but later find themselves on opposite sides of a final showdown.",0,0,Santa Fe,en +54139,Fourteen Hours,1951-04-01,92.0,,,tt0043560,A new element in screen suspense,"A young man, morally destroyed by his parents not loving him and by the fear of being not capable to make his girlfriend happy, rises on the ledge of a building with the intention of committing suicide. A policeman makes every effort to argue him out of it.",0,0,Fourteen Hours,en +73896,Apache Drums,1951-04-01,75.0,,,tt0043291,,"A gambler is thrown out of a western town, but returns when the town is suddenly threatened by a band of marauding Apaches.",0,0,Apache Drums,en +217948,Teresa,1951-04-05,102.0,,,tt0044112,The story of a bride. Revealing. Intimate.,An Italian war bride has problems dealing with her husband's possessive mother.,0,0,Teresa,en +41591,The Scarf,1951-04-06,93.0,,,tt0043998,,"John Ireland stars in this thriller as a man who breaks out of an asylum for the criminally insane, where he has been committed for strangling a girl with a scarf.",0,0,The Scarf,en +184802,Because You're Mine,1952-10-01,103.0,,,tt0044402,,A famous opera singer (Mario Lanza) falls for his sergeant's (James Whitmore) sister (Doretta Morrow) at boot camp.,0,0,Because You're Mine,en +44655,Susana,1951-04-11,86.0,,,tt0043018,,The story of a girl of questionable mental stability who escapes from incarceration and ends up at a plantation where she disrupts a working family's daily routines and chemistry.,0,0,Susana,es +22968,Father's Little Dividend,1951-04-12,82.0,,,tt0043526,"Funnier than ""Father of the Bride!""","In this sequel to Father of the Bride, newly married Kay Dunstan announces that she and her husband are going to have a baby, leaving her father having to come to grips with the fact that he will soon be a granddad.",0,0,Father's Little Dividend,en +98328,The Great Caruso,1951-04-16,109.0,,,tt0043599,The Intimate Story of a Man with a Voice as Great as His Heart!,"Loosely traces the life of tenor Enrico Caruso (1873-1921). He loves Musetta, in his home town of Naples, and then Dorothy, the daughter of one of the Metropolitan Opera's patrons. Caruso is unacceptable to both women's fathers: to one, because he sings; to Dorothy's, because he is a peasant. To New York patricians, Caruso is short, barrel chested, loud, emotional, unrefined. Their appreciation comes slowly. The film depicts Caruso's lament that ""the man does not have the voice, the voice has the man"": he cannot be places he wants to be, because he must be elsewhere singing, including the day his mother dies. Throughout, Mario Lanza and stars from the Met sing.",0,0,The Great Caruso,en +86258,The Brave Bulls,1951-04-18,106.0,,,tt0043359,,,0,0,The Brave Bulls,en +29577,On the Riviera,1951-04-20,89.0,,,tt0043882,,"In this fast-paced remake of the Muarice Chavlier vehicle Folies Bergere, talented Danny Kaye plays both a performer and a heroic French military pilot.",0,0,On the Riviera,en +106016,My Forbidden Past,1951-04-25,70.0,,,tt0043828,SHE's the kind of woman that made NEW ORLEANS famous!,An 1890s New Orleans heiress tries to buy a married doctor's love with her tainted family fortune.,0,0,My Forbidden Past,en +77650,Bullfighter and the Lady,1951-04-26,87.0,,,tt0043363,The most DANGEROUS game on earth!,An American takes up bullfighting to impress the ladies but learns to respect the sport.,0,0,Bullfighter and the Lady,en +50153,The Man from Planet X,1951-04-27,70.0,,,tt0043778,The WEIRDEST Visitor the Earth has ever seen!,"While watching for a planet that may collide with earth, scientists stationed in Scotland are approached by a visitor from outer space.",50000,0,The Man from Planet X,en +49508,I Was a Communist for the FBI,1951-05-05,83.0,,,tt0043665,I had to sell out my own girl -- so would you!,A fact-based story about a man who posed as an American Communist for years as part of a secret plan to infiltrate their organization.,0,0,I Was a Communist for the FBI,en +43562,Along the Great Divide,1951-06-02,88.0,,,tt0043276,AN ADVENTURE THAT AVALANCHES FROM THE BULLET-PROOF ROOF OF THE ROCKIES TO THE FIERY DESERT FLOOR!,"New Federal marshal Len Merrick saves Tim Keith from lynching at the hands of the Roden clan, and hopes to get him to Santa Loma for trial. Vindictive Ned Roden, whose son Ed was killed, still wants personal revenge, and Tim would like to escape before Ned catches up with him again. Can the marshal make it across the desert with Tim and his daughter? Even if he makes it, will justice be served?",0,0,Along the Great Divide,en +25673,A Place in the Sun,1951-06-12,122.0,,,tt0043924,Young people asking so much of Life... taking so much of Love!,An ambitious young man wins an heiress's heart but has to cope with his former girlfriend's pregnancy.,0,0,A Place in the Sun,en +73313,No Questions Asked,1951-06-15,80.0,,,tt0043861,"""Give her the works til she tells where the jewels are hidden.""",A young lawyer's primrose path to success gets him framed for murder.,0,0,No Questions Asked,en +25738,He Ran All The Way,1951-06-19,77.0,,,tt0043625,DYNAMITE hits the screen with their kind of love!,A crook on the run hides out in an innocent girl's apartment.,0,0,He Ran All The Way,en +131781,"Rich, Young and Pretty",1951-07-09,95.0,,,tt0043968,MGM's happy-go-lucky Technicolor musical!,A rancher's daughter visits Paris to meet her mother and find love.,0,0,"Rich, Young and Pretty",en +17820,Show Boat,1951-07-13,107.0,,,tt0044030,It's NEW!,A dashing Mississippi river gambler wins the affections of the daughter of the owner of the Show Boat.,2300000,11000000,Show Boat,en +72474,Fort Worth,1951-07-14,80.0,,,tt0043557,"RANDOLPH SCOTT as Fighting Editor Britt of the ""Fort Worth Star"" - His Fearless Headlines Wrote Fort Worth's History---His Six-Guns Made It!","Former gunfighter Ned Britt (Randolph Scott) sets up shop in Fort Worth, Texas as a newspaper man. He falls in love with Flora Talbot (Phyllis Thaxter), who is the fiancée of a former friend, Blair Lunsford (David Brian). Britt tries to expose the crooked cattle baron Gabe Clevinger (Ray Teal) in his newspaper. Clevinger resorts to violence in order to prevent the arrival of the railroad at Fort Worth and Britt has to rethink his journalistic methods to stop him and resort to violence himself.",0,0,Fort Worth,en +84601,The Wearing of the Grin,1951-07-28,7.0,,,tt0044198,,"Porky Pig spends the night at an Irish castle after being caught in a storm, and gets in trouble with the two leprechauns who live there.",0,0,The Wearing of the Grin,en +156603,Let's Go Navy!,1951-07-29,68.0,,415931,tt0043735,Gobs of Fun!,The Bowery Boys join the Navy to catch some crooks who are posing as sailors.,0,0,Let's Go Navy!,en +109258,Bright Victory,1951-07-31,97.0,,,tt0043361,,"A soldier blinded in war returns home and attempts to adjust to civilian life. Director Mark Robson's 1951 drama stars Arthur Kennedy (Academy Award nomination, Best Actor, for his performance), Peggy Dow, James Edwards, Will Geer, Nana Bryant, Julie Adams, Jim Backus, Richard Egan and Murray Hamilton.",0,0,Bright Victory,en +60853,Jim Thorpe – All-American,1951-08-24,107.0,,,tt0043687,He wore America's heart over his!,"The triumph and tragedy of Native Anerican Jim Thorpe, who, after winning both the pentathlon and decathlon in the same Olympics, is stripped of his medals on a technicality.",0,0,Jim Thorpe – All-American,en +33673,His Kind of Woman,1951-08-29,120.0,,,tt0043643,"They were two of a kind ! ...and bound to meet, but neither of them knew what such a meeting would mean!","Nick Ferraro, deported crime boss, needs to re-enter the USA. His plan involves ""honest"" gambler Dan Milner, who's subjected to a series of ""misfortunes,"" then bribed to take a trip to Mexico. En route, Dan meets chanteuse Lenore Brent, truly his kind of woman. But on arrival at posh Morros Lodge in Baja California, Dan finds the ostensibly rich, carefree guests all playing roles...except, possibly, ham actor Mark Cardigan. What does Ferraro want with him? Can he trust anyone?",0,0,His Kind of Woman,en +23152,People Will Talk,1951-08-29,110.0,,,tt0043915,,"Successful and well-liked, Dr. Noah Praetorius becomes the victim of a witchhunt at the hands of Professor Elwell, who disdains Praetorius's unorthodox medical views and also questions his relationship with the mysterious, ever-present Mr. Shunderson.",0,0,People Will Talk,en +36634,The People Against O'Hara,1951-09-01,102.0,,,tt0043914,O'HARA MIGHT BEAT MURDER - IF HIS LAWYER CAN BEAT THE BOTTLE!,A defense attorney jeopardizes his career to save his client.,0,0,The People Against O'Hara,en +193878,A Millionaire for Christy,1951-09-02,91.0,,,tt0043807,,"Christy Sloane is sent on a business trip to inform radio personality Peter Lockwood that his uncle has died and left him $2 million. Christy, who's in financial straits, decides to try to snag Peter. Zany hijinks ensue and romantic sparks fly.",0,0,A Millionaire for Christy,en +211561,The City Defends Itself,1951-09-03,0.0,,,tt0043412,,,0,0,La città si difende,it +88176,The Lost One,1951-09-07,98.0,,,tt0044188,,A German scientist murders his fiancée during World War II when he learns that she has been selling the results of his secret research to the enemy.,0,0,Der Verlorene,de +187516,Crazy Over Horses,1951-09-09,65.0,,415931,tt0043432,SO HILARIOUS! IT'S CRAZY ENOUGH TO MAKE EVEN A HORSE LAUGH!,The boys get mixed up with a race horse & crooked gamblers,0,0,Crazy Over Horses,en +28561,Roadblock,1951-09-17,73.0,,,tt0043973,Hot lead and cold cash outside the law!,An insurance agent's greedy girlfriend with a taste for mink leads him to a life of crime.,0,0,Roadblock,en +27629,Here Comes the Groom,1951-09-20,113.0,,,tt0043633,,"Foreign correspondent Pete Garvey has 5 days to win back his former fiancée, or he'll lose the orphans he adopted.",0,0,Here Comes the Groom,en +43882,No Highway in the Sky,1951-09-21,98.0,,,tt0043859,"EXCITEMENT and SUSPENSE 18,000 Feet Over the Atlantic!","James Stewart plays aeronautical engineer Theodore Honey, the quintessential absent-minded professor: eccentric, forgetful, but brilliant. His studies show that the aircraft being manufactured by his employer has a subtle but deadly design flaw that manifests itself only after the aircraft has flown a certain number of hours. En route to a crash site to prove his theory, Honey discovers that he is aboard a plane rapidly approaching his predicted deadline.",0,0,No Highway in the Sky,en +29467,Tomorrow Is Another Day,1951-09-22,90.0,,,tt0044136,The take their lives in their hands... when they take each other in their arms!,"A man who spent his formative years in prison for murder is released, and struggles to adjust to the outside world and escape his lurid past. He gets involved with a cheap dancehall girl, and when her protector is accidentally killed, they go on the lam together, getting jobs as farm labourers. But some fellow workers get wise to them.",0,0,Tomorrow Is Another Day,en +342011,Cárcel de Mujeres,1951-09-28,83.0,,,tt0043444,,,0,0,Cárcel de Mujeres,es +239519,Close to My Heart,1951-10-01,90.0,,,tt0043417,,A journalist's wife insists on adopting an abandoned child.,0,0,Close to My Heart,en +50247,Early Summer,1951-10-03,124.0,,,tt0043313,,"A family chooses a match for their 28-year-old daughter Noriko, but she surprisingly has her own plans.",0,0,麦秋,ja +69784,Anne of the Indies,1951-10-18,81.0,,,tt0043288,,"After seizing an English ship, buccaneer captain Anne Providence spares Pierre LaRochelle from walking the plank - as he's in irons he is presumably no friend of England. He signs on as a pirate and she is increasingly drawn to him, a feeling that seems to be reciprocated. When fearsome Captain Blackbeard, her teacher in the ways of pirating, sets eyes on LaRochelle he recalls him as a French navy officer. Anne sticks by her man but the truth, when it is uncovered, is even more painful.",0,0,Anne of the Indies,en +37084,The Big Night,1951-11-13,75.0,,,tt0043340,Love! Hate! Murder!,"A film noir treatise about the coming of age of a young man is beautifully realized by the great Joseph Losey. John Drew Barrymore zigzags through the sordid vortex of downtown Los Angeles while seeking vengeance on the man who beat his Father. This superbly crafted “trial by fire” tale with memorable dialogue and shaded photography co-stars Preston Foster, Joan Lorring, Harold St. John and Dorothy Comingore",0,0,The Big Night,en +87349,Outcast of the Islands,1951-11-15,102.0,,,tt0045002,,"After financial improprieties are discovered at the Eastern trading company where he works, Peter Willems flees the resulting disgrace and criminal charges. He persuades the man who gave him his start in life, the merchant ship captain Lingard, to bring him to a trading post on a remote Indonesian island where he can hide out.",0,0,Outcast of the Islands,en +68976,The Unknown Man,1951-11-16,86.0,,,tt0044166,Shocking! Revealing! Timely!,"A scrupulously honest lawyer discovers that the client he""s gotten off was really guilty.",0,0,The Unknown Man,en +53714,Another Man's Poison,1951-11-20,90.0,,,tt0044364,She Had Everything You Could Give A Woman To Torment A Man!,"Novelist Janet Frobisher, lives in an isolated house, having been separated for years from her criminal husband. She has fallen in love with her secretary's fiancé and when her estranged husband unexpectedly appears, Janet poisons him, but just as she's about to dispose of the body, one of her husband's criminal cohorts also shows up.",0,0,Another Man's Poison,en +46875,Fixed Bayonets!,1951-11-21,92.0,,,tt0043540,,"The story of a platoon during the Korean War. One by one, Corporal Denno's superiors are killed until it comes to the point where he must try to take command responsibility.",0,0,Fixed Bayonets!,en +488,The African Queen,1951-12-03,105.0,,,tt0043265,The greatest adventure a man ever lived...with a woman!,"At the start of the first World War, in the middle of Africa’s nowhere, a gin soaked riverboat captain is persuaded by a strong-willed missionary to go down river and face-off a German warship.",1300000,10750000,The African Queen,en +161602,Calling Bulldog Drummond,1951-12-14,80.0,,,tt0043372,The Screen's Master Manhunt!,The British sleuth (Walter Pidgeon) leaves retirement to help a Scotland Yard woman (Margaret Leighton) catch thieves armed with radar.,0,0,Calling Bulldog Drummond,en +343972,Pecos River,1951-12-15,55.0,,402457,tt0043911,,Steve is a Government Agent looking for the gang that stole the U.S. Mail. He goes undercover...,0,0,Pecos River,en +84397,Double Dynamite,1951-12-25,80.0,,,tt0043476,The Place Is Exploding With Laughter !,"An innocent bank teller, suspected of embezzlement, is aided by an eccentric, wisecracking waiter.",0,0,Double Dynamite,en +43372,Bellissima,1951-12-27,108.0,,,tt0043332,,"Bellissima is a satire of the film industry, and centers around a mother and daughter after the latter attends an audition.",0,0,Bellissima,it +34082,Road to Bali,1952-01-01,91.0,,135441,tt0045094,TOGETHER AGAIN!...in the BEST and FUNNIEST 'Road' Picture Yet!,"Having to leave Melbourne in a hurry to avoid various marriage proposals, two song-and-dance men sign on for work as divers. This takes them to an idyllic island on the way to Bali where they vie with each other for the favours of Princess Lala. The hazardous dive produces a chest of priceless jewels which arouses the less romantic interest of some shady locals.",0,0,Road to Bali,en +43364,The Life of Oharu,1952-01-01,136.0,,,tt0045112,,Follows a woman's fight and survival amid the vicissitudes of life and the cruelty of the society.,0,0,西鶴一代女,ja +51406,Neighbours,1952-01-01,8.0,,,tt0044958,"Love your neighbor, meaning, to treat others as you would have them treat you.","This film, shot in pixilation (a kind of stop-motion animation with actors), is about two neighbours who come to barbaric blows over a flower that straddles the property line.",0,0,Neighbours,en +43365,Stars and Stripes Forever,1952-01-01,90.0,,,tt0045187,,Marine bandmaster John Philip Sousa (Clifton Webb) becomes famous for his marches and inspires the sousaphone.,0,0,Stars and Stripes Forever,en +18698,Jack and the Beanstalk,1952-01-01,70.0,,,tt0044762,Be happy go wacky!,"Abbott and Costello's version of the famous fairy tale, about a young boy who trades the family cow for magic beans.",0,0,Jack and the Beanstalk,en +48627,Room for One More,1952-01-10,98.0,,,tt0045102,Makes room for your broadest grins and your longest laughs!,"Anne and ""Poppy"" Rose are the average American family, with three quirky kids. Anne has a good heart and gives lost cats and dogs a home - and one day also the orphan Jane, a problem child who already tried to kill herself once. At first Poppy is worried and wants to get rid of her, but with love and patience they finally manage to integrate her into the family. Just then Anne invites another orphan, the aggressive handicapped Jimmy-John, to their summer vacation.",0,0,Room for One More,en +102161,Operation: Rabbit,1952-01-19,7.0,,,tt0045000,,"Wile E. Coyote, genius, announces to Bugs Bunny that he is going to catch him and eat him, and then employs a variety of gadgets and plans in an attempt to do so.",0,0,Operation: Rabbit,en +114872,Invitation,1952-01-29,84.0,,,tt0044751,,"A rich man buys a husband (Van Johnson) for his dying daughter (Dorothy McGuire), and she finds out.",0,0,Invitation,en +26283,The Las Vegas Story,1952-01-30,88.0,,,tt0044825,,"When newlyweds visit Las Vegas, the wife's shady past comes to the surface.",0,0,The Las Vegas Story,en +76229,Phone Call from a Stranger,1952-02-01,105.0,,,tt0045029,,"Four strangers board a plane and become fast friends, but a catastrophic crash leaves only one survivor. He then sets off on a journey to discover who these people were, but ultimately discovers the devastating truth about himself.",0,0,Phone Call from a Stranger,en +84903,The Marrying Kind,1952-02-01,92.0,,,tt0044888,"""Shaddup!""",Florence and Chet Keefer have had a troublesome marriage. Whilst in the middle of a divorce hearing the judge encourages them to remember the good times they have had hoping that the marriage can be saved.,0,0,The Marrying Kind,en +43368,The Big Trees,1952-02-05,89.0,,,tt0044420,MAMMOTH REDWOOD WILDERNESS -- TREASURE PILED TO THE SKY!,"In 1900, unscrupulous timber baron Jim Fallon plans to take advantage of a new law and make millions off California redwood. Much of the land he hopes to grab has been homesteaded by a Quaker colony, who try to persuade him to spare the giant sequoias...but these are the very trees he wants most. Expert at manipulating others, Fallon finds that other sharks are at his own heels, and forms an unlikely alliance.",0,0,The Big Trees,en +1810,Viva Zapata!,1952-02-07,113.0,,,tt0045296,A BANDIT WHO BECAME A LEGEND! Roaring Story of Mexico's Tiger on a White Horse!,"The story of Mexican revolutionary Emiliano Zapata, who led a rebellion against the corrupt, oppressive dictatorship of president Porfirio Diaz in the early 20th century.",0,0,Viva Zapata!,en +78265,This Woman Is Dangerous,1952-02-09,100.0,,,tt0045232,EVERY INCH A LADY...till you look at the record!,"Elizabeth is losing her sight, so while her lover go into hiding, she checks in to the hospital for extensive surgery to recover her eyesight. There she is treated by a handsome young doctor, Ben Hellack (Dennis Morgan). As expected not only the doctor successfully open her eyes, he also opened her heart for him.",0,0,This Woman Is Dangerous,en +38732,Bend of the River,1952-02-13,91.0,,,tt0044413,The greatness...the glory...the fury...of the Northwest Frontier!,"Two men with questionable pasts, Glyn McLyntock and his friend Cole, lead a wagon-train load of homesteaders from Missouri to the Oregon territory...",0,0,Bend of the River,en +63224,The Truth About Bebe Donge,1952-02-13,110.0,,,tt0045302,,"François Donge, a rich industrialist and womaniser, meets a girl nicknamed Bébé who he marries. Ten years later, poisoned by his wife and dying in hospital, he recalls his married life and understands how his wife who adored him suffered from his many affairs and indifference.",0,0,La vérité sur Bébé Donge,fr +43369,The Card,1952-02-25,85.0,,,tt0045056,He's the cheekiest man in town!,"A charming and ambitious young man finds many ways to raise himself through the ranks in business and social standing - some honest, some not quite so. If he can just manage to avoid a certain very predatory woman...",0,0,The Card,en +28894,Rancho Notorious,1952-03-01,89.0,,,tt0045070,Where anything goes...for a price!,A cowboy infiltrates a bandit hideout in search of his girlfriend's killer.,0,0,Rancho Notorious,en +73551,Tarzan's Savage Fury,1952-03-14,81.0,,360342,tt0045220,THIS YEAR'S ALL-NEW TARZAN THRILLER!,The jungle king's cousin tries to get him to help find a diamond treasure.,0,0,Tarzan's Savage Fury,en +36334,Deadline - U.S.A.,1952-03-14,87.0,,,tt0044533,,"With three days before his paper folds, a crusading editor tries to expose a vicious gangster.",0,0,Deadline - U.S.A.,en +259183,Home at Seven,1952-03-16,85.0,,,tt0044718,,"Unable to recall the past 24 hours, a British bank clerk is the prime suspect for a robbery/murder.",0,0,Home at Seven,en +41312,Angels One Five,1952-03-19,98.0,,,tt0046714,"A Story of Some of ""The Few""...","The summer of 1940, Pilot Officer T.B. Baird arrives straight out of flight school to join a front line RAF squadron at the height of the Battle of Britain. After an unfortunate start and a drumming down from his commanding officer, Baird (nicknamed 'Septic' due to his initials) must balance the struggle to impress his Group Captain, regain his pride, fit in with his fellow squadron mates, and survive one of the most intense air battles in history. This is the story of just one of ""The Few"" and how they managed to fight off the might of the Luftwaffe, despite overwhelming German air power.",0,0,Angels One Five,en +11972,Don Camillo,1952-03-28,107.0,,11582,tt0043918,,"In a village of the Po valley where the earth is hard and life miserly, the priest and the communist mayor are always fighting to be the head of the community. If in secret, they admired and liked each other, politics still divided them as it is dividing the country. And when the mayor wants his ""People's House""; the priest wants his ""Garden City"" for the poor. Division exist between the richest and the poorest, the pious and the atheists and even between lovers. But if the people are hard as the country, they are good in the bottom of there heart.",0,0,Don Camillo,it +65787,With a Song in My Heart,1952-04-03,117.0,,,tt0045333,,"Jane Froman (Susan Hayward), an aspiring songstress, lands a job in radio with help from pianist Don Ross (David Wayne), whom she later marries. Jane's popularity soars, and she leaves on a European tour... but her plane crashes in Lisbon, and she is partially crippled. Unable to walk without crutches, Jane nevertheless goes on to entertain the Allied troops in World War II.",0,0,With a Song in My Heart,en +52991,My Son John,1952-04-08,122.0,,,tt0044941,,"In this Cold War drama, a woman suspects her son is a Communist spy.",0,0,My Son John,en +55197,Flavor of Green Tea Over Rice,1952-10-01,115.0,,,tt0044982,,A childless middle-aged couple faces a marital crisis of sorts.,0,0,お茶漬けの味,ja +68822,Casque d'Or,1952-04-16,96.0,,,tt0043386,,"The year is 1898. A beautiful woman named Marie (also known as Casque d'Or) has fallen in love with a carpenter named Manda. The problem is that Marie is the girlfriend of a hoodlum in the Leca gang. So in order to have the lovely Marie, Manda faces and defies the gang and kills Leca. Soon after however, Manda is sent to the gallows.",0,0,Casque d'or,fr +38964,Stolen Face,1952-05-01,72.0,,,tt0045191,Treachery wears a stolen face!,A doctor changes a woman's face to match the one that broke his heart. Trouble starts when his love returns.,0,0,Stolen Face,en +50549,Belles on their Toes,1952-05-01,89.0,,,tt0044410,,"The ""Cheaper by the Dozen"" crew is back, sans Clifton Webb. Lillian is struggling to make ends meet without her husband's income, while Anne, Martha, and even Ernestine find romance.",0,0,Belles on their Toes,en +31713,The Narrow Margin,1952-05-03,71.0,,,tt0044954,A Fortune If They Seal Her Lips!...A Bullet If They Fail!,A tough cop meets his match when he has to guard a gangster's widow on a tense train ride.,0,0,The Narrow Margin,en +25551,The Sniper,1952-05-09,88.0,,,tt0045161,To the police -- Stop me.,"Eddie Miller struggles with his hatred of women, he's especially bothered by seeing women with their lovers. He starts a killing spree as a sniper by shooting women from far distances. In an attempt to get caught, he writes an anonymous letter to the police begging them to stop him.",0,0,The Sniper,en +207178,The Lion and the Horse,1952-05-16,83.0,,,tt0044838,King of the wild beasts against king of wild horses!,"After selling it to a cruel rodeo owner, a cowboy attempts to buy back the wild stallion he snared.",0,0,The Lion and the Horse,en +103168,Apache Country,1952-05-30,62.0,,,tt0044367,SEE GENE'S SIX-SHOOTERS NAIL WHITE LOOTERS BEHIND APACHE LINES!,A criminal gang provokes the local Apaches in order to divert the authorities' attention from their own activities.,0,0,Apache Country,en +81604,The Scarlet Flower,1952-06-05,42.0,,,tt0949326,,"Before going on an overseas journey, a merchant father asks his three daughters what they would like him to bring back for them. The eldest asks for a shining tiara, the middle asks for a frame through which her face would always appear young, and the youngest (Nastenka) asks her father to bring her a beautiful scarlet flower like one which she saw in her dreams. Her elder sisters laugh at this simple wish. The father's trip is successful and he finds everything that he came for, with the exception of Nastenka's scarlet flower. Nevertheless, the ship heaves off and they begin to head back while the father scans the lands around him for a scarlet flower.",0,0,Аленький цветочек,ru +155605,Youth of the Son,1952-06-25,44.0,,,tt0134833,,"The story of a father and two teenaged sons, and the rivalry between the two siblings as they begin to discover the attraction of girls.",0,0,Musuko no seishun,ja +252916,Here Come the Marines,1952-06-29,66.0,,415931,tt0044700,THEY'RE LOADED FOR LAUGHS...WITH BOMBS AND BLONDES!,"After Slip is drafted into the Marines, the rest of the gang volunteers so they can be with him. Sach discovers that the colonel knew his father and he is promoted. During a drill that he is putting the rest of the gang through, they find a soldier left for dead on the side of the road. Slip discovers a playing card next to the marine and traces it to Jolly Joe Johnson's gambling house. They suspect that the gambling house is cheating and set out to uncover the proof.",0,0,Here Come the Marines,en +24005,Don't Bother to Knock,1952-07-18,76.0,,,tt0044557,...a wicked sensation as the lonely girl in room 809!,"Jed, an airline pilot, (Widmark) is resting in a hotel when he notices Nell (Monroe), a young woman babysitting for a wealthy couple. As Jed gets to know Nell better he realises that the woman is not as stable as perhaps she should be. A unique thriller featuring a rare dramatic performance from Monroe, illustrating a broader range than most people might expect..",0,0,Don't Bother to Knock,en +84944,The White Reindeer,1952-07-25,74.0,,,tt0045283,,"Pirita and Aslak are newly married. However, Aslak is a shepherd and his work takes him away from home for long periods of time, leaving his wife lonely and heartbroken. In an effort to tempt him back, Pirita visits the local shaman, with unexpected and deadly results.",0,0,Valkoinen peura,fi +61430,Affair in Trinidad,1952-07-29,98.0,,,tt0044331,"""You weren't the first... and you won't be the last!""",A nightclub singer enlists her brother-in-law to track down her husband's killer.,0,0,Affair in Trinidad,en +60547,The Duel at Silver Creek,1952-08-01,77.0,,,tt0044573,Gun Against Gun For The Rule Of The Town!,"A gang of claim jumpers is infesting the territory, gaining ownership of undermanned mining operations through extortion...and leaving no live witnesses. But one victim, quick-drawing gambler Luke Cromwell, escapes. Meanwhille, Marshal Lightnin' Tyrone is also after the gang; recovering from one raid, he meets femme fatale Opal Lacy, who may not be healthy for him to know. When Luke, now calling himself the Silver Kid, joins forces with Marshal Tyrone, the gang had better watch out ...unless something drives a wedge between the new allies.",0,0,The Duel at Silver Creek,en +77057,Children of Hiroshima,1952-08-06,97.0,,,tt0044497,,"Shows the devastation caused by the Atomic bomb, and by use of a fictional storyline, portrays the struggle of the ordinary Japanese people in dealing with the aftermath.",0,0,原爆の子,ja +43367,The Big Sky,1952-08-19,140.0,,,tt0044419,Thiers the greatest adventure,Kirk Douglas stars as the determined leader of a band of Tennessee fur trappers who set out to explore the uncharted Missouri river in 1830 and find them selves battling American Indians.,140,0,The Big Sky,en +54832,Monsieur Taxi,1952-09-03,0.0,,,tt0044918,,,0,0,Monsieur Taxi,fr +38404,Bela Lugosi Meets a Brooklyn Gorilla,1952-09-04,74.0,,,tt0044406,A horror film that will stiffen you with laughter!,Two goofy entertainers meet a mad scientist on a jungle island.,0,0,Bela Lugosi Meets a Brooklyn Gorilla,en +180819,Feudin' Fools,1952-09-21,63.0,,415931,tt0044612,,"Sach discovers that he is heir to a farm in rural hillbilly country. He and the boys go to the farm to check it out, and find themselves mixed up with feuding hillbillies and a gang of bank robbers.",0,0,Feudin' Fools,en +4459,Night Without Sleep,1952-09-26,77.0,,,tt0044967,,"Awaking one morning out of a drunken stupor, composer Richard Morton can't shake the feeling he has murdered a woman during the night.",0,0,Night Without Sleep,en +46014,Just for You,1952-09-27,104.0,,,tt0044782,,"Jordan Blake (a widower) is a successful Broadway Producer who has always been to busy for his children, Barbara and Jerry. Girlfriend, Carolina a musical comedy star, urges Jordan to take his kids on a vacation and get to know them before they are all grown up. Is Jordan already too late?",0,0,Just for You,en +11570,The Crimson Pirate,1952-09-27,105.0,,,tt0044517,MAN OF NINE LIVES AND 1000 SURPRISES!,"Burt Lancaster plays a pirate with a taste for intrigue and acrobatics who involves himself in the goings on of a revolution in the Caribbean in the late 1700s. A light hearted adventure involving prison breaks, an oddball Scientist, sailing ships, naval fights, and tons of swordplay.",1850000,0,The Crimson Pirate,en +3782,Ikiru,1952-10-09,143.0,,,tt0044741,One of the Great Films of Our Time!,"Kanji Watanabe is a middle-aged man who has worked in the same monotonous bureaucratic position for decades. Learning he has cancer, he starts to look for the meaning of his life.",0,55240,生きる,ja +74436,The World in His Arms,1952-10-09,104.0,,,tt0045339,,"Gregory Peck is a boisterous sea captain in the Pacific Coast, circa 1850, who has a plan to buy Alaska from the Russians… if they don’t kill him first.",0,0,The World in His Arms,en +85494,Captive Women,1952-10-10,64.0,,,tt0044477,Women of the caves 1000 years from now!,"In a post-apocalyptic New York City, three tribes of mutants (the Norms, the Mutates and the Upriver people) battle each other to survive.",0,0,Captive Women,en +38417,The Thief,1952-10-15,85.0,,,tt0045230,,"1952 black and white Cold War spy film, entirely without dialog",0,0,The Thief,en +178587,The Happy Time,1952-10-30,94.0,,,tt0044687,,A violinist (Charles Boyer) and his brother (Louis Jourdan) guide one's son through his crush on the family maid in 1920s Ottawa.,0,0,The Happy Time,en +58757,Heidi,1952-11-13,100.0,,421605,tt0044696,,,0,0,Heidi,de +120932,Desperate Search,1952-11-19,73.0,,,tt0044543,,"A man (Howard Keel), his wife (Jane Greer) and his famous-aviator ex-wife (Patricia Medina) search for their two children lost with a cougar.",0,0,Desperate Search,en +37340,The Man Who Watched Trains Go By,1952-12-01,82.0,,,tt0046034,A Non-Stop Suspense Thriller,A meek teller thinks he's killed his boss. He flees with a box of cash hoping for a new life with his younger mistress.,0,0,The Man Who Watched Trains Go By,en +219335,The Witch Returns to Life,1952-12-05,74.0,,,tt0044974,,"An archaeological team unearths a body of a young woman, who was told to be a witch buried in the bog some 300 years ago. Soon a naked woman appears and drives the men of the village crazy...",0,0,Noita palaa elämään,en +1938,Angel Face,1952-12-10,92.0,,,tt0044357,She loved one man ... enough to KILL to get him!,An ambulance driver gets involved with a rich girl that might have a darker side.,0,0,Angel Face,en +46145,"Invasion, U.S.A.",1952-12-10,73.0,,,tt0044750,It will scare the pants off you!,A group of American witness the deadly invasion of the United States by the Soviet Union.,0,0,"Invasion, U.S.A.",en +51619,The Sound Barrier,1952-12-21,118.0,,,tt0044446,,Fictionalized story of British aerospace engineers solving the problem of supersonic flight.,0,0,The Sound Barrier,en +10910,Moulin Rouge,1952-12-23,119.0,,,tt0044926,"Wild, wicked, wonderful Paris...all her loves, ladies and lusty legends!",Fictional account of French artist Henri de Toulouse-Lautrec.,1500000,0,Moulin Rouge,en +40693,April in Paris,1952-12-24,94.0,,,tt0044370,Sparkling as Champagne! The Year's Musical Eye-ful!,"In search of an emissary to represent the American theater at an arts expo in Paris, a State Department bureaucrat (Ray Bolger) invites Ethel Barrymore to appear -- too bad her invitation is sent to chorus girl Ethel ""Dynamite"" Jackson (Doris Day) instead! Not one to look a gift horse in the mouth, Miss Jackson hightails it to Paris -- with the bureaucrat in pursuit. A plethora of song-and-dance numbers ensues in this Sammy Cahn-scored musical.",0,0,April in Paris,en +44631,Against All Flags,1952-12-24,83.0,,,tt0044333,,British Naval Officer (Errol Flynn) fights pirates on Madagascar.,0,0,Against All Flags,en +46586,The Gambler and the Lady,1952-12-26,72.0,,,tt0044649,Their wheel of fortune was spun by the cold steel of an automatic!,"A greedy but successful professional gambler wants to join the British Establishment when he falls in love with a blue-blooded lady. But first he must mend his ways and then dump his nightclub singer girl friend. She's not so easy to get rid of, neither is his past.",0,0,The Gambler and the Lady,en +238985,Hiawatha,1952-12-28,80.0,,,tt0044705,in all its natural beauty and COLOR!,A young Indian brave attempts to bring peace to two warring tribes.,0,0,Hiawatha,en +261508,The Tiger from Tjampa,1953-01-01,97.0,,,tt1250757,,"Set in the 1930s, and narrated like a ballad from the past, ""The Tiger from Tjampa"" tells of how a young man, Lukman, seeks to avenge his father’s murder by learning pencak silat, a traditional form of self defence, based on the movements of animals. The pencak silat seen in the film is regionally specific to West Sumatra. Silat in many other Indonesian films is often mixed with the kung fu of Hong Kong cinema.",0,0,Harimau Tjampa,id +146596,Gelosia,1953-01-01,0.0,,,tt0045807,,,0,0,Gelosia,it +23331,Planet Outlaws,1953-01-01,71.0,,,tt0046192,,"It is the story of an American soldier who wakes up in the future, it is the year 2500...",0,0,Planet Outlaws,en +148356,Don't Give Up the Sheep,1953-01-03,7.0,,,tt0045697,,"A sheepdog thwarts the efforts of a thieving wolf whose tricks include altering the time clock, hiding in a bush, imitating Pan, digging a tunnel, unleashing a wildcat and disguising himself as the dog's coworker.",0,0,Don't Give Up the Sheep,en +77645,The Redhead from Wyoming,1953-01-08,77.0,,,tt0045077,Queen of An Outlaw's Lair!,"In Wyoming Territory, a range war is brewing between entrenched cattle barons and new settlers. Cattle king Reece Duncan is opposed by ambitious gambler Jim Averell...",0,0,The Redhead from Wyoming,en +291907,Jealousy,1953-01-13,90.0,,,tt0046109,,Love triangle near roaring rapids. Two sisters fight for the attention of a handsome forester.,0,0,Mustasukkaisuus,en +41468,Last of the Comanches,1953-02-01,85.0,,,tt0044828,Ten men ... a woman ... and only a ghost of a chance !,"It's 1876 and all the Indians are at peace except the Comanches lead by Black Cloud. When Black Cloud wipes out a town, only six soldiers are left and they head for the nearest fort. In the desert they are reinforced by members of a stagecoach and find some water at a deserted mission. Pinned down by Black Cloud they send an Indian boy who was Black Cloud's prisoner on to the fort while they try to bargain with Black Cloud whom they learn is without water.",0,0,Last of the Comanches,en +42502,The Brute,1953-02-05,81.0,,,tt0044453,,"A tough young man, who helps to kick poor people out of their houses, falls in love with a girl. She lives with her father in the building about to be demolished.",0,0,El bruto,es +172908,Time Bomb,1953-02-05,72.0,,,tt0046432,Can they... will they... stop that TERROR ON A TRAIN,"When a saboteur places an explosive device on a train full of sea mines, the authorities call for bomb expert Peter Lyncort to diffuse the situation, unaware that he has explosive problems of his own.",0,0,Time Bomb,en +10693,Peter Pan,1953-02-05,77.0,,55422,tt0046183,It will live in your heart forever!,"Leaving the safety of their nursery behind, Wendy, Michael and John follow Peter Pan to a magical world where childhood lasts forever. But while in Neverland, the kids must face Captain Hook and foil his attempts to get rid of Peter for good.",4000000,87404651,Peter Pan,en +112244,She Was Like a Wild Chrysanthemum,1955-11-29,100.0,,,tt0048429,,"Now an old man, Masao returns to his childhood home and begins to recall his upbringing in this abandoned sector of Japan.",0,0,Nogiku no gotoki kimi nariki,ja +116160,Jalopy,1953-02-15,62.0,,415931,tt0045926,You'll Blow Your Gasket howling at these dizzy whizzes of the racing world!,"Those wacky Bowery Boys invent a superfast fuel, which will help them win an auto race (isn't this cheating?). However, the fuel is stolen by the bad guys just before the big race...",0,0,Jalopy,en +93863,The Lady Without Camelias,1953-02-27,105.0,,,tt0046313,,A new starlet is discovered and has ups and downs in Italian films.,0,0,La signora senza camelie,it +53210,Duck Amuck,1953-02-28,7.0,,,tt0045708,,"The short-tempered Daffy Duck must improvise madly as the backgrounds, his costumes, the soundtrack, even his physical form, shifts and changes at the whim of the animator.",0,0,Duck Amuck,en +80032,I Love Melvin,1953-03-20,77.0,,,tt0045899,Songs! Dances! Joy! as a boy promises to get his girl's picture on a LOOK magazine cover!,"Melvin Hoover, a budding photographer for Look magazine, accidentally bumps into a young actress named Judy LeRoy in the park. They start to talk and Melvin soon offers to do a photo spread of her. His boss, however, has no intention of using the photos. Melvin wants to marry Judy, but her father would rather she marry dull and dependable Harry Black. As a last resort, Melvin promises to get Judy's photo on the cover of the next issue of Look, a task easier said than done.",0,0,I Love Melvin,en +272663,Fort Vengeance,1953-03-28,75.0,,,tt0045785,Terror Outpost Of The Canadian Wilderness... where the Northwest Mounted's scarlet troopers faced the kill-mad hordes of Sitting Bull!,"Two brothers flee America and join the Canadian North West Mounted Police. One brother is good, the other bad, both men on a collision course just as trouble starts to brew with the Indians.",0,0,Fort Vengeance,en +41611,Jeopardy,1953-03-30,69.0,,,tt0045932,"A WOMAN IN ""JEOPARDY""",A woman is kidnapped when she goes to get help for her husband who is trapped on a beach with the tide coming in to surely drown him.,0,0,Jeopardy,en +10165,Fear and Desire,1953-04-01,62.0,,,tt0045758,Trapped... 4 Desperate Men and a Strange Half-Animal Girl!,"A ficticious war in an unidentified country provides the setting for this drama. Four soldiers survive the crash-landing of their plane to find themselves in a forest six miles behind enemy lines. The group, led by Lt. Corby, has a plan: They'll make their way to a nearby river, build a raft, and then, under cover of night, float back to friendly territory. Their plans for getting back safely are sidetracked by a young woman who stumbles across them as they hide in the woods, and by the nearby presence of an enemy general who one member of the group is determined to kill.",53000,0,Fear and Desire,en +74585,Indiscretion of an American Wife,1953-04-02,90.0,,,tt0046366,,"Prior to leaving by train for Paris, a married American woman tries to break off her affair with a young Italian in Rome's Stazione Termini.",0,0,Stazione Termini,it +33472,Abbott and Costello Go to Mars,1953-04-05,77.0,,,tt0045468,They're too wild for one world!,"Lester and Orville accidentally launch a rocket which is supposed to fly to Mars. Instead it goes to New Orleans for Mardi Gras. They are then forced by bank robber Mugsy and his pal Harry to fly to Venus where they find a civilization made up entirely of women, men having been banished.",0,0,Abbott and Costello Go to Mars,en +45679,The System,1953-04-18,90.0,,,tt0046389,The shakedown shootout monster-reign that crimedom called... The System,A gambling boss is pressured by the law and press when a crusade is started against him after one of his collectors becomes a killer.,0,0,The System,en +20424,Invaders from Mars,1953-04-22,78.0,,,tt0045917,NATURAL or SUPERNATURAL?,"In the early hours of the night, young David Maclean sees a flying saucer land and disappear into the sand dunes just beyond his house. Slowly, all of the adults, including his once loving parents, begin to act strangely.",0,0,Invaders from Mars,en +93562,Law and Order,1953-05-13,80.0,,,tt0045991,From Dodge City to Tombstone...His Guns Were the Only Law!,Frame Johnson's attempt to settle down in Tombstone is interrupted when a mob tries to mete out some frontier justice.,0,0,Law and Order,en +36554,The Desert Rats,1953-05-20,88.0,,,tt0045679,They crawled their way across the blazing sands of Africa... to turn disaster into victory!,Richard Burton plays a Scottish Army officer put in charge of a disparate band of ANZAC troops on the perimeter of Tobruk with the German Army doing their best to dislodge them,0,0,The Desert Rats,en +63178,Toto in Color,1953-05-21,104.0,,421566,tt0045247,,"'Totò a colori' was the first Italian movie to be shot with a colour film, but the sensitivity was very low (6 asa!) so the actors had to act under a very strong lighting and high temperature.",0,0,Totò a Colori,it +43346,Genevieve,1953-05-28,86.0,,,tt0045808,,Two friends driving in the London to Brighton vintage car rally bet on which of them will be the first to arrive back home.,0,0,Genevieve,en +44536,Sailor of the King,1953-06-11,83.0,,,tt0046267,,"A British naval officer has a brief affair with a woman in England and never knows that she bears him a son. 20 years later the boy is on a ship under his command when he is tracking a German Raider. When the boy is captured after his ship is sunk, he finds a way to slow the German's progress while a lethal hunt for him goes on.",0,0,Sailor of the King,en +199463,Barabbas,1953-06-13,119.0,,,tt0045541,,The story about the thief who didn't get crucified because Jesus was choosen to take his place.,0,0,Barabbas,en +28775,The Neanderthal Man,1953-06-19,78.0,,,tt0046121,HALF MAN...HALF BEAST...He held them all in the grip of deadly terror...nothing could keep him from this woman he claimed as his own!,"A scientist develops a formula which will cause animals to regress to the form of their primitive ancestors, and tries it on himself with disastrous results.",0,0,The Neanderthal Man,en +120615,Arena,1953-06-24,83.0,,,tt0045515,FIRST FULL-LENGTH WESTERN in 3 DIMENSION!,"Left by his wife (Polly Bergen), a vain rodeo star (Gig Young) picks up a floozy (Jean Hagen) and rides a bad Brahman bull.",0,0,Arena,en +63858,All I Desire,1953-06-25,79.0,,,tt0045492,Now He Knew Her as Other Men Had!,"In 1910, a wayward mother re-visits the family she deserted.",0,0,All I Desire,en +104776,Ana-ta-han,1953-06-28,92.0,,,tt0046712,,Twelve Japanese seamen are stranded on an abandoned and forgotten island called Anatahan for seven tense years of internal strife.,0,0,Anatahan,ja +242631,So This Is Love,1953-07-15,101.0,,,tt0046334,,"Film biography of opera star Grace Moore, released in 1953.",0,0,So This Is Love,en +46193,"Ride, Vaquero!",1953-07-17,90.0,,,tt0046239,The Outlaw And The Beauty!,Ranchers in New Mexico have to face Indians and bandits.,0,0,"Ride, Vaquero!",en +133716,Valley of Head Hunters,1953-07-29,67.0,,98180,tt0046491,SAVAGE INTRIGUE! DEADLY ADVENTURE!,Bad guys trying to steal the mineral rights away from African natives find it isn't so easy fighting Jungle Jim.,0,0,Valley of Head Hunters,en +357130,Tom and Jerry,1955-11-30,30.0,,,tt0696462,,A priest tries to save a marriage that appears to be headed for the rocks in time for Christmas.,0,0,Tom and Jerry,en +3023,Abbott and Costello Meet Dr. Jekyll and Mr. Hyde,1953-08-01,76.0,,,tt0045469,All New ! All Wild ! All Fun !,"Abbott & Costello are two bumbling (naturally) American cops, on exchange in London, hunting for Mr. Hyde, the monster that has been terrorizing the city.",0,0,Abbott and Costello Meet Dr. Jekyll and Mr. Hyde,en +61049,Arrowhead,1953-08-03,105.0,,,tt0045518,,Director Charles Marquis Warren's 1953 western stars Charlton Heston and Jack Palance.,0,0,Arrowhead,en +29376,The Band Wagon,1953-08-07,112.0,,,tt0045537,Get Aboard!,A pretentiously artistic director is hired for a new Broadway musical and changes it beyond recognition.,0,0,The Band Wagon,en +38808,The Man from the Alamo,1953-08-07,79.0,,,tt0046035,Out Of Texas' Bravest Hour... Came The Man They Called The Coward,"During the war for Texas independence, one man leaves the Alamo before the end (chosen by lot to help others' families) but is too late to accomplish his mission, and is branded a coward. Since he cannot now expose a gang of turncoats, he infiltrates them instead. Can he save a wagon train of refugees from Wade's Guerillas?",0,0,The Man from the Alamo,en +137504,"Older Brother, Younger Sister",1953-08-19,86.0,,,tt0045507,,"The eldest daughter of a rural family Mon returns home from Tokyo pregnant after an affair with a college student Kobata, which causes a scandal that will threaten the marriage prospects of the younger sister San, in her cash-strapped family. The ill-tempered eldest brother Inokichi decides to take on the role of disciplinarian, with harrowing results.",0,0,あにいもうと,ja +798,Pünktchen und Anton,1953-08-26,91.0,,,tt0046218,,Pünktchen und Anton is a 1953 German film based on the children novel from Erich Kastner about two women who despite all the oppositions together go from chubby to thin.,0,0,Pünktchen und Anton,de +225244,Hokuspokus,1953-08-31,,,,tt0045880,,,0,0,Hokuspokus,de +177104,Napoletani a Milano,1953-09-05,0.0,,,tt0046120,,,0,0,Napoletani a Milano,it +57996,Neapolitan Turk,1953-09-16,90.0,,421566,tt0046470,,,0,0,Un turco napoletano,it +153228,The Moonlighter,1953-09-19,77.0,,,tt0046095,THE MOST MAN-WOMAN EXCITEMENT EVENT TO EXPLODE OFF THE SCREEN IN Natural Vision 3DIMENSION!,A savage story of hate turned love and frenzy turned loose!,0,0,The Moonlighter,en +98364,The Actress,1953-09-25,90.0,,,tt0045471,There's hope and heart-ache in the adventures of a stage-struck daughter!,The true story of Ruth Gordon's early struggles on the road to stage stardom.,0,0,The Actress,en +43354,The Captain's Paradise,1953-09-28,94.0,,,tt0045607,He makes two-timing an art...and gets away with it,"Mediterranean ferryboat captain Henry St James has things well organized - a loving and very English wife Maud in Gibraltar, and the loving if rather more hot-blooded Mistress, Nita in Tangiers. A perfect life. As long as neither woman decides to follow him to the other port.",0,0,The Captain's Paradise,en +43342,Donovan's Brain,1953-09-30,83.0,,,tt0045699,A dead man's brain in a hidden laboratory told him to KILL... KILL... KILL,"A scientist takes a the brain of dead man and revives it via electrodes as it lays suspended in a tank of liquid. Soon, the brain grows to possess enormous psychic powers and inflicts its personality upon the doctor who saved creating a ""Jekyll and Hyde"" paradigm.",0,0,Donovan's Brain,en +99004,Carne de horca,1953-10-08,93.0,,,tt0045608,,On the XIX Century in Sierra Morena in Serranía de Ronda spread bandits thant cause panic in the cities robbing and killing travellers.,0,0,Carne de horca,en +18148,Tokyo Story,1953-11-03,136.0,,,tt0046438,Isn't Life Depressing?,"An old couple visit their children and grandchildren in the city, but the children have little time for them.",0,0,東京物語,ja +91419,All the Brothers Were Valiant,1953-11-13,101.0,,,tt0045494,MGM's Great Technicolor Romance!,"Sea-faring saga of two brothers (Robert Taylor, Stewart Granger) and the woman they both love.",0,0,All the Brothers Were Valiant,en +198600,Three Sailors and a Girl,1953-11-23,95.0,,,tt0046424,WARNER BROS.' HIP-SWINGIEST MUSICAL SHINDIG OF 'EM ALL!,A group of sailors invest in a musical revue.,0,0,Three Sailors and a Girl,en +184351,The Diamond Queen,1953-11-28,80.0,,,tt0045687,Queen of a Jungle Dynasty but Slave of Love!,A French jeweler travels to India in search of a fabulous diamond.,0,0,The Diamond Queen,en +174195,Private Eyes,1953-12-06,64.0,,415931,tt0046210,YOU'LL YOCK An YOWL...AS THOSE HALF-WIT HAWKSHAWS GO ON THE PROWL FOR A MISSING BLONDE MINX IN MINK!,"After being punched in the nose, Sach finds out that he has the ability to read minds. Slip and the gang start up a detective agency try to cash in on Sach's new powers.",0,0,Private Eyes,en +40744,Wicked Woman,1953-12-09,77.0,,,tt0047676,THE STORY NO ONE DARED TO TELL - UNTIL NOW !,A trashy blonde lures a saloon owner away from his wife.,0,0,Wicked Woman,en +122221,The Limping Man,1953-12-11,76.0,,,tt0046001,,An American (Lloyd Bridges) returns to his London lover (Moira Lister) and joins the search for a limping sniper.,0,0,The Limping Man,en +168496,Act of Love,1953-12-17,108.0,,,tt0046480,WANTED for desertion! WANTED for questioning!...WANTING only each other!,An American soldier romances a beautiful Parisian during the final days of World War II.,0,0,Un acte d'amour,fr +19957,Knights of the Round Table,1953-12-22,115.0,,,tt0045966,All the glory and splendor of King Arthur's court,"In Camelot, kingdom of Arthur and Merlin, Lancelot is well known for his courage and honor. But one day he must quit Camelot and the Queen Guinevere's love, leaving the Round Table without protection.",0,0,Knights of the Round Table,en +44140,Miss Sadie Thompson,1953-12-23,91.0,,,tt0046076,RITA TURNS ON THE HEAT IN 3D,"Sadie Thompson winds up stranded on an island and while her boat is being quarantined, she manages to stir up the blood of every marine on the base.",0,0,Miss Sadie Thompson,en +57575,The Last Time I Saw Paris,1954-01-01,116.0,,,tt0047162,The sensational story of youth on a fling,"Charles returns to Paris to reminisce about the life he led in Paris after it was liberated. He worked on ""Stars and Stripes"" when he met Marion and Helen. He would marry and be happy staying in Paris after his discharge and working for a news organization. He would try to write his great novel and that would come between Charlie, his wife and his daughter",0,105,The Last Time I Saw Paris,en +37126,Impulse,1954-01-01,80.0,,,tt0047112,... with a woman like her it could lead to Murder!,"An American realtor living in England is dissatisfied with what he believes to be his humdrum life. One weekend while his wife is out of town, he gives a ride to a woman he sees stranded on the road. One thing leads to another, and he soon finds himself enmeshed in a plot involving a diamond robbery, gangsters and murder.",0,0,Impulse,en +58007,Poverty and Nobility,1954-01-01,95.0,,421566,tt0047238,,,0,0,Miseria e Nobiltà,it +10178,The Caine Mutiny,1954-06-24,124.0,,,tt0046816,As big as the ocean!,"When a US Naval captain shows signs of mental instability that jeopardizes the ship, the first officer relieves him of command and faces court martial for mutiny.",2000000,21750000,The Caine Mutiny,en +60551,War Arrow,1954-01-01,78.0,,,tt0046532,Indian tomahawk and cavalry saber fighting side-by-side for the glory of the West!,"A thrilling Cavalry-versus-Indians adventure starring Jeff Chandler as an Army official recruiting Seminole allies, against his superior's wishes, to stop a planned Kiowa attack.",0,0,War Arrow,en +19618,Crime Wave,1954-01-12,73.0,,,tt0046878,Before your shocked eyes-- the city blasted SIN-SIDE OUT!,Reformed parolee Steve Lacey is caught in the middle when a wounded former cellmate seeks him out for shelter. The other two former cellmates then attempt to force him into doing a bank job.,0,0,Crime Wave,en +46492,Sound of the Mountain,1954-01-15,96.0,,,tt0047682,,An ingratiating bride develops warm ties to her father-in-law while her cold husband blithely slights her for another woman.,0,0,Yama no oto,ja +108582,Go Man Go,1954-01-27,82.0,,,tt0047032,,The story of Abe Saperstein and the creation of the Harlem Globetrotters.,0,0,Go Man Go,en +124527,Face the Music,1954-01-29,84.0,,,tt0046784,Excitement! Thrills! Suspense! will grip you like never before!,"A famed trumpet player is suspected of murdering a blues singer. Using only two minor clues, he narrows the suspects to four people, but only after surviving poison placed on the mouthpiece of his trumpet!",0,0,Face the Music,en +108345,The Command,1954-02-13,94.0,,,tt0046865,,"Once the commanding officer of a cavalry patrol is killed, the ranking officer who must take command is an army doctor.",0,0,The Command,en +75532,Dov'è la libertà...?,1954-02-25,93.0,,421566,tt0044562,,"A barber, murderer because of jealousy, spends twenty years in jail. He cannot, however adjust himself to a changed world and to the hypocrisy of his own relatives and decides to return behind bars.",0,0,Dov'è la libertà...?,it +47312,The Good Die Young,1954-03-02,100.0,,,tt0047040,,"1954 British crime thriller by Lewis Gilbert, based on a novel by American novelist Richard Macaulay. Four men in post-war London, two Brits and two Americans, feel forced to turn to crime by their financial problems, and decide to rob a mail van together.",0,0,The Good Die Young,en +61988,The Naked Jungle,1954-03-03,95.0,,,tt0047264,The picture about the Marabunta!,"The Leiningen South American cocoa plantation is threatened by a 2-mile-wide, 20-mile-long column of army ants.",0,0,The Naked Jungle,en +10973,Creature from the Black Lagoon,1954-03-05,79.0,,221537,tt0046876,From the Amazon's forbidden depths came the Creature from the Black Lagoon,"A scientific expedition searching for fossils along the Amazon River discover a prehistoric Gill-Man in the legendary Black Lagoon. The explorers capture the mysterious creature, but it breaks free. The Gill-Man returns to kidnap the lovely Kay, fiancée of one of the expedition, with whom it has fallen in love.",0,1300000,Creature from the Black Lagoon,en +34652,Drive a Crooked Road,1954-03-10,83.0,,,tt0046935,Why would a dame like her go for a guy like me?,A mechanic gets caught up with the mob when he falls for a gangster's girlfriend.,0,0,Drive a Crooked Road,en +174278,Duffy of San Quentin,1954-03-16,78.0,,,tt0046945,New! True! Sensational!,San Quentin's new warden crusades for reform and for a framed inmate who loves a nurse.,0,0,Duffy of San Quentin,en +38962,Murder by Proxy,1954-03-19,87.0,,,tt0046792,,"When a beautiful girl offers Casey Morrow a lot of money for a mystery job, Morrow doesn't ask too many questions. But when the girl's father is found murdered the following day and Morrow's coat is soaked with blood perhaps a little more caution should have been exercised. An intriguing story of deception, greed and immorality.",0,0,Murder by Proxy,en +331958,"Λατέρνα, Φτώχεια και Γαρύφαλλο",1954-03-31,0.0,,,tt0135520,,,0,0,"Λατέρνα, Φτώχεια και Γαρύφαλλο",el +274131,Forbidden,1954-04-01,0.0,,,tt0047372,,"Don Paolo, a young parson troubled by his love for Agnese, tries to make peace in a little village in Sardinia where two families are at war.",0,0,Proibito,en +16410,Hobson's Choice,1954-04-19,107.0,,,tt0047094,,"Henry Hobson owns and tyrannically runs a successful Victorian boot maker’s shop in Salford, England. A stingy widower with a weakness for overindulging in the local Moonraker Public House, he exploits his three daughters as cheap labour. When he declares that there will be ‘no marriages’ to avoid the expense of marriage settlements at £500 each, his eldest daughter Maggie rebels.",0,0,Hobson's Choice,en +142770,True Friends,1954-04-20,102.0,,,tt0047650,,Story about 3 childhood friends who found each other later in life and decided to rafting on one of the Moscovian rivers.,0,0,Верные друзья,ru +138486,Arrow In The Dust,1954-04-25,79.0,,,tt0046722,Ablaze with the gun-thundering terrors of the West's most violent days!,"Director Lesley Selander's 1954 western stars Sterling Hayden, Coleen Gray, Keith Larsen, Tom Tully, Lee Van Cleef and Jimmy Wakely.",0,0,Arrow In The Dust,en +24212,Devil Girl from Mars,1954-05-01,77.0,,,tt0046907,Invasion from Outer Space!...Sights too weird to imagine! Destruction too monstrous to escape!,"An uptight, leather-clad female alien, armed with a raygun and accompanied by a menacing robot, comes to Earth to collect Earth's men as breeding stock",0,0,Devil Girl from Mars,en +72313,Gorilla at Large,1954-05-01,83.0,,,tt0047041,Get out of his way - Before it's too late!,"At a carnival called the Garden of Evil, a man is murdered, apparently by a gorilla...or someone in a gorilla suit.",0,0,Gorilla at Large,en +72823,The Miami Story,1954-05-03,75.0,,,tt0047232,How Miami put the big heat on the Mob!,A crime story taking place in the famous Florida city...,0,0,The Miami Story,en +91477,Men of the Fighting Lady,1954-05-07,79.0,,,tt0047230,,M-G-M presents the heroic story of what happened to the MEN OF THE FIGHTING LADY,0,0,Men of the Fighting Lady,en +28363,The Mad Magician,1954-05-19,72.0,,,tt0047200,3D THRILL! Fuel for the human bonfire!,"Vincent Price plays Gallico the great, an inventor of stage-magic effects who aspires to become a star in his own right. Just before his first performance, his act is shut down by capricious manager Ormond who wants Gallico's brilliant buzzsaw effect for the act of the Great Rinaldi, an established star. With this defeat, and the humiliation of having already lost his wife Claire to his rival, Gallico goes insane and uses the buzzsaw to decapitate his manager.",0,0,The Mad Magician,en +63333,Gog,1954-06-04,85.0,,,tt0047033,"... and then, without warning, the machine became a frankenstein of steel!",A mechanical brain is programmed to sabotage the government's secret lab while working on the first space station.,250000,0,Gog,en +68191,The Student Prince,1954-06-15,107.0,,,tt0047537,In COLOR Gaiety!,A prince goes to University & learns how to become more human. An added bonus is the quite wonderful music.,0,0,The Student Prince,en +74753,The Sleeping Tiger,1954-06-21,89.0,,,tt0047505,,A petty thief breaks into the home of a psychiatrist and gets caught in a web of a doctor who wishes to experiment on him and a doctor's wife who wishes to seduce him.,0,0,The Sleeping Tiger,en +87936,Beautiful Stranger,1954-07-13,89.0,,,tt0047625,When A Dame Has Too Many Men On A String - The Game Could End In A Clinch Or A Killing!,"An ex-chorus girl (Ginger Rogers) lives on the Riviera, supported by a married man (Stanley Baker) she doesn't know is a crook.",0,0,Beautiful Stranger,en +16563,Seven Brides for Seven Brothers,1954-07-22,102.0,,,tt0047472,"LUSTY, MIRTHFUL GIRL-STEALING MUSICAL! . . . with Seven Great Songs!","Things are different for the Pontipee men now that big brother Adam's fetched a bride and brought her to their cabin. Indeed, the unwed brothers are so inspired they raid the town and carry off brides of their own!",0,5000000,Seven Brides for Seven Brothers,en +27443,Silver Lode,1954-07-23,81.0,,,tt0047495,,"Dan Ballard, a respected citizen in the western town of Silver Lode, has his wedding interrupted by four men led by Ned McCarthy, an old acquaintance who, as a US Marshal, arrests Ballard for the murder of his brother and the theft of $20,000. Ballard seeks to stall McCarthy while tracking down evidence that will prove his innocence.",0,0,Silver Lode,en +61070,Pekka ja Pätkä lumimiehen jäljillä,1954-07-30,,,,tt0047338,,,0,0,Pekka ja Pätkä lumimiehen jäljillä,fi +120259,About Mrs. Leslie,1954-08-03,104.0,,,tt0046676,...and the man she never quite married,"A lonely, unhappy owner of a Beverly Hills boarding house reflects on her lonely, unhappy life and the lonely, unhappy man she once loved. Director Daniel Mann's 1954 drama about lonely, unhappy people stars Shirley Booth, Robert Ryan, Alex Nicol, Marjie Millar, Eileen Janssen, Percy Helton, Ray Teal, Maidie Norman, Mabel Albertson, Ellen Corby, Harry Morgan, James Bell, Virginia Brissac, Laura Elliott, Philip Ober, Nana Bryant and Ian Wolfe.",0,0,About Mrs. Leslie,en +31555,Pushover,1954-08-06,88.0,,,tt0047377,This year the great suspense drama is PUSHOVER The Story of temptation,A police detective falls for the bank robber's girlfriend he is supposed to be tailing.,0,0,Pushover,en +114499,The Vanishing Prairie,1954-08-17,71.0,,,tt0047642,A tribute to nature untouched by today.,Story of the American Prairie as it was when vast herds of bison and elk grazed.,0,0,The Vanishing Prairie,en +24973,The Egyptian,1954-08-25,139.0,,,tt0046949,"To Nefer, shameless temptress of Babylon, he surrendered his parents' hope of immortality!","In eighteenth-dynasty Egypt, Sinuhe, a poor orphan, becomes a brilliant physician and with his friend Horemheb is appointed to the service of the new Pharoah. Sinuhe's personal triumphs and tragedies are played against the larger canvas of the turbulent events of the 18th dynasty. As Sinuhe is drawn into court intrigues he learns the answers to the questions he has sought since his birth.",5000000,15000000,The Egyptian,en +30034,Shield for Murder,1954-08-27,82.0,,,tt0047479,"If ever a picture was crammed with guts, this is it.",A crooked detective masterminds a robbery then fights to keep his money.,0,0,Shield for Murder,en +188392,Fright to the Finish,1954-08-27,6.0,,,tt0150648,,"Olive is reading ghost stories to the boys. Popeye scoffs; Bluto decides to take advantage of this by staging various pranks (a headless man, an animated skeleton, and a sheet-over-balloon ghost). He pins the blame on Popeye and then goes to comfort Olive. Popeye retaliates by turning invisible, thanks to a jar of vanishing cream.",0,0,Fright to the Finish,en +24442,The Black Shield Of Falworth,1954-09-02,99.0,,,tt0046789,,"In the days of King Henry IV,stalwart young Myles and his sister Meg have been raised as peasants,without any knowledge of who their father really was. But one day they journey to Macworth castle. There Myles falls in love with the Macworth's daughter Anne,makesfriends and enemies,and learns to be a knight.",0,0,The Black Shield Of Falworth,en +43195,Senso,1954-09-02,118.0,,,tt0047469,,A troubled and neurotic Italian Countess betrays her entire country for a self-destructive love affair with an Austrian Lieutenant.,0,0,Senso,it +18283,Brigadoon,1954-09-08,108.0,,,tt0046807,NOW BIGGER THAN EVER IN THE BEAUTY OF COLOR!,"Americans Jeff and Tommy, hunting in Scotland, stumble upon a village - Brigadoon. They soon learn that the town appears once every 100 years in order to preserve its peace and special beauty. The citizens go to bed at night and when they wake up, it's 100 years later. Tommy falls in love with a beautiful young woman, Fiona, and is torn between staying or going back to his hectic life in New York.",0,0,Brigadoon,en +107035,Chronicle of Poor Lovers,1954-09-15,0.0,,,tt0046881,,,0,0,Cronache di poveri amanti,it +30036,Rogue Cop,1954-09-17,92.0,,,tt0047424,Temptation is a thing called money and a red-lipped blonde !,A police detective on the take tries to catch his brother's killer.,0,0,Rogue Cop,en +74718,O Costa d'África,1954-09-19,90.0,,,tt0046873,,"Costa is travelling from Africa to London, and wishes very much to his nephew Amadeu, and see by himself how well he has been invested large sums of money he is been sending him. Amadeu 'borrows' for 24 hours a wife, a villa, a car, and a servant - for he has been lies to his uncle all the time. All goes well. But, Costa decides to prolong his stay for two weeks...",0,0,O Costa d'África,en +31372,Samurai I: Musashi Miyamoto,1954-09-26,93.0,,102452,tt0047444,,"Struggling to elevate himself from his low caste in 17th century Japan, Mayamoto trains to become a mighty samurai warrior.",0,0,宮本武蔵,ja +11402,The Belles of St. Trinian's,1954-09-28,91.0,,12077,tt0046766,,"Story of manic schoolgirls who are more interested in racing form than books as they try to get-rich-quick, aided by the head-mistress' brother, played by Alastair Sim, who also plays the head-mistress.",0,0,The Belles of St. Trinian's,en +19430,08/15,1954-09-30,95.0,,59009,tt0046671,,No overview found.,0,0,08/15,de +163333,Monsieur Ripois,1954-09-30,100.0,,,tt0047243,,"From the Louis Hemon novel ""M. Ripois and His Nemesis"" about Andre Ripois, a philanderer in pursuit of love and riches from Paris to London. Andre is breaking up with his wife, Catherine, over his attentions to her best friend Patricia. While Catherine is out arranging the divorce, Andre, just to keep in practice, hits on the girl upstairs, Diana and then turns his attention back to Patricia, who he tricks into having dinner at his flat on the pretext that Catherine will be there. When he cannot make any progress with her via his usual tactics, he tries to arouse her pity be telling her of his past. In his early, impoverished days in London, he made love to his boss Anne but her dreadful cooking drove him away. Next came Norah who he picked up on a bus and took to his flat and told her about his make-believe inheritance, but she insisted on marriage first, which was not in his plans",0,0,Monsieur Ripois,fr +51044,Carmen Jones,1954-10-27,105.0,,,tt0046828,,"Version of the Bizet opera set in World War II, with new lyrics and an African-American cast.",750000,0,Carmen Jones,en +41030,The Snow Creature,1954-11-01,71.0,,,tt0047507,"Himalayan Monster captured 20,000 Feet above the Earth!","A botanical expedition to the Himalayas captures a Yeti and brings it back alive to Los Angeles, where it escapes and runs amok, seeking food.",0,0,The Snow Creature,en +153266,Happy New York,1997-09-27,95.0,,,tt0120261,,Life and adventures of a few Polish immigrants in New York.,0,0,Szczęśliwego Nowego Jorku,pl +1678,Godzilla,1954-11-03,96.0,,374509,tt0047034,It's Alive!,"Japan is thrown into a panic after several ships explode and are sunk near Odo Island. An expedition to the island led by paleontologist Professor Kyohei Yemani soon discover something more devastating than imagined in the form of a 164 foot tall monster whom the natives call Gojira. Now the monster begins a rampage that threatens to destroy not only Japan, but the rest of the world as well.",1000000,0,ゴジラ,ja +109018,Athena,1954-11-04,95.0,,,tt0046728,,"A stuffy young lawyer's outlook on life drastically changes when he meets a perky health food enthusiast and her wacky family. This 1954 MGM musical, directed by Richard Thorpe, stars Jane Powell, Edmund Purdom, Debbie Reynolds, Vic Damone, Louis Calhern, Evelyn Varden, Linda Christian and Steve Reeves.",0,0,Athena,en +31042,Target Earth,1954-11-07,75.0,,,tt0047559,Raw Panic The Screen Never Dared Reveal!,"Giant robots from Venus invade Chicago. Stranded in the deserted city are Frank and Nora (who has recently attempted suicide). They meet a celebrating couple at a café, Vicki Harris and Jim Wilson. The quartet escape the robot patrol and take refuge in a large hotel. There, they encounter a new danger in Davis, a psychopathic killer.",100000,0,Target Earth,en +80316,Phffft!,1954-11-10,88.0,,,tt0047349,It's a ph-f-f-frolic about man and mate from moonlight to mayhem!,"When their marriage finally goes ""phffft!"", Nina and Robert get a divorce - only to discover that, like it or not, some people are just meant to be together!",0,0,Phffft!,fr +86608,Track of the Cat,1954-11-27,102.0,,,tt0047603,Human Emotion Stripped Raw!,"A family saga: In a stunning mountain valley ranch setting near Aspen, complex and dangerous family dynamics play out against the backdrop of the first big snowstorm of winter and an enormous panther with seemingly mythical qualities which is killing cattle.",0,0,Track of the Cat,en +43340,Young at Heart,1954-12-01,117.0,,,tt0047688,,"When Alex enters the lives of the musical Tuttle family, each of the three daughters falls for him. He is charming, good looking and personable. Laurie and Alex seem made for each other and become engaged. When Barney comes into the picture to help Alex with some musical arrangements matters become complicated. He is seen as a challenge by Laurie, who can't believe anyone could be as cynical, and she is more than a match for his gloomy outlook on life.",0,0,Young at Heart,en +94176,Destry,1954-12-01,95.0,,,tt0046906,"From the roaring , raucous, rowdy pages of the best-loved legend of the West!","Western remake of ""Destry Rides Again"", starring Audie Murphy, Mari Blanchard, Thomas Mitchell, Lori Nelson and Lyle Bettger.",0,0,Destry,en +21468,There's No Business Like Show Business,1954-12-16,117.0,,,tt0047574,,"Molly and Terry Donahue, plus their three children, are The Five Donahues. Son Tim meets hat-check girl Vicky and the family act begins to fall apart.",0,0,There's No Business Like Show Business,en +45213,French Cancan,1954-12-27,102.0,,,tt0046998,,A comedy/drama about a world-weary impresario who transforms a laundress into a theatrical star.,0,0,French Cancan,fr +82470,The Art of Getting Along,1954-12-28,0.0,,,tt0047839,,The Art of Getting Along (Italian: L'arte di arrangiarsi) is a 1954 comedy film directed by Luigi Zampa and starring Alberto Sordi,0,0,L'arte di arrangiarsi,it +11848,Animal Farm,1954-12-29,72.0,,,tt0047834,He's got the world in an UPROAR!,A successful farmyard revolution by the resident animals vs. the farmer goes horribly wrong when corrupt pigs hijack it for their personal gain.,0,0,Animal Farm,en +33224,Black Tuesday,1954-12-31,80.0,,,tt0046790,The most ruthless Robinson of all time!,"Vicious gangster Vincent Canelli pulls off a daring prison escape just moments before going to the electric chair, taking with him Peter Manning – a bank robber and cop killer who was to die right after him. Taking several hostages along, they try to get their hands on the loot from Manning’s robbery to finance their escape from the country.",0,0,Black Tuesday,en +79025,A Hero of Our Times,1955-01-01,85.0,,,tt0048039,,"Alberto Menichetti lives with an aunt and an old housekeeper, Clotilde; he has a job in a firm and his boss is Mrs. De Ritis, a widow whose husband was killed during a wild boar hunt. She likes him but Alberto likes Marcella; she is under age and he is awaiting her birthday to declare his love. His greater traits are to be fearful of everything and to be selfish. This nature will get him into trouble..",0,0,Un eroe dei nostri tempi,it +50363,Summertime,1955-01-01,99.0,,,tt0048673,All the pent-up yearning of her life was finally fulfilled ... amid the splendor of the world's most fabulous city!,"Middle-aged Ohio secretary Jane Hudson has never found love and has nearly resigned herself to spending the rest of her life alone. But before she does, she uses her savings to finance a summer in romantic Venice, where she finally meets the man of her dreams, the elegant Renato Di Rossi. But when she learns that her new paramour is leading a double life, she must decide whether her happiness can come at the expense of others.",0,0,Summertime,en +127817,Blinkity Blank,1955-01-01,5.0,,,tt0047887,,An animated short film with an improvised jazz soundtrack.,0,0,Blinkity Blank,en +44888,Soldier of Fortune,1955-01-01,96.0,,,tt0048640,,"An American woman arrives in Hong Kong to unravel the mystery of her missing photographer husband. After getting nowhere with the authorities, she is led by some underground characters to an American soldier of fortune working in the area against the Communists. He promises to help find her husband.",0,0,Soldier of Fortune,en +37628,The Criminal Life of Archibaldo de la Cruz,1955-01-01,89.0,,,tt0048037,,"A bizarre black comedy about a man whose overwhelming ambition in life is to be a renowned serial killer of women, and will stop at nothing to achieve it - but not everything goes according to plan...",0,0,Ensayo de un crimen,es +14554,Bad Day at Black Rock,1955-01-07,81.0,,,tt0047849,They're going to kill you...with no hard feelings!,A stranger visits a tiny Western town determined to keep a horrible secret.,1271000,3788000,Bad Day at Black Rock,en +70313,Bowery to Bagdad,1955-01-07,64.0,,415931,tt0044388,Abracadabra!...They're Insultin' The Sultan's Babes!,The Bowery Boys find a lamp that has strange magic powers.,0,0,Bowery to Bagdad,en +51426,Battle Cry,1955-02-02,149.0,,,tt0047860,The men who fought. The women who waited. And the stolen moments they shared.,"The dramatic story of US marines in training, in combat and in love during World War II. The story centres on a major who guides the raw recruits from their training to combat. Based on the novel by Leon Uris.",0,0,Battle Cry,en +17640,It's Always Fair Weather,1955-02-09,102.0,,,tt0048216,M-G-M's Gigantic and Joyous Musical,"Three World War II buddies promise to meet at a specified place and time 10 years after the war. They keep their word only to discover how far apart they've grown. But the reunion sparks memories of youthful dreams that haven't been fulfilled -- and slowly, the three men reevaluate their lives and try to find a way to renew their friendship.",0,0,It's Always Fair Weather,en +123949,Kokoko,2012-06-14,90.0,,,tt2403899,,A storry about a friendship between two very different women.,0,0,Кококо,ru +61934,The Long Gray Line,1955-02-09,138.0,,,tt0048312,Warms Your Heart! STIRS YOUR BLOOD! and fires your imagination!,"The life story of a salt-of-the-earth Irish immigrant, who becomes an Army Noncommissioned Officer and spends his 50 year career at the United States Military Academy at West Point. This includes his job-related experiences as well as his family life and the relationships he develops with young cadets with whom he befriends. Based on the life of a real person.",0,0,The Long Gray Line,en +20174,The Fast and the Furious,1955-02-15,73.0,,,tt0046969,High speed Excitement...As a Wanted Man...Meets a Wanting Woman,"A man wrongly imprisoned for murder breaks out of jail. He wants to clear his name, but with the police pursuing him, he's forced to take a beautiful young woman, driving a fast sports car, hostage and slip into a cross-border sports car race to try to make it to Mexico before the police get him.",66000,250000,The Fast and the Furious,en +113743,Jupiter's Darling,1955-02-18,95.0,,,tt0048239,The Love Story of the Beauty and the Barbarian! Clash of Armies! Underwater spectacle! Never before such sights to see!,"Esther Williams musical about Hannibal's campaign against Rome, based on a Robert E. Sherwood play.",0,0,Jupiter's Darling,en +78256,The End of the Affair,1955-02-23,105.0,,,tt0048034,,A civil servant's wife (Deborah Kerr) in wartime London vows to leave her injured lover (Van Johnson) if he recovers.,0,0,The End of the Affair,en +62034,Toto and Carolina,1955-03-03,85.0,,421566,tt0048739,,,0,0,Totò e Carolina,it +120280,Pekka ja Pätkä puistotäteinä,1955-03-04,64.0,,,tt0048481,,,0,0,Pekka ja Pätkä puistotäteinä,fi +220,East of Eden,1955-03-09,115.0,,,tt0048028,Of what a girl did . . . what a boy did ... of ecstasy and revenge!,"In the Salinas Valley, in and around World War I, Cal Trask feels he must compete against overwhelming odds with his brother Aron for the love of their father Adam. Cal is frustrated at every turn, from his reaction to the war, to how to get ahead in business and in life, to how to relate to estranged mother.",1,5,East of Eden,en +56435,The Sign of Venus,1955-03-12,101.0,,,tt0046292,,The Sign of Venus (Italian: Il segno di Venere) is a 1955 Italian comedy film directed by Dino Risi and starring Sophia Loren. It was entered into the 1955 Cannes Film Festival.,0,0,Il segno di Venere,it +45577,Three Cases of Murder,1955-03-15,99.0,,,tt0047579,,"Three stories of murder and the supernatural: A museum worker is introduced to a world behind the pictures he sees every day. When two lifelong friends fall in love with the same woman and she is killed, they are obvious suspects. Is their friendship strong enough for them to alibi each other? When a young politician is hurt by the arrogant Secretary for Foreign Affairs Lord Mountdrago, he uses Mountdrago's dreams to get revenge.",0,0,Three Cases of Murder,en +79892,Tower of Nesle,1955-03-18,120.0,,,tt0047597,,,0,0,La Tour de Nesle,fr +147360,Marianne of My Youth,1955-03-18,0.0,,,tt0047217,,,0,0,Marianne de ma jeunesse,fr +43319,Man Without a Star,1955-03-24,89.0,,,tt0048340,A love-bargain is like barbed-wire...fight it and you'll get hurt!,Man Without a Star is a 1955 western film starring Kirk Douglas as a wanderer who gets dragged into a range war. It was based on the novel of the same name by Dee Linford.,0,0,Man Without a Star,en +26516,Blackboard Jungle,1955-03-25,101.0,,,tt0047885,SHOCKING!,"Richard Dadier is a teacher at North Manual High School, an inner-city school where many of the pupils frequently engage in anti-social behavior. Dadier makes various attempts to engage the students' interest in education, challenging both the school staff and the pupils. He is subjected to violence as well as duplicitous schemes.",0,0,Blackboard Jungle,en +22408,Rage at Dawn,1955-03-26,87.0,,,tt0048535,SHOWDOWN AT SUNUP!,"In this film's version of the story, four of the Reno Brothers are corrupt robbers and killers while a fifth, Clint (Denver Pyle) is a respected Indiana farmer. A sister, Laura (Mala Powers), who has inherited the family home, serves the outlaw brothers as a housekeeper and cook. One brother is killed when they go after a bank, the men of the town appear to have been waiting for them…",0,0,Rage at Dawn,en +47778,Stella,1955-04-04,100.0,,,tt0048657,,"The story of a young,wild woman who doesn't want to compromise and settle down. Stella is a restless, rebellious Greek woman who plays with men and enjoys her life as much as she can. But when she meets a young football player, things get mixed up. She loves him but she loves her freedom too. So it's about time she made an important choice.",0,0,Στέλλα,el +66893,The White Angel,1955-04-06,100.0,,,tt0047832,,"In The White Angel, Raffaello Matarazzo’s sequel to his blockbuster Nobody’s Children, the perpetually put-upon Guido and Luisa return for a new round of trials and tribulations.",0,0,L'angelo bianco,it +242382,An Annapolis Story,1955-04-10,81.0,,,tt0047835,,"Two brothers, both cadets at Annapolis, fall in love with the same girl.",0,0,An Annapolis Story,en +76642,"Le printemps, l'automne et l'amour",1955-04-12,95.0,,,tt0047368,,,0,0,"Le printemps, l'automne et l'amour",fr +44256,Razzia,1955-04-16,101.0,,,tt0048543,,"Henri, the Man from Nantes, comes back to his country after a successful stay in the United States, where he was working for Liski, the drug dealer. With the fame of being a tough guy preceding him, he sets himself to the task of knowing why the French operations were not so profitable - and soon he is master of all links of the organization. He can now get it honed to perfection - or destroy it. Only... the Police are following his every step.",0,0,Razzia sur la chnouf,fr +193435,High Society,1955-04-17,61.0,,415931,tt0048166,What A BALL! What A BRAWL! Those half-baked lowbrows crash the upper crust!,"Sach receives news that he is the heir to the Terwilliger Debussy Jones fortune. Accompanied by his pal Slip, he arrives at the Jones mansion to review the legal papers needed for him to claim his new fortune. However, Sach and Slip discover that the rightful heir, the young Terwilliger III, is being cheated out his inheritance by the miscreant duo of Stuyvesant Jones and Clarissa. Sach and Slip, with the help of their fellow Bowery Boys, save the day and restore the heir’s inheritance.",0,0,High Society,en +204994,Seminole Uprising,1955-05-01,74.0,,,tt0048600,"Three regiments ride out of Fort Clarke to try to finish a job the Army wished it had never started! All the blazing excitement of the best-seller, ""Bugle's Wake""",An angry Seminole chief wages war after his tribe is relocated from Florida to the American West.,0,0,Seminole Uprising,en +118490,Jedda,1955-05-05,101.0,,,tt0048227,,"An aboriginal girl is brought up by a white family that adopts her. As a young woman, she is mysteriously drawn to go ""Walkabout"" as people of her tribe have for hundreds of years.",0,0,Jedda,en +36489,Bride of the Monster,1955-05-11,69.0,,,tt0047898,,Dr. Varnoff captures twelve men for his experiment: to turn them into supermen using atomic energy. Newspaperwoman Lawton gets too snoopy for her own good.,0,0,Bride of the Monster,en +180685,Oh Willy...,2013-04-03,17.0,,,tt2372335,,"Forced to return to his naturist roots, Willy bungles his way into noble savagery.",0,0,Oh Willy...,en +26661,Abbott and Costello Meet the Mummy,1955-06-01,79.0,,,tt0047795,They're back -- in their mummy's arms!,"When the murder of an archaeologist puts a valuable medallion into their hands, Abbott and Costello waste little time in trying to sell it, only to find themselves pursued by police, a slinky adventuress, an Egyptian high priest, and the mummy himself.",0,0,Abbott and Costello Meet the Mummy,en +831,This Island Earth,1955-06-01,87.0,,,tt0047577,,"Aliens have landed and are hiding on Earth, but need Earth’s scientists to help them fight an inter-planetary war.",800000,0,This Island Earth,en +37911,5 Against the House,1955-06-10,84.0,,,tt0048077,Sizzling!,Former war-time Army buddies now students in college decide to rip off a Reno casino.,0,0,5 Against the House,en +40633,Love Me or Leave Me,1955-06-10,122.0,,,tt0048317,You'll Love it!...The Big Lavish Musical of the Roaring Twenties!,"Story of torch singer Ruth Etting's rise from 1920s taxi dancer to movie star, simultaneously aided and frustrated by Chicago mobster Marty Sydney's headstrong ways and pressure tactics",0,0,Love Me or Leave Me,en +29959,It Came from Beneath the Sea,1955-07-01,79.0,,,tt0048215,IT CRUSHES! KILLS! DESTROYS!,"A Giant Octopus, whose feeding habits have been affected by radiation from H-Bomb tests, rises from the Mindanao Deep to terrorize the California Coast.",0,0,It Came from Beneath the Sea,en +54769,Drei Männer im Schnee,1955-07-14,0.0,,,tt0048014,,,0,0,Drei Männer im Schnee,de +83119,I Am a Camera,1955-07-21,98.0,,,tt0048188,,"In the early thirties, aspiring writer Christopher Isherwood, living in Berlin, meets the vivacious, penniless singer Sally Bowles. They develop a platonic relationship while Sally has a wild time spending other peoples money.",0,0,I Am a Camera,en +40761,Revenge of the Creature,1955-07-22,82.0,,221537,tt0048554,Weird Monster Escapes! Terror Seizes City! ...a woman's beauty the lure for his dangerous desires!,"Men capture the creature from the Black Lagoon and make him an aquarium attraction, from which he escapes.",0,0,Revenge of the Creature,en +43327,The Virgin Queen,1955-07-22,92.0,,,tt0048791,,Sir Walter Raleigh overcomes court intrigue to win favor with the Queen in order to get financing for a proposed voyage to the New World.,0,0,The Virgin Queen,en +208434,The Scarlet Coat,1955-07-28,101.0,,,tt0048588,Behind the story of Benedict Arnold were secrets until recently unknown,A Colonial major (Cornel Wilde) turns traitor to catch a British spy (Michael Wilding) plotting with Benedict Arnold.,0,0,The Scarlet Coat,en +43321,Pete Kelly's Blues,1955-07-31,95.0,,,tt0048484,A jazz-man of the wide-open '20s - caught in the crossfire of its blazing .38s!,In 1927 Kansas City Pete Kelly and his jazz band play nightly at a speakeasy. A local gangster starts to move in on them and when their drummer is killed Kelly gives in...,0,0,Pete Kelly's Blues,en +110502,The Private War of Major Benson,1955-08-02,105.0,,,tt0048513,One of Life's Happiest Experiences is MARCHING YOUR WAY!,"A Major noted for advancing with his mouth before thinking is given a choice: to be drummed out of the Army, or take command of and shape up the ROTC program at Sheridan Academy before it fails its next inspection. At Sheridan he encounters three hundred pre-teen cadets who range from rascally to adorable, and a female doctor who has just the right prescription for him.",0,0,The Private War of Major Benson,en +53879,Love Is a Many-Splendored Thing,1955-08-18,102.0,,,tt0048316,The price they pay when they come out of their secret garden and face the world in modern-day Hong Kong - makes this one of the screen's unforgettable experiences!,A widowed doctor of both Chinese and European descent falls in love with a married American correspondent in Hong Kong during China's Communist revolution.,0,0,Love Is a Many-Splendored Thing,en +263260,Aschenputtel,1955-09-03,,,,tt0047843,,,0,0,Aschenputtel,de +266373,Bengazi,1955-09-14,79.0,,,tt0047872,,An American with a shady past joins with a morally-bankrupt Irishman to find treasure buried by Arabs in a deserted mosque in the Sahara. The situation becomes complicated when they are surrounded by Bedouin bandits.,0,0,Bengazi,en +44902,Footsteps in the Fog,1955-09-14,90.0,,,tt0048087,CLOSE ENOUGH TO KISS...OR KILL!,A Victorian-era murder mystery about a parlour maid that discovers that her employer may have killed his first wife.,0,0,Footsteps in the Fog,en +178569,Jail Busters,1955-09-18,61.0,,415931,tt0048222,YARD-BOIDS in a GILDED CAGE!,Slip and Sach (Bowery Boys) go to prison to help a reporter with a story.,0,0,Jail Busters,en +45987,Taira Clan Saga,1955-09-21,108.0,,,tt0048610,,"Special Forces commander Captain Tadamori returns to Kyoto after successfully defeating the uprising of pirates in the western sea of Japan. But because the high courtiers dislike career soldiers gaining power and influence, they ignore the will of ex-Emperor Toba and refuse to reward the captain. Reward recommender Lord Tokinobu is punished, and the captain sends his son Kiyomori to the Lord's residence, where he falls in love with Tokiko, the Lord's daughter. Meanwhile, Kiyomori finds out that he is possibly the ex-Emperor's son... Written by L.H. Wong",0,0,新平家物語,ja +70192,Count Three and Pray,1955-10-01,102.0,,,tt0047954,Luke Fargo was through with sin... but sin wasn't through with Luke Fargo!,A pastor with a shady past moves into a rural town just after the Civil War.,0,0,Count Three and Pray,en +281124,Screen Directors Playhouse: Meet the Governor,1955-10-05,30.0,,,tt0696447,,A backwoods lawyer's race for the governor's office is thwarted by mainstream opponents who dig up dirt from his past.,0,0,Screen Directors Playhouse: Meet the Governor,en +47739,Illegal,1955-10-28,88.0,,,tt0048199,He was a guy who marked 100 men for death - until a blonde called 'Angel' O'Hara marked him for life!,A hugely successful DA goes into private practice after sending a man to the chair -- only to find out later he was innocent. Now the drunken attorney only seems to represent criminals and low lifes.,0,0,Illegal,en +4825,Guys and Dolls,1955-11-03,150.0,,,tt0048140,It's a living breathing doll of a musical !,"In New York, a gambler is challenged to take a cold female missionary to Havana, but they fall for each other, and the bet has a hidden motive to finance a crap game.",5500000,0,Guys and Dolls,en +26758,Man with the Gun,1955-11-05,83.0,,,tt0048339,,"A stranger comes to town looking for his estranged wife. He finds her running the local girls. He also finds a town and sheriff afraid of their own shadow, scared of a landowner they never see who rules through his rowdy sidekicks. The stranger is a town tamer by trade, and he accepts a $500 commission to sort things out.",0,0,Man with the Gun,en +301491,The Hurdy-Gurdy,1955-11-12,91.0,,,tt0135519,,Two poor portable barrel piano players ramble through Greek countryside and play in fairs. They meet by chance with a rich runaway girl whose father offers a large reward to her finders.They have to choose between getting the reward or helping the girl with her renegade love affair.,0,0,"Λατέρνα, Φτώχεια Και Φιλότιμο",el +348035,Chris Tucker Live,2015-07-10,92.0,,,tt4835636,It's Been a Long Time Coming.,Comedian Chris Tucker performs live.,0,0,Chris Tucker Live,en +4938,The Last Frontier,1955-12-07,98.0,,,tt0049431,,Three trappers become scouts for a cavalry captain (Guy Madison) who loses his fort to a hated colonel (Robert Preston).,0,0,The Last Frontier,en +174720,Maksim Perepelitsa,1955-12-12,94.0,,,tt0048362,,"Maxim Perepelitsa is a cheerful, mischievous and resourceful young man from a Ukrainian village. He loves to make up stories and invent practical jokes. When he is drafted into the Russian Army, he doesn't stop his antics.",0,0,Maksim Perepelitsa,ru +59895,Sudden Danger,1955-12-14,85.0,,,tt0048672,WHEN CRIMSON LIPS SPELL SUDDEN DANGER,"Det Andy Doyle (Bill Elliott) suspects that a suicide is actually a murder. He suspects the victim's son, Wallace (Tom Drake) who is blind and he pursues him until he gets to the truth..",0,0,Sudden Danger,en +457,Sissi,1955-12-22,102.0,,456,tt0048624,,"The young Bavarian princess Elisabeth, who all call Sissi, goes with her mother and older sister Néné to Austria where Néné will be wed to an emperor named Franz Joseph, Yet unexpectedly Franz runs into Sissi while out fishing and they fall in love.",0,0,Sissi,de +11839,The Court Jester,1955-12-24,101.0,,,tt0049096,SONGS! Where Walks My True Love -- Baby Let Me Take You Dreaming -- Life Could Not Better Be -- The Maladjusted Jester -- My Heart Knows A Lovely Song! -- Outfox The Fox,A 12th century court jester in England becomes involved with a desperate band of outlaws who are attempting to overthrow the king.,4000000,0,The Court Jester,en +43316,All That Heaven Allows,1955-12-25,89.0,,,tt0047811,How much does Heaven Allow a Woman in Love?,Friends and family want a rich widow to end her romance with a tree surgeon about 15 years her junior.,0,3100000,All That Heaven Allows,en +82481,The Bachelor,1955-12-30,0.0,,,tt0049717,,,0,0,Lo scapolo,it +53211,One Froggy Evening,1955-12-30,7.0,,,tt0048449,My kind of frog!,"A workman finds a singing frog in the cornerstone of an old building being demolished. But when he tries to cash in on his discovery, he finds the frog will sing only for him, and just croak for the talent agent and the audience in the theater he's spent his life savings on.",0,0,One Froggy Evening,en +154371,Manhunt in Space,1956-01-01,78.0,,,tt0047211,,"Rocky Jones, Space Ranger fights space pirates over an invisible spaceship.",0,0,Manhunt in Space,en +43199,The Eddy Duchin Story,1956-01-01,123.0,,,tt0049170,,The life story of the famous pianist and band-leader of the 1930s and 1940s.,0,0,The Eddy Duchin Story,en +38389,Up in the World,1956-01-01,87.0,,,tt0049906,,Norman is a window cleaner who has to clean a manor house with hundreds of windows. He is distracted by the son of the house who persuades him to go into town. When some villains try and kidnap the young heir Norman fights them off but the heir has banged his head and can't remember Norman's heroic stand,0,0,Up in the World,en +48775,The Killers,1956-01-01,19.0,,,tt0052330,,"The Killers is a short student film based on the short story ""The Killers"" by Ernest Hemingway.",0,0,Убийцы,ru +151431,A Kid for Two Farthings,1956-01-20,96.0,,,tt0048250,,"A London boy's goat works magic like a unicorn for people (Diana Dors, David Kossoff) on Petticoat Lane.",0,0,A Kid for Two Farthings,en +28299,"Forever, Darling",1956-02-09,91.0,,,tt0049225,,"Susan and Lorenzo have been married for over five years and they are starting to drift apart. So into her life comes an angel, which only Susan can see, to tell her that there will be trouble ahead if they do not work out their problems. Lorenzo is developing insecticide #383 at Finlay Vega Chemical Co. and plans to test it on a camping trip that he takes with Susan, but the trip becomes a an obstacle course for him.",0,0,"Forever, Darling",en +142656,Fountainhead,1956-02-26,129.0,,,tt0134749,,A botanist woos the secretary of an industrialist whose company threatens the local water supply.,0,0,泉,ja +88558,A Town Like Alice,1956-03-01,117.0,,,tt0049871,A tale of survival.,"In 1941, The advancing Japanese army captures a lot of British territory very quickly. The men are sent off to labor camps, but they have no plan on what to do with the women and children of the British.",0,0,A Town Like Alice,en +46421,Please Murder Me,1956-03-01,78.0,,,tt0049621,THE DEADLIEST PACT EVER MADE!,A lawyer tries to exact justice on a woman he defended in court -- a woman whom he found out was guilty after getting her off.,0,0,Please Murder Me,en +27999,The Killer Is Loose,1956-03-02,73.0,,,tt0049405,He was no ordinary killer... She was no ordinary victim... This is no ordinary motion picture!,"A savings-and-loan bank is robbed; later, a police wiretap identifies teller Leon Poole as inside man. In capturing him, detective Sam Wagner accidentally kills Poole's young wife, and at his trial Poole swears vengeance against Wagner. Poole begins his plans to get revenge when he escapes his captors.",0,0,The Killer Is Loose,en +1984,1984,1956-03-06,90.0,,,tt0048918,Big Brother is Watching.,"In a totalitarian future society, a man whose daily work is rewriting history tries to rebel by falling in love.",0,0,1984,en +3114,The Searchers,1956-03-13,119.0,,,tt0049730,He had to find her... he had to find her...,"As a Civil War veteran spends years searching for a young niece captured by Indians, his motivation becomes increasingly questionable.",3750000,0,The Searchers,en +126550,Raw Edge,1956-03-24,76.0,,,tt0049661,A savage land beyond the law!,A Texan arrives in Oregon and seeks justice for his innocently-hanged brother,0,0,Raw Edge,en +90406,Tribute to a Bad Man,1956-03-30,95.0,,,tt0049881,TOUGH AS A DESERT CACTUS!,"Jeremy Rodock is a tough horse rancher who strings up rustlers soon as look at them. Fresh out of Pennsylvania, Steve Miller finds it hard to get used to Rodock's ways, although he takes an immediate shine to his Greek girl Jocasta.",0,0,Tribute to a Bad Man,en +79521,Miracle in the Rain,1956-03-31,108.0,,,tt0049509,"You will see a picture of very, very special greatness.",Wartime romance about a lonely man and woman who meet one rainy afternoon in New York.,0,0,Miracle in the Rain,en +68097,Mohawk,1956-04-01,79.0,,,tt0049515,Their untamed love spoke louder than war drums!,"An artist working in a remote army post is juggling the storekeeper's daughter, his fiancée newly arrived from the east, and the Indian Chief's daughter. But when a vengeful settler manages to get the army and the braves at each other's throats his troubles really begin.",0,0,Mohawk,en +56068,The Band of Honest Men,1956-04-12,106.0,,421566,tt0048981,,,0,0,La Banda degli Onesti,it +230182,Crashing Las Vegas,1956-04-27,62.0,,415931,tt0049101,FRANTIC FUN IN FABULOUS LAS VEGAS! Stacked and Packed with LAFFS!,An electric shock enables Sach to predict numbers.,0,0,Crashing Las Vegas,en +46007,Anything Goes,1956-04-27,106.0,,,tt0048954,,"Bill Benson and Ted Adams are to appear in a Broadway show together and, while in Paris, each 'discovers' the perfect leading lady for the plum female role. Each promises the prize role to the girl they selected without informing the other until they head back across the Atlantic by liner - with each man having brought his choice along! It becomes a stormy crossing as each man has to tell his 'find' that she might not get the role after all.",0,0,Anything Goes,en +127564,The Last Hunt,1956-04-30,108.0,,,tt0049432,,"A buffalo hunter (Stewart Granger) has a falling-out with his partner (Robert Taylor), who kills for fun.",0,0,The Last Hunt,en +28290,The Man in the Gray Flannel Suit,1956-05-08,153.0,,,tt0049474,His loves...his world---both past and present---and the crisis they caused!,A World War II veteran (Gregory Peck) can either rise on Madison Avenue or be with his wife (Jennifer Jones) and family.,0,0,The Man in the Gray Flannel Suit,en +37462,Wicked as They Come,1956-05-22,94.0,,,tt0049629,What she wanted out of life... she got out of men!,A ruthless woman takes advantage of gullible men to climb up the social ladder.,0,0,Wicked as They Come,en +47310,Invitation to the Dance,1956-05-22,93.0,,,tt0049367,,Three completely different stories are told through dance.,0,0,Invitation to the Dance,en +64129,D-Day The Sixth of June,1956-05-29,106.0,,,tt0049117,,"En route to Normandy, an American and a British officer reminisce in flashback about their romances with the same woman.",0,0,D-Day The Sixth of June,en +36786,While the City Sleeps,1956-05-30,100.0,,,tt0049949,Suspense as startling as a strangled scream!,"Newspaper men compete against each other to find a serial killer dubbed ""The Lipstick Killer""",0,0,While the City Sleeps,en +63096,Tea and Sympathy,1956-06-06,122.0,,,tt0049829,Where does a woman's sympathy leave off -- and her indiscretion begin?,"Tom Lee is a sensitive boy of 17 whose lack of interest in the ""manly"" pursuits of sports, mountain climbing and girls labels him ""sister-boy"" at the college he is attending. Head master Bill Reynolds' wife Laura sees Tom's suffering at the hands of his school mates (and her husband), and tries to help him find himself.",0,0,Tea and Sympathy,en +28437,The Black Sleep,1956-06-15,82.0,,,tt0049013,The Terror Drug That Wakes the Dead!,A brain surgeon's experiments create a race of deadly freaks.,225000,0,The Black Sleep,en +20806,Yield to the Night,1956-06-19,99.0,,,tt0049019,The Man-By-Man Story of a Lost Soul!,A beautiful young woman snaps and kills a man she thought truly loved her. Her past shows that she's had a life of abusive relationships with men.,0,0,Yield to the Night,en +188684,Punishment Room,1956-06-28,95.0,,,tt0049642,,"Shimada is a student of U College. When the college's baseball team wins the day, he and his friend Ito drug two girls they met at the game.",0,0,Shokei no heya,ja +44545,The Werewolf,1956-07-01,79.0,,,tt0049944,You see it happen!,Two scientists inject an unsuspecting auto accident victim with a mysterious serum causing horrible results.,0,0,The Werewolf,en +31280,Fire Maidens of Outer Space,1956-07-01,80.0,,,tt0046977,SEE - the CREATURE OF HORROR who RAVISHED A PLANET!,An astronaut (Anthony Dexter) and crew land on Jupiter's 13th moon and find a monster and women from Atlantis.,0,0,Fire Maidens of Outer Space,en +28000,Somebody Up There Likes Me,1956-07-03,113.0,,,tt0049778,A Girl Can Lift A Fellow To The Skies!,"Rocky Graziano is building a career in crime, when he's finally caught and arrested. In jail, he is undisciplined, always getting into trouble. When he gets out after many years he has decided to start a new life. However, he is immediately drafted to the army, but even they can't keep him in line and he goes AWOL. Rocky discovers boxing as a way of earning quick money, and is discovered as a new talent.",1920000,3360000,Somebody Up There Likes Me,en +86664,Crazed Fruit,1956-07-12,86.0,,,tt0160440,,"Spending their summer on an exotic beach, two brothers fall for the same beautiful girl, whose charm and looks may hide more than they they bargained for.",0,0,狂った果実,ja +31984,Satellite in the Sky,1956-07-21,85.0,,,tt0049715,Astonishing Life on the Roof of the Earth!,"A bomb dooms the first space satellite, manned by a selfless crew, a stowaway reporter (Lois Maxwell) and a mad scientist (Donald Wolfit).",0,0,Satellite in the Sky,en +43256,Autumn Leaves,1956-08-01,107.0,,,tt0048967,"In the dark, when I feel his heart pounding against mine - is it love? or frenzy? or terror?",A woman falls for a younger man with severe mental problems.,0,0,Autumn Leaves,en +26036,Bigger Than Life,1956-08-02,95.0,,,tt0049010,The story of the handful of hope that became a fistful of hell!,"A seriously ill schoolteacher becomes dependent on a ""miracle"" drug that begins to affect his sanity.",0,0,Bigger Than Life,en +26502,Seven Men from Now,1956-08-04,78.0,,,tt0049743,,Aging lawman Ben Stride burns a trail of murderous revenge across a hardscrabble landscape searching for his wife's murderers.,0,0,Seven Men from Now,en +10626,The Captain from Köpenick,1956-08-15,93.0,,,tt0049293,,No overview found.,0,0,Der Hauptmann von Köpenick,de +80775,Away All Boats,1956-08-16,114.0,,,tt0048971,The battle cry of the South Pacific,"The story of USS 'Belinda', a U.S. naval ship, and its crew during the battle of the Pacific 1943-1945, as it prepares for action and landing troops on enemy beachheads.",0,0,Away All Boats,en +35895,A Cry in the Night,1956-08-17,75.0,,,tt0049110,THE TEEN-AGE DATE IN LOVERS' LANE THEY'LL NEVER LET HER FORGET!,A police captain's emotions get in the way when his daughter is kidnapped.,0,0,A Cry in the Night,en +46190,These Wilder Years,1956-08-17,91.0,,,tt0049844,TOGETHER and TERRIFIC! ...in a story of unforgettable warmth and impact!,A man tries to find a son he gave up for adoption years ago.,0,0,These Wilder Years,en +11706,War and Peace,1956-08-21,208.0,,,tt0049934,The Greatest Novel Ever Written ... Now Magnificently Alive On The Screen!,Napoleon's tumultuous relations with Russia including his disastrous 1812 invasion serve as the backdrop for the tangled personal lives of two aristocratic families.,6000000,12500000,War and Peace,en +26030,Bob le Flambeur,1956-08-24,98.0,,,tt0047892,,"Ex-bank robber and gambler, Bob, plans a heist at the Deauville casino.",0,0,Bob le Flambeur,fr +44022,Bandido!,1956-09-01,92.0,,,tt0048983,THE CRY THAT ROCKED THE WORLD'S HOTTEST STRIP OF HELL!,"American arms dealer Kennedy hopes to make a killing by selling to the ""regulares"" in the 1916 Mexican revolution. American mercenary Wilson favors the rebel faction headed by Escobar, and they plot to hijack Kennedy's arms; but Wilson also has his eye on Kennedy's wife. Raids, counter-raids, and escapes follow in a veritable hail of bullets.",0,0,Bandido!,en +36463,Miami Exposé,1956-09-01,73.0,,,tt0049500,"""Operation Joyland!""",A police detective (Lee J. Cobb) baits killer gamblers with a mob witness (Patricia Medina) in the Everglades.,0,0,Miami Exposé,en +44921,The Last Wagon,1956-09-21,98.0,,,tt0049434,ROMANTIC WESTERN ADVENTURE!,"When a handful of settlers survive an Apache attack on their wagon train they must put their lives into the hands of Comanche Todd, a white man who has lived with the Comanches most of his life and is wanted for the murder of three men.",0,0,The Last Wagon,en +74527,Tension at Table Rock,1956-10-03,93.0,,,tt0049834,A man like Shane... the suspense of High Noon...,"When the owner of a stagecoach station is killed, a gunman takes his place.",0,0,Tension at Table Rock,en +117869,El malvado Carabel,1956-10-15,81.0,,,tt0048334,,"Since he wants get married, the young Carabel, who is employed in a real estate agent, decides to ask their bosses for a raise in order to maintain his future wife. However, all he gets is to be fired. He then realizes that honesty is what has led him to unemployment and decides to change his life and live outside the law. He plots to steal the safe from his former company",0,0,El malvado Carabel,en +45726,Julie,1956-10-17,99.0,,,tt0049388,"Run JULIE Run, Run For Your Life!",A terrified stewardess is stalked by her psychotic estranged husband.,0,0,Julie,en +2897,Around the World in Eighty Days,1956-10-17,167.0,,,tt0048960,"It's a wonderful world, if you'll only take the time to go around it!","Based on the famous book by Jules Verne the movie follows Phileas Fogg on his journey around the world. Which has to be completed within 80 days, a very short period for those days.",6000000,42000000,Around the World in Eighty Days,en +118283,The Girl He Left Behind,1956-10-26,103.0,,,tt0049264,A couple of teenagers and their kiss-and-run battle!,"A young man is drafted and goes through the rigors of basic training, ultimately discovering the experience is also character-building. Director David Butler's 1956 film stars '50s teen favorites Tab Hunter and Natalie Wood, with supporting roles played by Jim Backus, Jessie Royce Landis, Murray Hamilton, Henry Jones, James Garner, Alan King, Ernestine Wade, David Janssen and Raymond Bailey.",0,0,The Girl He Left Behind,en +107443,The Brave One,1956-10-26,100.0,,,tt0049030,The Touch of Greatness,A young Mexican boy tirelessly tries to save his pet bull from death at the hands of a celebrated matador.,0,0,The Brave One,en +220565,Donatella,1956-10-28,103.0,,,tt0049153,,The family of Vittorio Missoni went ahead with the fashion house's planned runway show in Italy on Sunday night.,0,0,Donatella,en +128946,Lille Fridolf Och Jag,1956-10-29,0.0,,,tt0049444,,,0,0,Lille Fridolf Och Jag,sv +59142,You Can't Run Away from It,1956-10-30,95.0,,,tt0049973,The funniest movie in maybe 20 years!,A reporter stumbles on a runaway heiress whose story could salvage his career.,0,0,You Can't Run Away from It,it +269306,Last Pair Out,1956-11-12,0.0,,,tt0049763,,,0,0,Sista paret ut,en +57993,The Mountain,1956-11-14,105.0,,,tt0049523,,"Selfish Chris Teller pressures his older brother, a retired climber, to accompany him on a treacherous Alpine climb to loot the bodies of plane crash victims.",0,0,The Mountain,en +86363,Gun The Man Down,1956-11-15,76.0,,,tt0049286,,"An outlaw is left for dead by his gang after being shot. A year later, he is released from jail with one thing on his mind: Revenge.",0,0,Gun The Man Down,en +39833,Love Me Tender,1956-11-15,89.0,,,tt0049452,HEAR ELVIS SING . . .,Elvis Prestley's first film is a Civil War drama.,1000000,9000000,Love Me Tender,en +143946,I Will Buy You,1956-11-21,111.0,,,tt0134286,,"A talent scout moves sharply, dead-set on signing a promising athlete to the team the Toyko Flowers.",0,0,Anata kaimasu,ja +237171,Londra chiama Polo Nord,1956-11-30,,,,tt0049450,,,0,0,Londra chiama Polo Nord,de +247691,Three Brave Men,1956-12-01,88.0,,,tt0051076,,A lawyer takes the case of a Navy clerk who sues after he's fired for suspected Communist beliefs.,0,0,Three Brave Men,en +69605,Written on the Wind,1956-12-01,99.0,,,tt0049966,The story of a decent love...that fought to live against the vice and immorality of an oil baron's wastrel family...and of the ugly secret that thrust their privates lives into public view!,A young woman marries into a corrupt oil family then falls for her husband's best friend.,0,0,Written on the Wind,en +121354,The Great Man,1956-12-01,98.0,,,tt0049280,Everybody loved the Great Man except those who hated his guts!,"Joe Harris, preparing a eulogy for popular radio commentator Herb Fuller, finds that nobody has a good word to say about him.",0,0,The Great Man,en +41516,The Mole People,1956-12-01,77.0,,,tt0049516,"...a savage civilization a million years old, raging with blood-lusting fury!",A party of archaeologists discovers the remnants of a mutant five millennia-old Sumerian civilization living beneath a glacier atop a mountain in Mesopatamia.,0,0,The Mole People,en +118549,The Wild Party,1956-12-21,91.0,,,tt0049955,This is a New Motion Picture as Daring as the Screen Will Ever Get!,An ex-football brute (Anthony Quinn) and his beatnik gang take a rich girl (Carol Ohmart) and her boyfriend hostage (Arthur Franz) at a jazz joint.,0,0,The Wild Party,en +58074,"Totò, Peppino e i fuorilegge",1956-12-21,0.0,,421566,tt0049865,,,0,0,"Totò, Peppino e i fuorilegge",it +252746,Three Men in a Boat,1956-12-23,84.0,,,tt0049847,,"Three London gentlemen take a vacation rowing down the Thames, encountering various mishaps and misadventures along the way.",0,0,Three Men in a Boat,en +46494,Four Boys and a Gun,1957-01-01,74.0,,,tt0127562,Real big shots with a real gun,Four friends are involved in a robbery that resulted in the killing of a police officer.,0,0,Four Boys and a Gun,en +86768,5 Steps to Danger,1957-01-30,81.0,,,tt0050087,LASHED TOGETHER BY THE SAME SIN AND THE SAME SECRET!,Can a couple keep important secrets from Communist spies?,0,0,5 Steps to Danger,en +112558,The Young Stranger,1957-02-01,84.0,,,tt0051214,,"Director John Frankenheimer's 1957 drama explores the lack of communication between a wealthy film producer and his troubled teenage son after the boy is involved in an altercation at a movie theatre. The cast includes James MacArthur, James Daly, Kim Hunter, Whit Bissell and James Gregory.",0,0,The Young Stranger,en +26946,Attack of the Crab Monsters,1957-02-10,62.0,,,tt0050147,From the depths of the sea... a tidal wave of terror!,"A group of scientists travel to a remote island to study the effects of nuclear weapons tests, only to get stranded when their airplane explodes. The team soon discovers that the island has been taken over by crabs that have mutated into enormous, intelligent monsters. To add to their problems, the island is slowly sinking into the ocean. Will any of them manage to escape?",70000,0,Attack of the Crab Monsters,en +490,The Seventh Seal,1957-02-16,96.0,,,tt0050976,,"When disillusioned Swedish knight Antonius Block returns home from the Crusades to find his country in the grips of the Black Death, he challenges Death to a chess match for his life. Tormented by the belief that God does not exist, Block sets off on a journey, meeting up with traveling players Jof and his wife, Mia, and becoming determined to evade Death long enough to commit one redemptive act while he still lives.",0,0,Det sjunde inseglet,sv +217648,Padri e figli,1957-02-21,,,,tt0050813,,,0,0,Padri e figli,it +46189,The Wings of Eagles,1957-02-22,110.0,,,tt0051198,"THE SKY IS THE LIMIT for Fun, Thrills, Excitement!","The story of Frank W. ""Spig"" Wead - a Navy-flyer turned screenwriter.",0,0,The Wings of Eagles,en +31682,The Incredible Shrinking Man,1957-02-22,81.0,,,tt0050539,A fascinating adventure into the unknown!,When exposure to a combination of radiation and insecticide causes Scott Carey to begin to shrink medical science is powerless to help him.,750000,0,The Incredible Shrinking Man,en +37103,"Heaven Knows, Mr. Allison",1957-03-13,108.0,,,tt0050490,They were alone on this Pacific Island... trapped behind enemy lines... the marine who had been thru Hell and Sister Angela with her supreme faith in God.,"In 1944, in South Pacific, the castaway Marine Corporal Allison drifts in a raft to the Tuasiva Island, where he meets Sister Angela. She tells him that she is the only person in the island and was left behind by the runaway boat to Fiji Island while seeking the local priest. Stranded in the island, but with water, fish and fruits, their paradisiacal life ends when the Japanese arrive to build a base, forcing Allison and the nun to hide in a cave. The crude marine provides the necessary supply for their survival and falls in love for the nun.",0,0,"Heaven Knows, Mr. Allison",en +125413,Fear Strikes Out,1957-03-20,100.0,,,tt0050383,,"Director Robert Mulligan's 1957 biographical drama stars Anthony Perkins as Jimmy Piersall, the baseball player whose career was interrupted by his battle with mental illness. The cast also includes Karl Malden, Norma Moore, Adam Williams and Perry Wilson.",0,0,Fear Strikes Out,en +89606,Hemo The Magnificent,1957-03-20,60.0,,,tt0156602,,No overview found.,0,0,Hemo The Magnificent,en +83354,The True Story of Jesse James,1957-03-22,92.0,,,tt0051114,,"Misfit Missouri brothers Jesse and Frank James (Robert Wagner, Jeffrey Hunter) turn to crime in the post-Civil War South.",0,0,The True Story of Jesse James,es +91380,Les aventures d'Arsène Lupin,1957-03-22,99.0,,,tt0050152,,,0,0,Les aventures d'Arsène Lupin,fr +292294,The Phantom Stagecoach,1957-03-31,69.0,,,tt0050840,,"A stagecoach is plagued by robberies, but it takes an undercover Wells Fargo agent to discover that a rival company is responsible.",0,0,The Phantom Stagecoach,en +116780,Lizzie,1957-04-04,81.0,,,tt0050650,Which girl was she?,"A psychiatrist (Richard Boone) treats a woman (Eleanor Parker) of three faces: neurotic Elizabeth, wanton Lizzie, charming Beth.",0,0,Lizzie,en +28061,Lust of the Vampire,1957-04-05,85.0,,,tt0049429,,"A mad scientist captures young women and drains their blood, in order to keep alive an ancient, evil duchess.",0,0,I vampiri,it +80264,The Strange One,1957-04-12,100.0,,,tt0051019,"""THE STRANGE ONE"" IS A STRANGE ONE!",A military school student develops a destructive power over his fellow cadets.,0,0,The Strange One,en +98289,Seven Waves Away,1957-04-17,100.0,,,tt0050091,14 of these survivors must be cast adrift! Which will the Captain choose?,Ship's officer finds himself in command of a lifeboat full of survivors of a sunken luxury liner.,0,0,Seven Waves Away,en +18776,The Spirit of St. Louis,1957-04-19,135.0,,,tt0051003,One of the Great Advnetures of Our Time !,Charles 'Slim' Lindbergh struggles to finance and design an airplane that will make his New York to Paris flight the first solo transatlantic crossing.,0,0,The Spirit of St. Louis,en +55192,Tokyo Twilight,1957-04-30,140.0,,,tt0051093,,"Two sisters find out the existence of their long-lost mother, but the younger cannot take the truth of being abandoned as a child.",0,0,東京暮色,ja +32891,The Severed Heads,1957-05-01,20.0,,,tt0121731,,"A short mime adaptation of a Thomas Mann story about a Parisian urchin who makes her living selling human heads. Lost for nearly 50 years, the movie was found in 2006 by the son of Ruth Michelly and Saul Gilbert when he found it in his mom's attic in Munich.",0,0,La cravate,fr +176670,Shoot-Out At Medicine Bend,1957-05-04,87.0,,,tt0050963,"He called himself the ""Preacher""... and he wrote his sermons in lead!",Director Richard L. Bare's 1957 revenge western stars Randolph Scott as an army veteran seeking the men who sold defective ammunition that caused his brother's death.,0,0,Shoot-Out At Medicine Bend,en +33668,Designing Woman,1957-05-16,118.0,,,tt0050306,His world is guys and dolls! Her world is gowns and glamor!,"A sportswriter who marries a fashion designer discovers that their mutual interests are few, although each has an intriguing past which makes the other jealous.",0,0,Designing Woman,en +29212,The Weapon,1957-05-17,77.0,,,tt0051184,,A boy accidentally shoots a friend with a gun he found in the rubble of a destroyed building. The gun turns out to be a clue in a ten-year-old murder case.,0,0,The Weapon,en +53949,The Monster that Challenged the World,1957-06-01,84.0,,,tt0050722,A new kind of terror to numb the nerves!,Giants Mollusks are released from the earth by an earthquake and start killing people.,0,0,The Monster that Challenged the World,en +104674,Bayou,1957-06-01,83.0,,,tt0050173,"Somewhere, a 15-year old girl may be a teenager... in the Cajun country, she's a woman full-grown! ...and every Bayou man knows it!","A community of Cajun fishermen living around a remote bayou includes one authentic beauty, Marie, who wants to better herself but must deal with the unwelcome attentions of storekeeper Ulysses. When she meets Martin Davis, visiting New York architect, they hit it off at once; but the sinister Ulysses is not inclined to suffer a Yankee rival.",0,0,Bayou,en +36089,The Giant Claw,1957-06-01,75.0,,,tt0050432,Flying beast out of prehistoric skies!,Global panic ensues when it is revealed that a mysterious UFO is actually a giant turkey-like bird that flies at supersonic speed and has no regard for life or architecture.,0,0,The Giant Claw,en +43228,I Was a Teenage Werewolf,1957-06-19,76.0,,,tt0050530,Explosive! Amazing! Terrifying! You won't believe your eyes!,"A meat-eating teenager (Michael Landon) sees a psychiatrist (Whit Bissell), who only makes things worse.",82000,2000000,I Was a Teenage Werewolf,en +134355,The Happy Road,1957-06-20,100.0,,,tt0050483,It Happened On... The Happy Road,"Two children run away from a Swiss boarding school and set out for Paris, with their frantic parents in hot pursuit. Gene Kelly directed and stars in this 1957 comedy, with other roles played by Barbara Laage, Bobby Clark, Brigitte Fossey and Michael Redgrave.",500000,0,The Happy Road,en +43250,The Lonely Man,1957-06-21,88.0,,,tt0050652,Two of today's most publicized personalities Anthony Perkins and Jack Palance teamed in a great outdoor drama!,"Aging gunslinger Jacob Wade hopes to settle down with his estranged son, but his old enemies have other plans for him. Gunslinger Jacob Wade finds his long-abandoned son Riley, now a young man who hates his father but has nowhere else to go. Hoping to settle down, Jacob finds no town will have him. They end at Monolith, the ranch of Jacob's former girlfriend Ada, to whom he had no intention of returning. A mustang hunt finds Riley himself attracted to the shapely Ada...and Jacob having trouble with his eyesight. And his visions of a quiet life are doomed by the re-appearance of enemies from his past...",0,0,The Lonely Man,en +41054,Il Grido,1957-06-22,116.0,,,tt0050458,,A sugar-refinery worker (Steve Cochran) flees his Northern Italy town after a woman (Alida Valli) refuses his marriage proposal.,0,0,Il Grido,it +117026,Daughter of Dr. Jekyll,1957-06-28,71.0,,,tt0050292,Blood-hungry spawn of the world's most bestial fiend!,"A young woman discovers she is the daughter of the infamous Dr. Jekyll, and begins to believe that she may also have a split personality, one of whom is a ruthless killer.",0,0,Daughter of Dr. Jekyll,en +43231,Le Notti Bianche,1957-07-06,101.0,,,tt0050782,,A lonely clerk attempts to win the love of a woman who still awaits the return of her long-absent suitor.,0,0,Le Notti Bianche,it +53217,"What's Opera, Doc?",1957-07-06,7.0,,,tt0051189,,"Bugs is in drag as the Valkyrie Brunhilde who sits on an overwieght horse. ""She"" is pursued by Elmer playing the demigod ""Siegfried"".",0,0,"What's Opera, Doc?",en +234868,The Shiralee,1957-07-11,99.0,,,tt0050961,,"An Australian ""swagman"" finds his wife with another man, so he takes the daughter, Buster, with him. On the road together, going from town to town and from farm to farm, father and daughter explore new depths of understanding and bonding.",0,0,The Shiralee,en +113700,Lady of Vengeance,1957-08-01,73.0,,,tt0050620,A shocking woman... a shocker of a story!,"A powerful newspaper publisher (Dennis O'Keefe) plots what he believes is the ""perfect murder"". Director Burt Balaban's 1957 British film also stars Anton Diffring, Ann Sears, Vernon Greeves and Eileen Elton.",0,0,Lady of Vengeance,en +35129,Edge of the City,1957-08-02,85.0,,,tt0050347,Tense drama of frightened men!,An army deserter and a black dock worker join forces against a corrupt union official.,0,0,Edge of the City,en +37311,Band of Angels,1957-08-03,125.0,,,tt0050166,"You're no blue blood any more, honey. The master bought you...and now he's waitin'!","Living in Kentucky prior to the Civil War, Amantha Starr is a privileged young woman. Her widower father, a wealthy plantation owner, dotes on her and he sends her to the best schools. When he dies suddenly however, Amantha's world is turned upside down. She learns that her father had been living on borrowed money and that her mother was actually a slave and her father's mistress. The plantation is to be sold to pay off her father's debts and as the daughter of slave, Amatha is also to be sold as property. She is bought by a Louisiana plantation owner, Hamish Bond and over time she grows to love him until she learns he was a slave-trader. She tries again to become part of white society but realizes that her future lies elsewhere.",0,0,Band of Angels,en +73027,Across the Bridge,1957-08-20,103.0,,,tt0050097,,"In Mexico, a financier on the run poses as a man he just murdered, only to find out that the man was also a murderer.",0,0,Across the Bridge,en +194393,The Disembodied,1957-08-25,73.0,http://instant.warnerarchive.com/product.html?productId=60563,,tt0050317,FEMALE WITCH DOCTOR...FIENDISH TIGRESS OF THE JUNGLE!,"When men on a photo safari stumble into a misanthropic doctor’s remote camp with a wounded comrade, the doctor's restless wife supplements her usual pursuit (voodoo, especially as a way to off her husband) with a new one: seduction. As men lose their hearts (sometimes literally) to the alluring voodoo priestess, she embarks on a killing spree that turns the jungle blood red.",0,0,The Disembodied,en +219043,Un marido de ida y vuelta,1957-08-26,94.0,,,tt0050688,,"Adaptation of the eponymous play of Jardiel Poncela. A husband dominated by his overbearing wife dies victim of a heart attack the day she forces him to shave his beloved beard to go to a costume ball dressed as a bullfighter. Its spectrum then begins to walk around the house and the most unexpected cause tangles. When she finally decides to settle definitely get materialize and get his wife, who has meanwhile become a being sweet and understanding.",0,0,Un marido de ida y vuelta,en +38006,The Abominable Snowman,1957-08-26,91.0,,,tt0050095,See It With Someone Brave! -- A Timeless Terror to Freeze You to Your Seats!,A kindly English botanist and a gruff American promoter lead an expedition to the Himalayas in search of the legendary Yeti.,0,0,The Abominable Snowman,en +129359,Lille Fridolf Blir Morfar,1957-09-02,0.0,,,tt0050643,,,0,0,Lille Fridolf Blir Morfar,sv +35001,Run of the Arrow,1957-09-05,86.0,,,tt0050915,The strange saga of the Johnny Reb who turned Sioux to wage a one-man war against the Yankees !,"A veteran leaves the army, and finds a home with the Sioux.",0,0,Run of the Arrow,en +48156,House of Numbers,1957-09-12,90.0,,,tt0050526,Actually filmed in SAN QUENTIN,Palance plays twin brothers - one trying to help another escape from prison.,0,0,House of Numbers,en +975,Paths of Glory,1957-09-18,88.0,,,tt0050825,It explodes in the no-man's land no picture ever dared cross before!,"During World War I, commanding officer General Broulard (Adolphe Menjou) orders his subordinate, General Mireau (George Macready), to attack a German trench position, offering a promotion as an incentive. Though the mission is foolhardy to the point of suicide, Mireau commands his own subordinate, Colonel Dax (Kirk Douglas), to plan the attack. When it ends in disaster, General Mireau demands the court-martial of three random soldiers in order to save face.",935000,0,Paths of Glory,en +103396,The Devil Strikes at Night,1957-09-19,105.0,,,tt0050746,,"A serial killer terrorizes Hamburg, Germany, during World War II. When the local police can't seem to catch him, the SS is brought into the case.",0,0,"Nachts, wenn der Teufel kam",de +62033,The Girl in Black Stockings,1957-09-24,75.0,,,tt0050439,"She's every inch a teasing, taunting ""Come-on"" Blonde.",A young girl's murder leaves a hotel full of suspects.,0,0,The Girl in Black Stockings,en +270015,Domino Kid,1957-10-01,74.0,,,tt0050325,Go...For...Your Gun Domino!,A rancher vows revenge on the five men responsible for his father's death.,0,0,Domino Kid,en +40826,Affair in Havana,1957-10-01,77.0,,,tt0050103,,"While in Havana, a musician gets involved with a crippled man and his beautiful wife... with deadly results.",0,0,Affair in Havana,en +120303,The Vampire,1957-10-04,95.0,,,tt0051151,,"A pretty young Mexican girl returns to her hometown to make funeral arrangements for her beloved aunt, who has just died. Soon she begins to hear disturbing stories about the town being infested by vampires, and she eventually begins to suspect that her remaining aunt and the mysterious next-door neighbor may be involved.",0,0,El vampiro,es +188981,The Blue Sky Maiden,1957-10-07,89.0,,,tt0228021,,Yuko is sent to the coastal regions to be raised away from the rest of her sophisticated family where she finds out from her ill grandmother that she is not who she thought she was.,0,0,Ao-Zora Musume,ja +108812,Until They Sail,1957-10-08,94.0,,,tt0051141,"They couldn't have the love they wanted, so they took the love they could get!",Four sisters in New Zealand fall for four U.S. soldiers en route to the Pacific theater in WWII.,0,0,Until They Sail,en +44591,The Black Scorpion,1957-10-11,88.0,,,tt0050197,Every horror you've seen on the screen grows pale beside the horror of,Giant scorpions wreck havoc after being released due to volcanic activity,0,0,The Black Scorpion,en +21849,A Face in the Crowd,1957-10-17,125.0,,,tt0050371,"POWER! He loved it! He took it raw in big gulpfuls...he liked the taste, the way it mixed with the bourbon and the sin in his blood!","""A Face in the Crowd"" charts the rise of a raucous hayseed named Lonesome Rhodes from itinerant Ozark guitar picker to local media rabble-rouser to TV superstar and political king-maker. Marcia Jeffries is the innocent Sarah Lawrence girl who discovers the great man in a back-country jail and is the first to fall under his spell",0,0,A Face in the Crowd,en +101929,Black River,1957-10-23,114.0,,,tt0134771,,The story follows a university student who moves into an apartment building and becomes involved with a waitress. The landlord then attempts to evict the tenants and sell the building through illicit means.,0,0,黒い河,ja +30054,The Tin Star,1957-10-23,93.0,,,tt0051087,For $40 a month and a shiny Tin Star...the young sheriff faced the mob alone...except for the angry ex-sheriff who couldn't watch him die and a hero-worshipping boy who lived only for the day he'd wear a TIn Star of his own!,An experienced bounty hunter helps a young sheriff learn the meaning of his badge.,0,0,The Tin Star,en +28973,A King in New York,1957-10-25,110.0,,,tt0050598,The king of comedians!,"Due to a revolution in his country, King Shahdov comes to New York - almost broke. To get some money he goes to TV, making commercials and meets the child from communist parents. Due to this he is suddenly a suspected as a communist himself and has to face one of McCarthy's hearings.",0,0,A King in New York,en +43241,The Amazing Colossal Man,1957-10-25,80.0,,394258,tt0050118,Growing...! Growing...! Growing...! To a Giant! to a Monster! When will it stop?,"Lt. Col. Glenn Manning is inadvertently exposed to a plutonium bomb blast and although he sustains burns over 90% of his body, he survives. Then he begins to grow, but as he grows he starts losing his mind. By the time he stops he is 50 ft tall, insane and is on the rampage.",0,0,The Amazing Colossal Man,en +43252,The Story of Mankind,1957-11-08,100.0,,,tt0051016,Explorer... Warrior... Dreamer!,"The Spirit of Man (Ronald Colman) debates history with the devil (Vincent Price) before a court of fate, because of the hydrogen bomb.",0,0,The Story of Mankind,en +15697,Jailhouse Rock,1957-11-08,96.0,,,tt0050556,Elvis in Action as Never Before!,"After serving time for manslaughter, young Vince Everett becomes a teenage rock star.",0,0,Jailhouse Rock,en +20372,Nine Lives,1957-11-11,96.0,,,tt0050762,,The movie takes place during World War II and depicts the true story of Jan Baalsruds amazing escape from the German army from the coast of Northern Norway and across the border to the neutral country Sweden.,0,0,Ni liv: Historien om Jan Baalsrud,no +38432,The Tarnished Angels,1957-11-21,91.0,,,tt0051055,The Book They Said Could Never Be Filmed!,Story of a friendship between an eccentric journalist and a daredevil barnstorming pilot.,0,0,The Tarnished Angels,en +138308,The Hard Man,1957-12-01,80.0,,,tt0050485,He's Got the Southwest...Over a Gun-Barrel!,A Texas Ranger (Guy Madison) turns deputy sheriff; a woman (Valerie French) wants him to kill her cattle-baron husband (Lorne Greene).,0,0,The Hard Man,en +49843,The Naked Truth,1957-12-03,91.0,,,tt0050749,The screamingly funny comedy team!,"Nigel Dennis publishes a scandal magazine. But for each story he writes, he first approaches the person whose scandalous behavior is described (or rather implied, to avoid any libel suit) and says he will suppress the story in return for money. Several of his victims first decide individually to kill him instead of paying, but fail in amusing ways. Then they find that to protect their various secrets they must now join forces for a rather different purpose...",0,0,The Naked Truth,en +148432,Pekka ja Pätkä salapoliiseina,1957-12-08,0.0,,,tt0050832,,,0,0,Pekka ja Pätkä salapoliiseina,fi +35926,Baby Face Nelson,1957-12-11,85.0,,,tt0050155,the baby-face punk who became the FBI's PUBLIC ENEMY NO. 1!,Famed Depression-era gangster “Baby Face Nelson” (Mickey Rooney) robs and kills while accompanied by his beautiful moll (Carolyn Jones).,0,0,Baby Face Nelson,en +109441,Don't Go Near the Water,1957-12-14,107.0,,,tt0050327,THE LAUGH OF YOUR LIFE-TIME!,"Madison Avenue-trained Navy men (Glenn Ford, Fred Clark) handle public relations on a South Pacific island during World War II.",0,0,Don't Go Near the Water,en +288526,The Auntie from Chicago,1957-12-16,72.0,,,tt0135673,,Aunt Calliopi returns to Greece from Chicago after 30 years and plans to marry off her nieces.,0,0,Η θεία απ' το Σικάγο,en +459,Sissi: The Fateful Years of an Empress,1957-12-18,109.0,,456,tt0050974,,After a wonderful time in Hungary Sissi falls extremely ill and must retreat to a Mediterranean climate to rest. The young empress’ mother takes her from Austria to recover in Madeira.,0,0,Sissi - Schicksalsjahre einer Kaiserin,de +65488,Raintree County,1957-12-20,168.0,,,tt0050882,In The Great Tradition Of Civil War Romance,"A graduating poet/teacher falls in love with a Southern woman, and then the Civil War and her past create problems.",5000000,0,Raintree County,en +92809,The Dead Talk Back,1957-12-31,65.0,,,tt0106682,,A psychic researcher attempts to solve a murder by using a radio that enables him to speak with the dead.,0,0,The Dead Talk Back,en +148176,A Chairy Tale,1957-12-31,12.0,,,tt0050534,,An ordinary looking chair refuses to be sat upon.,0,0,A Chairy Tale,en +152797,Le bel indifférent,1957-12-31,29.0,,,tt0132722,,An adaptation of Jean Cocteau's play of a woman lecturing her indifferent lover.,0,0,Le bel indifférent,en +34078,The Screaming Skull,1958-01-01,68.0,,,tt0052169,The tortured ghost who claims vengeance in the bride's bedroom!,"Newlyweds Eric and Jenni Whitlock retire to his desolate mansion, where Eric's first wife Marianne died from a mysterious freak accident. Jenni, who has a history of mental illness, begins to see strange things including a mysterious skull, which may or may not be a product of her imagination.",0,0,The Screaming Skull,en +238952,Along the Coast,1958-01-01,25.0,,,tt0051561,A humorous travelogue of the French Riviera.,"Tongue-in-cheek look at the French Riviera, especially in summer when it overflows with tourists. Reviews its history and famous visitors; displays its faux-exotic buildings, its crowded beaches, its trees and monuments; and, pokes fun at the colors women wear and the vagaries of fashion. The film celebrates the use of ""Eden"" as a place name, suggesting that paradise comes to the coast after all are gone, perhaps only on a remote island beach.",0,0,Du côté de la côte,fr +455363,The Rise and Fall of a Jungle Giant,1958-01-01,6.0,,,tt3174412,,A behind-the-scenes look at the building of the bridge in the film The Bridge on the River Kwai (1957) and the preparations for its destruction.,0,0,The Rise and Fall of a Jungle Giant,en +163343,The Tender Game,1958-01-01,6.0,,,tt0178057,,"Inspired by the song Tenderly Jack Lawrence and Walter Gross, a tender animation on a florist and a sweeper that she falls madly in love.",0,0,The Tender Game,en +24258,We Have Only One Life,1958-01-01,111.0,,,tt0051927,,"A bank teller discovers an accounting error, becomes rich and lives his life like he's never lived it.",0,0,Μια ζωή την έχουμε!,en +19968,No Time For Sergeants,1958-01-01,119.0,,,tt0052005,,"Georgia farm boy Will Stockdale is about to bust with pride. He’s been drafted. Will’s ready. But is Uncle Sam ready for Will? In No Time for Sergeants, Andy Griffith is certifiably funny in the role that clinched his stardom. Wearing a friendly, wide grin, he ambles into the U.S. Air Force – and lots of folks’ll never be the same.",0,0,No Time For Sergeants,en +169726,The Gypsy and the Gentleman,1958-01-15,103.0,,,tt0051692,,"About to enter a marriage he wants no part of, rich nobleman Mitchell takes up with gypsy Mecouri. They marry, but she soon discovers he's deeply in debt. (TCM)",0,0,The Gypsy and the Gentleman,en +37454,Maigret Lays a Trap,1958-01-29,119.0,,,tt0050669,,"Four women were murdered, each was knifed and, though they had their clothes torn, they weren't molested. As the famed police inspector Jules Maigret pieces the clues together, he comes to realize that for the elusive man that he suspects to be unmasked, he has to set him a trap.",0,0,Maigret tend un piège,fr +142881,Kommunist,1958-02-03,0.0,,,tt0051827,,Drama set to the Russian civil war of 1918,0,0,Коммунист,ru +84655,The Black Orchid,1958-02-11,94.0,,,tt0052631,More than a story of love... a story of life!,An aging widower fights family disapproval when he falls in love with a gangster's widow.,0,0,The Black Orchid,en +39435,Cowboy,1958-02-19,92.0,,,tt0051496,"THE REAL, TRUE STORY OF THE WEST!","Chicago hotel clerk Frank Harris dreams of life as a cowboy, and he gets his chance when, jilted by the father of the woman he loves, he joins Tom Reece and his cattle-driving outfit. Soon, though, the tenderfoot finds out life on the range is neither what he expected nor what he's been looking for...",0,0,Cowboy,en +134732,Daddy-O,1958-03-01,74.0,,,tt0052719,Alive!! With the Beat and the Heat of Today's Rock-N-Roll Generation!,"Phil, a part-time truck driver and singer who wears his pants far too high, meets a feisty platinum blonde who challenges him to a drag race through Griffith Park. When he is caught and loses his license, he meets up with the sketchy Frank Wooster who offers him a job singing in his new nightclub. When Phil discovers that his new job also includes drug running, he must fight to save his friends and himself.",0,0,Daddy-O,en +144471,"Cole Younger, Gunfighter",1958-03-30,78.0,,,tt0051482,"ROWDIEST, LUSTIEST AFFAIR EVER SEEN!",An outlaw must decide whether to stick his neck out for an innocent man.,0,0,"Cole Younger, Gunfighter",nl +60899,Brink of Life,1958-03-31,84.0,,,tt0052017,,Set in a hospital where three women meet either because they have been through an abortion or are due to give birth.,0,0,Nära livet,sv +40085,"The Long, Hot Summer",1958-04-03,115.0,,,tt0051878,The red-hot lowdown on a southern family...that people talked about in whispers!,"Ben Quick arrives in Frenchman's Bend, MS after being kicked out of another town for allegedly burning a barn for revenge. Will Varner owns just about everything in Frenchman's Bend and he hires Ben to work in his store. Will thinks his own son, Jody, who manages the store, lacks ambition and despairs of him getting his wife, Eula, pregnant. Will thinks his daughter, Clara, a schoolteacher, will never get married. He decides that Ben Quick might make a good husband for Clara to bring some new blood into the family",0,0,"The Long, Hot Summer",en +66967,The Night Heaven Fell,1958-04-05,91.0,,,tt0050193,The Hottest Exposure Since Man Created Film!,"Ursula, a young, sensuous French girl, arrives in a Spanish mountain community to visit her aunt and uncle. It isn't long before her uncle is killed by handsome stranger Lamberto and against her better judgement, Ursula falls in love with the killer...",0,0,Les bijoutiers du clair de lune,fr +44693,The Astounding She-Monster,1958-04-10,62.0,,,tt0050143,A creature from beyond the stars. EVIL... BEAUTIFUL... DEADLY...!,"When a meteor crashes to earth, out of it emerges a glowing, female creature who terrorizes a group of people living in the California mountains.",0,0,The Astounding She-Monster,en +1480,Touch of Evil,1958-04-23,95.0,,,tt0052311,THE STRANGEST VENGEANCE EVER PLANNED!,"Stark, perverse story of murder, kidnapping, and police corruption in Mexican border town.",829000,2247465,Touch of Evil,en +134435,Quantrill's Raiders,1958-04-27,68.0,,,tt0052103,The Hell-Horde they called The Butcher's Battalion!,A Civil War guerilla gang plans an attack on a Kansas arsenal.,0,0,Quantrill's Raiders,en +43119,Machine-Gun Kelly,1958-05-01,80.0,,,tt0051887,Without His Gun He Was Naked Yellow!,"Machine-Gun Kelly, the famous bank robber, seldom without his Thompson machine gun.",0,0,Machine-Gun Kelly,en +42402,The Left Handed Gun,1958-05-07,102.0,,,tt0051849,I don't run. I don't hide. I go where I want. I do what I want.,"When a crooked sheriff murder his employer, William ""Billy the Kid"" Bonney decides to avenge the death by killing the man responsible, throwing the lives of everyone around him into turmoil, and endangering the General Amnesty set up by Governor Wallace to bring peace to the New Mexico Territory.",0,0,The Left Handed Gun,en +211928,The Last Inch,1958-05-31,88.0,,,tt0167346,,A pilot and his twelve years old sun are going to shoot an underwater pictures but suddenly get into big troubles.,0,0,Posledniy Dyuym,ru +115054,The Space Children,1958-06-01,69.0,,,tt0052227,,A glowing brain-like creature arrives on a beach near a rocket test site via a teleportation beam. The alien communicates telepathically with the children of scientists. The kids start doing the alien's bidding as the adults try to find out what's happening to their unruly offspring.,0,0,The Space Children,en +38269,War of the Colossal Beast,1958-06-04,69.0,,394258,tt0052378,The towering terror from hell!,"Glenn Manning, ""The Amazing Colosasal Man,"" believed dead after falling from the Hoover Dam, reemerges in rural Mexico, brain damaged, disfigured, and very angry.",0,0,War of the Colossal Beast,en +29058,The Beast with a Million Eyes,1958-06-15,78.0,,,tt0048991,An unspeakable horror... Destroying... Terrifying!,An alien space craft lands in the desert. The alien takes over the minds of some of the local humans and animals and is able to see through them. The animals attack and the terror begins.,23000,0,The Beast with a Million Eyes,en +43113,The H-Man,1958-06-24,87.0,,,tt0051413,ALL H- BREAKS LOOSE!,"Fallout from hydrogen bomb tests is turning people into blobs of oozing, radioactive green goop that travel through sewers and have a taste for human flesh, in ""The H-Man"" (1958). Kenji Sahara, Akihiko Hirata star.",0,0,谷口 千吉,ja +3081,The Goddess,1958-06-24,104.0,,,tt0051667,Profound and astounding,"Booze, pills and loneliness mark a young actress' rise to stardom.",0,0,The Goddess,en +34084,I Bury the Living,1958-07-01,76.0,,,tt0051755,Out of a Time-Rotted Tomb Crawls an Unspeakable Horror!,"A newly appointed cemetery chairman discovers that, merely by inserting a black pin into a wall-sized map of the cemetery, he can cause the deaths of that plot's owner",0,0,I Bury the Living,en +116327,How to Make a Monster,1958-07-01,73.0,,,tt0051746,See the Ghastly Ghouls in Flaming Color!,"When master monster make-up man Pete Dumond is fired by the new bosses of American International studios, he uses his creations to exact revenge.",0,0,How to Make a Monster,en +42871,Gunman's Walk,1958-07-01,97.0,,,tt0051690,BLISTERING RAW DRAMA!,"Tab Hunter plays Ed Hackett, the son of gunslinger-turned-land baron Lee Hackett (Van Heflin) in this wide-screen western.",0,0,Gunman's Walk,en +382125,Welcome to Norway,2016-03-04,90.0,,,tt5248342,,A couple decide to open a home for refuges in the remote cold mountains of Norway.,0,0,Welcome to Norway,no +4955,Mädchen in Uniform,1958-07-07,95.0,,,tt0051964,,"After the death of her parents young girl Manuela von Meinhardis is sent to a boarding school where Prussian drill rules the education. Desperately seeking love and warmth in Manuela's heart special emotions for the only human lady teacher, Fraeulein von Bernburg, start growing. Manuela falls in love with her. It's just a matter of time until that forbidden love becomes known what immediately leads to disaster. Though Elisabeth von Bernburg has never returned the love she is forced to leave the school; Manuela gets a severe punishment, like someone who has committed a crime.",0,0,Mädchen in Uniform,de +43143,The Crawling Eye,1958-07-07,84.0,,,tt0052320,The nightmare terror of the slithering eye that unleashed agonizing horror on a screaming world!,Alien creatures invade a remote mountain resort in Switzerland.,0,0,The Trollenberg Terror,en +3164,Frankenstein 1970,1958-07-20,83.0,,,tt0051630,The One...The Only KING OF MONSTERS as the new demon of the atomic age!,The baron's grandson rents the family castle to a TV crew to fund his atomic revival of the family monster.,0,0,Frankenstein 1970,en +47324,Cairo Station,1958-07-31,77.0,,,tt0051390,,"Kinawi, a physically challenged peddler who makes his living selling newspapers in the central Cairo train station, is obsessed by Hannouma, an attractive young woman who sells drinks. While she treats Kinawi in a sympathetic way and jokes with him about a possible relationship, She is actually in love with Abu Sri', a strong and respected porter at the station who is struggling to unionize his fellow workers to combat their boss' exploitative and abusive treatment.",0,0,باب الحديد,ar +109122,Night of the Blood Beast,1958-08-01,62.0,,,tt0051993,No girl was safe as long as this head-hunting thing roamed the land!,"An astronaut is killed on re-entry to Earth, but his body is seeded with rapidly-gestating aliens.",0,0,Night of the Blood Beast,en +241574,Wild Heritage,1958-08-01,78.0,,,tt0052393,,Travails of a family heading West in a covered wagon.,0,0,Wild Heritage,en +43114,Buchanan Rides Alone,1958-08-01,78.0,,,tt0051437,DOUBLE HANGING -- DOUBLE THRILLS!,A Texan pits a powerful family against itself to save a Mexican from hanging.,0,0,Buchanan Rides Alone,en +43142,The Naked and the Dead,1958-08-06,131.0,,,tt0051978,,Fighting men in World War II learn the value of courage and quickness at the risk of losing their lives.,0,0,The Naked and the Dead,en +114503,White Wilderness,1958-08-12,72.0,,,tt0052389,From The Top Of The World!,A fabulous new adventure in exciting entertainment.,0,0,White Wilderness,en +43141,The Matchmaker,1958-08-12,103.0,,,tt0051913,,Thornton Wilder's tale of a matchmaker who desires the man she's supposed to be pairing with another woman.,0,0,The Matchmaker,en +76084,Tarzan's Fight for Life,1958-08-15,86.0,,360344,tt0052275,,"Dr. Sturdy is trying to establish a modern hospital in the jungle. His efforts are strongly opposed by Futa, the witch doctor, and Ramo, a native warrior.",0,0,Tarzan's Fight for Life,en +41038,The Hideous Sun Demon,1958-08-28,74.0,,,tt0052888,The Blaze Of The Sun Made Him A Monster!,"After exposure to radiation, an atomic research scientist finds himself changing into a murderous, lizard-like creature every time he is exposed to sunlight.",0,0,The Hideous Sun Demon,en +70864,The Day the Sky Exploded,1958-09-04,82.0,,,tt0051951,Terror From The Sky! Earth Attacked From Outer Space!,"Scientists discover that a group of meteors are hurtling on a collison course with Earth, and if they hit, the planet will be destroyed.",0,0,La morte viene dallo spazio,it +140032,The Fountain of Youth,1958-09-16,27.0,,,tt0166198,,"A short film was directed by Orson Welles, which was based on the short story ""Youth from Vienna""",0,0,The Fountain of Youth,en +66966,Love Is My Profession,1958-09-17,105.0,,,tt0051579,,"Married French lawyer Andre defends succesfully the case of Yvette, who committed a robbery. He falls in love with her, but she isn't true to him.",750000,0,En cas de malheur,fr +46149,Stolen Desire,1958-09-30,90.0,,,tt0052016,,A rumbunctious and ribald tale of a troupe of travelling actors who alternate highlights of kabuki theatre with strip shows.,0,0,Nusumareta yokujo,ja +27446,The Fearmakers,1958-10-01,85.0,,,tt0051605,,A Korean War veteran discovers his Washington-based PR firm has been taken over by Communist infiltrators.,0,0,The Fearmakers,en +43117,I Married a Monster from Outer Space,1958-10-01,78.0,,,tt0051756,"Shuddery things from beyond the stars, here to breed with human women!",A young bride suspects her husband has been replaced by a space invader.,0,0,I Married a Monster from Outer Space,en +48937,"Venice, the Moon and You",1958-10-03,107.0,,,tt0052352,,,0,0,"Venezia, la Luna E Tu",it +63681,The Cheaters,1958-10-10,120.0,,,tt0052318,,"Bob Letellier, a good looking rich kid who studies science, makes the acquaintance of Alain, a cynical and immoral young man. The latter introduces him to the existentialist circles of Saint-Germain-des-Prés. Bob is invited to a party and becomes Clo's lover, a rich heiress.",0,0,Les Tricheurs,fr +77794,I Was Monty's Double,1958-10-21,101.0,,,tt0051759,The Gigantic Hoax of World War II,The incredible but true story of how an impersonator was recruited to impersonate General Montgomery to mislead the German's about his intentions before the North Africa campaign.,0,0,I Was Monty's Double,en +118444,Onionhead,1958-10-25,111.0,,,tt0052030,The Ship's Cook who has the Coast Guard in a Stew!,"Follow-up to Andy Griffith's big hit in ""No Time for Sergeants"" moves the action to the Coast Guard and WW II.",0,0,Onionhead,en +216363,The Eternal Rainbow,1958-10-28,105.0,,,tt0051828,,"Two men at an ironworks encounter roadblocks: the first does not have the grades to get a job, while the other finds himself falling for a co-worker.",0,0,Kono ten no niji,ja +25633,Party Girl,1958-10-28,99.0,,,tt0052050,"THE 'MOUTHPIECE': ""They're crooked...but the money's good!"" MR. BIG: ""I run this town...and nobody quits me!"" THE PUNK: Never let him get a girl in a corner...","Slick lawyer Thomas Farrell has made a career of defending mobsters in trials. It's not until he meets a lovely showgirl at a mob party that he realizes that there's more to life then winning trials. Farrell tries to quit the racket, but mob boss Rico Angelo threatens to hurt the showgirl if Farrell leaves him.",0,0,Party Girl,en +50669,The Mugger,1958-11-01,74.0,,,tt0151666,,A police shrink tries to identify and capture an elusive mugger that scars his female victims before stealing their purse.,0,0,The Mugger,en +43139,The Horse's Mouth,1958-11-11,95.0,,,tt0051739,,"A somewhat vulgar but dedicated painter searches for the perfect realization of his artistic vision, much to the chagrin of others. + Playing Gulley Jimson, a deceptively scruffy bum, Alec Guinness captures the essence of an artist possessed by the need to create. Guinness' performance and his Oscar -nominated screenplay create both stirring drama and hilarious tomfoolery as the vagrant Jimson races from bar to pawnshop to wealthy art patron to fulfill his artistic quest. Kay Walsh is brilliant as the cantankerous barmaid doomed to help Jimson on his wildest mission yet.",0,0,The Horse's Mouth,en +28577,I Want to Live!,1958-11-18,120.0,,,tt0051758,Barbara Graham's Last Scream From Gas Chamber...,"Barbara Graham is a woman with dubious moral standards, often a guest in seedy bars. She has been sentenced for some petty crimes. Two men she knows murder an older woman. When they get caught they start to think that Barbara has helped the police arresting them. As a revenge they tell the police that Barbara is the murderer.",0,0,I Want to Live!,en +86920,Floods of Fear,1958-11-18,84.0,,,tt0052812,A Beauty Marooned With MURDER!,A man (Howard Keel) framed for murder escapes from prison during a flood and helps a young woman (Anne Heywood) in distress.,0,0,Floods of Fear,en +1377,Houseboat,1958-11-19,110.0,,,tt0051745,It All Happens Happily on a Heaven of a Houseboat!,An Italian socialite on the run signs on as housekeeper for a widower with three children.,0,0,Houseboat,en +30637,Corridors of Blood,1958-12-01,86.0,,,tt0051542,Tops in Terror!,"An 1840s British surgeon, experiments with anesthetic gases in an effort to make surgery pain-free. While doing so, his demonstration before a panel of his peers ends in a horrific mishap with his patient awakening under the knife; he is forced to leave his position in disgrace. To complicate matters, he becomes addicted to the gases and gets involved with a gang of criminals, led by Black Ben and his henchman Resurrection Joe.",146000,0,Corridors of Blood,en +94480,The Lost Missile,1958-12-01,70.0,,,tt0051881,The thing that came from outer hell ... to burn the world alive!,Scientists try to stop a mysterious missile from destroying the Earth.,0,0,The Lost Missile,en +148435,Pekka ja Pätkä Suezilla,1958-12-08,74.0,,,tt0049607,,,0,0,Pekka ja Pätkä Suezilla,fi +37451,The Inn of the Sixth Happiness,1958-12-11,158.0,,,tt0051776,,"All her life Englishwoman Gladys Aylward knew that China was the place where she belonged. Not qualified to be sent there as a missionary, Gladys works as a domestic to earn the money to send herself to a poor, remote village. There she eventually lives a full and happy life: running the inn, acting as ""foot inspector"", advising the local Mandarin and even winning the heart of mixed race Captain Lin Nan. But Gladys discovers her real destiny when the country is invaded by Japan and the Chinese children need her to save their lives. Based on a true story.",0,0,The Inn of the Sixth Happiness,en +209248,Gräfin Mariza,1958-12-17,,,,tt0051683,,,0,0,Gräfin Mariza,de +38724,Some Came Running,1958-12-18,137.0,,,tt0052218,Everyone knew Dave was back in town ... and woman-trouble must be close behind !,"Dave Hirsch, a writer and army veteran, returns to 1948 Parkman, Indiana, his hometown. His prosperous brother introduces him to Gwen French...",0,0,Some Came Running,en +96935,The Naked Maja,1958-12-20,111.0,,,tt0051891,Now she is yours...the matchless...the shameless beauty who lives forever as The Naked Maja!,A historical fiction based on the lives of artist Goya and the Duchess of Alba,0,0,The Naked Maja,en +211710,A Walk in the Old City of Warsaw,1958-12-31,18.0,,,tt0173231,,,0,0,Spacerek staromiejski,en +210126,Mail Early for Xmas,1959-01-01,2.0,,,tt0033865,,A Norman McLaren Animation Short Film.,0,0,Mail Early for Xmas,en +86413,"Come Back, Africa",1959-01-01,95.0,http://comebackafrica.com/,,tt0049087,,"Come Back, Africa chronicles the life of Zachariah, a black South African living under the rule of the harsh apartheid government in 1959.",0,0,"Come Back, Africa",en +32623,Night of the Ghouls,1959-01-01,69.0,,,tt0156843,,Phony spiritualist raises the dead.,0,0,Night of the Ghouls,en +60193,Arrangiatevi!,1959-01-01,0.0,,421566,tt0052575,,,0,0,Arrangiatevi!,it +63194,The Diary of an Unknown Soldier,1959-01-02,17.0,,,tt0315488,,"A short story narrated by an unknown British soldier who reveals his hopes, fears, and disillusionment while heading into battle against the German army.",0,0,The Diary of an Unknown Soldier,en +71041,The Tiger of Eschnapur,1959-01-22,101.0,,378025,tt0052295,Der deutsche Millionen-Film!,"In Eschnapur, a German architect saves the life of the Maharajah's favorite temple dancer and becomes Maharajah's friend but their friendship is tested when the architect and the dancer fall in-love, triggering the Maharajah's vengeful ire.",0,0,Der Tiger von Eschnapur,de +53767,Kaagaz Ke Phool,1959-02-01,148.0,,,tt0052954,,"The film tells, in flashback, the story of Suresh Sinha (Guru Dutt), a famous film director and his relationship with an aspiring actress.",0,0,Kaagaz Ke Phool,hi +76714,The Journey,1959-02-19,126.0,,,tt0052950,,A Communist officer falls hard for a married woman trying to escape from Hungary.,0,0,The Journey,en +239091,Forbidden Island,1959-03-01,66.0,,,tt0052818,,Divers search for a sunken treasure.,0,0,Forbidden Island,en +43093,The Giant Behemoth,1959-03-03,80.0,,,tt0052611,The biggest thing since creation!,Marine atomic tests cause changes in the ocean's ecosystem resulting in dangerous blobs of radiation and the resurrection of a dormant dinosaur which threatens London.,0,0,"Behemoth, the Sea Monster",en +62855,Prince of Space,1959-03-19,121.0,,,tt0053464,,"When an alien force tries to invade Earth to steal a powerful new rocket fuel, a mysterious hero intervenes.",0,0,遊星王子,ja +15944,The Shaggy Dog,1959-03-19,104.0,,294519,tt0053271,"""I was a Teen-age boy!""","Through an ancient spell, a boy changes into a sheepdog and back again. It seems to happen at inopportune times and the spell can only be broken by an act of bravery....",0,0,The Shaggy Dog,en +35921,Compulsion,1959-04-01,103.0,,,tt0052700,,"Two close friends, arrogantly and without remorse, kidnap and murder a young boy. They are caught and put to trial where their larger-than-life defense lawyer blames the Establishment for their actions.",0,0,Compulsion,en +90030,The Monster of Piedras Blancas,1959-04-22,71.0,,,tt0051947,HE PREYS ON HUMAN FLESH!,An old lighthouse keeper who lives with his daughter secretly keeps a prehistoric fish-man by feeding it scraps and fish. One day he misses the feeding and all hell breaks loose.,0,0,The Monster of Piedras Blancas,en +896,The World of Apu,1959-05-01,117.0,,158391,tt0052572,,Apu is a jobless ex-student dreaming vaguely of a future as a writer. An old college friend talks him into a visit up-country to a village wedding....,0,16000,অপুর সংসার,bn +18447,The Young Land,1959-05-01,89.0,,,tt0053461,,An American gunslinger kills a Mexican man in California immediately after the Mexican-American war. The killer is arrested and put on trial for murder with the Hispanic population waiting to learn of American justice.,0,0,The Young Land,en +37305,Pork Chop Hill,1959-05-29,97.0,,,tt0053183,Bold! Blunt! Blistering! The battle picture without equal!,American GI's must retake a barren hill in Korea that has been overrun by Red Chinese troops. The ensuing battle becomes a meat grinder for American and Chinese alike.,0,0,Pork Chop Hill,en +6643,The Unforgiven,1960-01-01,125.0,,,tt0054428,A NEW TRIUMPH FROM ACADEMY AWARD WINNER JOHN HUSTON,The neighbors of a frontier family turn on them when it is suspected that their adopted daughter was stolen from the local Kiawa tribe.,0,0,The Unforgiven,en +35139,Teenagers from Outer Space,1959-06-01,86.0,,,tt0053337,Thrill-crazed space kids blasting the flesh off humans!,"A young alien falls for a pretty teenage Earth girl and they team up to try to stop the plans of his invading cohorts, who intend to use Earth as a food-breeding ground for giant lobsters from their planet.",0,0,Teenagers from Outer Space,en +162755,Blackbird,1959-06-05,4.0,,,tt0051923,,A surreal blackbird made of lines is dancing to the music,0,0,Le merle,fr +5544,Hiroshima Mon Amour,1959-06-10,90.0,,,tt0052893,From the measureless depths of a woman's emotions...,A French actress filming an anti-war film in Hiroshima has an affair with a married Japanese architect as they share their differing perspectives on war.,0,0,Hiroshima mon amour,fr +43095,Odd Obsession,1959-06-23,107.0,,,tt0052957,,A middle-aged husband of a younger woman finds her youth intimidating to the point that he cannot become aroused. His solution involves the introduction of his daughter's lover to his wife.,0,0,鍵,ja +51947,Shake Hands with the Devil,1959-06-24,111.0,,,tt0053272,A story of love and hate...and the sudden sound of guns!,"In 1921 Dublin, the IRA battles the ""Black & Tans,"" special British forces given to harsh measures. Irish-American medical student Kerry O'Shea hopes to stay aloof, but saving a wounded friend gets him outlawed, and inexorably drawn into the rebel organization...under his former professor Sean Lenihan, who has ""shaken hands with the devil"" and begun to think of fighting as an end in itself. Complications arise when Kerry falls for a beautiful English hostage, and the British offer a peace treaty that is not enough to satisfy Lenihan.",0,0,Shake Hands with the Devil,en +131898,This Earth Is Mine,1959-06-26,124.0,,,tt0053355,,"Set during the Prohibition era, when wine makers were financially challenged and had to decide whether or not they wanted to cooperate with bootleggers to survive.",0,0,This Earth Is Mine,fr +19715,Donald in Mathmagic Land,1959-06-26,27.0,,,tt0052751,,"Disney used animation here to explain through this wonderful adventure of Donald how mathmatics can be usuful in our real life. Through this journey Donald shows us how mathmatics are not just numbers and charts, but magical living things.",0,0,Donald in Mathmagic Land,en +37481,Day of the Outlaw,1959-07-01,92.0,,,tt0052724,Watch what happens to the women... watch the west explode!,Rival cattlemen join forces to fight off outlaws.,0,0,Day of the Outlaw,en +84508,The Ghost of Yotsuya,1959-07-01,76.0,,,tt0155278,,The ghost of a samurai's wife takes revenge on her husband.,0,0,東海道四谷怪談,ja +143092,Don't Give Up the Ship,1959-07-03,89.0,,,tt0052749,The Funniest Story of High-Seas Hilarity Ever to Set Audiences Adrift in Helpless Hysteria!,"The Navy expects a veteran (Jerry Lewis) to pay for the ship he commanded, as they have no record of its return.",0,0,Don't Give Up the Ship,de +43205,Tarzan's Greatest Adventure,1959-07-08,88.0,,360344,tt0053334,Adventure's Mightiest Hero Lives His Mightiest Adventure!,"The greatest adventure of jungle king Tarzan. Four British villains raid a settlement to obtain explosives for use in a diamond mine. In doing so they nearly destroy the settlement, so Tarzan pursues them to their mine.",0,0,Tarzan's Greatest Adventure,en +267389,Der Rest ist Schweigen,1959-07-21,0.0,,,tt0053217,,,0,0,Der Rest ist Schweigen,de +80320,These Thousand Hills,1959-07-24,96.0,,,tt0053350,All the fire . . . power . . . drama . . . of A.B. Guthrie's monumental best-seller!,"A cowboy (Don Murray) tries for easy money with his partner, then tries ranching with a saloon hostess's (Lee Remick) money.",0,0,These Thousand Hills,fr +88564,Fate of a Man,1959-08-01,103.0,,,tt0053317,,"The story of a man (Andrey Sokolov) whose life was ruthlessly crippled by World War II. His wife and daughters were killed during the bombing of his village, he spent some time as a prisoner, and his only son was killed in action only a few days before the victory...",0,0,Sudba Cheloveka,ru +40957,It Happened to Jane,1959-08-05,97.0,,,tt0052933,This movie is bigger than all of us!,"Jane Osgood runs a lobster business, which supports her two young children. Railroad staff inattention ruins her shipment, so with her lawyer George, Jane sues Harry Foster Malone, director of the line and the ""meanest man in the world"".",0,0,It Happened to Jane,en +28063,"Caltiki, the Immortal Monster",1959-08-07,76.0,,,tt0052667,Slimy Glob of Doom Engulfs The World!,Academic researchers are chased by a nuclear-hot specimen of ancient Mayan blob.,0,0,Caltiki il mostro immortale,it +199155,Face of Fire,1959-08-09,79.0,,,tt0052793,Who Would Dare Lift the Mask!,"A local handyman saves a child in a fire, but the burns he receives disfigure his face so much that the townspeople avoid him.",0,0,Face of Fire,en +121234,But Not For Me,1959-08-19,111.0,,,tt0052662,It's a scream!,"The Broadway theatre world provides the background for Walter Lang's 1959 comedy about a veteran producer (Clark Gable) falling in love with his twenty-something secretary (Carroll Baker). The cast also includes Lee J. Cobb, Lilli Palmer, Barry Coe, Thomas Gomez and Charles Lane.",0,0,But Not For Me,en +102913,The Chasers,1959-08-24,94.0,,,tt0052939,,"A love triangle of two men who desire the same woman. We follow them through three days of grouse hunting, a chase that ends violently. Or does it?",0,0,Jakten,no +89688,Araya,1959-08-31,90.0,http://www.arayafilm.com/,,tt0051372,,"""Araya"" is an old natural salt mine located in a peninsula in northeastern Venezuela which was still, by 1959, being exploited manually five hundred years after its discovery by the Spanish. Margot Benacerraf captures in images, the life of the ""salineros"" and their archaic methods of work before their definite disappearance with the arrival of the industrial exploitation.",0,0,Araya,es +94135,Yesterday's Enemy,1959-09-10,95.0,,,tt0053458,War Is Hell!,"Set during the Burma Campaign of World War 2, this is the story of courage and endurance of the soldiers struggling at close quarters against the enemy. The film examines the moral dilemmas ordinary men face during war, when the definitions of acceptable military action and insupportable brutality become blurred and distorted",0,0,Yesterday's Enemy,en +177474,That Kind of Woman,1959-09-11,92.0,,,tt0053349,,A young GI (Tab Hunter) falls in love with a kept woman (Sophia Loren) on a train to New York.,0,0,That Kind of Woman,en +18990,The Mummy,1959-09-29,86.0,,138965,tt0053085,Torn from the tomb to terrify the world!,"One by one the archaeologists who discover the 4,000-year-old tomb of Princess Ananka are brutally murdered. Kharis, high priest in Egypt 40 centuries ago, has been brought to life by the power of the ancient gods and his sole purpose is to destroy those responsible for the desecration of the sacred tomb. But Isobel, wife of one of the explorers, resembles the beautiful princess, forcing the speechless and tormented monster to defy commands and abduct Isobel to an unknown fate.",0,0,The Mummy,en +27045,The Crimson Kimono,1959-10-01,82.0,,,tt0052713,"YES, this beautiful American girl in the arms of a Japanese boy!",A Los Angeles detective (Glenn Corbett) and his Japanese partner (James Shigeta) woo an artist (Victoria Shaw) while solving a stripper's murder.,0,0,The Crimson Kimono,en +78572,All the Boys Are Called Patrick,1959-10-03,21.0,,,tt0051102,,"Students Veronique and Charlotte meet the same man separately, who makes a date with each of them separately the next evening. When they both show up, he shows up, too, with a third woman.",0,0,"Charlotte et Véronique, ou Tous les garçons s'appellent Patrick",fr +57103,The Best of Everything,1959-10-09,121.0,,,tt0052619,The Female Jungle EXPOSED!,An expose of the lives and loves of Madison Avenue working girls and their higher ups.,0,0,The Best of Everything,en +26983,Odds Against Tomorrow,1959-10-15,96.0,,,tt0053133,"He knew where $50,000 lay begging to be STOLEN!",An old-time crook plans a heist. When one of his two partners is found out to be a black man tensions flare.,0,0,Odds Against Tomorrow,en +27061,Two Men in Manhattan,1959-10-16,84.0,,,tt0052733,,Two French journalists become embroiled in a criminal plot in New York City involving a disappeared United Nations diplomat.,0,0,Deux hommes dans Manhattan,fr +55823,The Great War,1959-10-28,137.0,,,tt0052861,,"Italy, 1916. Oreste Jacovacci and Giovanni Busacca are called, as all the Italian youths, to serve the army in the WWI. They both try in every way to avoid serving the army.",0,0,La grande guerra,it +231009,Sogno di una notte di mezza sbornia,1959-10-28,,,,tt0156091,,,0,0,Sogno di una notte di mezza sbornia,it +100661,Terror Is a Man,1959-11-01,89.0,,,tt0053344,For People With NERVES Of Iron Only!,A mad scientist transforms a panther into a man-like creature that escapes and goes on a murderous rampage.,0,0,Terror Is a Man,en +48412,Battle of the Coral Sea,1959-11-01,86.0,,,tt0052606,,A US submarine and its crew are captured by the Japanese on the eve of a major WWII battle.,0,0,Battle of the Coral Sea,en +64204,Pull My Daisy,1959-11-11,26.0,,,tt0052100,,"Pull My Daisy is a film that typifies the Beat Generation. Directed by Robert Frank and Alfred Leslie, Daisy was adapted by Jack Kerouac from the third act of his play, Beat Generation; Kerouac also provided improvised narration.",0,0,Pull My Daisy,en +297560,Το Ξύλο Βγήκε Από Τον Παράδεισο,1959-11-16,98.0,,,tt0177293,,,0,0,Το Ξύλο Βγήκε Από Τον Παράδεισο,el +125229,Samurai Vendetta,1959-11-22,109.0,,,tt0199580,,Two amiable samurai wind up on opposite sides of the vendetta between Lord Asano's retainers and the family of Lord Kira that led to the famous revenge of the 47 Ronin.,0,0,薄桜記,ja +262945,"Am Tag, als der Regen kam",1959-11-24,88.0,,,tt0052553,,Motorcylce driving kids in pre-war Germany commit crime at night.,0,0,"Am Tag, als der Regen kam",de +13383,Santa Claus,1959-11-26,94.0,,,tt0053241,Better Than a Visit from Saint Nick Himself!,"Pitch, the mean-spirited devil, is trying to ruin Christmas. Santa Claus teams up with Merlin the Magician and the children of the world in order to save the day!",0,0,Santa Claus,es +46592,Ballad of a Soldier,1959-12-01,88.0,,,tt0052600,,"During World War II, 19 year old soldier Alyosha gets a medal as a reward for a heroic act at the front. Instead of this medal he asks for a few days leave to visit his mother and repair the roof of their home. On the train eastwards he meets Shura who is on her way to her aunt. In those few days traveling together they fall in love.",0,0,Баллада о солдате,ru +81720,Gangster Story,1959-12-01,65.0,,,tt0053850,Filmed where it actually happened... The true story of Jack Martin,"Actor Walter Matthau directed his first and only feature film with the black-and-white crime drama Gangster Story. In an unusual noncomedic role, Matthau plays Jack Martin, a local gangster who wants to run his own crime syndicate in the neighborhood run by Earl Dawson (Bruce McFarlan). They eventually team up and plan a heist. Carol Grace plays the reform-minded girlfriend.",75000,0,Gangster Story,en +18696,The Giant of Marathon,1959-12-03,90.0,,,tt0052604,,A Greek soldier leads the fight against an invading Persian army.,0,0,La battaglia di Maratona,it +280045,El gafe,1959-12-07,,,,tt0051644,,,0,0,El gafe,es +4820,Never So Few,1959-12-07,125.0,,,tt0053108,Kiss by kiss the time ran out and never so few were the moments left for love!,A U.S. military troop takes command of a band of Burmese guerillas during World War II.,0,0,Never So Few,en +690,Pickpocket,1959-12-16,75.0,,,tt0053168,,Michel is released from jail after serving a sentence for thievery. His mother dies and he resorts to pickpocketing as a means of survival.,0,0,Pickpocket,fr +179188,Jungle Cat,1959-12-16,69.0,,,tt0053977,,"This final True-Life Adventure would also appear to be one of the best, as we go into the South American jungle to observe the jaguar. Jungle Cat is more intimate than its kin, allowing individual animal characters to be developed. Central to the cast is a pair of jaguars (one ebony), whose fighting leads to love and, not long after, two babies (one resembling each parent).",0,0,Jungle Cat,en +262528,The Purple Gang,1959-12-18,85.0,,,tt0054218,When machine gun mania rocked the nation!,"The story of the infamous Purple Gang - a ring of bootleggers, hijackers and killers in 1920's Detroit.",0,0,The Purple Gang,en +62036,Fiasco in Milan,1959-12-19,0.0,,,tt0052589,,"The usual gang of robbers in engaged by a thief from Milan to steal a suitcase full of money, but troubles will menace the success of the operation.",0,0,Audace colpo dei soliti ignoti,it +14698,"Suddenly, Last Summer",1959-12-22,114.0,,,tt0053318,"Suddenly, last summer, Cathy knew she was being used for something evil!",The only son of wealthy widow Violet Venable dies while on vacation with his cousin Catherine. What the girl saw was so horrible that she went insane; now Mrs. Venable wants Catherine lobotomized to cover up the truth.,3000000,0,"Suddenly, Last Summer",en +63486,Magic Boy,1959-12-25,83.0,,,tt0053275,,"A young Japanese boy climbs a mountain in search of a magic wizard. The youth finds the wizard, and is tutored by him. Reinforced with magic powers, the boy eventually fights, and defeats the evil witches of down under.",0,0,Shonen Sarutobi Sasuke,ja +62472,Battle in Outer Space,1959-12-26,90.0,,,tt0053388,SPACE DECLARES WAR ON EARTH - OUTLAW PLANET CAPTURES THE MOON!,The nations of the Earth unite in a common cause to fight off an invader from outer space.,0,0,宇宙大戦争,en +82368,Love and Larceny,1960-01-01,101.0,,,tt0054068,,,0,0,Il mattatore,it +296136,Oko Wykol,1960-01-01,2.0,,,tt0175001,,Early silent short film by Jerzy Skolimowski.,0,0,Oko Wykol,en +89751,The Beatniks,1960-01-01,78.0,,,tt0053640,"The wild, weird world of the Beatniks!...Sullen rebels, defiant chicks...searching for a life of their own! The pads...the jazz...the dives...those frantic ""way-out"" parties...beyond belief!",A young singer's chance at fame is threatened by his hoodlum pals.,0,0,The Beatniks,en +116352,Monkey's Teeth,1960-01-01,11.0,,,tt0309506,,"Monkey's Teeth, a slow and ugly fairy tale based on the drawings of inmates at a psychiatric clinic where LaLoux worked.",0,0,Les dents du singe,fr +60046,Il vigile,1960-01-01,,,,tt0054442,,,0,0,Il vigile,it +51120,Peter Pan,1960-01-01,100.0,,,tt0054176,,"In this magical tale about the boy who refuses to grow up, Peter Pan and his mischievous fairy sidekick Tinkerbell visit the nursery of Wendy, Michael and John Darling. With a sprinkling of pixie dust, Peter and his new friends fly out the nursery window and over London to Never-Never Land. The children experience many wonderful and exciting adventures with the Lost Boys, Tiger Lily's Indian tribe, and Peter's arch enemy the dastardly pirate Captain Hook.",0,0,Peter Pan,en +44519,Mughal-e-Azam,1960-01-01,173.0,,,tt0054098,,"Set in the 16th century AD, the movie brings to life the tale of the doomed love affair between the Mughal Crown Prince Saleem and the beautiful, ill-fated court dancer, whose fervor and intensity perpetrates a war between the prince and his father the great Mughal Emperor Akbar, and threatens to bring an empire to its knees.",0,0,Mughal-e-Azam,hi +31417,Eyes Without a Face,1960-01-11,90.0,,,tt0053459,,Professor Genessier is guilt-stricken after his daughter's face is disfigured in a car accident. He intends to rebuild his daughter's face via grafting skin tissue; he only needs a supply of donors to experiment on.,0,0,Les Yeux sans visage,fr +251421,Private Property,1960-01-20,79.0,,,tt0054209,The boldest story of a planned seduction ever to scald the screen!,A hoodlum (Corey Allen) plots to seduce a lonely housewife (Kate Manx) and turn her over to his virginal friend (Warren Oates).,0,0,Private Property,en +31634,The Amazing Transparent Man,1960-02-01,57.0,,,tt0053593,Invisible and Deadly!,"An ex-major forces a scientist to develop a invisibility formula, with which he plans to create an invisible army and sell it to the highest bidder. However there are side effects to the formula.",0,0,The Amazing Transparent Man,en +52203,The Flesh and the Fiends,1960-02-02,97.0,,,tt0052811,Coffins Looted! Cadavers Dissected!,Edinburgh surgeon Dr. Robert Knox requires cadavers for his research into the functioning of the human body; local ne'er-do-wells Burke and Hare find ways to provide him with fresh specimens...,0,0,The Flesh and the Fiends,en +43046,The Rise and Fall of Legs Diamond,1960-02-03,101.0,,,tt0054243,The Wildest Mobster of the Roaring Twenties!,The New York killer (Ray Danton) goes from mob bodyguard to mob boss to mob target.,0,0,The Rise and Fall of Legs Diamond,en +11656,The Virgin Spring,1960-02-08,89.0,,,tt0053976,,"A harrowing tale of faith, revenge, and savagery in medieval Sweden.",0,0,Jungfrukällan,sv +299,Ocean's Eleven,1960-02-17,127.0,,,tt0054135,In any other town they'd be the bad guys...,Ocean's Eleven is the 'Rat-Pack' comedy about robber Danny Ocean and his gang's attempt to rob the five biggest casinos in Las Vegas.,0,0,Ocean's Eleven,en +43045,The Hypnotic Eye,1960-02-27,79.0,,,tt0053931,BEWARE HIS HYPNOTIC POWER that turns human flesh into helpless robots!,A stage hypnotist's (Jacques Bergerac) ugly helper (Allison Hayes) suggests terrible things to spellbound beauties.,365000,0,The Hypnotic Eye,en +1673,Comanche Station,1960-03-01,73.0,,,tt0053729,The One-Man War Against The Comancheros!,"A man saves a woman who had been kidnapped by Comanches, then struggles to get both of them home alive.",0,0,Comanche Station,en +83995,The Angry Silence,1960-03-10,95.0,,,tt0053602,"Rough, Tough, Deeply Moving",A young factory worker stands alone against a proposed strike.,0,0,The Angry Silence,en +156917,Pekka ja Pätkä neekereinä,1960-03-11,0.0,,,tt0054169,,,0,0,Pekka ja Pätkä neekereinä,fi +64605,Seven Thieves,1960-03-12,102.0,,,tt0054295,The robbery that rocked Monte Carlo!,A discredited professor and a sophisticated thief decide to join together and pick a team to pull off one last job--the casino vault in Monte Carlo.,0,0,Seven Thieves,en +269,Breathless,1960-03-16,90.0,,,tt0053472,The film that was banned for 4 years. Why..?,A young car thief kills a policeman and tries to persuade a girl to hide in Italy with him.,0,0,À bout de souffle,fr +29259,Le Trou,1960-03-18,132.0,,,tt0054407,The greatest film about prison life,"An imprisoned man, awaiting trial for the attempted murder of his wife, is transferred to another cell, where his fellow prisoners are planning a jailbreak. He decides to go along with the elaborate plan, and the cellmates attempt to tunnel their way to freedom. Le Trou represents the last film of director Jacques Becker, who died shortly after its completion.",0,0,Le Trou,fr +59249,Vacations in Majorca,1960-03-25,98.0,,,tt0054433,,"Ugly, persistent, and (initially) annoying admirer pursues a beautiful actress. At first he is laughed of, especially by his ultra handsome rival, but with his firm insistence, and gradually emerging charm, he seduces the lady, to the total shocked surprise of his rival.",0,0,Brevi amori a Palma di Majorca,it +358980,Apocalipsis sobre el río amarillo,1960-03-25,0.0,,,tt0052570,,,0,0,Apocalipsis sobre el río amarillo,it +86297,Tall Story,1960-04-06,91.0,,,tt0054367,SUCH FUN! That college girl who can't help lovin' tall boys!...,Love puts a college basketball star into a tailspin.,0,0,Tall Story,en +18977,The Boy and the Pirates,1960-04-13,82.0,,,tt0053672,Boy Against Buccaneer!,Young boy is magically transported back in time to a pirate ship on the high seas. Jimmy desires to be a pirate when one day he discovers a magic bottle on the beach. He makes a wish and suddenly finds himself aboard Blackbeard's ship. Soon he realizes that being a pirate isn't what he expected.,0,0,The Boy and the Pirates,en +122019,Macario,1960-05-09,91.0,,,tt0054042,"Macabre, haunting and wonderful","Poor, hungry peasant Macario longs for just one good meal on the Day of the Dead. After his wife cooks a turkey for him, he meets three apparitions, the Devil, God, and Death. Each asks him to share his turkey, but he refuses all except Death. In return, Death gives him a bottle of water which will heal any illness. Soon, Macario is more wealthy than the village doctor, which draws the attention of the feared Inquisition",0,0,Macario,es +5165,L'Avventura,1960-05-15,143.0,,441439,tt0053619,A new adventure in filmmaking...,"A woman disappears during a Mediterranean boating trip. During the search for the woman, her lover and her best friend become attracted to each other.",0,0,L'avventura,it +539,Psycho,1960-06-16,109.0,,119674,tt0054215,The master of suspense moves his cameras into the icy blackness of the unexplored!,"When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fine… until Marion decides to take a shower.",806948,32000000,Psycho,en +88529,Good-for-Nothing,1960-07-05,88.0,,,tt0053876,,"Yoshida's first feature follows the lives of young students against a background of jazz, emptiness and boredom. The plot is fairly simple: a ""good-for-nothing"" from a poor background falls in love with the young secretary of his rich friend's father. The woman senses good in him and tries to lead him on the right path.",0,0,ろくでなし,ja +155128,The Body,1974-03-06,89.0,,,tt0071362,,"A beautiful woman who lives on an island with her abusive husband, entices a young man into a murder-for-money plot.",0,0,Il corpo,en +121636,The Rat Race,1960-07-10,105.0,,,tt0054230,,"Tender romantic comedy about an aspiring musician who arrives in New York in search of fame & fortune. He soon meets a taxi dancer, moves in with her, and before too long a romance develops.",0,0,The Rat Race,en +2982,The Lost World,1960-07-13,97.0,,,tt0054038,"In the middle of the twentieth century, you fall off the brink of time!",Professor Challenger leads an expedition of scientists and adventurers to a remote plateau deep in the Amazonian jungle to verify his claim that dinosaurs still live there.,0,0,The Lost World,en +15788,The Bellboy,1960-07-20,72.0,,,tt0053644,It's a Series of Silly Sequences and One of Jerry's All-Time Great Comedy Performances!,"Stanley is a bellboy at the Fountainbleau Hotel in Miami Beach. It is there that he performs his duties quietly and without a word to anyone. All that he displays are facial expressions and a comedic slapstick style. And anything that can go wrong - does go wrong when Stanley is involved. Then one day, Jerry Lewis, big star, arrives at the hotel and some of the staff notice the striking resemblanc",900000,10000000,The Bellboy,en +39779,Portrait in Black,1960-07-27,112.0,,,tt0054197,They touched...and an evil spark was struck!,A pair of lovers plot to kill the woman's rich husband.,0,0,Portrait in Black,en +37083,Pay or Die!,1960-07-27,111.0,,,tt0054164,,"A beautifully rendered, fact-based crime film about a crusading Italian policeman battling Black Hand extortionists in New York’s Little Italy is back on the big screen. In addition to Ernest Borgnine’s brilliantly sensitive portrayal as Lieutenant Joseph Petrosino, this engrossing picture is deftly photographed by Lucien Ballard, beautifully scored by David Raksin with a stellar supporting cast including Zohra Lampert and Alan Austin. Literate, suspenseful and emotionally moving, this memorable film remains the definitive depiction about the emergence of the Mafia in America.",0,0,Pay or Die!,en +55663,Dinosaurus!,1960-08-10,85.0,,,tt0053768,,"After undersea explosions near a Caribbean island, prehistoric creatures are unleashed on the unsuspecting population.",0,0,Dinosaurus!,en +129553,Song Without End,1960-08-11,141.0,,,tt0054324,,"The romantic story of Hungarian pianist Franz Liszt (Dirk Bogarde), whose scandalous love affair forced him to abandon his adoring audiences.",0,0,Song Without End,en +43092,Beat Girl,1960-08-21,83.0,,,tt0055779,"""My mother was a stripper... I want to be a stripper too!""",A British architect's (David Farrar) daughter spites her French stepmother (Noëlle Adam) by hanging out with Soho beatniks.,0,0,Beat Girl,en +286789,The Warrior Empress,1960-08-24,105.0,,,tt0054263,She stormed the battlements of love and war!,The poetess Sappho led an uprising against the corrupt government of the island of Lesbos.,0,0,Saffo - Venere di Lesbo,en +133715,All the Young Men,1960-08-26,90.0,,,tt0053583,Spit out what's on your filthy little mind ... and then take your orders from me !,"During the Korean War, the lieutenant in charge of a Marine rifle platoon is killed in battle. Before he dies, he places the platoon's sergeant, who's black, in charge. The sergeant figures on having trouble with two men in his platoon: a private who has much more combat experience than he does, and a racist Southerner who doesn't like blacks in the first place and has no intention of taking orders from one. Written by frankfob2@yahoo.com",0,0,All the Young Men,en +198890,Madalena,1960-08-31,91.0,,,tt0055119,,"Madalena (Aliki Vouyoukiaki) is a tough seventeen-year-old who is forced to take on her father's ferry business after he dies. She has her many brothers and sisters to support, and there is no one else to do the job (her mother has also died). So she rallies her defenses and sets out to give her rival in the ferry business a run for his money. But at the same time, the rival's handsome son (Dimitris Papamichael) is starting to look better and better. Madalena refuses to acknowledge her feelings for him -- though how long she can sustain that denial is the question.",0,0,Μανταλένα,en +24452,The Little Shop of Horrors,1960-09-14,70.0,,,tt0054033,The funniest picture of the year!,Black comedy about a young man who creates a carnivorous plant and must kill in order to feed it.,30000,0,The Little Shop of Horrors,en +127808,All The Fine Young Cannibals,1960-09-15,112.0,,,tt0053582,,"Director Michael Anderson's glossy 1960 drama, about the professional and romantic problems of an aspiring jazz musician, stars Robert Wagner, Natalie Wood, Susan Kohner, George Hamilton, Pearl Bailey, Anne Seymour, Jack Mullaney, Onslow Stevens, Virginia Gregg, Mabel Albertson, Louise Beavers and Addison Richards.",0,0,All The Fine Young Cannibals,en +104602,High Time,1960-09-16,103.0,,,tt0053912,Here's how to guarantee a high time!,"Despite the dissapproval of his grown son and daughter, 51 year old widdower and wealthy restauranteur Harvey Howard (Bing Crosby) decides it's 'high time' to he gets his college degree. And he's in for the full ride: living in the dorms, joing a fraternity, falling in love, and even getting some studying in.",0,0,High Time,en +28586,Tormented,1960-09-22,75.0,,,tt0054393,A ghost-woman owned him body and soul!,A jazz pianist (Richard Carlson) is haunted by his dead ex-lover's (Juli Reding) crawling hand and floating head.,0,0,Tormented,en +98302,Love and the Frenchwoman,1960-09-23,143.0,,,tt0053833,,"The seven stages in the life of the modern Frenchwomen are disclosed by seven directors in a witty way: 1 - Childhood, 2 - Adolescence, 3 - Virginity, 4 - Marriage, 5 - Adultery, 6 - Divorce, 7 - The Single Woman.",0,0,La française et l'amour,fr +114242,Faust,1960-09-30,128.0,,,tt0163624,,"In 1957 Gustaf Gründgens staged a new production of Goethe's Faust in which he once again played Mephisto, a part he had played since 1932. The brilliant production was a huge success and ran for a couple of years. In 1959 Peter Gorski captured the performance on film in his directorial film debut. Basically it is a registration of the production, but Gorksi did manage to accentuate the details of the acting by using enough medium and close-up shots which give a view on the acting you normally would not able to see in a theater.",0,0,Faust,de +12617,Midnight Lace,1960-10-13,110.0,,,tt0054084,Even with the arms of her love around her...she still felt the menace of that voice in the night!,"This 1960 thriller, set in London, stars Doris Day as a wife who begins to unravel when she receives threatening telephone calls informing her she's soon to be murdered.",0,0,Midnight Lace,en +48145,The Devil's Eye,1960-10-17,87.0,,,tt0053772,,"The devil has a stye in his eye, caused by the purity of a vicar's daughter. To get rid of it, he sends Don Juan up from hell to seduce the 20 year old Britt-Marie and to rob her of her virginity and her belief in love. She however can resist him and things get even turned around when Don Juan falls in love with her. The fact that he feels love for the first time now, makes him even less attractive to her and Don Juan returns to hell.",0,0,Djävulens öga,sv +219233,The River Fuefuki,1960-10-19,117.0,,,tt0053842,,"When the youngest members of a family of farmers decide to become warriors, the clan's troubles multiply.",0,0,Fuefukigawa,ja +398891,My Bakery in Brooklyn,2016-06-30,100.0,,,tt4065212,,Two young women do their best to try and save their dead aunt's bakery,3800000,0,My Bakery in Brooklyn,en +1818,Shoot the Piano Player,1960-10-21,82.0,,,tt0054389,A Film for Adults,"Charlie Kohler is a piano player in a bar. The waitress Lena is in love with him. One of Charlie's brother, Chico, a crook, takes refuge in the bar because he is chased by two gangsters, Momo and Ernest. We will discover that Charlie's real name is Edouard Saroyan, once a virtuose who gives up after his wife's suicide. Charlie now has to deal wih Chico, Ernest, Momo, Fido (his youngest brother who lives with him), and Lena...",0,0,Tirez sur le pianiste,fr +966,The Magnificent Seven,1960-10-22,128.0,,110021,tt0054047,They were seven - And they fought like seven hundred!,An oppressed Mexican peasant village hires seven gunfighters to help defend their homes.,2000000,4905000,The Magnificent Seven,en +257377,A Circle of Deception,1960-11-01,100.0,,,tt0054750,,"Unbeknownst to him, a soldier is sent on a doomed mission because of the high likelihood of him divulging secrets if captured and tortured.",0,0,A Circle of Deception,en +116385,Let No Man Write My Epitaph,1960-11-10,105.0,,,tt0054021,Ripped Raw and Roaring from Real Life!,"In this sequel to ""Knock On Any Door"", the residents of a Chicago tenement building band together to insure that the son of Nick Romano does not follow in his father's footsteps...to the electric chair.",0,0,Let No Man Write My Epitaph,en +39219,The Facts of Life,1960-11-14,103.0,,,tt0053810,,Two romantic couples are each married to different people! They really DO love each other. At the beginning Kitty thinks Larry is un-funny...,0,0,The Facts of Life,en +18642,G.I. Blues,1960-11-23,104.0,,,tt0053848,Elvis scores... A Singing Triumph... And A Romantic Hit!,"In Frankfurt, the G.I. Tulsa McLean (Elvis Presley) bets all the money his friends Cookie (Robert Ivers) and Rick (James Douglas) and he are saving to buy a night-club of their own in USA that his mate Dynamite will seduce and spend a night with the untouchable cabaret dancer Lili (Juliet Prowse). When Dynamite is transferred to Alaska, Tulsa has to replace him in the bet.",0,0,G.I. Blues,en +92586,Love in Rome,1960-11-24,0.0,,,tt0053597,,,0,0,Un amore a Roma,fr +366860,El Violetero,1960-11-24,0.0,,,tt0054444,,,0,0,El Violetero,es +84035,Boulevard,1960-11-30,0.0,,,tt0053671,,,0,0,Boulevard,fr +83782,Letters of a Novice,1960-12-01,82.0,,,tt0055241,,The nun tells the priest about her past and then a long flashback begins...,0,0,Lettere di una novizia,en +46623,Cimarron,1960-12-01,147.0,,,tt0053715,"The Story Of A Man, A Land and A Love!",The epic story of a family that's involved in the Oklahoma Land Rush in 1889.,0,0,Cimarron,en +80324,Innocent Sorcerers,1960-12-17,87.0,,,tt0054119,,A young doctor is tired of being sought by women. One night he meets a young girl who all but forces herself into his room where they talk of morals and love. But he loses her when he goes out to see some friends and then rushes madly around the city after her.,0,0,Niewinni czarodzieje,pl +115972,Sword of Sherwood Forest,1960-12-26,80.0,,,tt0054358,All-New Adventures of Robin Hood! The world's most fearless fighter faces his greatest challenge!,"Robin of Loxley and his men stumble on a plot to overthrow Hubert Walter, King's Chancellor and Archbishop of Canterbury. The plotters, the Sheriff of Nottingham and the Earl of Newark, have set an ambush for Walter and Lady Marian Fitzwater. Will Robin get to them before it is too late?",0,0,Sword of Sherwood Forest,en +43049,Where the Boys Are,1960-12-28,99.0,,,tt0054469,The hilarious inside story of those rip-roaring spring vacations!,"Good girls Merritt, Melanie, Tuggle and Angie - all students at mid-western Penmore University - are planning on going to Fort Lauderdale, Florida for spring break to get away from the mid-western snow despite not having much money to spend once there. On the drive down, they admit their real purpose is to go where the boys are.",0,0,Where the Boys Are,en +43752,The Wackiest Ship in the Army,1960-12-29,99.0,,,tt0054453,You'll crack your timbers when you see how the Navy sticks the Army sad sacks with the crumbiest ship afloat!,"Lieutenant Rip Crandall is hoodwinked into taking command of the ""Wackiest Ship in the Navy"" - a real garbage scow with a crew of misfits who don't know a jib from a jigger. What none of them knows, including Crandall, is that this ship has a very important top-secret mission to complete in waters patrolled by the Japanese fleet. Their mission will save hundreds of allied lives - if only they can get there in one piece.",0,0,The Wackiest Ship in the Army,en +162899,Ten Thousand Talents,1960-12-31,24.0,,,tt1735904,,,0,0,Ten Thousand Talents,en +141419,Arnulf Rainer,1960-12-31,7.0,,,tt0377390,,"An experimental film, the last in Peter Kubelka's trilogy of “metric films”. Each frame of Arnulf Rainer is composed of darkness or light and silence or sound.",0,0,Arnulf Rainer,de +48209,"Hamlet, Prince of Denmark",1961-01-01,152.0,,,tt0053888,,,0,0,"Hamlet, Prinz von Dänemark",en +31254,Invasion of the Neptune Men,1961-01-01,74.0,,,tt0055562,,Clumsy invaders from Neptune are thwarted by hero Space Chief and a nondescript group of microshort-wearing Japanese kids.,0,0,Uchu Kaisoku-sen,ja +60759,Payroll,1961-01-01,105.0,,,tt0055283,Brilliant... Brutal... Torn from tonight's headlines!,"A vicious gang of crooks plan to steal the wages of a local factory, but their carefully laid plans go wrong, when the factory employs an armoured van to carry the cash. The gang still go ahead with the robbery, but when the driver of the armoured van is killed in the raid, his wife plans revenge, and with the police closing in, the gang start to turn on each other.",0,0,Payroll,en +43023,Konga,1961-01-01,90.0,,,tt0055058,"Not since ""King Kong""...has the screen exploded with such mighty fury and spectacle!","Dr.Decker comes back from Africa after a year, presumed dead. During that year, he came across a way of growing plants and animals to an enormous size. He brings back a baby chimpanzee to test out his theory. As he has many enemies at home, he decides to use his chimp, 'Konga' to 'get rid of them'. Then Konga grows to gigantic proportions and reaks havoc all over the city of London!!",0,0,Konga,en +11536,The Misfits,1961-01-01,124.0,,,tt0055184,It shouts and sings with life ... explodes with love!,"While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido's half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.",4000000,8200000,The Misfits,en +75066,The President,1961-01-03,0.0,,,tt0055336,,,0,0,Le Président,fr +12230,One Hundred and One Dalmatians,1961-01-25,79.0,http://movies.disney.com/101-dalmatians-1961,100693,tt0055254,The Canine Caper of the Century,"When a litter of dalmatian puppies are abducted by the minions of Cruella De Vil, the parents must find them before she uses them for a diabolical fashion statement.",4000000,215880014,One Hundred and One Dalmatians,en +428493,God's Own Country,2017-09-01,105.0,,,tt5635086,,A Yorkshire farmer develops a relationship with a Romanian migrant worker.,0,0,God's Own Country,en +40804,Gorgo,1961-02-02,78.0,,,tt0054938,Like nothing you've ever seen before!,"Never take a baby from his mother. You'll see why in this action-packed monster thriller as young Gorgo, a creature from the sea, is relocated to London from Ireland, with rampaging mommy-dearest not far behind.",0,0,Gorgo,en +64674,Alice in the Navy,1961-02-20,87.0,,,tt0179634,,"Aliki is in love with someone who serves his duty in the greek navy. Wanting to see him, she disguises as a navy soldier and gets aboard her lover's ship. Things get more complicated when she comes accross the ship's captain; her father!",0,0,Η Αλίκη στο Ναυτικό,el +59434,The Counterfeiters of Paris,1961-02-27,98.0,,,tt0054734,,"A rich, old counterfeiter is lured out of retirement.",0,0,Le cave se rebiffe,fr +422906,The Wizard of Baghdad,1961-03-03,92.0,,,tt0054481,ENTER A WORLD OF 1001 THRILLS!,A genie turned mortal after his many failures is sent to Baghdad. As his last chance to prove himself he must help a prince and princess fulfill a prophecy.,0,0,The Wizard of Baghdad,en +71133,"Totò, Peppino and... the Sweet Life",1961-03-23,90.0,,421566,tt0055536,,"Antonio goes to Rome to represent his fellow peasants, to request a highway that will be built in their region. But the guy is mastered by 'la dolce vita' and wastes the money entrusted to him for his mission. When Peppino is sent to to find out what happened, he lets himself be trapped by the gentle grip of 'la dolce vita'",0,0,"Totò, Peppino e la Dolce Vita",it +111017,Return to Peyton Place,1961-05-05,123.0,,,tt0055370,,More hubub in the little town full of secrets when a visiting author trys to pry loose some juicy scandals!,0,0,Return to Peyton Place,en +33336,Taxi for Tobruk,1961-05-09,95.0,,,tt0054425,"The most exciting, explosive journey the screen has ever taken through a minefield of human emotions.","During World War II, French Commandos join forces with a German officer in order to survive the African desert.",0,0,Un Taxi pour Tobrouk,fr +142979,The Joy of Living,1961-05-11,132.0,,,tt0053707,,"Ulisse is a naive young man out looking for a job after being released from the army. He drops the offer he gets from a group of fascists to go in with the Fossatis, a family of anarchists (unknown to him).",0,0,Che gioia vivere,it +3556,Mad Dog Coll,1961-05-12,88.0,,,tt0055118,,"Killer Vincent ""Mad Dog"" Coll moves in on gangster Dutch Schultz in 1920s New York.",0,0,Mad Dog Coll,en +131836,The Long Absence,1961-05-17,85.0,,,tt0054426,,"The Long Absence (French: Une aussi longue absence) is a 1961 French film directed by Henri Colpi. It tells the story of Therese (Alida Valli), a café owner mourning the mysterious disappearance of her husband sixteen years earlier. A tramp arrives in the town and she believes him to be her husband. But he is suffering from amnesia and she tries to bring back his memory of earlier times.",0,0,Une aussi longue absence,en +4497,Viridiana,1961-05-17,90.0,,,tt0055601,We've got nothing to hide,"Viridiana, a young nun about to take her final vows, pays a visit to her widowed uncle at the request of her Mother Superior.",0,0,Viridiana,es +4024,Last Year at Marienbad,1961-05-25,95.0,,,tt0054632,"Evocative, compelling, fascinating, different - an important motion picture, an exceptional work of art from the brilliant Alain Resnais","Takes place in a chateau, an ambiguous story of a man and a woman who may or may not have met last year at Marienbad.",0,0,L'Année dernière à Marienbad,fr +48202,Creature from the Haunted Sea,1961-06-01,63.0,,,tt0054768,"This Gangster's ""Single Partner"" Isn't Even Human!",A crook decides to bump off members of his inept crew and blame their deaths on a legendary sea creature. What he doesn't know is that the creature is real.,0,0,Creature from the Haunted Sea,en +64568,Taste of Fear,1961-06-05,81.0,,,tt0055505,For maximum thrill . . . we earnestly urge you to see this motion picture from the start!,"A wheelchair-bound young girl returns to her father's estate after ten years, and although she's told he's away, she keeps seeing his dead body on the estate.",0,0,Taste of Fear,en +63568,But What If This Is Love?,1961-06-06,102.0,,,tt0147806,,High school students Ksenya and Boris are in love but all the world id against them. Could they fight it and will the first love win?,0,0,A Esli Eto Lyubov?,ru +153652,The Mark,1961-06-07,127.0,,,tt0055146,A film which doesn't 'protect' you from the truth!,A man who served prison time for intent to molest a child tries to build a new life with the help of a sympathetic psychiatrist.,0,0,The Mark,en +43022,King of the Roaring 20's: The Story of Arnold Rothstein,1961-06-11,106.0,,,tt0055048,"The hell-bent, jazz-crazed era and the man who ruled it all!","Gambler Arnold Rothstein (David Janssen) marries an actress (Dianne Foster), avenges his buddy (Mickey Rooney) and meets an underworld fate.",0,0,King of the Roaring 20's: The Story of Arnold Rothstein,en +159474,La viaccia,1961-06-13,100.0,,,tt0056657,A woman's touch becomes a man's obsession,The death of a wealthy patriarch in 1885 sets off an interfamily power struggle.,0,0,La viaccia,it +32825,Wild in the Country,1961-06-15,114.0,,,tt0055623,It's all about young people and their growing pains!,A troubled young man discovers that he has a knack for writing when a counselor encourages him to pursue a literary career.,0,0,Wild in the Country,en +248469,Two Loves,1961-06-21,96.0,,,tt0055557,So busy with her children...SHE DIDN'T HAVE TIME TO GET MARRIED!,An American spinster who takes a job teaching Maori students in New Zealand finds unexpected romance with two men.,0,0,Two Loves,en +2160,Voyage to the Bottom of the Sea,1961-07-12,105.0,,,tt0055608,From Hundred of Miles In Outer Space to Seven Miles Beneath the Sea!,The crew of an atomic submarine battle to save the world from global destruction.,1580000,7000000,Voyage to the Bottom of the Sea,en +84249,The Exiles,1961-07-13,72.0,,,tt0054861,,"Native Americans in Los Angeles. For 12 hours one Friday night, from late afternoon until dawn, we follow a handful of urban Indians. Yvonne is pregnant, commenting on her life and dreams as she shops, walks home, cooks dinner, and watches her husband Homer leave with his friends. Homer and his pals go bar hopping, play some poker, and end up, bottles in hand, with other Indians on a hilltop. During the night, the men pick up women, there are fights, there's camaraderie, and Homer reflects on life in the city versus life on the reservation. At dawn, Yvonne watches Hector from a window as he and two pals and two women head somewhere. ""Let's do it again tonight,"" says one.",0,0,The Exiles,en +64868,Greyfriars Bobby: The True Story of a Dog,1961-07-17,87.0,,,tt0054944,The true story of a dog,"In Scotland 1865, An old shepherd and his little Skye terrier go to Edinburgh. But when the shepherd dies of pneumonia, the dog remains faithful to his master, refuses to be adopted by anyone, and takes to sleeping on his master's grave in the Greyfriars kirkyard, despite a caretaker with a ""no dogs"" rule. And when Bobby is taken up for being unlicensed, it's up to the children of Edinburgh and the Lord Provost to decide what's to be done.",0,0,Greyfriars Bobby: The True Story of a Dog,en +32634,Two Rode Together,1961-07-26,109.0,,,tt0055558,TOGETHER...THEY RODE INTO A THOUSAND DANGERS!,Two tough westerners bring home a group of settlers who have spent years as Comanche hostages.,0,0,Two Rode Together,en +62392,Tammy Tell Me True,1961-07-26,97.0,,,tt0055503,,"Tammy leaves the river in Mississippi to attend college, developing a relationship with Tom Freeman (John Gavin). Sandra Dee replaces Debbie Reynolds in this and the third Tammy movie. This film introduces both a new theme song, ""Tammy Tell Me True"", and the character of Mrs. Annie Call, played by veteran Beulah Bondi. Mrs. Call ultimately moves in with Tammy at the Ellen B. and would be the catalyst for the events in the following film, ""Tammy and The Doctor"".",0,0,Tammy Tell Me True,en +38775,Night Tide,1961-08-15,84.0,,,tt0055230,Temptress from the sea… loving… killing!,"On leave in a shore side town, Johnny becomes interested in a young dark haired woman",0,0,Night Tide,en +12631,Drei Mann in einem Boot,1961-08-25,87.0,,,tt0054826,,No overview found.,0,0,Drei Mann in einem Boot,de +121462,My Mother and Her Guest,1961-08-26,103.0,,,tt0311750,,"A single mother takes on a boarder, with intriguing results.",0,0,사랑방 손님과 어머니,ko +31522,A Woman Is a Woman,1961-09-06,84.0,,,tt0055572,,"Exotic dancer Angéla attempts to have a child with her unwilling lover Émile. In the process, she finds herself torn between him and his best friend Alfred.",160000,100655,Une Femme est une femme,fr +31742,Il Posto,1961-09-21,93.0,,,tt0055320,,"Domenico and Antonietta are two suburban Italian youths who meet while seeking ""a job for life"" from a big city corporation.",0,0,Il Posto,it +296225,Drei weiße Birken,1961-09-27,,,,tt0054827,,,0,0,Drei weiße Birken,de +270908,Совершенно серьезно,1961-10-17,,,,tt0055468,,,0,0,Совершенно серьезно,ru +119926,Bridge to the Sun,1961-10-17,113.0,,,tt0054701,Their love was a bridge between two worlds!,"Tells the true story of Gwen Terasaki, who falls in love with, then marries a Japanese diplomat. When war breaks out they find animosity and trouble from both sides.",0,0,Bridge to the Sun,en +16638,El Cid,1961-10-24,182.0,,,tt0054847,The GREATEST ROMANCE and ADVENTURE in a THOUSAND YEARS!,"Epic film of the legendary Spanish hero, Rodrigo Diaz (""El Cid"" to his followers), who, without compromising his strict sense of honour, still succeeds in taking the initiative and driving the Moors from Spain.",0,0,El Cid,en +67377,The Best of Enemies,1961-10-26,104.0,,,tt0054678,One of the great comedies of all time!,"During World War II, a plane full of RAF fighter crashes in the Ethiopian desert and they are met upon by an enemy Italian patrol that allows them to go free. But, when the Brits are given orders to attack the Italians, lots of problems ensue.",0,0,The Best of Enemies,en +28273,The End of Summer,1961-10-29,103.0,,,tt0055052,,"The Kohayakawa family is thrown into distress when childlike father Manbei takes up with his old mistress, in one of Ozu’s most deftly modulated blendings of comedy and tragedy.",0,0,小早川家の秋,ja +115531,The Power and the Glory,1961-10-29,90.0,,,tt0054561,Out of Graham Greene's novel that made the world gasp--the drama of a priest who somehow stumbled onto the road to martyrdom,Based on Graham Greene's novel about a flawed but devoted priest in 1930s Mexico who attempts to perform his duties while eluding a police lieutenant determined to capture him.,0,0,The Power and the Glory,en +28430,The Day the Earth Caught Fire,1961-11-01,98.0,,,tt0054790,The INCREDIBLE becomes Real! The IMPOSSIBLE becomes Fact! The UNBELIEVABLE becomes True!,"British reporters suspect an international cover-up of a global disaster in progress... and they're right. Hysterical panic has engulfed the world after the United States and the Soviet Union simultaneously detonate nuclear devices and have caused the orbit of the Earth to alter, sending it hurtling towards the sun.",0,0,The Day the Earth Caught Fire,en +75752,Too Late Blues,1961-11-07,100.0,,,tt0055534,The Bold Story Of A Man Caught Between Two Strange Loves!,Ghost is an idealogical musician who would rather play his blues in the park to the birds than compromise himself.,0,0,Too Late Blues,en +28469,Der Herr Karl,1961-11-15,60.0,,,tt0273646,,No overview found.,0,0,Der Herr Karl,de +43026,Paris Belongs to Us,1961-12-13,141.0,,,tt0054156,,A young woman joins a theatrical troupe where she slowly believes that the director is involved with a secret group and that he is in grave danger.,0,0,Paris nous appartient,en +27717,The Phantom Planet,1961-12-13,82.0,,,tt0055294,It Begins Where Others End! On the Moon!,"After an invisible asteroid draws an astronaut and his ship to its surface, he is miniaturized by the phantom planet's exotic atmosphere.",0,0,The Phantom Planet,en +30126,Snow White and the Three Stooges,1961-12-24,107.0,,,tt0055458,,"Once upon a time, in the kingdom of Fortunia, a noble king and his lovely young queen lack but one blessing to make their joy complete. The queen gives birth to a daughter named Snow White, but dies soon after. The king mourns her, but in time, he remarries because of the pleading of his people. His new queen is a beautiful, but evil woman who soon becomes jealous of Snow White's beauty.",0,0,Snow White and the Three Stooges,en +200117,Il mantenuto,1961-12-26,,,,tt0055140,,,0,0,Il mantenuto,it +207696,713-й просит посадку,1961-12-31,,,,tt0182667,,,0,0,713-й просит посадку,ru +43016,Waltz of the Toreadors,1962-01-01,105.0,,,tt0056673,,"General Fitzhugh, an ageing Lothario has an over-active eye for a pretty woman. Despite a long and satisfying career as a seducer extraordinaire, something always seems to get in the way of his bedding the breathtakingly lovely Ghislaine, a more-than-willing town local.",0,0,Waltz of the Toreadors,en +218658,Lines: Horizontal,1962-01-01,6.0,,,tt0056185,,Horizontal lines move to different rhythms over backgrounds of different colors while music plays. -Edgar Cochran,0,0,Lines: Horizontal,en +170548,Crosstrap,1962-01-01,61.0,,,tt0179743,,"In this thriller, two gangs of jewel thieves battle it out in a deserted cottage. Murder ensues when the owners of the cabin show up. Listed as lost by the BFI.",0,0,Crosstrap,en +65048,The Four Days of Naples,1962-01-01,124.0,,,tt0056389,,,800000,0,Le quattro giornate di Napoli,it +11712,Sanjuro,1962-01-01,96.0,,,tt0056443,Akira Kurosawa's Powerful and Newest Japanese Masterpiece,"Toshiro Mifune swaggers and snarls to brilliant comic effect in Kurosawa's tightly paced, beautifully composed ""Sanjuro."" In this companion piece and sequel to ""Yojimbo,"" jaded samurai Sanjuro helps an idealistic group of young warriors weed out their clan's evil influences, and in the process turns their image of a proper samurai on its ear.",0,0,椿三十郎,ja +42996,Five Weeks in a Balloon,1962-01-01,101.0,,,tt0055988,,Professor Fergusson plans to make aviation history by making his way across Africa by balloon. He plans to claim uncharted territories in West Africa as proof of his inventions worth.,0,0,Five Weeks in a Balloon,en +43685,Amphibian Man,1962-01-03,82.0,,,tt0055844,,"People living at the seashore town are frightened by reports about the unknown creature called ""the sea devil."" Nobody knows what it is, but it's really a son of a doctor Salvator. The doctor performed a surgery on his son and now young Ihtiandre can live under water. This gives him certain advantages, but creates a lot of problems.",0,0,Человек-амфибия,ru +1628,Jules and Jim,1962-01-23,105.0,,,tt0055032,A Hymn to Life and Love,"In Paris, before WWI, two friends, Jules (Austrian) and Jim (French) fall in love with the same woman, Catherine. But Catherine loves and marries Jules. After the war, when they meet again in Germany, Catherine starts to love Jim... This is the story of three people in love, a love which does not affect their friendship, and about how their relationship evolves with the years.",0,0,Jules et Jim,fr +175998,Deadly Duo,1962-02-01,70.0,,,tt0204245,She was the alluring bait...,"Two identical twin sisters...one is very,very good--one is very, very bad. The good twin is due some big bucks. The bad twin wants 'em. Since they look just alike...look out.",0,0,Deadly Duo,en +113739,Ring of Terror,1962-02-01,71.0,,,tt0056415,,A group of medical students undertake some silly and frightening endeavors in order to pledge a fraternity.,0,0,Ring of Terror,en +37038,All Night Long,1962-02-06,91.0,,,tt0054614,,"Richard Attenborough, Patrick McGoohan and a host of jazz legends including Charles Mingus and Dave Brubeck star in this 1960s melodrama, inspired by Shakespeare's 'Othello'.",0,0,All Night Long,en +18512,Sergeants 3,1962-02-10,112.0,,,tt0056470,They're the Wildest Characters in All the West!,"Mike, Chip, and Larry are three lusty, brawling U. S. Cavalry sergeants stationed in Indian Territory in 1870.",0,0,Sergeants 3,en +43009,Red Nightmare,1962-02-11,29.0,https://archive.org/details/RedMenace,,tt0050261,,"A man takes his American freedoms for granted, until he wakes up one morning to find out that the United States Government has been replaced with a Communist system. The basis for this short film, narrated by Jack Webb, is the alleged Soviet re-creation of US communities for the purpose of training infiltrators, spies, and moles.",0,0,Red Nightmare,en +662,La Jetée,1962-02-16,28.0,,,tt0056119,,"Time travel, still images, a past, present and future and the aftermath of World War III. The tale of a man, a slave, sent back and forth, in and out of time, to find a solution to the world’s fate. To replenish its decreasing stocks of food, medicine and energies, and in doing so, resulting in a perpetual memory of a lone female, life, death and past events that are recreated on an airport’s viewing pier.",0,0,La Jetée,fr +27523,Salvatore Giuliano,1962-02-28,123.0,,,tt0055399,,"In 1950, 28-year-old outlaw Salvatore Giuliano is found gunned down in a Sicilian courtyard. Little is as it seems. The film moves back and forth between the late 1940s, when Giuliano and other reprobates were recruited by separatist politicians to do their fighting, and the days leading up to and following Giuliano's death.",0,0,Salvatore Giuliano,it +72898,The Seven Deadly Sins,1962-03-07,113.0,,,tt0056467,,"Seven directors each dramatize one of the seven deadly sins in a short film. In ""Anger,"" a domestic argument over a fly in the Sunday soup escalates into nuclear war. In ""Sloth,"" a movie ...",0,0,Les Sept péchés capitaux,fr +26866,Swords of Blood,1962-03-07,104.0,,,tt0055832,,"In the 18th century, Louis de Bourguignon is working with the Malichot's gang, but their ways are too 'unethical' for him. He creates his own band, acting under the name of Cartouche, making audacious robberies of the rich people, and even distributing the takings with the poor. Thus, cartouche attracts the people's sympathies, Venus's love, and hate from the Police and Malichot... Cartouche can escape all the traps they set at him - except the entrapments of love. Eventually, he will be saved by a woman, at her own cost.",0,0,Cartouche,fr +11502,Knife in the Water,1962-03-09,94.0,,,tt0056291,,"On their way to a sailing trip, an aging husband and wife invite along an emphatic young hitchhiker out of sheer patronization.",0,0,Nóz w wodzie,pl +35392,Merrill's Marauders,1962-03-16,98.0,,,tt0056234,How they fought those last 500 miles will remain forever in your memory!,"Brigadier General Frank D. Merrill leads the 3,000 American volunteers of his 5307th Composite Unit (Provisional), aka ""Merrill's Marauders"", behind Japanese lines across Burma to Myitkyina, pushing beyond their limits and fighting pitched battles at every strong-point.",0,0,Merrill's Marauders,en +102155,Hitler,1962-03-21,107.0,,,tt0056072,,The private life of Hitler revealed for the first time!,0,0,Hitler,en +171075,Crooks Anonymous,1962-03-31,88.0,,,tt0055875,,"A former burglar trying to go straight joins a rehabilitation scheme using much the same methods as AA. Through the process, he takes work as a department store Santa, where the endless parade of goods and money, not to mention the pretty young shop hands have him like a moth to a flame in no time flat.",0,0,Crooks Anonymous,en +26643,The Magic Sword,1962-04-01,80.0,,,tt0056211,The Most Incredible Weapon Ever Wielded!,"The son of a sorceress, armed with weapons, armour and six magically summoned knights, goes on a quest to save a princess from a vengeful wizard.",0,0,The Magic Sword,en +49844,The Notorious Landlady,1962-04-01,123.0,,,tt0056289,Did she...or did she?,"An American junior diplomat in London rents a house from, and falls in love with, a woman suspected of murder.",0,0,The Notorious Landlady,en +499,Cléo from 5 to 7,1962-04-11,90.0,,,tt0055852,,"Agnès Varda eloquently captures Paris in the sixties with this real-time portrait of a singer set adrift in the city as she awaits test results of a biopsy. A chronicle of the minutes of one woman’s life, Cléo from 5 to 7 is a spirited mix of vivid vérité and melodrama, featuring a score by Michel Legrand and cameos by Jean-Luc Godard and Anna Karina.",0,0,Cléo de cinq à sept,fr +21135,L'eclisse,1962-04-12,126.0,,441439,tt0056736,,"A young woman meets a vital young man, but their love affair is doomed because of the man's materialistic nature.",0,0,L'eclisse,it +183218,Safe at Home!,1962-04-13,84.0,,,tt0056435,A GRAND SLAM! Fun And Laughter With The Greatest Guys In Baseball... and the luckiest kid in the world!,"A Florida boy (Bryan Russell) tells his Little League buddies that his father knows two New York Yankees (Mickey Mantle, Roger Maris).",0,0,Safe at Home!,en +21070,The Seventh Juror,1962-04-16,90.0,,,tt0188195,,"In a moment of madness a middle-aged, married and respectable pharmacist kills a young woman who is sun-bathing by a lake. Unable to take in what he has done, he flees from the scene of the crime and behaves as if nothing has happened. Eventually her boyfriend is charged with the crime and, in a strange twist of fate, the killer finds himself serving on the jury.",0,0,Le septième juré,fr +11697,The Man Who Shot Liberty Valance,1962-04-22,123.0,,,tt0056217,Together For The First Time - James Stewart - John Wayne - in the masterpiece of four-time Academy Award winner John Ford,"A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.",3200000,8000000,The Man Who Shot Liberty Valance,en +45714,Night of the Eagle,1962-04-25,90.0,,,tt0056279,You Must See It From the Beginning To Feel The Shock-Impact of the End!,"A skeptical college professor discovers that his wife has been practicing magic for years. Like the learned, rational fellow he is, he forces her to destroy all her magical charms and protective devices, and stop that foolishness. He isn't put off by her insistence that his professional rivals are working magic against him, and her protections are necessary to his career and life.",0,0,Night of the Eagle,en +37238,Geronimo,1962-05-01,101.0,,,tt0056016,,"In 1883, the Apache Indians lead by Geronimo reluctantly surrender to the attacks of American and Mexican troops, in exchange for a territory and food for their warriors. Soon though, Geronimo escapes the camps and declares war against the Americans.",0,0,Geronimo,fr +101183,The Third Lover,1962-05-02,80.0,,,tt0056302,,The story of a journalist in southern Germany who stays with a novelist and his wife and gradually begins to destroy the young couple's lives.,0,0,L'Œil du Malin,fr +64414,Sign of the Lion,1962-05-03,103.0,,,tt0053279,,"An American in Paris lives by sponging off his working friends, and throws a party using borrowed money when his rich American aunt dies, believing firmly in his horoscope.",0,0,Le Signe du lion,fr +79506,Getting Away with It the Italian Way,1962-05-04,100.0,,,tt0055856,,"Orazio Menicotti is a night policeman in Rome. One night he is present at a quarrel between husband and wife and he volunteers to take the wife to the Police Station. While he goes around Rome with the blonde and beautiful woman, a bank is robbed. Orazio believes the local gangster is guilty and he rushes to Occhio di Bue's home. When he finds out a different truth, Orazio, Occhio di Bue and his friends will try to get back the loot to put it back before the robbery is disclosed.",0,0,Colpo gobbo all'italiana,it +31442,Ivan's Childhood,1962-05-05,95.0,,,tt0056111,,Poetic journey through the shards and shadows of one boy’s war-ravaged youth.,0,0,Ива́ново де́тство,ru +5646,Wild Gals of the Naked West,1962-05-09,65.0,,,tt0056692,,"An old geezer recalls some of the antics of the men and women of his western town, more wild and woolly than Tombstone or Dodge City. In this town no one is a good shot, the women are hungry for new meat, and practical jokers abound. A stranger strolls into town, proving resistant to the mayhem, and after donning some cowboy duds begins cleaning up that town.",0,0,Wild Gals of the Naked West,en +43000,The Elusive Corporal,1962-05-23,90.0,,,tt0055827,,"The story serves as a companion piece to Renoir's 1937 film, Grand Illusion, once more bringing together men from across the broad social spectrum of French society to depict one man's Sisyphean efforts to escape captivity in a German POW camp.",0,0,Le caporal épinglé,en +43002,Lonely Are the Brave,1962-05-24,107.0,,,tt0056195,Life can never cage a man like this!,A fiercely independent cowboy arranges to have himself locked up in jail in order to then escape with an old friend who has been sentenced to the penitentiary.,0,0,Lonely Are the Brave,en +94696,Four Winds of Heaven,1962-06-01,106.0,,,tt0056269,,"По вызову своего жениха, Светлана поехала в захолустный городок, где на самой окраине стоял двухэтажный дом «на семи ветрах». Но началась война, Игорь не встретил Светлану, а она решила остаться ждать его и конца войны. Вскоре на окраине городка разместилась редакция фронтовой газеты. Когда немцы подошли к городу, дом превратился в госпиталь, а Светлана стала бойцом.",0,0,На семи ветрах,ru +204800,Lad: A Dog,1962-06-02,98.0,,,tt0056162,Here At Last for the Countless Millions Who Have Thrilled to It,"The story of the rough collie hero, Sunnybank Lad. Based on the book by Albert Payson Terhune.",0,0,Lad: A Dog,en +31287,Eegah,1962-06-08,90.0,,,tt0055946,The Crazed Love Of A Prehistoric Giant For A Ravishing Teen-Age Girl!,"Teenagers stumble across a prehistoric caveman, who goes on a rampage.",15000,3274,Eegah,en +11385,Hatari!,1962-06-19,157.0,,,tt0056059,Hatari means Fun! Hatari means Adventure! Hatari means Thrills!,A group of men trap wild animals in Africa and sell them to zoos. Will the arrival of a female wildlife photographer change their ways?,0,0,Hatari!,en +93891,Black Test Car,1962-06-30,95.0,,,tt0056158,,Two car manufacturers spy on each other to try to find out details and prices of a new sports car each is about to launch.,0,0,Kuro no tesuto kaa,ja +54146,Pitfall,1962-07-01,97.0,,,tt0203612,,"A man wanders into a seemingly deserted town with his young son in search of work. But after a bit of bad luck, he joins the town's population of lost souls.",0,0,Otoshiana,ja +116236,Crazy Desire,1962-07-31,110.0,,,tt0056665,,,0,0,La voglia matta,it +28367,The Wonderful World of the Brothers Grimm,1962-08-07,135.0,,,tt0056700,WONDERFUL THRILLS! ADVENTURE! ROMANCE!,"The Grimm brothers Wilhelm and Jacob, known for their literary works in the nineteenth century, have their lives dramatized. In the movie they write a family history for a duke which includes reenactments of three of their stories including ""The Dancing Princess,"" ""The Cobbler and the Elves"" and ""The Singing Bone.""",0,0,The Wonderful World of the Brothers Grimm,en +235092,The Boys,1962-08-31,123.0,,,tt0054697,,"A night watchman at a garage is found murdered, and four teddy boys are put on trial for the crime. Witnesses and suspects give differing accounts of the lead-up to the crime, and the truth emerges.",0,0,The Boys,en +58701,Two Colonels,1962-08-31,104.0,,421566,tt0055936,,"During the WWII Italians and English take and retake a village between the Albanian and Greek borders. It happens so often that not only do they use the same hotel as their headquarters, but also they find the time to become friends.",0,0,I Due Colonnelli,it +63304,Hussar Ballad,1962-09-07,96.0,,,tt0056045,,A young girl decides to join a Husar squadron and fight against Napoleon. Dressed as a man she has a hard time adjusting to the rude Husar life styles.,0,0,Гусарская баллада,ru +14537,Harakiri,1962-09-15,135.0,,,tt0056058,The world has never understood why the Japanese prefer death to dishonor! Winner of Prix Special du Jury at Cannes 1963 provides the answer!!,"Peace in 17th-century Japan causes the Shogunate's breakup of warrior clans, throwing thousands of samurai out of work and into poverty. An honorable end to such fate under the samurai code is ritual suicide, or hara-kiri.",0,0,切腹,ja +41213,The Fabulous Baron Munchausen,1962-09-21,83.0,,,tt0054665,,"The outrageous Baron Munchausen tells of his many adventures, from meeting the Man in the Moon to defeating a Turkish army all by himself.",0,0,Baron Prášil,cs +81409,Fury of Achilles,1962-09-23,118.0,,,tt0056104,,"In the tenth year of the Trojan War, tensions between Achilles and Agamemnon divide the Greek camp while giving hope to the Trojans.",0,0,L'ira di Achille,it +9289,The Longest Day,1962-09-25,178.0,,,tt0056197,This is the day that changed the world... When history held its breath.,"The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. ""For the Allies as well as the Germans, it will be the longest day""",10000000,50100000,The Longest Day,en +44522,The Gentleman from Epsom,1962-10-03,82.0,,,tt0056014,,The story takes place in the racecourses around Paris. A so-called major sells his tips to naive characters.,0,0,Le Gentleman d'Epsom,fr +74924,Zotz!,1962-10-03,87.0,,,tt0056725,"Zay It, Zee It and Zoon!","Jonathan Jones, a professor of ancient languages, comes into possession of an ancient coin. He translates its inscription, which gives him three powers: to inflict pain, slow down time or kill. Soon, he's pursued by enemy spies who have learned about the magic coin.",0,0,Zotz!,en +183073,I tromboni di Fra' Diavolo,1962-10-11,0.0,,188577,tt0055995,,,0,0,I tromboni di Fra' Diavolo,it +93492,Gladiators 7,1962-10-11,93.0,,,tt0056472,,"Framed for the escape of five gladiators from the arena, the son of one of Sparta's leading citizens is sentenced to the arena as gladiator himself and forced to fight for his life in the Roman Colosseum. Years later he manages to escape and return to Sparta, only to find out that his father has been murdered--even though it was ruled a ""suicide""--and the woman he loves is about to marry the evil king who has usurped the throne. He sets out to find six of his fellow gladiators and return to Sparta to save his woman and place the rightful king on the throne.",0,0,I sette gladiatori,it +982,The Manchurian Candidate,1962-10-24,126.0,,,tt0056218,"When you've seen it all, you'll swear there's never been anything like it!",The Manchurian Candidate is a political thriller from American director John Frankenheimer. An American soldier is brainwashed into being a killer for the communist Russians during the Korean War.,80000000,96105910,The Manchurian Candidate,en +32328,Gay Purr-ee,1962-10-24,85.0,,,tt0057093,Vive La Coolest Cat Who Ever Captured The Happy Heart Of Paris!,"Mouser Jaone Tom and housecat Mewsette are living in the French country side, but Mewsette wants to experience the refinement and excitement of the Paris living. But upon arrival she falls into the clutches of Meowrice. Jaune Tom and his friend Robespierre set off to Paris to find her.",0,0,Gay Purr-ee,en +11897,How the West Was Won,1962-11-01,162.0,,,tt0056085,It's here! The mightiest adventure ever filmed!,"The epic tale of the development of the American West from the 1830s through the Civil War to the end of the century, as seen through the eyes of one pioneer family.",15000000,50000000,How the West Was Won,en +340961,Copacabana Palace,1962-11-03,90.0,,,tt0056020,,,0,0,Copacabana Palace,it +43001,Sundays and Cybele,1962-11-12,110.0,,,tt0055910,,The tragic story of a young orphan girl who is befriended by an innocent but emotionally disabled veteran of the French Indochina War.,0,0,Cybèle ou les dimanches de ville d'Avray,fr +50759,An Autumn Afternoon,1962-11-18,112.0,,,tt0056444,An aging widower arranges a marriage for his only daughter.,"Shuhei Hirayama is a widower with a 24-year-old daughter. Gradually, he comes to realize that she should not be obliged to look after him for the rest of his life, so he arranges a marriage for her.",0,0,秋刀魚の味,ja +41028,It's Only Money,1962-11-21,83.0,,,tt0056110,He's a public howl as a private eye!,"Lester is a clumsy and awkward TV repair man who is nevertheless gifted technically. In helping out a friend, he is drawn into a mystery involving a missing heir in a rich family. He begins to notice little things, like how much those family portraits look like him. Surely..no..he can't be...can he ?",0,0,It's Only Money,en +15734,Girls! Girls! Girls!,1962-11-21,106.0,,,tt0056023,A dreamboat of a drama.,"Elvis plays Ross Carpenter, a fishing guide/sailor who loves his life out on the sea. When he finds out his boss is retiring to Arizona, he has to find a way to buy the Westwind, a boat that he and his father built. He is also caught between two women: insensitive club singer Robin and sweet Laurel.",0,0,Girls! Girls! Girls!,en +18684,Kid Galahad,1962-11-29,95.0,,,tt0056138,Presley packs the the screen's biggest wallop...with the gals...with the gloves...with the guitar!,"Kid Galahad is a 1962 musical film starring Elvis Presley as a boxer. The movie was filmed on location in Idyllwild, California and is noted for having a strong supporting cast. Most critics rate it as one of Presley's best performances. The film is a remake of the 1937 original version starring Edward G. Robinson, Bette Davis, and Humphrey Bogart.",0,0,Kid Galahad,en +34774,In Search of the Castaways,1962-12-01,98.0,,,tt0056095,"A Thousand Thrills, And Hayley Mills!","In Search of the Castaways is a 1962 Walt Disney Productions feature film starring Hayley Mills and Maurice Chevalier in a tale about a worldwide search for a shipwrecked sea captain. The film was directed by Robert Stevenson from a screenplay by Lowell S, Hawley based upon Jules Verne's 1868 adventure novel Captain Grant's Children.",0,0,In Search of the Castaways,en +63291,Come Tomorrow...,1962-12-03,98.0,,,tt0130195,,"Young girl from the country come to Moscow, she wants to get into University, but it's too late... Anyway, she won't give up and will do everything to get a meeting with dean and sing for him.",0,0,Приходите завтра...,ru +45197,Big and Little Wong Tin Bar,1962-12-05,106.0,,,tt0124296,,"A child learns martial arts in order to become a Kung Fu warrior. Features the Seven Little Fortunes, and is the debut film of Jackie Chan.",0,0,大小黄天霸,cn +31118,The Skydivers,1963-01-01,75.0,,,tt0057507,Thrill jumping guys... Thrill seeking girls... Daring death with every leap!,"A woman seeks revenge on her former lover, who owns a skydiving business.",0,0,The Skydivers,en +48717,What's a Nice Girl Like You Doing in a Place Like This?,1963-01-01,9.0,,,tt0057680,,"A writer named Algernon (but called Harry by his friends) buys a picture of a boat on a lake, and his obsession with it renders normal life impossible.",0,0,What's a Nice Girl Like You Doing in a Place Like This?,en +256222,Sleep,1963-01-01,321.0,,,tt0187513,,Footage of John Giorno sleeping for five hours.,0,0,Sleep,en +18692,Fun in Acapulco,1963-01-01,97.0,,,tt0057083,,"Mike works on a boat in Acapulco. When the bratty daughter of the boat owner gets him fired, Mike must find new work. Little boy Rauol helps him get a job as a lifeguard and singer at a local hotel. Clashes abound when Mike runs into the rival lifeguard, who is the champion diver of Mexico.",0,0,Fun in Acapulco,en +229134,Catherine of Russia,1963-01-12,105.0,,,tt0055833,,"Caterina finds out that her husband Peter Tzar of Russia, is plotting to kill her. She sets Count Orlov free from prison, Peter's sworn enemy, becomes empress of Russia and leads the Cossacks army against him.",0,0,Caterina di Russia,it +86520,Himiko,1974-03-09,100.0,,,tt0071609,,The myth of the Sun Goddess who founded Japanese society is seen through the lens of a modern view of history.,0,0,卑弥呼,ja +18774,This Sporting Life,1963-01-15,134.0,,,tt0057578,,"In Northern England in the early 1960s, Frank Machin is mean, tough and ambitious enough to become an immediate star in the rugby league team run by local employer Weaver.",0,0,This Sporting Life,en +29056,The Raven,1963-01-25,86.0,,,tt0057449,The Macabre Masterpiece of Terror!,A magician who has been turned into a raven turns to a former sorcerer for help in this film loosely based on the Edgar Allen Poe poem.,350000,1499275,The Raven,en +422,8½,1963-02-14,138.0,,,tt0056801,A picture that goes beyond what men think about - because no man ever thought about it in quite this way!,With 8 ½ Frederico Fellini leaves a self-portrait where dreams and reality are a mix. With help from a most excellent cast and unique scenery this self reflecting film is one of his master works.,0,0,8½,it +118716,The Day Mars Invaded Earth,1963-02-14,70.0,,,tt0055893,Strange Invisible Astro-Energy Unleashed Leaves Mankind A Human Shell As It Destroys His Body And Brain!,Martians replace scientist & his family to pave way for invasion.,0,0,The Day Mars Invaded Earth,en +374883,The Partisans,1963-02-21,101.0,,,tt0138810,"The partisans of 20th D are drinking here. All disturbers will be shot, except the waiters",Lieutenant Takala meets his fellow partisans of 20th division many year after the war. With flashbacks we see the events of summer 1944.,0,0,Sissit,fi +202662,Cantata,1963-02-28,94.0,,,tt0057381,,A young doctor undergoes a spiritual crisis when he returns to his rural home.,0,0,Oldás és kötés,hu +81654,The Strange Type,1963-02-28,90.0,,,tt0057535,,"Peppino, a slow-witted local villager of the Italian resort town of Amalfi, is bribed to impersonate famed rock and roll star Adriano Celentano for autographs and personal appearances. While Celentano tries to romance Emanuela Mazzolani, the daughter of a well-to-do resident who dissaproves of the union between his daughter and the man he thinks of as a ""punk"", Peppino, unaware of the true nature of his job to impersonate Celentano, tries to deal with his girlfriend's newborn baby which gets switched around between him and Celentano.",0,0,Uno strano tipo,en +86168,I Could Go on Singing,1963-03-07,100.0,,,tt0057168,It's Judy! Lighting up the lonely stage!,"Jenny Bowman is a successful singer who, while on an engagement at the London Palladium, visits David Donne to see her son Matt again, spending a few glorious days with him while his father is away in Rome in an attempt to attain the family that she never had. When David returns, Matt is torn between his loyalty to his father and his affection for Jenny.",0,0,I Could Go on Singing,en +42989,The Wrong Arm of the Law,1963-03-17,94.0,,,tt0056704,Meet the Mastermind Who Pulls the Strings in the Underworld...and all his mobs and dolls...filling the London fog with laughter and lunacy!!!,"The crooks in London know how it works. No one carries guns and no one resists the police. Then a new gang appears that go one better. They dress as police and steal from the crooks. This upset's the natural order of the police/criminal relationship and the police and the crooks join forces to catch the IPOs (Impersonating Police Officers), including an armoured car robbery in which the police must help the gangs to set a trap.",0,0,The Wrong Arm of the Law,en +88012,Sparrows Can't Sing,1963-03-26,94.0,,,tt0057521,,"Charlie returns to the East End after two years at sea to find his house demolished and wife Maggie gone. Everyone else knows she is now shacked up with married bus driver Bert and a toddler, and they all watch with more than a little interest at the trail of mayhem Charlie leaves as he goes about sorting things out.",0,0,Sparrows Can't Sing,en +338438,The Invincible Masked Rider,1963-03-29,96.0,,,tt0056103,,,0,0,L'invincible cavaliere mascherato,it +28533,The Ghost,1963-03-30,97.0,,,tt0057522,Horror... sharp as a razor's edge!,"A woman and her lover murder her husband, a doctor. Soon, however, strange things start happening, and they wonder if they really killed him, or if he is coming back from the dead to haunt them.",0,0,Lo spettro,en +59838,Critic's Choice,1963-04-13,100.0,,,tt0056964,Everybody's 'choice' for a great big wonderful time!,Bob Hope is a New York theater critic and his wife (Lucille Ball in their final motion picture pairing) writes a play that may or may not be very good. Now Hope must either get out of reviewing the play or cause the breakup of his marriage. Based on the Broadway play by Ira Levin.,0,0,Critic's Choice,en +37939,Youth of the Beast,1963-04-21,92.0,,,tt0057697,,"To infiltrate a criminal organization responsible for the death of one of his colleagues, the Detective Tajima adopts the behavior of of a brutal thug and plays opposing yakuza bosses against each other.",0,0,野獣の青春,ja +85834,Méditerranée,1963-04-23,45.0,,,tt0197719,,Pollet and Schlöndorff imagine the Mediterranean as a supernal arena.,0,0,Méditerranée,fr +49876,The Mouse on the Moon,1963-05-07,82.0,,,tt0057328,Stop shooting at our moon!,"Sequel to The Mouse that Roared; The Tiny Country of Grand Fenwick has a hot water problem in the castle. To get the money necessary to put in a new set of plumbing, they request foreign aid from the U.S. for Space Research. The Russians then send aid as well to show that they too are for the internationalization of space. While the grand Duke is dreaming of hot baths, their one scientist is slapping together a rocket. The U.S. and Soviets get wind of the impending launch and try and beat them to the moon.",0,0,The Mouse on the Moon,en +71701,The Damned,1963-05-19,87.0,,,tt0056576,Children of Ice And Darkness! They Are the Lurking Unseen Evil You Dare Not Face Alone!,"An American tourist, a youth gang leader, and his troubled sister find themselves trapped in a top secret government facility experimenting on children.",0,0,The Damned,en +68720,Tammy and the Doctor,1963-05-29,88.0,,,tt0057558,"Tammy takes over an intern... lock, stock and bandages!",Tammy becomes a nurse's aid to care for an old rich woman and causes romantic commotion in the life of Dr. Mark Cheswick.,0,0,Tammy and the Doctor,en +90930,Strip-Tease,1963-05-29,95.0,,,tt0057536,,,0,0,Strip-Tease,fr +268212,Scarlet Eye,1963-05-30,82.0,,,tt0057589,,,0,0,Das Todesauge von Ceylon,de +52705,Les Carabiniers,1963-05-31,85.0,,,tt0056905,,"During a war in an imaginary country, unscrupulous soldiers recruit poor farmers with promises of an easy and happy life. Two of these farmers write to their wives of their exploits.",0,0,Les Carabiniers,fr +33729,Come Blow Your Horn,1963-06-05,112.0,,,tt0056940,"I tell ya, chum...laughs it is!",The story of a young man's decision to leave the home of his parents for the bachelor pad of his older brother who leads a swinging '60s lifestyle.,0,0,Come Blow Your Horn,en +23518,Seven Days in May,1964-02-12,118.0,,,tt0058576,"The astounding story of an astounding military plot to take over the United States! The time is 1970 or 1980 or, possibly, tomorrow!",A U.S. Army general alerts the president of a planned military coup against him.,0,0,Seven Days in May,en +106020,Dr. Crippen,1964-02-14,98.0,,,tt0055927,The crime of the century! Was he really guilty?,A British physician stands trial for murdering his wife after he and his mistress are captured while fleeing to Canada.,0,0,Dr. Crippen,en +80988,Young Aphrodites,1963-06-06,88.0,,,tt0057307,,"Parallel stories of Eros set in 200 B.C. Nomadic shepherds, plagued by drought, happen on a fishing encampment with plentiful fresh water. The local men are away but will return when it rains; the shepherds stay to refresh their flock until the rain comes. A shepherd lad and a local girl, both on the verge of puberty, start a mating dance. Also, one of the shepherds approaches a beautiful local woman, inviting her to sleep with him. How will she respond? She's married, her husband at sea for the week. Is love forever or temporary?",0,0,Μικρές Αφροδίτες,el +6166,Dinner for One,1963-06-08,18.0,,,tt0121210,,"A very old woman wants to have dinner with her friends. As they are all dead, the butler has to play the role of every guest.",0,0,Dinner for One,en +15875,Donovan's Reef,1963-06-12,109.0,,,tt0057007,Gangway...For This Years BIG Adventure!,"'Guns' Donovan prefers carousing with his pals Doc Dedham and 'Boats' Gilhooley, until Dedham's high-society daughter Amelia shows up in their South Seas paradise.",2686000,6600000,Donovan's Reef,en +108003,Call Me Bwana,1963-06-14,102.0,,,tt0056897,Hope was never lovelier... Elberg was never funnier!,"A returning moon capsule goes off course and lands in Africa where a little-known tribe find it. Washington sends Matthew Merriwether to recover it, thinking he is an expert on the region, when in fact he is no such thing. Meanwhile a foreign power sends Secret Agent Luba to try and get the capsule for themselves. But once they reach their destination they find that the tribe believe the capsule to be sacred and won't give it up.",0,0,Call Me Bwana,en +19757,Icarus XB 1,1963-07-26,83.0,,,tt0122111,Dare you take the first?,"In the year 2163 the starship Ikarie XB-1 (Ikarus XB-1) is sent to the mysterious ""White Planet"" orbiting the star Alpha Centauri. Travelling at near-light speed, the journey takes around 28 months for the astronauts, although the effects of relativity mean that 15 years will have elapsed on Earth by the time they reach their destination. During the flight the 40-strong multinational crew must adjust to life in space, as well as dealing with various hazards they encounter, including a derelict 20th century spaceship armed with nuclear weapons, a deadly radioactive ""dark star"" and the mental breakdown of one of the crew, who threatens to destroy the spacecraft.",0,0,Ikarie XB-1,cs +108869,Toys in the Attic,1963-07-31,90.0,,,tt0057598,Toys in the Attic Plays With Fire!,"Julian Berniers returns from Illinois with his young bride Lily Prine to the family in New Orleans. His spinster sisters Carrie and Anna welcome the couple, who arrive with expensive gifts. The sisters hope Julian will help with their expenses, and he tells them that while his profitable factory went out of business, he did manage to save money. + It turns out that Julian pulled off a real estate scam and took off with the money. Carrie is obsessed with her brother. Her jealousy of Lily pushes her to discover the shady land deal for herself and she does everything she can to wreck their marriage.",0,0,Toys in the Attic,en +242835,For Love or Money,1963-08-07,108.0,,,tt0057067,He was hired to Mate them . . . but not to Date them!!!,"Wealthy Chloe Brasher has three beautiful daughters; Bonnie, Kate, and Jan. Chloe pays attorney Deke Gentry to fix them up with three suitable husbands.",0,0,For Love or Money,en +168295,Legend of a Duel to the Death,1963-08-10,83.0,,,tt0057494,,"A Tokyo family escaping the war relocates to a Hokkaido village; their daughter is set to marry the local leader's son, but her siblings disapprove.",0,0,死闘の伝説,ja +52302,Matango: Attack of the Mushroom People,1963-08-11,89.0,,,tt0057295,,Five vacationers and two crewmen become stranded on a tropical island near the equator. The island has little edible food for them to use as they try to live in a fungus covered hulk while repairing Kessei's yacht. Eventually they struggle over the food rations which were left behind by the former crew. Soon they discover something unfriendly there...,0,0,Matango,ja +85640,The Caretakers,1963-08-21,97.0,,,tt0056908,Now the screen tells what makes a woman - and what breaks her!,This movie chronicles the trials of the mentally ill and their care-givers in an over-crowded ward of a hospital.,0,0,The Caretakers,en +221527,The Girl from Parma,1963-09-14,0.0,,,tt0122207,,"After being forced to leave the village because of an affair, a woman becomes close to a petty criminal when she settles in Parma.",0,0,La Parmigiana,it +296344,Politexnitis and Erimospitis,1963-09-30,0.0,,,tt0122670,,"Thanasis Vengos plays a poor young man that comes to Athens looking for a job. We watch as he tries many different jobs; druggist, photographer, even wrestling referee. The result is always hilarious and explosive!",0,0,Πολυτεχνίτης και Ερημοσπίτης,el +54563,"Muriel, or the Time of Return",1963-10-08,115.0,,,tt0057336,,"A chamber drama about a widow and her son who live in an antique shop in Boulogne. The widow invites a man whom she loved twenty-two years earlier to visit. Her son is haunted by Muriel, a young woman whose death he may have caused while serving as a soldier in Algeria. As in Resnais' earlier films, memory is deflected, fragmented, enshrined, and imagined.",0,0,"Muriel, ou le Temps d'un retour",fr +122698,All the Way Home,1963-10-17,97.0,,,tt0056818,Love is not a thing that grows only in the dark!,"In the early 1900's Tennessee, a loving family undergoes the shock of the father's sudden, accidental death. The widow and her young son must endure the heartache of life following the tragedy, but slowly rise up from the ashes to face the hope of renewed life.",0,0,All the Way Home,en +187737,Il terrorista,1963-10-25,0.0,,,tt0207784,,,0,0,Il terrorista,it +269165,Die zwölf Geschworenen,1963-10-25,,,,tt0057723,,,0,0,Die zwölf Geschworenen,de +42987,The Servant,1963-11-01,116.0,,,tt0057490,,"A decadent London aristocrat hires a man-servant to attend to his needs. However, the balance of power starts to shift...",0,0,The Servant,en +11576,"It's a Mad, Mad, Mad, Mad World",1963-11-07,163.0,,,tt0057193,The biggest entertainment ever to rock the screen with laughter!,"A group of strangers come across a man dying after a car crash who proceeds to tell them about the $350,000 he buried in California. What follows is the madcap adventures of those strangers as each attempts to claim the prize for himself.",9400000,60000000,"It's a Mad, Mad, Mad, Mad World",en +935,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,1964-01-29,95.0,,,tt0057012,The hot-line suspense comedy,"Insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union. As soon as the actions of General ""Buck"" Turgidson are discovered, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike. Near the end is a scene that is probably the most uniquely unforgettable performance of Slim Pickens in his movie career. Peter Sellers plays multiple roles in this film.",1800000,9440272,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb,en +448992,Encounter with Fritz Lang,1964-02-05,14.0,,,tt0056862,,An interview with film director Fritz Lang.,0,0,Begegnung mit Fritz Lang,de +161620,Wonder Woman,1974-03-12,75.0,,,tt0072419,,A super-hero uses her powers to thwart an international spy ring.,0,0,Wonder Woman,en +15263,McLintock!,1963-11-13,127.0,,,tt0057298,Never such a tender love story! Never such a savage showdown! Never such restless natives!,"George Washington McLintock, 'GW' to friends and foes alike, is a cattle baron and the richest man in the territory. He anxiously awaits the return of his daughter Becky who has been away at school for the last two years. He's also surprised to see that his wife Katherine has also returned. She had left him some years before without really explaining what he done but she does make the point of saying that she's returned to take their daughter back to the State Capitol with her. GW is highly respected by everyone around him including the farmers who are pouring into the territories with free grants of land and the Indians who are under threat of being relocated to another reservation. Between his wife, his headstrong daughter, the crooked land agent and the thieving government Indian agent, GW tries to keep the peace and do what is best for everyone.",0,0,McLintock!,en +37969,The Incredible Journey,1963-11-20,80.0,,,tt0057180,Three against the wilderness... nothing could stop them - only instinct to guide them across 200 perilous miles of Canadian wilderness!,"The story of three pets, a cat and two dogs, who lose their owners when they are all on vacation. Can they find their way home?",0,0,The Incredible Journey,en +142982,La corruzione,1963-11-22,0.0,,,tt0056955,,,0,0,La corruzione,fr +42305,Who's Minding the Store?,1963-11-28,90.0,,,tt0057683,Look who's minding the store...,"Jerry Lewis plays Norman Phiffer, a proud man in a humble life, who doesn't know that his girlfriend, Barbara, is heir to the Tuttle Department Store dynasty. Mrs. Tuttle, Barbara's mother, is determined to split the two lovers, and hires Norman in an attempt to humiliate him enough that Barbara leaves him. Will she ruin their love, or will he ruin her store?",0,0,Who's Minding the Store?,en +56800,Judex,1963-12-04,104.0,,,tt0057207,,"Georges Franju's Judex is an arch, playful tribute to the serials of the influential silent filmmaker Louis Feuillade. Franju shuffles through the plot of Feuillade's lengthy serial of the same name, about an adventurer named Judex (Channing Pollock) whose revenge against the corrupt banker Favraux (Michel Vitold) unleashes a complicated series of schemes.",0,0,Judex,fr +135536,Chi lavora è perduto,1963-12-05,0.0,,,tt0057942,,,0,0,Chi lavora è perduto,it +15081,The Three Lives of Thomasina,1963-12-11,97.0,,,tt0057579,"I Am Thomasina — A Most Unusual Cat ... They Say I'm Enchanted, and I Am!","Thomasina is the pet cat of Mary McDhui, the daughter of Scottish veterinarian Andrew McDhui. When Thomasina falls ill, McDhui declares that the pet should be put down. But when Mary and her father try to bury the cat, Lori MacGregor (Susan Hampshire), who is said to be a witch, shows up and attempts to steal it.",0,0,The Three Lives of Thomasina,en +936,The Pink Panther,1963-12-19,115.0,,937,tt0057413,A Madcap Frolic Of Crime and Fun,"The trademark of The Phantom, a renowned jewel thief, is a glove left at the scene of the crime. Inspector Clouseau, an expert on The Phantom's exploits, feels sure that he knows where The Phantom will strike next and leaves Paris for Switzerland, where the famous Lugashi jewel 'The Pink Panther' is going to be. However, he does not know who The Phantom really is, or for that matter who anyone else really is...",0,10878107,The Pink Panther,en +162382,To Bed or Not to Bed,1963-12-22,0.0,,,tt0056995,,,0,0,Il diavolo,it +62397,The Teacher from Vigevano,1963-12-24,105.0,,,tt0057274,,,0,0,Il maestro di Vigevano,it +17691,4 for Texas,1963-12-25,124.0,,,tt0057071,The far out story of the far west,Frank Sinatra plays a tough guy who hooks up with fellow rat packer Dean Martin to open a casino in this western.,0,0,4 for Texas,en +9078,The Sword in the Stone,1963-12-25,79.0,,,tt0057546,Tired of living in a Medieval mess...Merlin uses all his magic powers to change a scrawny little boy into a legendary hero!,"Wart is a young boy who aspires to be a knight's squire. On a hunting trip he falls in on Merlin, a powerful but amnesiac wizard who has plans for him beyond mere squiredom. He starts by trying to give him an education, believing that once one has an education, one can go anywhere. Needless to say, it doesn't quite work out that way.",3000000,22182353,The Sword in the Stone,en +39495,Love with the Proper Stranger,1963-12-25,102.0,,,tt0057263,,"When a one-night stand results in pregnancy, a musician and a young girl try to resolve the issue together.",0,0,Love with the Proper Stranger,en +185291,Act One,1963-12-26,110.0,,,tt0056810,,Story of the life of writer/playwright Moss Hart.,0,0,Act One,en +151730,Eat,1963-12-31,45.0,,,tt0208926,,,0,0,Eat,en +255772,White Mountains,1964-01-01,63.0,,,tt2144017,,"Mukash is chased by officials, learns of the devastation of war from a blind woman and helps her daughter to freedom beyond the river crossing, he, having to choose a tragic solution.",0,0,Белые горы,ru +116762,Sallah,1964-01-01,110.0,,,tt0058541,,"Sallah Shabati, the patriarch of the big family recently arrived to Israel from Yemen, tries to make money and get better housing, in a country that can barely provide for its own and is in the midst of absorbing hundreds of thousands of Jewish refugees from Arab countries.",0,0,סאלח שבתי,he +96118,All These Women,1964-01-01,80.0,,,tt0058124,,"The pretentious critic Cornelius is writing a biography on a famous cellist and to do some research he goes to stay in his house for a few days. He doesn't manage to get an interview with the man, but by talking to all the women who live with him, he comes to learn a lot about the musician's private life none the less. Cornelius then decides to use this information and tries to blackmail the cellist into performing a composition that he, Cornelius, has written. Written by Leon Wolters",0,0,För att inte tala om alla dessa kvinnor,sv +31275,The Creeping Terror,1964-01-01,77.0,,,tt0057970,,A newlywed sheriff tries to stop a shambling monster that has emerged from a spaceship to eat people.,0,0,The Creeping Terror,en +36245,Diary of a Chambermaid,1964-01-01,101.0,,,tt0058249,,"A stylish, very attractive young woman arrives from Paris to become chambermaid for an odd family at their country chateau.",0,0,Le journal d'une femme de chambre,fr +322400,Faces of November,1964-01-01,12.0,,,tt1727578,,Robert Drew shows various faces during John F. Kennedy's funeral.,0,0,Faces of November,en +186630,Il Gaucho,1964-01-01,,,,tt0134668,,,0,0,Il Gaucho,it +42787,Lady in a Cage,1964-01-01,94.0,,,tt0058283,Do not see,A woman trapped in a home elevator is terrorized by a group of vicious hoodlums.,0,0,Lady in a Cage,en +111398,Yearning,1964-01-15,98.0,,,tt0058349,,"After a bombing raid destroys the family store and her husband, Reiko rebuilds and runs the shop out of love stopped short by destruction.",0,0,乱れる,ja +30202,Children of the Damned,1964-01-29,90.0,,,tt0056931,Beware the eyes that paralyze!!!,"Six children are found spread through out the world that not only have enormous intelligence, but identical intelligence and have a strange bond to each other.",0,0,Children of the Damned,en +5967,The Umbrellas of Cherbourg,1964-02-19,91.0,,,tt0058450,a film for all the young lovers of the world,"This simple romantic tragedy begins in 1957. Guy Foucher, a 20-year-old French auto mechanic, has fallen in love with 17-year-old Geneviève Emery, an employee in her widowed mother's chic but financially embattled umbrella shop. On the evening before Guy is to leave for a two-year tour of combat in Algeria, he and Geneviève make love. She becomes pregnant and must choose between waiting for Guy's return or accepting an offer of marriage from a wealthy diamond merchant.",0,0,Les parapluies de Cherbourg,fr +21159,The Last Man on Earth,1964-03-08,86.0,,,tt0058700,Do you dare imagine what it would be like to be...The last man on earth...Or the last woman.,"Robert Morgan is the last man on earth, as far as he can tell. A plague killed everyone else on the planet several years ago. He was immune to it, and can only guess why. Vampires that were formerly human attack Morgan's home every night",0,0,The Last Man on Earth,en +202941,Mail Order Bride,1964-03-10,83.0,,,tt0058318,"All you need for a hillbilly weddin' is a guy, a gal and a shotgun!",Elderly Will Lane arranges marriage of wild son of dead friend to tame him.,0,0,Mail Order Bride,de +42796,The Strangler,1964-04-01,89.0,,,tt0058622,Based on the terror that has shocked the nation!,"An overweight lab technician with low self esteem, brought on by his dominant mother, becomes a serial killer of female nurses.",0,0,The Strangler,en +66022,The Chalk Garden,1964-04-02,105.0,,,tt0057933,Hayley The Hell Raiser!,"A grandmother seeks a governess for her 16 year old granddaughter, Laurel, who manages to drive away each and every one so far by exposing their past, with a record of three in one week! When an applicant with a mysterious past manages to get the job, Laurel vows to expose her. Meanwhile, Laurel's married-divorced-married mother tries to get her back.",0,0,The Chalk Garden,en +37315,The Best Man,1964-04-05,102.0,,,tt0057883,Does The Best Man Always Get To The White House?,The other party is in disarray. Five men vie for the party nomination for president. No one has a majority as the first ballot closes and the front-runners begin to decide how badly they want the job.,0,0,The Best Man,en +46982,Black Peter,1964-04-16,85.0,,,tt0056919,,Reality movie of a few days in the life of a Czechoslovak teenager when he starts work.,0,0,Černý Petr,cs +35790,Charulata,1964-04-17,117.0,,,tt0057935,,"Charu lives a lonely and idle life in 1870s India. Although her husband Bhupati devotes more time to his newspaper than to their marriage, he sees her loneliness and asks his brother-in-law,Umapada to keep her company. At the same time Bhupati's own brother, Amal, a would-be writer comes home finishing his college education. However, after several months, Charu and Amal's feelings for each other move beyond literary friendship.",0,0,চারুলতা,bn +87296,"Oh, Bomb!",1964-04-18,95.0,,,tt0307937,,"During the mayoral election, two ex-prisoners decide to replace the lucky pen of an annoying candidate with a mini-bomb",0,0,ああ爆弾,ja +80443,It's a Hard Life,1964-04-22,104.0,,,tt0061157,,,0,0,La vita agra,it +57983,The Jester's Tale,1964-05-05,82.0,,,tt0057894,,An anti-war black comedy set during the Thirty Years' War. The film combines live action with animation to suggest the artistic style of the engraver Matthäus Merian.,0,0,Bláznova kronika,cs +58878,Three Outlaw Samurai,1964-05-13,95.0,,,tt0058652,One...two...three Samurai filling the giant screen with flashing swordplay,"Shiba, a wandering ronin, encounters a band of peasants who have kidnapped the daughter of their dictatorial magistrate, in hopes of coercing from him a reduction in taxes. Shiba takes up their fight, joined by two renegades from the magistrate's guard, Sakura and Kikyo. The three outlaws find themselves in a battle to the death.",0,0,三匹の侍,ja +42794,The Horror of Party Beach,1964-06-01,78.0,,,tt0058208,WEIRD! Ghoulish atomic beasts who live off human blood!,"Radioactive waste dumped off the coastline creates mutant monsters. The beasts attack slumber parties, beaches, tourists, and terrorize a waterfront community as a scientist, his daughter, her boyfriend and the local police try to find a way to stop them.",0,0,The Horror of Party Beach,en +99374,Honeymoon Hotel,1964-06-03,89.0,,,tt0058204,You gotta have a woman in every room in Honeymoon Hotel,"A man left at the alter goes on his honeymoon trip anyway, taking his best man along instead.",0,0,Honeymoon Hotel,en +29313,Ella y el miedo,1964-06-17,87.0,,,tt0055953,,No overview found.,0,0,Ella y el miedo,en +3092,Seance on a Wet Afternoon,1964-06-19,111.0,,,tt0058557,Two of the greatest performances you will ever see...,"Bill Savage is struggling to maintain his marriage to his increasingly unbalanced wife, Myra, who believes she is a medium. She plans a scheme that will make her famous, involving kidnapping then ""psychically"" locating a little girl.",0,0,Seance on a Wet Afternoon,en +194853,The Guns,1964-06-25,80.0,,,tt0058122,,"In an extremely poor region in the Northeast of Brazil, a group of soldiers try to stop the population from sacking a food deposit.",0,0,Os Fuzis,pt +211139,The Lion of Thebes,1964-06-27,89.0,,,tt0058289,,"Fleeing Troy in the wake of its destruction, fair-faced Helen and her faithful protector Arion run into the pharaoh Ramses, who sets his sights on Helen -- and is subsequently murdered. Now it's up to Arion to save Helen from those who wish her dead.",0,0,Leone di Tebe,en +108419,Empire,1964-08-02,485.0,,,tt0196530,,A single shot of the Empire State Building from early evening until nearly 3am the next day.,0,0,Empire,en +28592,The Castle of the Living Dead,1964-08-05,91.0,,,tt0057924,How much shock can the human brain endure before it cracks?,"Count Drago invites over entertainers to his castle, but what the people don't know is that Drago mummifies animals and humans!",0,0,Il castello dei morti vivi,en +14703,The Night of the Iguana,1964-08-06,125.0,,,tt0058404,One man... three women... one night,Drama while a tour bus driver shows church ladies around Mexico. Helped establish Puerto Vallarta as tourist destination.,3000000,12000000,The Night of the Iguana,en +24062,The Patsy,1964-08-12,101.0,,,tt0058456,,"When a star comedian dies, his comedy team decides to train a 'nobody' to play the Star in a big TV show (a Patsy). But the man chosen, bellboy Stanley Belt (Lewis), can't do anything right. The TV show is getting closer, and Stanley is getting worse.",0,0,The Patsy,en +212713,Kisses For My President,1964-08-21,113.0,,,tt0058266,"First male ""first lady"" takes Washington by storm.","When the women of America join together on election day and elect a Leslie McCloud as the US President, things get a little awkward. Especially for her husband Thad McCloud. He, as First Husband, must take over the job as The First Lady, in the women's groups and garden parties.",0,0,Kisses For My President,en +150247,Zebra in the Kitchen,1965-06-01,92.0,,,tt0059944,The crazy day the animals came out to play!,"A young boy lets the animals out of their cages at the Zoo, to set them free, but the animals start taking over the town.",0,0,Zebra in the Kitchen,en +433,Mary Poppins,1964-08-27,139.0,,,tt0058331,It's supercalifragilisticexpialidocious!,"The movie combines a diverting story, songs, color and sequences of live action blended with the movements of animated figures. Mary Poppins is a kind of Super-nanny who flies in with her umbrella in response to the request of the Banks children and proceeds to put things right with the aid of her rather extraordinary magical powers before flying off again.",6000000,102272727,Mary Poppins,en +29318,Devil Doll,1964-09-01,81.0,,,tt0058007,Is it flesh or wood? Man or monster? Alive or dead?,An evil hyponotist/ventriloquist plots to gain an heiress' millions.,0,0,Devil Doll,en +128437,Bullet for a Badman,1964-09-01,80.0,,,tt0057905,,Former Texas Rangers Sam Ward and Logan Keliher become enemies when Sam turns bank robber and Logan marries Sam's ex-wife.,0,0,Bullet for a Badman,en +77860,The Comedy Man,1964-09-03,92.0,,,tt0056942,,"A middle-aged stock actor goes to London to try the big time. After much frustration, he lands a job doing TV commercials, gaining wealth and recognition. He eventually gives it all up to return to stage work and keep his pride.",0,0,The Comedy Man,en +3686,Last of the Renegades,1964-09-17,94.0,,9309,tt0058751,,"Forester, a ruthless oil baron, wants to create a war between the native American tribes and the white men. Old Shatterhand, Winnetou and their sidekick Castlepool try to prevent this.",0,0,Winnetou II,de +141489,Hamlet from the Lunt-Fontanne Theatre,1964-09-23,191.0,,,tt0058175,,A stage production of Hamlet filmed at the Lunt-Fontanne Theatre in New York.,0,0,Hamlet from the Lunt-Fontanne Theatre,en +201429,The Divided Heaven,1964-10-02,116.0,,,tt0058139,,"1964 DEFA, East German Film by Konrad Wolf based on the novel by Christa Wolf. Tale of star-crossed lovers divided by worldviews in a divided Berlin.",0,0,Der geteilte Himmel,de +89242,East of Sudan,1964-10-02,85.0,,,tt0060362,You Live Every Adventure Known to Man ... When You Dare to Cross ...,"A British soldier escapes from 1880s Khartoum and goes down the Nile river with a fellow soldier, a governess and the daughter of an emir.",85,0,East of Sudan,en +63876,Circle of Love,1964-10-16,105.0,,,tt0058533,"Until Vadim, LOVE has been child's play... Now watch the adults play!","In a chain reaction of romantic adventures, various people play musical beds in a remake of Max Ophul's ""La Ronde.""",0,0,La ronde,fr +100770,The Black Torment,1964-10-19,90.0,,,tt0057890,A Creature From the Grave Bears Witness to Murder,"A lord returns to his manor with his new wife, to hear rumours that he had already secretly returned and had committed several murders. Has he lost his mind, or is something dark afoot ?",0,0,The Black Torment,en +11113,My Fair Lady,1964-10-21,170.0,,,tt0058385,The loverliest motion picture of them all!,A misogynistic and snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.,17000000,72070731,My Fair Lady,en +73348,Where Love Has Gone,1964-11-02,111.0,,,tt0058745,It's Gone Wrong! It's Gone Wild!,A divorced couple's teen-age daughter stands trial for stabbing her mother's latest lover.,0,0,Where Love Has Gone,en +109379,The Peach Thief,1964-11-09,84.0,,,tt0058277,,The wife of the officer running a prisoner camp falls in love with a prisoner there.,0,0,Kradetzat na praskovi,bg +53617,Pajama Party,1964-11-11,82.0,,338327,tt0058440,,A Martian teenager sent to prepare for an invasion falls in love with an Earth girl.,0,0,Pajama Party,en +261439,Hamlet at Elsinore,1964-11-15,170.0,,,tt0058176,,"Christopher Plummer is joined by an all-star cast including Michael Caine, Robert Shaw, Roy Kinnear and Donald Sutherland in this historic production of Hamlet filmed on location at Elsinore, Denmark, the actual location where the play is set.",0,0,Hamlet at Elsinore,en +154019,Belarmino,1964-11-18,80.0,,,tt0057880,,"A has-been boxing champion «who could have been great», probing, and soul revealing.",0,0,Belarmino,pt +296491,3 Avengers,1964-11-26,0.0,,,tt0058651,,"(1964) Alan Steel, Lisa Gastoni, Mimmo Palmara, Rosalba Neri. Steel and his sword-wielding pals run head-on into the forces of a cruel tyrant. There's a bit more intentional comedy than usual in this sword and sandal opus. All the usual court intrigue comes into play as the bad guys are eventually subdued. If you like lots of sword fighting, this ones for you. Color, 16mm.",0,0,Gli invincibili tre,it +63449,Ordinary Wonder,1964-12-01,99.0,,,tt0058423,,"In a romantic and philosophical tale of magic and love, a mischievous Sorcerer turns a bear into a young man. Unhappy in his new state, the former bear, with the help of the magician and his beautiful wife, is looking for a princess to kiss in order for his wish to be granted. Certain that all princesses are a vain, spoiled lot, he approaches the first one he sees. But the princess herself is gentle, kind and beautiful, and she and the young man fall in love with each other at the first sight. Unable to bring her pain, he runs away without explaining. As the Princess takes brave actions to find her beloved, new characters enter the story, including the King's ambitious Prime Minister and a hunter looking for a bear fur to complete his collection. How will this complicated plot be resolved?",0,0,Обыкновенное чудо,ru +10604,Zorba the Greek,1964-12-14,142.0,,,tt0057831,Life. Lust. Love. Zorba.,An uptight English writer traveling to Crete on a matter of business finds his life changed forever when he meets the gregarious Alexis Zorba.,783000,0,Αλέξης Ζορμπάς,el +10299,"Hush... Hush, Sweet Charlotte",1964-12-15,133.0,,,tt0058213,The years will soon erase a lover's lies...the blood on his face!,"An aging, reclusive Southern belle plagued by a horrifying family secret descends into madness after the arrival of a lost relative.",0,0,"Hush... Hush, Sweet Charlotte",en +94568,Get Yourself a College Girl,1964-12-18,87.0,,,tt0161612,,A young music student faces expulsion after her instructors learn she is moonlighting as a pop-music writer.,0,0,Get Yourself a College Girl,en +84420,Magic Christmas Tree,1964-12-19,60.0,,,tt0195039,The enchanting story of a magic tree that made a prisoner of Santa Claus and opened the heart of a boy to the true meaning of Christmas,"A boy is given a ring by an old witch, he uses the ring to bring upon a magic Christmas that grants him 3 wishes.",0,0,Magic Christmas Tree,en +34181,Gertrud,1964-12-19,119.0,,,tt0058138,,"Gertrud leaves her unfulfilling marriage to Gustav and takes a lover, composer Erland Jansson.",0,0,Gertrud,da +62755,Back Door to Hell,1964-12-19,75.0,,,tt0057864,,"During WWII, a three-man commando team places its trust in the hands of a band of Filipino resistors, as they try to knock out a Japenese communication center.",0,0,Back Door to Hell,en +95358,The Pleasure Seekers,1964-12-25,107.0,,,tt0058479,,Three American lovelies room together in Madrid and all manage to get themselves into seemingly unhappy relationships with fellows.,0,0,The Pleasure Seekers,en +32609,Mickey One,1965-09-27,93.0,,,tt0059447,...and the name of the game is Mickey!,A former comic is on the run from the mob.,0,0,Mickey One,en +293109,Onnenpeli,1965-10-01,93.0,,,tt0138680,,Film by Risto Jarva.,0,0,Onnenpeli,en +30959,Kwaidan,1964-12-29,183.0,,,tt0058279,"Bizarre, unearthly, terrifying— a nation's legend, an author's imagination, a director's creation manifest in the superlative— Kwaidan","This is the film adaptation of four stories from the book ""Kwaidan: Stories and studies of strange things"" by Lafcadio Hearn and is actually a collection of Japanese ghost stories, taken from various sources, some even stemming from China.",0,0,怪談,ja +211179,The Magnificent Gladiator,1964-12-30,0.0,,,tt0290240,,,0,0,The Magnificent Gladiator,en +160046,Vovka in the Kingdom of Far Far Away,1965-01-01,19.0,,,tt0213309,,A schoolboy gets into a fairy tale with the help of a librarian and DIY book. But life in the magical land is not as easy as it seems.,0,0,Вовка в Тридевятом царстве,ru +22701,Attack from Space,1965-01-01,76.0,,458095,tt0230832,,"The superhero Starman is sent by the Emerald Planet to protect Earth from belligerent aliens from the Sapphire Galaxy. The Sapphireans (or ""Spherions"") kidnap Dr. Yamanaka and force him to use his spaceship against the Earth.",0,0,Attack from Space,en +185057,Adventures of a Dentist,1965-01-01,82.0,,,tt0155028,,"This is story about a dentist with the talent of painlessly extracting teeth, and what happens to him as a result of being naturally good at his job.",0,0,Pokhozhdeniya zubnogo vracha,en +17974,"The Birds, the Bees and the Italians",1965-01-01,115.0,,,tt0062271,,"A citizen of the Veneto in her sixties. Three stories of ""love in the country"".",0,0,Signore & signori,it +42734,Dear Brigitte,1965-01-01,100.0,,,tt0059094,What's all the noise about?,"Professor Leaf, an absent-minded poet with a prejudice against the sciences, is forced to face the fact that his son is a math prodigy with little artistic talent of his own.",0,0,Dear Brigitte,en +48136,Two on a Guillotine,1965-01-13,107.0,,,tt0059837,"Wouldn't you like to learn how to flip your lid? If you're chopping for entertainment, here's the super shocker of them all.","The daughter of a dead magician who accidentally killed his wife, her mother, while performing a guillotine trick must spend the night in his house in order to collect her inheritance. Is the house haunted or is it all magic?",0,0,Two on a Guillotine,en +117212,A Fugitive from the Past,1965-01-15,183.0,,,tt0279901,,"Three robbers escape with loot from a heist before one of them shoots them; their corpses wash up near the aftermath of a maritime calamity, provoking a policeman's interest.",0,0,飢餓海峡,ja +96089,Guns of Diablo,1965-01-29,91.0,,,tt0058167,,"Bronson and Russell are up against some bad guys who run the town to which the pair have gone for supplies. Bronson runs into an old girl friend, Oliver, who is now married to his enemy Merlin. Bronson had long ago broken Merlin's arm, and now the man wants revenge.",0,0,Guns of Diablo,en +82243,Gumnaam,1965-02-06,151.0,,,tt0247394,And then there were none...,"Gumnaam is a 1965 Indian suspense thriller film directed by Raja Nawathe, starring Manoj Kumar, Nanda, Pran, Helen and Mehmood. Eight people are trapped on an island when their plane abandons them. They find a large mansion whose butler is expecting them. Then one by one, they die...",0,0,गुमनाम,hi +87759,The Blizzard,1965-02-10,76.0,,,tt0058346,,"Short story ""Metel"" from volume ""Povesti Belkina"".",0,0,Метель,ru +2428,The Greatest Story Ever Told,1965-02-15,199.0,,,tt0059245,,All-star epic retelling of Christ's life.,20000000,15473333,The Greatest Story Ever Told,en +90228,Yoyo,1965-02-19,92.0,http://www.janusfilms.com/etaix/yoyo.html,,tt0059934,,The son of a ruined millionaire and a horsewoman becomes a clown and restores their fortune.,0,0,Yoyo,fr +26811,Dr. Terror's House of Horrors,1965-02-23,98.0,,,tt0059125,"Acclaimed as ""THE FEAR OF THE YEAR""",Five strangers board a train and are joined by a mysterious fortune teller who offers to read their Tarot cards. Five separate stories unfold: An architect returns to his ancestoral home to find a werewolf out for revenge; a doctor discovers his new wife is a vampire; a huge plant takes over a house; a musician gets involved with voodoo; an art critic is pursued by a disembodied hand.,0,0,Dr. Terror's House of Horrors,en +43407,None But the Brave,1965-02-24,106.0,,,tt0059518,The brave are never different - only different looking!,"American and Japanese soldiers, stranded on a tiny Pacific island during World War II, must make a temporary truce and cooperate to survive various tribulations. Told through the eyes of the American and Japanese unit commanders, who must deal with an atmosphere of growing distrust and tension between their men.",0,0,None But the Brave,en +259835,Kindar the Invulnerable,1965-03-05,96.0,,,tt0060590,,An evil bandit kidnaps a sultan's son and raises him but finds the son has magic powers.,0,0,"Kindar, l'invulnerabile",en +71725,Man Is Not a Bird,1965-03-06,72.0,,,tt0059063,,"A Serbian engineer falls for a younger woman, but he is inept at courtship.",0,0,Čovek nije tica,sh +329868,Six Days a Week,1965-03-22,91.0,,,tt0059444,,"A young woman tries to deceive both her husband and her prospective lover, but is hoist with her own petard. From the comedy by Diego Fabbri",0,0,La bugiarda,it +31344,The 317th Platoon,1965-03-31,100.0,,,tt0058863,,"In Vietnam, 1954, a French platoon isolated behind enemy lines tries to come back. It is led by the inexperienced, idealistic sous-lieutenant Torrens, and by adjutant Willsdorf, a WWII veteran of the Werhmacht.",0,0,La 317ème section,en +3780,Red Beard,1965-04-03,185.0,,,tt0058888,Films like that can influence the way we see the world,"Set in feudal times, novice physician, Yuzo Kayama, is sent to a poor infirmary expecting just to visit, but is infuriated to learn he must stay. He tries to provoke his termination, but is foiled by head doctor ""Red Beard"" (Toshiro Mifune), a man whose methods are as caring as they are unpredictable.",0,0,赤ひげ,ja +77381,Intimate Lighting,1965-04-08,71.0,,,tt0060543,,"Taking his young city girlfriend along for the trip, a man visits old musical friends in a country village for a string quartet rehearsal.",0,0,Intimní osvětlení,cs +18682,Girl Happy,1965-04-14,96.0,,,tt0059224,Elvis jumps with the campus crowd to make the beach 'ball' bounce!!!,"A Chicago mobster hires a rock and roll singer and his band to keep an eye on his daughter during Spring Break in Fort Lauderdale, Florida.",0,0,Girl Happy,en +30374,Crack in the World,1965-04-15,96.0,,,tt0059065,Thank God it's only a motion picture!,"Dr. Steven Sorenson plans to tap the geothermal energy of the Earth's interior by means of a thermonuclear device detonated deep within the Earth.This experiment causes a crack to form and grow within the earth's crust, which threatens to split the earth in two if it is not stopped in time.",873000,0,Crack in the World,en +8072,Alphaville,1965-05-05,100.0,,144146,tt0058898,Suddenly the word is Alphaville... and a secret agent is in a breathless race against the Masters of the Future.,"An American private-eye, arrives in Alphaville, a futuristic city on another planet which is ruled by an evil scientist named Von Braun, who has outlawed love and self-expression.",220000,0,"Alphaville, une étrange aventure de Lemmy Caution",fr +21027,Shenandoah,1965-06-03,105.0,,,tt0059711,,"Charlie Anderson, a farmer in Shenandoah, Virginia, finds himself and his family in the middle of the Civil War he wants nothing to do with. When his youngest boy is taken prisoner by the North the Civil War is forced upon him.",0,0,Shenandoah,en +38340,A High Wind in Jamaica,1965-06-04,103.0,,,tt0059269,,"In 1870, a Jamaican colonial family sends its children to Britain for proper schooling, but their ship is taken over by pirates, who become fond of the kids.",0,0,A High Wind in Jamaica,en +143073,The Cook,1965-06-06,71.0,,,tt0059762,,A romantic comedy about a young girl who's coming to the kolkhoz to work as a cook.,0,0,Stryapukha,ru +3520,Casanova '70,1965-06-15,125.0,,,tt0059015,,"The amorous adventures of Andrea Rossi-Colombotti, an army officer who finds pleasure with beautiful women in life-threatening situations.",0,0,Casanova '70,it +28673,Nightmare Castle,1965-06-16,104.0,,,tt0060097,"A mad, sadistic scientist on the loose!",A woman and her lover are tortured and killed by her sadistic husband. The pair return from the grave to seek vengeance.,0,0,Amanti d'oltretomba,en +32323,The Railrodder,1965-06-20,24.0,,,tt0059631,,"After literally swimming across the Atlantic Ocean, an Englishman takes a country trip across Canada on a railcar.",0,0,The Railrodder,en +77915,The Sandpiper,1965-06-23,117.0,,,tt0059674,It was the right thing. It was the wrong thing. It was the only thing their hearts would allow.,"A free-spirited artist (Elizabeth Taylor), who lives near California's Big Sur, meets the administrator (Richard Burton) of the parochial school that her young son attends and lures the cleric away from his wife (Eva Marie Saint).",0,0,The Sandpiper,fr +11694,Cat Ballou,1965-06-24,97.0,,,tt0059017,It's That Way-Out Whopper Of A Funny Western...A She-Bang To End All She-Bangs!,"A woman seeking revenge for her murdered father hires a famous gunman, but he's very different from what she expects.",0,20666667,Cat Ballou,en +163791,And the Wife Shall Revere Her Husband,1965-06-28,105.0,,,tt0180749,An unmarried couple in the strict Greek society of the 60s.,"When a man decides to marry the woman he's been living with, she stops being the silent patient person she was and claims to be the boss in the house. Her behaviour changes so much after the marriage that the husband gets so irritated as to ask for a divorce even a few hours later..",0,0,Η Δε Γυνή Να Φοβήται Τον Άνδρα,el +76286,Ski Party,1965-06-30,90.0,,,tt0059726,There's only one way to get warm!,"Remember the beach movies of the sixties? They're back! Well, not quite, but since Avalon, Hickman, and even Funicello appear in this one, it sure feels right. This time, though, read snow instead of sand and you got it. Ski lodge, to be precise, and though the plot is somewhat inane, with the boys cross-dressing to discover the secret of a friend's success with the girls, it's still a somewhat fun outing.",0,0,Ski Party,en +52122,The Family Jewels,1965-07-01,99.0,,,tt0059166,Jerry is seven times nuttier in seven gems of character portrayal!,"A young heiress must choose between six uncles, one of which is up to no good and out to harm the girl's beloved bodyguard who practically raised her.",0,0,The Family Jewels,en +111480,OSS 117: Mission for a Killer,1965-07-02,99.0,,183680,tt0059206,"His orders ""Kill or be killed!""",A secret agent is dispatched to find a rare and valuable drug.,0,0,Furia à Bahia pour OSS 117,fr +83788,Crime on a Summer Morning,1965-07-07,109.0,,,tt0059562,,Crime thriller based on a novel by James Hadley Chase.,0,0,Par un beau matin d'été,en +28295,I Saw What You Did,1965-07-21,82.0,,,tt0059297,You May Be the Target... of the Next Phone Call...,"When two teenagers make prank phone calls to strangers, they become the target for terror when they whisper ""I Saw What You Did, And I Know Who You Are!"" to psychopath Steve Marek who has just murdered his wife. But somebody else knows of the terrible crime that was committed that night, the killer's desperately amorous neighbor Amy Nelson.",0,0,I Saw What You Did,en +234377,Corn on the Cop,1965-07-23,6.0,,,tt0059058,,"It's Halloween, and an elderly lady, Granny, is leaving a grocery store with her treats for the children...",0,0,Corn on the Cop,en +68715,Illusion of Blood,1965-07-25,76.0,,,tt0061208,,The ghost of a samurai's wife takes revenge on her husband.,0,0,四谷怪談,ja +211017,Mosaic,1965-07-29,5.0,,,tt0059471,,A man sets a ping-pong ball into motion and it becomes fruitful and multiplies.,0,0,Mosaic,en +132939,Arizona Raiders,1965-08-01,88.0,,,tt0058917,Audie Murphy as a new kind of action-man... Raider-turned-Ranger!,"Murphy plays an ex-Quantrill's Raider who's released from jail with buddy Cooper to be deputized as Arizona Rangers in order to hunt down the remnant of the gang, rumored to he hiding out in a town ""neer dee border"" in the words of the loose-lipped saloon dancer. The goons are found hiding in an Indian mission. Murphy and Cooper pretend to want to rejoin the gang, but the bad guys catch on and brutally beat Cooper, who protects Murphy's true sentiments to the death.",0,0,Arizona Raiders,en +38681,Mission Bloody Mary,1965-08-13,101.0,,,tt0058882,,Agent 077 - Mission Bloody Mary or Agente 077 missione Bloody Mary is a 1965 Italian action spy adventure film. The first of the Secret Agent 077 film series directed by Sergio Grieco.,0,0,Agente 077 missione Bloody Mary,en +435041,Obsession,1965-08-16,31.0,,,tt0862766,,Student Shurik has just two hours before the beginning of the exam and he has no lectures notes,0,0,Наваждение,en +53619,Sergeant Dead Head,1965-08-18,90.0,,,tt0059704,,"An astronaut goes into space with a chimpanzee. When they return to Earth after their orbit, it is discovered that the chimp has the brains of the astronaut, and the astronaut has the brains of the chimp. Complications ensue.",0,0,Sergeant Dead Head,en +26581,Dr. Who and the Daleks,1965-08-23,82.0,,275873,tt0059126,Now on the Big Screen in COLOUR!,"Scientist Doctor Who accidentally activates his new invention, the Tardis, a time machine disguised as a police telephone box. Doctor Who, his two grand-daughters, and Barbara's boyfriend Ian are transported through time and space to the planet Skaro, where a peaceful race of Thals are under threat of nuclear attack from the planet's other inhabitants: the robotic mutant Daleks. Overview Written by Alexander Lum",502318,0,Dr. Who and the Daleks,en +2786,Pierrot le Fou,1965-08-29,110.0,,,tt0059592,,"Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.",300000,0,Pierrot le fou,fr +192990,Sky West and Crooked,1965-08-31,105.0,,,tt0060484,,"A young, lonely, mentaly retarded teenage girl finds solace in burying dead animals after the sudden death of a friend of hers.",0,0,Sky West and Crooked,en +149511,The Ashes,1965-09-25,234.0,,,tt0060847,,"Set in the time of Napoleon wars, shows how the wars swept over the unfortunate Polish country at the beginning of the XIX-th century. Story revolves around the Polish legion under command of General Dabrowski, who then fought on Napoleon's side with the hopes of Poland's revival.",0,0,Popioly,pl +1942,Bunny Lake Is Missing,1965-10-03,107.0,,,tt0058997,No one admitted while the clock is ticking!,"A woman reports that her young daughter is missing, but there seems to be no evidence that she ever existed.",0,0,Bunny Lake Is Missing,en +287391,Un milliard dans un billard,1965-10-07,,,,tt0059103,,,0,0,Un milliard dans un billard,fr +142375,The Koumiko Mystery,1965-10-09,54.0,,,tt0059488,,"A look inside the world of a young Japanese woman during the time of the Tokyo Olympiad (1962), from French New Wave Left Bank director Chris Marker.",0,0,Le mystère Koumiko,fr +17744,The Bedford Incident,1965-10-11,102.0,,,tt0058962,"""Hunt her down...until she comes up!""","Richard Widmark plays a hardened cold-war warrior and captain of the American destroyer USS Bedford. Sidney Poitier is a reporter given permission to interview the captain during a routine patrol. Poitier gets more than he bargained for when the Bedford discovers a Soviet sub in the depths and the captain begins a relentless pursuit, pushing his crew, and the on-screen tension, to breaking point in this chilling cold-war tale of cat and mouse.",0,0,The Bedford Incident,en +7085,The Desperado Trail,1965-10-14,93.0,,9309,tt0059915,,"Rollins' gang wants to grab land by inciting the settlers in a war against the Indians but Winnetou and Old Shatterhand try to keep the peace, until Rollins frames Winnetou up for the murder of Jicarilla Chief's son.",0,0,Winnetou III,de +29067,"Die, Monster, Die!",1965-10-26,80.0,,,tt0059465,No one can stop this killing machine....It's Already Dead!!!,"A young man visits his fiancé's estate to discover that her wheelchair-bound scientist father has discovered a meteorite that emits mutating radiation rays that have turned the plants in his greenhouse to giants. When his own wife falls victim to this mysterious power, the old man takes it upon himself to destroy the glowing object with disastrous results.",0,0,"Die, Monster, Die!",en +19661,Mirage,1965-10-29,108.0,,,tt0059448,Run... right into her arms!,"New York City. David Stillwell struggles to recover his memory before the people who are trying to kill him succeed. Who is he, who are they, and why is he surrounded by murder?",0,0,Mirage,en +42664,The War Lord,1965-11-17,123.0,,,tt0059896,He Battled Two Empires For The Love Of One Woman.,A knight in the service of a duke goes to a coastal villiage where an earlier attempt to build a defensive castle has failed. He begins to rebuild the duke's authority in the face of the barbarians at the border and is making progress until he falls in love with one of the local women.,0,0,The War Lord,en +11799,Viva Maria!,1965-11-22,120.0,,,tt0059956,,Traveling players invent the strip tease while mixed up in a Central American revolution.,0,0,Viva Maria!,fr +148371,A Story Written with Water,1965-11-23,120.0,,,tt0059758,,"Struggling with his true emotions, dreams, memories of the past and the reality Shizuo is about to marry, but is torn between his wife-to-be and the love to his mother.",0,0,水で書かれた物語,ja +61765,Up to His Ears,1965-12-04,104.0,,,tt0059831,,Up the Himalayas... Up the Yang-tze... Up in a balloon... Up-stage with a stripper... Up-town in Hong Kong... You can't keep a great adventurer down,0,0,Les tribulations d'un chinois en Chine,fr +297342,Υπάρχει Και Φιλότιμο,1965-12-06,,,,tt0181600,,,0,0,Υπάρχει Και Φιλότιμο,el +63260,The Return of Ringo,1965-12-08,95.0,,473730,tt0060903,,"Once again billed as Montgomery Wood, Giuliano Gemma plays a civil war soldier who returns to his family land to find his family decimated, his property taken over by a family of Mexican bandits and his fiancee about to marry the Mexican gangster behind all this. Bent on revenge, he goes undercover disguised as a Mexican and discovers he has a daughter!",0,0,Il ritorno di Ringo,it +33364,A Patch of Blue,1965-12-10,105.0,,,tt0059573,Love is color blind.,"A blind, uneducated white girl is befriended by a black man, who becomes determined to help her escape her impoverished and abusive home life.",800000,6792000,A Patch of Blue,en +44006,Othello,1965-12-15,165.0,,,tt0059555,The greatest Othello ever by the greatest actor of our time,The 1965 version of the Shakespeare play.,0,0,Othello,en +13580,The Spy Who Came in from the Cold,1965-12-16,112.0,,,tt0059749,BRACE YOURSELF FOR GREATNESS THE BOOK THE WORLD COULD NOT LAY DOWN IS NOW A MOTION PICTURE,"British agent Alec Leamas refuses to come in from the cold war during the 1960s, choosing to face another mission, which may prove to be his final one.",0,0,The Spy Who Came in from the Cold,en +660,Thunderball,1965-12-16,130.0,http://www.mgm.com/view/movie/2009/Thunderball/,645,tt0059800,Look up! Look down! Look out!,A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.,5500000,141195658,Thunderball,en +19545,Invasion of Astro-Monster,1965-12-19,96.0,,374509,tt0059346,,"In the 6th Godzilla movie, mysterious aliens from the Planet X ask earth's people to help them save their world from the dreaded Ghidorah (aka ""Monster Zero"") by letting them ""borrow"" Godzilla and Rodan. Monster mayhem ensues on Planet X, but it's soon discovered that the aliens have other intentions for the monsters.",0,0,Kaijū Daisensō,ja +51054,The Slender Thread,1965-12-23,98.0,,,tt0059729,,A college volunteer at the crisis phone gets a call from a suicide caller.,0,0,The Slender Thread,en +99095,"Oggi, domani, dopodomani",1965-12-28,95.0,,,tt0059535,,Italian comedy film in three segments,0,0,"Oggi, domani, dopodomani",it +84617,The Dot and the Line: A Romance in Lower Mathematics,1965-12-31,10.0,,,tt0059122,,"A cartoon detailing the unrequited love that the line has for the dot, and the heartbreak that results due to the dot's feelings for the lively squiggle.",0,0,The Dot and the Line: A Romance in Lower Mathematics,en +31258,The Wild World of Batwoman,1966-01-01,70.0,,,tt0061191,Beyond Wildest Dreams!,The pointlessly-named Batwoman and her bevy of Batmaidens fight evil and dance.,0,0,The Wild World of Batwoman,en +18691,Frankie and Johnny,1966-01-01,87.0,,,tt0060429,,"Elvis plays Johnny, a riverboat entertainer with a big gambling problem. Donna Douglas plays Johnny's girl, Frankie. A fortune teller tells Johnny how he can change his luck. Enter a new lady luck played by Nancy Kovack and the cat fight begins.",0,0,Frankie and Johnny,en +14387,The Great St. Trinian's Train Robbery,1966-01-01,93.0,,12077,tt0060476,,The all-girl school foil an attempt by train robbers to recover two and a half million pounds hidden in their school.,0,0,The Great St. Trinian's Train Robbery,en +49097,The Office,1966-01-01,5.0,,,tt0167319,,The insane government bureaucracy at a state pension window.,0,0,Urzad,pl +36540,Winnie the Pooh and the Honey Tree,1966-01-01,25.0,,,tt0061199,,Christopher Robin's bear attempts to raid a beehive in a tall tree.,0,0,Winnie the Pooh and the Honey Tree,en +32143,Billy Two Hats,1974-03-20,99.0,,,tt0069786,,An aging outlaw helps a young half-breed learn the ropes.,0,0,Billy Two Hats,en +42726,A Man and a Woman,1966-01-01,102.0,,,tt0061138,See It With Someone You Love!,"A man and a woman meet by accident on a Sunday evening at their childrens' boarding school. Slowly, they reveal themselves to each other, finding that each is a widow.",0,0,Un Homme et une femme,fr +128412,Falling Leaves,1966-01-01,91.0,,,tt0171343,,A young idealist takes a job at a local state run winery only to discover and become disillusioned by the corruption of the Soviet State.,0,0,გიორგობისთვე,ka +146416,A Long and Happy Life,1966-01-01,76.0,,,tt0271467,,A young man and woman meet by chance and experience a night and a morning together. One of the truest and realistic depiction of Russian romance and life.,0,0,Долгая счастливая жизнь,en +91261,The Story of Asya Klyachina,1966-01-01,99.0,,,tt0060549,,A pregnant young woman wants to settle down with a good-for-nothing villager but is wooed by a suitor from the city.,0,0,"История Аси Клячиной, которая любила, да не вышла замуж",ru +19548,Le Grand Restaurant,1966-01-01,82.0,,,tt0061728,,"A great French restaurant's owner, Monsieur Septime (Louis de Funès), is thrust into intrigue and crime, when one of his famous guests disappears.",0,0,Le Grand Restaurant,fr +58404,The Treasure of San Gennaro,1966-01-01,104.0,,421566,tt0062080,,"A pair of Americans want to perform the greatest robbery: the treasure of San Genaro, in Napoli.",0,0,Operazione San Gennaro,it +124517,Emotion,1966-01-01,40.0,,,tt0229367,,"Experimental short film depicting the life, perhaps real, perhaps a dream, of a young girl named Emi. Emi travels to the city where she encounters her counterpart, Sari, and falls in love with…a vampire?",0,0,Émotion,ja +94663,The Round-Up,1966-01-06,87.0,,,tt0059776,,Set in a detention camp in Hungary in 1869 at a time of guerilla campaigns against the ruling Austrians.,0,0,Szegénylegények,hu +4893,Where the Spies Are,1966-01-26,110.0,,,tt0059905,,No overview found.,0,0,Where the Spies Are,en +73241,The Velvet Underground and Nico,1966-02-08,70.0,,,tt0061149,,"The film depicts a rehearsal of The Velvet Underground including Nico, and is essentially one long loose improvisation.",0,0,The Velvet Underground and Nico,en +119801,Made In Paris,1966-02-09,103.0,,,tt0060646,This is Ann-Margaret BEFORE she went to Paris... This is Ann-Margaret AFTER she got to Paris... AND what happens in between is what it's all about!,"A pretty fashion buyer visiting Paris on business is courted by a famous designer. Boris Sagal's 1966 romantic comedy stars Ann-Margret, Louis Jourdan, Richard Crenna, Chad Everett, Edie Adams, John McGiver, Reta Shaw and Count Basie.",0,0,Made In Paris,en +130957,The Sons of Great Bear,1966-02-18,98.0,,,tt0061057,,"First DEFA ""western"" establishing Gojko Mitić's stardom portraying Native Americans.",0,0,Die Söhne der großen Bärin,de +52867,Lord Love a Duck,1966-02-21,105.0,,,tt0060636,This motion picture is an act of pure aggression,"From his prison cell, young Alan Musgrave (Roddy McDowell) relates his experiences of the previous year dedicated to fulfilling every whim of beautiful and self-absorbed high school senior Barbara Ann Greene played by Tuesday Weld.",0,0,Lord Love a Duck,en +5040,Pharaoh,1966-03-10,180.0,,,tt0060401,,Young Pharaoh Ramses XIII clashes with Egypt's clergy over influence on the affairs of the state and its coffers.,0,0,Faraon,pl +151043,A Man Called Adam,1966-03-16,0.0,,,tt0060660,,A famous jazz trumpeter finds himself unable to cope with the problems of everyday life.,0,0,A Man Called Adam,en +22899,Gamera vs. Barugon,1966-04-17,106.0,,161766,tt0060446,,"After a treacherous expedition to retrieve a giant opal, disaster strikes as the opal reveals itself to be an egg which spawns Barugon, demon dog from Hell! Armed with a deadly tongue and cold beams, Barugon wreaks havoc on Japan. Gamera comes to save the day.",0,0,Daikaijû kettô: Gamera tai Barugon,ja +33360,Let's Not Get Angry,1966-04-20,100.0,,,tt0059499,,"One-time gangster Antoine is enjoying retirement on the coast, now managing a boating club. He receives a visit from a former accomplice who asks for a loan. The money will be repaid by a crook who is now in hiding; Antoine intends to recover his money.",0,0,Ne nous fâchons pas,fr +84823,Santa Claus Has Blue Eyes,1966-04-25,47.0,,,tt0060872,,"Daniel needs some money to buy a duffle coat that is in fashion, so he agrees to work for a photographer by dressing up as Santa Claus. He discovers that it is much easier to meet girls when he is in his costume.",0,0,Le Père Noël a les yeux bleus,fr +193641,Adultery Italian Style,1966-05-04,95.0,,,tt0060070,,"To get her husband more interested in her, the wife invents a lover. The husband will collect every hint trying to figure out who is the lover.",0,0,Adulterio all'italiana,it +5060,Carry On Screaming,1966-05-20,87.0,,37261,tt0060214,Carry On Screaming with the Hilarious CARRY ON Gang!!,"The sinister Dr Watt has an evil scheme going. He's kidnapping beautiful young women and turning them into mannequins to sell to local stores. Fortunately for Dr Watt, Detective-Sergeant Bung is on the case, and he doesn't have a clue! In this send up of the Hammer Horror movies, there are send-ups of all the horror greats from Frankenstein to Dr Jekyl and Mr Hyde.",0,0,Carry On Screaming,en +20108,Au Hasard Balthazar,1966-05-25,95.0,,,tt0060138,,"The sad life and death of Balthazar, a donkey, from an idyllic childhood surrounded by loving children, through adulthood as a downtrodden beast of burden. His life is paralleled with that of the girl who named him, and as she is humiliated by her sadistic lover, so he is beaten by his owner. But he finds a kind of peace when he is employed by an old miller who thinks he is a reincarnated saint.",0,39388,Au hasard Balthazar,fr +37301,A Big Hand for the Little Lady,1966-05-31,95.0,,,tt0060165,All the action you can take...all the adventure you can wish for!,"A naive traveler in Laredo gets involved in a poker game between the richest men in the area, jeopardizing all the money he has saved for the purpose of settling with his wife and child in San Antonio.",0,0,A Big Hand for the Little Lady,en +116351,The Snails,1966-05-31,10.0,,,tt0309566,,"“Les Escargots” is a short film by René Laloux . The film was created in 1965 entirely through the use of stop motion. It is an animation and has no dialouge, instead it has a emotive soundtrack which I enjoyed and which I felt made there no need for dialouge.",0,0,Les Escargots,fr +215657,Syrinx,1966-05-31,3.0,,,tt0211015,,"She was the nymph who found refuge in the river reeds when the goat-god Pan pursued her. Syrinx is the first film of Ryan Larkin, a young artist from Norman McLaren’s student group. To illustrate the ancient Greek legend of how Pan made his pipes, he employs various charcoal sketches. Accompanying music is Claude Debussy’s Syrinx for solo flute.",0,0,Syrinx,en +26299,Clambake,1967-01-01,100.0,,,tt0061489,It's Elvis!..cooking up a storm!,"The heir to an oil fortune trades places with a water-ski instructor at a Florida hotel to see if girls will like him for himself, rather than his father's money.",0,0,Clambake,en +104810,July Rain,1966-06-06,107.0,,,tt0171408,,"A woman is forced to examine the emptiness of her life in this stark drama from the Soviet Union. Lena (Yevgenya Uralova) is a woman in her late twenties who loves her boyfriend (Aleksandr Belyavsky) but in time comes to see that their relationship serves no useful function. What's more, she sees that her friends are for the most part empty-headed lackeys, causing her to wonder just what is the point of her life.",0,0,Iyulskiy Dozhd,en +41979,The Elusive Revengers,1966-06-06,78.0,,120417,tt0060747,,"Dan'ka's and Ksanka's childhood in the village has been brutally ended when their father was killed by the White Guard officer in front of their eyes. Seeking revenge they join forces with an intellectual from the city Valerka and jipsy Yashka, but before they get close to their enemy they have to help their village and advancing Red Army.",0,0,Неуловимые мстители,ru +62143,The Wrong Box,1966-06-19,105.0,,,tt0061204,,"In Victorian England, a fortune now depends on which of two brothers outlives the other... or can be made to have seemed to do so!",0,0,The Wrong Box,en +70498,A Fine Madness,1966-06-29,107.0,,,tt0060414,We should all be so crazy.,A womanizing poet falls into the hands of a psychiatrist with a straying wife.,0,0,A Fine Madness,en +3051,Eye of the Devil,1966-07-01,96.0,,,tt0061634,This is the climax in mind-chilling terror!,A French nobleman deserts his wife because of an ancient family secret.,0,0,Eye of the Devil,en +42725,The Wild Angels,1966-07-20,87.0,,,tt0061189,The most terrifying film of your time!,"Peter Fonda plays 'Heavenly Blues', the leader of Hell's Angels chapter from Venice, California while Bruce Dern plays 'Loser', his best pal. When they both botch their attempt to retrieve Loser's stolen bike, Loser ends up in the hospital. When the Angels bust him out, he dies, and they bury him. Nancy Sinatra plays Mike, Blues' ""old lady"" and Diane Ladd plays Loser's wife (Dern's real-life wife at the time). The plot is basically a buildup to the last half-hour of the film in which Loser's funeral becomes another wild party.",0,0,The Wild Angels,en +50761,Our Man In Marrakesh,1966-07-22,92.0,,,tt0060148,Strange girls in his room... Loaded guns in his back... Looks like it'll be a bang-up vacation!,One of six travelers who catch the bus from Casablanca airport to Marrakesh is carrying $2 million to pay a local operator to fix United Nations votes. But which one?,0,0,Our Man In Marrakesh,en +149465,"War and Peace, Part II: Natasha Rostova",1966-07-23,100.0,,,tt0061162,,"In the end of 1809, Natasha attends her first ball. Andrei falls in love with her and intends to marry her, but her father demands they wait. The prince travels abroad, and Natasha desperately longs for him. But she then meets Anatol Kuragin and forgets of Andrei. At the last minute, she regrets and abandons her plans to elope with Anatol. Bolkonsky hears of this and declares their betrothal is over. Pierre, trying to calm her down, suddenly announces he loves her.",0,0,Война и Мир 2: Наташа Ростова,ru +43778,Death of a Bureaucrat,1966-07-24,85.0,,,tt0060722,It is easier to kill a bureaucrat than to kill bureaucracy.,A young man attempts to fight the system in an entertaining account of bureaucracy amok and the tyranny of red tape.,0,0,La muerte de un burócrata,es +54227,Lt. Robin Crusoe U.S.N.,1966-07-29,113.0,,,tt0060640,"It's Shape Up or Ship Out for ""Admiral Honey's"" all girl navy!","Lt. Robin Crusoe is a navy pilot who bails out of his plane after engine trouble. He reaches a deserted island paradise where he builds a house and begins to adjust to life. He is in for trouble however when a local girl is banished to the island by her father, who then comes after Crusoe.",0,0,Lt. Robin Crusoe U.S.N.,en +3146,The War of the Gargantuas,1966-07-31,88.0,,,tt0060440,All Brand New!,"An experimental lab animal called a gargantua escapes from his captors and is suspected to be the creature that is killing people all over the countryside. But when the gargantua from the lab appears at the same time as the evil gargantua, the two begin to battle across Japan.",0,0,Furankenshutain no Kaijū: Sanda tai Gaira,ja +42515,The Man Called Flintstone,1966-08-03,89.0,,,tt0060661,Their first full-length tune-full adventure!,"In this feature-length film based on the ""Flintstones"" TV show, secret agent Rock Slag is injured during a chase in Bedrock. Slag's chief decides to replace the injured Slag with Fred Flintstone, who just happens to look like him. The trip takes Fred to Paris and Rome, which is good for Wilma, Barney, and Betty, but can Fred foil the mysterious Green Goose's evil plan for a destructive missile without letting his wife and friends in on his secret?",0,0,The Man Called Flintstone,en +79466,One Spy Too Many,1966-08-05,102.0,,435805,tt0060783,,"The men from U.N.C.L.E."" are back! This time Robert Vaughn and David McCallum must stop the meglomanic Alexander (Rip Torn) from committing the world's greatest crimes.",0,0,One Spy Too Many,en +270470,El Greco,1966-08-15,95.0,,,tt0057026,The Lavish Courts of Spain...The Savage Torture of the Inquisition...The Treachery of Love...All Storming Across the Canvas of the Man Called El Greco,Greek painter Domenikos Theotokopoulos (Mel Ferrer) woos a beauty (Rosanna Schiaffino) and faces the Inquisition in 16th-century Spain.,0,0,El Greco,en +82098,With the Lives of Others,1966-08-24,0.0,,,tt0060140,,A spy story set in Vienna...,0,0,Avec la peau des autres,fr +65904,Who Wants To Kill Jessie?,1966-08-26,81.0,,,tt0125301,,"In this zany Czechoslovakian comedy, a scientist invents a machine that projects a sleeping person's dream on a screen; disaster soon follows when the machine malfunctions and the cartoon-like dream characters become very real!",0,0,Kdo chce zabít Jessii?,cs +54566,Millipilleri,1966-08-26,,,,tt0137956,,,0,0,Millipilleri,fi +104374,Woman of the Lake,1966-08-27,102.0,,,tt0060787,,A married woman lets her lover take naked pictures of her. The photos end up in possession of a man who starts blackmailing the couple.,0,0,Onna no mizûmi,ja +131861,An American Dream,1966-08-31,103.0,,,tt0060099,This is Mrs. Rojack. Be glad you're not Mr. Rojack.,A TV talk-show host who may have killed his wife finds himself being pursued by both the police and a gang of hoods.,0,0,An American Dream,en +85916,Rat Pfink a Boo Boo,1966-09-01,72.0,,,tt0059637,,"It starts off seriously enough, with three thugs robbing an innocent young woman at night in the city, but then switches to Vin Saxon and Carolyn Brandt doing a goofy Elvis-like rock 'n roll number (very charming though). The next day the thugs are bored. Picking a name at random out of the phone book, they decide to terrorize Carolyn Brandt. After some campy dramatic scenes, she is kidnapped by the goons. They decide to ransom her. After receiving the ransom call, Vin Saxon and the good-natured, but not- to-bright gardener sit around despondent, wondering what to do. ""There's only one thing to do!"" exclaims Vin. The two rush off into the next room and become the costumed heroes Rat Pfink and Boo Boo...",0,0,Rat Pfink a Boo Boo,en +36140,Far from Vietnam,1967-01-01,115.0,,,tt0061913,,"In seven different parts, Godard, Klein, Lelouch, Marker, Resnais and Varda show their sympathy for the North-Vietnamees army during the Vietnam-war.",0,0,Loin du Vietnam,en +17295,The Battle of Algiers,1966-09-08,121.0,,,tt0058946,The Revolt that Stirred the World!,Tracing the struggle of the Algerian Front de Liberation Nationale to gain freedom from French colonial rule as seen through the eyes of Ali from his start as a petty thief to his rise to prominence in the organisation and capture by the French in 1957. The film traces the rebels' struggle and the increasingly extreme measures taken by the French government to quell the revolt.,800000,921548,La battaglia di Algeri,it +2525,The Bible: In the Beginning...,1966-09-28,174.0,,,tt0060164,The unforgettable adventure of Man from the Creation!,"Extravagant production of the first part of the book of Genesis. Covers Adam and Eve, Noah and the Flood and Abraham and Isaac.",18000000,0,The Bible: In the Beginning...,en +60285,Alvarez Kelly,1966-10-01,116.0,,,tt0060095,Carving a legend of greatness from the Blue Ridge to the Rio Grande !,A suave Mexican cattleman inadvertently gets involved in the Civil War.,0,0,Alvarez Kelly,en +197297,Law of the Border,1966-10-04,74.0,http://worldcinemafoundation.org/films/law-of-the-border,,tt0261739,,"In order to keep his ailing son alive, an impoverished man agrees to sneak a herd of sheep across the border.",0,0,Hudutların Kanunu,tr +12639,Return of the Seven,1966-10-19,95.0,,110021,tt0060897,Between the law and the lawless - SEVEN again... MAGNIFICENT again!,"Chico one of the remaining members of The Magnificent Seven now lives in the town that they (The Seven) helped. One day someone comes and takes most of the men prisoner. His wife seeks out Chris, the leader of The Seven for help. Chris also meets Vin another member of The Seven. They find four other men and they go to help Chico.",0,0,Return of the Seven,en +4529,The Defector,1966-10-20,106.0,,,tt0060295,,"Professor Bower, an American physicist, is effectively blackmailed by a shady CIA agent named Adams to help the CIA obtain secret microfilm from a defecting Russian scientist. The reluctant Bower travels to East Germany undercover as an antiques collector where he encounters Heinzmann, an East German fellow physicist, who is also a secret agent. Heinzmann is aware of Bower's meeting with Adams and his intention to steal the microfilm, however their mutual respect for one another's tactics complicate the proceedings.",0,0,The Defector,en +42701,The Shooting,1966-10-23,82.0,,,tt0062262,"Suspenseful desert pursuit in the ""High Noon"" tradition.",A hired gun seeks to enact revenge on a group of bounty hunters in the Old West.,75000,0,The Shooting,en +112503,Django Shoots First,1966-10-28,95.0,,,tt0061582,,Django's father is framed by his business partner Clusker and shot by a bounty Killer. Django inherits his fathers part of the business and a score to settle with Clusker.,0,0,Django spara per primo,it +21449,"What's Up, Tiger Lily?",1966-11-02,80.0,,,tt0061177,WOODY ALLEN STRIKES BACK!,"In comic Woody Allen's film debut, he took the Japanese action film ""International Secret Police: Key of Keys"" and re-dubbed it, changing the plot to make it revolve around a secret egg salad recipe.",0,0,"What's Up, Tiger Lily?",en +114333,The Hunt,1966-11-07,91.0,,,tt0060223,,"Three men go hunting rabbits during a hot day. Heat and talking about events happened in the past make them angry, until they go totally crazy.",0,0,La caza,es +118497,Carriage to Vienna,1966-11-11,76.0,,,tt0060597,,A WW2 story of a young Austrian soldier running from the Russian army and a woman whom he forces to come along in order to save his wounded mate.,0,0,Kočár do Vídně,cs +121942,Barrier,1966-11-18,110.0,,,tt0060150,,A dream-like meditation on post-industrial life in Communist Poland.,0,0,Bariera,en +279543,Elder Sister,1966-12-01,102.0,,,tt0061028,,"A drama about a life of two sisters - Nadya and Lida, who both are dreaming about theater and actress career.",0,0,Старшая сестра,ru +147287,The Little Chaos,1966-12-02,9.0,,,tt0060594,,"Theo, Marite, and Franz cannot make any money selling magazines door to door, so they try a little robbery.",0,0,Das kleine Chaos,de +4375,Triple Cross,1966-12-09,140.0,,,tt0061647,,A safecracker turns double agent during WWII.,0,0,Triple Cross,en +5608,"The Nibelungs, Tale 1: Siegfried",1966-12-13,91.0,,342009,tt0060749,,A young hero defeats a dragon to find acceptance to the court of burgundy.,0,0,"Die Nibelungen, Teil 1: Siegfried",de +9629,Thunder at the Border,1966-12-13,98.0,,,tt0061198,,Firehand and his Apache friend Winnetou are determined to get justice for the murder of four young braves. They set off to track down the gang responsible for the horrendous act.,0,0,Winnetou und sein Freund Old Firehand,de +18690,Spinout,1966-12-14,90.0,,,tt0061015,...singing! ...chasing! ...racing ...romancing! ...swinging!,Band singer/race driver Mike McCoy must choose between marrying a beautiful rich girl and driving her father's car in a prestigious race.,0,0,Spinout,en +28270,Gambit,1966-12-16,109.0,,,tt0060445,Shirley MacLaine raises Michael Caine!,Harry Dean has a perfect plan to steal a priceless bust. The core of which is Nicole a look alike for his marks late wife. Will the gambit go as planned?,0,0,Gambit,en +6644,El Dorado,1966-12-17,120.0,,,tt0061619,It's The Big One With The Big Two!,"Cole Thornton, a gunfighter for hire, joins forces with an old friend, Sheriff J.P. Hara. Together with an old indian fighter and a gambler, they help a rancher and his family fight a rival rancher that is trying to steal their water.",4653000,6000000,El Dorado,en +3115,Godzilla vs. The Sea Monster,1966-12-17,87.0,,374509,tt0060464,,"The 7th film in the Godzilla series. After being caught in a storm in the south seas, several teenagers and thief arrive on an island where natives have been enslaved by a terrorist organization. They also discover a sleeping Godzilla and decide to wake him up to aid in their plan to free the natives.",0,0,ゴジラ・エビラ・モスラ 南海の大決闘,ja +273167,The Spy with a Cold Nose,1966-12-19,93.0,,,tt0061022,,"A dog with a spying device under its skin is sent to the Russian government as a present. When the Russians send the dog to a veterinary, British intelligence must get to the dog first and retrieve the spying device.",0,0,The Spy with a Cold Nose,en +47003,The Deadly Bees,1966-12-23,83.0,,,tt0061557,,"Trouble strikes when an exhausted pop singer, sent on a vacation to a farm, realizes that the farm's owner grows deadly bees.",0,0,The Deadly Bees,en +241340,The Forsyte Saga,1967-01-01,0.0,,,tt0061253,,Adaptation from John Galsworthy's novels.,0,0,The Forsyte Saga,en +4932,A Guide for the Married Man,1967-01-01,89.0,,,tt0061736,,A man gives his friend a series of lessons on how to cheat on one's wife without being caught.,0,0,A Guide for the Married Man,en +22682,How to Succeed in Business Without Really Trying,1967-01-01,121.0,,,tt0061791,"Nothing Succeeds Like ""Succeed"" ! !",A young but bright former window cleaner rises to the top of his company by following the advice of a book about ruthless advancement in business.,0,0,How to Succeed in Business Without Really Trying,en +2984,A Countess from Hong Kong,1967-01-05,113.0,,,tt0061523,,A Russian countess stows away in the stateroom of a married U.S. diplomat bound for New York.,3500000,2000000,A Countess from Hong Kong,en +3053,The Fearless Vampire Killers,1967-02-01,108.0,,,tt0061655,Who says Vampires are no laughing matter?,"A noted professor and his dim-witted apprentice fall prey to their inquiring vampires, while on the trail of the ominous damsel in distress.",2000000,0,The Fearless Vampire Killers,en +25385,Tobruk,1967-02-07,107.0,,,tt0062377,,"In September 1942, the German Afrika Korps under Rommel have successfully pushed the Allies back into Egypt. A counter-attack is planned, for which the fuel dumps at Tobruk are a critical impediment. In order to aid the attack, a group of British commandos and German Jews make their way undercover through 800 miles of desert, to destroy the fuel dumps starving the Germans of fuel.",0,0,Tobruk,en +148408,The Crush,1967-02-16,49.0,,,tt0412608,,Olmi’s 1967 short about a young boy’s first love.,0,0,La cotta,it +36236,The Witches,1967-02-22,105.0,,421566,tt0061037,,"Five short stories loosely dealing with the roles of women in society. A superstar actress travels to a mountain resort, only to evoke jealousy from women and lust from men. A woman offers to take an injured man to the hospital. A widowed father and his son seek for a new wife/mother. A man seeks revenge for a woman's honor. A bored housewife tries to explain to her husband that he's not as romantic as he used to be.",0,0,Le streghe,it +55370,The Thief of Paris,1967-02-22,120.0,,,tt0062457,,"In Paris around 1900, Georges Randal is brought up by his wealthy uncle, who steals his inheritance. Georges hopes to marry his cousin Charlotte, but his uncle arranges for her to marry a rich neighbour. As an act of revenge, Georges steals the fiance's family jewels, and enjoys the experience so much that he embarks upon a life-time of burglary.",0,0,Le voleur,fr +39308,Slave Girls,1967-02-25,90.0,,,tt0062150,Beaten into submission . . . turned into slaves . . . man at the mercy of a Kingdom of Prehistoric Women!,"Leader of a tribe of amazon women, Queen Kari, has vanquished a rival tribe and rules them with savage ruthlessness and cruel arrogance. A hunter stumbles onto the enclave and falls for one of the slaves, so unleashing the anger and envy of the possessive, sadistic Queen.",0,0,Slave Girls,en +337789,"C'mon, Let's Live a Little",1967-03-03,84.0,,,tt0061434,Let's Sing! Let's Rock! Let's Make The Scene!,"Standard boy-girl malt shoppe doings, with a free speech on campus sub-plot dropped in.",0,0,"C'mon, Let's Live a Little",en +137726,The Departure,1967-03-06,85.0,,,tt0061605,,"A fast-paced comedy about a young Belgian car nut and hairdresser's apprentice, his girlfriend, and their legal and illegal attempts to get a Porsche under him for his nearing debut race.",0,0,Le départ,fr +29510,The Busy Body,1967-03-12,101.0,,,tt0061431,,Sid Caesar is a bumbling gopher to a mob boss who must recover a fortune in cash stowed in the suit of a corpse.,0,0,The Busy Body,en +52728,Gamera vs. Gyaos,1967-03-15,86.0,,161766,tt0061695,A gigantic bat emerges from a volcano to terrorize Japan and only one thing can stop it...Gamera!,"Gamera's back, and just in time to save Japan from Gaos, a mysterious bat-like creature awakened by a volcanic eruption. As in the first Gamera movie, a young boy establishes an emotional link with Gamera, and the two work together, with the help of the world's scientists, to put and end to Gaos' violent rampage.",0,0,Daikaijû kûchûsen: Gamera tai Gyaosu,ja +3104,Frankenstein Created Woman,1967-03-15,92.0,,123720,tt0061683,Now Frankenstein has created a beautiful woman with the soul of the Devil!,"A deformed tormented girl drowns herself after her lover is framed for murder and guillotined. Baron Frankenstein, experimenting with the transfer of souls, places the boy's soul into her body, bringing Christina back to life. Driven by revenge, she carries out a violent retribution on those responsible for both deaths.",0,0,Frankenstein Created Woman,en +32489,Thoroughly Modern Millie,1967-03-21,138.0,,,tt0062362,Julie as you love her... in the happiest motion picture hit of the year!,"Millie Dillmount, a fearless young lady fresh from Salina, Kansas, determined to experience Life, sets out to see the world in the rip-roaring Twenties. With high spirits and wearing one of those new high hemlines, she arrives in New York to test the ""modern"" ideas she had been reading about back in Kansas: ""I've taken the girl out of Kansas. Now I have to take Kansas out of the girl!""",0,0,Thoroughly Modern Millie,en +78377,Idiot in Paris,1967-03-22,90.0,,,tt0155755,,"Goubi, the simpleton of his village in the French Department Allier, has but one wish: to see Paris. One day, the truckers Grafouillère deposit a drunk Goubi in the biggest market of Paris (the ""Halles""). The poor man is completely lost, but the meat merchant Dessertine takes him under his wings when he hears that Goubi was likewise 'raised by the State'...",0,0,Un idiot à Paris,fr +1561,Mouchette,1967-03-28,81.0,,,tt0061996,,Robert Bresson plumbs great reservoirs of feelings with one of the most searing portraits of human desperation ever put on film.,0,0,Mouchette,fr +45335,Double Trouble,1967-04-05,90.0,,,tt0061595,ELVIS with songs and adventures in mad mod Europe!,"When singer Gut Lambert goes on tour in Europe, he is pursued by two beautiful women, bumbling jewel thieves, and a mysterious killer.",0,1600000,Double Trouble,en +170517,The Cool Ones,1967-04-11,95.0,,,tt0061514,The groovy movie with the hip hit tunes!,"A young, millionaire rock promoter creates a new boy/girl team for his teen TV dance show. Will the ambitious go-go dancer and has-been pop star fall in love for real?",0,0,The Cool Ones,en +90086,Devil's Angels,1967-04-14,84.0,,,tt0061565,Get out of their way!... if you can,"An exiled band of Hell's Angels strike a bargain with the Sheriff of a local town, let them stay and the town is safe. But a local girl strays into their lair and sparks off a full scale Angel war.",0,0,Devil's Angels,en +374021,Groom from London,1967-04-16,78.0,http://www.tainiothiki.gr/v2/lang_en/filmography/view/1/861/,,tt0136211,,"Betty has become engaged, for her father’s sake, with a hard working and kind young man, Kostas, who works at a store selling electrical appliances that belongs to Betty’s father, Mr. Periklis. The latter values Kostas and truly wants to make him his son-in-law. Kostas saves the life of a sensitive girl, Mary, who tries to commit suicide because her English lover deserted her. Later on, he is persuaded to impersonate a rich Englishman in order to help Mary deal with her father, Mr. Kyriakos, who is trying to force her to marry someone against her will.",0,0,Γαμπρός από το Λονδίνο,el +268853,Paranoia,1967-04-19,102.0,,,tt0062096,,A man is under the illusion he is a wanted war criminal.,0,0,Paranoia,nl +94170,Eight on the Lam,1967-04-26,107.0,,,tt0061617,The most WANTED picture of the year!,"Bank teller and widower with seven kids, Bob Hope finds $10,000 in a parking lot.",0,0,Eight on the Lam,en +5767,Two for the Road,1967-04-27,111.0,,,tt0062407,They make something wonderful out of being alive!,"The ten-year marriage of Mark and Joanna Wallace is on the rocks. In flashback they recall their first meeting, memorable moments in their courtship and early wedded life, their travels through Europe, their broken vow never to have children, and their increasing tensions that led to both of them having extra-marital affairs.",0,0,Two for the Road,en +99008,Hillbillys in a Haunted House,1967-05-01,86.0,,,tt0061765,They'll scare your pants off!,"Country singers on their way to Nashville have car trouble, forcing them to stop at an old haunted mansion. Soon they realize that the house is not only haunted, but is also the headquarters of a ring of international spies after a top secret formula for rocket fuel.",0,0,Hillbillys in a Haunted House,en +54801,Night of the Big Heat,1967-05-01,94.0,,,tt0062037,,"While mainland Britain shivers in deepest winter, the northern island of Fara bakes in the nineties. The boys at the Met station have no more idea what is going on than the regulars at the Swan. Only a stand-offish visting scientist suspects aliens are to blame. Meanwhile the new secretary to the local best-selling author is raising the temperature in her own way.",0,0,Night of the Big Heat,en +351365,Tammy and the Millionaire,1967-05-01,87.0,,,tt0062334,Snooty Debutante! Wild Mountaineers! Uppity Millionaire! Tammy hilariously teaches them the facts of life..and love!,"A bayou girl (Debbie Watson) and her kin (Frank McGrath, Denver Pyle) have run-ins with some rich folks.",0,0,Tammy and the Millionaire,en +84352,The Violent Enemy,1967-05-01,94.0,,,tt0063781,,During the troubles in Ireland an IRA bomb plot is hatched to blow up a British power station. Sean Rogan (Tom Bell) is an IRA bomb expert and escapes from prison to try and stop the destruction.,0,0,The Violent Enemy,en +121329,Two Sons of Ringo,1967-05-18,0.0,,,tt0061598,,,0,0,I due figli di Ringo,it +42703,The Way West,1967-05-24,122.0,,,tt0062479,Cracking Like a Whip From Here to Excitement!,"In the mid-19th century, Senator William J. Tadlock leads a group of settlers overland in a quest to start a new settlement in the Western US. Tadlock is a highly principled and demanding taskmaster who is as hard on himself as he is on those who have joined his wagon train. He clashes with one of the new settlers, Lije Evans, who doesn't quite appreciate Tadlock's ways. Along the way, the families must face death and heartbreak and a sampling of frontier justice when one of them accidentally kills a young Indian boy.",0,0,The Way West,en +79094,Return of Django,1967-05-26,95.0,,,tt0061664,,Return of Django,0,0,Il figlio di Django,it +27031,Samurai Rebellion,1967-05-27,128.0,,,tt0061847,,"The mother of a feudal lord's only heir is kidnapped away from her husband by the lord. The husband and his samurai father must decide whether to accept the unjust decision, or risk death to get her back.",0,0,上意討ち 拝領妻始末,ja +33642,Hells Angels on Wheels,1967-06-01,95.0,,,tt0061758,The shattering true story of the Hell's Angels of Northern California! The violence...The hate...The way-out parties...Exactly as it happens!,At first gas station attendant Poet is happy when the rockers gang “Hell’s Angels” finally accepts him. But he’s shocked when he learns how brutal they are – not even murder is a taboo to them. He gets himself in trouble when the leader’s girlfriend falls in love with him – and he welcomes her approaches.,0,0,Hells Angels on Wheels,en +20879,Wedding in Malinovka,1967-06-06,95.0,,,tt0062323,,"The movie takes place during Russia's civil war between the Reds (Bolsheviks) and the Whites (Mensheviks). Andrejka and Yarinka are a young betrothed couple in the village of Malinovka, caught between the battle lines. Gritsian is the leader of a Menshevik band who are planning to attack the village. Yarinka appeals to the local Bolshevik commander for his faction's help. The Bolsheviks quickly come up with a plan to save the village... but the plan requires Yarinka to enter into a pretend marriage with Gritsian.",0,0,Свадьба в Малиновке,ru +69899,The Mitten,1967-06-06,10.0,,,tt0393932,,"Short soviet animated movie about a girl who wants a dog, while her mother does not approve. The girl then starts playing with her mitten, pretending that it is a dog...",0,0,Варежка,ru +71336,The Commissar,1967-06-06,110.0,,,tt0061876,,"Klavdia Vavilova, a Red Army cavalry commissar, is waylaid by an unexpected pregnancy. She stays with a Jewish family to give birth and is softened somewhat by the experience of family life.",0,0,Комиссар,ru +198795,Pedro Páramo,1967-06-08,104.0,,,tt0062108,,"Highly symbolic and allegorical, this drama takes the search of a son for his father in the chaotic times of the Mexican Revolution and the early 1900s as its basis. Stereotypical (or archetypal) figures from early Mexican cinema appear from time to time, and the violence of the revolutionary period is not glossed over. As the son searches for the father, scenes of the father and his earthy way of living are screened. Given that it relies so heavily on knowledge of Mexican history and Mexican cinema in addition to being something of an art-film, non-Mexican viewers will need to be both erudite and patient.",0,0,Pedro Páramo,en +25934,"To Sir, with Love",1967-06-14,105.0,,327598,tt0062376,A story as fresh as the girls in their minis... and as tough as the kids from London's East End!,Idealistic engineer-trainee and his experiences in teaching a group of rambunctious white high school students from the slums of London's East End.,640000,0,"To Sir, with Love",en +102057,Divorce American Style,1967-06-21,109.0,,,tt0061581,"If you thought divorce was ugly, try marriage!","After 17 years of marriage in American suburbia, Richard and Barbara Harmon step into the new world of divorce.",0,0,Divorce American Style,en +261249,Chubasco,1967-06-30,100.0,http://www.tcm.com/tcmdb/title/24775/Chubasco/full-synopsis.html,,tt0062805,High adventures on the high seas with the great tuna fleet...,A wild beach boy takes a job on a tuna fishing boat.,0,0,Chubasco,en +24816,The Gnome-Mobile,1967-07-17,85.0,,,tt0061715,A Tall Tale About Little People!,"An eccentric millionaire and his grandchildren are embroiled in the plights of some forest gnomes who are searching for the rest of their tribe. While helping them, the millionaire is suspected of being crazy because he's seeing gnomes! He's committed, and the niece and nephew and the gnomes have to find him and free him.",0,0,The Gnome-Mobile,en +418029,Ultraman,1967-07-21,,,,tt0204714,,,0,0,Ultraman,es +209209,The Trip to Squash Land,1967-07-22,2.0,,,tt1013746,,"The earliest recognized film by Lars Trier (made in his youth before he adopted the ""von"") is this stop motion cartoon, Turen til Squach land… En Super Pølse film (Trip to Squash Land… A Super Sausage film).",0,0,Turen til Squashland,da +39276,King Kong Escapes,1967-07-22,96.0,,,tt0061868,Two King Kongs fight to the DEATH!,King Kong is brought in by an evil ruler to dig for precious gems in a mine when the robot MechaKong is unable to do the task. This leads to the machine and the real Kong engaging in a tremendous battle that threatens to level Japan.,0,0,Kingu Kongu no Gyakushū,en +163376,Luv,1967-07-26,93.0,,,tt0061927,LUV is fun ... try and make it!,"Harry is a barely functional human. He meets an old friend who is having marital problems as Harry is about to leap off of a bridge. His friend decides that Harry is the man to take his wife away from him so that Milt can be with his girlfriend. Ellen and Harry have an instant attraction and in a short while Harry is wearing Milt's suits and Milt is free. But, Ellen soon discovers that Harry is the world's worst roommate.",0,1000000,Luv,en +73208,Robbery,1967-08-01,110.0,,,tt0062207,Who says crime doesn't pay? 3 Million pounds says it does!,"A dramatization of the Great Train Robbery. While not a 'how to', it is very detail dependent, showing the care and planning that took place to pull it off.",0,0,Robbery,en +39519,Beach Red,1967-08-03,105.0,,,tt0061389,Is not just a war movie.,"American troops storm ashore on a Japanese-held island and push inland while their enemies plan a counterattack in this look at warfare. Soldiers on both sides are haunted by memories of home and the horrifying, sickening images they find in combat.",0,0,Beach Red,en +118150,The Blonde from Peking,1967-08-25,87.0,,,tt0061410,,"A CIA man poses an actor as the husband of an amnesiac, all for Chinese missile data and a jewel.",0,0,La blonde de Pékin,fr +48885,The Gruesome Twosome,1967-08-28,72.0,,,tt0061733,"Oh Yes... Our Wigs Are Made From Genuine Human Hair, And How!","A demented, elderly woman has her mentally retarded son kill and scalp various young women to use their hair for her wig shop. A persistent coed tries to link various killings on a local Florida college campus to them.",0,0,The Gruesome Twosome,en +289679,I Married You For Fun,1967-08-30,100.0,,,tt0062367,,Movie by Luciano Salce,0,0,Ti ho sposato per allegria,en +8211,Our Folks,1967-09-15,81.0,,240156,tt0062228,,"Two quarreling peasant families, who were forced to leave their lands after the war, are settled by accident on two neighbouring farms.",0,0,Sami swoi,pl +2516,Our Mother's House,1967-10-09,100.0,,,tt0062089,The children's story that is not for children...,"Seven British children bury their mother and hide her death, until their long-lost father (Dirk Bogarde) returns.",0,0,Our Mother's House,en +105584,Peppermint Frappe,1967-10-09,92.0,,,tt0062113,,"Julian, a middle-aged single doctor, meets his childhood friend Pablo again. The latter is back from Africa and has just married a beautiful young blonde, Elena. Julian falls in love with her and tries to seduce her, but she mockingly pushes him away from her. He then finds that Ana, his nurse, bears a troubling resemblance to Elena. He decides to gradually transform Ana into Elena…",0,0,Peppermint Frappé,es +9325,The Jungle Book,1967-10-17,78.0,http://movies.disney.com/the-jungle-book-1967,97459,tt0061852,The Jungle is JUMPIN'!,"The boy Mowgli makes his way to the man-village with Bagheera, the wise panther. Along the way he meets jazzy King Louie, the hypnotic snake Kaa and the lovable, happy-go-lucky bear Baloo, who teaches Mowgli ""The Bare Necessities"" of life and the true meaning of friendship.",4000000,205843612,The Jungle Book,en +29048,How I Won the War,1967-10-23,109.0,,,tt0061789,"""There's been some marvelous advances in surgery, thanks to war!""",An inept British WWII commander leads his troops to a series of misadventures in North Africa and Europe.,0,0,How I Won the War,en +5511,Le Samouraï,1967-10-25,105.0,,,tt0062229,There is no solitude greater than that of the Samurai,Hitman Jef Costello is a perfectionist who always carefully plans his murders and who never gets caught.,0,39481,Le Samouraï,fr +18978,Camelot,1967-10-25,179.0,,,tt0061439,Relive the songs. Relive the romance. Relive the music. Relive the drama. Relive the magic.,King Arthur establishes the ideals and laws of Camelot but is tragically forced to enforce these laws against his own wife.,0,0,Camelot,en +11206,Wait Until Dark,1967-10-26,108.0,,,tt0062467,A blind woman plays a deadly game of survival.,"After a flight back home, Sam Hendrix returns with a doll he innocently acquired along the way. As it turns out, the doll is actually stuffed with heroin, and a group of criminals led by the ruthless Roat has followed Hendrix back to his place to retrieve it. When Hendrix leaves for business, the crooks make their move -- and find his blind wife, Susy, alone in the apartment. Soon, a life-threatening game begins between Susy and the thugs.",4000000,11000000,Wait Until Dark,en +18209,Bedazzled,1967-10-30,103.0,,,tt0061391,Peter Cook and Dudley Moore in their first starring comedy!,"Stanley is infatuated with Margaret, the statuesque waitress who works with him. He meets George Spiggott AKA the devil and sells his soul for 7 wishes, which Stanley uses to try and make Margaret his own first as an intellectual, then as a rock star, then as a wealthy industrialist. As each fails, he becomes more aware of how empty his life had been and how much more he has to live for.",0,0,Bedazzled,en +26204,Tony Rome,1967-10-31,110.0,,,tt0062380,The action is so fast... it's a wonder Tony Rome stays alive... and single!,"Tony Rome, a tough Miami PI living on a houseboat, is hired by a local millionaire to find jewelry stolen from his daughter, and in the process has several encounters with local hoods as well as the Miami Beach PD.",0,0,Tony Rome,en +41608,God Forgives... I Don't!,1967-10-31,109.0,,266731,tt0061576,They call him PRETTY FACE! ...and his credo is simple and short and sweet!,"In this violent spaghetti western a murderous robber hijacks a payroll train, murders everyone aboard and then stashes his loot. A gunslinger learns about it and decides he wants the money for himself and so hatches an elaborate plot to get at it. He lures the crook into a rigged poker game, and afterward a gunfight ensues. The quick-drawing gunman makes short work of the robber, then teams up with an insurance agent to look for the hidden fortune. Unbeknownst to them, the robber had an ace up his sleeve...",0,0,Dio perdona … io no!,it +41035,Torture Garden,1967-11-01,96.0,,,tt0062384,Do You Dare See What Dr. Diabolo Sees?,"Five people visit a fairground sideshow run by the sinister Dr. Diabolo. Having shown them a handful of haunted-house-style attractions, he promises them a genuinely scary experience if they will pay extra.",0,0,Torture Garden,en +5748,Good Morning... and Goodbye!,1967-11-01,80.0,,,tt0061719,...for those who measure success only in the hours before the morning light!,"Tales of eleven losers are told and interwoven. Burt can't satisfy Angel, so she seeks the arms of another man, who is caught by Angel in the arms of another woman. Angel ends up with Justin, who ends up with a co-worker's wife. As Angel and Burt argue, a sorceress watches, and eventually seduces Burt while Angel gets to know Ray, who had previously chased a blonde girl down on the coast. You get the idea.",0,0,Good Morning... and Goodbye!,en +45211,Face to Face,1967-11-23,112.0,,353754,tt0061636,,"History Professor Brad Fletcher heads west for his health, but falls in with Soloman Bennett's outlaw gang. Fascinated by their way of life, Fletcher finally takes over the gang, leading with a new 'efficient' ruthlessness.",0,0,Faccia a Faccia,it +57230,Viy,1967-11-27,77.0,,,tt0062453,,A young priest is ordered to preside over the wake of a witch in the church of a remote village. This means spending three nights alone with the corpse with only his faith to protect him.,0,0,Вий,ru +264393,Flame and Women,1967-12-01,101.0,,,tt0061675,,"Shingo and Ritsuko have a baby: Takashi. They happen to be a happy couple, but soon Ritsuko wants to know who is the true father of Takashi, born by artificial insemination.",0,0,炎と女,ja +46570,"Today We Kill, Tomorrow We Die!",1968-03-28,105.0,,,tt0063379,,"A man, released after a jail term for a crime he did not commit, raises a gang to go after the man who framed him.",0,0,Oggi a me... domani a te!,it +31265,Catalina Caper,1967-12-01,84.0,http://www.crownintlpictures.com/actitles.html,,tt0061456,Wild adventure... international intrigue!,A group of swingin' teens take time out from having fun in the sun to try to foil a group of crooks searching for a stolen scroll.,0,0,Catalina Caper,en +195468,Visiting One's Son,1967-12-10,9.0,,,tt0315280,,A student is visited in his university lodgings by his critical parents.,0,0,Besöka sin son,en +43915,Fathom,1967-12-13,99.0,,,tt0061653,The world's most uncovered undercover agent!,"While touring abroad in Europe, beautiful American skydiver Fathom Harvill gets wrapped up in international intrigue when Scottish spy Douglas Campbell recruits her to help him on a secret mission. Before long, Fathom realizes that no one around her, including the mysterious Peter Merriweather, can easily be trusted, leading to various adventures that involve bull fighting, beaches and, of course, romance.",0,0,Fathom,en +37247,The Graduate,1967-12-21,106.0,,,tt0061722,This is Benjamin. He's a little worried about his future.,A recent college graduate finds himself in a love triangle with an older woman and her daughter.,3000000,104945305,The Graduate,en +54166,La feldmarescialla,1967-12-21,0.0,,,tt0061656,,,0,0,La feldmarescialla,it +105059,The Last Challenge,1967-12-22,105.0,,,tt0061893,Killer VS Killer,"An upstart outlaw baits a legendary gunslinger, now a marshal in love with a saloon keeper.",0,0,The Last Challenge,en +126415,Pride and Vengeance,1967-12-22,100.0,,,tt0062424,,"A Spanish army officer, Don Jose (Nero), stationed in Seville, meets and begins a relationship with a mysterious gypsy, Carmen (Aumont). After he discovers she has cheated on him with his Lieutenant, he kills the officer and flees the city with Carmen. He recovers from his wounds and is forced to begin the life of a bandit.",0,0,"L'uomo, l'orgoglio, la vendetta",it +3055,Valley of the Dolls,1967-12-27,123.0,,,tt0062430,,Film version of Jacqueline Susann's best-selling novel chronicling the rise and fall of three young ladies in show business.,5000000,50000000,Valley of the Dolls,en +146521,Beginning of an Unknown Era,1967-12-31,73.0,,,tt0062026,,"Two young directors adapted the short stories of two Russian authors whose works had been banned for decades, and so their film ended up in the censor’s vault as well – for twenty years. Both tales look back to the post-revolutionary era, and while Angel speaks tragically of the brutality and destruction of the time, The Homeland of Electricity captures its haunting grotesquery.",0,0,Начало неведомого века,en +196319,Escalation,1968-01-01,2.0,,,tt1654024,,1968 film by Ward Kimball protesting LBJ's escalation of the war in Vietnam.,0,0,Escalation,en +90001,"Film, Film, Film",1968-01-01,20.0,,,tt0212943,,The trials and tribulations of putting a feature film together,0,0,"Фильм, фильм, фильм",ru +409903,Urok literatury,1968-01-01,75.0,,,tt0063752,,Feature film.,0,0,Urok literatury,en +18333,Hour of the Wolf,1968-01-01,90.0,,,tt0063759,,"An artist in crisis is haunted by nightmares from the past in Ingmar Bergman's only horror film, which takes place on a windy island. During ""the hour of the wolf"" - between midnight and dawn - he tells his wife about his most painful memories.",0,0,Vargtimmen,sv +117426,Beyond the Law,1968-01-01,110.0,,,tt0169606,,Takes place over the course of one feverish night in a Manhattan police precinct and neighboring bar.,0,0,Beyond the Law,en +189696,Mickey Mouse in Vietnam,1968-01-01,1.0,,,tt2048807,,Mickey Mouse enlists with the army and ships off to Vietnam.,0,0,Mickey Mouse in Vietnam,en +36530,Voyage to the Planet of Prehistoric Women,1968-01-01,78.0,,,tt0063790,,A groups of astronauts crash-land on Venus and find themselves on the wrong side of a group of Venusian women when they kill a monster that is worshipped by them.,0,0,Voyage to the Planet of Prehistoric Women,en +240334,Blablablá,1968-01-02,26.0,,,tt0210576,"short, politics","The tensions experienced by three different people during the military dictatorship in Brazil: a politician, a revolutionary and a common citizen.",0,0,Blablablá,en +3024,The Strange Case of Dr. Jekyll and Mr. Hyde,1968-01-07,120.0,,,tt0062908,,No overview found.,0,0,The Strange Case of Dr. Jekyll and Mr. Hyde,en +2994,Danger: Diabolik,1968-01-23,100.0,,,tt0062861,"Out for all he can take, seduce, or get away with...",One of the great comic book movies of all time from director Mario Bava.,400000,0,Diabolik,it +12796,Sebastian,1968-01-24,100.0,,,tt0063570,,"Sebastian is an undisciplined mathematics genius who works in the ""cipher bureau"" of the British Intelligence. While cracking enemy codes, Sebastian finds time to romance co-worker Rebecca Howard.",0,0,Sebastian,en +3405,Anyone Can Play,1968-02-02,88.0,,,tt0061586,,No overview found.,0,0,Le dolce signore,it +16249,Blackbeard's Ghost,1968-02-08,106.0,,,tt0062737,He's out'a sight...literally!,"Peter Ustinov stars as the eponymous wraith, who returns to Earth to aid his descendant, elderly Elsa Lanchester (Stowecroft). The villains want to kick Lanchester and her friends out of their group home so that they can build a crooked casino. Good guy Steve Walker (Jones) gets caught in the middle of the squabble after evoking Blackbeard's ghost.",0,0,Blackbeard's Ghost,en +97936,Sweet November,1968-02-08,114.0,,,tt0063661,Sara... She had to be remembered by every man she met. So she divided the calendar into twelve men and gave each a month and a key to her apartment. Charlie's month was November because he belonged to Sara as no one ever would again.,A woman refuses to let her romances last longer than one month.,0,0,Sweet November,en +360626,Prescription: Murder,1968-02-20,0.0,,,tt0061496,,"A psychiatrist uses a patient he is having an affair with to help him kill his wife, but his perfect alibi may come apart at the hands of a seemingly befuddled LAPD lieutenant.",0,0,Prescription: Murder,en +9028,The Great Silence,1968-02-21,100.0,,,tt0063032,His voice was the silence of death!,"A mute gunslinger fights in the defense of a group of outlaws and a vengeful young widow, against a group of ruthless bounty hunters.",0,0,Il grande silenzio,it +27105,Day of the Evil Gun,1968-03-01,95.0,,,tt0062865,They had one enemy even more deadly than the Apaches... each other!,Two men on a desperate search to save a woman only one of them could have!,0,0,Day of the Evil Gun,en +257716,Black and White,1968-03-15,95.0,,,tt0062012,,"Juha is a sales manager of a refrigerator company. His perfect-looking family and glittering array of modern kitchen appliances have just been featured in a magazine article, but in reality Juha is a womanising chauvinist more at home on the road than with his family.",0,0,Mustaa valkoisella,en +4191,The Bride Wore Black,1968-03-22,107.0,,,tt0061955,She was a bride when the violence happened... Now she's a widow and it's going to happen again,"Julie Kohler is prevented from suicide by her mother. She leaves the town. She will track down, charm and kill five men who do not know her. What is her goal ? What is her purpose?",747000,44566,La mariée était en noir,fr +4931,Madigan,1968-03-29,101.0,,,tt0063256,"""If Detective Madigan kept his eyes on the killer instead of the broad...""","Policemen Bonaro and Madigan lose their guns to fugitive Barney Benesch. As compensation, the two NYC detectives are given a weekend to bring Benesch to justice. While Bonaro and Madigan follow up on various leads, Police Commissioner Russell goes about his duties, including attending functions, meeting with aggrieved relatives, and counseling the spouses of fallen officers.",0,0,Madigan,en +126560,Bride of the Earth,1968-04-01,81.0,,,tt0193493,,"In this rural revenge drama, Güney plays Seyyit Han, a poor man in love with a woman from his Anatolian village who returns his affection. Seyyit Han postpones their marriage so that he can make his fortune elsewhere and return to the village to claim his ""bride of the earth."" During his prolonged absence, a rich landowner begins to woo the lonely woman, and her brother, intent upon making this propitious wedding happen, spreads the rumor that Seyyit Han has died.",0,0,Seyyit Han,tr +172011,Last Words,1968-04-02,13.0,,,tt0061905,,"Early short by Werner Herzog shot while being on location in Greece shooting ""Lebenszeichen"".",0,0,Letzte Worte,de +32068,The Scalphunters,1968-04-02,102.0,,,tt0063557,He'll stop at nothing to take back what's his.,"Trapper Joe is on his way to the town with all of his gain of hides of the last winter. However a group of Indians stops him and takes all of his hides, leaving him the escaped slave Joseph instead. But Joe has no use for Joseph and is determined to get his property back and follows them. Before he can do anything, the Indians are raided themselves by a group of scalphunters under the greedy Howie. Not only the hides, but also Joseph falls into their hands. Now Joe follows them alone and tries to trick the numerical superior group out of his hides",0,0,The Scalphunters,en +86472,A Long Ride from Hell,1968-04-05,95.0,,,tt0065997,They turned a man into a wild beast thirsting for revenge!,"Mike Sturges and his younger brother, Roy, are sentenced to Yuma Penitentiary on a trumped-up train robbery charge. Both endure cruel treatment before Mike escapes to extract revenge on their enemies.",0,0,Vivo per la tua morte,it +64428,The Vengeance of She,1968-04-14,97.0,,123717,tt0063765,,"Beautiful young European girl, Carol, is possessed by the spirit of Ayesha – “She, who must be obeyed” – and led to the lost city of Kuma, where she is destined to become queen.",0,0,The Vengeance of She,en +96133,Vengeance,1968-04-19,81.0,,,tt0063159,Five Men Held The Balance Of Death... ...his revenge explodes in a blaze of hellfire!,"A man tracks down the five outlaws who murdered his brother, all the while being shadowed by a mysterious Pinkerton detective.",0,0,Joko invoca Dio... e muori,it +27983,"Yours, Mine and Ours",1968-04-24,111.0,,,tt0063829,Their wedding night set new attendence records,"When a widower with 10 children marries a widow with 8, can the 20 of them ever come together as one big happy family?",0,0,"Yours, Mine and Ours",en +145244,Seven Times Seven,1968-04-25,92.0,,,tt0063586,,A gang of prison inmates escape and rob the Royal Mint. They then sneak back to prison.,0,0,Sette volte sette,it +29398,Project X,1968-05-01,97.0,,,tt0063465,"It Happened In This Universe A Long Time Ahead, The Year 2118...","A spy is brought back from cryogenic suspension after being almost killed in a plane crash returning from a mission to learn about a deadly new weapon being developed in the East. But the vital memories are being suppressed, so the authorities use ultra-advanced technologies to try to uncover the secret.",0,0,Project X,en +64936,Murder à la Mod,1968-05-01,80.0,,,tt0163114,A Lost Horror Film from Brian De Palma!,"Naive young lady Karen wants to help her struggling amateur filmmaker boyfriend Christopher raise enough money so he can divorce his wife. Meanwhile, jolly psycho prankster Otto stalks the building where Christopher is shooting a low-grade adult movie in order to keep himself afloat.",0,0,Murder à la Mod,en +169869,Blue,1968-05-09,113.0,,,tt0062742,"To escape his past, he had to destroy it","A young man is torn between the woman he loves and his loyalty to his father, the leader of a mexican gang.",112,0,Blue,en +139170,The Long Day's Dying,1968-05-28,95.0,,,tt0063237,,Three British soldiers and their German captive trek through the European countryside.,0,0,The Long Day's Dying,en +84636,The Immortal Story,1968-06-01,63.0,,,tt0063127,,"An aged, wealthy trader plots with his servant to recreate a maritime tall tale, using a local woman and an unknown sailor as actors.",0,0,Une histoire immortelle,fr +83444,No Path Through Fire,1968-06-01,95.0,,,tt0062428,,A talented girl is trying to find happiness amidst the Russian revolution of 1917 and the civil war that split the nation.,0,0,В огне брода нет,en +56599,The Man Without a Map,1968-06-01,118.0,,,tt0203695,,"A private detective is hired to find a missing man by his wife. While his search is unsuccessful, the detective's own life begins to resemble the man for whom he is searching.",0,0,Moetsukita chizu,ja +41857,Bandolero!,1968-06-01,106.0,,,tt0062708,"There are ""Westerns"" and ""Westerns"". Every now and then comes a NEW kind of Western. This is ""BANDOLERO!"".","Posing as a hangman, Mace Bishop arrives in town with the intention of freeing a gang of outlaws, including his brother, from the gallows. Mace urges his younger brother to give up crime. The sheriff chases the brothers to Mexico. They join forces, however, against a group of Mexican bandits.",0,12000000,Bandolero!,en +284467,Jigsaw,1968-06-05,97.0,,,tt0063155,,"After inadvertently ingesting some sugar laced with LSD, a man wakes up with amnesia and in the middle of a murder plot.",0,0,Jigsaw,en +65713,Seven Old Men and One Girl,1968-06-06,81.0,,,tt0063579,,Lara Velichko is a young coach who's dreaming about coaching world champions but suddenly she's forced to train a group of a very grumpy old men.,0,0,Sem Starikov i Odna Devushka,ru +42634,Petulia,1968-06-10,105.0,,,tt0063426,People bugged by people will do extraordinary things.,An unhappily married socialite finds solace in the company of a recently divorced doctor.,0,0,Petulia,en +805,Rosemary's Baby,1968-06-12,136.0,,264338,tt0063522,Pray for Rosemary's Baby,A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn't safe around their strange neighbors.,3200000,33395426,Rosemary's Baby,en +108648,The Bride from Hades,1968-06-15,89.0,,,tt0163985,,"On the night of the summer Obon festival, Hagiwara Shinzaburo meets a beautiful courtesan named Otsuyu. Not knowing she's a ghost, he becomes infatuated by her.",0,0,牡丹燈籠,ja +205349,I due Pompieri,1968-07-02,0.0,,,tt0062914,,,0,0,I due Pompieri,it +52959,Star!,1968-07-18,176.0,,,tt0063642,Happiness is a girl called Julie!,Gertrude Lawrence rises to stage stardom at the cost of happiness.,14320000,14000000,Star!,en +152393,The Fiction Makers,1968-12-08,100.0,,,tt0061662,,"Simon Templar is hired by a friend in the book publishing trade to protect one of his stars, a secretive recluse named Amos Klein who writes a popular (and lucrative) series of adventure novels about a manly and suave spy.",0,0,The Fiction Makers,en +35284,Anzio,1968-07-24,117.0,,,tt0062673,...where all roads lead to Rome!,"Allied forces land at Anzio unopposed but instead of moving straight inland their commanding officer decides to dig in. A battle-hardened war correspondent borrows a jeep and drives to Rome and back without meeting any German forces, but his report on this absence of the enemy is discounted. By the time it is finally decided to make a move the Germans have arrived in strength and a prolonged ...",0,0,Lo sbarco di Anzio,it +108789,Hate Thy Neighbor,1968-07-26,86.0,,,tt0189844,Revenge has never been so brutal...,"Ken Dakota's search for the murderer of his brother, killed by bandit Gary Stevens, at the behest of land owner Chris Malone. Dakota attempts to bring the men responsible for his brothers death to justice.",0,0,Odia il prossimo tuo,it +4993,5 Card Stud,1968-07-28,103.0,,,tt0062626,A card cheat was hung... then all hell broke loose!,"The players in an ongoing poker game are being mysteriously killed off, one by one.",0,0,5 Card Stud,en +376538,Outlaw: Heartless,1968-08-01,92.0,http://intl.nikkatsu.com/sales/156.html,427627,tt0228094,,"Goro Fujikawa (Tetsuya Watari) was indebted to Mitsugimoto. Sawada, a low rank yakuza with a gambling problem, owed Mitsugimoto three million yen. This equation can only lead to one answer. Mitsugimoto needs to pay and Goro's coming to collect.",0,0,Burai hijô,ja +11912,The Tattoo,1968-08-17,90.0,,,tt0063674,,"An art dealer wants to buy a Modigliani, which is tattooed on the back of an old soldier.",0,0,Le Tatoué,fr +242097,How Sweet It Is!,1968-08-21,99.0,,,tt0063098,The motion picture that shows how far some people will go to discover How Sweet It Is!,"All-American couple who try to bridge the generation gap with their free-spirited son on a trip, frisky business and misunderstandings galore ensue, all funny, vibrant and charming.",0,0,How Sweet It Is!,en +55495,Noin 7 veljestä,1968-08-22,,,,tt0134854,,,0,0,Noin 7 veljestä,fi +26768,Baby Love,1968-09-01,93.0,,,tt0062693,,"When her mother dies, her attractive young daughter hungry for love moves into the dead woman's house as a quest to seduce its tenants in her desperate search for love.",0,0,Baby Love,en +69065,Deadfall,1968-09-11,120.0,,,tt0062868,Michael Caine plunges into the world of the adulterous... the treacherous... and the perverse!,Cat burglar Henry Clarke and his accomplices the Moreaus attempt to steal diamonds from the chateau of millionaire Salinas.,0,0,Deadfall,en +4930,House of Cards,1968-09-16,105.0,,,tt0064448,,No overview found.,0,0,House of Cards,en +29146,Charly,1968-09-23,103.0,,,tt0062794,A love story that begins with an incredible experiment!,An experiment on a simpleton turns him into a genius. When he discovers what has been done to him he struggles with whether or not what was done to his was right.,950000,814666,Charly,en +182129,A Midsummer Night's Dream,1968-09-30,124.0,,,tt0063297,,Peter Hall's Royal Shakespeare Company production is one of the best versions of this oft-attempted but seldom achieved vision.,0,0,A Midsummer Night's Dream,en +56369,"Straziami, ma di baci saziami",1968-10-04,0.0,,,tt0063650,,,0,0,"Straziami, ma di baci saziami",it +42623,"I Love You, Alice B. Toklas!",1968-10-06,92.0,,,tt0063115,The saga of Harold...from dedicated lawyer to dedicated dropout.,"Harold Fine is a self-described square - a 35-year-old Los Angeles lawyer who's not looking forward to middle age nor his upcoming wedding. His life changes when he falls in love with Nancy, a free-spirited, innocent, and beautiful young hippie. After Harold and his family enjoy some of her ""groovy"" brownies, he decides to ""drop out"" with her and become a hippie too. But can he return to his old life when he discovers that the hippie lifestyle is just a little too independent and irresponsible for his tastes?",0,0,"I Love You, Alice B. Toklas!",en +5721,Vixen!,1968-10-15,70.0,,294834,tt0063787,Is she woman ... or animal?,"Vixen lives in a Canadian mountain resort with her naive pilot husband. While he's away flying in tourists, she gets it on with practically everybody including a husband and his wife, and even her biker brother. She is openly racist, and she makes it clear that she won't do the wild thing with her brother's biker friend, who is black.",76000,6000000,Vixen!,en +86284,Paper Lion,1968-10-23,107.0,,,tt0063410,The Paper Lion is about to get creamed!,"Sportswriter George Plimpton poses as a rookie quarterback for the Detroit Lions for a ""Sports Illustrated"" article.",0,0,Paper Lion,en +17657,Ice Station Zebra,1968-10-23,148.0,,,tt0063121,An American nuclear sub.. a sky full of Russian paratroopers--and a race for the secret of Ice Station Zebra!,"A top-secret Soviet spy satellite -- using stolen Western technology -- malfunctions and then goes into a descent that lands it near an isolated Arctic research encampment called Ice Station Zebra, belonging to the British, which starts sending out distress signals before falling silent. The atomic submarine Tigerfish, commanded by Cmdr. James Ferraday (Rock Hudson), is dispatched to save them.",0,0,Ice Station Zebra,en +124597,Genocide,1968-11-09,84.0,,,tt0063195,"One day, suddenly, an uncountable host of poisonous insects wreaks havoc on human society.",A series of separate experiments involving poisonous insects by a pair of disparate characters fuses with a plot about an American H-bomb that's been accidentally dropped—intact—on a remote Japanese island and is the subject of a frenetic search by American officers and shady local characters with ulterior motives of their own. (IMDb),0,0,Konchû daisensô,ja +50696,Profound Desires of the Gods,1968-11-22,173.0,,,tt0063173,,"Tokyo engineer Kariya arrives on a primitive tropical island, where he interacts with the Futori clan, to drill a well to power a sugar mill.",0,0,神々の深き欲望,ja +753,Faces,1968-11-24,130.0,,,tt0062952,,"An old married man leaves his wife for a younger woman. Shortly after, his ex-wife also begins a relationship with a younger partner.",275000,0,Faces,en +141955,A Flea In Her Ear,1968-11-27,94.0,,,tt0062978,,"Director Jacques Charon's 1968 comedy about a womanizing attorney stars Rex Harrison, Louis Jourdan, Rosemary Harris, Rachel Roberts, John Williams and Victor Sen Yung.",0,0,A Flea In Her Ear,en +99329,The Money Order,1968-11-27,90.0,,,tt0063268,,"A money order from a relative in Paris throws the life of a Senegalese family man out of order. He deals with corruption, greed, problematic family members, the locals and the changing from his traditional way of living to a more modern one.",0,0,Mandabi,wo +53654,The Brotherhood,1968-12-01,96.0,,,tt0062760,Honor. Loyalty. Betrayal.,"The son of a powerful Mafia don comes home from his army service in Vietnam and wants to lead his own life, but family tradition, intrigues and powerplays involving his older brother dictate otherwise, and he finds himself being slowly drawn back into that world.",0,0,The Brotherhood,en +11046,Where Eagles Dare,1968-12-04,155.0,,,tt0065207,They dare to climb a terrifying new peak in suspense... all the way up to hell!,"World War II is raging, and an American general has been captured and is being held hostage in the Schloss Adler, a Bavarian castle that's nearly impossible to breach. It's up to a group of skilled Allied soldiers to liberate the general before it's too late.",7700000,21000000,Where Eagles Dare,en +121052,The Birthday Party,1968-12-09,123.0,,,tt0062732,,"Based on Harold Pinter's enigmatic play about a border in a British seaside dwelling who is visited by two strangers. They torment him verbally, ask him idiotic unanswerable questions, force him to sit down and stand up, and give him a ""party."" Then, eventually, they take him away, a tongue-tied idiot. The trivial becomes the terrible, and with it a certain wonder, a certain pity.",0,0,The Birthday Party,en +33228,The Magus,1968-12-10,117.0,,,tt0063260,,A teacher on a Greek island becomes involved in bizarre mind-games with the island's magus (magician) and a beautiful young woman.,0,0,The Magus,en +29290,The Green Slime,1968-12-19,90.0,,,tt0064393,The Green Slime are coming!,"A giant asteroid is heading toward Earth so some astronauts disembark from a nearby space station to blow it up. The mission is successful, and they return to the station unknowingly bringing back a gooey green substance that mutates into one-eyed tentacled monsters that feed off electricity. Soon the station is crawling with them, and people are being zapped left and right!",0,0,The Green Slime,en +27470,Skidoo,1968-12-19,97.0,,,tt0063612,It takes two to skidoo.,"Ex-gangster Tony Banks is called out of retirement by mob kingpin God to carry out a hit on fellow mobster ""Blue Chips"" Packard. When Banks demurs, God kidnaps his daughter Darlene on his luxury yacht.",0,0,Skidoo,en +14794,If....,1968-12-19,111.0,,,tt0063850,Which side would you be on?,"The film is a caustic portrait of a traditional English boys’ boarding school, where social hierarchy reigns supreme and power remains in the hands of distanced and ineffectual teachers and callously vicious prefects in the Upper Sixth. But three Lower Sixth students, leader Mick Travis (Malcolm McDowell), Wallace (Richard Warwick) and Johnny (David Wood) decide on a shocking course of action to redress the balance of privilege once and for all.",0,500000,If....,en +117499,Asphalt Lambs,1968-12-20,78.0,,,tt0062681,,,0,0,Asfalttilampaat,fi +81310,Winnie the Pooh and the Blustery Day,1968-12-20,25.0,,,tt0063819,,"Winnie the Pooh and his friends experience high winds, heavy rains, and a flood in Hundred Acre Wood.",0,0,Winnie the Pooh and the Blustery Day,en +14136,The Love Bug,1968-12-22,107.0,,12087,tt0064603,Herbie will honk his way into your heart.,"Herbie is a car - but no ordinary car. The story follows the Volkswagen Beetle with a mind of its own from the showroom to the race track, with various close escapes in between. Three further Herbie movies were to follow.",0,0,The Love Bug,en +42648,The Night They Raided Minsky's,1968-12-22,99.0,,,tt0063348,,"Rachel arrives in New York from her Amish community intent on becoming a dancer. Unfortunately Billy Minsky's Burlesque is hardly the place for her Dances From The Bible. But the show's comedian Raymond sees a way of wrong-footing the local do-gooders by announcing the new Paris sensation ""Mme Fifi"" and putting on Rachel's performance as the place is raided. All too complicated, the more so since her father is scouring the town for her and both Raymond and his straight-man Chick are falling for Rachel.",0,0,The Night They Raided Minsky's,en +131507,Scandali nudi,1968-12-22,0.0,,,tt0058551,,,0,0,Scandali nudi,it +184795,The Sea Gull,1968-12-23,144.0,,,tt0063569,"The young are always young, foolish and totally out of step.",Film adaptation of Anton Chekhov's story of life in rural Russia during the latter part of the 19th century.,0,0,The Sea Gull,en +105833,Farewell to the Summer Light,1968-12-31,96.0,,,tt0063544,,"The setup here is a couple. They are both Japanese. She is married to a European, is haunted by the Nagasaki bomb which killed her father. The two are in love.",0,0,さらば夏の光,ja +73612,Sam's Song,1969-01-01,92.0,,,tt0064924,,"A political filmmaker finds himself in Long Island for a weekend where he finds himself entangled with a high-living, jet set crowd. At first it is exciting, but soon he finds himself disillusioned by their shallowness.",0,0,Sam's Song,en +126863,"Tom, Tom, the Piper's Son",1969-01-01,115.0,,,tt0378889,,"An experimental feature made by rephotographing the 1905 Biograph short Tom, Tom, the Piper's Son.",0,0,"Tom, Tom, the Piper's Son",en +43984,The Cow,1969-01-01,105.0,,,tt0064356,,"An old villager deeply in love with his cow goes to the capital for a while. While he's there, the cow dies and now the villagers are afraid of his possible reaction to it when he returns.",0,0,گاو,fa +20934,Barbara the Fair with the Silken Hair,1969-01-01,81.0,,,tt0191625,,"Once upon a time there lived a Tsar named Yeremey who went on a year-long journey to take inventory of all he owned. One day he is kidnapped by the underwater Tsar Chudo-Yudo. When a ransom is demanded, the Tsar's family is faced with all kinds of intrigue and treachery.",0,0,"Varvara-Krasa, Dlinnaya Kosa",ru +199336,Sophia de Mello Breyner Andresen,1969-01-01,19.0,,,tt0069300,,"“I think my film represents above all the proof to those who want to understand and accept it, that poetry can’t be filmed, that it is useless to try” - João César Monteiro",0,0,Sophia de Mello Breyner Andresen,en +149170,A Nest of Gentry,1969-01-01,111.0,,,tt0064268,,"A screen adaptation of the novel of the same name by Russian writer Ivan Turgenev. The film portrays the life of Russian landed gentry in the 1840s. After a long travel in Europe, nobleman Lavretsky returns back home. Everything in his estate is so familiar and dear to his heart. On his first visit to his neighbors, the Kalitins, he meets Lisa. He forgets his wife, left in Paris, forgets all his past. He desires only one thing – to always be with Lisa who is so unlike the women he used to know.",0,0,Дворянское гнездо,ru +36785,The Dependent,1969-01-01,87.0,,,tt0064223,,"Fernandez is a lonely man leading a lonely life. All he does is work for an old man in a hardware store. But all that changes, when he meets the girl of his dreams... and her family.",0,0,El dependiente,es +30298,The Secret of Santa Vittoria,1969-01-01,139.0,,,tt0064952,"In the beginning there was Bombolini the fool, Bombolini the drunk, Bombolini the joke. In the end there was Bombolini the mayor, Bombolini the hero, Bombolini the beautiful. In between is the secret of Santa Vittoria.","During World War II, Italian villagers hide their wine from the German army.",0,0,The Secret of Santa Vittoria,en +89445,Eggshells,1969-01-01,89.0,,,tt0404011,An American Freak Illumination,"Experimental allegorical story about a group of hippie students in Austin, Texas, who move into an old big house in the woods. However, something else is there and it's influencing them.",100000,0,Eggshells,en +42604,"Goodbye, Columbus",1969-01-01,102.0,,,tt0064381,Every father's daughter is a virgin.,"A Jewish man and a jewish woman meet and while attracted to each other find that their worlds are very different. She is the archetypical Jewish-American-Princess, very emotionally involved with her parents world and the world they have created for her while he is much less dependent on his family. They begin an affair which brings more differences to the surface.",0,0,"Goodbye, Columbus",en +84496,Zig Zag,1970-05-01,105.0,,,tt0066605,Getting in was easy. Getting out was murder.,A dying man frames himself for murder so his widow can collect the reward.,0,0,Zig Zag,en +37437,My Side of the Mountain,1969-01-01,100.0,,,tt0064708,,"Film adaption of the novel by Jean Craighead George. A family movie made by Paramount Studios, the story revolves around thirteen-year old Sam Gribley (Teddy Eccles), a devotee of Thoreau, as many were back in the in 1960's. Sam decides to leave the city (set in Toronto) to spend a sabbatical in the Canadian woods and see if he can make it as a self-sufficient spirit after his parents promise a summer trip that doesn't pan out.",0,0,My Side of the Mountain,en +85644,Riot,1969-01-15,96.0,,,tt0064895,"They exploded the ugliest riot in prison history to cover their dangerous, desperate break for freedom.","A riot in a state prison is staged to cover up an escape attempt, during which many inmates and guards are killed. Shot on location at Arizona State Prison.",0,0,Riot,en +63401,L'Amour Fou,1969-01-15,252.0,,,tt0062663,,"L'Amour Fou follows the dissolution of the marriage between Claire, an actress (played by Bulle Ogier), and Sebastien, her director (Jean-Pierre Kalfon).",0,0,L'amour fou,fr +18809,How to Irritate People,1969-01-21,68.0,,,tt0063100,,"A pre-Monty Python mockumentary, written by and presented by John Cleese, that provides tips on learning how to really bug people.",0,0,How to Irritate People,en +20361,Cemetery Without Crosses,1969-01-25,90.0,,,tt0063740,,"Maria seeks revenge on the killers of her husband. She enlists the help of her husband's best friend, Manual, a reluctant, but skilled, gunfighter.",0,0,"Une corde, un Colt...",it +94527,Everything for Sale,1969-01-28,105.0,,,tt0065226,,"Wajda's homage to Zbigniew Cybulski, the ""Polish James Dean"" who starred in the director's ASHES AND DIAMONDS and died young. The movie follows the tribulations of a director attempting to make a movie with a Cybulski-like star who never shows up.",0,0,Wszystko na sprzedaż,pl +18694,Change of Habit,1969-02-02,93.0,,,tt0065537,"When the King of Rock Meets the Queen of Comedy, Romance Rules.",Only a few songs as Elvis plays it straight as Dr John Carpenter. Mary Tyler Moore stars opposite as an incognito nun with a mission to help Dr Elvis clean up the ghetto he lives in. Can the King compete against God for Mary's heart?,0,0,Change of Habit,en +106944,A Complicated Girl,1969-02-07,96.0,,,tt0063486,,"Alberto intercepts a call between two troubled women. Intrigued by the situation, he decides to meet one of two girls, Claudia, and becomes her lover. The two begin a relationship the leads from one twisted game to another.",0,0,Una ragazza piuttosto complicata,it +104744,Diary of a Shinjuku Thief,1969-02-15,96.0,,,tt0063598,,"This is the story of a bookstore thief named Birdy, who is led through various adventures in Tokyo's Shinjuku district by salesgirl Umeko.",0,0,新宿泥棒日記,ja +150338,Pendulum,1969-02-17,102.0,,,tt0064797,A motion picture with the hard edge of today!,"On the evening of his decoration for bringing a murderer to justice, Washington DC Police Captain Frank Matthews' wife, and her lover are murdered in bed. Jailed as the prime suspect, with the aforementioned murderer released on a technicality Matthews escapes in search of the man he believes to be the real killer.",0,0,Pendulum,en +210487,Człowiek z M-3,1969-02-20,,,,tt0064203,,,0,0,Człowiek z M-3,pl +56693,Dillinger Is Dead,1969-02-25,90.0,,,tt0062893,,"Back home, Glauco, an industrial designer, finds his wife in bed with a serious headache. She has left him dinner but it is cold and Glauco decides to prepare himself a gourmet meal...",0,0,Dillinger è morto,it +2721,Z,1969-02-26,127.0,,,tt0065234,He is alive!,"Repression is the rule of the day in this film that skewers Greek governance of the 1960s. Z, a leftist rabble rouser, is killed in what appears to be a traffic accident. But given the political climate, the death of such a prominent activist raises troubling questions. Though it's too late to save Z's life, a postmortem examination suggests that the ruling party was behind his death. As the facts leak out, those who tell the truth pay the price for their honesty.",0,83305,Z,fr +33436,The Brain,1969-03-07,115.0,,,tt0064146,The Brain has rocked the world with laughter!,"Arthur and Anatole are two little robbers. They want to rob money, money that will travel in a special train from Paris to Bruxelles. They don't know that other people have planned to do the same thing.",0,0,Le Cerveau,fr +18352,The Cremator,1969-03-14,95.0,,,tt0063633,,"Kopfrkingl enjoys his job at a crematorium in Czechoslovakia in the late 1930s. He likes reading the Tibetan book of the dead, and espouses the view that cremation relieves earthly suffering.",0,0,Spalovač mrtvol,cs +51104,"Krakatoa, East of Java",1969-03-17,131.0,,,tt0064555,,A team of maritime salvage workers are about to embark on a recovery dive. However the 1883 Krakatoa Volcano eruption provides more pressing problems.,0,0,"Krakatoa, East of Java",en +58704,The Wonderful World of Puss 'n Boots,1969-03-18,80.0,http://corp.toei-anim.co.jp/english/film/pussn_boots.php,317299,tt0064714,,"His goal is to help the weak and defenseless, but his saving a mouse makes him the most wanted in all the land. On the run from incessant, dim-witted mice, Perro befriends a young miller's boy, Pierre; together, they decide to seek fame and fortune. When they cross paths with the lovely Princess Rosa, Perro determines to get Pierre hitched to Her Royal Highness.",0,0,長靴をはいた猫,ja +131799,Can Heironymus Merkin Ever Forget Mercy Humppe and Find True Happiness?,1969-03-19,107.0,,,tt0064123,,"Heironymus Merkin screens an autobiographical movie of his life, growth and moral decay.",0,0,Can Heironymus Merkin Ever Forget Mercy Humppe and Find True Happiness?,en +37308,100 Rifles,1969-03-26,110.0,,,tt0063970,All they need is . . . 100 RIFLES,"When half-breed Indian Yaqui Joe robs an Arizona bank, he is pursued by dogged lawman Lyedecker. Fleeing to Mexico, Joe is imprisoned by General Verdugo, who is waging a war against the Yaqui Indians. When Lyedecker attempts to intervene, he is thrown into prison as well. Working together, the two escape and take refuge in the hills, where Lyedecker meets beautiful Yaqui freedom fighter Sarita and begins to question his allegiances.",0,0,100 Rifles,en +322460,Crooks and Coronets,1969-04-02,106.0,,,tt0064192,"The caper could get $5,000,000. All these American hoods had to do was knock off the nice old lady in World War I flying garb, the eccentric gentleman with the crossbow and the man-eating lion.","Two crooks are hired to rob an eccentric old lady's estate, but once they get to know her, they can't bring themselves to do it.",0,0,Crooks and Coronets,en +391069,Night Gallery,1969-04-03,98.0,,,tt0064725,,"Night Gallery launched as a television movie on November 8, 1969 telling three tales of horror: The Cemetery, Eyes, and The Escape Route. + This was also the pilot for the TV series, which would air one year later.",0,0,Night Gallery,en +185111,The Baldheaded Agent and the Land of Destruction Mission,1969-04-11,92.0,,,tt0184950,,Undercover cop takes to find and restore a rich girl who ran away from home,0,0,"Θου-Βου Φαλακρός Πράκτωρ, Επιχείρηση: Γης Μαδιάμ",el +11643,"If It's Tuesday, This Must Be Belgium",1969-04-24,105.0,,,tt0064471,,A group of travelers from the United States race through seven countries in 18 days.,0,0,"If It's Tuesday, This Must Be Belgium",en +38792,Those Daring Young Men in Their Jaunty Jalopies,1969-04-28,122.0,,,tt0064688,,"Sequel to ""Those Magnificent Men In Their Flying Machines"". This time an international car rally from England to Monte Carlo provides the comedic farce.",0,0,Monte Carlo or Bust!,en +177564,Destroy Yourselves,1969-05-09,75.0,,,tt0294548,,"Detruisez-vous is a ‘primitive’ film which breaks all the rules of film-making. It’s the first Zanzibar film (and predates the very naming of the movement), an attempt to make a film which defies the rules of production, the production line of commerce",0,0,Détruisez-vous,fr +1790,Heaven with a Gun,1969-05-20,98.0,,,tt0064409,Jim Killian killed like an artist. This is the story of his masterpiece.,"Glenn Ford plays Jim Killian, a preacher who arrives in a town divided between cattlemen and sheep herders. But Killian isn't just any preacher. He is a former fast gun who has set upon a different path.",0,0,Heaven with a Gun,en +90563,The April Fools,1969-05-23,95.0,,,tt0064036,,"Newly-promoted if none too happily married Howard Brubaker leaves a rowdy Company party early with the stunning Catherine, whom it turns out is herself unhappily married - to the boss. They spend an innocent night in New York becoming more and more attracted to each other, so that when Catherine announces she intends to leave her husband and return to Paris Howard asks to go along too. In the cold light of morning problems and pressures from spouses crowd in",0,0,The April Fools,en +55152,The Oblong Box,1969-06-11,91.0,,,tt0064747,Some things are better left buried.,"Aristocrat Julian Markham keeps his disfigured brother, Sir Edward, locked in a tower of his house. Occasionaly Sir Edward escapes and causes havoc around the town.",175000,0,The Oblong Box,en +404567,Tibetana,1969-06-13,99.0,,,tt0064535,,"One step ahead of Chinese communists, a couple of friends hook up with an American adventurer who promises to lead them safely out of Tibet through the Himalayas.",0,0,Tibetana,en +121401,Eye of the Cat,1969-06-18,102.0,,,tt0064310,Terror that tears the screams right out of your throat!,"A man and his girlfriend plan to rob the mansion of the man's eccentric but wealthy aunt. However, the aunt keeps dozens of cats in her home, and the man is deathly afraid of cats.",0,0,Eye of the Cat,en +92716,The Maltese Bippy,1969-06-18,92.0,,,tt0064627,,"A man buys a house and comes to believe that not only is the house haunted by werewolves, but a family of vampires lives next door.",0,0,The Maltese Bippy,en +15873,The Bridge at Remagen,1969-06-25,117.0,,,tt0064110,,"In March of 1945, as the War in Europe is coming to a close, fighting erupts between German and American troops at the last remaining bridgehead across the Rhine.",0,0,The Bridge at Remagen,en +370741,Flor marchita,1969-07-03,105.0,,,tt0064336,,"Adult seduces and abandons a teenaged girl, she has a baby. Fifteen years later...",0,0,Flor marchita,en +133941,Double Face,1969-07-04,88.0,,,tt0063979,,A millionare is unwittingly led into murder by his lesbian wife.,0,0,A doppia faccia,it +193177,The Lost Man,1969-07-11,122.0,,,tt0064602,He crowded a lifetime into 37 suspenseful hours!,"A gang of black militants plots to rob a factory to finance their ""revolutionary struggle.""",0,0,The Lost Man,en +42329,The Valley of Gwangi,1969-07-24,96.0,,,tt0065163,Cowboys Battle Monsters in the Lost World of Forbidden Valley.,"A turn of the century wild west show struggling to make a living in Mexico comes into the possession of a tiny prehistoric horse. This leads to an expedition to the Forbidden Valley where they discover living dinosaurs. They capture one and take it back to be put on display, leading to inevitable mayhem.",0,0,The Valley of Gwangi,en +104193,Boy,1969-07-26,105.0,,,tt0063876,,"A family of four lives off of scams in which they pretend to be injured by automobiles. After suffering an injury during the war, the father believes he is an invalid. He and his wife have a 10-year-old boy and a 3-year-old girl. The adults pretend to be injured by autos in crowded traffic, blackmailing the fearful motorists with threats to call in the police.",0,0,少年,ja +205054,The Gay Deceivers,1969-07-30,97.0,,,tt0064363,Is he? Or isn't he?,"Danny and Elliot avoid military service by pretending to be gay, but they have to act the part when the recruiting officer doesn't buy it.",0,0,The Gay Deceivers,en +37053,Tenchu!,1969-08-09,140.0,,,tt0200710,,"A ronin desperately seeks a way out of financial straits; he allies with the Tosa clan under the ruthless leader Takechi, who quickly takes advantage.",0,0,Hitokiri,ja +2993,One on Top of the Other,1969-08-15,97.0,http://www.severin-films.com/perl/search.pl?CO=SEV1109,,tt0065148,"What Is The Most Incredible Thing A Woman Ever Did For $1,000,000?",An insurance scam lands a man on death row for murdering his wife. What everyone doesn't know is she really isn't dead.,0,0,Una sull'altra,it +11485,Take the Money and Run,1969-08-18,85.0,,,tt0065063,Crime lives!,"The life and times of Virgil Starkwell, inept bank robber.",1500000,0,Take the Money and Run,en +5638,Alice's Restaurant,1969-08-20,111.0,,,tt0064002,Every Generation Has A Story To Tell.,"Alice's Restaurant is a 1969 movie adapted from a song by Arlo Guthrie. The song is Arlo Guthrie's most famous work, a talking blues based on a true story that began on Thanksgiving Day 1965. The movie reproduces the events of the song, in addition to other scenes.",0,0,Alice's Restaurant,en +55836,A Gentle Woman,1969-08-27,88.0,,,tt0065152,,"When his young wife commits suicide, leaving no explanation for her act, an introspective pawnbroker looks back on their life together and tries to understand why she had to kill herself.",0,0,Une femme douce,fr +59231,The Rain People,1969-08-27,101.0,,,tt0064873,,A housewife who feels trapped leaves home and takes up with a hitchhiker.,0,0,The Rain People,en +28573,"Io, Emmanuelle",1969-09-11,96.0,,,tt0123916,,,0,0,"Io, Emmanuelle",it +102949,Alive or Preferably Dead,1969-09-17,101.0,,,tt0065185,,"Two brothers, Monty and Ted, will inherit $300,000 if they manage to live together for six months.",0,0,"Vivi o, preferibilmente, morti",it +81477,Mad Doctor of Blood Island,1969-09-18,89.0,,,tt0063255,No Waiting. No Appointment. No Escape!,"A man who loves to travel, travels to an island where a mad doctor is creating zombies.",0,0,Mad Doctor of Blood Island,en +24971,Eagles Over London,1969-09-20,100.0,,,tt0064571,,The British High Command finds itself in the thick of a huge dilemma when it is realized that they have long been infiltrated by spies from a German intelligence group. This all happens during the preliminary stages of the Battle of Britain.,0,0,Eagles Over London,en +47900,"Birds, Orphans and Fools",1969-09-26,78.0,,,tt0065193,,"In the aftermath of war, two men and a woman begin acting more like children than adults, leading to tragedy.",0,0,"Vtáčkovia, Siroty a Blázni",sk +45522,Castle Keep,1969-10-01,105.0,,,tt0064137,A one-eyed major and his oddball heroes fight a twentieth-century war in a tenth-century castle!,"During the Battle of the Bulge, an anachronistic count shelters a ragtag squad of Americans in his isolated castle hoping they will defend it against the advancing Germans.",0,0,Castle Keep,en +55167,Sixtynine,1969-10-03,98.0,,,tt0064558,,"Tuula's husband Jukka takes care of all domestic chores. Tuula seems to have no idea that her husband spends his evenings working as a major league ice hockey referee. She also finds out about his extra-marital affair with a female rally driver. In revenge, Tuula starts seeing her gynecologist Timo Paasi, a married man with six children.",0,0,69 - Sixtynine,fi +34449,The Battle of Neretva,1969-10-07,145.0,,,tt0064091,,"In January 1943 the German army, afraid of an Allied invasion of the Balkans, launched a great offensive against Yugoslav Partisans in Western Bosnia. The only way out for the Partisan forces and thousands of refugees was the bridge on the river Neretva.",12000000,0,Bitka na Neretvi,sr +210940,The Monitors,1969-10-08,92.0,,,tt0064684,,Earthlings chafe at the peace established by a benevolent alien race and set about to rebel.,0,0,The Monitors,en +142406,Saturday October 5th,1969-10-10,47.0,,,tt0316196,,,0,0,Lördagen den 5.10,en +42619,Tell Them Willie Boy Is Here,1969-10-31,98.0,,,tt0065079,,"Based on true events that happened in Banning,California, Tell Them Willie Boy Is Here, tells the story of one of the last Western manhunts, in 1909. Willie Boy, a Native American, kills his girlfriend's father in self defense, and the two go on the run, pursued by a search posse led by Sheriff Christopher Cooper.",0,0,Tell Them Willie Boy Is Here,en +47962,Dirkie - Lost in the Desert,1969-11-06,84.0,,,tt0151392,"Few have ever entered the deadly, mysterious Kalahari, and lived to reveal its secrets!","An 8-year-old boy and his dog are left to face a vast desert wasteland alone after a plane crash, while an army of men and machines penetrate the desert searching for them. Based on true events.",0,0,Dirkie - Lost in the Desert,en +92251,The Vixen,1969-11-07,86.0,,,tt0064324,,"Clara becomes a secretary who must cater to all the desires of the womanizing writer Jérôme, while he tries to write his memoirs.",0,0,Les femmes,fr +147575,The Four Who Came to Kill Sartana,1969-11-09,96.0,,,tt0064275,,"Seven masked bandits, whose chief calls himself ""Mormon"", kidnap young Susy, cousin of the mayor of Clayton City, Frank Clonny. Frank accepts the $15,000 ransom requested by the bandits and thinks of a plan which will permit him, with the help of Benson, the sheriff, to free his cousin, recover the money and capture the outlaws. The plan, though, is destined to fail, because one of the mayor's men, Donovan, allows the bandits to escape the trap. Benson then decides to call in Sartana, who the Mormon immediately tries to eliminate with the help of four killers: Buffalo, who kills with a bullwhip; Martinez, an expert knife thrower; Sullivan, a giant of incredible strength and Silky, a sly and fast gunslinger.",0,0,...e vennero in quattro per uccidere Sartana!,it +104945,Without Knowing Anything About Her,1969-11-18,96.0,,,tt0173184,,Tells a dark story about a young lawyer that falls in love with a strange girl with an unknown past.,0,0,Senza sapere niente di lei,en +8776,The Toth Family,1969-11-29,95.0,,,tt0064498,,"The Toth family resides in Northern Hungary. The couple has a daughter and a son, the latter a member of the armed forces. When his weary major is ordered to take a vacation, the son talks him into a visit to his family home. Comedy ensues when the Toths go overboard trying to make things pleasant for the visiting major in hopes of an easier life for their son the soldier.",0,0,"Isten hozta, őrnagy úr!",hu +105583,Diaries Notes and Sketches,1969-12-01,180.0,,,tt0196499,,An epic portrait of the New York avant-garde art scene of the 60s.,0,0,Diaries Notes and Sketches,en +197849,Winter Wind,1969-12-04,91.0,,,tt0065138,,In the mid-1930s a group of Croatian anarchists cross the dense forests at the northern border of Yugoslavia in an effort to seek refuge in Hungary.,0,0,Sirokkó,hu +39462,Godzilla's Revenge,1969-12-20,70.0,,374509,tt0064373,,"The 10th Godzilla film. A boy uses his imagination to take him to Monster Island so he can escape the pains of real life. There he is befriended by Godzilla's son, who helps him with his struggles.",150000,0,Gojira-Minira-Gabara: Oru kaijû daishingeki,ja +180879,Harry Munter,1969-12-20,101.0,,,tt0064407,,"Harry Munter, a sensitive, kind, appealing man in his twenties, lives with his parents. He's an inventor, a bit of a mystic, maybe a genius, and a good son and grandson. He's offered work in the U.S. But a friend has cancer and the world is changing in ways that provoke profound sadness. Written by Eileen Berdon",0,0,Harry Munter,en +130457,Life Goes On,1969-12-22,91.0,,,tt0065178,,"A promising goalkeeper of Real Madrid sees his chance when a teammate is injured and is summoned to replace him. But the misfortune is primed with him when an untimely car accident damaged her spine and is forced to give up that had to be the game of his life. Tired of so much bad luck, he retreats to a seaside hotel, where chance will go up to the stage.",0,0,La vida sigue igual,es +8063,The Red Tent,1969-12-23,158.0,,,tt0067315,"Forget everything you've ever heard about heroes. Now there is ""The Red Tent.""",Torn by personal guilt Italian General Umberto Nobile reminisces about his 1928 failed Arctic expedition aboard the airship Italia.,10000000,0,Красная палатка,ru +5928,The Reivers,1969-12-25,106.0,,,tt0064886,"Boon is a reiver (that's a cheat, a liar, a brawler and womaniser) and he had just four days to teach young Lucius the facts of life (like cheating, lying, brawling and womanizing).","In turn-of-the-century Mississippi, an 11-year-old boy comes of age as two mischievous adult friends talk him into sneaking the family car out for a trip to Memphis and a series of adventures.",0,0,The Reivers,en +79701,Gena the Crocodile,1969-12-30,20.0,,400500,tt0146970,,First animation about Gena and Cheburashka.,0,0,Крокодил Гена,ru +30792,The Corpse,1970-01-01,91.0,,,tt0065595,,A mother and daughter hatch a scheme to murder their family's domineering and sadistic patriarch.,0,0,The Corpse,en +29233,Horton Hears a Who!,1970-01-01,26.0,,,tt0198545,,"In this story, Horton discovers there is a microscopic community of intelligent beings called the Who's living on a plant that only he can hear. Recognising the dangers they face, he resolves to keep them safe. However, the other animals around him think Horton has gone crazy thinking that there are such beings.",0,0,Horton Hears a Who!,en +72203,Karlson Returns,1970-01-01,20.0,,158814,tt0209074,,No movie overview available.,0,0,Карлсон вернулся,en +52949,An Evening of Edgar Allan Poe,1970-01-01,53.0,,,tt0229371,A diabolical quartet of HORRIFYING Evil!,"A collection of 4 Poe stories narrated by Vincent Price: 1) The Telltale Heart, 2) Pit and the Pendulum, 3) The Sphinx, and 4) The Cask of Amantillado.",0,0,An Evening of Edgar Allan Poe,en +44510,The Grandmother,1970-01-01,34.0,,,tt0065794,To live is to die.,A young boy plants some strange seeds and they grow into a grandmother.,0,0,The Grandmother,en +88953,The Ear,1970-01-01,94.0,,,tt0066498,,"Husband (senior ministry official) and wife find their house is riddled with listening devices put there by his own ministry. A harrowing night follows (reminiscent of 'Who's Afraid Of Virginia Woolf'), and the resolution is worse than being carted off to jail",0,0,Ucho,cs +117999,Last of the Mobile Hot Shots,1970-01-02,100.0,,,tt0064574,"When she married Jeb Stuart Thompson, she didn't know what was expected of her. Now she knew.",A new bride gets caught between her decadent husband and his black half-brother.,0,0,Last of the Mobile Hot Shots,en +65891,The Dunwich Horror,1970-01-14,90.0,,,tt0065669,A few years ago in Dunwich a half-witted girl bore illegitimate twins. One of them was almost human!,A university student is pursued by a man with a demonic secret.,0,0,The Dunwich Horror,en +257574,My Sweet Charlie,1970-01-20,97.0,,,tt0066114,,"A pregnant white Southern girl and a black New York lawyer, both on the run in rural Texas, meet up in a boarded-up, abandoned house and realize they both need each other in order to survive.",0,0,My Sweet Charlie,en +11202,Patton,1970-01-25,172.0,,,tt0066206,The Rebel Warrior,"""Patton"" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.",12000000,89800000,Patton,en +42345,The Molly Maguires,1970-01-27,124.0,,,tt0066090,,"Life is rough in the coal mines of 1876 Pennsylvania. A secret group of Irish emigrant miners, known as the Molly Maguires, fights against the cruelty of the mining company with sabotage and murder. A detective, also an Irish emigrant, is hired to infiltrate the group and report on its members. But on which side do his sympathies lie?",11000000,2200000,The Molly Maguires,en +29416,Horror of the Blood Monsters,1970-02-01,85.0,,,tt0065852,You'll scream yourself into a state of shock!,"Three earthlings (John Carradine, Robert Dix, Vicki Volante) leave on a space mission to destroy flesh creatures of a prehistoric lost planet.",0,0,Horror of the Blood Monsters,en +77641,Four Rode Out,1970-02-02,90.0,,,tt0064343,,"In this western, a Mexican desperado tries to flee his partner, a determined girl friend, and a US Marshal.",0,0,Four Rode Out,en +158598,"Armida, the drama of a bride",1970-02-03,87.0,,,tt0259196,,"Armida, the drama of a bride",0,0,"Armida, il dramma di una sposa",en +77165,And God Said to Cain,1970-02-05,93.0,,,tt0064273,The darkest western ever made,"An innocent man sentenced to ten years in prison for a crime he did not commit, is released from jail, promising to seek revenge on the guilty.",0,0,E Dio disse a Caino…,it +2998,Zabriskie Point,1970-02-09,113.0,,,tt0066601,How you get there depends on where you're at.,"An epic portrait of late Sixties America, as seen through the portrayal of two of its children: anthropology student Daria (who's helping a property developer build a village in the Los Angeles desert) and dropout Mark (who's wanted by the authorities for allegedly killing a policeman during a student riot)...",7000000,1000000,Zabriskie Point,en +39766,The Challenge,1970-02-10,74.0,,,tt0065534,,All-out war between the United States and an Asian country is averted when the two sides agree to settle their differences by each choosing a single soldier as champion and having the two men fight to the death on an isolated island.,0,0,The Challenge,en +65887,The horse,1970-02-22,0.0,,,tt0064294,,"Auguste Maroilleur, an elderly farmer, exploits 400 hectares of crop land with the help of his family, over which he rules with an iron hand. Things go awry the day he discovers one of his grandsons is involved in drug traffic. To make matters worse, the reckless youth has hidden the white powder in the Maroilleur farm. Without a moment's hesitation, Auguste gets rid of the toxic substance but, of course, the mob has different views...",0,0,La Horse,fr +92269,Loving,1970-03-04,89.0,,,tt0066017,Trust was something she took for granted,"Brooks Wilson is in crisis. He is torn between his wife Selma and two daughters and his mistress Grace, and also between his career as a successful illustrator and his feeling that he might still produce something worthwhile.",0,0,Loving,en +10671,Airport,1970-03-05,137.0,,33938,tt0065377,The #1 novel of the year - now a motion picture!,"Melodrama about a bomber on board an airplane, an airport almost closed by snow, and various personal problems of the people involved.",10000000,100489151,Airport,en +139718,The Phynx,1970-03-06,81.0,,,tt0066221,Here come the most super secret agents of all!,A rock band becomes embroiled in foreign affairs when they're sent to go on tour in Albania as a cover to find hostages in a remote castle held by communist enemies of the USA.,0,0,The Phynx,en +3423,The Things of Life,1970-03-13,89.0,,,tt0064165,,"Pierre, a successful expert in building highways has a traffic accident. Being seriously wounded, he is lying waiting for death and remembering his past in flashbacks.",0,0,Les Choses de la vie,fr +70327,Gamera vs. Jiger,1970-03-21,83.0,,161766,tt0065755,,A giant creature attacks Japan during the World Fair and its up to Gamera to stop it. But the monster injects Gamera with its offspring and a research team must take a craft into Gamera's body to eliminate the parasite.,0,0,Gamera tai Daimaju Jaiga,ja +277396,Three Sisters,1970-04-01,165.0,,,tt0066454,,Laurence Olivier's film of Chekhov's play.,0,0,Three Sisters,en +106887,The Green Wall,1970-04-04,110.0,,,tt0065798,,A young couple forsakes their urban existence for life in the exciting but dangerous Peruvian jungle.,0,0,La muralla verde,es +183962,Safety Catch,1970-04-07,87.0,,,tt0065584,,,0,0,Cran d'arrêt,fr +25625,Multiple Maniacs,1970-04-10,90.0,,,tt0067454,,"A traveling sideshow called the Cavalcade of Perversion draws in and terrorizes unsuspecting spectators. The leader of the troupe of misfits is Lady Divine, who goes out for blood after discovering her lover's affair.",5000,0,Multiple Maniacs,en +47459,Dorian Gray,1970-04-24,93.0,,,tt0065656,,"A corrupt young man somehow keeps his youthful beauty eternally, but a special painting gradually reveals his inner ugliness to all.",0,0,Das Bildnis des Dorian Gray,en +31304,A Swedish Love Story,1970-04-24,115.0,,,tt0065955,Moments of truth,"The youngsters puppy love is set against a backdrop of adults that struggle with their own lives. Her fathers feeling of misery and failure at work, her aunts unhappiness as an unmarried woman without kids of her own. His father work at the paintshop-business and his worries about the mentally ill grandfather. Against the adults the young couples love is so sweet and sensual, so innocent and beautiful. As a couple in love, they don't care about anything but themselves and seems totally unaware about everything that surrounds them.",0,0,En kärlekshistoria,sv +198652,Loot,1970-05-01,101.0,,,tt0066002,"We knock off anything - bodies, banks and birds!",Based on the play by 'Joe Orton' this film follows the adventures of two pals who have pulled off a bank robbery and have to hide the loot. Fortunately (?) one of them works in a funeral parlour and they have a coffin to spare.,0,0,Loot,en +14676,A Man Called Horse,1970-05-01,114.0,,383632,tt0066049,A man called,In 1825 an English aristocrat is captured by Indians. He lives with them and begins to understand/accept their lifestyles. Eventually he is accepted as part of the tribe and becomes their leader.,0,0,A Man Called Horse,en +63859,Pufnstuf,1970-05-03,94.0,,,tt0066256,A musical adventure of Double-Stuffed proportions!,"Jimmy (Jack Wild) ventures to Living Island with his magical, talking flute, Freddy. Once there, he befriends many of the island's inhabitants, but the evil Witchiepoo (Billie Hayes) is determined to steal Freddy the flute away from the boy to impress the visiting witches council and win the Witch of the Year Award.",0,0,Pufnstuf,en +20444,The Out of Towners,1970-05-28,98.0,,,tt0066193,"When they take you for an out-of-towner, they really take you.","George & Gwen Kellerman make a trip to New York, where George is going to start a new job, it turns out to be a trip to hell.",0,0,The Out of Towners,en +145162,The Walking Stick,1970-06-05,96.0,,,tt0066543,Some women will do anything a man asks...,"A young woman's highly ordered and structured life is turned upside-down when she meets a handsome stranger at a party. Friendship soon develops into romance and for the first time in her life she is truly happy. This happiness is short lived, however, as little by little she discovers her partner has been lying to her about his past. It is soon revealed that he and his friends have been planning to rob the auction house that she works for and they require her inside knowledge in order to pull off the crime.",0,0,The Walking Stick,en +28303,The Cheyenne Social Club,1970-06-12,103.0,,,tt0065542,"They made their own laws at ""The Cheyenne Social Club"" ... no wonder everyone's dying to get in!","Two cowboys inherit a ""social club"" specializing in satisfying men.",0,0,The Cheyenne Social Club,en +11589,Kelly's Heroes,1970-06-22,144.0,,,tt0065938,They set out to rob a bank... and damn near won a war instead!,A misfit group of World War II American soldiers goes AWOL to rob a bank behind German lines.,4000000,5200000,Kelly's Heroes,en +10364,Catch-22,1970-06-24,121.0,,,tt0065528,,"A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation. Catch-22 is a parody of a ""military mentality"" and of a bureaucratic society in general.",18000000,24911670,Catch-22,en +104343,The Man Who Left His Will on Film,1970-06-27,94.0,,,tt0066466,,"A metaphysical mystery involving a university student's camera getting stolen, and the thief then committing suicide. Looking back upon the event, the situation comes to be questioned if it happened at all.",0,0,東京戰争戦後秘話,ja +38978,Ned Kelly,1970-07-01,99.0,,,tt0066130,,"Unable to support his family in the Australian outback, a man turns to stealing horses in order to make money. He gets more deeply drawn into the outlaw life, and eventually becomes involved in murders. Based on the life of famed 19th-century Australian outlaw Ned Kelly.",0,0,Ned Kelly,en +42533,Angels Die Hard,1970-07-08,86.0,,,tt0065405,"THEIR BATTLE CRY-- ""KILL THE PIGS!""",Gang of bikers try to save people in a mining disaster.,0,0,Angels Die Hard,en +4882,A Bullet for Pretty Boy,1970-07-15,89.0,,,tt0065501,"Defacing public property is against the law... but so is bank robbing, murder and the kind of women Charlie Floyd loved.","A biography of Charles ""Pretty Boy"" Floyd, a gangster who started his career at a young age after seeking revenge for his father's murder.",0,0,A Bullet for Pretty Boy,en +38765,Chisum,1970-07-23,111.0,,,tt0065547,THE LEGEND - John Wayne is 'Chisum',Cattle baron John Chisum joins forces with Billy the Kid and Pat Garrett to fight the Lincoln County land war.,6000000,0,Chisum,en +80080,Fruit of Paradise,1970-07-31,99.0,,,tt0064781,,"The story is an allegory of Adam and Eve, in a modern (made in the '60s) Health Retreat. The action involves our hero wandering the grounds where she becomes obsessed with a mysterious man in red, who may or may not be a killer.",0,0,Ovoce stromu rajských jíme,cs +38221,Space Amoeba,1970-08-01,84.0,,,tt0065776,Hideous creatures from outer space advance to invade the earth!,"When a space probe crash-lands on a far-flung Pacific atoll, the craft's alien stowaways decide to take over their new world one creature at a time. Soon, the parasitic life forms latch onto three indigenous critters -- a squid, a crab and a snapping turtle -- and transform them into colossal mutant monsters.",0,0,"Gezora, Ganime, Kameba: Kessen! Nankai no daikaijû",ja +409082,Карусель,1970-08-01,,,,tt0065934,,,0,0,Карусель,ru +257302,May Morning,1970-08-02,101.0,,,tt0065378,,In a changing world a young Italian enrols at Oxford and finds i is him they are out to change.,0,0,Alba pagana,en +93862,Goodbye Gemini,1970-08-06,89.0,,,tt0065790,"In the age of Aquarius the twins Julian & Jackie share everything - Love, men and murder","Unnaturally close, jet-setting twins become enmeshed in the Swinging London scene, where their relationship is strained after they befriend a predatory hustler and his girlfriend.",0,0,Goodbye Gemini,en +285532,Bolidi sull'asfalto a tutta birra!,1970-08-08,,,,tt0122998,,,0,0,Bolidi sull'asfalto a tutta birra!,it +56858,The Key to Paradise,1970-08-24,81.0,http://www.dfi.dk/faktaomfilm/film/en/231.aspx?id=231,,tt0066168,,The Key to Paradise,0,0,Nøglen til paradis,da +189225,"Eldridge Cleaver, Black Panther",1970-08-24,75.0,,,tt0196528,,"The portrait of Eldridge Cleaver, the ""Minister of Information"" for the Black Panthers movement, in exile in Algiers.",0,0,"Eldridge Cleaver, Black Panther",en +4266,The Breach,1970-08-26,124.0,,,tt0066318,,"An innocent woman falls prey to the machinations of her abusive husband, his wealthy father, and a shady family friend.",0,0,La rupture,fr +8383,Red Sun,1970-08-31,85.0,,,tt0064905,,"Thomas hitchhikes from Hamburg to Munich where he meets his ex-girlfriend, Peggy. As Thomas doesn't have a bed for the night Peggy takes him home, not knowing that she and her four room mates have all made a strange pact....",0,0,Rote Sonne,de +80560,Wanda,1970-09-01,102.0,,,tt0067961,,"Wanda, after a string of abusive relationships, abandons her family and seeks solace in the company of a petty criminal (Michael Higgins).",0,0,Wanda,en +59408,Deep End,1970-09-01,90.0,,,tt0066122,If you can't have the real thing... you do all kinds of unreal things.,"15-year-old Mike takes a job at the local swimming baths, where he becomes obsessed with an attractive young woman, Susan, who works there as an attendant. Although Susan has a fiancé, Mike does his best to sabotage the relationship, to the extent of stalking both her and her fiancé.",0,0,Deep End,en +123961,Which Way to the Front?,1970-09-03,96.0,,,tt0066564,,"Brendan Byers III (Jerry Lewis), one of the richest men in America, has been pronounced 4-F and can't serve his country in it's war against Hitler. Byers does not takes ""No"" for an answer and recruits other 4-F's to fight against Hitler.",0,0,Which Way to the Front?,en +31675,Cromwell,1970-09-16,139.0,,,tt0065593,,"Disgusted with the policies of King Charles I, Oliver Cromwell plans to take his family to the New World. But on the eve of their departure, Cromwell is drawn into the tangled web of religion and politics that will result in the English Civil War.",3750000,0,Cromwell,en +325645,"Senza famiglia, nullatenenti cercano affetto",1972-03-30,,,,tt0200108,,,0,0,"Senza famiglia, nullatenenti cercano affetto",it +31672,Violent City,1970-09-17,100.0,,,tt0065555,,A hitman is double-crossed by his girlfriend and barely escapes a murder attempt. He then sets out to take his revenge on the woman and the gang boss who put her up to it.,0,0,Città violenta,it +73697,Come Have Coffee with Us,1970-09-22,98.0,,,tt0067932,,"Paronzini at the age of 50, decides to get married and he looks at the Tettamanzi's three sisters.",0,0,Venga a prendere il caffè da noi,it +94468,Pieces of Dreams,1970-09-23,100.0,,,tt0066222,,A young priest (Robert Forster) questions his faith after he falls in love with a social worker.,0,0,Pieces of Dreams,en +28681,Equinox,1970-10-01,80.0,,,tt0067055,It was a peaceful mountain retreat until IT came home...,"Four friends are attacked by a demon while on a picnic, due to possession of a tome of mystic information. Told in flashbacks by the sole survivor.",0,0,Equinox,en +17978,The Great White Hope,1970-10-11,103.0,,,tt0065797,The most honored play in the history of Broadway...becomes an electrifying motion picture!,A black champion boxer and his white female companion struggle to survive while the white boxing establishment looks for ways to knock him down,0,0,The Great White Hope,en +83475,The Debut,1970-10-12,91.0,,,tt0066124,,"A film-in-film story set in a provincial town in Russia. Pasha is an amateur actress who plays a witch at a local club, but her dream is to play Joan of Arc. In a strike of luck she is cast as Joan of Arc in a big screen film. Now she is torn between her luck and her love to Arkadi (Kuravlev) who is a married man.",0,0,Начало,ru +44000,Trog,1970-10-24,91.0,,,tt0066492,From a million years back...Horror explodes into today!,"A sympathetic anthropologist uses drugs and surgery to try to communicate with a primitive troglodyte who is found living in a local cave. + Anthropologist Dr. Brockton (Joan Crawford) unearths a troglodyte (an Ice Age ‘missing link” half-caveman, half-ape) and manages to domesticate him – until he’s let loose by an irate land developer, and goes on a rampage, terrorizing the local citizenry.",0,0,Trog,en +35002,When Dinosaurs Ruled the Earth,1970-10-25,96.0,,,tt0066561,"Enter an age of unknown terrors, pagan worship and virgin sacrifice...","Hammer Film’s follow-up to the successful One Million Years B.C. is set in an ancient past when humans and dinosaurs co-exist. Athletic cavewomen and hairy men wander around, grunting, sweating and occasionally sacrificing evil blonde babes to the sun in return for protection from stop-motion beasts. The fun-loving, energetic Sanna (Victoria Vetri), one of the sacrificial offerings, manages to escape during a ritual and joins another tribe where she says ‘necro’ a lot and falls in love with a surprisingly hairless guy.",0,0,When Dinosaurs Ruled the Earth,en +24918,The Twelve Chairs,1970-10-28,94.0,,,tt0066495,A wild and hilarious chase for a fortune in jewels.,"A treasure hunt. An aging ex-nobleman of the Czarist regime has finally adjusted to life under the commisars in Russia. Both he and the local priest find that the family jewels were hidden in a chair, one of a set of twelve. They return separately to Moscow to find the hidden fortune.",0,0,The Twelve Chairs,en +45398,The McKenzie Break,1970-10-28,108.0,,,tt0066064,,A German U-Boat commander and 600 prisoners plan a daring escape from a PoW camp in Scotland.,0,0,The McKenzie Break,en +94551,The Christine Jorgensen Story,1970-10-29,98.0,,,tt0065549,,I couldn't live in a man's body!,0,0,The Christine Jorgensen Story,en +3145,The Horror of Frankenstein,1970-11-08,95.0,,,tt0065851,,"Victor Frankenstein, descendant of the infamous scientist, Baron Von Frankenstein, follows in his experimental footsteps. Initially his success involves the resuscitation of a tortoise and progressing onto more ambitious projects, including creating his own monster. The gothic genre is re-worked to create a drama of black humour and farce.",0,0,The Horror of Frankenstein,en +91583,Perfect Friday,1970-11-10,94.0,,,tt0066212,,"The deputy manager of a London bank has worked out a way to rob the branch of £200,000. When he becomes involved with the attractive Lady Dorset he decides to go ahead with his plan. He needs her help and that of her philandering spendthrift husband. It all comes down to a matter of trust.",0,0,Perfect Friday,en +42569,Where’s Poppa?,1970-11-10,82.0,,,tt0066563,I wish momma would stop saying that! Yeah.,"When New York attorney Gordon Hocheiser meets Louise Callan, the girl of his dreams, he schemes to eliminate his aging, senile mother, even though he promised his late father that he'd always take care of her. He fears that his batty mom's eccentricities will shortly lead to Louise's departure.",0,0,Where’s Poppa?,en +77882,The Rise and Rise of Michael Rimmer,1970-11-12,94.0,,,tt0066302,,Fresh-faced young Michael Rimmer worms his way into an opinion poll company and is soon running the place. He uses this as a springboard to get into politics and in the mini-skirted flared-trousered world of 1970 Britain starts to rise through the Tory ranks.,0,0,The Rise and Rise of Michael Rimmer,en +11626,Pippi on the Run,1970-11-13,94.0,,11875,tt0066265,,"Fed up with their strict parents, Tommy and Annika run away from home, with their friend Pippi Longstocking to look after them in their long trek.",0,0,På rymmen med Pippi Långstrump,sv +177043,Flap,1970-11-13,106.0,,,tt0065726,A warning to the Mayor: FLAP is here! The Indians have already claimed Alcatraz. City Hall may be next. You have been warned.,Comedy based on the plight of modern Native Americans living on reservations.,0,0,Flap,en +423078,Narrien Illat,1970-11-13,100.0,,,tt0121244,,The ups and downs of the popular music world are revealed to a singer.,0,0,Narrien Illat,fi +73600,Bombay Talkie,1970-11-18,112.0,,,tt0065484,,An English novelist travels to Bombay to watch one of her novels translated to film. She chases after the Movie's leading man while the Screenwriter chases after her.,0,0,Bombay Talkie,en +293094,Aliisa,1970-11-18,80.0,,,tt0417416,,A finnish TV-movie by Jukka Sipilä,0,0,Aliisa,en +373514,Night Chase,1970-11-20,95.0,,,tt0066139,A man fleeing the scene of his wife's shooting forms an unexpected relationship with the tough cab driver he hires to drive him to the Mexican border.,A man fleeing the scene of his wife's shooting forms an unexpected relationship with the tough cab driver he hires to drive him to the Mexican border.,0,0,Night Chase,en +62762,The Chinese Boxer,1970-11-26,90.0,,201545,tt0065999,See The Sweeping Hand of Death Strike Without Mercy!,"Lei Ming, a noble young martial arts student who doesn't know the meaning of giving up. He faces a treacherous, blood-thirsty Japanese karate expert, which leads to many memorable battles as well as several unforgettable training sequences.",0,0,Long hu dou,en +113520,The Hart of London,1970-11-30,80.0,,,tt0129134,,"A surreal sequence of images of nature and London, Ontario, life and death.",0,0,The Hart of London,en +126927,The Devil's Widow,1970-12-01,106.0,,,tt0067822,,"Based on an ancient Scottish folk song, an older woman uses witchcraft to keep her young jet-set friends.",0,0,The Ballad of Tam Lin,en +4983,"Run, Simon, Run",1970-12-01,74.0,,,tt0066317,A red man and white woman bound by a love that death can't destroy.,A Papago Indian returns to his reservation after a prison term and searches for his brother's killer.,0,0,"Run, Simon, Run",en +62675,Distracted,1970-12-09,85.0,,,tt0072884,,A comedy about an absent-minded man who works at a advertising company and topples from one problem to another.,0,0,Le distrait,fr +88486,Queens Of Evil,1970-12-11,90.0,,,tt0066980,,"A young hippie kills a man, and seeks refuge at the lakeside house of three beautiful sisters, who seem to be hiding a dark secret.",0,0,Le regine,it +42599,There's a Girl in My Soup,1970-12-15,95.0,,,tt0066449,Soup's on!,"TV personality Robert Danvers, an exceedingly vain rotter, seduces young women daily, never staying long with one. He meets his match in Marion, an American, 19, who's available but refuses any romantic illusions.",0,0,There's a Girl in My Soup,en +64961,When Women Had Tails,1970-12-16,0.0,,106368,tt0066268,,"Cavemen Ulli (Giuliano Gemma), Kao (Lando Buzzanca), Grrr, Put, Zog, Maluo and Uto meet Filli (Senta Berger) with the light-brown tail.",0,0,Quando le donne avevano la coda,it +194817,Take a Girl Like You,1970-12-16,101.0,,,tt0066436,In this day and age what's a virgin to do?,"Young Jenny heads to the South of England to start a new career as a school teacher. Even before she has had a chance to settle in she meets Patrick, one of the local ""lads"". Within a short time she has her hands full when a number of the local boys take a liking to her. But who will be the lucky one who wins her affections?",0,0,Take a Girl Like You,en +26593,Rio Lobo,1970-12-18,114.0,,,tt0066301,"Give 'Em Hell, John.","After the Civil War, Cord McNally searches for the traitor whose perfidy caused the defeat of McNally's unit and the loss of a close friend.",0,0,Rio Lobo,en +244575,Кентервильское привидение,1970-12-19,,,,tt0165844,,,0,0,Кентервильское привидение,ru +5590,Donkey Skin,1970-12-20,90.0,,,tt0066207,,A fairy godmother helps a princess disguise herself so she won't have to marry her father.,0,0,Peau d'âne,fr +90351,Sympathy for the Underdog,1971-01-01,93.0,,,tt0066806,,A yakuza gang gets driven out of Yokohama by a big gang from Tokyo. They relocate to Okinawa to violently start over.,0,0,博徒外人部隊,ja +46010,Old Men: Robbers,1971-01-01,92.0,,,tt0067789,,An old detective does not want to retire. The only way out is to prove to his boss that he still can catch criminals. The problem is that there were no crimes recently to work on. Together with his retired friend he decides to commit a perfect crime himself and then quickly solve it. Real problems start when a real criminal steals money he has stolen.,0,0,Stariki-Razboyniki,en +72086,The Night Visitor,1971-01-01,106.0,,,tt0066141,Locked in the cold asylum of his mind - a sane man stalks his prey...,"An insane Swedish farmer escapes from an asylum to get revenge on his sister, her husband and others.",0,0,The Night Visitor,en +369603,Μαριχουάνα Στοπ !,1971-01-01,,,,tt0230505,,,0,0,Μαριχουάνα Στοπ !,el +215061,Synchromy,1971-01-01,7.0,,,tt0067813,,The film's soundtrack is an original musical composition produced with synthetic sound - through photographing unusual geometric shapes and running them through an optical sound head. The images are an artistic rendering of this soundtrack.,0,0,Synchromy,en +61799,A Girl in Australia,1971-01-01,107.0,,,tt0066824,,"The film is about an old fashioned Italian with moral values of the 1930/40's ,who has to find a wife in the modern, woman's liberated society of Australia of the 1960/70's.",0,0,"Bello, onesto, emigrato Australia sposerebbe compaesana illibata",it +90041,La Région Centrale,1971-01-01,184.0,,,tt0130232,,A 1971 experimental Canadian film directed by Michael Snow. Shot in the Canadian mountains over a period of 24 hours using a robotic arm.,0,0,La Région Centrale,en +261274,A Flower,1971-01-01,8.0,,,tt1013528,,A boy grows a seed into a flower while the world around him marches on.,0,0,En blomst,en +243984,Persuasion,1971-01-01,300.0,,,tt0066702,,Adaptation of the Jane Austen novel.,0,0,Persuasion,en +243987,Sense and Sensibility,1971-01-01,178.0,,,tt0254768,,Adaptation of the Jane Austen novel.,0,0,Sense and Sensibility,en +215797,The Thorn,1971-01-01,93.0,,,tt0165981,"More than a movie, it's a happening.","In her film debut, Bette Midler portrays the Virgin Mary in a biting satire of the commercialization of religion.",0,0,The Thorn,en +122271,Bleak Moments,1971-01-01,111.0,,,tt0066842,,"Moments from the uncompromisingly bleak existence of a secretary, her retarded sister, aloof and uneasy teacher boyfriend, bizzare neighbour and irritating workmate.",0,0,Bleak Moments,en +42517,The Big Doll House,1971-01-01,95.0,,,tt0066830,"Their bodies were caged, but not their desires. They would do anything for a man - or to him.",Female prisoners in a Phillippine jail are being subjected to sadistic torture. Five of the women--along with the help of two men--plot an escape.,0,0,The Big Doll House,en +65134,Zachariah,1971-01-12,93.0,,,tt0068011,A head of his time,Two gunfighters separate and experience surreal visions on their journey through the west.,0,0,Zachariah,en +31472,Lust for a Vampire,1971-01-17,91.0,,123740,tt0067367,A vampire's lust knows no boundaries...,"In 1830, the Karnstein heirs use the blood of an innocent to bring forth the evil that is the beautiful Mircalla - or as she was in 1710, Carmilla. The nearby Finishing School offers rich pickings not only in in the blood of nubile young ladies but also with the headmaster who is desperate to become Mircalla's disciple, and the equally besotted and even more foolish author Richard Lestrange.",0,0,Lust for a Vampire,en +252853,Dr. Cook's Garden,1971-01-19,75.0,,,tt0065657,,"A young doctor returns to his New England home town after a long absence. He visits with the town's kindly old physician, Dr. Cook, a man he has admired since childhood. However, he soon finds out that the old doctor isn't quite what he seems to be, and the young doctor finds his life in danger.",0,0,Dr. Cook's Garden,en +23544,The Point!,1971-02-02,74.0,,,tt0067595,,"Years ago, there was a place called The Land of Point, because everything in The Land of Point had one: the barns, the houses, the cars, everything, even the people. Everyone in The Land of Point had a point at the top of its head. Everyone, that is, except Oblio, who was born round-headed. Since he had no point, Oblio, along with his trusty dog, Arrow, was banished to the Pointless Forest. Join them to see what wonders await these two intrepid travelers as they make their way on their amazing, song-filled journey of discovery!",0,0,The Point!,en +197175,Rio das Mortes,1971-02-15,84.0,,,tt0067677,,"Michel and Guenther, working in dead-end jobs, are obsessed with going to Peru to find buried treasure, using a map of the Rio das Mortes. Michel's girlfriend, Hanna, humors their plan, but really just wants to get married.",0,0,Rio das Mortes,de +294819,"Colpo grosso, grossissimo...anzi probabile",1972-03-31,93.0,,,tt0070026,,Italian comedy,0,0,"Colpo grosso, grossissimo...anzi probabile",it +88583,The Pursuit of Happiness,1971-02-23,93.0,,,tt0067634,,"William Popper is the son of a stockbroker and is thoroughly disenchanted with ""the system."" So much so that even though he can prove that he ran over a woman in his car entirely by accident, he accepts a sentence for manslaughter.",0,0,The Pursuit of Happiness,en +17401,"Blue Water, White Death",1971-03-01,99.0,,,tt0146496,,"Peter Gimbel and a team of photographers set out on an expedition to find and Film, for the very first time, Carcharodon carcharias....The Great White Shark. The Expedition took over nine months and traveled from Durban, South Africa, across the Indian Ocean and finally to South Australia.",0,0,"Blue Water, White Death",en +38654,When Eight Bells Toll,1971-03-09,94.0,,,tt0067976,,"In a vein similar to Bond movies, a British agent Philip Calvert is on a mission to determine the whereabouts of a ship that disappeared near the coast of Scotland.",0,0,When Eight Bells Toll,en +284013,Popsy Pop,1971-03-10,100.0,,,tt0065506,She'd do anything to help them with the heist... and then everything to keep the haul for her own little beautiful self!,"Claudia Cardinale is Popsy, who double-crosses her older partner Silva (Stanley Baker). Silva has arranged to divert diamonds from a large corporate-run diamond mine in the South American jungle, and Popsy does her “pop” wrong as they are both pursued by police.",0,0,Popsy Pop,fr +43580,The Cat in the Hat,1971-03-10,30.0,,,tt0284714,,"In a marvelously animated version of one of the most beloved of all Dr. Seuss tales, two youngsters find themselves at home with nothing to do on a rainy afternoon. But when the magical, mischievous Cat in the Hat arrives on the scene, they're all cat-apulted into a day of rousing, romping, outlandish antics they - and you - will never forget!",0,0,The Cat in the Hat,en +48207,Melody,1971-03-28,103.0,,,tt0067418,A tender love story for everyone who was ever ten years old.,Two youngsters declare to their parents that they want to get married. Not sometime in the future but as soon as possible.,0,0,Melody,en +76200,Just Before Nightfall,1971-03-31,100.0,,,tt0073221,,A married man (Michel Bouquet) who killed the wife of his best friend during a tryst feels compelled to turn himself in.,0,0,Juste avant la nuit,fr +82191,Flight of the Doves,1971-04-02,105.0,,,tt0067104,Something special is coming your way!,"While fleeing across the Irish countryside, two orphans are pursued by their villainous uncle, a master of disguises.",0,0,Flight of the Doves,en +8144,Dig Your Grave Friend... Sabata's Coming,1971-04-02,88.0,,,tt0065367,,"Steve McGowan has proposed to avenge the death of his father, murdered by one of the followers of Chief Miller. This engages the services of a famous gunslinger called Sabata and instructs him to kill Steve. The fate joins Steve and the Mexican bandit Leon Pompero, and together they decide to defeat the murderous gunman.",0,0,"Abre tu fosa, amigo, llega Sábata...",it +4279,The Married Couple of the Year Two,1971-04-07,98.0,,,tt0067397,,"Nicolas Philibert goes to America after killing a French aristocrat. On his return he tries to divorce his wife, Charlotte, but when he sees others trying to woo her his own interest is rekindled.",0,0,Les Mariés de l'an deux,fr +41357,Summer of '42,1971-04-09,103.0,,,tt0067803,"In everyone's life there's a ""Summer of '42""","Silent as a painting, the movie shows us day-dreamer Hermie and his friends Oscy and Benjie spending the summer of '42 on an US island with their parents - rather unaffected by WWII. While Oscy's main worries are the when and how of getting laid, Hermie honestly falls in love with the older Dorothy, who's married to an army pilot. When her husband returns to the front, Hermie shyly approaches her. Written by Bob Dawson",0,0,Summer of '42,en +21242,Valdez Is Coming,1971-04-09,90.0,,,tt0067921,"They Tore His Body. They Buried His Pride. But They Forgot His Old Uniform, His Sharp Knife and His Buffalo Gun. Find Tanner, El Segundo and the 16 Others. And Tell Them Valdez Is Coming.",A Mexican-American sheriff must resort to violence against a powerful rancher in order to get just compensation for the pregnant Indian widow of a wrongly killed black man.,0,0,Valdez Is Coming,en +102272,The Sudden Wealth of the Poor People of Kombach,1971-04-14,102.0,,,tt0067593,,"An intriguing Hans Christian Anderson-style fairy tale aesthetic and voice over narration. Sudden Wealth is a despairing chronicle of a group of starving peasants who finally seize governmental wealth like a dysfunctional group of Robin Hood's Merry Men, only to be betrayed by their inescapable selves and systematically dehumanized (think bucolic Orwell) and reprogrammed by what we'll put under the rubric of God and Country.",0,0,Der plötzliche Reichtum der armen Leute von Kombach,de +29129,The Shiver of the Vampires,1971-04-21,95.0,,,tt0065744,,"A young honeymooning couple stop for the night at an ancient castle. Unbeknownst to them, the castle is home to a horde of vampires, who have their own plans for the couple.",0,0,Le frisson des vampires,en +42501,Murmur of the Heart,1971-04-27,118.0,,,tt0067778,A souffle of a movie!,"In the end of the first Indochina War, an open-minded teenage boy finds himself between the urge to discover love and the ever-present, dominating affection of his mother.",0,0,Le souffle au cœur,fr +11302,Bananas,1971-04-28,82.0,,,tt0066808,,"When a bumbling New Yorker is dumped by his activist girlfriend, he travels to a tiny Latin American nation and becomes involved in its latest rebellion.",2000000,11833696,Bananas,en +107705,Byelorussian Station,1971-04-30,101.0,,,tt0128960,,"The heroes of the movie last seen each other on the Belarusian railway station in the summer of 1945. A quarter-century, they meet at the funeral of comrade.",0,0,Белорусский вокзал,ru +31856,Hydrozagadka,1971-04-30,70.0,,,tt0172577,,No overview found.,0,0,Hydrozagadka,en +17875,The Hellstrom Chronicle,1971-05-05,90.0,,,tt0067197,"Shocking. Beautiful. Brilliant. Sensual. Deadly...and in the end, only they will survive.",A scientist explains how the savagery and efficiency of the insect world could result in their taking over the world.,0,0,The Hellstrom Chronicle,en +86979,The Road Builder,1971-05-12,97.0,,,tt0067486,"A lonely woman in a decaying mansion... A young stranger on a big, black bike.","The dreary existence of middle-aged spinster Maura Prince takes an unexpected turn with the arrival of young handyman Billy Jarvis, but there is more to Billy than meets the eye. Based on the novel *Nest in a Fallen Tree* by Joy Cowley.",0,0,The Road Builder,en +59881,Taking Off,1971-05-17,93.0,,,tt0067820,,"Unable to deal with her parents, Jeannie Tyne runs away from home. Larry and Lyne Tyne search for her, and in the process meet other people whose children ran away. With their children gone, the parents are now free to rediscover/enjoy life.",0,0,Taking Off,en +27832,The Corpse Grinders,1971-05-19,72.0,,,tt0068414,They Went in People and Came Out Hamburger!,"When the Lotus Cat Food Company finds itself in financial trouble, the owners decide to find a new, cheap source of meat -- the local graveyard. Only one problem -- soon cats develop a taste for human flesh, and tabbies are tearing out throats all over town.",47000,0,The Corpse Grinders,en +1687,Escape from the Planet of the Apes,1971-05-20,98.0,,1709,tt0067065,Meet baby Milo who has Washington terrified.,"The world is shocked by the appearance of two talking chimpanzees, who arrived mysteriously in a U.S. spacecraft. They become the toast of society; but one man believes them to be a threat to the human race.",2500000,12348905,Escape from the Planet of the Apes,en +172475,Mrs. Pollifax: Spy,1971-05-21,110.0,,,tt0067451,"Before she joined the CIA, Mrs. Polifax thought Red China was a set of dishes.","Mrs. Pollifax-Spy (1971) is a comedy film directed by Leslie H. Martinson, starring Rosalind Russell and Darren McGavin, and released by United Artists. This was Russell's last theatrical film role, with one TV movie in 1972. Russell adapted the novel The Unexpected Mrs. Pollifax, written by Dorothy Gilman under the pseudonym C. A. McKnight.",0,0,Mrs. Pollifax: Spy,en +79645,The Grissom Gang,1971-05-28,128.0,,,tt0067162,"The psychotic killer, the young heiress...the kidnapping that becomes a love story.","The Grissom Gang is a remake of the notorious 1949 British melodrama No Orchids For Miss Blandish. Kim Darby plays a 1920s-era debutante who is kidnapped and held for ransom. Her captors are the Grissoms, a family comprised of sadists and morons, and headed by Ma Barker clone Irene Dailey. One of the Grissoms, played by Scott Wilson, takes a liking to his prisoner, which results in a bloody breakdown of the family unit. Both The Grissom Gang and the original No Orchids For Miss Blandish were inspired by the best-seller by James Hadley Chase, though neither film retains Chase's original ending.",0,0,The Grissom Gang,en +14482,Baba Yaga,1971-06-03,74.0,,,tt0069544,,No overview found.,0,0,Zolotye roga,ru +55624,Fata Morgana,1971-06-04,79.0,,,tt0067085,,"Footage shot in and around the Sahara Desert, accompanied only by a spoken creation myth and the songs of Leonard Cohen.",0,0,Fata Morgana,de +78233,The Policeman,1971-06-05,87.0,,,tt0066374,,"Azulai is a policeman in Jaffa, whose incompetence is only matched by his soft-heartedness. His superiors want to send him to early retirement, but he would like to stay on the force, and the criminals of Jaffa don't want to see him leave either...",0,0,Ha-Shoter Azulai,he +140825,The Deadly Trap,1971-06-09,96.0,,,tt0067382,Murder and Madness is THE DEADLY TRAP.,"An industrial-espionage group calls on a retired spy (Frank Langella) living with his wife (Faye Dunaway) and children in Paris. To force him back to his old job, his children will be kidnapped.",0,0,La maison sous les arbres,fr +57215,"Drive, He Said",1971-06-13,95.0,,,tt0068509,,"Hector is a star basketball player for the College basketball team he plays for, the Leopards. His girlfriend, Olive, doesn't know whether to stay with him or leave him. And his friend, Gabriel, who may have dropped out from school and become a protestor, wants desperately not to get drafted for Vietnam.",0,0,"Drive, He Said",en +91607,Who Is Harry Kellerman and Why Is He Saying Those Terrible Things About Me?,1971-06-15,108.0,,,tt0067980,,"Georgie Soloway, a pop hit love song writer who cannot love, himself, or others. He spends his days with various women flying his plane, and dropping in to the world around him.",0,0,Who Is Harry Kellerman and Why Is He Saying Those Terrible Things About Me?,en +30941,The Anderson Tapes,1971-06-17,99.0,,,tt0066767,The Crime of the Century!,"A thief (Duke Anderson) just released from ten years in jail, takes up with his old girlfriend (Ingrid) in her posh apartment. He makes plans to rob the entire building. What he doesn't know is that his every move is recorded on audio and video tape, although he is not the subject of any surveillance.",3000000,0,The Anderson Tapes,en +267506,UFO - Distruggete base Luna!,1971-06-18,,,,tt0216315,,,0,0,UFO - Distruggete base Luna!,it +104297,Scandalous John,1971-06-22,113.0,,,tt0067712,,"A crotchety old ranch owner fights to be able to live his life the way he wants to, and not the way other people--and the law--tell him he has to.",0,0,Scandalous John,en +84285,Von Richthofen and Brown,1971-06-30,97.0,,,tt0067658,,"The story of Manfred von Richtofen, the german air ace during the World War I and his struggle with the enemy aces and some jealous german officers.",0,0,Von Richthofen and Brown,en +204007,A mí las mujeres ni fu ni fa,1971-07-01,88.0,,,tt0066738,,"Pedro is a famous singer who fall in love with a psychiatrist girlfriend, he decides to attend to the doctor with the story that he does not like women. The psychiatric nurse helps him with the girl as she is in love with the doctor.",0,0,A mí las mujeres ni fu ni fa,en +45938,Sunday Bloody Sunday,1971-07-01,110.0,,,tt0067805,It's about three decent people. They will break your heart.,"Recently divorced career woman Alex Greville begins a romantic relationship with glamorous mod artist Bob Elkin, fully aware that he's also intimately involved with middle-aged doctor Daniel Hirsh. For both Alex and Daniel, the younger man represents a break with their repressive pasts, and though both know that Bob is seeing both of them, neither is willing to let go of the youth and vitality he brings to their otherwise stable lives.",0,0,Sunday Bloody Sunday,en +482,Shaft,1971-07-02,100.0,,495,tt0067741,The mob wanted Harlem back. They got shaft...up to here.,Cool black private eye John Shaft is hired by a crime lord to find and retrieve his kidnapped daughter.,4000000,12121618,Shaft,en +105254,The Touch,1971-07-14,115.0,,,tt0066826,The Touch is the total expression of love.,A seemingly happy Swedish housewife and mother begins an adulterous affair with a foreign archaeologist who is working near her home.,6900000,6530000,Beröringen,sv +70322,Gamera vs. Zigra,1971-07-17,87.0,,161766,tt0067123,,"A moon base is destroyed by a spaceship with a cluster of gumballs on its head. Later, at Sea World, dolphins are dying mysteriously. Zigra kidnaps two men and two children (one of whom is a Coke addict - Coca-Cola that is) and starts causing earthquakes. The two six year olds somehow outwit Zigra and help their incapacitated fathers escape. The Zigra Woman, who can use her eyes to put people into comas, then chases them all over Sea World like an extended Benny Hill skit. Somewhere in this movie Gamera finally shows up, fights Zigra, who turns into a giant swordfish.",0,0,Gamera tai Shinkai kaijû Jigura,ja +26405,Wake in Fright,1971-07-21,114.0,,,tt0067541,"Have a drink, mate? Have a fight, mate? Have some dust and sweat, mate? There's nothing else out here.","Wake in Fright is the story of John Grant, a bonded teacher who arrives in the rough outback mining town of Bundanyabba planning to stay overnight before catching the plane to Sydney, but as one night stretches into several he plunges headlong into his own destruction.",0,0,Wake in Fright,en +42532,Willard,1971-07-30,95.0,,375886,tt0067991,This is Willard and his friend Ben. Ben will do anything for Willard.,"A social misfit, Willard is made fun of by his co-workers, and squeezed out of the company started by his deceased father by his boss. His only friends are a couple of rats he raised at home, Ben and Socrates. (And their increasing number of friends) However, when one of them is killed at work, he goes on a rampage using his rats to attack those who have been tormenting him.",0,0,Willard,en +387957,Clay Pigeon,1971-08-01,93.0,,,tt0066920,Joe Ryan had but one life to give for his country. The CIA asked for it twice.,An ex-soldier is recruited by the FBI to go undercover in L.A. and find other ex-soldiers who are part of a drug-dealing gang.,0,0,Clay Pigeon,en +29111,Requiem for a Vampire,1971-08-01,87.0,,,tt0067950,Two young girls...trapped..with no escape! Forced to submit to the Horrors of the Pit!,A vampire lures beautiful young women to his castle in Europe.,0,0,Requiem pour un vampire,fr +11234,The Omega Man,1971-08-01,98.0,,,tt0067525,The World Is Dead. One Survivor. Then The Others. Crawling In Darkness. The Strangest Sect Of All. *Hunting The Last Man On Earth.*,"Robert Neville, a doctor, due to an experimental vaccine, is the only survivor of an apocalyptic war waged with biological weapons. The plague caused by the war has killed everyone else except for a few hundred deformed, nocturnal people calling themselves ""The Family"". The plague has caused them to become sensitive to light, as well as homicidally psychotic.",0,0,The Omega Man,en +21142,Billy Jack,1971-08-02,114.0,,240690,tt0066832,"When you need him, he's always there!","Ex-Green Beret hapkido expert saves wild horses from being slaughtered for dog food and helps protect a desert ""freedom school"" for runaway.",0,0,Billy Jack,en +71945,Night of Dark Shadows,1971-08-04,95.0,,,tt0067491,Just another night of... Terror.,A painter and his wife move into a home and find themselves plagued by ghosts and spirits of his ancestors that used to be witches.,900000,0,Night of Dark Shadows,en +16154,Let's Scare Jessica to Death,1971-08-06,89.0,http://www.letsscarejessicatodeath.net/,,tt0067341,Nightmare or sanity... which is which?,"Newly released from a mental ward, Jessica hopes to return to life the way it was before her nervous breakdown. But when Jessica moves to a country house with her husband and a close friend, she finds a mysterious girl living in there who may or may not be a vampire. Jessica's terror and paranoia resurface as evil forces surround her, making her wonder: Are the visions real or is she slipping back into madness?",180000,0,Let's Scare Jessica to Death,en +121923,Brother John,1971-08-15,95.0,,,tt0068317,Brother John just blew into town...and the town is about to blow apart!,"A mysterious man John Kane (Sidney Poitier) who, when he returns to his hometown in Alabama for his sister's funeral, is thought to be an outside labor agitator - until it's revealed that he's really a heavenly messenger. The plot revolves around a strike at the town's big factory.",0,0,Brother John,en +79735,Shoot Out,1971-08-16,95.0,,,tt0067750,"He's Out of Jail, and Ready for Revenge","Clay Lomax, a bank robber, gets out of jail after an 7 year sentence. He is looking after Sam Foley, the man who betrayed him. Knowing that, Foley hires three men to pay attention of Clay's steps. The things get complicated when Lomax, waiting to receive some money from his ex-lover, gets only the notice of her death and an 7 year old girl, sometimes very annoying, presumed to be his daughter.",0,0,Shoot Out,en +42499,The Night Evelyn Came out of the Grave,1971-08-18,103.0,,,tt0067487,The worms are waiting.,"A wealthy English lord is suffering a mental breakdown following the death of his red-headed wife, Evelyn, whom he feared was cheating on him. He tours local bars and dives, scouring for lovely red-heads willing to come back to his decaying castle in the country, where he seduces them, then tortures and kills them. His friend the doctor talks him into marrying again to help heal his slowly-rotting mind, which he does--but are the doctor's orders really what he needs?",0,0,La notte che Evelyn uscì dalla tomba,it +64115,I Hate Mondays,1971-08-27,98.0,,,tt0067484,,"Funny adeventures of few person including the unlucky Italian guest, in Warsaw, on Monday.",0,0,Nie lubię poniedziałku,en +72032,Return of Sabata,1971-09-03,100.0,,321065,tt0067672,The man with gunsight eyes is back!,"Master gunslinger Sabata arrives in Hobsonville, a town completely owned by McIntock, a robber baron who is taxing the inhabitants for the cost of future improvements to the town. Or that's what McIntock says he'll do with the money...",245000,0,È tornato Sabata... hai chiuso un'altra volta!,it +138273,La Vacanza,1971-09-04,0.0,,,tt0065161,,,0,0,La Vacanza,it +85442,To Catch a Spy,1971-09-06,94.0,,,tt0067297,,"While on vacation, a woman's husband is taken by the Russian government. After one attempt fails, she begins looking for a suitable spy to capture and trade in exchange for her husband, but she develops an attraction to the one she thinks is a good candidate.",0,0,To Catch a Spy,en +273868,Scipione detto anche l'africano,1971-09-09,,,,tt0067719,,,0,0,Scipione detto anche l'africano,it +76871,The Widow Couderc,1971-09-15,92.0,,,tt0067943,,,0,0,La veuve Couderc,fr +65131,Shadow,1971-09-18,87.0,,,tt0217841,,Musical tale about a struggle between a good Scientist and his evil Shadow.,0,0,Ten',ru +42494,Glen and Randa,1971-09-19,93.0,,,tt0067141,,"Teenagers Glen and Randa are members of a tribe that lives in a rural area, several decades after nuclear war has devastated the planet. They know nothing of the outside world, except that Glen has read about and seen pictures of a great city in some old comic books. He and Randa set out to find this city.",0,0,Glen and Randa,en +129851,A Bullet for a Stranger,1971-09-23,94.0,,,tt0067142,,"John and George McIntire are a couple of naive brothers who travel to a lawless western town to see their father. The bumbling siblings get themselves into big trouble after they beat up a member of a gang of extortionists. Fortunately, a mysterious roving gunfighter decides to help the guys out of their jam.",0,0,Gli fumavano le Colt... lo chiamavano Camposanto,it +36194,The Go-Between,1971-09-24,118.0,,,tt0067144,,Tale of torrid and forbidden love between Christie and Bates in the English countryside.,100000,0,The Go-Between,en +47446,The Trojan Women,1971-09-26,105.0,,,tt0067881,,The women of Troy face enslavement after the fall of their city.,0,0,The Trojan Women,en +94055,The Peace Killers,1971-09-29,88.0,,,tt0067559,They ride to love... They ride to kill!,"Siblings Kristy and Jeffrey are buying supplies at a remote desert gas station when some members of a biker gang come cruising in. The bikers recognize Kristy, who used to be the main squeeze of the gang's leader before she ran away. The pair get away, but the bikers find out that they're living in a nearby commune, and start making their battle plans to bring Kristy back.",0,0,The Peace Killers,en +12481,The Big Boss,1971-10-02,100.0,,,tt0067824,Every Limb Of His Body Is A Lethal Weapon!!!,"Chen is a city boy who moves with his cousins to work at an ice factory. He does this with a family promise never to get involved in any fight. However, when members of his family begin disappearing after meeting the management of the factory, the resulting mystery and pressures force him to break that vow and take on the villainy of the Big Boss.",100000,0,唐山大兄,zh +96106,Battle of the Amazons,1973-08-11,90.0,,,tt0069700,"Hell hath no fury like 10,000 women!","A tribe of vicious female warriors terrorizes the countryside, and especially the males, until one day the men and some local villagers decide to fight back.",0,0,Le amazzoni - donne d'amore e di guerra,it +108535,Roma bene,1971-10-08,100.0,,,tt0067685,,"Nino Manfredi is a police captain, giving an onlooker's point-of-view towards the decadent society folk. Party itself features a down & out baron, who dances with the party's glamorous hostess Virna Lisi so that he can steal her valuable earrings. When they're missing, she's angry enough to call in the cops (Manfredi shows up) and have the baron taken away.",0,0,Roma bene,it +252888,Thief,1971-10-09,74.0,,,tt0067849,,A professional thief tries to break with his past but has to pull off one last job to pay off a gambling debt.,0,0,Thief,en +94225,Bless the Beasts & Children,1971-10-18,109.0,,,tt0068286,Only one animal kills just for the sport of it... Guess which...,Six children at a summer camp embark on a mission to save a buffalo herd from slaughter.,0,0,Bless the Beasts & Children,en +146428,You and Me,1971-10-25,97.0,,,tt0067894,,A neurosurgeon returns back to the USSR from Sweden and has to deal with rejection - both at work and at home.,0,0,Ты и я,en +64465,"The Case Is Closed, Forget It",1971-10-27,106.0,,,tt0067256,,"Because of a violation of traffic regulations an architect is put in prison. There he witnesses the grim reality of life behind bars: corrupt staff, corrupt inmates, an inhuman judicial system and the power of the Mafia.",0,0,L'istruttoria è chiusa: dimentichi,it +62978,The Salamander,1971-10-27,125.0,,,tt0067701,,"Two men, arty though somewhat staid, are drawn to the spirited and quixotic Rosemonde....",0,0,La Salamandre,fr +65674,A Town Called Hell,1971-10-27,95.0,,,tt0067870,Vengeance's fire is raging.,"A group of Mexican revolutionaries murders a town priest and a number of his christian followers. Ten years later, a widow arrives in town intent to take revenge from her husband's killers.",0,0,A Town Called Hell,en +73827,Why,1971-10-27,0.0,,,tt0066988,,"Giuseppe Di Noi, an Italian surveyor living in Switzerland, gets arrested at the border while going back to Italy with his family for a vacation. But can someone tell the man WHY?",0,0,Detenuto in attesa di giudizio,it +6976,Whoever Slew Auntie Roo?,1971-10-31,91.0,,,tt0067983,She's Taking A STAB At Motherhood!,"A demented widow lures unsuspecting children into her mansion in a bizarre ""Hansel and Gretel"" twist.",0,0,Whoever Slew Auntie Roo?,en +14811,Fiddler on the Roof,1971-11-03,181.0,,,tt0067093,To Life!,"This lavishly produced and critically acclaimed screen adaptation of the international stage sensation tells the life-affirming story of Tevye (Topol), a poor milkman whose love, pride and faith help him face the oppression of turn-of-the-century Czarist Russia. Nominated for eight Academy Awards.",9000000,83304330,Fiddler on the Roof,en +108723,Face-Off,1971-11-12,105.0,,,tt0068564,A story of two people... two worlds... one love,"Love story involving a Canadian professional hockey player and a hippie folk singer. Their union is tumultuous, as both try to come to terms with their differences in careers and lifestyles.",600,0,Face-Off,en +74689,Mon oncle Antoine,1971-11-12,104.0,,,tt0067439,,"Set in cold rural Quebec at Christmas time, we follow the coming of age of a young boy and the life of his family which owns the town's general store and undertaking business. Mon Oncle Antoine is Director Claude Jutra's masterpiece: A poignant, starkly honest, but humane film, shot through with authenticity from beginning to end. Realized with an unflagging artistic vision, Mon Oncle Antoine poetically portrays a young boy's coming of age, vividly capturing the Quebec mining town in which he lives.",0,0,Mon oncle Antoine,fr +18047,Brian's Song,1971-11-30,73.0,,,tt0068315,,Based on the real-life relationship between teammates Brian Piccolo and Gale Sayers and the bond established when Piccolo discovers that he is dying.,0,0,Brian's Song,en +56942,Family Life,1971-12-01,108.0,,,tt0068569,,A 19 years old London girl received agressive psychiatric treatments for her schizophrenic behaviour by a doctor who still wants her family to insure the guard of the child without any regards to the facts that it is this family who's agravating her situation.,0,0,Family Life,en +88375,Chandler,1971-12-01,85.0,,,tt0068356,Chandler is a private eye. It's a hard way to make a living... and an easy way to die.,A private eye (Warren Oates) is hired to follow a mobster's former mistress (Leslie Caron).,0,0,Chandler,en +94744,The Devil with Seven Faces,1971-12-09,90.0,,,tt0068292,,Carroll Baker plays a dual role as translator Julie Harrison and her twin sister Mary. The serpentine plot begins as Julie tells her lawyer Dave Barton (Stephen Boyd) that Mary's life is being threatened in London while Julie herself is being stalked by a mysterious stranger in Amsterdam.,0,0,Il diavolo a sette facce,it +84465,Made For Each Other,1971-12-12,100.0,,,tt0067377,,"The pair who created ""Lovers and Other Strangers"" take on marriage and other impossibilities.",0,0,Made For Each Other,en +20871,Gentlemen of Fortune,1971-12-13,88.0,,,tt0068519,,"A kindergarten director Troshkin is a dead ringer for a criminal nicknamed ""Docent"" who stole the priceless...",0,0,Джентльмены удачи,ru +32082,The Hospital,1971-12-14,103.0,,,tt0067217,"Madness, Murder and Malpractice.",A suicidal doctor struggles to find meaning in his life while a murderer stalks the halls of his hospital.,0,0,The Hospital,en +253232,Tora-san's Love Call,1971-12-29,114.0,http://www.tora-san.jp/toranomaki/movie08/,435347,tt0067540,,"Taking a message from Hiroshi's father to heart, Torajiro attempts to give up his wandering ways.",0,0,Otoko wa tsurai yo: Torajiro koiuta,en +191536,In the Shadow of Death,1971-12-30,80.0,,,tt0475110,,"A group of men go under-ice fishing, but find themselves trapped on a piece of ice, that has broken off. As they are drifting through the sea, the tension between them rises.",0,0,Nāves ēnā,lv +124414,Pictures of the Old World,1972-01-01,64.0,,,tt0171587,,"A visual essay on the forgotten parts of Eastern Europe. The outskirts here are a Slovakian town in the Tatra Mountains. Though censored for 17 years, Dusan Hanáks poetic visual essay is not a political or even social film. It goes to far deeper and more fundamental levels of human experience. Inspired by the photographs of Martin Martinek, the films power lies in its unusual portraits of people whose raw visual beauty radiates from their very souls",0,0,Obrazy starého sveta,sk +32140,Snowball Express,1972-01-01,93.0,,,tt0069291,,"When John Baxter inherits a ski resort in the Rocky Mountains, he quits his job in New York and moves the family west to run it. Only to find that the place is a wreck. But together they decide to try to fix it up and run it. But Martin Ridgeway, who wants the property, does everything he can to ensure it will fail.",0,0,Snowball Express,en +83461,Monologue,1972-01-01,94.0,,,tt0068963,,"Professor Sretenski is a scientist and director of a research center in Russia. He is separated from his wife and lives alone. His daughter, who lives with the mother, comes to his home and stays with him for a period, leaving her daughter with him. He raises his granddaughter, feeling a great affection for her.",0,0,Монолог,ru +244182,Emma,1972-01-01,240.0,,,tt0068068,,Adaptation of the Jane Austen novel.,0,0,Emma,en +106618,A Day in the Death of Joe Egg,1972-01-01,106.0,,,tt0068450,,A couple uses extremely black comedy to survive taking care of a daughter who is nearly completely brain dead. They take turns doing the daughter's voice and stare into the eyes of death and emotional trauma with a humour that hides their pain.,0,0,A Day in the Death of Joe Egg,en +36162,Winnie-the-Pooh and a Busy Day,1972-01-01,21.0,,198987,tt0208558,,"Another Russian Pooh story. This time the donkey, known from the Pooh stories as Eyeore, is sad because he has no tail. Pooh goes in search of one and finds it attached to a bell that hangs from the treehouse of one Owl.",0,0,Винни-Пух и день забот,ru +81775,The Audience,1972-01-01,106.0,,,tt0067896,,Caustic satire on bureaucracy of the Vatican authority and a simple Italian who wants to achieve the audience with the Pope.,0,0,L'udienza,it +256122,Prata Palomares,1972-01-01,125.0,,,tt0069117,,"While waiting for directions, two revolutionaries hide in a church, where they meet a woman who wants to have a son with one of them.",0,0,Prata Palomares,pt +45512,Pocket Money,1972-01-01,102.0,,,tt0069103,The two most memorable characters the West can never forget!,"Broke and in debt, an otherwise honest cowboy gets mixed up in some shady dealings with a crooked rancher.",0,0,Pocket Money,en +26119,Chato's Land,1972-01-01,110.0,,,tt0066907,"What Chato's land doesn't kill, Chato will.","A posse pursues Pardon Chato (Charles Bronson) a mestizo indian after he killed a US marshal in self-defense. As they get deeper into Indian territory, just who is hunting who.",0,0,Chato's Land,en +51302,The Muppet Musicians of Bremen,1972-01-01,50.0,,,tt0274678,,Four mistreated farm animals seek refuge as a band of traveling musicians in this musical tale narrated by Kermit the Frog.,0,0,The Muppet Musicians of Bremen,en +156015,Out 1: Spectre,1972-01-01,264.0,,,tt0066192,,"Out 1: Spectre begins as nothing more than scenes from Parisian life; only as time goes by do we realize that there is a plot—perhaps playful, perhaps sinister—that implicates not just the thirteen characters, but maybe everyone, everywhere. Real life may be nothing but an enormous yarn someone somewhere is spinning...",0,0,Out 1: Spectre,fr +356862,On Reflection: B.S. Johnson on Dr. Samuel Johnson,1972-01-02,0.0,,,tt2893616,,Directed by B.S. Johnson.,0,0,On Reflection: B.S. Johnson on Dr. Samuel Johnson,en +105576,The Old Maid,1972-01-05,85.0,,,tt0067949,,"Muriel is a shy woman who bluffs and blusters around in order to hide her shyness and to protect her loneliness, even though she longs wistfully for a companion of some sort. She has been lonely so long that now she is an old maid and has never been wooed. In this gentle French film, Muriel gets a glimpse of romance when Gabriel walks into the seaside hotel she is vacationing in. His car has broken down, and he has to stay there for a few days while it is repaired. Hers is the only dinner table with room at it, and Gabriel cannot prevent himself from charming women. She is stiff with him at first, but soon they develop a friendship.",0,0,La Vieille fille,fr +55032,Madame Sin,1972-01-15,86.0,,,tt0067375,,A CIA agent is used as a pawn in an insane woman's plan to steal a Polaris submarine.,0,0,Madame Sin,en +122677,Blood of Ghastly Horror,1972-01-21,85.0,,,tt0068291,Human zombies rise from their coffins as living corpses!,"A mad scientist implants an electronic device into the brain of an injured soldier, which turns him into a psychotic killer.",0,0,Blood of Ghastly Horror,en +85483,Something Evil,1972-01-21,73.0,,,tt0069298,,"A young couple moves into a farmhouse in rural Pennsylvania. What they don't know is that there is an unseen presence in the house, and that it wants to take possession of the wife.",0,0,Something Evil,en +46059,The Hot Rock,1972-01-26,101.0,,,tt0068718,How many times does it take to steal the same diamond?,Dortmunder and his pals plan to steal a huge diamond from a museum. But this turns out to be only the first time they have to steal it...,0,0,The Hot Rock,en +38060,The Lorax,1972-02-14,25.0,,,tt0213065,,"The Once-ler, a ruined industrialist, tells the tale of his rise to wealth and subsequent fall, as he disregarded the warnings of a wise old forest creature called the Lorax about the environmental destruction caused by his greed.",0,0,The Lorax,en +811,Silent Running,1972-03-09,89.0,,,tt0067756,Amazing companions on an incredible journey...that journeys beyond imagination!,"In a future Earth barren of all flora and fauna, the planet's ecosystems exist only in large pods attached to spacecraft. When word comes in that the pods are to be jettisoned into space and destroyed so that the spacecraft can be reused for commercial purposes, most of the crew of the Valley Forge rejoice at the prospect of going home. Not so for botanist Freeman Lowell who loves the forest and its creatures, so decides to take matters into his own hands to protect what he loves.",1000000,0,Silent Running,en +86732,Red Psalm,1972-03-09,87.0,,,tt0067467,,"Set in the 1890s on the Hungarian plains, a group of farm workers go on strike in which they face harsh reprisals and the reality of revolt, oppression, morality and violence.",0,0,Még kér a nép,hu +6591,What Have You Done to Solange?,1972-03-09,103.0,,,tt0068416,,"After several coeds are murdered at a college, a professor (Fabio Testi) who is involved with a student becomes a suspect, along with several other male and female teachers.",0,0,Cosa avete fatto a Solange?,it +19336,Godzilla vs. Gigan,1972-03-12,89.0,,374509,tt0068371,,"Godzilla's 12th film. After a accepting a job at a monster-themed park, a man learns his new employers are actually aliens who plan to use Ghidorah and Gigan to destroy earth. Godzilla and Anguirus must battle them to defend earth.",0,0,地球攻撃命令 ゴジラ対ガイガン,ja +238,The Godfather,1972-03-14,175.0,http://www.thegodfather.com/,230,tt0068646,An offer you can't refuse.,"Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.",6000000,245066411,The Godfather,en +11035,Roma,1972-03-15,128.0,,,tt0069191,The fall of the Roman Empire 1931-1972.,"A virtually plotless, gaudy, impressionistic portrait of Rome through the eyes of one of its most famous citizens.",0,0,Roma,it +24559,Slaughterhouse-Five,1972-03-15,104.0,,,tt0069280,Billy Pilgrim lives - from time to time.,"""Listen: Billie Pilgrim has come unstuck in time."" Slaughterhouse-Five is an award-winning 1972 film adaptation of Kurt Vonnegut's novel of the same name. Director Hill faithfully renders for the screen Vonnegut's obsessive story of Pilgrim, who survives the 1945 firebombing of Dresden, then lives simultaneously in his past, present, and future.",3200000,0,Slaughterhouse-Five,en +95108,Wild Honey,1972-03-22,95.0,,,tt0067987,Who says love has to last? It just has to be good.,"Country girl comes to the big city, gets into all kinds of trouble.",0,0,Wild Honey,en +440178,Pilate and Others,1972-03-29,98.0,,,tt0069088,,TV Drama from Wajda,0,0,Pilatus und andere - Ein Film für Karfreitag,en +46567,"It Can Be Done, Amigo",1972-03-31,109.0,,,tt0068539,,"An outspoken boy and a gunfighter-pimp save a drifter's life from hanging. The boy's uncle dies, leaving a house and some dry, useless land to the boy. The dying uncle has obtained the drifter's promise to help the boy get what is his. Meanwhile the gunfighter has decided that the drifter should marry his daughter after being with her previously. The two get into a series of brawls and shoot-outs until they arrive in the town and find the boy's inheritance -which turns out not to be as useless as it first appears.",0,0,Si può fare… amigo,it +126523,Taming of the Fire,1972-04-12,166.0,,,tt0069434,,"About Russian space program and missile industry, and it's founder Sergei P. Korolev, from the 1920s to the first man in space in 1961.",0,0,Ukroshcheniye Ognya,ru +12593,Fritz the Cat,1972-04-12,78.0,,476056,tt0068612,"We're not rated X for nothin', baby!",A hypocritical swinging college student cat raises hell in a satiric vision of various elements on the 1960's.,850000,0,Fritz the Cat,en +167707,A Bee in the Rain,1972-04-13,66.0,,,tt0066739,,"This Portuguese drama examines the daily life minutiae and intrigues of two scions of society in the rural village where they live. One is a wealthy landowner, the other a widowed aristocrat who lives in a world of her own.",0,0,Uma Abelha na Chuva,pt +8071,Tout Va Bien,1972-04-28,95.0,,,tt0069398,,"Godard examines the structure of movies, relationships and revolutions through the life of a couple in Paris.",0,0,Tout Va Bien,fr +27409,Night of the Devils,1972-04-29,91.0,,,tt0069017,Creatures of the Living Dead!,"Night of the Devils is an Italian vampire thriller with a remarkably good pedigree. The script is based on The Wurdalak, a short story by A.K. Tolstoy. The central character is the patriarch of a wealthy family who fears that he will show up one day in vampire form. Should this happen, he warns his family not to let him back in his house, no matter how much he begs.",0,0,La notte dei diavoli,it +137269,Cousin Jules,1972-05-01,91.0,,,tt0128142,,5 years in the life of a rural French farmer.,0,0,Le cousin Jules,en +29449,Images,1972-05-01,101.0,,,tt0068732,,"Schizophrenic housewife, engulfed by terrorizing apparitions, kills off each, unknowing if these demons are merely figments of her hallucinatory imagination or part of reality.",0,0,Images,en +29424,Hungry Wives,1972-05-01,104.0,,,tt0069239,Every Night is Halloween.,"A bored, unhappy suburban housewife gets mixed up in witchcraft and murder.",90000,0,Hungry Wives,en +11610,"Play It Again, Sam",1972-05-04,85.0,,,tt0069097,"Here's laughing at you, kid.","A mild mannered film critic is dumped by his wife and his ego is crushed. His hero persona is the tough guy played by Humphrey Bogart in many of his movies and the apparition of Bogart begins showing up to give him advice. With the encouragement of his two married friends, he actually tries dating again, with less than satisfactory results, until he relaxes.",0,0,"Play It Again, Sam",en +259645,"How Far, How Near",1972-05-04,95.0,,,tt0068757,,"A middle-aged man sets out on a symbolic journey through past, present, and future to learn why an old friend committed suicide, and learns much about his own life along the way.",0,0,"Jak daleko stąd, jak blisko",pl +34280,L'aventure c'est l'aventure,1972-05-04,120.0,,,tt0066798,,"When they realize the times are changing, five crooks decide to switch from bank robberies to personality abductions.",0,0,L'aventure c'est l'aventure,fr +27349,The Great Northfield Minnesota Raid,1972-05-12,91.0,,,tt0068661,The West the way it really was!,"The gangs of Jesse James and Cole Younger join forces to rob the First National Bank in Northfield, Minnesota, but things do not go as planned.",0,0,The Great Northfield Minnesota Raid,en +30934,Tower of Evil,1972-05-19,89.0,,,tt0068716,"One way in, no way out",A group of experienced archeologists are searching for an old and mystic Phoenician treasure when they are surprised by a series of mysterious murders...,0,0,Tower of Evil,en +199985,The Last Hours of a Virgin,1972-05-22,98.0,,,tt0169787,,,0,0,Le ultime ore di una vergine,it +267497,UFO... annientare S.H.A.D.O. stop. Uccidete Straker...,1972-05-23,,,,tt0216313,,,0,0,UFO... annientare S.H.A.D.O. stop. Uccidete Straker...,it +87514,Skyjacked,1972-05-24,101.0,,,tt0069278,On Board Flight 502 Is A Bomb. It Could Be Anywhere. And A Skyjacker. It Could Be Anyone.,"A crazed Vietnam vet bomber hijacks a Boeing 707 in this disaster film filled with the usual early '70s stereotypes, and demands to be taken to Russia.",0,0,Skyjacked,en +64725,The Dead Are Alive,1972-05-25,105.0,,,tt0068625,There's No Place To Hide When The Dead Are Alive!,A photographer on an archaeological expedition digging up Etruscan ruins in Italy begins to suspect that not all the Etruscans buried there are actually dead.,0,0,L'etrusco uccide ancora,it +573,Frenzy,1972-05-25,116.0,,,tt0068611,Just an ordinary necktie used with a deadly new twist.,"A serial murderer is strangling women with a necktie. The London police have a suspect, but he is the wrong man.",3500000,12600000,Frenzy,en +92307,The Final Comedown,1972-05-31,83.0,,,tt0068588,The man got down...the brothers were ready... You must see it! It's a mother!,Black revolutionaries take action in the white suburbs.,0,0,The Final Comedown,en +33357,The Valachi Papers,1972-06-01,125.0,,,tt0068341,,"When Joe Valachi (Charles Bronson) has a price put on his head by Don Vito Genovese (Lino Ventura), he must take desperate steps to protect himself while in prison. An unsuccessful attempt to slit his throat puts him over the edge to break the sacred code of silence.",0,0,The Valachi Papers,en +9462,The Way of the Dragon,1972-06-01,100.0,,,tt0068935,The Colosseum . . the battleground of Bruce Lee and Chuck Norris.,"Tang Lung arrives in Rome to help his cousins in the restaurant business. They are being pressured to sell their property to the syndicate, who will stop at nothing to get what they want. When Tang arrives he poses a new threat to the syndicate, and they are unable to defeat him. The syndicate boss hires the best Japanese and European martial artists to fight Tang, but he easily finishes them off.",130000,85000000,猛龍過江,cn +382995,George !,1972-06-03,,,,tt0066660,,,0,0,George !,en +114444,My Childhood,1972-06-05,48.0,,167716,tt0068983,,The first part of Bill Douglas' influential trilogy harks back to his impoverished upbringing in early-'40s Scotland. Cinema was his only escape - he paid for it with the money he made from returning empty jam jars - and this escape is reflected most closely at this time of his life as an eight-year-old living on the breadline with his half-brother and sick grandmother in a poor mining village.,0,0,My Childhood,en +75262,The Long Recess,1972-06-06,268.0,,,tt0068304,,A young teacher goes to a school for adults. He is younger than many of his students and some of them are starting to miss school.,0,0,Большая перемена,ru +88359,Cops and Robbers,1973-08-17,89.0,,,tt0069919,,"Two disillusioned New York policemen plan a $10 million robbery to fuel their low pensions, only to run into one debacle after another in the process.",0,0,Cops and Robbers,en +49106,The Dawns Here Are Quiet,1972-06-06,188.0,,,tt0068161,,"Based on the eponymous book by Boris Vasilyev, the film is set in Karelia (North-West of Russia, near Finland) in 1941 during WWII. In a beautiful and quiet wilderness far from the front-line there is an anti-aircraft artillery point, where corporal Vaskov is stationed with a group of many young women in training.",0,0,А зори здесь тихие,ru +493,Shaft's Big Score!,1972-06-08,104.0,,495,tt0069257,Last time he was nice. This time he's ice!,John Shaft is back as the lady-loved black detective cop on the search for the murderer of a client.,1978000,10000000,Shaft's Big Score!,en +22784,Boxcar Bertha,1972-06-14,92.0,,,tt0068309,Life made her an outcast. Love made her an outlaw.,"Based on ""Sister of the Road,"" the fictionalized autobiography of radical and transient Bertha Thompson as written by physician Dr. Ben L. Reitman, 'Boxcar' Bertha Thompson, a woman labor organizer in Arkansas during the violence-filled Depression of the early '30's meets up with rabble-rousing union man 'Big' Bill Shelly and they team up to fight the corrupt railroad establishment.",600000,0,Boxcar Bertha,en +103850,A Place Called Today,1972-06-15,103.0,,,tt0069096,Fear Is Power! You Want Your City -- Fight For It!,Racial tensions arise when a black lawyer runs for mayor of a racially divided town.,0,0,A Place Called Today,en +40983,Beware! The Blob,1972-06-21,91.0,,422193,tt0068271,The movie that J.R. shot! (2000 US DVD release),"A technician brings a frozen specimen of the original Blob back from the North Pole. When his wife accidentally defrosts the thing, it terrorizes the populace, including the local hippies, kittens, and bowlers.",0,0,Beware! The Blob,en +42476,Ben,1972-06-23,94.0,,375886,tt0068264,"Where 'WILLARD' ended... Ben begins. And this time, he's not alone!","A lonely boy becomes good friends with Ben, a rat. This rat is also the leader of a pack of vicious killer rats, killing lots of people.",0,0,Ben,en +27012,Bone,1972-07-01,95.0,,,tt0068306,Love Bone Before He Loves You,"A thief breaks into the home of a wealthy, happily married Beverly Hills couple. He soon finds out, though, that the couple is neither as wealthy as he thought they were and are not as happily married as they appeared.",0,0,Bone,en +22910,The Big Bird Cage,1972-07-01,96.0,,,tt0068273,Women so hot with desire they melt the chains that enslave them!,Grier and Haig are thieving mercenaries who engineer a prison break from the outside.,0,0,The Big Bird Cage,en +4986,Fuzz,1972-07-14,93.0,,,tt0068617,Here comes the fuzz,Police in Boston search for a mad bomber trying to extort money from the city.,0,0,Fuzz,en +68247,The Wrath of God,1972-07-14,111.0,,,tt0069515,They offered them a choice - THE FIRING SQUAD . . . or The Wrath of God,"Set in the 1920s, several foreigners held by a South American military group are offered possible freedom if they accept to topple a local crazed military leader.",0,0,The Wrath of God,en +14881,Joe Kidd,1972-07-14,88.0,,,tt0068768,If you're looking for trouble - - - he's JOE KIDD,"A band of Mexicans find their U. S. land claims denied and all the records destroyed in a courthouse fire. Their leader, Louis Chama, encourages them to use force to regain their land. A wealthy landowner wanting the same decides to hire a gang of killers with Joe Kidd to track Chama.",0,6330000,Joe Kidd,en +86049,Follow Me!,1972-07-18,95.0,,,tt0069131,,"A strait-laced British banker hires an eccentric private detective to follow his free-spirited American wife, whom he suspects is cheating on him",0,0,Follow Me!,en +16993,Fat City,1972-07-26,100.0,,,tt0068575,Life is what happens in between rounds.,"Two men, working as professional boxers, come to blows when their careers each begin to take opposite momentum.",0,0,Fat City,en +21968,Super Fly,1972-08-04,93.0,,,tt0069332,Never a dude like this one! He's got a plan to stick it to The Man!,Super Fly is a cocaine dealer who begins to realize that his life will soon end with either prison or his death. He decides to build an escape from the life by making his biggest deal yet.,0,0,Super Fly,en +40130,The Red Queen Kills Seven Times,1972-08-18,100.0,,,tt0068444,,"The film starts out incredibly in a beautiful Gothic castle in Germany. As little girls, Kitty Wildenbrück and her sister Evelyn have been fighting when their grandfather tells them the story behind an incredibly uncanny painting: Legend has it that a fiendish Red Lady is to return to the castle every hundred years and kill seven people. Fourteen years later, Kitty (Barbara Bouchet) has become a successful fashion photographer. Suddenly, people begin to get murdered...",0,0,La dama rossa uccide sette volte,it +73545,Ехали в трамвае Ильф и Петров,1972-08-19,,,,tt0167501,,,0,0,Ехали в трамвае Ильф и Петров,ru +21711,The Candidate,1972-08-23,110.0,,,tt0068334,Too Handsome. Too Young. Too Liberal. Doesn't have a chance. He's PERFECT!,"Bill McKay is a candidate for the U.S. Senate from California. He has no hope of winning, so he is willing to tweak the establishment.",0,0,The Candidate,en +143068,The Postmaster,1972-08-25,68.0,,,tt0069309,,"In the early 19th century a traveler returns to the remote outpost he’d visited years before, anxious to see the station master’s lovely daughter once again. There the brokenhearted old man tells him the story of the dashing fellow from Petersburg who whisked her away one winter morning.",0,0,Станционный смотритель,ru +156988,The Return of Halleluja,1972-08-30,83.0,,,tt0069493,,"Ramirez, the general of the Mexican revolution against Maximilian who has been appointed king of Mexico, organizes his forces to attack the king's General, Miranda. Ramirez realizes that the Aztec Indians would be allies of great value, so he offers to return to them an idol statue that has been stolen from them. Only Alleluja is capable of retrieving the idol from the thieves.",0,0,"Il West ti va stretto, amico... è arrivato Alleluja",it +96793,Innocent Bystanders,1972-09-01,111.0,,,tt0068742,In this business there are no Innocent Bystanders,Washed-up agent John Craig is given the task of proving his worth by tracking down a Russian scientist on the run. Cross and double-cross is the name of the game.,0,0,Innocent Bystanders,en +24777,Private Parts,1972-09-01,87.0,,,tt0069124,"Cheryl is a lovely girl... but to George, she's a living doll.",Teenage runaway Cheryl splits from Ohio and ends up in Los Angeles staying at an old rundown hotel full of weirdos. The weirdest of all is George and he has a crush on Cheryl.,0,0,Private Parts,en +7514,The Harder They Come,1972-09-01,103.0,,,tt0070155,With a Piece in His Hand He Takes on the Man!,"Wishing to become a successful Reggae singer, a young Jamaican man finds himself tied to corrupt record producers and drug pushers.",0,0,The Harder They Come,en +62363,Le viager,1972-09-05,0.0,,,tt0069460,,,0,0,Le viager,fr +9461,Enter the Dragon,1973-08-17,99.0,,,tt0070034,Their deadly mission: to crack the forbidden island of Han!,A martial artist agrees to spy on a reclusive crime lord using his invitation to a tournament there as cover.,850000,90000000,Enter the Dragon,en +15242,"Snoopy, Come Home",1972-09-08,81.0,,,tt0069289,Snoopy travels to see his sick former owner and then feels obliged to return to her permanently.,"When Snoopy receives a letter from his original owner Lila, he goes to visit her in the hospital while Charlie Brown and the gang are on the lookout for him. Suddenly, Snoopy feels that he must go live with Lila, but must say goodbye to all his friends. In his adventure to the hospital, he encounters numerous ""No Dogs Allowed"" signs, an annoying little girl who desires to keep him, and more!",0,0,"Snoopy, Come Home",en +11943,Jeremiah Johnson,1972-09-10,108.0,,,tt0068762,"His Mountain. His Peace. His Great Hunts. His Young Bride. With All That, It Should Have Been Different.",A mountain man who wishes to live the life of a hermit becomes the unwilling object of a long vendetta by Indians when he proves to be the match of their warriors in one-to-one combat on the early frontier.,0,0,Jeremiah Johnson,en +91571,And Hope to Die,1972-09-15,122.0,,,tt0068420,Wish Robert Ryan and Jean-Louis Trintignant luck!,"A crook on the run hooks up with a criminal gang to commit a kidnapping. However, things don't go quite as planned.",0,0,La course du lièvre à travers les champs,fr +42487,Necromancy,1972-09-22,83.0,,,tt0068994,,"Orson Welles plays the head of a witches' coven in the town of Lilith, where he needs the powers of Pamela Franklin to raise his son from the dead.",0,0,Necromancy,en +49354,Moon of the Wolf,1972-09-26,75.0,,,tt0068967,Deadly secrets emerge from the shadows when the full moon rises!,"After several locals are viciously murdered, a Louisiana sheriff starts to suspect he may be dealing with a werewolf.",0,0,Moon of the Wolf,en +74430,Thumb Tripping,1972-10-01,94.0,,,tt0069377,The freeway isn't just a road... it's their way of life!,Gary and Shay are two happy-go-lucky flower children who hitchhike in the beautiful Big Sur-Monterey area of California.,0,0,Thumb Tripping,en +85126,Hickey & Boggs,1972-10-04,111.0,,,tt0068698,They're Not Cool Slick Heroes.,Two veteran private eyes trigger a criminal reign of terror with their search for a missing girl.,0,0,Hickey & Boggs,en +38761,Night of the Lepus,1972-10-04,88.0,,,tt0069005,How many eyes does horror have?,Giant mutant rabbits terrorize the southwest!!,0,0,Night of the Lepus,en +19403,The Mechanic,1972-10-06,100.0,,,tt0068931,He has 100 ways to kill... and they all work!,"Arthur Bishop is a veteran hit man who, owing to his penchant for making his targets' deaths seem like accidents, thinks himself an artist. It's made him very rich, but as he hits middle age, he's so depressed and lonely that he takes on one of his victim's sons, Steve McKenna, as his apprentice. Arthur puts him through a rigorous training period and brings him on several hits. As Steven improves, Arthur worries that he'll discover who killed his father.",0,0,The Mechanic,en +98048,Dionysus in '69,1972-10-30,85.0,,,tt0065641,"A Celebration of Feeling, Loving, Wanting, Killing, Hearing, Tasting, Touching, Living","Filmed stageplay based on the ancient greek play The Bacchae written by Euripides. This play is performed by members of The Performance Group, an NYC experimental theater group who has made their own personal adaptation of this ancient text. Filmed by Brian De Palma.",0,0,Dionysus in '69,en +28131,Pulp,1972-11-01,95.0,,,tt0069134,Write it. Live it. But try not to be it.,"A seedy writer of sleazy pulp novels is recruited by a quirky, reclusive ex-actor to help him write his biography at his house in Malta.",0,0,Pulp,en +47448,Remonstrance,1972-11-09,97.0,,,tt0214965,,"A meta-film about a film and the common man in our own political reality. A reality that is just scenes of a film without any cinematic development, but which might be plain reality tomorrow.",0,0,Motforestilling,no +280004,The Great Waltz,1972-11-11,135.0,,,tt0068662,"The joyful, songful, wonderful story of the life of Johann Strauss!","A musical based on the life and music of Johnann Strauss, Jr.",0,0,The Great Waltz,en +169364,Swayamvaram,1972-11-23,131.0,,,tt0069334,,"Vishwam and Sita, who resist the opposition from their families, elope and marry. The unemployed couple begin a happier married life, but soon land in a sea of perils without a source of income.",39000,0,സ്വയംവരം,ml +12089,The Tall Blond Man with One Black Shoe,1972-12-06,90.0,,105764,tt0068655,,Hapless orchestra player becomes an unwitting pawn of rival factions within the French secret service after he is chosen as a decoy by being identified as a super secret agent.,0,0,Le grand blond avec une chaussure noire,fr +81522,What?,1972-12-07,114.0,,,tt0070913,The kinkiest caper of the year!,A young American woman traveling through Italy finds herself in a strange Mediterranean villa where nothing seems right.,0,0,Che?,it +5183,Travels with My Aunt,1972-12-12,109.0,,,tt0069404,,"A stodgy young man gets caught up in his free-living aunt""s shady schemes.",0,0,Travels with My Aunt,en +82465,Child's Play,1972-12-12,100.0,,,tt0068369,You only lose once.,"At an exclusive boys' school, a new gym teacher is drawn into a feud between two older instructors, and he discovers that everything at the school is not quite as staid, tranquil and harmless as it seems.",0,0,Child's Play,en +52943,The Phone Box,1972-12-13,35.0,,,tt0065513,,A man gets trapped inside a telephone box and nobody is able to free him.,0,0,La cabina,es +28170,The Gore Gore Girls,1972-12-15,81.0,,,tt0068649,In screaming color,A ditsy reporter enlists the help of a sleazy private eye to solve a series of gory killings of female strippers at a Chicago nightclub.,63500,0,The Gore Gore Girls,en +21036,Panda! Go Panda!,1972-12-17,35.0,,211075,tt0069058,,"The plot follows Mimiko, a bright little girl left alone when her grandmother leaves on a trip. Making a few stops at some local stores, Mimiko comes home to her house in a bamboo grove and finds a baby panda named Panny sleeping on the back doorstep. She quickly makes friends with the little panda, and invites him in for a drink. His father, PapaPanda, soon comes to visit, and they decide to become a family after PapaPanda offers to.",0,0,Panda kopanda,ja +100088,Black Gunn,1972-12-20,97.0,,,tt0068281,For every drop of black blood spilled...A white man pays.,"A successful and popular nightclub owner who believes financial independence is the path to equality and success, must act as a go-between for militant-minded brother and the white gang syndicate his brother has attacked and robbed. Their involvements lead to a breathless race course chase, the destruction of a dopepusher and a violent waterfront climax.",0,0,Black Gunn,en +48153,The Outside Man,1972-12-21,104.0,,,tt0070083,,"A French hit man is hired by a crime family to end the life of a rival mobster, but things fall apart when the boss who hired him is killed.",0,0,Un homme est mort,en +10238,Cries and Whispers,1972-12-21,91.0,,,tt0069467,A haunting and shattering film experience.,"When a woman dying of cancer in turn-of-the century Sweden is visited by her two sisters, long repressed feelings between the siblings rise to the surface.",0,0,Viskningar och rop,sv +22023,The Border,1982-01-29,108.0,,,tt0083678,,A corrupted border agent decides to clean up his act when an impoverished woman's baby is put up for sale on the black market.,22000000,0,The Border,en +1721,All the Way Boys,1972-12-22,106.0,,,tt0069095,,"The ""Trinity"" crew makes another modern era film. Plata and Salud are pilots ditching aircraft for insurance money. They wind up crashing for real in the jungles of South America. The plot involves ""Mr. Big"", who is buying the diamonds from the miners for much too little, and has thugs who keep the price down. Of course, Plata and Salud side with the miners",0,0,...Più forte ragazzi!,it +3478,Ludwig,1972-12-29,235.0,,,tt0068883,,"A history of Ludwig, king of Bavaria, from his crowning in 1864 until his death in 1886.",0,0,Ludwig,en +42473,Tom Sawyer,1973-01-01,103.0,,,tt0070814,,"Tom Sawyer and his pal Huckleberry Finn have great adventures on the Mississippi River, pretending to be pirates, attending their own funeral, and witnessing a murder.",0,0,Tom Sawyer,en +50196,Rugantino,1973-01-01,110.0,,,tt0070614,,"A beautiful girl Rosina lives In Rome. Her husband is strong as a bull and jealous as Shakespeare's Othello. Once the husband of Rosina kills a wealthy aristocrat, who sang the serenade to his wife, and now he is hiding from justice.",0,0,Rugantino,ru +105503,The No Mercy Man,1973-01-01,90.0,,,tt0180872,You Damn Well Won't Forget Him!,A decorated Vietnam Vet returns to his father's ranch in Arizona just as criminally minded carnies begin to cause trouble.,0,0,The No Mercy Man,en +360627,Columbo - Ransom for a Dead Man,1973-01-01,0.0,,,tt0066933,,"A brilliant tort attorney gets rid of her boring husband by faking his kidnapping and keeping the ransom. The FBI may be fooled, but not Columbo.",0,0,Columbo - Ransom for a Dead Man,en +58447,Three Giant Men,1973-01-01,81.0,,,tt0181947,,"Istanbul is being terrorized by a crime wave, and the police call in American superhero Captain America and Mexican wrestler Santo to put a stop to it.",0,0,3 dev adam,tr +59803,Adventures of Mowgli,1973-01-01,90.0,,195071,tt0217590,,Adventures of Mowgli is an animated feature-length story originally released as five animated shorts of about 20 minutes each between 1967 and 1971 in the Soviet Union.,0,0,Маугли,ru +29338,No One Heard the Scream,1973-01-01,90.0,,,tt0070432,,A woman sees a man throw a person into an elevator shaft and helps him to get rid of the body. During this adventure the man falls in love with the witness to his crime.,0,0,Nadie oyó gritar,en +31605,The Last American Hero,1973-01-01,95.0,,,tt0070287,,"A backwoods bootlegger decides to put the driving skills he developed evading the law to good use. He becomes a race car driver, and eventually, one of the fastest drivers in history.",0,0,The Last American Hero,en +64847,Belladonna of Sadness,1973-01-01,89.0,,,tt0071203,,A peasant woman is banished from her village and makes a deal with the devil to gain magical powers.,0,0,哀しみのベラドンナ,ja +85023,A Name for Evil,1973-01-01,74.0,,,tt0070435,The dream house that becomes a nightmare.,"Dissatisfied with the family architectural business, a man and his wife pack up and move out to his great-grandfather's old house in the country. While trying to patch it up, the house starts to make it clear to him that it doesn't want him there, but the local church (with some off-kilter practices of their own) seems to take a shine to him.",0,0,A Name for Evil,en +32080,The Seven-Ups,1973-01-01,103.0,,,tt0070672,"Mess with the Seven-Ups, and they WILL mess you worse.","A tough detective who is part of an elite New York City unit is trying to find out who killed his partner, but uncovers a plot to kidnap mobsters for money.",0,0,The Seven-Ups,en +91627,Love Me Deadly,1973-01-05,95.0,,,tt0136376,A Hunger from Beyond the Grave!,A coven of devil-worshipping necrophiliacs moves to Los Angeles and sets up their base of operations out of a funeral home.,42500,0,Love Me Deadly,en +107891,Ambush,1973-01-05,97.0,,,tt0069702,,An officer of the law and his father are framed for a robbery they did not commit. With only his father's sword at the scene and the man nowhere to be found the officer flees in order to discover who really stole the jewels so that he may clear the family name.,0,0,Mai Fu,zh +154671,Vem älskar Yngve Frej?,1973-01-05,104.0,,,tt0157153,,,0,0,Vem älskar Yngve Frej?,sv +34326,"The Yakuza Papers, Vol. 1: Battles Without Honor and Humanity",1973-01-13,99.0,,191023,tt0070246,,"In the teeming black markets of postwar Japan, Shozo Hirono and his buddies find themselves in a new war between factious and ambitious yakuza...",0,0,仁義なき戦い,ja +32021,The Night Strangler,1973-01-16,74.0,,,tt0069002,,"After being run out of Las Vegas, Kolchak heads for Seattle and another reporting job with the local paper. It's not long before he is on the trail of another string of bizarre murders. It seems that every 21 years, for the past century, a killer kills a certain number of people, drains them of their blood and then disappears into the night. Kolchak is on his trail, but can he stop him?",0,0,The Night Strangler,en +171308,Baffled!,1973-01-29,90.0,,,tt0068248,,Race car driver suffers from visions where he sees people killed. An ESP expert believes that his visions will really happen.,0,0,Baffled!,en +74057,Steelyard Blues,1973-01-31,93.0,,,tt0070731,If you can't beat 'em ... drive 'em crazy!,"A group of misfits decide to leave for a place that they can all be free. There mode of transportation is a PBY flying boat. The only problem is that the PBY needs a lot of work and they will need jobs to pay for the parts. When they find that they have only 10 days before the PBY is sold for scrap, they decide on borrowing the parts for their trip",0,0,Steelyard Blues,en +58402,The Boss,1973-02-01,100.0,,,tt0069818,,"A bomb attack in a cinema in Palermo kills all the fellows of Attardi's clan a part from Cocchi. He immediately understands that the author of the bomb attack is Daniello from Don Corrasco's clan. Cocchi is determined to revenge. His actions, including the Corrasco's daughter kidnap, in a Palermo in which also the police is corrupted, will soon destroy the old equilibrium giving the way to an escalation of violence that won't save anyone. If Cocchi will survive to the mafia war he will be the new boss for sure.",0,0,Il boss,it +22029,Black Caesar,1973-02-07,94.0,,,tt0069792,Hail Caesar Godfather of Harlem!,"Tommy Gibbs is a tough kid, raised in the ghetto, who aspires to be a kingpin criminal. As a young boy, his leg is broken by a bad cop on the take, during a payoff gone bad. Nursing his vengeance, he rises to power in Harlem, New York. Angry at the racist society around him, both criminal and straight, he sees the acquisition of power as the solution to his rage.",0,0,Black Caesar,en +104644,A Reflection of Fear,1973-02-12,89.0,,,tt0070599,A cry in the night... A gasp in the dark...,"A young girl lives with her mother and grandmother. One day her estranged father returns home with a female companion he introduces as his fiance. Soon the girl finds herself in the midst of strange goings-on, which evolve into a web of crime and murder.",0,0,A Reflection of Fear,en +3701,Gang War in Milan,1973-02-21,90.0,,,tt0134821,,A Milan pimp faces off against a ruthless and greedy French gangster whom wants to unite organized crime in Italy.,0,0,Milano Rovente,it +25473,Walking Tall,1973-02-22,125.0,,157504,tt0070895,Take your best shot... 'cause it'll probably be your last.,"Buford Pusser's a wrestler, whose wife wants him to settle down, so they go to his home town in Tennessee, where he plans to get into business with his father. But he is shocked to discover all sorts of graft and corruption going on. And when he is a victim of it and decides to strike back by running against the corrupt sheriff. And he wins and wages his own little war against them",0,0,Walking Tall,en +224813,One Man's War,1973-02-27,108.0,,,tt0070941,,"Man leaves his factory job and sells everything to buy an earth mover and start his own business, travelling from place to place with his wife and child. There is not enough work and he is eventually forced to emigrate after many hardships.",0,0,Yhden Miehen Sota,en +20842,Children Shouldn't Play with Dead Things,1973-02-28,87.0,,,tt0068370,"You're Invited To Orville's ""Coming-Out"" Party...It'll Be A Scream...YOURS!!!","Six actors go to graveyard on a remote island to act out a necromantic ritual. The ritual works, and soon the dead are walking about and chowing down on human flesh.",70000,0,Children Shouldn't Play with Dead Things,en +54396,The Cheerleaders,1973-03-01,81.0,,308153,tt0068364,Come and huddle with the cheerleaders.,A group of cheerleaders from the local high school decide to show their school spirit for their football team by sleeping with the opponents the night before the game so that they can be so worn out the opposition won't be able to play.,0,0,The Cheerleaders,en +7014,Themroc,1973-03-01,104.0,,,tt0069369,,"Made without proper language, just gibberish and grunts, ""Themroc"" is an absurdist comedy about a man who rejects every facet of normal bourgeois life and turns his apartment into a virtual cave.",0,0,Themroc,fr +49907,We Want the Colonels,1973-03-05,102.0,,,tt0070887,,,0,0,Vogliamo i colonnelli,en +145481,Don Quijote cabalga de nuevo,1973-03-09,132.0,,,tt0068496,,"A new vision of the Knight of the sad figure, which lives obsessed by the chivalry and its codes of honor. Accompanied by his unusual squire Sancho Panza, Don Quixote recalls some of the adventures they've shared.",0,0,Don Quijote cabalga de nuevo,es +43158,Godspell: A Musical Based on the Gospel According to St. Matthew,1973-03-21,103.0,,,tt0070121,The Gospel according to today.,"A modern day musical telling of the ministry of Jesus Christ set in New York. The Apostles, portrayed as an acting troupe re-enact the parables and teachings of Jesus.",0,0,Godspell: A Musical Based on the Gospel According to St. Matthew,en +22307,Sisters,1973-03-27,93.0,,,tt0070698,They were joined at birth by the devil and the evil never left them!,"A journalist witnesses a brutal murder in a neighboring apartment, but the police do not believe that the crime took place. With the help of a private detective, she seeks out the truth.",500000,0,Sisters,en +44741,Malicious,1973-03-29,93.0,,,tt0070358,,A beautiful housekeeper becomes a romantic attraction to a widower and his three sons.,0,0,Malizia,it +210615,The Son,1973-03-30,100.0,,,tt0068587,,"Ange leaves New York to fly to his native Corsica. His mother is dying and Ange, who was not present when his father died, wishes to be present at her death. In Corsica Ange finds his brother Baptiste who married Maria, the woman he loved. He finds out that his father was killed, but nobody wants to tell him the name of the killer. And finally he finds two killers expecting him.",0,0,Le fils,it +58411,Cannibal Girls,1973-04-01,84.0,,,tt0069841,These Girls Eat Men,"A young couple spend the night in a restaurant, only to find out that it is haunted by three dead women who hunger for human flesh.",0,0,Cannibal Girls,en +84473,The Iron Rose,1973-04-12,80.0,,,tt0126004,A strange love story.,"A young couple out for a walk decide to take a stroll through a large cemetery. As darkness begins to fall they realize they can't find their way out, and soon their fears begin to overtake them.",0,0,La rose de fer,fr +83831,Charley-One-Eye,1973-04-18,96.0,,,tt0068358,Somebody told the black man he wasn't a slave anymore. Somebody told the red man this land was his. Somebody lied. Somebody is going to pay.,"A black, Union Army deserter and his crippled American Indian hostage form a strained partnership in the interests of surviving the advancing threats of a racist bounty hunter and neighboring bandits.",0,0,Charley-One-Eye,en +47536,Hitler: The Last Ten Days,1973-04-19,0.0,,,tt0070184,,"Hitler: The Last Ten Days takes us into the depths of der Furher’s Berlin bunker during his final days. Based on the book by Gerhard Boldt, it provides a bleak look at the goings-on within, and without.",0,0,Hitler: The Last Ten Days,en +12101,Soylent Green,1973-04-19,97.0,,,tt0070723,What is the secret of Soylent Green?,"In an overpopulated futuristic Earth, a New York police detective finds himself marked for murder by government agents when he gets too close to a bizarre state secret involving the origins of a revolutionary and needed new foodstuff.",0,3600000,Soylent Green,en +38034,The Heroine,1973-04-26,84.0,,,tt0124836,,"Incriminating evidence against a gang is left in a cab when a gang member dies in it. The gang chases the innocent cab driver, who receives help from the dead gangster's sister - a tough police woman.",0,0,女警察,zh +41078,Johnny Corncob,1973-05-01,74.0,,,tt0121431,,,0,0,János Vitéz,hu +31596,Lemora: A Child's Tale of the Supernatural,1973-05-01,85.0,,,tt0070300,,"A notorious bank robber kills his wife and flees the police, only to be captured by a mysterious group of figures in an abandoned town. His beautiful daughter, Lila Lee, receives a letter stating that her father is near death and that he needs to see her. Sneaking away at night from her minister guardian, Lila embarks on a terrifying journey...",0,0,Lemora: A Child's Tale of the Supernatural,en +146970,In the West There Was a Man Named Invincible,1973-05-03,87.0,,,tt0071766,,,0,0,Lo chiamavano Tresette... giocava sempre col morto,it +267035,Oh Jonathan – oh Jonathan!,1973-05-09,,,,tt0070469,,,0,0,Oh Jonathan – oh Jonathan!,de +252059,Through and Through,1973-05-11,70.0,,,tt0071889,,"Based on a pre-war murder case of the Malisz couple. They end up committing a petty robbery and a sordid murder. He is an illustrator who is not used by a climbing architect. His folks don't like his wife and keeping both of them around as they float from one petty job to another. They finally try to rob a mailman of a bogus money order they have cooked up and end up killing an old, invalid couple with whom they have roomed.",0,0,Na wylot,pl +103236,Zanjeer,1973-05-11,146.0,,,tt0070947,,"The world erodes around Vijay, an honest police officer. He is jailed for 6 months on false charges, trapped by gang leader Teja. When Vijay is released from jail, he plans to take revenge.",0,0,ज़ंजीर,hi +58080,The Violent Professionals,1973-08-22,104.0,,,tt0070393,,"With or without help from law enforcement officers, a lone individual decides to crack down on the syndicate.",0,0,Milano trema: la polizia vuole giustizia,it +58995,Night Crossing,1982-02-05,107.0,,,tt0082810,,Two men want to escape from East Germany (under Communist rule) but they will only go if they can take their families with them. Based on a true story.,0,0,Night Crossing,en +42457,A Doll's House,1973-05-22,105.0,,,tt0069987,He is the master. He's called a husband. She is the play thing. She's called a wife.,"Nora Helmer has years earlier committed a forgery in order to save the life of her authoritarian husband Torvald. Now she is being blackmailed lives in fear of her husband's finding out and of the shame such a revelation would bring to his career. But when the truth comes out, Nora is shocked to learn where she really stands in her husband's esteem.",0,0,A Doll's House,en +67696,A Warm December,1973-05-23,99.0,,,tt0070898,,"Widower Dr. Matt Younger and his daughter go to London for a month of dirt-bike racing. While there, Dr. Younger is surprised by finding himself attracted to Catherine, a charming but elusive woman who seems to have some mysterious men following her. A romance slowly develops between the doctor and Catherine, but there are complications to their happiness.",0,0,A Warm December,en +11577,Pat Garrett & Billy the Kid,1973-05-23,106.0,,,tt0070518,Best of enemies. Deadliest of friends.,An aging Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons--his sole purpose being to bring down his old friend Billy the Kid.,4638783,11000000,Pat Garrett & Billy the Kid,en +94248,"Sweet Jesus, Preacherman",1973-05-25,90.0,,,tt0167431,"Amen, Brother!",A Black hit man poses as a Baptist preacher in a ghetto church. He decides to take over the local rackets.,0,0,"Sweet Jesus, Preacherman",en +107287,Anna and the Wolves,1973-06-04,102.0,,,tt0068207,,The young but traveled Ana arrives in a manor in the countryside of Spain to work as nanny of three girls and finds a dysfunctional family.,0,0,Ana y los lobos,es +73147,Peeping Toms,1973-06-06,90.0,,,tt0068941,,Gote and Eli are two aging friends who don't want to age. Gote is a lifeguard who's fighting peepers on the Tel-Aviv beach. Eli is a guitar player who dreams of building a night club in altman's restaurant.,0,0,Metzitzim,en +177714,Mágica Aventura,1973-06-09,,,,tt0205281,,,0,0,Mágica Aventura,es +26331,The Last of Sheila,1973-06-14,120.0,,,tt0070291,Any number can play. Any number can die.,"A year after Sheila is killed in a hit-and-run, her multimillionaire husband invites a group of friends to spend a week on his yacht playing a scavenger hunt-style mystery game. The game turns out to be all too real and all too deadly.",0,0,The Last of Sheila,en +74836,Idaho Transfer,1973-06-15,86.0,,,tt0071647,Can the future be saved by the ideals of the past?,"A crew of young researchers escape into the future to avoid the shutdown of their project. They find that some type of 'eco-crisis' disaster has de-populated the area around their lab (in rural Idaho) and, by implication, the nation or maybe the world. Stranded in the barren future, in their travels they encounter an abandoned freight train possibly full of corpses (maybe, it isn't very clear). One of them travels further into the future and meets a family in a futuristic automobile, implying that that humankind has recovered from the disaster (or have they?)",0,0,Idaho Transfer,en +85648,Showdown,1973-06-20,99.0,,,tt0070687,,Two men who have been friends since childhood find themselves on opposite ends of the law.,0,0,Showdown,en +45827,One Little Indian,1973-06-20,90.0,,,tt0070481,"A boy turned Indian, a trooper turned deserter and ROSIE, a camel turned IMPOSSIBLE!",An Army deserter (James Garner) flees by camel across the desert with a white boy (Clay O'Brien) raised by Indians.,0,0,One Little Indian,en +42472,The Man Who Loved Cat Dancing,1973-06-28,114.0,,,tt0070363,,Western based on the novel by Marilyn Durham. A defiant wife who leaves her husband to take up riding with outlaws.,0,0,The Man Who Loved Cat Dancing,en +42456,40 Carats,1973-06-28,110.0,,,tt0070068,She's a divorcee. She's forty. She's engaged... to a younger man.,"A forty year old woman who was vacationing in Greece meets a twenty-two year old, who was also on vacation. They spend the night together and she leaves him while he was sleeping. She then returns to New York and she is stunned to learn that her daughter's boyfriend is him. He then pursues her, and she is uncertain of what to do.",0,0,40 Carats,en +54388,The Daring Dobermans,1973-07-01,88.0,,,tt0069944,,"In this sequel to The Doberman Gang, Three men track down a pack of dobermans and along with a young Native American boy, train the dobermans to rob the campaign funds of a politician.",0,0,The Daring Dobermans,en +147106,Oklahoma Crude,1973-07-03,108.0,,,tt0070472,"An epic story of wooden derricks, iron men...and a defiant woman.","In 1913, in Oklahoma, oil derrick owner Lena Doyle, aided by her father and a hobo, is stubbornly drilling for oil despite the pressure from major oil companies to sell her land.",0,0,Oklahoma Crude,en +81541,Women in Cell Block 7,1973-07-05,100.0,,,tt0068483,What makes a nice girl die in a place like this?,A woman goes behind bars in order to save her father's life.,0,0,Diario segreto da un carcere femminile,it +30708,Cahill U.S. Marshal,1973-07-11,103.0,,,tt0069834,A lawman and his sons face the ultimate test of courage.,"J.D. Cahill is the toughest U.S. Marshal they've got, just the sound of his name makes bad guys stop in their tracks, so when his two young boy's want to get his attention they decide to rob a bank. They end up getting more than they bargained for.",0,0,Cahill U.S. Marshal,en +28110,Dillinger,1973-07-20,107.0,,,tt0069976,The Best Damn Bank Robber in the World!,"The life of American public enemy number one who was shot by the police in 1934. After a shoot-out kills five FBI agents in Kansas City the Bureau target John Dillinger as one of the men to hunt down. Waiting for him to break Federal law they sort out several other mobsters, while Dillinger's bank robbing exploits make him something of a folk hero. Escaping from jail he finds Pretty Boy Floyd and Baby Face Nelson have joined the gang and pretty soon he is Public Enemy Number One. Now the G-men really are after him.",1000000,2000000,Dillinger,en +317389,Simbad e il califfo di Bagdad,1973-07-22,,,,tt0070695,,,0,0,Simbad e il califfo di Bagdad,es +92389,Badge 373,1973-07-25,116.0,,,tt0069761,"A gun in his sock, a tire iron in his belt, and no badge. The story of Eddie. The best ex-cop in the business.","When his partner is killed, tough Irish detective Eddie Ryan (Robert Duvall) vows to avenge the death, whatever the cost. As he begins unraveling clues, his behavior becomes so outrageous that he's obliged to turn in his badge, but the experience only emboldens him. Ryan eventually learns that his partner was caught up in a Puerto Rican gun-running scheme masterminded by a crook named Sweet Willie (Henry Darrow), who wants to foment revolutionary war.",0,0,Badge 373,en +85837,Detroit 9000,1973-08-01,106.0,,,tt0069966,It's the murder capital of the world. And the biggest black rip-off of the decade.,"After a fundraiser for a black politician is robbed, Detroit police put two detectives, one white and one black, on the case, who try to work together under boiling political pressure.",0,0,Detroit 9000,en +838,American Graffiti,1973-08-01,110.0,,124950,tt0069704,Where were you in '62?,A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.,777000,140000000,American Graffiti,en +73835,Il Paramedico,1982-02-07,0.0,,,tt0084471,,,0,0,Il Paramedico,it +42460,The Pedestrian,1973-09-05,98.0,,,tt0070086,,"This film is about a man who committed a terrible crime during war and is now old and somehow sorry for what he did. The story about the preparations for his trial are described from different points of view, also from his.",0,0,Der Fußgänger,de +261005,Your Honor,1973-09-10,92.0,,,tt0282154,,A lonely school teacher is kidnapped by the mob to carry out an important hit.,0,0,Servo suo,en +73984,Chino,1973-09-14,98.0,,,tt0069833,They took his land... his horses... his woman... but... they couldn't take Chino!,"Chino Valdez is a loner horse breeder living in the old west. Partly a loner by choice, and partly because, being a 'half-breed', he finds himself unwelcome almost everywhere he goes. One day, a young runaway named Jimmy shows up at his door looking for work and a roof over his head. Reluctantly, Chino agrees to take him in and teach him the art of raising, breaking and breeding horses, until the pair finally begin to accept each other.",0,0,"Valdez, il mezzosangue",en +86236,Dying Room Only,1973-09-18,74.0,,,tt0070012,She's Alone. No One Believes Her. And There's No Way Out.,A married couple are traveling on a deserted desert road at night. They stop at a diner and the husband goes to the men's room. He never returns and the wife begins to suspect serious foul play.,0,0,Dying Room Only,en +62330,The Spook Who Sat by the Door,1973-09-21,102.0,,,tt0070726,,"A black man plays Uncle Tom in order to gain access to CIA training, then uses that knowledge to plot a new American Revolution.",0,0,The Spook Who Sat by the Door,en +72460,Harry in Your Pocket,1973-09-23,103.0,,,tt0070158,,"A master thief (James Coburn) and his drug-addicted partner teach two aspiring crooks (Michael Sarrazin, Trish Van Devere) how to steal wallets.",0,0,Harry in Your Pocket,en +154575,Illumination,1973-09-29,87.0,,,tt0070217,,"A man looks for the meaning of life through science, work, love, marriage, family, death, and spirituality.",0,0,Iluminacja,pl +59230,Lucky Luciano,1973-10-10,105.0,,,tt0071782,"The real story behind Lucky Luciano, the high priest of crime","Lucky Luciano is one of the bosses of the Mafia. He orders the slaughter of 40 other responsibles, therefore becoming the only boss. But a few years later he is put into jail. In 1946, he got a pardon and is sent back to Sicilia. There, he begins becoming one of the chief of the Mafia. The US Army seems to refrain from interfering.",0,0,Lucky Luciano,it +92311,"Summer Wishes, Winter Dreams",1973-10-21,93.0,,,tt0070748,Beautiful. Frigid. She is Called a Snow Queen.,"Rita, a middle aged New York City homemaker, finds herself in an emotional crisis which forces her to re-examine her life, as well as her relationships with her mother, her eye doctor husband, her alienated daughter and estranged son.",0,0,"Summer Wishes, Winter Dreams",en +56150,Jonathan Livingston Seagull,1973-10-23,120.0,,,tt0070248,,"Jonathan is sick and tired of the boring life in his sea-gull clan. He rather experiments with new, always more daring flying techniques. Since he doesn't fit in, the elders expel him from the clan. So he sets out to discover the world beyond the horizon in quest for wisdom.",0,0,Jonathan Livingston Seagull,en +11048,The Knock Out Cop,1973-10-25,110.0,,10964,tt0070534,,This cop doesn't carry a gun - his fist is loaded!,0,0,Piedone lo sbirro,it +11886,Robin Hood,1973-11-08,83.0,,,tt0070608,Meet Robin Hood and his MERRY MENagerie!,"With King Richard off to the Crusades, Prince John and his slithering minion, Sir Hiss, set about taxing Nottingham's citizens with support from the corrupt sheriff - and staunch opposition by the wily Robin Hood and his band of merry men.",15000000,32056467,Robin Hood,en +40387,Night Watch,1973-11-08,99.0,,,tt0070444,Once her nightmare begins...the terror never ends!,"Ellen Wheeler, a rich widow, is recovering from a nervous breakdown. One day, while staring out the window, she witnesses a murder. But does anybody believe her?",0,0,Night Watch,en +257831,Dream City,1973-11-15,124.0,,,tt0070829,Bizarre Like Fellini. Surreal Like Bunuel. Explosive Like Cocteau.,"A married couple of artists move to a utopian town known for its absolute freedom, but behind the surface perversion and violence are spreading.",0,0,Traumstadt,en +130948,7 Hours of Violence,1973-11-15,93.0,,,tt0070671,A former hitman is blackmailed into doing one more job.,A former hitman is blackmailed into doing one more job. But the hit doesn't go as planned and he winds up with the police and a gang of Chinese hitmen hunting him down. A beautiful young woman helps to hide him until he can figure out a way to elude his pursuers.,0,0,Sette ore di violenza per una soluzione imprevista,en +195385,The Magnificent Dare Devil,1973-11-20,104.0,,,tt0070836,,A race-car driver must elude the police and two rival criminal organizations as he tries to locate a suitcase full of heroin and absolve himself of murder.,0,0,Troppo rischio per un uomo solo,it +85633,Hot Pepper,1973-11-22,54.0,http://www.youtube.com/v/B2I-xriAqMc&hl=en&fs=1&rel=0&autoplay=1,,tt0070193,,"Thrilling musical portrait of Zydeco King Clifton Chenier, who combines the pulsating rhythms of Cajun dance music and black R&B with African overtones, belting out his irresistible music in the sweaty juke joints of South Louisiana.",0,0,Hot Pepper,en +104954,"Anna: the Pleasure, the Torment",1973-11-27,100.0,,,tt0071147,,"A beautiful but poor young girl finds all the money and material goods she never had when she becomes the girlfriend of a crime boss, but soon learns that there is a price to be paid for that kind of life.",0,0,"Anna, quel particolare piacere",it +103432,Outrage,1973-11-28,74.0,,,tt0070497,,One man decides to wage war against a gang of teenage punks besieging an affluent California community. Based on a true incident.,0,0,Outrage,en +16307,The Wicker Man,1973-12-01,99.0,,,tt0070917,Flesh to touch... Flesh to burn! Don't keep the Wicker Man waiting!,"Police sergeant Neil Howie is called to an island village in search of a missing girl whom the locals claim never existed. Stranger still, however, are the rituals that take place there.",0,0,The Wicker Man,en +110115,My Ain Folk,1973-12-01,55.0,,167716,tt0070424,,"When Jamie's maternal grandmother dies, he and his brother Tommy are separated - Tommy is taken off to a welfare home and Jamie goes to live with his other grandmother and uncle. His life is far from happy, filled with silence, rejection and bouts of violence.",0,0,My Ain Folk,en +2487,Lady Snowblood,1973-12-01,97.0,,149191,tt0158714,,Yuki's family is nearly wiped out before she is born due to the machinations of a band of criminals. These criminals kidnap and brutalize her mother but leave her alive. Later her mother ends up in prison with only revenge to keep her alive. She creates an instrument for this revenge by purposefully getting pregnant. Yuki never knows the love of a family but only killing and revenge.,0,0,修羅雪姫,ja +14886,The Last Detail,1973-12-11,103.0,,,tt0070290,No *#@!!* Navy's going to give some poor **!!@* kid eight years in the #@!* brig without me taking him out for the time of his *#@!!* life.,Two Navy men are ordered to bring a young offender to prison but decide to show him one last good time along the way.,0,0,The Last Detail,en +9474,My Name Is Nobody,1973-12-13,117.0,,409026,tt0070215,"Nobody, but ""Nobody,"" knows the trouble he's in!","Jack Beauregard, one of the greatest gunman of the Old West, only wants to retire in peace and move to Europe. But a young gunfighter, known as ""Nobody"", who idolizes Beauregard, wants him to go out in glory. So he arranges for Jack to face the 150-man gang known as The Wild Bunch and earn his place in history.",0,0,Il mio nome è Nessuno,it +5924,Papillon,1973-12-13,151.0,,,tt0070511,The greatest adventure of escape!,"A man befriends a fellow criminal as the two of them begin serving their sentence on a dreadful prison island, which inspires the man to plot his escape.",12000000,53267000,Papillon,en +46667,Superdad,1973-12-14,96.0,,,tt0072229,Young love is making waves...and Dad's about to get beached!,A dad tries to impress the daughter -- a soon-to-be college student he thinks is hanging around with a bad crowd.,0,0,Superdad,en +110227,The Borrowers,1973-12-14,81.0,,,tt0069817,,"An eight-year-old boy discovers a family of tiny people, only a few inches tall, living beneath the floorboards of a Victorian country home.",0,0,The Borrowers,en +11561,Sleeper,1973-12-17,89.0,,,tt0070707,Woody Allen takes a nostalgic look at the future.,"Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.",2000000,18344729,Sleeper,en +210609,Pioneer Woman,1973-12-18,74.0,,,tt0070538,,A homesteading family in the 1867 Wyoming faces a crisis when the husband is killed and the wife must decide whether to remain or take her son and daughter back East.,0,0,Pioneer Woman,de +133328,The Deadly Trackers,1973-12-21,110.0,,,tt0069951,The sheriff fought for peace. Now he would kill for vengeance.,Sheriff Sean Kilpatrick is a pacifist. Frank Brand is the leader of a band of killers. When their paths cross Kilpatrick is compelled to go against everything he has stood for to bring death to Brand and his gang. Through his hunt into Mexico he is challenged by a noble Mexican Sheriff interested only in carrying out the law - not vengeance.,0,0,The Deadly Trackers,en +40029,The Bamboo House of Dolls,1973-12-21,110.0,,,tt0071189,Abused and Used!,A nurse in a Japanese women's POW camp during World War II masterminds an escapee.,0,0,女集中营,zh +42453,The Island at the Top of the World,1974-01-01,93.0,,,tt0071671,Adventure beyond imagination,"A Victorian gentleman hopes to find his long-lost son, who vanished whilst searching for a mysterious Viking community in a volcanic valley somewhere in uncharted Arctic regions. The gentleman puts together an expedition team to go on the search, but when they reach their destination they must escape from some Viking descendants who will kill to keep their existence a secret.",0,0,The Island at the Top of the World,en +5482,Rabid Dogs,1974-01-01,96.0,,,tt0071275,"Lock the doors, rollup the windows, and buckle up… for the ride of your life!","Following a bungled robbery, three violent criminals take a young woman, a middle-aged man, and a child hostage and force them to drive them outside Rome to help them make a clean getaway.",0,0,Cani arrabbiati,it +105861,Last House in Istanbul,1974-01-01,77.0,,,tt0280224,,"Three criminals on the run, breaking into the house of a wealthy doctor and his hot wife ...",0,0,Çirkin dünya,tr +91459,Italianamerican,1974-01-01,49.0,,,tt0071680,,Filmmaker Martin Scorsese interviews his mother and father about their life in New York and family history back in Sicily.,0,0,Italianamerican,en +4146,The Wonderful Crook,1974-01-01,90.0,,,tt0071974,,No overview found.,0,0,Pas si méchant que ça,fr +222932,The Deathhead Virgin,1974-01-01,90.0,,,tt0211328,Chained for 100 years in a sunken tomb!,A treasure hunter finds a sunken Spanish galleon off the coast of a Philippine island. What he doesn't know is that the ship is guarded by the spirit of an ancient Moro princess,0,0,The Deathhead Virgin,en +173739,Zézero,1974-01-01,30.0,,,tt0320796,,"Man leaves the country and heads for the big city, where in middle of deprivation, he wins a lottery.",0,0,Zézero,en +213635,Luther,1974-01-21,110.0,,,tt0070346,,A man's view cause a rift between peasants and the church.,0,0,Luther,en +39194,Rhinoceros,1974-01-21,104.0,,,tt0070605,The comedy that proves people are still the funniest animals.,"Originally an absurdist play by Eugene Ionesco, Rhinoceros tells the story of a French town plagued by rhinoceroses. These are not ordinary rhinoceroses, but people who have been victims of ""rhinoceritis."" Or is it something else entirely? But, why are they turning into rhinoceroses and what is Ionesco trying to tell us about society?",0,0,Rhinoceros,en +118121,Butley,1974-01-21,127.0,,,tt0071260,His wife just left him for another man. And so did his boyfriend.,"Alan Bates recreates his award-winning stage role in director Harold Pinter's 1974 film verson of Simon Gray's play, about a university professor whose private life is in freefall. The cast also includes Jessica Tandy, Richard O'Callaghan, Susan Engel and Georgina Hale.",0,0,Butley,en +252144,Get Christie Love!,1974-01-22,74.0,,,tt0071548,,"Get Christie Love! is a 1974 made-for-television film starring Teresa Graves as an undercover female police detective who is determined to overthrow a drug ring. This film is based on Dorothy Uhnak's crime-thriller novel, The Ledger.",0,0,Get Christie Love!,en +4923,Zardoz,1974-02-06,105.0,,,tt0070948,"Into a world of eternal life, he brought the gift of death.","In the far future, a savage trained only to kill finds a way into the community of bored immortals that alone preserves humanity's achievements.",0,0,Zardoz,en +90590,Policewomen,1974-02-09,90.0,,,tt0072006,Cold Steel on the Outside...All Woman on the Inside!,A lady cop infiltrates an all-female criminal gang.,0,0,Policewomen,en +10869,Herbie Rides Again,1974-02-14,88.0,,12087,tt0071607,The Loveable Bug's back doin' his thing!,The living Volkswagen Beetle helps a old lady protect her home from a corrupt developer.,0,0,Herbie Rides Again,en +155597,All Screwed Up,1974-02-22,105.0,,,tt0070844,,A group of immigrants from the south of Italy live collectively in the Milano's suburbia in the 1974.,0,0,Tutto a posto e niente in ordine,it +132328,It's Good to Be Alive,1974-02-22,100.0,,,tt0071676,,This movie details the struggles of former Brooklyn Dodger catcher Roy Campanella to adapt to life in a wheelchair following his crippling automobile accident in 1959. Cinematographer Ted Voigtlander was Emmy-nominated.,0,0,It's Good to Be Alive,en +28068,The Loreley's Grasp,1974-02-23,85.0,,,tt0071535,You'll Never Sleep Alone Again!,"The legendary Loreley has been living for centuries in a grotto beneath the river Rhein in Germany. Every night when the moon is full, she turns into a reptile-like creature craving for human blood. When one girl after another of a nearby boarding school is killed by her, a hunter named Sirgurd is engaged to kill the monster.",0,0,Las garras de Lorelei,es +84209,Busting,1974-02-27,92.0,,,tt0071259,What this film exposes about undercover vice cops can't be seen on your television set.,LA cops Gould and Blake get in over their heads when they don't heed orders from above and go after a big crime boss.,0,0,Busting,en +38359,The Red Snowball Tree,1974-03-25,110.0,,,tt0070262,,"A former thief is released from a prison. He tries to start a new life with his penfriend - a good village woman, but his past doesn't let him go.",0,0,Калина Красная,ru +61212,The Last Four Days,1974-03-27,0.0,,,tt0071880,,The true story of the greatest manhunt of the century!,0,0,Mussolini: Ultimo atto,it +40218,The Beast Must Die,1974-04-01,93.0,,,tt0071200,,"Wealthy big game hunter Tom Newcliffe has tracked and killed practically every type of animal in the world. But one creature still evades him, the biggest game of all - a werewolf.",0,0,The Beast Must Die,en +231392,Lost in the Stars,1974-04-08,97.0,,,tt0071773,,"Musical from the American Film Theatre series, based on the play Cry The Beloved Country.",0,0,Lost in the Stars,en +66187,Elite Group,1974-04-10,0.0,,,tt0070588,,,0,0,La Race des Seigneurs,fr +128364,Where the Lilies Bloom,1974-04-10,98.0,,,tt0072401,,"A family of children decide not to tell anyone their father has died, and to live on their own in the backwoods of rural North Carolina. If the state finds out they are on their own, they will be split up and sent to live in foster homes.",0,0,Where the Lilies Bloom,en +174162,Our Time,1974-04-10,90.0,,,tt0071959,,"Drama about students at a girls' school, their boyfriends, and an unexpected pregnancy.",0,0,Our Time,en +29352,Super Stooges vs the Wonder Women,1974-04-11,105.0,,,tt0073804,Three men with supernatural powers interfere in a tribal warfare to prevent evil Amazons destroying the inhabitants of a village.,Three men with supernatural powers interfere in a tribal warfare to prevent evil Amazons destroying the inhabitants of a village.,0,0,"Superuomini, superdonne, superbotte",it +86643,House of Whipcord,1974-04-19,102.0,,,tt0071628,Only young girls may enter and no one leaves...,"Somewhere in the middle of the English countryside a former judge and a group of former prison warders, including his lover, run their own prison for young women who have not been held properly to account for their crimes. Here they mete out their own form of justice and ensure that the girls never return to their old ways.",0,0,House of Whipcord,en +54236,Cousin Angelica,1974-04-28,107.0,,,tt0072030,,"When the single middle-aged Luis travels from Barcelona to bury the remains of his mother in the vault of his family in Segovia, he is lodged by his aunt Pilar in her old house where he spent his summer of 1936 with her. He meets his cousin Angelica, who was his first love, living on the first floor with her husband and daughter, and he recalls his childhood in times of the Spanish Civil War entwined with the present.",0,0,La prima Angélica,es +81937,Dynamite Brothers,1974-05-01,90.0,,,tt0132933,The Black Cat from Watts..The Kung fu Cat from Hong Kong..Even chained together-Nobody can handle them!,Young black man teams up with a Chinese kung-fu expert to fight a drug ring.,0,0,Dynamite Brothers,en +119364,The Take,1974-05-01,91.0,,,tt0072249,Meet the brother with a badge... on the take!,A policeman in New Mexico takes payoff money but still manages to go after a racketeer.,0,0,The Take,en +110412,Symptoms,1974-05-10,91.0,,,tt0072239,,"A young woman is invited by her girlfriend, who lives in an English country mansion, to stay there with her. The estate, however, isn't quite what it seems--and neither is the friend who issued the invitation.",0,0,Symptoms,en +105902,Craze,1974-05-15,96.0,,,tt0069924,WHERE BLACK MAGIC EXPLODES INTO MURDER!,"Jack Palance stars as a demented art dealer & antique-shop owner who performs nightly rituals in honor of the African god Chuku, whom he believes will reward him with unimaginable wealth and power if he merely offers up human sacrifice. His methods are fairly creative, ranging from impalement, slashing and burning, to scaring people to death with an ooga-booga fright mask. But it's all about to blow up in his face...",0,0,Craze,en +88390,Black Eye,1974-05-17,98.0,,,tt0071224,"Whenever the cane turned up, someone turns up dead.",An ex-police officer operating a private detective business comes face to face with a syndicate-backed dope ring.,0,0,Black Eye,en +2204,Alice in the Cities,1974-05-17,110.0,,,tt0069687,,"German journalist Philip Winter has a case of writer’s block when trying to write an article about the United States. He decides to return to Germany, and while trying to book a flight, encounters a German woman and her nine year old daughter Alice doing the same. The three become friends (almost out of necessity) and while the mother asks Winter to mind Alice temporarily, it quickly becomes apparent that Alice will be his responsibility for longer than he expected. After returning to Europe, the innocent friendship between Winter and Alice grows as they travel together through various European cities on a quest for Alice’s grandmother.",0,0,Alice in den Städten,de +19017,Dirty Mary Crazy Larry,1974-05-17,93.0,,,tt0071424,"No one's faster than Crazy Larry, except Dirty Mary!","Two lovers, Mary and Larry, in their Dodge Charger are chased by the police after robbing a grocery store.",0,0,Dirty Mary Crazy Larry,en +86234,The Amulet of Ogum,1974-05-21,112.0,,,tt0071137,,"This story is narrated by an ubiquitous folk singer and tells of a young boy whose mother arranges for him to have an amulet bearing Ogum's blessings which would make him immune to gunfire. The amulet apparently works, for the boy becomes a member of a mobster's hit-team and then joins with a group of people who resist his original employers.",0,0,O Amuleto de Ogum,pt +4703,Daisy Miller,1974-05-22,91.0,,,tt0071385,,"In this comedy of manners, the American Winterbourne tries to figure out the bright and bubbly Daisy Miller, only to be helped and hindered by false judgments from their fellow friends.",2000000,0,Daisy Miller,en +104041,Mousey,1974-05-24,85.0,,,tt0071862,,A high school teacher separated from his son plots revenge on his ex-wife.,0,0,Mousey,en +10311,Martha,1974-05-27,116.0,,,tt0070374,,"A single woman in her early thirties, Martha (Margit Carstensen) is on vacation with her father in Europe when he has a heart attack and falls down dead...",0,0,Martha,de +96132,Three Tough Guys,1974-05-29,92.0,,,tt0072348,"The Black Moses, The Hammer, and The Preacher Man. They've got their own kind of mean game.","Isaac Hayes plays as Lee in his feature film debut, as Father Charlie and himself solve a bank robbery mystery that stretches across the city. After Lee is removed from the force due to $1,000,000 being stolen from the bank Father Charlie helps him to gain revenge for the loss of one of his friends.",0,0,Three Tough Guys,en +72648,Devil Times Five,1974-05-31,88.0,,,tt0071413,Who survives? Who would want to survive?,"Five extremely disturbed, sociopathic children escape from their psychiatric transport and are taken in unwittingly by a group of adult villagers on winter vacation.",0,0,Devil Times Five,en +85673,TNT Jackson,1974-06-08,72.0,,,tt0072245,She'll put you in traction.,A woman encounters thugs and drug dealers after traveling to Hong Kong to search for her missing brother.,0,0,TNT Jackson,en +77010,The Living Dead Girl,1982-10-23,86.0,,,tt0084357,,"A toxic spill revives a beautiful, dead heiress who, with the help of her childhood friend, must quench her insatiable thirst for blood",0,0,La morte vivante,fr +184578,The Dove,1974-06-16,105.0,,,tt0071438,,"The true story of a 16 year old (Robin Lee Graham, played by Joseph Bottoms) who aims to become the youngest person to sail around the world in a 23 foot sloop named ""The Dove"". On his journey he meets and falls in love with a young woman (Patti Ratteree, played by Deborah Raffin) who is also traveling around the world. The story follows Robin around the world to many beautiful locals, as he grows from a boy to a man, finds himself, and finds the love of his life.",0,0,The Dove,en +33740,That's Entertainment!,1974-06-21,135.0,,208602,tt0072272,More than a movie. It's a celebration.,Various MGM stars from yesterday present their favorite musical moments from the studio's 50 year history.,0,0,That's Entertainment!,en +26514,Where the Red Fern Grows,1974-06-21,97.0,,,tt0072402,,Where the Red Fern Grows is the heartwarming and adventurous tale for all ages about a young boy and his quest for his own red-bone hound hunting dogs.,0,0,Where the Red Fern Grows,en +63340,Three the Hard Way,1974-06-26,89.0,,,tt0072284,,"The story involves a white supremist plot to taint the United States water supply with a toxin that is harmless to whites but lethal to blacks. The only obstacles that stand in the way of this dastardly plan are Jim Brown, Fred Williamson and Jim Kelly, who shoot, kick and karate chop their way to final victory.",0,0,Three the Hard Way,en +31901,For Pete's Sake,1974-06-26,90.0,,,tt0071514,Zany Barbra!,Henry (Streisand) is a woman who would do anything for her husband Pete-- including borrow money so he has a chance of making his dreams come true. But now there's the loan sharks to deal with...,0,0,For Pete's Sake,en +179847,First Love,1974-07-01,52.0,,,tt0071996,,"After the doctor's refusal to perform abortion on a 17-year old girl, she and her boyfriend have to cope with the new situation. They both need to learn to take responsibility for their decisions, in spite of numerous hardships facing them.",0,0,Pierwsza milosc,pl +96985,Hot Summer in Barefoot County,1974-07-01,90.0,,,tt0071624,There's only two rules in Barefoot County--Love thy neighbor and do unto others!,A city cop is sent out to the country to go undercover and bust up a ring of moonshiners run by a woman and her three hot teenage daughters.,0,0,Hot Summer in Barefoot County,en +90110,Down and Dirty Duck,1974-07-01,70.0,,,tt0072882,"Madder Than Daffy, Dumber Than Donald, More Existential Than Howard!","Willard, a mild mannered insurance adjuster, teams up with a foul-mouthed fowl who takes Willard on a surreal quest to become less uptight - and possibly get laid in the process.",0,0,Down and Dirty Duck,en +54988,Bird on a Wire,1974-07-05,105.0,,,tt0251613,,"Tony Palmer's film, thought lost for almost 40 years, about Leonard Cohen's 1972 European tour, has now been pieced together from almost 3,000 fragments and restored to its former glory. A unique record of a major poet and singer/songwriter at the height of his powers.",0,0,Bird on a Wire,en +127091,"Shoot First, Die Later",1974-07-12,94.0,,,tt0072010,,"Luc Merenda gives the performance of his career as a highly regarded police detective who is taking syndicate money in exchange for departmental favors. His father, a simple man, also works for the department but on a lower rung; he isn't jealous of his son, but rather proud of him, little knowing that he's a crooked cop. A series of events leads the young detective to ask his father for a favor (he wants a certain police report that is desired by the syndicate) and it doesn't take long for the detective's father to realize his son is on the take... which leads to numerous complications.",0,0,Il poliziotto è marcio,en +26173,Mr. Majestyk,1974-07-17,103.0,,,tt0071866,He didn't want to be hero... until the day they pushed him too far.,"Watermelon farmer Vince Majestyk (Charles Bronson) goes after the Mob, when they try to strong arm him to use their melon picking crew.",0,0,Mr. Majestyk,en +34052,Jack and the Beanstalk,1974-07-20,93.0,,,tt0074705,,Innovative and enchanting adaptation of this well-loved children's story.,0,0,Jack and the Beanstalk,ja +86600,The Internecine Project,1974-07-24,89.0,,,tt0071663,Who will be alive when the hands stop?,Former secret agent Robert Elliot (Coburn) will be promoted to government advisor. In order to make sure no-one will ever know about his dirty past.,0,0,The Internecine Project,en +80351,The Castaway Cowboy,1974-08-01,91.0,,,tt0071288,Wayward Texas Cowboy in Hawaii,Wayward Texas cowboy (James Garner) washes up on the beaches of Hawaii and is taken home by an fatherless boy. He saves the family's business while romancing the single mom (Vera Miles).,0,0,The Castaway Cowboy,en +84104,Shriek of the Mutilated,1974-08-02,86.0,,,tt0072156,"Piece By Piece, By Piece, the Bodies Vanish in ... ""Shriek of the Mutilated""",A group of college students are led by their professor into the mountains in search of the Yeti. The students start to be killed off one by one.,0,0,Shriek of the Mutilated,en +32044,California Split,1974-08-07,108.0,,,tt0071269,"Being the story of two bet-on-anything guys who happily discover something called a ""winning streak""","A down on his luck gambler links up with free spirit Elliot Gould at first to have some fun on, but then gets into debt when Gould takes an unscheduled trip to Tijuana. As a final act of desperation, he pawns most of his possessions and goes to Reno for the poker game of a lifetime. A film set mainly in casinos and races, as the two win and lose (but mainly win), get robbed, and get blind drunk.",0,0,California Split,en +42448,Harry and Tonto,1974-08-12,115.0,,,tt0071598,Get a Lift,"Harry is a retired teacher in his 70s living in the Upper West Side of New York City where his late wife and he raised his children--where he's lived all his life. When the building he lives in is torn down to make way for a parking garage, Harry and his beloved cat Tonto begin a journey across the United States, visiting his children, seeing a world he never seemed to have the time to see before, making new friends, and saying goodbye to old friends.",0,0,Harry and Tonto,en +84450,Buster e Billie,1974-08-21,100.0,,,tt0071258,What took place in that town in 1948 should have been a love story.,Dimwitted but sweet high school girl of easy virtue and the most popular boy in the school share an improbable romance.,0,0,Buster and Billie,en +52661,99 and 44/100% Dead,1974-08-29,98.0,,,tt0071089,,"Uncle Frank Kelly calls on Harry Crown to help him in a gang war. The war becomes personal when Harry's new girlfriend is kidnapped by Uncle Frank's enemy, Big Eddie.",0,0,99 and 44/100% Dead,en +59189,Phase IV,1974-09-01,86.0,,,tt0070531,Adapt or die.,Arizona ants mock the food chain on their way to a desert lab to get two scientists and a woman.,0,0,Phase IV,en +35405,S*P*Y*S,1974-09-05,87.0,,,tt0072107,Would you buy a used secret from these men?,"Two CIA bunglers (Donald Sutherland, Elliott Gould) botch a Soviet defection, then both sides mark them for termination.",0,0,S*P*Y*S,en +221171,Kilplased,1974-09-12,0.0,,,tt1075340,,,0,0,Kilplased,et +293270,Sistemo l'America e torno,1974-09-16,,,,tt0069794,,,0,0,Sistemo l'America e torno,it +14683,The Nine Lives of Fritz the Cat,1974-09-18,77.0,,476056,tt0071913,,"Fritz, now married and with a son, is desperate to escape from the domestic hell he now finds himself in. Lighting up a joint, he begins to dream about his eight other lives, hoping to find one that will provide a pleasant distraction.",0,0,The Nine Lives of Fritz the Cat,en +27019,Celine and Julie Go Boating,1974-09-18,193.0,,,tt0071381,,A mysteriously linked pair of young women find their daily lives pre-empted by a strange boudoir melodrama that plays itself out in a hallucinatory parallel reality.,0,0,Céline et Julie vont en bateau,fr +29805,Juggernaut,1974-09-25,109.0,,,tt0071706,The greatest sea adventure in history has just begun!,A bomber has planted 7 bombs on a transatlantic cruise ship. While a crack bomb squad team try to defuse the bombs the police attempt to track down the mad bomber.,0,0,Juggernaut,en +30929,The Mutations,1974-09-25,92.0,,,tt0070423,It's not nice to fool with Mother Nature... it can be HORRIFYING!,"A mad scientist (Donald Pleasence) crosses plants with people, and the results wind up in a sideshow.",0,0,The Mutations,en +13798,Thunderclump,1974-09-26,97.0,,,tt0071448,,Dunderklumpen lives all alone in the mountains of Jämtland. One Midsummer's Eve when he feels very lonely he sets off on a journey to find friends.,0,0,Dunderklumpen!,sv +69765,Orders,1974-09-27,109.0,,,tt0071949,,A fact-based account of ordinary citizens who found themselves arrested and imprisoned without charge for weeks during the October Crisis in 1970 Quebec.,0,0,Les ordres,fr +44800,The Gambler,1974-10-02,111.0,,,tt0071532,"For $10,000 they break your arms. For $20,000 they break your legs. Axel Freed owes $44,000.",New York City English professor Axel Freed outwardly seems like an upstanding citizen. But privately Freed is in the clutches of a severe gambling addiction that threatens to destroy him.,0,0,The Gambler,en +45377,Death Sentence,1974-10-02,74.0,,,tt0071400,She's a juror in a murder trial- but she suspects they've got the wrong man- and that could be her own... DEATH SENTENCE,A juror on a murder case begins to believe that the man on trial is innocent of the crime - and then discovers that the real killer is her own husband.,0,0,Death Sentence,en +51212,I'm Losing My Temper,1974-10-09,92.0,,,tt0071863,,"Pierre is a clumsy, overly serious math teacher at an all-girls high school. His life is thrown into chaos after encountering a beautiful British actress and the paparazzi that follow her around.",0,0,La moutarde me monte au nez,fr +62761,The Cars That Ate Paris,1974-10-10,87.0,,,tt0071282,148 people live in the township of Paris and every one of them is a murderer.,"After the death of his brother on the road, unemployed and unstable drifter Arthur Waldo stays for a while in the rural Australian town of Paris as the guest of the mayor, who hopes he will become a permanent member of the Paris population. Arthur soon realizes the quaint hamlet has a sinister secret: they orchestrate car accidents and rob the victims. Survivors are brought to the local hospital, lobotomized, and used for a local doctor's experiments.",0,0,The Cars That Ate Paris,en +16938,Black Christmas,1974-10-11,98.0,,,tt0071222,"If this movie doesn’t make your skin crawl, it’s on too tight!",A sorority house is terrorized by a stranger who makes frightening phone calls and then murders the sorority sisters during Christmas break.,0,0,Black Christmas,en +23069,Benji,1974-10-17,86.0,http://www.benji.com/MeetBenji.htm,424830,tt0071206,,A stray dog saves two kidnapped children.,0,0,Benji,en +200655,Janis,1974-10-18,96.0,,,tt0073193,,"Released just a few years after her death, this forms a picture of who Janis was through interviews and performance clips.",0,0,Janis,en +76198,The Slap,1974-10-23,99.0,,,tt0071550,,A Parisian teacher (Lino Ventura) loses his cool when his teenage daughter tells him she plans to drop out of school and move in with her boyfriend.,0,0,La Gifle,fr +27196,Stardust,1974-10-24,107.0,,,tt0072201,,"Sequel to 1973's That'll Be The Day. Jim McLain is now enjoying the nomadic 'gigs and groupies' life on tour with his band. When he achieves all his wildest dreams of international stardom, the sweet taste of success begins to turn sour.",0,0,Stardust,en +16203,Space Is the Place,1974-11-01,85.0,,,tt0072195,,"Sun Ra and his Solar Myth Arkestra return to Earth after several years in space. Ra proclaims himself ""the alter-destiny"", meets with inner-city youths and battles with the devil himself to save the black race.",0,0,Space Is the Place,en +105384,Orders Signed in White,1974-11-13,93.0,,,tt0073491,,"A gang raid a bank, making off with a nice tidy sum and head off to a hideout in the mountains to take refuge (with a few women in tow to keep them company).",0,0,Ordine firmato in bianco,en +139563,La poliziotta,1974-11-15,0.0,,,tt0072009,,,0,0,La poliziotta,it +4443,Nuits rouges,1974-11-20,104.0,,,tt0069593,,"Clad in a featureless red mask, The Man Without A Face is involved in a single-minded pursuit of the fabled treasure of the Knights Templar in this tribute to the pulp adventure stories of Louis Feuillade.",0,0,Nuits rouges,fr +987,The Front Page,1974-12-01,105.0,,,tt0071524,,A journalist suffering from burn-out wants to finally say goodbye to his office – but his boss doesn’t like the idea one bit.,4000000,0,The Front Page,en +149145,Les Hautes Solitudes,1974-12-15,80.0,,,tt0071600,,"Biographical film about Jean Seberg, loosely based on Nietzsche's Anti-Christ.",0,0,Les hautes solitudes,fr +86497,Wide Open,1974-12-18,98.0,,,tt0070764,,"A philandering cab driver decides to help his girlfriend's attractive sister, who is in trouble with drug dealers.",0,0,Sängkamrater,en +53931,Seven Alone,1974-12-20,97.0,,,tt0073686,,"A fictionalized account of the real-life adventure of the Sager family. Travelling with a wagon train from Missouri to Oregon, things are going well for the Sagers, until father Sager dies from blood poisoning following an Indian attack, and mother Sager dies soon afterward from pneumonia. The leaders of the wagon train decide to send the children back, but the oldest, John (who had been described by all the adults as lazy and worthless), decides to lead his siblings through the wilderness to complete the journey their parents started.",0,0,Seven Alone,en +82350,Finché c'è guerra c'è speranza,1974-12-20,0.0,,,tt0071500,,,0,0,Finché c'è guerra c'è speranza,it +112675,The Immortals,1974-12-23,103.0,,,tt0071899,,,0,0,Nemuritorii,de +47848,Scent of a Woman,1974-12-25,103.0,,,tt0072037,,"An army cadet accompanies an irascible, blind captain on a week-long trip from Turin to Naples. The captain, Fausto, who wants no pity, brooks no disagreement, and charges into every situation, nicknames the youth Ciccio, and spends the next few days ordering him about and generally behaving badly in public. In Rome, Fausto summons a priest to ask for his blessing; in Naples, where Fausto joins a blind lieutenant for drinking and revelry, the two soldiers talk quietly and seriously about ""going through with it."" Also in Naples is Sara, in love with Fausto, but treated cruelly by him. What do the blind soldiers plan? Can Sara soften Fausto's hardened heart?",0,0,Profumo di donna,it +104251,Pastoral: To Die in the Country,1974-12-28,104.0,,,tt0071406,,"A young boys' coming of age tale set in a strange, carnivalesque village becomes the recreation of a memory that the director has twenty years later.",0,0,田園に死す,ja +94513,Two Solutions for One Problem,1975-01-01,5.0,,,tt0072902,,"During breaktime, Dara and Nader have a fierce argument about a torn exercise book that the former has given back to the latter. There are two possible outcomes, which the film shows one after the other. One is that Dara wants to get his own back, and the two boys start a violent fight; the other is that they work together to mend the exercise book with a little glue.",0,0,دو راه حل برای يک مسئله,fa +35862,Wedding Trough,1975-01-01,80.0,,,tt0072355,,"A mad farmer falls in love with his pig and has mutant piglets with it. When the ""piglets"" prefer their mother over him, he hangs them all and the sow kills herself.",0,0,Vase de Noces,en +84233,Don't Hang Up,1975-01-01,90.0,,,tt0080648,,"A dutiful grand-daughter goes home to take care of her elderly grandmother. Once there, she finds herself trapped inside the house with a homicidal maniac.",0,0,Don't Hang Up,en +288438,Gable: The King Remembered,1975-01-01,65.0,,,tt0440410,,Friends and co-workers recall the life of Clark Gable.,0,0,Gable: The King Remembered,en +28071,Night of the Seagulls,1975-01-01,89.0,,108170,tt0073461,,"The Knight Templars return in this fourth installment of the Blind Dead seris. On this outing, the Templars haunt a fishing village, where they rise seven nights every seven years to claim their sacrificial offerings in return for the safety of the townspeople.",0,0,La noche de las gaviotas,es +20017,Wrong Move,1975-01-01,103.0,,,tt0071483,,"Six days in the life of Wilhelm: a detached man without qualities. He wants to write, so his mother gives him a ticket to Bonn, telling him to live. On the train he meets an older man, an athlete in the 1936 Olympics, and his mute teen companion, Mignon. She's an acrobat in market squares for spare change.",0,0,Falsche Bewegung,de +336549,Choice of Purpose,1975-01-01,158.0,,,tt0072382,,"A story of the creation of the atomic bomb in America, Germany and the USSR.",0,0,Выбор цели,ru +279568,"Paolo Barca, maestro elementare, praticamente nudista",1975-01-01,110.0,,,tt0192427,"Paolo Barca, maestro elementare, praticamente nudista",Italian film,0,0,"Paolo Barca, maestro elementare, praticamente nudista",en +89659,Criminally Insane,1975-01-01,61.0,,,tt0072831,She's 250 Pounds of Maniacal Fury!,An obese woman recently released from an insane asylum kills anyone who attempts to get her to stop eating.,30000,0,Criminally Insane,en +76207,Pleasure Party,1975-01-15,97.0,,,tt0072342,,"Phillipe and Esther live an apparently idyllic life with their daughter, Elise. In an attempt to preserve this bliss, Phillipe decides that he and Esther should each have affairs, being sure to tell each other openly about them. The plan backfires with tragic results as Phillipe becomes engulfed in jealously.",0,0,Une partie de plaisir,fr +40793,The Nickel Ride,1975-01-15,99.0,,,tt0073451,The Nightmare Was Over... Or Had It Just Begun!,A world-weary crime boss is losing his grip on his organization.,0,0,The Nickel Ride,en +105860,Gambling City,1975-01-23,101.0,,,tt0071331,,"Luca Altieri is a gambler. He likes cards and he is a master in playing poker. He is a cardsharper too. He begins working for ""The President"", who has many gambling houses and everything seems to go well until Luca falls for Maria Luisa. Unfortunately for them, she is the girl of Corrado, the son of ""The President""...",0,0,La città gioca d'azzardo,it +198317,Jacques Brel Is Alive and Well and Living in Paris,1975-01-27,98.0,,,tt0121411,,"Three attendees at a puppet theater don various roles in order to sing a variety of songs by Jacques Brel, all while hippies and other eccentrics cavort about them.",850000,0,Jacques Brel Is Alive and Well and Living in Paris,en +3476,That Most Important Thing: Love,1975-02-12,109.0,,,tt0073155,,"Servais Mont, a photographer, meets Nadine Chevalier who earns her money starring in cheap soft-core movies. Trying to help her, he borrows the money from the loan sharks to finance the theatrical production of 'Richard III' and gives Nadine a part.",0,0,L'important c'est d'aimer,fr +62071,The Flying Guillotine,1975-02-18,111.0,,380170,tt0071512,,"The Emperor's armies have developed a new weapon: a thrown blade that can remove someone's head from long distance. As the paranoid Emperor begins decapitating anyone he fears might be a threat, his guard Mau Tang becomes disillusioned with the excesses of his master. He leaves his post and takes up the quiet life of farming and raising a family. Eventually, though, his past catches up with him, and he must find a way to fight the flying guillotine if he is to save his head.",0,0,Xue di zi,zh +511,The Promised Land,1975-02-21,179.0,,,tt0072446,,"The Polish film based on the book of the same name by Wladyslaw Reymont. Taking place in the nineteenth century town of Łódź, Poland, three friends want to make a lot of money by building and investing in a textile factory. An exceptional portrait of rapid industrial expansion shown through the eyes of one Polish town.",0,0,Ziemia obiecana,pl +74645,Mondo Candido,1975-02-21,107.0,,,tt0198769,,"Voltaire, a 16th century author was furious that learned members of a ""civilized"" society could claim that the apparent senseless violence and mayhem wrought by disasters, war, disease, man's cruelty, etc. was actually only a part of some 'greater good'. After all, God (being perfect) could not 'logically' have created anything but the 'best of all possible' universes.",0,0,Mondo Candido,en +142064,"It's A Bird, It's A Plane, It's Superman!",1975-02-21,92.0,,,tt0339210,The funniest Superhero story ever!,"TV adaptation of the campy 1960s Broadway musical about the Man of Steel, his friends, his enemies, and his self-image problems.",0,0,"It's A Bird, It's A Plane, It's Superman!",en +311417,Funny Farm,1975-02-27,93.0,,,tt0163636,,Funny Farm depicts a night shift by nurse Alan Welbeck (Tim Preece) on a psychiatric ward.,0,0,Funny Farm,en +38783,Trilogy of Terror,1975-03-04,72.0,,188458,tt0073820,,Three bizarre horror stories ending with the story of an African doll out for blood.,0,0,Trilogy of Terror,en +42258,Katie Tippel,1975-03-06,102.0,,,tt0073233,,"In the late 19th century, a young woman moves to Amsterdam with her family and tries to make a living. Preyed upon by various men, she nonetheless rises in society.",0,0,Keetje Tippel,nl +1396,Mirror,1975-03-07,106.0,,,tt0072443,,"A dying man in his forties remembers his past. His childhood, his mother, the war, personal moments and things that tell of the recent history of all the Russian nation.",0,0,Зеркало,ru +191465,The Manchu Eagle Murder Caper Mystery,1975-03-07,0.0,,,tt0070366,,Film noir parody with a private eye trying to solve the murder of his milkman.,0,0,The Manchu Eagle Murder Caper Mystery,en +5618,"Cousin, Cousine",1975-11-19,95.0,,,tt0072826,,"Two distant cousins meet at a wedding banquet for an elderly couple. Over time, a close friendship develops between them, but their spouses begin to think that they are more than just friends.",0,0,"Cousin, Cousine",fr +20126,Deep Red,1975-03-07,126.0,,,tt0073582,When the Screaming starts and the Blood begins to flow... Pinch yourself and keep repeating I'M AT THE MOVIES! I'M AT THE MOVIES! I'M AT THE MOVIES! I'M AT THE MOVIES!,"A musician witnesses the murder of a famous psychic, and then teams up with a fiesty reporter to find the killer while evading attempts on their lives by the unseen killer bent on keeping a dark secret buried.",0,0,Profondo Rosso,it +19740,The Great Waldo Pepper,1975-03-13,108.0,,,tt0073075,,A biplane pilot who had missed flying in WWI takes up barnstorming and later a movie career in his quest for the glory he had missed.,0,20642922,The Great Waldo Pepper,en +135390,The Softening of the Egg,1975-03-17,107.0,,,tt0073946,,"A fairy tale and satire about a wealthy industrialist, whose son has been subdued and oppressed and totally uninterested in his father's business.",0,0,Ägget är löst!,sv +34459,"Sheba, Baby",1975-03-26,90.0,,,tt0073697,Queen Of The Private Eyes,"Sheba, a Chicago private detective returns back home to Louisville, Kentucky, to help her father fight mobsters.",0,0,"Sheba, Baby",en +101217,Hanzo,1975-04-01,65.0,,,tt0252496,,,0,0,Hanzo,en +131966,Strike Force,1975-04-12,73.0,,,tt0073758,,A New York City detective teams up with a federal agent and a state trooper to bust up a drug ring.,0,0,Strike Force,en +28323,I Will Fight No More Forever,1975-04-13,106.0,,,tt0073138,,"Pursued by 2,000 US soldiers and cavalry, Chief Joseph leads his tribe of 800 Nez Perce on a 1,700 mile journey across the West and towards Canada. Based on the true story of the westward expansion of the United States and the military force used to displace Native Americans from their lands.",0,0,I Will Fight No More Forever,en +170677,The Maids,1975-04-21,95.0,,,tt0071798,,"A film version of Genet's play. Two maids, Solange and Claire, hate their employers and, while they are out, take turns at dressing up as Madame and insulting her.",0,0,The Maids,en +19174,Dolemite,1975-04-26,90.0,,405256,tt0072895,With his All-Girl Army of Kung Fu Killers.,"Dolemite is a pimp who was set up by Willie Greene and the cops, who have planted drugs, stolen furs, and guns in his trunk and got him sentenced to 20 years in jail. One day, Queen B and a warden planned to get him out of Jail and get Willie Green and Mitchell busted for what they did to him.",0,0,Dolemite,en +44012,"Jeanne Dielman, 23, Quai du Commerce 1080 Bruxelles",1975-05-14,201.0,,,tt0073198,,"A lonely widowed housewife does her daily chores, takes care of her apartment where she lives with her teenage son, and turns the occasional trick to make ends meet. Slowly, her ritualized daily routines begin to fall apart.",0,0,"Jeanne Dielman, 23, Quai du Commerce 1080 Bruxelles",fr +29128,Lips of Blood,1975-05-17,88.0,,,tt0073324,,"Frederick sees a photograph of a ruined seaside castle, which triggers a strange childhood memory. He then goes on a strange quest, aided by four female vampires, to find the castle and the beautiful woman who lives there.",0,0,Lèvres de sang,en +31671,Breakout,1975-05-21,96.0,,,tt0072737,Sentenced to 28 years in prison for a crime he never committed. Only two things can get him out - A lot of money and Charles Bronson!,"A bush pilot is hired for $250,000 to go to Mexico to free an innocent prisoner.",1000000,16000000,Breakout,en +63317,Poor Pretty Eddie,1975-06-01,85.0,,,tt0070556,All He Wanted Was A Friend.,"A wrong turn on a jazz singer's road trip results in her car breaking down near an isolated lodge run by a faded starlet and a young, homicidal Elvis impersonator.",0,0,Poor Pretty Eddie,en +78094,Sunday Too Far Away,1975-06-01,93.0,,,tt0073765,"Friday night he's too tired; Saturday night too drunk; Sunday, too far away.",Friday night he's too tired. Saturday night too drunk.,0,0,Sunday Too Far Away,en +156627,The Story of Sin,1975-06-03,130.0,,,tt0072919,,A beautiful Polish girl whose lover has gone to Rome to seek a divorce from his previous wife travels around Europe in search of him and suffers a variety of tragic adventures as the men around her try to fit her into their own selfish schemes.,0,0,Dzieje grzechu,pl +45874,Posse,1975-06-04,92.0,,,tt0073559,"""Posse"" begins like most Westerns. It ends like none of them. It will knock you off your horse.","A tough marshal with political ambitions leads an elite posse to capture a notorious criminal. He succeeds, but instead of cheering him, the public turns against him.",0,0,Posse,en +127424,Nazareno Cruz and the Wolf,1975-06-05,92.0,,,tt0071897,,"Nazareno Cruz is the seventh son of a couple living in a high mountain village. According to a myth, a seventh son will become a wolf on nights of the full moon. Everyone in the village is relieved when this doesn't happen. The boy grows up and falls in love with a beautiful girl, Griselda. When he's 20 years old, he is visited by the Devil, who offers him the wealth of the world if he will turn his back on his love for Griselda, and if he fails to do this, he will become a wolf.",0,0,Nazareno Cruz y el lobo,es +38027,Mandingo,1975-06-06,127.0,,,tt0073349,Expect The Savage. The Sensual. The Shocking. The Sad. The Powerful. The Shameful. Expect The Truth.,A slave owner in the 1840s trains one of his slaves to be a bare-knuckle fighter.,0,0,Mandingo,en +271919,The Cage,1975-06-10,100.0,,,tt0071265,,"The story of a woman who is suddenly visited by her estranged ex-husband. The ex-hubby wants to buy her country house, which she received in the divorce settlement. Instead he finds himself locked in a cage in the cellar.",0,0,La Cage,fr +578,Jaws,1975-06-18,124.0,http://www.jaws25.com/,2366,tt0073195,Don't go in the water.,"An insatiable great white shark terrorizes the townspeople of Amity Island, The police chief, an oceanographer and a grizzled shark hunter seek to destroy the bloodthirsty beast.",7000000,470654000,Jaws,en +76846,A Guy and a Gal,1975-06-25,94.0,,,tt0073239,,,0,0,En kille och en tjej,sv +42260,Mother Küsters Goes to Heaven,1975-07-01,108.0,,,tt0073424,,"Frau Kusters is preparing dinner late one seemingly ordinary afternoon in her seemingly ordinary kitchen in Frankfurt, Germany. Mrs. Kusters wants to add canned sausages to the stew, her annoying daughter-in-law thinks otherwise. The point, we soon find out, is moot: Mr. Kusters has murdered the personnel director at the soap factory where he works before committing suicide.",0,0,Mutter Küsters' Fahrt zum Himmel,de +55343,Overlord,1975-07-01,83.0,,,tt0073502,Code Name D-Day June 6th 1944,"During the war a young lad is called up and, with an increasing sense of foreboding, undertakes his army training ready for D-day.",0,0,Overlord,en +29694,One of Our Dinosaurs Is Missing,1975-07-09,100.0,,,tt0075016,,"Escaping from China with a microfilm of the formula for the mysterious ""Lotus X"", Lord Southmere, a Queen's Messenger, is chased by a group of Chinese spies.",0,0,One of Our Dinosaurs Is Missing,en +270081,Diane,1975-07-09,97.0,,,tt0167118,,A young woman's bleak life,0,0,Diane,en +42267,White Line Fever,1975-07-16,90.0,,,tt0073896,The organization says: Everybody drives for them. Carrol Jo says: I drive for myself.,An independent trucker with a pregnant wife fights cargo crooks and the big shot they work for.,0,0,White Line Fever,en +279159,Physical Promise,1975-07-26,95.0,,,tt0163914,,"Mild-mannered and modest Sook-young looks like your usual middle-aged woman, but happens to be a man-killing murderess. On a train trip to Mokpo, she remembers an earlier trip as a prisoner on furlough accompanied by a menacing but kind butch female guard. On the train they meet Hoon, a young man who falls for Sook-young. The guard lets them be alone at a bizarre marriage in a hill-top graveyard.",0,0,肉體의 約束,ko +33801,Beyond the Door,1975-07-31,99.0,,,tt0071212,Evil grows beyond the door!,"Jessica Barrett, wife and mother of two young children, begins to show signs of demonic possession while pregnant with her third child. As she seeks help from her husband and doctor, a mysterious man approaches her and seems to have some answers.",350000,0,Beyond The Door,en +200331,Journey Into Fear,1975-08-08,100.0,,,tt0073213,Everyone they meet...every door they open...every corner they turn...could be their last!,U.S geologist (Sam Waterston) discovers something about Oil that proves VERY threatening to the Turkish and Arab business people.,0,0,Journey Into Fear,en +27085,The Land That Time Forgot,1975-08-13,90.0,,211753,tt0073260,THE ADVENTURE YOU WILL NEVER FORGET!,"During World War I, a German U-boat sinks a British ship and takes the survivors on board. After it takes a wrong turn, the submarine takes them to the unknown land of Caprona, where they find dinosaurs and neanderthals.",1500000,0,The Land That Time Forgot,en +261538,Tora-san's Rise and Fall,1975-08-19,91.0,,435347,tt0073498,,"Tora-san visits Hokkaido and is reunited with Lily. Now divorced, she plans to resume her singing career and renews her unusual relationship with Tora-san.",0,0,Otoko wa tsurai yo: Torajiro aiaigasa,ja +197177,The Left Hand of the Law,1975-09-03,101.0,,,tt0073555,,"After a couple of 'special squad' cops are gunned down while chasing some kidnappers, the head of the squad takes it really personally! His violent path to find the kidnappers leads him to the upper echelons of the government. Now, the powers-that-be don't want to be found out and decide it's time to kill one more cop...",0,0,La Polizia Interviene: Ordine Di Uccidere,it +220002,Bizim Aile,1975-09-07,88.0,,,tt0456047,Story of Yasar Usta and his family.,A love story between a poor man and a rich girl. The rich girl's father tries to prevent their marriage and he declares a war against the poor boy's family.,65700,214600,Bizim Aile,tr +67018,The Image,1975-09-10,89.0,,,tt0073589,Beyond The Story of O!,"Jean discovers that Anne cannot get enough of being humiliated by her mistress, Claire. Gentleman that he is, he decides to partake in the activities. Ultimately, Claire surrenders to him as well.",0,0,The Image,en +296901,Firefly,1975-09-16,84.0,,,tt0499305,The story of two pickpockets who fell in love,The road runner movie of two clever cheaters turns to a love story.,0,0,Ateş Böceği,en +37339,The Man Who Skied Down Everest,1975-09-19,86.0,,,tt0073340,,A Japanese skier tries to fulfill his dream of sking down Mount Everest.,0,0,The Man Who Skied Down Everest,en +11391,The Olsen Gang on the Track,1975-09-26,100.0,,11118,tt0073482,,"Egon and his two cronies managed to sneak a fortune with them to Spain. Here they live a life in a whirl of pleasures, but they are not truly happy. While Egon always has the money chained to him, Bøffen still manages to steal them. Egon ends up in jail once again, and when he comes out, he has a brilliant plan.",0,0,Olsen-banden på sporet,da +92285,Lies My Father Told Me,1975-09-26,102.0,,,tt0073293,No one ever said it was easy being a child.,A Jewish boy grows up in 1920s Montreal with a grandfather who tells stories and a father who won't work.,0,0,Lies My Father Told Me,en +221135,Katherine,1975-10-05,97.0,,,tt0073229,,"A harrowing look at the 60s and early 70s through the eyes of Katherine Alman, a wealthy debutante who slowly, but inexorably spirals down into a fight for the causes that shook a nation, leading a path to the underground life. Written by Miguel Cane",0,0,Katherine,en +185154,Autobiography of a Princess,1975-10-05,60.0,,,tt0072674,,No Overview,0,0,Autobiography of a Princess,en +3554,Mahogany,1975-10-08,109.0,,,tt0073335,,"Tracy, an aspiring designer from the slums of Chicago puts herself through fashion school in the hopes of becoming one of the world's top designers. Her ambition leads her to Rome spurring a choice between the man she loves or her newfound success.",0,0,Mahogany,en +4762,The Lost Honor of Katharina Blum,1975-10-10,106.0,,,tt0073858,A young woman's life is scrutinized by police and tabloid press after she spends the night with a suspected terrorist.,"Katharina Blum is a young handsome German maid. She meets Ludwig, and they fall in love at once. They spend the night together. In the morning, the police bursts in her flat, looking for Ludwig he is a terrorist. But he was no longer here. Katharina is arrested, humiliated, suspected to be a terrorist herself, dragged in the mud by the newspapers...",1000000,0,Die verlorene Ehre der Katharina Blum,de +180929,Whiffs,1975-10-15,91.0,,,tt0073891,,Elliott Gould steals Army nerve gas to help him rob banks when he’s kicked out of the military after 15 years of service as a human guinea pig in its chemical warfare experiments.,0,0,Whiffs,en +86598,The UFO Incident,1975-10-20,92.0,,,tt0073834,,"In the early 1960s, an interracial couple undergo hypnosis, which unlocks memories of a forgotten event on a lonely road. Soon they believe they were abducted by extraterrestrials.",0,0,The UFO Incident,en +36129,Hedgehog in the Fog,1975-10-23,11.0,,,tt0073099,,"A little hedgehog, on the way to visit his friend the bear, gets lost in thick fog, where horses, dogs and even falling leaves take on a terrifying new aspect...",0,0,Ёжик в тумане,ru +14815,The Wind and the Lion,1975-10-26,119.0,,,tt0073906,"Between the wind and the lion is the woman. For her, half the world may go to war.",At the beginning of the 20th century an American woman is abducted in Morocco by Berbers. The attempts to free her range from diplomatic pressure to military intervention.,0,0,The Wind and the Lion,en +101231,Gente Di Rispetto,1975-10-30,113.0,,,tt0072123,,"A female school teacher is implicated in a murder in a Sicilian town only hours after her arrival. The dead man insulted her on the bus on the way into town. As the mystery unfolds, it becomes clear that the town is hiding some very sinister secrets.",0,0,Gente Di Rispetto,en +98025,The Teasers,1975-10-31,82.0,,,tt0073290,What They Do in Public Will Shock You...What They Do in Private Will Boggle Your Mind!,Loredana is a schoolgirl who takes advantage of her fellow students and teachers by using her innocent schoolgirl beauty. After she loses her virginity to an older man she soon realizes there are more important things to life than teasing men.,0,0,La liceale,it +161299,The Hired Gun,1975-11-13,100.0,,,tt0075377,,"Fabio Testi is an undercover cop doubling as the bodyguard (hence, “Gorilla”) of a cantankerous middle-aged industrialist targeted for extortion.",0,0,Vai Gorilla,en +88922,The Oily Maniac,1976-09-18,84.0,,,tt0075001,,A cripple takes revenge on criminals by using a magic spell that transforms him into an oily monster/superhero.,0,0,油鬼子,zh +157559,Ah Nerede,1975-11-19,90.0,,,tt0499291,Comedy Romance,"Three boys are having their higher education in Istanbul (!). In fact, they are messing around and dealing with radical politics, girls and gamble. However the oldest discovers love, and the three realize it is time for change.",0,0,Ah Nerede,tr +108282,Murder on Flight 502,1975-11-21,97.0,,,tt0073418,,"On a flight to London, a note is found stating that there will be murders taking place on the airliner before it lands.",0,0,Murder on Flight 502,en +76829,Lovers Like Us,1975-11-26,107.0,,,tt0073663,,"Caracas, Venezuela. Just after her engagement with Vittorio, Nelly runs away from him. As he pursued her, she looks for help to Martin, a French middle-aged man she met by accident. He helps her to escape and drives her to the airport and gives her a plane ticket to Paris. Then he thinks he can go back to his peaceful lonely life on his island. Of course, he is wrong and will be bothered again by Nelly...",0,0,Le sauvage,fr +52555,Chronicle of the Years of Fire,1975-11-26,177.0,,,tt0072782,,The beginings of the Algerian Revolution as seen through the eyes of a peasant.,0,0,Chronique des années de braise,fr +208309,Hotel Pacific,1975-11-27,94.0,,,tt0075454,,"Set in the early 1930s, a young man finds a job as a dishwasher in a hotel and quickly works his way up the ladder. Loosely based on the novel by Henryk Worcell.",0,0,Zaklęte rewiry,pl +85516,Requiem for a Village,1975-12-01,68.0,,,tt1877747,,"The idyllic, rural past of a Suffolk village comes to life through the memories of an old man who tends a country graveyard.",0,0,Requiem for a Village,en +91259,Lady Cocoa,1975-12-01,93.0,,,tt0073259,,Foxy Lady Cocoa is out to take down her mobster boyfriend.,0,0,Lady Cocoa,en +983,The Man Who Would Be King,1975-12-03,129.0,,,tt0073341,"Rudyard Kipling's epic of splendor, spectacle and high adventure at the top of a legendary world.","A robust adventure about two British adventurers who take over primitive Kafiristan as ""godlike"" rulers, meeting a tragic end through their desire for a native girl. Based on a short story by Rudyard Kipling.",0,0,The Man Who Would Be King,en +28209,Emmanuelle II,1975-12-15,84.0,,39438,tt0072933,Nothing is wrong if it feels good,"Emmanuelle returns to her husband in Hong Kong and proceeds to have several extramarital affairs -- with his knowledge, of course. Her husband's lover and American guest are both very puzzled by their openness.",0,0,Emmanuelle 2: L'antivierge,fr +10915,"A Genius, Two Friends, and an Idiot",1975-12-16,117.0,,409026,tt0073036,,"Three rogues set out to rob $300,000 from an Indian-hating cavalry major.",0,0,"Un genio, due compari, un pollo",it +106623,Mark Shoots First,1975-12-22,95.0,,445118,tt0072712,,"Mark Terzi goes to Genoa to take on the case of a serial killer who calls himself ""The Sphinx"".",0,0,Mark il poliziotto spara per primo,it +316170,Uomo e galantuomo,1975-12-26,,,,tt1339686,,,0,0,Uomo e galantuomo,it +72611,"Hello, I'm Your Aunt!",1975-12-26,98.0,,,tt0073927,,"A funny comedy based on famous Brandon Thomas' play ""Charley's Aunt"".",0,0,"Zdravstvuyte, Ya Vasha Tyotya!",ru +134209,A Wedding Suit,1976-01-01,54.0,,,tt0074782,,"A woman orders a suit from a tailor for her young son to wear to her sister's wedding. The tailor's apprentice, together with two other teenage boys who work in the same building, devise a plan to try on the suit at night to see what it feels like.",0,0,لباسی برای عروسی‎‎,fa +31408,Hababam Sınıfı Uyanıyor,1976-01-01,94.0,,473983,tt0252490,,No overview found.,0,0,Hababam Sınıfı Uyanıyor,tr +67177,Dear Michele,1976-01-01,0.0,,,tt0074284,,,0,0,Caro Michele,it +69610,Kapıcılar Kralı,1976-01-01,0.0,,,tt0252591,,,0,0,Kapıcılar Kralı,tr +350765,Langsamer Sommer,1976-01-01,84.0,,,tt0074770,,"A man visits a friend's house. They watch a film of an earlier time when they were hanging around, meeting girls.",0,0,Langsamer Sommer,en +38794,Tosun Pasha,1976-01-01,94.0,,,tt0253828,Green Valley is ours!,"Late 19th century in Alexandria. Two traditionally rival Turkish families, ""Seferoglu""s and ""Tellioglu""s are competing for the ""Green Valley"". The winner will be determined by Daver Bey, who has a beautiful young daughter, Leyla. Both families try to arrange a marriage between a man from their family and Leyla, so that Daver Bey will be inclined to give the green valley to his ""relatives"". Tellioglus, who are behind in the race, desperately find a final solution: They will fake their idiotic butler, Saban, as the highest ranked Ottoman soldier in Egypt: Tosun Pasha.",64200,698200,Tosun Paşa,en +42242,Swashbuckler,1976-01-01,101.0,,,tt0075294,,A pirate and a hot-tempered noblewoman join forces to protect Jamaica from a tyrant.,0,0,Swashbuckler,en +31405,Milk Brothers,1976-02-01,80.0,,,tt0253779,,Shaban is Ramadan's best friend whom he met whilst serving as a marine in the Ottoman navy forces. But things get really complicated when Ramadan falls in love with Shaban's milk sister,0,0,Süt Kardeşler,tr +31913,"Next Stop, Greenwich Village",1976-02-04,111.0,,,tt0074963,1953 Was a Good Year for Leaving Home,An aspiring Jewish actor moves out of his parents' Brooklyn apartment to seek his fortune in the bohemian life of Greenwich Village in 1953.,0,0,"Next Stop, Greenwich Village",en +119010,"Sasquatch, the Legend of Bigfoot",1976-02-13,102.0,,,tt0078203,The incredible story of seven men who defied death in a primitive wilderness where no man had gone before.... and survived to tell the shocking story of this legendary creature.,Scientists mount an expedition to find a Bigfoot-type creature.,0,0,"Sasquatch, the Legend of Bigfoot",en +11813,Il soldato di ventura,1976-02-19,95.0,,,tt0073726,,No overview found.,0,0,Il soldato di ventura,it +197611,Dragonfly,1976-03-01,98.0,,,tt0075014,,"A man, recently released from a mental hospital, tries to track down his family.",0,0,Dragonfly,en +116439,Foxtrot,1976-03-01,91.0,,,tt0073014,,Liviu (Peter O'Toole) and Julia (Charlotte Rampling) decide it's best to hide out on an island of paradise until the war ends. However politics and jealousy ensue when Larsen (Max Von Sydow) enter the mix.,0,0,Foxtrot,en +43753,Creature from Black Lake,1976-03-01,95.0,,,tt0074356,,Two men exploring the Louisiana swamps run into a Bigfoot-type creature.,0,0,Creature from Black Lake,en +10834,Kings of the Road,1976-03-04,175.0,http://www.wim-wenders.com/movies/movies_spec/kingsoftheroad/kingsoftheroad.htm,,tt0073152,,"Itinerant projection-equipment repairman Bruno Winter (Rüdiger Vogler) and depressed hitchhiker Robert Lander (Hanns Zischler)--a doctor who has just been through a break-up with his wife and a half-hearted suicide attempt--travel along the Western side of the East-German border in a repair truck, visiting worn-out movie theaters, learning to communicate across their differences. The film features stunning black-and-white cinematography from Robbie Muller and a pensive score from Improved Sound Limited.",0,0,Im Lauf der Zeit,de +334795,The End of a Vacation,1986-01-01,23.0,,,tt2290966,Victor Tsoy's movie debut,Four music videos of Kino band joined together with a single plot,0,0,Конец Каникул,ru +22020,Black Shampoo,1976-03-05,82.0,,,tt0074214,,"John Daniels stars as Jonathan Knight, the owner of ""Mr. Jonathans"", the most successful hair salon for women on the Sunset Strip. Everything is cool for Jonathan until he messes with the mob in an effort to protect his young, attractive receptionist from her former boss.",0,0,Black Shampoo,en +84425,Shadows in an Empty Room,1976-03-09,100.0,,,tt0074083,Enter at your own risk ... for there is no such thing as a truly empty room,"An Ottawa police captain searches for the person who poisoned his sister, who was attending the university in Montreal. So desperate is he for revenge that he begin to use his own brutal methods to find the killer. Soon he discovers that not everything is what he thought it was.",0,0,Una Magnum Special per Tony Saitta,en +4580,Je t'aime moi non plus,1976-03-10,90.0,,,tt0073196,"I Love You, I Don't",A waitress with boyish looks and the gay driver of a garbage truck fall in love.,0,0,Je t'aime moi non plus,fr +16176,The Slipper and the Rose,1976-03-24,146.0,,,tt0075232,You'll forget every other love story you ever saw . . . or sang to.,"In the tiny kingdom of Euphrania, the King and his court are most anxious to get Prince Edward wed. But Edward wants to marry for love. Meanwhile, young Cinderella finds life drastically altered with her father's death as she's forced to be a servant in her own house. But a cheery fairy godmother helps her with her impossible tasks, and even gets her to take an evening out at the King's bride-fin",0,0,The Slipper and the Rose,en +21950,Jackson County Jail,1976-03-31,84.0,,,tt0074706,The cops are there to protect her… but who will protect her from the cops?,This is a powerful drama about a young woman who stumbles into a nightmare land of hijacking and humiliation while driving cross-country from California to New York.,445000,2300000,Jackson County Jail,en +50186,Gypsies Are Found Near Heaven,1976-04-04,101.0,,,tt0073781,,"This colourful, music-filled and sensual melodrama based on early stories by Maxim Gorky tells the fatal love story between the beautiful and rebellious girl Rada and the handsome horse thief Zobar. The story is set in early 20th century Bessarabia, now part of Moldova, then belonging to the Austro-Hungarian Empire.",0,0,Tabor Ukhodit v Nebo,en +21554,Sparkle,1976-04-07,98.0,,,tt0075249,,Three sisters (Sister and the Sisters) from Harlem who become singers Sister (Lonette McKee) becomes involved with drugs and Sparkle ends up being the one who gets famous. This movie tells about how drugs ruined Sister's relationships and eventually ended her life.,0,0,Sparkle,en +92298,The Sailor Who Fell from Grace with the Sea,1976-04-11,105.0,,,tt0075161,,"When a widowed mother falls in love with an American sailor, her troubled young son is pressured by the bullying leader of his clique to seek revenge.",0,0,The Sailor Who Fell from Grace with the Sea,en +43751,Who Can Kill a Child?,1976-04-26,107.0,,,tt0075462,"A nice place to visit, but you could never LIVE there!",A couple of English tourists arrive on an island where all the children have gone crazy and are murdering the adults.,0,0,¿Quién puede matar a un niño?,es +252845,I prosseneti,1976-04-28,0.0,,,tt0196025,,,0,0,I prosseneti,it +47096,One Way or Another,1976-04-30,120.0,,,tt0075335,,"Set during a retreat of Christian Democrat politicians who practice spiritual exercises together, it is an allegory of corrupted power. Disturbing, claustrophobic settings are the background to a series of mysterious crimes.",0,0,Todo modo,it +107146,The Sell Out,1976-05-01,88.0,,,tt0075188,,"This action drama centers on a former CIA operative who grudgingly rejoins the spy game due to the machinations of his one-time student - a screw up who goes to work for the Soviets. As his job drags him deeper into a dangerous and under-handed world, the student wants out of the agency and oout of the U.S.S.R. But the man's choices have made him a target and now both the United States and Russia want him dead, sending their mos able hit men to do it.",0,0,The Sell Out,en +21955,The Pom Pom Girls,1976-05-01,89.0,http://www.crownintlpictures.com/ostitles.html,,tt0075086,How can anyone forget the girls who really turned us on?,"A football player at Rosedale High School is amorous of one of the cheerleaders, who is going with another guy. Another player can't decide which of two cheerleaders he wants to be with. Meanwhile, the Big Game with Hardin High School is approaching, and a prank war is in full swing.",0,17883410,The Pom Pom Girls,en +89720,Kiss of the Tarantula,1976-05-01,85.0,,,tt0131449,So silent. So deadly. So final.,"A disturbed teenage girl unleashes her pet tarantula against her ""enemies.""",0,0,Kiss of the Tarantula,en +277631,Birch Interval,1976-05-02,104.0,,,tt0075756,,"A young girl is sent to live with Amish relatives in post-war Pennsylvania, where her life dramatically changes.",0,0,Birch Interval,en +317168,Santo vs. the She-Wolves,1976-05-13,85.0,,,tt0208423,,Also known as Santo vs. the She-Wolves,0,0,Santo vs. las lobas,es +42252,The Missouri Breaks,1976-05-19,126.0,,,tt0074906,,"Tom Logan is a horse thief. Rancher David Braxton has horses, and a daughter, worth stealing. But Braxton has just hired Lee Clayton, an infamous ""regulator"", to hunt down the horse thieves; one at a time.",0,0,The Missouri Breaks,en +48205,The Marquise of O,1976-05-19,102.0,,,tt0074870,,A German Marquise has to deal with a pregnancy she cannot explain and an infatuated Russian Count.,0,0,Die Marquise von O...,de +97593,Shark Kill,1976-05-20,76.0,,,tt0075205,Blood Red Waters on a Moonlit Night,Two adventurers set sail to find a giant man-eating great white shark.,0,0,Shark Kill,en +113525,Embryo,1976-05-21,104.0,,,tt0074475,From Embryo to woman in 4 and a half weeks.,"A scientist doing experiments on a human fetus discovers a method to accelerate the fetus into a mature adult in just a few days. However, the ""adult"" fetus turns into a homicidal psycho and looks for a new formula to prevent her from aging further.",0,0,Embryo,en +55784,Grizzly,1976-05-21,91.0,,,tt0074593,This summer the National Park will be besieged by a killer grizzly bear!,"A fifteen-foot grizzly bear figures out that humans make for a tasty treat. As a park ranger tries rallying his men to bring about the bear's capture or destruction, his efforts are thwarted by the introduction of dozens of drunken hunters into the area.",750000,0,Grizzly,en +63773,Leadbelly,1976-05-28,126.0,,,tt0074781,You can't bury a black legend like Leadbelly!,"The life of Blues and folk singer Huddie Leadbetter, nicknamed Leadbelly is recounted. Covering the good times and bad from his 20s to 40s. Much of that time was spent on chain gangs in the south. Even in prison he became well known for the songs he had composed and sung during and before the time he spent there.",0,0,Leadbelly,en +71320,Breaking Point,1976-06-02,92.0,,,tt0074238,There's nothing more deadly than a gentle man pushed too far,The Mafia tries to take revenge against a man who testified against them in court.,0,0,Breaking Point,en +72614,"One-Two, Soldiers Were Going...",1976-06-06,87.0,,,tt0074161,,The families of 18 soldiers who heroically died in 1944 are meeting at the place of the squad last battle.,0,0,"Aty-Baty, Shli Soldaty...",ru +11422,Midway,1976-06-18,132.0,,,tt0074899,A war's defining battle. A nation's defining moment.p,"This war drama depicts the U.S. and Japanese forces in the naval Battle of Midway, which became a turning point for Americans during World War II.",0,0,Midway,en +10803,Logan's Run,1976-06-23,119.0,,,tt0074812,The only thing you can't have in Logan's world is your 30th birthday. Unless you run away.,"An idyllic sci-fi future has one major drawback: All citizens get a chance of being 'renewed' in a Civic Ceremony at their 30th birthday, unless they run and escape before their time comes.",9000000,25000000,Logan's Run,en +35200,The Return of a Man Called Horse,1976-06-28,129.0,,383632,tt0075132,The all-new adventures of the English Lord with the soul of an Indian.,"Lord John Morgan has returned to civilized life in England, but finds he has nothing but disdain for that life. Yearning to embrace the simplicity of the American West-and the Yellow Hands Sioux tribe he left behind, Morgan returns to the tribe's land only to discover that they've been decimated by ruthless, government-backed fur traders. They must regain their land, led by Horse.",0,0,The Return of a Man Called Horse,en +10747,The Outlaw Josey Wales,1976-06-30,135.0,,,tt0075029,...an army of one.,"After avenging his family's brutal murder, Wales is pursued by a pack of soldiers. He prefers to travel alone, but ragtag outcasts are drawn to him - and Wales can't bring himself to leave them unprotected.",3700000,31800000,The Outlaw Josey Wales,en +271550,"Little Girl, Big Tease",1976-07-01,0.0,,,tt0125837,,A 16 year-old society girl is kidnapped and exploited by a group of people including one of her high school teachers. One by one Virginia seduces her captors and is able to gain the upper hand.,0,0,"Little Girl, Big Tease",en +48419,God Speed You! Black Emperor,1976-07-01,90.0,,,tt0261555,,"1970s Japan saw the rise of biker gangs, known as Bōsōzoku, which drew the interest of the media. God Speed You! Black Emperor follows a member of the bike gang and his interaction with his parents, after he gets in trouble with the police.",0,0,ゴッド・スピード・ユー! BLACK EMPEROR,ja +60269,Mad Dog Morgan,1976-07-09,102.0,,,tt0074836,"beaten, branded, brutalized, but never broken.","The true story of Irish outlaw Daniel Morgan, who is wanted, dead or alive, in Australia during the 1850s.",0,0,Mad Dog Morgan,en +79853,38 Parrots,1976-07-13,8.0,http://en.wikipedia.org/wiki/38_Parrots,,tt0211896,I am much longer in parrots!,"Parrot, Monkey and Elephant are excited to understand how long their friend Boa is. They finally arrive to the result, though it is measured in quite a strange fashion.",0,0,38 попугаев,ru +38099,Hand of Death,1976-07-15,95.0,,,tt0073694,,A survivor of an attack on a rebel group opposing the Manchu invasion of China creates the Goose Fist fighting technique and tries for revenge on a traitor.,0,0,少林門,zh +25241,Squirm,1976-07-30,92.0,,,tt0075261,This was the night of the CRAWLING TERROR!,"At the beginning of the film, we learn from one of the characters that earthworms can be called to the surface with electricity, but somehow it turns them into vicious flesh-eaters. Sure enough, a storm that night causes some power lines to break and touch the ground, drawing millions of man-eating worms out of the earth, and into town where they quickly start munching on the locals.",0,0,Squirm,en +94809,Violent Naples,1976-08-07,95.0,,,tt0074952,,"Inspector Betti (Maurizio Merli) is transferred to Naples and immediately after his arrival receives a warm welcome from The Commandante (Barry Sullivan), the city's crime lord. Betti then goes on a personal mission against corruption and organized crime, and tries to force the syndicate out of town with any means necessary.",0,0,Napoli violenta,it +12584,The Shootist,1976-08-11,100.0,,,tt0075213,He's got to face a gunfight once more to live up to his legend once more. To win just one more time.,"Afflicted with a terminal illness John Bernard Brooks, the last of the legendary gunfighters, quietly returns to Carson City for medical attention from his old friend Dr. Hostetler. Aware that his days are numbered, the troubled man seeks solace and peace in a boarding house run by a widow and her son.However, it is not Brooks' fate to die in peace, as he becomes embroiled in one last valiant battle.",0,8091910,The Shootist,en +39979,The Big Racket,1976-08-12,104.0,,,tt0074586,Someone's gonna pay...,"Nico Palmieri is a police inspector who battles against hoodlums terrorising a sleepy Italian village, extorting cash from the locals.",0,0,Il grande racket,it +38362,High Rollers,1976-08-12,110.0,,,tt0076101,,"Belle Duke, in order to get revenge on her former lover Philip Bang, organize his jail break. But instead of Philip is the Italian Felice Brianza, AKAS Felix, to escape. Now Felix is obliged to help Philip to escape. He will succeeded and from that moment on the two will join to defraud Belle. The swindle plot become more complicate when Felix falls in love for Philip's daughter.",0,0,Bluff - Storia di truffe e di imbroglioni,it +44690,J.D.'s Revenge,1976-08-25,95.0,,,tt0074703,"He came back from the dead to possess a man's soul, make love to his woman, and get the Vengeance he craved!",A college student is possessed by a 40's era gangster.,0,0,J.D.'s Revenge,en +74171,Sahte Kabadayı,1976-09-01,,,,tt0253619,,,0,0,Sahte Kabadayı,tr +3870,1900,1976-09-03,317.0,,,tt0074084,,"Set in Bertolucci's ancestral region of Emilia, the film chronicles the lives of two men during the political turmoils that took place in Italy in the first half on the 20th century.",9000000,0,Novecento,it +9385,The Twelve Tasks of Asterix,1976-09-08,82.0,,94039,tt0072901,,"Asterix and Obelix depart on an adventure to complete twelve impossible tasks to prove to Caesar that they are as strong as the Gods. You'll roar with laughter as they outwit, outrun, and generally outrage the very people who are trying to prove them ""only human"".",0,0,Les 12 travaux d'Astérix,fr +4286,The Innocent,1976-09-09,125.0,,,tt0074686,,"Tullio Hermil is a chauvinist aristocrat who flaunts his mistress to his wife, but when he believes she has been unfaithful he becomes enamored of her again.",0,0,L'innocente,it +148807,"Lost, Lost, Lost",1976-09-14,180.0,http://jonasmekasfilms.com/dvd/?film=lost,,tt0209110,,"Jonas Mekas adjusts to a life in exile in New York in his autobiographical film, shot between 1949 and 1963.",0,0,"Lost, Lost, Lost",en +26298,Here and Elsewhere,1976-09-15,53.0,,,tt0071646,,"Godard, Miéville and Gorin (aka the ""Dziga Vertov Group"") examine the parallel lives of two families - one French, one Palestinian - using an exploratory combination of film and video.",0,0,Ici et ailleurs,fr +1723,The Front,1976-09-17,95.0,,,tt0074554,,"A cashier poses as a writer for blacklisted talents to submit their work through, but the injustice around him pushes him to take a stand.",0,0,The Front,en +44960,The Clown Murders,1976-09-17,96.0,,,tt0072792,It started as a joke...,"A group of young professionals decides to play a practical joke on one of their ex-girlfriends who married a rich man who is about to close a major real estate deal. They plan to kidnap her and mess up the deal. Unfortunately, the joke becomes deadly serious.",0,0,The Clown Murders,en +206514,"I, Claudius",1976-09-20,669.0,http://www.bbc.co.uk/programmes/b006mhmk,,tt0074006,,"Tracing the lives of several Roman emperors, this is an epic of ruthless ambition, shocking debauchery and murderous intrigue set in one of history's most fascinating eras. Bearing witness to the saga is Claudius, whose stutter and limp have marked him a fool - yet whom prophecies have foretold will one day rule Rome.",0,0,"I, Claudius",en +40139,Mansion of the Doomed,1976-10-01,89.0,,,tt0076361,Keep An Eye Out For Dr. Chaney ... He Needs It!,An insane surgeon finds himself up to his armpits in eyeballs after guilt prompts him to begin removing the eyes of abducted people in hopes of performing transplants on his daughter who lost her own in a car-accident he caused.,0,0,Mansion of the Doomed,en +10518,Marathon Man,1976-10-05,125.0,,,tt0074860,One man's dangerous attempts to clear his father's name.,"A graduate student and obsessive runner in New York is drawn into a mysterious plot involving his brother, a member of the secretive Division.",6500000,21709020,Marathon Man,en +198001,Bernice Bobs Her Hair,1976-10-06,45.0,,,tt0074200,,"Bernice, a shy young woman, leaves her safe home to go visit her flapper cousin. When her cousin tries to teach Bernice how to be much more modern, Bernice gives her much more than she bargained for. - imdb",0,0,Bernice Bobs Her Hair,en +52808,"Rome, Armed to the Teeth",1976-10-10,95.0,,,tt0075152,,"A tough, violent cop who doesn't mind bending the law goes after a machine-gun-carrying, hunchbacked psychotic killer.",0,0,Roma a mano armata,it +13549,Burnt Offerings,1976-10-18,116.0,,,tt0074258,"Up the ancient stairs, behind the locked door, something lives, something evil, from which no one has ever returned.",A couple and their 12-year-old son move into a giant house for the summer. Things start acting strange almost immediately. It seems that every time some gets hurt on the grounds the beat-up house seems to repair itself.,0,0,Burnt Offerings,en +81223,Brunet wieczorową porą,1976-10-18,90.0,,,tt0074251,,"Modest editor, has shipped his wife and kids for the weekend, and is trying to relax in his house at the outskirts of Warsaw. His quiet evening is only disturbed by the accidental forecast made by a Gypsy woman, that at evening time he will murder a mysterious brunet.",0,0,Brunet wieczorową porą,pl +52914,Squadra antifurto,1976-10-29,101.0,,188138,tt0076753,,"A gang of thieves are robbing luxury apartments in Rome, but after emptying the villa of the wealthy Mr. Douglas, the thieves are beginning to die..",0,0,Squadra antifurto,it +10774,Network,1976-11-01,121.0,,,tt0074958,Not since the dawn of time has America experienced a man like Howard Beale!,A TV network cynically exploits a deranged ex-TV anchor's ravings and revelations about the media for their own profit.,3800000,23689877,Network,en +7340,Carrie,1976-11-03,98.0,,257053,tt0074285,If you’ve got a taste for terror... take Carrie to the prom.,"Carrie may be ostracized, but the shy teen has the ability to move objects with her mind. So when the high school ""in crowd"" torments her with a sick joke at the prom, she lashes out with devastating -- and deadly -- power.",1800000,33800000,Carrie,en +82598,21 Hours at Munich,1976-11-07,101.0,,,tt0074085,,A dramatization of the incident in 1972 when Arab terrorists broke into the Olympic compound in Munich and murdered 11 Israeli athletes.,0,0,21 Hours at Munich,en +104528,Dogs,1976-11-11,90.0,,,tt0074419,Don't Pet Them ... Fear Them!,A pack of domesticated dogs go on a killing spree in southern California.,0,0,Dogs,en +86241,Welcome to L.A.,1976-11-12,106.0,,,tt0076910,City of the One Night Stands.,"The lives and romantic entanglements of a group of young adults who have achieved ""overnight"" success in Los Angeles.",0,0,Welcome to L.A.,en +27138,Sybil,1976-11-14,198.0,,,tt0075296,,"The true story of a young woman named Sybil, whose childhood was so harrowing to her that she developed at least 13 different personalities.",0,0,Sybil,en +234815,Las Poquianchis,1976-11-17,0.0,,,tt0075089,,,0,0,Las Poquianchis,es +106155,A Special Cop in Action,1976-11-27,98.0,,,tt0179901,,"A school bus with young children being kidnapped. Commissario Betti will solve the case. High action is promised, including hostage, bank robberies, car chases, prison scenes and mafia bosses!",0,0,Italia a mano armata,it +94674,The Arrival of Joachim Stiller,1976-11-29,120.0,,,tt0122571,,The film tells the story of Freek Groenevelt and Simone Marijnissen whose lives are taken over by Joachim Stiller.,0,0,De komst van Joachim Stiller,nl +64983,Barocco,1976-12-08,110.0,,,tt0074184,,A woman falls in love with the man who killed her former boyfriend.,0,0,Barocco,fr +30059,Rudolph's Shiny New Year,1976-12-10,60.0,,242587,tt0073640,,"Rudolph must find Happy, the baby new year, before the midnight of New Year's Eve.",0,0,Rudolph's Shiny New Year,en +167556,My Friends Need Killing,1976-12-10,73.0,,,tt0074942,Would you like to be this man's friend?,"A traumatized Vietnam veteran goes on a killing spree, targeting the men with whom he served in the army.",0,0,My Friends Need Killing,en +19610,A Star Is Born,1976-12-16,139.0,,,tt0075265,,"A Star Is Born is a 1976 rock music film telling the story of a young woman, played by Barbra Streisand who enters show business, and meets and falls in love with an established male star, played by Kris Kristofferson, only to find her career ascending while his goes into decline.",6000000,161000000,A Star Is Born,en +15943,The Shaggy D.A.,1976-12-17,91.0,,294519,tt0075200,The Only Candidate with a Law Degree and a Pedigree!,"Wilby Daniels, a successful lawyer running for District Attorney, suddenly finds himself being transformed into an English sheepdog. Somehow he has to keep his change a secret and find just what is causing it, all the while eluding the local dog catcher.",0,0,The Shaggy D.A.,en +75641,Voyage of the Damned,1976-12-22,155.0,,,tt0075406,It lasted 30 days...You will remember it as long as you live.,A luxury liner carries Jewish refugees from Hitler's Germany in a desperate fight for survival.,0,0,Voyage of the Damned,en +68882,Quelle strane occasioni,1976-12-23,0.0,,,tt0075114,,70s Italian comedy.,0,0,Quelle strane occasioni,it +92309,The Monkey Hustle,1976-12-24,90.0,,,tt0076404,Live the scam. Work the sham.,"A new highway threatens a Chicago neighborhood, so to protest the residents throw a block party.",0,0,The Monkey Hustle,en +19971,The Little Girl Who Lives Down the Lane,1976-12-25,91.0,,,tt0074806,"Ask her no questions, she'll tell you no lies. Ask her too many and somebody dies.","Quiet, withdrawn 13-year-old Rynn Jacobs lives peacefully in her home in a New England beach town. Whenever the prying landlady inquires after Rynn's father, she politely claims that he's in the city on business. But when the landlady's creepy and increasingly persistent son, Frank, won't leave Rynn alone, she teams up with kindly neighbor boy Mario to maintain the dark family secret that she's been keeping to herself.",0,0,The Little Girl Who Lives Down the Lane,en +106848,Hamlet,1980-05-25,210.0,,,tt0080835,,"Hamlet comes home from university to find his uncle married to his mother, and his father's ghost haunting the battlements and scaring the watch. Then his father's ghost directs him to seek revenge.",0,0,Hamlet,en +46114,The 36 Crazy Fists,1977-01-01,90.0,,,tt0076661,,"When a young man's village is destroyed by a band of thugs, he seeks help from a great kung-fu master, but his real lessons come from a drunk old man, he basically learns kung fu by accident and seeks his revenge.",0,0,San shi liu mi xing quan,zh +270336,The Angel of Vengeance - The Female Hamlet,1977-01-01,86.0,,,tt0076201,,An extraordinary interpretation of Hamlet from the phenomenal director of the Turkish Cinema: Metin Erksan. In this presentation Hamlet is female and search vengeance of her father. The relotionship of mother and son has a metamorphosis in that situation and force She-Hamlet to look for the lost father-and-daughter affection.,0,0,Kadin Hamlet,en +70086,George Carlin - On Location at USC,1977-01-01,85.0,http://www.georgecarlin.com,479319,tt0249854,,"George Carlin's first ever comedy special, filmed live at the University of Southern California. Here, he talks about monopoly, flying on planes, random thoughts, walking, and other things.",0,0,George Carlin - On Location at USC,en +53223,Powers of Ten,1977-01-01,9.0,http://www.eamesoffice.com/the-work/powers-of-ten/,,tt0078106,,"A scientific film essay, narrated by Phil Morrison. A set of pictures of two picnickers in a park, with the area of each frame one-tenth the size of the one before. Starting from a view of the entire known universe, the camera gradually zooms in until we are viewing the subatomic particles on a man's hand.",0,0,Powers of Ten,en +303966,Black Magic,1977-01-01,0.0,,,tt0245977,,A family is plagued by the vengeful spirit of a murdered man who uses the body of an innocent child to enact his revenge.,0,0,Jadu Tona,hi +41923,Outrageous!,1977-01-01,96.0,,,tt0076513,,"Gay hair stylist Robin Turner does a lot of work for drag queens, all the while dreaming that he'll someday find the courage to perform in drag himself. When his schizophrenic friend, Liza, turns up looking for a place to stay, he little suspects that she'll be the one to finally motivate him. But over time the two form an increasingly tight bond, Robin helping Liza through an unplanned pregnancy and Liza pushing Robin to develop a successful nightclub act.",0,0,Outrageous!,en +72199,Bobik Visiting Barbos,1977-01-01,9.0,,,tt1070753,,"Two dogs, one stray the other well-off, become friends.",0,0,Бобик в гостях у Барбоса,ru +125063,The Glitterball,1977-01-01,53.0,,,tt0192075,,"Two teenage boys try to help a tiny spherical alien get back to its mothership, while the army and a devious petty crook pursue the creature for its wonderful powers.",0,0,The Glitterball,en +110123,Incredible Rocky Mountain Race,1977-01-01,100.0,,,tt0076192,,"An old man observes a boy bullying his playmates and treats him to a morality lesson. The man tells the story of the epic cross-country race between a young Mark Twain and his rival, Mike Fink. The bulk of the film depicts the race, which proves to be more a test of character than of stamina",0,0,Incredible Rocky Mountain Race,en +38022,Amar Akbar Anthony,1977-01-02,184.0,,,tt0075669,,"Amar Akbar Anthony (Hindi: अमर अकबर अन्थोनी) is a 1977 Bollywood action comedy film with a lost and found theme, about three brothers separated during their childhood who grew up in three homes, adopting three religions. They meet in their youth to fight a common villain. It was the biggest blockbuster of 1977, and won several awards at 25th Filmfare Awards including Best Actor, Best Music Director and Best Editing.",0,0,अमर अकबर एन्थोनी,hi +28682,Emanuelle in America,1977-01-05,100.0,,227140,tt0074473,,"An American journalist travels throughout the world in search of a good story by joining a modern-day harem and traveling to Venice to see what really goes on at diplomatic parties. While trying to expose a corrupt government official, Emanuelle stumbles upon a group that uses kidnapped girls to make and sell snuff films",0,0,Emanuelle in America,it +74822,Judge Fayard Called the Sheriff,1977-01-12,0.0,,,tt0076242,,,0,0,Le Juge Fayard dit le shériff,fr +208579,The Rites of May,1977-01-13,105.0,,,tt0256106,,"A young cameraman, Jun Torres, encounters a strange woman, Teresa, in his hometown at the time of Lent.",0,0,Itim,tl +80094,The Apple Game,1977-01-16,100.0,,,tt0074652,,Sarcastic comedy about the Czechoslovakia of the seventies.,0,0,Hra o jablko,en +28656,"Ilsa, the Mad Butcher",1977-01-21,90.0,,123249,tt0076112,"Once commited to her care, You'll be too terrified to die!.. You'll choke with fear!.. Recoil in horror from her unleashed fury!..","Ilsa, now a vicious warden, runs a mental-hospital for young women.",0,0,Greta - Haus ohne Männer,de +30876,Last Cannibal World,1977-02-08,88.0,,,tt0078437,A stone-age world of horrors ... ONLY ONE SURVIVED.,An oil prospector escapes from capture by a primitive cannibal tribe in the Philippine rain forest and heads out to locate his missing companion and their plane to return home.,0,0,Ultimo mondo cannibale,en +224,Man of Marble,1977-02-25,165.0,,457305,tt0075902,,Man of Marble is a Polish film about a student making a film about a bricklayer who was once idolized. She interviews people who knew him and finds old footage that lead to an unfolding mystery that causes her producer to cancel the project.,0,0,Człowiek z marmuru,pl +49158,Tentacles,1977-02-25,102.0,,,tt0076809,It's Turning the Beach ... Into a Buffet!,"Several people disappear from and at the sea. Their bodies are found gnawed to the skeleton, even the marrow is missing. The scientists have no idea which animal could do such things. Dr. Turner begins to suspect that the company which builds a tunnel beneath the bay might have poisoned the environment and caused an octopus to mutate to giant dimensions...",750000,3000000,Tentacoli,en +264080,SST: Death Flight,1977-02-25,89.0,,,tt0076650,ONE HOUR AFTER TAKE OFF...SUDDENLY IT HAPPENS! The Inaugural Flight of America's First SST. 250 People Trapped By a Deadly Menace on a Supersonic Giant...And No Airport in the World Will Let Them Land!,"On its maiden flight, the crew of America's first supersonic transport learns that it may not be able to land, due to an act of sabotage and a deadly flu onboard.",0,0,SST: Death Flight,en +121530,Boys,1977-02-26,83.0,,,tt0075962,,Another personal movie by Danish director Nils Malmros.,0,0,Drenge,da +46448,Charleston,1977-03-05,93.0,,,tt0077319,,Charleston is a 1977 Italian comedy film written and directed by Marcello Fondato. It reprises the style of the film The Sting.,0,0,Charleston,it +50374,Black Sunday,1977-03-11,143.0,,,tt0075765,It could be tomorrow!,An Israeli anti-terrorist agent must stop a disgruntled Vietnam vet cooperating in a plot to commit a terrorist plot at the Super Bowl.,0,0,Black Sunday,en +985,Eraserhead,1977-03-19,89.0,,,tt0074486,Where your nightmares end...,"Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.",10000,7000000,Eraserhead,en +55628,The Last Remake of Beau Geste,1977-06-15,85.0,,,tt0076297,A DIFFERENT kind of love story,Digby Geste (Feldman) and his ‘identical’ twin brother Beau (York) compete with their stepmother (Ann-Margeret) over possession of a priceless family heirloom.,0,0,The Last Remake of Beau Geste,en +32029,The Domino Principle,1977-03-23,100.0,,,tt0075950,,"Tucker is a chronic underachiever and a loser. A Vietnam war veteran who just can't seem to keep out of trouble, in the years since his discharge. The only thing he got out of the war was his skill with a rifle. Now, serving a long stretch in prison for murder, he has hit rock-bottom. But one day a man in a three-piece suit visits him in prison, a man he has never seen before, and informs him that he can walk out of prison a free man if he will shoot someone for them, no questions asked.",0,0,The Domino Principle,en +19108,Breaker! Breaker!,1977-04-01,86.0,,,tt0075783,,"Truck driver searches for his brother, who has disappeared in a town run by a corrupt judge.",0,0,Breaker! Breaker!,en +31919,The Van,1977-04-06,92.0,http://www.crownintlpictures.com/tztitles.html,,tt0075378,Bobby has a new machine... and everyone wants a ride!,Bobby blows all his college savings on a van and tries to get the girl of his dreams. It's a wild time with Bobby and his friends.,0,0,The Van,en +138535,11 x 14,1977-04-16,81.0,,,tt0156246,,"65 shots making up a cryptically alluded-to narrative: a lesbian couple's Midwest travels, a hitchhiking young man's journeys, the story of a man who may be having an affair.",0,0,11 x 14,en +703,Annie Hall,1977-04-19,93.0,,,tt0075686,A nervous romance.,"In the city of New York, comedian Alvy Singer falls in love with the ditsy Annie Hall.",4000000,38251425,Annie Hall,en +1421,The Man Who Loved Women,1977-04-27,119.0,,,tt0076155,,At Bertrand Morane's burial there are many of the women that the 40-year-old engineer loved. In flashback Bertrand's life and love affairs are told by himself while writing an autobiographical novel.,0,0,L'Homme qui aimait les femmes,fr +175924,Between the Lines,1977-04-27,101.0,,,tt0075744,,Story of an underground newspaper in Boston about to be taken over by big business.,0,0,Between the Lines,en +49353,Snowbeast,1977-04-28,86.0,,,tt0076731,The legendary creature is half man... half animal... and a cold blooded killer!,"In this made for TV film, an enormous and angry bigfoot creature begins to terrorize a Colorado Ski Resort during a winter carnival, by eating several skiers. At first everyone insists it is just a bear, until ski patrolman Tony Rill sees a white shadowy beastly shape disappearing into the woods. Although Tony's grandmother Mrs. Carrie Rill, who owns the Ski Resort and the town sheriff, Sheriff Paraday disagree, it soon becomes clear when the creature finally attacks the town.",0,0,Snowbeast,en +72826,Legend of Dinosaurs and Monster Birds,1977-04-29,92.0,,,tt0085830,From appetizer to dessert - One town becomes a monster meal.,A Japanese geologist discovers that dinosaurs still exist in caves beneath the surface of a volcanic lake.,0,0,恐竜 怪鳥の伝説,ja +54523,Hitch Hike,1977-04-30,104.0,,,tt0077188,Hitch a Ride ... Hitch a Date with Death!,"A bickering couple driving cross-country pick up a murderous hitchhiker whom threatens to kill them unless they take him to a santuary, and in return agrees to split some bank loot he has on him.",0,0,Autostop rosso sangue,it +47914,The White Buffalo,1977-05-01,97.0,,,tt0076915,Two legendary enemies unite to fight the charging white beast!!,"In this strange western version of JAWS, Wild Bill Hickok hunts a white buffalo he has seen in a dream. Hickok moves through a variety of uniquely authentic western locations - dim, filthy, makeshift taverns; freezing, slaughterhouse-like frontier towns and beautifully desolate high country - before improbably teaming up with a young Crazy Horse to pursue the creature.",0,0,The White Buffalo,en +186584,Code Name: Diamond Head,1977-05-03,78.0,,,tt0075862,,"A failed Quinn Martin pilot for a series starring a Hawaii-based government counter intelligence agency run by the indomitable Aunt Mary. In this, his only adventure, Diamond Head has to prevent the evil Tree from stealing a deadly nerve toxin gas and selling it to foreign powers. To help Diamond Head is the Dragon Lady and Zulu.",0,0,Code Name: Diamond Head,en +24655,The Car,1977-05-12,96.0,,,tt0075809,What evil drives...,"The film is set in the fictional Utah community of Santa Ynez, which is being terrorized by a mysterious black coupe that appears out of nowhere and begins running people down. After the car kills off the town's Sheriff (John Marley), it becomes the job of Captain Wade Parent (James Brolin) to stop the murderous driver.",0,0,The Car,en +69903,The Greatest,1977-05-17,102.0,,,tt0076111,The story you only think you knew.,"The Greatest is a 1977 film about the life of boxer Muhammad Ali, in which Ali plays himself. It was directed by Tom Gries and Monte Hellman. The song ""Greatest Love of All"", later remade by Whitney Houston, was written for this film and sung by George Benson. The movie follows Ali's life from the 1960 Olympics to his regaining the heavyweight crown from George Foreman in their famous ""Rumble in the Jungle"" fight in 1974.",0,0,The Greatest,en +42225,Padre Padrone,1977-05-20,114.0,,,tt0076517,,"The true story of the life of Gavino Ledda, the son of a Sardinian shepherd, and how he managed to escape his harsh, almost barbaric existence by slowly educating himself, despite violent opposition from his brutal father.",0,0,Padre padrone,it +197210,Polygon,1977-05-25,10.0,,,tt0820136,,"A Russian scientist creates a mind-reading weapon for his generals on a remote island. After the demonstration, the generals are pleased. Little do they realize, both the weapon, and the creator of the weapon have a mind of their own",0,0,Полигон,en +14262,Desperate Living,1977-05-27,90.0,,,tt0075936,It isn't very pretty…,"A rich housewife enlists her maid's help to murder her husband; they go on the lam and end up in Mortville, a homeless community built into a garbage dump.",65000,0,Desperate Living,en +99846,Moonshine County Express,1977-06-01,96.0,,,tt0076409,They Make It Every Night,The three surviving daughters of a murdered moonshiner band together with a racecar driver to run high-test shine behind the corpulent backs of the local likker syndicate.,0,0,Moonshine County Express,en +71996,Stunts,1977-06-01,89.0,,,tt0076776,,"After a stunt man dies while he is involved in the making of a motion picture, his brother takes his place in order to find out what really happened.",0,0,Stunts,fr +126947,Fraternity Row,1977-06-03,101.0,,,tt0076052,,"Director Thomas J. Tobin's 1977 drama about college freshmen subjected to fraternity hazing stars Gregory Harrison, Peter Fox, Scott Newman, Nancy Morgan and Wendy Phillips.",0,0,Fraternity Row,en +63584,The Whiskered Nanny,1977-06-06,75.0,,,tt0171869,,Young man Kesha starts working in the Kindergarten.,0,0,Usatyy Nyan,en +86814,News from Home,1977-06-08,85.0,,,tt0076452,,"Chantal Akerman, the Belgian filmmaker, lives in New York. Filmed images of the City are accompanied by the texts of Chantal Akerman's loving but manipulative mother back home in Brussels. The City comes more and more to the front while the words of the mother, read by Akerman herself, gradually fade away.",0,0,News from Home,en +56533,Viva Knievel!,1977-06-10,106.0,,,tt0076890,The one and only real live Evel Knievel in his first dramatic movie role.,The legendary stuntman plans his most incredible stunt yet while battling the mob in this action-adventure.,0,0,Viva Knievel!,en +19731,Grand Theft Auto,1977-06-16,84.0,,,tt0076100,See the greatest cars in the world destroyed!,"A rich girl steals her dad's Rolls Royce and heads off to Las Vegas to get married. However, her angry parents, a jealous suitor, and a bunch of reward seekers are determined to stop her.",0,0,Grand Theft Auto,en +48882,Wounded Game,1977-06-20,93.0,,,tt0075079,,A story about a group of Russian boys who have lost their fathers in the World War II.,0,0,Podranki,en +12637,"New York, New York",1977-06-21,155.0,,,tt0076451,,"An egotistical saxophone player and a young singer meet on V-J Day and embark upon a strained and rocky romance, even as their careers begin a long uphill climb.",0,0,"New York, New York",en +56095,The Invincible Armour,1977-06-29,90.0,,,tt0076939,,"Hwang Jang Lee is a corrupt Ming guard who frames John Liu for murder. A wanted fugitive, John hides out with a teen who is an expert in the infamous Iron Armor technique, a technique that means the expert can withstand anything. However, Hwang is an expert in it as well as the Eagle Claw's. Can John stop Hwang befgore it's too late?",0,0,鷹爪鐵布衫,zh +42218,Empire of the Ants,1977-06-29,89.0,,,tt0075989,It's no picnic!,Sleazy scam artist Joan Collins tries to sell phony real estate deals down in the Florida everglades. What she and her unsuspecting buyers don't know is the area has been taken over by giant ants!,0,0,Empire of the Ants,en +31037,MacArthur,1977-07-01,130.0,,,tt0076342,,"The film portrays MacArthur's (Gregory Peck) life from 1942, before the Battle of Bataan, to 1952, the time after he had been removed from his Korean War command by President Truman (Ed Flanders) for insubordination, and is recounted in flashback as he visits West Point.",9000000,0,MacArthur,en +691,The Spy Who Loved Me,1977-07-07,125.0,http://www.mgm.com/view/movie/1891/The-Spy-Who-Loved-Me/,645,tt0076752,It's the BIGGEST. It's the BEST. It's BOND. And B-E-Y-O-N-D.,Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.,14000000,185438673,The Spy Who Loved Me,en +19050,The Bad News Bears in Breaking Training,1977-07-08,100.0,,215326,tt0075718,The Bad News Bears are one year older and one year wilder.,"Sentimental sequel film finds the Bears, somehow, the little league champions of California. As a result, the team is invited to play a between-games exhibition at the Houston Astrodome with the local champs, the Toros. Kelly Leak, the Bears' star player, decides to rejoin the team and go with them to Houston to make amends with his estranged father, Mike",0,19104350,The Bad News Bears in Breaking Training,en +86647,Blue Rita,1977-07-08,75.0,,,tt0167165,,Blue Rita runs a nightclub and gases and kidnaps men there for her pleasure and torture.,0,0,Das Frauenhaus,de +67822,Rituals,1977-07-21,100.0,,,tt0076630,He Knows You're Out There ...,"Five doctors on a wilderness outing are stalked by disfigured, crazed killers.",0,0,Rituals,en +12707,Orca: The Killer Whale,1977-07-22,92.0,,,tt0076504,Terror just beneath the surface.,"After witnessing the killing of his mate and offspring at Captain Nolan's hands, a vengeful killer whale goes on a rampage in the fisherman's Newfoundland harbor. Under pressure from the villagers, Nolan, Rachel and Umilak sail after the great beast, who will meet them on its own turf.",6000000,14717854,Orca: The Killer Whale,en +18758,To Kill with Intrigue,1977-07-22,106.0,,,tt0076227,,Young master Cao Le chases his pregnant girlfriend away from the family castle. He does it in order to save her from vicious bandits who are going to murder his family.,0,0,Jian hua yan yu Jiang Nan,zh +122487,The Stationmaster's Wife,1977-07-31,112.0,,,tt0075776,,The lackluster and plodding Bolweiser has the (mis)fortune to be married to the town's siren; his trusting nature leads him into serious trouble when she beds nearly every available guy.,0,0,Bolwieser,de +105906,A Man Called Magnum,1977-08-07,88.0,,,tt0188082,,"A drug deal goes bad and the heroin is stolen. One mob boss doesn't have his drugs and the other doesn't get his money. People are going to die until they discover who double-crossed them. Into this backdrop, Inspector Dario Mauri arrives from Milan to help clean-up Naples. His mission – find the drugs and stop the killing.",0,0,Napoli si ribella,it +80961,Çöpçüler Kralı,1977-08-09,0.0,,,tt0253997,,,0,0,Çöpçüler Kralı,tr +27703,The Psychic,1977-08-10,95.0,,,tt0075614,,A woman with psychic powers has a vision of a murder that took place in a house owned by her husband.,0,0,Sette note in nero,it +5481,Shock,1977-08-12,95.0,,,tt0075651,A new look at the face of evil.,A couple is terrorized in their new house haunted by the vengeful ghost of the woman's former husband who possesses her young son.,0,0,Schock,en +19946,A Man Called Blade,1977-08-13,96.0,,,tt0076360,,"Maurizio Merli stars as a hatchet-wielding bounty hunter with a dark past and an even more desperate future. But when he disrupts the balance of power in a corrupt mining town, he unleashes a firestorm of brutality, betrayal and cold-blooded murder. Now, one man stalks a savage land where justice walks a razor and no bullets slice deeper than vengeance. He is A MAN CALLED BLADE.",0,0,Mannaja,it +150223,The Wishing Tree,1977-08-23,107.0,,,tt0075963,,"This poetic parable is part of Tenghiz Abuladze’s cinematic triptych: “The Supplication” – “The Wishing Tree” – “Repentance”. The place is Georgia at the beginning of the 20th century. That’s how director Tenghiz Abuladze described his film: “’The Wishing Tree’ is a film about the people lit up by a dream. Every character has its own ideal. One is worshipping the skies, another the earth, some idolize the body, others elevate the spirit. Some destroy the body, others the soul…” Marita, the film’s heroine, arrived here to live with her aunt. She meets a poor young lad, Gedia, and falls in love with him. But her relatives are determined to marry the girl off to a local rich man…",0,0,Древо желания,ka +102444,Welcome to Blood City,1977-08-23,96.0,,,tt0076909,,,0,0,Welcome to Blood City,en +31718,"Race for Your Life, Charlie Brown",1977-08-24,76.0,,,tt0076591,"It's my new wilderness adventure! The entire ""Peanuts"" gang faces everything from bullies to rampaging rapids. ""Good grief"", will you have fun!","The Peanuts gang, including Snoopy and Woodstock, have gone off to summer camp. After a few days of the usual summer-camp activities, they all take part in a rafting race. Battling treacherous rapids, wild animals, and bullies from a rival camp, the teams make their way downriver to the finish line.",0,0,"Race for Your Life, Charlie Brown",en +75903,The Uncanny,1977-08-24,89.0,,,tt0076853,They prowl by night...lusting for human flesh!,"Wilbur Gray, a horror writer, has stumbled upon a terrible secret, that cats are supernatural creatures who really call the shots. In a desperate attempt to get others to believe him, Wilbur spews three tales of feline horror.",0,0,The Uncanny,en +32594,Ecaterina Teodoroiu,1979-01-01,108.0,,,tt0129898,,"The story of heroine Ecaterina Teodoroiu, the only woman who fought in the Romanian Army during World War 1.",0,0,Ecaterina Teodoroiu,en +42231,You Light Up My Life,1977-08-31,90.0,,,tt0076941,Sometimes when you reach for a dream you have to leave something behind.,"Laurie has been in show business since she was a child. Her dream is to be a singer, songwriter and actress. Her father wants her to be a comedian like him and Laurie only tries because it pleases her father. But she is a lousy comedian. She auditions for everything and is engaged to Ken, but Ken does not understand her needs. She has a one night stand with Chris, only to later find that he is a director. She has many emotions that have not yet been addressed and she must face them before she can get on with her life.",0,0,You Light Up My Life,en +25388,March or Die,1977-09-08,107.0,,,tt0076175,,"The French Foreign Legion, in the early 20s, is tasked to protect a group of Archaeologists in the middle east. After scenes depicting the hardship of day-to-day Foreign Legion life, and the ragtag collection of people who join, the local Arabs take offence at the Archaeologists and declare Jihad. A large battle takes place, with the inevitable last stand.",0,0,March or Die,en +86603,Bare Knuckles,1977-09-08,90.0,,,tt0075727,,A bounty hunter in Los Angeles sets out to track down and stop a masked serial killer who murders women by using kung-fu moves.,0,0,Bare Knuckles,en +66759,The Battle Wizard,1977-09-09,77.0,,,tt0081631,,"A brother who loves books and a sister who loves swords must face a yellow-robed warrior, the Red Python, a sinuous snake-charmer, and a silk-masked beauty (who must kill or wed the first man to see her face) before they can bring peace to their battle-addled family.",0,0,Tian long ba bu,en +46278,Iphigenia,1977-09-10,127.0,,,tt0076208,,"The Greek army is about to set sail to a great battle, but the winds refuse to blow. Their leader, King Agamemnon, seeks to provide better food, but accidentally slays a sacred deer. His punishment from the gods, the sacrifice of his daughter Iphigenia.",0,0,Iφιγένεια,el +63899,White Bim Black Ear,1977-09-15,0.0,,,tt0077222,,"A touching story about a white Gordon Setter with black ear, who became homeless because of his master's illness. His master, Ivan Ivanovich, a man far from being young, fond of hunting and nature, took a puppy to live with him, despite the dog's black ear being a ""shame of nature"" to his breed. The man always took his dog, whom he called Bim or Bimka, to hunting in country. Later, however Ivan Ivanovich began to have problems with heart and when the disease became worse was taken to a hospital. His dog couldn't bear waiting for the only person that ever cared for him and set out to find his master. Thus began the story of a homeless dog and his many breathtaking and exciting adventures, encounters of many people, kind and evil, and leads to an unexpected and heart-rending end.",0,0,Белый Бим Чёрное ухо,ru +61581,California,1977-09-16,98.0,,,tt0075796,,"At the end of the Civil War, a Union soldier is released from prison and travels with a fellow prisoner to Missouri where his travelling companion is shot and hung for horse stealing. California decides to take the dead companion's belongings to his family's ranch, where he falls in love with his friend's sister. But then the ""ghosts"" of the war return in an unexpected way haunting him again.",0,0,California,it +28325,Emmanuelle Around the World,1977-09-16,102.0,,227140,tt0075987,Emanuelle's back to take you places you've never been before!,Famous undercover journalist Emanuelle teams with her friend Cora Norman to uncover a white slave ring.,0,0,Emanuelle - Perché violenza alle donne?,it +28746,"Ilsa, the Tigress of Siberia",1977-09-29,88.0,,123249,tt0078398,When she bares her claws ... You'll cringe with fear!,"Siberia 1953: Ilsa is now working in a Gulag prison camp. Her mission is to ""retrain the minds"" of those who don't agree with the communists.",237000,0,"Ilsa, the Tigress of Siberia",en +103578,Prey,1977-10-05,85.0,,,tt0086872,His savage hunger makes us all... Alien Prey,"The day after a weird green light is seen in the English sky, a strange young man stops at the country home of two lesbian housemates. It turns out that the man is an alien, and a hungry one",0,0,Prey,en +328631,Not Bad for a Human,1977-10-07,132.0,,,tt0075647,,The film follows a boy and the relationship between his birth mother and step mother. Based on the novels by Aapeli.,0,0,Aika Hyvä Ihmiseksi,fi +42542,Starship Invasions,1977-10-14,89.0,,,tt0076760,We know they are there - advanced beyond our imagination. Why have they come?,"Captain Rameses and his Legion of the Winged Serpent brigade are out to claim Earth for their dying race. Out to save Earth is an alien guard patrol located in the Bermuda Triangle, the League of Races. LOR leaders warn Rameses that he's breaking galactic treaty rules. The alien villain responds by launching an invasion which telepathically drives Earthlings to suicide. The LOR implore UFO expert Professor Duncan to help them. Eventually, the two alien forces battle. Will the Earth be saved?",0,0,Starship Invasions,en +21948,Rolling Thunder,1977-10-14,95.0,,,tt0076637,Major Charles Rane has come home to war!,"A Vietnam veteran, Charles Rane, returns home after years in a POW camp and is treated as a hero. When thugs invade his home to steal the silver coins he received for his service, they mangle his hand and leave him and his family for dead. Rane survives and becomes obsessed with getting revenge. Aided by his loyal friend Johnny Vohden, Rane, now wielding a hook for a hand, sets out on his mission of vengeance.",5000000,0,Rolling Thunder,en +86975,Alambrista!,1977-10-16,110.0,,,tt0075654,,"After the birth of his first child, Roberto, a young Mexican man slips across the border into the United States. Seeking work to support his family back home, he finds that working hard is not enough.",0,0,¡Alambrista!,en +95096,Highway Racer,1977-10-19,96.0,,,tt0076555,Truckloads of explosive action!,"Maurizio Merli stars as a hot-shot police driver who has more guts than brains, often landing him in hot water with his middle-aged mentor, who was once a legendary police interceptor responsible for numerous large scale arrests.",0,0,Poliziotto sprint,en +117550,"Helga, She Wolf of Spilberg",1977-10-20,93.0,,,tt0215837,,"Helga, a woman who runs a strict prison camp, forces her female prisoners into slave labor and to be love toys for her own personal pleasure, as well as for her soldiers. Issuing torture and whippings to anyone who dares defy her, man or woman.",0,0,"Helga, la louve de Stilberg",en +84805,The Fat Albert Halloween Special,1977-10-24,23.0,,,tt0800332,,"It's Halloween for Fat Albert and the Junkyard Gang, and everyone's all set for trick-or-treating. While searching for costumes a store clerk kicks them out, leaving the gang to comes up with their own home-made costumes. Then they are off to the movies to scare old Searchlight Johnson, then more hijinks with Mudfoot Brown, and old lady Bickwell. As you can probably guess, things don't go too well and they learn their lessons... Searchlight catches them up to no good in the theatre and throws them out. Mudfoot Brown eats most of their candy, and old lady Bickwell turns out to have the best Halloween treats in town.",0,0,The Fat Albert Halloween Special,en +107596,Halloween with the New Addams Family,1977-10-31,74.0,,,tt0126771,,The original TV Addams Family members prepare for Halloween.,0,0,Halloween with the New Addams Family,en +64627,Operation Ganymed,1977-11-05,118.0,,,tt0076502,,"A spaceship returns to Earth after several years of space exploration and finds it desolate. Landing in what they believe is Mexico, the crew decides to travel north, and try to find out what happened to Earth during the years they were gone.",0,0,Operation Ganymed,de +86727,Le Crabe-Tambour,1977-11-09,0.0,,,tt0075885,,,0,0,Le Crabe-Tambour,fr +4988,Semi-Tough,1977-11-18,108.0,,,tt0078227,They Lead The League In Scoring ... After The Game!,A three-way friendship between two free-spirited professional football players and the owner's daughter becomes compromised when two of them become romantically involved.,0,0,Semi-Tough,en +31547,Şaban Oğlu Şaban,1977-12-01,90.0,,,tt0253614,,No overview found.,0,0,Şaban Oğlu Şaban,tr +114514,Who Are the DeBolts? And Where Did They Get Nineteen Kids?,1977-12-01,72.0,,,tt0076918,,"Dorothy and Bob DeBolt's tale of the struggles and joys involved in their 19 adopted children, many of who are physically disabled war orphans.",0,0,Who Are the DeBolts? And Where Did They Get Nineteen Kids?,en +56589,The Seventh Company Outdoors,1977-12-07,75.0,,93287,tt0076684,,The third part of Seventh Company adventures.,0,0,La 7ème compagnie au clair de lune,fr +80220,Peppermint Soda,1977-12-14,97.0,,,tt0075939,,"In the fall of 1963, Anne is becoming a teenager. She lives in Paris with her mother and her older sister, Frédérique. They're just back from summer at the beach with their father. School starts. A turbulent year awaits them both.",0,0,Diabolo menthe,fr +14612,Candleshoe,1977-12-16,101.0,,,tt0075807,,"Candleshoe is a 1977 Walt Disney Productions live action movie based on the Michael Innes novel Christmas at Candleshoe and starring Jodie Foster, Helen Hayes in her last screen appearance, David Niven and Leo McKern.",0,0,Candleshoe,en +48852,The Choirboys,1977-12-23,119.0,,,tt0075845,Don't look for these guys in church.,A group of Los Angeles cops decide to take off some of the pressures of their jobs by engaging in various forms of after-hours debauchery.,0,0,The Choirboys,en +41604,Grayeagle,1977-12-28,104.0,,,tt0077630,,"A young Cheyenne warrior, who goes by the name Grayeagle, kidnaps the daughter of a grizzled frontier man John Colter who goes on an epic search for his daughter Beth, aided by a friendly native...",0,0,Grayeagle,en +142984,Scott Joplin,1977-12-30,96.0,,,tt0076674,,,0,0,Scott Joplin,en +144430,Ded Moroz i seriy volk,1978-01-01,17.0,,,tt0188555,,No overview found.,0,0,Ded Moroz i seriy volk,en +128044,Hotel Magnezit,1978-01-01,10.0,,,tt0144976,,film by Béla Tarr,0,0,Hotel Magnezit,hu +48131,The Shout,1978-01-01,86.0,,,tt0078259,A film of intense perversity - the madness of the mind.,"A traveller by the name of Crossley, forces himself upon a musician and his wife in a lonely part of Devon, and uses the aboriginal magic he has learned to displace his host.",0,0,The Shout,en +53206,Happy Days,1978-01-01,92.0,,,tt0765833,,"It is full of joy and kindness, it tells the life of great people, those who love each other with purity, those who share everything and those who care for each other. The music of the movie- which is cheerful when played fast and sorrowful when played gently- is perfect.. Just as perfect as those people in good old times and as the life they represent. The act is so natural that you either find yourself shed tears or laughing as loudly as you can. Every little detail is so fascinating. I do not know what more to say about this film, but it is certainly worth watching again, again and again.",0,0,Neseli günler,tr +27211,"Feyzo, the Polite One",1978-01-01,100.0,,,tt0252597,,"A feudal village in Southeastern Turkey in 1970's. A poor peasant, Feyzo returns from military service dreaming about getting married to Gülo, the love of his life.",0,0,Kibar Feyzo,tr +31412,The Girl with the Red Scarf,1978-01-01,90.0,,,tt0263975,,"Story of a dilemma between a woman's love and her logic. Asya, a young girl with a strict mother, meets Ilyas who is a womanizer city man, and they quickly fall in love. They get over the hardships and have a quick happy marriage. However, after he helps a man one night, Ilyas' life changes forever and he leaves Asya and Samet, their son and doesn't come back. After that, Asya takes their son and go away without knowing where she is heading, until a familiar hand reaches her to help selflessly.",0,0,Selvi Boylum Al Yazmalım,tr +12237,Faces of Death,1978-01-01,105.0,,97237,tt0077533,Banned in 46 Countries!,"A collection of death scenes, ranging from TV-material to home-made super-8 movies. The common factor is death by some means.",0,0,Faces of Death,en +257561,Animated Motion: Part 5,1978-01-01,7.0,,,tt0203302,,"In this fifth part, Norman McLaren deals not with motion (if motion is defined as a change of location in two- or three-dimensional space) but with change--change in the amount and color of light within an otherwise static screen. Normally, the animator combines such change with motion, but here it is studied in isolation.",0,0,Animated Motion: Part 5,en +256520,When I Will Become a Giant,1978-01-01,87.0,,,tt0077815,,"Inspired by Edmond Rostand's play Cyrano de Bergerac, 8th grader Petya Kopeykin tries to prove everyone that bravery and honor still exist in today's world.",0,0,Kogda Ya Stanu Velikanom,en +41689,Abigél,1978-01-01,0.0,,,tt0149410,,,0,0,Abigél,hu +148697,Avanak Apdi,1978-01-01,,,,tt0252249,,,0,0,Avanak Apdi,tr +27805,Stunt Rock,1978-01-01,86.0,http://www.sorceryrockband.com,,tt0078335,The Ultimate Rush.,"Australian stuntman Grant Page goes to Los Angeles to work on a television series. He uses his spare time to lend his expertise to rock band Sorcer. Page helps the band develop pyrotechnic magic tricks for their shows, and also recounts to his own exploits as a stuntman and daredevil as well as various stunts by other greats.",0,0,Stunt Rock,en +27935,Ordinary Miracle,1978-01-01,137.0,,,tt0186408,,"A wizard invents characters who all come to life and start to arrive at his house: a King, his servants, a princes, a bear trapped in a man's body - the usual lot. The Plot mainly rotates around the bear, who the wizard had turned into a man. The Bear, who wishes to be a bear once again, can turn into his old self if he were to kiss a princess. It gets complicated when he falls in love with that princess, that arrived at the wizard's house. For how can they be together, if a single kiss will destroy their love?",0,0,Обыкновенное чудо,ru +167583,Corleone,1978-01-02,108.0,,,tt0075879,,"Two friends grow up together in the Sicily of the '50s. Two different destiny, two different way of life. Could their friendship survive to the mafia shadow?",0,0,Corleone,it +47794,Blood Relatives,1978-02-01,100.0,,,tt0076313,,A Montreal police inspector (Donald Sutherland) cracks a murder case with clues from the victim's diary.,0,0,Les liens de sang,fr +381276,Robin Williams - Off the Wall,1978-02-04,60.0,,,tt2388730,,Robin Williams stand up special.,0,0,Robin Williams - Off the Wall,en +163706,Chronicle of a Death Foretold,1987-05-07,109.0,,,tt0092800,,,0,0,Cronaca di una morte annunciata,it +23692,The Initiation of Sarah,1978-02-06,96.0,,,tt0077735,She Was Born With Devastating Psychic Powers. And She's Forced To Unleash Them In A Shocking Finale!,"A withdrawn young girl joins an unpopular sorority in college. It turns out she has psychic and telekinetic powers, and she uses them against a rival sorority.",0,0,The Initiation of Sarah,en +289207,Catastrophe,1978-02-07,91.0,,,tt0075818,The Ultimate Disaster Film !,A film cataloguing some of the world's largest catastrophes.,0,0,Catastrophe,en +50849,The Biggest Battle,1978-02-07,102.0,,,tt0076102,The most awesome battle ever seen!,"A story of how World War II affected the lives of a German family and an American family, both of whom had sons and fathers fighting in the war.",0,0,Il grande attacco,it +64304,Clan of Amazons,1978-02-19,88.0,,,tt0077339,,The Embroidery Bandit is stealing treasures while blinding his victims. The hero Liu Xiaofeng is called in to solve the mystery. The evidence points to the all-woman Clan of the Red Shoes - but appearances can be deceptive....,0,0,陸小鳳之繡花大盜,zh +8128,The Sorcerer's Apprentice,1978-03-01,82.0,,,tt0075811,,"Krabat, a beggar boy, is lured to become an apprentice to an evil, one-eyed sorcerer. With a number of other boys, he works at the sorcerer's mill while learning black magic. Every Christmas one of the boys has to face the master in a magical duel, where the boy never stands a chance because the master is the only person who is allowed to use a secret spell: The Koraktor.",0,0,Čarodějův učeň,cs +11537,Snake in the Eagle's Shadow,1978-03-01,98.0,,,tt0078252,,"Everyone abuses and humiliates a downtrodden orphan (Chan) until he befriends an old man, who turns out to be the last master of the ""snake fist"" fighting style. Jackie becomes the old man's student and finds himself in battle with the master of the ""eagle's claw"" style, who has vowed to destroy the snake fist clan.",0,0,蛇形刁手,cn +128588,Covert Action,1978-03-03,100.0,,,tt0077376,,"Janssen plays an ex-CIA agent who has become an author, writing both non-fiction exposes (Phillip Agee was in the news at this time) and fiction spy novels. The CIA is on his case, in the person of Arthur Kennedy, CIA chief in Athens, where Janssen is staying. Janssen is pursuing a case that interests him, while dodging the traps set for him by Kennedy and trying to help Maurizio Merli, a former colleague with personal problems.",0,0,Sono stato un agente C.I.A.,it +50166,Lucky Luke: The Ballad of the Daltons,1978-03-10,82.0,,94050,tt0077204,,"The story opens in a Western saloon, where a young musician with a banjo begins to tell a tale of Lucky Luke and his sworn enemies the Dalton brothers: Joe, William, Jack and Averell. Luke has, once again, as he has done many times before, thrown the four outlaws into jail. The prison is also the abode of a guard dog named Rin Tin Can (Rantanplan in the original French language version).",0,0,Lucky Luke: La Ballade des Dalton,fr +77859,Ringing Bell,1978-03-11,46.0,,,tt0306646,,"Adapted from the book Chirin's Bell by Takashi Yanase, Ringing Bell is the animated story of a lamb (Chirin) whose mother is killed by a fearsome wolf. He seeks the wolf out to take revenge, but realizes he must grow stronger, and become like the wolf if he's ever going to destroy him. Over the years, Chirin becomes a fierce predator who views the wolf who raised him as a father. The climax of the story comes when the strange pair returns to the farm where Chirin was raised.",0,0,チリンの鈴,ja +36361,House Calls,1978-03-15,98.0,,,tt0077699,,"Charley is a surgeon who's recently lost his wife; he embarks on a tragicomic romantic quest with one woman after another until he meets up with Ann, a singular woman, closer to his own age, who immediately and unexpectedly captures his heart.",0,28460702,House Calls,en +23397,Straight Time,1978-03-18,114.0,,,tt0078326,"Please God, don't let him get caught.","After being released on parole, a burglar attempts to go straight, get a regular job, and just go by the rules. He soon finds himself back in jail at the hands of a power-hungry parole officer.",0,0,Straight Time,en +76312,Me and Charly,1978-03-19,98.0,,,tt0124002,,"Steffen is a good kid, a teenager who has recently finished school and is looking for work. He lives with his widowed mother, a newspaper reporter. Very little throws him off his stride, whether it is his girlfriend's jealousy of his friendship with Charly, a reform-school boy, or his mother's drunken, playful amorousness one night, because he reminds her of his father.",0,0,Mig og Charly,da +16378,The Rutles: All You Need Is Cash,1978-03-22,76.0,,255702,tt0077147,,The story of the rise and fall of the Pre-Fab Four.,0,0,The Rutles: All You Need Is Cash,en +11055,Flatfoot in Africa,1978-03-22,115.0,,10964,tt0076544,,Commissary Rizzo in Napoli gets a message from a policeman from South Africa who wants to meet him. Immediatlz before this meeting the south African policeman is killed. Dying he shows Rizzo a picture of his little son Bodo. Riyyo travels to Johannesburg to find out what the policeman was working on and to find Bodo.,0,0,Piedone l'africano,it +13333,Game of Death,1978-03-22,94.0,,,tt0077594,Bruce Lee challenges the underworld to a Game of Death.,"Billy Lo is a Hong Kong-based movie actor, who is a box office draw. His girlfriend, Ann Morris, is a singer who is also climbing to the top. Now it seems the syndicate wants Billy and Ann to join their ""management firm"". But Billy knows that they will be treated like property, so he refuses and tells her to do the same. So they try to ""encourage"" him to join but he still refuses. He would be advised that they will not stop, so he must stop them, permanently. He is even more hesitant to do that but when an attempt on his life is made, he fakes his death and alters his appearance, and decides to go after the syndicate; taking them out one at a time.",0,0,死亡遊戲,cn +8070,The Green Room,1978-04-05,94.0,,,tt0077315,In the Green Room everyone can hear you scream. But no one will help.,"Based on the Henry James short story ""The Altar of the Dead"", in which a man becomes obsessed with the many dead people in his life and builds a memorial to honor them. This film is also based on other short story by Henry James, ""The Beast of the Jungle"". It would be the last film Truffaut would act in.",0,0,La Chambre verte,fr +102841,Rabbit Test,1978-04-09,84.0,,,tt0078133,,Lionel's life turns around after a one-night stand on top of a pinball table... he becomes the world's first pregnant man!,0,0,Rabbit Test,en +68123,Boarding School,1978-04-14,100.0,,,tt0076306,"When the new girls arrives, the girls of St. Clare's Academy get quite an education",This film tells the story about a group of girls at an exclusive German girls boarding school. Across the lake is an exclusive boys boarding school...,0,0,Leidenschaftliche Blümchen,de +42204,FM,1978-04-20,104.0,,,tt0077532,No Static At All!,"Q-SKY is the #1 radio station in Los Angeles mainly because of the music they play; running the station the way they want to, it has made them a ratings success.",0,0,FM,en +79216,The Magic Ring,1979-01-01,20.0,,,tt0189195,,"Soviet cartoon, created in 1979 by the director-animator Leonid Nosyrev. Later, he entered the cartoon almanac ""Laughter and Grief at The White Sea"" with other Nosyrev's films based on Pomor fairy tales and legends.",0,0,Волшебное кольцо,ru +37672,"Same Time, Next Year",1978-04-23,119.0,http://www.imdb.com/title/tt0078199/,,tt0078199,They couldn't have celebrated happier anniversaries if they were married to each other.,"A man and woman meet by chance at a romantic inn over dinner. Although both are married to others, they find themselves in the same bed the next morning questioning how this could have happened. They agree to meet on the same weekend each year. Originally a stage play, the two are seen changing, years apart, always in the same room in different scenes. Each of them always appears on schedule, but as time goes on each has some personal crisis that the other helps them through, often without both of them understanding what is going on.",118,19,"Same Time, Next Year",en +41298,El patrullero 777,1978-04-27,120.0,,,tt0076532,,"Follows Diogenes as he goes about his day as a police officer. He's prone to do things the right way, surrounded by a pretty much corrupt & citizen distant police department, & always resolves his duties with a personal method.",0,0,El patrullero 777,es +40060,The Manitou,1978-04-28,104.0,,,tt0077904,Evil does not die… It waits to be re-born!,A psychic's girlfriend finds out that a lump on her back is a growing reincarnation of a 400 year-old demonic Native American spirit.,0,0,The Manitou,en +84493,Metamorphoses,1978-05-03,80.0,,,tt0078495,,"Several animated stories from ""Metamorphoses,"" the Roman poet Ovid's narrative of legends, are presented.",0,0,Hoshi no Orpheus,en +28155,It Lives Again,1978-05-10,91.0,,256297,tt0077756,The 'It's Alive' Baby is back... Only now there are three of them.,The monster child returns - but now there are three!,0,0,It Lives Again,en +85651,Youngblood,1978-05-24,90.0,,,tt0181907,"If you live through the gang wars, the pushers, the back-alley deathtraps... YOU GONNA BE A STAR!",A gang war/drug story set in a Los Angeles ghetto about the coming of age of a 15-year-old black youth.,0,0,Youngblood,en +198511,The Left-Handed Woman,1978-05-25,116.0,,,tt0076316,,"Mourning for a lost relationship can be every bit as devastating as mourning for someone who has died. In this drama based on the director's own novel, a couple with an unhappy marriage agree to a trial separation. They try to patch things up, and at the same time other relationships begin to develop for them.",0,0,Die linkshändige Frau,de +18387,Big Wednesday,1978-05-26,120.0,,,tt0077235,A day will come that is like no other... and nothing that happens after will ever be the same.,"Three 1960s California surfers fool around, drift apart and reunite years later to ride epic waves.",11000000,0,Big Wednesday,en +99261,The Bloodstained Shadow,1978-06-02,109.0,,,tt0078288,,"A murder mystery set on an island near Venice. A schoolgirl was murdered seven years ago, and the case was never solved; now, the murderer seems to be back.",0,0,Solamente nero,it +77294,Three from Prostokvashino,1978-06-06,17.0,,219363,tt0189160,,"Little Fedor brings a cat to home despite his mother's distaste for cats. He runs away with his talking cat, to make more friends on the way.",0,0,Трое из Простоквашино,ru +68192,Cabbages and Kings,1978-06-06,145.0,,,tt0177892,,"Фильм создан в жанре музыкальной комедии по мотивам знаменитого юмористического романа О""Генри ""Короли и капуста"". Действие фильма разворачивается в условной стране ""Анчурия"", где каждый год выбирают нового президента. Так бы все и шло своим чередом в островной Анчурии, если бы не чемоданчик с сотнями тысяч долларов, вдруг обнаружившийся у местного брадобрея, и таинственный незнакомец, однажды выброшенный волной на анчурский берег.",0,0,Koroli i kapusta,en +259075,Cave of the Sharks,1978-06-28,90.0,,,tt0077225,,"When Andres and his partner are hired to recover some valuables from an airplane that went down in the Bermuda Triangle, they face not only human treachery but also the mysterious powers of an underwater civilization.",0,0,Bermude: la fossa maledetta,es +28736,Hot Lead & Cold Feet,1978-07-05,90.0,,,tt0077698,,"Twin brothers -- one rough and tough, the other a city-bred milquetoast -- compete for their father's fortune.",0,0,Hot Lead & Cold Feet,en +26517,Martin,1978-07-05,95.0,,,tt0077914,He could be the boy next door...,"Martin sedates women with a syringe full of narcotics and then slices their wrists with a razor blade so he can drink their blood. Martin, who comes to live with his uncle and cousin in the dying town of Braddock, Pennsylvania, has romantic monochrome visions of vampiric seductions and torch-lit mobs, but it is impossible to tell how seriously he takes them.",0,0,Martin,en +621,Grease,1978-07-07,110.0,,86083,tt0077631,Grease is the word,"Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?",6000000,181813770,Grease,en +6081,Revenge of the Pink Panther,1978-07-19,104.0,,937,tt0078163,Just when you thought it was safe to go back to the movies...,"Chief Inspector Jacques Clouseau is dead. At least that is what the world (and Charles Dreyfus) believe when a dead body is discovered in Clouseau's car after being shot off the road. Naturally, Clouseau knows differently, and taking advantage of not being alive, sets out to discover why an attempt was made on his life.",0,49579269,Revenge of the Pink Panther,en +23739,Circle of Iron,1978-07-25,102.0,,,tt0078975,The challenge of a lifetime...,"A young martial artist, Cord the Seeker, competes for and loses the right to go on a quest for the Book of All Knowlege held by a wizard named Zetan",0,0,Circle of Iron,en +65898,The Suspended Vocation,1978-07-27,96.0,,,tt0076894,,,0,0,La vocation suspendue,fr +16214,Hooper,1978-07-28,107.0,http://en.wikipedia.org/wiki/Hooper_(film),,tt0077696,The greatest stuntman alive!,"Burt Reynolds plays a legendary stunt man known as Sonny Hooper, who remains one of the top men in his field, but due to too many stressful impacts to the spine and the need to pop pain killers several times a day, he knows he should get out of the industry before he ends up permanently disabled.",0,78000000,Hooper,en +88285,Newsfront,1978-07-29,110.0,,,tt0077986,,Surprisingly adventurous saga of an intrepid group of cinematographers and reporters who risk life and limb to capture footage of breaking news for the movie-going public.,0,0,Newsfront,en +61266,A Hunting Accident,1978-07-31,105.0,,,tt0172812,,An aristocrat falls for a young woman who brings him ruin. Based on Chekhov's story.,0,0,Мой ласковый и нежный зверь,ru +29143,Eyes of Laura Mars,1978-08-02,104.0,,,tt0077530,,A famous fashion photographer develops a disturbing ability to see through the eyes of a killer.,7000000,20000000,Eyes of Laura Mars,en +24831,Piranha,1978-08-03,94.0,,212279,tt0078087,A hideous death lurked unseen in the river...,"When flesh-eating piranhas are accidently released into a summer resort's rivers, the guests become their next meal.",660000,0,Piranha,en +22396,"China 9, Liberty 37",1978-08-04,105.0,,,tt0077327,,"Gunslinger Clayton Drumm (Testi) is about to be hanged when he is given a chance to live if he will agree to murder Matthew (Oates), a miner who has steadfastly refused to sell his land to the railroad company. Matthew’s refusal is a major obstacle to the railroad’s plans for expansion.",0,0,"Amore, piombo e furore",it +14489,The Scarlet Flower,1978-08-25,66.0,,,tt0283242,,"A merchant is living in a fairytale Russia of hundreds of years ago. When he is making a journey to market, his three daughters each ask for a present to be brought back...",0,0,Аленький Цветочек,ru +100063,Blackout,1978-08-25,92.0,,,tt0077241,The night the power failed.... and the shock began!,A black comedy of violent criminals who terrorize apartment dwellers during New York's 1977 power blackout.,0,0,Blackout,en +66949,Molière,1978-08-30,260.0,,,tt0077941,,,0,0,Molière,fr +42215,The Legacy,1978-09-01,102.0,,,tt0079450,It is a birthright of living death...,"Sam Elliott and Katharine Ross star as architects brought to a secluded estate by an eccentric millionaire. They and other guests become trapped, leading to a series of grisly deaths which point to a supernatural…",0,0,The Legacy,en +116312,The National Shotgun,1978-09-14,95.0,,469613,tt0076001,,"A catalan manufacturer of intercoms travels to Madrid, accompanied by his mistress, to attend a hunt that he has organized. Its main purpose is to mix with people of high society to improve their business. All seems well until the owner of the farm shows full authority over James, who is the real organizer of the meeting. The celebration is diverse characters who live next to absurd situations.",0,1622164,La escopeta nacional,es +31542,The Tree of Wooden Clogs,1978-09-21,186.0,,,tt0077138,,"The life inside a farm in Italy at the beginning of the century. Many poor country families live there, and the owner pays them by their productivity. One of the families has a very clever child. They decide to send him to school instead of make him help them, although this represents a great sacrifice. The boy has to wake up very early and walk several miles to get to the school. One day the boy's shoes break when returning home, but they do not have money to buy other. What can they do?",0,0,L'albero degli zoccoli,it +216153,One in a Million: The Ron LeFlore Story,1978-09-26,100.0,,,tt0078035,,"One in a Million: The Ron LeFlore Story was a 1978 made for TV movie telling the story of Ron LeFlore, a troubled Detroit youth who rose from Michigan prisons to star in Major League Baseball with the Detroit Tigers. The movie was based on LeFlore's autobiography, Breakout: From Prison to the Big Leagues. + It follows LeFlore from his heroin addiction, to his time in Michigan's Jackson State Penitentiary, and tells of his discovery in prison by Billy Martin, who was then the manager of the Detroit Tigers. The role of Ron LeFlore was played by LeVar Burton. Larry B. Scott portrayed Ron LeFlore's younger brother. + Former Detroit manager Billy Martin played himself, and former Tiger players Norm Cash, Bill Freehan, Al Kaline, and Jim Northrup also appeared as themselves. The movie first aired on CBS Television on September 26, 1978.",0,0,One in a Million: The Ron LeFlore Story,en +114096,Bloodbrothers,1978-09-28,116.0,,,tt0078878,"How do you tell people you love, you love to do it on your own?",A young man is torn between following in his brothers' footsteps or striking out on his own.,0,0,Bloodbrothers,en +11230,Drunken Master,1978-10-05,111.0,,12203,tt0080179,The Original Kung Fu Comedy!,"Jackie Chan stars as Wong Fei-Hung, whose mischievous antics land him in hot water. Having tolerated enough of his son's mishaps, Fei-Hung's dad enlists his sadistic uncle, who specializes in drunken-style kung fu, to teach the lad some discipline. This Hong Kong martial-arts comedy helped establish the slapstick fighting style that would become Chan's trademark.",0,0,醉拳,cn +47956,The Norseman,1978-10-05,90.0,,,tt0078007,,"An 11th-century Viking prince sails to America to find his father, who on a previous voyage had been captured by Indians.",0,0,The Norseman,en +42216,Who Is Killing the Great Chefs of Europe?,1978-10-06,112.0,,,tt0078488,,"Mystery abounds when it is discovered that, one by one, the greatest Chefs in Europe are being killed. The intriguing part of the murders is that each chef is killed in the same manner that their own special dish is prepared in. Food critics and the (many) self-proclaimed greatest Chefs in Europe demand the mystery be solved.",0,0,Who Is Killing the Great Chefs of Europe?,en +52913,Little Italy,1978-10-10,0.0,,188138,tt0078312,,Undercover cop Nico Giraldi travels to New York and Las Vegas to find a crooked cop who gave his squadron back in Italy a bad name.,0,0,Squadra antimafia,it +39995,Long Weekend,1978-10-14,92.0,,,tt0079482,Their crime was against nature. Nature found them guilty.,"When a suburban couple go camping for the weekend at a remote beach, they discover that nature isn't in an accommodating mood.",0,0,Long Weekend,en +11837,Watership Down,1978-10-14,88.0,,,tt0078480,"All the world will be your enemy, Prince with a Thousand Enemies, and when they catch you, they will kill you... but first they must catch you.","When the warren belonging to a community of rabbits is threatened, a brave group led by Fiver, Bigwig, Blackberry and Hazel leave their homeland in a search of a safe new haven.",1000000,3713768,Watership Down,en +327655,Nina,1978-10-17,75.0,,,tt0675266,,Play for Today about Russian dissidents.,0,0,Nina,en +144229,Power Play,1978-11-01,102.0,,,tt0078105,,"A thriller, released 1st November 1978, based on the non-fiction book Coup d'État: A Practical Handbook by Edward N. Luttwak.",0,0,Power Play,en +85420,Movie Movie,1978-11-01,105.0,,,tt0077952,It's the swellest. It's the cream of the silver screen. It's got buckets of tears and a million laughs.,"Three movie genres of the 1930s, boxing films, WWI aviation dramas, and backstage Broadway musicals, are satirized using the same cast.",0,0,Movie Movie,en +17339,Force 10 from Navarone,1978-11-01,118.0,,366826,tt0077572,,"Mallory and Miller are back. The survivors of Navarone are sent on a mission along with a unit called Force 10, which is led by Colonel Barnsby. But Force 10 has a mission of their own which the boys know nothing about.",5000000,7230000,Force 10 from Navarone,en +299165,Nunca en horas de clase,1978-11-03,,,,tt0078010,,,0,495861,Nunca en horas de clase,es +34193,Magic,1978-11-08,107.0,,,tt0077889,A terrifying love story.,A ventriloquist is at the mercy of his vicious dummy while he tries to renew a romance with his high school sweetheart.,0,0,Magic,en +65089,31st of June,1978-11-11,142.0,,,tt0077114,,A lonely journalist in some West European country has a vision about the princess of his city who lived in XII century.,0,0,31 Iyunya,ru +27432,Killer of Sheep,1978-11-14,83.0,http://www.killerofsheep.com/,,tt0076263,,"Stan works in drudgery at a slaughterhouse. His personal life is drab. Dissatisfaction and ennui keep him unresponsive to the needs of his adoring wife, and he must struggle against influences which would dishonor and endanger him and his family.",100000,362222,Killer of Sheep,en +72204,A Flying Ship,1979-01-01,18.0,,,tt0210804,,No movie overview available.,0,0,Летучий корабль,ru +52485,Further Adventures of the Wilderness Family,1978-11-15,105.0,,211860,tt0077587,The true story of a modern pioneer family who turned their backs on civilization...never to return.,"The Wilderness Family now face terrifying times in fierce winter storms, an avalanche, and being attacked by a ferocious pack of hungry wolves. Watch as America's favorite family stands strong together to prove that the best things in life are really free.",0,0,Further Adventures of the Wilderness Family,en +42206,In a Year with 13 Moons,1978-11-17,124.0,,,tt0077729,,"This drama follows the last few days in the life of Elvira (formerly Erwin) Weisshaupt. Years before, Erwin told a co-worker, Anton, that he loved him. ""Too bad, you aren't a woman,"" he replied. Erwin took Anton at his word. Trying to salvage something from the wreckage love has made of his life, he now hopes that Anton will not reject him again.",0,0,In einem Jahr mit 13 Monden,de +2186,Within the Woods,1978-11-23,32.0,,,tt0078503,,The low budget film starring the young Bruce Campbell that influenced the Evil Dead films.,1600,0,Within the Woods,en +31428,Someone's Watching Me!,1978-11-27,97.0,,,tt0078295,,"A woman is being watched in her apartment by a stranger, who also calls and torments her. A cat-and-mouse game begins.",0,0,Someone's Watching Me!,en +452606,Sultan,1978-12-01,,,,tt0264051,,,0,0,Sultan,tr +47851,Five Evenings,1978-12-04,103.0,,,tt0079764,,Tamara and Sasha were separated during the war. Now (1957) Sasha is visiting Moscow for five days and by chance recognizes the house where Tamara used to live. She is still living there with her nephew Slava.,0,0,Пять вечеров,ru +52920,What Will You Do When You Catch Me?,1978-12-08,99.0,,,tt0077350,,,0,0,"Co mi zrobisz, jak mnie złapiesz",pl +167882,The Gift of Love,1978-12-08,98.0,,,tt0077612,,"Inspired by O. Henry's short story about a young bride and groom, each of whom foolishly--but quite lovingly--sacrifices a treasured possession to buy the perfect Christmas gift for their mate.",0,0,The Gift of Love,en +107262,A Real American Hero,1978-12-09,94.0,,,tt0078144,,"When two boys are killed and two girls are blinded for life in a tragic accident, Buford Pusser, the town sheriff, is determined to get revenge. Though he must bend the law, Pusser is resolved to get the bootleg booze and dope king of the county who provided the poisoned moonshine that caused the accident.",0,0,A Real American Hero,en +1924,Superman,1978-12-13,143.0,,8537,tt0078346,You'll Believe a Man Can Fly!,"Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane − who's in love with Superman. Clark must summon his superhero alter ego when the nefarious Lex Luthor launches a plan to take over the world.",55000000,300218018,Superman,en +26686,California Suite,1978-12-15,103.0,,,tt0077289,The best two-hour vacation in town!,Misadventures of four groups of guests at the Beverly Hills Hotel.,0,0,California Suite,en +30143,Lupin the Third: The Secret of Mamo,1978-12-16,102.0,http://www.lupin-3rd.net/,145901,tt0078187,,"In Transylvania, Lupin III, the notorious international thief, is hung and no one is more suprised to learn of that than Lupin III himself, who was alive and well and nowhere near that area at that time. The answer to that mystery, begins to surface when Lupin gets a seemingly ordinary pebble from an Egyptian pyramid for his would-be girlfriend, Fujiko, the mercenary thief, who is in the employ of a mysterious figure known only as Mamo. Intrigued by this bizarre request, Lupin decides to get involved and finds himself in an international chase that has a greater scope and danger than he has ever faced.",0,0,ルパン三世 ルパンVS複製人間,ja +293380,The Nativity,1978-12-17,98.0,,,tt0077977,,"The story of the courtship of Joseph and Mary, and of the events leading up to the first Christmas.",0,0,The Nativity,en +40081,Crippled Avengers,1978-12-20,100.0,,,tt0077292,,"Crippled Avengers is a 1978 Shaw Brothers kung fu film directed by Chang Cheh and starring four members of the Venom Mob. It has been released in North America as Mortal Combat and Return of the 5 Deadly Venoms. The film follows a group of martial artists seeking revenge after being crippled by Tu Tin-To (Chen Kuan Tai), a martial arts master, and his son (Lu Feng).",0,0,残缺,zh +110598,Moment by Moment,1978-12-22,102.0,,,tt0077942,The only thing they have in common... is each other.,"It tells the story of a romance between a young drifter named Strip Harrison (John Travolta) and an older wealthy woman, Trish Rawlings (Lily Tomlin).",0,0,Moment by Moment,en +64316,Warriors Two,1978-12-28,95.0,,,tt0078517,,"In an attempt to save his village from being taken over by brutes, Wah is beaten to a pulp and his mother brutally murdered. Determined to take revenge, Wah learns the art of Wing Chun and enters into a showdown with the nasty villains.",0,0,贊先生與找錢華,cn +27937,That Munchhausen,1979-01-01,142.0,,,tt0080037,,"A philosophical and poetic portrait of the famous (or maybe infamous?) Baron Munchhausen. His crazy, yet very merriment, stories, views and behavior is what sets him apart from others. He becomes alienated from the society that failed to grasp his brilliance. In fact, his brilliance is what underlines the faults with the society itself. It's a beautiful yet tragic story that is filled with dense and intellectual dialogue.",0,0,Тот самый Мюнхгаузен,ru +31915,Prophecy,1979-01-01,102.0,,,tt0079758,,"A Savage beast, grown to monstrous size and driven mad by toxic wastes that are poisoning the waters, spreads terror and death on a Maine countryside.",12000000,54000000,Prophecy,en +72949,September Vacation,1979-01-01,141.0,,,tt0142745,,"Engineer Zilov, having woken up, finds the funeral wreath at his place – his friends' present. This rather symbolic joke makes him recollect the previous night as well as 2 last months...",0,0,Otpusk v Sentyabre,ru +123592,Korkusuz Korkak,1979-01-01,0.0,,,tt0252611,,,0,0,Korkusuz Korkak,tr +59354,Nocturna Artificialia,1979-01-01,21.0,,,tt0079636,,"Enigmatic, stop-motion, animated story of a man's day.",0,0,Nocturna Artificialia,en +188836,The Fearless Young Boxer,1979-01-01,90.0,,,tt0079142,,"While on a fishing trip, Shao Lung's father is killed by Wu Pa Feng in front of the young man's eyes. Lung takes shelter with his uncle's traveling group of Kung Fu acrobats and begins honing his skills so he can one day have his revenge.",0,0,小子命大,en +54503,The Mystery of Chess Boxing,1979-01-01,87.0,,,tt0199813,,Lee Yi Min stars as an eager young kung fu student who seeks to improve his fighting skills with an aim to avenge his fathers murder at the hands of the Ghost Face Killer an overwhelming force of destruction and master of the death dealing Five Element Fist. Lee eagerness to study attracts the attention of the master of Chess Boxing Jack Long who is the Ghost Face Killers arch enemy. Together master and student devise a wicked cross fertilization of the Chess Boxing and Five Element Fist styles and set out to put an end to the Ghost Faces deadly reign.,0,0,Shuang ma lian huan,en +48268,Hungarian Rhapsody,1979-01-01,103.0,,,tt0077492,,The movie portrays a peasant revolt in Hungary in the early twentieth century.,0,0,Magyar rapszódia,hu +259,Love on the Run,1979-01-24,89.0,,185682,tt0078771,Antoine Doinel. He's got four ladies...Nine lives...and Plenty of alibis!,"Antoine Doinel is now more than thirty. He divorces from Christine. He is a proofreader, and is in love with Sabine, a record seller. Colette, his teenager love, is now a lawyer. She buys Antoine's first published autobiographical novel. They meet again in a station...",0,0,L'amour en fuite,fr +65156,The North Avenue Irregulars,1979-02-09,100.0,,,tt0079639,The FBI couldn't do it... the CIA couldn't do it... so they sent for... Hill's Angels.,"When crooks set up operations in a traditional town, a minister and a group of church ladies are willing to do anything, no matter how wacky, to get them out.",0,0,The North Avenue Irregulars,en +40047,Elvis,1979-02-10,150.0,http://www.theofficialjohncarpenter.com/elvis/,,tt0079103,The King Lives On!,Biographical movie about the famous rock singer Elvis Presley.,2100000,0,Elvis,en +170078,Maula Jat,1979-02-10,156.0,,,tt0239608,"Maula Jat tells the true story of it's eponymous hero's blood feud with the local ""gunda"" Nuri Nath.","Maula Jat tells the true story of it's eponymous hero's blood feud with the local ""gunda"" Nuri Nath.",0,0,Maula Jat,en +19274,Fearless Hyena,1979-02-17,92.0,,205459,tt0079315,,"Jackie Chan is a youngster, living in a remote vllage with his grandfather who teaches him Kong-Fu (naturally). He keeps getting into fights, even though his grandfather warns him not to show their Kong-Fu to others. Jackie, though, is tempted by some thugs he beat up to act as the master of a Kong-Fu school. This school's name apparently spreads far, as an old enemy of Jackie's grandfather (who t",0,0,笑拳怪招,cn +59156,Il giocattolo,1979-02-21,,,,tt0079211,,,0,0,Il giocattolo,it +10841,Breakthrough,1979-03-01,111.0,,93568,tt0078320,,"Starting in late May 1944, during the German retreat on the Eastern Front, Captain Stransky (Helmut Griem) orders Sergeant Steiner (Richard Burton) to blow up a railway tunnel to prevent Russian forces from using it. Steiner's platoon fails in its mission by coming up against a Russian tank. Steiner then takes a furlough to Paris just as the Allies launch their invasion of Normandy.",0,0,Steiner - Das Eiserne Kreuz Teil II,en +33250,Real Life,1979-03-02,99.0,,,tt0079781,,"A pushy, narcissistic filmmaker persuades a Phoenix family to let him and his crew film their everyday lives, in the manner of the ground-breaking PBS series ""An American Family"".",0,0,Real Life,en +148615,The Ordeal of Patty Hearst,1979-03-04,139.0,,,tt0079675,The most sensational kidnapping case of our time!,"The story of the kidnapping of newspaper heiress Patty Hearst by members of a radical guerrilla organisation, as seen by the FBI agent in charge of her case.",0,0,The Ordeal of Patty Hearst,en +109251,The Promise,1979-03-08,97.0,,,tt0079756,,"A rich student's fiancee has her face destroyed by a car accident, and refuses to return to him fearing the loss of his love.",0,0,The Promise,en +213095,Bersaglio altezza uomo,1979-03-08,89.0,,,tt0078848,,,0,0,Bersaglio altezza uomo,it +94874,Savage Weekend,1979-03-09,88.0,,,tt0079855,You have been chosen. You are doomed. Prepare for.... SAVAGE WEEKEND,Several couples head upstate to the country to watch a boat being built. Unfortunately they are stalked by a murderer behind a ghoulish mask.,0,0,Savage Weekend,en +132150,The Battle of Chile - Part III,1979-03-15,78.0,,,tt0078831,,Guzmán’s final instalment shifts from covering the actions of Allende’s opponents to those who battled to revive & promote their toppled leader’s vision for a new Chile.,0,0,La batalla de Chile: La lucha de un pueblo sin armas - Tercera parte: El poder popular,es +9659,Mad Max,1979-04-12,93.0,,8945,tt0079501,The Maximum Force Of The Future,"In a dystopian future Australia, a vicious biker gang murders a cop's family, and makes his fight with them personal.",400000,100000000,Mad Max,en +75162,Hurricane,1979-04-12,120.0,,,tt0079319,There is only one safe place... in each other's arms.,"The story of the desperate love affair between a young Samoan chief and a beautiful American painter, against the will of her father, the powerful governor of the island. Amid this man-made tension comes a powerful hurricane so devastating, the lives of the lovers and the entire island are imperiled.",0,0,Hurricane,en +172004,I Am My Films: A Portrait of Werner Herzog,1979-04-18,93.0,,,tt0139735,,Interview film with German director Werner Herzog revisiting the films he made up to ca. 1977.,0,0,"Was ich bin, sind meine Filme",en +42170,Vengeance Is Mine,1979-04-21,139.0,,,tt0079182,Living only for today — for pleasure. A killer who gets what he wants — including death.,"Chronological exploits of Iwao Enokizu, a murderous thief on the lam.",0,0,復讐するは我にあり,ja +46124,Dragon Fist,1979-04-21,76.0,,,tt0079484,,A dishonored student of the Dragon Fist Sect seeks revenge for the death of his teacher.,0,0,龙拳,zh +696,Manhattan,1979-04-25,96.0,,,tt0079522,Woody Allen's New Comedy Hit,The life of a divorced television writer dating a teenage girl is further complicated when he falls in love with his best friend's mistress.,0,39946780,Manhattan,en +47561,Firepower,1979-04-27,104.0,,,tt0079153,,"A mercenary is hired by the FBI to track down a powerful recluse criminal, a woman is also trying to track him down for her own personal vendetta.",0,0,Firepower,en +59181,H.O.T.S.,1979-05-01,98.0,,,tt0079257,Some like it H.O.T.S.!,Four girls spurned by the popular Sorority on campus decide to start their own and steal all the men on campus away from the house that rejected them.,0,0,H.O.T.S.,en +37923,Last Embrace,1979-05-04,102.0,,,tt0079437,It begins with an ancient warning. It ends at the edge of Niagara Falls. In between there are 5 murders. Solve the mystery. Or die trying.,"Secret agent Harry Hannan suffers a mental breakdown when a botched mission in Mexico results in the death of his wife. He is sent to a mental asylum, after which he eventually returns to work. But, once again, he begins to doubt his sanity when he receives a bizarre death threat written in Hebrew. Not knowing which of his colleagues wants to kill him, Hannan teams up with pretty young college student Ellie Fabian to attempt to unravel the mystery.",0,0,Last Embrace,en +118195,Grandma,1979-05-10,73.0,,,tt0121598,The story about a family that must maintain an insatiable grandmother,The story about a family that must maintain an insatiable grandmother,0,0,La nona,es +47906,The Seduction of Joe Tynan,1979-08-17,108.0,,,tt0079875,What drives a man to his limits... the power of love or the love of power?,"Respected liberal Senator Joe Tynan is asked to to lead the opposition to a Supreme Court appointment. It means losing an old friend and fudging principles to make the necessary deals, as well as further straining his already part-time family life. But it could be a big boost to his career, so he takes it on. Helping him prepare the case is pretty southern researcher Karen Traynor, and their developing relationship further complicates and compromises his life.",0,0,The Seduction of Joe Tynan,en +48770,Tom & Thomas,2002-01-23,110.0,,,tt0288263,,"A young boy thinks he's got a lookalike around him, but nobody believes him. Then, he meets Thomas and they switch homes.",0,0,Tom & Thomas,en +67102,Pilot Pirx's Inquest,1979-05-27,95.0,,,tt0080010,,"This movie is about a rocket pilot named Pirx who is hired to go on a mission to evaluate some nonlinears (robots) for use as crewmembers on future space flights. Pirx and his crew, made up of nonlinears and humans, are sent out to launch two satellites into the rings of Saturn. Upon returning to Earth there is an inquest to determine if Pirx was responsible for the ""accident."" In the end, it is found that one of the robots caused the malfunction in an attempt to kill the human crewmembers and Pirx is cleared of all charges. In this tale Lem puts forth the idea that what is perceived a human weakness is in fact an advantage over a perfect machine. Pirx defeats the robot, because a human can hesitate, make wrong decisions, have doubts, but a robot cannot. A similar idea is present in Isaac Asimov's Robot Series, where putting a robot in a position where it cannot chose between the Three laws of robotics fries its positronic brain.",0,0,Test pilota Pirxa,pl +124523,Joni,1979-06-01,75.0,,,tt0080966,,,0,0,Joni,en +65123,Three Men in a Boat,1979-06-06,128.0,,,tt0230898,,"Three London gentlemen take vacation rowing down the Thames, encountering various mishaps and misadventures along the way.",0,0,"Troye v Lodke, Ne Schitaya Sobaki",ru +19827,The In-Laws,1979-06-15,103.0,,,tt0079336,The FIRST Certified Crazy Person's Comedy.,"In preparation for his daughter's wedding, dentist Sheldon Kornpett meets Vince Ricardo, the groom's father. Vince, a manic fellow who claims to be a government agent, then proceeds to drag Sheldon into a series of chases and misadventures from New York to Central America.",9000000,38200000,The In-Laws,en +141138,The Kung Fu Instructor,1979-06-16,100.0,,,tt0079371,,"Two rival clans have unsuccessfully tried to hire the master of the good clan to teach his clan. Not willing to take no for an answer, they frame the master for a dirty deed that he didn't commit, which forces him to kill a man in battle. The townspeople attempt to kill him and he is forced to flee to the evil clan.",0,0,Jiao tou,en +65603,Nightwing,1979-06-22,105.0,,,tt0079631,They day belongs to man. The night is theirs.,Killer bats plague an Indian reservation in New Mexico.,0,0,Nightwing,en +49642,Drunken Master Part II - Dance of the Drunk Mantis,1979-06-26,94.0,,,tt0079609,,"A year after training young Jackie Chan in the Drunken Fist, Sam the Seed discovers he has a son, Foggy. He tries to train Foggy but to no avail. Foggy is then trained in Drunken Fist from his uncle as he must face his father's rival, Rubber Legs, another Drunken Fist master who combines it with Mantis Fist to create a deadly style.",0,0,Nan bei zui quan,cn +22328,The Apple Dumpling Gang Rides Again,1979-06-27,88.0,,87232,tt0078790,"As belles, they were ding-dongs... they enlisted, and were rotten to the corps... and when things got hotter... they went to the cooler... now, they're on the loose again!","Amos and Theodore, the two bumbling outlaw wannabes from The Apple Dumpling Gang, are back and trying to make it on their own. This time, the crazy duo gets involved in an army supply theft case -- and, of course, gets in lots of comic trouble along the way!",0,0,The Apple Dumpling Gang Rides Again,en +39771,The Lady in Red,1979-07-01,93.0,,,tt0079429,"She's made of bullets, sin & bathtub gin!",1930's gangster era film about Dillinger and his last girl. Written by John Sayles.,0,0,The Lady in Red,en +13305,Snow-White and Rose-Red,1979-07-05,70.0,,,tt0210964,,"In an enchanted forest, the princely brothers Michael and Andreas get lost and are transformed, by a mountain spirit who jealously guards his underground treasure, into animals until the unlikely event of sincere love from a human. The only persons who may be able to give such love are the local commoner sisters Snow-white and Rose-red, who are kind and helpful by nature and stand to harvest unimagined rewards.",0,0,Schneeweißchen und Rosenrot,de +419601,Поэма о крыльях,1979-07-06,,,,tt0079730,,,0,0,Поэма о крыльях,ru +82430,Arabian Adventure,1979-07-08,98.0,,,tt0078792,"Soar into a Magical World of Action, Excitement and Enchantment!","An evil caliph (Christopher Lee) offers his daughter’s hand in marriage to a prince if he can complete a perilous quest for a magical rose. Helped by a young boy and a magic carpet, Prince Hasan (Oliver Tobias), has to overcome genies, fire breathing monsters and treacherous swamps to reach his prize and claim the hand of the Princess Zuleira (Emma Samms).",0,0,Arabian Adventure,en +30547,The Champ,1979-07-10,121.0,,,tt0078950,"The most poignant love-triangle of all - a father, his son, and the woman who came between them.","The more you love, the harder you fight.The world looks at Billy Flynn and sees a has-been who seemingly never was, an ex-boxing champion slammed to the mat years ago by booze and gambling. But Billy's son TJ sees what the world doesn't. He knows his flawed but loving father is, was and always will be The Champ.",0,0,The Champ,en +140648,City on Fire,1979-07-11,106.0,,,tt0078976,What Happened to Them Could Happen to You ... In Any City Anywhere!,"A pyromaniac, ex-employee of a city oil refinery creates an explosion at the facility which starts a chain-reaction of fires that engulf the entire city.",0,0,City on Fire,en +11449,The Amityville Horror,1979-07-27,117.0,,397842,tt0078767,"For God's Sake, Get Out!","George Lutz and his wife Kathleen, move into their Long Island dream house with their children only for their lives to be turned into a hellish nightmare. The legacy of a murder committed in the house gradually affects the family and a priest is brought in to try and exorcise the demonic presence from their home.",0,86432000,The Amityville Horror,en +85327,Rich Kids,1979-08-01,101.0,,,tt0079806,,"Two 12 year olds, the products of Upper West Side broken homes, struggle to make sense of their parents lives and their own adolescent feelings",0,0,Rich Kids,en +29786,North Dallas Forty,1979-08-03,119.0,,,tt0079640,Wait till you see the weird part.,A semi-fictional account of life as a professional Football (American-style) player. Loosely based on the Dallas Cowboys team of the early 1970s.,0,26079312,North Dallas Forty,en +85602,Jaguar Lives!,1979-08-09,90.0,,,tt0079362,,"The world's newest kung fu legend, Joe Lewis, takes on evil gangsters and saves the world.",0,0,Jaguar Lives!,en +10770,The Sheriff and the Satellite Kid,1979-08-10,88.0,,351721,tt0079859,,"A young humanoid alien who gets stranded on earth hooks up with a grizzled old sheriff in a western town and tries to help him solve a tough case, but the sheriff doesn't want any help from a ""kid.""",0,0,Uno sceriffo extraterrestre - poco extra e molto terrestre,it +28,Apocalypse Now,1979-08-15,153.0,http://www.apocalypsenow.com,,tt0078788,This is the end...,"At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, ""does not exist, nor will it ever exist."" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.",31500000,89460381,Apocalypse Now,en +16659,My Brilliant Career,1979-08-17,100.0,,,tt0079596,,A young woman who is determined to maintain her independence finds herself at odds with her family who wants her to tame her wild side and get married.,0,0,My Brilliant Career,en +26326,Rock 'n' Roll High School,1979-08-24,93.0,,,tt0079813,Will your school be NEXT?,"A group of rock-music-loving students, with the help of the Ramones, take over their school to combat its newly installed oppressive administration.",300000,0,Rock 'n' Roll High School,en +7219,Zombie Flesh Eaters,1979-08-25,91.0,,133923,tt0080057,We are going to eat you!,"A zombie is found aboard a boat off the New York coast which belongs to a famous scientist. A journalist travels to the Antilles with the daughter of the scientist. They discover a terrifying disease which is turning the islanders into horrifying zombies, who devour human flesh and seem indestructible....",0,0,Zombi 2,it +4948,Womanlight,1979-08-29,98.0,,,tt0078978,,No overview found.,0,0,Clair de femme,fr +322455,The Burgos Trial,1979-08-31,0.0,,,tt0084541,,,0,0,El Proceso De Burgos,es +24750,Time After Time,1979-08-31,112.0,,,tt0080025,H.G. Wells Races Through Time To Catch Jack The Ripper!,The Wildest Chase Of The Century! London 1893 is home to a killer with a macabre nickname... and also to a visionary genius who would write The Time Machine. But what if H.G. Wells' invention wasn't fiction? And what if Jack the Ripper escaped capture fleeing his own time to take refuge in ours - with Wells himself in pursuit?,0,0,Time After Time,en +218772,I guappi non si toccano,1979-09-02,0.0,,,tt0079248,,,0,0,I guappi non si toccano,it +102961,Seven,1979-09-07,100.0,,,tt0079882,Death is their way of life!,A government agent discovers a plot by a cartel of seven gangsters to take over the state of Hawaii. He hires a team of seven hitmen to stop them.,0,0,Seven,en +10373,Quadrophenia,1979-09-14,120.0,,,tt0079766,A Way of Life,"Based on the 1973 rock opera album of the same name by The Who, this is the story of 60s teenager Jimmy. At work he slaves in a dead-end job. While after, he shops for tailored suits and rides his scooter as part of the London Mod scene.",0,0,Quadrophenia,en +61644,Squeeze Play,1979-09-24,96.0,,,tt0081552,It's a World Series of Laughs!,The girlfriends of softball players decide to form their own team as a way of avenging their neglect.,150000,0,Squeeze Play,en +128557,Hunted City,1979-09-27,103.0,,,tt0079856,,"Commissario Paolo Ferro (Maurizio Merli) stars as a (typical) tough cop again. This time he returns to the city of Milan to go after a murder corporation. Acampora (Mario Merola) is believed to be the prime suspect although he later proves to be one of the mafia's targets. As if all that wasn't enough, Paolo has to face his own nephew who seems to be involved in all sorts of dirty business.",0,0,"Sbirro, la tua legge è lenta... la mia... no!",en +84030,Prince and the Evening Star,1979-09-30,86.0,,,tt0176048,,"A wonderful fairytale about looking for love, defeating evil and learning some valuable moral lessons on the way. The story begins with the young Prince Velen , who is left in charge of the castle and his three sisters. During the night he has a visitation and before he knows it, all his sisters are married off and gone away, and himself falls in love with beautiful Večernice.Now he is faced with the King's wraths and charged with a quest. The journey, however, hides obstacles and danger; not only treacherous merchants and robbers, but also a evil wizard Mrakomor...",0,0,Princ a Večernice,cs +42179,Wise Blood,1979-10-01,106.0,,,tt0080140,An American Masterpiece!,"A Southerner--young, poor, ambitious but uneducated--determines to become something in the world. He decides that the best way to do that is to become a preacher and start up his own church.",0,0,Wise Blood,en +52238,Squadra antigangsters,1979-10-10,0.0,,188138,tt0079943,,,0,0,Squadra antigangsters,it +155397,The Incredible Kung Fu Master,1979-10-23,0.0,,,tt0080156,,"Tung Wei (18 Fatal Strikes Enter The Dragon) is a lad who wants to learn kung fu. He trains in two different styles: Hung Gar and Wing Chun. Everything is fine until a jealous master creates a rift between Tung's two teachers, and he has to choose sides. But a bigger problem looms ahead. The Tiger Master, played by Philip Ko (Dragon On Fire, Fearless Dragons), wants to fight both men to the death. They're no match for him, so Tung goes to the one man who can train him properly: Sammo Hung",0,0,Xing mu zi gu huo zhao,fr +53648,Seeking Asylum,1979-10-24,110.0,,,tt0078963,,A new teacher introduces radical ideas at a nursery school. Leading to varied reactions from the students and the parents.,0,0,Chiedo asilo,it +45964,When a Stranger Calls,1979-10-26,97.0,,276838,tt0080130,...Fear is the Message!,"A psychopathic killer terrorizes a babysitter, then returns seven years later to menace her again.",0,0,When a Stranger Calls,en +148031,Freedom Road,1979-10-29,186.0,,,tt0079173,,"Muhammad Ali, in a rare acting role, plays Gideon Jackson, an ex-slave in 1870's Virginia who gets elected to the U.S. Senate in Washington D.C. and battles other former slaves and white sharecroppers to keep the land they tended all their lives.",0,0,Freedom Road,en +146322,Running,1979-10-30,102.0,,,tt0079832,A story about having the courage to be what you are!,An Olympic hopeful marathon runner hopes his success will be the answer to his marriage woes and other personal problems.,0,0,Running,en +28482,Supersonic Man,1979-11-01,88.0,,,tt0079971,,A masked superhero (Michael Coby) with a private-eye disguise thwarts a madman's (Cameron Mitchell) death-ray plot.,0,519204,Supersonic Man,es +23957,Over the Edge,1979-11-02,95.0,,,tt0079688,"Nobody listened. Nobody cared. Until the night they went ""Over the Edge""","The music of Cheap Trick, The Cars, and The Ramones highlights this realistic tale of alienated suburban youth on the rampage. Dillon makes his screen debut in this updated, well-done ""Rebel Without a Cause."" Shelved for several years, the movie was finally released after Dillon made it big. Sleeper with excellent direction and dialogue.",0,0,Over the Edge,en +5425,Beyond the Darkness,1979-11-15,94.0,,,tt0078916,A fate worse than death!,"A young rich orphan loses his fiancée to voodoo doll mischief on the part of his housekeeper who is jealous of his attentions. He digs his girlfriend up, cleans her out, stuffs her, and puts her in bed at the mansion. Following this, he tries out and disposes of a series of young maidens, trying to find the right replacement for her, and the disapproving housekeeper helps him with the disposals.",0,0,Buio Omega,it +64454,The Hamburg Syndrome,1979-11-22,117.0,,,tt0079264,,"When a plague breaks out in Hamburg, several people break out of quarantine and make their way out of the city... only to find that the plague is more widespread.",0,0,Die Hamburger Krankheit,de +131194,Eagle's Wing,1979-11-23,111.0,,,tt0079094,"The west, the way it really was... before the myths were born.","Two men, an aging Native American and a ne'er-do-well trapper from North America, race to claim the stallion Eagle's Wing in antebellum Mexico, meeting marauded stagecoach travelers and garrisoned Mexicans along the way.",0,0,Eagle's Wing,en +131478,Doomed Love,1979-11-25,260.0,,,tt0077159,,A story about doomed love between two people from different worlds and the impact in their lives.,0,0,Amor de Perdição,pt +65066,Going in Style,1979-12-07,97.0,,,tt0079219,"Whether they win or lose, they'll be ""Going in Style""","Three senior citizens in their 70s who live together are slowly decaying in endless days with nothing to do but feed the birds. One of them comes up with an idea - rob a bank. They certainly could use the money if they get away with it and if they are caught, what could happen to three old men?",0,0,Going in Style,en +42168,Chapter Two,1979-12-14,124.0,,,tt0078952,"It's not supposed to happen twice in your life, but it can.","George Schneider is an author whose wife had just died. His brother Leo gives him the number of Jennie Malone, and somehow they hit it off. And just when things are moving along, the memory of his first wife comes between them.",0,0,Chapter Two,en +343283,I Am Maria,1979-12-15,94.0,,,tt0079359,,A story about a strange friendship between 11 years old Maria and an older man Jon.,0,0,Jag är Maria,sv +15371,Lupin the Third: The Castle of Cagliostro,1979-12-15,110.0,,145901,tt0079833,,"After a successful robbery leaves famed thief Lupin III and his partner Jigen with nothing but a large amount of fake money, the so called ""Goat Bills"", he decides to track down the counterfeiter responsible - and steal any other treasures he may find in the Castle of Cagliostro, including the 'damsel in distress' he finds imprisoned there.",0,0,Rupan sansei: Kariosutoro no shiro,ja +106851,Henry IV Part 2,1979-12-16,150.0,,,tt0079288,,The death of King Henry the Fourth and the coronation of King Henry the Fifth.,0,0,Henry IV Part 2,en +12102,Kramer vs. Kramer,1979-12-18,105.0,,,tt0079417,There are three sides to this love story,"Ted Kramer is a career man for whom his work comes before his family. His wife Joanna cannot take this anymore, so she decides to leave him. Ted is now faced with the tasks of housekeeping and taking care of himself and their young son Billy.",8000000,106260000,Kramer vs. Kramer,en +11145,The Electric Horseman,1979-12-21,122.0,,,tt0079100,,"Sonny Steele used to be a rodeo star, but his next appearance is to be on a Las Vegas stage, wearing a suit covered in lights, advertising a breakfast cereal. When he finds out they are going drug the horse in case its too frisky, he rides off into the desert...",0,61801971,The Electric Horseman,en +165159,Agenzia Riccardo Finzi... praticamente detective,1979-12-21,,,,tt0077130,,,0,0,Agenzia Riccardo Finzi... praticamente detective,it +214641,Schalcken the Painter,1979-12-22,70.0,,,tt0286049,,"Can Schalcken save his love, Rose, from the clutches of a ghastly suitor before it is too late?",0,0,Schalcken the Painter,en +196065,Racquet,1979-12-30,87.0,,,tt0079771,Whack It!,Centred around a former tennis champ who swings with the girls and volleying straight sets with the rich and famous while set on owning his own tennis court.,0,0,Racquet,en +54858,The Crippled Masters,1979-12-31,90.0,,,tt0122029,,"Two men skilled in the arts of Kung-Fu are betrayed by their master and crippled for life, one left with no arms and the other with no legs. Despite their obvious disadvantages, they learn to combine their martial arts skills and seek revenge against the evil master.",0,0,天殘地缺,cn +115161,Fish Heads,1980-01-01,5.0,,,tt0218976,,"A short, surreal movie which becomes a music video, starring a young Bill Paxton and Bill Mumy of Lost in Space fame. Was shown somewhat frequently in the early days of MTV.",0,0,Fish Heads,en +221234,Suur Tõll,1980-01-01,14.0,,,tt0475747,,"""Tyll the Giant"" was based on an Estonian folk tale about of the gigantic hero, Tõll, who lived on the island of Saaremaa (Oesel) in the Baltic Sea. Though he was king of the island, Tõll often worked as a common farmer, tending to his crops and returning to his loving wife, Piret. He was a good king, often quick to anger but always kind and willing to help his fellow man. Tõll's greatest enemy is a devil by the name of Vanatühi (""Old empty one,"" ""Old vile one""), the god of the underworld who specializes in sly, cowardly mischief. In this film, when War comes to Saaremaa, Tõll arrives to aid his dying army, but the evil Vanatühi takes advantage of his absence to wreak havoc on Tõll's home.",0,0,Suur Tõll,en +49098,Talking Heads,1980-01-01,16.0,,,tt0080770,,Krzysztof Kieslowski asks Poles of various ages who they are and what they want in life.,0,0,Gadające głowy,pl +33356,The Falls,1980-01-01,195.0,,,tt0080715,,"The exploration of the effects of an unexpected catastrophe, known as VUE (violent unknown event) through the bios of 92 survivors.",0,0,The Falls,en +166,The Party,1980-01-01,110.0,,41649,tt0082100,,"Le Boum is the story of a 13-year-old French girl dealing with moving to a new city and school in Paris, while at the same time her parents are getting a divorce.",0,0,La Boum,fr +350594,Hitlar,1980-01-01,0.0,,,tt0269330,,"The son of Hitler, Hitlar, wreaks havoc in a Punjabi village.",0,0,Hitlar,en +130544,Palermo or Wolfsburg,1980-02-01,175.0,,,tt0081299,,Palermo or Wolfsburg (German: Palermo oder Wolfsburg) is a 1980 film by Werner Schroeter. It tells the story of an Italian immigrant who comes to West Germany in search of work.,0,0,Palermo oder Wolfsburg,de +38922,Fatso,1980-02-01,93.0,,,tt0080724,Starving for a great movie?,"Dominick has always been a big kid who loved eating. It was his favourite thing. Then his cousin dies from health complications due to a lack of exercise and improper diet. Antoinette, Dominick's sister, makes him promise to see a diet doctor and lose some weight. This is very hard for Dominick, but he tries. He also finds motivation when he meets Lydia, and he discovers a love that is more intense than his love of food. He spends so much time kissing and walking around with Lydia that he no longer eats as many unhealthy things, and he loses weight without even trying.",0,0,Fatso,en +256356,Speed Cross,1980-02-02,88.0,,,tt0124302,,Undercover cop Fabio Testi infiltrates the world of motocross racing.,0,0,Speed Cross,it +40146,Night of the Demon,1980-02-04,97.0,,,tt0081229,An evil mutation embarks on a wave of brutal butchery.,A professor and his students have a grisly encounter with a sasquatchlike creature that prowls the backwoods.,0,0,Night of the Demon,en +17971,Midnight Madness,1980-02-08,112.0,,,tt0081159,The most fun you'll ever have...in the dark!,A genius grad student organizes an all-night treasure hunt in which five rival teams composed of colorful oddballs furiously match wits with one another while trying to locate and decipher various cryptic clues planted ingeniously around Los Angeles.,0,0,Midnight Madness,en +21028,Moscow Does Not Believe in Tears,1980-02-11,142.0,,,tt0079579,,"This is a life story of three girlfriends from youth to autumn ages. Their dreams and wishes, love, disillusions...",0,0,Москва слезам не верит,ru +86942,Tusk,1980-03-01,119.0,,,tt0078356,,"An English girl and an Indian elephant, born on the same day, share a common destiny...",0,0,Tusk,en +83802,The Gong Show Movie,1980-05-23,89.0,,,tt0080808,The Gong Show that was gonged by the censor.,"A week in the life of ""The Gong Show"" host and creator Chuck Barris.",0,0,The Gong Show Movie,en +11680,The Miser,1980-03-05,125.0,,,tt0078813,,"Based on Molière's play. The children of Harpagon, Cléante and his sister Elise, are each in love but they still haven't spoken to their father yet. Harpagon is a miser who wants to choose the right man and the right woman for his children. When Cléante, at last, tries to speak to Harpagon, the old man informs the family that he wants to marry Marianne, the young girl loved by Cléante. Unaware of his son's sorrow, Harpagon doesn't understand why Cléante has become so angry with him.",0,0,L'Avare,fr +22504,The King and the Mockingbird,1980-03-19,83.0,,,tt0079820,,"The kingdom of Takicardie quakes under the rule of the tyrannical King Charles V-et-III-font-VIII-et-VIII-font-XIV, whose favourite pastime is shooting birds. His archenemy is a cheeky mockingbird, whose favourite pastime is thwarting the king’s attempts to shoot birds. One night, a portrait of the king comes to life and disposes of the real king, taking his place. The portrait king falls in love with a young shepherdess in another painting and intends to marry her. But, alas, the shepherdess has fallen in love with a chimneysweep and together they elope from the king’s palace. Enraged, the king sends his police to capture them and once they are within his power he forces the shepherdess to marry him. The mockingbird must use all his guile and courage to once more thwart the king and bring his evil reign to an end.",0,0,Le roi et l'oiseau,fr +47876,Little Miss Marker,1980-03-21,103.0,,,tt0081063,"A wildly romantic comedy about a cookie, a bookie, and the kid they bet their hearts on.","Sorrowful Jones is a cheap bookie in 1930's. When a gambler leaves his daughter as a marker for a bet, he gets stuck with her. His life will change a great deal with her arrival and his sudden love for a woman also involved in gambling operations.",0,6321392,Little Miss Marker,en +75336,I'm Photogenic,1980-03-21,117.0,,,tt0081536,,Antonio Barozzi moves from Lago Maggiore to Rome to become an actor. He does not realize his agent and acting coach are only manipulating him to further their own careers.,0,0,Sono fotogenico,it +48949,Hide in Plain Sight,1980-03-21,92.0,,,tt0080868,"If the Justice Dept of the United States abducted your children, what would you do?",True story of a divorced father in search of his children when his ex-wife enters the witness relocation program.,0,0,Hide in Plain Sight,en +13550,The Changeling,1980-03-27,107.0,,,tt0080516,...an experience beyond total fear.,"A man staying at a secluded historical mansion, finds his life being haunted by the presence of a spectre.",0,12000000,The Changeling,en +5917,Tom Horn,1980-03-28,94.0,,,tt0080031,See him before he sees you,A renowned former army scout is hired by ranchers to hunt down rustlers but finds himself on trial for the murder of a boy when he carries out his job too well. Tom Horn finds that the simple skills he knows are of no help in dealing with the ambitions of ranchers and corrupt officials as progress marches over him and the old west.,0,0,Tom Horn,en +47942,When Time Ran Out...,1980-03-28,121.0,,,tt0081747,Caught in a game of power. Playing time: 24 hours. Prizes: Untold wealth. Rules: None.,An active volcano threatens a south Pacific island resort and its guests as a power struggle ensues between the property's developer and a drilling foreman.,20000000,3763988,When Time Ran Out...,en +39867,Don't Go in the House,1980-03-28,82.0,,,tt0080646,In a steel room built for revenge they die burning... in chains.,"As a child, Donald was tormented by his mother who used fire as a punishment. Now a deranged adult, Donald stalks women at clubs, then takes them home where he kills them with a flamethrower.",250000,0,Don't Go in the House,en +189888,The Baltimore Bullet,1980-03-31,103.0,,,tt0080412,Hide your women. Lock up your cash. Billie Joe & the Baltimore Bullet are on their way!,A tale of two hustlers trying to set up a big game.,0,0,The Baltimore Bullet,en +259975,Belle Starr,1980-03-31,97.0,,,tt0080424,,"Belle Star is a bandit with an itch to ride with the outlaw legends, the James gang, the Youngers and the Dalton boys.",0,0,Belle Starr,en +13005,Where the Buffalo Roam,1980-04-25,96.0,,,tt0081748,,Semi-biographical film based on the experiences of gonzo journalist Hunter S. Thompson.,0,6659377,Where the Buffalo Roam,en +66628,Toward the Terra,1980-04-25,0.0,,,tt0081648,,A young boy learns he is part of a powerful race of psionic humans who must fight the normal humans determined to keep them from Earth.,0,0,地球[テラ]へ...,en +11953,Kagemusha,1980-04-26,180.0,,,tt0080979,,"When a warlord dies, a peasant thief is called upon to impersonate him, in order to protect his clan from appearing weak and vulnerable. But he finds himself haunted by the warlord’s spirit as well as his own ambitions.",0,0,影武者,ja +63505,Gideon's Trumpet,1980-04-30,104.0,,,tt0080789,,True story of Clarence Gideon's fight to be appointed counsel at the expense of the state. This landmark case led to the Supreme Court's decision which extended this right to all criminal defendants.,0,0,Gideon's Trumpet,en +29343,Humanoids from the Deep,1980-05-01,80.0,,,tt0080904,From The Caverns Of The Deep... It Strikes!,They're not human. But they hunt human women. Not for killing. For mating.,0,0,Humanoids from the Deep,en +1361,The Return of the King,1980-05-11,98.0,,141290,tt0079802,,Two Hobbits struggle to destroy the Ring in Mount Doom while their friends desperately fight evil Lord Sauron's forces in a final battle.,0,0,The Return of the King,en +3537,Fame,1980-05-16,134.0,,,tt0080716,"If they've really got what it takes, it's going to take everything they've got.",A chronicle of the lives of several teenagers who attend a New York high school for students gifted in the performing arts,0,21202829,Fame,en +273879,Black Angel,1980-05-21,25.0,https://itunes.apple.com/us/movie/black-angel/id870578336,,tt0130508,,"A knight returns home from the Crusades only to find his village devastated by disease and his family gone. He roams the forest searching for them, until he finds a mysterious maiden in a lake who asks him to kill the evil black knight.",25000,0,Black Angel,en +694,The Shining,1980-05-22,144.0,,,tt0081505,A masterpiece of modern horror.,"Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.",19000000,44017374,The Shining,en +108665,The Master,1980-05-23,92.0,,,tt0201470,,"Gao Jian is a lazy and arrogant student of the martial arts school ran by vain Si Fu Shi Chen-chung. One night after his punishment in his school a wounded man reaches his house. He is Jin Tien-yun, a legendary warrior fleeing from a fight in which he was stabbed in a sneak attack and now has to hide from his pursuers, the Three Devils. Gao helps him and in return, Jin decides to teach him some serious kicks. Gao has to live alone for a year after Shi believes that he is traitor of his school. Then he tries to kill him but Jin interferes in order to save Gao and as his wounds are not fixed yet, he gets into a final battle with the three Devils. So it is Gao's turn to seek for revenge.",0,0,Bui bun si mun,cn +53950,The Hearse,1980-06-01,95.0,http://www.crownintlpictures.com/hktitles.html,,tt0080853,The Barrier Between Life and Death is no Greater than the Thickness of a Door...and now that Door is Open!,Jane Hardy moves into the house left to her by her deceased aunt. After moving in Jane is haunted by a hearse following her around.,0,0,The Hearse,en +26873,To The Stars By Hard Ways,1980-06-06,148.0,,,tt0126237,,"A Star-ship discovers a dead alien space craft. All the humanoid crew are dead except for one woman. When revived she remembers nothing of the accident which crippled the space craft, and is brought back to earth to be studied.",0,0,Через тернии к звёздам,ru +17496,Urban Cowboy,1980-06-06,132.0,,,tt0081696,Hard Hat Days And Honky-Tonk Nights.,Hard Hat Days Honky-Tonk Nights. John Travolta stars as a young man from the country who learns about life and love in a Houston bar.,0,0,Urban Cowboy,en +21866,Bronco Billy,1980-06-11,116.0,,,tt0080472,The most outrageous of 'em all.,"An idealistic, modern-day cowboy struggles to keep his Wild West show afloat in the face of hard luck and waning interest.",0,0,Bronco Billy,en +21024,Roadie,1980-06-13,106.0,,,tt0081433,Bands make it Rock...Roadies make it Roll!,"A young Texas good ol' boy has a knack with electronic equipment, and that talent gets him a job as a roadie with a raucous traveling rock-and-roll show.",0,0,Roadie,en +525,The Blues Brothers,1980-06-17,133.0,,112636,tt0080455,They'll never get caught. They're on a mission from God.,"Jake Blues is just out of jail, and teams up with his brother, Elwood on a 'mission from God' to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best – play music – so they get their old band together and they're on their way, while getting in a bit of trouble here and there.",27000000,115229890,The Blues Brothers,en +12129,Herbie Goes Bananas,1980-06-25,110.0,,12087,tt0080861,"Yes, We Have A Bananza!",The adorable little VW helps its owners break up a counterfeiting ring in Mexico.,0,0,Herbie Goes Bananas,en +98094,Pinball Summer,1980-06-27,99.0,,,tt0082902,School's out and everything's in!,"It's a summer of fun for two teenaged boys who spend their time chasing two sisters, annoying a biker gang, and basically getting into typical sophomoric hijinks whenever they can.",0,0,Pinball Summer,en +185156,Jane Austen in Manhattan,1980-07-01,108.0,,,tt0080945,,Two teachers vie for the right to stage a play written by Jane Austen when she was twelve years old.,0,0,Jane Austen in Manhattan,en +54287,Hangar 18,1980-07-01,97.0,,,tt0080836,It started with an accident in space . . . and led to the terrifying secret in . . . HANGAR 18,During a Space Shuttle mission a satellite rams a unidentified flying object. The UFO afterwards performs an emergency landing in the deserts of Arizona. However the White House denies it's existence because of the near presidential elections. The UFO is brought to the secret hangar 18 and the accident is claimed to incompetence of the astronauts Bancroff and Price. But the two fight against this and try to hunt down the UFO.,0,6000000,Hangar 18,en +39176,The Awakening,1980-07-31,105.0,,,tt0080402,They thought they had buried her forever!,"When a British archaeologist violates an Egyptian queen's tomb, her evil spirit enters his daughter.",0,0,The Awakening,en +5922,The Hunter,1980-08-01,93.0,,,tt0080907,He's not as fast as he used to be... That's what makes him human. He's a bounty hunter... And that's what makes him dangerous.,"During his long career, bounty hunter Ralph ""Papa"" Thorson has caught over 5,000 criminals. Now, while he is working on apprehending fugitives in Illinois, Texas and Nebraska, he himself is being hunted by a psychotic killer.",0,0,The Hunter,en +24825,The Octagon,1980-08-14,104.0,,,tt0081259,,"Scott James, a veteran martial arts expert, is recruited as the protector of the wealthy and beautiful Justine after she becomes the target of a ninja clan. When Scott finds out that his ruthless arch-nemesis, McCarn , is involved with the stealthy and dangerous criminals, he is eager to settle old scores. Soon Scott is facing off against McCarn and the entire ninja horde in an effort to take them all down.",0,18971000,The Octagon,en +30924,Motel Hell,1980-08-14,102.0,,,tt0081184,You might just die...laughing!,"Farmer Vincent kidnaps unsuspecting travellers and is burying them in his garden. Unfortunately for his victims, they are not dead. He feeds his victims to prepare them for his roadside stand. His motto is: It takes all kinds of critters...to make Farmer Vincents fritters. The movie is gory, but is also a parody of slasher movies like Last House on the Left.",3000000,0,Motel Hell,en +16026,Sällskapsresan - eller finns det svenskt kaffe på grisfesten?,1980-08-22,107.0,,112537,tt0081590,,Stig-Helmer and Ole Bramserud on a trip to the Canary Islands for Christmas.,0,5010362,Sällskapsresan - eller finns det svenskt kaffe på grisfesten?,sv +383914,Tell Me,1980-08-25,46.0,,,tt0080632,,"Chantal Akerman meets with elderly Jewish women in Paris, all of them survivors of the Shoah, and listens to their family stories. Between interviews, Akerman's mother Natalia speaks of her own family. Made for a French miniseries on grandmothers.",0,0,Dis-moi,en +39415,Loulou,1980-09-03,101.0,,,tt0081076,,"This 1980 French film features Isabelle Huppert as a restless young woman who ditches her boring, tempramental boyfriend for a wild, leather-clad bad boy (played by an incandescent, youthful Gerard Depardieu).",0,0,Loulou,fr +47466,The Fly,1980-09-05,3.0,,,tt0081040,,"A fine day in the life of a fly presented completely from the fly's point of view. A fine day until something dreary happens, that is.",0,0,A Légy,en +104973,White Cannibal Queen,1980-09-15,90.0,,,tt0078936,Kidnapped by cannibals! Raised to eat human flesh!,A man is on safari in the jungle with his wife and daughter when the wife gets eaten and daughter's captured by cannibals. Several years later he goes back to see if his daughter is still alive.,0,0,Mondo cannibale,it +38920,The Club,1980-09-18,96.0,,,tt0080546,In this club nobody plays by the rules.,Boardroom and dressing-room intrigues spill on to the field at the Australian Rules football club.,0,0,The Club,en +11333,Super Fuzz,1980-09-18,104.0,,,tt0082924,Dave Speed is saving the world from crime... but who is saving the world from Dave Speed?,"Dave Speed is no ordinary Miami cop--he is an irradiated Miami cop who has developed super powers. Unfortunately, he doesn't quite know how to use them and this gets him in trouble with his long-suffering partner. Red powder from a nuclear explosion gave him super powers and as long as he doesn't see anything red, his only weakness.",0,0,Poliziotto Superpiù,it +99361,Six Swedish Girls at a Pump,1980-09-19,85.0,,330524,tt0081471,When Performance Counts... You Need High Test Girls. Their Body Work's the Best!,A gas station becomes the center of social life in the village after six Swedish girls start working there.,0,0,Sechs Schwedinnen von der Tankstelle,de +134397,Below the Belt,1980-12-01,91.0,,,tt0080427,Below the Belt,A close-up look at the turbulent world of women's professional wrestling as a New York City waitress decides to become a professional wrestler.,0,0,Below the Belt,en +38772,Melvin and Howard,1980-09-19,95.0,,,tt0081150,"Poor Melvin. All he wanted was to be Milkman of the Month. Instead, he lost his job, his truck, and his wife. Then Howard Hughes left him $156,000,000.","The story of hard-luck Melvin Dummar, who claimed to have received a will naming him an heir to the fortune of Howard Hughes.",0,0,Melvin and Howard,en +264321,A Rumor Of War,1980-09-24,191.0,,,tt0081443,,The memories of a US private in Vietnam who slowly gets disillusioned as the war progresses.,0,0,A Rumor Of War,en +98864,Resurrection,1980-09-26,103.0,,,tt0081414,It's not supposed to happen. So be there when it does.,"The story of a woman who survives the car accident which kills her husband, but discovers that she has the power to heal other people. She becomes an unwitting celebrity, the hope of those in desperate need of healing, and a lightning rod for religious beliefs and skeptics.",0,3910019,Resurrection,en +44932,Without Warning,1980-09-26,97.0,,,tt0081764,It Preys On Human Fear. It Feeds On Human Flesh.,An alien creature stalks human prey.,150000,0,Without Warning,en +11337,Stardust Memories,1980-09-26,89.0,,,tt0081554,,"While attending a retrospect of his work, a filmmaker recalls his life and his loves: the inspirations for his films.",10000000,10389003,Stardust Memories,en +10889,Gloria,1980-10-01,123.0,,,tt0080798,And she's out to beat the mob at their own game.,"When a young boy's family is killed by the mob, their tough neighbor Gloria becomes his reluctant guardian. In possession of a book that the gangsters want, the pair go on the run in New York.",0,4059673,Gloria,en +131027,Csontvary,1980-10-02,112.0,,,tt0080577,,"Csontvary Kostka Tivadar was a Hungarian painter, and the actor Latinovitsj Zoltan, who was originally slated to play him in the film, committed suicide during the preliminary planning.",0,0,Csontváry,hu +71503,Cries in the Night,1980-10-03,93.0,,,tt0083976,They were warned... they were all warned... don't go down to the cellar.,"A young woman arrives at her grandmother's house, which used to be a funeral home, to help her turn the place into a bed-and-breakfast inn. After they open, however, guests begin disappearing or turning up dead.",0,0,Cries in the Night,en +40034,Fade to Black,1980-10-14,102.0,,,tt0080711,"Meet Eric Binford, the ultimate movie buff. If you know someone like him… run!","Eric Binford watches a lot of movies. He is the truest definition of a film geek. One day, his sanity takes a turn for the worse and he begins acting out his favorite scenes from the movies. In doing so, he manages to involve his enemies and the scenes usually result in death.",0,0,Fade to Black,en +76411,Times Square,1980-10-17,111.0,,,tt0081635,"In the heart of Times Square, a poor girl becomes famous, a rich girl becomes courageous, and both become friends.",Two ill-matched teenage girls form a punk band and soon have New York by its ears.,0,0,Times Square,en +120212,Blade on the Feather,1980-10-19,82.0,,,tt0080443,,"A reclusive, elderly author is visited by a young admirer...but both men are more than they claim to be.",0,0,Blade on the Feather,en +131897,I Made a Splash,1980-10-30,0.0,,,tt0084079,,,0,0,Ho fatto splash,it +51902,The Tale of John and Marie,1980-11-01,65.0,,,tt0081350,,"Young knight John travels the world in search of fame and fortune, but also to help others and prove himself. However, things go dire fast and he becomes burdened with life's hardships. But then he meets a pretty water nymph, Mary.",0,0,Pohádka o Honzíkovi a Mařence,cs +27230,Christmas Evil,1980-11-01,100.0,,,tt0081793,Better Watch Out... Better Not Cry... Or You May DIE!,"A toy factory worker, mentally scarred as a child upon learning Santa Claus is not real, suffers a nervous breakdown after being belittled at work, and embarks on a Yuletide killing spree.",750000,0,Christmas Evil,en +40220,The Boogey Man,1980-11-07,82.0,,,tt0080464,The most terrifying nightmare of childhood is about to return!,"A young girl witnesses her brother murder a man through a reflection in a mirror. Twenty years later the mirror is shattered, freeing his evil spirit, which seeks revenge for his death.",300000,0,The Boogey Man,en +27346,Maniac,1980-11-07,87.0,,,tt0081114,I warned you not to go out tonight.,"A psychotic man, troubled by his childhood abuse, loose in NYC, kills young women and takes their scalps as trophies. Will he find the perfect woman in photographer Anna, and end his killing spree?",350000,0,Maniac,en +335340,Le Rebelle,1980-11-12,0.0,,,tt0081405,,A young rebel tries to change his ways in order to provide for his sister.,0,0,Le Rebelle,fr +63625,The Stationmaster Meets His Match,1980-11-12,66.0,,,tt0121403,,"The story of Bendegúz, the teenage boy who never succeeds in anything and about whom everybody's first though is ""I wish you had been hanged when you were born!"" drops out of school and becomes a cowboy. He works for the Stationmaster whose cows he has to graze by the railway. Despite his goodwill and kindheartedness he always manages to spoil everything he touches. No matter his wit, he gets into humiliating situations and regularly fights with the Ugly Witch (the Stationmaster's mother-in-law). However his good spirit and cheerfulness never leave him.",0,0,Indul a bakterház,hu +1578,Raging Bull,1980-11-14,129.0,,,tt0081398,,"When Jake LaMotta steps into a boxing ring and obliterates his opponent, he's a prizefighter. But when he treats his family and friends the same way, he's a ticking time bomb, ready to go off at any moment. Though LaMotta wants his family's love, something always seems to come between them. Perhaps it's his violent bouts of paranoia and jealousy. This kind of rage helped make him a champ, but in real life, he winds up in the ring alone.",18000000,23000000,Raging Bull,en +21380,Hell of the Living Dead,1980-11-17,101.0,,,tt0082559,When the Creeping Dead devour the living flesh!,A tough female reporter and her cameraman boyfriend team up with a four-man commando unit in the New Guinea jungle whom are fighting flesh-eating zombies.,0,0,Virus,en +98355,The Space Movie,1980-11-17,78.0,,,tt0079936,,1969's Apollo 11 mission to the moon is highlighted in this tribute to the history of the United States' space program.,0,0,The Space Movie,en +66597,Falling in Love Again,1980-11-21,103.0,,,tt0080714,,"Harry and Sue Lewis met in the 40s as teenagers living in the Bronx. He was an aspiring architect, she was the most beautiful girl in school, and both had a fondness for bran muffins. They fell in love, got married, moved to Los Angeles, and had two kids. While struggling with his midlife crisis, Harry receives an invitation for his high school's reunion back so he takes Sue and their teenage kids on a cross-country car trip back to the Big Apple. Will they see in the Bronx what they expected? Will the good memories from their past help rekindle their fading love? Is it too late to dream?",0,0,Falling in Love Again,en +38602,Little Lord Fauntleroy,1980-11-25,103.0,,,tt0081062,,"Young Cedric (Ceddie) Errol and his widowed mother (known only as ""Dearest"") live in genteel poverty in 1880s Brooklyn after the death of his father. Cedric's grandfather, the Earl of Dorincourt, has long ago disowned his son for marrying an American. But after the death of the Earl's remaining son, he decides to accept the little Cedric as Lord Fauntleroy, his heir.",0,0,Little Lord Fauntleroy,en +50934,Pinocchio's Christmas,1980-12-03,49.0,,,tt0081340,,"Geppetto prepare for Christmas, Pinocchio joins a puppet show to earn money for a present. There he meets and elopes with the beautiful girl puppet Julietta, leaving Geppetto alone and worried.",0,0,Pinocchio's Christmas,en +21629,Stir Crazy,1980-12-12,111.0,,,tt0081562,Two jailbirds who just want out of the cage.,"New Yorkers, Skip Donahue and Harry Monroe, have no jobs and no prospects. They decide to flee the city and find work elsewhere, and land jobs as woodpeckers to promote the opening of a bank. When their feathery costumes are stolen and used in a bank robbery, they no longer have to worry about employment -- they're sent to prison!",0,101300000,Stir Crazy,en +130917,Tribute,1980-12-14,121.0,,,tt0081656,,A shallow Broadway press agent learns he is dying just as his son by his ex-wife arrives for a visit.,0,0,Tribute,en +15310,The Jazz Singer,1980-12-17,115.0,,,tt0080948,His story will make you cry. His music will make you sing. His triumph will make you cheer.,Neil Diamond stars as Yussel in this tale of a young Jewish cantor who strives to make a career in music.,0,0,The Jazz Singer,en +281615,Santa's Pocket Watch,1980-12-20,20.0,,,tt1213897,,"Sam dreams of meeting Father Christmas, so when Santa arrives at his house Sam hides in the big guy's sack. Later, Santa discovers the stowaway, and invites him to a special Christmas dinner, where he presents Sam with a special watch.",0,0,Santa's Pocket Watch,en +10986,The Taming of the Scoundrel,1980-12-20,104.0,,,tt0080439,,"A rich farmer is well known for being very unkind. He's misanthropic, misogynous and cantankerous. Until he meets by chance a gorgeous girl...",0,0,Il bisbetico domato,it +69165,New Year's Evil,1980-12-26,86.0,,,tt0082806,"This New Year's, you're invited to a killer party...","During a New Year's Eve celebration, a punk-rock singer gets a phone call saying that when New Year's strikes in each time zone, someone will be murdered--and she will be the last one.",0,0,New Year's Evil,en +128043,The Outsider,1981-01-01,122.0,,,tt0083151,,A talented but irresponsible violinist ruins his marriage with his drinking and antisocial behaviour.,0,0,Szabadgyalog,hu +87953,Cheerful Wind,1981-01-01,90.0,,,tt0082371,,A romantic drama about a blind man and a somewhat self-indulgent television producer.,0,0,風兒踢踏踩,zh +22257,Vabank,1981-01-01,104.0,,140126,tt0083271,,"October 1934. Poland. Famous bank robber Kwinto decided to quit his dangerous criminal job, but after his friend's death, he changed his mind and organized a burglary of famous and well protected bank which belonged to his former partner in crime, backstabbing and double-crossing Kramer. Kwinto designs a clever plan not to only rob the Kramer's bank but to make it look like Kramer himself did it.",0,0,Vabank,pl +60813,The Bunker of the Last Gunshots,1981-01-01,26.0,,,tt0129805,,A military group of men is locked up in a bunker in an unknown future. All those soldiers are waiting for an eventual enemy. But the discovery of a certain project will cause several catastrophies and will make those men kill each other... Written by Chris Morin,0,0,Le Bunker de la dernière rafale,fr +107430,Full Moon High,1981-01-01,93.0,,,tt0082425,He's today's teenage werewolf… only the rules have changed!,A teenager (Adam Arkin) becomes a werewolf after a family vacation in Transylvania.,0,0,Full Moon High,en +74705,The Adventures of Tom Sawyer and Huckleberry Finn,1981-01-01,0.0,,,tt0081917,,,0,0,Приключения Тома Сойера и Гекльберри Финна,ru +30002,The Munsters' Revenge,1981-01-01,96.0,,,tt0082778,,"The film begins with the Munster family making a visit to the wax museum. They take a picture of themselves standing next to their wax replicas. When the family leaves, the statues in the museum mysteriously come to life and begin wreaking havoc across the city. Herman and Grandpa are then arrested for various crimes they did not commit and try to clear their names in time for the Halloween celebration at the Munster home.",0,0,The Munsters' Revenge,en +79678,Introducing... Janet,1981-01-01,48.0,,,tt0085733,,"Janet is an over-weight girl who has a knack for making the other children in school laugh...by making fun of her own weight. In seeing the other kids reaction, she feels that she might have what it takes to be a comedian. She visits the local comedy club where she finds Tony Moroni who is a struggling comedian whose jokes are less than funny. Together Tony helps Janet find self-esteem and Janet helps Tony with his material.",0,0,Introducing... Janet,en +167951,Body and Soul,1981-01-01,109.0,,,tt0082090,"He's a boxer. She's a knockout. Together, they score.","A young man struggles to become a boxing champ, but success blinds him. It is only through the love of his girlfriend that he is brought back to reality.",0,0,Body and Soul,en +36919,"Waiter, Scarper!",1981-01-01,88.0,,,tt0081730,,"It is the story of a man who had financial troubles. He was married several times and had to pay for several kids. He wanted to earn some extra money by playing in a cafe. But one drunken guest supposes he is a waiter and pays his bill to him. So the main hero finds his chance - he goes through restaurants, pretending that he is a waiter and asks people to hand their cash to him...",0,0,"Vrchní, prchni!",en +34113,Urgh! A Music War,1981-01-01,122.0,,,tt0138902,Stand up & dance!,"Urgh! A Music War is a British film released in 1981 featuring performances by punk rock, new wave, and post-punk acts of the late 70s and early 80s.",0,0,Urgh! A Music War,en +47201,High Risk,1981-01-01,94.0,,,tt0082516,Getting in was easy... getting out was war!!!,"Four American friends, badly needing money, decide to make a commando-like raid into a South American drug lord's compound.",0,0,High Risk,en +31921,They All Laughed,1981-01-01,115.0,,,tt0083189,Some of them promised they'd never fall in love.,"A mad cap private-eye caper about a team of detectives who are following, and are being followed by, a group of beautiful women.",0,0,They All Laughed,en +81463,Mad Foxes,1981-01-01,77.0,,,tt0083291,,A man seeks revenge after a biker gang murders his family.,0,161362,Los violadores,es +125257,Muddy River,1981-01-30,105.0,,,tt0082280,,"Two boys, whose parents ply their trade by the mouth of a muddy river in Osaka, become close friends.",0,0,泥の河,ja +84774,Alice in Wonderland,1981-01-31,30.0,,198921,tt0211191,,,0,0,Алиса в стране чудес,ru +16124,Goodbye Pork Pie,1981-02-05,105.0,,,tt0082464,,"Gerry hires a car in Kaitaia with a stolen licence and travels to Invercargill with John, who's wife has just left him. The ultimate NZ roadtrip adventure.",300000,1400000,Goodbye Pork Pie,en +23668,"Fort Apache, the Bronx",1981-02-06,125.0,,,tt0082402,15 minutes from Manhattan there's a place where even the cops fear to tread.,"From the sight of a police officer this movie depicts the life in New York's infamous South Bronx. In the center is ""Fort Apache"", as the officers call their police station, which really seems like an outpost in enemy's country. The story follows officer Murphy, who seems to be a tuff cynic, but in truth he's a moralist with a sense for justice.",0,0,"Fort Apache, the Bronx",en +279006,Kent State,1981-02-08,0.0,,,tt0082608,,Fine television chronicle of the events of May 1970 at Kent State University in Ohio that led to the killing of four students by the National Guard. Barkin's screen debut!,0,0,Kent State,en +64353,The Hitch Hikers Guide to the Galaxy,1981-02-09,150.0,,,tt0081874,Don't Panic,"An Earth Man and his alien friend escape an exploding Earth, and set forth on an odd adventure across the universe with a known fugitive. Based on the book by Douglas Adams, the dialog follows the book closely. This was originally a 6-part series from the BBC",0,0,The Hitch Hikers Guide to the Galaxy,en +29204,American Pop,1981-02-13,96.0,,,tt0082009,"All those years, all those dreams, all those sons... one of them is going to be a star.",American Pop is an American animated film that tells the story of four generations of a Russian Jewish immigrant family of musicians whose careers parallel the history of American popular music.,0,6000000,American Pop,en +107052,Cafè Express,1981-02-25,0.0,,,tt0080488,,,0,0,Cafè Express,it +27145,The Aviator's Wife,1981-03-04,104.0,,,tt0080728,,"A student is devastated when he finds that his girlfriend is cheating on him. In order to find out why she did it, he decides to spy on her and her airline pilot lover. Then he sees the pilot with a blonde woman and he begins to follow them…",0,0,La femme de l'aviateur,fr +40866,The Devil and Max Devlin,1981-03-06,96.0,,,tt0082263,A new high in being lowdown.,"When Max dies in an accident, he goes straight to hell. But the devil Barney makes him an offer: if he manages to get three innocent youths to sell him their souls in the next two months, he may stay on earth. Max accepts, and returns to earth, equipped with special powers. However his task is harder than expected, especially when 7 years old Tobi demands that he marry his mother. Written by Tom Zoerner",0,0,The Devil and Max Devlin,en +13555,The Funhouse,1981-03-13,96.0,,,tt0082427,Pay to get in. PRAY to get out.,"Rebellious teen Amy (Elizabeth Berridge) defies her parents by going to a trashy carnival that has pulled into town. In tow are her boyfriend, Buzz (Cooper Huckabee), and their friends Liz (Largo Woodruff) and Richie (Miles Chapin). Thinking it would be fun to spend the night in the campy ""Funhouse"" horror ride, the teens witness a murder by a deformed worker wearing a mask. Locked in, Amy and her friends must evade the murderous carnival workers and escape before it leaves town the next day.",0,0,The Funhouse,en +342213,La caliente niña Julietta,1981-03-20,,,,tt0082131,,,0,591696,La caliente niña Julietta,es +47211,"Faster, Faster",1981-03-25,99.0,,,tt0082259,,Angela begins to hang around with Pablo and his gang of young robbers.,0,0,"Deprisa, deprisa",es +11524,Thief,1981-03-27,122.0,,,tt0083190,"Tonight, his take home pay is $410,000... tax free.","Frank is an expert professional safecracker, specialized in high-profile diamond heists. He plans to use his ill-gotten income to retire from crime and build a nice life for himself complete with a home, wife and kids. To accelerate the process, he signs on with a top gangster for a big score.",0,4300000,Thief,en +9589,Christiane F.,1981-04-01,138.0,,,tt0082176,The image of a generation,"This movie portrays the drug scene in Berlin in the 70s, following tape recordings of Christiane F. 14 years old Christiane lives with her mother and little sister in a typical multi-storey apartment building in Berlin. She's fascinated by the 'Sound', a new disco with most modern equipment. Although she's legally too young, she asks a friend to take her. There she meets Detlef, who's in a clique where everybody's on drugs. Step by step she gets drawn deeper into the scene.",0,0,Christiane F. - Wir Kinder vom Bahnhof Zoo,de +11298,The Howling,1981-04-03,91.0,,174218,tt0082533,Imagine your worst fear a reality,"After a bizarre and near fatal encounter with a serial killer, a newswoman is sent to a rehabilitation center whose inhabitants may not be what they seem.",1000000,17985893,The Howling,en +26503,The Black Cat,1981-04-04,92.0,,,tt0080440,When you hear this cat breathing down your neck… start praying… before you finish your Amen… you're dead!,An American photographer (Mimsy Farmer) and a Scotland Yard inspector (David Warbeck) suspect a man's (Patrick Magee) cat of murder.,0,0,The Black Cat,en +39578,The Monster Club,1981-04-11,104.0,,,tt0081178,You'll meet some interesting people and hear some great songs as The Monster Club,"A writer of horror stories is invited to a ""monster club"" by a mysterious old gentleman. There, three gruesome stories are told to him; between each story some musicians play their songs. In the end, it's recognized he's the greatest monster of all ...",0,0,The Monster Club,fr +167262,Cattle Annie and Little Britches,1981-04-24,97.0,,,tt0082145,They told the Doolin-Dalton Gang where to go. Then...they went with them.,"Cattle Annie and Little Britches is a 1981 American film[1] starring Burt Lancaster, Rod Steiger, Diane Lane, and Amanda Plummer, based on the lives of two adolescent girls in the late 19th century Oklahoma Territory, who became infatuated with the Western outlaws that they had read about in Ned Buntline's stories and left their homes to join the criminals. It was scripted by David Eyre and Robert Ward from Robert Ward's book and directed by Lamont Johnson.",0,0,Cattle Annie and Little Britches,en +124202,I Carabbinieri,1981-04-24,0.0,,,tt0160110,,,0,0,I Carabbinieri,it +42149,The Hand,1981-04-24,104.0,,,tt0082497,Nothing Will Prepare You For THE HAND.,"Jon Lansdale is a comic book artist who loses his right hand in a car accident. The hand was not found at the scene of the accident, but it soon returns by itself to follow Jon around, and murder those who anger him.",6500000,566736,The Hand,en +60392,Chashme Buddoor,1981-04-30,145.0,,,tt0082162,,"Two womanizing slackers, Omi and Jai (Rakesh Bedi and Ravi Baswani respectively) attempt to woo the new girl in the neighbourhood, and fail - miserably. Their third room-mate, shy, and a bookworm - succeeds, much to their chargin. The two scheme up comical ideas to split the two lovebirds, so that their secrets and humiliation are not revealed",0,0,Chashme Buddoor,hi +107028,Green Ice,1981-05-01,116.0,,,tt0082476,,He wanted adventure...She craved revenge...Emeralds held the answer.,0,0,Green Ice,en +103260,The Harlem Globetrotters on Gilligan's Island,1981-05-15,120.0,,,tt0082502,,The staff of the island resort need the aid of the Harlem Globetrotters to keep their island from a greedy millionaire.,0,0,The Harlem Globetrotters on Gilligan's Island,en +63441,Masked Avengers,1981-05-15,92.0,,,tt0082153,,"Philip Kwok plays a repentant killer who vows to destroy the masked gang of which he was a member. A young fighter and his martial arts brothers come to the town to catch the killers, but one of them is not to be trusted!",0,0,Cha shou,en +37936,Happy Birthday to Me,1981-05-15,110.0,,,tt0082498,It'll be a killer party!,"Virginia is proud that she belongs to a clique. The best students at a private school. But before her 18th birthday, a grueling set of murders take place and her friends are the ones who are falling prey. Could it be her? She suffers from blackouts due to a freak accident one year earlier. We soon learn the truth behind her accident and what is going on...",0,0,Happy Birthday to Me,en +9443,Chariots of Fire,1981-05-15,123.0,,,tt0082158,"This is the story of two men who run, not to run, but to prove something to the world. They will sacrifice anything to achieve their goals... except their honor.",The true story of British athletes preparing for and competing in the 1924 Summer Olympics.,5500000,58972904,Chariots of Fire,en +101330,Light Years Away,1981-05-20,107.0,,,tt0080373,,A young drifter meets up with a strange old man who claims that he has been taught to fly by birds,0,0,Les années lumière,fr +273202,Mother For Baby Mammoth,1981-06-01,8.0,,,tt1074985,,Baby Mammoth is looking for his Mom.,0,0,Мама для мамонтёнка,ru +63300,Be My Husband,1981-06-06,87.0,,,tt0166514,,"The children's doctor is sent on leave to the south where its services in quality ""husband"" were necessary for young and very beautiful woman.",0,0,Будьте моим мужем,ru +260584,Peasants,1981-06-06,94.0,,,tt0133108,,Pavel's mother hates his fiancee. When Pavel serves in the Army she writes him that Nastya is no longer faithful to him. Pavel decides not to return to his native town. But many years later he returns to his fathers funeral and finds out that Nastya died sometime ago. She left three kids orphans and her elder daughter is also a daughter of Pavel.,0,0,Мужики!,ru +315256,Terror,1981-06-19,0.0,,,tt0259958,,"Dr. Vishal, a mad scientist, turns into a bloodthirsty monster at night as result of an experiment that goes wrong when his wife injects him with a fatal chemical…",0,0,Dahshat,hi +10890,Stripes,1981-06-25,106.0,,,tt0083131,The story of a man who wanted to keep the world safe for democracy...and meet girls.,"John Winger, an indolent sad sack in his 30s, impulsively joins the U.S. Army after losing his job, his girlfriend and his apartment.",10000000,85300000,Stripes,en +43089,Roadgames,1981-06-26,101.0,,,tt0083000,On the world's loneliest highway it's not a game - it's murder!,A truck driver plays a cat-and-mouse game with a mysterious serial killer who uses a young female hitchhiker as bait to lure victims on a desolate Australian highway.,1750000,100000,Roadgames,en +186881,Treasure Hunters,1981-07-09,104.0,,,tt0084310,,"Fu Sheng and his real-life brother star as friends who are searching for a treasure that a Shaolin priest (Gordon Liu), a villainous traitor (Wang Lung Wei) and his sister (Yang Ching Ching) are also trying to find.",0,0,龍虎少爺,cn +10948,The Fox and the Hound,1981-07-10,82.0,http://movies.disney.com/the-fox-and-the-hound,100970,tt0082406,A story of two friends who didn't know they were supposed to be enemies.,"When a feisty little fox named Tod is adopted into a farm family, he quickly becomes friends with a fun and adorable hound puppy named Copper. Life is full of hilarious adventures until Copper is expected to take on his role as a hunting dog -- and the object of his search is his best friend!",12000000,29800000,The Fox and the Hound,en +116432,A Limousine the Colour of Midsummer's Eve,1981-07-12,88.0,,,tt0469785,,"When old auntie Mirta succeeds in a lottery and wins a car, which she cannot use herself, different family members are suddenly there to 'be helpful' in favor to get the car after aunties' death, not to mention, they never have come before to help her. The funny rivalry between two parts of family, a foolish jealousy to the near living peasants' family, which had always non-selfishly been there for auntie, is a caricature of greasy human nature. This is a slight humor of the Soviet life details as well. But aunt Mirta isn't fool, and is still young in her heart until her last minute, that appears in her last will - to whom the car, the limousine in the color of St. John's night goes.",0,0,Limuzīns Jāņu nakts krāsā,lv +20075,Nice Dreams,1981-07-24,88.0,,33071,tt0082163,The story of two enterprising young men who make an amazing amount of money selling ice cream.,"Cheech and Chong house sit for a marijuana grower and rip off the crop. Stalked by keystone-style cops, Los Guys have a series of encounters with L.A. area characters even weirder than themselves",0,0,Nice Dreams,en +10863,Eye of the Needle,1981-07-24,112.0,,,tt0082351,,"A ruthless German spy, trying to get out of Britain with vital information about D-Day, must spend time with a young woman and her crippled husband.",0,18000000,Eye of the Needle,en +33016,Deadly Blessing,1981-08-14,100.0,,,tt0082245,"A gruesome secret, protected for generations, rises to give its...","This film is set in Amish Country, at a local farm, where a woman's husband is mysteriously killed by his own tractor!",2500000,0,Deadly Blessing,en +814,An American Werewolf in London,1981-08-21,97.0,,,tt0082010,Beware the Moon.,Two American tourists in England are attacked by a werewolf that none of the locals will admit exists.,10000000,31973249,An American Werewolf in London,en +288503,Killjoy,1981-08-24,96.0,,,tt0082616,,Story of a young woman's murder and the people who become involved with it.,0,0,Killjoy,pt +63186,La pelle,1981-08-27,131.0,,,tt0082893,,"Naples, year 1943, in the middle of World War II. The city has just be liberated by American troops in an era in which nobody knows just when the war or where begins the peace; winners and losers face...",0,0,La pelle,it +44936,Don't Go In the Woods,1981-09-05,82.0,,,tt0182996,Everyone has nightmares about the ugliest way to die.,"Four backpackers decide to take a hike in the mountains of Utah. But within the woods lurks a killer. But who...or what...is it? The lazy local sheriff blames bears. But the escalating body count seems to point to a human killer. Ignoring the warning signs, our campers remain lost in the woods...alone...awaiting their fate.",0,0,Don't Go In the Woods,en +129383,Something Like It,1981-09-12,103.0,,,tt0189812,,Something Like It (の・ようなもの No Yōna Mono) is a 1981 Japanese film directed by Yoshimitsu Morita.,0,0,の・ようなもの,ja +84735,So Fine,1981-09-25,90.0,,,tt0083099,A revealing comedy.,"While trying to get his father out of a financial jam, a man comes up with an idea that turns into an unexpected overnight financial fashion success - the bottomless pants.",0,0,So Fine,en +12528,Southern Comfort,1981-09-25,105.0,,,tt0083111,It's the land of hospitality... unless you don't belong there.,"A squad of National Guards on an isolated weekend exercise in the Louisiana swamp must fight for their lives when they anger local Cajuns by stealing their canoes. Without live ammunition and in a strange country, their experience begins to mirror the Vietnam experience.",0,0,Southern Comfort,en +320037,Función de noche,1981-09-26,0.0,,,tt0082426,,,0,0,Función de noche,es +185354,The War of the Worlds: Next Century,1981-09-29,96.0,,,tt0083335,,"Film opens on December 18, 1999, just a few days before the dawn of the new century. A local reporter, Iron Idem, announces that the Martians have landed. Shortly after that his program loses its independence: he is given the script telling the crowds how to welcome the invaders.",0,0,Wojna swiatów - nastepne stulecie,pl +73247,Heartbeeps,1981-12-18,79.0,,,tt0082507,Meet a modern nuclear family unlike any other.,Heartbeeps stars Andy Kaufman and Bernadette Peters as domestic robots who fall in love and run off together.,10000000,2154696,Heartbeeps,en +163018,"Learn How to Read and Write, Son",1981-09-30,96.0,"http://en.wikipedia.org/wiki/Learn_How_to_Read_and_Write,_Son",,tt0164094,"The most important political, post-military junta satire about the nation, the religion, the education, the family.","The most important political, post-military junta satire about the nation, the religion, the education, the family.",0,0,Μάθε Παιδί Μου Γράμματα,en +142746,Take Care of the Women!,1981-10-01,120.0,,,tt0143133,,Young journalist starts working on the ship in order to write a story. The only problem is - all the ships crew are young girls.,0,0,Beregite Zhenshchin!,ru +28893,Galaxy of Terror,1981-10-01,81.0,,,tt0082431,ALIEN was the beginning… Hell Has Just Been Relocated!,"As a lone spaceship proceeds on its long voyage across space, the crew are surprised to encounter a strange pyramid form. Surprise turns to horror as one by one, they discover that their darkest nightmares are all starting to become real. The pyramid has to be behind it all somehow, but how can they save themselves from its influence?",700000,0,Galaxy of Terror,en +76397,Zoot Suit,1981-10-02,103.0,,,tt0083365,An american original.,"Part fact and part fiction, Zoot Suit is the film version of Luis Valdez's critically acclaimed play, based on the actual Sleepy Lagoon murder case and the zoot suit riots of 1940s Los Angeles. Henry Reyna is the leader of a group of Mexican-Americans being sent to San Quentin without substantial evidence for the death of a man at Sleepy Lagoon. As part of the defense committee, Alice Bloomfield and George Shearer fight the blatant miscarriage of justice for the freedom of Henry and his friends.",0,0,Zoot Suit,en +54660,Paternity,1981-10-02,94.0,,,tt0082886,He wants YOU to have his baby,A single man searches for a woman who will bear his baby with no strings attached.,0,0,Paternity,en +31074,The Wave,1981-10-04,44.0,,,tt0083316,,A teacher plays a mental game with some of his students. Based on a true story.,0,0,The Wave,en +25468,My Dinner with André,1981-10-11,110.0,,,tt0082783,,"Wallace Shawn and Andre Gregory, apparently playing themselves, share their lives over the course of an evening meal at a restaurant.",0,0,My Dinner with André,en +5421,Monster Hunter,1981-10-11,96.0,,,tt0084028,Pray you survive the hunt.,A man has been driven insane by church-sanctioned scientific experimentation which also causes him to be nearly impossible to kill. He is pursued to America by a priest where he embarks upon a killing spree while the priest tries to hunt him down and kill him.,0,0,Rosso sangue,it +39982,Just Before Dawn,1981-10-14,90.0,,,tt0082592,Will Anyone Survive Those Hours Just Before Dawn?,"Five campers arrive in the mountains to examine some property they have bought, but are warned by the forest ranger Roy McLean that a huge machete-wielding maniac has been terrorising the area. Ignoring the warnings, they set up camp, and start disappearing one by one. If that sounds too run-of-the-mill, there's a genuinely shocking plot twist half-way through...",0,0,Just Before Dawn,en +65002,The Circle of Deceit,1981-10-15,108.0,,,tt0082429,,Georg Laschen leaves his family in West Germany to go work as a war correspondent in Beirut during the fights between Christians and Palestinians.,0,0,Die Fälschung,fr +764,The Evil Dead,1981-10-15,85.0,,1960,tt0083907,The Ultimate Experience In Grueling Terror,"When a group of college students finds a mysterious book and recording in the old wilderness cabin they've rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.",350000,29400000,The Evil Dead,en +30709,...All the Marbles,1981-10-16,113.0,,,tt0081964,The California Dolls and their best friend Harry...Together they're going for...All The Marbles,A two-bit promoter tries to take a women's wrestling team to the top.,0,0,...All the Marbles,en +40041,Dead Kids,1981-10-16,99.0,,,tt0082243,Town population is down... about six feet,A scientist is experimenting with teenagers and turning them into murderers.,0,0,Dead Kids,en +41077,Son of the White Mare,1981-10-22,81.0,,,tt0083931,,"The story’s main character is Fehérlófia, who is a man with superhuman power. He is born as the third son of a horse. He listened to old tales, mostly about the Forefather and the end of his reign, caused by evil dragons.",0,0,Fehérlófia,hu +40368,Nightmare,1981-10-23,97.0,,,tt0082818,The Dream You Can't Escape ALIVE!,A drug-treated schizophrenic plagued by horrible nightmares escapes from the hospital and goes on a killing spree.,0,0,Nightmare,en +42139,Blood Wedding,1981-10-25,67.0,,,tt0082088,,"A bride elopes with her lover on the very day of her wedding. The groom follows the two lovers, and a knife fight takes place. The rivals stab each other and the only wedding that takes place is that one knotting their destinies together in death. A blood wedding.",0,0,Bodas de sangre,es +53179,Le maître d'école,1981-10-28,0.0,,,tt0082726,,,0,0,Le maître d'école,fr +110001,Escape from Segovia,1981-11-07,0.0,,,tt0082424,,"Narrates the escape of 29 political prisoners, led by ETA, from Segovia prison. Based on actual events.",0,0,La fuga de Segovia,es +41380,The Prodigal Son,1981-11-10,100.0,,,tt0085211,The fighting men in Chinese opera house,"A rich man's son (Yuen Biao) believes himself to be the best kung fu fighter in Canton. Unfortunately, his father, anxious for his son's safety, bribes all his opponents to lose. After a humiliating defeat at the hands of an actor in a traveling theatre company, the son resolves to find a better teacher. Furious kung fu battles and slapstick comedy.",0,0,敗家仔,cn +2989,Roar,1981-11-12,102.0,http://www.roarthemovie.com/,,tt0083001,No animals were harmed in the making of this movie. 70 members of the cast and crew were.,Roar follows a family who are attacked by various African animals at the secluded home of their keeper.,17000000,2000000,Roar,en +166393,Burning an Illusion,1981-11-13,101.0,,,tt0082117,,"A young black woman in England becomes increasingly frustrated with her life with her lazy, demanding boyfriend, and with the help of friends seeks something better.",0,0,Burning an Illusion,en +24140,Bockerer,1981-11-13,104.0,,98077,tt0082087,,No overview found.,0,0,Der Bockerer,de +438012,Kiljusen herrasväki,1981-11-20,103.0,,,tt0082610,,A Finnish comedy based on the books of Jalmari Finne.,0,0,Kiljusen herrasväki,en +76821,Hotel America,1981-12-02,95.0,,,tt0082539,,"Helene (Catherine Deneuve), a pill-addicted anesthesiologist, is mourning the death of her boyfriend when, through a car accident she causes, she chances to meet the lethargic Gilles (Patrick Dewaere), a young man who lives for free at his mother's hotel. Gilles pursues Helene romantically, and she eventually softens up. Gilles, however, is also devoted to Bernard (Étienne Chicot), a petty crook who revels in mugging gay men. All three struggle with relationships that seem to be going nowhere.",0,0,Hôtel des Amériques,fr +9317,Cabbage Soup,1981-12-02,98.0,,,tt0083109,,2 buddy farmers are visited by aliens who like their domestic cabbage soup.,0,0,La soupe aux choux,fr +52772,Shoot the Moon,1982-01-22,124.0,,,tt0084675,,"After fifteen years of marriage, an affluent couple divorce and take up with new partners.",0,8100000,Shoot the Moon,en +24634,Ghost Story,1981-12-18,110.0,,,tt0082449,The time has come to tell the tale.,"Four successful elderly gentlemen, members of the Chowder Society, share a gruesome, 50-year old secret. When one of Edward Wanderley's twin sons dies in a bizarre accident, the group begins to see a pattern of frightening events developing.",0,0,Ghost Story,en +358199,All the Way Home,1981-12-21,120.0,,,tt0173629,,A wife and mother in 1915 Tennessee copes with the loss of her husband and the necessity of raising their children alone.,0,0,All the Way Home,en +41610,Fracchia The Human Beast,1981-12-22,99.0,,,tt0082407,,The world's greatest criminal and the world greatest loser share the same face... now they'll share the same life!,0,0,Fracchia la belva umana,it +162056,Il minestrone,1981-12-30,104.0,,,tt0082752,,,0,0,Il minestrone,it +129229,A Plasticine Crow,1981-12-31,9.0,,,tt0219251,,"Short animation of a Russian folk tale, made in 1981. A parody of the fable by Ivan Krylov ""The Crow and the Fox"".",0,0,Пластилиновая ворона,ru +129945,The Chorus,1982-01-01,17.0,,,tt0084046,,An old man with a hearing aid tires of listening to the noises of the town. But when he takes his aid out he can't hear his grandchildren coming to see him.,0,0,Hamsarayan,en +21741,Hail Columbia!,1982-01-01,37.0,,,tt0084043,,"The maiden voyage of Columbia, the first space shuttle, is recounted with footage shot on the ground and in space.",0,0,Hail Columbia!,en +121516,"Heads I Win, Tails You Lose",1982-01-01,104.0,,,tt0084782,,,0,0,Testa o croce,it +85196,The Forest,1982-01-01,85.0,,,tt0122070,Daddy's Gone A Hunting,A cannibal hermit living in the woods preys on campers and hikers for his food supply.,0,0,The Forest,en +29743,Attila flagello di Dio,1982-01-01,97.0,,,tt0080393,,The misadventures of Attila and his band of barbarians as they take up arms against the Roman Empire in their native Milano,0,0,Attila flagello di Dio,it +21585,Robin Williams: An Evening with Robin Williams,1982-01-01,82.0,,,tt0195691,,"Declared to be the funniest Robin Williams video made, this is a don't-miss comedy.",0,0,Robin Williams: An Evening with Robin Williams,en +66756,Shaolin Prince,1982-01-01,100.0,,,tt0092855,,"Two princes are seperated by birth. One is raised by the Prime Minister. The other is raised by three mad Shaolin Monks. They both learn kung-fu. When they are 23, they meet and combine there forces to defeat the evil 9th Prince.",0,0,Shaolin chuan ren,en +115427,Macbeth,1982-01-01,72.0,,,tt0292081,,A Hungarian TV version of the play shot in just two takes.,0,0,Macbeth,hu +129363,En rachâchant,1982-01-01,7.0,,,tt0083883,,"The child Ernesto doesn't want to go to school any more because, as he says, all he is taught there is things he doesn't know.",0,0,En rachâchant,en +38289,Eccezzziunale... veramente,1982-01-01,98.0,,444275,tt0083871,,,0,0,Eccezzziunale... veramente,it +72215,There Once Was a Dog,1982-01-01,10.0,,,tt0216434,,"The day comes when an old watchdog becomes useless but the masters being kind don't decide to drive him away. However they turn exasperated when the Dog stays indifferent during a home theft. The Dog leaves for the forest, where he meets the Wolf, his old enemy.",0,0,Жил-был пёс,ru +27925,Tears Were Falling,1982-01-01,89.0,,,tt0084696,,"Once an evil inventor created a mirror, ""in which everything that was kind and good disappeared, and everything that was bad and obscene was reflected and seemed even worse"". The students of the evil professor did a lot of evil with the mirror and finally tried to get it up to heaven, but the mirror fell and shattered into millions of tiny pieces. The person in whose eye fell a piece of the mirror began to see in everything foolishness, and life for him became unbearable. This is what happened to Pavel Ivanovich, so now his life is changing drastically.",0,0,Slyozy Kapali,ru +32085,Vincent,1982-01-01,6.0,,,tt0084868,"Beautiful, creepy, haunting, sad.",Young Vincent Malloy dreams of being just like Vincent Price and loses himself in macabre daydreams which annoys his mother.,60000,0,Vincent,en +31665,Barbarosa,1982-01-01,90.0,,,tt0083619,,"Karl Westover, an inexperienced farm boy, runs away after unintentionally killing a neighbor, whose family pursues him for vengeance. He meets Barbarosa, a gunman of near-mythical proportions, who is himself in danger from his father-in-law Don Braulio, a wealthy Mexican rancher. Don Braulio wants Barbarosa dead for marrying his daughter against the father's will. Barbarosa reluctantly takes the clumsy Karl on as a partner, as both of them look to survive the forces lining up against them.",0,1736123,Barbarosa,en +62692,The Donkey's Hide,1982-01-01,79.0,,,tt0187375,,"A Russian take on Charles Perrault's fairytale. At the festivities marking the christening of princess Theresa, daughter of king Gaston IX, a wicked fairy made a mysterious prophecy about the girl's life. Seventeen years later, Theresa falls in love with a poor prince named Jacques. Then the prophecy starts coming true...",0,0,Oslinaya shkura,ru +27873,Battletruck,1982-01-01,91.0,,,tt0084887,A Science Fiction Adventure of the Near Future,"It’s the 21st century, the Oil Wars have made a mess of the planet and the land outside major cities is lawless. After Hunter comes to the aid of Corlie, who has run away from the villainous Straker, he takes her to the peaceful community of Clearwater. Unfortunately for the citizens of Clearwater, Straker fully intends to get Corlie back.",1000000,3000000,Warlords of the 21st Century,en +273896,Losing Ground,1982-01-02,86.0,,,tt0084269,,"A comedy-drama about a Black American female philosophy professor and her insensitive, philandering, and flamboyant artist husband who are having a marital crisis. When the wife goes off on an almost unbelievable journey to find ""ecstasy"", her husband is forced to see her in a different light.",0,0,Losing Ground,en +263065,The Elephant Man,1982-01-04,90.0,,,tt0166593,,A taped version of the stage play about a hideously deformed 19th-century London man and how he managed to triumph over his disease.,0,0,The Elephant Man,en +210092,If You Could See What I Hear,1982-01-07,103.0,,,tt0084117,The true story of a born winner!,A light comedy/love story based on the life of blind musician Tom Sullivan.,0,0,If You Could See What I Hear,en +85200,Island of Blood,1982-01-08,82.0,,,tt0229480,The creep island slayings…,"A movie company is filming a murder mystery on an island. Soon afterwards cast and crew members start getting murdered, and the rest of the company must find out what is happening and who is behind it before they are all killed.",0,0,Island of Blood,en +43548,Don't Play with Tigers,1982-01-15,148.0,,,tt0084506,,A stories of three really unlucky characters are discovered during the trial.,0,0,"Ricchi, ricchissimi... praticamente in mutande",it +10275,The Shaolin Temple,1982-01-21,95.0,,184977,tt0079891,,"The Tang emperor is betrayed by one of his generals, who installs himself as emperor in the East Capital. The son of one of his slave workers escapes to the Shaolin Temple, learns kung fu, and sets out to kill the traitor who killed his father. Based on a true story from Shaolin folklore, but highly fictionalized.",0,16157801,Shao Lin Si,cn +2262,Veronika Voss,1982-02-08,104.0,,295862,tt0084654,,"In Munich in 1955, sports reporter Robert Krohn gets to know attractive Veronika Voss, a former UFA-star. Robert is the lover of the enigmatic woman and tries to unravel the mystery of her life.",0,0,Die Sehnsucht der Veronika Voss,de +81346,To Begin Again,1982-03-01,87.0,,,tt0084874,,,0,0,Volver a empezar,es +142145,Cold River,1982-03-01,94.0,,,tt0083741,,"Based on the novel Winterkill, by William Judson, Cold River is the story of an Adirondack guide who takes his young daughter and step-son on a long camping trip in the fall of 1932. When winter strikes unexpectedly early (a natural phenomenon known as a 'winterkill' - so named because the animals are totally unprepared for a sudden, early winter, and many freeze or starve to death), a disastrous turn of events leaves the two children to find their own way home without food, or protection from the elements.",0,0,Cold River,en +141643,Ten Violent Women,1982-03-01,95.0,,,tt0083506,They Take What They Want,"Eight women miners get fed up with their lifestyle and decide to try crime. After successfully pulling off a jewelry store robbery, they are busted by narcs when they try to buy cocaine. The eight get sent to a prison where a butch head guard uses the prisoners for her own deviant pleasures. Two of the women manage to escape and then get mixed up with a shah who had a scarab ring stolen in their jewelry heist.",0,0,Ten Violent Women,en +24266,The Man from Snowy River,1982-03-02,104.0,,89272,tt0084296,The story of a boy suddenly alone in the world. The men who challenge him. And the girl who helps him become a man.,"Jim Craig has lived his first 18 years in the mountains of Australia on his father's farm. The death of his father forces him to go to the low lands to earn enough money to get the farm back on its feet. Kirk Douglas plays two roles as twin brothers who haven't spoken for years, one of whom was Jim's father's best friend and the other of whom is the father of the girl he wants to marry.",3500000,20659423,The Man from Snowy River,en +9343,Fitzcarraldo,1982-03-04,158.0,,,tt0083946,,"The story of Brian Sweeney Fitzgerald, an extremely determined man who intends to build an opera house in the middle of a jungle.",7362000,0,Fitzcarraldo,de +83459,The Mechanic Gavrilov's Beloved Woman,1982-03-08,79.0,,,tt0155841,,Sory of 38-years-old Rita whose fiance didn't show up at their wedding.,0,0,Любимая женщина механика Гаврилова,ru +39230,Mobile Suit Gundam III: Encounters in Space,1982-03-13,144.0,,143302,tt0159511,,"Amuro Ray and the rest of the White Base crew, now denominated the 13th Autonomous Corps, return to outer space to support the rest of the Earth Federation forces for the decisive battle against the Duchy of Zeon's forces.",0,0,機動戦士ガンダム III めぐりあい宇宙編,ja +48935,Viuuulentemente mia,1982-03-15,0.0,,,tt0188277,,,0,0,Viuuulentemente mia,it +26851,The Atomic Cafe,1982-03-17,86.0,,,tt0083590,,"A compilation of 60s films on the bomb and what to do when under nuclear attack. From a 21st century perspective, 'Duck and Cover' and other public safety propaganda from the 60s appears naive and misguided.",0,0,The Atomic Cafe,en +17590,Deathtrap,1982-03-19,116.0,,,tt0083806,When a man has murder on his mind be sure you don't fall into a...Deathtrap.,A Broadway playwright puts murder in his plan to take credit for a student's script.,0,0,Deathtrap,en +30363,The State of Things,1982-03-22,125.0,,,tt0084725,They didn't want to kill him. They just wanted a story.,"On location in Portugal, a film crew runs out of film while making their own version of Roger Corman's The Day the World Ended (1956) . The producer is nowhere to be found and director Munro attempts to find him in hopes of being able to finish the film.",0,0,Der Stand der Dinge,de +28940,Eating Raoul,1982-03-24,87.0,,,tt0083869,A tasty comedy of bad manners.,"A relatively boring Los Angeles couple discover a bizarre, if not murderous way to get funding for opening a restaurant.",350000,0,Eating Raoul,en +168541,Twilight Time,1982-04-01,102.0,,,tt0086490,,"After spending 20 years in America, aging widower Marko Sekulovic (Karl Malden) returns to his Yugoslavian homeland to take care of his two young grandchildren. But Marko's quiet life is in for a shake up when he meets the pretty new village schoolteacher, Lana (Jodi Thelen). Malden pays tribute to his Yugoslav heritage in this affecting 1982 drama.",0,0,Suton,sr +27150,Silent Rage,1982-04-02,103.0,,,tt0084684,"He's an indestructible man fused with powers beyond comprehension. An unstoppable terror who in one final showdown, will push Chuck Norris to his limits. And beyond.","A Texas sheriff tries kung fu on an ax killer who, revived by doctors, cannot be killed.",4500000,10500000,Silent Rage,en +601,E.T. the Extra-Terrestrial,1982-04-03,115.0,http://www.et20.com/,,tt0083866,He is afraid. He is alone. He is three million light years from home.,"After a gentle alien becomes stranded on Earth, the being is discovered and befriended by a young boy named Elliott. Bringing the extraterrestrial into his suburban California house, Elliott introduces E.T., as the alien is dubbed, to his brother and his little sister, Gertie, and the children decide to keep its existence a secret. Soon, however, E.T. falls ill, resulting in government intervention and a dire situation for both Elliott and the alien.",10500000,792965326,E.T. the Extra-Terrestrial,en +222517,Snow White and 7 Wise Men,1982-04-03,93.0,,,tt0128076,,,0,0,Biancaneve & Co...,it +76533,By the Sea,1982-04-12,51.0,,,tt0186906,,"A crusty old General leads his dotty family on a relaxing weekend at the seaside, and comic chaos ensues.",0,0,By the Sea,en +68797,The Quack,1982-04-12,128.0,,,tt0084953,,"A famous surgeon is beaten by drunken bullies, loses his memory and cannot recollect who he was before. He gets to a village, lives in a not so well to do family and becomes the Quack - he slowly regains his talent for medicine and saves the lives of several village patients.",0,0,Znachor,pl +41378,Five Element Ninjas,1982-04-21,107.0,,,tt0084921,,A young martial artist seeks revenge on the ninja who kills his martial arts brothers and teacher.,0,0,五遁忍術,zh +12614,Victor/Victoria,1982-04-25,132.0,,,tt0084865,The disguise surprise comedy of the year!,"A struggling female soprano finds work playing a male female impersonator, but it complicates her personal life.",0,28215453,Victor/Victoria,en +45191,El barrendero,1982-05-05,113.0,,,tt0082048,,"A cheerful sweeper collects garbage dancing, and the maids of the neighborhood get jealous because he invites another woman out.",0,0,El barrendero,es +42251,Forbidden World,1982-05-07,77.0,,,tt0083959,Part Alien… Part Human… All Nightmare.,"In the distant future, a federation marshal arrives at a research lab on a remote planet where a genetic experiment has gotten loose and begins feeding on the dwindling scientific group.",0,0,Forbidden World,en +72574,Death Valley,1982-05-07,87.0,,,tt0083805,Welcome To Death Valley,"A divorced mother, her young son and her new boyfriend set out on a road trip through Death Valley and run afoul of a local serial killer.",0,0,Death Valley,en +2861,A Good Marriage,1982-05-19,97.0,,,tt0082053,,"Sabine vows to give up married lovers, and is determined to find a good husband. Her best friend Clarisse introduces her to her cousin Edmond, a busy lawyer from Paris. Sabine pursues Edmond, with the encouragement of Clarisse, but Edmond does not seem very interested.",0,0,Le beau mariage,fr +46885,Visiting Hours,1982-05-21,105.0,,,tt0083296,In this hospital your next visit may be your last.,A slasher finds the hospital where a TV newswoman is recovering from his attack.,0,0,Visiting Hours,en +47410,Trapped,1982-05-28,95.0,,,tt0125308,"When you're cornered like an animal, it's kill or be killed","A group of college students accidentally see a local redneck kill his wife. A deadly game of cat-and-mouse ensues, with the students trying to escape the area while the killer sets out to eliminate the witnesses who can tie him to the murder.",2000000,0,Trapped,en +118257,Room 666,1982-06-01,43.0,http://www.wim-wenders.com/movies/movies_spec/room666/room666.htm,,tt0083727,,"During the 1982 Cannes Film Festival, Wenders asks a number of film directors from around the world to get, each one at a time, into a hotel room, turn on the camera and sound recorder, and, in solitude, answer a simple question: ""What is the future of cinema?"".",0,0,Chambre 666,en +154,Star Trek II: The Wrath of Khan,1982-06-03,113.0,,151,tt0084726,At the end of the universe lies the beginning of vengeance.,Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.,12000000,96800000,Star Trek II: The Wrath of Khan,en +71051,Sportloto-82,1982-06-06,95.0,,,tt0084716,,Adventurous comedy about a bunch of people hunting the winning lottery ticket.,0,0,Sportloto-82,en +10724,Firefox,1982-06-13,136.0,,,tt0083943,...the most devastating killing machine ever built... his job... steal it!,"The Soviets have developed a revolutionary new jet fighter, called ""Firefox"". Naturally, the British are worried that the jet will be used as a first-strike weapon, as rumours say that the jet is indetectable on radar. They send ex-Vietnam War pilot Mitchell Gant on a covert mission into the Soviet Union to steal Firefox.",18000000,70687344,Firefox,en +11704,The Secret of NIMH,1982-06-17,82.0,,141292,tt0084649,Right before your eyes and beyond your wildest dreams.,"A widowed field mouse must move her family -- including an ailing son -- to escape a farmer's plow. Aided by a crow and a pack of superintelligent, escaped lab rats, the brave mother struggles to transplant her home to firmer ground.",7000000,14665733,The Secret of NIMH,en +41760,Author! Author!,1982-06-18,110.0,,,tt0083598,"They share the laughter, the love, the frustration... and the bathroom.","A broadway playwright is burning the candle at both ends. He is dealing with pressure from a production nearing premiere, a wife who is leaving him, and 5 children 4 of which belong to her.",0,0,Author! Author!,en +59738,Girls Nite Out,1982-06-20,96.0,,,tt0087336,It Began as a Game...,"A killer, wearing a dancing bear suit, stalks a variety of cheerleaders during an all-night scavenger hunt at a remote Ohio college.",0,0,Girls Nite Out,en +27380,Megaforce,1982-06-25,99.0,,,tt0084316,Deeds not Words,Megaforce is an elite multi-national military unit that does the jobs that individual governments wont. When the peaceful Republic of Sardun in under threat from their more aggressive neighbour the beautiful Major Zara (Persis Khambatta) and General Byrne-White (Edward Mulhare) see the help of Ace Hunter (Barry Bostwick) and Megaforce.,0,0,Megaforce,en +30644,Raw Force,1982-07-01,86.0,,,tt0084573,…Invaders of the Jade Tombs!,"A group of martial arts students are en route to an island that supposedly is home to the ghosts of martial artists who have lost their honor. A Hitler lookalike and his gang are running a female slavery operation on the island as well. Soon, the two groups meet and all sorts of crazy things happen which include cannibal monks, piranhas, zombies, and more!",0,0,Raw Force,en +47955,White Dog,1982-07-07,90.0,,,tt0084899,When man's best friend becomes his fiercest enemy...,A trainer attempts to retrain a vicious dog that's been raised to kill black people.,8000000,0,White Dog,en +279608,Thunder,1982-07-11,5.0,,,tt0084792,,"A woman’s face disappearing behind, and emerging from, a pair of hands. Flashing lights. An empty building full of dark hallways. Designs drawn in the air with light and long-exposure cinematography.",0,0,Thunder,ja +12104,Pink Floyd: The Wall,1982-07-14,95.0,,,tt0084503,The Memories. The Madness. The Music... The Movie.,A troubled rock star descends into madness in the midst of his physical and social isolation from everyone.,12000000,22244207,Pink Floyd: The Wall,en +96411,The Vulture,1982-07-29,115.0,,,tt0083865,,"Two old women who happen to be pickpockets stole money from Simon, the taxi driver. The police are unable to find the thieves, so Simon decides to find them himself.",0,0,Dögkeselyű,en +27332,Tex,1982-07-30,103.0,,,tt0084783,,"Coming-of-age adventure about two teenage brothers and their struggles to grow up, on their own, after their mother dies and their father leaves them.",0,0,Tex,en +121510,Il tifoso l'arbitro e il calciatore,1982-08-01,0.0,,,tt0086438,,,0,0,Il tifoso l'arbitro e il calciatore,it +11614,Bomber,1982-08-05,101.0,,,tt0083675,,"Bomber is an unemployed boat captain. One day he meets Jerry, a manager of boxers who are struck by the force of his fists. That is when they see the chance to win big money.",0,0,Bomber,it +25872,The Pirate Movie,1982-08-06,98.0,,,tt0084504,Buckle Your Swash and Jolly Your Roger for the Funniest Rock 'N Rollickin' Adventure Ever!,"A comedy/musical utilizing both new songs and parodies from the original (Gilbert and Sullivan's Pirates of Penzance), as well as references to popular films of the time, including Star Wars and Raiders of the Lost Ark. In your typical boy meets girl, boy loses girl, boy fights girl with swords plot, the story revolves around Mabel ...",0,0,The Pirate Movie,en +30875,Manhattan Baby,1982-08-12,89.0,,,tt0084298,,"An archaelogist opens an Egyptian tomb and accidently releases an evil spirit. His young daughter becomes possessed by the freed enity and, upon arrival back in New York, the gory murders begin.",300000,0,Manhattan Baby,it +11307,The World According to Garp,1982-08-13,136.0,,,tt0084917,Robin Williams is Garp. He's got a funny way of looking at life.,"Based on the John Irving novel, this film chronicles the life of T S Garp, and his mother, Jenny. Whilst Garp sees himself as a ""serious"" writer, Jenny writes a feminist manifesto at an opportune time, and finds herself as a magnet for all manner of distressed women.",17000000,29712172,The World According to Garp,en +63215,Toute une nuit,1982-10-27,90.0,,,tt0084808,,"Following over two dozen different people in the almost wordless atmosphere of a dark night in a Brussels town, Akerman examines acceptance and rejection in the realm of romance.",0,0,Toute une nuit,fr +1404,Ae Fond Kiss...,2004-02-13,104.0,http://iconmovies.co.uk/aefondkiss/,,tt0380366,,A young man upsets his Punjabi family when he falls in love with an Irish schoolteacher.,0,0,Ae Fond Kiss...,en +16441,The Beastmaster,1982-08-20,118.0,,106000,tt0083630,"Born with the courage of an eagle, the strength of a black tiger, and the power of a god.","Dar, is the son of a king, who is hunted by a priest after his birth and grows up in another family. When he becomes a grown man his new father is murdered by savages and he discovers that he has the ability to communicate with the animals, which leads him on his quest for revenge against his father's killers.",0,14056528,The Beastmaster,en +47886,Pieces,1982-08-23,85.0,,,tt0082748,It's exactly what you think it is!,A frustrated Boston detective searches for the maniac responsible for mutilating a number of university coeds.,0,1198346,Mil gritos tiene la noche,en +72785,The Flight of the Eagle,1982-08-26,134.0,,,tt0084136,,"The Swedish 19th century engineer S. A. Andrée sets out to become the first man on the north pole. His idea is to launch a polar expedition using a hydrogen balloon, together with two friends. The balloon, ""The Eagle"", takes off from Svalbard in 1897, but the three men are not heard of again.",0,0,Ingenjör Andrées luftfärd,sv +62713,Madonna che silenzio c'è stasera,1982-09-01,0.0,,,tt0183460,,,0,0,Madonna che silenzio c'è stasera,it +52556,The Road,1982-09-01,124.0,,,tt0084934,The story of three families' search for freedom,"A harsh portrait of Turkey, its people and its authorities, shown through the stories of five prisoners given a week's home leave, and the problems they encounter in adjusting to the world outside.",0,0,Yol,tr +58790,Blood Tide,1982-09-01,82.0,,,tt0083661,Evil lurks in the Ocean Depths,An adventurer hunting for treasure in Greece accidentally frees a monster that forces local villagers to sacrifice virgins,0,0,Blood Tide,en +222487,scissere,1982-09-13,88.0,,,tt0084643,,A recently released mental patient imagines himself living the lives of three different people he randomly encounters.,0,0,scissere,en +29224,Jönssonligan & DynamitHarry,1982-09-17,106.0,,63170,tt0084189,,,0,0,Jönssonligan & DynamitHarry,sv +62897,Uuno Turhapuro menettää muistinsa,1982-09-17,0.0,,148324,tt0084845,,,0,0,Uuno Turhapuro menettää muistinsa,fi +16235,Amityville II: The Possession,1982-09-24,104.0,,397842,tt0083550,Don't forget to check under the bed...,"The Lutz family have managed to flee their home with their lives intact, but before them, another family lived in this house and were caught up in the original evil who weren't so lucky...",0,12534817,Amityville II: The Possession,en +84993,Next of Kin,1982-09-30,89.0,,,tt0084408,There is something evil in this house.,"In a rest home for elderly people, a daughter reads her mother's diary. Soon events that are mentioned in the mother's diary begin to happen to the daughter.",0,0,Next of Kin,en +32202,Hey Good Lookin',1982-10-01,76.0,,,tt0084070,"Ralph Bakshi, creator of ""Fritz the Cat"" and ""Heavy Traffic"" brings you the outrageous '50s the way they really were.","An outrageous, affectionate look at coming of age in the Eisenhower era in Brooklyn.",1500000,0,Hey Good Lookin',en +73116,Brimstone & Treacle,1982-10-01,87.0,,,tt0083693,,A strange young man has a sinister effect on the family of a middle-aged writer.,0,0,Brimstone & Treacle,en +31044,My Favorite Year,1982-10-01,92.0,,,tt0084370,,"Benjy Stone is the junior writer on the top rated variety/comedy show, in the mid 50s (the early years). Alan Swann, an Erol Flynn type actor with a drinking problem is to be that weeks guest star.",0,0,My Favorite Year,en +226968,Waltz Across Texas,1982-10-01,99.0,,,tt0084886,,A wildcatter and a geologist prospect for oil and love in West Texas.,0,0,Waltz Across Texas,en +118760,Forty Deuce,1982-10-01,89.0,,,tt0083962,,A young hustler tries to get drug money by selling a boy to a middle-aged man; his plans are disrupted when the kid dies.,0,0,Forty Deuce,en +11915,The Gendarme and the Gendarmettes,1982-10-03,100.0,,10517,tt0083996,,"Cruchot's police office moves into a new building. They do not only get high tech equipment, but also four young female police officers to educate. All of them scramble to work with them -- and cause pure chaos while being distracted by the fine ladies. Then they get into real trouble when one after the other of their female colleagues is kidnapped.",0,0,Le gendarme et les gendarmettes,fr +49398,Quarter to Two Before Jesus Christ,1982-10-05,110.0,,,tt0083824,,"In antique Rome, a simple pepboy for chars becomes involved in a coup against Cesar.",0,0,Deux heures moins le quart avant Jésus-Christ,fr +42132,Time Stands Still,1982-10-07,99.0,,,tt0082729,,"A Budapest high school in the beginning of the 1960s. Dinis suffers the torments of adolescence. His father had to leave Hungary after the uprise in 1956, and since then Dini's mother has had to take care of her two sons on her own. A friend of Dinis' father, Bodor, is released from prison and moves in with them. Dinis and his brother Bodor are far from happy over this intrusion of their family life.",0,0,Megáll az idő,hu +47878,Lookin' to Get Out,1982-10-08,105.0,,,tt0084268,"What they're doing is insane, immoral... and working!","Two gamblers must leave New York City after one loses a lot of money. Doing what all gamblers in trouble would do, they hurry to the gambling capital Las Vegas to turn their luck around.",17000000,946461,Lookin' to Get Out,en +34506,George Carlin: Carlin at Carnegie,1982-10-10,59.0,http://www.georgecarlin.com,479319,tt0248827,,"Recorded at Carnegie Hall, New York City in 1982, released in 1983. Most of the material comes from his A Place for My Stuff, the album released earlier that same year. The final performance of ""Seven Dirty Words,"" his last recorded performance of the routine, features Carlin's updated list.",0,0,George Carlin: Carlin at Carnegie,en +33481,The Worthless,1982-10-15,119.0,,,tt0083579,,"A criminal, his friend and his former girlfriend find their lives intertwining with each other.",0,0,Arvottomat,fi +30060,The Plague Dogs,1982-10-21,103.0,,,tt0084509,,"The Plague Dogs is a 1982 animated film based on the 1977 novel of the same name by Richard Adams. The story is centred on two dogs named Rowf and Snitter, who escape from a research laboratory in Great Britain. In the process of telling the story, the film highlights the cruelty of performing vivisection and animal research for its own sake.",0,0,The Plague Dogs,en +79008,Jinxed!,1982-10-22,103.0,,,tt0084173,,"Harold, a professional gambler, and his girlfriend Bonita, a lounge singer, follow Willie, a young blackjack dealer, around the western U.S. Harold has a jinx on Willie and can't lose with him. Bonita and Willie meet and fall for each other and plot to do away with Harold and collect on his life insurance.",0,0,Jinxed!,en +124963,Monsignor,1982-10-22,121.0,,,tt0084351,"Forgive me, Father for I have sinned. I have killed for my Country, I have stolen for my Church, I have loved a Woman, and I am a Priest.","The vows of an ambitious young American priest are tested during World War II. Not only does Father John Flaherty get involved with the black market to raise money for the Vatican, he also falls in love with a young French nun.",0,0,Monsignor,fr +19294,30 Days Until I'm Famous,2004-05-07,90.0,,,tt0389721,,A Latina working in Los Angeles as a messenger is randomly discovered and fashioned into a pop music star.,0,0,30 Days Until I'm Famous,en +85910,The Rolling Stones - Let's Spend the Night Together,1982-10-29,94.0,,,tt0084242,The Rolling Stones!,"The Rolling Stones’ record-breaking 1981 arena tour explodes onto DVD from director Hal Ashby (SHAMPOO). Featuring the biggest Rolling Stones songs from the first 20 years, LET'S SPEND THE NIGHT TOGETHER gives, in the words of Mick Jagger, “a feel of what it’s like to be there” as 20 cameras take you onstage with the band in this groundbreaking, dynamic tour.",0,0,The Rolling Stones - Let's Spend the Night Together,en +106256,Sogni mostruosamente proibiti,1982-10-29,0.0,,,tt0086331,,,0,0,Sogni mostruosamente proibiti,it +66881,Nightbeast,1982-11-01,81.0,,,tt0086013,His Hands Tear Through Flesh and Bone!,An alien crash lands and goes on a killing spree.,14000,0,Nightbeast,en +104172,Die letzte Rache,1982-11-04,0.0,,,tt0164724,,,0,0,Die letzte Rache,de +3028,Jekyll and Hyde ... Together Again,1982-11-10,87.0,,,tt0084171,The comedy that examines modern living through chemistry,Dr. Jekyll (Mark Blankfield) inhales white powder and becomes an obnoxious Southern Californian.,0,0,Jekyll and Hyde ... Together Again,en +40952,Alone in the Dark,1982-11-12,93.0,,,tt0083542,Too frightened to breathe...,A quartet of murderous psychopaths break out of a mental hospital during a power blackout and lay siege to their doctor's house.,20000000,8178569,Alone in the Dark,en +16281,Creepshow,1982-11-12,120.0,,107725,tt0083767,The Most Fun You'll Ever Have... BEING SCARED!,"Inspired by the E.C. comics of the 1950s, George A.Romero and Stephen King bring five tales of terror to the screen.",8000000,21028755,Creepshow,en +76681,Wacko,1982-11-12,85.0,,,tt0083310,"At last! A motion picture made by, for, and about people.... just like you!","Cops try to track down the infamous ""Lawnmower Killer""",0,0,Wacko,en +85628,The Third Prince,1982-12-01,84.0,,,tt0227684,,"Brave sons of the king, twin brothers Jaroslav and Jaromír love and help each other. It was they and another brother - Jindrich, who once saw the portrait of Princess of Diamond Mountains, fell in love and went on her quest.",0,0,Třetí princ,cs +25834,Xtro,1982-12-06,83.0,,114915,tt0086610,Some extra-terrestrials aren't friendly.,"Tony's father Sam, abducted by aliens three years earlier, returns to earth and seeks out his wife and son, but Rachel has since been living with Joe and the reunion is awkward. Joe doesn't trust Sam, and Rachel can't quite decide what her feelings are for her two men. Sam is not the same as when he left, and he begins affecting Tony in frightening ways.",0,0,Xtro,en +15764,Sophie's Choice,1982-12-08,151.0,,,tt0084707,,"Meryl Streep stars as Sophie, a Polish immigrant who shares a boarding house in Brooklyn with her tempestuous lover, Nathan (Kevin Kline in his feature film debut), and a young writer, Stingo (Peter MacNicol).",12000000,30036000,Sophie's Choice,en +23805,The Toy,1982-12-10,102.0,,,tt0084809,"When U. S. Bates told his son he could have any present he wanted, he picked the most outrageous gift of all... Jack Brown.","On one of his bratty son Eric's annual visits, the plutocrat U.S. Bates takes him to his department store and offers him anything in it as a gift. Eric chooses a black janitor who has made him laugh with his antics. At first the man suffers many indignities as Eric's ""toy"", but gradually teaches the lonely boy what it is like to have and to be a friend.",0,0,The Toy,en +19887,Disco Dancer,1982-12-10,134.0,,,tt0208903,,"Jimmy promises to return to Bombay and become a famous entertainer so that he can exact revenge on Mr. Oberoi for having insulted and imprisoned his mother on false charges. He falls in love with Oberoi's daughter and causes Sam Oberoi's nervous breakdown when he takes over as popular disco dancer. Oberoi, in an attempt to get rid of Jimmy, accidentally kills his mother, and Jimmy is devastated and unable to perform. Will he rise above the tragedy, sing again, and avenge his mother's death?",0,0,डिस्को डांसर,hi +31264,The Blade Master,1982-12-13,92.0,,48194,tt0086972,Warrior. Magician. Hero. Thief. They called him... The Blade Master,Muscle-bound Ator and his mute Asian sidekick travel from the ends of the Earth to save his aged mentor from the evil mustachioed Zor.,0,0,Ator l'invincibile 2,it +37917,Honkytonk Man,1982-12-15,122.0,,,tt0084088,The boy is on his way to becoming a man. The man is on his way to becoming a legend.,Young boy leaves the Oklahoma farm to travel with his country musician uncle who is trying out for the Grand Ole Opry. Set during the Great Depression.,0,0,Honkytonk Man,en +42136,The Grey Fox,1982-12-16,110.0,,,tt0085622,"In 1901, after 33 years in San Quentin Prison, Bill Miner, ""The Gentleman Bandit"", was released into the Twentieth Century.","Old West highwayman Bill Miner, known to Pinkertons as ""The Gentleman Bandit,"" is released in 1901 after 33 years in prison, a genial and charming old man. He goes to Washington to live and work with his sister's family. But the world has changed much while he has been away, and he just can't adjust. So he goes to Canada and returns to the only thing familiar to him -- robbery (with stagecoaches changed to trains).",0,0,The Grey Fox,en +11639,The Dark Crystal,1982-12-17,93.0,,,tt0083791,"Another World, Another Time... In the Age of Wonder.","On another planet in the distant past, a Gelfling embarks on a quest to find the missing shard of a magical crystal and restore order to his world, before the grotesque race of Skeksis find and use the crystal for evil.",15000000,40577001,The Dark Crystal,en +262,The King of Comedy,1982-12-18,109.0,,,tt0085794,It's No Laughing Matter.,"Aspiring comic Rupert Pupkin attempts to achieve success in show business by stalking his idol, a late night talk-show host who craves his own privacy.",20000000,0,The King of Comedy,en +81001,Kiss Me Goodbye,1982-12-22,101.0,,,tt0084210,,"Not until three years after the death of her husband Jolly, Kay dares to move back into their former home, persuaded by her new fiancée Rupert. But soon her worst expectations come true, when not only her old memories haunt her, but also Jolly's ghost, who doesn't approve of her new mate. Invisible to anyone but Kay, he tries to prevent the wedding. Written by Tom Zoerner",0,0,Kiss Me Goodbye,en +276635,Experience Preferred...But Not Essential,1982-12-22,80.0,,,tt0083911,,"A shy, introverted young girl takes a summer job at a seaside resort in Wales, where she finds the staff, the owners and patrons unlike anyone she has ever met before.",0,822,Experience Preferred...But Not Essential,en +38869,Wyjście awaryjne,1982-12-25,0.0,,,tt0084923,,,0,0,Wyjście awaryjne,pl +13396,The Snowman,1982-12-26,26.0,,394204,tt0084701,,"A young boy makes a snowman one Christmas Eve, which comes to life at midnight and takes the boy on a magical adventure to the North Pole to meet Santa Claus.",0,0,The Snowman,en +21282,Otto er et næsehorn,1983-01-01,84.0,,,tt0086064,,No overview found.,0,0,Otto er et næsehorn,da +67794,Heat and Dust,1983-01-01,133.0,,,tt0084058,,The parallel story of Anne and her grand-aunt Olivia in their experiences in India,0,0,Heat and Dust,en +47011,Voyage in Time,1983-01-01,62.0,,,tt0176227,,The travels in Italy of director Andrei Tarkovsky in preparation for the making of his film Nostalghia.,0,0,Tempo di viaggio,en +99313,Édith et Marcel,1983-01-01,0.0,,,tt0085477,,"This tragic musical drama chronicles the star-crossed love between beloved French singer Edith Piaf and World Middleweight boxing champion Marcel Cerdan who died in a plane crash. The tumultuous affair is paralleled by the love affair of a French POW and his young pen pal who get engaged after writing to each other for four years and having never met. Their romances are framed by the sad, torchy songs of Piaf.",0,0,Édith et Marcel,fr +19809,Copper Mountain,1983-01-01,60.0,,,tt0085363,,"Two friends travel to a ski resort, with one looking to hit the slopes, while the other spends time trying to pick up women.",0,0,Copper Mountain,en +193216,Travels of an Ant,1983-01-01,10.0,,,tt0216126,,A 1983 short film directed by Eduard Nazarov about an ant who gets blown away with the wind from its home and the adventures it goes through in desperately trying to find its way back.,0,0,Путешествие муравья,ru +47682,Dead on Time,1983-01-01,33.0,,,tt0137457,,"The story revolves around Bernard Fripp(Atkinson) who is wrongly diagnosed by his doctor(Hawthorne) as having only 24 hours to live. This sets Bernard bumbling off on a mission to live life to the full, pursuing Greta Scaachi around the town, trying to make peace with God (via the slowest vicar ever, Broadbent), listening to all his unheard favorite music (in Our Price), and asking Leslie Ash if she has time for some ""love, or something?"".",0,0,Dead on Time,en +185153,The Courtesans of Bombay,1983-01-01,74.0,,,tt0163591,,,0,0,The Courtesans of Bombay,en +24926,Winnie the Pooh and a Day for Eeyore,1983-01-01,25.0,,,tt0170811,,"Winnie the Pooh and friends decide to throw a birthday celebration for gloomy, old Eeyore.",0,12000000,Winnie the Pooh and a Day for Eeyore,en +299203,Judgement Day,1983-01-01,4.0,,,tt2942250,,Insects are tortured in various ways amidst the sounds of screaming.,0,0,Judgement Day,en +123611,Tokatçı,1983-01-01,0.0,,,tt0253822,,,0,0,Tokatçı,tr +43571,Rich and Poor,1983-01-01,92.0,,,tt0189021,,"Pozzetto is a rich man obsessed by the idea of becoming poor. So, his psychiatric suggests him to leave home and live just like a poor man for some days. He will then become familiar with this way of living, and fear less the idea of becoming poor. So he does, and his old family & friends soon forget about him. They don't miss him at all.",0,0,Un povero ricco,it +145760,Last Year's Snow Was Falling,1983-01-01,20.0,,,tt0219233,,Funny adventures of the clumsy fellow whom his wife dispatched to the forest to bring home a New Year tree...,0,0,Падал прошлогодний снег,ru +18912,Angst,1983-01-01,75.0,,,tt0165623,Based on a true story.,"A killer is released from prison and breaks into a remote home to kill a woman, her handicapped son and her pretty daughter.",0,0,Angst,de +71630,Le Ruffian,1983-01-12,0.0,,,tt0086214,,,0,0,Le Ruffian,fr +78177,Lianna,1983-01-18,110.0,http://en.wikipedia.org/wiki/Lianna,,tt0085838,,"A happily married woman comes to realize herself of being a repressed lesbian after she has an affair with a female college professor, and then tries to come to terms with her newfound lifestyle.",300,0,Lianna,en +40229,The House on Sorority Row,1983-01-21,91.0,,,tt0085694,Sorority sisters... Sisters in life. Sisters in death.,"After a seemingly innocent prank goes horribly wrong, a group of sorority sisters are stalked and murdered one by one in their sorority house while throwing a party to celebrate their graduation.",425000,10604986,The House on Sorority Row,en +165095,Wow! A Talking Fish!,1983-01-31,8.0,,,tt1352408,,"Created in 1983, the animated movie uses the plot of Ovanes Tumanyan's tale ""Talking fish"".",0,0,"Ух ты, говорящая рыба!",ru +37935,One Dark Night,1983-02-01,94.0,,,tt0086050,A night to remember - until the day until you die!,"A strange man named Karl Rhamarevich dies shortly after discovering a way to become even more powerful in death through telekinesis. On the night of his burial in a crypt, Julie is to spend the night there as part of an initiation rite, supervised by two other girls. The crypt becomes a scene of horror as Raymar returns to life and deploys his horrifying telekinetic powers.",978000,0,One Dark Night,en +82341,"Acapulco, prima spiaggia... a sinistra",1983-02-02,0.0,,,tt0085134,,,0,0,"Acapulco, prima spiaggia... a sinistra",it +6341,Blue Thunder,1983-02-05,109.0,,,tt0085255,He's out there...,"Officer Frank Murphy, an experienced LAPD helicopter pilot, is given command of the advanced new ""Blue Thunder"" chopper. But he begins to wonder why the LAPD would need a helicopter so powerful and why it is such a secret.",22000000,42313354,Blue Thunder,en +11235,Local Hero,1983-02-17,111.0,,,tt0085859,,An American oil company sends a man to Scotland to buy up an entire village where they want to build a refinery. But things don't go as expected.,0,0,Local Hero,en +236041,En Büyük Şaban,1983-02-21,95.0,,,tt0252414,,A good man trys to help a blind girl to see again but he doesn't have enough money for the operation.,0,0,En Büyük Şaban,en +208436,The Salt Prince,1983-02-26,85.0,,,tt0171765,,"A fairy-tale about the power of love. The old king Pravoslav feels it is time to entrust the rule over his kingdom to one of his three daughters - the one that loves him the most. The youngest, Maruška, fails her father's expectations about proving how deep her love him is. He misunderstands her and she is made to leave the castle. She faces many dangers on the way to her loved one, the Salt Prince.",0,0,Soľ nad zlato,sk +81475,Julie Darling,1983-03-01,100.0,,,tt0084182,"She's sweet, sixteen, and she simply loves her daddy..... she'll slaughter you if you love him too.",A teenage girl whose inaction caused her mother's death arranges a similarly gruesome fate for her stepmother and brother.,2000000,0,Julie Darling,en +18741,Fearless Hyena Part II,1983-03-04,92.0,,205459,tt0085864,,"A pair of evil kung-fu artists, Heaven and Earth, are slaughtering the entire Yin-Yang brotherhood.",0,0,龍騰虎躍,cn +84831,Trenchcoat,1983-03-11,91.0,,,tt0086476,,An aspiring mystery writer becomes accidently embroiled in an international plot during a two-week stay in Malta.,0,0,Trenchcoat,en +202239,Start Liquidation,1983-03-12,132.0,,,tt0086142,,Army and police are trying to fight crime in West Belarus during Spring of 1945.,0,0,Pristupit k Likvidatsii,en +68050,Copkiller,1983-03-15,117.0,,,tt0085366,,"A New York policeman imprisons and tortures an admitted cop-killer, but finds the tables turned when his victim refuses to break and in fact urges more punishment",0,0,Copkiller,en +17692,Jaws 3-D,1983-03-16,99.0,,2366,tt0085750,A deadly new attraction.,"This third film in the series follows a group of marine biologists attempting to capture a young great white shark that has wandered into Florida's Sea World Park. However, later it is discovered that the shark's 35-foot mother is also a guest at Sea World. What follows is the shark wreaking havoc on the visitors in the park.",20500000,87987055,Jaws 3-D,en +33851,A Prayer for the Dying,1987-09-11,107.0,,,tt0093771,Freedom always comes with a price.,"Jack Higgins' straightforward thriller about a guilt-ridden IRA bomber forced into ""one last job""",6000000,1432687,A Prayer for the Dying,en +19606,High Road to China,1983-03-18,105.0,,,tt0085678,Tom Selleck takes you on a high adventure!,A biplane pilot is saddled with a spoiled industrialist's daughter on a search for her missing father through Asia that eventually involves them in a struggle against a Chinese warlord.,0,28400000,High Road to China,en +83562,Privates on Parade,1983-03-18,97.0,,,tt0084538,,"It is 1947, the year of the communist rebellion in Malaya and the British army's SADUSEA (Song And Dance Unit South East Asia) are called to the Malayan Jungle to entertain the troops. The eccentric, bible-bashing Major Giles Flack (John Cleese) is in command of the unit. Flack is accompanied by an ageing, theatrical drama queen, Terri Dennis (Denis Quilley) who hopes to entertain the troops with his flamboyant impressions, but the bored troops find other ways to enjoy themselves.",0,0,Privates on Parade,en +69266,Special Bulletin,1983-03-20,103.0,,,tt0086350,,"A TV reporter and cameraman are taken hostage on a tugboat while covering a workers strike. The demands of the hostage-takers are to collect all the nuclear detonators in the Charleston, SC area so they may be detonated at sea. They threaten to detonate a nuclear device of their own of their demand isnt met.",0,0,Special Bulletin,en +188524,Moving Out,1983-03-25,91.0,,,tt0085968,,Coming-of-age story about an Italian-Australian teenager making his way in the world.,0,0,Moving Out,en +21148,Spring Break,1983-03-25,102.0,,,tt0086352,"Like it's really, totally, the most fun a couple of bodies can have. You know?","Two sets of two college guys spend a spring break together in Fort Lauderdale, Florida. There they have lots of fun in and out of the sun.",0,0,Spring Break,en +76047,Två killar och en tjej,1983-03-25,111.0,,,tt0086488,,Three friends who haven't seen each other for seventeen years reunite and have a lot to tell about what has happened in the meantime. The film follows the friends for some time afterwards and then moves another twenty years in the future...,0,0,Två killar och en tjej,sv +24883,The Black Stallion Returns,1983-03-25,103.0,,405393,tt0085248,,"""Black"" is a stunning fire-and-silk stallion celebrated the world over. But to his young American owner, Alec Ramsay (Kelly Reno), he's much more. So, when the amazing animal is stolen, Alec will stop at nothing to get him back. Alec finally unravels the mystery of Black's theft...only to discover that he must overcome even greater odds to reclaim his beloved horse.",0,9800000,The Black Stallion Returns,en +1793,Max Dugan Returns,1983-03-25,98.0,,,tt0085919,Prices are double. Your love life's in trouble. The car won't start. Your boss has no heart. The door squeaks. The roof leaks. Your stereo just went mono. All you need is a little Max Dugan.,An English teacher and struggling single mother has her life disrupted when the father who abandoned her as a child comes back into her life.,0,0,Max Dugan Returns,en +267977,Beautiful Mystery,1983-04-01,60.0,,,tt0261786,,"Shinohara, a young bodybuilder, joins a para-military sect in northern Japan. His instructor, Takizawa, takes a liking to the new recruit. After an early “special” training session the two develop a lasting and loving relationship. “Beautiful Mystery” was the first gay “adult” film to come out of Japan. Although tame by U.S. standards, it is ground–breaking nonetheless.",0,0,Kyokon Densetsu: Utsukushiki Nazo,ja +46915,King Lear,1983-04-03,158.0,,,tt0087561,,"An aging King invites disaster when he abdicates to his corrupt, toadying daughters and rejects his one loving, but honest one.",0,0,King Lear,en +19053,Valley Girl,1983-04-08,99.0,,,tt0086525,She's cool. He's hot. She's from the Valley. He's not.,"Julie, a girl from the valley, meets Randy, a punk from the city. They are from different worlds and find love. Somehow they need to stay together in spite of her trendy, shallow friends.",350000,17343596,Valley Girl,en +54256,Rang Birangi,1983-04-23,175.0,,,tt0086170,,"Sparkling comedy about a meddling friend whose attempt to rekindle the spark in his friend's relationship with his wife of seven years leads to complications to their lives, and to the lives of his secretary and her boyfriend he has not 'scripted' ... Splendid performances by Amol Palekar, Deepti Naval, Parveen Babi and Farooq Shaikh, a perfectly pitched script, witty dialogue and a plethora of aptly placed film references make this a film one can watch over and over and never fail to laugh out loud.",0,0,Rang Birangi,hi +11654,The Hunger,1983-04-29,97.0,,,tt0085701,Nothing Human Loves Forever,"Miriam and John are an elegant couple with a dark secret: they are vampires. Feeding on human blood, Miriam has lived for over 2000 years. She gave her lover the gift of eternal life and together they hunt. But John begins aging rapidly, he seeks the help of Dr. Sarah Roberts. Miriam is immediately drawn to Sarah, desiring her as her next immortal companion...",0,5979292,The Hunger,en +1394,Nostalgia,1983-05-01,120.0,,,tt0086022,,"The Russian poet Andrei Gorchakov, accompanied by guide and translator Eugenia, is traveling through Italy researching the life of an 18th-century Russian composer. In an ancient spa town, he meets the lunatic Domenico, who years earlier had imprisoned his own family in his house for seven years to save them from the evils of the world. Seeing some deep truth in Domenico's act, Andrei becomes drawn to him. In a series of dreams, the poet's nostalgia for his homeland and his longing for his wife, his ambivalent feelings for Eugenia and Italy, and his sense of kinship with Domenico become intertwined.",0,0,Nostalghia,ru +23096,Doctor Detroit,1983-05-06,89.0,,,tt0085450,He's making the world safe for insanity.,A shy but gentle man named Clifford Skridlow is a professor of comparative literature at the financially-strapped fictional Monroe College in Chicago. A chance encounter with four beautiful women at a restaurant changes his life forever.,0,0,Doctor Detroit,en +47489,The Moon in the Gutter,1983-05-12,126.0,,,tt0085878,,A dockworker seeking revenge on the killer of his sister finds himself the object of desire for two women.,0,0,La Lune dans le caniveau,en +1058,Breathless,1983-05-13,100.0,,,tt0085276,He's the last man on earth any woman needs - but every woman wants...,"Jesse has to get out of Las Vegas quickly, and steals a car to drive to L.A. On the way he shoots a police man. When he makes it to L.A. he stays with Monica, a girl he has only known for a few days. As the film progresses, the police get closer to him, and the crimes escalate.",0,19910002,Breathless,en +214938,King for a Day,1983-05-16,87.0,https://en.wikipedia.org/wiki/King_for_a_Day_(1983_film),,tt0298350,,This film is a comedy about a poor man named Purko. Purko always fails in his attempt to escape from poverty. The film illustrates the social and the moral atmosphere in Bulgaria during the 1930's.,0,0,Господин за един ден,en +20120,Bill Cosby: Himself,1983-05-20,103.0,,,tt0083652,,"A 1983 stand-up comedy film featuring the comedy of Bill Cosby. Filmed before a live audience at the Hamilton Place Theatre, in Hamilton, Ontario. Cosby gives his comedic views on people who drink too much and take drugs, going to the dentist, marriage and parenthood.",0,0,Bill Cosby: Himself,en +11215,Baby Boom,1987-09-17,110.0,,,tt0092605,An unexpected comedy,The life of super-yuppie J.C. is thrown into turmoil when she inherits a baby from a distant relative.,0,0,Baby Boom,en +310431,Stacy's Knights,1983-06-01,100.0,http://www.crownintlpictures.com/ostitles.html,,tt0084723,Don't let their disguise fool you...just hope it fools everyone else!,"Everyone has a talent, and dreams do come true. Stacy Lancaster has an incredible knack for Blackjack. Once she joins up with daring Will Bonner the two young gamblers are on a non-stop roll. Soon the casino wants to even the odds. How long can their winning streak last?",0,0,Stacy's Knights,en +77060,"Mary Poppins, Goodbye",1983-06-06,141.0,,,tt0085932,,A family hires a babysitter who seems to possess magical powers.,0,0,"Мэри Поппинс, до свидания",ru +92132,White Dew,1983-06-06,89.0,,,tt0085227,,A funny story about Fyodor - the oldest person in the village - and his three sons.,0,0,Belye Rosy,ru +11591,The Man with Two Brains,1983-06-10,93.0,,,tt0085894,So funny you'll laugh your head off.,A story about a brain surgeon who tries to end his unhappy marriage to spend more time with a disembodied brain.,10100000,0,The Man with Two Brains,en +28466,The Survivors,1983-06-24,103.0,,,tt0086397,"Once they declare war on each other, watch out. You could die laughing.","Having both lost their jobs, two strangers become unlikely friends after a run in with a would be robber, who is actually a hitman with a grudge against the two.",0,0,The Survivors,en +36220,The Creature Wasn't Nice,1983-07-01,88.0,,,tt0082213,,A farce satirizing extraterrestrial horror movies such as Alien.,0,0,The Creature Wasn't Nice,en +341201,Great Transport,1983-07-04,134.0,,,tt0086531,,This WW2 epic was one of the last movies of that kind made in former Yugoslavia. It tells the true story of great transport of Partizans from Vojvodina to Bosnia in 1943.,0,0,Veliki transport,sr +113255,Huie's Sermon,1983-07-07,42.0,http://www.wernerherzog.com/films-by.html,,tt0080900,,"Reverend Huie Rogers is a preacher at the Bible Way Church of Our Lord Jesus Christ in Brooklyn. He is the topic of this short film, during which launches into an epic call-and-response denunciation of human hubris, greed, corruption and failure. The use of lengthy shots present it less like a sermon and more a performance, and induce an almost trance-like state.",58000,0,Huie's Predigt,en +10805,Staying Alive,1983-07-11,93.0,,288280,tt0086361,Tony Manero knows the old days are over – But nobody's gonna tell him he can't feel that good again,It's five years later and Tony Manero's Saturday Night Fever is still burning. Now he's strutting toward his biggest challenger yet - making it as a dancer on the Broadway stage.,22000000,64892670,Staying Alive,en +260672,The First Time,1983-07-13,96.0,,,tt0085546,There's a first time for everything...and This is Charlie's!,"A young film student pursues a woman while studying under a bizarre, eccentric film professor.",0,0,The First Time,en +105703,The Boys from Fengkuei,1983-07-13,98.0,,,tt0085533,,"Ah-Ching and his friends have just finished school in their island fishing village, and now spend most of their time drinking and fighting. Three of them decide to go to the port city of Kaohsiung to look for work. They find an apartment through relatives, and Ah-Ching is attracted to the girlfriend of a neighbor. There they face the harsh realities of the big city.",0,0,風櫃來的人,zh +14087,Barefoot Gen,1983-07-21,83.0,,14095,tt0085218,,"A powerful statement against war, Barefoot Gen is a story about the effect of the atomic bomb on a boy's life and the lives of the Japanese people.",0,0,Hadashi no Gen,ja +13105,Mr. Mom,1983-07-22,91.0,,,tt0085970,"When mom goes to work, dad goes berserk!","Jack and Caroline are a couple making a decent living When Jack suddenly loses his job. They agree that he should stay at home and look after the house while Caroline works. It's just that he's never done it before, and really doesn't have a clue...",0,64783827,Mr. Mom,en +17895,Antarctica,1983-07-23,143.0,,,tt0085991,,"Two Japanese scientists, Ushioda and Ochi, develop a bond with their sled dogs while on an expedition in Antarctica.",0,0,南極物語,ja +110261,The Seven Magnificent Gladiators,1983-07-31,100.0,,,tt0086289,,"A bandit leader endowed with supernatural powers by his sorceress mother makes yearly raids on a peasant village. However, the women of the village come into possession of a magic sword, and go in search of a hero who is able to wield it and save their village from the evil bandit.",0,0,I sette magnifici gladiatori,en +376188,Demidovy,1983-08-01,156.0,,,tt0085421,,,0,0,Демидовы,ru +36751,Twice Upon a Time,1983-08-05,75.0,http://lucasfilm.com/twice-upon-a-time,,tt0086489,,Two wannabe heroes and their friends must stop a madman from giving everyone nightmares.,0,0,Twice Upon a Time,en +36527,Phar Lap,1983-08-11,107.0,,,tt0086102,,"Phar Lap, the big bold chestnut reigned as the king of the turf in the depression that gripped Australia of the 1930s. From his humble beginnings the New Zealand bred horse raced on to become the hero of a nation.",0,0,Phar Lap,en +25499,"Just Let It Go, Friends",1983-08-12,132.0,,,tt0085743,,"Two zanies open a photography studio. They score a partnership with a gossip magazine that suddenly thrusts them into a world of corruption, murder, and hijinks.",14000,0,जाने भी दो यारों,hi +29610,The Man Who Wasn't There,1983-08-12,111.0,,,tt0085892,,A minor diplomatic functionary stumbles upon a formula for invisibility.,0,0,The Man Who Wasn't There,en +70500,Prisoners of the Lost Universe,1983-08-15,90.0,,,tt0086141,,"Three people are transported into a parallel universe. There they find that they must use modern technology, but medieval weapons, in order to save the citizenry from a murderous warlord.",0,0,Prisoners of the Lost Universe,en +103073,Ardh Satya,1983-08-19,123.0,,,tt0085178,,"A newly appointed police rookie deals with corruption, romance, and brutality.",0,0,अर्ध सत्य,hi +70122,"Arabella, the Pirate's Daughter",1983-08-22,69.0,,,tt0251590,,Arabella is a daughter of the world's most terrifying pirate captain. She loves her father but also dreams about a life of a usual girl. One day a weird stranger is saved from the sea who will be the only friend of Arabella. At the same time a rival pirate called Raudpats plans to kidnap the girl. Will she be safe and can she ever live a normal life?,0,0,"Arabella, mereröövli tütar",et +69152,Escape from the Bronx,1983-09-02,89.0,,324371,tt0089104,The first to die were the lucky ones!,A ragtag group of people have to fight extermination squads amid their ruined city.,0,0,Fuga dal Bronx,it +137587,Reilly: Ace of Spies,1983-09-05,0.0,,,tt0085077,The amazing true story of the world's first international super spy,A dramatization of the missions and adventures of the greatest spy in British history.,0,0,Reilly: Ace of Spies,en +17386,Revenge of the Ninja,1983-09-07,90.0,,373538,tt0086192,Payback is deadly.,"After his family is killed in Japan by ninjas, Cho and his son Kane come to America to start a new life. He opens a doll shop but is unwittingly importing heroin in the dolls. When he finds out that his friend has betrayed him, Cho must prepare for the ultimate battle he has ever been involved in.",0,13168027,Revenge of the Ninja,en +63665,Hanna K.,1983-09-07,111.0,,,tt0085642,,A female American Israeli lawyer is defending a Palestinian charged by an Israeli court. It's a tough case because of strong political background. Meanwhile she finds out she's pregnant and thinks about abortion.,0,114247,Hanna K.,fr +115332,Cross Creek,1983-09-21,127.0,,,tt0085380,,"The portrait of a woman who, at the edge of survival, found a world of meaning.",0,0,Cross Creek,en +21721,Eddie and the Cruisers,1983-09-23,95.0,,186102,tt0085475,Rebel. Rocker. Lover. Idol. Vanished.,Michael Paré stars as Eddie Wilson of the rock band Eddie and Cruisers. The band is at the height of their career in the 1960s when front man Eddie drives his car off a bridge in an apparent suicide -- but the body was never found.,0,4786789,Eddie and the Cruisers,en +62896,Uuno Turhapuron muisti palailee pätkittäin,1983-09-30,0.0,,148324,tt0086523,,,0,0,Uuno Turhapuron muisti palailee pätkittäin,fi +15050,Brainstorm,1983-09-30,106.0,,,tt0085271,...The Ultimate Experience,Two brilliant research scientists have invented a device capable of recording and playing back sensory experiences only to have devastating results when one of them records their own death.,15000000,10219460,Brainstorm,en +60568,Shaolin Intruders,1983-10-06,86.0,,,tt0201060,,"On a routine courier mission, the prestigious Chin Hu chief was murdered by four mysterious monks. When all evidence points to Ching Hua (Liu Yu-Po), his friend Lei Hsin (Derek Yee) is determined to clear his name by barging in the Shaolin Temple thrice, and gets intwined in an intricate web of deception!",0,0,Sam chong Siu Lam,en +76468,Adam,1983-10-10,100.0,,,tt0085136,,"After their child is abducted, John and Reve Walsh are trying to find him. But, shortly after that, Adam is found dead.",0,0,Adam,en +119844,Macbeth,1983-11-05,147.0,,,tt0084284,,"Macbeth and his wife murder Duncan in order to gain his crown, but the bloodbath doesn't stop there, and things supernatural combine to bring the Macbeths down.",0,0,Macbeth,en +13567,Sleepaway Camp,1983-11-18,85.0,,47391,tt0086320,…you won't be coming home!,"Slightly disturbed and painfully shy Angela Baker is sent away to summer camp with her cousin. Not long after Angela's arrival, things start to go horribly wrong for anyone with sinister or less than honorable intentions.",350000,0,Sleepaway Camp,en +10269,Yentl,1983-11-18,132.0,,,tt0086619,,A Jewish girl disguises herself as a boy to enter religious training.,12000000,30400000,Yentl,en +262447,Postscript,1983-11-21,98.0,,,tt0171647,,A young man is forced to spend a few days with his father in law...,0,0,Послесловие,ru +281215,Memorial Day,1983-11-23,120.0,,,tt0085927,,An attorney finds himself at the center of a surprise reunion with the veterans of his platoon from Vietnam.The reunion stirs up painful memories and disturbing secrets for all involved.,0,0,Memorial Day,en +10484,The ComDads,1983-11-23,92.0,,,tt0085354,,"Unable to find her runaway son, a woman deceives two of her ex-lovers from her youth, a mild-mannered teacher and a tough journalist, that each is the real father in order to obtain their help.",0,0,Les compères,fr +120729,An Englishman Abroad,1983-11-29,60.0,,,tt0085492,,"Actress Coral Browne travels to Moscow, and meets a mysterious Englishman. Turns out he's the notorious spy, Guy Burgess. Based on a true story, with Ms. Browne playing herself.",0,0,An Englishman Abroad,en +29611,Sole Survivor,1983-12-01,85.0,,,tt0181012,"This woman has cheated death. Now, Death wants to even the score.","Denise Watson is a TV station worker who is the only survivor of a unexplained, horrific airplane crash in which she is completely unscratched. Soon, Denise becomes haunted by feelings of unworthiness as well as seeing strange people following her and hearing voices calling her name which no one but she can hear. Disregarding warnings from a psychic actress friend, Denise tries to get on with her life while it's revealed that she was supposed to die in the crash, but somehow escaped, now the unseen specter of death wants to collect her by sending its minions, people that have recently died, to kill Denise and finish the job what death had planed for.",350000,0,Sole Survivor,en +92060,Michael Jackson's Thriller,1983-12-02,13.0,,,tt0088263,,A night at the movies turns into a nightmare when Michael and his date are attacked by a hoard of bloody-thirsty zombies.,1100000,0,Michael Jackson's Thriller,en +142216,Quarterback Princess,1983-12-03,96.0,,,tt0086161,,"The Maida family has moved to Oregon, and daughter Tami wants to play quarterback for the high school football team. There's just one problem. She's a girl. With everyone from the coach to her next door neighbor against her, she's out to prove that not only can she can play football, but she can win the state championship. (Based on a true story)",0,0,Quarterback Princess,en +42122,The Dresser,1983-12-06,118.0,,,tt0085461,What happens backstage is always true drama. And often pure comedy.,"In a touring Shakespearean theater group, a backstage hand - the dresser, is devoted to the brilliant but tyrannical head of the company. He struggles to support the deteriorating star as the company struggles to carry on during the London blitz. The pathos of his backstage efforts rival the pathos in the story of Lear and the Fool that is being presented on-stage, as the situation comes to a crisis.",0,0,The Dresser,en +54156,First Desires,1983-12-11,93.0,,,tt0086136,Beautiful innocence cast-away in paradise.,"Three teenage girls decide to visit a romantic island and find love. They get shipwrecked and end up on different sides of the island. Each girl begins her own romantic adventure either with a man, a boy or even another girl.",0,0,Premiers désirs,fr +22998,To Be or Not to Be,1983-12-16,107.0,,,tt0086450,That is the movie!,"A bad Polish actor is just trying to make a living when Poland is invaded by the Germans in World War II. His wife has the habit of entertaining young polish officers while he's on stage, which is also a source of depression to him. When one of her officers comes back on a Secret Mission, the actor takes charge and comes up with a plan for them to escape. remake of Ernst Lubitsch's 1942 black comedy with the same name.",0,13030214,To Be or Not to Be,en +21519,Project A,1983-12-22,106.0,,189159,tt0085127,Rip-roaring adventure on the old China Coast.,"In late 19th Century Hong Kong the British may rule the land, but the pirates rule the waters. One Coast Guard officer is Dragon Ma, who is determined that his beloved Coast Guard will not be made a fool of.",0,0,A計劃,cn +197335,Se tutto va bene siamo rovinati,1983-12-29,,,,tt0086266,,,0,0,Se tutto va bene siamo rovinati,it +136762,So Is This,1983-12-31,48.0,,,tt0130268,,"The film is a text in which each shot is a single word, tightly-framed white letters against a black background.",0,0,So Is This,en +38285,Il Ragazzo di Campagna,1984-01-01,92.0,,,tt0087971,,,0,0,Il ragazzo di campagna,it +91673,Wolf and Calf,1984-01-01,10.0,,,tt0882997,,,0,0,Волк и телёнок,ru +11296,Birdy,1984-12-14,120.0,,,tt0086969,,"Two young men are seriously affected by the Vietnam war. One of them has always been obsessed with birds - but now believes he really is a bird, and has been sent to a mental hospital. Can his friend help him pull through?",12000000,1400000,Birdy,en +201633,Motion Picture ('La sortie des ouvriers de l'usine Lumière à Lyon'),1984-01-01,3.0,,,tt0156805,,"In the darkroom, 50 unexposed film strips were laid across a surface, upon which a frame of ""La sortie des ouvrier de l'usine Lumière"" was projected. The stringing together of the individual developed sections make up the new film, which reads the original frame like a page from a musical score: within the strips from top to bottom and sequentially from left to right.",0,0,Motion Picture ('La sortie des ouvriers de l'usine Lumière à Lyon'),en +30411,Surf II,1984-01-01,91.0,,,tt0088207,The End of the Trilogy,"Evil Nerd Menlo wants to get revenge on some surfers by selling a bad batch of soda called Buzz Cola which turns people into mutant zombies. Its up to Jocko, Chuck, Bob and their surfer buddies to save the day.",0,0,Surf II,en +87148,Monster Dog,1984-01-01,84.0,,,tt0087616,The fear...the nightmare...the terror...they will never forget it!,"A (dubbed) Alice Cooper stars as Victor Raven, a famous rock star, who returns to his childhood home to shoot a music video. Believing his presence is responsible for the return of a monstrous hound that killed folks when he was kid, the locals decide to do something violent about it.",0,0,Leviatán,en +90319,The Tale of Tsar Saltan,1984-01-01,69.0,,,tt0142851,,"Tale - this is what is everyone from childhood. Give yourself a chance to once again return to the magical world created by Alexander Pushkin. Adventures brave Tsarevich Guidon, beautiful Swan-Tsar Saltan reminded of that love, loyalty and the spirit always wins!",0,0,Сказка о царе Салтане,ru +84994,Rocktober Blood,1984-01-01,93.0,,,tt0176097,He's back from the dead with a message from hell!,A crazed rock singer returns from the dead to murder members of his former band.,0,0,Rocktober Blood,en +59040,I due carabinieri,1984-01-01,0.0,,444665,tt0087181,,,0,0,I due carabinieri,it +42416,Arrapaho,1984-01-01,0.0,,,tt0128051,,,0,0,Arrapaho,it +104275,"The Pit, the Pendulum and Hope",1984-01-01,15.0,,,tt0085816,,"A short film based on Edgar Allan Poe's ""The Pit and the Pendulum"" and Auguste Villiers de l'Isle-Adam's ""A Torture by Hope"".",0,0,"Kyvadlo, jáma a nadeje",cs +272165,Solomon Northup's Odyssey,1984-01-02,0.0,,,tt0088148,,"This is based on a true story. Solomon Northrop is a black man in the mid 19th century before slavery was abolished. He's a born freeman who works as a carpenter and is also a part time musician. One day he is approached by some men who want him to play for them. However, that is not their intention; they have kidnapped him and sold him into slavery. Now he has to endure the hardships that he has been spared because of his status as a freeman. And his family who don't know what happened to him is searching for him but where do they go? And Solomon also wishes to let them know where he is so that they could get him but unfortunately no one believes his story or is willing to help him.",0,0,Solomon Northup's Odyssey,en +82265,Las bicicletas son para el verano,1984-01-20,0.0,,,tt0085241,,,0,0,Las bicicletas son para el verano,es +37030,Shaolin Temple 2: Kids from Shaolin,1984-01-26,103.0,,184977,tt0086301,,"Two rivaling families live on opposite sides of a river. One of them practices Shaolin kung fu and has only sons, while the other has only daughters and practices the Wu-Tang sword. The father of the Wu-Tang family is so paranoid about the Shaolin kids stealing his sword style (besides, he wants a son to teach it to, and the closest thing he has is a lesbian daughter) that he is taken off guard when some real bad guys come along to kill his family, but the Shaolin family helps them out. All the while, everyone is desperately trying to get the lesbian girl to marry Jet Li.",0,3554460,Shao Lin xiao zi,en +148034,The Elusive Summer of '68,1984-01-30,91.0,,,tt0088338,,"For the young man who lives in Serbian province town, the maturing coincides with the turbulent political events of the year 1968.",0,0,Varljivo leto '68,sr +43967,Urusei Yatsura 2: Beautiful Dreamer,1984-02-11,95.0,,354164,tt0088334,,"As the perpetually lecherous Ataru and his friends prepare for a carnival at Tomobiki High School, they gradually realize the days are literally repeating themselves. Any effort to break the pattern dumps them back where they started. They later discover their town has been reduced to a circle of land a few miles across, poised on the back of a gigantic sea turtle--a reference to ""Urushima Taro,"" a Japanese Rip Van Winkle story.",0,0,うる星やつら2 ビューティフル・ドリーマー,ja +31263,"The Barbaric Beast of Boggy Creek, Part II",1984-02-13,94.0,,,tt0088772,The Legend Too Monstrous To Die… Surfaces Again,Professor and students camp out to find Bigfoot-type creature.,0,0,"The Barbaric Beast of Boggy Creek, Part II",en +40978,Emmanuelle 4,1984-02-15,89.0,,39438,tt0085486,,"In order to escape from her former lover Marc, Sylvia goes to Brazil where Dr. Santamo transforms her into the beautiful Emmanuelle...",0,0,Emmanuelle 4,fr +52109,Love Streams,1984-02-20,141.0,,,tt0087644,,"Two closely bound, emotionally wounded siblings reunite after years apart.",0,0,Love Streams,en +167874,Rolf,1984-02-23,90.0,,,tt0200049,My price is death.,"Mercenary takes revenge on bad guys. The Last Mercenary, a thrilling story of violence... of a rare man... a man trying to forget his past. The story of a man's buring vengence, an avenger who cannot forgive. Neither threats nor traps can stop The Last Mercenary. Stretched to breaking point both physically and morally, a fight until death follows. His Price is death!",0,0,Rolf,en +181456,Thieves After Dark,1984-02-27,98.0,,,tt0086557,,A crime story set in Paris about a Bonnie-and-Clyde couple -- how they got together and how they are pursued for a murder they never committed.,0,0,Les voleurs de la nuit,fr +22160,Against All Odds,1984-03-02,128.0,,,tt0086859,,"She was a beautiful fugitive. Fleeing from corruption. From power. He was a professional athlete past his prime. Hired to find her, he grew to love her. Love turned to obsession. Obsession turned to murder. And now the price of freedom might be nothing less than their lives.",0,0,Against All Odds,en +21193,Carmen,1984-03-14,152.0,,,tt0087034,,"A film version of the famous Bizet opera, where a soldier (Don Jose) falls in love with a beautiful factory worker (Carmen), but she does not reciprocate his feelings.",0,0,Carmen,fr +388586,The Love of Ulysses,1984-03-18,0.0,,,tt0205044,,Directed by Vasilis Vafeas,0,0,O erotas tou Odyssea,en +297668,Terrible Joe Moran,1984-03-26,120.0,,,tt0088248,,"A wheelchair-bound, former boxer deals with his long estranged granddaughter whom is seeking financial help for her writing career and helping her loser boyfriend get out of debt with the local mob.",0,0,Terrible Joe Moran,en +24749,Iceman,1984-04-13,100.0,,,tt0087452,,"An anthropologist is brought to an arctic base when explorers discover the body of a prehistoric man who has been frozen in a block of ice for 40,000 years. After thawing the body to perform an autopsy, scientists discover to their amazement a real possibility to revive him and their attempt to resuscitate the ""iceman"" proves successful.",0,0,Iceman,en +18446,Swing Shift,1984-04-13,100.0,,,tt0088213,When America marched off to war the women marched into the factory. From then on...nothing was the same.,"In 1941 America Kay and her husband are happy enough until he enlists after Pearl Harbor. Against his wishes, his wife takes a job at the local aircraft plant where she meets Hazel, the singer from across the way the two soon become firm friends and with the other girls become increasingly expert workers. As the war drags on Kay finally dates her trumpet playing foreman and life gets complicated",0,0,Swing Shift,en +149926,Champions,1984-04-20,106.0,,,tt0085320,,The true story of jockey Bob Champion who overcame cancer to win the 1981 Grand National,0,0,Champions,en +47792,Voyage to Cythera,1984-04-21,120.0,,,tt0088241,,"An old communist returns to Greece after 32 years in the Soviet Union. However, things aren't the way he had hoped for.",0,0,Ταξίδι στα Κύθηρα,el +101185,The Far Pavilions,1984-04-21,320.0,,,tt0086711,The 'Gone With The Wind' of the north-west frontier of India.,Story of forbidden love in 1800's India set against the revolution for India's freedom from England.,0,0,The Far Pavilions,en +15239,The Toxic Avenger,1984-05-01,82.0,,32135,tt0090190,He was 98lbs. of solid nerd until he became...,Tromaville has a monstrous new hero. The Toxic Avenger is born when mop boy Melvin Junko falls into a vat of toxic waste. Now evildoers will have a lot to lose.,0,0,The Toxic Avenger,en +52736,Hardbodies,1984-05-04,88.0,,351231,tt0087385,"If you don't know what they are, you don't know what you're missing.","Three middle-aged daddies visit California to have a marvelous time at the beach. When they learn that a nice apartment and an expensive cabriolet isn't enough for them to score with the chicks, they employ a student to help them. At first he's as disgusted of them and his job as his girlfriend, but soon they find out how to use the situation to everyone's benefit.",0,0,Hardbodies,en +2669,The Bounty,1984-05-04,132.0,,,tt0086993,"After 200 years, the truth behind the legend.","The familiar story of Lieutenant Bligh, whose cruelty leads to a mutiny on his ship. This version follows both the efforts of Fletcher Christian to get his men beyond the reach of British retribution, and the epic voyage of Lieutenant Bligh to get his loyalists safely to East Timor in a tiny lifeboat.",25000000,8613462,The Bounty,en +15144,Sixteen Candles,1984-05-04,93.0,,,tt0088128,When you're just sixteen anything can happen!,A teenage girls deals with her parents forgetting her birthday and a crush on her high school's heartthrob.,6500000,23686027,Sixteen Candles,en +56078,Vabank II,1984-05-06,97.0,,140126,tt0090246,,"A sequel to ""Vabank"" (1981), introduces the same characters entangled in a duel between a former safecracker and a crooked bank manager.",0,0,Vabank II,en +655,"Paris, Texas",1984-05-19,147.0,,,tt0087884,A place for dreams. A place for heartbreak. A place to pick up the pieces.,"A man wanders out of the desert not knowing who he is. His brother finds him, and helps to pull his memory back of the life he led before he walked out on his family and disappeared four years earlier.",1746964,2181987,"Paris, Texas",en +25425,Drunken Tai Chi,1984-05-31,91.0,,,tt0088423,,"Most notable as being Donnie Yen's first film and starring role, Drunken Tai Chi is one of Yuen Woo Ping's funniest films and possesses all of the elements of a great comedic kung fu epic.",0,0,笑太極,cn +157,Star Trek III: The Search for Spock,1984-05-31,105.0,,151,tt0088170,A dying planet. A fight for life.,Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.,18000000,87000000,Star Trek III: The Search for Spock,en +18477,The Hills Have Eyes Part II,1984-06-01,86.0,,267922,tt0089274,So you think you're lucky to be alive...,A group of young and wild motocross racers venture through the desert and are stranded at an old mining ranch. They soon realize that they are being watched by a group of savage cannibals unknown to the civilized world. The film is full of flashbacks to the original film; even the dog has a flashback.,700000,0,The Hills Have Eyes Part II,en +327935,Şabaniye,1984-06-02,,,,tt0253616,,,0,0,Şabaniye,tr +77762,Winter in Prostokvashino,1984-06-06,16.0,,219363,tt1318414,,A third movie about Fyodor and his friends from the Prostokvashino village and their adventures - this time during the winter.,0,0,Зима в Простоквашино,ru +16551,Rhinestone,1984-06-22,111.0,,,tt0088001,"She's bet everything, and we mean everything, that she can turn this New York cabbie into an overnight sensation. He has other things in mind. But he's never had a trainer like this one!","After a big-time country singer brags that she can turn anybody in to a country-singin' star, she's out to prove she can live up to her talk when she recruits a cab-driver as a country singer. He's scheduled to sing at a big-time NYC country night club and she puts her ample powers to work in preparing her protege.",28000000,21435321,Rhinestone,en +12309,Bachelor Party,1984-06-29,105.0,,466318,tt0086927,A man's tradition every woman should know about.,"This outrageously funny look at one man's final moments of bachelorhood stars Tom Hanks as Rick, reluctant recipient of a bachelor bash given by a group of friends who view partying as their full-time religion. Rick's worried fiancée, Debbie (Tawny Kitaen), dresses up in disguise and crashes the party to spy on her future husband.",6000000,38435947,Bachelor Party,en +11950,Cannonball Run II,1984-06-29,108.0,,101688,tt0087032,The popcorn's in the lobby. The nuts are on the screen.,The original characters from the first Cannonball Run movie compete in an illegal race across the country once more in various cars and trucks.,0,28078073,Cannonball Run II,en +89921,White Fire,1984-07-05,84.0,,,tt0088359,Sometimes diamonds are not a girl's best friend.,"When Bo was a child, a mysterious stranger sadistically murdered his parents. Only Bo and his sister, Ingrid survived the bloodshed. Now, twenty years later... Bo and his sister are grown up. They are now employees at a diamond mineshaft located in the desert. As mischievous as they are, they stumble upon the discovery of a legendary diamond, the ""White Fire."" However, this rapture for the diamond has provoked the angst of some short-tempered, not-so-nice villains. The quest to capture the most sought-out diamond in the world is afoot...",0,0,Vivre pour survivre,en +30996,Splatter University,1984-07-13,77.0,,,tt0125510,Earn a higher degree in terror!,A sociology instructor finds her new teaching duties at a private college interrupted by the presence of a killer.,0,0,Splatter University,en +11899,The Muppets Take Manhattan,1984-07-13,94.0,,256377,tt0087755,,"When the Muppets graduate from Danhurst College, they take their song-filled senior revue to New York City, only to learn that it isn't easy to find a producer who's willing to back a show starring a frog and a pig. Of course, Kermit the Frog and Miss Piggy won't take no for an answer, launching a search for someone to take them to Broadway.",8000000,0,The Muppets Take Manhattan,en +48210,The Beekeeper,1986-01-01,122.0,,,tt0091506,,"A bee keeper, Spiros, travels from the north to the south of Greece with his bees to meet the spring.",0,0,O melissokomos,el +14052,Revenge of the Nerds,1984-07-20,90.0,,48190,tt0088000,The time has come for REVENGE OF THE NERDS,"At Adams College, the jocks rule the school from their house on high, the Alpha Beta fraternity. So when a group of socially-challenged misfits try to go Greek, they're instantly rejected by every house on campus. Deciding to start their own fraternity to protect their outcast brothers, the campus nerds soon find themselves in a battle royale as the Alpha Betas try to crush their new rivals.",0,0,Revenge of the Nerds,en +13763,Purple Rain,1984-07-27,111.0,,,tt0087957,Before He Created the Magic. He Lived Every Bit of It.,"A young man with a talent for music meets an aspiring singer, Apollonia, and finds that talent alone isn't all that he needs.",7200000,68392977,Purple Rain,en +469172,Manuel on the Island of Wonders,1984-08-02,130.0,,,tt0089018,,Manuel is a young boy who travels from long ago to the present and then to the future.,0,0,Manoel dans l'île des merveilles,pt +83223,Rats: Night of Terror,1984-08-03,97.0,,,tt0086176,Mutants of a nuclear disaster,"One hundred years after a nuclear war has devastated the planet, society has been reborn into two factions; the underground society and the scavangers above in the wastelands. A group of scavangers on bikes come across a town infested with flesh eating rats, and soon the gore is spilling everywhere.",0,0,Rats - Notte di terrore,en +48677,Cloak & Dagger,1984-08-10,101.0,,,tt0087065,You can cry 'wolf' once too often!,"11-year-old Davey's mother is dead and his father doesn't spend nearly enough time with him. So the boy loses himself in video games--and even has an imaginary friend, a super-resourceful secret agent. When he accidentally comes into possession of a spy group's secret plans, and winds up on the run from them, he must learn to rely on himself and his imaginary pal to save his skin. But, in the end, Dad proves to be his real hero.",0,0,Cloak & Dagger,en +11379,The Adventures of Buckaroo Banzai Across the 8th Dimension,1984-08-15,103.0,http://www.banzai-institute.com/,,tt0086856,Beings from Another Dimension have invaded your world.,"Adventurer/surgeon/rock musician Buckaroo Banzai and his band of men, the Hong Kong Cavaliers, take on evil alien invaders from the 8th dimension.",0,0,The Adventures of Buckaroo Banzai Across the 8th Dimension,en +30584,Sword of the Valiant: The Legend of Sir Gawain and the Green Knight,1984-08-17,102.0,,,tt0084750,,"Gawain was a squire in King Arthur's court when the Green Knight burst in and offered to play a game with a brave knight. Gawain journeys across the land, learning about life, saving damsels, and solving the Green Knight's riddle.",0,0,Sword of the Valiant: The Legend of Sir Gawain and the Green Knight,en +11205,Wheels on Meals,1984-08-17,108.0,,,tt0087578,Not since Don Quixote has Spain had so much fun!,"Cousins Thomas and David, owners of a mobile restaurant, team up with their friend Moby, a bumbling private detective, to save the beautiful Sylvia, a pickpocket.",0,0,快餐車,cn +34577,Daishizen no Majū: Bagi,1984-08-19,90.0,,,tt0497532,,"Tezuka Osamu's tale of a genetically engineered pink American Mountain-lion named Bagi and the friendship she develops with Ryo, a lonesome bike gang member.",0,0,Daishizen no Majū: Bagi,en +27102,Full Moon in Paris,1984-08-29,100.0,,,tt0087821,,"""He who has two women loses his soul, he who has two houses loses his mind."" So it goes with Louise played by Pascale Ogier who is dissatisfied with her mundane life in a bleak Parisian new-town. She rents a pied-à-terre in the city so she can experience independence.",0,0,Les nuits de la pleine lune,fr +27221,Where the Green Ants Dream,1984-08-31,100.0,,,tt0088412,,"Extraordinary images from Werner Herzog. Shot in the Australian Outback the Aborigines (in this film anyway) believe that this is the place where the green ants go to dream, and that if their dreams are disturbed, it will bring down disaster on us all. The Aborigines' belief is not shared by a giant mining company, which wants to tear open the soil and search for uranium.",0,0,Wo die grünen Ameisen träumen,de +23730,C.H.U.D.,1984-08-31,88.0,,257571,tt0087015,They're not staying down there anymore!,"A rash of bizarre murders in New York City seems to point to a group of grotesquely deformed vagrants living in the sewers. A courageous policeman, a photo journalist and his girlfriend, and a nutty bum, who seems to know a lot about the creatures, band together to try and determine what the creatures are and how to stop them.",1250000,3412497,C.H.U.D.,en +149149,Berta's Motives,1984-09-01,115.0,,,tt0085966,,The life of a young girl who plays with little animals and insects is suddenly changed with the arrival of a film crew and a strange man.,0,0,Los motivos de Berta,es +60623,Love Unto Death,1984-09-05,92.0,,,tt0086890,,"Elisabeth and Simon have been deeply in love for two months when Simon momentarily dies, but comes back to life. Simon does not want any further medical tests, but the couple are forced to grapple with the possibility of his death. They eventually tell their close friends Jérôme and Judith Martignac about the event. The Martignacs are both clerics, and Judith has just been giving a funeral service for a villager who committed suicide, though Jérôme would have nothing to do with suicide..",0,0,L'amour à mort,fr +28820,Devilfish,1984-09-07,90.0,,,tt0088100,Sink your teeth into pure terror!,"A marine biologist, a dolphin trainer, a research scientist, and a local sheriff try to hunt down a large sea monster, a shark/octopus hybrid, that is devouring swimmers and fishermen off a south Florida coast.",0,0,Shark: Rosso nell'oceano,en +26889,The Brother from Another Planet,1984-09-07,108.0,,,tt0087004,,An alien slave crashes lands in New York city while being pursued by two Men in Black bounty hunters. His attempt to find a place for himself on earth parallels that of the immigrant experience.,0,0,The Brother from Another Planet,en +13681,Places in the Heart,1984-09-11,111.0,,,tt0087921,"The story of a woman fighting for her children, for her land, for the greatest dream there is...the future.","In 1930s Southern US, a widow and her family try to run their cotton farm with the help of a disparate group of friends.",0,0,Places in the Heart,en +19621,The Hit,1984-09-12,98.0,,,tt0087414,Even bad guys have bad days,"Ex-gangster Willie Parker has betrayed his former ""colleagues"" and now lives in Spain where he thinks he can hide from their vengeance...",0,0,The Hit,en +42123,Utu,1984-09-13,118.0,,,tt0086497,,"In New Zealand in the 1860s the native Maori people fought the British colonials to keep the land guaranteed to them by treaty. The warrior Te Wheke fights for the British until betrayal leads him to seek utu (revenge). The settler Williamson in turn seeks revenge after Te Wheke attacks his homestead. Meanwhile Wiremu, an officer for the British, seems to think that resistance is futile.",0,0,Utu,en +81787,The Future Is Woman,1984-09-15,99.0,,,tt0087310,,"In this improbable, ponderous story about a couple who do not want to have children of their own, and a pregnant, single woman who needs a home for awhile, the relationship between the three is strange, at the very least.",0,0,Il futuro è donna,it +24123,Cake,2005-05-12,95.0,,,tt0413879,Have your life and eat it too.,A travel writer improves her love life when she becomes an editor for her father's wedding magazine.,0,0,Cake,en +47638,The River Rat,1984-09-28,94.0,,,tt0088006,That ole man river...,"On the lazy banks of the Mississippi, a young girl is reunited with her time-served but innocent father. But the reunion is tainted with the whereabouts of the stolen loot, and those who come looking for it... With a luminous cast starring Tommy Lee Jones, Martha Plimpton and Brian Dennehy, this film outstands with simple craft, storytelling, setting and an all but lost cinema magic. Don't miss.",0,1142944,The River Rat,en +42087,Country,1984-09-29,105.0,,,tt0087091,,"Gilbert Ivy and his wife Jewell are farmers. They seem to be working against the odds, producing no financial surplus. Gilbert has lost hope of ever becoming prosperous, but his wife decides to fight for her family.",0,0,Country,en +469,Stranger Than Paradise,1984-10-01,89.0,,,tt0088184,,"Rootless Hungarian émigré Willie, his pal Eddie, and visiting sixteen-year-old cousin Eva always manage to make the least of any situation, whether aimlessly traversing the drab interiors and environs of New York City, Cleveland, or an anonymous Florida suburb.",0,0,Stranger Than Paradise,en +42093,Marlene,1984-10-01,94.0,,,tt0085905,,Retrospective on the career of enigmatic screen diva Marlene Dietrich.,0,0,Marlene,de +39978,The Twin,1984-10-10,104.0,,,tt0087520,,"Matthias Duval is in love, but he can't choose between the two twin sisters Betty and Liz Kerner. To pick up the two sisters, he invents his own twin brother and will play both characters.",0,0,Le jumeau,fr +9314,Nineteen Eighty-Four,1984-10-10,113.0,,,tt0087803,George Orwell's Terrifying Vision Comes To The Screen.,George Orwell's novel of a totalitarian future society in which a man whose daily work is rewriting history tries to rebel by falling in love.,0,0,Nineteen Eighty-Four,en +64225,Love on the Ground,1984-10-17,169.0,,,tt0086889,,Two actresses fall prey to the supernatural manipulations of a nightclub magician.,0,0,L'amour par terre,fr +24453,The Razor's Edge,1984-10-19,129.0,,,tt0087980,The story of one man's search for himself.,He had everything and wanted nothing. He learned that he had nothing and wanted everything. He saved the world and then it shattered. The path to enlightenment is as sharp and narrow as a razor's edge.,0,0,The Razor's Edge,en +32088,The Little Drummer Girl,1984-10-19,130.0,,,tt0087629,She will become their most deadly weapon. As long as they can make her fall in love.,"An American Actress with a penchant for lying is forceably recruited by Mosad, the Israeli intelligence agency to trap a Palestinian bomber, by pretending to be the girlfriend of his dead brother.",0,0,The Little Drummer Girl,en +54752,Firstborn,1984-10-26,103.0,,,tt0087263,Jake Livingston had to grow up fast... because his mother didn't.,"Because he's the oldest, Jake has been the man of the house, since his parents divorce. When Mom starts seeing Sam, who always seems to be trying some new way to get rich quick, and declares he's the man of the house now, Jake puts up with it. Until he discovers Sam's illegal activities.",0,0,Firstborn,en +125926,Åke and His World,1984-10-26,99.0,,,tt0088466,,"Aake and his world is a long, lyrical study of a Swedish country doctor of the 1930s. Aake is the doctor's six year old son, from whose point of view the film is told. His best friend is Kalle Nubb. Aake is very frightened of the janitor Bergstroem as well as the lunatic Anne-Marie.",0,0,Åke och hans värld,sv +109074,Day of the Reaper,1984-10-31,0.0,,,tt0375691,,Five women on vacation are stalked by a hooded cannibal killer in the town of Sunnyville Florida. Silly antics and H.G. Lewis-style gore follow the survivors in this camp super-8 epic.,0,0,Day of the Reaper,en +84771,Lovelines,1984-11-02,93.0,,,tt0087648,,"Greed, lust, dirty tricks and bloody fist fights... All those things that make life worth living. When Piper and Rick, the two hottest properties in the Battle of the Bands want to make it, only one thing stands in their way. They're from opposing High Schools. And Malibu High's 6'6"" muscle-bound monster Godzilla is going to do everything and anything stop his sweet little sister getting it on with some jerk from the Coldwater Canyon High. When all else fails, only Lovelines answering service can keep them together.",0,0,Lovelines,en +27414,"Silent Night, Deadly Night",1984-11-09,79.0,,256296,tt0088117,"You've made it through Halloween, now try and survive Christmas.","Little Billy witnesses his parents being brutally murdered by Santa. When, years later, he has to fill in for an absent in-store Santa Claus, his traumas materialise once again.",1065000,0,"Silent Night, Deadly Night",en +15379,Missing in Action,1984-11-16,101.0,,46512,tt0087727,The war's not over until the last man comes home.,"American servicemen are still being held captive in Vietnam and it's up to one man to bring them home in this blistering, fast-paced action/adventure starring martial arts superstar Chuck Norris.Following a daring escape from a Vietnamese POW camp, Special Forces Colonel James Braddock (Norris) is on a mission to locate and save remaining MIAs.",1500000,22812411,Missing in Action,en +9651,Supergirl,1984-11-19,124.0,,,tt0088206,From out of another galaxy and into your hearts comes... Supergirl,"After losing a powerful orb, Kara, Superman's cousin, comes to Earth to retrieve it and instead finds herself up against a wicked witch",35000000,14296438,Supergirl,en +20561,28 Up,1984-11-20,136.0,,95051,tt0088650,,No overview found.,0,0,28 Up,en +52744,Falling in Love,1984-11-21,102.0,,,tt0087233,,"During shopping for Christmas, Frank and Molly run into each other. This fleeting short moment will start to change their lives, when they recognize each other months later in the train home and have a good time together. Although both are married and Frank has two little kids, they meet more and more often, their friendship becoming the most precious thing in their lives.",0,11129057,Falling in Love,en +38164,Chaos,1984-11-22,188.0,,,tt0087537,,"Five stories center around a werewolf, a feudal landlord, peasants, a ghost, and a mother (Margarita Lozano) and her sons.",0,0,Kaos,it +92989,A Summer at Grandpa's,1984-11-24,93.0,,,tt0087164,,A coming-of-age story about a young brother and sister whom spend a pivotal summer in the country with their grandparents.,0,0,冬冬的假期,zh +77673,The Vengeance of the Winged Serpent,1984-11-28,104.0,,,tt0088344,,An international intrigue with terrorists threatening to blow up the presidents of the most powerful countries.,0,0,La vengeance du serpent à plumes,fr +142798,"Blue Mountains, or Unbelievable Story",1984-12-03,97.0,,,tt0087349,,A satire about Soviet bureaucracy. WorldCat.org,0,0,"Голубые горы, или Неправдоподобная история",ru +63360,The Initiation,1984-12-07,97.0,,,tt0087472,"Be young, stay young ... and die young.","Kelly, a young woman, has been plagued by nightmares of a burning man her entire life. Upon entering college, she pledges a sorority that forces them to perform an initiation night prank. With several of her friends, she breaks into a store and unfortunately discovers that it is impossible to exit from the building after it is entered illegally. Trapped in a new nightmare, Kelly must fight for survival.",0,0,The Initiation,en +9507,Runaway,1984-12-14,100.0,,,tt0088024,IT IS THE FUTURE. Machines are being programmed to turn against us. Someone must stop the madman who started it all.,"In the near future, a police officer specializes in malfunctioning robots. When a robot turns out to have been programmed to kill, he begins to uncover a homicidal plot to create killer robots... and his son becomes a target.",0,0,Runaway,en +16806,Johnny Dangerously,1984-12-21,90.0,,,tt0087507,Organized crime has never been this disorganized!,"Set in the 1930s, an honest, goodhearted man is forced to turn to a life of crime to finance his neurotic mother's skyrocketing medical bills.",0,0,Johnny Dangerously,en +17464,Breakin' 2: Electric Boogaloo,1984-12-21,94.0,,92222,tt0086999,They're Back... For Everyone Who Believes In the Beat.,"The dance crew from ""Breakin'"" bands together to save a community center from a greedy developer bent on building a shopping center in its place.",0,0,Breakin' 2: Electric Boogaloo,en +42094,Micki & Maude,1984-12-21,118.0,,,tt0087718,"Micki was the only woman he ever wanted to marry. Until he met Maude. So, he did what any honorable man would do. He married them both.","TV reporter Rob Salinger is married to Micki, but because she's always busy working, they hardly ever spend time together. One night at which he got stood up by Micki again, Rob meets cellist Maude and they soon get romanticly involved. When it turns out Maude is pregnant with his baby, Rob decides to marry Maude. When he's on the verge of telling Micki, she tells him she's pregnant, so he doesn't have the heart to leave her, but he marries Maude anyway. Now married to two pregnant women who don't know about each other, Rob has a busy time taking care of both and keep them from finding out.",0,0,Micki & Maude,en +83491,My Friend Ivan Lapshin,1984-12-26,100.0,,,tt0084345,,"Russian provincial town in the middle of the 1930s Stalin's Great Purge. Ivan Lapshin, the head of the local police, does what he has to do. And he does it well.",0,0,Мой друг Иван Лапшин,ru +174748,Lars i porten,1984-12-30,,,,tt0087587,,,0,0,Lars i porten,no +131815,The Sea Serpent,1984-12-31,91.0,,,tt0088089,,"A serpent, created by radioactivity, threatens a Spanish coastal town.",0,0,The Sea Serpent,en +59356,This Unnameable Little Broom,1985-01-01,11.0,,,tt0082335,,Stop-motion animated short film in which a puppet on a trike captures a puppet bird-man.,0,0,This Unnameable Little Broom,en +67021,The Young Vagabond,1985-01-01,85.0,,,tt0354234,,"One of the great kung-fu film characters is ""Beggar Su,"" a legendary Ching Dynasty figure who was also a member of the famous Ten Kwangtung Tigers. Little-known director Liu Shih-yu uses the best kung-fu actors Shaw Studios had to offer to tell a rare, colorful, action-packed adventure, as Beggar Su and his brother train incessantly to defeat the brutally powerful thief called Centipede. The result is not only reminiscent of preeminent director Liu Chia-liang's work, but essentially an homage to him as well!",0,0,Xiao nian Su Qi Er,en +38310,Firefighters,1985-01-01,97.0,,376567,tt0126618,,"Hard and dangerous service. Needed to extinguish fires, but what if there is a fire between the legs?",0,0,I pompieri,it +93935,Hot Resort,1985-01-01,0.0,,,tt0089305,,Young guys on the make get a job at a resort hotel in the Caribbean.,0,0,Hot Resort,en +79054,The Revenge of the Teenage Vixens from Outer Space,1985-01-01,83.0,,,tt0089912,"They're like ""Killer Tomatoes"" with Great Bods!","The Vixens are coming! They've landed on earth to wreak havoc on the male student bodies of Mayfield High. You see, there are no men on their native planet, and every so often, they'll visit earth to fulfill their ravenous desires. Unfortunately, the adolescent boys are no match for these lustful aliens, and in their frustration, the Vixens zap them with their ray guns and turn them into garden variety vegetables--tomatoes, zucchinis, carrots, pickles, even squash!",0,0,The Revenge of the Teenage Vixens from Outer Space,en +179837,Manufractur,1985-01-01,3.0,,,tt0156770,,"A tangled network woven with tiny particles of movements broken out of found footage and compiled anew: the elements of the ""to the left, to the right, back and forth"" grammar of narrative space, discharged from all semantic burden. What remains is a self-sufficient swarm of splinters, fleeting vectors of lost direction, furrowed with the traces of the manual process of production.",0,0,Manufraktur,en +123601,Sosyete Şaban,1985-01-01,0.0,,,tt0253738,,,0,0,Sosyete Şaban,tr +29907,Restless Natives,1985-01-01,89.0,,,tt0089904,Scotland's most notorious public enemies,"Two lads in Edinburgh embark on a non-violent spree of robberies. They dress up in clown masks and act as modern highwaymen, robbing coach loads of tourists in the highlands. In the process they become folk heroes to the locals. Their adventures make for a whimsical and gentle comedy, in the Bill Forsyth vein.",0,0,Restless Natives,en +116318,A Journey Through Fairyland,1985-01-01,90.0,,,tt0297215,,"A boy, the son of famous musicians, is kicked out of a music university when he spends too much time with tending plants. A flower fairy helps him out as thanks for his treatment of the plants.",0,0,Yousei furorensu,en +31128,Final Justice,1985-01-01,90.0,,,tt0087258,Joe Don Baker is looking for trouble.,"Due to his violent past, Deputy Sheriff Thomas Jefferson Geronimo III (Joe Don Baker) has been transferred to a rural outpost. When two thugs kill the sheriff, Geronimo shoots one of them, and the other vows revenge. Unfortunately for Geronimo, that thug turns out to be a mob boss, and the court orders Geronimo to extradite him back to his home in Sicily. When their plane is hijacked, the adversaries find their roles reversed.",0,0,Final Justice,en +85009,Too Scared to Scream,1985-01-04,100.0,,,tt0090186,"There has to be a morning after, but only if you survive the night before.","A killer of young women is loose in an exclusive apartment complex and a detective is out to stop him. The chief suspect is a Shakespeare-spouting doorman who lives with his invalid mother. Meanwhile, an undercover cop moves into the apartment house. This move is complicated by her relationship with the detective.",0,0,Too Scared to Scream,en +32720,Hail Mary,1985-01-23,72.0,,,tt0089366,,"In this modern retelling of the Virgin birth, Mary is a student who plays basketball and works at her father's petrol station; Joseph is an earnest dropout who drives a cab. The angel Gabriel must school Joseph to accept Mary's pregnancy, while Mary comes to terms with God's plan through meditations that are sometimes angry and usually punctuated by elemental images of the sun, moon, clouds, flowers, and water.",0,0,"Je vous salue, Marie",fr +167938,Istanbul,1985-01-30,0.0,,,tt0089355,,"Willy, a student, quits his vacationjob to go to Istanbul with the sinister yet facinating Klamski. On the way from Ostend to Arlon some chance meetings unpuzzle the truth about Klamski, but Willy turns out to have a dark side as well.",0,0,Istanbul,nl +29161,Phenomena,1985-01-31,116.0,,,tt0087909,When Insects Attack!,"A young girl, with an amazing ability to communicate with insects, is transferred to an exclusive Swiss boarding school, where her unusual capability might help solve a string of murders.",3800000,0,Phenomena,en +169009,Bridge To Terabithia,1985-02-04,60.0,,,tt0088853,,Jess Aarons and new girl Leslie Burke create a world of their own and call it Terabithia and pretend to be the king and queen. They return to their magical kingdom every day after school.,0,0,Bridge To Terabithia,en +198993,Area 88,1985-02-05,201.0,,,tt0088736,,A pilot struggles to retain his humanity when he is shanghaied into a mercenary jet fighter force.,0,0,Area 88,ja +108048,"Gwen, the Book of Sand",1985-02-06,67.0,,,tt0087376,,"Gwen is a young girl adopted by a nomad tribe in a desert post-apocalyptic world. When Gwen's friend is kidnapped, she and an old woman called Roseline embark on a trip to bring him back.",0,0,Gwen et le Livre de Sable,fr +14750,Mischief,1985-02-08,93.0,,,tt0089601,"The first time seems like the worst time, but it's the one time you'll never forget!","1956: The shy Jonathan's luck with girls changes when he wins the rebellious Gene as a friend in his last year of high school. Gene is adored by many girls and manages to teach Jonathan a few lessons. Gene himself would rather just be with one girl: his girlfriend Bunny. But since his father is poor, her parents don't accept him.",0,8692426,Mischief,en +10044,My Lucky Stars,1985-02-10,96.0,,300431,tt0089177,Asia's top action-comedy team takes on the Tokyo underworld.,"Two Hong-Kong cops are sent to Tokyo to catch an ex-cop who stole a large amount of money in diamonds. After one is captured by the Ninja-gang protecting the rogue cop, the other one gets his old Orphanage gang, dubbed the ""Five Lucky Stars,"" to help him. They don't like this much, but they do it.",0,0,福星高照,cn +46830,Poison Ivy,1985-02-10,97.0,,,tt0089820,,"Two teenage summer camp counselors struggle with their younger campers, providing a variety of humorous situations and romantic encounters.",0,0,Poison Ivy,en +2108,The Breakfast Club,1985-02-15,97.0,,,tt0088847,"They only met once, but it changed their lives forever.","Five high school students, all different stereotypes, meet in detention, where they pour their hearts out to each other, and discover how they have a lot more in common than they thought.",1000000,51525171,The Breakfast Club,en +11338,Into the Night,1985-02-15,115.0,,,tt0089346,A dangerous romance,"Ed Okin used to have a boring life. He used to have trouble getting to sleep. Then one night, he met Diana. Now, Ed's having trouble staying alive.",11400000,6700000,Into the Night,en +10849,The Purple Rose of Cairo,1985-03-01,82.0,,,tt0089853,,"Cecilia is a waitress in New Jersey, living a dreary life during the Great Depression. Her only escape from her mudane reality is the movie theatre. After losing her job, Cecilia goes to see 'The Purple Rose of Cairo' in hopes of raising her spirits, where she watches dashing archaeologist Tom Baxter time and again.",15000000,10631333,The Purple Rose of Cairo,en +73462,The Aviator,1985-03-01,96.0,,,tt0088758,,A 1920s mail pilot and a rich man's daughter crash-land on a mountain full of hungry wolves.,0,1304192,The Aviator,en +12764,Missing in Action 2: The Beginning,1985-03-01,100.0,,46512,tt0089604,Chuck Norris is back! A one-man time bomb set to explode!,"Prequel to the first Missing In Action, set in the early 1980s it shows the capture of Colonel Braddock during the Vietnam war in the 1970s, and his captivity with other American POWs in a brutal prison camp, and his plans to escape.",2410000,10755447,Missing in Action 2: The Beginning,en +58611,È arrivato mio fratello,1985-03-19,0.0,,,tt0090383,,,0,0,È arrivato mio fratello,it +19736,Baby: Secret of the Lost Legend,1985-03-22,95.0,,,tt0088760,,"Paleontologist and her husband discover a mother and baby brontosaurus in Africa, try to protect them from hunters who want to capture them.",0,0,Baby: Secret of the Lost Legend,en +42040,King David,1985-03-29,114.0,,,tt0089420,,This is a movie about the life of Israel's king David.,0,0,King David,en +78364,The Slugger's Wife,1985-03-29,105.0,,,tt0090036,,"Darryl Palmer (Michael O'Keefe) is a major league baseball player who meets and pursues an attractive singer (Rebecca De Mornay). After some setbacks, the two are married and sent on an emotional journey that sees his career take off, while hers doesn't. When she gives up her dreams to support her husband, she can't escape her own unhappiness. With a separation on the horizon, Darryl must choose between his big-league life and his one true love.",0,1878561,The Slugger's Wife,en +29471,Colonel Redl,1985-03-29,144.0,,,tt0089716,,"Set during the fading glory of the Austro-Hungarian empire, the film tells of the rise and fall of Alfred Redl (Brandauer), an ambitious young officer who proceeds up the ladder to become head of the Secret Police only to become ensnared in political deception.",0,0,Oberst Redl,de +75564,The Galaxy Invader,1985-04-01,79.0,,,tt0089185,"It Came From A Galaxy Far, Far Away. An Alien Explorer -- It's Mission ... TO SURVIVE!",An alien is hunted by a gang of drunken hillbillies who saw him crash-land his spaceship.,0,0,The Galaxy Invader,en +177335,Alamo Bay,1985-04-03,98.0,,,tt0088689,Alamo Bay. A place where everyone risked everything for a piece of the American Dream.,A despondent Vietnam veteran in danger of losing his livelihood is pushed to the edge when he sees Vietnamese immigrants moving into the fishing industry in a Texas bay town.,0,0,Alamo Bay,en +29263,The Official Story,1985-04-03,112.0,,,tt0089276,Our Moving Story,"After the end of the Dirty War, a high school teacher sets out to find out who the mother of her adopted daughter is.",0,0,La historia oficial,es +40993,Szaffi,1985-04-11,76.0,,,tt0137226,Szaffi,"Szaffi is a full-length animated feature based on Jokai Mor's books Gypsy Baron (Cyganibaro) and Szaffi. It has adventure, and treasure, and love, and a little black cat, and a war, and picturesque villains - a governor with a pressure release valve in his skull and a fat pig-loving baron, and of course, the good gypsies.",0,0,Szaffi,en +107319,Wheels of Fire,1985-04-11,81.0,,,tt0088393,,The Future is now. There are no rules and no place to hide from the deadly Highway Warriors who ravage the roads in machines of destruction.,0,0,Wheels of Fire,en +266314,Space,1985-04-13,600.0,,,tt0088611,,A 13-hour mini-series detailing James A. Michner's fictional account of the American space program from the years after World War II to the Apollo landings on the moon in the early 1970's.,0,0,Space,en +31462,Moving Violations,1985-04-19,90.0,,,tt0089629,A crash course in traffic school.,A group of careless and unlucky drivers are sentenced to attend traffic school to keep their records clean.,0,0,Moving Violations,en +58903,Creature,1985-05-08,97.0,,,tt0088961,It's been sleeping peacefully on a moon of Saturn for 2000 centuries ... until now!,"A crew of scientists arrives on a far, cold planet to examine archaic artifacts of unknown origin. They discover that their German enemies already have a ship there. When they seek their help after a failed landing, they only find the Germans’ bodies, obviously slaughtered by one of the archaic creatures, awoken to new life. Now the alien is after them.",750000,0,Creature,en +132961,The Caine Mutiny Court-Martial,1988-05-08,100.0,,,tt0094826,,"A full-length adaptation, originally staged as a play, of the court-martial segment from the novel ""The Caine Mutiny"".",0,0,The Caine Mutiny Court-Martial,en +19014,Rustlers' Rhapsody,1985-05-10,88.0,,,tt0089945,,"While the audience watches a black and white horse opera, a narrator's voice wonders what such a movie would be like today. Rex O'Herlehan, The Singing Cowboy, finds himself in color and enters a cliche ridden town, in which the evil cattle baron (Andy Griffith) and the new Italian cowboys (who always wear raincoats no matter how hot it gets) join forces to get him and the sheep ranchers to leave.",0,0,Rustlers' Rhapsody,en +18493,Chronos,1985-05-10,43.0,,,tt0088919,A visual and musical journey through time,Carefully picked scenes of nature and civilization are viewed at high speed using time-lapse cinematography in an effort to demonstrate the history of various regions.,0,0,Chronos,en +10925,The Return of the Living Dead,1985-05-15,91.0,,101471,tt0089907,They're Back From The Grave and Ready To Party!,"When a bumbling pair of employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to re-animate as they go on a rampage seeking their favorite food: brains!",4000000,14237000,The Return of the Living Dead,en +1369,Rambo: First Blood Part II,1985-05-21,96.0,,5039,tt0089880,"What most people call hell, he calls home.",John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he'd want to return - the jungles of Vietnam.,44000000,300400432,Rambo: First Blood Part II,en +25568,The Dream Is Alive,1985-06-01,37.0,,,tt0089050,,"Traveling on the Space Shuttle, covers training, launch, flight, deployment of LDEF from Challenger in April 1984 (STS-41C).",0,0,The Dream Is Alive,en +11645,Ran,1985-06-01,162.0,,,tt0089881,The Greatest Shakespeare Film,"Set in Japan in the 16th century (or so), an elderly warlord retires, handing over his empire to his three sons. However, he vastly underestimates how the new-found power will corrupt them, or cause them to turn on each other...and him...",11500000,4069653,乱,ja +65142,The Most Charming and Attractive,1985-06-06,89.0,,,tt0089957,,"Nadya Klyueva is a single woman. Persuaded by her friend, she decides to charm her co-worker whom she doesn't really love, but who is the most popular man around.",0,0,Самая обаятельная и привлекательная,ru +2075,Prizzi's Honor,1985-06-14,124.0,,,tt0089841,,"A professional hit man and hit woman fall in love, only to discover that they have each been hired to kill the other.",0,26657534,Prizzi's Honor,en +105,Back to the Future,1985-07-03,116.0,http://www.backtothefuture.com/movies/backtothefuture1,264,tt0088763,He's the only kid ever to get into trouble before he was born.,"Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.",19000000,381109762,Back to the Future,en +11509,Silverado,1985-07-10,127.0,,,tt0090022,Four strangers become friends. Four friends become heros. On the road to...,"Four unwitting heroes cross paths on their journey to the sleepy town of Silverado. Little do they know the town where their family and friends reside has been taken over by a corrupt sheriff and a murderous posse. It's up to the sharp-shooting foursome to save the day, but first they have to break each other out of jail, and learn who their real friends are.",26000000,0,Silverado,en +15982,The Legend of Billie Jean,1985-07-19,96.0,,,tt0089470,"When you're seventeen, people think they can do anything to you. Billie Jean is about to prove them wrong.","Average Texas teen, Billie Jean Davy, is caught up in an odd fight for justice. She is usually followed and harrased around by local boys, who, one day, decide to trash her brother's scooter for fun. The boys' father refuses to pay them back the price of the scooter. The fight for ""fair is fair"" takes the teens around the state and produces an unlikely hero.",0,3099497,The Legend of Billie Jean,en +226630,Blackout,1985-07-28,100.0,,,tt0088816,His obsession would become her nightmare.,A police officer suspects that a local husband and father who has recently undergone facial surgery because of injuries received in a car accident is in reality the same man who committed a quadruple murder several years before.,0,0,Blackout,en +52894,Thunder Alley,1985-08-01,111.0,,,tt0090168,Rock 'n' Roll . . . It's a long way to the top.,"A group of friends start a rock band, but as they start their rise in the music world, they get mixed up with drugs.",0,0,Thunder Alley,en +14370,Real Genius,1985-08-07,106.0,,,tt0089886,"Who ELSE can turn lasers into light shows, aircraft into armchairs, and high-tech into hijinks?","Chris is the top brain who just wants to party, Mitch is the 15-year-old college wiz kid. Supposedly hard at work on a lab project with a mysterious deadline, they still find time to use their genius to discover new ways to have fun.",0,13000000,Real Genius,en +72279,Madman at War,1985-08-14,100.0,,,tt0089164,,"Story about a doctor in a Libyan military hospital who is mad, but no-one wants to declare him unfit, and he becomes the captain of a fighting unit. Through him the Germans risk losing a truce with the British, and therefore kill him and give him a hero's funeral.",0,0,Scemo di guerra,fr +60008,Rosso,1985-08-26,0.0,,,tt0089937,,"Giancarlo Rosso, a Sicilian hit man, gets a job to kill someone in Finland. His new target is Maria. Rosso arrives in Helsinki, buys weapons, and comes in hers apartment. After seeing that apartment is deserted, he runs into her brother Martti and, although not speaking each other's language, together they go to find her...",0,0,Rosso,en +108634,Typhoon Club,1985-08-31,115.0,,,tt0088222,,"The movie takes place in the five-day period before, during and after a ferocious, seemingly liberating typhoon, which five of the students endure while marooned in their school gymnasium.",0,0,台風クラブ,ja +18334,Guinea Pig: Devil's Experiment,1985-09-04,43.0,,476063,tt0161634,,"A group of guys capture a young girl with the intent of hurting her. They torture her in many ways, from beating her to putting a sharp piece of needle-like metal through her eye which pierces across her retina.",0,0,ギニーピッグ 悪魔の実験,ja +187219,Joshua Then and Now,1985-09-05,119.0,,,tt0089383,Some men rise to greatness because of their upbringing. Joshua did it in spite of his.,"Based on a novel by Mordecai Richler, allegedly his autobiography, it tells the story of a Jewish writer, from his life as a young boy in Montreal to his more complicated grown-up life.",0,0,Joshua Then and Now,en +10176,The Quiet Earth,1985-09-08,91.0,,,tt0089869,The End of the World is Just the Beginning,"After a top-secret experiment misfires, a scientist may be the only man left alive in the world.",1000000,0,The Quiet Earth,en +96419,Oriana,1985-09-08,88.0,,,tt0089739,,"A young girl is sent to a South American hacienda, where she learns about the life of her reclusive aunt, Oriana.",0,0,Oriana,es +119592,Nightmare Weekend,1986-01-01,86.0,,,tt0091631,Two Days And Nights Of Relentless Terror. Who Will Survive?,"A female scientist performs experiments on three college girls that turn them into drooling, murderous mutants.",0,0,Nightmare Weekend,en +18763,Heart of the Dragon,1985-09-09,91.0,,,tt0091427,If you ever get in this much trouble you'll wish you had a brother like Jackie Chan,"Story of a cop who forsakes his dreams of sailing around the world so that he can care for his mentally retarded brother. Innocently caught up in a gangland fight, the brother is kidnapped to force the cop to turn over a police informant.",0,0,龍的心,cn +123047,Turtle Diary,1985-09-10,97.0,,,tt0090219,,"Two separate people, a man and a woman, find something very stirring about the sea turtles in their tank at the London Zoo. They meet and form an odd, but sympathetic camaraderie as they plan to steal two of the turtles and free them into the ocean.",0,0,Turtle Diary,en +280477,The House of Fools,1985-09-10,93.0,,,tt0167125,,"The feature film debut of director Marek Koterski. Thirty-year-old Adaś Miauczyński visits his parents, which ends with his nervous breakdown.",0,0,Dom wariatów,pl +57308,P.R.O.F.S,1985-09-18,0.0,,,tt0089762,,"A clique of four young teachers at a high school looks critically at their colleagues. To avoid falling in the same routine, they bring new ideas into the school lessons and play little games and pranks in their spare time -- sometimes get even more childish than their pupils. When they get opposition from the other teachers, they play tricks to get rid of them.",0,0,P.R.O.F.S,fr +21627,Crimewave,1985-09-19,83.0,,,tt0088967,Extermination is not just a business. It's a way of life.,"Fed up of his business partner, Ernest Trend hires the services of two exterminators. When things go drastically wrong and they murder the wrong man, the race is on to frame an innocent video surveillance man.",3000000,0,Crimewave,en +41166,Plenty,1985-09-20,124.0,,,tt0089816,,David Hare's account of a one-time French freedom fighter who gradually realizes that her post-war life is not meeting her expectations.,0,0,Plenty,en +215579,Family Ties Vacation,1985-09-22,90.0,,,tt0089125,,The Keaton Family goes on a Family Vacation.,0,0,Family Ties Vacation,en +7234,Wizards of the Lost Kingdom,1985-10-01,79.0,,,tt0090333,A Brave Boy And A Great Warrior Seek The Ring Of Ultimate Power,"Simon, son of the king, must flee when the empire is overthrown by the evil Shurka. Schooled in the arts of magic, he must find the Ring of Magic and the Sword of Power and defeated the wizard who killed his father. He is joined in his quest by the swordmaster Kor, his faithful protector Gulfax, and the Forest Wizard Hurla",0,0,Wizards of the Lost Kingdom,en +42045,Sweet Dreams,1985-10-02,115.0,,,tt0090110,,"Lange stunningly portrays Patsy Cline, the velvet-voiced country singer who died in a tragic plane crash.",0,0,Sweet Dreams,en +10999,Commando,1985-10-03,90.0,,,tt0088944,Somewhere... somehow... someone's going to pay.,"John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she's killed.",10000000,57500000,Commando,en +19181,Sällskapsresan II - Snowroller,1985-10-03,91.0,,112537,tt0090115,,"Stig-Helmer takes another vacation with his norwegian friend Ole. This time it's time for a skiing vacation in the Alps. Of course, Stig-Helmer has never learnt downhill skiing, but he attends a ski school. And together they manage to charm two women also on vacation.",0,8646157,Sällskapsresan II - Snowroller,sv +80368,The Doctor and the Devils,1985-10-04,93.0,,,tt0089034,It's murder shopping for Dr. Rock,Grave robbers supply a doctor with bodies to test on.,0,0,The Doctor and the Devils,en +14029,Demons,1985-10-04,88.0,,430201,tt0089013,They will make cemeteries their cathedrals and the cities will be your tombs.,"A group of people are trapped in a West Berlin movie theater infested with ravenous demons who proceed to kill and possess the humans one-by-one, thereby multiplying their numbers.",1800000,0,Dèmoni,fr +13667,Better Off Dead...,1985-10-11,97.0,,,tt0088794,I've been going to this high school for seven and a half years... I'm no dummy.,"Lane Meyer is obsessed with his girlfriend Beth and is crushed when she falls for the new captain of the ski team, Roy. After several failed suicide attempts, narrow escapes from the relentless paper boy, and nearly unbearable dinners at home with his crazy family, Lane finds a new love in French exchange student Monique Junot. Meanwhile, he must beat Roy on the slopes to regain his honor.",0,10297601,Better Off Dead...,en +1694,Re-Animator,1985-10-18,86.0,,98036,tt0089885,Herbert West has a good head on his shoulders... and another on his desk.,A dedicated student at a medical college and his girlfriend become involved in bizarre experiments centering around the re-animation of dead tissue when an odd new student arrives on campus.,900000,2023414,Re-Animator,en +9846,To Live and Die in L.A.,1985-11-01,116.0,http://www.mgm.com/#/our-titles/2024/To-Live-and-Die-in-L.A.,,tt0090180,A federal agent is dead. A killer is loose. And the City of Angels is about to explode.,A fearless Secret Service agent will stop at nothing to bring down the counterfeiter who killed his partner.,0,17307019,To Live and Die in L.A.,en +35564,The Midnight Hour,1985-11-01,94.0,,,tt0089593,,"Phil, Melissa, Mitch, Mary, and Vinnie are high school friends, who unwittingly raise the dead on Halloween night. Once the dead have returned, Pitchford Cove will never be the same again....or will it?",0,0,The Midnight Hour,en +18729,"North and South, Book I",1985-11-03,561.0,,,tt0088583,,"Two friends, one northern and one southern, struggle to maintain their friendship as events build towards the American Civil War.",0,0,"North and South, Book I",en +67342,Mr. Vampire,1985-11-07,96.0,,155421,tt0089371,,"The planned reburial of a village elder goes awry as the corpse resurrects into a hopping, bloodthirsty vampire, threatening mankind. Therefore, a Taoist Priest and his two disciples attempt to stop the terror.",0,0,殭屍先生,cn +33367,Harem,1985-11-20,113.0,,,tt0089256,,"Diane is a sophisticated trainee on the New York Stock Exchange who is suddenly kidnapped and held captive in a North African desert hideaway by Selim, an Arab mogul.",0,0,Harem,en +1374,Rocky IV,1985-11-21,91.0,,1575,tt0089927,He's facing the ultimate challenge. And fighting for his life.,"Rocky must come out of retirement to battle a gargantuan Soviet fighter named Drago, who brutally punished Rocky's friend and former rival, Apollo Creed. Seeking revenge in the name of his fallen comrade and his country, Rocky agrees to fight Drago in Moscow on Christmas, and the bout changes both fighters -- and the world.",31000000,300473716,Rocky IV,en +13380,One Magic Christmas,1985-11-22,88.0,http://movies.disney.com/one-magic-christmas,,tt0089731,,"Ginny Grainger, a young mother, rediscovers the joy and beauty of Christmas, thanks to the unshakable faith of her six-year-old daughter Abbie and Gideon, Ginny's very own guardian angel.",0,0,One Magic Christmas,en +78450,The Terrorizers,1986-01-01,109.0,,,tt0091355,,"The lives of a couple, an amateur photographer and an injured girl intertwine.",0,0,恐怖份子,zh +16082,White Nights,1985-11-22,136.0,,,tt0090319,,"An expatriate Russian dancer is on a plane forced to land on Soviet territory. He is taken to an apartment in which a black American who has married a Russian woman lives with her. He is to become a dancer for the Bolshoi again, but he wishes to escape, but can he trust the American?",0,42160849,White Nights,en +11830,Tampopo,1985-11-23,114.0,,,tt0092048,,"A pair of truck drivers happen onto a decrepit roadside fast food stop selling ramen noodles. The widowed owner, Tampopo, pleads them to help her turn her establishment into a paragon of the ""art of noodle soup making"".",0,0,タンポポ,ja +37929,Fortress,1985-11-24,88.0,,,tt0091069,"For one teacher and nine children, the lesson of the day is kill or be killed.","After being kidnapped by four, masked men, a teacher and her students rebel by plotting against the criminals.",0,0,Fortress,en +29903,Barbarian Queen,1985-11-30,70.0,,284111,tt0088771,,"Set during the days of the Roman Empire. A simple village is raided by Roman troops, and most of the people are whisked off to be slaves or killed. Three women survive and set off to liberate their people. When they arrive at the Roman city, they team up with the local underground to seek vengeance and liberation of the slaves",0,0,Barbarian Queen,en +10303,The Jewel of the Nile,1985-12-04,106.0,,89264,tt0089370,"When the going gets tough, the tough get going.","Joan Wilder is thrust back into a world of murder, chases, foreign intrigue... and love. This time out she's duped by a duplicitous Arab dignitary who brings her to the Middle East, ostensibly to write a book about his life. Of course he's up to no good, and Joan is just another pawn in his wicked game. But Jack Colton and his sidekick Ralph show up to help our intrepid heroine save the day.",25000000,96773200,The Jewel of the Nile,en +9080,Spies Like Us,1985-12-06,102.0,,,tt0090056,With spies like these who needs enemies?,"Two bumbling government employees think they are U.S. spies, only to discover that they are actually decoys for Nuclear War.",0,0,Spies Like Us,en +71125,Fool for Love,1985-12-06,106.0,,,tt0089160,,"A woman is waiting in a motel for her boyfriend, when an old flame turns up and tries to take her back to the life she is trying to leave behind.",0,0,Fool for Love,en +61991,Impudent Girl,1985-12-11,96.0,,,tt0089072,,Charlotte is being raised without a mother. She is only 13 but ready to be an adult. She meets an older boy and begins a relationship while teaching a young friend about life and learning the ropes herself.,0,0,L'Effrontée,fr +142757,Valentin and Valentina,1985-12-12,93.0,,,tt0137253,,Valentin and Valentina love each other and want to marry. But their mothers are strongly against this marriage. So strong is their hate that they can use any possible means.,0,0,Valentin i Valentina,ru +8816,My Life as a Dog,1985-12-12,101.0,,,tt0089606,,"A boy and his brother don't get along well. In order to let their ill mother rest, they are separated and sent to different relatives.",0,0,Mitt liv som hund,sv +11257,A Room with a View,1985-12-13,117.0,,,tt0091867,,"When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans?",3000000,20966644,A Room with a View,en +9056,Police Story,1985-12-14,101.0,,269098,tt0089374,"You may know the name, but the game has changed.",A virtuous Hong Kong police officer must clear his name after he is framed for murder.,0,0,警察故事,cn +358076,A Letter to Three Wives,1985-12-16,100.0,,,tt0089478,,"Three women are going on a trip that leaves incommunicado with the rest of the world and before they leave; a woman who either has a history or relationship with each of their husbands leaves them a letter that says that she is leaving with one of their husbands. As they wait to return so they could find out who it is, they each remember an important moment in their lives that involves them and their husbands...and the woman.",0,0,A Letter to Three Wives,en +606,Out of Africa,1985-12-20,161.0,,,tt0089755,Based on a true story.,"Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.",31000000,128499205,Out of Africa,en +15916,Angel's Egg,1985-12-22,71.0,,,tt0208502,,"A mysterious young girl wanders a desolate, otherworldly landscape, carrying a large egg.",0,0,天使のたまご,ja +38134,Vicious Lips,1986-01-01,84.0,,,tt0163375,They're Lost and Loose in Outer Space.,"A band finally gets the opportunity for that breakthrough gig if they can make it to an ""in"" club on another planet in time...",0,0,Vicious Lips,en +109213,The Zero Boys,1986-01-01,89.0,,,tt0092288,Dawn Of A New Breed Of Heroes,A group of friends travel to a wilderness area to play a survival game. Soon they unexpectedly find themselves in a real-life survival situation.,0,0,The Zero Boys,en +42023,Heat,1986-01-01,101.0,,,tt0093164,,"Reynolds plays an ex-soldier-of-fortunish character in Vegas, taking ""Chaperone"" jobs, fighting with the mob, and trying to get enough money together to move to Venice, Italy.",0,0,Heat,en +42021,Ginger and Fred,1986-01-01,125.0,,,tt0091113,The movie that watches television through the eyes of Fellini.,"Amelia and Pippo are reunited after several decades to perform their old music-hall act, imitating Fred Astaire and Ginger Rogers, on a TV variety show.",0,0,Ginger e Fred,it +241302,The Importance of Being Earnest,1986-01-01,110.0,,,tt0091262,,Adaptation from the play by Oscar Wilde.,0,0,The Importance of Being Earnest,en +288413,The Ernest Film Festival,1986-01-01,55.0,,,tt0148110,,"Before he went to camp, before he went to jail, before he saved Christmas, before he was scared stupid, before he went to Africa and before he was in the army, Ernest P. Worrell hosted a variety of commercials, and a lot of them are here on this video. He even makes public service announcements. It also features many of his bloopers.",0,0,The Ernest Film Festival,en +27886,Slaughter High,1986-01-01,90.0,,,tt0091969,Where the student body is going to pieces.,"Eight different people are invited to their 10-year high school reunion at their now-closed down high school where a former student, disfigured from a prank gone wrong, is there to seek revenge.",0,0,Slaughter High,en +79599,The Hunchback of Notre-Dame,1986-01-01,52.0,,,tt0787031,,"This is an adaptation of the novel ""The Hunchback of Notre Dame"" by Victor Hugo, produced by Burbank Films Australia.",0,0,The Hunchback of Notre-Dame,en +82395,My Pet Monster,1986-01-01,60.0,,,tt0400673,,"Synder, the historian who has spent many years trying to unlock the powers of the statue, wishes to capture Max for validation of his life's work.",0,0,My Pet Monster,en +43211,7 Kilos in 7 Days,1986-01-01,105.0,,,tt0091925,,Two not very clever young doctors open a fitness center and promise to let people lose seven kilos in seven days. When the enterprise fails they open a gourmet restaurant.,0,0,7 chili in 7 giorni,it +32031,Let's Get Harry,1986-01-01,102.0,,,tt0091400,An adventure about the hero in all of us,"Harry Burck has been kidnapped by South American terrorists, and when the US Government refuses to intervene, Harry's friends decide to take matters into their own hands!",0,0,Let's Get Harry,en +58011,Let's Hope It's a Girl,1986-01-01,120.0,,,tt0090055,,,0,0,Speriamo che sia femmina,it +117509,Wimps,1986-01-01,94.0,,,tt0092217,Their time has come!,"A nerdy college student is pressured to help a jock write love letters to the campus beauty, even though the nerd is in love with her himself.",0,0,Wimps,en +193650,Heathcliff: The Movie,1986-01-17,73.0,,,tt0104401,Heathcliff's funniest and most exciting adventure!,"One rainy day, Heathcliff babysits and recounts old stories while his nephews are relucatantly forced to listen.",0,0,Heathcliff: The Movie,en +13853,The Clan of the Cave Bear,1986-01-17,98.0,,,tt0090848,"At The Dawn Of Mankind, A Woman Led The Way.","Natural changes have the clans moving. Iza, medicine woman of the ""Clan of the Cave Bear"" finds little Ayla from the ""others""' clan - tradition would have the clan kill Ayla immediately, but Iza insists on keeping her. When the little one finds a most needed new cave, she's allowed to stay - and thrive.",15000000,0,The Clan of the Cave Bear,en +17465,Youngblood,1986-01-31,110.0,,,tt0092272,The ice... The fire... The fight... To be the best.,A skilled young hockey prospect hoping to attract the attention of professional scouts is pressured to show that he can fight if challenged during his stay in a Canadian minor hockey town. His on-ice activities are complicated by his relationship with the coach's daughter.,0,0,Youngblood,en +83079,Crystal Heart,1986-02-01,103.0,,,tt0088952,,"A 22 year old man who has lived inside a crystal room because of a rare illness, meets an up and coming rock star, and the two fall in love.",0,0,Crystal Heart,en +29355,Wildcats,1986-02-14,106.0,,,tt0092214,Her dream was to coach high school football. Her nightmare was Central High.,"Molly is a high school track coach who knows just as much about football as anyone else on the planet. When a football coach's position becomes vacant, she applies for the job, despite snickers from fellow staff members and her former husband.",0,0,Wildcats,en +9542,The Hitcher,1986-02-21,97.0,,476054,tt0091209,The terror starts the moment he stops.,"A young man who escaped the clutches of a murderous hitch-hiker is subsequently stalked, framed for the hitcher's crimes, and has his life made into hell by the same man he escaped.",6000000,5844868,The Hitcher,en +96159,Chameli Ki Shaadi,1986-02-21,137.0,,,tt0090812,,"Charandas, a young man in a village has no aim in life except to be a pehelwaan (wrestler). He takes an oath that he will not court or marry a girl until he hits the age of forty. But things changes when Charandas meets Chameli and falls in love with her. A hilarious take on the caste system of India, as both of them come from different castes and try hard to marry each other.",0,0,चमेली की शादी,hi +250638,Witch from Nepal,1986-02-27,89.0,,,tt0089861,,A Hong Kong man goes on vacation to Nepal where a local tribe imbues him with magical powers which he must use to fight a growing evil.,0,0,Qi yuan,cn +11415,House,1986-02-28,93.0,,102782,tt0091223,"Ding dong, You’re dead.","Roger Cobb is a author who has just separated from his wife. He moves into a new house and tries to work on a novel based on his experiences in the Vietnam War. Strange things start happening around him; little things at first, but as they become more frequent, Cobb becomes aware that the house resents his presence.",3000000,0,House,en +307020,Tarzan Rıfkı,1986-03-12,83.0,,,tt0253790,,A story about a poor and guilt guy who is being used by mafia for dirty work.,0,0,Tarzan Rıfkı,en +10466,The Money Pit,1986-03-15,91.0,,,tt0091541,For everyone who's ever been deeply in Love or deeply in debt.,"After being evicted from their Manhattan apartment, a couple buys what looks like the home of their dreams – only to find themselves saddled with a bank-account-draining nightmare. Struggling to keep their relationship together as their rambling mansion falls to pieces around them, the two watch in hilarious horror as everything – including the kitchen sink – disappears into the 'Money Pit'.",10000000,54999651,The Money Pit,en +259616,Die Weihnachtsklempner,1986-03-17,,,,tt0092196,,,0,0,Die Weihnachtsklempner,de +448879,Приключения Домовёнка,1986-03-25,,,,tt2327471,,,0,0,Приключения Домовёнка,ru +13346,Lucas,1986-03-28,108.0,,,tt0091445,It's about falling in love. For the first time.,"A socially inept fourteen year old experiences heartbreak for the first time when his two best friends -- Cappie, an older-brother figure, and Maggie, the new girl with whom he is in love -- fall for each other.",6000000,8200000,Lucas,en +215875,Violets Are Blue,1986-04-04,88.0,,,tt0092173,,"After fifteen years of traveling around the world Gussie (Spacek), a famous photographer, returns to the Maryland coastal resort where she grew up",0,0,Violets Are Blue,en +27270,America 3000,1986-04-08,84.0,,,tt0090630,Back to the beginning,"900 years after a nuclear war in the USA, mankind is back to the stone ages. Amazon women rule the tribes, while the men are weak and dumb - either kept as slaves or living wild as animals. Only Korvis and a friend are intelligent enough to flee and found a tribe of their own. Will they manage to teach the women love to men again?",2000000,0,America 3000,en +69061,Dr. Otto and the Riddle of the Gloom Beam,1986-04-09,97.0,,,tt0090968,,Ernest P. Worrell grows a hand out of the top of his head and tries to destroy the world.,0,0,Dr. Otto and the Riddle of the Gloom Beam,en +151937,Return to Mayberry,1986-04-13,95.0,,,tt0091846,,"After being away for awhile, Andy Taylor returns home to Mayberry to visit Opie, now an expectant father. While there he ends up helping Barney Fife mount a campaign for sheriff.",0,0,Return to Mayberry,en +202337,Welcome to 18,1986-04-18,91.0,,,tt0092199,From the Prom to the Pen...,"Three young women looking for adventure get jobs on a dude ranch. The film follows the adventures of three high school girls the summer after they graduate. After their jobs at a dude ranch fail to work out, the girls head to Lake Tahoe where they meet Talia (Cristen Kauffman). Talia's boyfriend Roscoe then helps the girls get a job at a casino which leads to trouble.",0,0,Welcome to 18,en +271664,Alex: The Life of a Child,1986-04-23,100.0,,,tt0090602,,"Based on true events, 'Alex: The Life of a Child' follows former 'Sports Illustrated' writer Frank Deford and his wife Carole when their happy, all-American family is rocked to the core when their baby daughter Alex is diagnosed with Cystic Fibrosis. While CF sufferers were almost certainly doomed to an early death in the Seventies, Alex grew into a child who showed remarkable courage and strength in face of her illness. Her loving family were quick to rally around her, determined to show the same bravery as the little girl as they supported and cherished her through life and struggled to move on after her death at the tragically young age of eight.",0,0,Alex: The Life of a Child,en +1554,Down by Law,1986-05-01,107.0,,,tt0090967,It's not where you start - It's where you start again.,The story of three men from completely different tracks who all meet in a Louisiana prison cell and eventually begin an awkward journey together.,0,0,Down by Law,en +191486,Поезд вне расписания,1986-05-12,,,,tt0265567,,,0,0,Поезд вне расписания,ru +62768,Flying,1986-05-14,96.0,,,tt0091065,...All things are possible,"TV-generation feel good story about a teenage gymnast aiming for the championship despite an abusive stepfather, an ailing mother, and injury. Reeves is notable as the supportive boyfriend.",0,0,Flying,ab +24657,The Sacrifice,1986-05-14,149.0,,,tt0091670,,"Alexander, a journalist, philosopher and retired actor, celebrates a birthday with friends and family when it is announced that nuclear war has begun.",0,300653,Offret,sv +26679,Spookies,1986-05-14,85.0,,,tt0090057,They want your blood!,"Taking a wrong turn, travelers find themselves trapped in a mysterious house. One horror after another threatens them as the sorcerer who lives within needs sacrifices to give eternal life to his beautiful bride.",0,0,Spookies,en +26558,Combat Shock,1986-05-14,92.0,,,tt0090866,"Fighting, killing, maiming. Agent Orange and the torture cages were the easy part!...","A dangerously disturbed Vietnam veteran struggles with life 15 years after his return home, and slowly falls into insanity from his gritty urban lifestyle.",40000,0,Combat Shock,en +744,Top Gun,1986-05-16,110.0,,,tt0092099,Up there with the best of the best.,"For Lieutenant Pete 'Maverick' Mitchell and his friend and Co-Pilot Nick 'Goose' Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. A tragedy, as well as personal demons, threaten Pete's dreams of becoming an Ace pilot.",15000000,356830601,Top Gun,en +11133,Poltergeist II: The Other Side,1986-05-23,91.0,,10453,tt0091778,They're back.,"The Freeling family move in with Diane's mother in an effort to escape the trauma and aftermath of Carol Anne's abduction by the Beast. But the Beast is not to be put off so easily and appears in a ghostly apparition as the Reverend Kane, a religeous zealot responsible for the deaths of his many followers. His goal is simple - he wants the angelic Carol Anne.",19000000,40996665,Poltergeist II: The Other Side,en +6978,Big Trouble in Little China,1986-05-30,99.0,http://www.theofficialjohncarpenter.com/big-trouble-in-little-china/,,tt0090728,Adventure doesn't come any bigger!,"When trucker, Jack Burton agreed to take his friend, Wang Chi to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for immortal sorcerer, Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.",25000000,11000000,Big Trouble in Little China,en +14510,From Beyond,1986-06-05,86.0,,,tt0091083,Humans are such easy prey.,"A group of scientists have developed the Resonator, a machine which allows whoever is within range to see beyond normal perceptible reality. But when the experiment succeeds, they are immediately attacked by terrible life forms.",4500000,1261000,From Beyond,en +70966,Courier,1986-06-06,88.0,,,tt0091364,,"Ivan Mirosnikov, a cheeky young man in the Gorbachev era, is trying to figure out what to do with his life (he's not in college, and the 2-year mandatory military service is looming large ahead of him). Meanwhile, he lives with his divorced mother, and works as a courier at a Russian newspaper. Through his job, he meets patronizing Professor Kuznetzov and his rebellious daughter Katya. To annoy the professor, Ivan claims to have an affair with Katya. To his surprise, Katya backs his story up.",0,0,Курьер,ru +13766,SpaceCamp,1986-06-06,107.0,,,tt0091993,The stars belong to a new generation.,"Andie Bergstrom, an astronaut eagerly awaiting her first trip to space, runs a summer camp for teenagers with her NASA-employed husband, Zach. One night during an engine test, Andie and four teenage campers are accidentally shot into space. Together, the group -- which includes Kathryn, a pilot-in-training, and Tish, a ditz with a perfect memory -- must work together to operate the spacecraft and return home.",18000000,9697739,SpaceCamp,en +30163,Fugitives,1986-06-06,95.0,,,tt0091093,,"Coming out from jail, Lucas has decided to change his life and behave like a good citizen. But when he is taken hostage in a bank by a hare-brained robber, no cops can believe he is not part of the action.",0,0,Les Fugitifs,fr +121749,Is It Easy to Be Young?,1986-06-06,83.0,,,tt0126711,,Portrayal of rebellious teenagers growing up under Communist rule in Latvia.,0,0,Vai viegli būt jaunam?,lv +17288,Rampage,1986-06-12,73.0,,,tt1355207,Get RambOWNED!,A Turkish commando must infiltrate and capture a group of terrorists living in the mountains.,0,0,Korkusuz,tr +14088,Barefoot Gen 2,1986-06-14,85.0,,14095,tt0171357,,"Three years after the Hiroshima bombing, a teenager helps a group of orphans to survive and find their new life.",0,0,Hadashi no Gen 2,ja +8856,"The Karate Kid, Part II",1986-06-18,113.0,,8580,tt0091326,"This time, the combat is real.","Mr. Miyagi and Daniel take a trip to Okinawa to visit Mr. Miyagi's dying father. After arriving Mr. Miyagi finds he still has feelings for an old love. This stirs up trouble with an old rival who he originally left Okinawa to avoid. In the mean time, Daniel encounters a new love and also makes some enemies.",113,115103979,"The Karate Kid, Part II",en +33345,Under the Cherry Moon,1986-07-02,98.0,,,tt0092133,See It - Hear It - Feel It - Live It,"Two friends from Miami are in the French Riviera enjoying life by scamming money off of rich women. One day, they read about a young woman set to inherit $50 million from her father. At first, Tricky has Christopher Tracy talked into romancing her for her money, but as he gets to know her, Christopher falls in love with her. This love comes between the brothers, and Tricky tells about the plan.",0,10090429,Under the Cherry Moon,en +34223,Vamp,1986-07-18,93.0,,,tt0092147,A Frightening Comedy,Two fraternity pledges go to a sleazy bar looking for strippers to entertain their college friends.,1900000,4790926,Vamp,en +51881,The Parent Trap II,1986-07-26,81.0,,216395,tt0091721,Hayley Mills is at it again !,Two best friends plot to get their single parents together to stop one of them from moving to New York.,0,0,The Parent Trap II,en +48609,A Fine Mess,1986-08-08,90.0,,,tt0091051,A Hilarious New Comedy,Two friends an actor and a chef discover a plot to fix a horse race and try to capitalize on it. But also have to deal with the two men who fixed it who are trying to silence them. And there's also the mob boss whom the two guys work for who planned the fixing thing whose wife is having an affair with the actor.,0,6029824,A Fine Mess,en +18282,One Crazy Summer,1986-08-08,89.0,,,tt0091680,"They're out of school, out on Nantucket, and out of their minds. With this crowd, anything can happen!",An aspiring teenage cartoonist and his friends come to the aid of a singer trying to save her family property from developers.,0,0,One Crazy Summer,en +71444,M.D. Geist,1986-08-13,45.0,,166018,tt0215948,,"Geist (the main character) is MD-02, a Most Dangerous Soldier, genetically engineered to function as a killing machine, but every one of the MDS units went homicidally insane. As a result Geist was placed in suspended animation in a stasis pod orbiting the planet Jerra until it crashed several years later, awakening him and bringing him into another war on the planet.",0,0,装鬼兵MDガイスト,ja +9426,The Fly,1986-08-15,96.0,,109609,tt0091064,Be afraid. Be very afraid.,"When Seth Brundle makes a huge scientific and technological breakthrough in teleportation, he decides to test it on himself. Unbeknownst to him, a common housefly manages to get inside the device and the two become one.",15000000,60629159,The Fly,en +24086,The Boy Who Could Fly,1986-08-15,114.0,,,tt0090768,A very special love. And a very special magic. But is it real magic or just an illusion?,"Milly and Louis, and their recently-widowed mom, Charlene, move to a new neighborhood. Once there, they all deal with a variety of personal problems, but Milly finds a friend in Eric, her autistic next door neighbor. Eric has a fascination with flight, and as the story progresses, he exerts an enthralling force of change on all those around him.",0,7177431,The Boy Who Could Fly,en +13925,Luxo Jr.,1986-08-17,2.0,http://www.pixar.com/short_films/Theatrical-Shorts/Luxo-Jr.,,tt0091455,,"A baby lamp finds a ball to play with and it's all fun and games until the ball bursts. Just when the elder Luxo thinks his kid will settle down for a bit, Luxo Jr. finds a ball ten times bigger.",0,0,Luxo Jr.,en +15762,Night of the Creeps,1986-08-21,88.0,,,tt0091630,The good news is your date is here. The bad news is.. he's dead.,"In 1959, an alien experiment crashes to earth and infects a fraternity member. They freeze the body, but in the modern day, two geeks pledging a fraternity accidentally thaw the corpse, which proceeds to infect the campus with parasites that transform their hosts into killer zombies.",0,0,Night of the Creeps,en +235,Stand by Me,1986-08-22,89.0,,,tt0092005,"For some, it's the last real taste of innocence, and the first real taste of life. But for everyone, it's the time that memories are made of.","After the death of a friend, a writer recounts a boyhood journey to find the body of a missing boy.",8000000,52287414,Stand by Me,en +29492,Reform School Girls,1986-08-22,94.0,,,tt0091836,So young... So bad... So what?!,Jenny is sent to a women's reform school. It is run by evil warden Sutter and her henchwoman Edna. Jenny will stop at nothing to escape but she also has to deal with Charlie the bully.,0,2510433,Reform School Girls,en +54898,The Green Ray,1986-08-29,98.0,,,tt0091830,,A lonely Parisian woman comes to terms with her isolation and anxieties during a long summer vacation.,0,0,Le rayon vert,fr +103590,The Legend of Suram Fortress,1986-09-08,88.0,,,tt0087606,,A film version of a well-known Georgian folk-tale. A young boy has to be immured into the walls of a fortress in order to stop it from crumbling to pieces.,0,0,ამბავი სურამის ციხისა,ka +1890,Children of a Lesser God,1986-09-13,119.0,,,tt0090830,Love has a language all of its own.,"James is a new speech teacher at a school for the deaf. He falls for Sarah, a pupil who decided to stay on at the school rather than venture into the big bad world. She shuns him at first, refusing to read his lips and only using signs. Will her feelings change over time?",0,31853080,Children of a Lesser God,en +93263,The Men's Club,1986-09-19,101.0,,,tt0091508,Growing up is hard to do.,"Seven men have a group session and share their feelings on women, love, life and work.",0,0,The Men's Club,en +47342,Radioactive Dreams,1986-09-19,98.0,,,tt0091818,"Meet Phillip and Marlowe, the post-nuclear private eyes. They're looking for good times and fast women. Their first case could be the world's last.","After an atomic war Phillip Hammer and Marlowe Chandler have spent 15 years on their own in an bunker, stuffed with junk from the 40s and old detective novels. Now, 19 years old, they leave their shelter to find a world full of mutants, freaks and cannibals. They become famous detectives in the struggle for the two keys that could fire the last nuclear weapon.",0,0,Radioactive Dreams,en +36264,The Deserters,1986-09-22,155.0,,,tt0092713,,,0,0,C.K. Dezerterzy,pl +147590,100 Ways to Murder Your Wife,1986-09-24,92.0,,,tt0091935,,"Two men, Yun-Fat Chow and Kenny Bee, are both married and unhappy. Together they make diverse plans to murder their wifes.",0,0,殺妻二人組,cn +10692,Henry: Portrait of a Serial Killer,1986-09-24,83.0,,143755,tt0099763,The shocking true story of Henry Lee Lucas.,"Henry likes to kill people, in different ways each time. Henry shares an apartment with Otis. When Otis' sister comes to stay, we see both sides of Henry: ""the guy next door"" and the serial killer.",111000,0,Henry: Portrait of a Serial Killer,en +156954,Die Reise,1986-09-25,0.0,,,tt0091839,,,0,0,Die Reise,de +91691,Ga-ga: Glory to the Heroes,1986-09-26,84.0,,,tt0091096,,"In the 21st century, prisoners aboard penitentiary space ships explore unknown worlds. Scope, one of the prisoners is sent on a planet though to be lifeless, until he found ""Humans"" on it.",0,0,"Ga, Ga - Chwała bohaterom",pl +83229,Hovering Over the Water,1986-10-02,143.0,,,tt0092306,,"Laura Rossellini, a widow from Rome, vacations on the Algarve coast one hot summer. One day while sunbathing, she finds a wounded man named Robert drifting in the surf on a rubber raft. She takes him home, and, after he is revived, learns his story. As they talk, their mutual attraction grows, until a group of armed men suddenly arrives looking for Robert.",0,0,À Flor do Mar,pt +10013,Peggy Sue Got Married,1986-10-05,103.0,,,tt0091738,"Knowing what you know now, what would you do differently?","Peggy Sue faints at a Highschool reunion. When she wakes up she finds herself in her own past, just before she finished school.",18000000,41382841,Peggy Sue Got Married,en +11873,The Color of Money,1986-10-07,119.0,,387219,tt0090863,The Hustler isn't what he used to be. But he has the next best thing. A kid who is.,"Former pool hustler ""Fast Eddie"" Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent's showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.",13800000,52293982,The Color of Money,en +245324,Egomania: Island Without Hope,1986-10-24,84.0,,,tt0090998,The Greatest Love Drama of All Time,,0,0,Egomania - Insel ohne Hoffnung,de +10857,When the Wind Blows,1986-10-24,80.0,,,tt0090315,...It's No Fairy Tale,"With the help of government-issued pamphlets, an elderly British couple build a shelter and prepare for an impending nuclear attack, unaware that times and the nature of war have changed from their romantic memories of World War II",0,5274,When the Wind Blows,en +17258,The Pick-up Artist,1987-09-18,81.0,,,tt0093737,The Pick-Up Artist... has finally met his match.,A womanizer meets his match when he falls for the daughter of a gambling addict who is in debt to the mob.,15000000,13290368,The Pick-up Artist,en +48180,Amazons,1986-10-26,87.0,,,tt0090627,,"An epic from the dark ages about the legendary lost tribe of warrior women! The girls fly into danger, come up against fierce tribes, fall prey to sorcery, put to rest a family rivalry of centuries past and battle to victory!",0,0,Amazons,en +48841,Vengeance: The Story of Tony Cimo,1986-11-01,90.0,,,tt0092159,,A true story of the lives of a family from South Carolina torn apart after the murder of Bill and Myrtle Moon. Although the killer is caught the judicial system takes too long for the Moon's devoted stepson and he takes matter into his own hands.,0,0,Vengeance: The Story of Tony Cimo,en +38916,Modern Girls,1986-11-07,84.0,,,tt0091534,Never stand in line. Never pay for your own drinks. Never stand next to a dweeb.,"Margo, Kelly, and CeCe have three things in common: they're roomates, they're gorgeous, and they're hooked on the glamour and excitement of L.A.'s rock and roll night life. When they get mixed up with a rock star, an arrogant ex-boyfriend, a pseudo-sadist, and the nicest nerd in The City Of Angels, it's a full night to say the least!",0,0,Modern Girls,en +276819,Dot and the Whale,1986-11-10,75.0,http://www.yoramgrossfilms.com.au/dot/dot6.html,,tt0090961,,"Dot and her Dolphin friends are playing along the shore one day. Soon they come across a very sad Whale named Tonga, who has washed up onto the beach. Tonga is in danger of being harmed by evil Whale-hunters and a cruel fish shop owner! Seeing that her new friend is in trouble, Dot just might have a few clever ideas to go about helping.",0,0,Dot and the Whale,en +67693,Jocks,1986-11-14,91.0,http://www.crownintlpictures.com/hktitles.html,,tt0093315,Champions aren't born ... they're made!,"The coach of a college tennis team is given an ultimatum: put together a winning team, or else.",0,0,Jocks,en +154442,Tree Without Leaves,1986-11-15,105.0,,,tt0091823,,"Haru, an aging scriptwriter, has isolated himself somewhere in the woods of Nagano to work on his first novel. As the last surviving member of his kin, he intends to chronicle the family he grew up in.",0,0,落葉樹,ja +31947,King Kong Lives,1986-11-21,105.0,,135498,tt0091344,America's biggest hero is back... and he is not happy.,Kong falls from the twin towers and he appears to be alive!,10000000,4711220,King Kong Lives,en +4978,An American Tail,1986-11-21,80.0,,8783,tt0090633,"Meet Fievel. In his search to find his family, he discovered America.","A young mouse named Fievel and his family decide to migrate to America, a ""land without cats,"" at the turn of the 20th century. But somehow, Fievel ends up in the New World alone and must fend off not only the felines he never thought he'd have to deal with again but also the loneliness of being away from home.",9000000,84542002,An American Tail,en +11120,The Mosquito Coast,1986-11-26,119.0,,,tt0091557,He went too far.,"Allie Fox, an American inventor exhausted by the perceived danger and degradation of modern society, decides to escape with his wife and children to Belize. In the jungle, he tries with mad determination to create a utopian community with disastrous results.",0,14302779,The Mosquito Coast,en +47670,The Christmas Toy,1986-12-06,50.0,,,tt0099263,,"The Christmas Toy is a 1986 Emmy Award nominated television film produced by The Jim Henson Company, featuring Jim Henson's Muppets. Rugby the Tiger who remembers how he was the Christmas Toy last year, and thinks he's going to be unwrapped again this year.",0,0,The Christmas Toy,en +64239,Kamikaze,1986-12-10,90.0,,,tt0091322,,A scientist is fired from his job and bored with doing nothing at home he goes crazy and invents a system which allows him to reach through the airwaves and transform live TV cameras into weapons to kill the people he hates the most - TV presenters.,0,0,Kamikaze,fr +8388,¡Three Amigos!,1986-12-12,102.0,,,tt0092086,"They're Down On Their Luck And Up To Their Necks In Senoritas, Margaritas, Banditos And Bullets!","Three unemployed actors accept an invitation to a Mexican village to replay their bandit fighter roles, unaware that it is the real thing.",25000000,0,¡Three Amigos!,en +30994,Dogs in Space,1986-12-18,103.0,,,tt0092904,,"The place is Melbourne, Australia 1978. The punk phenomenon is sweeping the country and Dogs In Space, a punk group, are part of it. In a squat, in a dodgy suburb, live a ragtag collection of outcasts and don't-wanna-be's who survive on a diet of old TV space films, drugs and good music. And the satellite SKYLAB could crash through their roof at any moment...",0,0,Dogs in Space,en +10776,Little Shop of Horrors,1986-12-19,94.0,,,tt0091419,Don't feed the plants.,"Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day as Seymour is seeking a new mysterious plant, he finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.",25000000,38748395,Little Shop of Horrors,en +108312,Native Son,1986-12-24,111.0,,,tt0091613,,"In 1940s Chicago, a young black man takes a job as a chauffeur to a white family, which takes a turn for the worse when he accidentally kills the teenage daughter of the couple and then tries to cover it up.",2000000,1301121,Native Son,en +31700,Cold Steel,1987-01-01,91.0,,,tt0092767,,"Detective Johnny Modine gets his Christmas celebration spoiled with news of his father's death, which seems the work of psychopathic junkies ...",0,0,Cold Steel,en +32595,Howling III: The Marsupials,1987-01-01,94.0,,,tt0093227,,"A strange race of human-like marsupials appear suddenly in Australia, and a sociologist who studies these creatures falls in love with a female one. Is this a dangerous combination?",0,0,Howling III: The Marsupials,en +19958,The Year My Voice Broke,1987-01-01,105.0,http://colsearch.nfsa.afc.gov.au/nfsa/search/display/display.w3p;adv=no;page=0;query=The%20Year%20My,,tt0094347,,"Coming-of age feature, set in a New South Wales country town in the 1960s, about a 15 year-old boy. It follows his loves and how he copes with life's problems such as death and departure.",0,0,The Year My Voice Broke,en +66659,Equalizer 2000,1987-01-01,85.0,,,tt0091012,The Final War Is Over. The Battle's Just Begun.,"In a bleak, postnuclear future world, warring factions struggle to claim the Equalizer 2000, the one weapon powerful enough to guarantee survival.",0,0,Equalizer 2000,en +113119,Fugitive Alien,1987-01-01,102.0,,,tt0128224,Marauding Wolf Raiders in Space Chase to the Death.,An alien is pursued as a traitor by his own race because he refuses to kill humans.,0,0,Fugitive Alien,en +22477,September,1987-01-01,82.0,,,tt0093940,,"At a summer house in Vermont, neighbor Howard falls in love with Lane, who's in a relationship with Peter, who's falling for Stephanie, who's married with children.",0,0,September,en +96958,Something Has Happened,1987-01-01,24.0,,,tt0316342,,A look at the true origins of the AIDS virus and the effect of the deadly disease upon a modern world.,0,0,Någonting har hänt,en +107104,Beyond the Rising Moon,1988-05-14,84.0,,,tt0092648,,An alien spaceship is being sought by various factions on Earth. A female cyborg and a rogue trader team up to stop evil forces from taking over the ship.,0,0,Beyond the Rising Moon,en +276123,A Tale from the Past,1987-01-01,86.0,,,tt0093720,,"To meet the desires and needs of the parents, a marriage is arranged between 14-year-old Gjino and 20-year-old Marigo. Gjino reluctantly obeys, but Marigo, who loves another, tries various devious methods to free herself from this bizarre marriage agreement.",0,0,Përrallë nga e kaluara,sq +71329,Yeelen,1987-01-01,105.0,,,tt0094349,,A young man with magical powers journeys to his uncle to request help in fighting his sorcerer father.,0,0,Yeelen,bm +352024,A Gentle Spirit,1987-01-01,12.0,,,tt0242590,,"An impressionistic retelling of Dostoyevsky's ""A Gentle Spirit""",0,0,Lagodna,en +47715,Intervista,1987-01-01,102.0,,,tt0093267,,"Federico Fellini welcomes us into his world of film making with a mockumentary about his life in film, as a Japanese film crew follows him around.",0,0,Intervista,it +47444,Time of the Apes,1987-01-01,97.0,,,tt0094153,,A female scientist and two children are accidentally transported into a future dominated by primates.,0,0,Time of the Apes,en +69019,The Amazing Mr. Bickford,1987-01-01,52.0,,,tt0215511,,Several pieces of Frank Zappa's music are set against clay animation by Bruce Bickford.,0,0,The Amazing Mr. Bickford,en +103216,I picari,1987-01-01,121.0,,,tt0095866,,The adventures of a couple of scoundrels in the Spain of the 16th century.,0,0,I picari,it +238456,Een Monument voor een Gorilla,1987-01-01,0.0,,,tt1190135,,,0,0,Een Monument voor een Gorilla,nl +58615,Noi uomini duri,1987-01-01,0.0,,,tt0093645,,,0,0,Noi uomini duri,it +32058,Making Mr. Right,1987-01-01,98.0,,,tt0093477,,"A reclusive scientist builds a robot that looks exactly like him to go on a long term space mission. Since the scientist seems to lack all human emotion he is unable to program them into his android and an eccentric woman is hired to ""educate"" the robot on human behavior. In the end she falls in love ... but is the robot or the Dr. Mr Right?",0,0,Making Mr. Right,en +325780,Sottozero,1987-01-01,,,,tt0094010,,,0,0,Sottozero,it +93116,Valet Girls,1987-01-01,82.0,,,tt0094237,PARK IT WITH THE BEST!,A young girl who aspires to a singing career gets herself and her best friend a job as valet parking girls at a Malibu party in order to meet people who can help them achieve their dreams.,0,0,Valet Girls,en +28851,Video Violence,1987-01-01,90.0,,,tt0094262,Could this happen at your video store?,"A husband and wife open a video store in a new town, and come to find out that the locals only rent horror films and the ""occasional triple X'er"", and make their own snuff videos.",0,0,Video Violence,en +36868,The Jetsons Meet the Flintstones,1987-01-01,89.0,,,tt0192175,,"Elroy Jetson invents a time machine that takes him back to prehistoric times, where he meets the Flintstone family.",0,0,The Jetsons Meet the Flintstones,en +252096,"Goodbye, Mr. President",1987-01-16,87.0,,,tt0093290,,"Asko Mertanen is a waiter who is very interested in shooting. He gets fed up how the things are run in Finland, so he thinks that the best way to change them is to shoot the Finnish president.",0,0,Jäähyväiset presidentille,fi +23599,Wanted: Dead or Alive,1987-01-16,104.0,,,tt0094293,Nick Randall is a loner. A legend. A bounty hunter. He's the best there is at the job he hates.,"This movie features a character who is supposed to be the descendant of the character played Steve McQueen in the television series of the same name. And like McQueen's Josh Randall, Hauer's Nick Randall is also a bounty. But also an ex-CIA operative, who is asked by his former employer to help them track down a terrorrist, Malak Al Rahim, who is in the country, and has already made a move. But he is also looking for Randall, and the people, whom Randall is working for, is telling Malak, where he can find Randall.",0,0,Wanted: Dead or Alive,en +20242,Outrageous Fortune,1987-01-30,100.0,,,tt0093690,"The CIA is trailing them, the KGB is tracking them, the phone company is tracing them, the police are chasing them, the cowboys are herding them, and the Indians are hunting them. Are they going to fall for all of that?”","Refined actress Lauren Ames finally has a chance to study with the great theatre professor Stanislav Korzenowski. Sandy Brozinsky, a brash, loud actress, decides through happenstance to also study with Korzenowski. The two women end up dating the same man (who turns out to be a double agent) and follow him across the country to force him to choose between them.",0,0,Outrageous Fortune,en +44658,Dark Eyes,1987-02-01,117.0,,,tt0093664,"Aboard a ship early in the 20th-century, a middle-aged Italian tells his story of love to a Russian.","Aboard a ship early in the 20th-century, a middle-aged Italian tells his story of love to a Russian. In a series of flashbacks filmed almost entirely in creams, whites, and ochers, the clownish and superfluous Romano Patroni leaves his wife's opulent home to visit a spa where he falls in love with a Russian woman whose marriage is a horror. He pursues her into the Russian heartland and returns to Italy resolved to leave his wife and marry his love. His amazed and appreciative Russian listener then narrates a shorter story.",0,0,Очи черные,ru +17282,Rage of Honor,1987-02-01,92.0,,,tt0093820,,"A Japanese cop, Shiro, and his partner Ray are after a bunch of drug dealers. But they are betrayed by an insider and Ray is killed. Shiro follows the murderer, a sadistic drug lord, up to Singapore.",0,0,Rage of Honor,en +37189,Four Adventures of Reinette and Mirabelle,1987-02-04,95.0,,,tt0090565,,"Two young girls meet, Reinette from the countryside and Mirabelle from Paris, and decide to take a flat together in Paris where they attend University. Four successive stories about their daily lives illustrate the very different views, characters and relation to the world of these two friends.",0,0,4 aventures de Reinette et Mirabelle,fr +70199,Dead of Winter,1987-02-06,100.0,,,tt0092842,,"A fledgling actress is lured to a remote mansion for a screen-test, soon discovering she is actually a prisoner in the middle of a blackmail plot.",0,2413427,Dead of Winter,en +24081,From the Hip,1987-02-06,111.0,,,tt0093051,Getting To The Top Means Working Like A Dog!,"Apprentice lawyer Robin Weathers turns a civil suit into a headline grabbing charade. He must reexamine his scruples after his shenanigans win him a promotion in his firm, and he must now defend a college professor who is appearantly guilty of murder.",0,9518342,From the Hip,en +2115,Light of Day,1987-02-06,107.0,,,tt0093415,,"Fox and Jett play a brother and sister who are lead performers in a rock band, The Barbusters, in Cleveland, Ohio. The sister, Patti Rasnick, is an unmarried mother and has a troubled relationship with her own mother, who is deeply religious. Estranged from her parents and struggling to make ends meet, Patti decides to dive headlong into a carefree rock music lifestyle. The brother, Joe Rasnick, pulls away from rock music to provide some stability for his young nephew. It takes a family crisis to bring Patti back home and force her to face the prickly past with her mother.",0,0,Light of Day,en +9396,Crocodile Dundee II,1988-05-19,110.0,,9332,tt0092493,The world's favourite adventurer is back for more! much more!,Australian outback expert protects his New York love from gangsters who've followed her down under.,0,239606210,Crocodile Dundee II,en +30198,The Red Spectacles,1987-02-07,116.0,,,tt0228456,,"Summer 1995. With the arrival of the ""Age of Cats"", the former Kerberos police unit is now disbanded. However one member remains, a stray dog who returns to his old roost after a three-years exile. This wild dog no longer has a master, but now the ""Young Lady of Fate"" will guide him on his journey...",0,0,Jigoku no banken: akai megane,ja +1825,Over the Top,1987-02-13,93.0,,,tt0093692,Some fight for money... Some fight for glory... He's fighting for his son's love.,"Sylvester Stallone stars as hard-luck big-rig trucker Lincoln Hawk and takes us under the glaring Las Vegas lights for all the boisterous action of the World Armwrestling Championship. Relying on wits and willpower, Hawk tries to rebuild his life by capturing the first-place prize money, and the love of the son he abandoned years earlier into the keeping of his rich, ruthless father-in-law.",25000000,16057580,Over the Top,en +15677,84 Charing Cross Road,1987-02-13,100.0,,,tt0090570,,"When a humorous script-reader in her New York apartment sees an ad in the Saturday Review of Literature for a bookstore in London that does mail order, she begins a very special correspondence and friendship with Frank Doel, the bookseller who works at Marks & Co., 84 Charing Cross Road.",0,0,84 Charing Cross Road,en +42120,City on Fire,1987-02-13,98.0,,,tt0093435,He Thought He Knew the Risks of Going Undercover,"Ko Chow is an undercover cop who is under pressure from all sides. His boss, Inspector Lau, wants him to infiltrate a gang of ruthless jewel thieves; in order to do this he must obtain some handguns; his girlfriend wants him to commit to marriage or she will leave Hong Kong with another lover; and he is being pursued by other cops who are unaware that he is a colleague.What is more Chow would rather quit the force. He feels guilty about having to betray people who have become his friends, even if they do happen to be killers, drug dealers, loan sharks and protection racketeers: ""I do my job, but I betray my friends.""To add to his problems, he begins to bond with Fu, a member of the gang.",0,0,龍虎風雲,cn +45489,Sukeban Deka The Movie,1987-02-14,93.0,,,tt0188212,,"After the events of the TV series, the 18 year old Yoko Godai has abandoned her special agent Saki Asamiya name to return to her normal life, and is now studying for college entrance exams. However, she accidentally bumps into a young man named Kazuo Hagiwara trying to escape from a group of hitmen, and learns that he comes from Sankou Gakuen, a private school located in a remote island known as Hell's Castle. The school is ruled by a former revolutionary thought to be dead named Hattori who is trying to brainwash students into terrorists to help him stage a fascist coup d'etat in Japan.",0,0,スケバン刑事,ja +30175,Morgan Stewart's Coming Home,1987-02-20,96.0,,,tt0093567,"He was just Ducky in ""Pretty in Pink"". Now he's crazy rich...and it's all his parents' fault.","After seven years in boarding school, Morgan Stewart is finally coming home. He discovers it's not the same happy home it used to be....",0,0,Morgan Stewart's Coming Home,en +82080,Rimini Rimini,1987-02-27,114.0,,,tt0093864,,"Funny, entertaining comedy with a few storylines. All of them have one thing in common - a resort town of Rimini in Italy.",0,0,Rimini Rimini,it +15143,Some Kind of Wonderful,1987-02-27,95.0,,,tt0094006,"Before they could stand together, they had to stand alone.","A young tomboy, Watts, finds her feelings for her best friend, Keith, run deeper than just friendship when he gets a date with the most popular girl in school.",0,18553948,Some Kind of Wonderful,en +24341,Dolls,1987-03-01,77.0,,,tt0092906,... pleasant dreams.,"A group of people stop by a mansion during a storm and discover two magical toy makers, and their haunted collection of dolls.",0,0,Dolls,en +4365,Munchies,1987-03-01,87.0,,,tt0093582,... Just when you thought it was safe to raid the fridge!,"Simon Watterman, a space archaeologist, discovers the ""Munchies"" in a cave in Peru. Cecil Watterman, Simon's evil twin brother and snack food entrepreneur, kidnaps the creature. What Cecil does not know is that the creature, when chopped up, regenerates into many new creatures and are they mean!",0,0,Munchies,en +635,Angel Heart,1987-03-06,113.0,,,tt0092563,Harry Angel has been hired in search for the truth. Pray he doesn't find it.,"The down-and-out private detective Harry Angel is ordered, by a mysterious man named Louis Cyphre, to go on a mission to find a missing person. His routine failure soon leads to a bloody spar with himself as Harry Angel goes on a supernatural journey into his soul.",17000000,17185632,Angel Heart,en +32227,Hunk,1987-03-06,102.0,http://www.crownintlpictures.com/hktitles.html,,tt0093231,He made a devil of a deal... Now there's hell to pay!,"A ""devilish"" tale about an ordinary guy who is visited by a beautiful apparition promising him popularity and drop-dead good looks in exchange for his soul. Transformed overnight into a ""hunk,"" he soon discovers there may be hell to pay for his new lifestyle!",0,1749956,Hunk,en +765,Evil Dead II,1987-03-13,84.0,,1960,tt0092991,The Sequel To The Ultimate Experience In Grueling Terror,Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from “The Book of the Dead.” As they play the recording an evil power is unleashed taking over Linda’s body.,3600000,5923044,Evil Dead II,en +72655,The Loner,1987-03-18,100.0,,,tt0091982,,A cop is looking for the killer of his friend.,0,0,Le Solitaire,fr +49038,Beauty and the Beast,1987-04-01,94.0,,,tt0092626,The monster they feared was the prince she loved.,"To save her father, a girl who always puts others before herself promises to live her life in a lavish castle with a strange beast.",0,0,Beauty and the Beast,en +237549,Long Day's Journey Into Night,1987-04-12,170.0,,,tt0093432,,Adaptation of Eugene O'Neill's play.,0,0,Long Day's Journey Into Night,en +177979,Peng! Du bist tot!,1987-04-15,0.0,,,tt0091742,,,0,0,Peng! Du bist tot!,de +44123,Sam Kinison: Breaking the Rules,1987-04-17,50.0,,,tt0307403,,"This is a great performance. Through yelling and energetic story-telling, he talks about marriage, drugs, being arrested (thanks to his ex-wife), pleasing women, religion, and much, much more.",0,0,Sam Kinison: Breaking the Rules,en +238307,The Isle of Lost Ships,1987-04-19,138.0,,,tt0270151,,"A musical partially based on a sci-fi novel ""The Isle of Lost Ships"" by Aleksandr Belyaev.",0,0,Остров погибших кораблей,ru +20287,Extreme Prejudice,1987-04-24,101.0,,,tt0092997,"An army of forgotten heroes, all officially dead. They live for combat. Now they've met the wrong man.","A Texas Ranger and a ruthless narcotics kingpin - they were childhood friends, now they are adversaries.",0,0,Extreme Prejudice,en +64437,L'Été en pente douce,1987-04-29,0.0,,,tt0094405,,,0,0,L'Été en pente douce,fr +27740,A Return to Salem's Lot,1987-05-01,101.0,,,tt0093855,,"Joe Weber is an anthropologist who takes his son on a trip to the New England town of Salem's Lot unaware that it is populated by vampires. When the inhabitants reveal their secret, they ask Joe to write a bible for them.",12000000,0,A Return to Salem's Lot,en +30478,Bloody New Year,1987-05-11,90.0,,,tt0092676,The last day of the year…or the last day of your life,"Five shipwrecked English teenagers take refuge in an island hotel that is decorated for New Years. The problem is, it's early summer, and soon enough, even the walls themselves are striking out against them…",0,0,Bloody New Year,en +59075,Snow White,1987-05-14,85.0,,,tt0093999,,"A prince, seeking the greatest treasure, stumbles upon seven little men guarding a coffin. They tell him the story of Snow White, a beautiful princess who was forced to run away from home after her jealous stepmother tried to have her killed. When she realizes that the girl is still alive and living with the dwarfs, she sets out to destroy her only rival once and for all.",0,0,Snow White,en +59066,The Umbrella Woman,1987-05-14,98.0,,,tt0093106,,"In pre-WWII Australia, a love triangle develops between a man, his wife and the man's brother.",0,1155000,The Umbrella Woman,en +12704,Ishtar,1987-05-15,107.0,,,tt0093278,,"Two terrible lounge singers get booked to play a gig in a Moroccan hotel but somehow become pawns in an international power play between the CIA, the Emir of Ishtar, and the rebels trying to overthrow his regime",55000000,14375181,Ishtar,en +50012,King Lear,1987-05-17,90.0,,,tt0093349,,A descendant of Shakespeare attemps to restore his plays in a world rebuilding itself after the Chernobyl catastrophe obliterates most of human civilization.,0,0,King Lear,en +18935,Ernest Goes to Camp,1987-05-22,92.0,,330555,tt0092974,,"A group of juvenile criminals is sent for vacation to Kamp Kikakee. The clumsy Ernest has to care for them, although he doesn't even know how to take care of himself. The other children at the camp show enmity against them, but the group knows very well how to defend themselves. They do also help the Indian owner of the camp when a brutal mining corporation wants to tear down the camp to mine a rare mineral.",3000000,23509382,Ernest Goes to Camp,en +41903,Mr. India,1987-05-25,179.0,,,tt0093578,,"A poor but big-hearted man takes orphans into his home. After discovering his scientist father's invisibility device, he rises to the occasion and fights to save his children and all of India from the clutches of a megalomaniac.",0,0,मिस्टर इंडिया,hi +117,The Untouchables,1987-06-02,119.0,,,tt0094226,What are you prepared to do?,"Young Treasury Agent Elliot Ness arrives in Chicago and is determined to take down Al Capone, but it's not going to be easy because Capone has the police in his pocket. Ness meets Jimmy Malone, a veteran patrolman and probably the most honorable one on the force. He asks Malone to help him get Capone, but Malone warns him that if he goes after Capone, he is going to war.",25000000,76270454,The Untouchables,en +8989,Harry and the Hendersons,1987-06-05,110.0,,,tt0093148,"When You Can't Believe Your Eyes, Trust Your Heart.","Returning from a hunting trip in the forest, the Henderson family's car hits an animal in the road. At first they fear it was a man, but when they examine the ""body"" they find it's a ""bigfoot"". They think it's dead so they decide to take it home (there could be some money in this). As you guessed, it isn't dead. Far from being the ferocious monster they fear ""Harry"" to be, he's a friendly giant.",0,49998613,Harry and the Hendersons,en +6069,The Witches of Eastwick,1987-06-12,118.0,,,tt0094332,Three Beautiful Women. One Lucky Devil.,Three single women in a picturesque village have their wishes granted - at a cost - when a mysterious and flamboyant man arrives in their lives.,0,63766510,The Witches of Eastwick,en +20473,Not Quite Human,1987-06-19,97.0,,297252,tt0093649,,"Dr. Jonas Carson, a scientist, invents Chip, an android teenager. Dr. Carson sends Chip to school with his daughter Becky to see whether an android could interact with others. But his former employer decides to try and make a profit by stealing the mechanical boy.",0,0,Not Quite Human,en +129332,Party Camp,1987-06-19,96.0,,,tt0091727,Party your brains out. Get crazy. Cause serious damage. Just another typical summer at... Party Camp,"A teenage boy takes a job as a counselor at a summer camp. He finds that the camp is run like a military training camp, and he resolves to turn it into Party Central.",0,0,Party Camp,en +11584,Roxanne,1987-06-19,107.0,,,tt0093886,,"Based on the play ""Cyrano de Bergerac"", large nosed C.D. Bales falls for the beautiful Roxanne while she falls for his personality but another man's looks.",0,40050884,Roxanne,en +45227,A Man from Boulevard des Capucines,1987-06-23,98.0,,,tt0092745,,Mr Jonny First arrives to the Wild West to present the art of the Cinematograph.,0,0,Человек с бульвара Капуцинов,ru +41076,Leif,1987-06-26,108.0,,,tt0093402,,"The weaponfactory in Rotum is selling weapons illegal, a person called 'Leif' writes in the local newspaper. He must be stopped, even if what he has written happens to be true. Gunnar Volt and some of the other workers at the factory sets out to catch him.",0,0,Leif,sv +56391,The Adventures of Scamper the Penguin,1987-06-26,76.0,,,tt0098259,This Penguin Marches to a Different Tune.,"Scamper is a little penguin who loves wandering around the Artic where he lives with his parents. Unfortunately his little adventures tend to get he, and his friend Snowflake into trouble, especially when he disobeys his father and goes exploring with seagulls who want to eat him flying above, and men and dogs on the ground with them. One day the adventure goes too far and they float out to sea, only to be caught by men who want to sell them to the zoo. Scamper, Snowflake and their new friend, a macaroni penguin named Louie, must escape and get back to their families to warn them.",0,0,Приключения пингвинёнка Лоло,ru +66045,Black Magic M-66,1987-06-28,47.0,,,tt0092664,,A freelance reporter stumbles on a desperate military operation. An army chopper has crashed and its cargo has been activated. Now there are two killer androids running loose in the wilderness and have the daughter of their inventor as their target. Can the army stop them or can the reporter reach the little girl before the droids do?,0,0,ブラックマジックM(マリオ)-66,ja +30995,I Was a Teenage Zombie,1987-07-01,91.0,,,tt0093238,,A high-school student (Michael Ruben) and a drug pusher (Steve McCoy) land in a nuclear-wasted river and come out zombies.,0,0,I Was a Teenage Zombie,en +21840,The Misfit Brigade,1987-07-02,99.0,,,tt0093546,,"War story of the 27th Panzers, Hitler's heavy-duty combat regiment composed of prisoners.",0,0,The Misfit Brigade,en +19209,White Water Summer,1987-07-10,90.0,,,tt0094318,,"An experienced guide (Vic) accompanies a city boy (Alan) and his three friends on their first wilderness experience. Hoping to teach the four boys lessons not only about the wilderness, but about themselves, Vic pushes them to the limit. Soon after alienating the boys, Vic finds himself in desperate need of help and must rely on his students in order to survive.",0,300859,White Water Summer,en +128900,Hip hip hurra!,1987-09-04,110.0,,,tt0093194,,"The life and times of the Scandinavian artists' colony who lived in Skagen on the Danish coast during the 1890s. Not so much a biographical account, rather a portrait of a way of life. The painters became famous for the way they used the light in their work, and this has also been mirrored in the cinematography.",0,0,Hip hip hurra!,en +2608,Maid to Order,1987-07-10,93.0,,,tt0093476,"She was raised in a Beverly Hills mansion. Now, she's got to clean one.","Spoiled Jessie Montgomery, whose wild behavior and spending excesses cause her well-meaning but exasperated millionaire father Charles to wish he never had her, is visited by fairy godmother Stella. In an effort to save Jessie, Stella casts a spell which causes Charles to no longer have a daughter. Jessie, now penniless and without a friend, must take a maid's job to earn a living, and hopefully to learn her lesson.",0,9868521,Maid to Order,en +64015,An Autumn's Tale,1987-07-16,98.0,,,tt0093426,,A story about a New York Chinatown cab driver who falls for college student.,0,0,秋天的童話,cn +9252,Otto - The New Movie,1987-07-16,82.0,,232403,tt0095799,,No overview found.,0,0,Otto - Der Neue Film,de +580,Jaws: The Revenge,1987-07-17,89.0,,2366,tt0093300,"This time, it’s personal.","After another deadly shark attack, Ellen Brody decides she has had enough of New England's Amity Island and moves to the Caribbean to join her son, Michael, and his family. But a great white shark has followed her there, hungry for more lives.",23000000,51881013,Jaws: The Revenge,en +62132,Blood Diner,1987-07-24,88.0,,,tt0092669,,Two cannibalistic brothers kill various young women to make their flesh part of their new special dish at their rundown restaurant while seeking blood sacrifices to awaken a dormant Egyptian goddess.,0,0,Blood Diner,en +26574,Dudes,1987-08-01,90.0,,,tt0092933,They were looking for the American Deream. . . They found the American Nightmare.,"Two punks from the big city, traveling across the country in a Volkswagen bug, embrace the western ethos when they must take revenge against a group of rednecks for killing their friend in this lighthearted road movie. Along the way, they enlist the help of a young woman who runs a wrecking service.",0,0,Dudes,en +17421,G.I. Joe: The Movie,1987-08-01,93.0,,,tt0093066,,G.I. Joe faces a new enemy as an ancient society of snake people known as Cobra-La try to forcefully take back the earth from those who drove them underground eons ago.,0,0,G.I. Joe: The Movie,en +39045,Pinocchio and the Emperor of the Night,1987-08-06,83.0,,,tt0093743,,"Pinocchio and his friends, a glow worm and a marionette, search for a magic music box. However, so are the evil Scalawag and the Emperor of the Night.",8000000,3261638,Pinocchio and the Emperor of the Night,en +78028,Lionheart,1987-08-14,104.0,,,tt0093424,He has the fire of his sword. And the courage of his youth.,"A young knight sets out to join King Richards crusaders. Along the way, he encounters The Black Prince who captures children and sells them as slaves to the Muslims. It is Robert Narra's sworn duty to protect the children and lead them to safety.",0,0,Lionheart,en +19324,Born in East L.A.,1987-08-21,85.0,,,tt0092690,,"Rudy, an American of Hispanic descent, whose south-of-the-border looks show him no mercy during an immigration raid in a migrant worker factory. As his luck goes, he is caught with neither money nor his ID and is deported to Mexico - without speaking a word of Spanish!",0,0,Born in East L.A.,en +99599,Daughter of the Nile,1987-08-22,91.0,,,tt0093633,,"This movie presents the changing face of an industrialized Taiwan, as seen through the eyes of a young girl left to care for her family after her mother's death.",0,0,尼羅河女兒,zh +49500,Comrades,1987-08-23,183.0,,,tt0092772,The story of the Tolpuddle Martyrs,"The story of ""The Tolpuddle Martyrs"". A group of 19th century English farm labourers who formed one of the first trade unions and started a campaign to receive fair wages.",0,0,Comrades,en +41970,The Last of England,1987-08-23,87.0,,,tt0093393,,The artist's personal commentary on the decline of his country in a language closer to poetry than prose. A dark meditation on London under Thatcher.,0,0,The Last of England,en +10652,Hamburger Hill,1987-08-23,112.0,,,tt0093137,War at its worst. Men at their best.,"The men of Bravo Company are facing a battle that's all uphill… up Hamburger Hill. Fourteen war-weary soldiers are battling for a mud-covered mound of earth so named because it chews up soldiers like chopped meat. They are fighting for their country, their fellow soldiers and their lives. War is hell, but this is worse. Hamburger Hill tells it the way it was, the way it really was. It's a raw, gritty and totally unrelenting dramatic depiction of one of the fiercest battles of America's bloodiest war. This happened. Hamburger Hill - war at its worst, men at their best.",0,13839404,Hamburger Hill,en +85160,Slaughterhouse,1987-08-28,85.0,,,tt0093990,You'll never get out in one piece!,"The owner of a slaughterhouse facing foreclosure instructs his 350lbs, mentally retarded son to go on a killing spree against the people who want to buy his property.",0,0,Slaughterhouse,fr +11832,Babette's Feast,1987-08-28,102.0,,,tt0092603,,"The guest, a General at the Swedish court, is not related to the sister, but, as a callow young man, was in love with her, but chose his military career over happiness with her. His aunt is a member of the religious community. He is the one who, unknowingly, identifies Babette as the famous chef from Paris' ""Cafe Anglais,"" and provides the catalyst for the enjoyment of the feast.",0,4398938,Babettes gæstebud,da +55776,Uuno Turhapuro – kaksoisagentti,1987-08-28,0.0,,148324,tt0094233,,,0,0,Uuno Turhapuro – kaksoisagentti,fi +2172,Pathfinder,1987-09-01,86.0,,,tt0093668,,"Around the year 1000 AD warlike people, the so-called ""tjuder"", roam in northern Scandinavia. As they brutally kill a family in a remote area, including the parents and their little daughter, the families teenage son, Aigin, observes the slaughter. He manages to flee from these killers and reaches a camp with other Lapps whose inhabitants are worried if he has been able to hide his track. Afraid of the murderous people, they decide to flee to the coast. The boy stays alone to avenge his families murder. Unfortunately, they get him before he can do anything and force him to lead them to the other Lapps. He guides them but has a plan to destroy the barbarous people before reaching the camp.",0,0,Ofelas,en +109610,Blindside,1987-09-01,98.0,,,tt0090748,"First, he was paid to watch her. Now, he'd pay any price to have her.","Harvey Keitel plays Penfield Gruber, a once great scientist, reduced to managing a sleazy hotel. Gruber monitors the daily comings and goings of his tenants, mainly for his own interest, until underworld figures ask him to spy on a suspected double-crosser. While watching the man, Gruber overhears a murder plot.",0,0,Blindside,en +10937,Barfly,1987-09-02,100.0,,,tt0092618,Some people never go crazy. What truly horrible lives they must lead.,"Downtrodden writer Henry and distressed goddess Wanda aren't exactly husband and wife: they're wedded to their bar stools. But they like each other's company- and Barfly captures their giddy, gin-soaked attempts to make a go of life on the skids.",3000000,3221568,Barfly,en +49712,Man on Fire,1987-09-04,92.0,,,tt0093489,"For an ex-CIA agent, the job of bodyguard for a twelve-year old girl should have been a breeze...",An ex-CIA agent is hired to protect the daughter of a rich American family.,0,0,Man on Fire,en +27462,Slave Girls from Beyond Infinity,1987-09-18,80.0,,,tt0093991,Big Movie. Big Production. Big Girls.,"Lovely and resourceful Daria and Tisa escape a space gulag only to crash land on a nearby world where a guy in tight pants named Zed is playing The Most Dangerous Game. Zed turns the girls and another guest loose in his jungle preserve to serve as the prey in a mad hunt. Armed only with knives and their wits, the girls must battle their way across the jungle to a hidden arms cache before Zed catches and kills them.",0,0,Slave Girls from Beyond Infinity,en +65612,Keep Your Right Up,1987-09-19,82.0,,,tt0094002,,"This film is made up several sketches in which certain actors play several real or fictional roles to a background of rock music. The lead character, played by Godard himself, is an annoyingly perfectionist film-maker determined to wring every last drop of the finest performance possible from his stars.",0,0,Soigne ta droite,fr +17238,The Belly of an Architect,1987-09-23,118.0,,,tt0092637,Art is the food for madness.,"The American architect Kracklite arrives in Italy, supervising an exhibiton for a French architect, Boullée, famous for his oval structures. Tirelessly dedicated to the project, Kracklite's marriage quickly dissolves along with his health.",0,0,The Belly of an Architect,en +47212,China Girl,1987-09-25,90.0,,,tt0092751,He's Italian. She's Chinese. Their gangs are sworn enemies. They are secret lovers... caught in the crossfire.,Teenage lovers Tony (Richard Panebianco) and Tyan-Hwa (Sari Chang) tip the balance of power in New York's Little Italy and Chinatown.,0,1262091,China Girl,en +44801,Real Men,1987-09-25,85.0,,,tt0093828,The fate of the world is in their hands. God help us all.,"Jim Belushi plays a super-competent secret agent on the trail of Russian thugs. John Ritter plays a milquetoast dad who gets mixed up in the caper. The story follows their adventures over the course of a week, in which Ritter develops some guts and Belushi gets in touch with his sensitive side.",0,0,Real Men,en +32601,The Moromete Family,1987-09-28,142.0,,,tt0095657,,"Story of a family. Problems, marriage, taxes, revenge, friendship, army, life and much more…",0,0,Moromeții,ro +59572,Buster Keaton: A Hard Act to Follow,1987-09-30,160.0,,,tt0172202,,"A series about the life, career and works of the movie comedy genius.",0,0,Buster Keaton: A Hard Act to Follow,en +31127,R.O.T.O.R.,1987-10-01,90.0,,,tt0098156,,Robotic Officer Tactical Operation Research. A prototype robot intended for crime combat escapes from the development lab and goes on a killing rampage.,0,0,R.O.T.O.R.,fr +11879,Near Dark,1987-10-02,95.0,,,tt0093605,"In one hot hungry kiss, he gave her everlasting love. She gave him everlasting life.",A mid-western farm boy reluctantly becomes a member of the undead when a girl he meets turns out to be part of a band of southern vampires who roam the highways in stolen cars.,5000000,0,Near Dark,en +78691,Slam Dance,1987-10-02,99.0,,,tt0093986,Hot kiss. Cold sweat. Last chance. Slamdance.,"An artist, framed for the murder of a woman, is drawn into a web of corruption, blackmail and deceit.",0,406881,Slam Dance,en +163630,Dancers,1987-10-09,99.0,,,tt0092822,,A successful aging dancer takes a young female protegee.,0,0,Dancers,en +31385,Zombie Nightmare,1987-10-13,89.0,,,tt0092297,,Tony Washington is killed by a gang of rampant trendy teenagers. Molly Mokembe is a voodoo lady who brings him back from the dead to seek revenge on his killers so he can rest in peace.,0,0,Zombie Nightmare,en +49815,The Whales of August,1987-10-14,90.0,,,tt0094315,The Screen's Immortals... A movie you'll never forget.,"The Whales of August is a 1987 film based on a play by David Berry starring Bette Davis and Lillian Gish as elderly sisters. Also in the cast were Ann Sothern as one of their friends, and Vincent Price as a peripheral member of the former Russian aristocracy. The film was shot on location on Maine's Cliff Island. The house still stands and is a popular subject of artists on the island. The film was directed by Lindsay Anderson, his final feature film, and the screenplay was adapted by David Berry from his own play.",0,0,The Whales of August,en +96333,Weeds,1987-10-16,115.0,,,tt0094304,Feel what it's like from the inside.,"A San Quentin inmate, sentenced to life without paroll, writes a play that catches the interest of a reporter.",0,0,Weeds,en +77079,Django Strikes Again,1987-10-22,96.0,,386818,tt0093113,Forget Young Guns. Here comes the BIG GUN.,Former gunfighter Django has become a monk and abandoned his violent former ways. His daughter is kidnapped by rogue Hungarian soldiers using slave labor to run a silver mine. Django casts off his habit and digs up his machine gun to practice a little liberation theology.,0,0,Django 2: il grande ritorno,it +31945,The Sicilian,1987-10-23,116.0,,,tt0093966,Only one man ever dared to stand alone.,"Egocentric bandit Salvatore Guiliano fights the Church, the Mafia, and the landed gentry while leading a populist movement for Sicilian independence.",16500000,0,The Sicilian,en +148622,Forgotten Tune for the Flute,1987-10-23,134.0,,,tt0096492,,"A flutist in the forgotten past, at present the husband of a “big man’s” daughter and head of one of the Chief Directorate’s sections felt unwell one day: the forty-year-old man had a pain in his heart. This unpleasant incident provided an opportunity to meet a nurse named Lida. However, their stormy love affair ended, with Filimonov returning to normal life and an unloved wife.",0,0,Zabytaya Melodiya dlya Fleyty,ru +8852,Prince of Darkness,1987-10-23,101.0,http://www.theofficialjohncarpenter.com/prince-of-darkness/,,tt0093777,Before man walked the earth...it slept for centuries. It is evil. It is real. It is awakening.,"A research team finds a mysterious cylinder in a deserted church. If opened, it could mean the end of the world.",3000000,14182492,Prince of Darkness,en +11496,They Call Me Renegade,1987-10-30,92.0,,,tt0095975,You call me Trinity - they call me Renegade.,"While on his travel across the Southwestern United States, with his Jeep CJ Renegade and his chestnut colt named Joe Brown, Luke meets Matt, son of a friend of his, Moose, who is in jail. Moose asks Luke to take care of Matt, and to help him to take possession of a piece of land. So starts their travel, full of adventures...",0,0,Renegade,en +12476,The Hidden,1987-10-30,96.0,http://www.imdb.com/title/tt0093185/,175858,tt0093185,It's only human on the outside...,"An alien is on the run in America. To get his kicks, it kills anything that gets in its way, and uses the body as a new hiding place. This alien has a goal in life; power. Hotly pursued by another alien (who's borrowed the body of a dead FBI agent), lots of innocent people die in the chase.",0,0,The Hidden,en +4011,Beetlejuice,1988-02-29,92.0,,,tt0094721,He's guaranteed to put some life in your afterlife.,"Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.",15000000,73326666,Beetlejuice,en +37497,Border Radio,1987-11-01,83.0,,,tt0090766,Jeff Bailey. His wife wants him back. His band wants him on stage. Some thugs want his head. ...He wants another beer.,"Before carving out a niche as one of the most distinct voices in nineties American cinema, Allison Anders made her debut, alongside codirectors and fellow UCLA film school students Kurt Voss and Dean Lent, with 1987’s Border Radio. A low-key, semi-improvised postpunk diary that took four years to complete, Border Radio features legendary rocker Chris D., of the Flesh Eaters, as a singer/songwriter who has stolen loot from a club and gone missing, leaving his wife (Luanna Anders), a no-nonsense rock journalist, to track him down with the help of his friends (John Doe of the band X; Chris Shearer). With its sprawling Southern Californian and Mexican landscapes, captured in evocative 16mm black and white, Border Radio is a singular, DIY memento of the indie film explosion in America.",0,0,Border Radio,en +5753,Deadly Prey,1987-11-02,88.0,,379920,tt0092848,"In Vietnam, he was the best... He still is!","A group of sadistic mercenaries led by Col. John Hogan kidnap Michael Danton from his home, and set him loose on the grounds of their secret camp to be used as training for new recruits. Danton has been called the ""most perfect killer ever."" Now, he'll have to prove it again. This prey has become DEADLY!",0,0,Deadly Prey,en +12506,Cry Freedom,1987-11-05,157.0,,,tt0092804,,"A dramatic story, based on actual events, about the friendship between two men struggling against apartheid in South Africa in the 1970s. Donald Woods is a white liberal sell out in South Africa who begins to follow the activities of Stephen Biko, an arrogant and outspoken black anti-apartheid activist.",0,0,Cry Freedom,en +26156,Hiding Out,1987-11-06,98.0,,,tt0093186,There's only one thing more frightening than murder.. High School,A very successful stock broker is called to court to testify against a mob boss who was into some inside trading. Andrew Morenski must become Max Hauser and go back to high school for protection from the mob.,0,0,Hiding Out,en +292062,Caught,1987-11-09,115.0,,,tt0092734,He chased a dream that became a nightmare.,"Tim Devon was born out of wedlock and that his mother never told his father about him. Overwhelmed, Tim leaves Los Angeles in search of his father-armed with only a name and the city of Amsterdam as clues. When funds run out, Tim begins the downward spiral into a life of crime and drug use. He is encountered by a single caring person.",0,0,Caught,en +28370,Date With an Angel,1987-11-20,105.0,,,tt0092834,,"Aspiring composer Jim Sanders is engaged to spoiled rich girl Patty. But the morning after his bachelor party, Jim wakes up to discover a beautiful, broken-winged angel in his pool. When everyone finds out about his heavenly houseguest, Jim must cope with a dangerously jealous fiancée, an exploitive future father-in-law and a group of buddies with an outrageous business plan!",0,0,Date With an Angel,en +12154,Three Men and a Baby,1987-11-27,102.0,,107688,tt0094137,They changed her diapers. She changed their lives.,Three bachelors find themselves forced to take care of a baby left by one of the guy's girlfriends.,0,0,Three Men and a Baby,en +236053,Japon İşi,1987-11-29,,,,tt0252562,,,0,0,Japon İşi,tr +82279,O princezně Jasněnce a létajícím ševci,1987-12-01,87.0,,,tt0226232,,"Pohádka o mladém ševcovském tovaryšovi Jírovi, který si vyrobil z jemné kůže křídla, s jejichž pomocí vysvobodil z věže královského hradu princeznu Jasněnku, kam ji zavřel její otec v marné snaze zabránit věštbě zlé čarodějnice, a posléze ji vymanil i z moci samotné čarodějnice a její dcery Černavy. ( official text from distributor)",0,0,O princezně Jasněnce a létajícím ševci,cs +28448,Walker,1987-12-04,94.0,,,tt0096409,,William Walker and his mercenary corps enter Nicaragua in the middle of the 19th century in order to install a new government by a coup d'etat.,5800000,257043,Walker,en +10780,Overboard,1987-12-16,106.0,,,tt0093693,,"Heiress, Joanna Stayton hires carpenter, Dean Proffitt to build a closet on her yacht -- and refuses to pay him for the project when it's done. But after Joanna accidentally falls overboard and loses her memory, Dean sees an opportunity to get even.",1880006,26713187,Overboard,en +85793,Legend of the Forest,1987-12-18,30.0,,,tt0093399,,"A tranquil forest and all of its residents must face the destruction of man. A squirrel, born and raised in the forrest, fights to defend his home and faces trials and adversities along the way.",0,0,Mori no densetsu,ja +24828,Leonard Part 6,1987-12-18,85.0,,,tt0093405,,"After separating from his wife, Leonard Parker (Cosby) quit the spy business and became a restaurateur. His wife refuses to speak with him, and his daughter, who changes her career more often than her clothes, has begun dating a man old enough to be Leonard's father! On top of it all, the government has asked him to come back and save the world again.",0,4916871,Leonard Part 6,en +57918,Da grande,1987-12-23,0.0,,,tt0164519,,,0,0,Da grande,it +286545,Troublemaker,1988-01-01,98.0,,,tt0179493,,"With the American Dream set in their minds, two pathetic gangsters, one Luxembourgish, the other German, go through various trials and tribulation in the South of Luxembourg.",0,0,Troublemaker,en +302435,Ashi Hi Banwa Banwi,1988-01-01,0.0,,,tt0267277,,Dhananjay makes Parshuram and Sudhir to act as his and his brothers wife as the landlady only wants married couples. What will happen when the landlady will come to know the truth and how will they all face her as she is very lovable to all.,0,0,Ashi Hi Banwa Banwi,mr +51247,Blackadder's Christmas Carol,1988-01-01,43.0,,,tt0094754,,Pleasant Ebenezer Blackadder is turned into a cruel and witty miser after seeing visions of his ancestors and descendants.,0,0,Blackadder's Christmas Carol,en +31448,The Invisible Kid,1988-01-01,95.0,,,tt0095381,,"A nerdy teenage scientist discovers a formula for invisibility, and uses it to take revenge on all those who have wronged him--and also to spy on the girls' shower room.",0,0,The Invisible Kid,en +47795,Landscape in the Mist,1988-01-01,127.0,,,tt0096288,,Road movie about two children searching for their father who is supposed to live in Germany. Their obsession for this father figure will take them to the boundaries between childhood and adolescence.,0,0,Τοπίο στην ομίχλη,el +68752,Judgment in Berlin,1988-01-01,96.0,,,tt0095415,,American judge in Germany must decide if the hijacking of an East German plane into West Berlin was justified.,0,0,Judgment in Berlin,en +82083,"Rimini, Rimini: A Year Later",1988-01-01,110.0,,,tt0200030,,"Funny, entertaining comedy with a few storylines. All of them have one thing in common - a resort town of Rimini in Italy.",0,0,"Rimini, Rimini - un anno dopo",en +116350,The Captive,1988-01-01,7.0,,,tt1090256,,Two kids travel to a city where silence is kept sacred.,0,0,La prisonnière,fr +40095,Dead Heat,1988-05-06,86.0,,,tt0094961,You Can't Keep a Good Cop Dead,"LAPD police officer, Roger Mortis is killed while arresting zombies who have been reanimated by the head of Dante Laboratories in order to carry out violent armed robberies.",5000000,0,Dead Heat,en +47057,The Appointments Of Dennis Jennings,1988-01-01,29.0,,,tt0094670,,"Dennis Jennings (Steven Wright) is an introverted daydreamer, sleepwalking through life. He is a professional waiter and has an equally-dull girlfriend, Emma. In an attempt to release his pent-up feelings of isolation, he begins seeing a psychiatrist (Rowan Atkinson), only to discover that the doctor is somewhat less than interested in what he has to say. After finding his doctor sharing his intimate secrets with a group of fellow psychiatrists at a bar, and then finding that his girlfriend is cheating on him with the doctor, Dennis decides he has had enough. He hunts the doctor down in the woods and shoots him, ending up in jail with an equally uncaring prison shrink.",0,0,The Appointments Of Dennis Jennings,en +60018,The Last Minute,1988-01-01,100.0,,,tt0139681,,,0,0,Ultimo minuto,it +78522,Prime Evil,1988-01-01,83.0,http://www.crownintlpictures.com/ostitles.html,,tt0095900,A terrifying force that cannot be resisted is here ...,A coven of devil-worshiping monks living in New York City search for victims for their sacrificial ceremonies.,0,0,Prime Evil,en +46770,Sur,1988-01-01,127.0,,,tt0094076,, ,0,0,Sur,en +279598,The Cat Who Walked by Herself,1988-01-01,70.0,,,tt0997248,,"Two parents put their child in his crib for the night and leave the room. The child starts crying, and the Cat comes into the room to keep him company. The child grabs her tail, and the Cat angrily reminds him that they agreed a thousand years ago that he would not do that. Upon seeing that the child doesn't remember, the Cat sighs and decides to tell him the story from the beginning. The story starts when the planet was young and life on Earth is starting with dinosaurs.",0,0,"Кошка, которая гуляла сама по себе",en +49418,Return to Treasure Island,1988-01-01,106.0,,,tt0122227,,A USSR-made violent farcical yet quite faithful adaptation of the famous Robert Louis Stevenson's book that combines animated sequences with live action parts.,0,0,Ostrov sokrovishch,ru +43680,Heart of a Dog,1988-01-01,136.0,,,tt0096126,,"Old Prof. Preobrazhensky and his young colleague Dr. Bormental inserted the human's hypophysis into a dog's brain. Couple of weeks later the dog became ""human looking"". The main question is ""Is anybody who is looking like a man, A REAL MAN?""",0,0,Собачье сердце,ru +47493,To Kill a Priest,1988-01-01,117.0,,,tt0096280,,A young priest speaks out against the Communist regime in Poland and is killed for it.,0,0,To Kill a Priest,en +92663,Ashik Kerib,1988-01-01,73.0,,,tt0094681,,"Wandering minstrel Ashik Kerib falls in love with a rich merchant's daughter, but is spurned by her father and forced to roam the world for a thousand and one nights - but not before he's got the daughter to promise not to marry till his return. It's told in typical Paradjanov style, in a series of visually ravishing 'tableaux vivants' overlaid with Turkish and Azerbaijani folksongs.",0,0,აშიკ-ქერიბი,ka +128637,American Roulette,1988-01-01,102.0,,,tt0094644,,,0,0,American Roulette,en +31397,Alien from L.A.,1988-01-01,87.0,,,tt0092532,The people at the center of the earth are about to get a visitor.,"When her archaeologist father disappears on an expedition, Wanda sets out to look for him. What she finds is a secret underground world, where no one believes in life on the surface and where she and her father are taken for spies.",0,0,Alien from L.A.,en +8463,Torch Song Trilogy,1988-01-01,120.0,,,tt0096289,,"A very personal story that is both funny and poignant, TORCH SONG TRILOGY chronicles a New Yorker's search for love, respect and tradition in a world that seems not especially made for him.",0,4865997,Torch Song Trilogy,en +13350,Scooby-Doo and the Ghoul School,1988-01-01,90.0,,,tt0189071,,"Scooby, Shaggy and Scrappy Doo are on their way to a Miss Grimwood's Finishing School for Girls, where they have been hired as gym teachers. Once there, however, they find that it is actually a school for girl ghouls.",0,0,Scooby-Doo and the Ghoul School,en +55728,Plain Clothes,1988-01-01,98.0,,,tt0095875,An Undercover Nightmare.,"To prove his brother's innocence, undercover officer Nick enrolls in high school again, dealing with crushes, bullies, humiliations, popularity swings, and quirky teachers and staff to find the real murderer.",0,0,Plain Clothes,en +86252,Deadbeat at Dawn,1988-01-01,80.0,,,tt0099377,He quit the gangs. They killed his girl. He became...,Goose leaves the gang life behind after pleas from his girlfriend. But it isn't long before he's pulled back into the world of violence.,0,0,Deadbeat at Dawn,en +37211,Scooby-Doo! and the Reluctant Werewolf,1988-01-01,80.0,,,tt0189072,,"Shaggy is turned into a werewolf, and it's up to Scooby, Scrappy and Shaggy's girlfriend to help him win a race against other monsters, and become human again.",0,0,Scooby-Doo! and the Reluctant Werewolf,en +83346,It's Impossible to Learn to Plow by Reading Books,1988-01-01,85.0,,,tt0095385,,"In its minimal and non-traditional plot, the main character travels about the country meeting with various acquaintances when not taking part in various mundane, day-to-day activities. There is no real rising action or climax, and Linklater's character does not change substantially throughout the course of the film.",3000,0,It's Impossible to Learn to Plow by Reading Books,en +28452,Slugs,1988-02-05,89.0,,,tt0093995,They ooze. They slime. They kill.,"People are dying mysteriously and gruesomely, and nobody has a clue what the cause is. Only health worker Mike Brady has a possible solution, but his theory of killer slugs is laughed at by the authorities. Only when the body count begins to rise and a slug expert from England begins snooping around does it begin to look like Mike had the right idea after all.",0,0,"Slugs, muerte viscosa",en +23178,Elvis and Me,1988-02-07,240.0,,,tt0095089,,The story of Priscilla's life with rock and roll star Elvis Presley.,8000000,0,Elvis and Me,en +77625,Moving Target,1988-02-08,100.0,,,tt0095663,This summer will be no vacation.,A teenage musician goes on the run from killers and the police when he returns home to find his home empty and his family gone.,0,0,Moving Target,en +9717,Shoot to Kill,1988-02-12,109.0,,,tt0096098,It's about staying alive.,"Sidney Poitier makes his long-overdue return to films in this 1988 thriller, playing an FBI agent on the trail of an elusive killer. Reluctantly teamed with tracker Tom Berenger, the city-dwelling Poitier braves the wilds of the Pacific Northwest in search of his quarry.",0,29300000,Shoot to Kill,en +26881,The Incredible Hulk Returns,1988-02-21,100.0,,114431,tt0095368,,"Dr. David Banner meets a former student, who has a magical hammer that summons Thor, a Norse god who is prevented from entering Valhalla. When the two superheroes stop feuding long enough to breathe, they are a team unmatched by any of their enemies.",0,0,The Incredible Hulk Returns,en +26603,Vice Versa,1988-02-25,98.0,,,tt0096380,"Just when he was ready for mid-life crisis, something unexpected came up. Puberty.","A mysterious oriental skull transforms a father into his son, and vice versa.",0,0,Vice Versa,en +38558,Shakedown,1988-05-06,112.0,,,tt0096087,Whatever you do... don't call the cops!,A legal attorney and renegade cop team up to stop a corrupt cop.,0,0,Shakedown,en +249914,Pestonjee,1988-03-01,125.0,,,tt0095857,,"Phirojshah (Naseeruddin Shah) and Pestonjee (Anupam Kher) are two close friends. They attempt to do everything together, and they hope that they will marry the same day as well. Unfortunately, both go to see the same young lady, Jeroo (Shabana Azmi), and Pestonjee ends up getting married to Jeroo. Phirojshah has been stricken by Jeroo's beauty and decides not to marry, and takes a transfer away from the couple. During the years, he keeps in touch with the couple by mail. While on a visit to the couple, he finds out that Pestonjee has a mistress, and Jeroo does not know of this. How will this effect Phirojshah's friendship with Pestonjee? Does Phirojshah stand a chance with Jeroo?",0,0,Pestonjee,en +29739,Moving,1988-03-04,89.0,,,tt0095662,One family's experience with the M-word.,"Arlo accepts what seems to him to be a dream promotion to Idaho. He soon discovers, however, that moving has its own share of problems.",0,0,Moving,en +26798,Switching Channels,1988-03-05,105.0,,,tt0096203,"There's a lot more going on around here than news, weather, and sports.",A television news chief courts his anchorwoman ex-wife with an eleventh-hour story.,0,0,Switching Channels,en +41963,Masquerade,1988-03-11,91.0,,,tt0095599,,"A recently orphaned millionairess, Olivia, really hates her scheming step-father. Olivia finds love with a young yacht racing captain, Tim, who isn't completely truthful with her. When the two run into a problem the local cop, who happens to be an old friend of Olivia's, seems to be turning a blind eye to incriminating evidence.",0,0,Masquerade,en +16157,Mobile Suit Gundam: Char's Counterattack,1988-03-12,124.0,http://www.gundam-cca.net/,,tt0095262,,In UC 0093 the Federation has recovered from its defeat and has created a new anti-colonial special forces unit to deal with rebel forces: Londo Bell. Elsewhere in space Char Aznable re-appears out of self imposed hiding with a declaration that he now commands his own Neo-Zeon movementand intends to force the emigration of Earth's inhabitants to space by bringing about an apocalypse.,0,0,機動戰士 ガンダム 逆襲のシャア,ja +442752,Petos,1988-03-18,,,,tt0095861,,,837000,0,Petos,fi +129628,Stars & Bars,1988-03-18,94.0,,,tt0096166,,"Henderson Dores (Daniel Day Lewis), a New York based art dealer from England, travels to Georgia to persuade patriarch, Harry Dean Stanton, to sell a Monet previously thought lost.",0,0,Stars & Bars,en +49314,Dominick and Eugene,1988-03-18,111.0,,,tt0095050,,"Dominick and Eugene are twins, but Dominick is a little bit slow due do an accident in his youth. They live together, with Dominick working as garbage man to put Eugene through medical school. Their relationship becomes strained when Eugene must decide between his devotion to his brother, or his need to go away to complete his training. Things are also not helped by Dominick's co-worker, or Eugene's budding romance.",0,0,Dominick and Eugene,en +20443,Johnny Be Good,1988-03-22,91.0,,,tt0095409,Every college in the country wants Johnny. 'Cause when he's good he's very very good. And when he's bad he's better.,"It's recruiting time and despite being short and scrawny, Johnny Walker is America's hottest young football prospect. His dilemma: should he take one of the many offers from college talent scouts or should he attend the local state college with his girlfriend and give up his football career?",0,0,Johnny Be Good,en +13965,Return to Snowy River,1988-03-24,110.0,,89272,tt0095993,The man is back!,"After a few years trying to earn money to marry Jessica Harrison (Sigrid Thornton), Jim Craig (Tom Burlinson) returns to Snowy River. But he finds that a lot of things have changed.",0,0,Return to Snowy River,en +17170,"Bright Lights, Big City",1988-04-01,107.0,,,tt0094799,,"A young kid from Kansas moves to New York to work on a magazine. He gets caught up in the world of drink and drugs, and starts a steady decline. The only hope is the cousin of one of his drinking partners, can she pull him through it ?",0,0,"Bright Lights, Big City",en +38965,18 Again!,1988-04-08,93.0,,,tt0094593,"His mind was 81. His body was 18. When Jack Watson found his fountain of youth, it overflowed with comedy.","18 Again! is a 1988 comedy film starring George Burns and Charlie Schlatter. The plot involves a grandson switching souls with his grandfather by means of an accident. This was one of a series of unrelated films, including Like Father, Like Son and Vice Versa, produced in the late 1980s involving a similar plotline.",0,0,18 Again!,en +27814,Brain Damage,1988-04-15,86.0,,,tt0094793,It's A Headache From Hell!,"A normal, average guy who lives in New York City becomes dependent on an evil, disembodied brain.",0,0,Brain Damage,en +41967,Tales from the Gimli Hospital,1988-04-15,68.0,,,tt0096218,It all happened in a Gimli we no longer know.,"While their mother is dying in the modern Gimli, Manitoba hospital, two young children are told an important tale by their Icelandic grandmother about Ainar the lonely, his friend Gunnar, and the angelic Snjofrieder in a Gimli of old.",25000,0,Tales from the Gimli Hospital,en +12477,Grave of the Fireflies,1988-04-16,89.0,,,tt0095327,"At 4 and 14, they tried to live on","In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.",3700000,0,火垂るの墓,ja +49365,Lady in White,1988-04-22,112.0,,,tt0095484,"The year is 1962. The place is Willowpoint Falls. Nobody talks about what happened in the school cloakroom 10 years ago. Now, in the dead of night, Frankie Scarlatti is going to find out why.","Locked in a school closet during Halloween 1962, young Frank witnesses the ghost of a young girl and the man who murdered her years ago. Shortly afterward he finds himself stalked by the killer and is soon drawn to an old house where a mysterious Lady In White lives. As he discovers the secret of the woman he soon finds that the killer may be someone close to him.",0,0,Lady in White,en +24348,Powaqqatsi,1988-04-29,99.0,,173344,tt0095895,,An exploration of technologically developing nations and the effect the transition to Western-style modernization has had on them.,2500000,589244,Powaqqatsi,en +1387,Superstar: The Karen Carpenter Story,1988-04-30,43.0,,,tt0094075,,"The final 17 years of American singer and musician Karen Carpenter, performed almost entirely by modified Barbie dolls.",0,0,Superstar: The Karen Carpenter Story,en +54107,"Splash, Too",1988-05-01,87.0,,248126,tt0096159,"Splash, Too. A romantic tail.","A sequel to the popular romantic mermaid drama, in which Allen and Madison return to New York - one to save his business, the other to save a Dolphin in captivity. You can guess which does which.",0,0,"Splash, Too",en +18214,Black Eagle,1988-05-01,93.0,,,tt0094750,,"One of the US Air Force's most modern tactical aircrafts, a F-100 with a new laser guidance system, crashes into the sea near Malta - a region where the Soviet forces are highly present, too. The CIA immediately sends out their best secret agent, Ken Tami, to salvage the system before it falls into enemy hands. To ensure his loyalty, they bring his two young sons to a nearby hotel on the island.",3000000,0,Black Eagle,en +181801,Hot Splash,1988-05-19,89.0,,,tt0095325,,"Matt and Woody's summer in Cocoa Beach is going to be awesome, but they're broke with no car and no women. In an effort to solve their little problem, Matt and Woody (by no will of their own) ends up in a deal with a gangster TJ Caruso.",0,0,Hot Splash,en +33592,White of the Eye,1988-05-20,110.0,,,tt0094320,,Evidence of mutilated housewives points to a sound expert (David Keith) living unhappily with his wife (Cathy Moriarty) in Arizona.,0,0,White of the Eye,en +40028,Not of This Earth,1988-05-20,81.0,,,tt0095756,THE Science Fiction Chiller!,A science fiction vampire movie. The Vampire is an emissary from an embattled world near destruction who teleports to Earth to see if they can live here. He finds that our blood is nourishing and that at least one source of it is a steady stream of transfusions. He hypnotizes a Dr. to provide them and has his blond nurse move in to administer them.,210000,107352,Not of This Earth,en +16296,Killer Klowns from Outer Space,1988-05-27,88.0,,,tt0095444,"In space, no one can eat ice cream.","Aliens, who look like clowns, arrive on Earth to capture and harvest people in order to use them as sustenance.",1800000,0,Killer Klowns from Outer Space,en +187602,Once More,1988-05-27,87.0,,,tt0095097,,"A man sick of his life, decides to leave his wife and find his happiness elsewhere. Along the way he meets a man with whom he falls in love. The film covers a decade of his life, each scene taking place roughly during his daughter's birthday.",0,0,Encore,en +121154,Tumbledown,1988-05-29,115.0,,,tt0098533,,"The film centres on the experiences of Robert Lawrence MC (played by Colin Firth), an officer of the Scots Guards during the Falklands War of 1982. While fighting at the Battle of Mount Tumbledown, Lawrence is shot in the head by an Argentine sniper, and left paralysed on his left side. He then must learn to adjust to his new disability.",0,0,Tumbledown,en +40087,Cheerleader Camp,1988-06-01,89.0,,,tt0092744,Some girls would kill to be Cheerleaders.,"Alison follows her friends to a summer camp for cheerleaders. But she is having bad nightmares. Her boyfriend has followed her to the camp but he seems to be more interested in the other girls, girls who sooner or later are found brutally murdered. Alison starts to believe that she has a split-personality who kills them.",0,0,Cheerleader Camp,en +2280,Big,1988-06-03,104.0,,,tt0094737,You're Only Young Once But For Josh It Might Just Last A Lifetime.,"A young boy, Josh Baskin makes a wish at a carnival machine to be big. He wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman. What will he find out about this strange world?",18000000,151668774,Big,en +51442,American Gothic,1988-06-03,85.0,,,tt0094642,The family that slays together stays together.,"When six friends fly off on a weekend getaway and are suddenly plagued by engine trouble, they're forced to land on a remote island. Looking for shelter, they're grateful to encounter Ma and Pa and their children - an eccentric family living in the island's backwoods. But what begins as simple hospitality turns into a terrifying race for survival as the friends start disappearing one by one ... and turning up dead.",0,0,American Gothic,en +34512,George Carlin: What Am I Doing in New Jersey?,1988-06-09,59.0,http://www.georgecarlin.com,479319,tt0246644,,"George Carlin changes his act by bringing politics into the act, but also talks about the People he can do without, Keeping People Alert, and Cars and Driving part 2.",0,0,George Carlin: What Am I Doing in New Jersey?,en +24163,As Tears Go By,1988-06-09,102.0,,,tt0096461,,"Two parallel stories of Wah caught in the mist of a love affair with his beloved cousin, Ngor and his relationship with his triad brother, Fly, who seems to never fall out of trouble.",0,0,旺角卡門,cn +93457,Split Decisions,1988-06-11,95.0,,,tt0096161,,"When a boxer is killed because he wouldn't take a dive, his brother tries to find a way to avenge him even if only symbolically.",0,0,Split Decisions,en +287,Bull Durham,1988-06-15,108.0,,,tt0094812,Romance is a lot like baseball. It's not whether you win or lose. It's how you play the game.,"Veteran catcher Crash Davis is brought to the minor league Durham Bulls to help their up and coming pitching prospect, ""Nuke"" Laloosh. Their relationship gets off to a rocky start and is further complicated when baseball groupie Annie Savoy sets her sights on the two men.",7000000,50888000,Bull Durham,en +41949,A World Apart,1988-06-17,113.0,,,tt0096464,"South Africa, 1963. A mother's love. A family's courage.","A White enclave in Johannesburg, South Africa, in the 1960s. Molly Roth, 13 years old, is the daughter of leftist parents, and she must piece together what's happening around her when her father disappears one night, barely evading arrest, and, not long after, her mother is detained by the authorities. Some of Molly's White friends turn against her, and her family's friendships with Blacks take on new meaning. Relationships are fragile in the world of apartheid. How will she manage?",0,0,A World Apart,en +181753,Backfire,1988-06-21,93.0,,,tt0092609,"Before the night is over... someone will be rich, someone will be dead, someone will be avenged.","Mara McAndrew's marriage is falling apart. Her husband, Donnie, a Vietnam veteran, suffers troubling flashbacks about the war, leaving him unresponsive to her needs. Mara wants out, but she also wants Donnie's money. When Mara meets a mysterious stranger, Reed, at a local bar, she believes she has found the right person to help her out of her predicament. But Mara worries that Donnie's sister, Jill, is on to her.",0,0,Backfire,en +69727,Final Justice,1988-06-23,95.0,,,tt0126301,,"A cop relies on a young car thief to take down four gangsters, who plan to rob a rich merchant for a large amount of money.",0,0,Final Justice,en +9602,Coming to America,1988-06-28,116.0,,,tt0094898,The Four Funniest Men in America are Eddie Murphy.,"Prince Akeem, heir to the throne of Zamunda, leaves the tropical paradise kingdom in search of his queen. What better place than Queens, New York to find his bride? Joined by his loyal servant and friend, Semmi, Akeem attempts to blend in as an ordinary American and begin his search.",39000000,288752301,Coming to America,en +75203,Day of the Panther,1988-06-28,84.0,http://www.imdb.com/title/tt0094957/,,tt0094957,,"A martial-arts expert goes after a criminal gang and its boss, who were responsible for the death of his partner.",0,0,Day of the Panther,fr +24679,Bird,1988-07-01,161.0,,,tt0094747,,Saxophone player Charlie Parker comes to New York in 1940. He is quickly noticed for his remarkable way of playing. He becomes a drug addict but his loving wife Chan tries to help him.,0,0,Bird,en +43645,The Little Devil,1988-07-01,99.0,,,tt0095869,,"Father Maurice, a priest living in a residential college for priests in Rome, is called out one day to ""exorcise"" the devil from someone. The devil turns out to be in the form of a fun-loving man called Giuditta. What Father Maurice doesn't know is that this type of devil will turn his life around.",0,0,Il piccolo diavolo,it +623,A Fish Called Wanda,1988-07-15,108.0,,,tt0095159,"A tale of murder, lust, greed, revenge, and seafood.","A diamond advocate is attempting to steal a collection of diamonds, yet troubles arise when he realizes that he is not the only one after the diamonds.",7500000,62493712,A Fish Called Wanda,en +134201,Out of Time,1988-07-17,92.0,,,tt0095802,,A cop from the future goes back in time to Los Angeles and teams up with his grandfather to capture a master criminal.,0,0,Out of Time,en +9013,Midnight Run,1988-07-20,126.0,,,tt0095631,This could be the beginning of a beautiful friendship.,"An accountant embezzles $15 million of mob money, jumps bail and is chased by bounty hunters, the FBI, and the Mafia.",30000000,38413606,Midnight Run,en +29787,Monkey Shines,1988-07-29,113.0,,,tt0095652,"Once there was a man whose prison was a chair. The man had a monkey, they made the strangest pair. The monkey ruled the man, it climbed inside his head. And now as fate would have it, one of them is dead.","A quadriplegic man is given a trained monkey help him with every day activities, until the little monkey begins to develop feelings, and rage, against its new master and those who get too close to him.",7000000,5344577,Monkey Shines,en +251419,Senior Week,1988-08-01,98.0,,,tt0124869,"It's the biggest party of your life, it's...","Everett and his party-hungry buddies embark on an all-night road-trip to the Florida beaches, for a week of fun, sun, and beautiful women. Mayhem ensues when 2 jealous girl-friends show up unexpectedly, along with a psycho teacher who's hunting down Everett because he owes her an overdue term-paper.",0,0,Senior Week,en +18917,Alice,1988-08-03,86.0,,,tt0095715,A film made for children… perhaps?,"A quiet young English girl named Alice finds herself in an alternate version of her own reality after chasing a white rabbit. She becomes surrounded by living inanimate objects and stuffed dead animals, and must find a way out of this nightmare- no matter how twisted or odd that way must be. A memorably bizarre screen version of Lewis Carroll’s novel ‘Alice’s Adventures in Wonderland’.",0,0,Neco z Alenky,cs +115616,Hawks,1988-08-05,110.0,,,tt0097487,They soared above the ordinary.,"Two terminally ill patients in a hospital yearn for relief from their predicament. With little or no friends, they form an uneasy alliance and plot an escape for one last wild time.",0,0,Hawks,en +20196,Mac and Me,1988-08-12,95.0,,,tt0095560,Eric's new in the neighborhood. Mac's new on the planet.,"A Mysterious Alien Creature (MAC) escaping from nefarious NASA agents, is befriended by a young boy in a wheelchair. Together, they try to find MAC's family from whom he has been separated.",0,5935269,Mac and Me,en +28176,Tucker: The Man and His Dream,1988-08-12,110.0,,,tt0096316,"When they tried to buy him, he refused. When they tried to bully him, he resisted. When they tried to break him, he became an American legend. The true story of Preston Tucker.","Based on a true story. Shortly after World War II, Preston Tucker is a dynamic engineer and an enthusiastic showman who envisions the car of the future. Against mighty odds he manages to build a fleet of them - only to have his factory shut down by Detroit's Big Three automobile manufacturers. They took away his car - but nobody could take away his dream.",0,0,Tucker: The Man and His Dream,en +10753,Police Story 2,1988-08-13,101.0,,269098,tt0095403,,The Hong Kong super-cop must stop a group of blackmailing bombers at the same time that the villains of the first Police Story are out for revenge.,0,0,警察故事續集,cn +2321,Married to the Mob,1988-08-19,104.0,,,tt0095593,They're her family... Whether she likes it or not.,"Angela de Marco is fed up with her gangster husband's line of work and wants no part of the crime world. When her husband is killed for having an affair with the mistress of mob boss Tony ""The Tiger"" Russo, Angela and her son depart for New York City to make a fresh start. Unfortunately, Tony has set his sights upon Angela -- and so has an undercover FBI agent looking to use her to bust Tony.",10000000,21486757,Married to the Mob,en +12787,Homeboy,1988-08-24,116.0,,,tt0095316,Some people live life blow by blow.,"Johnny Walker is a cowboy and a boxer. He is very shy and a bit of a fool. He is in love with Ruby, but he cannot tell her. He is also a bit old to keep on boxing, but its the only thing he does well.",0,0,Homeboy,en +62900,Tupla-Uuno,1988-08-26,0.0,,148324,tt0096318,Tupla-Uuno,Tupla-Uuno,0,0,Tupla-Uuno,fi +32331,Stealing Home,1988-08-26,98.0,,,tt0096171,"Stealing hearts, stealing laughs, stealing memories","Billy Wyatt (Harmon), a former high school and minor-league baseball baseball player receives a telephone call from his mother revealing that his former child-sitter, and later in his teens, his first love, Katie Chandler (Foster), has died. Wyatt returns home to deal with this tragedy reminescing over his childhood growing up with his father, Katie and best friend Alan Appleby.",0,7467504,Stealing Home,en +30690,Hot to Trot,1988-08-26,88.0,http://www.wbshop.com/product/hot+to+trot+1000180065.do,,tt0095326,When I Talk You're Gonna Laugh Yourself Hoarse!,Fred P. Chaney receives as inheritance after the death of his mother a speaking horse that also has good knowledge about the stock-market. With the help of this horse Fred gains a lot at the stock-market of Chicago.,9000000,6436211,Hot to Trot,en +38950,Hero and the Terror,1988-08-26,96.0,,,tt0095296,Heroes hit hardest.,"Danny O'Brien is back in action fighting the notorious Simon Moon, also known as The Terror. Three years earlier O'Brien had single-handedly captured The Terror and was called Hero by the people of L.A. Now Simon has escaped and has started killing women again, and O'Brien is the only man who can stop him.",0,0,Hero and the Terror,en +31618,Betrayed,1988-08-26,127.0,,,tt0094731,,An FBI agent (Debra Winger) falls in love with a white supremacist (Tom Berenger) whose group she infiltrates.,19000000,0,Betrayed,en +211729,Freeway,1988-09-02,102.0,,,tt0095177,,A deeply-disturbed priest goes on a murderous night-time rampage across America's highways.,0,0,Freeway,en +208173,El río que nos lleva,1988-09-08,,,,tt0098239,,,0,0,El río que nos lleva,es +97035,A Tale of the Wind,1988-09-09,80.0,,,tt0096337,,"It is an autobiographical fiction starring Ivens as an old man who has spent his life trying to ""tame the wind and harness the sea"" by capturing them on film.",0,0,Une histoire de vent,en +59744,Grotesque,1988-09-09,89.0,,,tt0095256,There is a Fate Worse Than Death,"A gang of crazed punkers breaks into a family's vacation home in the mountains and slaughters the entire family, except for one daughter who gets away. As the gang pursues the girl through the snow, they slowly realize that some kind of murderous creature is chasing them...",0,0,Grotesque,en +31083,Some Girls,1988-09-09,94.0,,,tt0098356,"There's nothing that love, laughter and a little therapy can't fix!","While on Christmas break, college student Michael journeys to Quebec City to spend time with his attractive girlfriend, Gabriella. Not long after he arrives, Gabriella breaks up with him, but her two equally gorgeous sisters waste no time showing romantic interest. In the meantime, Michael is left to deal with Gabriella's eccentric grandmother and offbeat father, an academic who spends most of his time naked.",0,401421,Some Girls,en +100110,Survival Quest,1988-09-09,96.0,,,tt0098415,,"A bunch of city slickers from different backgrounds go into the wild mountains to be one with nature, but basically to have a good time. However, a paramilitary group has chosen the same time to go camping. When one of the soldiers thinks their boss has been killed by one of the city slickers, he coaxes his team into exterminating all of them. They will have to rely on their wits and on each other in order to survive.",0,0,Survival Quest,en +67633,Maternal Half-Brothers,1988-09-10,105.0,,,tt0099172,,"This story about two maternal half-brothers, a Croat and a Serb. Although they never met, and both lose their loved ones in ethnic clashes, there is a bond between them. Filmed in 1988, it prophetically forsees the war that would engulf former Yugoslavia three years later.",0,0,Braća po materi,sr +15267,The Beast of War,1988-09-14,111.0,,,tt0094716,War brings out the beast in every man.,During the war in Afghanistan a Soviet tank crew commanded by a tyrannical officer find themselves lost and in a struggle against a band of Mujahadeen guerrillas in the mountains.,0,0,The Beast of War,en +30993,Flesh Eating Mothers,1988-09-16,89.0,,,tt0097364,They Bit Off More Than They Could Chew!,A venereal disease turns an entire town of two-timing mothers into cannibals!,0,0,Flesh Eating Mothers,en +9540,Dead Ringers,1988-09-23,115.0,,,tt0094964,Two bodies. Two minds. One soul.,"Elliot, a successful gynecologist, works at the same practice as his identical twin, Beverly. Elliot is attracted to many of his patients and has affairs with them. When he inevitably loses interest, he will give the woman over to Beverly, the meeker of the two, without the woman knowing the difference. Beverly falls hard for one of the patients, Claire, but when she inadvertently deceives him, he slips into a state of madness.",13000000,8038508,Dead Ringers,en +41969,The Girl in a Swing,1988-09-29,119.0,,,tt0097435,,"A London art broker goes to Copenhagen where he requires the services of a secretary fluent in Danish, English, and German. He falls deeply in love with the woman, despite the fact that he knows virtually nothing about her. She insists on not being married in a church, and after they are married, some bad things from her past begin surfacing in subtly supernatural ways, and he must find the best way to deal with them without destroying their relationship.",0,0,The Girl in a Swing,en +5333,Apartment Zero,1988-09-30,124.0,,,tt0094667,,The owner of a failing cinema and his mysterious boarder are caught up in the political intrigue of Argentina.,4000000,670774,Apartment Zero,en +2640,Heathers,1988-10-01,102.0,,,tt0097493,"Best friends, social trends, and occasional murder.","A girl who halfheartedly tries to be part of the ""in crowd"" of her school meets a rebel who teaches her a more devious way to play social politics: by killing the popular kids.",0,1108462,Heathers,en +49343,Dream Demon,1988-10-06,86.0,,,tt0095063,Two women trapped in a savage nightmare...,"A young woman about to be married begins having terrifying dreams about demons. When she wakes, however, the demons are real and begin to commit gruesome murders.",0,0,Dream Demon,en +253632,Baton Rouge,1988-10-08,,,,tt0094822,,,0,0,Baton Rouge,fr +118098,Madame Sousatzka,1988-10-14,122.0,,,tt0095564,,"The relationship between a demanding piano teacher and her student, an Indian prodigy.",0,0,Madame Sousatzka,en +84626,Nukie,1988-10-19,106.0,,,tt0107715,A Magical Space Adventure,"Two alien brothers crash their ship in the U.S. They get separated, and one searches the country for the other one.",0,0,Nukie,en +2,Ariel,1988-10-21,69.0,,,tt0094675,,"Taisto Kasurinen is a Finnish coal miner whose father has just committed suicide and who is framed for a crime he did not commit. In jail, he starts to dream about leaving the country and starting a new life. He escapes from prison but things don't go as planned...",0,0,Ariel,fi +24486,Jack the Ripper,1988-10-21,182.0,,,tt0095388,,"Jack the Ripper was a 1988 two-part television movie/mini-series portraying a fictionalized account of the hunt for Jack The Ripper, the killer responsible for the Whitechapel murders of 1888. The series coincided with the 100th anniversary of the murders. Using historical characters involved in the genuine 1888 hunt for the killer, the film was written by Derek Marlowe and David Wickes",0,0,Jack the Ripper,en +10585,Child's Play,1988-11-08,87.0,,10455,tt0094862,Chucky is one mean S.O.B.,"A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed with the soul of a serial killer.",9000000,44196684,Child's Play,en +11216,Cinema Paradiso,1988-11-17,124.0,,,tt0095765,"A celebration of youth, friendship, and the everlasting magic of the movies.","A filmmaker recalls his childhood, when he fell in love with the movies at his village's theater and formed a deep friendship with the theater's projectionist.",0,11990401,Nuovo Cinema Paradiso,it +362151,Nuoruuteni savotat,1988-11-18,,,,tt0095764,,,0,0,Nuoruuteni savotat,fi +12144,The Land Before Time,1988-11-18,69.0,,19163,tt0095489,A new adventure is born.,"An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each one a different species, and they encounter several obstacles as they learn to work together in order to survive.",12300000,84460846,The Land Before Time,en +38982,Fresh Horses,1988-11-18,105.0,,,tt0095178,Love doesn't have to last a lifetime.,"A Cincinnati college student breaks off his engagement to his wealthy fiancée after he falls in love with a backwoods Kentucky girl he meets at a party. She says she's 20, but he finds out she's 16 and married to an abusive husband.",0,0,Fresh Horses,en +40555,Full Moon in Blue Water,1988-11-23,95.0,,,tt0095186,,"Floyd, the owner of a bar on the Texas coast, has been depressed for a year after his wife disappeared in a swimming accident. He lives with his senile father-in-law ""The General"" and is helped by Jimmy, a former asylum inmate, and the good-natured Louise. The bar is rapidly losing money and Charlie wants to buy it cheaply before it becomes publicly known that a nearby bridge is to be built. Louise offers her savings to go into partnership with Floyd, but Floyd decides to sell when he is forced to pay his back taxes.",0,0,Full Moon in Blue Water,en +46572,Big Man - An Unusual Insurance,1988-11-25,91.0,,293196,tt0098134,,,0,0,Big Man: Polizza droga,de +25998,Men Behind the Sun,1988-12-01,105.0,,,tt0093170,,"The film is a graphic depiction of the war atrocities committed by the Japanese at Unit 731, the secret biological weapons experimentation unit of the Imperial Japanese Army during World War II. The film details the various cruel medical experiments Unit 731 inflicted upon the Chinese and Soviet prisoners at the tail-end of the war.",0,0,黑太陽731,en +31131,Outlaw of Gor,1988-12-01,89.0,,205145,tt0098048,,"An Earthman returns to the planet Gor, and fights against tyranny.",0,0,Outlaw of Gor,en +274991,Mister Designer,1988-12-01,103.0,,,tt0157713,,A famous artist strives to find the secret of eternal life through the beautiful mannequins he creates.,0,0,Господин оформитель,ru +33172,Watchers,1988-12-02,91.0,,,tt0096425,It started as a secret experiment... It ended up as a new breed of terror.,"A boy takes in a stray dog, later finding out that its an ultra-intelligent runaway from a genetic research lab. Unknow to him, the dog is being stalked by another escaped creature thats not quite so friendly.",0,0,Watchers,en +10396,Tequila Sunrise,1988-12-02,115.0,,,tt0096244,A business on the line. A friendship on the edge. A woman caught in the middle.,"In a seaside California town, best friends Mac and Nick are on opposite sides of the law. Mac is a former drug dealer trying to clean up his act, while Nick is a high-profile detective trying to take down a Mexican drug lord named Carlos. Soon Nick's loyalties are put to the test when he begins an affair with restaurateur Jo Ann -- a love interest of Mac's -- unwittingly leading his friend into a police-orchestrated trap.",23000000,0,Tequila Sunrise,en +59735,Cameron's Closet,1988-12-02,87.0,,,tt0097008,A new place to look for terror.,"A father who experiments with his sons psychokinetic powers, is unaware that these experiments release a demon from hell, which lives in his sons closet, preparing to take over the young boys soul.",7000000,136203,Cameron's Closet,en +71393,Cold Summer of 1953,1988-12-03,101.0,,,tt0095441,,"In 1953, the year Stalin died, many prisoners (some political, but mostly common criminals) were released from the Soviet Gulags. This is the story of a remote settlement which was under attack by a bunch of these recently-released blood-thirsty thugs in the summer of 1953, and the townspeople, along with a two political prisoners, who try to stop them.",0,0,Холодное лето пятьдесят третьего,ru +32038,Tommy Tricker and the Stamp Traveller,1988-12-08,105.0,,,tt0096282,,"When the joker Tommy Tricker plays some practical jokes on some of his friends, his best friend Ralph, a stamp collector, discovers the secret of ""stamp travel"" to make him travel around the world on a stamp to bring back the mysterious Charles Merriweather, who never returned on a stamp for 75 years.",0,0,Tommy Tricker and the Stamp Traveller,en +72984,Hansel and Gretel,1988-12-10,84.0,,,tt0093144,They lost their way...but found a magical adventure!,Hansel and Gretel tells the tale of two young children driven from home by their scolding mother. Losing their way in the dark forest they stumble upon the cottage of a kindly old woman. But is this kindly old woman everything she seems...?,0,0,Hansel and Gretel,en +15592,Beaches,1988-12-21,123.0,,,tt0094715,Some Friendships Last Forever,"A privileged rich debutante and a cynical struggling entertainer share a turbulent, but strong childhood friendship over the years.",0,57041866,Beaches,en +26642,The Dark Side of the Sun,1988-12-21,101.0,,,tt0118930,They needed a miracle for their love to survive,He risks it all for the love of a lifetime!,0,0,The Dark Side of the Sun,en +20123,Time of the Gypsies,1988-12-21,142.0,,,tt0097223,,"In this luminous tale set in the former Yugoslavia, Perhan, an engaging young Romany with telekinetic powers, is seduced by the quick-cash world of petty crime that threatens to destroy him and those he loves.",0,0,Dom za vešanje,sh +105760,The Tribulations of Balthazar Kober,1988-12-26,115.0,,,tt0095729,,"Story about the young Balthazar thrown from one remarkable event to the other. On his way through a plague hit the landscape, he meets the Kabbalists, priests - and himself.",0,0,Niezwykla podróz Baltazara Kobera,pl +56162,Rosalie Goes Shopping,1989-01-01,94.0,,,tt0098224,"When You're $100,000 In Debt, It's Your Problem. When You're $1,000,000 In Debt... It's The Bank's.","Rosalie loves to shop too much to let a little thing like no money stop her. When the local shopkeepers no longer take her bad checks or bad credit cards, she's reduced to stealing from one family member to buy presents for others. It's looking pretty bleak until her daughter pushes her into buying a 'guilt gift' of a PC, complete with modem. Master shopper becomes master hacker, and Rosalie is back on top.",0,0,Rosalie Goes Shopping,en +44338,Balance,1989-01-01,7.0,,,tt0096880,A group of fishermen on a precariously balanced platform fight over a trunk.,"The setting is on a floating platform where a group of evenly and carefully placed men live. Each man is aware that the platform is not stable and in order not to fall to their deaths, they maintain a careful balance of weight to prevent the platform from tipping too far and cause them all to fall.",0,0,Balance,de +216046,Revenge,1989-01-01,100.0,http://worldcinemafoundation.org/films/revenge,,tt0102497,,"Enraged, a teacher murders a young female pupil. Over the years, another boy is bred for one sole purpose: to avenge his sister’s death.",0,0,Mest',ru +69898,The Karen Carpenter Story,1989-01-01,88.0,,,tt0097648,She'd only just begun... and suddenly it was over.,"Story of the meteoric rise and sudden fall of Karen Carpenter, who became a famous singer before battling anorexia and bulimia. This made-for-TV movie is the authorized version of the life of Karen Carpenter and was made with the approval of Richard Carpenter and the Carpenter family.",0,0,The Karen Carpenter Story,en +121888,Bloody Psycho,1989-01-01,90.0,,,tt0157412,,"This is one of the five films legendary director Lucio Fulci supervised in 1989 to re-use some of the gory bits for his 1990 gorefest ""A Cat in the Brain"". ""Bloody Psycho"" features a haunted castle plus wimpy doctor Vogler,who is performing some sort of a psychic therapy on lesbian owner of the place.",0,0,Bloody Psycho,it +48846,The Sweet House of Horrors,1989-01-01,82.0,,,tt0097221,,"A murdered couple return from the beyond to care for their two young children, as well as seek revenge against their killer, accept their children's step parents, and try to prevent their house from being sold.",0,0,La dolce casa degli orrori,it +39992,House of Clocks,1989-01-01,84.0,,,tt0097021,,"A gang of vicious young punks break into the house of an elderly couple, terrorize, and then murder them. Suddenly, the clocks in the house begin to run backwards, and the dead come back for revenge!",0,0,La casa nel tempo,it +321142,That Summer of White Roses,1989-01-01,99.0,,,tt0098463,It was an ordinary summer. Then the Germans came.,"World War II finally reaches a Yugoslavian lake, where a lifeguard shelters a refugee and her son.",0,0,Đavolji raj,hr +254268,Club of the Laid Off,1989-01-01,25.0,,,tt0777905,,"Laid-off old mannequins spend their cracked and broken lives in an old, abandoned warehouse. New mannequins are brought to the warehouse. They are old as well, but from a younger generation. The two groups must live together, but it's not easy at all.",0,0,Klub odlozenych,en +60014,The Child and the Policeman,1989-01-01,0.0,,,tt0096884,,,0,0,Il bambino e il poliziotto,it +41932,Easy Wheels,1989-01-01,94.0,,,tt0097260,,A group of leather-clad bikers are on the trail of the female bikers who are stealing babies all over the state and selling them on the black market.,0,0,Easy Wheels,en +216647,Aschenputtel,1989-01-01,,,,tt0099065,,,0,0,Aschenputtel,de +24709,Lost in the Barrens,1990-01-01,91.0,,,tt0100058,,The story of two very different boys in the Canadian wilderness. They must learn to depend on each other in order to survive.,0,0,Lost in the Barrens,en +25005,Eddie and the Cruisers II: Eddie Lives!,1989-01-01,104.0,,186102,tt0097262,"The Legend, The Music, The Man.","In the sixties, Eddie and the cruisers was the hottest band around. But the tragic death of its lead singer broke the band up. Only Eddie is not dead. He works as a carpenter in Montreal. His love of music forces him to create a new band which will have to struggle with its anonymity.",0,0,Eddie and the Cruisers II: Eddie Lives!,en +156141,Stalingrad,1989-01-01,196.0,,,tt0174240,,The WWII pivotal battle of Stalingrad is shown through the eyes of the soldiers and officers on both sides of the war.,0,0,Сталинград,ru +46658,Night of the Sharks,1989-01-01,85.0,,,tt0100273,"Still waters run deep, dark and deadly.","David must fight for his life against the gangsters who killed his brother for a CD filled with proof of their illegal activities. When David gets possession of the CD they go down to Mexico where David lives as a shark hunter. Who will get David first, the gangsters or the shark?",0,0,Night of the Sharks,fr +32059,The January Man,1989-01-13,97.0,,,tt0097613,Catching a serial killer takes a seriously twisted cop.,"Nick and Frank Starkey were both policemen. A scandal forced Nick to leave the force, now a serial killer has driven the police to take him back. A web that includes Frank's wife, bribery, and corruption all are in the background as Nick tries to uncover the secret of where the killer will strike next, and finally must lay a trap without the police.",0,0,The January Man,en +11607,DeepStar Six,1989-01-13,105.0,,,tt0097179,,The crew of an experimental underwater nuclear base are forced to struggle for their lives when their explorations disturb a creature who threatens to destroy their base.,0,8143225,DeepStar Six,en +10129,Herbstmilch,1989-01-19,111.0,,,tt0095295,,No overview found.,0,0,Herbstmilch,de +29345,The Terror Within,1989-01-20,90.0,,,tt0096246,It Wants To Get Out!,"Experiments in biological warfare have destroyed all but a few remnants of the human race. Alone in a lab, eight students work feverishly to create a vaccine before they are forced outside in search for food. It is then that the surviving scientists discover creatures mutated by the plague. Now they prepare to do battle against their worst fear: The Terror Within.",0,858591,The Terror Within,en +10754,A Short Film About Killing,1989-01-26,84.0,,,tt0095468,,"Jacek climbs into the taxi driven by Waldemar, tells him to drive to a remote location, then brutally strangles him, seemingly without motive.",0,0,Krótki film o zabijaniu,pl +31150,Intruder,1989-01-27,88.0,,,tt0095379,A new dimension in terror.,The overnight stock crew of a local supermarket find themselves being stalked and slashed by a mysterious maniac.,130000,0,Intruder,en +24077,The Tall Guy,1989-02-01,92.0,,,tt0098436,Scandalous! Shocking! Outrageous! Finally a comedy you can look up to.,An American actor in England tries to find love and work.,0,0,The Tall Guy,en +35826,Wicked Stepmother,1989-02-03,90.0,,,tt0098649,Which Witch is which?,"A mother/daughter pair of witches descend on a yuppie family's home and cause havoc, one at a time since they share one body & the other must live in a cat the rest of the time. Now it's up to the family's mother, a private detective and a suspended police officer to try and stop the witches.",0,0,Wicked Stepmother,en +55853,Gang of Four,1989-02-08,160.0,,,tt0094709,,Four inseparable high-school seniors gain from each other the courage to face the harsh realities of their rapidly approaching adulthood.,0,0,La bande des quatre,fr +10344,The Fly II,1989-02-10,105.0,,109609,tt0097368,Like Father Like Son,"Martin Brundle, born of the human/fly, is adopted by his father's place of employment (Bartok Inc.) while the employees simply wait for his mutant chromosomes to come out of their dormant state.",0,38903179,The Fly II,en +16560,Tap,1989-02-12,111.0,,,tt0098442,"Sometimes, no matter what, you can't escape the rhythm.","Max Washington has just been released from prison after serving time for burglary. He returns to his old hangout, a hoofer club. His old girl friend, Amy, who still works at the club as a Tap instructor, is less than thrilled to see him. Her father, Little Mo, is happy to see him, because he has plans for a show involving Max. In addition, Max's old partners in crime have another job for him.",0,9114702,Tap,en +37055,Elephant,1989-02-13,39.0,,,tt0097270,,A depiction of a series of violent killings in Northern Ireland with no clue as to exactly who is responsible.,0,0,Elephant,en +27916,Redneck Zombies,1989-02-14,84.0,,,tt0093833,"They’re tobacco chewin’, gut chompin’, cannibal kinfolk from Hell!",A barrel of radioactive waste is lost out in the woods. Some demented rednecks find it and use it as part of their still. Everybody who drinks from the liquor they produced turns into a zombie.,0,0,Redneck Zombies,en +31863,True Believer,1989-02-17,105.0,,,tt0098524,,"Eddie Dodd is a burnt out former civil rights lawyer who now specializes in defending drug dealers. Roger Baron, newly graduated from law school, has followed Eddie's great cases and now wants to learn at his feet. With Roger's idealistic prodding, Eddie reluctantly takes on a case of a young Korean man who, according to his mom, has been in jail for eight years for a murder he did not commit.",0,0,True Believer,en +25682,American Ninja 3: Blood Hunt,1989-02-24,89.0,,91945,tt0096804,,"Jackson is back, and now he has a new partner, karate champion Sean, as they must face a deadly terrorist known as ""The Cobra"", who has infected Sean with a virus. Sean and Jackson have no choice but to fight the Cobra and his bands of ninjas.",0,0,American Ninja 3: Blood Hunt,fr +28165,The Toxic Avenger Part II,1989-02-24,96.0,,32135,tt0098503,,"The Toxic Avenger is lured to Tokyo, Japan by the evil corporation Apocalypse Inc. So while the Toxic Avenger is fighting crime in Tokyo, Apocalypse Inc. spread evil in Tromaville.",0,0,The Toxic Avenger Part II,en +7237,Wizards of the Lost Kingdom II,1989-03-01,79.0,,,tt0090334,,No overview found.,0,0,Wizards of the Lost Kingdom II,en +11895,Police Academy 6: City Under Siege,1989-03-09,84.0,,9338,tt0098105,The Grads are going undercover in the city to unmask the mastermind of crime.,"Our favourite police men are called together to deal with a gang who rob banks and jewelers. Using their various talents as well as their extraordinary luck, the crooks stand no chance against our men and women wearing blue..",0,11567217,Police Academy 6: City Under Siege,en +3064,Chances Are,1989-03-10,108.0,,,tt0097044,,"Louie Jeffries is happily married to Corinne. On their first anniversary, Louie is killed crossing the road. Louie is reincarnated as Alex Finch, and twenty years later, fate brings Alex and Louie's daughter, Miranda, together. It's not until Alex is invited to Louie's home that he begins to remember his former life, wife and best friend. Of course, there's also the problem that he's attracted to Louie's/his own daughter.",0,0,Chances Are,en +77292,Resurrected,1989-03-12,96.0,,,tt0098190,,"A Falklands War soldier missing, believed dead, turns up claiming amnesia.",0,0,Resurrected,en +126300,Kilometre Zero,2005-05-12,91.0,,,tt0459668,,"Set during the Iraq-Iran war in the 80s, the film tells of a tragicomic road trip set in Iraq's Kurdistan.",0,0,Kilomètre zéro,en +14372,Leviathan,1989-03-17,98.0,,,tt0097737,The true meaning of fear,Underwater deep-sea miners encounter a Soviet wreck and bring back a dangerous cargo to their base on the ocean floor with horrifying results. The crew of the mining base must fight to survive against a genetic mutation that hunts them down one by one.,25000000,15704614,Leviathan,en +49788,Slaves of New York,1989-03-18,124.0,,,tt0098347,, ,0,0,Slaves of New York,en +11475,Leningrad Cowboys Go America,1989-03-24,78.0,,187736,tt0097728,,"The Leningrad Cowboys, a group of Finnish musicians, and their manager, travel to America seeking fame and fortune. As they cross the country, trying to get to a wedding in Mexico, they are followed by the village idiot, who wishes to join the band.",0,0,Leningrad Cowboys Go America,en +389854,The Last Ferry,1989-03-25,0.0,,,tt0100308,,Directed by,0,0,Ostatni prom,en +173638,When the Whales Came,1989-03-28,100.0,,,tt0098638,A story so enchanting you'll wish it were real.,"A pair of children befriend an eccentric old man, who lives isolated on the far shore of their island home. But it turns out that the old man knows a terrible secret about the island and the whales who sometimes come. Meanwhile WWI is making life hard in the village.",0,0,When the Whales Came,en +14550,The Dream Team,1989-04-07,113.0,,,tt0097235,Four guys on a field trip to reality.,This morning they were playing ping-pong in the hospital rec room. Now they're lost in New York and framed for murder. This was never covered in group therapy.,0,28890240,The Dream Team,en +10134,Cyborg,1989-04-07,86.0,,98853,tt0097138,He's the First Hero of the 21st Century... And He's Our Only Hope.,A martial artist hunts a killer in a plague-infested urban dump of the future.,500000,10166459,Cyborg,en +10493,Dead Calm,1989-04-07,96.0,,,tt0097162,High seas. Deep terror. Try to stay calm.,"An Australian couple take a sailing trip in the Pacific to forget about a terrible accident. While on the open sea, in dead calm, they come across a ship with one survivor who is not at all what he seems.",10000000,7825000,Dead Calm,en +64183,Parent Trap III,1989-04-09,86.0,,216395,tt0098066,,"When Jeff plans to marry again, his triplet daughters Megan, Lisa and Jessie try to bring him together with Susan.",0,0,Parent Trap III,en +30352,Disorganized Crime,1989-04-14,98.0,,,tt0097211,,"Lou Diamond Phillips and Fred Gwynne team up with a gang of professional criminals who have everything it takes to rob a bank. The only things they do have going for them are a cop and his partner, who are dumber than they are! By the time the gang hits the bank vault, it's a safe bet there's going to be organized insanity and disorganized crime!",0,0,Disorganized Crime,en +10222,Kickboxer,1989-04-20,97.0,,105322,tt0097659,An Ancient Sport Becomes A Deadly Game.,"If your enemy refuses to be humbled... Destroy him. Accompanied by his brother Kurt (Van Damme), American kickboxing champion Eric Sloane (Dennis Alexio), arrives in Thailand to defeat the Eastern warriors at their own sport. His opponent: ruthless fighter and Thai champion, Tong Po. Tong not only defeats Eric, he paralyzes him for life. Crazed with anger, Kurt vows revenge.",1500000,14697005,Kickboxer,en +2323,Field of Dreams,1989-04-21,107.0,,,tt0097351,"If you believe the impossible, the incredible can come true.","Ray Kinsella is an Iowa farmer who hears a mysterious voice telling him to turn his cornfield into a baseball diamond. He does, but the voice's directions don't stop -- even after the spirits of deceased ballplayers turn up to play.",0,84431625,Field of Dreams,en +12236,Speed Zone,1989-04-21,94.0,,101688,tt0098369,A comedy that's over the limit and beyond the law!,"An illegal race that takes place over the United States and nothing will stop this bunch of racers except for the occasional cop or a damsel in distress. Jackie Chan's car is not in this one, but many new cars make up for that. Who will win? Who will crash? Who will not even finish? Sit down and buckle up for the ride of your life.",0,3077361,Speed Zone,en +182843,Mortacci,1989-04-25,,,,tt0097913,,,0,0,Mortacci,it +59349,Après la guerre,1989-04-26,,,,tt0096828,,,0,0,Après la guerre,fr +14916,Moontrap,1989-04-28,92.0,,,tt0097911,"14,000 Years It Has Waited For Us","The Space Shuttle returns to earth, but some of the equipment brought back on it begins to behave strangely. Scientists are unsure what is happening, and decide to take all necessary precautions.",0,0,Moontrap,en +53524,"Danny, The Champion of the World",1989-04-29,99.0,,,tt0097152,,"Somewhere in England, in the Autumn of 1955, a widowed father and his son live an idyllic life together. Only their gas station happens to sit on a piece of land that a local developer wants to buy. And when he won't take no for an answer, and sets government inspectors and social works onto Danny and his father, Danny and his father decide to get even with Hazell and his pheasant- shooting friends in a manner in keeping with their own family tradition.",0,0,Roald Dahl's Danny the Champion of the World,en +46695,Witchcraft,1989-05-02,95.0,,203029,tt0245567,After 300 years they are back.,A new mother and her child move into her mother-in-law's dark old mansion. She soon begns to suspect that neither the house nor her mother-in-law are quite what they seem to be.,0,0,Witchcraft,en +53150,C.H.U.D. II: Bud the Chud,1989-05-05,85.0,,257571,tt0097001,This C.H.U.D.'s for you!,"A military experiment to create a race of super-warriors go awry, and legions of murderous zombies are unleased upon a surburan neighborhood.",0,0,C.H.U.D. II: Bud the Chud,en +19157,Going Overboard,1989-05-11,99.0,,,tt0096870,"In the world of comedy, it's sink or swim.",A struggling young comedian takes a menial job on a cruise ship where he hopes for his big chance to make it in the world of cruise ship comedy.,0,0,Going Overboard,en +19142,The Return of Swamp Thing,1989-05-11,84.0,,87228,tt0098193,Why can't men be more like plants?,"The Swamp Thing returns to battle the evil Dr. Arcane, who has a new science lab full of creatures transformed by genetic mutation, and chooses Heather Locklear as his new object of affection.",0,192816,The Return of Swamp Thing,en +11185,"See No Evil, Hear No Evil",1989-05-12,103.0,,,tt0098282,MURDER! The blind guy couldn't see it. The deaf guy couldn't hear it. Now they're both wanted for it.,"A murder takes place in the shop of David Lyons, a deaf man who fails to hear the gunshot being fired. Outside, blind man Wally Karue hears the shot but cannot see the perpetrator. Both are arrested, but escape to form an unlikely partnership. Being chased by both the law AND the original killers, can the pair work together to outwit them all?",18000000,46908987,"See No Evil, Hear No Evil",en +56669,Hider in the House,1989-05-13,104.0,,,tt0097503,You can't lock him out. He's already in.,A deranged man hides in the attic of a new house and becomes obsessed with the unsuspecting family that moves in.,0,0,Hider in the House,en +185987,Black Rain,1989-05-13,123.0,,,tt0097694,,"The story of the aftermath of the Hiroshima bombing, based on Masuji Ibuse's novel.",0,0,黒い雨,ja +13173,The Ten,2007-08-03,96.0,,,tt0811106,"If He'd meant the commandments literally, He'd have written them in stone.","Ten stories, each inspired by one of the ten commandments.",0,0,The Ten,en +68347,Food of the Gods II,1989-05-18,91.0,,,tt0097371,It's their party... you can die if you want to.,"A growth hormone experiment gets out of hand, when the the resulting giant man-eating rats escape, reaking havoc on the unsuspecting campus. Much blood-letting follows.",0,0,Food of the Gods II,en +24739,Miracle Mile,1989-05-19,87.0,,,tt0097889,There are 70 minutes to the end of the world. Where can you hide?,"After 30 years of searching, Harry (Edwards) has finally met the girl of his dreams. Unfortunately, before they even have a chance to go on their first date, Harry intercepts some chilling news: WWIII has begun and nuclear missiles will destroy Los Angeles in less than an hour!",3000000,1145404,Miracle Mile,en +20307,Renegades,1989-06-02,106.0,,,tt0098188,,"Buster McHenry (Sutherland) is as an undercover agent for the police. His mission involves him in a robbery. Buster gets shot but Hank Storm (Phillips), an Indian, helps Buster. Since Hank wants a spear in the possession of the criminals that Buster is after, they team up.",0,0,Renegades,en +172,Star Trek V: The Final Frontier,1989-06-09,107.0,,151,tt0098382,Adventure and imagination will meet at the final frontier.,Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.,30000000,70200000,Star Trek V: The Final Frontier,en +61904,Lady Terminator,1989-06-10,82.0,,,tt0095483,She Mates... Then She Terminates,"The spirit of an ancient evil queen posesses the body of a young anthropological student, who then goes on a murderous rampage.",0,0,Pembalasan ratu pantai selatan,id +25074,Mr. Canton and Lady Rose,1989-06-15,127.0,,,tt0098019,,A country boy becomes the head of a gang through the purchase of some lucky roses from an old lady. He and a singer at the gang's nightclub try to do a good deed for the old lady when her daughter comes to visit.,0,0,奇蹟,cn +2978,Ghostbusters II,1989-06-15,108.0,,2980,tt0097428,We're back!,"Five years after they defeated Gozer, the Ghostbusters are out of business. When Dana begins to have ghost problems again, the boys come out of retirement to aid her and hopefully save New York City from a new paranormal threat.",37000000,215394738,Ghostbusters II,en +9354,"Honey, I Shrunk the Kids",1989-06-22,93.0,,72119,tt0097523,"The most astonishing, innovative, backyard adventure of all time!",The scientist father of a teenage girl and boy accidentally shrinks his and two other neighborhood teens to the size of insects. Now the teens must fight diminutive dangers as the father searches for them.,32000000,222724172,"Honey, I Shrunk the Kids",en +8491,Weekend at Bernie's,1989-07-05,97.0,,118221,tt0098627,"Bernie may be dead, but he's still the life of the party!","Two friends are invited for a weekend to a luxury island with their boss. The boss gets shot and nobody seems to notice, except for the two friends. In order not to become suspects of murder they treat the body as a puppet and make people believe he's still alive. The killer wants to do his job so when he is informed that the stiff is still alive he's got to shoot him again, and again, and again.",6500000,30218387,Weekend at Bernie's,en +709,Licence to Kill,1989-07-07,133.0,http://www.mgm.com/view/movie/1111/License-to-Kill/,645,tt0097742,His bad side is a dangerous place to be.,James Bond and his American colleague Felix Leiter arrest the drug lord Sanchez who succeeds in escaping and takes revenge on Felix and his wife. Bond knows but just one thing: revenge.,32000000,156167015,Licence to Kill,en +54825,Creature Comforts,1989-07-15,5.0,,,tt0099317,,"Interviews with the public are used to put words in animal mouths, in the Oscar-winning film from the creator of Wallace and Gromit.",500000,0,Creature Comforts,en +11959,UHF,1989-07-21,97.0,,,tt0098546,"A lot of TV stations have forgotten what ""quality"" means, but not Channel 62. They NEVER knew what it meant.",The eccentric new manager of a UHF television channel tries to save the station from financial ruin with an odd array of programming.,5000000,0,UHF,en +38043,Shag,1989-07-21,98.0,,,tt0098300,"On a summer weekend in 1963, four girlfriends made memories that would last a lifetime.","Summer of 1963. Carson is getting married to her boyfriend so her friends Melaina, Pudge and Luanne take her to Myrtle Beach for one last irresponsible weekend.",0,0,Shag,en +6951,Turner & Hooch,1989-07-28,100.0,,,tt0098536,The Oddest Couple Ever Unleashed!,"Scott Turner has 3 days left in the local police department before he moves to a bigger city to get some ""real"" cases, not just misdemeanors. Then Amos Reed is murdered, and Scott Turner sets himself on the case. The closest thing to a witness in the case is Amos Reed's dog, Hooch, which Scott Turner has to take care of if it's going to avoid being ""put to sleep"".",0,71079915,Turner & Hooch,en +87302,Alien Space Avenger,1989-08-01,80.0,,,tt0101296,"They can run, they can hide, they can kill, but will they die?","In 1939 a spaceship carrying four alien escaped prisoners crash-lands on Earth and the aliens take over the bodies of four locals. Fifty years later the aliens find out that an artist has written a comic book called ""Space Avenger,"" which they believe is about them. They go to New York to try to kill the artist.",0,0,Alien Space Avenger,en +12622,Violent Cop,1989-08-12,103.0,,,tt0098360,,Detective Azuma is a Dirty-Harry style rogue cop who often uses violence and unethical methods to get results.,0,1960,その男、凶暴につき,ja +24254,Rude Awakening,1989-08-16,98.0,,,tt0098230,They came back after 20 years to find nobody wants to save the world-- They just want to buy it.,"In the later 1960s, two hippies are forced to leave their friends as they are wanted by the FBI, who sees them as criminals. They hide in the jungle for 20 years, secluded from the outside world. In the later 1980s, the find out that a secret war is about to start in the US, and decide to return to New York to tell someone about it.",0,3169719,Rude Awakening,en +46786,Homer and Eddie,1989-08-17,102.0,,,tt0097521,,"A retarded man get help from a sociopathic woman when tries to reunite with his dying father, who years earlier disowned him.",0,0,Homer and Eddie,en +92496,Ninja Academy,1989-08-17,120.0,,,tt0100265,"You don't have to be crazy to join, but if you are, it sure helps...","""Police Academy"" styled film offers its laughs at the expense of students of the obvious school for ninjas.",0,0,Ninja Academy,en +10142,Casualties of War,1989-08-18,113.0,,,tt0097027,Even in war... murder is murder.,"During the Vietnam War, a soldier finds himself the outsider of his own squad when they unnecessarily kidnap a female villager. Based on the actual events of an incident on Hill 192 in November, 1966.",22500000,18671317,Casualties of War,en +476,Drugstore Cowboy,1989-09-09,100.0,,,tt0097240,,"Bob and his friends Dianne, Rick and Nadine have been drug addicts for years and live from one high to the next. Gus Van Sant attempts to show an intimate look into the lives of heroin addicts with his film Drugstore Cowboy.",2500000,4729352,Drugstore Cowboy,en +35632,Laser Mission,1989-11-01,84.0,,,tt0099978,A race for world power - who will succeed: CIA or KGB,"A CIA agent is sent to get Professor Braun before the KGB can seize him as the Prof's knowledge, together with a recently stolen diamond, could be used to make a laser cannon.",0,0,Laser Mission,en +505,Johnny Handsome,1989-09-12,94.0,,,tt0097626,"They changed his looks, his life and his future... but they couldn't change his past .","A career criminal who has been deformed since birth is given a new face by a kindly doctor and paroled from prison. It appears that he has gone straight, but he is really planning his revenge on the man who killed his mentor and sent him to prison.",20000000,7237794,Johnny Handsome,en +32855,In Country,1989-09-15,120.0,,,tt0097570,,"Samantha Hughes, a teenaged Kentucky girl, never knew her father, who died in Vietnam before her birth. Samantha lives with her uncle Emmett, who also served in Vietnam. Emmett hangs around with Tom, Earl, and Pete, three other Vietnam vets who, like Emmett, all have problems of one kind or another that relate to their war experiences. Samantha,becomes obsessed with finding out about her father.",18,0,In Country,en +84071,Night Game,1989-09-15,95.0,,,tt0097971,Sometimes the only thing more dangerous than hunting down a murderer is... finding him!,A police detective tracks a serial killer who is stalking young women on a beach front after each game that a baseball pitcher wins,0,337812,Night Game,en +111605,True Love,1989-09-15,104.0,,,tt0098528,,"Donna and Michael are getting married. But first, they have to plan the reception, get the tux, buy the rings, and cope with their own uncertainty about the decision. Michael fears commitment. Donna has her doubts about Michael's immaturity. Both are getting cold feet.",0,0,True Love,en +159636,Raakh,1989-09-17,153.0,http://www.imdb.com/title/tt0290820/,,tt0290820,,"After witnessing the public humiliation & abuse of a female friend, a young man vows to avenge her by going after the hoodlums responsible. he is guided by a burnt out, cynical cop, who shows him the ropes as well as the realities of vigilante life.",0,0,Raakh,en +56725,One Man Force,1989-09-21,92.0,,,tt0098026,No one enforces the law like he does!,"In this action packed film, an L.A. cop speeds off to get revenge upon the dirty drug-dealing dogs who killed his partner",0,0,One Man Force,en +75892,Blood and Sand,1989-09-22,113.0,,,tt0098251,His courage brought them together. Her desire tore them apart.,"Remake of the tale of an acclaimed matador who finds himself involved with a beautiful woman, jeopardizing both his marriage and career.",0,0,Sangre y arena,de +42552,Bloodfist,1989-09-22,85.0,,121067,tt0096952,,"To avenge the brutal murder of his brother, Jake Ray journeys to the Philippines, where his search for truth finds him battling both in and out of the ring. But the weapons are always the same: bare fists, bare feet. And the rules never change: last man standing wins.",0,0,Bloodfist,en +197854,The Guyver: Bio-Booster Armor,1989-09-25,360.0,,,tt0143353,,"Sho and his friend Tetsurou stumble upon an odd alien artifact while walking through the woods. Then, the alien artifact breaks free of its metallic bonds and enters Sho's body, turning him into the Guyver. With this new power, Sho must do battle with the evil Chronos corporation and their genetically enhanced Zoanoids, who seek to get the Guyver back into their labs. No one close to Sho is safe from Chronos. He must fight.",0,0,強殖装甲ガイバー,ja +126754,The Forgotten One,1989-09-27,98.0,,,tt0099601,"She came from the past to reclaim her lost love, but first he must die!","A man moves into a house that is supposedly haunted. Although he is attracted to his pretty next-door neighbor, he finds himself being seduced by the spirit of a woman who had been killed in his house 100 years previously.",0,0,The Forgotten One,en +120637,Queen of Hearts,1989-10-01,112.0,,,tt0098153,,"Eddie Luca is the youngest son in a family of Italian immigrants who has moved to London. Beginning from nowhere, they open a cafe in an Italian neighbourhood. One day their father loses the cafe, the home and his wedding ring by gambling.",0,0,Queen of Hearts,en +18111,Bride of Re-Animator,1989-10-01,96.0,http://www.re-animatorfilms.com/BrideRe-Animator.html,98036,tt0099180,Date. Mate. Re-animate.,"Herbert West once again revives the dead. This time, he brings Dan's ex-girlfriend's heart back inside a 'perfect' body. Dr. Hill returns as the evil nemesis who lost his head.",2000000,0,Bride of Re-Animator,en +11361,Halloween 5: The Revenge of Michael Myers,1989-10-12,96.0,,91361,tt0097474,"Michael Lives, And This Time They're Ready!","Presumed dead after a shoot-out with the Haddonfield police, Michael Myers is secretly nursed back to health -- and returns a year later to kill again and once more targets his young niece, Jamie. Jamie is now recovering in the local children's hospital after attacking her stepmother and losing her voice. Her mental link with her evil uncle may be the key to uprooting her family tree.",5000000,11642254,Halloween 5: The Revenge of Michael Myers,en +260826,Jesus Christ's Horoscope,1989-10-12,90.0,,,tt0095422,,"Jancso emphasizes highly evocative and ambiguous imagery over dialog or exposition. Here he seems primarily interested in showing the painful, stunted lives of Hungary's intellectuals, who are shown as remaining silent and ineffectual during various political crises. There are several action sequences involving chases and shootouts, but since there's no clear narrative we're not sure how they relate to each other or to anything else. The film is, however, visually fascinating, with shots of police cars, horses, and naked bodies juxtaposed and extensive use of multiple video imagery.",0,0,Jézus Krisztus horoszkópja,en +69828,Breaking In,1989-10-13,94.0,,,tt0096976,,"Professional thief Ernie takes Mike on as an apprentice, but while Mike clearly has ""larceny in his heart"", it will take him a long time to get as good as Ernie.",0,0,Breaking In,en +27461,Fat Man and Little Boy,1989-10-20,127.0,,,tt0097336,The story of the extraordinary people who changed our world.,"This film reenacts the Manhattan Project, the secret wartime project in New Mexico where the first atomic bombs were designed and built.",0,0,Fat Man and Little Boy,en +18683,Shirley Valentine,1989-10-27,108.0,,,tt0098319,"No one thought she had the courage, the nerve, or the lingerie.","Wondering what has happened to herself, now feeling stagnant and in a rut, Shirley Valentine finds herself regularly talking to the wall while preparing her husband's chips and egg. When her best friend wins a trip-for-two to Greece Shirley begins to see the world, and herself, in a different light.",0,0,Shirley Valentine,en +369444,Ostatni dzwonek,1989-10-27,,,,tt0098035,,,0,0,Ostatni dzwonek,pl +155325,300 Miles to Heaven,1989-10-30,0.0,,,tt0096740,,"Film based on a true story dating back to 1985 when two Polish boys, a teenager and his little brother, escaped from communist Poland. Hiding beneath a lorry they reached Scandinavia - against all odds.",0,0,300 mil do nieba,pl +76202,Wait until spring Bandini,1989-11-01,100.0,,,tt0098615,,"Rocklin Colorado, 1925. A hard cold winter. Young Arturo Bandini loves his father Svevo, his mother Maria and his brothers. Even though his bricklayer father wastes the little money he has in the Imperial Poolhall and his time with the rich American widow, Hildegarde. Even though his beautiful and pious mother lets his father get away with that, even if his little brother wets the bed. Arturo loves them all. He also loves to play baseball, even though he has to wait until spring. And he also loves the movies ... and Rosa. But she doesn't love him ...",0,0,Wait until spring Bandini,en +30666,Stepfather II: Make Room For Daddy,1989-11-03,93.0,,138706,tt0098385,Tonight - Daddy's Coming Home - To Slice Up More Than Just The Cake!,"The Stepfather escapes an insane asylum and winds up in another town, this time impersonating a marriage counselor. Now he seems to have found the perfect future wife, with a stepson who loves him. However, other people try to get in his way to marry her. They are interfering! One by one the Stepfather eliminates anyone who stands in his way to a perfect family.",0,1519796,Stepfather II: Make Room For Daddy,en +72096,Bloodhounds of Broadway,1989-11-03,93.0,,,tt0096953,"When Life Was Glittering, Glamorous... And Dangerous...","This musical is based on four short stories by Damon Runyon. In one tale, gambler Feet Samuels sells his body to science just as he realizes that Hortense loves him and that he would rather live than die. In another story, Harriet's parrot is killed, and she has problems dealing with her loss. Then, there is a gambler, ""Right"", who has bloodhounds on his trail when he becomes a murder suspect. Finally, ""The Brain"" is bleeding profusely, and his friends search for a way to save his life through a blood transfusion.",4000000,0,Bloodhounds of Broadway,en +36672,Coming Out,1989-11-08,113.0,,,tt0097095,,"Reportedly the first film to come out of East Germany to deal openly with gay issues. Philipp, a closeted teacher is dating a female collegue to keep up appearances. One night, by 'accident' he stumbles into a gay bar, meets and promptly falls in love with a young man. Transformed by this love he is no longer afraid to face up to who he is.",0,0,Coming Out,de +50295,Crack House,1989-11-10,90.0,,,tt0097119,Getting in is easy... Getting out is pure hell.,"Rick and Melissa are a pair of young lovers hoping to get out of the slums for good and escape the poverty and crime their families and friends have gotten involved in. All this comes to an end when Rick feels he must rejoin his old gang to avenge the killing of his brother by a rival gang. In the course of getting even, Rick is arrested, leaving Melissa without anyone to protect her. She falls in with a crack dealer and quickly becomes addicted to the drug. When she gets sold to a drug kingpin by a minor dealer to pay off a debt, only Rick can save her.",0,0,Crack House,en +28774,Communion,1989-11-10,103.0,,,tt0097100,The true story of one man's terrifying journey into the unknown.,A novelist's wife and son see him changed by an apparent encounter with aliens in the mountains.,0,1919653,Communion,en +10860,Steel Magnolias,1989-11-15,119.0,,,tt0098384,The funniest movie ever to make you cry.,"This heart wrenching drama is about a beauty shop, in Louisana owned by Truvy, and the tragedies of all of her clients.",0,95904091,Steel Magnolias,en +42709,"Silent Night, Deadly Night III: Better Watch Out!",1989-11-17,90.0,,256296,tt0098331,"When Your Nightmare Ends, the Real Terror Begins!","Ricky Caldwell, the notorious 'Killer Santa Claus', awakens from a six-year coma after being kept alive on life-support by a slightly crazed doctor experimenting with ESP and other special abilities. Ricky targets a young, clairvoyant blind woman, named Laura, whom is traveling with her brother Chris, and his girlfriend Jerri to their grandmother's house for Christmas Eve, and Ricky decides to go after her, leaving a trail of dead bodies in his wake.",0,0,"Silent Night, Deadly Night III: Better Watch Out!",en +165,Back to the Future Part II,1989-11-20,108.0,http://www.backtothefuture.com/movies/backtothefuture2,264,tt0096874,"Roads? Where we're going, we don't need roads!","Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.",40000000,332000000,Back to the Future Part II,en +43281,Love Without Pity,1989-11-22,84.0,,,tt0098552,,"25 year-old Hippo doesn't have a job, doesn't study either but lives from the money his younger brother earns with dealing and from occasional Poker winnings.",0,0,Un monde sans pitié,en +205798,Another Chance,1989-11-23,99.0,,,tt0096824,,A womanizer tries to redeem himself to win over the girl of his dreams.,0,0,Another Chance,en +28169,The Toxic Avenger Part III: The Last Temptation of Toxie,1989-11-24,102.0,,32135,tt0098502,,"Toxie finds he has nothing to do as a superhero, as he has ridden his city of evil. So he decides to go to work for a major corporation, which he discovers may be the evilest of all his adversaries.",0,0,The Toxic Avenger Part III: The Last Temptation of Toxie,en +239798,"Water, Wind, Dust",1989-11-27,75.0,,,tt0096747,,After two years a boy come back home but his village is now a ghost town due to the drought.,0,0,آب باد خاک,fa +70874,Do Not Leave...,1989-12-06,140.0,,,tt0271082,,"A fairytale about the Princess, the Musician, the Chancellor and a blue rose which forces everyone to tell the truth.",0,0,Не покидай...,ru +249,The War of the Roses,1989-12-08,116.0,,,tt0098621,Once in a lifetime comes a motion picture that makes you feel like falling in love all over again. This is not that movie.,"The Roses, Barbara and Oliver, live happily as a married couple. Then she starts to wonder what life would be like without Oliver, and likes what she sees. Both want to stay in the house, and so they begin a campaign to force each other to leave. In the middle of the fighting is D'Amato, the divorce lawyer. He gets to see how far both will go to get rid of the other, and boy do they go far.",0,0,The War of the Roses,en +403,Driving Miss Daisy,1989-12-13,99.0,,,tt0097239,"The funny, touching and totally irresistible story of a working relationship that became a 25-year friendship.",The story of an old Jewish widow named Daisy Werthan and her relationship with her colored chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.,7500000,145793296,Driving Miss Daisy,en +2604,Born on the Fourth of July,1989-12-20,145.0,,,tt0096969,A story of innocence lost and courage found.,"The biography of Ron Kovic. Paralyzed in the Vietnam war, he becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.",14000000,161001698,Born on the Fourth of July,en +16182,The Woman in Black,1989-12-24,100.0,,,tt0098672,,"When a friendless old widow dies in the seaside town of Crythin, a young solicitor is sent by his firm to settle the estate. The lawyer finds the townspeople reluctant to talk about or go near the woman's dreary home and no one will explain or even acknowledge the menacing woman in black he keeps seeing.",0,0,The Woman in Black,en +40258,Baby Blood,1990-01-01,82.0,,,tt0096871,It's time to feed the baby.,A parasite crawls into the uterus of an abused woman (Yanka) and begins to demands human blood.,0,0,Baby Blood,fr +43761,Hamoun,1990-01-01,120.0,,,tt0099729,,"Hamoon's wife is leaving him. He is also unsuccessfully trying to finish his Ph.D. thesis. He is forced to reexamine his life. In a series of flashbacks and dreams, Hamoon tries to figure out what he did wrong.",0,0,Hamoun,fa +44257,Industrial Symphony No. 1: The Dream of the Brokenhearted,1990-01-01,50.0,,,tt0099844,,"After her boyfriend ends their relationship, the dreamself of a heartbroken woman floats through the air over an industrial wasteland singing ballads of love.",0,0,Industrial Symphony No. 1: The Dream of the Brokenhearted,en +302472,Dhadakebaaz,1990-01-01,2.0,,,tt0233562,,"Lakshya finds a bottle, which has Gangaram trapped in it who is his lookalike. He promises to make everything possible with the sand in the bottle, but once the sand is over he will be free to go.",0,0,Dhadakebaaz,mr +40346,All for the Winner,1990-01-01,101.0,,,tt0104147,,"Sing, a dumb, lovable mainlander with supernatural powers comes to China to visit his uncle Tat. When it's revealed that Sing can see through objects, Tat employs him as ""The Saint of Gamblers,"" and proceeds to set him loose in the gambling world.",0,0,賭聖,cn +43646,The Comics,1990-01-01,90.0,,256953,tt0099293,,A few funny little novels about different aspects of life.,0,0,Le comiche,it +91138,The Horseplayer,1990-01-01,89.0,,,tt0099796,One hunts. One seduces. One kills.,A blonde (Sammi Davis) seduces a quirky liquor-store worker (Brad Dourif) as inspiration for her artist boyfriend (M.K. Harris).,0,0,The Horseplayer,en +31942,Midnight Ride,1990-01-01,93.0,,,tt0100148,"Somewhere round the next bend, lies the road to terror","A house wife just left her cop husband, when she picks up Justin McKay she'll wish she never did as she's plunged into a nightmare and the grip of a psychotic killer.",0,0,Midnight Ride,en +31276,Soultaker,1990-01-01,94.0,,,tt0100665,Trapped in the Twilight Between Life and Death,"Four teenagers are killed in a car accident. Two of the teenagers refuse to go with ""The Grim Reaper"" and a race between life and death ensues!",0,0,Soultaker,en +22585,Ski Patrol,1990-01-12,91.0,,,tt0100631,,Pops isn't worried about the renewal of the lease for his ski lodge - the safety record is unblemished in spite of the crew of misfits who make up his ski patrol. But a scheming land developer has other plans and the ski patrol is thrust into a skiing showdown in order to save Pops' mountain.,0,8533973,Ski Patrol,en +103301,Babnik,1990-02-01,74.0,,,tt0099083,,,0,0,Бабник,en +217038,Dolly and Her Lover,1990-02-01,101.0,,,tt0100534,,,0,0,Räpsy & Dolly eli Pariisi odottaa,fi +91217,Men Don't Leave,1990-02-02,115.0,http://www.imdb.com/title/tt0100134/,,tt0100134,,"After her husband John dies unexpectedly, Beth Macauley is unprepared for life without him. She is unemployed with no job skills and $60,000 in debt from on-going renovations to their house located in suburban Bingham. She doesn't know what to do but sell what material possessions she has, such as the family pick-up truck and the house, and move into an apartment in the city, namely Baltimore. Beth just wants to survive by finding a job she doesn't dislike, and keep her family together while trying to maintain her sanity and sense of self-worth",0,0,Men Don't Leave,en +47329,Stella,1990-02-02,109.0,,,tt0100691,,"Barmaid Stella Claire and blueblood Stephen Dallas have very little in common -- except they've fallen in love. When their relationship fails, Stella decides to raise the child they had, Jenny, alone. But Jenny and Stella are far from the perfect mother-daughter pair.",0,20240128,Stella,en +66584,Le party,1990-02-02,103.0,,,tt0100334,,,0,0,Le party,fr +278935,Barrela: Escola de Crimes,1990-02-06,,,,tt0244992,,,0,0,Barrela: Escola de Crimes,pt +36094,Stanley & Iris,1990-02-09,104.0,,,tt0100680,Some people need love spelled out for them.,"An illiterate cook at a company cafeteria tries for the attention of a newly widowed woman. As they get to know one another, she discovers his inability to read. When he is fired, she takes on trying to teach him to read in her kitchen each night.",23000000,5820015,Stanley & Iris,en +413806,Оно,1990-02-11,,,,tt0098030,,,0,0,Оно,ru +82153,Thunder and Mud,1990-02-12,0.0,,,tt0163871,,An entertaining combination of heavy-metal rockers and female mud wrestlers hosted by Jessica Hahn.,0,0,Thunder and Mud,en +43912,Courage Mountain,1990-02-14,98.0,,,tt0097115,Their climb to freedom will become the greatest adventure.,"In this version of ""Heidi,"" a young Swiss girl is sent off to boarding school at the beginning of World War I.",0,0,Courage Mountain,en +51036,MadHouse,1990-02-16,90.0,,,tt0100087,The bad news is you have houseguests. There is no good news.,"The luxurious villa of Mark and Jessie Bannister, a yuppie couple, is overrun by loads of uninvited guests who turn the house up side down.",0,0,MadHouse,en +20481,Nightbreed,1990-02-16,102.0,,,tt0100260,Come meet the dead of night.,A troubled young man is drawn to a mythical place called Midian where a variety of monsters are hiding from humanity.,11000000,8862354,Nightbreed,en +39195,Spontaneous Combustion,1990-02-23,97.0,,,tt0098375,,"A young man finds out that his parents had been used in an atomic-weapons experiment shortly before he was born, and that the results have had some unexpected effects on him.",0,0,Spontaneous Combustion,en +35016,Koko Flanel,1990-02-23,95.0,,,tt0121442,Fashion isn't everything,"Placide's dad tells him on his deathbed he'll haunt Placide if he doesn't find a wife soon. Placide cautiously agrees, but he only wants to settle for a very beautiful woman. That might be easier said than done, since he is a vagabond. When he accidentally enters a photo shoot, Placide meets Sarah. He falls in love, but she is way out of his reach.",0,0,Koko Flanel,nl +10917,Too Young to Die?,1990-02-26,92.0,,,tt0100797,"They were young, in love and wanted for murder.",An abused 15 year old is charged with a murder that carries the death penalty in this fact-based story.,0,0,Too Young to Die?,en +173177,Piedipiatti,1990-03-03,92.0,,,tt0102668,,,0,0,Piedipiatti,it +51434,The Fourth War,1990-03-08,91.0,,,tt0099606,,"Cold War drama about two gung-ho border commanders (Roy Scheider, Jurgen Prochnow) who carry out their own private war against each other on the German - Czechoslovakia border.",0,1305887,The Fourth War,en +16094,House Party,1990-03-09,100.0,,159600,tt0099800,"If they get caught it's all over. If they don't, it's just the beginning!","Young Kid has been invited to a party at his friend Play's house. But after a fight at school, Kid's father grounds him. None the less, Kid sneaks out when his father falls asleep. But Kid doesn't know that three of the thugs at school have decided to give him a lesson in behavior.",2500000,26386000,House Party,en +2565,Joe Versus the Volcano,1990-03-09,102.0,,,tt0099892,An average Joe. An adventurous comedy.,"Hypochondriac Joe Banks finds out he has six months to live, quits his dead end job, musters the courage to ask his female co-worker out on a date, and is then hired to jump into a volcano by a mysterious visitor.",0,39404261,Joe Versus the Volcano,en +81274,The Challengers,1990-10-14,97.0,,,tt0097038,,"After her father dies and she moves to a new town, Mackie wants to join a certain gang/band. But they've got this boys-only rule. So Mackie comes up with an audacious plan...only it begins to backfire.",0,0,The Challengers,fr +123770,The Last of the Finest,1990-03-09,106.0,,,tt0099991,It's time for heroes again.,"An elite group of vice cops are fired from the L.A.P.D. for being over-zealous in their war against drugs. It is immediately apparent that some of their superiors are involved in the drug ring. Banded together, four of the banned cops (which quickly becomes three when one is killed early) band together to fight the drug ring undercover. They gain capital for weapons by ripping off minor drug dealers. Then well-armed they go after the kingpin (Boyd).",0,0,The Last of the Finest,en +10847,Lord of the Flies,1990-03-16,90.0,,,tt0100054,No parents. No teachers. No rules... No mercy.,"Stranded on an island, a group of schoolboys degenerate into savagery.",0,0,Lord of the Flies,en +11131,Nuns on the Run,1990-03-16,89.0,,,tt0100280,,"Brian and Charlie work for a gangster. When the boss learns they want to ""leave"" he sets them up to be killed, after they help rob the local Triads of their drug dealing profits. B&C decide to steal the money for themselves, but when their escape doesn't go to plan, they have to seek refuge in a Nuns' teacher training school.",0,0,Nuns on the Run,en +79775,The Old Man and the Sea,1990-03-25,93.0,,,tt0100288,,"Based on the novel by Ernest Hemingway. Santiago goes out on his usual fishing trip and makes a huge catch, the biggest of his life. Then a shark attacks and tries to steal his catch.",0,0,The Old Man and the Sea,en +52741,Side Out,1990-03-30,104.0,,,tt0100613,,A law student comes to California for the summer and ends up playing professional volleyball.,0,0,Side Out,en +1498,Teenage Mutant Ninja Turtles,1990-03-30,93.0,,1582,tt0100758,Heroes in a half shell!,A quartet of mutated humanoid turtles clash with an uprising criminal gang of ninjas,13500000,202000000,Teenage Mutant Ninja Turtles,en +12638,Kill Cruise,1990-04-05,98.0,,,tt0100633,It's not going to be plain sailing.,Two British beauties go to Barbados with a yacht captain who does not know what he's in for.,0,0,Der Skipper,de +58773,On tour,1990-04-06,0.0,,,tt0100699,,"Two actors leave on a theatrical tour, but there is a matter to be settled: one has become the lover of the other's girl-friend and since they are very good friends, cannot bring himself to tell him,",0,0,Turné,it +301671,Devil's Domain,1990-04-13,0.0,,,tt0261296,,"An evil sorceress feeds the blood of new brides to a Shaitan, an ancient and fearsome demon.",0,0,Shaitani Ilaaka,hi +14931,Miami Blues,1990-04-20,97.0,,,tt0100143,Real badge. Real gun. Fake cop.,"When Fred gets out of prison, he decides to start over in Miami, where he starts a violent one-man crime wave. He soon meets up with amiable college student Susie. Opposing Fred is Sgt Hoke Moseley, a cop who is getting a bit old for the job, especially since the job of cop in 1980's Miami is getting crazier all the time.",0,0,Miami Blues,en +142946,Why Me?,1990-04-20,87.0,,,tt0100931,Bruno and Gus made the ultimate hit... now they're the targets.,"A jewel thief steals a sacred ruby which sets off a chase by the police, the Turkish government, nutty American terrorists, and the CIA.",0,0,Why Me?,en +31598,Q & A,1990-04-27,132.0,,,tt0100442,"When the questions are dangerous, the answers can be deadly.","A young district attorney seeking to prove a case against a corrupt police detective encounters a former lover and her new protector, a crime boss who refuse to help him.",0,0,Q & A,en +32043,The Guardian,1990-04-27,92.0,,,tt0099710,"Tonight, while the world is asleep... an ancient evil is about to awaken.",The idyllic lives of Phil and Kate seem complete when they select the winsome young Camilla as a live-in nanny for their newborn child. But the lovely young Camilla s not what she appears to be.,0,17037887,The Guardian,en +108012,Caroline?,1990-04-29,100.0,,,tt0099225,,Hallmark Hall of Fame presents the story of a mysterious woman claiming to be the deceased daughter of a rich man tries to solve the problems of his untrusting son and supposedly physically and mentally handicaped daughter. But one question stands in her way: is she really Caroline?,0,0,Caroline?,en +1483,Begotten,1990-04-30,78.0,,476066,tt0101420,,"Begotten is the creation myth brought to life, the story of no less than the violent death of God and the (re)birth of nature on a barren earth.",33000,0,Begotten,en +168202,"Hen, His Wife",1990-05-01,13.0,,,tt0241399,,"Extraordinarily detailed and beautifully drawn animation of a bizarre and surreal world; the domestic life of a fat man, his wife, a sort of oversized obese chicken, and their child/pet, a slug-like creature with a human head. This expressionistic and interior vision of Soviet animator Kovalyov is like an animated Eraserhead.",0,0,Yego zhena kuritsa,en +207699,Punk Vacation,1990-05-01,94.0,,,tt0376098,Sometimes vacations don't turn out as you planned!,"A peaceful California town is shaken after the brutal murder of diner owner by a gang of vicious punks. When the daughter of the slain man attempts to avenge her father’s death, she’s held hostage by the gang resulting in an epic battle between punks and rednecks.",0,0,Punk Vacation,en +21030,Daddy's Dyin'... Who's Got the Will?,1990-05-04,95.0,,,tt0099342,,Bickering siblings are reunited at their Texas home as their father lies on his deathbed in this black comedy.,0,1373728,Daddy's Dyin'... Who's Got the Will?,en +24731,Short Time,1990-05-04,97.0,,,tt0100604,Getting killed isn't as easy as it looks.,"Nearing retirement, Dabney Coleman finds that he has a disease that will kill him within days. He then finds that his life insurance only pays off if he is killed in the line of duty. In order to leave something to his wife and children, Coleman becomes supercop, ignoring danger and trying his best to get killed.",0,0,Short Time,en +37865,Buried Alive,1990-05-09,93.0,,,tt0099188,She planned on her husband's death. But not on his coming back for revenge.,"Clint is an every day working man whose wife Joanna is having an affair with a doctor. They plot to kill him and get the insurance money. Only trouble the drug overdose they give him doesn't kill him. Lucky for Clint he's buried in a cheap wooden box and he unburies himself. Just remember, Hell hath no fury like a man buried alive!",0,0,Buried Alive,en +12516,Dreams,1990-05-11,119.0,,,tt0100998,"The past, present, and future. The thoughts and images of one man... for all men. One man's dreams... for every dreamer.",A collection of magical tales based upon the actual dreams of director Akira Kurosawa.,0,0,夢,ja +25111,Far Out Man,1990-05-11,81.0,,,tt0099546,He's a visitor from another time... The 60's,An aging hippie sets out on a trip across America to find his family.,500000,0,Far Out Man,en +27450,Chicago Joe and the Showgirl,1990-05-16,103.0,,,tt0099250,Attraction drew them together. Compulsion drew them to murder.,"During World War II, an American serviceman in London decides to impress his English girlfriend by acting as an American gangster, which soon turns deadly.",0,0,Chicago Joe and the Showgirl,en +1375,Rocky V,1990-10-18,104.0,,1575,tt0100507,Go for it!,"A lifetime of taking shots has ended Rocky's career, and a crooked accountant has left him broke. Inspired by the memory of his trainer, however, Rocky finds glory in training and takes on an up-and-coming boxer.",42000000,119946358,Rocky V,en +20674,By Dawn's Early Light,1990-05-19,101.0,,,tt0099197,Four people... Three minutes... Two choices... One chance for survival.,"When a nuclear missile is launched by presumably Soviet forces toward Turkey, the beginning of the ultimate war to end all wars WW 3 is started. Powers Boothe, his girlfriend and copilot Rebecca DeMornay and their flight crew take off in a B 52 on what they believe is just another drill only to find out that this is the real deal.",0,0,By Dawn's Early Light,en +25373,A Cry in the Wild,1990-06-01,82.0,,,tt0099327,,"13-year-old Brian is the sole survivor of an unreported plane crash. Alone in the Yukon wilderness, Brian must learn to survive by his wits, find food and shelter, and brave wild, hungry animals until or if he is found.",0,1,A Cry in the Wild,en +17009,Jetsons: The Movie,1990-06-06,82.0,,,tt0099878,The first movie from the family that's truly ahead of its time!,George Jetson is forced to uproot his family when Mr. Spacely promotes him to take charge of a new factory on a distant planet.,0,0,Jetsons: The Movie,en +39101,Dragon Ball Z: The Tree of Might,1990-06-07,61.0,,425164,tt0142233,,The Saiyajin named Turlus has come to Earth in order to plant a tree that will both destroy the planet and give him infinite strength. Son Goku and the Z Warriors cannot let this happen and duke it out with the invaders for the sake of the planet.,0,0,Doragon Bōru Zetto: Chikyū Marugoto Chōkessen,ja +26612,Treasure Island,1990-06-08,131.0,,,tt0100813,Sail the high seas. Battle the pirates. Live the adventure.,"Young Jim Hawkins, while running the Benbow Inn with his mother, meets Captain Billy Bones, who dies at the inn while it is beseiged by buccaneers led by Blind Pew. Jim and his mother fight off the attackers and discover Billy Bones' treasure map for which the buccaneers had come. Jim agrees to sail on the S.S. Espaniola with Squire Trelawney and Dr. Livesey to find the treasure on a mysterious isiand. Upon arriving at the island, ship's cook and scaliwag Long John Silver leads a mutiny of crew members who want the treasure for themselves. Jim helps the Squire and Espaniola officers to survive the mutiny and fight back against Silver's men, who have taken over the Espaniola.",0,0,Treasure Island,en +267654,Quicker Than the Eye,1990-06-13,,,,tt0098154,,,0,0,Quicker Than the Eye,fr +44283,Happily Ever After,1990-06-20,75.0,,,tt0099733,Whatever happened to Snow White? Find out May 28th,"The Wicked Queen is dead but her brother, Lord Maliss, seeks for revenge. Using the Magic Mirror to locate Snow White and the Prince, he transforms into a dragon and attacks. Maliss takes the Prince to the Realm of Doom. Snow White, with the aid of the Seven Dwarfesses, cousins of the Sevens Dwarves, must embark on a quest to save her true love.",0,0,Happily Ever After,en +45179,Xuxa in Crystal Moon,1990-06-22,90.0,,,tt0100070,,"Maria da Graça is a country girl who is looking to make it in the big city. She leaves her town to live with some relatives at the capital, but it doesnt take her long to find out that aunt Zuleika is a real bad witch, as well as cousin Cidinha. Cousin Mauricinho seems friendly enough, even flirtatious, but his motives are less than sincere. While trying to deal with aunt Zuleika and her kids, Maria da Graça meets a girl neighbour, Duda, who shows her the ropes of getting along in the dangerous city. She also makes friends with Bob, who provides her with great support right when she needs it. Bob is a bit clumsy, but hes the one who manage do find a job for Maria da Graça. Now that she is working, Maria da Graça can finally start taking singing lessons as she always dreamt of. Things start to look brighter, but theres only one problem: Mauricinho. The guy gets more and more obsessed with his cousin as she shuns him off, and ends up deciding to kidnap Maria da Graça.",0,0,Lua de Cristal,pt +96497,De Gulle Minnaar,1990-07-06,100.0,,,tt0099715,,,0,0,De Gulle Minnaar,nl +251,Ghost,1990-07-12,127.0,,,tt0099653,A love that will last forever.,"Sam Wheat is a banker, Molly Jensen is an artist, and the two are madly in love. However, when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal, he is left to roam the earth as a powerless spirit. When he learns of Carl's betrayal, Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.",22000000,505000000,Ghost,en +28340,The Invisible Maniac,1990-07-13,86.0,,,tt0099856,The new physics professor has a disappearing act that's a real scream.,An invisible scientist escapes from an asylum and teaches high-school physics to nubile teens.,0,0,The Invisible Maniac,en +2102,Solar Crisis,1990-07-14,112.0,,,tt0100649,"In the year 2050, the battle to save the earth will be fought on the sun.",A huge solar flare is predicted to fry the Earth. Astronauts aboard the spaceship Helios must go to the Sun to drop a bomb equipped with an Artificial Intelligence (Freddy) and a Japanese pilot (as a back up if the Artificial Intelligence fail) at the right time so the flare will point somewhere else.,55000000,0,Solar Crisis,en +52395,Fear,1990-07-15,95.0,,,tt0099557,Your First Impulse Your Last Sensation,Psychic Ally Sheedy helps police solve murders by mentally linking with the murderer. Then she discovers a murderer with the same talent - who wants to share the fear of his victims with her!,0,0,Fear,en +172972,Kung Fu Vs. Acrobatic,1990-07-21,99.0,,,tt0102365,,"An update of the 1960s Chinese martial arts story, Buddha's Palm, friends Charles and Chi (Andy Lau, Pak-Cheung Chan) visit Mainland China and discover an ancient cave that houses what is supposed to be the makeshift tomb of the legendary martial artist Lung Gim-Fei. The friends find an old spell book and practice some magic, which unintentionally breaks open a wall and releases a dormant princess (Joey Wang) and her handmaiden (Siu-Wai Mui). Charles and Chi take the Princess and her Handmaiden back to Hong Kong with them, unaware that they were followed by the just-awaken evil warlord, Tien Chien (Wah Yuen).",0,0,摩登如來神掌,cn +11077,Problem Child,1990-07-27,81.0,,180854,tt0100419,Attila the Hun. Ivan the Terrible. Al Capone. They were all seven once.,"Ben Healy (John Ritter) and his social climbing wife Flo adopt Junior a fun-loving seven year old. But they soon discover he's a little monster as he turns a camping trip, a birthday party and even a baseball game into comic nightmares. But is he really just a little angel trying to get out? Find out in this hilarious satire on modern-day family life.",0,0,Problem Child,en +52560,Book of Love,1990-08-03,82.0,,,tt0099166,Some things never change.,"John Twiller takes down his high school yearbook and begins to reminiscence about that time he first moved into the neighborhood in 1956. His teenage self, Jack is obsessed with Lily one of the more popular girls around. The sole obstacle is Angelo, her bullying boyfriend. With the help of his pals Crutch, Floyd, and Spider, he makes every attempt possible to change her mind.",0,0,Book of Love,en +10173,Marked for Death,1990-10-05,94.0,,,tt0100114,He's a good cop. In a bad mood.,"Just retired from the Drug Enforcement Agency, John Hatcher (Seagal) returns to his hometown and quickly discovers that drugs have infiltrated his old neighborhood. Determined to drive the dealers out, Hatcher crosses pathes with a ferocious Jamaican druglord who vowes that Hatcher and his family are now marked for death.",12000000,46044400,Marked for Death,en +10837,DuckTales: The Movie - Treasure of the Lost Lamp,1990-08-03,74.0,,,tt0099472,Scrooge McDuck's First Full-Length Animated Feature Film.,"Scrooge McDuck, his dimwitted pilot Launch Pad, and his newphews Huey, Dewey and Louie, with Webby, arrive in Egypt where Scrooge finds the lost treasure of Collie Baba, unbeknownst to Scrooge, a magic lamp was included inside the treasure, so while the nephews have fun with the genie, they all have no idea that they're being stalked by a power hungry sorceror named Murlock and his dimwitted thief.",0,0,DuckTales: The Movie - Treasure of the Lost Lamp,en +41823,Mo' Better Blues,1990-08-03,129.0,,,tt0100168,,"Opens with Bleek as a child learning to play the trumpet, his friends want him to come out and play but mother insists he finish his lessons. Bleek grows into adulthood and forms his own band - The Bleek Gilliam Quartet. The story of Bleek's and Shadow's friendly rivalry on stage which spills into their professional relationship and threatens to tear apart the quartet.",10000000,16153593,Mo' Better Blues,en +70247,Watchers II,1990-08-16,101.0,,,tt0100904,Don't look back or you'll never see anything again.,A genetically re-engineered dog develops a psychic link with a monster created in a lab experiment which goes awry.,0,0,Watchers II,en +11909,Bullet in the Head,1990-08-17,130.0,,,tt0099426,,"When three close friends escape from Hong Kong to war-time Saigon to start a criminal's life, they all go through a harrowing experience which totally shatters their lives and their friendship forever.",3500000,0,牒血街頭,cn +25501,"After Dark, My Sweet",1990-08-24,114.0,,,tt0098994,All they risked was everything.,"The intriguing relationship between three desperados, who try to kidnap a wealthy child in hope of turning their lives around.",0,0,"After Dark, My Sweet",en +12716,My Father's Glory,1990-08-29,105.0,,148517,tt0099669,,"French adaptation of Marcel Pagnol's memoirs of his childhood in the countryside, early in the century.",0,0,La Gloire de mon Père,fr +121895,Daddy Nostalgia,1990-09-05,105.0,,,tt0099341,Dirk Bogarde's last film,"A half-French, half-British writer (Jane Birkin) learns her father (Dirk Bogarde), who neglected her when she was young, has been taken seriously ill and goes to visit him and her mother (Odette Laure).",0,0,Daddy Nostalgie,fr +37291,Trust,1990-09-09,107.0,,,tt0103130,A slightly twisted comedy,"After being thrown away from home, pregnant high school dropout Maria meets Matthew, a highly educated and extremely moody electronics repairman. The two begin an unusual romance built on their sense of mutual admiration and trust.",700000,0,Trust,en +123757,All the Vermeers in New York,1990-09-11,87.0,,,tt0099014,,"Anna, a French actress, is approached by financial broker Gordon in the Vermeer room of a New York gallery. However, romance does not ensue...",0,0,All the Vermeers in New York,en +94725,To Sleep with Anger,1990-09-11,101.0,,,tt0100791,"When Harry comes to town, he brings good times, bad times... And a lot of trouble!",An enigmatic drifter from the South comes to visit an old acquaintance who now lives in South-Central LA.,0,0,To Sleep with Anger,en +1662,State of Grace,1990-09-14,134.0,,,tt0100685,,"Terry Noonan returns home to New York's Hells Kitchen after a ten year absence. He soon hooks up with childhood pal Jackie who is involved in the Irish mob run by his brother Frankie. Terry also rekindles an old flame with Jackie's sister Kathleen. Soon, however, Terry is torn between his loyalty to his friends and his loyalties to others.",0,0,State of Grace,en +28761,White Hunter Black Heart,1990-09-14,112.0,,,tt0100928,An adventure in obsession...,"A thinly fictionalized account of a legendary movie director, whose desire to hunt down an animal turns into a grim situation with his movie crew in Africa",0,0,White Hunter Black Heart,en +26936,Boiling Point,1990-09-15,96.0,http://www.office-kitano.co.jp/contents/MOVIE/WORK/second.html,,tt0098967,,"Masaki, a baseball player and gas-station attendant, gets into trouble with the local Yakuza and goes to Okinawa to get a gun to defend himself. There he meets Uehara, a tough gangster, who is in serious debt to the yakuza and planning revenge.",0,0,3-4X10月,ja +31597,Narrow Margin,1990-09-21,97.0,,,tt0100224,It will take you to the edge of suspense.,"A Los Angeles District Attorney (Gene Hackman) is attempting to take an unwilling murder witness (Anne Archer) back to the United States from Canada to testify against a top-level mob boss. Frantically attempting to escape two deadly hit men sent to silence her, they board a Vancouver-bound train only to find the killers are on board with them. For the next 20 hours, as the train hurls through the beautiful but isolated Canadian wilderness, a deadly game of cat and mouse ensues in which their ability to tell friend from foe is a matter of life and death.",0,0,Narrow Margin,en +379,Miller's Crossing,1990-09-21,115.0,,,tt0100150,"Up is down, black is white, and nothing is what it seems.","Set in 1929, a political boss and his advisor have a parting of the ways when they both fall for the same woman.",14000000,5080409,Miller's Crossing,en +2990,Pacific Heights,1990-09-28,102.0,,,tt0100318,Where terror lives.,A couple works hard to renovate their dream house and become landlords to pay for it. Unfortunately one of their tenants has plans of his own.,0,29381956,Pacific Heights,en +123777,Sink or Swim,1990-09-30,48.0,,,tt0100624,,"Through a series of twenty six short stories, a girl describes the childhood events that shaped her ideas about fatherhood, family relations, work and play. As the stories unfold, a dual portrait emerges: that of a father who cared more for his career than for his family, and of a daughter who was deeply affected by his behavior. Working in counterpoint to the forceful text are sensual black and white images that depict both the extraordinary and ordinary events of daily life. Together, they create a formally complex and emotionally intense film.",0,0,Sink or Swim,en +28847,Demonia,1990-10-01,85.0,,,tt0094997,No Evil Deed Goes Undone!,A Canadian archaeological team in Sicily accidentally unleashes vengeful ghosts of five demonic nuns whom were murdered 500 years earlier and the ghosts now set out to kill the group and townspeople alike.,0,0,Demonia,it +71805,Shipwrecked,1990-10-03,92.0,,,tt0099816,,A young Norwegian boy in 1850s England goes to work as a cabin boy and discovers some of his shipmates are actually pirates.,0,0,Håkon Håkonsen,en +36992,Shakma,1990-10-05,101.0,,,tt0100589,The world's most aggressive primate just got mad,"A murderous baboon escapes from a laboratory and roams the research building, and begins to kill some teenagers who are also in the building playing a Dungeons-and-Dragons type game.",0,0,Shakma,fr +38718,Reversal of Fortune,1990-10-05,111.0,,,tt0100486,,"Wealthy Sunny von Bülow lies brain-dead, husband Claus guilty of attempted murder; but he says he's innocent and hires Alan Dershowitz for his appeal.",0,15445131,Reversal of Fortune,en +26914,Troll 2,1990-10-12,95.0,,123218,tt0105643,The original boogeyman is back.,A young child is terrified to discover that a planned family trip is to be haunted by vile plant-eating monsters out of his worst nightmare...,0,0,Troll 2,en +70351,Mirror Mirror,1990-10-19,104.0,,,tt0100156,A reflection of pure terror...,"Shy teenager Megan moves to a new town with her widowed mother and quickly becomes the most unpopular girl in high school. But when she starts to communicate with a mysterious mirror, her tormentors begin to meet with a horrifying series of 'accidents'. Is the mirror a reflection of Megan's own inner demons... or has she unwittingly opened the doorway of the damned?",0,0,Mirror Mirror,en +25528,American Ninja 4: The Annihilation,1990-10-30,99.0,,91945,tt0101326,,"The two American Ninjas, Joe Armstrong and Sean Davidson, team up to do battle against a terrorist and his band of Ninjas.",0,0,American Ninja 4: The Annihilation,en +41762,Graffiti Bridge,1990-11-02,95.0,,,tt0099691,Music is the power. Love is the message. Truth is the answer.,"It's got that Purple Rain feeling through and though. And it's got The Kid, too! For the first time since Purple Rain, Prince is back as The Kid. And where he goes , there's music! With Thieves in the Temple, New Power Generation, Elephants and Flowers and more red-hot Prince tunes from the Platinum-selling Graffiti Bridge soundtrack. What time is it? Party time! Morris Day and the Time play Release It, Shake! and more. And you'll also see and hear George Clinton, Tevin Campbell, Robin Power, Mavis Staples and other hot performers, too. Graffiti Bridge is where the movie meets the music. Cross over on it now.",0,0,Graffiti Bridge,en +55756,Sergeant Körmy and the Marshall's Stick,1990-11-02,111.0,,148320,tt0100895,,,0,0,Vääpeli Körmy ja marsalkan sauva,fi +2291,Jacob's Ladder,1990-11-02,113.0,,,tt0099871,The most frightening thing about Jacob Singer's nightmare is that he isn't dreaming.,A traumatized Vietnam war veteran finds out that his post-war life isn't what he believes it to be when he's attacked by horned creatures in the subway and his dead son comes to visit him...,25000000,25965144,Jacob's Ladder,en +3072,Frankenstein Unbound,1990-11-02,82.0,,,tt0099612,,"The ultimate weapon, claimed to be safe for mankind, produces global side-effects including time slides and disappearances. The scientist behind the project and his car are zapped from the year 2031 to 1817 in Switzerland where he meets Dr. Victor Frankenstein, Mary Shelley and others.",0,0,Frankenstein Unbound,en +92562,Metamorphosis The Alien Factor,1990-11-05,98.0,,,tt0107561,It came from another world...,"A virus from outer space transforms a bio-researcher into a blood thirsty monster. But chief, Dr.Vialini doesn't like the cops and public to be involved in this secret experiment. But he becomes lunch very soon.",0,0,Metamorphosis The Alien Factor,en +37820,Death in Brunswick,1990-11-08,109.0,,,tt0101692,Carl Fitzgerald has decided to clean up his act... but first he has to get rid of the body.,"A reserved man in need of a job, Carl Fitzgerald finds employment at a Greek restaurant. Upon meeting waitress Sophie, Carl begins dating the attractive woman. Though it seems things are improving for Carl, an unexpected situation leads to the death of Mustafa, a shady coworker, and Carl must figure out how to cover up the incident. Unsure of what to do, Carl enlists the help of his buddy, Dave, to get rid of Mustafa's corpse.",0,0,Death in Brunswick,en +11186,Child's Play 2,1990-11-09,84.0,,10455,tt0099253,Look out Jack! Chucky's back!,"Chuckie's back as the doll possessed by the soul of a serial killer, butchering all who stand in his way of possessing the body of a boy.",13000000,35763605,Child's Play 2,en +30583,Nils Karlsson Pyssling,1990-11-09,75.0,,,tt0100264,,Nils Karlsson Pyssling is a 1990 Swedish family film based on the novel with the same name by Astrid Lindgren.,0,0,Nils Karlsson Pyssling,sv +18317,Truly Madly Deeply,1990-11-10,106.0,,,tt0103129,BE CAREFUL WHAT YOU WISH FOR... IT JUST MIGHT COME TRUE.,"Nina is totally heartbroken at the death of her boyfriend Jamie, but is even more unprepared for his return as a ghost. At first it's almost as good as it used to be - hey, even the rats that infested her house have disappeared. But Jamie starts bringing ghostly friends home and behaving more and more oddly.",0,0,Truly Madly Deeply,en +28553,Cadence,1990-11-16,97.0,,,tt0101531,Sometimes you've got to stand out to fit in.,"As punishment for drunken, rebellious behavior, a young white soldier is thrown into a stockade populated entirely by black inmates. But instead of falling victim to racial hatred, the soldier joins forces with his fellow prisoners and rises up against the insanely tyrannical and bigoted prison warden.",0,0,Cadence,en +169,Predator 2,1990-11-20,108.0,,399,tt0100403,Silent. Invisible. Invincible. He's in town with a few days to kill.,"Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth -- and this time, it's drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.",35000000,57120318,Predator 2,en +11630,Three Men and a Little Lady,1990-11-21,104.0,,107688,tt0098966,,"Sylvia's work increasingly takes her away from the three men who help bring up Mary, her daughter. When she decides to move to England and take Mary with her, the three men are heartbroken at losing the two most important females in their lives.",0,0,Three Men and a Little Lady,en +26954,Puppet Master II,1990-11-28,88.0,,107949,tt0100438,They're Back! No Strings Attached!,"The puppets return, this time they hunt some Paranormal Researchers to take their brain fluid for the dead/living puppet master, Andre Toulon",780000,0,Puppet Master II,en +15902,Faces of Death IV,1990-11-28,89.0,,97237,tt0121262,,Follows the same pattern of the other Faces of Death movies. In this one we see many staged and not so staged looking deaths ranging from bungee jumping accidents and magic tricks gone bad.,0,0,Faces of Death IV,en +49574,Cloud Heaven,1990-12-04,76.0,,415054,tt0102574,,"In this gentle comedy, an unpopular resident in a Russian village has his life completely changed when he announces, entirely on a whim and just to upset things a bit, that he's moving to the Pacific coast.",0,0,Облако-рай,ru +109001,Shiva,1990-12-07,161.0,,,tt5309926,,"Shiva is a new student in the community college. He is welcomed by a group of collegians, including the lovely Asha, to whom Shiva is instantly attracted to. Shiva notices that there is violence within the college by people who are not even students. When he decides to find out their motives, he is met with violence, and threats. Now Shiva must decide to stand up for his college, or just carry on studying, finish college, and move on.",0,0,Shiva,hi +28090,Maniac Cop 2,1990-12-13,90.0,,254636,tt0100107,You have the right to remain silent forever.....Again!,"A supernatural, maniac killer cop teams up with a Times Square serial killer.",4000000,0,Maniac Cop 2,en +37926,"Abraxas, Guardian of the Universe",1990-12-18,90.0,,,tt0101264,,An alien policeman comes to Earth to hunt down a renegade of his own race.,0,0,"Abraxas, Guardian of the Universe",en +32332,Hugo Pool,1997-01-01,92.0,,,tt0119327,A comedy with serious relief,Hugo Pool is a quirky tale of a Los Angeles pool cleaner who falls in love with a young man dying of Lou Gerhig's Disease.,0,0,Hugo Pool,en +51763,The Long Walk Home,1990-12-21,97.0,,,tt0100046,A story of an incredible friendship.,"Two women, black and white, in 1955 Montgomery Alabama, must decide what they are going to do in response to the famous bus boycott lead by Martin Luther King.",0,0,The Long Walk Home,en +242,The Godfather: Part III,1990-12-24,162.0,http://www.imdb.com/title/tt0099674/,230,tt0099674,All the power on earth can't change destiny.,"In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.",54000000,136766062,The Godfather: Part III,en +118794,The Cow,1990-12-31,10.0,,,tt0097118,,Animated short based on the story of the same name by Andrei Platonov.,0,0,Корова,ru +36421,Howling VI: The Freaks,1991-01-01,102.0,,174218,tt0102067,,A villainous carnival owner traps a young werewolf to include in his growing menagerie of inhuman exhibits,0,0,Howling VI: The Freaks,en +222339,Dune Warriors,1991-01-01,0.0,,,tt0099474,,"After the end of the world, Earth is a thirsty planet ruled by vicious warlords. One woman is brave enough to fight back; she bands together five warriors to save her town and their precious water",0,0,Dune Warriors,en +64948,Bix,1991-01-01,0.0,,,tt0101460,,,0,0,Bix,it +140883,Prahaar: The Final Attack,1991-01-01,166.0,,,tt0102701,,"Prahaar is the story of Major Chavan, a tough and stern soldier, trained to destroy the enemy. He can see the enemy on our borders but is unaware of the invisible enemy within ourselves. When one of Major's Commandos - Peter D'Souza is killed, he is shown the harsh reality revolving around us, the enemy is within ourselves. The battlefield changes and Major Chavan makes his final attack on the enemy within this crumbling society.",0,0,Prahaar: The Final Attack,hi +44238,World of Glory,1991-01-01,14.0,,,tt0102083,,The narrative portrays a plain man who guides the viewer through his life in a bleakly stylised world.,0,0,Härlig är jorden,sv +34518,Ninja Bachelor Party,1991-01-01,30.0,,,tt0277187,,"Ninja Bachelor Party is a 1991 low-budget comedy film produced by and starring Bill Hicks, Kevin Booth, and David Johndrow. It is a parody of martial arts movies and was intentionally dubbed improperly. It was filmed throughout Austin, Texas and Houston, Texas over the course of ten years due to the producers not taking the project seriously.",0,0,Ninja Bachelor Party,en +40221,The Borrower,1991-01-01,90.0,,,tt0101502,,An alien criminal exiled to Earth in human form is ripping the heads off human beings after his own head explodes.,0,0,The Borrower,en +96872,Superstar Goofy,1991-01-01,0.0,,,tt0213268,,,0,0,Superstar Goofy,it +22792,High Strung,1991-01-01,93.0,,,tt0102032,The story of a guy with a few too many hang-ups.,"Thane Furrows, an extremely cynical but unintentionally hilarious children's book writer, wakes up one morning, and, since pretty much everyone and everything annoys him, begins another day of complaining to himself. However, the day proves to be much different than normal when Thane begins to recieve strange phone calls, letters, and voices in his head, all indicating that something will happen at 8 o'clock. As the day goes on, Thane rants and raves about the things that annoy him, as the clock slowly ticks closer and closer to his destiny",300000,0,High Strung,en +9585,Not Without My Daughter,1991-01-11,116.0,,,tt0102555,"In 1984, Betty Mahmoody's husband took his wife and daughter to meet his family in Iran. He swore they would be safe. They would be happy. They would be free to leave. He lied.","An American woman, trapped in Islamic Iran by her brutish husband, must find a way to escape with her daughter as well.",0,0,Not Without My Daughter,en +128917,Voodoo Dawn,1991-01-24,84.0,,,tt0100888,,Group of immigrant Haitian farm workers tries to fight off an evil Haitian voodoo priest who tries to kill them & use their body parts to make up a zombie army.,0,0,Voodoo Dawn,en +41097,The Seventh Brother,1991-01-25,76.0,,,tt0112545,,A lost puppy learns a lesson about the importance of family in this charming Hungarian animated feature.,0,0,A hetedik testvér,es +8010,Highlander II: The Quickening,1991-01-30,91.0,,8050,tt0102034,It's a kind of magic.,"In the year 2025, the ozone layer is believed to have been destroyed. It is up to MacLeod and Rameriz to set things right. Opposition comes from both the planet Ziest (MacLeod and Ramirez's homeworld) and a corporation profiting from the supposed lack of ozone. Also, flashbacks show the story behind MacLeod and Ramirez's exile from Ziest.",30000000,15556340,Highlander II: The Quickening,en +24993,Kickboxer 2: The Road Back,1991-01-30,89.0,,105322,tt0102202,,"Kickboxer 2 is, well, an unnecessary sequel which unfortunately lacked the presence of the phenomenal Jean-Claude Van Damme. Despite this, the movie manages to be a great deal of fun. The fights are well staged and there is an excess of campy acting which is a requisite of this genre. It is one of many of these types of flicks which could make you cry if you take it seriously, in that you'll regre",0,1250712,Kickboxer 2: The Road Back,en +40208,Shock 'Em Dead,1991-01-31,93.0,,,tt0102910,"For the girl of his dreams, he'd make a deal with the devil.","Martin is a total loser, who nobody cares for. When he fails to get a position as guitar player in Lindsay's band and loses his job on the way, he makes a deal with a Voodoo priestess. She promises him the fulfillment of all his dreams if he swears obedience to her. He becomes a rock star and has many women - but to stay alive, he has to kill other people.",0,0,Shock 'Em Dead,en +39875,Popcorn,1991-02-01,91.0,,,tt0102690,Buy a bag... Go home in a box.,"A horror film festival, held in a theater which was once the scene of a tragic fire, turns into a real life horror show.",0,0,Popcorn,en +49792,Queens Logic,1991-02-01,100.0,,,tt0102741,We're Talkin' Human Experience Here!,"When childhood friends Al, Dennis and Eliot get together for Ray's wedding, which may or may not happen, they end up on a roller-coaster ride through reality. During one tumultuous, crazy weekend, they face adulthood and each other with new found maturity and discover what Queens Logic is all about. This comedy takes a look at friendship, loyalty, and love.",0,0,Queens Logic,en +134477,Sandesham,1991-02-04,137.0,,,tt0353975,The message,"After his retirement, Raghavan Nair (Thilakan) is back at his home. His long cherished dream to spend his retired life along with his family is thwarted after seeing his two sons brawling each other over their political differences.",0,0,സന്ദേശം,ml +2107,L.A. Story,1991-02-08,95.0,,,tt0102250,,"With the help of a talking freeway billboard, a ""wacky weatherman"" tries to win the heart of an English newspaper reporter, who is struggling to make sense of the strange world of early-90s Los Angeles.",0,0,L.A. Story,en +18971,Rosencrantz & Guildenstern Are Dead,1991-02-08,117.0,,,tt0100519,,"Two minor characters from the play, ""Hamlet"" stumble around unaware of their scripted lives and unable to deviate from them.",0,0,Rosencrantz & Guildenstern Are Dead,en +6980,Horse Sense,1999-11-20,92.0,,,tt0219813,,After treating his rancher cousin shoddily in L.A. Michael Woods is sentenced by his parents to spending a month on the ranch with his cousin and aunt.,0,0,Horse Sense,en +11933,Nothing but Trouble,1991-02-14,94.0,,,tt0102558,All they wanted was a little getaway. All they got was nothing but trouble.,"While attempting to seduce gorgeous lawyer Diane Lightson, wealthy gadabout Chris Thorne agrees to drive her to Atlantic City, N.J. But, when some reckless driving draws the attention of a deeply critical cop, they and the flamboyant ""Brazillionaires"" who tagged along end up in the court of a grotesque and vengeful judge, who has a special vendetta against the wealthy and erudite.",40000000,8479793,Nothing but Trouble,en +10804,King Ralph,1991-02-15,97.0,,,tt0102216,"When Ralph becomes royalty, laughter reigns!","As the only relative to take over the Royal throne, a down on his luck American slob must learn the ways of the English.",0,0,King Ralph,en +17956,"He Said, She Said",1991-02-22,115.0,,,tt0102011,,"Womanising, right-wing Dan Hanson and quiet, liberal Lorie Bryer work for the Baltimore Sun. Rivals for the job of new writer of a vacant column, the paper ends up instead printing their very different opinions alongside each other, which leads to a similarly combative local TV show. At the same time their initial indifference to each other looks like it may evolve into something more romantic.",0,0,"He Said, She Said",en +134474,Godfather,1991-03-03,150.0,,,tt0353496,,"The story of Anjooran (N. N. Pillai), and his four sons Balaraman (Thilakan), Swaminathan (Innocent), Premachandran (Bheeman Raghu) and Ramabhadran (Mukesh) are in severe enmity with the Anappara family.",18000,700000,ഗോഡ്ഫാദർ,ml +53688,Stinsen brinner... filmen alltså,1991-03-03,0.0,,,tt0102982,,,0,0,Stinsen brinner... filmen alltså,sv +109475,Ironclads,1991-03-11,94.0,,,tt0102129,,"Ironclads is a 1991 made-for-television movie produced by Ted Turner's TNT company about the events behind the creation of the CSS Virginia from the remains of the USS Merrimack and the battle between the Virginia and the USS Monitor in the Battle of Hampton Roads, March 8, 1862-March 9, 1862.",0,0,Ironclads,en +34598,Fast Getaway,1991-03-14,86.0,http://www.imdb.com/title/tt0101857/,257378,tt0101857,"Corey Haim Is the right guy, in the right place, at the right time. All he needed was a ...fast getaway","Nelson, played by Corey Haim is a teenager who robs banks with his father in group along with two other friends. Corey Haim Is the right guy, in the right place, at the right time. All he needed was a ...fast getaway",0,0,Fast Getaway,en +23378,Into the Woods,1991-03-15,153.0,,,tt0099851,,"A collection of fairy tale characters head into the woods, and soon learn that fairy tales don't end at ""happily ever after."" This rendition of Stephen Sondheim's Tony Award-winning musical was recorded on the stage with an all-star Broadway cast.",0,0,Into the Woods,en +13571,True Colors,1991-03-15,111.0,,,tt0103125,,Two law school friends find themselves at odds when one becomes a Justice Department lawyer and the other goes into politics.,0,0,True Colors,en +11719,One Foot in Heaven,1991-03-15,99.0,,,tt0102667,,,0,0,Un Piede in paradiso,it +39102,Dragon Ball Z: Lord Slug,1991-03-19,43.0,,425164,tt0142244,,A Super Namekian named Slug comes to invade Earth. But the Z Warriors do their best to stop Slug and his gang.,0,0,Doragon bôru Z 4: Super Saiyajin da Son Gokû,ja +21828,Flirting,1991-03-20,99.0,,,tt0101898,Here's to risks,"The year is 1965 and Danny Embling, is an awkward, underdeveloped teen suffering from occasional bouts of stuttering, attends an all-male boarding school in New South Wales, Australia. it has been some time since Danny has had any romantic relationship with a girl. He slowly becomes interested in Thandiwe Adjewa, a Ugandan-Kenyan-British girl attending the all-girls school across the lake.",0,2415396,Flirting,en +55615,Burn Up!,1991-03-21,50.0,,,tt0101522,"Big Crimes, Big Busts!","A group of young police officers infiltrate a sleazy night club in an attempt to apprehend a man named McCoy, who is involved in kidnapping and white slavery. The plot twists when one of the officers is kidnapped!",0,0,バーンナップ,ja +1497,Teenage Mutant Ninja Turtles II: The Secret of the Ooze,1991-03-22,88.0,,1582,tt0103060,"Cowabunga, it's the new turtle movie.","The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.",25000000,78000000,Teenage Mutant Ninja Turtles II: The Secret of the Ooze,en +12186,Defending Your Life,1991-03-22,112.0,,,tt0101698,The first true story of what happens after you die.,"In an afterlife resembling the present-day US, people must prove their worth by showing in court how they have demonstrated courage.",0,0,Defending Your Life,en +29475,The Five Heartbeats,1991-03-29,121.0,,,tt0101891,,"In the early 1960's, a quintet of hopeful, young African-American men form an amateur vocal group called The Five Heartbeats. After an initially rocky start, the group improves, turns pro, and rises to become a top flight music sensation. Along the way, however, the guys learn many hard lessons about the reality of the music industry.",0,0,The Five Heartbeats,en +96921,In the Eyes of the World,1991-04-03,95.0,,,tt0099072,,"Bruno's girlfriend, who lives in another town, doesn't believe he loves her. Therefore, he decides to prove his love by doing something ""crazy"" and ends up hijacking a school bus full of children at gunpoint to go see her",0,0,Aux yeux du monde,fr +74395,Hangin' With The Homeboys,1991-04-05,88.0,,,tt0101998,"Like 'DINER' and 'AMERICAN GRAFFITI', it's fast, funny and fresh.","Two African-Americans and two Puerto-Ricans (though one pretends to be Italian) go out on the town on a Friday night. They will be forced to get to know each other, and even worst, learn to like each other as friends",0,0,Hangin' With The Homeboys,en +88818,The Object of Beauty,1991-04-12,103.0,,,tt0102573,,A valuable piece of art is stolen from a couple.,0,0,The Object of Beauty,en +16820,F/X2,1991-04-16,108.0,,171439,tt0101846,The Deadly Art of Illusion,"F/X man Rollie Tyler is now a toymaker. Mike, the ex-husband of his girlfriend Kim, is a cop. He asks Rollie to help catch a killer. The operation goes well until some unknown man kills both the killer and Mike. Mike's boss, Silak says it was the killer who killed Mike but Rollie knows it wasn't. Obviously, Silak is involved with Mike's death, so he calls on Leo McCarthy, the cop from the last movie, who is now a P.I., for help and they discover it's not just Silak they have to worry about.",16400000,0,F/X2,en +148451,Committed,1991-04-18,90.0,,,tt0094900,,A nurse is taken hostage by a patient pretending to be a doctor and is forced to administer to everyone.,0,0,Committed,en +10379,Drop Dead Fred,1991-04-19,103.0,,,tt0101775,Dishes. Relationships. Wind. This guy breaks everything.,"When Elizabeth returns to her mother's home after her marriage breaks up, she recreates her imaginary childhood friend, Fred, to escape from the trauma of losing her husband and her job. In between the chaos and mayhem that Fred creates, Elizabeth attempts to win back her husband and return to normality.",6788000,13878334,Drop Dead Fred,en +11450,Quiz Show,1994-09-16,133.0,,,tt0110932,Fifty million people watched but no one saw a thing.,Quiz Show is a 1994 American historical drama film which tells the true story of the Twenty One quiz show scandal of the 1950s.,0,0,Quiz Show,en +10750,Toy Soldiers,1991-04-24,112.0,,,tt0103112,"They've Always been REBELS - TODAY, They Become HEROES.","After federal agents arrest a drug czar and put him on trial, the cartel leader's vicious son storms a prep school and takes its students hostage. They rebel against the armed intruders and try to take back their academy by any means necessary.",0,15073942,Toy Soldiers,en +41164,Talent for the Game,1991-04-26,91.0,,,tt0103036,,Major League Baseball scout must find promising young player to save his job and his team.,0,0,Talent for the Game,en +1568,Carne,1991-05-01,38.0,,,tt0218871,,A butcher in Paris takes revenge after suspected his daughter has been attacked.,0,0,Carne,fr +48636,Nekromantik 2,1991-05-07,104.0,,173628,tt0102522,,"A female nurse desperately tries to hide her feelings of necrophilia from her new boyfriend, but still has pieces of the corpse of the first movie's hero in her possession.",0,0,Nekromantik 2,de +2125,Wedlock,1991-05-10,101.0,,,tt0103239,,A male prison escapee heads for his hidden loot electronically attached to a female prisoner.,0,0,Wedlock,en +248706,Mrs. Lambert Remembers Love,1991-05-12,0.0,,,tt0102475,,,0,0,Mrs. Lambert Remembers Love,hu +12447,Driving Me Crazy,1991-05-16,87.0,,,tt0104142,,No overview found.,0,0,Driving Me Crazy,en +10276,What About Bob?,1991-05-17,100.0,,,tt0103241,Bob's a special kind of friend. The kind that drives you crazy!,"Before going on vacation, self-involved psychiatrist Dr. Leo Marvin has the misfortune of taking on a new patient: Bob Wiley. An exemplar of neediness and a compendium of phobias, Bob follows Marvin to his family's country house. Dr. Marvin tries to get him to leave; the trouble is, everyone loves Bob. As his oblivious patient makes himself at home, Dr. Marvin loses his professional composure and, before long, may be ready for the loony bin himself.",35000000,63710000,What About Bob?,en +21338,Stone Cold,1991-05-17,92.0,,,tt0102984,A cop who enforces his own brand of justice.,"Joe Huff (Brian Bosworth) is a tough, loner cop with a flair for infiltrating dangerous biker gangs. The FBI blackmail Joe into an undercover operation that entails infiltrating ""The Brotherhood"" - a powerful Mississippi biker gang linked in the murder of government officials as well as dealing drugs with the mafia.",0,0,Stone Cold,en +25598,The Indian Runner,1991-05-19,127.0,,,tt0102116,,"An intensely sad film about two brothers who cannot overcome their opposite perceptions of life. One brother sees and feels bad in everyone and everything, subsequently he is violent, antisocial and unable to appreciate or enjoy the good things which his brother desperately tries to point out to him.",7000000,191125,The Indian Runner,en +60824,Lune Froide,1991-05-22,0.0,,,tt0102358,,,0,0,Lune Froide,fr +9292,Hudson Hawk,1991-05-23,100.0,,,tt0102070,Danger is his middle name.,"Eddie Hawkins, called Hudson Hawk has just been released from ten years of prison and is planning to spend the rest of his life honestly. But then the crazy Mayflower couple blackmail him to steal some of the works of Leonardo da Vinci. If he refuses, they threaten to kill his friend Tommy.",65000000,17218080,Hudson Hawk,en +2924,Backdraft,1991-05-24,137.0,,,tt0101393,"Silently behind a door, it waits.",They say a blast of flames can take a life ... and hide a secret. But now firemen brothers Brian and Stephen McCaffrey are battling each other over past slights while trying to stop an arsonist with a diabolical agenda from torching Chicago.,75000000,152368585,Backdraft,en +2611,Only the Lonely,1991-05-24,104.0,,,tt0102598,"The Man, The Woman, The Mother.","Danny Muldoon, a Chicago policeman, still lives with his overbearing mother Rose. He meets and falls in love with Theresa Luna , whose father owns the local funeral parlour. Naturally, his mother objects to the relationship, and Danny and Theresa must either overcome her objections or give up the romance.",0,21830957,Only the Lonely,en +20645,Rhapsody in August,1991-05-25,98.0,,,tt0101991,Tears. Laughter. Innocence. It was a summer of remembering.,"The story centers on an elderly hibakusha, who lost her husband in the 1945 atomic bombing of Nagasaki, caring for her four grandchildren over the summer. She learns of a long-lost brother, Suzujiro, living in Hawaii who wants her to visit him before he dies.",0,0,八月の狂詩曲,ja +74661,The Indecent Woman,1991-05-26,95.0,,,tt0102597,,"A woman with a steady marriage and a little daughter, goes bezerk and enters a seducing game.",0,0,De onfatsoenlijke vrouw,nl +89337,Blood Ties,1991-05-27,84.0,,,tt0101477,Only revenge is sweeter than blood.,"Carpathian Americans are just like any other expatriate organization, they enjoy family get together, and share business opportunities. There is just one minor difference, the Carpathian Americans seem to have a predilection for drinking human blood.",0,0,Blood Ties,en +53543,Claymation Comedy of Horrors,1991-05-29,30.0,,,tt0252993,,Wilshire Pig and Sheldon Snail discover a map to uncover Doctor Frankenswine's monster. All kinds of mishaps ensue in their quest.,0,0,Claymation Comedy of Horrors,en +66634,Dingo,1991-06-02,109.0,,,tt0104109,Truth is magic...It makes dreams come true.,"Young John Anderson is captivated by jazz musician, Billy Cross when he performs on the remote airstrip of his Western Australian outback hometown after his plane is diverted. Years later, now a family man and making a meagre living tracking dingoes and playing trumpet in a local band, John still dreams of joining Billy on trumpet and makes a pilgrimage to Paris.",200000,300000,Dingo,en +143380,Genius,1991-06-06,162.0,,,tt0101943,,He is overly intelligent... He is genius... And he's just trying to make his life a little bit better in an new era post-communist Russia.,0,0,Geniy,ru +27549,Beastmaster 2: Through the Portal of Time,1991-06-08,107.0,,106000,tt0101412,,"Mark Singer returns as Dar, the warrior who can talk to the beasts. Dar is forced to travel to earth to stop his evil brother from stealing an atomic bomb, and turning their native land from a desert into... well... a desert! Written by Jim Palin",6000000,869325,Beastmaster 2: Through the Portal of Time,en +9079,Dying Young,1991-06-20,111.0,,,tt0101787,,"After she discovers that her boyfriend has betrayed her, Hilary O'Neil is looking for a new start and a new job. She begins to work as a private nurse for a young man suffering from blood cancer. Slowly, they fall in love, but they always know their love cannot last because he is destined to die.",0,0,Dying Young,en +59704,Where Angels Fear to Tread,1991-06-21,108.0,,,tt0103243,,"The widow Lilia Herriton meets a young man when she visits Italy and marries him. The man is only a dentist without a good name, and Lilia's relatives are clearly unhappy with her choice. Lilia dies while giving birth to a son, and two relatives travel to Italy to take care of of the baby, expecting no trouble from the father.",0,0,Where Angels Fear to Tread,en +24331,Scanners II: The New Order,1991-06-28,104.0,,88574,tt0102848,He can make you do anything...if he puts his mind to it.,A scanner discovers a plot by renegade elements in the city government to take power with the help of evil scanners.,0,14225876,Scanners II: The New Order,en +28597,Problem Child 2,1991-07-03,90.0,,180854,tt0102719,,"Junior and his father, Ben, move from Cold River to Mortville. Junior becomes threatened by Ben's desire to date again and find a new mother for Junior, and sabotages each of his dates.",0,0,Problem Child 2,en +11175,Lucky Luke,1991-07-04,92.0,,305360,tt0102351,,Lucky Luke becomes the Sheriff of Daisy Town and runs out all the criminals. Then the Dalton brothers arrive and try to get the Indians to break the peace treaty and attack the town.,0,0,Lucky Luke,en +11364,Regarding Henry,1991-07-10,108.0,,,tt0102768,"His life was based on power, success, and ruthlessness. Until a bullet made him think again.","Henry is a lawyer who survives a shooting only to find he cannot remember anything. If that weren't enough, Henry also has to recover his speech and mobility, in a life he no longer fits into. Fortunately, Henry has a loving wife and daughter to help him.",0,0,Regarding Henry,en +25330,Dutch,1991-07-19,107.0,,,tt0101786,They're the best of friends... And they've got the scars to prove it.,"To get to know his girlfriend's son, a man volunteers to pick him up from a prep school....only to learn that her son's not the nicest kid.",17000000,4603929,Dutch,en +24752,Dragon Ball Z: Cooler's Revenge,1991-07-20,48.0,,425164,tt1125254,,"After defeating Frieza, Goku returns to Earth and goes on a camping trip with Gohan and Krillin. Everything is normal until Cooler - Frieza's brother - sends three henchmen after Goku. A long fight ensues between our heroes and Cooler, in which he transforms into the fourth stage of his evolution and has the edge in the fight...until Goku transforms into Super Saiyan.",0,0,Doragon bôru Z 5: Tobikkiri no saikyô tai saikyô,ja +110830,American Kickboxer,1991-07-24,92.0,,,tt0101325,,"Kickboxing champion B.J. is jailed for an accidental murder thanks to the testimony of his arch-nemesis Denard. A year later, B.J. is released and then challenged by Denard for $100,000. Will B.J. accept and get even with Denard?",0,0,American Kickboxer,en +206157,Into the Badlands,1991-07-24,89.0,,,tt0102125,,A bounty hunter searches the west for a wanted outlaw named Red Roundtree.,0,0,Into the Badlands,en +26142,The Doctor,1991-07-24,122.0,,,tt0101746,An Uplifting Story About Finding New Meaning In Life.,"Jack McKee is a doctor with it all: he's successful, he's rich, and he has no problems.... until he is diagnosed with throat cancer. Now that he has seen medicine, hospitals, and doctors from a patient's perspective, he realises that there is more to being a doctor than surgery and prescriptions.",12000000,38120905,The Doctor,en +41805,V.I. Warshawski,1991-07-26,89.0,,,tt0103184,Killer eyes. Killer legs. Killer instincts.,"Victoria ""V.I"" Warshawski is a Chicago based private detective who agrees to babysit for her new boyfriend; then he is murdered. Being the detective type, she makes the murder her next case. In doing so she befriends the victim's daughter, Kat, and together they set out to crack the case.",0,0,V.I. Warshawski,en +26880,Children of Nature,1991-08-01,82.0,,,tt0101526,Sometimes a first love becomes a last love,An elderly couple leave their retirement home to make one last journey back to their home in the Western Fjords.,0,0,Börn náttúrunnar,en +20421,Rock-A-Doodle,1991-08-02,77.0,,,tt0102802,"The rousing, rollicking adventure of the world's first rockin' rooster!","Chanticleer is a foolhardy farm rooster who believes his crows can actually make the sun come up and shine. When the sun rises one morning without Chanticleer's crow, he leaves the farm in disgrace and runs off to become a rock 'n' roll singer. But in his absence, a sinister, sunshine-hating owl prepares to take over.",18000000,11657385,Rock-A-Doodle,en +317246,Bandidos,1991-08-09,95.0,,,tt0099103,,"In the wake of the Mexican Revolution, a band of pre-teen boys are forced to rely on their own resources for survival.",0,0,Bandidos,en +274127,A Star for Two,1991-08-10,95.0,,,tt0166817,,Love between a man and a woman that endures the ravages of time.,0,0,A Star for Two,es +14904,Proof,1991-08-15,86.0,,,tt0102721,"Photographs don't lie, people do.",The life of a blind photographer who is looked after by a housekeeper is disrupted by the arrival of an agreeable restaurant worker.,0,524668,Proof,en +41787,Defenseless,1991-08-23,104.0,,,tt0099397,Stalked by a madman. Framed by a killer. Terrified by the truth.,"A Los Angeles lawyer defends her former college roommate, whose husband -- her lover -- has been slain.",0,0,Defenseless,en +2453,Harley Davidson and the Marlboro Man,1991-08-23,98.0,http://www.mgm.com/title_title.do?title_star=HARLEYDA,,tt0102005,When the going gets tough... the tough take the law into their own hands.,"It's the lawless future, and renegade biker Harley Davidson (Mickey Rourke) and his surly cowboy buddy, Marlboro (Don Johnson), learn that a corrupt bank is about to foreclose on their friend's bar to further an expanding empire. Harley and Marlboro decide to help by robbing the crooked bank. But when they accidentally filch a drug shipment, they find themselves on the run from criminal financiers and the mob in this rugged action adventure.",23000000,7434726,Harley Davidson and the Marlboro Man,en +108822,Night and Day,1991-08-28,90.0,,,tt0102566,,"Jack and Julie live in a bare flat in Paris. At night, Jack drives a taxi while Julie wanders around the city, and in the day they make love. One day Julie meets Joseph, the daytime driver of the taxi, and soon Julie is spending her nights with Joseph and her days with Jack.",0,0,Nuit et jour,en +5048,Prospero's Books,1991-09-05,120.0,,,tt0102722,"A magician's spell, the innocence of young love and a dream of revenge unite to create a tempest.",An exiled magician finds an opportunity for revenge against his enemies muted when his daughter and the son of his chief enemy fall in love in this uniquely structured retelling of the 'The Tempest'.,0,1750301,Prospero's Books,en +32074,Company Business,1991-09-06,98.0,,,tt0101606,You can't judge a man by the company that keeps him!,"An aging agent is called back by ""the Company"" to run a hostage trade of a Soviet spy for an American agent.",0,1501785,Company Business,en +11521,Little Man Tate,1991-09-06,99.0,,,tt0102316,It's not what he knows. It's what he understands.,"Dede is a sole parent trying to bring up her son Fred. When it is discovered that Fred is a genius, she is determined to ensure that Fred has all the opportunities that he needs, and that he is not taken advantage of by people who forget that his extremely powerful intellect is harboured in the body and emotions of a child.",0,0,Little Man Tate,en +395914,Courier to the East,1991-09-07,88.0,,,tt2365172,,Two former orphans tied their fate with the mafia. One died and the other was arrested in the Central Asian town.,0,0,Kuryer na Vostok,ru +129542,Salmonberries,1991-10-31,95.0,,,tt0102829,,"A young orphaned woman, named Kotzebue, is trying to find out who her parents are in the icy landscapes of Alaska. Kotzebue (K.d. Lang) is helped by a east-german librarian (Rosel Zech), whose husband was killed while fleeing from the GDR. Although both women could not be more different from each other, a fragile relationship forms.",0,0,Salmonberries,en +41783,Life on a String,1991-09-08,110.0,,,tt0101440,,"Two blind men pursue ephemeral and unlikely hopes. One is an aged master, a wandering troubador venerated as a saint, in physical decline, waiting to break his 1,000th banjo string, an event his own master promised years before would bring him sight. The other is his apprentice, Shidou, who longs for a woman's love and is enchanted with the radiant and spirited Lanxiu. The two men are encamped outside Lanxiu's village, the saint using his energy and voice to bring peace between warring factions. Does sight await the saint when the 1000th string breaks? Can Shidou's strength of character overcome provincial prejudice to win the hand of Lanxiu and a place in the village?",0,0,Bian zou bian chang,zh +49410,Motorama,1991-09-10,90.0,,,tt0104922,There's only one way to win the girl of your dreams: floor it!,"A ten year old boy gets tired of life with abusive parents and cashes in his piggy bank and steals a Mustang. He rides off into a surreal America playing ""Motorama,"" a game sponsored by Chimera Gas Company. He has various encounters with different people, and eventually reaches the Chimera Gas Company where he finds they are not playing by the rules of the game.",0,0,Motorama,en +31922,Year of the Gun,1991-09-10,111.0,,,tt0103303,,"In this thriller, American novelist David Raybourne (Andrew McCarthy) accidentally becomes entangled in the Red Brigade's terrorist plan to kidnap Italian Premier Aldo Moro during a research trip to Rome. As the terrorists attempt to kill David, he and his photojournalist friend (Sharon Stone) must struggle to stay alive.",1182273,0,Year of the Gun,en +103218,A Simple Story,1991-09-12,91.0,,,tt0102987,,In a sicilian town a mysterious death happens: suicide or murder?,0,0,Una storia semplice,en +44414,Liebestraum,1991-09-13,112.0,,,tt0102299,"A story of lust, murder and dreams.",A man returns to his hometown and a series of dark secrets are revealed.,0,0,Liebestraum,en +222619,The Flash 2 - Revenge of the Trickster,1991-09-18,88.0,,,tt0101893,Every super hero has his nemesis - and this time Flash has that murderous mischief maker the Trickster,,0,0,The Flash 2 - Revenge of the Trickster,en +78285,The Old Lady Who Walked in the Sea,1991-09-18,0.0,,,tt0103207,,La vieille qui marchait dans la mer (English: The Old Lady Who Walked in the Sea) is a 1991 French film directed by Laurent Heynemann and written by Heynemann and Dominique Roulet. It won the 1992 César Award for Best Actress.,0,0,La vieille qui marchait dans la mer,fr +2169,Manta - Der Film,1991-09-18,90.0,,,tt0102396,,No overview found.,0,0,Manta - Der Film,de +212996,Lee Rock,1991-09-18,70.0,,401270,tt0103292,,The film chronicles the rise and fall of a corrupt police force that Lee Rock becomes a part of.,0,0,五億探長雷洛傳:雷老虎,cn +28455,Deceived,1991-09-27,104.0,,,tt0101694,She Thought She Had The Perfect Life. But She Was Dead Wrong.,"A marriage that seemed perfect comes crashing down after the supposed death of Jack Saunders, husband of Adrienne Saunders. After his supposed death, strange developments begin to be discovered by Adrienne regarding Jack's past. Developments that lead her to believe she has been Deceived.",0,0,Deceived,en +20704,Necessary Roughness,1991-09-27,108.0,,,tt0102517,They just might be the biggest bunch of losers that ever became winners.,"When the Texas Southern Armadillos football team is disqualified for cheating and poor grades, the University is forced to pick from a team that actually goes to school. Will they even win a single game?",0,0,Necessary Roughness,en +64167,Let Him Have It,1991-10-04,115.0,,,tt0102288,The shocking story of an unbelievable miscarriage of justice.,"In 1950s England, slow-witted Derek Bentley falls in with a group of petty criminals led by Chris Craig, a teenager with a fondness for American gangster films. Chris and Derek's friendship leads to their involvement in the true case which would forever shake England's belief in capital punishment.",0,0,Let Him Have It,en +53693,Krummerne,1991-10-04,86.0,,180498,tt0102240,,,0,0,Krummerne,da +25674,Shout,1991-10-04,89.0,,,tt0102913,Rock & Romance Explode In A Texas Town.,A new music teacher in a 1955 West Texas home for wayward boys brings new vision and hope for many of the interned boys.,0,3547684,Shout,en +17467,Riki-Oh: The Story of Ricky,1991-10-05,90.0,,,tt0102293,,"Hard man Ricky is incarcerated in a futuristic prison where ultra-violence is his only means of survival in the corrupt, sadistic system. He must battle his way quite literally 'through' the feared 'gang of four', and undergo multiple tortures before facing the governor in one of the goriest climaxes ever seen.",0,0,力王,cn +2071,Shattered,1991-10-11,98.0,,,tt0102900,,Dan Merrick comes out from a shattering car accident with amnesia. He finds that he is married to Judith who is trying to help him start his life again. He keeps getting flashbacks about events and places that he can't remember. He meets pet shop owner and part time private detective Gus Klein who is supposedly done some work for him prior to the accident. Klein helps Merrick to find out more...,22000000,11511031,Shattered,en +225614,My Sons,1991-10-12,120.0,,,tt0102488,,"Tetsuo is a young man living in Tokyo, who falls in love with a deaf-mute factory girl. He has always felt jealous of his college- educated brother, but ultimately wins both the girl and his father's acceptance and support in a touching and refreshing way.",0,0,Musuko,ja +55754,Vääpeli Körmy ja vetenalaiset vehkeet,1991-10-18,,,148320,tt0103228,,,0,0,Vääpeli Körmy ja vetenalaiset vehkeet,fi +3784,Frankie and Johnny,1991-10-18,118.0,,,tt0101912,You never choose love. Love chooses you.,"When Johnny is released from prison following a forgery charge, he quickly lands a job as a short-order cook at a New York diner. Following a brief fling with waitress Cora, Frankie develops an attraction for Cora's friend and fellow waitress Frankie. While Frankie resists Johnny's charms initially, she eventually relents when her best friend, Tim, persuades her to give Johnny a chance.",0,22773535,Frankie and Johnny,en +43648,The Comics 2,1991-10-19,91.0,,256953,tt0103991,,A few funny little novels about different aspects of life.,0,0,Le comiche 2,it +16096,House Party 2,1991-10-23,94.0,,159600,tt0102065,,Kid'N'Play leave their neighborhood and enter the world of adulthood and higher education. Play attempts to get rich quick in the music business while Kid faces the challenges of college.,0,0,House Party 2,en +20096,The Butcher's Wife,1991-10-25,107.0,,,tt0101523,There's Magic In The Air.,"A clairvoyant woman thinks that she's met her future husband because she's seen him in a dream. They marry and he takes her back to his butcher shop in New York city, where her powers tend to influence everyone she meets while working in the shop. Through her advice, she helps others and eventually finds the true man of her dreams.",0,0,The Butcher's Wife,en +128795,Fatal Bond,1991-10-28,89.0,,,tt0104233,It was a one-night stand that became a Fatal Bond.,"A young woman takes off with a charming stranger in Australia, then begins to think he's a killer.",0,0,Fatal Bond,en +16487,The Spirit of Christmas,1995-01-01,5.0,,,tt0122264,,Four carolling children meet Jesus and Santa Claus and learn the true meaning of Christmas.,0,0,The Spirit of Christmas,en +10020,Beauty and the Beast,1991-11-13,84.0,http://disney.go.com/disneyvideos/animatedfilms/beauty/?cmp=dcom_VAN_WDSHE_BEA_van_batb__Extl,153010,tt0101414,The most beautiful love story ever told.,"Follow the adventures of Belle, a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff, Belle soon learns the most important lesson of all -- that true beauty comes from within.",25000000,377350553,Beauty and the Beast,en +66469,Dream Machine,1991-11-13,88.0,,,tt0099462,Perfect Car. Perfect Girl. Perfect Murder... Almost.,"As a reward from a jilted millionairess, Davis is given the $100,000 Porsche of the unfaithful husband. Unknown to Davis and the wife, the body of the husband is in the Porsche. The killer tries in vein to recover the body before it is discovered.",0,0,Dream Machine,en +77664,And You Thought Your Parents Were Weird!,1991-11-15,92.0,,,tt0101343,,"Two boys follow in their late fathers foot steps by inventing weird and wonderful gadgets. Trouble lies ahead when after a halloween party the spirit of their father ends up in the latest invention, a robot.",0,402539,And You Thought Your Parents Were Weird,en +2907,The Addams Family,1991-11-22,99.0,,11716,tt0101272,Weird Is Relative,"Uncle Fester has been missing for 25 years. An evil doctor finds out and introduces a fake Fester in an attempt to get the Adams Family's money. The youngest daughter has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family. Can the doctor carry out her evil plans and take over the Adams Family's fortune?",30000000,191502426,The Addams Family,en +28859,Dolly Dearest,1991-11-25,93.0,,,tt0104119,,"An American family moves to Mexico to fabricate dolls, but their toy factory happens to be next to a Sanzian grave and the toys come into possession of an old, malicious spirit.",0,0,Dolly Dearest,en +68004,Center Stage,1991-11-29,126.0,,,tt0102816,,"The film is based on a true story: the tragic life of China's first prima donna of the silver screen, Ruan Lingyu. This movie chronicles her rise to fame as a movie actress in Shanghai during the 1930s. Actress Maggie Cheung portrayed Ruan in this movie. Nicknamed the ""Chinese Garbo,"" Ruan Lingyu began her acting career when she was 16 years old and committed suicide at age 24. The film alternates between present scenes (production talks between director Kwan, Cheung, and co-star Carina Lau, interviews of witnesses who knew Ruan), re-creation scenes with Cheung (as Ruan, acting inside this movie), and extracts from Ruan's original films including her final two films The Goddess and New Women.",0,0,阮玲玉,cn +77314,The Cabinet of Dr. Ramirez,1991-12-04,,,,tt0101530,,,0,0,The Cabinet of Dr. Ramirez,fr +19200,Shadows and Fog,1991-12-05,85.0,,,tt0105378,,"With a serial strangler on the loose, a bookkeeper wanders around town searching for the vigilante group intent on catching the killer.",14000000,2735731,Shadows and Fog,en +10333,The Prince of Tides,1991-12-25,132.0,,,tt0102713,"A story about the memories that haunt us, and the truth that sets us free.",A troubled man talks to his suicidal sister's psychiatrist about their family history and falls in love with her in the process.,30000000,74787599,The Prince of Tides,en +1633,Fried Green Tomatoes,1991-12-27,130.0,,,tt0101921,The secret of life? The secret's in the sauce.,"Amidst her own personality crisis, southern housewife Evelyn Couch meets Ninny, an outgoing old woman who tells her the story of Idgie Threadgoode and Ruth Jamison, two young women who experienced hardships and love in Whistle Stop, Alabama in the 1920s.",11000000,119418501,Fried Green Tomatoes,en +2742,Naked Lunch,1991-12-27,115.0,,,tt0102511,Exterminate all rational thought.,"After developing an addiction to the substance he uses to kill bugs, an exterminator accidentally murders his wife and becomes involved in a secret government plot being orchestrated by giant bugs in an Islamic port town in Africa.",16000000,0,Naked Lunch,en +54405,Hear My Song,1991-12-27,113.0,,,tt0102014,There's definitely magic in the air,"Singer Josef Locke fled to Ireland 25 years ago to escape the clutches of the tax man and police Chief Jim Abbott. What he also left behind was the love of his life Cathleen Doyle. Now, Micky O’Neill is desperate to save both his ailing Liverpool nightclub ‘Heartly’s’ and his failing relationship with the beautiful Nancy, Cathleen’s daughter. The solution? Book the infamous Josef Locke.",0,0,Hear My Song,en +246417,"Daddy, Father Frost Is Dead",1991-12-29,81.0,,,tt0104239,,"A biologist, obsessed with the idea of writing a treatise on a new kind of mouse, becomes witness to a number of bizarre and horrific events, from his son's suicide, to the S&M engaged in by respectable middle-aged men, to his own family's psychic morbidity.",0,0,"Папа, умер Дед Мороз",ru +47647,Fight Back to School,1991-12-31,100.0,,192175,tt0103045,,"Star Chow (Stephen Chow) is about to be kicked out of the Royal Hong Kong Police's elite Special Duties Unit (SDU). But a senior officer decides to give him one last chance: Star must go undercover as a student at the Edinburgh High School in Hong Kong to recover the senior officer's missing revolver. The undercover operation is made complicated when Star is partnered with Tat - an aging, incompetent police detective (Ng Man-Tat). However, Star still manages to fall in love with Ms Ho (Cheung Man), the school's guidance counselor, as well as disrupting a gang involved in arms-dealing.",0,0,逃學威龍,cn +62301,Stray Dog: Kerberos Panzer Cops,1991-12-31,99.0,,,tt0228457,,"Detective Kouichi Todome -- head of the elite Kerberos police squad -- escapes after the unit is marked for destruction by the government. Three years later, Inui, a member of the squad, is released from prison with one goal: to find his former master. But the trail to Todome is a twisted one, and when Inui finally finds Todome, he realizes that instead of following his own path, Todome was following the orders of another.",0,0,Jigoku no banken: kerubersu,en +118809,Heart,1992-01-01,172.0,,,tt0267617,,"When a gangster takes over the art of karate and causes unrest in a town, one man rises to fight against them.",0,0,Jigar,hi +464819,The Making of 'The Terminator': A Retrospective,1992-01-01,18.0,,,tt0365473,,"An interview session with Arnold Schwarzenegger and director James Cameron gives us a better understanding of how hard it was making Terminator, The (1984) on such a low budget. Clips from the film are present along with funny and interesting stories from behind the scenes.",0,0,The Making of 'The Terminator': A Retrospective,en +56486,Loss Is to Be Expected,1992-01-01,118.0,,,tt0104894,,,0,0,Mit Verlust ist zu rechnen,de +186634,Kung Fu Rascals,1992-01-01,101.0,,,tt0148388,,"In the tradition of Bruce Lee, Jackie Chan and the Three Stooges comes this wildly funny action comedy from director Steve Wang. When chased by mutated monsters, crafty ninjas and a 300 foot tall stone god, the bumbling heroes battle against the powers of darkness in search of ""The Power Most Big"".",0,0,Kung Fu Rascals,en +47507,Café au Lait,1993-01-01,94.0,,,tt0107642,,"Lola is pregnant. But she does not know who the father is Jamal, the black muslim, son of diplomats, or Felix, the pennyless jewish messenger. Jamal and Felix meet at Lola's, and the race begins.",0,0,Métisse,en +421741,Men's Games,1992-01-01,68.0,,,tt0180853,,"The group of stuntmen comes to the beach to shoot an adventure film. Guys are training all day long, polishing their skills. One of the stuntmen witnessed two men pursuing the girl. He saves her from bullies, and the fugitive finds protection and patronage in the crew. However, a woman's behaviour is strange: she keeps having nightmares, she's afraid of something or someone, but refuses to explain what was going on. Men realize that their new friend is hiding something ...",0,0,Muzhskaya kompaniya,ru +114284,Praying with Anger,1992-01-01,101.0,,,tt0105162,,"An alienated, Americanized teenager of East Indian heritage is sent back to India where he discovers not only his roots but a lot about himself.",0,0,Praying with Anger,en +24645,The Turning,1992-01-01,87.0,,,tt0105660,,"Gillian Anderson in her first ever screen role. Anderson's psycho boyfriend, Cliff, returns to his home town seething with pent-up frustration and rage. Four years earlier his family was on the verge of breaking up. Noe he's returned to put things right, fired by a psychopathic determination he is intent on destroying his father's new relationship...whatever it takes.",0,0,The Turning,en +151489,Hedd Wyn,1992-01-01,123.0,,,tt0104403,,"'Hedd Wyn' is a 1992 Welsh anti-war biopic. Ellis Humphrey Evans, a farmer's son and poet living at Trawsfynydd in the Meirionydd countryside of upland Wales, competes for the most coveted prize of all in Welsh Poetry - that of the chair of the National Eisteddfod, which in August 1917 was due to be held in Birkenhead (one of the rare occasions when it was held in England). After submitting his entry, under his bardic name ""Hedd Wyn"" (""Blessed Peace"") Evans later departs from Meirionydd by train to join the Royal Welsh Fusiliers in Liverpool, despite his initial misgivings about the war. Ellis is sent to fight in the trenches of Flanders. 'Hedd Wyn' was the first Welsh-language film to be nominated for an Oscar.",0,0,Hedd Wyn,cy +162406,Embracing,1992-01-01,40.0,,,tt0191310,,A personal film by Naomi Kawase made about her elders.,0,0,Ni tsutsumarete,en +128657,Saint Tropez - Saint Tropez,1992-01-01,98.0,,,tt0166335,,"Four stories of love are interwoven on the beautiful, coastal paradise of Saint Tropez.",0,0,Saint Tropez - Saint Tropez,it +85424,Hotel E,1992-01-01,28.0,,,tt0475612,,"This short animation is about the darkroom between Eastern Europe and the American Dream. Prize of Land Baden-Württemberg from International Festival of Animated Film in Stuttgart, Germany 1992.",0,0,Hotell E,et +142802,Гонгофер,1992-01-01,0.0,,,tt0361661,,,0,0,Гонгофер,ru +45562,An Ungentlemanly Act,1992-01-01,130.0,,,tt0134178,War... an uncivilized business.,"Based on actual accounts, this film portrays the days and hours before and during the invasion of the Falkland Islands by Argentina, which eventually lead to the Falklands War. As the Argentine forces land on the main island and make their way towards Government House, the handful of British defenders batten down the hatches and prepare to defend the Governor Rex Hunt, his family and their fellow islanders from the invaders.",0,0,An Ungentlemanly Act,en +28263,Fifty/Fifty,1992-01-01,101.0,,,tt0106902,,Two bickering mercenaries are hired by the CIA to overthrow a South East Asian dictator.,0,0,Fifty/Fifty,en +87388,In the Arms of a Killer,1992-01-05,93.0,,,tt0104495,,A young detective falls in love with a witness in a murder case and suddenly becomes a suspect herself.,0,0,In the Arms of a Killer,en +279692,Murder Without Motive: The Edmund Perry Story,1992-01-06,0.0,,,tt0104942,He climbed from New York's worst ghetto to the nation's top schools. He was living the American dream. So what went wrong?,Made for TV Movie,0,0,Murder Without Motive: The Edmund Perry Story,en +348507,Breaking the Silence,1992-01-14,96.0,,,tt0103878,,Defending a teen charged with patricide drudges up dark memories for a lawyer.,0,0,Breaking the Silence,en +51581,"Sumo Do, Sumo Don't",1992-01-15,105.0,,,tt0105388,,"A college senior, Shuhei, is blackmailed by a professor into joining the school's sumo team. He is aided by a group of misfits who must team together to defeat their rivals or face disgrace and the disbandment of the sumo club.",0,0,シコふんじゃった。,ja +52868,House IV,1992-01-21,94.0,,102782,tt0104449,Home Deadly Home,Roger Cobb (William Katt) is killed in a car accident. His family must move into the house that has haunted him for several years. Soon the family begins to experience scary and unexplained phenomena.,0,0,House IV,en +155341,Ax 'Em,1992-01-29,70.0,,,tt0349113,It was supposed to be a weekend getaway until the horror began.,"A weekend retreat at a remote cabin in the woods for a group of childhood pals turns into a terrifying fight for survival, as a former friend whose family was killed years earlier comes along looking for revenge.",0,0,The Weekend It Lives,en +33305,Scanners III: The Takeover,1992-01-31,101.0,,88574,tt0105322,The terror has not ended. It has just begun... again.,"A young female scanner turns from a sweet young thing into a murderous, power-crazed villain after she takes an experimental drug developed by her father. Her brother, who is also a scanner, is the only one powerful enough to stop her.",0,0,Scanners III: The Takeover,en +71120,Final Impact,1992-02-07,99.0,,,tt0104267,,"A former kick-boxing world champion discovers a young fighter, and believes together they can win back the world crown.",0,0,Final Impact,en +28212,La Vie de Bohème,1992-02-18,100.0,,,tt0105750,,"Three penniless artists become friends in modern-day Paris: Rodolfo, an Albanian painter with no visa, Marcel, a playwright and magazine editor with no publisher, and Schaunard, a post-modernist composer of execrable noise.",0,0,La vie de bohème,fr +70026,Falling From Grace,1992-02-21,100.0,,,tt0104225,,"Rock singer John Mellencamp makes his screen and directorial debut in this story by ""Lonesome Dove"" author, Larry McMurtry. The story, not too separated from Mellencamp's real life, finds him as a country music star whose meanderings and philandering has thrown his life into turmoil. Returning to his native Indiana to try to reestablish a normal life. Instead he takes up with an old lover (Lenz), ignoring his loving wife (Hemingway), and duplicating the lifestyle of his womanizing father (Akins).",3,232,Falling From Grace,en +2441,Cows,1992-02-26,96.0,,,tt0103186,,"A film set in the Basque region, beginning in the Carlist war of 1875 and ending during the Spanish Civil war of 1936. The film portrays how one single act of cowardice shapes the life of the next three generations of two families and fuels the intense rivalry which will span the next sixty-one years.",0,0,Vacas,es +2687,Memoirs of an Invisible Man,1992-02-28,99.0,http://www.theofficialjohncarpenter.com/memoirs-of-an-invisible-man/,,tt0104850,An adventure like you've never seen.,"After a freak accident, an invisible yuppie runs for his life from a treacherous CIA official while trying to cope with his new life.",40000000,14358033,Memoirs of an Invisible Man,en +281291,Bethune: The Making of a Hero,1993-09-17,115.0,,,tt0099127,,"True story of Norman Bethune, a medical doctor who fought for justice in China during Mao's rise to power.",0,0,Bethune: The Making of a Hero,en +70046,Grave Secrets: The Legacy of Hilltop Drive,1992-03-02,97.0,,,tt0104365,,Jean and Shag Williams locate a newly built house and decide it's perfect for them to buy. One thing the developers forgot to tell them about was that it is built on a graveyard. Within days toilets start to flush by themselves and the garage door moves up and down by it's own accord. Will Jean and Shag realize that the place may be haunted by ghosts before it's too late.,0,0,Grave Secrets: The Legacy of Hilltop Drive,en +74714,Diên Biên Phu,1992-03-04,125.0,,,tt0104105,,,30000000,0,Diên Biên Phu,fr +34151,Blame It on the Bellboy,1992-03-06,78.0,,,tt0103827,"Mix-ups, Mishaps, Madness, and Mayhem... It's all part of the service.","Mike Lawton, Maurice Horton, and Melvin Orton are three men who come to Venice. One of them is a hit man sent to take out a mobster. Another is a lech looking for a little action with a woman he never met, whom he was set up with. And one of them was sent by his employer to inspect a property his boss wants to buy. All three men stay at the same hotel. But when the bellboy gets their names mixed up and gives info meant for someone else. So one of them meets a Realtor who will whatever she has to, to close the sale. And another follows a woman looking for romance. And another goes to the home of the mobster who thinks he's sent there to kill him.",0,0,Blame It on the Bellboy,en +39103,Dragon Ball Z: Return of Cooler,1992-03-07,46.0,,425164,tt0142237,,Cooler has resurrected himself as a robot and is enslaving the people of New Namek. Goku and the gang must help.,0,0,Doragon Bōru Zetto: Gekitotsu!! Hyaku-Oku Pawā no Senshi-tachi,ja +40649,Demonic Toys,1992-03-12,83.0,,264434,tt0104083,They want to play with you...,"A botched bust on a pair of arms dealers inadvertantly leads to the raising of a sixty-six-year-old demon with the power to bring toys to life as his personal minions. The demon is looking for a body to inhabit so he can increase his powers, and it just so happens that one of the police officers is pregnant with the ideal host.",0,0,Demonic Toys,en +80343,Lady Dragon,1992-03-13,97.0,,,tt0104667,She Fights Fire With Fire,"An ex-CIA agent living in Indonesia tracks the arms dealer who killed her husband. Along the way, she meets a young boy and his grandfather, who teach her in the ways of the Lady Dragon.",0,0,Lady Dragon,en +26670,Noises Off...,1992-03-20,101.0,,,tt0105017,,A travelling theater group has so much action going on behind-the-scenes it almost ruins the performances.,12000000,2280148,Noises Off...,en +1482,Laws of Gravity,1992-03-21,100.0,,,tt0104693,,"Jimmy and Jon are a couple of Brooklyn guys who somehow never found their way into workaday society; they never found their way into big-time crime, either.",0,0,Laws of Gravity,en +293092,Back to the USSR,1992-03-27,117.0,,,tt0099089,,A film by Jari Halonen,0,0,Back to the USSR - takaisin Ryssiin,en +250029,Absence,1992-04-01,112.0,,,tt0103615,,"Four nameless people -- the old man, the woman, the soldier, and the gambler -- journey to a desolate wasteland beyond the limits of an unnamed city.",0,0,L'Absence,en +32635,A Place in the World,1992-04-09,120.0,,,tt0104774,,"Mario and Ana, in voluntary exile from Buenos Aires, live in a remote Argentine valley with their 12-year-old son Ernesto. Mario runs a school and a wool cooperative; Ana, a doctor, heads a clinic with Nelda, a progressive nun. Into this idealistic family comes Hans, a jaded Spanish geological engineer -- surveying the land for the local patron, to see if it can be dammed for hydro-electric power, which would drive the peasants from the land into the cities.",0,0,Un lugar en el mundo,es +13225,FernGully: The Last Rainforest,1992-04-10,76.0,,19160,tt0104254,Do you believe in humans?,"When a sprite named Crysta shrinks a human boy, Zak, down to her size, he vows to help the magical fairy folk stop a greedy logging company from destroying their home, the pristine rainforest known as FernGully. Zak and his new friends fight to defend FernGully from lumberjacks -- and the vengeful spirit they accidentally unleash after chopping down a magic tree.",0,32710894,FernGully: The Last Rainforest,en +11428,Sleepwalkers,1992-04-10,91.0,,,tt0105428,They feast on your fear - and it's dinner time.,A mother-and-son team of strange supernatural creatures come to town to seek out a virgin to feed on.,0,30524763,Sleepwalkers,en +244956,Basara: Princess Goh,1992-04-11,142.0,,,tt0104351,,"The final feature by Hiroshi Teshigahara. A direct sequel to his preceding film, Rikyu (1989).",0,0,Gô-hime,en +171213,Love After Love,1992-04-15,104.0,,,tt0103710,,"Lola is an independent woman, a professional writer with 2 men on a string. Both men are married with children. When the men, and Lola, face having to make choices, Lola's comfortable life becomes less appealing.",0,0,Après l'amour,en +2731,Indochine,1992-04-15,148.0,,,tt0104507,,"The story starts in the 1930's at one of the largest rubber-tree plantations in Indochine (Vietnam). This plantation is owned by the French colonist Eliane, a proud woman who lives with her father and her native adoptive daughter Camille. She doesn't have a husband or a man in her life (apart from her father), but gets to know the young officer Jean-Baptiste when both want to buy the same painting at an auction. They have a short affair, but then she refuses to see him again. In the meantime it's Camille who has fallen in love with Jean-Baptiste and Eliane knows it. She makes sure he's sent to one of the most desolate outposts on some remote island, making sure that the two will never see each other again. Camille has no choice, but to marry the man she was promised to, but in the meantime she starts a search to find the man she really loves.",0,0,Indochine,fr +5899,The Northerners,1992-04-17,108.0,,,tt0105019,,Life in a new neighborhood can't be stranger than in this movie.,0,0,De Noorderlingen,nl +61225,The Babe,1992-04-17,115.0,,,tt0103747,There Was Only One.,"""The Babe"" chronicles Ruth's phenomenal story--from his hard knock beginnings at a Baltimore orphanage, to his meteoric rise to baseball superstardom and his poignant retirement from the game. His amazing career included seven American League pennants, four World Series championships, two tempestuous marriages and a wild lifestyle that earned him numerous suspensions.",0,17530973,The Babe,en +82868,I Don't Buy Kisses Anymore,1992-04-24,110.0,,,tt0104469,,"Bernie Fishbine is overweight. He stops at the neighborhood store to buy some chocolate kisses every day. This is where he meets Theresa Garabaldi. Then they take the same bus route every evening. Theresa invites Bernie to see her play piano at her father's restaurant. It is here that she gets him to join a gym. Theresa is in college and gets the idea to write about Bernie's weight problem for her thesis. She does this without telling Bernie. Meanwhile, Bernie is falling in love with Theresa, and vice versa.",0,0,I Don't Buy Kisses Anymore,en +123691,Dream Deceivers: The Story Behind James Vance vs. Judas Priest,1992-08-06,61.0,,,tt0104140,Heavy Metal Goes On Trial,"A chilling post mortem on the tragic case of two teenagers who decided to shoot themselves in the head with a shotgun, and the ensuing court case staged to place the blame on the heavy metal band Judas Priest.",0,0,Dream Deceivers: The Story Behind James Vance vs. Judas Priest,en +54715,Leaving Normal,1992-04-29,110.0,,,tt0104697,Sometimes the only way to find where you're going is to lose your way,A female buddy story in which Meg Tilly plays a child-like 20-something who has just walked out on her abusive husband. Darly (Christine Lahti) is fleeing a life as a waitress and stripper and is on her way to Alaska to claim a home and family she abandoned eighteen years earlier after giving birth. The two run into each other on the road and Darly welcomes the company as they head north from Wyoming.,0,0,Leaving Normal,en +12124,The Journey,1992-04-30,140.0,,,tt0105744,,"A young man living in a cold southern village in South America, decides to start a trip looking for his father. By doing this he discovers unexpected facts about his Latin American essence.",0,0,El viaje,es +18495,Folks!,1992-05-01,107.0,,,tt0104283,,"A slightly self absorbed yuppie takes in his parents including his senile father, after their home burns down. But his personal and professional life fall apart soon after.",0,6132924,Folks!,en +53064,Midori,1992-05-02,56.0,,,tt0930902,The camelia girl,"After losing her parents, young flower selling Midori is put up by a fairground group. She is abused and forced to slavery, until the arrival of an enigmatic magician of short stature, who gives her hope for a better future.",0,0,地下幻燈劇画 少女椿,ja +46972,Big Girls Don't Cry... They Get Even,1992-05-08,96.0,,,tt0101444,,"A girl fed up with her quirky, dysfunctional family runs away from home, causing all of them to spend time with each other.",0,0,Big Girls Don't Cry... They Get Even,en +9264,Poison Ivy,1992-05-08,93.0,,48188,tt0105156,"What Ivy wants, Ivy gets.",A seductive teen befriends an introverted high school student and schemes her way into the lives of her wealthy family.,0,0,Poison Ivy,en +37420,Timescape,1992-05-09,99.0,,,tt0104362,,"Before they can complete renovations on their new inn, Widower (Ben Wilson) and daughter (Hillary) are visited by a woman seeking immediate lodging for her strange group of travellers. Why they won't stay at the hotel in town is just the first of many mysteries surrounding the group that lead Wilson to a startling discovery affecting his family and neighbours.",0,0,Timescape,en +186869,The Vagrant,1992-05-15,91.0,,,tt0105719,He's not home alone.,"A business man buys a house, but he has a hard time trying to get rid of its previous tenant, a dirty bum.",9500000,0,The Vagrant,en +27052,For a Lost Soldier,1992-05-22,92.0,,,tt0108504,,"The story of a romantic relationship between a Canadian soldier and a child set in the Netherlands near the end of WWII. Told in flashback from the present day, the child, now a man, is still seeking his lost soldier.",0,0,Voor een Verloren Soldaat,nl +11259,Far and Away,1992-05-22,140.0,,,tt0104231,What they needed was a country big enough for their dreams.,"A young man (Cruise) leaves Ireland with his landlord's daughter (Kidman) after some trouble with her father, and they dream of owning land at the big giveaway in Oklahoma ca. 1893. When they get to the new land, they find jobs and begin saving money. The man becomes a local barehands boxer, and rides in glory until he is beaten, then his employers steal all the couple's money and they must fight off starvation in the winter, and try to keep their dream of owning land alive. Meanwhile, the woman's parents find out where she has gone and have come to America to find her and take her back.",60000000,137783840,Far and Away,en +10406,Encino Man,1992-05-22,88.0,,,tt0104187,When the stone age meets the rock age.,"High school misfits Stoney and Dave discover a long-frozen primeval man from the past in their back yard. But the thawed-out Link, as the boys have named him, quickly becomes a wild card in the teens' already zany Southern California lives. After a shave and some new clothes, Link's presence at school makes the daily drudgery a lot more interesting.",0,40693477,Encino Man,en +41764,The Best Intentions,1992-05-24,182.0,,,tt0104350,,"The story of Ingmar Bergman's parents. In 1909, poor theology student Henrik Bergman falls in love with Anna Åkerbloom, the daughter of a rich family in Uppsala. After their wedding Henrik becomes a priest in the north of Sweden. After a few years Anna can't stand living in the rural county with the uncouth people. She returns to Uppsala, Henrik stays in the north.",0,0,Den goda viljan,sv +131351,Afterburn,1992-05-30,103.0,,,tt0103626,He Risked His Life Flying An F-16 - Now She Risks It All To Fight For His Name.,"Based on a true story, one woman takes on the U.S. military and General Dynamics; maker of the F-16, thought to be the very best tactical fighter in the world. Air Force Captain Theodore T. Harduvel was one of the best F-16 pilots the U.S. had to offer. After much digging, Janet Harduvel discovers a joint military and General Dynamic cover-up. She proves to be unwavering in her search for the truth to clear his name.",0,0,Afterburn,en +64044,Musketeers 20 Years Later,1992-06-06,300.0,,,tt0125418,,"The new adventures of four musketeer friends... Based on Alexandre Dumas père novel ""20 Years Later"".",0,0,Mushketyory 20 Let Spustya,ru +63538,Naval Cadets III,1992-06-06,107.0,,120447,tt0135427,,In the third movie the Naval Cadets are still servicing the homeland - this time during a Seven Years War.,0,0,Gardemariny III,en +10407,Housesitter,1992-06-12,102.0,,,tt0104452,She's turning his house into a home...hers!,"After building his dream house, architect Newton Davis proposes marriage to his girlfriend, only to be summarily rejected. He seeks solace in a one-night stand with a waitress, never imagining that a woman he slept with once would end up posing as his wife. Gwen's ruse is so effective that by the time Newton learns of his ""marriage,"" the entire town feels like they know him.",0,0,Housesitter,en +11134,Police Story 3: Supercop,1992-07-04,95.0,,269098,tt0104558,"There's never a cop around when you need one, but when this cop's around, all you need is one.",A Hong Kong detective teams up with his female Red Chinese counterpart to stop a Chinese drug czar.,900000,20483423,警察故事 III:超級警察,cn +2613,Prelude to a Kiss,1992-07-10,105.0,,,tt0105165,,"A couple fall in love despite the girl's pessimistic outlook. As they struggle to come to terms with their relationship, something supernatural happens that tests it.",0,22697691,Prelude to a Kiss,en +191322,Dark Horse,1992-07-17,98.0,,,tt0104054,,14 year old Allison has to go to a horse farm. With all the horses and the help of the owner Susan Hadley she finds new sense in her life.,0,0,Dark Horse,en +71825,Mistress,1992-07-24,110.0,,,tt0104892,The Director Had A Vision. The Producers All Had Girlfriends.,"A comedy about a screenwriter (Wuhl) whose old movie script is read by a producer (Landau) and the search for financial backers begins. But it seems that each money source (Aiello, DeNiro, Wallach) has his own mistress that he wants put into the film. Gradually, the screenwriter is forced to make changes to his script to accommodate these backers until he finally sees no semblance of his original ideas in the writing.",0,1102469,Mistress,en +180576,Rich in Love,1992-10-01,105.0,,,tt0105256,,"The legendary Albert Finney heads an all-star cast (Jill Clayburgh, Kyle MacLachlan and Ethan Hawke) in this heartwarming drama of a retired man whose family blossoms after his wife leaves them.",0,0,Rich in Love,en +16314,3 Ninjas,1992-08-07,84.0,,71458,tt0103596,Crosses Teenage Mutant Ninja Turtles and Home Alone!,"Each year, three brothers Samuel, Jeffrey and Michael Douglas visits their Japanese grandfather, Mori Shintaro whom the boys affectionately refer to as Grandpa, for the summer. Mori is a highly skilled in the fields of Martial arts and Ninjutsu, and for years he has trained the boys in his techniques. After an organized crime ring proves to be too much for the FBI, it's time for the 3 brother NINJAS! To use their martial arts skills, they team up to battle the crime ring and outwit some very persistent kidnappers!",0,0,3 Ninjas,en +5237,Dust Devil,1992-08-08,103.0,,,tt0104155,He's not a serial killer. He's much worse.,A woman on the run from her abusive husband encounters a mysterious hitch-hiker.,8000000,0,Dust Devil,en +10409,Strictly Ballroom,1992-08-20,94.0,,,tt0105488,A life lived in fear... ...is a life half lived,"Brave new steps put Scott's career in jeopardy. With a new partner and determination, can he still succeed?",3000000,33946224,Strictly Ballroom,en +12525,Critters 4,1992-08-20,100.0,,10893,tt0101628,In Space... They love to hear you scream,"Just before bounty hunter Charile triggers his gun to destroy the last two Critter-eggs, he gets a message that it would be illegal to extinguish the race from the galaxy. He's sent a transporter where he puts the eggs - unfortunately the transporter takes him with it and then gets lost in space.",0,0,Critters 4,en +280495,Deceit,1992-08-21,92.0,,,tt0097176,,"Two outer-space aliens visit Earth with the intention of blowing it up, but they meet a hot blonde and decide to postpone the planet's destruction in order to try to score with her.",0,0,Deceit,en +75145,Citizen Cohn,1992-08-22,107.0,,,tt0103973,,"As lawyer and power broker Roy Cohn lies dying of AIDS in a private hospital room, ghosts from his past visit him as he reflects on his life and loves.",0,0,Citizen Cohn,en +341490,As in Heaven,1992-08-29,122.0,,,tt0105504,,"Set on a remote farm on the west coast of Iceland in late summer 1936. Hrefna, encouraged by her grandmother’s stories, begins to mix past and future in her imagination, travelling back to the 14th century.",0,0,Svo á jörðu sem á himni,is +83761,Life and Nothing More...,1992-09-01,95.0,,324149,tt0105888,,"After the earthquake of Guilan, the film director and his son, Puya, travel to the devastated area to search for the actors of the movie the director made there a few years ago, Khane-ye Doust Kodjast? (1987). In their search, they found how people who had lost everything in the earthquake still have hope and try to live life to the fullest.",0,0,زندگی و دیگر هیچ,fa +170603,Round Trip to Heaven,1992-09-02,97.0,,,tt0105289,Heaven could never be this HOT!,"Since Larry works at a garage, he gets to use one of the Rolls Royces. There is only one problem, there is a briefcase full of money in the trunk. So when Larry and his cousin Steve decide to go to Palm Springs to look for Ms. Right at a popular beauty pageant, the owner of the briefcase will do the impossible to get it back.",0,0,Round Trip to Heaven,en +9504,Glengarry Glen Ross,1992-09-15,100.0,,,tt0104348,Lie. Cheat. Steal. All in a day’s work.,"Glengarry Glen Ross, follows the lives of four unethical Chicago real estate agents who are prepared to go to any lengths (legal or illegal) to unload undesirable real estate on unwilling prospective buyers.",12500000,10725228,Glengarry Glen Ross,en +55694,Miracle Beach,1992-09-15,88.0,http://www.mgm.com/view/movie/1258/Miracle-Beach/,,tt0104879,Miracle Beach It will really raise your spirits.,"A romantic comedy set in the Southern California beach scene. Down on his luck, Scotty McKay becomes the master of a very lonely genie, who brings him wealth, power and true love. Miracles can happen!",0,0,Miracle Beach,en +11139,Leolo,1992-09-16,107.0,,,tt0104782,,The story of an imaginative boy who pretends he is the child of a sperm-laden Sicilian tomato upon which his mother accidentally fell.,0,0,Léolo,fr +151062,Mad at the Moon,1992-09-16,98.0,,,tt0104787,"When the moon rises, the howling begins.",A young woman on the frontier marries a meek farmer who has an annoying habit of going through a rather drastic change every full moon.,0,0,Mad at the Moon,en +9609,Of Mice and Men,1992-09-16,110.0,,,tt0105046,"We have a dream. Someday, we'll have a little house and a couple of acres. A place to call home.","Two drifters, one a gentle but slow giant, try to make money working the fields during the Depression so they can fulfill their dreams.",0,5471088,Of Mice and Men,en +430985,The Diamond Fleece,1992-09-17,,,,tt0104101,,,0,0,The Diamond Fleece,en +13823,The Power of One,1992-09-17,127.0,,,tt0105159,An exhilarating epic of a triumph of the heart.,"PK, an English orphan terrorized for his family's political beliefs in Africa, turns to his only friend, a kindly world-wise prisoner, Geel Piet. Geel teaches him how to box with the motto “fight with your fists and lead with your heart”. As he grows to manhood, PK uses these words to take on the system and the injustices he sees around him - and finds that one person really can make a difference.",0,0,The Power of One,en +23196,South Central,1992-09-18,99.0,,,tt0105450,A child's chance to espace anger and injustice begins with one man. His father.,A man is put to prison for 10 years. Coming out of prison he wants to live a normal life and stop with crime but his son has yet followed the criminal path of his father.,4000000,0,South Central,en +28384,Husbands and Wives,1992-09-18,108.0,,,tt0104466,,"When Jack and Sally announce that they're splitting up, this comes as a shock to their best friends Gabe and Judy. Maybe mostly because they also are drifting apart and are now being made aware of it. So while Jack and Sally try to go on and meet new people, the marriage of Gabe and Judy gets more and more strained, and they begin to find themselves being attracted to other people.",0,0,Husbands and Wives,en +115565,Equinox,1992-09-18,110.0,,,tt0104201,The shocking story of identical twins... One too good to die. The other too evil to live.,"Henry Petosa and Freddy Ace are twins who were separated being babies, and they do not know each other. Henry was adopted by a honest man, while Freddy becomes a gangster. Henry is very shy and has a lot of mental troubles. The film melts the two stories by a young writer who discovers that they were sons of an european noble and they own a large inheritance.",0,0,Equinox,en +86131,Child of Rage,1992-09-24,94.0,,,tt0103955,,"A priest and his wife adopt a brother and sister, but the girl has terrible outbursts of rage.",0,0,Child of Rage,en +274990,Sofie,1992-09-25,152.0,,,tt0105436,,"From 1886 to 1907 in the life of Sofie, a Jew in Copenhagen who is nearly 29, with no marital prospects, living with her loving parents",0,0,Sofie,da +27381,Innocent Blood,1992-09-25,112.0,,,tt0104511,The movie that goes straight for the jugular.,A beautiful vampire turns a crime lord into a creature of the night.,0,0,Innocent Blood,en +22582,Tom and Jerry: The Movie,1992-10-01,84.0,http://tomandjerrythemovie.warnerbros.com,458017,tt0105616,,The popular cartoon cat and mouse are thrown into a feature film. The story has the twosome trying to help an orphan girl who is being berated and exploited by a greedy guardian.,0,0,Tom and Jerry: The Movie,en +18722,Mr. Baseball,1992-10-01,108.0,,,tt0104926,He's the biggest thing to hit Japan since Godzilla!,"Jack Elliot, a one-time MVP for the New York Yankees is now on the down side of his baseball career. With a falling batting average, does he have one good year left and can the manager of the Chunichi Dragons, a Japanese Central baseball league find it in him?",0,20000000,Mr. Baseball,en +23637,"Ciao, Professore!",1992-10-01,100.0,,,tt0107225,"Ciao, Professore!","A bureaucratic snafu sends Marco Tullio Sperelli, a portly, middle-aged northern Italian, to teach third grade in a poor town outside Naples",0,0,Io speriamo che me la cavo,en +19725,Carry On Columbus,1992-10-02,91.0,,37261,tt0103927,,Christopher Columbus believes he can find an alternative route to the far East and persuades the King and Queen of Spain to finance his expedition...,0,0,Carry On Columbus,en +180162,Breaking the Rules,1992-10-09,100.0,,,tt0103877,,Two friends take their dying buddy on one last road trip.,0,0,Breaking the Rules,en +55761,Vääpeli Körmy ja etelän hetelmät,1992-10-09,0.0,,148320,tt0105777,,,0,0,Vääpeli Körmy ja etelän hetelmät,fi +36288,Night and the City,1992-10-11,105.0,,,tt0105001,,"Looking to get rich quick, an unsuccessful lawyer uses dishonest means to try to become a boxing promoter.",0,0,Night and the City,en +9529,Candyman,1992-10-16,99.0,,98580,tt0103919,You don't have to believe... just beware.,"The Candyman, a murderous soul with a hook for a hand, is accidentally summoned to reality by a skeptic grad student researching the monster's myth.",6000000,25792310,Candyman,en +364150,The Godfather Trilogy: 1972-1990,1992-10-17,583.0,,,tt0150742,,The multigenerational saga of the rise and fall of the Corleone crime family.,0,0,The Godfather Trilogy: 1972-1990,en +52936,In the Soup,1992-10-23,93.0,,,tt0104503,A comedy about getting in over your head.,An aspiring young filmmaker gets involved with an eccentric gangster for the financing of his first film.,0,256249,In the Soup,en +70489,Zebrahead,1992-10-23,102.0,,,tt0105885,,Interracial love story set in Detroit.,0,0,Zebrahead,en +55730,My New Gun,1992-10-26,99.0,,,tt0104954,A comedy about the American dream.,"Debbie and Gerald's lives drastically change after they get a gun. Their mysterious neighbor, Skippy, becomes an important and transforming figure in their lives.",0,0,My New Gun,en +69035,Ruby Cairo,1992-10-29,91.0,,,tt0107999,Adults play the most dangerous games.,Baseball cards and a food-aid worker help a woman follow her shady husband's money trail around the world.,0,0,Ruby Cairo,en +293089,The Prodigal Son,1992-10-30,97.0,,,tt0105651,,Film by Veikko Aaltonen,0,0,Tuhlaajapoika,en +1877,Doctor Mordrid,1992-11-02,72.0,,,tt0104115,,"An unspeakable evil has come into our dimension and wants to rule over Earth, and only a mysterious sorceror known as Doctor Mordrid can stop him.",2000000,0,Doctor Mordrid,en +83501,Comedy of the Strict Regime,1992-11-07,78.0,,,tt0106591,,"The action is set in 1970 as the Soviet Union (and the entire progressive world) are preparing to celebrate Lenin's centenary. Not to be outdone, the camp commander decides to have the prisoners put on a play about Lenin's life. However, the ensuing preparations turn everything upside down and seem to offer a God-given chance to plot an escape.",0,0,Комедия строгого режима,ru +772,Home Alone 2: Lost in New York,1992-11-19,120.0,,9888,tt0104431,He's up past his bedtime in the city that never sleeps.,"Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas eve.",18000000,358991681,Home Alone 2: Lost in New York,en +18575,Pigs,1992-11-20,104.0,http://culture.pl/en/work/pigs-wladyslaw-pasikowski,478947,tt0105185,,"In good old days Franz Maurer and his partners from secret police used to live like kings. Now, they all must adapt to new post-communist environment where they are scorned and losing all the privileges. Some, like Franz, are like ordinary police fighting against drug dealers. But Franz would soon find that some of his friends are on the other side.",0,0,Psy,pl +56448,Stalin,1992-11-21,166.0,,,tt0105462,,"The life and career of the brutal Soviet dictator, Josef Stalin.",0,0,Stalin,en +213755,Extralarge: Black Magic,1992-11-22,99.0,,295852,tt0101835,,"Elizabeth is in a car with her boyfriend when suddenly she feels a pain in the stomach so strong she seizes a knife and stabs herself to death. Her boyfriend is charged with her murder and Dumas is present at his trial and he is struck by the boy's story. In the meantime Extralarge gets the task to find Kathy, the missing step-daughter of Laureen. Her father is dying of an unheard of disease and he desires to see her. The two girls were friends and a shade of Black Magic overhangs on them and their families.",0,0,Extralarge: Black Magic,de +16486,The Spirit of Christmas,1992-12-01,4.0,,,tt0144618,,"Four children, all but one of whom go unnamed, build a snowman which comes to life and threatens their town.",0,0,The Spirit of Christmas,en +56947,La crise,1992-12-02,0.0,,,tt0104025,,,0,0,La crise,it +11012,Damage,1992-12-02,111.0,,,tt0104237,Desire... Deceit... Destiny...,The life of a respected British politician at the height of his career crumbles when he becomes obsessed with his son's lover.,0,7532911,Damage,en +50327,To Grandmother's House We Go,1992-12-06,96.0,,,tt0105606,,"When the twins feel like their mom is tired of them, they take off on an exciting adventure to grandmother's house and encounter a pair of villains along the way.",0,0,To Grandmother's House We Go,en +10326,Forever Young,1992-12-16,102.0,,,tt0104291,"Time waits for no man, but true love waits forever.",A 1939 test pilot asks his best friend to use him as a guinea pig for a cryogenics experiment. Daniel McCormick wants to be frozen for a year so that he doesn't have to watch his love lying in a coma. The next thing Daniel knows is that he's been awoken in 1992.,0,128000000,Forever Young,en +34334,That Night,1992-12-17,89.0,,,tt0105572,In everyone's life there's a friendship you never forget.,A coming-of-age story about an eleven-year-old girl who idolizes her troubled sixteen-year-old neighbor.,0,0,That Night,en +42438,Ricky e Barabba,1992-12-19,0.0,,,tt0107958,,,0,0,Ricky e Barabba,it +65958,The Supper,1992-12-23,90.0,,,tt0105448,,,0,0,Le souper,fr +9475,Scent of a Woman,1992-12-23,157.0,,,tt0105323,Col. Frank Slade has a very special plan for the weekend!,"Charlie Simms (Chris O'Donnell) is a student at a private preparatory school who comes from a poor family. To earn the money for his flight home to Gresham, Oregon for Christmas, Charlie takes a job over Thanksgiving looking after retired U.S. Army officer Lieutenant Colonel Frank Slade (Al Pacino), a cantankerous middle-aged man who lives with his niece and her family.",31000000,134095253,Scent of a Woman,en +17189,Battle Angel,1993-01-01,54.0,,,tt0107061,Hunter Warrior,"A Hunter Warrior and cyborg healer named Ido formerly lived in the floating land of Zalem, the paradise that hovers above the refuse heap of Scrap Iron City in which he now resides with his former lover, Chiren. In his travels as a bounty hunter — killing spine thieves in a world in which human nerve tissue has become the most precious commodity — Ido one day discovers and repairs the remnants of a cyborg whom he names Gally. Though possessing the body of a young woman, Gally now embodies Ido's most sophisticated and lethal cybernetic skills. The preternaturally strong, amnesiac Gally begins to forge a life for herself in a world where every day is a struggle for survival. Based on the first two volumes of the manga.",0,0,Gunnm,ja +21057,Ocean Waves,1993-01-01,76.0,,,tt0108432,,"At Kichijōji Station, Tokyo, Taku Morisaki glimpses a familiar woman on the platform opposite boarding a train. Later, her photo falls from a shelf as he exits his apartment before flying to Kōchi Prefecture. Picking it up, he looks at it briefly before leaving. As the aeroplane takes off he narrates the events that brought her into his life...",0,0,Umi ga Kikoeru,ja +60316,Food,1993-01-01,14.0,,,tt0104285,,"BREAKFAST: After eating breakfast, a man is transformed into an elaborate dumb-waiter-style breakfast dispenser - and the same fate befalls the man who obtains breakfast from him. LUNCH: After failing to catch the waiter's eye, two would-be diners end up eating everything within reach. DINNER: Portraits of various meals made up of human organs.",0,0,Jídlo,cs +131903,Face The Music,1993-01-01,90.0,,,tt0106852,Ex-lovers. Ex-partners. Ex-successes. The only thing together was their music.,Divorced couple Charlie and Lisa Hunter once a song writing team decide to spend a weekend in the French countryside to inspire them to write one last song together. But there is one person who isn't too crazy about the idea... Charlie's fiance!,0,0,Face The Music,en +192573,Zapatlela,1993-01-01,150.0,,,tt0233979,,"Inspector Mahesh kills a gangster but his spirit enters into a near by doll. Later, a puppetry master receives this doll as a gift but this doll will turn his good life into hell.",0,0,Zapatlela,mr +49688,Johnny 100 Pesos,1993-01-01,90.0,,,tt0107274,,"Based on real events, 17-year-old Johnny García becomes involved with four older thugs who are planning to rob a money-laundering business masquerading as a video store. As they try to escape, a swarm of exploitative media attention awaits.",0,0,Johnny cien pesos,es +64965,"Per amore, solo per amore",1993-01-01,0.0,,,tt0107803,,,0,0,"Per amore, solo per amore",it +145925,Mille bolle blu,1993-01-01,0.0,,,tt0107575,,,0,0,Mille bolle blu,it +214753,The Airzone Solution,1993-01-01,65.0,,,tt0106234,,"The Airzone Solution takes place in a future Britain where pollution has reached a point where the populace must often wear filtration masks when they venture outside. AirZone, a powerful corporation, signs a lucrative deal with the government to deal with the problem. The public is told that AirZone plans to build giant filtration plants to clean the atmosphere, but environmentalists are skeptical, especially when people begin dying and disappearing around AirZone facilities.",0,0,The Airzone Solution,en +33489,All That... for This?!,1993-01-01,116.0,,,tt0108370,,The plot is about a trial against three men who tried to earn loads of money by illegal methods to get to Canada and about the lawyers and the judge who get on with the trial and who are being unfaithful to their couples.,0,0,Tout ça... pour ça !,fr +288193,Warren Oates: Across the Border,1993-01-01,54.0,,,tt0108518,,"A retrospective of the work of the late actor Warren Oates, with clips from his films and interviews with cast and crew members who worked with him.",0,0,Warren Oates: Across the Border,en +25684,American Ninja 5,1993-01-01,102.0,,91945,tt0106257,The Magic Power of the Ninja Is About to Reveal Itself...,"When a scientists daughter is kidnapped, American Ninja, attempts to find her, but this time he teams up with a youngster he has trained in the ways of the ninja.",0,0,American Ninja 5,en +103201,Extreme Justice,1993-01-01,96.0,,,tt0106850,"They're an elite task force. They target high-profile criminals, learn how they work...and shut them down.","Jeff Powers is the newest member of a very elite and very secret LAPD division. Their mission is to target important criminals and to get them to stop. Police brutality is not a known term for the division and they will stop at nothing to get the job done, even if it means murder.",0,0,Extreme Justice,en +1659,Texas - Doc Snyder hält die Welt in Atem,1993-01-01,89.0,,,tt0108317,,No overview found.,0,0,Texas - Doc Snyder hält die Welt in Atem,de +32049,Best of the Best 2,1993-01-01,101.0,,153948,tt0106393,Get ready for the ultimate challenge!,"In an underground fight club, blackbelt Travis Brickley is killed after losing to the evil martial arts master Brakus. Travis' death is witnessed by Walter Grady, the son of his best friend Alex Grady. Alex and his partner, Tommy Lee, vow to avenge their friend's death by defeating Brakus and shutting down the fight club.",0,6500000,Best of the Best 2,en +19754,The Amy Fisher Story,1993-01-03,96.0,,,tt0106267,,The true story of the Long Island teen who shoots and wounds the wife of a man she called her lover.,0,0,The Amy Fisher Story,en +54845,Trouble Bound,1993-01-09,90.0,,,tt0105645,A woman like Kit comes around once in a lifetime. That's enough.,"Upon getting out of prison, a man who took the rap for some thief buddies gets together with them again, and tells them he's not interested in doing things with them any more. They stick a dead body in his trunk, unbeknownst to him, and he roars off to find his future. Unfortunately, they forgot to get the key they need off the body, so they're chasing him. Meanwhile, a mafia kingpin's daughter is trying to kill the hitman that killed her father, but her grandmother is trying to make peace with the family that hired the hitman, so she and her thugs are trying to stop the daughter. The guy and the daughter get together and experience mayhem on the run from two directions.",0,0,Trouble Bound,en +108,Three Colors: Blue,1993-01-10,98.0,,131,tt0108394,,A woman struggles to find a way to live her life after the death of her husband and child.,0,0,Trois couleurs Bleu,fr +7305,Alive,1993-01-15,120.0,,,tt0106246,They survived the impossible...by doing the unthinkable.,"The amazing, true story of a Uruguayan rugby team's plane that crashed in the middle of the Andes mountains, and their immense will to survive and pull through alive, forced to do anything and everything they could to stay alive on meager rations and through the freezing cold.",32000000,36733909,Alive,en +128644,Marked for Murder,1993-01-17,90.0,,,tt0107519,,,0,0,Marked for Murder,en +11101,Stalingrad,1993-01-21,134.0,,,tt0108211,,"""Stalingrad"" follows the progress of a German Platoon through the brutal fighting of the Battle of Stalingrad. After having half their number wiped out and after being placed under the command of a sadistic Captain, the Lieutenant of the platoon leads his men to desert. The men of the platoon attempt to escape from the city which is now surrounded by the Soviet Army.",0,0,Stalingrad,de +60505,Blind Side,1993-01-30,98.0,http://www.imdb.com/title/tt0106426/,,tt0106426,They had something he wanted... he had something they feared,"A couple visits Mexico to scout a new location for their furniture manufacturing business and hit a cop with their car on the way back stateside. Realizing that if they report it they could land in a Mexican jail (guilty until proven innocent) they clean up the car and return home. A few days later an insistent man shows up wanting a job and insinuating that he saw something in Mexico that he would not want to report, and the couple must make a decision about how far they will allow themselves to be blackmailed. Written by Ed Sutton",0,0,Blind Side,en +83614,You Are My Only Love,1993-02-01,101.0,,,tt0108421,,A love story of two people which turns out into triangle... So the steady family walls do not seem so steady anymore...,0,0,Ты у меня одна,ru +66447,Tango,1993-02-03,88.0,,,tt0108290,,,0,0,Tango,fr +1049,Sommersby,1993-02-05,109.0,,,tt0108185,She knew his face. His touch. His voice. She knew everything about him... But the truth.,"Set in the south of the United States just after the Civil War, Laurel Sommersby is just managing to work the farm without her husband Jack, believed killed in the Civil War. By all accounts, Jack Sommersby was not a pleasant man, thus when he returns, Laurel has mixed emotions. It appears that Jack has changed a great deal, leading some people to believe that this is not actually Jack but an imposter. Laurel herself is unsure, but willing to take the man into her home, and perhaps later into her heart...",0,140081992,Sommersby,en +81551,King Uncle,1993-02-05,171.0,,,tt0107321,An emotional story of stone hearted big man,"Ashok Bansal has a traumatic childhood which teaches him that money matters most to people, even more than their kids. Ashok starts hating poor people & starts working hard to get out of poverty, at the expense of his own family. However, Ashok’s life changes forever when Munna enters his life.",0,0,King Uncle,en +15759,Skylark,1993-02-07,95.0,,461937,tt0108159,,"Jacob's farm is in trouble from a severe drought. Jacob and Sarah begin to wonder if Sarah can stay, and what will happen to Jacob if she and the children have to leave the farm.",0,0,Skylark,en +169656,Gorilla Bathes at Noon,1993-02-11,83.0,,,tt0107037,,A Red Army major caught between East and West Berlin finds his wife gone and somebody else moved into his apartment.,0,0,Gorila se kupa u podne,sr +378435,Whistle If You Come Back,1993-02-12,99.0,,,tt0106749,,"A dwarf and a travesty, both are excluded from the society and doomed to exist at night. Their lives overlap in a strange encounter and this becomes the start of their friendship.",0,0,Dönersen Islık Çal,tr +17168,The Temp,1993-02-12,99.0,,,tt0108311,Don't get mad. Get promoted.,A series of mysterious accidents at a food company lead a manager to suspect his impressive new temporary secretary.,15000000,0,The Temp,en +39324,Dragon Ball Z: The History of Trunks,1993-02-24,48.0,,425189,tt0142247,,It has been thirteen years since the Androids began their killing rampage and Son Gohan is the only person fighting back. He takes Bulma's son Trunks as a student and even gives his own life to save Trunks's. Now Trunks must figure out a way to change this apocalyptic future,0,0,Doragon Bōru Zetto: Zetsubō e no Hankō!! Nokosareta Chō-Senshi • Gohan to Torankusu,ja +10433,Mad Dog and Glory,1993-03-05,96.0,,,tt0107473,A cop who'd rather be an artist. A mobster who'd rather be a comic. And a woman who'd rather be anywhere but between them.,"Wayne Dobie is a shy cop whose low-key demeanor has earned him the affectionate nickname ""Mad Dog."" After Mad Dog saves the life of Frank Milo, a crime boss and aspiring stand-up comedian, he's offered the company of an attractive young waitress named Glory for a week. At first both are uneasy about the arrangement, but they eventually fall in love. However, the situation becomes complicated when Milo demands Glory back.",0,11081586,Mad Dog and Glory,en +47231,Little Blond Death,1993-03-11,95.0,,,tt0107331,,The poet Valentijn Boecke meets his former teacher Mieke. They have a short relation. After a while Mieke appears to be pregnant. Valentijn is through with Mieke and leaves her...,0,0,De kleine blonde dood,nl +15613,Fire in the Sky,1993-03-12,109.0,,,tt0106912,"Alien abduction. November 5, 1975. White Mountains, Northeastern Arizona. Based on the true story.","A group of men who were clearing bush for the government arrive back in town, claiming that their friend was abducted by aliens. Nobody believes them, and despite a lack of motive and no evidence of foul play, their friends' disappearance is treated as murder.",19885552,19724334,Fire in the Sky,en +91548,Ring of Fire II: Blood and Steel,1993-03-17,94.0,,122938,tt0107962,,Johnny Woo and Julie play an enduring couple who survive all sorts of interference from rival kick-box gangs in their effort to put a little romance in their lives.,0,0,Ring of Fire II: Blood and Steel,en +71140,Hear No Evil,1993-03-26,97.0,,,tt0107090,What you can't hear could kill you.,"Jillian Shanahan, a deaf woman, becomes the target of a ruthless and corrupt cop. The cop is looking for a stolen coin, which he plans to keep for himself. A journalist briefly acquires the coin and hides it in Jillian's apartment, then his car explodes, now the cop is after her.",0,0,Hear No Evil,en +18731,Last Hero in China,1993-04-01,111.0,,,tt0108593,,"Jet Li stars in this comic spectacle as a Chinese ""Robin Hood"" who stumbles upon a kidnapping scheme after unwittingly opening a martial arts school next to a brothel!",0,0,黃飛鴻之鐵雞鬥蜈蚣,cn +60199,Hotel Room,1993-04-01,90.0,,,tt0106029,,"The lives of several people spanning from 1936 to 1993 are chronicled during their overnight stay at a New York City hotel room. The hotel room undergoes minor changes through the century, but the employees of the hotel remain unchanged, never ageing.",0,0,Hotel Room,en +34723,The Adventures of Huck Finn,1993-04-02,108.0,,,tt0106223,For anyone who has ever dreamed of running away from it all,"Climb aboard for an extraordinary version of Mark Twain's sweeping adventure when Walt Disney presents The Adventures of Huck Finn, starring Elijah Wood (The Lord of the Rings). Directed by Stephen Sommers (The Mummy, The Mummy Returns), it's the unforgettable saga of a mischievous youngster and a runaway slave",6500000,0,The Adventures of Huck Finn,en +38749,Jack the Bear,1993-04-02,99.0,,,tt0107247,,"Story of the relationships between two sons and their father, who moves the family to California and becomes a tv horror show host after the death of his wife.",0,0,Jack the Bear,en +30554,When A Stranger Calls Back,1993-04-04,94.0,,276838,tt0108556,...Fear is the Message!,"Julia is babysitting two young kids while a doctor and his wife are out. During the evening, a stranger knocks on the door asking Julia if she can call the auto club so he can get a tow. The phone line is dead though. This is all part of the act as he has made his way inside and abducted the two children.",0,0,When A Stranger Calls Back,en +334317,Désiré,1993-04-05,,,,tt0242424,,,0,0,Désiré,fr +70282,The Visit,2000-01-01,107.0,,,tt0199129,,"A young man dying in prison brings his family together for a fateful visit, and proceeds to put his life back together.",0,0,The Visit,en +4478,Indecent Proposal,1993-04-07,117.0,,,tt0107211,A husband. A wife. A millionaire. A proposal.,"Robert Redford stars as billionaire John Gage, who offers a down-on-his-luck yuppie husband (Woody Harrelson) $1 million for the opportunity to spend the night with the man's wife (Demi Moore).",38000000,266614059,Indecent Proposal,en +237672,Devasuram,1993-04-14,160.0,,415699,tt0291855,,"Neelakantan, heir to his father's fortunes, is an apparent menace to society. He once belittles a dancer but later they fall in love. Shekharan, an arch enemy, kidnaps his lover due to an old enmity.",0,0,ദേവാസുരം,ml +22213,Boiling Point,1993-04-16,92.0,,,tt0106455,He's a cop who reached the Boiling Point,"Red is an aging scam-artist who's just been released from prison together with Ronnie, a young and not-so-bright hoodlum who is easily manipulated. Their new business is to organize fake-money sales and then kill the buyer to take his money; but when Ronnie kills an undercover secret service agent, his partner Jimmy Mercer vows revenge and is given one week to catch the killers before being transferred. Written by Giancarlo Cairella",0,0,Boiling Point,en +13889,Madadayo,1993-04-17,134.0,,,tt0107474,,"This film tells the story of professor Uehida Hyakken-sama (1889-1971), in Gotemba, around the forties. He was a university professor until an air raid, when he left to become a writer and has to live in a hut. His mood has hardly changed, not by the change nor by time.",0,0,まあだだよ,ja +55500,The Land of Happiness,1993-04-30,0.0,,,tt0107751,,,400000,0,Onnen maa,fi +24126,Warlock: The Armageddon,1993-05-01,98.0,,87536,tt0108517,,"Every six hundred years, a great evil has the opportunity to escape and unleash Armageddon. A group of five stones has the power to either free the evil, or banish it for another six hundred years. An order of Druids battles with a Warlock determined to unleash his father upon the world.",0,0,Warlock: The Armageddon,en +70133,Sharpe's Rifles,1993-05-05,102.0,http://www.sharpefilm.com/rifles/,69788,tt0108108,,"During the Peninsular War in Spain against the French, Sergeant Richard Sharpe saves the life of Arthur Wellesley, the future Duke of Wellington and is promoted to Lieutenant. In order to pay the troops Wellesley needs a money draft from the banker Rothschild, but fears he has been captured by the French and sends Sharpe behind enemy lines to find him. Sharpe is given command of a platoon of crack riflemen, led by the surly Irishman Harper and including Hagman and Harris, who resent Sharpe as not being a 'proper officer'.",0,0,Sharpe's Rifles,en +219345,Grief,1993-05-10,87.0,,,tt0107045,,"A campy chronicle of the lusts and loves of the men and women who work on a low-rent TV show called, ""The Love Judge.""",0,0,Grief,en +27224,Lost in Yonkers,1993-05-14,114.0,,,tt0107443,This summer there's no better place to find yourself.,"In the summer of 1942 two young boys are sent to stay with their stern grandmother Kurnitz and their childlike aunt Bella in Yonkers, New York.",0,0,Lost in Yonkers,en +9516,Menace II Society,1993-05-26,97.0,,,tt0107554,This is the truth. This is what's real.,"Menace II Society is a coming of age tale detailing the summer after its protagonist Caine (Tyrin Turner) graduates from high school. This is Caine's story, which details real life in today's tough inner city.",3500000,27900000,Menace II Society,en +12121,Made in America,1993-05-27,111.0,,,tt0107478,"At the sperm-bank she asked for a tall, intelligent, black man. One out of three ain't bad.","A young black woman discovers that her father was a sperm donor, and if that weren't bad enough, he's white.",22000000,0,Made in America,en +9607,Super Mario Bros.,1993-05-28,104.0,,,tt0108255,This Ain't No Game.,"Mario and Luigi, plumbers from Brooklyn, find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They're the only hope to save our universe from invasion by the dino dictator, Koopa.",48000000,20915465,Super Mario Bros.,en +83599,Calendar,1993-06-03,74.0,,,tt0106504,,"A photographer and his wife travel across Armenia photographing churches for a calendar project. Travelling with them is a local man acting as their driver and guide. As the project nears completion, the distance between husband and wife grows.",0,0,Calendar,en +44562,Ed and His Dead Mother,1993-06-04,93.0,,,tt0106792,A family reunion with some minor complications.,"A mourning son makes a deal to reanimate his one year dead mother, however things turn into an unexpected direction.",0,0,Ed and His Dead Mother,en +4916,Guilty as Sin,1993-06-04,107.0,,,tt0107057,"She's finally met her match. He's handsome, wealthy, seductive. A Real Lady Killer!","Before a criminal lawyer knows what has happened, she is forced to defend a wife killer she knows is guilty.",0,22886222,Guilty as Sin,en +42580,Life With Mikey,1993-06-04,91.0,,,tt0107413,He's a talent agent. She's a thief. Looks like they've already got something in common.,"Michael Chapman was once a child TV star. But when he grew up, he couldn't get work. So he and his brother, Ed start their own talent agency that specializes in child acts. They can't seem to find the next big thing and they have to deal with another agency who's not above bribery to get the kids to sign with them. One day Michael meets a girl named Angie and she's a real spitfire. Michael thinks she could be what they are looking for. Problem is that she has a big chip on her shoulder.",0,0,Life With Mikey,en +64046,The Secret of Queen Anna or Musketeers 30 Years Later,1993-06-06,150.0,,,tt0149244,,"The 3rd part of the famous trilogy by Alexandre Dumas about d'Artagnan and his 3 friends Athos, Porthos and Aramis.",0,0,Tayna Korolevy Anny ili Mushketyory 30 Let Spustya,ru +79234,Wandering Sagittarius,1993-06-06,96.0,,,tt0108235,,After discovering a time tunnel to 1960-ies a journalist decides to make some cash out of it.,0,0,Strelets Neprikayannyy,en +19552,The Scent of Green Papaya,1993-06-08,104.0,,,tt0107617,,"A little girl, Mui, went to a house as a new servant. The mother still mourns the death of her daughter, who would have been Mui's age. In her mind she treated Mui as her daughter. 10 years later Mui (now a young woman) was sent to another family, a young pianist and his wife. The musician falls in love with the peasant, he taught her literacy and they eventually married. A movie about a girl's life.",0,0,Mùi đu đủ xanh,vi +15765,What's Love Got to Do with It,1993-06-09,118.0,,,tt0108551,Who needs a heart when a heart can be broken?,A film about the singer Tina Turner and how she rose to stardom with her abusive husband Ike Turner and how she gained the courage to break free.,0,0,What's Love Got to Do with It,en +49762,Where the Rivers Flow North,1993-06-14,106.0,,,tt0108557,,"Sleeper with a top notch cast in the story of a lone wolf logger who fights developers, bankers and the modern world to maintain his way of life.",0,0,Where the Rivers Flow North,en +79871,Crazy Love,1993-06-15,0.0,,,tt0107565,李麗珍蜜桃成熟時,"What was suppose to be summer school in England becomes an adventurous exotic and romantic journey for a beautiful teenage girl. [from the Tai Seng Catalog] A nice story of a free-sprited (or, depending on your viewpoint, prick-teasing) young woman on a short journey of discovery.",0,0,蜜桃成熟時,cn +9593,Last Action Hero,1993-06-18,130.0,,,tt0107362,This isn't the movies anymore.,"Danny is obsessed with a fictional movie character action hero Jack Slater. When a magical ticket transports him into Jack's latest adventure, Danny finds himself in a world where movie magic and reality collide. Now it's up to Danny to save the life of his hero and new friend.",85000000,137298489,Last Action Hero,en +858,Sleepless in Seattle,1993-06-24,105.0,,,tt0108160,"What if someone you never met, someone you never saw, someone you never knew was the only someone for you?",A young boy who tries to set his dad up on a date after the death of his mother. He calls into a radio station to talk about his dad’s loneliness which soon leads the dad into meeting a Journalist Annie who flies to Seattle to write a story about the boy and his dad. Yet Annie ends up with more than just a story in this popular romantic comedy.,21000000,227799884,Sleepless in Seattle,en +79500,Prehysteria!,1993-06-30,84.0,,,tt0107870,The Family Movie You've Been Waiting Ages For!,A young boy and his family embark on a series of adventures when the boy finds some mysterious eggs which hatch to reveal a brood of baby dinosaurs.,0,0,Prehysteria!,es +54814,Hum Hain Rahi Pyar Ke,1993-07-05,163.0,,,tt0107166,,"Rahul Malhotra (Aamir Khan) is the manager of the heavily in debt family business. He is also the guardian of his dead sister's mischievous kids. Rahul hires Vaijayanti (Juhi Chawla) as governess. Vaijayanti is a runaway from home as she does not want to marry the man her orthodox family has chosen for her. Predictably, Rahul and Vaijayanti fall in love. Maya (Navneet Nishan), a rich girl in love with Rahul tries to ruin his family and his business, but all ends happily.",0,0,Hum Hain Rahi Pyar Ke,en +8494,Weekend at Bernie's II,1993-07-09,97.0,,118221,tt0108539,You don't have to stop partying just because you've stopped breathing.,"Everybody's favorite stiff is back! Working fools Larry Wilson and Richard Parker have uncovered a dirty, little secret: Their former boss, Bernie Lomax, embezzled $2 million and placed it in a safe deposit box in the Caribbean. Now, the boys are ready to go after the loot, but they can't do it alone -- they need poor Bernie's help. Can the buddies give their ex-boss new life?",0,0,Weekend at Bernie's II,en +1634,Free Willy,1993-07-16,112.0,,9328,tt0106965,How far would you go for a friend?,"When maladjusted orphan Jesse vandalizes a theme park, he is placed with foster parents and must work at the park to make amends. There he meets Willy, a young Orca whale who has been separated from his family. Sensing kinship, they form a bond and, with the help of kindly whale trainer Rae Lindley, develop a routine of tricks. However, greedy park owner Dial soon catches wind of the duo and makes plans to profit from them.",20000000,153698625,Free Willy,en +215016,Chantilly Lace,1993-07-18,102.0,,,tt0106543,Sometimes the most powerful friendships are held together by only a thread.,A group of middle-aged women get together at a secluded house to learn about themselves,0,0,Chantilly Lace,en +292033,Alexander Graham Bell: The Sound and the Silence,1993-07-18,0.0,,,tt0106241,,"True story of Alexander Graham Bell's invention of the telephone, inspired by his mother.",0,0,Alexander Graham Bell: The Sound and the Silence,en +55505,To Be the Best,1993-08-03,99.0,,,tt0108346,They were forced to be the best... or die,"Eric Kulhane, a member of the U.S. Kickboxing Team, lets his quick temper and obsessive love for beautiful Cheryl make him the perfect target for blackmail. In order to stop ruthless gambler from rigging the World Championship and killing Cheryl, Eric and his father, his American teammates and their most feared Chinese opponents join for an explosive climax which rocks the Las Vegas Strip.",0,0,To Be the Best,fr +183015,American Kickboxer 2,1993-08-04,93.0,,,tt0164336,"Twice The Action, Twice The Danger, Twice The Excitement!","Two rivals, one a cop and the other a martial arts teacher team up to save a little girl from a terrorist and his henchmen.",0,0,American Kickboxer 2,fr +124013,A Crime,1993-08-04,0.0,,,tt0214238,,,0,0,Un Crime,fr +31503,My Boyfriend's Back,1993-08-06,85.0,,,tt0107626,A comedy that proves true love never dies.,"Missy McCloud is the most beautiful girl in school and Johnny Dingle has been in love with her for years. One night, Johnny is killed trying to win her over, and soon he comes back from the dead, and wins Missy's heart.",0,3335984,My Boyfriend's Back,en +65973,Dragon Ball Z Gaiden: The Plot to Destroy the Saiyans,1993-08-06,0.0,,425189,tt1286785,,"Dr. Raichii is the only Tsufurujin (the race eradicated by the Saiyajin many years ago) thought to have survived. He now is going to take revenge on the only surviving Saiyajin still alive, Goku and Vegeta. He uses machines that emit destron, a gas that will destroy all life on Earth. Now the the Z warriors only have 72 hours to find and destroy Dr. Raichii. by ANN",0,0,Dragon Ball: Sūpā Saiyajin Zetsumetsu Keikaku,ja +11236,The Secret Garden,1993-08-13,102.0,,462565,tt0108071,"The timeless tale of a special place where magic, hope and love grow.","A young British girl born and reared in India loses her neglectful parents in an earthquake. She is returned to England to live at her uncle's castle. Her uncle is very distant due to the loss of his wife ten years before. Neglected once again, she begins exploring the estate and discovers a garden that has been locked and neglected. Aided by one of the servants' boys, she begins restoring the garden, and eventually discovers some other secrets of the manor.",0,0,The Secret Garden,en +10440,Manhattan Murder Mystery,1993-08-18,104.0,,,tt0107507,Keaton & Allen reunited for fun flick!,A middle-aged couple suspects foul play when their neighbor's wife suddenly drops dead.,13500000,11285588,Manhattan Murder Mystery,en +288668,Tainted Blood,1993-08-24,0.0,,,tt0108283,,,0,0,Tainted Blood,en +10657,Needful Things,1993-08-27,120.0,,,tt0107665,Buy Now. Pay Later.,"The devil in disguise comes to a quiet, peaceful town and opens a store called Needful Things. The store has an item for everyone in town. All the devil asks for in return is a few dirty pranks. Little do they know, that they've sold their souls, and the pranks escalate to murder.",0,0,Needful Things,en +15797,Only the Strong,1993-08-27,99.0,,,tt0107750,The ultimate martial art.,"Former Green Beret Louis Stevens returns to his hometown of Miami after completing military service in Brazil, only to learn that his old high school has become a haven for gangs and drug dealers. After Stevens uses his capoeira skills to kick several drug dealers off of the school property, Kerrigan, one of Stevens' old teachers, sees the impact that Stevens has on the students. Kerrigan gives him the task of teaching Capoeira to a handful of the worst at-risk students at the school.",6000000,3283371,Only the Strong,en +10909,Kalifornia,1993-09-01,117.0,http://www.mgm.com/#/our-titles/1024/Kalifornia,,tt0107302,Fear never travels alone.,"A journalist duo go on a tour of serial killer murder sites with two companions, unaware that one of them is a serial killer himself.",9000000,2395231,Kalifornia,en +15559,Destiny in Space,1994-01-17,40.0,,,tt0109609,,"Travel alongside the astronauts as they deploy and repair the Hubble Space Telescope, soar above Venus and Mars, and find proof of new planets and the possibility of other life forming around distant stars.",0,0,Destiny in Space,en +107693,Abraham's Valley,1993-09-01,203.0,,,tt0108471,,"Ema is a very attractive but innocent girl, so pretty that cars crash in her presence. Young marries Dr. Carlo Paiva, who she is not attracted to, but is her father's friend. They move to the Valley of Abraham. Carlo loves her, but decides to sleep in a separate room, to avoid waking Ema when he has to return late at night. With time she begins to feel unhappy about her marriage so she finds a lover.",0,0,Vale Abraão,pt +12780,Iron Monkey,1993-09-03,90.0,,,tt0108148,Unmask the legend,"Iron Monkey is a Hong Kong variation of Robin Hood. Corrupt officials of a Chinese village are robbed by a masked bandit known as ""Iron Monkey"", named after a benevolent deity. When all else fails, the Governor forces a traveling physician into finding the bandit. The arrival of an evil Shaolin monk, brings the physician and Iron Monkey together to battle the corrupt government.",0,14681661,少年黃飛鴻之鐵馬骝,cn +68163,The Hidden II,1993-09-06,91.0,,175858,tt0110022,They live for lust. They live for power. They live forever.,"The alien criminal from the first movie is dead, but he left a few eggs which are hatching now. The good alien, who still inhabits Tom Beck's body, has been waiting just in case this happened. Unfortunately, his presence in the body has taken a terrible toll on it, draining it of life energy. Additionally relations with Beck's daughter Juliet (now a cop) have deteriorated. But when the killing starts again, they will need to work together to stop the new generation of aliens.",0,0,The Hidden II,en +52713,"Oh, Woe Is Me",1993-09-08,95.0,,,tt0107175,,Romance about Simon Donnadieu and his decision to leave his ever-loving wife Rachel.,0,0,Hélas pour moi,fr +62463,Raining Stones,1993-09-09,90.0,,,tt0107920,,"This Ken Loach film tells the story of a man devoted to his family and his religion. Proud, though poor, Bob wants his little girl to have a beautiful (and costly) brand-new dress for her First Communion. His stubbornness and determination get him into trouble as he turns to more and more questionable measures, in his desperation to raise the needed money. This tragic flaw leads him to risk all that he loves and values, his beloved family, indeed even his immortal soul and salvation, in blind pursuit of that goal.",0,0,Raining Stones,en +96147,Aankhen,1993-09-09,170.0,,,tt0106204,,A 1993 Bollywood Comedy starring Govinda and Chunky Pandey. This movie kick started a long line of Comedy movies for Govinda.,0,0,Aankhen,en +349394,À la mode,1993-09-10,82.0,,,tt0106878,,"Fausto enters an orphanage and is initially bullied, but then makes friends with a new bunkmate, Raymond. He is apprenticed to Mietek, a tailor in the Jewish quarter, who teaches him the trade. Fausto charms everyone in the quarter, and falls in love with Tonie, the mechanic's daughter. He starts making outrageous suits for publicity and, after dressing Tonie, decides that he wants to be a famous couturier.",0,0,À la mode,en +220500,The Bed You Sleep In,1993-09-10,117.0,,,tt0106372,,Times are hard for Northwestern lumber-mill operators like Ray and his wife Jean. Ray and Jean's lives are thrown into chaos when their daughter writes home from college,0,0,The Bed You Sleep In,en +2047,The Real McCoy,1993-09-10,100.0,,,tt0107927,,"Karen McCoy is released from prison with nothing but the clothes on her back. Before being incarcerated Karen was the bank robber of her time, but now she wishes for nothing more than to settle down and start a new life. Unfortunately between a dirty parole officer, old business partners, and an idiot ex-husband she will have to do the unthinkable in order to save her son.",0,0,The Real McCoy,en +55448,Money for Nothing,1993-09-10,100.0,,,tt0107594,What would you do if you found a million bucks?,"When unemployed dockworker Joey Coyle finds $1.2 million that fell off of an armored car, he decides to do the logical thing: take the money and run. After all, he says, finders keepers. He turns to his ex-girlfriend Monica, who works in an investment firm, for advice, before turning to the mob for help laundering the money. While Joey makes plans to leave the country, however, a detective is following his ever-warmer trail in order to recover the cash.",11000000,1044824,Money for Nothing,en +17796,Freaked,1993-09-11,86.0,,,tt0109838,A thinking man's stupid comedy.,"A vain actor, his best friend, and an activist end up at a mutant freak farm run by a weirdo scientist.",0,0,Freaked,en +12632,Kaspar Hauser,1993-09-11,139.0,,,tt0110246,,No overview found.,0,0,Kaspar Hauser,de +2887,And the Band Played On,1993-09-11,140.0,,,tt0106273,,The story of the discovery of the AIDS epidemic and the political infighting of the scientific community hampering the early fight with it.,0,0,And the Band Played On,en +74199,Big Beat,1993-09-12,110.0,,,tt0108027,,"A period musical comedy set in a quiet Prague quarter at the end of the fifties. Using the western plot device of the ""man from nowhere"" a generation gap story unfolds of changing social climate. The action is driven by the character of a young man named Baby who causes a local rebellion by bringing rock'n'roll to a Communist neighborhood raised on swing.",0,0,Šakalí léta,cs +11655,Cronos,1993-09-12,94.0,,,tt0104029,,"Faced with his own mortality, an ingenious alchemist tried to perfect an invention that would provide him with the key to eternal life. It was called the Cronos device. When he died more than 400 years later, he took the secrets of this remarkable device to the grave with him. Now, an elderly antiques dealer has found the hellish machine hidden in a statue and learns about its incredible powers. The more he uses the device, the younger he becomes...but nothing comes without a price. Life after death is just the beginning as this nerve-shattering thriller unfolds and the fountain of youth turns bloody.",0,0,Cronos,en +96712,The Puppetmaster,1993-09-13,142.0,,,tt0107157,,"In the first half of this century, young Li Tienlu joins a travelling puppet theatre and subsequently makes a career as one of Taiwan's leading puppeteers.",0,0,Xi meng ren sheng,zh +91390,The Innocent,1993-09-16,119.0,,,tt0106185,,"A young engineer is sent to post-WWII Berlin to help the Americans in spying on the Russians. In a time and place where discretion is still a man’s best friend, he falls in love with a mysterious woman who will take him on the dark side of evil.",0,0,The Innocent,en +76264,Bopha!,1993-09-16,120.0,http://www.imdb.com/title/tt0106464/,,tt0106464,,"In this story of a black policeman during South African apartheid, Danny Glover plays the cop, who believes he's trying to help his people, even while serving as a pawn of the racist government. When his son gets involved in the anti-apartheid movement, he finds himself torn between his family (including long-suffering wife Alfre Woodard) and what he believes is his duty.",12000000,212483,Bopha!,en +43757,The Silver Stallion,1993-09-16,93.0,,,tt0108137,The magic of the mountain. The obsession of a man. The beauty of the Silver Brumby.,"Australian adaptation of Elyne Mitchell's ""The silver Brumby"".",0,0,The Silver Stallion,en +104739,From the East,1993-09-16,107.0,,,tt0106642,,"Chantal Akerman retraces a journey from the end of summer to deepest winter, from East Germany, across Poland and the Baltics, to Moscow.",0,0,D'Est,fr +10436,The Age of Innocence,1993-09-17,139.0,,,tt0106226,In a world of tradition. In an age of innocence. They dared to break the rules.,"Tale of 19th century New York high society in which a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.",34000000,32255440,The Age of Innocence,en +14534,Rudy,1993-09-17,114.0,,,tt0108002,"It's not the size of the dog in the fight, It's the size of the fight in the dog.","Rudy grew up in a steel mill town where most people ended up working, but wanted to play football at Notre Dame instead. There were only a couple of problems. His grades were a little low, his athletic skills were poor, and he was only half the size of the other players. But he had the drive and the spirit of 5 people and has set his sights upon joining the team.",12000000,22750363,Rudy,en +27599,Lotta Leaves Home,1993-09-18,79.0,,343733,tt0107444,,"A feisty five-year-old girl Lotta decides to move away from home. And no, she doesn't want to put on the stupid sweater.",0,0,Lotta 2: Lotta flyttar hemifrån,sv +18133,The Program,1993-09-24,112.0,,,tt0107889,From Different Worlds They Come To Prove Themselves In The Gritty World of College Football.,"Several players from different backgrounds try to cope with the pressures of playing football at a major university. Each deals with the pressure differently, some turn to drinking, others to drugs, and some to studying.",0,23042200,The Program,en +9272,The Good Son,1993-09-24,87.0,,,tt0107034,Evil has many faces,"A young boy stays with his aunt and uncle, and befriends his cousin who's the same age. But his cousin begins showing increasing signs of psychotic behavior.",17000000,44456478,The Good Son,en +864,Cool Runnings,1993-09-30,98.0,,,tt0106611,One dream. Four Jamaicans. Twenty below zero.,"When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican Bobsled Team.",14000000,154864401,Cool Runnings,en +11122,India,1993-10-07,90.0,,,tt0107214,,"Heinzi Boesel and Kurt Fellner are two Austrian health inspectors forced to work together, traveling through Austria. Over time a beautiful friendship evolves between the odd couple who couldn't stand each other initially; a friendship that even overcomes the boundaries of great tragedy.",0,0,Indien - der Film,de +2625,Mr. Jones,1993-10-08,114.0,,,tt0107611,Everything That Makes Him Dangerous Makes Her Love Him More,"The story about the relationship between a manic depressive man, Mr Jones, and the female doctor who takes more than a professional interest in his treatment.",0,0,Mr. Jones,en +19371,Mr. Nanny,1993-10-08,84.0,,,tt0107612,"He's big, he's bad, and he's babysitting. He doesn't stand a chance.",A former pro-wrestler is hired to be the bodyguard/nanny for a couple of bratty kids whose inventor father is being stalked by a rival.,0,0,Mr. Nanny,en +47889,Ruby in Paradise,1993-10-08,114.0,,,tt0108000,A woman's search for herself.,"Reeling from her mother's recent death, Ruby Lee Gissing relocates to Florida to start anew. After finding a job at a souvenir store, Ruby becomes friends with the shop's owner, Mildred Chambers, and slowly acclimates to her new surroundings. Before long, she's juggling the affections of Mildred's Lothario son, Ricky, and the good-natured Mike. As she wavers between Ricky and Mike, Ruby also tries to come to terms with her past.",800000,1001437,Ruby in Paradise,en +25403,Dear Diary,1993-10-12,100.0,,,tt0109382,,Writer/director/actor Nanni Moretti offers a three-part film diary which takes a sharply satiric look at Italian life.,0,0,Caro diario,it +31911,Mr. Wonderful,1993-10-15,98.0,,,tt0107613,Sometimes love is a stranger. And sometimes it's someone you've known all your life.,Electrician Gus gets the chance to fulfill a childhood dream by buying an old bowling-alley with some of his friends.,0,0,Mr. Wonderful,en +6,Judgment Night,1993-10-15,110.0,,,tt0107286,Don't move. Don't whisper. Don't even breathe.,"While racing to a boxing match, Frank, Mike, John and Rey get more than they bargained for. A wrong turn lands them directly in the path of Fallon, a vicious, wise-cracking drug lord. After accidentally witnessing Fallon murder a disloyal henchman, the four become his unwilling prey in a savage game of cat & mouse as they are mercilessly stalked through the urban jungle in this taut suspense drama",0,12136938,Judgment Night,en +43989,Sud,1993-10-17,0.0,,,tt0108245,,,0,0,Sud,it +2259,The House of the Spirits,1993-10-19,140.0,,,tt0107151,,"A rancher, his clairvoyant wife and their family face turbulent years in South America.",25000000,0,The House of the Spirits,en +38955,Project S,1993-10-21,104.0,,269098,tt0106544,Only One Force Can Stop This Crime Wave....And She's One Tough Cop!,"As a crime wave sweeps through Hong Kong, the police call Jessica Yang (Yeoh), a rising star in the ranks, to help stop a notorious gang of thieves! What Jessica doesn't realize is that her boyfriend - recently discharged from the force - is the leader of this ruthless crime ring!",0,0,超级计划,cn +193387,Me and the Kid,1993-10-22,94.0,,,tt0081145,What can you give a kid who has everything? A life.,A lonely and emotionally neglected rich kid forms an attachment to one of the men who kidnap him during a botched robbery of his father's safe.,0,0,Me and the Kid,en +18190,Dream Lover,1993-10-24,103.0,,,tt0109665,If you think you know your lover. Think again. Especially if she's your wife.,"Ray is young, charming, successful and the owner of a prosperous architect company. However, he has recently gone trough a very painful divorce. His friends try to cheer him up by showing him the positive sides of being single but for Ray marriage and stability is just too important. But when he meets Lena his gloom is quickly forgotten.",0,0,Dream Lover,en +116554,Stalag Luft,1993-10-27,101.0,,,tt0108210,,"Few wartime prisoners have attempted escape quite as many times as bumbling RAF Officer James Forrester. Though Officer Forrester has twenty-three escape attempts to his name, each successive attempt he makes to break free somehow seems to go worse than the last. But this time there's a difference, because Officer Forrester isn't just plotting his own escape, but the escape of all 327 of his fellow prisoners as well - and all at once. In fact even the Germans want to escape!",0,0,Stalag Luft,en +182499,The Neighbor,1993-11-03,93.0,,,tt0107666,,"A young couple, Mary and John, awaiting a baby is in search for a house when they decide to buy that lovely old villa they found by coincidence. What they both do not know is that Myron, the owner of that villa and their new neigbour, is a dangerous psychopath and that Mary reminds him of his dead mother. Mary begins to wonder about Myron's odd behaviour, but everybody thinks Mary's fears are due to her being pregnant.",0,0,The Neighbor,en +18551,Flesh and Bone,1993-11-05,126.0,,,tt0106926,Evil is patient,"Some thirty years after Arlis witnesses his father murdering a family, he runs into Kay, who happens to be the family's baby who was spared. Kay and Arlis suspect nothing about each other, but when his father returns, old wounds are reopened.",0,9488998,Flesh and Bone,en +116904,Bar Girls,1994-09-15,93.0,,,tt0109217,,The life and loves of gay women hanging out at a local tavern are examined in this slice of life film.,0,0,Bar Girls,en +11800,Naked in New York,1993-11-10,95.0,,,tt0110623,,"Naked in New York begins in the car of grown up Jake, he is talking to us about his girlfriend, Joanne, (watch for the facial expressions) and to whom you can turn to for help while facing life ('your parents, nyaa, I don't think so'). From there it flashes back to his memories of his parents, college, house across from a squirrel infested peanut factory, best friend, writing career and Joanne.",0,0,Naked in New York,en +107682,"C'est La Vie, Mon Cheri",1993-11-11,105.0,,,tt0111770,,"Unable to make it as a commercial success because he staunchly refuses to sell out, a struggling Hong Kong musician rediscovers his love of music and regains an interest in his life's meaning through his relationship with a dying girl.",0,0,Xin buliao qing,xx +2758,Addams Family Values,1993-11-19,94.0,,11716,tt0106220,The Family Just Got A Little Stranger,"Siblings Wednesday and Pugsley Addams will stop at nothing to get rid of Pubert, the new baby boy adored by parents Gomez and Morticia. Things go from bad to worse when the new ""black widow"" nanny, Debbie Jellinsky, launches her plan to add Fester to her collection of dead husbands.",0,48919043,Addams Family Values,en +41759,Man's Best Friend,1993-11-19,97.0,,,tt0107504,"Companion, Protector, Killer",A dog turns from man's best friend into man's worst nightmare as he attacks everything that moves.,6000000,12974636,Man's Best Friend,en +48706,Josh and S.A.M.,1993-11-24,96.0,,,tt0107277,Why run away from home when you can drive?,"Josh and Sam are two brothers facing change, their mother is about to marry a French accountant and the kids are sent to go live with their father in Florida. Meanwhile Josh tells Sam that he is a ""S.A.M."" that is going to be sent to Africa to fight in a war and that Canada is a safe haven for any S.A.M. unwilling to fight. The cross-country journey begins when the 2 boys think they killed a drunk and steal his car en route to Canada where they encounter The Liberty Maid. Will Josh & S.A.M. make it to Canada or will they wish they should have never left home.",18000000,1528163,Josh and S.A.M.,en +18890,We're Back! A Dinosaur's Story,1993-11-24,72.0,,,tt0108526,Wish for a dinosaur and watch all your dreams come true.,"Captain New Eyes travels back in time and feeds dinosaurs his Brain Grain cereal, which makes them intelligent and non-violent. They agree to go to the Middle Future in order to grant the wishes of children in New York city. They are to meet Dr. Bleeb of the Museum of Natural History, but get sidetracked with their new children friends and run into the Captain's evil brother, Professor",0,9317021,We're Back! A Dinosaur's Story,en +788,Mrs. Doubtfire,1993-11-24,125.0,,,tt0107614,She makes dinner. She does windows. She reads bedtime stories. She's a blessing... in disguise.,"Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as an English nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.",25000000,441286195,Mrs. Doubtfire,en +88126,Romanovin kivet,1993-11-26,90.0,,,tt0107982,,"This action packed Finnish thriller tells the tale of two friends who get their revenge against the millionaire who double-crossed them. Patrick and Tony are hired by the wealthy gambler to steal the priceless Romanov stones, Russian jewels. They do it, but almost lose their lives when he double-crosses them. They turn around and get revenge, his money, his wife, and his daughter.",0,0,Romanovin kivet,fi +16417,Yankee Zulu,1993-12-01,100.0,,,tt0111787,If the gods were crazy... now they're berserk.,"Two South African boys, one white, Rhino, and one black, Zulu, go their separate ways after an incident. Many years later, they meet up again as adults, when one, after living for years in the United States, is now a wanted criminal. The two end up being a part of a madcap chase involving a check for a large amount of lottery money, pursued by Gen. Diehard and Rhino's ex-wife Rowena, who was the cause of the rift between the two protagonists.",0,0,Yankee Zulu,en +78340,Not Everybody's Lucky Enough to Have Communist Parents,1993-12-01,0.0,,,tt0108369,,,0,0,Tout le monde n'a pas eu la chance d'avoir des parents communistes,fr +1689,Little Buddha,1993-12-01,140.0,,,tt0107426,A magical journey to a place where the past and present meet,Little Buddha is a movie about the life of Siddhartha starring Keanu Reeves and Bridget Fonda and directed by Bernardo Bertolucci.,35000000,4858139,Little Buddha,en +37100,Sailor Moon R: The Movie,1993-12-05,61.0,,263101,tt0106417,Promise of a Rose,"While enjoying the flower gardens, Sailor Moon (Usagi) and friends encounter an old childhood friend of Mamoru's: an alien! He's come back to give Mamoru a special flower, but doesn't like Usagi and the rest of the planet's inhabitants. Sailor Moon must defend the earth from the evil Kisenian Flower he's brought back... before the evil vines and blossoms overrun the planet!",0,0,劇場版 美少女戦士セーラームーンR,ja +74629,Attack of the 50 Ft. Woman,1993-12-11,85.0,,,tt0106317,,Nancy Archer has had an alien encounter and it's left her 50 ft. tall! Now she sees the men in her life from a new angle - looking down on them - and it's time to fight back.,0,0,Attack of the 50 Ft. Woman,en +174712,Coo of The Far Seas,1993-12-19,116.0,,,tt0208069,,"After a storm hits their island, Yusuke (driving his jet-ski) finds a baby dinosaur. He show it to his dad, they keep it and call it Coo. But there are other parties interested in a 65 milion year old creature ...",0,0,Coo of The Far Seas,en +268893,VeggieTales: Where's God When I'm Scared,1993-12-21,30.0,http://veggietales.com,,tt0500177,,"Whether it's a giant Frankencelery from a scary movie or a hungry den of lions from Ancient Babylon, Junior Asparagus learns we can trust God with all of our fears and that He really is ""bigger than the boogey-man!""",0,0,VeggieTales: Where's God When I'm Scared,en +30149,Sunes sommar,1993-12-25,83.0,,333154,tt0108252,,,0,0,Sunes sommar,sv +261246,Century,1993-12-31,112.0,,,tt0106537,,Turn-of-the-century love story centered around a young doctor and the emergence of modern science.,0,0,Century,en +329216,The Foot Shooting Party,1994-01-01,27.0,,,tt0109820,,"The lead singer of a band gets drafted for war in Vietnam. So as not to break up the band, he decides to shoot his own foot.",0,0,The Foot Shooting Party,en +58416,"Take Care of Your Scarf, Tatiana",1994-01-01,65.0,,,tt0110832,,"Lugubrious Finns Valto and Reino take to the road in search of coffee and vodka, without which their lives are not worth living. But their reveries are interrupted by the arrival of garrulous Russian Klaudia and Estonian Tatiana - who are clearly interested in the two men, despite the language barrier. But what are the chances of getting a response from men who prefer staring at vodka bottles to talking?",0,0,"Pidä huivista kiinni, Tatjana",fi +29444,S.F.W.,1994-09-15,96.0,,,tt0111048,Fate made them hostages. The media made them stars.,An alienated and misanthropic teenager gains sudden and unwanted celebrity status after he's taken hostage by terrorists where his indifference to their threats to kill him makes news headlines.,0,0,S.F.W.,en +55156,Hail the Judge,1994-01-01,106.0,,,tt0110201,,"Pao Lung-Sing, a descendant of the famous Judge Pao Ching Tient, is a 9th degree corrupt judge (lowest degree) who changes his tune when he tries to champion a woman Chi Siu-Lin, who was framed for killing her husband. As a result, Pao is forced to flee and through a series of events (often hilarious) becomes a 1st degree judge and comes back to wreak havoc and justice on the guilty.",0,0,九品芝麻官之白面包靑天,cn +288168,The time and patience,1994-01-01,52.0,,,tt2069830,,The daily life of a group of women in an old age home.,0,0,L'instant et la patience,fr +41578,Floundering,1994-01-01,96.0,,,tt0109816,,"When a young man's unemployment benefits run out, the IRS freezes his bank account, and his druggie brother needs help, things can't get any worse...until he discovers his girlfriend is cheating on him!",0,0,Floundering,en +48273,Bob's Birthday,1994-01-01,12.0,,,tt0106446,,"Margaret Fish is planning a surprise party for her dentist husband, Bob. Meanwhile, at the office, Bob his having a mid-life crisis while insects munch on what's left of his plants. When Bob returns home, Margaret has a terrible time getting him into the room where everyone's hidden until he's halfway through changing clothes and talking about how horrid all their nebbishy friends are (the same friends hidden all over the room).",0,0,Bob's Birthday,en +110713,Max,1994-01-01,91.0,,,tt0151513,"Max sells trophies, but is much more interested in dancing than in selling","Max sells trophies, but is much more interested in dancing than in selling",0,0,Max,en +43649,The New Comics,1994-01-01,102.0,,256953,tt0159611,,A few funny little novels about different aspects of life.,0,0,Le nuove comiche,it +58189,Perdiamoci di vista!,1994-01-01,0.0,,,tt0110808,,,0,0,Perdiamoci di vista!,it +46697,Hated: GG Allin & the Murder Junkies,1994-01-01,50.0,,,tt0107086,GG Allin is God,"An overview of the life of the most shocking, vile, and notorious of punk rock legends.",0,0,Hated: GG Allin & the Murder Junkies,en +126204,Black Ice,1994-01-01,3.0,,,tt0109283,,A lateral descent through the midnight blues and blacks of ice and the refracted colors from absorbed oils.,0,0,Black Ice,en +117730,Under The Domim Tree,1994-01-01,0.0,,,tt0109751,,,0,0,Etz Hadomim Tafus,he +62039,Breaking Point,1994-01-01,132.0,,,tt0106479,,"A retired police detective reluctantly returns to action to stop a serial killer dubbed ""The Surgeon"".",0,0,Breaking Point,en +30361,Save Me,1994-01-01,93.0,,,tt0108045,,An accountant (Hamlin) beleaguered by personal and professional problems gets involved with a femme fatale (Anthony) and her mysterious psychiatrist (Ironside).,0,0,Save Me,en +108501,Parole Violators,1994-01-01,90.0,,,tt0240791,When the System Breaks Down... He Puts Them Back Where They Belong.,"TV show host Miles Long, trades his camera in for a 9mm hand gun when his girlfriends daughter is kidnapped by a parolee that he put behind bars while on the police force.",0,0,Parole Violators,en +79869,Bigfoot: The Unforgettable Encounter,1994-01-01,88.0,,,tt0109271,An 11 year old boy. An age old legend. A life long friendship,"When Cody gets lost while exploring in the woods, he finds a friend in the legendary creature, Bigfoot.",0,0,Bigfoot: The Unforgettable Encounter,en +31022,Aftermath,1994-01-01,30.0,,84785,tt0159241,,"When the others leave for the night, the last mortician begins to fondle the corpses. He quickly moves to the corpse of a young woman who died in a car crash.",0,0,Aftermath,es +104376,The Castle,1994-01-01,120.0,,,tt0111817,,"Closely based on Franz Kafka's book ""Das Schloß"", the movie shares the same action on a land surveyor who is called to a village to do a job that no one seems to have ordered. Once there, he takes up the struggle against bureaucracy emanating from the castle.",0,0,Замок,ru +48144,The Day the Sun Turned Cold,1994-01-01,99.0,,,tt0111424,,,0,0,天國逆子,zh +52314,Chain of Command,1994-01-01,97.0,,,tt0112655,,"When Merrill Ross (Michael Dudikoff) is thought to be a C.I.A. agent gone bad and teaming with some other alphabet named agency to take over the oil rich country of Qumir, he finds he's in the middle of a very explosive situation. Not knowing who he can trust, he's forced to use a process of elimination thru the chain of operatives he encounters.",0,0,Chain of Command,en +88518,Angel of Destruction,1994-01-01,86.0,,,tt0109125,So hot she'll knock you out cold.,Undercover cop Jo Alwood (Maria Ford) is out to avenge her sisters death at the hands of a serial killer.,0,0,Angel of Destruction,en +13519,The Stand,1994-01-01,366.0,,,tt0108941,The end of the world is just the beginning.,"The human race is wiped out by a government invented super flu. The remaining survivors take sides in the forces of good and evil. A mysterious old woman who is a servant of God and a powerful and deadly man who might be the devil himself. A gas station attendant, a rock star, a mute, a professor, a farmer, a socialite, a mildly retarded man, a judge, a teenager, a mother, and a nerd take forces.",28000000,0,The Stand,en +33135,Fun,1994-01-01,105.0,http://funthemovie.com/,,tt0109855,Friendship. Love. Murder.,Bonnie and Hillary are two young lost souls who meet one day and discover that they get along. They talk about their lives and run around and and keep getting really excited. Their day escalates into an eruption of violence and rage that can only be understood by the two girls.,0,0,Fun,en +153272,Taxandria,1994-01-01,82.0,,,tt0117865,,"young prince is taken for tuition at a seaside hotel but there quickly bores and wanders off to visit a nearby lighthouse. Befriended by the keeper, he learns of a secret world he can see inside the light of the lamp - the world of Taxandria ruled by the dictatorship of the 'eternal present' where all machines, progress and time have been banned. However, a naive but creative printing clerk unwittingly causes a revolution when he upsets a printing press and tries to replace the spilled letters only to have his new words taken for a subversive code. On the run he falls in love with a palace princess, discovers the forbidden art of photography and sets out to fulfill his dream of building a flying machine. Written by L.H. Wong",0,0,Taxandria,en +46094,The Air Up There,1994-01-07,107.0,,,tt0109067,,"Jimmy Dolan is a college basketball coach who wants a big promotion. To get it, he needs to make a dramatic find. He ends up deep in Africa, hoping to recruit Saleh, a huge basketball prodigy Jimmy glimpsed in a home movie. But Saleh is the chief's son and has responsibilities at home, since the tribe's land is threatened by a mining company with its own hotshot basketball team.",17080000,21011500,The Air Up There,en +24767,Iron Will,1994-01-14,108.0,,,tt0110157,,"When Will Stoneman's father dies, he is left alone to take care of his mother and their land. Needing money to maintain it, he decides to join a cross country dogsled race. This race will require days of racing for long hours, through harsh weather and terrain. This young man will need a lot of courage and a strong will to complete this race.",0,0,Iron Will,en +33297,Her Name Is Sabine,2008-01-29,85.0,,,tt1031928,,"A sensitive portrait of Sabine Bonnaire, the autistic sister of the french actress Sandrine Bonnaire.",0,0,Elle s'appelle Sabine,en +251732,Deadly Advice,1994-01-21,91.0,,,tt0106685,,"Mother rules the house with an iron hand and has such power over her daughters that they see themselves as becoming old unmarried, maids. Jodie has feelings for the local doctor, a man much older than her, for which her mother strongly disapproves. Beth finds a relationship with a male stripper in Bristol, but sees nothing in the future with Mother around. While both girls would like to be rid of Mother, nothing happens until Jodie sees images of H. R. Armstrong, the man who put the town on the map by dispatching his un-loving wife",0,0,Deadly Advice,en +14587,Bhaji on the Beach,1994-01-21,100.0,,,tt0106408,,"A group of women of Indian descent take a trip together from their home in Birmingham, England to the beach resort of Blackpool.",0,0,Bhaji on the Beach,en +47412,Trapped in Space,1994-02-01,87.0,,,tt0108380,,"After an accident during a routine trip to Venus, a spaceship has only enough oxygen left for three people... out of five on board.",0,0,Trapped in Space,en +48199,Woyzeck,1994-02-07,93.0,,,tt0111749,,"Lajos Kovács (WINGS OF DESIRE) stars as the misused Woyzeck, who ekes out a miserable existence sweeping train tracks, running errands for a bullying army captain and acting as a human guinea pig for a local doctor with ideas about free will. When his common-law wife begins an affair with a local cop, Woyzeck's pocket Bible and near-starvation diet point him on a downward spiral of twisted redemption.",0,0,Woyzeck,en +2087,The Getaway,1994-02-11,115.0,,,tt0109890,,"Doc McCoy is put in prison because his partners chickened out and flew off without him after exchanging a prisoner with a lot of money. Doc knows Jack Benyon, a rich ""business""-man, is up to something big, so he tells his wife (Carol McCoy) to tell him that he's for sale if Benyon can get him out of prison. Benyon pulls some strings and Doc McCoy is released again. Unfortunately he has to cooperate with the same person that got him to prison.",0,30,The Getaway,en +13962,Blank Check,1994-02-11,93.0,,,tt0109287,Quick thinking landed him a million bucks... now everybody's after it!,"Bullied by his siblings and nagged by his parents, 11-year-old Preston is fed up with his family -- especially their frugality. But he gets his chance to teach them a lesson when a money-laundering criminal nearly bulldozes Preston with his car and gives the boy a blank check as compensation. Preston makes the check out for $1 million and goes on a spending spree he'll never forget. Maybe now, his family will take him seriously!",13000000,0,Blank Check,en +52021,Bloodlust: Subspecies III,1994-02-16,83.0,,103291,tt0109302,,"Still in the thrall of the evil vampire Radu, Michelle yearns to be taught the skills of the vampire. Meanwhile, her sister Becky tries to free her from his evil clutches, and this time, she's brought some help.",0,0,Bloodlust: Subspecies III,en +19819,Blue Chips,1994-02-18,108.0,,,tt0109305,,"Pete Bell, a college basketball coach is under a lot of pressure. His team aren't winning and he cannot attract new players. The stars of the future are secretly being paid by boosters. This practice is forbidden in the college game, but Pete is desperate and has pressures from all around.",0,0,Blue Chips,en +9624,On Deadly Ground,1994-02-18,102.0,,,tt0110725,His Battle To Save The Alaskan Wilderness And Protect Its People Can Only Be Won...,"Forrest Taft is an environmental agent who works for the Aegis Oil Company in Alaska. Aegis Oil's corrupt CEO, Michael Jennings, is the kind of person who doesn't care whether or not oil spills into the ocean or onto the land, just as long as it's making money for him.",50000000,49000000,On Deadly Ground,en +1481,Metal Skin,1994-02-21,115.0,,,tt0110500,,No overview found.,0,0,Metal Skin,en +48791,Royal Deceit,1994-02-23,85.0,,,tt0110891,His quest for vengeance... may cost him everything.,A Danish prince seeks revenge upon the villain who killed the king and his son to usurp the throne.,0,0,Prince of Jutland,en +30366,Leningrad Cowboys Meet Moses,1994-02-24,94.0,,187736,tt0107384,,"After years of fame and misfortune in Mexico, the members of the Leningrad Cowboys decide to return to their native village. Their former manager Vladimir, who now calls himself Moses lead them on their way home.",0,0,Leningrad Cowboys Meet Moses,en +86369,Mina Tannenbaum,1994-03-02,0.0,,,tt0110521,,The film tells the story of two girls who are of totally different character. They know each other since their childhood and were friends until they became teenagers. But growing up and becoming adults they go different ways.,0,0,Mina Tannenbaum,fr +10694,The Chase,1994-03-04,89.0,,,tt0109402,Getting there is twice the fun.,"Jack Hammond is sentenced to life in prison, but manages to escape. To get away from the police he takes a girl as hostage and drives off in her car. The girl happens to be the only daughter of one of the richest men in the state. In a while the car chase is being broadcast live on every TV-channel.",26000000,8009329,The Chase,en +83714,Angie,1994-03-04,107.0,,,tt0109129,,"Angie lives in the Bensonhurst section of Brooklyn, N.Y. and dreams of a better life than everyone she knows. When she finds that she is pregnant by her boyfriend Vinnie, she decides that she will have the baby, but not Vinnie as a husband. This turns the entire neighborhood upside down and starts her on a journey of self discovery. This journey includes her family, a new lover and her life. Even her best friend Tina has trouble understanding Angie. Written by Tony Fontana",0,0,Angie,en +10872,The Ref,1994-03-09,97.0,,,tt0110955,They might be his hostages but what they're doing to this guy is criminal.,"A cat burglar is forced to take a bickering, dysfunctional family hostage on Christmas Eve.",11000000,11439193,The Ref,en +22317,Lightning Jack,1994-03-11,98.0,,,tt0110353,,"Lightning Jack Kane is an Australian outlaw in the wild west. During a bungled bank robbery he picks up mute Ben Doyle as a hostage. The two become good friends, with Jack teaching Ben how to rob banks, while they plan Jack's last heist.",0,0,Lightning Jack,en +166221,Teresa's Tattoo,1994-03-15,88.0,,,tt0111397,,"Mathematician Teresa just wanted to study during the College spring break. But her friends, who want her to live a little, drag her out to parties. The next thing she knows, she has been drugged, kidnapped, made a redhead, tattooed, and wearing leather?!? Her captors seem to be the most inept crooks ever. They seem to have a plan, if only she could figure out why it involves her.",0,0,Teresa's Tattoo,en +279606,Radio Inside,1994-03-15,91.0,,,tt0110936,What do you do if the one you want is the one you can't have?,As two brothers fall in love with the same woman they must come to grips with the accidental death of their father in this sensitive drama set in Miami.,0,0,Radio Inside,en +35977,Pumpkinhead II: Blood Wings,1994-03-16,88.0,,123256,tt0110913,They couldn't leave dead enough alone.,Thrill-seeking teenagers resurrect a demon from his grave and a bloody rampage for revenge begins.,0,0,Pumpkinhead II: Blood Wings,en +31380,Time Chasers,1994-03-17,89.0,,,tt0145529,Saving the future before time runs out…,"An inventor comes up with a time machine, but must prevent its abuse at the hands of an evil C.E.O.",0,0,Time Chasers,en +260397,Buried in Light,1994-03-21,61.0,,,tt0230057,,A film by Jem Cohen,0,0,Buried in Light,en +25645,Wing Chun,1994-03-24,93.0,,,tt0111800,,"Martial arts expert Wing Chun battles bandits in this magical film that provides as many laughs as it does wallops. Besides horse thieves, Wing Chun must deal with the men around her who simply can't handle a strong, independent woman. Ultimately, she must dish out ""lessons"" again and again and again until the respect for her remarkable skills is finally won.",0,0,Wing Chun,cn +28032,Thumbelina,1994-03-30,87.0,,,tt0111419,Follow your heart and nothing is impossible.,The tiny girl meets a fairy prince who saves her from the creatures of the woods.,28000000,11373501,Thumbelina,en +13794,Africa: The Serengeti,1994-03-31,40.0,,,tt0109049,,"Africa the Serengeti takes you on an extraordinary journey to view a spectacle few humans have ever witnessed: The Great Migration. Journey with more than two million wildebeests, zebras and antelopes as in their annual 500 mile trek across the Serengeti plains.",0,0,Africa: The Serengeti,en +275096,The Jar,1994-04-01,86.0,,,tt0104606,,"In the yard of an Iranian village school stands in the shade of a tree a large stoneware jar from which all the pupils drink fresh water. On an unfortunate day, the jar starts leaking. The schoolmaster tries hard to get a new one but in vain. The only solution is to have it fixed...",0,0,Khomreh,en +2778,Clifford,1994-04-01,89.0,,,tt0109447,"What's the difference between Clifford and a pit bull? One will tear your heart out, scare your friends and wreck your house. The other one is a dog.","When his brother asks him to look after his young son, Clifford, Martin Daniels agrees, taking the boy into his home and introducing him to his future wife, Sarah. Clifford is fixated on the idea of visiting a famed theme park, and Martin, an engineer who helped build the park, makes plans to take him. But, when Clifford reveals himself to be a first-rate brat, his uncle goes bonkers, and a loony inter-generational standoff ensues.",19000000,7411659,Clifford,en +81996,Bandit's Silver Angel,1994-04-10,0.0,,398758,tt0109209,,Bandit (Brian Bloom) gets an unexpected and unwelcome visit from his eccentric Uncle Cyrus.,0,0,Bandit's Silver Angel,en +46797,Tom & Viv,1994-04-15,115.0,,,tt0111454,"For better, for worse, forever.","The story of the marriage of the poet TS Eliot to socialite Vivienne Haigh-Wood, which had to cope with her gynaeological and emotional problems and his growing fame.",0,0,Tom & Viv,en +26261,Cops & Robbersons,1994-04-15,93.0,,,tt0109480,,"Hard-as-nails cop Jake Stone moves in with the Robbersons so he can watch a hitman who has moved in next door. The Hitman is one thing, but can you survive the Robberson family.",0,0,Cops & Robbersons,en +33124,1942: A Love Story,1994-04-15,157.0,,,tt0109010,1942,"In 1942 the British ruled India, a time when people were either working for the British or rallying for underground meetings and protests against them. Amidst this background, Naren Singh, falls in love with Rajeshwari Pathak. But their romance is not an easy one, for Naren comes from a wealthy, British supporting, family. But Rajeshwari is poor and is fighting against the British.",0,0,1942: A Love Story,hi +11795,Guyver: Dark Hero,1994-04-20,127.0,,280562,tt0109965,Sci-fi's most powerful alien-human hybrid returns!,"Sean Barker became the unwilling host to an alien bio-armor known as the Guyver. A year ago he destroyed the Kronos Corporation, an organization of mutants who want the Guyver. Now he is trying to find why the Guyver unit forces him to fight and kill evil.",0,0,Guyver: Dark Hero,en +53472,De Flat,1994-04-21,0.0,,,tt0109808,,,0,0,De Flat,de +11853,Bad Girls,1994-04-22,99.0,,,tt0109198,It was a dangerous time to be a woman. And a good time to have friends.,"Four former harlots try to leave the wild west (Colorado, to be exact) and head north to make a better life for themselves. Unfortunately someone from Cody's past won't let it happen that easily.",0,15240435,Bad Girls,en +59930,The Inkwell,1994-04-22,110.0,,,tt0110137,Summer's Never Been So Much Fun!,The Inkwell is about a 16-year-old boy coming of age on Martha's Vineyard in the summer of 1976.,0,8880705,The Inkwell,en +24405,Chasers,1994-04-22,102.0,,,tt0109403,It was supposed to be a routine prisoner transfer. But this was no ordinary prisoner.,"Military men Rock Reilly and Eddie Devane are tasked with taking a prisoner, blonde bombshell Toni Johnson, on what becomes an unforgettable road trip. Toni, an enlistee who's in trouble for deserting her unit, soon proves that she's craftier than most inmates.",0,1596687,Chasers,en +50463,The Favor,1994-04-29,97.0,,,tt0109783,Two Women. Three Men. One Secret.,"Kathy is married to Peter. Now she can't help but wonder how things could have been if she got together with her old boyfriend, Tom. Being married prevents from doing that so she asks her friend, Emily to go to him and see if she can sleep with him then tell Kathy how it was. When Emily tells Kathy that things were awesome, their friendship suffers, at the same so does Kathy's marriage. Things get even more complicated when Emily learns she's pregnant, and she's not certain if it's Tom's or her boyfriend, Elliot.",0,0,The Favor,en +46924,Being Human,1994-05-06,122.0,,,tt0106379,"For Hector, history has a way of repeating itself.",One man must learn the meaning of courage across four lifetimes centuries apart.,40000000,0,Being Human,en +21029,Revenge of the Nerds IV: Nerds In Love,1994-05-09,92.0,,48190,tt0110982,Birds do it. Bees do it. Tonight see what happens when Nerds do it...,"Lewis and his nerdy friends attend Booger's wedding to the daughter of a rich politician, but nerd-haters in the family do everything possible to prevent the wedding going ahead. Meanwhile, Lewis awaits with eagerness the birth of his unborn foetal child...",0,0,Revenge of the Nerds IV: Nerds In Love,en +9495,The Crow,1994-05-11,102.0,,9436,tt0109506,Real love is forever.,"Exactly one year after young rock guitarist Eric Draven and his fiancée are brutally killed by a ruthless gang of criminals, Draven -- watched over by a hypnotic crow -- returns from the grave to exact revenge.",15000000,94000000,The Crow,en +81895,MacGyver: Lost Treasure of Atlantis,1994-05-14,93.0,,209739,tt0110419,,"Hunting artifacts attributed to Zenon (an ancient scientist from Atlantis), MacGyver and his old professor end up searching for the lost city.",0,0,MacGyver: Lost Treasure of Atlantis,en +207641,Project Shadowchaser II,1994-05-14,94.0,,,tt0110901,Part Man. Part Machine. Pure Killer.,"Terrorists led by an android take over a nuclear plant and threaten to launch a missile at Washington. While the authorities desperately attempt to negotiate, the terrorists persue their real goal. A plant worker, her son and a tough-guy repair man have other ideas, and attempt to stop the terrorists from inside the plant.",0,0,Project Shadowchaser II,fr +32764,71 Fragments of a Chronology of Chance,1994-05-18,100.0,,278467,tt0109020,,71 scenes revolving around multiple Viennese residents who are by chance involved with a senseless gun slaughter on Christmas Eve.,0,0,71 Fragmente einer Chronologie des Zufalls,de +317720,"English, August",1994-09-16,118.0,,,tt0109732,,"Agasyta, an urban bengali who seamlessly shuttles between Ella Fitzgerald and Rabindra Sangeet, joins the Indian administration service and gets posted in the lap of India's hinterland - a dingy little town called Madna.",0,0,"English, August",en +64567,Dead Tired,1994-05-18,0.0,,,tt0109942,,"Stressed and overworked, famous French movie star Michel Blanc (Michel Blanc) is beginning to wear down, physically and mentally, from the pressure and demands of fame. Already in a fragile state of mind, strange events start to transpire all around him, and he gradually loses his grip. Taking the advice of a psychiatrist, Blanc retreats to the countryside with his friend, Carole Bouquet (Carole Bouquet), but Blanc still has not managed to escape all of his problems.",0,0,Grosse fatigue,fr +33095,Good Old Daze,1994-05-21,101.0,,,tt0110922,,"Ten years after their Upper Sixth, Bruno, Momo, Leon and Alain meet together in the waiting room of a maternity hospital. The father of the awaited baby is Tomasi, their best friend at that time, who died one month before due to an overdose. They remember their teenage, their laughs, their dreams, their stupid pranks... a description of the French youth in the middle of the seventies.",0,0,Le péril jeune,fr +162437,Katatsumori,1994-05-22,39.0,,,tt0191227,,Medium-length doc by Naomi Kawase.,0,0,Katatsumori,en +110,Three Colors: Red,1994-05-27,99.0,,131,tt0111495,,Red This is the third film from the trilogy by Kieślowski. “Red” meaning brotherliness. Here Kieślowski masterly tells strange coincidentally linked stories in the most packed work.,0,0,Trois couleurs Rouge,fr +107781,The Club,1994-06-01,94.0,,,tt0109449,In this club the initiations can be fatal,"Time stops at midnight at the Senior Prom for five students, one murderous counselor, and John. They must find the courage to face themselves or, when time starts again, they may find that they are joining John's Club. All you have to do is commit murder... or suicide.",0,0,The Club,en +82716,The Watermill Princess,1994-06-01,99.0,,,tt0110893,,,0,0,Princezna ze mlejna,cs +19176,The Cowboy Way,1994-06-03,102.0,,,tt0109493,,"Two championship rodeo partners travel to New York to find their missing friend, Nacho Salazar who went missing there.",0,0,The Cowboy Way,en +121655,London,1994-06-03,85.0,,,tt0110377,,"The first film in Patrick Keiller's Robinson trilogy, preceding Robinson In Space and Robinson In Ruins.",0,0,London,en +1637,Speed,1994-06-09,116.0,,43064,tt0111257,Get ready for rush hour,"Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.",30000000,350448145,Speed,en +18620,Go Fish,1994-06-10,83.0,,,tt0109913,The girl is out there,"Max is a trendy, pretty, young lesbian, who is having trouble finding love. A friend sets her up with Ely, whom Max likes, but Ely is frumpy, homely, and older. Nor do they have much in common. Can Max learn to look past the packaging?",0,0,Go Fish,en +265741,Amelia Earhart: The Final Flight,1994-06-12,95.0,,,tt0109096,,A telling of the story of the famous U.S. aviatrix Amelia Earhart who attempted to fly solo around the world in 1937. She disappeared during the process.,0,0,Amelia Earhart: The Final Flight,en +10395,Wolf,1994-06-17,125.0,,,tt0111742,The animal is out.,Publisher Will Randall becomes a werewolf and has to fight to keep his job.,0,0,Wolf,en +71687,My Life's in Turnaround,1994-06-17,84.0,,,tt0107631,,No girlfriends. No money. No work. No problem!,0,0,My Life's in Turnaround,en +56191,Iria: Zeiram the Animation,1994-06-23,151.0,,,tt0107228,She's a bounty hunter with a score to settle.,A monster hunter goes after a beast that could be her brother.,0,0,Iria: Zeiram the Animation,ja +31439,To Live,1994-06-30,125.0,,,tt0110081,,Fugui and Jiazhen endure tumultuous events in China as their personal fortunes move from wealthy landownership to peasantry.,0,0,活着,zh +72596,Movie Days,1994-06-30,82.0,,,tt0109273,,"This Icelandic tale, loosely based on the real-life experiences of director Fridrik Fridriksson tells the saga of a boyhood spent in Iceland in the 1960s.",0,0,Bíódagar,is +178,Blown Away,1994-07-01,121.0,http://www.mgm.com/#/our-titles/215/Blown-Away,,tt0109303,5. 4. 3. 2. 1......Time's Up.,Blown Away tells the story of Jimmy Dove who works for the Boston bomb squad. Shortly after Dove leaves the force his partner is killed by a bomb that Dove thinks might have been made by someone he knows.,0,30156002,Blown Away,en +54804,Staggered,1994-07-08,95.0,,,tt0111275,Neil Price is in a bad way. He got up on the wrong side of the country this morning.,"Very much in love, Neil's wedding plans are sabotaged, beginning when he is abandoned, naked, on a Scottish island. A road trip ensues, with Neil encountering many obstacles as he makes his way to London for what he believes is to be his wedding day. Or is it?",0,0,Staggered,en +126841,Jack Brown: Genius,1994-07-11,0.0,,,tt0138529,,"A thousand years ago, in England, the crazy monk Elmer wears a pair of wings and tries to fly from a high tower. He dies, and his soul is doomed to the eternity in hell for committing suicide. In the present days, in New Zeland, Elmer has the last chance to prove that men can fly and save his soul: his spirit enters in the brain of a very intelligent inventor, Jack Brown, and forces him to try to fly. Jack uses his last creation, an amplifier in a tape record, to succeed in the journey, but his invention is strongly desired by his former boss and his lover, who want to sell it to a Chinese investor. Jack's girlfriend helps him to accomplish his intent.",0,0,Jack Brown: Genius,en +64084,Scorned,1994-07-13,100.0,,,tt0111093,Hell Hath No Fury Like A Woman...,A vengeful widow is out to seduce the relatives of the man she blames for her husband's death.,0,0,Scorned,en +11104,Chungking Express,1994-07-14,102.0,,,tt0109424,What a difference a day makes,"Every day, Cop 223 buys a can of pineapple with an expiration date of May 1, symbolizing the day he'll get over his lost love. He's also got his eye on a mysterious woman in a blond wig, oblivious of the fact she's a drug dealer. Cop 663 is distraught with heartbreak over a breakup. But when his ex drops a spare set of his keys at a local cafe, a waitress lets herself into his apartment and spruces up his life.",0,0,重慶森林,cn +24795,Angels in the Outfield,1994-07-15,102.0,,,tt0109127,Ya Gotta Believe!,"Roger is a foster child whose irresponsible father promises to get his act together when Roger's favourite baseball team, the California Angels, wins the pennant. The problem is that the Angels are in last place, so Roger prays for help to turn the team around. Sure enough, his prayers are answered in the form of angel Al.",0,50236831,Angels in the Outfield,en +11231,The Next Karate Kid,1994-07-18,107.0,,8580,tt0110657,Who says the good guy has to be a guy?,"During a commemoration for Japanese soldiers fighting in the US Army during World War II, Mr. Miyagi meets the widow of his commanding officer. He gets to know her granddaughter Julie, an angry teenager who is still feeling the pain of losing both her parents in an accident and is having problems with her grandmother and her fellow pupils. Mr. Miyagi decides to teach her karate to get her through her pain and issues and back on the right path.",12000000,15826984,The Next Karate Kid,en +31586,North,1994-07-22,87.0,,,tt0110687,A family comedy that appeals to the child in everyone.,"Eleven-year-old North has had it with his parents. They are always busy with their careers and don't give North the attention he needs, so he files a lawsuit against them. The judge rules that North should either find new parents or return to his own parents within two months. Thus north starts off on an hilarious journey around the world to find the parents that really care about him.",40000000,0,North,en +44265,Lurking Fear,1994-07-27,98.0,,,tt0110410,Infinite Evil,"The town of Leffert's Corners has been plagued by unearthly beings for decades, and now there is only a few people left, including the local priest and a woman traumatised by the death of her sister. But when John Martense turns up to claim his illicit family fortune, with bad guys in pursuit, the last stand had become a lot more complicated. Based on the writings of H P Lovecraft.",0,0,Lurking Fear,en +30921,Scanner Cop,1994-07-27,95.0,,88574,tt0111082,Imagine a cop who can read your mind... then blow it away.,"Sam Staziak, a rookie cop with the Los Angeles Police Department, is also a 'scanner' (psionic). When a string of murders begins to decimate the police department, Sam faces sensory overload and possible insanity as he uses his powers to hunt the man responsible for the killings.",0,0,Scanner Cop,en +95743,Foreign Student,1994-07-29,90.0,,,tt0109828,,A French football playing exchange student falls in love.,0,0,Foreign Student,en +14522,Black Beauty,1994-07-29,88.0,,,tt0109279,,"The fates of horses, and the people who own and command them, are revealed as Black Beauty narrates the circle of his life.",0,0,Black Beauty,en +46387,Hum Aapke Hain Koun,1994-08-05,206.0,,,tt0110076,,"t tells the story of two lovers, Prem (Salman Khan) and Nisha (Madhuri Dixit). Their older siblings, Rajesh and Pooja get married. After Pooja has her baby, the elders decide to get Prem married with a girl like Pooja. Prem and Nisha slowly fall in love with each other. Prem tells his sister-in-law...",0,26900000,Hum Aapke Hain Koun,hi +10897,The Little Rascals,1994-08-05,82.0,,,tt0110366,Mischief loves company,"Spanky, Alfalfa, Buckwheat, and the other characters made famous in the Our Gang shorts of the 1920s and 1930s are brought back to life in this nostalgic children's comedy. When Alfalfa starts to question his devotion to the club's principles after falling for the beautiful nine-year old Darla, the rest of the gang sets out to keep them apart.",0,67308282,The Little Rascals,en +354023,Trying to Kiss the Moon,1994-08-11,95.0,,,tt0111505,,This autobiographical film evolves from the perspective of events and images over a period of over 50 years.,0,0,Trying to Kiss the Moon,en +187458,Woodstock Diary,1994-08-14,115.0,,,tt0208579,,"Woodstock Diary was originally broadcasted on U.S. TV in August 1994 - in honor of the 25th anniversary of the event. Later it was released on DVD with remastered 5.1 sound. It includes performances not shown in the Woodstock movie but not exclusively. Between the songs there are recent interviews with the producers / organizers of Woodstock Joel Rosenman, John Roberts, Michael Lang, the stage announcer Wavy Gravy and Lisa Law (a member of the Hog Farm who helped out at the festival[1]).",0,0,Woodstock Diary,en +39827,The Who: Thirty Years of Maximum R&B,1994-08-15,155.0,,,tt0131064,,A celebration of 30 years of The Who.,0,0,The Who: Thirty Years of Maximum R&B,en +21352,Andre,1994-08-17,94.0,,,tt0109120,The greatest adventure is finding your way home.,"The true story of how a marine seal named Andre befriended a little girl and her family, circa 1962.",0,0,Andre,en +20678,Blankman,1994-08-19,96.0,,,tt0109288,,"Darryl is a childlike man with a genius for inventing various gadgets out of junk. When he stumbles on a method to make his clothes bulletproof, he decides to use his skills to be the lowest budgeted superhero of all.",0,0,Blankman,en +2124,Color of Night,1994-08-19,121.0,,,tt0109456,"In the heat of desire, love can turn to deception. Nothing is what it seems when day turns into night.","When New York psychiatrist Bill Capa visits Los Angeles to take over his murdered colleague's therapy group, he finds himself embroiled in the thick of a mystery when he bumps into Rose and begins a torrid affair.",40000000,19726050,Color of Night,en +17745,Camp Nowhere,1994-08-26,96.0,,,tt0109369,,"Morris ""Mud"" Himmel has a problem. His parents desperately want to send him away to summer camp. He hates going to summer camp, and would do anything to get out of it. Talking to his friends, he realizes that they are all facing the same sentence: a boring summer camp. Together with his friends, he hatches a plan to trick all the parents into sending them to a camp of their own design.",0,0,Camp Nowhere,en +59051,Dark Angel: The Ascent,1994-08-31,81.0,,,tt0109542,,"Chaesed away by her father , an idealistic she-devil heads for the world above to begin serving her own brand of justice.",0,0,Dark Angel: The Ascent,en +88641,There Goes My Baby,1994-09-02,99.0,,,tt0108320,,A group of high school seniors meets in the summer of 1965 and all struggle with the choices they have to make.,10500000,123509,There Goes My Baby,en +60855,Double Happiness,1994-09-07,87.0,,,tt0109655,You've got one life to live. What's it gonna be?,"Jade Li is a feisty, 20-something Chinese Canadian, trying to achieve that happy medium between giving in to her parent's wishes and fulfilling her own needs and desires - double happiness. Naturally, something's got to give and when love beckons in the shape of Mark, a white university student, the facade of the perfect Chinese daughter begins to slip.",0,759393,Double Happiness,en +41590,Trial by Jury,1994-09-09,107.0,,,tt0111488,"For one juror, the question of guilt or innocence is a matter of life or death... her own.","Valerie is a juror in the trail of a mob boss. When her young son's life is threatened, she has no option other than to see that justice isn't done.",0,0,Trial by Jury,en +83718,What Happened Was...,1994-09-09,91.0,,,tt0111689,,"Jackie and Michael are coworkers at a large law firm, who decide to meet at Jackie's for dinner one night.",0,0,What Happened Was...,en +18919,Faust,1994-09-10,97.0,,,tt0109781,,"A very free adaptation of Marlowe's 'Doctor Faustus', Goethe's 'Faust' and various other treatments of the old legend of the man who sold his soul to the devil. Svankmajer's Faust is a nondescript man who, after being lured by a strange map into a sinister puppet theatre, finds himself immersed in an indescribably weird version of the play, blending live actors, clay animation and giant puppets.",0,0,Faust,cs +82027,Crows,1994-09-12,66.0,,,tt0111751,,"A thin child of about 10, nicknamed ""Crow"" because she mimics the bird, has no friends and rejects a teacher's hug. At home, she is left on her own, her mom locks her out while entertaining a lover or is asleep. One morning, Crow sees a chubby, cherubic child hugged by both parents as the father leaves for work. When the toddler is left alone, Crow lifts her through the fence and kidnaps her. That day, Crow tries to mother the child, alternately playing with and scolding her, taking her to the beach, leaving shore in a boat, pushing her into the sea in a pique, and eventually carrying the sleeping child back home. Crow returns to her own mother and asks for affection.",0,0,Wrony,pl +26958,Puppet Master 5: The Final Chapter,1994-09-21,82.0,,107949,tt0110916,Puppets Vs. An All New Evil!,The puppets battle their most powerful enemy yet as they protect the new puppet master from the demon God that created the Secret of Life.,0,0,Puppet Master 5: The Final Chapter,en +46403,Main Khiladi Tu Anari,1994-09-23,175.0,,,tt0110438,,A Bombay police officer seeks revenge when his brother is killed by a powerful underworld figure. Things get complicated when a matinee movie idol begins to tag along the policeman so he can research a movie role.,0,0,मैं खिलाड़ी तू अनाड़ी,hi +522,Ed Wood,1994-09-27,127.0,,,tt0109707,"When it came to making bad movies, Ed Wood was the best.","The mostly true story of the legendary ""worst director of all time"", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.",18000000,5887457,Ed Wood,en +227462,The Other Side,1994-09-30,8.0,,,tt0478361,,A simple life of simple creatures in a wonderful and awful world.,0,0,Другая сторона,en +147939,Teenage Mutant Ninja Turtles: We Wish You a Turtle Christmas,1994-10-01,25.0,,,tt1789982,,"A 25-minute, live-action Christmas special released direct-to-video in 1994.",0,0,Teenage Mutant Ninja Turtles: We Wish You a Turtle Christmas,en +291164,Hand Gun,1994-10-01,90.0,,,tt0109982,,"Jack is in the midst of a major robbery, which leaves him injured and his accomplices dead. Jack manages to hide the $500,000 from the robbery before he makes his way to his death bed.",0,0,Hand Gun,en +13591,Eddie Izzard: Unrepeatable,1994-10-03,75.0,,,tt0111562,,"Recorded one night at the Albert Theatre in March 1994, when Eddie Izzard was playing a limited seven week sold-out run of his celebrated stand-up show.",0,0,Eddie Izzard: Unrepeatable,en +77728,Giorgino,1994-10-05,177.0,,,tt0109900,,"October 1918: After returning to the civil life, the young Doctor Giorgino Volli searches for a group of children, which he had been the care-taker of before the first world war began. However, soon the searching becomes a part of hide-and-seek with death. Giorgio finds a village bordered with a treacherous marsh and rumours of wolves. There he also meets the mysterious Catherine....",15000000,0,Giorgino,en +159185,"Red Firecracker, Green Firecracker",1994-10-14,111.0,,,tt0110769,,"A woman inherits her father's fireworks factory, as he had no son. The business does well and everything works in an orderly fashion until one day, an itinerant painter is hired to decorate the doors and vases at the factory. The woman, forbidden to marry and thereby involve outsiders in the factory ownership, finds herself drawn to the headstrong painter. When they fall in love, the situation throws her entire life into disarray",0,0,Pao Da Shuang Deng,zh +47504,Little Odessa,1994-10-27,98.0,,,tt0110365,Brothers in blood. Partners in crime.,"The film follows the personal relationship between a father and his two sons, one of whom is a hit-man for the Russian mafia in Brooklyn.",0,0,Little Odessa,en +22471,Yrrol,1994-10-28,88.0,,,tt0111807,,Yrrol: An Enormously Well Thought Out Movie. Sketch comedy,0,0,Yrrol,sv +10467,The Road to Wellville,1994-10-28,118.0,,,tt0111001,A comedy of the heart and other organs.,"An unhappy young couple visit the infamous Kellogg spa in Battle Creek, Michigan while a young hustler tries get into the breakfast-cereal business and compete against John Kellogg's corn flakes.",0,0,The Road to Wellville,en +75244,A Feast At Midnight,1994-11-01,105.0,,,tt0109784,,A new student at a British public school forms a secret society centered around cooking and midnight feasting with other school misfits and outcasts.,0,0,A Feast At Midnight,en +21742,Into the Deep,1994-11-02,34.0,,,tt0110150,Someday all movies will be this real.,"An underwater exploration beneath kelp forests in the Pacific Ocean off the coast of Southern California. The film captures the birth of a shark, squids mating, a lobster molting, a fish protecting its nest from an octopus and a sea urchin, and the sea bed covered with brittle stars.",0,0,Into the Deep,en +51049,Pontiac Moon,1994-11-03,113.0,,,tt0110867,,An absent-minded-professor father and his son take off in an old Pontiac to bond during a symbolic road trip through the Western U.S. This while his wife tries to overcome her neuroses to save the family.,0,0,Pontiac Moon,en +19855,The War,1994-11-04,126.0,,,tt0111667,,The son of a Vietnam War Veteran must deal with neighborhood bullies as well as his dad's post-traumatic stress disorder while growing up in the deep south in the 1970's.,0,0,The War,en +3036,Mary Shelley's Frankenstein,1994-11-04,123.0,,,tt0109836,Be Warned. It's Alive,"Based on Mary Shelley's novel, ""Frankenstein"" tells the story of Victor Frankenstein, a promising young doctor who, devastated by the death of his mother during childbirth, becomes obsessed with bringing the dead back to life. His experiments lead to the creation of a monster, which Frankenstein has put together with the remains of corpses. It's not long before Frankenstein regrets his actions.",45000000,112006296,Frankenstein,en +11907,Nobody Loves Me,1994-11-07,104.0,,,tt0110251,,No overview found.,0,0,Keiner liebt mich,de +124475,La séparation,1994-11-09,88.0,,,tt0111342,,"In Paris, Pierre and Anne have been living together for a couple of years and they have the eighteen months son Loulou, who stays with the nanny Laurence during the day while they work. Their best friends are the couple Victor and Claire, who also is not married but live together. Out of the blue, Pierre feels Anne estranged with him and sooner she discloses that she is in love with another man. Pierre seems to accept her affair but their relationship rapidly deteriorates, and Pierre becomes violent with her.",0,0,La séparation,en +9673,Voll Normaaal,1994-11-10,91.0,,,tt0111640,,No overview found.,0,0,Voll Normaaal,de +173865,Esa ja Vesa – auringonlaskun ratsastajat,1994-11-10,,,,tt0109744,,,3120375,0,Esa ja Vesa – auringonlaskun ratsastajat,fi +193,Star Trek: Generations,1994-11-17,118.0,,115570,tt0111280,Boldly go.,Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.,38000000,120000000,Star Trek: Generations,en +50326,How The West Was Fun,1994-11-19,96.0,,,tt0110068,,"Twins Suzy and Jessica visit granny Natty's dude ranch in the Wild West. The ranch has too few paying visitors and granny may have to sell the ranch to evil developer Bart unless ""somebody"" can help her. The twins also find the diary of their deceased mother.",0,0,How The West Was Fun,en +48874,A Flintstones Christmas Carol,1994-11-24,70.0,,,tt0193164,,"Fred is cast as Ebenezer Scrooge in a stage adaption of the story, but is acting a bit stingy in real life.",0,0,A Flintstones Christmas Carol,en +79593,The Tie That Binds,1995-09-08,99.0,,,tt0114666,,John Netherwood and his wife Leann are fugitives who are both wanted for murder. They have a young daughter named Janie and they want her back.,14000000,5780000,The Tie That Binds,en +79783,Camilla,1994-11-25,95.0,,,tt0109368,They went looking for adventure... and found themselves.,"Freda Lopez, an aspiring musician, travels with her husband to the beautiful beaches of Georgia where she befriends Camilla, an odd and exotic elderly woman who plays the violin. When the two embark on a journey together, Camilla reclaims a lost love and makes peace with herself and her son, while Freda discovers inner resources she never knew she had.",8500000,250993,Camilla,en +9287,Troublemakers,1994-11-25,107.0,,,tt0109321,,Two brothers who hate themselves are going to spend Christmas with their mother. She tries to get them together.,0,0,Botte di Natale,it +11248,Fatherland,1994-11-26,106.0,,,tt0109779,,Fictional account of what might have happened if Hitler had won the war. It is now the 1960s and Germany's war crimes have so far been kept a secret. Hitler wants to talk peace with the US president. An American journalist and a German homicide cop stumble into a plot to destroy all evidence of the genocide.,0,0,Fatherland,en +23719,Trapped in Paradise,1994-12-02,111.0,,,tt0111477,The Firpo Brothers can get away with anything. They just can't get away!,The Firpo Brothers can get away with anything. They just can't get away!,0,5777916,Trapped in Paradise,en +208529,Getting In,1994-12-07,94.0,,,tt0109893,Med School - the price of admission is murder,"Gabriel Higgs has failed to get into Johns Hopkins to study medicine. He's sixth on a list of backup candidates, and must persuade the five people ahead of him to drop out. Gabriel has a family tradition to live up to. Things don't go to plan.",0,0,Getting In,en +47238,The Corridor,1994-12-12,85.0,,,tt0110278,,"The atmosphere of a corridor between yesterday and tomorrow, where many doors open into the unknown ... A series of faces, gestures and images both real and imagined time. (A fragmentary narrative without dialogue and depicts several people in Vilnius)",0,0,Koridorius,lt +85024,Shatter Dead,1994-12-13,0.0,,,tt0111159,,Depressing tale about a world of the undead and a woman's trek to get home to her boyfriend's house.,0,0,Shatter Dead,en +112708,Cage II: The Arena of Death,1994-12-14,106.0,,,tt0139091,No rules. No limits. No mercy!,"After being tricked into thinking his best friend, and caretaker is dead, Vietnam Vet, and mentally disabled person has no other choice but to enter The Arena Of Death!",0,0,Cage II,en +8467,Dumb and Dumber,1994-12-16,107.0,,96665,tt0109686,"What the one doesn't have, the other is missing.","Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some ""adventures"" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.",16000000,247275374,Dumb and Dumber,en +390,Lisbon Story,1994-12-16,100.0,,,tt0110361,,Lisbon Story is Wim Wender’s homage to Lisbon and films. A sound engineer obtains a mysterous postcard of a friend who at the moment is filming a film in Lisbon. He sets out across Europe to find him and help him.,0,0,Lisbon Story,pt +13701,Immortal Beloved,1994-12-16,121.0,,,tt0110116,,"The life and death of the legendary Ludwig van Beethoven. Beside all the work he is known for, the composer once wrote a famous love letter to a nameless beloved and the movie tries to find out who this beloved was. Not easy as Beethoven has had many women in his life.",120,0,Immortal Beloved,en +4476,Legends of the Fall,1994-12-16,133.0,,,tt0110322,After the Fall from Innocence the Legend begins.,"An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.",30000000,160638883,Legends of the Fall,en +11011,Ri¢hie Ri¢h,1994-12-19,95.0,,167985,tt0110989,An adventure so big... even the world's richest kid can't afford to miss it!,"Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.",40000000,0,Ri¢hie Ri¢h,en +9905,Shallow Grave,1994-12-22,92.0,,,tt0111149,The award winning thriller that'll bury you with laughs.,Three friends discover their new flatmate dead but loaded with cash.,0,0,Shallow Grave,en +11593,Nobody's Fool,1994-12-23,110.0,,,tt0110684,In a town where nothing ever happens... everything is about to happen to Sully.,"Sully is a rascally ne'er-do-well approaching retirement age. While he is pressing a worker's compensation suit for a bad knee, he secretly works for his nemesis, Carl, and flirts with Carl's young wife Toby. Sully's long- forgotten son and family have moved back to town, so Sully faces unfamiliar family responsibilities. Meanwhile, Sully's landlady's banker son plots to push through a new development and evict Sully from his mother's life.",0,0,Nobody's Fool,en +10714,The Jungle Book,1994-12-23,111.0,,,tt0110213,,"Raised by wild animals since childhood, Mowgli is drawn away from the jungle by the beautiful Kitty. But Mowgli must eventually face corrupt Capt. Boone, who wants both Kitty's hand and the treasures of Monkey City – a place only Mowgli can find.",0,0,The Jungle Book,en +11777,I.Q.,1994-12-24,100.0,,,tt0110099,Think Love.,Albert Einstein helps a young man who's in love with Einstein's niece to catch her attention by pretending temporarily to be a great physicist.,25000000,0,I.Q.,en +156896,Fit,1994-12-26,8.0,,,tt1649328,,A surreal account of Lizzie as she struggles to make life fit.,0,0,Fit,en +55563,Tammy and the T-Rex,1994-12-28,82.0,,,tt0111361,He's the coolest pet in town!,"An evil scientist implants the brain of Michael, a murdered high school student, in an animatronic Tyrannosaurus. He escapes, wreaks vengeance on his high school tormentors and is reunited with his sweetheart Tammy. Together, the couple try to elude the mad scientist and the police and find a more appropriate vessel for Michael's brain.",0,0,Tammy and the T-Rex,en +30492,Animal Room,1995-01-01,98.0,,,tt0122946,,No overview found.,0,0,Animal Room,en +63924,Jungleground,1995-01-01,0.0,,,tt0110215,,"Roddy Piper portrays a police Lt. working undercover in the so-called Jungleground. His sting operation goes bad and as a result he is caught. Young Odin, his captor and would be drug lord decide to play a game with Roddy. Roddy is given until morning to make it out of the Jungleground alive. Odin and his men however are hunting Roddy; and Odin also has a little insurance, he's kidnapped Roddy's soon to be fiance.",0,0,Jungleground,en +293412,Running Wild,1995-01-01,0.0,,,,,Jennifer Barker plays a troubled woman who has an affair with her fiance's son.,0,0,Running Wild,en +49974,God's Comedy,1995-01-01,170.0,,,tt0112710,,An ice-cream seller lusts after the female employees in his shop.,0,0,A Comédia de Deus,pt +26358,Phoenix,1995-01-01,90.0,,,tt0114125,,"When a mining colony is taken over by genetically altered androids, an elite attack team is sent in to take down the android leader.",0,0,Phoenix,fr +40252,Witchboard III: The Possession,1995-01-01,93.0,,168186,tt0114957,,"Brian, an out-of-work stockbroker, is introduced by his landlord Mr. Redman to a new source of insider information: the Ouija! The Ouija makes him rich, but when Mr. Redman kills himself and Brian suffers a freak accident, Brian's wife starts noticing changes in her husband...",0,0,Witchboard III: The Possession,fr +29801,Fists of Iron,1995-01-01,94.0,,384920,tt0113075,Survival is the ultimate weapon,"When Dale Hartwell's best friend gets killed, he swears revenge on the bloodthirsty promoter and fighter who did it.",0,0,Fists of Iron,en +152539,L'Allée du Roi,1995-01-01,240.0,,,tt0112326,,,0,0,L'Allée du Roi,fr +61813,Dream Man,1995-01-01,0.0,,,tt0112899,,"Kris is a homicide cop with psychic abilities. She works to prove that the prime suspect in her latest case (the much younger husband of the millionaire victim) is innocent. But are her visions true, or planned by someone who knows what she can see?",0,0,Dream Man,en +56264,Dillinger and Capone,1995-01-01,95.0,,,tt0112869,,"In 1934, J. Edgar Hoover and the boys made headlines for mowing down John Dillinger in a hail of bullets outside Chicago's Biograph theater. But in fact, according to this Jon Purdy gangster thriller, the Feds iced Dillinger's brother. Fast-forward five years, when mobster kingpin Al Capone (F. Murray Abraham) gives the real Dillinger (Martin Sheen) an offer he can't refuse: rob millions from a secluded vault or watch his wife and child get whacked.",0,0,Dillinger and Capone,en +54022,Search and Destroy,1995-01-01,90.0,,,tt0114371,A screwball tragedy,"A satire about desperate hustling, pop philosophy and big money.",4000000,389503,Search and Destroy,en +21570,Rangeela,1995-01-01,175.0,,,tt0114234,,"A poor young woman, who dreams of Bollywood fame, is caught in a love triangle between her childhood friend and a famous actor.",2800000,14000000,Rangeela,hi +43775,Guantanamera,1995-01-01,105.0,,,tt0109949,,,0,0,Guantanamera,es +9059,Tales from the Crypt: Demon Knight,1995-01-13,92.0,,115142,tt0114608,Ready for your deadtime story?,A man on the run is hunted by a demon known as the Collector.,0,0,Tales from the Crypt: Demon Knight,en +49074,Baasha,1995-01-15,145.0,,,tt0139876,,"Auto rickshaw driver Manickam avoids violence at all costs. When some thugs begin to intimidate Manickam's family, it triggers the revival of Manickam's old self.",0,15000000,Baasha,ta +9071,Living in Oblivion,1995-01-20,89.0,,,tt0113677,Nick is about to discover the first rule of filmmaking: if at first you don't succeed... PANIC!,Film about filmmaking. It takes place during one day on set of non-budget movie. Ultimate tribute to all independent filmmakers.,500000,1148752,Living in Oblivion,en +172868,Madagascar Skin,1995-01-26,96.0,,,tt0113730,,"This is the story of Harry and Flint, an unlikely couple. Harry is a shy young gay man who can't seem to fit into his local bar scene. Flint is a crusty, older, and seemingly straight man with a questionable background. They meet on a gorgeous coastline, and evolve from distrust to deep love.",0,0,Madagascar Skin,en +76,Before Sunrise,1995-01-27,105.0,,123800,tt0112471,Can the greatest romance of your life last only one night?,"A dialogue marathon of a film, this fairytale love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide.",2500000,5535405,Before Sunrise,en +33542,Rumble in the Bronx,1995-01-30,91.0,,,tt0113326,No Fear. No Stuntman. No Equal.,"Keong comes from Hong Kong to visit New York for his uncle's wedding. His uncle runs a market in the Bronx and Keong offers to help out while Uncle is on his honeymoon. During his stay in the Bronx, Keong befriends a neighbor kid and beats up some neighborhood thugs who cause problems at the market. One of those petty thugs in the local gang stumbles into a criminal situation way over his head.",7500000,32392047,紅番區,cn +37731,Jönssonligans största kupp,1995-02-03,99.0,,63170,tt0113510,,"When Vanheden and Dynamit-Harry tries to break doctor Busé out of jail, they get Herman Melvin instead...",0,0,Jönssonligans största kupp,sv +122368,The Boy Who Walked Backwards,1995-02-05,36.0,,,tt0109673,,"Nine-year old Andreas struggles to cope with the death of his beloved older brother, Mikkel, who is killed in a motorbike accident. Andreas' family moves shortly afterward to begin life anew, yet neither a new school nor the friends he makes can ease his enormous pain.",0,0,Drengen der gik baglæns,da +12106,The Quick and the Dead,1995-02-09,107.0,,,tt0114214,Think you are quick enough?,"A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.",32000000,18552460,The Quick and the Dead,en +11017,Billy Madison,1995-02-10,89.0,,,tt0112508,Billy is going back to school... Way back.,"Billy Madison is the 27 year-old son of Bryan Madison, a very rich man who has made his living in the hotel industry. Billy stands to inherit his father's empire but only if he can make it through all 12 grades, 2 weeks per grade, to prove that he has what it takes to run the family business.",10000000,26488734,Billy Madison,en +11862,Father of the Bride Part II,1995-02-10,106.0,,96871,tt0113041,Just When His World Is Back To Normal... He's In For The Surprise Of His Life!,"Just when George Banks has recovered from his daughter's wedding, he receives the news that she's pregnant ... and that George's wife, Nina, is expecting too. He was planning on selling their home, but that's a plan that -- like George -- will have to change with the arrival of both a grandchild and a kid of his own.",0,76578911,Father of the Bride Part II,en +80350,Tough and Deadly,1995-02-14,92.0,,,tt0114706,Experts with fists and guns and not afraid to use them.,A private eye helps an amnesiac CIA agent elude mobsters who don't want him to regain his memory of their drug operation.,0,0,Tough and Deadly,en +9066,The Brady Bunch Movie,1995-02-16,84.0,,224478,tt0112572,,"The original 70's TV family is now placed in the 1990's, where they're even more square and out of place than ever.",0,0,The Brady Bunch Movie,en +14819,Heavyweights,1995-02-17,100.0,,,tt0110006,They don't run the fastest. They don't jump the highest. But they sure are getting the last laugh. Heavyweights. They never met a hot dog they didn't like ... until now.,"Camp Hope is a summer retreat for overweight boys run by a kindly couple who make the campers feel comfortable with their extra pounds. But when tyrannical fitness guru Tony buys the camp, he puts the kids on a cruel regimen that goes too far. Sick of the endless weeks of ""all work and no play,"" the kids stage a coup and reclaim their summer of fun.",0,17689177,Heavyweights,en +171857,Federal Hill,1995-02-24,97.0,,,tt0109785,,"In Providence's Italian neighborhood, Federal Hill, five young are immersed in drugs, crime and violence. Everything changes when one of the guys in the band know love.",0,0,Federal Hill,en +161495,Roommates,1995-03-01,108.0,,,tt0114296,,,22000000,12400000,Roommates,sv +18725,The Enforcer,1995-03-02,104.0,,,tt0113153,,"An undercover cop struggling to provide for his son and ailing wife, must infiltrate a ruthless gang. But things turn sour when another cop blows his cover and he quickly finds himself battling for his life and the lives of his family.",0,0,给爸爸的信,en +40490,Man of the House,1995-03-03,96.0,,,tt0113755,Jack wants to marry Ben's mother. But there are strings attached.,"Ben Archer is not happy. His mother, Sandy, has just met a man, and it looks like things are pretty serious. Driven by a fear of abandonment, Ben tries anything and everything to ruin the ""love bubble"" which surrounds his mom. However, after Ben and Jack's experiences in the Indian Guides, the two become much closer.",0,0,Man of the House,en +39107,Dragon Ball Z: Fusion Reborn,1995-03-04,55.0,,425164,tt0142236,,"Not paying attention to his job, a young demon allows the evil cleansing machine to overflow and explode, turning the young demon into the infamous monster Janemba. Goku and Vegita make solo attempts to defeat the monster, but realize their only option is fusion.",0,0,Doragon Bōru Zetto: Fukkatsu no Fyūjon!! Gokū to Bejīta,ja +277388,The Good Old Boys,1995-03-05,130.0,,,tt0113196,,An aging cowboy must choose between his desire to remain free and the responsibilities of maintaining a family.,0,0,The Good Old Boys,es +104931,JLG/JLG: Self-Portrait in December,1995-03-08,62.0,,,tt0110173,,"Director Jean-Luc Godard reflects in this movie about his place in film history, the interaction of film industry and film as art, as well as the act of creating art.",0,0,JLG/JLG - autoportrait de décembre,fr +162877,Venus In Furs,1995-03-15,70.0,,,tt0111602,,Female mistress and male slave caught in a circle of tension.,0,0,Venus In Furs,nl +139826,In Pursuit of Honor,1995-03-18,111.0,,,tt0113399,As soldiers they were taught to fight for honor. As men they were willing to die for it.,"To save a group of horses slated to be destroyed by the US Cavalry, a group of officers rebel and begin a journey towards Canada to save themselves and the mounts.",0,0,In Pursuit of Honor,en +77056,Rendezvous in Paris,1995-03-22,94.0,,,tt0114266,,Three stories of love and coincidence around the theme of dates in Paris.,0,0,Les Rendez-vous de Paris,fr +11008,Major Payne,1995-03-24,95.0,,,tt0110443,He's looking for a few good men... or a few guys old enough to shave.,"Major Benson Winifred Payne is being discharged from the Marines. Payne is a killin' machine, but the wars of the world are no longer fought on the battlefield. A career Marine, he has no idea what to do as a civilian, so his commander finds him a job - commanding officer of a local school's JROTC program, a bunch of ragtag losers with no hope.",0,0,Major Payne,en +47002,Love Letter,1995-03-25,117.0,,,tt0113703,,When exchanging letters two women discover new things about a deceased man they used to know.,0,0,Love Letter,ja +243473,Mary of Nazareth,1995-03-29,0.0,,,tt0151494,,,0,0,Marie de Nazareth,fr +11381,Tommy Boy,1995-03-31,97.0,,,tt0114694,"If at first you don't succeed, lower your standards.","Party animal Tommy Callahan is a few cans short of a six-pack. But when the family business starts tanking, it's up to Tommy and number-cruncher Richard Hayden to save the day.",0,32648673,Tommy Boy,en +75001,Mollo tutto,1995-03-31,0.0,,,tt0113841,,,0,0,Mollo tutto,it +130272,"Mother Dao, the Turtlelike",1995-04-06,90.0,,,tt0113840,,"In a span of ninety minutes the film aims to show how the Netherlands administered its colony as a colonial enterprise and what the relations were like at the time. The usual commentary has been omitted and in its place poems and songs in Bahasa Indonesia have been included in a digital sound composition. In Mother Dao the Turtlelike, the viewer sees how the colonial machinery in the 1920s was implanted in a world so different from Western Europe.",0,0,"Moeder Dao, de schildpadgelijkende",nl +183964,Facciamo paradiso,1995-04-07,0.0,,,tt0113007,,,0,0,Facciamo paradiso,it +324083,Life Lesson,1995-04-11,0.0,,,tt0257862,,No Overview,0,0,Leçon de vie,fr +11902,Underground,1995-04-11,170.0,,,tt0114787,,"Black marketeers Marko (Miki Manojlovic) and Blacky (Lazar Ristovski) manufacture and sell weapons to the Communist resistance in WWII Belgrade, living the good life along the way. Marko's surreal duplicity propels him up the ranks of the Communist Party, and he eventually abandons Blacky and steals his girlfriend. After a lengthy stay in a below-ground shelter, the couple reemerges during the Yugoslavian Civil War of the 1990s as Marko realizes that the situation is ripe for exploitation.",14000000,0,Podzemlje,sr +75137,Sharpe's Battle,1995-04-19,100.0,,69788,tt0114416,,"When Sharpe is ordered to whip the King of Spain's Irish Royal Brigade into shape, he faces dissent from the men who believe the British are slaughtering their relatives in Ireland and a spy from within.",0,0,Sharpe's Battle,en +39310,New Jersey Drive,1995-04-19,98.0,,,tt0113967,The Only Thing That Matters Is The Ride,"New Jersey Drive is a 1995 film about black youths in Newark, New Jersey, the unofficial ""car theft capital of the world"". Their favorite pastime is that of everybody in their neighborhood: stealing cars and joyriding. The trouble starts when they steal a police car and the cops launch a violent offensive that involves beating and even shooting suspects.",0,0,New Jersey Drive,en +42764,Jonathan of the Bears,1995-04-21,115.0,,,tt0110207,,"A young boy witnesses his parents' murder. Later, as he grows up, he befriends a bear in the wilderness and the chief of a local Indian tribe, and he stays with the Indians, but makes an enemy of the chief's son. As he enters adulthood he sets out to find the men responsible for his parents' deaths",0,0,Jonathan degli orsi,it +42706,Frank & Jesse,1995-04-22,105.0,,,tt0109835,The civil war made them outlaws. The people made them heroes,"At the end of the Civil War, Frank and Jesse James and other former guerillas who rode with Quantrill and Bill Anderson take the oath of allegiance to the Union. Feeling oppressed by Chicago railroad investors, the James and Younger brothers, Bob and Charlie Ford, Clell Miller and Arch Clements take to robbing banks, trains and coaches, with Pinkerton sworn to bringing them to justice.",0,0,Frank & Jesse,en +229594,A Dangerous Place,1995-04-25,97.0,,,tt0107696,High school can be a Dangerous Place ... and a deadly experience.,"When Ethan's older brother Greg is found dead, the police rule the case a suicide, but Ethan suspects foul play stemming from Greg's recent involvement with a martial arts team called the Scorpions. Ethan is also accomplished at martial arts, and he determines to join the Scorpions as a means of learning what really happened to Greg. - Written by Michelle Sturges",0,0,A Dangerous Place,en +75138,Sharpe's Sword,1995-04-26,101.0,,69788,tt0114418,,"Sharpe is tasked to protect the most important spy in Lord Wellington's network, but domestic issues, a traumatized young girl, and possible French spies all threaten his success",0,0,Sharpe's Sword,en +62488,Destiny Turns on the Radio,1995-04-28,0.0,,,tt0112854,Fate visits in ways you never expect,"Johnny Destiny burns into Las Vegas in his hot Plymouth RoadRunner, stopping only to pick up a stranger stranded in the desert. But then, things aren't always as they seem. Anything can happen in that town of many possibilities...especially since there's been some weird electrical disturbances. As the stranger, fresh out of prison, tries to put his life back together--to recover his money from an old bank heist and the girl he lost in doing the job--something keeps interfering with his plans. Is it fate...or just Destiny?",0,0,Destiny Turns on the Radio,it +12122,Village of the Damned,1995-04-28,99.0,http://www.theofficialjohncarpenter.com/village-of-the-damned/,,tt0114852,Beware the Children,"An American village is visited by some unknown life form which leaves the women of the village pregnant. Nine months later, the babies are born, and they all look normal, but it doesn't take the ""parents"" long to realize that the kids are not human or humane.",0,0,Village of the Damned,en +66247,Muthu,1995-05-05,180.0,,,tt0140399,,"Muthu starring by rajinikanth and meena. A lavish Maharaja (Rajinikanth) lived with his sister-in-law and stepbrother Rajasekhar (Raghuvaran), helping people incessantly. His sister-in-law has a son, to whom the Maharaja bequeaths a major portion of his property. At this juncture, a new baby is born to the Maharaja.His wife dies soon after. Brother Rajasekhar cheats the Maharaja as he fears that his son's property might be taken back and given to the Maharaja's own son. When the cheating comes to light, the Maharaja hands over all his property and his baby to his sister-in-law...",0,0,Muthu,ta +8391,When Night Is Falling,1995-05-05,96.0,,,tt0114916,,"A prudish woman, working on tenure as a literacy professor at a large urban university, finds herself strangely attracted to a free-spirited, liberal woman whom works at a local carnival which comes to town.",0,0,When Night Is Falling,en +84060,Cruel Jaws,1995-05-05,93.0,,,tt0112747,,A tiger shark bred by the Navy as a killing machine is wrecking havoc in the sleepy tourist town of Hampton Bay.,0,0,Cruel Jaws,en +196257,Freaky Friday,1995-05-06,86.0,,,tt0113112,Be Careful... What You Wish For,TV remake of 1976 movie Freaky Friday.,0,0,Freaky Friday,en +44470,Ice Cream Man,1995-05-09,84.0,,,tt0113376,"I scream, you scream, we all scream for the...","Poor Gregory, after being released from the Wishing Well Sanatorium, all he wants to do is make the children happy. So Gregory reopens the old ice cream factory, and all the unappreciative brats are reprocessed into the flavor of the day.",2000000,0,Ice Cream Man,en +172259,Midnight Man,1995-05-09,93.0,,,tt0110508,,"When the police start a crackdown on Yakuza activities, a killer (James Lew) starts killing the cops forcing a martial-arts officer (Lorenzo Lamas) to fight back. AKA Midnight Man",0,0,Midnight Man,en +19101,A Little Princess,1995-05-10,97.0,,,tt0113670,Every girl everywhere is a princess.,"When her father enlists to fight for the British in WWI, young Sara Crewe goes to New York to attend the same boarding school her late mother attended. She soon clashes with the severe headmistress, Miss Minchin, who attempts to stifle Sara's creativity and sense of self- worth.",17000000,0,A Little Princess,en +47867,Gordy,1995-05-12,90.0,,,tt0113199,The talking pig who made it big!,A talking pig named Gordy becomes involved in a quest to save his family from the slaughterhouse.,0,3992809,Gordy,en +28732,Fall Time,1995-05-13,88.0,,,tt0113014,"Wrong People, Wrong Place, Wrong Time.","Three young men decide to plan a mock kidnapping, but everything goes wrong because a real bank robbery was already planned by two other guys.",0,0,Fall Time,en +577,To Die For,1995-05-20,106.0,,,tt0114681,All she wanted was a little attention.,"Susan wants to work in television and will therefore do anything it takes, even if it means killing her husband. A very dark comedy from independent director Gus Van Sant with a brilliant Nicole Kidman in the leading role.",20000000,21284514,To Die For,en +41574,Mosquito,1995-05-20,92.0,,,tt0113858,,"An alien starship crashes in a swamp in a U.S. National Park. Some mosquitos begin to feed from the alien's corpses, causing them to grow to the size of a vulture. These mutant insects became very agressive, killing every human being they find. Will the few survivors fight successfully against this nightmare...?",0,0,Mosquito,en +11446,Welcome to the Dollhouse,1995-05-24,88.0,,,tt0114906,Not all girls want to play with dolls.,An unattractive 7th grader struggles to cope with suburban life as the middle child with un-attentive parents and bullies at school.,0,0,Welcome to the Dollhouse,en +197,Braveheart,1995-05-24,177.0,,,tt0112573,Every man dies. Not every man truly lives.,"Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.",72000000,210000000,Braveheart,en +102461,A Single Girl,1995-05-29,90.0,,,tt0113057,,"A young Parisian must make major decisions about pregnancy, a job and her boyfriend.",0,0,La fille seule,fr +18392,Embrace of the Vampire,1995-05-30,92.0,,,tt0109723,Between innocence and evil lies the seduction.,An 18-year-old college freshman is seduced by a handsome vampire lover who introduces her to a dark world of carnal desires.,500000,0,Embrace of the Vampire,en +370264,Provocateur,1995-05-31,88.0,,,tt0114198,,,0,0,Prowokator,pl +2021,Jack & Sarah,1995-06-02,110.0,,,tt0113448,"She's not proper, she's not fitting, she's not British, but to Jack she's a breath of fresh air.","Jack always lands on his feet. He lands on his feet when he marries the beautiful Sarah. He lands on his feet when he buys a luxurious new home. However, when Sarah goes into labour, he takes a tumble down the stairs and lands on his head. When he comes around he discovers he is the proud father of a baby girl, but deficient in the spouse department to the tune of 1.",0,218626,Jack & Sarah,en +162442,See Heaven,1995-06-06,10.0,,,tt1253594,,Short doc by Naomi Kawase.,0,0,"Ten, mitake",ja +97707,Gesualdo: Death for Five Voices,1995-06-06,60.0,,,tt0114684,,"Works, legend and murders of Carlo Gesualdo, a notorious Italian composer and murderer from 16th century.",0,0,Tod für fünf Stimmen,de +254575,Memory Run,1995-06-16,89.0,,,tt0117017,Beyond Life... Beyond Death... Beyond Redemption,"The year is 2015, and big brother is everywhere. The search for immortality is over. Science has finally achieved the impossible, undermining the most basic aspect of life: that Mind, Body, and Soul must be one, Those who benefit from this new technology will wake up to a new and youthful beginning - the rest of humankind must live a bad dream and wake up to a living nightmare that goes beyond life, beyond death, and beyond redemption.",0,0,Memory Run,en +39129,Slam Dunk Ernest,1995-06-20,93.0,,330555,tt0114469,,Ernest P. Worrell becomes a basketball star after an angel bearing an uncanny resemblance to Kareem Abdul-Jabbar gives him a pair of magic sneakers.,0,0,Slam Dunk Ernest,en +146926,Heatseeker,1995-06-27,91.0,,,tt0113278,Meet the Ultimate Warrior in Cyber-Technology,A kickboxing champion is forced to fight cyborgs in a tournament when the company kidnaps his fiancee.,0,0,Heatseeker,fr +11084,Flodder 3,1995-06-29,90.0,,74083,tt0113081,,"Back from their trip abroad, the family must meet the people of the neighborhood while preparing for the 25th anniversary of Zonnedael. Ma falls in love with a bum that is not exactly what he seems to be.",0,0,Flodder 3,nl +56804,Viaggi di nozze,1995-12-15,103.0,,,tt0114844,,Le vicessitudini di tre coppie di novelli sposi dalla celebrazione dei matrimoni sino ai rispettivi viaggi di nozze.,0,0,Viaggi di nozze,en +9070,Mighty Morphin Power Rangers: The Movie,1995-06-30,92.0,http://www.powerrangers.com/,286162,tt0113820,The Power Is On!,"Power up with six incredible teens who out-maneuver and defeat evil everywhere as the Mighty Morphin Power Ranger, But this time the Power Rangers may have met their match, when they face off with the most sinister monster the galaxy has ever seen.",15000000,66000000,Mighty Morphin Power Rangers: The Movie,en +19286,Leprechaun 3,1995-07-04,90.0,,19285,tt0113636,Welcome to Vegas... the odds are you won't leave alive!,"It was a normal night in Las Vegas, Nevada, all the lights were flashing brightly, until a man with one hand, one eye, and one leg walks into a pawn shop with a statue of a hideous looking Leprechaun. The owner claims it's a good luck charm. The statue also wore a medallion around it's neck. The careless pawn shop owner took off the medallion setting the Leprechaun free...",0,0,Leprechaun 3,en +45452,Out of the Dark,1995-07-06,86.0,,,tt0113356,,"Stephen Chow plays an ""insane"" person who is not afraid of anything. He also appears to be parodying Leon (the professional). Carrying his trusty plant and bag of cling wrap and chocolates he helps a young girl to rid her building of a couple mean ghosts.",0,0,回魂夜,cn +18998,Darkman II: The Return of Durant,1995-07-11,93.0,,45154,tt0109552,,"Darkman and Durant return and they hate each other as much as ever. This time, Durant has plans to take over the city's drug trade using high-tech weaponry. Darkman must step in and try to stop Durant once and for all.",0,0,Darkman II: The Return of Durant,en +11472,Nine Months,1995-07-12,103.0,,,tt0113986,Ready or Not.,"When he finds out his longtime girlfriend is pregnant, a commitment-phobe realizes he might have to change his lifestyle for better or much, much worse.",0,69660733,Nine Months,en +18665,High Risk,1995-07-12,101.0,,,tt0114437,He Redefines Revenge.,"After failing to save his wife from 'The Doctor', Kit Li is working as a bodyguard and secret stunt double for the cowardly martial arts film star Frankie Lane. Frankie attends an exhibition of the crown jewels of Russia at a Hong Kong hotel, and when the Doctor's gang take over the building in attempt to steal them, Kit is the only thing standing in their way. Will Frankie regain his courage? Will romance blossom between Kit and the nosy reporter? Who has the best Kung-Fu?",0,0,鼠膽龍威,cn +9598,Babe,1995-07-18,89.0,,9435,tt0112431,A little pig goes a long way.,"Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mom, Babe realizes that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs Babe learns that a pig can be anything that he wants to be.",30000000,254134910,Babe,en +22279,An Awfully Big Adventure,1995-07-21,113.0,,,tt0112427,,"An Awfully Big Adventure is a 1995 drama film about a theatre company in Liverpool, set in 1947 and based on the 1989 novel of the same name by Beryl Bainbridge.",4000000,851545,An Awfully Big Adventure,en +65280,Body Language,1995-07-22,120.0,,,tt0112549,When desire and obsession are beyond words.,"A lawyer, defending a Mafia boss, falls for a beautiful woman with a sad story to tell. She says she's being abused by her brutal husband and she needs his help.",0,0,Body Language,en +124639,Target,1995-08-01,122.0,,,tt0114618,,A subtle yet violent commentary on feudal lords.,0,0,Target,en +83195,Tropical Fish,1995-08-01,107.0,,,tt0117970,,"Young boy, Ah-Jiang, a school failure and day dreamer witnesses the kidnapping of a child. After being taken hostage by a corrupt family, he begins an unusual adventure away from home.",0,0,Re dai yu,zh +37108,A Kid in King Arthur's Court,1995-08-11,89.0,,,tt0113538,Joust Do It.,"A Southern California kid named Calvin Fuller is magically transported to the medieval kingdom of Camelot through a crack in the ground caused by an earthquake. Once there, he learns he was summoned by the wizard Merlin, who needs Calvin to save Camelot. Using dazzling modern inventions, can Calvin help King Arthur retain his crown and thwart the evil Lord Belasco?",0,0,A Kid in King Arthur's Court,en +48287,The Baby-Sitters Club,1995-08-18,94.0,,,tt0112435,Friends Forever,"It's the story about seven very different best friends, and one summer that will bring them together like never before.",0,0,The Baby-Sitters Club,en +9312,Mortal Kombat,1995-08-18,101.0,,9818,tt0113855,Nothing In This World Has Prepared You For This.,"For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.",18000000,122195920,Mortal Kombat,en +128396,The Diary of Anne Frank,1995-08-19,102.0,,,tt0112862,,"This is the true story of Anne Frank, a Jewish girl living in Amsterdam during WW2. Anne's father realizes on time the danger the Jews face and hides his family (his wife Edith and his two daughters Margo (16) and Anne (13), along with four more people, in ""the house behind"". For two years the 8 people live in darkness and whispers, in fear of being discovered and sent to the German crematories. During that time young Anne writes a diary, describing her daily life in the cellar, her complicated relationship with her mother and the story of her first love - Peter, the young boy in the hiding place. Anne writes down her wishes to run out free and breath the air and flowers, her dreams to be free at last. But humanity is often a cruel mistress...",0,0,アンネの日記,ja +39428,The Neon Bible,1995-08-23,91.0,,,tt0113952,,"While on a train, a teenage boy thinks about his life and the flamboyant aunt whose friendship acted as an emotional shield from his troubled family. This film evokes the haunting quality of memory while creating a heartfelt portrait of a boy's life in a rural 1940s Southern town.",0,0,The Neon Bible,en +57438,Kristin Lavransdatter,1995-08-25,0.0,,,tt0113576,,"Kristin Lavransdatter is a 1995 Norwegian film directed by Liv Ullman, featuring Elisabeth Matheson, Bjørn Skagestad, Jørgen Langhelle, Lena Endre and Sverre Anker Ousdal, based on Kristin Lavransdatter by Sigrid Undset. It was the Norwegian entry to the Academy Award for Best Foreign Language Film in 1996.",0,0,Kristin Lavransdatter,no +9076,Nur über meine Leiche,1995-08-31,104.0,,,tt0114019,,No overview found.,0,0,Nur über meine Leiche,de +11980,The Prophecy,1995-09-01,98.0,,9068,tt0114194,"On ancient ground, at the edge of the world, an evil born in heaven is about to be unleashed on earth.","The angel Gabriel comes to Earth to collect a soul which will end the stalemated war in Heaven, and only a former priest and a little girl can stop him.",8,16,The Prophecy,en +45671,Rough Magic,1995-09-07,100.0,,,tt0114303,"In the world of magic, the hand is quicker than the eye and love is the wild card.","A sleazy politician sends an agent (Russell Crowe) after his ex-fiancee (Bridget Fonda), who fled to Mexico with incriminating film of him.",0,0,Rough Magic,en +9102,Screamers,1995-09-08,108.0,,122017,tt0114367,The last scream you hear will be your own.,"(SIRIUS 6B, Year 2078) On a distant mining planet ravaged by a decade of war, scientists have created the perfect weapon: a blade-wielding, self-replicating race of killing devices known as Screamers designed for one purpose only -- to hunt down and destroy all enemy life forms.",20000000,5781885,Screamers,en +166901,Rude,1995-09-08,89.0,,,tt0114305,Action speaks louder than words.,"This is the Easter weekend. In an inner city project, three people struggle against their demons and try to find redemption. They are Maxine, a window dresser depressed since she had an abortion and lost her lover ; Jordan, a boxer who has indulged in gay-bashing ; and 'The General', a drug dealer turned artist.",0,0,Rude,en +890,Brother of Sleep,1995-09-08,127.0,,,tt0114354,,"Schlafes Bruder tells the story a few exceptionally talented individuals who grew up in a remote mountain town in the Alps. The film, based on an internationally successful novel by Robert Schneider of the same name, depicts the slow withering of their unique skills.",0,0,Schlafes Bruder,de +27993,Senior Trip,1995-09-08,91.0,,,tt0113936,Stupid tricks. Outrageous chaos. Total destruction. They're taking it on the road.,"While on detention, a group of misfits and slackers have to write a letter to the President explaining what is wrong with the education system. There is only one problem, the President loves it! Hence, the group must travel to Washington to meet the Main Man.",0,0,Senior Trip,en +2892,Angel Baby,1995-09-09,105.0,,,tt0112362,An extraordinary story of love's transcendent power.,Two schizophrenics meet during therapy and fall in love. Unfortunately they are on a road to nowhere...,0,0,Angel Baby,en +124633,Someone Else's America,1995-09-09,96.0,,,tt0114494,"Two friends, two worlds, one dream.","This tale takes place in a bar. The Spanish Alonso and his blind mother run this place. Bay, who is Alonso's friend live here too. This story tells something about Alonso and Bay and the ""American Dream"".",0,0,Tuđa Amerika,sr +146341,Bird of Prey,1995-09-12,105.0,,,tt0115684,,,0,0,Bird of Prey,es +124625,My Mother's Courage,1995-09-12,93.0,,,tt0117117,,"The deportation of 4000 Jews from Budapest to Auschwitz in July 1944, as told by George Tabori, and how the narrator's mother escaped it, owing to coincidence, courage and some help from where you'd least expect it.",0,0,My Mother's Courage,de +222858,A Bucket of Blood,1995-09-12,83.0,,,tt0112594,Murder is his masterpiece.,"Walter Paisley, a busboy at a cappuccino bar called the Jabberjaw, is praised as a genius after he kills his landlady's cat and covers it in plaster. Pressured to produce more work, he goes after bigger subjects.",0,0,A Bucket of Blood,en +61548,The Journey of August King,1995-09-14,91.0,,,tt0113490,,"The Journey of August King is a multi-dimensional drama about a North Carolina farmer in 1815. August King, a widower, is on his way home as he does every year after selling his produce and purchasing the stock and goods he will need to survive the winter. On his journey, he comes upon a run-away slave, a young woman about 19 and August King must decide to violate the law and help this slave to freedom or else leave her to be hunted down and, ultimately, returned to her slave owner.",0,0,The Journey of August King,en +46986,Flirt,1995-09-14,85.0,,,tt0113080,,"The same situation is played out in different cities (New York, Berlin and Japan). A lover has to choose whether to commit to a partner who is returning home. In each case there are other people involved, an ex-partner and someone else in a ""permanent"" relationship, what do they choose to do?",0,0,Flirt,en +341491,Tears of Stone,1995-09-15,110.0,,,tt0117868,,Iceland's submission for the Academy Award for Best Foreign Language Film in 1995,0,0,Tár úr steini,is +52856,Unstrung Heroes,1995-09-15,93.0,,,tt0114798,Sometimes you find your heroes in the most unlikely places,"Steven Lidz, unhappy with his home life since his mother got sick, goes and lives with his two crazy Uncles. There he changes and gets closer to his Uncles, but his parents want him home even though he is finally happy and popular. Written by Todd Weiser",0,0,Unstrung Heroes,en +25969,Angus,1995-09-15,90.0,,,tt0112368,For everyone on the outside looking in... your moment has arrived!,"Angus is a large, pathetic 14 year old whose thoughts are most often filled with the image of one Melissa Lefevre. Angus is shy and thinks that he has no chance of ever 'getting' her. Being especially uncool, he is incredibly surprised (along with the rest of the school) that he is chosen to dance with her at the Winter Ball. The only one not surprised is the cool-kid who set him up to fail, but Angus' best friend is going to help him win the heart of Melissa by developing a new look for him",0,0,Angus,en +11876,The Horseman on the Roof,1995-09-20,135.0,,,tt0113362,,"In a time of war and disease, a young officer gallantly tries to help a young woman find her husband.",35000000,15000000,Le Hussard sur le toit,en +35292,Funny Bones,1995-09-20,128.0,,,tt0113133,,"Tommy Fawkes wants to be a successful comedian but his Las Vegas debut is a failure. He goes back to Blackpool, UK, where his father, also a comedian started and where he spent the summers of his childhood. He starts to search for a partner, a comic relief, with whom he can be famous.",0,0,Funny Bones,en +4307,The Flower of My Secret,1995-09-22,107.0,,,tt0113083,Every woman has a secret...,"Marisa Paredes is Leocadia (""Leo"") Macias, a woman writing “pink” romance novels under the alias of Amanda Gris that are very popular all across Spain. Unlike her romantic novels, her own love life is troubled. Leo has a less than happy relationship with her husband Paco, a military officer stationed in Brussels then later in Bosnia, who is distant both physically and emotionally.",0,0,La flor de mi secreto,es +13531,Empire Records,1995-09-22,90.0,,,tt0112950,They're selling music but not selling out.,The employees of an independent music store learn about each other as they try anything to stop the store being absorbed by a large chain.,0,0,Empire Records,en +63105,Nemesis 2 - Nebula,1995-09-26,83.0,,286948,tt0113948,The Future Just Got Darker,"It has been 73 years since Alex failed and the Humans lost the Cyborg Wars. Since then, the Humans have been enslaved. Scientists have developed a new DNA strain, which could signal the end of the Cyborgs, and they inject it into a volunteer. When the Cyborgs learn of the woman and the baby they list both for termination.",0,0,Nemesis 2 - Nebula,en +17015,Persuasion,1995-09-27,104.0,,,tt0114117,,"This film adaptation of Jane Austen's last novel follows Anne Elliot, the daughter of a financially troubled aristocratic family, who is persuaded to break her engagement to Frederick Wentworth, a young sea captain of meager means. Years later, money troubles force Anne's father to rent out the family estate to Admiral Croft, and Anne is again thrown into company with Frederick -- who is now rich, successful and perhaps still in love with Anne.",0,0,Persuasion,en +21032,Balto,1995-12-22,78.0,,117693,tt0112453,Part Dog. Part Wolf. All Hero.,"An outcast half-wolf risks his life to prevent a deadly epidemic from ravaging Nome, Alaska.",0,11348324,Balto,en +48787,Mute Witness,1995-09-28,95.0,,,tt0110604,She Can't Speak. She Can't Scream. She Can't Beg For Mercy.,"Billy is mute, but it hasn't kept her from becoming a successful makeup artist. While in Russia, working on a film directed by her sister's boyfriend, Andy, Billy finds herself trapped in the studio one night and is horrified to see a snuff film being made. Billy escapes and, with the help of her sister, Kate, alerts authorities about what she saw. Unfortunately, in doing so, she makes an enemy of the Russian mafia, who funded the snuff film.",2,1,Mute Witness,en +38789,I Manegen med Glenn Killing: Live från Berns,1995-09-30,220.0,,,tt0373915,,Glenn Killing with guests. One of the most successful and popular stageshows in Sweden.,0,0,I Manegen med Glenn Killing: Live från Berns,sv +4285,After Five In The Forest Primeval,1995-09-30,99.0,,,tt0117143,,"Anna, 17 years old, is happy to throw her first big birthday party without her parents, but some of her guests are so stoned that they leave a big chaos and, even worse, destroy the favorite record of Anna's father. After the return of her shocked and angry parents, Anna runs away to Munich with her admirer Simon. They discover the nightlife jungle and get to know some typical urban guys. Meanwhile, Anna's parents get in touch with Simon's and try to find their children. On the way across Munich, they remember their own wild and restless youth…",0,0,Nach Fünf im Urwald,de +106828,Evidence,1995-10-02,8.0,,,tt0112990,,A haunting look at children watching television.,0,0,Evidence,en +92769,Relative Fear,1995-10-03,90.0,,,tt0110965,Trusting your children can be deadly.,"Linda and Peter Pratman's son Adam is autistic, but they still love him and hope that he'll at least start talking some day. However he's teased and abused by the kids of the neighborhood and his grandpa . When several people around Adam die an unexpected death, his parents start to suspect Adam - is he just simulating to be so ignorant about his environment?",0,0,Relative Fear,en +28387,Kicking and Screaming,1995-10-06,96.0,,,tt0113537,Anxiety loves company.,"After college graduation, Grover's girlfriend Jane tells him she's moving to Prague to study writing. Grover declines to accompany her, deciding instead to move in with several friends, all of whom can't quite work up the inertia to escape their university's pull. Nobody wants to make any big decisions that would radically alter his life, yet none of them wants to end up like Chet, the professional student who tends bar and is in his tenth year of university studies.",0,718490,Kicking and Screaming,en +215999,Prime Suspect: The Lost Child,1995-10-08,101.0,,,tt0114182,,"Supt. Tennison orchestrates a search for an abducted baby, but events take a turn for the worst when personal emotions cause complications.",0,0,Prime Suspect: The Lost Child,en +49954,Orson Welles: The One-Man Band,1995-10-08,88.0,,,tt0117262,,Orson Welles' archives of unfinished/never released movies and the last years of his life from the perspective of Oja Kodar (life and artistic partner of Orson Welles in his last years).,0,0,Orson Welles: The One-Man Band,en +2293,Mallrats,1995-10-20,94.0,,,tt0113749,They're not there to shop. They're not there to work. They're just there.,"Both dumped by their girlfriends, two best friends seek refuge in the local mall.",6000000,2122561,Mallrats,en +85564,Nature of the Beast,1995-10-23,91.0,,,tt0113939,All men are created evil.,"Two men, both hiding a deadly secret, are on a murderous rampage through the desert.",0,0,Nature of the Beast,en +278939,Girl in the Cadillac,1995-10-24,89.0,,,tt0113173,On our first date... we robbed a bank,"A runaway teenage girl and a drifter rob a bank, hit the road to elude the Texas Rangers and find love on the run.",0,0,Girl in the Cadillac,en +12158,Vampire in Brooklyn,1995-10-26,100.0,,,tt0114825,A comic tale of horror and seduction.,"Maximillian, the lone survivor of a race of vampires, comes to Brooklyn in search of a way to live past the next full moon. His ticket to survival is Rita, a NYPD detective who doesn't know she's half vampire -- and Maximillian will do whatever's necessary to put her under his spell.",14000000,19800000,Vampire in Brooklyn,en +11677,Stadtgespräch,1995-10-26,93.0,,,tt0114523,,No overview found.,0,0,Stadtgespräch,de +18801,Haunted,1995-10-27,108.0,,,tt0113269,A Supernatural Tale of Love and Mystery,"Professor David Ash exposes false spiritulists and mediums. He is invited to Edbrook to resolve the fears and torments within its secretive family. Soon after arriving Ash begins to doubt his own senses, and watching the strange behaviour of its residents does not make his task any easier. In time, he finds there's more to Edbrook than even he can debunk.",0,0,Haunted,en +47119,Le Garçu,1995-10-31,102.0,,,tt0113145,,A self-centered man (Gérard Depardieu) with many diversions occasionally visits his 4-year-old son (Antoine Pialat) and the boy's mother (Géraldine Pailhas).,0,0,Le garçu,fr +11859,Fair Game,1995-11-03,91.0,,,tt0113010,He's a cop on the edge. She's a woman with a dangerous secret. And now they're both...,"Max Kirkpatrick is a cop who protects Kate McQuean, a civil law attorney, from a renegade KGB team out to terminate her",50000000,11534477,Fair Game,en +142150,Kidnapped,1995-11-05,155.0,,,tt0113539,,"When Scottish young gentleman David Balfour's father dies, he leaves school to collect his inheritance from uncle Ebenezer, who in turn sells the boy as a future slave to a pirate ship. When staunch Stuart dynasty supporter Alan Breck Stewart accidentally boards the ship, he takes David along on his escape back to Edinburgh. They part and meet again repeatedly, mutually helpful against the Redcoats and respectful, although David is loyal to the English crown, but learns about its cruel oppression. Both ultimately face their adversaries.",0,0,Kidnapped,en +71376,Malicious,1995-11-06,92.0,,,tt0113748,"Ignore her, and she'll never go away.",A mystery woman turns vengeful after a college athlete dumps her following a one-night stand.,0,0,Malicious,en +157178,Grający z talerza,1995-11-07,0.0,,,tt0113205,,,0,0,Grający z talerza,pl +41478,Panther,1995-11-10,124.0,,,tt0114084,The People Called Them Heroes. The F.B.I. Called Them Public Enemy Number One.,Panther is a semi-historic film about the origins of The Black Panther Party for Self-Defense. The movie spans about 3 years (1966-68) of the Black Panther's history in Oakland. Panther also uses historical footage (B/W) to emphasize some points.,0,6834525,Panther,en +85778,Maya Lin: A Strong Clear Vision,1995-11-10,105.0,,,tt0110480,The story of The Vietnam Veterans Memorial and its inspiring creator.,A film about the work of the artist most famous for her monuments such as the Vietnam Memorial Wall and the Civil Rights Fountain Memorial.,0,0,Maya Lin: A Strong Clear Vision,en +57597,Xtro 3: Watch the Skies,1995-11-14,97.0,,114915,tt0115006,From beyond imagination... from beyond the earth itself... Xtro waits.,"Marines on a deserted island are ordered to disfuse bombs, but then an alien creature terrorizes them.",0,0,Xtro 3: Watch the Skies,en +18128,Chris Rock: Bring the Pain,1996-06-01,58.0,,,tt0200529,,"A true equal-opportunity offender, Chris Rock's brand of humor will make you think after you're done laughing.",0,0,Chris Rock: Bring the Pain,en +27526,The Crossing Guard,1995-11-15,111.0,,,tt0112744,"...some lives cross, others collide.","After his daughter died in a hit and run, Freddy Gale has waited six years for John Booth, the man responsible, to be released from prison. On the day of release, Gale visits Booth and announces that he will kill him in one week. Booth uses his time to try and make peace with himself and his entourage, and even finds romance. Gale, whose life is spiraling down because of his obsession towards Booth, will bring himself on the very edge of sanity. At he end of the week, both men will find themselves on a collision course with each other.",0,0,The Crossing Guard,en +284154,Premeditated Murder,1995-11-15,94.0,,,tt0118011,,"Men, women, and war. Jelena Panic is a young woman in Belgrade in the early 1990s, during Serbia's war with Croatia; she's making a book of her grandmother's diaries from the end of World War II. She takes up with Bogdan, a young soldier recovering from war wounds. He helps her with her grandmother's story, a tragic triangle involving her effete and well-educated husband and an uneducated major, a Chekist who has, perhaps, the power to save a political prisoner who is the grandmother's friend. As Jelena wonders which man was her grandfather (the Chekist or the husband), Bogdan recovers from his wounds and must decide whether to return to the front. Jelena pleads; duty calls.",0,0,Ubistvo s predumišljajem,sr +335145,Let It Be Me,1995-11-17,95.0,,,tt0113638,,"Right after getting engaged, a man starts taking dance lessons.",0,0,Let It Be Me,en +58372,Reckless,1995-11-17,91.0,,,tt0114241,The most twisted Christmas ever.,"On Christmas eve, a relentlessly cheerful woman escapes from the killers hired by her husband, and embarks on a series of strange encounters.",0,0,Reckless,en +33689,It Takes Two,1995-11-17,101.0,,,tt0113442,Two identical strangers. Two different worlds. One perfect match.,"Identical 9-year-olds from very different backgrounds: orphaned Amanda and wealthy Alyssa meet at summer camp and decide to switch places -- and play matchmaker between Alyssa's dad, Roger, and the kind social worker who cares for Amanda.",0,0,It Takes Two,en +9087,The American President,1995-11-17,106.0,,,tt0112346,Why can't the most powerful man in the world have the one thing he wants most?,"Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.",62000000,107879496,The American President,en +21780,Annie: A Royal Adventure,1995-11-18,92.0,,312735,tt0112374,,"Annie is back! Along with her friends Molly, Hannah, her dog Sandy, and her wealthy father Oliver Warbucks. They take a trip to England where Oliver Warbucks is going to be Knighted by the King. Annie and the gang stumbles onto a wicked scheme led by an evil noblewoman who plans to blow up Buckingham Palace so she can become Queen and claim the throne for herself! And now it is up to Annie and her friends to stop her!",0,0,Annie: A Royal Adventure,en +11517,Money Train,1995-11-21,103.0,,,tt0113845,"Get on, or GET OUT THE WAY!","A vengeful New York transit cop decides to steal a trainload of subway fares; his foster brother, a fellow cop, tries to protect him.",60000000,35431113,Money Train,en +524,Casino,1995-11-22,178.0,,,tt0112641,No one stays at the top forever.,The life of the gambling paradise – Las Vegas – and its dark mafia underbelly.,52000000,116112375,Casino,en +73067,Frankie Starlight,1995-11-22,101.0,,,tt0113107,Sometimes the brightest star is the one that shines within.,The quirky story of a young boy's adventures growing up with his stunningly beautiful mother and the two very different men who love her.,0,0,Frankie Starlight,it +195867,Visitors of the Night,1995-11-26,98.0,,,tt0114860,They're watching...They're waiting...They're back!!!,"Judith notices some very creepy things are happening around town. She and the town's sheriff make a chilling discovery, the town's teens are disappearing. When they reappear they are suffering from amnesia. Judith is even more troubled when her daughter, Katie, is missing. When she returns and begins acting strangely, it becomes evident alien powers have taken over the town. Judith must stand up to her fears and rid the town of the aliens that have come to claim her daughter.",0,0,Visitors of the Night,en +400,Things to Do in Denver When You're Dead,1995-12-01,116.0,,,tt0114660,Protect. Love. Honor. Avenge.,A mafia film in Tarantino style with a star-studded cast. Jimmy’s “The Saint” gangster career has finally ended. Yet now he finds him self doing favors for a wise godfather known as “The Man with the Plan.”,8000000,529766,Things to Do in Denver When You're Dead,en +5,Four Rooms,1995-12-09,98.0,,,tt0113101,"Twelve outrageous guests. Four scandalous requests. And one lone bellhop, in his first day on the job, who's in for the wildest New year's Eve of his life.",It's Ted the Bellhop's first night on the job...and the hotel's very unusual guests are about to place him in some outrageous predicaments. It seems that this evening's room service is serving up one unbelievable happening after another.,4000000,4300000,Four Rooms,en +12561,Godzilla vs. Destoroyah,1995-12-09,103.0,,374511,tt0113187,Get Ready for a Three-Way Monster Melee!,"The aftermath of the Oxygen Destroyer brings forth Destoroyah, a beast intent on killing Godzilla, who is on the verge of a nuclear meltdown.",0,0,ゴジラvsデストロイア,ja +37653,The Three Brothers,1995-12-13,105.0,,283733,tt0114732,,"Three half-brothers are reunited at their mother's funeral. After being told of their inheritance they quickly spend the money, only to find out that they will not receive it after all. The men grow closer while deciding how to proceed.",7500000,0,Les Trois Frères,en +36259,Theodore Rex,1995-12-14,92.0,,,tt0114658,The world's toughest cop is getting a brand new partner. And he's a real blast from the past!,"In an alternate futuristic society, a tough female police detective is paired with a talking dinosaur to find the killer of dinosaurs and other prehistoric animals leading them to a mad scientist bent on creating a new Armageddon.",33500000,0,Theodore Rex,en +949,Heat,1995-12-15,170.0,,,tt0113277,A Los Angeles Crime Saga,"Obsessive master thief, Neil McCauley leads a top-notch crew on various insane heists throughout Los Angeles while a mentally unstable detective, Vincent Hanna pursues him without rest. Each man recognizes and respects the ability and the dedication of the other even though they are aware their cat-and-mouse game may end in violence.",60000000,187436818,Heat,en +8844,Jumanji,1995-12-15,104.0,,,tt0113497,Roll the dice and unleash the excitement!,"When siblings Judy and Peter discover an enchanted board game that opens the door to a magical world, they unwittingly invite Alan -- an adult who's been trapped inside the game for 26 years -- into their living room. Alan's only hope for freedom is to finish the game, which proves risky as all three find themselves running from giant rhinoceroses, evil monkeys and other terrifying creatures.",65000000,262797249,Jumanji,en +34615,"Cry, the Beloved Country",1995-12-15,106.0,,,tt0112749,,A South-African preacher goes to search for his wayward son who has committed a crime in the big city.,0,676525,"Cry, the Beloved Country",en +15602,Grumpier Old Men,1995-12-22,101.0,,119050,tt0113228,Still Yelling. Still Fighting. Still Ready for Love.,"A family wedding reignites the ancient feud between next-door neighbors and fishing buddies John and Max. Meanwhile, a sultry Italian divorcée opens a restaurant at the local bait shop, alarming the locals who worry she'll scare the fish away. But she's less interested in seafood than she is in cooking up a hot time with Max.",0,0,Grumpier Old Men,en +30,Magnetic Rose,1995-12-23,44.0,,139450,tt1530535,,Koji Morimato’s animated science fiction short story about how the boarder between reality and illusion on a space station become blurry.,0,0,彼女の想いで,ja +922,Dead Man,1995-12-23,121.0,,,tt0112817,No one can survive becoming a legend.,"On the run after murdering a man, accountant William Blake encounters a strange North American man named Nobody who prepares him for his journey into the spiritual world.",9000000,0,Dead Man,en +144183,Heavy Weather,1995-12-24,95.0,,,tt0111998,,"At Blandings Castle, the Earl of Emsworth only cares about his prize pig 'The Empress' and is wilfully ignorant of the fact that his brother is planning to publish a book which might ruin the family name forever. Moreover, the Earl's nephew might cause the family some major damage by getting married to a terribly unsuitable chorus girl. An adaptation of P.G. Wodehouse's novel of the same name.",0,0,Heavy Weather,en +36674,Bert: The Last Virgin,1995-12-25,100.0,,,tt0112480,Det här är filmen om mina tre största intressen: Flickor. Kvinnor. Tjejer,"The film is based on a series of immensely popular Swedish children's books, about the boy Bert, who is just hitting puberty and having the usual problems with it. But that's where the usual ends abruptly.",0,0,Bert - Den siste oskulden,sv +92737,Under the Gun,1995-12-26,0.0,,,tt0114783,You can't outrun a bullet.,"A debt-ridden night club owner has to take on Italian and Asian mobsters, corrupt police, and an angry pimp that he threw out of the club to try to keep his club in business.",0,0,Under the Gun,en +34138,Night Of The Twisters,1996-01-01,92.0,,,tt0117179,,A Nebraska farm community is plagued by a storm with a series of tornadoes acting against normal patterns...,0,0,Night Of The Twisters,en +58081,Iris Blond,1996-01-01,113.0,,,tt0117695,There's Something Wild About Iris Blond,,0,0,Sono pazzo di Iris Blond,it +36258,Orion's Key,1996-01-01,99.0,,,tt0117396,,"After two archaeologists discover an ancient alien artifact in Africa, they must run for their lives from both the unstoppable guardian and protector that awakens as a result, and their greedy, madman employer, both of whom want the artifact.",0,0,Orion's Key,fr +247436,Wind,1996-01-01,6.0,,,tt0111339,,"During a film course lead by Yvette Biro at the Hungarian Academy of Drama and film in 1995, the director students were shown a black-and-white photo taken by Lucien Herve in 1952, and they were given the task of writing a short film based on it. Three women are standing at the outskirts of a village, looking out of the picture in the same direction. This six-minute one-shot film shows what the Herve photo does not.",0,0,Szél,en +162435,Sun on the Horizon,1996-01-01,45.0,,,tt1798638,,"The last piece of the trilogy, following Katatsumori and Seen the Heaven, filming her grandma and herself. Her gazes and insights are cast on the lovable beings in front of her eyes.",0,0,陽は傾ぶき,ja +88811,"Goodbye South, Goodbye",1996-01-01,116.0,,,tt0117151,,Gao (Jack Kao) is riding the train to Pinghsi to set up a 10 day gambling den with his friend Hsi (Hsi Hsiang).,0,0,南國再見,南國,zh +92988,Die Totale Therapie,1996-01-01,115.0,,,tt0117945,,,0,0,Die Totale Therapie,en +38237,Robo Warriors,1996-01-01,89.0,,349889,tt0117497,,The year is 2036 and Earth has been invaded: hope lies with the last Robo Warrior - a towering fighting machine.,0,0,Robo Warriors,en +65595,T2 3-D: Battle Across Time,1996-01-01,12.0,,,tt0117880,,Three freedom fighters attack a large corporation to prevent a future apocalypse.,0,0,T2 3-D: Battle Across Time,en +21587,Jon Stewart: Unleavened,1996-01-01,42.0,,,tt0477021,,"Jon Stewart performs a solo standup routine, telecast live from Miami, Florida.",0,0,Jon Stewart: Unleavened,en +222872,Starquest II,1996-01-01,0.0,,,tt0120200,,Sci-fi thriller directed by Fred Gallo.,0,0,Starquest II,en +68545,Intimate Relations,1996-01-01,105.0,,,tt0116643,,"A young merchant marine turns up in an English coastal town looking for a brother he barely knows. When his brother's wife rebukes him he takes up with the Beasley family. However, soon the mother and daughter are chasing and ending up in the man's bed. However, soon both women start showing up at the same time which is a little much for him.",0,0,Intimate Relations,en +134308,The Bermuda Triangle,1996-01-01,96.0,,,tt0115656,,"After a strange storm in the Carribean causes a boat to sink, a family finds itself stranded on an island in the ""27th dimension"".",0,0,The Bermuda Triangle,en +31244,Merlin's Shop of Mystical Wonders,1996-01-01,92.0,,,tt0174917,,"Two creepy ""horror"" films joined together by Merlin's Shop which is, in turn, introduced by a Grandpa telling the story.",0,0,Merlin's Shop of Mystical Wonders,en +124821,Eden,1996-01-01,106.0,,,tt0119049,Let your spirits soar.,"Story of a New England boys' school and of one of the students who is infatuated with an instructor's wife who has Multiple Sclerosis. The woman struggles to show her strict husband how love rather than demands helps the student to blossom, but finally she falls into a coma. While she is able to have some 'looking down' awareness of what is happening, her coma is what brings her husband to an understanding of the needs of others.",0,0,Eden,en +201445,Late Bloomers,1996-01-01,107.0,,,tt0116834,,"High School basketball coach, Dinah Groshardt, falls for the school secretary, Carly Lumpkin, and upsets the entire school in the process.",0,0,Late Bloomers,en +173874,The Many Faces of Christopher Lee,1996-01-01,60.0,,,tt0113769,,"Christopher Lee talks about his film career, while showing clips from some of his best films.",0,0,The Many Faces of Christopher Lee,en +77137,The Barber of Rio,1996-01-01,105.0,,,tt0115625,,"Matteo is a Roman barber. In Roma his activity is driving him almost to ruin, he is full of debts. He decides to escape from this depressing reality by accepting his sister Angelina's invitation to Brazil.",0,0,Il barbiere di Rio,it +93114,Quest,1996-01-01,12.0,,,tt0117419,,"A being made of sand wakes up in the desert. It finds a bottle near him, but it's empty. The noise of dropping water can be heard not far away...",0,0,Quest,xx +36299,The Grave,1996-01-01,90.0,,,tt0116446,Some secrets are better left buried.,Two prisoners escape with the help of their jailer to search for a treasure that is supposedly buried with a dead millionaire.,4000000,0,The Grave,en +23239,Idiot Box,1996-01-01,85.0,,,tt0116604,,"Mick and Kev – bored, unemployed and aimless in the western suburbs of Sydney – decide to rob a bank, more or less for the fun of it.",0,0,Idiot Box,en +29938,Alien Escape,1996-01-01,85.0,,,tt0112318,Run Baby Run!,No overview found.,1000000,0,Alien Escape,en +19760,Two If by Sea,1996-01-12,96.0,,,tt0118002,"A new comedy about love, laughter, and larceny","Frank O'Brien, a petty thief, and his 7-year-long girlfriend Roz want to put an end to their unsteady lifestyle and just do that last job, which involves stealing a valuable painting. Frank takes Roz to an island on the coast of New England, where he wants to sell the painting and also hopes that their sagging relationship will get a positive push back up. Not everything goes as planned.",0,0,Two If by Sea,en +755,From Dusk Till Dawn,1996-01-19,108.0,http://www.miramax.com/movie/from-dusk-till-dawn/,10924,tt0116367,One night is all that stands between them and freedom. But it's going to be a hell of a night.,"Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.",19000000,25836616,From Dusk Till Dawn,en +160261,Army,1996-01-19,153.0,http://www.imdb.com/title/tt0115568/,,tt0115568,,"Arjun and Geeta are a young couple, who are deeply in love with each other. They get married, and soon are proud parents. Arjun gets in the bad books of a notorious gangster named Nagraj, and is brutally killed. When Geeta finds out she decides to avenge Arjun's death. When Nagraj finds out that Geeta is out for vengeance, he scoffs at her, refusing to believe that a lone defenseless widow can do him any harm. But Nagraj is in for a surprise when he comes face to face with Geeta and a group of young men who are dedicated to bring him down - even if they die trying.",0,0,Army,hi +7863,Shine,1996-01-21,105.0,,,tt0117631,A true story of the mystery of music and the miracle of love,"Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.",0,0,Shine,en +134806,Riders of the Purple Sage,1996-01-21,0.0,,,tt0117476,,,0,0,Riders of the Purple Sage,en +88224,Manny & Lo,1996-01-22,88.0,,,tt0116985,,A pregnant teen and her younger sister run away from foster homes and kidnap a woman whom they believe can help with the pregnancy.,500000,431326,Manny & Lo,en +47260,Caught,1996-01-24,110.0,,,tt0115847,,A middle-aged couple has a drifter enter their lives. The fish-store owners find that the mysterious young man awakens the couple in ways they didn't expect. Things get tense when the drifter begins an affair with the woman of the house.,0,0,Caught,en +36929,Big Bully,1996-01-26,90.0,,,tt0115676,A comedy for the kid in all of us.,"A writer returns to his hometown where he faces the childhood nemesis whose life he ultimately ruined, only the bully wants to relive their painful past by torturing him once again.",15000000,2042530,Big Bully,en +23223,Normal Life,1996-01-26,101.0,,,tt0117202,They found the American Dream ... One bullet at a time!,"Chris Anderson and his wife Pam live a fairly normal life until Chris loses his job on the police force and secretly turns to robbing banks to make his wife's dreams come true. Upon discovering his secret, she joins his deadly crime wave and together they terrorize an unsuspecting suburban town.",0,0,Normal Life,en +59147,Bits & Pieces,1996-02-01,110.0,,,tt0112674,,"Dive into The Eternal City - see Rome like you’ve never seen it before. Storefront robberies, bizarre murders, career dreamers, and cameos from Italy’s greatest directors and actors feature in this star-studded omnibus tale about life and love.",0,0,Il cielo è sempre più blu,it +10534,White Squall,1996-02-02,129.0,,,tt0118158,,Teenage boys discover discipline and camaraderie on an ill-fated sailing voyage.,38000000,10300000,White Squall,en +110972,Pie in the Sky,1996-02-09,95.0,,,tt0114131,The only thing that stands in the way of fate and true love is a little traffic.,Pie in the Sky is a 1996 American romantic comedy film about a young man obsessed with traffic gridlock who falls in love with an avant-garde dancer.,0,0,Pie in the Sky,en +9404,First Strike,1996-02-10,107.0,,269098,tt0116704,They thought they possessed the ultimate weapon. They hadn't counted on Jackie Chan.,Jackie Chan reprises his role as Chan Ka-Kui (also known in some versions as Jackie) yet again as a Hong Kong cop who works with Interpol to track down and arrest an illegal weapons dealer. Later Jackie realizes that things are not as simple as they appear and soon find himself a pawn of an organisation posing as Russian intelligence.,0,21890845,警察故事4之簡單任務,cn +31027,Dr. Wai in the Scriptures with No Words,1996-02-10,86.0,,,tt0110463,,"A serial adventure writer with problems in his personal life lives out the adventures of his literary hero, King of Adventurers.",0,0,Mao xian wang,cn +46029,Two Much,1996-02-14,118.0,,,tt0118001,,A young gallerist is in love with two sisters at the same time. In order to solve the problem he decides to invent his own twin-brother.,0,0,Two Much,en +119694,The Sunshine Boys,1996-02-15,90.0,,,tt0114580,,Two aging comedians who acrimoniously dissolved their act eight years earlier must overcome their differences when they have the chance for a lucrative movie comeback.,0,0,The Sunshine Boys,en +37702,Forbidden City Cop,1996-02-16,89.0,,,tt0116014,,"Set in Imperial China, Stephen Chiau plays Ling Ling Fat, one of the elite Emperor's guards in the Forbidden City. However unlike his colleagues he doesn't know anything about Kung Fu or other martial-arts, but instead uses his time to make futuristic inventions. So when the emperor is kidnapped and the world most beautiful geisha comes to town Fat has to use his brain to get things done.",0,0,大內密探零零發,cn +115665,Extasis,1996-02-16,93.0,,,tt0118239,,"Three friends, two young men and a young woman, are bored by the normal world of their parents and want to flee in order to start living somewhere else. Thus they make a pervert plan: rob their own families. After that they flee without any destination and without having really planned where to go to.",0,0,Éxtasis,es +10874,Muppet Treasure Island,1996-02-16,100.0,,256377,tt0117110,Set sail for Muppet mayhem!,"After telling the story of Flint's last journey to young Jim Hawkins, Billy Bones has a heart attack and dies just as Jim and his friends are attacked by pirates. The gang escapes into the town where they hire out a boat and crew to find the hidden treasure, which was revealed by Bones before he died. On their voyage across the seas, they soon find out that not everyone on board can be trusted.",0,34327391,Muppet Treasure Island,en +264560,When Friendship Kills,1996-02-19,96.0,,,tt0117583,She'll be dead before she's thin enough.,Two friends keep their vomiting a secret until one friend almost dies.,0,0,When Friendship Kills,en +36075,Splatter: Naked Blood,1996-02-20,76.0,,,tt0217679,,"A scientist taints his mother's scientific experiment with his own drug that transforms pain into a pleasurable experience. Unfortunately for the three women involved in the experiment, the drug works a little bit too well.",0,0,女虐 悪魔の悦び,ja +322,Mystic River,2003-10-07,138.0,,,tt0327056,"We bury our sins, we wash them clean.","A story about friendship and loyalty, guilt and vengeance, and the fateful affect the past has on the present.",25000000,156822020,Mystic River,en +13685,Bottle Rocket,1996-02-21,91.0,,,tt0115734,"They're not really criminals, but everyone's got to have a dream.","Upon his release from a mental hospital following a nervous breakdown, the directionless Anthony joins his friend Dignan, who seems far less sane than the former. Dignan has hatched a hair-brained scheme for an as-yet-unspecified crime spree that somehow involves his former boss, the (supposedly) legendary Mr. Henry.",7000000,560069,Bottle Rocket,en +9095,Mary Reilly,1996-02-23,104.0,,,tt0117002,The untold story of Jekyll and Hyde,"A housemaid falls in love with Dr. Jekyll and his darkly mysterious counterpart, Mr. Hyde.",47000000,12379402,Mary Reilly,en +30330,The Late Shift,1996-02-24,95.0,,,tt0116835,Two heads fighting for the late night crown - One head's gotta roll.,"David Letterman vies with Jay Leno and his manager to succeed Johnny Carson, retiring from ""The Tonight Show.""",6000000,0,The Late Shift,en +113175,Robin of Locksley,1996-02-26,97.0,,,tt0117495,,"Robin McAllister (Devon Sawa) and his family win the lottery and they end up moving from Kansas City to Seattle where Robin attends Locksley Academy, a wealthy private school. While there Robin comes up with a plan to help one of his friends who was hurt and needs money for an operation by robbing from John Prince Sr., the head of a very wealthy corporation. Robin becomes friends with a couple of misfits at school named Will Scarlett (Billy O'Sullivan) and Little John (Tyler Labine) and also falls for a girl named Marian (Sarah Chalke) who helps train the horses that Robin's family has. While helping out his friends Robin becomes an enemy of John Prince Jr. (Joshua Jackson), the big shot rich kid at school and his friends Warner and Gibson who are also the sons of rich parents. Then Robin goes to join the archery team but is not allowed to because of John Prince Jr. so he starts his own team and his 2 friends join and learn from Robin.",0,0,Robin of Locksley,en +278978,Und keiner weint mir nach,1996-02-29,,,,tt0118026,,,0,0,Und keiner weint mir nach,de +25087,Bloodsport II,1996-03-01,90.0,,36694,tt0112536,"Caught between honor and revenge, how far will one man go...","After thief Alex Cardo gets caught while stealing an ancient katana in East Asia, he soon finds himself imprisoned and beaten up by the crowd there. One of the guards, Demon, feels upset by Alex appearance and tortures him as often as he gets the opportunity. Alex finds a friend and mentor in the jailhouse, Master Sun, who teaches him a superior fighting style called Iron Hand. When a 'best of the best kumite' is to take place, Demon gets an invitation. Now Master Sun and Alex need to find a way to let Alex take part in the kumite too.",0,684351,Bloodsport II,en +39148,Dragon Ball: The Path to Power,1996-03-02,74.0,,386410,tt0142250,,"A retelling of Dragon Ball's origin with a different take on the meeting of Goku, Bulma, and Kame-Sen'nin. It also retells the Red Ribbon Army story; but this time they find Goku rather than Goku finding them.",0,0,Doragon Bōru: Saikyō e no Michi,ja +10801,The Superwife,1996-03-06,86.0,,,tt0117788,,,0,0,Das Superweib,de +11000,The Birdcage,1996-03-08,117.0,,,tt0115685,Come as you are.,A gay cabaret owner and his drag queen companion agree to put up a false straight front so that their son can introduce them to his fiancé's right-wing moralistic parents.,31000000,185260553,The Birdcage,en +66292,Agni Sakshi,1996-03-14,142.0,,,tt0115484,,"Suraj Kapoor is a single, wealthy young man. One day he meets Shubangi, and they fall in love. Shortly thereafter they marry and settle down to enjoy a harmonious married life. During their stay at a hotel, the couple are approached by a man who claims that Shubangi is his wife and her real name is Madhu. Suraj and Shubangi are shocked and ask him to leave, which he does. Then the guy rings up Suraj one night and asks him to come to his room. When Suraj comes the guy tells him that his name is Vishwanath.",0,0,Agni Sakshi,hi +339428,Happy Weekend,1996-03-14,,,,tt0116485,,,0,65335,Happy Weekend,de +68023,Beaumarchais the Scoundrel,1996-03-20,0.0,,,tt0115638,,,0,0,"Beaumarchais, l'insolent",fr +287305,Peanuts – Die Bank zahlt alles,1996-03-21,,,,tt0117312,,,0,0,Peanuts – Die Bank zahlt alles,de +55731,Race the Sun,1996-03-22,100.0,,,tt0117427,A dream can make all the difference under the sun.,"A bunch of high school misfits in Hawaii, introduced by their new teacher, attend a science fair in which they draw up inspiration to build their own solar car and win a trip to compete in the 1990 World Solar Challenge in Australia.",0,0,Race the Sun,en +46827,Rasputin,1996-03-23,135.0,,,tt0117442,He Was A Magician. A Madman. A Savior And Seducer....,"Into an era seething with war and revolution, a man comes with an incredible power to heal a nation...or destroy it. Based on the true story of one of the most powerful and mysterious figures in Russian history.",0,0,Rasputin,en +41852,A Family Thing,1996-03-29,109.0,,,tt0116275,"With family, everything is relative.","Earl Pilcher Jr., runs an equipment rental outfit in Arkansas, lives with his wife and kids and parents, and rarely takes off his gimme cap. His mother dies, leaving a letter explaining he's not her natural son, but the son of a Black woman who died in childbirth; plus, he has a half brother Ray, in Chicago, she wants him to visit. Earl makes the trip, initially receiving a cold welcome from Ray and Ray's son, Virgil. His birth mother's sister, Aunt T., an aged and blind matriarch, takes Earl in tow and insists that the family open up to him.",0,0,A Family Thing,en +19042,All Dogs Go to Heaven 2,1996-03-29,82.0,,140910,tt0115509,Heaven help us! Look who's back in the adventure of 2 lifetimes.,"Charlie and Itchy return to Earth to find Gabriel's Horn, but along the way meet up with a young boy named David, who ran away from home.",0,8620678,All Dogs Go to Heaven 2,en +9099,Sgt. Bilko,1996-03-29,90.0,,,tt0117608,All he ever wanted was an honest week's pay for an honest day's work.,The army is known for churning out lean mean fighting machines intent on protecting our great nation. Martin is the inexplicable the incorrigible the invicible sgt. Ernie bilko leader of a ragtag group of the sorriest soldiers ever to enlist in the armed forces.,0,0,Sgt. Bilko,en +18414,Kids in the Hall: Brain Candy,1996-04-02,89.0,,,tt0116768,Shove this up your mind,"A pharmaceutical scientist creates a pill that makes people remember their happiest memory, and although it's successful, it has unfortunate side effects.",0,0,Kids in the Hall: Brain Candy,en +86040,"To Sir, with Love II",1996-04-07,0.0,,327598,tt0117927,,"Mark Thackeray (Poitier) is a West Indian, who in the 1967 film had taken teaching in a London East End school. He spent twenty years teaching and ten in administrative roles. He has taught the children of his former pupils, but is now retiring.",0,0,"To Sir, with Love II",pt +15674,Sabrina the Teenage Witch,1996-04-07,91.0,,86346,tt0117534,"Do homework, buy prom dress, learn how to fly.","A girl, sent by her parents to live with her two eccentric aunts, finds out on her sixteenth birthday that she is a witch",0,0,Sabrina the Teenage Witch,en +367006,Seasick,1996-04-07,,,,tt0117026,,,1000000,0,Seasick,en +250376,Beside Still Waters,2013-10-12,76.0,http://www.besidestillwatersfilm.com,,tt2184398,,A young man struggles for closure after the death of his parents.,0,0,Beside Still Waters,en +123728,The Empty Mirror,1996-04-09,118.0,,,tt0116192,,"Adolf Hitler faces himself and must come to terms with his infamous career in an imaginary post-war subterranean bunker where he reviews historical films, dictates his memoirs and encounters Eva Braun, Josef Goebbels, Hermann Göring and Sigmund Freud.",0,0,The Empty Mirror,en +314352,Honeymoon,1996-04-11,92.0,,,tt0116559,,German Comedy,0,0,Honigmond,de +12652,Nelly and Monsieur Arnaud,1996-04-12,106.0,,,tt0113947,,"Nelly leaves her lazy, unemployed husband to work for retired judge Mr Arnaud, forty years her senior, after he offers to clear her bills for her. While she types his memoirs the two develop a close friendship, but Arnaud becomes jealous when Nelly begins dating his good-looking young publisher.",0,0,Nelly & Monsieur Arnaud,fr +10543,Fear,1996-04-12,97.0,,,tt0116287,Together forever. Or else.,A 16 year old girl takes up with a charming young man who quickly shows his colors when he beats a friend simply for walking with her and then goes totally ballistic after she tries to break up with him.,0,0,Fear,en +10539,James and the Giant Peach,1996-04-12,79.0,http://movies.disney.com/james-and-the-giant-peach,,tt0116683,Adventures this big don't grow on trees.,"When the young orphan boy James spills a magic bag of crocodile tongues, he finds himself in possession of a giant peach that flies him away to strange lands.",38000000,28921264,James and the Giant Peach,en +32284,Dream for an Insomniac,1996-04-18,90.0,,,tt0116141,A dreamer who couldn't sleep. An author who couldn't write. A friend who couldn't help but help.,"A girl with insomnia who works in a coffee house has impossibly high standards for her love and fears she will never meet a worthy man. Then in walks a new employee and they click - until she discovers he has a girlfriend. Undaunted, she moves to L.A. with a friend sure that he will dump the girlfriend and follow her. She puts all her faith in fate and hopes for the best.",0,24,Dream for an Insomniac,en +49172,Public Enemies,1996-04-19,95.0,,,tt0114202,No one could stop them.,"Ma Barker (Theresa Russell) and her sons rob banks, shoot people and wind up at the top of the FBI's ""most wanted"" list in the 1930s.",0,0,Public Enemies,en +74942,Soul of the Game,1996-04-20,94.0,,,tt0115631,,"Satchel Paige and Josh Gibson are the greatest players in the Colored leagues, and everyone expects that one of them will make the leap to the Major Leagues, now that there is talk of integration. But, unexpectedly, it's the rookie with the army record, Jackie Robinson, that gets tapped to be the first.",0,0,Soul of the Game,en +34935,Tenchi Muyô! In Love,1996-04-20,95.0,,199141,tt0117876,,"The demonic space criminal Kain has escaped from prison and destroyed the Galaxy Police headquarters. To ensure that the Jurai will not stop him, Kain travels back to 1970 to eliminate Tenchi's mother before he is even born. Now, Tenchi and the gang must travel to the past to stop him before he ceases to exist.",0,0,天地無用! IN LOVE,ja +29649,Sunset Park,1996-04-26,99.0,,,tt0117784,You gotta represent.,"A white school teacher takes over a talented, but undisciplined black high school basketball team and turns them into a winning team.",0,0,Sunset Park,en +36983,Tornado!,1996-05-06,89.0,,,tt0117942,Hell has no fury like a twister.,"An accountant sent to produce an evaluation of a tornado research project, and the scientist running the project pursue tornadoes and each other.",0,0,Tornado!,en +75142,Sharpe's Siege,1996-05-08,101.0,,69788,tt0117622,,"Sharpe, with his new commanding officer, is sent to capture a castle when news comes of locals who will rise against Bonaparte. However, he is somewhat distracted by thoughts of his wife whom he was forced to leave while stricken with fever.",0,0,Sharpe's Siege,en +47694,Temptress Moon,1996-05-09,130.0,,,tt0116295,,"Set in the decadent 1920s, Temptress Moon tells the very complicated story of a wealthy family living on the outskirts of Shanghai. Their youngest daughter, Ruyi, is brought up as a servant to her opium-addicted father and brother. Meanwhile, her brother-in-law Zhongliang has a successful, if illegal, career seducing and blackmailing married women in the city. When he comes to Ruyi's home the two fall in love, and trouble ensues.",0,0,Feng yue,zh +664,Twister,1996-05-10,113.0,,,tt0117998,The Dark Side of Nature.,"TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.",92000000,494471524,Twister,en +26422,The Pillow Book,1996-05-12,126.0,,,tt0114134,,"As a young girl in Japan, Nagiko's father paints characters on her face, and her aunt reads to her from ""The Pillow Book"", the diary of a 10th-century lady-in-waiting. Nagiko grows up, obsessed with books, papers, and writing on bodies.",0,0,The Pillow Book,en +36915,Heaven's Prisoners,1996-05-17,132.0,,,tt0116508,"For an ex-cop obsessed with an unsolved murder, trusting the wrong woman could be a deadly choice.","A hardened New Orleans cop, Dave Robicheaux, finally tosses in the badge and settles into life on the bayou with his wife. But a bizarre plane crash draws him back into the fray when his family is viciously threatened.",25000000,0,Heaven's Prisoners,en +36355,Flipper,1996-05-17,95.0,,,tt0116322,This summer it's finally safe to go back in the water.,"Sandy Ricks is sent by his mom to Coral Key, a rustic island in the Florida keys, to spend the summer with his uncle Porter Ricks. Sandy dislikes everything about his new environment until a new friend comes into his life, a dolphin named Flipper, that brings uncle and nephew together and leads Sandy on the summer adventure of a lifetime.",25530000,20080020,Flipper,en +281085,A Boy Called Hate,1996-05-22,0.0,,,tt0112568,,,0,0,A Boy Called Hate,en +954,Mission: Impossible,1996-05-22,110.0,http://www.missionimpossible.com/,87359,tt0117060,Expect the Impossible.,"When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.",80000000,457696359,Mission: Impossible,en +11159,Secrets & Lies,1996-05-24,142.0,,,tt0117589,,"A middle-aged London factory worker is shocked when the mixed-race daughter she gave up at birth decides to track her down. At first she denies she is her mother. All family members become emotional, as everyone's secrets are exposed.",4500000,13417292,Secrets & Lies,en +8840,DragonHeart,1996-05-31,103.0,,169452,tt0116136,You will believe.,"In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.",57000000,115267375,DragonHeart,en +174000,Nightjohn,1996-06-01,92.0,,,tt0117180,Words Are Freedom,"Charles Burnett directs this movie about John, a man of many talents, including one forbidden skill: he can read. When he teaches a young slave girl named Sarny to read and write, she learns an unforgettable lesson about the power of words and the true meaning of freedom. A wonderful movie about the power of literacy and the risk it took to educate slaves in the Ante-Bellum South before the heartbreak of the Civil War.",0,0,Nightjohn,en +105763,A Chef in Love,1996-06-06,100.0,,,tt0117050,,"The story of Pascal Ichak, a larger-than-life French traveller, bon vivant, and chef, who falls in love with Georgia and a Georgian princess in the early 1920s. All is well until the arrival of the Red Army of the Caucasus, as the Soviet revolution that has swept Russian comes to Georgia. Told as a flashback from the present, as a French-Georgian man whose mother was Pascal's lover translates his memoirs for Pascal's niece.",0,0,Shekvarebuli kulinaris ataserti retsepti,fr +112973,A Pig's Tale,1996-06-07,94.0,,,tt0114132,,,0,0,A Pig's Tale,en +9568,The Dentist,1996-06-07,92.0,,117952,tt0116075,It's been six months. Time for your check-up!,"Dr. Feinstone has everything, a beautiful wife and a successful career in dentistry; but when he discovers his wife's affair, he realizes that behind every clean, white surface lies the stench of decay.",2500000,0,The Dentist,en +325555,Loafer,1996-06-09,0.0,,,tt0116898,,"Ravi Kumar is clearly the black sheep of the Kumar family, and has been so for years. He is unemployed, uncouth, and gets into fist fights and trouble all the time. And then a man is killed, and the evidence points towards Ravi, he gets arrested. Although there were witnesses to this murder, no one comes forward to testify in favor of Ravi. The Kumar family are aware of Ravi's innocence, but watch helplessly as Ravi awaits his sentence, which may send him to the gallows, as now only a miracle can save Ravi. Written by rAjOo",0,0,Loafer,en +9894,The Cable Guy,1996-06-10,96.0,,,tt0115798,There's no such thing as free cable.,"When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up -- and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the ""friendship,"" Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behavior.",47000000,102825796,The Cable Guy,en +213842,Deadly Voyage,1996-06-14,90.0,,,tt0116056,,"When stowaways are found on board a Russian cargo ship, some of the officers and crew decide to dispose of them at sea. The last time they had a stowaway on board, the ship was fined heavily and black marks entered into their records, when he made it off the ship into a foreign port.",0,0,Deadly Voyage,en +9977,Children of the Revolution,1996-06-14,101.0,,,tt0115886,A red comedy about the ultimate party animals.,"A man (Richard Roxburgh) the Australian government blames for 1990s political woes blames his mother (Judy Davis), a communist Stalin seduced in 1951.",0,0,Children of the Revolution,en +81296,Supermarket Woman,1996-06-15,127.0,,,tt0127310,,"Goro's supermarket is not doing well; the rival ""Bargains Galore"" threatens his business. A chance encounter with Hanako, an energetic woman he knew in grade school, results in big retail and life changes.",0,0,Supa no onna,ja +107096,Nemesis 3: Time Lapse,1996-06-18,85.0,,286948,tt0113950,The terror has returned,"Using footage left over from Nemesis 2 and a very thin story line sees Alex again fighting the cyborg mercenaries in 1998 East Africa. This time, Alex finds that she has 20 half sisters who are waiting for her to return to 2077. Central Command wants Alex captured alive and scanned to see if her DNA is a strong and more powerful strain than the normal. But Alex may be too tough for Farnsworth to capture.",0,0,Nemesis 3: Time Lapse,en +282919,Diebinnen,1996-06-20,,,,tt0112865,,,0,0,Diebinnen,de +43771,Gabbeh,1996-06-26,75.0,,,tt0116384,,"An elderly couple go about their routine of cleaning their gabbeh (a intricately-designed rug), while bickering gently with each other. Magically, a young woman appears, helping the two clean the rug. This young woman belongs to the clan whose history is depicted in the design of the gabbeh, and the rug recounts the story of the courtship of the young woman by a stranger from the clan.",0,0,گبه,fa +9514,Werner - Das muss kesseln!!!,1996-06-27,85.0,,9500,tt0118138,,No overview found.,0,0,Werner - Das muss kesseln!!!,de +9294,Phenomenon,1996-07-05,123.0,,,tt0117333,Some things in life just can't be explained.,"An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.",32000000,152036382,Phenomenon,en +49963,Walking and Talking,1996-07-17,86.0,,,tt0118113,A movie for everyone who wants to get married and stay single at the same time.,"Things have been tough lately for Amelia. Her best friend moved out of the apartment, her cat got cancer, and now her best friend, Laura, is getting married. She copes with things, from the help of Andrew, Frank, Laura, and a brief romance with Bill ""The Ugly Guy"".",0,0,Walking and Talking,en +11511,Kazaam,1996-07-17,93.0,,,tt0116756,The world's most powerful genie has just met his match,Shaquille O'Neal as a rapping genie protects a little boy.,20000000,0,Kazaam,en +80473,Black Day Blue Night,1996-07-25,93.0,,,tt0112515,"If you love someone, you'll die for them.","A wife's husband is cheating on her. She decides to go on a road trip with her husband's other woman. While driving the two women pick up a hitchhiker. The man they pick up may be a robber and murderer on the run from the cops. A policeman who is tracking the hitchhiker has a close eye on them, but the question is why?",0,0,Black Day Blue Night,en +97618,One Man's Justice,1996-07-26,100.0,,,tt0113999,Revenge is everything.,"When a man's wife and family are murdered, he plots revenge only to find out that the killer is under Federal protection and he must exact his own form of justice.",0,0,One Man's Justice,en +99859,Crimetime,1996-08-01,0.0,,,tt0115976,,The star of a TV crime reenactment show becomes caught up in the mind of the killer he is playing.,0,0,Crimetime,en +76996,Love and Other Catastrophes,1996-08-01,78.0,,,tt0116931,,A day in the life of two film-school students trying to find love and another house-mate.,0,0,Love and Other Catastrophes,it +125087,Reggie's Prayer,1996-08-01,0.0,,,tt0117457,,"Reggie White stars as Reggie Knox, a pro football player who retires, frustrated because he hasn't won a championship. Knox begins coaching a Portland, Ore., high school football program, where he befriends a troubled student. Reggie fights local ruffians with Christian values. And punches.",0,0,Reggie's Prayer,en +92381,Phat Beach,1996-08-02,89.0,,,tt0117332,Ain't nothin' but a g-string.,A hefty homeboy borrows his dad's Mercedes and goes to the beach with his friends for wild sun & fun.,0,0,Phat Beach,en +25518,La Belle verte,1996-09-18,99.0,,,tt0115650,,"As part of an intergalactic coalition, a well-meaning space alien volunteers to bring a message of self-actualization and harmony with nature to the one planet rejected by all her peers as incorrigible: Earth.",0,0,La Belle verte,fr +125521,Slayers Return,1996-08-03,60.0,,145553,tt0161979,,"Outrageous enemies such as secret organizations aiming to dominate the world and mysterious strongest fighting forces attack Lina and Naga one after another for legendary ""treasure"" lying in a village in which Elves used to live. In addition, an immortal monster not affected by attacking magic appears and drive Lina and Naga into a terrible pinch. What they should do?",0,0,スレイヤーズRETURN,ja +549,Basquiat,1996-08-09,108.0,,,tt0115632,"In 1981, A Nineteen-Year-Old Unknown Graffiti Writer Took The New York Art World By Storm. The Rest Is Art History.","Director Julian Schnabel illustrates the portrait of his friend, the first African-American Pop artist Jean-Michel Basquiat who unfortunately died at a young age and just as he was beginning to make a name for himself in the art world. Alongside the biography of Basquiat are the artists and the art scene from early 1980’s New York.",2962051,3011195,Basquiat,en +43976,A Moment of Innocence,1996-08-13,78.0,,,tt0117214,,"A semi-autobiographical account of Makmahlbaf's experience as a teenager when, as a 17-year-old, he stabbed a policeman at a protest rally. Two decades later, he tracks down the policeman he injured in an attempt to make amends.",0,37598,نون و گلدون,fa +109614,Losing Chase,1996-08-18,98.0,,,tt0116920,A love they never imagined. A summer they never forgot.,"An intimate and turbulent relationship develops between Chase, a woman recovering from a nervous breakdown and Elizabeth, the caretaker employed to look after her.",0,0,Losing Chase,en +48118,The Cold Light of Day,1996-08-20,101.0,,,tt0110125,,A troubled detective befriends a single woman and her daughter with the intention of using them as bait for a serial killer.,0,0,The Cold Light of Day,en +12606,A Very Brady Sequel,1996-08-23,90.0,,224478,tt0118073,The more everything changes the more they stay the same.,"A man claiming to be Carol Brady's long-lost first husband, Roy Martin, shows up at the suburban Brady residence one evening. An impostor, the man is actually determined to steal the Bradys' familiar horse statue, a $20-million ancient Asian artifact.",0,0,A Very Brady Sequel,en +45565,"I Love You, I Love You Not",1996-08-28,88.0,,,tt0116592,,School student and her European-born grandmother share sad stories of their lives.,0,0,"I Love You, I Love You Not",en +31146,Box of Moonlight,1996-08-29,112.0,,,tt0115738,Discover something incredible...,"Al Fountain, a middle-aged electrical engineer, is on the verge of a mid-life crisis, when he decides to take his time coming home from a business trip, rents a car, and heads out looking for a lake he remembers from his childhood. But his wandering takes him into the life of Kid, a free-spirited young man who helps Al escape from the routine of everyday life and find freedom to enjoy himself.",0,0,Box of Moonlight,en +2061,Pusher,1996-08-30,105.0,http://www.pusher.nu/,203910,tt0117407,You don't have a chance. Seize it!,A drug pusher grows increasingly desperate after a botched deal leaves him with a large debt to a ruthless drug lord.,0,0,Pusher,da +28671,Habit,1996-08-31,112.0,,,tt0113241,,"It's autumn in New York. Sam has broken up with his girlfriend and his father has recently died. World-weary and sloppy drunk, he finds temporary solace in the arms of Anna, a mysterious vampire who draws him away from his friends and into a web of addiction and madness.",200000,0,Habit,en +57811,Foreign Land,1996-09-04,110.0,,,tt0114651,The best place to lose someone or to get lose from your own self,"After the death of her mother, a young Brazilian decides to leave his country and travel to her native land. In a foreign land, he finds love and danger.",0,0,Terra Estrangeira,pt +3587,Bogus,1996-09-06,110.0,,,tt0115725,"A comedy about losing your heart, finding your inner child and meeting the one friend you've always tried to avoid.","Recently orphaned, a young boy is taken in by his godmother who is shocked to realize that she can see the boy's imaginary friend: a flamboyant, French magician named Bogus.",32000000,0,Bogus,en +59569,Killer: A Journal of Murder,1996-09-06,91.0,,,tt0113542,"Liar. Thief. Murderer. He hated all of humanity, himself most of all.","Carl Panzram is sent to Leavenworth Prison for burglary. While there, he is brutally beaten by a guard. Neophyte guard Henry Lesser feels sympathy for Panzram, befriends him, and gets him to write his life story. Lesser learns that Panzram's past is much more violent than he thought, but also that he's capable of being a much better person than the rest of the prison staff believes - or so Lesser thinks.",0,0,Killer: A Journal of Murder,en +21626,Kissed,1996-09-07,78.0,,,tt0116783,Love Knows No Bounds.,"Over the years, a child's romantic ideals about death blossom into necrophilia, the study of embalming and the most profound relationship of her life.",0,0,Kissed,en +142012,Gang in Blue,1996-09-08,97.0,,,tt0116393,Set Up and Betrayed ...,A black police officer discovers a cell of white supremacist vigilantes within his department.,0,0,Gang in Blue,en +124680,Broken English,1996-09-09,92.0,,,tt0115760,Sometimes when you make love you make war.,"Ivan is the fierce patriarch of a family of Croatian refugees in Auckland. Nina is his daughter, ready to live on her own, despite his angry objections. Eddie is the Maori she takes as her lover. Nina works at a restaurant where Eddie cooks. For a price, she agrees to marry a Chinese, another restaurant employee, so that he (and his Chinese wife) can establish permanent residency. The money gives her the independence she needs to leave her parents' house and move in with Eddie. Complications arise when Eddie realizes the depth of her father's fury and the strength of Nina's family ties.",0,0,Broken English,en +108365,The Proprietor,1996-09-09,0.0,,,tt0117400,,,0,0,The Proprietor,en +104103,Portraits Chinois,1996-09-12,111.0,,,tt0117365,,"Ada and Lise are both costume designers, the first is around 20, the other around 30. Both are working hard on their break through. There are also jobs for the movies. This is where Lise meets producer Alphonse, who is nearly 20 years older than she. Because he is unhappy with his girlfriend a secret relationship evolves. Ada has problems as well, but she's not the only one. There are also the young Emma and Nina, as well as Yves and Guido - enough people to get into complicated relationship entanglements.",0,0,Portraits Chinois,fr +278621,Everything Relative,1996-09-13,110.0,,,tt0116245,,Old college chums get together for a weekend reunion that is bound to open old wounds and perhaps heal them. New romances find a spark while old ones rekindle.,0,0,Everything Relative,en +58985,Grace of My Heart,1996-09-13,116.0,,,tt0116442,For years her songs brought fame to other people. Then she found her own voice.,"An aspiring singer, Denise Waverly/Edna Buxton, sacrifices her own singing career to write hit songs that launch the careers of other singers. The film follows her life from her first break, through the pain of rejection from the recording industry and a bad marriage, to her final triumph in realizing her dream to record her own hit album.",0,0,Grace of My Heart,en +138522,Few of Us,1996-09-18,105.0,,,tt0116300,,"A slow, dialogue-free film about a woman's journey in Siberia.",0,0,Mūsų nedaug,lt +78802,Wings of Courage,1996-09-18,50.0,,,tt0114952,,,0,0,"Guillaumet, les ailes du courage",fr +16197,Dating The Enemy,1996-09-19,97.0,,,tt0116036,,One messy science journalist (Tash) and a neat television host (Brett). Two very different people whose relationship is nose diving to get the opportunity to experience life in their partners shoes when they wake up one morning in each others bodies. Valuable lessons are learned by each as they both have to adjust to very different lives.,0,0,Dating The Enemy,en +2143,Carla's Song,1996-09-20,125.0,,,tt0115832,A dream called freedom. A nightmare called Nicaragua.,A Glasgow man (Robert Carlyle) visits war-torn Nicaragua with a refugee (Oyanka Cabezas) tormented by her memories.,0,0,Carla's Song,en +46227,Susie Q,1996-09-30,83.0,,,tt0117794,Death is just the beginning.,"Susie Q was going to a dance one night when she and her boyfriend got into a car crash and fell off a bridge. Years later, a teenager named Zach Sands moves into Susie's old house. Zach's father died in a car accident so his family is his mother and his sister, Penny Sands. One night, Zach sees Susie, and she discovers that he can see her. Then Susie explains to Zach, there is a Heaven. But after death people are sent back to Earth to help their families. And sometimes when they can't help by themselves, they get special help. And that is why Zach can see her. So that he could help her family. In fact, Zach is the only one who can see Susie. And on the way, Zach falls in love with Susie. Is their love divine?",0,0,Susie Q,en +2033,Infinity,1996-10-04,119.0,,,tt0116635,,Story of the early life of genius and Nobel Prize-winning physicist Richard Feynman.,0,0,Infinity,en +15904,Faces of Death VI,1996-10-04,70.0,,97237,tt0223250,,A direct-to-video compilation of the highlights of the earlier films in the Faces of Death series.,0,0,Faces of Death VI,en +9591,That Thing You Do!,1996-10-04,108.0,,,tt0117887,In every life there comes a time when that dream you dream becomes that thing you do.,"A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.",0,34585416,That Thing You Do!,en +110909,Things I Never Told You,1996-10-11,93.0,,,tt0115950,,Ann and Don are two people caught in a somber existence who cross paths by accident and whose only true ambition is to care and feel.,0,0,Cosas que nunca te dije,es +10586,The Ghost and the Darkness,1996-10-11,109.0,,,tt0116409,Prey For The Hunters,"Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project's foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions.",50000000,75000000,The Ghost and the Darkness,en +1630,The People vs. Larry Flynt,1996-10-12,129.0,,,tt0117318,"You may not like what he does, but are you prepared to give up his right to do it?","Larry Flynt is the hedonistically obnoxious, but indomitable, publisher of Hustler magazine. The film recounts his struggle to make an honest living publishing his girlie magazine and how it changes into a battle to protect the freedom of speech for all people.",36000000,20300385,The People vs. Larry Flynt,en +266022,I Shot a Man in Vegas,1996-10-18,86.0,,,tt0113369,,Friends flash back to a fight between pals that left one dead earlier that night in Las Vegas.,0,0,I Shot a Man in Vegas,en +36758,The Portrait of a Lady,1996-10-18,144.0,,,tt0117364,Based on the Novel by Henry James.,"Ms. Isabel Archer isn't afraid to challenge societal norms. Impressed by her free spirit, her kindhearted cousin writes her into his fatally ill father's will. Suddenly rich and independent, Isabelle ventures into the world, along the way befriending a cynical intellectual and romancing an art enthusiast. However, the advantage of her affluence is called into question when she realizes the extent to which her money colors her relationships.",0,3692836,The Portrait of a Lady,en +145194,Such Is Life,1996-10-24,0.0,,,tt0117814,,,0,0,Sånt är livet,sv +9308,High School High,1996-10-25,86.0,,,tt0116531,A Dangerous Mind is a terrible thing to waste,"Richard Clark has just left the well-known Wellington Academy to teach at Marion Barry High School. Now, he will try to inspire the D-average students into making good grades and try to woo a fellow teacher.",0,21302121,High School High,en +124676,The Bloody Child,1996-10-26,85.0,,,tt0115715,An interior of violence.,"This film was inspired by a real event—a young US Marine, recently back from the Gulf War, was found digging a grave for his murdered wife in the middle of the California Mojave.",0,0,The Bloody Child,en +45875,Trilogy of Terror II,1996-10-30,90.0,,188458,tt0117966,,"Three tales of terror: in ""The Graveyard Rats"" lovers murder the woman's older husband and encounter horror when they attempt to rob his grave; ""Bobby"" is the story of a woman who summons her son back from the dead; and in ""He Who Kills"" an African doll goes on a murderous rampage.",0,0,Trilogy of Terror II,en +38554,Dear God,1996-11-01,112.0,,,tt0116059,Many people write to God. Somebody is answering.,"When letters written to God start getting results, and replies, people everywhere are amazed. The Post Office however is annoyed.",0,0,Dear God,en +124042,Buried Secrets,1996-11-04,86.0,,,tt0115788,,A young woman moves with her mother to her mother's hometown and is haunted by the ghost of a dead teenager.,0,0,Buried Secrets,en +63988,Forest Warrior,1996-11-05,93.0,,,tt0116341,It'll take more than a miracle to save Mount Tanglewood. It'll take *him*.,"John McKenna is a spiritual being who is able to transform into bear, wolf or eagle. He lives in the forests of Tanglewood and has dedicated his life to protect them. One day a gang of evil lumberjacks led by Travis Thorne arrive Tanglewood to chop the forest down. McKenna cannot let this happen, and together with his new friends - Lords of the Tanglewood, a band of children who love to play in the forest - he battles against Thorne and his evil gang.",0,0,Forest Warrior,en +11103,Head Above Water,1996-11-07,92.0,,,tt0116502,"A comedy about keeping your ex-lover a secret, your husband in the dark and your head above water.","Judge George (Harvey Keitel) brings his young wife, Nathalie (Cameron Diaz), to a remote island for a vacation. But while George accompanies their only neighbor -- Nathalie's childhood friend Lance (Craig Sheffer) -- on a fishing trip, Nathalie spends time with her ex, Kent (Billy Zane). When Kent ends up dead the next morning, Nathalie tries to hide the evidence before her husband gets home. After the body is found, the events of the previous night unravel, with unexpected revelations.",0,0,Head Above Water,en +3595,Ransom,1996-11-08,117.0,,,tt0117438,Someone is going to pay.,"When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.",80000000,309492681,Ransom,en +125409,Kiss and Tell,1996-11-09,120.0,,,tt0331541,,An undercover police officer must prove that a lonely man's missing wife was murdered.,0,0,Kiss and Tell,en +44389,Highball,1997-01-01,110.0,,,tt0119291,,A newly-married couple tries to build their social life.,0,0,Highball,en +27681,Wish Upon a Star,1996-11-12,89.0,,,tt0118178,"I Wish I May, I Wish I Might, Become My Sister For A Night!",Seventeen-year-old Alexia Wheaton hasn't been herself lately. Neighter has her 15-year-old sister Hayley. In fact they've been each other. Alexia becomes fashion-challenged Hayley and she in turn becomes styling Alexia and the complications come fast furious and funny.,0,0,Wish Upon a Star,en +409,The English Patient,1996-11-14,162.0,,,tt0116209,"In love, there are no boundaries.","Beginning in the 1930s, ""The English Patient"" tells the story of Count Almásy who is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Almásy enters into a world of love, betrayal, and politics that is later revealed in a series of flashbacks while Almásy is on his death bed after being horribly burned in a plane crash.",27000000,231976425,The English Patient,en +2300,Space Jam,1996-11-15,88.0,http://www.warnerbros.com/archive/spacejam/movie/jam.htm,,tt0117705,Get ready to jam.,"In a desperate attempt to win a basketball match and earn their freedom, the Looney Tunes seek the aid of retired basketball champion, Michael Jordan.",80000000,250200000,Space Jam,en +21566,Raja Hindustani,1996-11-15,177.0,,,tt0117437,,"This is a story of a handsome young taxi driver, Raja, who falls in love with a beautiful rich girl, Aarti. Despite her family's disapproval Aarti marries Raja and goes to live with him in his village. Aarti's stepmother, uncle and cousin weave a web of deception to split them apart. Will Aarti realize that her stepmother is deceiving her? Will Raja and Aarti ever get back together?",0,0,Raja Hindustani,hi +60083,Salut cousin !,1996-11-20,0.0,,,tt0117544,,,0,0,Salut cousin !,fr +158750,Moving Target,1996-11-26,106.0,,,tt0117096,,A bounty hunter with a pregnant wife who is urging him to get a regular job gets framed for murder and trapped in a war between Russian gangsters.,0,0,Moving Target,en +186705,"Love, etc.",1996-11-27,105.0,,,tt0116932,,"A triangle: love, obsession, and choice. Pierre, a ladies' man who has little cash and no fixed residence, describes his best friend Benoît as the world's oldest 32-year-old. The shy, well-employed Benoît's life changes when he answers the personal ad of Marie, a 25-year-old who restores paintings. He's attracted to her and she likes his steady calm and his honest attention. They're soon a couple, and they include Pierre in their dinners, outings, and trips. What will happen when Pierre realizes that he too is in love with Marie?",0,0,"Love, etc.",fr +53689,Monopol,1996-11-29,0.0,,,tt0117078,,"Egil (Knut Agnred) is just an ordinary painter. But one day, when he's about to paint a fence, incredible stuff starts to happen!",0,0,Monopol,sv +61550,Christmas Every Day,1996-11-30,95.0,,,tt0115891,,"Billy Jackson is not having a good Christmas. He got a basketball for Christmas and just cannot make a jump shot. His Uncle David is coming to town to open a Valu-Mall, which will put his Dad's store out of business. When he tells his little sister Sarah that there is no Santa she makes a wish that it would be Christmas every day. Billy now has to relive Christmas Day over and over again.",0,0,Christmas Every Day,en +33660,Shiloh,1996-11-30,93.0,,331475,tt0120118,The story of a boy who risks everything to save his best friend.,"An abused beagle runs away from his owner. On the road, he meets young Marty Preston and follows him home. The boy immediately forms a bond with the dog and names him Shiloh. His stern father won't let him keep the dog because it belongs to Judd Travers, a local hunter. After Shiloh is mistreated again, he runs away and returns to Marty. Knowing his father will once again make him bring Shiloh back to Judd, he makes a home for the dog in an old shed up the hill from the Prestons' house and hides him from his family. His secret is soon discovered when a stray attacks the dog one night and he must turn to his father for help.",0,0,Shiloh,en +9716,Everyone Says I Love You,1996-12-06,101.0,,,tt0116242,,A New York girl sets her father up with a beautiful woman in a shaky marriage while her half sister gets engaged.,20000000,0,Everyone Says I Love You,en +75,Mars Attacks!,1996-12-12,106.0,http://marsattacks.warnerbros.com/,,tt0116996,Nice planet. We'll take it!,"'We come in peace' is not what those green men from Mars mean when they invade our planet, armed with irresistible weapons and a cruel sense of humor. This star studded cast must play victim to the alien’s fun and games in this comedy homage to science fiction films of the '50s and '60s.",70000000,101371017,Mars Attacks!,en +26368,Spring and Chaos,1996-12-14,55.0,,,tt0223503,,"Set in the beginning of the 20th century Japan, the film follows the bright and eccentric Kenji from his late student years through his adulthood. Kenji suffers the tragedy of being an artist who's art isn't recognized during his lifetime. Based on the life of the author Kenji Miyazawa, the film depicts his brief but intense existence.",0,0,"Ihatôbu gensô, Kenji no haru",ja +36214,Rebirth of Mothra,1996-12-14,104.0,,171732,tt0117089,,A new Mothra takes to the air and must battle Death Ghidora to save humanity.,0,0,モスラ,ja +155724,Escape Clause,1996-12-15,99.0,,,tt0116224,,"A man finds out that his wife has paid $10,000 to have him killed. Then both the would-be killer and the wife turn up dead ...",0,0,Escape Clause,en +26949,In Love and War,1996-12-18,113.0,,,tt0116621,In war they found each other...In each other they found love...,"After teenage ambulance driver Ernest Hemingway (Chris O'Donnell) takes shrapnel in the leg during World War I, he falls in love with Agnes von Kurowsky (Sandra Bullock), a beautiful older nurse at the hospital where he's sent to recover. Their affair slowly blossoms, until Hemingway boldly asks Agnes to be his wife and journey to America with him. Richard Attenborough directs this drama based on the real-life experiences of the famed novelist.",0,0,In Love and War,en +9819,Marvin's Room,1996-12-18,98.0,,,tt0116999,A story about the years that keep us apart... And the moments that bring us together.,A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.,23000000,12803305,Marvin's Room,en +60173,Nemesis 4: Death Angel,1996-12-23,80.0,,286948,tt0113949,The future has a past.,"Alex shoots again. She has to kill a man, but shoots the wrong one. A high ransom is set on her, so she is visited by some head hunters. Well, she only could sit and wait and hope for a friend's help.",0,0,Nemesis 4: Death Angel,en +27265,Mother,1996-12-25,104.0,,,tt0117091,No Actual Mothers Were Harmed During The Making Of This Motion Picture.,"After two failed marriages a science fiction writer decides that coming to terms with his mother will improve his chances for a successful relationship, so he moves in with her.",0,0,Mother,en +10549,Hamlet,1996-12-25,242.0,,,tt0116477,,"Hamlet, Prince of Denmark, returns home to find his father murdered and his mother remarrying the murderer, his uncle. Meanwhile, war is brewing.",0,0,Hamlet,en +57548,Lilla Jönssonligan på styva linan,1997-01-01,104.0,,104769,tt0119539,Lilla Jönssonligan på styva linan,Dom är tillbaka!,0,0,Lilla Jönssonligan på styva linan,sv +135686,The Headhunter's Sister,1997-01-01,96.0,,,tt0119264,,"Ray, who lives in New York, is visited by his younger sister there. At first they don't understand each other, and Ray has problems with his new wife who is a Colombian immigrant and doesn't speak English.",0,0,The Headhunter's Sister,es +361992,Bhai,1997-01-01,0.0,,,tt0135161,,"Bhai is a 1997 Bollywood Action film directed by Deepak Shivdasani, while written by Kader Khan. The film starred Sunil Shetty, Pooja Batra, Sonali Bendre and Ashish Vidyarthi in lead roles. A remake of the Telugu movie Anna starring Rajasekhar, Roja Selvamani and Gautami Tadimalla, it was a huge success at the box office, and was one of the highest-grossing films of the year 1997.",0,0,Bhai,en +170838,Mr. & Mrs. Khiladi,1997-01-01,0.0,,,tt0162480,,"When his astrologer uncle (Satish Kaushik) predicts a favorable future for Raja (Akshay Kumar), he decides to nothing until the prediction comes true. When he meets Shalu (Juhi Chawla) the daughter of a millionaire (Kadar Khan) he decides his predicted future has arrived. However his lazy lifestyle does not meet with his future father-in-law's standards, and he insists that Raja does some hard work for a change. Written by gavin@sunny_deol2009@yahoo.com",0,0,Mr. & Mrs. Khiladi,en +181628,Search for the Beast,1997-01-01,82.0,,,tt0129358,,"Dr. David Stone is a scientist with a special interest in legends about the Okaloosa wilderness, where a violent, man-like beast is said to dwell, and where many campers have disappeared over the years. When local moneyman Milton St. John offers to fund an expedition to look for the monster, Stone readily accepts, not realizing that St. John's son was one of those missing campers, and that his financier is not interested in science, but in getting revenge on the beast!",0,0,Search for the Beast,en +276165,The Adventures of Mary-Kate & Ashley: The Case of the United States Navy Adventure,1997-01-01,30.0,,,tt0283856,,"Travel with the pint-sized supersleuths, Mary-Kate and Ashley Olsen (""Full House""), and their sidekick dog, Clue, to the Edge of the World, where a fleet of UFOs have been flying over Earth every 93 minutes.",0,0,The Adventures of Mary-Kate & Ashley: The Case of the United States Navy Adventure,en +20992,Brother,1997-01-01,96.0,http://brat2.film.ru/brat1.asp,218293,tt0118767,,"Danila goes to his older brother to start a new life in Petersburg. His brother is a gangster and a killer, and he puts Danila into this criminal world asking him to kill someone.",0,0,Брат,ru +55700,Ossos,1997-01-01,94.0,,,tt0119844,,"After a suicidal teenage girl gives birth, she misguidedly entrusts her baby’s safety to the troubled, deadbeat father, whose violent actions take the viewer on a tour of the foreboding, crumbling shantytown in which they live.",0,0,Ossos,pt +26689,Retroactive,1997-01-01,91.0,,,tt0117468,,A psychiatrist makes multiple trips through time to save a woman that was murdered by her brutal husband.,0,0,Retroactive,en +26891,The Castle,1997-01-01,123.0,,,tt0120075,,"Michael Haneke's adaptation of Franz Kafka's unfinished novel Das Schloss. K arrives in a remote village a stranger. In attempting to establish himself there, he enters the nightmarish world of the castle bureaucracy.",0,0,Das Schloß,de +186292,The Collector,1997-01-01,98.0,,,tt0119769,,"Eevi's life isn't going the way she would want it to, so she runs away, leaving destruction in her wake. No one will ever say no to her again.",0,0,Neitoperho,fi +18222,Poison Ivy: The New Seduction,1997-01-01,93.0,,48188,tt0119908,All the rules are about to be broken.,A sinister seductress vows to destroy a suburban family.,0,0,Poison Ivy: The New Seduction,en +119820,The Unfish,1997-01-01,0.0,,,tt0114502,,,0,0,Der Unfisch,de +263873,The Undertaker's Wedding,1997-01-01,89.0,,,tt0120413,,,0,0,The Undertaker's Wedding,fr +17100,Trucks,1997-01-01,95.0,,,tt0120380,,"Based on the short story by Stephen King, this tells the tale of trucks suddenly coming to life and attacking their owners.",0,0,Trucks,en +220724,Armageddon,1997-01-01,0.0,,,tt0183892,,"The world's ten most influential scientists are being mysteriously killed, one by one, spontaneously combusted, microwaved to death, or otherwise. Another scientist, software prodigy Dr. Ken, searches for clues to these bizarre happenings only to see his fiancee apparently return from the dead. As indications point to the end of the world, It appears that Dr. Ken may be the only one who can save humanity.",0,0,天地雄心,cn +64968,Marius and Jeannette,1997-01-01,0.0,,,tt0119620,,,0,0,Marius et Jeannette,fr +47112,A Further Gesture,1997-01-01,96.0,,,tt0116379,,"Dowd, an IRA prisoner in the H-blocks, is gloomily facing his sentence, until he joins a comrade in a risky escape. Dowd begins a new life in New York, but he might as well be in prison again - until he strikes up a friendship with co-worker Tulio and gets to know his close group of Guatemalan exiles.",0,0,A Further Gesture,en +29911,FairyTale: A True Story,1997-01-01,99.0,,,tt0119095,Believe.,"Two children in 1917 take a photograph, believed by some to be the first scientific evidence of the existence of fairies. Based on a true story",0,14000000,FairyTale: A True Story,en +48319,Joyride,1997-01-01,93.0,,,tt0119426,Would you kill for the ride of your life?,Three excitement-craving friends get more than they bargained for when they steal a hit woman's automobile.,0,0,Joyride,en +44641,Men with Guns,1997-01-01,127.0,,,tt0119657,,"Dr. Fuentes is a medical professor approaching his retirement and journeys to find old students, with sometimes disturbing results.",0,0,Men with Guns,en +358293,Today,1997-01-02,0.0,,,tt0211083,,No overview.,0,0,Tänään,en +274325,Keeping the Promise,1997-01-05,0.0,,,tt0119454,,"A colonial family seeks a better life in Maine's wilderness in this powerful adventure. When William Hallowell leaves behind 13-year-old son Matt to safeguard their claim, the boy relies on his new friendship with the Penobscot Indians for survival.",0,0,Keeping the Promise,en +74192,Love Can Seriously Damage Your Health,1997-01-10,129.0,,,tt0115536,,A woman seduces a hotel janitor to gain access to the famous musicians coming into town.,0,0,El amor perjudica seriamente la salud,es +19665,The Arrow,1997-01-12,180.0,,,tt0118641,The right stuff. The wrong time.,"This series tells the story of the world's fastest fighter plane ever built, in 1950's Canada, and how the project was dropped due to political pressure from the United States.",7800000,0,The Arrow,en +638,Lost Highway,1997-01-15,134.0,,,tt0116922,,"A tormented jazz musician finds himself lost in an enigmatic story involving murder, surveillance, gangsters, doppelgangers, and an impossible transformation inside a prison cell.",15000000,3675201,Lost Highway,en +215373,Love Walked In,1997-01-18,95.0,,,tt0118727,,Two romantically involved down-and-out lounge singers get involved in a caper.,0,0,Love Walked In,en +90414,"I Love You, Don't Touch Me!",1997-01-21,86.0,,,tt0130019,Just Your Typical Boy-Loves-Girl Who Doesn't Love Boy Till He Loves Other Girl Story,"The story of a 25 year old virgin girl, looking for the right boyfriend, not realizing that ""the one"" has been next to her for many years.",0,0,"I Love You, Don't Touch Me!",fr +64784,Gestalt,1997-01-22,60.0,,,tt0286648,,"Oliver is a young priest of that Vasaria order, and a devout servant of his church. He has grown up with legends of a god who dwells on G, a distant island so forbidden that even speaking its name brings certain damnation! When Oliver saves the mute girl Ohiri from slavery, their destinies become intertwined and they set out on a perilous journey to G. Actually a silenced sorceress from the forbidden island, Ohiri is involved in a deadly game of survival that brings her and Oliver face to face with treacherous dark elves, powerful elementals, and a quest filled with plot twists, magic, and wonder.",0,0,超獣伝説ゲシュタルト,ja +42424,Zeus & Roxanne,1997-01-24,98.0,,,tt0120550,,"Mary Beth is a marine biologist that gets annoyed when a dog called Zeus stows aboard her research boat. Nevertheless she is intrigued when the intrusive canine makes best-friends with her captive dolphin, Roxanne. She falls in love with Zeus's owner, Terry, a musician who rides a bike.",0,0,Zeus & Roxanne,en +65416,An American Vampire Story,1997-01-24,99.0,,,tt0251582,You're not going anywhere,"A group of friends go on a vacation with some new friends that turn out to be vampires, they hire a famous vampire killer to help them.",0,0,An American Vampire Story,en +90616,Future War,1997-01-28,90.0,,,tt0113135,"Past Predator, Present Alien, Future Terminator",A runaway human slave from Earth's future escapes to the present day.,0,0,Future War,en +1655,Praxis Dr. Hasenbein,1997-01-30,97.0,,,tt0119932,,No overview found.,0,0,Praxis Dr. Hasenbein,de +21060,It's in the Water,1997-01-30,100.0,,,tt0116661,,"When hordes of gays and lesbians come out ""of the closet"" in the fictional town of Azalea Springs, Texas, intolerant residents go into a panic about the water supply.",0,0,It's in the Water,en +10622,Mr. Nice Guy,1997-01-31,113.0,,,tt0117786,Fight first. Apologize later.,A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.,12716953,18814720,一個好人,cn +152861,Outsider,1997-02-13,0.0,,,tt0117273,,"A teenager, son of an army officer moves with his family to Ljubljana in the fall of 1979. In the new surroundings, he'll fall in love, make friends and discover the world of punk rock. The latter will put him into the troubles with his strict father.",0,0,Outsider,sl +20735,That Darn Cat,1997-02-14,89.0,,,tt0120317,"This FBI agent is purring his life on the line. Fortunately, he's got nine.","While making his nightly rounds in the neighborhood, Patti's pet cat D.C. finds himself the carrier of a call for help from a kidnap victim. Patti enlists skeptical law enforcement help to find the victim before it's too late.",0,0,That Darn Cat,en +333165,Unforgotten: Twenty-Five Years After Willowbrook,1997-02-14,0.0,,,tt0118042,,"It was a nightmare that shocked not only New York, but all of America. The public outcry about the Willowbrook State School for people with developmental disabilities resulted from Geraldo Rivera's expose on WABC after he had entered Willowbrook with a film crew in 1972, using a stolen key.",0,0,Unforgotten: Twenty-Five Years After Willowbrook,en +61563,Touch,1997-02-14,96.0,,,tt0120357,A Wicked Comedy,"When Juvenal, a presumed miracle worker, appears on the scene Bill Hill attempts to exploit him but his plans go astray with the untimely intervention of August Murray and the developing relationship between Juvenal and Lynn Faulkner.",0,0,Touch,en +34582,Junk Mail,1997-02-21,83.0,,,tt0118785,,"Dimwitted, somewhat misanthropic Oslo mail carrier Roy's quiet life changes dramatically on the day he steals a set of keys and lets himself into the apartment of a deaf woman who seems to be in trouble with a psychotic criminal. Though he doesn't know it at the time, his and her fate are about to intertwine and this is not going to be to his benefit.",0,0,Budbringeren,nb +266333,The Ditchdigger's Daughters,1997-02-23,92.0,,,tt0118989,,"Based on the memoirs of Yvonne S. Thornton, this heartwarming, inspirational family drama centers on a poor black laborer who wanted his six daughters to grow up to be doctors.",0,0,The Ditchdigger's Daughters,en +69560,Dying to Belong,1997-02-24,120.0,,,tt0119031,Everything Seemed Perfect...,"When a girls friend is killed by a college hazing, she is the only one who can find out the truth.",0,0,Dying to Belong,en +52366,Lucie Aubrac,1997-02-26,115.0,,,tt0119586,,"A love story or a tale of the resistance, this poignant movie tells both the haunting story of a French resistance cell in Lyon but also the love of Lucie Aubrac for her husband...",0,458557,Lucie Aubrac,fr +9366,Donnie Brasco,1997-02-27,127.0,,,tt0119008,Based on a true story.,An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.,35000000,41954997,Donnie Brasco,en +9403,Private Parts,1997-03-07,109.0,,,tt0119951,Never before has a man done so much with so little.,"The auto-biographical story of Howard Stern, the radio-rebel who is now also a TV-personality, an author and a movie star.",28000000,41230799,Private Parts,en +186755,Territorio comanche,1997-03-07,0.0,,,tt0120311,,Spanish TV reporters covering the War in Bosnia. Based on true experience,0,0,Territorio comanche,en +125093,Too Much Sleep,1997-03-07,88.0,,,tt0120352,,"While riding the bus one day, night watchman Jack Crawford gets distracted by a beautiful girl and has his gun stolen. To get it back, he enlists the help of local wise guy, Eddie, and their search reveals the bizarre characters lurking in the strange underworld of a sleepy New Jersey suburb.",0,0,Too Much Sleep,en +60125,Men Seeking Women,1997-03-08,92.0,,,tt0219919,"Three friends, finding themselves single on their 33'rd birthdays, agree to bet $2000 each to see who can get a girlfriend and live together for three months.","Three friends, finding themselves single on their 33'rd birthdays, agree to bet $2000 each to see who can get a girlfriend and live together for three months.",0,0,Men Seeking Women,en +39998,The Fruit is Swelling,1997-03-12,90.0,,,tt0167945,,An 8-year-old girl named Peach makes a wish and wakes up to find herself transformed into an 18-year-old woman.,0,0,Mi tao cheng shu shi 1997,en +218508,Setouchi Moonlight Serenade,1997-03-15,117.0,,,tt0120101,,"After the 1995 Kobe earthquake, a writer remembers travelling with his family to bury his brother after World War II.",0,0,瀬戸内ムーンライト・セレナーデ,ja +148636,The Hunchback,1997-03-16,98.0,,,tt0119329,,"Based on the novel, a young gypsy becomes a Minister's obsession in 1483. Only the bell ringer and her husband and the court of miracles can save her.",0,0,The Hunchback,en +11425,"Honey, We Shrunk Ourselves",1997-03-18,74.0,,72119,tt0119310,The world's wackiest scientist has done it again!,"The joke's on absent-minded scientist Wayne Szalinski when his troublesome invention shrinks him, his brother and their wives so effectively that their children think they've completely disappeared. Of course, this gives the kids free rein to do anything they want, unaware that their parents are watching every move.",7000000,0,"Honey, We Shrunk Ourselves",en +1624,Liar Liar,1997-03-21,86.0,,,tt0119528,Trust me.,"Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.",45000000,302710615,Liar Liar,en +2965,"20,000 Leagues Under the Sea",1997-03-23,95.0,,,tt0118247,Darkness is to be feared... above and below.,"In the 19th century, an expert marine biologist is hired by the government to determine what's sinking ships all over the ocean. His daughter follows him. They are intercepted by a mysterious captain Nemo and his incredible submarine.",0,0,"20,000 Leagues Under the Sea",en +2734,David,1997-03-23,190.0,,2704,tt0118933,David,"The tribes of Israel need to defeat the superior might of the Philistines: ""Now appoint a king to lead us, such as all the other nations have."" (I Samuel, 8:5). And so the prophet Samuel gives the Hebrews their first king, Saul. Saul, however, has incessant doubts about his mission. The influential prophet Samuel turns away from Saul in order to select a new king according to God's will: David. He is still a young boy, tending sheep in the fields, when, secretly Samuel oints him as the next king of the Israelites.",15000000,0,David,en +6499,Turbo: A Power Rangers Movie,1997-03-27,99.0,,286162,tt0120389,The Power Is Back!,"The legendary Power Rangers must stop the evil space pirate Divatox from releasing the powerful Maligore from his volcanic imprisonment on the island of Muranthias, where only the kindly wizard Lerigot has the key to release him. The hope of victory lies in the Ranger's incredible new Turbo powers and powerful Turbo Zords.",10000000,17979739,Turbo: A Power Rangers Movie,en +36807,The Sixth Man,1997-03-28,107.0,,,tt0120142,They're lifting the game to a higher level,"Antoine and Kenny Tyler are NCAA college basketball players, and Antoine is the star. Suddenly Antoine dies of heart attack and Kenny has to fill his shoes as leader of team. Some time later, Antoine returns as a ghost and helps Kenny in game and in life, but Kenny changes in the process and doesn't quite like it.",0,0,The 6th Man,en +10003,The Saint,1997-04-03,116.0,,86224,tt0120053,Never reveal your name. Never turn your back. Never surrender your heart.,"Ivan Tretiak, Russian Mafia boss who wants to create an oil crisis in Moscow and seize power as a result sends Simon Templar, great international criminal, to England to get a secret formula for cold fusion from U.S. scientist Emma Russell. Templar falls in love with Emma and they try to outwit Tretiak and his guerrillas, hiding from them in Moscow",68000000,118063304,The Saint,en +66741,Total Reality,1997-04-03,100.0,,,tt0120356,A Deadly Mission from the Future,"David Bradley, stars as the roguish soldier Anthony Rand, who follows a ruthless general back through time in a last ditch attempt to save the universe.",0,0,Total Reality,en +9405,Double Team,1997-04-04,93.0,,,tt0119013,America's top counter-terrorist usually works alone... this time he's got company.,He's a one-man arsenal... with enough voltage to rock the free world. They Don't Play by the Rules. You're either on their side...or in their way. America's top counter-terrorist usually works alone...this time he's got company.,30000000,0,Double Team,en +50512,Anna Karenina,1997-04-04,108.0,,,tt0118623,"In a world of power and privilege, one woman dared to obey her heart.",Anna (Marceau) is a wife and mother who has an affair with the handsome Count Vronsky (Bean). Based on the novel by Tolstoy.,35000000,791830,Anna Karenina,en +25796,That Old Feeling,1997-04-04,105.0,,,tt0120318,It was the perfect wedding except for two things... the bride's parents.,A bride's divorced parents find their old feelings for each other during the wedding reception and over the course of the next few days upsetting the newlywed's honeymoon.,0,0,That Old Feeling,en +13852,The Castle,1997-04-10,85.0,,,tt0118826,Ordinary Family. Extraordinary Story.,"A Melbourne family is very happy living near the Melbourne airport. However, they are forced to leave their beloved home (by the Government and airport authorities) to make way for more runways. 'The Castle' is the story of how they fight to remain in their home.",786675,861789,The Castle,en +118991,Keys to Tulsa,1997-04-11,113.0,,,tt0116762,Two Men Taken By One Woman,"Richter Boudreau is on a bad streak: Languishing in the shadow of his celebrity mother, he loses his job as a film critic for the town paper, and now he's been approached with a dangerous proposition that ultimately leads to blackmail. Richter's friend Ronnie ropes him into a scheme to steal the inheritance of his wife, Vicky.",0,57252,Keys to Tulsa,en +15321,Twin Town,1997-04-11,99.0,,,tt0120394,,"Jeremy and Julian Lewis, the ""Lewis Twins"", are two unruly brothers who terrorise the city of Swansea from the caravan park where they live with their family. When their father, Fatty, is injured while working on a roof for local kingpin Bryn Cartwright, they try in vain to claim compensation. Thus begins a campaign of terror, which local policemen Terry and Grayo are ill-equipped to prevent, involved as they are in a drugs deal with Cartwright.",0,0,Twin Town,en +148478,Freakin' Beautiful World,1997-04-11,95.0,,,tt0117540,,"Ippe and Papu are two teenagers spending the summer, when they get into trouble with their drug-dealer. They are forced to act as drug-mules. Along the way they meet a new girl, Mia.",0,0,Sairaan kaunis maailma,fi +119639,Mother Knows Best,1997-04-13,96.0,,,tt0119710,,"A woman urges her daughter to get married. And when her daughter does, she doesn't think that she made a good choice. So she goes out and hires a killer to kill her son-in-law.",0,0,Mother Knows Best,en +17139,Character,1997-04-17,122.0,,,tt0119448,,"J.W. Katadreuffe is the son of Joba Katadreuffe and A.B. Drevenhaven. Though fully neglected by Joba, Dreverhaven ensures the succesfull career of his son. Mostly unseen, though he sues his son a few times. The son Katadreuffe succeeds, but at great costs.",4500000,0,Karakter,nl +86543,Rose Hill,1997-04-20,90.0,,,tt0117515,,Four orphan boys running from the law in New York stumble upon a baby in a carriage. They decide to head west and take the baby which they name Mary Rose with them. Eventually they set up a ranch which they name Rose Hill. Mary Rose grows up to be a beautiful woman and gets involved with a man who kills one of her brothers. Her brothers then explain to her that they found her in New York and she returns to find her real family. During this time Rose Hill is falling apart since her oldest brother has fallen ill and her other two brothers have gone their separate ways.,0,0,Rose Hill,en +37517,Kiss or Kill,1997-04-23,96.0,,,tt0119467,Lovers on the RUN . . .,"Two lovers, Nikki and Al, have a scam in which Nikki allows herself to be picked up by older men, drugs them, and, with Al's help, robs them. After accidentally killing one of her victims with an overdose, Nikki and Al are on the run.",0,0,Kiss or Kill,en +10351,Wishmaster,1997-09-19,90.0,,135489,tt0120524,Be careful what you wish for.,"The Djinn having been released from his ancient prison seeks to capture the soul of the woman who discovered him, thereby opening a portal and freeing his fellow Djinn to take over the earth.",5000000,15719109,Wishmaster,en +9611,Romy and Michele's High School Reunion,1997-04-25,92.0,,,tt0120032,The Blonde Leading The Blonde.,"Two not-too-bright party girls reinvent themselves for their high school reunion. Armed with a borrowed Jaguar, new clothes and the story of their success as the inventors of Post-It notes, Romy and Michele descend on their alma mater, but their façade crumbles quickly.",0,29235353,Romy and Michele's High School Reunion,en +45899,Leila,1997-04-25,102.0,,,tt0116851,The tragedy of a love torn apart by each partner's overeagerness to please the other.,"This film tells the story of a semi modern Iranian couple, who are trying to fight the old beliefs & old generation. This is a failing battle because the man is not strong enough.",0,0,لیلا,fa +2764,All Stars,1997-05-01,115.0,,257071,tt0118588,,,0,0,All Stars,nl +41581,Dunno on the Moon,1997-05-01,151.0,,,tt0219207,,"They are neither adults nor kids - somewhere in between, living in their separate boys and girls cozy dorms and doing whatever they love to do - inventors, artists, poets, mechanists, scientists and....just dreamers! These enthusiastic and creative folks enjoy their half-adult, half-childish lifestyles and entertain each other with the different tricks and practical jokes. The main hero stands out of the crowd - while the others try to live the normal life socializing as they can, he can never be rested, always coming up with the different unpredictable and unexpected moves, which always make viewers burst with laugh....",0,0,Незнайка на Луне,ru +18,The Fifth Element,1997-05-07,126.0,,,tt0119116,There is no future without it.,"In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.",90000000,263920180,The Fifth Element,en +12499,Fathers' Day,1997-05-09,89.0,,,tt0119109,,"After Scott has a fight with his father and runs away and when his father refuses to go after him. His mother, Collette, then goes to one of her former boyfriends, Jack, a lawyer, and tells him that he's her son's real father. Jack initially refuses. So she goes to another boyfriend, Dale, who goes off looking for Scott. Eventually the two men meet and realize that they are looking for the same boy and that Collette told them they are the boy's father. What follows is a mad chase, cause the boy doesn't want to go back.",85000000,0,Fathers' Day,en +1811,Nowhere,1997-05-09,82.0,,259398,tt0119809,Let the love feast begin.,"The third film in a trilogy by writer-director Gregg Araki. Described as ""90210 on acid"", the film tells the story of a day in the lives of a group of high school kids in Los Angeles and the strange lives they lead.",0,27354,Nowhere,en +2966,"20,000 Leagues Under the Sea",1997-05-11,158.0,,,tt0118248,Welcome to the last place on earth.,"The year is 1886, when New England's fishing harbours are the scene for a ""creature of unknown origin"" destroying ships at sea. It is the job of Professor Pierre Aronnax, a marine expert, and Ned Land, the iron willed sailor, to learn the truth of the ""monster"" roaming the seas. The great novelist, Jules Verne, described this perilous journey to the darkest depths of the sea with Captain Nemo aboard the Nautilus.",0,0,"20,000 Leagues Under the Sea",en +29054,Black Scorpion II: Aftershock,1997-05-13,85.0,,319644,tt0115696,Seductive and Beautiful. But Lethal.,"Darcy is back on the force, but still fights on as the Black Scorpion because ""it's in her nature."" This time, she fights Gangster Prankster; and a new villian emerges when the Mayor tries to protect his federal earthquake relief money: Aftershock. When the two villians team up and kidnap Argyle's girlfriend, Black Scorpion is faced with the theft of the Scorpionmobile and the imminent destruction of Angel City.",0,0,Black Scorpion II: Aftershock,en +60082,Sprung,1997-05-14,105.0,,,tt0120190,Way Past Whipped!,"Two pairs of best friends - Montel & Clyde and Brandy & Adina meet at the party, where Clyde makes Adina think he is very rich and gets her into bed the same evening. When Adina finds out that she's been fooled, she becomes Clyde's worst enemy. Meanwhile Montel and Brandy fall in love and plan to marry, and Adina and Clyde try to do everything to stop them.",0,7553105,Sprung,en +174487,True Love and Chaos,1997-05-22,97.0,,,tt0117975,,"Hanif and Dean steal a cache of drugs from Dean's psychotic brother Jerry, and at the last minute get a lift with Mimi as she decides to drive to Perth. They pick up a drunken singer, Morris, as they cross the country, chased by Jerry. Written by Simon Bastin",0,0,True Love and Chaos,en +45266,Behind Enemy Lines,1997-05-23,89.0,,,tt0115647,,An ex-marine returns to Vietnam when he learns his former mercenary partner whom he thought was killed is being held by a sadistic general.,0,0,Behind Enemy Lines,en +125021,The Designated Mourner,1997-05-23,94.0,,,tt0118964,,"Jack and Judy are husband and wife, and Howard is Judys father. They live in some fictional undemocratic and repressive country, and tell us a story about their lives, mostly from Jack's point of view.",0,0,The Designated Mourner,en +17770,Trial and Error,1997-05-30,98.0,,,tt0120373,,"An actor poses as a lawyer to help his sick friend, and problems develop.",0,0,Trial and Error,en +32872,Til There Was You,1997-05-30,113.0,,,tt0118523,,"Two strangers, whose paths are always crossing, finally meet when fate steps in. It took them twenty years to fall in love at first sight.",1000000,0,Til There Was You,en +128612,Invader,1997-06-02,90.0,,,tt0116646,,"When the Viking space capsule suddenly returns to Earth from its long ago trip to Mars, it brings with it an intelligent visitor that is part ""Alien"" and part ""ET"". Encased in armor, it extends a human like form from its shell to examine its surroundings and shows an interest in humans including a soft caress of a female scientist prior to the Army killing it. This only enrages its sibling.",0,0,Invader,en +15170,Buddy,1997-06-06,84.0,,,tt0118787,Welcome to a family that will make yours seem tame,An eccentric socialite raises a gorilla as her son.,0,0,Buddy,en +291634,The Next Step,1997-06-13,0.0,,,tt0113968,,Backstage at a Broadway show.,0,0,The Next Step,en +125025,East Side Story,1997-06-25,78.0,,,tt0119040,All Singing! All Dancing! All Marxist Musicals!,"A look at Communist musicals that strove to be ideologically correct - and entertaining, besides.",0,0,East Side Story,en +152653,Clubbed to Death,1997-06-25,0.0,,,tt0117329,,,0,0,Clubbed to Death,fr +124057,Kids of the Round Table,1997-07-08,89.0,,,tt0113541,,"Set in modern times, Alex finds King Arthur's sword Excalibur and must prove himself worthy of it.",0,0,Kids of the Round Table,en +31978,Defying Gravity,1997-07-09,92.0,,,tt0156460,,John Keitel wrote the film based on his personal undergraduate experience and filmed campus footage in the neighborhood and environs surrounding his graduate film school alma mater USC.,0,0,Defying Gravity,en +26644,Photographing Fairies,1997-09-19,106.0,,,tt0119893,,"Photographer Charles Castle is numbed with grief following the death of his beautiful bride. He goes off to war, working in the trenches as a photographer. Following the war and still in grief Charles is given some photographs purporting to be of fairies. His search for the truth leads him to Burkinwell, a seemingly peaceful village seething with secrets",0,0,Photographing Fairies,en +10603,George of the Jungle,1997-07-15,92.0,,126221,tt0119190,Watch out!,"Baby George got into a plane crash in a jungle, stayed alive and was adopted by a wise ape. Ursula Stanhope, US noble woman is saved from death on safari by grown-up George, and he takes her to jungle to live with him. He slowly learns a rules of human relationships, while Ursula's lover Lyle is looking for her and the one who took her. After they are found, Ursula takes George to the USA.",55000000,0,George of the Jungle,en +29083,Snowboard Academy,1997-07-16,88.0,,,tt0117676,,A wacky free-for-all comedy about the riotous rivalry between snobby skiers and knuckle-dragging snowboarders.,0,0,Snowboard Academy,en +400948,UFOs: The Best Evidence Ever Caught on Tape,1997-07-28,45.0,,,tt0326325,,Proffesional photographers and UFO video hunters capture extraordinary objects in the skies around the world,0,0,UFOs: The Best Evidence Ever Caught on Tape,en +9956,The Brave,1997-07-30,123.0,,,tt0118768,,"A down-on-his-luck American Indian recently released from jail is offered the chance to ""star"" as the victim of a snuff film, the resulting pay of which could greatly help his poverty stricken family.",0,0,The Brave,en +10336,Spawn,1997-07-31,96.0,,,tt0120177,Born in darkness. Sworn to justice.,"After being murdered by corrupt colleagues in a covert government agency, Al Simmons (Michael Jai White) makes a pact with the devil to be resurrected to see his beloved wife Wanda (Theresa Randle). In exchange for his return to Earth, Simmons agrees to lead Hell's Army in the destruction of mankind.",40000000,87840042,Spawn,en +21334,Children of Heaven,1997-08-01,89.0,http://www.miramax.com/movie/children-of-heaven/,,tt0118849,A Little Secret...Their Biggest Adventure!,"Zohre's shoes are gone; her older brother Ali lost them. They are poor, there are no shoes for Zohre until they come up with an idea: they will share one pair of shoes, Ali's. School awaits...",180000,900000,بچه‌های آسمان,fa +232739,Perfumed Ball,1997-08-01,93.0,,,tt0118674,,"A Lebanese photographer living in Brazil in the '30s manages to take pictures of Lampião, a legendary Brazilian outlaw, kind of a tropical Robin Hood.",0,0,Baile Perfumado,pt +125510,Slayers Great,1997-08-02,61.0,,145553,tt0161978,,"Lina and Naga, on their way to a town called Storner, robbed bad guys of their precious treasure. Storner was known as a town of ""Gorlems"" moved by magic power. And again the two were thrown into trouble by a girl called Leia. Galia, Leia's father, and Huey, her brother argued all the time and both are skilled ""Gorlem"" artisans. Lina and Naga were forced to face each other (each one inside a gorlem, Lina's one made by Galia and Naga's one made by Huey) by two villains, Heisen and Granion who were competing for supreme power over the town.",0,0,スレイヤーズ ぐれえと,ja +285935,Aksuat,1997-08-09,90.0,,,tt0224594,,A Kazakh villager has to take care of his pregnant sister-in-law after his brother is thrown in jail.,0,0,Ақсуат,en +45120,Elvis Meets Nixon,1997-08-12,95.0,,,tt0122474,Truth is funnier than fiction!,"A ""mockumentary"" about Elvis's real-life trip to the White House to become a federal marshal under the DEA",0,0,Elvis Meets Nixon,en +9427,The Full Monty,1997-08-13,91.0,,,tt0119164,The year's most revealing comedy.,"Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.",3500000,257850122,The Full Monty,en +55759,Vääpeli Körmy ja kahtesti laukeava,1997-08-15,103.0,,148320,tt0122787,,,0,0,Vääpeli Körmy ja kahtesti laukeava,fi +46436,Virtual Weapon,1997-08-25,90.0,,,tt0275287,,,0,0,Virtual Weapon,it +41638,Broadway Damage,1997-08-26,0.0,,,tt0118780,,Romantic comedy about aspiring writers in NY.,0,0,Broadway Damage,en +57327,Post Coitum,1997-08-29,97.0,,,tt0119923,,The end of an affair from the woman's point of view.,0,0,Post coïtum animal triste,de +26180,Excess Baggage,1997-08-29,101.0,,,tt0119086,"A crash course in kidnappings, car thefts and other rituals of dating.","A rich brat (Alicia Silverstone) fakes her own kidnapping, but in the process ends up locked in the trunk of a car that gets stolen.",0,0,Excess Baggage,en +46187,The Thief,1997-08-31,96.0,,,tt0124207,,"In 1946, a soldier fathers a child then dies before its birth. Jump to 1952: on a train, the child and his mother meet a handsome soldier who makes a play for her. She accepts. Posing as a married family, the soldier finds them a rooming house where he becomes everyone's favorite through his good looks and generosity. Meanwhile he gives the boy, Sanya, lessons in life: to fight back, to win at all costs. The child's mother, Katya, is head-over-heels in love with Tolyan, the soldier, but the relationship becomes rocky when Tolyan's true plans for the rooming house become clear. It starts them on a treadmill of flight that risks Katya's life, Tolyan's liberty, and Sanya's trust.",0,0,Вор,ru +107499,A Better Place,1997-09-01,87.0,,,tt0118705,,A high school outcast new to town becomes friends with a violent loner still haunted by the death of his parents.,0,0,A Better Place,en +30265,Chinese Box,1997-09-04,99.0,,,tt0118851,,"The story of Hong Kong, from New Year's Day to June 30th, 1997, when the British left their colony and turned it over to the People's Republic of China.",0,0,Chinese Box,en +70581,Heaven's Burning,1997-09-04,96.0,,,tt0119272,Vengeance takes no prisoners.,"In Sydney, the newly married Midori is honeymooning with her husband, Yukio. She does not love him and fakes her own kidnapping to escape the marriage. Her lover is supposed to meet her, but fails to appear. She goes to a bank to get some cash, only to become a hostage in an unfolding robbery, until the getaway driver, Colin, saves her from his fellow robbers. They hit the road together, with the cops, her husband and the robbers in pursuit.",0,0,Heaven's Burning,en +37410,Henry Fool,1997-09-07,137.0,,378453,tt0122529,,An egocentric bum transforms the lives of a shy New Jersey garbageman and his sister.,0,1334786,Henry Fool,en +86186,Perfect Body,1997-09-08,100.0,,,tt0119881,,"Obsessed with perfection, young gymnast Andie Bradley nearly starves herself to realize her dream of making the Olympic gymnastics team.",0,0,Perfect Body,en +51955,Hav Plenty,1997-09-11,92.0,,,tt0126938,,"Lee Plenty is an almost broke would-be novelist and Havilland Savage is rich and very beautiful woman and his friend. When she invites him to her home for New Year's Eve, they start to build up a romance.",0,0,Hav Plenty,en +48254,Ovosodo,1997-09-12,100.0,,,tt0122648,,"The story of Piero, from when he was a kid to fatherhood, over the background of the town of Livorno, Tuscany, where the director Virzì was born.",0,0,Ovosodo,it +29825,The Real Blonde,1997-09-14,105.0,,,tt0119987,What you see isn't always what you get.,"An aspiring actor (Matthew Modine) and his girlfriend (Catherine Keener) handle life's frustrations, while his friend seeks fulfillment with a blonde (Daryl Hannah).",0,0,The Real Blonde,en +6187,Dry Cleaning,1997-09-24,97.0,,,tt0119773,,A bored couple takes in a young man who turns their lives inside out,0,0,Nettoyage à sec,fr +148314,Pekko ja Unissakävelijä,1997-09-26,0.0,,148315,tt0125981,,,0,0,Pekko ja Unissakävelijä,fi +78694,The Fearless Four,1997-10-02,0.0,,,tt0119170,,"Four aging animals, a dog, a cat, a donkey and a rooster escaped from their former homes because of they weren't as productive and useful for their owners as they used to be. To avoid death they all moved out to Bremen to find a better life...",0,0,Die furchtlosen Vier,de +26005,Made in Hong Kong,1997-10-09,104.0,,456733,tt0123328,,"The first independent film to emerge from the former British colony since the changeover to China in 1997, Made in Hong Kong is an intoxicating drama about teenage alienation.",0,0,香港製造,cn +45019,Washington Square,1997-10-10,115.0,,,tt0120481,She must choose between her father's fortune... Or the man she loves.,"Set in 1870's New York, a spinster heiress is courted by a much younger, penniless man, much to the chagrin of her over-protective father, and must decide whether to spend the rest of her life alone, or marry a man who is interested in her only because of her inheritence.",0,1,Washington Square,en +33344,The House of Yes,1997-10-10,85.0,,,tt0119324,,"Jackie-O is anxiously awaiting the visit of her brother home for Thanksgiving, but isn't expecting him to bring a friend. She's even more shocked to learn that this friend is his fiance. It soon becomes clear that Jackie Kennedy's obsession is nothing compared to her obsession with her brother, as it also becomes clear she isn't the only member of the family with problems..",1500000,626057,The House of Yes,en +36797,RocketMan,1997-10-10,95.0,,,tt0120029,He's just taking up space!,"Fred Z. Randall is geeky and obnoxious spacecraft designer, who gets the chance to make his dream come true and travel to Mars as a member of the first manned flight there.",16000000,0,RocketMan,en +57683,The Maker,1997-10-17,98.0,,,tt0119598,Blood runs deep,"Josh is a high school guy who lives with adoptive parents and is involved in little crimes with his friends (including young lesbian Bella). Suddenly his elder brother Walter comes out of the blue (he left home 10 years ago when he was 18 and was never heard during these years). After that Walter starts to involve Josh in various new criminal activities, including robbery.",0,0,The Maker,en +1813,The Devil's Advocate,1997-10-17,144.0,,,tt0118971,Evil has its winning ways.,A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.,57000000,152944660,The Devil's Advocate,en +15560,Mission to Mir,1997-10-17,40.0,,,tt0119682,,"This film shows how far we have come since the cold-war days of the 50s and 60s. Back then the Russians were our ""enemies"". And to them the Americans were their ""enemies"" who couldn't be trusted. Somewhere in all this a young girl in Oklahoma named Shannon set her sights on becoming one of those space explorers, even though she was told ""girls can't do that."" But she did.",0,0,Mission to Mir,en +3597,I Know What You Did Last Summer,1997-10-17,100.0,,3601,tt0119345,"If you're going to bury the truth, make sure it stays buried.","As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning ""I Know What You Did Last Summer.""",17000000,125586134,I Know What You Did Last Summer,en +31413,Innocence,1997-10-24,110.0,,,tt0128332,,Yusuf is released from prison after serving a ten year sentence. He is scared of life outside as he goes to an address given to him by another prisoner.,0,0,Masumiyet,tr +25653,Wild Animals,1997-10-25,105.0,,,tt0190882,,Two Korean ex-pats in Paris are recruited by a French mobster. The duo find themselves at war with their mobster recruiters and each other.,0,0,야생동물 보호구역,ko +30496,The Tenant of Wildfell Hall,1997-10-26,160.0,,,tt0115387,,"Based on a little known 1848 novel by Anne Bronte, Tara Fitzgerald stars as an enigmatic young woman who moves to 19th Century Yorkshire with a young son. Distancing herself from everyone in the village and their prying questions, she remains totally aloof until a charming neighbor farmer gets her to reveal her past through his persistence. Only then does she reveal she is hiding away from a womanizing, belittling husband.",0,0,The Tenant of Wildfell Hall,en +55712,Demolition University,1997-10-27,90.0,,,tt0179761,,College students on a field trip encounter terrorists planning to poison the city's water supply.,0,0,Demolition University,en +76059,Oesje!,1997-10-29,0.0,,,tt0197739,,"De film gaat over een Vlaamse boer, Kamiel Spiessens, die er alles aan doet om zijn grond te verdedigen tegen een Nederlandse zakenman. Die man wil op de grond een pretpark neerzetten.",0,0,Oesje!,en +781,Wintersleepers,1997-10-30,120.0,,,tt0120522,,"Young blonde translator Rebecca lives with her boyfriend ski instructor Marco in a mountain villa owned by her friend, nurse Laura. Rene, local cinema projectionist, steals Marco's car and gets into a car crash with local Theo, whose daughter, after being in coma for a time, dies. Rene suffers from partial short term memory loss and starts a relationship with Laura. Meanwhile Marco is looking for the man who stole his car and Theo - for the man who killed his daughter...",0,0,Winterschläfer,de +13986,Dil To Pagal Hai,1997-10-30,179.0,,,tt0118983,,"Rahul is a dancer and the director of a dance troupe. His best friend Nisha, who is a member of his troupe, is secretly in love with him. But he gets attracted to Pooja, who is engaged to Ajay.",1300000,11000000,Dil To Pagal Hai,hi +10871,Switchback,1997-10-31,118.0,,,tt0119210,The hunter becomes the hunted.,FBI agent Dennis Quaid tries to catch a serial killer who kidnapped his son.,37000000,6482195,Switchback,en +76864,Tic Tac,1997-10-31,96.0,,,tt0120329,,"During one single day a number of life destinies cross one another. It becomes a night for the involved they will never forget, a night when the coincidences are going to change their lives forever.",0,0,Tic Tac,sv +22140,The Kingdom II,1997-11-01,286.0,,205977,tt0127392,,"The series is set in the neurosurgical ward of Copenhagen's Rigshospitalet, the city and country's main hospital, nicknamed ""Riget"". ""Riget"" means ""the realm"" or ""the kingdom"" and leads one to think of ""dødsriget"", the realm of the dead.",0,0,Riget II,da +288105,Eastwood on Eastwood,1997-11-01,68.0,,,tt0129897,,"Autobiography of Clint Eastwood up to his movie ""Midnight in the Garden of Good and Evil.""",0,0,Eastwood on Eastwood,en +119213,Cold Around the Heart,1997-11-07,96.0,,,tt0118870,,"A jewel thief moves towards a reunion of revenge with his lover, who pushed him out of their speeding getaway car.",0,0,Cold Around the Heart,en +32648,Into Thin Air: Death on Everest,1997-11-09,90.0,,,tt0118949,,"An adaptation of Jon Krakauer's best selling book, ""Into Thin Air: A Personal Account of the Mt. Everest Disaster"". This movie attempts to re-create the disastrous events that took place during the Mount Everest climb on May 10, 1996. It also follows Jon Krakauer throughout the movie, and portrays what he was going through while climbing this mountain.",0,0,Terrore Sull'Everest,it +188765,My Sweet Pepper Land,2014-04-09,100.0,,,tt2875926,,"Baran, a war hero, becomes sheriff of the capital and refuses to bow down to a tribal chief.",0,0,My Sweet Pepper Land,ku +45928,Incognito,1997-11-14,108.0,,,tt0119365,Harry Donovan is a master in the art of deception... trapped in a lie so perfect even the truth can't save him.,"Harry Donovan is an art forger who paints fake Rembrandt picture for $500,000. The girl he meets and gets into bed with in Paris, Marieke, turns out to be an arts expert Harry's clients are using to check the counterfeit picture he painted.",0,0,Incognito,en +31907,Don King: Only in America,1997-11-15,121.0,,,tt0119838,,No overview found.,0,0,Don King: Only in America,en +82077,Bella Mafia,1997-11-16,117.0,,,tt0120602,Hell hath no fury like the women of...,"Don Roberto Luciano turns informer for the biggest Mafia trial in history, but his family pays a terrible price.",0,0,Bella Mafia,en +170430,Man of Her Dreams,1997-11-18,94.0,,,tt0116976,"If he can't have her, no one can.","After suspecting her husband is playing the field, a nervous woman finds a sympathetic ear in the form of a strange man. The drawback is that her sensitive new-found friend is an obsessive psychopath.",0,0,Man of Her Dreams,en +11975,The Rainmaker,1997-11-18,135.0,,,tt0119978,They were totally unqualified to try the case of a lifetime... but every underdog has his day.,"When Rudy Baylor (Matt Damon), a young attorney with no clients, goes to work for a seedy ambulance chaser, he wants to help the parents of a terminally ill boy in their suit against an insurance company (represented by a ruthless Jon Voight). But to take on corporate America, Rudy and a scrappy paralegal (Danny DeVito) must open their own law firm.",40000000,45916769,The Rainmaker,en +54795,Keep the Aspidistra Flying,1997-11-20,101.0,,,tt0119453,,"Gordon Comstock is a copywriter at an ad agency, and his girlfriend Rosemary is a designer. Gordon believes he is a genius, a marvelous poet and quits the ad agency, trying to live on his poems, but poverty soon comes to him.",0,0,Keep the Aspidistra Flying,en +79816,Thank God He Met Lizzie,1997-11-20,91.0,,,tt0120316,,The romantic myth is exposed for Guy when he is plagued by memories of an old girlfriend on his wedding day.,0,0,Thank God He Met Lizzie,en +13929,Geri's Game,1997-11-24,4.0,,,tt0131409,Sometimes you don't need more than one person to not feel alone,"An aging codger named Geri plays a daylong game of chess in the park against himself. Somehow, he begins losing to his livelier opponent. But just when the game's nearly over, Geri manages to turn the tables.",0,0,Geri's Game,en +34838,The Tango Lesson,1997-11-28,100.0,,,tt0120275,,"On a trip to Paris Sally meets Pablo, a tango dancer. He starts teaching her to dance then she returns to London to work on some ""projects"". She visits Buenos Aires and learns more from Pablo's friends. Sally and Pablo meet again but this time their relationship changes, she realises they want different things from each other. On a trip to Buenos Aires they cement their friendship.",0,0,The Tango Lesson,en +714,Tomorrow Never Dies,1997-12-11,119.0,http://www.mgm.com/view/movie/2029/Tomorrow-Never-Dies/,645,tt0120347,Yesterday is a memory. Today is history. Tomorrow is in the hands of one man.,A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.,110000000,333011068,Tomorrow Never Dies,en +42832,The Boys,1997-12-12,107.0,,372479,tt0118764,Nothing in the world would make them miss their weekly game...,Every Monday night The Boys put on skates and leave their troubled lives behind.,0,0,Les Boys,fr +32934,Train of Shadows,1997-12-13,88.0,,,tt0120371,,"A silent homage to the origins of cinema, recreating the apparent disappearance of a French photographer in the 1920s. Experimental.",0,0,Tren de sombras,es +36212,Rebirth of Mothra II,1997-12-13,97.0,,171732,tt0133104,,"Mothra's twin nymphs and children from the city find a lost city, as well as a giant monster that is attracted to environmental calamities.",0,0,Mosura 2 - Kaitei no daikessen,ja +19850,Breast Men,1997-12-13,95.0,,,tt0133643,Two young doctors with a dream of making it big... Really big!,"We follow the two Texas doctors who invented the modern breast implant and its surgical procedure. However, when success and money come their way, they split up and follow different paths. One becomes the surgeon of the everyday woman while the other's career freefalls and has to settle with strippers and actresses. The film covers their history, and their invention's, from the sixties until today",0,0,Breast Men,en +1902,Open Your Eyes,1997-12-19,117.0,,,tt0125659,,"A very handsome man finds the love of his life, but he suffers an accident and needs to have his face rebuilt by surgery after it is severely disfigured.",2900000,368234,Abre los ojos,es +2898,As Good as It Gets,1997-12-19,139.0,,,tt0119822,A comedy from the heart that goes for the throat.,"New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.",50000000,314178011,As Good as It Gets,en +181574,Flash,1997-12-21,90.0,,,tt0136199,"To reunite a father and son, it would take a miracle and one very special horse.","A boy falls in love with a horse named Flash that's for sale. He gets a job to earn the money to buy the horse, but he's forced to sell when the family falls upon hard times.",0,0,Flash,en +62394,The Education of Little Tree,1997-12-25,115.0,,,tt0119052,A boy of two worlds must learn to be his own man.,"Little Tree is an 8-year-old Cherokee boy, who, during the time of the depression, loses his parents and starts to live with his Indian grandma and grandpa and learn the wisdom of the Cherokee way of life.",0,0,The Education of Little Tree,it +9746,Kundun,1997-12-25,134.0,,,tt0119485,,"The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.",28000000,5684789,Kundun,en +9406,An American Werewolf in Paris,1997-12-25,105.0,,,tt0118604,Things are about to get a little hairy.,An American man unwittingly gets involved with werewolves who have developed a serum allowing them to transform at will.,22000000,26570463,An American Werewolf in Paris,en +9438,Mr. Magoo,1997-12-25,84.0,,,tt0119718,You won't believe your eyes.,"Mr.Magoo, a man with terrible eyesight, gets caught up in a museum robbery.",30000000,0,Mr. Magoo,en +57770,Poor Sasha,1997-12-26,0.0,,,tt0135155,,,0,0,Бедная Саша,ru +26941,Afterglow,1997-12-26,119.0,,,tt0118566,,A handyman with marital problems meets a housewife with the same.,0,2465960,Afterglow,en +216369,Tentação,1997-12-26,,,,tt0120307,,,0,0,Tentação,pt +31003,Modern Vampires,1998-10-19,91.0,,,tt0120805,Taste the evil. Taste the fun.,A vampire hunter in southern California discovers that his son has been murdered by a gang of the undead and thus goes on a quest for revenge.,0,0,Modern Vampires,en +25994,The Winter Guest,1997-12-27,108.0,,,tt0120521,,"The plot of the story is interactions between two young boys, two teenagers, a mother, a grandmother, and two elderly women. It can be said though that the main actor in the film is frozen sea, and the rest of the stories are only surreal background to it.",0,0,The Winter Guest,en +38286,Three Men and a Leg,1997-12-27,98.0,,,tt0135007,,"Three friends leave Milan by car heading south. Two of them are married to two sisters, the third one is going to marry the third sister. The marriage is going to take place in the villa of their vulgar but very rich father in law. They are also bringing him a work of modern art: a wooden leg worth millions even if it doesn't look like it.",0,0,Tre uomini e una gamba,it +267188,Desert Winds,1997-12-31,97.0,,,tt0112849,It began with a whisper,"Jackie and Eugene are joined by a mystical wind tunnel which enables them to speak across a 500-mile desert. Believed by the Indians to be an omen of good luck, the wind inspires both characters to face their fears and follow their hearts.",0,0,Desert Winds,en +301876,30 Years to Life,1998-01-01,,,,tt0174446,,,0,0,30 Years to Life,en +67977,I Just Want to Kiss You,1998-01-01,11.0,,,tt0181588,,An homage to the French New Wave and a touching story of friendship and love.,0,0,I Just Want to Kiss You,en +43978,The Apple,1998-01-01,86.0,,,tt0156901,,"After twelve years of imprisonment by their own parents, two sisters are finally released by social workers to face the outside world for the first time.",0,0,سیب,fa +23319,Jerry Seinfeld: I'm Telling You for the Last Time,1998-01-01,75.0,,,tt0500140,,"Taped for HBO in August 1998, on the final date of Jerry Seinfeld's tour appearances at New York City's Broadhurst Theater, I'm Telling You for the Last Time presents the standup comedian's so-called ""final"" standup, or at least his final tour with the standup material that made him famous.",0,0,Jerry Seinfeld: I'm Telling You for the Last Time,en +89756,Captive,1998-01-01,94.0,,,tt0229290,,"Joe Goodies has just entered an advertising agency after recovering from the death of his girlfriend in a car accident. Ruined by the compensation he has to pay for the accident, he decides, with his new girlfriend, to kidnap the son of the president of the agency and ask for a bailout.",0,0,Captive,en +2397,Fallout,1998-01-01,90.0,,,tt0150500,,No overview found.,0,0,Fallout,en +19604,Decampitated,1998-01-01,92.0,,,tt0118951,,Seven friends are going camping at the infamous DeCamp acres for a weekend. But they crash their car and are put in the woods guarded by a psychopath killer who tries to kill them one by one.,0,0,Decampitated,en +335141,Bob le magnifique,1998-01-01,,,,tt0344943,,,0,0,Bob le magnifique,fr +17644,Barney's Great Adventure,1998-01-01,76.0,,350402,tt0120598,,"Mom and dad dump son Cody, daughter Abby, her best friend Marcella and a baby on the farm with Grandpa and Grandma. Purple dinosaur Barney soon appears to entertain kids, and when a large colorful egg deposited on a farm by a shooting star is accidentally carted off, Barney and kids start their chase for it",0,0,Barney's Great Adventure,en +47099,Killer,1998-01-01,80.0,,,tt0157124,,"A young man gets into an accident and now owes people money. He lives in present day Almaty, Kazakhstan, where jobs are scarce. So he turns to dubious characters for help which leads him deeper and deeper into trouble.",0,0,Tueur à gages,en +104965,Bo Ba Bu,1998-01-01,85.0,,,tt0204908,,Two barbarians in the desert find a stranded white woman and regard her as their property. A strange and exotic parable that presents a tragic three-cornered relationship in a politically incorrect and ironic way.,0,0,Bo Ba Bu,uz +38162,Top of the World,1998-01-01,140.0,,,tt0120353,,"In Las Vegas for a quicky divorce, a just-paroled ex-cop and his wife wander into the Top of the World Casino, run by the shady Charles Atlas. They win big, right as the casino is being robbed. The police believe their big win was a staged diversion, and the two of them become suspects. Over the course of the evening and next morning, the two attempt to escape to surrounded casino, and to prove their innocence, as well as to save their marriage.",0,0,Top of the World,en +17133,Homegrown,1998-01-01,102.0,,,tt0119305,,"Three laborers on a Northern California marijuana plantation become increasingly paranoid when they learn that their boss has been murdered. They know enough to run, taking with them enough of the crop to pay them for services rendered. Hooking up with go-between Lucy in the next town, they plot their next move.",0,271375,Homegrown,en +108788,Out of Mind: The Stories of H.P. Lovecraft,1998-01-01,56.0,,,tt0213968,,"Haunted by disturbing dreams from an inherited book, a young man becomes interested in the writings of H.P. Lovecraft.",0,0,Out of Mind: The Stories of H.P. Lovecraft,en +118443,Nothing Too Good for a Cowboy,1998-01-04,92.0,,,tt0127389,,A group of young adults struggle to run the biggest cattle ranch in the world amidst World War II.,0,0,Nothing Too Good for a Cowboy,en +45431,Devil in the Flesh,1998-01-04,99.0,,,tt0143213,She's a hot... cold blooded killer.,"When her mother is killed in a mysterious house fire, rebellious teen Debbie Strand is sent to live with her grandmother, where she becomes even more unhinged. She develops an intense crush on her hunky creative writing teacher, Peter Rinaldi, but her numerous attempts at seduction end in failure. Soon Peter's friends start turning up dead, and he fears that his fiancée, Marilyn, may be Debbie's next victim.",0,0,Devil in the Flesh,en +196469,Animals with the Tollkeeper,1998-01-06,103.0,,,tt0118621,,"While looking for paradise, a cab driver suddenly falls in love.",0,0,Animals with the Tollkeeper,en +237799,Un grand cri d'amour,1998-01-07,,,,tt0139683,,,0,0,Un grand cri d'amour,fr +154821,Arguing the World,1998-01-07,0.0,,,tt0129758,,"A true story of four Jewish intellectuals born in New York and educated at City College during the 1930s, and their divergent paths over the next six decades.",0,0,Arguing the World,en +38509,Polish Wedding,1998-01-16,105.0,http://en.wikipedia.org/wiki/Polish_Wedding,,tt0119910,"Sometimes the further you stray, the closer you are to home.","The film centers on a big Polish family. Jadzia is the mother and the ruler of the Pzoniak family (she has five children). Though she's happily married to Bolek, she is also having a long-time affair with Roman. Her young daughter Hala is having an affair with neighbour cop Russell and becomes pregnant by him. Russell is pressed hard to marry Hala.",0,0,Polish Wedding,en +53380,Divine Trash,1998-01-18,97.0,,,tt0150338,,"The life and times of Baltimore film maker and midnight movie pioneer, John Waters.",0,39842,Divine Trash,en +60662,Fifteen and Pregnant,1998-01-19,96.0,,,tt0138444,Tina Spangler is about to discover just how little she knows about life...,"Based on a true story, 15 year old Tina Spangler discovers she is pregnant. Her choices are abortion, adoption, or a lonely, exhausting life as a single parent. Abandoned by her boyfriend, she turns to her mother. Tina discovers although it has torn her world apart, her pregnancy could re-unite her shattered family and help her find her true purpose in life.",0,0,Fifteen and Pregnant,en +9464,Buffalo '66,1998-01-20,110.0,,,tt0118789,Billy Brown just got out of jail. Now he's going to serve some real time. He's going home.,"Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.",1500000,2375097,Buffalo '66,en +3033,Gods and Monsters,1998-01-21,105.0,http://www.godsandmonsters.net/,,tt0120684,,"It's 1957, and Whale's heyday as the director of ""Frankenstein,"" ""Bride of Frankenstein"" and ""The Invisible Man"" is long behind him. Retired and a semi-recluse, he lives his days accompanied only by images from his past. When his dour housekeeper, Hannah, hires a handsome young gardener, the flamboyant director and simple yard man develop an unlikely friendship, which will change them forever.",10000000,6451628,Gods and Monsters,en +101363,The Wonderful Ice Cream Suit,1998-01-23,77.0,,,tt0129634,,"Gomez is a middle-aged man who dreams of buying a gorgeous white suit in a nearby store, but doesn't have enough cash. He finds 4 more people of same size, who each give $20 and get to wear the suit for an hour each in return. But the suit is not just a suit - it makes wishes of the one wearing it come true.",0,0,The Wonderful Ice Cream Suit,en +9827,Phantoms,1998-01-23,91.0,,,tt0119891,For centuries they told us the terror would come from above. We've been looking the wrong way.,"In the peaceful town of Snowfield, Colorado something evil has wiped out the community. And now, its up to a group of people to stop it, or at least get out of Snowfield alive.",0,5624282,Phantoms,en +256916,Sus ojos se cerraron y el mundo sigue andando,1998-01-23,,,,tt0120250,,,0,0,Sus ojos se cerraron y el mundo sigue andando,es +48959,Up 'n' Under,1998-01-23,0.0,,,tt0120422,,The Cobblers Arms have been the best and most feared Amateur Rugby League team for the past ten years. Ex-pro Arthur bets their boss that he could train a bunch of deadbeats to defeat them in a local rugby sevens tournament. But to do so he must first get them into shape with the help of the very attractive Hazel Scott.,0,0,Up 'n' Under,en +1959,Swept from the Sea,1998-01-23,113.0,,,tt0120257,,"The film tells the story of Russian emigree and the only survivor from ship crash Yanko Goorall and servant Amy Foster in the end of 19th century. When Yanko enters a farm sick and hungry after the shipwreck, everyone is afraid of him, except for Amy, who is very kind and helps him. Soon he becomes like a son for Dr. James Kennedy and romance between Yanko and Amy follows.",0,0,Swept from the Sea,en +253077,Tomorrow Night,1998-01-23,87.0,,,tt0140627,,"Charles is the owner of a photo-shop. He is not too friendly and spends his evenings alone, and one day he finally decides to get a social life. He meets elderly Florence, who is tormented by her gambling husband Lester and longs for the son Willie she hasn't seen or heard of for 20 years.",0,0,Tomorrow Night,en +9457,Deep Rising,1998-01-30,106.0,,,tt0118956,Full Scream Ahead,"A group of heavily armed hijackers board a luxury ocean liner in the South Pacific Ocean to loot it, only to do battle with a series of large-sized, tentacled, man-eating sea creatures who have taken over the ship first.",45000000,11203026,Deep Rising,en +241170,Inside The X-Files,1998-02-01,45.0,,,tt0237335,,"Inside the X-Files for a behind-the-scenes look at the show. Also included are interviews with the cast and creator Chris Carter, never before seen segments from the show, outtakes and a sneak preview of the upcoming feature film.",0,0,Inside The X-Files,en +11003,The Wedding Singer,1998-02-13,95.0,,,tt0120888,He's gonna party like it's 1985.,"Robbie, a local rock star turned wedding singer, is dumped on the day of his wedding. Meanwhile, waitress Julia finally sets a wedding date with her fiancée Glenn. When Julia and Robbie meet and hit it off, they find that things are more complicated than anybody thought.",18000000,123306987,The Wedding Singer,en +35113,I Want You,1998-02-15,87.0,,,tt0119347,"What she wants, she gets.",A young boy and his sister are drawn into one man's obsessive pursuit of his former lover.,0,0,I Want You,en +167021,It's a Long Road,1998-02-18,118.0,,,tt0164063,,"Three stories dealing with three men and their stance towards life, given their personal background. All stories are held in Northern Greece (Macedonia and Thrace), covering all the spectrum from urban to rural settings.",0,0,Όλα είναι δρόμος,el +8583,Dangerous Beauty,1998-02-20,111.0,,,tt0118892,Born without privilege. Bound by tradition. She found the courage to follow her heart.,"Veronica is brilliant, gifted and beautiful, but the handsome aristocrat she loves, Marco Venier, cannot marry her because she is penniless and of questionable family. So Veronica's mother, Paola, teaches her to become a courtesan, one of the exotic companions favored by the richest and most powerful Venetian men. Veronica courageously uses her charms to change destiny -- and to give herself a chance at true love.",0,0,Dangerous Beauty,en +12538,Senseless,1998-02-20,93.0,,,tt0120820,A secret experiment gave him super senses. Then came the side-effects.,A student gets his senses enhanced by an experimental drug. But abuse is not an option.,0,13035599,Senseless,pt +83361,McCinsey's Island,1998-02-23,95.0,,,tt0119639,,"Hulk Hogan and Grace Jones star in this adventure tale about a onetime secret agent who finds a treasure map on the shell of a turtle. Soon he's on a chase to recover the loot, just one step ahead of other seekers of wealth.",0,0,McCinsey's Island,en +88863,Caught Up,1998-02-27,97.0,,,tt0119988,This game has only two rules. Do or die.,"Daryl gets out of jail after 5 years. His mother has died, his girlfriend is married, and he can't find a job. His new girlfriend Vanessa, whom he meets when a gunman opens fire on them, gets him a job as a car driver. Hitmen are still after them, and Vanessa tells Daryl that this is her former lover Ahmad who wants revenge.",0,0,Caught Up,en +2666,Dark City,1998-02-27,100.0,,,tt0118929,A world where the night never ends.,"A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.",27000000,27200316,Dark City,en +257534,The Shoe,1998-03-01,83.0,,,tt0157030,,"Every night, Soviet tractors comb the coast of Latvia looking for signs of anyone who could have infiltrated the Soviet border from the sea. One morning, three Soviet patrolmen discover a woman’s shoe in the sand and footsteps leading to the quaint little village of Liepaja.",0,0,Kurpe,lv +19846,The Interview,1998-03-03,104.0,,,tt0120714,Two minds... one truth,A duel between a suspected murderer and a detective pressed by people who want results. But whose skin is really wanted.,0,0,The Interview,en +21736,Everest,1998-03-06,44.0,,,tt0120661,Towering above everything you have seen before.,"An international team of climbers ascends Mt. Everest in the spring of 1996. The film depicts their lengthy preparations for the climb, their trek to the summit, and their successful return to Base Camp. It also shows many of the challenges the group faced, including avalanches, lack of oxygen, treacherous ice walls, and a deadly blizzard.",0,76447420,Everest,en +320011,Men with Guns,1998-03-06,89.0,,,tt0119656,,"Three losers, Eddie, Lucas and Mamet, are sent to collect some debt at a remote farm. But the thugs there are too hard for them, and they are humiliated. They return for revenge, it gets out of hand, ends with a bloodbath and they are left with a big amount of cocaine. The drugs belong to local mob boss Horace Burke, who sends his son to find them. Cops are also after them.",0,0,Men with Guns,en +80059,The Tattooed Widow,1998-03-10,0.0,,,tt0120299,,"Ester is the perfect grandmother everyone expects her to be. But she unexpectedly inherits an old aunt and gets a big apartment and a lot of money. She decides to leave her husband, children and grandchildren to start her life over. Before long, she has four men who court her and she feels young once again.",0,0,Den tatuerade änkan,sv +77825,The Personals,1998-03-13,96.0,,,tt0212423,,"The Personals is a movie for anyone who hasn't yet found what they're looking for or who remembers how tough it can be to find it. Rene Liu plays an eye doctor who's become disaffected with her present life and is craving something more – namely love and marriage. She's attractive, has a good job, and a decent apartment. Up until now she has done everything she's supposed to do, but it just hasn't worked for her. She's still alone. Now, she decides to take the extreme measure of advertising for a husband in the personals. The search leads her down the slippery slope of the modern dating scene whose universal quirkiness transcends the boundaries of all industrialized societies.",0,0,徵婚啓事,zh +72933,April Story,1998-03-14,67.0,,,tt0146271,,"In spring, a girl leaves the island of Hokkaido to attend university in Tokyo. Once there, she is asked to reveal why she wanted to go there in the first place.",0,0,四月物語,ja +15805,Batman & Mr. Freeze: SubZero,1998-03-17,70.0,,421904,tt0143127,,"When a desperate Mr. Freeze, to save his dying wife, kidnaps Barbara (Batgirl) Gordon as an involuntary organ donor, Batman and Robin must find her before the operation can begin.",0,0,Batman & Mr. Freeze: SubZero,en +49559,Secret Defense,1998-03-18,170.0,,,tt0120665,,"Sylvie, a scientist aged 30, has to dig deeper and deeper into her own background.",0,0,Secret Défense,en +44308,A Price Above Rubies,1998-03-26,117.0,,,tt0120793,,About a young woman who is married to a devout Jew and the problems that trouble their marriage because of the woman wanting something more out of her life.,0,1081957,A Price Above Rubies,en +28527,The Polish Bride,1998-03-26,89.0,,,tt0142772,,"Drama on the dawning love between a Polish woman and a farmer. Anna is forced to work in a brothel, but manages to escape. She's found, exhausted and scared, by Henk (the farmer) who offers her a place to stay, but her past chases her.",0,0,De Poolse bruid,nl +93350,No Looking Back,1998-03-27,96.0,,,tt0119560,The past is always closer than you think.,Charlie returns to his old town where he meets his ex-girlfriend again and tries to get her back.,0,0,No Looking Back,en +45533,Pyaar Kiya To Darna Kya,1998-03-27,162.0,,,tt0173080,Why be afraid of Love?,"Beautiful, talented, young and attractive Muskaan has an only guardian in her life, her strict and stern brother Vishal Thakur, both reside on a farm in the Country area. Vishal enrolls Muskaan into the City College, where she meets a prankster Suraj Khanna, who has been neglected by his wealthy parents. Suraj and Muskaan fall in love slowly and when it was time for Muskaan to return to the Country area, Suraj follows Muskaan all the way to her house where he meets with Vishal who objects to their marriage but when Suraj save the life of an elder Thakur Ajay Singh he is taken in and must undergo certain tests before Vishal will accept him as his brother in law.",0,0,Pyaar Kiya To Darna Kya,en +40688,Meet the Deedles,1998-03-27,93.0,,,tt0120645,Fish out of water...Surfers in Yellowstone,Two surfers end up as Yellowstone park rangers and have to stop a former ranger who is out for revenge.,24000000,4562146,Meet the Deedles,en +66894,Ride,1998-03-27,90.0,,,tt0120707,This party makes no stops.,"A group of young people leave Harlem for a bus trip down to Miami. The voyage starts off with problems, but it ends up becoming a learning experience, as they end up learning things about each other they had not previously known.",0,0,Ride,en +86266,The Power of Kangwon Province,1998-04-04,110.0,,,tt0156906,,"Recently separated lovers (Baek Jong-hak, Oh Yun-hong) have a series of close encounters at a popular mountain retreat.",0,0,강원도의 힘,ko +54514,Country of the Deaf,1998-04-06,0.0,,,tt0143907,,"Strana Glukhikh is about an unusual relationship between two women, one of them a deaf-mute dancer and the other on the run from the mafia. Yaya, the deaf girl, offers to hide Rita whose boyfriend, Alyosha owes gambling debts to the mafia, but in return she wants her to leave the young man and run off with her to an imaginary paradise where material values do not exist.",0,0,Страна глухих,ru +27472,The Odd Couple II,1998-04-09,97.0,,221966,tt0120773,Some arguments stand the test of time,"30 years after the first film, Oscar and Felix embark on a road trip together, to attend the wedding of Oscar's son to Felix's daughter.",0,0,The Odd Couple II,en +19797,I Think I Do,1998-04-10,90.0,,,tt0125209,,A screwball comedy about a gay couple at a straight couple's wedding.,0,344,I Think I Do,en +795,City of Angels,1998-04-10,114.0,,,tt0120632,She didn't believe in angels until she fell in love with one.,"When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.",55000000,198685114,City of Angels,en +9945,Vampires,1998-04-15,108.0,http://www.theofficialjohncarpenter.com/vampires/,348843,tt0120877,From the Master of Evil. Comes a New Breed of Terror,The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.,20000000,0,Vampires,en +104081,The Lighthouse,1998-04-16,109.0,,,tt0168749,,"Two Argentine sisters, Memé and Aneta, lose their mother in a car crash. Memé, the elder, is also left lame with one badly scarred leg. The orphaned girls go to Uruguay to stay with their aunts. The sisters often bicker, but they are actually very close. Memé flirts but has no luck with boys because of her injury... On their own now, Memé works as a waitress where she gets to know Andy. Returning to Montevideo, they meet Dolores, a friend of their late mother. Memé's affair with a man complicates her relationship with her sister. Then Andy invites the pair to his seaside retreat, a lighthouse.",0,0,El faro,en +21001,Like It Is,1998-04-17,90.0,,,tt0146990,,"A young, bare-knuckle boxer Craig (played by real-life boxer Steve Bell) moves from Blackpool to London, where he falls for a twenty-something music producer, Matt. Trouble ensues when shy, awkward Craig tries squeezing into Matt's glib lifestyle and Matt's scheming boss (played by Roger Daltrey) tries to break up the couple.",0,0,Like It Is,en +9771,Major League: Back to the Minors,1998-04-17,107.0,,97771,tt0120742,They're Just Nine Players Short of a Dream Team,At the behest of Roger Dorn -- the Minnesota Twins' silver-tongued new owner -- washed-up minor league hurler Gus Cantrell steps up to the plate to take over as skipper of the club's hapless farm team. But little does he know that Dorn has an ulterior motive to generate publicity with a grudge match between the big leaguers and their ragtag Triple A affiliate.,0,3572443,Major League: Back to the Minors,en +82519,Restaurant,1998-04-18,107.0,,,tt0152176,,A few young waiters at a popular New Jersey restaurant are dreaming of becoming actors or otherwise getting into the artistic community.,0,0,Restaurant,en +45326,Legion,1998-04-18,97.0,,,tt0126387,Their mission was simple... Kill something that couldn't be killed.,This future-set sci-adventure follows a band of brave soldiers in an epic battle against a government-created monster.,0,0,Legion,en +146373,Some Girl,1998-04-19,94.0,,,tt0125766,,Four unstable twenty-something women search for long-term relationships in 1990s Los Angeles.,0,0,Some Girl,en +32195,My Date with the President's Daughter,1998-04-19,93.0,,,tt0151683,,"Duncan Fletcher is an average teenager in search of a date to his school's spring dance. While at the mall with his friends, he meets a girl, Hallie, who just happens to be the daughter of the President of the United States, George Richmond. Duncan, not realizing this, asks her to his school's dance. They encounter many obstacles throughout the night.",0,0,My Date with the President's Daughter,en +139244,The Tale of Sweeney Todd,1998-04-19,92.0,,,tt0147582,The Original Serial Killer!,The fictional tale of the murderous 19th century barber (Ben Kinglsey) who sold his kills to a neighboring butcher (Joanna Lumley) for her renowned meat pies. A young innocent (Selina Boyack) and the dashing inspector (Campbell Scott) who tries to solve the murders are also thrown into the mix.,0,0,The Tale of Sweeney Todd,en +161795,Déjà Vu,1998-04-22,117.0,,,tt0119033,Your future is set...,"L.A. shop owner Dana and Englishman Sean meet and fall in love at first sight, but Sean is married and Dana is to marry her business partner Alex.",0,0,Déjà Vu,en +36943,In God's Hands,1998-04-24,96.0,,,tt0140282,To surf 40-foot waves is to put yourself...,"Three pro surfers - gifted Shane, once-great Mickey and rising young star Keoni travel to Madagascar, Bali and Hawaii in search for the ultimate wave.",0,0,In God's Hands,en +38618,Tarzan and the Lost City,1998-04-24,83.0,,,tt0120856,,Tarzan returns to his homeland of Africa to save his home from destruction.,0,0,Tarzan and the Lost City,en +7096,Merlin,1998-04-26,182.0,,,tt0130414,The most magical adventure of all time.,The legendary wizard tells his story of his war against Queen Mab of the Sidhe and his creation of Camelot.,0,0,Merlin,en +237796,Don Juan,1998-04-28,104.0,,,tt0123808,,"Spain in the mid-seventeenth century. A series of bloody wars has ravaged the nation. Don Juan the nobleman and his valet, Sganarelle, roam the countryside on horseback, on the run and lost.",0,0,Don Juan,es +78373,"Dancer, Texas Pop. 81",1998-05-01,97.0,,,tt0118925,in the middle of nowhere they had everything,"Four guys, best friends, have grown up together in DANCER, TEXAS POP. 81, a tiny town in West Texas. Years ago, they made a solemn vow to leave town together as soon as they graduate. Now, it's that weekend and the time has come to ""put up or shut up."" The clock is ticking and as all 81 people in the town watch, comment, offer advice and place bets, these four very different boys with unique backgrounds struggle with the biggest decision of their lives... whether to stay or leave home.",0,565592,"Dancer, Texas Pop. 81",en +82865,"God Said, 'Ha!'",1998-05-14,85.0,,,tt0119207,,Julia Sweeney tells the viewers the monologue about the hard time in her life when her brother fought with cancer and she was also diagnosed with a rare form of cancer.,0,0,"God Said, 'Ha!'",en +18937,Quest for Camelot,1998-05-15,86.0,,,tt0120800,An evil knight gives nobility a bad name.,"During the times of King Arthur, Kayley is a brave girl who dreams of following her late father as a Knight of the Round Table. The evil Ruber wants to invade Camelot and take the throne of King Arthur, and Kayley has to stop him.",40000000,38172500,Quest for Camelot,en +50942,Creature,1998-05-17,176.0,,,tt0156205,Death from the depths,"An amphibious shark-like monster terrorizes an abandoned secret military base and the people who live on the island it is located on. A marine biologist, as well as several other people, try to stop it before it is too late...",0,0,Creature,en +28134,The Impostors,1998-05-18,101.0,,,tt0120823,Why be yourself when you can be somebody else?,"In an attempt to resurrect the slapstick comedy of Laurel and Hardy or The Marx Brothers, Stanley Tucci and Oliver Platt team-up as two out-of-work actors who accidentally stow away on a ship to hide from a drunken, belligerent lead actor who has sworn to kill them for belittling his talents.",0,2197921,The Impostors,en +281289,Tainted,1998-05-18,108.0,,,tt0128690,"Dead End Jobs, A Drunk Ex-girlfriend, Psychotic Vampires: ONE HELL OF A NIGHT!",A sarcastic comedy thriller about a vampire who sets out to infect the blood of a hospital and the twenty-something slackers who set out to stop him.,0,0,Tainted,en +91076,Illuminata,1998-05-21,119.0,,,tt0120709,,"It's the start of the 20th century, and Tuccio, resident playwright of a theatre repertory company offers the owners of the company his new play, ""Illuminata"". They reject it, saying it's not finished, and intrigue starts that involves influential critic Bevalaqua, theatre star Celimene, young lead actors and other theatre residents",0,0,Illuminata,en +27460,Nick Fury: Agent of S.H.I.E.L.D.,1998-05-26,120.0,,,tt0119781,The Last Superhero!,"Marvel's hard-boiled hero is brought back to fight the menace of Hydra after exiling himself in the Yukon since the end of the Cold War. The children of the former Hydra head, Baron Von Stucker, have taken charge of the terrorist organization. Under the lead of his vicious daughter, Viper, Hydra has seized a deadly virus and threatens the destruction of America.",0,0,Nick Fury: Agent of S.H.I.E.L.D.,en +118381,Anna Magdalena,1998-05-28,97.0,,,tt0159251,,"Two young men fall for the woman staying upstairs when she practises J.S. Bach's ""Notebook for Anna Magdalena"".",0,0,安娜玛德莲娜,cn +16980,The Last Days of Disco,1998-05-29,113.0,,,tt0120728,History is made at night.,Two young women and their friends spend spare time at an exclusive nightclub in 1980s New York.,8000000,0,The Last Days of Disco,en +183946,Yellow,1998-05-29,90.0,,,tt0122804,,Eight friends in Los Angeles spend their last evening together as they face graduation from high school and the onset of their adult lives. One of them gets in unexpected trouble when he loses a large sum of his dad's money. The friends rally together to attempt to raise the money back in one evening in a wild and desperate scavenger hunt.,0,0,Yellow,en +21348,Kirikou and the Sorceress,1998-12-09,70.0,,338416,tt0181627,,"Drawn from elements of West African folk tales, it depicts how a newborn boy, Kirikou, saves his village from the evil witch Karaba.",0,0,Kirikou et la Sorcière,fr +273312,VeggieTales: Madame Blueberry,1998-06-01,37.0,,,tt0500166,,"Even though Madame Blueberry lives in a nice treehouse, and has lots of friends, she is still upset because she always thinks she needs more ""stuff"". When a new Stuff-Mart superstore opens up near her home, she loads up with everything she can, but is still sad. Eventually, Madame Blueberry learns that it's important to be thankful for what you already have.",0,0,VeggieTales: Madame Blueberry,en +61168,Since You've Been Gone,1998-06-06,96.0,,,tt0120135,,"The story of a 10th anniversary High School reunion, told through the eyes of a doctor who was humiliated on graduation day by being badly beaten up by a fellow graduate.",0,0,Since You've Been Gone,en +125759,A Soldier's Sweetheart,1998-06-09,112.0,,,tt0129414,,"An Army medic brings his girlfriend to stay with him at an out of the way Vietnam outpost in 1967, the woman disappears one day and he begins searching for her.",0,0,A Soldier's Sweetheart,en +55989,Southie,1998-06-10,95.0,,,tt0118766,The toughest thing about South Boston is coming back.,"South Boston Irish bad boy Danny Quinn returns back home from New York and gets stuck between his pals, who are supported by one Irish mafia clan, and his family, which are members of another.",0,0,Southie,en +24916,Bio Zombie,1998-06-11,94.0,,,tt0277605,,A soft drink tainted with bio-chemicals has the power to turn people into flesh-eating zombies.,0,0,Sun faa sau si,cn +15037,Can't Hardly Wait,1998-06-12,100.0,,,tt0127723,Yesterday's history. Tomorrow's the future. Tonight's the party.,"It's graduation day at Huntington Hills High, and you know what that means - time to party. And not just any party, either. This one will be a night to remember, as the nerds become studs, the jocks are humiliated, and freshman crushes blossom into grown-up romance.",10000000,25605015,Can't Hardly Wait,en +6068,Six Days Seven Nights,1998-06-12,98.0,,,tt0120828,"After this week in paradise, they’re going to need a vacation.","When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.",70000000,164000000,Six Days Seven Nights,en +10674,Mulan,1998-06-18,88.0,,87236,tt0120762,"This time, the princess saves the prince.","A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.",90000000,304320254,Mulan,en +85984,Off the Menu: The Last Days of Chasen's,1998-06-19,90.0,,,tt0158831,,"In 1995, Chasen's closed its doors after 60 years of serving chili to movie stars and visiting dignitaries, Presidents and the Pope. During its two final weeks, Chasen regulars (actors and producers), staff, and management sat for interviews. There's an Oscar party for 1500, footage and photos of famous diners, and time with Tommy Gallagher, the ebullient head waiter until retirement in 1994, his son Patrick, catering head Raymond Bilbool, general manager Ronnie Clint, hat check girl Val Schwab, ladies' room attendant Onetta Johnson, and foreign- born waiters, including Jaime. When he started in 1970, like other Latins, he wasn't allowed out of the kitchen. It's a family farewell.",0,0,Off the Menu: The Last Days of Chasen's,en +43913,Postmortem,1998-06-20,105.0,,,tt0130192,"The only way to trap a serial killer is to know what he feels, what he thinks, and when he'll strike...again.","The only thing James wants is to remain away from Scotland. One day, however, he receives a fax, a printout of an unknown person's obituary. The next day, he is charged and arrested for the murder of this person.",0,0,Postmortem,en +3050,Doctor Dolittle,1998-06-22,85.0,,3169,tt0118998,He doesn't just talk to the animals!,"A successful physician and devoted family man, John Dolittle (Eddie Murphy) seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctor's advice, unleashing an outrageous chain of events that turns his world upside down!",71000000,294456605,Doctor Dolittle,en +206328,You Lucky Dog,1998-06-27,0.0,,,tt0153992,,A man leaves his fortune to his dog.,0,0,You Lucky Dog,en +58414,A True Mob Story,1998-07-01,112.0,,,tt0165998,,"A low level gangster in Hong Kong gains new respect after saving a boss's life in a gang fight. Despite his wife's death in this attack, he appears to be moving up in the Triad family until he discovers the other bosses are not looking out for him when he is double crossed and the gangster he previously hospitalized in the gang fight comes back for revenge.",0,0,龍在江湖,cn +544,There's Something About Mary,1998-07-15,119.0,http://www.aboutmary.com/,,tt0129387,Love Is In The Hair.,"Having never fully recovered from a prom date that became a total disaster, a man finally gets a chance to reunite with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.",23000000,369884651,There's Something About Mary,en +9835,Jane Austen's Mafia!,1998-07-24,84.0,,,tt0120741,See it early. Avoid the mob.,Takeoff on the Godfather with the son of a mafia king taking over for his dying father.,10000000,19000000,Jane Austen's Mafia!,en +857,Saving Private Ryan,1998-07-24,169.0,,,tt0120815,The mission is a man.,"As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.",70000000,481840909,Saving Private Ryan,en +9820,The Parent Trap,1998-07-28,127.0,,,tt0120783,"Twice the Fun, Double the Trouble.","Hallie Parker and Annie James are identical twins separated at a young age because of their parents' divorce. unknowingly to their parents, the girls are sent to the same summer camp where they meet, discover the truth about themselves, and then plot with each other to switch places. Hallie meets her mother, and Annie meets her father for the first time in years.",0,0,The Parent Trap,en +47144,Cabaret Balkan,1998-08-01,102.0,,,tt0169145,,"The film takes place in Belgrade in the mid nineties of the twentieth century, when the brutality and violence are becoming part of everyday reality. A series of separate stories each linked inheritance situations. The painful atmosphere of increasing brutality from which you can not see the output as the main motiv is repeated in the question of accountability: ""Who is guilty?""",0,0,Bure baruta,sr +8336,The Naked Man,1998-08-02,98.0,,,tt0120767,,No overview found.,0,0,The Naked Man,en +56653,Sombre,1998-08-06,112.0,,,tt0166808,,A serial killer stalks sisters he befriended after their car broke down.,0,0,Sombre,fr +53685,Telling You,1998-08-07,94.0,,,tt0120859,Have a Silce of Life,Two college graduates who find themselves stuck behind the counter of a pizza parlor while their friends move on struggle to find a new direction for their lives.,0,0,Telling You,en +95627,Frogs for Snakes,1998-08-14,108.0,,,tt0120680,They collect for the mob. But they'd rather act. Expect killer performances.,"A group of unemployed theater actors survive by working as illegal money collectors. The loan shark they are working for owns an Off-Broadway theater. As he decided to play ""American Buffalo"" there, a bloody battle for the favorite roles begin.",0,0,Frogs for Snakes,en +24584,Get Real,1998-08-16,108.0,,,tt0162973,,A tenderly romantic coming-of-age story as two boys in a British school fall in love.,0,0,Get Real,en +17074,The Batman Superman Movie: World's Finest,1998-08-18,64.0,,404770,tt0169590,Cleaning up the planet one villain at a time.,Joker goes to Metropolis with an offer and plan to kill Superman for Lex Luthor while Batman pursues the clown to Superman's turf,0,0,The Batman Superman Movie: World's Finest,en +41469,Next Stop Wonderland,1998-08-21,96.0,,,tt0119778,Romance Is Her Destination.,A lighthearted story about a man and a woman who seem destined to be together... and the hilarious chain of accidents that seem determined to keep them apart!,0,0,Next Stop Wonderland,en +78281,For Sale,1998-08-26,100.0,,,tt0126735,,A Private detective is hired to trace a woman who ran away and disappeared on her wedding day. The movie follows him and recounts the story of her life through her eyes and the eyes of those interviewed by the detective.,0,0,À vendre,fr +9943,Das merkwürdige Verhalten geschlechtsreifer Großstädter zur Paarungszeit,1998-08-27,89.0,,,tt0157990,,No overview found.,0,0,Das merkwürdige Verhalten geschlechtsreifer Großstädter zur Paarungszeit,de +15043,Brink!,1998-08-28,99.0,,,tt0162212,It Takes A Champ To Stay In Line.,"Andy ""Brink"" Brinker and his in-line skating crew--Peter, Jordy, and Gabriella--who call themselves ""Soul-Skaters"" (which means they skate for the fun of it, and not for the money), clash with a group of sponsored skaters, Team X-Bladz--led by Val--with whom they attend high school in southern California. When Brink discovers his family is in financial trouble, he goes against the wishes of his parents and his friends and joins Team X-Bladz. Brink tries to lead a double life but will be able to pull it off?",0,0,Brink!,en +3682,54,1998-08-28,106.0,,,tt0120577,You've never been anywhere until you've been here,"Shane, a Jersey boy with big dreams, crosses the river in hopes of finding a more exciting life at Studio 54. When Steve Rubell, the mastermind behind the infamous disco, plucks Shane from the sea of faces clamoring to get inside his club, Shane not only gets his foot in the door, but lands a coveted job behind the bar – and a front-row seat at the most legendary party on the planet.",13000000,16757163,54,en +28047,Phoenix,1998-09-04,107.0,,,tt0119892,"In this town, the heat can kill you.",Gambling fever -- along with a brutal bookie -- leads three crooked cops into a double-dealing scheme that lands them in hot water way over their heads.,0,0,Phoenix,en +141603,Hooligan,1998-09-04,129.0,,,tt0497915,,"Shankar, a coolie, comes in the way of the bad guys, Bulla and his cronies. They kill his father and sister. Shankar vows revenge and eliminates all of them in bizarre and gruesome fashion.",0,0,Gunda,hi +5332,Dancing at Lughnasa,1998-09-04,96.0,,,tt0120643,Five sisters embrace the spirit of a people.,Five unmarried sisters make the most of their simple existence in rural Ireland in the 1930s.,0,0,Dancing at Lughnasa,en +123283,Marilyn in Manhattan,1998-09-05,46.0,,,tt0325794,,,0,0,Marilyn in Manhattan,en +21430,New Rose Hotel,1998-09-05,93.0,,,tt0133122,No possession is sacred. No secret is safe.,A corporate raider (Christopher Walken) and his henchman (Willem Dafoe) use a chanteuse (Asia Argento) to lure a scientific genius away from his employer and family.,0,0,New Rose Hotel,en +39345,Casper Meets Wendy,1998-09-08,90.0,,8819,tt0140883,A Bewitching New Live-Action Movie!,"When a warlock threatens Wendy the Good Little Witch, she and her aunts hide out at a resort where Casper the Ghost is vacationing with his uncles. Although Casper and Wendy are told ghosts and witches don't get along, the two are kindred spirits! This spooky family-friendly adventure finds Casper and Wendy bridging the ghost-witch divide to battle the warlock who is intent on destroying Wendy.",0,0,Casper Meets Wendy,en +125764,In The Winter Dark,1998-09-10,92.0,,,tt0123114,,A mysterious creature is killing a farmer's livestock.,0,0,In The Winter Dark,en +229254,Veranda för en tenor,1998-09-10,97.0,,,tt0120880,,"The author Thomas meets his childhood friend Hoffman on an autumn night in 1997. They decide to let a dream come true: to make a film of a play by Thomas, Veranda for a Tenor, with Hoffman in the lead role. The story takes us back to the summer of 1961, which changed their lives. The writing of the script awakens memories and forbidden questions are answered. Their friendship is put to the test a final time. Veranda for a tenor is a film about male friendship, but also about love. Their love for the same woman...",0,0,Veranda för en tenor,sv +17962,After Life,1998-09-11,118.0,,,tt0165078,What is the one memory you would take with you?,"After death, people have just one week to choose only a memory to keep for eternity.",11791,0,ワンダフルライフ,ja +78231,Babymother,1998-09-11,82.0,,,tt0168475,From Ragga to Riches.,"A single mother determined to make it as a singer puts together an all girl reggae group named Neeta, Sweeta, & Nastie with her friends. Living in a housing project with little support, the odds are obviously against her. Emotionally she struggles too as she learns at her mother's death that her actual mother is the woman she had thought was her older sister. With the help of a female agent, the group starts to get some exposure and rises above their setting.",0,0,Babymother,en +22256,Without Limits,1998-09-11,117.0,,,tt0119934,PRE. The way he competed. The way he lived his life.,"The film follows the life of famous 1970s runner Steve Prefontaine from his youth days in Oregon to the University of Oregon where he worked with the legendary coach Bill Bowerman, later to Olympics in Munich and his early death at 24 in a car crash.",25000000,777423,Without Limits,en +4338,I Woke Up Early The Day I Died,1998-09-13,90.0,,,tt0125211,,"A mental patient escapes from the looney bin in drag, robs a bank, and goes on the lam!",0,0,I Woke Up Early The Day I Died,en +78568,"Late August, Early September",1998-09-14,112.0,,,tt0167925,,"A story about the transition from late youth to early maturity, the film follows several friends and lovers as they come to make decisions on how to live their lives--getting a job more in harmony with ones ideals, committing to a lover, giving up a lover that no longer loves you: a film about grown-ups growing up.",0,0,"Fin août, début septembre",fr +10162,Waking Ned,1998-09-15,91.0,,,tt0166396,How far would you go to win a fortune!,"When a lottery winner dies of shock, his fellow townsfolk attempt to claim the money.",0,0,Waking Ned,en +11855,Pecker,1998-09-16,87.0,,,tt0126604,He never realized how far 35 millimeters would take him.,"A Baltimore sandwich shop employee becomes an overnight sensation when photographs he's taken of his weird family become the latest rage in the art world. The young man is called ""Pecker"" because he pecks at his food like a bird.",0,0,Pecker,en +9840,The Dreamlife of Angels,1998-09-16,113.0,,,tt0120449,,"In Lille, two penniless young women with few prospects become friends. Isa moves in with Marie, who's flat-sitting for a mother and child in hospital in comas following a car crash. Isa is out-going, unskilled, with hopes of moving south to warmer climes. Marie usually is either angry or detached. Then, while Isa begins to visit the child in whose flat they live, going to hospital to read to her, Marie slowly falls for a rich youth. At first Marie keeps him at bay, then she not only pursues him, she begins to dream he is her life's love. When Isa tries to warn Marie, their friendship flounders. How will Marie handle the inevitable? And once they lose the flat, where will they go?",500000,0,La vie rêvée des anges,fr +11545,Rushmore,1998-09-17,93.0,,,tt0128445,Love. Expulsion. Revolution.,"When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.",9000000,17096053,Rushmore,en +8556,Am I Beautiful?,1998-09-17,117.0,,,tt0144106,,No overview found.,0,0,Bin ich schön?,de +24746,Six-String Samurai,1998-09-18,91.0,,,tt0118736,Vegas Needs a New King.,"In a post-apocalyptic world where the Russians have taken over a nuked USA and Elvis is king of Lost Vegas, Buddy is a '50s rocker and wandering warrior rolled into one, too-cool package. Armed with his six-string in one hand and his sword in the other, Buddy is on his way to Vegas to succeed Elvis as King. Along the way, he saves an orphan who decides to tag along.",2000000,124494,Six-String Samurai,en +21132,Monument Ave.,1998-09-25,93.0,,,tt0119802,,"Bobby O'Grady a low level member of a Boston Irish gang run by Jackie O'Hara. Jackie demands absolute, total loyalty to him. When Jackie kills one of Bobby's buddies, Teddy, Bobby and others have to keep it an absolute secret, even from their and Teddy's relatives.",0,0,Monument Ave.,en +9812,Thursday,1998-09-25,84.0,,,tt0124901,They say the past always catches up with you. This could be the day.,"Casey has given up drug dealing for a suburban idyll in Houston, a job as an architect and a new wife. They are even planning to adopt a child. But Casey's past arrives on the doorstep in the shape of Nick, an old business partner. And all hell breaks loose!",0,0,Thursday,en +17044,The Land Girls,1998-09-25,111.0,,,tt0119494,The story of three young women and the events that would change their lives... The friendships that would stay with them forever... and the loves that would change their hearts.,"During World War II, the organisation ""The Women's Land Army"" recruited women to work on British farms while the men were off to war. Three such ""land girls"" of different social backgrounds - quiet Stella, young hairdresser Prue, and Cambridge graduate Ag - become best friends in spite of their different backgrounds.",0,0,The Land Girls,en +9877,Urban Legend,1998-09-25,99.0,,52760,tt0146336,It Happened To Someone Who Knows Someone You Know... You're Next.,"There's a campus killer on the loose who's making urban legends, like the one about eating pop rocks and soda at the same time will make your stomach explode and the one about a psycho with an axe stepping into the backseat of your car at the gas station when not looking, into reality.",14000000,72527595,Urban Legend,en +279090,"Ich Chef, Du Turnschuh",1998-09-26,,,,tt0183225,,,0,0,"Ich Chef, Du Turnschuh",de +92657,Lick the Star,1998-10-01,14.0,,,tt0197626,,"A clique of school girls devise a secret plan that they code-name ""Lick the Star"".",0,0,Lick the Star,en +45935,Flowers of Shanghai,1998-10-01,130.0,,,tt0156587,,Women struggle in a Shanghai brothel where everything only appears to be beautiful.,0,0,海上花,cn +43997,Divorcing Jack,1998-10-01,110.0,,,tt0127516,,"He's Irish, he's ageing, he drinks, is a touch cynical and when he has time writes a newspaper column. On the eve of the country's first election as an independent state, Dan Starkey's life is about to change after he finds the young woman he has just made love to dead and his only ally is a nun",0,0,Divorcing Jack,en +27791,Strangeland,1998-10-02,86.0,,,tt0124102,Wanna come to a party?,"A pierced and tattooed sadist, Captain Howdy, trolls the Internet for naive teens, luring them to his home to torture and defile them. When Howdy kidnaps and tortures the daughter of police Detective Mike Gage, he is caught. Deemed insane, he is sent to an asylum but is released soon after, seemingly better. However, Gage knows it is only a matter of time before Howdy strikes again, and he's ready to unleash his own form of retribution when the time comes.",1100000,631221,Strangeland,en +8916,Antz,1998-10-02,83.0,,,tt0120587,Every ant has his day.,"In this animated hit, a neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.",60000000,171757863,Antz,en +37532,Slam,1998-10-07,100.0,,,tt0139615,Words make sense of a world that won't.,"Slam tells the story of Ray Joshua, an original, gifted young MC trapped in a war-zone housing project known as Dodge City. Unable to find a job, Ray copes with the despair and poverty of his neighborhood by using his wits and verbal talent. Written by Offline Publicist Young Ray Joshua lives in the Washington, DC, district known as Dodge City, which is dominated by gang wars. One day he is arrested when his drug dealer is gunned down while talking to him. He is put to prison where two rival gangs, Thug Life and the Union, want to recruit him as a member.",1,0,Slam,en +62012,Le Poulpe,1998-10-07,0.0,,,tt0162555,,,0,0,Le Poulpe,fr +56709,Legacy,1998-10-09,105.0,,,tt0156734,Deception and intrigue in the combat zones of Manila,A photojournalist deported from a war zone in Asia meets up with a woman who is looking for her father. He offers to help her...,0,0,Legacy,en +134368,One Tough Cop,1998-10-09,90.0,,,tt0122642,,,0,0,One Tough Cop,en +416437,Dear Jesse,1998-10-10,82.0,,,tt0150290,,"In 1996, at age 30, native son Tim Kirkman returns to North Carolina to explore the parallels and differences between himself and Jesse Helms: they're from the same town and college, with media interests, from families blessed by adoptions, Baptists by upbringing.",0,0,Dear Jesse,en +407,Short Sharp Shock,1998-10-15,93.0,,,tt0162426,,Three friends get caught in a life of major crime.,500000,0,Kurz und schmerzlos,de +11854,Kuch Kuch Hota Hai,1998-10-16,185.0,,,tt0172684,Something Happens,"Anjali is left heartbroken when her best friend and secret crush, Rahul, falls in love with Tina. Years later, Tina's young daughter tries to fulfil her mother's last wish of uniting Rahul and Anjali.",1530000,15306000,Kuch Kuch Hota Hai,hi +42674,Gallo cedrone,1998-10-16,0.0,,,tt0167947,,,0,0,Gallo cedrone,it +40990,The Keeper,2004-05-14,95.0,,,tt0364457,,"When an apparently exemplary cop abducts and secretly imprisons a beautiful dancer, a deadly battle of wills between captor and captive ensues.",4000000,0,The Keeper,en +9425,Soldier,1998-10-23,99.0,http://www.wb-soldier.com/,,tt0120157,"Left for dead on a remote planet for obsolete machines and people, a fallen hero has one last battle to fight","Sergeant Todd is a veteran soldier for an elite group of the armed forces. After being defeated by a new breed of genetically engineered soldiers, he is dumped on a waste planet and left for dead. He soon interacts with a group of crash survivors who lead out a peaceful existence. The peace is broken as the new soldiers land on the planet to eliminate the colony, which Sergeant Todd must defend.",75000000,14567883,Soldier,en +9821,The Mighty,1998-10-23,100.0,,,tt0119670,The quest for friendship is the noblest cause of all,"This tells the story of a strong friendship between a young boy with Morquio's syndrome and an older boy who is always bullied because of his size. Adapted from the novel, Freak the Mighty, the film explores a building of trust and friendship. Kevin, an intelligent guy helps out Maxwell to improve his reading skills. In return, Kevin wants Maxwell to take him out places since he is not allowed out unauthorized. Being the social outcasts of the town, Kevin and Maxwell come to realize that they are similar to each other and accept that they are ""freaks"" and nothing will stop them.",0,0,The Mighty,en +89330,Poliisin poika,1998-11-01,80.0,,,tt0177867,,,0,0,Jari Tervon Poliisin poika,fi +15086,La Patinoire,1998-11-01,80.0,,,tt0120785,,No overview found.,0,0,La Patinoire,en +38202,Logan's War: Bound by Honor,1998-11-01,90.0,,,tt0176943,,"Chuck Norris stars as martial arts extraordinaire Jake Fallon, who, after the death of his brother and sister-in-law, adopts (and trains) his orphaned nephew. Logan (Eddie Cibrian, TV's Invasion). After fifteen years of careful instruction, Logan is determined to avenge his parents Death... And, he'll need Uncle Jake's help to do it.",0,0,Logan's War: Bound by Honor,en +77246,David and Lisa,1998-11-01,86.0,,,tt0164013,,"It was adapted as a stage play in 1967, and was remade as a television movie in 1998 starring Lukas Haas, Sidney Poitier and Brittany Murphy.",0,0,David and Lisa,pt +277726,Better Living,1998-11-02,95.0,,,tt0131972,,"A comedy about families, the elements that bind them together, and about hope in the face of hardship.",0,0,Better Living,en +12888,Belly,1998-11-04,96.0,,,tt0158493,"Money, power, respect... but who's got your back?","Tommy Brown and Sincere are best friends as well as infamous and ruthless criminals and shot-callers in the hood. Respected by many but feared by all. As the police are closing in on them and new players are looking for a come up, will their reign last?",0,0,Belly,en +58467,Girl,1998-11-05,99.0,,,tt0138467,A straight-A teen explores Seattle's rock scene.,"Andrea Marr is a bright, straight-A, mature, 18-year-old high school senior on the verge of womanhood who decides to abandon her sheltered, boring lifestyle and her bookish friend Darcy for a look into the local rock and roll scene as a groupie to local rock singer Tod Sparrow and learn more about the life of one who follows a touring band along with her new friends aspiring rock star wannabee Cybil, outgoing fellow groupie Rebecca, and music critic Kevin.",0,0,Girl,en +9882,The Siege,1998-11-06,116.0,,,tt0133952,On November 6th our freedom is history,The secret US abduction of a suspected terrorist leads to a wave of terrorist attacks in New York that lead to the declaration of martial law.,70000000,116672912,The Siege,en +10663,The Waterboy,1998-11-06,90.0,,,tt0120484,You can mess with him. But don't mess with his water.,Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.,23000000,185991646,The Waterboy,en +10921,Babylon 5: The River of Souls,1998-11-08,94.0,,10441,tt0146247,,A group of Soul Hunters come to Babylon 5 demanding the return of something that was stolen from them.,0,0,Babylon 5: The River of Souls,en +31473,An American Tail: The Treasure of Manhattan Island,1998-11-16,96.0,,8783,tt0166973,"Meet Fievel. In his search to find his family, he discovered America.","Fievel and his friend Tony Toponi find a map that they believe points to a treasure buried somewhere beneath Old New York, and the plucky rodent is determined to find it. However, what he discovers under the city is a tribe of Native American mice who were driven underground by prejudiced European immigrants.",0,0,An American Tail: The Treasure of Manhattan Island,en +90762,"Goodbye, 20th Century",1998-11-17,83.0,,,tt0179196,The future is as screwed up as the past.,"In the year 2019, after global destruction and descent into savagery, the immortal Kuzman tried to discover his destiny in order to learn how to die. As he enters the whirling circles of time, we discover the blasphemy of our century, and how it is to close its circle",0,0,Zbogum na dvaesetiot vek,mk +47186,Claire Dolan,1998-11-18,95.0,,,tt0150143,,"A high-priced call girl, shocked by her mother's death, decides to get out of the business and have a baby.",0,0,Claire Dolan,en +14444,The Rugrats Movie,1998-11-20,79.0,,57129,tt0134067,,"Tommy faces responsibility when Dil, his new baby brother, is born. As with all newborns, the child becomes a bane to Tommy and the rest of his gang. They decide to return Dil to where he came from, the hospital, but they get lost along the way. Can they find their way home and can Tommy and Dil learn to get along?",30000000,100491683,The Rugrats Movie,en +238972,Blind Faith,1998-11-23,122.0,http://www.sho.com/sho/movies/titles/97913/blind-faith#/index,,tt0135166,What would you be willing to sacrifice to keep your family secrets?,"in 1957 an African-American criminal lawyer (Courtney B. Vance) defends his nephew, who faces the death penalty for murdering a white boy. Charles S. Dutton, Kadeem Hardison, Garland Whitt and Lonette McKee costar in this drama of racial and social tensions.",0,0,Blind Faith,en +125300,Hi-Life,1998-11-27,82.0,,,tt0132213,A romantic comedy for the romantically challenged.,Jimmy needs $900 to clear a gambling debt but a series of lies leads to Ray trying to raise the cash from friend's who owe him money.,0,0,Hi-Life,en +81549,Everything's Gonna Be Great,1998-11-27,107.0,,,tt0263438,,"When Altan swipes prescription drugs from his brother Nuri's pharmacy, they soon find themselves on a dangerous but funny road trip to get rid of the stuff and escape the mafiosi Altan tried to double-cross. Along the way, the brother who are compete opposites finally bond.",0,0,Her Şey Çok Güzel Olacak,tr +1448,The Wisdom of Crocodiles,1998-11-27,98.0,,,tt0120894,,A vampire in London is searching for the ideal woman to 'redeem' him.,0,0,The Wisdom of Crocodiles,en +3513,Legionnaire,1998-12-03,98.0,,,tt0126388,,"Alain Lefevre is a boxer paid by a Marseille mobster to take a dive. When he wins the fight he attempts to flee to America with the mobster's girlfriend Katrina. This plan fails and he seeks escape by joining the foreign legion. As part of the legion he tangles with abusive lieutenant Steinkampf and bonds with legionnaires Luther, Mackintosh and Rosetti.",20000000,0,Legionnaire,en +280030,Farewell Baghdad,2014-04-10,105.0,,,tt2890140,,Between the years 1950-51 close to 130 thousand Jews left Iraq. The most ancient community in the world ceased to exist.,0,0,Farewell Baghdad,en +54959,Soldier,1998-12-10,156.0,,,tt0211634,He who kills for his country is called...Soldier,The story follows a young man (Bobby Deol) who flees India and arrives in Australia seeking vengence for something that started in India. In Australia he meets and falls in love with the daughter of a rich and powerful man(Suresh Oberoi). The story keeps the covers on Bobby Deols plan until the end when everything is revealed as to why he is a SOLDIER.,0,0,Soldier,hi +200,Star Trek: Insurrection,1998-12-10,103.0,,115570,tt0120844,The battle for paradise has begun.,"When an alien race and factions within Starfleet attempt to take over a planet that has ""regenerative"" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.",70000000,118000000,Star Trek: Insurrection,en +36247,Rebirth of Mothra III,1998-12-12,99.0,,171732,tt0189764,,"To save the world, Mothra goes back in time in an attempt to defeat a younger King Ghidorah.",0,0,モスラ3 キングギドラ来襲,ja +33201,Jeremiah,1998-12-14,90.0,,2704,tt0174792,,"The young Jeremiah grows up in a priest's family in the village of Anathoth, near Jerusalem. God appears to Jeremiah in different human guises on several occasions, and makes it clear to him that he has been selected to announce God's message to the people of Jerusalem",0,0,Jeremiah,en +155308,Zakhm,1998-12-14,0.0,,,tt0211126,,"Amidst religious riots, a son deals with his mother's life-threatening injuries, and her last request.",0,0,Zakhm,en +166207,Pápa Piquillo,1998-12-18,,,,tt0194283,,,0,0,Pápa Piquillo,es +79419,The First Snow of Winter,1998-12-25,28.0,,,tt0197467,,Duck faces winter alone having missed the migration,0,0,The First Snow of Winter,en +9441,Stepmom,1998-12-25,124.0,,,tt0120686,Be there for the joy. Be there for the tears. Be there for each other.,"Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie’s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.",0,0,Stepmom,en +213683,Перекресток,1998-12-30,,,,tt0191353,,,0,0,Перекресток,ru +46992,Hilary and Jackie,1998-12-30,121.0,,,tt0150915,Two sisters. Two lives. One Love...,"The tragic story of world-renowned cellist Jacqueline du Pré, as told from the point of view of her sister, flautist Hilary du Pré-Finzi.",0,0,Hilary and Jackie,en +28275,Jingle Bells,1999-01-01,48.0,,,tt0228459,,No overview found.,0,0,Jingle Bells,en +47596,Snow days,1999-01-01,90.0,,,tt0212517,, ,0,0,Snow days,en +111014,Dead Silent,1999-01-01,95.0,,,tt0195630,Words can kill.,"Julia Kerrbridge is working hard to become a doctor. Suddenly, Julia finds herself the guardian of her young niece, Amanda, after her parents were found murdered.",0,0,Dead Silent,en +108391,Stranger in My House,1999-01-01,94.0,,,tt0180207,,"A middle-aged woman takes on a young female tenant to help pay her debts, but gets a lot more than she bargains for when the girl starts to act very strangely indeed . . .",0,0,Stranger in My House,en +32306,The Underground Comedy Movie,1999-01-01,88.0,,,tt0201290,,A series of comedic short films guaranteed to offend.,0,0,The Underground Comedy Movie,en +113178,A Wake in Providence,1999-01-01,94.0,,,tt0192766,,,0,402805,A Wake in Providence,en +113273,On the Ropes,1999-01-01,94.0,,,tt0181733,The real fight is outside the ring.,The story of three young boxers and their coach who is determined to guide them in a positive direction in and out of the ring.,0,0,On the Ropes,en +18143,She and Her Cat: Their Standing Points,1999-01-01,5.0,http://www2.odn.ne.jp/~ccs50140/cat/index.html,,tt0373960,,"A cat reminisces about his life with and feelings for his owner, a single woman.",0,0,彼女と彼女の猫,ja +32139,Soccer Dog: The Movie,1999-01-01,99.0,,,tt0134969,,A heart-warming comedy about the friendship between the new kid in town and a soccer-playing dog on the lam from the dog-catcher. It's up to these two underdogs to win the PeeWee Soccer League championship game.,0,0,Soccer Dog: The Movie,en +64683,Killing Us Softly 3: Advertising's Image of Women,1999-01-01,34.0,,,tt0336699,,"Jean Kilbourne's pioneering work helped develop and popularize the study of gender representation in advertising. Her award-winning Killing us Softly films have influenced millions of college and high school students across two generations and on an international scale. In this important new film, Kilbourne reviews if and how the image of women in advertising has changed over the last 20 years. With wit and warmth, Kilbourne uses over 160 ads and TV commercials to critique advertising's image of women. By fostering creative and productive dialogue, she invites viewers to look at familiar images in a new way, that moves and empowers them to take action.",0,0,Killing Us Softly 3: Advertising's Image of Women,en +73098,Los Enchiladas!,1999-01-01,74.0,,,tt0194119,,"About a half dozen slacker dudes dwell at their jobs at Los Enchiladas, the local Mexican sit-down joint. The 2 folks in ""management"" are both into their own authority and fill their days creating wild & stupid rules for the working folk. By mid-film, however, the manager has fled the cops after beating the crap out of a competing restaurant's dancing gyro... and the ""Chef"" has jumped ship to join a beatnik poet's groups which specializes in exotic menu-writing. This leaves the minimum-wage crowd to run the place as they see fit.... and they see a lot of debauchery, booze, and free steak in their future.",0,0,Los Enchiladas!,en +113279,Regret to Inform,1999-01-01,72.0,,,tt0181786,,"In this film made over ten years, filmmaker Barbara Sonneborn goes on a pilgrimage to the Vietnamese countryside where her husband was killed. She and translator (and fellow war widow) Xuan Ngoc Nguyen explore the meaning of war and loss on a human level. The film weaves interviews with Vietnamese and American widows into a vivid testament to the legacy of war.",0,0,Regret to Inform,en +3144,Rock 'n' Roll Frankenstein,1999-01-01,88.0,,,tt0183717,,No overview found.,0,0,Rock 'n' Roll Frankenstein,en +399229,Kovat Miehet,1999-01-01,,,,tt0236398,,,0,0,Kovat Miehet,fi +94894,Angel's Dance,1999-01-01,99.0,,,tt0159995,Don't mess with an angel and expect to be saved.,A young hitman is asked to prove himself by killing an innocent woman.,0,0,Angel's Dance,en +30817,Stealth Fighter,1999-01-01,88.0,,,tt0181838,,"A navy pilot fakes his own death and steals a stealth fighter plane from a U.S.A.F base. He then acts as a mercenary, targeting military installations around the world.",0,0,Stealth Fighter,en +10207,Message in a Bottle,1999-02-22,131.0,,,tt0139462,A story of love lost and found.,"A woman finds a romantic letter in a bottle washed ashore and tracks down the author, a widowed shipbuilder whose wife died tragically early. As a deep and mutual attraction blossoms, the man struggles to make peace with his past so that he can move on and find happiness.",80000000,118880016,Message in a Bottle,en +133523,"See You in Hell, My Darling",1999-01-01,110.0,,,tt0244199,,"What is Hell for others is home for us. This is the story of Vera, Elsa, a Man, and the great love that united them. They started out growing up together but they didn't get very far. Leaving behind a desolate world, full of traps, they will begin a hallucinogenic journey of tenderness and violence. The story of three lovers who in a devious and gruesome manner try to destroy each other, to gain a solitary entrance to Hell.",0,0,Θα σε δω στην κόλαση αγάπη μου,el +45505,Moonlight Express,1999-01-01,106.0,,,tt0202478,,"On the eve of her Japanese wedding, Hitomi (Takako Tokiwa) loses her fiance, Tatsuya, to a car accident. She travels to Hong Kong seeking solace and meets undercover cop Karbo -- a dead ringer for Tatsuya. The duo is forced to take it on the lam when a corrupt colleague frames Karbo, and Hitomi soon finds herself torn between her love for Tatsuya and her blossoming feelings for her fellow fugitive. Leslie Cheung plays Tatsuya and Karbo.",0,0,Sing yuet tung wa,en +73799,Other Worlds,1999-01-02,2.0,,,tt3651062,,"A man and a woman, talking over their relationship.",0,0,Tooi Sekai,en +10916,Babylon 5: A Call to Arms,1999-01-03,94.0,,10441,tt0146455,,"Allies of the Shadows seek revenge against humanity. This movie sets up the series, ""Crusade,"" the sequel to ""Babylon 5.""",0,0,Babylon 5: A Call to Arms,en +53945,Pirates: Blood Brothers,1999-01-03,360.0,,,tt0167554,,"Two brothers fell in love with the same woman, who was nearly killed by one of them in an accident. After the two men parted in anger, they meet years later when one is a famous pirate and the other one is a soldier who needs to hunt him down...",0,0,Caraibi,en +221981,The Wrong Girl,1999-01-04,120.0,,,tt0184039,,"A boy brings home his new girlfriend. However, Mom is sure that something isn't right about her, which starts a fight with her son. And then everything takes a deadly turn for the worst.",0,0,The Wrong Girl,en +64202,Batman Beyond: The Movie,1999-01-10,132.0,,379475,tt0231237,"A New Hero, For A New Era","Fueled by remorse and vengeance, a high schooler named Terry McGinnis revives the role of Batman. Under supervision of an elderly Bruce Wayne, he fights crime in a harsh futuristic Gotham.",0,0,Batman Beyond: The Movie,en +9423,Virus,1999-01-14,99.0,,,tt0120458,Life on earth is in for a shock.,"When the crew of an American tugboat boards an abandoned Russian research vessel, the alien life form aboard regards them as a virus which must be destroyed.",75000000,14010690,Virus,en +28902,In Dreams,1999-01-15,100.0,,,tt0120710,You don't have to sleep to dream,"Claire Cooper dreams strange things from time to time. One night, she dreams about a little girl being taken away by a stranger...",0,0,In Dreams,en +15556,At First Sight,1999-01-15,128.0,,,tt0132512,Science gave him sight. She gave him vision.,A blind man has an operation to regain his sight at the urging of his girlfriend and must deal with the changes to his life.,0,0,At First Sight,en +125506,Getting to Know You,1999-01-22,96.0,,,tt0171340,,A chance encounter alters a teenage girl's perception of herself and her outlook on life.,0,0,Getting to Know You,en +48341,License to Live,1999-01-23,109.0,,,tt0197730,,"Yutaka was fourteen years old when he was run over by a car and fell into a coma. Now, ten years later, he wakes up and realizes that his family is not intact anymore: father, mother and sister live at different places. Yutaka decides to re-open the pony farm that his family once ran.",0,0,ニンゲン合格,ja +34766,Zenon: Girl of the 21st Century,1999-01-23,97.0,,321148,tt0186726,,"Zenon Kar, a 13-year-old girl who lives on a space station in the year 2049, gets into some trouble and is banished to Earth. With help from some Earth friends she must find her way back.",0,0,Zenon: Girl of the 21st Century,en +201581,The Autumn Heart,1999-01-27,110.0,,,tt0120593,Sister Forever,"When a school bus driving woman (Tyne Daly) has a heart attack, she makes one request of her three daughters (Ally Sheedy, Marla Sucharetza, Marceline Hugo) - she wants them to find their long lost brother, who was taken away by their father (Jack Davidson) 16 years ago. What they discover is that while they have struggled, their father has become a wealthy man and their brother is in school at Harvard.",0,11532,The Autumn Heart,en +125548,The 24 Hour Woman,1999-01-29,93.0,,,tt0138279,A story about getting everything you want and what comes next,Grace tries to be the perfect mother and TV producer but finds trouble in juggling both.,0,0,The 24 Hour Woman,en +27653,An American Tail: The Mystery of the Night Monster,1999-02-04,78.0,,8783,tt0197230,,"Follow the clues to fun and excitement as the beloved little mouse takes on a big monster in this charming, full-length adventure. When a ferocious, mouse-nabbing creature puts fear into the hearts of New York City's rodents, Fievel and his friends team up with a reporter to chase after the scoop of the century and -- just maybe -- get a close-up look at the bad guy himself!",0,0,An American Tail: The Mystery of the Night Monster,en +31273,With Fire and Sword,1999-02-08,175.0,,138163,tt0128378,,"In the mid-17th century, Poland was the largest, most democratic, and most tolerant country in Europe. However, a tragic civil war brought about the gradual decline of the once glorious republic...",0,0,Ogniem i mieczem,pl +85230,The Clown at Midnight,1999-02-09,91.0,,,tt0156413,"Seven opposites, one old opera house, and a secret to die for.",Seven teenagers are stalked by a murderous clown while refurbishing an old opera house.,0,0,The Clown at Midnight,en +11622,Blast from the Past,1999-02-12,112.0,,,tt0124298,She'd never met anyone like him. He's never met anyone... Period.,"Following a bomb scare in the 1960s that locked the Webers into their bomb shelter for 35 years, Adam now ventures forth into Los Angeles to obtain food and supplies for his family, and a non-mutant wife for himself.",35000000,40263020,Blast from the Past,en +12479,Breakfast of Champions,1999-02-13,110.0,,,tt0120618,,A portrait of a fictional town in the mid west that is home to a group of idiosyncratic and slightly neurotic characters. Dwayne Hoover is a wealthy car dealer-ship owner that's on the brink of suicide and is losing touch with reality.,12000000,0,Breakfast of Champions,en +53168,King of Comedy,1999-02-13,89.0,,,tt0188766,,"Wan Tin-Sau is an actor who cannot seem to catch a break, since his only professional jobs are limited to being a movie extra. As well as being an actor, he is also the head of his village's community center.",0,0,喜剧之王,cn +41831,True Heart,1999-02-17,92.0,,,tt0120381,,"A brother and sister are plane-wrecked in Canada, where they must rely on the help of a native and his bear.",0,0,True Heart,en +49940,Breaking Out,1999-02-19,105.0,,,tt0177347,,The enthusiastic Reine is forced to take a job as a social worker at Kumla prison.,0,0,Vägen ut,sv +55403,Kulkuri ja joutsen,1999-02-19,,,,tt0154750,,,0,0,Kulkuri ja joutsen,fi +72375,Rien sur Robert,1999-02-24,0.0,,,tt0187457,,,0,0,Rien sur Robert,fr +55257,Juha,1999-02-25,78.0,,,tt0158692,,"A farmer's wife is seduced into running away from her stolid older husband by a city slicker, who enslaves her in a brothel.",1000000,0,Juha,fi +15256,200 Cigarettes,1999-02-26,101.0,,,tt0137338,It's 11:59 on New Years Eve... do you know where your date is?,"A collection of twentysomethings try to cope with relationships, loneliness, desire and their individual neuroses.",6000000,6852450,200 Cigarettes,en +18417,The Other Sister,1999-02-26,130.0,,,tt0123209,A love story for the romantically challenged.,"A mentally challenged girl proves herself to be every bit as capable as her ""perfect"" sister when she moves into an apartment and begins going to college.",35000000,0,The Other Sister,en +142412,Kaun?,1999-02-26,100.0,,,tt0195002,,"While alone in the house, a woman hears news of serial killer on the loose. And then a stranger rings the doorbell...",0,0,Kaun?,hi +104146,A Fish in the Bathtub,1999-03-01,96.0,,,tt0126908,,The fish stays...the marriage goes! A comedy about long term relationships.,0,0,A Fish in the Bathtub,en +79435,Night Wind,1999-03-03,95.0,,,tt0187579,,A housewife's (Catherine Deneuve) affair with a younger man (Xavier Beauvois) goes nowhere.,0,0,Le Vent de la nuit,fr +80713,Alone,1999-03-05,101.0,,,tt0190798,"Go deep, fear nothing, look for escape and be brave.","Maria, whose parents live in the country, cannot stand her father's authoritarian ways and moves to the city. She finds a job as a cleaner and tries to survive in a wretched apartment in the shabby part of a big city. She is pregnant, and the fact that her boyfriend has abandoned her does not help matters. When her father goes to the hospital for an operation, her mother comes to stay with her. Her neighbor, an old recluse whose only friend is his dog, begins to come out of his shell and these three lost souls try to give each other the strength to start over.",0,0,Solas,es +796,Cruel Intentions,1999-03-05,97.0,,52789,tt0139134,"In the game of seduction, There is only one rule: Never fall in love.","Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.",10500000,75902208,Cruel Intentions,en +434973,Sokkotanssi,1999-03-12,,,,tt0189102,,,0,0,Sokkotanssi,fi +12594,Wishmaster 2: Evil Never Dies,1999-03-12,96.0,,135489,tt0156182,Evil Has Been Summonned...Again!,"During a failed art heist, the Djinn is once again liberated. This time, to complete the 1001 wishes that he needs before the final 3, he lets himself go to prison, where he starts his evil reign twisting the hopes of the prisoners. Meanwhile, the woman who set him free accidentally, Morgana, tries to find a way to stop him, aided by a young priest.",2500000,0,Wishmaster 2: Evil Never Dies,en +57544,Dying of Laughter,1999-03-12,113.0,,,tt0168080,El pueblo los adoraba. Ellos se odiaban. Esta es su historia,"Nino and Bruno are two comedians who reach the heights of success with their duo act, turning them into huge TV celebrities. However, the hate between them grows as fast, and as much, as their fame",3000000,0,Muertos de risa,es +30943,The Deep End of the Ocean,1999-03-12,106.0,,,tt0120646,The search for her son was over. The search for her family was just beginning.,"Michelle Pfeiffer is ferocious in the role of a desperate mother whose 3-year-old son disappears during her high school reunion. Nine years later, by chance, he turns up in the town in which the family has just relocated. Based on Jacquelyn Mitchard's best-selling novel (an Oprah book club selection), the movie effectively presents the troubling dynamics that exist between family members who've suffered such an unsettling loss.",38000000,28121100,The Deep End of the Ocean,en +1073,Arlington Road,1999-03-19,117.0,,,tt0137363,Your Paranoia Is Real.,Threats from sinister foreign nationals aren't the only thing to fear. Bedraggled college professor Michael Faraday has been vexed (and increasingly paranoid) since his wife's accidental death in a botched FBI operation. But all that takes a backseat when a seemingly all-American couple set up house next door.,21500000,0,Arlington Road,en +10354,True Crime,1999-03-19,127.0,,,tt0139668,,"Boozer, skirt chaser, careless father. You could create your own list of reporter Steve Everett's faults but there's no time. A San Quentin Death Row prisoner is slated to die at midnight – a man Everett has suddenly realized is innocent.",0,0,True Crime,en +210307,The Waiting Game,1999-03-25,85.0,,,tt0235872,,A group of aspiring young actors wait tables at a New York City restaurant.,0,0,The Waiting Game,en +285908,The Last Breath,1999-03-25,0.0,,,tt0191076,,,3800000,559298,Le dernier souffle,fr +11374,Edtv,1999-03-26,122.0,,,tt0131369,Fame. Be careful. It's out there.,Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.,80000000,0,Edtv,en +155011,Muzungu,1999-03-26,0.0,,,tt0193345,,,0,0,Muzungu,it +62825,A Long Hot Summer,1999-03-26,0.0,,,tt0168123,They were young. They were beautiful. They were born to win.,"The story of a rock band ""Kalle Päätalo"" in the 1980s.",0,0,Pitkä kuuma kesä,fi +142499,The Harmonium in My Memory,1999-03-27,116.0,,,tt0235452,,"Hong-yun is a high school girl in little mountain village when she falls head-over-heels for a handsome new school teacher, Mr. Jang. What with taking care of her youngest baby brother for her widowed mother and the impossible age difference, it is a roller-coaster ride for her as she tries to become someone special for Mr. Jang while he seems interested in the other new teacher at the school, Miss Yang.",0,0,내 마음의 풍금,ko +139692,Coquille,1999-03-27,95.0,,,tt0266428,On the Seashore,"Thirty years after graduation, a man and a woman meet again at an alumni reunion. They are no longer young, but the moment she sees him, memories of her first love are revived. Her love for him has never faded even though she married another man and bore his child. What has kept her going is a white shell the boy gave her and a phrase of Jean Cocteau's poem, ""My ears are shells, fondly hearing the sound of the sea..."" She gets a divorce, returns to her hometown and opens a bar named ""Coquille,"" which means ""shell."" Without their knowing, an unexpected turn of events awaits the two...",0,0,コキーユ-貝殻,ja +40863,Jackie Chan: My Stunts,1999-03-30,94.0,,,tt0242546,,"Jackie Chan My Stunts shows some of the tricks of the trade that Jackie and his stunt team utilize to perform their stunts. This is not an endless gag reel of stunts gone wrong, but an in depth look at how timing and camera placement can make or break a shot. Jackie will show you what is done to enhance fights and protect the stuntmen from getting injured. Of course, if the character you are portraying is wearing shorts and a tank top, you just have to get hurt!",0,0,成龍的特技,en +18908,The One and Only,1999-04-01,106.0,,,tt0167137,,"When handyman Niller comes to install Sus' new kitchen one day, their immediate crush is a sweet escape from both of their problematic relationships.",0,5405313,Den eneste ene,da +140519,Mascara,1999-05-07,94.0,,,tt0188052,Life is what happens while you're making other plans.,Mascara is the story of three very different women who rediscover the value of their friendship at a time when their lives are in turmoil. Panic sets in as they approach their thirtieth birthdays and nothing is going according to plan.,0,0,Mascara,en +161227,Jaanam Samjha Karo,1999-04-01,153.0,http://www.imdb.com/title/tt0226847/,,tt0226847,,"Talented singer and dancer, Chandni's life is dominated by three aunts, and a soft-spoken maternal grandmother. She meets with a womanizer named Rahul, and falls in love with him. Rahul treats her just like any of his other girlfriends, and decides to have an affair with her. Rahul unexpectedly meets with his dadaji, who wants him to get married to Chandni. In order to fool him, Rahul asks Chandni to pretend to be his wife, which she does. After Dadaji leaves, will Rahul and Chandni go their separate ways, and will Rahul return to the waiting arms of his many girlfriends?",0,0,Jaanam Samjha Karo,en +8970,The Out-of-Towners,1999-04-02,90.0,,,tt0129280,"They fell in love 24 years ago... and in the next 24 hours, they'll remember why.","The remake of the 1970 Neil Simon comedy follows the adventures of a couple, Henry and Nancy Clark, vexed by misfortune while in New York City for a job interview.",75000000,29000000,The Out-of-Towners,en +15387,Cosy Dens,1999-04-08,115.0,,,tt0167331,,"Two families, Sebkovi and Krausovi, are celebrating christmas, but not everyone is in a good mood. Teenage kids think their fathers are totaly stupid, fathers are sure their children are nothing more than rebels, hating anything they say. Written by Antonín",0,0,Pelíšky,cs +18621,Best Laid Plans,1999-04-09,92.0,,,tt0133412,Keeping a relationship alive can be murder,"Rich, successful Bryce meets beautiful Lissa at a bar one night and invites her back to his house, not suspecting for a moment that Lissa isn't really who she seems. What unfolds next is a dangerous, tangled web of double-crosses and seduction.",0,0,Best Laid Plans,en +82401,Can of Worms,1999-04-10,90.0,,,tt0186910,Who's Got Time to Be a Teenager When You Have to Save the World?,A teen is visited by aliens after he broadcasts a message into space.,0,0,Can of Worms,en +114719,Friends & Lovers,1999-04-16,103.0,,,tt0143261,... can you tell the difference?,"Friends for ten years, a group of twenty-somethings head for the ski slopes as guests of Ian's father. (Ian and dad are estranged because dad worked too many hours when Ian was a lad.) Dad has something to say, but Ian won't listen. Meanwhile, David is gay and virginal; Ian's business partner, Keaton, is unhappy that his sister Jane is pregnant with no plans to tell the father; Lisa is everybody's pal and no one's lover; John, stuck in adolescence, is always on the make. He brings German-born stunner, Carla, and promptly loses her affection to Hans, a fast-talking ski instructor. David meets Manny: they have chess in common. Soon, surprises abound as relationships take new turns.",0,94633,Friends & Lovers,en +6522,Life,1999-04-16,108.0,,,tt0123964,Share it with someone you love.,Two men in 1930s Mississippi become friends after being sentenced to life in prison together for a crime they did not commit.,80000000,73345029,Life,en +28519,The Winslow Boy,1999-04-16,104.0,,,tt0155388,,"Early 20th century England: while toasting his daughter Catherine's engagement, Arthur Winslow learns the royal naval academy expelled his 14-year-old son, Ronnie, for stealing five shillings. Father asks son if it is true; when the lad denies it, Arthur risks fortune, health, domestic peace, and Catherine's prospects to pursue justice.",0,0,The Winslow Boy,en +16331,The Jack Bull,1999-04-17,116.0,,,tt0171410,All men want justice. Few are willing to pay the price.,"The Jack Bull tells the story of Myrl Redding, a Wyoming horse trader who clashes with Henry Ballard, a fellow rancher, after Ballard abuses two of Myrl's horses and their Crow Indian caretaker, Billy. When Judge Wilkins throws out Myrl's complaint, the war he wages to force Ballard to nurse the emaciated animals back to health escalates into a vigilante manhunt, murder and the possible defeat",0,0,The Jack Bull,en +60457,Michael Jordan: An American Hero,1999-04-18,0.0,,,tt0196751,,"Michael Jordan: An American Hero is an American television film that aired on April 18, 1999 on Fox. It stars Michael Jace as Michael Jordan.",0,0,Michael Jordan: An American Hero,en +99,All About My Mother,1999-04-19,101.0,,,tt0185125,Part of every woman is a mother/actress/saint/sinner. And part of every man is a woman.,"A single mother in Madrid sees her only son die on his birthday as he runs to seek an actress' autograph. Beside herself with grief, she returns to Barcelona to tell the boy's father about the death of the son he never knew he had.",8272296,67872296,Todo sobre mi madre,es +1443,The Virgin Suicides,1999-04-21,97.0,http://www.paramountvantage.com/virginsuicides/html_3/,,tt0159097,"Beautiful, mysterious, haunting, invariably fatal. Just like life.","A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.",6000000,10409377,The Virgin Suicides,en +16076,Screwed in Tallinn,1999-04-22,60.0,,,tt0311926,,"Percy Nilegaard collects Swedish single men and embarks on a bus trip to Tallinn with a so-called ""highly-experienced driver"".",0,0,Torsk på Tallinn - En liten film om ensamhet,sv +127468,The Amateur,1999-04-22,94.0,,,tt0202223,,"On the outskirts of a provincial town, Pajaro is determined to enter the Guinness Book of Records by breaking the longest bike-ride record. He rides around the fountain in the square with the help of his friend, Lopecito. He is willing to face many challenges, in attaining this new record. Will this race open the path to love for him, and for his redemption?",0,0,El Amateur,es +9451,Election,1999-04-23,99.0,,,tt0126886,Reading. Writing. Revenge.,A high school teacher's personal life becomes complicated as he works with students during the school elections.,0,0,Election,en +14829,Tenchi Forever!,1999-04-24,95.0,,199141,tt0205451,,"One day, Tenchi disappears in the forest near his house. Six months later, Ayeka and Ryoko locate Tenchi living in a city, but with a mysterious woman. What's more, Tenchi appears to have aged several years. Whenever Ayeka and Ryoko catch up to him, he disappears into thin air, apparently existing in a fabricated alternate dimension where he has no knowledge of his past.",0,0,Tenchi Muyô! In Love 2: Haruka naru omoi,en +6552,Idle Hands,1999-04-30,92.0,,,tt0138510,The touching story of a boy and his right hand.,"Anton is a cheerful but exceedingly non-ambitious 17-year-old stoner who lives to stay buzzed, watch TV, and moon over Molly, the beautiful girl who lives next door. However, it turns out that the old cliché about idle hands being the devil's playground has a kernel of truth after all.",25000000,4152230,Idle Hands,en +69428,Vaali,1999-05-01,157.0,,,tt0368400,,"Vaali (is a 1999 Tamil thriller film written and directed by S. J. Suryah. The film stars Ajith Kumar in a dual role with Simran appearing in another leading role. The supporting cast of the film include Jyothika in her debut venture, Livingston and Vivek. The film's music is composed by the music director, Deva while Jeeva was in charge of the cinematography. The film released on 1 May 1999 and went to become a commercial success as well as becoming critically acclaimed.",500000,500000,Vaali,en +58570,Where a Good Man Goes,1999-05-06,90.0,,,tt0202682,,"Fresh from a prison term, a former Triad boss resides in a hotel in Macau, where he befriends its owner and her young son.",0,0,再见阿郎,cn +264454,Nessuno mi pettina bene come il vento,2014-04-10,0.0,,,tt3608766,,,0,0,Nessuno mi pettina bene come il vento,it +16075,Great Expectations,1999-05-09,168.0,,,tt0167187,,"A young boy called Pip stumbles upon a hunted criminal who threatens him and demands food. A few years later, Pip finds that he has a benefactor. Imagining that Miss Havisham, a rich lady whose adopted daughter Estella he loves, is the benefactor, Pip believes in a grand plan at the end of which he will be married to Estella. However, when the criminal from his childhood turns up one stormy night and reveals that he, Magwitch, is his benefactor, Pip finds his dreams crumbling. Although initially repulsed by his benefactor, Pip gradually becomes loyal to him and stays with him until his death.",0,0,Great Expectations,en +125990,The Hunt for the Unicorn Killer,1999-05-09,99.0,,,tt0189593,,"An account of early 1970s social activist Ira Einhorn, who allegedly murdered his girlfriend and then fled the country.",0,0,The Hunt for the Unicorn Killer,en +57680,The Simple Life Of Noah Dearborn,1999-05-09,85.0,,,tt0200138,,"A 91 years old carpenter, who is still in completely good health, has to fight developers who are trying to force him to sell his land.",0,0,The Simple Life Of Noah Dearborn,en +53862,Trippin',1999-05-12,94.0,,,tt0160298,He's a legend in his own mind.,"Greg is near the end of his senior year in high school, wanting to go to the prom, eyeing Cinny (the school's beauty with brains) from afar, and regularly trippin', daydreaming about being a big success as a poet, a student, a lover. His mom wants him to apply to colleges, but Greg hasn't a clue. One of his teachers, Mr. Shapic, tries to inspire him, too. He finally figures out he can get close to Cinny if he asks her for help with college applications. But friendship isn't enough, he wants romance and a prom date. So, he tells a few lies and, for awhile, it seems to be working. Then, things fall apart and Greg has to figure out how to put the trippin aside and get real.",0,9016377,Trippin',en +362844,Survivor,1999-05-13,,,,tt0187534,,,0,0,Survivor,en +83965,The Thirteenth Year,1999-05-15,95.0,,,tt0200208,Cody's Not Just Growing Up... He's Growing Fins!,A teen learns that his birth mother is a mermaid after he begins to grow fins and slimy scales on his thirteenth birthday.,0,0,The Thirteenth Year,en +121091,Fever,1999-05-16,110.0,,,tt0177769,Who Can You Trust... When You No Longer Trust Yourself...,A struggling artist is implicated in a string of macabre murders.,6,0,Fever,en +41115,Garage Olimpo,1999-05-16,98.0,,,tt0201631,,A beautiful Argentine activist receives preferential treatment from a man supposed to torture her.,0,0,Garage Olimpo,es +8672,My Best Fiend,1999-05-17,95.0,,,tt0200849,,A look at the tumultuous yet productive relationship between German director Werner Herzog and actor Klaus Kinski.,0,0,Mein liebster Feind,de +31342,The Love Letter,1999-05-21,88.0,,,tt0166252,No one knows who sent it. No one knows who it's for. But everyone's getting the same message.,A romantic comedy about a mysterious love letter that turns a sleepy new england town upside down.,0,0,The Love Letter,en +11129,Human Traffic,1999-06-04,99.0,,,tt0188674,The Weekend has Landed!,"All that exists now is clubs, drugs, pubs and parties. I've got 48 hours off from the world, man I'm gonna blow steam out of my head like a screaming kettle. I'm gonna talk cods hit to strangers all night. I'm gonna lose the plot on the dance floor, the free radicals inside me are freaking man! Tonight I'm Jip Travolta, I'm Peter Popper, I'm going to Never Never Land with my chosen family, man. We're going to get more spaced out than Neil Armstrong ever did. Anything could happen tonight, you know? This could be the best night of my life! I've got 73 quid in my back burner. I'm gonna wax the lot, man. The milky bars are on me! Yeah!",600000,4000000,Human Traffic,en +120129,No One Writes to the Colonel,1999-06-04,118.0,,,tt0132905,,"Every Friday, the Colonel puts on his only suit and goes to the dock to await a letter announcing the arrival of his pension. But the townsfolk all know that this pension will never come. His wife also knows it, and even he knows it. But he is still waiting, living with the pain of the death of his son.",0,0,El coronel no tiene quien le escriba,es +4291,Kikujiro,1999-06-05,117.0,,,tt0199683,,"Brash, loudmouthed and opportunistic, Kikujiro is the unlikely companion for Masao who is determined to see the mother he has never met. The two begin a series of adventures which soon turns out to be a whimsical journey of laughter and tears with a wide array of surprises and unique characters along the way.",0,0,菊次郎の夏,ja +113137,The Book of Stars,1999-06-06,111.0,,,tt0163559,,"A tale of two sisters. Penny (Masterson) cares for her younger sister Mary (Malone), who suffers from cystic fibrosis. ""Cares for"" is a questionable term, as the hardened, edgy Penny secretly makes her living in the world's oldest profession while popping pills to help numb her from the grim reality of her job and the impending loss of her sister. Mary, a romantic daydreamer who faces her disease with a graceful, knowing spirit, remembers the days when her big sister was a ""brilliant"" published poet, and she pours her every thought, memory, and dream into a lovingly crafted scrapbook she calls ""the book of stars.""",0,0,The Book of Stars,en +817,Austin Powers: The Spy Who Shagged Me,1999-06-08,95.0,,1006,tt0145660,"I'm back, baby!","When diabolical genius, Dr. Evil travels back in time to steal superspy Austin Powers's ‘mojo’, Austin must return to the swingin' '60s himself – with the help of American agent, Felicity Shagwell – to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions and saves the world in his own unbelievably groovy way.",33000000,310940086,Austin Powers: The Spy Who Shagged Me,en +42739,The War Zone,1999-06-11,98.0,,,tt0141974,When the worst of men hides in a family with no history.,"An alienated teenager, saddened that he has moved away from London, must find a way to deal with a dark family secret.",0,0,The War Zone,en +56235,Return with Honor,1999-06-11,101.0,http://www.pbs.org/wgbh/amex/honor/,,tt0176093,,The story of U.S. fighter pilots shot down over North Vietnam who became POWs for up to 8 and a half years.,1000000,0,Return with Honor,en +31161,Adrenaline Drive,1999-06-12,112.0,,,tt0197213,,A gas leak explosion at a yakuza hideout provides a shy nurse and a rental car clerk with the opportunity to take a briefcase full of money. A cross-country chase ensues.,0,0,アドレナリンドライブ,ja +52612,Le créateur,1999-06-16,92.0,,,tt0203427,,"Auteur à succès, Darius voit des affiches annonçant sa nouvelle pièce. Soudain pris de panique, il se rappelle qu'il a oublié de l'écrire...",0,0,Le créateur,en +101338,Crane World,1999-06-17,90.0,,,tt0213905,,The portrait of a man and his attempts to make things up with life after losing his job.,0,0,Mundo grúa,en +74921,Ajlawju,1999-06-18,87.0,,,tt0238825,,,0,0,Ajlawju,pl +11664,"Die Bademeister – Weiber, saufen, Leben retten",1999-06-18,90.0,,,tt0202806,,No overview found.,0,0,"Die Bademeister – Weiber, saufen, Leben retten",de +31306,Crazy in Alabama,1999-10-22,111.0,,,tt0142201,,An abused wife heads to California to become a movie star while her nephew back in Alabama has to deal with a racially-motivated murder involving a corrupt sheriff.,0,0,Crazy in Alabama,en +5319,Hum Dil De Chuke Sanam,1999-06-18,188.0,,,tt0150992,,"Indian-based traditional family of Pundit Darbar (Vikram Gokhale) gets a visit from Sameer Rafilini (Salman Khan), from Italy, who has come as a pupil to learn music and singing. Darbar and his family accept him. Sameer meets Nandini (Aishwarya Rai), Darbar's daughter, and both fall in love. But Darbar wants Nandini to wed Vanraj (Ajay Devgan), and has Sameer swear that he will leave India.",0,0,Hum Dil De Chuke Sanam,hi +177085,Late Last Night,1999-06-20,90.0,,,tt0167250,,"After a fight with his wife, who's leaving him, Dan's day is getting worse by the minute. He calls an old friend for a night of binge drinking and intoxication. They start a cathartic ride through the city's underbelly.",0,0,Late Last Night,en +72900,Manolito Four Eyes,1999-06-23,89.0,,,tt0206117,,The usually absent father of a chubby kid shows up to take him on a road trip.,0,0,Manolito Gafotas,es +9032,Big Daddy,1999-06-25,93.0,,,tt0142342,Nature called. Look who answered.,"A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.",34200000,234801895,Big Daddy,en +77776,La Dilettante,1999-07-07,0.0,,,tt0205011,,,0,0,La Dilettante,fr +2105,American Pie,1999-07-09,95.0,,2806,tt0163651,There's nothing like your first piece.,"At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all ""score."" by their senior prom.",11000000,235483004,American Pie,en +10208,Muppets from Space,1999-07-14,87.0,,256377,tt0158811,Space. It's not as deep as you think.,"When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.",24000000,16290976,Muppets from Space,en +12575,Long Hello and Short Goodbye,1999-07-15,95.0,,,tt0139429,,No overview found.,0,0,Long Hello and Short Goodbye,de +133575,The Velocity of Gary,1999-07-16,100.0,,,tt0120878,*(Not His Real Name),Gary is in love with Valentino. So is Mary Carmen. Their life changes when Valentino is hit with a deadly disease and is slowly dying in their hands. They tear each other off to end up re-uniting upon their love for the same man.,4000000,0,The Velocity of Gary,en +12599,Pokémon: The Movie 2000,1999-07-17,84.0,http://p2kmovie.warnerbros.com/index2.html,34055,tt0210234,One Person Can Make All The Difference!,"Ash Ketchum must put his skill to the test when he attempts to save the world from destruction. The Greedy Pokemon collector Lawrence III throws the universe into chaos after disrupting the balance of nature by capturing one of the Pokemon birds that rule the elements of fire, lightning and ice. Will Ash have what it takes to save the world?",30000000,133949270,劇場版ポケットモンスター 幻のポケモン ルギア爆誕,ja +11618,The Haunting,1999-07-23,113.0,,,tt0171363,Some houses are born bad.,"Dr. David Marrow invites Nell Vance, and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself – and they soon see the true nature of its horror.",80000000,91188905,The Haunting,en +24020,Johnny Tsunami,1999-07-24,88.0,,394316,tt0206064,The Temperature Is Down But The Surf Is Up!,A Hawaiian teenage surfer shows off his skills when he takes to the snow slopes in Vermont.,0,0,Johnny Tsunami,en +4806,Runaway Bride,1999-07-30,116.0,,,tt0163187,Catch her if you can.,"Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.",70000000,309457509,Runaway Bride,en +17985,Bleeder,1999-08-06,98.0,,,tt0161292,,"Leo and Louise are a young couple living together in Copenhagen. Leo often goes out with his friends while Louise usually stays home. But when Louise tells Leo she's pregnant, a spark is ignited and Leo begins to become cold and distant. His anger and self-hatred finally erupt into violence against Louise.",0,0,Bleeder,da +24403,Away with Words,1999-08-07,90.0,,,tt0187590,,A Japanese man and a gay bar-owner in Hong Kong drink beer as they talk about their childhood and experiences.,0,0,三條人,en +66082,Rembrandt,1999-08-09,103.0,,,tt0163180,,,0,0,Rembrandt,fr +41160,The Match,1999-08-13,95.0,,,tt0165384,It's a game of two pubs!,The Match is a romantic comedy set against the story of a grudge football match between two pubs. The prize for the winner of the centenary match is the the closure of their opponent's bar. The Match was mainly filmed around Straiton in Ayrshire.,0,0,The Match,en +84727,Woman Wanted,1999-08-14,110.0,,,tt0158369,,A new woman comes between a widower and his adult son.,0,0,Woman Wanted,en +10154,Mickey Blue Eyes,1999-08-16,102.0,,,tt0130121,A romantic comedy you can't refuse,"An English auctioneer proposes to the daughter of a mafia kingpin, only to realize that certain ""favors"" would be asked of him.",0,0,Mickey Blue Eyes,en +54982,Introducing Dorothy Dandridge,1999-08-21,120.0,,,tt0172348,Right woman. Right place. Wrong time.,"An acclaimed stage performer, Dorothy still struggled with the challenge of her color, in a time that wouldn't let some stars in by the front door. Yet against the odds she beat out many more famous rivals for the role of ""Carmen Jones"", becoming the first black woman ever nominated for a Best Actress Academy Award. Marriages and affairs would break her heart, but her heart was strong. Seductive and easily seduced, she was born to be a star - with all the glory and all the pain of being loved, abused, cheated, glorified, undermined and undefeated. Here was a woman who wouldn't wait in the wings. Halle Berry stars as Dorothy Dandrige.",0,0,Introducing Dorothy Dandridge,en +22314,In Too Deep,1999-08-25,97.0,,,tt0160401,,A fearless cop is taking on a ruthless crimelord. He knew the risks. He just didn't know how far he would have to go.,7000000,14011454,In Too Deep,en +1911,The 13th Warrior,1999-08-27,102.0,,,tt0120657,Prey for the living.,"In AD 922, Arab courtier, Ahmad Ibn Fadlan accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.",160000000,61698899,The 13th Warrior,en +172396,The Collectors,1999-08-27,0.0,,,tt0174557,,,0,0,The Collectors,en +2463,Running Out of Time,1999-09-23,93.0,,206072,tt0216165,,Police inspector and excellent hostage negotiator Ho Sheung-Sang finds himself in over his head when he is pulled into a 72 hour game by a cancer suffering criminal out for vengeance on Hong Kong's organized crime syndicates.,0,0,暗戰,cn +37718,The Muse,1999-08-27,97.0,,,tt0164108,In Goddess we trust.,"What happens when a screenwriter (Brooks) loses his edge, he turns to anyone he can for help... even if it's the mythical ""Zeus's Daughter"" (Stone). And he's willing to pay, albeit reluctantly, whatever price it takes to satisfy this goddess, especially when her advice gets him going again on a sure-fire script. However, this is not the limit of her help, she also gets the writer's wife (MacDowell) going on her own bakery enterprise, much to the chagrin of Brooks, who has already had to make many personal sacrifices for his own help.",0,0,The Muse,en +16231,Wild Zero,1999-08-28,98.0,,,tt0267116,Trash and chaossss!!!!,Only legendary Japanese garage rock band Guitar Wolf can stand between a race of aliens from destroying earth with an army of zombies.,0,0,Wild Zero,ja +73527,Genius,1999-08-29,82.0,,,tt0193187,"To fit in, genius Charlie Boyle added another side to himself",Charlie Boyle finds that even his high IQ can't solve all of his problems when he takes on a double life in order to make friends his own age.,0,0,Genius,en +29542,Blood Dolls,1999-08-31,84.0,,,tt0203343,,"Virgil, an eccentric freak billionaire, spends his days being a ""biological inventor."" The ""blood dolls,"" his newest creation, aid him in getting revenge on those who betrayed him.",0,0,Blood Dolls,en +106131,I'll Take You There,1999-09-03,94.0,,,tt0210741,,A woman forces a man to move forward with his life after his wife dumps him.,0,0,I'll Take You There,en +60994,Guinevere,1999-09-04,104.0,,,tt0160338,He was her first love... she was his last.,A young girl from an affluent family rebels and becomes involved with a much older photographer.,2600000,614202,Guinevere,en +109479,Buddy Boy,1999-09-05,105.0,,,tt0146516,,An introvert relieves the tedium of caring for his invalid mother by spying on his neighbor.,0,0,Buddy Boy,en +109466,Urban Menace,1999-09-07,72.0,,,tt0196181,It's judgement day.,An insane preacher seeks retribution from the local crime syndicate for the violent death of his family and the burning of his church in a horrendous ghetto crime spree.,0,0,Urban Menace,en +39347,Hello Brother,1999-09-09,139.0,,,tt0233856,,"Hero (Salman Khan) loves Rani (Rani Mukerji), but she doesn't. Hero, meanwhile, is a loyal worker at A-Z, a courier company helm ed by baddie Khanna (Shakti Kapoor). The man actually distributes drugs around the city, the Tough cop Inspector Vishal (Arbaaz Khan) arrives in the city and starts trailing Hero whom he suspects to be involved in the racket. But the poor unsuspecting Hero is innocent. So when he stumbles upon the truth, Khanna has him bumped off. At the same time, he manages to shoot Vishal in the heart. A heart transplant takes place and Hero's heart is given to Vishal. Hero's spirit comes back to avenge his death, but only Vishal can see him. Since Hero's heart beats for Rani, it is only natural for Vishal to fall in love with Rani. And fortunately, she too falls in love with him.",0,0,Hello Brother,hi +73257,My Brother the Pig,1999-09-10,92.0,,,tt0165396,"If you act like an animal, you just may become one!","If you act like an animal, you just may become one!",0,0,My Brother the Pig,en +40879,Whiteboyz,1999-09-10,92.0,,,tt0178988,They dreamed of the ghetto...But they woke up in Iowa.,"In a virtually all-white Iowa town, Flip daydreams of being a hip-hop star, hanging with Snoop Doggy Dogg and Dr. Dre. He practices in front of a mirror and with his two pals, James and Trevor. He talks Black slang, he dresses Black. He's also a wannabe pusher, selling flour as cocaine. And while he talks about ""keeping it real,"" he hardly notices real life around him: his father's been laid off, his mother uses Food Stamps, his girlfriend is pregnant, James may be psychotic, one of his friends (one of the town's few Black kids) is preparing for college, and, on a trip to Chicago to try to buy drugs, the cops shoot real bullets. What will it take for Flip to get real?",0,0,Whiteboyz,en +11601,Stir of Echoes,1999-09-10,99.0,,143757,tt0164181,In every mind there is a door that should never be opened.,"After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.",12000000,21133087,Stir of Echoes,en +30946,All the Rage,1999-09-11,99.0,,,tt0176426,,A rich cross-section of urban USA find their lives changed when their fates collide at gunpoint.,0,0,All the Rage,en +44661,Storm,1999-09-11,104.0,,,tt0165498,You WILL get wet.,"A top secret government study involving the manipulation of the weather goes awry, leaving L.A. in the path of a destructive hurricane. A meteorologist sets out to save the city.",0,0,Storm,fr +8464,Top of the Food Chain,1999-09-11,99.0,,,tt0159797,Something is eating the residents of Exceptional Vista!,"An isolated Canadian town (populated by the weirdest group of people this side of Saturn) has seen its share of problems. First the nut factory closed, then the CATV antenna stopped broadcasting, and now something is gruesomely devouring the townsfolk! Can visiting atomic scientist (and expert on ""cool fusion"") Dr. Karel Lamonte solve the mystery before everyone disappears?",0,0,Top of the Food Chain,en +125520,Miss Julie,1999-09-12,103.0,,,tt0189744,Worlds apart... bound by desire.,A footman seduces a count's daughter. Adaptation of August Strindberg's famous play.,0,0,Miss Julie,en +17771,Sunshine,1999-09-13,181.0,,,tt0145503,,The fate of a Hungarian Jewish family throughout the 20th century.,0,0,Sunshine,en +36773,The Third Miracle,1999-09-13,119.0,,,tt0174268,,"The Vatican sends a priest to verify some miracles, performed by a woman who has been nominated for sainthood...",0,0,The Third Miracle,en +27276,Gemini,1999-09-15,84.0,,,tt0210302,,"A successful doctor, Yukio's picture perfect life is gradually wrecked, and taken over by his avenging twin brother, who bumps off his family members one by one and reclaims his lover who is now Yukio's wife.",0,0,双生児 GEMINI,ja +14,American Beauty,1999-09-15,122.0,http://www.dreamworks.com/ab/,,tt0169547,Look closer.,"Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.",15000000,356296601,American Beauty,en +10400,The Hurricane,1999-09-17,146.0,,,tt0174856,His greatest fight was for justice.,"The story of Rubin ""Hurricane"" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.",50000000,73956241,The Hurricane,en +11001,Blue Streak,1999-09-17,93.0,,,tt0181316,He's A Cop That's Not.,"Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as a LAPD detective",65000000,117758500,Blue Streak,en +10390,For Love of the Game,1999-09-17,137.0,,,tt0126916,Billy Chapel must choose between the woman he loves and the game he lives for.,"A baseball legend almost finished with his distinguished career at the age of forty has one last chance to prove who he is, what he is capable of, and win the heart of the woman he has loved for the past four years.",50000000,0,For Love of the Game,en +1661,Gigantics,1999-09-30,80.0,,,tt0177507,,"The Hamburg friends Walter, Ricco and Floyd take each day as it comes between the estates of tower blocks and fast food restaurants. All three are in their early twenties and are dreaming of another life when Floyd suddenly takes a job on a freighter going to Singapore…",0,0,Absolute Giganten,de +73482,Siegfried & Roy: The Magic Box,1999-10-01,50.0,,,tt0182299,,A story of hope. A journey of dreams. A life of magic,0,0,Siegfried & Roy: The Magic Box,en +16839,G:MT Greenwich Mean Time,1999-10-01,117.0,,,tt0179835,Time starts here...,"Six London school-leavers attempt to make it in the world, balancing the challenge of trying to make a name for themselves in the music industry against the pressures and tragedies of everyday life.",0,0,G:MT Greenwich Mean Time,en +42441,Tifosi,1999-10-01,0.0,,,tt0200215,,,0,0,Tifosi,it +14429,Drive Me Crazy,1999-10-01,91.0,,,tt0164114,The last guy she wants is the only one she needs.,"Nicole and Chase live next door to each other but are worlds apart. However, they plot a scheme to date each other in order to attract the interest and jealousy of their respective romantic prey. But in the mist of planning a gala centennial celebration, Nicole and Chase find that the one they always wanted was closer than they ever thought.",8000000,22593409,Drive Me Crazy,en +815,Animal Farm,1999-10-03,91.0,,,tt0204824,Four legs good. Two legs bad.,An animated film from 1999 based on the famous novel by George Orwell. Animals on a farm lead a revolution against the farmers to put their destiny in their own hands. However this revolution eats their own children and they cannot avoid corruption.,23000000,0,Animal Farm,en +9765,Der große Bagarozy,1999-10-06,96.0,,,tt0172515,,,0,0,Der große Bagarozy,de +2241,Sun Alley,1999-10-07,101.0,http://www.sonnenallee.de/,,tt0177242,,"A group of kids grow up on the short, wrong (east) side of the Sonnenallee in Berlin, right next to one of the few border crossings between East and West reserved for German citizens. The antics of these kids, their families, of the ""West German"" friends and relatives who come to visit, and of the East German border guards, all serve to illustrate the absurdity of everyday life on the Sonnenallee, and therefore throughout the former East Germany.",0,0,Sonnenallee,de +146270,Vaastav: The Reality,1999-10-07,150.0,,,tt0220832,The Reality,"""The Reality"" as described by the film's tagline, refers to the harsh realities of life in the Mumbai underworld. The film is said to be loosely based on the life of Mumbai underworld gangster Chota Rajan.",0,0,Vaastav: The Reality,hi +12618,Random Hearts,1999-10-08,133.0,,,tt0156934,In a perfect world...they never would have met.,After the death of their loved ones in a tragic plane crash 'Harrison Ford' and Kristin Scott Thomas find each others keys in each others loved ones posessions and realize that they were having an affair and must figure out all the details. Written by Andy HeitzThe wife of Police Sergeant Dutch Van Den Broek and the husband of politician Kay Chandler are killed in a plane crash. Now Dutch discovers some anomalies in what he told her before she left and discovers that she and Chandler's husband were travelling together. Dutch then goes to Chandler and tells her that he suspects that they were having an affair. He tells her that he wants to know the truth; she tells him that she doesn't but she later joins him and they grow close.,64000000,74608570,Random Hearts,en +70772,Don't Look Under the Bed,1999-10-09,100.0,,,tt0208101,"This Halloween, whatever you do...",A girl calls on her brother's imaginary friend to banish a mischievous boogeyman who has framed her for his pranks.,0,0,Don't Look Under the Bed,en +69921,Dazzle,1999-10-10,85.0,,,tt0277663,You'll Be Spellbound...,A fairy takes on human form and enters the life of a widowed children's book author and his daughter.,0,0,Dazzle,fr +26042,Warlock III: The End of Innocence,1999-10-12,94.0,,87536,tt0157171,He'll take your soul... if you let him,A college student unexpectedly finds that she has inherited a derelict house. Accompanied by a group of friends...,2000000,0,Warlock III: The End of Innocence,en +12220,The Story of Us,1999-10-13,95.0,,,tt0160916,,Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.,50000000,58900031,The Story of Us,en +319179,Man van staal,1999-10-13,,,,tt0180817,,,0,0,Man van staal,nl +341559,Red Dust,1999-10-14,105.0,,,tt0210629,,Wistful croquis of the neigborhood in western Zagreb at the beggining of the '90's.,0,0,Crvena prašina,hr +53882,Absence of the Good,1999-10-15,90.0,,,tt0198279,,"Salt Lake City homicide detective Caleb Barnes is under increasing pressure from all sides to crack a string of serial killings that have been terrorizing the city. At the same time, Barnes' home life is beginning to crumble in the wake of his son's accidental death. Will he solve the killings before the stress tears him apart? Written by",17,0,Absence of the Good,en +29108,Gregory's Two Girls,1999-10-15,116.0,,,tt0150786,,"Twenty years after his teenage crush on a football-mad schoolgirl, Gregory is back at his old school, teaching English. When two of his pupils uncover evil practices at a local factory they want their teacher to help them expose the wrong-doer, who happens to be Greg's old schoolfriend.",0,0,Gregory's Two Girls,en +101342,The Spousals of God,1999-10-15,150.0,,,tt0119413,,"After receiving a visit from a messenger of God, a man (Joao Cesar Monteiro) wins his buddy's girlfriend (Joana Azevedo) through a roll of the dice.",0,0,As Bodas de Deus,pt +23289,Love at First Hiccough,1999-10-15,85.0,,179042,tt0164711,,"Anja is a beautiful and very well proportioned high school senior... and still a virgin. She insists that she wants her first time to be with a guy, who knows what it's about. Her rich (and arrogant, pretentious and obnoxious) boyfriend Peter serves the purpose, and he's more than willing. In fact, he's pushing forward as much as he can, but Victor, a freshman who has a serious crush on Anja, has other plans. Her first time should definitely not be with this buffoon, and he's ready to take it VERY far!",0,0,Anja og Viktor - Kærlighed ved første hik,da +12276,The Road Home,1999-10-16,89.0,,,tt0235060,,"Prompted by the death of his father and the grief of his mother, a man recalls the story of how they met in flashback.",0,0,我的父亲母亲,zh +7837,The Time Shifters,1999-10-17,88.0,,,tt0204686,,"Tom Merrick (Van Dien) works as a TV reporter when he's nearly killed in an accident while informing about a fire in the Evanston power plant. The sight of a creepy-looking man leaving the place accidentally saves his life, when he was meant to be killed with his crew.",0,0,The Time Shifters,en +10047,The Messenger: The Story of Joan of Arc,1999-10-18,148.0,,,tt0151137,,In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's dimished kingdom - through her amazing victories until her violent and untimely death.,60000000,66976317,Joan of Arc,fr +46798,The City,1999-10-22,88.0,,,tt0168589,,The stories of four Hispanic immigrants living in New York City.,0,0,La ciudad,en +16162,The Best Man,1999-10-22,120.0,http://www.universalpictures.com/bestman/,243598,tt0168501,,"Harper, a writer who's about to explode into the mainstream leaves behind his girlfriend Robin and heads to New York City to serve as best man for his friend Lance's wedding. Once there, he reunites with the rest of his college circle.",9000000,34573780,The Best Man,en +46286,The Suburbans,1999-10-29,81.0,,,tt0157075,Never before has a girl done so much with so little.,"An 80s one-hit wonder band named The Suburbans reform for a special performance at one of the ex-member's wedding. At the wedding, a young record company talent scout happens to be in the audience and decides to give the now 40-ish performers a comeback push. The film attempts to take a satirical look at the music business of the 90s and compare it to the simpler 80s scene.",0,0,The Suburbans,en +11377,House on Haunted Hill,1999-10-29,93.0,,248339,tt0185371,Evil loves to party.,"A remake of the 1959 film of the same name. A millionaire offers a group of diverse people $1,000,000 to spend the night in a haunted house with a horrifying past.",19000000,40846082,House on Haunted Hill,en +26149,Music of the Heart,1999-10-29,124.0,,,tt0166943,She gave them a gift they could never imagine. They gave the system a fight it would never forget.,Story of a schoolteacher's struggle to teach violin to inner-city Harlem kids.,27000000,14859394,Music of the Heart,en +3173,Bangkok Dangerous,1999-11-01,105.0,,,tt0263101,,The movie is about a deaf-mute hitman and his partner. Trouble begins when he starts a relationship with a young woman.,0,0,เพชฌฆาตเงียบอันตราย,th +170998,Shool,1999-11-04,0.0,,,tt0220757,,"Police Inspector Samar Pratap Singh is transferred to Motihari, in the Indian state of Bihar, along with his wife, Manjari and a daughter. He is honest and diligent and these attributes sets him up against his superior - the District Superintendent of Police, as well as his subordinates and fellow officers.",0,0,Shool,hi +115239,Wojaczek,1999-11-05,90.0,,,tt0240221,,x,0,0,Wojaczek,en +17681,Scooby-Doo! and the Witch's Ghost,1999-11-05,70.0,,,tt0196931,,"A famous horror writer, Ben Ravencroft invites the Scooby gang to his home town of Oakhaven where they find the ghost of ""witch"" Sarah Ravencroft, a relative of Ben's, is haunting the town.",0,0,Scooby-Doo! and the Witch's Ghost,en +14242,American Movie,1999-11-05,107.0,,,tt0181288,,"AMERICAN MOVIE is the story of filmmaker Mark Borchardt, his mission, and his dream. Spanning over two years of intense struggle with his film, his family, financial decline, and spiritual crisis, AMERICAN MOVIE is a portrayal of ambition, obsession, excess, and one man's quest for the American Dream.",0,0,American Movie,en +50416,Grizzly Falls,1999-11-05,94.0,,,tt0196596,"A Boy, a bear, an amazing adventure.","When a young boy is captured by a grizzly bear, he begins the most incredible journey of a lifetime, full of breathtaking excitement, harrowing danger and thrilling surprises.",0,0,Grizzly Falls,en +38274,Seven Girlfriends,1999-11-06,0.0,,,tt0177215,,"Jesse is charming, romantic, and he knows how to pop the question; he just can't face marriage. So, when he and Hannah split up during the same week that a former fiancée dies, he decides to figure things out. He visits each woman about whom he's been serious to ask what went wrong. His teen flame, an independent woman who sometimes sleeps with him, and a group of lesbians give him advice, as does Anabeth, dead but lively in his dreams. One ex remains furious, but with the help of her inventive colleague, the level-headed insomniac Laura, Jesse even gets to talk to her. It's on to Anabeth's funeral, where he'll see Hannah, and maybe grasp what has been eluding him.",0,0,Seven Girlfriends,en +24272,Joseph and the Amazing Technicolor Dreamcoat,1999-11-07,76.0,http://www.josephthemusical.com,,tt0175790,,A humourously musical retelling of the Biblical story of Joseph,0,0,Joseph and the Amazing Technicolor Dreamcoat,en +66526,Mudhalvan,1999-11-07,169.0,,,tt0220656,,"A man accepts a challenge to act as the Chief Minister for one day only, and makes such a success of it that soon he is embroiled in political intrigue.",7400000,22000000,முதல்வன்,ta +15506,Agnes Browne,1999-11-08,92.0,,,tt0160509,,"When Agnes Browne's husband died, she discovered something amazing... Herself.",0,0,Agnes Browne,en +14430,Herod's Law,1999-11-09,120.0,,,tt0221344,,"Mexico, 1949. The fable of a janitor turned Mayor on a little town lost in the Mexican desert, who gradually realizes how far his new acquainted power and corruption can get him.",0,0,La ley de Herodes,es +39001,My Teacher's Wife,1999-11-10,89.0,,,tt0112444,Todd Boomer is embracing his homework like never before!,"Todd Boomer is a college student aspiring to get into University. His chances are looking poor when his maths teacher, fails him in every maths test. Help arrives in the guise of the gorgeous Vicki, a mathematical genius who decides to tutor Todd. As the relationship develops,Todd finds himself in an affair with Vicki unknowing of her marriage to his math teacher.",0,0,My Teacher's Wife,en +120077,Running Free,1999-11-11,81.0,,,tt0173910,His Spirit could never be Broken,"The tale of the extraordinary life and times of Lucky, a horse that was born in captivity but achieves his dream of running free with the help of a stableboy.",0,0,Running Free,en +29698,Ratcatcher,1999-11-12,94.0,,,tt0171685,,"Set in Glasgow during the mid 70s, Ratcatcher is seen through the eyes of twelve-year-old James Gillespie (William Eadie), a young boy haunted by a secret. Feeling increasingly distant from his family, his only escape comes with the discovery of a new housing development on the outskirts of town where he has the freedom to lose himself in his own world.",0,0,Ratcatcher,en +16371,Tell Me Something,1999-11-13,118.0,,,tt0220806,,"In Seoul, parts not matching of severed copses of three men are found in cars and bags left in public spaces...",0,0,Telmisseomding,ko +19594,Bartok the Magnificent,1999-11-15,67.0,,,tt0197273,The lovable hero from Anastasia is back!,"Russia is being terrorized by an evil witch known as Baba Yaga; the only one who is not afraid of her is Bartok the Magnificent. Bartok, an albino bat, has just arrived in Moscow and is impressing everyone with his performances, including Prince Ivan Romanov. However, one person is not impressed; Ludmilla finds Bartok annoying and naive. After Bartok's show, a violent bear suddenly attacks. Bartok must save everyone by stunning the bear with dust and then knocks him over and traps him in a wagon.",0,0,Bartok the Magnificent,en +33253,6ixtynin9,1999-11-19,118.0,,,tt0235154,How far would you go to protect a secret?,"A woman, fired from a financial coorporation during the Asia crisis, returns home with no money. However, she finds a box with a fortune in front of her door, and decides to keep it. However, the people that left it there soon want it back.",0,0,เรื่องตลก 69,th +86023,The Intruder,1999-11-19,90.0,,,tt0187995,,"Catherine meets Nick by accident and, after a whirlwind romance, the two get married and Catherine moves into Nick's apartment only that's the start of problems when an unseen intruder begins playing strange mind games with Catherine in an apparent attempt to drive her insane.",0,0,The Intruder,en +50008,RKO 281,1999-11-20,83.0,,,tt0120801,,"A film about the making of Citizen Kane. Orson Welles produces his greatest film, Citizen Kane, despite the opposition of the film's de facto subject, William Randolph Hearst.",0,0,RKO 281,en +31670,Children of the Stork,1999-11-24,80.0,,,tt0211445,,"Three French pals take to the road in a stolen car and discover a talking, wounded stork — who claims to have deserted the Algerian army — and help it to escape to the home of a relative in Germany.",0,0,Je suis né d'une cigogne,en +9946,End of Days,1999-11-24,121.0,http://www.end-of-days.com/,,tt0146675,Prepare for the end.,"On December 28th, 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride, a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist called Jericho Cane.",100000000,211989043,End of Days,en +22267,Ride with the Devil,1999-11-24,138.0,,,tt0134154,"In a No-man's Land between North and South, You didn't fight for the Blue or the Grey... You fought for your friends and family.","Ride with the Devil follows four people who are fighting for truth and justice amidst the turmoil of the American Civil War. Director Ang Lee takes us to a no man's land on the Missouri/Kansas border where a staunch loyalist, an immigrant's son, a freed slave, and a young widow form an unlikely friendship as they learn how to survive in an uncertain time. In a place without rules and redefine the meaning of bravery and honor.",38000000,635096,Ride with the Devil,en +10482,Guest House Paradiso,1999-12-03,89.0,,268014,tt0202381,Pay to check in... pray to check out!,"Richie and Eddie are in charge of the worst hotel in the UK, Guest House Paradiso, neighbouring a nuclear power plant. The illegal immigrant chef has fled and all the guests have gone. But when a famous Italian filmstar, Gina Carbonara, who is in hiding from a fiance she doesn't want to marry, arrives at the hotel, things get very interesting!",0,0,Guest House Paradiso,en +334,Magnolia,1999-12-08,188.0,http://www.magnoliamovie.com/,,tt0175880,"Things fall down. People look up. And when it rains, it pours.","An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.",37000000,48451803,Magnolia,en +35118,Diamonds,1999-12-10,91.0,,,tt0167423,Hunting for buried treasure was never this much fun.,Mystery about an ex-prizefighter who embarks on a journey to find 13 missing diamonds,0,0,Diamonds,en +52072,Clouds of May,1999-12-10,130.0,,,tt0234217,,"This is a movie within a movie, about a director, Muzaffer, who goes back to his hometown to make a film using a cast of local people (based on the director Ceylan's first feature, Kasaba). While Muzaffer is around, his mother complains about simple health problems, his father is in a legal fight against the government for his land, his cousin leaves his job to help Muzaffer who promises to find him work in Istanbul, and his little cousin Ali tries to carry an egg in his pocket for forty days so that he'll get the watch of his dreams. In the meantime, they form the cast for Muzaffer's movie as well.",0,0,Mayıs Sıkıntısı,tr +32274,Cradle Will Rock,1999-12-10,132.0,,,tt0150216,,"A true story of politics and art in the 1930s USA, centered around a leftist musical drama and attempts to stop its production.",0,0,Cradle Will Rock,en +10643,Godzilla 2000,1999-12-11,107.0,,374512,tt0188640,Get ready to crumble.,Godzilla saves Tokyo from a flying saucer that transforms into the beast Orga.,1000000,10037390,Gojira ni-sen mireniamu,ja +36251,Switching Goals,1999-12-12,85.0,,,tt0217074,,Twin sisters Emma and Sam come up with a scheme to switch places so each can play in the soccer team they prefer.,0,0,Switching Goals,en +89774,"Air: Eating, Sleeping, Waiting and Playing",1999-12-13,60.0,,,tt0229965,,A fim about Air on tour by Mike Mills,0,0,"Air: Eating, Sleeping, Waiting and Playing",en +9563,Any Given Sunday,1999-12-16,163.0,,,tt0146838,Play or be Played.,A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove her self in a male dominated world.,55000000,100230832,Any Given Sunday,en +1715,The Cider House Rules,1999-12-17,126.0,http://www.miramax.com/movie/the-cider-house-rules/,,tt0124315,A story about how far we must travel to find the place where we belong.,"Homer is an orphan who was never adopted, becoming the favorite of orphanage director Dr. Larch. Dr. Larch imparts his full medical knowledge on Homer, who becomes a skilled, albeit unlicensed, physician. But Homer yearns for a self-chosen life outside the orphanage. What will Homer learn about life and love in the cider house? What of the destiny that Dr. Larch has planned for him?",24000000,88545092,The Cider House Rules,en +10137,Stuart Little,1999-12-17,84.0,,99727,tt0164912,The Little Family Just Got Bigger,"The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.",133000000,300135367,Stuart Little,en +49199,The Legend of Speed,1999-12-18,109.0,,,tt0234105,,"From the star and director of ""The Storm Riders"" come this turbo- charged action drama. Pop superstar Ekin Cheng is Sky, an underground drag car racer king. After winning yet another race, Sky was framed by his rival Hung (Simon Yam). On the run in Thailand, Sky hooks up with his long lost father, himself a legendary racer, who steers his son back on course for the ultimate showdown with Hung.",0,0,烈火戰車2 極速傳說,cn +10219,Snow Falling on Cedars,1999-12-22,127.0,,,tt0120834,From the director of 'Shine',"A Japanese-American fisherman may have killed his neighbor Carl at sea. In the 1950s, race figures in the trial. So does reporter Ishmael.",0,0,Snow Falling on Cedars,en +1850,Man on the Moon,1999-12-22,118.0,http://www.universalpictures.com/manonthemoon/,,tt0125664,"Hello, my name is Andy and this is my movie.","A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.",82000000,47434430,Man on the Moon,en +54111,Whispering Corridors 2: Memento Mori,1999-12-24,98.0,,131780,tt0266075,,"The film revolves around the relationship between two high school students, Yoo Shi-Eun and Min Hyo-Shin. As the two girls become romantically involved, their taboo friendship causes them to be marginalized by the other students. Unable to cope with the social pressures of having a lover of the same gender, Shi-Eun tries to distance herself from the increasingly dependent Hyo-Shin.",0,0,여고괴담 두번째 이야기,ko +24647,Hälsoresan,1999-12-25,105.0,,112537,tt0166653,,"The film is about the health resort Granhedsgården in Dalarna, Sweden, and they have a problem. They don't have many guests at all and something must be done. At the same time, Stig-Helmer is a little depressed after his girlfriend has left him, and so he lives on junk food. His best friend Ole invites him to come along to the health resort Granhedsgården. Now, the craziness begins.",0,0,Hälsoresan,en +44388,It Had to Be You,2000-01-01,90.0,,,tt0139388,Love is what happens when you're busy making other plans.,Two strangers meet and fall in love during the weekend that they are planning their respective weddings.,0,0,It Had to Be You,en +48617,Father and Daughter,2000-01-01,8.0,,,tt0279079,Moved to tears in 8 minutes,"A father says goodbye to his young daughter. In time the daughter grows old, but within her there is always a deep longing for her father.",0,0,Father and Daughter,xx +40970,The Jolly Boys' Last Stand,2000-01-01,88.0,,,tt0257818,,"The story revolves around a group of ""Lads"". The ""leader"" of this group of twenty somethings starts to head away the group's usual juvenile direction and head into career and marriage pursuits. The Best Man decides to create a video of the friends as a wedding present. In reality the video is supposed to help bring the leader back into the fold.",0,0,The Jolly Boys' Last Stand,en +49929,When Brendan Met Trudy,2000-01-01,95.0,,,tt0220157,,A teacher meets a woman who turns out to be a thief and they introduce each other to new things.,0,0,When Brendan Met Trudy,en +96716,The Bumblebee Flies Anyway,2000-01-01,95.0,,,tt0128977,They Took His Past. She Gave Him His Future,"An amnesiac youth tries to piece together his past, but what he discovers may jeopardize his future.",0,0,The Bumblebee Flies Anyway,en +47161,Djomeh,2000-01-01,94.0,,,tt0259981,,"Djomeh is a young Afghan man who has come to live in Iran because of family trouble. Working as a milk boy, he encounters discrimination from the Iranian villagers and disdain from Habib, a fellow Afghani to whose trust Djomeh was given. The only person who shows any friendliness to him is his employer, who Djomeh asks to intercede for him in asking a woman from the village for her hand in marriage.",0,0,جمعه,fa +247447,Willow and Wind,2000-01-01,77.0,,,tt0243218,,A boy breaks a window at his school and sets out to fix it on his own during a storm.,0,0,بید و باد,fa +142478,The Making of 'The Bridge on the River Kwai',2000-01-01,53.0,,,tt0267721,,,0,0,The Making of 'The Bridge on the River Kwai',nl +330711,One Kill,2000-01-01,96.0,,,tt0221455,,A Marine captain is on trial for murdering her superior officer.,0,0,One Kill,en +12255,Cord,2000-01-01,100.0,,,tt0191915,,"A desperate, childless couple kidnap a pregnant woman and lead her husband to believe that she is dead.",0,0,Cord,en +36246,Monday,2000-01-01,100.0,,,tt0239655,,A simple funeral turns a man's world upside down.,0,0,MONDAY,ja +38987,Possible Worlds,2000-01-01,93.0,,,tt0222293,,"The same man lives out several parallel lives in different ""worlds"" and in different relationships at the same time.",0,0,Possible Worlds,en +45302,The Chaos Factor,2000-01-01,93.0,,,tt0208037,,An American army intelligence officer discovers corruption and murder by American soldiers in Vietnam.,0,0,The Chaos Factor,en +15090,Icebreaker,2000-01-01,90.0,,,tt0179861,"Twenty terrorists, five hundred vacationing skiers, one ski patrol officer...",At the the Killington ski resort something has gone awry. Evil terrorists led by the sinister Greig have taken the resort hostage with a stolen nuclear device. It's up to Ski Patrol bum Matt Foster to save the day... and his fiancé.,0,0,Icebreaker,en +17908,My Dog Skip,2000-01-14,95.0,http://mydogskip.warnerbros.com/,,tt0156812,Every family needs an optimist.,"A shy boy is unable to make friends in Yazoo City, Mississippi in 1942, until his parents give him a terrier puppy for his ninth birthday. The dog, which he names Skip, becomes well known and loved throughout the community and enriches the life of the boy, Willie, as he grows into manhood. Based on the best-selling Mississippi memoir by the late Willie Morris.",7000000,0,My Dog Skip,en +281908,Train On The Brain,2000-01-14,50.0,,,tt0276578,,"Alison Murray travels as a hobo on freight trains across Canada and the US. She gets to know the community of train riders, especially the many girls riding the rails.",0,0,Train On The Brain,en +16987,Kaho Naa... Pyaar Hai,2000-01-14,178.0,,,tt0234000,,"Rich girl loves poor guy, who is killed. She sees him again only to realise hes a look alike. Together they avenge the death.",0,0,Kaho Naa... Pyaar Hai,hi +297835,The Loretta Claiborne Story,2000-01-16,0.0,,,tt0232002,,Uplifting drama about a young girl who overcomes bullying to become a track runner.,0,0,The Loretta Claiborne Story,en +70051,U.S. Seals,2000-01-18,90.0,,,tt0195366,,"Dozens of American cargos with high valuable goods have disappeared, probably attacked by modern pirates. The United States decide to mobilize a team of expert SWAT, with Mike Bradley as leader, sending them to destroy the pirates' base, namely a deserted oil rig near Turkey. But these are cleverly waiting for them.",0,0,U.S. Seals,en +40562,Committed,2000-01-21,98.0,,,tt0144142,She'll get what she wants... no matter what it takes!,"After her husband, Carl (Luke Wilson), suddenly leaves, Joline (Heather Graham) travels from New York to Texas to track him down. Although Joline tries to remain upbeat, she is discouraged when she discovers that Carl already has a new girlfriend, the lovely Carmen (Patricia Velasquez). Familiarizing herself with Carl's new home and friends, Joline gets company in the form of her brother, Jay (Casey Affleck). Will Joline win Carl back, or are there other romantic possibilities on her horizon?",3000000,0,Committed,en +2890,"André Hazes, Zij Gelooft in Mij",2000-01-27,86.0,,,tt0222718,,Portrait of the popular Dutch singer André Hazes.,0,0,"André Hazes, Zij Gelooft in Mij",nl +58487,La stratégie de l'échec,2000-01-28,0.0,,,tt0365797,,,0,0,La stratégie de l'échec,fr +20160,Restless,2000-01-28,106.0,,,tt0231971,,"An old dog has a hard time learning new tricks in this drama set in Turku. Ari, a paramedic, is a chronic womanizer; he makes it a point of pride to never sleep with the same woman twice, and his nights are a long series of brazen one-night stands. But when Ari meets Tiina (Laura Malmivaara), something unexpected happens - he falls in love. For the first time, Ari finds himself pursuing a long-term relationship, and he makes a genuine effort to remain faithful to her. But old habits die hard; Tiina introduces Ari to her circle of friends and temptation arises as he encounters Hanna-Riikka, a theology student, and Ilona, who is soon to be married. Despite Ari's feelings for Tiina, he begins having affairs with both Hanna-Riikka and Ilona, leading to an unpleasant revelation on the day of Ilona's nuptials. ~ Mark Deming, Allrovi",0,0,Levottomat,fi +99657,Wings of Hope,2000-02-01,65.0,,,tt0249248,,"Werner Herzog returns to the South American jungle with Juliane Koepcke, the German woman who was the sole survivor of a plane crash there in 1971. They find the remains of the plane and recreate her journey out of the jungle.",0,0,Julianes Sturz in den Dschungel,de +30780,Cabin By The Lake,2000-02-01,91.0,,333398,tt0199389,,"A screenwriter does research for his new script by actually kidnapping and drowning young girls. He then places them in his ""garden"" of other dead girls coming back daily to check on them. One girl narrowly escapes and the other bodies are found leading to an ingenious plot to try and capture the killer.",0,0,Cabin By The Lake,en +69404,Mugavari,2000-02-02,157.0,,,tt1388441,,"Sridhar has been trying to become a music director for eight years. In spite of having earned an M.A., his only dream is to become a music director (he even calls the eight-year wait a ""penance""). His family (father, his brother Shiva, his sister-in-law Shantha and his sister) are fully supportive of him. He runs into Viji and their friendship soon blossoms into love. She helps him get a foot in the door in the industry but bad luck spoils his chances. When Viji's sister's marriage is finalized suddenly, Viji's father asks her to get married too. But he is understandably worried when he learns that Sridhar is unemployed and following a dream that has not been realized for 8 years. Her father even offers a job to him also. But he refuses to do that since his primary goal is to become music director. But he also realizes that he has to support his family. Will he be able to do both?",500000,500000,முகவரி,en +29076,Gun Shy,2000-02-04,101.0,,,tt0171356,The Agency's best has a bad case of nerves.,"Legendary undercover DEA agent Charlie Mayough has suddenly lost his nerves of steel. On the verge of a career-induced mental breakdown, and in complete fear of trigger-happy Mafia leader Fulvio Nesstra, Charlie seeks psychiatric help and finds himself relying on the support of an unstable therapy group and nurse Judy just to get through his work.",10000000,1631839,Gun Shy,en +121940,Knockout,2000-02-04,99.0,,,tt0143344,LADIES... Let's get it on!,"Bell decides to follow the footsteps of his father, devoted to boxing to become champion. But not only must fight against his opponents but against a world where it seems that nobody wants to see it succeed.",0,0,Knockout,en +60071,Missing Pieces,2000-02-06,96.0,,,tt0193732,,,0,0,Missing Pieces,en +252724,Mary and Rhoda,2000-02-07,86.0,,,tt0137937,Big city. New start. Best friends.,"The old friends from ""The Mary Tyler Moore Show,"" Mary and Rhoda, are reunited, only to discover that Mary has a daughter named Rose and Rhoda's daughter is named Meredith.",0,0,Mary and Rhoda,en +85429,Pretty Devils,2000-02-09,95.0,,,tt0217136,,Three very different adolescent girls team up to take revenge on men until one day it is no longer a game.,0,0,Voyous voyelles,en +1907,The Beach,2000-02-11,119.0,,,tt0163978,Somewhere on this planet it must exist.,"Twenty-something Richard travels to Thailand and finds himself in possession of a strange map. Rumours state that it leads to a solitary beach paradise, a tropical bliss - excited and intrigued, he sets out to find it.",40000000,144056873,The Beach,en +276846,Badal,2000-02-11,173.0,,,tt0247944,,"Badal is a victim of the 1984 riots, brought up by a terrorist. Badal aims to kill the treacherous police officer who had killed his parents and his loving sister. He takes shelter in the house of an honest police officer and falls in love with a minister's granddaughter. Will he be able to accomplish his revenge?",0,0,बादल,hi +15489,Snow Day,2000-02-11,89.0,,,tt0184907,Roads closed. Schools shut. Rules were made to be frozen!,"When a school in upstate New York is snowed in, a group of students hi-jack a plow to keep the school closed..",0,0,Snow Day,en +341517,Seven Songs from the Tundra,2000-02-18,90.0,,,tt0249947,,Finland's submission for the Academy Award for Best Foreign Language Film in 2000,0,0,Seitsemän laulua tundralta,en +14181,Boiler Room,2000-02-18,118.0,,,tt0181984,Welcome to the new American dream.,"A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.",26000000,28780255,Boiler Room,en +29136,Flowers for Algernon,2000-02-20,120.0,,,tt0210044,"Last month, Charlie Gordon couldn't read. Now he's quoting Shakespeare. Can the medical miracle that changed his life help him understand the meaning of love?",No overview found.,0,0,Flowers for Algernon,en +11004,Wonder Boys,2000-02-22,111.0,,,tt0185014,Undependable. Unpredictable. Unforgettable.,"Grady (Michael Douglas) is a 50-ish English professor who hasn't had a thing published in years -- not since he wrote his award winning ""Great American Novel"" 7 years ago. This weekend proves even worse than he could imagine as he finds himself reeling from one misadventure to another in the company of a new wonder boy author.",35000000,0,Wonder Boys,en +31875,Last Resort,2000-02-23,73.0,,,tt0258761,,"When a young Russian woman and her son leave Moscow to meet her fiancé, who fails to show up, she declares political asylum.",0,0,Last Resort,en +15653,An Extremely Goofy Movie,2000-02-29,79.0,http://movies.disney.com/an-extremely-goofy-movie,410261,tt0208185,,"It's all extreme sports and a life of freedom as Max sets off for college -- but Goofy misses Max so much he loses his job and goes to finish college alongside Max and his friends. But as Goofy tries to get closer to Max, both must go to the extreme to learn how to live their own lives together.",0,0,An Extremely Goofy Movie,en +44933,A Chinese in a Coma,2000-03-01,108.0,,,tt0208026,,"A tale about a talent agent with a talentless client roster. Ercole Preziosi (Verdone) represents middling girl groups, bad magicians, and even worse comics. When a grizzly traffic accident leaves his star comedian client bed-ridden, he turns to his young plucky driver to do stand-up duty",0,0,C'era un cinese in coma,en +47816,3 Strikes,2000-03-01,82.0,,,tt0199290,"the few, the proud, the paroled.","Brian Hooks plays a character who is just released from jail. And the state adopts a ""3 strikes"" rule for felons that involves serious penalties. Hooks has 2 strikes, and wants to change his life for the better. When a friend picks him up, they are pulled over, and his friend shoots at police officers, and Hooks escapes. Now Hooks, a wanted man, must clear his name of having nothing to do with the shooting.",6000000,9000000,3 Strikes,en +16171,The Nine Lives of Tomas Katz,2000-03-01,87.0,,,tt0235618,,"The last day of creation. A stranger arrives in London. No one knows who he is or where he has come from. By the time he leaves, the entire universe will have been erased.",0,0,The Nine Lives of Tomas Katz,en +232711,Khauff,2000-03-02,127.0,,,tt0220596,,"While returning home from the marriage of her friend, Ritu Pereira, Neha Verma, an air hostess, witnesses the brutal death of Superintendent of Police Jaidev Singh,...",0,0,Khauff,en +55166,Hurmaava joukkoitsemurha,2000-03-03,0.0,,,tt0194026,,,0,0,Hurmaava joukkoitsemurha,fi +57781,Old Hags,2000-03-03,128.0,,,tt0240033,,Four old friends are experiencing various troubles adapting to the new times in modern Russia.,0,0,Старые клячи,ru +552,Bread and Tulips,2000-03-03,114.0,http://www.brotundtulpen.de/,,tt0237539,,An endearing light comedy about a woman who spontaneously becomes a resident of Venice after her family left her begin. While enjoying the wonderful people she meets she achieves a new life and the first time independent of her family.,0,0,Pane e Tulipani,it +44047,Wildflowers,2000-03-04,93.0,,,tt0144688,"Sometimes, a chance meeting can be a chance to change your life....",A mysterious girl becomes involved with a 17-year-old girl and changes her life forever.,0,0,Wildflowers,en +28031,If These Walls Could Talk 2,2000-03-05,96.0,,164394,tt0206036,Women love women.,"The stories of three lesbian couples -- who live in the same house at different periods of time -- who are at a crossroads in their lives. In 1961, Edith loses her lover, Abby, to a stroke. Linda and Amy struggle with feminist issues in 1972. And, in 2000, Kal and Fran try to have a baby with the help of sperm donor.",0,0,If These Walls Could Talk 2,en +36968,Life-Size,2000-03-05,101.0,,,tt0200809,,"After her mom's death, Casey pulls away from everyone in her life, including her emotionally distant dad. With help from a magic spell, she tries to bring her mother back from the dead; instead, Casey's words accidentally awaken one of her least favorite toys: a statuesque Barbie clone named Eve. Things get worse when Casey's dad develops a crush on his daughter's living doll.",0,0,Life-Size,en +107942,Swimming,2000-03-09,98.0,http://www.swimmingthemovie.com/,,tt0202711,,"Two girl friends in Myrtle Beach, South Carolina find their relationship changing as they encounter new arrivals to the town.",0,0,Swimming,en +123074,The Target Shoots First,2000-03-09,70.0,,,tt0234854,,An NYU philosophy grad struggles to maintain artistic and personal integrity as a production manager for Columbia House.,0,0,The Target Shoots First,en +9532,Final Destination,2000-03-16,98.0,,8864,tt0195714,No accidents. No coincidences. No escapes. You can't cheat death.,"After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.",23000000,53302314,Final Destination,en +72753,Alley Cats Strike,2000-03-18,103.0,,,tt0217990,The Only Way To Settle The Score Is To Take It To The Alley!,A group of hip retro teenage outsiders become involved in an interschool bowling rivalry.,0,0,Alley Cats Strike,en +2085,Romeo Must Die,2000-03-20,115.0,,,tt0165929,"In the city ruled by criminals, two families have forgotten their fear. He will make them remember.","Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang SIng and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead … or worse!",25000000,91036760,Romeo Must Die,en +13539,Here On Earth,2000-03-23,96.0,,,tt0195778,,A rich college kid is taught a lesson after a joy ride ends up destroying a country restaurant.,0,0,Here On Earth,en +246829,Metronotte,2000-03-31,,,,tt0239632,,,0,0,Metronotte,it +101320,The Spiral Staircase,2000-04-02,88.0,,,tt0203941,,People are trapped in a house with a killer.,0,0,The Spiral Staircase,en +182799,Cement,2000-04-03,0.0,,,tt0138353,,,0,0,Cement,es +262522,Poison,2000-04-04,93.0,,,tt0241251,She's mommy's little girl... and she'll do anything to stay that way.,"Traci is a devious teenage girl who befriends and kills anyone who comes between her and her mother, Dana, a failed movie actress who lies for and protects Traci.",0,0,Poison,en +43079,Mad About Mambo,2000-04-04,92.0,,,tt0156757,Fall in love... With the beat,High school student tries to improve soccer skills by practicing dance and falls for his dance partner.,0,0,Mad About Mambo,en +18002,"Love, Honour and Obey",2000-04-07,103.0,,,tt0199727,,"Jonny dreams of leaving his dead-end job as a courier. Through his childhood best friend, nephew of the notorious crime lord Ray Kreed, he wins his way into the toughest gang in North London. Hungry for action, Jonny sparks a feud between Ray's gang and a rival firm in South London headed by drug kingpin Sean and his lieutenant Matthew.",0,0,"Love, Honour and Obey",en +31067,Fail Safe,2000-04-09,86.0,,,tt0235376,,Cold War tensions climb to a fever pitch when a U.S. bomber is accidentally ordered to drop a nuclear warhead on Moscow.,0,0,Fail Safe,en +58886,Everybody's Famous!,2000-04-12,0.0,,,tt0209037,,,0,0,Iedereen Beroemd!,nl +27824,The Last Man,2000-04-15,95.0,,,tt0231956,,Apocalyptic comedy finds a socially-challenged grad school student as one of the last two men on Earth with a beautiful woman.,0,0,The Last Man,en +95136,Bruno,2000-04-16,108.0,,,tt0123003,The comedy that is long on originality and short on pants.,"The story of a unique young boy genius, Bruno, whose expression of his own individuality leads his family and community along an emotional journey.",10000000,0,Bruno,en +260528,De fûke,2000-04-20,90.0,,,tt0263366,,Frisian movie from 2004,0,0,De fûke,fy +10500,No Place to Go,2000-04-20,110.0,,,tt0235841,,"Flanders, a famous female author, travels 1989 after the fall of the Berlin wall into the German capitol. She is deeply depressed of the events because she saw the communistic states as a very good thing that has now ended. In the joy of these days she finds no person to understand her, so she has to travel back to Munich. After meeting several people, known and unknown, it seems as if there will be no way to go.",0,0,Die Unberührbare,de +85411,The Three Stooges,2000-04-24,88.0,,,tt0214698,"Their comedy made us laugh out loud, but their lives were pure drama.","A biography of the Three Stooges, in which their careers and rise to fame is shown throughout the eyes of their leader, Moe.",0,0,The Three Stooges,en +18098,Arabian Nights,2000-04-30,175.0,,,tt0181199,"When Night Falls, the Adventure Begins!","Scheherezade puts herself in danger to save Sultan Schariar, her childhood friend, from the madness that has gripped him since the death of his cheating wife at his own hands.",0,0,Arabian Nights,en +19348,Girlfight,2000-05-01,110.0,,,tt0210075,Prove them wrong.,"Diana Guzman begins to train as a boxer and achieves impressive success, blazing new trails for female boxers, all while keeping it a secret from her father.",0,0,Girlfight,en +14626,Beau Travail,2000-05-03,90.0,,,tt0209933,,"Foreign Legion officer, Galoup, recalls his once glorious life, leading troops in the Gulf of Djibouti. His existence there was happy, strict and regimented, but the arrival of a promising young recruit, Sentain, plants the seeds of jealousy in Galoup's mind. He feels compelled to stop him from coming to the attention of the commandant who he admires, but who ignores him. Ultimately, his jealousy leads to the destruction of both Sentain and himself.",0,0,Beau Travail,fr +85265,The Child,2000-05-10,135.0,,,tt0246425,,"After working in Hong Kong for a decade to support her family, Josie (Vilma Santos) returns home to find her children's lives in ruins. Since their father's death five years ago, her daughters (Claudine Barretto and Shiela Junsay) and son (Baron Geisler) have made their way through life without their mother. But with a lack of parental guidance, they're on a path to destruction. Can Josie ever repair the damage her long absence has caused?",0,0,Anak,en +5491,Battlefield Earth,2000-05-10,118.0,,,tt0185183,Take Back The Planet,"In the year 3000, man is no match for the Psychlos, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlos are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.",44000000,21400000,Battlefield Earth,en +35263,The Farewell,2000-05-14,91.0,,,tt0206608,,"A portrait of a single day in the late summer of 1956, toward the end of Bertolt Brecht's life, as he prepares to leave his lakeside home, surrounded by the women who form his extended family.",0,0,Abschied - Brechts letzter Sommer,de +10873,Shadow of the Vampire,2000-05-15,92.0,,,tt0189998,An Unspeakable Horror. A Creative Genius. Captured For Eternity.,"Director F.W. Murnau (John Malkovich) makes a Faustian pact with a vampire (Willem Dafoe) to get him to star in his 1922 film ""Nosferatu.""",8000000,8279017,Shadow of the Vampire,en +34729,Our Lips Are Sealed,2000-05-18,89.0,,,tt0270560,,"Follow Mary-Kate and Ashely halfway around the world in this Aussie adventure jam packed with non-stop action, laughs, super spies and surfer guys. The extraordinary escapade begins when the girls eyewitness a crime and are forced to go undercover in the FBI Witness Protection Program.",0,0,Our Lips Are Sealed,en +10567,Dinosaur,2000-05-19,82.0,,,tt0130623,You have never seen anything like this.,An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.,127500000,354248063,Dinosaur,en +34899,The Vertical Ray of the Sun,2000-05-24,112.0,,,tt0224578,,"Hanoi comes across almost picture-perfect in director Tran Anh Hung's beautiful, elegiac tale about the lives and loves of three Vietnamese sisters. A mood characteristic of Hung's films is set early on with the vivid sounds of birds, insects and water and the way the lighting enhances the subtle use of color. They all combine to gem-like effect here.",0,0,Mùa hè chiều thẳng đứng,vi +63938,Bad Luck Love,2000-05-26,94.0,,,tt0200299,,"A shocking crime forces a man to re-evaluate his life, only to find that going straight is more complicated than he imagined in this acclaimed drama from Finland. Ali (Jorma Tommila) is a low-level criminal who spends much of his spare time working out at a gym with his brother Pulu (Tommi Eronen). Ali spends most of his day stoned on marijuana, while Pulu is known to drink cleaning products when he's run out of booze. Ali has fallen in love with Inka (Maria Jarvenhelmi), a bright woman with a mind of her own, and her independent nature occasionally throws him into a fit of jealousy. Bad Luck Love was the first film to be nominated in all 12 categories at the Jussis Awards, the Finnish Academy Awards.",0,0,Bad Luck Love,fi +8584,Shanghai Noon,2000-05-26,110.0,,59567,tt0184894,The old west meets the far east.,"Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.",55000000,56932305,Shanghai Noon,en +54690,Virgin Stripped Bare by Her Bachelors,2000-05-27,126.0,,,tt0253378,,"Wealthy Jae-hoon meets attractive writer Soo-jung through their mutual friend, filmmaker Young-soo. While Jae-hoon tries to pursue a romance with Soo-jung, things get complicated when it becomes apparent that Young-soo also has feelings for the young woman.",0,0,오! 수정,ko +197725,John Henry,2000-05-27,10.0,,,tt0219105,,"Disney's retelling of the legend of John Henry, the steel-driving man.",0,0,John Henry,en +64357,Meilleur espoir féminin,2000-05-31,0.0,,,tt0216911,,,0,0,Meilleur espoir féminin,fr +273296,VeggieTales: Esther...The Girl Who Became Queen,2000-06-01,39.0,,,tt0284605,,A VeggieTales of Queen Esther and her struggle to save her people from being sent to the Island of Perpetual Tickling (IPT) by her husband the king.,0,0,VeggieTales: Esther...The Girl Who Became Queen,en +273302,VeggieTales: King George and the Ducky,2000-06-01,0.0,,,tt0284608,,"King George, unlike most kings, spends most of his time in the bathtub, playing with his favorite toy - a rubber ducky. But George isn't satisfied with just his rubber ducky - he wants all the duckies! The king learns a lesson in humility from his brave soldier Thomas, whose ducky George had stolen. Eventually, George faces his sin and learns that it's always important to share with others.",0,0,VeggieTales: King George and the Ducky,en +273510,Madame Bovary,2000-06-02,180.0,,,tt0212318,,,0,0,Madame Bovary,en +65456,The Atrocity Exhibition,2000-06-05,105.0,,,tt0197256,,A scientist obsessed with World War III hits the road with a woman so he can re-create scenes from history.,0,0,The Atrocity Exhibition,en +62741,Tender Age,2000-06-06,130.0,,,tt0292149,,A movie which at first seems like a simple life story of an ordinary young man slowly evolves into an extraordinarily told ballade with twofold meaning - sad and optimistic at the same time...,0,0,Nezhnyy Vozrast,en +10394,Gangster No. 1,2000-06-09,103.0,,,tt0210065,There can only be ONE!,"An old gangster is advised that Freddie Mays would leave jail after thirty years in prison. His mood changes and he recalls when he was a young punk, who joined Freddie Mays' gang, a man he both envied and ultimately betrayed.",0,0,Gangster No. 1,en +32067,Beautiful Joe,2000-06-09,98.0,,,tt0200472,,An extremely nice guy falls for a really bad girl,0,0,Beautiful Joe,en +21576,Bill Maher: Be More Cynical,2000-06-10,68.0,,,tt0250256,,"BE MORE CYNICAL was originally aired on HBO, and offers viewers a chance to see Maher's full routine, which sees him tackling a wide array of topics, and leaving the audience recoiling in laughter.",0,0,Bill Maher: Be More Cynical,en +44895,Poor White Trash,2000-06-16,85.0,,,tt0204350,Crime pays... just not enough,Mike and Lenny are two buddies who dream of getting out of the trailer park. Out of desperation they resort to burglary as a means of financing Mike's college education. Their dream is jeopardized one summer day when their ploy to shoplift Near Beer begins a crime spree and a series of mishaps during which they are threatened with jail.,1200000,1404,Poor White Trash,en +9519,Chopper,2000-06-21,94.0,,,tt0221073,Never let the truth get in the way of a good yarn!,"The true and intense story of Mark 'Chopper' Read, a legendary criminal who wrote his autobiography while serving a jail sentence in prison.",0,236185,Chopper,en +89560,"Everything's Fine, We're Leaving",2000-06-27,96.0,,,tt0213595,,,0,0,"Tout va bien, on s'en va",fr +17711,The Adventures of Rocky & Bullwinkle,2000-06-30,88.0,,,tt0131704,This summer it's not the same old bull.,"Rocky and Bullwinkle have been living off the finances made from the reruns of their cartoon show. Boris and Natasha somehow manage to crossover into reality and team up with Fearless Leader, an evil criminal turned media mogul with some evil plans up his sleeve. Rocky and Bullwinkle must stop the three of them before they wreak havoc.",76000000,35134820,The Adventures of Rocky & Bullwinkle,en +10991,Pokémon: Spell of the Unknown,2000-07-08,93.0,http://movies.warnerbros.com/pk3/,34055,tt0235679,Pokémon: Spell of the Unknown,"When Molly Hale's sadness of her father's disappearance get to her, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mom, Ash along with Misty & Brock invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!",16000000,68411275,Pokémon 3: The Movie,ja +5257,The Dish,2000-07-11,101.0,,,tt0205873,Man's first step on the moon nearly stumbled on earth,"The true story of how the Parkes Radio Telescope was used to relay the live television of man's first steps on the moon, during the Apollo 11 mission in 1969.",0,0,The Dish,en +64310,Les Destinées sentimentales,2000-07-12,180.0,,,tt0216689,,"In late nineteenth century Charante, Protestant minister Jean Barnery causes local disquiet when he arranges a separation from his obsessive wife...",0,0,Les Destinées sentimentales,fr +36657,X-Men,2000-07-13,104.0,,748,tt0120903,Evolution Begins,"Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.",75000000,296339527,X-Men,en +166255,Jungle,2000-07-14,0.0,,,tt0251756,,"Where beasts feared to tread, he made it his home; Where the scorching sun could not reach, he shined in the cold bloodedness. Where the police never managed to catch him, he always killed",0,0,Jungle,en +36817,Two Heads Are Better Than None,2000-07-15,71.0,,,tt0235512,,Two Heads Are Better Than None also known as Kenan & Kel: The Movie is a 2000 American made-for-television film that stars the cast of the Nickelodeon sitcom Kenan & Kel. It is the last feature film of comic legend Milton Berle.,0,0,Two Heads Are Better Than None,en +31347,Cardcaptor Sakura: The Sealed Card,2000-07-15,80.0,,141252,tt0301083,,"All of the Clow Cards have been captured, and Sakura Kinomoto, the new Master of the Cards, is preparing to play the lead in the play for the town festival. However, a new evil force is causing mysterious events all over Tomoeda, including the disappearance of Sakura's cards. With Syaoran's help, Sakura must figure out the cause of these events, and save her town.",0,0,劇場版 カードキャプターさくら 封印されたカード,ja +36047,The In Crowd,2000-07-19,105.0,http://in-crowd.warnerbros.com/,,tt0163676,What would you do to get in?,"A mentally disturbed young woman takes a job at a posh country club and falls in with a clique of wealthy college kids where she's taken under the wing of the clique's twisted leader, who harbors some dark secrets too terrifying to tell.",15000000,5217498,The In Crowd,en +64526,Alex L'ariete,2000-07-21,0.0,,,tt0172109,,,0,0,Alex L'ariete,it +26366,Ellen DeGeneres: The Beginning,2000-07-23,66.0,,,tt0251070,,"Ellen shares her humorous observations on daily life, including remembering names, clothing, the need for approval, and making personal videos in this post-coming-out performance, fully acknowledges Ellen DeGeneres's status as America's most famous lesbian.",0,0,Ellen DeGeneres: The Beginning,en +32536,Rejected,2000-07-25,9.0,,,tt0234588,,"An animator's commissioned works, rejected because of their increasingly absurd and violent tone (reflecting the animator's own progressive breakdown)",0,0,Rejected,en +5551,Space Cowboys,2000-07-31,130.0,http://movies.warnerbros.com/spacecowboys/index.html,,tt0186566,Space will never be the same.,"Frank Corvin, ‘Hawk’ Hawkins, Jerry O'Neill and ‘Tank’ Sullivan were hotdog members of Project Daedalus, the Air Force's test program for space travel, but their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious ‘Ikon’ communications satellite's orbit begins to degrade and threatens to crash to Earth.",65000000,128884132,Space Cowboys,en +20438,The Tao of Steve,2000-08-04,87.0,,,tt0234853,Why do women find this man irresistible?,"Underachieving, overweight kindergarten teacher Dex finds a woman who forces him to reexamine his Zen-like system of seduction.",0,0,The Tao of Steve,en +10473,DragonHeart: A New Beginning,2000-08-08,84.0,,169452,tt0214641,,"When Geoff, an orphaned stable boy (Chris Masterson), discovers Drake (voice of Robby Benson), the world's last living dragon, he realizes that his dream of becoming a knight in shining armor can now come true. Together, they soon face challenges that turn them into heroes. But caught up in the excitement of their new lives, Geoff and Drake fail to see the hidden dangers that surround them.",0,0,DragonHeart: A New Beginning,en +32834,MVP: Most Valuable Primate,2000-08-11,93.0,,368982,tt0196106,Jack skates a little faster... Shoots a little harder... And is driving everyone bananas.,"Jack is a three-year-old chimpanzee who has been the subject of a long-term experiment by Dr. Kendall, a researcher who been teaching Jack to communicate through sign language. ack scrambles onto the ice in the midst of practice for Steven's junior league hockey team, and he and his teammates discover the monkey has a natural talent for the game.",0,0,MVP: Most Valuable Primate,en +10391,Bless the Child,2000-08-11,107.0,,,tt0163983,Mankind's last hope just turned six.,"When Maggie's sister Jenna saddles her with an autistic newborn named Cody she touches Maggie's heart and becomes the daughter she has always longed for. But six years later Jenna suddenly re-enters her life and, with her mysterious new husband, Eric Stark, abducts Cody. Despite the fact that Maggie has no legal rights to Cody, FBI agent John Travis, takes up her cause when he realizes that Cody shares the same birth date as several other recently missing children.",40000000,0,Bless the Child,en +47943,"Harry, He's Here To Help",2000-08-15,117.0,,,tt0216800,Who needs enemies?,"Harry knew Michel in high school; they meet again by accident, Harry inserts himself in Michel's life... and things take a sinister turn.",0,3818452,"Harry, un ami qui vous veut du bien",fr +35735,Badding,2000-08-18,103.0,,,tt0193741,,No overview found.,0,0,Badding,en +19150,The Crew,2000-08-21,88.0,,,tt0198386,,Four retired mobsters plan one last crime to save their retirement home.,0,0,The Crew,en +52654,The Luzhin Defence,2000-08-21,109.0,,,tt0211492,Two worlds collide when an eccentric genius falls in love with a strong-willed society beauty.,"Based upon the novel by Vladimir Nabokov, a chess grandmaster travels to Italy in the 1920s to play in a tournament and falls in love.",0,0,The Luzhin Defence,en +15940,Beautiful Creatures,2000-08-23,85.0,,,tt0221889,,"When Petula and Dorothy cover up the accidental murder of one jerk boyfriend, they hatch a hilarious scheme to collect a huge ransom.",0,0,Beautiful Creatures,en +3716,In July,2000-08-23,100.0,,,tt0177858,A Summer Night's Dream,Can Daniel follow the sun from Hamburg to the Bosporus by Friday to meet his love?,0,0,Im Juli,de +742,Together,2000-08-25,106.0,,,tt0203166,,"Elisabeth leaves her abusive and drunken husband Rolf, and goes to live with her brother, Göran. The year is 1975 and Göran lives in a commune called Together. Living in this leftist commune Elisabeth learns that the world can be viewed from different perspectives.",0,0,Tillsammans,sv +146,"Crouching Tiger, Hidden Dragon",2000-10-01,120.0,,290973,tt0190332,"A timeless story of strength, secrets and two warriors who would never surrender.","Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.",17000000,213525736,卧虎藏龙,zh +15830,The Bench,2000-08-26,93.0,,289288,tt0245027,,"Kaj is a stubborn man with a great deal of pride. The former chef lives in a council flat. He has wasted his life and is now on a council job training scheme for the long-term unemployed, where he refuses to let the foreman of the activation project boss him about. When Kaj's daughter, with whom he has not been in touch for nineteen years, moves into the same council estate on the run from her violent husband, a change comes over Kaj. His initial instinct is to avoid her, but by chance he ends up helping to look after Jonas, her six-year-old son. For the first time for years Kaj need not survive on his own devices. Now he has responsibilities and a family of his own.",0,0,Bænken,da +90387,Gran Paradiso,2000-08-28,0.0,,,tt0239441,,"Three jailers, a wheelchaired man and a mentally handicapped girl climb a mountain in the alps along with their supervisors.",0,0,Gran Paradiso,de +29572,The Man Who Cried,2000-08-29,96.0,,,tt0206917,,A young refugee travels from Russia to America in search of her lost father and falls in love with a gypsy horseman.,0,0,The Man Who Cried,en +14273,Dark Days,2000-08-30,82.0,,,tt0235327,,A cinematic portrait of the homeless population who live permanently in the underground tunnels of New York City.,0,0,Dark Days,en +125727,Uttara,2000-08-30,99.0,,,tt0255665,The Wrestlers,"In the pastoral expanse of rural Bengal, in Purulia district, single railroad workers and best friends Balaram (Shankar Chakraborty) and Nemai (Tapas Pal) spend their days wrestling on a hill with little work to speak of because the fact that their flag station has only a couple of trains to be flagged off or signalled to. Wrestling, however, despite its aggression and physical combat, turns into an expression of close bonding for Nimai and Balaram, a bond already established through their complementary work at the flag station. Wrestling, for them, is a way of releasing physical energy and a form of dynamic entertainment.",0,0,Uttara,hi +230295,Hur som helst är han jävligt död,2000-08-31,,,,tt0223490,,,0,0,Hur som helst är han jävligt död,sv +18079,Nine Queens,2000-08-31,114.0,,,tt0247586,Sticky & Square,An Argentinian crime drama revolving around a sheet of rare stamps (the Nine Queens).,1500000,0,Nueve Reinas,es +52049,Comedy of Innocence,2000-09-01,100.0,,,tt0254325,,"Today, Camille turns nine. He had sworn that on his 9th birthday he would show his parents the videos he was shooting on the side - the tail of a cat scampering away, a window, and a veiled woman's face - an intriguing picture... Later that day, Camille's mother, Ariane, meets up with her son in the park. The boy appears perturbed. He is leaning against a tree, eyes cast down. He says that now he wants to return to his ""real home"" and his ""real mother.""",0,0,Comedy of Innocence,en +78657,Ouch,2000-09-06,103.0,,,tt0236000,,,0,0,Aïe,fr +50225,A Rumor of Angels,2000-09-08,106.0,,,tt0201899,,An old woman helps a young boy resolve his feelings over the death of his mother.,0,0,A Rumor of Angels,en +32166,Chasing Sleep,2000-09-08,104.0,,,tt0221069,The nightmare begins when you open your eyes...,"A college professor wakes up to find his wife has not returned home, then struggles to understand her disappearance.",0,0,Chasing Sleep,en +56666,Fiza,2000-09-08,170.0,,,tt0248012,In Search of her brother,In 1993 Fiza's brother disappears during the riots in Mumbai. In 1999 Fiza is tired of waiting and goes looking for him.,1000000,623791,Fiza,hi +12650,Il Mare,2000-09-09,105.0,,,tt0282599,Love that resides in one place at two different times.,"Eun-joo moves out of her house ""Il Mare"", leaving behind a Christmas card for the eventual new owner of the house in 1999. In it she asks him/her to forward any mail of hers to her new address in the city. It is 1997 and Sung-hyun, the first owner of ""Il Mare"" is moving in and finds in his mailbox the Christmas card from Eun-joo. Thinking it was a joke, Sung-hyun leaves her a letter telling her so and reminds her that its 1997 not 1999. Eventually the two realize that they are separated by two years of time but can somehow communicate through the mailbox and begin to form a friendship through their letters.",0,0,시월애,ko +327,Brother,2000-09-09,114.0,http://www.office-kitano.co.jp/brother/index.html,,tt0222851,Are You Japanese?,"A Japanese Yakuza gangster’s deadly existence in his homeland gets him exiled to Los Angeles, California, where he is taken in by his little brother and his brother’s gang. This is the first English film by Takeshi Kitano.",12000000,15250000,Brother,ja +68139,Endgame,2000-09-10,84.0,,,tt0216736,,"Hamm is blind and unable to stand; Clov, his servant, is unable to sit; Nagg and Nell are his father and mother, who are legless and live in dustbins. Together they live in a room with two windows, but there may be nothing at all outside.",0,0,Endgame,en +786,Almost Famous,2000-09-15,122.0,,,tt0181875,Experience it. Enjoy it. Just don't fall for it.,"Almost Famous is an autobiographical inspired film about a 15-year-old who is hired by Rolling Stone magazine to follow and interview a rock band during their tour. A film about growing up, first love, disappointment, and the life of a rock star.",60000000,47383689,Almost Famous,en +19505,Hendrix,2000-09-17,100.0,,,tt0260949,,"Biography of rock star Jimi Hendrix chronicles his early career, including a stint with Little Richard who fired him for getting too flamboyant, to his tragic failure.",0,0,Hendrix,en +108497,Autumn Tale,2000-09-18,0.0,,,tt0294592,,,0,0,Autumn Tale,tr +25538,Yi Yi,2000-09-20,173.0,,,tt0244316,,Each member of a family in Taipei asks hard questions about life's meaning as they live through everyday quandaries.,0,0,一一,zh +201724,Prince of Central Park,2000-09-22,109.0,,,tt0170452,,"A young boy sets out to find his mother. After setting up camp in Central Park, he encounters a group of people even needier than himself.",0,0,Prince of Central Park,en +28943,Shiner,2000-09-22,99.0,,,tt0232632,,The past catches up with a ruthlessly ambitious boxing promoter.,0,0,Shiner,en +25520,The House of Mirth,2000-09-23,140.0,,,tt0200720,When a woman has the beauty men admire and women envy...it is wise to tread carefully.,A woman risks losing her chance of happiness with the only man she has ever loved.,10000000,5164404,The House of Mirth,en +13526,The Weight of Water,2000-09-25,113.0,,,tt0210382,Hell hath no fury...,"A newspaper photographer, Jean, researches the lurid and sensational axe murder of two women in 1873 as an editorial tie-in with a brutal modern double murder. She discovers a cache of papers that appear to give an account of the murders by an eyewitness.",16000000,109130,The Weight of Water,en +47574,The Monkey's Mask,2000-09-27,93.0,,,tt0259442,,The Monkey's Mask is a 2000 thriller film directed by Samantha Lang. It stars Susie Porter and Kelly McGillis. Porter plays a lesbian private detective who falls in love with a suspect (McGillis) in the disappearance of a young woman. The film is based on the verse novel of the same name by Australian poet Dorothy Porter.,0,0,The Monkey's Mask,en +2084,Birthday Girl,2001-09-06,93.0,,,tt0188453,,"A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down.",13000000,0,Birthday Girl,en +289923,The Burkittsville 7,2000-10-03,30.0,,,tt0252966,"Do you know what happened 50 years before ""The Blair Witch Project""?","A film archivist revisits the story of Rustin Parr, a hermit thought to have murdered seven children while under the possession of the Blair Witch.",0,0,The Burkittsville 7,en +61578,Esther Kahn,2000-10-04,163.0,,,tt0183056,,A Jewish girl in 19th century London dreams of becoming a stage actress.,0,0,Esther Kahn,en +2805,Tears of the Black Tiger,2000-10-05,110.0,,,tt0269217,,"A homage and parody of 1950s and 1960s Thai romantic melodramas and action films. Dum, the son of a peasant falls in love with Rumpoey, the daughter of a wealthy and respected family. The star-crossed lovers are torn apart for years, but their forbidden love survives. + When tragedy strikes, Dum unleashes his rage and becomes the gun-slinging outlaw the ""Black Tiger"" who will stop at nothing to seek his revenge.",0,0,ฟ้าทะลายโจร,th +115810,Calle 54,2000-10-06,105.0,,,tt0260775,,A film featuring performances of several stars of the Latin Jazz music scene.,0,0,Calle 54,en +273106,Peter Pan,2000-10-10,104.0,,,tt0255873,,Broadway musical adaptation of the fabled children's story.,0,0,Peter Pan,en +32708,Freedom,2000-10-10,96.0,,,tt0255177,,"A few fugitives... And a very, very long way to freedom.",0,0,Laisve,en +9301,The Princess and the Warrior,2000-10-12,135.0,,,tt0203632,Somewhere Out There You Can Find Love,"Young nurse Sissi lives a secluded life entirely devoted to her patients at Birkenhof asylum. Her first encounter with ex-soldier and drifter Bodo has a lasting impact. He causes an accident in which he provides first aid, Sissi wonders if he may be the man of her dreams. But when she finds him weeks later she is rejected, as Bodo is stuck somewhere between a traumatic past and a criminal future.",0,0,Der Krieger und die Kaiserin,de +10647,Pay It Forward,2000-10-12,122.0,,,tt0223897,"When someone does you a big favor, don't pay it back... Pay It Forward","Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.",40000000,55707411,Pay It Forward,en +21620,The Price of Milk,2000-10-13,87.0,,,tt0249893,,"New Zealand milk farmer Rob gives his lover Lucinda a ring. Trying to spark up her relationship with Rob, she takes her friend Drosophila's advice and starts to try and make Rob angry. But she tends to go too far. Admiring her ring while driving a lonely road, she has a run-in with an older woman that sets off a chain of events that begins with her quilt being stolen",0,0,The Price of Milk,en +47980,Jesus Christ Superstar,2000-10-16,107.0,http://www.reallyuseful.com/shows/jesus-christ-superstar/about-jesus-christ-superstar-1,,tt0275434,,"Tim Rice and Andrew Lloyd Webber's Jesus Christ Superstar first exploded onto the West End stage in 1971 and it was clear that the musical world would never be the same again. For the first time ever, Jesus Christ Superstar has been specially filmed for video. Shot at Pinewood Studios, this brand new filmed stage version starring Glenn Carter and Rik Mayall captures one of the best score Andrew Lloyd Webber has ever written and is packed with hit songs including, 'I Don't Know How To Love Him', 'Gethsemane' and 'Superstar'.",0,0,Jesus Christ Superstar,en +27711,Killjoy,2000-10-24,72.0,,,tt0250469,He's playing for life... he's not playing for laughs...,"Deep in an inner city hell, a ghastly figure is killing off the bad guys. A vigilante, or a demon? For the beautiful high school student, Jada, that's the question that will bring her face to face with the killer clown Killjoy.",150000,0,Killjoy,en +10783,Lucky Numbers,2000-10-27,105.0,,,tt0219952,When they put their heads together... it's a no brainer.,"Russ Richards is a TV weatherman and local celebrity on the verge of losing his shirt. Desperate to escape financial ruin, he schemes with Crystal the TV station's lotto ball girl to rig the state lottery drawing. The numbers come up right, but everything else goes wrong as the plan starts to unravel and the game turns rough.",65000000,0,Lucky Numbers,en +10867,Malena,2000-10-27,109.0,,,tt0213847,"She was too young to be a widow, and too beautiful to be alone. Every man wanted to have her. One boy risked everything to protect her.","On the day in 1940 that Italy enters the war, two things happen to the 12-year-old Renato: he gets his first bike, and he gets his first look at Malèna. She is a beautiful, silent outsider who's moved to this Sicilian town to be with her husband, Nico. He promptly goes off to war, leaving her to the lustful eyes of the men and the sharp tongues of the women. During the next few years, as Renato grows toward manhood, he watches Malèna suffer and prove her mettle. He sees her loneliness, then grief when Nico is reported dead, the effects of slander on her relationship with her father, her poverty and search for work, and final humiliations. Will Renato learn courage from Malèna and stand up for her?",0,0,Malèna,it +11531,Book of Shadows: Blair Witch 2,2000-10-27,90.0,,64750,tt0229260,Evil Doesn't Die.,"Young adults become fascinated by the events of the three missing filmmakers in Maryland, so they decide to go into the same woods and find out what really happened.",0,0,Book of Shadows: Blair Witch 2,en +76176,Da Hip Hop Witch,2000-10-31,90.0,,,tt0245943,,"5 teenage rappers gets notice of a mysterious witch that supposedly lurks in the ghetto and those who are attacked by her gets a successful hip-hop career. In their search for the witch, they come across various rappers whom already been attacked and retells their experiences.",0,0,Da Hip Hop Witch,en +204839,The Stepdaughter,2000-10-31,92.0,,,tt0221581,,"After a childhood spent going from one abusive foster home to the next, Susan seeks revenge on the mother who abandoned her. Susan's search leads her to a ranch where her long-lost sister begins to suspect the beautiful drifter isn't who she claims.",0,0,The Stepdaughter,en +16366,Joseph: King of Dreams,2000-11-07,74.0,,,tt0264734,,"In this animated retelling of the story from the Bible's Book of Genesis, Joseph's gift of dream interpretation and his brilliantly colored coat inspires jealousy in his brothers.",0,0,Joseph: King of Dreams,en +81782,Kurukshetra,2000-11-09,0.0,,,tt0255309,Kurukshetra,"Kurukshetra is a story of war between evil and truth. The D.S.P Prithvi Raj Singh(Sanjay Dutt) is an honest and brave police officer.All dishonest police officers , rogues, criminals and corrupt politicians are scared of him. The day he joins duty in Mumbai city, he destroys all the illegal business of Iqbal Pasina(Mukesh Rishi). From that day onwards, Iqbal Pasina starts admiring DSP Prithvi Raj Singh.Prithvi Raj Singh with his wife, Anjali (Mahima Chaudhary) and sister, Aarti is living a happy life. Aarti is in love with Sub-Inspector Avinash",0,0,Kurukshetra,en +8870,Red Planet,2000-11-10,106.0,,,tt0199753,Not A Sound. Not A Warning. Not A Chance. Not Alone.,"Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.",80000000,33463969,Red Planet,en +109170,The Facts of Life Reunion,2001-11-18,120.0,,,tt0294564,,"After receiving two separate marriage proposals, Natalie asks the gang to reunite in Peekskill, NY.",0,0,The Facts of Life Reunion,en +52051,Seventeen Again,2000-11-12,97.0,,,tt0194422,It's a Major Mix Up!,"Cat and Gene have been divorced for several years. They are both visiting their son and their grandchildren, Sydney and Willie. Willie's a genius who develops a formula that makes who uses it young again, it inadvertently spills into some soap that Willie places in his grandparents room. When each of them uses it they finds themselves 17 again. Willie had to find a way to reverse the process but will his grandparents want to be old again?",0,0,Seventeen Again,en +1163,The Miracle Worker,2000-11-12,95.0,,,tt0246786,,"Devoted teacher Anne Sullivan (Alison Elliott) leads deaf, blind and mute Helen Keller (Hallie Kate Eisenberg) out of solitude and helps integrate her into the world.",0,0,The Miracle Worker,en +10862,Bounce,2000-11-15,106.0,,,tt0186894,Two strangers fell in love. One knew it wasn't by chance.,A man switches plane tickets with another man who dies in that plane in a crash. The man falls in love with the deceased one's wife.,35000000,36779296,Bounce,en +10565,Kanak Attack,2000-11-16,86.0,,,tt0195001,,No overview found.,0,0,Kanak Attack,de +14295,You Can Count on Me,2000-11-17,111.0,,,tt0203230,,"A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.",0,0,You Can Count on Me,en +49514,Gen-Y Cops,2000-11-17,120.0,,,tt0251094,,"When terrorists abduct a deadly government attack robot, the call is put out to the Gen-Y Cops, an elite task force with lethal fighting skills. Together with a trigger-happy FBI agent, the Gen-Y Cops race against time to destroy the robot before it destroys their city.",0,0,Te jing xin ren lei 2,en +447511,The Bridge on the River Kwai: An Appreciation by Filmmaker John Milius,2000-11-21,8.0,,,tt0489663,,John Milius talks about The Bridge on the River Kwai,0,0,The Bridge on the River Kwai: An Appreciation by Filmmaker John Milius,en +24955,The New Country,2000-11-24,128.0,,,tt0188350,,"A 15 year old Somalian boy meets a 40 year old Iranian man on a refugee camp in Skåne, in the south of Sweden. With the threat of deportation hanging over them they decide to the take their faiths in their own hands and together they go on a journey in the Swedish summer",0,0,Det nya landet,sv +213914,Borderline Normal,2000-12-01,85.0,,,tt0221837,Parents get divorced....often it's the children who must cope,A family goes through a divorce.,0,0,Borderline Normal,en +39056,Ritual,2000-12-07,128.0,,,tt0269856,,"A disillusioned filmmaker has an encounter with a young girl who has a ritual of repeating ""Tomorrow is my birthday"" everyday. He tries to communicate with her through his video camera.",0,0,式日,ja +75578,Mariken,2000-12-07,92.0,,,tt0239593,,"A family film, based on a well-known Dutch story from the Middle Ages. Mariken tells the compelling and poetic story of spirited young girl named Mariken. The orphan Mariken lives in a secluded forest with an eccentric old hermit. One day, she decides to leave her surroundings and sets off for town to buy a new goat. On her adventurous journey into the 'real' world, she finds out about the good and bad sides of people.",0,0,Mariken,nl +11983,Proof of Life,2000-12-08,135.0,,,tt0228750,,"Alice hires a professional negotiator to obtain the release of her engineer husband, who has been kidnapped by anti-government guerrillas in South America.",65000000,0,Proof of Life,en +11688,The Emperor's New Groove,2000-12-09,78.0,,178117,tt0120917,It's All About.....ME!,"Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.",100000000,169327687,The Emperor's New Groove,en +125705,Hamlet,2000-12-10,178.0,,,tt0243951,,"To be or not to be, etc.",0,0,Hamlet,en +16234,Batman Beyond: Return of the Joker,2000-12-12,74.0,,379475,tt0233298,"This Time, The Joker Is Wild","The Joker is back with a vengeance, and Gotham's newest Dark Knight needs answers as he stands alone to face Gotham's most infamous Clown Prince of Crime.",0,0,Batman Beyond: Return of the Joker,en +11925,Naked,2000-12-15,94.0,,,tt0269604,,"When Anders wakes up on his wedding day, he finds himself naked in an elevator, only remembering some of what happened.",0,0,Naken,sv +50531,Chiedimi se sono felice,2000-12-15,0.0,,,tt0252985,,,0,0,Chiedimi se sono felice,it +69974,The Sea That Thinks,2000-12-20,100.0,,,tt0261277,I don't exist,Incredible optical illusions in a story in a story in a story helps the surprised viewer finally to find out that he has been watching himself all along.,0,0,De zee die denkt,en +8358,Cast Away,2000-12-22,143.0,,,tt0162222,"At the edge of the world, his journey begins.","Chuck, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia ditches at sea during a terrible storm. He's the only survivor, and he washes up on a tiny island with nothing but some flotsam and jetsam from the aircraft's cargo.",90000000,429632142,Cast Away,en +2046,The Gift,2000-12-22,111.0,,,tt0219699,The only witness to the crime was not even there.,"When a local woman disappears and the police can't seem to find any leads, her father turns to a poor young woman with psychic powers. Slowly she starts having visions of the woman chained and in a pond. Her visions lead to the body and the arrest of an abusive husband, but did he really do it?",10000000,12008642,The Gift,en +40466,Crocodile,2000-12-26,93.0,,,tt0203425,Ever feel like something is watching you?,"A group of friends including Brady Turner, Claire and Duncan McKay go out on a boat trip on a lake in Southern California, but their joyful weekend turns into horror, when a giant killer crocodile searching for its stolen eggs, picks off anyone who gets in its way. Can they all escape in one piece or will they slowly and painfully fall to the mammoth reptile.",0,0,Crocodile,en +73642,The Closer You Get,2000-12-27,93.0,,,tt0218112,"For five desperate Irishmen, the perfect girl is abroad.","Irish bachelors take out an ad in the Miami Herald, looking for love.",0,0,The Closer You Get,en +39907,Bang Rajan,2000-12-29,113.0,,159340,tt0284880,The Legend of the Village Warriors,"Set right before the fall of Thailand's old capital, Ayuttaya, Bang Rajan draws on the legend of a village of fighters who bravely fended off the Burmese armies. With no support from the Royal army, the villagers drives the invading Burmese away many times until their names have become legendary during the time. As each subsequent battles becomes fiercer, the villagers tries to forge a canon to battle the enemy in a final battle where everyone, women and children included, die in combat.",0,0,บางระจัน,th +75778,Wild About Harry,2000-12-31,91.0,,,tt0216279,Harry can't remember... what he's forgotten!,A sleazy chef is forced to face the truth about the man he has become and realizes that he has the chance to begin again.,0,0,Wild About Harry,en +267466,Innocent Thing,2014-04-10,117.0,http://www.gasi2014.co.kr/index.htm,,tt3550748,,A high school student develops a crush on her gym teacher.,0,0,가시,ko +45861,Happy Times,2000-12-31,102.0,,,tt0303243,,"Zhao is an old laid-off worker who's dreaming of getting married. After trying unsuccessful proposals, he finally pair off with a gargantuan divorcée with two children. She, however, demands a lavish wedding and that Zhao finds a job and another place to stay for her blind step-daughter. Pretending he's the General Manager of a non-existent posh hotel ""Happy Times"", Zhao had to find ways and means of keeping both mother and stepdaughter happy.",1900000,240093,幸福时光,zh +8341,Samsara,2001-01-01,138.0,,,tt0196069,,A love story situated in the Himalayas. A Buddhist monk can't choose between life and the way of the Buddha.,3000000,0,Samsara,en +143005,Львиная доля,2001-01-01,0.0,,,tt0362832,,,0,0,Львиная доля,ru +21533,Voyage of the Unicorn,2001-01-01,170.0,,,tt0249326,,"One day the Aislings find themselves magically transported to a ship called the Unicorn. Here, they discover that they've been chosen to fulfill an incredible quest! They undergo an incredible journey of discovery in strange lands with enchanted creatures, but find their voyage is really one of the spirit, as they each learn faith and the power of love.",0,0,Voyage of the Unicorn,en +33343,Gypsy 83,2001-01-01,94.0,,,tt0251110,Some of us were never meant to fit in.,"Two young misfits head for New York City to celebrate their idol and muse, Stevie Nicks, at The Night of 1,000 Stevies. Along the road, in order for them to escape their painful pasts, they must discover their strengths and learn self-acceptance.",0,0,Gypsy 83,en +67669,Going Back,2001-01-01,113.0,,,tt0243278,,A group of Marines return to Vietnam with a news crew to relive their tragic war experiences.,0,0,Going Back,en +49941,Silent Storm,2001-01-01,93.0,,,tt0276529,,,0,0,Stiller Sturm,en +166253,Pyaar Tune Kya Kiya,2001-01-01,0.0,,,tt0281102,,"Ria Jaiswal lives a very wealthy lifestyle along with her mom and dad. As she is the only child in this family, her parents dot on her and give in to her every wish.",0,0,Pyaar Tune Kya Kiya,hi +404479,Car Bpnus,2001-01-01,60.0,,,tt0308090,,,0,0,Autobonus,fi +30091,The Hire: Chosen,2001-01-01,6.0,,113589,tt0283994,,"The Driver is carrying an Asian child who has been chosen for a strange ritual. He must drive him through a dark night in the city to get to a monk's house, while eluding several American cars out to get the child.",0,0,The Hire: Chosen,en +38189,The Hire: The Follow,2001-01-01,11.0,,113589,tt0285104,,"The Driver is hired by a nervous movie manager to spy on a paranoid actor's wife. During his tailing of the wife, the Driver describes the right way to tail someone. As he follows her he begins to fear what he might learn of her apparently tragic life. He discovers the wife is fleeing the country and returning to her mother's, and that she's been given a black eye, likely by her husband. He returns the money for the job, refusing to tell where the wife is, and drives off telling the manager never to call him again.",0,0,The Hire: The Follow,en +16539,Zus & Zo,2001-01-01,106.0,,,tt0245157,,"Zus & Zo shows what three sisters are willing to do to stop their would-be sister-in-law from coming into possession of Paraíso, their beloved family summer home on the Portuguese coast.",0,0,Zus & zo,nl +2132,Totally Blonde,2001-01-01,94.0,,,tt0200954,,No overview found.,0,0,Totally Blonde,en +40373,Waiting for Godot,2001-01-01,120.0,,,tt0276613,,"Two tramps wait for a man named Godot, but instead meet a pompous man and his stooped-over slave.",0,0,Waiting for Godot,en +49920,Acts of Worship,2001-01-01,94.0,,,tt0275182,You never know what someone's been through,"Alix is taken in by a photographer, Digna, who despite her friends' protests, tries to help Alix piece her life back together and overcome her addictions.",0,0,Acts of Worship,en +117023,Sharkman,2001-01-01,90.0,,,tt0389371,,In his world Sharkman is a superhero. In our world... not so much!,0,0,Sharkman,en +24625,Dinner with Friends,2001-01-01,94.0,,,tt0271461,Four Friends. Two Marriages. One Divorce.,"A husband and wife reevaluate their marriage after their closest friends, another couple decide to split up after twelve years.",0,0,Dinner with Friends,en +27739,The Zombie Chronicles,2001-01-01,71.0,,,tt0272950,,No overview found.,0,0,The Zombie Chronicles,en +61217,I cavalieri che fecero l'impresa,2001-01-01,,,,tt0240659,,,0,0,I cavalieri che fecero l'impresa,it +32099,The Rose of the Rascal,2001-01-01,98.0,,,tt0249110,,"The life of Irwin Goodman, a Finnish singer.",0,0,Rentun Ruusu,fi +207441,Pilgrimage,2001-01-01,18.0,,,tt0280035,,"Accompanied only by music the film alternates between shots of pilgrims near the tomb of Saint Sergei in Sergiyev Posad, Russia and pilgrims at the Basilica of Guadalupe in Mexico.",0,0,Pilgrimage,en +59858,Figli – Hijos,2001-01-01,0.0,,,tt0295959,,,0,0,Figli – Hijos,it +63066,25 Watts,2001-01-01,94.0,,,tt0280381,,"Montevideo, Saturday, 7 in the morning. El Leche, Javi, and Seba have not gone to sleep yet. Tired and bored, they sit in the usual wall fence to have a beer. On a lazy summer Saturday the three boys each with their own worries—studies, work, and, of course, love.",0,0,25 Watts,es +68569,Invincible,2001-01-01,90.0,,,tt0245171,,A Jewish strongman performs in Berlin as the blond Aryan hero Siegfried.,0,0,Invincible,en +39436,Sleepless,2001-01-05,117.0,,,tt0220827,Creepier than Jack the Ripper,"An elderly and retired police detective and a young amateur sleuth team up to find a serial killer whom has resumed a killing spree in Turin, Italy after a 17-year hiatus.",4000000,0,Non ho sonno,it +5955,The Pledge,2001-01-09,123.0,http://movies.warnerbros.com/thepledge/,,tt0237572,,A police chief about to retire pledges to help a woman find her daughter's killer. Based on a story by Swiss writer Friedrich Dürrenmatt.,35000000,29400000,The Pledge,en +107250,The Wandering Soul Murders,2001-01-09,90.0,,,tt0273153,,"Haunted by the murder of her politician husband 6 years ago, former police detective Joanne Kilbourn (Wendy Crewson) keeps looking for clues, with the help of her old partner (Victor Garber). When a prime suspect is caught, it looks as if the killer may finally be brought to justice … but in a shocking turn of events, the suspect is gunned down as he's brought to the police station. Is there more to her husband's death than Joanne realized?",0,0,The Wandering Soul Murders,en +220976,The Amati Girls,2001-01-09,91.0,,,tt0213446,Four sisters who disagree about everything... except what matters most. Family.,Four sisters who disagree about everything... except what matters most. Family.,0,0,The Amati Girls,en +142051,Jazz,2001-01-09,1140.0,,,tt0221300,,A survey of the musical form's history and major talents.,0,0,Jazz,en +9816,Save the Last Dance,2001-01-12,112.0,,107469,tt0206275,The Only Person You Need To Be Is Yourself.,"A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.",13000000,91038276,Save the Last Dance,en +69401,Dheena,2001-01-14,157.0,,,tt0807944,,"Deena works as a ruffian for his brother Adikesavan, doing his dirty work. One day he meets Chitra and they fall in love. Meanwhile his sister, Shanti is secretly in love with Chitra's brother. Misunderstandings lead to Shanti's death and Adikesavan swears to take revenge on the family of her boyfriend. Deena must now choose between obeying his brother or carrying out his sister's dying wish to protect Chitra, whom he loves, and her family",500000,500000,தீணா,ta +14651,My Wife Is an Actress,2001-01-14,95.0,,,tt0269499,,My Wife is an Actress is a French Romantic Comedy/Drama film starring real life couple Yvan Attal and Charlotte Gainsbourg. Attal plays a journalist who becomes obsessively jealous when his actress wife gets a part in a movie with an attractive co-star. Attal also wrote and directed the film.,0,0,Ma femme est une actrice,fr +39939,Super Troopers,2001-01-18,100.0,http://www.brokenlizard.com/,449462,tt0247745,,"Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.",3000000,18492362,Super Troopers,en +1282,Dogtown and Z-Boys,2001-01-18,91.0,http://www.sonypictures.com/classics/dogtown/,,tt0275309,,Dogtown and Z-Boys follows the evolution of skateboarding from the 60's and into the late 70's as skateboarding's california beach boy image is transformed into a low-riding surf oriented style.,0,0,Dogtown and Z-Boys,en +141,Donnie Darko,2001-01-18,113.0,,178106,tt0246578,You can never go too far,"After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.",6000000,1270522,Donnie Darko,en +168819,Weiser,2001-01-18,95.0,,,tt0268032,,"The film is based on the well-known, translated into many languages novel of writer Pawel Huelle. It is imbued with nostalgia and the atmosphere of mystery story of a group of children, fascinated by the figure of a man named David Weiser.",0,0,Weiser,pl +4012,The Believer,2001-01-19,98.0,,,tt0247199,,The movie tells the story of a young Jewish man who becomes fiercely anti-Semitic.,1500000,416925,The Believer,en +35381,Crossfire Trail,2001-01-21,95.0,,,tt0218127,A hero is measured by the enemies he makes.,"Rafe Covington is as good as his word, and he's determined to keep his promise to a dying man that he'll look after the man's widow and Wyoming ranch. But the widow doubts the integrity of drifter Covington. And an unscrupulous land grabber and his gunmen are sizing up the ranch the way a spider eyes a fly.",0,0,Crossfire Trail,en +24273,Happy Campers,2001-01-21,94.0,,,tt0210094,The excitement is In-tents!,Chaos and rampant hormones reign when teenage counselors are left in charge during their summer-camp director's absence.,15000000,0,Happy Campers,en +24936,The Deep End,2001-01-21,101.0,,,tt0250323,,"With her husband Jack perpetually away at work, Margaret Hall raises her children virtually alone. Her teenage son is testing the waters of the adult world, and early one morning she wakes to find the dead body of his gay lover on the beach of their rural lakeside home. What would you do? What is rational and what do you do to protect your child? How far do you go and when do you stop?",3000000,0,The Deep End,en +3577,The Tunnel,2001-01-21,150.0,,,tt0251447,,"Inspired by true events, Olympic swimmer Harry Melchior defects from East Germany in the 1960s and hatches a daring plot to help his sister and others flee East Berlin through a 145-yard underground tunnel.",0,0,Der Tunnel,de +27338,The Pretender 2001,2001-01-22,96.0,,,tt0271732,He is a master of disguise. She is a master of the hunt. Let the chase begin.,Jarod reunites with two old friends and unleashes some powerful Centre revelations. Also Jarod and Miss Parker learn more about their pasts.,0,0,The Pretender 2001,en +10491,Enigma,2001-01-22,119.0,,,tt0157583,Unlock the secret.,"A romantic thriller based around the World War 2 project to crack the codes behind the Enigma machine, used by the Germans to encrypt messages sent to their submarines.",0,15705007,Enigma,en +112991,The Sleepy Time Gal,2001-01-24,108.0,,,tt0207988,,A young woman learns of her adoption and eventually quits her law firm job and goes on a journey to find her birth mother.,0,0,The Sleepy Time Gal,en +18939,Little Otik,2001-01-25,132.0,,,tt0228687,,"When a childless couple learn that they cannot have children, it causes great distress. To ease his wife's pain, the man finds a piece of root in the backyard and chops it and varnishes it into the shape of a child. However the woman takes the root as her baby and starts to pretend that it is real.",0,0,Otesánek,cs +153141,The Low Down,2001-01-26,96.0,,,tt0251191,On Life.. On Love...,"Frank is a restless young man in his late twenties whose life revolves around his friends and his work. When he becomes involved with Ruby, her optimistic and fresh approach to life and its problems begins to have a dramatic effect on him.",0,32395,The Low Down,en +27245,Electric Dragon 80.000 V,2001-01-31,55.0,,,tt0276935,,"A young boy gets jolted with electricity as he's climbing a cable pylon. As he gets older, he experiences intense fits of violence in which bolts of electricity burst from his fists. Elsewhere in Tokyo, there is an electronics wizard who also happens to be a vigilante with a taste for electric weapons. When the pair catch each others attention, the result is a battle that will light up the city.",0,0,Electric Dragon 80.000 V,ja +73952,When Strangers Appear,2001-02-01,98.0,,,tt0243554,Don't serve coffee to strangers.,A man enters a roadside diner run by a young woman and claims he is being chased by murderers.,2000000,0,When Strangers Appear,en +41187,Fate,2001-02-01,119.0,,,tt0287803,,Fate (Turkish: Yazgı) is a 2001 Turkish drama film directed and screen-written by Zeki Demirkubuz based on the Albert Camus novel L'Étranger... It was screened in the Un Certain Regard section at the 2002 Cannes Film Festival.,0,0,Yazgı,tr +152023,The Rising Place,2001-02-01,93.0,http://www.therisingplace.com/,,tt0201020,A story about discovering your heart in a place you never expected.,"The close friendship of two young women, each of a different race, and their struggle to find purpose in their lives during this time of social injustice and world war.",0,0,The Rising Place,en +83013,Bungee Jumping of Their Own,2001-02-03,107.0,,,tt0276818,,"Two soulmates find eachother only to be torn apart by tragedy. However, not even death can keep them apart...but can destiny?",0,0,번지 점프를 하다,ko +44081,Under the Skin of the City,2001-02-04,92.0,,,tt0250125,,"Tuba works daily at a grueling textile factory in Iran, returning home every night to deal with the rest of her problematic family, which includes: a pregnant daughter whose husband beats her regularly; a teenage son, who's been getting into trouble due to his burgeoning career in radical politics; and an older son who goes to great lengths--such as attempting to sell the family's meager house--in order to get an engineering job in Japan as a means of getting out of Iran.",0,0,Zir-e poost-e shahr,fa +252682,Burning Down the House,2001-02-07,84.0,,,tt0123581,,"A down-on-his-luck film director sets fire to his home so he can collect the insurance money and fund his new movie. But crime apparently does pay, because once the rumor mill gets wind of his plans, everyone suddenly wants a slice of his new project's pie.",0,0,Burning Down the House,en +47588,Signs & Wonders,2001-02-09,105.0,,,tt0230783,,"Under the influence of signs and premonitions, a man allows himself to veer in and out of a love affair with his colleague.",0,0,Signs & Wonders,en +82762,New York in the 50's,2001-02-09,72.0,,,tt0277185,,Based on the book of the same name. A lot of people reminisce about how they moved to NYC to escape the Midwest and make something of their lives.,0,0,New York in the 50's,en +125700,Faat Kiné,2001-02-11,120.0,,,tt0276951,,A forty-year-old woman refuses to give into the stigma of unwed motherhood and climbs the ladder of success in a male dominated field.,0,0,Faat Kiné,fr +90120,Horrorvision,2001-02-13,85.0,,,tt0275410,The new vision of horror has arrived.,"The website ""horrorvision.com"" has a mysterious secret...anyone who logs onto it winds up dead. After Dez, a web programmer, logs in his girlfriend and others are attacked. Only Dez and a mysterious man named Bradbury can stop the ominous forces intent on ruling the cyber-world.",0,0,Horrorvision,en +42187,Shark Attack 2,2001-02-13,98.0,,389867,tt0222355,The killer is back,"A biological experiment goes bad, this time releasing a gaggle of mutated great white sharks with a taste for human flesh. Soon enough, shark expert Nick West is on the case, leading a crew to study them and eventually bring them back into captivity. West's plans hit a snag, however, when Australian shark hunter Roy Bishop is called in to wipe out the fishy menace.",0,0,Shark Attack 2,fr +71885,Motocrossed,2001-02-16,110.0,,,tt0273842,,"Motocrossed! is a 2001 Disney Channel Original Movie (based on the Shakespeare play Twelfth Night), about a girl named Andrea Carson who loves motocross, despite the fact that her father finds her unsuited for the sport, being that she is ""just a girl"". When her twin brother Andrew breaks his leg just before a big race, their father is forced to go to Europe to find a replacement rider. In the meantime, Andrea secretly races in Andrew's place with her mother's help.",0,0,Motocrossed,en +25078,Cat Soup,2001-02-21,34.0,,,tt0385586,,"The surreal black comedy follows Nyatta, an anthropomorphic kitten, on his travel to the land of the dead and back in an effort to save his sister's soul.",0,0,ねこぢる草,ja +270024,I Know I'll See Your Face Again,2001-02-21,98.0,,,tt0268013,,"Writer Joris (the author's alter-ego) has packed in his job and left his routine. He wanders through Brussels, pretending to be in other places and as far as we can verify lying to everyone. He stays in a dead-beat motel and meets other absurd people, never to any actual end. Will it be different when he meets Luzie and falls in love?",0,0,Verboden te zuchten,en +58904,Haunted Castle,2001-02-23,38.0,,,tt0278475,The spirit world is about to be rocked...,"A young musician and singer named Johnny has been notified by a law firm that his mother, an aging rock star whom Johnny hasn't seen or heard from since he was 3 years old, has died in a helicopter accident. Johnny has been willed her castle and all of her property and money, but he must visit the actual castle to claim these things.",0,13651656,Haunted Castle,en +205361,Boycott,2001-02-24,118.0,,,tt0255851,The Story of Martin Luther King and One Act of Defiance That Changed a Nation,"This made-for-TV movie dramatizes the historic boycott of public buses in the 1950s, led by civil rights leader Dr. Martin Luther King, Jr.",0,0,Boycott,en +17203,Blow Dry,2001-03-01,91.0,,,tt0212380,An outrageous new comedy for anyone who's ever had hair.,"The annual British Hairdressing Championship comes to Keighley, a town where Phil and son Brian run a barbershop and Phil's ex-wife Shelly and her lover Sandra run a beauty salon.",0,637769,Blow Dry,en +48405,Zone of the Enders: Idolo,2001-03-01,55.0,,,tt0365965,,"Zone of the Enders: 2167 Idolo is an hour long Original Video Animation, set as a prequel to the original Zone of the Enders game. It serves to explain the war between Earth and Mars, and the origin of the Orbital Frame technology. The events also lead into the TV series ZOE: Dolores, i.",0,0,Zone of the Enders: 2167 Idolo,it +288035,"Kids in the Hall: Same Guys, New Dresses",2001-03-02,93.0,,,tt0279176,,"A behind the scenes look at the comedy troupe, The Kids In The Hall's 1999-2000 reunion tour.",0,0,"Kids in the Hall: Same Guys, New Dresses",en +35569,Carman: The Champion,2001-03-02,90.0,,,tt0262462,Sometimes a dream is the only thing worth fighting for...,"Former champion boxer Orlando Leone (Carmen) is ""The Preacher"" at an inner-city youth center. Wanting to give something back to the community, he bought a large building for a church youth center. But the cash ran out before he could finish fixing it up and now, the mortgage company is about to foreclose. With his bills mounting he agrees to one last fight.",0,0,Carman: The Champion,en +117905,Do You Wanna Know a Secret?,2001-03-04,0.0,,,tt0267440,,"As a night out on the town turns into a nightmare, six young college students must fight for their lives as a killer hunts them down.",0,0,Do You Wanna Know a Secret?,en +10050,Get Over It,2001-03-08,87.0,,,tt0192071,"Young, Free And Single. Again.","When Berke Landers, a popular high school basketball star, gets dumped by his life-long girlfriend, Allison, he soon begins to lose it. But with the help of his best friend Felix's sister Kelly, he follows his ex into the school's spring musical. Thus ensues a love triangle loosely based upon Shakespeare's ""A Midsummer Night's Dream"", where Berke is only to find himself getting over Allison and beginning to fall for Kelly.",10000000,0,Get Over It,en +85883,The Woman Who Drinks,2001-03-09,91.0,,,tt0279083,,,0,0,La Femme qui boit,en +53048,Bartleby,2001-03-10,85.0,http://www.bartlebythemovie.com/,,tt0230025,I would prefer not to.,"An adaptation of Herman Melville's short story ""Bartleby, the Scrivener"" told in the setting of a modern office.",0,0,Bartleby,en +78210,Mademoiselle,2001-03-21,85.0,,,tt0253225,,"Claire is a young woman who leads a somewhat formatted life. Pierre is an improviser, but not an actor. Brief encounter, brief romance, doomed or not, who can say? When things like that happen, you act on the spur of the moment.",0,0,Mademoiselle,fr +82495,Gamer,2001-03-21,0.0,,,tt0262429,,,0,0,Gamer,fr +153420,Love Ghost,2001-03-24,95.0,,,tt0450497,,Teenager Midori's family moves back to the city where she lived as a child and is relieved to discover that her old friend Ryusuke still lives there. Her terrifying nightmares begin intersecting with her everyday life. Do her nightly dreams about an anonymous fortune-teller have anything to do with the tragedies plaguing her high school?,0,0,Shibito no koiwazurai,ja +143883,Den radio,2001-03-24,0.0,,,tt5952180,,,0,0,День Радио (Спектакль),ru +92465,Ponterosa,2001-03-30,105.0,,,tt0281078,,,350000,0,Ponterosa,fi +4133,Blow,2001-04-04,124.0,,,tt0221027,Based on a True Story.,"A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.",53000000,83282296,Blow,en +6935,Yamakasi,2001-04-04,90.0,,107471,tt0267129,,"Yamakasi - Les samouraïs des temps modernes is a 2001 French movie written by Luc Besson. It demonstrates the skills of the Yamakasi, a group of traceurs who battle against injustice in the Paris ghetto. They use parkour to steal from the rich in order to pay off medical bills for a kid injured copying their techniques.",0,0,Yamakasi - Les samouraïs des temps modernes,en +18492,Killer Tattoo,2001-04-05,114.0,,,tt0282658,,"Set in a future Bangkok, the story picks-up after a hit-gone-wrong on ""Iron Cop"", the area police chief. The would-be killer ""Pae"", together with his equally inept collection of thugs, now become wanted men themselves as the Thai underworld bristles with the shame & dishonor of such an ignoble bungling.",0,0,มือปืน โลก/พระ/จัน,en +634,Bridget Jones's Diary,2001-04-13,97.0,,8936,tt0243155,Health Warning: Adopting Bridget's lifestyle could seriously damage your health.,"A chaotic Bridget Jones meets a snobbish lawyer, and he soon enters her world of imperfections.",25000000,281929795,Bridget Jones's Diary,en +298158,By Dawn's Early Light,2001-04-15,100.0,,,tt0247232,The Adventure of two lifetimes,"When Mike Lewis leaves L.A. to stay with his grandfather in Colorado for the summer, he hates the old man's cowboy ways. When Mike demands to go home, the old man agrees and saddles up a couple of horses for a six week trip toward California, home, the Pacific and redemption.",0,0,By Dawn's Early Light,en +64362,"Oui, mais...",2001-04-18,104.0,,,tt0246278,,,0,0,"Oui, mais...",fr +2144,One Night at McCool's,2001-04-19,93.0,,,tt0203755,A story about finding the perfect woman... and trying desperately to give her back.,Every man has a different recollection of the beautiful young woman who wreaked havoc on their lives during one heated night.,0,0,One Night at McCool's,en +116894,Blind Terror,2001-04-23,89.0,,,tt0287936,,,0,0,Blind Terror,en +194,Amélie,2001-04-25,122.0,http://www.die-fabelhafte-welt-der-amelie.de,,tt0211915,One person can change your life forever.,"At a tiny Parisian café, the adorable yet painfully shy Amélie (Audrey Tautou) accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?",10000000,173921954,Le fabuleux destin d'Amélie Poulain,fr +20536,61*,2001-04-28,129.0,,,tt0250934,,"In 1961, Roger Maris and Mickey Mantle played for the New York Yankees. One, Mantle, was universally loved, while the other, Maris, was universally hated. Both men started off with a bang, and both were nearing Babe Ruth's 60 home run record. Which man would reach it?",0,0,61*,en +18704,Failan,2001-04-28,115.0,,,tt0289181,,"After losing both her parents, Failan emmigrates to Korea to seek her only remaining relatives. Once she reaches Korea, she finds out that her relatives have moved to Canada well over a year ago. Desperate to stay and make a living in Korea, Failan is forced to have an arranged marriage through a match-making agency.",0,0,파이란,ko +163077,Days of Nietzsche in Turin,2001-05-04,85.0,,,tt0297856,,Movie about days of Nietzsche in Turin.,0,0,Dias de Nietzsche em Turim,pt +49943,Sisters,2001-05-10,83.0,,,tt0284492,,"A movie about two sisters - thirteen year old Sveta, poor and abandoned by her father, who longs to go off and be a sniper in the army, and spoilt eight-year old Dina, doted on by her gangster father...",0,0,Syostry,ru +28171,Kandahar,2001-05-11,85.0,http://www.makhmalbaf.com/movies.php?m=10,,tt0283431,,"After an Afghanistan-born woman who lives in Canada receives a letter from her suicidal sister, she takes a perilous journey through Afghanistan to try to find her.",0,0,Safar e Ghandehar,en +54491,The Trumpet Of The Swan,2001-05-11,75.0,,,tt0206367,Sometimes being different helps you to find your voice!,"The adventures of a young Trumpeter swan who cannot speak. With the help of a human boy and the love of his family and friends, Louie discovers his own unique talents which help him find his place in the world.",0,100202,The Trumpet Of The Swan,en +10596,Replicant,2001-05-11,100.0,,,tt0238552,,"Scientists create a genetic clone of a serial killer in order to help catch the killer, teaming up with two cops.",17000000,0,Replicant,en +27834,CQ,2001-05-12,88.0,,,tt0254199,Every picture tells a story.,"A young filmmaker in 1960s Paris juggles directing a cheesy sci-fi debacle, directing his own personal art film, coping with his crumbling relationship with his girlfriend, and a new-found infatuation with the sci-fi film's starlet.",0,0,CQ,en +76422,My Louisiana Sky,2001-05-12,98.0,,,tt0284334,It was the summer Aunt Dorie Kay came home... and nothing would ever be the same again.,A girl comes to terms with her mentally challenged parents.,0,0,My Louisiana Sky,en +12831,Amerikana,2001-05-15,95.0,,,tt0276773,,"Following the Dogma rules does not make this film hard to watch... In the end, it is a great story and shows that Merendino can be a mature filmmaker. It's about two guys a Vespa and a trip from South Dakota to Los Angeles. It's funny, insightful and tragic",0,0,Amerikana,en +103489,All Access: Front Row. Backstage. Live!,2001-05-20,0.0,,,tt0238015,,Front Row. Backstage. LIVE! IMAX film.,0,0,All Access: Front Row. Backstage. Live!,en +239513,The Perfect Wife,2001-05-21,90.0,,,tt0153812,,"When Leah's brother dies in a car accident, she vows revenge on the doc who failed to save him.",0,0,The Perfect Wife,en +37789,R.O.D - Read or Die,2001-05-23,99.0,,,tt0368197,,A young female agent with a powerful psionic power over paper must stop a plot for world destruction.,0,0,R.O.D リード・オア・ダイ,ja +86154,La Fuga,2001-05-24,117.0,,,tt0281870,La libertad es un instinto irresistible.,"In the summer of 1928, several inmates from the National Penitentiary in Buenos Aires managed to escape. The film narrates the fate of each of these runaways in search of their destiny - tough men with their own ethical codes and ready to do anything not to return to prison. Some of them will suffer violent deaths, while others manage de disappear. Sordid and moving stories, not excluding tenderness and love, mercy or horror sealed with a pact of prison love that will remain in the heart of Buenos Aires, as witness of the yearned-for freedom.",0,0,La Fuga,en +197723,Lotte Reiniger: Homage to the Inventor of the Silhouette Film,2001-11-19,0.0,,,tt0471239,,Follows the life and work of animator Lotte Reiniger.,0,0,Lotte Reiniger: Homage to the Inventor of the Silhouette Film,en +210068,Mujhe Kucch Kehna Hai,2001-05-25,137.0,,,tt0284328,,"Karan who is weak in his studies but good at music and masti which always results in fighting with his father, but his life changes when he sees the girl of his dreams. Everywhere he sees her he follows her but one day he goes out of town to find her but couldn't. Later his father sents him to another city but his car breaks down and takes lift and finds it's the same girl whos name is Pooja.",0,0,मुझे कुछ कहना है,hi +60498,The Legend of the Candy Cane,2001-06-01,45.0,,,tt0325725,,The Legend of the Candy Cane,0,0,The Legend of the Candy Cane,en +10865,Atlantis: The Lost Empire,2001-06-02,95.0,http://www.disney.com/atlantis,100965,tt0230011,Atlantis is waiting...,"The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea.",120000000,186053725,Atlantis: The Lost Empire,en +18836,The Quickie,2001-06-04,99.0,,,tt0247645,,"A crime soap opera about a Russian mobster retiring from ""the business"" on New Year's Eve, only to discover he has been targeted for death by a rival mobster.",3000000,0,The Quickie,en +109472,The Girl,2001-06-06,0.0,,,tt0289175,,,0,0,Ek Je Aachhe Kanya,en +63958,Down House,2001-06-06,80.0,,,tt0255958,,"The plot is set in modern Moscow, in the 1990s, with ""New Russians"", Hummer H1 SUVs, bribery, violence, truck fulls of tinned stew as a dowry, etc.",0,0,Даун Хаус,ru +48601,Clement,2001-06-06,139.0,,,tt0284970,,"Benoit turns 13 and develops an intense crush on his godmother, Marion. As they lie on beaches in the summer, she humors him by talking about the mysteries of women.",0,0,Clément,fr +56934,Bride of the Wind,2001-06-08,99.0,,,tt0212827,,"A biopic of Alma Mahler, the wife of composer Gustav Mahler (as well as Walter Gropius and Franz Werfel), and the mistress of Oskar Kokoschka.",0,0,Bride of the Wind,en +157676,The Creators of the Shopping Worlds,2001-06-11,72.0,,,tt0326115,,A look at how mall producers design malls in order to maximise traffic and sales.,0,0,Die Schöpfer der Einkaufswelten,de +1995,Lara Croft: Tomb Raider,2001-06-11,100.0,,2467,tt0146316,Born into Wealth. Groomed by the Elite. Trained for Combat.,"English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.",115000000,274703340,Lara Croft: Tomb Raider,en +149154,A Place in the World,2001-06-12,126.0,,,tt0288624,,The film describes the life of homeless people who form a community in the center of modern-day Moscow. It relates the story of six couples who love each other and try to remain together despite the poverty and despair of their existence.,0,0,Место на земле,ru +132422,Stealing Time,2001-06-17,103.0,,,tt0251370,,"Four friends reuniting a year after college, each of them now dealing with their own problems. They ultimately come up with a solution: rob a bank.",0,0,Stealing Time,en +18088,Late Night Shopping,2001-06-22,91.0,,,tt0250491,,"Four friends Sean, Vincent, Lenny and Jody find themselves at something of a deadend. Trapped in a twilight world of permanent night shift work, they hang out together in the local cafe, drinking coffee and entertaining themselves by observing Vincent's unwavering success in pulling women. There seems to be little prospect of change...until Vincent accidently sleeps with Sean's girlfriend.",0,0,Late Night Shopping,en +40624,In the Shadows,2001-06-24,105.0,,,tt0247427,Hitman. Stuntman. Dead man.,"When a stunt man dies in Miami, his uncle, a New York mob boss, sends a hit man to tail the stunt coordinator, whom the boss wants dead. The hit man, Eric O'Bryne, gets close to his mark's daughter, and through her he asks her dad to teach him to do stunts. While waiting for the word to kill this mentor, Eric discovers the joy of stunt work and of being part of a family. Meanwhile, several people are looking for the dead man's briefcase of money and a cloth bag of illegal drugs that he stole from an undercover FBI agent now desperate to get the borrowed drugs back to the bureau. The stunt coordinator says that 'we dance in the shadows of death.' Can Eric step out into the sun?",0,0,In the Shadows,en +10691,Crazy/Beautiful,2001-06-29,99.0,,,tt0250224,When it's real. When it's right. Don't let anything stand in your way.,"At Pacific Palisades High, a poor Latino falls hard for a troubled girl from the affluent neighborhood.",13000000,16929123,Crazy/Beautiful,en +4248,Scary Movie 2,2001-07-04,83.0,,4246,tt0257106,No More Mercy. No More Shame. No More Sequels - Honest! - We Lied.,"While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called ""Hell House,"" and murderous high jinks ensue.",45000000,141220678,Scary Movie 2,en +10992,Cats & Dogs,2001-07-04,87.0,http://catsanddogsmovie.warnerbros.com/cmp/main.html,87014,tt0239395,Things Are Gonna Get Hairy!,"When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.",60000000,93375151,Cats & Dogs,en +2140,Kiss of the Dragon,2001-07-06,98.0,,,tt0271027,Kiss Fear Goodbye,"Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.",25000000,64437847,Kiss of the Dragon,en +8366,Manitou's Shoe,2001-07-11,87.0,,,tt0248408,,"Abahachi, Chief of the Apache Indians, and his blood brother Ranger maintain peace and justice in the Wild West. One day, Abahachi needs to take up a credit from the Shoshone Indians to finance his tribe's new saloon. Unfortunately Santa Maria, who sold the saloon, betrays Abahachi, takes the money and leaves. Soon, the Shoshones are on the warpath to get their money back, and Abahachi is forced to organize it quickly.",0,0,Der Schuh des Manitu,de +15745,Made,2001-07-13,94.0,,,tt0227005,Welcome to disorganized crime.,Two aspiring boxers lifelong friends get involved in a money-laundering scheme through a low-level organized crime group.,5000000,5476060,Made,en +251544,The Secret Pact,2001-07-16,94.0,,,tt0156859,,"After witnessing the killing of his parents, a young teenage boy is put in a witness relocation program and sent to a boarding school in Canada to start a new life. He soon befriends a fellow student whom is a hit man looking for him.",0,0,The Secret Pact,en +129,Spirited Away,2001-07-20,125.0,http://movies.disney.com/spirited-away,,tt0245429,The tunnel led Chihiro to a mysterious town...,A ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?,15000000,274925095,千と千尋の神隠し,ja +14752,Dil Chahta Hai,2001-07-24,183.0,http://www.excelmovies.com/,,tt0292490,Welcome to a summer of their lives you will never forget.,"Three inseparable childhood friends are just out of college. Nothing comes between them - until they each fall in love, and their wildly different approaches to relationships creates tension.",2079000,4099000,Dil Chahta Hai,en +66668,The Shrink Is In,2001-08-01,87.0,,,tt0201394,This Girl Needs More Than 60 Minutes!,A young woman impersonates a shrink to win over her Prince Charming.,6000000,0,The Shrink Is In,en +48843,The Barber,2001-08-01,94.0,,,tt0280462,Darkness can do strange things to a man,"A weary town faces a long, dark winter.",0,0,The Barber,en +45949,The Days Between,2001-08-01,118.0,,,tt0276216,,"Lynn (22) lives with her brother in Berlin. There she enjoys the advantages of family life, without really feeling involved in it. She does not have any precise aim in life, but manages to awaken the interest of many people with her direct and spontaneous character. Her boyfriend David is very different: he is entirely engrossed in his very disciplined swimming training for the world championships. David does not intend to allow himself to be distracted by the complicating factors of a relationship with Lynn. When Lynn, working behind the till of restaurant, meets the Japanese student Koji, everything gets more complicated. They can't exchange many words, but it is soon clear that their moments together mean a lot to both of them.",0,0,In den Tag hinein,de +59297,Princess Arete,2001-08-01,104.0,http://www.arete.jp/index.html,,tt0306474,,"Imprisoned by a sorcerer who fears she will rob him of eternal life, guileless young Princess Arete befriends a villager who helps her plan an escape.",0,0,アリーテ姫,ja +86126,A Cab for Three,2001-08-02,90.0,,,tt0291507,,,0,0,Taxi Para 3,es +79833,The Infinite Worlds of H.G. Wells,2001-08-05,88.0,,,tt0280770,H.G. Wells foresaw the future in such visionary novels as The Time Machine and The War of the Worlds...,"H.G. Wells foresaw the future in such visionary novels as The Time Machine and The War of the Worlds. On a night in London in 1946, newspaper reporter Ellen McGillivray arrives at the home of legendary literary figure, Herbert George Wells. Expecting to hear of the events and people who formed his prophetic imagination, she is informed of a world in which known scientific boundaries no longer exist. It begins a half-century earlier at London's Imperial College of Science where Wells meets Jane Robbins, a scientist equally fascinated by unnatural phenomenon, and a woman who immediately captures Wells' heart. To Wells' surprise, Ellen accepts his outlandish tales of traveling through time. What Ellen is about to discover is that at the heart of the mysterious orb is buried the equally mysterious heart of Jane Robbins, the one who inspired H.G. Wells to tell the amazing truth in the form of science ""fiction.""",0,0,The Infinite Worlds of H.G. Wells,en +9677,Forklift Driver Klaus: The First Day on the Job,2001-08-08,10.0,http://www.staplerfahrerklaus.de/,,tt0289477,,Short film depicting a fictional educational film about fork lift truck operational safety. The dangers of unsafe operation are presented in gory details.,0,0,Staplerfahrer Klaus - Der erste Arbeitstag,de +32577,The Parole Officer,2001-08-10,93.0,,,tt0283534,Fighting crime the only way he knows how. Badly.,A hapless parole officer is framed for murder by a crooked police chief. To prove his innocence he must entice his former clients away from the law abiding lives they are now living to recover the evidence that will save him.,0,0,The Parole Officer,en +128625,Rudyland,2001-08-10,0.0,,,tt0288203,,,0,0,Rudyland,en +10972,Session 9,2001-08-10,100.0,,,tt0261983,Fear is a place.,Tensions rise within an asbestos cleaning crew as they work in an abandoned mental hospital with a horrific past that seems to be coming back.,1500000,373967,Session 9,en +137491,Snow in August,2001-08-12,104.0,,,tt0262776,"In a world filled with hatred, their only hope was magic. Believe and anything can happen.","In a world filled with hatred, their only hope was magic. Believe and anything can happen.",0,0,Snow in August,en +71147,The Triangle,2001-08-13,92.0,,,tt0271237,"In the Bermuda Triangle, nothing stays lost forever",This made-for-TV movie follows a group of friends as they try to find a boat lost for 50 years in the Bermuda Triangle.,0,0,The Triangle,en +51167,According to Spencer,2001-08-15,94.0,,,tt0272440,,"According to Spencer, She's the one... Everyone else thinks so too!",0,0,According to Spencer,en +144580,Double Bang,2001-08-17,104.0,,,tt0251057,,An honest cop enters the dark world of murder and corruption.,0,0,Double Bang,en +13496,American Outlaws,2001-08-17,94.0,,,tt0244000,Sometimes the wrong side of the law is the right place to be.,"When a Midwest town learns that a corrupt railroad baron has captured the deeds to their homesteads without their knowledge, a group of young ranchers join forces to take back what is rightfully theirs. They will become the object of the biggest manhunt in the history of the Old West and, as their fame grows, so will the legend of their leader, a young outlaw by the name of Jessie James.",35000000,13678913,American Outlaws,en +155765,Gensomaden Saiyuki Requiem: For the One Not Chosen,2001-08-18,95.0,,,tt0877335,,"The Sanzo party has always been haunted by the past. And they've always been able to deal with their ghosts. But when they enter the House Of Dougan, they may have met their match. Lured to the mysterious shrine by a beautiful girl, Sanzo, Goku, Gojyo, and Hakkai become ensnared in a trap of dangerous shikigami, murderous doppelgangers, and a malevolent monster who has destroyed his own soul for a demented purpose. Don't miss this stunningly animated full-length motion picture, starring the coolest cast of demon hunters in the history of anime!",0,0,幻想魔伝 最遊記 Requiem 選ばれざる者への鎮魂歌,ja +13777,He Died with a Felafel in His Hand,2001-08-30,107.0,,,tt0172543,,"A search for love, meaning and bathroom solitude. Danny goes through a series of shared housing experiences in a succession of cities on the east coast of Australia. Together these vignettes form a narrative that is surprisingly reflective.",0,0,He Died with a Felafel in His Hand,en +52784,His and Hers,2001-09-02,96.0,,,tt0268346,,"Johan and Anna-Karin have been a couple for years but despite many attempts, Anna-Karin doesn't get pregnant. A visit to a fertility clinic shows why: Johan's sperm quality is too low. Johan is waiting to take over his father's farm, but what's the point if they can never have children? The news also puts a strain on their relationship since Anna-Karin desperately wants to be a mother.",0,0,Hans och hennes,en +15486,The Bank,2001-09-06,104.0,,,tt0241223,Power. Corruption. Revenge.,"The Bank, a world ripe with avarice and corruption, where O'Reilly and his ilk can thrive and honest Aussie battlers lose everything. Enter Jim Doyle a maverick mathematician who has devised a formula to predict the fluctuations of the stock market. When he joins O'Reilly's fold, he must first prove his loyalty to the ""greed is good"" ethos. Which way will he go? What does he have to hide?",0,0,The Bank,en +61552,Julietta,2001-09-06,95.0,,,tt0248123,,A dramatic teenage love story set against the backdrop of the Berlin Love Parade.,0,0,Julietta,de +11370,The Musketeer,2001-09-07,104.0,,,tt0246544,As you've never seen it before.,"In Peter Hyams's adaptation of the famous Alexander Dumas story The Three Musketeers, the young D'Artagnan seeks to join the legendary musketeer brigade and avenge his father's death - but he finds that the musketeers have been disbanded.",40000000,27053815,The Musketeer,en +11313,Hearts in Atlantis,2001-09-07,101.0,,,tt0252501,What if one of life's great mysteries moved in upstairs?,A widowed mother and her son change when a mysterious stranger enters their lives.,31000000,24185781,Hearts in Atlantis,en +46943,The Point Men,2001-09-07,100.0,,,tt0254703,It takes one to kill one.,"Some time after their botched operation to capture a known Palestinian terrorist, a team of Israeli agents starts to get killed off one by one. Their leader must get to the bottom of things before the killer(s) plan is complete.",0,0,The Point Men,en +87481,Quitting,2001-09-07,114.0,,,tt0298238,,An actor becomes increasingly introverted and psychotic and his entire family attempts to intervene.,0,0,昨天,zh +30379,Megiddo: The Omega Code 2,2001-09-07,104.0,,122947,tt0263728,"In The Beginning, The End Had A Name.",Stone (the Antichrist) becomes President of the European Union and uses his seat of power to dissolve the United Nations and create a one world government called the World Union.,0,0,Megiddo: The Omega Code 2,en +44793,Soft Shell Man,2001-09-07,0.0,,,tt0284214,,An emotionally immature underwater photographer returns home to an affair with his best friend's deaf girlfriend and unresolved issues with the wife he left six months before.,0,0,Un crabe dans la tête,fr +16229,Prozac Nation,2001-09-08,95.0,,,tt0236640,Pledge allegiance. Life's a drag.,"Elizabeth is on the verge of losing her grip on life after she leaves her emotionally fraught home to start college. Quickly, her life takes a turn for the worse: She clashes with her roommate and decides her boyfriend, Rafe, is her sole salvation. Her psychiatrist prescribes Prozac … but is that her only choice?",0,0,Prozac Nation,en +200311,Much Ado About Something,2001-09-08,70.0,,,tt0298072,,Did Christopher Marlowe write the works of Shakespeare?,0,0,Much Ado About Something,en +8342,No Man's Land,2001-09-08,98.0,,,tt0283509,,"Two soldiers from opposite sites get stuck between the front lines in the same trench. The UN is asked to free them and both sides agree on a ceasefire, but will they stick to it?",1012153,0,No Man's Land,bs +33333,Blue Spring,2001-09-10,83.0,,,tt0309291,,"Soon after being named the new leader of his high school's gang system, Kujo grows bored with the violence and hatred that surround him. He wants desperately to abandon his post… but his once-enviable position of power has a strange way of making him feel powerless.",0,0,青い春,ja +35651,Time Out,2001-09-10,134.0,,,tt0279065,,An unemployed man finds his life sinking more and more into trouble as he hides his situation from his family and friends.,0,0,L'emploi du temps,fr +284096,Cet Amour-là,2001-09-11,100.0,,,tt0277622,,"Cet Amour-là is an intimate portrait of a legendary love affair. Set against the beauty of the Breton seaside, it is also a film that revels in the insights that Marguerite Duras' writing affords.",0,0,Cet Amour-là,en +220515,Queenie in Love,2001-09-11,,,,tt0285963,,,0,0,Queenie in Love,fr +276220,The Price of Forgiveness,2001-09-12,0.0,,,tt0305884,,Mythical story about a fishing village on the south coast of Senegal. Two men in the village are both in love with the same beautiful girl.,0,0,Ndeysaan,es +200813,The Blue Planet,2001-09-12,400.0,http://www.bbc.co.uk/programmes/b008044n,,tt0296310,,"The Blue Planet, the definitive exploration of the Earth's final frontier is now over. From the deep to the shore, from pole to pole it revealed extraordinary life and behaviour that had never before been filmed. In some cases the species were only recently known to scientists.The series took almost five years to make, involving nearly 200 filming locations. The fact that most of the ocean environment remains a mystery presented the production team with many challenges. Besides witnessing animal behaviour for the first time, the crew also observed some that were new to science. The producers were helped by marine scientists all over the world with state of the art equipment.",0,0,The Blue Planet,en +14782,The Unsaid,2001-09-14,111.0,,,tt0258967,,A doctor dealing with the aftermath of his son's death tries to help a troubled young man.,0,0,The Unsaid,en +7454,The Bunker,2001-09-14,95.0,,,tt0252963,,"In 1944, in the Belgian - German border, seven German soldiers survive an American attack in the front and lock themselves in a bunker to protect the position. Under siege by the enemy and with little ammunition, they decide to explore underground tunnels to seek supplies and find an escape route. While in the tunnel, weird things happen with the group.",0,0,The Bunker,en +275136,VeggieTales: The Ultimate Silly Song Countdown,2001-09-15,43.0,http://veggietales.com/,,tt0297450,,"The Pirates Who Don't Do Anything present the 10 most popular Silly Songs, as tabulated on the VeggieTales website, with the addition of one new song.",0,0,VeggieTales: The Ultimate Silly Song Countdown,en +60608,How I Killed My Father,2001-09-19,98.0,,,tt0268219,,"When his long-time disappeared father is entering his life again, Jean-Luc, a successful doctor, has no option but to face his own life story. Will he ever be able to forget and forgive?",0,0,Comment j'ai tué mon père,en +73981,Ayurveda: Art of Being,2001-09-20,101.0,,,tt0221809,,"Ayurveda is a science of life and a healing art, where body, mind and spirit are given equal importance. This voyage of thousands of miles across India and abroad takes you on a unique poetic journey, where we encounter remarkable men of medicine or simply a villager who lives in harmony with nature. ""Hope is nature's way of enabling us to survive so that we can discover nature itself.""",300000,2074000,Ayurveda: Art of Being,en +10696,Glitter,2001-09-21,104.0,,,tt0118589,"In music she found her dream, her love, herself.",Similar to Mariah's life story. Mariah plays the role of a young singer who is eager to become a big star. She dates a DJ who helps her get into the music business.,22000000,5271666,Glitter,en +67272,Känd från TV,2001-09-21,101.0,,,tt0271031,,,0,0,Känd från TV,sv +80648,Heart of Stone,2001-09-26,90.0,,,tt0257750,,A beautiful woman doesn't know if the killer is her lover ... or her husband ... or someone else!,0,0,Heart of Stone,en +54356,Emmauksen tiellä,2001-09-26,,,,tt0298317,,,0,0,Emmauksen tiellä,fi +64481,The Officers' Ward,2001-09-26,135.0,,,tt0273148,,"The first days of WWI. Adrien, a young and handsome lieutenant, is wounded by a piece of shrapnel. He will spend the entire wartime at the Val-de-Grâce Hospital, in Paris. Five long years, and his life will change forever...",0,0,La Chambre des Officiers,fr +26165,Mad Love,2001-09-28,115.0,,,tt0270480,,"The love story who transformed Juana I de Castilla, Queen of Spain, into Juana ""The mad"". The tragic fate of a Queen madly in love to an unfaithful husband, Felipe el Hermoso, Archduke of Austria.",4800000,0,Juana la loca,es +12103,Don't Say a Word,2001-09-28,113.0,,,tt0260866,...I'll never tell.,"When the daughter of a psychiatrist is kidnapped, he's horrified to discover that the abductors' demand is that he break through to a post traumatic stress disorder suffering young woman who knows a secret..",50000000,100020092,Don't Say a Word,en +95453,One Fine Spring Day,2001-09-28,106.0,http://www.springday.co.kr,,tt0295192,,A recording engineer falls for a radio announcer after they work together to capture sounds of the natural world.,0,0,봄날은 간다,ko +10829,Tremors 3: Back to Perfection,2001-10-02,104.0,,91799,tt0259685,The Food Chain Just Grew Another Link.,"Burt Gummer returns home to Perfection, Nev., to find that the town of terror has become a theme park, and when the simulated giant worm attacks turn real, the survivalist must battle the creatures once again. Gummer pits his impressive knowledge of weaponry against the newest and deadliest generation of flesh-eating graboids, with help from two young entrepreneurs.",0,0,Tremors 3: Back to Perfection,en +49110,'R Xmas,2001-10-04,85.0,,,tt0217978,,"A New York drug dealer is kidnapped, and his wife must try to come up with the money and drugs to free him from his abductors before Christmas.",0,0,'R Xmas,en +11376,Swimming Pool,2001-10-04,89.0,,,tt0283027,Evil has surfaced.,"School's out, exams are over, and it's time for real life to begin. But before 12 friends from the International High School in Prague disappear to the four corners of the earth, they intend to throw the best party of their lives. The idea to stage the party in Prague's biggest swimming pool is illegal but cool. And when Gregor, the laid-back leader of the group thinks an idea is good, then no-one else from the group objects. But what begins as the night of all nights quickly turns into a life and death struggle, as the friends come to realise that death itself is on the guest list... A mysterious masked killer sets a hunt in motion that ranges through the facility's halls and corridors. As the kids panic it begins to dawn on them that the killer must be one of them...",0,0,Swimming Pool - Der Tod feiert mit,en +9084,The Little Polar Bear,2001-10-04,78.0,,9088,tt0293849,,"This charming animated adventure follows a young polar bear, Lars, as he befriends Robbie, a seal. Together, these two form a friendship that proves different breeds of animals can get along perfectly well.",0,0,Der kleine Eisbär,de +10866,Joy Ride,2001-10-05,97.0,,166378,tt0206314,"It was just a joke, just for fun.","Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.",23000000,36642838,Joy Ride,en +2034,Training Day,2001-10-05,122.0,,,tt0139654,"The only thing more dangerous than the line being crossed, is the cop who will cross it.","On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.",45000000,104876233,Training Day,en +9778,Serendipity,2001-10-05,90.0,,,tt0240890,Sometimes True Love Can Have More Than One Face.,"Although strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter – but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another again.",28000000,77516304,Serendipity,en +9428,The Royal Tenenbaums,2001-10-05,110.0,,,tt0265666,"Family isn’t a word, it’s a sentence.",An estranged family of former child prodigies reunites when their father announces he has a terminal illness.,21000000,71441250,The Royal Tenenbaums,en +21325,Onmyoji: The Yin Yang Master,2001-10-06,112.0,,,tt0355857,,"During a dark time in the Heian period, when evil forces threaten the kingdom, the emperor relies on the Onmyoji to keep the supernatural forces in line. But as political events become highly charged, friction within the order leads to betrayal. Now, Seimei (Mansai Nomura), a talented member of the clan, must face down his master, Doson (Hiroyuki Sanada), in the hopes of restoring peace to the kingdom.",0,0,Onmyoji,ja +15601,Scooby-Doo! and the Cyber Chase,2001-10-09,75.0,,,tt0290057,,"Scooby-Doo and the gang are trapped into a video game! So they follow up to Scooby Snacks to the last level and they met the cyber gang who just look like themselves. So, the cyber gang decided to help the gang to defeat the phantom virus.",0,0,Scooby-Doo! and the Cyber Chase,en +105287,Super 8 Stories,2001-10-10,0.0,,,tt0278069,,,0,0,Super 8 Stories,fr +34205,Halloweentown II: Kalabar's Revenge,2001-10-12,81.0,,87252,tt0274761,Your Favorite Witches Are Back!,"The Cromwell clan live in the real world, except for their grandmother who lives in Halloweentown, a place where monsters go to escape reality. But now the son of the Cromwells' old enemy Kalabar has a plan to use the grandmother's book to turn Halloweentown into a grey dreary version of the real world, while transform the denizens of the real world into monsters.",0,0,Halloweentown II: Kalabar's Revenge,en +3172,Bandits,2001-10-12,123.0,,,tt0219965,"Two's company, three's a crime.",Two bank robbers fall in love with the girl they've kidnapped.,75000000,67631903,Bandits,en +17708,Corky Romano,2001-10-12,86.0,,,tt0250310,Undercover and Out The Way!,"Corky Romano is a bumbling, simpleton, veterinarian and the youngest, outcast son of an aging gangster, named Pops Romano, who calls upon Corky to infiltrate the local FBI and retrieve and destroy evidence being used to incriminate Pops for racketeering charges.",11000000,23978402,Corky Romano,en +125842,Shot in the Heart,2001-10-13,98.0,,,tt0294918,He was worth more dead than he ever was alive... but not to me. I was Gary Gilmore's brother.,"AND YOU'RE TO BLAME! Honey, you give love a bad name. (The story of a man coming to terms with the sins and secrets of his notorious brother and, in the process, exploring the legacy of violence in his own family.)",0,0,Shot in the Heart,en +232462,Styx,2001-10-15,93.0,,,tt0250756,They had the perfect plan. Just one thing was missing - Trust.,"Nelson puts his criminal ways behind him, having spent years as a first-rate safecracker. This resolution lasts until his brother finds himself owing money to organised crime and Nelson needs to do one last big job, with a few other professionals.",0,0,Styx,en +10645,The Slurb,2001-10-17,100.0,,147669,tt0265691,,No overview found.,0,0,Das Sams,en +2100,The Last Castle,2001-10-19,131.0,,,tt0272020,A Castle Can Only Have One King,A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.,72000000,27642707,The Last Castle,en +11091,Riding in Cars with Boys,2001-10-19,132.0,,,tt0200027,One day can make your life; one day can ruin your life. All life is is four or five big days that change everything.,"A single mother, with dreams of becoming a writer, has a son at the age of 15 in 1965, and goes through a failed marriage with the drug-addicted father.",48000000,35743308,Riding in Cars with Boys,en +14543,The Matrix Revisited,2001-11-19,123.0,,,tt0295432,,The film goes behind the scenes of the 1999 sci-fi movie The Matrix.,0,0,The Matrix Revisited,en +37959,GO,2001-10-20,122.0,,,tt0299937,,"Isao Yukisada spins this gritty coming-of-age tale about Sugihara, a Japanese-born, third-generation Korean who struggles to find a place in a society that will not accept him. The film begins with Sugihara studying at a Korean junior high school that is dedicated to memory of North Korean leader Kim Jong Il. His father is a grizzled ex-boxer who recently changed his citizenship from North to South Korea so he and his wife – Sugihara's mom – could visit Hawaii. Though his father regularly gets drunk and thrashes him, he also taught Sugihara the finer point of the sweet science. At one point in the film, Sugihara takes out an entire basketball team that was bent on taking him out. Upon graduation, Sugihara enters a normal Japanese high school where he meets and soon falls for Sakurai – a loose-sock copper-haired damsel who is attracted to Sugihara's restless spirit. As the film progresses, Sugihara struggles to throw off the stigma of his ethnicity and live a quiet, successful life.",0,0,GO,ja +167,K-PAX,2001-10-22,120.0,http://www.k-pax.com/,,tt0272152,Change the way you look at the world.,"Prot is a patient at a mental hospital who claims to be from a far away Planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.",48000000,50315140,K-PAX,en +11380,Bones,2001-10-24,96.0,,,tt0166110,"This Halloween, unleash the Dogg.","Over 20 years after his death by a gunshot, Jimmy Bones comes back as a ghost to wreak revenge on those who killed him and to clean up his neighborhood.",10000000,7316658,Bones,en +374698,Vallen,2001-10-24,,,,tt0272087,,,0,0,Vallen,nl +9648,The Man Who Sued God,2001-10-25,97.0,,,tt0268437,,"A lawyer becomes a fisherman from frustration. When his one piece of property, his boat, is struck by lightning and destroyed he is denied insurance money because it was “an act of God”. He re-registers as a lawyer and sues the insurance company and, as God’s representative, The Church.",0,0,The Man Who Sued God,en +33557,Daddy and Them,2001-10-26,101.0,,,tt0166158,,"When an uncle is charged with murder, the event reverberates throughout a poor Arkansas family, including a struggling musician and his wife, her mother, her sister, and his father.",0,0,Daddy and Them,en +149469,Carne de gallina,2001-10-26,0.0,,,tt0312525,,,0,0,Carne de gallina,es +12720,Suicide Club,2001-10-29,99.0,,,tt0312843,"Well then, goodbye everybody.","When 54 high school girls throw themselves in front of a subway train it appears to be only the beginning of a string of suicides around the country. Does the new all-girl group Desert have anything to do with it? Detective Kuroda tries to find the answer, which isn't as simple as he had hoped.",0,0,自殺サークル,ja +11456,Domestic Disturbance,2001-10-30,89.0,,,tt0249478,He will do anything to protect his family.,A divorced father discovers that his 12-year-old son's new stepfather is not what he made himself out to be.,75000000,54249294,Domestic Disturbance,en +2110,Wasabi,2001-10-31,94.0,,,tt0281364,For those who take their action raw.,"Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.",15300000,0,Wasabi,fr +61473,Race to Space,2001-10-31,104.0,,,tt0167360,Together they surprised America and made history.,In the 1960s a young woman works at NASA as an animal trainer responsible for the chimpanzee who will go into space.,0,0,Race to Space,en +11553,Millennium Mambo,2001-10-31,119.0,http://www.ocean-films.com/millenniummambo/,,tt0283283,,"Taipei. A voice off-camera looks back ten years to 2000, when Vicky was in an on-again off-again relationship with Hao-Hao...",0,0,千禧曼波,zh +211,Berlin is in Germany,2001-11-01,90.0,,,tt0276820,,Berlin is in Germany is a tragic comedy in which an ex-prisoner from east Berlin must find his place in the newly united city. From Director Hannes Stöhr.,0,0,Berlin is in Germany,de +286369,Gabriel & Me,2001-11-01,84.0,,,tt0249624,,A young boy believes he can save his dying father if he can become an angel.,0,0,Gabriel & Me,en +9889,Shallow Hal,2001-11-01,114.0,,,tt0256380,Are You A Shallow Guy?,"A shallow man falls in love with a 300 pound woman because of her ""inner beauty"".",40000000,141069860,Shallow Hal,en +81220,Everything Put Together,2001-11-02,87.0,,,tt0228277,,Everything Put Together is a 2000 film directed by Marc Forster starring Radha Mitchell and Megan Mullally.,500000,0,Everything Put Together,en +10796,The One,2001-11-02,87.0,,,tt0267804,Stealing the power of the universes one by one.,A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.,49000000,72700000,The One,en +5279,Gosford Park,2001-11-07,137.0,,,tt0280707,Tea at four. Dinner at eight. Murder at midnight.,"Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.",19800000,87754044,Gosford Park,en +22615,Kiss Kiss (Bang Bang),2001-11-07,101.0,,,tt0228488,,No overview found.,0,0,Kiss Kiss (Bang Bang),en +79048,C'est la vie,2001-11-07,0.0,,,tt0260198,,,0,0,C'est la vie,fr +16550,Storytelling,2001-11-08,87.0,,,tt0250081,From the director of Happiness and Welcome To The Dollhouse.,College and high school serve as the backdrop for two stories about dysfunction and personal turmoil.,0,0,Storytelling,en +70815,Caramuru: The Invention of Brazil,2001-11-09,85.0,,,tt0298786,,"Diogo Álvares, a Portuguese map illustrator, reaches the Brazilian coast, after his caravel sinks. He is saved by the Indian chief Itaparica and his two daughters, Paraguaçu and Moema. They call him Caramuru and together they engage in a happy love triangle. But the chance to return to Portugal arises, and it is clear this amoral arrangement cannot last.",0,0,Caramuru: A Invenção do Brasil,pt +57278,The Hexer,2001-11-09,130.0,http://www.wiedzmin.com.pl/,,tt0300657,,The TV series and the film were loosely based on Andrzej Sapkowski's book series The Witcher (Wiedźmin).,4600000,0,Wiedźmin,en +235199,We Stand Alone Together,2001-11-10,78.0,,,tt0302022,,"Compiled over two years, an 'on-camera oral history' of Easy Company, told by the veterans themselves. Accompanies the mini-series Band of Brothers.",0,0,We Stand Alone Together,en +327083,The Victoria's Secret Fashion Show 2001,2001-11-15,50.0,,,tt0300611,,,0,0,The Victoria's Secret Fashion Show 2001,es +26014,Good Advice,2001-11-15,93.0,,,tt0243931,,An investment banker loses everything and must discover what's important in life.,0,0,Good Advice,en +13408,The Wash,2001-11-16,93.0,,,tt0290332,"When you're down 'n dirty, it all comes out in...","With the rent due and his car booted, Sean (Dr. Dre) has to come up with some ends...and fast. When his best buddy and roommate Dee Loc (Snoop Dogg), suggests that Sean get a job busting suds down at the local car wash.",7000000,10229331,The Wash,en +52655,Shooters,2001-11-17,71.0,,,tt0328420,Makes most British gangster films look like the teletubbies,English gangster flick.,0,0,Shooters,en +146679,Backyard Dogs,2001-11-20,96.0,,,tt0241218,"For the fame and the fortune, they'll fight like dogs",Two teenage boys aspire to win a backyard wrestling championship and a chance to appear on a national TV show.,0,0,Backyard Dogs,en +2029,Tanguy,2001-11-21,108.0,,,tt0274155,,No overview found.,0,0,Tanguy,en +14369,Out Cold,2001-11-21,89.0,,,tt0253798,"They haven't quite figured it all out, but they're getting a little warmer.","Animal House meets Casablanca in this outrageous snowboarding comedy. Rick Rambis and his friends are having the time of their lives on Bull Mountain until the legendary Papa Muntz' son decides to sell the mountain to sleazy land developer John Majors, having the staff fired and turning Bull Mountain into 'Yuppieville'.",24000000,14782676,Out Cold,en +1999,In the Bedroom,2001-11-23,130.0,,,tt0247425,A young man. An older woman. Her ex-husband. Things are about to explode...,"Summertime on the coast of Maine, ""In the Bedroom"" centers on the inner dynamics of a family in transition. Matt Fowler is a doctor practicing in his native Maine and is married to New York born Ruth Fowler, a music teacher. He is involved in a love affair with a local single mother. As the beauty of Maine's brief and fleeting summer comes to an end, these characters find themselves in the midst of unimaginable tragedy.",1700000,0,In the Bedroom,en +38874,Don't Tempt Me,2001-11-30,95.0,,,tt0284491,"Heaven and hell are on Earth, and they're wearing heels.","Two angels, one from the heaven and one from the hell, come to earth to save the soul of a boxer.",1200000,0,Sin noticias de Dios,es +17007,Call Me Claus,2001-12-02,90.0,,,tt0272018,,"If She's Going To Save Christmas, She's Got Some Big Shoes To Fill.",0,0,Call Me Claus,en +210739,Maniacts,2001-12-06,92.0,,,tt0285698,,"Two serial killers meet and fall in love in an asylum for the criminally insane. Upon escaping their corrupt captors, they flee to the country to try and lead a happy, normal life. Unfortunately, ""normal"" turns out to be a state of mind...an elusive state of mind.",0,0,Maniacts,en +42182,Octopus 2: River of Fear,2001-12-06,91.0,,,tt0273907,Above and below the water there is no escape,"Dead bodies are being found in New York harbor. The police have no clues nor suspects until Nick and his colleague realize the killer is a giant octopus. Everybody, especially the police captain, refuses to believe Nick's story, and soon the harbor will be filled with boats for the 4th of July celebrations.",0,0,Octopus 2: River of Fear,fr +25797,Miss Minoes,2001-12-06,86.0,,,tt0279231,always listen to your felines,A cat who turns into a young woman helps a journalist protect their town from a factory boss with an evil plan.,0,0,Minoes,nl +11397,Not Another Teen Movie,2001-12-07,89.0,,,tt0277371,They served you Breakfast. They gave you Pie. Now we’re gonna stuff your face.,"On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.",16000000,66468332,Not Another Teen Movie,en +103014,'Twas the Night,2001-12-07,84.0,,,tt0282223,,A mischievous 14-year-old boy and his irresponsible uncle almost ruin Christmas when they decide to take Santa's new high-tech sleigh for a joyride.,0,0,'Twas the Night,en +127286,Women Talking Dirty,2001-12-07,97.0,,,tt0180316,,"A lively, outspoken single mother develops an unlikely friendship with a shy cartoonist.",0,0,Women Talking Dirty,en +1903,Vanilla Sky,2001-12-10,136.0,,,tt0259711,"Forget everything you know, and open your eyes.","David Aames (Tom Cruise) has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia (Penelope Cruz), his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.",68000000,203388341,Vanilla Sky,en +35337,The Triumph of Love,2001-12-12,112.0,,,tt0253840,,"A princess is determined to restore her homeland's throne to its rightful heir, a young prince with whom she falls in love.",0,0,The Triumph of Love,en +11516,Winged Migration,2001-12-12,98.0,,,tt0301727,,"The cameras of Jacques Perrin fly with migratory birds: geese, storks, cranes. The film begins with spring in North America and the migration to the Arctic; the flight is a community event for each species. Once in the Arctic, it's family time: courtship, nests, eggs, fledglings, and first flight. Chicks must soon fly south. Bad weather, hunters, and pollution take their toll. Then, the cameras go",35866397,20217080,Le peuple migrateur,fr +11889,Iris,2001-12-14,91.0,,,tt0280778,,"True story of the lifelong romance between novelist Iris Murdoch and her husband John Bayley, from their student days through her battle with Alzheimer's disease.",0,0,Iris,en +36243,"Godzilla, Mothra and King Ghidorah: Giant Monsters All-Out Attack",2001-12-15,105.0,,374512,tt0279112,Who will survive!?,Three ancient guardian beasts awaken to protect Japan against Godzilla.,9400000,0,ゴジラ・モスラ・キングギドラ大怪獣総進撃,ja +6440,The Shipping News,2001-12-18,111.0,,,tt0120824,You'll never guess what you'll find inside...,An emotionally-beaten man with his young daughter moves to his ancestral home in Newfoundland to reclaim his life.,0,0,The Shipping News,en +120,The Lord of the Rings: The Fellowship of the Ring,2001-12-18,178.0,http://www.lordoftherings.net/,119,tt0120737,One ring to rule them all,"Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.",93000000,871368364,The Lord of the Rings: The Fellowship of the Ring,en +37254,Mermaid Chronicles Part 1: She Creature,2001-12-20,91.0,,,tt0274659,"Beatiful, seductive and totally deadly.","Two carnies (Sewell and Gugino) abduct a mermaid in Ireland, circa 1900, and decide to transport her to America. As their ship loses its way and heads towards the mythical Forbidden Islands, the mermaid begins to display its deadly side.",0,0,Mermaid Chronicles Part 1: She Creature,en +25801,Aamdani Atthanni Kharcha Rupaiya,2001-12-21,141.0,,,tt0305173,,"Jhoomri and her husband, Bhimsha, move into a new neighbourhood. Their immediate neighbours are three squabbling couples, namely Vijay and Anjali who are newly married; Appu Khote and Vimla, who are married and have 4 children; and Ravi and Meena, who are also married and have one child. With their wages unable to keep up with inflation and high cost of living, unable to pay even rent to the landlord, B.K. Kakkad, the wives decide to seek employment to augment their income, with hilarious results from their spouses, who will go to any extent to keep their wives at home, even if means to bring a dancing girl home to cook and look after the children!!",0,0,Aamdani Atthanni Kharcha Rupaiya,en +12205,Dark Water,2002-01-19,101.0,,,tt0308379,,A woman in the midst of an unpleasant divorce moves to an eerie apartment building with her young daughter. The ceiling of their apartment has a dark and active leak.,0,0,仄暗い水の底から,ja +125513,Slayers Premium,2001-12-22,30.0,,145553,tt0462717,,"Lina and Gourry visited the town in a certain beach. In that town, a mysterious incident which is that the person who had eaten the octopus was not able to speak the languages other than the octopus language happened frequently. And, Gourry who does not know the incident eats slices of raw octopus, and he cannot speak words other than the octopus language. Ameria and Zelgadiss who came there by chance are involved in the trouble, too and the fight with the clan of the octopus which lives in the beach starts.",0,0,スレイヤーズぷれみあむ,ja +141640,David Copperfield,2001-12-25,0.0,,,tt0238768,,An orphan with a rough childhood becomes a barrister.,0,0,David Copperfield,it +11232,Kate & Leopold,2001-12-25,118.0,,,tt0035423,If they lived in the same century they'd be perfect for each other.,"When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.",0,0,Kate & Leopold,en +45303,Running Out of Time 2,2001-12-27,95.0,,206072,tt0295578,,"Ho Sheung Sang finds himself wrapped up in another cat-and-mouse game, this time against a tricky magician.",0,0,暗戰 2,cn +20916,Style,2001-12-28,159.0,,,tt0306855,,"Style is a 2001 Bollywood low-budget film mostly regarded as a forgettable romantic-comedy caper by critics. Even though the movie was greatly criticized, it was a commercial success.",0,0,Style,hi +10950,I Am Sam,2001-12-28,132.0,,,tt0277027,love is all you need,"Sam has the mental capacity of a 7-year-old. He has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations start to become a problem and the authorities take her away. Sam shames high-priced lawyer Rita into taking his case pro bono and in turn teaches her the value of love and family.",22000000,92542418,I Am Sam,en +273,The White Sound,2001-12-31,107.0,http://www.dasweisserauschen.de/,,tt0276617,,"Lukas, a young schizophrenic man, has to deal with a new town, a new relationship, and the paranoia in his head.",250000,0,Das weisse Rauschen,de +31018,Path to War,2002-01-01,165.0,,,tt0218505,,From director John Frankenheimer ('The Manchurian Candidate') comes this powerful drama of soaring ambition and shattered dreams that takes a provocative insider's look at the way our country goes to war--as seen from inside the LBJ White House leading up to and during Vietnam.,0,0,Path to War,en +36211,Japón,2002-01-01,130.0,,,tt0322824,,"A painter from the big city goes to a remote canyon to commit suicide. To reach some calmness he stays at the farmstead of Ascen, an old religious woman. Although but a few words are spoken love grows.",250050,0,Japón,es +43743,Fabled,2002-01-01,84.0,,,tt0299863,There once was a wolf named Lupold...,"Joseph just broke up with his girlfriend and is not taking it very well. He thinks she is plotting against him with their mutual psychiatrist. His dog is missing and he suspects the people at work might be behind it. Then there is the unshakable guilt over his past. It just might all be bearable, somehow possible to live through, if it weren't for those damned 'monsters' that keep trying to kill him. Through an allegorical 'fable' that is told in parallel with Joseph's struggle, we are left to decide for ourselves in the end, who is the crow and who is the wolf., was someone out to get Joseph, was it a stroke of bad luck, or was it all in his head?",0,0,Fabled,en +40217,Terminal Invasion,2002-01-01,90.0,,,tt0322008,,"Aliens in human disguise commandeer a rural airport during a snowstorm. To survive, the people trapped inside must determine which of their own is not of this Earth.",0,0,Terminal Invasion,en +140595,Elaine Stritch: At Liberty,2002-01-01,140.0,,,tt0308213,Legendary performances come along so rarely.,Judy at the Palace. Sinatra at Carnegie Hall. Streisand at the Garden. Stritch on Broadway. Legendary performances come along so rarely.,300000,0,Elaine Stritch: At Liberty,en +31821,Now You Know,2002-01-01,102.0,,,tt0286855,,"On the eve of his bachelor party, a man learns his fiancee wants to call off the wedding. The unmarried couple returns to New Jersey to sort out their relationship.",380000,0,Now You Know,en +48488,Strange Invaders,2002-01-01,8.0,,,tt0296874,,Roger and Doris are a childless couple who get more than they bargained for when a strange child appears at their door one day.,0,0,Strange Invaders,en +45069,Hysterical Blindness,2002-01-01,99.0,,,tt0290664,They Said Love Is A Battlefield...They Were Right,"Set in the 1980's, Debby Miller (Uma Thurman) goes out in New Jersey looking for a man after she is diagnosed with ""hysterical blindness"".",0,0,Hysterical Blindness,en +158483,Mei and the Kittenbus,2002-01-01,13.0,,,tt0803038,,Mei has an adventure with a Kittenbus and her relatives. Totoro appears.,0,0,めいとこねこバス,ja +118658,10 Minutes,2002-01-01,10.0,,,tt0339976,,"10 minutes doesn't seem long to a Japanese tourist waiting for some photos in Rome, but a lot can happen in the same 10 minutes for a family in Sarajevo during the Bosnian War.",0,0,10 minuta,bs +27840,Mark of the Astro-Zombies,2002-01-01,86.0,,,tt0291330,,No overview found.,0,0,Mark of the Astro-Zombies,en +9939,The Chatroom,2002-01-01,0.0,,,tt0306877,,No overview found.,0,0,The Chatroom,en +44540,Virginia's Run,2002-01-01,103.0,,,tt0307639,,"A teenage girl, trying to come to grips with the death of her mother in a horse-riding accident, nurtures the foal of her mother's horse.",0,0,Virginia's Run,en +15303,Frozen Stiff,2002-01-01,90.0,,,tt0301634,,"The basic plot revolves around drug dealer Limeni (Tin Man) who is said to have no heart, and two men, Lemi and Kiza, who are trying to transport their dead grandfather for burial, until their car breaks down and they end up struggling to get him home onboard a train. This is when these two plots intersect and all hell breaks loose.",0,0,Mrtav 'ladan,sr +44233,P.S. Your Cat Is Dead!,2002-01-01,92.0,,,tt0245341,,"With his life already in shambles -- his girlfriend just dumped him, he's lost his acting gig, and his cat is seriously ill -- sad-sack Jimmy Zoole (Steve Guttenberg) comes home New Year's Eve to find a gay burglar (Lombardo Boyar) looting his apartment. Taking the intruder hostage, Jimmy threatens to unleash his pent-up rage on the would-be thief but instead begins to bond with his captive.",0,0,P.S. Your Cat Is Dead!,en +45441,DRIVE,2002-01-01,102.0,,,tt0297865,,A salaryman is hijacked by bank robbers.,0,0,ドライブ,ja +21801,The Slaughter Rule,2002-01-01,112.0,,,tt0266971,,"A young man finds solace with a young woman, his mother, and a high-school football coach who recruits him to quarterback a six-man team.",0,0,The Slaughter Rule,en +58918,Backflash,2002-01-22,90.0,,,tt0249378,There's Nothing Real In This... But The Money.,A woman is released from prison and heads home to help outwit a local mob boss and pull off the scam of a lifetime.,0,0,Backflash,en +23964,Slap Shot 2: Breaking the Ice,2002-01-01,104.0,,261526,tt0282171,It's a brand new game with brand new rules!,"With the original Hanson Brothers still on the same minor league ice hockey team, the Chiefs are sold to a new owner who gives them a female coach and puts them in a league in which they are to be regularly humiliated by an opposing Harlem Globetrotters-like team.",0,0,Slap Shot 2: Breaking the Ice,en +61939,The Three Marias,2002-01-01,0.0,,,tt0327201,,,0,0,As Três Marias,pt +32694,The Rutles 2: Can't Buy Me Lunch,2002-01-01,56.0,,255702,tt0318641,,"Twenty-three years after the release of the original Beatles mockumentary, 'The Rutles: All You Need Is Cash', famous artists, actors and musicians speak out on how The Rutles influenced them.",0,0,The Rutles 2: Can't Buy Me Lunch,en +26146,My Wrongs 8245-8249 And 117,2002-01-01,12.0,,,tt0340258,,"Adapted from a monologue in his ""Blue Jam"" radio series, Chris Morris' first short film is a haunting black comedy about a man who no longer uses his name because he's decided he's ceased to deserve one, and a dog called Rothko who says he is the man's lawyer. As reality bleeds into hallucination, Rothko decides to take the man for a walk...",0,0,My Wrongs 8245-8249 And 117,en +131907,God is on Air,2002-01-01,91.0,,,tt0268261,,"Two Spanish pan-handlers soon find themselves in over their heads when they stumble upon an opportunity to redeem themselves and perhaps the entire planet. The world appears to suffer from rampant poverty, violence and spiritual desperation and the relentless news media force-feeds these images to the Spanish people. A popular reality television show lets the audience decide between life or death for suspected felons, and one of the opportunistic pan-handlers attempts to escape poverty through this raucous and sensational TV program.",0,0,No somos nadie,es +292090,Face,2002-01-01,0.0,,,tt0293146,,"Genie, a Chinese-American teenager, develops feelings for a charming African-American DJ, but her grandmother forbids their romance forcing Genie to choose between family and love.",0,0,Face,en +43773,The Deserted Station,2002-01-01,88.0,,,tt0333645,,"On a pilgrimage to Mashad from Tehran, a couple's transportation breaks down, far from any major town. The husband, a photographer, seeks help at a nearby village and encounters a teacher who offers to help. Whilst the husband and teacher go off to find a spare part, the wife, who used to be a teacher, takes over the teaching lessons in the village. It is clear that the children live there, in this strange deserted place, without any men, save the teacher and an old signal guard. As the day draws on, the children help to bring a new hope and life into the wife's heart.",0,0,Istgah-Matrouk,fa +47115,A Gentleman's Game,2002-01-01,112.0,,,tt0260924,Sometimes lessons come from unexpected places,A drama revolving around characters whose lives are transformed one summer at an exclusive East Coast country club.,0,0,A Gentleman's Game,en +14108,The Weather Underground,2002-01-01,92.0,,,tt0343168,,"The remarkable story of The Weather Underground, radical activists of the 1970s, and of radical politics at its best and most disastrous.",0,0,The Weather Underground,en +16174,Snow Queen,2002-01-04,180.0,,,tt0210294,,The Snow Queen is a powerful story of friendship and the triumph of love over wickedness. The story follows a young woman who is forced to battle the wicked snow queen in order to save the soul of the man she loves.,0,0,Snow Queen,en +46989,Blue Car,2002-01-11,92.0,,,tt0290145,Ready or not... the future comes just the same.,"Gifted 18-year-old Meg has been abandoned by her father and neglected by her hardworking mother. Left to care for her emotionally disturbed younger sister, her world begins to unravel. She finds an outlet in writing poetry and support from her English teacher, Mr. Auster. But what started out as a mentoring relationship begins to get a bit more complex.",1000000,464000,Blue Car,en +25649,Bad Guy,2002-01-11,100.0,http://www.badguythemovie.net/splash.html,,tt0307213,,"A criminal who runs a brothel becomes obsessed with a beautiful college student. When she rejects him he sets her up by introducing her to a loan shark and when she can't pay, she is forced into working in the brothel. But when she gets the chance to escape she realizes she cannot return to her former life.",0,0,나쁜 남자,ko +1956,Gerry,2002-01-12,103.0,,,tt0302674,,Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble.,3500000,0,Gerry,en +154211,Sogobi,2002-01-12,90.0,,,tt0314691,,"Many films by this master of landscape cinema are cinematic studies of specific landscapes, as is the case with SOGOBI – the Shoshonean word for ""Earth"" –, Benning's approach to the Californian wilderness in 35 carefully composed scenes with a great depth of field and devoid of humans. ""I spent a year in the middle of nowhere and perhaps this is the closest I've come to portraying a true sense of place."" (James Benning)",0,0,Sogobi,en +85472,Only the Strong Survive,2002-01-14,95.0,,,tt0308672,,A film featuring the veteran soul music artists and music of Stax Records.,0,0,Only the Strong Survive,en +13163,Buying the Cow,2002-01-14,88.0,,,tt0218864,"Why buy the cow, when you can get the milk for free?",A commitment-averse man frantically hits the dating scene after his girlfriend starts pressuring him to pop the question.,0,0,Buying the Cow,en +50123,Skins,2002-01-14,84.0,,,tt0284494,The Other American Heroes,An inspirational tale about the relationship between two Sioux Indian brothers living on the Pine Ridge Indian reservation.,0,249204,Skins,en +97206,Taboo,2002-01-14,80.0,,,tt0288243,Would you ever...?,Six young adults struggle with their personal demons while staying at a secluded mansion during a dark and stormy night where a seemingly innocent game of 'taboo' brings out their inter-most secrets which soon leads to murder.,0,0,Taboo,en +99826,The Jimmy Show,2002-01-16,96.0,,,tt0271020,,"A failed New Jersey inventor embarks on a career as a standup comic, turns to drink, and labors to keep his family together.",0,0,The Jimmy Show,en +59199,World Traveler,2002-01-17,0.0,,,tt0262911,,After hitting the road a man encounters characters that make him realize the importance of family.,0,0,World Traveler,en +25006,State Property,2002-01-18,88.0,,124879,tt0301893,,"Frustrated with being broke, Beans decides that the only way to grasp the American Dream is to take it.",0,2106838,State Property,en +175739,The Life of Aleksis Kivi,2002-01-18,104.0,,,tt0170517,,,0,0,Aleksis Kiven elämä,fi +27259,Long Time Dead,2002-01-18,94.0,,,tt0251806,Play It To Death,"A group of British students embark on summoning spirits on a Ouija board after a night of clubbing. But someone breaks the link before they have finished and now a demon is trapped in their world and the only way to banish it, is for all the people who summoned it to die.",0,13102295,Long Time Dead,en +11888,Snow Dogs,2002-01-18,99.0,,,tt0281373,Get ready for mush hour!,"When a Miami dentist inherits a team of sled dogs, he's got to learn the trade or lose his pack to a crusty mountain man.",33000000,0,Snow Dogs,en +11362,The Count of Monte Cristo,2002-01-23,131.0,,,tt0245844,Prepare for adventure. Count on revenge.,"Edmond Dantés's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dantés escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.",35000000,75395048,The Count of Monte Cristo,en +41890,Hometown Legend,2002-01-25,0.0,,,tt0260695,Coach learns to pray after losing his son,A teenage drifter finds an opportunity to turn his life around when he joins a high-school football program with a hard-nosed coach.,0,0,Hometown Legend,en +2637,The Mothman Prophecies,2002-01-25,119.0,,,tt0265349,What do you see?,Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.,32000000,55157539,The Mothman Prophecies,en +388055,The Next Industrial Revolution,2002-01-31,,,,tt0450061,,,0,0,The Next Industrial Revolution,pt +37910,Voices of a Distant Star,2002-02-02,25.0,,,tt0370754,A love story that transcends time and space.,Voices of a Distant Star chronicles a long-distance relationship between two close friends who communicate by sending emails via their mobile phones across interstellar space.,0,0,ほしのこえ,ja +9555,Rabbit-Proof Fence,2002-02-04,94.0,,,tt0252444,"Follow Your Heart, Follow The Fence","In 1931, three aboriginal girls escape after being plucked from their homes to be trained as domestic staff and set off on a trek across the Outback.",0,0,Rabbit-Proof Fence,en +598,City of God,2002-02-05,130.0,http://cidadededeus.globo.com/,,tt0317248,"If you run you're dead... if you stay, you're dead again. Period.","Cidade de Deus is a shantytown that started during the 1960s and became one of Rio de Janeiro’s most dangerous places in the beginning of the 1980s. To tell the story of this place, the movie describes the life of various characters, all seen by the point of view of the narrator, Buscapé. Buscapé was raised in a very violent environment. Despite the feeling that all odds were against him, he finds out that life can be seen with other eyes: The eyes of an artist. By accident, he becomes a professional photographer, gaining his freedom.",3300000,30641770,Cidade de Deus,pt +41645,Food of Love,2002-02-08,0.0,,,tt0309600,,Young aspiring pianist attracts attention of famous musicians. Chance encounters bring them together but expectations must be managed by all.,0,0,Manjar de amor,en +11535,Rollerball,2002-02-08,98.0,,,tt0246894,Go Ballistic,"From the director of Die Hard comes this high-octane thriller that roars along at a breakneck pace (Los Angeles Times)! Starring Chris Klein (American Pie), Jean Reno (Ronin), LL Cool J (Charlie's Angels) and Rebecca Romijn-Stamos (X-Men), Rollerball goes full-throttle with excitement from its death-defying opening until its explosive end! Jonathan Cross (Klein) is the newest recruit in the most extreme sport of all time where his fast moves and killer looks make him an instant superstar. But Cross life in the fast lane collides with reality when he learns that the league's owner (Reno) is orchestrating serious on-court accidents to boost ratings. Now Cross plans to take down the owner and his ruthless sport before the game puts an end to him!",0,0,Rollerball,en +11979,Queen of the Damned,2002-02-10,101.0,,217704,tt0238546,This time there are no interviews.,"Lestat de Lioncourt is awakened from his slumber. Bored with his existence he has now become this generations new Rock God. While in the course of time, another has arisen, Akasha, the Queen of the Vampires and the Dammed. He want's immortal fame, his fellow vampires want him eternally dead for his betrayal, and the Queen want's him for her King. Who will be the first to reach him? Who shall win?",35000000,45479110,Queen of the Damned,en +2750,24 Hour Party People,2002-02-13,117.0,http://www.24hourpartypeople-themovie.com/,,tt0274309,Share the Ecstacy!,"In 1976, Tony Wilson sets up Factory Records and brings Manchester's music to the world.",0,0,24 Hour Party People,en +40998,Kannathil Muthamittal,2002-02-14,123.0,,,tt0312859,,"A little girl is told by her parents that she is adopted. Determined to find her birth mother, her family eventually agrees to take her to Sri Lanka, where they are abducted by the terrorist group known as the Tamil Tigers.",0,0,கன்னத்தில் முத்தமிட்டாள்,ta +8470,John Q,2002-02-15,116.0,,,tt0251160,Give a father no options and you leave him no choice.,"John Quincy Archibald is a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.",36000000,102244770,John Q,en +25913,Balto II: Wolf Quest,2002-02-19,75.0,,117693,tt0281634,,Balto and his daughter Aleu embark on a journey of adventure and self discovery.,0,0,Balto II: Wolf Quest,en +47500,Pipe Dream,2002-02-20,91.0,,,tt0164810,,"A lonely plumber poses as a director to meet women, and the writer whose script he's stolen builds on his ruse to get her movie made.",0,0,Pipe Dream,en +9274,"Fire, Ice & Canned Beer",2002-02-21,83.0,,,tt0277703,,"Two friends who are doing civil service flee to the Austrian Alps to escape being forced into the army. While there, one of them rediscovers his past and they realise that it's going to be more fun than they thought.",0,0,"Feuer, Eis & Dosenbier",de +14128,Cinderella II: Dreams Come True,2002-02-23,74.0,http://movies.disney.com/cinderella-2-dreams-come-true,55419,tt0291082,,"As a newly crowned princess, Cinderella quickly learns that life at the Palace - and her royal responsibilities - are more challenging than she had imagined. In three heartwarming tales, Cinderella calls on her animal friends and her Fairy Godmother to help as she brings her own grace and charm to her regal role and discovers that being true to yourself is the best way to make your dreams come true.",5000000,0,Cinderella II: Dreams Come True,en +68646,Superprodukcja,2002-02-28,92.0,,,tt0354068,,,0,0,Superprodukcja,pl +10590,We Were Soldiers,2002-03-01,138.0,,,tt0277434,400 U.S paratroopers. 4000 Vietnamese soldiers. 12 000 miles away from home. 1 man led them into battle.,The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.,75000000,114660784,We Were Soldiers,en +111744,Joe and Max,2002-03-03,109.0,,,tt0281938,,True story of boxers Joe Louis and Max Schmeling and their enduring friendship.,8000000,0,Joe and Max,en +2135,The Time Machine,2002-03-04,96.0,http://timemachine.countingdown.com/,,tt0268695,The greatest adventure THROUGH all time!,"Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds humankind divided into two warring races.",80000000,123729176,The Time Machine,en +38951,Charly,2002-09-20,103.0,,,tt0330136,Real Love Stories Have No Ending,"Sam Roberts thinks he has all the answers: the purpose of life, the meaning of love, the plan for a perfect future. Until Charly walks into his life.",0,0,Charly,en +27018,Australian Rules,2002-03-05,95.0,,,tt0285006,,"Friends Gary Black (Nathan Phillips) and Dumby Red (Luke Carroll) are on the same soccer team in their coastal Australian town. But to local racists, they're a world apart: Gary is white and Dumby is an Aborigine. This becomes an issue when one of the team's Aboriginal players becomes involved in a crime. In response, Dumby is demoted even though he's the star player, and Gary is given his place. Will Gary have the courage to speak out before tragedy results?",0,0,Australian Rules,en +14008,Cadet Kelly,2002-03-07,101.0,,,tt0294425,Too Cool For The Rules!,Hyperactive teenager Kelly is enrolled into a military school when her new stepfather becomes the Commandant. At first she has problems fitting in and taking orders until she tries out for the drill team.,0,0,Cadet Kelly,en +318359,In Our Garden,2002-03-08,86.0,http://www.giuseppeandrews.net/product/in-our-garden/#,,tt0495225,,60 year old widow and cystic fibrosis sufferer Daisy (Gayle Wells) hooks up with crack addicted lonely ex-cop Rick (Walt Dongo) in a trailer park romance.,0,0,In Our Garden,en +13442,Zig Zag,2002-03-10,101.0,,,tt0271885,,"An autistic 15-year-old boy steals money from his boss to provide rent for his abusive father, who uses the money to repay a loan shark.",0,0,Zig Zag,en +14787,Tom and Jerry: The Magic Ring,2002-03-12,62.0,,458017,tt0303151,,"The world's favourite cat and mouse team bounds back into action in an all-new full-length animated adventure certain to cast its spell over the entire family Left in charge of a priceless magical ring by his young wizard master, Tom is horrified when the ring gets stuck on Jerry's head, who then runs off into the city! Before you can say ""abracadabra"", the entire town is hot on our heroes' tails",0,0,Tom and Jerry: The Magic Ring,en +9572,Ants in the Pants 2,2002-03-13,83.0,,133297,tt0295375,"Hey girls, I am back","In the sequel of ""Ants in the Pants"" we again meet Flo and his friends.",0,0,Knallharte Jungs,de +82737,War,2002-03-14,120.0,,,tt0309047,,"During the bloody war in Chechnya, a British couple and two Russian soldiers are taken hostage by Chechen rebels. Two of the hostages are then released to bring the money for the British woman who is forced to wait for the ransom.",0,0,Война,ru +57342,Amnèsia,2002-03-15,114.0,,,tt0306456,,,0,0,Amnèsia,it +87343,Moms on Strike,2002-03-17,93.0,,,tt0308591,,She was an overworked mom trying to get her family's attention. She didn't know she would become a national sensation.,0,0,Moms on Strike,en +201198,Dumbland,2002-03-18,35.0,,,tt0815744,,"The series details the daily routines of a dull-witted white trash man. The man lives in a house along with his frazzled wife and squeaky-voiced child, both of whom are nameless as is the man in the shows. Lynch's website, however, identifies the male character by the name Randy and the child by the name Sparky. The wife is not named.",0,0,Dumbland,en +9298,Ali G Indahouse,2002-03-21,85.0,,,tt0284837,Me iz introducin a white paper.,"Ali G unwittingly becomes a pawn in the evil Chancellor's plot to overthrow the Prime Minister of Great Britain. However, instead of bringing the Prime Minister down, Ali is embraced by the nation as the voice of youth and 'realness', making the Prime Minister and his government more popular than ever.",0,0,Ali G Indahouse,en +127257,Every Stewardess Goes to Heaven,2002-03-21,93.0,,,tt0293654,,"Teresa is a stewardess who lives a perfect life in the midst of his impeccable suits world clean and prepared foods. However the world scares land: men, motherhood, love ... Meanwhile, Julian, a young doctor, must travel to Ushuaia to throw the ashes of his dead wife in the place where they fell in love.",0,0,Todas las azafatas van al cielo,es +21769,Armitage: Dual Matrix,2002-03-22,90.0,,182371,tt0303678,,Naomi Armitage and Ross Sylibus have changed their names and live with their daughter Yoko as a happy and normal family on Mars — until an android riot breaks out at an anti-matter plant on Earth.,0,0,アミテージ・ザ・サード DUAL-MATRIX,ja +97643,The Tom Green Subway Monkey Hour,2002-03-24,50.0,,,tt0316706,,Tom Green causes havoc in the country who brought us Godzilla & sushi.,0,0,The Tom Green Subway Monkey Hour,en +12112,He Loves Me... He Loves Me Not,2002-03-27,92.0,,,tt0291579,Every love story has two sides,"Angelique, a young student, is in love with a married doctor. We see her attempts to make him leave his pregnant wife, but he does not appear for meetings or finally the booked journey to Florence. Then the movie is turned back to the beginning, and the view changes: We are now following the view of the doctor instead of Angeliques. And things look quite different now...",0,5126264,À la folie... pas du tout,fr +4547,Panic Room,2002-03-29,111.0,http://www.sonypictures.com/movies/panicroom/,,tt0258000,,"Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman and her young daughter Sarah play a deadly game of cat-and-mouse with three intruders - Burnham, Raoul and Junior - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.",48000000,196397415,Panic Room,en +10611,Barbershop,2002-04-01,102.0,,176097,tt0303714,Everyone's gettin' lined up.,"A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.",12000000,75781642,Barbershop,en +8460,The Skulls II,2002-04-09,99.0,,8647,tt0278723,,"After joining the Skulls, Ryan Sommers (Robin Dunne) is warned not to betray any secrets about the organization or its high-powered members. However, when Ryan witnesses a murder within the Skulls' private chambers, he finds that the closer he gets to revealing the truth - the more dangerous life becomes.",3800000,0,The Skulls II,en +104391,Darkened Room,2002-04-12,10.0,,,tt0306714,,Two young women find themselves in a dark room where there is a distinctly strange feeling.,0,0,Darkened Room,en +11812,The Sweetest Thing,2002-04-12,84.0,http://www.sonypictures.com/movies/thesweetestthing/,,tt0253867,A romantic comedy without the sugar.,"Christina's love life is stuck in neutral. After years of avoiding the hazards of a meaningful relationship, one night while club-hopping with her girlfriends, she meets Peter, her perfect match. Fed up with playing games, she finally gets the courage to let her guard down and follow her heart, only to discover that Peter has suddenly left town. Accompanied by Courtney, she sets out to capture the one that got away.",43000000,68696770,The Sweetest Thing,en +20312,Interstate 60,2002-04-13,116.0,,,tt0165832,"It began as a wish, became an adventure, and ended as the ultimate road trip.",An aspiring painter meets various characters and learns valuable lessons while traveling across America.,7000000,0,Interstate 60,en +155426,Anioł w Krakowie,2002-09-20,0.0,,,tt0346513,,,0,0,Anioł w Krakowie,pl +15761,Company,2002-04-15,156.0,http://www.companythefilm.com/,,tt0296574,,"Mallik is a henchman of Aslam Bhai, a Mumbai underworld kingpin. He inducts local hothead Chandu into the gang, and the two of them soon form a formidable faction within the gang, eventually displacing Aslam. As the empire grows, however, the two of them start drifting apart.",1500000,6000000,Company,hi +72917,La Bande du drugstore,2002-04-17,93.0,,,tt0286482,,,0,0,La Bande du drugstore,fr +74237,A Skin Too Few: The Days of Nick Drake,2002-04-19,48.0,http://www.nickdrakefilm.com/,,tt0264013,,"A study, mostly chronological, of the life of Nick Drake (1948-1974). Gabrielle, his older sister, tells us of her brother's birth in Burma, childhood in Warwickshire, life at Cambridge and in London, then back to his parents' home in Tanworth. His parents describe his habits and personality. Two friends and the producer, arranger, sound engineer, and photographer for his three albums comment. His mother, a musician and poet, is an early influence. His quiet folk style made his one tour a disaster. His lack of success and gradual withdrawal end with his death at 26. Eleven of his recordings play on the soundtrack, usually as we see his room, a city, or the Warwickshire countryside.",0,0,A Skin Too Few: The Days of Nick Drake,en +35694,Chelsea Walls,2002-04-19,109.0,,,tt0226935,,"This movie tells five stories set in a single day at the famed Chelsea Hotel in New York City, involving an ensemble cast of some 30-35 characters.",0,0,Chelsea Walls,en +16643,Life or Something Like It,2002-04-26,103.0,,,tt0282687,,"A reporter Lanie Kerrigan interviews a psychic homeless man for a fluff piece about a football game's score. Instead he tells her that her life has no meaning and is going to end in just a few days, which sparks her to action, trying to change the pattern of her life...",40000000,16872671,Life or Something Like It,en +100250,Tussenland,2002-04-27,92.0,,,tt0310256,,"In Tussenland kruisen de paden van twee 'ontheemden': de illegaal in Nederland verblijvende jonge Soedanees Majok en de bejaarde, in zichzelf gekeerde oud-militair Jakob. Ondanks de onderlinge verschillen herkennen zij zichzelf in elkaar. Beiden dragen hun verleden als een last met zich mee. Jakob lijdt onder het verlies van zijn vrouw en is nooit in het reine gekomen met zijn oorlogservaringen in Nederlands Indië. Majok draagt de last van de 'vergeten oorlog' in zijn vaderland en de heimwee naar zijn geboortedorp dat hij is ontvlucht. Uit hun ontmoeting putten ze de kracht om afscheid te nemen van hun verleden, zodat hun onverwachte vriendschap weer zicht geeft op een toekomst.",0,0,Tussenland,en +361340,A Brilliant Madness,2002-04-28,0.0,,,tt0319109,,,0,0,A Brilliant Madness,en +29832,Martin & Orloff,2002-05-01,87.0,,,tt0283469,Martin Flam recently tried to kill himself. His psychiatrist may finish the job...,This is the story of a marketing man and his shrink. A suicide attempt and a softball game; A PHD-toting stripper and a deranged Desert Storm vet; A giant sparerib costume and the world's largest peenis; John Woo-style violence and Steel Magnolia-esque pathos. This is the story of Martin & Orloff.,0,0,Martin & Orloff,en +125945,Kedma,2002-05-05,100.0,,,tt0304267,,"In May 1948, shortly before the creation of the State of Israel, hundreds of immigrants from across Europe arrive in Palestine--only to risk arrest by British troops.",0,0,Kedma,he +10389,The Eye,2002-05-09,98.0,http://theeye.kingnet.com.tw/en-main.html,264335,tt0325655,How can you believe your eyes when they're not yours?,"A blind girl gets a cornea transplant so that she would be able to see again. However, she got more than what she bargained for when she realised she could even see ghosts. And some of these ghosts are down right unfriendly. So she embarks on a journey to find the origins of her cornea and to reveal the history of the previous dead owner ...",0,0,見鬼,cn +11880,Dog Soldiers,2002-05-10,105.0,,,tt0280609,Six men. Full moon. No chance.,"A squad of British soldiers on training in the lonesome Scottish wilderness find a wounded Special Forces captain and the carnaged remains of his team. As they encounter zoologist Megan, it turns out that werewolves are active in the region. They have to prepare for some action as the there will be a full moon tonight...",0,0,Dog Soldiers,en +12454,All or Nothing,2002-05-17,128.0,,,tt0286261,,"Penny's love for her partner, taxi-driver Phil, has run dry. He is a gentle, philosophical guy, and she works on the checkout at a supermarket...",9000000,0,All or Nothing,en +47226,Waiting for Happiness,2002-05-19,91.0,,,tt0308363,,The story of two people who cross paths in Nouhadhibou.,0,7406,Heremakono,fr +16351,Ararat,2002-05-20,115.0,,,tt0273435,,"A variety of characters, some close relatives, others distant strangers, are each affected by the making of a film about the Armenian Genocide of 1915.",0,0,Ararat,en +23853,Wish You Were Dead,2002-05-21,100.0,,,tt0209486,,"Two bad women fight over one man in a back-stabbing, money-grabbing, insurance-hustling, double-dealing, two-timing caper.",0,0,Wish You Were Dead,en +14809,Stark Raving Mad,2002-05-23,101.0,,,tt0286152,Blood Money. Deadly Heist. Some things can make a guy crazy.,A crook quietly plots his revenge against the boss who murdered his brother while working for him.,5000000,0,Stark Raving Mad,en +9260,Welcome to Collinwood,2002-05-24,86.0,,,tt0271259,Five guys. One safe. No brains.,"Five hapless inner-city low-lifes attempt to burgle a pawnbroker's safe, but end up being plagued by bad luck.",1200000,0,Welcome to Collinwood,en +21605,Thunderpants,2002-05-24,83.0,,,tt0283054,Saving the world... One blast at a time!,"An 11-year-old boy's amazing ability to break wind leads him first to fame and then to death row, before it helps him to fulfill his ambition of becoming an astronaut.",0,0,Thunderpants,en +90634,Hum Tumhare Hain Sanam,2002-05-24,174.0,,,tt0222024,,"Radha and Suraj have been friends since childhood. Gopal has been in love with Radha ever since they spent a few years together as kids. Years later, Gopal's guardian proposes to Radha a marriage with Gopal, and she accepts.",0,0,Hum Tumhare Hain Sanam,hi +9023,Spirit: Stallion of the Cimarron,2002-05-24,83.0,,,tt0166813,Leader. Hero. Legend.,"As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.",80000000,122563539,Spirit: Stallion of the Cimarron,en +64156,Spring Subway,2002-05-28,93.0,,,tt0365402,,A stylish urban romance about the silent suffering of a modern Chinese couple.,0,0,Kaiwang chuntian de ditie,zh +50350,And Now... Ladies and Gentlemen...,2002-05-29,133.0,,,tt0283883,,A jazz singer and a British jewel thief are brought together by their mutual desire to forget the past.,0,0,And Now... Ladies and Gentlemen...,en +113660,Rumble,2002-05-31,55.0,,,tt0347909,A Teddy Road Movie,Finnish Road Movie,0,0,Rumble,en +136146,Inside,2002-06-01,8.0,https://www.youtube.com/watch?v=OjTOs1L3SBg&feature=related,,tt0298934,,A mentally ill patient is questioned to see if he is fit for release.,0,0,Inside,en +24978,Paper Soldiers,2002-06-01,88.0,,,tt0309986,,"Paper Soldiers follows an overeager burglar named Shawn (Kevin Hart) through the ups and downs of his short, stressful career.",0,0,Paper Soldiers,en +12079,Spun,2002-06-01,101.0,,,tt0283003,The ultimate speed freak's tale.,"Over the course of three days Ross, a college dropout addicted to crystal-meth, encounters a variety of oddball folks - including a stripper named Nikki and her boyfriend, the local meth producer, The Cook - but all he really wants to do is hook up with his old girlfriend, Amy.",2000000,0,Spun,en +297853,Turn of Faith,2002-06-05,94.0,,,tt0250790,,"Mob drama starring Ray 'Boom Boom' Mancini, Mia Sara and Costas Mandylor.",0,0,Turn of Faith,en +182097,God's Sandbox,2002-06-06,86.0,,,tt0325478,,"A successful author, Liz, searches for her daughter, Rachel, in the Sinai Desert. There she meets a Bedouin storyteller who relays the unusual love story of a Western tourist and the son of a Bedouin Sheik named Najim. Their relationship is torn apart when the American is exposed to a tribal ritual.",0,0,Tahara,en +205481,The Intended,2002-06-06,110.0,,,tt0331525,,A period drama/thriller about a surveyor and his fiancée who arrive in a remote Malaysian trading post and encounter a closed-fisted ivory trader and her ill-meaning family.,0,0,The Intended,en +20439,The Anarchist Cookbook,2002-06-06,101.0,,,tt0284850,,"A movie about a young honors student-turned-anarchist, Puck, and his group of anarchist friends living peacefully in a Dallas commune until a nihilist, Johnny Black, appears with The Anarchist Cookbook and completely destroys their way of life.",0,0,The Anarchist Cookbook,en +14293,Poolhall Junkies,2002-06-07,99.0,,,tt0273982,It's your shot. Take it.,A retired pool hustler is forced to pick up the stick again when his brother starts a game he can't finish.,0,0,Poolhall Junkies,en +16876,Bang Bang You're Dead,2002-06-07,87.0,,,tt0288439,,"Trevor is a troubled high school student, thanks to the effects of bullying. This is the story of his fight to break free.",0,0,Bang Bang You're Dead,en +109354,The Kopeck,2002-06-07,115.0,,,tt0322988,,In this movie we follow fate not a person but car: first Soviet Lada. It starts with Brezhnev daughter and then gradually moves on parallel to last years of USSR into wild after-perestroika years with bandits and newly born oligarchs.,0,0,Копейка,ru +68629,Happy Here and Now,2002-06-08,89.0,,,tt0271537,,"When an unhappy young woman disappears, her worried sister desperately searches the internet for a clue to her missing sibling's whereabouts.",0,0,Happy Here and Now,en +38157,Wishmaster 4: The Prophecy Fulfilled,2002-06-10,92.0,,135489,tt0254872,Leave no soul unturned.,"The unspeakable evil of the soul-devouring djinn rises again in this fourth electrifying installment of the unstoppable Wishmaster horror legacy! But now, as a host of new victims see their most nightmarish wishes come true, the world faces the ultimate demonic terror: an onslaught of multiple djinns hell-bent on destroying everything in their path!",0,0,Wishmaster 4: The Prophecy Fulfilled,en +62190,American Gun,2002-06-13,89.0,,,tt0270197,,A brilliant story with an unexpected twist. A father uses the serial number on a hand gun in an attempt to track down his daughter's killer. The truth he uncovers is an unsettling reminder of the dangers of keeping handguns. Stars the legendary James Coburn and the incredibly gifted Virginia Madsen. Written and directed by Alan Jacobs.,0,0,American Gun,en +23967,Slap Her... She's French,2002-06-13,92.0,,,tt0187512,"Bonjour, y'all","Welcome to Splendona High School, Texas, where football players, cheerleaders and beauty queens rule the hallways. And Starla Grady, the most popular girl in school, is on top of it all. That is, at least until Genevieve LePlouff, a French foreign exchange student arrives and turns her life upside down.",0,0,Slap Her... She's French,en +35110,Samouraïs,2002-06-19,90.0,,,tt0284457,,An ageless Demon Warrior is magically impregnated into the womb of a Parisian Kung-Fu Master's girlfriend. But what is the Demon's relationship with a new-release blockbuster fighting game?,0,0,Samouraïs,fr +35696,Juwanna Mann,2002-06-21,91.0,http://www.juwannamann.com/,,tt0247444,,"A basketball star is booted out of the NBA when his on-court antics go too far, so he poses as a woman and joins the WUBA.",15600000,0,Juwanna Mann,en +20646,Graveyard of Honor,2002-06-22,131.0,,,tt0316599,,"A barkeeper saves a Yakuza boss' life and thus makes his way up in the organization. However, his fear of nothing soon causes problems.",0,0,新・仁義の墓場,ja +124581,Outside the Law,2002-06-25,90.0,,,tt0290014,,Secret agent Julie Cosgrove is walking into her most dangerous mission yet.,0,0,Outside the Law,en +12513,Marie-Jo and Her 2 Lovers,2002-06-26,124.0,http://www.diaphana.fr/mariejo/,,tt0293401,,Marie-Jo and Her Two Lovers (French: Marie-Jo et ses deux amours) is a 2002 French drama film directed by Robert Guédiguian. It was entered into the 2002 Cannes Film Festival.,0,0,Marie-Jo et ses deux amours,en +63989,Irène,2002-06-26,0.0,,,tt0296686,,,0,0,Irène,fr +64934,Le Nouveau Jean-Claude,2002-06-26,0.0,,,tt0297314,,,0,0,Le Nouveau Jean-Claude,fr +23855,The First $20 Million Is Always the Hardest,2002-06-28,105.0,,,tt0280674,,"Andy, a successful marketing guy quits his job, gets a new job at a research facility, makes a powerful enemy who makes him volunteer for a nearly impossible project: The $99 PC. The only available guys at the lab, three sociopaths, together they compile a revolutionary PC for $99, then they become the victims of a venture capitalist and Andy's old foe, can he find a way to overcome the problems?",0,0,The First $20 Million Is Always the Hardest,en +2017,No Good Deed,2002-06-28,97.0,,,tt0292610,HE was more than a cop. SHE was more than a thief.,"While doing a friend a favor and searching for a runaway teenager, a police detective stumbles upon a bizarre band of criminals about to pull off a bank robbery.",12000000,0,No Good Deed,en +77283,The Lawless Heart,2002-06-28,100.0,,,tt0276276,Is the life you have the life you want?,"In a British seaside resort, several lives intertwine following the funeral of a gay restaurant owner",0,0,The Lawless Heart,en +11442,Halloween: Resurrection,2002-07-01,94.0,,91361,tt0220506,Evil finds its way home,"Serial Killer Michael Myers is not finished with Laurie Strode, and their rivalry finally comes to an end. But is this the last we see of Myers? Freddie Harris and Nora Winston are reality programmers at DangerTainment, and are planning to send a group of 6 thrill-seeking teenagers into the childhood home of Myers. Cameras are placed all over the house and no one can get out of the house... and then Michael arrives home!",13000000,37664855,Halloween: Resurrection,en +262988,The Men Who Made the Movies: Samuel Fuller,2002-07-02,60.0,,,tt1507408,,,0,0,The Men Who Made the Movies: Samuel Fuller,nl +27042,The ChubbChubbs!,2002-07-03,5.0,http://www.sonypictures.com/movies/chubbchubbs/,169851,tt0331218,,A janitor at an alien night-club gets his wish to be a singer.,0,0,The ChubbChubbs!,en +15850,The Trip,2002-11-01,95.0,,,tt0250067,,"When 19-year-old gay-rights activist Tommy and 24-year-old Alan first meet in 1973, they find themselves on the opposite sides of the political coin...",0,0,The Trip,en +59387,The Powerpuff Girls Movie,2002-07-03,77.0,,,tt0289408,Saving the world before bedtime!,"The Powerpuff Girls Movie tells the origin story of how the Powerpuff Girls were created and how they came to be the defenders of Townsville. It was the first Hanna-Barbera/Cartoon Network Studios theatrical feature film since 1993's Once Upon a Forest, and is the only film based on a Cartoon Network series to be released theatrically.",10000000,11411644,The Powerpuff Girls Movie,en +126934,A Ring of Endless Light,2002-07-04,88.0,,,tt0282123,,"When 15-year-old Vicky Austin, her sister Suzy and little brother Rob visit their grandfather on Seven Bay Island, Vicky faces several unexpected challenges. Her beloved grandfather, retired Reverend Eaton, seems to be seriously ill, but tries to pretend that nothing is wrong. Vicky met the rich but emotionally troubled Zachary Gray the previous summer, and he reappears to renew the acquaintance. Another boy, 17-year-old Adam Eddington, recruits Vicky to help him with a research project, working with a dolphin called Basil. Vicky discovers she can communicate telepathically with the dolphin and his mate - and possibly with Adam as well",0,0,A Ring of Endless Light,en +65035,Bertie and Elizabeth,2002-07-07,120.0,,,tt0310733,,"The duke of York, nicknamed Bertie, was born as royal 'spare heir', younger brother to the prince of Wales, and thus expected to spend a relatively private life with his Scottish wife Elisabeth Bowes-Lyon and their daughters, in the shadow of their reigning father, George V, and next that of his elder brother who succeeded to the British throne as Edward VIII. However Edward decides to put his love for a divorced American, Wallis Simpson, above dynastic duty, and ends up abdicating the throne, which now falls to Bertie, who reigns as George VI.",0,0,Bertie and Elizabeth,en +33146,Om Jai Jagadish,2002-07-08,172.0,,,tt0327071,,"Widowed Mrs. Saraswati Batra (Waheeda Rehman) has brought up three sons with a lot of care and love. Her eldest son Om (Anil Kapoor) is very honest and diligent; her two other sons Jai (Fardeen Khan), and Jagdish (Abhishek Bachchan) also live in the same house. this is their story",0,0,Om Jai Jagadish,en +96238,Never Again,2002-07-12,98.0,,,tt0244094,A mature love story for immature people.,Two people who have pledged never to fall in love again then discover each other in a gay bar.,0,0,Never Again,en +4147,Road to Perdition,2002-07-12,117.0,,,tt0257044,Pray for Michael Sullivan.,"Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.",80000000,181001478,Road to Perdition,en +142168,Searching for Debra Winger,2002-07-13,100.0,,,tt0318049,,Rosanna Arquette talks to various actresses about the pressures they face as women working in the entertainment industry.,0,0,Searching for Debra Winger,en +188102,The Fraternity,2002-07-16,100.0,,,tt0281726,Pledging was hell ... Getting in was murder,Some students at Runcie prep school form an elite club. The group is implicated in a cheating scandal and one of the club members dies mysteriously. Another member decides to try and discover the dangerous truth about Runcie.,4411044,0,The Circle,en +8869,Eight Legged Freaks,2002-07-17,99.0,,,tt0271367,Do you hate spiders? Do you really hate spiders? Well they don't like you either.,"The residents of a rural mining town discover that an unfortunate chemical spill has caused hundreds of little spiders to mutate overnight to the size of SUVs. It's then up to mining engineer Chris McCormack and Sheriff Sam Parker to mobilize an eclectic group of townspeople, including the Sheriff's young son, Mike, her daughter, Ashley, and paranoid radio announcer Harlan, into battle against the bloodthirsty eight-legged beasts.",0,0,Eight Legged Freaks,en +42250,Python 2,2002-07-17,89.0,,,tt0330795,The beast is back.,The beast is back.,0,0,Python 2,en +21893,The Abduction Club,2002-07-19,96.0,,,tt0264333,,A group of Irish noblemen kidnap girls in order to marry into their fortune and avoid becoming priests or soldiers.,0,0,The Abduction Club,en +8665,K-19: The Widowmaker,2002-07-19,138.0,,,tt0267626,Fate has found its hero.,"When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.",100000000,35168966,K-19: The Widowmaker,en +206183,Bad Karma,2002-07-23,92.0,,,tt0271984,,Mental Patient terrorizes her Psychiatrist who she believes is the reincarnation of Jack the Ripper.,0,0,Bad Karma,en +32091,The Touch,2002-08-01,103.0,,,tt0293660,,"A sister and brother, the last heirs of a family of acrobats, are called upon by a Buddhist monk sect to retrieve an artifact that their ancestors have protected throughout the ages.",0,0,The Touch,en +2675,Signs,2002-08-02,106.0,,,tt0286106,It’s not like they didn’t warn us.,A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.,72000000,408247917,Signs,en +23750,Revengers Tragedy,2002-08-06,106.0,,,tt0286921,,"Revengers Tragedy is a film adaptation of the 1606 play The Revenger's Tragedy It was directed by Alex Cox and adapted for the screen by Cox's fellow Liverpudlian, Frank Cottrell Boyce. The film stars Christopher Eccleston as the revenge-obsessed Vindice, with Derek Jacobi and Eddie Izzard.",0,0,Revengers Tragedy,en +62670,The Adventures of Tom Thumb & Thumbelina,2002-08-06,75.0,,,tt0185143,,"Voiced by Elijah Wood, Jennifer Love Hewitt and others, this film features Tom Thumb and Thumbelina, the tiny, famed fairy-tale favorites, who are together for the first time in this heartwarming, magical musical story about courage and friendship.After 15 years, the two reunite and remember when their village was destroyed by a giant. Soon, they find out that they have neat powers they can use for good.",0,0,The Adventures of Tom Thumb & Thumbelina,en +26955,Oasis,2002-08-09,132.0,,,tt0320193,,"Oasis is a love story of two young people abandoned by families. A young man released from prison visits the widow of the man he killed drink-driving. There he meets her daughter, wheelchair bound with cerebral palsy. Will these two lost people find a way to make their relationship work?",0,0,오아시스,ko +70404,First Shot,2002-08-11,116.0,,,tt0285182,,"No one knows why the army base was blown up until the President gets shot there during the memorial service for those killed, but he wasn't the only target.",0,0,First Shot,en +11692,The Adventures of Pluto Nash,2002-08-15,95.0,,,tt0180052,Action's future has arrived...,"The year is 2087, the setting is the moon. Pluto Nash, the high-flying successful owner of the hottest nightclub in the universe, finds himself in trouble when he refuses to sell his club to lunar gangster Mogan, who just happens to be helping the mysterious Rex Crater mastermind a plan to take over the entire moon.",100000000,7103973,The Adventures of Pluto Nash,en +71099,Charms For the Easy Life,2002-08-18,111.0,,,tt0290160,,The story of three women who live in a North Carolina town and defy the traditional roles set forth for them by society.,0,0,Charms For the Easy Life,en +9296,S1m0ne,2002-08-23,117.0,,,tt0258153,A star is... created.,"The career of a disillusioned producer, who is desperate for a hit, is endangered when his star walks off the film set. Forced to think fast, the producer decides to digitally create an actress ""Simone"" to sub for the star — the first totally believable synthetic actress.",0,19576023,S1m0ne,en +125943,Flower & Garnet,2002-08-26,103.0,,,tt0304023,,"Garnet and Flower have grown up in an environment of stifled grief. Since their mother died, Ed, their father, mostly just lives without a goal. Eight-year-old Garnet struggles to comprehend the world around him, while sixteen-year-old Flower seeks love with her new boyfriend. Forced to become a real parent to Garnet, Ed buys Garnet a gun and shows, for the first time, his real affection for the boy.",0,0,Flower & Garnet,en +17614,Yossi & Jagger,2002-08-28,65.0,,409138,tt0334754,Two soldiers and a love that lasts forever...,"A sociological study of two men in the Israeli army who are lovers. The others in the unit react to their situation, suspecting, but not always understanding. One will leave the military soon, a few months away, as a snowy and desolete outpost is guarded from attack.",0,0,יוסי וג'אגר,he +52999,The Adversary,2002-08-28,129.0,,,tt0273069,,"Based on the 2000 book of the same name by Emmanuel Carrère, it is inspired by the real-life story of Jean-Claude Romand. L'Adversaire's protagonist Jean-Marc Faure (Auteuil) pursues an imaginary career as a doctor of medicine in a plot more closely based on Romand's life and Carrère's book than was Laurent Cantet's 2001 film L'Emploi du Temps. The film was nominated for a Palme d'Or at the 2002 Cannes Film Festival.",0,0,L'Adversaire,fr +13437,Avenging Angelo,2002-08-30,97.0,,,tt0275947,Her life is his job.,"A woman who has recently discovered that she is the daughter of Angelo, a major mafia boss, decides to wreak vengeance when he is killed by a hitman. She's aided by his faithful bodyguard, with whom she soon falls in love.",0,0,Avenging Angelo,en +43656,13 Moons,2002-08-30,93.0,,,tt0276744,,Can you solve the mystery of the 13 moons?,0,0,13 Moons,en +55408,Kymmenen riivinrautaa,2002-08-30,0.0,,,tt0328045,,,0,0,Kymmenen riivinrautaa,fi +57351,Love and a Bullet,2002-08-30,85.0,,,tt0235553,,"Malik Bishop is the best killer in the business, but when his crimelord employer wants his girlfriend, who may be unfaithful, eliminated, Bishop doesn't count on falling in love with the woman. Now he must choose between his heart and, perhaps, his life.",0,0,Love and a Bullet,en +15909,Kermit's Swamp Years,2002-09-03,82.0,,,tt0304283,"His true story, warts and all.","At 12 years old, Kermit the Frog and best friends Goggles and Croaker travel outside their homes in the swamps of the Deep South to do something extraordinary with their lives.",0,0,Kermit's Swamp Years,en +1926,11'09''01 - September 11,2002-09-04,135.0,,,tt0328802,,11 directors show their view on the terrorist attacks on the world trade center in New York.,0,0,11'09''01 - September 11,en +20718,I'm with Lucy,2002-09-04,90.0,,,tt0282593,Five handsome bachelors. One lucky woman.,"It's an hour before Lucy's wedding and her best friend wants to hear all about what led up to that moment. So, Lucy tells about the five men she had blind dates with over the past year (Doug, Gabriel, Bobby, Barry, and Luke) and her experiences with each one. But which one of the five men is Lucy about to walk down the aisle with?",0,0,I'm with Lucy,en +870,Dolls,2002-09-05,114.0,http://www.office-kitano.co.jp/dolls/,,tt0330229,,Dolls is a film about Japanese doll theater and a human love story illustrated through beautiful imagery. This film is a lot more sensitive than most Kitano films.,0,0,ドールズ,ja +102,Open Hearts,2002-09-06,113.0,,,tt0315543,,"Cecilie and Joachim are about to get married when a freak car accident leaves Joachim disabled, throwing their lives into a spin. The driver of the other car, Marie, and her family don’t get off lightly, either. Her husband Niels works in the hospital where he meets Cecilie and falls madly in love with her.",0,0,Elsker dig for evigt,da +56746,Carol's Journey,2002-09-06,100.0,,,tt0331701,,"Carol, a 12 year old Spanish-American girl from New York, travels with her mother to Spain in the spring of 1938, at the height of the Civil War. Separated from her beloved father, Carol arrives in her mother's home village and transforms the secretive family environment. Her innocence and rebellious nature drive her at first to reject a world that is at once new and foreign. But she soon journeys into adulthood through a friendship with Maruja, the village teacher, and a young local boy, Tomiche.",0,0,El viaje de Carol,es +13536,City By The Sea,2002-09-06,108.0,,,tt0269095,When you're searching for a killer... the last suspect you want to see is your son.,A man struggling to come to terms with the sins of his father makes the terrible discovery that his own son has fallen into a life of crime in a drama based on a true story. Vincent LaMarca is a dedicated and well-respected New York City police detective who has gone to great lengths to distance himself from his past.,40000000,22433915,City By The Sea,en +31005,Moonlight Mile,2002-09-09,117.0,,,tt0179098,,"As he copes with the death of his fiancee along with her parents, a young man must figure out what he wants out of life.",21000000,10011050,Moonlight Mile,en +1817,Phone Booth,2002-09-09,81.0,,,tt0183649,No options. No lies. No fear. No deals. Just keep talking.,"A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.",13000000,97837138,Phone Booth,en +14874,Try Seventeen,2002-09-10,96.0,,,tt0311941,"You're only seventeen once. For Jones Dillon, it's one time too many.","Teenager Jones has opted not to go to college and is instead renting a room in a boarding house to work on his writing skills. Soon, Jones finds himself dividing his time between two women: a young actress named Lisa and a photographer named Jane. After Jane's ex-boyfriend arrives to help her recover from a car accident, Jones begins to understand just how much he cares for her.",0,0,Try Seventeen,en +61361,L'outremangeur,2002-09-10,,,,tt0339482,,,0,0,L'outremangeur,fr +17906,Dummy,2002-09-12,91.0,,,tt0246592,,"An ex-office worker becomes a ventriloquist, leading to a date with his unemployment counselor; but his quirky family and a gauche female friend may thwart his new career and love life.",0,0,Dummy,en +18072,Pure,2002-09-13,96.0,,,tt0308772,,A young boy trying to deal with his mother's heroin addiction befriends a waitress who helps him cope with the tough situation.,0,102471,Pure,en +14923,Run Ronnie Run,2002-09-16,86.0,,,tt0258100,From doin' time to prime time...,A redneck with an uncanny knack for getting arrested becomes the star of his own reality program.,0,0,Run Ronnie Run,en +47959,Callas Forever,2002-09-18,111.0,,,tt0274407,,A fictionalized account of the last days of opera singer Maria Callas (Ardant).,0,0,Callas Forever,en +161179,Shakti: The Power,2002-09-19,170.0,http://www.imdb.com/title/tt0331639/,,tt0331639,,A couple visits the husband's family in India and finds itself in the middle of a fratricidal battle.,0,0,Shakti: The Power,hi +121036,The Best Of Times,2002-09-20,109.0,,,tt0333902,,"Although their characters and temperaments couldn't be less alike, 19-year olds Wei and Jie are best friends. They're also neighbours, living with widower fathers and problem siblings in the suburbs of Taipei. When Wei is promoted from the rank of nightclub parking valet to the rank of debt-collector in Brother Gu's gang, he persuades his boss to hire Jie to work alongside him. Things begin to go wrong when they are given a handgun to reward their success in the new job. Always excitable and volatile, Jie becomes reckless and dangerous when he has the gun in his hand. When they try to collect a debt from the boss of a rival gang, a fight erupts and Jie shoots the gang-boss. The boys find themselves on the run. But fate and their youthful dreams still have tricks to play",0,0,美麗時光,zh +332288,Bigfootville,2002-09-20,0.0,,,tt0436116,,Hunting Bigfoot in the mountains of South East Oklahoma...,0,0,Bigfootville,en +10550,Ballistic: Ecks vs. Sever,2002-09-20,91.0,,,tt0308208,,"Jonathan Ecks, an FBI agent, realizes that he must join with his lifelong enemy, Agent Sever, a rogue DIA agent with whom he is in mortal combat, in order to defeat a common enemy. That enemy has developed a ""micro-device"" that can be injected into victims in order to kill them at will.",70000000,19924033,Ballistic: Ecks vs. Sever,en +9034,The Banger Sisters,2002-09-20,98.0,,,tt0280460,Some friendships last forever... like it or not.,"In the late '60s, the self-proclaimed belles of the rock 'n' roll ball, rocked the worlds of every music legend whose pants they could take off -- and they have the pictures to prove it. But it's been more than two decades since the Banger Sisters earned their nickname -- or even laid eyes on each other. Their reunion is the collision of two women's worlds; one who's living in the past, and one who's hiding from it. Together they learn to live in the moment.",10000000,0,The Banger Sisters,en +41493,Karlsson on the Roof,2002-09-27,77.0,,,tt0307050,,,0,0,Karlsson på taket,sv +44552,Bit by Bit,2002-09-27,85.0,,,tt0323084,,The story of J whose goal is to be world master at playing Nintendo. He struggles with his traditional Jewish family and non-Jewish girlfriend who demand that he grow up and get a job. Real problems arise when he awakes to discover that his right hand is missing.,0,0,Livet i 8 bitar,sv +11056,Darkness,2002-10-02,102.0,http://www.miramax.com/movie/darkness,,tt0273517,A house. A past. A secret. Will you dare enter?,"A teenage girl moves into a remote countryside house with her family, only to discover that their gloomy new home has a horrifying past that threatens to destroy the family.",0,0,Darkness,en +220154,The King's Beard,2002-10-02,0.0,,,tt0338176,,,0,0,The King's Beard,fr +25921,Garage Days,2002-10-03,105.0,,,tt0280696,,"A young garage band in Sydney, is trying to make it big in Australia.",0,0,Garage Days,en +16077,My Little Eye,2002-10-04,95.0,,,tt0280969,Fear is not knowing. Terror is finding out.,Five young people apply to live in an isolated house together for six months whilst their every move is filmed by numerous cameras.,3000000,0,My Little Eye,en +87204,Everyone Loves Alice,2002-10-04,113.0,,,tt0297722,,"A love triangle between a man, two women and three children. When love suddenly explodes in these people's everyday lives, it creates a pressure wave that changes the lives of everyone.",0,0,Alla älskar Alice,sv +10918,Undertaking Betty,2002-10-04,94.0,,,tt0298504,Sometimes finding true love can be the death of you.,A politician's wife and the mortician who has secretly loved her for years plan to fake her death so they can run away together.,0,0,Plots with a View,en +32546,Lugares comunes,2002-10-04,110.0,,,tt0329330,,,0,0,Lugares comunes,es +47046,Blissfully Yours,2002-10-08,126.0,,,tt0317171,,The story of a love affair that begins during a picnic on the Thai-Burmese border.,0,0,สุดเสน่หา,th +266741,Standard Time,2002-10-10,102.0,,,tt0265803,,A corporate lawyer is caught in a love triangle with an ambitious cabaret singer.,0,0,Standard Time,en +357106,Lust in the Mummy's Tomb,2002-10-14,40.0,,,tt0349761,,"A college student awakens a long-dormant Egyptian mummy stolen from a museum, and then is pursued and seduced by the ghost of the Egyptian queen Cleopatra.",0,0,Lust in the Mummy's Tomb,en +28710,Kamchatka,2002-10-17,106.0,,,tt0320042,,"The movie show us how life was in Argentina for dissident people, in the seventies, under the military government.",0,0,Kamchatka,es +57100,Double Vision,2002-10-17,112.0,,,tt0284066,Which one of you will go to hell?,An FBI Agent pairs with a troubled Taiwan cop to hunt for a serial killer who's embedding a mysterious fungus in the brains of victims.,0,0,Shuang tong,zh +67025,Addicted,2002-10-18,110.0,,,tt0336678,,"Two brothers get into a sudden tragic accident and they both fall into a coma at the same time. A year later, the younger brother Dae-jin wakes up believing he is his older brother Ho-jin.",0,0,중독,ko +11838,Ju-on: The Grudge,2002-10-18,92.0,,1972,tt0364385,,A mysterious and vengeful spirit marks and pursues anybody who dares enter the house in which it resides.,3500000,0,呪怨じゅおん,ja +20648,100 Women,2002-10-18,98.0,,404111,tt0265010,,"A young man returns to his ex-girlfriend and true love to discover the source of her increasing depression. As the young man earnestly tries to help his girlfriend through her troubles, their love begins to bloom.",0,0,100 Women,en +270469,Portrait,2002-10-19,28.0,,,tt0338353,,This movie is a collection of portraits of residents of Russian countryside. Not a single word. Only long look into the camera. Landscape. Flow of time.,0,0,Portret,ru +17963,Gone Nutty,2002-10-21,5.0,,,tt0342965,,Scrat tries to finish his rather large collection of acorns when things start going nutty.,0,0,Gone Nutty,en +26491,Tipping the Velvet,2002-10-22,178.0,,,tt0324264,,"Set in the 1890s, Tipping the Velvet tells the lesbian love affair between male impersonator music hall star Kitty Butler and Nan Astley.",0,0,Tipping the Velvet,en +36427,I Saw Mommy Kissing Santa Claus,2002-10-23,100.0,,,tt0282589,,A boy witnesses his mother kissing what he believes to be is the real Santa Clause and retaliates with mischief.,0,0,I Saw Mommy Kissing Santa Claus,en +49689,Broken Wings,2002-10-24,87.0,,,tt0317842,,"Daphne and her four children try to cope with the abrupt death of husband/father. As the family seems to fall apart, a sudden incident gives them a chance to heal their 'broken wings'.",0,0,Knafayim Shvurot,he +13440,The Truth About Charlie,2002-10-25,104.0,,,tt0270707,,"The Truth About Charlie is a 2002 remake of the 1963 film Charade (which starred Cary Grant and Audrey Hepburn). It is also an homage to François Truffaut's Shoot the Piano Player and that film's star Charles Aznavour appeared as himself and sang his song ""Quand tu m'aimes"" (English version).",0,0,The Truth About Charlie,en +162458,Mods,2002-10-25,59.0,,,tt0351369,,A quasi-musical by Serge Bozon.,0,0,Mods,fr +119816,Kiss and Run,2002-10-25,88.0,,,tt0349686,,,0,0,Kiss and Run,de +52735,Love in the Time of Money,2002-11-01,90.0,,,tt0292501,,"New York serves as a backdrop for a cast of characters in search of love, lust or lucre including a woman who makes awkward moves on the man renovating her SoHo loft, an embezzler, a sleazy artist and a phone psychic.",0,0,Love in the Time of Money,en +119374,The Forest,2002-11-01,105.0,,,tt0210971,,"Young man, of Portuguese nobility ascendancy, starts working in a rubber plantation in the Amazon, in 1912, and falls in love with pretty Yayá, a married woman.",0,0,A Selva,en +12636,Godzilla Against MechaGodzilla,2002-11-02,88.0,,374512,tt0314111,Fight to a crumbling fall!,"After the appearance of a new Gojira (Godzilla), the Japanese government builds a robotic Godzilla from the bones of the original monster that attacked Tokyo in 1954 to stop the beast.",8500000,0,ゴジラ×メカゴジラ,ja +12536,Home Alone 4,2002-11-02,89.0,,9888,tt0329200,,"Kevin McCallister's parents have split up. Now living with his mom, he decides to spend Christmas with his dad at the mansion of his father's rich girlfriend, Natalie. Meanwhile robber Marv Merchants, one of the villains from the first two movies, partners up with a new criminal named Vera to hit Natalie's mansion.",0,0,Home Alone 4,en +156,Wilbur Wants to Kill Himself,2002-11-08,111.0,,,tt0329767,Meet a man dying to live,"The strange comedy film of two close brothers; one, Wilbur, who wants to kill himself, and the other, Harbour, who tries to prevent this. When their father dies leaving them his bookstore they meet a woman who makes their lives a bit better yet with a bit more trouble as well.",0,0,Wilbur begår selvmord,da +34840,The Housekeeper,2002-11-13,91.0,,,tt0291538,,"After his wife leaves him for another man, Jacques hires a housekeeper, Laura, to keep his Paris apartment in order. As he starts increasing her hours and spending more time with her on her days off, Jacques is torn between the pleasure of Laura's company, and the headache that such an intrusion brings to his new domain of singlehood.",0,0,Une femme de ménage,fr +56744,Murder in Greenwich,2002-11-15,89.0,,,tt0339422,,"The story of Martha Moxley, 15 year old girl murdered in Greenwich in the 1970's, her murder going unsolved for 25 years.",0,0,Murder in Greenwich,en +11458,People I Know,2002-11-21,100.0,,,tt0274711,,A New York press agent must scramble when his major client becomes embroiled in a huge scandal.,20000000,0,People I Know,en +1416,The Coast Guard,2002-11-22,96.0,,,tt0341384,,An overzealous soldier mentally deteriorates after killing an innocent man he thought was a spy.,0,0,해안선,ko +102428,Salomé,2002-11-22,85.0,,,tt0332743,,Salomé's story interpreted by a director and a troupe of flamenco dancers.,0,0,Salomé,en +51939,The Hire: Beat the Devil,2002-11-22,9.0,,113589,tt0338768,,"The Driver drag-races the Devil, in order to earn James Brown his soul.",0,0,The Hire: Beat the Devil,en +57326,Sabretooth,2002-11-26,90.0,,,tt0284445,Be prepared to be ripped apart!,"Using fossilized DNA, a scientist resurrects one of nature's most fearsome predators, a sabretooth tiger. Scientific ambition turns deadly, however, when the creature escapes and begins savagely stalking its prey - the human race.",0,0,Sabretooth,fr +18015,Shark Attack 3: Megalodon,2002-11-26,99.0,,389867,tt0313597,Terror has surfaced...,When two researchers discover a colossal shark's tooth off the Mexican coast their worst fears surface - the most menacing beast to ever rule the waters is still alive and mercilessly feeding on anything that crosses its path. Now they must hunt the fierce killer and destroy it... before there is no one left to stop it,0,0,Shark Attack 3: Megalodon,fr +9016,Treasure Planet,2002-11-26,95.0,,,tt0133240,Find your place in the universe.,"When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic ""loot of a thousand worlds,"" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!",140000000,109578115,Treasure Planet,en +99642,A New Life,2002-11-27,102.0,,,tt0310313,Are you ready?,A 2002 French experimental film directed by Philippe Grandrieux and starring Zachary Knighton and Anna Mouglalis. The story involves a young American who falls obsessively in love with a mysterious courtesan named Melania against the backdrop of a dilapidated Eastern European landscape.,0,0,La vie nouvelle,fr +89591,Black Plague,2002-12-01,115.0,,,tt0284851,"I will destroy everything - The servant who obeys you, the Physician who heals you, the Priest who gives you absolution.",Paranoia sets in as the Black Death strikes European villagers in the 14th century.,0,0,Anazapta,en +61113,The 4th Tenor,2002-12-03,97.0,,,tt0275170,Rodney gets no respect - until he changes his tune!,"A restaurant owner falls in love with an opera singer and, desperate to impress her, travels to Italy to learn how to sing.",0,0,The 4th Tenor,en +204712,The Little Polar Bear: Lars and the Little Tiger,2002-12-04,0.0,,9088,tt0384252,Adventures are much more fun if you can share them with someone.,"Hans der Beer's beloved polar bear Lars returns for more adventures, with a new feline friend.",0,0,"Der kleine Eisbär - Neue Abenteuer, neue Freunde",de +41209,WiseGirls,2002-12-06,96.0,,,tt0284655,Crime never looked so good,A new waitress working at an Italian restaurant in New York City finds herself entangled in a mob-run underworld of drug dealing and murder.,0,0,WiseGirls,en +2757,Adaptation.,2002-12-06,114.0,http://www.sonypictures.com/homevideo/adaptation/index.html,,tt0268126,"From the creator of Being John Malkovich, comes the story about the creator of Being John Malkovich.",A love-lorn script writer grows increasingly desperate in his quest to adapt the book 'The Orchid Thief'.,19000000,32801173,Adaptation.,en +13369,Empire,2002-12-06,90.0,,,tt0262396,Two worlds collide.,A big time drug dealer Victor Rosa is looking to get out of the game and sees his chance with a big deal with a new friend who happens to be a Wall St. stockbroker. Thinking this will be his chance to go out on top Victor soon finds out that he has been double crossed and his last option is to get revenge.,4000000,18591272,Empire,en +7299,Equilibrium,2002-12-06,107.0,,,tt0238380,"In a future where freedom is outlawed, outlaws will become heroes.","In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.",20000000,5359645,Equilibrium,en +9776,Head of State,2003-01-01,95.0,,,tt0325537,,"When a presidential candidate dies unexpectedly in the middle of the campaign, the Democratic party unexpectedly picks a Washington, D.C. alderman, Mays Gilliam (Rock) as his replacement .",0,0,Head of State,en +152611,7:35 in the Morning,2003-01-01,8.0,,,tt0406501,,A woman enters a restaurant one morning - only to be met with silence instead of people talking.,0,0,7:35 de la mañana,es +70119,Le roman de Georgette,2003-01-01,100.0,,,tt0381551,,,0,0,Le roman de Georgette,fr +46773,The Blossoming of Maximo Oliveros,2005-07-13,100.0,,,tt0479506,,A 12-year-old gay who comes from a criminal family falls in love with a handsome policeman.,0,0,Ang Pagdadalaga ni Maximo Oliveros,tl +28730,Live from Baghdad,2002-12-07,108.0,,,tt0319758,,"A group of CNN reporters wrestle with journalistic ethics and the life-and-death perils of reporting during the Gulf War.A Directors Guild Award-winning movie for director Mick Jackson, starring Michael Keaton and Helena Bonham Carter. In 1990, CNN was a 24-hour news network in search of a 24-hour story. They were about to find it in Baghdad. Veteran CNN producer Robert Wiener and his longtime producing partner Ingrid Formanek find themselves in Iraq on the eve of war. Up against the big three networks, Weiner and his team are rebels with a cause, willing to take risks to get the biggest stories and - unlike their rivals - take them live at a moment's notice. As Baghdad becomes an inevitable US target, one by one the networks pull out of the city until only the crew from CNN remains. With a full-scale war soon to be launched all around them, and CNN ready to broadcast whatever happens 24 hours a day, Wiener and Formanek are about to risk their lives for the story of a lifetime.",0,0,Live from Baghdad,en +10775,Infernal Affairs,2002-12-12,101.0,,58588,tt0338564,Loyalty. Honor. Betrayal.,"Chan Wing Yan, a young police officer, has been sent undercover as a mole in the local mafia. Lau Kin Ming, a young mafia member, infiltrates the police force. Years later, their older counterparts, Chen Wing Yan and Inspector Lau Kin Ming, respectively, race against time to expose the mole within their midst.",0,8708932,無間道,cn +21118,Waking Up in Reno,2002-12-13,91.0,,,tt0219400,This foursome is sharing lots more than room service!,"Candy and Lonnie Earl are just crazy about each other. The problem: she's married to Roy and he's married to Darlene. So far it's been a secret affair. But that's about to change, because this foursome is driving cross-country and headed for some big surprises.",0,261603,Waking Up in Reno,en +201,Star Trek: Nemesis,2002-12-13,117.0,,115570,tt0253754,A generation's final journey... begins.,"En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.",60000000,67312826,Star Trek: Nemesis,en +285649,L'erba proibita,2002-12-13,,,,tt0319371,,,0,0,L'erba proibita,it +9613,Spider,2002-12-13,98.0,http://www.spiderthemovie.com/,,tt0278731,The only thing worse than losing your mind... is finding it again.,"A mentally disturbed man takes residence in a halfway house. His mind gradually slips back into the realm created by his illness, where he replays a key part of his childhood.",0,0,Spider,en +172413,The True Meaning of Christmas Specials,2002-12-14,0.0,,,tt0348254,,The True Meaning of Christmas Specials is a Canadian TV special hosted by Dave Foley.,0,0,The True Meaning of Christmas Specials,en +35907,Kaante,2002-12-20,152.0,,,tt0294662,,"Kill, threaten, kidnap, maim, murder, steal... Meet the masters. In a world where loyalties are easily abandoned and allegiances bought, six perfect strangers come together to pull off the perfect crime. they must all trust each other. But when their simple robbery explodes into a bloody ambush, the ruthless killers realize that one of them is a cop. But which one?",0,0,Kaante,en +14317,The Wild Thornberrys Movie,2002-12-20,85.0,,,tt0282120,You don't need extraordinary powers to do extraordinary things.,"Eliza and Debbie are two sisters who don't always get along. But their relationship is put to the test when Debbie's life is in danger, and Eliza might have to give up her power to talk to animals....",35000000,0,The Wild Thornberrys Movie,en +1574,Chicago,2002-12-26,113.0,,,tt0299658,"If You Can't Be Famous, Be Infamous",Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.,45000000,306776732,Chicago,en +34469,Julius Caesar,2002-12-27,240.0,,,tt0284741,,Twenty year-old Julius Caesar flees Rome for his life during the reign of Sulla but through skill and ambition rises four decades later to become Rome's supreme dictator.,0,0,Julius Caesar,en +105884,Ale e Franz - È tanto che aspetti?,2002-12-31,0.0,,,tt1843912,,,0,0,Ale e Franz - È tanto che aspetti?,it +166671,The Long and Short of It,2003-01-01,5.0,,,tt0343992,,A workman gets some unexpected help from two people of vastly different sizes.,0,0,The Long and Short of It,en +44472,Wasp,2003-01-01,26.0,,,tt0388534,,"Zoë is a single mother who lives with her four children in Dartford. She is poor and can't afford to buy food. One day her old flame drives by and asks her to go on a date with him. Scared that he doesn't want to go out with her, she lies and tells him that she is just babysitting the kids. This will be her first date in years.",0,0,Wasp,en +39839,Baghban,2003-01-01,183.0,,,tt0337578,Can you depend on your family?,"Raj Malhotra and wife Pooja have four sons. The sons have settled down professionally and are quite independent. However, when Raj Malhotra retires, none of his children want to be burdened with the responsibility of taking care of their parents. Strangely, it is the adopted son who proves to be the most kind hearted of them all. Salman's girlfriend eventually marries him. The question is, will Raj and Pooja's sons learn the folly of their ways and turn over a new leaf?",0,1100000,बागबान,hi +112961,Nola,2003-01-01,97.0,http://www.nolathemovie.com/,,tt0317950,,"An urban fairy tale-romantic comedy, in which Nola, an aspiring songwriter, leaves an abusive Kansas home and journeys to New York to find her biological father. Once there, she finds more than she expected.",0,10550,Nola,en +224251,Hunger Point,2003-01-01,100.0,,,tt0335163,It's hard to feel normal when you are trying to be perfect.,"Meet the Hunters your typical all-American family: two committed parents and two lovely daughters. However, looks can be deceiving because this family is plagued by the nit-picking comments of an overzealous mother determined to keep her daughters thin. The results of this mother's tyranny is unimaginable. This movie really captures the dangers of eating disorders like no other. Based on the best-selling book of the same name.",0,0,Hunger Point,en +59046,Mio cognato,2003-01-01,,,,tt0378361,,,0,0,Mio cognato,it +24837,August Underground's Mordum,2003-01-01,77.0,,395556,tt0410332,,"Two deranged friends bring along another guy to go on a random murder rampage. They kidnapped lesbian lovers, couples and they torture them in any way that the viewer can imagine. Your worst fears will come true in this shocking account of a killing spree.",300,0,August Underground's Mordum,en +255940,In Order Not to Be Here,2003-01-01,30.0,,,tt0343827,,A night flight through hysteria and police surveillance in suburban America.,0,0,In Order Not to Be Here,en +23898,The Stroll,2003-01-01,90.0,,,tt0372478,,No overview found.,0,0,Прогулка,ru +157847,Joe,2014-04-11,118.0,,,tt2382396,,The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.,4000000,2365467,Joe,en +135313,Welcome to Sherwood! The Story of 'The Adventures of Robin Hood',2003-01-01,56.0,,,tt0385330,,"Film historians examines the making of the 1938 ""The Adventures of Robin Hood.""",0,0,Welcome to Sherwood! The Story of 'The Adventures of Robin Hood',nl +69217,Black Cadillac,2003-01-01,93.0,,,tt0313285,Revenge in the driver's seat,Three young men become terrorized in a high-speed car chase with a mysterious pursuant.,0,0,Black Cadillac,en +5965,Scorcher,2003-01-01,91.0,,,tt0303017,,The only hope for humanity to survive a natural disaster is to detonate a nuclear bomb in Los Angeles.,0,0,Scorcher,fr +62289,A Good Night to Die,2003-01-01,100.0,,,tt0203536,,"One day in the life of a hit man, Ronnie, who spends it trying to save the life of fellow hit man, August, who he had brought into the business three years ago. August has become a real problem for some of the bosses around town, and Ronnie will soon find out just what his Frankenstein's monster will cost him.",0,0,A Good Night to Die,it +246355,Saw,2003-01-01,9.0,,,tt0495241,,"Saw is an Australian nine-and-a-half-minute short subject horror film that was later expanded to a full feature film. The story is about David, an orderly at a hospital, who tells his horrific story of being kidnapped and forced to play a vile game of survival.",0,0,Saw,en +30349,Mail Order Bride,2003-01-01,84.0,,,tt0339607,,"Nobody likes to be made a fool of, especially no the mafia. So, when it comes to light that a number of men from The Mob in New York have fallen for a Russian mail-order bride, who has blatantly ripped each of them off, their boss is not impressed. In fact, Tony Santini thinks the only way to prove that you shouldn't mess with the mob is to send his nephew to Russia to bring back the beautiful but manipulative Nina.",0,0,Mail Order Bride,en +21956,Scooby-Doo! and the Monster of Mexico,2003-01-01,75.0,,,tt0369903,,"A friend of Fred's, Alejo Otero invites the Scooby gang to Veracruz Mexico where they find the monster, El Chupacabra is terrorizing the town.",0,0,Scooby-Doo! and the Monster of Mexico,en +19187,The Hebrew Hammer,2003-01-01,85.0,,,tt0317640,,A Jewish blaxploitation hero saves Hanukkah from the clutches of Santa Claus's evil son.,1000000,0,The Hebrew Hammer,en +32235,Northfork,2003-01-01,103.0,,,tt0322659,,"""We are all angels. It is what we do with our wings that separates us."" In the next two days, the town of Northfork will cease to exist. The year is 1955 and Northfork is literally about to be ""dammed,"" flooded to make way for a new hydroelectric project.",0,0,Northfork,en +14694,The Snow Walker,2003-01-01,103.0,,,tt0337721,,A bush pilot in nothern Canada who with the aid of modernity thinks he can handle it all & knows it all. After reluctantly agreeing to transport a local indian girl to a medical facility his light plane crashes & they have to survive whilst finding their way back to civilization. Along the journey the man finds a new respect for the native ways as they battle to survive the elements.Strangely this movie is barely rated as it's viewed as one of the best & most moving films by all who've watched it.,0,0,The Snow Walker,en +50387,Grimm,2003-01-01,103.0,,,tt0365289,,"One cold winter's day, Jacob and his sister Marie are abandoned in a wood by their out-of-work father. In his jacket Jacob finds a letter from their mother urging them to go to her brother in Spain. Once in Spain, it turns out that their uncle is dead. Marie meets Diego, a wealthy charming Spanish surgeon, and falls in love with him. Diego lives with his sick, domineering sister, Teresa. To Jacob's astonishment, Marie wants to marry Diego. Even after the wedding has taken place, jealous Jacob tries to get his sister away from Diego. When this doesn't succeed, Jacob starts to provoke his brother-in-law. It soon transpires that no-one will go unpunished for this.",0,0,Grimm,nl +48585,Ward 13,2003-01-01,15.0,http://www.ward13.com.au/index.html,,tt0379000,What price would you put on your health?,"After a car accident, Ben wakes up in hospital. Not knowing where he is or what is going on, he starts exploring the corridors...only to find that the staff don't have his health in mind! The hapless patient must pull himself together and do everything he can to escape. It's an action/horror/comedy — ending with the wheelchair chase from hell!",0,0,Ward 13,en +46806,Eloise at the Plaza,2003-01-01,89.0,,,tt0346932,,This is a comedy about a six-year-old girl who lives at a 5 star plaza and causes havoc.,0,0,Eloise at the Plaza,en +18927,Stander,2003-01-01,116.0,,,tt0326208,Good cop. Great criminal.,"The life and career of Andre Stander, a South African police officer turned bank robber.",0,31651,Stander,en +32233,Running on Karma,2003-01-01,93.0,,,tt0374184,,"A monk turned body-builder, with the gift to see into people's lives, befriends a female cop, and uses his gift to change the force of Karma and her destiny.",0,0,大隻佬,cn +11572,Kaena: The Prophecy,2003-01-02,85.0,,,tt0297753,,"Compelled by a mysterious force, Kaena, a rebellious, high-spirited teenage girl will defy the High Priest and her people's ancestral beliefs to take the perilous journey through the Axis and discover what dark secrets lie beyond the clouds.",0,8500,Kaena: La prophétie,fr +43544,Ma che colpa abbiamo noi,2003-01-10,0.0,,,tt0312929,,,0,0,Ma che colpa abbiamo noi,it +202475,The Same River Twice,2003-01-17,78.0,,,tt0342956,,"From peyote to prozac, a sensitive portrait of five former hippies now approaching middle age.",0,0,The Same River Twice,en +26899,The Mudge Boy,2003-01-17,94.0,,,tt0339419,,"Duncan Mudge, mid-teens, lives apart from his rural world populated by his distant father and rough local kids. His main companionship is a chicken left after his mother's death until the neighbor's son befriends him.",800000,62852,The Mudge Boy,en +20164,Bad Boys,2003-01-17,120.0,,,tt0323551,A True Story,"The story bases on four Finnish brothers, nicknamed 'the Eura Daltons' who received nation-wide notoriety for tearing gas pumps apart when they needed cash. The cast is an impressive one: the brothers are portrayed by Peter Franzen, Lauri Nurkse, Niko Saarela and Jasper Pääkkönen while their really evil father is played by Vesa-Matti Loiri, one of the grand old men of Finnish cinema.",0,0,Pahat pojat,fi +10744,The Cooler,2003-01-17,101.0,,,tt0318374,When your life depends on losing... the last thing you need is lady luck.,"(William H. Macy) works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow (Alec Baldwin), is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario (Maria Bello).",32000000,0,The Cooler,en +1550,Pieces of April,2003-01-19,81.0,http://www.piecesofaprilmovie.com/,,tt0311648,She's the one in every family.,"Quirky and rebellious April Burns lives with her boyfriend in a low-rent New York City apartment miles away from her emotionally distant family. But when she discovers that her mother has a fatal form of breast cancer, she invites the clan to her place for Thanksgiving. While her father struggles to drive her family into the city, April -- an inexperienced cook -- runs into kitchen trouble and must ask a neighbor for help.",300000,0,Pieces of April,en +168647,Sounder,2003-01-19,96.0,,,tt0324030,,"This is a coming-of-age story of a boy living in the Depression era of the South. ""Boy"" (Daniel Lee Robertson III) learns the hard way about the realities of being black, poor and unable to read. But he also learns about the deep love of family, the long-suffering loyalty of a dog and the importance of words, faith, stories & truth.",0,0,Sounder,en +28026,Prey for Rock & Roll,2003-01-20,104.0,,,tt0307351,For these girls... it's all about survival.,"Prey for Rock & Roll is set in the Los Angeles club scene of the late 1980s and follows the story of Jacki (Gershon) and her all-girl punk rock band, Clam Dandy. On the verge of turning 40, Jacki decides that if the band's one last shot at the big time is unsuccessful, she will give up her dreams of stardom. Along the way, the women are rocked by personal tragedies that threaten to break up the band before they can get their last shot at success.",0,0,Prey for Rock & Roll,en +13654,101 Dalmatians II: Patch's London Adventure,2003-01-21,70.0,,100693,tt0324941,A New Hero Unleashed.,"Being one of 101 takes its toll on Patch, who doesn't feel unique. When he's accidentally left behind on moving day, he meets his idol, Thunderbolt, who enlists him on a publicity campaign.",0,0,101 Dalmatians II: Patch's London Adventure,en +38901,"Milwaukee, Minnesota",2003-01-21,95.0,http://www.milwaukee-minnesota.com/,,tt0285727,,"Having lived his entire life under the watchful eye of his overbearing mother, Albert must fend for himself when an unidentified automobile suddenly kills her. Free for the first time, Albert quickly responds to the bait dangling in front of him, putting his aggressors against one another in a race for his trust. Using his skills that make him a gifted fisherman, Albert turns the tables on his seemingly doomed fate, capturing the heart of the woman most eager to deceive him, and fooling the man most intent on destroying him.",0,17350,"Milwaukee, Minnesota",en +24078,Off the Map,2003-01-22,108.0,,,tt0332285,,"An 11-year-old girl watches her father come down with a crippling depression. Over one summer, she learns answers to several mysteries and comes to terms with love and loss.",0,0,Off the Map,en +21525,Tupac: Resurrection,2003-01-23,112.0,http://www.tupac-resurrection.com/,,tt0343121,In his own words,"Home movies, photographs, and recited poetry illustrate the life of Tupac Shakur, one of the most beloved, revolutionary, and volatile hip-hop MCs of all time.",300000,7808524,Tupac: Resurrection,en +10727,Darkness Falls,2003-01-24,86.0,,,tt0282209,Evil rises.,"A vengeful spirit has taken the form of the Tooth Fairy to exact vengeance on the town that lynched her 150 years earlier. Her only opposition is the only child, now grown up, who has survived her before",0,0,Darkness Falls,en +33784,Huset vid vägens ände,2003-01-29,73.0,,,tt1105281,,"Four college students majoring in art have rented a remote summerhouse for the weekend to get some peace and quiet while working on their latest projects. Their stay quickly becomes increasingly unpleasant however as they start having strange visions. Is the house haunted or are their minds just playing tricks on them? Well, they're just about to find out.",0,0,Huset vid vägens ände,en +1647,The Recruit,2003-01-31,115.0,,,tt0292506,Trust. Betrayal. Deception. In the C.I.A. nothing is what it seems.,"A brilliant CIA trainee must prove his worth at the Farm, the agency's secret training grounds, where he learns to watch his back and trust no one.",0,101191884,The Recruit,en +25988,The Sleeping Dictionary,2003-01-31,109.0,,,tt0242888,Learn to speak her language.,"A young Englishman is dispatched to Sarawak to become part of the British colonial government. He encounters some unorthodox local traditions, and finds himself faced with tough decisions of the heart involving the beautiful Selima, the unwitting object of his affections.",0,0,The Sleeping Dictionary,en +9358,Final Destination 2,2003-01-31,90.0,,8864,tt0309593,Death is like a boomerang. it keeps coming back,"When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.",26000000,90426405,Final Destination 2,en +160324,"Hello, Friend",2003-02-02,11.0,,,tt0378031,,A satirical look at modern technology.,0,0,"Hello, Friend",en +6038,Shanghai Knights,2003-02-06,115.0,,59567,tt0300471,A Royal Kick In The Arse.,"The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.",50000000,88323487,Shanghai Knights,en +11373,Strawberries in the Supermarket,2003-02-06,90.0,,,tt0322807,,Ex-soldier storms supermarket and takes all cashiers captive because one of them insulted his grandmother.,0,0,Jagoda u supermarketu,sr +14873,The Jungle Book 2,2003-02-07,72.0,,97459,tt0283426,Feel the jungle beat,"Mowgli, missing the jungle and his old friends, runs away from the man village unaware of the danger he's in by going back to the wild.",20000000,135680000,The Jungle Book 2,en +10930,The Flower of Evil,2003-02-09,104.0,,,tt0322289,,"Three generations of a wealthy Bordeaux family are caught in the crossfire when Anne decides to run for mayor, thanks to a political pamphlet that revives an old murder scandal.",0,0,La fleur du mal,fr +338,"Good bye, Lenin!",2003-02-09,121.0,http://www.good-bye-lenin.de/index2.php,,tt0301357,The German Democratic Republic lives on -- in 79 square meters!,An affectionate and refreshing East/West-Germany comedy about a boy who’s mother was in a coma while the Berlin wall fell and when she wakes up he must try to keep her from learning what happen (since she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.,4800000,79384880,"Good bye, Lenin!",de +26131,Straight From the Heart,2003-02-09,100.0,,,tt0340380,,"Jordan Donavan, a photographer in New York, is so disappointed when after five years of going steady Edward Morgan offers her not marriage but just to move in with him, that she accepts the match-making arranged via a magazine by her female friend with Tyler Ross, a horse rancher in the West, whose candidacy was actually also posted by his sister. After a bad start they soon grow closer.",0,0,Straight From the Heart,en +44287,Lost Junction,2003-02-14,95.0,,,tt0283453,A Dangerous Love Affair. A Lethal Deception.,A hitchhiker gets a ride with an oddball woman who has her husband's body in the trunk of the car.,0,0,Lost Junction,en +11635,Old School,2003-02-21,91.0,http://www.oldschool-themovie.com,,tt0302886,"All the fun of college, none of the education.",Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.,24000000,87055349,Old School,en +86970,1st to Die,2003-02-23,0.0,,,tt0252133,"The honeymoon murders...to catch the killer, she'll become the bait.",A homicide inspector -- Lindsay Boxer -- who teams with three other professional women to catch an ingenious serial killer targeting newlyweds on their wedding nights.,0,0,1st to Die,en +8965,Atlantis: Milo's Return,2003-02-25,70.0,http://disneydvd.disney.go.com/atlantis-milos-return.html,100965,tt0344864,,"Three different stories come to life in this sequel to the hit animated Disney adventure. Explorer Milo Thatch, his new sweetheart, Queen Kida, and the rest of the team are preparing to rebuild the underwater city. But trouble crops up. Harnessing the power of the crystal of Atlantis, the adventurers set out to defend their kingdom against dark forces that threaten from sand, sea and snow.",0,0,Atlantis: Milo's Return,en +34995,Puerto Vallarta Squeeze,2003-02-26,117.0,,,tt0340919,,An American government hit man on the run makes a pact with two travelers to help him disappear in the Mexican jungle.,0,0,Puerto Vallarta Squeeze,en +10749,Sophiiiie!,2003-02-28,107.0,,,tt0329632,,"The film starts in the early evening of a normal day: Sophie, a 20 year old girl, is pregnant and wanders through the night to get sure about her future life. Does she want to be a mother or do an abortion? Does she love her friend or not? Who is the father of her unborn baby? Trying to figure out what to do Sophie encounters many people, and in the morning she has come to a decision. But this is not the movie's end...",0,0,Sophiiiie!,de +12601,Garden of Love,2003-03-03,86.0,,,tt0355473,,A woman whose family was brutally murdered when she was little is instructed by her family's ghosts to bring the killers to them so their souls can rest in peace.,0,0,Garden of Love,de +100594,The Book of Fate,2003-03-06,0.0,,,tt0359564,,,0,0,Kohtalon kirja,fi +20,My Life Without Me,2003-03-07,106.0,http://www.clubcultura.com/clubcine/clubcineastas/isabelcoixet/mividasinmi/index.htm,,tt0314412,,A Pedro Almodovar production in which a fatally ill mother with only two months to live creates a list of things she wants to do before she dies with out telling her family of her illness.,0,9726954,My Life Without Me,en +17457,The Twins Effect,2003-03-08,107.0,,192541,tt0351887,,"An evil Duke attempts to kill and collect the blood of a royal family of European vampires in order to become all powerful. The only surviving member of the family travels to Hong Kong, only to complicate his struggle by falling in love with a mortal girl who just happens to have a vampire hunter for a brother.",0,0,千機變,cn +19766,Inspector Gadget 2,2003-03-11,89.0,http://en.wikipedia.org/wiki/Inspector_Gadget_2,237445,tt0301454,Inspect the unexpected.,"After capturing Claw, all the criminals have gone into hiding until, Claw escapes! Gadget thinks he will get the case, but everyone else has other planes. A new version of the Gadget project is unveiled in the form of G2. Strict orders are given for Gadget to stay away from G2 and every crime scene, but Gadget feels he is needed more than anyone.",12000000,0,Inspector Gadget 2,en +10632,The Hunted,2003-03-11,94.0,,,tt0269347,Some men should not be found.,"In the wilderness of British Columbia, two hunters are tracked and viciously murdered by Aaron Hallum. Former Special Operations instructor, L.T. Bonham is approached and asked to apprehend Hallum, his former student, who has 'gone rogue' after suffering severe battle stress from his time in Kosovo.",55000000,34234008,The Hunted,en +54354,Eila,2003-03-14,,,,tt0343624,,,0,0,Eila,fi +10929,Willard,2003-03-14,100.0,,375886,tt0310357,"When the cat's away, the rats will play.","Desperate for companionship, the repressed Willard befriends a group of rats that inhabit his late father's deteriorating mansion. In these furry creatures, Willard finds temporary refuge from daily abuse at the hands of his bedridden mother and his father's old partner, Frank. Soon it becomes clear that the brood of rodents is ready and willing to exact a vicious, deadly revenge on anyone who dares to bully their sensitive new master.",22000000,0,Willard,en +55735,Loco Love,2003-03-16,94.0,,,tt0293452,"Her Familia, His Problema!","Just how far would you go to get financing for your business? Donald Chandler is the owner of a restaurant who suddenly finds himself without a business or a job when his wife leaves him, taking the deed to the eatery with her. Eager to start over, Donald goes into a business partnership with Miguel Sanchez, a gardener who was taking care of Donald's lawn until he won a fortune in the lottery.",0,0,Loco Love,en +21052,Levity,2003-03-16,100.0,,,tt0304328,How you gonna make it right?,"Manuel Jordan is a man who is free after serving 23 years for killing a teenager during an attempted robbery. After nearly two decades of staring at his victim's face on a newspaper clipping in his cell, the paroled man attempts to find redemption, in the form of a mysterious minister and two needy women",7500000,209151,Levity,en +21250,Charlotte's Web 2: Wilbur's Great Adventure,2003-03-18,79.0,,263193,tt0355315,,"Wilbur the pig knows how important friendship is - he learned that from a spider named Charlotte. So when Wilbur meets Cardigan, a lonely lamb, Wilbur immediately makes him his friend.",0,0,Charlotte's Web 2: Wilbur's Great Adventure,en +200796,Show,2003-03-19,,,,,,,0,0,Show,pl +51349,Little Longnose,2003-03-19,82.0,,,tt0378262,,"When he refused to support power-hungry witch, the good shoemaker's boy, Jacob is transformed into a hunchbacked dwarf with overlong nose. Of their mother no longer recognized, mocked by the people of the city and driven away, Jacob runs one day a goose on the road. Together with the spring animal - in fact the king's daughter Greta enchanted - Jacob is now trying to make the transformation to reverse and put the wicked witch craft.",0,0,Karlik Nos,ru +24357,Final Flight of the Osiris,2003-03-21,9.0,,,tt0350934,,"Immediately before the events of The Matrix Reloaded, the crew of the hovercraft Osiris discovers a quarter of a million sentinels drilling through the surface of the earth towards the last human city of Zion. But can the Osiris survive long enough to warn Zion?",0,0,Final Flight of the Osiris,en +6171,Dreamcatcher,2003-03-21,136.0,http://dreamcatchermovie.warnerbros.com/,,tt0285531,A circle of friendship. A web of mystery. A pattern of fear.,"Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.",68000000,75715436,Dreamcatcher,en +16356,Riverworld,2003-03-22,86.0,,,tt0310952,,"A movie for the Sci Fi Channel based on the book series by Philip José Farmer. The location is Riverworld, a mysterious and treacherous land where every human who died between the years 99,000 BC and 2,200 AD has been resurrected on the banks of a huge river.",0,0,Riverworld,en +376394,To Mars by A-Bomb: The Secret History of Project Orion,2003-03-26,60.0,,,tt1039992,,Top scientists want to build a nuclear bomb-powered spaceship to visit Mars and the planets.,175000,0,To Mars by A-Bomb: The Secret History of Project Orion,en +98250,The Long Ride Home,2003-03-27,87.0,,,tt0283452,"Dead or alive, justice will be served",A man fights the law and the lawless in order to reunite with his wife and son in the 1860s west.,3500000,0,The Long Ride Home,en +10735,What a Girl Wants,2003-03-27,105.0,,,tt0286788,Trying to fit in. Born to stand out.,"An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.",0,0,What a Girl Wants,en +26841,Don't Even Think,2003-03-31,82.0,,,tt0382631,,A few young men are planning a criminal operation based on the action movies they saw.,0,700000,Даже не думай,ru +41121,Warm Spring,2003-04-01,100.0,,,tt1054024,,Family roles and responsibilities are questioned when an elderly father welcomes a foster child into his home despite the adamant disapproval of his son and daughter-in-law.,0,0,暖春,zh +444623,The Idiot,2003-04-01,550.0,,,tt0366028,,TV miniseries of the Dostoevsky novel.,0,0,Idiot,ru +157152,Moving Alan,2003-04-04,83.0,,,tt0310741,,"The story follows the two sisters Melissa and Emily, the former who accidentally killed her husband Alan and the latter who agrees to help her bury her husband in the desert. While there, they encounter a trucker who hates his dogs and takes a special dislike to the sisters, a Park Ranger who takes a shine to Melissa and finally a strange, homeless man who thinks he is in a soap opera. While Melissa and Emily try their best to find a suitable place to bury Alan, much of their history is revealed and the day in the desert has a great impact on their lives.",0,0,Moving Alan,en +80219,Homeless to Harvard: The Liz Murray Story,2003-04-07,104.0,,,tt0338109,"When there was nothing to believe in, she believed in herself.","Based on a true story. Liz Murray is a young girl who is taken care of by her loving, but drug-addicted parents. Liz becomes homeless at 15 and after a tragedy comes upon her, she begins her work to finish high school.",0,0,Homeless to Harvard: The Liz Murray Story,en +27358,Monsturd,2003-04-08,80.0,,,tt0364527,Don't get caught with your pants down!,"A serial killer mutates with a chemical inside a sewer, to become a monster made of human waste just as the FBI and police are onto him.",0,0,Monsturd,en +13411,Malibu's Most Wanted,2003-04-10,86.0,,,tt0328099,,"Bill Gluckman, a wealthy white Jewish senator is running for the office of Governor. His son ""B-Rad"" dresses, speaks, and acts as if he were a gangster from the inner city. The campaign team members hire two actors, who don't know any more about inner-city life than B-Rad, to act as gang members, kidnap him, and take him to South Central Los Angeles where they hope Brad will be ""scared white"".",0,0,Malibu's Most Wanted,en +271677,The Hero: Love Story of a Spy,2003-04-10,160.0,,,tt0347167,Love story of a spy,"Arun Khanna is a spy for the Indian government whose aid is enlisted to stop ISI Chief Ishak Khan. Khan is trying to build a nuclear bomb with which he can liberate Kashmir from the Indians. A battle of wits ensues. When Khan detonates a bomb at Khanna's engagement party to a fellow spy, Khanna's resolve is only strengthened. Now not only does he have to fight Khan, but he also has to track down his missing fiancee.",0,0,The Hero: Love Story of a Spy,hi +2662,House of 1000 Corpses,2003-04-11,89.0,http://robzombie.com/movies/house-of-1000-corpses/,105625,tt0251736,You'll never get out alive.,Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.,7000000,16829545,House of 1000 Corpses,en +19338,Out of the Ashes,2003-04-13,113.0,,,tt0311210,,"The real-life story of Gisella Perl, a Jewish Hungarian doctor imprisoned in the notorious Auschwitz death camp of World War II.",0,0,Out of the Ashes,en +33005,Mimic: Sentinel,2003-04-14,77.0,,10721,tt0330634,,"A man enclosed in a plastic bubble, his sister, and their best friend must defend an apartment complex from the mutant Judas Breed insects.",0,0,Mimic: Sentinel,en +25536,PTU,2003-04-17,88.0,,171586,tt0250638,,"Over the course of one night, a team of cops frantically search for their colleague's missing gun.",0,0,PTU,cn +77986,A Key to the Bedroom,2003-04-18,136.0,,,tt0329268,,"In the beginning of a new century the capital of Russia is just amazing and full of poets, beautiful women and arts...",0,0,Klyuch ot Spalni,en +48596,Ana and the Others,2003-04-21,80.0,,,tt0318988,,"Twenty-something Ana, now living in Buenos Aires, returns to her native city of Paraná. She meets old school mates, old friends, makes new ones, and starts to rethink her life, and perhaps change her future.",0,0,Ana y los otros,en +64805,Body to Body,2003-04-22,101.0,,,tt0308131,,"Laura Bartelli is a stripper in a French bar. She retires after a moody landscape architect named Marco Tisserand asks her to abandon her life and share his. However, after her red Volkswagen runs off the road en route to the rendezvous, she ends up scarred and comatose in a hospital. Marco stays at her bedside.",0,0,Corps à corps,fr +36658,X2,2003-04-24,133.0,,748,tt0290334,The time has come for those who are different to stand united.,"Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses – Magneto and Mystique – to unhinge Stryker's scheme to exterminate all mutants.",110000000,407711549,X2,en +18736,The Lizzie McGuire Movie,2003-04-25,94.0,http://disneydvd.disney.go.com/the-lizzie-mcguire-movie.html,,tt0306841,The only risk in taking an adventure is not taking it at all.,"Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy.",17000000,55534455,The Lizzie McGuire Movie,en +85580,Flyin' Ryan,2003-04-30,84.0,,,tt0358480,The sky's the limit!,"When twelve-year-old Ryan is forced to move to a new town, he soon discovers the kids there are mean and tough. And they really don't like strangers. But when they steal his dog Theo, Ryan is given a strange pair of magical shoes and finds that the sky's the limit.",0,0,Flyin' Ryan,en +27079,High Roller: The Stu Ungar Story,2003-05-01,120.0,,,tt0338467,,"Based on the true story of the rise and fall of poker legend Stu ""The Kid"" Ungar.",0,0,Stuey,en +53367,Charlie: The Life and Art of Charles Chaplin,2003-05-01,132.0,,,tt0379730,,"Brilliant, long in-the-works story of the life and art of the world's greatest comedian and the cinema's first genius, Charlie Chaplin. Produced, written and directed by renowned film critic Richard Schickel.",0,0,Charlie: The Life and Art of Charles Chaplin,en +10708,Daddy Day Care,2003-05-03,92.0,,228887,tt0317303,Who's your daddy?,"Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.",60000000,164433867,Daddy Day Care,en +48967,I'll Be There,2003-06-13,105.0,,,tt0325352,A rock-star father. A long-lost daughter. Comedy is relative.,"A comedy about a has-been rock star (Craig Ferguson) that discovers he has a teenage daughter (Charlotte Church), from a long forgotten love affair.",0,0,I'll Be There,en +21544,Hope Springs,2003-05-09,90.0,,,tt0314431,The problem every man dreams of... a choice.,"British artist Colin Ware discovers that his fiancée, Vera, is going to marry another man. Distraught and despondent, he gets on a plane for America and ends up in the tiny town of Hope in New England. At first, Colin is depressed, but he soon finds more than a shoulder to cry on when his innkeepers introduce him to Mandy, a beautiful nurse. All's going well and Colin has almost forgotten his old flame until Vera shows up with a surprise of her own.",0,0,Hope Springs,en +16175,The Diary of Ellen Rimbauer,2003-05-12,88.0,,,tt0350811,,"Set at the turn of the century, this is the tale of Ellen Rimbauer who just received this mysterious mansion as a wedding gift from her new husband...",0,0,The Diary of Ellen Rimbauer,en +54243,Kart Racer,2003-05-16,94.0,http://en.wikipedia.org/wiki/Kart_Racer,,tt0300069,Courage has no speed limit,"14-year-old Watts Davies is estranged from his dad, a former International Karting Federation (IKF) champion. Watts's resolve to race in the upcoming IKF Regional Championships rekindles their relationship as they pursue the dream together.",0,0,Kart Racer,en +57190,Vlad,2003-05-16,98.0,,,tt0337744,,Death and spiritual torment stalk three American students visiting the Carpathian mountain homeland of Vlad Tepes.,0,0,Vlad,en +145191,I Always Wanted to Be a Saint,2003-05-16,90.0,,,tt0329232,,Luxembourg's submission for the Academy Award for Best Foreign Language Film in 2003,0,0,J'ai toujours voulu être une sainte,en +4613,Scorched,2003-05-17,95.0,,,tt0286947,How many tellers does it take to rob a bank?,"Three bank tellers. One goal: knock the place over. The ultimate inside jobs, plotted by three people with nothing to lose.",0,0,Scorched,en +14868,The Rage in Placid Lake,2003-05-17,89.0,,,tt0305999,,"Placid Lake has always been different. As an odd fish in a sea of mediocrity, his brilliant ideas are bound to get him into more trouble than success. So when he finds himself flying off the school roof and breaking every bone in his body on graduation night, Placid decides to make a bid for the elusive normal life. To his parents' horror, he gets a normal job.",0,0,The Rage in Placid Lake,en +11196,Stealing Rembrandt,2003-05-17,109.0,,,tt0345853,They did the robbery of the century - They just didn't know it,"Two bumbling scrap metal thieves - father and son - steal the wrong painting during a museum heist. The painting turns out to be the only original Rembrandt painting in Denmark, and all hell breaks loose. What do you do when you've got Interpol, the Danish police and the entire Danish underworld on your heels? And who was this Rembrandt guy anyway?",0,0,Rembrandt,da +1807,Elephant,2003-05-18,81.0,,,tt0363589,An ordinary high school day. Except that it's not.,Several ordinary high school students go through their daily routine as two others prepare for something more malevolent. The film chronicles the events surrounding a school shooting.,3000000,10012022,Elephant,en +41277,Seducing Doctor Lewis,2003-05-20,108.0,,,tt0366532,,"A much-needed boost, in the form of a new factory, is promised to the residents of the tiny fishing village St. Marie-La-Mauderne, provided they can lure a doctor to take up full-time residency on the island. Inspired, the villagers devise a scheme to make Dr. Christopher Lewis a local.",0,0,La grande séduction,fr +83185,A Love Movie,2003-05-20,91.0,,,tt0368726,,"Three friends, Hilda, Matilda and Gaspar, meet in a rundown downtown apartment during a weekend to chat, drink and experience pleasure.",0,0,Filme de Amor,pt +80089,Parasite Dolls,2003-05-22,85.0,http://www.animenewsnetwork.com/encyclopedia/anime.php?id=2345,,tt0376058,Beware the temptations of the flesh.,"Beauty is only skin deep, but when you can’t see beneath the skin, how can you know what you’re really dealing with? In a world where perfect androids called Boomers have infiltrated every aspect of society, it’s the job of Branch to maintain peace between the people and the plastic. Unfortunately, not all boomers are created perfect, and when boomers go bad, people die. The thin blue line that separates man from machine is about to meet its most horrifying test in Parasite Dolls.",0,0,パラサイトドールズ,ja +82781,Our Town,2003-05-24,120.0,http://www.pbs.org/wgbh/masterpiece/americancollection/ourtown/index.html,,tt0353849,,"Our Town is a three-act play by American playwright Thornton Wilder. It is a character story about an average town's citizens in the early twentieth century as depicted through their everyday lives. Using metatheatrical devices, Wilder sets the play in a 1930s theater. He uses the actions of the Stage Manager to create the town of Grover's Corners for the audience. Scenes from its history between the years of 1901 and 1913 play out.",0,0,Our Town,en +12,Finding Nemo,2003-05-30,100.0,http://movies.disney.com/finding-nemo,137697,tt0266543,There are 3.7 trillion fish in the ocean. They're looking for one.,"Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.",94000000,940335536,Finding Nemo,en +9902,Wrong Turn,2003-05-30,84.0,,52985,tt0295700,It's the last one you'll ever take.,"Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.",12600000,28650575,Wrong Turn,en +32526,Soldier's Girl,2003-05-31,112.0,,,tt0324013,She was the only man he ever loved.,"The true story of Soldier’s Girl, which takes place in Fort Campbell, KY, tells the heart-wrenching story of the life and tragic death of soldier Barry Winchell. His love for Calpernia Addams, a beautiful transgendered nightclub performer was misunderstood by fellow soldiers and eventually leads to his brutal death.",0,0,Soldier's Girl,en +24914,Kid's Story,2003-06-02,15.0,,,tt0368574,,"A high school student is haunted by thoughts of ""The Matrix"" and a person named ""Neo"". Part of the Animatrix collection of animated shorts set in the Matrix universe.",0,0,Kid's Story,en +24675,Beyond,2003-06-03,13.0,,,tt0372764,,"While looking for her cat, a young woman and some kids find an abandoned building where strange things happen and the rules of physics don't always apply. Part of the Animatrix collection of animated shorts set in the Matrix universe.",0,0,Beyond,en +20106,Mais qui a tué Pamela Rose ?,2003-06-04,95.0,,297299,tt0338828,,No overview found.,0,0,Mais qui a tué Pamela Rose ?,fr +48778,That Day,2003-06-04,105.0,,,tt0343524,,"A father (Michel Piccoli) is scheming to have his slightly mental daughter from an earlier marriage (Elsa Zylberstein) killed by allowing a murderous psychopath (Bernard Giraudeau) to be released from the asylum and led to his house. However, the psychopath and the daughter fall for each other.",0,0,Ce jour-là,fr +82040,Most,2003-06-11,29.0,,,tt0345672,,A poetic and powerful story of a father forced to choose between love and duty.,0,0,Most,en +72232,The King and Queen of Moonlight Bay,2003-06-15,120.0,,,tt0342639,,"Alison Dodge, a 17-year old raised by her mother, decides on her own to spend her last summer before college getting to know her father",0,0,The King and Queen of Moonlight Bay,en +61487,Mayor of the Sunset Strip,2003-06-17,94.0,,,tt0230512,One unlikely man made America listen,"A look at the history of fame in the world through the eyes of pop star impresario, Rodney Bingenheimer",0,0,Mayor of the Sunset Strip,en +49060,Tempo,2003-06-17,83.0,,,tt0307553,Every Game Has Rules.,"Jenny, a young American woman, moves to Paris and gets involved with Jack, who is seemingly the man of her dreams. However, he has a lot to hide and Jenny quickly gets entangled his dangerous lifestyle.",0,0,Tempo,en +74481,Darna Mana Hai,2003-06-25,121.0,,,tt0349333,,"Six friends, stranded on a highway, tell each other scary stories.",0,0,डरना मना है,hi +165402,Main Prem Ki Diwani Hoon,2003-06-26,197.0,,,tt0265148,,"Main Prem Ki Diwani Hoon is the story of Sanjana (Kareena Kapoor), a girl of today's generation full of life and vibrant ecstasy. She lives life on her own terms and gets very upset when her mother Susheela (Himani Shivpuri), arranges for her to see a boy leading to a marriage prospect.",0,0,Main Prem Ki Diwani Hoon,hi +17473,The Room,2003-06-27,99.0,http://www.theroommovie.com/,,tt0368226,Can you ever really trust anyone?,"Johnny is a successful banker with great respect for and dedication to the people in his life, especially his future wife Lisa. The happy-go-lucky guy sees his world fall apart when his friends begin to betray him one-by-one.",0,0,The Room,en +9471,Charlie's Angels: Full Throttle,2003-06-27,106.0,,86029,tt0305357,This summer the Angels are back.,"The Angels are charged with finding a pair of missing rings that are encoded with the personal information of members of the Witness Protection Program. As informants are killed, the ladies target a rogue agent who might be responsible.",120000000,259175788,Charlie's Angels: Full Throttle,en +12696,Hierankl,2003-07-01,93.0,,,tt0371710,,No overview found.,0,0,Hierankl,de +14411,Sinbad: Legend of the Seven Seas,2003-07-02,86.0,http://sinbad-themovie.com/main.html,,tt0165982,,"The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.",60000000,26288320,Sinbad: Legend of the Seven Seas,en +9690,Verschwende deine Jugend,2003-07-03,97.0,,,tt0327227,,No overview found.,0,0,Verschwende deine Jugend,de +4592,Carolina,2003-07-04,97.0,,,tt0289889,,"Carolina is a 2003 romantic comedy film directed by Marleen Gorris, starring Julia Stiles, Shirley MacLaine, Alessandro Nivola, Mika Boorem, Randy Quaid, and Jennifer Coolidge. Lisa Sheridan has a cameo role in the film, and Barbara Eden has the uncredited part of Daphne. It is set in Los Angeles, California. Shot in 2003, the film failed to find a distributor and was released direct-to-video in 2005.",0,0,Carolina,en +95140,Detention,2003-07-05,98.0,,,tt0321997,,A heroic high school teacher leads a band of students trapped in school by violent drug-runners.,5000000,0,Detention,en +20381,The Hitcher II: I've Been Waiting,2003-07-15,93.0,,476054,tt0299988,,A sadistic serial killer terrorizes a couple driving on a rural highway in Texas while killing numerous people and framing them for his killings.,0,0,The Hitcher II: I've Been Waiting,en +303398,Jaal: The Trap,2003-07-18,0.0,,,tt0340178,,Sunny Deol battles terrorists from Kashmir; from director Guddu Dhanoa.,0,0,Jaal: The Trap,en +16032,Midsummer,2003-07-18,94.0,,,tt0339385,Everyone has a past. Some have a future.,It is the last day of school for Christian and his younger sister Sophie. They are heading to a party at his friend Trina. High school graduation is just around the corner and after the freedom and future. But behind the idyllic facade lurks tragedy and secrets. That evening Sophie commits suicide.,0,0,Midsommer,en +22076,Alien Hunter,2003-07-19,100.0,,,tt0327409,Earth just got its final warning!,Government agents find evidence of extraterrestrial life at the South Pole.,7000000,0,Alien Hunter,en +51890,Battlefield Baseball,2003-07-19,87.0,,,tt0384832,,"Battlefield Baseball is a tough game--it doesn't end until all the members on the opposing team are dead. In this game the Gedo High team is composed of blue-faced zombies, and their opponents on the Seido High team know they don't have a chance at beating them unless they can bring back a star pitcher who has a lethal pitch called the Super Tornado, but who has hung up his cleats and has no desire to return to the game.",0,0,地獄甲子園,ja +45693,Lucky 7,2003-07-20,112.0,,,tt0370904,,"Before Amy Myer's mother died when Amy was 7, she planned out the little girl's life on a timeline, including the fact that Amy would marry her 7th boyfriend. When Amy falls in love with #6, she's thrown into a tailspin, because all of her mother's advice had worked perfectly. Now she must decide whether to follow her mother's advice and wait for #7, or follow her own heart.",0,0,Lucky 7,en +15935,Bad Eggs,2003-07-24,98.0,,,tt0312409,Someone’s on the shonk,"Ben Kinnear and Mike Paddock are two undercover detectives with way too much publicity, who find they can no longer turn a blind eye to the corruption in the police force.",0,0,Bad Eggs,en +12279,Spy Kids 3-D: Game Over,2003-07-25,84.0,,86486,tt0338459,3rd Mission. 3rd Dimension.,"Carmen's caught in a virtual reality game designed by the Kids' new nemesis, the Toymaker. It's up to Juni to save his sister, and ultimately the world.",38000000,197011982,Spy Kids 3-D: Game Over,en +21619,King of the Ants,2003-07-28,102.0,,,tt0328031,,"A young drifter, struggling to makes ends meet, accepts a job to kill a prominent accountant. When he isn't paid for the hit, revenge is now his path.",0,0,King of the Ants,en +32237,Whispering Corridors 3: Wishing Stairs,2003-08-01,97.0,,131780,tt0370082,Watch your step,"A staircase leading to the dormitory of a remote boarding school usually has 28 stairs, but every so often there appears to be 29. When someone steps on the mysterious extra stair, the horror begins.",0,0,여고괴담 3: 여우계단,ko +287811,Boys Life 4: Four Play,2003-08-01,0.0,,,tt0369295,,The latest installment in this series of gay short films.,0,0,Boys Life 4: Four Play,en +10330,Freaky Friday,2003-08-03,97.0,,,tt0322330,Mondays are manic. Wednesdays are wild. And Fridays are about to get a little freaky.,"Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fiancé. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.",26000000,110230332,Freaky Friday,en +128866,Arachnia,2003-08-05,0.0,,,tt0370295,,,0,0,Arachnia,en +195763,Homerun,2003-08-06,108.0,,,tt0356696,,"A remake of the award-winning Iranian film Children of Heaven, Homerun is a drama about two poor siblings and their adventures over a lost pair of shoes.",0,0,跑吧孩子,zh +11351,Jeepers Creepers 2,2003-08-08,104.0,,94899,tt0301470,He can taste your fear.,"After 23 horrifying days of gorging on human flesh, an ancient creature known as the Creeper embarks on a final voracious feeding frenzy, terrorizing a group of varsity basketball players, cheerleaders and coaches stranded on a remote highway when their bus breaks down. The terrified group is forced to come together and do battle against the winged creature hell-bent on completing its grizzly ritual.",17000000,63102666,Jeepers Creepers 2,en +16058,Take Away,2003-08-14,88.0,,,tt0295718,,"Tony Stilano and Trev Spackneys both own, live over and work in adjoining take-away fish shops in Melbourne. Although they have fallen into a habitual rivalry based on a cause long forgotten, the pair unite when the multinational fast-food outlet ""Burgies"" unveils a new store directly opposite the twin fish & chips shops.",0,0,Take Away,en +30806,Out for a Kill,2003-08-14,90.0,,,tt0323531,Out for revenge. Out for payback.,"An unsuspecting university professor is an unwitting accomplice in a foiled Chinese cocaine deal. Wrongly imprisoned, he escapes to take his revenge and prove his innocence.",14000000,0,Out for a Kill,en +71114,Cleopatra,2003-08-14,104.0,,,tt0346765,It's never too late to change,A retired teacher and a soap star leave their routines and the men in their lives behind and embark on a weekend trip.,0,0,Cleopatra,es +56969,Tere Naam,2003-08-15,132.0,,,tt0374271,Unfortunately a true love story,"Lower Caste Radhey Mohan is a no good slacker, who is always picking fights and getting himself and his friends in trouble. One day he sees upper caste Nirjala, and is instantly attracted to her. When Nirjala comes to know about him, she is also attracted to him. The problems arise when marriage is proposed with Radhey, as Nirjala's family with have nothing to do with a lower caste groom, and they arrange Nirjala's marriage with Rameshwar, a young man from their caste. Radhey is arrested and imprisoned in a prison for the mentally unstable, where is chained to a wall, while Nirjala must undergo preparations to get married to Rameshwar.",1,2,Tere Naam,hi +10610,The Medallion,2003-08-15,88.0,,,tt0288045,,A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.,41000000,0,The Medallion,en +126090,Fuse,2003-08-15,105.0,,,tt0347105,,"Two years after the Bosnian civil war, a town that is slowly rebuilding itself must whip together a democracy when it's announced the U.S. President Bill Clinton might be paying a visit.",0,0,Gori vatra!,bs +20210,Grind,2003-08-15,105.0,,,tt0338077,Live Fast... Play Hard... Die Laughing...,"Four skaters follow their idol on his summer tour in an attempt to get noticed, get sponsored, and become stars themselves.",0,0,Grind,en +2771,American Splendor,2003-08-15,101.0,http://www.newline.com/properties/americansplendor.html,,tt0305206,Ordinary life is pretty complex stuff,An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.,0,6003587,American Splendor,en +11547,Cabin Fever,2003-08-15,93.0,,201576,tt0303816,Terror… in the flesh.,"A group of five college graduates rent a cabin in the woods and begin to fall victim to a horrifying flesh-eating virus, which attracts the unwanted attention of the homicidal locals.",1500000,30553394,Cabin Fever,en +335897,The Unemployment Club,2003-08-15,98.0,,,tt0295201,,"In Differdange, in the South of Luxembourg, six unemployed men decide to create the ""Dole Club"", whose rules forbid its members to work, even in the very unlikely event that they are offered a job. Geronimo, Théid, Frunnes, Sonny Boy, Abbes and Petz all agree to abide by the strict regulations of the club. In accordance with them, they manage to survive. But they can do it only on petty theft and other swindles, which is bound to end badly...",0,0,Le club des chômeurs,lb +273578,VeggieTales: The Ballad of Little Joe,2003-08-17,35.0,http://www.bigidea.com,,tt0395293,A Lesson in Facing Hardship,"Join Little Joe and his rootin' tootin' French pea brothers on an adventure that will take them from an abandoned mineshaft all the way to Dodge Ball City--with Little Joe's faith being tested every step of the way! It's a Wild West yarn that teaches us to keep the faith when facing hardship because, in the end, god can work all things out for good. Yee-haw!",0,0,VeggieTales: The Ballad of Little Joe,en +22450,Red Water,2003-08-17,92.0,,,tt0365677,,"In the quiet waters of the Mississippi, body parts are being discovered. No one knows what is behind it all, until a huge man eating bull shark turns up. This bull shark is different, as it can breath in fresh water, making a deadly encounter between anyone who comes before it. John Sanders must now try and reach the surface, with his ex-wife and whilst being held hostage.",0,0,Red Water,en +26264,George of the Jungle 2,2003-08-18,87.0,,126221,tt0322389,Watch Out For That Sequel!,"George and Ursula now have a son, George Junior, so Ursula's mother arrives to try and take them back to ""civilization"".",0,0,George of the Jungle 2,en +2830,My Boss's Daughter,2003-08-21,83.0,,,tt0270980,,"When a young man agrees to housesit for his boss, he thinks it'll be the perfect opportunity to get close to the woman he desperately has a crush on – his boss's daughter. But he doesn't plan on the long line of other houseguests that try to keep him from his mission. And he also has to deal with the daughter's older brother, who's on the run from local drug dealers.",14000000,0,My Boss's Daughter,en +21413,The Battle of Shaker Heights,2003-08-22,79.0,,,tt0357470,"When you're 17, every day is war.","A quirky teen with a penchant for war reenactments, Kelly Ernswiler obsesses over military tactics with his buddy Bart. The school bully is one of Kelly's regular headaches, and he also has to deal with a frustrating situation at home, where his father is a recovering drug addict. Kelly's life gets even more complicated when he falls for Tabby, Bart's pretty and soon-to-be-wed older sister.",1000000,0,The Battle of Shaker Heights,en +39331,The Body,2003-08-22,95.0,,,tt0377651,,"One day a commuter, who happens to be a burglar, finds a dead body on a train. As he was just returning from a burglary and not wanting to draw attention to himself, he decides to get rid of the corpse himself. Little does he know that the body is about to embark on one hell of a journey...",0,0,Ciało,en +13630,United,2003-08-22,85.0,,,tt0374308,Sometimes we could all use a little kick-start!,"Kåre is a youth coach with aspirations to become the greatest football player ever like his idol, Bryan Robson. However, his dreams are starting to take a toll on his relationship with his girlfriend, Anna.",0,0,United,no +10739,Anything Else,2003-08-27,108.0,,,tt0313792,In any relationship one person always does the heavy lifting.,"Jerry Falk, an aspiring writer in New York, falls in love at first sight with a free-spirited young woman named Amanda He has heard the phrase that life is like ""anything else,"" but soon he finds that life with the unpredictable Amanda isn't like anything else at all.",0,0,Anything Else,en +1589,The Boys from County Clare,2003-09-12,91.0,,,tt0337631,,Two feuding brothers and their respective Ceilidh bands compete at a music festival. Set in 1960's Ireland.,0,0,The Boys from County Clare,en +15177,Buddy,2003-08-29,104.0,,,tt0371589,,"Kristoffer is a billboard hanger, 24 years old and carefree. When his girlfriend Elisabeth dumps him for the boss of her trend bureau, his life falls to pieces. He feels like a loser. By coincidence some of Kristoffer's video diaries end up with the producer of the popular talk show ""Karsten Tonight"" on TV2. A few weeks later Kristoffer's life has become TV entertainment. People love the sequences from his commune at Tøyen: Kristoffer's half-twisted view of his surroundings, his crazy best friend Geir, not to mention the weird web designer Stig Inge, who hasn't set foot outside the Tøyen shopping centre for two years. Kristoffer's future again looks bright, everyone likes him. But revealing your life on national television comes with a price tag. As Kristoffer's future in the TV business looks brighter and brighter, his friends start suffering. Geir's big secret is revealed, and Stig Inge's personal problems are much more serious than Kristoffer first thought...",0,0,Buddy,no +153,Lost in Translation,2003-08-31,102.0,,,tt0335266,Everyone wants to be found.,"Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.",4000000,119723856,Lost in Translation,en +95536,A Talking Picture,2003-08-31,96.0,,,tt0364093,,"A meditation on civilization. July, 2001: friends wave as a cruise ship departs Lisbon for Mediterranean ports and the Indian Ocean. On board and on day trips in Marseilles, Pompeii, Athens, Istanbul, and Cairo, a professor tells her young daughter about myth, history, religion, and wars. Men approach her; she's cool, on her way to her husband in Bombay. After Cairo, for two evenings divided by a stop in Aden, the captain charms three successful, famous (and childless) women, who talk with wit and intellect, each understanding the others' native tongue, a European union. The captain asks mother and child to join them. He gives the girl a gift. Helena sings. Life can be sweet.",0,0,Um Filme Falado,pt +1278,The Dreamers,2003-09-01,115.0,,,tt0309987,Together nothing is impossible. Together nothing is forbidden.,A young American studying in Paris in 1968 strikes up a friendship with a French brother and sister. Set against the background of the '68 Paris student riots.,15000000,15121165,The Dreamers,en +46228,Love that Boy,2003-09-01,85.0,,,tt0328078,,"Love That Boy is the story of Phoebe, a socially inept overachiever, unrecognized in a world run by C students. Phoebe’s life is totally dominated by her “To Do Before Graduation” list. When Phoebe’s best friend Robyn dumps Phoebe two weeks before college graduation, Robyn points out that Phoebe’s list is missing one essential thing - a boyfriend. Not wanting to be alone at graduation, the most important day of her life, Phoebe begins an ill-fated quest to find a boyfriend. After the demise of her first relationship - her “boyfriend” didn’t even know that they were going out - Phoebe inadvertently falls in love. The only problem is, he’s fourteen.",0,0,Love that Boy,en +9483,Schultze Gets the Blues,2003-09-02,114.0,,,tt0388395,It's never too late to re-tune your soul,"Schultze is an accordion player and newly without work. When the local music club celebrates its 50th anniversary, his taste of music changes unexpectedly.",0,0,Schultze Gets the Blues,de +2577,Code 46,2003-09-02,92.0,,,tt0345061,How do you solve a crime when the last thing you want to know is the truth?,"A futuristic 'Brief Encounter', a love story in which the romance is doomed by genetic incompatibility.",7500000,0,Code 46,en +40669,Jump London,2003-09-03,60.0,,,tt0380472,,"Having developed from a childhood game, Free Running has been given global recognition due to a series of adverts for Toyota, Nike and the BBC to name a few. The recognised creator of the discipline, which involves running and jumping over buildings and any other obstacles, comes to London with several others to run, skip and jump across many of the famous landmarks of the city",0,0,Jump London,en +19765,Želary,2003-09-04,150.0,http://www.zelary.com,,tt0288330,,"A nurse and her surgeon-lover are part of a resistance movement in 1940s Czechoslovakia. When they are discovered, her lover flees and she must find a place to hide. A patient whose life she saved, a man from a remote mountain village where time stopped 150 years ago, agrees to hide her as his wife.",0,0,Želary,cs +38244,Casa de los Babys,2003-09-05,96.0,,,tt0303830,Six Women. One Dream.,"A group of women, including Skipper, the wealthy young Jennifer and the domineering Nan, journey from the United States to South America in hopes of easily adopting children. Unfortunately, their plans are complicated by local laws that require the women to live in the foreign nation for an extended period before they can take in orphaned kids. While stuck in another country, the women bond as they share their aspirations and anxieties.",0,0,Casa de los Babys,en +21708,My Wife Is a Gangster 2,2003-09-05,110.0,,101676,tt0364447,,"Former Scissor Gang leader Eun-jin (Shin Eun-kyung), who now suffers from amnesia, nevertheless defends Jae-cheol (Jun Gyu Park), a restaurateur who employs her, from a gangster who wants his business.",0,0,조폭 마누라 2: 돌아온 전설,ko +33339,Camp,2003-09-05,114.0,,,tt0342167,You can't fit in when you already stand out.,"Misfits in their lives back home, a group of young people live it up at musical-theater camp. While the sports counselor is completely ignored, the kids' spend all their time in rehearsal for a grueling schedule that involves a new show every two weeks. Several personal stories come to the fore.",0,1628154,Camp,en +1415,Party Monster,2003-09-05,98.0,,,tt0320244,'Til death do they party...,"The New York club scene of the 80s and 90s was a world like no other. Into this candy-colored, mirror ball playground stepped Michael Alig, a wannabe from nowhere special. Under the watchful eye of veteran club kid James St. James, Alig quickly rose to the top... and there was no place to go but down.",5000000,742898,Party Monster,en +508,Love Actually,2003-09-07,135.0,http://www.loveactually.com/,,tt0314331,The ultimate romantic comedy.,Follows seemingly unrelated people as their lives begin to intertwine while they fall in – and out – of love. Affections languish and develop as Christmas draws near.,40000000,244931766,Love Actually,en +8325,Tiptoes,2003-09-08,90.0,,,tt0316768,It's the Little Things in Life that Matter.,"A man is reluctant to tell his fiancee that his parents, uncle and brother are dwarfs.",0,0,Tiptoes,en +22618,Far Side of the Moon,2003-09-09,105.0,,,tt0352332,,"After the death of his mother, a man tries to discover a meaning to his life, to the universe and to rebuild a relationship with the only family he has left: his brother.",0,0,La face cachée de la lune,fr +1428,Once Upon a Time in Mexico,2003-09-11,102.0,,9649,tt0285823,The Time Has Come.,"Hitman ""El Mariachi"" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.",29000000,98185582,Once Upon a Time in Mexico,en +30973,The Visual Bible: The Gospel of John,2003-09-11,125.0,,,tt0377992,For God loved the world So much...,A word for word depiction of the life of Jesus Christ from the Good News Translation Bible as recorded in the Gospel of John.,10000000,4069090,The Visual Bible: The Gospel of John,en +19325,Bionicle: Mask of Light,2003-09-15,70.0,,59007,tt0369281,,"The spirit that protects the islands of Mata Nui is put into a deep sleep, causing the islands to crumble into the ocean, and three islanders must use the Mask of Light to save it.",0,0,Bionicle: Mask of Light,en +26636,Twentynine Palms,2003-09-17,114.0,http://www.29palms-lefilm.com/,,tt0315110,,"David, an independent photographer, and Katia, an unemployed woman, leave Los Angeles, en route to the southern California desert, where they search a natural set to use as a backdrop for a magazine photo shoot. They find a motel in the town of Twentynine Palms and spend their days in their sport-utility vehicle, discovering the Joshua Tree Desert, and losing themselves on nameless roads and trails. Frantically making love all the time and almost everywhere, they regularly fight, then kiss and make up, with little else going on in their empty relationship and quite ordinary daily life--until something horrible and hideous brutally puts an end to their trip.",0,0,Twentynine Palms,en +21062,"Ready, Steady, Charlie!",2003-09-18,92.0,http://www.achtungfertigcharlie.ch/,,tt0353161,The Swiss answer to American Pie,"In a Swiss church, Antonio Carrera is getting married to the pretty daughter of an Italian Mafioso, when army police officers march in and take him to the 15 week compulsory Swiss military training...",0,0,"Achtung, Fertig, Charlie!",de +35021,The Old Fairy Tale: When the Sun Was God,2003-09-19,107.0,,,tt0380726,,"In IX century Europe, on the brink of Poland's birth, a cruel prince, Popiel, murders his cousins to ensure his son's succession. His crimes lead to an uprising of his subjects lead by the former commander of Popiel's army, Piastun, and a young hunter and warrior, Ziemowit. Meanwhile Ziemowit falls in love with Dziwa, lovely girl who is to become a priestess in the local temple ...",0,0,Stara baśń: Kiedy słońce było bogiem,pl +12767,Cold Creek Manor,2003-09-19,118.0,,,tt0331468,The perfect house hides the perfect crime.,"Wanting to escape city life for the countryside, New Yorkers Cooper Tilson (Quaid), his wife Leah (Stone) and their two children move into a dilapidated old mansion still filled with the possessions of the previous family. Turning it into their dream house soon becomes a living nightmare when the previous owner (Dorff) shows up, and a series of terrifying incidents lead them on a spine-tingling search for clues to the estate's dark and lurid past",0,21384035,Cold Creek Manor,en +46857,Somnambulance,2003-09-19,129.0,,,tt0385243,,"Autumn 1944, Estonia. Tens of thousands of people leave their homeland in fear of approaching frontline. Some seashore villages remain completely empty. A young woman with huge grey eyes gets off the boat. Eetla leaves the last boat, thus giving up her last chance to escape. Defying the cold wind and rain of September, she returns to the lighthouse which is unexpected to her father Gottfrid, the lighthouse keeper, and herself. Eetla's return becomes her self-encounter and self-recognition.",0,0,Somnambuul,en +14770,Festival Express,2003-09-19,90.0,,,tt0372279,Festival Express... The longest party in rock-n-roll history.,The filmed account of a large Canadian rock festival train tour.,0,0,Festival Express,en +25426,Coronado,2003-09-25,84.0,,,tt0337945,,"An american woman, in search of her fiance', becomes involved in a revolution of a central-american country.",0,0,Coronado,en +220005,At the First Breath of Wind,2003-09-25,85.0,,,tt0328825,,"Using few words and gorgeous imagery, this is a poetic painting of a family, each in their own space on an August afternoon.",0,0,Al primo soffio di vento,it +49653,Roads to Koktebel,2003-09-25,100.0,,,tt0372366,,"A widowed aeronautics engineer, who has lost his job, travels with his son hopping freight trains from Moscow to Koktebel, a town by the Black Sea, to start a new life with the father's sister.",0,0,Коктебель,en +101783,Zameen,2003-09-26,154.0,,,tt0382385,,"An Army colonel (Devgan) and his commandos capture a dangerous terrorist. The other members of the terrorists' organization hatch a plot to hijack an Indian jet and demand his release in exchange. In Mumbai, ACP Jay (Bachchan) is hot on their trail. He discovers Army's involvement in the case and has to work together with the colonel. However, there are some skeletons in the closet.",0,0,Zameen,hi +237,Young Adam,2003-09-26,93.0,http://www.sonyclassics.com/youngadam/,,tt0289635,Everyone has a past. Everyone has a secret.,A young drifter working on a river barge disrupts his employers' lives while hiding the fact that he knows more about a dead woman found in the river than he admits.,6400000,2500000,Young Adam,en +7288,Duplex,2003-09-26,89.0,,,tt0266489,,"When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!",40000000,19322135,Duplex,en +32234,Doppelganger,2003-09-27,107.0,,,tt0403990,What if your worst nightmare… turned out to be you?,Hayasaki is an inventor working on an Artificial Body. It is not going well and he is stressed out and on the verge of being fired from the research division of his company. His doppelgänger appears to help him out of the rut he has created for himself.,0,0,ドッペルゲンガー,ja +15016,Barbie of Swan Lake,2003-09-28,81.0,,,tt0383206,,"Barbie comes to life in her third animated movie, based on the beloved fairy tale and set to the brilliant music of Tchaikovsky. Barbie as Odette, the young daughter of a baker, follows a unicorn into the Enchanted Forest and is transformed into a swan by an evil wizard intent on defeating the Fairy Queen.",0,0,Barbie of Swan Lake,en +31078,Twelve Mile Road,2003-09-28,120.0,http://www.mylifetime.com/movies/twelve-mile-road,,tt0381842,,"A divorced farmer takes in his troubled teenage daughter for the summer, a summer which changes the lives of the two of them, and their friends and family.",0,0,Twelve Mile Road,en +18051,Timecop 2: The Berlin Decision,2003-09-30,81.0,,170452,tt0318763,,"20 years after a set of events, the Time Enforcement Commission (TEC), is still going strong. Now Brandon Miller a TEC operative, believes that they have a responsibility to change history hoping that the world will be better but Ryan Chan another Tec operative stops him but kills the woman he loves in the process.",0,0,Timecop 2: The Berlin Decision,en +11647,Infernal Affairs II,2003-10-01,119.0,,58588,tt0369060,The Birth of a Legend,"In this prequel to Mou gaan dou (2002), Chan Wing Yan has just become an undercover cop in the triads while Lau Kin Ming joins the police force. Both the triads and the police find an enemy in a rival crime boss.",0,0,無間道II,zh +99698,A Thousand Months,2003-10-01,124.0,,,tt0325826,,"1981, Morocco. A village in the Atlas mountains. A city in the distance. A child. A family facing its destiny.",0,0,Mille Mois,en +14527,Foolproof,2003-10-03,97.0,,,tt0356614,,"Kevin, Sam and Rob have an unusual hobby: planning foolproof heists, without intending to actually perform them. The game goes wrong when their latest plan is stolen and carried out. Things get even worse when a mysterious man approaches them with an offer: plan a heist for him, or go to jail. As the clock ticks, they find that the risk might be higher than just their freedom.",8256269,460978,Foolproof,en +1418,Take My Eyes,2003-10-08,109.0,,,tt0350193,Where it reads 'home' read 'hell'. Where it reads 'love' there is pain,"One winter night, Pilar runs away from home. With her, she takes only a few belongings and her son, Juan. Antonio soon sets out to look for her. He says Pilar is his sunshine, and what's more, ""She gave him her eyes""...",0,0,Te doy mis ojos,es +17592,The Wild Parrots of Telegraph Hill,2003-10-09,83.0,http://www.wildparrotsfilm.com,,tt0424565,,A homeless musician finds meaning to his life when he starts a friendship with dozens of parrots.,0,0,The Wild Parrots of Telegraph Hill,en +11329,Runaway Jury,2003-10-09,127.0,,,tt0313542,Trials are too important to be decided by juries.,A juror on the inside and a woman on the outside manipulate a court trial involving a major gun manufacturer.,60000000,80154140,Runaway Jury,en +21765,Good Boy!,2003-10-10,87.0,http://www.goodboy.com/,,tt0326900,Rover is about to take over.,"An intergalactic dog pilot from Sirius (the dog star), visits Earth to verify the rumors that dogs have failed to take over the planet.",17000000,0,Good Boy!,en +74922,Zróbmy sobie wnuka,2003-10-10,,,,tt0385363,,,0,0,Zróbmy sobie wnuka,pl +21041,The Third Wave,2003-10-15,115.0,,24726,tt0313724,,"Johan Falk hasn't been working for over a year since he resigned from the police. Most of all he wants to move out to the countryside, but fate has a different thought.",4667404,0,Den tredje vågen,sv +37284,Acacia,2003-10-17,102.0,,,tt0380164,,"A Korean horror film about an adopted young boy with a strange link to an old, dead acacia tree. As the boy settles in to his new home, the tree comes to life. When the family who adopted him becomes pregnant, he is to go back to the orphanage, and horror ensues.",2000000,0,아카시아,ko +48567,Scary Godmother: Halloween Spooktakular,2003-10-22,47.0,,,tt0330859,Celebrate our Spooky Night!,"The Scary Godmother Halloween Spooktakular is based on the comics and children's books of popular artist and writer Jill Thompson. Jill has won numerous awards for her fabulous watercolour paintings and illustrations. Scary Godmother is the whimsical all-ages story that follows the first trick-or-treating adventure of Hannah Marie, a young girl whose rotten older cousin is babysitting her one dark Halloween. Unhappy to be saddled with Hannah, her cousin cooks up a scheme to frighten her. But his scheme backfires when Hannah gets help from her Scary Godmother. Scary Godmother takes Hannah to her realm on the Fright Side where she is throwing the best Halloween party in all of frightdom. At the party Hannah is introduced to many colourful characters, learns that not all monsters are mean and enlists her new spooky friends in a plan to teach Jimmy a lesson.",0,0,Scary Godmother: Halloween Spooktakular,en +7229,Ruby & Quentin,2003-10-22,85.0,,,tt0310203,,"After hiding his loot and getting thrown in jail, Ruby, a brooding outlaw encounters Quentin, a dim-witted and garrulous giant who befriends him. After Quentin botches a solo escape attempt, they make a break together. Unable to shake the clumsy Quentin Ruby is forced to take him along as he pursues his former partners in crime to avenge the death of the woman he loved and get to the money.",27440000,0,Tais-toi !,fr +37050,So Normal,2003-10-23,110.0,http://www.osnormaisofilme.globo.com/,,tt0351459,,"The film shows the day when Rui and Vani first met. It was at their wedding (with other partners). Vani was going to marry Sérgio, and Rui would marry Marta in the same church, following Vani's marriage. While waiting for the ceremony, they begin to talk. Complications ensue.",0,0,Os Normais - O Filme,pt +13920,Radio,2003-10-24,109.0,,,tt0316465,His courage made them champions.,"High school football coach, Harold Jones befriends Radio, a mentally-challenged man who becomes a student at T.L. Hanna High School in Anderson, South Carolina. Their friendship extends over several decades, where Radio transforms from a shy, tormented man into an inspiration to his community.",32000000,52277485,Radio,en +30141,The Singing Detective,2003-10-24,109.0,,,tt0314676,"When it comes to murder, seduction and betrayal he wrote the book. Now he's living it!","From his hospital bed, a writer suffering from a skin disease hallucinates musical numbers and paranoid plots.",0,0,The Singing Detective,en +81313,Squint Your Eyes,2003-10-24,88.0,,,tt0379063,,"The story of a spirited ten-year-old girl who has run away from her proudly affluent parents in town and finds grudging refuge with the slightly slovenly caretaker of an abandoned farm, an ex-teacher.",0,0,Zmruz oczy,en +51311,Wheel of Time,2003-10-30,81.0,,,tt0331080,,"Wheel of Time is Werner Herzog's photographed look at the largest Buddhist ritual in Bodh Gaya, India.",0,0,Wheel of Time,en +13062,Boundin',2003-11-04,5.0,http://www.pixar.com,,tt0395479,,"On a high mountain plain lives a lamb with wool of such remarkable sheen that he breaks into high-steppin' dance. But there comes a day when he loses his lustrous coat and, along with it, his pride. It takes a wise jackalope - a horn-adorned rabbit - to teach the moping lamb that wooly or not, it's what's inside that'll help him rebound from life's troubles.",0,0,Boundin',en +73306,Karaoke Terror,2003-11-08,112.0,,,tt0436769,The Complete Japanese Showa Songbook,One of a gang of karaoke loving middle aged women is murdered by a young man. Her friends track him down and kill him. His friends track them down and kill the killer ..... and it escalates!,0,0,Shôwa kayô daizenshû,ja +166225,Khel,2003-11-11,174.0,,,tt0371775,No ordinary game!!!,Two friends falling in love with the same girl leads to murder and intrigue.,0,0,Khel,en +8619,Master and Commander: The Far Side of the World,2003-11-14,138.0,http://www.masterandcommanderthefarsideoftheworld.com/,,tt0311113,The courage to do the impossible lies in the hearts of men.,"After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.",150000000,212011111,Master and Commander: The Far Side of the World,en +198306,Ricky Gervais Live: Animals,2003-11-17,73.0,,,tt0397612,Life on Earth: the bits David Attenborough left out,Ricky Gervais entertains a live audience in his first stand-up routine.,0,0,Ricky Gervais Live: Animals,en +104277,Blessing Bell,2003-11-22,87.0,,,tt0358559,,Existential study on a misplaced workers and ex-prisoner who moves through the city and his influence on other characters' lives.,0,0,幸福の鐘,ja +59191,Eloise at Christmastime,2003-11-23,89.0,,,tt0353393,,Eloise insists on helping with yuletide nuptials.,0,0,Eloise at Christmastime,en +19277,In Hell,2003-11-24,96.0,,,tt0339135,Rage unleashed.,A man must survive a prison where hardened criminals battle to the death for the warden's entertainment.,0,0,In Hell,en +15981,Dead Leaves,2004-01-16,52.0,,,tt0439533,,"Pandy and Retro, two unlikely renegades, awaken naked on Earth with no recollection of their past. After embarking on a devastating crime spree for food, clothing and transportation in downtown Tokyo, they are captured by authorities and sent to the infamous lunar prison called Dead Leaves.",0,0,デッド リーブス,ja +4254,Kal Ho Naa Ho,2003-11-27,186.0,,,tt0347304,,"Naina is a very serious girl with a very serious life. But one day, her soul is awakened by the happy-go-lucky Aman, who teaches her that life is meant to be lived. Naturally, she falls in love with him. But Aman is harboring a secret that keeps him from reciprocating Naina's love. But he cannot stand having her live a life without love, so he sets off on a mission to fill her life with someone else's love - someone she already knows...",0,13200241,कल हो ना हो,hi +122,The Lord of the Rings: The Return of the King,2003-12-01,201.0,http://www.lordoftherings.net,119,tt0167260,The eye of the enemy is moving.,"Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam bring the ring closer to the heart of Mordor, the dark lord's realm.",94000000,1118888979,The Lord of the Rings: The Return of the King,en +24554,The Land Before Time X: The Great Longneck Migration,2003-12-02,84.0,http://www.landbeforetime.com/,19163,tt0378230,,"A bedtime story leads Littlefoot and his grandparents on a journey to a new land, where Littlefoot discovers someone who vanished before he was born: his father! Now Littlefoot must decide between two worlds. Will he leave to be with his friends in the Great Valley, or stay behind and start a new life with his father?",0,0,The Land Before Time X: The Great Longneck Migration,en +51945,Not on the Lips,2003-12-03,115.0,,,tt0356999,,"A musical drawing room farce set in Paris in October, 1925. Gilberte, in middle-age, flirts with men but loves her husband Georges, wishing he were more demonstrative. He's negotiating a deal with an American, Eric Thomson, who turns out to be Gilberte's first husband from an annulled and secret stateside marriage. Along with her sister Arlette, Gilberte begs Eric not to tell Georges about the marriage. Meanwhile, a young artist, Charly, pursues Gilberte while Arlette tries to match him with the young Huguette, who loves him. Will Eric play along or try to re-win Gilberte's affection? Can Gilberte play one off against another? And who will manage to kiss whom on the lips?",0,0,Pas sur la bouche,fr +337,Monsieur Ibrahim,2003-12-03,94.0,http://www.sonyclassics.com/ibrahim/aboutcast.html,,tt0329388,,Monsieur Ibrahim is a story about a young Jewish boy in Paris who meets an old Muslim Turkish grocery store owner. The film touches the themes of friendship and love as the old man is a father figure to the boy as he teaches him of the Koran. The film is based on a book of the popular book by the French author Eric-Emmanuel Schmitt.,0,11576431,Monsieur Ibrahim et les fleurs du Coran,fr +197057,А поутру они проснулись,2003-12-04,0.0,,,tt0768690,,,0,234748,А поутру они проснулись,ru +32588,Uncle Nino,2003-12-05,104.0,,,tt0327210,,"A distant, slightly dysfunctional family is brought closer together when the father's long-estranged Uncle Nino comes from Italy to Chicago for a surprise visit.",0,0,Uncle Nino,en +616,The Last Samurai,2003-12-05,154.0,,,tt0325710,"In the face of an enemy, in the heart of one man, lies the soul of a warrior.","Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.",140000000,456758981,The Last Samurai,en +6964,Something's Gotta Give,2003-12-12,128.0,,,tt0337741,Schmucks are people too.,"Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother, Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape.",80000000,266728738,Something's Gotta Give,en +24619,Blind Horizon,2003-12-14,99.0,,,tt0337881,,"Left for dead in the remote Southwest, Frank is found clinging to life and in a state of amnesia. As he recovers, ominous memories begin to flash back...",5000000,0,Blind Horizon,en +26961,Puppet Master: The Legacy,2003-12-16,72.0,,107949,tt0390393,Now the legacy can be told.,"Peter Hertz tells a woman the past stories about the puppets, but she secretly wants to kill them.",0,0,Puppet Master: The Legacy,en +30669,Devil's Pond,2003-12-16,92.0,,,tt0329162,,What starts out as a romantic honeymoon on a deserted island turns into a horrible nightmare as Julianne discovers that her new husband is psychotic...,0,0,Devil's Pond,en +61314,Ho visto le stelle,2003-12-19,0.0,,,tt0400507,,,0,0,Ho visto le stelle,it +19625,Munna Bhai M.B.B.S.,2003-12-19,135.0,,44722,tt0374887,,A gangster sets out to fulfill his father's dream of becoming a doctor.,0,0,Munna Bhai M.B.B.S.,hi +11007,Cheaper by the Dozen,2003-12-24,98.0,,114783,tt0349205,Growing pains? They've got twelve of them!,"The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.",40000000,190212113,Cheaper by the Dozen,en +1917,Who Killed Bambi?,2003-12-24,126.0,,,tt0326036,,"Isabelle, a beautiful nursing student, is starting her internship at a prestigious hospital. She meets Dr. Philip there, feels atracted to him from the beggining and starts suffering from strange fainting; so he calls her Bambi: her legs don't support her. Patients mysteriously start to dissappear from their rooms; so Bambi and Dr. Philip start a cat vs. mouse paranoid game, in order to catch the probable killer.",0,0,Qui a tué Bambi ?,fr +42418,Young Black Stallion,2003-12-25,49.0,http://movies.disney.com/the-young-black-stallion,,tt0318850,The greatest story of friendship ever told.,"When courageous young Neera becomes separated from her family in the desert, she chances upon a wild colt. Together they find friendship, trust, and their way back home only to discover her family is about to lose everything!",0,0,Young Black Stallion,en +54406,The Young Visiters,2003-12-26,90.0,,,tt0379053,,"The Young Visiters, written in twelve days by nine-year-old Daisy Ashford in 1890, is a surreal blend of naiveté, precocious perception and inadvertent social satire.",0,0,The Young Visiters,en +238792,The Mayor of Casterbridge,2003-12-28,196.0,,,tt0283474,,Adaptation of Thomas Hardy's novel.,0,0,The Mayor of Casterbridge,en +55534,Dreamkeeper,2003-12-28,174.0,,,tt0309150,,"In South Dakota, in an Indian reservation, an old storyteller Indian asks his grandson Shane, who is in trouble owing money to some bad guys, to take his old pony and him to Albuquerque to the great powwow, an Indian meeting. While traveling, Grandpa tells mysterious Indian tales of love, friendship and magic.",0,0,Dreamkeeper,en +288952,Evergreen,2004-01-01,86.0,,,tt0389988,,A young girl seduced by a boy's affluent seemingly idyllic family and goes to extremes to gain acceptance.,0,0,Evergreen,en +41809,Under the Radar,2004-01-01,95.0,,,tt0352951,Gangsters Don't Surf,"When surf crazy Brandon throws a surf mental he is sentenced to 'helping' in a home for the mentally disabled. Then enter two of the home's people. The two men realize that Brandon is there new ticket for a fun getaway. A day trip to the beach results in them meeting a mysterious waitress called Jo. A accidental murder gets them into strife, but if they want to live they will have to stay under the radar.",0,0,Under the Radar,en +178385,Travis,2004-01-01,12.0,,,tt0979953,,An experimental film matching shifting colors with audio taken from an NPR radio interview with a mother who lost her son in the Iraq War.,0,0,Travis,en +14591,911 in Plane Site,2004-01-01,52.0,http://www.911inplanesite.com/,,tt0454587,"The truth is always the truth, a lie is always a lie, even if everyone believes it.",The public was not given all of the facts surrounding the worst terrorist attack in the United States of America's history.,0,0,911 in Plane Site,en +21379,Bionicle 2: Legends of Metru Nui,2004-01-01,72.0,,59007,tt0387658,,"The legends tells the story of how the Toa came to be, chosen from the pool of Matoran youth in the great city of Metru Nui and, though physically transformed, hardly prepared for increased size and super heroic powers. Now in short order, the Toa--who babble and bicker like agitated adolescents--have to master their new gifts, impress their leader, and prepare to protect their home.",0,0,Bionicle 2: Legends of Metru Nui,en +25060,Zombie Honeymoon,2004-01-01,83.0,,,tt0399934,,Zombie Honeymoon is a gore-soaked exploration of how far the boundaries of true love can be pushed without reaching a breaking point.,0,0,Zombie Honeymoon,en +72867,Hellboy: The Seeds of Creation,2004-01-01,143.0,,,tt0424755,,A comprehensive look at the history of the Hellboy character from his comic book roots through to his movie debut.,0,0,Hellboy: The Seeds of Creation,en +13542,Red Dust,2004-01-01,110.0,,,tt0388364,Nothing is more dangerous than the truth.,"Sarah Barcant, a lawyer in New York City who grew up in South Africa, returns to her childhood dwelling place to intercede for Alex Mpondo, a Black South African politician who was tortured during apartheid.",0,0,Red Dust,en +38328,Che ne sarà di noi,2004-01-01,100.0,,,tt0402912,,,0,0,Che ne sarà di noi,it +48339,Niceland (Population. 1.000.002),2004-01-01,86.0,,,tt0387441,,"Niceland is about a young man Jet, living a joyful life working at a factory with his girlfriend who he's deeply in love with. Shortly after they decide to get married and live together happily ever after her cat, who she has a weird affection for, dies. The girlfriend falls into depression which could (strangely enough) lead to her death and the only way to give her a purpose to live and save her is to tell her the meaning of life.",0,0,Niceland (Population. 1.000.002),en +44489,Ice Men,2004-01-01,108.0,,,tt0233911,,"For the first time since taking possession of the family cabin, Vaughn has invited his best friends up for a winter weekend of hunting and drinking. But the arrival of unexpected visitors turns a simple getaway into two days of life-changing turmoil.",0,0,Ice Men,en +57977,Luna de Avellaneda,2004-01-01,143.0,,,tt0347449,,The story of a social and sports club in a Buenos Aires neighborhood and of those who try to save it from being closed.,0,0,Luna de Avellaneda,en +155191,A Thief Of Time,2004-01-01,94.0,,,tt0367135,The third Leaphorn/Chee movie on PBS,Officers Leaphorn and Chee search for a missing anthropologist suspected of stealing artifacts from a burial site.,0,0,A Thief Of Time,en +27091,Harry And Max,2004-01-01,74.0,,,tt0390080,,"Two brothers, 23 and 16, who are both teen idols, come to terms with their dysfunctional family past and deep affection for each other.",0,0,Harry And Max,en +9010,Silentium,2004-01-01,110.0,,76291,tt0386038,,Silentium is a 2004 Austrian film based on a novel by Wolf Haas.,0,0,Silentium,de +135204,Frank & Wendy,2004-01-01,75.0,http://www.joonisfilm.ee/filmid/frank-ja-wendy,,tt0452226,,"Two American secret agents - Frank and Wendy - are sent to the world's hotbed of danger, known as Estonia. Estonia is a silly place, perhaps even sillier than the agents themselves. Frank and Wendy, for whom saving the world is their daily work, achieve both mental and manual feats with the greatest of ease. It appears that nothing can prevent their ultimate victory, but go figure. The axis of evil does not wither and attacks the super-agents from where they can least expect it...",0,0,Frank ja Wendy,en +28280,Direct Action,2004-01-01,97.0,,,tt0368688,,"Frank Gannon, a veteran cop, is being hunted by his fellow police officers after they learned he has betrayed the brotherhood and exposed to the feds wide scale corruption of the LAPD. He has one day left to prove his case and survive.",0,0,Direct Action,en +25126,Six Shooter,2004-01-01,27.0,,,tt0425458,A black and bloody Irish comedy,"A black and bloody Irish comedy about a sad train journey where an older man, whose wife has died that morning, encounters a strange and possibly psychotic young oddball...",200000,0,Six Shooter,en +38021,Changing Times,2004-01-01,90.0,,,tt0399738,Can your first love also be your last?,"In Tangiers where he traveled for his work, a man finds the woman he loved, and attempts to revive their romance though it ended some 30 years earlier.",0,0,Les Temps qui changent,fr +47200,Schizo,2004-01-01,86.0,,,tt0406216,,A teen involved in the world of underground boxing vows to take care of a dead fighter's family.,0,0,Shiza,en +32298,Seeing Other People,2004-01-01,90.0,,,tt0362129,,"Two months shy of their wedding, a couple decide to allow each other last flings until their wedding.",0,0,Seeing Other People,en +24775,Blast,2004-01-01,92.0,,,tt0361399,Oil And Money Are An Explosive Mix.,A terrorist posing as environmentalist hijacks an oil rig off the coast of California with the intent of detonating an electromagnetic bomb over the US.,20000000,0,Blast,en +70476,Gracie's Choice,2004-01-12,90.0,,,tt0395565,A story of love,"For as long as she can remember, 16 year-old Gracie has been raising her four siblings, each of whom has a different, absent father and their mother is on the fast track to self-destruction. When these children's lives are about to be pulled apart, Gracie will have to do the impossible and make the ultimate sacrifices to keep her family together.",0,0,Gracie's Choice,en +12540,Bring It On Again,2004-01-13,90.0,https://www.uphe.com/movies/bring-it-on-again,430186,tt0334965,May the best moves win again.,"When new students can't get onto their college cheerleading team, they form their own squad and prepare for a cheer off.",0,0,Bring It On Again,en +29168,Dr. Moreau's House of Pain,2004-01-13,0.0,,,tt0400383,,"In a big mansion, a scientist has been experimenting with humans and animals, mixing their DNA together.",0,0,Dr. Moreau's House of Pain,en +1640,Crash,2004-01-13,112.0,http://www.crashfilm.com/,,tt0375679,You think you know who you are. You have no idea.,"Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.",6500000,98410061,Crash,en +80660,The Perfect Husband,2004-02-12,94.0,,,tt0377102,,A woman discovers her new husband wants to keep her all to himself.,0,0,The Perfect Husband,en +129129,Light Is Calling,2004-01-16,8.0,,,tt0393435,,"A scene from The Bells (1926) is optically reprinted and edited to Michael Gordon's 7 minute composition. A meditation on the fleeting nature of life and love, as seen through the roiling emulsion of an film.",0,0,Light Is Calling,en +49007,Iron Jawed Angels,2004-01-16,125.0,http://www.iron-jawed-angels.com,,tt0338139,Votes for women,"Defiant young activists take the women's suffrage movement by storm, putting their lives at risk to help American women win the right to vote.",0,0,Iron Jawed Angels,en +82134,I Want to Marry Ryan Banks,2004-01-18,120.0,,,tt0385013,,"Ryan Banks's manager and old friend, Todd, comes up with the idea to have Ryan be the bachelor on a reality dating show in order to clean up his image. The only problem is, Todd falls in love with Charlie, the girl Ryan has chosen to propose to.",0,0,I Want to Marry Ryan Banks,en +436,Maria Full of Grace,2004-01-18,101.0,http://www.mariallenaeresdegracia.com/index.html,,tt0390221,"Based on 10,000 true stories.",A pregnant Colombian teenager becomes a drug mule to make some desperately needed money for her family.,0,0,"María, llena eres de gracia",es +25903,Marie and Bruce,2004-01-19,90.0,,,tt0365480,,"Based on a play by Wallace Shawn, the film is a dark but comical glimpse at one day in the breakdown of a marriage.",0,0,Marie and Bruce,en +540,D.E.B.S.,2004-01-21,91.0,,,tt0367631,Evil is so totally busted!,The star of a team of teenage crime fighters falls for the alluring villainess she must bring to justice.,3500000,0,D.E.B.S.,en +21778,RRRrrrr!!!,2004-01-28,94.0,,,tt0357111,,"37 000 years ago, two neighboring tribes lived in peace ... not fully in peace. While the tribe clean hair flowed peaceful days by keeping to herself the secret formula shampoo, Tribe Hair Sales lamented. Its leader decided to send a spy to steal the recipe ...",17820000,14054361,RRRrrrr!!!,fr +12249,Aaltra,2004-01-29,92.0,,,tt0405629,,No overview found.,0,0,Aaltra,en +158780,Run,2004-01-29,0.0,,,tt0411815,Run,"This action movie is filled with romance and adventure. As Abhisek fights for his life against the forces of crime and injustice, he meets Bhoomika, who captures his heart.",0,0,Run,en +20430,Meet Market,2004-01-29,78.0,,,tt0366762,,"Lonely aspirants on the LA dating scene hook up at thier local grocery store, where they can see and be seen by some of their dubiously eligible fellow singles, all the while hoping for that one magical relationship that will finally click.",0,0,Meet Market,en +45990,Christmas Rematch,2004-01-30,99.0,,441461,tt0403452,,,0,0,La rivincita di Natale,it +13505,The Perfect Score,2004-01-30,93.0,,,tt0314498,The S.A.T is hard to take. It's even harder to steal.,Six high school seniors decide to break into the Princeton Testing Center so they can steal the answers to their upcoming SAT tests and all get perfect scores.,0,0,The Perfect Score,en +16843,11:11,2004-02-01,0.0,,,tt0396401,,"Eighteen years after the murder of her parents, Sara Tobias searches for the meaning of the numbers '11:11' that was scratched in blood beside her mother's body. Following three sudden murders, supernatural events are unleashed as she gets closer to the truth.",0,0,11:11,es +17825,The 11 Commandments,2004-02-04,85.0,,,tt0386695,,"After an evening of drinking, six men find themselves in front of The God of the Joke. Distressed to find that people aren't laughing anymore, He gives the six friends a mission: to save the world with the Eleven Commandments of the Joke. The men enthusiastically take on their task. They undertake various tests aimed at pushing the limits of stupidity.",0,0,Les 11 Commandements,fr +66926,Magyar vándor,2004-02-05,110.0,,,tt0370919,,"Magyar vándor is a 2004 Hungarian action comedy film directed by Gábor Herendi and starring Károly Gesztesi, János Gyuriska and Gyula Bodrogi",0,0,Magyar vándor,en +180050,Cigarettes and Coffee,2004-02-05,15.0,,,tt0397696,,"The father, fired two years before retirement, wants to get rehired, requiring the support of his son. The action takes place in a restaurant in Bucharest.",0,0,Un cartus de Kent și un pachet de cafea,ro +11658,Tae Guk Gi: The Brotherhood of War,2004-02-05,140.0,,,tt0386064,,"In 1950, in South Korea, shoe-shiner Jin-tae Lee and his 18-year-old old student brother, Jin-seok Lee, form a poor but happy family with their mother, Jin-tae's fiancé Young-shin Kim, and her young sisters. Jin-tae and his mother are tough workers, who sacrifice themselves to send Jin-seok to the university. When North Korea invades the South, the family escapes to a relative's house in the country, but along their journey, Jin-seok is forced to join the army to fight in the front, and Jin-tae enlists too to protect his young brother. The commander promises Jin-tae that if he gets a medal he would release his brother, and Jin-tae becomes the braver soldier in the company. Along the bloody war between brothers, the relationship of Jin-seok with his older brother deteriorates leading to a dramatic and tragic end.",0,15,태극기 휘날리며,ko +14292,Miracle,2004-02-06,135.0,,,tt0349825,"If you believe in yourself, anything can happen.","In 1980, the United States Ice Hockey team's coach, Herb Brooks, put a ragtag squad of college kids up against the legendary juggernaut from the Soviet Union at the Olympic Games. Despite the long odds, Team USA carried the pride of a nation yearning for a distraction from world events. With the world watching, the team rose to the occasion, prompting broadcaster Al Michaels' now famous question to the millions viewing at home: ""Do you believe in miracles?"" Yes!",28000000,64445708,Miracle,en +128856,Traffic Affairs,2004-02-06,0.0,,,tt0407008,,,0,0,Mitfahrer – Jede Begegnung ist eine Chance,de +44593,Perfect Opposites,2004-02-06,90.0,,,tt0259567,,"The story of two college graduates from the Midwest who move to Los Angeles, where their love is tested for the first time.",700000,0,Perfect Opposites,en +11346,Kleinruppin forever,2004-02-08,103.0,,,tt0362804,,No overview found.,0,0,Kleinruppin forever,de +9470,Kung Fu Hustle,2004-02-10,99.0,,,tt0373074,So many gangsters...so little time.,"Set in Canton, China in the 1940s, the story revolves in a town ruled by the Axe Gang, Sing who desperately wants to become a member. He stumbles into a slum ruled by eccentric landlords who turns out to be the greatest kung-fu masters in disguise. Sing's actions eventually cause the Axe Gang and the slumlords to engage in an explosive kung-fu battle. Only one side will win and only one hero will emerge as the greatest kung-fu master of all.",20000000,100914445,功夫,cn +58529,Dealer,2004-02-11,136.0,,,tt0398013,,"In an impressive follow up to his debut film Forest, Benedek Fliegauf tells the uncompromising story of a day in the life of a drug dealer. His clients include the leader of a religious sect, a friend who needs a final fix, a former lover who has had his child, a student, and a black marketeer. Fliegauf's film recreates life in a city that resembles a ghost town, an alienated world with its own priorities and realities. It is, he says '. an imaginary city with a strongly spiritualist atmosphere. This necropolis is the film's real protagonist'.",0,0,Dealer,hu +55396,Koirankynnen leikkaaja,2004-02-12,0.0,,,tt0349691,,,0,0,Koirankynnen leikkaaja,fi +29979,Highwaymen,2004-02-13,80.0,,,tt0339147,"When murder is no accident, revenge is no crime.","James Cray watched as his wife was killed by Fargo, a hit-and-run serial murderer. After severely injuring Fargo and going to prison for several years, James is now determined to avenge his wife's death. He drives across the country looking for Fargo's 1972 Cadillac Eldorado, which the now-disabled killer has turned into a rolling death trap. James' search is helped by a state traffic officer and a singer with her own agenda.",0,371396,Highwaymen,en +55681,The Halfway House,2004-02-14,90.0,,,tt0390073,Halfway between our world... and theirs!,Young girls are disappearing in and around the Mary Magdalen Halfway House for Troubled Girls.,0,0,The Halfway House,en +56344,The Dark Diamond,2004-02-14,0.0,,,tt0289933,,,0,0,Suske en Wiske - De duistere diamant,nl +33611,The Robbery of the Third Reich,2004-02-16,105.0,,,tt0374128,,"Story is set in World War 2 period, and shows life of two robbers in a war time.",0,0,Pljačka Trećeg rajha,sr +11930,A2 Racer,2004-02-19,87.0,,,tt0391774,,A teen comedy with cool cars and fast driving.,7200000,0,Autobahnraser,de +8842,Against the Ropes,2004-02-20,106.0,,,tt0312329,,"A fictional story inspired by North America's most famous female boxing promoter, Jackie Kallen. Her struggle to survive and succeed in a male dominated sport.",39000000,6614280,Against the Ropes,en +9352,EuroTrip,2004-02-20,93.0,,,tt0356150,No actual Europeans were harmed in the making of this film.,"When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.",25000000,20796847,EuroTrip,en +16784,Welcome to Mooseport,2004-02-24,110.0,,,tt0361925,,"A US president (Gene Hackman) who has retired after two terms in office returns to his hometown of Mooseport, Maine and decides to run for Mayor against another local candidate (Ray Romano).",30000000,14000000,Welcome to Mooseport,en +66340,Virumandi,2004-02-26,160.0,,,tt0364647,,"A reporter researching the death penalty in India is recounted the story of a farm owner Virumandi whose role in a clan feud between Naicker and Kothalla Devar leads him to death row. As the story unfolds, there is a riot in the jail, and the only one who can get the reporter safely out of the prison is Virumandi.",0,0,விருமாண்டி,ta +18442,Decoys,2004-02-27,95.0,,140758,tt0357585,They can seduce anyone... Prey it isn't you!,"Luke and Roger are just another couple of college guys trying to lose their virginity. But when Luke sees something unusual, he begins to suspect that the girls on campus aren't exactly...human.",5000000,0,Decoys,en +52188,The Waiting Room,2004-02-27,92.0,,,tt0446930,,"Zeki Demirkubuz plays the lead character Ahmet who wants to make a film about Dostoyevsky's 'Crime and Punishment'. He falls into a deep depression, loses interest in the film and life, pushes those who love him away and cannot complete the film.",0,0,Bekleme Odası,tr +80012,Face of Terror,2004-02-28,100.0,,,tt0328993,Nothing's more deadly than a man with nothing to lose.,A police officer searching for his missing sister in Spain uncovers a terrorist cell.,0,0,Face of Terror,en +56527,Skeleton Man,2004-03-01,89.0,,,tt0372832,,A co-ed group of Special Forces agents search the wilderness for a predator type creature that has been on a killing spree.,0,0,Skeletonman,en +57307,L'incruste,2004-03-01,86.0,,,tt0374764,,,0,0,L'incruste,fr +65509,See This Movie,2004-03-03,82.0,,,tt0382966,"No Script, No Budget, No Film -- No Problem!",Two bumbling but determined three-day film school graduates enter the Montreal World Film Festival with a feature film that doesn't exist.,0,0,See This Movie,en +78789,Tomorrow We Move,2004-03-03,110.0,,,tt0328990,,"When her mother moves in, the life of a writer gets crowded.",0,0,Demain on déménage,fr +25500,Red Lights,2004-03-03,105.0,,,tt0365190,,A cross-country trip turns out to be a nightmare for a troubled couple.,0,0,Feux rouges,en +2349,Peas at 5:30,2004-03-04,107.0,,,tt0366416,,"It all starts with a bang. The car breaks through the crash barrier and falls off the bridge. The lights go out. After that, he is not able to see anymore. His optic nerve is severed, from now on the young stage-director Jakob is blind. His life will change and nothing will ever be the same. Jakob cannot handle the idea of never being able to see again and screams at the only woman who is able and willing to help him, Lily. A rehabilitation teacher, she helps the blind deal with the darkness. Lily has been living with it since birth, she too is blind.",0,0,Erbsen auf halb 6,de +161535,Doraemon:貓狗時空傳,2004-03-06,0.0,,,,,"One day, Nobita finds a stray dog drowning in a river while playing by the river side. Feeling sorry for the dog, he decides to take it home by hiding it in a ""kennel on the wall"" and names it Ichi (originated from ""One"", which sounds similar to ""wan"", the sound a dog makes according to the Japanese language), and secretly feeds it and plays with Ichi with his Kendama to find. Soon after, he also adopts a stray cat named Zubu (or wet in Japanese, due to the discovery of it in a rainstorm)... and many other stray cats and dogs. With so many stray cats and dogs, Nobita, along with his friends, decide to send them back in time, 300 million years ago, where there was no other living beings around. After using the Ray of Evolution to allow them to operate a food-making machine, they depart, with a promise to return to the present.",0,0,Doraemon:貓狗時空傳,en +259728,Long Dark Night,2004-03-07,194.0,,,tt0305499,,"""Long Dark Night"" follows the life of the fictional character Iva Kolar: his experiences as a Croatian University student, his role as a Partisan fighting Hitler's troops during W.W. II, his involvement in his nation's post-war government, and his eventual downfall.",0,0,Duga mračna noć,hr +35304,Miss Sweden,2004-03-09,92.0,,,tt0387233,"Enjoyable, bouncy little romantic comedy","Moa is in her early 20s, works at a factory and lives by herself in a cottage in the forest. She is a vegan and follows her friends and demonstrations, mostly to fit in. But at home, by herself, she listens to pop music and use make-up.",0,0,Fröken Sverige,sv +71496,Le festin de la mante,2004-03-10,0.0,,,tt0404337,,,0,0,Le festin de la mante,fr +12453,Stupid Boy,2004-03-10,94.0,,,tt0419766,,"This coming-of-age drama deals with a young man, realizing who he really is and which things he will never do...",0,0,Garçon stupide,fr +266687,Games People Play,2004-03-12,97.0,,,tt0371683,,"In the style of many reality shows, six people (three men and three women) vie for a cash prize of $10,000 by performing risqué stunts and offering up scintillating",0,0,Games People Play,en +282086,Shark in the Head,2004-06-01,75.0,,,tt0407339,,Shark in the Head unfolds into a stunning cinematic powerhouse that combines comedy and drama for a touching story about how we influence the people we meet while being profoundly affected ourselves by the colors they bring to our own lives.,0,0,Žralok v hlavě,cs +16147,Aurore,2005-07-08,115.0,,,tt0430895,,"After the sudden death of her mother, Aurore Gagnon is abused by her disturbed step-mother as her town remains in the silence followed by her death. Based on a true story.",6000000,0,Aurore,fr +294517,Aging Out,2004-03-12,0.0,,,tt0395441,,"Artfully directed by award-winning filmmakers Roger Weisberg and Vanessa Roth, ""Aging Out"" chronicles the daunting obstacles that three young people in foster care encounter as they ""age out"" of the system and are suddenly on their own for the first time. ""Aging Out"" is more than a dark chronicle of young people who move from foster care into the welfare, mental health, and criminal justice systems. This emotionally complex film is also a portrait of young adults struggling to overcome the scars of their troubled childhood in order to realize their dreams of independence and fulfillment.",0,0,Aging Out,en +1586,Secret Window,2004-03-12,96.0,,,tt0363988,The most important part of a story is the ending.,"Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.",40000000,92913171,Secret Window,en +5552,Immortal,2004-03-13,103.0,,,tt0314063,,New York City in the year 2095 where genetically altered humans live side by side with unaltered men and women.,24665810,0,Immortel (ad vitam),fr +49258,Quill: The Life of a Guide Dog,2004-03-13,100.0,http://www.quill-movie.com/,,tt0400761,,"As a Labrador puppy, Quill is sent to live with a couple, Isamu and Mitsuko Nii, who work as volunteers, training guide dogs (seeing eye dogs). When he grows to an adult dog, he is taken to a guide dog school, by a friendly, yet firm trainer Satoru Tawada. Although Quill is a little slower than the other dogs at the school, he seems to have an unusual 'empathy' and remarkable patience with his trainers. Tawada decides that Quill would be the ideal guide dog for Mitsuru Watanabe, but Wanatabe, a lonely and ill-tempered middle aged man, isn't as enthusiastic - he would ""would rather sleep than be dragged around by a dog."". From here, the story is narrated by Wanatabe's daughter, Mitsuko, and slowly, Wantanbe is rehabilitated, venturing into the outside world, and learning, not only to trust other humans, but the animal at his side who guides him.",0,0,クイール,ja +41714,The Beautiful Country,2004-03-13,137.0,,,tt0273108,An epic story of hope.,"After reuniting with his mother in Ho Chi Minh City, a family tragedy causes Binh to flee from Viet Nam to America. Landing in New York, Binh begins a road trip to Texas, where his American father is said to live.",0,0,The Beautiful Country,en +924,Dawn of the Dead,2004-03-19,101.0,http://www.dawnofthedeadmovie.net/,,tt0363547,"When the undead rise, civilization will fall.","A group of surviving people take refuge in a shopping center after the world has been over taken over by aggressive, flesh-eating zombies. A remake of the 1978 zombie film of the same name.",28000000,102356381,Dawn of the Dead,en +140,Bad Education,2004-03-19,106.0,http://www.lamalaeducacion.com,,tt0275491,,"Two children, Ignacio and Enrique, know love, the movies and fear in a religious school at the beginning of the 1960s. Father Manolo, director of the school and its professor of literature, is witness to and part of these discoveries. The three are followed through the next few decades, their reunion marking life and death.",5000000,40266982,La mala educación,es +41569,The Nomi Song,2004-03-23,98.0,,,tt0402406,,"Looks like an alien, sings like a diva - Klaus Nomi was one of the 1980s' most profoundly bizarre characters to emerge through rock music: a counter tenor who sang pop music like opera and brought opera to club audiences and made them like it. The Nomi Song is a film about fame, death, friendship, betrayal, opera, and the greatest New Wave rock star that never was!",0,0,The Nomi Song,en +10594,The Skulls III,2004-03-23,102.0,,8647,tt0352851,,"A young college co-ed tries joining the elite, all-male, secret society, the Skulls, and in so doing, she uncovers some unscrupulous methods used by some of the members to get what they want.",0,0,The Skulls III,en +11024,Scooby-Doo 2: Monsters Unleashed,2004-03-24,93.0,,86860,tt0331632,They came. They saw. They ran.,"When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes?",0,181466833,Scooby-Doo 2: Monsters Unleashed,en +9541,Jersey Girl,2004-03-25,102.0,,,tt0300051,He wanted it all...but he got more than he bargained for.,"Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.",35000000,36098382,Jersey Girl,en +5516,The Ladykillers,2004-03-25,104.0,,,tt0335245,The greatest criminal minds of all time have finally met their match.,"An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord – a sharp old woman.",0,0,The Ladykillers,en +20304,Never Die Alone,2004-03-26,88.0,,,tt0354766,No king rules forever.,A drug kingpin's return home touches off a turf war.,3000000,5923000,Never Die Alone,en +44415,Benji: Off the Leash!,2004-03-26,97.0,,424830,tt0315273,Rules are made to be housebroken,Benji and his friends try to save his mother from a puppy mill.,0,0,Benji: Off the Leash!,en +11137,The Prince & Me,2004-03-28,111.0,,86334,tt0337697,Finding your inner princess can be such a royal pain.,"A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince ""Eddie"" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.",0,0,The Prince & Me,en +5494,George and the Dragon,2004-03-28,93.0,,,tt0306892,,A knight returning from the Crusades takes on a dragon and becomes a legend.,32000000,0,George and the Dragon,en +33916,Czech Dream,2004-03-30,90.0,http://www.ceskatelevize.cz/specialy/ceskysen/en/,,tt0402906,,"Two students from the Czech Film Academy commission a leading advertising agency to organize a huge campaign for the opening of a new supermarket named Czech Dream. The supermarket however does not exist and is not meant to. The advertising campaign includes radio and television ads, posters, flyers with photos of fake Czech Dream products, a promotional song, an internet site, and ads in newspapers and magazines. Will people believe in it and show up for the grand opening?",0,17393,Český sen,cs +243934,Pin Boy,2004-03-31,90.0,,,tt0407099,,"A country boy tries to find his place in Buenos Aires. He goes to live with his cousin in the outer suburbs and works as a parapalos (""pin setter"") in one of the city's last hand-operated bowling alleys.",0,0,Parapalos,en +60665,Drum,2004-10-30,94.0,,,tt0379765,,A hot-shot journalist is swept up in a movement to challenge Apartheid in 1950s South Africa.,0,0,Drum,en +10797,Terkel in Trouble,2004-04-02,77.0,,238419,tt0386820,Torkel is an average teenager whose life takes a turn for the worse when a girl who had a crush on him kills herself and an unknown maniac starts stalking him.,"In this unhinged Danish animation, 6th-grader Terkel (Anders Matthesen) begins experiencing a streak of bad luck after sitting on a black spider. His teacher dies and is replaced by the strange Justin (also Matthesen). At home, Terkel's Uncle Stewart (also Matthesen) erupts in sporadic fits of rage, and at school, Terkel is bullied by two boys after they learn that fat Doris likes him. On a school camping trip, Terkel begins receiving death threats and must figure out who wants to kill him.",0,0,Terkel i knibe,da +11358,Walking Tall,2004-04-02,86.0,,299748,tt0351977,One man will stand up for what's right.,"A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.",56000000,57223890,Walking Tall,en +33280,Cry in the Woods,2004-04-02,97.0,,,tt0408199,"The one who fears the Wolf, should not go into the Woods","An unfortunate bank robber takes an escaped mental patient, wanted for murder, as hostage.",0,0,Den som frykter ulven,da +80394,Galerions Rion,2004-04-06,73.0,,,tt0431770,man. machine. menace,"A boy awakes, imprisoned in a hospital without a name or memory. He is immediately attacked and discovers to his surprise that he has incredible telekinetic powers. A girl, her psychic voice calling for help inside his head, sends him on a adventure to save her: And by saving her, he will save all humanity.",0,0,Galerions Rion,en +10733,The Alamo,2004-04-07,137.0,,,tt0318974,You will never forget,"Based on the 1836 standoff between a group of Texan and Tejano men, led by Davy Crockett and Jim Bowie, and Mexican dictator Santa Anna's forces at the Alamo in San Antonio, Texas.",145000000,25819961,The Alamo,en +747,Shaun of the Dead,2004-04-09,99.0,,,tt0365748,A romantic comedy. With zombies.,"Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.",4000000,30039392,Shaun of the Dead,en +76684,Masti,2004-04-09,166.0,,419784,tt0406977,,"Three henpecked friends try to escape their unhappy marriages by seeking out some extramarital fun, only to end up being blackmailed.",0,0,Masti,hi +10096,13 Going on 30,2004-04-13,98.0,,,tt0337563,"For some, 13 feels like it was just yesterday. For Jenna, it was.","After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. With a little magic, her wish is granted, but it turns out that being thirty isn't as always as awesome as she thought it would be!",37000000,96455697,13 Going on 30,en +43432,Roma,2004-04-15,148.0,,,tt0383862,,"Joaquín Góñez, a novelist in his sixties recalls his emotions, his wild years in Buenos Aires, the memories of old friends, the meaning of loyalty and the intimate relationship with his mother, Roma.",2763806,0,Roma,es +7220,The Punisher,2004-04-15,124.0,http://marvel.com/movies/movie/5/the_punisher,,tt0330793,"There is no justice, there is only revenge.","When undercover FBI agent Frank Castle's wife and son are slaughtered, he becomes 'the Punisher' -- a ruthless vigilante willing to go to any length to avenge his family.",33000000,54700105,The Punisher,en +27300,Hair High,2004-04-17,78.0,,,tt0365296,,"Bill Plympton's gothic '50s high-school comedy about a love-triangle that goes terribly wrong. Two murdered teens return from the grave, then go to their prom to get revenge.",0,0,Hair High,en +11633,Appleseed,2004-04-17,101.0,,87800,tt0401233,Humanity's last chance for survival.,"In a utopian society created at the end of the third world war, a female warrior who has been plucked from the badlands begins to see cracks in this new facade. And what does this community have planned for the rest of humankind?",10000000,1461989,アップルシード,ja +34100,Zen Noir,2004-04-21,71.0,,,tt0407337,,No overview found.,0,0,Zen Noir,en +10458,Soundless,2004-04-22,94.0,,,tt0325713,,No overview found.,0,0,Lautlos,de +117099,Bardaasht,2004-04-23,160.0,,,tt0409724,,"Bardhaasht is a Bollywood drama and thriller film released in 2004. The director is E. Niwas. It is based on the screenplay written by Vikram Bhatt. The main cast of the movie is Bobby Deol, Lara Dutta and Rahul Dev. Bardaasht is noted for its gritty and brutal portrayal of police force and triumph of human will and justice in the form of Major Aditya Shrivastava portrayed by Bobby Deol.",0,0,Bardaasht,en +118180,Repatriation,2004-04-24,149.0,,,tt0390425,,North Korean spies return to their homeland.,0,0,송환,ko +110989,Spooky House,2004-04-24,0.0,,,tt0160905,,"A magician with a mysterious secret lives alone with his jaguar, Shadow, in the Spooky House, an old mansion rigged with magic tricks and hidden chambers.",0,0,Spooky House,en +73123,In Orange,2004-04-28,90.0,,,tt0382095,,"An 11 year old talented soccer player, Remco, has one big dream: to be selected for the national team under 12 years. His father Erik coaches him and everything seems to work out fine, until Erik suddenly dies. Remco and mother Sylvia are shocked. Remco keeps working to fulfil his dream, being helped by his friends Anne and Winston.",0,0,In Oranje,nl +11058,Godsend,2004-04-30,102.0,,,tt0335121,"When a miracle becomes a nightmare, evil is born.","A couple agree to have their deceased son cloned under the supervision of an enigmatic doctor, but bizarre things start to happen years after his rebirth.",25000000,30114487,Godsend,en +10710,Envy,2004-04-30,99.0,,,tt0326856,"Success didn’t go to his head, it went to his neighbor.",A man becomes increasingly jealous of his friend's newfound success.,40000000,0,Envy,en +14134,Main Hoon Na,2004-04-30,175.0,,,tt0347473,,"An army major goes undercover as a college student. His mission is both professional and personal: to protect his general's daughter from a radical militant, and to find his estranged half-brother.",0,0,Main Hoon Na,hi +8985,Visions of Europe,2004-05-01,140.0,http://www.visionsofeurope.dk/,,tt0425624,,Twenty-five films from twenty-five European countries by twenty-five European directors.,2000000,0,Visions of Europe,en +53870,10.5,2004-05-02,165.0,,,tt0364146,The Greatest Quake in Human History threatens to Rock The World!,"An earthquake reaching a 10.5 magnitude on the Richter scale, strikes the west coast of the U.S. and Canada. A large portion of land falls into the ocean, and the situation is worsened by aftershocks and tsunami.",20000000,0,10.5,en +18165,The 24th Day,2004-05-06,96.0,,,tt0246404,The next lie you tell may be your last.,Tom and Dan's one-night stand turns into an intense power-play between captor and captive.,0,0,The 24th Day,en +300210,Route 181: Fragments of a Journey in Palestine-Israel,2004-05-06,270.0,,,tt0403462,,"Route 181 is the epic record of a road trip undertaken in the summer of 2002 by two filmmakers, one Palestinian and one Israeli, along sections of what had been designated as the border between Israel and Palestine by U.N. Resolution 181 in 1947.",0,0,Route 181: Fragments of a Journey in Palestine-Israel,en +48489,The Sin,2004-05-14,95.0,,,tt0783798,,"Dhep (Andy-Watchra Thungkaprasert) is a traveling photographer on his way home to broach unresolved problems between his father and himself. But, on his way home to the island, he meets Riam (Helen Nima) at the pier, and swiftly falls in love with her – before learning that she’s his father, Cheng’s (Sorapong Chatree), new wife. Dhep’s stay at their place familiarizes him with the problems between his violent and sadistic father and stepmother, so he tries to treat Riam kindly to make her feel better. But the forbidden love rears its head again, and the pair decides to make a go of it.",0,0,Choo,th +26810,A Common Thread,2004-05-14,89.0,,,tt0387892,,"French drama, the debut film from writer-director Eléonore Faucher. Teenager Claire (Lola Naymark) discovers she is pregnant and decides to keep it a secret. Abandoning her dead-end supermarket job, she is taken on as an apprentice by couturiere Madame Mélikian (Ariane Ascaride), who is grieving over the death of her own child. As the two women work together, they soon develop a supportive and fam",0,0,Brodeuses,fr +40127,Art of the Devil,2004-05-14,96.0,,220441,tt0444759,,"A pregnant woman is abandoned by her lover. Enraged, she goes to a witch doctor and uses black magic to have her ex and his family killed, only for another woman claiming to be her lover's secret mistress to claim his inheritance and move into his house with her children. Not long after that, inexplicable things happen to that family and, one by one, they begin to die.",0,0,Art Of The Devil,th +16131,Undertow,2004-05-14,108.0,http://www.undertowmovie.com/,,tt0360130,,"The Munns, father John and sons Chris and Tim, recede to the woods of rural Georgia. Their life together is forever changed with the arrival of Uncle Deel, though the tragedy that follows forces troubled Chris to become a man.",0,143597,Undertow,en +16428,Breakin' All the Rules,2004-05-14,85.0,,,tt0349169,When it comes to getting dumped... He wrote the book.,"Inspired by his fiancée (who dumped him), a man publishes a break-up handbook for men, becoming a bestselling author in the process.",0,0,Breakin' All the Rules,en +16447,Woman Is the Future of Man,2004-05-14,88.0,,,tt0403692,,"As the first snow falls in Seoul, two old friends reunite; one is a successful college professor, and the other, a struggling filmmaker recently returned from the United States. After their reminiscences, they finally decide to go in search of the young woman each had romanced years earlier.",0,0,여자는 남자의 미래다,ko +55922,Intern Academy,2004-05-16,98.0,,,tt0367232,Are you hot enough to be admitted?,Follows the misadventures of a group of young interns at a hospital/medical school - dealing with the pressures of school and love.,0,0,Intern Academy,en +8981,Dear Frankie,2004-05-18,105.0,,,tt0377752,,"Nine-year-old Frankie and his single mum Lizzie have been on the move ever since Frankie can remember, most recently arriving in a seaside Scottish town. Wanting to protect her deaf son from the truth that they've run away from his father, Lizzie has invented a story that he is away at sea on the HMS Accra. Every few weeks, Lizzie writes Frankie a make-believe letter from his father, telling of his adventures in exotic lands. As Frankie tracks the ship's progress around the globe, he discovers that it is due to dock in his hometown. With the real HMS Accra arriving in only a fortnight, Lizzie must choose between telling Frankie the truth or finding the perfect stranger to play Frankie's father for just one day...",0,0,Dear Frankie,en +809,Shrek 2,2004-05-19,93.0,http://www.shrek2.com/,2150,tt0298148,Once upon another time...,"Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.",150000000,919838758,Shrek 2,en +9550,House of Flying Daggers,2004-05-19,119.0,,,tt0385004,,"In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.",0,92863945,十面埋伏,zh +844,2046,2004-05-20,129.0,http://www.wkw2046.com/,287016,tt0212712,Are you still in the mood for love?,"2046 is the sequel to Wong Kar-Wais’ successful box-office hit In The Mood For Love. A film about affairs, ending relationships, and a shared love for Kung-Fu novels as the main character, Chow, writes his own novel and reflects back on his favorite love Su.",12000000,19271312,2046,zh +11171,Mysterious Skin,2004-05-20,105.0,,,tt0370986,Two boys. One can't remember. The other can't forget.,"A teenage hustler and a young man obsessed with alien abductions cross paths, together discovering a horrible, liberating truth.",0,1524966,Mysterious Skin,en +63825,Aayitha Ezhuthu,2004-05-21,155.0,,,tt0375571,,Three men and their accidental meeting on a bridge will change their lives forever.,0,0,ஆயுத எழுத்து,ta +5413,Omagh,2004-05-22,102.0,,,tt0408056,,"The movie starts at the 1998 bomb attack by the Real IRA at Omagh, Northern Ireland. The attack killed 31 people. Michael Gallagher one of the relatives of the victims starts an examination to bring the people responsible to court.",0,0,Omagh,en +43670,Stateside,2004-05-23,97.0,,,tt0339727,Boy in a flack jacket meets girl in a straight jacket.,The film follows a rebellious teenager on leave from the Marines who falls in love with a female musician. The relationship is threatened when she develops a mental illness...,16000000,174318,Stateside,en +5460,Cruel Intentions 3,2004-05-25,85.0,,52789,tt0391891,Good things come in 3's,"Two guys at a college prep school make wagers on seducing naive young girls, and then meet their match when they agree to see which one can seduce the most popular and devious girl who has her own agenda to everything.",0,0,Cruel Intentions 3,en +435,The Day After Tomorrow,2004-05-26,124.0,http://www.thedayaftertomorrow.com/,,tt0319262,Where will you be?,"After years of increases in the greenhouse effect, havoc is wreaked globally in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and the beginning of a new Ice Age. Paleoclimatologist, Jack Hall tries to warn the world while also shepherding to safety his son, trapped in New York after the city is overwhelmed by the start of the new big freeze.",125000000,544272402,The Day After Tomorrow,en +4253,Hum Tum,2004-05-28,142.0,,,tt0378072,,"Hum Tum (Hindi: हम तुम, translation: You and Me, Urdu: ہم تم) is a Bollywood movie, released in India on May 28, 2004, directed by Kunal Kohli and produced by Aditya Chopra and Yash Chopra. The movie stars Saif Ali Khan and Rani Mukerji in the lead roles.",0,0,Hum Tum,hi +20544,Something the Lord Made,2004-05-30,110.0,,,tt0386792,A breakthrough that changed the face of medicine. A unique partnership that broke the rules.,A dramatization of the relationship between heart surgery pioneers Alfred Blalock and Vivien Thomas.,0,0,Something the Lord Made,en +236007,Naksha,2006-09-07,0.0,,,tt0813540,,"20 years after the death of an archaeologist, Kapil Malhotra, his younger son, Vicky attempts to uncover his father's mission with the help of an ancient map.",0,0,Naksha,en +10103,Windstruck,2004-06-03,123.0,,,tt0409072,If only I can feel you... even as the wind,"When police officer Kyungjin met with Myungwoo accidentally in a crime, she found that this responsible teacher was a really nice guy. At that night, Kyungjin got into a fight with a bunch of high school kids and got trouble in a big gun fight between rival drug dealers. Myungwoo tried to help her but then something happened that forces them stayed together all day long. They got closer to each other and Myungwoo was not able to repulse the strange but pure nature. He fell in love with her. One day, when Kyungjin was chasing a notorious criminal, Myungwoo helped her again, however, not knowing that what would happen that day changed their relationship forever...",0,5331377,내 여자친구를 소개합니다,ko +131932,FBI: Frikis buscan incordiar,2004-06-04,85.0,,,tt0416730,,"The police are on the trail of the band of Cardenas. He and his cronies engaged annoy geeks city, making all kinds of atrocities. The police will not let them get away with it, but perhaps it's too late ...",0,928391,FBI: Frikis buscan incordiar,es +12450,King Solomon's Mines,2004-06-06,173.0,,,tt0397501,The greatest treasure known to man. The greatest adventure of all time.,"An adventurous quest for a treasure hidden in King Solomon's mines, based on H. Rider Haggard's timeless tale.",0,0,King Solomon's Mines,en +9890,The Stepford Wives,2004-06-10,93.0,,,tt0327162,The wives of Stepford have a secret.,"What does it take to become a Stepford wife, a woman perfect beyond belief? Ask the Stepford husbands, who've created this high-tech, terrifying little town.",90000000,102000000,The Stepford Wives,en +9528,Ladies in Lavender,2004-06-14,104.0,,,tt0377084,,"Andrea, a gifted young Polish violinist from Krakow, is bound for America when he is swept overboard by a storm. When the Widdington sisters discover the handsome stranger on the beach below their house, they nurse him back to health. However, the presence of the musically talented young man disrupts the peaceful lives of Ursula and Janet and the community in which they live.",0,20377075,Ladies in Lavender,en +16232,Mr. 3000,2004-06-15,104.0,,,tt0339412,Big league. Big mouth. Big time.,"Aging baseball star who goes by the nickname, Mr. 3000, finds out many years after retirement that he didn't quite reach 3,000 hits. Now at age 47 he's back to try and reach that goal.",30000000,21800302,Mr. 3000,en +10204,Around the World in 80 Days,2004-06-16,120.0,,,tt0327437,Let your imagination soar.,"A bet pits a British inventor, a Chinese thief and a French artist on a worldwide adventure that they can circle the globe in 80 days.",110000000,72178895,Around the World in 80 Days,en +9472,DodgeBall: A True Underdog Story,2004-06-18,92.0,,,tt0364725,Grab Life By The Ball,"When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.",20000000,167722310,DodgeBall: A True Underdog Story,en +265432,Hunger auf Leben,2004-06-18,,,,tt0416829,,,0,0,Hunger auf Leben,de +26254,The Hunting of the President,2004-06-20,90.0,http://www.thehuntingofthepresident.com/,,tt0391225,,"Previously unreleased material outlines the campaign against Bill Clinton's presidency, from his days in Arkansas up to his impeachment trial.",0,0,The Hunting of the President,en +12902,Scooby-Doo! and the Loch Ness Monster,2004-06-21,74.0,,,tt0418141,,"Scooby-Doo, Shaggy, and the Mystery Inc. crew travel to Scotland on vacation and find themselves unexpectedly tackling their biggest monstrosity ever: the Loch Ness Monster! Does it really exist? Early evidence suggests a scary ""yes"" when something gigantic appears outside the window of Daphne's ancestral family castle. Will Scooby-Doo and crew solve one of history's longest-running mysteries?",0,0,Scooby-Doo! and the Loch Ness Monster,en +78258,Venus & Fleur,2004-06-23,0.0,,,tt0364109,,"Fleur, a shy young Parisian in Marseilles, meets Vénus, a flamboyant but lost Russian girl. They have nothing in common, save for their wish to meet the ideal boy.",0,0,Vénus et Fleur,fr +60106,Loser Takes All!,2004-06-23,92.0,,,tt0371907,,,0,0,Qui perd gagne!,fr +21198,House of Voices,2004-06-23,98.0,,,tt0367000,,"In 1958, in the French Alp, the young servant Anna Jurin arrives in Saint Ange Orphanage to work with Helena while the orphans moved to new families. Anna, who is secretly pregnant, meets the last orphan , Judith, left behind because of her mental problems, and they become closer when Anna find that Judith also hear voices and footsteps of children.",0,0,Saint Ange,fr +19010,Deep Evil,2004-06-25,90.0,,,tt0389912,,"An alien microbe lands in remote Siberia in the 1950's. In the year 2004, US scientist working at a top secret underground lab in Alaska clone the microbe. A garbled distress signal is heard from the lab just before a complete lock down of the facility. This is the last word sent out from the scientists. A team of scientists and military personnel are in charge of finding out what went wrong.",0,0,Deep Evil,fr +308671,"Meine Frau, meine Freunde und ich",2004-06-27,0.0,,,tt0450302,,,0,0,"Meine Frau, meine Freunde und ich",de +298228,Peter Rottentail,2004-06-29,71.0,,,tt0399485,You'll be having a bad hare day!,A doomed magician makes a deal with dark forces which ends in tragedy. Soon he is back to exact his bloody revenge!,0,0,Peter Rottentail,en +61267,Clara and Me,2004-06-30,90.0,,,tt0400868,,"Antoine has what every young single man could wish: a promising career, true and loyal friends, and an apartment of his own. However, he's a lonely man, until he meets Clara, a beautiful and exciting woman, and deeply falls in love with her. All his loneliness turns into joy... but then he learns something that makes it all extremely complicated.",0,0,Clara et moi,fr +63877,The Ranch,2004-07-05,90.0,,,tt0329913,Their stories are different... but their profession is the same.,"A comedy drama about a few days in the lives of a group of ""working girls"" in Reno, NV. ""The Ranch"" is a legally operated brothel that operates under the careful watch of state health inspectors (who insist on weekly medical check-ups) and the semi-benevolent leadership of Mary, the manager. While the women on staff don't have to dodge the law like their comrades elsewhere, that doesn't mean they don't have their problems",0,0,The Ranch,en +9893,Sleepover,2004-07-09,89.0,,,tt0368975,The rules are set. The game is on.,"As their first year of high school looms ahead, best friends Julie, Hannah, Yancy and Farrah have one last summer sleepover. Little do they know they're about to embark on the adventure of a lifetime. Desperate to shed their nerdy status, they take part in a night-long scavenger hunt that pits them against their popular archrivals. Everything under the sun goes on -- from taking Yancy's father's car to sneaking into nightclubs!",0,0,Sleepover,en +291,Riding Giants,2004-07-09,105.0,http://www.sonyclassics.com/ridinggiants/,,tt0389326,,Riding Giants is story about big wave surfers who have become heroes and legends in their sport. Directed by the skateboard guru Stacy Peralta.,2600000,3166000,Riding Giants,en +11247,A Cinderella Story,2004-07-10,95.0,http://www2.warnerbros.com/acinderellastory/index.html,437451,tt0356470,Once upon a time... can happen any time.,"Sam Montgomery is a tomboyish, unpopular girl at school. She has been text messaging a somebody named Nomad for a few months and he asks her to meet him at the Halloween dance at 11:00 in the middle of the dance floor. The only problem is, she must get back to the diner, ran by her wicked Stepmom Fiona by 12 sharp because she is not supposed to be there. Before Nomad can found out who she is, she must leave with her best friend, Carter driving her back to the diner. After that night, everything in Sam's life goes wacko!",19000000,70067909,A Cinderella Story,en +85430,Girl Play,2004-07-11,80.0,http://www.goffkellam.com/girlplay,,tt0416773,"Two Women, One Love, Dozens Of Stories","Two real-life lesbian actresses meet by chance when they are cast as lovers in a local stage play, and end up actually falling in love. Robin, who is married to her girlfriend for half a dozen years, and Lacie, someone who never had a lasting relationship, are both cast to play lesbian lovers in a Los Angeles stage play. Innocently, the stage director, Gabriel runs the actresses through a series of rehearsals designed to ""bring out the intimacy"" in each performer. Soon the two women find themselves increasingly and undeniably attracted to each other and overcome with desire. They must ask themselves whether this relationship is manufactured, created for the sake of the ""girl play"", or is true love.",1000000,0,Girl Play,en +93115,The 50 Worst Movies Ever Made,2004-07-13,60.0,,,tt0449786,,There are some movies that are so bad they're good. And there are some movies that are so bad- that they're just bad...,0,0,The 50 Worst Movies Ever Made,en +246917,The Bonesetter,2004-07-15,72.0,,,tt0403888,He's coming. At seven o'clock.,"One hundred years ago, an evil bonesetter was killed for his crimes against children. Now in the present a single mother and a shy librarian must discover who is behind a rash of child abductions, is the Bonesetter back to finish his depraved work?",0,0,The Bonesetter,en +55177,Touch of Pink,2004-07-16,91.0,,,tt0374277,,A gay Canadian living in London has his perfectly crafted life upset when his devoutly Muslim mother comes to visit.,0,0,Touch of Pink,en +115626,Stuck in the Suburbs,2004-07-16,76.0,,,tt0410696,Disney,"Brittany Aarons is one of the many girls who has a crush on popular singer and boy-toy Jordan Cahill. However, she is bored of living a suburban existence and seeks a little something more.",0,0,Stuck in the Suburbs,en +196852,Asambhav,2004-07-22,139.0,,,tt0368580,,"When the President of India is kidnapped by Kashmiri terrorists in Locarno, Switzerland, an Indian secret agent is sent to find him and set him free. With the help of an Indian singer he will make the ""Impossible"" to complete the mission.",0,0,Asambhav,hi +52251,Hotel,2004-07-25,73.0,,,tt0415855,,"When Irene takes a position at a hotel deep in the woods of the Austrian Alps, she soon discovers the girl she replaced vanished without a trace. Is there a murderer on site, or are there even darker forces at work?",0,0,Hotel,de +64483,A Driver for Vera,2004-07-27,105.0,,,tt0416292,,"The film is set during 1962 in Sevastopol, Crimea, then a secret Navy Base in the Soviet Union. General Serov hires Viktor, a cadet from the Kremlin Guard to work as his private chauffeur. In a jet-black ""ZIM"" limo, Viktor is chauffeuring the General's disabled daughter Vera. Viktor is oblivious to the hidden agenda of the KGB agent Saveliev, who manipulates everyone behind the scenes in the old rivalry between the Army and KGB.",3300000,2011837,Voditel dlya Very,ru +101752,Tsumugi,2004-07-27,61.0,,,tt1303232,,"Tsumugi, a girl with a crush on her teacher, discovers that the teacher is having an affair with another teacher. Complications ensue after Tsumugi manages to attract her teacher, but then begins falling for a fellow student.",0,0,制服美少女 先生あたしを抱いて,en +64190,The Wooden Camera,2004-07-28,92.0,,,tt0402590,,"A township near Cape Town. Two young teens, Madiba and Sipho, find a gun and a camera. Sipho takes the gun, and Madiba the camera, sealing their fate.",0,0,The Wooden Camera,en +6947,The Village,2004-07-30,108.0,,,tt0368447,There is no turning back,"When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever.",60000000,256697520,The Village,en +20495,Mujhse Shaadi Karogi,2004-07-30,164.0,,,tt0418362,How to win a girl's heart,"Sameer, fast at losing his temper is re-located to Goa where he falls in love with Rani. But Sameer's new roommate Sunny, has some plans of his own.",0,0,Mujhse Shaadi Karogi,en +17209,Madhouse,2004-07-30,91.0,,,tt0363276,Let the insanity begin.,A young psychiatric intern unearths secrets about the mental health facility in which he works.,0,0,Madhouse,en +21442,Everybody Has Secrets,2004-07-30,105.0,,,tt0416080,,A mysterious stranger seduces three sisters in this sensual romantic comedy from director Jang Hyeon-Su.,0,0,누구나 비밀은 있다,ko +220029,When I'm Sixty-four,2004-08-04,90.0,http://www.bbc.co.uk/pressoffice/pressreleases/stories/2004/07_july/02/when_64.shtml,,tt0402714,,"One-off drama about the friendship that grows between two men from very different backgrounds, whose paths cross for the first time as they approach retirement age.",0,0,When I'm Sixty-four,en +83,Open Water,2004-08-06,79.0,,86113,tt0374102,Scream all you want.,"Two divers are left out at sea without a boat. There’s nothing but water for miles, unless they look at what’s underneath them...",130000,54667954,Open Water,en +277229,Taarzan: The Wonder Car,2004-08-06,163.0,,,tt0435437,A thriller that will drive you crazy,"Taarzan: The Wonder Car is a 2004 romantic thriller film directed by Abbas Burmawalla and Mustan Burmawalla. The film stars Vatsal Seth, Ajay Devgn and Ayesha Takia in the lead roles, while Farida Jalal, Shakti Kapoor, Amrish Puri, Pankaj Dheer, Sadashiv Amrapurkar, Gulshan Grover and Mukesh Tiwari play supporting roles. The film is inspired by the 1983 horror, Christine.",0,0,Taarzan: The Wonder Car,hi +36971,Whisky,2004-08-06,99.0,,,tt0331370,,"When his long-lost brother resurfaces, Jacobo, desperate to prove his life has added up to something, looks to scrounge up a wife. He turns to Marta, an employee at his sock factory, with whom he has a prickly relationship. the owner of a sock factory in Montevideo, and Marta, his employee, realize that their estranged relationship needs to change when Jacobo's long-lost brother prompting them to pose as a married couple.",0,0,Whisky,es +21712,Mind Game,2004-08-07,103.0,http://www.mindgame.jp,,tt0452039,,"The film follows Nishi, a loser who has a crush on his childhood girlfriend. After an encounter with the Japanese mafia, the film follows Nishi as he journeys to heaven and back, and ends up trapped in an even more unlikely place.",0,0,Mind Game,ja +34019,The Hidden Blade,2004-10-30,132.0,,377545,tt0442286,,Set in 19th Century Japan a young samurai who finds himself in love with a farm girl leaves his home to begin a new life. He has to take stock of his new life when he is put to the test and ordered to kill a traitor who just happens to be his dearest friend.,0,0,隠し剣 鬼の爪,ja +109587,The Red Colored Grey Truck,2004-08-11,95.0,,,tt0365089,,"Belgrade, the summer of 1991. Yugoslavia is falling apart. Gavran can't get a driving licence because he is color blind. He is a rural Bosnian introvert obsessed with trucks. So, as soon as he is released from prison, he steals a truck to go on a joyride. Suzana, a city girl, discovers she is pregnant, but until she's due for an abortion, she decides to go to Dubrovnik. She hitchikes and Gavran almost runs her over. She is unhurt, but she blackmails him to take her to Dubrovnik. Two people from different worlds, equally removed from the real one. For him she is the first woman he can talk to; for her he is just another idiot to add to the long list of them that she has so far compiled. But the pressure of danger and the intimations of war force them together. The world about them has become so absurd that they seem to each other the only sober people left.",0,0,Sivi kamion crvene boje,sr +44104,Private,2004-08-12,90.0,,,tt0420090,,A Palestinian family is trapped inside a house commandeered by Israeli soldiers.,0,0,Private,en +10257,The Twins Effect II,2004-08-12,106.0,,192541,tt0398373,,"In the mythical land of Huadu, Charcoal Head, a humble boy born to rule an empire must undertake his journey to claim his throne.",0,0,Chin Kei Bin 2 - Fa Tou Tai Kam,cn +19423,Going the Distance,2004-08-19,93.0,,,tt0388285,They came. They saw. They came.,"Nick (Jacot), whose life seemed to be going perfectly, realizes he may lose his girlfriend to a famous music producer (Priestley). He sets out on a roadtrip from the west coast to go to the MuchMusic Video Awards in Toronto, along with two buddies (Tyler and Dime), for the road trip of their lives.",0,0,Going the Distance,en +177155,Days and Hours,2004-08-20,93.0,,,tt0406910,"The story of a man who came to fix a bolier, but ended up fixing people's hearts","Fuke visits his uncle Idriz and aunt Sabira to fix a broken boiler. He soon finds out there's a lot more that needs to be repaired. Idriz and Sabira aren't ready to accept the loss of their only son in the Balkan war, seven years earlier. When Fuke's car refuses to start, Fuke has to stay over in their house. He meets a lot of old friends and neighbors there.",0,0,Kod amidže Idriza,bs +55748,Ystäväni Henry,2004-08-20,,,,tt0387701,,,0,0,Ystäväni Henry,fi +166027,Fida,2004-08-20,0.0,,,tt0422236,,Fida tells the story of Jai who one day happen to meet a young and beautiful woman called Neha and he falls in love with her at first sight.,0,0,Fida,en +16907,Naruto the Movie: Ninja Clash in the Land of Snow,2004-08-21,82.0,http://pierrot.jp/title/naruto/movie/,23616,tt0476680,,"Naruto is thrilled when he is sent on a mission to protect his favorite actress, Yukie Fujikaze, on the set of her new movie, The Adventures of Princess Gale. But when the crew ventures out to film in the icy, foreboding Land of Snow, Yukie mysteriously flees! Naruto and his squad set off to find her... unaware that three Snow Ninja lie in wait, with a sinister purpose that will force Yukie to face her hidden past!",0,0,劇場版 NARUTO 大活劇! 雪姫忍法帖だってばよ!!,ja +104062,The Last Farm,2004-08-21,17.0,,,tt0461847,,An Oscar nominated Icelandic short film about an old man who might leave his farm but keeps a secret.,0,0,Síðasti bærinn,en +73353,Man in the Mirror: The Michael Jackson Story,2004-08-26,87.0,,,tt0411377,The Michael Jackson Story,Chronicles the rise and fall of pop king Michael Jackson.,0,0,Man in the Mirror: The Michael Jackson Story,en +305147,A Wolf from Vesyegonsk,2004-08-26,101.0,,,tt1068302,,A story about a relationships between man and wolf set in a very far away Russian village.,0,0,Vesegonskaya Volchitsa,ru +10119,The Color of Milk,2004-08-27,94.0,,,tt0425125,,"Selma's mother died giving birth to her, and Selma's step aunt is living proof that men only cause trouble. So the 11 year old girl makes a deal with her best friends that they will stay away from boys and dedicate their lives to science. And by the way, Selma was probably born on another planet and not meant to fall in love with anyone. But what happens when her friends break the pact, and she actually meets a boy who's not like the rest?",0,0,Ikke naken,no +8080,Suspect Zero,2004-08-27,99.0,,,tt0324127,Who's next?,"A killer is on the loose, and an FBI agent sifts through clues and learns that the bloodthirsty felon's victims of choice are other serial killers.",27000000,13000000,Suspect Zero,en +4974,Five Times Two,2004-09-01,90.0,,,tt0354356,,"As young French couple Gilles and Marion officially separate, we see, in reverse order, the milestone moments in their relationship: Gilles revealing his unfaithfulness at a tense dinner party; Marion giving birth to their premature son while Gilles is elsewhere; Gilles and Marion's joyous wedding; and, finally, the fateful moment when they meet as acquaintances at an Italian beach resort, and their love affair begins.",0,0,5x2,fr +9953,A Love Song for Bobby Long,2004-09-02,119.0,,,tt0369672,The heart is a lonely hunter.,A headstrong young woman returns to New Orleans after the death of her estranged mother.,0,1841260,A Love Song for Bobby Long,en +13468,Keane,2004-09-03,90.0,,,tt0420291,,"A mentally ill man searches New York for his missing eight year old daughter. He recreates her steps each day hoping for some clue to her disappearance, until he meets and befriend a woman with a daughter the same age. Could she help him with the missing piece of the puzzle?",0,0,Keane,en +13073,Palindromes,2004-09-03,100.0,,,tt0362004,,"Aviva is thirteen, awkward and sensitive. Her mother Joyce is warm and loving, as is her father, Steve, a regular guy who does have a fierce temper from time to time. The film revolves around her family, friends and neighbors.",0,0,Palindromes,en +164288,The Fearless Triplets,2004-09-03,,,,tt0379065,,,0,0,The Fearless Triplets,nl +6934,Yesterday,2004-09-03,96.0,,,tt0419279,,"After falling ill, Yesterday learns that she is HIV positive. With her husband in denial and young daughter to tend to, Yesterday's one goal is to live long enough to see her child go to school.",0,0,Yesterday,zu +18475,The Cookout,2004-09-03,97.0,,,tt0380277,"This summer, get your grill on!","When Todd Anderson signs a $30 million deal with his hometown team, the New Jersey Nets, he knows that his life is set for a big change. To keep things real, he decides to throw a barbeque at his place -- just like the ones his family used to have. But when you have new and old friends, family, agents, and product reps in the same house, things are bound to get crazy.",16000000,12,The Cookout,en +37603,Diversant,2004-09-06,0.0,,,tt0439358,,,0,0,Diversant,ru +282247,Clerks: The Lost Scene,2004-09-07,9.0,,,tt0433537,,Dante and Randall attend Julie Dwyer's wake in this animated representation of a scene never before shot for the movie Clerks. (1994),0,0,Clerks: The Lost Scene,en +258585,Arvon veli,2004-09-08,,,,tt0424810,,,0,0,Arvon veli,fi +43973,Stray Dogs,2004-09-08,93.0,,,tt0423277,,Two children are orphaned in post-Taliban Afghanistan.,0,0,Sag-haye velgard,fa +9951,The Dudesons Movie,2006-03-31,76.0,,,tt0774095,,"""The Dudesons Movie"" is an extreme stunts comedy that features the wild antics of four hilarious, lifelong friends and their crazy lives in the Arctic Circle.",0,0,The Dudesons Movie,en +613,Downfall,2004-09-08,156.0,http://www.downfallthefilm.com/,,tt0363163,"April 1945, a nation awaits its...Downfall","In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.",18339750,92180910,Der Untergang,de +10740,Birth,2004-09-08,100.0,,,tt0337876,Be careful what you wish for.,"It took Anna 10 years to recover from the death of her husband, Sean, but now she's on the verge of marrying her boyfriend, Joseph, and finally moving on. However, on the night of her engagement party, a young boy named Sean turns up, saying he is her dead husband reincarnated. At first she ignores the child, but his knowledge of her former husband's life is uncanny, leading her to believe that he might be telling the truth.",20000000,0,Birth,en +17111,Shutter,2004-09-09,97.0,,,tt0440803,They are around us.,A young photographer and his girlfriend discover mysterious shadows in their photographs after a tragic accident. They soon learn that you can not escape your past.,0,0,ชัตเตอร์ กดติดวิญญาณ,th +66702,Dil Ne Jise Apna Kahaa,2004-09-10,134.0,,,tt0396563,,"Young and good-looking Dr. Parineeta alias Pari is in love with Rishabh, a wealthy young man, working in an advertising agency. Both plan to marry soon, as Pari gets pregnant. Unfortunately, Pari in involved in an accident, and both the baby and she die in hospital. In her will, Pari donates her heart to the hospital. Rishabh is devastated, and opposes the plan to donate the heart, the hospital, however, goes ahead with the Pari's last request. Rishabh, after a bout with depression, begins Pari's project, a hospital for sick children called Pari Lok. Meanwhile Pari's heart has been transplanted in a young woman named Dhani. Dhani and Rishabh's paths cross, and Dhani is instantly attracted to him, but Rishabh does not even look twice at her, and is immersed in Pari's memories.",0,0,Dil Ne Jise Apna Kahaa,hi +1595,Land of Plenty,2004-09-10,123.0,,,tt0382357,,"After living abroad, Lana returns to the United States, and finds that her uncle is a reclusive vagabond with psychic wounds from the Vietnam War.",0,0,Land of Plenty,en +1599,I Heart Huckabees,2004-09-10,106.0,,,tt0356721,An existential comedy,"A husband-and-wife team play detective, but not in the traditional sense. Instead, the happy duo helps others solve their existential issues, the kind that keep you up at night, wondering what it all means.",22000000,0,I Heart Huckabees,en +42420,The Keys to the House,2004-09-10,105.0,,,tt0345032,,"Meeting his handicapped son for the first time, a young father attempts to forge a relationship with the teenager.",0,0,Le chiavi di casa,it +3539,Off Beat,2004-09-11,100.0,,,tt0412888,,,0,0,Kammerflimmern,de +78307,On the Outs,2004-09-11,86.0,http://www.ontheouts.com/,,tt0389235,A drug dealer. An addict. A runaway. The story of 3 girls.,"Follows the choices made by three young women - one a drug dealer, one an addict, one a pregnant teen - in Jersey City.",0,0,On the Outs,en +56943,The Remains of Nothing,2004-09-11,103.0,,,tt0170508,,"Set in the 1790s, this historical drama follows the travails of an idealistic noblewoman who helps lead a daring revolution in Italy.",0,0,Il resto di niente,it +6443,The Forest for the Trees,2004-09-16,81.0,,,tt0386862,,"As an awkward idealistic high school teacher begins her first job in the city, things turn out to be much tougher than she had imagined.",0,0,Der Wald vor lauter Bäumen,de +37600,Cool!,2004-09-16,89.0,,,tt0382615,,This movie follows a gang of Morrocan/Dutch youngsters into their criminal career.,0,0,Cool!,nl +7548,The Libertine,2004-09-16,114.0,,,tt0375920,He didn't resist temptation. He pursued it.,"The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.",0,0,The Libertine,en +81600,Stille Nacht,2004-09-16,0.0,,,tt0403539,,,0,0,Stille Nacht,de +214187,The Death of Kevin Carter: Casualty of the Bang Bang Club,2004-09-17,27.0,http://www.kevincarterfilm.com/,,tt0439676,,"In 1994, a South African photojournalist received the Pulitzer Prize for his picture of a starving girl stalked by a vulture. Weeks later, he carried out a terrible, desperate act--an act that embodied the anguish of an entire nation.",11000,0,The Death of Kevin Carter: Casualty of the Bang Bang Club,en +11540,Adventures of Arsene Lupin,2004-09-17,131.0,,,tt0373690,,"As the daring thief Arsène Lupin (Duris) ransacks the homes of wealthy Parisians, the police, with a secret weapon in their arsenal, attempt to ferret him out.",23000000,0,Arsène Lupin,fr +20357,Trauma,2004-09-17,94.0,http://wwws.warnerbros.co.uk/movies/trauma/?frompromo=movies_maintouts_Trauma,,tt0363143,,"Awaking from a coma to discover his wife has been killed in a car accident, Ben's world may as well have come to an end. A few weeks later, Ben's out of hospital and, attempting to start a new life, he moves home and is befriended by a beautiful young neighbour Charlotte. His life may be turning around but all is not what it seems and, haunted by visions of his dead wife, Ben starts to lose his grip on reality.",0,0,Trauma,en +18711,Silver City,2004-09-17,128.0,,,tt0376890,,The discovery of a corpse threatens to unravel a bumbling local politician's campaign for governor of Colorado.,0,0,Silver City,en +23857,White Skin,2004-09-17,92.0,,,tt0411743,,Two roommates discover that the family of one of their girlfriends is populated with vampires.,0,0,La peau blanche,en +12697,Laura's Star,2004-09-19,75.0,,272416,tt0416908,,"Laura sees a shooting star falling to earth and finds it in a park, down on the floor and with a broken point. The star is a living being, and Laura takes her home to reattach its point with a band-aid. The little star has special powers and can make people fly, or bring inanimate objects to life. But the more she stays on Earth, the weaker she becomes and her colors fade away and her powers start to fail. Laura must find a way to send the little star back into outer space.",0,0,Lauras Stern,de +78705,Live-In Maid,2004-09-21,83.0,,,tt0356453,,"Buenos Aires is in a deep recession. As the money runs out, the relationship between an employer and her live-in maid changes dramatically.",0,0,Cama adentro,en +72278,Bad Spelling,2004-11-03,90.0,,,tt0381292,,"At a French boarding school for troubled youth in the early 1970's, the Headmaster and his wife decide that their son Daniel, who is fifteen years old but looks younger, should finally go live in the dorm with all the other students, as they do not want it to seem Daniel is receiving any special treatment. Daniel is now faced with the challenge of earning the trust and respect of the other students, who all come from troubled backgrounds.",0,0,Les Fautes d'orthographe,fr +29952,Bombón: The Dog,2004-09-23,97.0,,,tt0420548,,"In Patagonia, a mechanic who dreams of a different life starts to think big after his adopted pup wins first prize at a local dog show.Life is no bed of roses for 52-year-old Juan ""Coco"" Villegas. He, who has been a gas station attendant for twenty years in Patagonia, finds himself jobless overnight. He first tries to survive by selling knives of his own making. But business is bad and he can't find real work. One day though, after fixing a vehicle on a farm, he gets paid by means of a ... beautiful Argentinian watch-dog! From this blessed day on, things start shaping well at last... Written by Guy Bellinger",0,0,"Bombón, el perro",es +11636,New Police Story,2004-09-23,123.0,,269098,tt0386005,Failures and suffering make a real hero,"Sent into a drunken tailspin when his entire unit is killed by a gang of thrill-seeking punks, disgraced Hong Kong police inspector Wing (Jackie Chan) needs help from his new rookie partner, with a troubled past of his own, to climb out of the bottle and track down the gang and its ruthless leader.",0,0,新警察故事,cn +53301,Toss-Up,2004-09-24,102.0,,,tt0428059,,,0,0,Yazı Tura,tr +26486,The Last Shot,2004-09-24,90.0,,,tt0357054,,A movie director-screenwriter finds a man to finance his latest project but soon discovers that the producer is actually an undercover FBI agent working on a mob sting operation.,0,0,The Last Shot,en +24199,Ellis in Glamourland,2004-09-24,95.0,http://www.ellisinglamourland.nl/,,tt0385677,,,0,0,Ellis in Glamourland,nl +10145,The Forgotten,2004-09-24,91.0,,,tt0356618,You'll Never Forget The Ones You Love,"Telly Paretta is a grieving mother struggling to cope with the loss of her 8-year-old son. She is stunned when her psychiatrist reveals that she has created eight years of memories about a son she never had. But when she meets a man who has had a similar experience, Telly embarks on a search to prove her son's existence, and her sanity.",42000000,117575636,The Forgotten,en +44634,Woman Thou Art Loosed,2004-09-30,94.0,,,tt0399901,,"An adaptation of Bishop T.D. Jakes' self-help novel, chronciling a woman's struggle to come to terms with her legacy of abuse, addiction and poverty.",3000000,6804016,Woman Thou Art Loosed,en +19398,Simon,2004-09-30,102.0,,,tt0393775,,"When Camiel, a gay dentist, and Simon, a carefree café owner, collide in a traffic accident their lives become intrinsically entangled. When they bump into each other 14 years later, Simon is severely ill. Camiel experiences at close range how Simon and those around him come to terms with his illness. The strength and humour that Simon shows during this time leave a lasting impression on Camiel.",0,0,Simon,nl +47462,Everyone,2004-09-30,90.0,,,tt0404029,Guess who's coming? Everyone,The perfect gay couple are having a wedding in their backyard and they've invited the family and all their emotional baggage.,0,0,Everyone,en +176,Saw,2004-10-01,103.0,,656,tt0387564,Live or die. Make your choice.,"Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...",1200000,103911669,Saw,en +15689,Dead Meat,2004-10-01,80.0,,,tt0369359,"It's not what you eat, it's who you eat!",Helena and Martins vacation to Ireland quickly transforms into a nightmare as a virus which turns humans into flesh-eating zombies is starting to spread.,0,0,Dead Meat,en +16074,Mountain Patrol,2004-10-01,85.0,,,tt0386651,,A moving true story about volunteers protecting antelope against poachers in the severe mountains of Tibet.,1200000,0,Kekexili,bo +30385,Chainsaw Sally,2004-10-02,83.0,,,tt0385592,,No overview found.,40000,0,Chainsaw Sally,en +3057,Frankenstein,2004-10-05,115.0,,,tt0368730,,Frankenstein is a 2004 U.S. television miniseries (edited into a film) based on the book Frankenstein by Mary Shelley. It follows the original book more closely than other adaptions. The story is of a scientist who brings life to a creature fashioned from corpses and various body parts.,0,0,Frankenstein,en +11045,Taxi,2004-10-06,97.0,,,tt0316732,Take a Ride on the Wild Side.,A mouthy and feisty taxicab driver has hot tips for a green and inept cop set on solving a string of New York City bank robberies committed by a quartet of female Brazilian bank robbers.,25000000,36609966,Taxi,en +24685,Viper In The Fist,2004-10-06,100.0,,,tt0380798,,"1920. Jean Rezeau and his elder brother were living happily in their family estate in Brittany, until the death of their grandmother. The return of their mother, a worthy descendant of fairytales' witches, brings an all new atmosphere to their home.",0,0,Vipère au poing,fr +33704,The Box,2004-10-06,88.0,,,tt0402093,,"A guy has to move out in a day, completely unprepared, and drive his mum to the airport. Completely stressed out, he calls his friends for help. Short notice however results in all his friends making it with an agenda of their own.",0,0,Le Carton,fr +143546,The Chiefs,2004-10-07,90.0,,,tt0410214,Men fighting to remain boys.,"This is the true story of five brawling hockey players, who live in the back of a hockey arena and fight their way to heroic status in the most violent league in the world. One by one our heroes begin to crumble against their worst foes - themselves. Les Chiefs is a real-life account of men fighting to remain boys.",0,0,The Chiefs,en +34560,Halloweentown High,2004-10-08,82.0,http://disneydvd.disney.go.com/halloweentown-high.html,87252,tt0414078,,"Marnie Piper prepares to begin a new school year, she asks the Halloweentown Hot Witches' Council to work toward openness between Halloweentown and the mortal world. She proposes to bring a group of Halloweentown students to her own high school in the mortal world.",0,0,Halloweentown High,en +36402,The Welts,2004-10-08,91.0,,,tt0426173,,"Following the death of his mother in '80s Poland, 12-year-old Wojciech has taken the brunt of his stressed father's frustrations with him; the boy frequently gets punished via belt. Wojciech's father occasionally tries to, instead, bond with him, but soon snaps back to his short-fused habits. Apart from Wojciech's friend Bartek, no one does anything to help. Jump to present day, Wojciech is a furrow-browed journalist who spends most of his spare time spelunking alone. Just like his father, he has serious anger management issues. Fellow caver Tania feels inexplicably attracted to him, but the love of a good woman may not be enough.",0,0,Pręgi,pl +19936,Hipnos,2004-10-08,93.0,,,tt0376650,The horror of being dead. The nightmare of still being alive.,Dr Sánchez Blanch owns and operates a psychiatric hospital where he specializes in hypnotizing his severely emotionally disturbed patients.,0,0,Hipnos,en +12128,Night of the Living Dorks,2004-11-03,90.0,,,tt0378417,,"Three not-so-cool school friends decide to try a old voodoo ritual. Later, they die in a car accident, but live on as zombies. But being a zombie has advantages, too...",4410000,0,Die Nacht der lebenden Loser,de +13728,Locked Out,2006-04-05,78.0,,,tt0442207,,"Once upon a time, somewhere... a homeless guy finds a policeman's uniform...",0,0,Enfermés dehors,en +13713,Jean-Philippe,2006-04-05,0.0,,,tt0477988,,No overview found.,0,0,Jean-Philippe,fr +3989,Team America: World Police,2004-10-10,98.0,http://www.teamamerica.com,,tt0372588,Putting The 'F' back in 'Freedom',"Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time? It stars… Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwin… or does it?",32000000,50907422,Team America: World Police,en +58384,Drowning Ghost,2004-10-14,100.0,,,tt0375100,,"Hundred years ago, three students at the Hellestads Boarding School were brutally slaughtered, the murderer drowned himself in a lake nearby and his body was never found. The story has become a legend for generations of students as well as a yearly festivity. Sara, a student, is writting an essay based on the legend and uncovers new facts from the event that will cast dark shadows on the family name of one of the school's main benificiaries. On the night of the hundreth anniversary, the festivities go awry, students disappear and something dark and unknown is moving through the schools corridors...",0,0,Strandvaskaren,en +31165,Inside I'm Dancing,2004-10-15,104.0,,,tt0417791,,"Michael is a 24-year-old who has cerebral palsy and long-term resident of the Carrigmore Residential Home for the Disabled, run by the formidable Eileen. His life is transformed when the maverick Rory O'Shea moves in.",0,0,Inside I'm Dancing,en +16358,Eulogy,2004-10-15,91.0,,,tt0349416,,"A black comedy that follows three generations of a family, who come together for the funeral of the patriarch - unveiling a litany of family secrets and covert relationships.",0,0,Eulogy,en +24448,7/G Rainbow Colony,2004-10-15,185.0,,,tt0439418,,"Kathir is a young underachiever, frequently venting his frustrations through public outbursts. When a north Indian girl, Anitha, moves into his neighborhood, he falls head over heels in love with her, and aggressively expresses interest. When she does not respond favorably, things get out of hand.",0,0,7/G Rainbow Colony,ta +4380,Shall We Dance?,2004-10-15,107.0,http://www.miramax.com/shallwedance/,,tt0358135,Step out of the ordinary,"Upon first sight of a beautiful instructor, a bored and overworked estate lawyer signs up for ballroom dancing lessons.",50000000,170128460,Shall We Dance?,en +16791,Five Children and It,2004-10-15,88.0,,,tt0366450,You are invited to discover the secret...,"A Psammead is 'It', an ancient, irritable, ugly sand fairy, which five children find one day in a gravel pit. As a reward for finding him, It grants the children one wish a day, the results of which will last until sunset.",0,0,Five Children and It,en +12483,Riding the Bullet,2004-10-15,98.0,,,tt0355954,,"Set in 1969, Alan Parker (Jackson) is a young artist, studying at the University of Maine. He becomes obsessed with death, and believing he is losing his girlfriend, Jessica (Christensen), he tries to commit suicide on his birthday but his friends manage to stop him, and he recovers. He receives news that his mother is dying and decides to hitchhike, in an attempt to reach his dying mom.",5000000,0,Riding the Bullet,en +866,Finding Neverland,2004-10-17,106.0,,,tt0308644,Where will your imagination take you?,Finding Neverland is an amusing drama about how the story of Peter Pan and Neverland came to be. During a writing slump play writer J.M. Barrie meets the widowed Sylvia and her three children who soon become an important part of Barrie’s life and the inspiration that lead him to create his masterpiece “Peter Pan.”,25000000,116766556,Finding Neverland,en +48594,The Uninvited Guest,2004-10-21,110.0,,,tt0436374,,"What if ... you let a stranger into your house to use your phone, but while you've been patiently waiting in the kitchen, he just disappears ... or does he? Félix, an architect who has just split up with his girl-friend and inhabits a huge mansion in Barcelona, finds out how many hiding places there really are in his house. But are there enough to hide another person, a strange parasite of living space? Or is Félix really going insane?",0,0,El habitante incierto,es +34672,Chestnut: Hero of Central Park,2004-10-21,87.0,,,tt0387925,,"Ray and Sal, two orphaned sisters, adopt and hide a Great Dane puppy from their two adopted parents living in a luxury downtown New York apartment that expressely forbids dogs.",0,0,Chestnut: Hero of Central Park,en +51786,Kim Possible: A Sitch in Time,2004-10-21,66.0,,148614,tt0389074,Travel through time with Kim.,"Kim and Ron start out a new school year, only to find out that Ron's family is moving to Norway. This puts a strain on their partnership, just as Dr. Drakken, Monkey Fist, and Duff Killigan team up to find and use an ancient time travel device to rule the world. Attacking Kim in the past, present, and future, can these villians succeed? Or will an unforeseen force be more destructive?",0,0,Kim Possible: A Sitch in Time,en +210864,Celsius 41.11: The Temperature at Which the Brain... Begins to Die,2004-10-22,72.0,,,tt0424885,The truth behind the lies of Fahrenheit 9/11,"This film attempts to correct the record when it comes to the left's attacks on President Bush, 9/11 and the war in Iraq and Kerry's 20-year tenure in the Senate.",0,0,Celsius 41.11: The Temperature at Which the Brain... Begins to Die,en +159069,Vaastu Shastra,2004-10-22,0.0,,,tt0416282,The Science,Jhilmil and Virag move to their new house with son Rohan and Jhilmil's younger sister Radhika. There is an old tree outside the house. The tree and the house are haunted by the dead.,0,0,Vaastu Shastra,en +9675,Sideways,2004-10-22,126.0,http://www.foxsearchlight.com/sideways/,,tt0375063,In search of wine. In search of women. In search of themselves.,"Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.",16000000,109502303,Sideways,en +67216,The Dead Will Tell,2004-10-24,87.0,,,tt0424028,,Emily Parker is haunted by visions of a woman from the past soon after receiving an antique engagement ring from her fiancé.,0,0,The Dead Will Tell,de +245017,Binta and the Great Idea,2004-10-25,30.0,,,tt0442001,,"Binta, a little girl from Senegal, tells us about the everyday life in her village, the importance of education for the girls, and about her father's great idea to make the world a better place.",0,0,Binta y la gran idea,es +82157,Die Blindgänger,2004-10-26,,,,tt0402065,,,0,0,Die Blindgänger,de +9803,Seven Dwarfs,2004-10-28,95.0,,215606,tt0382295,,"The Seven Dwarves live deep within a female-free-zone of the Enchanted Forest, but they cannot resist the innocent charms of Snow White when she enters their world. So when the evil queen abducts her, it is up to the dwarves to save her life.",0,0,7 Zwerge - Männer allein im Wald,de +10109,The White Dragon,2004-10-28,93.0,,,tt0441263,,"In this swordfighting comedy, a young noblewoman falls in love with a prince of the Imperial House. By accident, she acquires the martial arts skills of the White Dragon. New in her power, she learns that there are definite advantages in performing ""good deeds"" as the Little White Dragon.",0,0,小白龍情海翻波,zh +257537,Dream Land,2004-11-05,35.0,,,tt0497204,,"There are places that we don’t want to know anything about, places that we would rather pretend don’t exist at all. One such place is a dumpsite. From the humans’ point of view, it is a ghastly place, a stinking desert of trash. But it’s a desert that is teaming with life.",0,0,Leiputrija,en +20941,Innocent Voices,2004-11-05,120.0,,,tt0387914,,"A young boy, in an effort to have a normal childhood in 1980's El Salvador, is caught up in a dramatic fight for his life as he desperately tries to avoid the war which is raging all around him",0,837000,Voces inocentes,es +21966,Blood and Bones,2004-11-06,140.0,http://www.lhp.com.sg/blood/,,tt0419515,,"In 1923, the young Kim Shun-Pei moves from Cheju Island (South Korea), to Osaka (Japan). Through the years, he becomes a cruel, greedy and violent man and builds a factory of kamaboko (processed seafood products) in his poor Korean-Japanese community exploiting his employees. He makes a fortune, abuses and destroys the lives of his wife and family, has many mistresses and children and shows no respect to anyone. Later he closes the factory, lending out the money with high interest and becomes a loan shark. His hateful behavior remains unchanged to his last breath, alone in North Korea. The film is told from the perspective of Masao, his legitimate son by his abused and degraded wife, who knows nothing about his father other than to fear him.",0,0,血と骨,ja +18597,Jimmy Carr: Live,2004-11-08,75.0,http://www.jimmycarr.com,,tt0810916,,"With his first ever DVD, Jimmy’s unique brand of humour demonstrates the observations he makes on life’s taboos using witty one-liners and offensive putdowns. Recorded during the acclaimed comedian’s sell out shows at London’s Bloomsbury theatre.",0,0,Jimmy Carr: Live,en +230680,Nachbarinnen,2004-11-10,,,,tt0366808,,,0,0,Nachbarinnen,de +41171,Noel,2004-11-12,96.0,,,tt0383534,Miracles are closer than you think,"Christmas Eve in New York, and the lonely divorced publisher, Rose Collins, needs a miracle to improve the health of her mother, interned in a hospital with Alzheimers. She feels sorry for another patient and meets his visitor. Meanwhile, Nina Vasquez breaks her engagement with her beloved fiancé Mike due to his suffocating jealousy, but misses him. Mike is stalked by a stranger, bartender Artie Venzuela. The poor Jules arranges to spend Christmas Eve in the hospital, where he spent the best Christmas of his life when he was a teenager. The lives of some of these characters cross with others along the night.",0,0,Noel,en +21843,Riot On!,2004-11-12,78.0,,,tt0427783,,"The year is 2000 and investors are going crazy about a new mobile phone company called Riot Entertainment. Many high profile companies, like Nokia, invest millions on this unknown firm. Two years later, when all the money has been spent and the company is bankrupt, the fun is over. What happened?",0,0,Riot On!,en +11399,Look at Me,2004-11-18,110.0,,,tt0374583,,"This is the story of human beings who know exactly what they'd do if they were somebody else, but can't handle being themselves very well, who are very simply struggling to find out who they are.",0,0,Comme une image,fr +126238,Ten Skies,2004-11-21,101.0,,,tt0479550,,Ten shots of skies.,0,0,Ten Skies,en +1966,Alexander,2004-11-21,175.0,,,tt0346491,The greatest legend of all was real.,"Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians, he leads his army across the then known world, venturing farther than any westerner had ever gone, all the way to India.",155000000,167298192,Alexander,en +19719,LolliLove,2004-11-21,64.0,https://buy.tromamovies.com/product_info.php?products_id=543,,tt0316187,,"A hip, misguided Southern California couple decide to make a difference in the lives of the homeless by giving them lollipops with a cheery slogan on the wrapper.",2000,0,LolliLove,en +106546,Moscow Heat,2004-11-24,89.0,,,tt0369738,Vengeance is only the beginning...,"After a U.S. policeman is killed by black market weapons dealers, his partner, Rudy (Robert Madrid), and the murdered cop's father, ex-British Intelligence agent Roger Chambers (Michael York), head to Moscow to find the killers. The two begin to track down their targets, but their plan falters when Rudy's injured and Chambers is arrested. Enter Vlad (Alexander Nevsky), a Russian officer who's willing to help the men complete their mission.",0,1100000,Moscow Heat,en +47683,Love at 16,2004-11-25,102.0,,,tt1034006,,,0,0,Αγάπη στα 16,el +20364,Hulchul,2004-11-26,168.0,http://50-50hulchul.indiatimes.com/#,,tt0437238,It's one crazy love story!,"A man and woman from feuding families each pretend to fall in love, as part of a revenge plot. Chaos ensues when their fake romance becomes a reality.",0,0,Hulchul,en +36695,The Goddess,2004-11-30,105.0,,,tt0403078,,Young police detective Faina tries to experiment with herself in order to meet her dead love.,0,0,Богиня: как я полюбила,en +33623,Innocence,2004-12-01,122.0,,,tt0375233,The end of innocence...the beginning of life.,A look inside an offbeat boarding school for young girls.,0,0,L'Ecole,fr +20200,Narco,2004-12-01,105.0,,,tt0381442,,"Gustave Klopp suffers from narcolepsy, he can fall asleep everwhere at anytime whithout warning. Living a simple life with his wife Pam and his best friend Lenny Bar, Gus decides to undergo therapy sessions and finds out that he can make incredible comics from his dreams.",823258,823258,Narco,en +2288,Closer,2004-12-01,104.0,,,tt0376541,"If you believe in love at first sight, you never stop looking.","A witty, romantic, and very dangerous love story about chance meetings, instant attractions, and casual betrayals. Two couples disintegrate when they begin destructive adulterous affairs with each other.",27000000,115505027,Closer,en +231216,Villa Henriette,2004-12-02,,,,tt0441908,,,0,0,Villa Henriette,de +15089,Fighter Pilot: Operation Red Flag,2004-12-02,48.0,http://www.imax.com/sacramento/films/fighterpilot.htm,,tt0353168,,"Fighter Pilot: Operation Red Flag follows American F-15 Eagle pilot John Stratton as he trains with some of the world’s best pilots. The movie depicts Stratton’s progression through the challenging and dangerous exercises of Operation Red Flag, the international training program for air forces of allied countries.",0,0,Fighter Pilot: Operation Red Flag,en +47120,Antares,2004-12-03,105.0,,,tt0419449,,"A deadly car crash sets off three parallel stories of women at crisis points, faltering behind the doors of the same, plain Vienna apartment block.",500000,0,Antares,de +26510,School for Seduction,2004-12-03,104.0,,,tt0368249,,An Italian temptress arrives at a school in Newcastle to teach a group of Geordies about the art of romance.,0,0,School for Seduction,en +126141,The Case of the Grinning Cat,2004-12-05,59.0,,,tt0437123,,Paris 2002. Yellow cats appear on the walls. Chris Marker is looking for these mysterious cats and captures with his camera the political and international events of these last two years (war in Iraq...).,0,0,Chats perchés,en +63612,Bienvenido a casa,2006-04-07,118.0,,,tt0470692,,"Young couple Samuel and Eva move to Madrid and start living together when he finds work as a photographer. Although Samuel doesn't knows, Eva's expecting a baby.",0,0,Bienvenido a casa,es +14207,The Librarian: Quest for the Spear,2004-12-05,106.0,http://www.tntdrama.com/movies/the-librarian-quest-for-the-spear.html,85890,tt0412915,,"When a magical artifact is lifted from his library, a meek librarian sets out to ensure its safe return.",0,0,The Librarian: Quest for the Spear,en +103713,Eminem AKA,2004-12-07,75.0,,,tt0477424,,No overview yet.,0,0,Eminem AKA,en +10870,Lucky Luke and the Daltons,2004-12-08,86.0,,,tt0368668,,"Joe and Averell are the eldest and youngest of the four Dalton brothers, the worst outlaws in Wild West history...",0,0,Les Dalton,fr +163,Ocean's Twelve,2004-12-09,125.0,http://oceans12.warnerbros.com/,304,tt0349903,Twelve is the new eleven.,"Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome, Paris and Amsterdam – but a Europol agent is hot on their heels.",110000000,362744280,Ocean's Twelve,en +81538,Watermarks,2004-12-10,80.0,,,tt0405461,,"The story of the Hakoah Vienna Jewish womens swim team of the 1930s, their forced separation, and their reunion decades later.",0,0,Watermarks,en +15045,Fat Albert,2004-12-12,93.0,,,tt0396592,,"An obese boy named Fat Albert and his friends Rudy, Mushmouth, Bill, Dumb Donald, Russell, and Weird Harold, pulls into trouble when they ""fall"" out of their TV world into the real world, where Fat Albert tries to help a young girl, Doris, make friends.",0,0,Fat Albert,en +13678,The Last Trapper,2004-12-12,94.0,,,tt0395514,"In the 21st century, we can still choose to live differently.","Norman is not just an admirer of nature, he's a part of it. He survives the harshness of the climate and the wildlife by coexisting with it. With his wife Nebraska, they live almost entirely off the land, making money by selling their furs.",8000000,0,Le dernier trappeur,fr +9795,Earthsea,2004-12-13,180.0,,,tt0407384,Everyone must find their own magic,A reckless youth is destined to become the greatest sorcerer that the mystical land of Earthsea has ever known...,0,0,Earthsea,en +50108,Sars Wars: Bangkok Zombie Crisis,2004-12-16,95.0,,,tt0470402,,"The fourth generation of the virus SARS is found in Africa! It's more dangerous and causes the patients to transform into bloodthirsty zombies. The virus quickly lands to Thailand, Dr. Bryan Thompson who creates the anti-virus, ends up getting infected while doing his experiment and soon the virus is spreading to all the residents of his same building. At that time, Khun is trying to help a young girl who's being kidnapped in the building... He ends up trapped in the building with only his precious sword as a weapon. Surrounded by the zombies, he has to find the girl and escape from the building before the government drops a bomb to destroy the virus and the building.",0,0,Khun krabii hiiroh,th +2567,The Aviator,2004-12-17,170.0,,,tt0338751,"For some men, the sky was the limit. For him, it was just the beginning.","A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.",116000000,102000000,The Aviator,en +26962,Puppet Master vs Demonic Toys,2004-12-18,88.0,,264434,tt0431340,Playtime is over. Now the REAL fun begins.,"A group of toymakers seek to use Andre Toulon's formula, now in the hands of Toulon's great-nephew Robert, to give life to a line of killer toys that they plan to unleash on Christmas Eve.",0,0,Puppet Master vs Demonic Toys,en +26125,The Defender,2004-12-20,90.0,,,tt0402127,,"The global war on terror rages on. When a government official goes missing, Lance, a man with an impressive record of service to his country, finds himself protecting the man who embodies everything he has dedicated his life to fight against.",0,0,The Defender,en +693,Meet the Fockers,2004-12-22,115.0,http://www.meetthefockers.com/index.php,51509,tt0290002,Misery loves family.,"Hard-to-crack ex-CIA man, Jack Byrnes and his wife, Dina head for the warmer climes of Florida to meet son-in-law-to-be, Greg Focker's parents. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.",80000000,516642939,Meet the Fockers,en +33065,Alesha Popovich and Tugarin the Dragon,2004-12-23,72.0,http://www.aleshapopovich.ru/,122123,tt0415481,,"Alesha Popovich has to catch Tugarin Zmey and bring back the stolen money with the help of a talking Horse (which talks all the time and has an opinion on everything), a wise granny, a donkey and a beauty Lyubava.",4000000,1730000,Алеша Попович и Тугарин Змей,ru +41252,Raincoat,2004-12-24,120.0,,,tt0405266,One afternoon can prove to be greater than a lifetime,"Tells the story of two lovers, separated by destiny, who meet again one day. This encounter allows each to realize the truth about the lives they are living.",0,0,Raincoat,hi +11328,Pusher II: With Blood on My Hands,2004-12-25,100.0,,203910,tt0396184,,"Tony (Mads Mikkelsen) is released from prison - again. This time he has his mind set on changing his broken down life, but that is easier said than done",0,0,Pusher II,da +92384,Trois 2: Pandora's Box,2004-12-28,0.0,,,tt0285869,,"Stuck in a dull marriage, successful shrink Mia DuBois follows a patient's advice and exposes her wild side at a private underground club, where she meets a handsome stranger and begins an affair that may cost her more than just her husband.",0,0,Trois 2: Pandora's Box,en +45384,Ashura,2005-01-01,119.0,,,tt0459744,,"Adapted from the successful play, the film takes place in the 19th Japan where a war between demons and their slayers is fought. Izumo, an Kabuki actor with a demon-slaying past, meets and falls in love with Tsubaki. However, something is not right as mysterious marks appear on her body as time progresses. At the same time, it is announced that Ashura, the queen of all demons, will be resurrected and bring destruction to the universe.",0,0,阿修羅城の瞳,ja +27351,Meatball Machine,2005-01-01,90.0,,,tt0820111,,"Capable of making bio-mechanical weapons out of human flesh, alien parasites grotesquely invade the Earth, turning their hosts into maniacal killers who seek and destroy each other to the bloody death! And yes, it s also a human love story, even though the budding romantics are infested with slimy, tumor-like globules.",0,0,Mītobōru mashin,ja +99312,Ordinary Miracles,2005-01-01,99.0,,,tt0184799,,A tough judge takes in a foster child with nowhere to go. Attempts to reunite child with long lost father end badly with the rebellious child running away.,0,0,Ordinary Miracles,en +32168,Typhoon,2005-01-01,124.0,,,tt0475750,,"Myung-sin, who has become a pirate, lives with hatred in his heart and endures the hardships, seeks revenge on the two nations, North and South Korea, using nuclear waste that has the devastating power of plutonium. Se-jong, a South Korean naval officer departs with his team of elite forces to prevent Sin's master plan of Nuclear Typhoon. Born under the same skies of the same race, but of a completely different nation... Living a life so different, the two point their guns at each other's heart...",0,0,태풍,en +284306,They Have Escaped,2014-08-01,101.0,,,tt2967988,"Lust for life, unshackled.",Two troubled youths break out of their halfway house and make their way to one's home.,1400000,0,He ovat paenneet,fi +11142,Der Clown - Tag der Vergeltung,2005-01-01,104.0,http://www.clown-derfilm.de/,,tt0373762,,"Former secret government agent Max Hecker (Sven Martinek) disguises himself with a clown mask in order to fight international crime. He hangs up his mask when one of his supporters, journalist Claudia (Diana Frank), is murdered. Four years later, he must put it back on as Claudia's sister Leah (Eva Habermann) is kidnapped by the same people that killed Claudia.",0,0,Der Clown - Tag der Vergeltung,de +33102,The Girl from Monday,2005-01-01,84.0,http://www.possiblefilms.com/2005/01/the-girl-from-monday/,,tt0388973,,A comic drama about a time in the near future when citizens are happy to be property traded on the stock exchange.,0,0,The Girl from Monday,en +31277,Popstar,2005-01-01,94.0,,,tt0426550,He topped the charts. Can he top high school?,A teenage girls life gets turned upside down when a new school friend turns out to be a popstar.,0,0,Popstar,en +28805,Apaharan,2005-01-01,173.0,,,tt0451631,,"Story of a tumultuous and complex relationship between a father (Mohan Agashe) and son (Ajay Devgan), set against the backdrop of a thriving kidnapping industry in the Hindi heartland of Bihar.",0,0,Apaharan,hi +28036,Horror Business,2005-01-01,82.0,,,tt0460823,,"The movie covers the careers of five up-and-coming horror-movie loving directors – Mark Borchardt ('Coven'), Ron Atkins ('Necromaniac'), Dave Stagnari ('Catharsis'), John Gora ('Chirpy'), and Brian Singleton.",15000,0,Horror Business,en +21753,Everything You Want,2005-01-01,93.0,,,tt0403237,Love is Just An Illusion. Until the Real Thing Comes along,It was at a very young age that Abby found herself experimenting with the gift of art while she practically...,0,0,Everything You Want,en +9753,Survival Island,2005-01-01,95.0,,,tt0377309,,"A millionaire and his wife are shipwrecked after a yachting accident with their former servant, Manuel.",9000000,0,Three,en +19166,House Of 9,2005-01-01,86.0,,,tt0395585,,Nine strangers wake up in a house with no recollection how they got there and no way out. The voice on the PA introduces them to a grisly game they must play. The prize is $5 million and their life.,6000000,0,House Of 9,en +14286,Why We Fight,2005-01-01,98.0,http://www.sonyclassics.com/whywefight,,tt0436971,It Is Nowhere Written That The American Empire Goes On Forever,Is American foreign policy dominated by the idea of military supremacy? Has the military become too important in American life? Jarecki's shrewd and intelligent polemic would seem to give an affirmative answer to each of these questions.,0,0,Why We Fight,en +31390,Brothers in Arms,2005-01-01,85.0,,,tt0439504,A revisionist western,Old West. New Soul. Big Payback.,0,0,Brothers in Arms,en +15258,The Aristocrats,2005-01-01,89.0,,,tt0436078,100 Superstar Comedians. One Very Dirty Joke.,"One hundred superstar comedians tell the same very, VERY dirty, filthy joke--one shared privately by comics since Vaudeville.",0,0,The Aristocrats,en +12759,Doll Graveyard,2005-01-01,71.0,,,tt0482495,,"It's 1905 when 12 year old Sophia plays all by herself in her big, creepy house with only four handmade dolls as friends. When her abusive father has finally had enough, he forces her to bury them in the backyard. But, after she ""slips"" and breaks her neck, dad buries her right along with the dolls. 100 years later, the Fillbrook family moves into the very same house.",0,0,Doll Graveyard,en +9987,Headspace,2005-01-01,89.0,,,tt0417745,,A man (Christopher Denham) must use his newfound intellect to stop a brutal series of murders.,0,0,Headspace,en +85790,The Old Crocodile,2005-01-01,12.0,,,tt1254975,,"An short movie that is illustrated in black and white using rather simple animation. The story is told by a narrator with a lovely British voice that reminded me of Malcolm McDowell and he does all the voices of all the characters as well. The story is about an ageless old crocodile that is quite nasty--even for a croc! Because he's older and lazy, he mostly just sits around doing very little.",0,0,Toshi wo totta wani,en +36249,Romy and Michele: In the Beginning,2005-01-01,120.0,,,tt0337114,,"This time around it's 1987, and new high school graduates Romy and Michele are desperate to get away from their hometown of Tucson...",0,0,Romy and Michele: In the Beginning,en +13834,Missing in America,2005-01-01,102.0,,,tt0384699,,"A haunted Vietnam veteran, living in exile in the forests of the Pacific Northwest, is faced with a life-changing decision after he is visited by a former platoon member and his young Amerasian daughter.",0,0,Missing in America,en +110073,Rabbit,2005-01-01,9.0,http://runwrake.com/portfolio_page/rabbit/,,tt0498121,,"A tale of lost innocence, greed and the random justice of nature. When a boy and girl find an idol in the stomach of a rabbit, its magical abilities lead to riches. But for how long?",0,0,Rabbit,es +47975,The Spaghetti West,2005-01-01,0.0,,,tt0962781,,A visual history of Italian western cinema in the 60s and 70s.,0,0,The Spaghetti West,en +17350,The Brice Man,2005-01-01,98.0,,442352,tt0412535,,A wannabe surfer parties on the French Riviera while awaiting the perfect wave.,0,0,Brice de Nice,fr +39305,Children of Beslan,2005-01-01,60.0,,,tt0480753,,"On September 1, 2004, a group of heavily armed rebel extremists stormed into School No. 1 in Beslan, Russia. For three days, more than a thousand children and adults were held hostage in a sweltering gymnasium, denied food and water, and forced to keep their hands over their heads. The harrowing siege ended on September 3 with a series of explosions and a hail of gunfire that killed some 350 people - half of them children. In this film, the youngest survivors of Beslan tell their story.",0,0,Children of Beslan,en +44119,Born Killers,2005-01-01,87.0,,,tt0378565,,"iggy Banks tells the story of two charming and brilliant brothers who finance their lifestyle by robbing and murdering pretty much anyone foolish enough to get in the car with them. They learn the business from their sociopath father (Tom Sizemore) who doesn't bother to hide his crimes, or the brutal philosophy which drives it. He tells his sons people are just piggy banks. You need money? Just break one open. Michael is sloppy and reckless he goes about his work with a demented glee, John perhaps even more horrifyingly, understands the misery he inflicts he simply doesn't care. It's just a job. Lock all your doors.",0,0,Piggy Banks,en +13802,Colour Me Kubrick,2005-01-01,86.0,,,tt0376543,A True...ish Story,"The true story of a man who posed as director Stanley Kubrick during the production of Kubrick's last film, Eyes Wide Shut, despite knowing very little about his work and looking nothing like him.",0,0,Colour Me Kubrick,en +155386,La Sierra,2005-01-01,84.0,,,tt0439810,,,0,0,La Sierra,es +22559,Aliens of the Deep,2005-01-21,47.0,,,tt0417415,,"James Cameron teams up with NASA scientists to explore the Mid-Ocean Ridge, a submerged chain of mountains that band the Earth and are home to some of the planet's most unique life forms.",0,0,Aliens of the Deep,en +481,7 Virgins,2005-10-14,86.0,http://www.7virgenes.com/,,tt0461894,,Tano is 16-years-old and is already sitting in jail. In 48 hours he’s a free man and off to the wedding of his brother. In the two days he recounts his neighborhood in a section of Sevilla.,0,0,7 vírgenes,es +74935,Helicopter String Quartet,2005-01-01,81.0,,,tt0113286,,"One morning, the late Karlheinz Stockhausen awoke from a dream that told him to take to the sky. Stockhausen envisioned four helicopters swirling in the clouds, with each of a quartet’s members tucked inside his own chopper, communicating through headsets, stringing away in sync to the rotor-blade motors. He immediately set forth to make that dream a reality. In 1995, Dutch film director Scheffer followed Stockhausen in the days leading up to the premiere performance of his Helicopter String Quartet in Amsterdam. The resulting film offers a rare glimpse of Stockhausen as he patiently dictates every agonizingly detailed measure to the Arditti Quartet.",0,0,Helikopter Streichquartett,de +64827,L'educazione sentimentale di Eugenie,2005-01-01,0.0,,,tt0824320,,,0,0,L'educazione sentimentale di Eugenie,it +9885,Wolf Creek,2005-01-01,99.0,,268098,tt0416315,The Thrill Is In The Hunt.,"Stranded backpackers in remote Australia fall prey to a murderous bushman who offers to fix their car, then takes them captive",1000000,27762648,Wolf Creek,en +18070,Black Dawn,2005-01-01,96.0,,308645,tt0443450,It's always darkest before dawn.,"Jonathan Cold returns, this time he goes Undercover to stop a group of Terrorists before they bomb Los Angeles.",16000000,0,Black Dawn,en +13739,Quatre étoiles,2005-01-01,0.0,,,tt0448245,,No overview found.,0,0,Quatre étoiles,en +24090,It Waits,2005-01-01,88.0,,,tt0430239,,A lone female park ranger tries to track down a vicious creature killing various people and terrorizing her at a remote national park.,0,0,It Waits,en +24615,Aloha Scooby-Doo!,2005-01-01,70.0,,,tt0433771,,"Scooby and the gang visit Hawaii, but a monster disturbs their fun.",0,0,Aloha Scooby-Doo!,en +311585,Make Your Own Damn Movie,2005-01-01,300.0,,,tt0450295,It's Film School in a Box!,"South Park's Trey Parker and Matt Stone, Night of the Living Dead's George A. Romero and Spider-Man's Stan Lee share their filmmaking secrets with the legendary Lloyd Kaufman in this step-by-step course for budding filmmakers. From scriptwriting to distribution, Kaufman covers the essentials with his works as examples, and many other notable filmmakers offer their advice. The set features films created using Kaufman's method, and much more.",0,0,Make Your Own Damn Movie,en +49597,Vampires: The Turning,2005-01-02,84.0,,348843,tt0398378,From the one ... Came the many.,An American muay-thai fighter in Thailand must join forces with a group of vampire hunters to track down and kill a vampire lord who has kidnapped his gilfriend.,0,0,Vampires: The Turning,fr +1690,Hostel,2005-01-06,94.0,http://www.hostelfilm.com/,86578,tt0450278,Welcome To Your Worst Nightmare,"Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.",4800000,80578934,Hostel,en +8340,Turtles Can Fly,2005-01-07,98.0,,,tt0424227,,Turtles can fly tells the story of a group of young children near the Turkey-Iran border. They clean up mines and wait for the Saddam regime to fall.,0,0,لاک‌پشت‌ها هم پرواز می‌کنند,fa +19812,Father of Four: Never Gives Up!,2005-01-10,87.0,,256548,tt0446125,,,0,0,Far til fire - gi'r aldrig op!,da +376934,Restart,2005-01-10,,,,tt0423061,,,0,0,Restart,cs +24556,The Land Before Time XI: Invasion of the Tinysauruses,2005-01-11,82.0,,19163,tt0424228,,"While trying to obtain ""Tree Sweets"", Littlefoot into the tree and knocks down all the blossoms, attracting the Tinysauruses. They devour the plants and disappear. But Littlefoot isn't blamed for the disappearance, instead he accidentally makes the adults believe the tiny dinosaurs were the main cause. Now Littlefoot and his friends must protect the tiny herd and learn the value of honesty.",0,0,The Land Before Time XI: Invasion of the Tinysauruses,en +26267,Now You See It...,2005-01-14,96.0,,,tt0426568,,"While producing a reality TV show, a teenager meets a magician whose powers are real but put him in danger.",0,0,Now You See It...,en +140231,Elaan,2005-01-14,0.0,,,tt0416712,,"Elaan (Hindi: एलान, translation: Manifesto) is a 2005 Bollywood action thriller film. Elaan is a mission film about five characters and their plan against one man. Produced by Ganesh Jain and Ratan Jain and directed by Vikram Bhatt, the film stars Rahul Khanna, Arjun Rampal, John Abraham, Amisha Patel, Lara Dutta and Mithun Chakraborty. The film marked the return of Mithun Chakraborty to the Bollywood film industry after starring in low budget productions based at Ooty, known as Mithun's Dream Factory for a decade. It managed to do well and was a 'average' grosser at the Box-office.",0,0,Elaan,hi +18279,Frozen Land,2005-01-14,127.0,http://www.solarfilms.com/elokuvat/kaikki/pahamaa/en_GB/frozenland/,,tt0388318,"In the end things work out for the best, for all of us","When a schoolteacher is sacked, he projects his bad mood at his troubled teenage son. The son, in turn, buys a CD player from a pawnshop with counterfeit money. This starts a chain reaction of misery as every victim projects his problems on to another person.",2000000,0,Paha Maa,fi +74154,Nuvvostanante Nenoddantana,2005-01-14,0.0,,,tt0455663,,"Nuvvostanante Nenoddantana is a Family and Love story Movie,which is Directed BY Prabhu Deva.Santosh (Siddarth Narayan) is a playful young NRI (non-resident Indian) from London, who returns to India to attend his cousin Lalita's wedding. There, he meets one of Lalita's friends, Siri (Trisha Krishnan) who came from the country side to attend the marriage. Though they initially clash, after a series of misadventures, they fall in love. Santosh, however, is supposed to marry the spoiled daughter of his uncle's friend. When Siri goes back home, Santosh follows her to win her over - however,...",0,0,నువ్వొస్తానంటే నేనొద్దంటానా,te +5289,Chaos,2005-01-17,106.0,,,tt0402910,When the system breaks down... someone is about to get rich.,"Two cops, a rookie and a grizzled vet, pursue an accomplished bank robber.",20000000,10289,Chaos,en +16455,The Magic Roundabout,2005-01-19,85.0,http://www.the-magic-roundabout.com,,tt0339334,,"A shaggy, candy-loving puppy named Dougal along with a group of friends embarks on a dangerous journey in an effort to imprison their oppressor -- the evil ice sorcerer ZeeBad (Zebedee's evil twin). As the world is placed in mortal danger Zeebad who wants to turn the world to ice. Doogal and his friends must recover 3 diamonds that are needed to stop him.",20000000,0,The Magic Roundabout,en +218443,Graveyard Shift,2005-01-20,85.0,,,tt0418016,,"A maniac terrorizes a town during rainy nights. And exactly on one rainy night a student has a night shift in a 24-hour shop. And exactly on this night the owner of the shop goes to play in a casino, his wife wants to be entertained, a detective is awaiting for a crime to be committed and certainly... the maniac begins hunting.",0,0,Ночной продавец,ru +12605,Katze im Sack,2005-01-20,87.0,,,tt0443076,,No overview found.,0,0,Katze im Sack,de +20623,Page 3,2005-01-21,139.0,,,tt0443708,,'Page 3' takes a behind-the-scenes look at the lifestyles of the A-list celebrities in metro cities. It explores the networking and the power play between the air-kissing,0,0,Page 3,hi +11354,The Upside of Anger,2005-01-23,118.0,http://www.newline.com/properties/upsideofanger.html,,tt0365885,Sometimes what tears us apart helps us put it back together.,"After her husband runs off with his secretary, Terry Wolfmeyer is left to fend for herself -- and her four daughters. As she hits rock bottom, Terry finds a friend and drinking buddy in next-door neighbor Denny, a former baseball player. As the two grow closer, and her daughters increasingly rely on Denny, Terry starts to have reservations about where their relationship is headed.",0,0,The Upside of Anger,en +58462,Loverboy,2005-01-24,84.0,,,tt0388213,Some mothers aren't meant to be moms.,A neglected daughter becomes a possessive mother in an emotional journey into the heart and mind of a woman who loved too much.,0,0,Loverboy,en +16022,Nine Lives,2005-01-24,115.0,,,tt0420015,,"Captives of the very relationships that define and sustain them, nine women resiliently meet the travails and disappointments of life.",0,0,Nine Lives,en +40120,John Pinette: I Say Nay Nay,2005-01-25,60.0,,129407,tt1567243,,John Pinette has been cracking up audiences around the world for more than 15 years. He was named Stand-Up Comedian of the Year by the American Comedy Awards in 1999 and he received a Gemini Award nomination for his superb televised performance at The Montreal Comedy Festival in 2000.,0,0,John Pinette: I Say Nay Nay,en +38908,Film Geek,2005-01-25,78.0,,,tt0443506,His Knowledge is your misery.,"The story of Scotty Pelk, a socially inept video store clerk who gets fired from his job and becomes a sensation as an online film critic.",0,0,Film Geek,en +11096,Hide and Seek,2005-01-27,101.0,,,tt0382077,"Come out, come out, whatever you are.","David Callaway tries to piece together his life in the wake of his wife's suicide and has been left to raise his nine-year-old daughter, Emily on his own. David is at first amused to discover that Emily has created an imaginary friend named 'Charlie', but it isn't long before 'Charlie' develops a sinister and violent side, and as David struggles with his daughter's growing emotional problems, he comes to the frightening realisation that 'Charlie' isn't just a figment of Emily's imagination.",25000000,122644820,Hide and Seek,en +47525,The Magic of Ordinary Days,2005-01-30,120.0,http://www.cbs.com/specials/magic_of_ordinary_days/,,tt0406046,,"Pregnant out of wedlock, an educated young woman is pressured by her father into an arranged marriage with a lonely farmer in this drama set during WWII.",0,0,The Magic of Ordinary Days,en +286512,Les amants du bagne,2005-01-31,,,,tt0397363,,,0,0,Les amants du bagne,fr +6417,Dallas Pashamende,2005-02-02,90.0,,,tt0382627,,No overview found.,0,0,Uită și fugi!,en +179715,Angel's Fall,2005-02-03,98.0,,,tt0431259,,"Zeynep, Tülin Özen works in a hotel as a housekeeper. But she suffers hell on earth because of her father's behavior. She only talks to Mustafa, 'Engin Dogan' who works in the same hotel and he is interested in Zeynep. She is not interested in Mustafa who is younger than Zeynep, but she is not indifferent to him. While Zeynep is trying to make a bonfire of bad situation, Selçuk, Budak Akalin who lives on the other side of city is a voice technician. He feels guilty after his wife's death. The suitcase which has his wife's dresses changes the Zeynep's destiny.",0,0,Meleğin Düşüşü,en +29101,Too Fat Too Furious,2005-02-03,100.0,http://www.vethard.nl/,,tt0382365,,"Bennie, a clumsy criminal who's touchy about his weight, teams up with his adoptive father's biological (serial killer) son, his employees who in his absence turned his snack-bar into a quiche bakery, a suicidal manic-depressive woman and a Yougoslavian who keeps unintendedly blowing things up. They need to get 300000 Euro to get Bennies father a new liver. Complicating matters are that Bennie is",4200000,0,Vet Hard,nl +21905,Shabd,2005-02-04,0.0,,,tt0409527,,"Shaukat, a writer suffering from writer's block, prompts his wife to have an affair with a stranger as he seeks inspiration to write a new story. Will his wife help him write his dream novel?",2500000,3100000,Shabd,en +31977,Black,2005-02-04,122.0,,,tt0375611,,"Black is an adaptation of Helen Keller's autobiography. Black revolves around a blind and deaf girl, and her relationship with her teacher who himself later develops Alzheimer's disease.",0,733094,Black,hi +41261,1 Litre of Tears,2005-02-05,98.0,,,tt0494724,,"15-year-old Ikeuchi Aya was an ordinary girl, the daughter of a family who works at a tofu shop, and a soon-to-be high schooler. However, odd things have been happening to Aya lately. She has been falling down often and walks strange. Her mother, Shioka, takes Aya to see the doctor. How will Aya react when told about her disease? And how will Aya live from now on?",0,0,1リットルの涙,ja +10265,Seoul Raiders,2005-02-05,95.0,,,tt0455116,,"In this sequel to ""Tokyo Raiders"", wisecracking, kung-fu-fighting spy/private eye Lam jets off to Seoul...",0,0,韓城攻略,cn +167410,Hibernation,2005-02-10,15.0,,,tt0479926,,1985. A secret tree house. Two children dressed in animal costumes experiment to revive a bee. But they are searching for a way to bring back something much bigger.,0,0,Hibernation,en +7515,London,2005-02-10,92.0,,,tt0449061,One young man's incredible journey of self-discovery,London is a drug laden adventure that centers on a party in a New York loft where a young man is trying to win back his ex-girlfriend.,0,0,London,en +252874,ファンタスティポ,2005-02-10,109.0,http://fantastipo.com/,,tt0450419,,"Two brothers must take the helm of their family's company, Armadillo, Inc., after their father steps down from his position as the company's director. Through trials and tribulations, the two slowly begin to learn the true meaning of family.",0,0,ファンタスティポ,ja +13682,Pooh's Heffalump Movie,2005-02-11,68.0,,,tt0407121,There's something new in the Hundred Acre Wood.,"Who or what exactly is a Heffalump? The lovable residents of the Hundred Acre Wood -- Winnie the Pooh, Rabbit, Tigger, Eeyore, Kanga and the rest of the pack -- embark on a journey of discovery in search of the elusive Heffalump. But as is always the case, this unusual road trip opens their eyes to so much more than just the creature they're seeking.",0,0,Pooh's Heffalump Movie,en +133382,Lackawanna Blues,2005-02-12,95.0,,,tt0407936,Play it. Sing it. Shout it. Feel it.,"In a story fueled by rhythm and blues, a young boy's life is shaped by love and the stories of a cast of characters in the boarding house where he lives in 1960s Lackawanna, New York.",0,0,Lackawanna Blues,en +67,Paradise Now,2005-02-14,90.0,http://wip.warnerbros.com/paradisenow/,,tt0445620,"From the most unexpected place, come a new call for peace.",Paradise Now is filmed from the perspective of two Palestinian men who are preparing to perform a suicide attack in Israel. This is the first film to deal with the subject of suicide bombers.,0,3357075,Paradise Now,en +16374,Sometimes in April,2005-02-17,140.0,,,tt0400063,,"Debra Winger, Oris Erhuero and Idris Elba star in this drama framed by the Rwandan genocide.",0,0,Sometimes in April,en +26826,Wrong Side Up,2005-02-17,100.0,http://www.silenstvi.cz/,,tt0408120,,A man who deals with parcels at an airport cargo company finds that he likes planes more than people.,0,0,Príbehy obycejného sílenství,en +35320,School Of Life,2005-02-19,111.0,,,tt0340331,This School Rocks!,"At Fallbrook Middle School, the annual student-elected Teacher of the Year award is held. And every year for the last 43 years Norman Warner or most fondly called Stormin' Norman Warner has won the award. Now that he has died, the burden of carrying the legacy falls into the hands of Matt Warner, the son of the late Norman Warner who has always lived in the shadow of his father.",0,0,School Of Life,en +16186,Diary of a Mad Black Woman,2005-02-25,116.0,,,tt0422093,Time heals the heart. Faith heals the rest.,"Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.",0,0,Diary of a Mad Black Woman,en +64191,Mom at Sixteen,2005-03-01,88.0,,,tt0438123,It's about the choices you make next.,Pregnant sixteen year old Jacey's well-meaning mother forces her to keep the birth a secret and decides to raise the baby as her own.,0,0,Mom at Sixteen,en +189359,Marvin Gaye What's going on Life and Death of Marvin Gaye,2005-03-01,60.0,,,tt2780668,,The life and Tragic death of Marvin Gaye,0,0,Marvin Gaye What's going on Life and Death of Marvin Gaye,en +16151,Look Both Ways,2005-03-03,100.0,,,tt0382806,,"During one unusually hot weekend, four friends struggle after hearing some life-changing news.",0,0,Look Both Ways,en +4551,Be Cool,2005-03-04,118.0,,91698,tt0377471,Everyone is looking for the next big hit,"Disenchanted with the movie industry, Chili Palmer tries the music industry, meeting and romancing a widow of a music exec on the way.",53000000,95226116,Be Cool,en +9667,The Jacket,2005-03-04,103.0,,,tt0366627,Terror has a new name.,"A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.",29000000,21126225,The Jacket,en +56372,Shadowboxing,2005-03-05,126.0,,106011,tt0415678,,"Артем Колчин был одним из многих, но он хотел славы. И он выбрал свой путь: он стал боксером. Теперь Артем претендент на чемпионский титул, боец, известный по всему миру, Большая Белая Надежда. Но главный бой в его жизни пошел не так, как он ожидал. Теперь ему предстоит решать свои проблемы вне ринга. У него всего три дня, чтобы расквитаться с теми, кто его предал, защитить любимую женщину от наемных убийц и собрать огромную сумму денег. В реальном мире бьют без перчаток и без правил. Вместо ринга — злые улицы большого города. И нет рефери, который может остановить бой. Но боец остается бойцом. Он знает, что такое страх, но способен не бояться. Он продолжает биться, даже когда надежда умерла. Счет идет на часы. И Артем начинает бой. За любовь. За друзей. За собственную жизнь.",3500000,8262833,Бой с Тенью,ru +38154,Lorelei: The Witch of the Pacific Ocean,2005-03-05,128.0,,,tt0406941,,A drama set during World War II where a submarine carrying a secret weapon attempts to stop a planned third atomic bombing of Japan. Based on Harutoshi Fukui's novel Shuusen no Lorelei.,0,0,ローレライ,ja +20110,Ashes and Snow,2005-03-05,63.0,,,tt0493393,,Exploring the shared language and poetic sensibilities of all animals.,0,0,Ashes and Snow,en +7871,Side Effects,2005-03-07,90.0,,,tt0438427,Love is a drug!,"America! Built on a better pill. Karly Hert has spent the last ten years selling drugs. Legally, that is. Karly is a pharmaceutical sales representative. She sells pills to doctors. She makes lots of money. She has a company car. She has a nice fat expense account. But there's a growing pit in Karly's stomach. Something isn't right behind the scenes at big pharma. Based on the director's decade working directly for the industry.",0,0,Side Effects,en +25707,Dot.Kill,2005-03-08,87.0,,,tt0337610,,"The morphine-addicted detective Charlie Daines is on the trail of a sophisticated psychopath who is setting up murders and broadcasting them live on the internet. As he closes in on the killer, he realizes that it has become personal and that he is to be the final victim. Will he catch the killer before it's too late or will his old-school methods mean his death?",0,0,Dot.Kill,en +14644,Boudu,2005-03-09,104.0,,,tt0423877,,,0,0,Boudu,fr +48431,Trouble,2005-03-09,0.0,,,tt0368375,,,0,0,Trouble,de +572,Next Door,2005-03-10,75.0,,,tt0453383,Some doors should never be opened.,"After Ingrid leaves John, he allows himself to be pulled into a mystical and scary world where it is impossible to separate truth from lies.",2400000,0,Naboer,no +9928,Robots,2005-03-10,91.0,,,tt0358082,You can shine no matter what you're made of.,"Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams – and those of his friends – are in danger of becoming obsolete.",75000000,260696994,Robots,en +18045,The Dark Hours,2005-03-11,80.0,,,tt0402249,,"Dr. Samantha Goodman is a beautiful, young psychiatrist. Burnt out, she drives to the family’s winter cottage to spend time with her husband and sister. A relaxing weekend is jarringly interrupted when a terrifying and unexpected guest arrives. What follows is an extraordinary night of terror and evil mind games where escape is not an option.",500000,0,The Dark Hours,en +38785,The Boys of Baraka,2005-03-11,84.0,,,tt0444608,,"Four 12-year-old black boys from one of the most violent ghettos in Baltimore, Maryland, are taken 10,000 miles away to an experimental boarding school in rural Kenya, to try to take advantage of the educational opportunities they can't get in their own country.",0,0,The Boys of Baraka,en +185158,The Grace Lee Project,2005-03-11,68.0,http://gracelee.net/,,tt0451070,Do you know Grace Lee?,Filmmaker Grace Lee leaves her Missouri home to travel the country and talk with an array of women who share her name.,0,5965,The Grace Lee Project,en +22939,Spider-Plant Man,2005-03-11,15.0,,,tt0460946,,"Spider-Plant Man is a parody of Spider-Man, made for the Comic Relief 2005 appeal and aired on BBC One. It featured Rowan Atkinson as Peter Piper/Spider-Plant Man and Rachel Stevens as his love-interest Jane-Mary (parodying Mary-Jane Watson). Jim Broadbent also made an appearance, portraying Batman, and Tony Robinson as Robin.",0,0,Spider-Plant Man,en +24363,House of D,2005-04-15,97.0,http://www.houseofdthemovie.com/,,tt0372334,,"An American artist living a bohemian existence in Paris, Tom Warshaw (David Duchovny) is trying to make sense of his troubled adult life by reflecting upon his extraordinary childhood.",0,0,House of D,en +24235,Champion,2005-03-12,81.0,,,tt0449472,This is his story.,"Danny Trejo, you know the man. He has fierce tattoos, and frequently plays a thug in your favorite movies. Behind the ink and the wicked characters he plays on screen lies the story of a troubled childhood which included drug addiction, armed robbery and extensive prison time. Champion offers an intimate, one of a kind view into the life of Danny Trejo before he turned himself around and after.",0,0,Champion,en +27417,The Roost,2005-03-12,80.0,,,tt0387549,,"Part of a ""special"" late-nite television program...Four friends on their way to a wedding find themselves marooned on a mysterious farm. Creatures of the night awaken and the undead rise, as a night of relentless horror...Begins!",0,0,The Roost,en +3102,My Step Brother Frankenstein,2005-03-13,120.0,,,tt0416040,,No overview found.,0,0,Мой сводный брат Франкенштейн,en +14457,Reeker,2005-03-13,90.0,,297371,tt0393635,,Strangers trapped at an eerie travel oasis in the desert must unravel the mystery behind their visions of dying people while they are preyed upon by a decaying creature.,0,0,Reeker,en +122023,Casanova,2005-03-13,174.0,,,tt0427042,,"After a life spent seeking pleasure and decadence, Casanova seeks his one true love, Henriette.",0,0,Casanova,en +13374,Ice Princess,2005-03-17,98.0,,,tt0396652,,"With the help of her coach, her parents, and the boy who drives the Zamboni machine, nothing can stop Casey (Trachtenberg) from realizing her dream to be a champion figure skater.",25000000,27645491,Ice Princess,en +10320,The Ring Two,2005-03-17,110.0,,14563,tt0377109,The dead don't sleep.,Rachel Keller must prevent evil Samara from taking possession of her son's soul.,50000000,161451538,The Ring Two,en +54555,She's on Duty,2005-03-17,111.0,http://www.lovehkfilm.com/panasia/shes_on_duty.htm,,tt0456999,,A boisterous detective goes undercover in a high school in order to befriend the teenage daughter of a notorious gangster.,0,0,잠복근무,ko +342850,The Prince of Chess,2005-03-19,50.0,,,tt0481603,,Follow the brilliant mind of 13 year old Chess Grand Master Magnus Carlsen,0,0,The Prince of Chess,en +44732,Spring Break Shark Attack,2005-03-20,88.0,,,tt0450326,Spring Break. Some come to party. Others come for the buffet.,"A young teenager travels to Florida, unknowing that a group of dangerous tiger sharks are ravaging the beach.",0,0,Spring Break Shark Attack,en +37978,Niagara Motel,2005-03-23,88.0,,,tt0425295,Pack your bags.,A group of struggling individuals cross paths at a low-rent motel in the tourist Mecca of Niagara Falls,0,0,Niagara Motel,en +69346,Zeher,2005-03-25,132.0,,,tt0451983,,"Police Inspector Sonia Mehra is married to her subordinate Siddharth, and both are employed by the Goa Police Force. They share a fairly harmonious relationship. Then one day, a woman named Anna Verghese goes missing and is believed dead. To add to this mystery, there is also the question of a suitcase full of cash that is also missing.",0,0,Zeher,hi +66700,Cose da pazzi,2005-03-25,0.0,,,tt0461179,,,0,0,Cose da pazzi,it +14907,Alien Apocalypse,2005-03-26,88.0,,,tt0404756,"Yesterday, they were only astronauts. Today, they're humanity's only hope.",An astronaut doctor Ivan Hood and his fellow astronaut Kelly return from their mission in space to find the world has been taken over by aliens. Now Dr. Ivan Hood and Kelly must lead a revolution to free the human slaves from their alien masters.,0,0,Alien Apocalypse,en +30402,Intermedio,2005-03-29,82.0,,,tt0414161,In the caves of Mexico... The dead bury the living.,"Under the border leading into Mexico, within a labyrinth of caves, a deadly presence haunts all who enter. For four friends on an expedition, the caverns become an underground graveyard as the tortured ghosts prey upon them, one by one.",1000000,0,Intermedio,en +6183,Barefoot,2005-03-30,110.0,,,tt0405743,,"A hedonistic bachelor, falls for an escaped mental patient. Til Schweiger comes up with a slickly-made off-the-wall romantic comedy drama ""Barfuss"" (Barefoot), his first solo directing effort in nearly a decade. Punchy, anti-establishment tone, with Schweiger playing a hedonistic bachelor - he is his rich family's black sheep - who falls for a suicidal mental patient (Johanna Wokalek). An offbeat, strangely tender love story develops as Nick struggles with responsibility for the first time in his life.",0,0,Barfuß,de +1986,Live and Become,2005-03-30,140.0,,,tt0388505,,In 1980 the black Falashas in Ethiopia are recognised as genuine Jews and are secretly carried to Israel. The day before the transport the son of a Jewish mother dies. In his place and with his name (Schlomo) she takes a Christian 9-year-old boy.,0,0,"Va, vis et deviens",fr +28366,House of Fury,2005-03-31,102.0,,,tt0435026,,"Teddy Yu is a former secret agent turned chiropractor who thought he left his past behind. He teaches martial arts to his two kids. However, his past catches up to him as a rogue agent demands to know the whereabouts of an agent known as Dragon. Now, father and children must team up to stop the rogue agent and his goons.",0,0,House of Fury,cn +69917,Room,2005-04-01,0.0,,,tt0417096,,"Julia Barker, an over-worked, middle-aged Texas woman is haunted by psychic visions which drive her to New York in search of the Room.",0,0,Room,en +12807,Looking for Cheyenne,2005-04-01,86.0,,,tt0410410,,"Cheyenne, a journalist, decides to leave Paris after being laid off and to settle down in the middle of nowhere, far from the society she hates.The trouble is that she leaves Sonia, her true love, behind. The latter, a teacher who loves her job, refuses to give up everything -including her comfort- to follow her. Sonia makes all the efforts in the world to forget Cheyenne, whether in the arms of Pierre, a charming anarchist, or in those of Béatrice, a gay woman who soon proves perverse and dangerous, only to realize that her heart belongs to Cheyenne and nobody else. If Cheyenne does not come back, Sonia feels life is not worth living any longer... Written by Guy Bellingerew found.",0,0,Oublier Cheyenne,en +74919,Pitbull,2005-04-09,0.0,,402380,tt0459505,,,0,0,Pitbull,pl +69075,Snakeman,2005-04-09,96.0,http://www.scifi.com/snakeking/,,tt0454953,Pure Evil. Pure Terror. Pure Venom.,An object is found that points to the secret of eternal youth so a research team is sent to find the fountain only to find it is protected by a giant snake,1000000,0,The Snake King,en +10087,Man to Man,2005-04-13,122.0,,,tt0397530,,"An epic about anthropologists who hunt and capture pygmies for study back in Europe, in an attempt to illustrate the link between man and ape.",0,0,Man to Man,en +212934,Behind the Camera: The Unauthorized Story of 'Mork & Mindy',2005-04-14,120.0,,,tt0437856,,An inside look at the ABC sitcom which turned Robin Williams into a star in 1978.,0,0,Behind the Camera: The Unauthorized Story of 'Mork & Mindy',en +40859,Dry Movie,2005-04-14,100.0,,,tt0431615,,"Weatherman from a TV network goes back to his hometown, Vale da Rocha, a place in Northeast Brazil, devastated by the drought. He is forced to face the geographic elements and his own memories.",0,0,Árido Movie,pt +20521,Reefer Madness: The Movie Musical,2005-04-16,109.0,,,tt0404364,The Feel Good Event of the Year!,"This film tells the tale of the Harper Affair, in which young Jimmy Harper finds his life of promise turn into a life of debauchery and murder thanks to the new drug menace marijuana. Along the way he receives help from his girlfriend Mary and Jesus himself, but always finds himself in the arms of the Reefer Man and the rest of the denizens of the Reefer Den.",0,0,Reefer Madness: The Movie Musical,en +7483,Free Zone,2005-04-18,90.0,,,tt0441761,,"Rebecca, an American who has been living in Jerusalem for a few months now, has just broken off her engagement. She gets into a cab driven by Hanna, an Israeli. But Hanna is on her way to Jordan, to the Free Zone, to pick up a large of sum of money.",0,0,Free Zone,en +18634,Puzzlehead,2005-04-21,81.0,,,tt0450367,So this is what it is to be human…,"In a post apocalyptic world where technology is outlawed, Walter, a reclusive scientist, secretly creates a self-aware android, ""Puzzlehead"". Jealously erupts when Puzzlehead wins the affection of Julia, the beautiful shopgirl that Walter has longed for. The resulting sci-fi love triangle is a Frankensteinian fable that traps all three in a web of deception and the ultimate betrayal.",500000,0,Puzzlehead,en +17216,Rx (Simple Lies),2005-04-21,89.0,,,tt0357182,,"What is meant to be a weekend party across the border soon becomes a heartbreaking journey that tests the boundaries of companionship, romantic love and personal ethics.",0,0,Rx (Simple Lies),en +15907,Duma,2005-04-22,100.0,http://dumamovie.warnerbros.com/,,tt0361715,Some friendships are wilder than others,An orphaned cheetah becomes the best friend and pet of a young boy living in South Africa.,12000000,0,Duma,en +19629,Red Doors,2005-04-22,90.0,,,tt0415234,Red doors bring good luck. The Wongs need all they can get.,"The Wongs struggle to cope with life, love, and family dysfunction in the suburbs of New York.",0,0,Red Doors,en +28320,Aurora Borealis,2005-04-22,109.0,,,tt0387037,,A young man struggles to correct his life after the death of his father.,0,0,Aurora Borealis,en +31364,Waqt: The Race Against Time,2005-04-22,153.0,,,tt0390614,,No overview found.,0,0,Waqt: The Race Against Time,hi +13169,The Baxter,2005-04-24,91.0,,,tt0401244,A romantic comedy for anyone who's ever been dumped.,"A man with a ""doormat"" personality tries standing up for himself for a change in this comedy. Mild mannered tax accountant Elliot Sherman (Michael Showalter) is what he calls a ""Baxter"": the kind of calm, unexciting fellow who ""wears sock garters"" and ""enjoys raking leaves."" Loved by bosses and parents, Elliot is a perfectly nice guy. And that's his problem.",0,0,The Baxter,en +8332,Antibodies,2005-04-24,127.0,,,tt0337573,The Good is the Evil in It,"When a notorious German serial killer is captured after committing some of the most heinous acts against humanity ever imaginable, a farmer and police officer from a sleepy rural community on the outskirts of Berlin is drawn into the case as he searches for the answers to a murder that has shaken his tight-knit community.",1900000,0,Antikörper,de +10475,Factotum,2005-04-25,94.0,,,tt0417658,What matters most is how well you walk through the fire.,"This drama centers on Hank Chinaski, the fictional alter-ego of ""Factotum"" author Charles Bukowski, who wanders around Los Angeles, CA trying to live off jobs which don't interfere with his primary interest, which is writing. Along the way, he fends off the distractions offered by women, drinking and gambling.",0,0,Factotum,en +169382,Homemade Hillbilly Jam,2005-04-25,0.0,,,tt0461674,,"Hillbillies haven't died off; they've simply become neo-hillbillies. Three families of musicians in the Ozark Mountains of Southwestern Missouri give new meaning to the word ""hillbilly"". Float down the backwaters, soak up some old time religion, savor a washboard duel, and bask in the neon lights of the pseudo-hillbilly showtown Branson. Lean back and merge into hillbilliness.",0,0,Homemade Hillbilly Jam,de +100085,El tren de la memoria,2005-04-27,85.0,,,tt0436845,,"Josefina's personal journey back to Nuremberg, Germany, where she arrived as an immigrant from Spain being only 18, along with other 2 million Spaniards who left to Europe in order to find a future.",0,0,El tren de la memoria,en +11534,Tropical Malady,2005-04-29,118.0,http://www.kickthemachine.com/works/tropical_malady.html,,tt0381668,,A romance between a soldier and country boy splinters into a mythical venture based on Thai folklore.,0,0,สัตว์ประหลาด,th +20132,Kaal,2005-04-29,127.0,,,tt0415908,,"Kaal is based around the story of a wildlife expert, his wife and a group of friends who battle against supernatural creatures in the Jim Corbett National Park for their lives.",0,0,Kaal,hi +10066,House of Wax,2005-04-30,113.0,,,tt0397065,Prey. Slay. Display,A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.,40000000,68766121,House of Wax,en +445,Caché,2005-05-02,117.0,http://www.cache-derfilm.at,,tt0387898,,A married couple is terrorized by a series of videotapes planted on their front porch.,0,36000000,Caché,fr +47143,The Intruder,2005-05-04,130.0,,,tt0422491,,"Louis Trebor, a man nearing 70, lives alone with dogs in the forest near the French-Swiss border. He has heart problems, seeks a transplant, and then goes in search of a son sired years before in Tahiti. Told elliptically, with few words, we see Louis as possibly heartless, ignoring a son who lives nearby who is himself an attentive father to two young children, one named for Louis. He leaves his bed one night - and his lover - to kill an intruder; he dreams, usually of violence. Will his body accept his heart? Will his son accept his offer?",0,0,L'intrus,fr +10008,An American Haunting,2005-05-05,83.0,,,tt0429573,Possession Knows No Bounds,Based on the true events of the only case in US History where a spirit caused the death of a man.,0,0,An American Haunting,en +22429,Kyaa Kool Hai Hum,2005-05-06,172.0,,,tt0456500,,"When flatmates Karan and Rahul are unable to pay the rent, they are dramatically evicted. However, they sneak their way back in within hours as the building is being renovated.",0,0,Kyaa Kool Hai Hum,en +41497,American Soldiers: A Day in Iraq,2005-05-11,103.0,,,tt0425743,,"Iraq, 2004: during a routine sortie a US patrol is ambushed and the young soldiers are forced to put their training and skills into action fast. A determined foe with superior local knowledge, the Fedayeen insurgents soon draw them into close quarter combat and a desperate fight for survival.",0,0,American Soldiers: A Day in Iraq,en +11653,The Myth,2005-05-11,118.0,,,tt0365847,,"When a fellow scientist asks for Jack's help in locating the mausoleum of China's first emperor, the past collides violently with the present as Jack discovers his amazing visions are based in fact.",0,0,Shen hua,zh +1963,The Bow,2005-05-12,89.0,,,tt0456470,,"On a fishing boat at sea, a 60-year old man has been raising a girl since she was a child. It is agreed that they will get married on her 17th birthday. They live a quiet and secluded life, renting the boat to day fishermen and practicing strange divination rites. Their life changes when a teenage student comes aboard.",10,0,활,ko +1665,Last Days,2005-05-13,96.0,,,tt0403217,Rock and roll will never die.,"The life and struggles of a notorious rock musician seeping into a pit of loneliness whose everyday life involves friends and family seeking financial aid and favors, inspired by rock music legend Kurt Cobain and his final hours.",0,1928985,Last Days,en +5177,Dark Horse,2005-05-13,100.0,http://www.dark-horse.de/start.htm,,tt0408318,,A young man spurs romance and helps his friend and himself go through the struggles of their ordinary life in Denmark.,0,0,Voksne mennesker,en +9981,Kicking & Screaming,2005-05-13,95.0,,,tt0384642,One man could lead this team to glory. . . That man was busy,"Phil Weston has been unathletic his entire life. In college he failed at every sport that he tried out for. It looks like his 10-year old son, Sam, is following in his footsteps. But with becoming the coach of The Soccers, an already successful soccer team, everything changes.",45000000,56070433,Kicking & Screaming,en +27095,Cold Showers,2005-05-14,102.0,,,tt0422133,,"Mickael's family is struggling (they don't have enough money to pay for hot water) however his life is full with Judo and his girlfriend Venessa. Then Mickael makes a decision to open up his relationship to include Clement his rich-kid Judo partner, starting a chain of events.",0,0,Douches froides,fr +18747,Election,2005-05-14,101.0,,159613,tt0434008,,A drama-thriller centered on a democratic election within an organized crime society.,0,0,黑社會,cn +10077,A Sound of Thunder,2005-05-15,110.0,http://asoundofthunder.warnerbros.com/,,tt0318081,Some Rules Should Never Be Broken.,"When a hunter sent back to the prehistoric era runs off the path he must not leave, he causes a chain reaction that alters history in disastrous ways.",80000000,5989640,A Sound of Thunder,en +2566,Time to Leave,2005-05-16,85.0,,,tt0417189,,"Romain, 31, a photographer, learns that a malignancy may kill him within a few months. Decisions: treatment? work? how to tell his lover and his family. He remembers the sea and himself as a child. He stares in the mirror. He's cruel: facing death, he pushes people away - what's the point? He visits his grandmother to tell her; on the way, he chats briefly with a waitress. He looks at old photos, visits a childhood tree house. He takes pictures. Returning from his grandmother's, he stops for food and sees the waitress, Jany, again. She makes a request. He returns to an empty flat - his lover has left. Can Jany's proposition give him a way to move past self-pity?",0,0,Le temps qui reste,fr +53042,Alice,2005-05-16,102.0,,,tt0459072,,"In the wake of his daughter's disappearance, a father wallowing in grief feeds his desire to find her with unusual methods.",0,0,Alice,pt +35177,Dinotopia: Quest for the Ruby Sunstone,2005-05-17,75.0,,,tt0372238,,"An Orphaned Boy sets out in search of adventure, but when a shipwreck lands him on an island where Dinosaurs and Humans coexist, he finds not only adventure but a family as well.",0,0,Dinotopia: Quest for the Ruby Sunstone,en +308,Broken Flowers,2005-05-17,105.0,http://brokenflowersmovie.com/broken_flowers,,tt0412019,Sometimes life brings some strange surprises.,"As the devoutly single Don Johnston is dumped by his latest girlfriend, he receives an anonymous pink letter informing him that he has a son who may be looking for him.",10000000,45742101,Broken Flowers,en +12221,Two Drifters,2005-05-18,101.0,,,tt0450470,,"After breaking up with her boyfriend, a woman named Odete (Ana Cristina De Oliveira) descends into madness and claims to be pregnant with the child of Rui's (Nuno Gil) late lover, Pedro (João Carreira). As grief-stricken Rui mourns Pedro's death, Odete tries to transform herself into Pedro.",0,0,Odete,pt +49190,Antarctic Journal,2005-05-19,114.0,,,tt0462703,,"During their journey the expedition led by Captain Choi Do-hyung discovers a journal that was left behind by a British expedition 80 years earlier. The journal was remarkably preserved in a box in the snow and Kim Min-jae, another member of the expedition, gets the job of examining it. It turns out that the two expeditions shared the same goal and soon other strange similarities between them start to show up.",0,6500000,남극일기,ko +36253,The Wayward Cloud,2005-05-19,114.0,,,tt0445760,,"Hsiao-Kang, now working as an adult movie actor, meets Shiang-chyi once again. Meanwhile, the city of Taipei faces a water shortage that makes the sales of watermelons skyrocket.",0,0,天邊一朵雲,zh +61686,Marock,2005-05-20,105.0,,,tt0415147,,A Muslim girl and a Jewish boy fall in love.,0,0,Marock,fr +65579,Dirty Filthy Love,2005-05-24,93.0,,,tt0411291,,A man's life falls apart as a result of his affliction with Obsessive Compulsive Disorder and Tourette's Syndrome in this touching and funny tale.,0,0,Dirty Filthy Love,en +61008,You and Your Stupid Mate,2005-05-24,81.0,,,tt0375222,,"Phillip (Phillips) and Geoffrey (Sampson) are two Aussie larrikins, whose lives centre around running the un-official ""Sons and Surf"" website...",0,0,You and Your Stupid Mate,en +29138,Crossing the Bridge: The Sound of Istanbul,2005-05-27,90.0,,,tt0459242,,"Award-winning director Fatih Akin takes us on a journey through Istanbul, the city that bridges Europe and Asia, and challenges familiar notions of east and west. He looks at the vibrant musical scene which includes traditional Turkish music plus rock and hip-hop.",0,0,Crossing the Bridge: The Sound of Istanbul,en +11421,CRAZY,2005-05-27,127.0,,,tt0401085,"Growing up in this family, you'd have to be... C.R.A.Z.Y.","A story of two love affairs. A father's love for his five sons. And one son's love for his father, a love so strong it compels him to live a lie. That son is Zac Beaulieu, born on the 25th of December 1960, different from all his brothers, but desperate to fit in. During the next 20 years, life takes Zac on a surprising and unexpected journey that ultimately leads him to accept his true nature and, even more importantly, leads his father to love him for who he really is.",0,0,CRAZY,fr +18638,Faith of My Fathers,2005-05-30,90.0,,,tt0444626,,"Faith of My Fathers is based on the story of Lieutenant Commander John McCain's experiences as a prisoner of war in North Vietnam for five and a half years during the Vietnam War, interleaved with his memories of growing up in a heritage rich with military service.",0,0,Faith of My Fathers,en +14147,DeVour,2005-05-31,90.0,,,tt0406706,Don't Get Mad. Get Evil.,Friends become increasingly addicted to a video game that has an evil agenda.,0,0,DeVour,en +9779,The Sisterhood of the Traveling Pants,2005-06-01,119.0,,17368,tt0403508,Laugh. Cry. Share the pants.,"Four best friends (Tibby, Lena, Carmen & Bridget) who buy a mysterious pair of pants that fits each of them, despite their differing sizes, and makes whoever wears them feel fabulous. When faced with the prospect of spending their first summer apart, the pals decide they'll swap the pants so that each girl in turn can enjoy the magic.",25000000,39053061,The Sisterhood of the Traveling Pants,en +118,Charlie and the Chocolate Factory,2005-07-13,115.0,https://www.warnerbros.com/charlie-and-chocolate-factory,,tt0367594,Willy Wonka is semi-sweet and nuts.,"A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.",150000000,474968763,Charlie and the Chocolate Factory,en +59163,Papa,2005-06-01,80.0,,,tt0428940,,"Louis and his Daddy are driving back home. Daddy is a past master at clowning, which does not necessarily make Louis laugh. At times Daddy gets awfully mad, picking on people who don't deserve it. That also does not make Louis laugh. But Daddy IS sweet. He knows how to soothe Louis when he is very very upset. And he can rock-a-bye his baby with a song by Niagara. Daddy has been rather slipshod lately. And ill-shaved. And has had hair-raising nightmares. Louis can burst into tears just because a little girl refuses a sticker he wants to give her. What's wrong with Louis and his Daddy? Written by Guy Bellinger",0,0,Papa,en +921,Cinderella Man,2005-06-02,144.0,http://www.cinderellamanmovie.com/index.php,,tt0352248,One man's extraordinary fight to save the family he loved.,"The true story of boxer, Jim Braddock who, in the 1920’s after his retirement, has a surprise comeback in order to get him and his family out of a socially poor state.",88000000,108539911,Cinderella Man,en +8008,Mouth to Mouth,2005-06-02,101.0,http://mouthtomouthmovie.com/,,tt0383518,Close your eyes and picture the perfect world.,An aimless adolescent (Ellen Page) joins several itinerant misfits who live on the fringe of society and welcome at-risk youths into their fold.,0,0,Mouth to Mouth,en +101908,Shanghai Dreams,2005-06-03,123.0,,,tt0456658,,"In the 1960s, encouraged by the government, a large number of families leave Chinese cities to settle in the poorer regions of the country, in order to develop local industry. The film's main character is a 19 year old girl who lives in the Guizhou province, where her parents have settled. That's where she has grown up, where her friends are and where she first experiences love. But her father believes that their future lies in Shanghai. How can they all keep on living together when they don't share the same dreams?",0,0,青红,zh +9787,Lords of Dogtown,2005-06-03,107.0,,,tt0355702,"They never thought they'd be famous, but they always thought they'd be friends.","The film follows the surf and skateboarding trends that originated in Venice, California during the 1970s.",25000000,13411957,Lords of Dogtown,en +104431,Kept and Dreamless,2005-06-06,94.0,,,tt0365479,,"Florence, a young irresponsible mother and her precocious daughter, Eugenia, have an unusual relationship. The roles between the two are reversed. Florence is totally inept at caring for a daughter, whereas Eugenia, only 10 years old, shows maturity and responsibility far beyond what her age might lead you to suppose.",0,0,Las mantenidas sin sueños,es +58587,Diario de un skin,2005-06-13,80.0,,,tt0454121,,,0,0,Diario de un skin,es +37502,Heaven's Soldiers,2005-06-14,106.0,,,tt0470711,,"Heaven's Soldiers is a 2005 film from South Korea, directed by Min Joon Gi. It is an action and humorous movie shifting back and forth between high tension and comedy, and combining elements of many genres such as war films, time travel and historical drama.",8000000,0,천군,ko +10274,The Deal,2005-06-17,107.0,,,tt0405861,,"A political thriller steeped in illegal oil trading, the Russian Mafia, and governmental cover-ups.",0,0,The Deal,en +1382,Me and You and Everyone We Know,2005-06-17,90.0,http://www.meandyoumovie.com/,,tt0415978,,"The feature film debut by artist Miranda July about a various comic situations and plots that intertwine. One story line is about a father who is ending his marriage and the other story is of a video artist (possibly autobiographical of Miranda July, also played by her) who is desperately trying to get her work in a modern art museum. The film won Caméra d'Or at Cannes.",0,0,Me and You and Everyone We Know,en +245019,The Saviour,2005-06-18,17.0,,,tt0467485,,A young Church elder struggles with his faith when the married woman he has been seeing breaks off their relationship.,0,0,The Saviour,en +14096,The Magician,2005-06-18,85.0,,,tt0461989,For the right money he can make anything disappear,"Following the dealings of a Melbourne-based hitman Ray as seen through the eyes of his ex-neighbour and friend Max, an Italian film student. Max and his camera witness Ray's work life as it unfolds from day to day, giving an insight into a world we rarely see, and at the same time developing an unusual friendship with his subject.",0,0,The Magician,en +48333,Hammerhead,2005-06-18,92.0,,,tt0459392,"Half man, Half Shark, Total Terror.","When he began fusing human and shark DNA, his colleagues laughed at him. Now his creation is taking his revenge, and they aren't laughing anymore.",0,0,Hammerhead,en +165534,Southbounders,2005-06-22,86.0,,,tt0463032,,"A young woman attempts a ""thru-hike"" of the Appalachian Trail, the 2,170 mile footpath wandering the length of the Atlantic seaboard from Maine to Georgia.",0,0,Southbounders,en +65614,Dreaming of Space,2005-06-23,90.0,,,tt0464665,,"A story of a simple, naive Russian man Konek and the people around him: his love and her sister and a mysterious man. The film is set in 1957, time of changes, time of waiting for something big to happen.",2000000,696681,Космос как предчувствие,ru +74,War of the Worlds,2005-06-28,116.0,,,tt0407304,They're already here.,"Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop of his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.",132000000,591739379,War of the Worlds,en +16066,Oyster Farmer,2005-06-30,91.0,,,tt0379918,,A love story about a young man who runs away up an isolated Australian river and gets a job with eighth generation oyster famers.,0,0,Oyster Farmer,en +7233,Rebound,2005-07-01,103.0,,,tt0376108,A comedy where old school ...meets middle school,An acclaimed college hoops coach is demoted to a junior varsity team after a public meltdown.,45000000,16809014,Rebound,en +20968,Sarkar,2005-07-01,123.0,,20970,tt0432047,,"The authority of a man, who runs a parallel government in Mumbai, is challenged. His son rises to face his enemies.",1900000,5900000,Sarkar,hi +36175,Turtles Are Surprisingly Fast Swimmers,2005-07-02,90.0,,,tt0455577,,"Suzume Katagura is an bored housewife, she spends her days doing chores and taking care of her husbands pet turtle. One day she sees an wanted ad for spies, hoping for some excitement she decides to give them a call.",0,0,亀は意外と速く泳ぐ,ja +153102,12 Days of Terror,2005-07-05,86.0,,,tt0373653,,"July of 1916 was a time of record heat, a polio epidemic, and a World War in Europe. But beachgoers in New Jersey are threatened by a even greater terror: a shark that has suddenly developed a taste for human flesh. Starting July 1st and lasting over a period of 12 days, the unidentified shark kills four people and seriously injures a fifth before the attacks stop, and threatens New Jersey's thriving tourist industry. Based on true events, and one of the inspirations behind Peter Benchley's Jaws.",0,0,12 Days of Terror,en +353652,Crossfire: Hate Is Like a Gun,2005-07-05,9.0,,,tt3645848,,"The making of Edward Dmytryk's ""Crossfire""",0,0,Crossfire: Hate Is Like a Gun,en +31450,Pavee Lackeen: The Traveller Girl,2005-07-07,87.0,,,tt0469691,,"An intimate portrait of a resilient and spirited young girl and her proud and dignified family, who are part of Ireland's ""traveller"" community.",0,0,Pavee Lackeen: The Traveller Girl,en +39061,Gie,2005-07-13,147.0,,,tt0459327,,"Gie is a 2005 Indonesian film directed by Riri Riza. The film tells the story of Soe Hok Gie, a graduate from University of Indonesia who is known as an activist and nature lover. The film is based on a diary Catatan Seorang Demonstran written by Soe himself. The plot of this film is an interpretation of the filmmakers, and scenes portraying Soe's private life may be partly fictionalised for dramatisation.",0,0,Gie,id +55027,Dan Aykroyd - Unplugged On UFO's,2005-07-15,81.0,,,tt0470994,,A UFO enthusiast interviews Dan Aykroyd on the subject of extraterrestrials visiting Earth.,0,0,Dan Aykroyd - Unplugged On UFO's,en +39217,Maine Pyaar Kyun Kiya,2005-07-15,145.0,,,tt0451803,"Liar liar, love's on fire","Suicide-prone Sonia believes her boyfriend, Dr. Samir Malhotra, is married to Naina, who he is about to divorce, and she wants to meet her. Samir arranges a meeting, but neglects to inform an annoyed Sonia that he is also the father of two children. Samir attempts to patch things up with visits to Mumbai's Juhu and Dubai's Jumeirah beaches; deals with Sonia's nosy neighbor, Pyare Mohan, while coming to terms with Naina's boyfriends. Things get even more complicated with the entry of Samir's feisty Hoshiarpur-based mom - who is determined to stop the divorce proceedings by hook or by crook.",0,0,Maine Pyaar Kyun Kiya,hi +19495,Nomad: The Warrior,2005-07-17,112.0,,,tt0374089,Courage know no limit,"The Nomad is a historical epic set in 18th-century Kazakhstan. The film is a fictionalised account of the youth and coming-of-age of Ablai Khan, as he grows and fights to defend the fortress at Hazrat-e Turkestan from Dzungar invaders.",25000000,0,Nomad,en +9993,Little Fish,2005-07-19,114.0,,,tt0382810,The past is right here,"Set in the Little Saigon district outside of Sydney, a woman trying to escape her past becomes embroiled in a drug deal.",0,0,Little Fish,en +64268,Dura,2005-07-21,95.0,,,tt0436254,,"Ульяна Тулина необычный человек — во взрослом теле душа странного и наивного ребенка. Ее поступки, импульсивные и нелепые, то смешат, то удивляют, а то и раздражают окружающих. Единственный родной человек, который заботится об Ульяне, — ее сестра-двойняшка Лиза, актриса-неудачница. Хрупкая гармония отношений рушится, когда в доме Тулиных появляется Мужчина. Саша — начинающий писатель, мечтающий прославиться, неожиданно для себя становится нужным одновременно обеим сестрам. Но только одна из них становится героиней, соавтором и музой его нового романа. Однако реальная жизнь — не литературный жанр. Она сама допишет необходимый финал...",0,0,Дура,ru +19082,No Direction Home: Bob Dylan,2005-07-21,208.0,,,tt0367555,Bob Dylan. Songwriter. Rocker. Rebel. Legend.,"A chronicle of Bob Dylan's strange evolution between 1961 and 1966 from folk singer to protest singer to ""voice of a generation"" to rock star.",2000000,0,No Direction Home: Bob Dylan,en +10476,Hustle & Flow,2005-07-22,116.0,,,tt0410097,The music will inspire them. The dream will unite them. This summer get crunk.,"With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.",8000000,23563727,Hustle & Flow,en +10703,Seven Swords,2005-07-25,153.0,,,tt0429078,,Seven warriors come together to protect a village from a diabolical General.,0,0,七劍,zh +67460,We Can Be Heroes,2005-07-27,164.0,,,tt0425674,,"We Can Be Heroes is a mockumentary TV series created and performed by comedian Chris Lilley. It follows the story of five unique Australians, who have each made a large achievement and been nominated by friends and family for the Australian of the Year award.",0,0,We Can Be Heroes,en +10659,Siegfried,2005-07-28,89.0,,,tt0429095,,"The tale of Siegfried, a fearless dragon slayer who wins the heart of Celtic beauty Kriemhild.",0,0,Siegfried,de +4550,Sympathy for Lady Vengeance,2005-07-29,115.0,http://www.lady-vengeance.de/,4563,tt0451094,All she wanted was a peaceful life... they didn't give it.,"After a 13-year imprisonment for the kidnap and murder of a 6 year old boy, beautiful Lee Guem-ja starts seeking revenge on the man that was really responsible for the boy's death. With the help of fellow inmates and reunited with her daughter, she gets closer and closer to her goal. But will her actions lead to the relief she seeks?",0,23803308,친절한 금자씨,ko +33460,Sehar,2005-07-29,0.0,,,tt0477857,,"Ajay Kumar (Warsi) is the newly appointed, honest SSP of Lucknow police. Of his family only his mother (Mulay) remains, and she inspires and motivates him to do the right thing. Ajay tries to crack down on the UP mafia, but more often than not is betrayed by information-leaking local police officials. His boss tries to aid him by shielding him from political pressures, and by getting sanction for",0,0,Sehar,en +175331,Fratricide,2005-07-31,90.0,,,tt0470702,,"Two young Kurdish refugees, recently arrived in Germany struggle to make their way through the harshness of the occidental city. Their encounter with a gang of Turks will rapidly led them into an inevitable tragical spiral filled with death and revenge.",0,0,Brudermord,en +49220,Zozo,2005-08-05,105.0,,,tt0448267,,A Lebanese boy gets separated from his family during the civil war and ends up in Sweden.,5600000,0,Zozo,sv +8292,Four Brothers,2005-08-11,109.0,http://fourbrothersmovie.com,,tt0430105,They came home to bury mom... and her killer,Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.,45000000,92374674,Four Brothers,en +15013,Wah-Wah,2005-08-17,120.0,,,tt0419256,Every family has its own language,"Set at the end of the 1960s, as Swaziland is about to receive independence from United Kingdom, the film follows the young Ralph Compton, at 12, through his parents' traumatic separation, till he's 14. The film is largely based on Richard E. Grant's own experiences as a teenager in Swaziland, where his father was head of education for the British government administration.",0,0,Wah-Wah,en +868,Tsotsi,2005-08-18,94.0,http://www.tsotsimovie.com/,,tt0468565,In this world... Redemption comes just once.,"The South African multi-award winning film about a young South African boy from the ghetto named Tsotsi, meaning Gangster. Tsotsi, who left home as a child to get away from helpless parents, finds a baby in the back seat of a car that he has just stolen. He decides that it his responsibility to take care of the baby and in the process learns that maybe the gangster life isn’t the best way.",3000000,9879971,Tsotsi,af +306323,Homesick,2005-09-12,85.0,,,tt0472536,Drama,"17-year-old Sami has an accident which resulted in him reluctantly sent to closed psychiatric hospital. Sami refuses to speak or show his feelings, even when the nurse Taneli is trying everything in order to understand how the crash really happened. While Sami's and his roommate's Rude's eccentric friendships gradually increases, the truth of past events begin to unravel.",0,0,Koti-Ikävä,fi +261581,Louis C.K.: One Night Stand,2005-08-19,30.0,,,tt0666194,Louis C.K.'s HBO Special One Night Stand,"Boldly original comedian Louis C.K. brings the audience to hysterics in this live HBO stand-up performance. In a blistering routine, the award-winning comic exposes life's most absurd realities with his signature blend of raw wit and twisted wisdom. Named one of the ""Ten Comics to Watch"" by Variety, C.K. won an Emmy for his comedy writing and has appeared regularly on Comedy Central, HBO and many late-night talk shows.",0,0,Louis C.K.: One Night Stand,en +11330,Pusher III: I'm the Angel of Death,2005-08-22,108.0,,203910,tt0425379,I'm the Angel of Death.,"In this third installment of the 'Pusher' trilogy, we follow Milo ('Zlatko Buric'), the drug lord from the two first films. He is aging, he is planning his daughter's 25th birthday and his shipment of heroin turns out to be 10.000 pills of ecstasy. When Milo tries to sell the pills anyway, all Hell breaks loose and his only chance is to ask for help from his ex-henchman and old friend Radovan",0,0,Pusher 3,da +62297,Guernsey,2005-08-25,90.0,,,tt0428608,,Guernsey is the story of a woman who suddenly looks at her own life and wonders how she became miles apart from the people she is closest to.,0,0,Guernsey,nl +16320,Serenity,2005-08-25,119.0,,,tt0379786,Can't stop the signal.,"When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything – or anyone – to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But... the greatest danger of all may be on their ship.",39000000,38869464,Serenity,en +9042,The Cave,2005-08-25,97.0,,,tt0402901,There are places man was never meant to go.,"After a group of biologists discovers a huge network of unexplored caves in Romania and, believing it to be an undisturbed eco-system that has produced a new species, they hire the best American team of underwater cave explorers in the world. While exploring deeper into the underwater caves, a rockslide blocks their exit, and they soon discover a larger carnivorous creature has added them to its food chain.",30000000,15007991,The Cave,en +101838,Game Over,2005-08-26,85.0,,,tt0441627,,...,0,0,Game Over,fi +17926,Undiscovered,2005-08-26,97.0,http://www.undiscoveredfilm.com/,,tt0434424,They Know Each Other By Heart.,A group of aspiring entertainers try to establish careers for themselves in the city of Los Angeles.,9000000,1046166,Undiscovered,en +15022,Dirty Deeds,2005-08-26,87.0,,,tt0407732,10 Dares. 12 Hours. One Wild Night.,"An American Pie-like teen comedy in which a high school senior tries to become the first student in years to complete the Dirty Deeds, an outrageous series of challenges that must be completed by the Homecoming banquet at 9 a.m.",0,0,Dirty Deeds,ru +148327,Novena,2005-08-26,97.0,,,tt0435225,,Two men bond as one recovers from an attack and the other deals with the impending death of his grandmother.,0,0,La Neuvaine,en +21567,Iqbal,2005-08-26,150.0,,,tt0453729,,"This is all about chasing your dreams, no matter what the obstacles. The story involves a young deaf and dumb boy who is crazy about cricket.",0,0,Iqbal,en +6077,13 Tzameti,2005-09-01,93.0,http://www.13-tzameti.com/,,tt0475169,,"Sebastian, a young man, has decided to follow instructions intended for someone else, without knowing where they will take him. Something else he does not know is that Gerard Dorez, a cop on a knife-edge, is tailing him. When he reaches his destination, Sebastian falls into a degenerate, clandestine world of mental chaos behind closed doors in which men gamble on the lives of others men.",0,767311,13 Tzameti,fr +47540,Keep Your Distance,2005-09-02,94.0,,,tt0337656,Everyone you trust has the power to betray you.,"In the perfectly normal town of Louisville, KY, there is a perfectly normal man living the perfect life. David Dailey is a man who has it all: A great career, a community that adores him, and an enduring marriage. But beneath the surface, David's idyllic world is crumbling. He's haunted by a series of mysterious notes that warn of an imminent fall from grace...",2500000,0,Keep Your Distance,en +1420,Breakfast on Pluto,2005-09-03,128.0,http://www.breakfastonpluto.co.uk/,,tt0411195,Same world. Different planet.,"In the 1970s, a foundling lad, Patrick ""Kitten"" Braden, comes of age by leaving his Irish town for London, in part to look for his mother and in part because his trans-gender nature is beyond the town's understanding.",0,0,Breakfast on Pluto,en +8410,The Wild Blue Yonder,2005-09-05,81.0,http://www.wildblueyonder.wernerherzog.com/,,tt0443693,,"An alien narrates the story of his dying planet, his and his people's visitations to Earth and Earth's self-made demise, while human astronauts in space are attempting to find an alternate planet for surviving humans to live on.",0,0,The Wild Blue Yonder,en +154430,Shadow of the Eagle,2005-09-08,0.0,,,tt0437273,,,2075374,0,Kaksipäisen kotkan varjossa,fi +15084,Salaam Namaste,2005-09-09,158.0,,,tt0456165,,"Salaam Namaste is about two Indians who have left their houses to make a life on their own, and how they meet and how they tackle their own relationships and problems and overcome them themselves without their families",2500000,0,Salaam Namaste,hi +44502,The Piano Tuner of Earthquakes,2005-09-09,99.0,,,tt0342882,,Dark fairytale about a demonic doctor who abducts a beautiful opera singer with designs on transforming her into a mechanical nightingale.,0,27953,The Piano Tuner of Earthquakes,en +3933,Corpse Bride,2005-09-09,77.0,http://corpsebridemovie.warnerbros.com/,,tt0121164,There's been a grave misunderstanding.,"Set in a 19th-century european village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.",40000000,117195061,Corpse Bride,en +4913,"Sorry, Haters",2005-09-10,83.0,http://www.sorryhaters2006.com/,,tt0425600,,"Against the anxieties and fears of post-9/11 America, an Arab cab driver picks up a troubled professional woman with unexpected results.",200000,0,"Sorry, Haters",en +19676,These Girls,2005-09-10,92.0,,,tt0439008,,"Based on the humorously edgy play by Vivienne Laxdal, These Girls is the story of three teenage girls who, in turn, seduce and then attempt to share Keith, an older married man. It is a tale of innocence, jealousy and friendship told as a provocative coming-of-age story.",0,0,These Girls,en +12920,Dreamer: Inspired By a True Story,2005-09-10,106.0,,,tt0418647,,Ben Crane believes that a severely injured racehorse deserves another chance. He and his daughter Cale adopt the horse (in fact is a mare)and save it of being sacrificed by the owner.,0,0,Dreamer: Inspired By a True Story,en +199879,Lucid,2005-09-11,0.0,,,tt0434165,,,0,0,Lucid,en +24671,River Queen,2005-09-12,114.0,,,tt0388377,,An intimate story set during the 1860s in which a young Irish woman Sarah and her family find themselves on both sides of the turbulent wars between British and Maori during the British colonization of New Zealand.,0,0,River Queen,en +69,Walk the Line,2005-09-13,136.0,,,tt0358273,Love is a burning thing.,"A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.",28000000,186438883,Walk the Line,en +8382,Today You Die,2005-09-13,92.0,,,tt0431114,,A former thief who is trying to go straight seeks vengeance on those who framed him.,0,0,Today You Die,en +14885,Pooh's Heffalump Halloween Movie,2005-09-13,67.0,,,tt0457437,Celebrate Lumpy's First Halloween.,"It's Halloween in the 100 Acre Wood, and Roo's best new friend, Lumpy, is looking forward to his first time trick-or-treating. That is, until Tigger warns them about the scary Gobloon, who'll turn them into jack-o'-lanterns if he catches them. But if Roo and Lumpy turn the tables on the Gobloon, they get to make a wish! Lumpy and Roo decide to be ""brave together, brave forever"" and catch the Gobloon so they can make their wishes come true.",0,0,Pooh's Heffalump Halloween Movie,en +31021,The Collector,2005-09-14,100.0,http://www.tvp.pl/filmoteka/wypozyczalnia/komornik,,tt0480163,,No overview found.,0,0,Komornik,pl +65044,The Heirloom,2005-09-15,97.0,,,tt0467506,,"A Taiwanese man returns to the island after years abroad when he inherits a house; when he and his fiancé move in, strange things start to happen.",0,0,Zhai bian,zh +13653,The Aura,2005-09-15,134.0,,,tt0420509,,"In neo-noir fashion El Aura narrates in the first person the hallucinating voyage of Espinoza, a quiet, cynical taxidermist, who suffers epilepsy attacks, and is obsessed with committing the perfect crime.",0,0,El Aura,es +49717,God Save the King,2005-09-16,94.0,,,tt0423382,,A story about a young girl who leaves her hometown to pursue her dream of becoming a famous punk artist.,0,0,Tjenare Kungen,en +3291,"Good Night, and Good Luck.",2005-09-16,93.0,http://wip.warnerbros.com/goodnightgoodluck/,,tt0433383,They took on the Government with nothing but the truth.,"The story of journalist, Edward R Murrow's stand against Senator McCarthy's anti-communist witch-hunts in the early 1950s.",7000000,54600000,"Good Night, and Good Luck.",en +20296,Chocolate: Deep Dark Secrets,2005-09-16,200.0,,,tt0454431,,"Christmas Eve, London. While the snow-clad city gets ready to celebrate the festival of peace and joy, a series of bizarre incidents shatter the Christmas calm. A couple of luckless Indians find themselves hauled by the London police and made scapegoats. Or are they?Chocolate unfolds a web of sinister plots, slowly unearthing true and mystifying personalities of seven individuals. Seven high-strung, distinctive people who've chosen to remain in the foreign land hoping to make or break their lives.",0,0,Chocolate: Deep Dark Secrets,en +12076,Elsk meg i morgen,2005-09-23,90.0,,12075,tt0472767,,,0,0,Elsk meg i morgen,no +18189,Dirty Love,2005-09-23,91.0,http://www.wildsideproject.com/site/dirtylove/,,tt0327643,Got dumped?,"A modern day Cinderella story which sees disaster prone Rebecca embark on a journey in search of true love. Betrayed by her boyfriend, Richard and following a palm reader's psychic prophecy, Rebecca goes in search of her one true soul mate.",0,0,Dirty Love,en +142989,A Get2Gether,2005-09-28,98.0,,,tt0493129,,,0,0,A Get2Gether,en +11788,Elizabeth I,2005-09-29,223.0,http://www.hbo.com/films/elizabeth,,tt0465326,,HBO miniseries about the the public and private lives of the later years of Queen Elizabeth I.,0,0,Elizabeth I,en +46729,Fetching Cody,2005-10-01,87.0,,,tt0475271,How far would you go for love?,"Art, a drug-addicted dealer and hustler, arrives at his girlfriend Cody's apartment to find that she has overdosed on heroin. He tries to fix things by traveling back in time in an attempt to prevent her death.",1,0,Fetching Cody,en +53701,Who's Camus Anyway?,2005-10-03,115.0,,,tt0456873,,"A group of eccentric students decide to make a movie. But, when their star suddenly quits, this witty ensemble cast begins to live the film, including murder, deception and true love.",0,0,カミュなんて知らない,ja +129518,Island Guests,2005-10-04,81.0,,,tt0460443,,"""If only these walls could speak and tell us their stories"" Based on the same name novel by Vonne van der Meer, the movie is set on the Dutch island Vlieland, telling the diverse stories of the people visiting cottage Duinroos (Dune rose) over the course of the summer. Against the background of the idyllic nature, the individual stories of the guests develop as their relational perils and personal moments of love, desire, loss and trust show the world as it is. Without knowing, and almost imperceptibly, the visitors' lives intertwine and join into one story.",0,0,Eilandgasten,nl +15906,Barbie and the Magic of Pegasus 3-D,2005-10-05,85.0,,,tt0480345,,"Princess Annika (Barbie) escapes the clutches of the evil wizard, explores the wonders of Cloud Kingdom, and teams up with a magnificent winged horse - who turns out to be her sister, Princess Brietta - to defeat the wizard and break the spells that imprisoned her family.",0,0,Barbie and the Magic of Pegasus 3-D,en +25366,Methadonia,2005-10-06,87.0,http://www.hbo.com/docs/programs/methadonia/index.html,,tt0485777,,"Shot over the course of 18 months in New York City's Lower East Side, METHADONIA sheds light on the inherent flaws of legal methadone treatments for heroin addiction by profiling eight addicts, in various stages of recovery and relapse, who attend the New York Center for Addiction Treatment Services (NYCATS).",0,0,Methadonia,en +26301,The Hunt for the BTK Killer,2005-10-09,82.0,,,tt0475302,,"After 31 years at-large, detectives in Wichita, Kansas hone in on the serial killer known as BTK.",0,0,The Hunt for the BTK Killer,en +268735,A Very Social Secretary,2005-10-10,0.0,http://channel4.com/programmes/a-very-social-secretary,,tt0473719,,Bernard Hill and Victoria Hamilton star in Alistair Beaton's wickedly funny feature-length drama inspired by David Blunkett's private affair held up for very public scrutiny.,0,0,A Very Social Secretary,en +101904,Through the Forest,2005-10-12,65.0,,,tt0477404,,"After the death of Renaud, her boyfriend, Armelle can't possibly take him out of her mind. Her sister advises her to see a medium, in whose house she meets a boy who strangely looks like Renaud...",0,0,À travers la forêt,fr +38332,Kolya - Rolling Stone,2005-10-13,93.0,,415054,tt0791635,,After a few years in a big world Kolya is returning to his village and life in the village is going wild.,0,0,Коля - перекати поле,ru +10070,Feast,2005-10-14,95.0,http://www.feast-movie.com/,98430,tt0426459,,Patrons locked inside of a bar are forced to fight monsters.,0,658573,Feast,en +21481,Twitches,2005-10-14,86.0,,263106,tt0467421,,"Twins separated at birth, Camryn and Alex meet by chance for the first time on their 21st birthday and discover they're witches with the power to save their homeland of Coventry from the evil that threatens it. But when Camryn leaves Alex to face the darkness alone, will Coventry be doomed? Or will the sisters multiply their magic by standing together?",0,0,Twitches,en +250066,American Heist,2014-09-11,94.0,,,tt2923316,Brothers in arms for life.,"Two brothers, both with troubled paths, find themselves in the middle of one last bank job.",10000000,0,American Heist,en +791,The Fog,2005-10-14,100.0,http://www.sonypictures.com/homevideo/thefog/index.html,,tt0432291,Their PAST Has Come Back To HAUNT THEM,"Trapped within an eerie mist, the residents of Antonio Bay have become the unwitting victims of a horrifying vengeance. One hundred years earlier, a ship carrying lepers was purposely lured onto the rocky coastline and sank, drowning all aboard. Now they're back – long-dead mariners who've waited a century for their revenge.",18000000,46201432,The Fog,en +24939,Return of the Living Dead: Rave to the Grave,2005-10-15,86.0,,101471,tt0411806,Dance till you drop... dead.,"A college student creates and sells a drug called 'Z' on campus which resurrects the living dead, who wreak havoc at a Halloween rave.",0,0,Return of the Living Dead: Rave to the Grave,en +14695,Havoc,2005-10-16,85.0,,378268,tt0285175,Too much is never enough.,"A wealthy Los Angeles teen and her superficial friends wants to break out of suburbia and experience Southern California's ""gangsta"" lifestyle. But problems arise when the preppies get in over their heads and provoke the wrath of a violent Latino gang. Suddenly, their role-playing seems a little too real.",9000000,0,Havoc,en +6963,The Weather Man,2005-10-20,101.0,,,tt0384680,Dave Spritz is about to take his best shot . . . at life,"A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.",20000000,12482775,The Weather Man,en +141241,15,2005-10-21,95.0,,,tt0461892,,A love story that happens in the background Revolution in Timișoara.,0,28,15,ro +31048,Sweet Land,2005-10-21,110.0,http://www.sweetlandmovie.com/,,tt0428038,,"Winner of the Audience Award for Best Narrative Feature at the 2005 Hamptons International Film Festival, Sweet Land is a poignant and lyrical celebration of land, love, and the American immigrant experience. Based on Will Weaver’s short story A Gravestone Made of Wheat and shot on location in Southern Minnesota.",0,0,Sweet Land,en +19215,After Innocence,2005-10-23,95.0,,,tt0436039,,"A moving account of the experiences of men exonerated after years, and sometimes decades, in prison following newly found DNA evidence.",0,0,After Innocence,en +269797,"RKO Production 601: The Making of 'Kong, the Eighth Wonder of the World'",2005-10-23,0.0,,,tt0492337,,"An in-depth look at the genesis, production, and legacy of King Kong, one of the most influential films ever made.",0,0,"RKO Production 601: The Making of 'Kong, the Eighth Wonder of the World'",en +35683,Single White Female 2: The Psycho,2005-10-25,93.0,,338282,tt0448120,A roommate with killer instincts.,A warped woman takes deadly measures to help a new roommate get rid of her problems.,2000000,0,Single White Female 2: The Psycho,en +12591,Santa's Slay,2005-10-25,78.0,,,tt0393685,,"Santa Claus is actually a demon who lost a bet with an Angel, so he becomes the giver of toys and happiness. But when the bet is off, he returns to his evil ways.",0,0,Santa's Slay,en +1539,Keine Lieder über Liebe,2005-10-26,98.0,,,tt0448009,,No overview found.,0,0,Keine Lieder über Liebe,de +14217,Reincarnation,2005-10-26,96.0,,,tt0456630,Death Is Only The Beginning,A Japanese actress begins having strange visions and experiences after landing a role in a horror film about a real-life murder spree that took place over forty years ago.,0,0,輪廻,ja +9968,The Big White,2005-10-27,100.0,,,tt0402850,"When you need somebody, anybody will do.","To remedy his financial problems, a travel agent has his eye on a frozen corpse, which just happens to be sought after by two hitmen.",18000000,0,The Big White,en +109671,Maskeli Beşler İntikam Peşinde,2005-10-28,0.0,,,tt0486708,,,0,0,Maskeli Beşler İntikam Peşinde,tr +73772,Greyfriars Bobby,2005-10-29,104.0,,,tt0435597,,This is the true story of a little dog that refused to leave his master's graveside in Edinburgh. The dog visited the grave for years.,0,0,Greyfriars Bobby,en +100450,Trapped in the Closet: Chapters 1-12,2005-11-01,43.0,,19262,tt0491587,,"R. Kelly wakes up in a married woman’s bed, and the husband is on his way home, and they get caught, but the husband has secrets of his own, and it all kind of explodes from there, with more characters being introduced, and everyone is sleeping with everyone, and there are a billion secrets and twists and cliffhangers, and also it’s a musical where R. Kelly voices every character.",0,0,Trapped in the Closet: Chapters 1-12,en +26116,The Mechanik,2005-11-02,94.0,,,tt0435696,,"A Russian ex-hit man is called back to Russia for one last job. This time against his former employees, the Russian mob.",0,0,The Mechanik,en +9982,Chicken Little,2005-11-04,81.0,http://movies.disney.com/chicken-little,,tt0371606,"When it comes to saving the world, it helps to be a little chicken.","When the sky really is falling and sanity has flown the coop, who will rise to save the day? Together with his hysterical band of misfit friends, Chicken Little must hatch a plan to save the planet from alien invasion and prove that the world's biggest hero is a little chicken.",150000000,314432665,Chicken Little,en +39127,Ripley Under Ground,2005-11-06,101.0,,,tt0219171,,"After his friend, a hot young artist, is killed, a resourceful American man living in London covers up the crime and tries to keep the friend's name alive in order to exploit his legacy and reap millions in the process.",0,0,Ripley Under Ground,en +10268,You Are So Beautiful,2005-11-07,97.0,,,tt0450664,,"Aymé Pigrenet, a recently widowed farmer, is eager to find a new wife to help him run his farm. Desperate, he seeks the aid of a local matchmaker who suggest that he go to Romania to find a new wife. There he meets Elena.",0,0,Je vous trouve très beau,fr +58646,OPA!,2005-11-13,100.0,,,tt0460892,The Island ... The Treasure ... The Romance,A modern day treasure hunt for a mystical relic that turns into a love story for all time.,0,6000000,OPA!,en +8053,The Three Burials of Melquiades Estrada,2005-11-17,121.0,,,tt0419294,Nobody is beyond redemption.,"When brash Texas border officer Mike Norton (Barry Pepper) wrongfully kills and buries the friend and ranch hand of Pete Perkins (Tommy Lee Jones), the latter is reminded of a promise he made to bury his friend, Melquiades Estrada (Julio Cesar Cedillo), in his Mexican home town. He kidnaps Norton and exhumes Estrada's corpse, and the odd caravan sets out on horseback for Mexico. As Estrada's body begins to rot, Norton begins to unravel, but Perkins remains determined to honor his vow.",15000000,12036149,The Three Burials of Melquiades Estrada,en +13393,My Father and My Son,2005-11-18,108.0,,,tt0476735,,"A Turkish man, whose wife died while giving birth to his son during a military coup, finally returns home. Estranged from his father for turning his back on the family farm, he takes his 8 year-old and tries to repair relations.",0,0,Babam ve oğlum,tr +27843,Tokyo Zombie,2005-12-10,103.0,,,tt0451954,,"Two Japanese friends accidentally kill their boss and dump his remains in Black Fuji, a mountain/landfill hybrid. This leads to poor results when the chemicals of the landfill mix with the corpse (and many other corpses) to give rise to a zombie infestation in Tokyo.",0,0,東京ゾンビ,ja +64942,Mary,2005-11-18,83.0,,,tt0425236,It takes courage to walk in the truth.,"Following the shooting of a film on the life of Jesus called This Is My Blood, Marie Palesi (Juliette Binoche), the actress who plays Mary Magdalene takes refuge in Jerusalem in search of the truth behind the myth. + The director of the film, Tony Childress (Matthew Modine), who also plays Jesus, can think of only one thing: self-promotion. + In New York, television journalist Ted Younger (Forest Whitaker) presents a programme about the life of Jesus.",0,0,Mary,en +73775,The Quiet Love,2005-11-22,0.0,,,tt0400237,,Two very different love stories cross each other in warm and magical way. A humanistic and yet mysterious film about love and death near the German/Danish border.,0,0,Die blaue Grenze,de +54796,Thicker than Water,2005-11-23,87.0,,,tt0433649,,"After the death of her father, Natalie Travers (Melissa Gilbert) discovers he was married to a rodeo star before he married Natalie’s mother. Upset that her father kept part of his life a secret from her and bewildered over how a prominent judge could fall for a cowgirl, she sets out to find Maggie Mae Jarrett. But Natalie meets her daughter Jessie Mae Jarrett (Lindsay Wagner) who is struggling to keep the wild horses on her land alive and safe.",0,0,Thicker than Water,en +32390,Royal Palace,2005-11-23,100.0,,,tt0424338,,"Eugenia is the queen of an imaginary European country. When her husband dies, quite unexpectedly, the country is left without a king. According to the law, the new king needs to be married so that leaves out the eldest son. Her youngest son, Prince Arnaud is married to the lovely Armelle and they have two young children. They become the future rulers of the kingdom.",0,0,Palais Royal !,fr +10033,Just Friends,2005-11-23,96.0,,,tt0433400,He loves her. She loves him not.,"While visiting his hometown during Christmas, a man comes face-to-face with his old high school crush whom he was best friends with – a woman whose rejection of him turned him into a ferocious womanizer.",0,50817508,Just Friends,en +1833,Rent,2005-11-23,135.0,http://www.sonypictures.com/movies/rent/,,tt0294870,No day but today.,"This rock opera tells the story of one year in the life of a group of bohemians struggling in modern day East Village, New York, USA. The story centers around Mark and Roger, two roommates. While a former tragedy has made Roger numb to life, Mark tries to capture it through his attempts to make a film. In the year that follows, the group deals with love, loss, HIV/AIDS, and modern day life.",40000000,31670620,Rent,en +20558,Scooby-Doo! in Where's My Mummy?,2005-11-24,75.0,,,tt0480461,,Scooby-Doo and the Mystery Inc. gang become involved in a supernatural mystery in Egypt.,0,0,Scooby-Doo! in Where's My Mummy?,en +61950,The Fine Art of Love: Mine Ha-Ha,2005-11-25,102.0,,,tt0425186,,"A group of young girls are brought up in a college within dark forests and gloomy lakes. Young Hidalla and her friends Irene, Vera, Blanka, Melusine and Rain are brought up in an isolated world: the girls don't know anything about live outside the college's high walls. At the age of 16, some of them start asking questions about their origins, their parents and the true purposes of the Headmistresses strict rules. When two of them disappear mysteriously, the initial fairytale atmosphere grows more and more eerie...",0,0,The Fine Art of Love: Mine Ha-Ha,en +189556,Svyato,2005-11-27,33.0,,,tt0811095,,"In Russian, ""Svyato"" means ""happy"". But it is also a nickname for Svyatoslav, the son of director Kossakovsky, who for two years covered mirrors from Svyato. For the first time in his life, Svyato is going to watch himself on a mirror.",10000,0,Svyato,es +85125,I for India,2005-11-29,70.0,,,tt0490984,,"Drawing from 40 years' worth of film footage and tape recordings her father sent to family members in India, filmmaker Sandhya Suri crafts a personal history that also explores the experiences of Indian expatriates. After moving to Great Britain in 1965, Yash Pal Suri chronicled his discoveries about his new home along with his feelings of alienation. The fruits of his labor appear in this film that received a Grand Jury Prize nod at Sundance.",0,0,I for India,en +38546,Three Wise Guys,2005-11-30,90.0,,,tt0473103,,"One December day around Christmastime I am in the city of Las Vegas talking to Harry the Horse about this and that, when I hear this yarn about a citizen by the name of Murray Crown (Tom Arnold), who runs a clip joint which he prefers to call a casino. It seems that this Murray Crown not only has the John Laws breathing down his neck, but it is also a fact that he is married to this doll called Shirley (Katey Sagal), who is known far and wide as the green-eyed type.",0,0,Three Wise Guys,en +108712,I Remember,2005-12-01,108.0,,,tt0492967,You will not forget,"The memories of Guiga, from early childhood to young adulthood: his family, relatives, friends, fears, dreams and reality in a still provincial city of Salvador, Bahia, from the 50s to the 70s.",0,0,Eu Me Lembro,pt +44458,Perhaps Love,2005-12-01,108.0,,,tt0454914,,A love triangle develops during the making of a musical in mainland China.,0,0,如果·愛,zh +64972,The Kid & I,2005-12-02,93.0,,,tt0416891,Get a little action.,"Aaron Roman (Gores) is a teenager with cerebral palsy who dreams of starring in a big-time action movie. When his father (Mantegna) grants Aaron his wish for his 18th birthday, he experiences the reality a bit hard to manage.",5,0,The Kid & I,en +20583,Love's Long Journey,2005-12-03,88.0,,97919,tt0486420,,"Missie's surprise pregnancy sets her on a new course that is both thrilling and terrifying. After all the planning and dreaming, she and her husband, Willie, have headed west in a covered wagon, leaving behind the prairie home of Missie's parents. Now, caught between the excitement of the new adventure and the pain of not knowing when she'll see her family again, Missie copes with the challenges, and cherishes the rewards, of her new homestead.",0,0,Love's Long Journey,en +16412,Chasing Christmas,2005-12-04,81.0,,,tt0480008,,"Jack Cameron is a single dad that decides not to observe Christmas because his wife left him around that time. The ghosts of Christmas past and present try and get Jack to relent, but they screw up their jobs and send themselves on a wild ride through time showing up at various times in Jack's past. As they try and rectify the timeline and get back to the real present, some things are not what they used to be.",0,0,Chasing Christmas,en +1904,Memoirs of a Geisha,2005-12-06,145.0,http://www.sonypictures.com/homevideo/memoirsofageisha/index.html,,tt0397535,"My world is as forbidden as it is fragile; without its mysteries, it cannot survive.","A sweeping romantic epic set in Japan in the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.",85000000,162242962,Memoirs of a Geisha,en +30082,Forty Shades of Blue,2005-12-07,108.0,,,tt0395543,,A Russian woman living in Memphis with a much older rock-n-roll legend experiences a personal awakening when her husband's estranged son comes to visit.,1500000,0,Forty Shades of Blue,en +72822,Olé !,2005-12-07,97.0,,,tt0443159,,,0,0,Olé !,fr +84848,Blood,2006-02-01,90.0,http://www.mantarraya.com/index.php/fuseaction/site.movie/movID/4/lg/en/,,tt0445694,,"Diego's job is counting people as they enter a large government building. After work, he and his wife Blanca lie on the couch...",478000,0,Sangre,es +99738,Seven Invisible Men,2005-12-10,119.0,,,tt0471911,,"The most unusual of all Bartas films, the pre-apocalyptic Seven Invisible Men (2005) starts off like a genre movie – a bunch of robbers trying to evade the police after stealing and selling off a car. It is only after about half an hour, when one of them arrives at a farm that is near completely severed from the rest of the world, that the film moves into the world of Bartas.",0,0,Septyni nematomi zmones,en +362026,Magnificent 7,2005-12-13,85.0,,,tt0471019,,"Inspired by the life of Jacqui Jackson. Helena Bonham Carter stars as Maggi, a mother with seven children - three 'normal' daughters and four sons who are each, in one form or another, autistic.",0,0,Magnificent 7,en +13733,Le Cactus,2005-12-14,0.0,,,tt0464059,,,0,0,Le Cactus,fr +7088,Christmas in Boston,2005-12-14,136.0,,,tt0497025,,Gina and Seth have been pen pals for 13 years and now will have the chance to meet. Both used their best friends pictures to send to each other and now will let their friends meet. True love is found in the end for all.,0,0,Christmas in Boston,en +148,The Secret Life of Words,2005-12-15,112.0,,,tt0430576,,A touching story of a deaf girl who is sent to an oil rig to take care of a man who has been blinded in a terrible accident. The girl has a special ability to communicate with the men on board and especially with her patient as they share intimate moments together that will change their lives forever.,5000000,0,The Secret Life of Words,en +25890,Looking for Comedy in the Muslim World,2005-12-15,98.0,,,tt0433116,,"To improve its relations with Muslim countries, the United States government sends comedian Albert Brooks to south Asia to write a report on what makes followers of Islam laugh.",0,0,Looking for Comedy in the Muslim World,en +327389,Cigarette Burns,2005-12-16,59.0,http://www.theofficialjohncarpenter.com/masters-of-horror-cigarette-burns/,,tt0643109,,"With a torrid past that haunts him, a movie theatre owner is hired to search for the only existing print of a film so notorious that its single screening caused the viewers to become homicidally insane.",0,0,Cigarette Burns,en +18506,Once Upon A Mattress,2005-12-18,90.0,,,tt0426148,,"Queen Aggravain has ruled that none may marry until her son, Prince Dauntless marries. However, she has managed to sabotage every princess that come along. When Sir Harry and Lady Larken learn that they are going to be parents, wed or not, he goes off to the swamps and brings back Princess Winnifred (""Fred"" to her friends).",0,0,Once Upon A Mattress,en +11227,Angel-A,2005-12-21,91.0,http://www.angela-lefilm.com/,,tt0473753,,A beautiful and mysterious woman helps an inept scam artist get his game together...but is their meeting purely coincidence?,15000000,0,Angel-A,fr +30634,Organize İşler,2005-12-22,106.0,http://www.organizeisler.com,,tt0470883,,,20000,0,Organize İşler,tr +14226,Riding Alone for Thousands of Miles,2005-12-22,107.0,,,tt0437447,,"Takada, a Japanese fisherman has been estranged from his son for many years, but when the son is diagnosed with terminal cancer his daughter-in-law, Rie, summons him to the hospital. Through a series of obstacles and relationships, he is brought unexpectedly closer to both an understanding of himself and of his son.",7500000,3752325,千里走单骑,zh +67174,Exodus: Tales from the Enchanted Kingdom,2005-12-25,106.0,,,tt0479660,,"Ordinary humans led by King Bantayan are being annihilated by the all-powerful evil king Bagulbol and his creatures of the dark. To end their tribulation, mankind’s leaders paid a mercenary with exceptional fighting skills to defend them. That mercenary is Exodus. Nearing their extinction, King Bantayan and the leaders of men dispatched Exodus on a quest to capture five elementals to aid them in the final battle against King Bagulbol.",0,0,Exodus: Tales from the Enchanted Kingdom,tl +9899,The Producers,2005-12-25,134.0,,,tt0395251,,"After putting together another Broadway flop, down-on-his-luck producer Max Bialystock teams up with timid accountant Leo Bloom in a get-rich-quick scheme to put on the world's worst show.",45000000,38058335,The Producers,en +28535,Crazy for Christmas,2005-12-25,90.0,,,tt0479152,,"A girl loses her parents and husband and is left driving a limo trying to get by raising her young son. An interesting but strange rich man hires her limo on Christmas eve and has her drive him to various ice rinks where he gives out $100 bills to the people there. The news media catches on and starts following him. Some interesting twists follow, but the movie is somewhat predictable.",0,0,Crazy for Christmas,en +15073,Cargo,2005-12-26,90.0,,,tt0409793,,A young backpacker gets into some trouble in Africa and stows away on a cargo ship heading to Europe.,0,0,Cargo,en +44746,My Family and Other Animals,2005-12-27,90.0,,,tt0482552,,An English family relocates to sunny Greece in the months before WWII.,0,0,My Family and Other Animals,en +155941,Blue Swallow,2005-12-29,133.0,,,tt0409811,,"Based on the true story Park Kyung-Won, one of the first Korean female pilots.",0,0,청연,ko +14263,Hip-Hop: Beyond Beats & Rhymes,2006-01-01,61.0,,,tt0976039,,,0,0,Hip-Hop: Beyond Beats & Rhymes,en +31512,Memories of Matsuko,2006-01-01,130.0,,,tt0768120,,"While combing through the belongings of his recently deceased aunt, Matsuko, nephew Sho pieces together the crucial events that sank Matsuko's life into a despairing tragedy.",0,0,嫌われ松子の一生,ja +77583,Long-Term Relationship,2006-01-01,97.0,,,tt0494253,,"Tired of the unsatisfying singles scene, Glenn (Matthew Montgomery) answers a personal ad and meets Adam (Windham Beacham), a handsome Southern man seeking a long-term relationship. The two hit it off immediately, but their initial attraction is soon put to the test. Glenn's gay friends say he'd be happier playing the field again, but his straight pals encourage him to work at the budding relationship in director Rob Williams's romantic comedy.",0,0,Long-Term Relationship,en +10055,Room 6,2006-01-01,94.0,,,tt0451187,,The school teacher Amy has been proposed by her boyfriend Nick early in the morning and she promises her answer later in the afternoon...,0,0,Room 6,en +60002,Room 314,2006-01-01,0.0,,,tt0823651,How many stories can one hotel room tell?,How many stories can one hotel room tell? Watch as five couples in different stages of relationships reveal what they really want to each other.,0,0,Room 314,en +172673,Instructions for a Light & Sound Machine,2006-01-01,16.0,,,tt0493428,,An attempt to transform a Roman Western into a Greek tragedy.,0,0,Instructions for a Light & Sound Machine,en +113882,Islander,2006-01-01,100.0,,,tt0819723,,"After a tragic accident at sea, Eben Cole loses his family, friends and stature in his island fishing community. He returns to the island an outcast but determined to win back the way of life he fought so hard to protect. Set against the stunning backdrop of the Maine coast, Islander captures the grit and integrity of this hard working community and celebrates man's unerring need for redemption.",0,0,Islander,en +14804,Vitus,2006-02-02,100.0,,,tt0478829,,Vitus tells the story of a highly-gifted boy (played by real-life piano prodigy Teo Gheorghiu) whose parents have demanding and ambitious plans for him.,0,0,Vitus,de +21141,Simon Says,2006-01-01,87.0,,,tt0458480,,"Five college friends choose to spend their vacation debauching at the riverside. They find the perfect place to camp out, but end up crossing paths with twin brothers, Simon and Stanley. The twins then begins to knock off the campers in some extremely creative (and extremely gruesome) ways.",0,0,Simon Says,en +311021,The Uncommon Making of Petulia,2006-01-01,14.0,,,tt0893381,,A short film about the origin and making of the 1968 film Petulia.,0,0,The Uncommon Making of Petulia,en +308557,SEVILLA → (∞) 06,2006-01-01,13.0,,,tt1157712,,Sevilla as seen from the Air,0,0,SEVILLA → (∞) 06,en +44105,Destiny,2006-01-01,103.0,,,tt0875595,,"Bekir is in love with Ugur, who loves Zagor, who loves to commit crimes.",0,0,Kader,tr +30139,Phat Girlz,2006-01-01,99.0,,,tt0490196,,Two plus-sized ladies meet the men of their dreams in the most unexpected of ways.,0,0,Phat Girlz,en +35724,The Genius Club,2006-01-01,119.0,,,tt0499484,Solve it.,"Seven geniuses, with IQs over 200, are plucked from their lives on Christmas Eve to try to solve the world's problems in one night",0,0,The Genius Club,en +21435,French Fried Vacation 3,2006-01-01,95.0,,52835,tt0445800,,"After the Club Med and skiing, what happened to the Bronzés 27 years later? Early response: the same, and worse.",0,0,Les Bronzés 3 Amis pour la vie,fr +285594,Making 'The New World',2006-01-01,82.0,,,tt0804504,,An overview of the making of Terrence Malick's The New World (2005).,0,0,Making 'The New World',en +15414,Land of the Blind,2006-01-01,110.0,,,tt0433405,,A soldier recounts his relationship with a famous political prisoner attempting to overthrow their country's authoritarian government.,0,0,Land of the Blind,en +26518,Old Joy,2006-01-01,73.0,,,tt0468526,,Two old pals reunite for a camping trip in Oregon's Cascade Mountains.,300000,0,Old Joy,en +46891,Find Love,2006-01-01,0.0,,,tt0443507,,Find Love is the story of two strangers who aren't looking for love but find it anyway. It is a Twenty-Four hour romance ride that truthfully captures that first feeling of falling for someone.,500000,0,Find Love,en +10041,Broken,2006-01-01,110.0,,,tt0454839,,"After dating a wonderful man, Hope comes back home, sees her daughter Jennifer and goes to sleep. She wakes-up in the woods with a psychopath...",810000,0,Broken,en +45205,Wool 100%,2006-01-01,99.0,,,tt0884819,,"A drama of two aging women who live a solitary life collecting discarded items from a nearby town. One day they return home to find a young girl knitting a red sweater in their house. Each time the girl finishes her dress, she promptly unravels it and the mystery unfolds. Directed by Mai Tominaga.",0,0,ウール100%,ja +40465,Chain Reaction,2006-01-01,101.0,,,tt0460742,For the undead... there's no place like home.,"A prison bus with over a dozen criminals on board has an accident and rams another car, in which Dr. Douglas Madsen was on his way home. Most of the prisoners die. Four of them survive, one of them severely injured. After having killed all the guards, they head for the woods. They take Dr. Douglas Madsen hostage. Suddenly a huge house appears in the middle of the woods. The leader of the group, Arthur, emphasizes that he will kill Douglas and every single member of the ""family"" if his wounded brother would die. Meanwhile some members of the family show strange behavior, and very soon mayhem breaks loose.",1066480,0,Chain Reaction,en +38065,Salvage,2006-01-01,80.0,,,tt0492754,What if every day you relived your own murder?,"Claire Parker is going to die. At the hands of a sadistic and depraved killer, she will endure a terrifying, unimaginable brutal death--and it will all happen again. After being beaten, dragged, sliced, and stabbed, Claire awakens at work--where it all began--untouched and unharmed. But the hellish ordeal is far from over. The madman is back and he's ready for more blood...",25000,0,Salvage,en +19103,As You Like It,2006-01-01,127.0,http://www.hbo.com/films/asyoulikeit/,,tt0450972,,"Witty, playful and utterly magical, the story is a compelling romantic adventure in which Rosalind and Orlando's celebrated courtship is played out against a backdrop of political rivalry, banishment and exile in the Forest of Arden - set in 19th-century Japan.",0,0,As You Like It,en +27696,The Thirsting,2006-01-01,90.0,,,tt0765481,,No overview found.,350000,0,The Thirsting,en +21959,Mushi-Shi: The Movie,2006-01-01,131.0,,,tt0862946,,"Mushi are beings in touch with the essence of life, far more basic and pure than normal living things. Most humans are incapable of perceiving Mushi and are oblivious to their existence, but there are a few who possess the ability to see and interact with Mushi. One such person is Ginko who travels from place to place to research Mushi and aid people suffering from problems caused by them.",0,0,蟲師,ja +68750,Rapid Fire,2006-01-01,90.0,,,tt0426138,The explosive true story!,"A desperate band of Militia men attempts a daylight bank robbery in the sleepy semi-rural City of Norco, California, and leads the local Police on the longest, most violent running gun battle in Law Enforcement history. Based on the true events.",0,0,Rapid Fire,en +13355,Scooby-Doo! Pirates Ahoy!,2006-01-01,80.0,,,tt0867418,,Ghost pirates attack the cruise ship that Scooby and the gang are vacationing on.,0,0,Scooby-Doo! Pirates Ahoy!,en +160297,The Slanted Screen,2006-01-03,60.0,,,tt0760185,,"From silent film star Sessue Hayakawa to Harold and Kumar Go to Whitecastle, the Slanted Screen examines the portrayal Asian men in film and television, and how new filmmakers are now re-defining age-old stereotypes.",0,0,The Slanted Screen,en +34588,If I Were You,2006-01-06,108.0,,369380,tt0448927,,"The publicist Claudio and the housewife and choral teacher Helena have been married for many years, but they do not understand and respect the feelings and view point of the partner. Claudio sees Helena as a shopper and ""little teacher of a choral"" and Helena sees Claudio as an insensitive and rough man. On the night before the fiftieth anniversary of Claudio, they changed places with each other.",0,0,Se eu fosse você,pt +126227,Desolation Canyon,2006-01-06,80.0,,,tt0463959,,"Following a bank robbery, the responsible gang stops by the home of one of their members and kidnaps his son. The sheriff enlists the aid of a retired gunfighter, who is the boy's grandfather. On the gang's trail, they find there are two bounty hunters also after the gang for crimes in Mexico.",0,0,Desolation Canyon,en +9900,Grandma's Boy,2006-01-06,94.0,,,tt0456554,A movie that proves you're never too old to come of age.,"Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.",0,6538177,Grandma's Boy,en +33003,Maxed Out,2006-03-10,90.0,,,tt0762117,,"Maxed Out takes us on a journey deep inside the American debt-style, where everything seems okay as long as the minimum monthly payment arrives on time. Sure, most of us may have that sinking feeling that something isn't quite right, but we're told not to worry. After all, there's always more credit!",0,0,Maxed Out,en +7304,Running Scared,2006-01-06,122.0,https://www.warnerbros.com/running-scared,,tt0404390,Every bullet leaves a trail.,"After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first.",17000000,9500000,Running Scared,en +14945,Origin: Spirits of the Past,2006-01-07,95.0,http://www.gin-iro.jp/,,tt0493247,"Together, we can face the future...",It is 300 years into the future. Earth's environment had been devastated by mankind's own foolish plans and humankind is beleaguered by the sentient forests which they have awoken. The world balance is tipped when a young boy named Agito stumbles across a machine that glowed in a strange blue hue inside a forbidden sanctuary.,0,0,銀色の髪のアギト,ja +7547,Come Early Morning,2006-01-10,97.0,,,tt0457308,"Before you fall in love, you need to love yourself.","Lucy wakes up in bed with a stranger and obviously from a night of drinking. She checks out and pays for the motel room on her account. Through her grandmother, she finds out her father is in town and pays him a visit. She agrees to go to his new church.",6000000,0,Come Early Morning,en +32532,Everything Will Be OK,2006-01-10,17.0,,,tt0887734,,A series of dark and troubling events forces Bill to reckon with the meaning of his life - or lack thereof.,0,0,Everything Will Be OK,en +834,Underworld: Evolution,2006-01-12,106.0,http://www.sonypictures.com/movies/underworldawakening/,2326,tt0401855,"My God. Brother, what have you done?","As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.",50000000,111340801,Underworld: Evolution,en +9918,Glory Road,2006-01-13,118.0,,,tt0385726,The incredible story of the team that changed the game forever.,"In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.",0,42647449,Glory Road,en +65873,The N Word,2006-01-16,0.0,,,tt0417003,,"The film explores the history of the word throughout its inception to present day. Woven into the narrative are poetry, music, and commentary from celebrities about their personal experiences with the word and their viewpoints. Each perspective is unique, as is each experience... some are much more comfortable with the word than others.",0,0,The N Word,en +9756,Half Light,2006-01-17,110.0,,,tt0412798,When the darkness falls the dead will rise.,"Rachel Carson, a best-selling crime novelist, is devastated and filled with guilt over the accidental death of her son. Hoping that a change of scenery will help alleviate her suffering, she leaves her home in the city and moves into a vacant country house owned by a friend and begins a relationship with charming local Angus. But, just as her life is taking a turn for the better, Rachel realizes she's being romanced by a ghost, leading her to doubt her own sanity.",0,0,Half Light,en +1969,Bandidas,2006-01-18,93.0,,,tt0416496,Being BAD never looked so GOOD!,"Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance…and a few good heists.",35000000,10496317,Bandidas,es +81312,Just Love Me,2006-01-20,98.0,,,tt0498199,,"Modern-day Warsaw shines in this romantic comedy about the love life of a young, hip architect. In his break-out role, popular Polish television star Maciej Zakoscielny plays the handsome young professional, who is torn between two women.",0,0,Tylko mnie kochaj,pl +62045,Only God Knows,2006-01-20,115.0,,,tt0402505,,"On a lark in Tijuana, a carefree Brazilian art student crosses paths with a brooding Mexican journalist, sparking a cascade of events across both Mexico and Brazil. As Dolores and Damián discover an intimate love and a mysterious spiritual heritage, they struggle with ever more costly choices.",0,0,Sólo Dios sabe,es +10947,High School Musical,2006-01-20,98.0,http://tv.disney.go.com/disneychannel/originalmovies/highschoolmusical/index.html,87253,tt0475293,This School Rocks Like No Other!,"Troy (Zac Efron), the popular captain of the basketball team, and Gabriella (Vanessa Anne Hudgens), the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school's musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself. And it's all set to fun tunes and very cool dance moves!",4200000,0,High School Musical,en +64792,The Red Shoes,2006-01-20,108.0,,,tt0468683,,"A woman who finds a pair of pink high heels on a subway platform soon realizes that jealousy, greed, and death follow them wherever they go.",0,0,분홍신,ko +26882,Bugcrush,2006-01-20,36.0,,,tt0492940,,A teenager's infatuation with the new bad boy at school leads him onto a dark path.,0,0,Bugcrush,en +89116,The Professor and His Beloved Equation,2006-01-21,117.0,http://hakase-movie.com/,,tt0498505,,"This is the story between single mother housekeeper and mathematics professor,who has a brain damage.",5000000,0,博士の愛した数式,ja +8199,Dreamland,2006-01-23,88.0,,,tt0417614,,A young woman who lives in a desert trailer park must choose between caring for her hapless father and sick friend or fulfilling her own destiny.,0,0,Dreamland,en +15664,Right at Your Door,2006-01-23,96.0,,,tt0458367,,"A dirty bomb goes off in Los Angeles, jamming freeways and spreading a toxic cloud.",0,2043704,Right at Your Door,en +86700,Zodiac: The Race Begins...,2006-01-26,90.0,,,tt0780660,,"Ringo the Rat (voice of Tom Arnold) and his pal Oriole the Ox compete in a big race, and discover that persistence and teamwork are just as important as speed when it comes to crossing the finish line first. Determined to thwart the plans of her long time enemy, the Jade Emperor, she sets forth to prevent the success of the Race be impeding the 12 chosen ones.",0,0,The Race Begins,en +13205,Bambi II,2006-01-26,72.0,http://movies.disney.com/bambi-2,87250,tt0447854,A Son's Courage. A Father's Love.,"Return to the forest and join Bambi as he reunites with his father, The Great Prince, who must now raise the young fawn on his own. But in the adventure of a lifetime, the proud parent discovers there is much he can learn from his spirited young son.",0,0,Bambi II,en +7549,Fearless,2006-01-26,103.0,,,tt0446059,Mastering others is strength. Mastering yourself makes you fearless.,"Huo Yuan Jia became the most famous martial arts fighter in all of China at the turn of the 20th Century. Huo faced personal tragedy but ultimately fought his way out of darkness, defining the true spirit of martial arts and also inspiring his nation. The son of a great fighter who didn't wish for his child to follow in his footsteps, Huo resolves to teach himself how to fight - and win.",0,6971266,霍元甲,zh +38327,My best enemy,2006-03-10,110.0,,,tt0486138,,"When a man fires a hotel maid for stealing, the woman's son gets his revenge.",0,0,Il mio miglior nemico,it +10053,When a Stranger Calls,2006-02-03,87.0,http://www.sonypictures.com/movies/whenastrangercalls/site/,276838,tt0455857,"Whatever You Do, Don't Answer The Phone.","Far away from the site of a gruesome murder, a teenager named Jill Johnson arrives at a luxurious home for a baby-sitting job. With the children fast asleep, she settles in for what she expects to be an ordinary evening. Soon, the ringing of a phone and the frightening words of a sadistic caller turn Jill's routine experience into a night of terror.",15000000,66966987,When a Stranger Calls,en +9286,Final Destination 3,2006-02-10,93.0,,8864,tt0414982,This Ride Will Be The Death Of You.,"A student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself – which seeks out those who escaped their fate.",25000000,117719158,Final Destination 3,en +107525,Saippuaprinssi,2006-02-10,0.0,,,tt0460557,,,1300000,0,Saippuaprinssi,fi +300,The Science of Sleep,2006-02-11,105.0,http://www.lasciencedesreves-lefilm.com/accueil.htm,,tt0354899,Close your eyes. Open your heart.,A man entranced by his dreams and imagination is lovestruck with a French woman and feels he can show her his world.,6000000,9524340,La science des rêves,fr +22093,Broken Sky,2006-02-14,140.0,http://www.elcielodividido.com/,,tt0783695,,"First-love movie involving love triangle. Gerardo is deeply in love with longtime lover Jonas. When Jonas falls for a stranger he met at a local nightclub, heartbroken Gerardo soon seeks solace in the arms of Sergio (Alejandro Rojo). Despite other interests, Gerardo and Jonas can't bring themselves to end it.",0,0,El cielo dividido,es +4441,Candy,2006-02-15,116.0,http://www.dendyfilms.com.au/candy/,,tt0424880,,"A poet falls in love with an art student, who gravitates to his bohemian lifestyle -- and his love of heroin. Hooked as much on one another as they are on the drug, their relationship alternates between states of oblivion, self-destruction, and despair.",0,2077763,Candy,en +347807,Fight Club: Members Only,2006-02-17,140.0,,,tt0456413,This winter... party in a club... that is more than drinks and dance...,Four friends head off to Bombay and get involved in the mother and father of all gang wars.,0,0,Fight Club: Members Only,hi +9959,Freedomland,2006-02-17,113.0,http://www.sonypictures.com/homevideo/freedomland/,,tt0349467,The Truth Is Hiding Where No One Dares To Look.,A black police detective must solve a strange case of a kidnapped boy and deal with a big racial protest.,37665000,14655628,Freedomland,en +14609,Ultimate Avengers,2006-02-21,72.0,,286904,tt0491703,,"When a nuclear missile was fired at Washington in 1945, Captain America managed to detonate it in the upper atmosphere. But then he fell miles into the icy depths of the North Atlantic, where he remained lost for over sixty years. But now, with the world facing the very same evil, Captain America must rise again as our last hope for survival.",0,6700000,Ultimate Avengers,en +25784,Journey from the Fall,2006-02-22,135.0,http://www.journeyfromthefall.com/home.aspx,,tt0433398,,"Thirteen years after the end of the Vietnam War, a family who was tragically affected by the war are forced to emigrate to America.",1300000,639000,Vượt Sóng,vi +3549,After the Wedding,2006-02-24,124.0,,,tt0457655,,"A manager of an orphanage in India is sent to Copenhagen, Denmark, where he discovers a life-altering family secret.",0,0,Efter brylluppet,da +24432,Doogal,2006-02-24,85.0,http://www.doogalmovie.com/,,tt0763304,Things are about to get hairy.,"This is the story of Doogal, an adorable candy-loving mutt who goes on a mission to save the world.",0,0,Doogal,en +317,Grbavica: The Land of My Dreams,2006-03-01,90.0,,,tt0464029,,A woman and her daughter struggle to make their way through the aftermath of the Balkan war.,0,0,Grbavica,bs +13185,Kidulthood,2006-03-03,89.0,http://www.kidulthood.co.uk/,159603,tt0435680,Before adulthood comes...,A day in the life of a group of troubled 15-year-olds growing up in west London.,994000,165000,Kidulthood,en +9551,Dieter - The Movie,2006-03-04,85.0,,,tt0433985,,"Dieters grandma knew it from the start. This guy will be special one. She should be right. Even as a child Dieter shows an enormous power when it is necessary to enforce his will. He quickly learn that you can not only impress the girls, but also make a lot of money as a musician. He understands that the success is mainly a question of the postage costs and a healthy liver. That you may not always tell the truth, but you should always have something lying on the high edge.",6907750,0,Dieter - Der Film,de +11204,Dresden,2006-03-05,180.0,,,tt0461658,,"At a Dresden hospital in 1945, nurse Anna Mauth (Felicitas Woll) cares for badly injured British pilot Robert Newman (John Light), whom Anna believes to be a German deserter. As Allied forces close in, Anna grows close to Robert despite her engagement to Dr. Alexander Wenninger (Benjamin Sadler). The gripping historical romance won a 2006 German Television Award.",0,0,Dresden,de +55424,Essaye-moi,2006-03-06,90.0,,,tt0473910,,"Quand Yves-Marie, 9 ans, demande à Jacqueline, qui a son âge ""Epouse-moi"", elle répond par une pirouette ""Le jour où tu vas dans les étoiles, je te donne ma main.""",0,0,Essaye-moi,fr +9904,The Wild,2006-03-06,94.0,http://www.disney.com/thewild,,tt0405469,Start spreading the newspaper.,"An adolescent lion is accidentally shipped from the New York Zoo to Africa. Now running free, his zoo pals must put aside their differences to help bring him back.",80000000,37384046,The Wild,en +76268,My Son,2006-03-07,79.0,,,tt0446370,Tragedy strikes a young boy and his over-protective mother.,"Julien and his mum care for each other very much. But Julien has committed a deadly sin: he is growing into a teenager! Worse, he has found himself a girlfriend of his age. ""Mummy"" is not going to tolerate such an ignominy. Julien is HER baby and will remain HERS for ever, encouraged in her ""crusade"" by her bovine husband and barely thwarted by the more courageous interventions of Suzanne, Julien's sympathetic big sister.",0,0,Mon fils à Moi,fr +8588,Shooting Dogs,2006-03-08,115.0,,,tt0420901,What would you risk to make a difference?,"Two westerners, a priest and a teacher find themselves in the middle of the Rwandan genocide and face a moral dilemna. Do they place themselves in danger and protect the refugees, or escape the country with their lives? Based on a true story.",0,0,Shooting Dogs,en +14569,I-See-You.Com,2006-03-08,92.0,http://www.i-see-you.com/,,tt0489085,,A 17-year-old boy buys mini-cameras and displays the footage online at I-see-you.com. The cash rolls in as the site becomes a major hit. Everyone seems to have fun until it all comes crashing down....,6200000,0,I-See-You.Com,en +6877,Failure to Launch,2006-03-10,97.0,,,tt0427229,"To leave the nest, some men just need a little push.","Tripp, an attractive man in his thirties, is still living with his parents Al and Sue. Tripp's best friends Demo and Ace are also still living in their parents' homes and seem proud of it. Al and Sue are not happy, however, and are fascinated when friends whose adult son has recently moved away from home reveal they hired an expert to arrange the matter and couldn't be happier with the result.",50000000,128406887,Failure to Launch,en +84827,The Life of Reilly,2006-03-12,84.0,,,tt0498366,,Charles Nelson Reilly's biographic one-man play.,0,0,The Life of Reilly,en +13285,Barbie Fairytopia: Mermaidia,2006-03-14,75.0,,411859,tt0775425,,"In this animated follow-up to Fairytopia, Elina (played by Barbie) enlists the help of a mermaid, Nori, to save her friend Nalu, a merman prince who has been captured by the wicked Laverna.",0,0,Barbie Fairytopia: Mermaidia,en +19342,All in,2006-03-14,98.0,http://www.themovieallin.com/,,tt0475217,,Six medical students with unique talents pool their resources to win the World Series of Poker.,0,0,All in,en +36229,3° kälter,2006-03-16,104.0,,,tt0435593,,No overview found.,0,0,3° kälter,de +48116,Love Sick,2006-03-16,86.0,,,tt0484437,,"Love. It just happens. No rules. It may look sick, but it's deep and it hurts. For everyone, Alex and Kiki are just good friends. They happen to be two girls experiencing another kind of love. For their family, Kiki and Sandu are sister and brother who sometimes fight. They happen to be lovers. Love Sick is about their stories.",0,0,Legături bolnăvicioase,ro +33534,Nikitich and The Dragon,2006-03-16,65.0,http://dobrinya.3bogatirya.ru/about/,122123,tt0465967,,"Dobrinya Nikitich goes on a quest to save the royal niece and finds out whether his old friend Zmey Gorinich is loyal to him. During the adventures, he is accompanied by the royal messenger who's in love with the royal niece.",4500000,3468423,Добрыня Никитич и Змей Горыныч,ru +9389,Renaissance,2006-03-16,105.0,,,tt0386741,Paris 2054. Live forever or die trying,"To find Ilona and unlock the secrets of her disappearance, Karas must plunge deep into the parallel worlds of corporate espionage, organized crime and genetic research - where the truth imprisons whoever finds it first and miracles can be bought but at a great price.",18000000,1831348,Renaissance,fr +9950,Find Me Guilty,2006-03-16,125.0,,,tt0419749,,"Based on the true story of Jack DiNorscio, a mobster who defended himself in court for what would be the longest mafia trial in U.S. history.",13000000,2636637,Find Me Guilty,en +12763,Take the Lead,2006-03-17,108.0,,,tt0446046,Never Follow,"A former professional dancer volunteers to teach dance in the New York public school system and, while his background first clashes with his students' tastes, together they create a completely new style of dance. Based on the story of ballroom dancer, Pierre Dulane.",30000000,34742066,Take the Lead,en +9655,She's the Man,2006-03-17,105.0,,,tt0454945,"If you wanna chase your dream, sometimes you gotta break the rules.","Viola Johnson is in a real jam. Complications threaten her scheme to pose as her twin brother, Sebastian, and take his place at a new boarding school. She falls in love with her handsome roommate, Duke, who loves beautiful Olivia, who has fallen for Sebastian! As if that were not enough, Viola's twin returns from London ahead of schedule but has no idea that his sister has already replaced him on campus.",20000000,33889159,She's the Man,en +37419,What's a Human Anyway?,2006-03-17,0.0,,,tt0488400,,"In an apartment building where neighbors, friends, and family are living in close quarters, three male protagonists encounter three phases of manhood in Turkish society. Directors Reha Erdem's light touch and slyly amusing style do not miss the opportunity to illuminate some serious points in a strictly patriarchal society.",0,0,Korkuyorum Anne & İnsan Nedir Ki?,tr +93511,Walkout,2006-03-18,110.0,,,tt0452703,Reading. Writing. Revolution.,"Walkout is the true story of a young Mexican American high school teacher, Sal Castro. He mentors a group of students in East Los Angeles, when the students decide to stage a peaceful walkout to protest the injustices of the public school system. Set against the background of the civil rights movement of 1968, it is a story of courage and the fight for justice and empowerment.",9500000,0,Walkout,en +260399,Building a Broken Mousetrap,2006-03-21,61.0,,,tt0855739,,A film by Jem Cohen,0,0,Building a Broken Mousetrap,en +97548,Family Law,2006-03-23,102.0,,,tt0474622,,"A man in his thirties does not want to be like his father, but that seems to be unavoidable.",0,0,Derecho de familia,es +4134,Het zwijgen,2006-03-23,90.0,http://www.hetzwijgen.nl/,,tt0481976,,No overview found.,0,0,Het zwijgen,en +1838,We Shall Overcome,2006-03-24,105.0,,,tt0425235,,A drama about a boy who's inspired by Dr. Martin Luther King Jr. and challenges repressive school authority in 1969 Denmark.,0,0,Drømmen,da +13529,Daft Punk's Electroma,2006-03-24,74.0,,,tt0800022,,"Follows the history of two robots, the members of Daft Punk, on their quest to become human.",0,0,Daft Punk's Electroma,en +15639,Larry the Cable Guy: Health Inspector,2006-03-24,89.0,,,tt0462395,,A slovenly cable repairman becomes a big-city health inspector and is tasked with uncovering the source of a food poisoning epidemic.,0,0,Larry the Cable Guy: Health Inspector,en +189472,La dama boba,2006-03-24,0.0,,,tt0467867,,Comedy about a fool woman that in reality is clever and fools everybody.,0,0,La dama boba,en +2180,Heartbreak Hotel,2006-03-24,101.0,http://www.schwedischfuerfortgeschrittene.de/,,tt0785002,,"Two very different women, both in their 40s with grown-up children, are ready to go on with their lives and find love again.",0,0,Heartbreak Hotel,sv +24801,Cow Belles,2006-03-24,90.0,,,tt0489007,,"In order to learn how to be responsible, two wealthy teen sisters are forced to work in the family business by their exasperated father. When company funds goes missing, it's up to the girls to save the day.",0,0,Cow Belles,en +103433,Hillside Cannibals,2006-03-28,90.0,,,tt0494712,,A group of teenagers in the desert become the prey of cannibalistic inbreds who live in the nearby hillside.,0,0,Hillside Cannibals,en +13338,Sione's Wedding,2006-03-29,97.0,http://www.sioneswedding.com/,,tt0464184,,"Meet best friends Michael, Albert, Stanley and Sefa; the ladies' man, the good boy, the weird one and the party boy. They're staring down the barrel of their thirtieth birthdays, but still act as if they're sixteen; they get drunk, they chase the wrong women and they have a remarkable record of misbehaving and causing chaos at every wedding they attend. But now Michael's younger brother Sione is getting married, and everything is about to change. Sione is their boy, the kid they used to look after, who grew up while they were still partying. And to ensure his big day isn't spoiled by his boys and their idiot antics, Sione has issued an ultimatum; the guys all have to bring dates to the wedding. And not just any dates; real girlfriends, someone they've made a commitment to. They have one month. So just how hard can it be to get a date for your best boy's wedding?",0,0,Sione's Wedding,en +13689,Peaceful Warrior,2006-03-30,120.0,http://www.thepeacefulwarriormovie.com/,,tt0438315,There are no ordinary moments.,A chance encounter with a stranger changes the life of a college gymnast.,0,0,Peaceful Warrior,en +13960,ATL,2006-03-31,105.0,,,tt0466856,A New American Story,"As four friends prepare for life after high school, different challenges bring about turning points in each of their lives. The dramas unfold and resolve at their local rollerskating rink, Cascade.",20000000,21170563,ATL,en +136366,Fugu & Tako,2012-09-21,10.0,,,tt2266184,Friendship can be fishy.,Two Japanese salary men who's lives literally transform when one of them eats a live puffer fish in a sushi bar.,0,0,Fugu & Tako,en +36615,Little Red Flowers,2006-04-08,92.0,,,tt0492473,,"Liang is a four-year-old little rebel, possessed of a pair of luminous eyes and a precociously indomitable will. His father deposits him at a well-appointed residential kindergarten in post-1949 Beijing, since his parents are often away. Life at the kindergarten appears rich and colourful, made up of a variety of cheerfully sunny rituals and games meant to train these children to be good members of society.",0,0,Kan shang qu hen mei,zh +10011,Abominable,2006-04-10,94.0,,,tt0402743,,"A man, crippled in an accident, returns to the woods after rehabilitation, certain that he'll not see Bigfoot again.",0,0,Abominable,en +31421,The Gymnast,2006-04-11,96.0,,,tt0473074,Rise Above.,The stunning Dreya Weber stars as a former top gymnast who discovers love and a new life path when she teams up with a dancer (played by former L.A. Lakers cheerleader Addie Yungmee) for an ambitious Las Vegas aerial act show.,0,0,The Gymnast,en +4257,Scary Movie 4,2006-04-13,83.0,,4246,tt0362120,Bury the grudge. Burn the village. See the saw.,"Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien ""Tr-iPods"" are invading the world and she has to uncover the secret in order to stop them.",45000000,178262620,Scary Movie 4,en +306411,Hee Porgi Kunachi,2006-04-14,0.0,,,tt0833463,,"Rejected and shunned by 35 prospective grooms as well as her very own family respectively, overweight Mumbai-based Sushila Sawant moves out, finds a job with Hindustan Bank and starts to live independently. When loneliness overtakes her, she visits Dr. Patki's dispensary, and through an unknown sperm donor, becomes pregnant; subsequently gives birth to a baby girl, Gauri and ensures she gets a good education. Years later, Gauri has blossomed into a beautiful young woman, and has fallen in love with wealthy Anand Deshmukh. Sushila finds out, disapproves at first, but relents when Gauri threatens to elope, and visits the Deshmukhs to fix this alliance. Things do not go as planned as the later refuse to give their permission as there is no male parent involved.",0,0,Hee Porgi Kunachi,en +142966,"Dave Attell: Hey, Your Mouth's Not Pregnant!",2006-04-20,48.0,,,tt2047709,,"Standup special recorded at The Funny Bone in Newport, Kentucky.",0,0,"Dave Attell: Hey, Your Mouth's Not Pregnant!",en +117790,Northern Light,2006-04-20,85.0,,,tt0495167,,A drama based around a boxing school owner and his son.,0,0,Langer Licht,nl +64736,Piter FM,2006-04-20,85.0,,,tt0813541,,"Lyrical story about two young people, Masha and Maxim, who have to decide what to do.",0,0,Piter FM,en +56491,In Her Line of Fire,2006-04-21,88.0,,,tt0487156,Behind Enemy Lines No Man Can Stop Her. Only One Woman Can Touch Her.,"When the Vice President's plane goes down near a remote Pacific island, he is kidnapped by rebel forces and held for ransom. It is up to his female Secret Service agent and a press secretary to infiltrate the camp and save him.",1000000,0,In Her Line of Fire,en +99819,The Great Match,2006-04-21,88.0,,,tt0476240,,A comedy about the attempts of tribal groups around the world to watch a soccer match.,0,0,La gran final,es +18843,Dr. Dolittle 3,2006-04-25,95.0,,3169,tt0481513,,"Lisa Dolittle sends her daughter to 'Durango', a Dude Ranch, to find herself. While there, she uses her talent to talk to the animals in order to save Durango from being taken over by a neighboring Ranch.",0,0,Dr. Dolittle 3,en +14505,Bachelor Party Vegas,2006-04-25,91.0,,,tt0432373,This is one weekend they will never forget!,A planned evening of debauchery in Las Vegas to celebrate their best friend's wedding goes horribly -- but hilariously -- wrong for five average guys.,0,0,Bachelor Party Vegas,en +24624,The Detonator,2006-04-25,91.0,,,tt0345461,,"Sonni Griffith, a top US Secret Agent must protect a witness as he crosses Europe.",15000000,0,The Detonator,en +14041,Civic Duty,2006-04-26,98.0,,,tt0446298,,"An American accountant bombarded with cable news and the media's obsession with terrorist plots in the post 9-11 world, receives a jolt when an unattached Islamic graduate student moves in next door.",0,0,Civic Duty,en +1899,The Chinese Botanist's Daughters,2006-04-26,95.0,http://www.lesfillesdubotaniste.com/,,tt0425985,,At the house of a famous Chinese botanist teacher his daughter and a female intern fall in love with each other - a forbidden love that must be kept secret.,3910000,0,Les Filles Du Botaniste,fr +1914,FC Venus,2006-04-26,95.0,,,tt0487027,,No overview found.,0,0,FC Venus,de +14761,Cocaine Cowboys,2006-04-26,118.0,http://www.magpictures.com/profile.aspx?id=9833910c-fd4a-4fcb-a734-b3d252473a03,376970,tt0380268,How Miami became the cocaine capital of the United States!,"In the 1980s, ruthless Colombian cocaine barons invaded Miami with a brand of violence unseen in this country since Prohibition-era Chicago - and it put the city on the map. ""Cocaine Cowboys"" is the true story of how Miami became the drug, murder and cash capital of the United States, told by the people who made it all happen.",0,163000,Cocaine Cowboys,en +351862,Blue Blood,2006-04-26,95.0,,,tt0799948,,What makes mild mannered intellectuals join the Oxford University Boxing Club? This film follows five novices becoming fighters. (Storyville),0,0,Blue Blood,en +11908,Hatchet,2006-04-27,83.0,http://www.hatchetmovie.com/,124901,tt0422401,Stay out of the swamp.,"When a group of tourists on a New Orleans haunted swamp tour find themselves stranded in the wilderness, their evening of fun and spooks turns into a horrific nightmare.",0,0,Hatchet,en +23843,The Listening,2006-04-28,105.0,,,tt0427461,,"Estranged by the degree of corporate influence within the largest U.S. listening station in the world, an aging NSA officer defects and mounts a clandestine counter-listening station high in the Italian alps.",0,0,In ascolto - The Listening,en +118015,The Saddest Boy in the World,2006-04-28,13.0,,,tt0806170,,"Timothy Higgins, the saddest boy in the world, prepares to hang himself at his ninth birthday party.",0,0,The Saddest Boy in the World,en +18206,Alone With Her,2006-04-28,78.0,,,tt0472259,Anytime. Anywhere. He's watching.,"The harrowing story of a disturbed young man's attempts to win the affections of an unsuspecting young woman. When Doug first sees Amy, he instantly falls for her and begins to watch her every move, going so far as to set up spy cameras in her apartment. However, as his fascination grows into obsession he's no longer satisfied with just watching.",1000000,10018,Alone With Her,en +24397,Kiss Me Again,2006-04-28,103.0,,,tt0436460,,"A married couple decides to test the boundaries of their relationship with a seductive Spanish woman. When an unlikely relationship ensues, all three are forced to rethink their definition of love.",0,0,Kiss Me Again,en +11404,Driving Lessons,2006-04-30,98.0,,,tt0446687,,"A shy teenage boy trying to escape the influence of his domineering mother, has his world changed when he begins to work for a retired actress.",0,0,Driving Lessons,en +8014,Valley of Flowers,2006-07-15,120.0,,,tt0392883,,"A Himalayan legend of a love struggling against the inevitability of death, an astonishing tale spanning from the early 19th century mountain existence, to hectic, bustling modern day Tokyo.",6000000,0,Valley of Flowers,en +17236,Whirlygirl,2006-05-02,99.0,,,tt0364745,,After a run in with a hot exotic dancer one wintry night straight-laced prep school student James will find himself on the ride of his life. Risking his future he follows this mysterious woman to New York City - ditching school dodging cops and partying at hot nightclubs along the way.,0,0,Whirlygirl,en +60153,Hi Way,2006-05-02,89.0,http://www.kinoswiat.pl/film_hiway.asp,,tt0794290,You gotta see it two to three times,"Two young aspiring filmmakers, director Jaco and cameraman Pablo, travel from Katowice to Warsaw. During their journey, they talk about life and movies.",0,0,Hi Way,en +16083,First Snow,2006-05-05,101.0,,,tt0432289,,A psychic's ominous reading sends a man into a tailspin.,0,382267,First Snow,en +30535,Along the Ridge,2006-05-05,108.0,,,tt0456041,,A young father and his two children struggle to find harmony after his wife leaves them for another man.,0,0,Anche libero va bene,en +21927,Dark Corners,2006-05-10,92.0,,,tt0485376,Terror Breeds in the Shadows of the Soul,A troubled young woman (Birch) wakes up one day as a different person - someone who is stalked by creatures.,0,0,Dark Corners,en +10025,Just My Luck,2006-05-12,103.0,,,tt0397078,Everything changed in the wink of an eye.,"Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.",28000000,38159905,Just My Luck,en +10063,The Breed,2006-05-17,90.0,,,tt0455362,Let the manhunt begin.,"Brothers John and Matt have inherited an island cabin from their recently deceased uncle. Along with Matt's girlfriend, Nicki, and other mutual friends, the siblings travel to the cabin for a relaxing weekend getaway. But, not long after arriving, the group is besieged by ravenous dogs. They watch in horror as another vacationer, Luke, is eaten alive. Soon, they discover a training facility where the dogs have been bred to kill.",0,1675484,The Breed,en +12526,Bug,2006-05-19,102.0,,,tt0470705,First they send in their drone... Then they find their queen.,"A lonely waitress with a tragic past, Agnes rooms in a run-down motel, living in fear of her abusive, recently paroled ex-husband. But when Agnes begins a tentative romance with Peter, an eccentric, nervous drifter, she starts to feel hopeful again - until the first bugs arrive...",4000000,8059140,Bug,en +267523,Printed Rainbow,2006-05-20,15.0,,,tt0938780,,A matchbox collection unites a lonely woman and her cat.,0,0,Printed Rainbow,en +17566,Brave Story,2006-05-22,112.0,,,tt0778631,,Jr. High School Student Wataru and his friends like playing in an abandond building and looking for ghosts. However it seems he is not the only one. Another mysterious student Mitsuru shows Wataru that there is a magical door to another world where one can go and get the Goddess of Fortune to grant one wish! When tragedy strikes Wataru's family he decides to open the door for himself.,0,0,ブレイブ ストーリー,ja +10004,Desperation,2006-05-23,131.0,,,tt0129871,"In this town, there are no accidents.","When a sheriff arrests a writer, a family, a couple, and a hitchiker and throws them in a jail cell in the deserted town of Desperation, they must fight for their lives.",0,0,Desperation,en +76012,The Da Vinci Treasure,2006-05-23,91.0,http://www.theasylum.cc/product.php?id=119,,tt0810817,,"An anthropologist must unlock the code hidden in the works of Leonardo Da Vinci in order to find the greatest treasure ever, one that could change Christianity forever.",850,0,The Da Vinci Treasure,de +1896,Salvador (Puig Antich),2006-05-23,137.0,http://www.salvadorfilm.com/,,tt0445691,,No overview found.,0,0,Salvador (Puig Antich),en +13979,Day Night Day Night,2006-05-25,94.0,,,tt0499455,,"A 19 year-old girl prepares to become a suicide bomber in Times Square. She speaks with no accent so it's impossible to pinpoint her ethnicity. And we never learn why she made her decision. We don't know whom she represents, what she believes in--we only know she believes it absolutely.",0,0,Day Night Day Night,en +2295,Clerks II,2006-05-25,97.0,,182813,tt0424345,With No Power Comes No Responsibility,"A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.",5000000,26888376,Clerks II,en +13318,The Bothersome Man,2006-05-26,90.0,,,tt0808185,,"Forty-year-old Andreas arrives in a strange city with no memory of how he got there. He is presented with a job, an apartment - even a wife. But before long, Andreas notices that something is wrong. Andreas makes an attempt to escape the city, but he discovers there's no way out. Andreas meets Hugo, who has found a crack in a wall in his cellar. Beautiful music streams out from the crack. Maybe it leads to ""the other side""? A new plan for escape is hatched.",0,0,Den brysomme mannen,no +33563,Bickford Shmeckler's Cool Ideas,2006-06-02,79.0,http://www.bickfordmovie.com,,tt0421045,"Solving the mysteries of the universe, one girl at a time.","When his journal of bright ideas is stolen, college freshman Bickford Schmeckler (Fugit) has to blanket the campus in order to locate it.",0,0,Bickford Shmeckler's Cool Ideas,en +278901,Korgoth of Barbaria,2006-06-03,22.0,,,tt0810644,,"In a dark future wasteland, the great cities have risen and fallen, primordial beasts have reclaimed the wilderness and thieves and savages populate sparse, dirty towns. From the frozen north emerges a warrior known as Korgoth, and his merciless savagery may be his only key to survival.",0,0,Korgoth of Barbaria,en +64499,Quinceañera,2006-06-05,90.0,,,tt0451176,Life's no walk in the park,"As Magdalena's 15th birthday approaches, her simple, blissful life is complicated by the discovery that she's pregnant. Kicked out of her house, she finds a new family with her great-granduncle and gay cousin.",0,0,Quinceañera,it +354133,Zombeak,2006-06-06,,,,tt0462640,,,0,0,Zombeak,da +126832,Stan,2006-06-06,59.0,,,tt0791338,,"Stanley Laurel's last visit to Oliver Hardy, as originally told in Neil Brand's radio play.",0,0,Stan,en +65839,It Doesn't Hurt Me,2006-06-08,101.0,,,tt0477323,,"Three friends are in the entrance of a luxury home in the heart of the city. They are young, full of strength and energy, they have the talent, skill and thirst for life and ... - well, they have all but one. But money...",0,1110566,Mne Ne Bolno,ru +20359,Phir Hera Pheri,2006-06-09,155.0,,142022,tt0419058,,"Babu Rao, Raju and Shyam, are living happily after having risen from rags to riches. Still, money brings the joy of riches and with it the greed to make more money - and so, with a don as an unknowing investor, Raju initiates a new game.",0,0,Phir Hera Pheri,en +1819,"You, Me and Dupree",2006-07-14,108.0,http://www.youmeanddupree.com/,,tt0463034,Two's company. Dupree's a crowd.,"After standing in as best man for his longtime friend Carl Petersen, Randy Dupree loses his job, becomes a barfly and attaches himself to the newlywed couple almost permanently -- as their houseguest. But the longer Dupree camps out on their couch, the closer he gets to Carl's bride, Molly, leaving the frustrated groom wondering when his pal will be moving out.",54000000,130431368,"You, Me and Dupree",en +49577,Free Floating,2006-06-10,101.0,,,tt0875122,,"""Free Floating"" is a melodrama with elements of comedy about a young lad from an ordinary provincial town like many in Russia, with just one kindergarten, one school, one factory. As a result, one grows up here never facing the alternative as to what to choose, for everything is preordained. Leonid is an ordinary lad who, like his peers, goes to discos, dances with girls and picks fights with the local riff-raff later. Everything is going well for him, as his life is totally predictable. But one day the factory closes down and he becomes disoriented. For the first time ever, he is to make a choice on his own and think seriously about what he would like to do...",0,0,Свободное плавание,ru +24479,"Look, Up in the Sky: The Amazing Story of Superman",2006-06-12,115.0,,,tt0499516,,"The history of the comic book superhero, Superman in his various media incarnations.",0,0,"Look, Up in the Sky: The Amazing Story of Superman",en +24409,Nightmare Man,2006-06-13,89.0,,,tt0478216,,"After receiving a mysterious demonic African mask in the mail, Ellen Morris is attacked by a ""being"" she refers to as THE NIGHTMARE MAN. Her doctors and husband, William believe Ellen is a paranoid schizophrenic and needs to spend some quality time at a mental facility for further examination.",0,0,Nightmare Man,en +96011,Touch the Top of the World,2006-06-18,89.0,,,tt0491811,,The story of the first blind man ever to reach the summit of Mount Everest,0,0,Touch the Top of the World,en +26808,Beau Brummell: This Charming Man,2006-06-19,78.0,http://www.bbc.co.uk/bbcfour/cinema/features/beau-brummell.shtml,,tt0788026,,"This BBC historical drama stars James Purefoy as Beau Brummell, the original sharp-dressed dandy of 18th-century London. A socialite responsible for inventing the modern suit, Brummell befriends and restyles Prince Regent of Wales.",0,0,Beau Brummell: This Charming Man,en +36883,Midnight Movies: From the Margin to the Mainstream,2006-06-20,86.0,,,tt0457414,,"From 1970-1977, six low budget films shown at midnight transformed the way we make and watch films.",0,0,Midnight Movies: From the Margin to the Mainstream,en +58,Pirates of the Caribbean: Dead Man's Chest,2006-06-20,151.0,http://disney.go.com/disneypictures/pirates/,295,tt0383574,Jack is back!,"Captain Jack Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.",200000000,1065659812,Pirates of the Caribbean: Dead Man's Chest,en +64850,Mr. Average,2006-06-21,90.0,,,tt0402378,,"As they prepare to test products for a multinational corporation, a marketing company targets a typical guy as their guinea pig.",0,0,Comme tout le monde,fr +1116,The Wind That Shakes the Barley,2006-06-23,124.0,,,tt0460989,,"In 1920s Ireland young doctor Damien O'Donovan prepares to depart for a new job in a London hospital. As he says his goodbyes at a friend's farm, British Black and Tans arrive, and a young man is killed. Damien joins his brother Teddy in the Irish Republican Army, but political events are soon set in motion that tear the brothers apart.",6500000,22889018,The Wind That Shakes the Barley,en +1294,Four Minutes,2006-06-23,112.0,,,tt0461694,,"Jenny is young. Her life is over. She killed someone. And she would do it again. When an 80-year-old piano teacher discovers the girl’s secret, her brutality and her dreams, she decides to transform her pupil into the musical wunderkind she once was.",1400000,0,Vier Minuten,de +65795,The Education of Fairies,2006-06-23,103.0,,,tt0485634,,A man's life is turned upside down after he is abandoned by the woman he loves.,0,0,La educación de las hadas,es +32740,Krrish,2006-06-23,154.0,,246091,tt0432637,,"Krishna (Roshan) is born with magical powers - a legacy from his father. Priya (Chopra) comes into his life and becomes his world. When she beckons him to Singapore, he follows. In Singapore, Dr. Siddhant Arya (Shah), the megalomaniac scientist is on the verge of changing the future forever. Only one man stands between Dr. Siddharth Arya and his destructive dreams. To block his ruthless ambitions -- Krishna must become Krrish.",0,0,कृष,hi +17940,Android Apocalypse,2006-06-24,95.0,,,tt0470023,,"Machines have taken over, but left humans thinking that they are still the ones in charge. The androids need humans because of the human brain fluid; without it the android brains can't work. Until the mad scientist finds out how to make this brain fluid artificially that is.",1000000,0,Android Apocalypse,en +13484,The Foot Fist Way,2006-06-24,85.0,http://www.thefootfistway.com/,,tt0492619,,"An inept taekwondo instructor struggles with marital troubles and an unhealthy obsession with fellow taekwondo enthusiast Chuck ""The Truck"" Williams.",79000,245000,The Foot Fist Way,en +16432,Day of Wrath,2006-06-27,109.0,,,tt0353357,,"At the height of the Spanish Inquisition, high-ranking noblemen begin dropping like flies, with alarming frequency and unexplained violence. But can local 16th-century sheriff Ruy de Mendoza (Christopher Lambert) discern who's responsible when no one wants to cooperate? After all, before Mendoza can even identify the bodies, the crime scenes are mysteriously cleared -- and the villagers pretend the murders never happened.",0,0,Day of Wrath,en +1452,Superman Returns,2006-06-28,154.0,http://www.superman.com,8537,tt0348150,,"Superman returns to discover his 5-year absence has allowed Lex Luthor to walk free, and that those he was closest too felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the Man of Steel.",270000000,391081192,Superman Returns,en +20092,Corporate,2006-07-07,142.0,,,tt0488381,,Two corporate giants compete in order to recklessly maximize their respective profits.,0,0,Corporate,en +288101,"All Blossoms Again: Pedro Costa, Director",2006-07-10,78.0,,,tt0869155,,"With this movie, Aurélien Gerbault invites us to know the portuguese filmmaker Pedro Costa and to witness the process of shooting of his movie Colossal Youth (2006). The nature of Costa's cinema is revealed to us: the criation of an intimate space in the hardness of reality.",0,0,"Tout refleurit: Pedro Costa, cinéaste",en +86254,Crash Landing,2006-07-11,88.0,,,tt0385622,"A deadly standoff at 30,000 feet...",When a hostage situation arises on-board a private plane with the daughter of a billionaire on-board. Major John Masters (Sabato Jr.) teams up with Captain Williams (Michael Paré) to stop the terrorist and land the plane.,0,0,Crash Landing,en +37213,Lovely Complex,2006-07-12,99.0,,,tt0810415,,"Koizumi Risa an unusually tall high school girl, meets the ""vertically challenged"" young man Otani Atsushi. They find common ground in height anxieties and interests. Risa (Ema Fujisawa), a tall Japanese girl, gets rejected by a boy because she is taller than him. Otani (Teppei Koike), a short Japanese guy, gets rejected by a girl because he is shorter than her. Obviously these two would make the oddest of couples and would never be a good match for each other right? Well love doesn’t always follow such logic as Love Complex shows.",0,0,ラブ★コン,ja +9914,Shadow Man,2006-09-06,91.0,,,tt0448114,,An intelligence operative discovers that no one is what they seem in the shadowy world of espionage.,0,0,Shadow Man,en +14069,The Girl Who Leapt Through Time,2006-07-15,98.0,,,tt0808506,,"When 17-year-old Makoto Konno gains the ability to, quite literally, ""leap"" backwards through time, she immediately sets about improving her grades and preventing personal mishaps. However, she soon realises that changing the past isn't as simple as it seems, and eventually, will have to rely on her new powers to shape the future of herself and her friends.",0,3800000,時をかける少女,ja +71732,The Right of the Weakest,2006-07-19,116.0,,,tt0454536,,,0,0,La raison du plus faible,fr +35639,K3 en het IJsprinsesje,2006-07-19,70.0,http://www.k3enhetijsprinsesje.nl/,245321,tt0812265,,"Karen, Kristel en Kathleen krijgen een uitnodiging van koning Flurkentijn en diens vrouw, die afkomstig zijn uit een sprookjesrijk, om op de verjaardag van prinses Fleur te zingen. De prinses gedraagt zich echter als een verwend nest en is niet onder de indruk van de zangkunsten van het drietal. Maar wat is er nu precies aan de hand met prinses Fleur? Karen, Kristen en Kathleen besluiten om dit uit te zoeken.",0,0,K3 en het IJsprinsesje,nl +21794,In a Dark Place,2006-07-21,95.0,,,tt0460435,,"The disturbed arts teacher, Anna Veigh, is hired by Mr. Laing as a governess to raise Flora and her brother Miles. Anna believes that the ghosts of the former governess, Miss Jessel, and housekeeper, Peter Quint, are in the property haunting the children, and she decides to help them to face the spirits and get their souls free",0,0,In a Dark Place,en +4641,Read It and Weep,2006-07-21,90.0,,,tt0494716,,A young girl turns into an A-List celebrity over night when her private journal is accidently published and becomes a best-seller.,0,0,Read It and Weep,en +9297,Monster House,2006-07-21,91.0,http://www.sonypictures.com/movies/monsterhouse/,,tt0385880,The House is . . . ALIVE!,"Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.",75000000,140175006,Monster House,en +31985,Lightspeed,2006-07-22,90.0,,,tt0822827,,Government agent Daniel Leight has his radiation treatments sabotaged. He soon finds that he can now move at super speeds but only by risking metabolic damage which could prove to be fatal. 'Lightspeed' must now use his powers to go after old friend turned terrorist who is now a mutant half-snake called Python.,0,0,Lightspeed,en +72592,Honey and Clover,2006-07-22,117.0,,,tt0810400,,"Adapted from the popular manga of the same name, director Masahiro Takada's coming of age drama follows five Hama Art College students as they prepare to venture out into the real world on a great voyage of self-discovery.",0,0,ハチミツとクローバー,ja +35451,Love on Sunday,2006-07-22,89.0,,,tt0875130,,Akira had to transfer schools upon graduation because of her father's job. She was reluctant to move because of her secret love for Nao...,0,0,恋する日曜日,ja +50126,Fallen,2006-07-23,84.0,,32153,tt0775362,A prophecy. A destiny. A fallen angel.,"For high schooler Aaron Corbett, turning 18 means becoming not just a man but a nephilim, too -- half human, half angel, with supernatural abilities.",0,0,Fallen,en +773,Little Miss Sunshine,2006-07-26,102.0,http://www.foxsearchlight.com/littlemisssunshine/,,tt0449059,A family on the verge of a breakdown,"A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.",8000000,100523181,Little Miss Sunshine,en +82,Miami Vice,2006-07-27,134.0,,,tt0430357,No Law. No Rules. No Order.,Miami Vice is a feature film based on the 1980s action drama TV series. The film tells the story of vice detectives Crockett and Tubbs and how their personal and professional lives are dangerously getting mixed.,135000000,163794509,Miami Vice,en +13934,Mater and the Ghostlight,2006-07-27,7.0,http://www.pixar.com/short_films/Home-Entertainment-Shorts/Mater-and-the-Ghostlight,,tt0901686,,"Mater, the rusty but trusty tow truck from Cars, spends a day in Radiator Springs playing scary pranks on his fellow townsfolk. That night at Flo's V8 Café, the Sheriff tells the story of the legend of the Ghostlight, and as everyone races home Mater is left alone primed for a good old-fashioned scare.",0,0,Mater and the Ghostlight,en +14705,Omkara,2006-07-28,155.0,,,tt0488414,An adaptation of Shakespeare's Othello,"Director Vishal Bharadwaj's adaption of the Shakespeare masterpiece ""Othello"".",0,0,Omkara,hi +13162,Blind Dating,2006-07-28,99.0,,,tt0454084,Date at your own risk.,"Danny is a blind man who does not let his impairment get in the way of living his life to the fullest, except when it comes to love. Danny's brother sets him up on a series of blind dates, but all of them go disastrously wrong. Just when Danny is about to give up, he meets Leeza, a nurse who works for Danny's doctor. There is just one catch: Leeza, who is from India, is promised to another man.",0,834457,Blind Dating,en +275065,VeggieTales: LarryBoy & The Bad Apple,2006-07-29,46.0,,,tt0837137,A Lesson In Fighting Temptation,"Something more ambiguous than the first two Larry-Boy videos. Someone called the Bad Apple seeks to rule Bumblyburg by making Mayor Blueberry, Petunia Rhubarb, and Larry-Boy (as well as Alfred) victims of temptation of respectively: vanity, games, chocolate, and TV. And seeks to put all of Bumblyburg under her power of tempation. Until everyone who was already trapped by their temptation realize that temptation is too strong for one to handle, they need the help of others around them. Then defeat the Bad Apple and her temptation.",0,0,VeggieTales: LarryBoy & The Bad Apple,en +37609,The Cheetah Girls 2,2006-07-31,96.0,,425880,tt0800318,,"Best friends Galleria, Chanel, Dorinda, and Aqua, A.K.A. the girl band ""The Cheetahs,"" get the opportunity of a lifetime when they strut their way to Barcelona, Spain, to perform in an international music festival. Along the way, the ""amigas Cheetahs"" learn that, although their paths are not the same, they are lucky to have one another for the journey.",0,0,The Cheetah Girls 2,en +123334,TV Junkie,2006-08-03,89.0,,,tt0492494,Making Real Life Isn't Easy,"Rick Kirkham was a reporter for Inside Edition who appeared on a segment called ""Inside Adventure"". From the age of 14, he filmed more than 3,000 hours of a video diary; this included footage during his tenure on Inside Edition during which he was addicted to crack cocaine.",0,0,TV Junkie,en +326,Snakes on a Plane,2006-08-06,105.0,,,tt0417148,"At 30,000 feet, snakes aren't the deadliest thing on this plane.","America is on the search for the murderer Eddie Kim. Sean Jones must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.",33000000,62022014,Snakes on a Plane,en +53953,The Tooth Fairy,2006-08-08,0.0,,,tt0473553,,A woman and her daughter (Nicole Muñoz) encounter a deadly legend at a bed-and-breakfast.,0,0,The Tooth Fairy,de +8998,Friends with Money,2006-09-07,88.0,,,tt0436331,,"After she quits her lucrative job, Olivia finds herself unsure about her future and her relationships with her successful and wealthy friends.",6500000,13368437,Friends with Money,en +14611,Ultimate Avengers 2,2006-08-08,73.0,,286904,tt0803093,,"Mysterious Wakanda lies in the darkest heart of Africa, unknown to most of the world. An isolated land hidden behind closed borders, fiercely protected by its young king - the Black Panther. But when brutal alien invaders attack, the threat leaves the Black Panther with no option but to go against the sacred decrees of his people and ask for help from outsiders.",0,7900000,Ultimate Avengers 2,en +57775,Khottabych,2006-08-10,92.0,,,tt0466043,,Young programmer and hacker Gena meets Khottabych - a genie who can't quite understand today life realities after spending thousands of years in a lamp.,0,0,Хоттабыч,ru +46341,El próximo Oriente,2006-08-14,,,,tt0484064,,,0,0,El próximo Oriente,it +58923,When the Levees Broke: A Requiem in Four Acts,2006-08-16,255.0,,,tt0783612,An American Tragedy,"In August 2005, the American city of New Orleans was struck by the powerful Hurricane Katrina. Although the storm was damaging by itself, that was not the true disaster. That happened when the city's flooding safeguards like levees failed and put most of the city, which is largely below sea level, underwater. This film covers that disastrous series of events that devastated the city and its people. Furthermore, the gross incompetence of the various governments and the powerful from the local to the federal level is examined to show how the poor and underprivileged of New Orleans were mistreated in this grand calamity and still ignored today.",2000000,0,When the Levees Broke: A Requiem in Four Acts,en +213110,The Amazing Screw-On Head,2006-08-20,22.0,,,tt0468445,Put the screw to villainy.,"Based on the award-winning comic book by Mike Mignola (creator of Hellboy), The Amazing Screw-On Head chronicles the adventures of a Civil War-era secret agent with an extraordinary special power who serves under president Abraham Lincoln.",0,0,The Amazing Screw-On Head,en +296194,Comedy Central Roast of William Shatner,2006-08-20,90.0,,,tt0840305,,It's William Shatner's turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast. A parade of Shatner's friends have gotten together to boldly go ...,0,0,Comedy Central Roast of William Shatner,de +43987,No Mercy for the Rude,2006-08-24,113.0,,,tt0856052,,"His name is Killa. Growing up as an orphan, he had been teased so much for being a lisper that he decided not to talk at all until getting a surgery that would make him talk clearly. Living all by himself, he spends his time doing only two things; watching bullfights on TV and eating seafood. He sometimes writes poetry and spends most of his time daydreaming about becoming a matador to fight face to face with a bull. In order to earn money for the surgery, he chose to become a killer. However, he has his own rule; kill only those with scary faces or with bad manners. Everything seems fine until his boss shows him a picture. The last prey he has to kill is the one who he has never expected to kill. And there is another secret hidden behind the mysterious client of this whack jo.",3,4,예의없는 것들,ko +16014,Clash of Egos,2006-08-25,92.0,,,tt0484368,,"Tony has recently been released from a sentence for violent behaviour. He promises to improve his ways and is finally granted a few hours alone with his two children. They celebrate the reunion by going to the movies to see a new film by the famous, critically acclaimed Danish director Claus Volter. But the film is not the masterpiece it is said to be on the poster; the children are crying and Tony cannot get the money back he spent on tickets and candy. Tony does not give up; he seeks out Claus Volter in order to get an explanation and a refund. It is however easier said than done to get money out of a world-renowned filmmaker.",0,0,Sprængfarlig bombe,en +9639,Grimm Love,2006-08-27,87.0,,,tt0448400,Let the feeding begin.,"In Germany, as graduate student Katie Armstrong researches cannibal killer Oliver Hagen for her thesis, she becomes obsessed with her subject and ultimately plunges into a lifestyle similar to Hagen's and the thousands of people like him.",0,0,Rohtenburg,de +104522,My Love,2006-08-27,26.0,,,tt0874952,,"In nineteenth-century Russia, a teenage boy in search of love is drawn to two very different women.",0,0,Моя любовь,en +47171,48 Shades,2006-08-31,96.0,,,tt0476519,,"This coming of age comedy is about a 16 year old, Dan, who must choose between going to Geneva with his parents for a year or move into a house with his young Aunt, Jacq, and her roommate, Naomi.",0,0,48 Shades,en +27904,Syndromes and a Century,2006-08-31,105.0,,,tt0477731,,"A Buddhist meditation on the mysteries of love and attraction, the workings of memory, and the ways in which happiness is triggered.",0,0,แสงศตวรรษ,th +20221,El rey de los huevones,2006-08-31,96.0,,,tt0849466,,A comedy that follows a naive taxi driver (Quercia) who is duped by most of his fares.,0,0,El rey de los huevones,es +54659,Woman on the Beach,2006-08-31,127.0,,,tt0835787,,"Stymied by writer's block while crafting his latest script, director Kim Jung-rae persuades his friend Won Chang-wook to drive him to a beach resort—where he promptly becomes involved with Chang-wook's girlfriend. Abandoning her and taking up with another woman, Jung-rae winds up creating enough drama to inspire his writing.",0,0,해변의 여인,ko +13495,Alatriste,2006-09-01,145.0,,,tt0395119,,"In 17th century Spain Diego Alatriste, a brave and heroic soldier, is fighting in his King's army in the Flandes region. His best mate, Balboa, falls in a trap and, near to death, asks Diego to look after his son and teach him to be a soldier.",24000000,23321954,Alatriste,es +18586,The Hottest State,2006-09-02,117.0,,,tt0496319,What happens when your first love is love itself?,A young actor from Texas tries to make it in New York while struggling in his relationship with a beautiful singer/songwriter.,0,0,The Hottest State,en +205076,Not My Life,2006-09-03,120.0,,,tt0827179,,"After a car accident, a woman with a seemingly perfect life begins to have visions that suggest she is not who she thinks she is.",0,0,Not My Life,en +63717,Gardens in Autumn,2006-09-06,0.0,,,tt0494239,,"When he loses his position as a powerful government minister, Vincent is dropped by his pretty mistress and must begin life anew, without the privileges of power. As he gradually becomes acquainted with milieus which he d either forgotten or never known and a host of sometimes eccentric, often remarkable everyday people, Vincent really begins to start living again.",0,0,Jardins en automne,fr +1254,"Don't Worry, I'm Fine",2006-09-06,96.0,,,tt0485241,,"A 19-year-old searches for her twin brother after he runs away from home, following a fight with their father.",0,0,"Je vais bien, ne t'en fais pas",fr +13807,Exiled,2006-09-06,110.0,,,tt0796212,,"A friendship is formed between an ex-gangster, and two groups of hitmen - those who want to protect him and those who were sent to kill him.",4500000,0,放‧逐,cn +1381,The Fountain,2006-09-06,96.0,http://thefountainmovie.warnerbros.com/,,tt0414993,Death is the road to awe,"Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.",35000000,15304890,The Fountain,en +38580,The Little Matchgirl,2006-09-07,7.0,,,tt0816562,,"An animated short based on Hans Christian Andersen's tale about a poor young girl with a burning desire to find comfort and happiness in her life. Desperate to keep warm, the girl lights the matches she sells, and envisions a very different life for herself in the fiery flames filled with images of loving relatives, bountiful food, and a place to call home.",0,0,The Little Matchgirl,en +69635,Sillunu Oru Kaadhal,2006-09-08,160.0,,,tt0464071,,"In recent times, it has become stereotypical to present movies with violence and gore in the tamil cinemas. But Jillunu oru kaadhal stood out and lived to the hype, at least according to the box office. Rather being a regular love story, the script of Jillunu oru kaadhal moves in a different path. Surya is married to Jyothika and lives happily with his daughter. He is a mechanic for a major car company in mumbai. All goes well before Jyothika finds Surya's personal diary which reveals an entirely different version of him - his college days. The story moves back and forth from there on and keeps the audience enthralled in almost all the aspects, whether it be music, comedy, romance, anger, fight etc.,",0,0,Sillunu Oru Kaadhal,ta +13842,Broken Bridges,2006-09-08,105.0,,,tt0477392,,"A fading country music star (Keith) returns to his hometown, where he reunites with his childhood sweetheart and also meets his 16-year-old daughter for the first time.",0,251775,Broken Bridges,en +24189,The Missing Star,2006-09-08,103.0,,,tt0448131,,No overview found.,0,0,La stella che non c'è,en +1164,Babel,2006-09-08,143.0,,,tt0449467,If You Want to be Understood...Listen,"Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.",25000000,135330182,Babel,en +13075,Sherrybaby,2006-09-08,96.0,,,tt0423169,No one makes it alone.,"After serving time in prison, former drug addict Sherry Swanson returns home to reclaim her young daughter from family members who have been raising the child. Sherry's family, especially her sister-in-law, doubt Sherry's ability to be a good mother, and Sherry finds her resolve to stay clean slowly weakening.",2000000,622806,Sherrybaby,en +32604,Transylvania,2006-09-09,103.0,,,tt0463381,,"Zingarina arrives in Transylavania, accompanied by her close friend Marie and her guide and interpreter Luminitsa. She is not there only to visit this region of Romania but to trace her lover Milan, a musician who has made her pregnant and who left her without a word of explanation. When she finds him back, he brutally rejects her and Zingarina is terribly upset. She leaves her two companions and having become a wreck she hardly survives by following a wandering little girl. Her destiny changes for the best when she meets Tchangalo, a traveling trader...",0,0,Transylvania,en +44260,Lake of Fire,2006-09-09,152.0,,,tt0841119,Exploring the Issue that Divides the World,An unflinching look at the how the battle over abortion rights has played out in the United States over the last 15 years,0,25,Lake of Fire,en +7511,The Last Kiss,2006-09-10,115.0,,,tt0434139,We all make choices. What's yours?,"Revolves around a young couple and their friends struggling with adulthood and issues of relationships and commitment. Based on the 2001 Italian film L'ultimo bacio, directed by Gabriele Muccino.",20000000,0,The Last Kiss,en +1717,All the King's Men,2006-09-10,125.0,http://www.sonypictures.com/homevideo/allthekingsmen/,,tt0405676,Some people will do anything to gain power. Some will do anything to keep it.,The story of an idealist's rise to power in the world of Louisiana politics and the corruption that leads to his ultimate downfall. Based on the1946 Pulitzer Prize-winning novel written by Robert Penn Warren.,55000000,9450897,All the King's Men,en +13517,The Ugly Duckling and Me!,2006-09-10,90.0,http://www.uglyandme.com/,,tt0396042,,"The Hans Christian Anderson tale gets a new treatment, this time with a rat trying to exploit the talents of a little ugly duckling for profit.",0,0,The Ugly Duckling and Me!,en +4140,Blindsight,2006-09-11,104.0,http://www.blindsightthemovie.com/,,tt0841084,,"Six blind Tibetan teenagers climb the Lhakpa-Ri peak of Mount Everest, led by seven-summit blind mountain-climber Erik Weihenmayer.",0,0,Blindsight,en +4516,My Best Friend,2006-09-12,90.0,http://www.monmeilleurami-lefilm.com/,,tt0778784,It takes a lifetime to learn the meaning of friendship... François has 10 days.,"Catherine refuses to believe that her business partner, the unlikeable François, has a best friend, so she challenges him to set up an introduction. Scrambling to find someone willing to pose as his best pal, François enlists the services of a charming taxi driver to play the part.",0,0,Mon Meilleur Ami,fr +11798,This Is England,2006-09-12,101.0,http://www.thisisenglandmovie.co.uk/,376863,tt0480025,"Run with the crowd, stand alone, you decide.","A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends even like family. Based on experiences of director Shane Meadows.",2380000,8176544,This Is England,en +15534,Griffin & Phoenix,2006-09-12,102.0,,,tt0460812,A love story with no expectations.,A terminally ill man falls in love with a woman who has a secret that threatens their time spent together.,0,0,Griffin & Phoenix,en +15934,El cantante,2006-09-12,116.0,,,tt0458522,"Based on the true story of the King of Salsa, Hector Lavoe","The rise and fall of salsa singer, Héctor Lavoe (1946-1993), as told from the perspective of his wife Puchi, who looks back from 2002.",0,0,El cantante,en +1427,Perfume: The Story of a Murderer,2006-09-13,147.0,http://www.parfum.film.de/,,tt0396171,Based on the best-selling novel,"Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.",50000000,132180323,Perfume: The Story of a Murderer,en +121539,Torn Apart,2006-09-13,84.0,,,tt0832865,,The story of a love relationship between a brother and sister and an eventual breakup that will forever change their lives.,0,0,La coupure,fr +5393,Happily N'Ever After,2006-09-14,75.0,http://www.happilyneverafterthefilm.com/,141084,tt0308353,Fairy Tale Endings Aren't What They Used To Be,"An alliance of evil-doers, led by Frieda, looks to take over Fairy Tale Land. But when Ella realizes her stepmother is out to ruin her storybook existence, she takes a dramatic turn and blossoms into the leader of the resistance effort.",47000000,38085778,Happily N'Ever After,en +13792,Last Train to Freo,2006-09-14,89.0,,,tt0848592,,"Two thugs from the Perth suburb of Midland catch the last train to Fremantle. When a young woman boards the train a few stops later, they begin talking and find out not everyone on the train is who they seem to be.",0,0,Last Train to Freo,en +14449,The Banquet,2006-09-14,131.0,,,tt0465676,Nothing is more poisonous than the human heart.,"907 AD, the Tang Dynasty in China. The movie is set in an empire in chaos. The Emperor, the Empress, the Crown Prince, the Minister and the General all have their own enemies.",0,0,Ye yan,zh +1165,The Queen,2006-09-15,103.0,http://www.thequeenmovie.co.uk/,,tt0436697,Our Leaders. Ourselves.,"The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.",15000000,123384128,The Queen,en +15213,Everyone's Hero,2006-09-15,88.0,,,tt0430779,"No matter where life takes you, always keep swinging.","""Everyone's Hero"" is the heartwarming story of a young boy's journey to help Babe Ruth and the New York Yankees win the World Series.",0,16627188,Everyone's Hero,en +14137,Beer League,2006-09-15,86.0,http://www.beerleaguethemovie.com/,,tt0453453,No Gut... No Glory.,An unemployed slacker (Lange) inspires his softball teammates to improve their game so they won't get kicked out of the local league.,0,0,Beer League,en +15163,Amazing Grace,2006-09-16,117.0,http://www.amazinggracemovie.com/,,tt0454776,Behind the song you love is a story you will never forget.,"The true story of William Wilberforce's courageous quest to end the British slave trade. Although meeting intense opposition, his minister, John Newton, urges him to see the cause through.",0,0,Amazing Grace,en +52452,Johnny Was,2006-09-19,93.0,,,tt0426501,Stop running. Face the future.,"Johnny Doyle escapes a violent past in Ireland to lie low in London, until his former mentor Flynn breaks out of Brixton Prison...",4300000,0,Johnny Was,en +159201,Ozzie,2006-09-20,90.0,,,tt0280000,,"Ozzie is a young koala living in Australia. He is kidnapped by two goons (Buzz and Tank) who work for Max Happy, president of Happy Toys. Legend says that Ozzie speaks English and Max wants to clone Ozzie into hundreds of koalas and sell them for a fortune as talking pets! Buzz and Tank ""lose"" Ozzie on the plane-ride home by accident to Justin Morton, an 8 year old who is celebrating his birthday with his mom, Beth with a trip to Austrailia. Ozzie winds up in Justin's backpack. When Max finds out the koala is missing, a screwball comedy chase begins and ends in a surprise that knocks Max off her throne!",0,0,Ozzie,en +62616,Alive,2006-09-21,98.0,,,tt0880504,,A veteran of the Chechen War is helped by the ghosts of his two fallen comrades to leave the war behind.,0,3214998,Живой,ru +5206,The Boss of It All,2006-09-21,95.0,http://www.direktorenfordethele.dk/,,tt0469754,,An IT company hires an actor to serve as the company's president in order to help the business get sold to a cranky Icelander.,3000000,0,Direktøren for det hele,da +9664,Flyboys,2006-09-22,140.0,,,tt0454824,Inspired by a true story,"The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.",60000000,17800000,Flyboys,en +119409,La Máquina de Bailar,2006-09-22,109.0,,,tt0807006,,,0,0,La Máquina de Bailar,es +14518,Peter & the Wolf,2006-09-23,32.0,http://www.peterandthewolffilm.co.uk/,,tt0863136,Boys like Peter are not afraid of wolves...,"An animated retelling set to Prokofiev's suite. Peter is a slight lad, solitary, locked out of the woods by his protective grandfather",2300000,0,Peter & the Wolf,no +6948,The Woods,2006-09-25,91.0,,,tt0380066,Every high school has its secrets...,"Set in 1965 New England, a troubled girl encounters mysterious happenings in the woods surrounding an isolated girls school that she was sent to by her estranged parents.",0,0,The Woods,en +46432,Woh Lamhe,2006-09-26,0.0,,,tt0833561,,"Based upon the life of actress Parveen Babi, this film describes the life of a schizophrenic actress Sana Azim, and the love of her life - Aditya Garewal.",0,0,Woh Lamhe,en +10097,The Tiger's Tail,2006-09-26,107.0,,,tt0490499,,"After a chance encounter, a Dubliner (Gleeson) is stalked by a murderous facsimile of himself.",0,0,The Tiger's Tail,en +25358,Katt Williams: Live,2006-09-26,86.0,,,tt0810410,,"Katt Williams performs in Cincinnati, Ohio.",0,0,Katt Williams: Live,en +89722,Visions of Suffering,2006-09-26,120.0,,,tt0840027,A surreal world you may never wake from.,Demons cross the divide between the world of dreams and waking reality to capture a victim and drag him back to their nightmarish realm.,0,0,Visions of Suffering,en +257734,Benjamin Blümchen - Seine schönsten Abenteuer,2006-09-28,,,,tt0127458,,,0,0,Benjamin Blümchen - Seine schönsten Abenteuer,de +188858,Lola,2006-09-28,112.0,,,tt0477331,,"The film is a French-Spanish production and most of the dialog is in French. 'Lo que se de Lola' - in English 'What I know about Lola' - is about a lonely guy, living an uneventful life in Paris. He takes care of his mother. One day, a girl with a more exciting life moves in his apartment building...",0,0,Lo que sé de Lola,es +8194,A Guide To Recognizing Your Saints,2006-09-29,104.0,,,tt0473488,Sometimes the only way to move forward is to go back.,"Dito Montiel, a successful author, receives a call from his long-suffering mother, asking him to return home and visit his ailing father. Dito recalls his childhood growing up in a violent neighborhood in Queens, N.Y., with friends Antonio, Giuseppe, Nerf and Mike.",0,516139,A Guide To Recognizing Your Saints,en +18925,Facing the Giants,2006-09-29,111.0,http://www.facingthegiants.com/,,tt0805526,Never give up. Never back down. Never lose faith.,A losing coach with an underdog football team faces their giants of fear and failure on and off the field to surprising results.,100000,10178331,Facing the Giants,en +285685,El cimarrón,2006-10-01,102.0,,,tt1016169,,"El cimarrón is a love story about a young African couple, Marcos and Carolina, that takes place in the slavery era at the turn of the nineteen-century in a Caribbean island. After several futile escape plans, Marcos finally escaped. Now free, he returns to liberate his beloved Carolina.",0,0,El cimarrón,es +53486,The Family Friend,2006-10-01,102.0,,,tt0772105,,"Geremia, an aging tailor/money lender, is a repulsive, mean, stingy man who lives alone in his shabby house with his scornful, bedridden mother. He has a morbid, obsessive relationship with money and he uses it to insinuate himself into other people's affairs, pretending to be the ""family friend"". One day he is asked by a man to lend him money for the wedding of Rosalba, his daughter. Geremia falls in love at first sight with the bewitching creature and and soon indulges in a ""beauty and the beast"" relationship...",0,0,L'amico di famiglia,it +24440,Robert Newman's History of Oil,2006-10-02,46.0,http://www.robnewman.com/shop.html,,tt1337086,,"Stand-up comedian Robert Newman gets to grips with the wars and politics of the last hundred years, from WWI through to the 2003 invasion of Iraq; but rather than adhering to the history we were fed at school, this show places oil centre stage as the cause of all commotion. This innovative history programme is based around Robert Newman's stand-up act and supported by resourceful archive sequences and stills with satirical impersonations of historical figures from Mayan priests to Archduke Ferdinand.",0,0,Robert Newman's History of Oil,en +13436,13 Beloved,2006-10-04,114.0,,,tt0883995,13 Challenges. $100 Million. How Far Would You Go?,"Pusit is having the worst day of his life. He just lost his job and is in serious debt. That is all about to change when he receives a mysterious phone call with a tempting offer. If he could complete 13 tasks, he will win 100 million Baht. Pusit agrees and the game begins.",0,0,13 เกมสยอง,th +39510,Blood Tea and Red String,2006-10-04,71.0,,,tt0827498,,A handmade stop-motion fairy tale for adults that tells the tale of the struggle between the aristocratic White Mice and the rustic Creatures Who Dwell Under the Oak over the doll of their heart's desire.,0,0,Blood Tea and Red String,en +9958,Trailer Park Boys: The Movie,2006-10-06,95.0,,101385,tt0425601,You'll never guess who just got out of jail...,"Set in a separate storyline not related to the ""Trailer Park Boys"" Television show, but with the same lovable characters. The boys get arrested for robbing an ATM machine and spend 18 months in jail. When the get out, they decide to pull off ""The Big Dirty"" which is to steal a large amount of coins because they are untraceable and quit their life of crime forever",5000000,3833507,Trailer Park Boys: The Movie,en +9841,Rest Stop,2006-10-07,80.0,,286006,tt0787505,,"The film follows Nicole Carrow, a young woman who is threatened by a maniac serial killer, after her boyfriend Jess, is abducted in a rest stop.",0,0,Rest Stop,en +63081,The Victim,2006-10-11,108.0,,,tt0889212,,"Ting, an actress for murder illustration is hired to simulate a real-life murder case of Min, a former Miss Thailand who was brutally killed.",0,0,ผีคนเป็น,th +63838,Mechenosets,2006-10-12,0.0,,,tt0477337,,,5000000,3919731,Mechenosets,ru +34630,Hippie Masala - Forever in India,2006-10-12,93.0,http://www.koolfilm.de/HippieMasala/hippiemasala.php4,,tt1131674,,"In the 1960s and 70s thousands of hippies journeyed east to India in search of enlightenment.Hippie Masala is a fascinating chronicle about flower children who,after fleeing Western civilization,found a new way of life in India.",0,0,Hippie Masala - Für immer in Indien,en +21786,Cold Prey,2006-10-13,97.0,http://www.frittvilt.com/frittvilt/,86553,tt0808276,You'll Catch Your Death.,"Jannicke, Morten Tobias, Eirik, Mikael and Ingunn are on a snowboarding vacation in Jotunheimen. They are forced to take shelter in an abandoned hotel when Morten Tobias breaks his leg and their car is too far away for them to reach within nightfall. They quickly discover that the hotel was closed in the seventies due to the disappearance of the managers’ son.",0,0,Fritt vilt,no +57005,Eternal Summer,2006-10-13,105.0,,,tt0885520,"No One Wishes To Be Lonely, Neither Do We.",Three high school students experience the perks and pitfalls of love in director Leste Chen’s sensitive tale of friendship and yearning.,0,254000,Sheng Xia Guang Nian,zh +11960,After This Our Exile,2006-10-15,159.0,,,tt0768114,,"After his mother flees the family home, a son turns to thieving in order to support his father, an abusive sort who is addicted to gambling.",0,0,Fu Zi,cn +5172,The Astronaut Farmer,2006-10-15,104.0,http://theastronautfarmermovie.warnerbros.com/,,tt0469263,,"Texan Charles Farmer left the Air Force as a young man to save the family ranch when his dad died. Like most American ranchers, he owes his bank. Unlike most, he's an astrophysicist with a rocket in his barn - one he's built and wants to take into space. It's his dream. The FBI puts him under surveillance when he tries to buy rocket fuel, and the FAA stalls him when he files a flight plan – but Charles is undeterred.",13000000,11130889,The Astronaut Farmer,en +23207,Crossing the Line,2006-10-16,94.0,,,tt0473181,,"In 1962, a U.S. soldier sent to guard the peace in South Korea deserted his unit, walked across the most heavily fortified area on earth and defected to the Cold War enemy, the communist state of North Korea. He became a star of the North Korean propaganda machine, but then disappeared from the face of the earth. Now, after 45 years, the story of James Dresnok, the last American defector in North Korea, is being told for the first time. Crossing the Line follows Dresnok as he recalls his childhood, desertion, and life in the DPRK.",0,0,Crossing the Line,en +10005,Behind Enemy Lines II: Axis of Evil,2006-10-17,96.0,http://www.foxhome.com/behindenemylinesiiaxisofevil,98513,tt0497329,The fate of the world hangs in the balance in this explosive action-thriller.,"Navy SEALS, headed by Lt. Bobby James, are dispatched to North Korea on a covert mission, all in an effort to take out a missile site...",0,0,Behind Enemy Lines II: Axis of Evil,en +57965,Red Like the Sky,2006-10-17,0.0,,,tt0450121,,"A nearly sightless boy is sent to a school for blind children, where he secretly discovers the possibilities of the recorded sound.",0,0,Rosso come il cielo,it +96552,Pretpark Nederland,2006-10-18,90.0,,,tt0882800,A fun fair behind the dikes,Michiel van Erp shows us what the Dutch do in their spare time and takes a look at the industry behind all these leisure activities.,0,0,Pretpark Nederland,en +58309,School For All,2006-10-18,97.0,,,tt0474476,,"Jahwad is thirty years old and going nowhere fast. He flunked out of school, and slipped into petty crime. Now, he has the police on his tail. So Jahwad is no longer going nowhere, he is getting out of town as fast as he can. He hitches a ride with a schoolteacher, who is desperate at being posted to one of the toughest high schools in the Paris suburbs. The man is so frantic, he rams his car into a tree. For Jahwad, the opportunity is too good to miss, but the high school dropout hardly looks the part.",0,0,L'école pour tous,fr +29638,Werewolf in a Women's Prison,2006-10-19,0.0,,,tt0815258,,No overview found.,0,0,Werewolf in a Women's Prison,en +84865,Ma L'Amore... Sì,2006-10-20,0.0,,,tt0984996,,,0,0,Ma L'Amore... Sì,it +28062,When Darkness Falls,2006-10-20,133.0,,,tt0782700,,"A gripping and intense thriller about honour, loyalty, and the courage to fight for what you believe.",0,0,När mörkret faller,sv +74485,A Man Named Pearl,2006-10-20,0.0,,,tt0878134,,"Man Named Pearl tells the inspiring story of self-taught topiary artist Pearl Fryar. It offers a message that speaks to respect for both self and others, and shows what one person can achieve when he allows himself to share the full expression of his humanity.",0,0,A Man Named Pearl,en +34204,Return to Halloweentown,2006-10-20,88.0,,87252,tt0816520,Unlock The Ultimate Secret This October!,"As Halloweentown prepares to celebrate its 1,000th anniversary, Marnie Piper and her brother Dylan return to Witch University, where trouble is in session from the Sinister Sisters and from someone who's plotting to use Marnie's powers for evil.",0,0,Return to Halloweentown,en +9948,The Fox and the Hound 2,2006-11-09,69.0,,100970,tt0465997,Old Friends New Adventure,"Best friends Tod, a fox kit, and Copper, a hound puppy, visit a country fair when they see a band of dogs called ""The Singin' Strays"". The band has five members: Dixie, Cash, Granny Rose, and twin brothers Waylon and Floyd. It is important that they perform well because a talent scout is visiting.",24000000,0,The Fox and the Hound 2,en +13668,Catch and Release,2006-10-20,111.0,http://www.sonypictures.com/movies/catchandrelease/,,tt0395495,Life is messy. Love is messier,"Gray Wheeler just lost everything. But it could be the best thing that ever happened to her. After the death of her fiancé, Gray moves in with her late love's best friends. While Sam and Dennis do their best to cheer Gray up, Fritz doesn't seem to care. Once Gray breaks through Fritz's defenses, however, she finally sees why her fiancé thought so highly of him. As they spend more time together, Gray learns that her chances for love have not died out with her fiancé. But when some surprise guests show up on their doorstep, it'll take the love of all of her new friends to help Gray learn that life may be messy, but love is messier.",25000000,16158487,Catch and Release,en +14012,Flicka,2006-10-20,95.0,,,tt0434215,,"A headstrong 16 year old Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. Katy then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope.",15000000,21000000,Flicka,en +46247,No Time for Nuts,2006-10-23,7.0,,,tt0902999,,Scrat comes across a time machine and is transported to various times all in pursuit of his beloved acorn.,0,0,No Time for Nuts,en +13616,Children of Glory,2006-10-23,115.0,http://www.szabadsagszerelemafilm.hu/,,tt0486219,,"Children of Glory will commemorate Hungary's heroic Revolution of 1956, and takes place in Budapest and at the Melbourne Olympic Games in October and November of that year. While Soviet tanks were destroying Hungary, the Hungarian water polo team was winning over the Soviets in the Olympic pool in Melbourne, in what has been described as the bloodiest water polo match in history.",0,0,"Szabadság, szerelem",hu +303296,M for Mother,2006-10-24,113.0,,,tt1113810,,"What appears to be a grand love story turns sour when parents-to-be discover that their unborn child will likely be born with serious birth defects, as a result of the mother's exposure to chemical weapons during the Iran-Iraq war. The father does not want to have a disabled child, but the mother insists on going through with the pregnancy.",0,0,Mim mesle madar,en +79034,La Californie,2006-10-26,,,,tt0465160,,,0,0,La Californie,fr +214,Saw III,2006-10-27,108.0,,656,tt0489270,Suffering? You Haven't Seen Anything Yet...,"Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.",10000000,163876815,Saw III,en +48250,Fascisti su Marte,2006-10-27,100.0,,,tt0888496,,In 1938 a group of fascists led by the general Gaetano Maria Barbagli decides to invade the planet of Mars.,0,0,Fascisti su Marte,it +16080,Crazy Eights,2006-10-31,80.0,,,tt0470993,No secret stays locked away forever.,"Six people are brought together at the funeral of a childhood friend. While settling the estate, they discover a map, which leads them on a search for a time capsule. What they discover reawakens childhood traumas and leads them on a journey through their abandoned childhood home: a home with a terrible secret and a mysterious dead girl who will lead them to their strange fates.",0,0,Crazy Eights,en +134890,Evil Behind You,2006-10-31,90.0,,,tt0457342,"""There's Something Evil Behind You""","Abducted couples are victims of medical experiments that mutate their minds with supernatural abilities. As their mental capacities increase, so does the danger from something evil that is not of flesh and blood.",200000,0,Evil Behind You,en +10795,Tell No One,2006-11-01,131.0,,,tt0362225,Eight years ago Alex's wife was murdered. Today she emailed him.,"A man receives a mysterious e-mail appearing to be from his wife, who was murdered years earlier. As he frantically tries to find out whether she's alive, he finds himself being implicated in her death.",0,0,Ne le dis à personne,fr +36960,Memory,2006-11-01,98.0,,,tt0418879,,"Dr. Taylor Biggs is haunted by a past that's not his own. A hallucinatory drug gives him the power to see visions of vicious crimes, visions made all that more disturbing when he discovers that the murderous memories may belong to the father he never knew . Biggs's mother, whose own failing memory makes her powerless to help him unravel his family history.",0,0,Memory,en +73554,The Raven,2006-11-01,81.0,,,tt0861730,Skinner has returned from the dead... To Kill!,"As a child, Lenore was tormented by nightmares and obsessed with the dark poems and stories of Edgar Allan Poe. As the lead singer in a Los Angeles band, the adult Lenore (Jillian Swanson) finds herself, friends and colleagues haunted by a murderer from beyond the grave. Only in her dreams -- in which she's visited by Poe's ghost -- will Lenore find the key to defeat her supernatural stalker and finally escape the spirits battling for her soul.",0,0,The Raven,en +37405,Eden,2006-11-02,98.0,,,tt0765444,,"Fat German star restaurant chef Gregor shows romantic interest in waitress Eden Drebb. She's happily married to hunky Xaver Drebb, but feels romantically neglected. Gregor's deserts seduce her, first trough her brat daughter Leonie, to spend time with him and his fabulous dishes. That soon becomes a rather platonic affair, and domestic troubles. Xaver decides to exact revenge on Gregor, with tragic results.",0,0,Eden,de +26687,The Unseeable,2006-11-02,100.0,http://www.penchookubpee.com/,,tt0950500,,"Set in 1934 Siam, the story involves a young pregnant woman named Nualjin who's searching for her missing husband. She comes to stay in the spooky rural mansion of a widow, Runjuan.",2000000,0,เปนชู้กับผี,en +9828,Unknown,2006-11-03,98.0,,,tt0450340,,Five men wake up in a locked-down warehouse with no memory of who they are. They are forced to figure out who is good and who is bad to stay alive.,3700000,3338228,Unknown,en +16017,Prague,2006-11-03,92.0,,,tt0855975,,"Christoffer and Maja's trip to Prague to bring back Chistoffer's deceased father, evolves into the story of a brake-up. With the dead father lurking in the background, secrets gradually emerge threatening to destroy their marriage.",0,0,Prag,da +98438,Thou Shalt Laugh,2006-11-07,93.0,http://www.thoushaltlaugh.com/,98448,tt0907868,,"Seven of the funniest Christian Comedians on earth, and hosted by two-time Emmy Award winner, Patricia Heaton.",0,0,Thou Shalt Laugh,en +13551,The Dead Girl,2006-11-07,85.0,,,tt0783238,One life ends. Seven others begin.,The clues to a young woman's death come together as the lives of seemingly unrelated people begin to intersect.,0,0,The Dead Girl,en +58928,Fragments of Antonin,2006-11-08,0.0,,,tt0452780,,,0,0,Les fragments d'Antonin,fr +5881,Twice Upon a Time,2006-11-08,92.0,http://www.desaccordparfait-lefilm.com,,tt0774756,,,0,0,Désaccord Parfait,fr +64383,Bad Faith,2006-12-06,0.0,,,tt0498118,,,0,0,Mauvaise foi,fr +14818,Dynamite Warrior,2006-11-09,103.0,,,tt0963915,,The story is set in 1890s Siam. Siang is a young Muay Thai warrior and rocketry expert who steals back water buffalo taken from poor Isan farmers by unscrupulous cattle raiders. He is searching for a man with a tattoo who killed his parents.,0,0,Khon Fai Bin,en +218728,Prinzessin,2006-11-10,0.0,,,tt0757306,,,0,0,Prinzessin,de +18208,Beautiful Ohio,2006-11-10,91.0,,,tt0479275,You can't resist being who you are.,An entire family comes of age during the early 1970s.,0,0,Beautiful Ohio,en +60160,Gamera the Brave,2006-11-11,96.0,,161766,tt0467923,,"Toru Aizawa, a 11 year old boy suddenly finds a tiny egg on a red mysterious stone. the egg hatches and comes out an abnormal little turtle (Toto) which not only grows rapidly, but also flies in the air and even blows fireballs. At the meantime, a series of mysterious ship wrecks are reported. Later on, even more disasters happen when a huge evil ferocious monster Lizard (Zeus) suddenly comes out from the sea and attacks, wrecks and demolishes the world. the last hope of mankind relies on the friendly great monster, Gamera, which looks similar to Toto, but disappeared 33 years ago. Is Toto the descendant of Gamera? is Toto able to fight against the huge evil?",0,0,Gamera the Brave,ja +167928,Frozen City,2006-11-11,92.0,http://www.solarfilms.com/elokuvat/kaikki/valkoinenkaupunki/en_GB/frozencity/,,tt0820162,Losing everything is just a beginning,"Looking to outrun the horrors of his past, a tormented cabbie flees Helsinki for an apartment complex in the suburbs, only to discover that new neighbors bring new problems. What ensues is a raw, realistic tragedy with an unwaveringly humane core.",0,0,Valkoinen Kaupunki,fi +55294,Canvas,2006-11-12,101.0,http://www.canvasthefilm.com/,,tt0780492,,A woman's schizophrenia affects her relationships with her husband and son.,1500000,0,Canvas,en +13586,"Dylan Moran: Like, Totally...",2006-11-13,66.0,,,tt1023122,,"Dylan Moran, creator of Channel 4's BAFTA award-winning ""Black Books"" returns with an all-new stand-up show. Unpredictable, startling, bizarre, elegiac, but above all brilliant and hilariously funny, Moran is a master of comedy.",0,0,"Dylan Moran: Like, Totally...",en +16884,Anders Matthesen: Anden På Coke?,2006-11-14,112.0,,238419,tt0949330,,"Den seneste stand-up dvd fra Danmarks største komiker. ”Anden paa coke?” turnerede rundt i hele landet i 2006 og blev set live af over 100.000 mennesker.Anden tager stand-up comedy genren videre til et niveau ikke tidligere set herhjemme. Der er kulisser, der er scenografi, der er multimedia men i bund og grund er det alligevel bare stand-up, når det er allerbedst!",0,0,Anders Matthesen: Anden På Coke?,da +142528,Des fleurs pour Algernon,2006-11-14,0.0,,,tt0885484,,,0,0,Des fleurs pour Algernon,fr +9836,Happy Feet,2006-11-16,108.0,http://www.warnerbros.com/happy-feet,92012,tt0366548,WARNING: May Cause Toe-Tapping.,"Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!",100000000,384335608,Happy Feet,en +39536,The Amazing Johnathan: Wrong on Every Level,2006-11-18,44.0,http://www.amazingj.com/,,tt1090639,,"Part comedian, part madman magician The Amazing Johnathan brings his unique brand of comedy to DVD in The Amazing Johnathan: Wrong On Every Level – Uncensored. This all-new Comedy Central special showcases ""The Madman of Comedy"" at his best, hilariously skewering one magic trick after another with unexpected and sometimes gory results.",0,0,The Amazing Johnathan: Wrong on Every Level,en +24170,Private Fears in Public Places,2006-11-22,120.0,,,tt0498120,"For six strangers in search of love, the City of Lights can be a very lonely place.","In Paris, six people all look for love, despite typically having their romantic aspirations dashed at every turn.",0,0,Coeurs,fr +70989,Forgive Me,2006-11-22,0.0,,,tt0498125,,,0,0,Pardonnez-moi,fr +7551,Déjà Vu,2006-11-22,126.0,,,tt0453467,"If you think it's just a feeling, go back... and look again.","Called in to recover evidence in the aftermath of a horrific explosion on a New Orleans ferry, Federal agent Doug Carlin gets pulled away from the scene and taken to a top-secret government lab that uses a time-shifting surveillance device to help prevent crime.",75000000,180557550,Déjà Vu,en +2179,Tenacious D in The Pick of Destiny,2006-11-22,93.0,http://www.tenaciousdmovie.com/,,tt0365830,An epic quest. A magical guitar pick. A chance to put the D in Destiny.,"In Venice Beach, naive Midwesterner JB bonds with local slacker KG and they form the rock band Tenacious D. Setting out to become the world's greatest band is no easy feat, so they set out to steal what could be the answer to their prayers... a magical guitar pick housed in a rock-and-roll museum some 300 miles away.",22000000,13405595,Tenacious D in The Pick of Destiny,en +114931,Sonja,2006-11-23,72.0,,,tt0496395,Follow your heart. No matter what.,"Sonja is struggling to deal with her parent separation, and find her feelings for her best friend might not just be a phase.",0,0,Sonja,en +83785,Her Fatal Flaw,2006-11-24,90.0,,,tt0818602,,"If you think your dating life is hard, check out what happens to poor Laney! Talk about a love hangover: The nice guy this prominent attorney spent last night with winds up being the main suspect in the brutal murder of a Chicago city councilman. If that isn't bad enough, his only alibi is his one-night-stand with Laney. Watch what happens when this talented lawyer puts her career - and her heart - on the line.",0,0,Her Fatal Flaw,en +42934,Random Quest,2006-11-26,60.0,,,tt0910572,,"Following a scientific experiment, a man wakes up in a parallel universe and begins living a life similar to, but different from, his own.",0,0,Random Quest,en +20527,Love and Honor,2006-12-01,121.0,,377545,tt0483578,,"A look at the relationship between a young blind samurai (Kimura) and his wife, who will make a sacrifice in order to defend her husband's honor.",0,0,武士の一分,ja +4887,Takva: A Man's Fear of God,2006-12-01,96.0,http://www.takva-film.de,,tt0499262,,A promotion brings a Muslim's relationship with God into question.,0,0,Takva,en +13569,Thr3e,2006-12-01,101.0,,,tt0486028,,Innocent lives hang on the whim of an elusive psychopathic murderer whose strange riddles and impossible timelines force three people into a mission to end the game before one or all of them die.,0,0,Thr3e,en +9843,Big Nothing,2006-12-01,86.0,,,tt0488085,They wrote the book on how not to be criminals.,"A frustrated, unemployed teacher joins forces with a scammer and his girlfriend in a blackmailing scheme.",0,0,Big Nothing,en +14823,London to Brighton,2006-12-01,85.0,,,tt0490166,Innocence has nowhere to hide,"It's 3:07am and two girls burst into a run down London toilet. Joanne is crying her eyes out and her clothing is ripped. Kelly's face is bruised and starting to swell. Duncan Allen lies in his bathroom bleeding to death. Duncan's son, Stuart, has found his father and wants answers. Derek, Kelly's pimp, needs to find Kelly or it will be him who pays.",0,0,London to Brighton,en +61528,Born Equal,2006-12-04,83.0,,,tt0810949,,"Four characters living in one neighborhood in London - all living dramatically different lives, all of them on the edge - see their stories unfold.",0,0,Born Equal,en +1579,Apocalypto,2006-12-07,139.0,,,tt0472043,No one can outrun their destiny.,"Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.",40000000,120175290,Apocalypto,en +66224,Veyyil,2006-12-09,145.0,,,tt1045898,,"Veyil is a 2006 Tamil-language film directed by Vasanthabalan. Bharath and Pasupathy are the heroes where Bhavana, Priyanka and Sriya Reddy plays the female leads.",0,0,Veyyil,en +1271,300,2006-12-09,117.0,http://300themovie.warnerbros.com,125570,tt0416449,"Spartans, prepare for glory!","Based on Frank Miller's graphic novel, ""300"" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.",65000000,422610419,300,en +1247,The Good Shepherd,2006-12-11,167.0,http://www.thegoodshepherdmovie.com/,,tt0343737,The untold story of the most powerful covert agency in the world.,"Edward Wilson, the only witness to his father's suicide and member of the Skull and Bones Society while a student at Yale, is a morally upright young man who values honor and discretion, qualities that help him to be recruited for a career in the newly founded OSS. His dedication to his work does not come without a price though, leading him to sacrifice his ideals and eventually his family.",85000000,59908565,The Good Shepherd,en +62492,The Wedding Weekend,2006-12-12,96.0,,,tt0475390,,A group of guys who sang together in a college a cappella group reunite 15 years later to perform at a friend's wedding and discover how their lives have progressed -- and in some cases regressed -- since their college heyday.,0,0,The Wedding Weekend,en +48587,Living Death,2006-12-12,85.0,,,tt0892074,Scream All You Want...He Enjoys It.,"Torture is the ultimate seduction when Victor, a powerful and dangerous millionaire, discovers that his beautiful wife Elizabeth (Kristy Swanson) is having a steamy affair with his best friend. And when the lovers' risky plan to get rid of him backfires, Victor's relentless anger and terrifying rage sends him over the edge on a shockingly sadistic quest for total revenge.",0,0,Living Death,en +2486,Eragon,2006-12-14,104.0,http://www.eragonmovie.com/,,tt0449010,"As darkness falls, the last dragon will choose its rider.","In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.",100000000,249288105,Eragon,en +1253,Breaking and Entering,2006-12-15,129.0,,,tt0443456,,"Set in a blighted, inner-city neighbourhood of London, Breaking and Entering examines an affair which unfolds between a successful British landscape architect and Amira, a Bosnian woman – the mother of a troubled teen son – who was widowed by the war in Bosnia and Herzegovina.",0,8974829,Breaking and Entering,en +1251,Letters from Iwo Jima,2006-12-19,141.0,http://iwojimathemovie.warnerbros.com/lettersofiwojima/framework/framework.html,261382,tt0498380,The battle of Iwo Jima seen through the eyes of the Japanese soldiers.,"The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.",19000000,68673228,Letters from Iwo Jima,en +18082,Tired of Kissing Frogs,2006-12-20,95.0,,,tt0806938,,"A romantic comedy about a young interior decorator who, as a result of a romantic disappointment, becomes the female counterpart of Don Juan. The misadventures of the manizer make her rediscover the value of love.",0,0,Cansada de besar sapos,es +32158,The Restless,2006-12-20,102.0,,,tt0929261,"Between heaven and earth, where love became a legend.","After his beloved fiancée is killed by demons, Yi Gwak (Woo-sung Jung) joins the royal demon-hunting squad and distinguishes himself as a great hero. And though Yi eventually falls in battle, his adventures are just beginning. His spirit is whisked away to Joong-cheon, a place between heaven and earth where souls await reincarnation -- and where the final, epic clash between the forces of good and evil will be played out.",0,0,중천,ko +40785,Suddenly,2006-12-22,96.0,,,tt0836710,,The mother and the younger son in a happy family dies in a car-accident. The father and the teenage-son Jonas survives the accident. Now they have to move on with their lives together.,0,0,Underbara Älskade,sv +1259,Notes on a Scandal,2006-12-25,92.0,http://www.foxsearchlight.com/NOAS/,,tt0465551,One woman's secret is another woman's power. One woman's fear is another woman's weapon. One woman's life is in another woman's hands....,"A veteran high school teacher befriends a younger art teacher, who is having an affair with one of her 15-year-old students. However, her intentions with this new ""friend"" also go well beyond platonic friendship.",15000000,49469904,Notes on a Scandal,en +1125,Dreamgirls,2006-12-25,134.0,http://www.dreamgirlsmovie.com/,,tt0443489,One Dream Will Change Everything,"Three young women – Deena Jones, Effie White and Lorrell Robinson – dream of becoming pop stars and they get their wish when they're chosen to be backup singers for the legendary James 'Thunder' Early.",70000000,154937680,Dreamgirls,en +37725,It's a Boy Girl Thing,2006-12-26,95.0,,,tt0482527,They've turned into the things they hated most... each other.,"A visit to a natural history museum proves catastrophic for two high school rivals, an overachiever and a jock, when an ancient Aztec statue casts a spell that causes them to switch bodies and see exactly what it's like to walk in the other's shoes.",15500000,7385434,It's a Boy Girl Thing,en +17287,Poultrygeist: Night of the Chicken Dead,2006-12-26,103.0,,,tt0462485,,"Humans... the other white meat... Unless you're black, then it's dark meat... Or if you are Asian, then it's yellow meat... Or if you are Native American, it's red meat...",0,0,Poultrygeist: Night of the Chicken Dead,en +71381,The Heat,2006-12-28,95.0,,,tt0913446,,"Four good folks from schools got reunion in a summer café on the bank of River Moskva, and they had an unthinkable trouble to deal with check, though one of them is so rich. One by one, a friend left the table to find solution and everyone of them met with different stories. The rich one got caught, ended up in jail for a night with the help from other folks. Friendship never ends...",0,0,ЖАRА,ru +49834,Beynelmilel,2006-12-29,0.0,,,tt0893507,,,0,0,Beynelmilel,tr +18467,Spiral,2007-01-01,90.0,,,tt0491162,,"A reclusive telemarketer has only one semblance of a friend: His telecommuter boss. But the telemarketer's social circle seems to improve greatly when a whimsical co-worker enters his life. Only, as he begins to sketch his new friend's portrait, disturbing ""voices"" from the phone man's past threaten to lead him into a network of destruction",1500000,0,Spiral,en +15725,Chasing Ghosts: Beyond the Arcade,2007-01-19,90.0,http://www.chasingghoststhemovie.com/,,tt0479879,An arcade adventure.,"1982's Video Game World Champions share their philosophies on joysticks, groupies and life.",0,0,Chasing Ghosts,en +2979,Return of the Ghostbusters,2007-01-01,85.0,http://www.returnoftheghostbusters.com/,,tt1230164,-,"The mile high city is rocked when an ancient Egyptian menace comes to town, and the Denver Ghostbusters must return to save the universe once more.",0,0,Return of the Ghostbusters,en +18440,Days of Darkness,2007-01-01,89.0,http://www.daysofdarknessthemovie.com/,,tt0499456,,"When a comet strikes Earth and kicks up a cloud of toxic dust, hundreds of humans join the ranks of the living dead. But there's bad news for the survivors: The newly minted zombies are hell-bent on eradicating every last person from the planet. For the few human beings who remain, going head to head with the flesh-eating fiends is their only chance for long-term survival. Yet their battle will be dark and cold, with overwhelming odds.",0,0,Days of Darkness,en +13561,Murder Party,2007-01-01,79.0,,,tt0878695,,"A random invitation to a Halloween party leads a man into the hands of a rogue collective intent on murdering him for the sake of their art, sparking a bloodbath of mishap, mayhem and hilarity",190000,0,Murder Party,en +73501,A Plumm Summer,2007-01-01,99.0,,,tt0834941,,"Based on a true-story - A Plumm Summer tells the remarkable tale of two young brothers, Elliott and Rocky Plumm, who go head-to-head with the FBI in order to crack the ""frog-napping"" case and get their beloved TV puppet, Froggy Doo back on the air, all the while become local heroes and best friends.",4200000,0,A Plumm Summer,en +13507,Intimate Enemies,2007-01-01,108.0,,,tt0825248,,A drama following a French platoon during Algeria's war of independence,9780000,0,L'ennemi Intime,fr +50364,The Bad Mother's Handbook,2007-01-01,71.0,,,tt0909010,,"Karen Cooper wants to domineer her family and believes she's its pillar. In fact she does everything wrong. Thus she messes up all their lives and futures, rather then help her loved-ones.",0,0,The Bad Mother's Handbook,en +25919,Great World of Sound,2007-01-01,106.0,,,tt0826547,They're coming to make you a star!,"When a man answers an ad to train as a record producer, he's excited by the prospect of signing undiscovered artists only to discover his new job isn't all it's cracked up to be.",0,0,Great World of Sound,en +17306,Ice Spiders,2007-01-01,90.0,,,tt0840304,,"A scientific experiment goes haywire, creating an arachnophobic nightmare. If there's a way to stop them, somebody better find it soon before they kill everything in sight!",2000000,0,Ice Spiders,en +17317,Urban Justice,2007-01-01,96.0,,,tt0910934,,"Seagal plays a man with a dark and violent past, who seeks revenge for the murder of his son.",12000000,0,Urban Justice,en +14765,The Last Deadly Mission,2007-01-01,125.0,,,tt0920470,,A washed-up Marseilles cop (Auteuil) earns a chance at redemption by protecting a woman from the man who killed her parents as he is about to be released from prison.,0,0,MR 73,fr +11600,Redacted,2007-01-01,90.0,,,tt0937237,,Redacted is a film written and directed by Brian De Palma that is a fictional drama loosely based on the Mahmudiyah killings in Iraq.,5000000,782102,Redacted,en +192675,Eklavya: The Royal Guard,2007-01-01,105.0,http://www.eklavyatheroyalguard.com/,,tt0459605,,"As the kingdom of Devigarh comes apart at the seams, an aging bodyguard attempts to protect the Royal Family, as well as keep its darkest secrets from ever coming to light.",0,0,Eklavya: The Royal Guard,en +145059,There's Only One Sun,2007-01-01,9.0,,,tt1279185,,"Wong Kar-Wai reprises his futuristic mood from 2046 and waives a spy story of lush and betrayal to advertise Aurea, the new LCD technology by Philips.",0,0,There's Only One Sun,en +29272,El Greco,2007-01-01,119.0,,,tt0905329,Can Darkness Win Light?,"The story of the uncompromising artist and fighter for freedom, Domenicos Theotokopoulos, known to the world as ""El Greco"".",0,0,El Greco,en +14210,Nightmare City 2035,2007-01-01,0.0,,,tt0910868,,,0,0,Nightmare City 2035,en +20963,Elections Day,2007-01-01,122.0,,122776,tt1198196,,The employees of a radio station in Moscow are forced to organize the elections campaign for a future governor in one of Russia districts.,0,0,День выборов,ru +25977,Showdown at Area 51,2007-01-01,96.0,,,tt0854667,,Two aliens who crash on Earth must find a buried weapon that will destroy the planet and their own society if not stopped.,0,0,Showdown at Area 51,en +24874,Dark Mirror,2007-01-01,86.0,,,tt0486651,,The story about a photographer who moves her family into a home filled with mirrors which seem to reflect a different reality.,0,0,Dark Mirror,en +57654,Munyurangabo,2007-01-01,97.0,,,tt1031947,,An orphan of the Rwandan genocide travels from Kigali to the countryside on a quest for justice.,0,0,Munyurangabo,rw +70278,Where Souls Go,2007-01-01,87.0,,,tt0830184,,A teenage girl has problems with her family and life when her little brother is born with a heart problem.,0,0,Kuhu põgenevad hinged,en +257176,Shadow People,2007-01-01,96.0,,,tt0783581,,"Dan and Gretchen, a couple with a secretive past and a failing relationship, rent a guest house from another couple in California's San Fernando Valley. But jealousy and betrayal turn a casual friendship into a game of manipulation and deception.",0,0,Shadow People,en +138611,Le peuple invisible,2007-01-01,93.0,,,tt1277142,,No overview found.,0,0,Le peuple invisible,fr +58525,Parole sante,2007-01-01,,,,tt1147760,,,0,0,Parole sante,it +17302,The Art of Football from A to Z,2007-01-01,84.0,,,tt0804228,,No overview found.,0,0,The Art of Football from A to Z,en +20907,Opium: Diary of a Madwoman,2007-01-01,113.0,,,tt0803052,,A drug-addicted doctor who works in an asylum discovers that one of his patients is a gifted writer.,0,0,Ópium: Egy elmebeteg nö naplója,en +23628,Road to Victory,2007-01-01,0.0,,,tt0982922,,A star athlete on the verge of turning pro must decide which dream to pursue while he battles his own body.,0,0,Road to Victory,en +16962,Barbie Fairytopia: Magic of the Rainbow,2007-01-01,75.0,,411859,tt1007920,,Elina goes to a fairy school to learn dancing and fairy magic. The spring of the fairy land is soon threatened by evil Laverna who intends to prevent fairies from performing the annual vital rainbow dance. Elina must stop quarreling with her fellow students and unite them to save the first bud of the spring.,0,0,Barbie Fairytopia: Magic of the Rainbow,en +36926,Ghosts of Abu Ghraib,2007-01-01,78.0,,,tt0912585,Facing The Darkness Within,An examination of the prisoner abuse scandal involving U.S. soldiers and detainees at Iraq's Abu Ghraib prison in the fall of 2003.,0,0,Ghosts of Abu Ghraib,en +86321,Playing,2007-01-01,100.0,,,tt1165293,,"Following a newspaper ad, ordinary women tell part of their life stories to director Eduardo Coutinho, which are then re-enacted by actresses, blurring the barriers between truth, fiction and interpretation.",0,0,Jogo de Cena,pt +20411,Until Death,2007-01-19,101.0,,,tt0783598,,"Van Damme plays a dirty cop who is hooked on heroin, and everyone dislikes him. Because of an accident he is put into a coma, and comes out of it a better person. He wakes up wanting to put things right.",10000000,0,Until Death,en +14773,10 MPH,2007-01-01,92.0,,,tt0446083,,"Two guys quit stodgy corporate jobs, scrounged up all the savings they could, collected credit cards, and stepped - or better yet - scooted forward to follow their biggest dream: to become filmmakers. Josh Caldwell rode a Segway from Seattle to Boston, while his buddy Hunter Weeks directed a film they both shot about the experience and about the moments leading up to this crazy twist on the Americ",0,0,10 MPH,en +40458,Welcome to the Jungle,2007-01-01,83.0,,,tt1090360,,"Two young couples head into the New Guinea wilderness in an effort to find Michael Rockefeller, the heir to the Rockefeller fortune who disappeared in 1961.",0,0,Welcome to the Jungle,en +80142,Sleeping Betty,2007-01-01,9.0,,,tt1121969,,"Princess Betty sleeps in a narcoleptic stupor. The king appeals to his subjects to wake her, and several respond: Uncle Henry VIII, Aunt Victoria, an emotional alien, a cool witch and a handsome prince. This worthy Prince Charles lookalike has to leave his royal suburb to save the princess, but will Betty be wakened with just a kiss?",0,0,Isabelle au bois dormant,fr +13544,FB: Fighting Beat,2007-01-01,78.0,,,tt1264961,,A group of young Muay Thai experts led by David are forced to use their deadly training to protect themselves when the local extortionist threatens to kill their mentors daughter if he doesn't give up his bar,0,0,อก 3 ศอก 2 กำปั้น,th +19528,Invisible Target,2007-01-01,129.0,,,tt0995739,,"Three cops team up to bring down a criminal gang of seven, who have their own hidden agenda.",0,0,男兒本色,cn +19587,The Education of Charlie Banks,2007-01-01,100.0,,,tt0783515,,College student Charlie Banks has to face old problems when the bully he had an unpleasant encounter with back in high school shows up on his campus.,0,0,The Education of Charlie Banks,en +46760,Float,2007-01-01,34.0,,,tt1024842,,"The story of a young painter from the Bahamas, Jonny Roberts, who travels to an exotic island to find inspiration but finds unexpected love and adventure in a complex and tortured Romeo.",0,0,Float,en +18056,The Take,2007-01-01,96.0,,,tt0828158,,"After he's shot during a heist in East L.A., an armored truck driver wrestles with rehabilitation and tracking down the man who committed the crime.",0,0,The Take,en +129882,Phantom Love,2007-01-01,87.0,,,tt0847510,,"A surreal drama about an alienated family set in Koreatown, Los Angeles and Rishikesh, India.",0,0,Phantom Love,en +17275,The All Together,2007-01-01,84.0,,,tt0450238,,No overview found.,0,0,The All Together,en +14666,Cougar Club,2007-01-01,93.0,,,tt0795361,,"When Spence and Hogan graduate from college, life is bleak. They have to work for heinous divorce lawyers that torture them. Spence has a girlfriend from hell and Hogan just wants to start his life already. As luck would have it, our two young men are presented with an opportunity, they develop a club of young men devoted to the older woman, the ""Cougar"" if you will.",0,0,Cougar Club,en +32226,The Indian,2007-01-01,91.0,,,tt0826559,,"""The Indian"" is a touching drama about a negligent father who must face the son he abandoned years earlier, and the emotional wreckage he caused, in order to obtain a life-saving transplant.",0,0,The Indian,en +18820,I Really Hate My Job,2007-01-01,90.0,http://www.ireallyhatemyjobthemovie.com/,,tt0831299,,"'Every day is another day closer to the day I'll never have to do this again.' Five women, one restaurant, one night, one birthday, one breakdown. Then the phone rings. A famous actor is coming for dinner. I Really Hate My Job is the story of an evening in a café in London's Soho.",0,0,I Really Hate My Job,en +36113,Getting Home,2007-01-01,110.0,,,tt0783475,,"A black comedy about a farmer who tries to bring home the body of his friend, who died far from their town.",0,0,Luo ye gui gen,zh +47241,Mia melissa ton Avgousto,2007-01-01,95.0,http://www.retrodb.gr/wiki/index.php/%CE%9C%CE%B9%CE%B1_%CE%BC%CE%AD%CE%BB%CE%B9%CF%83%CF%83%CE%B1_%CF%84%CE%BF%CE%BD_%CE%91%CF%8D%CE%B3%CE%BF%CF%85%CF%83%CF%84%CE%BF,,tt0970946,,,0,0,Μια μέλισσα τον Αύγουστο,el +7006,White Noise 2: The Light,2007-01-05,99.0,,102777,tt0496436,Sometimes they don't come back alone.,"A man's family brought back from the verge of death, he then discovers he can identify people who are about to die.",0,0,White Noise 2: The Light,en +77600,Jasne Błękitne Okna,2007-01-07,92.0,,,tt1047481,,"Film o przyjaźni dwóch dziewcząt, które poznają się w dzieciństwie. Mają swoje marzenia i plany, które w przyszłośFilm o przyjaźni dwóch dziewcząt, które poznają się w dzieciństwie. Mają swoje marzenia i plany, które w przyszłości się spełniają. Jedna z nich, Becia zostaje znaną aktorką. Druga z bohaterek, Sygita, zostaje krawcową, ma męża, dom i tak jak chciała pozostaje na prowincji, bo ten kawałek nieba kocha najbardziej.ci się spełniają. Jedna z nich, Becia zostaje znaną aktorką. Druga z bohaterek, Sygita, zostaje krawcową, ma męża, dom i tak jak chciała pozostaje na prowincji, bo ten kawałek nieba kocha najbardziej.",0,0,Jasne Błękitne Okna,en +14063,Adrift in Manhattan,2007-01-10,91.0,,,tt0497316,,The lives of three lonely strangers intersect while commuting on New York's 1 and 9 subway lines.,4000000,0,Adrift in Manhattan,en +39286,Four Last Songs,2007-01-11,110.0,,,tt0465461,,"A comic drama set on a Mediterranean island, where a motley collection of characters is seeking musical redemption.",0,0,Four Last Songs,en +15325,God Grew Tired of Us,2007-01-12,89.0,http://www.godgrewtiredofus.com/,,tt0301555,The Story of Lost Boys of Sudan,"GOD GREW TIRED OF US explores the indomitable spirit of three “Lost Boys” from the Sudan who leave their homeland, triumph over seemingly insurmountable adversities and move to America, where they build active and fulfilling new lives but remain deeply committed to helping the friends and family they have left behind.",0,0,God Grew Tired of Us,en +108177,Demetri Martin. Person.,2007-01-14,42.0,,,tt0954327,,"A unique talent, Demetri Martin is one of the hottest stand-up comics working today. His new special, Demetri Martin. Person. Inventive and insightful, this top-rated program brings the funny in ways youÂ've never seen.",0,0,Demetri Martin. Person.,en +284620,Mémoire de glace,2007-01-17,,,,tt0922525,,,0,0,Mémoire de glace,es +74950,Breakout,2007-01-18,0.0,,,tt0807707,,,0,0,Breakout,de +18514,Never Forever,2007-01-18,90.0,,,tt0817544,A moving experience!,"When an American woman begins a dangerous relationship with an attractive immigrant worker, in order to save her marriage, she finds her true self.",0,0,두번째 사랑,ko +24050,The Good Life,2007-01-18,106.0,,,tt0790676,,A story about a mostly normal young man who makes the most out of fitting in when he obviously doesn't.,0,0,The Good Life,en +8272,The Savages,2007-01-19,114.0,http://www.foxsearchlight.com/thesavages,,tt0775529,,A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.,0,0,The Savages,en +134215,Heroine,2012-09-21,140.0,,,tt1949548,Unlock Your Mind This summer,A female superstar struggles through the trials and tribulations of being a Bollywood actress.,0,0,Heroine,en +8398,The Hitcher,2007-01-19,84.0,,,tt0455960,Never pick up strangers.,"While driving through the New Mexico Desert during a rainy night, the college students Jim Halsey and his girlfriend Grace Andrews give a ride to the hitchhiker John Ryder. While in their car, the stranger proves to be a psychopath threatening the young couple with a knife, but Jim succeeds to throw him out of the car on the road. On the next morning, the young couple sees John in another car.",10000000,25399945,The Hitcher,en +18803,Expired,2007-01-19,107.0,,,tt0488535,,"The film revolves around Claire, a kind soul who resents having to enforce the law at all times, and Jay, an angry Traffic Officer who loves his job, being the perfect outlet for his anger and frustrations. Coming both from a place of despair and loneliness, Jay and Claire meet and engage in a tumultuous relationship which will eventually teach them that love can spread redemption.",0,0,Expired,en +14284,In the Shadow of the Moon,2007-01-19,109.0,,,tt0925248,,"Archival material from the original NASA film footage – much of it seen for the first time – plus interviews with the surviving astronauts, including Jim Lovell, Dave Scott, John Young, Gene Cernan, Mike Collins, Buzz Aldrin, Alan Bean, Edgar Mitchell, Charlie Duke and Harrison Schmitt.",2000000,0,In the Shadow of the Moon,en +18902,Zoo,2007-01-20,76.0,,,tt0874423,,"Through interviews and recreation, Zoo tells the story of ""zoos,"" or men who ""love"" animals, through a group of men involved in the fatal incident involving man-horse love.",0,0,Zoo,en +8414,Interview,2007-01-20,84.0,http://www.sonyclassics.com/interview/,,tt0480269,"A journalist and a starlet take on media, truth and celebrity.","After falling out with his editor, a fading political journalist is forced to interview America's most popular soap actress.",0,0,Interview,en +11161,Grace is Gone,2007-01-21,85.0,http://www.graceisgone-themovie.com/,,tt0772168,A story about one fathers love and courage,"Upon hearing his wife was killed in the Iraq war, a father takes his two daughters on a road trip.",0,0,Grace is Gone,en +12994,The Nines,2007-01-21,100.0,http://www.lookforthenines.com/,,tt0810988,Y9u never kn9w when y9ur number is up.,"A troubled actor, a television show runner, and an acclaimed videogame designer find their lives intertwining in mysterious and unsettling ways.",0,0,The Nines,en +13258,Son of Rambow,2007-01-22,96.0,http://www.sonoframbow.com/,,tt0845046,Make Believe. Not War.,"Will Proudfoot (Bill Milner) is looking for an escape from his family's stifling home life when he encounters Lee Carter (Will Poulter), the school bully. Armed with a video camera and a copy of ""Rambo: First Blood"", Lee plans to make cinematic history by filming his own action-packed video epic. Together, these two newfound friends-turned-budding-filmmakers quickly discover that their imaginative ― and sometimes mishap-filled ― cinematic adventure has begun to take on a life of its own!",4000000,6870249,Son of Rambow,en +14882,Hounddog,2007-01-22,102.0,,,tt0415856,,"A drama set in the American South, where a precocious, troubled girl finds a safe haven in the music and movement of Elvis Presley.",0,0,Hounddog,en +18040,Night Skies,2007-01-23,90.0,,,tt0460883,,"On March 13th, 1997 one of the largest UFO sightings ever recorded took place across the southwestern United States...",0,0,Night Skies,en +13534,How to Rob a Bank,2007-01-25,81.0,http://www.howtorobabank-themovie.com/,,tt0762104,...and 10 easy tips to get away with it.,"Caught in the middle of a bank robbery, a slacker and a bank employee become the ones who arbitrate the intense situation.",0,0,How to Rob a Bank,en +10075,Blood and Chocolate,2007-01-26,98.0,,,tt0397044,The hunt never tasted so sweet.,A young teenage werewolf is torn between honoring her family's secret and her love for a man.,0,0,Blood and Chocolate,en +15148,Man in the Chair,2007-01-27,107.0,,,tt0489225,,The story of an aspiring young filmmaker's encounter with a grumpy fount of movie lore.,0,0,Man in the Chair,en +77473,Kunskapens pris - balladen om den vilsne vandraren,2007-01-27,20.0,,,tt1126510,,"A singer in a bar full of weird people and mutants sing the story of an abandoned robot that is reactivated hundreds of years after an apocalyptic war. Wandering off searching for his origins, the robot meets characters of the ruined world, mutants, adventurers and common people. Always set to help humanity he makes both friends and enemies. (IMDb)",0,0,Kunskapens pris - balladen om den vilsne vandraren,sv +48780,Boat,2007-01-30,8.0,,,tt0940502,,A journey into night.,0,0,Boat,en +14019,Ex Drummer,2007-01-31,90.0,http://www.exdrummer.com/,,tt0812243,,Three handicapped losers who form a band ask famous writer Dries to be their drummer. He joins the band and starts manipulating them.,0,0,Ex Drummer,nl +97797,Dead Daughters,2007-02-01,123.0,http://ddpromo.ru/,,tt0477340,Be Good Or Die,"In present-day Moscow ghosts of three little girls killed by their insane mother randomly pick a person to watch over for a three days. If during this ""probation period"" person's moral standards appear not to be high enough The Daughters then kill him using telekinesis.",1200000,0,Мертвые дочери,ru +9966,The Messengers,2007-02-02,90.0,,164395,tt0425430,There is evidence to suggest that children are highly susceptible to paranormal phenomena. They see what adults cannot. They believe what adults deny. And they are trying to warn us.,"When the Solomons trade in the craziness of big-city life for the quiet of a North Dakota farm, little do they expect the nightmare that follows. Soon after arriving, teenage Jess (Kristen Stewart) and her younger brother see terrifying apparitions and endure attacks from a supernatural source. Jess must warn her disbelieving family before it is too late to save them.",16000000,1109660,The Messengers,en +189364,Miguel and William,2007-02-02,0.0,,,tt0497411,,A romantic comedy inventing a friendship between Cervantes and Shakespeare who both fall in love with a beautiful Spanish woman.,0,0,Miguel and William,es +246438,Семь кабинок,2007-02-07,,,,tt1821599,,,0,0,Семь кабинок,ru +68444,Blind,2007-02-08,98.0,,,tt0808174,,,0,0,Blind,nl +9963,Premonition,2007-02-08,96.0,,,tt0477071,Reality is only a nightmare away,"A depressed housewife who learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the day after to a world in which he is still dead.",20000000,84146832,Premonition,en +2196,Death at a Funeral,2007-02-09,90.0,http://www.deathatafuneral-themovie.com/,,tt0795368,From director Frank Oz comes the story of a family that puts the F U in funeral.,Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.,9000000,46,Death at a Funeral,en +11172,Music and Lyrics,2007-02-09,96.0,,,tt0758766,Share the music with someone you love.,"A washed up singer is given a couple days to compose a chart-topping hit for an aspiring teen sensation. Though he's never written a decent lyric in his life, he sparks with an offbeat younger woman with a flair for words.",40000000,145896422,Music and Lyrics,en +2267,The Last Mimzy,2007-02-09,94.0,http://www.mimzy.com,,tt0768212,An intergalactic package from light years away unleashes an adventure beyond imagination.,"Two siblings begin to develop special talents after they find a mysterious box of toys, and soon their parents and even their teacher are drawn into a strange new world – and find a task ahead of them that is far more important than any of them could imagine.",0,27297451,The Last Mimzy,en +9815,Goal! II: Living the Dream,2007-02-09,115.0,,110177,tt0473360,,"Tempted away from Newcastle United to join Real Madrid, rising star Santiago Munez finds this latest change of fortune the greatest challenge yet - personally as well as professionally. He is reunited with Gavin Harris, though they must compete to be on the team, and estranged from fiancee Roz, whose nursing career keeps her back home.",230400,0,Goal! II: Living the Dream,en +9577,To the Limit,2007-02-09,95.0,,,tt0959282,,Daredevil mountain climbers on their attempt to break yet another speed climbing record.,0,0,Am Limit,en +113432,Wrestling,2007-02-10,20.0,,,tt1157732,,A love story about two gay wrestlers living in rural Iceland who must keep their relationship a secret from the inner world of Iceland's national and very macho sport.,0,0,Bræðrabylta,is +21343,Reverb,2007-02-10,88.0,,,tt0772197,,"A rock musician, in need for a hit album, locks himself and his band up overnight inside a recording studio. While sampling an old recording with a spooky voice inside, a life and death struggle against the ultimate evil ensues.",0,0,Reverb,en +18633,Slipstream,2007-02-10,96.0,,,tt0499570,,"Aging screenwriter Felix Bonhoeffer has lived his life in two states of existence: in reality and his own interior world. While working on a murder mystery script, and unaware that his brain is on the verge of implosion, Felix is baffled when his characters start to appear in his life, and vice versa.",0,27769,Slipstream,en +15020,Poor Boy's Game,2007-02-11,104.0,,,tt0816616,,"Donnie Rose went to prison for beating a young man so brutally it left him handicapped for life. Nine years later, Donnie is out. He's a different man with only one place to go: back home to the same violent and racist neighborhood that created him. At the other end of town, the black community still wants revenge. The instrument of justice will be Ossie Paris, a devastatingly talented boxer who challenges Donnie to a match; a match Donnie's family and peers won't let him refuse. George Carvery has waited nine years to avenge his son's fate at the hands of Donnie. When finally they meet face to face, however, both realize they share a similar desire to overcome the past.",0,0,Poor Boy's Game,en +24059,When a Man Falls,2007-02-12,86.0,,,tt0468965,In the end... she got what she wanted.,"The intertwining lives of three men reveal that each deal with his problems in different, self-destructive ways",0,0,When A Man Falls In The Forest,en +2692,The Red Elvis,2007-02-13,90.0,,,tt0949770,,,0,0,Der rote Elvis,de +1922,Irina Palm,2007-02-13,103.0,,,tt0762110,,"Maggie, a quiet retiring grandmother, finds herself helpless as her grandson’s health deteriorates. When one last chance appears, but money is desperately short, Maggie acts to raise the cash in a fashion that surprises everyone but her...",0,0,Irina Palm,en +4344,Hotel Very Welcome,2007-02-13,90.0,http://www.hotelverywelcome.de,,tt0949423,,No overview found.,0,0,Hotel Very Welcome,en +17223,Two Tigers,2007-02-14,0.0,,,tt0867205,,No overview found.,0,0,Two Tigers,en +3037,Yella,2007-02-14,89.0,http://www.yella-der-film.de/,,tt0806686,,A near-death experience causes a woman to relive someone else's final moments.,3000000,0,Yella,de +54309,Notte prima degli esami - Oggi,2007-02-14,0.0,,,tt0814380,,,0,0,Notte prima degli esami - Oggi,it +49828,Police,2007-02-16,110.0,,,tt0826606,,,0,0,Polis,tr +24810,Nora Roberts' Carolina Moon,2007-02-19,95.0,,,tt0840787,,A woman who has psychic visions returns to her hometown to exorcise her demons. Once there she finds both danger and love.,0,0,Nora Roberts' Carolina Moon,en +24351,Flight of Fury,2007-02-20,98.0,,,tt0783518,A flight plan to freedom...,"John, is sent in to recover a stolen Stealth Bomber. His trusty sidekick Rojar and John's ever faithful Jessica, fight the rebel forces of Banansistan, led by the vivacious Ellianna.",12000000,0,Flight of Fury,en +146380,The Legend of Bloody Jack,2007-02-27,84.0,,,tt0961206,He's not just a legend,The legend of Jack The Ripper comes to real when one of his descendants revive him.,0,0,The Legend of Bloody Jack,en +14650,Michou d'Auber,2007-02-28,124.0,,,tt0478705,,No overview found.,0,0,Michou d'Auber,en +62731,Lovey-Dovey,2007-03-01,100.0,,107478,tt0976209,,"Andrei and Marina are married for 7 years and they feel there is no more love. They ask a famous doctor to help them, and he helps... by putting their minds into the bodies of each other. Now Andrei is in his wife's head, so he lives the life of his own wife, who runs an art gallery, and Marina in the body of Andrei becomes a lawyer...",0,0,Любовь-морковь,ru +29362,Full of It,2007-03-01,91.0,,,tt0446752,,A young kid (Pinkston) is forced to live out the lies he told to become popular.,0,0,Full of It,en +2977,Becoming Jane,2007-03-02,120.0,http://becomingjane-themovie.com/,,tt0416508,Her own life is her greatest inspiration.,A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.,16500000,37311672,Becoming Jane,en +128598,Left for Dead,2007-03-04,84.0,,,tt0918645,,"Set in Mexico, Left For Dead is a bloody and sick dream ... A spaghetti western in terror. A desperate criminal will be caught in the ghost town of Amnesty alongside a vengeful demon ...",0,0,Left for Dead,es +38282,The Witnesses,2007-03-07,112.0,,,tt0487273,,"Manu arrives in Paris, in the early days of AIDS, at the beginning of the 1980s. He strikes up a friendship with Adrien, a wealthy doctor in his early fifties, who introduces him to Sarah and Mehdi, a young couple.",0,0,Les Témoins,fr +3048,The Great Global Warming Swindle,2007-03-08,74.0,http://www.greatglobalwarmingswindle.co.uk/,,tt1020027,,This film tries to blow the whistle on what it calls the biggest swindle in modern history: 'Man Made Global Warming'. Watch this film and make up your own mind.,0,0,The Great Global Warming Swindle,en +6079,Empties,2007-03-08,103.0,http://www.vratnelahve.cz/,,tt0809951,,"Czech literature teacher Josef Tkaloun, who is past retirement age, realises one day that he no longer understands his pupils, and so he quits… dramatically. What he does not predict is that in doing this he will lose his sense of place in society.",0,0,Vratné lahve,cs +23516,Frownland,2007-03-09,106.0,,,tt0970935,,"Social misfit and self-labeled ""troll from under the bridge"" Keith Sontag (Dore Mann) lives a sad and lonely existence in this disturbing black comedy -- an Independent Spirit Award nominee -- from director Ronald Bronstein. When he's not trying to sell coupons door-to-door, Keith struggles with evicting his roommate from their seedy apartment, helping a friend who's suicidal and just getting by as an outsider in the cruel city.",0,0,Frownland,en +8270,The Lookout,2007-03-09,99.0,http://video.movies.go.com/thelookout/,,tt0427470,Whoever has the money has the power,"Chris is a once promising high school athlete whose life is turned upside down following a tragic accident. As he tries to maintain a normal life, he takes a job as a janitor at a bank, where he ultimately finds himself caught up in a planned heist.",16000000,5367030,The Lookout,en +18290,Arranged,2007-03-10,90.0,,,tt0848542,,ARRANGED centers on the friendship between an Orthodox Jewish woman and a Muslim woman who meet as first-year teachers at a public school in Brooklyn. Over the course of the year they learn they share much in common - not least of which is that they are both going through the process of arranged marriages.,0,0,Arranged,en +114922,Scrambled Beer,2007-03-10,88.0,,,tt0810082,Una Mezcla que atrapa,"After moving into a new house with his friend, Vladimir starts to notice that he awakes every day in a different week as if he has traveled trough time. Could it be the popular local drink -- beer with eggs?",250,0,Scrambled Beer,en +26469,Skills Like This,2007-03-10,86.0,,,tt0800205,Everybody Wants to be Somebody,"Max Solomon faces the awful truth that he will never be a writer. So, in a desperate attempt to find his true calling, he turns to crime. In this inventive comedy, three friends have their lives turned upside down when one of them realizes that larceny might be his best skill.",0,0,Skills Like This,en +75375,The Trap: What Happened to Our Dream of Freedom,2007-03-11,180.0,,,tt0979263,Human beings will always betray you. You can only trust the numbers.,"Individual freedom is the dream of our age. It's what our leaders promise to give us, it defines how we think of ourselves and, repeatedly, we have gone to war to impose freedom around the world. But if you step back and look at what freedom actually means for us today, it's a strange and limited kind of freedom.",0,0,The Trap: What Happened to Our Dream of Freedom,en +179288,Blackbird,2007-03-12,108.0,,,tt0972546,,"In 1990s New York City, teen runaway Froggy is caught in the throes of heroin addiction as she falls in love with a fellow junky, war veteran Baylis. The couple finds comfort in each other, yet they are already far too deep in a wild downward spiral.",475000,0,Blackbird,en +46883,Quiet City,2007-03-12,78.0,,,tt0914382,,"Jamie is 21. She's from Atlanta. She's come to Brooklyn to visit her friend Samantha, but she can't find her. Jamie meets a stranger named Charlie on the subway and spends 24 hours hanging out with him.",2500,15425,Quiet City,en +15776,The Art of Crying,2007-03-17,106.0,,,tt0495040,,"Life is not easy for 11-year-old Allan living in South Jutland during the early 1970s. His mentally unstable father frequently threatens suicide and his mother has long since given up. It's up to Allan to keep the family together. When a rival family threatens his father's livelihood, Allan starts committing atrocious acts.",0,0,Kunsten at græde i kor,da +9793,The Hills Have Eyes 2,2007-03-22,89.0,,8918,tt0800069,Help isn't coming.,A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.,15000000,0,The Hills Have Eyes II,en +25973,What Love Is,2007-03-23,93.0,,,tt0439876,,"It's Valentine's Day and Tomhas big plans. He's about to get engaged and has a surprise party planned to share the good news with friends. But things take a turn for the worse. Tom returns home only to discover his girlfriend has packed up and left him. Now, instead of a surprise party, the surprise is on Tom. Fortunately, his friends are there to help him make sense of it all.",0,0,What Love Is,en +1267,Meet the Robinsons,2007-03-23,95.0,,,tt0396555,Think your family's weird?,"In this animated adventure, brilliant preteen inventor Lewis creates a memory scanner to retrieve his earliest recollections and find out why his mother gave him up for adoption. But when the villainous Bowler Hat Guy steals the machine, Lewis is ready to give up on his quest until the mysterious Wilbur Robinson shows up on the scene, whisking Lewis to the future to find the scanner and his mom.",150000000,169332978,Meet the Robinsons,en +1273,TMNT,2007-03-23,90.0,https://www.warnerbros.com/tmnt,,tt0453556,,"After the defeat of their old arch nemesis, The Shredder, the Turtles have grown apart as a family. Struggling to keep them together, their rat sensei, Splinter, becomes worried when strange things begin to brew in New York City.",34000000,95608995,TMNT,en +2355,Reign Over Me,2007-03-23,124.0,http://www.sonypictures.com/movies/reignoverme/index.html,,tt0490204,Let in the unexpected.,A man who lost his family in the September 11 attack on New York City runs into his old college roommate. Rekindling the friendship is the one thing that appears able to help the man recover from his grief.,20000000,22222308,Reign Over Me,en +18093,Northanger Abbey,2007-03-25,93.0,,,tt0844794,,A young woman's penchant for sensational Gothic novels leads to misunderstandings in the matters of the heart.,0,0,Northanger Abbey,en +211144,The Party Never Stops: Diary of a Binge Drinker,2007-03-26,90.0,,,tt0843868,,"A promising track star, 18 year old Jesse Brenner struggles with binge drinking during her freshman year of college.",0,0,The Party Never Stops: Diary of a Binge Drinker,en +80545,Wedding Belles,2007-03-29,95.0,,,tt0984159,,"A darkly humorous look at the lives and loves of four modern women, each with their own remarkable, intriguing and often tragic stories.",0,0,Wedding Belles,en +84089,"Maradona, the Hand of God",2007-03-29,113.0,,,tt0465737,,"Dramatizing of the many shocking highs and lows of Argentine soccer hero Diego Maradona, an extraordinary athlete and arguably the greatest player in the history of the sport.",0,0,"Maradona, la mano di Dio",it +77534,Fat Stupid Rabbit,2007-03-29,0.0,,,tt1297429,,,0,0,Тупой жирный заяц,ru +37817,Oh My God!,2007-03-30,96.0,,,tt0895777,,"During the Carnival in the historical site of Pelourinho (Salvador, Bahia, Brazil), we follow the lives of the tenants of a falling-to-pieces tenement house who try to get by using creativity, irony, humor and music.",0,0,"Ó Paí, Ó",pt +18598,Her Best Move,2007-03-31,101.0,,,tt0469429,,"15 year-old soccer prodigy, Sara Davis, has a chance to join the U.S. National Team, but she must juggle high school, romance, sports, and parental pressure while deciding her own priorities.",0,0,Her Best Move,en +19509,All The Days Before Tomorrow,2007-04-01,100.0,,,tt0439115,,"Wes is awakened in the middle of the night by an unexpected phone call. It’s Alison, the girl who could have been, who is flying home to Tokyo in the morning and wants to come by for a night of reminiscing before she goes.",0,0,All The Days Before Tomorrow,en +6636,The Mugger,2007-04-01,67.0,,,tt1006823,,"A man visits a school to enroll his son, but then he pulls out a gun and robs the school from their money. The movie follows the man and is shot with an unsteady handycam.",0,0,El asaltante,en +12855,Blue State,2007-04-27,88.0,,,tt0780486,,"BLUE STATE is a romantic comedy about a disgruntled Democrat who actually follows through on a drunken campaign promise to move to Canada if George ""Dubya"" Bush gets re-elected.",0,0,Blue State,en +30155,Naked Fear,2007-04-01,104.0,,110041,tt0943326,,"When Diana (Danielle De Luca) takes a job as a stripper in a sleepy New Mexico town, she's unaware that her fellow dancers have been disappearing. The local sheriff (Joe Mantegna) is stumped, but Diana learns the truth when she becomes the next victim. Her abductor takes her into the desert, where he strips her and lets her go. Then, he begins to hunt Diana with a rifle through the wilderness as s",0,0,Naked Fear,en +46712,Blue Eyelids,2007-04-02,98.0,,,tt0481320,,"Marina wins a paradise vacation for two, but when she realizes that she has no one to bring along, she decides to invite a stranger named Victor. The pair soon discovers that true love depends more on compatibility rather than idyllic scenery.",0,0,Párpados azules,es +1272,Sunshine,2007-04-05,107.0,,,tt0448134,"If the sun dies, so do we.","Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun — but the mission fails. Seven years later, a new team is sent to finish the mission as mankind’s last hope.",50000000,32017803,Sunshine,en +126043,Cartola - Música Para os Olhos,2007-04-06,0.0,,,tt1019402,,,0,0,Cartola - Música Para os Olhos,pt +132185,Two Days In April,2007-04-09,90.0,,,tt0970965,,"Follows the story of 4 college football players signed by the sports agency IMG, as they bring them to a training facility in Florida and both physically and mentally prepare them for the NFL draft.",0,0,Two Days In April,en +8329,[REC],2007-04-10,78.0,http://www.3l-filmverleih.de/rec,74508,tt1038988,One witness. One camera,A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.,1500000,30448000,[REC],es +52150,Zincirbozan,2007-04-13,110.0,,,tt0985119,,,0,0,Zincirbozan,tr +13574,Year of the Dog,2007-04-13,97.0,,,tt0756729,Has the world left you a stray?,A secretary's life changes in unexpected ways after her dog dies.,0,0,Year of the Dog,en +120528,Moving Midway,2007-04-14,95.0,http://www.movingmidway.com/,,tt1051245,,"When New York film critic Godfrey Cheshire returns home to North Carolina in early 2004 and hears that his cousin Charlie Silver plans to uproot and move the buildings of Midway Plantation, their family’s ancestral home, an extraordinary, emotional journey begins.",0,0,Moving Midway,en +85658,All In This Tea,2007-04-14,70.0,http://www.allinthistea.com/trailer.html,,tt1015968,,"During the 1990s, David Lee Hoffman searched throughout China for the finest teas. He's a California importer who, as a youth, lived in Asia for years and took tea with the Dali Lama. Hoffman's mission is to find and bring to the U.S. the best hand picked and hand processed tea. This search takes him directly to farms and engages him with Chinese scientists, business people, and government officials: Hoffman wants tea grown organically without a factory, high-yield mentality. By 2004, Hoffman has seen success: there are farmer's collectives selling tea, ways to export ""boutique tea"" from China, and a growing Chinese appreciation for organic farming's best friend, the earthworm.",0,0,All In This Tea,en +19551,Shadow Puppets,2007-04-16,103.0,,,tt0491145,,"Director Michael Winnick's chilling tale stars James Marsters as Jack, one of eight captives who awaken in an abandoned asylum not knowing who they are or why they are together. They discover that they've been used in an experiment to erase disturbing memories, but instead, a murderous creature has been unleashed. Reaching out from the shadows, the monster hunts the eight strangers as they race to escape the asylum.",2000000,0,Shadow Puppets,en +37633,Nos amis les Terriens,2007-04-18,85.0,,,tt0810990,,What on earth would extraterrestrials think if they could observe us? This is the movie they made.,0,0,Nos amis les Terriens,fr +9703,The Last Legion,2007-04-19,102.0,,,tt0462396,The end of an empire...the beginning of a legend.,"As the Roman empire crumbles, young Romulus Augustus flees the city and embarks on a perilous voyage to Britain to track down a legion of supporters.",67000000,25303038,The Last Legion,en +6145,Fracture,2007-04-20,113.0,,,tt0488120,I shot my wife... prove it.,"A husband is on trial for the attempted murder of his wife, in what is seemingly an open/shut case for the ambitious district attorney trying to put him away. However, there are surprises for both around every corner, and, as a suspenseful game of cat-and-mouse is played out, each must manipulate and outwit the other.",0,91354215,Fracture,en +10294,Vacancy,2007-04-20,80.0,,86112,tt0452702,Once you've checked in... The terror begins.,"A young married couple becomes stranded at an isolated motel and find hidden video cameras in their room. They realize that unless they escape, they'll be the next victims of a snuff film.",19000000,35300645,Vacancy,en +10946,Earth,2007-04-22,90.0,http://www.loveearth.com/de/earthfilm,,tt0393597,The remarkable story of three families.,"From the acclaimed team that brought you BBC's visual feast ""Planet Earth,"" this feature length film incorporates some of the same footage from the series with all new scenes following three remarkable, yet sadly endangered, families of animal across the globe.",15000000,109000000,Earth,en +38743,The Dukes,2007-04-23,96.0,http://www.thedukes-movie.com/,,tt0470737,"The music was then , the time is now","The Dukes,a Doo Wop group, were on top of the world at 17, now are struggling for survival in 2008. Their manager is desperately trying to get them work but is met with failure at every turn. Finally pushed to the extreme , they pull a heist only a fool would attempt, which leaves them even more desperate. When all seems lost, they find themselves.",0,0,The Dukes,en +19203,Graduation,2007-04-24,89.0,,,tt0475286,,"Four best friends, about to graduate from high school, must find a way to raise money to help a family member in need. When one of them discovers her banker father having an affair, the foursome plots to rob his bank during graduation ceremonies. When things don't go according to plan, they end up learning more about themselves in one day than they ever did in school.",0,0,Graduation,en +14843,Ten Inch Hero,2007-04-25,97.0,http://www.teninchhero.com,,tt0829297,"Stop by, grab a sandwich, fall in love.",Four friends search for love and happiness while working at a California sandwich shop.,0,0,Ten Inch Hero,en +86556,11 Minutes Ago,2007-04-26,83.0,,,tt0423783,,"Traveling in 11-minute increments, a time-tumbler from 48-years in the future spends two years of his life weaving through a two-hour wedding reception.",0,0,11 Minutes Ago,en +4921,Vivere,2007-04-26,102.0,,,tt0497467,,No overview found.,0,0,Vivere,de +62688,Nevalyashka,2007-04-26,90.0,,,tt0814229,,Nevalyashka is a young and very successful boxer who is dreaming about the winning against the famous champion...,0,0,Nevalyashka,en +13280,Kickin' It Old Skool,2007-04-27,108.0,,,tt0772178,,"""Kickin' It Old Skool"" revolves around a 12-year-old breakdancer, who in 1986 hits his head while performing at a talent show and as a result is comatose for 20 years. He awakens to find he is a grown man. With the mind and experience of a young kid, he attempts to revive his and his dance team's short-lived career with the hopes of helping support his parents' failing yogurt shop.",0,0,Kickin' It Old Skool,en +9785,The Invisible,2007-04-27,102.0,,,tt0435670,"Life, death and something in between.",After an attack leaves him in limbo -- invisible to the living and also near death -- a teenager discovers the only person who might be able help him is his attacker.,30000000,26810113,The Invisible,en +23524,Steep,2007-04-28,92.0,,,tt1003118,,Steep traces the legacy of extreme skiing from its early pioneers to the daredevils of today.,0,0,Steep,en +17038,Lake Placid 2,2007-04-28,88.0,,97768,tt0974583,,"Man-eating crocodiles return to the lake as two males and one aggressive female crocodile, which is protecting her nest, wreak havoc on the locals.",0,0,Lake Placid 2,en +13072,Brooklyn Rules,2007-04-30,99.0,,,tt0283503,Not made to be broken,"Brooklyn, 1985. With the mob world as a backdrop, three life-long friends struggle with questions of love, loss and loyalty.",8000000,458232,Brooklyn Rules,en +21138,The Sandlot: Heading Home,2007-05-01,96.0,,87214,tt0817307,,A successful professional baseball player gets his ego in check via an unreality check when he travels back in time to his boyhood sandlot ball-playing days.,0,0,The Sandlot: Heading Home,en +1950,Lucky You,2007-05-01,124.0,http://luckyyoumovie.warnerbros.com/,,tt0338216,Change your game. Change your life.,A professional poker player whose astounding luck at the table fails to translate into his lonesome love life attempts to win the World Series of Poker while simultaneously earning the affections of a beautiful Las Vegas singer.,0,5761917,Lucky You,en +2197,Sounds of Sand,2007-05-02,96.0,http://www.soundsofsand.be/,,tt0889222,,,5000000,0,Si le vent soulève les sables,fr +6391,Jellyfish,2007-05-05,82.0,,,tt0807721,Life Stings,"Meduzot (the Hebrew word for Jellyfish) tells the story of three very different Israeli women living in Tel Aviv whose intersecting stories weave an unlikely portrait of modern Israeli life. Batya, a catering waitress, takes in a young child apparently abandoned at a local beach. Batya is one of the servers at the wedding reception of Keren, a young bride who breaks her leg in trying to escape from a locked toilet stall, which ruins her chance at a romantic honeymoon in the Caribbean. One of the guests is Joy, a Philippine chore woman attending the event with her employer, and who doesn't speak any Hebrew (she communicates mainly in English), and who is guilt-ridden after having left her young son behind in the Philippines.",1800000,0,Meduzot,he +18375,A Stranger's Heart,2007-05-05,0.0,,,tt0938291,Sometimes Love Comes Twice in a Lifetime.,Man and woman (Peter Dobson and Samantha Mathis) fall in love in a heart transplant facility. They are both attracted to a little girl (Mary Matilyn Mouser) who turns out to be the orphan of their heart donors...,0,0,A Stranger's Heart,en +24927,Night Of The Living Dead 3D,2007-05-06,80.0,,,tt0489244,,"Both an homage to and a re-imagining of the original 1968 film, this update follows a group of survivors trapped in a farmhouse battling a siege of undead zombies....in 3D!",3000000,1449945,Night Of The Living Dead 3D,en +15019,I Could Never Be Your Woman,2007-05-11,97.0,,,tt0466839,Find Yourself. In Love.,This movie follows a mother who falls for a younger man while her daughter falls in love for the first time. Mother Nature messes with their fates.,24000000,9576495,I Could Never Be Your Woman,en +17274,American Pastime,2007-05-14,105.0,,,tt0825225,,"American Pastime tells a poignant story set against the Japanese-American internment camps during World War II. Rounded up and uprooted from their everyday lives, they remained loyal to the United States and ironically turned to that most American of sports - baseball - as a way to deal with their plight.",0,0,American Pastime,en +348544,Roanoke: The Lost Colony,2007-05-15,86.0,,,tt1029364,"117 men, women and children vanish without trace - Inspired by the true story.",A fictional tale based on the true events of the Lost Colony of Roanoke Island in 1587.,0,0,Roanoke: The Lost Colony,en +67276,Absurda,2007-05-16,2.0,,,tt3367188,,A group of people are sitting in a theatre watching a movie when one realises that the woman on the screen is her. (IMDb),0,0,Absurda,en +24202,Blind Date,2007-05-16,80.0,,,tt0480268,,"Affected by tragedy, a married couple decide to role play a blind date.",0,0,Blind Date,en +15476,7eventy 5ive,2007-05-16,100.0,,,tt0462160,,"As another semester draws to a close at the University of Dreyskill, a simple game dreamt to help students avoid studying becomes a bloody battle for survival in this stalk-and-slash frightener from filmmaking duo Brian Hooks and Deon Taylor.",3000000,0,7eventy 5ive,en +14459,Storm Warning,2007-05-17,86.0,,,tt0800367,,A yuppie couple lost in a swamp seek refuge at an isolated farmhouse only to discover they've jumped out of the frying pan into the fire.,0,0,Storm Warning,en +810,Shrek the Third,2007-05-17,93.0,http://www.shrekthethird.com/flash/index.html,2150,tt0413267,Who's ready for Thirds?,"The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.",160000000,798958165,Shrek the Third,en +77564,Cruelty,2007-05-17,89.0,,,tt1040002,,,0,0,Жестокость,ru +46930,Magnus,2007-05-18,86.0,http://magnusfilm.com/,,tt0979917,"Who's not loved, will not live.","Magnus, a handsome teenager, wants to commit suicide and his father tries to change his mind.",0,0,Magnus,en +55225,Six Days in June,2007-05-18,105.0,,,tt1033631,,"The shooting lasted on six tense days in June 1967, but the Six Day War has never really ended. Every crisis that has ripped through this region in the ensuing decades stems from those six fateful days.",0,0,Six Days in June,en +18893,Joe Strummer: The Future Is Unwritten,2007-05-18,123.0,http://www.joestrummerthemovie.com/,,tt0800099,,"As the front man of the Clash from 1977 onwards, Joe Strummer changed people's lives forever. Four years after his death, his influence reaches out around the world, more strongly now than ever before. In ""The Future Is Unwritten"", from British film director Julien Temple, Joe Strummer is revealed not just as a legend or musician, but as a true communicator of our times. Drawing on both a shared punk history and the close personal friendship which developed over the last years of Joe's life, Julien Temple's film is a celebration of Joe Strummer - before, during and after the Clash.",0,0,Joe Strummer: The Future Is Unwritten,en +310458,Zabardast,2007-05-18,0.0,,,tt1219390,,A scientist makes a coat with natural powers. The coat lands in the hands of Pushkar who will use it to win the heart of his lady love.,0,0,Zabardast,en +285,Pirates of the Caribbean: At World's End,2007-05-19,169.0,http://disney.go.com/disneypictures/pirates/,295,tt0449088,"At the end of the world, the adventure begins.","Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.",300000000,961000000,Pirates of the Caribbean: At World's End,en +142161,9.79*,2012-10-09,79.0,http://espn.go.com/30for30/film?page=9.79,,tt2318158,,A look into the 100-meter final at the 1988 Seoul games.,0,0,9.79*,en +35253,Madame Tutli-Putli,2007-05-19,17.0,http://films.nfb.ca/madame-tutli-putli/index.php,,tt1029440,,"Madame Tutli-Putli boards the Night Train, weighed down with all her earthly possessions and the ghosts of her past. She travels alone, facing both the kindness and menace of strangers. As day descends into dark, she finds herself caught up in a desperate metaphysical adventure.",0,0,Madame Tutli-Putli,en +14066,"Romulus, My Father",2007-05-19,104.0,,,tt0462023,,"It tells the story of Romulus, his beautiful wife, Christina, and their struggle in the face of great adversity to bring up their son, Raimond. It is a story of impossible love that ultimately celebrates the unbreakable bond between father and son.",0,0,"Romulus, My Father",en +37003,U2 3D,2007-05-19,85.0,http://www.u23dmovie.com/,,tt0892375,Hear See Experience,"A 3-D presentation of U2's global ""Vertigo"" tour. Shot at seven different shows, this production employs the greatest number of 3-D cameras ever used for a single project.",15000000,22730842,U2 3D,en +14552,"Have Dreams, Will Travel",2007-05-21,86.0,http://www.dreamitoutloud-themovie.com,,tt0446802,You're never too young to have a plan,"West Texas, in the 1960's. A tale of two 12-year-olds who embark on an adventure to find new parents in order to escape their unhappy and emotionally unsatisfying family life.",5000000,0,"Have Dreams, Will Travel",en +13848,Stuck,2007-05-21,85.0,,,tt0758786,Two Destinies Are About To Collide.,"A young woman commits a hit-and-run, then finds her fate tied to her victim.",5000000,0,Stuck,en +1991,Death Proof,2007-05-21,113.0,http://www.deathproof.net/,339577,tt1028528,A crash course in revenge,"Austin's hottest DJ, Jungle Julia, sets out into the night to unwind with her two friends Shanna and Arlene. Covertly tracking their moves is Stuntman Mike, a scarred rebel leering from behind the wheel of his muscle car, revving just feet away.",25000000,25037897,Death Proof,en +24632,The Mad,2007-05-22,83.0,,,tt0848552,,A horror-thriller in which a doctor and his teenage daughter are terrorized by flesh-eating zombies at a truck stop.,0,0,The Mad,en +50318,Go Go Tales,2007-05-23,96.0,,,tt0393329,,A financial struggle between owners of a go-go club threatens its future.,4000000,907456,Go Go Tales,en +10524,Trivial,2007-05-23,103.0,,,tt0864918,,"An inspector who just suffered a family tragedy is looking for a missing older man. Man's family is of no help, or are they hiding something? He is helped by a ghost of an actress who died 30 years ago, or is he slowly going insane?",0,0,La Disparue de Deauville,fr +280674,Bigfoot's Reflection,2007-05-23,48.0,,,tt2042464,Does the creature we seek live within us too??,"How the quest for an ephemeral monster changes the monster hunter, for good or ill.",0,0,Bigfoot's Reflection,en +2015,Secret Sunshine,2007-05-23,142.0,,,tt0817225,,"Sin-ae moves with her son Jun to Miryang, the town where her dead husband was born. As she tries to come to herself and set out on new foundations, another tragic event overturns her life.",0,0,밀양,ko +219931,Argentina latente,2007-05-24,0.0,,,tt1002581,,,0,0,Argentina latente,es +20742,Shootout at Lokhandwala,2007-05-25,150.0,,,tt0811066,,"On a calm summer day in 1991, in the bustling Lokhandwala Complex, five criminals including Maya and Dilip were counting 70 lakhs in flat no. 32 B, when 286 policemen, headed by ACP Khan, took strategic positions around their building. A gunfire ensued and the entire nation witnessed the most talked about daylight encounter lasting 6 hours that transformed suburban Mumbai into a war zone.",11000000,12000000,Shootout at Lokhandwala,hi +2001,We Own the Night,2007-05-25,117.0,,,tt0498399,Two brothers on opposite sides of the law. Beyond their differences lies loyalty.,A New York nightclub manager tries to save his brother and father from Russian mafia hitmen.,21000000,54926886,We Own the Night,en +27137,Sybil,2007-05-28,89.0,,,tt0499260,,A true story of a young woman whose abusive childhood results in her developing a multiple personality disorder.,0,0,Sybil,en +64944,A Parting Shot,2007-05-30,84.0,,,tt0910935,,"A rebellious teenager and a ""border-line"" young nurse will learn to tame each other and get a fresh start in life...",2700000,0,Pas Douce,fr +2002,The Last Mistress,2007-05-30,104.0,,,tt0437526,,"Secrets, rumors and betrayals surround the upcoming marriage between a young dissolute man and virtuous woman of the French aristocracy.",6500000,0,Une vieille maîtresse,fr +156288,Fool N Final,2007-06-01,0.0,,,tt0493417,,"A million-worth diamond discovered in India is stolen and sent to Dubai. To pick up the diamond from Dubai Airport, Rocky (Chunkey Pandey) is sent. However, a dreaded underworld don, Moscow Chikna (Arbaaz Khan) kidnaps Rocky and steals the diamond from him. After completing his job, Moscow Chikna kills Rocky and flees. The story then twists to another underworld don, JD (Zakir Hussain) also has his eyes on the stolen diamond. To steal the diamond from Moscow Chikna, JD sends a team of foolish robbers, including Raja (Shahid Kapoor), Tina (Ayesha Takia), Chobey (Paresh Rawal) and an dimwit pilot Puttu (Johnny Lever). As they fail to rob the diamond, they witness Moscow Chikna being murdered by an unknown gangster named Gunmaster G9.",0,0,Fool N Final,en +14138,Black Water,2007-06-01,90.0,http://www.blackwatermovie.com/,,tt0816436,What you can't see can hurt you.,A terrifying tale of survival in the mangrove swamps of Northern Australia.,700,0,Black Water,en +4964,Knocked Up,2007-06-01,129.0,http://knockedupmovie.com/,,tt0478311,Save the due date.,"For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.",30000000,219076518,Knocked Up,en +25142,The Banishment,2007-06-01,157.0,,,tt0488905,,"A trip to the pastoral countryside reveals a dark, sinister reality for a family from the city.",0,0,Изгнание,ru +14126,Catacombs,2007-06-01,92.0,,,tt0449471,Below the city of lights exists a world of darkness.,"On her first trip to Paris, a young woman hits a party in the Catacombs, the 200-mile labyrinth of limestone.",0,0,Catacombs,en +34869,Cargo 200,2007-06-06,89.0,http://www.gruz200.ru/main/,,tt0847880,,A young woman is taken hostage by a police officer and subsequently abused by the lawman gone mad.,0,121129,Груз 200,ru +18178,Shadows,2007-06-06,120.0,,,tt0834102,,"A successful young doctor with a beautiful wife, a happy child, and a comfortable house finds his life suddenly changed in ways he never thought possible after being injured in a serious car accident. To the outside eye Lazar Perkov has everything -- indeed his friends and colleagues have even gone so far as to christen him with the nickname ""Lucky."" But appearances can sometimes be...",0,0,Сенки,en +30641,Grizzly Rage,2007-06-07,86.0,,,tt0896816,,No overview found.,2000000,0,Grizzly Rage,en +84925,Profit Motive and the Whispering Wind,2007-07-05,58.0,,,tt1158308,,A visual essay about the progressive tradition of the United States as seen through grave markers and monuments.,0,0,Profit Motive and the Whispering Wind,en +138502,Offline,2012-11-14,0.0,,,tt2327453,,A man attempts to reclaim the life that prison took from him but his dark past threatens to ruin everything.,0,0,Offline,nl +298,Ocean's Thirteen,2007-06-07,122.0,http://oceans13.warnerbros.com/,304,tt0496806,What are the odds of getting even? 13 to one.,"Danny Ocean's team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he's got. Even if it means asking for help from an enemy.",85000000,311312624,Ocean's Thirteen,en +1691,Hostel: Part II,2007-06-08,93.0,,86578,tt0498353,Americans...they have no imagination.,"Following a geographical tour of Slovakia, three young American women are lured into a hostel by a handsome young man who sells them to the twisted masters, ties them up and brings upon an unthinkable world of pain.",10200000,35619521,Hostel: Part II,en +62527,Johnny Kapahala - Back on Board,2007-06-08,90.0,http://movies.disney.com/johnny-kapahala-back-on-board,394316,tt0942378,He's Back! And Catching More Waves!,"Johnny Kapahala, a teen snowboarding champion from Vermont, returns to Oahu, Hawaii, for the wedding of his hero -- his grandfather, local surf legend Johnny Tsunami -- and to catch a few famous Kauai waves. When Johnny arrives, he meets his new family including ""Uncle Chris"" (the 12-year-old son of his new step-grandmother) who resents the upcoming marriage. Chris's only interest is to join a mountain boarding crew led by a teenage bully. When Johnny's grandfather and his new wife open a surf shop that also caters to mountain boarders, they are soon embroiled in a turf war with a rival shop owner who wants to shut their business down.",0,0,Johnny Kapahala - Back on Board,en +22551,Believers,2007-06-11,95.0,,,tt0878652,,Two paramedics responding to an emergency call find themselves kidnapped by a religious sect whose great obsession is to stop the end of the world by committing suicide and killing people.,0,0,Believers,en +154207,Hellboy Animated: Iron Shoes,2007-06-12,3.0,,123203,tt1047474,,"In Ireland in 1961, Hellboy enters a ruined tower and is attacked by Iron Shoes.",0,0,Hellboy Animated: Iron Shoes,en +13312,Inside,2007-06-13,79.0,,,tt0856288,Terror comes calling.,"Four months after the death of her husband, a woman on the brink of motherhood is tormented in her home by a strange woman who wants her unborn baby.",3000000,0,À l'intérieur,fr +54893,One Day Like Rain,2007-06-15,90.0,,,tt0815250,,A teenage girl living in California suburbia devises a metaphysical experiment designed to save the world from what she sees as an impending doom...but the results of such an experiment prove to be both beneficial and destructive.,500000,0,One Day Like Rain,en +8049,The Grocer's Son,2007-06-15,96.0,http://www.lefilsdelepicier-lefilm.com/,,tt0864770,,"Antoine Sforza, a thirty-year-old young man, left his village ten years before in order to start a new life in the big city, but now that his father, a traveling grocer, is in hospital after a stroke, he more or less reluctantly accepts to come back to replace him in his daily rounds.",0,0,Le Fils de l'épicier,fr +17725,Grow Your Own,2007-06-15,97.0,,,tt0847830,,An English community gets testy when a refugee family is granted a plot of land on which to grow vegetables.,0,0,Grow Your Own,en +17483,Shelter,2007-06-16,97.0,,,tt0942384,Home is where you least expect to find it,"Forced to give up his dreams of art school, Zach works dead-end jobs to support his sister and her son. Questioning his life, he paints, surfs and hangs out with his best friend, Gabe. When Gabe's older brother returns home for the summer, Zach suddenly finds himself drawn into a relationship he didn't expect.",0,0,Shelter,en +55825,Spider,2007-06-17,10.0,,,tt1029161,,,0,0,Spider,it +64393,Hard-Hearted,2007-06-19,84.0,,,tt0905618,,A provincial war vet arrives in Moscow and subsequently takes on a gang of bad cops.,0,0,Kremen,en +49084,Steak,2007-06-20,82.0,,,tt0889665,,A French comedy with comedians Eric & Ramzy made by Quentin Dupieux a.k.a. Mr. Oizo.,0,0,Steak,en +102305,August Evening,2007-06-21,128.0,,,tt1020936,,"A film about a farm worker named Jaime and his young, widowed daughter-in-law, Lupe, as their lives are in turmoil.",0,0,August Evening,en +107976,Black House,2007-06-21,104.0,,,tt1193490,,"Jun-oh, an insurance claims agent, faces off with a client who he suspects of committing murders with the intention of collecting insurance premiums.",0,0,검은 집,ko +37984,Eye in the Sky,2007-06-21,90.0,,,tt0901488,I am invisible. I am inaudible. The enemy's fate is in my hands.,"The head of an elite Hong Kong surveillance unit (Simon Yam) keeps one eye on his rookie apprentice (Kate Tsui) and the other on a notorious criminal (Tony Leung Ka Fai) he suspects of masterminding a recent jewel heist in this tense thriller from filmmaking duo Johnnie To and Nai-Hoi Yau. Of course, the criminal knows all along he's being watched. But that doesn't stop him from trying to pull off the biggest score of his career.",0,0,Gun chung,cn +140509,"The Foreign Duck, the Native Duck and God in a Coin Locker",2007-06-23,110.0,,,tt0997138,,"A university student finds himself wrapped up in the bizarre world of his next door neighbor, learning about his history and relationship with a girl who changed his life.",0,0,アヒルと鴨のコインロッカー,ja +239498,"Girl, Positive",2007-06-25,0.0,http://www.mylifetime.com/movies/girl-positive,,tt0985692,,A popular high school girl finds out that a boy she slept with is HIV positive.,0,0,"Girl, Positive",en +13336,Chrysalis,2007-06-25,94.0,,,tt0884335,There are things that can't be forget.,"Paris 2020, a high tech surgeon and her daughter are involved in a horrific car accident, the surgeon saves her daughter's life at the cost of manipulating her dreams and memories.",12000000,0,Chrysalis,fr +65755,Uncle P,2007-06-26,88.0,,,tt0365880,,Rapper/multi-millionaire P. Miller becomes the guardian of his sister's three children - all of whom need a father figure in their lives.,0,0,Uncle P,en +22448,Awarapan,2007-06-29,126.0,,,tt1020937,,Awarapan is the story of man called Shivam (Emraan Hashmi) who searched for joy but found nothing but pain and loneliness. It is the journey of a godless heartbroken lover who in order to escape from the ghosts of his tragic past dedicates himself to serve his gangster boss Malik who runs a chain of hotels in Hong Kong.,6000000,0,Awarapan,hi +29798,Dead Man's Hand,2007-07-01,80.0,,,tt0864331,,"After inheriting a casino from his dead uncle, Matthew Dragna, his girl friend J.J. (Robin Sydney) and a group of friends take a road trip to the outskirts of Las Vegas, where they find the run-down Mysteria Casino. But the trip takes a frightening turn when the kids discover that the casino is haunted by the ghosts of Vegas mobsters Roy ""The Word"" Donahue (Sid Haig) and his goon Gil Wachetta (Michael Berryman), looking to settle an old score. Matthew and J.J. must fight for their very souls as the ghosts seek their gruesome vengeance, and in the vein of The Shining, this horrifying tale builds to a bloody and surprising climax.",200000,0,Dead Man's Hand,en +159810,Caravaggio,2007-07-03,0.0,,,tt0814042,,,0,0,Caravaggio,it +71139,Jam,2007-07-03,91.0,,,tt0482528,,A traffic accident on a rural mountain road becomes a life changing experience for fifteen diverse travelers.,0,0,Jam,en +27671,Pop Skull,2007-07-06,86.0,,,tt1110059,,"Addled prescription drug addict Daniel finds himself unraveling further under the stress of a recent breakup. Worse yet, he lives in a house haunted by nightmarish events from the past, images of which torment him in terrifying dreams. This hallucinatory horror film leaps off the screen with its disturbingly vivid visuals.",2000,0,Pop Skull,en +173577,NY77: The Coolest Year in Hell,2007-07-09,87.0,,,tt1080761,,"New York City, 1977 - It was a time when the city had fallen into decay, with too few jobs, money, police, schools, and social services. There was a city wide blackout with major looting, a serial killer on the loose, and the Bronx was burning. And yet out of the chaos emerged one of the most creative times any city has ever encountered.",0,0,NY77: The Coolest Year in Hell,en +3563,I Now Pronounce You Chuck & Larry,2007-07-12,115.0,http://www.chuckandlarry.com/index.php,,tt0762107,"They're as straight as can be, but don't tell anyone.","Firefighters Chuck Ford and Larry Valentine are guy's guys, loyal to the core – which is why, when widower Larry asks Chuck to pose as his gay lover so that he can get domestic partner benefits for his kids, his buddy agrees. However, things get dicey when a bureaucrat comes calling, and the boys are forced to present a picture of domestic bliss.",85000000,186072214,I Now Pronounce You Chuck & Larry,en +2976,Hairspray,2007-07-13,117.0,http://www.hairspraymovie.com/,,tt0427327,"When you follow your own beat, the world will follow you.","Pleasantly plump teenager, Tracy Turnblad and her best friend, Penny Pingleton audition to be on The Corny Collins Show – and Tracy wins. But when scheming Amber Von Tussle and her mother plot to destroy Tracy, it turns to chaos.",50000000,90450008,Hairspray,en +21181,Lucky Miles,2007-07-19,105.0,,,tt0452644,,"It's 1990 and an Indonesian fishing boat abandons Iraqi and Cambodian refugees in a remote part of the Western Australia. Although most are quickly caught by officials, three men with nothing in common but their misfortune and determination to escape arrest, begin an epic journey into the heart of Australia.",0,0,Lucky Miles,en +15356,The Girl Next Door,2007-07-19,91.0,http://www.thegirlnextdoorfilm.com/,,tt0830558,"In this town, murder became the neighborhood game.","In a quiet suburban town in the summer of 1958, two recently orphaned sisters are placed in the care of their mentally unstable Aunt Ruth. But Ruth's depraved sense of discipline will soon lead to unspeakable acts of abuse and torture that involve her young sons, the neighborhood children, and one 12-year-old boy whose life will be changed forever.",0,0,The Girl Next Door,en +241953,Independents,2007-07-21,77.0,,,tt1232784,,"Discover what it really takes to strike out on your own and become the next big name in graphic novels. Twenty-four respected creators unveil the secrets of the artistic mind, by talking about their favorite medium, the lowest of low-brow arts: Comic Books.",0,0,Independents,en +39517,Clapham Junction,2007-07-22,99.0,,,tt1043903,Their lives will never be the same.,"Set in the Clapham district of south London, England, the film is inspired by true events. The paths of several men intersect during a dramatic thirty-six hours in which their lives are changed forever.",0,0,Clapham Junction,en +10425,The Death and Life of Bobby Z,2007-07-23,97.0,,,tt0473188,"To live a life of his own, he has to die first.","A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.",22000000,413454,The Death and Life of Bobby Z,en +50161,Dolphins,2007-07-24,0.0,,,tt0490114,,"High-octane romance set in the recognizable - and sometimes gritty - world of Brighton's homegrown youth, as Boy Racer gangs uneasily coexist with the Indie scene.",0,0,Dolphins,en +35,The Simpsons Movie,2007-07-25,87.0,http://www.simpsonsmovie.com/,,tt0462538,See our family. And feel better about yours.,"After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.",75000000,527068851,The Simpsons Movie,en +3638,No Reservations,2007-07-25,104.0,http://noreservationsmovie.warnerbros.com/,,tt0481141,Life isn't always made to order.,"Master chef Kate Armstrong runs her life and her kitchen with intimidating intensity. However, a recipe for disaster may be in the works when she becomes the guardian of her young niece while crossing forks with the brash sous-chef who just joined her staff. Though romance blooms in the face of rivalry, Kate needs to look outside the kitchen to find true happiness.",28000000,92601050,No Reservations,en +44511,Noodle,2007-07-26,90.0,,,tt0892332,,"At thirty-seven, Miri is a twice-widowed, El Al flight attendant. Her well-regulated existence is suddenly turned upside down by an abandoned Chinese boy whose migrant-worker mother has been summarily deported from Israel. The film is a touching comic-drama in which two human beings -- as different from each other as Tel Aviv is from Beijing -- accompany each other on a remarkable journey, one that takes them both back to a meaningful life.",0,0,Noodle,en +20342,Secret,2007-07-27,101.0,,,tt1037850,,"Ye Xiang Lun is a music student majoring in piano who just transferred to Tamkang, a school famous for its musically talented students, especially those who play piano. On his first day of school, he hears a mysterious melody being played, and following it meets Lu Xiao Yu, another piano major. When he asks her about the song she was playing, she tells him that it is a secret that cannot be told. The two form a friendship that quickly evolves into a romantic relationship. However unbeknownst to Xiang Lun, there is more to Xiao Yu than initially meets the eye.",0,0,不能說的秘密,zh +57203,Mega Snake,2007-07-28,90.0,,,tt0914813,,"Duff Daniels (John T. Woods), the younger, stupider brother of Les (Michael Shanks), can't help himself from stealing a rare snake that's been kept in a jar by a Native American snake dealer (Ben Cardinal), and which has to follow some rules: don't let it out of the jar, then don't let it eat anything anything living, and never fear the heart of the snake.",0,0,Mega Snake,sv +19029,When Nietzsche Wept,2007-08-02,105.0,,,tt0760188,,Viennese doctor Josef Bruer meets with philosopher Friedrich Nietzsche to help him deal with his despair.,0,0,When Nietzsche Wept,en +2503,The Bourne Ultimatum,2007-08-03,115.0,http://www.universalstudiosentertainment.com/the-bourne-ultimatum/,31562,tt0440963,Remember everything. Forgive nothing.,"Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.",70000000,442824138,The Bourne Ultimatum,en +14123,Bratz,2007-08-03,110.0,,,tt0804452,,"The popular Bratz dolls come to life in their first live-action feature film. Finding themselves being pulled further and further apart, the fashionable four band together to fight peer pressure, learn what it means to stand up for your friends, be true to oneself and live out your dreams.",0,0,Bratz,en +6589,Underdog,2007-08-03,84.0,http://disney.go.com/disneyvideos/liveaction/underdog/,,tt0467110,ONE NATION...UNDER DOG,A lab accident gives a hound named Shoeshine some serious superpowers -- a secret that the dog eventually shares with the young boy who becomes his owner and friend,0,0,Underdog,en +73043,Kaidan,2007-08-04,115.0,,,tt0844319,,"Japan, 250 years ago. Soetsu is a moneylender who is killed by the cruel samurai Shinzaemon. His body is dumped in the Kasenega-Fuchi river. According to legend, all who drown in the river will never surface again. 20 Years later, Shinkichi, the handsome son of Shinzaemon, coincidentally meets Toyoshiga, the daughter of Soetsu. They fall in love. It is a doomed love, as the spirit of Soetsu is far from dead",5000000,0,怪談,ja +103902,Unfinished Sky,2007-08-04,94.0,,,tt0838231,,An Outback farmer takes in an Afghani woman who has fled from a brothel.,0,0,Unfinished Sky, +33588,White Light/Black Rain: The Destruction of Hiroshima and Nagasaki,2007-08-06,86.0,,,tt0911010,,"Steven Okazaki presents a deeply moving look at the painful legacy of the first -- and hopefully last -- uses of thermonuclear weapons in war. Featuring interviews with fourteen atomic bomb survivors - many who have never spoken publicly before - and four Americans intimately involved in the bombings, White Light/Black Rain provides a detailed exploration of the bombings and their aftermath.",0,0,White Light/Black Rain: The Destruction of Hiroshima and Nagasaki,en +110992,Summer of '62,2007-08-08,0.0,,,tt1024188,,,0,0,Cartouches gauloises,fr +34216,The Drummer,2007-08-09,118.0,,,tt0831386,,"When Sid insults a powerful triad boss, his father sends him to Taiwan for safety. Bored and restless, he discovers a community of Zen drummers high in the hills, and joins up - a decision inspired by a pretty face that soon becomes a challenge.",0,0,戰·鼓,zh +126676,Les toits de Paris,2007-08-10,98.0,,,tt0922617,,"An old man living in an attic in a rundown part of Paris, becomes increasingly lonely and prey to ill-health.",0,0,Les toits de Paris,fr +34734,Stir of Echoes: The Homecoming,2007-08-11,89.0,,143757,tt0805619,,A soldier returns home from the Iraq war only to be haunted by visions of the dead.,0,0,Stir of Echoes: The Homecoming,en +315850,Comedy Central Roast of Flavor Flav,2007-08-12,90.0,http://www.cc.com/shows/roast-of-flavor-flav,,tt1037714,,It's Flavor Flav's turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast.,0,0,Comedy Central Roast of Flavor Flav,en +14830,Doctor Strange,2007-08-14,76.0,,,tt0910865,,"Dr. Stephen Strange embarks on a wondrous journey to the heights of a Tibetan mountain, where he seeks healing at the feet of the mysterious Ancient One.",0,0,Doctor Strange,en +56809,Coming Down The Mountain,2007-08-16,80.0,,,tt0974544,,"An original drama by novelist Mark Haddon about two teenage brothers: angst-ridden David and Ben, who has Downs Syndrome.",0,0,Coming Down The Mountain,en +4832,The 11th Hour,2007-08-17,95.0,http://wip.warnerbros.com/11thhour/,,tt0492931,It's our generation that gets to change the world... forever.,"A look at the state of the global environment including visionary and practical solutions for restoring the planet's ecosystems. Featuring ongoing dialogues of experts from all over the world, including former Soviet Prime Minister Mikhail Gorbachev, renowned scientist Stephen Hawking, former head of the CIA R. James Woolse",0,0,The 11th Hour,en +13649,High School Musical 2,2007-08-17,104.0,http://www.disneychannel.com/highschoolmusical2,87253,tt0810900,,"The East High Wildcats are ready to have the time of their lives. Troy (Zac Efron) is thrilled when he’s offered a job in a country club, but it’s all part of Sharpay’s (Ashley Tisdale) plot to lure him away from Gabriella (Vanessa Hudgens). How will it all turn out? All questions are answered on the night of the club’s Talent Show.",0,7000000,High School Musical 2,en +13391,Vexille,2007-08-18,109.0,,,tt0970472,The dark secret of future Tokyo!,"2067: Isolation: Japan seals herself off from the eyes of the world in the face of unilateral international policy setting strict limits on the use of robotic technology. The island nation exists only behind a veil of seclusion. No soul shall enter. No soul shall leave. 2077: Revelation: The veil is breached. Japan is infiltrated by agents of the organization S.W.O.R.D., a fighting force operating outside of the protection of the United States and her allies. Their mission: Determine if the Japanese are developing banned robotic bio-technology, forbidden due to its threat to humankind. In the battle between machine and man, humanity stands to suffer most.",0,0,ベクシル 2077日本鎖国,ja +24578,The Waiting Room,2007-08-18,110.0,http://www.thewaitingroomfilm.com/,,tt0902348,,"Two complete strangers, ANNA and STEPHEN, are brought together by chance by an elderly man who waits for his wife on a station platform. Their fateful meeting acts as a catalyst for them to examine and challenge what's going on in their different relationships, and make hard but positive decisions for themselves. If they can change their lives maybe they can meet again.",0,0,The Waiting Room,en +83284,Dennis,2007-08-23,18.0,http://www.youtube.com/watch?v=V1zFeHJzS5E,,tt1087798,,"When Dennis, an introvert bodybuilder, invites a local girl out on a date his mother is hurt and disappointed. Despite the pressure she puts on him to cancel the date, Dennis ventures into a night that he will never forget.",0,0,Dennis,en +82806,Prova a volare,2007-08-24,0.0,,,tt1086363,,,0,0,Prova a volare,it +15156,Illegal Tender,2007-08-24,108.0,,,tt0775488,,"After the gangsters who killed his father come to settle a score, a teenage boy and his mother turn the tables on the killers - one Latino family's quest for honor and revenge as the hunted become the hunters.",0,3106835,Illegal Tender,en +2009,"4 Months, 3 Weeks and 2 Days",2007-08-24,113.0,,,tt1032846,At what moment do we begin to live?,"Gabita is pregnant, abortion is strictly forbidden in Romania during the communist regime. Despite this it is common practice and Gabita wants an abortion. The movie follows her and her friend Otilia during the day she has made the appointment with Mr. Bebe to have the abortion.",852510,1185783,"4 luni, 3 săptămîni și 2 zile",ro +24154,Miyori's Forest,2007-08-25,107.0,,,tt1092385,,"After being deserted by her parents, 11-year old Miyori shuts her heart from the rest of the world and denies any form of human relationships. She was entrusted in the care of her grandmother who lives near a forest. Miyori will take a walk in the forest where she felt a strong sense of loneliness in the forest which seems to have nothing. However, she soon encounters unbelievable things...",0,0,ミヨリの森,ja +8471,Far North,2007-08-30,89.0,,,tt0860866,,A soldier's unexpected arrival affects two women's simple existence.,0,0,Far North,en +6973,In the Valley of Elah,2007-08-31,124.0,http://wip.warnerbros.com/inthevalleyofelah/,,tt0478134,Sometimes finding the truth is easier than facing it.,A career officer and his wife work with a police detective to uncover the truth behind their son's disappearance following his return from a tour of duty in Iraq.,23000000,29541790,In the Valley of Elah,en +7343,City of Men,2007-08-31,106.0,http://www.cidadedoshomens.com.br/,,tt0870090,,"Best buddies Acerola and Laranjinha, about to turn 18, discover things about their missing fathers' pasts which will shatter their solid friendship, in the middle of a war between rival drug gangs from Rio's favelas.",0,307076,Cidade dos Homens,pt +21447,The Nautical Chart,2007-08-31,0.0,,,tt0781332,,No overview found.,0,0,La Carta Esférica,en +15006,Rails & Ties,2007-09-01,101.0,,,tt0822849,,A deadly collision between a train and car lead to an unlikely bond between the train engineer and a young boy who escapes the carnage.,0,22136,Rails & Ties,en +8951,Don't Think About It,2007-09-01,104.0,,,tt1093382,,No overview found.,0,0,Non pensarci,it +13354,"Chill Out, Scooby-Doo!",2007-09-04,90.0,,,tt1097636,,"The gang's vacation to Paris takes a wrong turn when Scooby and Shaggy miss their flight and end up on a skydiving expedition in the Himalayas. To make matters worse, upon arrival they must outrun the Abominable Snowmonster.",0,0,"Chill Out, Scooby-Doo!",en +7942,"Run, Fatboy, Run",2007-09-06,100.0,http://www.runfatboyrunmovie.com/,,tt0425413,Love. Commitment. Responsibility. There's nothing he won't run away from.,"Five years after jilting his pregnant fiancée on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.",10000000,33000000,Run Fatboy Run,en +16873,Battle for Terra,2007-09-06,85.0,http://www.battleforterra.com/,,tt0858486,Their world is mankind's only hope for survival.,"A peaceful alien planet faces annihilation, as the homeless remainder of the human race sets its eyes on Terra. Mala, a rebellious Terrian teenager, will do everything she can to stop it.",4000000,6101046,Battle for Terra,en +18613,Fugitive Pieces,2007-09-06,104.0,,,tt0765451,,A child escapes from Poland during World War II and first heads to Greece before coming of age in Canada.,0,0,Fugitive Pieces,en +10071,The Brothers Solomon,2007-09-07,93.0,,,tt0784972,They want to put a baby in you.,"A pair of well-meaning, but socially inept brothers try to find their perfect mates in order to provide their dying father with a grandchild.",0,0,The Brothers Solomon,en +15260,Joy Division,2007-09-07,93.0,,,tt1097239,,A chronological account of the influential late 1970s English rock band.,0,0,Joy Division,en +61121,Colorado Avenue,2007-09-07,120.0,,,tt0848577,,,0,0,Colorado Avenue,sv +13196,Then She Found Me,2007-09-07,100.0,,,tt0455805,,"A New York schoolteacher hits a midlife crisis when, in quick succession, her husband leaves, her adoptive mother dies and her biological mother, an eccentric talk show host, materializes and turns her life upside down as she begins a courtship with the father of one of her students.",0,0,Then She Found Me,en +13241,My Winnipeg,2007-09-07,80.0,,,tt1093842,The truth is relative.,"A personal portrait of filmmaker Guy Maddin's hometown of Winnipeg, Manitoba.",0,0,My Winnipeg,en +13079,The Life Before Her Eyes,2007-09-08,90.0,,,tt0815178,Your life can change in an instant. That instant can last forever.,"As the 15th anniversary of a fatal high school shooting approaches, former pupil Diana McFee is haunted by memories of the tragedy. After losing her best friend Maureen in the attack, Diana has been profoundly affected by the incident - her seemingly perfect life shaped by the events of that day.",8000000,0,The Life Before Her Eyes,en +13025,Diary of the Dead,2007-09-08,95.0,,261590,tt0848557,Where will you be when the end begins?,A group of young film students run into real-life zombies while filming a horror movie of their own.,2000000,5364858,Diary of the Dead,en +32451,Heavy Metal in Baghdad,2007-09-08,84.0,,,tt1092007,,The story of Iraq's only heavy metal band and their fight to play music,0,0,Heavy Metal in Baghdad,en +31031,The World Unseen,2007-09-09,94.0,http://www.enlightenment-productions.com/theworldunseenfilm/,,tt1048174,,A drama centered on two women who engage in a dangerous relationship during South Africa's apartheid era.,0,0,The World Unseen,en +98349,Love Comes Lately,2007-09-09,86.0,,,tt0787500,,"Though approaching his eighties, Max Kohn shows no signs of slowing down. He pursues his love life - both real and imagined - with youthful vigor, thereby risking his relationship to Reisel, the woman he loves but neglects. LOVE COMES LATELY is a film about real and imagined longings, the never ending dream of love and the power of fiction.",0,0,Love Comes Lately,de +14414,Honeydripper,2007-09-10,124.0,,,tt0829193,This Better Be Some Saturday Night!,"In 1950s Alabama, the owner of the Honeydripper juke joint finds his business dropping off and against his better judgment, hires a young electric guitarist in a last ditch effort to draw crowds during harvest time.",0,0,Honeydripper,en +5915,Into the Wild,2007-09-11,148.0,http://www.intothewild.com/,,tt0758758,Into the heart. Into the soul.,"The true story of top student and athlete, Christopher McCandless, who after graduating from Emory University in 1992, abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness.",15000000,56255142,Into the Wild,en +1912,Reclaim Your Brain,2007-09-11,129.0,http://www.freerainer.de/,,tt0810868,,"Frustrated, because he is forced to produce bad TV-shows, a manager of a TV-station, enters the station and manipulates the ratings, to initiate a TV-revolution.",2500000,0,Free Rainer - Dein Fernseher lügt,de +20919,The Devil's Chair,2007-09-12,91.0,,,tt0837791,,"With a pocketful of drugs, Nick West takes out his girlfriend Sammy, for a shag and a good time. When they explore an abandoned asylum, the discovery of a bizarre device - a cross between an electric chair and sadistic fetish machine - transforms drugged-out bliss into agony and despair",0,0,The Devil's Chair,en +18035,Moving McAllister,2007-09-13,89.0,,,tt0444672,The road less traveled is about to get some company.,"Rick Robinson, a law intern, is scheduled to take the bar exam in just four days. Anxious to score points with his boss Mr. McAllister, Rick unwisely agrees to help the man move. The next day, Rick finds himself in a moving van from Miami to Los Angeles, accompanied by McAllister's spoiled niece and her pet pig.",0,0,Moving McAllister,en +127702,La Señal,2007-09-13,95.0,,,tt0906777,,"During the last days of Eva Peron, a pair of low-ranking detectives are thrust into a case of corruption involving the Mafia.",0,0,La señal,es +8954,Reservation Road,2007-09-13,102.0,,,tt0831884,,"Two fathers' lives intersect when one of them is involved in a terrible and sudden hit-and-run car accident that leaves the other's son dead. In response, the two men (Joaquin Phoenix and Mark Ruffalo) react in unexpected ways as a reckoning looms in the near future.",0,0,Reservation Road,en +14753,Silk,2007-09-14,107.0,,,tt0494834,"Come Back, or I Shall Die...","Based on the best-selling novel by Alessandro Baricco, this visually stunning film tells the story of a French trader who finds unexpected love far away from home.",20000000,0,Silk,en +41301,Nature of the Beast,2007-10-21,90.0,,,tt1034456,I now pronounce you monster and wife,"Julia and Rich are about to get married, but Rich has a hairy secret. Will Julia still marry him when she finds out about the monster ""inside""?",0,0,Nature of the Beast,en +13957,Closing the Ring,2007-09-14,118.0,,,tt0488380,Discover the love of a lifetime,"During the 1940s, a group of young men go off to war, leaving behind Ethel Ann (Mischa Barton), who is in love with one of them, Teddy. In modern-day Belfast, a man named Jimmy (Martin McCann) endeavors to return a ring found in the wreckage of a crashed plane. He travels to Michigan, where the grown Ethel Ann (Shirley MacLaine), who married another man after Teddy was killed in battle, now lives. Ethel Ann must decide whether to go with Jimmy to meet the soldier who last saw Teddy alive.",23000000,0,Closing the Ring,en +4688,Across the Universe,2007-09-14,133.0,http://www.acrosstheuniverse.com/,,tt0445922,All you need is love.,"Musical based on The Beatles songbook and set in the 60s England, America, and Vietnam. The love story of Lucy and Jude is intertwined with the anti-war movement and social protests of the 60s.",0,0,Across the Universe,en +29568,In the City of Sylvia,2007-09-14,84.0,,,tt0809425,,A man returns to a city to try to track down a lovely woman he met six years earlier.,0,0,Dans la ville de Sylvia,fr +4413,The Brave One,2007-09-14,122.0,http://www.thebraveone.com,,tt0476964,How many wrongs to make it right?,A woman struggles to recover from a brutal attack by setting out on a mission for revenge.,70000000,69766619,The Brave One,en +40873,Pete Seeger: The Power of Song,2007-09-14,93.0,,,tt1003116,,"Interviews, archival footage and home movies are used to illustrate a social history of folk artists Pete Seeger.",0,0,Pete Seeger: The Power of Song,en +46513,The Shadow in the North,2007-09-15,94.0,,468039,tt0913262,,"When an elderly client loses a fortune on an investment, fearless Sally Lockhart will stop at nothing to rectify the situation — even if it means risking everything important to her in the process. As Sally sorts out the threads of the mystery — a magician being pursued by thugs, a clairvoyant who sees a brutal murder in the woods and a rich, heartless industrialist on a mad mission — nothing fits together. But as Sally closes in on the truth, it becomes devastatingly clear that her life will be forever altered.",0,0,The Shadow in the North,en +320453,Life Can Be So Wonderful,2007-09-15,70.0,,,tt0991246,,Five short stories of life's joys and sorrows are brought together in this omnibus drama from Japan.,0,0,世界はときどき美しい,ja +39824,The Sitter,2007-09-16,90.0,,,tt0961088,,A prosperous couple find the perfect live-in nanny but soon discover she intends to do her job to deadly perfection.,0,0,The Sitter,en +21671,The Comedians of Comedy: Live at The Troubadour,2007-09-18,135.0,,157626,tt1094584,,"It's a night of comic anarchy as 15 of today's edgiest comedians perform at Los Angeles' legendary Troubadour rock 'n' roll club! You're guaranteed to laugh, and occasionally gasp with shock, as new comic frontiers are crossed. Staring; Patton Oswalt, Brian Posehn, Zach Galifianakis, Maria Bamford, David Cross, Sarah Silverman, and many more.",0,0,The Comedians of Comedy: Live at The Troubadour,en +13283,Barbie as the Island Princess,2007-09-18,86.0,,,tt1092053,,"Barbie plays Rosella in this new musical film. Shipwrecked as a child, Rosella grows up on the island under the watchful eyes of her loving animal friends. The arrival of Prince Antonio leads Rosella and her furry pals to explore civilization and ultimately save the kingdom by uncovering a secret plot.",0,0,Barbie as the Island Princess,en +125541,Chouga,2007-09-18,91.0,,,tt1141663,,"Chouga is a beautiful, rich and beloved young woman. She is thirty and lives in Astana, the Kazak new capital. She is married to a famous scientist in his sixties and has a seven-year-old son. Her brother and sister-in-law live in Almaty. The couple is tearing apart and Chouga’s brother requests her to come and try to bring them back together. There she meets Ablaï, a rich and idle young man whom she strongly feels attracted to. Once back to Astana, Chouga tries to withstand this sensual attraction about which she has a premonition of a tragic outcome.",0,0,Shuga,en +13640,Superman: Doomsday,2007-09-18,75.0,http://www.warnerbros.com/superman-doomsday,,tt0934706,Where were you the day Superman died?,"When LexCorps accidentally unleash a murderous creature, Doomsday, Superman meets his greatest challenge as a champion. Based on the ""The Death of Superman"" storyline that appeared in DC Comics' publications in the 1990s",3500000,0,Superman: Doomsday,en +13614,Katyn,2007-09-21,118.0,http://katyn.netino.pl/en/,,tt0879843,,An examination of the Soviet slaughter of thousands of Polish officers and citizens in the Katyn forest in 1940.,5200000,14723313,Katyń,pl +10760,Sydney White,2007-09-21,108.0,,,tt0815244,Freshman year is no fairytale,A modern retelling of Snow White set against students in their freshman year of college in the greek system.,16500000,13620075,Sydney White,en +69535,Race to Mars,2007-09-23,0.0,,,tt0824091,,"In the year 2030, the race to be the first to reach the Red Planet is on. Six extraordinary individuals from around the world are selected for this gruelling two-year mission, where they must rise above their fears and sacrifice their lives.in the face of overwhelming danger.",0,0,Race to Mars,de +50032,Stuart: A Life Backwards,2007-09-23,92.0,,,tt0853153,,"Story about the remarkable friendship between a reclusive writer and illustrator and a chaotic homeless man, whom he gets to know during a campaign to release two charity workers from prison.",0,0,Stuart: A Life Backwards,en +56329,The Detective,2007-09-25,109.0,,239011,tt1107807,,A private detective is drawn into a complex murder mystery when he is hired to track down a missing young woman.,0,0,C+ jing taam,cn +17479,Alexandra,2007-09-26,95.0,,,tt1034427,,An elderly woman takes a train trip to visit her grandson at his army camp inside Chechnya.,0,0,Александра,ru +7972,Before the Devil Knows You're Dead,2007-09-26,117.0,,,tt0292963,No one was supposed to get hurt.,"When two brothers organize the robbery of their parents' jewelry store, the job goes horribly wrong, triggering a series of events that send them and their family hurtling towards a shattering climax.",18000000,25005257,Before the Devil Knows You're Dead,en +13516,Slacker Uprising,2007-09-27,102.0,,,tt0850669,,"Slacker Uprising is a movie of Michael Moore's tour of colleges in swing states during the 2004 election, with a goal to encourage 18–29 year olds to vote, and the response it received. The film is a re-edited version of Captain Mike Across America, which played at the Toronto International Film Festival in 2007. It is one of the first feature length films made by a known director to be released as a free and legal download online. The free download is only available to those residing in the United States and Canada. The film was also made available free for online viewing and download on the Lycos Cinema platform as well as iTunes and blip.tv. It had a one-night-only run at the Michigan Theater, where Michael Moore spoke briefly. The film is available in DVD format. Slacker Uprising features live performances or appearances by Eddie Vedder, Roseanne Barr, Joan Baez, Tom Morello, R.E.M., Steve Earle, and Viggo Mortensen. The original score is by Anti-Flag.",0,0,Slacker Uprising,en +366736,Friend,2015-04-10,21.0,http://www.shokshortfilm.com/,,tt4273570,,The friendship of two boys is tested to its limits as they battle for survival during the Kosovo war.,0,0,Shok,sq +13680,The Game Plan,2007-09-28,110.0,http://movies.disney.com/the-game-plan,,tt0492956,"Half his size, twice the trouble ... and she's moving in.","Bachelor football star Joe Kingman seems to have it all. He is wealthy and carefree, and his team is on the way to capturing a championship. Suddenly, he is tackled by some unexpected news: He has a young daughter, the result of a last fling with his ex-wife. Joe must learn to balance his personal and professional lives with the needs of his child.",22000000,147880543,The Game Plan,en +30527,Shake Hands With the Devil,2007-09-28,112.0,http://www.shakehands-themovie.com/,,tt0472562,"When the world turned its back, one man stood up.","Canadian Lt. General Romeo Dallaire was the military commander of the UN mission in Rwanda and this movie is personal and, all too true, story of his time there during the genocide of 1994. It is not quite as moving as the earlier Hotel Rwanda and is less geared to drama and emotional manipulation, but it is still grim and upsetting.",11000000,0,Shake Hands With the Devil,en +4538,The Darjeeling Limited,2007-09-29,91.0,http://www.foxsearchlight.com/thedarjeelinglimited/,,tt0838221,,"Three American brothers who have not spoken to each other in a year set off on a train voyage across India with a plan to find themselves and bond with each other -- to become brothers again like they used to be. Their ""spiritual quest"", however, veers rapidly off-course (due to events involving over-the-counter pain killers, Indian cough syrup, and pepper spray).",16000000,24377151,The Darjeeling Limited,en +241593,The Nun,2007-09-29,57.0,,,tt1156326,,"After Marta had decided to become a nun at a young age, filmmaker Maud Nycander followed her and her family for ten years.",0,0,Nunnan,en +282553,The Muse,2007-09-30,72.0,,,tt1120908,,"An introverted young poet struggles with a writer's block and meets a mysterious girl, who reminds him of Monica Vitti.",0,0,De muze,en +16460,Garfield Gets Real,2007-09-30,75.0,http://garfield.com/d2v/index.html,373918,tt1059793,,"Garfield is back with a new look. Tired with his routine as a comic strip star, Garfield escapes the page and heads into the ""real world."" While living the low-key life of a real housecat, he learns his comic will be cancelled if he doesn't return before the newspaper goes to print. The video games will follow the storyline as Garfield plows through obstacles to make his way back home.",0,0,Garfield Gets Real,en +12247,Shotgun Stories,2007-10-01,92.0,http://www.shotgunstories.com/,,tt0952682,Two families. One feud. No going back.,"Shotgun Stories tracks a feud that erupts between two sets of half brothers following the death of their father. Set against the cotton fields and back roads of Southeast Arkansas, these brothers discover the lengths to which each will go to protect their family.",0,0,Shotgun Stories,en +23515,Sick Girl,2007-10-01,83.0,,,tt1078931,Say hello to Izzy. Then say goodbye.,"Izzy is raising her younger brother, Kevin, by herself. Their parents are deceased and her older brother, Rusty, is away in the Marines. When Izzy learns that her little brother is being bullied at school, she does what any unstable, psychopathic, homicidal sister would do.",30000,0,Sick Girl,en +2012,Silent Light,2007-10-02,142.0,http://www.stelletlicht.com/,,tt0841925,,"Johan and his family are Mennonites from the north of Mexico. Against the law of God and Man, Johan falls in love with another woman.",0,0,Stellet Licht,de +269518,Some Photos in the City of Sylvia,2007-10-02,67.0,,,tt1146298,,This remarkable companion piece to In the City of Sylvia offers a compendium of images recorded by Guerín in Strasbourg while searching for the traces of a (fictional?) brief encounter some years earlier with a young woman named Sylvia.,0,0,Unas fotos en la ciudad de Sylvia,es +268380,Visions of Frank,2007-10-03,45.0,,,tt1409611,,Animations inspired by the art of Jim Woodring.,0,0,Visions of Frank,en +79526,Duska,2007-10-04,110.0,,,tt0986225,,An older film critic's life is interrupted by an unexpected visitor.,0,0,Duska,en +18595,Garage,2007-10-05,85.0,,,tt0878674,,"A tragicomedy set in the world of gas stations in rural Ireland, where over-diligent employee of the garage searches for intimacy during the course of a life-changing summer.",0,0,Garage,en +53805,Cemento Armato,2007-10-05,0.0,,,tt1104688,,,0,0,Cemento Armato,de +46931,Georg,2007-10-05,105.0,,,tt0459913,,Georg is a biography drama film about Estonian singer Georg Ots.,0,0,Georg,en +2274,The Seeker: The Dark Is Rising,2007-10-05,94.0,,,tt0484562,,A boy's life is turned upside down when he learns that he is the last of a group of immortal warriors who have dedicated their lives to fighting the forces of the dark.,0,0,The Seeker: The Dark Is Rising,en +14432,The Secret,2007-10-10,92.0,,,tt0446463,,"Husband, wife, and daughter have moved from Boston to Williamstown. At 16, Samantha treats her mother shabbily, but when the two of them are in a horrific car crash, the mother wills Sam to live, somehow losing her own life while her spirit enters Sam.",0,0,Si j'étais toi,fr +17303,The Devil Dared Me To,2007-10-11,75.0,,,tt0970529,"Live fast, die faster",This is the story of daredevil stuntman Randy Cambell and his quest to follow in his late father's footsteps and become New Zealand's greatest daredevil stuntman by performing the ultimate daredevil stunt: jumping across Cook Strait in a rocket car!,859314,0,The Devil Dared Me To,en +30680,On the Doll,2007-10-12,102.0,http://www.onthedoll.com/,,tt0493439,,"On The Doll is a story of the victims of child abuse, and the pain it visits upon their later lives. With interweaving stories following victims and victimizers, the film depicts the variety of experiences of abuse.",0,0,On the Doll,en +4520,Sleuth,2007-10-12,86.0,http://www.sonyclassics.com/sleuth/,262011,tt0857265,Obey the rules.,"On his sprawling country estate, an aging writer matches wits with the struggling actor who has stolen his wife's heart.",0,342835,Sleuth,en +46169,Twitches Too,2007-10-12,83.0,,263106,tt1017465,,"Reunited witch twins Camryn and Alex adjust to their new life as supernatural beings while at the same time trying to maintain a normal existence in this sequel to the magical Disney Channel original movie Twitches. But they soon find themselves going head to head with the forces of darkness that threaten to destroy their world. Luckily, their birth mother, the powerful Miranda, is on hand to help out.",0,0,Twitches Too,en +33789,Wasting Away,2007-10-16,90.0,http://www.wastingawaythemovie.com/,,tt1027762,,"Brain freeze has never been so bad once you’ve tasted Ale Cream, as four friends inadvertently eat some radioactive ice-cream, turning them into zombies. Only problem is they don’t see themselves as the undead, but as super soldiers.",0,0,Wasting Away,en +65367,Trigger Man,2007-10-19,80.0,,,tt0814365,They thought they were alone...,Inspired by true events...The story of three hunters who mysteriously became the hunted.,10000,0,Trigger Man,en +33586,Heavy Petting,2007-10-20,92.0,,,tt0491211,Both these guys are out to win her heart... and it's gonna get ruff.,"Charlie thinks he's met the perfect woman, but in order to be with her, he must first get past her dog. Just when he thinks all is lost, he realizes that he loves the dog too! Now he must do everything he can to keep them both.",2800000,0,Heavy Petting,en +13734,Frenchmen 2,2007-10-24,111.0,,260586,tt0887887,,"Alex, Antoine, Jeff and Manu. Four friends, four years later. Their relationships, friendship, shared secrets, feelings of guilt and their desire to change and improve.",0,0,Le cœur des hommes 2,fr +50662,South Of Pico,2007-10-25,84.0,http://www.southofpico.com,,tt0478273,,"""South of Pico"" is an emotionally charged drama in which four strangers witness an unimaginable tragedy and are catapulted into the defining moment of their lives. Set in present day Los Angeles, a chauffeur, a waitress, a doctor and a young boy each deal with life's daily challenges, only to find themselves at the scene of an accident the moment it happens.",0,0,South Of Pico,en +19244,Mr. Untouchable,2007-10-25,92.0,http://www.blowbackproductions.com/mr_untouchable.shtml,,tt1086340,,"The true-life story of a Harlem's notorious Nicky Barnes, a junkie turned multimillionaire drug-lord. Follow his life story from his rough childhood to the last days of his life.",0,0,Mr. Untouchable,en +78527,Jimmy Carter Man from Plains,2007-10-26,125.0,http://www.sonyclassics.com/jimmycartermanfromplains,,tt0913958,,"A chronicle of the former president's tour recent for his book ""Palestine: Peace Not Apartheid.""",0,108282,Jimmy Carter Man from Plains,en +33495,2061 - Un anno eccezionale,2007-10-26,0.0,,,tt1056471,,No overview found.,0,0,2061 - Un anno eccezionale,en +33510,Puffball,2007-10-28,0.0,,,tt0484881,,Powerful supernatural forces are unleashed when a young architect becomes pregnant after moving to an isolated and mysterious valley to build a house.,0,0,Puffball,en +5559,Bee Movie,2007-10-28,91.0,http://www.beemovie.com/,,tt0389790,Born to bee wild.,"Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.",150000000,287594577,Bee Movie,en +220669,Королёв,2007-10-29,,,,tt1107828,,,6000000,31000,Королёв,ru +18312,Endgame: Blueprint for Global Enslavement,2007-11-01,139.0,http://infowars-shop.stores.yahoo.net/endgamedvd.html,,tt1135489,,"For the New World Order (NWO), a world government is just the beginning. Once in place they can engage their plan to exterminate 80% of the world's population, while enabling the 'elites' to live forever with the aid of advanced technology. For the first time, crusading filmmaker Alex Jones reveals their secret plan for humanity's extermination: Operation Endgame.",0,0,Endgame: Blueprint for Global Enslavement,en +3962,Bis zum Ellenbogen,2007-11-01,90.0,http://www.ellenbogen-derfilm.de,,tt0818108,,,0,0,Bis zum Ellenbogen,de +13710,The Merry Widow,2007-11-01,94.0,,,tt1024899,,"Anne-Marie vient de perdre son mari dans un accident de voiture. Elle est enfin libre d'aimer celui qu'elle voit en cachette depuis deux ans. Mais elle n'a pas prévu que sa famille, pétrie de bons sentiments, a décidé de rester à ses côtés pour la soutenir dans son chagrin. Anne-Marie se retrouve alors encore plus prisonnière que lorsqu'elle était mariée ...",0,0,Enfin veuve,en +256328,The Water Front,2007-11-01,53.0,,,tt1474579,,"When a financially suffering town turns to an unlikely source -- its water plant -- for hope, no one expects $10,000 water bills and worse. This doc reveals the drastic policies enacted by an emergency financial manager, and their shocking effects.",0,0,The Water Front,en +4982,American Gangster,2007-11-02,157.0,http://www.americangangster.net/,,tt0765429,There are two sides to the American dream,"Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Based on a true story.",100000000,266465037,American Gangster,en +43741,Joe's Palace,2007-11-04,108.0,,,tt0899109,,"A drama centered on the relationship between Elliot, a strange and wealthy Londoner, and Joe, a teenager who takes care of an empty house Elliot owns.",0,0,Joe's Palace,en +15372,Jimmy Carr: Comedian,2007-11-05,93.0,,,tt1172061,,"Recorded live at London's Bloomsbury theatre, the posh-suited gagster unleashes his rapid-fire wit upon his audience, with jokes that are just too rude for TV.",0,0,Jimmy Carr: Comedian,en +18755,Pigs,2007-11-05,85.0,http://www.pigsthemovie.com/,,tt1065106,26 girls. 26 letters in the alphabet. 1 campus legend.,"A college ladies man accepts a challenge from his dorm buddies - sleep with the entire alphabet, A through Z, before graduation. The rules are simple: the rarer the first letter of the girl's last name, the higher the payout. All goes well until he falls for the ""X"". Now he's torn between his feelings for the girl and winning the bet for his friends.",0,0,Pigs,en +13061,Your Friend the Rat,2007-11-06,11.0,http://www.pixar.com/short_films/Home-Entertainment-Shorts/Your-Friend-the-Rat,,tt1134859,,"Let's face it, rats are not the most beloved creatures on earth. However, maybe this little tale about the history of human and rat interaction will change the world's tune. At least that is the hope of Remy, the star of Ratatouille, and his reluctant brother Emile as they guide us through world history from a rat's perspective. Why can't we all just get along?",0,0,Your Friend the Rat,en +8079,Om Shanti Om,2007-11-07,170.0,,,tt1024943,"For some dreams, one lifetime is not enough","In this modern remake of Karz, Om - an aspiring actor from the 1970s - is murdered, but is immediately reincarnated into the present day. He attempts to discover the mystery of his demise and find Shanti, the love of his previous life.",9100000,37707444,Om Shanti Om,hi +13022,Rogue,2007-11-08,99.0,,,tt0479528,How Fast Can You Swim?,"From the director of Wolf Creek comes this terrifying look at nature's perfect killing machine. When a group of tourists stumble into the remote Australian river territory of an enormous crocodile, the deadly creature traps them on a tiny mud island with the tide quickly rising and darkness descending. As the hungry predator closes in, they must fight for survival against all odds.",0,0,Rogue,en +6977,No Country for Old Men,2007-11-08,122.0,,,tt0477348,There are no clean getaways.,"Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.",25000000,171600000,No Country for Old Men,en +76438,Racketeer,2007-11-08,80.0,http://www.racketeer.kz/,,tt1677719,,"Story of a man named Sayan, that had to live through harsh 1990's and make tough decisions.",800000,0,Рэкетир,ru +16803,Kiss Of Life,2007-11-08,99.0,http://villageproductions.gr/tofilitiszois/movie.php,,tt1092002,"Life is beautiful, but I get married on Sunday!","Life is beautiful, but I get married on Sunday!",0,0,Το Φιλι Της Ζωης,el +24094,Necessary Evil,2008-01-01,87.0,,,tt1084733,Uncovering the truth can be lethal.,A scientist is testing a demonic drug on people in his secret lab. A cop and a female reporter try to stop him.,950000,0,Necessary Evil,en +37586,Egg,2007-11-09,97.0,,,tt1021004,,"Poet Yusuf (35-38) returns to his childhood hometown, which he hadn't visited for years, upon his mother's death. He is faced with a neglected, crumbling house. Ayla, a young girl (17-19) awaits him there. Yusuf has been unaware of the existence of this distant relation who had been living with his mother for five years; He stays by his dead mother's bedside for a while on the morning of his return...",0,0,Yumurta,tr +16666,War Dance,2007-11-09,105.0,,,tt0912599,"The war stole everything, except their music.",Three children living in a displacement camp in northern Uganda compete in their country's national music and dance festival.,0,0,War Dance,en +14525,Adrift in Tokyo,2007-11-10,101.0,http://tokyosanpo.jp/,,tt1098226,,"Leading a lazy life, Fumiya has been a university student for 8 years and owes money to loan sharks. One day, a man named Fukuhara comes to collect the loan, which Fumiya cannot pay. So Fukuhara makes a proposition: He will cancel the debt as long as Fumiya agrees to walk with him across Tokyo to the police station of Kasumigaseki, where he intends to turn himself in for a crime he deeply regrets. Not having much choice, Fumiya accepts the deal. Thus begins their journey which will lead them to various unusual encounters, most of all with themselves.",0,0,転々,ja +13358,A Dennis the Menace Christmas,2007-11-10,83.0,,195441,tt0918511,,"A Dennis The Menace version of A Christmas Carol where Mr. Wilson plays his own version of Scrooge. While Dennis has problems of his own with the neighborhood bully, he does his best to try and give Mr. Wilson the Christmas Spirit. Dennis causes his usual damage and Mr. Wilson ends up breaking Dennis' spirit. An Angel of Christmas Past Present and Future steps in to help save Christmas for the Mitchells, the Wilsons, and everyone else.",2000000,0,A Dennis the Menace Christmas,en +25143,My Boy Jack,2007-11-11,93.0,,,tt0851430,A young man fights for his country.,Author Rudyard Kipling and his wife search for their 17-year-old son after he goes missing during WWI.,0,0,My Boy Jack,en +198308,Ricky Gervais Live 3: Fame,2007-11-12,79.0,,,tt0993779,,Ricky Gervais third stand-up comedy routine.,0,0,Ricky Gervais Live 3: Fame,en +132426,Capturing Mary,2007-11-12,100.0,,,tt0899052,,"A young man ushers an older woman into a dark exploration of her past - back to the time when, as a young girl, she met a stranger who affected her life forever.",0,0,Capturing Mary,en +79343,Les fourmis rouges,2007-11-14,0.0,,,tt0425990,,,0,0,Les fourmis rouges,fr +24822,Seven Days,2007-11-14,125.0,,,tt0997229,,"A successful lawyer who, in order to save her daughter, is pressured into defending the innocence of a man slated to receive the death penalty.",0,0,세븐 데이즈,ko +12449,Room of Death,2007-11-14,115.0,,,tt0990361,,"While on a joyride with the headlights turned off, two men hit and kill another man carrying a satchel full of money. The two men decide to take the money and throw the body into a pond and bury the money in a coal hill. The next morning the police discover the body of a kidnapped 12-year blind girl, Melody, in a warehouse near the site of the hit-and-run. They determine that the kidnapper saw the girl's father bringing the ransom to him and also witnessed the hit-and-run and the men stealing the ransom.",0,0,La Chambre des morts,fr +196235,Steam,2007-11-15,120.0,,,tt0892100,,"Three women — a young coed, a forty-something single mother, and one a senior-aged widow — meet in the sauna of the local gym, where they gradually get to know one another and bond over their respective trials and tribulations.",2200000,0,Steam,en +6023,P.S. I Love You,2007-11-15,126.0,,,tt0431308,"His life ended. Now, a new one will begin.",A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.,30000000,156835339,P.S. I Love You,en +82409,Mutum,2007-11-15,95.0,,,tt0848596,,Thiago slowly loses his childhood innocence through life's hard lessons.,0,0,Mutum,pt +16240,Breakfast with Scot,2007-11-16,95.0,http://www.breakfastwithscotmovie.com/,,tt0910847,,"Eric and Sam have been in a committed relationship for four years. Eric's a former hockey player turned sportscaster and Sam's a sport's lawyer. But when Sam's adventure seeking brother Billy, takes a job in South America, his ex-girlfriend, Julie, is discovered dead from a drug overdose leaving her son Scot (not Billy's son) to Billy.",0,0,Breakfast with Scot,en +419786,Doctor Who: Time Crash,2007-11-16,8.0,,,tt1129418,,"After Martha Jones parts company with the Doctor, his TARDIS collides with another, and he comes face to face with one of his previous incarnations.",0,0,Doctor Who: Time Crash,en +64047,Cranford,2007-11-18,291.0,,,tt0974077,,"In the 1840s, Cranford is ruled by the ladies. They adore good gossip; and romance and change is in the air, as the unwelcome grasp of the Industrial Revolution rapidly approaches their beloved rural market-town.",0,0,Cranford,de +30778,I Am Omega,2007-11-18,90.0,http://www.theasylum.cc/product.php?id=136,,tt1075746,,The Last Man Alive Must Battle a Planet of the Dead. [An Asylum film.],0,0,I Am Omega,en +5123,August Rush,2007-11-21,114.0,http://augustrushmovie.warnerbros.com/,,tt0426931,An incredible journey moving at the speed of sound,"A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents.",25000000,66122026,August Rush,en +26336,Crazy Love,2007-11-22,92.0,,,tt0790706,,The bizarre true story of Linda Riss and Burt Pugach.,0,0,Crazy Love,en +21508,Stranded: I've Come from a Plane That Crashed on the Mountains,2007-11-23,113.0,,,tt1157720,,"For the first time ever, survivors of the famous 1972 Andes plane crash tell in their own words their harrowing story of survival",0,0,Stranded: I've Come from a Plane That Crashed on the Mountains,es +22182,Lezioni di cioccolato,2007-11-23,99.0,http://www.lezionidicioccolato.com,298187,tt1065305,,No overview found.,0,0,Lezioni di cioccolato,en +72140,A Grandpa for Christmas,2007-11-24,90.0,,,tt0950740,,An old-time movie-star singer/ hoofer rebonds with his estranged daughter and 9-year-old granddaughter.,0,0,A Grandpa for Christmas,fr +7249,Futurama: Bender's Big Score,2007-11-27,88.0,,13800,tt0471711,Just when you thought it was safe to watch something else!,"The Planet Express crew return from cancellation, only to be robbed blind by hideous ""sprunging"" scam artists. Things go from bad to worse when the scammers hack Bender, start traveling through time, and take Earth over entirely! Will the crew be able to save the day, or will Bender's larcenous tendencies and their general incompetence doom them all?",0,0,Futurama: Bender's Big Score,en +13483,Awake,2007-11-28,84.0,,,tt0211933,"Every year, one in 700 people wake up during surgery.","While undergoing heart surgery, a man experiences a phenomenon called ‘anesthetic awareness’, which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.",86000000,14373825,Awake,en +14016,Mad Detective,2007-11-29,91.0,,,tt0969269,I can see a person's inner personality.,A rookie cop teams up with a former detective with a supernatural gift to hunt down a serial killer.,0,0,神探,zh +14159,Aaja Nachle,2007-11-30,146.0,,,tt0986213,She's Back!,"Dia is a divorced mom living in New York and must go back to India after she receives news that her guru is on his death bed. When she arrives she finds he is gone and has left her the responsibility of saving and reviving the Ajanta Theater where she used to dance. The problem is that the political officers want it torn down and turned into a shopping mall. The storyline follows Dia and her challenge to stand up for what she believes in and fight the cause to the end, while trying to win back the love and support of the people of the town whom she walked out on ten years prior.",0,3800000,Aaja Nachle,hi +6076,Rabbit Without Ears,2007-12-01,116.0,,215456,tt0960790,,"Rainbow press reporter Ludo is sentenced to 8 months, but is released on probation. But he has to work 300 hours for a local daycare center and meets Anna who has unfinished business with him.",0,81303447,Keinohrhasen,de +13946,The Rage,2007-12-01,85.0,,,tt0497432,A Mega-Dose of Pure Terror,"A crazed scientist experimenting with a rage virus on innocent victims in a laboratory in the woods. When his monstrous subjects escape and vultures devour their remains, they became mutations seeking to feed on humans.",0,0,The Rage,en +12171,The Deaths of Ian Stone,2007-12-05,87.0,,,tt0810823,Live everyday like it's your last.,"Deaths tells the story of an all-American guy who is murdered each day by horrifying pursuers, only to wake up in slightly different lives to experience the terror of being murdered again.",0,0,The Deaths of Ian Stone,en +7326,Juno,2007-12-05,96.0,http://www.foxsearchlight.com/juno/,,tt0467406,A comedy about growing up... and the bumps along the way.,"A young girl named Juno gets herself pregnant and tries to stand on her own, but soon learns a few lessons about being grown up.",7500000,231411584,Juno,en +49322,1944 The Final Defence,2007-12-07,117.0,,,tt0378848,,"The Soviet army breaks through the Finnish defences on the Karelian Isthmus in June 1944, advancing with overwhelming force. Somehow, the Finnish troops must find the strength to fight back, with all odds against them. The Battle of Tali-Ihantala was the largest battle ever fought in the history of the Nordic countries. This film depicts the true events through five separate stories.",0,0,Tali-Ihantala 1944,fi +8277,American Pie Presents: Beta House,2007-12-10,88.0,,298820,tt0974959,The Most Outrageous Slice of Pie!,"Erik, Ryan, and Cooze start college and pledge the Beta House fraternity, presided over by none other than legendary Dwight Stifler. But chaos ensues when a fraternity of geeks threatens to stop the debauchery and the Betas have to make a stand for their right to party.",0,0,American Pie Presents: Beta House,en +17495,Whatever Lola wants,2007-12-11,115.0,,,tt0758799,,A Brooklyn postal worker follows her Egyptian boyfriend to Cairo where she takes belly-dancing lessons from a legendary but disgraced Egyptian dancer.,0,0,Whatever Lola wants,en +15261,Bring It On: In It To Win It,2007-12-12,90.0,,430186,tt0972785,The Ultimate Cheer Off!,Fourth 'Bring It On' movie is set at a cheerleader camp in Florida with a 'West Side Story' musical feel has the female captain of the West Side Sharks meeting and romancing a male member of the East Coast Jets amid their different team rivalries.,0,0,Bring It On: In It To Win It,en +324408,Der Kronzeuge,2007-12-12,,,,tt0970499,,,0,0,Der Kronzeuge,de +347465,Κλέφτες,2007-12-13,,,,tt1104080,,,0,0,Κλέφτες,el +42436,Natale in crociera,2007-12-14,0.0,,,tt1065329,,,0,0,Natale in crociera,it +5804,The Key to Reserva (La clave Reserva),2007-12-14,9.0,http://www.scorsesefilmfreixenet.com/video_eng.htm,,tt1151319,,No overview found.,0,0,The Key to Reserva (La clave Reserva),en +81589,Must Read After My Death,2007-12-15,73.0,http://www.mustreadaftermydeath.com/,,tt1249414,,"A grandmother dies and leaves behind hours of secret film and audio recordings as well as an envelope with the words “Must read after my death,” which reveal a dark history for her family to discover.",0,0,Must Read After My Death,en +69315,Battlestar Galactica: Razor,2007-12-18,88.0,,91697,tt0991178,Fear gets you killed. Anger keeps you alive.,A two-hour Battlestar Galactica special that tells the story of the Battlestar Pegasus several months prior to it finding the Galactica.,0,0,Battlestar Galactica: Razor,en +16177,Killer Babes,2007-12-20,100.0,http://www.moordwijvendefilm.nl/,,tt0948532,,"When three wealthy women hire a hit man to get rid of one of their cheating husbands, everything goes wrong.",0,0,Moordwijven,nl +10748,St. Trinian's,2007-12-21,101.0,http://www.sttriniansmovie.co.uk/,12077,tt0964587,Taking higher education to a new low.,"When their beloved school is threatened with closure should the powers that be fail to raise the proper funds, the girls scheme to steal a priceless painting and use the profits to pull St. Trinian's out of the red.",0,0,St. Trinian's,en +105325,How to Hook Up Your Home Theater,2007-12-21,6.0,,,tt1114718,,"Goofy tries to set up his new home theater in time for the big game, with disastrous results.",0,0,How to Hook Up Your Home Theater,en +6575,Walk Hard: The Dewey Cox Story,2007-12-21,96.0,http://www.walkhard-movie.com/,,tt0841046,Life made him tough. Love made him strong. Music made him hard.,Singer Dewey Cox overcomes adversity to become a musical legend.,35000000,18317151,Walk Hard: The Dewey Cox Story,en +54318,The Water Horse,2007-12-25,112.0,http://www.thewaterhorse.com/,,tt0760329,How Do You Keep A Secret This Big?,A lonely boy discovers a mysterious egg that hatches a sea creature of Scottish legend.,40000000,103071443,The Water Horse,en +38000,Rainbow Eyes,2007-12-27,99.0,,,tt1233473,,"Officers Kyung-yoon CHO and Eun-joo PARK are on the hunt a killer following duo of ghastly murders. The victims carry a common military past, and the secret of their past must be unraveled to find the killer.",0,0,가면,ko +25597,Hansel & Gretel,2007-12-27,117.0,,,tt1002567,"Once upon a time in a dark, dark forest...","When Eun-soo gets lost in a country road, he meets a mysterious girl and is led to her fairytale ike house in the middle of the forest. There, Eun-soo is trapped with the girl and her siblings who never age. Eun-soo finally discovers a way out which is written on a fairy tale book. But the book tells a story of none other than himself!",0,0,헨젤과 그레텔,ko +14047,The Great Debaters,2007-12-27,126.0,,,tt0427309,"When the nation was in need, he inspired them to give us hope.",The true story of a brilliant but politically radical debate team coach who uses the power of words to transform a group of underdog African American college students into an historical powerhouse that took on the Harvard elite.,15000000,30226144,The Great Debaters,en +14642,20 Years After,2008-01-01,95.0,,,tt0825279,,"In the middle of nowhere, 20 years after an apocalyptic terrorist event that obliterated the face of the world!",1000000,0,20 Years After,en +14862,Killer Movie,2008-01-01,93.0,,,tt0988083,Fear Reality.,A reality TV director copes with a spoiled celebutante and a show gone haywire when a masked killer starts bumping off the crew in this slasher-movie satire.,2000000,0,Killer Movie,en +7916,Far Cry,2008-01-01,95.0,,,tt0400426,,"Jack Carver, a former member of the Special Forces takes the journalist Valerie Cardinal to an Island to visit her uncle Max who is working in a Military complex on the Island. As they arrive Valerie gets captured by the minions of Doctor Krüger. After the destruction of his boat Jack finds out about the true purpose of the Facilities on the Island, which is the creation of genetic soldiers.",30000000,0,Far Cry,en +31377,Spy School,2008-01-01,86.0,,,tt0484831,,"Spy School is the story of a twelve year old boy known for telling tall tales who overhears a plot to kidnap the President's daughter. When he goes public with his story, no one believes him, and he is forced to save her on his own.",0,0,Spy School,en +21837,Cop Dog,2008-01-01,0.0,,,tt1209380,,"Ever since Robby's father was killed while on police duty, Robby has been angry and alone. His father's old partner, a police dog named Marlowe, suffers the same fate. So when Robby sees Marlowe alone and locked up in a cage he begs his mum to let him have him. Instantly, the two are best friends. But, being a cop dog, when Marlowe, sees two familiar criminals in the woods",0,0,Cop Dog,en +14660,Solstice,2008-01-01,87.0,,,tt0473267,,"A young girl uncovers a disturbing secret about her twin sister, who committed suicide just a few months before.",0,0,Solstice,en +45336,The Employment,2008-01-01,7.0,,,tt1247184,,"A man prepares and goes to work in a bizarre world, where the meaning of human workforce is taken to another level.",0,0,El empleo,es +12273,Singh Is Kinng,2008-01-01,135.0,,,tt1146325,Summer 2008: The gang of Punjab arrives with a bang!,"A comic caper about Happy Singh, a Punjabi villager who goes through a series of misadventures and eventually becomes the King of the Australian underworld.",14000000,25000000,Singh Is Kinng,hi +100669,Shark Swarm,2008-01-01,160.0,,,tt1078927,,"A fisherman and his family fight to take down a greedy real estate developer who has released toxins into the ocean, turning the area's sharks into bloodthirsty hunters.",0,0,Shark Swarm,en +21431,Big Game,2008-01-01,0.0,,,tt1047445,,No overview found.,0,0,Big Game,en +12903,Scooby-Doo! and the Goblin King,2008-01-01,75.0,,,tt1295021,,"Scooby-Doo and Shaggy must go into the underworld ruled by the Goblin King in order to stop a mortal named The Amazing Krudsky who wants power and is a threat to their pals, Fred, Velma and Daphne.",0,0,Scooby-Doo! and the Goblin King,en +13610,Christmas Cottage,2008-01-01,96.0,,,tt0999872,,"Inspired by the picturesque paintings of Thomas Kinkade, The Christmas Cottage tells the semi-autobiographical tale of how a young boy is propelled to launch a career as an artist after he learns that his mother is in danger of losing the family home.",0,0,Christmas Cottage,en +16137,Fear(s) of the Dark,2008-01-01,85.0,,,tt0792986,,Several scary black-and-white animated segments in different styles appeal to our fear(s) of the dark.,0,0,Peur(s) du noir,fr +13004,Barbie and the Diamond Castle,2008-01-01,78.0,,,tt1294138,,"Liana and Alexa (Barbie and Teresa) are best friends who share everything, including their love of singing. One day while walking through the forest home from the village, the girls meet an old beggar who gives them a magical mirror. As they clean the mirror and sing, a musical apprentice muse named Melody appears in the mirror's surface, and tells the girls about the secret of the Diamond Castle.",0,0,Barbie and the Diamond Castle,en +32540,The Disappeared,2008-01-01,92.0,,,tt1094295,,"Following the disappearance of his younger brother Tom, Matthew Ryan tries to put his life and sanity back together. However the past keeps coming back to haunt him.",0,0,The Disappeared,en +12427,Teza,2008-01-01,140.0,,,tt1284592,,"The Ethiopian intellectual Anberber returns to his native country during the repressive totalitarian regime of Haile Mariam Mengistu and the recognition of his own displacement and powerlessness at the dissolution of his people's humanity and social values. After several years spent studying medicine in Germany, he finds the country of his youth replaced by turmoil. His dream of using his craft to improve the health of Ethiopians is squashed by a military junta that uses scientists for its own political ends. Seeking the comfort of his countryside home, Anberber finds no refuge from violence. The solace that the memories of his youth provide is quickly replaced by the competing forces of military and rebelling factions. Anberber needs to decide whether he wants to bear the strain or piece together a life from the fragments that lie around him.",0,0,Teza,am +57091,Granny O'Grimm's Sleeping Beauty,2008-01-01,6.0,http://www.grannyogrimm.com/,,tt1382454,,"Granny O'Grimm, a seemingly sweet old lady, loses the plot as she tells her version of Sleeping Beauty to her terrified Granddaughter",0,0,Granny O'Grimm's Sleeping Beauty,en +267219,Serrallonga,2008-01-01,,,,tt1081731,,,0,0,Serrallonga,es +129277,Two-Legged Horse,2008-01-01,101.0,,,tt1039914,,A wealthy boy hires a poor child to carry him around like a horse.,0,0,Asbe du-pa,fa +12432,A Perfect Day,2008-01-01,105.0,,,tt1056067,,"Antonio and Emma have been separated for years, but he does not accept when Emma dates other men. Indeed Antonio proves obsessive, aggressive and intrusive, and again threatens Emma to hurt the children: little Kevin, shy and introverted, and the adolescent Valentina.",0,0,Un giorno perfetto,it +8368,The Garden of Eden,2008-01-01,111.0,,,tt1031243,,A young American writer completes his service in WWI and travels across Europe with his wife and her attractive Italian girlfriend. Based on the novel by Ernest Hemingway.,0,0,The Garden of Eden,en +48204,Nights and Weekends,2008-01-01,80.0,,,tt1186248,,A man and woman must face the tension that builds between them during a long-distance relationship.,0,0,Nights and Weekends,en +315010,Sense and Sensibility,2008-01-01,174.0,http://www.bbc.co.uk/drama/senseandsensibility/,,tt0847150,,"This is the acclaimed 2008 BBC adaptation of the famous Jane Austen novel. While it originally aired as a 3-part miniseries, this home video release includes a single uninterrupted version of the entire film.",0,0,Sense and Sensibility,en +33009,Remarkable Power,2008-01-01,91.0,,,tt0892096,,"A late night talk show host masterminds an elaborate scheme to save his canceled show and avenge his wife's affair, entangling an eclectic collection of tinsel towners in the process.",0,0,Remarkable Power,en +91266,Lioness,2008-01-01,82.0,,,tt1202749,,The untold story of the first women in U.S. history to be sent into direct ground combat.,0,0,Lioness,en +297263,It's My Mother's Birthday Today,2008-01-01,5.0,,,tt3202968,,"Guy Maddin directed this short biopic on the castrato known as the Manitoba Meadowlark, Dov Houle, who performed on tour with the film “Brand Upon the Brain!”",0,0,It's My Mother's Birthday Today,en +29717,The Adventures of Food Boy,2008-01-01,90.0,,,tt1059773,,A teenage boy is surprised to discover that he has the super power to make food appear in his hands.,0,0,The Adventures of Food Boy,en +36164,Crazy Waiting,2008-01-01,108.0,,,tt1233482,,"""Crazy Waiting"" follows four different couples as they deal with the separation caused by the men serving their mandatory military duties.",0,0,기다리다 미쳐,ko +19235,Dog Tags,2008-01-01,90.0,http://tlareleasing.com/films/dog-tags/,,tt1212408,"Don't Ask, Don't Tell","Raised in a single parent family by his mother Nate Merritt, develops a friendship with a gay man whilst on leave from the US marines.",0,0,Dog Tags,en +58400,Just a Father,2008-01-01,89.0,,,tt1217631,,No overview,0,0,Solo un padre,it +134656,I Love Sarah Jane,2008-01-01,14.0,http://www.bluetonguefilms.com/,,tt1157658,First love never dies,"Ah, young love. The air seems clearer. The sun seems brighter. There's a spring in the step. Too bad about the zombie apocalypse.",0,0,I Love Sarah Jane,en +149117,Lavatory Lovestory,2008-01-01,10.0,,,tt0983242,,"A single middle aged lady working as receptionist and cleaner in a public lavatory for men spends her time between chores reading ""Happy Woman"" and daydreaming about a loving partner. When an unknown man starts leaving flowers at her desk, she gets excited but also increasingly stressed out trying to figure out who is her secret admirer or, perhaps, the prankster.",0,0,Уборная история — любовная история,ru +18739,Faintheart,2008-01-01,90.0,,,tt1080012,,"A romantic comedy set in the world of battle re-enactments, about an irresponsible guy who has to shape up in order to win back his wife.",0,0,Faintheart,en +24792,Between the Folds,2008-01-01,56.0,,,tt1253565,,"Depicts a cast of fine artists and eccentric scientists (from MIT and NASA) who have devoted their lives to the unlikely medium of modern origami. Through their determination to reinterpret the world in paper, they arouse a fascinating mix of sensibilities towards art, form, expressiveness, creativity and meaning",0,0,Between the Folds,en +137746,The Recovered,2008-01-01,81.0,,,tt0979435,,"A heavily medicated woman returns to her hometown after fifteen years to make preparations for her estranged mother's funeral, only to be haunted by long-repressed memories of a childhood horror.",0,0,The Recovered,en +20880,Midnight Chronicles,2008-01-01,100.0,http://www.midnight-chronicles.com/,,tt1079372,,"In the world of MIDNIGHT, it is a time of overwhelming darkness. After three ages of scheming and war, the dark god Izrador has finally defeated the heroes and armies of the free races. Now, he rules the world of Aryth with an iron fist. Enslaved under the Shadow, the race of men leads an oppressed existence, and the elves and dwarves have retreated to distant forests and mountains.",0,0,Midnight Chronicles,en +104108,The Craving,2008-01-01,98.0,,,tt1291521,,A group of college students embarking on a cross country road trip to the Burning Man Festival find themselves stranded in desert. Come nightfall a vicious predatory monster comes out searching for a meal. Will anyone survive the nocturnal attacks from this ferocious beast?,0,0,The Craving,en +61699,Flipping Out - Israel's Drug Generation,2008-01-01,60.0,http://www.yoavshamir.com/films.asp?rId=15,,tt1213858,"The extreme psychotic break these people experience is commonly referred to as ""flipping out""","Military service in Israel is compulsive for all able-bodied Jewish men and women. Once their years of service is up they are granted a bonus which many use to travel to India to wind down and recover from their experiences. About 90% of them will use drugs during their travels and every year about two thousand of them will require professional help to recover from this drug use. The extreme psychotic break these people experience is commonly referred to as ""flipping out"".",0,0,Flipping Out - Israel's Drug Generation,en +32003,The Caretaker,2008-01-01,82.0,,,tt0871026,,"A group of teenage boys out to give their girlfriends a good scare on Homecoming night, which also happens to be Halloween, head to an abandoned house in an out-of-the-way fruit orchard where they uncover the story of a real life urban legend.",0,0,The Caretaker,en +40709,We Are From The Future,2008-01-01,116.0,http://m-i-b.ru/,165778,tt1192431,Back In Time,Four 21st century treasure seekers are transported back into the middle of a WWII battles in Soviet Union...,0,0,Мы из будущего,ru +12422,This Night,2008-01-01,110.0,,,tt1206485,,A group of people try to flee from a dictatorship government.,0,0,Nuit de Chien,fr +39849,Enlighten Up!,2008-01-01,82.0,http://enlightenupthefilm.com/,,tt1306972,A Skeptic's Journey into the World of Yoga,"Filmmaker Kate Churchill is determined to prove that yoga can transform anyone. Nick Rosen is skeptical but agrees to be her guinea pig. Kate immerses Nick in yoga, and follows him around the world as he examines the good, the bad and the ugly of yoga. The two encounter celebrity yogis, true believers, kooks and world-renowned gurus. Tensions run high as Nick’s transformational progress lags and Kate’s plan crumbles. What unfolds and what they discover is not what they expected.",0,0,Enlighten Up!,en +28917,Familiar Strangers,2008-01-01,86.0,http://www.familiarstrangersmovie.com/,,tt0914845,,"""Familiar Strangers"" asks the question. ""Is it really possible to relate to ones parents and siblings after being replaced by the family dog? . . . Perhaps as friends - weird friends?"" An off beat - funny - heartfelt story of family negotiating the changing relationships between parents and children, especially as those children grow into adulthood.",0,0,Familiar Strangers,en +69471,Lecture 21,2008-01-01,92.0,,,tt0929441,,"A student takes a bizarre trip through the Italian Alps after being inspired by a professor's lecture on Beethoven's ""Ode to Joy"" from his Ninth Symphony.",0,0,Lezione ventuno,it +33127,High The True Tale of American Marijuana,2008-01-01,90.0,,,tt1313242,,No overview found.,0,0,High The True Tale of American Marijuana,en +25659,"Fine, Totally Fine",2008-01-01,110.0,,,tt1241338,,A comedy about two listless brothers who fall for the same girl,0,0,Zenzen daijobu,en +17073,American Swing,2008-01-01,81.0,,,tt1058058,,Chronicles the rise and fall of 1970s New York City nightclub Plato's Retreat.,0,0,American Swing,en +16899,Easy Virtue,2008-01-01,93.0,http://www.easyvirtuethemovie.co.uk/,,tt0808244,Let's Misbehave!,"A young Englishman marries a glamorous American. When he brings her home to meet the parents, she arrives like a blast from the future - blowing their entrenched British stuffiness out the window.",0,0,Easy Virtue,en +6933,One Missed Call,2008-01-04,87.0,http://onemissedcallmovie.warnerbros.com/,126580,tt0479968,What will it sound like when you die?,"Several people start receiving voice-mails from their future selves -- messages which include the date, time, and some of the details of their deaths.",20000000,0,One Missed Call,en +28741,I Can See You,2008-01-06,97.0,,,tt0871865,,No overview found.,0,0,I Can See You,en +6557,27 Dresses,2008-01-10,111.0,http://www.27dressesthemovie.com/,,tt0988595,She's about to find the perfect fit.,Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.,30000000,160259319,27 Dresses,en +48805,L'allenatore nel pallone 2,2008-01-11,108.0,,441061,tt1073654,,,0,10743767,L'allenatore nel pallone 2,it +21571,Mithya,2008-01-27,110.0,,,tt1179782,,A two-bit actor faces challenges after he is asked by Police to impersonate a look-alike gangster.,0,0,Mithya,hi +14423,First Sunday,2008-01-11,96.0,http://www.sonypictures.com/movies/firstsunday/international/index.html,,tt0486578,Keep the faith. Steal the rest.,"Durell and LeeJohn are best friends and bumbling petty criminals. When told they have one week to pay a $17,000 debt or Durell will lose his son, they come up with a desperate scheme to rob their neighborhood church. Instead, they end up spending the night in the presence of the Lord and are forced to deal with much more than they bargained for.",0,38804615,First Sunday,en +14349,Sleepwalking,2008-01-14,101.0,,,tt0888693,,"When her boyfriend is arrested for marijuana possession, Joleen Reedy and her 11-year-old daughter, Tara, take refuge with Joleen's aimless brother, James. Joleen soon runs off with a truck driver, and James is unable to meet his responsibilities. After Child Protective Services takes possession of Tara, James abducts her from a foster home, and the two travel from California to Utah, where his abusive father lives.",0,204660,Sleepwalking,en +18094,Anvil! The Story of Anvil,2008-01-14,90.0,http://www.anvilthemovie.com/,,tt1157605,"At fourteen, they made a pact to rock together forever. They meant it.","At 14, best friends Robb Reiner and Lips made a pact to rock together forever. Their band, Anvil, hailed as the ""demi-gods of Canadian metal, "" influenced a musical generation that includes Metallica, Slayer, and Anthrax,. Following a calamitous European tour, Lips and Robb, now in their fifties, set off to record their 13th album in one last attempt to fulfill their boyhood dreams",0,0,Anvil! The Story of Anvil,en +135679,"Andrew Jenks, Room 335",2008-01-15,90.0,,,tt0762070,,"To get to know the world he lives in, college kid Andrew Jenks doesn't take off to remote, exotic places with a backpack, but instead decides to go and stay in a retirement home in Florida for a few weeks. There, he gets acquainted with Tammy, Libby, Dotty and Bill, all of whom are past their prime. These few weeks turn into a valuable experience for Jenks, who approaches the elderly people with an open mind and takes a close look at the less cheerful sides of old age, including decay and dependence.",0,0,"Andrew Jenks, Room 335",en +14565,Love Lies Bleeding,2008-01-15,94.0,,,tt0984204,,A struggling young couple stumbles upon a cache of dirty money after a shootout in their apartment building.,3000000,0,Love Lies Bleeding,en +27122,The Attic,2008-01-15,88.0,,,tt0485857,,"Emma has a strong aversion towards her family’s new house, especially the attic. After moving in, she becomes miserable and reclusive. The rest of her family also seems unhappy and unsettled. The situation escalates one day when Emma is in the attic alone. All of a sudden someone who looks exactly like Emma attacks her viciously.",700,0,The Attic,en +12085,Mad Money,2008-01-17,104.0,,,tt0951216,,Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.,0,0,Mad Money,en +13090,Sunshine Cleaning,2008-01-18,102.0,http://www.sunshinecleaning-themovie.com,,tt0862846,life's a messy business.,A single mother and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business – a biohazard removal/crime scene clean-up service.,5000000,16174377,Sunshine Cleaning,en +6687,Transsiberian,2008-01-18,111.0,,,tt0800241,You can't escape your lies.,A Trans-Siberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.,15000000,5926410,Transsiberian,en +8281,I Always Wanted to Be a Gangster,2008-01-18,108.0,,,tt0827713,,"Told in four vignettes, this existential comedy relates the exploits of four aspiring criminals who hope to improve their lot, but find that they might not have what it takes for a life of crime.",0,0,J'ai toujours rêvé d'être un gangster,fr +126729,Slingshot Hip Hop,2008-01-18,80.0,,,tt1157718,,The voice of a new generation rocks and rhymes as Palestinian rappers form alternative voices of resistance within the Israeli-Palestinian struggle.,0,0,Slingshot Hip Hop,en +14357,The King of Ping Pong,2008-01-18,107.0,http://www.pingpongkingen.se/,,tt1110272,,"Rille, an ostracized and bullied teenager, who only excels in the ping pong room, descends into a life-and-death struggle with his younger, more popular brother when the truth about their father surfaces during their spring break.",0,0,Ping-pongkingen,sv +16800,Roman Polanski: Wanted and Desired,2008-01-18,99.0,,,tt1157705,,Examines the public scandal and private tragedy which led to legendary director Roman Polanski's sudden flight from the United States.,0,0,Roman Polanski: Wanted and Desired,en +32790,The Good Witch,2008-01-19,89.0,,87251,tt1105729,,"A mysterious woman comes in to town and inhabits the local haunted mansion, making everyone wonder if she's a witch or ""The Grey Lady"".",0,0,The Good Witch,en +49230,InAlienable,2008-01-19,106.0,,,tt1027874,,"Still guilt-ridden over the accident that took his family's lives, Eric Norris discovers that his body is host to a parasite from another world. Except, it is more than a parasite: it carries his DNA.",0,0,InAlienable,en +4953,Be Kind Rewind,2008-01-20,102.0,,,tt0799934,"You name it, we shoot it.","A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.",0,0,Be Kind Rewind,en +5759,Baghead,2008-01-21,84.0,,,tt0923600,,"Four actors go to a cabin in the woods to write, direct, and act in a film that will jump-start their careers. Their idea is a horror film about a man with a bag over his head, but what happens when that man mysteriously shows up?",0,0,Baghead,en +18273,Downloading Nancy,2008-01-21,102.0,,,tt0411323,,"Sick of her life, housewife Nancy just wants it to be over and done with, but rather than kill herself, she hires a stranger from the Internet to do the job for her. But fate takes a strange turn when she meets her killer and the two fall in love. Of course, Nancy realizes that love and murder do not naturally go hand in hand.",3000000,0,Downloading Nancy,en +7555,Rambo,2008-01-24,92.0,http://www.rambofilm.com/,5039,tt0462499,Heroes never die... They just reload.,"When governments fail to act on behalf of captive missionaries, ex-Green Beret John James Rambo sets aside his peaceful existence along the Salween River in a war-torn region of Thailand to take action. Although he's still haunted by violent memories of his time as a U.S. soldier during the Vietnam War, Rambo can hardly turn his back on the aid workers who so desperately need his help.",50000000,113244290,Rambo,en +4644,The Year of Getting to Know Us,2008-01-24,90.0,,,tt0924134,"No Matter How Far You Go, You Can't Run From Family","A commitment-phobic man reunites with his estranged, ailing father and comes to terms with his own childhood.",0,0,The Year of Getting to Know Us,en +22371,Minutemen,2008-01-25,98.0,http://tv.disney.go.com/disneychannel/originalmovies/minutemen/index.html,,tt1072755,,A comedy/sci-fi/adventure about three high school kids who invent a time machine to spare others just like them from the humiliation they've endured.,0,0,Minutemen,en +3580,Changeling,2008-01-30,141.0,http://www.changelingmovie.net,,tt0824747,"To find her son, she did what no one else dared.","Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn't her child, the police captain has her committed to an asylum.",55000000,113020255,Changeling,en +31262,The Man from London,2008-01-31,139.0,,,tt0415127,,"One night Maloin, a switchman at a seaside railway station situated by a ferry harbour, witnesses a terrible event...",0,0,A londoni férfi,hu +2195,Beste Zeit,2008-01-31,95.0,,112860,tt0991269,,No overview found.,0,0,Beste Zeit,de +14558,Lejdis,2008-02-01,0.0,,,tt1175505,,"To zwariowana historia czterech przyjaciółek (Łucja - Edyta Olszówka, Korba - Anna Dereszowska, Monia - Magdalena Różczka, Gośka - Iza Kuna), których życie w wyniku galopady szalonych wydarzeń ulega w ciągu roku całkowitej zmianie. Towarzyszą im w tej galopadzie mężczyźni szlachetni (Istvan - Tomasz Kot, Wojtek - Tomasz Karolak, Tomek - Rafał Królikowski, Tadeusz - Krzysztof Globisz), mężczyźni nieszlachetni (Marek Dywanik - Robert Więckiewicz, Błażej Dywanik - Borys Szyc) oraz trudni do zdefiniowania (Artur - Piotr Adamczyk).To miłość i seks, zabawa i spontan oraz zdrada i zemsta w jednym! To świat, w którym kobiety naprawdę rządzą! W którym wiedzą, czego chcą, a zwłaszcza czego nie chcą! I w którym nie boją się powiedzieć facetom prosto w oczy, że jeśli naprawdę są z Marsa, to niech tam wracają!",0,0,Lejdis,en +227383,Kolmistaan,2008-02-01,,,,tt0972385,,,0,0,Kolmistaan,fi +9030,The Eye,2008-02-01,98.0,http://www.theeyethefilm.com,264335,tt0406759,How can you believe your eyes when they're not yours?,"Violinist Sydney Wells was accidentally blinded by her sister Helen when she was five years old. She submits to a cornea transplantation, and while recovering from the operation, she realizes that she is seeing dead people.",12000000,56309766,The Eye,en +72465,Private Lessons,2008-02-04,105.0,,,tt1226334,,An aspiring tennis player is taken under the wing of an established player as his family life falls apart.,0,0,Élève libre,fr +14145,Dark Floors,2008-02-06,85.0,,,tt0985025,,A man emerges with his autistic daughter and three others from a hospital elevator to find themselves trapped in the building with devilish monsters.,4300000,0,Dark Floors,en +15003,Chocolate,2008-02-06,110.0,,,tt1183252,Taste the fury.,An autistic woman with powerful martial art skills looks to settle her ailing mother's debts by seeking out the ruthless gangs that owe her family money.,0,0,ช็อคโกแลต,th +13849,The Cottage,2008-02-07,92.0,,,tt0465430,Sleeps Six Bloody Comfortably,"In a remote part of the countryside, a bungled kidnapping turns into a living nightmare for four central characters when they cross paths with a psychopathic farmer and all hell breaks loose.",0,0,The Cottage,en +10900,Surveillance,2008-02-08,97.0,http://www.arclightfilms.com/labels/arclight/new_films/surveillance.php,,tt0409345,,An FBI agent tracks a serial killer with the help of three of his would-be victims - all of whom have wildly different stories to tell.,3500000,1115493,Surveillance,en +16997,The Man Who Came Back,2008-02-08,122.0,,,tt1013651,,"Framed for murder and left for dead, a local legend comes back to make the guilty pay as he seeks revenge on those who killed his family, in this traditional Western about one man who stood against injustice.",0,0,The Man Who Came Back,en +18585,The Ramen Girl,2008-02-08,122.0,,,tt0806165,Her romance is on pins and noodles.,"An American woman is stranded in Tokyo after breaking up with her boyfriend. Searching for direction in life, she trains to be a râmen chef under a tyrannical Japanese master.",0,0,The Ramen Girl,en +63315,The Hottie & The Nottie,2008-02-08,91.0,,,tt0804492,Love never needed to be so blind.,"Nate moves to L.A. to track down Cristabel, the woman he's been in love with since childhood, only to discover that his plan to woo her only has one hurdle to overcome: what to do with June, Cristabel's ever-present, not-so-hot best friend? What's even more complicating is Nate's growing feelings for June, whose true beauty starts to emerge.",0,0,The Hottie & The Nottie,en +8064,Chiko,2008-02-09,92.0,http://www.chiko-derfilm.de/,,tt1132474,,"This is the story of Isa, who grows up in a Hamburg suburb. It might be one of the world's richest cities but every beast has its belly and here, in the very underbelly, Chiko lives in a world where violence, staking and keeping a claim, and drug taking are the norm. Where down is not an option, Chiko is determined to rise to the top, whatever and whomever it costs.",0,0,Chiko,de +14539,An Empress and the Warriors,2008-02-09,99.0,,,tt1186803,,"After the death of her father, a woman is forced to take over as empress and fight to save her kingdom.",0,0,江山美人,zh +7353,Fireflies in the Garden,2008-02-10,108.0,,,tt0961108,,The semi-autobiographical story centers on the complexities of love and commitment in a family torn apart when faced by an unexpected tragedy.,0,0,Fireflies in the Garden,en +8247,Jumper,2008-02-10,88.0,http://www.fox.co.uk/jumper,,tt0489099,anywhere is possible.,"David Rice is a man who knows no boundaries, a Jumper, born with the uncanny ability to teleport instantly to anywhere on Earth. When he discovers others like himself, David is thrust into a dangerous and bloodthirsty war while being hunted by a sinister and determined group of zealots who have sworn to destroy all Jumpers. Now, David’s extraordinary gift may be his only hope for survival!",85000000,222231186,Jumper,en +8847,Standard Operating Procedure,2008-02-12,117.0,http://www.sonyclassics.com/standardoperatingprocedure/,,tt0896866,,Errol Morris examines the incidents of abuse and torture of suspected terrorists at the hands of U.S. forces at the Abu Ghraib prison.,0,0,Standard Operating Procedure,en +18548,Filth and Wisdom,2008-02-13,81.0,,,tt1042499,,Filth & Wisdom is a poignant view of the lives of three not quite ordinary friends settled into meaningless jobs that barely keep them afloat while helping to finance their dreams of bigger and brighter futures. Their unqiue yet universal stories capture their struggles that are at turns funny and tragic but always brutally honest. Their intertwined lives explore the inevitable: a path paved with filth will often end in wisdom and one paved with wisdom will often end in filth.,0,0,Filth and Wisdom,en +22579,My Bestfriend's Girlfriend,2008-02-13,115.0,,,tt1143156,,"Grace is a dancer who comes out of a huge cake in a stag party attended by Evo, who's surprised when he learns later that Grace is the girlfriend of his best friend. When Evo is dumped by his own girlfriend, he hires Grace to pretend to be his new girl to make Ehra jealous, leading to some unexpected complications.",0,0,My Bestfriend's Girlfriend,en +8204,The Spiderwick Chronicles,2008-02-14,95.0,,,tt0416236,Their World Is Closer Than You Think.,"Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.",90000000,162839667,The Spiderwick Chronicles,en +13855,The Chaser,2008-02-14,125.0,,,tt1190539,,"Joong-ho is a dirty detective turned pimp in financial trouble as several of his girls have recently disappeared without clearing their debts. While trying to track them down, he finds a clue that the vanished girls were all called up by a same client whom one of his girls is meeting with right now.",0,0,추격자,ko +65545,Vanished Empire,2008-02-14,105.0,,,tt1217578,,"This story take place in Moscow during the 1970s and unfolds around the love triangle between two young men and a girl who study at the same university. They argue, make up, and face their first disappointments and victories. While busy with personal lives and loves, they miss foreseeing that the country in which they were born and live will soon disappear from the map.",0,0,Исчезнувшая империя,ru +61966,Swing,2008-02-14,84.0,,,tt1186656,,"The life of a characters of this movie can be described as a swing - up and down, up and down; each day, each week...",0,0,Kacheli,en +53883,Anjathe,2008-02-14,160.0,,,tt1922545,,Anjathey is truly one of the master pieces of Tamil cinema in recent years.,0,0,அஞ்சாதே,ta +14073,Jodhaa Akbar,2008-02-15,213.0,http://www.jodhaaakbar.com/,,tt0449994,,"Jodhaa Akbar is a sixteenth century love story about a marriage of alliance that gave birth to true love between a great Mughal Emperor, Akbar and a Rajput princess, Jodhaa.",8376800,13000000,Jodhaa Akbar,hi +10821,120,2008-02-15,114.0,http://www.120filmi.com/,,tt1166085,,"During the Sarikamis Battle, the Ottoman army runs out of ammunition and appeals to the people of Van for help, who happen to have supplies. However, the First World War is on and all men are fighting at four corners of the empire and therefore can not respond to to the appeal. The young children of Van want to do something...",0,0,120,en +99453,Derek,2008-02-19,76.0,,,tt1172992,,"Derek, in chronological order, records the work and life that stands at the foot of Derek Jarman's humour and spirit of being an artist. The filmmaker and actress, Isaac Julien and Tilda Swinton respectively, have produced and narrated a film on his life whereby the use of language is perpetuated to give some type of palpable meaning to British audiences alone, and to their own personal relationship with him.",0,0,Derek,en +16015,Worlds Apart,2008-02-22,116.0,,,tt1065318,,The daughter of a Jehovah's Witness is forced to choose between religion and love when she falls for someone outside her faith.,0,0,To verdener,da +14078,Morgan Pålsson - Världsreporter,2008-02-22,84.0,http://www.morganpalsson.se/,,tt1135941,,Utrikesreportern Morgan Pålsson och hans fotograf Robert Flycht blir skickade på ett uppdrag till ett okänt nordafrikanskt land – Matóbo. Uppdraget går ut på att följa valet i landet men istället utbryter en militärkupp och Morgan visar sig vara den enda utländska journalisten på plats. Detta är hans chans att visa vad han går för.,0,0,Morgan Pålsson - Världsreporter,sv +8669,Charlie Bartlett,2008-02-22,97.0,http://www.charliebartlett-themovie.com/,,tt0423977,Popularity is a state of mind.,"Awkward teenager Charlie Bartlett (Anton Yelchin) has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.",12000000,0,Charlie Bartlett,en +52147,Ulak,2008-02-25,0.0,,,tt0981352,,,0,0,Ulak,tr +14011,Justice League: The New Frontier,2008-02-26,75.0,,,tt0902272,"We stand, today, on the edge of a new frontier...","The human race is threatened by a powerful creature, and only the combined power of Superman, Batman, Wonder Woman, Green Lantern, Martian Manhunter and The Flash can stop it. But can they overcome their differences to thwart this enemy using the combined strength of their newly formed Justice League?",3500000,5231128,Justice League: The New Frontier,en +25655,Triad Wars,2008-02-28,112.0,,,tt1156444,One bad move...kills them all.,"In the midst of a violent gang war, a series of misfortunes threaten the fate of a gang boss and his mob.",0,0,Duo shuai,en +27283,Sappho,2008-02-29,86.0,,,tt0937373,Love has no rules.,"On honeymoon on the island of Lesbos, a woman falls for the daughter of a Russian archaeologist.",0,0,Сафо,uk +94807,Heaven's Heart,2008-02-29,95.0,,,tt1073666,,"Two couples, old friends, end up in a heated debate over adultery at a dinner party.",0,0,Himlens hjärta,en +19582,Sherman's Way,2008-02-29,97.0,http://www.shermansway.com/,,tt0834541,,"An eccentric Olympic has-been who prefers leisure to work, finds himself stuck with a rigid pre-law Yale student with no time for wasting time. Between skinny-dipping and stealing cars, this odd-couple learn from each other that balance is the key to getting the girl, getting the job and getting a life.",0,0,Sherman's Way,en +87952,Yeast,2008-03-01,78.0,http://www.yeastyeast.com/home.html,,tt1189367,,"A maddeningly oblivious, tyrannical and emotionally stunted young woman tries her best to negotiate two toxic friendships.",0,0,Yeast,en +75101,Red Victoria,2008-03-01,88.0,http://www.imdb.com/title/tt1190919/,,tt1190919,"Finding your muse, can be murder.",A writer is forced to write a horror movie by an undead muse who motivates him by killing his friends and family.,5000,0,Red Victoria,en +75626,For the Love of a Dog,2008-03-01,90.0,,,tt0903831,,"When the family dog gets sick, the kids and their friends rally to earn the money to pay for the veterinarian.",1000000,0,For the Love of a Dog,nl +24411,The Shepherd: Border Patrol,2008-03-04,95.0,,,tt0827521,Welcome To Mexico,A Texas cop battles ex-navy seals who are trying to traffic drugs from Mexico into the USA.,0,0,The Shepherd: Border Patrol,en +14983,Carver,2008-03-04,97.0,,,tt1001333,,Based on true events,0,0,Carver,en +362363,Directed by Sidney Lumet: How the Devil Was Made,2008-03-04,24.0,,,tt1170352,,"The making of ""Before the Devil Knows You're Dead""",0,0,Directed by Sidney Lumet: How the Devil Was Made,en +8282,Summer Hours,2008-03-05,100.0,http://www.lheuredete-film.mk2.com/,,tt0836700,,Two brothers and a sister witness the disappearance of their childhood memories when they must relinquish the family belongings to ensure their deceased mother's succession.,0,0,L'Heure d'été,fr +20414,"Grande, grosso e Verdone",2008-03-07,0.0,,,tt1077026,,No overview found.,0,0,"Grande, grosso e Verdone",en +13493,College Road Trip,2008-03-07,83.0,http://disneydvd.disney.go.com/college-road-trip.html,,tt0997047,,"When an overachieving high school student decides to travel around the country to choose the perfect college, her overprotective cop father also decides to accompany her in order to keep her on the straight and narrow.",0,68397662,College Road Trip,en +51370,The Cool School,2008-03-07,86.0,http://www.pbs.org/independentlens/coolschool/,,tt1031225,,How LA Learned to Love Modern Art. A lesson in how a few renegade artists built an art scene from scratch.,0,0,The Cool School,en +188180,Body Fat Index of Love,2012-12-20,98.0,,,tt2281425,,"Timo Stigu Mertala is a celebrated, award-winning adman, and sworn to singlehood. He is a well known figure in the Helsinki nightlife.",0,0,Rakkauden rasvaprosentti,fi +15527,Otis,2008-03-07,100.0,,,tt0996967,,"After being captured and tortured by the psychopath Otis, teen cheerleader Riley Lawson escapes and informs her parents, who quickly sidestep sluggish FBI agents and take matters into their own hands. But the Lawsons' revenge plan hits a snag when Otis's unusual brother enters the picture.",0,0,Otis,en +25936,Radio Day,2008-03-08,100.0,,122776,tt1217565,,One (and not the most easy one) day from the life of a big Moscow radio station.,4000000,0,День радио,ru +18044,Ogre,2008-03-08,90.0,,,tt0923824,,A vicious Ogre rules over a town that has been stuck in time since the 1800's.,0,0,Ogre,en +53214,Signs,2008-03-10,12.0,,,tt1377575,,Where do you find love? Sometimes all you need is a sign.,0,0,Signs,en +16023,South Park: Imaginationland,2008-03-11,67.0,,,tt1308667,,Some of the boys in South Park elementary find themselves on a balloon ride to an imaginary land. At arrival they're faced with an unimaginably threat.,0,0,South Park: Imaginationland,en +70027,The Wrecking Crew,2008-03-11,101.0,http://www.wreckingcrewfilm.com/,,tt1185418,,"A celebration of the musical work of a group of session musicians known as ""The Wrecking Crew"", a band that provided back-up instrumentals to such legendary recording artists as Frank Sinatra, The Beach Boys and Bing Crosby.",0,0,The Wrecking Crew,en +18932,Knock Knock,2008-03-14,92.0,,,tt0471011,,"Knock Knock is a horror film that combines fear with revenge, hate with justice and responsibility with sacrifice. The bible says an ""Eye for an Eye."" Rico was just a big fun loving son of a hard working neighborhood business man. The problem is his dad is an undertaker. Some popular high school Students thought he was weird because of it. Rico kept to himself...",0,0,Knock Knock,en +12912,Chaos Theory,2008-03-14,87.0,http://chaostheorymovie.warnerbros.com/,,tt0460745,This man will bring order to the universe...or not.,"Frank Allen, a professional speaker who lectures on time management has a perfectly ordered and scheduled life, down to the minute. When his wife sets his clock forward 10 minutes as a joke, his day is thrown off. Deciding that his strictly ordered life has done him little good, he begins to make multiple choice index cards, choosing one at random and doing what is written on the card.",0,240476,Chaos Theory,en +19989,Aces 'N' Eights,2008-03-15,86.0,,,tt1087828,,"Already taking a gamble settling in the uncharted west, the peaceful settlers of a town destined for railroad greatness suddenly find themselves being ruthlessly gunned down. With no law and order to be found, justice falls onto the shoulders of an elderly rancher and an accomplished, but retired, gunslinger.",0,0,Aces 'N' Eights,en +15936,Just Add Water,2008-03-18,95.0,,,tt0790723,Because a life can grow anywhere.,"An offbeat romantic comedy about a decent guy, Ray Tuckby, with a dead-end life in the dead-end town of Trona, CA. After encouragement from a stranger whom he happens upon, Ray begins to dream again. He sheds the parasites in his life, musters the nerve to pursue his childhood love, and finally takes back his community by toppling the local teenage Meth-baron.",0,0,Just Add Water,en +272426,H3 - Halloween Horror Hostel,2008-03-18,,,,tt1143145,,,0,0,H3 - Halloween Horror Hostel,de +68063,Questa notte è ancora nostra,2008-03-19,98.0,,,tt1205600,,,0,0,Questa notte è ancora nostra,it +8276,I've Loved You So Long,2008-03-19,115.0,,,tt1068649,,A woman struggles to interact with her family and find her place in society after spending fifteen years in prison.,0,0,Il y a longtemps que je t'aime,fr +16439,The Country Teacher,2008-03-20,117.0,,,tt1284526,,"A gifted and well-qualified young teacher takes a job teaching natural sciences at a grammar school in the country. Here he makes the acquaintance of a woman and her troubled 17-year old son. The teac... read more read more...her has no romantic interest in the woman but they quickly form a strong friendship, each recognizing the other's uncertainties, hopes and longing for love.",0,0,Venkovský učitel,cs +52418,Fate,2008-03-20,123.0,,,tt1092034,,"In the dark criminal world of Seoul, U-min, Cheol-jung, Do-wan and Yeong-hwan are close friends in a gang. One day, with the help of an older member Gang-seop, U-min, Cheol-jung and Do-wan attack the gang's casino so they can start new lives. But their plan goes awry when Cheol-jung betrays them, and U-min goes to prison. He becomes the scapegoat to save his friends' lives.",0,0,숙명,ko +19116,Asylum,2008-03-20,93.0,,,tt0804443,,"The teenager Madison McBride is traumatized by the loss of her deranged father when she was nine years old and the suicide of her beloved brother Brandon one year ago. She decides to join the Richard Miller University, where Brandon committed suicide, to overcome her demons. While walking to her dorm, she meets the weird janitor Wilbur Mackey that tells her that the place is haunted. Madison befri",22000000,0,Asylum,en +8457,Drillbit Taylor,2008-03-20,102.0,http://www.drillbittaylor.com/,,tt0817538,You get what you pay for,"Three kids hire a low-budget bodyguard to protect them from the playground bully, not realising he is just a homeless beggar and petty thief looking for some easy cash.",40000000,0,Drillbit Taylor,en +12135,Left Bank,2008-03-26,102.0,http://www.linkeroeverthemovie.com/,,tt0940723,,"A chilling thriller about a woman, who upon moving in with her new boyfriend, becomes obsessed with the fate of the previous tenant and descends into madness.",0,0,Linkeroever,nl +284117,Fitna,2008-03-27,15.0,,,tt1198399,,A short film in which Quran verses are shown alongside images from terrorist attacks.,0,0,Fitna,en +127445,Rain,2008-03-28,110.0,,,tt1194615,,"Buenos Aires. It rains. Alma is in her car, stuck in Buenos Aires' traffic. She has recently broken-up with her boyfriend, and she has been living in her little car since then. Suddenly, Roberto gets into the car. He's wet and hurt, he's tired of the rain, of broken dreams. He has come back after thirty years abroad. In this new city he has nothing and nobody, just a father in coma, whom he has no relationship. He promises to leave the car as soon as the rain ceases. Alma, not knowing exactly why lets him in. That night will be different. And the next few days too. There's something new to find in the depth of their hearts.",0,0,Lluvia,es +8988,Stop-Loss,2008-03-28,113.0,http://www.stoplossmovie.com/,,tt0489281,The bravest place to stand is by each other's side.,"A veteran soldier returns from his completed tour of duty in Iraq, only to find his life turned upside down when he is arbitrarily ordered to return to field duty by the Army.",25000000,11207130,Stop-Loss,en +46121,The Capture of the Green River Killer,2008-03-30,180.0,http://www.mylifetime.com/movies/the-capture-of-the-green-river-killer-i-ii,,tt1100911,,"A pair of girls seeking adventure beyond the their Western Washington trailer park encounter the area's most ruthless serial killer. Based on Sheriff David Reichert's book, ""Chasing the Devil: My Twenty-Year Quest to Capture the Green River Killer"".",0,0,The Capture of the Green River Killer,en +54102,Generation Kill,2008-07-13,470.0,,,tt0995832,The New Face Of American War,"Marines prepare to invade Iraq at the beginning of Operation Iraqi Freedom; while the soldiers wait to receive their orders, they learn a Rolling Stone columnist will be embedded with them",0,0,Generation Kill,en +172474,The Juche Idea,2008-03-31,62.0,,,tt1233599,,"Jim Finn, follows a South Korean video artist in North Korea who hopes to revitalize Juche cinema, somewhat inspired by a true story of a South Korean filmmaker kidnapped in the 70s to make the North Korean film industry better. This experimental satire that examines what happens when a South Korean filmmaker sojourns into communist North Korea to breathe new life into that country's flagging, propaganda-driven movie industry. Believing that cinema can prop up North Korea's Juche Idea of self-reliance, mad dictator Kim Jong-Il pulls out all the stops to help the young émigré produce appropriate films.",0,0,The Juche Idea,en +14669,Yonkers Joe,2008-04-01,101.0,,,tt1018830,,"Yonkers Joe tells the story of a dice hustler whose determination to make one last grab for a big score in Vegas is complicated by the reappearance of his estranged, mentally challenged son into his life.",0,0,Yonkers Joe,en +73578,Jalsa,2008-04-02,0.0,,,tt1191121,,"Sanjay (Pawan Kalyan) falls in love with Indu (Kamalini Mukherjee). Her father Rammohan Reddy (Prakash Raj) doesnt approve of it & she is married to someone else. Later, Bhagyamathi (Ileana) falls for him & he goes to meet her father who turns out to be Rammohan Reddy. Somewhere in between Sanjays life as a naxal is depicted.",0,0,Jalsa,te +7210,Hardcover,2008-04-02,90.0,http://www.hardcover-derfilm.de/,,tt1010313,,No overview found.,0,0,Hardcover,de +10488,Nim's Island,2008-04-03,96.0,,232844,tt0410377,Your adventure starts here.,A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.,37000000,100076342,Nim's Island,en +14538,Three Kingdoms: Resurrection of the Dragon,2008-04-03,102.0,,,tt0882978,,"The aging Zhao embarks on his final and greatest campaign, a road to adventure that will crown his name in glory for all time.",0,0,三国之见龙卸甲,en +8371,Guter Junge,2008-04-09,90.0,,,tt1205492,,No overview found.,0,0,Guter Junge,de +8617,Prom Night,2008-04-10,88.0,http://www.sonypictures.com/movies/promnight/,123255,tt0926129,A Night To Die For.,"Donna's senior prom is supposed to be the best night of her life, though a sadistic killer from her past has different plans for her and her friends.",0,14796236,Prom Night,en +21214,"One, Two, Many",2008-04-10,88.0,,,tt0882755,,A modern-day romance that follows one man's quest to find the girl of his dreams: one who wants to do it with him and another girl.,0,0,"One, Two, Many",en +22419,Camille,2008-04-13,94.0,http://www.camillemovie.com/,,tt0462219,A romantic comedy about a marriage that truly is forever.,A twisted honeymoon adventure about a young couple on their way to Niagara Falls.,6000000,0,Camille,en +9870,Forgetting Sarah Marshall,2008-04-17,111.0,http://www.forgettingsarahmarshall.com/,,tt0800039,"You lose some, you get some.","When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.",30000000,105173115,Forgetting Sarah Marshall,en +62783,A Real Dad,2008-04-17,87.0,,,tt1482229,,"Roman Shilo, a known criminal, suddenly must deal with his fourteen years old daughter and not only with her but with her little stepbrother and stepsister as well.",0,0,Realnyy Papa,en +26969,8 Dates,2008-04-18,95.0,,,tt1172974,,,0,0,8 Citas,es +29144,John Oliver: Terrifying Times,2008-04-20,56.0,,,tt1218030,,"American viewers may know him best as the British correspondent on ""The Daily Show,"" but John Oliver is also an accomplished stand-up comic. In his first Comedy Central special Oliver tackles the topics that perplex him about the United States. He takes well-aimed shots at the American political process and the invasion of Iraq (including how the Brits would have done it differently), and argues for reparations from the Revolutionary War.",0,0,John Oliver: Terrifying Times,en +17175,The Last Word,2008-04-20,90.0,,,tt0876233,,"An odd-but-gifted poet, Evan Merck (Wes Bentley, 'American Beauty') makes his living writing suicide notes for the soon-to-be departed. So when he meets Charlotte (Winona Ryder, 'Girl, Interrupted'), the free-spirited sister of his latest client, Evan has no choice but to lie about his relationship to her late, lamented brother.",0,0,The Last Word,en +13652,Ca$h,2008-04-23,100.0,http://www.tfmdistribution.com/cash/,,tt1002966,,"A man meets up with two ""good guys"" to recover what is unlawfully his, taking them on his whirlwind ride, doing things they never would have imagined, just to survive.",0,0,Ca$h,fr +10529,Outlander,2008-04-24,115.0,,,tt0462465,It destroyed his world. He won't let it destroy ours.,"During the reign of the Vikings, a man from another world crash-lands on Earth, bringing with him an alien predator. The man must fuse his advanced technology with the weaponry of the vikings to fight the monster.",50000000,7033683,Outlander,en +86118,This Way Up,2008-04-24,9.0,,,tt1279499,,A.T Shank & Son have a bad day at the parlor when a falling boulder flattens their hearse. Emotional and literal pitfalls lie in wait for the odd couple as they make their way cross country with just a coffin for company. This short animated caper puts the fun back into funeral as their journey and relationship unravel on an epic scale.,0,0,This Way Up,en +20107,Bart Got a Room,2008-04-25,80.0,,,tt0472050,,"Everyone is searching for love in director Brian Hecker's semi-autobiographical story. Danny Stein, a high school senior at the bottom of the social food chain, needs a prom date. As a cause of anxiety for Danny, Bart Beeber, the nerdiest guy in school, has already found a date -- and booked a hotel room. At the same time, Danny's divorced parents are both looking for relationships again.",2000000,0,Bart Got a Room,en +54900,Gitmek: My Marlon and Brando,2008-04-25,90.0,,,tt0920460,,"Ayça and Hama Ali are together in spirit, but divided by geography. With the outbreak of the Iraq War leaving him stranded, she embarks on an odyssey from Turkey to be reunited with him.",500000,0,Gitmek: Benim Marlon ve Brandom,tr +277622,The 27 Club,2008-04-26,0.0,,,tt0906783,,Twenty-seven is more than just a number. It is a lifetime.,0,0,The 27 Club,en +42521,Idiots and Angels,2008-04-26,78.0,http://www.idiotsandangels.com/,,tt1013607,,"Angel, a selfish rotter is hanging around in a local bar, groping the wife of the barman and dealing with weapons. One morning he wakes up finding a pair of wings growing at his back. These wings do good deeds against his nature. But suddenly he finds himself fighting those who want these wings for their own dark plans.",0,0,Idiots and Angels,en +167190,Western Spaghetti,2008-04-26,2.0,,,tt1352849,,Stop motion movie showing the cooking of spaghetti using everyday objects instead of food.,0,0,Western Spaghetti,en +27941,Lockjaw: Rise of the Kulev Serpent,2008-07-14,0.0,,,tt1107397,,,0,0,Lockjaw: Rise of the Kulev Serpent,en +14878,The Objective,2008-04-28,90.0,,,tt0962711,,"In the supernatural thriller The Objective, writer-director Daniel Myrick locates the action in a remote mountain region on Afghanistan, where a team of US Special Ops forces is dispatched with the ostensible orders of locating an influential Muslim cleric. While on the mission they find themselves lost in a Middle Eastern 'Bermuda Triangle' of ancient evil and faced with an enemy that none of them could have imagined.",0,0,The Objective,en +52323,Touching Home,2008-04-29,108.0,http://www.touchinghomemovie.com/,,tt0860870,,The true story about a father struggling to make amends with his twin sons as they pursue their dreams of professional baseball.,2000000,0,Touching Home,en +38913,Awakening,2008-04-29,39.0,,,tt1233198,,"Carsten is dating Melissa, who introduces him to her parents. On a camping trip with Melissa's family, Carsten finds that he shares a secret with Melissa's father.",0,0,En Forelskelse,en +83897,Uprise,2008-04-30,99.0,,,tt1082144,,"In this evocative story told ingeniously with minimal dialogue, men and women from various backgrounds and places each deal with the loss of a loved one.",0,0,A Zona,pt +1726,Iron Man,2008-04-30,126.0,http://www.ironmanmovie.com/,131292,tt0371746,Heroes aren't born. They're built.,"After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.",140000000,585174222,Iron Man,en +9736,Love Me No More,2008-04-30,85.0,http://www.deuxjoursatuer-lefilm.com/,,tt0996930,,"Antoine Méliot is around 40 years old and has everything he needs to be happy: a beautiful wife, two adorable children, friends he can count on, a pretty house in the Yvelines and money. But one day he decides to ruin everything in one weekend.",0,0,Deux jours à tuer,fr +18616,No Man's Land: The Rise of Reeker,2008-05-01,88.0,,297371,tt1090671,,"A sheriff and his son who are tracking down a group of bank robbers on their way to Mexico, only to discover that they are being stalked by a far more deadly enemy — The Reeker.",2000000,0,No Man's Land: The Rise of Reeker,en +10761,Made of Honor,2008-05-02,101.0,,,tt0866439,He'll do anything to get the groom out of the picture.,"Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her 'maid' of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.",40000000,84601681,Made of Honor,en +15661,Noise,2008-05-09,92.0,,,tt0425308,,A man who is being driven crazy by the noise in New York City decides to take vigilante action against it.,0,0,Noise,en +7459,Speed Racer,2008-05-09,135.0,http://www.speedracerthemovie.warnerbros.com/,,tt0811080,Go!,"Speed Racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring an end to the corruption and criminal activities. Inspired by the cartoon series.",120000000,93945766,Speed Racer,en +13993,Turn the River,2008-05-09,92.0,,,tt0811128,,A pool shark takes the ultimate gamble when she kidnaps her own son and flees her ex-husband.,0,0,Turn the River,en +29896,Never Cry Werewolf,2008-05-11,87.0,,,tt1135933,An Immortal Battle for Survival,"Teenager Loren (Nina Dobrev) doesn't like her new neighbor, Jared (Peter Stebbings), or his vicious dog. Along with her friend Steven (Sean O'Neill), Loren spies on Jared and begins to suspect he's a werewolf, responsible for a rash of disappearances. But Jared is watching her just as closely, because Loren reminds him of his dead wife. As a full-moon night nears, Loren enlists the help of TV star Redd Tucker (Kevin Sorbo), who knows how to hunt -- and who believes her werewolf theory.",0,0,Never Cry Werewolf,fr +19237,Kill Theory,2008-05-14,82.0,,,tt0893532,,"Whilst celebrating a graduation at a secluded vacation home, a group of college students find themselves targeted by a sadistic killer who forces them to play a deadly game of killing one another in order to survive.",0,0,Kill Theory,en +2454,The Chronicles of Narnia: Prince Caspian,2008-05-15,150.0,,420,tt0499448,Hope has a new face.,"One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.",225000000,419651413,The Chronicles of Narnia: Prince Caspian,en +57816,8th Wonderland,2008-05-15,94.0,http://www.8wonderland.org/,,tt1060234,How to fight a country that doesn't exist?,A website where people can virtually live in a true democracy becomes so popular that its leading members take questionable actions to improve the real world as well. This backfires and various governments brand them terrorists.,0,0,8th Wonderland,en +8882,Gomorrah,2008-05-16,135.0,http://www.mymovies.it/gomorra/,,tt0929425,,"An inside look at Italy's modern-day crime families, the Camorra in Naples and Caserta. Based on a book by Roberto Saviano. Power, money and blood: these are the ""values"" that the residents of the Province of Naples and Caserta have to face every day. They hardly ever have a choice and are forced to obey the rules of the Camorra. Only a lucky few can even think of leading a normal life.",0,0,Gomorra,it +247500,Le 7ème juré,2008-05-16,0.0,,,tt1177179,,,0,0,Le 7ème juré,fr +8932,Salt of This Sea,2008-05-16,109.0,http://www.philistinefilms.org/,,tt1090680,,"Born in Brooklyn to Palestinian refugee parents, Soraya (Suheir Hammad) decides to journey to the country of her ancestry when she discovers that her grandfather's savings have been frozen in a Jaffa bank account since his 1948 exile. She soon finds, however, that her simple plan is a complicated undertaking -- and one that takes her farther from her comfort zone (both geographically and emotionally) than she'd imagined in this romantic drama.",0,0,Milh Hadha al-Bahr,en +20186,Better Things,2008-05-17,93.0,,,tt0872245,,"Gails agoraphobia keeps her inside where she escapes into romance novels. She shares a house with her Nan, recently back from the hospital. Gradually, they both try to reach out to each other to break their isolation. Rob plunges further into his addiction as a way of numbing his heartbreak over the death of his girlfriend. In his stupor, he dreams of embracing her again. Mr & Mrs Gladwin are going through a shift in their 60 year relationship. Years of resentment and unspoken truths have built a barrier between them that Mrs Gladwin, in her abiding love, tries to erode in little gestures.",0,0,Better Things,en +8906,Cloud 9,2008-05-17,98.0,,,tt1037228,A Story of New Love in Old Age,A romantic drama about a woman who enters into an affair after 30 years of marriage.,98,0,Wolke 9,de +8929,Johnny Mad Dog,2008-05-20,97.0,http://www.tfmdistribution.com/johnnymaddog/,,tt1042424,,A cast of unknown performers are used in this drama about child soldiers fighting a war in an unnamed African country.,0,0,Johnny Mad Dog,en +31418,Everybody Dies But Me,2008-05-21,80.0,,,tt1227189,,"One Monday morning Katya, Vika and Zhanna learn that there will be a school disco, their first disco, on the coming Saturday night. The girls feverishly start preparing for the event, which rapidly becomes the most important moment ever in their universe, and looks like the ideal way to escape their daily lives...",0,235432,"Все умрут, а я останусь",ru +8897,Frontier of the Dawn,2008-05-22,106.0,,,tt1073535,,"A celebrity is caught by her husband with a young lover. She ends the relationship, but slowly goes insane and kills herself.",0,0,La Frontière de l'aube,en +8942,Wendy and Lucy,2008-05-22,80.0,,,tt1152850,"On the long road, friendship is everything.","Wendy, a near-penniless drifter, is traveling to Alaska in search of work, and her only companion is her dog, Lucy. Already perilously close to losing everything, Wendy hits a bigger bump in the road when her old car breaks down and she is arrested for shoplifting dog food. When she posts bail and returns to retrieve Lucy, she finds that the dog is gone, prompting a frantic search for her pet.",200000,0,Wendy and Lucy,en +8935,Parking,2008-05-23,112.0,,,tt1232827,,"On Mother's Day in Taipei, Chen Mo makes a date for dinner with his wife, hoping to bring their estranged relationship back together. While buying a cake on his way home, a car unexpectedly double parks next to his car, preventing his exit.",0,0,停車,zh +14050,Recount,2008-05-28,116.0,,,tt1000771,,A chronicle of the weeks after the 2000 U.S. presidential election and the subsequent recounts in Florida.,0,0,Recount,en +10665,The Strangers,2008-05-29,86.0,http://www.universalstudiosentertainment.com/the-strangers/,,tt0482606,Lock the door. Pretend you're safe.,"After returning from a wedding reception, a couple staying in an isolated vacation house receive a knock on the door in the mid-hours of the night. What ensues is a violent invasion by three strangers, their faces hidden behind masks. The couple find themselves in a violent struggle, in which they go beyond what either of them thought capable in order to survive.",9000000,82391145,The Strangers,en +16047,Go with Peace Jamil,2008-05-30,90.0,,,tt0431842,,"An Arabic tale that takes place in Scandinavia. About ancient religious hatred, about love, punishment, guilt and redemption, about being responsible for one's own actions and refusing a path of violence. Jamil stands in the middle. He is fighting the war of his life; a war within himself.",0,0,Gå med fred Jamil - Ma salama Jamil,en +62130,El Big Bang de Tunguska,2008-06-01,,,,tt1459858,,,0,0,El Big Bang de Tunguska,es +31216,I Can't Think Straight,2008-06-01,80.0,http://www.icantthinkstraightfilm.com/,,tt0830570,,"I Can't Think Straight is a 2007 romance movie about a London-based Jordanian of Palestinian descent, Tala, who is preparing for an elaborate wedding. A turn of events causes her to have an affair and subsequently fall in love with another woman, Leyla, a British Indian. The movie is distributed by Enlightenment Productions. It was released in different theatres between 2008 and 2009. The DVD was released on 4 May 2009. The movie is directed by Shamim Sarif and stars Lisa Ray and Sheetal Sheth. The two actresses star in another movie with lesbian characters, namely The World Unseen, released in 2008.",0,0,I Can't Think Straight,en +9502,Kung Fu Panda,2008-06-04,90.0,http://www.kungfupanda.com/,77816,tt0441773,Prepare for awesomeness.,"When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the ""chosen one"" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.",130000000,631744560,Kung Fu Panda,en +13506,Admiral,2008-06-06,123.0,http://admiralfilm.ru/,,tt1101026,The Highest Command,"This is a story of a great love facing the greatest drama of the history of Russia. Admiral Kolchak is a true war hero and beloved husband and father. One day he meets Anna, the love of his life and the wife of his best friend. The revolution in his heart faces the revolution in his own country His destiny is to become the Supreme Rules of Russia.",2000000,38135878,Адмиралъ,ru +30619,D Day,2008-06-06,100.0,,,tt1432916,,The remake of famous Commando (1985) movie.,5000000,0,Den' D,ru +52803,Sebastian's Voodoo,2008-06-07,4.0,http://www.pixelnitrate.com/sebastians_voodoo,,tt1305751,,A voodoo doll must find the courage to save his friends from being pinned to death.,2000,0,Sebastian's Voodoo,en +26823,Watercolors,2008-06-07,114.0,,,tt0826756,Two boys make a splash at love.,"Carter, a troubled teen stays with a friend of his dads and starts flirting with her son Danny. After the weekend school returns, however Carter a school jock tells Danny he does not want to be seen with him at school. Their relationship grows outside school hours though & soon enough Danny falls in love with Carter & after Danny is attacked romance ensures, but can it last.",0,0,Watercolors,en +55956,God's Puzzle,2008-06-07,134.0,http://www.kami-puzzle.com/,,tt1089677,,A set of twins -- one a hard-working student and the other a drifter -- team up with a dropout to unlock the secrets of the universe and to build one of their own.,0,0,神様のパズル,ja +51549,All Around Us,2008-06-07,140.0,http://bitters.co.jp/gururi/,,tt1245489,,"Lily Franky plays the role of a courtroom sketch artist named Kanao, and actress Tae Kimura plays the role of his wife Shoko. The story takes place in the 1990s, involving real-life events from that time.",0,0,ぐるりのこと。,ja +53222,Skhizein,2008-06-09,13.0,,,tt1235926,,"Having been struck by a 150-ton meteorite, Henry has to adapt to living precisely ninety-one centimeters from himself.",0,0,Skhizein,fr +14555,Sagan,2008-06-11,180.0,,,tt1052353,,No overview found.,0,0,Sagan,fr +261112,Cairn,2008-06-12,15.0,,,tt1308678,,Cairn is a dark film on adolescence in which the main character Johan (11) faces a moral dilemma after having started playing a seemingly innocent prank. The story unfolds on a l level in the turbulent transition between childhood and adulthood.,0,0,Varde,en +1724,The Incredible Hulk,2008-06-12,114.0,,,tt0800080,You'll like him when he's angry.,"Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.",150000000,163712074,The Incredible Hulk,en +35623,For My Father,2008-06-13,100.0,,,tt1043869,,,0,0,Sof Shavua B'Tel Aviv,he +15671,Picture This,2008-07-13,92.0,,,tt1076252,A no-body is about to become a somebody to impress everybody!,"Bookish and unpopular Mandy finds her luck finally changing when Drew, the school hottie, invites her to the year's biggest party. But with being grounded and Drew's ex-girlfriend bent on thwarting her, Mandy may be destined to remain a geek. Can a little ingenuity and some help from her friends save the day?",0,0,Picture This,en +17332,The Soloist,2009-04-24,109.0,http://www.soloistmovie.com,,tt0821642,Life has a mind of its own,"A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.",60000000,31720158,The Soloist,en +12446,Angel of Mine,2008-06-13,95.0,,,tt1146314,,"Elsa, a woman with a long history of depression in the midst of a divorce from her husband of 12 years develops an obsession with a seven year old girl she sees at a birthday party when she comes to pick up her son Thomas. Determined to find out more about the girl, Elsa uses Thomas as a way into the girl's family by aiding to develop a friendship between Thomas and the girl's brother Jeremy so that in turn Elsa can then befriend the girl's mother Claire. She uses Thomas more and more in her pursuit of this obsession telling her employer and fellow employees that Thomas is seriously ill so that she can run off watch the girl (Lola) wherever she goes. Elsa even tells her parents lies that she is going out with a friend so they will baby-sit so Elsa can even go as far as hiding in the bushes outside of Lola's house and watching her at night.",0,0,L'Empreinte de l'ange,fr +43727,Jolene,2008-06-13,121.0,,,tt0867334,A life between the exit signs.,A teenage orphan spends ten years traveling to experience life.,0,0,Jolene,en +13058,Adulthood,2008-06-16,99.0,,159603,tt1126596,,"After serving six years for killing his schoolmate, a young man learns that someone is out for revenge.",0,0,Adulthood,en +13042,Presto,2008-06-18,5.0,http://www.pixar.com/shorts/presto/index.html,,tt1245104,An Amazing Five Minutes Of Animated Fun,"Dignity. Poise. Mystery. We expect nothing less from the great turn-of-the-century magician, Presto. But when Presto neglects to feed his rabbit one too many times, the magician finds he isn't the only one with a few tricks up his sleeve!",0,0,Presto,en +13655,Camp Rock,2008-06-20,94.0,http://disneychannel.com/camprock/,148055,tt1055366,"Don't fit in, stand out.","When Mitchie gets a chance to attend Camp Rock, her life takes an unpredictable twist, and she learns just how important it is to be true to yourself.",0,0,Camp Rock,en +13741,2 Alone in Paris,2008-06-25,94.0,http://www.seulstwo.com,,tt1077097,What if Paris was yours?,"A bumbling Paris policeman is doggedly determined to capture the master thief that repeatedly eludes him, even when they're the last two men on Earth.",0,0,Seuls Two,fr +52247,The Herb of the Rat,2008-06-26,80.0,,,tt1270631,,"The names of the characters are pronouns. She is a teacher, with his father dead just three days ago. Faced with this situation, He intends to take care of her while He is alive. This is the beginning of an odd relationship.",0,0,A Erva do Rato,en +84056,Un'estate al mare,2008-06-27,0.0,,,tt1213917,,,0,0,Un'estate al mare,it +17241,The Tenth Circle,2008-06-28,120.0,,,tt1132288,,"Based on Jodi Picoult's best-selling novel, ""The Tenth Circle"" tells the powerful story that probes the unbreakable bond between parent and child.",0,0,The Tenth Circle,en +13459,Barbie in 'A Christmas Carol',2008-07-01,76.0,http://www.barbie.com/christmas,,tt1314715,,"On Christmas Eve, Kelly is reluctant to go to a Christmas Eve ball, so Barbie tells her the story of Eden Starling, a glamourous singing diva in the Victorian England and the owner of a theatre house. However, Eden is self-centred and loves only herself. She is frequently accompanied by her snooty cat, Chuzzlewit. She does not believe in Christmas and orders all her employees to work on Christmas.",0,4496912,Barbie in 'A Christmas Carol',en +16019,Lost Islands,2008-07-03,101.0,,,tt1210351,,A family with five kids in the 80s get into a crisis when twin brothers fall in love with the same girl.,0,0,איים אבודים,he +72663,Nirvana,2008-07-03,93.0,,,tt1227165,,"Young Alisa is fed up with her life in Moscow, and moves to St. Petersburg. Her roommates in the collective flat are two junkies, Vel and her boyfriend Valera the Dead Man. First they fight, but soon the two women form a friendship. Together they even go after the Petersburg underworld when Dead Man is abducted because he can't pay his debts.",2000000,273137,Нирвана,ru +14467,Jaane Tu... Ya Jaane Na,2008-07-04,155.0,http://www.jaanetu.com/,,tt0473367,So when do you know it's love?,"Jaane Tu... Ya Jaane Na (translation: Whether you know... or not) is a 2008 Indian romantic comedy film, written and directed by Abbas Tyrewala. The film stars Imran Khan and Genelia D'Souza in pivotal roles. Produced by Mansoor Khan, Aamir Khan, it marks the directional debut of Abbas Tyrewala, the debut of Imran Khan (Aamir Khan's nephew) and Prateik Babbar as actors, and the re-appearance of D'Souza in Hindi cinema. Released on 4 July 2008, the film received positive reviews, and went on to become a Super Hit at the box office. The music is by A. R. Rahman.",2300000,11100000,Jaane Tu... Ya Jaane Na,en +28704,Diminished Capacity,2008-07-04,92.0,,,tt1007950,,"A Chicago journalist suffering from memory loss takes leaves from his job and returns to his rural hometown, where he bonds with his Alzheimer's impaired uncle Rollie and his old flame.",0,0,Diminished Capacity,en +20493,Love Story 2050,2008-07-04,171.0,http://www.lovestory2050.com/,,tt0490170,,No overview found.,20000000,5000000,Love Story 2050,hi +14639,The Order of Myths,2008-07-05,97.0,http://www.theorderofmyths.com,,tt1157694,,"In 2007 Mobile, Alabama, Mardi Gras is celebrated... and complicated. Following a cast of characters, parades, and parties across an enduring color line, we see that beneath the surface of pageantry lies something else altogether.",0,0,The Order of Myths,en +79329,Treevenge,2008-07-07,16.0,http://www.treevenge.com/,,tt1343750,,"Treevenge details the experiences and horrifying reality of the lives of Christmas trees. Clearly, for trees, Christmas isn’t the exciting “peace on earth” that is experienced by most. After being hacked down, and shipped away from their homes, they quickly become strung up, screwed into an upright position for all to see, exposed in a humiliation of garish decorations. But this Christmas will be different, this Christmas the trees have had enough, this Christmas the trees will fight back. Treevenge could be a short film about the end of days for Christmas trees, or perhaps, the end of humanity?",0,0,Treevenge,en +24149,305,2008-07-08,84.0,,,tt1212399,,"'305' is a mockumentary detailing the misadventures of five not-so-brave members of the Spartan army charged with guarding a seemingly ordinary goat path. But when their actions lead to the death of King Leonidas and his army of 300 men, the five must find a way to redeem themselves and save Sparta from invasion.",0,0,305,en +12289,Red Cliff,2008-07-10,150.0,http://www.redclifffilm.com,96677,tt0425637,The future will be decided.,"In the early third century, the land of Wu is invaded by the warlord Cao Cao and his million soldiers. The ruler of Wu, Sun Quan, calls on the rival warlord Liu Bei for help, but their two armies are still badly outnumbered. However, the Wu strategist Zhou Yu sees that Cao Cao's army is unused to battling on the sea, which may just give them a chance if they can exploit this weakness properly.",80341000,127814609,Chi bi,zh +29382,Under Our Skin,2008-07-12,104.0,http://www.underourskin.com/,,tt1202579,,Exposes the hidden epidemic of Lyme disease and reveals how our corrupt health care system is failing to address one of the most serious illnesses of our time.,0,0,Under Our Skin,en +150056,Jesus liebt mich,2012-12-20,0.0,,,tt1920976,,A girl who always tends to fall in love with the wrong guy meets one who believes the world is coming to an end next Tuesday.,0,0,Jesus liebt mich,de +14301,Dr. Horrible's Sing-Along Blog,2008-07-15,42.0,http://www.drhorrible.com,,tt1227926,He has a Ph.D. in horribleness!,"Dr. Horrible, an aspiring supervillain with his own video blog, is attempting to join the prestigious Evil League of Evil (led by the legendary ""thoroughbred of sin"", Bad Horse), but his plans are usually foiled by the egotistical superhero Captain Hammer. Dr. Horrible's life is thrown for a loop when he falls in love with Penny, a beautiful and optimistic advocate for the homeless he meets at the laundromat.",200000,3,Dr. Horrible's Sing-Along Blog,en +15067,"The Good, The Bad, The Weird",2008-07-16,130.0,,,tt0901487,A Fistful of Fun!,"The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a Bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.",10000000,0,"좋은 놈, 나쁜 놈, 이상한 놈",ko +44442,Four Nights with Anna,2008-07-17,87.0,,,tt1225290,,A crematorium worker repeatedly breaks into a woman's house at night to help with housework.,0,0,Cztery noce z Anną,pl +14353,Repo! The Genetic Opera,2008-07-18,98.0,,,tt0963194,Not Your Parent's Opera,"A worldwide epidemic encourages a bio-tech company to launch an organ-financing program similar in nature to a standard car loan. The repossession clause is a killer, however.",0,188126,Repo! The Genetic Opera,en +13486,The Scorpion King: Rise of a Warrior,2008-07-19,109.0,http://www.ign.com/scorpionking/,116669,tt1104123,See how the legend of The Scorpion King began!,"The heroic tale of young Mathayus and his relentless quest for justice against an evil and powerful villain, King Sargon. Mathayus faces heart-stopping tribulations during his adventurous, odds-defying trajectory toward his ultimate destiny: becoming the formidable warrior king of an ancient desert empire.",0,0,The Scorpion King: Rise of a Warrior,en +259690,The Lika Cinema,2008-07-20,120.0,,,tt1185253,Guilt. Desire. Thirst.,"A godforsaken mountain village is the only home that a young football player, a miser peasant and a fat girl have. This isolated part of the country finds itself in the middle of the referendum for or against the EU. Our characters couldn't care less - they are absorbed in their problems. The young football player who accidentally killed his mother doesn't want to join a rich foreign football team and is willing to risk his father's love because of it. The lonely fat girl is so desperate for a friend and for a lover that she will end up seeking both in the pig-sty. The miser peasant will find out that the real misery is in loneliness.",0,0,Kino Lika,hr +42944,Say Goodnight,2008-07-22,0.0,,,tt0834899,,"Three guys tell a friend the stories of how they met the loves of their lives, and how they managed to completely screw up the relationships.",0,0,Say Goodnight,en +12169,The First Day of the Rest of Your Life,2008-07-23,114.0,,,tt0926759,,A sprawling drama centered on five key days in a family's life.,0,0,Le Premier Jour du reste de ta vie,fr +44038,Lovecraft: Fear of the Unknown,2008-07-24,90.0,http://wyrdstuff.com/lovecraft/index.html,,tt1261900,,"A chronicle of the life, work and mind that created the Cthulhu mythos.",0,0,Lovecraft: Fear of the Unknown,en +83059,Disfigured,2008-07-29,96.0,,,tt0830535,Ever feel like you just don't fit in ?,"Lydia is an overweight sales clerk in a trendy home furnishings store, nearing 30. Though she is a member of a Fat Acceptance Group (a movement dedicated to fighting prejudice against overweight people), she is still struggling with complex feelings about her body and its place in the world. Darcy, a recovering-anorexic real estate agent in her mid-20s, is struggling with the same issues from a very different perspective.",0,0,Disfigured,en +33134,The Horseman,2008-08-03,96.0,,,tt1060255,He has some questions.,"A tender drama unfolds between a grieving father and a troubled teenage girl as they drive northbound along the quiet outback roads of Australia. What she doesn't know is that between stops, he is leaving behind a bloody trail of bodies in a revenge motivated killing spree.",0,0,The Horseman,en +13996,Bottle Shock,2008-08-06,110.0,http://www.bottleshockthemovie.com/,,tt0914797,"Based on a true story of love, victory, and fermentation","Paris-based wine expert Steven Spurrier heads to California in search of cheap wine that he can use for a blind taste test in the French capital. Stumbling upon the Napa Valley, the stuck-up Englishman is shocked to discover a winery turning out top-notch chardonnay. Determined to make a name for himself, he sets about getting the booze back to Paris.",5000000,4040588,Bottle Shock,en +17137,What We Do Is Secret,2008-08-08,92.0,http://www.whatwedoissecretthemovie.com/,,tt0384683,,"A biopic of punk legend Darby Crash and his band, the Germs.",0,0,What We Do Is Secret,en +51836,Snow 2: Brain Freeze,2008-08-08,86.0,,134633,tt1334278,,"It's three days before Christmas, and Nick Snowden forgets about spending early Christmas with his wife, Sandy due to pressure at work. After a fight, Nick walks through a magical mirror and ends up with amnesia. Now it's up to Sandy to recharge his memory and save Christmas once and for all, but Nick's old nemesis Buck Seger returns and uses Santa's amnesia to his advantage.",0,0,Snow 2: Brain Freeze,en +112722,Louis Theroux: Behind Bars,2008-08-08,60.0,,,tt1235534,,"For two weeks, Theroux visits the San Quentin State Prison.",0,0,Louis Theroux: Behind Bars,en +21371,Goodbye Solo,2008-08-09,91.0,http://www.goodbyesolomovie.com/,,tt1095442,,A man planning to commit suicide hires a taxi driver to take him to his jumping-off point.,0,0,Goodbye Solo,en +29695,iMurders,2008-08-09,98.0,,,tt1007032,,"A mysterious love triangle leads to a tragic shooting. Months later, eight members of a MySpace-esque chat room are being gruesomely murdered in the privacy of their own homes.",0,0,iMurders,en +174611,Bedfellows,2008-08-11,2.0,,,tt1354678,"Sometimes at night the person you are laying next to, isn't the same person you went to bed with!","When a woman is being called in the middle of the night, she finds out that it's not her husband laying next to her.",0,0,Bedfellows,en +38326,Yuri's Day,2008-08-12,137.0,,,tt1227796,,A mother loses her son during a winter visit to a remote town.,0,0,Юрьев День,ru +343693,Aladin,2008-08-12,0.0,,,tt0827990,,,0,0,Aladin,de +20034,Hush,2008-08-13,91.0,http://www.hushmovie.co.uk/,,tt1093369,,A young couple on a motorway journey are drawn into a game of cat and mouse with a truck driver when they see something disturbing in the back of his vehicle.,0,0,Hush,en +58197,A Beautiful Life,2008-08-14,81.0,,,tt1043787,,"A love story about the encounter of two drifting souls. Escaping her abusive past, a woman stays the night with an illegal immigrant friend of a friend. The two get closer and fall in love, but face turmoil.",0,0,A Beautiful Life,en +14613,Next Avengers: Heroes of Tomorrow,2008-09-02,78.0,,,tt1259998,The children of heroes past are our only hope for the future!,The children of the Avengers hone their powers and go head to head with the very enemy responsible for their parents' demise.,0,3800000,Next Avengers: Heroes of Tomorrow,en +26153,God Tussi Great Ho,2008-08-15,152.0,,,tt0476550,,"At the end of the worst day in his life, Arun Prajapati (Salman Khan) angrily rages against God for making his life miserable. To his astonishment, God (Amitabh Bachchan) appears before him in human form and endowing Arun with all of his divine powers, challenges Arun to take on the big job and see if he can do it any better.",0,0,God Tussi Great Ho,en +13956,Fly Me to the Moon,2008-08-15,84.0,,,tt0486321,First ever animated movie created for 3D,Three young houseflies stow away aboard the Apollo 11 flight to the moon.,25000000,0,Fly Me to the Moon,en +23155,The Garden of Sinners - Chapter 5: Paradox Spiral,2008-08-16,114.0,,23240,tt1278060,,"In the middle of October 1998, Enjou Tomoe is attacked by bullies from his old school and saved by Ryougi Shiki. He asks her to hide him at her place and admits that he killed someone. Several days after the incident there are still no broadcasts about the murder as if it didn't happen.",0,0,劇場版「空の境界」第五章 矛盾螺旋,ja +324173,Comedy Central Roast of Bob Saget,2008-08-17,90.0,,,tt1276947,,"The aggravatingly amiable star of ""Full House,"" ""America's Funniest Home Videos""",0,0,Comedy Central Roast of Bob Saget,en +41331,The Garden,2008-08-17,80.0,http://www.thegardenmovie.com,,tt1252486,,"From the ashes of the L.A. riots arose a lush, 14-acre community garden, the largest of its kind in the United States. Now bulldozers threaten its future.",0,0,The Garden,en +14215,Restraint,2008-08-19,94.0,,,tt0441782,Seclusion. Seduction. Survival.,Two fugitives land in hot water when they take a hostage who poses a threat to their well-being.,0,0,Restraint,en +54384,Our Beloved Month of August,2008-08-21,147.0,,,tt1081929,,"In the heart of Portugal, amid the mountains, the month of August is abuzz with people and activity...",0,0,Aquele Querido Mês de Agosto,pt +12523,Räuber Kneißl,2008-08-21,0.0,,,tt1151827,,No overview found.,0,0,Räuber Kneißl,de +41703,Plus one,2008-08-21,0.0,,,tt1224449,,,336029,927277,Плюс один,ru +15979,Phoonk,2008-08-22,179.0,,,tt1267500,,No overview found.,750000,2760000,Phoonk,en +14076,Shoot on Sight,2008-08-22,112.0,,,tt1038915,,"Tariq Ali, a Muslim police officer of Scotland Yard, is asked to hunt-down suspected suicide-bombers against the backdrop of July 7 bombings in London. Tariq's task gets complicated as an innocent Muslim is killed by the commando shooters of Scotland Yard. On the other hand, Tariq - a British citizen is himself a suspect in the eyes of his boss, despite his long service in the Scotland Yard",0,0,Shoot on Sight,en +27621,The Cheetah Girls: One World,2008-08-22,90.0,,425880,tt1013542,What if only one star can shine?,"Chanel, Dorinda, and Aqua, are off to India to star in a Bollywood movie. But when there they discover that they will have to compete against each other to get the role in the movie. Will the Cheetah's break up again?",0,0,The Cheetah Girls: One World,en +22025,Detroit Metal City,2008-08-22,104.0,,,tt1142972,,"Soichi Negishi moved to Tokyo to chase his dream of becoming a musician playing stylish, Swedish-style pop. Instead, he finds himself leading the death metal band Detroit Metal City, or DMC, as the costumed and grotesquely made-up ""demon emperor"" Johannes Krauser II. Although he hates the role and the things he has to do as a member of the band, he has a definite talent for it.",0,0,Detroit Metal City,ja +16921,Autopsy,2008-08-24,84.0,,,tt0443435,,"Emily Johnson, her boyfriend Bobby and their friends Clare and Jude are recent college grads driving cross-country, taking a last vacation together before they face the ""real"" world. An accident leaves them hurt and stranded on a lonely Louisiana road. When the ambulance arrives, it whisks them to Mercy Hospital.",15000000,0,Autopsy,en +13676,The Little Mermaid: Ariel's Beginning,2008-08-26,77.0,,33085,tt0969647,"Every Tale Has A Beginning, But Only One Begins Under The Sea","Follow Ariel's adventures before she gave up her fins for true love. When Ariel wasn't singing with her sisters, she spent time with her mother, Queen Athena. Ariel is devastated when Athena is kidnapped by pirates, and after King Triton outlaws all singing. Along with pals Flounder and Sebastian, Ariel sets off in hopes of changing her father's decision to ban music from the kingdom.",0,0,The Little Mermaid: Ariel's Beginning,en +17144,Exit Speed,2008-08-26,91.0,,,tt1042497,,"On Christmas Eve, ten strangers board a bus traveling across Texas. Far out in the wilds they collide with a meth-addicted biker",0,0,Exit Speed,en +8899,Lorna's Silence,2008-08-27,105.0,,,tt1186369,,"In order to become the owner of a snack bar with her boyfriend, Lorna, a young Albanian woman living in Belgium, becomes an accomplice to a diabolical plan devised by mobster Fabio.",0,0,Le Silence de Lorna,fr +262975,The Necktie,2008-08-28,12.0,,,tt1285285,,"A solitary man works in a tall office building. The only moment in his drab life that's out of the ordinary each year seems to be opening the birthday card and gift from his mother. Usually it's a tie, but one year it's an accordion. It goes into the closet with his many ties. A year or two later, he discovers what happens to the papers he processes every day. His discovery sends him first to the building's top floor, then to his closet.",0,0,Le noeud cravate,fr +33774,Tony Manero,2008-08-28,97.0,,,tt1223975,,"A man is obsessed with John Travolta's disco dancing character from ""Saturday Night Fever"".",0,0,Tony Manero,es +13991,College,2008-08-28,94.0,http://college-themovie.com/,,tt0844671,,A wild weekend is in store for three high school seniors who visit a local college campus as prospective freshmen.,7000000,6230276,College,en +14142,Columbus Day,2008-08-29,90.0,,,tt1015976,,A thief tries to fix the damage done during the biggest heist of his career.,0,0,Columbus Day,en +13805,Disaster Movie,2008-08-29,87.0,http://www.disastermovie.net/,,tt1213644,Your favorite movies are going to be destroyed.,"In DISASTER MOVIE, the filmmaking team behind the hits ""Scary Movie,"" ""Date Movie,"" ""Epic Movie"" and ""Meet The Spartans"" this time puts its unique, inimitable stamp on one of the biggest and most bloated movie genres of all time -- the disaster film.",25000000,14109284,Disaster Movie,en +59935,"For a Moment, Freedom",2008-08-29,110.0,,,tt1296337,,Centers on a group of weary Middle Eastern refugees who have made their way to Turkey to apply for European visas.,0,0,Ein Augenblick Freiheit,de +12811,Birdwatchers,2008-08-31,104.0,,,tt1054674,,"Mato Grosso do Sul, Brazil, the present. When a young Guarani-Kaiowá woman commits suicide, Nádio leads his community to form a protest camp on the borders of a local farm that sits on their ancestral burial ground.",0,0,BirdWatchers - La terra degli uomini rossi,it +12683,Alone in the Dark 2,2008-09-01,88.0,,149704,tt0913951,Evil Returns,"When the night falls, and the creatures of the dark are crawling out of the shadows, there is only one man who stands between us and evil: Edward Carnby.",4600000,0,Alone in the Dark 2,en +36432,Art & Copy,2009-08-21,89.0,http://www.artandcopyfilm.com/,,tt1333631,,Art & Copy reveals the stories behind and the personal odysseys of some of the most influential advertising visionaries of our time and their campaigns.,0,0,Art & Copy,en +15068,80 Minutes,2008-09-02,92.0,,,tt1119178,,80 minutes to live or die. Alex got injected with a high tech poison by his creditor and put on a time clock to pay his debt back in 1 hour and 20 minutes. Will he make it or even further will he stay loyal to his friends and relatives under a pressure like running out of time?,0,0,80 Minutes,en +56948,Máncora,2008-09-02,100.0,,,tt1003023,,"Following the suicide of his father, haunted by inner demons and his hatred for the world, Santiago decides to escape from Lima and take refuge in Máncora, a beach to the north of Peru where it is always summer.",1800000,0,Máncora,it +9539,Martyrs,2008-09-03,99.0,,,tt1029234,They did not finish to be alive...,"A young woman's quest for revenge against the people who kidnapped and tormented her as a child leads her and a friend, who is also a victim of child abuse, on a terrifying journey into a living hell of depravity.",6500000,0,Martyrs,fr +31890,God on Trial,2008-09-03,86.0,,,tt1173494,,"In the Jewish tradition of arguing with God, Jewish prisoners in Auschwitz decide to put God on Trial.",0,0,God on Trial,en +39816,The Pool,2008-09-03,98.0,,,tt0911024,,"A boy in abject poverty works in a hotel and becomes obsessed with a swimming pool in the opulent hills of Panjim, Goa, India. His life gets turned upside-down when he attempts to meet the mysterious family who lives at the house.",0,0,The Pool,en +121688,Wild Field,2008-09-05,108.0,,,tt1252383,,"A young doctor relocates to a remote region of central Asia, thinking his fiancee soon will join him ...",0,0,Дикое поле,ru +12783,The Duchess,2008-09-05,110.0,http://www.theduchessmovie.com/,,tt0864761,Based on the incredible true story.,"A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.",0,0,The Duchess,en +13827,"Surfer, Dude",2008-09-05,85.0,http://www.surferdudethemovie.com/,,tt0976247,,A wave twisting tale of a soul searching surfer experiencing an existential crisis.,6000000,69497,"Surfer, Dude",en +23966,Deadgirl,2008-09-06,101.0,,,tt0896534,You'll never have anything better.,"When high school misfits Rickie and JT decide to ditch school and find themselves lost in the crumbling facility of a nearby abandoned hospital, they come face-to-face with a gruesome discovery: a body of a woman stripped naked, chained to a table and covered in plastic and soon realize she is anything but dead. Quickly the boys find themselves embarking on a twisted yet poignant journey testing the limits of their friendship, and forces both to decide just how far they're willing to stretch their understanding of right and wrong.",0,0,Deadgirl,en +75537,Son of Sam,2008-09-06,0.0,,,tt1235074,,,0,0,Son of Sam,it +19688,Middle of Nowhere,2008-09-06,95.0,,,tt1032817,Life Without a Road Map...,"The film follows Grace, a young woman whose irresponsible mother blows her college fund on her younger sister's beauty pageant campaign.",0,0,Middle of Nowhere,en +20986,Gurren Lagann The Movie: Childhood's End,2008-09-06,110.0,,23453,tt1288461,,"Simon and Kamina live in an underground city monitored by the village chief. When Simon stumbles upon an artifact and beastmen invade from the surface, Simon and Kamina rebel against them.",0,0,天元突破グレンラガン 紅蓮篇Gekijouban Tengen Toppa Gurren Lagann: Gurren-hen,ja +15838,Sunshine Barry & the Disco Worms,2008-09-07,79.0,,,tt1087841,Disco will never be the same again,"It's not easy to be Barry. An earthworm gets no respect. He lives at the bottom of the food chain. But one day, an old disco record turns his life upside down. Suddenly he sees before him his own destiny, the star of the world's greatest disco band: Sunshine Barry & The Disco Worms! Okay, he's got no arms, no rhythm and no band. But as Barry says: ""We'll do it anyway!""",0,0,Disco ormene,da +132227,La próxima estación,2008-09-08,0.0,,,tt1284509,,,0,0,La próxima estación,es +13390,Tortured,2008-09-10,107.0,,,tt1029167,Sometimes the only way to stop a criminal is to become one.,A mobster orders an undercover FBI agent to torture an accountant.,0,0,Tortured,en +17622,Fifty Dead Men Walking,2008-09-10,117.0,,,tt1097643,,"Based on Martin McGartland's real life story as a informant for the British Police to spy on the IRA. Taking place from 1987-1991, Martin (Jim Sturgess) works his way up the ranks of the IRA, while keeping his informant with the police Fergis (Ben Kingsley) at bay. In the process he saved numerous lives and is still in hiding from the IRA today.",0,0,Fifty Dead Men Walking,en +55608,Captive,2008-09-11,80.0,,,tt1252512,,The story of a young Chechen and his Russian captor during their civil war.,0,0,Пленный,en +145154,Ballou,2008-09-11,90.0,,,tt1238721,,,0,0,Ballou,en +16382,Tear This Heart Out,2008-09-12,107.0,http://www.arrancamelavida.com/,,tt1130981,,"A young girl recounts her girlhood and eventual marriage to a general of the Mexican revolution. by one of the most outstanding writers of the new feminist Mexican literature, it is at once a haunting novel of one woman's life and a powerful account of post-revolutionary Mexico from a female perspective.",0,0,Arráncame la vida,es +15179,"Patrik, Age 1.5",2008-09-12,103.0,http://www.patrikettkommafem.se/,,tt1067733,No family could be happier!,"Göran and Sven have been cleared for adoption and they have a possibility to adopt a swedish orphan, Patrik 1,5. But when Patrik arrives he turns out to be someone else, not the little boy they were expecting. A comma had been misplaced, and in comes a 15-year-old homophobic with a criminal past.",0,56299,"Patrik 1,5",sv +13017,Unstable Fables: Tortoise vs. Hare,2008-09-12,80.0,,114993,tt1086798,,The rematch of the century.,0,0,Unstable Fables: Tortoise vs. Hare,en +13972,The Women,2008-09-12,114.0,http://thewomen.warnerbros.com/index.html,,tt0430770,,"The story centers on a group of gossipy, high-society women who spend their days at the beauty salon and haunting fashion shows. The sweet, happily-wedded Mary Haines finds her marriage in trouble when shop girl Crystal Allen gets her hooks into Mary's man.",16000000,50007546,The Women,en +22554,The Subtenant,2008-09-12,104.0,,,tt1087458,,,1300000,0,Kummeli Alivuokralainen,fi +101915,Tess of the D'Urbervilles,2008-09-14,240.0,,,tt1186342,The story of a pure woman.,"Forced by poverty to seek support, the innocent Tess Durbeyfield seeks the help of the D'Urbervilles.",0,0,Tess of the D'Urbervilles,en +12412,Miracle at St. Anna,2008-09-15,160.0,,,tt1046997,,"Miracle at St. Anna chronicles the story of four American soldiers who are members of the all-black 92nd ""Buffalo Soldier"" Division stationed in Tuscany, Italy during World War II.",45000000,9323833,Miracle at St. Anna,en +78999,Virtual JFK: Vietnam If Kennedy Had Lived,2008-09-17,0.0,,,tt1205541,,,0,0,Virtual JFK: Vietnam If Kennedy Had Lived,fr +283424,The Eternity Man,2008-09-18,63.0,,,tt1190710,,An adaptation of the opera 'The Eternity Man',0,0,The Eternity Man,en +336484,Каменная башка,2008-09-18,,,,tt1322330,,,0,0,Каменная башка,ru +15810,The Tender Hook,2008-09-18,103.0,,,tt0452692,,"The story is about Iris' rise to the apex of a love/power triangle that includes her roguish English lover, McHeath and Art, an earnest young boxer. Within the flawed moral landscape, each character struggles to establish their sovereignty.",0,0,The Tender Hook,en +16999,Fire and Ice: The Dragon Chronicles,2008-09-18,84.0,http://www.fireandice.ro/,,tt1135493,"When danger strikes from above, either burns your soul or freeze you to death.",Princess Luisa and knight Gabriel must face a dragon to save their kingdom.,3000000,0,Fire and Ice: The Dragon Chronicles,en +13279,Lakeview Terrace,2008-09-19,110.0,,,tt0947802,What Could Be Safer Than Living Next to a Cop?,"A young interracial couple has just moved into their California dream home when they become the target of their next-door neighbor, who disapproves of their relationship. A tightly wound LAPD officer has appointed himself the watchdog of the neighborhood. His nightly foot patrols and overly watchful eyes bring comfort to some, but he becomes increasingly aggressive to the newlyweds. These persistent intrusions into their lives cause the couple to fight back.",20000000,27640028,Lakeview Terrace,en +112044,Atlantis,2008-09-19,90.0,,,tt1202515,,"Shy, thirteen year old Xenia doesn't feel comfortable in the overly-regulated society she lives in. In search of a place for herself she discovers an island on which time doesn't seem to exist. This is where she finds the key to her future.",0,0,Atlantis,en +13596,My Best Friend's Girl,2008-09-19,101.0,http://www.mybestfriendsgirlmovie.com,,tt1046163,It's funny what love can make you do...,"When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.",20000000,36620508,My Best Friend's Girl,en +18557,Acolytes,2008-09-20,91.0,,,tt0902952,Nothing stays buried forever.,Three teens blackmail a serial killer into helping them get rid of a violent bully.,0,0,Acolytes,en +13954,Alien Raiders,2008-09-21,85.0,,,tt0996979,,"It's the end of yet another night at Hastings Supermarket, a grocery store in Buck Lake, Arizona. But just before closing, a group of masked and armed to the teeth militants invades the store and take everyone hostage",0,0,Alien Raiders,en +21145,Louise-Michel,2008-09-23,94.0,,,tt1132594,,"In this radical and endearing black comedy, a group of retrenched female factory workers decide to pool their compensation money… and hire a hit man to liquidate their boss.",0,0,Louise-Michel,fr +32836,Bill Burr: Why Do I Do This?,2008-09-23,55.0,,,tt1254947,,"One of America's fastest-rising comedians, Bill Burr wields his razor-sharp wit with rare skill. In this brand-new stand-up performance, Bill takes aim at the stuff that drives us crazy, political correctness gone haywire, and girlfriends, or as he calls them: relentless psycho robots. A keenly observant social commentator, Bill Burr is also one of the funniest voices in comedy today.",0,0,Bill Burr: Why Do I Do This?,en +25038,2:22,2008-09-24,104.0,http://www.222themovie.com/cast2.htm,,tt1261041,The plan was simple... the job was not,"The plan was easy; the job was not. On a snowy night a tight crew of four criminals plan to pull off a routine heist. When things go horribly wrong, friendship, loyalty and trust are pushed to the limit.",0,0,2:22,en +19482,My Dear Enemy,2008-09-24,123.0,,,tt1330205,,"Jobless and single in her thirties, Hee-soo is miserable. On one fine day, she sets out to find Byoung-woon, her ex-boyfriend. It is not love that brings them together but $3,500 Hee-soo had lent to Byoung-woon a year ago. Byoung-woon is also penniless but surprisingly happy for he knows the girls who are willing to give him money. Afraid Byoung-woon may run off before clearing his debt, Hee-soo follows him as he visits many girls to borrow money, so the two ex-love birds set out on a one day journey to collect money, and memory.",0,0,멋진 하루,ko +15457,Paris 36,2008-09-24,120.0,,,tt0948535,,"A star is born in a time of both celebration and instability in this historical drama with music from director Christophe Barratier. In the spring of 1936, Paris is in a state of uncertainty; while the rise of the Third Reich in Germany worries many, a leftist union-oriented candidate, Léon Blum, has been voted into power, and organized labor is feeling its new power by standing up to management.",0,850575,Faubourg 36,en +15199,Rent: Filmed Live on Broadway,2008-09-24,165.0,,,tt1273675,,"Based on Puccini's opera La bohème, Rent tells the story of a group of impoverished young artists struggling to survive and create in New York City in the 1990s. This is a live recording of Rent's final performance after more than 12 years and 5000 shows.",0,0,Rent: Filmed Live on Broadway,en +16016,Journey to Saturn,2008-09-26,90.0,,,tt1095423,,"A Danish crew of misfits travel to Saturn in search for natural resources. However, the planet is colonized by a ruthless army of Aliens that turn their eye on Earth and invade Denmark. Thus, the crew change their mission to liberate Denmark.",0,0,Rejsen til Saturn,en +18381,"It's Not Me, I Swear!",2008-09-26,110.0,http://www.cestpasmoijelejure.com,,tt1163752,,"Léon is ten years old, has lots of problems and an overly fertile imagination. Of course, there is mom and dad who are always fighting, and those annoying neighbors who get to spend the summer at the beach. And then, there's Léa, the exasperating girl who's always right about everything. In the summer of '68, when mom decides to leave everything behind to start a new life in Greece, Léon is prepared to do anything to kill the pain. Destroy the neighbors' house, become a professional liar and even, why not, fall in love with Léa. Together, they will overcome the pain of growing up when you feel abandoned.",0,0,"C'est pas moi, je le jure!",fr +16005,The Lucky Ones,2008-09-26,113.0,http://www.theluckyonesmovie.com/,,tt0981072,,"The story revolves around three soldiers — Colee, T.K. and Cheaver — who return from the Iraq War after suffering injuries and learn that life has moved on without them. They end up on an unexpected road trip across the U.S.",0,0,The Lucky Ones,en +8652,Dream,2008-09-26,95.0,,,tt1165253,A dream is a dream is a dream.,"In the aftermath of a car crash, a man discovers his dreams are tied to a stranger's sleepwalking.",0,0,비몽,ko +32893,Broken Windows,2008-09-26,0.0,,,tt0976227,,"Four Women, Four Dreams, Four Realities",0,0,Broken Windows,en +20055,The Betrayed,2008-09-27,98.0,,,tt1074191,What she doesn't know could kill her.,Kidnappers force a young mother (Melissa George) to recover money stolen by her shady husband (Christian Campbell).,3500000,0,The Betrayed,en +109861,The Novelist,2008-09-27,0.0,,,tt1043532,,,1531604,0,Päätalo,fi +73160,Bellini e o Demônio,2008-09-30,120.0,,,tt1205903,,,0,0,Bellini e o Demônio,pt +15616,Private Valentine: Blonde & Dangerous,2008-11-07,98.0,,,tt1034320,The Army Will Never Be The Same,"When fluffy, bubble gum movie star Megan Valentine suddenly finds herself broke and humiliated in the public eye, she wanders from the wreckage of a car accident and witlessly enlists in the U.S. Army hoping in vain that it will change her life.",0,0,Major Movie Star,en +58664,Mostly Ghostly,2008-09-30,93.0,http://www.rlstinemostlyghostly.com/,326849,tt1052024,From the creator of Goosebumps!,"Based on the successful book series by R.L. Stine, this spooky tale finds 11-year-old Max making a deal with the ghosts who haunt his home. If Max helps them find what was responsible for their parents' disappearance, they'll help him transform from a social nobody to the most popular kid in school.",3600000,0,Mostly Ghostly,en +38594,Dragon Ball: Yo! Son Goku and Friends Return!!,2008-10-01,35.0,,425189,tt1317478,,"A 35-minute Dragon Ball animated short film that premiered at the Jump Super Anime Tour in September 2008. It is the first animated Dragon Ball feature in twelve years, following the tenth anniversary film The Path to Power.",0,0,DRAGONBALL オッス!帰ってきた孫悟空と仲間たち!,ja +30508,Berlin Calling,2008-10-01,105.0,http://www.berlin-calling.de/,,tt0211946,,A man tours clubs around the globe with his manager and girlfriend. On the eve of their largest album release he is admitted to a psychiatric clinic after overdosing at a gig.,0,0,Berlin Calling,de +13092,How to Lose Friends & Alienate People,2008-10-02,110.0,,,tt0455538,"He's across the pond, and out of his depth.","A British writer struggles to fit in at a high-profile magazine in New York. Based on Toby Young's memoir ""How to Lose Friends & Alienate People"".",27000000,17286299,How to Lose Friends & Alienate People,en +14476,Clubbed,2008-10-02,95.0,http://www.clubbedthemovie.com,,tt0856778,A journey through family and fear in the violent world of '80s clubland.,"An underworld drama set in the early 1980s, about a lonely factory worker whose life is transformed when he becomes a nightclub doorman.",0,0,Clubbed,en +19623,Drona,2008-10-02,150.0,http://drona.erosentertainment.com/,,tt1060249,,,15000000,3250000,Drona,hi +13180,Zeitgeist: Addendum,2008-10-02,123.0,http://www.zeitgeistmovie.com,96682,tt1332128,,"Zeitgeist: Addendum premiered at the 5th Annual Artivist Film Festival. Director Peter Joseph stated: ""The failure of our world to resolve the issues of war, poverty, and corruption, rests within a gross ignorance about what guides human behavior to begin with. It address the true source of the instability in our society, while offering the only fundamental, long-term solution.""",0,0,Zeitgeist: Addendum,en +14976,Rachel Getting Married,2008-10-03,113.0,,,tt1084950,,A young woman who has been in and out from rehab for the past 10 years returns home for the weekend for her sister's wedding.,0,0,Rachel Getting Married,en +14405,Beverly Hills Chihuahua,2008-10-03,91.0,,87256,tt1014775,50% Warrior. 50% Lover. 100% Chihuahua.,"A pampered Beverly Hills chihuahua named Chloe who, while on vacation in Mexico with her owner Viv's niece, Rachel, gets lost and must rely on her friends to help her get back home before she is caught by a dognapper who wants to ransom her.",20000000,149281606,Beverly Hills Chihuahua,en +12182,Nick and Norah's Infinite Playlist,2008-10-03,89.0,,,tt0981227,Every night has a soundtrack.,"Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris' friend Norah suddenly shows interest in him at a club. Thus beings an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah's drunken friend, Caroline, with help from Nick's band mates. As the night winds down, the two have to figure out what they want from each other.",9000000,32973937,Nick and Norah's Infinite Playlist,en +47748,Old Partner,2008-10-04,78.0,http://blog.naver.com/warnangsori/,,tt1334549,,An elderly farmer lives out his final days with his wife and a loyal ox in the Korean countryside.,0,0,워낭소리,ko +35652,That's It,2008-10-05,80.0,,,tt1424746,I love you. You love me. But...,"Girl is decided to leave her boyfriend and to runaway to an unknown place. Before she leaves, she decides to meet up with him, but they have only one hour to make a very funny balance of their lives.",4000,0,Apenas o Fim,pt +31299,Little Ashes,2008-10-06,112.0,,,tt1104083,"Two lovers risking it all. One story, untold until now.","About the young life and loves of artist Salvador Dalí, filmmaker Luis Buñuel and writer Federico García Lorca.",2500000,0,Little Ashes,en +14452,Kill Switch,2008-10-06,96.0,,,tt1107859,,A troubled detective travels to Memphis in order to track down a pair of serial killers.,10000000,0,Kill Switch,en +73198,Queen Sized,2008-10-06,87.0,,,tt1124215,,"An overweight girl, Maggie Baker, is elected Homecoming queen by the mean girls in the high school.",0,0,Queen Sized,en +13600,City of Ember,2008-10-07,90.0,http://www.cityofember.com/,,tt0970411,Escape is the only option,"For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.",55000000,17869048,City of Ember,en +17582,Khamsa,2008-10-08,110.0,,,tt1280566,,No overview found.,0,0,Khamsa,en +68360,Unspoken,2008-10-08,97.0,,,tt1194628,,,0,0,Unspoken,fr +31850,Breathless,2008-10-08,130.0,,,tt1373120,,"Sang-Hoon is a thirty something scamp collecting money from debtors for a loan shark. One day, he encounters Youn-Hee, a young hot-tempered high school student. Their strong wills causes the two strangers to clash at first, but an unique friendship then develops as they realize they have far more in common ...",0,0,똥파리,ko +29299,The Invincible,2008-10-08,114.0,,,tt1091989,,The intelligence officer Egor Kremnyov was blamed for a tragedy which happened to his squad. But soon he understands that troubles only begun...,0,0,Nepobedimyy,fr +14422,Birds of America,2008-10-09,85.0,,,tt1029134,,"A regular guy struggles with a repressive home and professional life, as well as making amends for the trouble his free-spirited brother and sister cause about town.",0,0,Birds of America,en +15440,Cold Prey II,2008-10-09,86.0,http://www.frittvilt2.com/,86553,tt1188990,,"Jannicke wakes up in the hospital. All of her friends are dead. As she walks through the dark corridors, she thinks she is left alone. But the nightmare isn't over yet.",0,0,Fritt vilt ll,no +58133,Possibility of an Island,2008-10-09,95.0,,,tt0926764,,"La Possibilité d'une île is a 2008 film directed by Michel Houellebecq, loosely based on his 2005 novel The Possibility of an Island.",0,0,La Possibilité d'une île,fr +12113,Body of Lies,2008-10-10,128.0,http://wwws.warnerbros.co.uk/bodyoflies/,,tt0758774,Trust no one. Deceive everyone.,"The CIA’s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agency’s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky – a satellite link – watches Ferris. At the other end of that real-time link is the CIA’s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.",70000000,113280098,Body of Lies,en +105231,Fist of the North Star: The Legend of Kenshiro,2008-10-11,83.0,,114374,tt0456978,,"The film's story is a prequel to the Fist of the North Star depicting the one year interval between Kenshiro's defeat at the hands of Shin and their later battle. Unlike the others in the series this film has a completely original storyline in which Kenshiro, near death after his battle with Shin and having used his remaining energy to kill a pack of wolves, was captured by slavers. Due to his strength, Kenshiro could escape whenever he wanted, but chose to stay and protect the other slaves.",0,0,真救世主伝説 北斗の拳 ケンシロウ伝,ja +14419,"Coluche, l'histoire d'un mec",2008-10-15,103.0,,,tt1174034,,No overview found.,0,0,"Coluche, l'histoire d'un mec",fr +17347,Bride Flight,2008-10-15,130.0,http://www.brideflightmovie.com/,,tt1094241,A forbidden love. An impossible choice. A secret past.,"The story of the women on the KLM flight that won the 1953 Air Race from London to Christchurch, New Zealand.",6400000,2556911,Bride Flight,en +17008,Die Geschichte vom Brandner Kaspar,2008-10-16,105.0,http://www.brandnerkaspar-derfilm.de/,,tt1148770,,No overview found.,0,0,Die Geschichte vom Brandner Kaspar,de +23683,The Poker Club,2008-10-16,82.0,,,tt0488612,The hand you're dealt could be murder.,Four friends discover and accidentally kill a burglar -- who may not be alone -- in the kitchen during their weekly poker night.,0,0,The Poker Club,en +22007,Train,2008-10-16,94.0,,,tt1015474,You're in for a hell of a ride.,This new Train tells the tale of an American wrestling team who board a train that just so happens to be used as a supermarket for organ harvesters.,0,0,Train,en +17893,Camino,2008-10-16,143.0,,,tt1206285,,A religious organization interferes with the life of a terminally ill girl.,0,0,Camino,es +38875,Senność,2008-10-17,0.0,,,tt1269706,,,0,0,Senność,en +41886,Not Your Typical Bigfoot Movie,2008-10-17,63.0,,,tt1185384,Do you believe in the American Dream?,"Through the experiences of two amateur Bigfoot researchers in Appalachian Ohio, we see how the power of a dream can bring two men together and provide a source of hope and meaning that transcend the harsh realities of life in a dying steel town.",0,0,Not Your Typical Bigfoot Movie,en +55376,Karzzzz,2008-10-17,142.0,,,tt1156148,Vengence is Back,"Singer/Dancer Monty Oberoi meets and falls in love with Tina. He then starts hallucinating and having visions of an unknown place. His doctors advise him to take a break and he decides to travel to Kenya, where Tina resides with her uncle, Kabira, and guardian, Kamini. Monty experiences more incidents and feels as if he has been here before, while Tina notices that he appears to be more attracted to Kamini than herself. Neither are aware that Monty will soon be entrapped in a plot that will result in his sudden death.",0,0,Karzzzz,en +126016,Johnny Cash at Folsom Prison,2008-10-18,60.0,,,tt1334247,"Out of Darkness, Comes Light","Out of Darkness, Comes Light",717000,0,Johnny Cash at Folsom Prison,en +44682,Resurrection County,2008-10-19,95.0,,,tt1297943,,"When travelling through Resurrection County, mind the signs, one false move out there could be your last. When four suburbanite campers roll into the remote town of Enoch, they find that southern hospitality still exists. But things are not what they appear to be, as a weekend camping trip turns deadly, and the locals are all too happy to serve up their own brand of an eye for an eye justice. The laws that you so willingly follow are not always right.",0,0,Resurrection County,fr +21044,Surviving Sid,2008-10-20,7.0,,,tt1338677,,"Sid, the sloth, takes a school of children out on a camping trip from home, only to find that in typical Sid style, he is not a very good guide and the children he takes with him don't have a very good time.",0,0,Surviving Sid,en +17845,Loft,2008-10-21,118.0,http://www.loftdefilm.be/,,tt0926762,"Five friends, one loft, one dead body","Five close friends, all of them married, share a loft to meet their mistresses. One day they find the body of a young woman in the loft. Since there are only five keys to the loft, the five men begin to suspect each other of murder.",4185000,0,Loft,nl +11887,High School Musical 3: Senior Year,2008-10-22,116.0,http://disney.go.com/disneypictures/highschoolmusical3,87253,tt0962726,,"It's almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor ― and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they'll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. But with graduation approaching and college plans in question, what will become of the dreams, romances, and friendships of East High's senior Wildcats?",0,0,High School Musical 3: Senior Year,en +11917,Saw V,2008-10-23,92.0,,656,tt1132626,You Won't Believe How It Ends,"Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.",10800000,113857533,Saw V,en +47110,Afstiros katallilo,2008-10-23,102.0,,,tt1309409,, ,0,0,Αυστηρώς Κατάλληλο,en +45514,8,2008-10-23,100.0,,,,,"8 shorts centered around 8 themes directed by 8 famous film directors involved and sharing their opinion on progress, on the set-backs and the challenges our planet faces today.",0,0,8,en +16436,North Face,2008-10-23,126.0,http://www.nordwand-film.de/,,tt0844457,,North Face tells the story of two German climbers Toni Kurz and Andreas Hinterstoisser and their attempt to scale the deadly North Face of the Eiger.,0,927704,Nordwand,de +16687,Wushu,2008-10-23,104.0,http://ent.sina.com.cn/f/m/wushu/index.shtml,,tt0790786,,"Ten years ago, five students joined a martial arts school and learned the disciplines of Wushu and the bonds of friendship. Today, both will be put to the test after they and a former student stumble into a child kidnapping ring",4000000,0,Wushu,en +4960,"Synecdoche, New York",2008-10-24,124.0,http://www.sonyclassics.com/synecdocheny,,tt0383028,,"A theater director struggles with his work, and the women in his life, as he attempts to create a life-size replica of New York inside a warehouse as part of his new play.",21000000,0,"Synecdoche, New York",en +70554,Adopt a Sailor,2008-10-24,85.0,,,tt1015456,He fell out of a plane and into their lives.,"Adopt A Sailor is about Patricia and Richard, a successful and hip couple from New York City who inadvertently ""adopt a sailor"" during Fleet Week in New York City and the young man form Turkey Scratch, Arkansas who changes their lives forever.",300000,0,Adopt a Sailor,en +40925,Dream Boy,2008-10-24,88.0,http://dreamboy-themovie.com/,,tt0889595,,"The story of Nathan, a young teenager who tries to flourish in a romantic relationship with neighbour Roy. The two young men will have to face the brutal reality of the rural south of the United States in the late 1970s.",0,0,Dream Boy,en +71700,Repeaters,2010-01-01,89.0,,,tt1580426,,"A gritty mind-bending thriller about three twenty-somethings who find themselves in an impossible time labyrinth, where each day they awaken to the same terrifying day as the preceding one.",0,0,Repeaters,en +19506,ICHI,2008-10-25,120.0,http://wwws.warnerbros.co.jp/ichi/,,tt1060256,Justice is blind,"Ichi is a blind entertainer that travels the countryside with her traditional Japanese guitar and walking stick. She’s in search for the kind man that brought her up as a child, but because of her beauty she encounters problems every step of the way. Fortunately for Ichi, she is also a gifted swordswoman and carries a lethal blade within her walking stick.",0,0,市,ja +47084,Little Dorrit,2008-10-26,452.0,,,tt1178522,,"The series tells the story of Amy Dorrit, who spends her days earning money for the family and looking after her proud father, who is a long term inmate of Marshalsea debtors' prison in London. Amy and her family's world is transformed when her boss's son, Arthur Clennam, returns from overseas to solve his family's mysterious legacy and discovers that their lives are interlinked.",0,0,Little Dorrit,en +289010,Die Frau des Frisörs,2008-10-27,0.0,,,tt1105294,,,0,0,Die Frau des Frisörs,de +15749,While She Was Out,2008-10-27,108.0,,,tt0887971,They Messed With the Wrong Woman on the Wrong Night,A suburban housewife is forced to fend for herself when she becomes stranded in a desolate forest with four murderous thugs.,6000000,391410,While She Was Out,en +8930,Modern Life,2008-10-27,88.0,,,tt0881310,,,88,0,La vie moderne,fr +16313,Coming Soon,2008-10-28,95.0,http://www.comingsoonmovie-th.com/,,tt1307057,,What kind of scenes in a horror film scares you the most? When a ghost appears totally unexpectedly? When the main character does not see the ghost sneaking up behind him? When at the very end you find out that the main character was actually a ghost all along? But none of this compares to the feeling of arriving home alone and suddenly being stuck by a feeling of deja-vu.,0,0,Coming Soon,th +278458,The Artist,2008-10-28,0.0,,,tt1248290,,A male nurse steals some of one of his patient's drawings and makes money with them.,0,0,El artista,es +15316,Good Time Max,2008-10-28,79.0,,,tt0469913,,Two genius brothers grow up and grow apart as one becomes a successful surgeon and the other pursues a drug-fueled high life.,0,0,Good Time Max,en +23385,New Town Killers,2008-10-28,97.0,,,tt1183908,,"Two private bankers, Alistair and Jamie, who have the world at their feet get their kicks from playing a 12 hour game of hunt, hide and seek with people from the margins of society. Their next target is Sean Macdonald a parentless teenager who lives with his sister on a housing estate on the outskirts of Edinburgh. She's in debt, he's going nowhere fast. Sean agrees to play for cash.",0,0,New Town Killers,en +20715,Immigrants (L.A. Dolce Vita),2008-10-30,78.0,,,tt1193627,,No overview found.,0,0,Immigrants (L.A. Dolce Vita),en +101006,Liverpool,2008-10-30,84.0,,,tt1002539,,A sailor takes a short leave to visit his hometown and see if his mother is still alive.,0,0,Liverpool,es +10527,Madagascar: Escape 2 Africa,2008-10-30,89.0,http://www.madagascar-themovie.com,14740,tt0479952,Still together. Still lost!,"Alex, Marty, Melman, Gloria, King Julien, Maurice, the penguins and the chimps are back and still marooned on Madagascar. In the face of this obstacle, the New Yorkers have hatched a plan so crazy it just might work. With military precision, the penguins have repaired an old crashed plane... sort of.",150000000,603900354,Madagascar: Escape 2 Africa,en +74035,Ninjas vs. Zombies,2008-10-31,86.0,http://www.nvzmovie.com,160401,tt1290099,,"Seven friends, struggling with late 20s, early 30's life, find themselves in terrifying danger when a long-dead loved one is magically resurrected and starts devouring souls. To make matters worse, three of them have been granted the power of the Ninja, and now must lead the fight against a power they cannot hope to vanquish. If they fail, the un-dead will overrun their little town, and quite possibly the world.",0,0,Ninjas vs. Zombies,en +15584,Dear Zachary: A Letter to a Son About His Father,2008-10-31,95.0,,,tt1152758,,"In 2001, Andrew Bagby, a medical resident, is murdered not long after breaking up with his girlfriend. Soon after, when she announces she's pregnant, one of Andrew's many close friends, Kurt Kuenne, begins this film, a gift to the child.",0,0,Dear Zachary: A Letter to a Son About His Father,en +23619,We Can Do That,2008-10-31,111.0,,,tt1320297,,"The film follows Nello, the recently hired director of a newly developed work cooperative of former mental patients. After the closure of state psychiatric hospitals and asylums in Italy under the Basaglia Law many former patients were left with few resources and little hope of reintegrating into society. With the intention of actually improving the lives of his pupils, rather than just sedating them, Nello encourages them to expand their individual abilities and explore the wider world around them although, regardless of intention, there is sometimes a price to pushing boundaries too quickly.",0,0,Si può fare,en +20846,Dim Sum Funeral,2008-11-01,95.0,,,tt1216477,,"An Irish funeral has a wake. A Jewish funeral has sitting shiva. A traditional Chinese funeral is something else entirely. Thats what the estranged siblings of the Chinese-American Xiao family must undergo upon news of their mothers death. The one brother and three sisters dont get along, however they share one thing: hatred for their domineering and manipulative mother, the Dragon Lady.""",0,0,Dim Sum Funeral,en +255948,Nanayo,2008-11-01,90.0,,,tt1039790,,A young woman leaves her job and lover in Japan to start a new life in Thailand.,0,0,Nanayomachi,ja +35626,Return to Sleepaway Camp,2008-11-04,86.0,,47391,tt0382943,Kids can be so mean.,"It's summer camp as usual at Camp Manabe where the kids torment each other for fun while the underpaid camp staff provides as little supervision as possible. Greedy camp owner Frank and junior partner Ronnie do their best to keep everyone in line, but something sinister is about to put a slash in the roster. When campers and staff mysteriously begin disappearing and turning into gruesome corpses, paranoid Ronnie can't shake the memory of a series of grisly murders that took place at Camp Arawak. As the paranoia worsens, Ronnie's list of possible killers starts growing just like the body count. Only one thing is for certain, something is carving a bloody new trail at Sleepaway Camp where kids can be so mean and surviving this summer is gonna be a real killer!",4000000,0,Return to Sleepaway Camp,en +16900,Truth In 24,2008-11-06,95.0,http://www.truthin24.com/,118474,tt1320302,,"It's 24 hours of pure exhilaration, complete exhaustion, and it's not for the faint of heart or the ill-prepared. It is the legendary 24 Hours of Le Mans. But before you win it, you have to master finishing it. This film chronicles the dedication, the determination and the spirit required to not just survive 3,000 grueling miles, but to be in a position to win one of the greatest races in history.",0,0,Truth In 24,en +14833,House,2008-11-06,101.0,http://housethemovie.net/,,tt0837796,,"Trying to recover from the nearly marriage-breaking stress following the death of their child, Jack (Reynaldo Rosales) and Stephanie (Heidi Dippold) spontaneously take off on a road trip. But when their car breaks down in a remote area, they find themselves in a horrific nightmare. Seeking shelter in a house, they soon realize that more danger lurks inside than outside in this spine-chiller based on Ted Dekker and Frank Peretti's best-seller.",0,0,House,en +16890,The Guitar,2008-11-07,95.0,http://www.theguitarthemovie.com/,,tt0942891,,"The life of a woman is transformed after she is diagnosed with a terminal disease, fired from her job and abandoned by her boyfriend. Given two months to live, she throws caution to the wind to pursue her dreams.",0,0,The Guitar,en +14751,Dasvidaniya,2008-11-07,117.0,http://www.dasvidaniya.in/,,tt1288638,The Best Goodbye Ever,"A man who loves to make ""to-do lists"" makes one last bucket list when he realizes he is about to die.",0,0,Dasvidaniya,hi +37514,Pray the Devil Back to Hell,2008-11-07,72.0,http://www.praythedevilbacktohell.com,,tt1202203,,Pray the Devil Back to Hell chronicles the remarkable story of the Liberian women who came together to end a bloody civil war and bring peace to their shattered country.,0,0,Pray the Devil Back to Hell,en +13835,Real Time,2008-11-07,80.0,,,tt0983909,,Real Time is a comedic drama about a compulsive gambler given one hour to live by the man hired to kill him.,0,0,Real Time,en +15464,EMI: Liya Hai To Chukana Padega,2008-11-07,128.0,,,tt1221133,,"(Extension: Easy Monthly Installment - Liya Hai Toh Chukana Padega!) is a 2008 Bollywood social film directed by Saurabh Kabra and starring Malaika Arora, Sanjay Dutt, Urmila Matondkar and lots more. The film released on November 7, 2008.",0,0,EMI: Liya Hai To Chukana Padega,en +20432,The Forgotten Ones,2008-11-08,90.0,,,tt1308169,Fear has a new face.,"When a devastating boat crash shipwrecks a group of friends in the jungles of an uncharted island, they are savagely picked off one-by-one by a cannibalistic enemy that evolution forgot. A horrifying action-adventure in the vein of Predator and Lost.",0,0,The Forgotten Ones,en +334651,De feu et de glace,2008-11-08,,,,tt1272010,,,0,0,De feu et de glace,fr +13585,Bill Bailey: Tinselworm,2008-11-10,91.0,,,tt1351630,,"A visually stunning comedy and music extravaganza. Filmed at Wembley Arena at the end of a sell-out tour of the UK, it’s everything you expect from Bill, and more. Using huge screens, films and animation by award-winning film-maker Joe Magee, plus Bill’s trademark musical inventiveness and verbal brilliance, this is quite simply the most",0,0,Bill Bailey: Tinselworm,en +8888,A Year Ago in Winter,2008-11-10,129.0,,,tt0452580,,A renowned artist must uncover a young dancer's secrets in order to truly capture her likeness for a commissioned work.,0,0,Im Winter ein Jahr,de +34482,The Clique,2008-11-11,87.0,,,tt1059905,"The only thing harder than getting in, is staying in.",A young girl tries to fit in with a clique of popular middle school girls after moving into the guest house of one of their homes.,0,0,The Clique,en +17630,Ugly Melanie,2008-11-12,93.0,,,tt1132608,,They call her ugly. She's gonna act ugly.,0,0,Vilaine,fr +63775,Burn Paris Burn,2008-11-12,,,,tt1379057,,,0,0,Burn Paris Burn,fr +16164,Killshot,2008-11-13,95.0,,,tt0443559,He never met a target he couldn't take. Until today.,"Beautiful Carmen Colson and her ironworker husband Wayne are placed in the Federal Witness Protection program after witnessing an ""incident"". Thinking they are at last safe, they are targeted by an experienced hit man and a psychopathic young upstart killer.",0,2960993,Killshot,en +58391,Three Wise Men,2008-11-14,0.0,,,tt1270769,,"Three middle aged men, long time friends, get together in a normally closed Karaoke bar to drink their failed lives away. Secrets are revealed and sometimes discovered and they sing their miseries one by one during Karaoke sessions. The arrival of a lone woman to the bar will facilitate revealing of the final secret.",0,0,Kolme viisasta miestä,fi +25701,Ryan and Sean's Not So Excellent Adventure,2008-11-14,78.0,,,tt1270113,,"Ryan and Sean get discovered as Internet Celebrities, and are given the opportunity to be in a movie, but meet some wacky situations.",0,0,Ryan and Sean's Not So Excellent Adventure,en +153561,La buena nueva,2008-11-14,0.0,,,tt1060243,,,0,0,La buena nueva,es +13480,Ricky Gervais: Out of England - The Stand-Up Special,2008-11-15,72.0,,,tt1320293,,"Taped live before a sold-out audience at the WaMu Theater at New York Citys Madison Square Garden, Ricky Gervais: Out of England The Stand-Up Special is a high-spirited hour of offbeat observations and understated humor from the actor/comedian/writer/director.",0,0,Ricky Gervais: Out of England - The Stand-Up Special,en +78096,The Two Mr. Kissels,2008-11-15,142.0,,,tt1243939,If this story wasn't true you'd never believe it,"Drama based on a true story. Rich, high-flying brothers Robert and Andrew Kissel seemingly have everything: beautiful wives who love them, great jobs and huge houses. But beneath the surface lie resentments and secrets that will eventually be their horrible undoing",0,0,The Two Mr. Kissels,en +6972,Australia,2008-11-18,165.0,,,tt0455824,Welcome to Australia!,"Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin, Australia, by Japanese forces firsthand.",130000000,49554002,Australia,en +10362,Two Lovers,2008-11-19,110.0,,,tt1103275,,A depressed man moves back in with his parents following a recent heartbreak.,12000000,3148182,Two Lovers,en +143876,Very Russian Detective,2008-11-20,100.0,,,tt1334035,,A retired detective is trying to catch a serial killer who uses Russian letters to find his victims.,0,0,Очень русский детектив,ru +101376,The Queen and I,2008-11-20,90.0,,,tt1334556,,"Filmmaker and Iranian exile Nahid Persson talks with Queeen Farah, the widow of the late Shah of Iran, who also has been an Iranian exile since the Shah was overthrown in 1979. A meeting of two women who once belonged to opposite sides in Iran.",0,0,Drottningen och jag,en +8886,Palermo Shooting,2008-11-20,108.0,,,tt1008017,,"After the wild life-style of a famous young German photographer almost gets him killed, he goes to Palermo, Sicily to take a brake. Can the beautiful city and a beautiful local woman help him calm himself down?",0,0,Palermo Shooting,de +122348,Lunch Break,2008-11-21,83.0,,,tt1343394,,Lunch Break features 42 workers as they take their midday break in a corridor stretching nearly the entire shipyard.,0,0,Lunch Break,en +15285,Growing Op,2008-11-21,100.0,,,tt1105730,,"The story of a teenage boy coming of age in a suburban grow-operation, where every day is paradise or fresh hell. But it's always a trip. Sheltered all his life and home-schooled by loving parents who are also committed criminals, Quinn Dawson yearns to experience the normalcy of the suburban world which surrounds him.",0,0,Growing Op,en +14531,The Mark of Cain,2008-11-25,87.0,,,tt0837800,The scars of war run deep.,"After a bomb kills their company commander in Iraq, British soldiers Treacle and Shane are ordered to round up suspects and use torture on the detainees. Back home, the press gets the story and the pair achieves instant infamy.",0,0,The Mark of Cain,en +369366,Last Day of Freedom,2015-04-11,32.0,,,tt4172096,,When Bill Babbitt realizes his brother Manny has committed a crime he agonizes over his decision to call the police.,0,0,Last Day of Freedom,en +10139,Milk,2008-11-26,128.0,http://focusfeatures.com/film/milk/,,tt1013753,Never Blend In.,"The story of California's first openly gay elected official, Harvey Milk, who became an outspoken agent for change, seeking equal rights and opportunities for all. His great love for the city and its people brought him backing from young and old, straight and gay, alike – at a time when prejudice and violence against gays was openly accepted as the norm.",20000000,54586584,Milk,en +51284,Morphine,2008-11-27,110.0,http://www.morfiyfilm.ru/,,tt1186366,,"The year is 1917. We are in the Russian countryside. It is the middle of freezing winter. A pale young, newly educated doctor arrives. Having to deal with one medical challenge after another he soon becomes the center of everyone's attention. To soothe the impressions of human suffering he turns to morphine.",3600000,766075,Морфий,ru +71322,Platon,2008-11-28,0.0,,,tt1202532,,No movie overview available.,2500000,0,Платон,ru +33338,The Underdog Knight,2008-11-28,95.0,,385719,tt1087906,,"Lao San is a young veteran high in Kungfu power but low in intelligence. After landing on a job as a body guard for a wealthy antique collector, Lao San finds out his boss's plot to rob the National Art Museum.",0,0,硬汉,zh +25667,Little Moscow,2008-11-28,114.0,,,tt1291064,,"During the Cold War, a young Soviet officer and a local Polish woman are drawn together by music.",0,0,Mała Moskwa,pl +15044,Einstein and Eddington,2008-11-29,90.0,,,tt0995036,,"A look at the evolution of Albert Einstein's theory of relativity, and Einstein's relationship with British scientist Sir Arthur Eddington, the first physicist to understand his ideas.",0,0,Einstein and Eddington,en +31221,Dragon Hunter,2008-12-01,90.0,,,tt1290472,,"Orphaned as a baby when his parents were killed in a vicious orc attack, Kendrick of Elwood was raised by his elder brother, Darius. Now, after years of absence, a new danger emerges, more lethal than the threat of orcs or men. Reports of dragon attacks spread like wildfire through the panicked land.",0,0,Dragon Hunter,en +24426,A.R.O.G.,2008-12-03,127.0,http://www.arogfilm.com,,tt1286126,,Commander Logar fools Arif and sends him 1.000.000 years back in the time. He must civilize people from past to reach today.,0,0,A.R.O.G.,tr +82313,Shoot First And Pray You Live,2008-12-04,110.0,http://shootfirstandpray.com/,,tt0818226,I Am Goin To Kill You Dead,Tale of vengeance -- outlaw style -- as Red Pierre hunts down legendary gunman Bob McGurk to avenge the murder of his Mother and Father,0,0,Shoot First and Pray You Live (Because Luck Has Nothing to Do with It),en +13056,Punisher: War Zone,2008-12-05,102.0,http://punisherwarzonemovie.com,,tt0450314,Vengeance has a name,"Waging his one-man war on the world of organized crime, ruthless vigilante-hero Frank Castle sets his sights on overeager mob boss Billy Russoti. After Russoti is left horribly disfigured by Castle, he sets out for vengeance under his new alias: Jigsaw. With the ""Punisher Task Force"" hot on his trail and the FBI unable to take Jigsaw in, Frank must stand up to the formidable army that Jigsaw has recruited before more of his evil deeds go unpunished.",20500000,10089373,Punisher: War Zone,en +16342,The Children,2008-12-05,84.0,http://www.thechildrenmovie.com/,,tt1172571,You brought them into this world. Now ... They will take you out.,A relaxing Christmas vacation turns into a terrifying fight for survival as the children begin to turn on their parents,0,0,The Children,en +120922,Torno a vivere da solo,2008-12-05,0.0,,,tt1233578,,,0,0,Torno a vivere da solo,it +241620,Louis Theroux: Law and Disorder in Johannesburg,2008-12-07,60.0,,,tt2585192,,"Louis Theroux travels to Johannesburg, where the residents find themselves increasingly besieged by crime as he looks at the issue of law and disorder.",0,0,Louis Theroux: Law and Disorder in Johannesburg,en +56816,The Visitor,2008-12-08,105.0,,,tt0969307,,"A young boy lives with his mother on a farm surrounded by deep forest in the remote wilds of the Finnish countryside. From time to time, the boy visits his father - a man of great violence - in prison. Locked in the stable is an unruly horse, the boy´s only other companion. Their simple life is disrupted when a stranger appears, with a note from the father and a bullet in his side. Reluctantly, mother and son offer the stranger refuge.",0,0,Muukalainen,en +10201,Yes Man,2008-12-09,104.0,,,tt1068680,One Word Can Change Everything.,Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.,70000000,225990978,Yes Man,en +60965,The Legend of Bloody Mary,2008-12-09,93.0,,,tt1190074,Her vision... will be your last,"Ryan has been plagued with nightmares since the night his sister Amy went missing 8 years earlier after playing the game ""Bloody Mary."" Amy had stumbled onto a website on the Internet (www.marked4mary.com) about a witch called Bloody Mary and a game to summon her evil spirit. Now a senior in college, Ryan is reaching a mental breaking point from the years of stress and guilt from his sisters disappearance. His girlfriend Rachel frustrated herself at Ryan's emotional distance and self pity, calls for help to a former professor of Ryan's, Father O'Neal. Father O'Neal is both a priest and a archaeologist who decides to help Ryan end his tormenting grief by using his detective skills and wit to figure out what exactly happened to Ryan's sister, and uncover the truth to the Legend of Bloody Mary",1000000,0,The Legend of Bloody Mary,en +14072,Rab Ne Bana Di Jodi,2008-12-11,167.0,http://www.yashrajfilms.com/microsites/rnbdjmicro/rnbdj.html,,tt1182937,,"A lonely 40-ish man, likely to remain a bachelor, has a chance to find the love of his life when he falls for a vivacious young woman.",0,0,Rab Ne Bana Di Jodi,hi +2309,Inkheart,2008-12-11,106.0,http://www.inkheartmovie.com/,,tt0494238,Every story ever written is just waiting to become real.,"The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.",60000000,57490374,Inkheart,en +72419,In jeder Sekunde,2008-12-11,0.0,,,tt1315582,,,0,0,In jeder Sekunde,de +18117,Dean Spanley,2008-12-12,100.0,,,tt1135968,,"Set in Edwardian England where upper lips are always stiff and men from the Colonies are not entirely to be trusted, Fisk Senior has little time or affection for his son, but when the pair visit an eccentric Indian, they start a strange journey that eventually allows the old man to find his heart.",0,0,Dean Spanley,en +16092,The Appeared,2008-12-12,104.0,,,tt0836683,How Can You Save The Already Dead?,"One night Malena and Pablo, a sister and brother traveling together in Argentina, discover a diary that details crimes committed twenty years ago.",0,0,Aparecidos,es +16135,Mister Lonely,2008-12-17,112.0,,,tt0475984,,"In Paris, a young American who works as a Michael Jackson lookalike meets Marilyn Monroe, who invites him to her commune in Scotland, where she lives with Charlie Chaplin and her daughter, Shirley Temple.",0,0,Mister Lonely,en +14053,Slap Shot 3: The Junior League,2008-12-17,90.0,,261526,tt1245734,,Get ready for a rough-and-tumble comedy that knows how to kick some serious puck!,4500000,0,Slap Shot 3: The Junior League,en +14400,The Heir Apparent: Largo Winch,2008-12-17,108.0,,70764,tt0808339,,"After a powerful billionaire is murdered, his secret adoptive son must race to prove his legitimacy, find his father's killers and stop them from taking over his financial empire.",25412760,0,Largo Winch,fr +17780,A Kind of America 2,2008-12-18,110.0,http://www.valamiamerika.hu,147220,tt1235075,,"A lottónyereménynek hála, Tamás megcsinálhatta a filmjét, ami azonban a várakozásokkal ellentétben nagyot bukott. A három fiú egy képeslap révén Alex nyomára jut, aki most szabadult a dutyiból Amerikában és megint csak álnéven, egy színdarab jogait akarja megszerezni. A fiúk azt remélik, hogy megtalálják Alexet, megveszik előle a jogokat és végre visszaszerzik a hatvan milliójukat, amivel a férfi lelépett. Irány Amerika! Ám természetesen a dolgok megint nem az elképzelések szerint alakulnak. Végül Tamásra vár a feladat, hogy Budapesten rendezze meg a darabot.",1500000,0,Valami Amerika 2,hu +11321,Seven Pounds,2008-12-18,123.0,http://www.sonypictures.com/movies/sevenpounds/,,tt0814314,Seven names. Seven strangers. One secret.,An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.,55000000,168167691,Seven Pounds,en +12407,Stone of Destiny,2008-12-19,96.0,,,tt1037156,,"Tells of the daring heist of The Stone of Destiny in the 1950s by a charming group of idealistic Scottish undergraduates, whose action rekindled Scottish nationalistic pride.",0,0,Stone of Destiny,en +39493,Goth,2008-12-20,95.0,,,tt1092006,,"Adapted from the novel by Otsuichi, and following on from Kendi Oiwa's manga version, GOTH: LOVE OF DEATH is a mysterious horror film which boasts a neat twist in the serial-killer theme. Two high school students, Morino and Kamiyama, share a morbid fascination with death and cruelty. This mutual blood lust leads them to track a wanted serial killer, not to help catch them you understand... but for a few tips.",0,0,ゴス,ja +61532,Dustbin Baby,2008-12-21,88.0,http://www.bbc.co.uk/programmes/b00g8g80,,tt1325734,,"The film follows the story of young teen April whose troubled life began in a dustbin - a new born baby, abandoned and alone, not celebrated, not wanted but discarded and left like so much rubbish in an industrial bin behind a pizza parlour. On the morning of her fourteenth birthday April has a devastating row with her foster mother, Marion and leaves the house determined to find out where she really comes from, who she really is and maybe, just maybe, find her real mother. Telling no-one what she's up to or where she's going, April skips school and begins the search she's dreamed about all her life. It's a blur of social workers, children's homes and special schools as April revisits and recalls the key scenes of her fragmented past. It's a painful journey, sometimes frightening but there's also friendship and love and laughter. And now she's started, there's no going back - April must find her mother.",0,0,Dustbin Baby,en +62732,Lovey-Dovey 2,2008-12-23,100.0,,107478,tt1414840,,In this sequel of Lovey-Dovey Andrey and Marina are exchanging bodies again - but this time with their children.,3000000,17850711,Любовь-морковь 2,ru +29192,The Missing Lynx,2008-12-25,97.0,,,tt0951333,Exinction Is The Least of Their Problems,A group of animals look for a way off of an eccentric billionaire's own personal Noah's Ark 'n stuff,0,0,The Missing Lynx,en +17606,The Other Man,2008-12-25,90.0,,,tt0974613,What If everything you believed was a lie?,"The story of a husband who suspects his wife of adultery, and sets out to track down the other man in her life.",15000000,1143856,The Other Man,en +61895,Pageant,2008-12-26,85.0,http://www.pageantmovie.com/,,tt1152834,,A portrait of five men competing in the Miss Gay America pageant.,0,0,Pageant,en +141971,Blackout,2008-12-26,108.0,,,tt1180333,Which one is the first to return - memory or the murderer?,"Recovering from a nail gun shot to the head and 13 months of coma, doctor Pekka Valinta starts to unravel the mystery of his past, still suffering from total amnesia.",0,0,Blackout,fi +130278,Struck,2008-12-30,7.0,http://www.struckthefilm.com/,,tt1169167,,"On his way to work one day, Joel is impaled through the chest by a three-foot arrow. But it doesn’t harm him. And it won’t come out. So Joel has to learn to deal – both with his newfound protrusion, and his own painful loneliness. He tries to go to work, to date women, but no one seems ready to accept his strange flaw. Little does he know, his life is about to change forever...",0,0,Struck,en +106537,Michael Jackson: Life of a Superstar,2008-12-31,0.0,,,tt1515158,The Story of the King of Pop,The Story of the King of Pop,0,0,Michael Jackson: Life of a Superstar,en +31111,The Sicilian Girl,2008-12-31,113.0,,,tt1213926,What would drive a seventeen-year-old girl to betray her family? And if that family was the mafia?,"Inspired to a true story, on November 5th 1991, Rita Atria a young 17-year-old Sicilian girl, goes to see an anti-Mafia judge Paolo Borsellino to denounce the Mafia system that was responsible for the murder of her father and her brother. It is the first time that such a young woman from a Mafia family rebels and betrays the Mafia. From that moment on, Rita's days are numbered. She only has nine months to live...",0,0,La siciliana ribelle,it +52183,Gecenin Kanatları,2009-01-01,0.0,,,tt1537772,,,0,0,Gecenin Kanatları,tr +34128,Peter and Vandy,2009-01-01,78.0,http://www.peterandvandy.com/,,tt1144551,A love story in disorder.,Flashbacks and flash-forwards illustrate the rise and fall of a love affair between two New Yorkers.,500000,11276,Peter and Vandy,en +41360,Hunter Prey,2009-01-01,90.0,http://www.hunterpreythemovie.com/,,tt1270291,One man. One alien. One choice.,"The Prometheus has dropped out of orbit. Communications and life support systems are down. Situation Critical: Status of Crew and Prisoner unknown. With orders to catch their Alien Prisoner alive the surviving crew of the spaceship Prometheus pursue a dangerous game of cat-and-mouse with their escaped prisoner on a deserted and barren planet. But, who is the hunter and who is its prey?",425000,0,Hunter Prey,en +24757,Stoic,2009-01-01,87.0,,,tt1236484,,A heated game of poker causes three men incarcerated for nonviolent offenses to brutalize their cellmate before taking drastic measures in order to cover up their crime.,2000000,0,Stoic,en +44369,Boy,2009-01-01,80.0,,,tt1436336,The journey to find yourself can be a long one.,A poet sells his collection of comic books and action figures in order to afford to hire a male stripper on New Years Eve.,0,0,Boy,en +30974,High Lane,2009-01-01,90.0,,,tt1433562,,"A group of friends on vacation decide to venture onto a trail high up in the mountains that has been closed for repairs. The climb proves more perilous than planned, especially as they soon realize that they are not alone. The adventure turns into a nightmare.",0,0,Vertige,fr +28465,A Dangerous Man,2009-01-01,94.0,,,tt1360767,,"After serving 6 years for a crime he didn't commit, Shane Daniels is released from jail with an apology from the State of Arizona. Within hours of his freedom, he unluckily bears witness to a cop killing by Chinese mafia who have a kidnapped girl and a bag of drug money",6500000,0,A Dangerous Man,en +16390,Scooby-Doo! and the Samurai Sword,2009-01-01,74.0,,,tt1421378,,"The gang of Mystery Inc. take a trip to Japan and find themselves circling Asia and the Pacific in a treasure hunt, racing against the vengeful Black Samurai and his Ninja warriors to find the legendary Sword of Fate, an ancient blade fabled to possess extraordinary supernatural powers.",0,0,Scooby-Doo! and the Samurai Sword,en +28665,Fame,2009-01-01,107.0,,,tt1016075,,"An updated version of the 1980 musical, which centered on the students of the New York Academy of Performing Arts.",0,0,Fame,en +28969,The Velveteen Rabbit,2009-01-01,97.0,,,tt0974662,All You Need to Do is Believe.,A lonely boy wins over his distant father and strict grandmother with help from a brave velveteen rabbit whose one wish is to become a real rabbit someday,0,0,The Velveteen Rabbit,en +254661,O'er the Land,2009-01-01,52.0,,,tt1349455,,A meditation on freedom and technological approaches to manifest destiny.,0,0,O'er the Land,en +24756,The Art of War III: Retribution,2009-01-01,88.0,,25410,tt0878647,Know your enemy.,"When international diplomacy comes up short, extreme measures must be taken. In the newest installment of The Art of War, Agent Neil Shaw (Treach) is on a covert mission to stop North Korean terrorists from obtaining a nuclear bomb. But when the deal turns deadly, Shaw is drawn into the crossfire to save a beautiful facilitator (Sung Hi Lee) and ends up framed for murder...",0,0,The Art of War III: Retribution,en +15713,The First Star,2009-01-01,90.0,,,tt1350940,,,0,0,La Première étoile,fr +54779,Clonehunter,2009-01-01,85.0,,,tt1630529,,"2525 A.D. Man has colonized the stars. The wealthy and powerful implant their brains in cloned versions of themselves to gain immortality. As a side-effect, occasionally a clone develops mutant abilities. A clonehunter and his new partner have to track down a clone who threatens to destroy the planet unless the rich man he was cloned for gives him all his wealth.",0,0,Clonehunter,en +22241,Firaaq,2009-01-01,0.0,,,tt1263679,,"Firaaq is an Urdu word that means both separation and quest. The film is a work of fiction, based on a thousand stories. The story is set over a 24-hour period, one month after a campaign that took place in Gujarat, India, in 2002. It traces the emotional journey of ordinary people- some who were victims, some perpetrators and some who choose to watch silently.",0,0,Firaaq,en +270650,Oy Vey! My Son Is Gay!,2009-01-01,90.0,http://oyveymysonisgay.com/,,tt1223082,Love is Love!,"Comedy - Carmen Electra, Lainie Kazan, Saul Rubinek",0,0,Oy Vey! My Son Is Gay!,en +52039,Don't Let Me Drown,2009-01-01,105.0,,,tt0760166,,"In a post-September 11th world overflowing with fear and hate, two Latino teens discover that sometimes the only thing that can keep them from drowning is love.",0,0,Don't Let Me Drown,en +306391,Be Dune Saade Char,2009-01-01,0.0,,,tt3783464,,Bollywood 2009,0,0,Be Dune Saade Char,en +18120,Brain Drain,2009-01-01,105.0,http://www.fugadecerebros.com/,141448,tt1272013,,,0,0,Fuga de Cerebros,es +30312,Outrage,2009-01-01,90.0,,,tt1049400,,An indictment of closeted politicians who lobby for anti-gay legislation in the U.S.,0,0,Outrage,en +30966,Facing Ali,2009-01-01,100.0,,,tt1419318,,Ten of Muhammad Ali's former rivals pay tribute to the three-time world heavyweight champion.,0,0,Facing Ali,en +19238,Table for Three,2009-01-01,93.0,,,tt1238304,Never trust a perfect couple.,"A suddenly single guy invites what he thinks is a perfect couple to move into his apartment, only to discover they quickly insert themselves into all aspects of his life.",0,0,Table for Three,en +17669,The Last Templar,2009-01-01,170.0,,,tt1197580,,An adaptation of Raymond Khoury's novel about a New York archaeologist researching the lost secrets of the medieval Knights Templar.,0,0,The Last Templar,en +28025,Moonlight Serenade,2009-01-01,91.0,,,tt0455638,,"A jazz musician performs alongside a coat check girl with a beautiful voice in this musical drama from director Giancarlo Tallarico. By day Nate earns his living as a financial manager, but when night falls, he helps the girl with her singing career at the jazz club, where she performs one night a week. In time both realize they share something special other than the music.",0,0,Moonlight Serenade,en +20983,Hooking Up,2009-01-01,95.0,http://www.morbidmindproductions.com/hookingup/,,tt0903606,,"After ""hooking up"" with a series of guys at a house party, April is the talk of her high school.",0,0,Hooking Up,en +298695,Act of God,2009-01-01,68.0,,,tt0813991,,"When a heart surgeon chooses to save one female patient's life over another, her boyfriend looks for revenge.",0,0,Act of God,en +145051,The Kinematograph,2009-01-01,12.0,,,tt1567247,,A 19th-century inventor is close to perfecting motion pictures but doesn't want to reveal his invention to the public until he can show films with sound and color.,0,0,The Kinematograph,en +288259,No Flesh Shall Be Spared,2009-01-01,54.0,,,tt1595364,,Film about the making of the film Hardware.,0,0,No Flesh Shall Be Spared,en +26430,The Carter,2009-01-01,75.0,,,tt1247371,,"An in-depth look at the artist Dwayne ""Lil Wayne"" Carter Jr, proclaimed by many as the ""greatest rapper alive"" With comprehensive and personal interviews with Lil Wayne, this film will also feature insight from those that know him best. The world will finally get to know the history surrounding one of the most prolific artists of this generation.",0,0,The Carter,en +23823,Wrong Turn 3: Left for Dead,2009-01-01,91.0,,52985,tt1261978,What you don't see will kill you.,"A group of people find themselves trapped in the backwoods of West Virginia, fighting for their lives against a group of vicious and horribly disfigured inbred cannibals.",0,0,Wrong Turn 3: Left for Dead,en +49391,From Time to Time,2009-01-01,95.0,http://www.fromtimetotimemovie.com/,,tt1031241,,"A haunting ghost story spanning two worlds, two centuries apart. When 13 year old Tolly finds he can mysteriously travel between the two, he begins an adventure that unlocks family secrets laid buried for generations.",0,0,From Time to Time,en +19901,Daybreakers,2009-01-06,98.0,http://www.daybreakersmovie.com/,,tt0433362,"In 2019, The Most Precious Natural Resource... Is Us.","In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.",20000000,51416464,Daybreakers,en +8948,The Pearl Color,2009-01-08,103.0,,,tt1206486,,"A story about friendship, lie and truth...",0,0,Die Perlmutterfarbe,de +36597,Wuthering Heights,2009-01-18,142.0,http://www.pbs.org/wgbh/masterpiece/wutheringheights/index.html,,tt1238834,,Foundling Heathcliff is raised by the wealthy Earnshaws in Yorkshire but in later life launches a vendetta against the family.,0,0,Wuthering Heights,en +30127,The Invisible Woman,2009-06-05,106.0,http://wwws.br.warnerbros.com/amulherinvisivel/,,tt1236397,,"A man is abandoned by his wife and then falls in love with his neighbor, the perfect, ideal woman. The only problem: she doesn't exist!",0,0,A Mulher Invisível,pt +37429,Vali,2009-01-09,0.0,,,tt1344355,Gidenler geri gelmeyecek ama hesap kapanacak!,"Vali Faruk Yazıcı'nın en son görev yeri Denizli merkezli olacak filmin ana eksenine ise yine bir dünya ve Türkiye meselesi olan ""enerji"" konusu oturuyor. Bilindiği gibi Yeniçağ dünyasında gizli ve açık bir biçimde sergilenen politik oyunlar-komplolar ve uluslararası ilişkilerin çıkar noktasında enerji meselesi bulunuyor. Filmde, özellikle bu konuda Türkiye'nin ve Türk insanının içine çekilmeye çalışıldığı bir komploya tanık olacağız. Kısacası Vali, Türkiye çıkarlarını koruyup ülke insanlarının menfaati için elini taşın altına koyanlarla, taşları yukarıdan üstümüze yağdıran çıkar grupları arasındaki çekişmenin hikayesini anlatıyor…",0,0,Vali,tr +14834,Not Easily Broken,2009-01-09,99.0,http://www.sonypictures.com/movies/noteasilybroken/site/,,tt0795438,,A car accident and shifting affections test the bond between a married couple.,0,0,Not Easily Broken,en +17240,Slaughter,2009-01-09,96.0,,,tt1230206,Find a good hiding place.,"A young woman looks to escape her abusive life by moving to her family's farm near Atlanta. Unfortunately, she learns her place of supposed comfort offers more terrifying forms of abuse.",0,0,Slaughter,en +25335,Hellsinki,2009-01-09,133.0,,,tt1227536,"Happiness, jail or the grave?","Besides the journey of Tomppa and Krisu, the main characters of the film, Rööperi tells the story of Gypsy Kari, Arska, Bisquit, Uki and a bunch of other bad boys and criminals; it tells of their memorable and unscrupulous journey from crime and poverty to becoming respectable citizens, going to jail—or dying too young. The wrong side of the law is seen through the eyes of Koistinen, a local police officer. + The guys who fall into a life of crime have one thing in common: they all start by bootlegging, being sure money is an answer to all their problems. Money is a way out of a miserable life; it is a way to happiness and their modest dreams. They can stop doing criminal business as soon as they get enough money. + When the guys start making more money with black-market booze, their hunger and their dreams grow bigger.",2500000,0,Rööperi,fi +10521,Bride Wars,2009-01-09,89.0,http://www.bridewars.com,,tt0901476,May the best bride win,Two best friends become rivals when their respective weddings are accidentally booked for the same day.,30000000,114663461,Bride Wars,en +13788,The Unborn,2009-01-09,87.0,http://www.theunbornmovie.net/,,tt1139668,Evil will do anything to live.,A young woman fights the spirit that is slowly taking possession of her.,16000000,76514050,The Unborn,en +14979,Thick as Thieves,2009-01-09,104.0,,,tt1112782,Never trust a thief.,A master thief recruits a notorious thief to help him steal two famous Faberge eggs from an impenetrable vault in an effort to pull off one final job and repay his debt to the Russian mob.,25000000,0,Thick as Thieves,en +28677,Without a Paddle: Nature's Calling,2009-01-13,96.0,,146534,tt1276107,Three guys. One chance. No plan.,"Venturing into the woods causes nothing but trouble and hilarity for three misguided males in this straight to video spin-off of 2004's ""Without A Paddle"".",6300000,0,Without a Paddle: Nature's Calling,en +6163,The Hessen Affair,2009-01-14,108.0,,,tt1153106,The Winner Takes All... And More.,In 1945 a group of victorious American officers discover a stash of German jewels and try to fence them in New York.,20000000,0,The Hessen Affair,en +30449,Imago mortis,2009-01-15,0.0,,,tt1054112,,"They say that in 1600s, long before the invention of photography, a scientist named Fumagalli, was obsessed with the idea of reproducing images. He discovered that by killing a victim and removing his eyeballs it was possible to reproduce on paper the last image imprinted on the person's retina. He named such tecnique ""Thanatography"". Today, the same kind of gruesome ritual and abominable crimes r",3700000,0,Imago mortis,en +22398,Tenderness,2009-01-15,101.0,,,tt0494864,The intimacy of the kill,"Russell Crowe stars as Detective Cristofuoro, a semi-retired police officer who is trying to unravel the past to discover whether a violent teenager, Eric Poole (Jon Foster), was responsible for the murder of his family. Sophie Traub co-stars as Lori, the teenage runaway who falls under Eric's spell. Based on the novel by Robert Cormier.",0,0,Tenderness,en +15189,Hotel for Dogs,2009-01-16,100.0,,,tt0785006,No stray gets turned away.,"Placed in a foster home that doesn't allow pets, 16-year-old Andi and her younger brother, Bruce, turn an abandoned hotel into a home for their dog. Soon other strays arrive, and the hotel becomes a haven for every orphaned canine in town. But the kids have to do some quick thinking to keep the cops off their tails.",35000000,73034460,Hotel for Dogs,en +26390,Brooklyn's Finest,2009-01-16,133.0,,,tt1210042,This is War. This is Brooklyn.,Enforcing the law within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects is the NYPD's sixty-fifth precinct. Three police officers struggle with the sometimes fine line between right and wrong.,17000000,29536299,Brooklyn's Finest,en +14435,My Bloody Valentine,2009-01-16,101.0,http://www.mybloodyvalentinein3d.com/,264437,tt1179891,He's gonna break your heart.,"Ten years ago, a tragedy changed the town of Harmony forever. Tom Hanniger, an inexperienced coal miner, caused an accident in the tunnels that trapped and killed five men and sent the only survivor, Harry Warden, into a permanent coma. But Harry Warden wanted revenge. Exactly one year later, on Valentine’s Day, he woke up…and brutally murdered twenty-two people with a pickaxe before being killed.",15000000,100734718,My Bloody Valentine,en +19918,Spread,2009-01-16,97.0,http://www.spread-themovie.com/,,tt1186370,It's a business doing pleasure.,"In Los Angeles, Nikki is homeless, car-less and closing in on 30, but he's amoral, good-looking, and adept in the sack, moving from one wealthy woman of 35 or 40 to another, a kept boy-toy. His newest gig, with Samantha, an attorney whose house overlooks L.A., is sweet, although it's unclear how long she'll put up with him. Then Nikki meets Heather, a waitress. Is the player being played, or might this be love? What will Nikki discover?",0,12032983,Spread,en +49446,You Wont Miss Me,2009-01-16,81.0,http://www.youwontmissme.com/,,tt1249443,,"A kaleidoscopic film portrait of Shelly Brown, a twenty-three year-old alienated urban misfit recently released from a psychiatric hospital.",0,0,You Wont Miss Me,en +32868,The Vicious Kind,2009-01-17,92.0,http://tvkmovie.com/index.html,,tt1183921,How would you protect someone from their first love?,"A man tries to warn his brother away from the new girlfriend he brings home during Thanksgiving, but ends up becoming infatuated with her in the process.",0,0,The Vicious Kind,en +32395,The Greatest,2009-01-17,99.0,,,tt1226232,,"Teenagers Rose and Bennett were in love, and then a car crash claimed Bennett's life. He left behind a grieving mother, father and younger brother, and Rose was left all alone. She has no family to turn to for support, so when she finds out she's pregnant, she winds up at the Brewer's door. She needs their help, and although they can't quite admit it, they each need her so they can begin to heal.",6000000,0,The Greatest,en +56971,The New Monsters Today,2009-03-27,0.0,,,tt1331295,,,0,0,I mostri oggi,it +43817,White Lightnin',2009-01-19,92.0,,,tt1034419,,"Deep in the heart of the Appalachian Mountains in West Virginia, where every man owns a gun and a moonshine still, abides living legend Jesco White, ""the dancing outlaw"". As a boy Jesco was in and out of reform school and the insane asylum. To keep him out of trouble, his daddy D-Ray taught him the art of mountain dancing, a frenzied version of tap dancing to wild country banjo music. After his father's death, crazy Jesco dons his father's tap shoes and takes his show on the road.",0,0,White Lightnin',en +29151,Brief Interviews with Hideous Men,2009-01-19,80.0,,,tt0790627,,"After her boyfriend mysteriously leaves her with little explanation, a doctoral candidate in anthropology at a prestigious East Coast university Sara Quinn is left looking for answers as to what went wrong.",0,0,Brief Interviews with Hideous Men,en +39024,The Forbidden Door,2009-01-22,115.0,http://www.pintuterlarang.com/,,tt1288645,,A man discovers a boy is being abused and has to choose between saving him and losing his friends.,0,0,Pintu Terlarang,id +164419,Maata meren alla,2009-01-23,,,,tt1145449,,,0,0,Maata meren alla,fi +33558,Dog Eat Dog,2009-01-23,106.0,,,tt1157631,,"In the crime world of Colombia, there is an unwritten code. When Víctor and Eusebio, two hoods who bungle a shake-down job, break that code, they unwittingly sign their own death sentence.",0,0,Perro Come Perro,es +52221,Loving Leah,2009-01-25,95.0,,,tt1346983,,"A handsome Washington, D.C. doctor and a young New York woman fall in love at an unusual time...after they get married. Leah Lever is married to an Orthodox rabbi, Benjamin Lever, whose brother, Jake is a successful cardiologist and a non-practicing Jew. Jake is stunned when Benjamin dies suddenly, but not as stunned as when he is told that, under an ancient Jewish Law, he is expected to marry the childless Leah to carry on Benjamin's name.",0,0,Loving Leah,en +185768,Boy Crazy,2009-01-26,25.0,,,tt1374841,,"Love never sounded so good, until Corey must decide between two love interests and whether he wants to give up the joys of the single life.",0,0,Boy Crazy,en +7445,Brothers,2009-01-27,104.0,,,tt0765010,There are two sides to every family.,"When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Sam’s wife, Grace, and two children. Sam’s surprise homecoming triggers domestic mayhem.",26000000,43318349,Brothers,en +30305,Fireball,2009-01-29,94.0,,,tt1420771,"No Rules, No Mercy, Only the strongest will survive","Tai gets out of jail and discovers that his twin brother, Tan has been in coma for the past year. Tan has entered the world of Fireball, a violent game based on basketball hosted by underground criminal gangs, to raise money for Tai's early release. However, he was brutally beaten by another player, Tun. Tai agrees to join Den's team so that he can track down the man who hospitalised his brother. Tai is befriended by his teammates: Singh, a Thai boxing champion who wants to prove that he is the best; Muk, a Thai-African guy who needs money to support his family; IQ, a cheerful character who only wants to help his mother; and K, an old friend of Tan who has a mysterious past. He and his teammates must risk their lives and fight their way to the final round of the deadly Fireball championships so that Tai can avenge his brother on the court.",0,0,Ta chon,th +14254,The Uninvited,2009-01-30,87.0,http://www.uninvitedmovie.com,,tt0815245,Can you believe what you see?,"Anna returns home after spending time in a psychiatric facility following her mother's tragic death and discovers that her mother's former nurse, Rachel, has moved into their house and become engaged to her father. Soon after she learns this shocking news, Anna is visited by her mother's ghost, who warns her that Rachel has evil intentions.",0,41624046,The Uninvited,en +56992,Black Sea,2009-01-30,95.0,,,tt1267406,,It depicts the relationship between an elderly woman and her caregiver.,0,0,Mar nero,it +121170,Simply Raw,2009-02-01,92.0,,,tt1587696,,Reversing Diabetes in 30 Days.,0,0,Simply Raw,en +21752,If I Were You 2,2009-02-01,96.0,http://www.seeufossevoce.com.br/,369380,tt1099227,,"Claudio and Helena are on the verge of breaking up, until the couple experiences another strange phenomenon that looks to help them understand one another more.",0,0,Se Eu Fosse Você 2,pt +26656,Ghost Machine,2009-02-01,100.0,,,tt1286147,,Two technicians battle a vengeful spirit that has infected their stolen military software.,0,0,Ghost Machine,en +36944,Fat Head,2009-02-03,104.0,http://www.fathead-movie.com/,,tt1333994,,"A comedian replies to the ""Super Size Me"" crowd by losing weight on a fast-food diet while demonstrating that almost everything you think you know about the obesity ""epidemic"" and healthy eating is wrong.",0,0,Fat Head,en +27866,Kevin Hart: I'm a Grown Little Man,2009-02-03,72.0,http://www.khartonline.com/,,tt1420554,,"Fresh off the heels of appearing in movies like Superhero Movie and The 40 Year-Old Virgin, fast-talking comedian Kevin Hart stars in this live stand-up performance where he makes fun of everything and everybody - especially himself.",0,0,Kevin Hart: I'm a Grown Little Man,en +35908,Evil Angel,2009-02-05,123.0,http://www.evilangelmovie.com/,,tt0892051,,"Set in present day Chicago, the ancient avenging demon Lilith, attempts to destroy a young paramedic's life while destroying anyone who interferes with her plan.",0,0,Evil Angel,en +24886,Minor Details,2009-02-05,86.0,,,tt1230126,,"Someone's trying to make the students sick at the upscale boarding school, Danforth Academy! Abby, Paige, Claire and Taylor, join forces to solve the mystery. Whoever it is, the four best friends are going to find out!",0,0,Minor Details,en +22476,Infestation,2009-02-05,93.0,http://www.iconmovies.net/infestation/,,tt1020543,Prepare for global swarming!,"Our hero, Cooper, awakes to find himself nauseous, weak and covered in webbing, hanging from the ceiling of an office where, just minutes ago, he started his new job. As he struggles out of his slimy prison he comes face to face with his opponent - a grotesque, powerful and very angry bug. All 3 ft of it",0,0,Infestation,en +22901,I Know You Know,2009-02-05,81.0,,,tt1029123,,"Jamie, an 11-year-old boy, is fascinated by his father Charlie’s espionage work until the world of spies becomes all too real. Charlie lives in his own reality—an undercover agent, always on an important mission, always on the move. Life for Charlie is highly charged and on the edge. He is unpredictable, explosive, yet kind hearted and fiercely protective of his Jamie who hero-worships his father.",0,0,I Know You Know,en +26864,The Fish Child,2009-02-06,96.0,http://www.thefishchild.com/,,tt1235842,,"A desperate love story between two young girls of extremely different social backgrounds who, unable to find a place for their love in the world they live in, are pushed to commit a crime.",0,0,El niño pez,es +50028,Saving Grace B. Jones,2009-03-28,0.0,,,tt1107948,,In a 1950s-era Missouri town the life of a couple is thrown into chaos when the husband's sister is released from the local asylum and comes to live with the family.,0,0,Saving Grace B. Jones,en +60086,Babysitter Wanted,2009-02-06,93.0,http://www.babysitterwantedfilm.com/,,tt0819755,No experience necessary...,"When she takes a job babysitting a young boy (Kai Caster) for a night at his family's remote farmhouse, sweet college co-ed Angie Albright (Sarah Thompson) becomes the target of a scar-covered creep making mysterious phone calls and prowling outside the windows. Angie gets the drop on the would-be killer, but quickly discovers that her nightmare has just begun.",0,0,Babysitter Wanted,en +26971,Mediterranean Food,2009-02-06,100.0,,,tt1198340,,"Sofia's story, the best chef the world, and the two men who helped her to become a legend.",0,0,Dieta mediterránea,es +81434,Archie's Final Project,2009-02-07,107.0,,,tt0492896,Start at the end and work forward.,A teen coming-of-age romantic dramedy about a media-obsessed geek and the most beautiful and twisted girl in school.,0,0,Archie's Final Project,en +22683,Gifted Hands: The Ben Carson Story,2009-02-07,86.0,http://www.tnt.tv/movies/giftedhands/,,tt1295085,,Gifted Hands: The Ben Carson Story is a movie based on the life story of world-renowned neurosurgeon Ben Carson from 1961 to 1987.,0,0,Gifted Hands: The Ben Carson Story,en +18530,The Cry of the Owl,2009-02-07,101.0,http://www.ctvint.fr/pages/fiche.asp?id=3583,,tt1034302,What would you do if someone was watching you?,"A young woman becomes inexplicably attracted to a man who is stalking her. When her boyfriend goes missing, the stalker is the immediate suspect, until a game of jealousy and betrayal turns deadly.",11500000,0,The Cry of the Owl,en +40850,Cherrybomb,2009-02-08,86.0,,,tt1248971,Two guys.One girl.Game on.,"Cherry Bomb follows teenagers Luke, Malachy, and Michelle as they embark on a wild weekend of drink, drugs, shop-lifting and stealing cars. But what starts out as a game turns deadly serious when the three discover that they can't get off the wild ride they've set in motion.",0,0,Cherrybomb,en +123846,Prime Mover,2009-02-08,90.0,,,tt1156396,,A long haul truckie who finds that the reality of his existence is far removed from his youthful dreams of owning and driving his own prime mover.,5000000,0,Prime Mover,en +21583,Management,2009-02-08,94.0,http://www.managementfilm.com/,,tt1082853,Some moments just feel right.,A traveling art saleswoman tries to shake off a flaky motel manager who falls for her and won't leave her alone.,0,2434658,Management,en +8316,The Countess,2009-02-09,98.0,,,tt0496634,,"A 17th century Hungarian countess embarks on a murderous undertaking, with the belief that bathing in the blood of virgins will preserve her beauty.",8500000,0,The Countess,en +24238,Mary and Max,2009-02-09,92.0,http://www.maryandmax.com/,,tt0978762,Sometimes perfect strangers make the best friends.,"A tale of friendship between two unlikely pen pals: Mary, a lonely, eight-year-old girl living in the suburbs of Melbourne, and Max, a forty-four-year old, severely obese man living in New York. In the mid-1970's, a homely, friendless Australian girl of 8 picks a name out of a Manhattan phone book and writes to him; she includes a chocolate bar. He writes back, with chocolate. Thus begins a 20-year correspondence. Will the two ever meet face to face?",590235,1725381,Mary and Max,en +26963,The Secret of Kells,2009-02-09,75.0,http://www.thesecretofkells.com/,,tt0485601,Turn the darkness into light,"Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?",0,0,The Secret of Kells,en +39358,London River,2009-02-09,87.0,http://www.imdb.com/title/tt1227787/,,tt1227787,,"After traveling to London to check on their missing children in the wake of the 2005 London terror attacks on the city, two strangers come to discover their respective children had been living together at the time of the attacks",0,0,London River,en +37181,About Elly,2009-02-10,119.0,,,tt1360860,,The mysterious disappearance of a kindergarten teacher during a picnic in the north of Iran is followed by a series of misadventures for her fellow travelers.,0,0,درباره الی‎‎,fa +33091,The Girl,2009-02-10,95.0,,,tt1342378,,Story of a ten-year-old girl left alone in her house in the summer of 1981.,0,0,Flickan,sv +41427,Questo piccolo grande amore,2009-02-11,0.0,,,tt1275778,,,0,0,Questo piccolo grande amore,it +15036,Eden Is West,2009-02-11,110.0,http://www.edenalouest-lefilm.com/,,tt1158936,,"Elias (Riccardo Scamarcio) is an immigrant in his twenties who tries to get to Europe by a boat along with other illegal immigrants. When the boat is near the Greek shores and they hope they will soon disembark, a marine patrol approaches and Elias jumps into the sea in order to avoid arrest. So do the other people in the boat. He wakes up next morning in a shore with nudists, which is not so bad after all, since he has lost some of his clothes while he was swimming for quite a few hours. He pretends to be a nudist himself, steals some clothes and he pretends he is an employee of the hotel “Eden Club-Paradise”.",0,0,Eden à l'ouest,fr +22136,Ricky,2009-02-11,90.0,,,tt1189076,,"When Katie meets Paco they fall in love. From this an extraordinary child is born; Ricky, who quickly develops into something wonderful and not so normal.",0,0,Ricky,en +31061,Recep İvedik 2,2009-02-13,0.0,,131989,tt1373215,,"Recep İvedik'in güldüren, tartışmaları da düşündüren maceraları ikinci filmiyle devam ediyor. Bu sefer biricik babaanesi ve bitmeyen arzuları da onunla. Arzuları neler? Torunu Recep'in adam olamasını istiyor. Bir işi olsun, maaşı olsun, sevgilisi olsun, mutlu olsun, sevsin ve sevilsin istiyor.",0,0,Recep İvedik 2,en +48281,Before You Say 'I Do',2009-02-14,87.0,,,tt1318522,"To have a future, he must undo her past...","George Murray's fiancée Jane Gardner gets cold feet after accepting his ring, terrorized by her first wedding with Doug, who cheated that very day with their wedding coordinator. After a car crash, George finds himself 10 years in the past, just days before Doug's day.",0,0,Before You Say 'I Do',en +14688,Change of Plans,2009-02-18,100.0,http://www.lecodeachange-lefilm.com/,,tt1193088,,So called friends at a dinner party end up acting like a dysfunctional family.,0,0,Le Code a changé,fr +26752,Silent Wedding,2009-02-18,87.0,,,tt1194620,,"In the Soviet Union a young couple wish to marry, but Joseph Stalin dies the night prior to their wedding ceremony forcing the bride and groom to marry in silence.",0,0,Nunta mută,ro +17927,Fired Up!,2009-02-20,90.0,http://www.sonypictures.com/homevideo/firedup/,,tt1083456,2 Guys. 300 Girls. You Do the Math.,2 Guys. 300 Girls. You Do the Math. The two most popular guys in high school decide to ditch football camp for cheerleader camp. For the girls and for the glory.,20000000,18599102,Fired Up!,en +33314,Nora Roberts' Midnight Bayou,2009-03-28,120.0,,,tt1320347,,The new owner of a supposedly haunted New Orleans plantation manor uncovers a shocking secret that has been hidden for over 100 years.,0,0,Nora Roberts' Midnight Bayou,en +15060,Futurama: Into the Wild Green Yonder,2009-02-23,90.0,,13800,tt1054487,All the other galaxies will be green with envy!,"Leela becomes an outlaw when she and a group of ecologically-minded feminists attempt to save an asteroid of primitive life forms and the Violet Dwarf star from being destroyed, while Fry joins a secret society and attempts to stop a mysterious species known as the ""Dark Ones"" from destroying all life in the universe.",0,0,Futurama: Into the Wild Green Yonder,en +14977,Red Sands,2009-02-24,89.0,,,tt1103256,,"During a mission in the Middle East, a group of US soldiers destroy a statue out of boredom only to then be visited by something the next day.",0,0,Red Sands,en +37665,Wake,2009-02-25,97.0,http://www.wakemovie.com/,,tt0960097,Meet Carys. She's a mourning person...,"When things get tough for offbeat Carys Reitman, she does what any emotionally isolated, modern girl would do - she goes to strangers' funerals...",0,0,Wake,en +15640,"Killing Is My Business, Honey",2009-02-26,109.0,http://wwws.warnerbros.de/mord/,,tt1135940,,"A hit man whose mission is to prevent the printing of a tell-all book written by a former Mafioso, falls in love with the employee who may lose her job if the book doesn't get published.",0,0,"Mord ist mein Geschäft, Liebling",de +42679,Giulia Doesn't Date at Night,2009-02-27,105.0,,,tt1261055,,"Guido, an acclaimed author, leads an idyllic life with his beautiful wife and teenage daughter. But despite his seemingly perfect existence, Guido's restless search for inspiration leads him into the arms of Giulia, a charming and mysterious swim instructor, who is hiding a secret from her past.",0,0,Giulia non esce la sera,it +15472,The Girl with the Dragon Tattoo,2009-02-27,152.0,http://dragontattoofilm.com/,24761,tt1132620,Based on the Worldwide Best Seller,"Swedish thriller based on Stieg Larsson's novel about a male journalist and a young female hacker. In the opening of the movie, Mikael Blomkvist, a middle-aged publisher for the magazine Millennium, loses a libel case brought by corrupt Swedish industrialist Hans-Erik Wennerström. Nevertheless, he is hired by Henrik Vanger in order to solve a cold case, the disappearance of Vanger's niece",13000000,104345682,Män som hatar kvinnor,sv +15577,Crossing Over,2009-02-27,113.0,,,tt0924129,Every day thousands of people illegally cross our borders... only one thing stands in their way. America.,"Immigrants from around the world enter Los Angeles every day, with hopeful visions of a better life, but little notion of what that life may cost. Their desperate scenarios test the humanity of immigration enforcement officers. In Crossing Over, writer-director Wayne Kramer explores the allure of the American dream, and the reality that immigrants find – and create -- in 21st century L.A.",25000000,1037335,Crossing Over,en +313676,Waiting for Good News,2009-02-28,121.0,,,tt1386449,,"General store manager Akio (Tetsuji Tamayama) lives a carefree live in Okinawa with his dog, Kafu. One day he receives a strange letter from a woman named Sachi, but that’s not any person he’s familiar with. It turns out that the letter was a response to a joke wish he hung up at a Shinto shrine months earlier. Then one day, Sachi (Maiko) shows up and the two begin a relationship.",0,0,カフーを待ちわびて,ja +156908,Täynnä tarmoa,2009-03-01,0.0,,,tt1331092,,,0,0,Täynnä tarmoa,fi +91391,The Overbrook Brothers,2009-03-01,92.0,http://www.theoverbrookbrothers.com/,,tt1365637,,Road movie about two brothers who drive to Texas to find out the truth behind their parents.,0,0,The Overbrook Brothers,en +32901,Mine,2009-03-01,80.0,,,tt1326247,,MINE is the powerful story about the essential bond between humans and animals told against the backdrop of one of the worst natural disasters in U.S,0,0,Mine,en +8088,Broken Embraces,2009-03-01,127.0,http://www.losabrazosrotos.com/,,tt0913425,,"Harry Caine, a blind writer, reaches this moment in time when he has to heal his wounds from 14 years back. He was then still known by his real name, Mateo Blanco, and directing his last movie.",18000000,0,Los abrazos rotos,es +20047,The Steam Experiment,2009-03-01,90.0,,,tt1289437,When he turns up the heat ... they will turn on each other.,A deranged scientist locks 6 people in a steam room and threatens to turn up the heat if the local paper doesn't publish his story about global warming.,0,0,The Steam Experiment,en +15359,Wonder Woman,2009-03-03,74.0,http://warnervideo.com/wonderwomanmovie/,,tt1186373,Courageous princess. Fierce warrior. Legendary superhero.,"On the mystical island of Themyscira, a proud and fierce warrior race of Amazons have raised a daughter of untold beauty, grace and strength: Princess Diana. When an Army fighter pilot, Steve Trevor, crash-lands on the island, the rebellious and headstrong Diana defies Amazonian law by accompanying Trevor back to civilization.",0,0,Wonder Woman,en +8939,Tulpan,2009-03-04,100.0,,,tt0436854,,"Asa, a young and cheerful dreamer, returns from his Russian naval service to his sister’s nomadic family on the desolate Hunger Steppe of central Asia, so that he can begin his own life as a shepherd. But before he can tend a flock of his own, Asa must first win the hand of the only eligible girl for miles, his mysterious neighbor - Tulpan.",0,0,Тюльпан,ru +24821,Hidden,2009-03-04,95.0,,,tt1347007,,Painful memories arise when Kai Koss goes back to his childhood home after 19 years and inherits his dead mother's house.,2215773,0,Skjult,no +9935,Hallettsville,2009-03-05,0.0,,,tt0760169,,"Something awaits Tyler Jensen and his friends in the Hallettsville house. When Tyler's lifelong friends start dying, he must figure out a way to save himself, his girlfriend and the rest of the crew before the demons come.",0,0,Hallettsville,en +161024,Lovely Loneliness,2009-03-05,82.0,http://www.amorosasoledad.com.ar/,,tt1160004,Ella pensó que podía estar sola... se equivocó,A romantic comedy about a neurotic girl who makes a vow of solitude after getting dumped.,0,0,Amorosa Soledad,es +19276,Dhoondte Reh Jaoge,2009-03-06,135.0,,,tt1391544,,"Anand Pawar (Kunal Khemu) and Raj Chopra (Paresh Rawal) are perhaps the two most extreme individuals that have walked the city of Mumbai. While Anand is an idealist chartered accountant, Raj is an idle film producer.",0,0,Dhoondte Reh Jaoge,hi +15712,Welcome,2009-03-11,110.0,,,tt1314280,Friendship has no borders. True love has no limits.,"Bilal is 17 years old, a Kurdish boy from Iraq. He sets off on an adventure-filled journey across Europe. He wants to get to England to see his love who lives there. Bilal finally reaches Calais, but how do you cover 32 kilometers of the English Channel when you can't swim? The boy soon discovers that his trip won't be as easy as he imagined... The community of struggling illegal aliens in Calais",0,0,Welcome,fr +11440,Hilde,2009-03-11,137.0,,,tt0809432,,"A biography of Hildegard Knef, one of Germany's biggest post-war stars.",0,0,Hilde,de +246415,Redland,2009-03-11,105.0,,,tt0963328,,"As a family struggles to survive in rural isolation during the Great Depression, their daughter's secret affair begins a journey into the unknown.",0,0,Redland,en +337879,Sorrow,2015-04-21,90.0,,,tt2140423,Every Good Feeds On Evil,A couple depraved killers find themselves in a different situation when survivor takes matters into her own hands.,0,0,Sorrow,en +45098,More Than Blue,2009-03-11,105.0,,,tt1454545,A Story Sadder Than Sadness,"K, a radio producer who loves a woman named Cream, is told that he has only a few months left to live. Because he knows Cream's biggest fear is to be left alone, he keeps his illness a secret and urges her to marry a guy named Ju-Hwan. One day, Cream announces that she is in love with Ju-Hwan...",0,0,슬픔보다 더 슬픈 이야기,ko +16996,17 Again,2009-03-11,102.0,http://www.17againmovie.com/,,tt0974661,Who says you're only young once?,"On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a ""do-over."" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.",20000000,136267476,17 Again,en +13836,Race to Witch Mountain,2009-03-12,98.0,,,tt1075417,The race is on,"A taxi driver gets more than he bargained for when he picks up two teen runaways. Not only does the pair possess supernatural powers, but they're also trying desperately to escape people who have made them their targets.",50000000,106303988,Race to Witch Mountain,en +50526,Beats of Freedom,2009-03-12,0.0,,,tt1542391,,A history of Polish rock and independence,0,0,Beats of Freedom,en +103947,3x3,2009-03-12,6.0,,,tt1654725,,"A night watchman spends time on a basketball court throwing a ball into the basket. He has become an expert. He shows his abilities to a simple janitor, who also like him, is there all night.",0,0,3x3,en +21581,Through the Mist,2009-03-13,139.0,,,tt1242845,,"This is the life of Dédé Fortin. Signer,writer and creator of a very popular french-quebec band called ""Les Colocs"". This is a bio-movie of the life of this late signer .",0,0,"Dédé, à travers les brumes",fr +28858,Brothers at War,2009-03-13,110.0,http://www.brothersatwarmovie.com,,tt1239427,,"BROTHERS AT WAR is an intimate portrait of an American family during a turbulent time.  Jake Rademacher sets out to understand the experience, sacrifice, and motivation of his two brothers serving in Iraq. The film follows Jake’s exploits as he risks everything—including his life—to tell his brothers’ story.",0,0,Brothers at War,en +18405,The Last House on the Left,2009-03-13,110.0,http://www.thelasthouseontheleft.com/,,tt0844708,"If someone hurt someone you love, how far would you go to get revenge?","A group of teenage girls heading into the city hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge.",15000000,32721635,The Last House on the Left,en +66113,In Her Skin,2009-03-13,107.0,,,tt0995851,,Tale of a 15-year-old Australian girl who went missing.,7000000,0,In Her Skin,en +55433,Bomber,2009-03-14,84.0,http://www.bomberthemovie.com/,,tt1207926,,"An 83 year-old man returns to Germany for a long planned journey of atonement. When Ross, his useless son agrees to drive him there, a nightmare family road trip ensues.",0,0,Bomber,en +16239,Will Ferrell: You're Welcome America - A Final Night with George W. Bush,2009-03-14,90.0,,,tt1386011,,"Will Ferrell stars in a stand-up comedy as George W. Bush in this take on the former President of the United States. After playing George W. Bush on Saturday Night Live for many years, funny man Will Ferrell brings his impression to Broadway to send up the 43rd President of the United States of America.",0,0,Will Ferrell: You're Welcome America - A Final Night with George W. Bush,en +73424,True Adolescents,2009-03-14,88.0,,,tt1023346,Get Lost.,"At 34, struggling Seattle musician Sam finds himself broke, jobless and losing touch with the person he wants to become. When his girlfriend kicks him out, he's forced to crash with his Aunt Sharon and is reluctantly enlisted to take her teen son, Oliver, and his friend Jake camping.",0,0,True Adolescents,en +32286,From Mexico With Love,2009-03-15,96.0,,,tt0457355,,A washed-up trainer takes a self-destructive young boxer under his wing.,0,0,From Mexico With Love,en +18238,Lesbian Vampire Killers,2009-03-16,86.0,http://www.lesbianvampirekillersmovie.com/,,tt1020885,"After Twilight, The Real Party Starts.","With their women having been enslaved by a pack of lesbian vampires, the remaining menfolk of a rural town send two hapless young lads out onto the moors as a sacrifice.",0,0,Lesbian Vampire Killers,en +21191,Sin Nombre,2009-03-20,96.0,http://www.filminfocus.com/focusfeatures/film/sin_nombre,,tt1127715,The greatest sin of all is risking nothing.,"Set on the border, where Mexico becomes the crucible and the fearsome gangs of today’s Mexican countryside, the gauntlet, to freedom. The stories of a girl living in Honduras and hungering for a brighter future, and two teen gang members, for whom the Mara Salvatrucha is near their entire universe, become interlaced on the train to the border, a journey that will determine the future of their lives",0,5101756,Sin Nombre,es +38010,Fish Story,2009-03-20,112.0,,,tt1244666,,"A rock band writes a song called ""Fish Story"" based on a sentence from a badly translated novel by a quack translator. The song exceeds the boundaries of space and time and ties people and their stories together. Thirty-seven years go by, and the song strikes a comet and saves the Earth from total destruction.",0,0,フィッシュストーリー,ja +42819,The City of Your Final Destination,2009-03-21,114.0,,,tt0896923,,"28-year-old Kansas University doctoral student Omar Razaghi wins a grant to write a biography of Latin American writer Jules Gund. Omar must get through to three people who were close to Gund--his brother, widow, and younger mistress--so he can get authorization to write the biography. Written by Marisa_Gabriella, edited by Krystal Frauendienst",0,0,The City of Your Final Destination,en +17082,The Sniper,2009-03-24,90.0,http://www.mediaasia.com/thesniper/,,tt1194624,,"A police sniper teams up with a hot-headed rookie to take down his former friend and teammate, who is exacting revenge on the police force.",0,0,神枪手,cn +16652,Happily N'Ever After 2,2009-03-24,75.0,,141084,tt1235837,,Fairy tales collide when Mambo and Munk tip the scales of good and evil once again.,0,0,Happily N'Ever After 2,en +16440,Tales of the Black Freighter,2009-03-24,26.0,,,tt1295071,,"A mariner survives an attack from the dreaded pirates of the Black Freighter, but his struggle to return home to warn it has a horrific cost.",0,0,Tales of the Black Freighter,en +78174,Van Gogh: Brush with Genius,2009-03-25,38.0,,,tt1410248,,An artistic view of Van Gogh as if this movie is self narrated by himself.,0,0,"Moi, Van Gogh",en +99229,Normal,2009-03-26,100.0,,,tt1342408,A poignant look at how a family may look,"Dreaded serial killer Peter Kurten voluntarily turns himself over to the authorities. A young lawyer, eager to prove Kurten's mental derangement, agrees to defend a man who terrorized Germany between 1929 and 1931. In studying the case and meeting with the intelligent, cold-blooded manipulator, the young idealist's values become warped.",0,0,Normal,cs +44282,Plan B,2009-03-27,103.0,http://www.ohmygomez.com/planb/,,tt1408972,,Bruno's plan to win back his ex-girlfriend hits a snag when he becomes attracted to her boyfriend.,0,0,Plan B,es +72642,Solitary,2009-03-29,91.0,http://www.solitarymovie.com/,,tt1327763,Some Mysteries Must Be Solved Alone,"Sara (Amber Jaeger) suffers from agoraphobia, an obsessive fear of open spaces that renders her a virtual captive of her own home. When her husband, Mark (Kieron Elliott), disappears unexpectedly, Sara unravels emotionally and begins to panic. Turning to her estranged sister (Kristine Sullivan) and a psychiatrist (Andrew Qamar) for support, Sara soon begins to wonder whether the doctor is trying to help her or is plotting her demise.",0,0,Solitary,en +37203,Throw Down Your Heart,2009-03-30,97.0,,,tt1185405,,"A film crew follows the well-known banjo player Bela Fleck on his travels to Africa, where he learns about the instrument's origins.",0,0,Throw Down Your Heart,en +25353,The True Story of Puss 'n Boots,2009-04-01,82.0,,,tt1239462,,"A free adaptation of Charles Perrault's famous Puss'n Boots, ""The True Story of Puss'n Boots"" is a story for young and old for the first time on cinema screens.",0,0,La véritable histoire du Chat Botté,fr +14164,Dragonball Evolution,2009-04-01,85.0,,,tt1098327,The legend comes to life.,"The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.",100000000,0,Dragonball Evolution,en +1450,Blood: The Last Vampire,2009-04-02,91.0,,,tt0806027,"Where evil grows, she preys.","On the surface, Saya is a stunning 16-year-old, but that youthful exterior hides the tormented soul of a 400-year-old ""halfling."" Born to a human father and a vampire mother, she has for centuries been a loner obsessed with using her samurai skills to rid the world of vampires, all the while knowing that she herself can survive only on blood like those she hunts.",0,0,Blood: The Last Vampire,ja +17935,Iron & Blood: The Legend of Taras Bulba,2009-04-02,130.0,http://www.tarasbulbafilm.ru/,,tt1242457,,"Set in the 16th century, this is a story about Ukraine's Cossack warriors and their campaign to defend their lands from the advancing Polish armies.",25000000,16815892,Taras Bulba,en +18673,8 X 10 Tasveer,2009-04-03,119.0,http://www.8x10tasveerthefilm.com/,,tt1105709,8x10 Tasveer,"8X10 Tasveer is a story about young man named Jai Puri, (Akshay Kumar), who possesses supernatural powers. Jai is of Indian origin who works as a forest ranger in Canada. His life is shattered by a loss of a very important person in his life. This personal tragedy leads him to use his unique supernatural power to unravel the mystery behind the murder.",0,0,8x10 Tasveer,en +17003,Sugar,2009-04-03,120.0,http://www.sonyclassics.com/sugar,,tt0990413,,"Sugar is a 2008 sports drama film directed by Anna Boden and Ryan Fleck. It follows the story of Miguel Santos, a. k. a. Sugar (Algenis Perez Soto), a Dominican pitcher from San Pedro de Macorís, struggling to make it to the big leagues and pull himself and his family out of poverty. Playing professionally at a baseball academy in the Dominican Republic, Miguel finally gets his break at age 19 when he advances to the United States' minor league system; but when his play on the mound falters, he begins to question the single-mindedness of his life's ambition.",0,0,Sugar,en +18374,My Girlfriend Is an Agent,2009-04-04,112.0,,,tt1432078,,"Disguised as a travel agent, “Su-ji” is a government spy with six years’ experience who can’t reveal her career to her boyfriend “Jae-joon.” After she lies again, her boyfriend breaks up with her and leaves without notice, leaving her struggling alone with her sadness. Three years later, while chasing an industrial spy in disguise as a cleaning lady, she happens to run into Jae-joon. He’s become an international certified accountant, and seeing him throws her feelings into doubt.Lying is part of the job, secrecy is the name of the game in ""My Girlfriend is an Agent"".",0,0,7급 공무원,ko +51275,The Priest,2009-04-04,129.0,,,tt1506452,,,0,1708837,Поп,ru +26152,Erreur de la banque en votre faveur,2009-04-08,98.0,,,tt1314240,,,0,0,Erreur de la banque en votre faveur,fr +44527,Villa Amalia,2009-04-08,94.0,,,tt1348327,Marital Separation,"Ann leaves Thomas and everything else behind when she catches him kissing another woman. With her music and help from Georges, she begins a journey to find herself.",0,0,Villa Amalia,en +72421,Marcel Reich-Ranicki - Mein Leben,2009-04-10,0.0,,,tt1270101,,,0,0,Marcel Reich-Ranicki - Mein Leben,de +25716,Crows Zero II,2009-04-11,133.0,,192174,tt1232831,,"Genji and his victorious G.P.S. alliance find themselves facing down a new challenge by the students of Hosen Academy, feared by everyone as 'The Army of Killers.' The two schools, in fact, have a history of bad blood between them. And the simmering embers of hatred are about to flare up again, burning away any last remnants of the truce they had so rigorously observed until now.",0,0,クローズ ZERO II,ja +17046,Skellig,2009-04-12,98.0,http://www.sky1.co.uk/skellig/,,tt0382301,A Magical Story of an Unlikely Friendship,"An ordinary boy named Michael is going through some extraordinary changes in his life. His family has just moved into an unfamiliar house, and his brand new baby sister has fallen ill. One day, while cleaning out the garden shed, he stumbles across something mysterious, a strange creature huddled in the corner; weak of body but strong of will. This is Skellig.",0,0,Skellig,en +15092,Crank: High Voltage,2009-04-16,96.0,http://www.crank2.com/,64751,tt1121931,"Stay Charged, Stay Alive!",Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.,20000000,34560577,Crank: High Voltage,en +22447,Is Anybody There?,2009-04-17,95.0,http://www.isanybodytheremovie.com/,,tt1130088,,A young boy who lives in an old folks' home strikes up a friendship with a retired magician.,0,0,Is Anybody There?,en +19501,April Showers,2009-04-18,94.0,http://www.aprilshowersmovie.com/,,tt1212451,"In an instant, their world changed forever.","A look inside a tragedy through the eyes of a survivor. Based on actual events, April Showers is about picking up the pieces in the direct aftermath of school violence",0,0,April Showers,en +37269,My Fake Fiance,2009-04-19,95.0,,,tt1319746,Need money? Get a Fiance...,"Jennifer and Vince, virtual strangers, find themselves strapped for cash and decide to stage a fake engagement and wedding just for the gifts",0,0,My Fake Fiance,en +45729,Dark House,2009-04-19,85.0,,,tt1260567,Death Lives Here,A troupe of actors hired for a haunted house attraction soon find that they are working in a true house of horror.,0,0,Dark House,en +22494,Frequently Asked Questions About Time Travel,2009-04-24,83.0,http://www.faqmovie.co.uk/,,tt0910554,Three guys. One pub. Too much time on their hands.,Three men walk into a bar; two geeks and a cynic. They are three ordinary blokes who all have dreams and hopes for an exciting and better future,0,0,Frequently Asked Questions About Time Travel,en +35689,Don McKay,2009-04-24,87.0,,,tt1281374,Some secrets are better left buried.,Everything appears off-kilter when a man returns to his hometown after 25 years to visit his former lover.,0,0,Don McKay,en +36737,Carny,2009-04-24,88.0,,,tt1397497,The carnival is anything but fun.,"When a traveling carnival comes to a rural Nebraska town, the caged attraction everyone is talking about is the alleged Jersey Devil. When the beast escapes, tearing the citizens to shreds, local sheriff Sam Atlas steps up to form a tracking team. But the carnivorous fugitive is only one of Sam’s problems. The local pastor, enraged by the death of his son at the hands of the beast, has plans for igniting his own brand of hellfire and revenge.",0,0,Carny,en +23452,Gurren Lagann The Movie: The Lights in the Sky Are Stars,2009-04-25,120.0,,23453,tt1422651,,"Seven years after the defeat of the spiral king, Simon and the Dai-Gurren brigade must set out to the vastness of space to defeat a new threat and save the universe.",0,0,劇場版 天元突破グレンラガン 螺巌篇,ja +25983,The House of the Devil,2009-04-25,95.0,,,tt1172994,Talk on the phone. Finish your homework. Watch TV. Die.,"In the 1980s, college student Samantha Hughes takes a strange babysitting job that coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret.",0,0,The House of the Devil,en +35856,A Matter of Size,2009-04-27,90.0,,,tt1258123,,"Four overweight friends from the Israeli city of Ramle are fed up of dieting and the dieting club they belong to. When Herzl (155 kilos), the main protagonist, loses his job as a cook and starts working as a dishwasher in a Japanese restaurant in Ramle he discovers the world of Sumo where large people such as himself are honored and appreciated. Through Kitano (60 kilos), the restaurant owner, a former Sumo coach in Japan (who is supposedly hiding from the Yakuza in Israel), he falls in love with a sport involving ""two fatsos in diapers and girly hairdos"". Herzl wants Kitano to be their coach but Kitano is reluctant - they first have to earn their spurs. ""A MATTER OF SIZE"" is a comedy about a ‘coming out’ of a different kind - overweight people learning to accept themselves.",0,0,Sippur Gadol,en +2080,X-Men Origins: Wolverine,2009-04-28,107.0,http://www.x-menorigins.com/,453993,tt0458525,Witness the Origin.,"After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.",150000000,373062864,X-Men Origins: Wolverine,en +16985,Legally Blondes,2009-04-28,86.0,,86024,tt1015999,,"Moving from England to California, the youngest cousins of Elle Woods must defend themselves when their schools reigning forces turn on the girls and try to frame them for a crime.",0,0,Legally Blondes,en +295782,"Die Frau, die im Wald verschwand",2009-04-29,,,,tt1256505,,,0,0,"Die Frau, die im Wald verschwand",de +43550,My Last Five Girlfriends,2009-04-29,87.0,,,tt1050002,,"My Last Five Girlfriends traces the romantic journey of thirtysomething bachelor Duncan. As the film opens, the despondent Duncan is apparently preparing to take his own life, but not before taking the time to send a message to the last five women he dated. Taking the form of a whirlwind tour through Duncan World, the film is a comedic exploration of his failed relationships.",0,0,My Last Five Girlfriends,en +63615,Un buen hombre,2009-04-30,0.0,,,tt1282257,,,0,0,Un buen hombre,es +56807,Son of Babylon,2009-05-01,100.0,http://www.sonofbabylon.com/,,tt1415290,,"A willful young boy follows his just as obstinate grandmother in a journey across Iraq, determined to discover the fate of her missing son, Ahmed's father, who never returned from war.",0,0,Syn Babilonu,ar +55655,The Sound of Insects: Record of a Mummy,2009-05-01,87.0,,,tt1439573,,"The incredible story of how the mummified corpse of a 40-year-old man was discovered by a hunter in one of the most remote parts of the country. The dead man's detailed notes reveal that he actually committed suicide through self-imposed starvation only the summer before. Liechti's film is a stunning rapprochement of a fictional text, which itself is based upon a true event: a cinematic manifesto for life, challenged by the main character's radical renunciation of life itself. (peterliechti.ch)",0,0,The Sound of Insects: Record of a Mummy,fi +18472,Driven To Kill,2009-05-01,98.0,,,tt1227177,,"A former Russian mobster named Ruslan, who is now a crime novelist, returns home and discovers his daughter is marrying his arch nemesis. His past also comes back to haunt him when his family is threatened. Hungry for justice, Ruslan returns to the life he once knew...with a vengeance.",10000000,0,Driven To Kill,en +57458,A Letter to Uncle Boonmee,2009-05-05,17.0,,,tt1480648,,A filmmaker captures images that characterize the violence and repression as well as the hope of rebirth and remembrance in northeastern Thailand.,0,0,A Letter to Uncle Boonmee,th +17658,Someone I Loved,2009-05-06,112.0,,,tt1258141,,"One night, Pierre decides to reveal his painful secret to his daughter-in-law, who's just been abandoned by her husband. Pierre's secret is about his secret love to Mathilde, the woman he left to instead follow an easier path in life.",0,0,Je l'aimais,fr +42346,The Last Days of Emma Blank,2009-05-07,89.0,,,tt1239446,,A woman living in a large country home drives her servants to mutiny with her outrageous demands as she waits for death to come for her.,0,0,De laatste dagen van Emma Blank,nl +36407,Strawberry Wine,2009-05-08,109.0,,,tt1260596,,No overview found.,0,0,Wino truskawkowe,en +60807,Kick,2009-05-08,155.0,http://en.wikipedia.org/wiki/Kick_(2009_film),,tt1579592,,"Kalyan (Ravi Teja) is a kind of guy who prefers a life full of thrills than leading a regular life style. He seeks kick in whatever he does. He finds liking in Naina (Ileana). They separate due to differences. Krishna (Shyam) is a young cop who is in lookout for a big ticket thief who happens to be Kalyan. Meanwhile, Naina agrees for an engagement with Krishna. The rest of the story is all about how Kalyan wins back his lady love and the real intent behind the robberies of Kalyan.",0,0,Kick,te +39936,All That I Love,2009-05-13,95.0,,,tt1442584,,"Follows four friends in their quest to form a punk band. As workers protests sweep across the country, Janek and Staszek, the sons of a navy man, the rebellious Kazik, and the affluent Diabel gel as a band, but their disparate lives are touched by social turmoil and outside perceptions.",0,0,"Wszystko, co kocham",pl +39545,TiMER,2009-05-14,99.0,http://www.timerthemovie.com,,tt1179794,You can't hurry love.,"When implanted in a person's wrist, a TiMER counts down to the day the wearer finds true love. But Oona O'Leary faces the rare dilemma of a blank TiMER. Her soul mate - whoever and wherever he is - has yet to have a TiMER implanted. Staring down the barrel of thirty and tired of waiting for her would-be life partner to get off the dime, Oona breaks her own rules and falls for Mikey, a charming and inappropriately young supermarket clerk with a countdown of four months.",0,0,TiMER,en +24469,Fish Tank,2009-05-14,123.0,,,tt1232776,"Live, love and give as good as you get.",Everything changes for 15 year old Mia when her mum brings home a new boyfriend.,3000000,2357852,Fish Tank,en +94340,Subdivision,2009-08-20,100.0,,,tt1203532,"Love plus loyalty, multiplied by pride, divided by money equals...",Based on the change a rapidly growing town faces when southern developers take over.,0,0,Subdivision,en +38526,Bangkok Adrenaline,2009-05-14,90.0,,,tt1442486,,Four backpackers arrive in Thailand to party and drink. A gambling game goes wrong and with their lives on the line they desperately decide to kidnap a billionaires daughter. Things go wrong when her 'father' doesn't play ball and prefers to use the kidnapping to further his own interests.,0,0,อะดรีนาลีน คนเดือดสาด,es +70747,Huacho,2009-05-14,89.0,,,tt1157552,,A Chilean family deals with the new values in a quickly changing world.,0,0,Huacho,de +76297,All's Faire in Love,2009-05-15,104.0,http://www.allsfaireinlovefilm.com/afl_main.html,,tt1034090,,Two rival Medieval shows vie for supremacy in the world of Renaissance Faires.,0,0,All's Faire in Love,en +142085,Lost Persons Area,2009-05-16,109.0,,,tt1405808,,"In life, you don't get what you want. You just get what you need.",0,0,Lost Persons Area,en +58251,Daddy Longlegs,2009-05-16,100.0,,,tt1426362,,"After months of living a solitary existence, Lenny, 34, picks up his kids from school. Every year he spends a couple of weeks with his sons Sage, 9, and Frey, 7. Lenny hosts his kids within a midtown studio apartment in New York City. During these two weeks, he must figure out if he wants to act as their father or be their friend. Ultimately, their trip upstate results in complete lawlessness taking over their lives.",0,20728,Go Get Some Rosemary,en +18897,Don't Look Back,2009-05-16,110.0,http://www.neteretournepas-lefilm.com,,tt1075113,,Panic attacks and memory loss signal the plight of a writer whose body is inexplicably being taken over by another woman.,13000000,0,Ne te retourne pas,fr +17609,Antichrist,2009-05-18,108.0,,,tt0870984,"When nature turns evil, true terror awaits.","A grieving couple retreats to their cabin 'Eden' in the woods, hoping to repair their broken hearts and troubled marriage. But nature takes its course and things go from bad to worse.",11000000,791867,Antichrist,da +45988,1066: The Battle for Middle Earth,2009-05-18,148.0,http://www.1066themovie.biz,,tt1329539,"One Kingdom, Two Kings, One Duke, Three Battles and the Most Famous Date in English History","October 14th, 1066 is the most famous date in English history. It is the year of TWO invasions of England, and in which three huge and bloody pitched battles were fought",0,0,1066,en +17911,Mega Shark vs Giant Octopus,2009-05-19,90.0,http://www.theasylum.cc/product.php?id=155,264481,tt1350498,Winner... Eats... All!,The California coast is terrorized by two enormous prehistoric sea creatures as they battle each other for supremacy of the sea.,0,0,Mega Shark vs Giant Octopus,en +24979,"Nick Swardson: Seriously, Who Farted?",2009-05-19,59.0,,,tt1562392,,"Nick started stand up at the age of 18. In his first year of stand up he was chosen to perform at the U.S. Comedy Arts festival. In 2000, he hit a milestone in his career when he taped his Comedy Central half-hour special at the age of 22 (the youngest to do so). More recently, Nick wrote and starred in the Happy Madison-produced films Grandma's Boy and Benchwarmers.",0,0,"Nick Swardson: Seriously, Who Farted?",en +18899,Vengeance,2009-05-20,108.0,,,tt1329454,,"A French chef swears revenge after a violent attack on his daughter's family in Hong Kong, during which her husband and her two children are murdered. To help him find the killers, he hires three local hit-men working for the mafia.",0,0,Fuk sau,cn +50086,Nymph,2009-05-20,91.0,,,tt1424366,,An urban husband and wife travel to the jungle and learn just how precious their relationship is.,0,0,นางไม้,th +46128,La bella società,2009-05-21,0.0,,,tt1513803,,,0,0,La bella società,it +18826,Spring Breakdown,2009-05-22,84.0,,,tt0814331,,Three women in their thirties head to a popular Spring Break destination and try to relive the Spring Break they never had.,12300000,0,Spring Breakdown,en +99188,Gravity's Clowns,2009-05-23,118.0,http://jyuryoku-p.com/,,tt1427241,,"On the outset, the Okunos seem like a normal happy family with father Tadashi and his two bright sons, genetics researcher Izumi and artsy Haru. When a series of arson attacks strike the neighborhood, clues left at the crime scenes seem to be somehow related to the Okunos. Izumi and Haru try to get to the bottom of mystery, slowly unveiling a tragic family secret that has come back to haunt them.",0,0,重力ピエロ,ja +19996,Brother's War,2009-05-26,100.0,http://www.brotherswar.info/,,tt0932661,,"The story is set in the latter days of World War 2, against the backdrop of fierce combat on the eastern front. Brother's War is based on real events.",0,0,Brother's War,en +17577,The Devil's Tomb,2009-05-26,90.0,,,tt1147687,An evil entombed for 2000 years... until now.,"Captain Mack leads an elite military unit on a search for a missing scientist, and comes face-to-face with an an ancient evil lying beneath the Middle Eastern desert. Evil that is not of this world. Evil that should never be unearthed.",10000000,0,The Devil's Tomb,en +18898,Looking for Eric,2009-05-27,119.0,http://www.lookingforeric.fr/,,tt1242545,"To win back the love of his life, Eric's going to need a little training.",A man trying to put his life back on track gets some advice from an unexpected benefactor (the ex football player Eric Cantona) in this comedy-drama from acclaimed British director Ken Loach.,0,0,Looking for Eric,en +26796,Telstar: The Joe Meek Story,2009-05-30,119.0,,,tt1068669,,"Set against a backdrop of early 60's London, Telstar is the story of the world's first independent record producer, Joe Meek. A maverick genius who enjoyed phenomenal success with Telstar - the biggest selling record of it's time - before bad luck, depression, heartbreak and paranoia led to his downfall.",0,0,Telstar: The Joe Meek Story,en +39958,The War Boys,2009-05-30,92.0,http://www.thewarboys.com/,,tt1070887,The border: where dreams begin and end. A fence. A line drawn in the sand. A war zone.,Three young vigilantes huddle on la linea ready to chase illegals back across the border into Mexico... but they soon learn that there are borderlines deep within each one of them that each of them has to cross.,0,0,The War Boys,en +72251,Safe Harbor,2009-05-30,120.0,,,tt1340795,,"Doug and Robbie are about to set sail on a long trip when they unexpectedly find themselves foster parenting a group of troubled teenage boys. The experience changes their lives for the better, and they decide to stay in town and run the foster home for boys permanently.",0,0,Safe Harbor,en +39450,White on Rice,2009-05-31,83.0,,,tt0892904,,"40-year-old Jimmy is growing up, or at least he's getting older. While mooching the upper bunk of his ten-year-old nephew's bed, he enjoys the never-ending generosity of his sister Aiko, and dodges the wrath of his impatient brother-in-law Tak. He thinks that if only he could get married all his problems would be solved. But when he falls head over heels for Tak's niece things only go from bad to worse.",0,0,White on Rice,en +25450,Ratko: The Dictator's Son,2009-06-01,82.0,,,tt1052027,,The son of a dictator travels to the U.S. to attend college.,0,0,Ratko: The Dictator's Son,en +62320,Home,2009-06-03,95.0,http://www.homethemovie.org/,,tt1014762,A Stunning Visual Portrayal of Earth,"With aerial footage from 54 countries, Home is a depiction of how the Earth's problems are all interlinked.",0,0,Home,fr +19255,Away We Go,2009-06-05,98.0,,,tt1176740,,"Verona and Burt have moved to Colorado to be close to Burt's parents but, with Veronica expecting their first child, Burt’s parents decide to move to Belgium, now leaving them in a place they hate and without a support structure in place. They set off on a whirlwind tour of of disparate locations where they have friends or relatives, sampling not only different cities and climates but also different families. Along the way they realize that the journey is less about discovering where they want to live and more about figuring out what type of parents they want to be.",17000000,14899417,Away We Go,en +45576,Last Train Home,2009-06-06,85.0,,,tt1512201,,"A family embarks on an annual tormenting journey along with 200 other million peasant workers to reunite with their distant family, and to revive their love and dignity as China soars as the world's next super power.",0,288,Gui tu lie che,zh +159304,Runaway,2009-06-08,9.0,,,tt1520380,,"A train runs into a cow on the tracks; with the captain nowhere to be found, the fireman is forced to desperately improvise in order to keep the train going.",0,0,Runaway,en +74666,Jaffa,2009-06-10,106.0,,,tt1406160,,"In the city of Jaffa; a young girl plans to run away with her secret lover, when a tragedy forever changes the course of their lives.",0,0,Kalat Hayam,he +38625,Battle Under Orion,2009-06-13,120.0,,,tt1382642,,The story of a Japanese sub's last mission during WWII.,0,0,真夏のオリオン,ja +29483,Beautiful Kate,2009-06-13,90.0,http://www.beautifulkatemovie.com.au/,,tt1209377,The past is always present.,"Ned Kendall is asked to return to the remote and isolated family home by his sister, to say goodbye to his father who is dying. Ned also brings his young aspiring actress fiancee who struggles with the isolation. When home he starts having memories of his childhood many involving his beautiful twin sister and his older brother. These memories awaken long-buried secrets from the family's past.",4300000,0,Beautiful Kate,en +28178,Hachi: A Dog's Tale,2009-06-13,93.0,,,tt1028532,"A true story of faith, devotion and undying love.",A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.,16000000,47801389,Hachi: A Dog's Tale,en +39414,Paper Man,2009-06-15,110.0,http://www.papermanthemovie.com/,,tt0437405,A little imagination goes a long way,"A coming-of-middle-age comedy that chronicles the unlikely friendship between failed author Richard Dunne and a Long Island teen who teaches him a thing or two about growing up, all under the disapproving eye of his long-suffering wife and his imaginary Superhero friend.",0,0,Paper Man,en +26123,American Pie Presents: The Book of Love,2009-06-18,93.0,,298820,tt1407050,,"Ten years after the first American Pie movie, three new hapless virgins discover the Bible hidden in the school library at East Great Falls High. Unfortunately for them, the book is ruined, and with incomplete advice, the Bible leads them on a hilarious journey to lose their virginity.",0,0,American Pie Presents: The Book of Love,en +68634,My Flesh My Blood,2009-06-19,90.0,,,tt1471195,,"Igor is a professional boxer whose world comes to a halt when he learns that his brain has been severely damaged from his many years of fighting. Refusing to undergo surgery, he knows that his days are numbered. Not having much left, his last desire is to leave a child behind as his legacy. A young Vietnamese immigrant, Yen Ha, agrees to have his baby in return for Polish citizenship. Despite the nature of their agreement, they slowly fall in love, but then Igor's health deteriorates...",0,0,Moja krew,pl +44578,"Moonshot, the Flight of Apollo 11",2009-06-20,90.0,,,tt1251357,,"Man's landing on the moon was our greatest technological achievement. The Apollo 11 mission was truly the stuff of dreams. For the first time, our species walked on another celestial body. Even more remarkable was their ability to make it back. This is the story of the July 20, 1969, Apollo 11 moon landing. Drama with digitally remastered original footage.",0,0,"Moonshot, the Flight of Apollo 11",en +24921,Rise of the Gargoyles,2009-06-21,94.0,,,tt1275786,Evil takes flight.,Workers involuntarily release a gargoyle that proceeds to behead those who took her eggs (and some who didn't!).,0,0,Rise of the Gargoyles,en +24023,Johan Falk: GSI - Gruppen för särskilda insatser,2009-06-25,113.0,,24717,tt1295905,,Johan works in tandem with the GSI organized crime unit to bring in a cadre of armored car robbers,0,0,Johan Falk: GSI - Gruppen för särskilda insatser,en +103539,Kelin,2009-06-26,84.0,,,tt1464239,,"A woman is led by her family to her new husband's home, to live with, presumably, his elderly mother and younger brother. Despite being forced into the marriage, she discovers that he is not such a bad catch after all but domestic bliss does not last long.",0,0,Kelin,kk +28997,Jean Charles,2009-06-26,91.0,,,tt0989007,,"The tragic true story of Jean Charles de Menezes, the innocent Brazilian shot dead by British police in 2005 at the height of the London terrorist alerts.",0,0,Jean Charles,pt +20825,I Hate Valentine's Day,2009-06-27,98.0,http://www.ifcfilms.com/films/i-hate-valentines-day,,tt0762105,,"A love story set in Manhattan, where a florist who abides by a strict five-date-limit with any man finds herself wanting more with the new restaurateur in town.",0,0,I Hate Valentine's Day,en +36917,Ju-on: Black Ghost,2009-06-27,60.0,,1972,tt1422674,,"A Nurse named Yuko (Ai Kago) has a strange experience while taking care of a girl named Fukie. Test results show a cyst inside Fukie’s body, but that cyst is actually the leftover grudge from a baby who was unable to be born. The cyst’s grudge spreads to Fukie and everyone around her. Soon Fukie’s father goes mad and commits murder. Fukie’s sister Mariko has special spiritual power, and together with their mother they have some success driving out the evil spirit. But the worst of the grudge is yet to come.",0,0,呪怨: 黒い少女,ja +26693,Ju-on: White Ghost,2009-06-27,61.0,,1972,tt1422675,,Akane begins seeing visions of a female ghost wearing the same yellow hat and red satchel she wore as a school child.,0,0,呪怨: 白い老女,ja +8355,Ice Age: Dawn of the Dinosaurs,2009-06-29,94.0,http://www.iceagemovies.com/films/ice-age-dawn-of-the-dinosaurs,8354,tt1080016,You Won't Believe Your Ice!,"Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.",90000000,886686817,Ice Age: Dawn of the Dinosaurs,en +35572,Harishchandrachi Factory,2009-07-01,96.0,http://www.harishchandrachifactory.utvnet.com/,,tt1524539,,The movie depicts efforts and struggle by Dadasaheb Falke for creating first motion picture in India - Raja Harishchandra.,0,0,Harishchandrachi Factory,mr +36628,Lo,2009-07-01,82.0,,,tt1047490,Love is Hell,Love presents many challenges to couples...but none so daunting as the one Justin faces with his girlfriend April...,0,0,Lo,en +27480,Last Ride,2009-07-02,101.0,,,tt1235142,Are some bonds meant to be broken?,"A young boy travels across Australia with his father, who's wanted by the law.",0,0,Last Ride,en +36063,MW,2009-07-03,129.0,,,tt1242755,,"A live-action adaptation of Osamu Tezuka’s mature manga masterpiece MW (pronounced “moo,” like a cow), created to celebrate the 80th anniversary of Tezuka. When a top secret chemical compound called MW infects an island near Okinawa, the military is sent in to kill all the victims and cover up the incident. A survivor named Michio Yuki (Hiroshi Tamaki) grows up to become a highly-successful banker, but he is slowly being driven mad by the effects of MW. After committing a series of ruthless crimes to get revenge against the people responsible for the cover-up, he decides that the only way to truly get revenge is to unleash MW on the world and exterminate the entire human race. Takayuki Yamada stars as Father Garai, a priest desperately trying to save Michios soul—and possibly his own in the process—but not necessarily doing much to stop the crime spree.",0,0,MW,en +26566,Father and Guns,2009-07-08,107.0,,417481,tt1258134,,"To save the life of fellow cop kidnapped by a biker gang, a father and a son who cannot stand the sight of each other infiltrate an outdoor adventure group-therapy for fathers and sons. Their biggest challenge is to survive the therapy without killing each other.",0,0,De père en flic,fr +72074,Murderer,2009-07-09,120.0,,,tt1437362,,A Hong Kong-set mystery centered on a detective who has been framed for a series of gruesome murders.,0,0,Saat yan faan,cn +121662,One Hundred Mornings,2009-07-11,85.0,http://www.onehundredmornings.com/,,tt1327827,Who can you trust when the world is falling apart?,"Set in a world upended by a complete breakdown of society, two couples hide out in a lakeside cabin hoping to survive this crisis.",0,0,One Hundred Mornings,en +76940,"Hard Revenge, Milly: Bloody Battle",2009-07-11,74.0,,389978,tt1468324,,"The story starts in the devastated rogue city of Yokohama, surrounded by rubble. After Milly killed Jack, the main villain from the first movie, and finally satisfied her thirst for revenge for the deaths of her husband and child, she seems to be on safe ground for the moment. But just as she starts to relax, she is targeted by strange guys. They are here to avenge Jack's death.",0,0,"Hâdo ribenji, Mirî: Buraddi batoru",ja +33272,Lucky Country,2009-07-16,96.0,,,tt1270090,"One day, your luck runs out...","1902....the Australian Federation is a year old. Twelve year-old Tom's father, Nat, has dragged him and his sister, Sarah, to an isolated farm at the edge of the woods. But Nat's dream of living off the land has died and he is losing his grip on sanity. When three ex-soldiers arrive at their cabin one night Tom, like his father, believes they are providence.",0,0,Lucky Country,en +33788,Possession,2009-07-16,86.0,http://www.possessionmovie.com/,,tt0368563,What if the person you loved became someone else?,"A woman's life is thrown into chaos after a freak car accident sends her husband and brother-in-law into comas. Thrills arrive after the brother-in-law wakes up, thinking he's his brother.",0,0,Possession,en +22681,Homecoming,2009-07-17,88.0,,,tt1135500,A girl never forgets her first love...,A jealous woman (Mischa Barton) plots revenge after her former beau (Matt Long) returns to their hometown with a pretty new girlfriend (Jessica Stroup).,1500000,0,Homecoming,en +39057,Pokémon: Arceus and the Jewel of Life,2009-07-18,94.0,http://www.pokemon.com/us/movies/movie-pokemon-arceus-and-the-jewel-of-life-2009/,34055,tt1468843,A Tale Untold. A Legend Unleashed.,"The Struggle for Time and Space Begins Again...! The legendary Arceus. Long ago Arceus granted a fragment of its awesome power as the Jewel of Life to help Michina in the town's hour of need only to be betrayed when it was time for that power to be returned. After so many years Arceus is about to return to reclaim its power - enraged vengeful and seemingly unstoppable. Not even the combined might of Dialga, Palkia and Giratina can stop Arceus from devastating all existence across multiple dimensions. But Ash and his companions joining forces with their new friend Sheena, may have discovered the only way to redeem that ancient betrayal. Their journey will be both dangerous and uncertain: even if Ash and his friends can set an old wrong right again will there be time to return the Jewel of Life before Arceus destroys everything and everyone they've ever known?",0,50673078,アルセウス 超克の時空へ,ja +19794,Labor Pains,2009-07-19,89.0,,,tt1231287,Some stories just keep on growing,"A young woman pretends to be pregnant in order to avoid being fired from her job. When that gets her a bunch of special treatment by everyone involved in her life, she tries to keep up the lie for nine months.",0,0,Labor Pains,en +18955,Coco,2009-07-21,95.0,,,tt1262877,,"Coco is a French comedy released in 2009 and produced by Gad Elmaleh. This is the first embodiment of the actor, adapted from a sketch in the show La Vie Normale. Coco talks about organizing a Bar Mitzvah.",0,0,Coco,en +37590,Plato's Academy,2009-07-22,103.0,,,tt1334313,,A Greek shopkeeper discovers something about his family's past when his mother embraces an Albanian worker.,0,0,Ακαδημία Πλάτωνος,el +29989,Skin,2009-07-24,107.0,,,tt0964586,,Based on the true story of a black girl who was born to two white Afrikaner parents in South Africa during the apartheid era.,0,0,Skin,en +21208,Orphan,2009-07-24,123.0,,,tt1148204,Can you keep a secret?,"A married couple with a rocky past adopt 9-year old, Esther to fill the void created by a recently-stillborn baby. However, Esther is not quite who she seems.",20000000,41596251,Orphan,en +282963,Doctor Who: Planet of the Dead,2009-07-26,59.0,,,tt1337072,,"A meeting in a London bus with jewel thief Lady Christina takes a turn for the worst for the Doctor when the bus takes a detour to a desert-like planet, where the deadly Swarm awaits. (Taken from the imdb page)",0,0,Doctor Who: Planet of the Dead,en +17445,Green Lantern: First Flight,2009-07-28,75.0,https://www.warnerbros.com/green-lantern-first-flight,,tt1384590,Superman was born a hero. Batman became a hero. But only Green Lantern was chosen.,"Test pilot Hal Jordan finds himself recruited as the newest member of the intergalactic police force, The Green Lantern Corps.",3500000,0,Green Lantern: First Flight,en +32338,Every Jack has a Jill,2009-07-29,81.0,http://www.jusquatoi.fr,,tt1094668,,"Jack is encouraged to take the romantic Paris vacation he won, despite just being dumped by his girlfriend. His trip soon devolves into chaos and adventure, when his luggage is swapped for a French businesswoman's belongings who soon takes a liking to his belongings -- especially his shoes -- and sets out to find him.",0,0,Jusqu'à toi,en +22051,Adam,2009-07-29,99.0,http://www.foxsearchlight.com/adam/,,tt1185836,A story about two strangers. One a little stranger than the other...,"Adam, a lonely man with Asperger's Syndrome, develops a relationship with his upstairs neighbor, Beth.",0,2277396,Adam,en +23128,The Cove,2009-07-31,92.0,http://www.thecovemovie.com/,,tt1313104,Shallow Water. Deep Secret.,"The Cove tells the amazing true story of how an elite team of individuals, films makers and free divers embarked on a covert mission to penetrate the hidden cove in Japan, shining light on a dark and deadly secret. The shocking discoveries were only the tip of the iceberg.",0,1162422,The Cove,en +101242,Love Simple,2009-07-31,85.0,,,tt1153698,,"Adam and Seta fall madly in love after meeting in a Brooklyn laundromat. She suffers from Lupus, he's stuck at home caring for his chronically ill father. Both lie through their teeth to avoid having to reveal they are anything but perfect. Eventually, their deceit unravels and they are faced with a choice: walk away or try to save the relationship. Deciding to give it one last chance, Adam and Seta reveal everything about who they really are despite the fact that they may not love one another once they know the truth.",0,0,Love Simple,en +29923,Detour,2009-07-31,77.0,http://www.snarveien-film.no/,,tt1278124,,"Driving back to Norway, Lina and Martin reach a roadblock where a policeman tells them to take a detour deep into the Swedish forest. But soon one creepy incident after another leaves them stranded in the dark woods and everything seems much too bizarre to be accidental.",2200000,0,Snarveien,no +14869,G.I. Joe: The Rise of Cobra,2009-08-04,118.0,http://www.gijoemovie.com/,135468,tt1046173,"When all else fails, they don't.","From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.",175000000,302469017,G.I. Joe: The Rise of Cobra,en +160329,Lightheaded,2009-08-04,5.0,,,tt1455195,,Lightheaded is a journey we take with temperature sensitive candle creatures who sacrifice what they know to become who they are.,0,0,Lightheaded,en +17654,District 9,2009-08-05,112.0,http://www.d-9.com/,,tt1136608,You are not welcome here.,"Aliens land in South Africa and, with their ship totally disabled, have no way home. Years later, after living in a slum and wearing out their welcome the 'Non-Humans' are being moved to a new tent city overseen by Multi-National United (MNU).",30000000,210819611,District 9,en +23367,Bandslam,2009-08-06,111.0,http://bandslam-movie.com/,,tt0976222,Band Together,A high school social outcast and the popular girl bond through a shared love of music.,20000000,5210988,Bandslam,en +43065,"Nightmares in Red, White and Blue",2009-08-06,96.0,http://www.nightmaresinredwhiteandblue.com/,,tt1337117,"An exploration of the appeal of horror films, with interviews of many legendary directors in the genre.","An exploration of the appeal of horror films, with interviews of many legendary directors in the genre.",0,0,"Nightmares in Red, White and Blue",en +20507,Agyaat,2009-08-07,98.0,,,tt1415252,,A film unit goes for a shoot deep into a forestThey settle at a place with bare minimal facilities run by a strange and quirky man called Setu.,0,0,Agyaat,hi +38415,Bran Nue Dae,2009-08-09,82.0,,,tt1148165,Bran Nue Dae,"In the Summer of 1965 a young man is filled with the life of the idyllic old pearling port Broome - fishing, hanging out with his mates and his girl. However his mother returns him to the religious mission for further schooling. After being punished for an act of youthful rebellion, he runs away from the mission on a journey that ultimately leads him back home.",7,7,Bran Nue Dae,en +84016,The Portuguese Nun,2009-08-09,127.0,,,tt1483735,,A young French actress in Lisbon to shoot a movie is intrigued by a nun she sees kneeling in the chapel where she is filming.,0,0,A Religiosa Portuguesa,en +334461,Comedy Central Roast of Joan Rivers,2009-08-09,0.0,,,tt1413788,,"It's the ""Queen of Mean"", Joan Rivers turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast.",0,0,Comedy Central Roast of Joan Rivers,en +83587,Zombie Girl: The Movie,2009-08-09,89.0,http://www.zombiegirlthemovie.com/,,tt1278480,,"Emily Hagins is making a zombie movie. It's feature-length, it's bloody, and the zombies don't run. Just like it should be. But there's just one difference between her film and every other zombie movie you've ever seen. Emily is twelve.",0,0,Zombie Girl: The Movie,en +28739,Cabin Fever 2: Spring Fever,2009-08-11,87.0,,201576,tt0961722,This time it's spreading.,A high school prom faces a deadly threat: a flesh-eating virus that spreads via a popular brand of bottled water.,10000000,0,Cabin Fever 2: Spring Fever,en +25855,Raging Phoenix,2009-08-12,112.0,http://www.jijaragingphoenix.com/,,tt1551621,,"A violent gang is abducting and killing women around Thailand. Sanim and his friends, having had loved ones abducted, have joined together to break the gang of kidnappers. In a botched kidnap attempt, Deu is saved by Sanim's crew. After learning their unique martial arts style, Deu helps lure the gang into an epic battle to save the women across Thailand.",0,0,จีจ้า ดื้อ สวย ดุ,th +49853,Same Same But Different,2009-08-13,107.0,http://www.samesame-themovie.com/,,tt1368443,Are you ready for the love of your life in your early twenties?,"Based on the true story of Benjamin Prufer and Sreykeo Solvan. The unexpected and uncertain love story of Sreykeo, a 21 year old bar girl in Phnom Penh and Ben, a young German student traveling to Cambodia on a post graduation summer trip. When Ben returns home to Germany he discovers that Sreyko is sick and he takes on the responsibility to save her. On the way he discovers a world where not everyone is dealt the same cards and where motivations are not always pure.",0,0,Same Same But Different,en +25376,The Secret in Their Eyes,2009-08-13,129.0,http://www.elsecretodesusojos.com,,tt1305806,,A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.,2000000,33965843,El secreto de sus ojos,es +24986,Sophie's Revenge,2009-08-13,107.0,,,tt1303833,,"Dumped by her fiance just two months before their wedding, comic strip writer Sophie hatches an elaborate plan to get her Jeff back and punish the movie star, Joanna, who seduced him away. She finds herself a partner, Gordon, an ex-lover of Joanna's. The two start on a comic adventure full of laughs and tears, aided by Sophie's two best friends, Lucy and Lily. At the eve of her success, Sophie suddenly faced of having to chose between a repentant Jeff and Gordon who has fallen for her.",0,0,Fei chang wan mei,zh +24420,The Time Traveler's Wife,2009-08-14,107.0,,,tt0452694,,"Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.",39000000,101229792,The Time Traveler's Wife,en +27457,Peacetime,2009-08-14,80.0,http://www.temposdepaz.com.br/,,tt1223932,,"Rio de Janeiro, April 18, 1945. Brazil's foreign policy aligns closely with that of the United States and opens a brief period of democratic rule after the end of World War 2. For years, hundreds of people were arrested and tortured by the Vargas regime. But with the external pressure, several political prisoners gain freedom.",0,0,Tempos de Paz,pt +293625,The Ritual,2009-08-15,114.0,,,tt0460943,,"A serial killer begins the process of grooming a protégé, until outside influences threaten to destroy their sadistic relationship.",0,0,The Ritual,en +39123,20th Century Boys - Chapter 3: Our Flag,2009-08-19,156.0,http://www.20thboysfilms.com/,17149,tt1181919,redemption,"The final showdown, and the final reveal: who is Friend? How can he be stopped?",0,0,20世紀少年 ぼくらの旗,ja +25132,Shorts,2009-08-21,89.0,,,tt1100119,Not So TALL Tales From The Director Of 'Spy Kids',"A young boy's discovery of a colorful, wish-granting rock causes chaos in the suburban town of Black Falls when jealous kids and scheming adults alike set out to get their hands on it.",40000000,28972508,Shorts,en +22259,Bionicle: The Legend Reborn,2009-08-24,80.0,,59007,tt1473345,,"Once the ruler of an entire universe, the Great Spirit Mata Nui finds himself cast out of his own body, his spirit trapped inside the fabled Mask of Life, hurtling through space. After landing on the far-away planet of Bara Magna, the mask creates a new body for Mata Nui, who unwillingly gets caught up in the furious battles of the nearly barren and dangerous planet.",0,0,Bionicle: The Legend Reborn,en +27317,Patton Oswalt: My Weakness Is Strong,2009-08-25,63.0,,,tt1503646,,"The critically-acclaimed comedian, actor, writer, and voice of Remy the Rat (the Oscar®-winning Ratatouille) takes time out from his many film and television outings to return to the comedy stage for his fourth stand-up special.",0,0,Patton Oswalt: My Weakness Is Strong,en +19912,The Final Destination,2009-08-26,82.0,http://www.TheFinalDestinationMovie.com/,8864,tt1144884,Rest In Pieces,"After a young man's premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.",40000000,186167139,The Final Destination,en +38445,The Strength of Water,2009-08-27,86.0,,,tt1059233,,"When a mysterious stranger arrives in their isolated coastal town, 10-year-old twins, Kimi and Melody are forced apart. Kimi must find the strength to let go of what he loves the most.",0,0,The Strength of Water,en +25695,Treeless Mountain,2009-08-27,89.0,,,tt1143155,,"In Seoul, Korea, two sisters must look after each other when their mother leaves them to search for their estranged father.",0,0,나무없는 산,ko +24150,Halloween II,2009-08-28,105.0,http://www.halloween2-movie.com/,126209,tt1311067,Family Is Forever,"Laurie Strode struggles to come to terms with her brother Micheal's deadly return to Haddonfield, Illinois; meanwhile, Michael prepares for another reunion with his sister.",15000000,39421467,Halloween II,en +26736,Wizards of Waverly Place: The Movie,2009-08-28,94.0,,413935,tt1369845,Family vacations can be tricky.,Powerful magic cast by Alex spells trouble for the Russo's. The kids must go on an adventure to save their family and their existence.,0,0,Wizards of Waverly Place: The Movie,en +102527,44500 Max,2009-09-01,0.0,,,tt1539107,,,0,0,44500 Max,fi +26465,Big Pun: The Legacy,2009-09-01,95.0,,,tt1144866,Discover the true story behind one of the most influential artists of our generation – Big Pun.,"His rhymes caught the attention of millions. His flow is un-matched by any. His story is captivating and triumphant. ""Big Pun: The Legacy"" chronicles the life of the Grammy Nominated artist ""Big Pun"" aka Christopher Rios, a Puerto Rican from the Bronx who made history by becoming the first Latino rapper to sell over a million records.",0,0,Big Pun: The Legacy,en +31991,Drifter: Henry Lee Lucas,2009-09-01,90.0,,,tt1336621,,The true story of serial killer Henry Lee Lucas.,0,0,Drifter: Henry Lee Lucas,en +51290,Artois the Goat,2009-09-01,110.0,http://www.imdb.com/title/tt1292643/,,tt1292643,When the goat speaks...listen.,Lab technician Virgil Gurdies struggles to choose between his truelove Angie and his newfound quest to create the greatest goat cheese the world has ever known.,50000,0,Artois the Goat,en +85959,Cafe Noir,2009-09-01,197.0,,,tt1500689,,The story begins with a man left by his girlfriend on Christmas Eve and unfolds across the city of Seoul.,0,0,카페 느와르,en +41496,A Dog Year,2009-09-03,80.0,,,tt0808232,,"Jon Katz is close to burnout. He's a writer with writer's block; his wife has left for her sister's because he's emotionally distant; he rarely answers his phone. A kennel sends him a border collie that's undisciplined because of abuse. Despite a series of mishaps, Jon decides to keep trying with the dog, and he rents a dilapidated farm house to give the dog room to run. A local handyman refers Jon to a woman who might be able to help him train the dog. Reluctantly, Jon gives her a try. Is the dog the problem, or the owner?",0,0,A Dog Year,en +36811,The Last Station,2009-09-04,112.0,http://www.sonyclassics.com/thelaststation/,,tt0824758,Intoxicating. Infuriating. Impossible. Love.,"A historical drama that illustrates Russian author Leo Tolstoy's struggle to balance fame and wealth with his commitment to a life devoid of material things. The Countess Sofya, wife and muse to Leo Tolstoy, uses every trick of seduction on her husband's loyal disciple, whom she believes was the person responsible for Tolstoy signing a new will that leaves his work and property to the Russian people.",0,0,The Last Station,en +30174,1981,2009-09-04,102.0,,,tt1286159,,Filmmaker Ricardo Trogi recalls the events surrounding his family moving to a new neighborhood when he was 11-years-old.,0,0,1981,fr +40864,Last Cowboy Standing,2009-09-04,123.0,http://www.skavabolenpojat.fi/,,tt1208728,,In 1982 the guilt-ridden 18-year-old Rupert tries to remember and understand the events of the past amidst the chaos of the present,2270000,0,Skavabölen pojat,en +41110,I Am Love,2009-09-05,120.0,http://www.iamlovemovie.com/,,tt1226236,,"Emma left Russia to live with her husband in Italy. Now a member of a powerful industrial family, she is the respected mother of three, but feels unfulfilled. One day, Antonio, a talented chef and her son's friend, makes her senses kindle.",0,0,Io sono l'amore,it +52034,Tetsuo: The Bullet Man,2009-09-05,71.0,http://www.tetsuo-project.jp/,182923,tt1176416,,"An American named Anthony is living and working in Tokyo and married to a Japanese woman. When their son is killed by the same driver who creates the Tetsuos in previous films, he makes the transformation into Tetsuo.",0,0,Tetsuo: The Bullet Man,en +44027,"My Son, My Son, What Have Ye Done",2009-09-06,91.0,http://www.myson-myson.com/,,tt1233219,The Mystery Isn't Who. But Why.,"Brad (Michael Shannon) has committed murder and barricaded himself inside his house. With the help of his friends and neighbours, the cops piece together the strange tale of how this nice young man arrived at such a dark place; Based on a true story, this gripping and unnerving blend of deadpan comedy, melodrama and raw tragedy is fleshed out by an expert cast, including Willem Dafoe and Chloe Sevigny",0,0,"My Son, My Son, What Have Ye Done",en +36691,Solitary Man,2009-09-07,90.0,http://www.solitarymanmovie.com/,,tt1294213,Ben loves his family almost as much as he loves himself,A car magnate watches his personal and professional life hit the skids because of his business and romantic indiscretions.,15000000,5024782,Solitary Man,en +47426,South of the Border,2009-09-07,78.0,http://southoftheborderdoc.com/,,tt1337137,,A road trip across five countries to explore the social and political movements as well as the mainstream media's misperception of South America while interviewing seven of its elected presidents.,0,0,South of the Border,en +24392,The Dark Lurking,2010-01-01,96.0,,,tt1391579,,The eight remaining survivors of a secret research facility barricade themselves away from a horde of ancient and deadly creatures,1000000,0,The Dark Lurking,en +19350,Knights of Bloodsteel,2009-09-07,177.0,,,tt1264363,,"The adventure is set in the sorcerous land of Mirabilis, where a populace of elves, goblins, dwarves and humans hanker for the mystical element Bloodsteel; an ore with magical ability-giving properties. When a ruthless band of soldiers led by the wicked Dragon-Eye go seeking the powerful ore, a sorcerer elf Tesselink is given the task of finding its source - the legendary Crucible.",0,0,Knights of Bloodsteel,en +37098,The Last Truck: Closing of a GM Plant,2009-09-07,40.0,http://www.hbo.com/documentaries/the-last-truck-closing-of-a-gm-plant/index.html,,tt1487120,Families. Friends. Lives On The Line.,"The inside story of the last days of a General Motors plant in Moraine, Ohio, as lived by the people who worked the line.",0,0,The Last Truck: Closing of a GM Plant,en +66178,Plastic Bag,2009-09-07,18.0,,,tt1504691,,"A plastic bag, thrown out in the trash, attempts to find his way back to his owner and along the way discovers the world.",0,0,Plastic Bag,en +42309,Fear Island,2009-09-08,95.0,,,tt1109583,,Five students on spring break meet at a secluded island cabin for a weekend getaway. Stranded on the island they become the prey of a mysterious killer who seems bent on revenge for something the friends have done.,0,0,Fear Island,en +19898,Pandorum,2009-09-08,108.0,http://www.pandorummovie.com/,,tt1188729,Don't fear the end of the world. Fear what happens next.,"Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone – and the reality of their situation is more horrifying than they could have imagined.",33000000,20645327,Pandorum,en +44680,The Wild Hunt,2009-09-09,96.0,http://www.wildhuntfilm.com/,,tt1493886,It's no longer a game.,A medieval reenactment game turns into a Shakespearean tragedy when a non-player crashes the event to win back his girlfriend.,0,0,The Wild Hunt,fr +26688,Sorority Row,2009-09-09,101.0,,,tt1232783,The Sisters of Theta Pi Are Dying To Keep a Secret.,"When five sorority girls inadvertently cause the murder of one of their sisters in a prank gone wrong, they agree to keep the matter to themselves and never speak of it again, so they can get on with their lives. This proves easier said than done, when after graduation a mysterious killer goes after the five of them and anyone who knows their secret.",12500000,27206120,Sorority Row,en +28938,Men in the City,2009-09-09,107.0,http://wwws.warnerbros.de/maennerherzen/,220872,tt1255955,,The comedy about men and their struggles in life and love.,0,0,Männerherzen,de +34496,Storage,2009-09-10,95.0,http://www.storagethemovie.com/,,tt1223893,"The Deeper You Go, The Darker it Gets.","Working at an underground city storage facility, a young man discovers evidence of a murder and vows to bring the killer to justice.",0,0,Storage,en +99242,Take Me Far Away,2009-09-11,96.0,,,tt1976614,Only one love. Only one take. And then what?,"The lives of and relationship between two teens, a high school-aged boy and his younger niece.",0,0,帶我去遠方,zh +33786,Starring Maja,2009-09-11,91.0,,,tt1216501,,An overweight teenager girl struggles to be socially accepted.,0,0,Prinsessa,en +31011,Mr. Nobody,2009-09-11,156.0,,,tt0485947,"Nothing is real, everything is possible.","Nemo Nobody leads an ordinary existence with his wife and 3 children; one day, he wakes up as a mortal centenarian in the year 2092.",47000000,3547209,Mr. Nobody,en +63762,Broken Hill,2009-09-11,102.0,,,tt1212909,,"Tommy was born and raised on a rocky, drought-ridden sheep station in the middle of the Australian Outback.",0,54058,Broken Hill,tr +42430,Symbol,2009-09-12,93.0,http://www.symbol-movie.jp,,tt1410261,,"A Japanese man wakes up alone in a brightly illuminated white room with no windows or doors. When he presses a mysteriously phallic protuberance that appears on one wall, a pink toothbrush materializes from nowhere, clattering to the floor and setting in motion a genuinely bizarre chain of events. Soon the imprisoned man is engaged in absurd and hilarious attempts to escape the gleaming room, releasing random objects from the walls, creating a life sized mouse trap game in which a rope, a toilet plunger and an earthenware jug full of sushi might just be the keys to his escape. Meanwhile, in a dusty town, a green masked Mexican wrestler known as Escargot Man prepares for an important match.",0,0,しんぼる,ja +46420,The Loved Ones,2009-09-13,84.0,http://www.thelovedonesmovie.com/,,tt1316536,Don't break her heart,"Lola Stone asked Brent Mitchell to the prom, but Brent said no, and now he's screwed. What happens when Lola doesn't get what she wants? She enlists Daddy's help to throw a prom of her own, where she is queen and Brent is king -- whether he likes it or not. THE LOVED ONES is what happens when puppy love goes horribly, violently wrong. Brent should have said yes...",0,0,The Loved Ones,en +41479,The Joneses,2009-09-13,96.0,http://www.thejonesesmovie.com/,,tt1285309,"They're not just living the American dream, they're selling it.","A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.",10000000,7022728,The Joneses,en +60063,The Topp Twins: Untouchable Girls,2009-09-13,84.0,http://www.topptwins.co.nz/,,tt1338687,"A profile of the world's only comedic, singing, dancing, lesbian twin sisters.","Fun, disarming and musically provocative, the Topp Twins are New Zealand's finest lesbian country and western singers and the country's greatest export since rack of lamb and the Lord of the Rings movie trilogy.",0,0,The Topp Twins: Untouchable Girls,en +38448,Ondine,2009-09-14,111.0,http://www.ondinefilm.com,,tt1235796,The truth is not what you know. It's what you believe.,An Irish fisherman discovers a woman in his fishing net believing her to be a mermaid.,12000000,1644755,Ondine,en +71866,Tanner Hall,2009-09-14,96.0,http://www.tannerhallthefilm.com/,,tt1151410,,"Tanner Hall is a vivid peek into the private world of an all-girls boarding school. In a cozy, but run down New England, the knot of adolescent complexity is unraveled through the coming of age stories of four teen-age girls.",0,0,Tanner Hall,en +23512,The Boys Are Back,2009-09-15,104.0,http://www.boysarebackmovie.com/,,tt0926380,,"When the wife of sports-writer Joe Warr dies of cancer, he takes on the responsibility of raising their 6-year-old son, and his teenage son from a previous marriage. As Joe rejects the counsel of his mother-in-law and other parents, he develops his own philosophies on parenting.",0,0,The Boys Are Back,en +23566,Barbie and the Three Musketeers,2009-09-15,81.0,http://barbie.everythinggirl.com/activities/fantasy/princess/musketeers/,,tt1484922,,"Join Barbie™ as Corinne™, a young country girl headed to Paris to pursue her big dream – to become a female musketeer! Never could she imagine she would meet three other girls who secretly share the same dream! Using their special talents, the girls work together as a team to foil a plot and save the prince. It's all for one and one for all!",0,0,Barbie and the Three Musketeers,en +142084,Hiroshima,2009-09-15,80.0,,,tt1504402,,"A young man in Uruguay has trouble expressing himself verbally. As the lead singer in a band, he interacts with the world through his music.",0,0,Hiroshima,es +25626,The Founding of a Republic,2009-09-17,138.0,,,tt1438461,,The Founding of a Republic is a Chinese historical film commissioned by China's film regulator and made by the state-owned China Film Group (CFG) to mark the 60th anniversary of the People's Republic of China. The film retells the tale of the Communist ascendancy and triumph.,0,0,建国大业,zh +24424,Ajami,2009-09-17,120.0,http://www.kino.com/ajami/,,tt1077262,,"Ajami is an area of Tel Aviv in Israel where Arabs, Palestinians, Jews and Christians live together in a tense atmosphere. Omar, an Israeli Arab, struggles to save his family from a gang of extortionists. He also courts a beautiful Christian girl: Hadir. Malek, an illegal Palestinian worker, tries to collect enough money to pay for his mother's operation. Dando, an Israeli cop, does his utmost to find his missing brother who may have been killed by Palestinians.",0,0,Ajami,he +37438,"Road, Movie",2009-09-18,95.0,http://www.roadmoviethefilm.com/,,tt1190894,,A young man's journey across the mythic Indian landscape becomes a life changing odyssey.,0,0,"Road, Movie",hi +25643,Love Happens,2009-09-18,109.0,http://www.lovehappensmovie.com,,tt0899106,Sometimes when you least expect it...,"Dr. Burke Ryan is a successful self-help author and motivational speaker with a secret. While he helps thousands of people cope with tragedy and personal loss, he secretly is unable to overcome the death of his late wife. It's not until Burke meets a fiercely independent florist named Eloise that he is forced to face his past and overcome his demons.",18000000,36133014,Love Happens,en +51971,Hideaway (Le refuge),2009-09-19,88.0,,,tt1504429,,"Mousse and Louis are young, beautiful, rich and in love. But drugs have invaded their lives. One day, they overdose and Louis dies. Mousse survives, but soon learns she's pregnant. Feeling lost, Mousse runs away to a house far from Paris. Several months later, Louis' brother joins her in her refuge.",0,0,Le refuge,fr +24458,The Age of Stupid,2009-09-21,92.0,http://www.ageofstupid.net,,tt1300563,,"The Age of Stupid is the new movie from Director Franny Armstrong (McLibel) and producer John Battsek (One Day In September). Pete Postlethwaite stars as a man living alone in the devastated future world of 2055, looking at old footage from 2008 and asking: why didn’t we stop climate change when we had the chance?",0,0,The Age of Stupid,en +64450,Kinatay,2009-09-23,105.0,,,tt1423592,,"A young man tries to make some money so he can marry his girlfriend. He takes a job for $2,000 and then soon realizes that this job involves killing a woman.",0,0,Kinatay,tl +34092,Lover of Loser,2009-09-23,102.0,http://www.loverofloserdefilm.nl/,,tt1411277,,,0,0,Lover of Loser,nl +41441,The Sword with No Name,2009-09-24,124.0,,,tt1465518,,A Joseon dynasty bounty hunter becomes the body guard of the queen he secretly loves.,0,0,The Sword with No Name,ko +50722,Vision – From the Life of Hildegard von Bingen,2009-09-24,110.0,,,tt0995850,,"Hildegard von Bingen was truly a woman ahead of her time. A visionary in every sense of the word, this famed 12th-century Benedictine nun was a Christian mystic, composer, philosopher, playwright, poet, naturalist, scientist, physician, herbalist and ecological activist.",0,0,Vision - Aus dem Leben der Hildegard von Bingen,de +32559,Mall Girls,2009-09-25,77.0,,,tt1499228,,"Shopping malls - today's place of creating desires. Best jewelry, clothes, shoes. Unaffordable by young girls, but they ""work"" to get themselves sponsors for new items.",0,0,Galerianki,pl +27561,Trailer Park Boys: Countdown to Liquor Day,2009-09-25,101.0,http://www.trailerparkboysmovie.com/,101385,tt1337032,The only difference between you and them is a coupla drinks.,"Ricky, Julian and Bubbles are about to get out of jail, and this time, Julian vows to go straight, even open a legit business. Soon the Boys will all be rich. At least that's what they've told the parole board. But when they arrive back at the park, they find it's not the same old Sunnyvale - and it's not the same old Jim Lahey, Trailer Park Supervisor.",3500000,0,Trailer Park Boys: Countdown to Liquor Day,en +49492,Jogwa - The Awakening,2009-09-25,92.0,,,tt1653015,The Awakening,"Jogwa actually means alms given to a person, usually known as a jogta or a jogtini. They are forced by the society to give up everything and serve God. A jogta has to give up the fact of being a man and suppress all his desires. This tradition was followed in the rural areas in the ancient times and like any tradition was flexible enough for those in power to misuse it. It is known to be still followed in some villages in Karnataka.Jogwa is a love story between jogta played by Uupendra Limaye and jogtini played by Mukta Barve.",0,0,Jogwa - The Awakening,en +47535,U Be Dead,2009-09-25,120.0,,,tt1243617,,"A doctor and his girlfriend are stalked by a woman who claims to be in love with him. Meanwhile, the man falls in love with a younger woman. Based on a true story",0,0,U Be Dead,en +41559,The Job,2009-09-26,99.0,,,tt1230380,,"A guy looking to find employment and marry the love of his life, gets in over his head when a fast-talking temp agent lands him a job.",0,0,The Job,en +25053,Air Doll,2009-09-26,125.0,http://www.kuuki-ningyo.com,,tt1371630,,"An ""air doll"" suddenly come to life one day. Without her owner knowing, she goes for a walk around town and falls in love with Junichi. She starts to date Junichi and gets a job at the same store where he works. Everything seems to be going perfect for her until something unexpected happens.",0,0,空気人形,ja +51249,Alabama Moon,2009-09-27,99.0,http://www.alabamamoonthemovie.net/en/home.php,,tt1300155,An adventure for the boy in all of us.,"After the unexpected death of his survivalist father, an eleven year old boy raised in the Alabama wilderness must learn how to make a home in the modern world.",0,0,Alabama Moon,en +22855,Superman/Batman: Public Enemies,2009-09-29,67.0,http://www.warnervideo.com/supermanbatmandvd/,290933,tt1398941,No one is above the law.,"United States President Lex Luthor uses the oncoming trajectory of a Kryptonite meteor to frame Superman and declare a $1 billion bounty on the heads of the Man of Steel and his ‘partner in crime’, Batman. Heroes and villains alike launch a relentless pursuit of Superman and Batman, who must unite—and recruit help—to try and stave off the action-packed onslaught, stop the meteor Luthors plot.",0,0,Superman/Batman: Public Enemies,en +76097,Gangs,2009-10-01,90.0,,,tt1294712,,"This is the story of 17-year-old Flo and his gang, the Rox. A story of great romance and hard choices. When his brother, the leader of the Rox, gets into trouble, Flo has to decide between the love of his life or his flesh and blood. It's a matter of life and death.",0,0,Gangs,de +28510,Universal Soldier: Regeneration,2009-10-01,97.0,,10713,tt1288403,Reanimated. Rearmed. The ultimate rematch,"When terrorists threaten nuclear catastrophe, the world's only hope is to reactivate decommissioned Universal Soldier Luc Deveraux. Rearmed and reprogrammed, Deveraux must take on his nemesis from the original Universal Soldier and a next-generation ""UniSol"".",14000000,875386,Universal Soldier: Regeneration,en +45675,Calvin Marshall,2009-10-01,93.0,http://www.calvinmarshall.com/,,tt0496673,A hit comedy about losing,"A college student is determined to become a Major League Baseball star, but finds his true calling instead.",0,0,Calvin Marshall,en +448538,Rocaterrania,2009-10-01,74.0,http://www.brettingram.org/film/RocOverview.php,,tt1488060,,"A journey into the secret world of 76-year-old Renaldo Kuhler, a scientific illustrator who invented an imaginary country to survive his disaffected youth",0,0,Rocaterrania,en +37206,A Shine of Rainbows,2009-10-01,101.0,,,tt1014774,An abandoned child brings the colors of love into their lives.,"An orphaned boy named Tomás is adopted by Maire O’Donnell to live on a whimsical Irish isle filled with new friends, secret caves and a lost baby pup seal stranded on the coast. But when Maire's reluctant husband Alec refuses to accept Tomás as his own son, the boy drifts down a fateful path of adventure and self-discovery, illuminating how rainbows can shine around - and within - us all.",6000000,0,A Shine of Rainbows,en +62967,The Lady and the Reaper,2009-10-01,8.0,,,tt1523317,,"A sweet old lady is living alone in her farm, waiting for the arrival of death to meet her beloved husband again. One night, while sleeping, her life fades out and she is invited to cross death's door. Bue when she is about to do so, the old lady wakes up inside a hospital's ward: and arrogant doctor has taken her back to life and he will fight hard against death to recover the old lady's life at any cost.",700000,0,The Lady and the Reaper,en +12573,A Serious Man,2009-10-02,105.0,,,tt1019452,...seriously!,"A Serious Man is the story of an ordinary man's search for clarity in a universe where Jefferson Airplane is on the radio and F-Troop is on TV. It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.",7000000,31430334,A Serious Man,en +33340,The Angel,2009-10-02,97.0,http://www.theangelfilm.com/,,tt1208664,,A drug addict becomes a mother and has to deal with responsibility and self-respect.,0,0,Engelen,en +261207,A Night at the Movies: The Suspenseful World of Thrillers,2009-10-02,58.0,,,tt1534380,,"A look at thrillers from all sides, including different types of thrillers and the stylistic tools filmmakers use to give their audiences a shot of adrenaline.",0,0,A Night at the Movies: The Suspenseful World of Thrillers,en +455368,David Lean and His Dedicated Maniacs,2009-10-03,29.0,,,tt1523274,,"David Lean had great faith in his regular film crew, once saying ""Good films can be made only by a crew of dedicated maniacs"". This is a profile of four of those key men.",0,0,David Lean and His Dedicated Maniacs,en +23382,Dark Country,2009-10-05,88.0,,,tt0469318,,A couple en route from Las Vegas are forced to deal with a body out in the desert making their honeymoon one hellish ride.,0,0,Dark Country,en +38048,The Wild Stallion,2009-10-06,0.0,,,tt0492890,,"A story about two girls, CJ and Hanna. CJ lives on a ranch, Hanna comes to visit and decides to photograph wild horses for a school project",0,0,The Wild Stallion,en +63217,At Home by Myself... with You,2009-10-06,90.0,,,tt1347509,Girl meets boy. Girl falls in love with boy. Girl can't leave her apartment.,A multi phobia-plagued single woman who hasn't left her apartment in six years finds her carefully organized existence disrupted by her hot new 'on-the-go' neighbor.,0,0,At Home by Myself... with You,en +51800,The Dolphin: Story of a Dreamer,2009-10-08,86.0,http://www.thedolphin-movie.com/,,tt1206541,,"The amazing story of Daniel, a dolphin who abandons the safety of his pod to explore the ocean and discover the true purpose of his life.",3000000,0,The Dolphin Story of a Dreamer,es +42571,The Double Hour,2009-10-09,95.0,,,tt1379222,A romance. A robbery. A mystery.,A chambermaid and a former cop meet at a speed dating event and a romance develops. But during a romantic getaway things suddenly take a turn for the worse when her mysterious past is revealed.,3906840,4300000,La doppia ora,it +36325,Bananas!*,2009-10-09,87.0,http://www.bananasthemovie.com/,142182,tt1452291,,"Juan “Accidentes” Dominguez is on his biggest case ever. On behalf of twelve Nicaraguan banana workers he is tackling Dole Food in a ground-breaking legal battle for their use of a banned pesticide that was known by the company to cause sterility. Can he beat the giant, or will the corporation get away with it?",0,0,Bananas!*,en +44223,Happy Ever Afters,2009-10-09,104.0,,,tt1324053,A screwball Irish wedding comedy,Two weddings collide when both receptions are held at one hotel.,0,0,Happy Ever Afters,en +67367,The Thorn in the Heart,2009-10-10,86.0,,,tt1424062,,"Michel Gondry chronicles the life of Gondry family matriarch, his aunt Suzette Gondry, and her relationship with her son, Jean-Yves.",0,0,L'épine dans le coeur,fr +30289,Megafault,2009-10-10,90.0,,,tt1436432,,A crack in the world has started... we have 24 hours to stop it.,1200000,0,Megafault,en +43213,Chicago Overcoat,2009-10-10,95.0,,,tt1085382,The glory days are back,The fates of an aging hitman and a washed up detective become entwined when one last job leads to one last chance to settle an old score.,3200000,0,Chicago Overcoat,en +38850,Stolen,2009-10-10,97.0,http://www.ifcfilms.com/films/stolen,,tt1139282,Secrets from the past don't stay buried.,"A detective becomes obsessed with solving a child's 50-year-old murder, uncovering striking similarities between the case and his son's disappearance.",2000000,7306,Stolen Lives,en +47194,Blood Night: The Legend of Mary Hatchet,2009-10-10,83.0,http://bloodnightmovie.com/,,tt1161404,Will you make it through the night?,"Local teens have long commemorated the death of 'Mary Hatchet' -- a girl who took an ax and killed her family in the 1970s -- with the aptly named Blood Night. But things never got truly bloody until Mary's ghost (Samantha Facchi) decided to make an appearance. Dead bodies are piling up, and Mary seems to be calling the shots. But there are secrets about her past that have yet to be uncovered. Nate Dushku co-stars in this slasher flick.",3000000,0,Blood Night: The Legend of Mary Hatchet,en +39800,Life During Wartime,2009-10-10,97.0,http://www.ifcfilms.com/films/life-during-wartime-2,,tt0808526,,"Friends, family, and lovers struggle to find love, forgiveness, and meaning in an almost war-torn world riddled with comedy and pathos. Follows Solondz's film Happiness (1998).",4500000,744816,Life During Wartime,en +34013,Mademoiselle Chambon,2009-10-14,101.0,,,tt1285246,,"Véronique Chambon (Sandrine Kiberlain), a single schoolteacher and Jean (Vincent Lindon), discover an unexpected bond that causes them to question the direction of their lives. They move in different social circles but their relationship develops and their lives begin gradually to unravel.",0,0,Mademoiselle Chambon,fr +211158,Ein Teil von mir,2009-10-14,,,,tt1251370,,,0,0,Ein Teil von mir,de +177697,Hangtime,2009-10-14,0.0,,,tt1288502,,,0,0,Hangtime - Kein leichtes Spiel,de +87851,New Muslim Cool,2009-10-14,83.0,,,tt1399584,,No overview found,0,0,New Muslim Cool,en +28417,Les Barons,2009-11-04,111.0,http://www.lesbarons-lefilm.com/,,tt1547638,,"Les Barons ont une devise ""glander plus pour vivre plus"". Chaque être humain naît avec un crédit de pas. Chaque pas effectué te rapproche de la mort. Nous, les Barons, on le sait dès le départ.",0,0,Les Barons,fr +72733,Bangkok Traffic Love Story,2009-10-15,126.0,,,tt1621642,,"Mei Li is a 30 year old woman who has one bad habit of getting drunk at her friend’s weddings. All because weddings seem to remind her of her single, manless, lonely life. One night, Mei Li wakes up in the middle of the night and went up to the roof to drink beer alone, which became a big scandal that led her to meet Lung, a maintainance engineer of the BTS electric train system. Meeting this strange innocent man without being drunk stirs something within Mei Li for the first time in all of her 30 years.",0,0,รถไฟฟ้า มาหานะเธอ,th +22803,Law Abiding Citizen,2009-10-15,109.0,,,tt1197624,The System Must Pay.,A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.,53000000,126690726,Law Abiding Citizen,en +112072,The magnetic man,2009-10-16,79.0,http://www.magneettimies.com,,tt1533796,,A look at the life and music of Pekka Streng who died at the age of 26 in 1975.,262000,0,Magneettimies,fi +16523,Where the Wild Things Are,2009-10-16,101.0,http://wherethewildthingsare.warnerbros.com/,,tt0386117,There's one in all of us.,"Max imagines running away from his mom and sailing to a far-off land where large talking beasts -- Ira, Carol, Douglas, the Bull, Judith and Alexander -- crown him as their king, play rumpus, build forts and discover secret hideaways.",100000000,100086793,Where the Wild Things Are,en +39072,Happy Tears,2009-10-16,96.0,http://www.happytears.net/,,tt1219828,There's an art to going home without going crazy.,Two sisters return home to care for their aging father.,0,0,Happy Tears,en +26861,The Ministers,2009-10-16,90.0,http://www.theministersmovie.com/,,tt0880570,,"A NYPD detective attempts to avenge the death of her father, but unwittingly becomes involved with one of his killers.",0,0,The Ministers,en +33407,Twigson,2009-10-16,75.0,,133676,tt1245775,,"The film Twigson is all about a tough, naughty, quick-witted and brave boy. Lillebror has just moved, and has not made any new friends yet, when his imaginary friend – the wooden twig Knerten – appears in the middle of a pile of firewood...",0,0,Knerten,no +45167,Pumzi,2009-10-20,21.0,http://www.pumzithefilm.com,,tt1508328,The outside is dead.,"A sci-fi film about futuristic Africa, 35 years after World War III, 'The Water War'.",35000,0,Pumzi,en +35026,Lucky Luke,2009-10-21,103.0,,,tt1235536,,"Fearless gunslinger, Lucky Luke, is ordered by the President to bring peace to Daisy Town.",27000000,0,Lucky Luke,fr +8915,Amelia,2009-10-22,111.0,http://www.foxsearchlight.com/amelia/,,tt1129445,,"A look at the life of legendary American pilot Amelia Earhart, who disappeared while flying over the Pacific Ocean in 1937 in an attempt to make a flight around the world.",40000000,19258519,Amelia,en +53128,With Heart & Soul,2009-10-22,124.0,,,tt1334328,,"Set during the Greek Civil War, ""With Heart & Soul"" centers on two brothers who are fighting on opposite sides.",0,0,Ψυχή Βαθιά,el +9503,Pope Joan,2009-10-22,149.0,http://www.die-paepstin.de/,,tt0458455,,A 9th century woman of English extraction born in the German city of Ingelheim disguises herself as a man and rises through the Vatican ranks.,0,27412220,Die Päpstin,en +26223,The Canyon,2009-10-23,102.0,,,tt0960741,Surviving is just the beginning,A survival story about a honeymooning couple who get lost in the wide expanse of the Grand Canyon.,0,0,The Canyon,en +19823,Dolan's Cadillac,2009-10-23,81.0,,,tt0963965,An eight-cylinder fuel-injected coffin.,A young man attempts to seek to avenge his wife's death after she is murdered by a Las Vegas mobster.,10000000,0,Dolan's Cadillac,en +24963,Dead Air,2009-10-27,90.0,http://www.deadair-movie.com/,,tt0993841,All America's worst fears. Realized. At once.,"Logan Burnhardt is the ego-king of the airwaves, but his unflappable persona is put to the test when a terrorist bio-attack unleashes a plague of flesh-ripping maniacs on Los Angeles.",0,0,Dead Air,en +105077,Battlestar Galactica: The Plan,2009-10-27,112.0,,91697,tt1286130,They have a plan!,"When the initial Cylon attack against the Twelve Colonies fails to achieve complete extermination of human life as planned, twin Number Ones (Cavils) embedded on Galactica and Caprica must improvise to destroy the human survivors.",0,0,Battlestar Galactica: The Plan,en +13576,This Is It,2009-10-28,111.0,http://www.thisisit-movie.com,,tt1477715,Like You've Never Seen Him Before,"A compilation of interviews, rehearsals and backstage footage of Michael Jackson as he prepared for his series of sold-out shows in London.",60000000,0,Michael Jackson's This Is It,en +48508,A Brand New Life,2009-10-29,92.0,,,tt1287875,,"Young Jinhee is taken by her father to an orphanage near Seoul. He leaves her there never to return, and she struggles to come to grips with her fate. Jinhee desperately believes her father will come back for her and take her on a trip. The film is based on the experiences of the director, an ethnic Korean who was adopted by a French couple in the 1970s.",0,0,여행자,ko +35197,The Reeds,2009-10-30,90.0,,,tt1327200,,A weekend boating party turns into a nightmare for a group of young Londoners when they stumble upon a terrifying secret hidden in the reeds.,0,0,The Reeds,en +128169,Sideways,2009-10-31,124.0,,,tt1236373,,"Sideways A heartwarming tale of two old friends, on a journey to rediscover their friendship, life and themselves. Michio (Fumio Kohinata) a struggling, middleaged scriptwriter, who returns to the US to attend the wedding of his best friend. Daisuke (Katsuhisa Namase), who stayed in the California after college, had a brief stint of fame as Captain Ninja, a childrens action hero now manages a restaurant Together, they venture out on a weeklong road trip, ending up in the Napa Valley, where they serendipitously meet up with an old heart throb Mayuko (Kyoka Suzuki), whom Michio tutored during his exchange student days 20 years past, and her free spirited friend Mina (Rinko Kikuchi) raised in America. Michio under the impression that they were going wine tasting, soon discovers that Daisuke has ulterior motives for this last hurrah as a bachelor.",0,0,サイドウェイズ,ja +153196,Rosas Höllenfahrt,2009-10-31,0.0,,,tt1527725,,,0,0,Rosas Höllenfahrt,de +458428,Operación Cannabis,2009-11-01,,,,tt1542928,,,0,0,Operación Cannabis,es +45273,The Bleeding,2009-11-02,80.0,,,tt1206881,,"Surrounded by carnage, slaughter, brutal crashes and total mayhem, Shawn Black is in a race to save the world from pure evil.",7000000,0,The Bleeding,en +54548,All You Need is Love,2009-11-03,92.0,,,tt1528710,,When Katharina got an unexpected letter from her son Hans announcing that he was getting married and that he and his fiancé Nicki were leaving Berlin to come visit her...,0,0,All You Need is Love - Meine Schwiegertochter ist ein Mann,de +30844,Beauty and the Beast,2009-11-04,90.0,,,tt1410295,,"A twist on the morality tale of forbidden love between the beautiful Belle and the feared Beast. As the villagers are being brutally murdered and the Beast is hunted down as the one responsible for the mayhem, Belle and Beast team up to defeat the real killer; the power-hungry witch's malevolent troll.",0,0,Beauty and the Beast,en +24797,Magic Man,2009-11-04,90.0,,,tt1244588,,"In order to see magic idol Krell Darius perform his world-famous magic act, a beautiful aspiring young-magician, Tatiana, travels from New York to Las Vegas with her closest friends, BFFs, Elena and Vera. As the layers of illusion unfold, so too do the dark windows into Tatiana's past",0,0,Magic Man,en +57489,The Last Summer of La Boyita,2009-11-05,93.0,,,tt1404653,,"Young Jorgelina feels estranged from her boy-crazy older sister, who has entered adolescence and doesn't want to hang around with little kids anymore. Finding refuge in their Boyita camper-van, Jorgelina travels with her father to the countryside, where her lifelong playmate Mario is undergoing some unexpected changes of his own.",0,0,El último verano de La Boyita,es +44637,Trevor Noah: The Daywalker,2009-11-05,71.0,http://www.trevornoah.com,,tt1552639,,Trevor Noah Stand up comedy,0,0,Trevor Noah: The Daywalker,en +37779,The Last Flight,2009-11-05,98.0,,,tt1234542,,"Aviator Marie Vallières de Beaumont (Cotillard) goes on a journey to find her lover Bill Lancaster after his plane disappears in the Sahara. After her plane is forced down in the Ténéré she meets Lieutenant Antoine Chauvet (Canet) of the French Camel Corps who joins in the hunt for Lancaster. As the two endure hardships in the desert, they begin to develop feelings for each other.",24000000,0,Le dernier vol,fr +33273,Cell 211,2009-11-06,110.0,,,tt1242422,"To survive inside, he has to become one of them.","The story of two men on different sides of a prison riot -- the inmate leading the rebellion and the young guard trapped in the revolt, who poses as a prisoner in a desperate attempt to survive the ordeal.",5700000,19300483,Celda 211,es +306406,Gaiir,2009-11-06,0.0,,,tt3610936,,Bollywood 2009,0,0,Gaiir,en +62349,Alza la testa,2009-11-06,,,,tt1523406,,,0,0,Alza la testa,it +43635,My Rainy Days,2009-11-07,119.0,http://tenkoi.gaga.ne.jp/,,tt1538401,,"Because of her past, 17-year-old Rio lives her days filling the emptiness in her heart with money--until one day, she meets a university professor named Kouki and falls in love.",0,0,天使の恋,ja +55638,Opposite Day,2009-11-07,88.0,http://en.wikipedia.org/wiki/Opposite_Day_%28film%29,,tt1090674,Today Kids Rule,"The world goes backwards on Opposite Day. The kids become adults, and the adults become kids.",0,0,Opposite Day,en +306464,Family Guy Presents: Seth and Alex's almost live comedy show,2009-11-08,30.0,,,tt1532515,,"A commercial-free variety special starring Seth MacFarlane and his ""Family Guy"" co-star Alex Borstein. The half-hour special will highlight the duo's subversive and unique comedic sensibilities and feature original animation, live-action performances of ""Family Guy's"" most memorable musical numbers, comedy sketches and surprise celebrity guests.",0,0,Family Guy Presents: Seth and Alex's almost live comedy show,en +24589,Dug's Special Mission,2009-11-09,5.0,http://www.pixar.com/short_films/Home-Entertainment-Shorts/Dug's-Special-Mission,,tt1537759,,"Dug's Special Mission will give ""a little bit of the backstory of what Dug was actually doing"" before encountering Carl and Russell in Up.",0,0,Dug's Special Mission,en +25603,Russell Howard Live: Dingledodies,2009-11-09,77.0,,,tt1950332,,"Recorded at Brighton Dome as part of his twice extended sell-out Dingledodies tour (which played to over 125,000 people), the show sees the star of Mock the Week (BBC Two) and Russell Howard’s Good News (BBC Three) share his observations on life. Packed with his trademark mix of eloquent gags and deft storytelling this is the critically acclaimed show from one of the hottest names in stand-up.",0,0,Russell Howard Live: Dingledodies,en +72962,George & A.J.,2009-11-10,4.0,,,tt1552624,,George & A.J. is a short film created by Pixar which uses characters from the film Up to tell what Nurses George and A.J. did after Carl Fredricksen left with his house tied to balloons in the feature film.,0,0,George & A.J.,en +26293,Hurt,2009-11-10,96.0,http://www.hurt-the-movie.com/,,tt1046936,,"There are terrible things happening in the desert...unexplainable, frightening things. Tragic, inexplicable incidents… ever since she arrived.",0,0,Hurt,en +25941,Harry Brown,2009-11-11,103.0,,,tt1289406,Every man has a breaking point.,An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.,7300000,10329747,Harry Brown,en +45020,Mercy,2009-11-11,87.0,,,tt1235200,,"A young novelist tries to write about love, but realizes he will first need some real-life experience before taking on the subject.",0,0,Mercy,en +32124,Dare,2009-11-13,100.0,http://www.darethemovie.com,,tt1241316,Do something you're afraid of.,"A drama centered around three high school seniors - an aspiring actress, her misfit best friend, and a loner - who become engaged in an intimate and complicated relationship.",0,18088,Dare,en +38931,Oh My God,2009-11-13,93.0,,,tt1326954,Did God create Man or did Man create God?,"""Oh My God"" asks people from all walks of life, from celebrities, to the religious, to atheists and the common Man - the question - ""What is God?""",0,0,Oh My God,en +56771,WWII IN HD,2009-11-15,0.0,,,tt1489097,,"Follow the lives of soldiers who lived Wold War II, through previously unseen color footage.",0,0,WWII IN HD,en +43711,Enid,2009-11-16,82.0,,,tt1397265,,Edwardian child Enid Blyton begins to tell stories to her brothers as an escape from their parents' rows before the father deserts the family...,0,0,Enid,en +35008,Rapt,2009-11-18,125.0,http://www.rapt-lefilm.com/,,tt1430110,Paying his ransom won't bury his secrets.,"A rich industrialist is brutally kidnapped. While he physically and mentally degenerates in imprisonment, the kidnappers, police and the board of the company of which he is director negotiate about the ransom of 50 million euro.",0,0,Rapt,fr +16866,Planet 51,2009-11-19,91.0,http://www.sonypictures.com/movies/planet51/,,tt0762125,Something strange is coming to their planet...Us!,"When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.",70000000,104945765,Planet 51,en +22881,The Blind Side,2009-11-20,129.0,http://www.theblindsidemovie.com/,,tt0878804,Based on the extraordinary true story,"Oversized African-American, Michael Oher, the teen from across the tracks and a broken home, has nowhere to sleep at age 16. Taken in by an affluent Memphis couple, Michael embarks on a remarkable rise to play for the NFL.",29000000,309208309,The Blind Side,en +38547,7 Kocalı Hürmüz,2009-11-20,0.0,,,tt1523583,,,0,0,7 Kocalı Hürmüz,tr +98096,Live Music,2009-11-20,6.0,,,tt1455209,,An animated musical about a Rock n' Roll Guitar that falls in love to the wrong song but ends up with the Violin of his dreams.,0,0,Live Music,en +32654,The Storm Warriors,2009-12-10,150.0,http://www.thestormwarriors.com/,146532,tt1186371,,Wind and Cloud find themselves up against a ruthless Japanese warlord intent on invading China.,100000000,0,風雲Ⅱ,cn +38150,Heartless,2009-11-21,114.0,http://www.heartlessmovie.com/,,tt1220214,The darker it gets the more you see,"The story follows Jamie, a troubled young man with a birthmark on his face, which has left him feeling isolated and fearful, hiding from the world outside. He lives in the East End of London, an area notorious for its violent hooded gangs. According to news reports, the gangs are now wearing demon masks. But, one night, Jamie discovers the terrifying truth.",0,0,Heartless,en +20766,The Road,2009-11-25,111.0,http://www.theroad-movie.com/,,tt0898367,In a moment the world changed forever.,"A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.",32000000,27635305,The Road,en +83430,Altiplano,2009-11-25,109.0,,,tt1318022,,"In the Andes, a Belgian doctor and his photojournalist wife become ensnared in a native tribe's struggle with a mining company.",0,0,Altiplano,de +26505,Arthur and the Revenge of Maltazard,2009-11-26,93.0,,85817,tt0940657,,"Arthur answers a distress call from Princess Selenia, who is menaced by the nefarious Maltazard.",87000000,0,Arthur et la vengeance de Maltazard,en +257296,The Righteous Thief,2009-11-26,117.0,,,tt3243196,,"Hong Mu-Hyeok is a quiet high school music teacher with a secret. His family descends from the notorious Hong Gil-Dong, a Robin Hood styled thief. He has targeted Lee Jeong-Min, a ruthless ...",0,0,홍길동의 후예,ko +52637,Yuki & Nina,2009-11-27,92.0,,,tt1149363,,"When Yuki finds out that her parents are separating and she is moving to Japan with her mother, she and her best friend Nina devise ways to reunite the feuding adults.",0,0,Yuki & Nina,fr +34763,Aarya 2,2009-11-27,163.0,,,tt1526323,,Sequel for Aarya by Allu Arjun,0,0,Aarya 2,te +35395,Bunny and the Bull,2009-11-27,101.0,,,tt1251725,,"A young shut-in takes an imaginary road trip inside his apartment, based on mementos and memories of a European trek from years before.",0,81010,Bunny and the Bull,en +49522,Nativity!,2009-11-27,105.0,http://www.nativitythemovie.co.uk/,239595,tt1242447,,"Martin Freeman is lovelorn teacher Mr Maddens, a former am-dram star whose girlfriend (Ashley Jensen) dumped him over Christmas five years ago and upped sticks, inexplicably, to La-La Land. Yuletide cheer is not his forte, but he's forced to drum some up when Pam Ferris's headmistress earmarks him to direct the Nativity play.",0,0,Nativity!,en +35554,Cado dalle nubi,2009-11-27,99.0,,,tt1526741,,,0,0,Cado dalle nubi,it +25646,Death Warrior,2009-11-27,90.0,,,tt1144797,,"A gritty MMA fighter is forced into a twisted, underground gambling ring in which he must fight to the death with other MMA fighters in order to save his wife from certain death at the hands of a maniacal crime boss. In a desperate race against time, he is forced into a series of increasingly violent life and death matches while simultaneously piecing together the puzzle which leads him to uncover",0,0,Death Warrior,en +33613,The Girl Who Kicked the Hornet's Nest,2009-11-27,147.0,http://dragontattoofilm.com/,24761,tt1343097,There's A Storm Coming,"After taking a bullet to the head, Salander is under close supervision in a hospital and is set to face trial for attempted murder on her eventual release. With the help of journalist Mikael Blomkvist and his researchers at Millennium magazine, Salander must prove her innocence. In doing this she plays against powerful enemies and her own past.",4000000,43498108,Luftslottet som sprängdes,sv +35435,Eden of the East Movie I: The King of Eden,2009-11-28,82.0,http://juiz.jp/special/,96666,tt1460738,,"Takizawa prevented Japan's destruction - and then he vanished. Six months later, clues lead Saki to the Big Apple in search of her missing friend. Meanwhile, the remaining Selecao are plotting their final move. Some of them would prefer Takizawa dead and out of the way. Some might even be willing to help him achieve his goals. Unfortunately, some are prepared to destroy everything if it means claiming checkmate in Mr. Outside's puzzling game.",0,0,東のエデン 劇場版I The King of Eden,ja +58832,Babysitters Beware,2009-12-03,71.0,http://douglashorn.com/wordpress/projects/the-no-sit-list/,,tt1172997,Time to try a little trouble!,"Seven-year-old Danny Parker is a good kid who loves his parents. But they have to go out on business dinners all the time, leaving him stuck with a sitter. It's not so bad when it's his favorite babysitter, Janelle but he also gets stuck with sitters like Ms. Greene who won't let him have any fun. Danny just wants to spend more time with his Mom and Dad.",1500000,0,Babysitters Beware,en +35052,Cracks,2009-12-04,104.0,,,tt1183665,Innocence isn't lost. It's taken.,Jealousy flares after the headmistress of an elite boarding school for girls becomes obsessed with a new student.,0,0,Cracks,en +27989,Serious Moonlight,2009-12-04,84.0,http://seriousmoonlightfilm.com,,tt1133993,,A high-powered attorney duct tapes her adulterous husband to the toilet ... right before their home is invaded by burglars.,0,0,Serious Moonlight,en +81576,Garbo: The Spy,2009-12-04,88.0,http://www.garbothemovie.com,,tt1344315,,"A compelling account of Juan Pujol, an extraordinary Spanish double agent during WWII who helped change the course of history.",0,0,Garbo: El espía,en +41142,Under the North Star,2009-12-04,193.0,http://www.artista.fi/pohjantahti/,463068,tt1145479,,"Perustuu Väinö Linnan samannimiseen romaanitrilogiaan, joka on yksi suomalaisen kirjallisuuden tärkeimmistä teoksista.",6153120,0,Täällä Pohjantähden alla,en +50506,Mrs. Miracle,2009-12-05,90.0,,374663,tt1431115,,"Overwhelmed widower Seth Webster is searching for a housekeeper to help him with his unruly six year old twin sons. ""Mrs. Miracle"" mysteriously appears and quickly becomes an irreplaceable nanny, chef, friend... and matchmaker.",0,0,Mrs. Miracle,en +10198,The Princess and the Frog,2009-12-08,97.0,http://disney.go.com/disneypictures/princessandthefrog/,,tt0780521,Every Love Story Begins With a Kiss...,"A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to do face the same problem after she kisses him.",105000000,267045765,The Princess and the Frog,en +44751,Dossier K.,2009-12-09,120.0,http://www.dossierkfilm.be/,,tt1286784,,Vincke and Verstuyft are detectives of the Antwerp police department. This time they have to deal with the Albanian mob and some problems in their own police division.,0,0,Dossier K.,en +55208,Clash,2009-12-09,90.0,,,tt1571565,,"Trinh, a mercenary, must complete a series of organized crime jobs for her boss in order to win the release of her kidnapped daughter. She hires several mercenaries to help, including Quan, who she becomes attracted to. Trinh and Quan's relationship becomes complicated as it becomes evident that their motivations are not the same.",0,0,Bẫy Rồng,vi +110898,Apricot,2009-12-09,11.0,,,tt1655566,,A mysterious man with missing memories asks some very personal questions of a beautiful woman he just met.,0,0,Apricot,en +231540,Unter Strom,2009-12-10,,,,tt0304876,,,0,0,Unter Strom,de +19995,Avatar,2009-12-10,162.0,http://www.avatarmovie.com/,87096,tt0499549,Enter the World of Pandora.,"In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.",237000000,2787965087,Avatar,en +32932,Under the Mountain,2009-12-10,91.0,http://www.underthemountain.co.nz/,,tt1275861,An epic journey to save the world...,Teenage twins battle dark forces hidden beneath Auckland's volcanoes.,0,0,Under the Mountain,en +79743,What Became of Us,2009-12-11,116.0,,,tt1428050,,"Have you ever wondered how your old schoolmates are? Perhaps the guy next to you, who is doing time in jail at the moment, still thinks you are his best and only friend. Perhaps your first crush might've been interested in you all these years but was too afraid to tell you that. Perhaps, if it were not too late already, the bullied one would've done everything differently.",0,0,Mitä meistä tuli,en +39334,Hannah Free,2009-12-11,86.0,http://www.hannahfree.com/,,tt1315214,A story about living and loving and letting go.,A film about a lifelong love affair between an independent spirit and the woman she calls home.,0,0,Hannah Free,en +169022,Just Friends?,2009-12-17,29.0,,,tt1753995,,"Min-soo is on leave from the military and visits his boyfriend Seok-yi. While having fun out on the town, they run into Min-soo mother's mother! When the Min-soo's mother asks about their relationship, Min-soo replies ""... just friends."" Making things more complicated, Min-soo's mother ends up sleeping between them that night!",0,0,친구사이?,ko +37570,Love in Another Language,2009-12-18,98.0,,,tt1513713,I wonder if we can get along without talking at all...,"Onur, who has been deaf since birth, works as a librarian. His father had left him and his mother when he was seven, and Onur has always blamed himself for this. Although being able to speak, he has chosen to stay silent because of the pitying looks of the people around him. At his friend Vedat's engagement party, he meets Zeynep, who later finds out about Onur's hearing disability, but is not bothered by it. She is forced by her overbearing father to leave home and gets a job at a call-center. Having to speak on the phone all day to people she doesn't know, Zeynep finds peace with Onur, who she communicates with perfectly without speaking...",0,0,Başka Dilde Aşk,tr +37534,The New Daughter,2009-12-18,108.0,http://www.thenewdaughter.com/,,tt0951335,How Far Will A Father Go To Protect The Ones He Loves?,"John James is a writer; his wife has left him. He moves with his two middle-school children to an isolated house off a dirt road in South Carolina. The property has an Indian burial mound, which fascinates his daughter, Louisa, who's entering puberty.",0,0,The New Daughter,en +281979,Doctor Who: The Waters of Mars,2009-12-19,62.0,,,tt1413314,,"The Doctor joins forces with his oldest companion on record when a military base comes under attack from sentient, dangerous waters. It may be another stand against immeasurable odds, but waiting in the wings for the Time Lord is a sign all songs must end....",0,0,Doctor Who: The Waters of Mars,en +41522,The Phantom,2009-12-20,176.0,http://www.syfy.com/phantom/,,tt1438437,The world has been without justice... Until now,"Before Superman, Spider-Man, and Batman, there was The Phantom, the greatest legend in the annals of 20th century comic-book crime fighting. Now, the immortal superhero returns to strike terror in the hearts of villains around the world - and to inspire a new generation to believe in the Ghost Who Walks.",0,0,The Phantom,en +22897,It's Complicated,2009-12-23,121.0,http://itscomplicatedmovie.com/,,tt1230414,First comes marriage. Then comes divorce. And then...,"Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect. Now, she has to sort out her life – just when she thought she had it all figured out.",85000000,219103655,It's Complicated,en +41619,Dinosaurier - Gegen uns seht ihr alt aus!,2009-12-23,105.0,,,tt1552669,Gegen uns seht ihr alt aus,,0,0,Dinosaurier - Gegen uns seht ihr alt aus!,de +131039,Sea Wolf,2009-12-24,180.0,,,tt1215482,,A young man is taken aboard a seal-hunting vessel helmed by the cruel captain Wolf Larsen.,19000000,0,Sea Wolf,en +26809,Prep & Landing,2009-12-24,22.0,,93788,tt1474311,No one does stealth like an Elf,"Wayne gets a new rookie partner, Lanny, after his previous partner got the promotion he wanted. Lanny has to remind Wayne of the Spirit of Christmas and the importance of being an elf in Santa's Prep and Landing elite unit.",0,0,Prep & Landing,en +28118,The Gruffalo,2009-12-25,27.0,,129748,tt1461418,,The magical tale of a mouse who takes a walk though the woods in search of a nut.,0,0,The Gruffalo,en +33511,Nowhere Boy,2009-12-25,98.0,http://www.nowhereboy.co.uk/,,tt1266029,As a boy all John Lennon needed was love.,The drama tells the story of Lennon's teenage years and the start of his journey to becoming a successful musician. The story also examines the impact on his early life and personality of the two dominant females in his childhood,0,0,Nowhere Boy,en +410774,Schneewittchen,2009-12-25,,,,tt1479358,,,0,0,Schneewittchen,de +37700,Mr. Bjarnfreðarson,2009-12-26,105.0,http://www.facebook.com/bjarnfredarson,,tt1534397,,"Centers on Georg Bjarnfreðarson, an over-educated know-it-all who has just been released from jail after a ten year sentence for manslaughter, but is still a prisoner of his own past.",0,0,Bjarnfreðarson,is +7980,The Lovely Bones,2009-12-26,136.0,http://www.lovelybones.com,,tt0380510,The story of a life and everything that came after...,"After being brutally murdered, 14-year-old Susie Salmon watches from heaven over her grief-stricken family -- and her killer. As she observes their daily lives, she must balance her thirst for revenge with her desire for her family to heal.",65000000,93525586,The Lovely Bones,en +28238,Hamlet,2009-12-26,185.0,http://www.bbc.co.uk/hamlet/,,tt1449175,"To be, or not to be?","David Tennant stars in a film of the Royal Shakespeare Company's award-winning production of Shakespeare's great play. Director Gregory Doran's modern-dress production was hailed by the critics as thrilling, fast-moving and, in parts, very funny.",0,0,Hamlet,en +35396,The Island,2009-12-29,96.0,,,tt1566601,,"It's an excellent movie with good performances from the actors and a lot of unforced funny moments.Not only is ""Nisos"" a pleasant movie to watch but also it is a meaningful one since it's main theme is the resemblance of the hypocrisy of the Greek society in the 21rst century while all of of the action takes place in one of the most beautiful Greek Islands, Sifnos. I undoubtedly recommend it!",0,0,Νήsos,el +33130,Gewoon Hans,2009-12-30,0.0,,,tt1532951,,No overview found.,0,0,Gewoon Hans,en +31162,Black Lightning,2009-12-31,102.0,http://31-12-2009.ru/,,tt1569364,,"Black Lightning is a Russian superhero film about a Moscow University student who discovers that his otherwise unremarkable car can fly. After his father is attacked, he decides to use the car to fight crime and becomes the city's defender against an evil millionaire.",15000000,21500000,Чёрная Молния,ru +45527,The Final Storm,2010-01-01,92.0,,,tt1331329,"Action, Horror","A stranger named Silas flees from a devastating storm and finds refuge with Tom and Gillian on their farm. While struggling with the Storm, Silas seems to be the only one who can help Tom and Gillian to find their son but there are other more dangerous forces out there, that are waiting for the three.",0,0,The Final Storm,en +316776,Who Killed Captain Alex?,2010-01-01,64.0,,,tt1813757,,"Recognized as Uganda’s first action film, Who Killed Captain Alex? is about the aftermath of a police raid in Kampala in which a police captain (Alex) and a drug racketeer’s brother are killed. Both sides seek revenge, escalating into war.",200,0,Who Killed Captain Alex?,en +33427,LEGO: The Adventures of Clutch Powers,2010-01-01,81.0,,,tt1587414,,"Meet Clutch Powers, the best builder and explorer in the LEGO universe as he heads off on his most dangerous mission yet. Join Clutch and his team of experts as their adventure leads them from City to the Space Police prison planet to the medieval world of Ashlar where they must help the rightful heir to the King’s throne find the courage to regain the kingdom from the evil wizard Malign.",0,0,LEGO: The Adventures of Clutch Powers,en +63273,Endure,2010-01-01,91.0,http://www.enduremovie.com,,tt1230372,,"After a shocking photo of a young woman is found inside the twisted metal of a fatal car crash, veteran detective Emory Lloyd must risk everything to identify and find the woman before it's too late.",0,0,Endure,en +70636,Ghost from the Machine,2010-01-01,86.0,http://www.ghostfromthemachine.com/,,tt1303782,,"Wildly grief-stricken over the accidental death of his parents, young techno-geek Cody (Sasha Andreev) cobbles together an electrical device that he hopes will bring the spirits of mom and dad back from beyond the grave. But the machine's power and Cody's deepening obsession threaten the safety of his only remaining family: his younger brother, James (Max Hauser). Matt Osterman directs this ghostly sci-fi thriller that also stars Matthew Feeney.",0,0,Ghost from the Machine,en +59419,The Best and the Brightest,2010-01-01,93.0,,,tt1438251,,"Set in the world of New York City's elite private kindergartens, The Best and the Brightest centers on a fresh-faced young couple, Samantha and Jeff, who have only recently moved into town. The comedy centers on their dawning realization of the lengths they must go to in order to get their five-year-old daughter into school.",0,0,The Best and the Brightest,en +58515,The Lost Thing,2010-01-01,15.0,,,tt1669698,,"A boy finds a strange creature on a beach, and decides to find a home for it in a world where everyone believes there are far more important things to pay attention to.",0,0,The Lost Thing,en +134362,The Beast,2010-01-01,77.0,http://www.labestiadoc.com/,,tt1545473,The most raw human suffering of them all.,"Each year, hundreds of Central American migrants try to cross the northern border of Mexico on the freight train known as the Beast. That trip is usually the most dangerous journey of their lives. On the road many lost their dreams, their body parts and even their lives. Crossing Mexico is their biggest challenge, here are victims of discrimination, violence and even murder. This film portrays the suffering of those people who travel in search of a better life.",0,0,La bestia,es +44773,The 7 Adventures of Sinbad,2010-01-01,93.0,,,tt1636629,,"Sinbad, the original Prince of Persia, must complete seven tasks in order to save the world from catastrophe.",0,0,The 7 Adventures of Sinbad,en +63190,The Father and the Foreigner,2010-01-01,0.0,,,tt1408062,,,0,0,Il padre e lo straniero,it +49847,The Possession of David O'Reilly,2010-01-01,87.0,,,tt1535617,,A supernatural shockumentary about a demonic presence in a young couple's home in London.,0,0,The Possession of David O'Reilly,en +179270,Tell Me and I Will Forget,2010-01-01,79.0,,,tt1608217,,Justin Salerian follows South African paramedics from Pretoria and Johannesburg who face a surge of violent crime and historic social change 15 years since the end of its oppressive Apartheid era.,0,0,Tell Me and I Will Forget,en +109477,Brutal Relax,2010-01-01,15.0,,,tt1806827,,"Mr Olivares has already recovered, but now he needs a vacation. To go to some heavenly place where he can relax and blithely enjoy himself.",0,0,Brutal Relax,en +38883,Protect and Serve,2010-01-03,90.0,,,tt1322354,,A pair of bumbling French cops team up to take on the underworld.,0,0,Protéger et servir,fr +40660,If You Love,2010-01-06,121.0,,,tt1380130,Menneisyyttä ei voi paeta ikuisesti. Antaako rakkaus lopulta kaiken anteeksi?,Musiikkielokuva joka kertoo ministerin tyttären ja maahanmuuttajien pojan rosoisen rakkaustarinan.,2000000,0,Jos rakastat,en +53861,Die,2010-01-06,91.0,http://aquipuedesver.com/videos/ver-die/,,tt1465478,,"Six people, each of them is on the road to self-destruction. They wake up in cells in a surreal facility, without knowing how they got there or why.",0,0,Die,sv +29538,Pyaar Impossible,2010-01-08,140.0,http://www.yashrajfilms.com/microsites/pyaarimpossible/movie/pyaarimpossible.html,,tt1351224,,"romantic comedy in which a geek and the most sought-after college beauty are paired together by a twist of fate. And under all odds, an impossible love story begins.",0,0,Pyaar Impossible,en +75577,Brian Eno: Another Green World,2010-01-12,60.0,,,tt1591138,,A profile of the musician Brian Eno.,0,0,Brian Eno: Another Green World,en +53172,Henry's Crime,2010-01-14,108.0,,,tt1220888,The real crime is not committing to your dreams.,An aimless man is sent to prison for a crime he did not commit.,12000000,204940,Henry's Crime,en +62775,Havukka-Ahon Ajattelija,2010-01-15,,,,tt1404661,,,2225000,0,Havukka-Ahon Ajattelija,fi +30695,Chance Pe Dance,2010-01-15,158.0,http://chancepedance.utvnet.com/,,tt1392744,,,0,0,Chance Pe Dance,hi +98115,Harmony and Me,2010-01-15,75.0,,,tt1196165,A physical comedy about yearning,"In this indie comedy from helmer Bob Byington, dry wit and deadpan humor abound as aptly named lyricist Harmony (Justin Rice) insists on wallowing in misery eons after being unceremoniously dumped by his girlfriend, the lovely Jessica (Kristen Tucker). While the members of Harmony's family are long over his antics, that doesn't stop him from milking his heartbreak and telling his tale of woe to anyone who will listen.",0,0,Harmony and Me,en +160106,Škola princů,2010-01-18,72.0,,,tt1941653,,,0,0,Škola princů,cs +65496,Student Services,2010-01-18,101.0,,,tt1570970,,"Laura is a 19-year-old university freshman who desperately wants to do well in school. She works a part-time job but cannot make ends meet. One evening in which she is short of funds, she answers a personal ad online by ""Joe,"" 57, who seeks a female student for ""tender moments."" The pay is 100 euros per hour. Laura pledges to do this just once, and three days later, she goes to a hotel room with Joe. And then her spiral begins.",0,0,Mes chères études,fr +74558,The Sun Behind the Clouds: Tibet's Struggle for Freedom,2010-01-20,79.0,,,tt1540068,,"Fifty years after the fall of his country, can the Dalai Lama make a breakthrough in his efforts to find a solution to the Tibet question?",0,0,The Sun Behind the Clouds: Tibet's Struggle for Freedom,en +22894,Legion,2010-01-21,100.0,http://www.legionmovie.com,,tt1038686,"When the last angel falls, the fight for mankind begins.","When God loses faith in humankind, he sends his legion of angels to bring on the Apocalypse. Humanity's only hope for survival lies in a group of strangers trapped in an out-of-the-way, desert diner with the Archangel Michael.",26000000,67918658,Legion,en +31059,Nasha Russia: Yaytsa sudby,2010-01-21,85.0,http://www.nasharussia-kino.ru/,,tt1569465,,"Рафшан и Джумжуд, гастарбайтеры из Нубарашена, нелегально приезжают в Москву, где бригадир Леонид получил у одного олигарха заказ на супердорогой ремонт. Потеряв в столице «нацайника», Рафшан и Джумжуд пытаются найти и спасти его, сея повсюду разрушения и хаос. Но в самой безнадёжной ситуации судьба поворачивается к гастарбайтерам лицом — Рафшан и Джумжуд узнают страшную тайну, которая изменит всё…",2000000,22212223,Наша Russia: Яйца судьбы,en +44718,Get Low,2010-01-22,103.0,,,tt1194263,Every secret dies somewhere.,"A movie spun out of equal parts folk tale, fable and real-life legend about the mysterious, 1930s Tennessee hermit who famously threw his own rollicking funeral party... while he was still alive.",7500000,0,Get Low,en +72013,Yu-Gi-Oh! 3D: Bonds Beyond Time,2010-01-23,49.0,,,tt1587157,,"After falling through a time-slip, Yusei Fudo (who has just had his powerful card stolen by a mysterious stranger) meets with Jaden Yuki and Yugi Muto, who agree to help Yusei defeat the evil Paradox, who is planning to destroy Pegasus before he can invent Duel Monsters.",2017928,0,劇場版 遊☆戯☆王 ~超融合!時空を越えた絆~,ja +47386,YellowBrickRoad,2010-01-23,99.0,http://www.yellowbrickroadthemovie.com/index.html,,tt1398428,They went looking for evil in the forest but the forest found evil in them,"In the Fall of 1940, the entire population of Friar, New Hampshire walked together up a winding mountain trail and into the wilderness. Without warning, they left behind everything: their homes, their clothes, and their money. The only clue where they went was a single word etched into stone near the forest’s edge: YELLOWBRICKROAD.",500000,0,YellowBrickRoad,en +35656,As Good As Dead,2010-01-25,100.0,,,tt1294136,Can you escape your past?,"Seeking revenge for the murder of their religious leader, fundamental loyalists kidnap and torture the man they believe responsible, but the ensuing clash of right vs. left ideologies quickly reveals that they may have the wrong man, which puts them on a path toward a shocking twist",0,0,As Good As Dead,en +48962,A Bela e o Paparazzo,2010-01-28,0.0,,,tt1454603,,Love on the front page,0,0,A Bela e o Paparazzo,pt +33556,Ishqiya,2010-01-29,115.0,,,tt1345777,,"While on the run from goons, a man and his nephew fall for a kidnapper's seductive widow.",0,0,Ishqiya,en +40817,Kiss Me Again,2010-01-29,139.0,,,tt1332486,,"A look at the lives of Carlo, Giulia, and their friends some 10 years after the events of L'Ultimo bacio.",0,0,Baciami Ancora,it +34231,The Graves,2010-01-29,88.0,http://www.thegravesmovie.com/,,tt1203517,,Two inseparable sister's visit to a remote mine town turns into a mind-bending fight for survival against menaces both human and supernatural.,0,0,The Graves,en +13477,When in Rome,2010-01-29,91.0,,,tt1185416,Did you ever wish for the impossible?,"After fishing out coins from a water fountain in Italy, cynical New Yorker Beth Harper finds herself being wooed by several ardent suitors. As she deals with the attention, Beth tries to figure out whether a charming reporter really loves her.",0,36699403,When in Rome,en +32657,Percy Jackson & the Olympians: The Lightning Thief,2010-02-01,118.0,,179919,tt0814255,Worlds Collide,"Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.",95000000,226497209,Percy Jackson & the Olympians: The Lightning Thief,en +30675,Planet Hulk,2010-02-02,81.0,http://www.lionsgate.com/planethulk/,,tt1483025,Will he save their world... or destroy it?,"When the Hulk becomes too dangerous for the Earth, the Illuminati trick Hulk into a shuttle and launch him into space to a planet where the Hulk can live in peace. Unfortunately, the Hulk's struggle to escape makes a malfunction in the shuttle causing Hulk to land on the planet Sakaar where he is sold into slavery and trained as a gladiator.",0,7000000,Planet Hulk,en +32904,Tony,2010-02-05,76.0,http://www.tonythemovie.com/,,tt1120945,Keeping a neighbourhood watch.,"Unemployed and unemployable, Tony is a sympathetic recluse with severe social problems, an addiction to VHS action films and a horrible moustache. Occasionally he snaps and murder is the result…",0,0,Tony,en +44363,Frozen,2010-02-05,93.0,http://www.frozen-film.com/,,tt1323045,No one knows you're up there,Three skiers are stranded on a chairlift and forced to make life-or-death choices that prove more perilous than staying put and freezing to death.,0,3065860,Frozen,en +158382,Hotel Hell Vacation,2010-02-07,14.0,,,tt1600409,"The Griswolds are back, but they're not staying.","Clark and Ellen Griswold embark on a trip to visit their son Rusty and his family, but along the way Clark has planned a romantic getaway where everything turns to disaster.",0,0,Hotel Hell Vacation,en +111332,Avatar: Creating the World of Pandora,2010-02-07,0.0,,,tt1599280,,The Making-of James Cameron's Avatar. It shows interesting parts of the work on the set.,0,0,Avatar: Creating the World of Pandora,en +33570,Ice Castles,2010-02-09,95.0,,,tt1411276,,"Alexis Winston is a young girl who dreams of becoming a champion figure skater. While practicing, Alexis suffers a terrible accident that takes her sight and threatens to destroy her dreams. In the midst of feeling sorry for herself she falls in love with a handsome young man named Nick who (with help from her family) helps her to realize that she can still fulfill her dreams.",0,0,Ice Castles,en +52044,Insane,2010-02-09,87.0,http://www.insanethemovie.com/,,tt1491603,Pay to check in - Pray to check out.,"A lonely hotel by a lonely road. Sarah is lost, looking for somewhere to sleep. She's come to the wrong place. A lonely hotel by a lonely road. Sarah is lost, Jenny is looking for her. She's come to the right place. The Bridgeburn Hotel",750000,0,Insane,en +80435,Lovers of Hate,2010-02-11,93.0,,,tt1436560,,A dark comedy which follows two brothers who are in love with the same woman.,0,0,Lovers of Hate,en +32926,Recep İvedik 3,2010-02-12,95.0,,131989,tt1577061,,No overview found.,0,0,Recep İvedik 3,en +32497,Farsan,2010-02-12,97.0,,,tt1570966,,No overview found.,0,0,Farsan,en +49588,Trick,2010-02-12,0.0,,,tt1617207,,"Kidnappers demand six million in ransom, but the United Nations does not negotiate with terrorist. One of the best counterfeiters is serving a lengthy prison term and the agent who arrested him needs his help.",0,0,Trick,pl +44246,When We Leave,2010-02-13,119.0,http://www.diefremde.de/,,tt1288376,,"Umay is a young woman of Turkish descent, fighting for an independent and self-determined life in Germany against the resistance of her family. Her struggle initiates a dynamic, which results in a life-threatening situation.",0,0,Die Fremde,de +42293,The Hairdresser,2010-02-14,106.0,,,tt1585255,,"When a salon refuses to hire her because of her plump figure, irrepressible hair stylist Kathi plots revenge by opening her own beauty parlor next door. But when she faces a cash-flow problem, Kathi resorts to some creative means of raising capital.",0,0,Die Friseuse,de +39356,Boy,2010-02-14,87.0,http://www.boythemovie.co.nz,,tt1560139,"Summer, Girls, Gangs, Drugs ... its not easy being eleven.","It's 1984, and Michael Jackson is king - even in Waihau Bay, New Zealand. Here we meet Boy, an 11-year-old who lives on a farm with his gran, a goat, and his younger brother, Rocky (who thinks he has magic powers). Shortly after Gran leaves for a week, Boy's father, Alamein, appears out of the blue. Having imagined a heroic version of his father during his absence, Boy comes face to face with the real version-an incompetent hoodlum who has returned to find a bag of money he buried years before. This is where the goat enters.",3,43,Boy,en +35558,StarStruck,2010-02-14,90.0,http://tv.disney.go.com/disneychannel/originalmovies/starstruck/?int_cmp=dcom_sta_dcom_tv_nav_ico__I,,tt1579247,,"Jessica Olsen goes to Los Angeles with nothing more in mind that visiting her grandparents while her sister tries to meet Christopher Wilde. One night she meets Christopher Wilde. They go an an adventure around Los Angeles and start to like each other. When Jessica returns home, Christopher, on national TV, says he doesn't know her, and never met her.",0,0,StarStruck,en +43754,The Killing Jar,2010-02-14,92.0,,,tt1270296,,"A stranger armed with a shotgun takes seven patrons hostage in a remote roadside diner. But as the body count increases, the desperate survivors discover that one of the hostages may be even more dangerous than their captor.",400000,0,The Killing Jar,en +54524,The Robber,2010-02-14,96.0,http://www.kinolorber.com/film.php?id=1170,,tt1339161,,"A champion marathoner leads a double life as a serial bank robber, sprinting between fixes (and away from police cavalcades) as many as three times a day.",3900000,208475,Der Räuber,de +35025,Le Mac,2010-02-16,90.0,,,tt1437361,,A mild-mannered banker is forced to masquerade as a notorious gangster and pimp.,0,0,Le Mac,fr +38325,How I Ended This Summer,2010-02-17,124.0,,,tt1588875,,Two men at a remote Arctic base begin mistrusting each other after an important radio message.,2500000,0,Как я провёл этим летом,ru +55283,Leader,2010-02-19,172.0,,,tt1613040,The Campaign Begins,"Upon the death of his father, Arjun Prasad campaigns to become the CM of Andhra. He hopes to eradicate corruption from Indian Politics.",0,1458709,లీడర్,te +44997,Phyllis and Harold,2010-02-19,85.0,,,tt1382323,If you had to do it again...would you?,"Phyllis and Harold is a frank journey through a disastrous 59 year old marriage. Drawing on a lifetime of her family's home movies and interviews made over 12 years, filmmaker Cindy Kleine mixes reportage, cinema verite and animation to uncover family secrets and tell a story that could not be shown publicly as long as her father was alive.",0,0,Phyllis and Harold,en +42579,Il figlio più piccolo,2010-02-19,0.0,,,tt1417038,,,0,0,Il figlio più piccolo,it +32845,Wrong Side of Town,2010-02-23,88.0,,,tt1431191,Who Wants To Die First?,"Ex-Navy Seal Bobby Kalinowski lives a quiet, peaceful life as a landscape architect in an LA suburb with his wife Dawn and 16 year old daughter Brianna. Tonight they are invited out for an evening on the town by new neighbors clay and Elise Freeman to a happening club downtown. Little did they know that this would be the start of a life or death ordeal for the group.",1500000,0,Wrong Side of Town,en +30061,Justice League: Crisis on Two Earths,2010-02-23,75.0,http://www.warnerbros.com/justice-league-crisis-two-earths,,tt1494772,"When Justice meets its match, worlds collide.","A heroic version of Lex Luthor from an alternate universe appears to recruit the Justice League to help save his Earth from the Crime Syndicate, an evil version of the League. What ensues is the ultimate battle of good versus evil in a war that threatens both planets and, through a devious plan launched by Batman's counterpart Owlman, puts the balance of all existence in peril.",0,0,Justice League: Crisis on Two Earths,en +33107,And Soon the Darkness,2010-02-25,91.0,http://www.andsoonthedarkness.com,,tt1391034,Alone. Stranded. No One to Trust.,"When two American girls on a bike trip in a remote part of Argentina split up and one of them goes missing, the other must find her before her worst fears are realized.",0,0,And Soon the Darkness,en +47812,Love and the City 2,2010-02-25,93.0,,106784,tt1510274,,"Our three hapless heroes - Igor, Artyom, and Sauna - return for another lesson from St. Valentine. This time they must learn the true value of fatherhood.",0,10198357,Lyubov V Bolshom Gorode 2,ru +48763,Eyyvah Eyvah,2010-02-26,0.0,,131992,tt1594918,,,0,0,Eyyvah Eyvah,tr +44303,Higglety Pigglety Pop! or There Must Be More to Life,2010-03-02,24.0,,,tt1603847,,"Jennie the terrier has everything a dog could ever wish for, but still feels that something is missing. She leaves home to discover what that is.",0,0,Higglety Pigglety Pop! or There Must Be More to Life,en +57311,"Thelma, Louise et Chantal",2010-03-03,0.0,,,tt1566948,,,0,0,"Thelma, Louise et Chantal",fr +35428,What Men Talk About,2010-03-04,93.0,,122776,tt1595366,,"Four old friends - Kamil, Lesha, Sasha and Slava - all well-to-do professionals in their late 30s embarking on a two days road trip from Moscow to Odessa. They wish to escape the metropolis and the everyday routine of work, family and girlfriends to relax in a nightclub run by Slava's friend and to see the popular band B-2 show.",1950000,12005838,О чём говорят мужчины,ru +61035,Hier kommt Lola,2010-03-04,96.0,,,tt1543017,,,0,0,Hier kommt Lola,de +234284,Time of Eve: The Movie,2010-03-05,106.0,http://timeofeve.com/,,tt1715210,,"In the not-too-distant future, androids have come into common usage. Rikuo Sakisaka, who has taken robots for granted for his entire life, one day discovers that Sammy, his home android, has been acting independently and coming and going on her own. He finds a strange phrase recorded in her activity log, ""Are you enjoying the Time of Eve?"". He, along with his friend Masakazu Masaki, traces Sammy's movements and finds an unusual cafe, ""The Time of Eve"". Nagi, the barista, informs them that the cafe's main rule is to not discriminate between humans and androids. Within the cafe, androids do not display their status rings, and, when patrons depart, the door is automatically locked for two minutes to prevent someone from following them to discover their true nature.",0,0,イヴの時間 劇場版,ja +60677,Kohtaamisia,2010-03-05,0.0,,,tt1428457,,,0,0,Kohtaamisia,fi +44211,Draquila - L'Italia che trema,2010-03-07,0.0,,,tt1650404,,,0,0,Draquila - L'Italia che trema,it +136921,Pixels,2010-04-01,3.0,,,tt1635656,New York City is invaded by 8-bit creatures.,New York City is invaded by 8-bit creatures.,0,0,Pixels,en +52013,Marwencol,2010-03-12,83.0,,,tt1391092,"When his world was stolen, Mark Hogancamp made a world of his own.","After a vicious attacks leaves him brain-damaged and broke, Mark Hogancamp seeks recovery in ""Marwencol"", a 1/6th scale World War II-era town he creates in his backyard.",0,58,Marwencol,en +49833,Ay Lav Yu,2010-03-12,,,,tt1526284,,,0,0,Ay Lav Yu,tr +48376,Severe Clear,2010-03-12,93.0,http://www.severeclearthemovie.com/,,tt0494826,Uncertainty...Chaos...Disorder. This is war.,"As part of the first wave in the War on Terror, First Lieutenant Mike Scotti (awarded the Navy and Marine Corps Achievement Medal with Combat ""V"") served on the front lines during the 21 day advance to Baghdad. His experiences in Afghanistan as well as Iraq put him face to face with the sobering realities of war on a daily basis. Severe Clear offers an unflinching look at life on the battlefield through the eyes of someone who was there.",0,0,Severe Clear,en +45133,Sebbe,2010-03-12,83.0,http://www.sfi.se/sv/svensk-filmdatabas/Item/?type=MOVIE&itemid=67755,,tt1548629,,"Duct tape, electrical cables, trigger, explosives. Sebbe never planned to build a bomb. It just happened. Sebbe is 15 years old and lives with his mother in an apartment that is too narrow. He does his best. He never strikes back. Sebbe loves his mother because he knows nothing else. In the junkyard the dream is alive, and in the hands of Sebbe, dead objects come to life. Here he has the power to create. Here he is free - but alone. His isolation grows as his world shrinks, until one day he is completely isolated with no other than his mother. And when she falls, everything falls.",0,0,Sebbe,sv +23169,Remember Me,2010-03-12,113.0,http://rememberme-movie.com/,,tt1403981,Live in the moments.,"Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.",16000000,56032889,Remember Me,en +55934,Cold Weather,2010-03-13,96.0,,,tt1497874,,"A guy who moves back to Portland, Oregon becomes involved in the mystery of his ex-girlfriend's disappearance.",0,0,Cold Weather,en +82627,Man On a Mission: Richard Garriott's Road to the Stars,2010-03-14,94.0,,,tt1611990,,,0,0,Man On a Mission: Richard Garriott's Road to the Stars,en +189197,The Pacific,2010-03-15,540.0,http://www.hbo.com/the-pacific/index.html,,tt0374463,Hell was an ocean away,"A 10-part mini-series from the creators of ""Band of Brothers"" telling the intertwined stories of three Marines during America's battle with the Japanese in the Pacific during World War II.",120000000,0,The Pacific,en +27573,The Bounty Hunter,2010-03-16,110.0,http://www.thebountyhunter-movie.net/,,tt1038919,"It's a Job. It Isn't Personal. Well, Maybe a Little...","Milo Boyd is a bounty hunter whose latest gig is rather satisfying, as he finds out that the bail-skipper he must chase down is his own ex-wife, Nicole -- but she has no intention of getting nabbed without a fight. Complicating matters, Nicole's wannabe-boyfriend, Stewart, joins the chase.",40000000,136000000,The Bounty Hunter,en +41211,Heartbreaker,2010-03-17,105.0,http://www.heartbreakermovie.com/,,tt1465487,He's broken every heart except his own... until now.,Alex and his sister run a business designed to break up relationships. They are hired by a rich man to break up the wedding of his daughter. The only problem is that they only have one week to do so.,8700000,47355187,L'arnacoeur,fr +31867,Repo Men,2010-03-18,111.0,http://www.repomenarecoming.com/,,tt1053424,"For a price, any organ in your body can be replaced. But it can also be repossessed.","In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.",32000000,18409891,Repo Men,en +68987,Cooking With Stella,2010-03-19,0.0,,,tt1479676,,A woman cooks for clients and tries to keep her thefts of food and money from being discovered.,0,0,Cooking With Stella,it +53354,In Their Sleep,2010-03-21,79.0,,,tt1285240,,"Sarah's life is in pieces after the brutal death of her 18 year-old son. One night, her car accidentally hits Arthur, a young man the same age as her boy who is running from a burglar. Sarah sympathizes with him and takes him in, only to be tracked down by the burglar whose murderous rage towards Arthur forces her to take action.",0,0,Dans ton sommeil,fr +37645,22 Bullets,2010-03-23,115.0,http://www.22bullets.co.uk/,,tt1167638,The revenge of the Professional.,"Charly Matteï has turned his back on his life as an outlaw. For the last three years, he's led a peaceful life devoting himself to his wife and two children. Then, one winter morning, he's left for dead in the parking garage in Marseille's Old Port, with 22 bullets in his body. Against all the odds, he doesn't die...",24000000,0,L'Immortel,fr +52903,Steam of Life,2010-03-26,80.0,,,tt1583323,,"Finnish men in sauna, speaking straight from the heart.",580000,0,Miesten vuoro,fi +87229,King's Road,2010-03-26,99.0,,,tt1524553,When you are strange,After 3 years abroad Junior returns to Iceland with his set of problems hoping that his father can sort them out but his homecoming isn't quite what he had expected.,0,0,Kóngavegur,is +39840,"If I Want to Whistle, I Whistle",2010-03-26,94.0,,,tt1590024,,"A teenager prisoner awaits his release when two weeks before that happens he's told that his mother is returned home. Meanwhile, he finds himself in love with a Sociology student, Ana, working in the penitentiary as an intern.",0,0,"Eu cand vreau să fluier, fluier",ro +23048,Hot Tub Time Machine,2010-03-26,101.0,http://www.mgm.com/view/Movie/2387/Hot-T...,313576,tt1231587,Kick some past,"A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.",36000000,64572262,Hot Tub Time Machine,en +42892,Happy Family,2010-03-26,90.0,,,tt1455810,,"A blocked screenwriter, Ezio (Fabio De Luigi), is trying to finish a story about two off-kilter families thrown together when their teenage children announce they’re getting married. So Ezio writes himself into the story with a romantic part—a development his characters welcome, as they’ve got some ideas of their own for bigger and better roles.",0,0,Happy Family,it +41505,Shelter,2010-03-27,112.0,,,tt1179069,Evil will rise.,A female forensic psychiatrist discovers that all of one of her patient's multiple personalities are murder victims. She will have to find out what's happening before her time is finished.,22000000,851517,Shelter,en +45792,Amish Grace,2010-03-28,88.0,,,tt1559025,,"When a gunman killed five Amish children and injured five others in a Nickel Mines, Pennsylvania schoolhouse shooting in October of 2006, the world media attention rapidly turned from the tragic events to the extraordinary forgiveness demonstrated by the Amish community.",0,0,Amish Grace,en +72678,Henry,2010-03-31,0.0,,,tt1570594,,,0,0,Henry,fr +56601,The Perfect Game,2010-04-01,118.0,http://www.theperfectgamemovie.com,,tt0473102,Dream for the fences.,"Based on a true story, a group of boys from Monterrey, Mexico who become the first non-U.S. team to win the Little League World Series.",12500000,3878993,The Perfect Game,en +41416,Au Revoir Taipei,2010-04-02,85.0,,,tt1291125,,"Kai (Jack Yao), who works at his parent's noodle shop by day and spends his nights in a bookstore to learn French, decides to go to Paris after his girlfriend, who recently left for Paris, dumps him by phone. Then the local neighborhood mafia boss offers Kai a free plane ticket to Paris if he takes a mysterious package with him.",0,0,一页台北,zh +58396,Joy,2010-04-08,0.0,http://www.joy-film.nl/joy/,,tt1465490,,"Joy is an emotionally damaged young woman of eighteen, who was given up at birth, to grow up in homes and with foster families. She lives on the fringes of society, getting by on benefits and earning a little extra by playing the accordion in the subway. In addition, she is a skilled shoplifter and has never been caught.",0,0,Joy,en +224714,Kshanbhar Vishranti,2010-04-09,0.0,,,tt2022444,,"In today's hectic world, what everyone really needs is a moment of respite.",0,0,Kshanbhar Vishranti,en +11403,The River Why,2010-04-09,101.0,,,tt1241329,One man's struggle to catch his dreams.,A young man abandons his family for a solitary life of fly-fishing. His goal was to find his own way in the fishing world and thereby find himself and love.,0,0,The River Why,en +51334,Beş Şehir,2010-04-09,0.0,,,tt1523415,,,0,0,Beş Şehir,tr +43200,Basilicata coast to coast,2010-04-09,105.0,,,tt1529233,,A music group and a journalist cross the region of Basilicata by foot to attend a music festival.,0,0,Basilicata coast to coast,it +268539,The Builder,2010-04-10,94.0,,,tt1549050,,"Having set out from coastal Queens to the Catskills, an Irish immigrant carpenter finds himself overcome by an inexplicable fatigue.",0,0,The Builder,en +420481,Путь к себе,2010-04-10,,,,tt1586262,,,0,0,Путь к себе,ru +45725,Adventures of a Teenage Dragonslayer,2010-04-16,88.0,,,tt1373149,Algebra. Bullies. Dragons. 7th grade is TOUGH!,Arthur unwittingly discovers the secret to stopping an evil dragon who threatens to destroy all civilization.,3250000,0,Adventures of a Teenage Dragonslayer,en +54105,Immigration Tango,2010-04-17,92.0,,,tt1415269,It takes 4 to tango.,"When Elena, a Russian immigrant studying in Miami and Carlos her Columbian boyfriend run out of legal options for staying in the U.S. the couple switch partners with Betty and Mike, an American couple who are also their best friends. All is well until the stress of keeping up appearances to their family members and a savvy immigration enforcement agent eventually begins to take its toll.",0,0,Immigration Tango,en +36736,The Drawn Together Movie: The Movie!,2010-04-20,70.0,http://www.comedycentral.com/shows/drawn_together/index.jhtml,,tt1546036,,Eight housemates on a fake animated reality TV show realize they've been canceled and set off on a journey to get back on the air.,0,0,The Drawn Together Movie: The Movie!,en +125344,Independence,2010-04-21,77.0,,,tt1346973,,"Early 20th century Philippines. The sounds of war signal the arrival of the Americans. A mother and son flee to the mountains, hoping for a quiet life. One day, the son discovers a wounded woman in the middle of the forest, and decides to bring her home.",0,0,Independencia,es +75090,Beware the Gonzo,2010-04-22,94.0,http://bewarethegonzo.webs.com/,,tt1412442,Power to the picked on!,"Eddie ""Gonzo"" Gilman is starting a revolution. When the wild-eyed rebel journalist is ousted from his prep school's newspaper by its über-popular editor, Eddie fronts an underground movement to give a voice to all the misfits, outcasts, and nerds. Soon the power of the press is in Eddie's hands... but will he use it wisely?",0,0,Beware the Gonzo,en +63414,Darling,2010-04-23,152.0,,,tt1649303,,Prabhas (Prabhas) has a childhood sweetheart named Nandini (Kajal Agarwal) and they are separated during their childhood. Nandini migrates to Swiss along with her father. Meanwhile Prabhas rejects love proposals from other girls as his heart belongs to Nandini. Prabhas gets a chance to meet Nandini for the first time after the separation during the reunion of their respective parents who have studied together. The rest of the story is all about how Prabhas wins the love of Nandini.,0,0,డార్లింగ్,te +34806,The Back-Up Plan,2010-04-23,106.0,http://www.theback-upplan.com/,,tt1212436,"Fall in love, get married, have a baby. Not necessarily in that order.","When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.",35000000,77477008,The Back-Up Plan,en +45013,Burning Palms,2010-04-23,112.0,http://www.theburningpalms.com/,,tt1283887,Five Tales That Will F#%! You Up For Life,"A subversive tale that interlaces five stories set in Los Angeles, where no taboo is left unexplored as each character careens toward a dark and often comic fate",5800000,0,Burning Palms,en +82622,Violet Tendencies,2010-04-24,99.0,http://www.violettendenciesmovie.com,,tt1407055,Looking for a straight answer?,A woman tries to distance herself from her gay friends in an effort to land a straight boyfriend.,0,0,Violet Tendencies,en +82079,Sons of Perdition,2010-04-24,85.0,,,tt1296893,The Story of Polygamy's Exiled Teens,An inside look at polygamist teens who have become religious refugees in mainstream America.,0,0,Sons of Perdition,en +58051,Housefull,2010-04-30,135.0,http://housefull.erosentertainment.com/,142015,tt1573072,"He found the girl of his dreams, he fell in love and he got married... to all three.","Believing himself to be a jinx and bringing bad luck upon himself and others, a man attempts to find true love, but ends up in very complicated relationships.",0,0,हाउसफुल,hi +231762,8,2010-04-30,9.0,,,tt1592502,,"In the depths of a snowy forest in an unknown wartime, two soldiers from opposing armies try to outwit each other in a perilous game of cat and mouse - until they find themselves outplayed by destiny.",0,0,8,en +81414,Ingrid,2010-04-30,0.0,,,tt1305897,,,0,0,Ingrid,es +63348,The Encounter,2010-05-03,85.0,,168949,tt1663680,,"When five strangers with nothing in common come together at a remote roadside eatery, they place their orders with the diner's omniscient owner, who seems to know everything about them ... and is eerily reminiscent of Jesus Christ.",0,0,The Encounter,en +37932,Flicka 2,2010-05-04,96.0,,,tt1381767,Sometimes you have to break free to find yourself.,"Carrie is a big-city teenager whose life is turned upside down when she moves to a horse ranch in Wyoming to live with her father. But everything changes when Carrie meets Flicka, a wild, jet-black mustang who's just as free-spirited and strong-willed as Carrie. The two form a special bond and Carrie opens her heart to her father and a handsome, local boy, but when a jealous rival puts Flicka's life in jeopardy, Carrie must do whatever it takes to save her best friend.",0,0,Flicka 2,en +43209,Ong Bak 3,2010-05-05,95.0,http://ongbak3film.com/,94589,tt1653690,,"Ong Bak 3 picks up where Ong Bak 2 had left off. Tien is captured and almost beaten to death before he is saved and brought back to the Kana Khone villagers. There he is taught meditation and how to deal with his Karma, but very soon his arch rival returns challenging Tien for a final duel.",0,2340363,องค์บาก 3,th +76142,Cameraman: The Life and Work of Jack Cardiff,2010-05-05,86.0,,,tt1626811,,"In 2001 Jack Cardiff (1914-2009) became the first director of photography in the history of the Academy Awards to win an Honorary Oscar. But the first time he clasped the famous statuette in his hand was a half-century earlier when his Technicolor camerawork was awarded for Powell and Pressburger's Black Narcissus. Beyond John Huston's The African Queen and King Vidor's War and Peace, the films of the British-Hungarian creative duo (The Red Shoes and A Matter of Life and Death too) guaranteed immortality for the renowned cameraman whose career spanned seventy years.",0,0,Cameraman: The Life and Work of Jack Cardiff,en +69976,Glukhar v kino,2010-05-06,0.0,,,tt1620464,,,2500000,1477030,Glukhar v kino,ru +46660,I Love You Too,2010-05-06,107.0,,,tt1376709,,"Written by comedian Peter Helliar, I LOVE YOU TOO stars Brendan Cowell as Jim, a 30-something emotionally stunted man whose inability to declare his love to his girlfriend, Alice, threatens to cost him the best thing he ever had but leads him to befriend a talented dwarf who helps him find the words to get her back.",0,0,I Love You Too,en +42057,It's a Wonderful Afterlife,2010-05-07,99.0,http://www.itsawonderfulafterlife.com/,,tt1319716,Finding the right man can be murder,"Indian mother Mrs Sethi's (Azmi) obsession with marrying off her daughter turns murderous. With jokes that routinely miss the mark and cringeworthy slapstick, this black comedy farce shouldn't work. Somehow, though, it does. (c) Empire Magazine",0,0,Hai Marjawaan!,en +52918,The Oath,2010-05-09,90.0,,,tt1522857,,"Tells the story of two men, Abu Jandal and Salim Ahmed Hamdan, whose fateful encounter in 1996 set them on a course of events that led them to Afghanistan, Osama bin Laden, 9/11, Guantanamo, and the U.S. Supreme Court.",0,0,The Oath,en +23830,Last Night,2010-05-11,90.0,http://www.lastnightmovie.com/,,tt1294688,Temptation can lead anywhere.,"The story follows a married couple, apart for a night while the husband takes a business trip with a colleague to whom he's attracted. While he's resisting temptation, his wife encounters her past love.",7000000,7644937,Last Night,en +54099,Hyenas,2010-05-12,92.0,,,tt0887143,The Legend Is Real...,Roving clans of shape-shifting human/hyena creatures prowl and hunt for human prey. They are hunted by one man seeking revenge for the death of his loved ones.,0,0,Hyenas,en +42355,Taipei Exchanges,2010-05-14,82.0,,,tt1682949,,"Doris (Guey Lun Mei) simply wanted to open a refined, stylish coffee shop in a bohemian Taipei neighborhood, but when she's stuck with a load of useless gifts from the opening celebration, her younger sister Josie (Lin Zaizai) turns the café into a burgeoning bartering business. There, even a soulful song (by Japanese singer Atari Kosuke in a cameo) is a tradable commodity. One day, a traveler (Ching Han) brings in 35 soaps from around the world with a story for each of them, awakening Doris' imagination about the outside world that she has never seen.",0,0,第36個故事,zh +235450,Bloodmoney,2010-05-14,0.0,,,tt1773315,,,0,0,Bloodmoney,en +37813,Shadow,2010-05-14,77.0,http://www.shadowfilm.net/,,tt1425253,Reality Can Be Sicker Than Nightmares,"A Young soldier returning from Iraq goes on a high mountain adventure in a desolate place in Europe to forget his past, he will lear truth in a mysterious local legend discovering that reality can be sicker than nightmares.",0,0,Shadow,en +49787,The Reef,2010-05-15,94.0,http://reefmovie.com/,,tt1320291,Pray That You Drown First,A great white shark hunts the crew of a capsized sailboat along the Great Barrier Reef.,0,0,The Reef,en +10192,Shrek Forever After,2010-05-16,93.0,http://www.shrekforeverafter.com/,2150,tt0892791,It ain't Ogre... Til it's Ogre,"A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.",165000000,752600867,Shrek Forever After,en +40852,American Bandits: Frank and Jesse James,2010-05-18,88.0,,,tt1446675,,"After Jesse James is wounded by a bullet to the chest, Frank James splits the gang up and plans a rendezvous in four days time. With U.S.-Marshall Kane in hot pursuit, and betrayal within the outlaw band, the stage is set for a blazing and climactic shootout in the deserted town of 'Gila Wells'.",0,0,American Bandits: Frank and Jesse James,en +45244,"Life, Above All",2010-05-19,100.0,http://www.lifeaboveall.co.uk/,,tt1646111,,A touching mother-daughter relationship that reflects the modern South Africa.,0,0,"Life, Above All",en +43434,Carlos,2010-05-19,338.0,,,tt1321865,The man who hijacked the world,"The story of Venezuelan revolutionary, Ilich Ramirez Sanchez, who founded a worldwide terrorist organization and raided the OPEC headquarters in 1975 before being caught by the French police.",18000000,871279,Carlos,en +9543,Prince of Persia: The Sands of Time,2010-05-19,116.0,http://disney.go.com/disneypictures/princeofpersia,,tt0473075,Defy the Future,"A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time – gift from the gods that can reverse time and allow its possessor to rule the world.",150000000,335154643,Prince of Persia: The Sands of Time,en +60784,Win/Win,2010-05-20,81.0,,,tt1522334,,"Ivan is a true number cruncher and 'surfs the waves of the stock market' like a natural trader. He rakes in big profits for the bank. But all is not well. The new job gives Ivan sleepless nights. As Ivan rapidly becomes the most successful trader in town, he feels increasingly alienated from himself and the world around him. In spite of his unprecedented success Ivan has to get out. Before it's too late...",0,0,Win/Win,en +39240,The Truth,2010-05-20,98.0,,,tt1315419,The truth... Is always complicated.,"When a couple is taken hostage in their home by an intruder, a simple home invasion robbery turns into something much more complicated...",0,0,The Truth,de +46920,La nostra vita,2010-05-21,98.0,,,tt1509636,,"Claudio works on a site in the suburbs of Rome. He is madly in love with his wife who is pregnant with their third child. However, a dramatic event comes to upset this simple and happy life. In a rage for life, Claudio energetically fights against the injustice that fell upon him. Love and support from his friends and family as well as the laughter of his children will help him to triumph against the odds.",0,0,La nostra vita,it +103751,Täällä Pohjantähden alla II,2010-09-24,0.0,,463068,tt1433826,,"Akseli Koskela returns from prison and tries to learn living again. He's not allowed to take part in politics anymore, but he sees a lot of injustice around him. He raises a family with his wife Elina while another war is around the corner...",0,0,Täällä Pohjantähden alla II,fi +38031,You Will Meet a Tall Dark Stranger,2010-05-23,98.0,,,tt1182350,,"Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.",22000000,0,You Will Meet a Tall Dark Stranger,en +41994,David Cross: Bigger and Blackerer,2010-05-25,90.0,,,tt1646887,,"Bigger and Blackerer was taped during two shows, back-to-back on the same evening at Boston's Wilbur Theatre. Only by watching this video will you learn of Cross unique relationship with the deaf community, share his canny insights into the editorial machinations behind the Bible, and marvel at how well a bald, middle-aged white guy can fill out a pair of jeans.",0,0,David Cross: Bigger and Blackerer,en +79782,Venice,2010-05-25,110.0,,,tt1684935,,An atmospheric coming-of-age story featuring an imaginative young boy named Marek who dreams of escaping an increasingly dangerous Poland on the eve of war for beautiful Venice.,0,0,Wenecja,en +44937,Amélie au pays des Bodin's,2010-05-26,80.0,,,tt1636727,,,0,0,Amélie au pays des Bodin's,fr +42307,Road Train,2010-05-28,90.0,,,tt1241330,Driven to Hell,A supernatural thriller about a group of teenagers menaced by a driver-less train in the Australian outback.,0,0,Road Train,en +45556,Arctic Blast,2010-05-30,92.0,,,tt1523267,-70 Degrees and Dropping!,"When a solar eclipse sends a colossal blast of super chilled air towards the earth, it then sets off a catastrophic chain of events that threatens to engulf the world in ice and begin a new Ice Age.",5000000,0,Arctic Blast,en +37708,Wild Things: Foursome,2010-06-01,92.0,,33059,tt1523372,Enjoy the ride.,A murdered hotel millionaire's son finds himself tangled up in a game of seduction and murder after a raunchy night with three beautiful women.,0,0,Wild Things: Foursome,en +202183,Ein Schnitzel für drei,2010-06-01,,,,tt1327702,,,0,0,Ein Schnitzel für drei,de +76010,The last summit,2010-06-01,82.0,http://www.laultimacima.com,,tt1651902,,"Pablo was a priest. He knew he was going to die young. He gave his life to God ... and God accepted the offer. Now they say he's alive. Pablo was known and loved by countless people, that have gone on record about it after his death.",0,0,La ultima cima,en +39413,My Afternoons with Margueritte,2010-06-02,82.0,,,tt1455151,,An illiterate and lonely man bonds with an older and well-read woman.,0,0,La tête en friche,fr +44877,4.3.2.1,2010-06-02,117.0,,,tt1514041,"4 Girls, 3 Days, 2 Cities, 1 Chance.....","Jo is chained down in a dead end supermarket job while all her friends are all out on their own separate adventures. But a chance encounter with some diamond thieves sends their separate worlds on a collision course with not only each other, but fate itself.",4600000,1163967,4.3.2.1,en +53739,For the Good of Others,2010-06-03,102.0,,,tt1043800,,"Diego is a doctor so used to working in extreme situations that he has immunized himself to others' pain. He has switched off from his work, his partner and his commitment as a father. Over the course of a disturbing meeting, Diego is threatened with a gun. Hours later, he can only remember the sound of a bang and the strange feeling of having being hit with something more than a bullet. Diego has to take an irreversible decision which will affect his own life and that of his loved ones.",0,0,El mal ajeno,es +50779,And Everything Is Going Fine,2010-06-04,89.0,,,tt1122614,,"From the first time he performed Swimming to Cambodia - the one-man account of his experience of making the 1984 film The Killing Fields - Spalding Gray made the art of the monologue his own. Drawing unstintingly on the most intimate aspects of his own life, his shows were vibrant, hilarious and moving. His death came tragically early, in 2004; this compilation of interview and performance footage nails his idiosyncratic and irreplaceable brilliance.",0,0,And Everything Is Going Fine,en +38579,Marmaduke,2010-06-04,87.0,http://www.themarmadukemovie.com/,,tt1392197,Live Large,"When Phil and Debbie Winslow relocate from their native Kansas to the sunny climes of Orange County, their big-hearted, havoc-wreaking Great Dane gets a taste of the dog's life, California-style.",50000000,83761844,Marmaduke,en +56232,The Seaside Motel,2010-06-05,103.0,http://www.seaside-motel.net,,tt1669801,,"The Seaside Motel is trapped in the mountains, without even enough water to serve their guests 24 hours a day, much less having a view of a body of water of any kind.",0,0,Shîsaido Môteru,en +51276,Silent Souls,2010-06-06,77.0,,,tt1693830,,"Present days. A man and his companion go on a journey to cremate the dead body of the former beloved wife, on a riverbank in the area where they spent their honeymoon.",0,0,Ovsyanki,ru +51267,Out Of Order,2010-06-06,82.0,,,tt1725050,,A parliament member suddenly finds a dead body in his hotel room...,2200000,0,Na Izmene,ru +62116,Mozart's Sister,2010-06-09,120.0,,,tt1653911,,"A re-imagined account of the early life of Maria Anna 'Nannerl' Mozart, five years older than Wolfgang and a musical prodigy in her own right.",0,0,"Nannerl, la soeur de Mozart",fr +51875,Miss Nobody,2010-06-10,86.0,http://www.missnobodymovie.com/,,tt1129427,Climbing the corporate ladder can be murder.,A mild-mannered secretary discovers that she has a talent for murder as she ascends the corporate ladder.,0,0,Miss Nobody,en +51250,Gun,2010-06-10,81.0,,,tt1560954,One Gun. Many Lives Lost.,A drama set in the world of weapon dealing.,10000000,0,Gun,en +39013,Winter's Bone,2010-06-11,100.0,http://www.wintersbonemovie.com/,,tt1399683,Talking Just Causes Witnesses,"17 year-old Ree Dolly sets out to track down her father, who put their house up for his bail bond and then disappeared. If she fails, Ree and her family will be turned out into the Ozark woods. Challenging her outlaw kin's code of silence and risking her life, Ree hacks through the lies, evasions and threats offered up by her relatives and begins to piece together the truth.",2000000,13831503,Winter's Bone,en +313646,Mumbai Pune Mumbai,2010-06-11,0.0,,,tt1822266,,"A girl from Mumbai who comes to Pune to meet a prospective groom, with the idea of rejecting him, ends up spending the day with a complete stranger.",0,0,Mumbai Pune Mumbai,mr +60120,Finisterrae,2010-06-11,80.0,,,tt1794790,,Two ghosts walk along the Camino of Santiago.,0,0,Finisterrae,ca +50590,Norman,2010-06-11,97.0,http://www.normanthemovie.com/,,tt1247683,The only thing he cares about is not caring.,A teenager pretends to be dying from cancer as a way to cope with the realities of his daily existence and his father's terminal illness.,0,0,Norman,en +58763,God of Love,2010-06-12,18.0,,,tt1631323,,"A lovestruck, lounge-singing darts champion finds his prayers are answered -- literally -- when he mysteriously receives a box of love-inducing darts.",0,0,God of Love,en +39213,Coach,2010-06-13,0.0,,,tt1334521,Love is the Goal,A slacker trust-fund type finds the motivation to pick up a job as the coach of middle school soccer team,0,0,Coach,en +10193,Toy Story 3,2010-06-16,103.0,http://disney.go.com/toystory/,10194,tt0435761,No toy gets left behind.,"Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.",200000000,1066969703,Toy Story 3,en +39053,Cyrus,2010-06-18,91.0,http://www.foxsearchlight.com/cyrus/,,tt1336617,John met the woman of his dreams. Then he met her son ...,"With John's social life at a standstill and his ex-wife about to get remarried, a down on his luck divorcée finally meets the woman of his dreams, only to discover she has another man in her life - her son. Before long, the two are locked in a battle of wits for the woman they both love-and it appears only one man can be left standing when it's over.",7000000,0,Cyrus,en +97724,The Adonis Factor,2010-06-19,109.0,http://www.theadonisfactor.com,,tt1563778,,Gay men and their pursuit of physical perfection.,100,0,The Adonis Factor,en +64861,Thirst,2010-06-22,91.0,,,tt1101048,Open Water in the desert.,"After wrecking their car in the middle of the desert, two couples find themselves stranded with few supplies. When the heat intensifies and their precious water supply dwindles, the frantic friends begin betraying each other in the hopes of survival. Their civility rapidly deteriorates as they begin to experience overwhelming fear and desperation in this tense drama starring Lacey Chabert, Tygh Runyan, Brandon Quinn and Mercedes McNab.",0,0,Thirst,en +202984,When the Dragon Swallowed the Sun,2010-06-22,,,,tt1379210,,,0,0,When the Dragon Swallowed the Sun,it +51736,Bloomington,2010-06-23,83.0,http://www.bloomingtonthemovie.com/,,tt1409004,,A former child actress attends college in search of independence and ends up becoming romantically involved with a female professor. Their relationship thrives until an opportunity to return to acting forces her to make life-altering decisions.,0,0,Bloomington,en +101766,A Barefoot Dream,2010-06-24,121.0,,,tt1583213,,"After a series of pipe dream ventures go belly up, retired pro soccer player Kim Won-kang happens to visit East Timor, where he finds children playing the game barefoot on rocky pitches. Sensing a new business opportunity on finding the country doesn't have a single sporting goods store, he embarks on a scheme to get rich quick by purveying athletic shoes to the unshod youngsters. Sadly, no one there can afford to pay $60 for a pair of shoes, even on a generous installment plan, and before he knows it, he is reduced to coaching a team of ragged 10-year-olds and prospects are looking grim. Written by Palm Springs Internation Film Festival",0,0,맨발의 꿈,ko +83209,Mahler on the Couch,2010-06-24,97.0,http://www.mahleraufdercouch.de/,,tt1235537,,Alma Mahler's affair with the young architect Walter Gropius sets in motion a marital drama that forces her husband Gustav Mahler to seek advice from Sigmund Freud.,0,0,Mahler auf der Couch,de +140489,The Mother Of Invention,2010-06-25,105.0,http://www.imdb.com/title/tt1274589/,,tt1274589,,A mockumentary about an aspiring inventor who dreams of winning an annual young inventor award. The only problem is... he's never made an invention that works.,60000,0,The Mother Of Invention,en +40205,16 Wishes,2010-06-25,90.0,,,tt1646876,"Everyone's sweet 16 is special, Abby's is magical.","The story about Abby Jensen, a girl who's been eager to reach her 16th birthday and has kept a secret wish list since she was a little girl. When the Big Day actually arrives, utter disaster strikes, leaving Abby to think her birthday is ruined. But when a mysterious box of magical birthday candles arrives to turn things around, Abby's 16 Wishes start to come true. Her day gets better and better...until she makes one wish that threatens to change everything.",0,0,16 Wishes,en +66193,Sinners and Saints,2010-06-30,104.0,,,tt1130969,His city. His rules. No prisoners.,"In lawless storm ravaged New Orleans, eleaguered Detective Sean Riley is trying to cope with the death of his young son and the abandonment of his wife. Facing a probable suspension from the department, Riley is teamed with a young homicide Detective, Will Ganz, to help solve a series of brutal murders that have plunged the city into a major gang war. The two quickly realize there is something far more sinister going on than either could have ever imagined.",0,0,Sinners and Saints,en +39845,Love Ranch,2010-06-30,117.0,,,tt1125929,When It Comes To Love... Everyone Pays A Price.,Story of a couple that starts the first legal brothel in Nevada and a boxer they own a piece of.,0,0,Love Ranch,en +51976,Brother,2010-07-02,97.0,,,tt1588358,On this pitch... Life is on the line,"Two brothers fight to escape a violent and poor neighborhood in Caracas by playing soccer. Daniel wishes to play professionally while Julio supports the family with dirty money. The opportunity of a lifetime comes when a talent scout invites them to the Caracas Football Club. The boys' mother dies in a shootout forcing each brother to decide what it is more important to them:family, revenge, or achieving their dreams.",0,0,Hermano,es +56815,Post Mortem,2010-07-02,98.0,http://www.postmortemlapelicula.cl/,,tt1714886,,"In Chile, 1973, during the last days of Salvador Allende's presidency, an employee at a Morgue's recording office falls for a burlesque dancer who mysteriously disappears.",0,0,Post Mortem,es +57011,Alien vs. Ninja,2010-07-03,81.0,,,tt1592503,Only one can win.,"A band of ninja warriors, led by an Iga Ninja named Yamata, witness a giant ball of fire drop from the sky and crash into the forest. When the warriors find and attempt to identify the object, they discover aliens that attack and feast on them. Yamata and the survivors swear vengeance, but in challenging the aliens, they learn that their weapons have no effect.",0,0,Alien vs. Ninja,en +109979,18 Years Later,2010-07-04,107.0,,,tt1433802,,"Mirko and Genziano are two brothers trentacinquenni not seen since the day their mother, of English origin, died tragically in a car accident in which they were also involved. Since then Genziano went to live in London by his grandfather Henry and now works as a stockbroker. Mirko instead remained in Rome, to live with his father, working on it together in the same run-down shop. But, eighteen years later, Marcello dies, the father of two brothers. In his will, in fact, the father asks them to take on an old restored spider, his ashes over the grave of his mother in a village in Calabria, where the accident happened. This trip will forever change their lives.",0,0,Diciotto anni dopo,it +43923,It's Kind of a Funny Story,2010-07-06,101.0,http://focusfeatures.com/its_kind_of_a_funny_story,,tt0804497,Sometimes what's in your head isn't as crazy as you think.,A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.,8000000,6491240,It's Kind of a Funny Story,en +54155,Hands in the Air,2010-07-06,90.0,,,tt1634334,,"March 22, 2067. At dawn of life, Milana remembers her life, when she was a young Chechen immigrant in Paris, struggling for a better life along with her school friends.",0,0,Les Mains en l'Air,en +44155,The Italian,2010-07-07,102.0,,,tt1612608,,,0,0,L'Italien,fr +348601,Bridget Everett: Gynecological Wonder,2015-07-11,42.0,,,tt4851758,,A mix of cabaret and standup recorded at Joe's Pub in New York.,0,0,Bridget Everett: Gynecological Wonder,en +39781,The Kids Are All Right,2010-07-09,106.0,http://filminfocus.com/focusfeatures/film/the_kids_are_all_right/,,tt0842926,"Nic and Jules had the perfect family, until they met the man who made it all possible.","Two women, Nic and Jules, brought a son and daughter into the world through artificial insemination. When one of their children reaches age, both kids go behind their mothers' backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.",3500000,34705850,The Kids Are All Right,en +45649,Rubber,2010-07-09,85.0,http://www.rubberfilm.com/,,tt1612774,Are you TIRED of the expected?,"In the California desert, the adventures of a telepathic killer-tire, mysteriously attracted by a very pretty girl, as witnessed by incredulous onlookers.",500000,98017,Rubber,en +51739,The Secret World of Arrietty,2010-07-16,94.0,http://disney.go.com/official-sites/arrietty/index,,tt1568921,Do not be seen by humans. That's been the law of children of the underfloor.,"14-year-old Arrietty and the rest of the Clock family live in peaceful anonymity as they make their own home from items ""borrowed"" from the house's human inhabitants. However, life changes for the Clocks when a human boy discovers Arrietty.",37000000,145570827,借りぐらしのアリエッティ,ja +72660,I Don't Want to Go Back Alone,2010-07-18,17.0,http://www.lacunafilmes.com.br/sozinho/,,tt1687221,,"The arrival of a new student in school changes Leonardo's life. This 15 year-old blind teenager has to deal with the jealousy of his friend Giovana while figuring out the new feelings he's having towards his new friend, Gabriel.",0,0,Eu Não Quero Voltar Sozinho,pt +48495,Double Wedding,2010-07-20,87.0,,,tt1586740,,"Two sisters, no love lives. Both end up dating the same man, and inviting him to meet the family on December 17th. He doesn’t know there are two sisters or that he committed to two different dates on the same day.",104002432,0,Double Wedding,en +40662,Batman: Under the Red Hood,2010-07-27,75.0,http://www.warnerbros.com/batman-under-red-hood,,tt1569923,Dare to Look Beneath the Hood.,"Batman faces his ultimate challenge as the mysterious Red Hood takes Gotham City by firestorm. One part vigilante, one part criminal kingpin, Red Hood begins cleaning up Gotham with the efficiency of Batman, but without following the same ethical code.",0,6629178,Batman: Under the Red Hood,en +91334,Bad Blood: A Cautionary Tale,2010-07-28,0.0,,,tt1773294,,"BAD BLOOD chronicles how a ""miracle"" treatment for hemophilia became an agent of death for 10,000 Americans.",0,0,Bad Blood: A Cautionary Tale,en +85956,The New Year,2010-07-30,96.0,,,tt1560720,,"A young woman is forced to return to her hometown to take care of her ailing father and, in turn, finds herself living a life she never imagined for herself.",0,0,The New Year,en +42966,Once Upon a Time in Mumbaai,2010-07-30,135.0,,,tt1395054,The man Mumbai once feared. The man Mumbai now fears.,"A tale of two gangsters from the eras of past and present, whose lives enter parallel paths as they struggle to survive within Bombay's criminal underworld.",10,0,Once Upon a Time in Mumbaai,en +47065,Tales of an Ancient Empire,2010-07-31,86.0,,,tt1136688,,A princess is on a quest to unite the five greatest warriors to save her kingdom from a demon sorceress.,1000000,0,Tales of an Ancient Empire,en +54700,The Presence,2010-08-04,83.0,http://www.thepresencemovie.com/news.html,,tt1298594,Don't Believe Everything You Hear,"In this darkly romantic ghost story, a woman travels to an isolated cabin where she is stalked by an apparition who inhabits her space as his own. With the unexpected arrival of the woman’s boyfriend, the dark spirit’s haunting grows obsessive. Soon the woman begins to exhibit weirdly irrational behavior as the thin line between sanity and possession begins to unravel. Is she battling her inner demons, or is a much darker presence threatening them all?",0,0,The Presence,en +44436,Oddsac,2010-08-04,54.0,http://www.oddsac.com/,,tt1560776,,"Opening with torch-wielding villagers and a wall bleeding oil, this experimental film attaches vivid scenery and strange characters to the wonderful melodic wavelengths of the band Animal Collective, revitalizing the lost form of the ""visual album.""",0,0,Oddsac,en +43083,This is Sodom,2010-08-05,88.0,http://www.mako.co.il/sdom/,,tt1675197,,"When ancient Sodom is doomed to destruction due to its people's corrupt ways, Lot is the only righteous man destined to be spared.",2745000,5850000,Zohi Sdom,he +81616,At Ellen’s Age,2010-08-06,97.0,http://ellen.realfictionfilme.de/,,tt1468721,,"A German flight attendant's life spirals downward after she leaves her husband, quits her job, and joins a radical group of animal rights activists.",0,0,Im Alter von Ellen,de +53404,Love Crime,2010-08-09,104.0,,,tt1459012,Ambition. Manipulation. Revenge.,"In the sterile setting of a powerful multinational, two young women compete ... Isabelle is working under the orders of Christine, a woman of power she admires unreservedly.",0,0,Crime d'amour,fr +57627,A Little Thing Called Love,2010-08-12,118.0,,,tt1859438,First Love,"The ordinary 14 years old girl name Nam. she's unattractive or simple call... the ugly! But she had secretly in love with older guy in grade 10 name Chon, a most popular student in high-school. He's hot, perfect and generous. That's make girls in school going crazy about him, including Nam too. But she doesn't give up easily. She tried do everything to made her pretty good and outstanding in school. Because she hopes him turned around at her just once more time.",0,0,สิ่งเล็กเล็กที่เรียกว่า...รัก,th +49073,Just Like Me,2010-08-12,108.0,http://www.igualitaami.com/,,tt1625098,,"Refused to face his adulthood, a Casanova must deal with the fact that he has a young pregnant daughter from an earlier relationship.",0,0,Igualita a mi,es +43700,Big Money Rustlas,2010-08-14,95.0,,,tt1380784,"The good, the bad and the outrages!","The Insane Clown Posse heads back to the Wild West in this prequel to BIG MONEY HUSTLAS. Nothing happens in the dusty town of Mud Bug without the approval of gambling magnate Big Baby Chips (Violent J), and the locals turn and run when his henchmen come out to play. But when swaggering sheriff Sugar Wolf (Shaggy 2 Dope) teaches the locals to fight back, Big Baby Chips and his gang head for the hills in a hail of gunfire.",0,0,Big Money Rustlas,en +51548,The Invisible Eye,2010-08-19,97.0,,,tt1313254,,"Spying on her students, a teacher finds an exciting hobby.",0,0,La mirada invisible,es +56596,Trust Me,2010-08-20,109.0,,,tt1230196,,A comical fresco on human misdemeanors and betrayals... A film about our right to not be perfect.,0,0,Puss,sv +44716,In a Better World,2010-08-26,119.0,http://www.sonyclassics.com/inabetterworld/,,tt1340107,When We Are Pushed To The Edge We Discover The Line Between Justice And Revenge,"The lives of two Danish families cross each other, and an extraordinary but risky friendship comes into bud. But loneliness, frailty and sorrow lie in wait.",15000000,0,Hævnen,da +59117,Torrente 4: Lethal crisis,2011-03-11,93.0,,2248,tt1417108,,"In Lethal Crisis, the world's most uncouth private eye is framed for a crime he didn't commit in the riotous fourth installment of the Torrente series.",0,0,Torrente 4: Lethal crisis,es +167012,The Wish List,2010-08-27,88.0,,,tt1498574,,"Sarah Fisher, an overly organized, by-the-numbers kind of woman, makes a ""wish list"" of all the qualities and traits her future husband should have. After finding the perfect man, she falls for a guy who meets none of her criteria and discovers that life and love don't always work out according to the master plan.",0,0,The Wish List,fr +12645,Inhale,2010-08-27,100.0,http://www.ifcfilms.com/films/inhale,,tt1196340,"One man, one chance, no rules.",A couple goes to dangerous lengths to find a lung donor for their daughter.,10000000,55089,Inhale,en +90992,Toilet,2010-08-28,109.0,,,tt1603933,,Ray is a 30 something engineer obsessed with Gundam toys. He has a motto not to become close to anyone. During his mother's funeral he showed no emotions. His life is further turned upside when he is forced to live with his older brother Maury and younger sister Lisa. Older brother Maury was a pianist but is now a recluse. Younger sister Lisa is a college student who tends to look down on those around her. Also in there home is their Japanese grandmother who doesn't speak English at all.,0,0,トイレット,ja +85709,Dooman River,2010-08-28,90.0,,,tt1500177,Life is hard.,"Chang-ho, 12, becomes friend with a North-Korean immigrant about the same age who just crossed the Dooman river, border between North-Korea and China. His mute sister and his wise grand-father will get along with him in a series of misfortunes.",0,0,Dooman River,ko +63578,The Trip,2010-09-01,107.0,http://www.ifcfilms.com/films/the-trip,309300,tt1740047,"Eat, drink and try not to kill each other.","When Steve Coogan is asked by The Observer to tour the country's finest restaurants, he envisions it as the perfect getaway with his beautiful girlfriend. But, when she backs out on him, he has no one to accompany him but his best friend and source of eternal aggravation, Rob Brydon.",0,951179,The Trip,en +52046,Haunted Changi,2010-09-02,79.0,http://hauntedchangi.com/,,tt1810636,,"HAUNTED CHANGI synopsis: In January of 2010, a group of local filmmakers began exploring the famously haunted Old Changi Hospital in Singapore with terrifying and tragic results. This movie pieces together the original Haunted Changi film crew's footage to tell the full story.",0,0,Haunted Changi,en +49009,The Way Back,2010-09-03,133.0,http://thewaybackthemovie.com/,,tt1023114,Their escape was just the beginning.,"Peter Weir's follow-up to Master & Commander (2003) is the stark & brilliant The Way Back, which takes on the theme of man's struggle for freedom. At the dawn of WWII, several men escape from a Russian gulag. The film details their perilous & uncertain journey to freedom, as they cross deserts, mountains, & several nations.",30000000,20348249,The Way Back,en +46738,Incendies,2010-09-04,130.0,http://www.sonyclassics.com/incendies/,,tt1255953,The search began at the opening of their mother's will.,"A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.",6800000,7103838,Incendies,fr +47559,The First Grader,2010-09-04,103.0,http://www.thefirstgrader-themovie.com/,,tt0790663,It's never too late to dream.,The true story of an 84 year-old Kenyan villager and ex Mau Mau freedom fighter who fights for his right to go to school for the first time to get the education he could never afford.,0,0,The First Grader,en +328712,Tarda estate,2010-09-04,,,,tt2406990,,,0,0,Tarda estate,it +91067,The Ditch,2010-09-06,112.0,,,tt1723112,,"It recounts the harrowing story of life at one of Mao's camps, at the end of the fifties, where 'rightists' were sent to be 're-educated through labor'.",0,0,Jiabiangou,en +48243,Essential Killing,2010-09-06,84.0,http://www.essentialkilling.com/,,tt1561768,Run to live... kill to survive.,A Taliban soldier struggles to survive after he escapes his captors and flees into the Polish countryside.,3167000,0,Essential Killing,en +53459,F,2010-09-07,79.0,http://www.f-movie.co.uk/,,tt1486670,Welcome to the school of hard knocks,A group of teachers must defend themselves from a gang of murderous kids when their school comes under siege after hours.,1300000,0,F,en +45132,Super,2010-09-09,96.0,http://www.thecrimsonbolt.com/,,tt1512235,"Shut up, crime!","After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.",2500000,324138,Super,en +60678,Prinsessa,2010-09-09,0.0,,,tt1428453,,Happier than the rest of us?,0,0,Prinsessa,fi +53399,The Solitude of Prime Numbers,2010-09-10,118.0,http://www.repubblica.it/lasolitudinedeinumeriprimi,,tt1441373,,"Prime numbers are divisible only by one and themselves. These numbers are solitary and incomprehensible to others. Alice and Mattia are both ""prime"", both haunted by the tragedies that have marked them in childhood: a skiing accident for Alice which has caused a defect in her leg, and the loss of his twin sister for Matthew.",0,0,La solitudine dei numeri primi,it +44945,Trust,2010-09-10,104.0,http://www.trustmovie2011.com/,,tt1529572,"What took her family years to build, a stranger stole in an instant.","A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.",9500000,120000,Trust,en +41556,The Romantics,2010-09-10,95.0,http://www.theromanticsmovie.com/,,tt1403988,,Seven close friends reunite for the wedding of two of their friends. Problems arise because the bride and the maid of honor have had a long rivalry over the groom.,4500000,123820,The Romantics,en +84569,Chosin,2010-09-10,86.0,http://www.frozenchosin.com/,,tt1561406,,"After 60 years of silence, the survivors of the Chosin Reservoir Campaign of the Korean War take us on an emotional and heart-pounding journey through one of the most savage battles in American history.",0,0,Chosin,en +63706,Mandrake,2010-09-11,89.0,,,tt1523367,,"An expedition led by adventurer DARREN McCALL and funded by the wealthy Harry Vargas braves the impenetrable jungle to retrieve a fabled bejeweled dagger from an ancient burial ground. But pulling the dagger from its rightful resting place awakens the long-dormant plant creature - part plant, part animal, and all bloodthirsty -- and sends it on a feeding frenzy from which there seems scant hope of survival or escape...",0,0,Mandrake,en +55347,Beginners,2010-09-11,105.0,http://focusfeatures.com/beginners,,tt1532503,This is what love feels like.,"A young man is rocked by two announcements from his elderly father: that he has terminal cancer, and that he has a young male lover.",3200000,5332926,Beginners,en +46020,Sharktopus,2010-09-25,89.0,,370374,tt1619880,Mankind was not meant to mess with the ways of nature,"The U.S. Navy's special group ""Blue Water"" builds a half-shark, half-octopus for combat. But the sharktopus escapes and terrorizes the beaches of Puerto Vallarta.",0,0,Sharktopus,en +68193,The Perfect Teacher,2010-09-12,90.0,http://www.mylifetime.com/movies/the-perfect-teacher,,tt1663689,You can't choose your family but she can.,"A spoiled, selfish teenager becomes infatuated with her teacher. She befriends his daughter as a way of worming her way into the family, and sets about manipulating every aspect of his life.",0,0,The Perfect Teacher,tr +70695,Dirty Girl,2010-09-12,90.0,http://www.dirtygirlmovie.com/,,tt1107319,Let them talk.,"It's 1987 and Danielle, the high school 'Dirty Girl', is running away. With her is chubby, gay Clarke, a bag of flour called Joan and a Walkman full of glorious '80s tunes.",4000000,55125,Dirty Girl,en +62728,Brighton Rock,2010-09-13,111.0,http://brightonrockmovie.com/,,tt1233192,Love. Murder. Revenge.,"Charts the headlong fall of Pinkie, a razor-wielding disadvantaged teenager with a religious death wish.",0,0,Brighton Rock,en +49018,Insidious,2010-09-13,103.0,http://www.insidious-movie.com/,228446,tt1591095,It's not the house that's haunted.,"A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.",1500000,97009150,Insidious,en +44874,Barbie: A Fashion Fairytale,2010-09-14,79.0,http://www.barbie.com/fashion-fairytale/,,tt1725929,Discover your inner sparkle!,"Join Barbie in a colourful, modern-day fairytale filled with fashion, friends and fun! Barbie and her dog Sequin jet off to visit her Aunt's amazing fashion house in Paris, and much to her surprise it's about to be shut down forever. After she discovers three enchanting Flairies with sparkle-magic powers, Barbie comes up with a brilliant idea to save the business. She even inspires Alice, a shy fashion designer, and together they create a dazzling runway fashion show. Barbie shows that magic happens when you believe in yourself.",0,0,Barbie: A Fashion Fairytale,en +61716,Killjoy 3,2010-09-14,76.0,,416305,tt1603314,You Can't Keep a Bad Clown Down,"The demon clown Killjoy is resurrected once again, but this time he is not given the name of his victim and is trapped in his realm. Using a magic mirror he lures four unsuspecting college students into his realm where he can have his macabre fun! A mysterious man returns and we finally discover who Killjoy's true target is!",0,0,Killjoy 3,en +45752,Scooby-Doo! Camp Scare,2010-09-14,72.0,,,tt1731767,,Scooby and the gang experience outdoor fun as they go back to Fred's old summer camp.,0,0,Scooby-Doo! Camp Scare,en +42188,Never Let Me Go,2010-09-15,104.0,http://www.foxsearchlight.com/neverletmego/,,tt1334260,These students have everything they need. Except time.,"As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.",15000000,9455232,Never Let Me Go,en +191476,42 One Dream Rush,2010-09-15,45.0,,,tt2073510,,An omnibus of 42 short films by auteur directors based on Dreams.,1000000,0,42 One Dream Rush,en +59507,Four Lovers,2010-09-15,103.0,,,tt1528750,,Mutual attraction leads two married couples to swap bedtime partners.,0,0,Happy Few,fr +55632,Peep World,2010-09-15,79.0,http://www.ifcfilms.com/films/peep-world-2,,tt1103273,,"On the day of their Father's 70th birthday party, four siblings come to terms with the publication of a novel written by the youngest sibling, that exposes the family's most intimate secrets.",0,10967,Peep World,en +73474,The High Cost of Living,2010-09-15,92.0,,,tt1479388,,"The story of a young, pregnant woman whose world falls apart when she loses her child in a hit and run accident. As her life unravels,Nathalie finds an unlikely protector in Henry, a down and out guardian angel who has followed her thread. But Henry is not quite the angel he seems...",0,0,The High Cost of Living,en +86261,Oki's Movie,2010-09-16,80.0,,,tt1714878,,"A love story between a middle aged professor, a young female student who prepares a movie and a student/filmmaker who drinks too much.",0,0,옥희의 영화,ko +53514,Cyrano Agency,2010-09-16,118.0,http://www.cyranoagency.com,,tt1786668,,"The Cyrano Agency is a dating agency which helps people who can't date to have a love life. The agency staff try helping their clients without being noticed. The agency's representatives Byeong-hoon (played by Eom Tae-woong)and Min-yeong (Park Sin-hye) are giving their best to pair up their client, Sang-yong (Choi Daniel), with his love interest named Hee-joong (Lee Min-jeong). But when Byeong-hun sees Hee-joong's profile, he begins to doubt their abilities. Will ""Cyrano Agency"" succeed in their mission?",0,0,시라노; 연애조작단,ko +51285,PG 16...,2010-09-16,89.0,,,tt1718766,,"Kir, Leya, Dasha and Max are student. Almost every experience is for a first time to them - first love, first disappointment, first betrayal...",0,0,Detyam do 16...,ru +45324,Casino Jack,2010-09-16,108.0,http://www.casinojack-movie.com/,,tt1194417,Honor. Integrity. Principles. Everything is negotiable.,"Based on a true story, a hot shot Washington DC lobbyist and his protégé go down hard as their schemes to peddle influence lead to corruption and murder.",12500000,1083683,Casino Jack,en +142712,8:28 AM,2010-09-17,91.0,,,tt1361825,,,0,0,8 Uhr 28,de +73700,Janie Jones,2010-09-17,114.0,http://www.janiejonesthemovie.com/,,tt1509130,Two strangers. One family.,A young girl who has been abandoned by her former-groupie mother informs a fading rock star that she is his daughter.,0,0,Janie Jones,en +72946,I Will Follow,2010-09-18,76.0,,,tt1624426,,"Chronicles a day in the life of a grieving woman, and the twelve visitors who help her move forward.",0,0,I Will Follow,en +62684,Snowman's Land,2010-09-19,0.0,,,tt1522296,,"When the wife of a crime boss is accidentally killed, the hit man who was hired to protect the remote house in which she was living tries to keep her death under wraps. Fearing vengeance from the gangster, he's soon locked in a fight for survival.",0,0,Snowman's Land,de +101669,Mother's Day,2010-09-23,112.0,,,tt1434435,Don't Misbehave.,Crazed members of a sadistic family return to their childhood home to terrorize the new owners.,11000000,0,Mother's Day,en +44566,Anjaana Anjaani,2010-09-24,151.0,http://www.anjaanaanjaani.erosentertainment.com,,tt1499201,All the greatest love stories...are between strangers,"Akash (Ranbir Kapoor) and Kiara (Priyanka Chopra) are trying to find luck in their life after several failed attempts to be successful in their careers and in love. Fed up, they both decide to commit suicide by jumping off a bridge. However, both land up on the same bridge at the same time.",6400000,5900000,Anjaana Anjaani,hi +38303,You Again,2010-09-24,105.0,,,tt1414382,What doesn't kill you... is going to marry your brother.,"History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.",20000000,32005248,You Again,en +46178,Bytte Bytte Købmand,2010-09-27,300.0,http://www.byttebyttekobmand.dk/,,tt1757696,,"The rules have changed In ""Bytte Bytte Købmand"". Anders and Thomas can freely use each other as to say whatever they want, and how they want. Neither of them can change the script they give each other!",0,0,Bytte Bytte Købmand,da +77864,That Girl in Yellow Boots,2010-09-27,103.0,,,tt1580704,,A British woman faces challenges while attempting to locate her father in India,0,0,That Girl in Yellow Boots,hi +73628,Turquaze,2010-09-29,0.0,,,tt1731230,,,0,0,Turquaze,tr +52369,The Pack,2010-09-29,85.0,,,tt1336601,,"In the middle of a snowy no man's land, Charlotte picks up Max, a hitchhiker; they stop in a truck-stop restaurant, and when Max doesn't come back from the bathroom, Charlotte starts looking for him in vain. She decides to return during the night but gets kidnapped by the bartender, La Spack, who turns out to be Max's mother and needs to feed her kids, 'The pack', a bunch of blood lusting ghouls. Charlotte now faces a terrifying reality: these ghouls are already dead... and hungry. Alone and in the middle of nowhere, she quickly realizes... she's next on the menu!",0,0,La Meute,fr +63281,Pro Lyuboff,2010-09-30,107.0,,,tt1718881,,"У девушки Даши, приехавшей с подругой «покорять» Москву, редкая специальность — преподаватель техники речи, а жизнь — самая обыкновенная: съемная квартира, невысокие гонорары и занятия с утра до вечера. Однажды Даша получает выгодное предложение — дать уроки преуспевающему бизнесмену Владу, участвующему в политических выборах. У героев начинается бурный роман. Но случайная встреча с женой Влада заставляет Дашу взглянуть на происходящее совсем с другой стороны. И Влад оказывается совсем не героем романа и вовсе не мужчиной мечты…",2000000,1268793,Про любоff,en +148284,Enthiran,2010-10-01,155.0,,,tt1305797,,"Dr. Vasi invents a super-powered robot, Chitti, in his own image. The scientific body, AIRD, that must approve the robot, declines it based on its not having emotions and the ability to make rational judgment. A sudden flash of lightning evokes emotions in the robot, and Chitti is seemingly ready for integration into the human world. Then, Chitti falls in love with Dr. Vasi's fiancée Sana and turns on his creator.",26400000,62000000,எந்திரன்,ta +41402,Let Me In,2010-10-01,116.0,http://www.letmein-movie.com,,tt1228987,Innocence dies. Abby doesn't.,A bullied young boy befriends a young female vampire who lives in secrecy with her guardian. A remake of the movie “Let The Right One In” which was an adaptation of a book.,20000000,24145613,Let Me In,en +72094,Thorne: Scaredycat,2010-10-01,128.0,,155093,tt1659253,,"D.I. Tom Thorne's latest case puts him on the hunt for not one, but two serial killers, who seem to be working together, yet killing separately.",0,0,Thorne: Scaredycat,en +209921,Slimtime,2010-10-01,8.0,http://www.slimtime-movie.com,,tt2023694,,"While his wife is undergoing slimming treatment, Andre goes on a discovery tour of this very unusual center.",0,0,Slimtime,de +53358,Fubar II,2010-10-01,85.0,http://fubar-themovie.com/,386495,tt1555747,Give'r Again,Terry and Dean head north to make sweet cash in the oil patch.,0,0,Fubar II,en +241982,One Husband Too Many,2010-10-04,0.0,,,tt1567385,,,0,0,Un Mari de Trop,fr +42941,30 Days of Night: Dark Days,2010-10-04,92.0,http://www.sonypictures.com/homevideo/30daysofnightdarkdays/,91660,tt1320304,Don't walk into the dark.,"After surviving the incidents in Barrow, Alaska, Stella Olemaun relocates to Los Angeles, where she intentionally attracts the attention of the local vampire population in order to avenge the death of her husband, Eben.",0,0,30 Days of Night: Dark Days,en +46368,The Rig,2010-10-05,90.0,http://www.therigmovie.com/,,tt1093906,Some things shouldn't be disturbed.,"In the midst of a tropical storm, the crew of an offshore oil rig must survive the rampage of a creature after invading its undersea habitat.",3000000,0,The Rig,en +153779,The Kingdom of Solomon,2010-10-06,110.0,,,tt1706450,,"Solomon, Prophet and the King, has asked God to give him an ideal kingdom which has never been given to anybody before. He is told to prepare himself and his subjects with evil and unearthly creatures that haunt the men.",5000000,0,The Kingdom of Solomon,en +133448,Macbeth,2010-10-06,160.0,,,tt1570337,,Part of the PBS Great Performance Series. Renowned Shakespearean actor Patrick Stewart features as the eponymous anti-hero in this Soviet-era adaptation of one of Shakespeare's darkest and most powerful tragedies.,0,0,Macbeth,en +75341,Budrus,2010-10-08,70.0,http://www.justvision.org/budrus,,tt1542411,It takes a village to unite the most divided people on earth.,"Follows a Palestinian leader who unites Fatah, Hamas and Israelis in an unarmed movement to save his village from destruction. Success eludes them until his 15-year-old daughter jumps into the fray.",0,0,Budrus,en +43931,My Soul to Take,2010-10-08,107.0,,,tt0872230,Only One Has The Power To Save Their Souls,A serial killer returns to his hometown to stalk seven children who share the same birthday as the date he was allegedly put to rest.,25000000,19829957,My Soul to Take,en +47405,Shameless,2010-10-08,98.0,,,tt1711487,,It is the summer of 1951. Lillian and Amund Wang have their first and only child. A boy. Or is it a girl?,0,0,Maskeblomstfamilien,en +89269,After the Fall,2010-10-09,84.0,http://www.hallmarkmoviechannel.com/sitesetting/?code=419-28242,,tt1737583,,"A serious accident that leaves a champion horseback rider paralyzed. The movie tells the story of the young rider’s indomitable spirit as she fights to walk again, and the response she gets from her family and friends as she makes her incredible journey",0,0,After the Fall,en +154779,Ed Hardy: Tattoo the World,2010-10-09,74.0,,,tt1625092,,"Ed Hardy is emblazoned on clothing worn by Madonna, Bruce Springsteen and Mick Jagger, on wine and dozens of other products. Now you'll meet the real Ed Hardy, the godfather of modern tattooing and artist extraordinaire who gave up a promising career in the fine arts to pursue his childhood obsession: tattoos.",0,0,Ed Hardy: Tattoo the World,en +48502,El Estudiante,2010-10-10,95.0,,,tt1261393,,"After retiring to the beautiful Mexican town of Guanajuato, a 70 year old decides to follow his dreams and enroll at the university where he stumbles upon a new generation and they are bound together by the novel Don Quijote de la Mancha.",0,170000,El Estudiante,es +241618,Louis Theroux: Law and Disorder in Lagos,2010-10-10,60.0,,,tt2577666,,"In the fourth installment of his Law and Disorder series, Louis goes to through Lagos, Nigeria, and follows the KAI (Kick Against Indiscipline) task force and union leader MC as well as other gang members.",0,0,Louis Theroux: Law and Disorder in Lagos,en +48836,Kill Katie Malone,2010-10-10,0.0,,,tt1523485,"you can't choose your family, but she can","College students and best friends Ginger Matheson, Jim Duncan, and Kyle ""Dixie"" Canning, pool their cash to buy a ""ghost"" in an online auction. The three think it's all a goof, but once they open up the antique box to examine their ""treasure,"" they unleash the vengeful spirit of an Irish servant girl who has been wreaking havoc on her owners throughout the generations",0,0,Kill Katie Malone,en +57749,The Clinic,2010-10-10,94.0,,,tt1345772,The truth lies within,"While traveling across country with her fiancé, Beth wakes alone in an isolated clinic to a mother's worst nightmare. Just how far will she go to save her child?",0,0,The Clinic,en +56212,The Stoker,2010-10-13,83.0,,,tt1746183,,"A shell-shocked Afghanistan war hero named Ivan Skryabin (Mikhail Skryabin) spends his days stoking the fire in a giant coal furnace. When he isn’t tending the flames, he keeps busy with other activities. He works on a historical novel. His adult daughter Sasha (Aida Tumutova) comes to visit. Local kids come to gaze at the flames. Gangsters, including a former Army sergeant (Aleksandr Mosin) and a sniper known as Bison (Yuri Matveyev), drop by to add special kindling to the fire.",0,183640,Кочегар,ru +52475,Young Goethe in Love,2010-10-14,100.0,,,tt1440180,,"Young law student Johann Wolfgang von Goethe is in love with Lotte, but Albert Kestner also has an eye for her.",0,0,Goethe!,de +72875,I Want to Be a Soldier,2010-10-14,88.0,http://iwanttobeasoldier.com/,,tt1637687,Is your family a safe environment?,"“I Want To Be A Soldier” is the story of Alex, an average 8 year old child who develops a morbid fascination for images portraying violence. He starts to have communication problems with his parents and other children at school and becomes withdrawn, inventing two imaginary friends.",0,0,De mayor quiero ser soldado,es +56937,Cold Prey III,2010-10-15,95.0,http://www.frittvilt3.com/,86553,tt1464535,,"Takes place in the '80s where a group of teenagers go to visit an abandoned hotel, only to find themselves hunted by a psychotic killer through the Norwegian woods.",0,0,Fritt vilt III,nb +47911,"Bo Burnham: Words, Words, Words",2010-10-19,63.0,,,tt1747960,,"Bo Burnham is back with a new one-man show full of his patented songs and wordplay, as well as haikus, dramatic readings, blasphemy, and so much more in his first hour-long special, shot live in his home town of Boston.",0,0,"Bo Burnham: Words, Words, Words",en +64780,Upside Down: The Creation Records Story,2010-10-19,101.0,http://www.upsidedownthemovie.com/,,tt1764726,The story of ’The most Rock ‘n’ Roll label ever’,"Over a quarter of a century since it began and a decade after it folded, this is the definitive film about Creation Records, one of the world's most successful and colorful independent labels. This is the story of the rock n roll dream and its accompanying nightmares. Millions of sales on both sides of the Atlantic, near bankruptcy, pills, thrills, spats, prats, success, excess, pick me ups, breakdowns and of course some of THE defining music of the late 20th Century. This is the definitive and fully authorised story of the UK's most inspired and dissolute label, from the Jesus & Mary Chain at the Living Room to Oasis at Knebworth.",0,0,Upside Down: The Creation Records Story,en +61935,Crazy About Ya,2010-10-20,120.0,http://zotvanadefilm.be,,tt1538545,,"In Crazy About Ya, different characters meet. Sometimes their stories are closely interwoven, sometimes they just brush past each other. But sooner or later everyone runs into the hero of this story, Saint Jan. As a true sanctus ex machina he makes sure that in the end, they are all a bit crazier about each other again.",0,3082901,Zot van A,nl +49028,Rakht Charitra,2010-10-21,123.0,http://www.rakhtcharitra.com/,228335,tt1664809,,A killer bandit decides to become a politician in order to avenge deaths in his family.,390000,0,रखता चरित्र,hi +44129,The Company Men,2010-10-21,104.0,http://www.companymenmovie.com/,,tt1172991,"In America, we give our lives to our jobs. It's time to take them back.","Bobby Walker lives the proverbial American dream: great job, beautiful family, shiny Porsche in the garage. When corporate downsizing leaves him and two co-workers jobless, the three men are forced to re-define their lives as men, husbands and fathers.",15000000,4882577,The Company Men,en +48186,The Boy Who Cried Werewolf,2010-10-22,97.0,,,tt1451423,,"A Californian family inherits a castle in Romania. This is especially exciting to the son, who is obsessed with monsters. And he is not disappointed.",0,0,The Boy Who Cried Werewolf,en +47059,Boxing Gym,2010-10-22,91.0,,,tt1653827,,"Explores the world of a boxing gym in Austin, Texas, dwelling on the discipline of training as people from all walks of life aspire to reach their personal best.",0,0,Boxing Gym,en +47863,Punching the Clown,2010-10-22,91.0,http://www.punchingtheclownmovie.com/,,tt1192624,Comedy is often misunderstood.,A satirical songwriter comes to Los Angeles and puts his life's work in jeopardy.,0,0,Punching the Clown,en +53999,My Super Psycho Sweet 16: Part 2,2010-10-22,0.0,,,tt1684915,It's one killer party!,"Following the murders at the Rollerdome, Skye Rotter leaves town in search of a normal life. Reunited with the mother who abandoned her as a child, Skye's dream of a happier life starts to take shape - until her serial killer father returns.",0,0,My Super Psycho Sweet 16: Part 2,en +48375,Brother's Justice,2010-10-22,80.0,,,tt1540803,,"Motivated by Box Office statistics, Dax Shepard has made a decision to leave comedy to pursue his dream of becoming an international Martial Arts action star.",0,0,Brother's Justice,en +83481,Heroes,2010-10-22,0.0,,,tt1483386,,"A young publicist, with a successful professional life but with an empty personal life, finds himself on a trip against time to get to an important business meeting. During the trip, he meets a girl and, although they are very different and have opposite ways of life, they click when recalling the most mythical and emotional time of their childhood: the last summer they spent with their gang",0,0,Herois,ca +111239,Edge,2010-10-23,92.0,,,tt1579948,,"A hotel. A cliff. Six lost people, looking for something, or looking to lose themselves.",0,0,Edge,en +149657,Dad,2010-10-25,71.0,,,tt1986914,,"After a long separation, a father and his son spend the day fishing on the river bank. On a beautiful autumn Sunday, surrounded by the majestic countryside, they seem to be alone in the world. They must start all over again.",0,0,Oča,sl +74447,The Hammer,2010-10-26,108.0,http://www.hamillthemovie.com/,,tt1094666,He knew he could be a champion. They knew he could be much more.,"A coming of age drama following the life of Matt Hamill, the first deaf wrestler to win a National Collegiate Wrestling Championship.",0,0,Hamill,en +124480,Father,2010-11-12,85.0,,,tt1274636,,"An old empty house. The guard who takes care of it. The priest of the town. Spaces, sounds, lights and shadows. Time goes by and the memories are shown in its walls and in the most hidden nooks.",0,0,Aita,en +56853,We Believed,2010-11-12,170.0,,,tt1365490,,"The stories of three young men who, in the wake of the ferocious repression by the Bourbon reign in 1828, decide to join Giuseppe Mazzini's Young Italy movement.",0,0,Noi Credevamo,it +91443,Chronic Town,2010-10-26,0.0,http://www.chronictownthemovie.com/,,tt0988035,,"Truman Korovin is a lonely, sharp-witted cab driver in Fairbanks, Alaska, 1980. The usual routine of picking up fares and spending his nights at his favorite bar, the Boatel, is disrupted when his girlfriend, Emily, dumps him on one of the coldest nights of the year. After an acid trip, Truman winds up in the local loony bin. Imprisoned in a grueling therapy group, Truman gets re-acquainted with loonies who are his old cab fares, which includes a local stripper he has insulted more than once. In this world, Truman must find or lose himself.",0,0,Chronic Town,en +86658,Zombie Christ,2010-10-27,100.0,,,tt1777642,The Most Blasphemous Story Ever Told,Druids resurrect the partially mummified remains of Jesus. They force the zombified Christ to commit unspeakable acts as their sect prepares to rule a new age of mankind.,5000,0,Zombie Christ,en +133160,Postcard,2010-10-27,114.0,,,tt1641397,,"Toward the end of World War II, middle-aged soldier Keita is entrusted with a postcard from a comrade who is sure he will die in battle. After the war ends, Keita visits his comrade's wife Yuko and bears witness to the tragic life she has led. This year's Oscar entry from Japan finds SHINDO in top form and his 49th and reportedly last film as fresh and poignant as ever. (from imdb)",0,0,一枚のハガキ,ja +38055,Megamind,2010-10-28,95.0,http://www.megamind.com,,tt1001526,His brain is off the chain.,"Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.",130000000,321887208,Megamind,en +87992,Where Once We Walked,2010-10-28,126.0,,,tt1841745,,,0,0,Där vi en gång gått,sv +48466,Scared Shrekless,2010-10-28,21.0,,2150,tt1725156,,"Shrek challenges Donkey, Puss in Boots and his other fairy tale character friends to spend the night in Lord Farquaad's haunted castle, telling scary stories to see who can resist becoming scared and stay the longest.",0,0,Scared Shrekless,en +69717,Ways to Live Forever,2010-10-29,90.0,http://www.waystoliveforever.com/,,tt1446208,,"Sam loves facts. He wants to know about UFOs and horror movies and airships and ghosts and scientists, and how it feels to kiss a girl. And because he has leukemia he wants to know the facts about dying. Sam needs answers to the questions nobody will answer.",0,0,Ways to Live Forever,en +55435,Broken Blade: Book Four - The Earth of Calamity,2010-10-29,50.0,http://breakblade.jp/,102940,tt1753855,,Fourth Break Blade Movie.,0,0,Break Blade 4: Sanka no Chi,en +70712,Te presento a Laura,2010-10-29,98.0,,,tt1684928,,"This is the story of 23-year-old Laura who lives in the largest city in the world and yet feels alone. She also knows the exact date in which she'll die: April 30. What Laura doesn't know is what she'll do from now till then, and thus she enrolls in a group of optimists, which she finds pathetic but fun. In that group she writes a list of 10 things she wants to do before she dies, some that mean a lot and some that are a lot of fun. The first thing on her list is to save a life.",0,0,Te presento a Laura,en +68716,Venus & Vegas,2010-11-01,95.0,,,tt0423474,"If Women are from Venus, Men are from VEGAS!","When three Vegas buddies attempt the score of a lifetime, they have to walk a fine line between their girlfriends who want their heads, and the mobsters who want them dead.",0,0,Venus & Vegas,en +44486,Mars,2010-11-03,90.0,,,tt1109488,,,0,0,Mars,en +41733,Due Date,2010-11-04,95.0,http://duedatemovie.warnerbros.com/,,tt1231583,Leave Your Comfort Zone,"Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the 'no-fly' list. Peter embarks on a terrifying journey when he accepts a ride from an actor.",65000000,211780824,Due Date,en +43938,Nice Guy Johnny,2010-11-04,89.0,http://www.edwardburns.net/,,tt1619037,,"Johnny Rizzo, is about to trade his dream job in talk radio for some snooze-ville gig that'll pay enough to please his fiance. Enter Uncle Terry, a rascally womanizer set on turning a weekend in the Hamptons into an eye-opening fling for his nephew. Nice guy Johnny's not interested, of course, but then he meets the lovely Brooke, who challenges Johnny to make the toughest decision of is life.",0,25,Nice Guy Johnny,en +49850,A Quiet Life,2010-11-05,105.0,,,tt1521090,,"The story of a man who murdered thirty-two people, gained power, and then got afraid because too many people wanted to kill him. One August morning, he disappeared. For fifteen years, everyone believed him dead.",0,1700000,Una vita tranquilla,it +44115,127 Hours,2010-11-05,94.0,,,tt1542344,There is no force more powerful than the will to live.,The true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.,18000000,35692920,127 Hours,en +46261,Don't Be Afraid of the Dark,2010-11-06,99.0,http://www.dontbeafraidofthedark.com/,,tt1270761,Fear is never just make believe,A young girl sent to live with her father and his new girlfriend discovers creatures in her new home who want to claim her as one of their own.,25000000,36993168,Don't Be Afraid of the Dark,en +69353,Apnea,2010-11-06,0.0,,,tt1686053,,"Dimitris, a 23 yr. old swimming champion, meets Elsa, a yound environmental activist. Their relation, and her sudden dissaperance, make him re-evaluate his settled life.",0,0,Apnoia,en +75018,Great Migrations,2010-11-06,315.0,,,tt1769803,,"Three years in the making, and from award-winning National Geographic cinematographers, Great Migrations takes viewers around the world on the arduous journeys millions of animals undertake to ensure the survival of their species. Shot from land and air, in trees and cliff-blinds, on ice floes and underwater, Great Migrations tells the formidable, powerful stories of many of the planet’s species and their movements, while revealing new scientific insights with breathtaking high-definition clarity. Narrated by Alec Baldwin.",0,0,Great Migrations,en +43641,Superman/Shazam!: The Return of Black Adam,2010-11-09,25.0,,,tt1701223,We fight for those you can't fight for themselves!,"Chosen the world’s protector against the Seven Deadly Enemies of Man – pride, envy, greed, hatred, selfishness, laziness and injustice – young Billy Batson accepts his destiny as Captain Marvel. Battling alongside Superman against nefarious Black Adam, Billy soon discovers the challenge super heroes ultimately face: is it revenge or justice?",0,0,Superman/Shazam!: The Return of Black Adam,en +48838,London Boulevard,2010-11-10,103.0,http://www.ifcfilms.com/films/london-boulevard,,tt1213648,Not every criminal wants to be one.,A parolee battles a gangster for the affections of a reclusive movie star.,25000000,4644108,London Boulevard,en +42684,Skyline,2010-11-11,100.0,,,tt1564585,Don't look up,"When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.",10000000,66821036,Skyline,en +53364,Der letzte schöne Herbsttag,2010-11-11,85.0,,,tt1670632,,,0,0,Der letzte schöne Herbsttag,de +228221,The Edge of Dreaming,2010-11-12,73.0,,,tt1609962,,"This is the story of a rational, skeptical woman, a mother and wife, who does not remember her dreams. Except once, when she dreamed her horse was dying. She woke so scared she went outside in the night. She found him dead. The next dream told her she would die herself, when she was 48.",0,0,The Edge of Dreaming,en +54527,Into Eternity,2010-11-12,75.0,http://www.intoeternitythemovie.com/,,tt1194612,,"Every day, the world over, large amounts of high-level radioactive waste created by nuclear power plants is placed in interim storage, which is vulnerable to natural disasters, man-made disasters, and to societal changes. In Finland the world’s first permanent repository is being hewn out of solid rock – a huge system of underground tunnels - that must last 100,000 years as this is how long the waste remains hazardous.",900000,0,Into Eternity,en +61527,Helena from the Wedding,2010-11-12,89.0,,,tt1394211,,"Newlyweds Alex and Alice host a New Year's Eve party for their closest friends at a remote cabin in the mountains. However, when an unexpected guest shows up, the group's facades begin to crumble.",0,0,Helena from the Wedding,en +50674,The Lost Future,2010-11-13,90.0,,,tt1615091,Welcome to the apocalypse.,"A group of post-apocalyptic survivors, struggle to survive in a world where jungles and forests and primeval wetlands and deserts have obliterated civilization. They staunchly face genetically mutating beasts and mysterious diseases in an attempt to re-establish the human race as masters of Earth.",0,0,The Lost Future,en +162374,Top Floor Left Wing,2010-11-15,110.0,,,tt1509842,,,0,0,Dernier étage gauche gauche,fr +214676,Mr. Dough and the Egg Princess,2010-11-18,12.0,,,tt1857816,,"Pandane to tamago hime is the story of a tiny Egg-girl who is forced to serve the evil Boar-like witch Baba Yaga. But after a blob of Dough comes to life, she befriends him and both escape from the witch's home at a Water mill on a cliff and set off to see the world",0,0,パン種とタマゴ姫,ja +297631,Spark of Being,2010-11-19,68.0,http://billmorrisonfilm.com/feature-length-films/spark-of-being,,tt1667485,,"Spark of Being, a close adaptation of Mary Shelley’s Gothic novel Frankenstein, explores the thematic interchangeability of three of the novel’s characters: the Captain, the Doctor, and the Creature. Spark of Being, which, as with all of Morrison's films, is dialogue-free, features Frank Hurley's original footage of Ernest Shackleton’s fated Antarctic expedition, along with a range of footage from other sources.",0,0,Spark of Being,en +91950,Flamenco Flamenco,2010-11-19,97.0,,,tt1550481,,A look at the history and traditions of flamenco music and dance.,0,0,Flamenco Flamenco,es +63498,Chico & Rita,2010-11-19,94.0,http://www.chicoandrita.com,,tt1235830,,"Chico is a young piano player with big dreams. Rita is a beautiful singer with an extraordinary voice. Music and romantic desire unites them, but their journey - in the tradition of the Latin ballad, the bolero - brings heartache and torment.",0,0,Chico & Rita,en +41283,Faster,2010-11-23,98.0,http://www.fasterthemovie.com/,,tt1433108,Slow Justice is no Justice,"Driver (Dwayne Johnson) has spent the last 10 years in prison planning revenge for the murder of his brother. Now that Driver is free to carry out his deadly plan only two men stand in his way- Billy Bob Thornton plays a veteran cop and Oliver Jackson-Cohen, a crazy hitman. With those two close on his trail, Driver races to carry out his mission as the mystery surrounding his brothers murder deepens.",24000000,23081726,Faster,en +49852,The Nutcracker: The Untold Story,2010-11-24,110.0,http://www.nutcrackerin3d.com/,,tt1041804,,"Set in 1920's Vienna, this a tale of a little girl, whose godfather gives her a special doll one Christmas Eve.",90000000,16178959,The Nutcracker: The Untold Story,en +245394,Fry and Laurie Reunited,2010-11-24,67.0,,,tt1786488,,Stephen Fry and Hugh Laurie are to reunite for a TV special to mark the 30th anniversary of their partnership.,0,0,Fry and Laurie Reunited,en +54525,Secrets in the Walls,2010-11-24,0.0,,,tt1559359,,"A single mom and her two daughters move from their cramped Detroit apartment to the suburbs but scratching, cries and shadows haunt their new home.",0,0,Secrets in the Walls,en +74103,Suicide Club,2010-11-25,96.0,,,tt1569505,,At sunrise five people meet on a high rise rooftop in order to leap to their deaths.,0,0,Suicide Club,de +246422,Fracture,2010-11-29,0.0,,,tt1726637,,,0,0,Fracture,fr +201643,Pit №8,2010-11-30,95.0,,,tt1727854,,"The eastern Ukrainian town of Snezhnoje, which prospered during the Soviet era when miners there were spoiled with all kinds of privileges, now lives in poverty.",0,0,Auk Nr. 8,et +61984,Space Battleship Yamato,2010-12-01,131.0,,,tt1477109,,"In 2199, five years after the Gamilons began an invasion of Earth, the planet has been ravaged by the aliens' bombs. The remnants of humanity have fled underground to escape the irradiated surface. One day, former pilot Susumu Kodai discovers a capsule sent from the planet Iscandar that tells of a device that can remove the radiation from the Earth's surface. The Earth Defense Force rebuilds the battleship Yamato with a new type of propulsion system to make the 148,000 light year trip to Iscandar in hopes of saving the Earth. Within one year, the radiation will drive the rest of humanity to extinction.",12000000,11212294,Space Battleship Yamato,ja +67509,Lily Sometimes,2010-12-01,103.0,,,tt1576450,,"After the death of her mother, a woman returns home to care for her sister.",2300000,0,Pieds nus sur les limaces,fr +50838,Wrecked,2010-12-04,91.0,,,tt1316622,When your mind is a mystery. You can survive the wilderness. But can you escape your past?,"A man awakens in a car wreck at the bottom of a steep cliff. He can't remember who he is or how he got there, but a report over the radio fills in some of the blanks, as it describes a violent bank robbery and names a perpetrator who happens to be sitting dead in the back seat.",0,8020,Wrecked,en +64882,Finding Mr. Destiny,2010-12-08,112.0,,,tt1826714,First Love Agency: at your service 24/7,"A woman named Seo Ji-Woo (Im Soo-Jung) traveled to India and met her first true love Kim Jong-Ok. Since that time Ji-Woo can't forget her first love. She then turns the company ""첫사랑 찾기 주식회사"" - which means literally ""Finding Your First True Love Company"" to help track down Kim Jong-Ok. Han Gi-Joon (Gong Yoo) started ""Finding Your First True Love Company"" and he takes on Seo Ji-Woo is the company's first client. The pair travel all over Korea to find Seo Ji-Woo's first love and & in the process Han Gi-Joon falls in love with his first client ...",0,0,김종욱 찾기,ko +37710,The Tourist,2010-12-08,103.0,http://thetourist-movie.com/,,tt1243957,It all started when he met a woman,"American tourist Frank (Johnny Depp) meets mysterious British woman Elsie (Angelina Jolie) on the train to Venice. Romance seems to bud, but there's more to her than meets the eye. Remake of the 2005 French film ""Anthony Zimmer"", written and directed by Jérôme Salle.",100000000,278731369,The Tourist,en +127329,Naked Soldier,2012-08-15,94.0,,309259,tt1857797,Extremely Dangerous!,"A gorgeous lethal killer, brainwashed by the villain, makes a startling discovery in a mission to eliminate a person she can in no way imagine.",0,0,Jue se wu qi,cn +266558,Casus Belli,2010-12-09,11.0,http://casusbellifilm.com/film/,,tt1726133,"If one man falls, we all fall down.","All kinds of people are waiting in seven different queues. The first person of each queue becomes the last of the next one, thus creating an enormous human line. But at the end of the line, it all begins backwards again.",0,0,Casus Belli,en +52696,Band Baaja Baaraat,2010-12-10,140.0,http://www.bandbaajabaaraat.com/,,tt1610452,,"Shruti and Bittoo decide to start a wedding planning company together after they graduate from university, but romance gets in the way of business.",0,0,Band Baaja Baaraat,hi +51423,Beyond,2010-12-10,99.0,http://www.heppfilm.se/beyond/,,tt1437366,,"A poignant story, told with sincerity and humor, about a young woman´s dramatic childhood and about her grief and the struggle to move on. Noomi Rapace plays the main character in her first feature after the success with the Millennium trilogy and she plays opposite her husband, actor Ola Rapace.Award winning actress Pernilla August makes her directorial debut with her take on the bestselling novel Svinalängorna by Susanna Alakoski.In other main roles we see rising star Tehilla Blad and the Finnish acclaimed actors, Ville Virtanen and Outi Mäenpää.A morning just before Christmas, Leena, 34, receives a phone call from a hospital in her childhood hometown telling her that her mother is dying. This news takes her on a journey to face her mother for the first time in her adult life. Leena has fought all her life to let go of her grief over her lost and dark childhood. She is now forced to deal with her past to be able to move on.",3000000,4800080,Svinalängorna,sv +57209,Inadequate People,2010-12-12,106.0,,,tt1722450,,"Adequacy is relative.Vitalik the main character of the movie seems to be pretty normal. With a respectable office job, a comfy little dwelling and a personal couch doctor, Vitalik looks as adequate as a human can possibly be. Wait till he drinks and drives himself into depression, and after that falls in love with an under-age girl living next door. Whos adequate now?",100000,0,Неадекватные люди,ru +57809,Six Degrees of Celebration,2010-12-12,89.0,,107465,tt1782568,Elki,A collection of several interlinked stories that happen on the New Year's eve...,5000000,22772019,Ёлки,ru +52264,A Cat in Paris,2010-12-13,70.0,,,tt1673702,"By day, a pet... By night, a thief!","A thrilling mystery that unfurls in the alleys and on the rooftops of the French capital, Paris, over the course of one adventurous evening.",0,309973,Une vie de chat,fr +54559,Minions: Orientation Day,2010-12-13,4.0,,,tt1830748,,"With so many jobs to choose from, the Minions have to make serious decisions after watching an 'Initiation Video'. What could go wrong?!",0,0,Minions: Orientation Day,en +64786,Yes or No,2010-12-16,107.0,http://www.yesornolovemovie.com/,,tt1906518,Yes or No,"Pie is a sweet girl who moves into a new college dorm room where she finds out that her new roommate Kim, is a tomboy who looks and dress like a boy. As their friendship develops, Pie and Kim begin to wonder if the feeling they feel for one another is just an ordinary friendship or true love.",0,0,Yes or No: อยากรัก ก็รักเลย,th +58013,The Santa Claus Gang,2010-12-17,100.0,,,tt1680095,,,0,0,La Banda Dei Babbi Natale,it +82708,The Poll Diaries,2010-12-17,129.0,,,tt1452297,,"In 1914 on a family estate, Oda helps a wounded anarchist, and as their illicit friendship deepens, a family turmoil erupts as the war closes in.",0,0,Poll,de +115905,Kaalo,2010-12-17,0.0,,,tt1808221,,"Kaalo is a Hindi horror film, directed by Wilson Louis and produced by Yash Patnaik, Mamta Patnaik and Dhaval Gada. The film was released on 17 December 2010 under the Beyond Dreams Entertainment Ltd. banner. It Is loosely based on the 1990 American science fiction horror comedy film Tremors",0,0,Kaalo,hi +275244,Cheburashka,2010-12-18,80.0,,,tt1535430,,,0,0,チェブラーシカ,ja +57419,"Montevideo, God Bless You!",2010-12-19,140.0,http://montevideoproject.com,,tt1634013,When a dream becomes a legend.,"A story about one team that decides to follow a dream that takes them on a journey to the First World Football Championship in Montevideo, Uruguay in 1930. A dream that allows them to become true stars and living legends.",0,0,"Montevideo, Bog te video!",sr +52454,Mega Shark vs. Crocosaurus,2010-12-21,90.0,http://www.theasylum.cc/product.php?id=180,264481,tt1705773,Whoever wins... we lose!,"When the prehistoric warm-water beast the Crocosaurus crosses paths with that cold-water monster the Mega Shark, all hell breaks loose in the oceans as the world's top scientists explore every option to halt the aquatic frenzy. Swallowing everything in their paths -- including a submarine or two -- Croc and Mega lead an explorer and an oceanographer on a wild chase. Eventually, the desperate men turn to a volcano for aid.",0,0,Mega Shark vs. Crocosaurus,en +52045,Libre échange,2010-12-22,,,,tt1576421,,,0,0,Libre échange,fr +53256,Three,2010-12-23,119.0,,,tt1517177,Imagine the possibilities.,"Hanna and Simon are in a 20 year marriage with an unexiting relationship. By chance, they both meet and start separate affairs with Adam. Adam has no idea that his two lovers are married, until they are all found out when Hanna becomes pregnant, with the natural doubts stemming from their situation.",0,2611555,Drei,de +62439,Hello Ghost,2010-12-23,111.0,,,tt1848926,,"A man's failed suicide attempt enables him to see ghosts, who later keep following him everywhere. It is now up to him to fulfill their wishes to make them go away.",0,0,헬로우 고스트,ko +153717,Aschenputtel,2010-12-24,0.0,,,tt1787655,,,0,0,Aschenputtel,de +51823,Across the Line: The Exodus of Charlie Wright,2010-12-28,94.0,,,tt1663193,Redemption has its price.,"The story centers on Charlie, a Los Angeles billionaire financial whiz who goes into self-imposed exile in Tijuana after his empire is revealed to have been a Ponzi scheme. While looking for the woman he abandoned there 25 years before, Charlie is pursued by a Mexican gangster, a federal agent and thugs sent by a former client looking to retrieve his money.",0,0,Across the Line: The Exodus of Charlie Wright,en +52850,Toast,2010-12-30,90.0,,,tt1658851,The Story of a Boy's Hunger,"An adaptation of celebrity chef Nigel Slater's bestselling memoir, 'Toast' is the ultimate nostalgic trip through everything edible in 1960's Britain. Nigel's mother was always a poor cook, but her chronic asthma and addiction to all things canned does not help.",0,0,Toast,en +211220,The Pig Farm,2011-01-01,90.0,,,tt1345505,,"This is the story about Robert Pickton, Canada's most prolific serial killer.",1500000,0,The Pig Farm,en +69310,Beginning of the Great Revival,2011-01-01,124.0,,,tt1699513,,A chronicle of the events that led to the founding of the Chinese Communist Party.,0,0,建黨偉業,zh +65650,The Good Doctor,2011-01-01,93.0,,,tt1582271,Do no harm.,"Dr. Martin Blake, who has spent his life looking for respect, meets an 18-year-old patient named Diane, suffering from a kidney infection, and gets a much-needed boost of self-esteem. However, when her health starts improving, Martin fears losing her, so he begins tampering with her treatment, keeping Diane sick and in the hospital right next to him.",6000000,5206,The Good Doctor,en +62614,Hella W,2011-01-01,0.0,,,tt1382722,,,2500000,0,Hella W,fi +47761,The Witches of Oz,2011-01-01,164.0,http://www.followtheyellowbrickroad.com/,,tt1592287,,"The Witches of Oz follows the exploits of the grown Dorothy Gale, now a successful children's book author, as she moves from Kansas to present day New York City. Dorothy quickly learns that her popular books are based on repressed childhood memories, and that the wonders of Oz are very, very real. When the Wicked Witch of the West shows up in Times Square, Dorothy must find the inner courage to stop her.",0,0,The Witches of Oz,en +139433,No One Dies in Lily Dale,2011-01-01,90.0,,,tt1609145,,"A candid portrayal of Lily Dale, a spiritualist community in upstate New York, where most of the town's residents are registered Mediums who regularly give spiritual readings to visitors through alleged communication with the deceased.",0,0,No One Dies in Lily Dale,en +69352,Our Grand Despair,2011-01-01,102.0,,,tt1309178,,The peaceful cohabitation of two 30-something bachelors is disrupted when they both fall in love with the charming young woman who moves in with them.,0,0,Bizim Büyük Çaresizliğimiz,tr +115173,Mía,2011-01-01,106.0,,,tt1806971,,"The story deals with the right to happiness and to be part of the community, for those who have chosen a different form of morally accepted by society, and allows us to review the issue of discrimination, intolerance, marginalization and social exclusion but also that of the infinite capacity to love that human beings have.",0,0,Mía,es +123969,The Backwater Gospel,2011-01-01,10.0,,,tt2050634,,Backwater is doomed by the regular visits of the undertaker and its dwellers blame a tramp.,0,0,The Backwater Gospel,en +322260,Crockdale,2011-01-01,0.0,,,tt1821384,,"Dive into the life of teen Sarah Fiction, as she leads you through Crockdale, encountering friends, enemies, Detectives, missing children and a dark mystery that could rock the little town to its core.",0,0,Crockdale,en +73933,Monster Brawl,2011-01-01,89.0,http://www.monsterbrawlmovie.com/,,tt1716753,It's the fight of the living dead!,"Eight of the world's most legendary monsters, along with their diabolical managers, compete in a wrestling tournament deathmatch to determine the most powerful champion of all time. Interviews, pre-fight breakdowns, trash talking, and monster origin segments round out this ultimate fight of the living dead.",0,0,Monster Brawl,en +142507,Exit,2011-01-01,90.0,,,tt1814701,Welcome to the maze.,Several people think the city is a maze and they obsessively search for the exit.,0,0,Exit,en +91333,Recoil,2011-01-01,94.0,,,tt1839591,,"A cop turns vigilante after his family is murdered, exacting vengeance on the killers - and then on all criminals who have slipped through the system.",0,0,Recoil,en +87593,Kevin,2011-01-01,36.0,,,tt1868030,,"Kevin Gant was an inspired and beloved Austin musician, but in 1995 he disappeared from the scene. Who is Kevin? What happened to him? And, can he get back what he lost?",0,0,Kevin,en +205005,Fred & Vinnie,2011-01-01,89.0,,,tt1305586,,"Lonely guy Fred Stoller is thrilled when his good buddy, Vinnie D'Angelo, the world's happiest agoraphobic and fattest vegetarian, comes to live with him, until Vinnie also proves to be the world's most maddening roommate.",0,0,Fred & Vinnie,en +127803,3 Times a Charm,2011-01-01,87.0,,,tt1718998,,,0,0,3 Times a Charm,en +62441,United,2011-01-02,90.0,,,tt1777034,The true story of how the world's most popular team rose from the ashes,"United is based on the true story of Manchester United's legendary ""Busby Babes"", the youngest side ever to win the Football League and the 1958 Munich Air Crash that claimed eight of the their number. The film draws on first-hand interviews with the survivors and their families to tell the inspirational story of a team and community overcoming terrible tragedy.",0,0,United,en +142402,Sam Steele and the Junior Detective Agency,2011-01-04,87.0,,,tt1436577,,"13-year-old Sam Steele Jr. forms his own private detective agency to emulate his father, Des Moines detective Sam Steele, and helps track down a jewel thief.",0,0,Sam Steele and the Junior Detective Agency,en +180607,Down the Shore,2011-01-06,93.0,,,tt1155060,,"Set on the Jersey shore, the lives of three childhood friends begin to unravel when a secret from their past is revealed",0,0,Down the Shore,en +82662,L'industriale,2011-01-13,94.0,,,tt1825842,,,0,0,L'industriale,it +45772,Gnomeo & Juliet,2011-01-13,84.0,http://gnomeoandjuliet.com/,,tt0377981,A little adventure goes a lawn way.,"A version of Shakespeare's play, set in the world of warring indoor and outdoor gnomes. Garden gnomes Gnomeo and Juliet have as many obstacles to overcome as their quasi namesakes when they are caught up in a feud between neighbors. But with plastic pink flamingos and lawnmower races in the mix, can this young couple find lasting happiness?",36000000,189712432,Gnomeo & Juliet,en +135713,Beware of Christians,2011-01-14,94.0,,,tt1684609,,Four college students travel to Europe to escape their routine faith and gain a radically new perspective on following Jesus.,0,0,Beware of Christians,en +70752,The Sandman,2011-01-18,88.0,,,tt1801808,,"One fine morning, Benno finds sand in his bed. While he tries to ignore this at first, he soon must realize that he himself is loosing the sand.",0,0,Der Sandmann,de +57889,The Best Movie 3-DE,2011-01-19,102.0,,107467,tt1796603,,"A third part of ""The Best Movie"" trilogy.",6500000,9816332,Samyy Luchshiy Film 3-DE,ru +56304,Satisfaktsiya,2011-01-20,93.0,,,tt1805397,,"Главный герой Александр, крупный бизнесмен и влиятельный человек в своем городе, после напряженного рабочего дня везет своего друга и помощника Дмитрия в ресторан. Но к удивлению Дмитрия, там их не ждут ни деловые партнеры, ни друзья — в помещении вообще нет посетителей. Мужчинам придется провести время в компании молчаливых официантов и многочисленных бутылок с содержимым различной крепости. Когда дверь запирается изнутри, у двух героев на выяснение отношений остается целая ночь.",0,0,Сатисфакция,ru +56339,Qualunquemente,2011-01-21,96.0,,188197,tt1680110,,"Corrupt and sleazy entrepreneur Cetto La Qualunque comes back to Italy and ""jumps into politics"" lest his law-abiding opponent, Giovanni De Santis, is elected as mayor.",0,0,Qualunquemente,it +55437,Broken Blade: Book Five - The Horizon Between Life and Death,2011-01-21,50.0,http://breakblade.jp/,102940,tt1809274,,Fifth Break Blade Movie.,0,0,Break Blade 5: Shisen no Hate,en +55612,Varg Veum - Black Sheep,2011-01-21,83.0,http://www.vargveumfilm.no/,97156,tt1699164,,Varg Veum promises his girlfriend that he will find her sister who has vanished.,0,0,Varg Veum - Svarte får,no +329690,Comedy Central Roast of Roseanne,2012-08-12,90.0,http://www.cc.com/shows/roast-of-roseanne,,tt2231500,,It's Roseanne Barr's turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast.,0,0,Comedy Central Roast of Roseanne,en +98644,Here,2011-01-21,120.0,,,tt1127886,,"Set against the gorgeous landscape of Armenia, Here chronicles a brief but intense relationship between an American satellite-mapping engineer (Foster) and an expatriate photographer (Azabal) who impulsively decide to travel across the remote countryside. As their trip comes to an end, the two must decide where to go from Here",0,0,Here,en +75595,Little Birds,2011-01-23,94.0,http://littlebirdsmovie.com/,,tt1623745,How far would you go?,Lily and Alison face a life-changing event after they leave their Salton Sea home and follow the boys they meet back to Los Angeles.,0,0,Little Birds,en +51481,Mean Girls 2,2011-01-23,96.0,,99606,tt1679235,The Plastics Are Back!,"The story revolves around a new high school student, Jo (Meaghan Martin) , who agrees to befriend an outcast, Abby (Jennifer Stone), at the urging of Abby's wealthy father in exchange for paying all of Jo's costs for the college of her dreams. Jo and Abby team up to take on the school's mean girls, the Plastics.",0,0,Mean Girls 2,en +51999,Perfect Sense,2011-01-24,92.0,,,tt1439572,Without love there is nothing.,"Susan is a scientist searching for answers to important questions. So important that she has given up on other things, like love - until she meets Micheal. Susan and Michael find themselves embarking on a sensual adventure while the world around them seems to be falling apart. A life-affirming look at what it means to love and be loved in turbulent times.",0,908000,Perfect Sense,en +81215,Kinyarwanda,2011-01-24,100.0,http://www.kinyarwandamovie.com/,,tt1572154,Forgiveness is Freedom,A young Tutsi woman and a young Hutu man fall in love amid chaos; a soldier struggles to foster a greater good while absent from her family; and a priest grapples with his faith in the face of unspeakable horror.,400000,0,Kinyarwanda,en +61533,Final Sale,2011-01-24,86.0,,,tt1690542,,"A woman undergoes an illegal organ transplant only to discover that the young girl who donated the kidney died during the operation. Determined to stop this heinous activity, but torn by the moral dilemma of being saved by it, she fights against her reluctant husband, an LAPD Detective, to pull down the ring of criminals behind it.",0,0,Final Sale,en +82655,The Oregonian,2011-01-24,81.0,,,tt1686327,,"A girl gets in a car accident and wanders through the woods, encountering all kinds of nightmarish things.",0,0,The Oregonian,en +55190,Princess and the Pony,2011-01-25,88.0,,,tt1757944,In the most far away place... She found her closest friend.,"A sheltered young princess is sent to live with relatives in America, where she befriends a pony held captive by a shady carnival owner.",17000,0,Princess and the Pony,en +70583,Empty,2011-01-25,82.0,,,tt1798148,Where will you be when it runs out?,A suspenseful drama about a young couple on a road trip who get caught in the midst of a worldwide gas shortage.,0,0,Empty,en +81435,Microphone,2011-01-26,120.0,,,tt1684913,It starts underground…,"Upon his return to Alexandria, Khaled becomes intrigued with a graffiti mural opposite his apartment. As he pursues this further, a larger underground arts scene slowly reveals itself, composed of musicians, filmmakers, and graffiti artists. As they struggle to get their voices heard, Khaled is compelled to help them acquire some much deserved visibility.",0,0,ميكروفون,ar +65771,Boy,2011-01-27,97.0,,,tt1616096,,18-year old Christian has just graduated from high school. At his summer job he is seduced by the 36-year old single mother Sanne. Soon he is drawn into a world of sensuality and his acquaintance with Sanne turns into an intense love affair which forces Christian to deal with his newly discovered sides.,0,0,Dreng,da +171902,Mythos Wald,2011-01-27,0.0,,,tt1385943,,,0,0,Mythos Wald,fr +59424,Sonny Boy,2011-01-27,130.0,,,tt1138481,A ravishing moving story about an impossible love...,"Waldemar Nods, a young man from Suriname, meets the older Dutch woman Rika van der Lans and they fall in love. In pre-WWII Netherlands they could not be more different. The one black, the other white, 17 years between them and on top of that Rika already has four children with another man. They love each other, but then Rika appears to be pregnant...",0,0,Sonny Boy,nl +65881,Battlefield Heroes,2011-01-27,117.0,http://comic-battle.co.kr/,,tt1832438,,"This story unfolds 8 years after 'Battle of Hwangsanbeol', which destroyed Baekjae, when Silla-Tang Dynasty union attacks Goguryeo.",0,0,평양성,ko +56906,Husk,2011-01-28,83.0,,,tt1504403,Join the harvest.,"A group of friends stranded near a desolate cornfield find shelter in an old farmhouse, though they soon discover the dwelling is the center of a supernatural ritual.",0,0,Husk,en +81765,How Beer Saved the World,2011-01-30,44.0,,,tt1832368,,This show traces the important role that beer has played in human history from the probable origins of the first beer at the dawn of history to the development of a special beer for use in zero gravity space missions.,0,0,How Beer Saved the World,en +61348,The Lost Valentine,2011-01-30,100.0,,,tt1709157,Love can stand the test of time.,"A young and cynical female journalist learns love may transcend trials and time as she discovers a story that will change her life forever. When war separates lovers on their wedding anniversary Feb. 14, 1944 at LA Union Train Station, Navy pilot Neil Thomas makes a promise he isn't sure he can keep - to return to the train station safe by their next anniversary. For sixty years Caroline Thomas keeps her promise by waiting at the train station until her missing in action husband can finally keep his with the ""lost valentine."" The message and meaning shows romance and love can be real; worth fighting, and maybe even dying for.",0,0,The Lost Valentine,en +239368,Do We Really Need the Moon?,2011-02-01,0.0,,,tt1851900,,The moon is such a familiar presence in the sky that most of us take it for granted. But what if it wasn't where it is now? How would that affect life on earth?,0,0,Do We Really Need the Moon?,en +64130,The Rainbow Tribe,2011-02-01,90.0,,,tt1083470,,"Morgan Roberts, a middle aged adult in crisis, reunites with his best friend when he returns to the summer camp of his youth. His troubles seem to magnify when he is joined by a rag-tag group of 10 year old campers. Through their struggles they collectively overcome their personal problems and exchange them for one of the best summers of their lives. is.",0,0,The Rainbow Tribe,en +45156,A Little Bit of Heaven,2011-02-03,106.0,,,tt1440161,Life starts now.,"It's a comedy about a guarded woman who finds out she's dying of cancer, but when she meets her match, the threat of falling in love is scarier than death",0,1296937,A Little Bit of Heaven,en +57701,On the Hook!,2011-02-03,90.0,,,tt1820555,,"Rita, a figure skating coach, wants to prevent her school bankruptcy and closing by trying to push the famous millionaire to fall in love with her.",3000000,1957000,Na Kryuchke!,ru +70988,Yuddham Sei,2011-02-04,160.0,,,tt1843335,,"Yutham Sei will feature Cheran as a CB-CID officer, according to film director Mysskin. story is a secret police officer in search of a serial killer.",0,0,யுத்தம் செய்,ta +160844,Una donna per la vita,2012-09-21,0.0,,,tt2166285,,,0,0,Una donna per la vita,it +49950,The Roommate,2011-02-04,91.0,http://www.theroommate-movie.com/,,tt1265990,"2,000 colleges. 8 million roommates. Which one will you get?","When Sara (Minka Kelly), a young design student from Iowa, arrives for college in Los Angeles, she is eager to fit in and get to know the big city. Her wealthy roommate, Rebecca (Leighton Meester), is more than eager to take Sara under her wing and show her the ropes. The two become close, but when Sara begins to branch out and make more friends on campus, Rebecca becomes resentful. Alarmed, Sara moves in with her new boyfriend, causing Rebecca's behavior to take a violent turn.",16000000,40492759,The Roommate,en +56901,Yeh Saali Zindagi,2011-02-04,130.0,,,tt1754920,,Arun who has seen his lover in other man's arms cant forget her beauty and is always distracted by it. And wants to help her in any sought of situation even save her love from kidnappers.,0,0,Yeh Saali Zindagi,hi +56647,Cousinhood,2011-02-04,98.0,,,tt1592521,,Three cousins travel to the village where they spent summer vacations as kids.,0,0,Primos,es +92968,Time Freak,2011-02-10,10.0,,,tt1733689,,A neurotic inventor creates a time machine and gets lost traveling around yesterday.,0,0,Time Freak,en +67499,My Grandpa the Bankrobber,2011-02-10,1.0,http://www.mijnopadebankrover.nl/,,tt1576433,,"In order to find her father in Surinam Grace is forced to take some desperate measures. Grace is the only black child of an all-white family, desperate to find out everything about her Surinam father. Grandpa can help her, but his memory gets worse every day since the death of his wife. When the family decide to put Grandpa into a retirement home, he and Grace decide to use his savings to travel to Surinam - but the family has blocked access to his bank account. But their dreams can come true if they rob the bank",0,0,Mijn Opa de Bankrover,nl +72054,All for One,2011-02-10,82.0,,216435,tt1690368,,"Four rogues, who were best friends as kids, have one big problem: they're sitting on both sides of the law. Martin is a policeman, while Nikolai, Ralf, and Timo can't distinguish between personal possessions and the possessions of others! When all four find themselves in a fix, they're forced to return to their former tricks against a common foe, Mr Niemeyer. Martin is not as successful, however, either at his job or marriage, and thinks he deserves a better life. Now he sees an opportunity to save his career by ""playing"" with his old friends on a mission that is so crazy that even the two foolish brothers can do some good.",0,0,Alle for én,da +81232,Foster,2011-02-10,90.0,http://www.serendipity-films.com/blog/past-projects/foster-feature/,,tt1629443,A family opens its door to a miracle.,"Some years after their son is killed, a married couple decide to adopt a child. One day a 7-year-old boy, Eli, unexpectedly arrives on their doorstep and things take a strange turn.",0,0,Foster,en +62630,The Devil's Double,2011-02-11,109.0,,,tt1270262,"The 80's were brilliant, if you were in charge.",A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.,19100000,5728213,The Devil's Double,en +50780,The Beaver,2011-02-11,91.0,http://www.thebeaver-movie.com/,,tt1321860,He's here to save Walter's life.,"Suffering from a severe case of depression, toy company CEO Walter Black (Mel Gibson) begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter (Anton Yelchin) pushes for his parents to get a divorce. Jodie Foster directs and co-stars as Walter's wife in this dark comedy that also features Riley Thomas Stewart and Jennifer Lawrence.",21000000,970816,The Beaver,en +75446,Carbon Nation,2011-02-11,86.0,http://www.carbonnationmovie.com/,,tt1482991,A climate change solutions movie [that doesn't even care if you believe in climate change],"An optimistic (and witty) discovery of what people are already doing, what we as a nation could be doing and what the world needs to do to prevent (or at least slow down) the impending climate crisis.",0,0,Carbon Nation,en +57924,Auschwitz,2011-02-11,72.0,,,tt1722426,The most harrowing portrayal of the ultimate crime against humanity.,Auschwitz is a hard-hitting war film which shows life as it really was at the death camp.,0,0,Auschwitz,de +94820,The Flying Machine,2011-02-12,85.0,,,tt1537314,,"A family takes a journey across the globe on a strange and amazing flying machine, experiencing a series of adventures along the way.",0,0,The Flying Machine,en +54662,The Future,2011-02-15,91.0,http://thefuturethefuture.com/,,tt1235170,,"When a couple decides to adopt a stray cat their perspective on life changes radically, literally altering the course of time and space and testing their faith in each other and themselves.",1000000,0,The Future,en +107073,The Prize,2011-02-15,115.0,,,tt1525346,,"Ceci, a seven year old girl, has to keep a huge secret, but she doesn't completely understand what is the secret about. The life of her family depends on her silence. But what exactly must she keep silent about? Ceci and her mom live hidden from military repression in Argentina. Ceci asks herself: what must she say? What should she really believe and do in order to deserve the love of her mother and others?",0,0,El Premio,es +38322,"Big Mommas: Like Father, Like Son",2011-02-16,107.0,http://www.bigmommaslikefatherlikeson.com/,44979,tt1464174,Momma's got back-up.,"FBI agent Malcolm Turner and his 17-year-old son, Trent, go undercover at an all-girls performing arts school after Trent witnesses a murder. Posing as Big Momma and Charmaine, they must find the murderer before he finds them.",32000000,83615414,"Big Mommas: Like Father, Like Son",en +113038,Zero Bridge,2011-02-16,96.0,,,tt1270494,,A chance encounter between a teen pickpocket and one of his victims changes his plans to escape his dreary life.,0,0,Zero Bridge,en +57382,Halal Police d'Etat,2011-02-16,0.0,,,tt1708526,,,0,0,Halal Police d'Etat,fr +64468,Çalgı Çengi,2011-02-18,0.0,,473977,tt1865569,,"Salih and Gürkan, two cousins from Ankara, are struggling musicians that are trying to make a living by performing at private events such as bachelorette parties. Nihat, a low profile event manager, finds a gig for the duo which leads them to encounter with unexpected guests in their ""dressing room"".",0,0,Çalgı Çengi,tr +96458,The Saga of Biorn,2011-02-18,7.0,,,tt2040565,,"An old Viking is determined to reach Valhalla, the warrior's afterlife full of excessive drinking and debauchery. To gain entry he has to die honorably in battle, but he discovers that the right death isn't so easy.",0,0,The Saga of Biorn,da +82624,The Forgiveness of Blood,2011-02-18,109.0,,,tt1787127,,"After his father and uncle kill a neighbor, an Albanian teen (Tristan Halilaj) finds that his own life may be forfeited in a legal blood feud.",0,0,The Forgiveness of Blood,sq +58692,Slove,2011-02-21,84.0,,,tt1822308,,«SLOVE» means Soldier of Love. This is how two brothers fighting corruption and crime are calling themselves...,7000000,0,Slove,ru +222388,One Kine Day,2011-03-11,0.0,,,tt1438214,,"Teen Hawaiian skateboarder Ralsto seems destined to fall into the rut that plagues his other friends and family members when he's fired from his job and learns his girlfriend is pregnant, and his attempts to raise money for an abortion go awry.",0,0,One Kine Day,en +66925,Stripperland,2011-02-22,103.0,,,tt1710900,,"Fleeing the wrath of man-eating vixens who've taken over the world, a ragtag caravan of refugees (Ben Sheppard, Maren McGuire, Jamison Challeen and Ileane Herrin) makes its way across the country to the relative safety of the West Coast. But en route, they're attacked by unrelenting waves of starving strippers. If looks could kill ... well, let's just hope they can't. Gilbert Gottfried and Daniel Baldwin co-star.",0,0,Stripperland,en +82911,Thurgood,2011-02-24,105.0,http://www.hbo.com/movies/thurgood/index.html,,tt1844811,,"This one-man play stars Laurence Fishburne in his Tony-nominated performance as Thurgood Marshall, the remarkable Civil Rights lawyer and Supreme Court Justice.",0,0,Thurgood,en +58166,Lessons of a Dream,2011-02-24,113.0,http://www.derganzgrossetraum.de/,,tt1686768,Hip hip hooray boys!,An English teacher brings soccer to a German school in the 19th Century.,0,0,Der ganz große Traum,de +257237,Il castello,2011-02-26,0.0,,,tt1895408,,,0,0,Il castello,it +206574,Unrated II: Scary as Hell,2011-02-26,72.0,,,tt3430702,,,15000,0,Unrated II: Scary as Hell,de +57737,Barbie: A Fairy Secret,2011-03-01,72.0,,,tt1800254,,"Get ready for Barbie: A Fairy Secret, an amazing adventure with Barbie where she discovers there are fairies living secretly all around us! When Ken is suddenly whisked away by a group of fairies, Barbie's two fashion stylist friends reveal they are actually fairies and that Ken has been taken to a magical secret fairy world not far away! Barbie and her rival Raquelle take off with the fairy friends on an action-packed journey to bring him back. Along the way they must stick together and learn that the real magic lies not just in the fairy world itself, but in the power of friendship.",0,0,Barbie: A Fairy Secret,en +63326,The Perfect Student,2011-03-01,90.0,,,tt1672131,,A criminology professor becomes a target herself when she tries to establish the innocence of her star student in a murder.,0,0,The Perfect Student,fr +44896,Rango,2011-03-02,107.0,http://www.rangomovie.com/,,tt1192628,Heroes come in all different colors.,"When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.",135000000,245724603,Rango,en +51828,One Day,2011-03-02,107.0,http://www.focusfeatures.com/one_day,,tt1563738,Twenty years. Two people.,"A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.",15000000,59389433,One Day,en +85431,Take Me Home,2011-03-02,97.0,http://www.takemehomemovie.com,,tt1261954,,"Soon after Thom starts operating as an illegal taxi driver in New York City, Claire hires him to drive her to California after her estranged father suffers a heart attack.",0,0,Take Me Home,en +60189,Lovey-Dovey 3,2011-03-03,94.0,,107478,tt1666169,,"In third part of ""Lovey-Dovey"" Andrey and Marina are exchanging bodies again - but this time with their parents in law.",4000000,0,Любовь-морковь 3,ru +74777,Absentia,2011-03-03,92.0,,,tt1610996,There are fates worse than death.,"Tricia's husband Daniel has been missing for seven years. Her younger sister Callie comes to live with her as the pressure mounts to finally declare him 'dead in absentia.' As Tricia sifts through the wreckage and tries to move on with her life, Callie finds herself drawn to an ominous tunnel near the house. As she begins to link it to other mysterious disappearances, it becomes clear that Daniel's presumed death might be anything but 'natural.' The ancient force at work in the tunnel might have set its sights on Callie and Tricia... and Daniel might be suffering a fate far worse than death in its grasp.",70000,0,Absentia,en +50725,Take Me Home Tonight,2011-03-04,97.0,http://www.iamrogue.com/takemehometonight/fullsite/,,tt0810922,Best. Night. Ever.,"Recent MIT grad Matt Franklin (Topher Grace) should be well on his way to a successful career at a Fortune 500 company, but instead, he rebels against maturity by taking a job at a video store. Matt rethinks his position when his unrequited high-school crush, Tori (Teresa Palmer), walks in and invites him to an end-of-summer party. With the help of his twin sister (Anna Faris) and his best friend (Dan Fogler), Matt hatches a plan to change the course of his life.",19000000,6928068,Take Me Home Tonight,en +58060,The Jewel,2011-03-04,110.0,,,tt1582207,,"Amanzio Rastelli appointed several of his relations to managerial positions in his firm. They decided to think internationally and now business is heavily in debt. Luckily for the Rastellis, Bolta the accountant uses all the tricks of his art to cook the books, but catastrophe awaits.",0,0,Il gioiellino,it +63472,His Way,2011-03-04,87.0,,,tt1833708,,"A look at the professional, political and personal life of legendary movie producer Jerry Weintraub featuring interviews with friends, family and colleagues.",0,0,His Way,en +58518,La vita facile,2011-03-04,0.0,,,tt1669625,,,0,0,La vita facile,it +63139,All Things Fall Apart,2011-03-05,106.0,,,tt1606390,He won the game. Now he must fight the battle.,50 Cent stars as gifted college running back Deon in this touching drama. Deon's world turns upside down when an unexpected crisis jeopardizes his professional ambitions -- and causes him to look at himself and his life in a new way.,0,0,All Things Fall Apart,en +59006,Girl Walks Into a Bar,2011-03-07,80.0,,,tt1682246,"One night, ten bars, lots of mayhem.",A sharp-witted comedy that follows a group of apparent strangers in interlocking stories taking place in ten different bars during the course of one evening throughout Los Angeles.,1000000,0,Girl Walks Into a Bar,en +44943,Battle: Los Angeles,2011-03-08,116.0,http://www.battlela.com,,tt1217613,It's not war. It's survival.,"The Earth is attacked by unknown forces. As people everywhere watch the world's great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It's up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they've ever encountered before.",70000000,202466756,Battle: Los Angeles,en +101325,The Forger,2011-03-09,96.0,,,tt1368858,"Love by design, Friendship by paint, Death by brush.","While staying at a picturesque village, a teen encounters the underground world of art forgery.",0,0,The Forger,en +59197,Battle of Los Angeles,2011-03-10,91.0,http://www.battlela.com/site/,,tt1758570,They Don't Come In Peace!,"In February 1942 Us forces engaged an unidentified flying object above Los Angeles. Now almost 70 years later, the alien invaders have returned.",0,0,Battle of Los Angeles,en +51209,Kill the Irishman,2011-03-10,106.0,http://www.killtheirishman.com/,,tt1416801,The man the mob couldn't kill.,"Over the summer of 1976, thirty-six bombs detonate in the heart of Cleveland while a turf war raged between Irish mobster Danny Greene and the Italian mafia. Based on a true story, kill the Irishman chronicles Greene's heroic rise from a tough Cleveland neighborhood to become an enforcer in the local mob.",0,1188194,Kill the Irishman,en +38684,Jane Eyre,2011-03-11,120.0,http://janeeyrethemovie.com/,,tt1229822,She sought refuge... and found a place haunted by secrets.,"After a bleak childhood, Jane Eyre goes out into the world to become a governess. As she lives happily in her new position at Thornfield Hall, she meet the dark, cold, and abrupt master of the house, Mr. Rochester. Jane and her employer grow close in friendship and she soon finds herself falling in love with him. Happiness seems to have found Jane at last, but could Mr. Rochester's terrible secret be about to destroy it forever?",0,34710627,Jane Eyre,en +205818,Eat,2011-03-12,15.0,,,tt1839464,,"After locking herself out of her apartment, a young woman finds herself in the company of a strange and frightening neighbor.",0,0,Eat,en +329243,Comedy Central Roast of Donald Trump,2011-03-15,65.0,http://www.cc.com/shows/roast-of-donald-trump,,tt1865333,,It's Donald Trump's turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast.,0,0,Comedy Central Roast of Donald Trump,en +72057,Sorelle Mai,2011-03-16,105.0,,,tt1698566,,A family story in the city of Bobbio between 1999 and 2008.,0,0,Sorelle Mai,it +68684,Detention,2011-03-16,93.0,http://detentionmovie.com/,,tt1701990,Cancel Your Future,"As a killer named Cinderhella stalks the student body at the high school in Grizzly Lake, a group of co-eds band together to survive while they're all serving detention.",10000000,0,Detention,en +43935,Dylan Dog: Dead of Night,2011-03-16,107.0,http://dylandogdeadofnight.com/,,tt1013860,No pulse? No problem,"Supernatural private eye, Dylan Dog, seeks out the monsters of the Louisiana bayou in his signature red shirt, black jacket and blue jeans.",20000000,4634062,Dylan Dog: Dead of Night,en +74674,Superclásico,2011-03-17,99.0,,,tt1609492,,"Christian is a Copenhagen wine seller on the brink of bankruptcy. Equally unsuccessful in just about every other aspect of life, it has been 17months since his wife Anna left him. Anna works as a soccer agent in Buenos Aires and now lives a life of luxury with Argentina's top player Juan Diaz. Then one day Christian and their 16-year-old son Oscar get on a plane to Buenos Aires. Christian arrives under the pretense of wanting to sign the divorce papers, but in truth, he wants to try to win Anna back.",3400000,0,Superclásico,da +163942,Adrienn Pál,2011-03-17,136.0,,,tt0146592,,"Piroska is an overweight, alienated nurse who can’t resist cream-filled pastries. She works in the terminal ward of a hospital; her life is surrounded by death. One day she sets off to find her long-lost childhood friend. While tracing her recollections, she embarks on a paradox-filled voyage within her own memory and the memory of those she encounters.",0,0,Pál Adrienn,en +57829,The Mill and the Cross,2011-03-18,92.0,http://www.themillandthecross.com/,,tt1324055,Behind every great painting lies an even greater story,"What would it be like to step inside a great work of art, have it come alive around you, and even observe the artist as he sketches the very reality you are experiencing? From Lech Majewski, one of Poland's most acclaimed filmmakers, The Mill and the Cross is a cinematic re-staging of Pieter Bruegel's masterpiece ""Procession to Calvary,"" presented alongside the story of its creation.",0,342519,Młyn i krzyż,pl +88059,Brothers,2011-03-18,120.0,,,tt1754838,,The script of this film was very loose and most of the dialog was improvised by the cast,0,0,Veljekset,fi +55725,Win Win,2011-03-18,106.0,http://www.foxsearchlight.com/winwin/,,tt1606392,"In the game of life, you can't lose 'em all.","When down-on-his-luck part-time high school wrestling coach Mike agrees to become legal guardian to an elderly man, his ward's troubled grandson turns out to be a star grappler, sparking dreams of a big win -- until the boy's mother retrieves him.",10831173,10654385,Win Win,en +83735,Angel Dog,2011-03-19,90.0,,,tt1711456,Angel,"This heart warming film is about a dog named Cooper who is the lone survivor of a terrible car accident. Jake, a family patriarch, loses his wife and children in the accident. Not being a dog person, Jake is angry and resentful toward the dog for even surviving. However, eventually Jake bonds with Cooper, and this bond ends up being the one thing that gets him out of bed in the morning, the one thing that helps him to go on living after such a tragic loss.",1000000,0,Angel Dog,en +60977,The Pee-Wee Herman Show on Broadway,2011-03-19,89.0,http://www.hbo.com/comedy/the-pee-wee-herman-show-on-broadway/index.html,,tt1839648,,"Subversive humor and childlike wonder based on both Reubens' original stage show, ""The Pee-wee Herman Show,"" and the Emmy-winning Saturday morning TV show, ""Pee-wee's Playhouse.""",0,0,The Pee-Wee Herman Show on Broadway,en +68387,Bringing Ashley Home,2011-03-20,87.0,http://www.mylifetime.com/movies/bringing-ashley-home,,tt1765730,,"When her wild younger sister Ashley, who suffers from bipolar disorder and drug addiction, goes missing, Libba Phillips pours all her time and energy into finding Ashley and bringing her home. As the years go by, Libba refuses to give up hope, and, at the expense of her marriage and career, Libba finds her calling in life: creating a much-needed resource center for other families whose missing loved ones have fallen through the cracks.",0,0,Bringing Ashley Home,en +146315,Last Will,2011-03-22,96.0,,,tt1312222,,"An affluent woman is framed for the murder of her husband and faces a mountain of evidence stacked against her. Undeterred, she begins to put the pieces of the true story together.",0,0,Last Will,en +110608,The Enemy,2011-03-22,108.0,,,tt1517225,,"The Enemy (Serbian: Neprijatelj) is the Serbian film. The film was made in co-production of Serbia and the Serbian Republic, the minority co-producer from Croatia and Hungary. It was shot on location on Mount Kozara and in Belgrade. Year 1995, 7 day after the Dayton Peace Agreement. Engineer units cleared the border between the Serbian Republic and the Federation of Bosnia and Herzegovina. Each soldier carries his own trauma of war experience, and each one is faced with fears in their own way. Someones tend to self-destruction, others are happy to be alive...",1200000,0,Neprijatelj,sr +59726,Wake Wood,2011-03-25,90.0,,,tt1296899,Beware Those You Love the Most,The parents of a girl who was killed by a savage dog are granted the opportunity to spend three days with their deceased daughter.,0,0,Wake Wood,en +102534,The Good Son,2011-03-25,88.0,,,tt1673392,,,560000,0,Hyvä poika,fi +59264,Silvio Forever,2011-03-25,,,,tt1851050,,,0,0,Silvio Forever,it +60307,Diary of a Wimpy Kid: Rodrick Rules,2011-03-25,99.0,http://www.diaryofawimpykidmovie.com/,86110,tt1650043,Welcome to the next grade,"Back in middle school after summer vacation, Greg Heffley and his older brother Rodrick must deal with their parents' misguided attempts to have them bond.",21000000,72417394,Diary of a Wimpy Kid: Rodrick Rules,en +70666,VIPs,2011-03-25,95.0,http://www.vipsofilme.com.br/,,tt1235548,,A human look on the life of one of the biggest frauds in the world happened by important people in Brazil.,0,0,VIPs,pt +86532,Paths of Hate,2011-03-27,10.0,http://www.pathsofhate.com/en/,,tt1787092,,"A short tale about the demons that slumber deep in the human soul and have the power to push people into the abyss of blind hate, fury and rage.",0,0,Paths of Hate,en +202241,Mildred Pierce,2011-03-27,336.0,http://www.hbo.com/mildred-pierce/index.html,,tt1492030,Having It All Would Cost Her Everything.,"A newly divorced, uniquely independent woman struggles to carve out a new life for herself and her family in Depression-era California.",20000000,0,Mildred Pierce,en +81225,Abendland,2011-03-31,90.0,,,tt2125427,,,0,0,Abendland,de +54093,Killing Bono,2011-04-01,114.0,,,tt1535101,,"Neil and Ivan McCormick, two Irish brothers who attempt to become rock stars but can only look on as their high school friends U2 become the biggest band in the world.",0,0,Killing Bono,en +81560,Cannonball Wedlock,2011-04-01,107.0,,,tt1649354,,japanese movie,0,0,婚前特急,ja +73099,August,2011-04-01,108.0,http://www.bronsonclub.com/august/,,tt1753773,,"Summer begins, Aku graduates high school and faces a great emptiness. As his girlfriend, parents and friends all leave the city, it looks to be the dullest summer ever. Everything changes at Midsummer when Aku meets Juli, a beautiful, strange and wild girl. Juli asks Aku for a ride to eastern Finland. Aku agrees – without any idea what he's getting himself into.",1203000,0,Elokuu,en +83125,The Color Wheel,2011-04-01,83.0,http://colorwheelmovie.com/,,tt1734548,A comedic symphony of disappointment and forgiveness.,"JR has broken up with her professor. She enlists her nervous and obnoxious younger brother Colin to take a short road trip in order to help move out her belongings. They bicker and fight, with one another and pretty much anybody they encounter, before being brought to a place of togetherness and understanding as a result of being pushed away by everybody in their lives except one another.",19000,0,The Color Wheel,en +78464,The Liquidator,2011-04-07,94.0,http://liquidator.kz/eng/index.html,,tt2072268,,A highly skilled bodyguard avenging his brother's untimely death uncovers a ring of corruption extending to the highest levels of society and government (IMDb.com).,0,0,Likvidator,ru +61400,Thank You,2011-04-08,140.0,http://www.thankyouthefilm.com/,,tt1720254,Husbands will say sorry ... Wives will say thank you!,"The film is about three husbands having affairs outside their marriage. One of their wives hires a detective named Kishen and finds out that their husbands are cheating. Their wives find out when Kishen scares them by blind folding them and when they tell their girlfriends list, Sanjana gets hurt and leaves and tries to commit suicide but Kishen helps her.",13100000,4100000,Thank You,hi +61341,Ferocious Planet,2011-04-09,89.0,,,tt1637728,They're Not on Earth Anymore.,"A groundbreaking device is designed to glimpse alternate universes. But when the machine malfunctions and transports a group of observers into a nightmarish dimension of alien terrors, the travelers must use ingenuity to survive.",0,0,Ferocious Planet,en +120872,The Girl and the Fox,2011-04-09,6.0,http://www.girlandthefox.com/,,tt1829747,,"Ilona is a nine-year-old girl who lives in the wilderness with her mother and father. Food is running low, and when a mysterious fox starts killing their livestock, she has no choice but to track down the strange creature in order to ensure the survival of her family.",0,0,The Girl and the Fox,en +301368,Spilt Milk,2011-04-10,82.0,,,tt1507351,An accidental comedy,A disgruntled grocery store clerk can't quit living in the past until one night his store gets robbed and it changes his future forever.,0,0,Spilt Milk,en +59118,The Prey,2011-04-12,102.0,,,tt1726861,,"A robber escapes from prison with a single objective in mind: to track down his former cellmate, a serial killer who intends to pin his crimes on him. A cop is sent after the robber who, despite his best efforts, soon becomes Public Enemy Number One. As the protagonists are driven to their limits, it becomes increasingly unclear who is the hunter and who is the prey.",0,0,La Proie,fr +94336,Dreileben: Beats Being Dead,2011-04-13,88.0,,165131,tt2587742,,"Johannes is a loner who wants a better job. And then he meets Ana. Ana is attractive and even though her job is even less prestigious than Johannes's, he falls for her. And then she quits her job to be with him (and be dependent on him) and suddenly things become much more serious. She has fallen for him. But does he still love her? Did he ever? Enter Sarah. Sarah is the daughter of Johannes's boss. He and she have a past. Will Sarah and what she represents be his future, and Ana just a memory, something he'd like to erase?",0,0,Dreileben: Etwas Besseres als den Tod,de +153541,Robert Mitchum Est Mort,2011-04-13,0.0,,,tt1653929,,,0,0,Robert Mitchum Est Mort,fr +80468,Some Guy Who Kills People,2011-04-14,97.0,http://someguywhokillspeople.com/,,tt1568341,Your number is up.,"A former mental patient's repressed anger reaches the boiling point, leading him to embark on a mission of revenge against the thugs who once subjected him to severe physical and mental trauma.",300000,0,Some Guy Who Kills People,en +74549,The Shunning,2011-04-16,88.0,,,tt1561770,,"Beautiful Katie Lapp has always felt something missing in her simple Amish existence -- until a mysterious ""Englisher"" comes to Lancaster County looking for the baby girl she gave up for adoption 19 years ago.",0,0,The Shunning,en +63376,Mr Perfect,2011-04-21,146.0,,,tt1852036,,"Vicky (Prabhas) believes that one should be oneself in a relationship and one shouldn’t change one's orientation for the sake of the partner. Vicky and Priya (Kajal Agarwal) are childhood friends and they like each other. Their parents want to marry them off. But Vicky feels that Priya is a not choice for him as she is willing to sacrifice all her comforts for him. Meanwhile, Vicky meets Maggy who has the same taste and lifestyle orientation. Both of them fall in love. The rest of the story is all about how Vicky realises that adjustment is the essence of any blissful relationship.",0,0,Mr Perfect,te +68184,Cougar Hunting,2011-04-22,102.0,,,tt1413489,On the trail of Aspen tail.,Tells the tale of three buddies in their 20's whose love-lives are in shambles. They go to Aspen to pursue the booming trend of dating cougars: hot older women who prey on hot young guys.,5500000,0,Cougar Hunting,en +63045,Textuality,2011-04-22,90.0,http://www.textualitymovie.com/,,tt1573483,,"Two people attempt to get into a relationship, while exiting the multiple relationships they were each managing through their Blackberries before they met.",0,0,Textuality,en +58887,When Harry Tries to Marry,2011-04-22,93.0,http://www.whenharrytriestomarry.com/,,tt1535110,A romantic comedy about NOT falling in love,"An Indian-American surprises his family when he announces his desire for an arranged marriage with an Indian woman, though his affection for a longtime American friend complicate his plan.",0,38261,When Harry Tries to Marry,en +85743,Play,2011-05-15,118.0,,,tt1376717,,"In central Gothenburg, Sweden, a group of boys, aged 12-14, robbed other children on about 40 occasions between 2006 and 2008. The thieves used an elaborate scheme called the 'little brother number' or 'brother trick', involving advanced role-play and gang rhetoric rather than physical violence.",0,0,Play,en +125619,The forbidden education,2012-08-13,121.0,http://www.educacionprohibida.com/,,tt2351524,The forbidden education,Explains different educational proposals based on the idea that education should aim at the integral growth of the human being.,0,0,La educación prohibida,es +85377,Young Black Jack,2011-04-23,128.0,,,tt1882164,,"On Christmas day, a bomb explodes in a shopping mall. The explosion was perpetrated by a serial bomber. A 9-year-old boy Kuro Hazama and his mother Mitsuko (Naho Toda) are seriously and transfered to a university hospital. With the elite skills of surgeon Dr. Jontaro Honma (Masachika Ichimura), Kuro survives, but is shocked to learn his mother is in a coma. Dr. Honma tells Tokio that when medical science advances, Michiko might one day awake. Tokio decides then to become a doctor. 15 years later, 24-year-old Kuro is a medical student and his mother is still in a coma. Kuro researches ways to awaken his mother whilst practising medicine without a licence.",0,0,Yangu Burakku Jakku,en +64215,Laddaland,2011-04-28,117.0,,,tt2063782,,A family moves into a new house where they gradually begin to encounter paranormal and horror events.,0,0,Ladda Land,th +61203,Shor in the City,2011-04-28,107.0,,,tt1916728,,Various residents and career-criminals face challenges in crime-laden Mumbai.,0,0,Shor in the City,hi +77067,DeadHeads,2011-04-29,94.0,http://www.deadheadsthemovie.com/,,tt1273207,"The dead will walk, talk and ride shotgun.","Two inexplicably coherent zombies awake amidst a zombie attack and decide to take a road trip to find the one's lost love, unaware they are being chased by the agents of a ruthless company with it's own agenda.",0,0,DeadHeads,en +57089,Hoodwinked Too! Hood VS. Evil,2011-04-29,86.0,http://www.hoodwinkedtoomovie.com/,87255,tt0844993,Not All Fairy Tales Go By the Book.,"Red Riding Hood is training in the group of Sister Hoods, when she and the Wolf are called to examine the sudden mysterious disappearance of Hansel and Gretel.",30000000,13521829,Hoodwinked Too! Hood VS. Evil,en +63144,Page One: Inside the New York Times,2011-04-29,88.0,http://www.takepart.com/pageone,,tt1787777,"This year, the biggest story is their own.",Unprecedented access to the New York Times newsroom yields a complex view of the transformation of a media landscape fraught with both peril and opportunity.,0,429766,Page One: Inside the New York Times,en +81660,The Selling,2011-04-29,92.0,,,tt1552214,5 bedrooms. 4 bath. 12 ghosts.,"For most people affected by the recent housing market crash, the impact was financial. Super nice real estate agent Richard Scarry has an additional burden: the paranormal. This startlingly funny debut feature takes many of the tropes of haunted house films and employs them to exciting, witty, and original ends.",0,0,The Selling,en +77585,Balls to the Wall,2011-04-30,84.0,https://www.facebook.com/ballstothewallmovie,,tt1626135,Ben's career is really taking off!,"Ben's fiancée has her heart set on an expensive dream wedding, but her father, Jack, has secretly gambled away all his money. When Ben discovers he has a talent for exotic dancing, Jack pushes him to moonlight as a stripper to finance the wedding.",0,0,Balls to the Wall,en +63197,Megan is Missing,2011-05-01,85.0,http://www.meganismissing.com,,tt1087461,"Megan and Amy are best friends. They share secrets. They chat with guys online. And in a few days, they will never be seen again.","Fictional drama based on actual events, about 2 teen-age girls who encounter an internet predator.",0,0,Megan is Missing,en +68174,Waking Madison,2011-05-02,89.0,http://www.wakingmadison.com/,,tt0831280,What is Real?,A woman suffering from multiple personality disorder tries to piece back together her life.,0,0,Waking Madison,en +91551,Death of a Superhero,2011-05-04,97.0,,,tt1384927,When time is precious living can't wait,A dying 15-year-old boy draws stories of an invincible superhero as he struggles with his mortality.,3,0,Death of a Superhero,en +77117,Sunny,2011-05-04,124.0,http://www.sunny2011.co.kr/,,tt1937339,,"Na-mi, a transfer student, becomes a laughingstock on her first day of school because of her strong southern dialect. Six girls jump in to help the new kid adapt to the new environment, and the girls come to call their circle of friends ""Sunny.""",3550000,48000000,써니,ko +63493,The Ledge,2011-05-06,101.0,http://ledgemovie.com/,,tt1535970,One life. One chance. One step.,A thriller in which a battle of philosophies between a fundamentalist Christian and an atheist escalates into a lethal battle of wills.,10000000,610986,The Ledge,en +63736,Almighty Thor,2011-05-07,88.0,,,tt1792794,,"When the demon god Loki destroys the fortress of Valhalla and steals the Hammer of Invincibility, only the young hero Thor can protect Earth from armageddon.",0,0,Almighty Thor,en +79707,Children Who Chase Lost Voices,2011-05-07,116.0,http://www.hoshi-o-kodomo.jp,,tt1839494,,"The film centers on Asuna, a young girl who spends her solitary days listening to the mysterious music emanating from the crystal radio she received from her late father as a memento. One day while walking home she is attacked by a fearsome monster and saved mysterious boy named Shun. However, Shun disappears and Asuna embarks on a journey of adventure to the land of Agartha with her teacher Mr. Morisaki to meet a Shun again. Through her journey she comes to know the cruelty and beauty of the world, as well as loss.",0,0,星を追う子ども,ja +73562,Declaration of War,2011-05-10,100.0,,,tt1931470,,A young couple wrestle with their child's cancer diagnosis.,0,0,La guerre est déclarée,en +108664,Isole,2011-05-10,0.0,,,tt2043888,,,0,0,Isole,it +89287,The Fairy,2011-05-11,93.0,,,tt1922645,,A hotel clerk searches all over Le Havre for the fairy who made two of his three wishes come true before disappearing.,0,0,La fée,fr +69619,The Detective 2,2011-05-12,101.0,,239011,tt1534786,,Mysteries keep revolving around Tam’s life.,0,0,B+ Jing Taam,en +59678,Attack the Block,2011-05-12,88.0,http://attacktheblock.com/,,tt1478964,Inner City vs. Outer Space,A teen gang in a grim South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.,14350531,3964682,Attack the Block,en +103972,Out of Bounds,2011-05-13,73.0,,,tt1890445,,"A desolate, windswept island. Stella and Oskar, a young couple, visit Stella's father Nathan who lives alone with his labrador. Stella is pregnant and looking forward to having a baby, but Oskar appears to have doubts. When Oskar falls prey to Nathan's provocations and feels bewildered by the relationship between father and daughter, a clash between the two men is inevitable, and Stella is caught in between.",0,0,Labrador,da +82520,Return,2011-05-14,97.0,,,tt1677082,,"Back from a tour of duty, Kelli struggles to find her place in her family and the rust-belt town she no longer recognizes.",0,0,Return,en +66109,Wyatt Cenac: Comedy Person,2011-05-14,42.0,http://www.wyattcenac.com/,,tt1950464,,"""Daily Show"" correspondent and comedian Wyatt Cenac performs at the Skirball Center for Performing Arts in New York City. Topics include his childhood, neighbors, television, internet videos and politics.",0,0,Wyatt Cenac: Comedy Person,en +134782,The Italian Key,2011-05-14,92.0,http://www.theitaliankey.com/,,tt1465513,,"A romantic fairy tale about a 19-year old orphan girl who, as her sole inheritance, gets an antique key that unlocks both an old Italian villa and the secrets of her family history.",1800000,0,The Italian Key,en +67748,Snowtown,2011-05-16,119.0,http://www.snowtownthemovie.com,,tt1680114,Australia's most infamous crime story,"Based on true events, 16 year-old Jamie falls in with his mother's new boyfriend and his crowd of self-appointed neighborhood watchmen, a relationship that leads to a spree of torture and murder.",0,8452,Snowtown,en +73532,Le Havre,2011-05-17,93.0,http://janusfilms.com/lehavre/,,tt1508675,,"Marcel Marx, a former bohemian and struggling author, has given up his literary ambitions and relocated to the port city Le Havre. He leads a simple life based around his wife Arletty, his favourite bar and his not too profitable profession as a shoeshiner. As Arletty suddenly becomes seriously ill, Marcel's path crosses with an underage illegal immigrant from Africa, who needs Marcel's help to hide from the police.",3850000,0,Le Havre,fr +63831,The Kid with a Bike,2011-05-18,87.0,http://www.legaminauvelo-lefilm.com/index_en.php,,tt1827512,,"Abandoned by his father, a young boy is left in the hands of an unqualified childcare provider.",0,0,Le Gamin au vélo,fr +78563,The Giants,2011-05-20,84.0,http://www.lesgeants-lefilm.be/,,tt1756595,Freedom is the greatest adventure,"Brothers Danny and Zak, 15 and 13 & 3/4 are spending the summer in their deceased grandfather's house, waiting in vain for their mother, who is otherwise busy, and running low on cash. To make some money they decide to rent out the house to a local drug dealer, but things don't go exactly as planned...",0,0,Les géants,fr +62522,35 and Ticking,2011-05-20,104.0,http://www.35andticking.com/,,tt1652287,,"Centers around the lives of Victoria, Zenobia, Clevon, and Phil -- all friends approaching the age of 35 and struggling to build the families they've always dreamed of. While Zenobia (Nicole Ari Parker) is still looking for a man, Victoria (Tamala Jones) is married to a man who doesn't want children. Clevon (Kevin Hart), meanwhile, is too geeky to get a woman, and Phil (Keith Robinson) is already married with children, but his wife is not very interested in being a mother. All four of them try to rectify their romantic lives and futures while their biological clocks tick away.",0,0,35 and Ticking,en +55846,Blitz,2011-05-20,97.0,http://www.blitzmovie.co.uk/,,tt1297919,It's cop-killer versus killer-cop.,"A tough, renegade cop is dispatched to take down a serial killer who has been targeting police officers.",15774948,741875,Blitz,en +73215,Claustrofobia,2011-05-24,90.0,http://www.claustrofobia.nl/,,tt1848824,,When Eva opens her eyes a young girl finds herself chained terrified for being abused. Her fears become reality in a way no one could ever imagine.,0,0,Claustrofobia,nl +45243,The Hangover Part II,2011-05-25,102.0,http://hangoverpart2.warnerbros.com/,86119,tt1411697,The Wolfpack Is Back,"The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.",80000000,254455986,The Hangover Part II,en +124277,The Maker,2011-06-01,6.0,http://www.themakerfilm.com/,,tt1969151,Life is what you make it.,A strange creature races against time to make the most important and beautiful creation of his life.,0,0,The Maker,en +144271,Joe + Belle,2011-06-01,80.0,http://www.joeandbelle.com/,,tt1930371,If love is not madness... It is not love.,An accidental murder brings two girls together in a series of wild crimes and romance over the course of an evening.,28000,0,Joe + Belle,en +59296,"Love, Wedding, Marriage",2011-06-03,90.0,http://www.ifcfilms.com/films/love-wedding-marriage,,tt1436559,Here comes the ride.,A happy newlywed marriage counselor's views on wedded bliss get thrown for a loop when she finds out her parents are getting divorced.,1,1378,"Love, Wedding, Marriage",en +379387,Vulgar Fractions,2011-06-03,27.0,,,tt2305348,,Vulgar Fractions ostensibly begins as a physical exploration of seven unique state intersections along Nebraska...,0,0,Vulgar Fractions,en +82745,Estamos Juntos,2011-06-03,95.0,,,tt2139855,,,0,0,Estamos Juntos,pt +105945,Memorial Day,2011-06-06,108.0,http://www.memorialdayfilm.com/,,tt1694118,Two Generations. Two Wars. One Story,"Memorial Day, 1993. When 13-year-old Kyle Vogel discovers the World War II footlocker belonging to his grandfather, Bud, everyone tells Kyle to put it back. Luckily, he ignores them. Although Bud has never talked about the war, he finds himself striking a deal with his grandson: Kyle can pick any three souvenirs, and Bud will tell him the stories behind each one. Memorial Day not only takes us on a journey into Bud's complicated wartime past, but also into Kyle's wartime future. As the two men share parallel experiences in combat, they come to realize how that magical day on the porch shaped both of their lives. ",4200000,0,Memorial Day,en +86709,Last Man Standing,2011-06-07,84.0,,,tt1753597,,"Abby Collins's quiet life as a wife and mother shows no trace of her past work as a military special-ops expert -- until the day her husband is kidnapped. With no alternative, Abby must resort to her long-dormant lethal skills to save her spouse.",0,0,Last Man Standing,en +156180,Amor?,2011-06-07,0.0,,,tt2104852,,,0,0,Amor?,pt +37686,Super 8,2011-06-08,112.0,http://www.super8-movie.com/,,tt1650062,It Arrives.,"In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.",50000000,260095987,Super 8,en +118984,33 Postcards,2011-06-09,97.0,,,tt1704161,Wishing you were here,"Dean Randall has sponsored a young Chinese orphan Mei Mei for many years, when she arrives in Sydney out of the blue to thank him, their lives are changed forever.",0,0,33 Postcards,en +79382,I Wish,2011-06-11,127.0,http://kiseki.gaga.ne.jp/,,tt1650453,,Two young brothers at opposite ends of Kyushu devise a magical plan to reunite their separated parents in Hirokazu Koreeda's benign and superbly acted picture of family life.,0,0,奇跡,ja +185564,A Crush on You,2011-06-11,85.0,,,tt1714202,,A man sends secret admirer e-mails to his crush but an e-mail address mix-up causes the notes to go to the woman's lovelorn coworker instead.,0,0,A Crush on You,en +49013,Cars 2,2011-06-11,106.0,http://www.disney.go.com/cars/,87118,tt1216475,Ka-ciao!,Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.,200000000,559852396,Cars 2,en +140846,Company,2011-06-15,145.0,,,tt1942831,,"Following five couples and their friend Robert (Neil Patrick Harris), the perpetual bachelor, Company explores the true meaning of being in a relationship through a series of vignettes. Winner of the 1971 Tony Award for Best Musical, Neil Patrick Harris (How I Met Your Mother, Rent) will led an all-star cast in a sold out event at the New York Philharmonic.",0,0,Company,en +70807,Eine Insel namens Udo,2011-06-16,80.0,,,tt1700458,,"Udo is invisible - no one ever seems to notice him. He makes the most of it, working as a department store detective and living off other people's lives as they never notice him tagging along. Until he meets the one woman who sees him.",0,0,Eine Insel namens Udo,de +77887,Hawaiian Vacation,2011-06-16,6.0,http://www.pixar.com/short_films/Toy-Story-Toons/Hawaiian-Vacation,,tt1850374,,The toys throw Ken and Barbie a Hawaiian vacation in Bonnie's room.,0,0,Hawaiian Vacation,en +59115,Quarantine 2: Terminal,2011-06-16,86.0,,123932,tt1699231,The most deadly mutant virus just went airborne... and escape is not an option.,A plane is taken over by a mysterious virus. When the plane lands it is placed under quarantine. Now a group of survivors must band together to survive the quarantine.,4000000,0,Quarantine 2: Terminal,en +67273,Buck,2011-06-17,89.0,http://www.buckthefilm.com,,tt1753549,There's no wisdom worth having that isn't hard won,"An examination of the life of acclaimed 'horse whisperer' Buck Brannaman, who recovered from years of child abuse to become a well-known expert in the interactions between horses and people.",0,386749,Buck,en +64678,The Art of Getting By,2011-06-17,83.0,http://www.foxsearchlight.com/theartofgettingby/,,tt1645080,The toughest lesson is love.,"George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.",0,1406224,The Art of Getting By,en +91070,L!fe Happens,2011-06-18,100.0,http://www.lifehappensfilm.com/,,tt1726589,A comedy that's a real mother.,"A comedy centered on two best friends, Kim and Deena, who fight to maintain normalcy in their lives after Kim gets pregnant and has a baby.",930000,30905,L!fe Happens,en +245909,Mumblecore,2011-06-19,85.0,http://mdmafilms.org,,tt2665626,,A cronicle of Tao Lin and Megan Boyle's relationship filmed through a Macbook camera.,0,0,Mumblecore,en +68637,Ducoboo,2011-06-22,0.0,,148603,tt1810864,,"Ducoboo is a very inventive dunce and joker, he is very resourceful at finding new ways to copy from his neighbor, to cheat or to defy the teacher's authority.",0,0,L'Élève Ducobu,fr +55720,A Better Life,2011-06-24,98.0,,,tt1554091,Every father wants more for his son.,A gardener in East L.A. struggles to keep his son away from gangs and immigration agents while traveling across town to perform landscaping work for the city's wealthy landowners.,10000000,1759252,A Better Life,en +79611,Target,2011-06-26,158.0,,,tt1772980,,"In the year 2020, a group of wealthy Moscovites travel to an abandoned astrophysics complex, rumoured to have enough power to halt the process of aging.",0,73000,Mishen,ru +59722,2012: Ice Age,2011-06-27,91.0,,,tt1846444,A World Frozen Over ... A Family Torn Apart.,Tells the story of a man trying to get his family to safety after a glacier causes havoc in New York.,0,0,2012: Ice Age,en +38356,Transformers: Dark of the Moon,2011-06-28,154.0,http://www.transformersmovie.com/,8650,tt1399103,The invasion we always feared. An enemy we never expected.,"Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet's most dangerous secrets.",195000000,1123746996,Transformers: Dark of the Moon,en +79728,Nicostratos the Pelican,2011-06-29,95.0,,,tt1891942,,After his wife died a man refuses to go out and doesn't want to talk to his only son. Life has no meaning for him. One day his son finds a baby pelican and decides to leave the bird at home. Pelican helps the boy find his father again and revive him back to life ...,0,0,Nicostratos le pélican,fr +77439,Where The Road Meets The Sun,2011-06-29,90.0,,,tt1477173,,A drama centered on a man dealing with the aftereffects of being in a coma caused by a car accident.,0,0,Where The Road Meets The Sun,en +68202,Without Men,2011-06-29,83.0,,,tt1547090,,The women of a remote Latin American town are forced to pick up the pieces and remake their world when all the town's men are forcibly recruited by communist guerrillas.,4,0,Without Men,en +59861,Larry Crowne,2011-06-30,98.0,http://www.larrycrowne.com/,,tt1583420,Rediscover life and love,"After losing his job, a middle-aged man reinvents himself by going back to college.",30000000,36160375,Larry Crowne,en +76349,1911,2011-07-03,125.0,http://www.1911movie.com/,,tt1772230,Fall of the Last Empire,"At the beginning of the 20th century, China is in a state of crisis. The country is split into warring factions, the citizens are starving, and recent political reforms have made matters worse, not better. The ruling Qing Dynasty, led by a seven-year-old emperor, and his ruthless mother, Empress Dowager Longyu is completely out of touch after 250 years of unquestioned power. Huang Xing has recently returned from Japan, where he has studied the art of modern warfare. When he finds his country falling apart, he feels he has no choice but to pick up the sword.",30000000,108348,辛亥革命,zh +82327,Goodbye First Love,2011-07-04,108.0,,,tt1618447,,"A 15-year-old discovers the joys and heartaches of first love with an older teen, but in the ensuing years, cannot seem to move past their breakup.",4500000,0,Un amour de jeunesse,fr +119172,The Last Days of the World,2011-07-04,96.0,http://www.sekaisaigo.net/,,tt1847687,,"The life of a student named Kanou is transformed when a tiny man informs him that Earth will soon be annihilated. Kanou decides to do just as he pleases with the time he has left, leading to strange adventures that could be real -- or just a dream.",0,0,Sekai Saigo no Hibi,ja +70057,Dragon,2011-07-04,115.0,http://www.facebook.com/DragonWuXia,,tt1718199,Blood Always Leaves a Trail,"A sinful martial arts expert wants to start a new tranquil life, only to be hunted by a determined detective and his former master.",0,0,武俠,en +38317,Zookeeper,2011-07-06,102.0,http://www.zookeeper-movie.com/,,tt1222817,Welcome to his jungle.,"A comedy about a zookeeper who might be great with animals, but he doesn't know anything about the birds and the bees. The man can't find love, so he decides to quit his job at the zoo, but his animal friends try to stop him and teach him that Mother Nature knows best when it comes to love.",80000000,169852759,Zookeeper,en +69775,Murder 2,2011-07-08,127.0,,,tt1918965,,A former police officer gets hired by a gangster to trace missing call girls and their abductor.,0,0,मर्डर 2,hi +96888,Policeman,2011-07-09,105.0,,,tt1978447,,A member of an Israeli anti-terrorist unit clashes with a group of young radicals.,0,0,Ha-shoter,en +78403,Born Bad,2011-07-11,86.0,,,tt1869315,,A young woman (Bonnie Dennison) falls for a mysterious man (Michael Welch) who reveals his dark side.,0,0,Born Bad,en +79995,Late Bloomers,2011-07-13,88.0,,,tt1572502,,"Late Bloomers stars Isabella Rossellini and William Hurt as a married couple pulled apart by the threat of old age. Each reacts in a different way: Hurt’s distinguished architect chases after his glory days, while Rossellini’s housewife installs handrails about the house.",0,0,Late Bloomers,fr +67314,Prey,2011-07-13,142.0,,,tt0907305,,"One night, several deer hurl themselves unexpectedly against the electric fence of a farm. Seeing deep signs of biting on the animals’ bodies, the farm owners realise that a predator is roaming about the neighbouring woods. Having determined to hunt it down, the farmer and his family penetrate deep into the surrounding forest. They look with bewilderment at the dying environment ravaged by a mysterious evil force. As the sun slowly sinks away, howling resounds through the forest. The hunters have become prey...",0,0,La Traque,fr +69278,Phase 7,2011-07-13,95.0,http://www.fase7.com/,,tt1568816,,Inside a quarantined apartment building a man must protect his pregnant wife from his new neighbors.,600000,0,Fase 7,es +70585,Lucky,2011-07-15,103.0,http://www.theluckymovie.com/,,tt1473397,Even a serial killer can win the lottery,A wannabe serial killer wins the lottery and pursues his lifelong crush.,0,0,Lucky,en +115223,Pokémon the Movie Black: Victini and Reshiram,2011-07-16,96.0,http://www.pokemon.com,34055,tt1961324,A Hero Must Choose: The Power of Ideals... or the Courage of Truth?,"The Kingdom of the People of the Vale once ruled over the land, but now all that remains is the Sword of the Vale. in the city of Eindoak. Ash, Iris, and Cilan arrive in Eindoak during a harvest festival's Pokémon Tournament and meet the legendary Pokémon Victini who wishes to share its powers of victory to someone. Elsewhere in the city, a descendant of the People of the Vale named Damon has arrived who seeks to revive the kingdom's power with the Sword of the Vale, bringing them back into power over the land, and Ash and his friends must stop him before he destroys the land along with Victini.",0,0,ビクティニと白き英雄レシラム,ja +88557,Pokémon the Movie White: Victini and Zekrom,2011-07-16,96.0,http://www.pokemonthemovie.com/victini/white/,34055,tt1739212,A Hero Must Choose: The Power of Ideals... or the Courage of Truth?,"The Kingdom of the People of the Vale once ruled over the land, but now all that remains is the Sword of the Vale. in the city of Eindoak. Ash, Iris, and Cilan arrive in Eindoak during a harvest festival's Pokémon Tournament and meet the legendary Pokémon Victini who wishes to share its powers of victory to someone. Elsewhere in the city, a descendant of the People of the Vale named Damon has arrived who seeks to revive the kingdom's power with the Sword of the Vale, bringing them back into power over the land, and Ash and his friends must stop him before he destroys the land along with Victini.",0,0,ビクティニと黒き英雄ゼクロム,ja +70821,Cyberbully,2011-07-16,90.0,,,tt1930315,Words can hurt.,A woman tries to help her teenage daughter when she becomes the victim of online bullying.,0,0,Cyberbully,en +83389,From Up on Poppy Hill,2011-07-16,91.0,http://kokurikozaka.jp/,,tt1798188,I look up as I walk...,"The story is set in 1963 in Yokohama. Kokuriko Manor sits on a hill overlooking the harbour. A 16 year-old girl, Umi, lives in that house. Every morning she raises a signal flag facing the sea. The flag means “I pray for safe voyages”. A 17 year-old boy, Shun, always sees this flag from the sea as he rides a tugboat to school. Gradually the pair are drawn to each other but they are faced with a sudden trial. Even so, they keep going without running from facing the hardships of reality.",0,0,コクリコ坂から,ja +68472,House of the Rising Sun,2011-07-19,90.0,,,tt1788383,They took his badge. He kept the gun.,"Ray, an ex-cop, is starting a new life looking to stay out of trouble. One evening, on Ray's watch, the nightclub he works for is robbed and the owner's son is shot dead. As his criminal past is exposed Ray hunts for the person responsible for this crime in an effort to clear his own name. Ray must get to the bottom of this as both the mob and cops start to close in on him as their target suspect.",1500000,0,House of the Rising Sun,en +81010,Ticket Out,2011-07-20,89.0,http://www.imdb.com/title/tt1368870/,,tt1368870,,About a mother who takes her children and flees an abusive ex-husband with the help of Ray Liotta's character.,0,0,Ticket Out,en +70863,Poolboy - Drowning Out the Fury,2011-07-22,90.0,,,tt1693843,No Lifeguard on Duty,"In this unearthed lost movie from 1990 that the studio deemed too terrible to release, a Vietnam Veteran Sal Bando(Sorbo), tortured by his past as a Poolboy returns home to Van Nuys, California, and a country he doesn't recognize, in which it seems only Mexicans run pool-cleaning companies. Bando sets off on a brutal mission to reclaim his ""rightful"" vocation and enact revenge on the man(Trejo) who killed his wife and son.",0,0,Poolboy - Drowning Out the Fury,en +375384,Lie Detector,2011-07-22,4.0,,,tt1914302,,A job interview goes horribly wrong when a lie detector exposes people‘s true feelings about each other.,0,0,Lie Detector,en +55420,Another Earth,2011-07-22,92.0,http://www.anotherearth.com/,,tt1549572,,"On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.",100000,1776935,Another Earth,en +127144,"Don't Hug Me, I'm Scared",2011-07-25,4.0,http://beckyandjoes.com/dont-hug-me-im-scared/,,tt2501618,,A singing notebook tells 3 puppets to be creative. They singalong but they're not creative as they should be. The notebook has crazy feelings about organs.,0,0,"Don't Hug Me, I'm Scared",en +70875,The Harvest (La Cosecha),2011-07-29,80.0,http://www.facebook.com/theharvestfilm,,tt1981703,,The story of the children who work 12-14 hour days in the fields without the protection of child labor laws. These children are not toiling in the fields in some far away land. They are working in America.,56000,0,The Harvest (La Cosecha),en +72711,The Interrupters,2011-07-29,125.0,http://interrupters.kartemquin.com/,,tt1319744,Every City Needs Its Heroes,The Interrupters tells the moving and surprising stories of three Violence Interrupters — former gang members who try to protect their Chicago communities from the violence they once caused.,0,282448,The Interrupters,en +80472,Garbage Prince,2011-07-29,0.0,,,tt1606385,,,0,0,Roskisprinssi,fi +70670,Headhunters,2011-08-04,100.0,,,tt1614989,The hunt is on.,An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary..,0,15699707,Hodejegerne,en +145316,Air Mater,2011-08-04,6.0,http://www.pixar.com/short_films/Cars-Toons/Air-Mater,,tt2100093,,Mater's decision to fly lands him accidentally at a big airshow.,0,0,Air Mater,en +66125,Red Dog,2011-08-04,92.0,http://www.reddogmovie.com/,,tt0803061,He's Been Everywhere Mate.,Based on the legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.,0,0,Red Dog,en +115712,Either Way,2011-09-02,84.0,,,tt2009643,,Icelandic drama about two remote road-workers.,0,0,Á annan veg,is +74779,Robotropolis,2011-09-02,90.0,,,tt1754438,,"A group of reporters are covering the unveiling of a new facility that is completely maintained by robot prototypes. When one of the robots goes haywire, the reporters find themselves not just reporting on the malfunction, but fighting for their lives.",0,0,Robotropolis,en +86279,Fakta Ladh Mhana,2011-08-05,145.0,,,tt2130033,,"The film begins with the sad state of affairs in a village, where politician turned Industries Minister Patil and his brother with the help of local politician Kulkarni (Vaibhav Mangale) make the lives of poor farmers miserable forcing them to sale their lands after the SEZ comes into force. Mahesh Manjrekar, Sanjay Khapre, Siddhu The only opposition comes from an ex-serviceman (Satish Pulekar) who refuses to bow down. He is murdered by Kulkarni and his men but his mentally challenged nephew is the mute witness against Kulkarni. His helpless uncle after witnessing the thumb rule, rushes him to the city in search of an elder nephew (Bharat Jadhav) of the ex-serviceman. Thus begins the revenge",10,0,Fakta Ladh Mhana,mr +71689,Phineas and Ferb the Movie: Across the 2nd Dimension,2011-08-05,78.0,,,tt1825918,"An adventure so big, one dimension isn't enough.","Perry's worst fear comes true when Phineas and Ferb finds out that he is in fact Secret Agent P, but that soon pales in comparison during a trip to the 2nd dimension where Perry finds out that Dr. Doofenshmirtz is truly evil and successful.",0,0,Phineas and Ferb the Movie: Across the 2nd Dimension,en +71905,Superheroes,2011-08-08,81.0,http://www.hbo.com/documentaries/superheroes/index.html,,tt1792621,,"A journey inside the world of real life caped crusaders. From all over America, these self-proclaimed crime fighters, don masks, homemade costumes and elaborate utility belts in an attempt to bring justice to evildoers everywhere.",0,0,Superheroes,en +85544,Back to Stay,2011-08-08,95.0,,,tt2023367,,"Marina, Sofia and Violeta deal differently with the death of their grandmother.",0,0,Abrir Puertas y Ventanas,en +82321,The Loneliest Planet,2011-08-10,113.0,,,tt1695405,,A local guide takes a young couple through a twisted backpacking trip across the Georgian wilderness.,0,0,The Loneliest Planet,en +80717,Violeta Went to Heaven,2011-08-11,110.0,http://www.violetafilm.com/,,tt2014392,Creation is a bird without a flight plan,"A portrait of famed Chilean singer and folklorist Violeta Parra filled with her musical work, her memories, her loves and her hopes.",0,0,Violeta se fue a los cielos,es +86391,All Together,2011-08-12,96.0,,,tt1674057,,Five old friends decide to move in together as an alternate to living in a retirement home; joining them is an ethnology student whose thesis is on the aging population.,0,7211180,Et si on vivait tous ensemble ?,fr +95756,The Antics Roadshow,2011-08-13,48.0,,,tt2054815,,"The Antics Roadshow is a celebration of the pranksters, hoaxers, jokers, activists and stunt merchants who use public space for their own unauthorised ends. This film brings together a wide range of individuals with all sorts of motivations, who have all hijacked the public arena to make a noise, be it for comedic, artistic or political ends, and have all done so using a variety of illicit and eccentric methods, which the audience should probably not try at home.",0,0,The Antics Roadshow,en +292262,Graffiti Wars,2011-08-14,47.0,,,tt2023500,,A look at the feud between graffiti artists King Robbo and Banksy.,0,0,Graffiti Wars,en +83540,Dreams of a Life,2011-08-16,95.0,,,tt1819513,Would anyone miss you?,"A filmmaker sets out to discover the life of Joyce Vincent, who died in her bedsit in North London in 2003. Her body wasn't discovered for three years, and newspaper reports offered few details of her life - not even a photograph.",0,0,Dreams of a Life,en +77949,The Awakening,2011-08-17,107.0,,,tt1687901,Sometimes dead does not mean gone.,1921 England is overwhelmed by the loss and grief of World War I. Hoax exposer Florence Cathcart (Hall) visits a boarding school to explain sightings of a child ghost.,4798235,209696,The Awakening,en +82817,Unforgivable,2011-08-17,111.0,,,tt1583737,,A middle-aged writer is looking for a quiet retreat; a slightly younger female estate agent gives him details of a house a close to Venice.,0,0,Impardonnables,fr +81022,Widows,2011-08-18,100.0,http://www.viudaslapelicula.com.ar/,,tt1785670,,A married man's death puts his widow and mistress in an unusual living arrangement.,0,0,Viudas,es +62046,Flypaper,2011-08-19,87.0,http://wn.com/Flypaper_%282011_film%29,,tt1541160,Two sets of bank robbers. One very sticky heist.,A man caught in the middle of two simultaneous robberies at a bank desperately tries to protect the teller with whom he's secretly in love.,5000000,3142154,Flypaper,en +76785,Roadie,2011-08-20,95.0,http://www.roadiemovie.com/,,tt1450330,,"After 20 years of touring, a roadie for a defunct 80s hair band returns home to live with his mother.",0,0,Roadie,en +73144,Portal: No Escape,2011-08-23,7.0,,,tt2034756,,A woman wakes up in a room with no memory of who she is or how she got there...,0,0,Portal: No Escape,en +50875,Higher Ground,2011-08-26,109.0,http://www.sonyclassics.com/higherground/,,tt1562568,,A chronicle of one woman's lifelong struggle with her faith.,2000000,841733,Higher Ground,en +180998,Música Campesina,2011-08-27,100.0,,,tt1730311,,"Alejandro Tazo, a 30-something Chilean, arrives at Nashville on a Greyhound bus from the West Coast. He has been mugged on board? Why is he here? How did he get here? What will he do in Music City?",0,0,Música Campesina,en +70575,Children of the Corn: Genesis,2011-08-30,95.0,,115225,tt1745672,,"Tim and Allie seek shelter in a remote desert compound after becoming lost and stranded. A strange Manson-like character, Preacher, reluctantly allows them inside with strict orders to be gone by morning and not wander ""where you are not invited.""",0,0,Children of the Corn: Genesis,en +79644,Godfrey: Black By Accident,2011-08-30,0.0,,,tt2040292,,With his signature wide-eyed humor and treasure trove of voices Godfrey asks the questions that plague the depths of our being. Why do people duck in the rain and protect just one ear? What if guido bouncers ran the TSA? Stand-up live at New York City’s Gramercy Theatre.,0,0,Godfrey: Black By Accident,en +75233,"Oslo, August 31st",2011-08-31,95.0,,,tt1736633,,"Anders is a recovering drug addict in an Oslo rehab clinic. On the 30th August, he is given a day’s leave to attend a job interview in the city centre.",0,0,"Oslo, 31. august",no +76788,Mankatha,2011-08-31,149.0,,,tt1705772,Strictly no rules,Vinayak and his 4 team members rob a booty of 500 crores INR. Trouble starts when two of the team betrays them.,6100000,28000000,மங்காத்தா,ta +137145,247°F,2011-09-01,90.0,,,tt1877543,Every Degree Matters,"Four friends travel to a lakeside cabin for a carefree weekend, the fun turns into a nightmare when 3 of them end up locked in a hot sauna. Every minute counts and every degree matters as they fight for their lives in the heat up to 247°F.",650000,0,247°F,pt +178595,"DOS μια ιστορία αγάπης, απ' την ανάποδη",2011-09-01,0.0,,,tt1698499,"A love story, in reverse.","Athens & Barcelona, two cities, two love stories, two languages, two realities, two couples that will never meet, two years anniversary... or is it all one?",0,0,"DOS μια ιστορία αγάπης, απ' την ανάποδη",el +85543,Bonsai,2011-09-02,95.0,,,tt1913002,"A story of love, books and plants.",A young writer recounts an earlier romance in hopes of attracting his new love interest.,0,0,Bonsái,en +73624,The Man from the Future,2011-09-02,106.0,,,tt2027178,Nothing will be like before.,"Zero (Wagner Moura) is a brilliant scientist, but unfortunate because 20 years ago was publicly humiliated and lost in college Helena (Alinne Moraes) the love of his life. One day, an accidental experience with one of his inventions makes him travel in time, more precisely, to the past. After the chance to change his story, Zero returns to this totally changed.",0,0,O Homem do Futuro,pt +65055,Shark Night,2011-09-02,91.0,http://www.iamrogue.com/sharknight3d/fullsite/index.html,,tt1633356,Terror runs deep.,A weekend at a lake house in the Louisiana Gulf turns into a nightmare for seven vacationers as they are subjected to fresh-water shark attacks.,28000000,10126458,Shark Night,en +91186,A Simple Life,2011-09-04,118.0,,,tt2008006,,"The relationship between a middle-aged man (Andy Lau) and the elderly woman (Deanie Ip), who has been the family's helper for sixty years.",0,2802459,桃姐,cn +226163,Il mundial dimenticato,2011-09-05,,,,tt2229221,,,0,0,Il mundial dimenticato,it +83384,Dark Horse,2011-09-05,84.0,,,tt1690455,,"Abe is a man who is in his thirties and who lives with his parents. He works regretfully for his father while pursuing his hobby of collecting toys. Aware that his family doesn't think highly of him, he tries to spark a relationship with Miranda, who recently moved back home after a failed literary/academic career. Miranda agrees to marry Abe out of desperation, but things go awry.",0,0,Dark Horse,en +75969,Men in the City 2,2011-09-06,112.0,,220872,tt1729211,,"The sequel of the ""Men in the city"" movie which reunites all the characters.",0,0,Männerherzen... und die ganz ganz große Liebe,de +71191,La Planque,2011-09-06,79.0,,,tt1730701,,,0,0,La Planque,fr +98631,Himizu,2011-09-06,129.0,,,tt1900893,,Two teenagers and a group of people made homeless by a tsunami try and make their way in a devastated Japan,0,0,ヒミズ,ja +67900,Scooby-Doo! Legend of the Phantosaur,2011-09-06,75.0,,,tt1777608,,"A relaxing spa getaway evolves into a prehistoric panic when Scooby-Doo and the gang uncover the horrible Phantosaur, an ancient legend come to life to protect hidden treasures buried in secret desert caves. But this scare-a-saurus doesn’t stand a chance with Shaggy around, after he finds his inner hero with the help of new-age hypnosis. Like, it makes him more brave and less hungry!",0,0,Scooby-Doo! Legend of the Phantosaur,en +86820,4:44 Last Day on Earth,2011-09-07,85.0,,,tt1707391,,A look at how a painter and a successful actor spend their last day together before the world comes to an end.,0,17801,4:44 Last Day on Earth,en +73872,Terraferma,2011-09-07,88.0,,,tt1641410,,A Sicilian family deals with the arrival of a group of immigrants on their island.,0,0,Terraferma,it +289126,Hiver rouge,2011-09-08,,,,tt1854538,,,0,0,Hiver rouge,fr +85525,The Day He Arrives,2011-09-08,79.0,,,tt1922561,,"Sang-Joon is a professor in the film department at a provincial university. He goes to Seoul to meet his senior, Young-Ho, who works as a film critic. Sang-Joon stays in a northern village in Seoul for 3 days.",0,11,북촌방향,ko +77185,Two Days,2011-09-08,90.0,,,tt1945081,,"A two days from the life of Pyotr Drozdov, a highly ranked official from Moscow, which he spends with young museum employee Masha.",16670000,0,Dva Dnya,ru +73869,The Last Man on Earth,2011-09-09,100.0,http://www.fandango.it/scheda.php/it/l-ultimo-terrestre/579,,tt2006781,,The story of the latest week on the earth before the announce of the landing of an extraterrestrial society on earth seen by the eyes of a misogynist man with only the desire solitude and routine.,3000000,0,L'ultimo terrestre,it +89008,The Oranges,2011-09-09,90.0,http://www.orangesthemovie.com/,,tt1313139,It's about to get juicy.,A man's (Hugh Laurie) affair with his friend's much-younger daughter (Leighton Meester) throws two neighboring families into turmoil.,0,366377,The Oranges,en +74510,Kevin Hart: Laugh at My Pain,2011-09-09,89.0,http://www.kevinhartlaughatmypain.com/,,tt1999192,Alright! Alright! Alright!,Experience the show that quickly became a national phenomenon. Get an up-close and personal look at Kevin Hart back in Philly where he began his journey to become one of the funniest comedians of all time. You will laugh 'til it hurts!,0,0,Kevin Hart: Laugh at My Pain,en +120457,Drifters,2011-09-09,111.0,,,tt1699128,,A man develops an attraction to the daughter of his father's fiancee.,0,0,Gli sfiorati,it +97762,Two Years at Sea,2011-09-10,88.0,,,tt2359417,,Experimental film following a bearded Scottish hermit as he goes about his outcast life.,0,0,Two Years at Sea,en +73565,Burning Man,2011-09-10,111.0,,,tt1570559,,An English chef with a chic restaurant on Bondi Beach trying to put his life and his relationship with his son back on track while surrounded by women.,0,0,Burning Man,en +83899,You're Next,2011-09-10,95.0,,,tt1853739,Did You Remember To Lock Your Door?,"When the Davison family comes under attack during their wedding anniversary getaway, the gang of mysterious killers soon learns that one of their victims harbors a secret talent for fighting back.",0,14347000,You're Next,en +84355,Your Sister's Sister,2011-09-11,90.0,http://www.yoursisterssister-themovie.com/,,tt1742336,A comedy about doing the right thing with the wrong person.,"Iris invites her friend Jack to stay at her family's island getaway after the death of his brother. At their remote cabin, Jack's drunken encounter with Hannah, Iris' sister, kicks off a revealing stretch of days.",125000,3200000,Your Sister's Sister,en +76333,Extraterrestrial,2011-09-11,90.0,,,tt1680133,,"Everyone knows what to do if one morning the sky would be absolutely full of UFOs: run as fast as you can. However, what would happen if the invasion started while you are in the flat of the girl of your dreams, the one you have just met?",0,0,Extraterrestre,es +73943,388 Arletta Avenue,2011-09-11,87.0,,,tt1767272,,A young couple find themselves in an unnerving situation with a mysterious stalker.,0,0,388 Arletta Avenue,en +127728,8:46,2011-09-11,50.0,,,tt2048688,Never Forget,"A glimpse into the lives of an ensemble of characters leading up to the moment the world changed forever - 8:46 a.m. Tuesday September 11, 2001.",0,0,8:46,en +103012,Lucky,2011-09-11,100.0,,,tt1702543,,"A 10-year-old South African orphan leaves his Zulu village to make his own life in the city... only to find no one will help him, except a formidable Indian woman.",0,0,Lucky,en +51994,The Deep Blue Sea,2011-09-11,98.0,http://www.thedeepblueseamovie.com/,,tt1700844,,The wife of a British Judge is caught in a self-destructive love affair with a Royal Air Force pilot.,0,1126525,The Deep Blue Sea,en +58547,10 Years,2011-09-12,100.0,,,tt1715873,Who Got Fat? Who Didn't Change? Who Got Rich? Who Got Hot?,A group of friends reunite ten years after their high-school graduation.,0,201146,10 Years,en +67328,The Gundown,2011-09-12,97.0,,,tt1555110,The Day Has Come,"Seeking revenge and justice, Cole Brandt finds himself in the lawless town of Dead River where he is faced with one last bloody showdown for freedom in order to protect The Majestic Saloon and a beautiful woman.",0,0,The Gundown,en +74561,Amsterdam Heavy,2011-09-12,90.0,,,tt1740468,Revenge means never having to say you're sorry,"CIA Agent Martin Keele (Michael Madsen - Reservoir Dogs Kill Bill) sets the wheels spinning in this gritty urban action thriller, as mysterious gangster J.D. goes on the rampage in Amsterdam, stopping at nothing to uncover those who have betrayed him",500000,0,Amsterdam Heavy,en +110588,Gingerdead Man 3: Saturday Night Cleaver,2011-09-13,78.0,,138968,tt1293561,,The gingerdead man travels back in time to 1976 and carries out an epic disco killing spree.,0,0,Gingerdead Man 3: Saturday Night Cleaver,en +70006,Never Back Down 2: The Beatdown,2011-09-13,90.0,,96676,tt1754264,,Four fighters different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in heir midst.,3000000,0,Never Back Down 2: The Beatdown,en +76101,Freerunner,2011-09-14,87.0,,,tt1579232,Run For Your Life,"With a ticking bomb locked to his neck, a young freerunner races against the clock and all types of baddies to get from one end of the city to the other to save himself and his girlfriend.",5000000,0,Freerunner,en +84226,The Day,2011-09-15,85.0,,,tt1756799,Fight. Or Die.,"Open war against humanity rages. For five survivors – lost and on the run – the pursuit is relentless, the bullets are dwindling and the battle is everywhere. This is a 24-houuir look into their lives.",0,0,The Day,en +83114,Tatsumi,2011-09-15,94.0,,,tt1922736,,"Animated film based on the life and stories of Manga writer Yoshihiro Tatsumi who revolutionised the art form with darker, more adult stories. The film animates several of his stories",800,0,Tatsumi,en +98612,Above Us Only Sky,2011-09-15,87.0,,,tt1813774,,A woman discovers the man she has lived with for years is not who she thought he was...,0,0,Über uns das All,de +137217,Donovan's Echo,2011-09-17,92.0,,,tt1743922,"A series of uncanny déjà vu events force a man to re-examine his tragic past, memory, instinct, and future.","A series of uncanny déjà vu events force a man to re-examine his tragic past, memory, instinct, and future.",0,0,Donovan's Echo,en +92321,Hotarubi no Mori e,2011-09-17,45.0,,,tt2061702,,"One hot summer day a little girl gets lost in an enchanted forest of the mountain god where spirits reside. A young boy appears before her, but she cannot touch him for fear of making him disappear. And so a wondrous adventure awaits...",0,0,蛍火の杜へ,ja +296192,Comedy Central Roast of Charlie Sheen,2011-09-19,90.0,http://www.cc.com/shows/roast-of-charlie-sheen,,tt1985970,,It's Charlie Sheen's turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast.,0,0,Comedy Central Roast of Charlie Sheen,en +70587,Spooky Buddies,2011-09-20,88.0,,91657,tt1792131,,Disney's irresistible talking puppies are back in an all-new movie that takes them far across town to a mysterious mansion where something very spooky is going on.,0,0,Spooky Buddies,en +73262,Hell,2011-09-20,89.0,,,tt1643222,"What gave us our beginning, will lead to our end.","In 2016 the sun has turned the entire world into a scorched and barren wasteland. The humans who have survived are either resourceful or violent, and sometimes both. Marie, her little sister Leonie, and best friend Phillip, are in a car headed to the mountains - rumor has it there is water there. Along the way they meet Tom, a first-rate mechanic. But can they trust him? Fraught with deep distrust, the group is lured into an ambush where their real battle for survival begins.",0,0,Hell,de +162864,The 3 Rs,2011-09-21,1.0,,,tt2061818,,"One-minute short film, used as a trailer for the Vienna International Film Festival.",0,0,The 3 Rs,en +59965,Abduction,2011-09-22,106.0,http://www.abductionthefilm.com/,,tt1600195,They stole his life. He's taking it back.,A young man sets out to uncover the truth about his life after finding his baby photo on a missing persons website.,35000000,82087155,Abduction,en +79120,Weekend,2011-09-22,96.0,http://weekenderfilm.tumblr.com/,,tt1714210,A (sort of) love story between two guys over a cold weekend in October.,"After a drunken house party with his straight mates, Russell heads out to a gay club. Just before closing time he picks up Glen but what's expected to be just a one-night stand becomes something else, something special.",8000,484592,Weekend,en +45610,Machine Gun Preacher,2011-09-23,129.0,http://www.machinegunpreacher.org/movie/,,tt1586752,Hope is the greatest weapon of all,"The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.",30000000,2527904,Machine Gun Preacher,en +117098,Cloudburst,2011-09-23,93.0,,,tt1466054,,"When Dot (Brenda Fricker)'s granddaughter puts her into a nursing home, Stella (Olympia Dukakis) stages a breakout, and takes Dot to Canada so they can get married. They pick up a hitchhiker along the way.",0,0,Cloudburst,en +80276,Dookudu,2011-09-23,174.0,,,tt1756476,,A young policeman hunts down the men who caused the accident that put his politician father into a coma.,0,0,దూకుడు,te +75745,Force,2011-09-23,137.0,,429409,tt1992138,,A vengeful drug-dealer/gangster targets and terrorizes an entire police unit and their families.,0,0,Force,en +70736,A Bird of the Air,2011-09-23,99.0,http://www.abirdoftheair.com/,,tt0448022,,"A man in search of his past, and a woman who lives in the moment, are brought together when they pursue the origins of a stray parrot in this comedic and romantic drama.",0,0,A Bird of the Air,en +74879,Once Upon a Time in Anatolia,2011-09-23,150.0,,,tt1827487,,A group of men set out in search of a dead body in the Anatolian steppes.,0,138730,Bir zamanlar Anadolu'da,tr +62837,Dolphin Tale,2011-09-23,113.0,http://dolphintalemovie.warnerbros.com/index.html,288491,tt1564349,Inspired by the amazing true story of Winter.,A story centered on the friendship between a boy and a dolphin whose tail was lost in a crab trap.,37000000,95404397,Dolphin Tale,en +84228,Julia X,2011-09-24,92.0,,,tt1533058,,"Meeting a man on the Internet, Julia decides to see him in person, only to get abducted and branded with the letter ""x"" by that guy. A game of cat and mouse follows, but the story has an unexpected twist.",4000000,0,Julia X,en +93904,Snowballs,2011-09-26,5.0,,,tt2066973,,Girls dressed as American Indians visit a good old boy for his birthday.,0,0,Snowballs,en +75948,The Sorcerer and the White Snake,2011-09-27,100.0,,,tt1857913,,The Sorcerer and the White Snake is an ancient Chinese fable about a woman demon who falls in love with a mortal is brought to life through the latest advances in CGI and action techniques.,0,0,白蛇传说,zh +82968,Blood of My Blood,2011-09-27,140.0,http://filmesanguedomeusangue.blogs.sapo.pt/,,tt1625155,,A regular family living in the outskirts of Lisbon sees the serenity of their lives shaken beyond any remedy within a week.,0,0,Sangue do Meu Sangue,pt +71672,Wrong Turn 4: Bloody Beginnings,2011-10-17,93.0,,52985,tt1865567,These hillbillies are going crazy.,"Follows a group of friends that decide to go snowmobiling during their winter break. They make a ""wrong turn"", getting lost in a storm.",0,0,Wrong Turn 4: Bloody Beginnings,en +76115,The Phantom of the Opera at the Royal Albert Hall,2011-09-27,202.0,,,tt2077886,,"A disfigured musical genius, hidden away in the Paris Opera House, terrorises the opera company for the unwitting benefit of a young protégée whom he trains and loves. The 25th anniversary of the first public performance of Phantom of the Opera was celebrated with a grand performance at the Royal Albert Hall in London.",0,0,The Phantom of the Opera at the Royal Albert Hall,en +71859,We Need to Talk About Kevin,2011-09-28,112.0,http://kevin.oscilloscope.net/,,tt1242460,,"The mother of a teenage sociopath who went on a high-school killing spree recalls her son's deranged behavior during childhood, as she deals with her grief.",7000000,6038942,We Need to Talk About Kevin,en +165181,Abiogenesis,2011-09-29,5.0,,,tt1959325,,"In this breathtaking science fiction spectacle, a strange mechanical device lands on a desolate world and uses the planet to undergo a startling transformation, that has profound implications for an entire galaxy.",0,0,Abiogenesis,en +73661,Munger Road,2011-09-30,85.0,http://www.mungerroad.com/,,tt1720172,,"On the eve of the annual Scarecrow Festival, two St. Charles police officers search for a return killer the same night four teenagers go missing on Munger Road",0,0,Munger Road,en +82941,Breathing,2011-09-30,94.0,,,tt1680679,,A 19-year-old is coming out of prison and trying to build a new life but he can't deal with his guilt.,0,0,Atmen,de +112531,My Name Is Ki,2011-09-30,94.0,,,tt2004270,,"Ki is a young woman who no longer wants to live with the father of her child. She moves into a house in which lives Miko, a serious man who does not care for distractions. The responsibility of raising a child on her own comes up against the need to work and the wish to live a carefree life.",0,0,Ki – nie polubisz jej,pl +31880,The Pool Boys,2011-09-30,84.0,,,tt0807028,,A pool boy and a gardener turn an empty mansion into a home for women who belong to the world's oldest profession.,0,0,The Pool Boys,en +44754,Margaret,2011-09-30,149.0,http://www.foxsearchlight.com/margaret/,,tt0466893,,"A young woman witnesses a bus accident, and is caught up in the aftermath, where the question of whether or not it was intentional affects many people's lives.",14000000,46495,Margaret,en +48231,A Dangerous Method,2011-09-30,99.0,http://www.sonyclassics.com/adangerousmethod/,,tt1571222,Why deny what you desire the most.,"Seduced by the challenge of an impossible case, the driven Dr. Carl Jung takes the unbalanced yet beautiful Sabina Spielrein as his patient. Jung’s weapon is the method of his master, the renowned Sigmund Freud. Both men fall under Sabina’s spell.",15000000,27462041,A Dangerous Method,en +166161,Jacob,2011-09-30,90.0,http://www.odysseepictures.com/?cat=6,,tt1801063,"Where innocence ends, vengeance begins.","Lonely and disturbed Jacob Kell loved his little sister more than anything on earth. When tragedy strikes, Jacob retaliates the only way he knows how - and anyone who crosses his path will know there is no limit to his brutal vengeance.",900000,0,Jacob,en +69668,Dream House,2011-09-30,84.0,,,tt1462041,"Once upon a time, there were two little girls who lived in a house.","Publisher, Will Atenton quits a lucrative job in New York to relocate his wife, Libby and their daughters to a quaint town in New England. However, as they settle into their home the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor who was close to the murdered family, Will pieces together a horrifying chain of events.",50000000,38502340,Dream House,en +40807,50/50,2011-09-30,100.0,http://www.50-50themovie.com/,,tt1306980,It takes a pair to beat the odds.,"Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis, and his subsequent struggle to beat the disease.",8000000,39187783,50/50,en +87311,Love's Everlasting Courage,2011-10-01,89.0,,97919,tt1672621,,"Clark Davis struggles to maintain his land and support his family during a long drought. With a bank loan to repay, his wife, Ellen, takes a job in town as a seamstress, but soon becomes ill with scarlet fever. Devastated to lose his beloved wife, Clark and his young daughter Missie turn to his parents Irene and Lloyd for support. Clark must find a way to save his farm and survive Ellen's death without losing the person he loves most: his daughter.",0,0,Love's Everlasting Courage,en +78362,Snow Beast,2011-10-04,90.0,http://www.snowbeastmovie.com/,,tt1623765,Survival Is Everything,"People disappear every year out in the snow--but this year, something is adding to the body count. Jim and his research team study the Canadian Lynx every year. This year, he has to take his rebelling 16 year-old daughter, Emmy, with him. But the lynx are missing. As Jim and his team try to find why, something stalks them--a predator no prey can escape.",0,0,Snow Beast,en +264646,LEGO Hero Factory: Savage Planet,2011-10-04,45.0,,,tt2234550,,"The Hero Factory's mission: to build the bravest, most advanced Heroes in the galaxy! When rookie Rocka responds to a civilian distress call from the planet Quatros.",0,0,LEGO Hero Factory: Savage Planet,en +76746,Vdrebezgi,2011-10-06,0.0,,,tt1855417,,,400,0,Вдребезги,ru +80281,Oosaravelli,2011-10-06,165.0,,,tt1890493,Vengeance with a difference,Tony (NTR) is a wily youngster who does illegal things for money. He falls in love with Niharika (Tamanna) during a freak incident. He keeps following her and proposing to her. But she is engaged to some other rich guy. Tony has a secret mission and he is in hot pursuit of somebody. The rest of the story is all about the love story between the lead pair and how Tony achieved his mission.,0,0,ఊసరవెల్లి,te +460870,Shock and Awe: The Story of Electricity,2011-10-06,180.0,http://www.bbc.co.uk/programmes/p00kjq6d,,tt2083695,,"Professor Jim Al-Khalili tells the electrifying story of our quest to master nature's most mysterious force - electricity. Until fairly recently, electricity was seen as a magical power, but it is now the lifeblood of the modern world and underpins every aspect of our technological advancements. Without electricity, we would be lost. This series tells of dazzling leaps of imagination and extraordinary experiments - a story of maverick geniuses who used electricity to light our cities, to communicate across the seas and through the air, to create modern industry and to give us the digital revolution.",0,0,Shock and Awe: The Story of Electricity,en +100270,Game of Werewolves,2011-10-07,104.0,,,tt1650555,,"After 15 years, Tomas, a moderately successful writer, returns to his family's ancestral village in Galicia to receive a civic award, and write his next book. Neither of those things happens.",0,0,Lobos de Arga,es +76543,Tyrannosaur,2011-10-07,93.0,,,tt1204340,,"The story of Joseph a man plagued by violence and a rage that is driving him to self-destruction. As Joseph's life spirals into turmoil a chance of redemption appears in the form of Hannah, a Christian charity shop worker. Their relationship develops to reveal that Hannah is hiding a secret of her own with devastating results on both of their lives.",0,22321,Tyrannosaur,en +125623,The Other Son,2012-04-02,105.0,,,tt2073016,,Two men discover they were accidentally switched at birth.,0,0,Le Fils de l'autre,fr +75229,Babycall,2011-10-07,96.0,,,tt1595833,,"After escaping an abusive husband, Anna and her 8 year old son move to a secret location in a giant apartment building. Terrified that her ex-husband will find them she buys a baby monitor to keep in her son's room at all times. But strange noises echo in the baby monitor from elsewhere in the building. As she witnesses the sounds of what she believes is another child being murdered she fears it is her own. Reliving the nightmare she recently escaped, Anna will need to figure out what's real and what isn't before she loses her sanity and her child.",0,0,Babycall,no +65256,H2O Just Add Water - The Movie,2011-10-10,91.0,,,,Do you believe in mermaids?,"When three normal teenage girls stumble upon a ancient cave they undergo a transformation that will change their lives forever. H20 - Just Add Water, sees three very different girls facing everyday teen problems with an added twist - they're mermaids with incredible powers over water.",0,0,H2O Just Add Water - The Movie,en +76784,All Stars 2: Old Stars,2011-10-10,123.0,http://www.allstars2.nl/,257071,tt1307859,All Stars 2 Old Stars II,"In All Stars 2 Old Stars, the unexpected wedding of one of the boys means they treat themselves to an ‘old-fashioned training camp’ in the form of a long weekend in Barcelona. The match between Barcelona and Real Madrid is meant to be the high point of the trip. But of course not everything goes according to plan for the Swift Boys.",0,0,All Stars 2: Old Stars,en +169730,Amber Lake,2011-10-11,81.0,,,tt1737090,,A bizarre family reunion turns deadly when three estranged half-sisters are invited to visit the father who abandoned them as children.,0,0,Amber Lake,en +60935,The Thing,2011-10-12,103.0,http://www.uphe.com/movies/the-thing-2011,479888,tt0905372,It's Not Human. Yet.,"When paleontologist Kate Lloyd travels to an isolated outpost in Antarctica for the expedition of a lifetime, she joins an international team that unearths a remarkable discovery. Their elation quickly turns to fear as they realize that their experiment has freed a mysterious being from its frozen prison. Paranoia spreads like an epidemic as a creature that can mimic anything it touches will pit human against human as it tries to survive and flourish in this spine-tingling thriller.",35000000,28128670,The Thing,en +87022,Taking Chances,2011-10-12,86.0,,,tt1954407,,"Kiek is worried as her father works in a war zone. To lengthen the odds of her father getting hurt, she comes up with a strange and unique idea: she needs a dead dog and a dead mouse, because Kiek doesn't know one person who has a dead mouse, a dead dog and a dead father. Surely the odds against that are enormous?",0,0,Patatje Oorlog,nl +133953,Snow Shark: Ancient Snow Beast,2011-10-12,80.0,,,tt1841840,Frozen in the ice for thousands of years... the beast has finally awoken,12 years ago during a scientific expedition 3 animal biologists stumbled upon a great discovery that ended in tragedy. Whatever killed them has awoken and now the legend of the Ancient Snow Beast could prove to be more than just a legend.,0,0,Snow Shark: Ancient Snow Beast,en +77459,A Monster in Paris,2011-10-12,90.0,,,tt0961097,,"Paris,1910. Emile, a shy movie projectionist, and Raoul, a colorful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.",25000000,0,Un monstre à Paris,fr +91628,Three Quarter Moon,2011-10-13,94.0,,,tt1747994,,"Hartmut Mackowiak, a German taxi driver, tries to help 6 year old Turkish girl to find her mother.",0,0,Dreiviertelmond,de +79151,Love You You,2011-10-13,91.0,,,tt2062580,,"Asian rising star Angelababy plays a paralegal sent on a undercover mission to inspect the young owner of a stunning beach resort for illegal practices. The pair bicker and fight, but the rules of attraction says otherwise...",0,0,夏日乐悠悠,zh +78323,Bablo,2011-10-13,89.0,,,tt2064728,,"Москва. Наши дни. В центре города из машины двое воришек крадут сумку с миллионом евро, думая, что им, наконец, повезло, и даже не представляя, во что, на самом деле, они ввязались. За деньгами начинается настоящая охота. Перед искушением не может устоять никто. Сумма в виде двух пачек денег по полмиллиона евро делает абсолютно разных людей одинаковыми в своих поступках и желаниях: А началось все с того, что ""миллионщик"" Григорий не захотел честно платить налоги.",0,2252547,Бабло,ru +83732,Bombay Beach,2011-10-14,80.0,,,tt1758576,,"Bombay Beach is one of the poorest communities in southern California located on the shores of the Salton Sea, a man-made sea stranded in the middle of the Colorado desert that was once a beautiful vacation destination for the privileged and is now a pool of dead fish. Film director Alma Har'el tells the story of three protagonists. Together these portraits form a triptych of manhood in its various ages and guises...",0,0,Bombay Beach,en +65599,The Woman,2011-10-14,102.0,,,tt1714208,Not every monster lives in the wild.,A lawyer puts his family in jeopardy when he captures the last member of a violent clan and tries to forcibly tame her.,0,0,The Woman,en +85435,A Few Best Men,2011-10-14,97.0,,466004,tt1640711,,A comedy about a groom and his three best men who travel to the Australian outback for a wedding.,12468389,29007412,A Few Best Men,en +85549,Las Acacias,2011-10-14,85.0,,,tt1754078,,"Rubén is a middle-aged Argentinian truck driver transporting timber between Paraguay and Buenos Aires. One day, at a truck stop, he picks up a young Paraguayan woman, Jacinta, whom his employer had told to take to Buenos Aires. To Rubén's surprise, Jacinta brings along her five-month-old daughter, Anahí.",0,0,Las acacias,es +85836,Hara-Kiri: Death of a Samurai,2011-10-15,126.0,,,tt1728196,,"An tale of revenge, honor and disgrace, centering on a poverty-stricken samurai who discovers the fate of his ronin son-in-law, setting in motion a tense showdown of vengeance against the house of a feudal lord.",0,0,一命,ja +98870,Think Of Me,2011-10-15,103.0,http://www.thinkofmemovie.com/,,tt1198199,,"As things unravel for a struggling single mother in Las Vegas, she must decide what she's willing to give up to get by.",0,0,Think Of Me,en +85656,Karate-Robo Zaborgar,2011-10-15,114.0,,,tt1645048,"In 2011, A Robo Legend Will Rise Again",An evil criminal organisation called Sigma kidnap prominment business leaders to harvest their DNA and only Karate-Robo Zaborgar can save them.,0,0,電人ザボーガー,ja +86305,Exit Humanity,2011-10-16,114.0,,,tt1781812,History has a violent way of repeating itself.,"A decade after the American Civil War, Edward Young returns home from a hunting trip to find a horrific reanimation of his wife and that their son Adam has disappeared. He must battle his way through an unexplainable outbreak of the walking dead.",300000,0,Exit Humanity,en +75623,The Howling: Reborn,2011-10-18,92.0,,174218,tt1554092,Nothing will ever be the same,"On the eve of his high school graduation, unremarkable Will Kidman finally bonds with the girl he has long yearned for, reclusive Eliana Wynter. But he also discovers a dark secret from his past... that he is about to become a werewolf. Now, in an effort to fight destiny and save their love as well as their lives, they must battle not only Will's growing blood lust but an army of fearsome beasts bent on killing them... and then, us all.",0,0,The Howling: Reborn,en +169068,Dorfman,2011-10-20,92.0,,,tt1665418,She's a Work in Progress.,"Unknowingly trapped in her role as caretaker of her unappreciative family, a young single woman desperately needs to get her own life. When she volunteers to cat sit at her unrequited love's downtown L.A loft, her world, as she knows it, changes forever.",0,0,Dorfman,en +77094,The Billionaire,2011-10-20,124.0,,,tt2292955,,"The Billionaire tells the story of Aitthipat Kulapongvanich and how he, at the age of nineteen, dropped out from university to launch a packaged fried seaweed business that is now Taokaenoi Food & Marketing and became one of Thailand's youngest (baht) billionaires",0,0,วัยรุ่นพันล้าน,th +77000,Bar Sport,2011-10-21,93.0,,,tt1753476,,,5000000,0,Bar Sport,it +78461,Beneath the Darkness,2011-10-21,96.0,,,tt1781775,Now I lay you down to sleep.,"After watching their best friend get murdered, a group of teens struggle to expose a local hero as the vicious killer and keep from becoming his next victims.",7300000,0,Beneath the Darkness,en +78339,Memory Lane,2011-10-22,70.0,http://www.553am.com/,,tt1980185,Kill me.,An orphaned war-veteran routinely travels between our world and the afterlife in search of his fiance's killer by stopping and starting his own heart.,300,0,Memory Lane,en +77068,War of the Dead,2011-10-22,86.0,,,tt0780645,What Killed Them Made Them Stronger,"Captain Martin Stone is leading a finely-trained, elite platoon of Allied soldiers as they attack an enemy bunker. Underestimating their enemy's strength, they are quickly beaten back into the forest. As they try to regroup, they are suddenly attacked by the same soldiers they had just killed a few minutes earlier. Forced to flee deeper into Russian territory, they discover one of war's most terrifying secrets and realize they have woken up a far more deadlier enemy.",0,0,War of the Dead,en +169721,Trevor Noah: You Laugh But It's True,2011-10-22,84.0,http://youlaughbutitstrue.com/,,tt1671547,,"In the world of stand-up comedy in South Africa, Trevor Noah uses his childhood experiences in a biracial family during apartheid to prepare for his first one-man show.",0,0,Trevor Noah: You Laugh But It's True,en +250275,Getting That Girl,2011-10-23,91.0,,,tt1472082,,"When East Coast teen Mandy Meyers moves to Los Angeles with her family, she's thrown into the fast life at McDermott High, where the pretty girls rule the school and two very different guys want to date her.",0,0,Getting That Girl,en +102668,Budz House,2011-10-25,84.0,,,tt2016872,Where It All Goes Down,"Meet Bud Howard, an endearing yet unemployed lazy slacker who lives with his mother Mary Jane and younger sister Divine in a quiet neighborhood in Baldwin Hills, California....",0,0,Budz House,en +86274,Hunky Dory,2011-10-25,110.0,,,tt1727300,,Musical film about the trials and tribulations of an idealistic drama teacher as she tries to put on the end of year show.,0,0,Hunky Dory,en +86718,7Aum Arivu,2011-10-26,168.0,,,tt1725795,,A genetic engineering student tries to bring back the skills of a legend of the past and use his skills to save India from a deadly virus attack by China.,16000000,98900000,7Aum Arivu,ta +117678,Dans la peau d'une grande,2011-10-27,0.0,,,tt1967481,,,0,0,Dans la peau d'une grande,fr +77862,Anatolian Eagles,2011-10-28,120.0,,,tt2069715,Vatan kanatlarımızın altında,"Onur, Ayşe, Mustafa, Tunç ve Fatih. Onlar, gökyüzüne hakim birer pilot olma hayaliyle yaşayan genç havacılar. Hayalleri yükseklerde fakat hedefe giderken yaşadıkları bin türlü zorluk, aile, sevgili hasreti, dostlukları, havada olmak için yaptıkları fedakarlıklar ve birbirleriyle rekabetleri ne kadar çetin bir yola çıktıklarının da göstergesi olacak. Binbaşı Kemal Tanaçan'ın deneyimi ve desteği sayesinde eğitimden geçen beş genç için Uluslararası Anadolu Kartalı Tatbikatı, hayatlarını tamamen değiştirecek çok büyük bir deneyim olacaktır..",0,0,Anadolu Kartalları,en +60420,Like Crazy,2011-10-28,90.0,http://www.likecrazy.com/,,tt1758692,I Want You. I Need You. I Love You. I Miss You.,"A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.",250000,3542353,Like Crazy,en +92391,Sket,2011-10-28,83.0,http://www.sketmovie.com,,tt1658820,Man's World. Sister's Hood.,"When a young woman is cruelly and indiscriminately attacked by a notorious gang led by the violent Trey, her little 16 year old sister Kayla wants revenge and will stop at nothing to get it, even if it means joining a rival girl gang led by the volatile and damaged man-hating Danielle.",0,0,Sket,en +238997,Louis Theroux: America's Most Dangerous Pets,2011-10-29,59.0,,,tt2391833,,"The programme follows Theroux as he travels to the United States to meet people who own animals normally found in Africa and Asia, including big cats and dangerous primates. In the programme, Theroux visits GW Exotic Animal Foundation in Oklahoma.",0,0,Louis Theroux: America's Most Dangerous Pets,en +83860,October Baby,2011-10-30,107.0,http://www.octoberbabymovie.net/,,tt1720182,Every Life Is Beautiful,OCTOBER BABY is the coming of age story of a beautiful and naive college freshman who discovers that her entire life is a lie and sets out on a road trip with a host of misfits to discover herself and the answers she craves.,0,5355847,October Baby,en +227257,Monster High: Fright On!,2011-10-31,0.0,,224026,tt3791266,,See what happens when the student bodies of an all-vampire school and an all-werewolf school integrate with Monster High.,500000,0,Monster High: Fright On!,en +129798,The Crying Dead,2011-10-31,0.0,http://www.facebook.com/pages/The-Whispering-Dead/277161422297806,,tt1814905,The Last Thing You'll Hear,In 2008 a cast and crew set out to shoot a pilot for a paranormal reality show. During the first night vague apparitions became violent hauntings. One by one they lost their lives. The Whispering Dead is a diary of the final tortured moments of real people in an unthinkable situation.,0,0,The Crying Dead,en +93676,Someday This Pain Will Be Useful to You,2011-11-02,96.0,,,tt1703125,,A vulnerable teenager with a deep perception of the world and no idea how to live in it.,8000000,0,Someday This Pain Will Be Useful to You,en +77338,The Intouchables,2011-11-02,112.0,,,tt1675434,Sometimes you have to reach into someone else's world to find out what's missing in your own.,A true story of two men who should never have met – a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.,13000000,426480871,Intouchables,fr +105528,Cowgirls n' Angels,2012-05-25,92.0,http://www.facebook.com/cowgirlsnangels,255478,tt1894561,Dreams come true.,A group of rodeo trick-riders recruits a young girl to join them.,0,120680,Cowgirls n' Angels,en +82469,The Kick,2011-11-03,94.0,http://www.thekick.co.kr/,,tt2020110,,"Korean family made up of taekwondo experts moves to Thailand, where they set up a taekwondo gym. However, one member of the family, Taeju, wants to become a famous pop singer instead. The family becomes famous after stopping treasure robbers.",3500000,0,더 킥,ko +80410,In the Name of the King 2: Two Worlds,2011-11-03,96.0,,122922,tt1767319,Fight to the End,"Granger, an ex-Special Forces soldier gets thrown back to medieval times to fulfill an ancient prophecy. Venturing through the now war torn Kingdom of Ehb, he teams up with an unlikely band of allies with the goal of slaying the leader of the ""Dark Ones"". Fighting against all odds, they must free the land from the grasp of the evil tyrant Raven and save the world.",4500000,0,In the Name of the King 2: Two Worlds,en +79580,Home,2011-11-03,127.0,,,tt2093100,,Big home of Shamanov family has everything - except love and understanding under the roof...,0,0,Dom,ru +94935,The Temple,2011-11-04,139.0,,,tt2085783,,"Keshya, a simple villager believes that god has arrived in his village but everyone disbelieves him. Later when the politics plays its part things take a drastic change",0,0,Deool,mr +82929,In the Family,2011-11-04,169.0,http://inthefamilythemovie.com/,,tt1845804,,"In the town of Martin, Tennessee, Chip Hines, a precocious six year old, has only known life with his two dads, Cody and Joey. And a good life it is. When Cody dies suddenly in a car accident, Joey and Chip struggle to find their footing again. Just as they begin to, Cody's will reveals that he named his sister as Chip's guardian. The years of Joey's acceptance into the family unravel as Chip is taken away from him. In his now solitary home life, Joey searches for a solution. The law is not on his side, but friends are. Armed with their comfort and inspired by memories of Cody, Joey finds a path to peace with the family and closer to his son.",0,0,In the Family,en +77958,My Tomorrow,2011-11-04,88.0,,,tt2004254,,,0,0,Il mio domani,it +102256,Marianne,2011-11-04,103.0,,,tt1756615,,"The life of Krister has become an unending nightmare, ever since his wife's death. There seems to be no respite for this man, tormented by the errors of his past and held prisoner by a grim daily existence.",0,0,Marianne,en +70586,Setup,2011-11-04,85.0,,,tt1748197,,"A group of friends plan out a detailed heist that turns deadly when one betrays the other by taking off with the goods. Taking matters into his own hands, Sonny seeks out his revenge teaming up with the most dangerous mob boss in town to get back what is rightfully his. When he finally comes face to face with his longtime friend he will be forced to make a life changing choice.",20000000,2128186,Setup,en +106417,Kaiji 2: The Ultimate Gambler,2011-11-05,133.0,http://www.kaiji-movie.jp,,tt1904937,,"3 years after the ultimate life-or-death game with Teiai Group, Kaiji was entrapped by Teiai and again back in the underground, forced to do hard labour. One day, Kaiji wins a bet to get out of the underground with 1 million yen, and promises the other workers that he will save them. But to do so, he only has 14 days and needs 200 million yen! Kaiji meets his former rival Tonegawa and learns that there is a chance to turn the tables in the game. It was a monster casino machine that will make 1 billion yen if you win...",0,15,カイジ2 人生奪回ゲーム,ja +139856,New Jerusalem,2011-11-06,94.0,,,tt1693790,,"Returning from Afghanistan, Sean is befriended by lke, a strong willed evangelical who endeavors to ensure the fragile Sean's salvation.",0,0,New Jerusalem,en +88794,J. Edgar,2011-11-09,137.0,http://jedgarmovie.warnerbros.com/dvd/,,tt1616195,The most powerful man in the world.,"As the face of law enforcement in America for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career and his life.",35000000,84606030,J. Edgar,en +37958,Immortals,2011-11-10,110.0,http://www.immortalsmovie.com/splash/,,tt1253864,The Gods need a hero.,"Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.",75000000,226904017,Immortals,en +83754,You Are My Pet,2011-11-10,110.0,,,tt2040605,,A woman finds a man in a box in front of her home and takes him in. She jokingly says she wants to keep him as her pet since the man reminds her childhood dog. The man agrees. Later the woman discovers that the man is a dance prodigy. Complications arise when her old flame from college appears.,0,0,너는 펫,ko +239534,Beni Unutma,2011-11-11,0.0,,,tt2114510,,"Sinan (Mert Firat) and Olcay (Acelya Devrim Yilhan) are two young people who have broken up with their lovers and lost their faith in love. After they have found each other, they start all over again. However, things get complicated when Sinan's ex-fiance shows up and Olcay starts to act strange.",0,0,Beni Unutma,tr +338309,The Spin Kid,2011-11-11,0.0,https://www.facebook.com/thespinkid,,tt2321257,,"Blending modern techno music with traditional Buddhist ceremonial dance on the big screen, The Spin Kid is one young man's redemptive journey from alleyway punk to dance floor pioneer.",0,0,Dian Na Chà,en +79221,Letters to Santa,2011-11-11,116.0,,393126,tt1927077,,A romantic comedy set on Christmas Eve in Warsaw and centered around a series of characters.,0,0,Listy do M.,pl +79779,Pastorela,2011-11-11,88.0,,,tt2011183,,"Agent Jesus Juarez (aka Chucho) has always played the Devil in his town's Nativity Play. This Christmas, when the new pastor of the church recasts the role, the two men engage in a battle between good and evil.",0,0,Pastorela,es +79137,Russell Howard: Right Here Right Now,2011-11-14,0.0,,,tt2122460,,"One of Britain's most exciting and popular stand-up comedians, Russell Howard is back in 2011 with his third sell-out tour Right Here, Right Now. The star of Russell Howard's Good News and Mock The Week never fails to entertain with his trademark mix of eloquent gags and deft storytelling.",0,0,Russell Howard: Right Here Right Now,en +206657,Truckfighters,2011-11-15,84.0,,,tt2007506,,"Three down-to-earth guys, record songs and reach out for alternatives to their ordinary lives.",0,0,Truckfighters,en +141418,The Letter Writer,2011-11-15,85.0,,,tt2320087,,"When a teenager receives a mysterious letter in the mail, she sets out to find the author. It's a journey that will change her life forever.",0,0,The Letter Writer,en +82501,The Woman in the Fifth,2011-11-16,85.0,,,tt1605777,"What you can not resist, you may not survive",An American writer moves to Paris to be closer to his daughter and finds himself falling immediately on hard times.,0,0,La femme du Vème,en +91690,The Snows of Kilimanjaro,2011-11-16,90.0,http://diaphana.fr/film/les-neiges-du-kilimandjaro,,tt1852006,,A man questions his essential goodness after being robbed.,0,0,Les neiges du Kilimandjaro,fr +76609,Rebellion,2011-11-16,136.0,http://www.lordreetlamorale-lefilm.com/#/nav/teaser,,tt1242521,,Dissidents in a French colony attack a police station and take hostages.,0,0,L'Ordre et la Morale,fr +65759,Happy Feet Two,2011-11-17,100.0,http://happyfeettwo.warnerbros.com/index.html,92012,tt1402488,Every step counts.,"Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.",130000000,150406466,Happy Feet Two,en +78854,Scialla!,2011-11-18,0.0,,,tt1821597,,,0,0,Scialla!,it +74830,The Lie,2011-11-18,80.0,http://www.theliemovie.com/,,tt1531930,He's about to have a moment of truth.,A man's life is altered unexpectedly after telling a lie to get out of work.,0,0,The Lie,en +60422,Another Happy Day,2011-11-18,119.0,,,tt1719071,"At this wedding, the F-word stands for Family",A wedding at her parents' Annapolis estate hurls high-strung Lynn into the center of touchy family dynamics.,4000000,355688,Another Happy Day,en +89481,How To Stop Being A Loser,2011-11-18,109.0,,,tt1727506,,"James is useless with women, but his luck changes under the tutelage of pick-up artist, Ampersand. As James learns the art of seduction he begins to wonder about Ampersand’s intentions and questions what would truly make him happy in life.",1750000,0,How To Stop Being A Loser,en +121725,Life Back Then,2011-11-19,131.0,http://antoki.jp/index.html,,tt1848784,,"Kyohei Nagashima (Masaki Okada) has shut away the world. During his high school days he was the target of bullying and experienced horrifying moments. Now as a young adult Kyohei takes a new job. He works for a company that specializes in cleaning out the homes of recently deceased individuals. With his new job Kyohei meets co-worker Yuki (Nana Eikura). Yuki has also experienced a traumatizing event as a teen and has also shut herself away from the world. These two young people form a bond as they go through the homes of the recently departed people. They gradually open up to each other and in the process to the world. Yet, their fragile psyches may or may not be ready for such changes ...",0,0,アントキノイノチ,ja +84154,Donald Glover: Weirdo,2011-11-19,60.0,,,tt2345525,,"Donald Glover dispenses excess hysterics in his new one-hour World Premiere Stand-Up Special. Filmed at the Union Square Theatre in New York City, Glover shares his unique childhood tales about his unrequited love for Cocoa Puffs, his burning desire to voyage to Toys""R""Us and the ins and outs of the N word. Glover utilizes his unique brand of comedic storytelling and a keen youthful narrative to churn out an uncanny amount of guffaws in his first-ever Comedy Central one-hour special.",0,0,Donald Glover: Weirdo,en +72912,Carjacked,2011-11-22,89.0,,,tt1321861,It's her car. Don't tell her what to do with it.,A single mom and her child are carjacked by a bank robber who has no intention of letting them go.,0,0,Carjacked,en +64328,The Muppets,2011-11-22,103.0,http://disney.go.com/muppets/,256377,tt1204342,They're closer than you think.,"When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.",45000000,165184237,The Muppets,en +92424,The Art of Love,2011-11-23,85.0,,,tt1700467,,"The Art of Love is composed of several chapters, which follows several Parisian couples.",0,0,L'art d'aimer,fr +84479,The Invader,2011-11-23,95.0,,,tt1772947,,An African immigrant living illegally in Belgium is desperate to find his own sense of belonging.,0,0,L'Envahisseur,fr +75622,Rampart,2011-11-23,108.0,http://rampartmovie.com/,,tt1640548,The most corrupt cop you've ever seen on screen,"Follows veteran police officer Dave Brown, the last of the renegade cops, as he struggles to take care of his family, and fights for his own survival.",12000000,972512,Rampart,en +79218,Ice Age: A Mammoth Christmas,2011-11-24,26.0,http://www.blueskystudios.com,,tt2100546,Why am I on Santa's naughty list? Why? Why?,"When Sid accidentally destroys Manny's heirloom Christmas rock and ends up on Santa's naughty list, he leads a hilarious quest to the North Pole to make things right and ends up making things much worse. Now it's up to Manny and his prehistoric posse to band together and save Christmas for the entire world!",0,0,Ice Age: A Mammoth Christmas,en +86985,ID:A,2011-11-24,104.0,,,tt1731998,,"A woman wakes up in a river. Wounded and without memory, then races to elude mysterious followers and recover from amnesia.",0,0,ID:A,da +64720,Take Shelter,2011-11-25,120.0,http://www.sonyclassics.com/takeshelter/,,tt1675192,,"Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.",5000000,3099314,Take Shelter,en +81708,My Grandfather's People,2011-11-25,123.0,http://dedemininsanlari.com/,,tt2150209,,A feature film that tells the story of the director's grandfather who was forced to leave Crete in the 1920s during the Greek-Turkish population exchange.,0,6086224,Dedemin İnsanları,en +97794,The Road,2011-11-30,110.0,http://nobodyleavestheroad.com/,,tt2063008,Nobody Leaves,A 12 year old cold case is reopened when three teens are missing in an old abandoned road where a gruesome murder is left undiscovered for three decades.,0,0,The Road,tl +95807,Ricochet,2011-11-30,91.0,,,tt1942951,,Two homicide detectives find their careers - and lives - on the line when they get caught up in a case of murder and betrayal in high-society Savannah.,0,0,Ricochet,en +103597,Americano,2011-11-30,105.0,,,tt1742023,,"A real estate agent from Paris arrives in Los Angeles to settle his late mother's estate, but a found photograph sends him on an impromptu journey to Mexico to find a woman named Lola.",0,0,Americano,fr +58428,The Innkeepers,2011-12-01,102.0,http://www.magnetreleasing.com/theinnkeepers/,,tt1594562,Some guests never checked out.,"During the final days at the Yankee Pedlar Inn, two employees determined to reveal the hotel's haunted past begin to experience disturbing events as old guests check in for a stay.",750000,78396,The Innkeepers,en +118397,Identical,2011-12-01,90.0,,,tt1748051,Murder love,"Identical twins are born, one is good and one is evil. They need each-other to exist, but they deeply resent the others existence. They both fall in love with the same woman. A love triangle forms which leads to murder.",2000000,0,Identical,en +92499,Spellbound,2011-12-01,114.0,,,tt2132405,,A magician meets a weird girl and offers her to work together in his magic show. It's only until a year later that he starts to know her personally and develops a feeling towards her despite her own problems.,0,0,오싹한 연애,ko +75576,Answers to Nothing,2011-12-02,124.0,,,tt1523939,,"Against the backdrop of a missing girl case, lost souls throughout Los Angeles search for meaning and redemption and affect each other in ways they don't always see.",0,0,Answers to Nothing,en +79836,Il giorno in più,2011-12-02,0.0,,,tt1815753,,,0,0,Il giorno in più,it +110323,Thérèse,2012-05-27,110.0,,,tt1654829,The fate of a woman.,The unhappily married woman struggles to break free from social pressures and her boring suburban setting.,0,0,Thérèse Desqueyroux,fr +79113,A Princess for Christmas,2011-12-03,89.0,,,tt1083448,Sometimes dreams come true,"After her sister and brother-in-law's tragic death, an American woman who is the guardian for her young niece and nephew is invited to a royal European castle for Christmas by her late brother-in-law's father, the Duke of Castlebury. Feeling out of place as a commoner, she is determined to give her family a merry Christmas and surprises herself when she falls for a handsome prince.",0,0,A Princess for Christmas,en +266568,Aschenputtel,2011-12-05,,,,tt2129885,,,0,0,Aschenputtel,de +84449,Remains,2011-12-06,88.0,,,tt1870527,This Town Will Eat You Alive.,The story centers on two lone survivors of a bizarre accident that reduced most of the world's population to zombies. They take refuge in a vacant casino and fight a losing battle against the undead.,750000,0,Remains,en +56292,Mission: Impossible - Ghost Protocol,2011-12-07,133.0,http://www.missionimpossible.com/,87359,tt1229238,No Plan. No Backup. No Choice.,"In the 4th installment of the Mission Impossible series, Ethan Hunt (Cruise) and his team are racing against time to track down a dangerous terrorist named Hendricks (Nyqvist), who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.",145000000,694713380,Mission: Impossible - Ghost Protocol,en +83201,Puss in Boots: The Three Diablos,2011-12-08,13.0,,,tt2268617,An All-New Adventure!,"Puss in Boots is on a mission to recover the Princess' stolen ruby from the notorious French thief, Whisperer. Reluctantly accompanied by three little kittens, Three Diablos, Puss must tame them before they endanger the mission.",0,0,Puss in Boots: The Three Diablos,en +82448,Simon & the Oaks,2011-12-08,122.0,,,tt1375669,Every family has a secret.,"Epic story about two families and their friendship and common destiny in Sweden's Gothenburg in the 1940s and 1950s. Told from the perspective of young Simon Larsson, who learns that he's an adopted child who has a Jewish father from Germany. After WWII Simon travels to explore his roots - a journey that leads to the basic mysteries of the human life. After the bestselling novel by Marianne Fredriksson.",0,0,Simon och ekarna,sv +155096,Amen,2011-12-08,72.0,,,tt2086799,,A journey of a Korean girl who wanders around Europe to find her boyfriend.,0,0,Amen,ko +98065,Girl Walk // All Day,2011-12-08,75.0,,,tt2287749,A music video of epic proportions.,"Girl Walk // All Day is a feature-length dance music video and tale of urban exploration that follows three dancers across New York City. They turn the city's sidewalks, parks, and stadiums into an evolving stage as a story of rebellion, love, and discovery unfolds. Shot entirely in public spaces, and funded entirely by crowd-sourcing, Girl Walk // All Day is a statement about the power of community and public space. Set to the album All Day by mashup musician Girl Talk, it's also an insanely fun love letter to New York.",0,0,Girl Walk // All Day,en +62838,New Year's Eve,2011-12-08,118.0,,,tt1598822,The one night anything is possible.,The lives of several couples and singles in New York intertwine over the course of New Year's Eve.,56000000,142044638,New Year's Eve,en +80539,Panjaa,2011-12-09,156.0,,,tt2091384,,"The story begins in Kolkata and here the mafia don Bhagawan (Jackie shroff) is ruling the roost. He has a loyal aide in the form of Jai who keeps protecting him from many dangers.. Kulakarni (Atul Kulakarni) is the rival of Bhagavan. Jai has a friend named Jahnavi (Anjali Lavania) who is a club dancer. . The story takes a turn with the arrival of Munna (adivi sesh), an arrogant and highly impatient guy who is also the son of Bhagawan.After few incidents munna killed by Jai. After Jai becomes the prime target for Bhagavan. What happens next is to be seen on the screen.",6,0,Panjaa,te +71771,Knuckle,2011-12-09,97.0,http://www.knucklethemovie.com/,,tt1606259,,An epic 12-year journey into the brutal and secretive world of Irish Traveler bare-knuckle fighting. This film follows a history of violent feuding between rival clans.,0,0,Knuckle,en +85735,Love Lasts Three Years,2011-12-10,98.0,,,tt1638328,,A look at the dissolution of a marriage...,0,0,L'amour dure trois ans,fr +81182,Lost Christmas,2011-12-11,88.0,,,tt1806954,,"Urban fairytale set in Manchester. A series of tragic events that blight a young boy's life are reversed one Christmas Eve, giving him and those around him the happy ending that they were destined to have.",1875600,0,Lost Christmas,en +88491,Chapiteau-Show,2011-12-12,207.0,http://sh-sh.ru/,,tt1651118,,"Four parts and four travels to the sea, four crossed short stories: Love, Friendship, Respect and Cooperation. Heroes of each of the short stories arrive to seaside town, and go through turning fragments of their life...",2000000,393816,Шапито-шоу,ru +81003,Kung Fu Panda: Secrets of the Masters,2011-12-12,24.0,http://www.kungfupanda.com,,tt1980162,An All-New Awesome Adventure!,"Po and the Furious Five uncover the legend of three of kung fu's greatest heroes: Master Thundering Rhino, Master Storming Ox, and Master Croc.",0,0,Kung Fu Panda: Secrets of the Masters,en +82492,On the Ice,2011-12-14,96.0,http://ontheicethemovie.com/,,tt1663660,,"In Barrow, Alaska, teenagers Qalli and Aivaaq find their bond tested when a seal-hunting trip goes wrong, resulting in the death of their friend.",0,0,On the Ice,en +80125,Woman in Love,2011-12-15,108.0,,,tt1802810,,"An actor's career takes a ""Tootsie""-like turn when he lets himself be cast as a woman in a movie.",0,0,Rubbeldiekatz,de +85317,Six Degrees of Celebration 2,2011-12-15,106.0,,107465,tt2124096,,"A lot of things happened in the life of ""Yolki"" hepes during the last year, but here it's again - the New Year's eve...",0,0,Ёлки 2,ru +116437,Kolka Cool,2011-12-16,97.0,,,tt1674274,,"Three guys spend their time drinking beer, killing time and picking fights with neighboring villages.",0,0,Kolka Cool,lv +95675,Wreckers,2011-12-16,85.0,,,tt1650028,,A married couple move back to his childhood village to start a family but a surprise visit from the husband's brother ignites sibling rivalry and exposes the lies embedded in the couple's relationship.,0,0,Wreckers,en +87587,The Pill,2011-12-16,83.0,,,tt1691154,,"Worried that he has gotten the free-spirited Mindy pregnant after an unprotected one-night stand, Fred feigns romantic interest and sticks by her side for twelve hours to make sure she takes both doses of the morning-after pill.",0,0,The Pill,en +85729,My Boyfriend an Angel,2011-12-20,97.0,,,tt2158649,,A young student Saha is in love with... angel.,0,0,Moy Paren - Angel,ru +83896,Sand Sharks,2011-12-20,87.0,,,tt1844770,Just When You Thought You Were Safe Out of the Water,"Just when you thought it was safe to go back to the beach, it appears that our large fishy friends have found a way to chomp on you when you're chilling out on the sand too!",0,0,Sand Sharks,en +73873,Albert Nobbs,2011-12-21,113.0,http://albertnobbs-themovie.com,,tt1602098,A man with a secret. A woman with a dream.,"Albert Nobbs struggles to survive in late 19th century Ireland, where women aren't encouraged to be independent. Posing as a man, so she can work as a butler in Dublin's most posh hotel, Albert meets a handsome painter and looks to escape the lie she has been living.",8000000,5634828,Albert Nobbs,en +74465,We Bought a Zoo,2011-12-22,124.0,http://www.weboughtazoo.com/,,tt1389137,A True Zoo Story,"Benjamin has lost his wife and, in a bid to start his life over, purchases a large house that has a zoo – welcome news for his daughter, but his son is not happy about it. The zoo is need of renovation and Benjamin sets about the work with the head keeper and the rest of the staff, but, the zoo soon runs into financial trouble.",50000000,120081841,We Bought a Zoo,en +79362,Sommer der Gaukler,2011-12-22,0.0,,,tt1714110,,,0,0,Sommer der Gaukler,de +87908,The Island 2: The Hunt for the Lost Treasure,2011-12-22,109.0,,,tt1979283,The treasure hunt,"Ο Μπάμπης (Βλαδίμηρος Κυριακίδης), ο Άγης (Δημήτρης Τζουμάκης) και η Αφροδίτη (Ζέτα Δούκα) εκτίουν τις ποινές τους. Η μοίρα τα φέρνει έτσι που δύο μόλις ημέρες πριν την αποφυλάκιση, Μπάμπης και Αφροδίτη, γίνονται κατά λάθος μάρτυρες της εξομολόγησης ενός ετοιμοθάνατου βαρυποινίτη στον παπά Λάμπρο. Μαθαίνουν για την ύπαρξη ενός μεγάλου θησαυρού στο νησί, από τα χρόνια της τουρκοκρατίας, η θέση του οποίου υπάρχει σημειωμένη σε κάποιο χάρτη διαιρεμένου σε δύο κομμάτια.",0,0,Nisos 2: To kynigi tou hamenou thisavrou,el +131739,"Isoroku Yamamoto, the Commander-in-Chief of the Combined Fleet",2011-12-23,135.0,,,tt1932695,,"Admiral Isoroku Yamamoto (1884-1943) was the Japanese Naval commander who was given the order to attack Pearl Harbour, an order he was duty bound to obey which went against his own personal beliefs. While this infamous attack is a low point in Japanese and US history it wouldn’t have happened if the Japanese government had listened to Yamamoto in 1939 and searched for a more peaceful way to end their war campaign, proving his many ominous presages of the outcomes of the attack to come true.",0,0,Rengô kantai shirei chôkan: Yamamoto Isoroku,ja +64685,Extremely Loud & Incredibly Close,2011-12-24,129.0,http://extremelyloudandincrediblyclose.warnerbros.com/,,tt0477302,"This is not a story about September 11th, it's a story about every day after.","A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.",40000000,55247881,Extremely Loud & Incredibly Close,en +84942,The Watermen,2011-12-25,96.0,http://www.thewatermenmovie.com/us/,,tt1715223,Adrift in the middle of the Atlantic,A clan of watermen capture a crew of sport fishermen who must then fight for their lives.,1150000,0,The Watermen,en +81684,The Gruffalo's Child,2011-12-25,26.0,,129748,tt2132486,,"A follow up to the 2009 animated feature and adapted from the childrens' book by Julia Donaldson and Alex Scheffler. The Gruffalo's child explores the deep dark wood in search of the big bad mouse and meets the Snake, Owl and Fox in the process. She eventually finds the mouse, who manages to outwit her like the Gruffalo before!",0,0,The Gruffalo's Child,en +72766,Newlyweds,2011-12-26,85.0,,,tt1880418,A newlywed couple's honeymoon is upended by the arrivals of their respective sisters.,A newlywed couple's honeymoon is upended by the arrivals of their respective sisters.,9000,0,Newlyweds,en +71670,Hostel: Part III,2011-12-27,88.0,,86578,tt1255916,Do you feel lucky?,"Set in Las Vegas, the film centers on a man who attends his best friend's bachelor party, unaware of an insidious agenda that plays into hunting humans.",6000000,0,Hostel: Part III,en +83342,Blutzbrüdaz,2011-12-28,87.0,http://blutzbruedaz-film.de,,tt1871236,,,0,0,Blutzbrüdaz,de +120370,Three Inches,2011-12-29,87.0,,,tt2151885,,"Walter Speckman is a nobody, until one day he is struck by lightning and gains the ability to move any object with his mind... but only for 3 inches at a time. A recruiter who knows of super-powered individuals finds Walter and offers him the chance to use his powers to do good... and join with a team of other people with similar abilities. Walter accepts, but soon discovers that ""good"" and ""evil"" aren't as easy to differentiate as he thought.",0,0,Three Inches,en +83456,What Men Still Talk About,2011-12-29,95.0,,122776,tt1863347,,"A year later the men are still talking, but this time on the 31st of December and still about the women, football, children, and, of course, about the approaching New Year’s celebration. But what can they do, if their beloved wives and girls are waiting for them at Kamil’s, busy with New Year tree decoration and cooking, and the husbands are accidentally got stuck in the advertising agency office? Will they manage to get home in time to celebrate the New Year together?",0,17808683,О чём ещё говорят мужчины,ru +83865,Ivan Tsarevich & the Grey Wolf,2011-12-29,75.0,,258372,tt2141789,,"New adventures, dangers, and funny situations are waiting for the heroes of Russian fairy tales.",0,0,Иван Царевич и Серый Волк,ru +86980,Once Upon A Time in Phuket,2011-12-31,105.0,,,tt2082262,,"Life coach Sven travels to Thailand to fulfil his dreams as a writer. He meets Gitte a yoga-practising free spirit from Norway. Then along comes Anja, an editor who works for a Swedish publisher. What does he really want to do with his life, and who does he want to do it with?",0,0,En gång i Phuket,sv +98541,Hungry for Change,2012-01-01,89.0,http://www.hungryforchange.tv/,,tt2323551,Your health is in your hands,"We all want more energy, an ideal body and beautiful younger looking skin... So what is stopping us from getting this? Introducing 'Hungry For Change', the latest 'Food Matters' film. 'Hungry For Change' exposes shocking secrets the diet, weightloss and food industry don't want you to know about. Deceptive strategies designed to keep you craving more and more. Could the foods we are eating actually be keeping us stuck in the diet trap?",0,0,Hungry for Change,en +140481,"Park Avenue: Money, Power & The American Dream",2012-01-01,70.0,http://www.whypoverty.net/en/video/29/,,tt2460426,How much inequality is too much?,"If income inequality were a sport, the residents of 740 Park Avenue in Manhattan would all be medalists. This address boasts the highest number of billionaires in the United States.",0,0,"Park Avenue: Money, Power & The American Dream",en +83191,Treasure Island,2012-01-01,180.0,,,tt1820723,,Treasure Island is a two-part British television miniseries adaptation of the novel Treasure Island by Robert Louis Stevenson. It was made by BSkyB and first shown in the United Kingdom on Sky1 on 1–2 January 2012. The screenplay was by Stewart Harcourt and it was produced by Laurie Borg and directed by Steve Barron.,0,0,Treasure Island,en +137651,Kings Point,2012-01-01,40.0,,,tt2109153,"A Tale of Love, Loss and Self-Preservation","In the 1970s and 80s, hundreds of thousands of senior citizens migrated from New York City to Kings Point, a typical retirement community, located just outside West Palm Beach, Florida. Lured by blue skies, sunshine, palm trees, and the promise of a rich social life, they bought their way to paradise for just a $1,500 down payment. Now, as an aging community faces its own mortality, paradise has begun to exact a higher price. Through the experiences of six longtime residents, 'Kings Point' captures both the allure and the darker complexities of living in a world where 'nobody gets too close.' Poignant, funny and dark, 'Kings Point' is a deeply empathetic portrait of the last act of the American Dream.",0,0,Kings Point,en +118640,Love and Other Troubles,2012-01-01,91.0,,,tt1607577,,"Ville, 25, is a downbeat former child star who's successfully avoided his womanizing rock 'n' roll dad for years. Everything changes when his dad moves into his flat and they both fall in love with the same American line-dancing teacher.",0,0,Hulluna Saraan,en +133788,Il rosso e il blu,2012-01-01,0.0,,,tt1964795,,,0,0,Il rosso e il blu,it +84309,Marina Abramović: The Artist Is Present,2012-01-01,106.0,,,tt2073029,,"The film follows the artist as she prepares for what may be the most important moment of her life: a major retrospective of her work at The Museum of Modern Art in New York. To be given a retrospective at one of the world's premiere museums is, for any living artist, the most exhilarating sort of milestone. For Marina, it is far more - it is the chance to finally silence the question she has been hearing over and over again for four decades: 'But why is this art?'",0,0,Marina Abramović: The Artist Is Present,en +137955,Crowsnest,2012-01-01,84.0,,,tt2180333,,"In late summer of 2011, five young friends on a road trip went missing after being attacked by nomadic cannibals in a huge RV. Video was recorded by the victims & recovered by police as evidence in their still-unsolved murders.",1200000,0,Crowsnest,en +123634,Poolside,2012-01-01,15.0,http://aaroncpeer.4ormat.com/poolside,,tt2142618,a summertime noir,"Two boys clean pools in the summer, and criticize the rich folk these pools belong to.",400,0,Poolside,en +151652,The Old Man,2012-01-01,102.0,,,tt2182115,,This is a survival story - a Hemingway's 'Old Man and the Sea' as if written for our days.,0,0,Шал,ru +82485,Transit,2012-01-02,88.0,,,tt1059836,This is not a perfect getaway.,A family on a road trip is stalked by criminals who stashed stolen money in their car.,5000000,0,Transit,en +156547,Mai Stati Uniti,2012-01-03,0.0,,,tt2483050,,,0,0,Mai Stati Uniti,it +122930,Breathless,2012-01-04,91.0,,,tt2005164,,"Lorna is a strong-willed Texas woman who’s had enough of her untrustworthy husband, Dale’s, criminal acts and lack of husbandry. Fed up, she enlists the help of her old friend, Tiny, to help her figure out what to do with Dale after his latest double-cross involving the theft of $100,000 from a bank.",5000000,0,Breathless,en +94555,Love On-Air,2012-01-05,120.0,,,tt2187203,,Former K-pop idol-turned-radio DJ Shin Jin Ah must find a way to revive her failing show with an overbearing boss who won't stand for her diva-like ways.,0,0,원더풀 라디오,ko +180759,Nice Guy,2012-01-06,89.0,,,tt1691926,,"An unemployed stay at home dad begins venturing out at night. Befriended by a group of petty criminals and strippers, he begins to feel alive. But when he is implicated in a murder, he finds himself indebted to a psychotic gangster and is drawn into a world of violence that threatens his life and his family's safety.",0,0,Nice Guy,en +227552,Fixing Pete,2012-01-07,120.0,,,tt1737586,,,0,0,Fixing Pete,en +89247,"Daddy, I'm A Zombie",2012-01-10,80.0,,297501,tt2243469,13 Going On Eternity,The misadventures of a teenager girl in her new life as zombie.,0,0,"Daddy, I'm A Zombie",en +150049,The New Watchdogs,2012-01-10,0.0,,,tt1988699,,,0,0,Les nouveaux chiens de garde,fr +109261,On Air,2012-01-11,89.0,,,tt2118701,,,0,0,Parlez-moi de vous,fr +318184,Umbkotid,2012-01-11,,,,tt2146038,,,0,0,Umbkotid,et +83729,Offroad,2012-01-11,94.0,,,tt2133298,,,0,0,Offroad,de +103161,Fake It So Real,2012-01-12,95.0,http://fakeitsoreal.com/,,tt1756511,,"Dive head-first into the world of independent pro wrestling as we follow a group in Lincolnton, North Carolina over the week leading up to a big show.",0,0,Fake It So Real,en +134372,Marriage Material,2012-01-12,55.0,https://vimeo.com/34790491,,tt2628830,,"Emily and Andrew, a young couple living in Memphis, agree to babysit their friend’s 6-month-old for a day. The experience causes them to examine their own relationship and their feelings about marriage and children.",0,0,Marriage Material,en +84105,Frenemies,2012-01-13,86.0,http://tv.disney.go.com/disneychannel/originalmovies/frenemies/,,tt1865368,Geek vs Chic. Beauty vs Beast. Downtown vs Uptown.,What happens when three sets of BFF's become enemies?,0,0,Frenemies,en +79550,Rogue River,2012-01-16,81.0,,,tt1560978,You can't outrun family,"When a young woman takes a trip down Rogue River, her car mysteriously disappears. Lost without transport or communication, she accepts the hospitality of a stranger who offers her shelter for the night at his cabin. With no other options available, she reluctantly accepts only to forever regret it. The ensuing hours yield nothing but torture, indescribable pain, and horrific agony. If you've seen Misery, you've seen nothing. This movie starts where horror films end and leaves viewers paralysed by fear and disgust.",2000000,0,Rogue River,en +86703,2-Headed Shark Attack,2012-01-17,90.0,http://www.theasylum.cc/product.php?id=194,,tt2043757,"1 Body, 2 Heads and 6,000 Teeth","A Semester at Sea ship is attacked and sunk by a mutated two-headed shark, and the survivors seek refuge on a deserted atoll. The coeds, however, are no longer safe when the atoll starts flooding.",0,0,2-Headed Shark Attack,en +138191,36,2012-01-17,68.0,,,tt2417540,,A photographer loses the images needed for a filmmaker's (Sivaroj Kongsakul) new movie.,0,0,36,th +85038,Welcome to the North,2012-01-18,110.0,,150967,tt1756415,,"Now in the Far North (i.e. Milan!), Alberto has accepted to manage a program for efficiency improvement in the Italian Post. He devotes all his time and all his energy to this noble task and neglects his wife Silvia, which of course annoys her beyond limits. Things do not fare much better in Castellabate where it is rather Maria, Matta's wife, who gets on his nerves by always blaming him for his lack of ambition. One day, due to a misunderstanding, Mattia is transferred to... Milan! And on whose doorstep does he land? Alberto's of course!",6000000,35000000,Benvenuti al nord,it +52520,Underworld: Awakening,2012-01-19,88.0,http://www.entertheunderworld.com/,2326,tt1496025,Vengeance Returns,"After being held in a coma-like state for fifteen years, vampire Selene learns that she has a fourteen-year-old vampire/Lycan hybrid daughter named Nissa, and when she finds her, they must stop BioCom from creating super Lycans that will kill them all.",70000000,160112671,Underworld: Awakening,en +72545,Journey 2: The Mysterious Island,2012-01-19,94.0,http://www.themysteriousisland.com/,72547,tt1397514,Believe the Impossible. Discover the Incredible.,"Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.",79000000,355692760,Journey 2: The Mysterious Island,en +72431,Red Tails,2012-01-19,125.0,http://www.redtails2012.com/,,tt0485985,High-Octane Action and Daring Dogfights!,"The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.",58000000,50365377,Red Tails,en +82626,16-love,2012-01-20,89.0,,,tt1663673,Game...Set...the Perfect Match!,"When the number one junior player in the country is injured, she begins to discover the teenage life she never got to live... and find the love she never thought she'd have.",0,0,16-love,en +84178,Black Rock,2012-01-21,83.0,,,tt1930294,Not every island is a paradise.,Three childhood friends set aside their personal issues and reunite for a girls’ weekend on a remote island off the coast of Maine. One wrong move turns their weekend getaway into a deadly fight for survival.,0,0,Black Rock,en +75761,John Dies at the End,2012-01-23,99.0,http://johndiesattheend.com/,,tt1783732,Just so you know... they're sorry for anything that's about to happen.,"A new drug promises out-of-body experiences, but users are coming back changed forever, and an otherworldly invasion of Earth is underway.",0,0,John Dies at the End,en +139998,Supporting Characters,2012-01-23,87.0,,,tt1874789,,Two New York film editors balance their personal relationships while reworking a movie in crisis.,0,0,Supporting Characters,en +75174,The Grey,2012-01-26,117.0,http://www.thegreythemovie.com/,,tt1601913,Live or Die on This Day,An oil drilling team struggles to survive after a plane crash strands them in the wilds of Alaska. Hunting them is a pack of wolves that sees them as intruders.,25000000,77278331,The Grey,en +137200,Back To The Sea,2012-01-27,98.0,http://www.backtotheseamovie.com/,,tt2190193,Let the Adventure Begin!,A flying fish hopes to lead his family from their New York home to Barbados.,0,0,Back To The Sea,en +121929,Thursday Till Sunday,2012-01-28,96.0,,,tt1398991,,"As she and her family embark on a short vacation, a Chilean teenager slowly comes to the realization that her parents might be splitting up.",0,0,De jueves a domingo,es +85699,Zettl,2012-02-01,109.0,,,tt1505109,,A social satire in which a chauffeur accidentally becomes the editor of an online newspaper.,0,0,Zettl,de +169314,Where The Dead Go to Die,2012-02-01,95.0,,,tt2095004,,A troubled group of children living on the same block are haunted by a talking dog named Labby who brings them on surreal hell-rides between different dimensions and time periods.,0,0,Where The Dead Go to Die,en +82999,Penumbra,2012-02-02,90.0,http://www.cinemagroup.com.ar/producciones/penumbra.htm,,tt1725073,,A woman hesitantly rents an apartment to an eerie man who she soon realizes has a part in the solar eclipse that is taking place.,0,0,Penumbra,es +98557,Dysfunctional Friends,2012-02-03,101.0,,,tt1653002,There's a thin line between money and friends.,"A group of college friends are reunited after the death of their very successful friend. The will dictates that each person will receive a large sum of money if they can all successfully stay in his mansion for a week. If one person leaves, everyone forfeits the money.",1800000,0,Dysfunctional Friends,en +398452,The Wooden Bridge,2012-02-04,98.0,,,tt2173366,,It is about life of a young couple who want to migrate from their country. But the arrival of Nazli makes problems...,0,0,پل چوبی,fa +206266,Shining Night: A Portrait of Composer Morten Lauridsen,2012-02-07,74.0,,,tt2073077,,"A tribute to a living legend, celebrating the life and music of the artist Morten Lauridsen",0,0,Shining Night: A Portrait of Composer Morten Lauridsen,en +59961,Safe House,2012-02-09,115.0,http://www.nooneissafe.com,,tt1599348,No one is safe,"A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he's remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.",85000000,208076205,Safe House,en +88478,Any Questions for Ben?,2012-02-09,114.0,,,tt1735839,"When life is perfect, what's to question?","For 27-year-old Ben, life couldn't be better. A well paid job, friends, parties, girls and nothing to tie him down. But when he is invited back to his old school to join several other ex-students including Alex and Jim in talking about their personal achievements, something goes wrong.",114,0,Any Questions for Ben?,en +84336,Shadow Dancer,2012-02-12,101.0,,,tt1770734,,"Set in 1990s Belfast, a woman is forced to betray all she believes in for the sake of her son.",6300000,419953,Shadow Dancer,en +116723,Comes a Bright Day,2012-02-12,91.0,,,tt1900854,Always look for the hidden gem.,"Comes A Bright Day is a romantic thriller set during the armed robbery of one of London's most exclusive jewellers. Sometimes funny, often dark, always captivating and never what you expect.",0,0,Comes a Bright Day,en +94671,Jayne Mansfield's Car,2012-02-13,122.0,,,tt1781840,Torn Apart. Driven Together.,"Alabama; 1969: The death of a clan's estranged wife and mother brings together two very different families. Do the scars of the past hide differences that will tear them apart, or expose truths that could lead to unexpected collisions?",0,14836,Jayne Mansfield's Car,en +154537,Arcadia,2012-02-13,91.0,http://arcadiathefilm.com/,,tt2056520,,"Greta's dad Tom is moving the family cross-country in a dented station wagon, promising a California paradise to his kids. All that's missing is Mom.",0,0,Arcadia,en +95919,Love,2012-02-14,120.0,,,tt2202471,Valentine's Day 2012,"Eight people try to end their loneliness by searching for that one person to love, who can make their life complete.",0,0,愛,zh +93858,Tabu,2012-02-14,110.0,,,tt2153963,,"When Pilar's befriended neighbour Aurora dies, Pilar starts to dig into Aurora's past and learns about Aurora's very tragic love story.",0,0,Tabu,pt +117452,Tony 10,2012-02-14,90.0,http://www.filmpjekijken.com/recensie/details/tony-10,,tt1691343,,"A family film which tells the unlikely and timeless story about almost ten year old Tony, whose father rises from being a crane driver to Secretary of State. As a result his parents get divorced and Tony does everything he can to bring them back together. He even calls in the help of the queen.",0,0,Tony 10,en +59962,This Means War,2012-02-14,103.0,http://www.thismeanswarmovie.com/,,tt1596350,It's SPY Against SPY,Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.,65000000,156974557,This Means War,en +115929,Cool Kids Don't Cry,2012-02-15,105.0,http://www.achtstegroepersdefilm.nl/,,tt1800372,,"Adaptation of one of Benelux most famous children's novels. Tough prime school girl Akkie loves soccer and can be a real bully. Love is the only thing she's scared of. When Akkie is diagnosed with Leukemia, she has to fight for her life. On the verge of going to high school, Akkie has to allow love to enter her life, and thus gain courage to accept the inevitable.",0,0,Achtste Groepers Huilen Niet,nl +90231,Kill Zombie!,2012-02-16,90.0,http://www.zombibi.nl,,tt2084934,,"The bizarre story takes place in Amsterdam-West, where a virus turns people into bloodthirsty zombies. Although much blood is flowing and many limbs chopped off, there is a lot to laugh at in this bizarre horror comedy.",500000,0,Zombibi,en +132608,Kings & Rats,2012-02-17,110.0,,,tt2182085,,,0,0,Reis e Ratos,pt +161243,Men to Kiss,2012-02-21,83.0,https://www.facebook.com/men2kiss,,tt2047802,Finding the man of your dream is easy. Keeping him is another thing.,"The gay couple Tobi and Ernie are being visited by Ernie's old friend Uta. What at first looks like an innocent house-call, turns into an insidious attack on the couple's relationship.",0,0,Männer zum Knutschen,de +50647,Wanderlust,2012-02-23,98.0,http://www.wanderlust-movie.com/Wanderlust/home.html,,tt1655460,Leave your baggage behind,"Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.",35000000,24159934,Wanderlust,en +124217,The Ice Dragon,2012-02-24,80.0,,,tt2184211,,"An adventure about Mick, aged 11, and his quest for a new home. Mick runs away on an ice dragon, owns a cat factory, befriends brothers Bengt and Bertil, falls in love for the first time and eventually finds his way home.",0,0,Isdraken,sv +112287,Axed,2012-02-27,84.0,http://www.axedmovie.com/,,tt1582198,His job kept him sane! Now he's just lost it...,A strict father loosens up enough to let his children take a day off school for a trip to the countryside. But things turn darker when the family realize he is planning to make it their last outing ever.,0,0,Axed,en +106739,Low & Clear,2012-03-01,81.0,,,tt1957955,,"A meditation on friendship and life in the disappearing wilderness of the West, 'Low and Clear' follows two formerly close friends who re-unite for one last fly fishing trip. Over the course of their time together they come to understand how much they have each changed and how these changes now threaten the friendship.",0,0,Low & Clear,en +172890,Metastases,2012-03-01,0.0,,,tt2731434,,,0,0,Metastases,fr +97672,Suicides,2012-03-01,86.0,,,tt2258565,,"Comedy about the crazy adventures of three friends - Alexey, Tolik and Marina, who decided to commit suicide.",0,0,Samoubiytsy,ru +73723,The Lorax,2012-03-01,86.0,,,tt1482459,Meet The Original Force Of Nature,"A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax, the grumpy yet charming creature who fights to protect his world.",70000000,348840316,The Lorax,en +98339,The Samaritan,2012-03-02,90.0,http://www.thesamaritanfilm.com/,,tt1867093,,"After twenty years in prison, Foley is finished with the grifter's life. When he meets an elusive young woman named Iris, the possibility of a new start looks real. But his past is proving to be a stubborn companion.",12000000,2521,The Samaritan,en +142563,Fresh Guacamole,2012-03-02,2.0,,,tt2309977,,"In this follow-up to his stop-motion hit Western Spaghetti, director PES transforms familiar objects into Fresh Guacamole.",0,0,Fresh Guacamole,en +79778,The Odds,2012-03-02,92.0,http://theoddsmovie.com/,,tt1783392,,A murder mystery set in the world of illegal teenage gambling. A 17-year old must find his best friends' killer before the game is exposed.,0,0,The Odds,en +78571,Being Flynn,2012-03-02,102.0,,,tt0455323,We're All Works In Progress,"During his twenties, a young man works at various homeless shelters in Boston, where he often intersects with his brilliant but troubled father.",0,540152,Being Flynn,en +171873,Unter Umständen verliebt,2012-03-05,,,,tt2107874,,,0,0,Unter Umständen verliebt,de +94587,Kony 2012,2012-03-05,30.0,http://www.kony2012.com/sharefilm/,,tt2294697,,Kony 2012 is a film created by Invisible Children Inc which became a viral video. The film's purpose is to promote the charity's 'Stop Kony' movement to make indicted Ugandan war criminal Joseph Kony internationally known in order to arrest him in 2012.,0,0,Kony 2012,en +84575,Tooth Fairy 2,2012-03-06,90.0,,222634,tt1935929,Just Wing It,"Larry Guthrie, who loses his first love to the town hot shot, decides to win her back by volunteering with the children at her after-school program. When Larry accidentally tells the kids the Tooth Fairy is make-believe, he soon is transformed into a tutu-clad fairy with the ""sentence"" of collecting teeth.",5000000,0,Tooth Fairy 2,en +192623,White Frog,2012-03-07,93.0,http://whitefrogthemovie.com/,,tt1967697,Everyone is different...some more than others,Story of a neglected teen with mild Asperger’s syndrome whose life is changed forever when tragedy hits his family,0,0,White Frog,en +302465,Brothers on the Line,2012-03-08,80.0,,,tt1344811,,"Brothers on the Line explores the extraordinary journey of the Reuther brothers – Walter, Roy, and Victor – union organizers whose unshakeable devotion led an army of workers into an epic human rights struggle.",0,0,Brothers on the Line,en +108972,Helpless,2012-03-08,117.0,http://www.hwacha2012.co.kr/,,tt2308725,,"A woman suddenly disappears. Her fiance then sets out to find her and, in the process, uncovers layers of dark hidden secrets.",0,0,화차,ko +95516,Cleanskin,2012-03-08,108.0,,,tt1598873,Fight Fire With Fire,"While working undercover as a bodyguard to arms dealer Harry, former-soldier-turned-secret-service-agent Ewan survives a bloody shootout with a member of an Islamic terrorist cell who steals Harry's briefcase full of Semtex explosives and escapes. Ewan's spymasters task Ewan with hunting down the cell members and retrieving the briefcase.",0,0,Cleanskin,en +70436,The Raven,2012-03-09,111.0,,,tt1486192,The only one who can stop a serial killer is the man who inspired him.,"A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.",26000000,29657751,The Raven,en +84907,Playback,2012-03-09,95.0,http://www.playbackthemovie.com,,tt1682940,Picture. Evil.,"While digging into their town's infamous past, a group of high school students unwittingly unlock an even darker secret. Now, an evil spirit has been awakened and will stop at nothing to find his true heir.",7500000,0,Playback,en +127614,Almost 18,2012-03-09,112.0,,,tt2131541,,"Almost 18 is a charming and unaffected film about five 17-year-old guys from Helsinki in 2010. Karri, Peter, André, Akseli and Joni dream, party, love and boast like only teenage males can.",0,0,Kohta 18,en +98069,Charles Bradley: Soul of America,2012-03-09,75.0,,,tt2125467,,"The incredible rise to fame of 63-year-old aspiring soul singer Charles Bradley, whose debut album took him from a hard life in the Brooklyn Housing Projects to Rolling Stone Magazine's top 50 albums of 2011.",0,0,Charles Bradley: Soul of America,en +79781,The Last Fall,2012-03-09,98.0,http://www.facebook.com/TheLastFallMovie?ref=ts,,tt1986161,,An NFL journeyman struggles to deal with life's complexities after his professional career is over.,0,0,The Last Fall,en +140708,So It Goes,2012-03-09,30.0,,,tt2185178,,"Out into the big wide world as fast as possible. That’s Elli’s plan. But where should she get the money from, if not steal it? When Heze falls for her, she steals from him and both have to learn: “Adulthood is a big pain in the arse”.",0,0,Korsoteoria,en +149600,Eye of the Hurricane,2012-03-10,104.0,,,tt1647665,,An Everglades community struggles to put their lives back together in the wake of a hurricane.,0,0,Eye of the Hurricane,en +95177,Sun Don't Shine,2012-03-10,82.0,,,tt2023714,Good hearts can do bad things,Crystal and her boyfriend Leo embark on a tense and mysterious road trip through the desolate yet hauntingly beautiful landscape of central Florida.,0,0,Sun Don't Shine,en +140652,My Super Psycho Sweet 16: Part 3,2012-03-13,84.0,,,tt2056659,,"As she leaves for art school in New York, Skye gets a phone call from Alex. Skye hasn't heard from Alex in two years, but before she can move on with her life she needs to tie up some loose ends. Unfortunately, someone else has the same idea, and they're stalking and slashing their way through Alex's Sweet 16 party at her grandparents' isolated estate.",0,0,My Super Psycho Sweet 16: Part 3,en +80304,Casa De Mi Padre,2012-03-15,84.0,http://www.casademipadremovie.com/,,tt1702425,Funniest movie you'll ever read.,"Scheming of a way to save their father's ranch, the Alvarez brothers find themselves in a war with Mexico's most feared drug lord.",0,0,Casa De Mi Padre,en +62764,Mirror Mirror,2012-03-15,106.0,,,tt1667353,The Snow White legend comes alive.,"After she spends all her money, an evil enchantress queen schemes to marry a handsome, wealthy prince. There's just one problem - he's in love with a beautiful princess, Snow White. Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil...",85000000,183018522,Mirror Mirror,en +80389,Get the Gringo,2012-03-15,95.0,,,tt1567609,The odds are against him. So is everyone else.,A career criminal (Gibson) nabbed by Mexican authorities is placed in a tough prison where he learns to survive with the help of a 9-year-old boy.,35000000,0,Get the Gringo,en +100791,That still Karloson!,2012-03-15,80.0,,,tt2288121,,"The hero of Mikhail Galustyan, known in our world as KarlOson, lives in a magical and colorful world of metrics - chubby flying big-ear humanoids one meter tall, whose mission - to help kids. Metrics can show themselves to children, but are forced to carefully hide the fact of their existence from boring adults.",4000000,9938268,Tot yeshchyo Karloson!,ru +92635,Snow White: A Deadly Summer,2012-03-16,85.0,,,tt2149137,This is no fairy tale,A troubled teenage girl finds herself in a web of lies and deceit when her stepmother attempts to murder her by sending her to a discipline camp.,1000000,0,Snow White: A Deadly Summer,en +101852,Shuffle,2012-03-20,82.0,http://www.shufflethemovie.com/,,tt1488594,Every day I wake up at a different age in a different year on a different day of my life. I want it to stop.,"Lovell Milo is a man who begins experiencing his life out of order; every day he wakes up at a different age, on a different day of his life, never knowing where or when he’s going to be once he falls asleep. He’s terrified and wants it to stop - until he notices a pattern in his experience, and works to uncover why this is happening to him - and what or who is behind it.",500000,0,Shuffle,en +112931,La Soif du Monde,2012-03-20,0.0,,,tt2364729,,,0,0,La Soif du Monde,fr +99579,"Farewell, My Queen",2012-03-21,100.0,,,tt1753813,,A look at the relationship between Marie Antoinette and one of her readers during the final days of the French Revolution.,0,0,Les Adieux à la reine,fr +101352,L'Antisémite,2012-03-21,0.0,,,tt2397489,,,90000,0,L'Antisémite,fr +177354,Stud Life,2012-03-22,91.0,http://www.studlifethemovie.com/,,tt1758770,,"JJ is a 'Stud' Lesbian. Together with her best friend Seb, a gay pretty boy, they work as wedding photographers. When JJ falls in love with a beautiful diva, JJ and Seb's friendship is tested. JJ is forced to chose between her hot new lover and her best friend.",0,0,Stud Life,en +103215,Anton Corbijn Inside Out,2012-03-22,90.0,http://www.antoncorbijninsideout-film.de/,,tt2101314,,"An intimate portrait of Anton Corbijn as he travels the world as a photographer, film maker and video artist…",0,0,Anton Corbijn Inside Out,en +85414,Brake,2012-03-22,92.0,,,tt1990181,The only way out is to give in,A Secret Service Agent is held captive in the trunk of a car and endures high-speed mental and physical torture as terrorists attempt to extract needed information for their sinister plot.,0,0,Brake,en +116019,Taistelu Näsilinnasta 1918,2012-03-23,0.0,,,tt1941668,,,0,0,Taistelu Näsilinnasta 1918,fi +219067,Venti anni,2012-03-26,,,,tt2328487,,,0,0,Venti anni,it +86850,The Island President,2012-03-28,101.0,http://theislandpresident.com/,,tt1990352,Can this man save the world?,"Follows the globe-trotting journey of President Mohamed Nasheed of the Maldives, the lowest-lying country in the world, who, after bringing democracy to his country, takes up the fight to keep it from disappearing under the sea.",0,76398,The Island President,en +114438,Russendisko,2012-03-28,0.0,,,tt1639093,,,0,0,Russendisko,de +117942,Girls Gone Dead,2012-03-28,104.0,http://girlsgonedeadmovie.com/,,tt1884318,,A group of six ex-high school cheerleaders are stalked by a killer with a medieval war hammer and battle axe during their first Spring Break from college.,500000,0,Girls Gone Dead,en +88273,A Royal Affair,2012-03-29,137.0,http://www.aroyalaffairthemovie.com/,,tt1276419,Their love affair would divide a nation.,"A young queen falls in love with her physician, and they start a revolution that changes their nation forever.",8000000,7594693,En kongelig affære,da +87293,Beyond,2012-03-29,90.0,,,tt1800671,The unexplainable becomes something unimaginable,A detective teams with a tabloid psychic to track down a missing child.,0,0,Beyond,en +84354,Young & Wild,2012-03-29,92.0,,,tt2125698,,"Daniela, raised in the bosom of a strict Evangelical family and recently unmasked as a fornicator by her shocked parents, struggles to find her own path to spiritual harmony.",0,0,Joven y alocada,es +80280,[REC]³ Genesis,2012-03-30,80.0,http://www.magnetreleasing.com/rec3/,74508,tt1649444,You may kiss the bride.,"The action now takes place miles away from the original location and partly in broad daylight, giving the film an entirely fresh yet disturbing new reality. The infection has left the building. In a clever twist that draws together the plots of the first two movies, this third part of the saga also works as a decoder to uncover information hidden in the first two films and leaves the door open for the final installment, the future '[REC] 4 Apocalypse.'",0,10158000,[REC]³ Génesis,es +110491,The Manzanar Fishing Club,2012-03-30,0.0,,,tt2067003,,,0,0,The Manzanar Fishing Club,en +79935,Fortress,2012-04-01,89.0,,,tt1558575,"Battles were fought on the ground, wars were won in the sky.","When the commander of the crew of a B-17 Flying Fortress bomber is killed in action in a raid over Sicily in 1943, his replacement, a young, naive pilot struggles to be accepted by the plane's already tight-knit Irish American crew.",5000000,0,Fortress,en +98582,Unit 7,2012-04-03,95.0,,,tt1924277,,"Angel, a young intelligent and kind, aims to be a police inspector. Rafael instead is an expeditious, forceful and arrogant policeman. Meanwhile, Miguel and Mateo are part of Group 7, a group of rogue cops ready to do anything to achieve their goals.",3500000,0,Grupo 7,es +98277,Paris Under Watch,2012-04-04,80.0,https://www.facebook.com/auxyeuxdetous,,tt2106321,,"An anonymous hacker has hacked all of Paris' cameras and observes the city unbeknownst to its inhabitants. Petty crimes and moments of stolen intimacy, he sees everything. Until the day that an explosion lays wasted to the Gare d'Austerlitz. The police starts tracking down an Al Queda satellite group. The hacker succeeds in finding images of the explosion and discovers that it was a young couple who planted the bomb. Using the city's cameras, he decides to hunt down the criminals.",0,0,Aux yeux de tous,fr +139159,Coming Home,2012-04-04,91.0,,,tt2194497,,A young woman tries to adjust to freedom after she spends eight years as a prisoner to a strange man.,0,0,À moi seule,fr +85052,Housefull 2,2012-04-05,145.0,,142015,tt1980986,,Housefull 2 is an upcoming Bollywood action comedy film directed by Sajid Khan and produced by Sajid Nadiadwala. It is the sequel to the 2010 Bollywood commercially successful movie Housefull,0,0,हाउसफुल २,hi +102197,The Spy,2012-04-05,99.0,,,tt2321517,,Spring 1941. Center of Moscow. Duel of the two intelligence services turns more and more tense.,6000000,4588176,Шпион,ru +128089,Imagine,2012-04-12,105.0,,,tt1846492,,A blind teacher breaks the rules to help a female student rediscover the pleasures of life.,0,0,Imagine,en +85469,Einer wie Bruno,2012-04-12,0.0,,,tt1670388,,,0,0,Einer wie Bruno,de +105787,The Woman Who Wasn't There,2012-04-13,65.0,,,tt2114490,,Tania Head was the ultimate 9/11 survivor. She had the grimmest story. None of it was true.,0,0,The Woman Who Wasn't There,en +101995,Inside,2012-04-13,107.0,,,tt1961675,,A movie about a man trying to find solice.,0,0,Yeraltı,tr +98369,Blue Like Jazz,2012-04-13,106.0,http://www.bluelikejazzthemovie.com/,,tt1758575,Everybody belongs somewhere,A young man must find his own way as his Southern Baptist roots don't seem to be acceptable at his new liberal arts college.,1250000,0,Blue Like Jazz,en +137528,You Can't Kill Stephen King,2012-04-14,86.0,,,tt1691452,Based on a true story... sort of.,"Siblings Monroe (Monroe Mann) and Hilary (Crystal Arnette) have discovered that they have inherited a lake house and to make things even better, the famous horror author Stephen King is rumoured to live somewhere nearby. They decide to take their friends down to the lake house to check things out, only to find immediate resistance from all of the locals, who insist that King doesn't live in the area. Despite being completely unwelcome, they decide to stay and soon find that people are being killed one by one in a manner similar to several deaths in various Stephen King stories.",0,0,You Can't Kill Stephen King,en +84577,7 Below,2012-04-16,90.0,,,tt1988781,Evil has found a new home.,The story centers on a group of strangers trapped in a time warp house where a terrible event transpired exactly 100 years prior.,6000000,0,7 Below,en +77877,The Lucky One,2012-04-19,101.0,http://theluckyonemovie.warnerbros.com/,,tt1327194,,"U.S. Marine Sergeant Logan Thibault returns from his third tour of duty in Iraq, with the one thing he credits with keeping him alive-a photograph he found of a woman he doesn't even know. Learning her name is Beth and where she lives, he shows up at her door, and ends up taking a job at her family-run local kennel. Despite her initial mistrust and the complications in her life, a romance develops between them, giving Logan hope that Beth could be much more than his good luck charm.",25000000,99357138,The Lucky One,en +190410,Maledimiele,2012-04-19,93.0,,,tt1637699,,"Maledimiele tells the story of Sara, a teenage girl who sinks – slowly but inevitably – into the abyss of anorexia.",0,0,Maledimiele,it +137381,People of a Feather,2012-04-20,90.0,,,tt1929346,,The Inuit of Belcher Islands struggle to adapt as their environment changes.,0,0,People of a Feather,en +90125,Marley,2012-04-20,144.0,http://www.magpictures.com/marley/,,tt1183919,,"Bob Marley's universal appeal, impact on music history and role as a social and political prophet is both unique and unparalleled. Directed by Academy Award-winning director Kevin Macdonald (The Last King of Scotland), MARLEY is the definitive life story of the musician, revolutionary, and legend, from his early days to his rise to international superstardom. Made with the support of the Marley family, the film features rare footage, incredible performances and revelatory interviews with the people that knew him best.",0,0,Marley,en +137853,Journey to Planet X,2012-04-20,88.0,http://www.journeytoplanetx.com/,,tt2321379,,"Eric Swain and Troy Bernier are scientists by day and amateur filmmakers by night. Over the years these two friends have turned out many of their own amateur, sci-fi inspired movies. Journey to Planet X follows the filming of Planet X, the duo’s most ambitious endeavor to date, and sheds light on their unique brand of “movie magic.”",0,0,Journey to Planet X,en +89325,Darling Companion,2012-04-20,103.0,,,tt1730687,,The story of a woman who loves her dog more than her husband. And then her husband loses the dog.,0,0,Darling Companion,en +106049,The Revisionaries,2012-04-21,92.0,http://www.therevisionariesmovie.com,,tt2091398,,The theory of evolution and a re-write of American history are caught in the crosshairs when an unabashed Creationist seeks re-election as chairman of America's most influential Board of Education.,0,0,The Revisionaries,en +168027,Freaky Deaky,2012-04-22,90.0,,,tt0938305,Crime is such a trippy thing,"Set in 1974, a pair of '60s radicals rely on their bomb-making skills on their way to becoming capitalists.",0,0,Freaky Deaky,en +100275,Eddie: The Sleepwalking Cannibal,2012-04-22,79.0,,,tt1480658,Part muse. Part sleepwalking cannibal.,A once-famous painter rediscovers inspiration when he befriends a sleepwalking cannibal.,0,1632,Eddie: The Sleepwalking Cannibal,en +388046,Donos de Portugal,2012-04-25,,,,tt2146688,,,0,0,Donos de Portugal,pt +118451,Eungyo,2012-04-25,129.0,http://eungyo.co.kr/,,tt2390253,Desire Never Gets Old,"Renowned 70-year-old poet Lee Jeok-yo falls for a 17-year-old girl named Eun-gyo. Upon realizing his love for the teenager, the poet goes through emotional turmoil and self-destruction, while willing to give up his fame as one of the nation’s most respected literary figures. Involved in the love triangle is Lee's student Seo Ji-woo, a novelist in his 30s who also becomes obsessed with the girl.",0,0,은교,ko +98368,Ritual,2012-04-26,87.0,http://modusanomali.com/,,tt2182019,,A father on vacation wakes up separated from his family and races through the woods to find them.,200000,0,Modus Anomali,en +143169,Envelope,2012-05-28,17.0,,,tt2174736,Faith Is Always Sealed,"Evgeniy's hobby is to send fake letters to real countries. He has collected a letter from every country except New Zealand, and he sends a letter there. Things turn worst when he actually receives a letter from someone there.",0,0,Envelope,en +98586,Winning Streak,2012-04-26,90.0,,,tt1843202,,"Winning Streak is the astonishing story of a group of young down-and-outs who are presented with a once-in-a-lifetime opportunity; to change their luck and set off on the adventure of their lives. Thanks to an infallible method based on the roulette wheel’s imperfection, their lifestyle is about to become better than their wildest dreams, as they set out to break the banks at casinos around the world.",0,0,The Pelayos,en +92393,Area 407,2012-04-27,90.0,http://www.tape407.com/,,tt2062661,The plane crash was just the beginning,Survivors of an airplane crash find themselves within the borders of a government testing area and pursued by predators.,0,0,Tape 407,en +72207,The Five-Year Engagement,2012-04-27,124.0,http://www.thefiveyearengagementmovie.com/,,tt1195478,A comedy about the journey between popping the question and tying the knot.,"Exactly one year after Tom meets Violet, he surprises her with a wedding ring. By all accounts, Tom and Violet are destined for their happily ever after. However, this engaged couple just keep getting tripped up on the long walk down the aisle.",30000000,53909751,The Five-Year Engagement,en +105210,Thermae Romae,2012-04-28,108.0,http://thermaeromae.com/,385717,tt1867101,,"The story follows a Roman architect named Lucius, who is having trouble coming up with ideas. One day, he discovers a hidden tunnel underneath a spa that leads him to a modern Japanese bath house. Inspired by the innovations found there, he creates his own spa, Roma Thermae, bringing in the modern ideas to his time.",0,0,テルマエ・ロマエ,ja +193040,Slasher House,2012-04-29,85.0,,,tt2375454,One Girl. Four Killers... Welcome Home.,"When RED awakens in a prison cell within an old abandoned Madhouse, she has no idea how she got there and why she has been placed there. As her cell door opens she soon discovers that she is not alone. Trapped with the worlds most notorious serial killers she finds herself caught in a deadly game with no escape as one by one the other 'inmates' are released to stalk her as their own prey. RED must now battle impossible enemies as she tries to find her freedom and soon realizes that there is a bigger plan for all this than she first realized. Will this 'Final' girl have what it takes? Or will she see the last of her days in the endless corridors of SLASHER HOUSE!",1550000,0,Slasher House,en +138496,Crawlspace,2012-05-01,89.0,http://www.facebook.com/crawlspacemovie,,tt1890375,In this space everyone can hear you scream,"A group of elite soldiers sent to infiltrate and extract the lead science team from Pine Gap, Australia's top secret underground military compound, after it comes under attack from unknown forces. The mission is compromised when they encounter a young woman with no memory of who she is or how she came to be there. As they try to escape, the group quickly discovers all is not as it seems and the facility has become a testing ground for something far more sinister.",0,0,Crawlspace,en +105768,Flicka: Country Pride,2012-05-01,111.0,,,tt2039339,,Flicka and Toby help out a struggling stable owner and her teenage daughter.,0,0,Flicka: Country Pride,en +105991,La Rizière,2012-05-02,0.0,,,tt2014268,,,0,0,La Rizière,fr +39957,Burning Bright,2012-05-02,89.0,,,tt1244658,His Feeding. Your Frenzy.,"After her lousy stepfather steals her savings to buy a vicious tiger, Kelly loses all hope of going to college. But Kelly's situation worsens when a hurricane leaves her and her autistic brother boarded up in their house with the man-eating beast. This edge-of-your-seat thriller follows the gutsy heroine and her younger sibling as they struggle to outwit the ravenous predator and find a way to survive.",0,0,Burning Bright,en +94204,Meeting Evil,2012-05-03,89.0,,,tt1810697,,"Follows disillusioned young family man John as a mysterious stranger, Richie takes him on a murder-fueled ride that transforms the weak-willed John into a desperate hero willing to go to any length to protect his family.",0,525,Meeting Evil,en +103758,Reality,2012-05-04,110.0,,,tt1846487,,"A dark comedy centering on the lives of a Neapolitan based family whose father, a fish merchant, is so infatuated with the reality TV show ""Grande Fratello"" (the Italian version of ""Big Brother"") he starts living his life as if he were on it.",0,0,Reality,en +208637,Kaksparsh,2012-05-04,147.0,,,tt2400377,,Uma loses her husband at a very young age and faces many hardships. The only support she gets is from her brother-in-law.,0,0,Kaksparsh,en +140814,Elliot Loves,2012-05-04,92.0,,,tt0790653,The boy can't help it.,"Two stages of a Dominican-American's life; first as a boy trying to bond with his young mother, then a 21-year-old looking for love in New York City.",0,0,Elliot Loves,en +62213,Dark Shadows,2012-05-08,113.0,http://darkshadowsmovie.warnerbros.com,,tt1077368,Every Family Has Its Demons,Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.,150000000,245527149,Dark Shadows,en +102629,El Gringo,2012-05-10,98.0,,,tt1990216,,"A man crossing into Mexico with a satchel of $2,000,000 – and a bloody past – suddenly finds himself under attack in the sleepy town of El Fronteras.",3000000,0,El Gringo,en +107445,Lost in Siberia,2012-05-10,100.0,http://www.ausgerechnetsibirien.de/,,tt1833843,,"Matthias Bleuel, a logistician of a german mail order company is send to Kemorovo in Siberia to teach some russian subsidiary company the german work flow system. But soon this land changes him and everything for him.",0,0,Ausgerechnet Sibirien,de +100024,Bloodwork,2012-05-10,100.0,,,tt1562567,Not Dying Doesn't Mean You're Alive,A couple of college students decide to sign up for pharmaceutical testing of a new allergy drug to make some extra cash for their spring break trip. They quickly discover their two week stay will not be as easy as they first believed and fight to save themselves from the grips of the facility.,0,0,Bloodwork,en +71668,Piranha 3DD,2012-05-11,83.0,http://piranha-3d.com/,104830,tt1714203,Twice the Teeth. Twice the Terror.,"After the events at Lake Victoria, the prehistoric school of blood-thirsty piranhas make their way into swimming pools, plumbing, and a newly opened water park.",5000000,8493728,Piranha 3DD,en +104232,Nesting,2012-05-11,93.0,,,tt1705126,Some couples break up... They broke in.,"When a thirty-something couple set aside the home furnishings catalogue and decide to rekindle their relationship, they return to their old neighborhood and end up squatting illegally in their twenty-something lives.",0,0,Nesting,en +102222,The Philly Kid,2012-05-11,94.0,,,tt1937506,,"A former NCAA champion wrestler is paroled after 10 years in prison. Now, to save a friend's life, in a series of cage fights he must agree to do the impossible - lose.",5000000,0,The Philly Kid,en +103640,Ishaqzaade,2012-05-11,132.0,http://www.yashrajfilms.com/microsites/ishaqzaade/fullpage.html,,tt2308773,,"While fighting for the political supremacy of their respective families, a Hindu man and a Muslim woman share a forbidden romance.",0,0,Ishaqzaade,hi +113040,Alien Origin,2012-06-12,90.0,,,tt2196430,The Footage is Real. The Proof is Irrefutable.,"A movie created from ""found footage"" of a lost military expedition that exposes the origins of life on earth.",0,0,Alien Origin,en +111836,Gabbar Singh,2012-05-11,136.0,,,tt2304655,He is Special,"Gabbar Singh is a 2012 Telugu action film directed by Harish Shankar. The film is produced by Bandla Ganesh under Parameshwara Art productions banner and stars Pawan Kalyan and Shruti Haasan in lead roles. Devi Sri Prasad, who previously worked with Pawan Kalyan in Jalsa, has composed the soundtrack for the film. The film is an adaptation of 2010's successful Hindi film Dabangg. The film was released on May 11, 2012 And went on to become ""BlockBuster of The Year"" and a Comeback for ""powerstar"" Pawan Kalyan",7000000,16000000,Gabbar Singh,te +102630,Stash House,2012-05-11,95.0,,,tt1919090,Every villain has his day.,"Dave and Emma have found the perfect house, until they discover a stash of heroine and end up imprisoned in it by violent thugs.",2000000,0,Stash House,en +116303,Rent-a-Cat,2012-05-12,110.0,,,tt2246953,,A single woman runs a rent-a-cat service to provide companions for lonely people.,0,0,レンタネコ,ja +137646,The Education of Mohammad Hussein,2012-05-14,38.0,,,tt2386922,,"THE EDUCATION OF MOHAMMAD HUSSEIN is an intimate look at how the largest Muslim community in America responds to the provocations of an anti-Islamic preacher. Through the eyes of children, the film examines what it is like to come of age as a Muslim in the United States ten years post 9/11.",0,0,The Education of Mohammad Hussein,en +246006,The Most Beautiful Thing,2012-05-15,11.0,,,tt2881274,,A down on his luck boy finds love in the most unexpected way.,0,0,The Most Beautiful Thing,en +97632,American Warships,2012-05-15,90.0,,,tt2175927,,"When an alien force wages war on Earth, only the crew of the USS Iowa - the last American battleship, stands in their way.",0,1000000,American Warships,en +76493,The Dictator,2012-05-15,83.0,http://www.dictatorthemovie.com/,,tt1645170,kurd,The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.,65000000,179379533,The Dictator,en +83666,Moonrise Kingdom,2012-05-16,94.0,http://www.moonrisekingdom.com,,tt1748122,A tormenting and surprising story of children and adults during the stormy days of the summer of 1965.,"Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore – and the peaceful island community is turned upside down in more ways than anyone can handle.",16000000,68263166,Moonrise Kingdom,en +255396,Yardbird,2012-05-16,13.0,,,tt2366035,,A young girl who lives in a remote wrecking yard takes on the local bullies when they travel out to torment her father.,0,0,Yardbird,en +117629,Yossi,2012-05-16,84.0,http://yossifilm.com/,409138,tt1934269,,"The sequel to ""Yossi and Jagger"" finds character Yossi (Ohad Knoller) leading a sad existence after losing his partner Jagger on the battlefield. A chance encounter with a middle-aged woman linked to his past shakes up his otherwise staid routine and sends him on a spontaneous pilgrimage to Tel Aviv. It is on the roads of southern Israel that he reignites the fire of his former self.",500000,116207,הסיפור של יוסי,he +97365,Rust and Bone,2012-05-17,123.0,,,tt2053425,,"Put in charge of his young son, Ali leaves Belgium for Antibes to live with his sister and her husband as a family. Ali's bond with Stephanie, a killer whale trainer, grows deeper after Stephanie suffers a horrible accident.",15400000,25762027,De rouille et d'os,fr +127493,Stolen,2012-05-17,96.0,,,tt1656186,Never steal from the world's greatest thief.,"A former thief frantically searches for his missing daughter, who has been kidnapped and locked in the trunk of a taxi.",35000000,2106557,Stolen,en +116488,All About My Wife,2012-05-17,121.0,,,tt2173264,"Mr. Casanova, please seduce my wife.",A man asks a womanizer to seduce his wife in order to catalyze a divorce.,0,0,내 아내의 모든 것,ko +76494,What to Expect When You're Expecting,2012-05-17,110.0,http://whattoexpectthefilm.com/,,tt1586265,It's too late to pull out now.,"Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.",40000000,79700000,What to Expect When You're Expecting,en +106135,Crooked Arrows,2012-05-18,95.0,,,tt1954352,Join the tribe.,A native-American lacrosse team makes its way through a prep school league tournament.,13000000,1832541,Crooked Arrows,en +74505,Lovely Molly,2012-05-18,100.0,http://www.youtube.com/watch?v=aGZpzhzayvE,,tt1707392,,"Newlywed Molly moves into her deceased father's house in the countryside, where painful memories soon begin to haunt her.",1000000,0,Lovely Molly,en +110160,Laurence Anyways,2012-05-18,168.0,http://laurenceanywaysthemovie.com,,tt1650048,,"Set in the 1980s and 1990s, a man tries to salvage his relationship with his fiancée after revealing to her his aspirations of becoming a woman. This is the story of a wild and unusual love.",9500000,12250,Laurence Anyways,fr +140485,Sağ Salim,2012-05-18,0.0,,479971,tt2355823,,,0,0,Sağ Salim,tr +110148,Jesse Stone: Benefit of the Doubt,2012-05-19,87.0,,59235,tt2004262,,"Jesse finds himself struggling to get his job back as the Paradise police chief, and he is forced to rely on his cop intuition to sort through a maze of misleading clues and hidden meanings as he attempts to solve a shocking and horrifying mob-related double homicide.",0,0,Jesse Stone: Benefit of the Doubt,en +103875,Mystery,2012-05-20,98.0,,,tt2369127,,A car full of irresponsible youths hit a woman on a rainy freeway and think she is trying an insurance scam.,0,0,浮城谜事,zh +83770,On the Road,2012-05-22,137.0,http://www.ontheroad-themovie.com/?lang=en,,tt0337692,The best teacher is experience.,"Dean and Sal are the portrait of the Beat Generation. Their search for ""It"" results in a fast paced, energetic roller coaster ride with highs and lows throughout the U.S.",25000000,8784318,On the Road,en +157305,Head Over Heels,2012-05-24,10.0,http://www.headoverheelsfilm.com,,tt2391009,Sometimes you can't agree which way is up.,"After many years of marriage, Walter and Madge have grown apart: he lives on the floor and she lives on the ceiling. When Walter tries to reignite their old romance, their equilibrium comes crashing down, and the couple that can't agree which way is up must find a way put their marriage back together.",10400,0,Head Over Heels,en +93856,Chernobyl Diaries,2012-05-24,88.0,http://www.chernobyldiaries.com/,,tt1991245,Experience the fallout,"A group of six tourists looking to go off the beaten path, hire an 'extreme tour guide'. Ignoring warnings, he takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but a deserted town since the disaster more than 25 years earlier. After a brief exploration of the abandoned city, the group members find themselves stranded, only to discover that they are not alone.",0,18112929,Chernobyl Diaries,en +70981,Prometheus,2012-05-30,124.0,http://www.projectprometheus.com/,135416,tt1446714,The Search for Our Beginning Could Lead to Our End.,"A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.",130000000,403170142,Prometheus,en +132957,Don't Click,2012-05-30,93.0,,,tt1935785,,"A horror movie about the mysterious happenings that happen to a pair of sisters after watching an unidentified video. Directed by Kim Tae-kyeong, Park Bo-yeong plays Se-hee who tries to save her sister Jeong-mi, her boyfriend Joo Won and Kang Byeol plays the sister.",0,0,미확인 동영상 절대클릭금지,ko +264036,Heavenly Judgement,2012-05-31,0.0,,,tt2005299,,,0,0,Небесный суд,ru +130593,Good Vibrations,2012-05-31,97.0,,,tt1920945,,"The story of music legend Terri Hooley, a key figure in Belfast's punk rock scene. Hooley founded the Good Vibrations store from which a record label sprung, representing bands such as The Undertones, Rudi and The Outcasts.",0,0,Good Vibrations,en +109690,En fuera de juego,2012-06-01,106.0,,,tt1760958,,"Diego, an Argentine doctor traumatized by the soccer since his childhood, is not satisfied with his life. Javi is a representative of kids who start playing soccer, a Spanish third division manager who dreams of an opportunity to change their fate. Suddenly, the discovery of a young Argentinian star, will join Diego and Javi in a common adventure, full of surprises and and picaresque.",0,0,En fuera de juego,en +112161,6 Month Rule,2012-06-01,95.0,http://6monthrulemovie.com/,,tt0865561,,A womanizer teaches his clueless friend the rules about being single and avoiding emotional attachment.,0,0,6 Month Rule,en +100532,Sun Kissed,2012-06-01,82.0,http://www.sunkissedthefilm.com/,,tt1998399,,"Sun Kissed tells the story of Dorey and Yolanda Nez, a Navajo couple whose children were born with XP - a rare genetic disorder, which causes skin cancer from any exposure to sunlight.",300000,0,Sun Kissed,en +112456,Hardflip,2012-06-01,114.0,http://hardflipmovie.com/,,tt1907639,What do you do when your life does a 180?,"Hardflip follows the story of Caleb (Randy Wayne) a young skater whose ill mother (Rosanna Arquette) and absent father (John Schneider) leave him reaching for the only hope he has...becoming a sponsored skater. After his mother falls ill, Caleb finds a stack of old love letters. He sets out to find the father he never knew and inadvertently begins a journey he never could have expected. This story explores what happens when we let go of our anger and pain and forgive those who have hurt us most.",1000000,0,Hardflip,en +112162,TimeScapes,2012-06-01,52.0,http://timescapes.org,,tt2297031,From the astronomy photographer of the year,"TimeScapes is the debut film from award-winning cinematographer and director Tom Lowe. The film features stunning slow-motion and timelapse cinematography of the landscapes, people, and wildlife of the American South West. Lowe spent 2 years roaming the Southwest in his Toyota pickup truck shooting the film.",350000,0,TimeScapes,en +102632,Rowdy Rathore,2012-06-01,143.0,,,tt2077833,,Low-life thief Shiva and top-cop Vikram Rathore are identical. Vikram killed by foes but his daughter thinks Shiva is her dad - can this Rowdy win respect?,6700000,31000000,राउडी राठौर,hi +114377,The Ventriloquist,2012-06-02,10.0,,,tt2187474,,A ventriloquist struggles to survive with no audience while he becomes lonely- his only friend his puppet.,0,0,The Ventriloquist,en +167956,Fist of Jesus,2012-06-05,15.0,http://www.fistofjesus.com/,,tt2705402,Jesus loves some... others feel his fist!,"When Jacob tells Jesus that his son, Lazarus, is dead, Jesus goes to his home to resurrect him. Only, this is the first time that Jesus has ever tried to bring back someone from the dead. You do not always get it right the first time. What follows is a gore-tastic nine minutes of Biblical splatter violence and comedy. Even our Lord and Savior goofs up once and a while. But he makes amends. Big time.",0,0,Fist of Jesus,es +138977,Hello Herman,2012-06-05,88.0,http://www.hellohermanthemovie.com/,,tt1876330,,"Set in the not so distant future, in Any Town USA, sixteen year old Herman Howards makes a fateful decision. He enters his suburban school and kills thirty nine students, two teachers, and a police officer. Just before his arrest he emails his idol, famous journalist Lax Morales, sending him clips of the shootings captured with Herman's own digital camera. In the clips Herman tells Lax, ""I want to tell my story on your show"". Lax, haunted by his own past, is now face to face with Herman.",1500000,0,Hello Herman,en +148265,Eega,2012-06-06,145.0,http://eegamovie.com/,,tt2258337,,"Sudeep is a high profile industrialist who gets whatever he wants and he has a special eye for beautiful women. To get them, he will not hesitate to do anything. That desire gets triggered when Sudeep sees Bindu, a micro artist who runs a non-profit organization. However, Bindu is loved by Nani who keeps following her everywhere. Though Bindu loves him, she doesn't express it to him and enjoys the attention. The story takes a turn when Sudeep discovers the feelings of Bindu for Nani and is unable to digest his defeat. He kills Nani. But Nani is born again as 'Eega'(fly) and he wants to take vengeance on Sudeep.",5990000,19450000,Eega,te +139862,Rommel,2012-06-06,120.0,,,tt2157346,,"A new film about Erwin Rommel has been shown on German television, depicting the general as a weak man undone by his links to Adolf Hitler.",0,0,Rommel,de +192137,Not Waving But Drowning,2012-06-06,100.0,,,tt1859558,,"Not Waving But Drowning is a chronological look at growing up, formed from two different stories. The two sets of friends represent the American dilemma between what you have known and what you hope to know; the tear between longing for the past and the desire to explore.",0,0,Not Waving But Drowning,en +89595,Sushi: The Global Catch,2012-06-07,74.0,,,tt1834234,,A look at the global sushi phenomenon and how the hunger for Blue Fin Tuna is impacting the ocean's stock.,0,0,Sushi: The Global Catch,en +112304,Soldiers of Fortune,2012-06-07,94.0,,,tt1678051,,"Wealthy thrill-seekers pay huge premiums to have themselves inserted into military adventures, only this time things don't go exactly to plan.",8000000,0,Soldiers of Fortune,en +112130,For the Love of Money,2012-06-08,93.0,,,tt1730294,For the love of money is the root of all evil.,"Spanning over two decades, ""For the Love of Money"" follows the true account of an Israeli immigrant who searches for his piece of the American dream.",0,0,For the Love of Money,en +114172,Naked Harbour,2012-06-08,90.0,http://vuosaarielokuva.fi/,,tt1787767,Everybody wants to be touched,Naked Harbour is a movie about Finnish love in the year 2011. It is a story about people who seek love and acceptance at any cost. During one winter week all its characters face something irreversible.,0,0,Vuosaari,en +227871,Skull Forest,2012-06-09,75.0,,,tt2369305,The hunt is on.,Four female friends embark on a weekend camping expedition into the woods. Things go horribly awry when the quartet runs afoul of a group of wicked rich folks who enjoy hunting humans for sport. Will any of these ladies make it out of the forest alive?,0,0,Skull Forest,en +87428,That's My Boy,2012-06-14,116.0,http://www.sonypictures.com/movies/thatsmyboy/,,tt1232200,The story of a child… and his son.,"While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd's 18th birthday. Now, after not seeing each other for years, Todd's world comes crashing down when Donny resurfaces just before Todd's wedding.",70000000,58058367,That's My Boy,en +116977,Foodfight!,2012-06-15,87.0,http://www.thresholdanimationstudios.com/video.php?id=foodfight,,tt0249516,When good food... goes bad!,"Dex, a superdog sleuth, is the law of the land when the world's most recognized brands take on the forces of evil and the devilish Brand X.",65000000,73706,Foodfight!,en +140448,Downeast,2012-06-15,80.0,,,tt2088754,,Explores Italian immigrant Antonio Bussone's use of federal grants to return factory work to the United States.,0,0,Downeast,en +116340,Dead Man's Burden,2012-06-15,93.0,,,tt2094155,,A western set on the New Mexico frontier a few years after the Civil War and centered on a struggling young family and the mining company who wants to buy their land.,0,0,Dead Man's Burden,en +115290,Blue Lagoon: The Awakening,2012-06-16,85.0,http://www.lifetime.com,59586,tt2287663,The Awakening,Two high school students become stranded on a tropical island and must rely on each other for survival. They learn more about themselves and each other while falling in love.,0,0,Blue Lagoon: The Awakening,en +152113,Planet Ocean,2012-06-18,94.0,http://ocean.goodplanet.org/,,tt2240784,,Dive into our planet's greatest mysteries with a team of international underwater cinematographers as they explore the breathtaking bond between humanity and the ocean.,0,0,Planète Océan,fr +130993,Future My Love,2012-06-21,93.0,http://www.futuremylove.com/,,tt1495768,,"Directed and narrated by Maja Borg, Future My Love is a unique love story challenging our collective and personal utopias in search of freedom.",0,0,Future My Love,en +117506,Motorway,2012-06-21,90.0,,,tt1740002,,"Two police pursuit drivers, a hothead rookie and his long-suffering, almost-retired mentor, face off against an escape car driver from the latter's past.",0,0,車手,cn +120942,Teri Meri Kahaani,2012-06-21,120.0,http://www.facebook.com/terimerikahaani,,tt2354407,Thrice upon a love story,Thrice upon a love story,0,0,Teri Meri Kahaani,en +136752,"Rock, Paper, Scissors",2012-06-22,100.0,http://www.piedrapapelotijera.com.ve/,,tt1935870,You can't deny and you know!,"The chance of an innocent child's game will unveil a betrayal that will forever change the lives of two families when their paths cross, endangering what they love the most, in a city that does not give them a truce.",0,0,"Piedra, Papel o Tijera",es +88005,Seeking a Friend for the End of the World,2012-06-22,101.0,,,tt1307068,Nice knowing you.,"As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.",10000000,9636289,Seeking a Friend for the End of the World,en +84305,Lay the Favorite,2012-06-22,94.0,,,tt1132449,How far can a losing shot take you?,A former stripper's talent with numbers lands her a job with a professional gambler who runs a sports book in Las Vegas.,26350000,1576687,Lay the Favorite,en +180691,David Bowie & the Story of Ziggy Stardust,2012-06-22,60.0,,,tt2223820,David Bowie & the Story of Ziggy Stardust,Both a visual flashback and a telling of the life and birth of the alter ego that was David Bowie's Ziggy Stardust.,150000,0,David Bowie & the Story of Ziggy Stardust,en +117534,E Aí... Comeu?,2012-06-22,100.0,,,tt2209400,"comedy, drama, romance",The real first comedy about love.,0,0,E Aí... Comeu?,pt +75300,The Last Ride,2012-06-22,102.0,http://www.thelastridefilm.com/,,tt1605803,,The final days of Hank Williams.,0,0,The Last Ride,en +116463,Arachnoquake,2012-06-23,86.0,,,tt2151543,The World Will Quake In Fear,"Giant albino spiders break free from the depths of Earth in New Orleans, making everyone’s worst nightmare a reality.",0,0,Arachnoquake,en +117120,The Facility,2012-06-23,85.0,,,tt1650044,One new drug. Seven volunteers. Seventeen hours of hell.,A group of volunteers find themselves fighting for their lives when a drug trial goes horribly wrong.,0,0,The Facility,en +116306,Exit Elena,2012-06-24,72.0,,,tt2136914,,A live-in aide adjusts to life with the family who employ her.,0,0,Exit Elena,en +114577,C'mon Man,2012-06-26,101.0,,,tt1764664,,"Chronicles the rise, fall and attempted rise again of a stand up comedian plagued by his own demons (IMDb.com).",0,0,C'mon Man,en +102858,The Fourth Dimension,2012-06-27,108.0,,,tt2006791,,"Created under a “manifesto” whose directives would make Lars von Trier shudder, this three-part film might look on paper like an exercise in forced hipness. Fortunately, its directors – Harmony Korine (USA), Alexsei Fedorchenko (Russia) and Jan Kwiecinski (Poland) – prove innovative and just insane enough to make The Fourth Dimension an exhilarating experiment.",0,0,The Fourth Dimension,en +121936,Happiness Never Comes Alone,2012-06-27,110.0,,,tt1872880,,"Sacha is a real seducer, a man with no ties or emotional or professional. Charlotte is a modern and independent woman, but barely has time to care for their three children. While Sacha and Charlotte are, at first glance, two incompatible beings, when they meet soon discover that they are quite complementary and need each other.",15000000,0,Un Bonheur n'arrive jamais seul,fr +77930,Magic Mike,2012-06-28,110.0,http://magicmikemovie.warnerbros.com,328247,tt1915581,Work all day. Work it all night.,"Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.",7000000,167221571,Magic Mike,en +168616,Tumult,2012-06-29,13.0,,,tt2066145,,"A tribe of Norse warriors traipse across a barren land after battle. Bloodied and wounded, their chief is near death. He is about to hand over power to his son when an army of a completely different kind descends upon them.",0,0,Tumult,en +72105,Ted,2012-06-29,106.0,http://www.tedisreal.com/,266672,tt1637725,Ted is coming.,"John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.",50000000,549368315,Ted,en +104859,Mac & Devin Go to High School,2012-07-03,75.0,,,tt1870425,,"A comedy that follows two high school students -- one overachiever struggling to write his valedictorian speech, the other a senior now going on his 15th year of school.",0,0,Mac & Devin Go to High School,en +130739,A Coffee in Berlin,2012-07-03,88.0,http://www.ohboy.x-verleih.de,,tt1954701,,A fateful day pushes an aimless college dropout (Tom Schilling) to stop wasting his time and finally engage with life.,300000,2750275,Oh Boy,en +137683,The Kitchen,2012-08-13,79.0,http://www.thekitchenmovie.com/,,tt2011300,It's Jennifer's party and she'll cry if she wants to,"Jennifer's thirtieth birthday party is supposed to be a special day. But what starts out as a day of celebration quickly spirals into a most ill-fated day Jennifer wishes she could forget, in this ensemble comedy set entirely in a kitchen.",0,0,The Kitchen,en +107916,Carmina or Blow Up,2012-07-05,71.0,,418219,tt2177509,,"Carmina, 58, runs a shop selling Iberian products in Seville. After several robberies and no help from her insurance company, she comes up with a way to recover the money she needs to keep her family. While she waits in her kitchen for her plan to kick in, she thinks back over her life, her work and her miracles.",0,0,Carmina o revienta.,es +96987,The Do-Deca-Pentathlon,2012-07-06,76.0,,,tt0811137,,Two brothers compete in their own private 25-event Olympics.,0,0,The Do-Deca-Pentathlon,en +118408,The Life of Guskou Budori,2012-07-07,106.0,http://wwws.warnerbros.co.jp/budori/,,tt2391821,,"Remake of The Life of Guskou Budori (1994). + The fairy tale follows a young man named Guskou in the Tohoku forests of northeastern Japan in the 1920s. After an onslaught of droughts and natural disasters, Guskou is forced to leave his home and search for a better life elsewhere. Guskou joins a group of scientists at the Ihatov Volcano Department, which deals with the same natural disasters that drove Guskou from his home.",0,2,グスコーブドリの伝記,ja +241739,Hell and Mr Fudge,2012-07-07,95.0,http://hellandmrfudge.org/,,tt1966465,A little story about a big lie,"Hell and Mr. Fudge is an 2012 American drama film directed by Jeff Wood and written by Brian Phillip Stoddard. Based on a true story, the film stars Mackenzie Astin as Edward Fudge, an Alabama preacher who has been hired to determine the existence of hell.",800000,0,Hell and Mr Fudge,en +120399,The King Is Dead!,2012-07-12,102.0,,,tt2072263,Love Thy Neighbour,"A happy, unsuspecting couple, Max (Dan Wyllie) and Therese (Bojana Novakovic), buy a house in what appears to be a quiet, friendly neighbourhood. Settling in well, they make friends with a nice family on one side and soon meet a more interesting family on the other side. But interesting soon becomes loud and loud soon becomes intolerable. When the intolerable becomes violent and the police are powerless, Max and Therese attempt to take matters into their own hands.",0,0,The King Is Dead!,en +130233,Fly Away,2012-07-12,0.0,,,tt1907628,,,0,0,"Bis zum Horizont, dann links",de +162006,Brave Hearts: Umizaru,2012-07-12,116.0,,185627,tt2053339,,"Mika (Riisa Naka) is a flight attendant on board an airplane scheduled to land at Haneda Airport. On the way to the airport the airplane's engine starts to burn. In order to save the 346 people on board the airplane, sea marshall Daisuke Senzaki (Hideaki Ito) and his team are called into action ...",0,0,BRAVE HEARTS 海猿,ja +139930,How Do You Write a Joe Schermann Song,2012-07-13,104.0,http://joeschermannsong.com/,,tt1690140,Writing is easy. Living is hard.,"A musical dramedy about a guy named Joe and his girlfriend Evey. They dream of hitting it big on Broadway. When Joe lands an opportunity to write for an Off-Broadway musical, he is forced to cast either the love of his life or Summer, his newly discovered muse. The realities of show business prove to Joe that writing is easy, living is hard.",0,0,How Do You Write a Joe Schermann Song,en +149868,Hush,2012-07-13,0.0,,,tt2077772,,"No movie overview available, please add one at themoviedb.org",0,0,Ja saapuu oikea yö,fi +119893,An American Girl: McKenna Shoots for the Stars,2012-07-14,85.0,,25542,tt1969175,,A young girl (Jade Pettyjohn) struggles to maintain her school grades while competing as a gymnast.,0,0,An American Girl: McKenna Shoots for the Stars,en +137312,Red Flag,2012-07-15,85.0,http://www.redflagfilm.com/,,tt2147048,,"Writer/director/star Alex Karpovsky, a familiar face to indie filmgoers, reveals his sterling comic chops in this close-to-the-bone comedy. Teasing the line between fiction and reality, he plays an indie filmmaker named Alex Karpovsky who, dumped by a longtime girlfriend fed up with his refusal to marry, takes to the road with a reluctant old pal for a misbegotten mini tour screening his movie on college campuses and independent cinemas.",0,0,Red Flag,en +120605,The Punisher: Dirty Laundry,2012-07-16,10.0,,,tt2280378,What's the difference between justice and punishment?,"Frank Castle is staying in a bad neighborhood, where he encounters a gang that terrorizes its residents.",0,0,The Punisher: Dirty Laundry,en +120587,How to Meet Girls from a Distance,2012-07-19,85.0,http://www.howtomeetgirlsfromadistance.co.nz/,,tt2261542,"Get to know her, then meet her.","The peeping tom rom-com ‘How To Meet Girls From A Distance’ is a funny and heartwarming film that looks at how far we go for a crush. Premiering in Wellington as part of the New Zealand International Film Festival, How To Meet Girls From A Distance tells the story of Toby. Trying to win the heart of the beautiful Phoebe, he is determined to become the man of her dreams.",80000,0,How to Meet Girls from a Distance,en +128311,Under the Bed,2012-07-19,87.0,,,tt1934458,,"Two brothers team up to battle a creature under the bed, in what is being described as a ""suburban nightmare"" tale.",0,0,Under the Bed,en +118737,Interview with a Hitman,2012-07-20,95.0,,,tt2061712,,An elite hitman returns to erase his past only to find that somebody has messed with his future.,0,0,Interview with a Hitman,en +133521,Shameless,2012-07-20,80.0,,,tt1927068,,"In an incendiary story of love, desire, and betrayal between siblings, the rebellious young Tadek returns to sister Anka’s home in search of solace and affection. Bound together by a painful shared family history, brother and sister must find a way to break free in order to survive. This formidable debut fearlessly yet tenderly explores one of society’s last taboos.",0,0,Bez wstydu,pl +126442,Alter Egos,2012-07-20,80.0,http://www.alteregosmovie.com/,,tt1907614,,"At a time when superheroes have lost government funding and public support, a superhero meets a girl who can help him overcome his own emotional crisis.",0,0,Alter Egos,en +158150,How to Fall in Love,2012-07-21,0.0,,,tt2395247,,"An accountant, who never quite grew out of his awkward teenage years, finds himself with a dating coach - she happens to be his high school crush as well. Thanks to his coach, he gets a pretty woman he has his sights on for some time, but realizes they are incompatible. Meanwhile, his dating lessons with his teenage crush reawaken old feelings. Not realizing the feelings are mutual, he finds himself unable to act on them due to his fear of being rejected by the one he truly loves.",4000000,0,How to Fall in Love,en +119433,Todd Barry: Super Crazy,2012-07-24,60.0,,,tt2304870,,Super Crazy is the first feature length special from New York City's Todd Barry.,0,0,Todd Barry: Super Crazy,en +133704,"George Lopez: It's Not Me, It's You",2012-07-24,56.0,http://www.hbo.com/comedy/george-lopez-its-not-me-its-you/index.html#,,tt2270274,It's about to get hot in here.,Comedy superstar George Lopez performs live in front of a packed house at the Nokia Theatre in L.A. in this stand-up special.,0,0,"George Lopez: It's Not Me, It's You",en +124157,The Thieves,2012-07-25,135.0,,,tt2330866,All For The Money. One For The Revenge. Every Man For Himself.,"A gang of South Korean thieves team up with a Hong Kong crew to steal a diamond necklace from a heavily-guarded casino safe in Macau. As the cops close in, old betrayals — and misunderstandings — resurface.",0,83519699,도둑들,ko +103332,Ruby Sparks,2012-07-25,104.0,http://www.foxsearchlight.com/rubysparks/,,tt1839492,She's Out Of His Mind,"Calvin is a young novelist who achieved phenomenal success early in his career but is now struggling with his writing – as well as his romantic life. Finally, he makes a breakthrough and creates a character named Ruby who inspires him. When Calvin finds Ruby, in the flesh, sitting on his couch about a week later, he is completely flabbergasted that his words have turned into a living, breathing person.",0,9128263,Ruby Sparks,en +85446,Step Up Revolution,2012-07-26,99.0,,86092,tt1800741,One Step Can Change Your World,"Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.",33000000,140470746,Step Up Revolution,en +84348,V/H/S,2012-07-28,116.0,http://www.magnetreleasing.com/vhs/,207621,tt2105044,This collection is killer.,"When a group of misfits is hired by an unknown third party to burglarize a desolate house and acquire a rare VHS tape, they discover more found footage than they bargained for.",0,100345,V/H/S,en +131475,Cold Blooded,2012-07-31,87.0,https://www.facebook.com/coldbloodedmovie,,tt1821374,,A female police officer has to keep a prisoner from escaping a nearly abandoned hospital unit at the same time his violent partners come looking for him.,0,0,Cold Blooded,en +120478,The Haunting of Whaley House,2012-07-31,90.0,,,tt2396701,"Just because you don't believe in ghosts, doesn't mean they don't believe in you!","When a tour guide breaks into America's Most Haunted House, a bit of amateur ghost hunting with friends turns into more horror than they could have ever imagined.",115000,0,The Haunting of Whaley House,en +136368,Echo Planet,2012-08-01,81.0,,,tt2318440,,"Story of the adventures of three young men from two of the world's metropolis, New State Trinity Capital and Karen village in Northern Thailand. To help save the world from disaster recovery due to global warming.",0,0,เอคโค่ จิ๋วก้องโลก,th +82650,Diary of a Wimpy Kid: Dog Days,2012-08-02,94.0,,86110,tt2023453,School's Out for the summer,"School is out and Greg is ready for the days of summer, when all his plans go wrong. What on earth is he going to do all summer?",22000000,77112176,Diary of a Wimpy Kid: Dog Days,en +98066,The Babymakers,2012-08-03,98.0,,,tt0835418,She's fired up. He's firing blanks.,"After he flunks a fertility test, a man realizes that the only way he can get his wife pregnant is by robbing a sperm bank to take back the last of the deposits he made there years earlier.",0,0,The Babymakers,en +127369,The End of Time,2012-08-03,109.0,http://www.theendoftimemovie.com,,tt2176504,,Explores our perception of time.,0,0,The End of Time,en +132705,Morgana,2012-08-03,120.0,http://www.morganalapelicula.com/,,tt2318360,There are ghosts in this town.,A young girl is hunted by her nightmares,0,1612100,Morgana,es +84184,Celeste & Jesse Forever,2012-08-03,91.0,http://www.celesteandjesse.com,,tt1405365,A Loved Story,"Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other’s sentences. They are forever linked in their friends’ minds as the perfect couple – she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?",0,3094813,Celeste & Jesse Forever,en +124054,Shark Week,2012-08-04,90.0,http://theasylum.cc/product.php?id=208,,tt2292182,7 Days. 7 Sharks. 1 Survivor,A group of complete strangers find themselves isolated by a wealthy madman on his island compound. They are forced into a horrifying gauntlet where they must survive a barrage of ever deadlier species of shark.,0,0,Shark Week,en +128120,The Last Time I Saw Macao,2012-08-06,85.0,,,tt1843840,,"Part memoir, part city symphony, part noir-ish B-movie adventure, the new feature from critically acclaimed film-making duo João Pedro Rodrigues and João Rui Guerra da Mata (To Die Like a Man) is a sensual, shape-shifting ode to one of the world's most mythic, alluring and exoticized cities.",0,0,A Última Vez Que Vi Macau,pt +226001,Die Schöne und das Biest,2012-08-06,,,,tt2547100,,,0,0,Die Schöne und das Biest,de +82696,Hope Springs,2012-08-07,100.0,,,tt1535438,"Sometimes to keep the magic, you need to learn a few tricks.","After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.",30000000,114281051,Hope Springs,en +76163,The Expendables 2,2012-08-08,103.0,http://theexpendables2film.com/,126125,tt1764651,Back for War.,"Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.",100000000,312573423,The Expendables 2,en +134662,Ape,2012-08-08,86.0,http://www.apefilm.com,,tt2339367,,"Trevor Newandyke is a struggling comedian. Not only does he bomb on stage, but he bombs in everyday life. He’s fed up with all the jerks who push him around. All he wants is a break, and for someone to get him. Instead of taking a breath and getting himself together or taking his anger to the stage, he turns to the loud din of his headphones and the crackling glow of fire to ease his mind. He’s not only a lousy comic, but a pyromaniac, as well.",0,0,Ape,en +110146,The Sapphires,2012-08-08,103.0,,,tt1673697,Follow your heart. Discover your soul.,"It's 1968, and four young, talented Australian Aboriginal girls learn about love, friendship and war when they entertain the US troops in Vietnam as singing group The Sapphires.",0,0,The Sapphires,en +125835,Julayi,2012-08-09,160.0,,,tt2330927,,Julayi is the story of a fun loving guy who does not work and has no aim in life. He falls in love with a young girl and the story turns on how his life has to change to win her love.,0,0,జులాయి,te +124075,More Than Honey,2012-08-10,90.0,http://www.morethanhoney.ch,,tt2263058,"Einstein once said, If bees die out, mankind will follow 4 years later","With dazzling nature photography, Academy Award®–nominated director Markus Imhoof (The Boat is Full) takes a global examination of endangered honeybees — spanning California, Switzerland, China and Australia — more ambitious than any previous work on the topic.",0,0,More Than Honey,en +76686,The Green Wave,2012-08-10,80.0,,,tt1667130,,,0,0,The Green Wave,de +124501,In the Dark Half,2012-08-10,81.0,,,tt1764645,,A teenage girl comes to terms with the unexplained death of the boy next door.,482910,0,In the Dark Half,en +346106,Jeff Ross Roasts America,2012-08-11,60.0,,,tt2297894,Remember this is completely voluntary.,"Jeff Ross visits several cities across the country, roasting the towns and the residents in volunteer-only speed roasts. Roasting his way through cities including Seattle, Toronto, Las Vegas, Miami and Madison, Ross roasts a statue of Abe Lincoln in Washington D.C., gets roasted by John Rich in Nashville, and in Minneapolis, brings an old friend onstage to tell a very intimate story the way only Jeff Ross can.",0,0,Jeff Ross Roasts America,en +128842,Lethal Hostage,2012-08-16,96.0,,,tt2385138,,"Produced by Crazy Racer director Ning Hao, Lethal Hostage revolves around a drug dealer who falls in love with his hostage and decides to quit the business following one final deal.",0,0,Bian jing feng yun,en +132518,Yes or No 2,2012-08-16,0.0,,,tt2589640,,"A sequel of a popular Thai film with a lesbian theme, Yes or No 2 picks up from where the original left off. Two girls, Kim and Pie are in love, but after graduation they have to travel into two different directions for their internship; Kim is going to work in a farm in the northern province of Nan, while Pie is going South to work in a fishery center. Their love is being tested by the distance between them.",0,0,Yes or No 2: รักไม่รัก อย่ากั๊กเลย,th +118677,Why Stop Now?,2012-08-17,88.0,,,tt1853643,A Funny Thing Happened on the Way to Rehab.,"When a college piano prodigy tries to check his mother into rehab, he is taken hostage by her drug dealer and swept along on a wild adventure.",0,0,Why Stop Now?,en +122843,The Wedding Video,2012-08-17,94.0,,,tt2035670,Love. Honour. Disarray.,"When the rogueish but loveable Raif is asked to be his brother Tim's best man at his wedding, he decides the best present for the happy newlyweds would be to catch the entire thing on video. He returns home from abroad to find his brother is no longer the bohemian vagabond that he used to be, and is in fact marrying into a very wealthy family, and the wedding they're about to be part of will be the most outlandish and bizarre that Cheshire has ever seen... Thank the lord Raif has caught it all on tape!",0,0,The Wedding Video,en +88036,Sparkle,2012-08-17,116.0,,,tt1876451,Celebrate the legend.,"Musical prodigy, Sparkle (Jordin Sparks) struggles to become a star while overcoming issues that are tearing her family apart. From an affluent Detroit area and daughter to a single mother (Whitney Houston), she tries to balance a new romance with music manager Stix (Derek Luke) while dealing with the unexpected challenges her new life will bring as she and her two sisters (Carmen Ejogo and Tika Sumpter) strive to become a dynamic singing group during the Motown-era.",14000000,24637469,Sparkle,en +103732,GLOW: The Story of the Gorgeous Ladies of Wrestling,2012-08-21,76.0,http://www.glowthemovie.com/,,tt1559038,,"The year is 1986. Gorgeous Ladies of Wrestling (GLOW) is about to burst onto the scene as the first ever all-female wrestling show on television. By 1989, the GLOW girls were an international phenomenon, attracting over seven million viewers worldwide, touring the nation and making big bank for the show's producers. One year later, GLOW was gone. GLOW: THE STORY OF THE GORGEOUS LADIES OF WRESTLING chronicles the rise and fall of this hit television show through the stories of those who lived it. For some, the show was a brief foray into acting and a short-lived adventure. For others, their time in GLOW would impact and influence their lives for years to follow. For all of the women, working on GLOW was a unique and exciting experience that will bond them forever.",33157,0,GLOW: The Story of the Gorgeous Ladies of Wrestling,en +128841,The Thompsons,2012-08-21,84.0,http://www.accentfilm.com/product.cfm?id=MTAwMDI4MA%3D%3D&cat=Mw%3D%3D,264339,tt1831806,You never really know who your neighbors are...,"On the run with the law on their trail, America's most anguished vampire family heads to England to find an ancient vampire clan. What they find instead could tear their family, and their throats, apart forever.",3000000,0,The Thompsons,en +129530,Brutal,2012-08-21,91.0,https://www.facebook.com/pages/1000-Times-More-Brutal/632316846831568,,tt1744760,,"Four friends pay the ultimate price,when they seek revenge against a low-level Gangster (IMDB.com).",0,0,Brutal,en +84340,Sleepwalk with Me,2012-08-24,81.0,http://sleepwalkwithmike.com/,,tt2077851,A comedy for anyone who's ever had a dream. And then jumped out a window.,"A burgeoning stand-up comedian struggles with the stress of a stalled career, a stale relationship, and the wild spurts of severe sleepwalking he is desperate to ignore.",0,0,Sleepwalk with Me,en +119738,Thunderstruck,2012-08-24,94.0,,,tt2041488,,"Brian is a 16 year-old who can't play basketball, but he still wants to play like his hero, Kevin Durant. At an Oklahoma City Thunder game, Brian gets chosen to shoot a half court shot which he misses and hits the mascot in the process. Later on, he gets a chance to meet Durant and expresses his desire to play just like him. When Kevin gives Brian the ball, the two unknowingly switch talents.",0,0,Thunderstruck,en +118690,Keith Lemon: The Film,2012-08-24,85.0,,,tt2147365,,"With dreams of becoming a successful entrepreneur just like his beloved Richard Branson, Lemon bids farewell to his hometown of Leeds and heads for the capital. When he becomes an overnight billionaire, it seems everything is going his way, but it's not long before he discovers that life can be just as cruel as it is kind.",0,0,Keith Lemon: The Film,en +70667,Kon-Tiki,2012-08-24,118.0,http://kontikifilmen.no/,,tt1613750,,"The true story about legendary explorer Thor Heyerdahl and his epic crossing of the Pacific on a balsa wood raft in 1947, in an effort to prove it was possible for South Americans to settle in Polynesia in pre-Columbian times.",16600000,0,Kon-Tiki,en +111839,Hemingway & Gellhorn,2012-08-27,155.0,,,tt0423455,"We were good in war. And when there was no war, we made our own.",Writer Ernest Hemingway begins a romance with fellow scribe Martha Gellhorn.,19500000,0,Hemingway & Gellhorn,en +129966,David et Madame Hansen,2012-08-29,89.0,,,tt1921068,,,8806000,0,David et Madame Hansen,fr +189151,Akko's Secret,2012-08-31,120.0,,,tt1818377,,Young Atsuko Kagami comes into possession of a magical mirror that lets her transform into anything she wishes. Atsuko Kagami then attempts to save a company which is about to be sold by using her transformation abilities. She also falls in love as a 22-year-old college student.,0,0,ひみつのアッコちゃん,ja +110447,Dormant Beauty,2012-09-01,115.0,,,tt2184227,,"A mosaic of several intertwined stories questioning the meaning of life, love and hope, set during the last six days in the life of Eluana Englaro, a young woman who spent 17 years in a vegetative state.",5700000,0,Bella addormentata,en +121998,It Was the Son,2012-09-01,90.0,,,tt1891788,,"The Ciraulo family lives in the miserable district of Palermo called ""Zen"". When one of their children dies in a shootout between mafia gangsters they receive compensation and buy a luxury black Volvo. Things go wrong when Trancredi, another son, takes the car out and damages the car door.",2100000,0,È stato il figlio,it +312940,The Mole at the Sea,2012-09-01,5.0,,,tt2765306,,"Everyone's off to the seaside- by car, truck and train. Not wanting to miss out, the mole starts digging. When he gets there it's nice and quiet with just a few crabs and a sailing boat to keep him company. But then the hordes arrive. And no matter where he pops his head out of the sand, there's no room for a mole anymore. It's not until night time, when the moon shines on all the leftover rubbish, that things quiet down again.",0,0,Krot na more,ru +121791,The Attack,2012-09-01,102.0,,,tt0787442,,An Arab surgeon living in Tel Aviv discovers a dark secret about his wife in the aftermath of a suicide bombing.,0,0,L'Attentat,en +105965,Beverly Hills Chihuahua 3 - Viva La Fiesta!,2012-09-03,89.0,http://disney.go.com/beverly-hills-chihuahua/,87256,tt2224075,Family Always Matters,"When Papi & co move into a luxurious hotel, his youngest pup Rosa feels neglected and he must show her how special she is.",0,0,Beverly Hills Chihuahua 3 - Viva La Fiesta!,en +129115,Lions,2012-09-03,80.0,,,tt2186883,,"Deep in the forest a group of five friends wander around like a lion herd. Lost in their word games, they play and seduce each other while going back and forth into adulthood territory, in a desperate search to avoid their already written story.",0,0,Leones,es +126250,Love Is All You Need,2012-09-04,116.0,http://www.sonyclassics.com/loveisallyouneed/,,tt1854236,It started when everything was over.,"Romantic comedy from Academy Award winner Susanne Bier (Brothers, In a Better World), about two very different families brought together for a wedding in a beautiful old Italian villa.",5500000,10016934,Den Skaldede Frisør,da +98203,Captive,2012-09-05,120.0,,,tt1699745,Even choice is not an option.,A dozen foreigners are kidnapped by a terrorist group in the Philippines.,11180,24591,Captive,en +121173,Voracious,2012-09-05,104.0,,,tt2244376,"In life, you only need one true friend.","Bwakaw is a drama-comedy about growing old, and everyone's fear of growing old alone. Rene is a gay man who came out of the closet at age 70. Ailing in his twilight years, he thinks it is now too late for love, even companionship, and that all there is to look forward to is Death. He has made a will, bequeathing his few possessions to his even fewer friends. Everything is packed and labeled, ready for distribution. He has even paid for a coffin, taking advantage of a funeral home's Summer Sale. Nowadays the only companion Rene has is Bwakaw, a stray dog that hangs around his house and follows him wherever he goes. As Rene waits for the day of his death, he gets the surprise of his life when it is Bwakaw who suddenly falls ill and is diagnosed with cancer.",11178,34659,Bwakaw,en +118957,Bait,2012-09-05,93.0,,,tt1438173,Cleanup on aisle 7.,A freak tsunami traps shoppers at a coastal Australian supermarket inside the building ... along with a 12-foot great white shark.,30000000,0,Bait,en +122192,The Lookout,2012-09-05,89.0,,,tt1946298,,"A major police operation to take down a notorious gang of bank robbers goes horribly wrong when a rooftop sniper opens fire, killing several police officers and causing an explosive distraction in which the robbers make their getaway. Commissioner Mattei launches a large-scale manhunt for the sniper and his team, and is thrown into the seedy Parisian underworld of criminals and fallen souls.",0,0,Le Guetteur,fr +130055,Looking for Hortense,2012-09-05,100.0,,,tt1906347,,A wife pressures her husband to solicit work papers from his civil servant father.,0,0,Cherchez Hortense,fr +96724,Anna Karenina,2012-09-06,130.0,,,tt1781769,An epic story of love.,"Trapped in a loveless marriage, aristocrat Anna Karenina enters into a life-changing affair with the affluent Count Vronsky.",0,68929150,Anna Karenina,en +123025,"Batman: The Dark Knight Returns, Part 1",2012-09-06,76.0,,248534,tt2313197,Old heroes never die. They just get darker.,"Batman has not been seen for ten years. A new breed of criminal ravages Gotham City, forcing 55-year-old Bruce Wayne back into the cape and cowl. But, does he still have what it takes to fight crime in a new era?",3500000,0,"Batman: The Dark Knight Returns, Part 1",en +122928,The Letter,2012-09-06,92.0,,,tt1899324,Obsession can blur the lines of reality.,"A playwright who begins to mentally unravel before premiere night. She is plagued by dreams and visions of being watched, but cannot decide if she is at the center of a manipulative plot or simply losing her grip on reality.",10000000,0,The Letter,en +127913,The Deep,2012-09-07,95.0,,,tt1764275,,"Based on an astonishing true incident that took place on the frigid seas off Iceland in 1984, The Deep fashions a modern-day everyman myth about the sole survivor of a shipwreck, whose superhuman will to survive made him both an inexplicable scientific phenomenon and a genuine national hero.",3000000,0,Djúpið,en +131737,St George's Day,2012-09-07,109.0,,,tt1329232,"A match, a firm, a heist and the mother of all battles.","Infamous London gangster cousins, Micky Mannock and Ray Collishaw, are at the top of the food chain, when their world is turned upside down as they lose a shipment of the Russian Mafia's cocaine in rough seas. Set in London, Amsterdam and Berlin, the story races across Europe at breakneck speed as Micky and Ray attempt to stay one step ahead of the Police. Can they pull off a daring diamond heist in time to put things right and retire to a ""legitimate"" way of life.",0,0,St George's Day,en +131343,Frost,2012-09-07,80.0,,,tt2181953,Frýs í æðum blóð,"A young couple, physiologist Agla and filmmaker Gunnar, wake up at a glacier drilling camp only to find the camp mysteriously abandoned and their co-workers gone. When searching for the lost team they realize they’re up against an unknown deadly force.",1500000,0,Frost,en +86838,Seven Psychopaths,2012-09-07,110.0,http://www.sevenpsychopaths.com/,,tt1931533,They Won't Take Any Shih Tzu.,A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.,15000000,19422261,Seven Psychopaths,en +128190,The Pervert's Guide to Ideology,2012-09-07,136.0,,,tt2152198,,"Philosopher Slavoj Žižek and filmmaker Sophie Fiennes reunites for this follow-up to their hit The Pervert's Guide to Cinema, using their interpretation of moving pictures to present a compelling cinematic journey into the heart of ideology – the dreams that shape our collective beliefs and practices.",0,0,The Pervert's Guide to Ideology,en +124071,How to Make Money Selling Drugs,2012-09-07,96.0,http://tribecafilm.com/tribecafilm/filmguide/how-to-make-money-selling,,tt1276962,,"Ten easy steps show you how to make money from drugs, featuring a series of interviews with drug dealers, prison employees, and lobbyists arguing for tougher drug laws.",0,0,How to Make Money Selling Drugs,en +110392,A Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman,2012-09-08,85.0,,,tt1979172,"Still Dead, And Now in 3D","John Cleese, Michael Palin, Terry Jones and Terry Gilliam pay tribute to their late Monty Python colleague Graham Chapman in this hilarious, 3-D animated adaptation of Chapman's brazenly fictionalized life story. (TIFF)",0,0,A Liar's Autobiography: The Untrue Story of Monty Python's Graham Chapman,en +139463,The Scapegoat,2012-09-09,100.0,http://www.island-pictures.co.uk/extras/the-scapegoat/,,tt2084977,,"Set in 1952, as England prepares for the coronation, The Scapegoat tells the story of two very different men who have one thing in common - a face.",0,0,The Scapegoat,en +128237,Viola,2012-09-09,65.0,,,tt2379418,,"Several actresses get caught up in a web of romantic intrigue while performing in a production of Shakespeare's ""Twelfth Night.""",0,0,Viola,es +128154,Out in the Dark,2012-09-09,96.0,,,tt2318625,Love knows no borders.,Two young men — a Palestinian grad student and an Israeli lawyer — meet and fall in love amidst personal and political intrigue in this striking debut feature from Israeli director Michael Mayer.,0,0,Out in the Dark,he +128241,The Rise,2012-09-09,106.0,http://www.molifilms.com/film-slate/wasteland/,,tt1981140,He gave a year of his life. Now he's stealing it back.,A young man recently released from prison recruits his three best friends to rob the local drug kingpin who is responsible for his incarceration.,0,0,The Rise,en +61580,Baby Blues,2012-09-10,100.0,http://www.bejbiblues.pl/,,tt2370378,,"Natalia is a 17-year-old mom living with her mother and son, Antos. She wanted to have a baby because it was a “cool” thing to do, and because she feels she has someone to love; someone who can love her in return. Everything changes when Natalia’s mother decides to move out, giving Natalia a chance to lead a “normal life.”",1635794,0,Bejbi blues,fr +128215,Still Mine,2012-09-10,102.0,,,tt2073086,Still Devoted. Still Determined.,An elderly couple fight against local authorities in rural New Brunswick to build their final home.,0,0,Still Mine,en +128140,No Place on Earth,2012-09-10,81.0,http://www.noplaceonearthfilm.com,,tt2343266,An Incredible True Story of Strength and Survival,This extraordinary testament to survival from Emmy-winning producer/director Janet Tobias brings to light a story that remained untold for decades: that of thirty-eight Ukrainian Jews who survived World War II by living in caves for eighteen months. (TIFF),0,0,No Place on Earth,en +123359,Here Comes the Devil,2012-09-11,97.0,,,tt2107648,,"A married couple loses their children while on a family trip near some caves in Tijuana. The kids eventually reappear without explanation, but it becomes clear that they are not who they used to be, that something terrifying has changed them.",0,4534,Ahí va el diablo,es +124080,Shepard & Dark,2012-09-11,92.0,,,tt2221784,,Shepard & Dark is the remarkable story of a friendship in letters.,0,0,Shepard & Dark,en +128111,Juvenile Offender,2012-09-11,107.0,,,tt2292676,,"16-year-old juvenile offender Ji-gu reunites with his young mom who he thought was dead, and the two try to make up for their time lost.",0,0,범죄소년,ko +121822,The Time Being,2012-09-11,88.0,,,tt1916749,,"An artist meets a mysterious and wealthy benefactor and their relationship is not what it appears to be. In this suspenseful drama from first-time writer-director Nenad Cicin-Sain, a struggling young artist (Wes Bentley) accepts a series of bizarre commissions from an eccentric, dying millionaire (Frank Langella) who may be trying to either help further his career or destroy his life.",0,0,The Time Being,en +127521,6 Bullets,2012-09-11,115.0,,,tt1975249,"The greater the sinner, the greater the saint.",An ex-mercenary known for finding missing children is hired by a mixed martial arts fighter whose daughter has been kidnapped.,10000000,0,6 Bullets,en +123103,Aftershock,2012-09-12,89.0,,,tt1780762,The only thing more terrifying than Mother Nature is human nature.,Mayhem and death follow when an earthquake traps a group of tourists in a Chilean town.,2000000,58510,Aftershock,es +109391,The We and the I,2012-09-12,103.0,,,tt1618445,,The We and the I is the heartfelt and comical story of the final bus ride home for a group of young high school students and graduates.,0,0,The We and the I,en +129533,Barbie: The Princess & The Popstar,2012-09-13,86.0,http://www.barbie.com/princess-popstar/index.html,,tt2396690,True friends rock in perfect harmony!,"Tori is a blonde princess who is bored of living her royal life, and has dreams of becoming a popstar. Keira, on the other hand, is a brunette popstar who dreams of being a princess. When the two meet, they magically trade places, but after realising it is best to be themselves.",0,0,Barbie: The Princess & The Popstar,en +119569,Marvel One-Shot: Item 47,2012-09-13,12.0,,,tt2247732,"The Avengers Won The Battle, But a Few Items Were Left Behind.","Benny and Claire, a down on their luck couple find a discarded Chitauri gun, referred to as 'Item 47'...",0,0,Marvel One-Shot: Item 47,en +127372,Emperor,2012-09-14,105.0,http://www.emperor-themovie.com,,tt2103264,"After the war was won, the battle for peace began.","As the Japanese surrender at the end of WWII, Gen. Fellers is tasked with deciding if Emperor Hirohito will be hanged as a war criminal. Influencing his ruling is his quest to find Aya, an exchange student he met years earlier in the U.S.",0,3346265,Emperor,en +130925,Partysaurus Rex,2012-09-14,7.0,http://www.pixar.com/short_films/toy-story-toons/Partysaurus-Rex,,tt2340678,An Electro Sudsy Good Time!,"When Rex finds himself left behind in the bathroom, he puts his limbs to use by getting a bath going for a bunch of new toy friends.",0,0,Partysaurus Rex,en +60599,Arbitrage,2012-09-14,100.0,,,tt1764183,Power is the best alibi.,"A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.",12000000,35485056,Arbitrage,en +163870,Tenchi: The Samurai Astronomer,2012-09-15,141.0,http://www.tenchi-meisatsu.jp/,,tt1834303,,"A chronicle of the life of Yasui Santetsu, a 17th century master of go who turned his attention to astronomy and created a new calendar for Japan. Based on the life of Santetsu Yasui (December 27, 1639-November 1, 1715), appointed as the first official astronomer in the Edo Period and would go on to create the Jokyo calendar at the imperial request.",0,0,天地明察,ja +133183,The Child,2012-09-18,100.0,http://www.thechild-film.com/,,tt1921111,I'm Simon - I'm ten years old - I'm a serial killer...,"Simon Sachs, a terminally ill ten year old boy, claims to have been a serial killer in his previous life and apparently he can prove it. He leads a lawyer, Robert Stern to the locations of the bodies, who were killed long before Simon was born. Stern takes on the most compelling and mysterious case of his life.",5000000,0,The Child,de +125490,Antiviral,2012-09-19,110.0,http://www.lucasclinic.com/,,tt2099556,What If You Could Feel Like They Do ...,"After becoming infected with the virus that killed superstar Hannah Geist, Syd March must unravel the mystery surrounding her death to save his own life .",2400000,0,Antiviral,en +171698,The Citizen,2012-09-19,99.0,,,tt1942989,,"Yearning to leave behind his life of misfortune in the Middle East, Ibrahim Jarrah wins the U.S. Green Card Lottery for a chance to become an American citizen. Ibrahim lands in New York City the day before 9/11…and the events of the September terrorist attacks forever shape the struggles he faces on his journey to capture the American dream.",0,0,The Citizen,en +136582,Aliyah,2012-09-19,90.0,,,tt2339351,,"Paris 2011. Alex is 27. He's lives off dealing and pays the debts of his brother, Isaac, who after being his support has now become dead weight. When his cousin announces he's going to open a restaurant in Tel Aviv, Alex imagines he can join him and change his life. Set on emigrating, Alex has to find money, leave his beloved Paris, end his complicated love life, drop his destructive brother and find his way.",0,0,Alyah,fr +84892,The Perks of Being a Wallflower,2012-09-20,102.0,http://perks-of-being-a-wallflower.com/,,tt1659337,We are infinite.,"A coming-of-age story based on the best-selling novel by Stephen Chbosky, which follows 15-year-old freshman Charlie, an endearing and naive outsider who is taken under the wings of two seniors. A moving tale of love, loss, fear and hope - and the unforgettable friends that help us through life.",13000000,33400000,The Perks of Being a Wallflower,en +127864,Blancanieves,2012-09-21,104.0,http://www.blancanieves.es/,,tt1854513,,"A black and white silent movie, based on the Snow White fairy tale, that is set in a romantic version of 1920s Seville and centered on a female bullfighter.",0,279735,Blancanieves,en +130745,16 Acres,2012-09-23,95.0,,,tt2234419,,The dramatic inside story of the monumental collision of interests at Ground Zero in the decade after 9/11.,0,0,16 Acres,en +101998,Foxfire,2012-09-24,123.0,,,tt1772270,,"Set in the 1950s, a a group of young girls in upstate New York form their own gang.",0,0,Foxfire,en +140894,Tricked,2012-09-25,55.0,,,tt2171875,Lies always backfire.,"During his 50th birthday party thrown by his wife, Remco's life takes a turn for the worse. His business partners are scheming behind his back to sell him and his former mistress shows up pregnant.",0,0,Steekspel,nl +167424,The Dead and the Living,2012-09-25,0.0,,,tt2343536,,"The personal journey of young Sita is not only an expedition into her family's burdened past during World War 2. It is also a journey to the abyss of modern European society, a trip which takes her from Berlin to Romania via Vienna and Warsaw - about losing one's homeland and discovering oneself, about hope and responsibility.",0,0,Die Lebenden,de +133121,Resident Evil: Damnation,2012-09-25,100.0,http://www.sonypictures.com/homevideo/residentevildamnation/,133352,tt1753496,The worst evil has been unleashed.,"U.S. federal agent Leon S. Kennedy sneaks into the ""East Slavic Republic"" to verify rumors that Bio-Organic Weapons (BOWs) are being used in the country's civil war, which the U.S. and Russia are making preparations to jointly intervene in. Right after his infiltration, the U.S. government orders him to leave immediately. Determined to uncover the truth, Leon ignores the order and enters the battlefield to end the chain of tragedies caused by the BOWs.",0,0,Biohazard: Damnation,en +134394,Barricade,2012-09-25,82.0,,,tt1861279,Lock Your Doors.,A father's quiet retreat to the woods with his two children turns into a fight for survival.,0,0,Barricade,en +133783,Marie Kroyer,2012-09-26,102.0,,,tt1961192,,"Marie Krøyer is hailed as “the most beautiful woman in Europe” and leads a happy marriage life with her husband the great Danish painter P.S. Krøyer and an adorable daughter. However, not everything in her world is as perfect as it seems, and Marie’s life is crumbling as her dreams of a beloved wife, good mother and successful artist are unfulfilled. After hospitalizing her mentally ill husband Marie leaves for vacation, and in search for peace and comfort she finds herself falling in love with the young composer Hugo Alfven. Once again, internationally acclaimed Bille August exhibits the weaknesses of human beings in comparison to the ruthless nature. The grandeur scenery of deserted Scandinavian oceans speaks in volumes for the protagonists living in silence despite their lives being full of pains.",0,0,Marie Krøyer,da +118293,The Suicide Shop,2012-09-26,80.0,,,tt1655413,,A city where suicide is the only growing business. A shop where you can get everything to cater this urge. In the hand of one family for centuries.. till they get a happy baby. And he has to power to make all around him happy as well.,0,0,Le magasin des suicides,fr +136743,The Third Half,2012-09-27,113.0,,,tt2069100,,"Spitz is the German-Jewish coach of the football team Macedonia during World War II. Under his leadership, the team fights to become the champion of Bulgaria's National Football League",0,0,Трето полувреме,mk +121823,Tai Chi Zero,2012-09-27,100.0,,161373,tt1981080,See the extraordinary life of founder of the Yang style Tai Chi.,"In legendary Chen Village, everyone is a martial arts master, using their powerful Chen Style Tai Chi in all aspects of their lives. Lu Chan has arrived to train, but the villagers are forbidden to teach Chen Style to outsiders, and do their best to discourage him by challenging him to a series of fights. Everyone, from strong men to young children, defeats him using their Tai Chi moves. But when a man from the village's past returns with a frightening steampowered machine and plans to build a railroad through the village at any costs, the villagers realize they may have no choice but to put their faith in Lu Chan... who has a secret power of his own.",0,0,太极,zh +58244,Upside Down,2012-09-27,104.0,,,tt1374992,Two worlds. One future.,"In an alternate universe where twinned worlds have opposite gravities, a young man battles interplanetary prejudice and the laws of physics in his quest to reunite with the long-lost girl of his dreams in this visually stunning romantic adventure that poses the question: what if love was stronger than gravity?",60000000,8106475,Upside Down,en +157723,Nantucket Film Festival's Comedy Roundtable,2012-09-27,45.0,,,tt2460746,,"In June at the Nantucket Film Festival, Ben Stiller brought together three of his funniest famous friends to talk seriously about comedy. Chris Rock and Jim Carrey joined Stiller on a panel moderated by Saturday Night Live‘s Bill Hader for the 4th Annual All-Star Comedy Roundtable.",0,0,Nantucket Film Festival's Comedy Roundtable,en +131822,Kuningas Litmanen,2012-09-28,0.0,,,tt2316787,,,431274,0,Kuningas Litmanen,fi +133458,The Hypnotist,2012-09-28,121.0,,,tt1556243,,"After a young woman and her parents are murdered by a killer determined to wipe out the entire family, Detective Inspector Joona Linna works with a psychiatrist to hypnotize the son who narrowly escaped death in order to find the one surviving daughter before the murderer does.",0,0,Hypnotisören,sv +135718,OMG: Oh My God!,2012-09-28,125.0,,,tt2283748,A Divine Comedy!,A shopkeeper takes God to court when his shop is destroyed by an earthquake.,0,0,OMG: Oh My God!,hi +82631,Won't Back Down,2012-09-28,121.0,,,tt1870529,If you can't beat the system... change it,"Two determined mothers­, one a teacher, look to transform their children's failing inner city school. Facing a powerful and entrenched bureaucracy, they risk everything to make a difference in the education and future of their children",0,5310554,Won't Back Down,en +135317,Speed - In Search of Lost Time,2012-09-28,0.0,,,tt2147484,,"It’s a paradox. Never before in history we have worked more efficiently. Never before we have saved time with more sophisticated technologies. Anyway, nearly all of us are feeling an increasing pressure of time. It seems that the same technology that has been invented to make our life better and easier, is now enslaving us. Why?",0,0,Speed - Auf der Suche nach der verlorenen Zeit,de +84318,The Other Dream Team,2012-09-28,89.0,http://theotherdreamteam.com/,,tt1606829,,"The incredible story of the 1992 Lithuanian basketball team, whose athletes struggled under Soviet rule, became symbols of Lithuania's independence movement, and – with help from the Grateful Dead – triumphed at the Barcelona Olympics.",0,0,Kita svajonių komanda,en +136786,Liv & Ingmar,2012-09-28,89.0,,,tt2327430,,The 42 year long relationship between legendary actress Liv Ullmann and master filmmaker Ingmar Bergman.,0,0,Liv & Ingmar,en +187252,In the Name of the Son,2012-09-29,80.0,,,tt2460468,,The new movie of Vincent Lannoo.,0,0,Au nom du fils,en +203890,2 Hours,2012-09-29,26.0,,,tt2382004,They say it only takes 2 hours...,"A nameless survivor is ambushed and infected with the virus, a beautiful gift to the world.",0,0,2 Hours,en +137776,A Mother's Nightmare,2012-09-29,90.0,http://www.mylifetime.com/movies/a-mothers-nightmare,,tt2401147,Teen love is a killer.,A seductive teen becomes vindictive when her boyfriend tries to end the relationship.,0,0,A Mother's Nightmare,en +181656,Asura,2012-09-29,76.0,,,tt2328505,"Born A Beast, To Be Human","Abandoned in the barren wasteland of Kyoto, a savage, enraged orphan does whatever it takes to survive in the wild. When he crosses paths with civilization, he must learn to tame the beast within.",0,0,アシュラ,ja +84185,Chasing Ice,2012-10-01,74.0,http://chasingice.com/,,tt1579361,,"When National Geographic photographer James Balog asked, “How can one take a picture of climate change?” his attention was immediately drawn to ice. Soon he was asked to do a cover story on glaciers that became the most popular and well-read piece in the magazine during the last five years. But for Balog, that story marked the beginning of a much larger and longer-term project that would reach epic proportions.",0,1328467,Chasing Ice,en +420743,Gasht-e Ershad,2012-10-01,94.0,,,tt2389120,,Not Available,0,0,گشت ارشاد,fa +116979,Chained,2012-10-02,94.0,,,tt1989475,,"A serial killer kidnaps a young boy after murdering his mother, then raises him to be his accomplice. After years in captivity, the boy must choose between escaping or following in his captor's bloody footprints.",0,0,Chained,en +126315,After Lucia,2012-10-03,93.0,,,tt2368749,,"Alejandra and her dad Roberto have just moved to town. She is new at school, he has a new job. Starting over is sometimes complicated when you have left so much behind.",0,0,Después de Lucía,es +221240,City Slacker,2012-10-04,90.0,,,tt1739298,,Amanda is a corporate highflier who needs a slacker so she can have a baby and keep her career.,0,0,City Slacker,en +122857,Universal Soldier: Day of Reckoning,2012-10-04,114.0,,10713,tt1659343,Under their own command,"In a world without government, the surviving Unisols maintain order and choose the strongest of their ranks to rule, testing them in life-or-death combat.",11500000,1402307,Universal Soldier: Day of Reckoning,en +132759,Soulless,2012-10-04,100.0,,352020,tt1826660,A story about things that is really important in our life.,"It's a story of 29-year-old top-manager Max who is really sure he is absolutely successful. All his life is around earning and spending money. But one day he meet a girl who is from another, real, world. And his own world starts to crash down.",2800000,13218980,ДухLess,ru +180383,Deceptive Practice: The Mysteries and Mentors of Ricky Jay,2012-10-04,88.0,http://www.rickyjaymovie.com/,,tt2654360,,The life and career of renowned magician and sleight of hand artist Ricky Jay.,500000,0,Deceptive Practice: The Mysteries and Mentors of Ricky Jay,en +166262,All'ultima spiaggia,2012-10-04,,,,tt2461908,,,2700000,0,All'ultima spiaggia,it +136087,The Giant King,2012-10-04,96.0,,,tt2630526,We were born to be friends.,"A re-interpretation of Ramayana, the Thai animation film tells the story of a giant robot, Na Kiew, who's left wandering in a barren wasteland after a great war. Na Kiew meets Jao Phuek, a puny tin robot who's lost his memory and is now stuck with his new big friend. Together they set out across the desert populated by metal scavengers, to look for Ram, the creator of all robots.",0,0,ยักษ์,th +147538,It's Such a Beautiful Day,2012-10-05,62.0,http://www.bitterfilms.com,,tt2396224,,"Bill struggles to put together his shattered psyche, in this new feature film version of Don Hertzfeldt's animated short film trilogy.",0,0,It's Such a Beautiful Day,en +136386,The Knot,2012-10-05,92.0,,,tt1877797,One Wedding... And Another Wedding... But Absolutely No Funerals,A couple endures a series of mishaps right before their wedding day.,0,0,The Knot,en +84284,The House I Live In,2012-10-05,110.0,,,tt2125653,The war on drugs has never been about drugs.,"In the past 40 years, the War on Drugs has accounted for 45 million arrests, made America the world's largest jailer, and destroyed impoverished communities at home and abroad. Yet drugs are cheaper, purer, and more available today than ever. Where did we go wrong, and what can be done?",0,0,The House I Live In,en +154441,Till Luck Do Us Part,2012-10-05,104.0,,342577,tt2332518,,"Check out the hilarious story of luck and misadventures of Tino, a family man whose life is transformed after he wins the lottery. Dazzled by wealth, this boaster spends all his money on a life of luxury and ostentation. But after finding out that he is bankrupt, he faces comical situations: besides not telling his wife he is broke because she is pregnant and cannot get upset, Tino must accept help from his neighbor who is an extremely thrifty financial adviser and the only one capable of getting him out of the rut.",0,1672940,Até que a Sorte nos Separe,pt +136619,Pinocchio,2012-10-05,75.0,,,tt1693039,,"Geppetto the carpenter carves the object of his hidden desires out of a log: a puppet that will keep him company and will be like a son to him. He will call him Pinocchio. Imagine his surprise when he discovers that the puppet moves, as if by magic, and is gifted with a life on its own.",0,0,Pinocchio,en +127901,Eat Sleep Die,2012-10-05,104.0,,,tt2085002,,"A young Eastern European immigrant working in Sweden is faced with a painful choice when she's laid off from her factory in the name of ""efficiencies.""",0,0,Äta sova dö,sv +150208,Vares: Tango of Darkness,2012-10-05,91.0,,101646,tt1919184,,"The tango king Harry Koivikko was found dead six years ago in a sleazebag motel, with a knife is his back. The biggest manhunt in the county faded away without results. Jussi Vares gets a phone call from a down-and-out journalist; the informant tells Vares he knows the murderer. Then the journalist disappears without a trace and Vares has to face the biggest challenge of his career. To add insult to the injury, an old acquaintance Veikko Hopea gets his first prison furlough…",0,0,Vares – Pimeyden tango,fi +97683,Fat Kid Rules The World,2012-10-05,98.0,,,tt1995304,,A dropout comes to the aid of a chubby and suicidal high-school kid by recruiting him as the drummer for his upstart punk-rock band.,0,0,Fat Kid Rules The World,en +177112,Found in Time,2012-10-05,0.0,,,tt1745701,,"Chris is a psychic who lives his life out of order - experiencing past, present and future as a jigsaw puzzle. But when he commits a murder in the future, he has to change his past and present in order to prevent it from happening.",0,0,Found in Time,en +152042,Puella Magi Madoka Magica the Movie Part I: Beginnings,2012-10-05,131.0,,212166,tt2205948,,"Madoka Kaname, an ordinary middle-schooler, along with her best friend Sayaka Miki, are offered the chance to have any wish they want granted by the mysterious Kyubey, and become magical girls and fight witches. However, fellow magical girl Homura Akemi seems intent on stopping Madoka from becoming a magical girl at any cost. Puella Magi Madoka Magica the Movie Part I: Beginnings is a retelling of the first half of the TV anime series.",0,0,劇場版 魔法少女まどか☆マギカ [前編] 始まりの物語,ja +137182,The Broken Circle Breakdown,2012-10-09,112.0,http://www.thebrokencirclebreakdown.be/en,,tt2024519,,The loss of their young daughter threatens to destroy the love and faith of two married musicians.,0,5475058,The Broken Circle Breakdown,nl +137315,Every Blessed Day,2012-10-10,102.0,,,tt2290789,,"Guido and Antonia are a young couple with opposing characters and working schedules: he works a night job as a doorman in a hotel, and she works as an employee for a rental car service. This is the story of what happens to Guido and Antonia when they decide to have a child.",0,0,Tutti i santi giorni,it +150211,The Frozen,2012-10-10,0.0,,,tt2363439,,"After a harrowing snowmobile accident, a young couple is stranded in the woods and must survive while waiting for help to arrive. Events take a turn for the worse after the disappearance of Emma's boyfriend, leaving her on her own not only to battle the elements, but also to elude a mysterious hunter who is tracking her through the forest.",0,0,The Frozen,en +138450,True Skin,2012-10-10,6.0,http://n1on.com/,,tt2364953,,"A sci-fi short set in the not too distant future where augmentation is the way of life. For Kaye, still a natural, augmenting will help him keep pace in this now hyper-paced world. However, after acquiring an off-market prototype, Kaye quickly finds himself fighting not only for his own humanity, but something much larger.",0,0,True Skin,en +128767,God Loves Caviar,2012-10-11,99.0,,,tt2181959,,"The true-life, stranger-than-fiction tale of eighteenth-century Greek pirate turned merchant Ioannis Varvakis, who rose from humble beginnings to become the head of one of the largest mercantile empires in Europe.",0,0,Ο Θεός Αγαπάει το Χαβιάρι,el +183412,Dead Souls,2012-10-11,93.0,,,tt2188717,Don't go home,"On his 18th birthday, Johnny finds out that he's come into an inheritance - and his family were a lot stranger than he ever knew...",0,0,Dead Souls,en +87826,Here Comes the Boom,2012-10-11,105.0,,,tt1648179,No one will fight for his students like Mr. Voss.,A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.,0,73100172,Here Comes the Boom,en +139571,Refuge,2012-10-11,86.0,,,tt1844763,,"After their parents abandon the family, a young woman works to take care of her younger siblings.",0,0,Refuge,en +128216,Stories We Tell,2012-10-12,108.0,,,tt2366450,,Filmmaker Sarah Polley interviews members of her family as they look back on decades-old events.,0,0,Stories We Tell,en +139272,A Long Story,2012-10-12,0.0,,,tt2328819,,A long story that started and ended at the station.,0,0,Uzun Hikaye,tr +83588,Middle of Nowhere,2012-10-12,101.0,,,tt1211890,,'Middle of Nowhere' follows a woman named Ruby who lost her husband to incarceration and lost herself in the process.,0,0,Middle of Nowhere,en +115276,Pusher,2012-10-12,86.0,,,tt1921070,Never cross the line.,"In London, a drug dealer grows increasingly desperate over the course of a week after a botched deal lands him in the merciless clutches of a ruthless crime lord. The more desperate his behavior, the more isolated he becomes until there is nothing left standing between him and the bullet his debtors intend to fire his way.",0,0,Pusher,en +193603,Hayride,2012-10-13,93.0,,379897,tt1861343,Southern Fried Horror,"A college student returning home for Halloween is forced to face his childhood fears when an escaped killer takes refuge in his family's ""Haunted Hayride"".",60000,0,Hayride,en +138544,American Horror House,2012-10-13,85.0,,,tt2402539,Students Wanted...For Eternity,"On Halloween night, a sorority house is overrun with ghosts, while a vengeful housemother goes on a killing spree.",0,0,American Horror House,en +97051,Would You Rather,2012-10-14,93.0,,,tt1999995,Tell yourself it's just a game.,"Desperate to help her ailing brother, a young woman agrees to compete in a deadly game of ""Would You Rather,"" hosted by a sadistic aristocrat.",0,0,Would You Rather,en +121640,Zaytoun,2012-10-14,107.0,,,tt2131698,,"Beirut, 1982: a young Palestinian refugee and an Israeli fighter pilot form a tentative bond in their attempt to make their way across war-torn Lebanon back to their home.",8000000,42330,Zaytoun,en +82990,Paranormal Activity 4,2012-10-17,95.0,,41437,tt2109184,It's closer than you think,"It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.",5000000,142817992,Paranormal Activity 4,en +382523,Vaesen,2012-10-17,7.0,,,tt2145782,,"A prince sets off on a journey to save his dying father, driven by his fear of failing him.",0,0,Vaesen,en +94348,Alex Cross,2012-10-18,101.0,,142680,tt1712170,Don't Ever Cross Alex Cross,"After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.",45000000,30353232,Alex Cross,en +264356,Simon's Cat,2012-10-19,2.0,,,tt2057193,,Simon's cat follows the silent-movie-like adventures of a cat and his owner and lots of others.,0,0,Simon's Cat,en +138222,Best Man Down,2012-10-20,90.0,,,tt1885300,,"A newlywed couple cancels their honeymoon and returns to the snowy Midwest to make the funeral arrangements for their best man, who died unexpectedly after their ceremony.",1500000,1938,Best Man Down,en +137193,The Day of the Crows,2012-10-23,90.0,,,tt1891845,,"In a cabin of the deep of the forest, a child and his father leas a wild and hard life in utmost isolation. The child grows up fearing and admiring his father, with the ghosts haunting the forest as his only companions. Until the day he discovers the neighbouring village and meets a young girl there, Manon. At her side, he discovers that love exists. From then on he won't cease to search for the place where his father's love for him is hiding.",0,0,Le Jour des Corneilles,fr +115023,Measuring the World,2012-10-24,127.0,,,tt1571401,,"Germany in the early 19th century. ""Die Vermessung der Welt"" follows the two brilliant and eccentric scientists Alexander von Humboldt and Carl Friedrich Gauss on their life paths.",0,0,Die Vermessung der Welt,de +139582,Chakravyuh,2012-10-24,145.0,,,tt2292625,A War You cannot Escape,"On the request of his friend Kabir, SP Adil Sends him to the Naxal group as an informer. When Kabir finds the truth he becomes one of their gang leader.",0,0,Chakravyuh,hi +142320,Viva l'Italia,2012-10-25,100.0,,,tt2508478,,,0,0,Viva l'Italia,it +82684,Chasing Mavericks,2012-10-25,117.0,,,tt1629757,Legends Start Somewhere,Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.,0,0,Chasing Mavericks,en +82679,Fun Size,2012-10-25,87.0,,,tt1663143,Some people just can't handle Halloween.,"Wren is invited to a Halloween party by her crush, Aaron Riley, but she is also forced by her mother to take her oddball little brother Albert with her when she goes out trick-or-treating on Halloween. When she goes to the party instead, she loses him and must find him before her mother finds out.",14000000,11417362,Fun Size,en +291577,Miguel San Miguel,2012-11-15,80.0,,,tt2523934,Los Prisioneros before Los Prisioneros,"In the late 70s , during the military dictatorship , the film traces the beginnings of the musical group Los Prisioneros from the perspective of their drummer Miguel Tapia.",0,0,Miguel San Miguel,en +141803,Moshe Kasher: Live in Oakland,2012-10-26,60.0,http://www.moshekasher.com/,,tt2229301,Kasher in the Rye,"Oakland-bred comic and best-selling author Moshe Kasher comes back to the Bay Area in this standup special. Back on his home turf, Kasher finds comedy in these uproarious stories about the people he's met -- and how they see him. Recorded live at the New Parish nightclub in January 2012.",0,0,Moshe Kasher: Live in Oakland,en +121598,Midnight's Children,2012-10-26,148.0,,,tt1714866,,A Canadian-Brith film adaptation of Salman Rushdie's novel of the same name. The film tells the story of a pair of children born within moments of India gaining independence from England grow up in the country that is nothing like their parent's generation.,0,884100,Midnight's Children,en +127544,009 Re: Cyborg,2012-10-27,103.0,http://009.ph9.jp/,286936,tt2078523,,"009 Re:Cyborg follows a group of nine cyborgs, each of them created by a shadowy organization for use as weapons against humanity. The group turns on their creators to protect the population instead, using the powers given them to fight their creators.",0,0,009 RE:CYBORG,ja +132601,The Reef 2: High Tide,2012-10-30,80.0,http://www.imdb.com/title/tt1978567/,205029,tt1978567,High Tide: An All New Adventure,"Trained in the skills of sea power, Pi the fish can fight a shark, sink a squid or batter any random predator that ever threatens his friends and neighbors on the reef. Unfortunately, being the only hero in town can take its toll, especially when a group of sharks declares that the end of the reef is soon at hand.",0,0,The Reef 2: High Tide,en +128246,A Werewolf Boy,2012-10-31,122.0,,,tt2315152,,"Summoned by an unexpected phone call, an elderly woman visits the country cottage she lived in as a child. Memories of an orphan boy she knew 47 years ago come flooding back to her.",0,0,늑대소년,ko +165567,Static,2012-10-31,80.0,,,tt1881060,"If you hear them coming, you're already dead.",A couple facing marital problems after losing their child finds their life together further complicated by a mysterious visitor.,0,0,Static,en +135670,Amber Alert,2012-11-02,81.0,,,tt2093944,You are her last hope.,"When a group of friends decides to follow a car they've seen posted on an Amber Alert, things start to go very wrong.",0,0,Amber Alert,en +209032,The Floating Castle,2012-11-02,150.0,http://nobou-movie.jp/index.html,,tt1674778,,"In the year 1590, the mighty warlord Toyotomi Hideyoshi is close to fulfilling his ambition of unifying all of Japan under his banner when he comes across unexpected resistance in the form of a floating fortress known as Oshi Castle. Narita Nagachika, a frivolous hedonistic fellow and unlikely candidate for the position of rebel general, finds himself in charge of defending the castle. His odds? An army of 500 men to combat Toyotomi Hideyoshi's army of 20,000.",0,0,のぼうの城,ja +186079,K2: Siren of the Himalayas,2012-11-02,80.0,http://www.k2siren.com/,,tt2467442,Experience the adventure.,"Following a group of climbers attempting to climb K2 in 2009, on the 100-year anniversary of its landmark 1909 expedition. Experience the adventure, peril and serenity of a group's attempt to climb the most challenging peak on earth.",210,0,K2: Siren of the Himalayas,en +141635,All the Light in the Sky,2012-11-03,78.0,,,tt2442466,,"An insomniac actress is facing the waning days of her career, when her niece pays a visit to her Malibu house.",0,0,All the Light in the Sky,en +140554,Fraktus,2012-11-06,95.0,http://www.fraktus.de,,tt1971571,The last chapter of music history.,,0,0,Fraktus,de +97614,Deadfall,2012-11-08,95.0,http://www.magpictures.com/deadfall/,,tt1667310,Twisty thriller... a wild ride.,"A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.",12000000,66351,Deadfall,en +135652,Christmas in Compton,2012-11-09,93.0,,,tt1957867,,"Big Earl, the owner of a Christmas tree lot in Compton, California runs into some trouble when his son Derrick crosses the line to prove to his father that he is a success.",0,0,Christmas in Compton,en +94352,Cirque du Soleil: Worlds Away,2012-11-09,91.0,,391739,tt1792647,Experience a Journey Like Never Before,"An original story featuring performances by Cirque du Soleil. A young woman is entranced by an Aerialist. When they fall into the dreamlike world of Cirque du Soleil and are separated, they travel through the different tent worlds trying to find each other.",0,34153101,Cirque du Soleil: Worlds Away,en +91679,Starlet,2012-11-09,103.0,http://www.facebook.com/StarletFilm,,tt2035630,,An unlikely friendship forms between 21 year-old Jane and the elderly Sadie after Jane discovers a hidden stash of money inside an object at Sadie's yard sale.,0,0,Starlet,en +135708,Nature Calls,2012-11-09,79.0,,,tt1493157,Manhood. It's the only badge that matters.,"Polar-opposite brothers Randy and Kirk never saw eye-to-eye, but their rivalry is taken to a new level when Randy hijacks Kirk's son's sleepover, taking the boys on a Scout Trip to remember.",0,0,Nature Calls,en +341745,Aus Liebe zu Dir,2012-11-09,,,,tt2468606,,,0,0,Aus Liebe zu Dir,de +152989,The Stroller Strategy,2012-11-10,90.0,,,tt2520516,,"When Thomas Platz is suddenly made the guardian of a baby - then pretends to be its real father in order to win back Marie, the girlfriend who dumped him a year before. Stuck between staying a man-child forever, and proving he is ready to take the next steps of marriage and family with the love of his life, Thomas goes on an unexpectedly hilarious adventure getting the girl of his dreams to believe he has changed.",0,3462,La stratégie de la poussette,fr +75204,Imaginaerum,2012-11-10,80.0,http://www.imaginaerum.com/,,tt1959409,,"Imaginaerum tells the story of an elderly composer, Tom, who suffers from severe dementia. As he has had the disease for years and has regressed into childhood, he remembers practically nothing from his adult life. His music, friends, all his past including the memory of his daughter are a blur in his fragile mind. All he has left is the imagination of a ten year old boy. As he drifts away into coma, it seems impossible to get back what he has lost. Or is it?",4275000,0,Imaginaerum,en +151136,Pizzas,2012-11-11,63.0,,,tt2536316,,"Playfully avant-garde and exhibiting an intriguing sense of humor, PIZZAS offers a puzzle of widescreen imagery, brash pop moments, and road movie ambience. Pakalnina, Latvia’s best-known director, spun this cryptic but airy comedy/tragedy from a news item about two 18-year-old fast-food workers who robbed their employer’s safe and split. (Gene Siskel Film Center)",0,0,Picas,lv +211411,Musicwood,2012-11-13,80.0,http://musicwoodthefilm.com/,,tt2078686,"For hundreds of years guitars have been made the same way, but now this could all change.","The most famous guitar-makers in the world band together on a journey into one of the most primeval forests on earth. Their struggle is with a Native American logging company, their hope: to save the acoustic guitar.",0,0,Musicwood,en +121793,Capital,2012-11-14,114.0,,,tt1951166,,The head of a giant European investment bank desperately clings to power when an American hedge fund company tries to buy them out.,0,0,Le capital,fr +182349,Love Sick Love,2012-11-15,83.0,,,tt1992147,,"Dori and Norman, two stunning and sophisticated serial daters, are destined to endure a terrifying journey through perfect couple-hood: Valentine's, Easter, Halloween, Christmas and New Year. Except with psychopath Dori, it all needs to take place over one weekend deep in the isolated countryside far from help. ""Love Sick Love"" is a complex and suspenseful journey into the darker side of love.",0,0,Love Sick Love,en +156220,The Staircase II: The Last Chance,2012-11-15,130.0,,,tt2257602,,"Explosive developments - implicating both the forensics laboratory of the police department of North Carolina, and Duane Deaver, its chief - shed new light on the case of murder suspect Michael Peterson.",0,0,The Staircase II: The Last Chance,en +199647,The Color of Time,2012-11-16,72.0,,,tt2133333,"One man, one life. A thousand memories",A poetic road trip through Pulitzer prize-winning CK Williams' life over the course of 40 years.,0,0,The Color of Time,en +144680,Pretty Sweet,2012-11-16,79.0,http://prettysweetvideo.com/,,tt1670995,,"This is an epic tale of two gangs, like The Jets and The Sharks. But Girl and Chocolate aren't even gangs. Some of them act tough and some of them act like babies. But they are even more unlike the Jets and The Sharks in that they aren't even battling each other for territory. They really don't know what the hell they are doing. They don't have a feud, most of them really like each other so that is another thing they don't have in common with the Jets and the Sharks. What they do have in common with The Jets and The Sharks is they love to dance. And when I say dance, I mean SKATE. And when I say SKATE, I mean really good. From the directors that brought you Mouse, Yeah Right and Fully Flared, another chapter in this tale with no plot, no ending but beautiful inner battles acted out on a little board with wheels.",0,0,Pretty Sweet,en +144331,Dream Team 1935,2012-11-16,120.0,http://www.sapnukomanda.lv,,tt2516280,Their game made them a team. Their spirit made them Champions.,"A story about the Latvian basketball team, which won the first-ever European Championships in 1935 and its enthusiastic head coach Valdemars Baumanis.",2620000,0,Sapņu komanda 1935,lv +135799,The Samurai That Night,2012-11-17,120.0,,,tt2282973,,"A widower sends daily reminders to the petty criminal who killed his wife in a traffic accident that on the anniversary of her death, he will kill him.",0,0,その夜の侍,ja +144942,Top Gear: The Worst Car In the History of the World,2012-11-19,73.0,,,tt2540072,,"Jeremy Clarkson and James May travel to the North of England to name and shame some of the worst cars in history, from manufacturers who ""should have known better"".",0,0,Top Gear: The Worst Car In the History of the World,en +87827,Life of Pi,2012-11-20,127.0,http://www.lifeofpimovie.com/,,tt0454876,Believe The Unbelievable,"The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.",120000000,609016565,Life of Pi,en +81188,Rise of the Guardians,2012-11-21,97.0,http://www.riseoftheguardians.com/,,tt1446192,You better believe.,"When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.",145000000,306941670,Rise of the Guardians,en +103689,Post Tenebras Lux,2012-11-22,115.0,,,tt1754367,After darkness light,"Juan and his urban family live in the Mexican countryside, where they enjoy and suffer a world apart. And nobody knows if these two worlds are complementary or if they strive to eliminate one another.",0,0,Post Tenebras Lux,es +157803,Unbreakable: The Western States 100,2012-11-22,105.0,http://www.ws100film.com/,,tt3106946,,"In 2010, four of the greatest undefeated mountain runners on earth toed the starting line at the Western States 100-mile endurance run, the oldest and most prestigious 100-mile foot race in the world. 'Unbreakable: The Western States 100' follows the four lead men on this amazing journey. Hal Koerner, two time defending Western States champion, and running store entrepreneur from Ashland, Oregon. Geoff Roes, undefeated at the 100-mile distance, an organic chef from Juneau, Alaska. Anton Krupicka, undefeated in every ultramarathon he has ever started, a graduate student living in Boulder, Colorado. Kilian Jornet, the young mountain runner and two time Ultra-trail du Mont-Blanc champion, from Spain.",0,0,Unbreakable: The Western States 100,en +146712,A Fairly Odd Christmas,2012-11-23,65.0,,,tt2299368,,After Timmy Turner causes Santa amnesia he must become the new Santa in order to save Christmas.,0,0,A Fairly Odd Christmas,en +151509,Trapped in the Closet: Chapters 23-33,2012-11-23,45.0,,,tt2526856,,"The long awaited sequel to R. Kelly's ""Trapped in the closet"" series.",750000,0,Trapped in the Closet: Chapters 23-33,en +145593,Kyle Kinane: Whiskey Icarus,2012-11-24,64.0,,,tt2538610,,"Kinane's first one-hour comedy special ""Whiskey Icarus,"" during which the gruff-voiced funny man dishes on unsliced pizza, stereotypes, chivalry, single white dudes at the movie theater, suburbia and some weirdo who brought a bag of pancakes onto a plane",0,0,Kyle Kinane: Whiskey Icarus,en +162282,A Perfect Family,2012-11-28,120.0,,,tt2427968,,,0,0,Una famiglia perfetta,it +201365,Belle du Seigneur,2012-11-29,124.0,,,tt0810772,,English-language adaptation of Albert Cohen's epic Swiss tale of a tortured love affair between a high-ranking Jewish official and the protestant wife of one of his employees.,0,0,Belle du Seigneur,en +77875,Playing for Keeps,2012-11-29,106.0,,,tt1540128,,A former sports star who's fallen on hard times starts coaching his son's soccer team in an attempt to get his life together.,35000000,0,Playing for Keeps,en +148347,The Jungle,2012-11-29,80.0,,,tt2261719,,A comedy about funny adventures of the married couple on the remote island.,0,0,Dzhungli,ru +139455,Silent Night,2012-11-30,99.0,,256296,tt2347497,He Knows Who's Been Naughty,The police force of a remote Midwestern town search for a killer Santa Claus who is picking off citizens on Christmas Eve.,0,14567,Silent Night,en +121674,Great Expectations,2012-11-30,128.0,,,tt1836808,Prepare for a life of great expectations.,"Miss Havisham, a wealthy spinster who wears an old wedding dress and lives in the dilapidated Satis House, asks Pip's ""Uncle Pumblechook"" (who is actually Joe's uncle) to find a boy to play with her adopted daughter Estella. Pip begins to visit Miss Havisham and Estella, with whom he falls in love,then Pip a humble orphan suddenly becomes a gentleman with the help of an unknown benefactor.",0,258656,Great Expectations,en +161545,Tutto tutto niente niente,2012-11-30,0.0,,188197,tt2456720,,,5579750,8927600,Tutto tutto niente niente,it +216374,I Will Follow You Into the Dark,2012-12-20,107.0,,,tt2179087,How far would you go to find the one you love?,A woman reeling from the death of her parents becomes attached to an alluring man whose sudden disappearance sends her and her friends into a haunted high-rise to find him.,5000000,0,I Will Follow You Into the Dark,en +152100,I 2 soliti idioti,2012-12-20,98.0,,259308,tt2557964,,,0,0,I 2 soliti idioti,it +147132,A Bride for Christmas,2012-12-01,90.0,,,tt2415112,,"Bride-to-be Jessie Patterson calls off her third engagement - during the ceremony! She swears off serious relationships, until she meets and is pursued by Aiden MacTiernan. Aiden, on the other hand, has bet his friends he is marriage material, and can find a fiancé in the four weeks leading up to Christmas. When Jessie and Aiden begin to fall for each other, Jessie must decide if she is ready for serious love, and Aiden must decide if his bet is worth risking his relationship with Jessie.",0,0,A Bride for Christmas,en +198365,Apartment 4E,2012-12-01,87.0,http://www.smallofherback.com/,,tt1845283,Be careful who you trust.,"Three months ago, Piper met Mollie online. And Mollie changed everything. Now a knock at the door. John Sharp. Mollie's brother. He was sent to talk Piper out of the thing's she's threatening. But neither may be who they claim to be.",0,0,Apartment 4E,en +126323,Mine Games,2012-12-01,88.0,,,tt1928337,"The Deeper You Go, The Darker It Gets","A group of young friends make an incomprehensible discovery in an abandoned mine, but the more they try to change the future, the more they seal their fate.",1500000,0,Mine Games,en +157787,Nom de code Rose,2012-12-04,0.0,,,tt2492190,,,0,0,Nom de code Rose,fr +195022,Kill Me Now,2012-12-05,84.0,http://www.cracked.com/quick-fixes/trailer-swaims-feature-length-horror-movie/,,tt1815776,,"When nerds Dennis and Noah crash a party thrown by the local jocks and hot girls in a remote cabin, they must combat a brainy serial murderer known as the Driller Killer, who uses power tools to rid the world of idiots, one clueless teen at a time.",90,0,Kill Me Now,en +153397,Restless,2012-12-07,180.0,,,tt2241676,,A young woman finds out that her mother worked as a spy for the British Secret Service during World War II and has been on the run ever since.,0,0,Restless,en +145547,Mad Ship,2012-12-07,90.0,,,tt2094883,,"A Scandinavian immigrant, driven to madness by ruined dreams and the tragic death of his wife, embarks on a quixotic mission to build a homemade ship and sail out of the prairie dust bowl at the height of the Great Depression.",0,0,Mad Ship,en +147767,Khiladi 786,2012-12-07,139.0,,,tt2166214,,The 8th installment in the Khiladi series.,0,126,Khiladi 786,en +138372,Bad Kids Go To Hell,2012-12-07,91.0,,436483,tt1865573,Daddy's money can't save them now.,"On a stormy Saturday afternoon, six students from Crestview Academy begin to meet horrible fates as they serve out their detentions. Is a fellow student to blame, or perhaps Crestview's alleged ghosts are behind the terrible acts?",0,0,Bad Kids Go To Hell,en +150657,Merry In-Laws,2012-12-08,83.0,,,tt2369105,,"When down-to-earth Alex says yes to her boyfriend's marriage proposal, she has no idea that her future-in-laws are none other than Mr. and Mrs. Claus.",0,0,Merry In-Laws,fr +146313,The Cottage,2012-12-10,88.0,,,tt1977941,,"A romance novelist (David Arquette) moves into a ""cottage"" behind the home of a composer and his family. He seems sweet, but what do they really know about him?",0,0,The Cottage,en +126319,Ernest & Celestine,2012-12-12,78.0,,,tt1816518,"Bonnie and Clyde, Sid and Nancy...","Celestine is a little mouse trying to avoid a dental career; Ernest is a big bear craving an artistic outlet. When Celestine meets Ernest, they overcome their natural enmity by forging a life of crime together.",12516654,8109160,Ernest et Célestine,fr +150065,Yelling To The Sky,2012-12-14,94.0,,,tt1504508,,"As her family falls apart, seventeen year old Sweetness O'Hara is left to fend for herself in a neighborhood where her survival is uncertain.",0,0,Yelling To The Sky,en +84333,Save the Date,2012-12-14,98.0,,,tt1965065,Sometimes you have to break a heart to be true to your own.,"After breaking up with her boyfriend, a bookstore manager resists a seemingly perfect guy's attempts to woo her.",0,0,Save the Date,en +137614,The Forest,2012-12-14,98.0,http://www.oscaraibar.com/El-bosc-El-bosque,,tt2364649,,"The life of a spanish couple gets complicated when the Civil War begins and a strange green light appears in the woods, opening the door to the world of the Bream Lords.",0,0,El bosc,en +176983,One Piece Film Z,2012-12-15,108.0,http://www.onepiece-film.com/,23456,tt2375379,,"Zephyr, now known as Z, rides the seas with only one goal: Destroy all pirates and their dreams at becoming King of Pirates. When Luffy and his crew encounter him at sea, not only are they utterly defeated by the man with an arm made of Seastone, Nami, Robin, and Chopper are turned 10 years younger due to Z's minion Ain. Luffy is so determined to win against him that he does not even notice Z's master plan that could sacrifice thousands of lives.",0,0,One Piece Film Z,ja +169782,The Making of a Lady,2012-12-19,95.0,,,tt2293276,,"1901:- Poor but intelligent Emily Fox Seton accepts a marriage proposal from the older Lord James Walderhurst,a widower pushed into providing an heir by his haughty aunt Maria,",0,0,The Making of a Lady,ru +172705,Habibie & Ainun,2012-12-19,125.0,,,tt2589132,,"A biopic of Indonesia’s third president, Bacharuddin Jusuf Habibie, illuminates his lifelong devotion to his wife. The movie, Habibie & Ainun, opens with a rickshaw ride on a rainy night in Bandung, West Java, in the 1960s. Habibie (played by Reza Rahadian) asks Ainun (Bunga Citra Lestari) to marry him and to join him on his trip to Germany.",0,0,Habibie & Ainun,id +82687,The Guilt Trip,2012-12-19,95.0,,,tt1694020,Get ready for one mother of a road trip,An inventor and his mom hit the road together so he can sell his latest invention.,40000000,41863726,The Guilt Trip,en +135832,Moon Man,2012-12-19,95.0,,,tt2397521,,"One night, a shooting star appears, whizzing through outer space towards the moon. Moon Man seizes his chance, grabs the speeding comet by the tail and hitches a ride to earth. This 'attack from outer space' sets the alarm bells ringing in the Presidential Headquarters. While escaping the President and his soldiers, Moon Man sets off on a long journey and marvels at the many wonders the earth has to offer – and he realizes how much children love and need him.",12000,0,Der Mondmann,de +154972,Het Bombardement,2012-12-19,100.0,,,tt2363219,,"A thrilling love story between the young boxer Vincent and the German Eva, who soon has to marry with the middle-aged Dirk to save her family. While the war starts in the Netherlands their impossible love inflames. May 14, 1940, the day that the centre of Rotterdam is bombed and the young lovers lose sight of each other.",0,0,Het Bombardement,nl +97630,Zero Dark Thirty,2012-12-19,157.0,http://www.zerodarkthirty-movie.com/site/,,tt1790885,The Greatest Manhunt in History,"A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.",40000000,132820716,Zero Dark Thirty,en +89492,This Is 40,2012-12-20,134.0,http://www.thisis40movie.com/,,tt1758830,The sort-of sequel to 'Knocked Up',"Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.",35000000,88058786,This Is 40,en +173294,Papadopoulos & Sons,2012-12-20,109.0,http://www.papadopoulosandsons.com,,tt2006810,"Success is the joy you feel! Only when you lose everything, do you find it all.","Following his ruin in the latest banking crisis, a self-made millionaire reluctantly re-unites with his estranged freewheeling brother to re-open the abandoned fish and chip shop they shared in their youth.",0,0,Papadopoulos & Sons,el +149883,Eugene Mirman: An Evening of Comedy in a Fake Underground Laboratory,2012-12-21,60.0,,,tt2514162,,"When it comes to satirical observational comedy, Eugene Mirman is a wizard at finding humor in what ordinary people find mundane. Tune in to find out why you should get your daughter a neck tattoo and how to make ten Saudi Arabian men give you $40 each. And if you know what a theremin is, you'll be excited to know that there's one in this special.",0,0,Eugene Mirman: An Evening of Comedy in a Fake Underground Laboratory,en +260500,Legion of the Black,2012-12-21,46.0,,,tt2591738,"We are legion, for we are many.","""Legion of the Black"" tells the visual story of Black Veil Brides upcoming album ""Wretched and Divine"".The film follows a group of rebels known as ""The Wild Ones"" as they defend their hearts, minds and bodies against F.E.A.R",150000,0,Legion of the Black,en +128270,Not Fade Away,2012-12-21,112.0,,,tt1230215,there is no past no future either. just the Now--,"Set in suburban New Jersey in the 1960s, a group of friends form a rock band and try to make it big.",20000000,610792,Not Fade Away,en +151870,Minecraft: The Story of Mojang,2012-12-23,104.0,http://theminecraftmovie.com/,,tt2087878,,"Follow Markus ""Notch"" Persson and his co-workers during the first years on the independent game studio ""Mojang"" after releasing the successful debut game, ""Minecraft"".",0,0,Minecraft: The Story of Mojang,en +88042,Parental Guidance,2012-12-25,104.0,,,tt1047540,Here come the grandparents. There go the rules.,Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.,25000000,119772232,Parental Guidance,en +103620,Maniac,2012-12-26,89.0,,,tt2103217,I Warned You Not to Go Out Tonight.,"As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.",6000000,31081,Maniac,en +151826,The Man Who Laughs,2012-12-26,93.0,,,tt1946289,,"During a winter storm, Ursus offers shelter to two orphans, Gwynplaine and Déa; some years later, they are still living together. Gwynplaine has become a famous star, but his success threatens his relationships with Déa and Ursus.",0,0,L'Homme qui rit,fr +164013,"Dzhentlmeny, Udachi!",2012-12-26,96.0,,,tt2592464,,"The remake of famous Russian comedy ""Dzhentlmeny udachi"" (1971).",0,0,"Джентльмены, удачи!",ru +268712,Allerleirauh,2012-12-26,0.0,,,tt2562290,,,0,0,Allerleirauh,de +201223,Blue Exorcist: The Movie,2012-12-28,88.0,http://www.ao-ex.com/,,tt3028018,,"Rin Okumura is raised by a famous exorcist named Father Fujimoto. After an argument between the two, Rin discovers he is the son of the devil. Rin decides to fight his fate by joining the True Cross Academy to become an exorcist and defeat demons. However, when he draws his father's sword a dark power is released.",0,0,青の祓魔師 -劇場版-,ja +219781,Hilton!,2013-01-01,71.0,,,tt2261629,,"A roughly beautiful Hilton! gives the viewer a glimpse of life in a modern society, a life that young persons lead.",0,0,Hilton!,en +227266,Desolate,2013-01-01,77.0,,,tt2737814,,"The film follows a young man who hits rock bottom after suspecting his best friend may be responsible for his failed relationship. But when a mysterious incident rocks the downtown core, they are forced to put differences aside in order to survive the night.",0,0,Desolate,en +276550,Susie's Hope,2013-01-01,105.0,,,tt2400441,,"Family - In this family tale based on a true story, a woman who suffered a violent pit bull attack comes to terms with the harrowing experience by adopting a puppy that was severely beaten, burned and left to die. - Emmanuelle Vaugier, Burgess Jenkins, Andrea Powell",0,0,Susie's Hope,en +206292,The Desert,2013-01-01,98.0,,,tt2665470,,The failed story of a love triangle in a post-apocalyptic world.,0,0,El desierto,es +157129,Table No. 21,2013-01-03,0.0,,,tt2229842,,"A couple live a mediocre life and are thrilled to have won an exotic vacation to Fiji & their excitement increases when they get a chance to play ""Tell all truth"" game for a mind boggling prize money. The game begins and the couple discovers that the game isn't really a game, but is a game of survival.",0,0,Table No. 21,en +413430,Miesten välisiä keskusteluja,2013-01-04,,,,tt2192844,,,0,3,Miesten välisiä keskusteluja,fi +199887,Over/Under,2013-01-04,87.0,,,tt1771636,,,0,0,Over/Under,en +159667,Molly Maxwell,2013-01-06,91.0,,,tt2388705,Love doesn't act its age.,"At Phoenix Progressive School, students take notes lying on parlor couches and are encouraged to explore their gifts through electives like break-dancing and graphic-novel writing. In the midst of all this liberal pedagogy and budding talent, Molly Maxwell feels unexceptional, until she embarks on a photography independent study under the tutelage of her attractive English teacher, Ben. Their relationship quickly evolves beyond the darkroom, introducing Molly to the throes of a first love, and putting Ben’s job in jeopardy.",0,0,Molly Maxwell,en +153781,Lasting,2013-01-08,89.0,http://www.nieulotne.pl/en,,tt2551428,,"Lasting is an emotional love story about Michał and Karina, a pair of Polish students who meet and fall in love with each other while working summer jobs in Spain. An unexpected nightmare brutally breaks into their carefree time in the heavenly landscape and throws their lives into chaos.",0,0,Nieulotne,pl +110381,Today,2013-01-09,86.0,,,tt2178935,,Satché is about to die. He decides to make his last day on this world the day of his life.,0,0,Aujourd'hui,fr +84283,I Am Not a Hipster,2013-01-09,90.0,http://iamnotahipster.com/,,tt2091318,,"Things are not looking good for Brook, a young, talented singer/songwriter who has become the clichéd tortured artist. Slow to come to terms with the death of his mother, Brook is self-absorbed, aggressive, and the major obstruction to his own career success. His isolation is lifted when his three sisters and estranged father come to spread his mother’s ashes. Brook’s loving sisters have a magical effect on his anger and apathy, suggesting there may be hope for the misanthropic musician after all.",0,0,I Am Not a Hipster,en +139521,Matru Ki Bijlee Ka Mandola,2013-01-11,150.0,,,tt2106537,Dekho Magar Pyaar Se,"Harry is an industrialist who loves his daughter Bijlee, and the bond they share with Harry's man friday, Matru. Bijlee's plan to wed the son of a politician, however, brings twists and turns in the lives of Matru, Bijlee and Mandola.",838403,0,Matru Ki Bijlee Ka Mandola,hi +215646,The Special Need,2013-01-23,84.0,,,tt2387601,,"28 year old Enea is looking for love - physical love that is. But as the autist he is, living in Italy, this is anything but easy. So he and his best friends Carlo and Alex set out on a journey through Europe and eventually find a lot more than they are looking for.",0,0,The Special Need,en +76640,The Last Stand,2013-01-12,107.0,http://www.thelaststandfilm.com,,tt1549920,Not in his town. Not on his watch.,"Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts",30000000,0,The Last Stand,en +159211,The Haunting of Helena,2013-01-14,87.0,,,tt2378191,She's coming for her.,"After a divorce, Sophia moves to the south of Italy with her daughter, Helena. Their new home, an apartment within an austere building of the fascist age, is a chance for them to start a new life. But inside an old storage room hides a mysterious closet and a buried secret. After the loss of Helena’s first baby tooth, a chilling obsession begins and an apparition haunts her sleep...",0,0,The Haunting of Helena,en +137654,Open Heart,2013-01-15,54.0,,,tt2348322,,"Eight Rwandan children leave their families behind to embark on a life-or-death journey seeking high-risk heart surgery in Sudan. Their hearts ravaged by a treatable disease from childhood strep throat, they have only months left to live. Open Heart reveals the intertwined endeavors of Dr. Emmanuel, Rwanda's lone government cardiologist fighting to save the lives of his young patients, and Dr. Gino, the Salam Center's head surgeon, who is fighting to save his hospital, Africa's only link to life-saving free cardiac surgery for the millions who need it.",0,0,Open Heart,en +141145,Kid,2013-01-16,90.0,,,tt2365879,,"A seven-year-old child, his brother Billy and their depressed mother live on a farm. Then something painful happens to the family and the kids are left to live by themselves.",0,0,Kid,nl +153795,Straight A's,2013-01-16,88.0,,,tt2024506,,"Pressured by his deceased mother's ghost to return home to the family he abandoned, a former addict grabs a bag of pills and a sack of marijuana and hits the road to Shreveport.",7000000,0,Straight A's,en +211233,The Hijack That Went South,2013-01-17,93.0,,,tt2088871,,Aarno Lamminparras hijacked an airplane with a gun in 1978. A true story.,1800000,532269,Kaappari,fi +208756,Pune 52,2013-01-18,121.0,,,tt2196564,Find the hero within you,A Neo-Noir Marathi film on a detective who's looking for an opportunity to bring a change in his monotonous life...,0,0,Pune 52,en +142061,"Batman: The Dark Knight Returns, Part 2",2013-01-18,78.0,,248534,tt2166834,Justice Returns... Vengeance Returns... Redemption Comes to Gotham.,Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.,3500000,0,"Batman: The Dark Knight Returns, Part 2",en +157384,Mother of George,2013-01-18,106.0,,,tt2094890,,A story about a woman willing to do anything and risk everything for her marriage.,0,0,Mother of George,en +158232,Greenwich Village: Music That Defined a Generation,2013-01-18,121.0,http://www.greenwichmusicdoc.com/,,tt1941541,,"Explores the music scene in Greenwich Village, New York in the 60's and early 70's. The film highlights some of the finest singer/songwriters of the day.",0,0,Greenwich Village: Music That Defined a Generation,en +83890,LUV,2013-01-18,94.0,http://luvthefilm.com/,,tt1907707,Follow your hero. Or become your own man.,"Over the course of one day, a shy 13-year-old forms a bond with his troubled uncle.",0,134634,LUV,en +157117,Sound City,2013-01-18,106.0,http://www.soundcitymovie.com,,tt2306745,That board. That room. That is Sound City.,The history of Sound City and their huge recording device; exploring how digital change has allowed 'people that have no place' in music to become stars. It follows former Nirvana drummer and Foo Fighter David Grohl as he attempts to resurrect the studio back to former glories.,0,0,Sound City,en +367412,Whiplash,2013-01-18,18.0,,,tt2654430,,"A ferocious, bullying music teacher teaches a dedicated student. This is the 18 min short film that the feature film was based on.",0,0,Whiplash,en +153854,It Felt Like Love,2013-01-19,82.0,http://www.itfeltlikelove.com,,tt2328922,,"Fourteen-year-old Lila is experiencing an ennui-filled Brooklyn summer. She awkwardly wears a Kabuki-esque mask of sunscreen at the beach and plays third wheel to Chiara, her more experienced friend, and Chiara’s boyfriend, Patrick. Determined to have a love interest of her own, a bravado-filled Lila pursues Sammy, a tough but handsome older boy....",0,0,It Felt Like Love,en +156700,The Kings of Summer,2013-01-19,93.0,,,tt2179116,Why live when you can rule.,"Joe Toy, on the verge of adolescence, finds himself increasingly frustrated by his single father, Frank's attempts to manage his life. Declaring his freedom once and for all, he escapes to a clearing in the woods with his best friend, Patrick, and a strange kid named Biaggio. He announces that they are going to build a house there, free from responsibility and parents. Once their makeshift abode is finished, the three young men find themselves masters of their own destiny, alone in the woods.",0,0,The Kings of Summer,en +155556,Blood Brother,2013-01-20,92.0,http://www.bloodbrotherfilm.com/,,tt2265179,We all need love.,"Rocky Braat went to India as a disillusioned American tourist. When he met a group of children with HIV/AIDS, he decided to stay. He never could have imagined the obstacles he would face. Or the love he would find.",0,0,Blood Brother,en +159166,Which Way Is The Front Line From Here? The Life and Time of Tim Hetherington,2013-01-20,79.0,,,tt2480784,,A portrait of photographer Tim Hetherington's work in war zones around the world.,0,0,Which Way Is The Front Line From Here? The Life and Time of Tim Hetherington,en +159638,Ghost Team One,2013-01-20,107.0,http://ghostteamone.com/,,tt2272336,Arouse the Dead,Two roommates deathly afraid of ghosts both fall in love with a girl who believes their home is haunted.,0,9195,Ghost Team One,en +159005,Gideon's Army,2013-01-21,96.0,http://gideonsarmythefilm.com/,,tt2179053,Everyone deserves the best defense. They fight to provide it.,"Follows three young, committed Public Defenders who are dedicated to working for the people society would rather forget. Long hours, low pay and staggering caseloads are so common that even the most committed often give up.",0,0,Gideon's Army,en +157420,Houston,2013-01-22,107.0,,,tt2181961,,"A German corporate headhunter travels to Houston, Texas, in pursuit of a renowned oil company CEO, only to have his life fall apart.",0,0,Houston,en +158942,Silent Ones,2013-01-22,97.0,,,tt2182121,,"A young Hungarian woman (played by Hungarian actress Orsi Tóth) wakes up inside a crashed car in the middle of nowhere, not knowing where her brother Isti is. Upset and alone, she leaves aboard a cargo ship to keep a promise she made to him. Once at sea, she withdraws into a dream world and loses grip on her life completely.",0,0,A csendesek,en +161073,Mariage à Mendoza,2013-01-23,0.0,,,tt1721478,,,0,0,Mariage à Mendoza,fr +257444,The Boy,2015-08-14,110.0,,,tt2443822,Evil Always Begins Somewhere.,An intimate portrait of a 9 year old sociopath as he discovers his taste for killing.,0,0,The Boy,en +195544,Crazy Me,2013-01-24,94.0,,,tt2473532,,"Andrea is having a bad luck with girls. Maybe because he's only man in his big family which include mother, three sisters, grandma, nurse and a dog which is of course female also.",0,0,Pazze di me,it +159514,Matterhorn,2013-01-24,87.0,,,tt2650718,,"Fred lives on his own. His wife is dead, his son has left. He leans on the church, busses, meat-and-two-veg. Then Leo appears. Leo is a tramp. Fred lets Leo move in with him. An absurdist feature debut with a laugh and a tear in stuffy Netherlands.",0,0,Matterhorn,en +122081,Spring Breakers,2013-01-24,94.0,http://www.springbreakersmovie.com/,,tt2101441,A little sun can bring out your dark side.,"After four college girls rob a restaurant to fund their spring break in Florida, they get entangled with a weird dude with his own criminal agenda.",5000000,31724284,Spring Breakers,en +201124,Vuonna 85,2013-01-24,0.0,,,tt2088974,,"The movie is about the Lokomo laborer, and group of friends that dreams come true and a thirst for fast-paced life that take decades.",1600000,0,Vuonna 85,fi +120802,Noobz,2013-01-25,90.0,,,tt1884369,Regular Guys. Virtual Heroes.,"Four friends hit the road to LA to compete in the Cyberbowl Video Game Championship, but will they be able to compete with the worst hangovers of their lives?",340000,0,Noobz,en +157919,Knife Fight,2013-01-25,99.0,,,tt1931466,"When it comes to getting elected, there's no such thing as going too far.",A political strategist juggling three clients questions whether or not to take the high road as the ugly side of his work begins to haunt him.,7000000,0,Knife Fight,en +170759,Kokowaah 2,2013-01-27,120.0,,215452,tt2194599,,"Who said a patchwork family is without problems? Two years after the turbulence of Kokowääh, everyday life turns to everyday chaos…",0,0,Kokowääh 2,de +191820,The Devil's Violinist,2013-01-30,122.0,,,tt2401715,,"The life story of Italian violinist and composer, Niccolò Paganini, who rose to fame as a virtuoso in the early 19th Century.",0,11294,The Devil's Violinist,en +167330,Mord in Eberswalde,2013-01-30,90.0,,,tt2374308,,,0,0,Mord in Eberswalde,de +199374,My Sister's Kids in Africa,2013-01-30,85.0,,151149,tt2493386,,This time our already familiar family moves to Africa in order to save endangered wildlife.,0,0,Min søsters børn i Afrika,de +176079,The Wait,2013-01-31,96.0,,,tt1675759,,An enigmatic phone call from a psychic catapults a family into a state of suspended belief while waiting for their recently deceased mother to be resurrected.,0,0,The Wait,en +70074,Bullet to the Head,2013-01-31,92.0,,,tt1308729,Revenge Never Gets Old.,"After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.",55000000,9489829,Bullet to the Head,en +121824,Stand Up Guys,2013-01-31,95.0,http://www.standupguysfilm.com,,tt1389096,They don't make 'em like they used to.,"After serving 28 years in prison for accidentally killing the son of a crime boss, newly paroled gangster Val reunites with his former partners in crime, Doc and Hirsch, for a night on the town. As the three men revisit old haunts, reflect on their glory days and try to make up for lost time, one wrestles with a terrible quandary: Doc has orders to kill Val, and time is running out for him to figure out a way out of his dilemma.",0,0,Stand Up Guys,en +82654,Warm Bodies,2013-01-31,97.0,,,tt1588173,Cold body. Warm heart.,"After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.",35000000,116980662,Warm Bodies,en +147815,Kadal,2013-02-01,164.0,,,tt2344672,,A wrongdoer is caught red-handed and he is not going to forgive the man who exposed him.,7500000,0,கடல்,ta +191112,Premachi Goshta,2013-02-01,0.0,http://en.wikipedia.org/wiki/Premachi_Goshta,,tt2878406,,"Premachi Goshta (Marathi: प्रेमाची गोष्ट , meaning: Story of Love) is a 2013 Marathi language film directed by Satish Rajwade. The story is all about LOVE and discovering that correct person in life who can become the life partner. It's a story of believing on the person in front, its like a leap of faith.",0,0,Premachi Goshta,en +248833,Everything I Can See From Here,2013-02-01,7.0,,,tt2819436,,A game of football turns deadly as an uninvited player joins in.,0,0,Everything I Can See From Here,en +164366,Frits and Franky,2013-02-04,0.0,,,tt2248805,,Frits & Franky find a lot of money in a car that crashes into the water. They don't know what to do with it.,0,0,Frits & Franky,nl +161482,The Coalition,2013-02-04,95.0,,,tt2040537,,"A group of women form an unlikely alliance to get their revenge on a pro athlete and his three friends who played them. The guys are used to getting what they want when they want it, but that's all about to change.",0,0,The Coalition,en +219466,Dancing on the Edge,2013-02-04,363.0,http://www.bbc.co.uk/programmes/p013qqwt,,tt2163315,,A black jazz band becomes entangled in the aristocratic world of 1930s London as they seek fame and fortune.,0,0,Dancing on the Edge,en +169069,Studio illegale,2013-02-06,0.0,,,tt2573226,,,0,0,Studio illegale,it +157293,ABCD (Any Body Can Dance),2013-02-07,160.0,,337957,tt2321163,India's First 3D Dance movie,"When a capable dancer is provoked by the evil design of his employer, naturally he will be out to prove his mettle.",0,222000,एबीसीडी,hi +169343,The Plague,2013-02-07,85.0,http://www.laplaga.cat/,,tt2645142,,"Raül, a farmer that tries to grow organic food, hires Iurie, a Moldavian wrestling fighter, to help him in the fields. Slowly, their personal histories intertwine with those of three solitary women.",0,0,La plaga,en +150117,I Give It a Year,2013-02-08,97.0,,,tt2244901,,"After a quick courtship, two lovers hastily decide to tie the knot. As their first year of marriage unfolds, temptation and incompatibility put their relationship in jeopardy.",0,28234657,I Give It a Year,en +226167,Be My Valentine,2013-02-08,0.0,,,tt2288568,,"Firefighter lieutenant Dan Farrell (William Baldwin) is a widower and single dad who isn’t looking for love. But a few weeks before Valentine’s Day, his team responds to a fire at a local florist and he can’t help but notice the pretty owner, Kate (Natalie Brown). When he struggles to buy flower arrangements for the stations annual Valentine’s Day Firefighter’s Ball, Dan enlists Kate’s expertise and soon the two are spending lots of time getting to know each other. Inspired by his son Tyler’s (Christian Martyn) budding romance with another firefighter’s daughter, Dan starts to open up his own heart and even asks Kate to be his date to the ball. Just when he couldn’t be happier, Dan is faced with an expected emergency call: Kate’s ex, Gavin (James Thomas), has returned to win her back with a marriage proposal. Will Dan suit up to fight for love, or let the flame with Kate burn out?",0,0,Be My Valentine,en +173168,We Always Lie to Strangers,2013-04-04,108.0,http://www.wealwayslietostrangers.com/,,tt2475492,,"A story of family, community, music and tradition set against the backdrop of Branson, Missouri, the remote Ozark Mountain town that is one of the biggest tourist destinations in America.",0,0,We Always Lie to Strangers,en +222715,Someone's Gaze,2013-02-08,7.0,http://shinkaimakoto.jp/archives/504,,tt3300814,,"The story is set ""slightly in the future"" and revolves around Aya ""Aachan"" Okamura, a woman who has been working for two years and has begun living on her own for a job opportunity. With Aachan's mother working overseas as a doctor, Aachan's father is now living alone with the family's longtime pet cat Mii-san. One night, Aachan returns from a long day at work, and as she rests on her bed, she reminiscences about the times the family had together. She remembers the sadness she felt when her mom went overseas, and the solace she felt when her father brought home Mii-san to give her comfort. Then, she receives a phone call…",0,0,だれかのまなざし,ja +164331,Spiders,2013-02-08,89.0,,,tt1659216,"8 legs, 3 Dimensions, 1 Disaster","After a Soviet space station crashes into a New York City subway tunnel, a species of venomous spiders is discovered, and soon they mutate to gigantic proportions and wreak havoc on the city. Starring Patrick Muldoon, Christa Campbell, directed by Tibor Takacs. Originally called ""Spiders 3D"" but now simply ""Spiders""",7000000,0,Spiders,en +188357,Richard The Lionheart,2013-02-09,100.0,,376527,tt2396200,How the legend of lionheart began,"King Henry II tests the loyalty and honor of his son Richard sending him to a secret castle known as the Knight's Martyr. There, the Prince must fight against adversaries representing the virtues of a knight.",0,0,Richard The Lionheart,en +166886,"Mother, I Love You",2013-02-11,82.0,,,tt2434988,,"Raimonds, a 12 year old boy, falls into a world of petty crime while trying to stay out of trouble with his mother.",0,0,"Mammu, es tevi mīlu",lv +200481,The Blue Umbrella,2013-02-12,7.0,http://www.pixar.com/short_films/Theatrical-Shorts/The-Blue-Umbrella,,tt2616880,,"It is just another evening commute until the rain starts to fall, and the city comes alive to the sound of dripping rain pipes, whistling awnings and gurgling gutters.",0,0,The Blue Umbrella,en +180644,Anina,2013-02-12,78.0,http://www.anina.com.uy/,,tt1947964,There has never been a palindrome girl at the school before.,"Anina Yatay Salas is a ten-year-old whose name spells trouble: those three palindromes in a row are an ongoing source of teasing at school. When a playground fight results in mysterious punishment, Anina will learn to put her problems in perspective and empathize with others in this sweet little daydream of a tale.",0,0,Anina,es +109491,Beautiful Creatures,2013-02-13,124.0,,,tt1559547,Dark secrets will come to light.,"Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.",60000000,60052138,Beautiful Creatures,en +113148,Prince Avalanche,2013-02-13,94.0,http://www.magpictures.com/princeavalanche/,,tt2195548,,Two highway road workers spend the summer of 1988 away from their city lives. The isolated landscape becomes a place of misadventure as the men find themselves at odds with each other and the women they left behind.,725000,0,Prince Avalanche,en +167221,Long Live Freedom,2013-02-13,94.0,,,tt2523600,,"The elections are approaching and the largest opposition party in the country do not look good. Its leader, Enrico Oliveri can not stand the pressure and disappears. Fearing a scandal, the eminence grise of the party had brought into play the twin brother of the politician. Even if looks like two drops of water with his brother Giovanni may have a different personality. His ideas are innovative and direct approach to get the party in the polls ...",5000000,48125,Viva la libertà,it +168164,The Expedition to the End of the World,2013-02-13,90.0,http://expeditionthemovie.dk/,,tt2530936,,"A grand and adventurous journey of discovery to the last white areas of the world map. But no matter how far we go and how hard we try to find answers, we ultimately meet ourselves and our own transience.",0,0,Ekspeditionen til verdens ende,en +170279,Ushi Must Marry,2013-02-13,96.0,,,tt2404469,,"Ushi Hirosaki has to marry according to Japanese tradition before her 30th birthday. Because time is running out, her family decides she has to marry a huge sumo wrestler. A rather unfortunate combination, so Ushi wants to look for a nicer candidate herself. She travels halfway around the world to find her dream husband. Along the way she does valiant efforts, for example to learn table manners and to lose her Japanese accent.",0,0,Ushi Must Marry,nl +68179,Escape from Planet Earth,2013-02-14,89.0,http://www.escapeearthmovie.com/,,tt0765446,Earth's greatest secrets are about to break out!,Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.,40000000,74597643,Escape from Planet Earth,en +142391,95ers: Time Runners,2013-02-14,96.0,http://www.95ers.com,,tt1824904,Time does not exist. Only choice.,"Time is unraveling, paradoxes are everywhere, and strangers with terrifying technologies are on the hunt. A thrilling, original, ultra indie full-length sci-fi movie that is the story of Sally Biggs, an FBI agent who has the power to rewind time. Her scientist husband has disappeared mysteriously, and the closer she gets to finding him, the more dangerous her life becomes. To save the future and her loved ones, Sally must enter a battlefield she never knew existed. Fortunately, she's a 95er. Surrounded by bizarre timespace paradoxes and hunted by terrifying forces from the future, Sally must discover the earth-shattering truth behind it all before her very being fades out of reality.",750,0,95ers: Time Runners,en +161187,Saving Lincoln,2013-02-15,101.0,http://www.savinglincoln.com,,tt2034098,The true story of an epic friendship,"The almost entirely true story of Abraham Lincoln and his self-appointed bodyguard, U.S. Marshal Ward Hill Lamon - a banjo-playing Southerner who foiled repeated attempts on the President's life, and kept him functioning during the darkest hours of the Civil War.",700000,0,Saving Lincoln,en +262713,Godheten,2013-02-15,,,,tt2738218,,,0,0,Godheten,sv +172008,Complicit,2013-02-16,99.0,,,tt2224119,,An MI5 officer's attempts to foil a possible terrorist plot are undermined by bureaucracy and moral dilemmas. Will he make the world a safer place or be complicit in making a tense situation even worse?,0,0,Complicit,en +165864,Hansel and Gretel Get Baked,2013-02-19,86.0,https://www.facebook.com/HanselGretelGetBaked,,tt2081194,,"An intense new marijuana strain named “Black Forest” is taking Los Angeles by storm, and Gretel’s stoner boyfriend can’t get enough. But when the old woman growing the popular drug (Lara Flynn Boyle) turns out to be an evil witch, cooking and eating her wasted patrons for their youth, Gretel and her brother Hansel must save him from a gruesome death — or face the last high of their lives.",4500000,0,Hansel and Gretel Get Baked,en +192023,The Invoking,2013-03-16,82.0,,,tt2435514,Bury the past...or it will bury you.,"After inheriting a house from the family she never knew, Samantha Harris (Trin Miller) and three friends head to rural Sader Ridge to inspect the property. Soon after arriving, Sam begins to experience horrific visions of savage brutality and unspeakable evil. Plagued by the sinister forces closing in around her, Sam descends into a waking nightmare when the demons from her past refuse to stay buried any longer.",0,0,The Invoking,en +145135,Dark Skies,2013-02-21,97.0,,,tt2387433,Once you have been chosen. You belong to them.,"From the producers of Paranormal Activity, Insidious, and Sinister comes Dark Skies: a supernatural thriller that follows a young family living in the suburbs. As husband and wife Daniel and Lacey Barret witness an escalating series of disturbing events involving their family, their safe and peaceful home quickly unravels. When it becomes clear that the Barret family is being targeted by an unimaginably terrifying and deadly force, Daniel and Lacey take matters in their own hands to solve the mystery of what is after their family.",3500000,25174316,Dark Skies,en +318348,Reverse Runner,2013-02-21,86.0,,,tt2071567,Life Isn't Always Straight Forward,A teenager pursues his childhood dream of becoming the best at reverse running.,0,0,Reverse Runner,en +166666,3096 Days,2013-02-21,111.0,http://www.3096tage.de/,,tt1667355,The story of Natasha Kampusch,A young Austrian girl is kidnapped and held in captivity for eight years. Based on the real-life case of Natascha Kampusch.,0,0,3096 Tage,de +207402,The Hardy Bucks Movie,2013-02-21,89.0,,,tt2645164,The Irish Hangover,"Eddie Durkan, the self-proclaimed leader of the 'Bucks is dreading spending another summer bored out of his skull. Ireland has qualified for the Euros in Poland, but with no money and apathetic mates, the task falls to Eddie to get them out of Castletown and onto the road in search of football and the craic.",0,0,The Hardy Bucks Movie,en +60281,To the Wonder,2013-02-22,112.0,,,tt1595656,,"After falling in love in Paris, Marina and Neil come to Oklahoma, where problems arise. Their church's Spanish-born pastor struggles with his faith, while Neil encounters a woman from his childhood.",0,587615,To the Wonder,en +179812,Camp,2013-02-22,111.0,,,tt2371287,Hope is found in unexpected places.,12-year-old Eli finds himself at summer CAMP,0,0,Camp,en +233423,The Legend of Sarila,2013-02-22,80.0,http://www.thelegendofsarila.com/,,tt2296935,Discover the wonder. Follow the magic. Find the promised land.,Three young Inuits set off in search of a promised land to save their clan from starvation.,0,15000000,The Legend of Sarila,en +347264,Ralphie May: Imperfectly Yours,2013-02-23,69.0,,,tt3216296,,Standup in Las Vegas.,0,0,Ralphie May: Imperfectly Yours,en +414632,The First Annual 'On Cinema' Oscar Special,2013-02-24,110.0,,,tt3758094,,The First Annual 'On Cinema' Oscar Special,0,0,The First Annual 'On Cinema' Oscar Special,en +168676,Company of Heroes,2013-02-25,100.0,,,tt2555426,,"American soldiers lost behind enemy lines during the WWII make a horrific discovery: Hitler has a super bomb in development. Against all odds, they set out to find the scientist in charge of the program who is looking to defect.",0,0,Company of Heroes,en +208305,Cyanide,2013-02-26,103.0,,,tt2325611,,Thirteen years old Achille is waiting for his father to return from prison. Will everything go as planned and could the family survive?,0,0,Cyanure,fr +171357,"Jonathan Rosenbaum, Present",2013-02-27,13.0,,,tt2722780,,A portrait of the influential American film critic.,0,0,"Jonathan Rosenbaum, Present",en +170689,Möbius,2013-02-27,103.0,,,tt2106550,,"An FSB officer fall in love with his agent, an American woman who works as a trader in a Russian bank.",0,0,Möbius,fr +171337,Siberian Education,2013-02-27,110.0,,,tt1697064,,"The story of a gang of children growing up in a community of banished criminals, in a forgotten corner of the former Soviet Union. This community rejects the world outside. The only law it obeys… is its own. Against this backdrop two best friends, Kolyma and Gagarin, gradually become fierce enemies as they find themselves on opposite sides of the strict code of honour of the ‘honest criminal’ brotherhood.",0,0,Educazione siberiana,it +86825,Stoker,2013-02-28,99.0,http://www.foxsearchlight.com/stoker/,,tt1682180,Innocence Ends.,"After India's father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.",12000000,12077441,Stoker,en +107811,21 & Over,2013-03-01,93.0,,,tt1711425,Finally.,"Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.",13000000,48065672,21 & Over,en +171759,The Lost Medallion: The Adventures of Billy Stone,2013-03-01,97.0,http://www.thelostmedallion.com/,,tt1390539,Finding it is only the beginning.,A man who stops into a foster home to drop off some donations soon tells the kids a story about two teenage friends who uncover a long-lost medallion that transports them back in time.,0,0,The Lost Medallion: The Adventures of Billy Stone,en +173189,Brian Posehn: The Fartist,2013-03-01,58.0,,,tt2226050,,Quirky comedian and actor Brian Posehn shares his stories of trying to be a better person in this stand-up set filmed live at Seattle's Neptune Theater.,0,0,Brian Posehn: The Fartist,en +182131,Little Witch Academia,2013-03-02,26.0,http://littlewitchacademia.jp/,330075,tt2704454,,"Inspired by a magician named Shiny Chariot, the lively Akko Kagari enters the Little Witch Academy with the dream of one day becoming as cool as her idol.",480000,0,リトルウィッチアカデミア,ja +171738,Only Daughter,2013-03-02,0.0,http://onlydaughterfilm.com/,,tt2383616,,"Raised by a single mother in a rural New Hampshire town, 18-year-old Dawn Cowley sets out to find the father she has never known and discovers the devastating secret that had torn her family apart.",0,0,Only Daughter,en +202238,Tercera Llamada,2013-03-03,90.0,http://www.tercerallamadalapelicula.com,,tt2820226,,"Turmoil and tumultuousness become the order of the day when a Mexican theatrical company begins its rehearsals of absurdist philosopher Albert Camus's ""Caligula"" for an influential upcoming international theatre festival.",0,0,Tercera Llamada,es +158967,House Hunting,2013-03-05,102.0,,,tt1608368,Family is hell,Two families go to an open house and can't leave,0,0,House Hunting,en +257912,Event 15,2013-03-05,84.0,,,tt2363181,,"Three soldiers get trapped in an elevator when terrorists set off a dirty bomb. But when White escapes, her world turns upside down as she realizes nothing is what it seems.",0,0,Event 15,fr +171581,The Marine 3: Homefront,2013-03-05,86.0,,166373,tt2334841,,A Marine must do whatever it takes to save his kidnapped niece and stop a terrorist attack masterminded by a radical militia group.,0,0,The Marine 3: Homefront,en +174645,Java Heat,2013-03-06,104.0,,,tt2083231,,An American in Indonesia teams up with a Muslim cop to track down a terrorist.,0,0,Java Heat,en +178446,Generation War,2013-03-17,270.0,,,tt1883092,,"Berlin, 1941. Five friends eager to become heroes in an adventure that will change the face of Europe - and that will forever change them as well.",12000000,0,"Unsere Mütter, unsere Väter",de +177203,The Challenger,2013-03-18,90.0,http://www.bbc.co.uk/programmes/p00zstkn,,tt2421662,,Factual drama exploring the truth behind the space shuttle Challenger's 1986 explosion.,0,0,The Challenger,en +173443,Rio 2096: A Story of Love and Fury,2013-03-07,98.0,http://www.umahistoriadeamorefuria.com.br/,,tt2231208,,"The film narrates the love between Janaina and a native warrior who, when dying, takes the form of a bird. For six centuries, the story of the couple survives through four stages in the history of Brazil: 1500, when the country was discovered by the Portuguese explorers, 1800, in events during slavery; 1970, during the high point of the military dictatorship, and 2096, when there will be a war over water.",2000000,0,Uma História de Amor e Fúria,pt +173847,Amiche da morire,2013-03-07,0.0,,,tt2343371,,Three very different women who are hiding a secret are forced to work together to save their own skin.,0,0,Amiche da morire,en +173914,Sēņotāji,2013-03-07,,,,tt2651774,,,520,0,Sēņotāji,lv +173205,Girl Rising,2013-03-07,101.0,https://girlrising.com/,,tt2444946,One Girl with Courage is a Revolution,Nine filmmakers each profile a young girl from a different part of the world to weave a global tapestry of youth in the 21st century.,0,0,Girl Rising,en +172548,Good Night,2013-03-08,83.0,,,tt1675163,,"Leigh’s 29th birthday party takes a sudden turn when she announces that the evening maybe the last time her friends see her alive. A night of questions, coping and debauchery immediately follow.",0,0,Good Night,en +102362,Dead Man Down,2013-03-08,118.0,,,tt2101341,Blood demands blood,"In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.",0,18074539,Dead Man Down,en +184710,Quarantine L.A.,2013-03-09,75.0,,,tt2536086,,Seven strangers try to survive in the aftermath of a devastating outbreak. They must band together to escape from an isolated Los Angeles that has been hit by a virus that dramatically alters infected humans.,1200000,0,Quarantine L.A.,en +123109,No One Lives,2013-03-09,86.0,http://noonelivesthemovie.com/,,tt1763264,No one runs. No one escapes.,A gang of ruthless highway killers kidnap a wealthy couple traveling cross country only to shockingly discover that things are not what they seem.,2900000,74918,No One Lives,en +173467,Milius,2013-03-09,103.0,,,tt2370224,Man. Myth. Legend.,"The life story of ‘Zen Anarchist’ filmmaker John Milius, one of the most influential storytellers of his generation.",0,0,Milius,en +172520,Coldwater,2013-03-10,104.0,,,tt2198956,We Will Re-Adjust You.,"A teenage boy is sent to a juvenile reform facility in the wilderness. As we learn about the tragic events that sent him there, his struggle becomes one for survival with the inmates, counselors, and the retired war colonel in charge.",0,0,Coldwater,en +175791,Ci vuole un gran fisico,2013-03-10,,,,tt2753492,,,0,0,Ci vuole un gran fisico,it +173499,Everyone's Going to Die,2013-03-10,86.0,,,tt2091295,Two lost souls. One last chance.,"Melanie's life in a seaside town is going nowhere until she meets Ray, back in town with a shady job to do. A moment's escape becomes a chance to save themselves, and each other.",0,0,Everyone's Going to Die,en +235046,Darkroom,2013-03-10,81.0,,,tt1876283,,"Michelle kills three of her friends in a horrific car accident while driving under the influence. After rehab, Michelle takes a job recommended by her counselor that lands her trapped in a mansion with three psychotic siblings hell bent on physical torture to purge Michelle of her sins.",0,0,Darkroom,en +169794,All That I Am,2013-03-10,82.0,http://www.burmafilm.com/,,tt2452384,,"On the eve of an annual sibling reunion, a troubled young writer is sent reeling with the arrival of an unexpected guest.",0,0,All That I Am,en +169800,The Retrieval,2013-03-11,91.0,http://www.theretrieval.com/,,tt2635006,,"On the outskirts of the Civil War, a boy is sent north by a bounty hunter gang to retrieve a wanted man.",0,0,The Retrieval,en +177566,Jack the Giant Killer,2013-03-12,87.0,http://www.theasylum.cc/product.php?id=221,,tt2552498,"Jack went up the beanstalk, and brought down Hell.","A giant beanstalk brings Jack to a land in the clouds filled with snarling, evil beasts. When the creatures make their way to the ground, Jack must figure out how to get back down before they destroy earth and everyone in it.",50000,0,Jack the Giant Killer,en +141733,Cottage Country,2013-03-13,91.0,,,tt2072933,They aren't going to let a little blood spoil their weekend,"When Todd takes his girlfriend Cammie up to the family cottage for a reclusive proposal, the last thing he expected to be doing was dealing with was his slacker brother and his hippie girlfriend. But in this comedy of errors, Todd and Cammie, have to deal with his accidentally murdered brother in order to live happily ever after.",0,0,Cottage Country,en +183662,Crush,2013-03-13,94.0,,,tt2093977,Careful what you wish for,A secret admirer's crush on a high school athlete takes a fatal turn.,0,0,Crush,en +210408,Aşk Kırmızı,2013-03-15,114.0,,,tt2586682,,"The film asks the question would have been triple love. Ferhat and Zeynep is a happily married couple. Karlıdağ outside of marriage appears happy couple, the first love of life remained in the years ahead will be turned upside down with the introduction of the Euphrates Nazlıgül again. Zeynep even a night encounter with the former love of her husband Nazlıgül powdery mildew that can not bear to be separated , and that is the love in his heart can not prevent the re-ignition.",0,0,Aşk Kırmızı,en +177358,Jolly LLB,2013-03-15,135.0,,,tt2621000,,The film is a social satire on the law system of the country India.,0,0,Jolly LLB,hi +141267,Johan Falk: Kodnamn Lisa,2013-03-15,106.0,,24717,tt2279786,,Five men break into Frank Wagner's apartment. Frank is able to escape and seeks out the help of Johan Falk. Has someone leaked that Frank is working with the police? Frank and John do not know who knows what and who they can trust.,0,0,Johan Falk: Kodnamn Lisa,sv +158900,Faro,2013-03-15,88.0,,,tt2188741,,Faro is about a man who flees into the forest with his daughter to escape a prison sentence.,0,0,Faro,en +172386,Return to Nim's Island,2013-03-15,90.0,,232844,tt2221648,"Adventure runs wild, again.","Fourteen year old Nim, more determined than ever to protect her island and all the wildlife that call it home, faces off against resort developers and animal poachers. Soon she realizes she can’t depend on her animal cohorts alone and must make her first human friend – Edmund, who’s run away to the island from the mainland – to save her home.",0,0,Return to Nim's Island,en +238204,Bending the Rules,2013-03-15,93.0,,,tt3032780,,The Rule of Accident is about a group of theatre students who are trying to prepare and present a piece of theatre.,0,0,Ghaedeye tasadof,fa +223391,7 Days of Himawari & Her Puppies,2013-03-15,117.0,,,tt2114398,,"Set within an animal shelter, where if the owner of an animal doesn't claim their pet in 7 days, the animal is put to sleep. Himawari, is a female dog and a mother. She tries to desperately save her baby dogs.",0,0,ひまわりと子犬の7日間,ja +93828,Welcome to the Punch,2013-03-15,99.0,,,tt1684233,"A Stunning, Intelligent Thriller","When notorious criminal Jacob Sternwood is forced to return to London, it gives detective Max Lewinsky one last chance to take down the man he's always been after.",8500000,9747,Welcome to the Punch,en +131689,The Wicked,2013-03-20,105.0,https://www.facebook.com/thewickedmovie,,tt1986994,The Wicked Will Get You...,"A Group of teenagers test the legend of an immortal witch and get more than they bargained for. It's almost Halloween and six young people, spooked but not undaunted by the folklore surrounding an old haunted house, make their way to the abode of the legendary Wicked, perhaps hoping to provoke the malevolent witch, but clearly not prepared for what they've certainly unleashed.",800000,0,The Wicked,en +180252,Very Ordinary Couple,2013-03-21,112.0,http://loveis2013.kr,,tt3004788,,"The probability of a couple that had broken up getting back together and having a successful relationship is just 3%. Dong-hee and Young, who had broken up over a minor tiff, later realize their love for each other and end up getting back together. But will they be able to fit into the 3% bracket?",0,0,연애의 온도,en +179105,Scavengers,2013-03-21,94.0,,,tt1564369,Survive the void.,"A team of space scavengers discovers superior alien technology that threatens the balance of the known universe. Hotly pursued by a rival crew of intergalactic mercenaries, the Revelator crew must fight through the deepest reaches of space to locate and protect the life-altering device.",0,0,Scavengers,de +233639,Windstorm,2013-03-21,105.0,,334414,tt2356464,,"While spending the summer at her grandmother's farm, a girl (Hanna Höppner) discovers a talent for communicating with horses and tries to tame a fierce stallion.",0,0,Ostwind,de +171648,It’s Only Make Believe,2013-03-22,91.0,,,tt2664080,,"After serving 10 years in prison for murder, Jenny returns to society. She wants to live a quiet life and resume her responsibilities as a mother, but soon shadows from the past start to appear.",0,0,Eventyrland,no +254446,Who the F**K Is Arthur Fogel,2013-03-22,93.0,,,tt3479180,,"A look at the high-octane global live music industry and the quiet man at its center, featuring interviews, performances and appearances by a who's who of stars and insiders; with U2, Madonna, The Police, Lady Gaga, Rush and more.",0,0,Who the F**K Is Arthur Fogel,pt +180371,Vai Que Dá Certo,2013-03-22,87.0,,429232,tt2220408,,5 friends have a plan to rob a transporter that can change their lives.,1000000,0,Vai Que Dá Certo,pt +208700,The Last Chance: Diary of Comedians,2013-03-22,115.0,,,tt2400975,,"The movie follows the life of an unpopular comedy duo. The duo, called ""Boso Swimmers"", have been working together for 12 years, but the duo sees little future in their comedy careers. They then begin to write their thoughts in a diary",0,0,ボクたちの交換日記,ja +182127,Ip Man: The Final Fight,2013-03-22,100.0,,,tt2495118,,"In postwar Hong Kong, legendary Wing Chun grandmaster Ip Man is reluctantly called into action once more, when what begin as simple challenges from rival kung fu styles soon draw him into the dark and dangerous underworld of the Triads. Now, to defend life and honor, he has no choice but to fight one last time...",0,37884,Yip Man: The Final Fight,en +156268,InAPPropriate Comedy,2013-03-22,84.0,http://www.inappropriatecomedy.com,,tt1754811,An equal opportunity offender.,A no-nonsense cop has a flair for fashion and a celebrity takes revenge on the paparazzi in a collection of comedic sketches.,0,228,InAPPropriate Comedy,en +149232,The Pardon,2013-03-22,109.0,http://www.thepardonmovie.com/,,tt1025102,"In the end, only one thing can save her.","Toni Jo tries to break her husband, Cowboy, out of prison and becomes an instant sensation due to her beauty.",5000000,0,The Pardon,en +140222,Love and Honor,2013-03-22,92.0,,,tt1976989,,"When a young soldier in Vietnam gets dumped by his hometown girl, he and his best friend decide to go AWOL and return to the States to win her back.",0,0,Love and Honor,en +72710,The Host,2013-03-22,125.0,,,tt1517260,You will be one of us,"A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, ""Wanda"" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.",44000000,63327201,The Host,en +173153,Phil Spector,2013-03-24,92.0,,,tt1745862,The truth is somewhere in the mix.,A drama centered on the relationship between Phil Spector and defense attorney Linda Kenney Baden while the music business legend was on trial for the murder of Lana Clarkson.,0,0,Phil Spector,en +182545,Bingo,2013-03-26,,,,tt2572160,,,0,0,Bingo,nl +184219,Pee Mak Phrakanong,2013-03-28,111.0,,,tt2776344,,"Some time during the Rattanakosin Kingdom, Mak becomes a soldier and has to leave his pregnant wife Nak at home in Phra Khanong. In the distant frontline he meets four soldiers who become his best friends. Menwhile his wife Nak struggles to give birth to their baby alone. When the war is over, Mak invites his friends to go to his home and meet his beautiful wife Nak. But in Phra Khanong the rumor goes around town that Nak is a ghost. After a series of uncanny events his four friends and some villagers try to tell Mak that his wife is already dead.",0,0,พี่มาก..พระโขนง,th +182228,100 Degrees Below Zero,2013-03-29,88.0,,,tt2538128,Cold as Hell,"After freak climate and weather events destroy the world around them, a group of rogue scientists attempt to reverse the deadly new ice age.",500000,0,100 Degrees Below Zero,en +126963,Dragon Ball Z: Battle of Gods,2013-03-30,85.0,http://www.dragonball2013.com/,425164,tt2263944,,"The events of Battle of Gods take place some years after the battle with Majin Buu, which determined the fate of the entire universe. After awakening from a long slumber, Beerus, the God of Destruction is visited by Whis, his attendant and learns that the galactic overlord Frieza has been defeated by a Super Saiyan from the North Quadrant of the universe named Goku, who is also a former student of the North Kai. Ecstatic over the new challenge, Goku ignores King Kai's advice and battles Beerus, but he is easily overwhelmed and defeated. Beerus leaves, but his eerie remark of ""Is there nobody on Earth more worthy to destroy?"" lingers on. Now it is up to the heroes to stop the God of Destruction before all is lost.",0,50353002,ドラゴンボールZ 神と神,ja +187010,Buck Wild,2013-04-01,90.0,http://www.buckwildmovie.com/Buck_Wild/home.html,,tt1839426,"Three friends, one cousin, and a hunting vacation to die for.",A hunting vacation goes horribly awry for 4 friends after they accidentally shoot the lease's land owner.,0,0,Buck Wild,en +182415,"Bianca come il latte, rossa come il sangue",2013-04-02,0.0,,,tt2447934,,,0,0,"Bianca come il latte, rossa come il sangue",it +159095,In Fear,2013-04-03,85.0,,,tt2165859,,"Driving, lost and tormented in the night, primal fears of the dark and the unknown give way to fear that you have let the evil in, or that it is already there.",0,0,In Fear,en +168814,Will You Still Love Me Tomorrow?,2013-04-03,104.0,,,tt2738050,,"Introverted Weichung has been married to Feng for nine years. They have one son together, and Feng would like to have another child with him. One day Stephen, an old friend who now organises weddings, appears and encourages Weichung to return to the gay life he had previously. Anxious not to lose his wife, Weichung tentatively begins seeing a flight attendant behind Feng’s back.",0,0,Will You Still Love Me Tomorrow?,zh +184866,Favor,2013-04-05,102.0,http://www.favormovie.com,,tt1971397,A Friend Helps You Move. A Good Friend Helps You Move a Body.,"Kip's perfect life is put in jeopardy when the waitress with whom he's having a casual fling is accidentally killed in their motel room. Desperate, he turns to childhood friend and loser, Marvin, to help get rid of the body. Marvin agrees which begins the unraveling of their friendship and ultimately leads both to murderous acts they never thought themselves capable of.",0,0,Favor,en +231616,Brother's Keeper,2013-04-05,118.0,,,tt1748016,,"Identical twins Andy and Pete Goodwynn have been side-by-side since the womb. But that’s about to change… As their high school graduation nears, Pete plans to marry Maggie, the love of his life, and head off to school to become a preacher. Andy, who wants nothing to do with God, has no plans, no direction, and seemingly no future. But in a cruel twist of fate—orchestrated by a rival for Maggie’s heart—their lives are forever altered. Can the brothers gain vengeance on those who have taken away from them all that matters?",0,0,Brother's Keeper,en +262357,Redwood Highway,2013-04-05,90.0,,,tt2515164,,"Marie, a reluctant resident of a retirement community in Southern Oregon, decides to walk 80 miles down the Redwood Highway to see the ocean for the first time in 45 years.",0,0,Redwood Highway,en +183258,All Things To All Men,2013-04-05,84.0,,,tt2095568,Once You Are In. There's No Getting Out,A thief is caught up in a deadly game of cat-and-mouse between a maverick cop and London crime boss.,6000000,0,All Things To All Men,en +228407,Snow on the Pines,2013-04-09,92.0,,,tt2357790,,Piano teacher Roya (Mahnaz Afshar) realizes that her marriage to Ali is in a deadlock when she discovers some of her husband's secrets. In the meantime she meets a young musician (Saber Abar) and has to make a painful choice.,0,0,برف روی کاج ها,fa +168022,Monster Pies,2013-04-10,85.0,http://tlareleasing.com/films/monster-pies/,,tt2379082,Sometimes opposites don't attract,"Mike has felt alienated and alone for as long as he can remember, until a new boy arrives at his school - awakening feelings and a world of possibilities he'd never before dared to dream of.",0,0,Monster Pies,en +158947,My Dog Killer,2013-04-11,90.0,,,tt2654428,Shame and pride can kill,"Môj pes Killer is a one-day drama portraying eighteen-year-old Marek living near the Slovak-Moravian border with his dad and his racist friends. However, Marek's best true friend is his dog. His life is shaken up when he discovers the secret of his lost mother Marika.",0,0,Môj pes Killer,cs +187442,Asu Mare,2013-04-11,90.0,,,tt2842470,,"Follows the adventures of Carlos Alcántara on his way to fame from his childhood in the ""Unidad Vecinal Mirones"".",700000,0,Asu Mare,es +192210,Open Road,2013-04-12,85.0,,,tt1922679,,"Angie, a young Brazilian artist, abandons her old life and embarks on a journey around the country. Running from her past, and searching for her foundation in life, Angie finds not only herself but love in its many forms.",3000000,0,Open Road,en +178809,The Colony,2013-04-12,95.0,http://www.afterthefreeze.com,,tt1160996,"One day, it started to snow .. and it never stopped","Forced underground by the next ice age, a struggling outpost of survivors must fight to preserve humanity against a threat even more savage than nature.",16000000,0,The Colony,en +199851,Hawaii,2013-04-12,106.0,,,tt2801746,,Eugenio offers his childhood friend Martin a work for the summer. With a game of power and desire a relationship starts to grow that goes beyond their friendship.,0,0,Hawaii,es +114779,It's a Disaster,2013-04-12,86.0,,,tt1995341,Are You Prepared?,Four couples meet for Sunday brunch only to discover they are stuck in a house together as the world may be about to end.,0,0,It's a Disaster,en +186606,iSteve,2013-04-14,79.0,,,tt2782834,,A comedic look at the life of Steve Jobs.,0,0,iSteve,en +179398,Please Kill Mr. Know It All,2013-04-14,87.0,,,tt1935201,,An anonymous advice columnist finds herself caught in an unlikely romance with the man who has been hired to kill her alter ego.,0,0,Please Kill Mr. Know It All,en +179826,Odd Thomas,2013-04-16,100.0,,,tt1767354,"I might see dead people... But then, by God, I do something about it.","In a California desert town, a short-order cook with clairvoyant abilities encounters a mysterious man with a link to dark, threatening forces.",27000000,0,Odd Thomas,en +190250,ABE,2013-04-16,8.0,http://www.abemovie.com/,,tt2883236,,A short film about a robot programmed for love who wants to fix the humans who do not love him back.,0,0,ABE,en +231145,Tom Papa: Freaked Out,2013-04-16,59.0,,,tt2769276,,Actor/comedian Tom Papa's new stand-up comedy special for EPIX.,0,0,Tom Papa: Freaked Out,en +184155,Legend No. 17,2013-04-17,134.0,,,tt2182001,,"Biopic of Russian ice hockey legend Valeri Kharlamov from early childhood, rising to the pinnacle of the sport and his untimely death",7720000,0,Легенда №17,ru +68721,Iron Man 3,2013-04-18,130.0,http://marvel.com/ironman3,131292,tt1300854,Unleash the power behind the armor.,"When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.",200000000,1215439994,Iron Man 3,en +174350,The Genius of Marian,2013-04-18,85.0,http://geniusofmarian.com/,,tt2448028,,"The Genius of Marian follows Pam White in the early stages of Alzheimer's disease. Her son, the film maker, works with her as she attempts to write a book that tributes her mother, the artist Marian Steele.",0,0,The Genius of Marian,en +176124,Home Run,2013-04-19,114.0,http://www.homerunthemovie.com/,,tt2051894,Freedom is possible,"A pro ball player with a substance abuse problem is forced into rehab in his hometown, finding new hope when he gets honest about his checkered past, and takes on coaching duties for a misfit Little League team",1200000,2861020,Home Run,en +169683,See You Tomorrow,2013-04-20,0.0,,,tt2402565,,2013 Italian comedy,0,0,Ci vediamo domani,ms +174309,Teenage,2013-04-20,80.0,http://teenagefilm.com/,,tt2196055,,"Teenagers did not exist before the 20th century. Not until the early 1950s did the term gain widespread recognition, but with Teenage, Matt Wolf offers compelling evidence that “teenagers” had a tumultuous effect on the previous half-decade.",0,0,Teenage,en +203264,Percentage,2013-04-24,82.0,,,tt2088869,,"After a drug deal gone wrong, two New York City hustlers relocate to Miami, where they set up a lucrative credit card fraud operation. Unfortunately, their new business not only attracts the police, but the city's top criminals -- and both want a percentage of the take.",0,0,Percentage,en +169934,Iron Man: Rise of Technovore,2013-04-24,88.0,,,tt2654124,Can Iron Man save the world when the world is against him?,"Iron Man enlists the help of ruthless vigilante the Punisher to track down War Machine's murderer. All the while, he's being pursued by S.H.I.E.L.D. agents Black Widow and Hawkeye, who suspect his involvement in a recent terrorist plot.",0,0,アイアンマン:ライズ・オブ・テクノヴォア,ja +367732,Uncle Nick,2015-12-04,93.0,,,tt3163336,Nothing ruins Christmas like family.,A drunk uncle attempts to score with his flirtatious step-niece on Christmas Eve.,0,0,Uncle Nick,en +211085,Filthy Gorgeous: The Bob Guccione Story,2013-04-25,96.0,,,tt2520096,,"A look at the extraordinary world of Penthouse founder, visionary and provocateur Bob Guccione.",0,0,Filthy Gorgeous: The Bob Guccione Story,en +192558,Aashiqui 2,2013-04-25,132.0,,282971,tt2203308,Love makes life live...,"Rahul is a singer, who loses his career due to his drinking habits. He meets Arohi in a bar in Goa, where she works to earn a living. Impressed by her singing, he promises to take her to Mumbai and make her a star, where they fall in love with each other. Will they stay together accepting their success, or will their egos break them apart?",1300000,16000000,Aashiqui 2,hi +224204,Lad: A Yorkshire Story,2013-04-25,96.0,http://www.ladayorkshirestory.com/,,tt2073600,,"After the death of his father, a teenage boy forms a healing friendship with a park ranger in the Yorkshire Dales",0,0,Lad: A Yorkshire Story,en +141015,Combustion,2013-04-26,104.0,,,tt1899142,,"Mikel will marry Julia, owner of a major jewelry he inherited from his parents. During the party in announcing their commitment, Mikel meets Ari, one of the waitresses catering. The attraction that arises between them will make Mikel is interested in the world of Ari: illegal motor racing. Then, the protagonist of this story decides to leave Julia without knowing the true intentions of the person who has seduced. Ari and her boyfriend, Navas, have hatched a plan to get around Mikel jewelry made ​​with his ex-girlfriend.",0,0,Combustión,es +191850,Room 8,2013-04-26,6.0,,,tt2949338,,"From the imagination of James W. Griffiths, one of five films based on one script.",0,0,Room 8,en +157351,The Truth About Emanuel,2013-04-26,96.0,http://emanuelandthetruthaboutfishes.com/,,tt1838520,Two Lives. Two Voids. One Secret.,"A troubled young woman becomes obsessed with her mysterious new neighbor, who bears a striking resemblance to the girl's dead mother.",0,0,The Truth About Emanuel,en +188507,Space Warriors,2013-04-26,93.0,,,tt2328745,,The son of a retired astronaut competes to win a seat on the next space shuttle.,0,0,Space Warriors,en +205724,Welcome to the Jungle,2013-04-27,95.0,,,tt2193265,Unleash your inner beast!,A company retreat on a tropical island goes terribly awry.,3500000,0,Welcome to the Jungle,en +259894,A Sister's Revenge,2013-04-27,90.0,,,tt2636814,,"A restaurateur has it all - a successful business, a beautiful house and a loving family - until a ravishing femme fatale with stiletto heels and an ax to grind walks into his life.",0,0,A Sister's Revenge,en +272892,In Lieu of Flowers,2013-04-28,90.0,,,tt2228000,,Most love stories are about losing love or finding it. This is a story about what happens in between.,0,0,In Lieu of Flowers,en +181454,The Ghosts in Our Machine,2013-04-28,93.0,http://www.theghostsinourmachine.com/,,tt2654562,,"Through the heart and photographic lens of international photographer Jo-Anne McArthur, 
we become intimately familiar with a cast of non-human animals. The film follows Jo-Anne over the course of a year as she photographs several animal stories in parts of Canada, 
the U.S. and in Europe. Each story is a window into global animal industries: 
Food, Fashion, Entertainment and Research.",0,0,The Ghosts in Our Machine,en +186988,Honey,2013-05-01,96.0,,,tt2357461,,"Irene, nicknamed 'Miele', has devote herself to people looking for help, and tries to alleviate their suffering even when they make extreme decisions. One day she has to cope with Grimaldi and his invisible malaise.",0,0,Miele,en +169758,The Stranger Within,2013-05-01,90.0,,,tt2180571,Careful who you let in,"After a traumatic ordeal, acclaimed actress Emily Moore and her psychiatrist husband, Robert, escape on a relaxing vacation to a gorgeous remote Mediterranean island. But on the first night at the house, a young girl arrives, blood on her hands and hysterical from the death of her boyfriend in a hiking accident. Robert offers to take in and help the young girl, but her suggestive behavior makes Emily wonder if she might be a threat to their marriage... or her life.",800000,0,The Stranger Within,en +103731,Mud,2013-05-01,130.0,,,tt1935179,,Two teenage boys encounter a fugitive and make a pact to help him escape from an island in the Mississippi.,10000000,21587700,Mud,en +165718,Kick-heart,2013-05-01,10.0,http://www.kickstarter.com/projects/production-ig/masaaki-yuasas-kick-heart/,,tt2753048,,"A love story between two people that each have a secret to hide. One a pro-wrestler, the other a Nun. Losing never felt so good.",201164,0,キックハート,ja +185460,Willow Creek,2013-05-02,80.0,,,tt2885364,Existing Soon.,A young couple ventures into the woods to capture footage of the elusive Bigfoot.,0,0,Willow Creek,en +163814,Nearlyweds,2013-05-02,90.0,,,tt2193456,,Revolves around three friends who have dream weddings only to find out that the pastor who married them failed to complete the key paperwork required to make them official.,0,0,Nearlyweds,en +188640,Shootout at Wadala,2013-05-03,0.0,,,tt2301155,,"The first-ever registered encounter by the Mumbai Police, which took place on November 1, 1982. It's based on a true story.",0,0,Shootout at Wadala,hi +190940,Bombay Talkies,2013-05-03,127.0,http://en.wikipedia.org/wiki/Bombay_Talkies_%28film%29,,tt2797242,,One hundred years of Hindi cinema is celebrated in four short stories showcasing the power of film.,0,0,Bombay Talkies,en +166076,Superman: Unbound,2013-05-06,75.0,http://www.dccomics.com/movies/superman-unbound-2013,,tt2617456,The machine is coming,"Based on the Geoff Johns/Gary Frank 2008 release ""Superman: Brainiac,"" Superman: Unbound finds the horrific force responsible for the destruction of Krypton (Brainiac) descending upon Earth. Brainiac has crossed the universe, collecting cities from interesting planets, Kandor included, and now the all-knowing, ever-evolving android has his sights fixed on Metropolis. Superman must summon all of his physical and intellectual resources to protect his city, the love of his life, and his newly-arrived cousin, Supergirl.",0,2915767,Superman: Unbound,en +180813,One Track Heart: The Story of Krishna Das,2013-05-08,74.0,,,tt2010939,,"Krishna Das is on a journey to India to discover legendary spiritual teacher Neem Karoli Baba, through drug addiction and depression, to his eventual emergence as a world-famous Kirtan singer.",0,0,One Track Heart: The Story of Krishna Das,en +167935,So Much Water,2013-05-10,102.0,,,tt1826876,,"A family vacation is bogged down by unrelenting rain, as a teenage girl and her divorced father try to find common ground.",0,0,Tanta agua,es +191562,Go Goa Gone,2013-05-10,111.0,,,tt2436516,I Kill Dead People,"A rave party off the coast of Goa, goes horrifyingly and hilariously wrong when the island is overrun with zombies.",0,0,गो गोआ गॉन,hi +128081,I Declare War,2013-05-10,94.0,,,tt2133239,Rules were made to be broken.,"Summer war games between the neighborhood kids turns deadly serious when jealousy and betrayal enter the mix, in this alternately hilarious and horrifying black comedy that mixes equal parts Lord of the Flies and Roald Dahl.",0,0,I Declare War,en +146216,RED 2,2013-07-18,116.0,http://red-themovie.com/,163902,tt1821694,The best never rest.,Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.,84000000,0,RED 2,en +195796,Home Sweet Home,2013-05-13,80.0,http://homesweethome-themovie.com/,,tt2348394,Home Sweet Home,A young married couple comes home from a date night to discover that they are imprisoned in their own house with a methodical killer inside.,0,0,Home Sweet Home,en +116711,Epic,2013-05-15,102.0,,,tt0848537,Discover a world beyond your imagination,A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world -- and ours.,100000000,268426634,Epic,en +226672,Legendary: Tomb of the Dragon,2013-05-16,100.0,,,tt2369041,,"Travis and his team travel to China in search of what isn't supposed to exist ... their mission to capture a Cryptid which is wreaking havoc in a remote village and they need to do this before it is killed by Harker, the legendary bounty hunter.",12000000,0,Legendary: Tomb of the Dragon,en +194101,The Selfish Giant,2013-05-16,91.0,,,tt2304426,,"A hyperactive boy and his best friend, a slow-witted youth with an affinity for horses, start collecting scrap metal for a shady dealer.",0,0,The Selfish Giant,en +190876,The Auction,2013-05-17,111.0,,,tt2860720,,"Gaby owns a farm on which he raises lambs: Bouchard & Sons Farm. But he has no sons. Rather, he has two daughters that he raised like princesses and who live far away, in the big city. One day, the oldest asks him for some financial support so she doesn't end up losing her house...",0,0,Le Démantèlement,en +194722,At Middleton,2013-05-17,101.0,https://www.facebook.com/AtMiddleton,,tt1483324,You never know what you'll discover on your first day at college.,Two parents fall in love over the course of a single day while playing hooky from their children's college tour.,2500000,0,At Middleton,en +220287,Chanthaly,2013-05-18,98.0,,,tt2837366,,"A sickly young woman experiences visions of her dead mother. She struggles to determine if the apparition is simply a side effect of her daily medication, or her mother actually reaching out to her from beyond the grave.",5000,0,ຈັນທະລີ,lo +177271,Lego Batman: The Movie - DC Super Heroes Unite,2013-05-20,71.0,http://www.dccomics.com/movies/lego-batman-the-movie-dc-super-heroes-unite-2013,386162,tt2465238,Fighting Crime Brick by Brick,"Joker teams up with Lex Luthor to destroy the world one brick at a time. It's up to Batman, Superman and the rest of the Justice League to stop them.",0,0,Lego Batman: The Movie - DC Super Heroes Unite,en +187028,Omar,2013-05-21,96.0,,,tt2852406,,"The drama, the story of three childhood friends and a young woman who are torn apart in their fight for freedom, is billed as the first fully-financed film to come out of the Palestinian cinema industry.",0,0,عمر,ar +196255,Gregory Go Boom,2013-05-22,18.0,,,tt2909154,,A paraplegic man leaves home for the first time only to discover that life on the outside is not like he had imagined it.,0,0,Gregory Go Boom,en +109439,The Hangover Part III,2013-05-23,100.0,,86119,tt1951261,It all ends.,"This time, there's no wedding. No bachelor party. What could go wrong, right? But when the Wolfpack hits the road, all bets are off.",103000000,362000072,The Hangover Part III,en +208091,Saving Norman,2013-05-25,9.0,,,tt3007904,It isn't about the winning. It's the never taking part that counts.,"Saving Norman tells the story of a hypochondriac ex-ping pong player who missed the biggest tournament of his career because of a cold. Now years later he lives a hermetic existence with his parrot Norman. But, when Norman seems to be suffering from a case of bird narcolepsy he calls in pet psychic Belinda who soon realizes that in order to help Norman, she'll first have to help his owner.",0,0,Saving Norman,en +197082,Venus in Fur,2013-05-28,96.0,,,tt2406252,,An enigmatic actress (Emmanuelle Seigner) may have a hidden agenda when she auditions for a part in a misogynistic writer's (Mathieu Amalric) play.,0,342183,La Vénus à la fourrure,fr +197624,AE: Apocalypse Earth,2013-05-28,87.0,,,tt2756412,The battle for mankind will not be on earth,"A group of refugees from Earth land on an exotic planet, where they must fight ruthless aliens to survive.",1000000,0,AE: Apocalypse Earth,en +159701,I Do,2013-05-31,91.0,,,tt2102499,,"A gay Brit living in New York is deprived of his immigration status, and risks losing his family and life in the U.S. He marries his lesbian best friend to remain in the country and stay with his family, but things get complicated when he meets the love of his life and is forced to make an impossible choice.",0,0,I Do,en +137072,The Comedian,2013-05-31,80.0,,,tt1656194,,"Set in the immediate and random background of today’s London. THE COMEDIAN is a fresh, dramatic and funny debut feature about choices and how not to make them.",0,0,The Comedian,en +158015,The Purge,2013-05-31,86.0,,256322,tt2184339,"One night a year, all crime is legal.","Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.",3000000,89328627,The Purge,en +239056,Hairbrained,2013-05-31,97.0,,,tt1426363,"This is Eli Pettifog. He's got a score to settle, and it's going to get hairy.",A 14 year old genius gets rejected by Harvard and ends up at a much lower ranked school where he makes friends with a mature student.,0,0,Hairbrained,en +195269,12 Rounds 2: Reloaded,2013-06-01,95.0,,221622,tt2317524,Are you ready for another 12 Rounds?,"Nick Malloy portrays an Emergency Medical Technician (EMT) who finds himself caught in a deadly 12-round game of cat and mouse with a vigilante tied to the paramedic's past. With little time to spare and his wife's life hanging in the balance, the EMT must figure out why he's been chosen to be the pawn in this maniac's game before it's too late",4000000,0,12 Rounds 2: Reloaded,en +229702,Zephyr Springs,2013-06-01,88.0,http://www.mylifetime.com/movies/deadly-spa,,tt2651916,,"When Dawn, an overworked single mother, agrees to take her teenage daughter, Kayla, to a luxurious but isolated spa retreat, the women believe they have escaped to a paradise of spa treatments, yoga, and nature hikes until a series of disturbing incidents has Kayla questioning the perfection around her.",0,0,Zephyr Springs,en +203072,The Surrealist and His Naughty Hand,2013-06-02,65.0,,,tt2690186,,A film about Finnish artist Kalervo Palsa who was completely neglected by his peers and time,0,0,Kalervo Palsa ja kuriton käsi,en +214105,The Wonders,2013-06-05,112.0,,,tt2882590,,Avi Nesher's new film tracks the complex relationship between a Jerusalem Graffiti artist and a mysterious modern day prophet who is imprisoned in an abandoned apartment across the Artist's window.,0,0,Plaot,he +198130,Pop Redemption,2013-06-05,0.0,,,tt2602664,,,0,0,Pop Redemption,fr +293189,Algorithms,2013-06-06,100.0,http://www.algorithmsthedocumentary.com,,tt2616594,,Four blind Indian boys compete to become chess masters.,0,0,Algorithms,en +147773,The Way Way Back,2013-06-06,103.0,,,tt1727388,We've all been there.,"Over the course of his summer break, a teenager comes into his own thanks in part to the friendship he strikes up with one of the park's managers.",4600000,23198652,The Way Way Back,en +209556,When Comedy Went to School,2013-06-06,83.0,http://www.whencomedywenttoschool.com/,,tt2167056,,The birth of modern stand-up comedy began in the Catskill Mountains - a boot camp for the greatest generation of Jewish-American Comedians.,0,0,When Comedy Went to School,en +174188,Rapture-Palooza,2013-06-07,85.0,,,tt1879032,A match made in hell,Two teens battle their way through a religious apocalypse on a mission to defeat the Antichrist.,0,0,Rapture-Palooza,en +222370,Jim Breuer: And Laughter for All,2013-06-07,58.0,,,tt2663380,,"Replete with long-form stories of family life, how he really got started as a comedian and his love of 1980s metal, Jim Breuer's hilariously personal stand-up special finds the ""Goat Boy"" comic at the top of his game.",0,0,Jim Breuer: And Laughter for All,en +180418,15 Years and One Day,2013-06-07,96.0,,,tt2368525,,"Jon is a troubled teenager who has been expelled from school. His mother decides to teach him a lesson sending him away with his grandfather Max, a retired military man who lives in a village by the seaside. But the time they will spend together won’t be that simple, Jon likes to flirt with danger and bad companies, and the veteran has now settled down into a comfortable life.",0,0,15 años y un día,es +304134,Zapatlela 2,2013-06-07,0.0,,,tt3319518,,"Tatya Vinchu comes back to life after 20 years, and now wants to migrate into the body of Lakshya's son.",0,0,Zapatlela 2,mr +159138,The Crash Reel,2013-06-10,108.0,,,tt2499076,The mind has mountains,"The Crash Reel tells the story of a sport and the risks that athletes face in reaching the pinnacle of their profession. This is Kevin Pearce’s story, a celebrated snowboarder who sustained a brain injury in a trick gone wrong and who now aims, against all the odds, to get back on the snow.",0,0,The Crash Reel,en +49521,Man of Steel,2013-06-12,143.0,http://www.manofsteel.com/,209131,tt0770828,You will believe that a man can fly.,"A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.",225000000,662845518,Man of Steel,en +96936,The Bling Ring,2013-06-12,90.0,,,tt2132285,"Living the Dream, One Heist at a Time","Inspired by actual events, a group of fame-obsessed teenagers use the Internet to track celebrities' whereabouts in order to rob their homes.",15000000,19145732,The Bling Ring,en +59981,Legends of Oz: Dorothy's Return,2013-06-13,88.0,http://www.dorothyofozthemovie.com/,,tt0884726,There's trouble in OZ...,"Dorothy wakes up in post-tornado Kansas, only to be whisked back to Oz to try to save her old friends the Scarecrow, the Lion, the Tin Man and Glinda from a devious new villain, the Jester. Wiser the owl, Marshal Mallow, China Princess and Tugg the tugboat join Dorothy on her latest magical journey through the colorful landscape of Oz to restore order and happiness to Emerald City.",70000000,18662027,Legends of Oz: Dorothy's Return,en +199415,Looking for Maria Sanchez,2013-06-14,98.0,,,tt2082155,,"Raul, a Puerto Rican born in New York, meets Maria, a young Puerto Rican woman visiting NY, one night. Struck by love at first sight, he travels to Puerto Rico in search of this beautiful girl.",0,0,200 Cartas,es +201676,My Little Pony: Equestria Girls,2013-06-15,72.0,http://www.hasbro.com/equestriagirls/,343297,tt2908228,The magic of friendship never changes.,"Via a magic mirror, Twilight Sparkle travels into an alternate universe in order to recover a crown that was stolen from the Crystal Empire. Upon her arrival she is horrified to learn that she has turned into a human.",0,0,My Little Pony: Equestria Girls,en +201360,All of Me,2013-06-15,74.0,http://www.allofmemovie.com/,,tt2800964,,"The 'Girls' have been friends for years, bonding over hopes, dreams, food, and the shared experience of being obese. But, now, as some pursue weight-loss surgery, their center has shifted and upset everything they knew about happiness, friendship, and love.",0,0,All of Me,en +201361,American Revolutionary: The Evolution of Grace Lee Boggs,2013-06-16,82.0,http://americanrevolutionaryfilm.com/,,tt2385558,,"Grace Lee Boggs is an activist and philosopher in Detroit who has dedicated her life to the next American Revolution and the possibility of a better, more just future for all of humanity. At age 97, she has been building movements and developing strategies for social change for most of her life -- reminding us that revolution is not only possible and necessary, but a process that must always be in motion.",0,0,American Revolutionary: The Evolution of Grace Lee Boggs,en +203124,Failure,2013-06-16,4.0,,,tt2993298,,"A young man (Cera) discovers a strange woman in his house (Plaza) who just wants to ""meet him""...",0,0,Failure,en +201485,American Idiots,2013-06-18,92.0,http://www.lionsgateshop.com/product.asp?Id=29202&TitleParentId=9250,,tt1698651,Get ready for the ultimate road trip,Four friends embark on a cross-country journey to Las Vegas in an old RV to stop a wedding and save a friend from losing the love of his life.,750000,0,American Idiots,en +142115,Five Dances,2013-06-19,83.0,,,tt2186781,,"FIVE DANCES, written and directed by Alan Brown, is a creatively adventurous narrative feature film set in the New York 'downtown' modern dance world. The story follows the rocky emotional journey of an 18-year old dancer (the amazing Ryan Steele) with talent to burn, who must choose between his responsibility to his broken family in the Midwest, and forging a life and career for himself. The film features five of New York's most gifted dancers acting on film for the very first time, and performing the choreography of internationally acclaimed choreographer Jonah Bokaer.",0,0,Five Dances,en +210302,Love's Routine,2013-06-19,9.0,http://www.jamesonfirstshot.com/winners,,tt3007898,Love is a waiting game,"LOVE’S ROUTINE is a dark comedy about a discordant elderly couple, who ultimately prove that love is greater than flesh and blood.",0,0,Love's Routine,en +62211,Monsters University,2013-06-20,104.0,,137696,tt1453405,School never looked this scary.,A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.,200000000,743559607,Monsters University,en +203217,My Mom Is a Character,2013-06-21,85.0,,455278,tt2464018,,"After another spat with her kids, Dona Hermínia decides to take some time off from them and hides away in her aunt's house, where she reminisces about her kids in an age when they still needed her.",0,0,Minha Mãe é uma Peça,pt +210079,Across the River,2013-06-21,87.0,,,tt2836202,,"After a wildlife biologist (Marco Marchese) becomes trapped on the wrong side of the river while collecting data, he comes across an abandoned village. Taking shelter, he begins to suspect he may be sharing the grounds with more than just boar and deer.",0,0,Oltre il guado,it +120854,Lizzie,2013-07-18,93.0,,,tt1582213,,"Lizzie, a young woman with amnesia, slowly comes to realize that she may be responsible for the horrific murder of her parents. After returning to the family home, Lizzie had terrifying flashbacks to her childhood, and comes face to face with the true horror of her past.",0,0,Lizzie,en +371153,Dügün Dernek 2: Sünnet,2015-12-04,0.0,,466388,tt5114588,,,0,0,Dügün Dernek 2: Sünnet,tr +117251,White House Down,2013-06-27,131.0,,,tt2334879,It will start like any other day.,"Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.",150000000,205366737,White House Down,en +209266,Exit Marrakech,2013-06-28,123.0,,,tt1982177,,"When 17-year-old Ben visits his father Heinrich in Marrakech, it is the start of an adventurous journey through a foreign country with a picturesque charm and a rough beauty where everything appears possible — including the chance that father and son will lose each other for good, or find one another again.",6000000,0,Exit Marrakech,en +142106,Petunia,2013-06-28,112.0,,,tt1826813,,The story of a family whose growth is stunted... a family that learns how to love themselves while loving each other (a little too much).,0,0,Petunia,en +172897,Some Girl(s),2013-06-28,90.0,http://somegirlsfilm.com/,,tt2201221,It's not you. It's him...,"On the eve of his wedding, a successful writer travels around the country to meet up with ex-lovers in an attempt to make amends for his wrongdoings.",0,0,Some Girl(s),en +389614,The Hidden Child,2013-06-28,105.0,,245326,tt2216856,,Erica's parents are killed in a traffic accident. She moves to Fjällbacka and discovers she has a brother.,0,0,THE HIDDEN CHILD,sv +204384,Finsterworld,2013-06-28,91.0,,,tt2338864,,"The film tells different stories in a kind of parallel Germany about love, affection and hatred.",0,0,Finsterworld,de +188826,Copperhead,2013-06-28,120.0,,,tt2404555,The war at home,A family is torn apart during the American Civil War.,0,0,Copperhead,en +108726,A Common Man,2013-06-30,86.0,https://www.facebook.com/pages/A-Common-Man-Film/114879171962231,,tt2104837,No Justice. No Peace.,"A terrorist plants several bombs throughout the city of Colombo, Sri Lanka and threatens to detonate them unless prisoners are released.",0,0,A Common Man,en +203780,The Game of Truth,2013-07-01,90.0,,,tt2996932,,Four old friends decide to have a meeting in order to discover a hidden truth about themselves. Based on Filipp Lelush play.,0,0,Igra v Pravdu,ru +202215,Queens of the Ring,2013-07-02,97.0,,,tt2330546,,"More than anything, 30-year-old Rose longs to be reunited with Mickaël, her estranged 11-year-old son who has been placed with a foster family and blames his mother for their long separation. When she discovers that Mickaël is crazy about wrestling, Rose thinks she's found a way to melt the ice: she'll put together a tag team with three girlfriends from the store where all four work as checkout girls...",0,0,Les reines du ring,fr +204553,Cold Eyes,2013-07-03,119.0,,,tt2969656,,"HA Yoon-ju becomes the newest member to a unit within the Korean Police Forces Special Crime Department that specializes in surveillance activities on high profile criminals. She teams up with HWANG Sang-Jun, the veteran leader of the unit, and tries to track down James who is the cold-hearted leader of an armed criminal organization.",0,0,감시자들,ko +199615,The Notebook,2013-07-03,112.0,,,tt2324384,,"In a village on the Hungarian border, two young brothers grow up during war time with their cruel grandmother and must learn every trick of evil to survive in the absurd world of adults.",0,66559,A Nagy Füzet,hu +152748,Ain't Them Bodies Saints,2013-07-03,96.0,,,tt2388637,,The tale of an outlaw who escapes from prison and sets out across the Texas hills to reunite with his wife and the daughter he has never met.,0,1031243,Ain't Them Bodies Saints,en +57201,The Lone Ranger,2013-07-03,149.0,http://disney.go.com/the-lone-ranger/,,tt1210819,Never Take Off the Mask,"The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.",255000000,89289910,The Lone Ranger,en +245917,Gintama: The Final Chapter - Be Forever Yorozuya,2013-07-04,110.0,,,tt2374144,,"What would have happened if the Shiroyasha never existed? Edo is thrown to chaos by a mysterious cause. Sakata Gintoki, now lives in a world where the future has changed, without him. What has happened to the Yorozuya? Gintoki, who is now a ghost of the past, must once again carry the burden in order to save his friends. He must finish the biggest job ever, which may be the final job of Yorozuya.",0,0,劇場版 銀魂 完結篇 万事屋よ永遠なれ,ja +76544,Man of Tai Chi,2013-07-04,105.0,,,tt2016940,No Rules. No Mercy. Pure Fighting.,"In Beijing, a young martial artist's skill places him in position to experience opportunities and sacrifices.",25000000,2054941,Man of Tai Chi,en +205864,The Eternal Return of Antonis Paraskevas,2013-07-07,88.0,,,tt2655938,,"Antonis arrives at a hotel resort by the sea. It is wintertime, the hotel is closed and Antonis drifts around alone. He has a lot of time to kill. Until television announces the disappearance of the famous TV host Antonis Paraskevas…",0,0,Η Αιώνια Επιστροφή Του Αντώνη Παρασκευά,el +198062,Coffee Town,2013-07-09,87.0,http://coffeetown.com/,,tt2234025,,Three thirty-something friends band together when their carefree existence is threatened.,0,0,Coffee Town,en +203351,Atlantic Rim,2013-07-09,85.0,,,tt2740710,Monsters vs Machines,"When monsters suddenly appear from the bottom of the Atlantic Ocean, a special team pilots giant robots to combat the new threat.",0,0,Atlantic Rim,en +203539,Systemfehler - Wenn Inge tanzt,2013-07-10,0.0,,,tt2446786,,,0,0,Systemfehler - Wenn Inge tanzt,de +77950,Turbo,2013-07-11,96.0,http://www.turbomovie.com/,,tt1860353,SLO NO MO,The tale of an ordinary garden snail who dreams of winning the Indy 500.,135000000,282570682,Turbo,en +209293,Louis Cyr The Strongest Man in the World,2013-07-12,130.0,http://www.louiscyr-lefilm.com/,,tt1657513,,"Biopic of Louis Cyr, strongest man in the world at the end of the 19th Century.",8500000,0,Louis Cyr,fr +157409,Crystal Fairy & the Magical Cactus,2013-07-12,98.0,,,tt2332579,,"Jamie is a boorish, insensitive American twentysomething traveling in Chile, who somehow manages to create chaos at every turn. He and his friends are planning on taking a road trip north to experience a legendary shamanistic hallucinogen called the San Pedro cactus. In a fit of drunkenness at a wild party, Jamie invites an eccentric woman—a radical spirit named Crystal Fairy—to come along.",0,0,Crystal Fairy & the Magical Cactus,en +307696,Coda,2013-07-13,9.0,,,tt3350724,,"A lost soul stumbles drunken through the city. In a park, Death finds him and shows him many things.",0,0,Coda,en +203715,Aya of Yop City,2013-07-17,84.0,,,tt2077703,,"Love stories in Yopougon, a neighborhood of the Ivory Coast capital",0,0,Aya de Yopougon,fr +49524,R.I.P.D.,2013-07-18,96.0,http://www.ripd.com/,,tt0790736,To protect and serve the living,A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.,130000000,61648500,R.I.P.D.,en +107985,The World's End,2013-07-18,109.0,,,tt1213663,Good food. Fine ales. Total Annihilation.,Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.,20000000,46089287,The World's End,en +199373,The Frozen Ground,2013-07-18,105.0,,,tt2005374,The hunter becomes the hunted,An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.,27220000,5496951,The Frozen Ground,en +149870,The Wind Rises,2013-07-20,126.0,http://kazetachinu.jp,,tt2013293,We must live.,"A lifelong love of flight inspires Japanese aviation engineer Jiro Horikoshi, whose storied career includes the creation of the A-6M World War II fighter plane.",30000000,117932401,風立ちぬ,ja +252520,Short Peace,2013-07-20,68.0,http://shortpeace-movie.com/,258506,tt3392330,,A four-film omnibus that features four short anime films all themed around Japan.,0,0,ショート・ピース,ja +272072,Leather,2013-07-21,101.0,http://www.leather-movie.com/,,tt2473718,It's Good To Have a Thick Skin...,"Birch, a young man living in the Catskill Mountains, reunites with his childhood friend from the city, Andrew.",0,0,Leather,en +208968,Kumail Nanjiani: Beta Male,2013-07-21,41.0,,,tt2901584,,Stand up Special debuted July 20th 2013,0,0,Kumail Nanjiani: Beta Male,en +226701,The Nightmare Nanny,2013-07-22,91.0,,,tt3058618,,"Stay-home mom Annie is reluctant to return to work, until she finds Amber, the perfect nanny for her 3-year-old daughter Jenny. But as Annie's young daughter grows closer and closer to Amber, Annie begins to feel like she's being pushed out of her own life. When Jenny suddenly vanishes one day,Annie's search for her missing daughter leads her to the terrifying truth about the dark past of the woman she trusted with her child.",0,0,The Nightmare Nanny,en +76170,The Wolverine,2013-07-23,126.0,http://www.thewolverinemovie.com,453993,tt1430132,"When he's most vulnerable, he's most dangerous.","Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.",120000000,415440673,The Wolverine,en +204965,Drei Stunden,2013-07-24,,,,tt2499818,,,0,0,Drei Stunden,de +157354,Fruitvale Station,2013-07-25,85.0,http://www.fruitvalefilm.com/,,tt2334649,Every step brings you closer to the edge,"The true story of Oscar, a 22-year-old Bay Area resident, who crosses paths with friends, enemies, family, and strangers on the last day of 2008.",0,17385830,Fruitvale Station,en +205939,The Crown and the Dragon,2013-07-25,91.0,https://www.facebook.com/TheCrownandtheDragon?sk=info,,tt1913178,,"In a war-torn country that is plagued by a vicious dragon, Elenn, an arrogant, young noblewoman, accompanies her aunt on a mission to bring an ancient relic to the secret coronation of the rightful king.",0,0,The Crown and the Dragon,en +139519,Magic Magic,2013-07-26,97.0,,,tt1929308,Beware of the Unseen,"In remote Chile, a vacationing young woman begins to mentally unravel; meanwhile, her friends ignore her claim until it's too late.",0,0,Magic Magic,en +226188,Hidden Away,2013-07-26,84.0,http://www.mylifetime.com/movies/hidden-away,,tt2704578,,"A woman and young daughter escape her abusive husband by faking their deaths. Eight years later she is happily living in the upscale Palm Springs with her now-17-year-old daughter. When her husband discovers they are still alive, he tracks them down and spies on them to learn all about the new life they've created until he can exact his revenge.",0,0,Hidden Away,en +273404,I'll Follow You Down,2013-07-28,93.0,https://www.facebook.com/pages/Ill-Follow-You-Down/222501401232131,,tt2048770,,"After the disappearance of a young scientist on a business trip, his son and wife struggle to cope, only to make a bizarre discovery years later - one that may bring him home.",0,0,I'll Follow You Down,en +205891,The Demented,2013-07-30,92.0,,,tt2113792,,Six college friends unite for a weekend getaway where they find themselves fighting for their lives after a terrorist attack turns the local residents into rage infused zombies.,0,0,The Demented,en +209764,The Terror Live,2013-07-31,97.0,,,tt2990738,,"""I'll blow up Mapo Bridge."" An anonymous call comes into a radio station one day. When it turns out to be legitimate, a terrorist's threats end up getting broadcast live throughout the country.",0,0,더 테러 라이브,ko +242551,Act Like You Love Me,2013-08-06,93.0,,,tt2303112,,"Kelly Lofton is a young, successful dentist who has all the material things a woman could ask for. However, Kelly has struggled to find time for love in her busy schedule, so when her younger sister Susan gets engaged to a seemingly perfect man and organizes an extravagant engagement party, Kelly panics.",0,0,Act Like You Love Me,en +149910,Super Buddies,2013-08-07,81.0,,91657,tt2999390,You don't need superpowers to be a super hero.,"When the five puppies stumble upon the Five Power Rings of Inspiron (alien artifacts abandoned on Earth 16 years ago), they all develop super powers, and are enlisted in Captain Canine's battle against the evil Darkon alien Commander Drex. Captain Canine is commander of space ship Megasis and is from the planet Inspiron. He is the mortal enemy of the Commander Drex. In charge of protecting Princess Jorala and the Five Power Rings from Drex, Megasis places the rings in hiding on the planet Earth, and takes the form of a German Shepherd, intending to stay on earth in very deep cover. Adopted by aspiring young comic book artist Ian Shaeffer, and renamed Captain Canine, he spends 16 happy years on Earth, as Ian recounts the stories of his space adventures. But when the five Buddies discover the Power Rings and instantly develop superpowers, Captain Canine has to train them very quickly indeed - for Commander Drex is headed back to earth, and this time he's determined to succeed.",0,0,Super Buddies,en +212481,Ashens and the Quest for the Gamechild,2013-08-08,88.0,,,tt2902898,,"Ashens is going on a quest to find the legendary, and elusive electronic tat known as the Game Child.",123690,0,Ashens and the Quest for the Gamechild,en +146381,Justin and the Knights of Valour,2013-08-09,90.0,,,tt1639826,,"A heart-warming tale about friendship, honour & courage, which sees a young boy become a man as he embarks on a quest to become a knight.",22000000,0,Justin and the Knights of Valour,en +356482,Murder in the Dark,2013-08-09,82.0,,,tt1680102,It started as a game...,"When a group of young people camping in the ruins of a medieval Turkish town play a party game called 'Murder in the Dark', they soon discover that someone is taking the game too far...Produced in an experimental shooting style, this murder-mystery features a cast of actors who were not allowed to see the script. The actors' choices interactively changed the shape of the story. They had to use clues to solve the mystery laid out before them by the filmmakers.",0,0,Murder in the Dark,en +211579,Our Sunhi,2013-08-10,89.0,,,tt2942512,,"Sunhi (Jeong Yu-mi) from the Department of Film stops by the school one day to get a letter of recommendation from Professor Choi (Kim Sang-joong) to leave to the US. She expects him to write her a nice one since he took favor to her. She runs into two men from the past she's never met in a long time; Moon-soo (Lee Seon-gyoon), a recently turned movie director and senior director Jae-hak (Jeong Jae-yeong).",0,0,우리 선희,ko +214209,Hide and Seek,2013-08-14,107.0,,,tt3155654,,A missing brother. Hide and seeks codes. A shocking truth for two different families and the struggle to save their families from someone who is already living inside their house.,0,0,숨바꼭질,ko +186971,Age of Uprising: The Legend of Michael Kohlhaas,2013-08-14,122.0,,,tt2054790,,"In the 16th century in the Cévennes, a horse dealer by the name of Michael Kohlhaas leads a happy and prosperous family life. When a lord treats him unjustly, this pious, upstanding man raises an army and puts the country to fire and sword in order to have his rights restored.",0,0,Michael Kohlhaas,fr +214129,Bakit Hindi Ka Crush Ng Crush Mo?,2013-08-14,100.0,,,tt3094914,,An ugly ducking attempts to become desirable.,0,0,Bakit Hindi Ka Crush Ng Crush Mo?,en +156711,Austenland,2013-08-15,97.0,,,tt1985019,,"Obsessed with the BBC production of ""Pride and Prejudice"", a woman travels to a Jane Austen theme park in search for her perfect gentleman.",4900000,2159041,Austenland,en +203186,The Mine,2013-08-15,95.0,,,tt1329404,It's Alive,"Five school friends seek adventure on Halloween night in an abandoned, haunted mine, only to find to their horror that the ghostly rumors may be true as they fight for survival.",0,0,The Mine,en +179154,Standing Up,2013-08-16,93.0,,,tt1905042,They ran away and found themselves.,"Based on one of the most beloved Young Adult novels of all time: Two kids are stripped naked and left together on an island in a lake - victims of a vicious summer camp prank; But rather than have to return to camp and face the humiliation, they decide to take off, on the run together. What follows is a three day odyssey of discovery and self-discovery.",6000000,0,Standing Up,en +132363,The Butler,2013-08-16,132.0,,,tt1327773,One quiet voice can ignite a revolution.,"A look at the life of Cecil Gaines who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.",25000000,115922175,The Butler,en +115782,Jobs,2013-08-16,128.0,http://thejobsmovie.com/,,tt2357129,"Some see what's possible, others change what's possible.",The story of Steve Jobs' ascension from college dropout into one of the most revered creative entrepreneurs of the 20th century.,12000000,35931410,Jobs,en +220514,HazMat,2013-08-16,80.0,http://www.hazmatmovie.com,,tt2821832,It's all fun and games until someone loses a head.,"The television crew of the ""Scary Antics"" hidden camera show sets up a disturbed young man for a practical joke, but the joke is on them when heads roll.",0,0,HazMat,en +143144,Justice Is Mind,2013-08-18,0.0,,,tt2289920,,"In a future where MRI technology can read your mind, the trial of the century soon begins when a defendant faces his own memory for a double murder he doesn't remember committing.",25000,0,Justice Is Mind,en +216989,Doug Stanhope: Beer Hall Putsch,2013-08-19,61.0,,,tt2833398,,"Named after Hitler's failed coup attempt, Beer Hall Putsch brings you deeper into acerbic comic Doug Stanhope's twisted world with his newest one hour stand-up special filmed live at Dante's in Portland.",0,0,Doug Stanhope: Beer Hall Putsch,en +205943,Severed Footage,2013-08-20,1.0,http://www.severedfootage.com,,tt2375505,,Twelve severed feet in running shoes found on the shores of Western Canada have baffled Police. A videotape is leaked anonymously from the authorities. This paranormal thriller may solve the mystery of the severed feet.,0,0,Severed Footage,en +190955,Blood Ties,2013-08-22,128.0,,,tt1747958,Crime runs in the family.,"Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.",25500000,2415472,Blood Ties,en +201749,Mr. Morgan's Last Love,2013-08-22,116.0,,,tt1838603,It's never too late to love life again.,"The film centres on a retired, widowed professor living in Paris who develops a special relationship with a younger French woman.",8200000,0,Mr. Morgan's Last Love,en +199602,Dual,2013-08-22,102.0,,,tt2917916,Two languages. Two people in love. One secret.,"The paths of two girls cross one evening in Ljubljana. Tina, a Slovene, and Iben, a Danish girl of similar age, both experiencing some kind of turning point in their lives, open up to one another and soon develop a close bond...",1000000,0,Dvojina,sl +199644,Honeymoon,2013-08-22,92.0,,,tt2718538,,"A wedding is supposed to be a joyous occasion, but things can go awry. When an uninvited guest turns up at the church and later at the reception as well, the newly-weds’ day turns sour. Shadows of the past can blight the most sumptuous of banquets and rend the most affectionate of embraces.",0,0,Líbánky,cs +172847,Scenic Route,2013-08-23,85.0,,,tt2012011,There is no turning back,"Stranded on an isolated desert road, two life-long friends fight for survival as their already strained relationship spirals into knife-wielding madness.",0,0,Scenic Route,en +136466,Sparrows Dance,2013-08-23,81.0,,,tt1822311,,"A young woman, struggling with agoraphobia, hasn't left her New York apartment or seen anyone in over a year. However, when her toilet overflows she is forced to call in the plumber.",175000,0,Sparrows Dance,en +224778,The Gauntlet,2013-08-23,85.0,https://www.facebook.com/TheGauntletMovie,,tt1067773,In Hell... Only your sins can save you...,"In a sunken Castle underneath the earth, five strangers wake. They have no food. No memory. No water. And no way out. These strangers are from every normal walk of life, yet they each have a secret. They don’t know it yet, but they’re capable of something they never imagined. They must organize and band together for the sinister adventure that awaits them.",0,0,The Gauntlet,en +217341,Rewind,2013-08-26,120.0,,,tt2193185,,"Revolves around a team of military field operatives and civilian scientists who must use untested technology to travel back in time to alter past events in order to change the future and avoid a devastating terrorist attack. Feature length pilot for failed tv series, released as a made for TV movie.",0,0,Rewind,en +186991,Grand Central,2013-08-28,94.0,,,tt2835548,,A young unemployed man finds work at a nuclear power plant and begins an illicit affair with the fiancée of one of his senior workmates.,0,0,Grand Central,fr +145668,Butcher Boys,2013-09-06,86.0,http://www.facebook.com/pages/B-o-n-e-b-o-y-s/117938788218503?ref=ts,,tt1740476,You are what you eat,"A gut-wrenching, non-stop roller coaster ride through the hellish underbelly of inner-city America. A birthday celebration at an upscale restaurant sets in motion events that bring Sissy, her brother, Mikey, and friends, Kenny and Barbie, face to face with the macabre world of the Boneboys. Inspired by Jonathan Swift's cannibalistic tale A Modest Proposal, the Boneboys are international predators who deal in human flesh - dead or alive. Their hunting grounds are the cities of the world.",0,0,Butcher Boys,en +219666,Letters To Sofija,2013-08-28,0.0,,,tt2338874,A Lithuanian Love Affair,"Based on a true story, this is the love affair between a Lithuanian genius and the woman and the country he adored. Mikalojus Konstantinas Ciurlionis was born into a Lithuanian peasant family in 1875. Despite his lowly origins he soon revealed himself to be a child prodigy able to both paint and compose music of startling and often frightening intensity. Soon after he was struck down by a mysterious mental illness, which would plague him for the rest of his life. During his short lifetime, Ciurlionis produced over 300 paintings and 300 musical compositions. Supporting him throughout his short and painful life was his beloved wife, Sofija Kymantaite, a journalist and political activist.",0,0,Laiškai Sofijai,en +172828,Bad Milo,2013-08-28,85.0,,,tt2274570,Embrace your inner demon.,A horror comedy centered on a guy who learns that his unusual stomach problems are being caused by a demon living in his intestines.,0,19613,Bad Milo!,en +202214,Real Playing Game,2013-08-28,103.0,,,tt2043971,To Win is to Survive,"In a future not too far away, Steve Battier, an elderly, terminally ill multi-millionaire, accepts the offer of a company - RPG - that in exchange for a high monetary sum, provides a very select group of clientèle the chance to be young again. For 10 hours, 10 millionaires from around the world, men and women of fame and power, are transferred to attractive and healthy younger bodies, to live in a world of temporary rejuvenation, in a game of real thrills, where every hour someone must die.",704460,0,Real Playing Game,en +210052,Wolfskinder,2013-08-28,91.0,,,tt2582320,,"The story of a boy who, driven by the search for his lost brother in the turmoil of WWII, joins a group of children in order to survive the chaos of post-war anarchy in the haunted forests of Lithuania.",0,0,Wolfskinder,de +164558,One Direction: This Is Us,2013-08-28,92.0,http://www.1dthisisus-movie.com/feature/mosaic/,,tt2515086,A motion picture event.,"Go behind the scenes during One Directions sell out ""Take Me Home"" tour and experience life on the road.",10000000,0,One Direction: This Is Us,en +168552,Youth,2013-08-29,107.0,,,tt2670524,,"Brothers Yaki and Shaul live with their parents in Petah Tikva, a satellite town of Tel Aviv. Yaki is doing military service. As for all other 18-year-old Israelis, this means he is allowed to carry a gun. This weapon gives the brothers the power to change their lives and that of their family – or so they believe.",0,0,Hanoar,he +224950,Solo,2013-08-29,83.0,,,tt2374196,,A teenage girl is terrorized when she spends two nights alone on a remote island as part of her camp counselor initiation.,0,0,Solo,en +222890,Stonados,2013-08-31,90.0,,,tt2494032,,A storm chaser tries to save Boston from destruction when a freak tornado bombards the city with huge boulders.,0,0,Stonados,en +236324,Social Nightmare,2013-08-31,91.0,,,tt2953196,Mother - She'll Keep you Safe,A student's chances of getting into a good college hang in the balance when inappropriate photos of her are posted on the Internet.,0,0,Social Nightmare,en +294047,The Levenger Tapes,2013-09-01,0.0,,,tt1644669,,"Detectives in a remote town pore through every frame of a troubling tape to find the whereabouts of three missing college students. The chilling footage becomes more and more disturbing when the students come upon the bloody dress of an 8-year-old girl in the secluded wilderness and take it upon themselves to find her. Linking the case of the missing girl and the missing students together, the detectives race to piece enough information together to find them alive.",0,0,The Levenger Tapes,ru +212503,King Ordinary,2013-09-04,97.0,,,tt3002578,,,0,0,König von Deutschland,de +214081,A Promise,2013-09-04,94.0,,,tt2191082,,"A romantic drama set in Germany just before WWI and centered on a married woman who falls in love with her husband's teacher. Separated by the war, they pledge their devotion to one another.",0,0,A Promise,en +218329,Breakout,2013-09-04,89.0,,,tt2314886,,A pair of criminals try to track down the kids who witnessed them commit a murder in the woods.,0,0,Breakout,en +188598,Ilo Ilo,2013-09-04,99.0,http://www.iloilomovie.com,,tt2901736,,"Set in the mid 1990s in Singapore, ILOILO chronicles the relationship between a family and their maid from Ilo Ilo, a province in the Philippines.",0,0,Ilo Ilo,zh +160160,Vic+Flo Saw a Bear,2013-09-04,95.0,,,tt2385882,,This is the portrait of two recently released prisoners (Pierrette Robitaille and Romane Bohringer) who learn to live in a sugar shack deep in the forest.,0,0,Vic+Flo ont vu un ours,fr +213983,Club Sandwich,2013-09-05,82.0,,,tt3118696,,"While vacationing at a beachside resort, a single mother faces inevitable separation anxiety when her 15-year-old son — who is also her best friend — discovers magical chemistry with a girl his own age.",0,0,Club Sandwich,en +218898,Zanjeer,2013-09-05,138.0,,,tt2357489,,A remake of the 1973 action film of the same name.,0,0,Zanjeer,hi +215743,Moebius,2013-09-05,89.0,http://www.ramreleasing.com/films/moebius/,,tt2942522,HELL HATH NO FURY LIKE A WOMAN SCORNED,"A wife, overwhelmed with hatred for her husband, inflicts an unspeakable wound on their son, as the family heads towards horrific destruction.",0,2340,뫼비우스,ko +173301,Good Ol’ Freda,2013-09-06,86.0,http://www.goodolfreda.com/,,tt2505938,The first independent film to have successfully licensed original Beatles recordings.,"The story of Freda Kelly, a shy Liverpudlian teenager asked to work for a young local band hoping to make it big: The Beatles. Their loyal secretary from beginning to end, Freda tells her tales for the first time in 50 years.",0,135039,Good Ol’ Freda,en +193523,Hotel,2013-09-06,97.0,,,tt2363178,,Erika is mentally bruised and starts group therapy with people seeking absolute anonymity.,0,0,Hotell,sv +209413,Intrepido: A Lonely Hero,2013-09-06,104.0,,,tt3074784,,A middle-aged man tries to get by in Milan while trying to retain his dignity.,0,0,L'intrepido,en +215928,Around the Block,2013-09-06,104.0,,,tt1847541,,A young Aboriginal boy is torn between his unexpected love of acting and the disintegration of his family.,0,0,Around the Block,en +207850,Tio Papi,2013-09-06,90.0,,,tt1986998,,"It was a bachelor’s life for hard-working and fun-loving Ray Ray Dominguez (Joey Dedio) who dreamt of leaving the barrio for a more carefree existence in Miami. That’s until one day when everything changed – and he became a reluctant “Tio Papi” aka Uncle Daddy to his sister’s six children ages 6 to 16. Now, in charge of raising this energetic (and expensive) clan, Ray Ray must make important decisions on what life really is all about. Combining heart-warming drama with light-hearted comedy, TIO PAPI, directed by Fro Rojas from the original screenplay by Joey Dedio and Brian Herskowitz, is an upbeat story of life’s unexpected surprises and ultimately what matters the most – the love of family.",0,0,Tio Papi,en +209410,Shuddh Desi Romance,2013-09-06,141.0,http://shuddhdesiromance.com/,,tt2988272,,"Does what starts physical always turn into love? And what reaches love, always turn into commitment? How do you figure out?",0,0,Shuddh Desi Romance,hi +149509,Horns,2013-09-06,120.0,,,tt1528071,He Will Bring Out The Devil In You,"In the aftermath of his girlfriend's mysterious death, a young man awakens to strange horns sprouting from his temples.",0,0,Horns,en +253395,Above Dark Waters,2013-09-06,108.0,,,tt2192580,,A ravishing story about little Pete and his survival and growth in the gray area between love and fear.,2000000,0,Tumman veden päällä,fi +152532,Dallas Buyers Club,2013-09-07,117.0,,,tt0790636,Sometimes it takes a hustler to change the world,"Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.",5000000,55198285,Dallas Buyers Club,en +198277,Begin Again,2013-09-07,104.0,,,tt1980929,You're only as strong as your next move.,"Gretta's celebrity boyfriend breaks up with her after a long-term relationship, leaving the singer to find success on her own. With the help of record producer, Dan and hip-hop celebrity, Trouble Gum, Gretta strives to fulfil her musical ambitions.",8000000,63464861,Begin Again,en +214138,Bad Hair,2013-09-07,93.0,,,tt3074610,,"A nine-year-old boy’s preening obsession with straightening his hair elicits a tidal wave of homophobic panic in his hard-working mother, in this tender but clear-eyed coming-of-age tale.",0,0,Pelo malo,es +209271,Hateship Loveship,2013-09-07,103.0,,,tt2463512,Dare to care.,"A wild teenage girl orchestrates a romance between her nanny and her father, who is a recovering addict.",0,0,Hateship Loveship,en +192133,Jimi: All Is by My Side,2013-09-07,118.0,,,tt2402085,,A drama based on Jimi Hendrix's pre-fame years.,0,340911,Jimi: All Is by My Side,en +209244,Are You Here,2013-09-07,114.0,,,tt1545754,Friendship... there's nothing in it for anybody.,"When Steve Dallas, a womanizing local weatherman, hears that his off-the-grid best friend Ben Baker has lost his estranged father, the two return to Ben's childhood home. Once there, they discover Ben has inherited the family fortune, and the ill-equipped duo must battle Ben's formidable sister and deal with his father's gorgeous 25-year old widow.",0,0,Are You Here,en +214093,Love Is the Perfect Crime,2013-09-07,110.0,,,tt3103576,,"Marc, in his 40s, is a professor of literature at the University of Lausanne. Still a bachelor — and still living with his sister Marianne in a huge, isolated chalet that they inherited when they were very young — he carries on one love affair after another with his students. Winter has almost ended when one of his most brilliant students, Barbara, suddenly disappears. Two days later, Marc meets Barbara’s mother, Anna, who wants to find out more about her vanished daughter.",0,0,L'Amour Est un Crime Parfait,fr +298396,Los Flamencos,2013-09-07,0.0,http://www.vlaamsefilm.be/los-flamencos,,tt3088362,,"Los Flamencos is a comedy about death. Starring Herwig Illegems, Peter Van den Eede and Mark Verstraeten.",0,0,Los Flamencos,en +212756,Stay,2013-09-08,99.0,,,tt2234032,,A woman finds out she's pregnant and returns home when the expected father wants nothing to do with her.,0,0,Stay,en +211387,Marvel One-Shot: Agent Carter,2013-09-08,15.0,,,tt3067038,In an all-new Captain America adventure,"The film takes place one year after the events of Captain America: The First Avenger, in which Agent Carter, a member of the Strategic Scientific Reserve, is in search of the mysterious Zodiac.",0,0,Marvel One-Shot: Agent Carter,en +220674,The Wipers Times,2013-09-11,90.0,http://www.bbc.co.uk/programmes/p01d0zrj,,tt2763790,,"When Captain Fred Roberts discovered a printing press in the ruins of Ypres, Belgium in 1916, he decided to publish a satirical magazine called The Wipers Times - ""Wipers"" being army slang for Ypres. Full of gallows humour, The Wipers Times was poignant, subversive and very funny. Produced literally under enemy fire and defying both authority and gas attacks, the magazine proved a huge success with the troops on the western front. It was, above all, a tribute to the resilience of the human spirit in the face of overwhelming adversity. In his spare time, Roberts also managed to win the Military Cross for gallantry.",0,0,The Wipers Times,en +289336,Dagmamman,2013-09-11,88.0,,,tt2421234,,"Malla and her husband are moving apart. When Malla gets a new daycare child, she understands how lonely she is.",0,0,Dagmamman,sv +284189,Les mauvaises têtes,2013-09-11,,,,tt3135362,,,0,0,Les mauvaises têtes,fr +106747,Machete Kills,2013-09-12,107.0,,210006,tt2002718,Trained to kill. Left for dead. Back for more.,Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man – he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.,12000000,15008161,Machete Kills,en +218688,UMMAH - Unter Freunden,2013-09-12,107.0,,,tt2664258,,,0,0,UMMAH - Unter Freunden,de +158739,Blue Caprice,2013-09-12,93.0,,,tt2027064,Some killers are born. Others are driven to it.,A narrative feature film inspired by the events known as the Beltway sniper attacks.,0,0,Blue Caprice,en +217412,Da geht noch was!,2013-09-12,101.0,,,tt2517558,,,0,0,Da geht noch was!,de +215741,How Strange to be Named Federico: Scola Narrates Fellini,2013-09-12,90.0,,,tt2952634,,"On the 20th anniversary of Federico Fellini’s death, Ettore Scola, a devoted admirer of the incomparable maestro, commemorates the lesser-known aspects of Fellini’s personality, employing interviews, photographs, behind-the-scenes footage as well as Fellini’s drawings and film clips.",96,0,Che strano chiamarsi Federico,en +141819,Unforgiven,2013-09-13,135.0,,,tt2347134,,"Set in Hokkaido, Japan in the 1880s. Jubei Kamata (Ken Watanabe), who is on the side of the Edo shogunate government, kills many people. His name is infamous in Kyoto. When the battle at Goryoukaku is about to be finished, Jubei disappears. 10 years later, Jubei lives with his kid in relative peace. He is barely able to make a living. Protecting his dead wife's grave, Jubei has decided to never pick up a sword again, but due to poverty he has no choice but to pick the sword again. Jubei becomes a bounty hunter.",0,0,許されざる者,ja +221801,Naked as We Came,2013-09-13,84.0,http://www.nakedaswecamethemovie.com/,,tt1754257,It's never too late.,"Love, loss and hope are tumultuously explored amidst a tranquil backdrop and asks us all the question: What is your dream?",0,0,Naked as We Came,en +215881,Plush,2013-09-13,98.0,http://plushthemovie.com/,,tt2226519,There's a fine line between love and obsession.,"A young singer/songwriter, despite being married, becomes involved with her new guitarist, who she soon discovers has a dark past and may be a danger to her and those close to her.",0,0,Plush,en +172457,Afterparty,2013-09-13,80.0,,,tt2144007,,"Martin (Luis Fernandez) is the star of ""Camp Blood"", a hit TV show and one of the biggest teen idols of the time. One morning wake up locked in a huge house after a wild party with three girls I met last night. Through a mobile from which can´t call, start receiving videos showing the deaths of younger locked in the house, run by a mysterious figure dressed as the murderer who appears in the series starring Martin.",0,0,Afterparty,en +224903,Final: The Rapture,2013-09-13,90.0,http://www.watchfinal.com/,,tt2710368,What if you woke up and it finally happened?,"A gritty, international tale of four separate stories woven together by a common theme: the Rapture.",0,92100,Final: The Rapture,en +134350,Why Don't You Play in Hell?,2013-09-14,126.0,,,tt2409302,,"In Japan, gonzo filmmakers hatch a three-pronged plan to save an actress's career, end a yakuza war and make a hit movie.",0,0,地獄でなぜ悪い,ja +220488,My Lucky Star,2013-09-17,114.0,,,tt2102502,,My Lucky Star is a 2013 Chinese romance film directed by Dennie Gordon and starring Zhang Ziyi and Leehom Wang. The film also serves as a prequel to the 2009 film Sophie's Revenge.,0,0,非常幸运,zh +230428,Cas & Dylan,2013-09-17,90.0,,,tt2334593,,"A dying Doctor, who plans to check out on his own terms, takes a reluctant detour when he inadvertently winds up on the lam with an 'anything-but-normal' 22-year-old girl.",0,0,Cas & Dylan,en +204768,Les invincibles,2013-09-18,0.0,,,tt2207090,,,0,0,Les invincibles,fr +204771,Le Monde doit m'arriver,2013-09-18,0.0,,,tt2145778,,,0,0,Le Monde doit m'arriver,fr +158870,Newlyweeds,2013-09-18,87.0,,,tt2217936,,"A match made in stoner heaven turns into a love triangle gone awry when Lyle can't decide which matters most, Nina or Mary Jane.",0,0,Newlyweeds,en +209263,Enough Said,2013-09-18,93.0,,,tt2390361,,"Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert — a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex–husband of Marianne...",0,25288872,Enough Said,en +146233,Prisoners,2013-09-18,153.0,http://prisonersmovie.warnerbros.com/,,tt1392214,Every moment matters.,"When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?",46000000,122126687,Prisoners,en +210910,Almost Human,2013-09-19,80.0,,,tt2325517,,"Mark Fisher disappeared from his home in a brilliant flash of blue light almost two years ago. His friend Seth Hampton was the last to see him alive. Now a string of grisly, violent murders leads Seth to believe that Mark is back, and something evil is living inside of him.",0,0,Almost Human,en +211879,Free Range/Ballad on Approving of the World,2013-09-19,104.0,,,tt3198484,,The story of a promising young man with exciting career opportunities and a looming marital bliss.,0,0,Free Range/Ballaad Maailma Heakskiitmisest,en +147533,The Russian Novel,2013-09-19,140.0,,,tt2526152,,"About an aspiring author who wakes up from a 27-year coma as one of his country's finest authors, credited for a book he didn't write.",0,0,러시안 소설,ko +207021,Generation Iron,2013-09-20,106.0,http://generation-iron.com/,,tt2205904,,Generation Iron - examines the professional sport of bodybuilding today and gives the audience front row access to the lives of the top 7 bodybuilders in the sport as they train to compete in the world's most premiere bodybuilding stage - Mr. Olympia.,0,0,Generation Iron,en +191312,For Elise,2013-09-20,75.0,,,tt2403419,,"A young college is responsible for the care of an innocent little girl, but soon all he knows give a twist that will endanger his own life. All begin when crossing under the floor of the third floor to the left, a road without knowing directly the door open to the forces of evil, freeing them at will through the building. A desperate race to save the lives when terror and pure evil are in the next aisle.",0,0,Para Elisa,es +210047,Cold Comes the Night,2013-09-20,90.0,,,tt2511428,Sometimes the fight of your life comes in the dead of night.,A struggling motel owner and her daughter are taken hostage by a nearly blind career criminal to be his eyes as he attempts to retrieve his cash package from a crooked cop.,0,16971,Cold Comes the Night,en +300090,White Rabbit,2013-09-20,90.0,http://whiterabbitfilm.com,,tt2241116,,"A bullied student sees visions of a rabbit he was forced to kill as a child, and those visions propel him into a state where his imagination causes him to carry out violent acts.",2000000,0,White Rabbit,en +109417,Battle of the Year,2013-09-21,110.0,,,tt1532958,The World is watching,"A down-on-his-luck coach is hired to prepare a team of the best American dancers for an international tournament that attracts all the best crews from around the world, but the Americans haven't won in fifteen years.",20000000,16549477,Battle of the Year,en +211059,September,2013-09-21,99.0,,,tt2637994,,The death of a pet prompts the unraveling of a woman.,0,0,September,el +220820,Blood of Redemption,2013-09-23,85.0,,,tt2510268,,"Quinn Forte had it all: power, money, a brother who idolized him, and a woman who loved him. He also had enemies. In the course of one night, he loses everything. Betrayed by someone in his inner circle, Quinn is set up and arrested. His father, the patriarch of the criminal empire is killed and his brother suspects that Quinn is behind it all. When he's released from jail he tries to escape the demons from his past, but that becomes an impossible task. Campbell, the ruthless new leader of ""The Company"" won't let him leave in peace. So instead of escaping them, Quinn fights back. He joins forces with his former henchman and friend, The Swede, and takes on his enemies head on.",0,0,Blood of Redemption,en +146238,Runner Runner,2013-09-24,91.0,http://www.runnerrunnermovie.com/,,tt2364841,The house always wins.,"When a poor college student who cracks an online poker game goes bust, he arranges a face-to-face with the man he thinks cheated him, a sly offshore entrepreneur.",30000000,62616646,Runner Runner,en +222297,On the Way to School,2013-09-25,77.0,,,tt3013258,,"These children live in the four corners of the earth, but share the same thirst for learning. They understand that only education will allow them a better future and that is why, every day, they must set out on the long and perilous journey that will lead them to knowledge. Jackson and his younger sister from Kenya walk 15 kilometres each way through a savannah populated by wild animals; Carlito rides more than 18 kilometres twice a day with his younger sister, across the plains of Argentina; Zahira lives in the Moroccan Atlas Mountains who has an exhausting 22 kilometres walk along punishing mountain paths before she reaches her boarding school; Samuel from India sits in a clumsy DIY wheelchair and the 4 kilometres journey is an ordeal each day, as his two younger brothers have to push him all the way to school…",0,7424,Sur le chemin de l'école,fr +216521,Doomsdays,2013-09-26,91.0,http://doomsdaysmovie.com,,tt2395146,,Follows the dark-comic adventures of two men who live an itinerant existence breaking into country houses.,0,0,Doomsdays,en +224885,Red Wing,2013-10-04,108.0,,,tt2265080,A Timeless Journey,"A socially thought-provoking and stirring love story based on the French novella, 'François Le Champi' by George Sand.",0,0,Red Wing,en +224233,Mato sem Cachorro,2013-10-04,0.0,,,tt2039369,,,0,0,Mato sem Cachorro,pt +109451,Cloudy with a Chance of Meatballs 2,2013-09-26,95.0,,177467,tt1985966,Something big was leftover.,"After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.",78000000,248384621,Cloudy with a Chance of Meatballs 2,en +217923,Young Detective Dee: Rise of the Sea Dragon,2013-09-27,133.0,,222639,tt2992146,,"A prequel to ""Detective Dee and the Mystery of the Phantom Flame""",0,72287783,狄仁杰之神都龙王,zh +210913,Blood Glacier,2013-09-27,98.0,,,tt2299206,Terror has Evolved!,"At a climate research station in the Alps, the scientists are stunned as the nearby melting glacier is leaking a red liquid. It quickly turns to be very special juice — with unexpected genetic effects on the local wildlife.",0,0,Blutgletscher,de +196027,Echoes from the Dead,2013-09-27,0.0,,,tt2425852,,"On a foggy day, Julia‘s six-year-old son Jens is called missing. Despite a thorough search, the boy is never found. Twenty years later, Julia’s father receives one of the shoes Jens was wearing the day he disappeared. Who sent it? Why? Is the boy still alive? This inexplicable act suddenly awakens a hope in Julia that she might see her son again… or that she could find his body and murderer. As she returns to her father’s island, she hears stories of the mythical Nils Kant – a murderer who once was the terror of the island. He is dead and buried for years, long before Julia’s son disappeared. But Julia’s father uncovers that his death and burial were only a fake. While on his tracks, Julia accepts the help and love of Lennart, a local police inspector. His dark and mysterious past brings him a lot closer to Jens’s disappearance that she might think…",0,0,Skumtimmen,en +218425,Frequencies,2013-09-27,105.0,,,tt2414766,,"This science fiction love story follows the forbidden relationship between a 'low born' boy and a 'high born' girl in an alternate reality where every person's relationships and life worth are determined by their innate ""frequencies"".",0,0,Frequencies,en +159128,We Are What We Are,2013-09-27,105.0,,,tt2309021,Blood is the strongest bond.,"In this reimagining of the 2010 Mexican film of the same name, director Jim Mickle paints a gruesome portrait of an introverted family struggling to keep their macabre traditions alive, giving us something we can really sink our teeth into.",0,81381,We Are What We Are,en +78383,Nurse 3-D,2013-09-28,99.0,,,tt1913166,Your pain is her pleasure.,"Abby Russell, a beautiful, dedicated nurse with a sinister side, has a secret life in which she targets and punishes dishonest men.",10,10000000,Nurse 3-D,en +212156,The Garden of Sinners: Future Gospel,2013-09-28,88.0,http://www.karanokyoukai.com/,23240,tt2983564,,"Mirai Fukuin (lit. The Future's Gospel) is a side story of Kara no Kyoukai novel series. It is divided into two parts, Möbius ring, and Möbius Link.",0,0,劇場版「空の境界」未来福音,ja +226269,13/13/13,2013-09-30,90.0,,,tt2991516,,It's the 13th month of the 13th year of the new millennium.,0,0,13/13/13,en +233466,Hawaiian: The Legend of Eddie Aikau,2013-10-01,79.0,http://espn.go.com/30for30/film?page=hawaiian-the-legend-of-eddieaikau,,tt2488386,,"Director Sam George chronicles the remarkable life and times of the late Eddie Aikau, the legendary Hawaiian big wave surfer, pioneering lifeguard and ultimately doomed crew member of the Polynesian voyaging canoe Hokulea.",0,0,Hawaiian: The Legend of Eddie Aikau,en +220809,The Phone Call,2013-10-01,20.0,https://www.facebook.com/thephonecall,,tt3071532,,"Heather is a shy lady who works in a helpline call centre. When she receives a phone call from a mystery man, she has no idea that the encounter will change her life forever.",0,0,The Phone Call,en +294608,The Light of Freedom,2013-10-01,0.0,,,tt3248988,,"It is the year 1861 and President Lincoln has called for 75,000 men to join the Union Army. As the Civil War begins, another battle has been raging for decades. It is the fight for freedom waged by the Underground Railroad.",0,0,The Light of Freedom,en +217775,Chez Nous,2013-10-02,97.0,,,tt2206082,,Chez Nous is a feel good comedy and the name of a cafe in the heart of Amsterdam that is on the brink of being closed.,0,0,Chez Nous,en +245170,Pokémon Origins,2013-10-02,88.0,,,tt3218680,Gotta catch 'em all!,"Serving as a more faithful adaptation of the Pokémon Red and Blue games, the story follows a young boy named Red who begins a journey with his Pokémon partner, Charmander, as he seeks to capture all the known Pokémon in the Kanto region and become the Pokémon League champion.",0,0,Poketto Monsutā Ji Orijin,ja +214100,Sunshine on Leith,2013-10-03,100.0,,,tt2481198,When it happens... there's nothing like it!,"Davy and Ally have to re-learn how to live life in Edinburgh after coming home from serving in Afghanistan. Both struggle to learn to live a life outside the army and to deal with the everyday struggles of family, jobs and relationships. Sunshine on Leith is based on the sensational stage hit of the same name, featuring music by pop-folk band The Proclaimers.",0,0,Sunshine on Leith,en +215740,Home from Home – Chronicle of a Vision,2013-10-03,225.0,,,tt1998204,,"Follow-up to the TV trilogy ""Heimat"", this time for cinemas, set again in the fictional village Schabbach in the Hunsrück region of Rhineland-Palatinate.",0,0,Die andere Heimat - Chronik einer Sehnsucht,de +115283,A.C.O.D.,2013-10-03,88.0,,,tt1311060,He's About To Ruin A Perfectly Good Divorce,"A grown man is still caught in the crossfire of his parents' 15 year divorce. He discovers he was unknowingly part of a study on divorced children and is enlisted in a follow-up years later, which wreaks new havoc on his family.",0,175705,A.C.O.D.,en +159770,The Dirties,2013-10-04,83.0,http://www.thedirtiesthemovie.com/,,tt2334896,,Two best friends are filming a comedy about getting revenge on the bullies at their high school. One of them isn't joking.,0,0,The Dirties,en +241742,Alone For Christmas,2013-10-04,82.0,,,tt3120508,"When they left him Home Alone, He had to SAVE CHRISTMAS.","When a family visits Grandma's house on Christmas Eve, they leave their dog at home alone. And when burglars try to take the presents from under the tree, the dog must use every trick it knows to stop them.",0,0,Alone For Christmas,en +187022,A Touch of Sin,2013-10-04,133.0,,,tt2852400,,Four independent stories set in modern China about random acts of violence.,0,154120,天注定,zh +159142,Linsanity,2013-10-04,88.0,,,tt2359427,,"The life story of basketball sensation, Jeremy Lin.",0,0,Linsanity,en +206284,Grace Unplugged,2013-10-04,102.0,http://www.graceunplugged.com/,,tt2349460,Would you give up what you need... to get everything you want?,"A talented young singer and aspiring songwriter’s Christian faith and family ties are tested when she defies her worship-pastor father and pursues pop-music stardom in GRACE UNPLUGGED, a moving and inspiring new film that explores the true meaning of success.",0,0,Grace Unplugged,en +239845,The Patrol,2013-10-04,85.0,http://www.thepatrolfilm.com,,tt2101507,"If you know neither yourself nor your enemy, you will lose every battle","Afghanistan, 2006, Helmand Province becomes one of the most dangerous places on Earth as the British Army is deployed into the Taliban heartland. The Operation, Herrick, became synonymous with the struggle as British troops fought a losing battle against this unseen enemy.",1000000,0,The Patrol,en +86829,Inside Llewyn Davis,2013-10-06,105.0,http://www.cbsfilms.com/inside-llewyn-davis/,,tt2042568,,"In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future following the suicide of his singing partner.",11000000,32935319,Inside Llewyn Davis,en +226792,Complicity,2013-10-07,81.0,,,tt1891770,,"When a seemingly fun party goes horribly awry, a group of teenagers must decide their fates.",0,0,Complicity,en +227200,Barbie & Her Sisters in A Pony Tale,2013-10-07,72.0,,,tt3321254,,"Barbie and her sisters set off on a Swiss adventure to the majestic Alps, where they're excited to spend the summer at a fun-filled riding academy! Barbie can't wait to find a new horse to bring back to Malibu. Stacie is super excited to prove she's an amazing equestrian. All Chelsea wants to do is ride the big horses, and Skipper...well let's just say she's more interested in writing about the great outdoors than experiencing it. The sisters' vacation gets off to a rocky start, but when Barbie discovers a mysterious wild horse in the woods, their visit becomes truly magical.",0,0,Barbie & Her Sisters in A Pony Tale,en +226632,Marc Maron: Thinky Pain,2013-10-07,90.0,http://movies.netflix.com/WiMovie/70273401?locale=en-US&mqso=81091916&titleVideoId=70273401&baAdId=3574859672&baKeywordId=20507579543&baBidMatchType=bp&baMatchType=p&baQueryString=marc%20maron:%20thinky%20pain%20%282013%29,,tt3004634,,"Marc Maron returns to his old stomping grounds for an intimate special in which he takes stock of himself. More than ever, Maron is raw and hilariously honest as he dissects his own neuroses and self-loathing while providing outrageous anecdotes from his personal life, in which he starts to realize the hurt isn't real, it's just ""Thinky Pain.""",0,0,Marc Maron: Thinky Pain,en +219247,Zombie Night,2013-10-08,88.0,,,tt2978716,"Tonight, at sundown... the dead will rise again",Zombies come out at night and two families must survive until morning.,1000000,0,Zombie Night,en +214910,Hwayi: A Monster Boy,2013-10-09,125.0,,,tt2972362,,"A 5 member gang, led by Seok-Tae (Kim Yun-Seok), kidnaps a baby boy named Hwa-Yi and raises the baby like their own son. The baby boy is now 17 years old (Yeo Jin-Goo) and has turned into a lethal killer. Taking part in his father's gang, Hwa-Yi learns about his own past. Hwa-Yi pulls out his gun to find out who he really is.",0,0,화이: 괴물을 삼킨 아이,ko +215658,Luton,2013-10-10,100.0,,,tt3112966,,"Jimmy, Mary and Makis are three people living their everyday day life in an entirely different manner. They seem to have nothing in common and normally they shouldn’t even know each other…",0,0,Luton,en +255869,Pleased to Meet Me,2013-10-10,88.0,http://pleasedtomeetmemovie.com/,,tt2400256,"One nearly forgotten rock legend, six complete unknowns, and only 24 hours to make their dreams a reality.","Rocker Pete Jones is in trouble. He’s solo in his personal and professional life and he can’t seem to finish his long-awaited album. Threatened with bankruptcy and a lawsuit from his label, Pete turns to his lost love and former producer-turned-radio-reporter Laura Klein for help. Together, they form an eclectic group of musicians who have never met to create a band, for one day and one day only.",0,0,Pleased to Meet Me,en +226936,Aspirante vedovo,2013-10-10,84.0,http://www.01distribution.it/film.php?id=22,,tt3254706,,"A ne'er-do-well who's married to a millionnaire realizes his financial trouble might be solved if his wife was dead - and sets out a plot to achieve just that. A remake of Dino Risi's ""il vedovo"".",0,0,Aspirante vedovo,it +226693,Spieltrieb,2013-10-10,102.0,,,tt2230342,,"A tangled drama of cruelty and manipulation, attraction and love.",0,0,Spieltrieb,de +109424,Captain Phillips,2013-10-10,134.0,http://www.captainphillipsmovie.com,,tt1535109,Out here survival is everything.,"The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.",55000000,95000000,Captain Phillips,en +240881,Free Ride,2013-10-10,86.0,,,tt1839482,Crime pays... or it costs you everything.,A single mom in the 1970s raises her two daughters and becomes involved in illegal drug trade to make a better life.,0,0,Free Ride,en +111479,CBGB,2013-10-11,101.0,,,tt1786751,"50,000 bands and 1 disgusting bathroom",CBGB looks at New York's dynamic punk rock scene through the lens of the ground-breaking Lower East Side club started by eccentric Hilly Kristal (Alan Rickman) in 1973 which launched thousands of bands.,5000000,40400,CBGB,en +203321,Not Another Happy Ending,2013-10-11,102.0,,,tt1808339,Sometimes love needs a re-write.,"When a struggling publisher discovers his only successful author is blocked he knows he has to unblock her or he's finished. With her newfound success, she's become too damn happy and she can't write when she's happy.The only trouble is, the worse he makes her feel, the more he realises he's in love with her.",0,0,Not Another Happy Ending,en +209251,Cannibal,2013-10-11,117.0,,,tt1718747,Love Is Insatiable,"Carlos is the most prestigious tailor in Granada, but he's also a murderer in the shadows. He feels no remorse, no guilt, until Nina appears in his life and love awakens.",0,0,Caníbal,es +217925,Jay-Z: Made in America,2013-10-11,0.0,,,tt2366572,,"Hip-hop artist Jay-Z organizes the ""Budweiser Made In America"" music festival.",0,0,Jay-Z: Made in America,en +215032,Watermark,2013-10-11,92.0,http://www.burtynsky-water.com/,,tt3106868,,"Following their triumph with Manufactured Landscapes, photographer Edward Burtynsky and filmmaker Jennifer Baichwal reunite to explore the ways in which humanity has shaped, manipulated and depleted one of its most vital and compromised resources: water.",0,0,Watermark,en +209406,The Right Kind of Wrong,2013-10-11,97.0,,,tt2286990,Leo just met the love of his life. At her wedding.,Leo the dishwasher falls in love with a bride on the day of her wedding - to another man.,0,0,The Right Kind of Wrong,en +158908,The Inevitable Defeat of Mister & Pete,2013-10-11,108.0,,,tt2113075,Only the strong Rise Above,"Coming of age story about two inner city youths, who are left to fend for themselves over the summer after their mothers are taken away by the authorities.",0,0,The Inevitable Defeat of Mister & Pete,en +254918,Louder Than Words,2013-10-11,95.0,,,tt1641401,Love will build what's ahead.,"After the unexpected death of their daughter, a couple work to build a state of the art children's hospital where families are welcomed into the healing process.",0,0,Louder Than Words,en +141210,The Sleepover,2013-10-12,6.0,,,tt2250194,,"The town of Derry has a secret, but no one told the new kid. It's gonna be a long night.",0,0,The Sleepover,en +227700,Mindscape,2013-10-13,99.0,,,tt1715336,Don't Let Her In,"A man with the ability to enter peoples' memories takes on the case of a brilliant, troubled sixteen-year-old girl to determine whether she is a sociopath or a victim of trauma.",4357373,1200000,Mindscape,en +234862,Mr Hublot,2013-10-14,11.0,http://www.zeilt.com/sites/mrhublot/index_accueil.htm,,tt3043542,According to Stéphane Halleux's Universe,"Mr Hublot is a withdrawn, idiosyncratic character with OCD, scared of change and the outside world. Robot Pet's arrival turns his life upside down: he has to share his home with this very invasive companion...",295000,0,Mr Hublot,fr +213121,Toy Story of Terror!,2013-10-15,22.0,,,tt2446040,One toy gets left behind!,"What starts out as a fun road trip for the Toy Story gang takes an unexpected turn for the worse when the trip detours to a roadside motel. After one of the toys goes missing, the others find themselves caught up in a mysterious sequence of events that must be solved before they all suffer the same fate in this Toy Story of Terror.",0,0,Toy Story of Terror!,en +256421,Superman 75,2013-10-15,2.0,http://www.dccomics.com/,,tt3254454,,An animated short about the 75 years of Superman,0,0,Superman 75,en +229353,No Más,2013-10-15,79.0,http://espn.go.com/30for30/film?page=nomas,,tt2914890,,A look at the November 1980 re-match between Sugar Ray Leonard and Roberto Duran and how two infamous words haunt both.,0,0,No Más,en +228355,Boss,2013-10-16,143.0,,,tt2571140,The BOSS is here.,A young man disowned by his family is aided by a big business owner.,0,0,Boss,hi +222216,Special ID,2013-10-17,98.0,,,tt2118775,Justice. Undercover.,"A cop and his team of comrades go undercover in one of China's most ruthless underworld organizations to stop a gang leader, only to put themselves in great danger after being exposed one by one.",0,12666,特殊身份,cn +228290,Una piccola impresa meridionale,2013-10-17,0.0,,,tt2385784,,,0,0,Una piccola impresa meridionale,it +227262,Frau Ella,2013-10-17,105.0,,,tt2669766,,A young man goes on a road trip with an old lady he saves from a hospital.,0,0,Frau Ella,de +224243,Soulmate,2013-10-18,104.0,,,tt2504580,,"A widow retreats to a remote cottage to recover following a suicide attempt, only to discover the place is haunted. A ghost story in the tradition of The Others and The Orphanage.",0,0,Soulmate,en +224282,Torn,2013-10-18,80.0,,,tt1423636,,Two families bond when their teenage sons are killed in an explosion at a suburban mall only to discover one of their children is the prime suspect.,0,0,Torn,en +76203,12 Years a Slave,2013-10-18,134.0,,,tt2024544,The extraordinary true story of Solomon Northup,"In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon’s chance meeting with a Canadian abolitionist will forever alter his life.",20000000,187000000,12 Years a Slave,en +229182,The Harvest,2013-10-19,104.0,,,tt2543336,"First the Fall, then The Harvest.","Maryann moves in with her grandparents after she's orphaned. Desperately lonely, she sets out to befriend a neighboring deathly ill, bed-ridden boy, despite the outright disapproval of his mother. Maryann's persistence pays off, however, and during a series of secret visits she gradually uncovers some seriously sinister goings-on in the house.",0,0,The Harvest,en +327749,Wish You Well,2013-10-19,100.0,,,tt2463302,Believing in family can create miracles.,"A young girl and her brother come of age at their great grandmother's house in Virginia during the 1940s. After a family tragedy, a young girl moves from New York with your younger brother to live with their great grandmother on a Virginia farm and comes closer to understanding the land and roots that inspired her father's writings while discovering herself, the love of family, and the power of truly believing.",0,0,Wish You Well,en +255496,And Then There Was You,2013-10-19,99.0,,,tt2317090,,"Natalie resorts to picking up the pieces of her life after her husband leaves her for the family he has outside. she falls in love with Darrell, but he has secrets of his own. Can Natalie handle any more secrets?",0,0,And Then There Was You,en +290911,Paradies 505. Ein Niederbayernkrimi,2013-10-19,,,,tt3221210,,,0,0,Paradies 505. Ein Niederbayernkrimi,de +224944,Silent Retreat,2013-10-20,85.0,,,tt2672180,The only way to escape the silence is to scream,"Janey arrives at a silent retreat in the middle of the woods for rehabilitation, only to discover that the men who run it aren't afraid to show her what lurks beyond the trees.",0,0,Silent Retreat,en +110552,The Protector 2,2013-10-23,104.0,,251970,tt1925518,,"Kham is the last in long line of guards who once watched over the King of Thailand's war elephants. Traditionally, only the perfect elephants could successfully help defend the throne, after his harrowing quest to retrieve the elephants, Kham returns to his village to live in peace. But for someone as good in martial arts as him, peace is but a wishful thought...",0,3302463,ต้มยำกุ้ง 2,th +224951,Evil Feed,2013-10-23,90.0,http://www.evilfeed.com/,,tt2302601,,A group of young martial artists infiltrate an underground pit fighting ring where the loser is chopped up and served in a Chinese restaurant.,0,0,Evil Feed,en +259358,Sputnik,2013-10-24,93.0,,,tt2270802,,"November 9, 1989, the day the Berlin Wall came down. A 10-year-old girl and her friends attempt to use their teleportation device to beam her uncle back to East Germany but instead, as they witness on TV, end up beaming everyone in their town into West Germany! They have to race against time to undo the experiment before the nasty border guards open fire...",0,0,Sputnik,de +211088,Beyond The Edge,2013-10-24,93.0,http://beyondtheedgefilm.com/,,tt2468638,,A 3D feature film about Sir Edmund Hillary's monumental and historical ascent of Mt. Everest in 1953 - an event that stunned the world and defined a nation.,0,0,Beyond The Edge,en +244971,Fall of Ming,2013-10-24,0.0,,,tt3336934,,,0,0,大明劫,zh +223551,Feuten: Het Feestje,2013-10-24,0.0,,,tt3180440,,,0,0,Feuten: Het Feestje,nl +214086,The Face of Love,2013-10-25,92.0,,,tt1839642,She lost her perfect love... until she found his perfect double.,A widow falls for a guy who bears a striking resemblance to her late husband.,4000000,350006,The Face of Love,en +236317,Benim Dünyam,2013-10-25,100.0,,,tt3159564,,At 2 Ela lost her ability of seeing and hearing because of a severe illness. And then she became a total disappointment of her family due to her untamed behaviors. But everything changed after an unorthodox teacher stepped into their lives to educate Ela while healing himself.,0,0,Benim Dünyam,tr +278475,Şevkat Yerimdar,2013-10-25,,,474022,tt3283664,,,0,0,Şevkat Yerimdar,tr +253192,Faster than Rabbits,2014-01-01,99.0,,122776,tt3451498,,"Three friends awake after a stormy party in a totally unfamiliar place in the company of strangers and try to understand how they got here, who are these people and what really happened on the eve of ...",3000000,5279982,"Быстрее, чем кролики",ru +233208,Warhouse,2013-10-28,82.0,,,tt2112331,,"Royal Marine A.J Budd awakes in a mysterious house and is forced to fight for his life everyday against grotesque inhuman opponents. Trapped alone in an unchanging prison of unbreakable routines, he must kill every day or die himself. As days stretch into years, the isolation and unceasing violence threaten his very soul.",0,0,Warhouse,ru +238593,How to Follow Strangers,2013-10-28,86.0,http://howtofollowstrangers.com/,,tt2579200,,"There is a true story of a woman who died in her apartment and it took people a year to find her body decomposing in a crisp Chanel suit. A young man becomes obsessed with this urban tragedy and disappears, wondering if anyone will notice. A young woman who shares his commuting schedule DOES notice. And when he resurfaces, she decides to follow him setting of a chain of events that bind them together...",0,0,How to Follow Strangers,en +231082,Gingerdead Man vs. Evil Bong,2013-10-29,80.0,,467577,tt3234078,And Hell Rode With Them,The Gingerdead Man seeks revenge against Sarah Leigh for causing him to live his life in the body of a gingerbread man. Her only hope is to team up with Larnell who has problems of his own in the form of a magical talking bong named Eebee.,0,0,Gingerdead Man vs. Evil Bong,en +197089,A Castle in Italy,2013-10-30,104.0,,,tt2234543,,"Louise meets Nathan, her dreams resurface. It's also the story of her ailing brother, their mother, and the destiny of a leading family of wealthy Italian industrialists. The story of a family falling apart, a world coming to an end and love beginning.",0,0,Un château en Italie,fr +228676,Mischief Night,2013-10-30,87.0,http://www.mischiefnight-themovie.com/,,tt2872810,The Lucky Ones Die Quickly,"Young Emily Walton, who has suffered from psychosomatic blindness ever since the car accident that took her mother's life, must summon every instinct at her disposal to protect herself and her loved ones from a mysterious intruder",0,0,Mischief Night,en +137093,Last Vegas,2013-10-31,105.0,,,tt1204975,It's going to be legendary,Three sixty-something friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal.,28000000,134402450,Last Vegas,en +231176,Sole a catinelle,2013-10-31,87.0,,,tt3066270,,The story of a father and a son. An on the road trip from South to North.,0,0,Sole a catinelle,it +156277,Big Sur,2013-11-01,100.0,,,tt1462411,Some souls never stop searching.,Big Sur is a film adaptation of the Jack Kerouac autobiographical novel of the same name.,0,33621,Big Sur,en +228331,A Perfect Man,2013-11-01,95.0,https://www.facebook.com/aperfectmanmovie,,tt2275471,,A philandering husband unknowingly falls back in love with his wife over the phone when she pretends to be another woman.,5000000,388,A Perfect Man,en +238302,Saving Santa,2013-11-05,83.0,,,tt2204315,Adventures of a time traveling elf,"A lowly stable elf finds that he is the only one who can stop an invasion of the North Pole by using the secret of Santa's Sleigh, a TimeGlobe, to travel back in time to Save Santa - twice.",7500000,0,Saving Santa,en +173465,Medora,2013-11-08,100.0,http://medorafilm.com/,,tt2514894,,"In America’s basketball heartland, four resilient boys from rural Medora, Indiana, fight to end their high school team’s three-year losing streak, as their dwindling town faces the threat of extinction.",0,0,Medora,en +203833,The Book Thief,2013-11-08,131.0,http://www.thebookthief.com/,,tt0816442,Courage beyond words.,"While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refuge is being sheltered by her adoptive parents.",0,76586316,The Book Thief,en +235662,Snow Bride,2013-11-09,85.0,,,tt3214240,,"When a reporter encounters the eldest son of a famous political family at a mountain retreat, she winds up pretending to be his girlfriend over Christmas so he can save face with his family. Should she secretly expose newsworthy scoops about the famous family in order to save her job, or trust that she's falling in love for real? Stars Patricia Richardson and Katrina Law.",0,0,Snow Bride,en +235208,Come il vento,2013-11-10,0.0,,,tt2418510,,"The last few years in the life of Armida Miserere, female jail director who committed suicide",110,0,Come il vento,it +238749,A Very Merry Mix-Up,2013-11-10,90.0,http://www.hallmarkchannel.com/averymerrymixup,,tt3131456,,"Shop owner Alice Chapman is nervous to meet her future in-laws at Christmas, especially because she is arriving ahead of her new fiance Will Mitchum. Alice’s trip becomes more stressful when her luggage is lost and her phone is damaged, leaving her no way to find Will’s family!",0,0,A Very Merry Mix-Up,en +140818,Ragnarok,2013-11-11,120.0,,,tt2363213,All myths have an origin,"Archaeologist Sigurd Svendsen discovers that the Oseberg ship hides a secret from the Viking Age. Along with his two children put Sigurd out on a quest to find the truth. The mystery leads them into ""No Man's Land"" between Norway and Russia where no man traveling in modern times. Old runes take on new meaning when the secret they uncover is more frightening than anyone could have imagined.",6500000,3721345,Gåten Ragnarok,no +268536,A Master Builder,2013-11-11,130.0,,,tt2276069,,"A successful, ego-maniacal architect who has spent a lifetime bullying his wife, employees and mistresses wants to make peace as his life approaches its final act.",0,0,A Master Builder,en +236368,Song 'e napule,2013-11-11,114.0,http://www.studionobilescarafoni.it/index.php?option=com_cinema&Itemid=26&task=detail&id=108,,tt3425772,,Young musician becomes an undercover agent and is asked to join a neomelodic band in order to allow police to get their hands on an elusive camorra boss.,0,0,Song 'e napule,en +262785,I corpi estranei,2013-11-12,,,,tt3107708,,,0,0,I corpi estranei,it +239103,Run Boy Run,2013-11-12,108.0,,,tt1608516,,"Run Boy Run is the true story of Jurek, an eight-year-old boy, who escapes from the Warsaw ghetto, then manages to survive in the woods and working as a farmhand, disguising himself as a Polish orphan. He encounters people who will betray him for a reward, who will beat him up or try to kill him, and he meets those, who will do and risk almost everything to help him. Jurek’s resilience is put to the ultimate test, when an accident cripples him, making it harder to find work. But he struggles on against all odds. Eventually the Russians reach his area and Jurek even finds a family where he could stay. Yet he is betrayed again, and a young man from a Jewish orphanage forcefully tries to bring Jurek back to his people and his faith.",0,0,Lauf Junge lauf,de +233917,Kalevala - Uusi aika,2013-11-14,0.0,,,tt2192882,,A story based on the Finnish national epic Kalevala.,0,0,Kalevala - Uusi aika,en +236808,Pizza 2: Villa,2013-11-14,102.0,,,tt3329246,One way ticket to an unknown world,Jebin is a writer who is trying to get his work published. He comes to understand his financial status after his father's death. There is also a villa in Pondycherry that has been bequeathed to him by his dad about which he had no clue till then. His ensuing journey to the villa sets the ball rolling for interesting events that get unfurled slowly.,0,0,பீட்சா 2 வில்லா,ta +242033,Scorned,2013-11-14,86.0,,,tt2293750,Hell Hath No Fury,"Sadie and Kevin have decided to spend a romantic weekend together at his lake house. But when an unexpected- and unfortunate- text from her best friend Jennifer to Kevin reveals a lurid love affair between the two, Sadie spirals a into a hunger for revenge.",1700000,0,Scorned,en +87516,Oldboy,2013-11-14,104.0,,,tt1321511,Ask not why you were imprisoned. Ask why you were set free.,An everyday man has only three and a half days and limited resources to discover why he was imprisoned in a nondescript room for 20 years without any explanation.,30000000,4861022,Oldboy,en +227094,The Returned,2013-11-15,98.0,,,tt2093270,,"In a post-zombie world, where the infected live normal lives, their retroviral drug is running out.",0,0,The Returned,en +265314,Mexico's Most Wanted,2013-11-15,100.0,,,tt2255787,,"Tells the story of the most prominent bank robber in the history of Mexico, his crimes, his different personalities, his career as a charro with a mariachi band, his getaways and the strange relationship he had with the one who finally came to stop him. Based on the true story of Alfredo Ríos Galeana.",0,0,El Más Buscado,es +271954,Water and Fire,2013-11-15,113.0,,,tt3142958,,"A pretty young girl falls for an enigmatic, shy man who sweeps her off her feet. She becomes pregnant but is not allowed to tell him. His advisers are adamant. Back home, they have set up a wedding with the daughter of an antagonistic family and marriage will put an end to the blood feud between them.",0,0,Su ve Ateş,tr +222461,Wer,2013-11-16,89.0,,,tt2229511,,"A defense attorney begins to suspect that her client, who is charged with the murders of a vacationing family, might be more than meets the eye.",0,0,Wer,en +238255,Micky Flanagan: Live - Back In The Game Tour,2013-11-18,0.0,,,tt3406050,,"Micky's sell-out Back In The Game tour was the biggest comedy event of 2013 playing to over half a million people across the UK and Ireland. Recorded live at London's Hackney Empire, join one of the nation's best-loved comedians performing to his home crowd in this hilarious brand new DVD packed full of guaranteed laughter. The celebrated comic has an adept ability to charm his audience with tales of middle age, marriage and making sausage sandwiches. Micky has firmly established himself as a superstar comedian earning rave reviews (""Flanagan is the man of the moment, comedy's meteoric success""--The Telegraph), and winning over the hearts and homes of the Great British public proving he's not only back in the game but he's well and truly on top of it.",0,0,Micky Flanagan: Live - Back In The Game Tour,en +238705,The Bad Child,2013-11-20,0.0,,,tt3345966,,,0,0,Il bambino cattivo,it +238925,Il terzo tempo,2013-11-21,,,,tt2759292,,,0,0,Il terzo tempo,it +226354,The Christmas Candle,2013-11-22,100.0,http://www.thechristmascandlemovie.com/,,tt2739338,Believe the Miracle,"Deep in the heart of the English countryside lies the enchanting village of Gladbury. Legend has it every 25 years an angel visits the village candlemaker and touches a single candle. Whoever lights this candle receives a miracle on Christmas Eve. But in 1890, at the dawn of the electric age, this centuries old legend may come to an end.",0,0,The Christmas Candle,en +237303,Home,2013-11-22,112.0,,,tt2393825,,The story of a man suffering from mental illness who attempts to rebuild his life.,0,0,Home,en +262088,Chocolate Strawberry Vanilla,2013-11-24,85.0,,,tt2977672,,"A black comedy/drama about a lonely ice-cream van driver, Warren Thompson, and his unhealthy obsession with television soap starlet, Katey George.",0,0,Chocolate Strawberry Vanilla,en +216156,Still Life,2013-11-28,92.0,,,tt2395417,A rare thing,A council case worker looks for the relatives of those found dead and alone.,0,0,Still Life,en +240913,Non-Stop,2013-11-29,90.0,http://www.mylifetime.com/movies/non-stop,,tt2857160,,"Mysterious emotional thriller about a woman who, after being left at the altar, has a brief liaison with a handsome stranger on a plane which ultimately puts her – and everyone else on the flight – in terrible danger.",0,0,Non-Stop,en +295581,If I Had Wings,2013-12-01,89.0,,,tt3063462,His dream... His chance... Their race.,"Alex, blind since the age of two, dreams of running for his school's cross-country team. His father, a probation officer, finds a running partner who spends his time 'running' from the law.",0,0,If I Had Wings,en +259761,Lights Out,2013-12-01,3.0,https://vimeo.com/82920243,,tt3605002,You shouldn't go to sleep tonight,"A woman prepares for bed, but realizes that something may be lurking in the shadows.",0,0,Lights Out,en +240733,Shame the Devil,2013-12-02,95.0,,,tt1753967,Would you lie to a colleague to save your job? Would you lie to a wife to save your marriage? Would you lie to a serial killer to save your life?,"A London detective tracking a serial killer finds the killers ""truth or die"" methods take him to New York to solve the case.",3000000,0,Shame the Devil,de +238589,Enemies Closer,2013-12-04,85.0,http://www.imglobalfilm.com/octane/enemies-closer,,tt2395199,Keep your Friends Close,"After a major shipment of drugs goes missing on the US-Canadian border, forest ranger and former Navy SEAL Henry is plunged into survival mode when the drug cartel forces him to help retrieve the downed package. Trapped in the wilderness with no communication to the outside world, Henry finds himself face to face with Clay, a man with a personal vendetta against Henry who has returned for retribution. Now, the two mortal enemies must make a choice: put aside their past and work together, or die alone at the hands of the drug runners, a ruthless gang who will stop at nothing to retrieve their lost cargo.",5000000,0,Enemies Closer,en +376823,Trophy Kids,2013-12-04,107.0,,,tt3231100,,"From the director of Bigger Stronger Faster comes an intense look at overbearing parents in sports. The film asks the question ""Do we want what's best for our children? Or do we just want them to be the best?"" Parts of this film were used in the premier of Peter Berg's HBO series State of Play.",0,0,Trophy Kids,en +230211,Bros Before Hos,2013-12-05,87.0,http://www.brosbeforehosdefilm.nl/,,tt2947832,,"Because of a bad marriage of their parents, two brothers Jules and Max made a pact never to get into a relationship with a woman. Therefore, they live a party-life in which they sleep with a different girl every day. However this changes when Jules starts to date Anna and Max falls in love with her. Can their bromance overcome this love triangle.",0,0,Bros Before Hos,nl +194104,Stop the Pounding Heart,2013-12-05,101.0,,,tt2855026,,"Sara is a young girl raised in a family of goat farmers. Her parents homeschool their twelve children, rigorously following the precepts of the Bible. Like her sisters, Sara is taught to be a devout woman, subservient to men while keeping her emotional and physical purity intact until marriage. When Sara meets Colby, a young amateur bull rider, she is thrown into crisis, questioning the only way of life she has ever known.",0,0,Stop the Pounding Heart,en +236399,Flowers in the Attic,2014-01-18,90.0,,293981,tt3074694,,"After the sudden death of their father, four children face cruel treatment from their ruthless grandmother.",0,0,Flowers in the Attic,en +228339,Little England,2013-12-05,160.0,http://mikraaggliafilm.gr/,,tt3253650,"One home, one secret, one man, two sisters.","Τwo sisters from the island of Andros, dubbed Little England because of its affluence, are both in love with the same man. Set in the Greek Civil War period and ending in the 1950s, the movie is based on the homonymous novel by Ioanna Karystiani.",0,0,Μικρά Αγγλία,el +201765,Three Many Weddings,2013-12-05,94.0,,,tt2418440,,"A woman attends wedding of successive men in her life, though she gets to find a soul mate.",0,0,Tres bodas de más,es +176085,White Reindeer,2013-12-06,82.0,http://whitereindeermovie.com/,,tt2570738,,"After an unexpected tragedy, Suzanne searches for the true meaning of Christmas during one sad, strange December in suburban Virginia.",0,0,White Reindeer,en +172785,Expecting,2013-12-06,87.0,,,tt2040367,,"Lizzie's best friend, Andie, becomes pregnant and offers to give the baby to her. Lizzie's husband, Peter, reluctantly goes along with being the child's father, and Andie moves into the guest room for the remainder of the pregnancy.",0,0,Gus,en +255692,Ice Soldiers,2013-12-06,95.0,,,tt3104304,The Cold War Begins Again.,A scientist discovers the bodies of three frozen genetically modified Russians buried in the Canadian North. Upon thawing them out he realizes he has unleashed a deadly threat to Western society and must stop them at all costs.,0,0,Ice Soldiers,en +245169,Three Night Stand,2013-12-06,86.0,,,tt2597718,Meet Carl. His wife. & the Love of his Life.,"A man's plans for a romantic weekend go awry when he learns that his ex-girlfriend, whom he still secretly loves, manages the ski lodge where he and his wife are staying.",0,0,Three Night Stand,en +212063,Tim's Vermeer,2013-12-06,80.0,,,tt3089388,,Inventor Tim Jenison seeks to understand the painting techniques used by Dutch Master Johannes Vermeer.,0,0,Tim's Vermeer,en +266782,The Improv: 50 Years Behind the Brick Wall,2013-12-06,60.0,,,tt3591608,,Several comic greats pay tribute to the legendary stand-up stage founded by Budd Friedman in 1963.,0,0,The Improv: 50 Years Behind the Brick Wall,en +241930,Implanted,2013-12-06,88.0,,,tt2166880,"When your memory lies, how do you find the truth?","When your memory lies, how do you find the truth?",0,0,Implanted,en +243881,Adios Carmen,2013-12-08,104.0,,,tt3360148,,"In 1975, 10-year-old Amar lives in a village in northern Morocco with his violent uncle, waiting for the unlikely return of his mother, who has left for Belgium. He finds a friend in Carmen, his neighbor, who is a Spanish exile and who works as an usher at the village cinema. Carmen helps him discover a world previously unknown to him.",0,0,Adios Carmen,en +241140,My Beautiful Country,2013-12-11,88.0,,,tt2302739,,"A moving love story in a time of hatred: During the civil war in Kosovo, the young Serbian widow Danica falls in love with Ramiz, a Albanian soldier who, wounded in battle, seeks refuge in her home on the Serbian side of the River Ibar.",0,0,My Beautiful Country - Die Brücke am Ibar,de +242458,Way Back Home,2013-12-11,131.0,,,tt2797106,,"Jeong Yoon is a caring wife and mother and a sensitive woman who finds herself plunged into a legal ordeal thousands of miles from home. After years of planning, she and her husband Jong Bae open an auto body repair shop, only to see everything they've worked for stripped away when a loan Jong Bae had guaranteed defaults. Facing financial despondency, the couple gets into a vicious fight about money, sending Jeong Yeon away, leaving only a cryptic note saying she'll be back in a few days. When she turns up looking nervous at Orly Airport in Paris with over 30 kilograms of cocaine in her luggage, it is the beginning of a globe-spanning nightmare that began with an old friend and a tempting proposition.",0,0,집으로 가는 길,ko +244610,The Den,2013-12-12,81.0,,,tt2503154,Online is the scene of the #crime,A young woman studying the habits of webcam chat users from the apparent safety of her apartment witnesses a brutal murder online and is quickly immersed in a nightmare in which she and her loved ones are targeted for the same grisly fate as the first victim.,0,0,The Den,en +261871,Polar Flight,2013-12-12,90.0,,,tt3338382,,Sometimes New Year eve can bring a lot of surprises...,0,0,Полярный рейс,ru +232100,Riley Rewind,2013-12-12,50.0,,,tt2944454,,A high school girl named Riley (Anna Akana) has the ability to travel back in time and uses this power to save her friend who commits suicide.,70,0,Riley Rewind,en +270221,Neverlake,2013-12-13,86.0,http://www.onemorepictures.it/en/film/neverlake/,,tt3301196,Horror is Nothing More Than Truth,"On a trip home to visit her father, Jenny is thrown into a world of mystery, horror and legend when she is called upon by 3000 year old spirits of the Neverlake to help return their lost artifacts and save the lives of missing children.",232000,0,Neverlake,en +191502,The Unbelievers,2013-12-13,77.0,http://www.unbelieversmovie.com/,,tt2636522,What are you willing to believe?,Scientists Richard Dawkins and Lawrence Krauss travel the globe promoting a scientific worldview and the rational questioning of religious belief.,0,0,The Unbelievers,en +190853,Suzanne,2013-12-17,90.0,,,tt2298416,,"The story of a destiny. Suzanne's and her family's. The ties that bind them, keep them together, and the love she pursues... to the point of leaving everything behind.",0,0,Suzanne,fr +158990,Wrong Cops,2013-12-18,83.0,,,tt2166616,,A group of bad cops look to dispose of a body that one of them accidentally shot.,0,0,Wrong Cops,en +245597,Steal My Heart,2013-12-18,115.0,,,tt3694790,,"""Catch Me"" is about Lee Ho-tae (Joo Won) who meets the first love of his dreams, Yoon Jin-sook (Kim Ah-joong) for the first time in ten years but is shocked to find out she's a hit-and-runner.",0,0,캐치미,ko +244001,Bo Burnham: what.,2013-12-18,60.0,,,tt3210258,,"Left brain and right brain duke it out and then belt out a tune in comedian Bo Burnham's quick and clever one-man show. As intelligent as he is lanky, Burnham cynically pokes at pop entertainment while offering unadulterated showmanship of his own.",0,0,Bo Burnham: what.,en +278334,Heatstroke,2013-12-19,92.0,,,tt3663040,,"On a family trip in the African desert, a research scientist unintentionally travels off course and is brutally murdered by an arms dealer. His girlfriend is put to the ultimate survival test as she attempts to evade the killers and protect his teenage daughter.",0,0,Heatstroke,en +229296,Justin Bieber's Believe,2013-12-19,92.0,,,tt3165608,,A backstage and on-stage look at Justin Bieber during his rise to super stardom.,0,0,Justin Bieber's Believe,en +246218,The Underneath,2013-12-19,88.0,,,tt2207778,,"A young newlywed couple find themselves trapped in a network of underground caves. With her husband injured, the new bride is forced to find her way back to the surface in order to save his life. In the process, they discover a terrifying truth about the ""underneath"", they are not alone. Something evil is hunting them.",0,0,The Underneath,en +256907,Darr @ the Mall,2014-02-21,124.0,,,tt3449320,,Darr @ The Mall is a spine chilling tale of one night and an encounter with the past.,0,0,Darr @ the Mall,hi +248087,The Eternal Zero,2013-12-20,144.0,,,tt2404217,,"A young man Kentaro Saeki (Haruma Miura) keeps failing his bar test and does not know what to do any more. His older sister Keiko is a freelance writer. Kentaro and Keiko begin to search for information on their grandfather Kyuzo Miyabe (Junichi Okada) who dead in the special forces during World War II. Their grandfather Kyuzo Miyabe was terrified of death and obsessed with life. Why did he join the special forces? According to his fellow navy soldiers, Kyuzo Miyabe was a genius and also a coward. Kentaro and Keiko then discovers the shocking truth which has been sealed for 60 years.",0,84500000,永遠の0,ja +228198,Eu Não Faço a Menor Ideia do que eu Tô Fazendo Com a Minha Vida,2013-12-20,90.0,,,tt3329956,,"Clara doesn't know what she wants to do with her life, until one day she meets Guilherme who helps her to find her own path.",0,0,Eu Não Faço a Menor Ideia do que eu Tô Fazendo Com a Minha Vida,pt +228558,The Harry Hill Movie,2013-12-20,85.0,,,tt3013528,,The comedy film sees TV Burp star Hill embark on a road trip to Blackpool with his Nan (Julie Walters) when he discovers that his hamster only has one week to live.,0,0,The Harry Hill Movie,en +245226,James Gandolfini: Tribute To A Friend,2013-12-22,35.0,,,tt3415676,Friends and colleagues recall Emmy winner James Gandolfini (1961-2013) in a tribute that features clips of the actor's work.,"""James Gandolfini: Tribute To A Friend"" will debut Sunday, December 22 at 8:30 PM on HBO, his old The Sopranos network. In the half-hour tribute, friends and colleagues remember the three-time Emmy winner, who died June 19 at age 51. The special features clips of Gandolfini’s work as well as behind-the-scenes footage.",0,0,James Gandolfini: Tribute To A Friend,en +219572,Police Story 2013,2013-12-24,108.0,,269098,tt2599716,,"A man looking for the release of a long-time prisoner takes a police officer, his daughter, and a group of strangers hostage.",0,81170000,警察故事2013,cn +193756,Lone Survivor,2013-12-24,121.0,http://www.lonesurvivorfilm.com/,,tt1091191,Based on True Acts of Courage,"Based on the failed June 28, 2005 mission ""Operation Red Wing."" Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shah. Only one member of the team survived.",40000000,149295601,Lone Survivor,en +253612,Live Forever as You Are Now with Alan Resnick,2013-12-24,11.0,http://liveforeverasyouarenowwithalanresnick.net,,tt3414782,,"Hot young tech wizard Alan Resnick shares his secrets of immortality, along with his digital avatar Teddy.",750000,0,Live Forever as You Are Now with Alan Resnick,en +64807,Grudge Match,2013-12-25,113.0,,,tt1661382,DeNiro vs Stallone,A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.,40000000,44907260,Grudge Match,en +145247,The 100 Year-Old Man Who Climbed Out the Window and Disappeared,2013-12-25,114.0,http://nicedrama.se/niceflx/,,tt2113681,"For a century he's made the world uncertain, and now he is on the loose again.","After living a long and colorful life, Allan Karlsson finds himself stuck in a nursing home. On his 100th birthday, he leaps out a window and begins an unexpected journey.",9250000,0,Hundraåringen som klev ut genom fönstret och försvann,sv +169881,The Physician,2013-12-25,155.0,,,tt2101473,,"The story of Rob Cole, a boy who is left a penniless orphan in an 11th-century English mining town when his mother dies of a mysterious illness. Vowing to become a physician and vanquish Death itself, he travels to Isfahan in Persia to study medicine under the great Ibn Sina. Through countless ordeals and challenges, and making many sacrifices along the way, he struggles on unwaveringly. His unflagging quest for knowledge leads to the blossoming of friendship and true love.",32000000,57284237,The Physician,en +245536,Rabbit and Deer,2013-12-25,17.0,http://www.rabbitanddeer.com/,,tt2664910,,"Rabbit and Deer are living happily and careless until their friendship is put to the test by Deer's new obsession to find the formula for the 3rd dimension. After an unexpected accident Deer finds himself in a new world, unknown to him. Separated by dimensions the two characters have to find the way back to each other.",0,0,Nyuszi és öz,hu +248747,Six Degrees of Celebration 3,2013-12-26,97.0,,107465,tt3121434,,"And again a heroes of ""Yolki"" series are ready and prepared for a New Year.",0,0,Yolki 3,ru +206277,Shirley: Visions of Reality,2013-12-26,93.0,,,tt2636806,,"A series of snapshots from the life of a fictional actress named Shirley serves to weave together thirteen paintings by Edward Hopper (e.g. ""Office at Night"", ""Western Motel"", ""Usherette"", ""A Woman in the Sun"") into a fascinating synthesis of painting and film, personal and political history. Each station in Shirley’s professional and private life from the 1930s to 1960s is precisely dated: It is always August 28/29 of the year in question, as the locations vary from Paris to New York to Cape Cod.",0,0,Shirley: Visions of Reality,en +245739,Gangsta Granny,2013-12-26,60.0,,,tt3286484,,A young boy is bored spending time with his dull grandma until he discovers she's an international Jewel thief.,0,0,Gangsta Granny,en +152737,August: Osage County,2013-12-26,121.0,,,tt1322269,Misery loves family,"A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.",25000000,74188937,August: Osage County,en +127560,The Railway Man,2013-12-26,116.0,,,tt2058107,Revenge is never a straight line.,"A victim from World War II's ""Death Railway"" sets out to find those responsible for his torture. A true story.",18000000,22309223,The Railway Man,en +344656,Enemy Empire,2013-12-27,97.0,,,tt2966728,,"Sol, a bold fugitive lost in a dangerous post-apocalyptic desert world, searches for a missing woman named Catherine and her illusive captor, the Nomad King. With enemies at every turn, Sol's only chance of finding Catherine is with the help of a rogue and mysterious wanderer, Cleo.",0,0,Enemy Empire,en +248710,The Only Ones,2013-12-27,117.0,,,tt2192900,,"Hanna is a 30 something single woman from Helsinki. She has a good job and great friends and has almost given up on finding the Mr. Right. One night, Hanna meets Markus, a dark stranger who sweeps her off her feet.",1490000,0,Ainoat Oikeat,en +232731,Attila,2013-12-31,90.0,http://www.theasylum.cc/product.php?id=232,,tt3184096,Back from the Dead,"When American soldiers inadvertently steal Attila the Hun's secret riches, the wrath of the barbarian is awakened; the mummified warrior will stop at nothing to kill the intruders.",0,0,Attila,en +252034,Love and the City 3,2013-12-31,79.0,,106784,tt2739884,,"Our three hapless heroes - Igor, Artyom, and Sauna - return for the third lesson from St. Valentine. This time they must learn the true value of fatherhood, but this time the kids are grown up...",0,0,Любовь в большом городе 3,ru +227348,Paranormal Activity: The Marked Ones,2014-01-01,84.0,,41437,tt2473682,You're one of us now.,"Seventeen-year-old Jesse has been hearing terrifying sounds coming from his neighbor’s apartment, but when he turns on his camera and sets out to uncover their source, he encounters an ancient evil that won’t rest until it’s claimed his very soul.",5000000,86362372,Paranormal Activity: The Marked Ones,en +340224,"Hello, My Name Is Frank",2014-01-01,0.0,,,tt3163080,,"Comedy about Frank, a hermit with Tourette Syndrome who is thrust into the harsh realities of the world when his caregiver dies. After recognizing that Frank is despondent, the caregiver's teenage daughter, Laura, drags a reluctant Frank along on a life-changing road trip with Laura and her friends. - Garrett M. Brown, Rachel DiPillo, Mary Kate Wiles",0,0,"Hello, My Name Is Frank",en +341957,21 Days,2014-01-01,89.0,http://www.21daysthefilm.com/,,tt2979366,"There are some places so dark, so evil, where no human no living thing should dwell...","Three filmmakers embark on a paranormal challenge by barricading themselves in a house so haunted, no one has been able to live in for more than 21 days.",0,0,21 Days,en +316637,Atrocity,2014-01-01,124.0,,,tt4278806,The ultimate mind-bending reality thriller.,"Zach ambushes his girlfriend to catch her cheating, but gets some devastating surprises that escalate into something horrifying. 7 years later, a detective reveals that the ""real"" truth is much worse than anyone feared with the most disturbing video ever seen.",0,0,Atrocity,en +247218,Un boss in salotto,2014-01-01,0.0,,,tt3296204,,,0,0,Un boss in salotto,it +293861,Imagine I'm Beautiful,2014-01-01,91.0,,,tt2314036,,"Hoping to leave behind the trauma of her mother's death, a young woman moves to New York City, where she becomes close to her similarly haunted roommate -- until a disturbing revelation changes everything.",0,0,Imagine I'm Beautiful,en +325592,Camp Belvidere,2014-01-01,38.0,http://campbelvidere.com/,,tt3104062,,Camp Belvidere is a lesbian romance set in the 1950s about the coming of age of Camp Leader Rose and her forbidden encounter with Nurse Gin. It depicts the journey and evolution of a friendship into a romance between two women when their rapport would have been unlikely.,15000,0,Camp Belvidere,en +248417,Patch Town,2014-01-04,85.0,http://patchtown-themovie.com,,tt2189418,Abandoned but not forgotten,"Patch Town, inspired by the award-winning short film of the same name. After years in a loving home, Jon, a toy, was forgotten, deserted and ultimately betrayed by his adoptive mother. He returns to live a sad life as a worker on the line; a life of factory work and oppression in a place where hundreds of cabbage babies are born every day. The thankless task of shucking, picking, and processing these newborns to go out into the world and to their new mothers has taken its toll on Jon. With each new birth, Jon slips deeper into sadness, lamenting the days when life was good and he was loved.",0,0,Patch Town,en +248376,Once Upon a Time in Shanghai,2014-01-06,95.0,,,tt2290567,,A laborer moves to Shanghai in the hope of becoming rich. But ends up using his kung fu skills to survive. Remake of The Boxer From Shantung.,0,0,E zhan,zh +228028,Back in the Day,2014-01-07,94.0,,,tt2246887,Sometimes in order to move forward...you have to go back,"Sometimes in order to move forward, you have to go back. And in this raunchy comedy, Jim Owens does just that when he heads home for his high school reunion. In an attempt to relive the glory days with his boys and explore an old romance, he nearly destroys his hometown and friendships.",0,0,Back in the Day,en +255384,"Don't Hug Me, I'm Scared II: Time",2014-01-08,3.0,http://beckyandjoes.com/dont-hug-me-im-scared-2/,,tt3633758,Some things change over Time.,"Sequel to the acclaimed short film, this time we're singing about, well, time!",0,0,"Don't Hug Me, I'm Scared II: Time",en +245775,Yves Saint Laurent,2014-01-08,106.0,,,tt2707858,Fashions fade. Style is forever.,"A look at the life of French designer Yves Saint Laurent from the beginning of his career in 1958 when he met his lover and business partner, Pierre Berge.",12000000,21026290,Yves Saint Laurent,fr +79316,Devil's Due,2014-01-08,89.0,,,tt2752758,The Devil Always Gets His Due,An unexpected pregnancy takes a terrifying turn for newlyweds Zach and Samantha McCall.,7000000,36433975,Devil's Due,en +248698,Dedh Ishqiya,2014-01-10,152.0,,,tt2675978,,"Khalujaan (Naseeruddin Shah)and Babban (Arshad Warsi), the two romantic thieves are back in Dedh Ishqiya, sequel to the acclaimed and successful Ishqiya with their romantic adventures. And this time love will take them through the SEVEN STAGES OF LOVE... with the beautiful and dangerous Madhuri Dixit as Begum Para and Huma Qureshi as Munniya.",0,0,Dedh Ishqiya,en +248268,$50K and a Call Girl: A Love Story,2014-01-10,90.0,,,tt2106284,,"When Ross is diagnosed with terminal brain cancer and given six weeks to live, his newly engaged older brother Seth offers to spend his $50,000 wedding fund on a final trip of a lifetime. Their plans are complicated when Ross invites a call girl to join the group and Seth’s uptight fiancée insists on tagging along. This raucous road trip comedy features hip-hop star Asher Roth.",0,0,$50K and a Call Girl: A Love Story,en +245175,Black Coffee,2014-01-10,82.0,,,tt2994646,,"Robert picked the wrong time to meet his soul mate! After being fired from his own father's company, he feels like his luck has run out - until Morgan enters into his life.",0,0,Black Coffee,en +255898,Another Year,2014-01-15,107.0,,,tt3508808,,"He's an unemployed guy who earns some money by giving lifts to strangers. She's a graphic designer who just got her first job. The film tracks their relationship - and the way it gradually melts away - throughout a year. A subtle, moving portrait of an immature love that breaks down easily.",0,0,Еще один год,ru +284250,Halam Geldi,2014-01-15,,,,tt3463014,,,0,0,Halam Geldi,fr +255647,See You in Montevideo,2014-01-15,141.0,,,tt1801071,,"A football team from Belgrade, former Republic of Yugoslavia gets a chance to go to the First World Football Championship, but things get complicated along the way.",5400000,0,"Montevideo, vidimo se!",es +265563,The Mystery of Happiness,2014-01-16,92.0,,,tt3302594,,"Life-long business partners Santiago and Eugenio understand each other without words, care for each other, and need each other. When Eugenio vanishes without a clue, Santiago and Laura, Eugenio’s wife, join forces to solve the mystery of his disappearance. What they discover is neither what they set out to find nor what you would expect, and their shared journey becomes a surprising and lighthearted meditation on friendship, love, and loyalty.",0,0,El misterio de la felicidad,es +169760,Maidentrip,2014-01-17,82.0,http://www.maidentrip.com/,,tt2555268,,14-year-old Laura Dekker sets out on a two-year voyage in pursuit of her dream to become the youngest person ever to sail around the world alone.,0,0,Maidentrip,en +250769,Mitt,2014-01-17,93.0,,,tt1757800,"Whatever side you're on, see another side.",A filmmaker is granted unprecedented access to a political candidate and his family as he runs for President.,0,0,Mitt,en +234155,Asier ETA biok,2014-01-17,94.0,,,tt3183716,,"Asier and I grew up in the Basque Country. But one day he disappeared, later I found out he had joined ETA.",0,0,Asier ETA biok,es +248211,Liar's Dice,2014-01-18,104.0,,,tt2343621,,"The film follows Kamala, a young woman from Chitkul village and her girl child Manya, who embarks on a journey leaving their native land in search for her missing husband. Along this journey she encounters Nawazudin, a free spirited army deserter who helps them to get to their destination with his own selfish motive.",0,0,Liar's Dice,en +244539,Infinitely Polar Bear,2014-01-18,87.0,,,tt1969062,Sometimes family is the best medicine.,"A manic-depressive mess of a father tries to win back his wife by attempting to take full responsibility of their two young, spirited daughters, who don't make the overwhelming task any easier.",6700000,1430655,Infinitely Polar Bear,en +244458,The Voices,2014-01-19,101.0,,,tt1567437,Hearing voices can be murder.,"A mentally unhinged factory worker must decide whether to listen to his talking cat and become a killer, or follow his dog's advice to keep striving for normalcy.",0,0,The Voices,en +252171,A Girl Walks Home Alone at Night,2014-01-19,99.0,http://films.vice.com/a-girl-walks-home/,,tt2326554,,"In the Iranian ghost-town Bad City, a place that reeks of death and loneliness, the townspeople are unaware they are being stalked by a lonesome vampire.",1000000,395000,A Girl Walks Home Alone at Night,en +244580,Low Down,2014-01-19,119.0,http://lowdownfilm.tumblr.com/,,tt1864405,,The daughter of jazz pianist Joe Albany witnesses her beloved father's struggle -- and failure -- to kick his heroin habit.,0,0,Low Down,en +250671,Watchers of the Sky,2014-01-20,114.0,,,tt2049589,,"Five interwoven stories of remarkable courage from Nuremberg to Rwanda, from Darfur to Syria, and from apathy to action.",0,0,Watchers of the Sky,en +253154,Imperial Dreams,2014-01-20,87.0,,,tt3331028,,"A 21-year-old reformed gangster's devotion to his family and his future is put to the test when he is released from prison and returns to his old stomping grounds in Watts, Los Angeles.",0,0,Imperial Dreams,en +244783,Song One,2014-01-20,86.0,http://songonemovie.tumblr.com/,,tt2182972,A moment can change everything.,"Estranged from her family, Franny returns home when an accident leaves her brother comatose. Retracing his life as an aspiring musician, she tracks down his favorite musician, James Forester. Against the backdrop of Brooklyn’s music scene, Franny and James develop an unexpected relationship and face the realities of their lives.",6000000,32251,Song One,en +204765,Prêt à tout,2014-01-21,0.0,,,tt2442502,,,0,0,Prêt à tout,fr +253484,1 Chance 2 Dance,2014-01-21,90.0,,,tt2388856,,"When a 17-year old aspiring dancer is uprooted in her high school senior year, she finds herself divided between two boys, and she will have one last shot at making her dream a reality.",0,0,1 Chance 2 Dance,en +320299,Bleu catacombes,2014-01-21,,,,tt3142260,,,0,0,Bleu catacombes,pt +239619,Hanna's Journey,2014-01-23,100.0,,,tt2429414,,"A German girl travels to Israel to help people with disabilities, where she learns a lot about the role of her grandparents in WWII and meets a man who wants to move to Berlin.",0,0,Hannas Reise,de +245950,The Dragonphoenix Chronicles: Indomitable,2014-01-23,120.0,http://www.indomitablemovie.com/,,tt2182163,Bow to none.,"A savage warrior escapes slavery and hunted by his former masters, begins a perilous journey back to his homeland and his wife.",14000,0,The Dragonphoenix Chronicles: Indomitable,el +254679,The Little House,2014-01-25,136.0,,,tt2530392,,"Following the death of the unmarried and childless Taki, Takeshi, a young relative of hers, discovers several pages of closely written lines in which the old lady has recorded her memories. This is how he learns the truth about her youth working as a housemaid and nanny for the Hirai family in a little house in Tokyo with a red gabled roof.",0,0,小さいおうち,ja +243568,Lizzie Borden Took An Ax,2014-01-25,91.0,,,tt3118958,It's time to bury the hatchest,"Lizzie Borden Took An Ax chronicles the scandal and enduring mystery surrounding Lizzie Borden, who was tried in 1892 for axing her parents to death. As the case rages on, the courtroom proceedings fuel an enormous amount of sensationalized stories and headlines in newspapers throughout the country, forever leaving Lizzie Borden’s name in infamy.",0,0,Lizzie Borden Took An Ax,en +249457,La gente che sta bene,2014-01-29,0.0,,,tt3485114,,,0,0,La gente che sta bene,it +268174,BFFs,2014-01-31,90.0,http://bffsthemovie.com/,,tt2375278,Just beacause they love each other doesn't mean they have to like it.,"Kat receives a weekend at a couples retreat as a gift from her mother, even though she and her boyfriend had broken up six month prior. Kat's friend Samantha proposes that they pretend to be a couple and go there anyway.",0,0,BFFs,en +233487,He Who Dares,2014-01-31,82.0,,360112,tt2740538,15 Floors. 1 Way In. 1 Way Out.,"On Christmas Eve a group of ruthless masked terrorists kidnap the Prime Ministers daughter, fortifying themselves in an underground car park rigged with explosives. Crack SAS operative Chris Lowe and his team are sent in and must take the building one level at a time. ""The Raid meets Die Hard"" in this explosive action thriller.",1000000,0,He Who Dares,en +241071,Brightest Star,2014-01-31,80.0,,,tt1877688,,A recent college graduate sets out to win back the girl of his dreams.,0,0,Brightest Star,en +254065,The Gabby Douglas Story,2014-02-01,90.0,,,tt3386954,,The true story of Gabby Douglas who becomes the first African American to be named Individual All-Around Champion in artistic gymnastics at the Olympic Games.,0,0,The Gabby Douglas Story,en +253794,Haunting of the Innocent,2014-02-01,90.0,,,tt2554714,Possession Knows No Age,"Tom and Brenda have the perfect life but when Brenda is violently attacked in the comfort of their home, their perfect lives are thrown into chaos and fear.",0,0,Haunting of the Innocent,en +222030,Violet,2014-02-02,0.0,,,tt2377398,,,0,0,Violet,es +242042,Barefoot,2014-02-02,90.0,http://barefootthemovie.com/,,tt2355495,She's stepping out into the world.,"The ""black sheep"" son of a wealthy family meets a young psychiatric patient who's been raised in isolation her entire life. He takes the naive young woman home for his brother's wedding an improbable romance blooms, as she impresses everyone with her genuine, simple charms. + Remake of the German film ""Barfuss"" (2005).",6000000,15071,Barefoot,en +106136,From Above,2014-02-03,112.0,http://fromabovemovie.com/,,tt2065898,A love story for the ages...an inspiring tale for everyone.,Two souls are so deeply in love with one another that they are entangled beyond life itself.,0,0,Chasing Shakespeare,en +254047,The Wedding Pact,2014-02-04,91.0,,,tt2199251,Who remembers those crazy promises you made in college? ...He did.,"Two best friends in college Mitch and Elizabeth make a pact that if in ten years after graduation they are both not married they will marry each other. Ten years later Mitch (still single) finds out Elizabeth never got married so he decides to travel across the country, find her and follow through on their pact. What he soon realizes is it wont be a simple as he thought.",0,0,The Wedding Pact,en +249021,Android Cop,2014-02-04,88.0,,,tt3393070,The Future of Law Enforcement,"In the year 2045, a Los Angeles Police Department detective and his new android partner enter the Zone, a forbidden section of the city plagued with an unknown disease. There, they discover the source of the illness and attempt to stop it using the android's advanced technology and weaponry.",0,0,Android Cop,en +260312,The Yellow Eyes of Crocodiles,2014-04-09,118.0,,,tt2571502,,"Two sisters, their families, and sometimes complicated lives.",0,0,Les Yeux jaunes des crocodiles,fr +157424,Cabin Fever: Patient Zero,2014-02-05,91.0,,201576,tt2102496,The Birth of Fear,"A group of friends head to a deserted Caribbean island for a surprise overnight bachelor party only to discover that the island isn't deserted. It's actually the home to a secret medical facility. Not only that, there's something wrong with the water surrounding the island...",0,0,Cabin Fever: Patient Zero,en +260310,Space Dogs 2,2014-02-06,90.0,,265865,tt3600950,,"Get ready to blast off to an out-of-this-world adventure with canine teenage astronaut, Pushok, who is determined to find his missing astronaut father. Against all odds, Pushok stows away on a US rocket ship to the moon but soon finds he is not alone, as he is reunited with his mom and encounters a macho monkey and a baby alien. Together, the furry heroes learn the true meaning of teamwork as they join the search for Pushok's dad.",6000000,0,Белка и Стрелка: Лунные приключения,ru +113091,Lust for Love,2014-02-07,85.0,http://lustforlovefilm.com/,,tt2106529,,Winning your childhood sweetheart can create more problems than it solves.,0,0,Lust for Love,en +54415,Sinbad: The Fifth Voyage,2014-02-07,89.0,http://www.sinbadthemovie.com/,,tt1403862,Discover the Legend,"When the Sultan's first born is taken by an evil sorcerer, Sinbad is tasked with traveling to a desert of magic and creatures to save her.",0,0,Sinbad: The Fifth Voyage,en +244268,Love Is Strange,2014-02-07,98.0,http://www.sonyclassics.com/loveisstrange/,,tt2639344,,"After 39 years together, Ben and George finally tie the knot, but George loses his job as a result, and the newlyweds must sell their New York apartment and live apart, relying on friends and family to make ends meet.",0,2262223,Love Is Strange,en +245158,Kids for Cash,2014-02-07,102.0,,,tt2925642,,A look into the judicial scandal that rocked the nation.,0,0,Kids for Cash,en +82703,Mr. Peabody & Sherman,2014-02-07,92.0,,,tt0864835,He's Leaving His Mark On History,"A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-travel machine is stolen and moments in history begin to be changed.",145000000,272912430,Mr. Peabody & Sherman,en +254007,The Samurai,2014-02-08,80.0,,,tt2401181,,"A wolf strives through the woods around an isolated German village. Jakob the young local police officer is onto him, but scents something more in the darkness. What he finds is a man, it seems, wild eyed, of wiry build, in a dress. He carries a katana, a Samurai sword. When the Samurai invites Jakob to follow him on his crusade towards the village, it becomes Jakob's mission to pursue the lunatic to end this wanton destruction. At the end of the night Jakob has experienced too much, is too far from whom he once was. Something hidden has been unleashed to meet the first rays of daylight.",0,0,Der Samurai,de +254689,Never Tear Us Apart: The Untold Story of INXS,2014-02-09,180.0,,,tt3150144,,The story of INXS meteoric rise to international stardom.,0,0,Never Tear Us Apart: The Untold Story of INXS,en +267310,The Decent One,2014-02-09,94.0,,,tt3508830,,"Through previously undiscovered private letters, photos and diaries that were found in the Himmler family house in 1945, the ""The Decent One"" exposes a unique and at times uncomfortable access to the life and mind of the merciless ""Architect of the Final Solution"" Heinrich Himmler.",0,0,Der Anständige,es +248888,Questioning Darwin,2014-02-10,56.0,,,tt3528874,,Literal and creationist interpretation of the Bible is the fastest-growing branch of Christianity in the U.S. This film takes an in-depth look at the views of these Christians who reject Charles Darwin's theory of evolution--while also examining how Darwin handled the question of God himself as he developed his theory of natural selection in the mid-1800s.,0,0,Questioning Darwin,en +284729,Killa,2014-02-11,0.0,,,tt3341582,(The Fort),"An 11-year-old boy struggles to cope with the death of his father while trying to make new friends in an unfamiliar place, after his mother gets a job transfer.",0,0,किल्ला,mr +246320,The Three Brothers: The Return,2014-02-12,0.0,,283733,tt3092076,,,13640000,0,Les trois frères Le retour,fr +255456,Sotto una buona stella,2014-02-13,0.0,,,tt3173524,,,0,0,Sotto una buona stella,it +137321,Winter's Tale,2014-02-13,118.0,http://www.winterstalemovie.com/,,tt1837709,This is not a true story. This is true love.,"A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.",60000000,30800231,Winter's Tale,en +248933,The Dark Valley,2014-02-14,115.0,,,tt2650978,,"Through a hidden path a lone rider reaches a little town high up in the Alpes. Nobody knows where the stranger comes from, nor what he wants there. But everyone knows that they don't want him to stay.",6350000,0,Das finstere Tal,de +255528,Blank: A Vinylmation Love Story,2014-02-14,37.0,http://shows.disney.com/blank,,tt3471320,,"In search of his lost soul mate, an unpainted Vinylmation finds himself on a quest that alters the destiny of his entire world.",0,0,Blank: A Vinylmation Love Story,en +99367,Date and Switch,2014-02-14,91.0,,,tt1878942,Love's all about finding the right combination.,Two guys who make a pact to lose their virginity before prom find their friendship tested when one of them comes out of the closet.,0,0,Date and Switch,en +251227,Camp Takota,2014-02-14,102.0,http://camptakota.com/,,tt3097084,You're never too old to go back,"With her personal and professional life in shambles, Elise ends up having to take a job as a counselor at her old summer camp. There, she reunites with two estranged friends who attended camp and never left. When the future of the camp is put in jeopardy, the three friends must band together to save it, changing the course of their lives forever.",0,0,Camp Takota,en +258353,The Good Mistress,2014-02-15,86.0,http://www.mylifetime.com/movies/the-good-mistress,,tt3520010,,"A woman's one-night stand turns out to be her friend's husband, and a local political candidate.",0,0,The Good Mistress,en +256593,Tillbaka till Bromma,2014-02-19,94.0,,,tt3485880,,"Anders, Kenneth and Steven went to high school together. Today they are 38, still living in the Swedish suburb but now in completely different stages of life. This warm mockumentary covers the lives of these 3 men.",0,0,Tillbaka till Bromma,en +239018,A Lesson in Romance,2014-02-19,73.0,,,tt3108318,,"A successful career Mom gets a case of empty nest syndrome when her children go off to college, and her husband decides to join them and follow his own dreams. Fearing she might be losing her family for good, she enrolls determined to save her family. Will she win her family back, or drive them farther away?",0,0,A Lesson in Romance,en +146243,Haunt,2014-02-19,86.0,,,tt2386278,The Feeding Never Ends,"An introverted teen sparks with his new neighbor, and together the couple begins to explore the haunted house that is family has unknowingly just purchased.",0,0,Haunt,en +256628,Takedown: The DNA of GSP,2014-02-20,90.0,http://ladndegsp.com/en,,tt2626102,,"A look at the life and career of Ultimate Fighting Champion's welterweight world champ Georges St-Pierre, also known as ""GSP"".",0,0,Takedown: The DNA of GSP,en +267623,Pas d'inquiétude,2014-04-09,,,,tt3135128,,,0,0,Pas d'inquiétude,fr +169298,Bullet,2014-02-25,87.0,,,tt2544734,This time they messed with the wrong guy!,Danny Trejo plays 'Bullet' a tough cop who takes the law into his own hands when his grandson is kidnapped.,3000000,0,Bullet,en +261273,Toxin,2014-02-25,72.0,,,tt2118009,"Millions infected, countless dead, and the lucky few survivors struggling to find the last safe corner for humanity.","Lieutenant John Paxton wants revenge against the government he and his men swore their lives to defend. The very government that abandoned and betrayed him, leaving him to die after a secret biological warfare experiment went horribly wrong. John will discover revenge is a journey that will ultimately leave millions infected, countless dead, and the lucky few survivors struggling to find the last safe corner for humanity.",0,0,Toxin,en +252028,Halfweg,2014-02-26,0.0,,,tt2992894,,,0,0,Halfweg,nl +241639,The Nightingale,2014-02-26,100.0,,,tt2976864,,"Zhigen, an old Chinese farmer, has lived alone in Beijing for over 20 years after moving to the city to allow his son Chongyi to attend university. He decides to make the long journey from Beijing to Yangshuo to honour the promise he made to his wife to bring back the bird that has been his only companion in the city. His daughter-in-law Qianying, a beautiful rich career woman, asks him to take along his granddaughter Renxing, an only child brought up in the lap of luxury. While grandfather and granddaughter set out on their journey - one travelling back in time, the other discovering her roots - Chongyi and Qianying, ponder the meaning of the life they have led in the sole pursuit of success and money.",0,0,夜莺,zh +287170,Love's Coming,2014-02-27,108.0,,,tt3500478,,"The storyline revolves around a group of schoolboys who suspect two of their number are in love with each other. They come up with ways to prove the secret love affair, but things get more complicated when a girl comes into play.",0,0,ใช่รักหรือเปล่า,th +256930,Kano,2014-02-27,185.0,,,tt2247566,,A Taiwanese high school baseball team travels to Japan in 1931 to compete in a national tournament.,7,0,Kano,ja +260522,Easy on the Eyes,2014-02-27,83.0,,,tt3621288,,After getting approval to sell the old mansion young realtor starts to experience very strange things...,2153912,4864560,Legok na Pomine,ru +235260,Son of God,2014-02-28,138.0,,,tt3210686,Their Empire. His Kingdom.,"The life story of Jesus is told from his humble birth through his teachings, crucifixion and ultimate resurrection.",22000000,67800064,Son of God,en +242076,The Bag Man,2014-02-28,108.0,,,tt2212008,The cat's in the bag.,A criminal waits in a seedy motel and waits for his boss after killing several men to steal a bag.,0,56574,The Bag Man,en +259830,Scintilla,2014-02-28,94.0,,,tt2798456,,"From a torturous cell in Africa, Abel Powell is released and given the chance to regroup his team of skilled mercenaries for one last job. A top scientist will guide them half a mile underground through an ex-Soviet bunker to extract the vital specimens and information being paid for by a mysterious backer, but what they seek should never have been found!",0,0,Scintilla,en +249703,Do I Have to Take Care of Everything?,2014-02-28,7.0,,,tt2256646,,"A comedy about a chaotic morning in a family with kids, and a mother who is determined that it's best to take care of everything herself.",0,0,Pitääkö mun kaikki hoitaa?,fi +225044,"Like Sunday, Like Rain",2014-03-01,104.0,http://www.montereymedia.com/likesundaylikerain/,,tt3104818,Some gifts come in extraordinary packages.,A struggling musician becomes a 12-year-old musical prodigy's guardian for a summer.,0,28208,"Like Sunday, Like Rain",en +253309,The Possibilities Are Endless,2014-03-04,83.0,,,tt3512066,,"Scottish musician, Edwyn Collins' world was shattered by a devastating stroke. After fighting back from the brink of death, he discovers that life, love and language mean even more to him that he could ever have imagined.",0,0,The Possibilities Are Endless,en +256740,Wicked Blood,2014-03-04,92.0,,,tt2761578,The Ultimate Endgame,"Hannah and Amber Baker are trapped in a dark Southern underworld of violence, drugs and bikers. Both live in fear of their ""Uncle Frank"" Stinson, the ruthless leader of a crime organization.",3500000,0,Wicked Blood,en +329227,Mi Amigo Hugo,2014-03-05,0.0,,,tt3595024,,,0,0,Mi Amigo Hugo,pt +252773,WTF,2014-03-05,81.0,,,tt3398868,,,0,0,N'importe Qui,fr +258147,Highway of Tears,2014-03-06,76.0,http://www.highwayoftearsfilm.com,,tt2175928,,"In Canada, more than 500 cases of Aboriginal women have gone missing or been murdered since the 1960s. Half the cases have never been solved. Now find out what First Nation leaders are doing to try and swing the pendulum in the other direction.",0,0,Highway of Tears,en +203819,Tracks,2014-03-06,112.0,http://tracks-movie.com/,,tt2167266,Leave everything behind.,"Accompanied only by her faithful dog and four camels, an Australian satisfies her craving for solitude by embarking on a solo trip across the desert from Alice Springs to the Indian Ocean.",0,4878242,Tracks,en +254420,Gulaab Gang,2014-03-07,139.0,,,tt2573750,,A fearless woman fights social injustice; creating a sanctuary for abused women and battling a crooked politician.,0,0,Gulaab Gang,hi +314462,Silsile,2014-03-07,103.0,,,tt3176134,,"Cenk has just arrived back to Istanbul from the United States. Suppressed love slowly begins to resurface after he encounters Ece, a woman whom he had a romantic relationship with in the past. Suddenly, there is a robbery attempt in a quiet and gloomy house, which results in a crime being committed.",0,0,Silsile,tr +253284,Thank You a Lot,2014-03-07,85.0,http://thankyoualotthemovie.com/,,tt2368056,,"A struggling, two-bit music manager will lose his job unless he signs a reclusive country music singer, James Hand, who also happens to be his estranged father.",0,0,Thank You a Lot,en +253283,Take Care,2014-03-07,94.0,,,tt3120054,Love Accidentally,"After being hit by a car, a woman comes home to realize her friends don't really want to take care of her. Desperate for help, she turns to an unlikely source.",0,0,Take Care,en +260030,Nymph,2014-03-08,90.0,,,tt3171764,Mysterious. Irresistible. Deadly.,Two young American women go on a Mediterranean vacation and uncover the watery lair of a killer mermaid hidden beneath an abandoned military fortress.,0,0,Mamula,sr +257214,Loaded,2014-03-08,90.0,,,tt2608030,,Old friends reunite to accompany a friend on a road trip to rehab.,0,0,Loaded,en +253273,Patrick's Day,2014-03-08,102.0,,,tt2889112,,A young man with mental health issues becomes intimate with a suicidal air hostess but his obsessive mother enlists a dysfunctional cop to separate them.,0,0,Patrick's Day,en +253263,The Immortalists,2014-03-08,78.0,,,tt3267194,,"Two eccentric scientists struggle to create eternal youth in a world they call “blind to the tragedy of old age.” As they battle their own aging and suffer the losses of loved ones, their scientific journeys ultimately become personal.",0,0,The Immortalists,en +114155,Effie Gray,2014-03-08,108.0,,,tt1605798,The Celebrity Scandal of the Victorian era,A look at the mysterious relationship between Victorian art critic John Ruskin and his teenage bride Effie Gray.,0,0,Effie Gray,en +253258,The Mend,2014-03-09,110.0,,,tt3271120,,"Mat and Alan, estranged brothers, reunite just before Alan leaves for a vacation with his girlfriend. When he returns sooner than expected without his girlfriend, Alan finds Mat and his family have moved into his apartment.",0,0,The Mend,en +254188,At the Devil's Door,2014-03-09,91.0,,,tt2597242,It's looking for a home.,"When ambitious young real estate agent Leigh is asked to sell a house with a checkered past, she crosses paths with a disturbed girl whom she learns is the runaway daughter of the couple selling the property. When Leigh tries to intervene and help her, she becomes entangled with a supernatural force that soon pulls Leigh's artist sister Vera into its web - and has sinister plans for both of them.",0,0,At the Devil's Door,en +253257,I Believe in Unicorns,2014-03-09,80.0,http://unicornsthemovie.com/,,tt1141702,,"Follows the lyrical journey of an imaginative teenage girl who runs away from home with an older punk rock drifter, but not even unicorns can save her now.",0,0,I Believe in Unicorns,en +253277,Sequoia,2014-03-09,86.0,http://sequoiamovie.com/,,tt2516304,A great place to quit life!,A young man meets a 23-year-old cancer patient on the way to the park and disrupts her plan to commit suicide.,0,0,Sequoia,en +264269,Apartment 18,2014-03-13,90.0,,,tt2400314,,"Sveta and Maxim, a happy newlyweds, are moving to their hew apartment only to discover that there is something mysterious and wrong about their new building.",0,320395,Vladeniye 18,ru +257331,Thread of Lies,2014-03-13,117.0,,,tt3837154,,A seemingly happy family gets rocked by the suicide of the 14-year-old daughter.,0,0,우아한 거짓말,ko +236737,Spanish Affair,2014-03-14,98.0,,388180,tt2955316,,"Rafael, a Seville citizen who has never left the Spanish region of Andalucia, decides to leave his homeland to follow Amaia, a Basque girl unlike other women he has known.",3000000,0,Ocho apellidos vascos,es +277934,Sadece Sen,2014-03-14,0.0,,,tt3477480,,,0,0,Sadece Sen,tr +258251,Ironclad 2: Battle for Blood,2014-03-14,108.0,,259085,tt2404583,,"A survivor of the Great Siege of Rochester Castle fights to save his clan from from Celtic raiders. A sequel to the 2011 film, ""Ironclad.""",0,0,Ironclad 2: Battle for Blood,en +253851,Shirin in Love,2014-03-14,104.0,,,tt2040504,,"Despite being engaged to a successful Iranian plastic surgeon in Beverly Hills, Shirin finds herself falling for a mysterious young man who lives in a lighthouse in northern California.",0,0,Shirin in Love,en +257116,SlingShot,2014-03-14,90.0,,,tt3242934,,"An intimate and inspirational portrait of Segway inventor, Dean Kamen, and his 15-year quest to solve the world's safe water crisis.",0,0,SlingShot,en +239562,The Single Moms Club,2014-03-14,111.0,,,tt2465140,Nothing Like A Little Group Therapy,A group of single moms are brought together in the aftermath of an incident at their children's school.,0,16337881,The Single Moms Club,en +307113,Presidentintekijät,2014-03-14,,,,tt3506224,,,200000,0,Presidentintekijät,fi +286709,Revenge of the Green Dragons,2014-03-15,94.0,,,tt1396523,The American Dream Isn't Free,"A true immigrant story set against the vibrant backdrop of Flushing, N.Y. in the 1980s and 1990s.",5000000,0,Revenge of the Green Dragons,en +256969,Boys of Abu Ghraib,2014-03-15,103.0,,,tt1965162,,"An American soldier deployed at Abu Ghraib finds himself behind the walls of the infamous Hard Site, where he develops a secret friendship with an Iraqi detainee.",0,0,Boys of Abu Ghraib,en +253337,The Winding Stream,2014-03-15,87.0,http://thewindingstream.com/,,tt2516274,"The Carters, The Cashes, and the course of country music","The story of the American music dynasty, the Carters and Cashes, and their decades-long influence on popular music.",0,0,The Winding Stream,en +259395,Tom Segura: Completely Normal,2014-03-15,73.0,,,tt3500822,,An original stand-up comedy special written and performed by comedian Tom Segura.,0,0,Tom Segura: Completely Normal,en +297814,Jasper Redd: Jazz Talk,2014-03-15,61.0,,,tt3041032,,Standup special recorded in Kansas City.,0,0,Jasper Redd: Jazz Talk,en +124470,Exists,2014-03-17,86.0,,,tt1988621,The legend is real. So is the terror.,A group of friends who venture into the remote Texas woods for a party weekend find themselves stalked by Bigfoot.,0,0,Exists,en +172385,Rio 2,2014-03-19,102.0,http://www.riomovies.com/,229932,tt2357291,"He's villainous, she's venomous.","It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.",103000000,500188435,Rio 2,en +186997,The Missing Picture,2014-03-19,95.0,,,tt2852470,,"Rithy Panh uses clay figures, archival footage, and his narration to recreate the atrocities Cambodia's Khmer Rouge committed between 1975 and 1979.",0,52164,L'image manquante,fr +255913,Relationship Status: It's Complicated,2014-03-19,100.0,,,tt3202408,,"Thirty-year-old Ben is about to marry Juliette. His quiet, ordered life will fall to pieces when he meets up again with the person he secretly wants to see the most: Vanessa, the high school bombshell who never so much as looked in his direction. She's back in Paris, and the only person she now knows is him…",0,0,Situation Amoureuse: C'est Compliqué,fr +256561,Free to Play,2014-03-19,75.0,http://www.freetoplaythemovie.com,,tt3203290,One game will change their lives.,"Follow three professional video game players as they overcome personal adversity, family pressures, and the realities of life to compete in a $1,000,000 tournament that could change their lives forever.",150000,0,Free to Play,en +241855,Spring,2014-03-20,109.0,,,tt3395184,Love is a monster.,"A young man in a personal tailspin flees the US to Italy, where he sparks up a romance with a woman harboring a dark, primordial secret.",0,49970,Spring,en +145220,Muppets Most Wanted,2014-03-20,112.0,,256377,tt2281587,Taking the world by farce,"While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.",50000000,80383290,Muppets Most Wanted,en +260094,Four of Us,2014-03-20,93.0,,,tt3623376,,James prepares for his eighth grade oral exams while his family is going through different times.,0,0,Noi 4,it +289159,The Invisible Front,2014-03-20,87.0,http://www.theinvisiblefront.com/,,tt2073679,,"Between 1944–1953, courageous resistance movement took place in the Baltic region of Europe, uniting the partisan troops for struggle against the Soviet Union. “The Invisible Front” was a coded name used by the Soviet Interior forces to describe the resistance movement in Lithuania. Film depicts the story of the fighters through the words and experience of the partisan leader, Juozas Luksa, and interviews with eyewitnesses of those events - both the partisans and the Soviet fighters. Tales of horror, torture and courage are told in the rare archival footage that has never been screened before, and interviews with the surviving members of the resistance movement.",0,0,Nematomas frontas,en +243935,Rob the Mob,2014-03-21,104.0,http://www.robthemobmovie.com/,,tt2481480,True Crime. True Love. True Story.,The true-life story of a crazy-in-love Queens couple who robbed a series of mafia social clubs and got away with it… for a while… until they stumble upon a score bigger than they ever planned and become targets of both the mob and the FBI.,0,206909,Rob the Mob,en +394403,Schwestern,2014-03-21,,,,tt2524822,,,0,0,Schwestern,de +209401,Half of a Yellow Sun,2014-03-21,106.0,http://halfofayellowsunmovie.com/,,tt2215077,,"An epic love story: Olanna and Kainene are glamorous twins, living a privileged city life in newly independent 1960s Nigeria. The two women make very different choices of lovers, but rivalry and betrayal must be set aside as their lives are swept up in the turbulence of war.",0,0,Half of a Yellow Sun,en +197583,50 to 1,2014-03-21,110.0,https://twitter.com/50to1_Movie,,tt1777595,,"A misfit group of New Mexico cowboys find themselves on the journey of a lifetime when they learn their crooked-footed racehorse qualifies to run in the Kentucky Derby. Based on the true story of Mine That Bird, the cowboys must overcome impossible odds even before they reach Churchill Downs and the land of Kentucky's blue bloods.",10000000,1064454,50 to 1,en +332168,Tonight It's Me,2014-03-22,13.0,http://www.tonightitsme.com,,tt3606394,Gonna be a payday.,"A hot young hustler finds himself in uncharted waters when he spends the night with a client who's far from the ""johns"" he's used to servicing.",25000,0,Tonight It's Me,en +238398,Grantham and Rose,2014-03-23,90.0,,,tt2311948,,"When a petty crime thrusts him into the company of a feisty eighty-one-year-old African-American woman named Rose Price, Grantham and Rose push the boundaries of their relationship, their lives, and what it means to love, as they take a road trip back to their roots.",0,0,Grantham and Rose,en +270654,Parts Per Billion,2014-03-25,139.0,,,tt2495104,"When The Earth Ends, Will Love Survive?","The interwoven stories of three couples which are forced to make life altering decisions in the face of a disastrous war. Inspired and sometimes blinded by their love, Len, Mia, Andy, Esther, Anna and Erik are as flawed and beautiful as any of the billions who are facing this human-made biological disaster.",500000,15000000,Parts Per Billion,en +252680,Moms' Night Out,2014-03-25,98.0,http://www.momsnightoutmovie.com/,,tt3014666,What could go wrong?,"Yearning for an evening without their kids, some friends plan a night out. But to do this, their husbands need to watch the kids. What can go wrong?",5000000,10429707,Moms' Night Out,en +223946,Les Gazelles,2014-03-26,100.0,,,tt2792346,,"Marie and Eric, a couple in their thirties who have been together since college, buy their first apartment when Marie is suddenly overcome by doubt. Her encounter with a handsome, dark-haired man forces her to make a decision...",0,0,Les Gazelles,fr +180299,The Raid 2,2014-03-27,150.0,http://www.sonyclassics.com/theraid2/,257960,tt2265171,It's Not Over Yet,"After fighting his way through an apartment building populated by an army of dangerous criminals and escaping with his life, SWAT team member Rama goes undercover, joining a powerful Indonesian crime syndicate to protect his family and uncover corrupt members of his own force.",4500000,2627209,The Raid 2: Berandal,id +384130,Monkey Planet,2014-04-02,180.0,http://www.bbc.co.uk/programmes/p01r52gr,,tt3723820,,"We humans are part of an extraordinary family, with hundreds of bizarre and colourful relatives all over the world. Monkey Planet explores the ingenious survival tactics and amazing physical adaptations of our primate family, including strange lemurs, acrobatic monkeys, and enigmatic apes. Spanning the globe, we uncover the secrets of an array of fascinating, flexible primate minds",0,0,Monkey Planet,en +264746,Tinker Ticker,2014-04-03,102.0,,,tt3450112,,"Jung-gu sends out homemade bombs to people who are likely to use them. He partners up with Hyo-min, the first person to actually detonate one of them. However, Hyo-min becomes reckless and stirs up Jung-gu's aggressive tendencies that he has tried hard to suppress. Finally, Jung-gu explodes in anger, killing the detective on his tail and framing Hyo-min for all his crimes.",0,0,들개,ko +156597,Stage Fright,2014-04-03,89.0,,,tt2190838,Sing Your Heart Out!,A snobby musical theater camp is terrorized by a blood-thirsty killer who hates musical theater.,0,0,Stage Fright,en +262786,Il pretore,2014-04-03,0.0,,,tt3086244,,,0,0,Il pretore,it +278867,Hardkor Disko,2014-04-04,87.0,http://www.hardkordisko.com/,,tt3671676,,A sociopath begins a relationship with the daughter of a couple he intends to murder.,0,0,Hardkor Disko,pl +285245,10 000 timmar,2014-04-04,90.0,,,tt3013386,,"Eric, an ordinary man in his mid 30's with an ordinary job wins a large sum of money playing the lottery. Despite his total lack of talent, he quits his job and sets off to learning how to play soccer. Eric firmly believes that if he spends 10 000 hours of training on what he sets his mind to, he can master just about anything.",0,0,10 000 timmar,sv +297298,Mandıra Filozofu,2014-04-04,0.0,,474015,tt3655374,,,0,0,Mandıra Filozofu,tr +258193,Alien Abduction,2014-04-04,85.0,http://www.alienabductionfilm.com/,,tt2510434,Fear The Lights...,A vacationing family encounters an alien threat in this pulse-pounding thriller based on the real-life Brown Mountain Lights phenomenon in North Carolina.,0,0,Alien Abduction,en +256474,In the Blood,2014-04-04,108.0,,,tt2101570,She Will Stop At Nothing,"When her husband goes missing during their Caribbean vacation, a woman sets off on her own to take down the men she thinks are responsible.",10000000,0,In the Blood,en +260947,Something Wicked,2014-04-04,95.0,,,tt1327601,,"A young couple embark upon their honeymoon against the chilling landscapes of the Pacific Northwest. But when tragedy strikes, gruesome secrets from their past collide with sinister forces of the present...",3000000,0,Something Wicked,en +358724,The Other One,2014-04-04,94.0,http://www.theotheronemovie.com,,tt2917566,,"A teacher, haunted by the death of her husband, returns to her childhood home to care for her ill mother. But as her mother's dementia deepens, dark secrets tumble out, including a family secret that will turn her life upside-down forever.",0,0,The Other One,en +263627,Lucky in Love,2014-04-05,0.0,,,tt3356654,,"When Mira's April Fool's Day tricks materialize, she finds herself promoted to the perfect job, dating the perfect man and living in the perfect home. Mira's newly upgraded life even involves working with her CEO and her good friend, on a coveted work project. When these seemingly positive changes result in big challenges, Mira realizes that the pursuit of perfection is a fool's errand. In order to achieve a life that's perfect for her, Mira must let go of perfection and chase what brings her true happiness.",0,0,Lucky in Love,en +282762,Committed,2014-04-06,86.0,,,tt3073490,,An accidental meeting between a man being pressured to propose to his girlfriend and a runaway bride.,0,0,Committed,en +320420,Love Me,2014-04-06,94.0,,,tt3249478,,"Love Me follows Western men and Ukrainian women as they embark on an unpredictable and riveting journey in search of love through the modern ""mail-order bride"" industry.",0,0,Love Me,en +200505,Draft Day,2014-04-11,109.0,,,tt2223990,The greatest victories don't always happen on the field.,"At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.",25000000,28831145,Draft Day,en +264555,Death Clique,2014-04-12,83.0,,,tt3509114,A jealous rivalry between three high school girls leads to a shocking crime.,"Inspired by true events, a friendship rivalry between three high school girls escalates into a shocking act of violence, and soon one of them is dead. Now the dead girl's mom is determined to find her missing child... and get justice for her daughter.",2000000,0,Death Clique,en +264569,Dave Attell: Road Work,2014-04-13,42.0,,,tt3667148,,2014 standup special originally aired on Comedy Central.,0,0,Dave Attell: Road Work,en +250686,Eager,2014-04-13,8.0,https://vimeo.com/83390470,,tt3595550,,Traditional clay-mation and stop-motion animated film.,0,0,Eager,en +291865,From the Dark,2014-04-14,90.0,,,tt4030442,Pray For Dawn.,The story centers on a young couple on a road trip through the Irish countryside who encounter an ancient force of evil.,0,0,From the Dark,en +270672,The Formula,2014-04-15,90.0,,,tt2328490,They Did The Math So You Don't Have To,"The story of Quinn and Graham, two engineering students who discover a mathematical formula to pick up women with ease.",0,0,The Formula,en +102382,The Amazing Spider-Man 2,2014-04-16,142.0,http://www.theamazingspiderman.com,125574,tt1872181,No more secrets.,"For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.",200000000,705717432,The Amazing Spider-Man 2,en +193610,The Other Woman,2014-04-16,109.0,,,tt2203939,The oddest friends are about to get even,"After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.",40000000,196781193,The Other Woman,en +285858,Corbo,2014-04-17,119.0,,,tt3924798,,"A teenage Quebecer in the 1960s evolves from pro-independence activist to radical terrorist, in this gripping chronicle of the origins of the FLQ in the decade preceding the 1970 October Crisis.",0,0,Corbo,fr +184345,A Haunted House 2,2014-04-17,87.0,,251937,tt2828996,It'll scare the #2 out of you.,"Having exorcised the demons of his ex, Malcolm is starting fresh with his new girlfriend and her two children. After moving into their dream home, however, Malcolm is once again plagued by bizarre paranormal events.",0,0,A Haunted House 2,en +319986,Grace,2014-04-18,95.0,,,tt2963344,,"Gracie knows hangovers. She's intimately acquainted with them. But this one? Why did she wake up, half-dressed, on a Florida beach, 1100 miles from home? And this time her father - who also knows about the tragedy of addiction from his struggles with Gracie's mom - isn't going to clean things up.",0,0,Grace,en +255491,Authors Anonymous,2014-04-18,92.0,,,tt2114461,,"When a dysfunctional group of unpublished writers accept Hannah into their fold, the last thing they expect is her overnight success. Can these lovable misfits achieve their artistic dreams and avoid killing one another in the process?",0,0,Authors Anonymous,en +265351,İtirazım Var,2014-04-18,114.0,,,tt3646462,,,0,0,İtirazım Var,tr +261036,Match,2014-04-18,90.0,,,tt2637378,,"A Seattle couple travel to New York to interview colorful former dancer Tobi for research on a dissertation about dance. But soon, common niceties and social graces erode when the questions turn personal and the true nature of the interview is called into question.",0,37285,Match,en +271185,Ask Me Anything,2014-04-19,100.0,http://undiscoveredgyrl.com/,,tt2505294,Young. Not so innocent.,"Beautiful, wild, funny, and lost, Katie Kampenfelt takes a year off before college to find herself, all the while chronicling her adventures in an anonymous blog into which she pours her innermost secrets. Eventually, Katie's fearless narrative begins to crack, and dark pieces of her past emerge.",950000,0,Ask Me Anything,en +269246,Batman Beyond Darwyn Cooke's Batman 75th Anniversary Short,2014-04-19,1.0,,,tt3643216,,Terry faces off against a much younger Batman,0,0,Batman Beyond Darwyn Cooke's Batman 75th Anniversary Short,en +265832,700 Sundays,2014-04-19,119.0,,,tt3383040,You'll Have The Time Of His Life,"In 700 Sundays, legendary comedian and actor Billy Crystal tells the stories of his youth, growing up in the jazz world of Manhattan, his teenage years, and finally adulthood. The Tony Award-winning show is a funny and poignant exploration of family and fate, loving and loss.",0,0,700 Sundays,en +270646,The Kindergarten Teacher,2014-04-19,120.0,,,tt3709678,,"A teacher discovers in a five year-old child a prodigious gift for poetry. Amazed and inspired by this young boy, she decides to protect his talent in spite of everyone.",0,0,Haganenet,en +265717,Ti sposo ma non troppo,2014-04-20,0.0,,,tt3651358,,,0,0,Ti sposo ma non troppo,it +265934,"Tommy Cooper: Not Like That, Like This",2014-04-21,100.0,,,tt3323314,,The life and times of Tommy Cooper,0,0,"Tommy Cooper: Not Like That, Like This",en +227325,A Fighting Man,2014-04-24,88.0,,,tt2854894,,Two men meet in the ring for a fight that will change their lives.,0,0,A Fighting Man,en +271495,Dialogues,2014-04-24,0.0,,,tt3150834,,,0,0,Диалоги,ru +278706,Chrysalis,2014-04-24,100.0,http://therestaredead.com/,,tt2836260,The rest are dead...,"Joshua and Penelope are survivors of a deadly infection that laid waste to humanity 25 years ago. When they encounter fellow survivor Abira, their lives are forever changed as they fight off the remnants of the infected.",0,0,Chrysalis,en +302036,Beyond,2014-04-25,89.0,,,tt2377414,Survival is a Choice.,A suspenseful sci-fi journey tracking the turbulent relationship of Cole and Maya as they struggle to survive in a world where the human population has been left decimated after an extra-terrestrial attack.,0,0,Beyond,en +256836,Next Goal Wins,2014-04-25,97.0,,,tt2446600,Without A Win. But Never Without Hope.,"An inspirational story about the power of hope in the face of seemingly insurmountable odds, and an object lesson in what it really means to be a winner in life.",0,0,Next Goal Wins,en +229559,The Unexpected Love,2014-04-25,105.0,,,tt2311348,,"Juanito moved to New York to succeed as an actor. Years have gone by but success has not come his way and now he takes an odd jobs to survive. One day he is visited by his apparently successful cousin. However, their life together will discover the reality behind each of them.",0,0,La vida inesperada,es +204255,We Are the Freaks,2014-04-25,72.0,,,tt2302969,,Three misfits embark on a weekend they will never forget.,0,0,We Are the Freaks,en +298751,Growing Up and Other Lies,2014-04-26,90.0,,,tt2399406,One big island. One absurdly long walk.,"After living for years as a struggling artist in New York City, Jake is calling it quits and returning home to Ohio. On his last day in the city, he persuades his three oldest friends – Billy, Rocks and Gunderson – to help him retrace their greatest adventure together: a walk down the entire length of Manhattan.",0,0,Growing Up and Other Lies,en +292539,Food Chains,2014-04-26,83.0,,,tt2141739,,,913000,0,Food Chains,de +152736,Child of God,2014-04-28,104.0,,,tt1951095,Murder is his salvation,"A dispossessed, violent man's life is a disastrous attempt to exist outside the social order. Successively deprived of parents and homes and with few other ties, Ballard descends to the level of a cave dweller as he falls deeper into crime and degradation.",0,0,Child of God,en +268099,Sleepless In New York,2014-04-30,90.0,http://sleepless-in-new-york.com,,tt3195056,Love is the best thing in life...until it's over.,Heartbreak affects us all. Oscar-nominated director Christian Frei teams with famed anthropologist Helen Fisher to examine the power and resilience of love despite it all.,0,0,Sleepless In New York,en +208869,Plastic,2014-04-30,102.0,,,tt2556874,HUSTLE. HEIST. REPEAT.,"Sam & Fordy run a credit card fraud scheme, but when they steal from the wrong man, they find themselves threatened by sadistic gangster. They need to raise £5m and pull off a daring diamond heist to clear their debt.",10,0,Plastic,en +267557,Un fidanzato per mia moglie,2014-04-30,0.0,,,tt3674026,,,0,0,Un fidanzato per mia moglie,it +241968,Carmina and Amen,2014-04-30,97.0,,418219,tt2823088,,"After her husband dies, Carmina keeps it a secret until a check that he had been expecting comes in.",0,0,Carmina y amén.,es +238781,24 Days,2014-04-30,110.0,,,tt3600588,,"When Ilan Halimi is kidnapped for ransom because Jewish and supposedly rich, his family and the police start a race against time to save him from the tortures of the ""gang of barbarians"".",0,0,24 jours,fr +264553,The Life and Mind of Mark DeFriest,2014-04-30,92.0,https://www.facebook.com/defriestfilm,,tt2766004,,"When a legendary escape artist comes up for parole after 30 years behind bars, a chance for freedom must be weighed against his infamous past.",0,0,The Life and Mind of Mark DeFriest,en +244801,52 Tuesdays,2014-05-01,114.0,,,tt3100636,,"Sixteen-year-old Billie’s reluctant path to independence is accelerated when her mother reveals plans for gender transition, and their time together becomes limited to Tuesdays. This emotionally charged story of desire, responsibility, and transformation was filmed over the course of a year—once a week, every week, only on Tuesdays.",0,0,52 Tuesdays,en +227975,Futuro Beach,2014-05-01,106.0,,,tt2199543,A hero split in half.,"Donato fails in his attempt to save a drowning man, and meets one of the man's friends. He decides to start his life over, but pieces of his past keep coming after him.",0,0,Praia do Futuro,pt +267481,Kitchen in Paris,2014-05-01,106.0,,,tt3711466,,"The employees of the famous Russian ""Claude Monet"" restaurant are forced to move their business to Paris.",0,0,Кухня в Париже,ru +187596,Walk of Shame,2014-05-02,95.0,,,tt2463288,Awesome night. Epic aftermath.,"A reporter's dream of becoming a news anchor is compromised after a one-night stand leaves her stranded in downtown L.A. without a phone, car, ID or money - and only 8 hours to make it to the most important job interview of her life.",15000000,59209,Walk of Shame,en +177047,Decoding Annie Parker,2014-05-02,91.0,http://www.decodingannieparkerfilm.com/,,tt1464191,"Everyone thought they were crazy, until they proved everyone wrong.",The lives of a breast-cancer patient and a researcher who is trying to prove a genetic link to cancer intersect in a groundbreaking study.,2000000,48390,Decoding Annie Parker,en +270383,A Daughter's Nightmare,2014-05-03,90.0,,,tt3103284,Trust no one.,"A college student suspects that a nurse may harm her lonely, widowed mother.",0,0,A Daughter's Nightmare,en +271234,22 Minutes,2014-05-08,90.0,,,tt2856896,,22 minutes got Russian marine to free a hijacked oil tanker far from shore.,6500000,0,22 Minuty,ru +284362,El vals de los inútiles,2014-05-08,0.0,,,tt3611354,,,0,0,El vals de los inútiles,es +259997,Such Good People,2014-05-09,97.0,http://suchgoodpeoplemovie.com/,,tt2486880,,A young couple discovers a secret room filled with cash while house-sitting for rich friends who die while out of the country.,0,0,Such Good People,en +256347,Not Safe for Work,2014-05-09,74.0,,,tt2226495,"No Protection, No Help, No Escape",An office worker is trapped inside the building where a killer is on the loose.,0,0,Not Safe for Work,en +242310,Rage,2014-05-09,98.0,http://hannibalclassics.com/films/tokarev-aka-rage,,tt2401807,The past never stays dead,"When the Russian mob kidnaps the daughter of a reformed criminal, he rounds up his old crew and seeks his own brand of justice.",21000000,0,Tokarev,en +279332,Mom's Day Away,2014-05-11,84.0,http://www.hallmarkchannel.com/momsdayaway,,tt3593916,,A frustrated stay-at-home mom takes a weekend away when her family ignores her over Mother's Day.,0,0,Mom's Day Away,en +276120,The (Dead Mothers) Club,2014-05-12,75.0,http://www.hbo.com/documentaries/the-dead-mothers-club,,tt2328773,,"Three women whose paths never cross, yet are bound by the shared experience of losing their mothers during adolescence, exploring each one’s sometimes-complex relationship with her mother.",0,0,The (Dead Mothers) Club,en +267579,The Ardor,2014-05-14,101.0,http://www.takepart.com/ardor,,tt1384925,,"Kaí is a mysterious shaman who emerges from the Rio Paraná to help a poor farmer and his daughter, who are threatened by a band of cold-blooded mercenaries hired to force them to sell their land.",0,0,El Ardor,es +268321,Squatters,2014-05-14,102.0,http://www.sonypictures.com/movies/squatters/,,tt2359307,They want what they have.,A wealthy couple from the Pacific Palisades discovers homeless young lovers have moved into their home.,0,0,Squatters,en +157829,The Disappearance of Eleanor Rigby: Them,2014-05-14,119.0,http://eleanorrigby-movie.com/,446782,tt3729920,Two films. One love.,A New York couple's relationship is tested after the loss of their child. This film is the wide-released combination of the original twohim andher volumes that premiered at the Cannes Film Festival.,0,985007,The Disappearance of Eleanor Rigby: Them,en +256311,Stereo,2014-05-15,95.0,,,tt3348102,,"Erik has is own motorbike workshop in a sleepy little town. He may have the telling word ‘scoundrel’ tattooed onto his lower arm but he nonetheless creates an impression of a well-behaved average Joe. His relationship with his girlfriend Julia is going well and her daughter Linda is very fond of her new Dad. But then all of a sudden the mysterious Henry appears and begins following him about like a sinister shadow. The more Erik tries to shake off his diabolical guest the more Henry intrudes into his life. But then when a violent gangster named Keitel enters the fray and threatens not only Erik but Julia and Linda, Erik’s seemingly ideal world begins to run off the rails.",0,0,Stereo,de +127585,X-Men: Days of Future Past,2014-05-15,131.0,http://www.x-menmovies.com/,748,tt1877832,"To save the future, they must alter the past",The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.,250000000,747862775,X-Men: Days of Future Past,en +271826,An Eye for Beauty,2014-05-15,102.0,,,tt2414040,,An architect and his wife see their relationship challenged.,0,40000,Le Règne de la beauté,fr +258751,For a Handful of Kisses,2014-05-16,98.0,,,tt3028412,,"A girl. A boy. A love story. But also about dreams, fears, life, true love, friendship and how we deal with it. And a secret between them...",0,0,Por un puñado de besos,es +266044,Amour fou,2014-05-16,96.0,,,tt3003800,,"A ""romantic comedy"" based loosely on the suicide of the poet Henrich von Kleist in 1811.",0,0,Amour fou,de +222935,The Fault in Our Stars,2014-05-16,125.0,,,tt2582846,One Sick Love Story,"Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.",12000000,307166834,The Fault in Our Stars,en +228496,Sx_Tape,2014-05-16,85.0,,,tt2041331,Some tapes shouldn't be made,"From the director of CANDYMAN and the producers of PARANORMAL ACTIVITY comes a found-footage nightmare of lust, possession, and destruction. Jill's an artist. Ian's a filmmaker. And their love life is off the chain. There's no experience too wild, no dare too dangerous—not even when Jill lets Ian strap her to a gurney in the abandoned hospital they're scoping out for their next art show. But he shouldn't have left her alone. Not even as a joke. Now, Jill's hookup with horror has awakened something in that place. Something with a lust for more than flesh.",600000,0,Sx_Tape,en +253251,"10,000 km",2014-05-16,99.0,,,tt3114132,,"Two people in love, two apartments - one in Barcelona and another on in Los Angeles - and the images of their past, present and future. Can love survive 10,000km?",0,0,10.000 KM,en +268618,Life in a Fishbowl,2014-05-16,125.0,http://www.kisi.is,,tt2172554,,"Three tales of three people who have a lasting effect on one another. A young writer whose career is skyrocketing finds himself in a stormy marriage. He divorces his wife after the death of their daughter, shuts himself from the outside world and drinks himself to death over a twenty-year period.",2700000,0,Vonarstræti,is +197696,Welcome to New York,2014-05-17,125.0,,,tt2758890,,"Fiction inspired from the story of the rise and the fall of french politician and former head of the International Monetary Fund, Dominique Strauss-Kahn.",0,0,Welcome to New York,en +264397,The Incident,2014-05-17,102.0,,,tt3528756,"If the road never stops, you better keep going.","Two parallel stories about people trapped in illogical endless spaces: two brothers and a detective locked on an infinite staircase, and a family locked on an infinite road...for over 35 years.",0,0,El Incidente,es +258255,Mischief Night,2014-05-20,88.0,,,tt1763256,All's Fair in Blood and Gore,"The night before Halloween, a teenage babysitter is stalked by a masked killer; but in an unusual turn of events, victim and victimizer begin to develop romantic feelings for each other.",0,0,Mischief Night,en +255278,Way of the Wicked,2014-05-20,92.0,,,tt2483208,Evil never dies......,"Lawrence Salva's script centers on a detective (Facinelli), on the trail of a murderer, who is led to believe that a local teenager, harboring some sort of strange supernatural power, may be involved. Slater plays the man's disbelieving boss, while Hauer plays a man-of-the-cloth who aids the cop on his mission.",3000000,0,Way of the Wicked,en +232672,Blended,2014-05-21,117.0,,,tt1086772,"Single Dad, No Clue. Single Mum, Flying Solo.","After a bad blind date, a man and woman find themselves stuck together at a resort for families, where their attractions grows as their respective kids benefit from the burgeoning relationship.",40000000,123494610,Blended,en +270899,In the Name of My Daughter,2014-05-21,122.0,,,tt2929890,,"In 1976 in Nice, Agnes, the daughter of the owner of the Palais de la Méditerranée, falls in love with an older lawyer.",0,0,L'homme qu'on aimait trop,fr +278095,A Gift with a Character,2014-05-22,88.0,,,tt3963170,,Is it fun to be panda? May be... But not for Misha whose job is to work as a panda during birthday parties.,0,0,Подарок с характером,ru +265226,The Wonders,2014-05-22,110.0,http://lemeraviglie.mymovies.it/,,tt3044244,,"Gelsomina’s family works according to some special rules. First of all, Gelsomina, at twelve years of age, is head of the family and her three younger sisters must obey her: sleep when she tells them to and work under her watchful eye. But the world, the outside, mustn’t know anything about their rules, and must be kept away from them. They must learn to disguise themselves.",0,0,Le meraviglie,it +188161,A Million Ways to Die in the West,2014-05-22,116.0,,,tt2557490,Bring protection.,"As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.",0,0,A Million Ways to Die in the West,en +270759,One on One,2014-05-22,122.0,,,tt3696126,,"On May 9th, a female high school student was brutally murdered. There are 7 suspects and 7 shadows that terrorize them. Who are they and which one of them is you?",0,0,일대일,ko +242224,The Babadook,2014-05-22,93.0,http://thebabadook.com/,,tt2321549,"If it's in a word, or it's in a look, you can't get rid of the Babadook.","A single mother, plagued by the violent death of her husband, battles with her son's fear of a monster lurking in the house, but soon discovers a sinister presence all around her.",2000000,6676471,The Babadook,en +266285,The Salvation,2014-05-22,100.0,,,tt2720680,Bad men will bleed.,"In 1870s America, a peaceful American settler kills his family's murderer which unleashes the fury of a notorious gang leader. His cowardly fellow townspeople then betray him, forcing him to hunt down the outlaws alone.",10500000,42070000,The Salvation,da +253533,Manam,2014-05-23,163.0,,,tt2926068,,Radha (Naga Chaitanya) and Krishna (Samantha) are a married couple with a kid Bittu in early 1980's. They die in an accident. Bittu (Nagarjuna) grows up and happens to see reincarnation of his father and his mother as youngsters. The rest of the story is all about how Bittu tries to unite these two youngsters. And there is another twist in the tale for which you must watch the movie on the big screen!,0,0,మనం,te +306383,Gajakessari,2014-05-23,0.0,,,tt3571378,,"Film starring Yash, Amoolya and Anant Nag",0,0,Gajakessari,en +270851,Blood Lake,2014-05-25,90.0,http://www.animalplanet.com/tv-shows/blood-lake,,tt3723790,They feed on one thing only.,"After chomping through the fish population, thousands of starved lampreys begin attacking the citizens of a sleepy lake town, and the community scrambles to stay alive.",0,0,Blood Lake: Attack of the Killer Lampreys,en +331641,Food and Shelter,2015-12-04,0.0,,,tt4572998,,A single mother struggles to pay the rent and put food on the table for her 10 year old son.,0,0,Techo y comida,es +267793,Petals on the Wind,2014-05-26,85.0,,293981,tt3496892,,"This sequel to Flowers in the Attic picks up 10 years after Cathy, Chris and Carrie managed to escape Foxworth Hall.",0,0,Petals on the Wind,en +256092,Drive Hard,2014-05-26,96.0,,,tt2968804,One Hell of A Ride,A former race car driver is abducted by a mysterious thief and forced to be the wheel-man for a crime that puts them both in the sights of the cops and the mob.,12000000,0,Drive Hard,en +257447,Tapped Out,2014-05-27,105.0,,,tt2361184,He lost everything... except the will to fight,"A disgruntled teenager, sent to do community service at a rundown Karate school, enters an MMA tournament to face the man who killed his parents.",0,0,Tapped Out,en +269650,Appleseed Alpha,2014-05-28,90.0,,87800,tt3638012,"To find Olympus, they must fight to survive.","Based on the comic book by the creator of Ghost in the Shell, a young female soldier Deunan and her cyborg partner Briareos survive through the post World War 3 apocalyptic New York in search of human's future hope, the legendary city of Olympus.",0,0,Appleseed Alpha,ja +242093,Under the Electric Sky,2014-05-29,85.0,,,tt2966934,,"This 3-D film chronicles the love, community, and life of festival-goers during Electric Daisy Carnival Las Vegas, the largest music festival in the U.S. Behind-the-scenes footage and exclusive interviews with Insomniac's Pasquale Rotella reveal the magic that makes this three-night, 345,000-person event a global phenomenon.",0,0,Under the Electric Sky,en +269494,A Hard Day,2014-05-29,111.0,,,tt3697626,,"On the way to his mother’s funeral, a detective accidentally hits a person with his car. He takes the body with him and puts it into his mother’s coffin. The moment he feels relieved, he receives a call. This caller insists that he saw the detective’s hit-and-run, but instead of asking for money, he wants to know about the body’s whereabouts, leading to a do-or-die showdown of the witness and detective.",0,0,끝까지 간다,ko +266400,Downhill,2014-05-30,95.0,http://downhill-the-movie.com/,,tt2701390,,"Four old school friends reunite to attempt the epic coast to coast walk, across the United Kingdom. As their journey unfolds, this comically incompatible foursome walk full tilt into their mid-life crises.",0,0,Downhill,en +248543,Good Luck,2014-05-30,90.0,,,tt2986122,,"After several behavior problems, teenager John is admitted to a psychiatric clinic by his family. There he meets Judith, for who he soon falls in love. The problem is that she does not have long to live is and they know it. This shall not prevent the emergence of a great romance in the clinic.",0,0,Boa Sorte,pt +273084,Bipolar,2014-05-30,80.0,,,tt1794801,,"When Harry Poole tries out a new medication for Bipolar Disorder, he is reborn as ""Edward Grey"", a seductive but dangerous alter ego who dramatically takes over his life, changing the young man and those around him forever.",0,0,Bipolar,en +262958,Jimmy's Hall,2014-05-30,106.0,,,tt3110960,Where Anything Goes and Everyone Belongs.,In the 1930s political activist Jimmy Gralton is deported from Ireland during the 'Red Scare'.,0,2606000,Jimmy's Hall,en +199056,The Big Ask,2014-05-30,0.0,http://thebigaskmovie.com/,,tt2327541,,The Big Ask is a dark comedy about three couples who head to the desert to help their friend heal after the death of his mother. They would do anything for him - except for the one thing he wants.,0,0,The Big Ask,en +297466,A Reunion,2014-06-01,80.0,,,tt3268288,,"Two estranged friends travel across the country to attend their college reunion, and face their complicated past along the road.",0,0,A Reunion,en +273743,The Last Light,2014-06-01,93.0,,,tt2375443,,"Seven strangers find themselves trapped inside an abandoned hospital after an unexplainable apocalyptic event. In addition to being haunted by what they've lost, the strangers must also fight off mysterious creatures that hunt them down one by one.",400000,0,The Last Light,en +289225,Love Finds You In Sugarcreek,2014-06-01,93.0,http://www.uptv.com/lovefindsyouinsugarcreek,,tt3212830,,Will a mysterious stranger's past wreak havoc on a quiet Amish community after they've opened their doors -- and hearts -- to him and his son?,0,0,Love Finds You In Sugarcreek,en +274483,Fool Circle,2014-06-04,90.0,,,tt3169710,,"Two, very different, brothers are reunited for their father's funeral. But, when they arrive at the crematorium nobody is there, not even the corpse, except for Chloe who introduces herself as their sister.",0,0,Tristesse Club,fr +274820,4 Minute Mile,2014-06-05,96.0,,,tt2217895,Teenage distance runner works hard to achieve a 4-minute mile.,A teenager overcomes odds to run a 4-minute mile race.,0,0,One Square Mile,en +85350,Boyhood,2014-06-05,164.0,,,tt1065073,12 years in the making.,"The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.",4000000,44349000,Boyhood,en +280422,All at Once,2014-06-05,0.0,,,tt3805180,,,750000,3,Все и сразу,ru +246011,Ping Pong Summer,2014-06-06,92.0,,,tt2402985,1985 - Wish You Were Here!,"In 1985 a summer vacation in Ocean City, Md., changes the life of a shy white teen who's obsessed with table tennis and hip-hop music.",0,25781,Ping Pong Summer,en +251555,"Pancho, el perro millonario",2014-06-06,,,,tt3132094,,,0,2483130,"Pancho, el perro millonario",es +276536,We Are Many,2014-06-08,104.0,http://www.wearemanymovie.com,,tt1929449,The story of the largest global protest that would change the world forever.,"The story of the biggest demonstration in human history, which took place on 15th February 2003, against the impending war on Iraq.",0,0,We Are Many,en +273511,Ghost of Goodnight Lane,2014-06-10,97.0,http://www.ghostofgoodnightlane.com/,,tt1974393,"If she's still here, then it won't be quiet, not for you, not for anyone.","When the staff inside a renovated film studio finds a co-worker dead one morning, the pieces of a forty year puzzle add up to an angry ghost who has let the last person step inside her house. But will they ever get out alive?",0,0,Ghost of Goodnight Lane,en +280019,For the Emperor,2014-06-11,104.0,,,tt4136696,,"Yi-Hwan (Lee Min-Ki) is a former professional baseball player. He was involved in fixing games and lost everything. Gang boss Sang-Ha (Park Sung-Woong) runs a money lending business and a gambling location. He makes Yi-Hwan work for him. Meanwhile, Yi-Hwan falls for bar owner Yeon-Soo (Lee Tae-Im).",0,0,황제를 위하여,ko +276157,What Is Left,2014-06-12,,,,tt3610264,,,0,0,What Is Left,de +224894,The Man Whose Mind Exploded,2014-06-13,77.0,,,tt2402602,,"In this ""beautifully intimate and utterly unique piece of cinema"", Toby Amies crosses the line between filmmaker and carer, trying to cope with the strange and hilarious world view of the fragile eccentric, Drako Zarharzar. A love story.",0,0,The Man Whose Mind Exploded,en +273096,My Man,2014-06-14,129.0,,,tt2763746,My Man,Young Hana had lost everything in the earthquake and tsunami and was being taken care of by a relative named Jungo. As Hana grew up she began to fall in love with her own relative.,0,0,私の男,ja +276906,Apartment Troubles,2014-06-15,95.0,,,tt2977110,,"Two codependent roommates, on the verge of eviction, flee New York for the promise of sunshine in Los Angeles where their friendship is tested by a chance at fame, a fortune teller and an amorous wealthy aunt.",0,0,Apartment Troubles,en +284343,Self Made,2014-06-16,89.0,,,tt3751304,,"Self Made tells the story of two women - one Israeli, the other Palestinian- who are trapped within their respective worlds. After a mix-up at a checkpoint, they find themselves living the life of the other on the opposite side of the border.",0,0,Boreg,he +277237,Hyena,2014-06-18,112.0,,,tt1837574,"There are 33,000 in his gang. His gang is the police.","Good policing doesn't necessarily mean doing everything by the book. But as the business of crime in London turns to favour the Albanians and Turks, how does a ""good"" policeman survive?",0,0,Hyena,en +246741,What We Do in the Shadows,2014-06-19,86.0,http://whatwedointheshadows.com/,,tt3416742,Some interviews with some vampires,Vampire housemates try to cope with the complexities of modern life and show a newly turned hipster some of the perks of being undead.,0,3333000,What We Do in the Shadows,en +315723,The Nostalgist,2014-06-19,17.0,http://www.thenostalgistfilm.com,,tt3215822,,"In the futuristic city of Vanille, with properly tuned ImmerSyst Eyes & Ears the world can look and sound like a paradise. But the life of a father and his young son threatens to disintegrate when the father's device begins to fail. Desperate to avoid facing his own traumatic reality, the man must venture outside to find a replacement, into a city where violence and danger lurk beneath a skim of beautiful illusion.",0,0,The Nostalgist,en +269173,The Anomaly,2014-06-19,97.0,https://www.facebook.com/TheAnomalyMovie?fref=ts,,tt2962726,,A former soldier is taken captive and awakens in the back of a van where he learns that he only has less than 10 minutes to figure out how he got there.,0,0,The Anomaly,en +254435,The Boy in the Mirror,2014-06-19,78.0,,,tt2343380,,"What child has never dreamed of having a double, someone who would do all of the annoying things in his place? Seeing his reflection get out of the mirror into the real world, this dream comes true for the fearless boy Fernando. Odnanref, his double, presents himself as a solution to all his problems. Adaptation of a successful Brazilian novel written by Fernando Sabino.",0,0,O Menino no Espelho,pt +201419,Code Black,2014-06-20,88.0,http://codeblackmovie.com/,,tt2759372,,"Code Black follows a team of young, idealistic and energetic ER doctors during the transition from the old to the new L.A. County as they try to avoid burnout and improve patient care. Why do they persist, despite being under siege by rules, regulations and paperwork?",0,0,Code Black,en +184098,Think Like a Man Too,2014-06-20,105.0,,239430,tt2239832,,"All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.",24000000,70181428,Think Like a Man Too,en +298540,Cru,2014-06-21,85.0,https://www.facebook.com/CruMovie,,tt3058906,A single moment can change your life forever.,"A tight knit group of young high school athletes have a terrible crash after winning the state championship -- a catastrophe that will shape all their lives. But as adults, some 15 years later, they come together again for a reunion that will open olds wounds, expose long-hidden secrets -- and pave the road to forgiveness and redemption.",0,0,Cru,en +278316,Da Sweet Blood of Jesus,2014-06-22,123.0,,,tt3104930,,A movie about human beings who are addicted to blood.,0,0,Da Sweet Blood of Jesus,en +250574,Creep,2014-06-23,82.0,,,tt2428170,,"Looking for work, Aaron comes across a cryptic online ad: “$1,000 for the day. Filming service. Discretion is appreciated.” Low on cash and full of naiveté, he decides to go for it. He drives to a cabin in a remote mountain town where he meets Josef, his cinematic subject for the day. Josef is sincere and the project seems heartfelt, so Aaron begins to film. But as the day goes on, it becomes clear that Josef is not who he says, and his intentions are not at all pure.",0,0,Creep,en +270403,Gett: The Trial of Viviane Amsalem,2014-06-25,115.0,,,tt3062880,,"The trial story of Viviane Amsalem's five year fight to obtain her divorce in front of the only legal authority competent for divorce cases in Israel, the Rabbinical Court.",0,0,Gett,he +278660,Tony Benn: Will and Testament,2014-06-26,90.0,,,tt2636424,,"Tony Benn (87), the longest serving Labour MP in history, looks back over his life and career.",0,0,Tony Benn: Will and Testament,en +278738,The Greggs,2014-06-26,20.0,,,tt3168710,,"The origin of the SATs in which Gregg, Gregg, Gregg and Gregg lose The Gregg.",0,0,The Greggs,en +244534,Happy Christmas,2014-06-26,82.0,,,tt2955096,Family is the gift that keeps on taking.,"After a breakup with her boyfriend, a young woman moves in with her older brother, his wife, and their 2-year-old son.",0,0,Happy Christmas,en +279179,Wir tun es für Geld,2014-06-27,,,,tt3638690,,,0,0,Wir tun es für Geld,de +270724,The Breakup Guru,2014-06-27,114.0,,,tt3667798,,"One is a bum, one gets by selling self-help DVDs: Mei Yuan Gui is a guy who survives by leeching off his girlfriends; Ye Xiao Chun is a girl who sells DVDs for a living. Two people in the bottom rungs of society meet by accident one day when the guy saves the girl, and so begins the most hilarious, silly and touching love story.",0,106640000,分手大师,en +266082,Girlhood,2014-06-27,112.0,,,tt3655522,,"Oppressed by her family setting, dead-end school prospects and the boys law in the neighborhood, Marieme starts a new life after meeting a group of three free-spirited girls. She changes her name, her dress code, and quits school to be accepted in the gang, hoping that this will be a way to freedom.",0,60765,Bande de filles,fr +317723,Transylvanian Garlic,2014-06-27,90.0,http://filmulusturoi.ro,,tt3627572,"Sometimes, all you need is an adventure","A Gypsy boy of the Onion clan and his Romanian friend in a village lost in Transylvania decide to flee to the big city to become actors. This seems the best way to get some easy money to rid themselves of the excruciating poverty and help the Onion clan's older brother get a dowry and marry the daughter of the rich Garlic clan. The two young boys run away from school, in an attempt to create a better life for themselves and their families. The road is beset with adventures as they scour rural Transylvania and its picturesque landscape.",0,0,Usturoi,en +276935,Ek Villain,2014-06-27,129.0,,,tt3175038,,"When his lover becomes the latest victim of a serial killer, Guru blurs the line between good and evil in his pursuit of revenge.",0,0,Ek Villain,hi +215379,Young Ones,2014-06-28,100.0,,,tt2693664,"In a future without water, vengeance will rain.","In a future where water is scarce, a farmer defends his land and hopes to rejuvenate his parched soil. However, his daughter's boyfriend schemes to steal the land for himself.",0,0,Young Ones,en +285840,The Editor,2014-09-11,95.0,http://astron-6.com/editor.html,,tt3067274,,A one-time (and now one-handed) master film editor toiling in the cinematic sweatshops of 1970s Italy becomes the prime suspect in a series of brutal murders.,0,0,The Editor,en +297633,Bordering on Bad Behavior,2014-07-01,105.0,,,tt2559214,,"A politically incorrect comedy that enthralls the viewer into a strategic moment in history where wrong is right and right is wrong, and ultimately answers that age-old question: Is blood really thicker than water? And, if war kills, can weed heal?!",0,0,Bordering on Bad Behavior,en +253310,Premature,2014-07-02,93.0,,,tt2182256,,"On the most important day of his young life, a high school senior is forced to relive his failed attempt at losing his virginity over and over again, until he gets it right.",0,0,Premature,en +266102,Desert Dancer,2014-07-03,98.0,,,tt2403393,Be Brave. Be Bold. Be Free.,"Inspirational true story of Iranian dancer Afshin Ghaffarian, who risked his life for his dream to become a dancer despite a nationwide dancing ban.",0,0,Desert Dancer,en +277190,Secrets of War,2014-07-03,94.0,,,tt2371158,,"Tuur and Lambert are best friends. But the war is closing in and is about to change their lives forever. Tuurs dad joined the resistance and even his big brother seems so be part of it. Lamberts family on the other hand choose to obey the Germans. Then a new girls from the city shows up, befriending the boys but telling her secret to only one of them. A choice that separates the boys and ultimately gets her in trouble.",0,0,Oorlogsgeheimen,nl +280583,Violent,2014-07-06,102.0,http://violentfilm.com/,,tt3243772,,"A young woman, and her last memories of the five people who loved her most, recalled while experiencing a catastrophic event.",0,0,Violent,en +295058,The Tree,2014-07-07,90.0,,,tt3826814,,"A family finds itself in a dead-end situation. They are only safe behind the walls of their own house and yard. As time vanishes from their home, the shelter slowly turns into a prison. However, nothing can keep the children from dreaming and yearning to be free and the urge to make a decision seems inevitable.",0,0,Drevo,sl +282024,The Iron Ivan,2014-07-10,120.0,,,tt3767246,,"He was called the Champion of Champions. The strength and strong-willed character Poddubniy composed legends. And 50 great fighter effortlessly overcame young athletes, and questions of honor and justice did not know compromises. And only love could put Russian Heroes on both blades",12000000,0,Поддубный,ru +281418,The Lookalike,2014-07-11,100.0,,,tt2497980,If looks could kill.,Two crooks looking out for a drug lord's love interest scramble to find a look-alike after she dies unexpectedly.,0,0,The Lookalike,en +304274,Lai Bhaari,2014-07-11,0.0,,,tt3850798,,"Sumitra travels to Pandharpur to find a ray of hope, after Sangram killed her husband and son and took over their business.",0,0,Lai Bhaari,en +252102,Land Ho!,2014-07-11,96.0,,,tt3283556,Come party with these guys!,A pair of former brothers-in-law embark on a road trip through Iceland.,0,0,Land Ho!,en +281590,Kurt Metzger: White Precious,2014-07-11,60.0,,,tt3864466,,Standup special filmed at the Gramercy Theatre in New York..,0,0,Kurt Metzger: White Precious,en +240832,Lucy,2014-07-14,89.0,http://lucymovie.com/,,tt2872732,The average person uses 10% of their brain capacity. Imagine what she could do with 100%.,"A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.",40000000,126546825,Lucy,en +243683,Step Up All In,2014-07-16,112.0,http://stepupmovie.com/,86092,tt2626350,Every Step Has Led To This,"All-stars from the previous Step Up installments come together in glittering Las Vegas, battling for a victory that could define their dreams and their careers.",45000000,86165646,Step Up All In,en +270842,Tiny Times 3,2014-07-17,110.0,,212123,tt3861006,"To be blind, to be loved.","Lin Xiao, Gu Li, Nan Xiang, Tang Wanru - these four best friends, after waving goodbye to their school campus and entering the workforce, they are faced with various challenges in their life: friendship, love, and career. Together, they become lost in life, having long forgotten their past courage.",0,0,小时代3:刺金时代,zh +277688,Suburban Gothic,2014-07-19,90.0,,,tt3279176,This dead end town just got a lot deader.,"An awkward, unemployed man who can talk to the dead teams up with a rebellious bartender to find the vengeful ghost that's been terrorizing their town.",0,0,Suburban Gothic,en +282768,Maicol Jecson,2014-07-19,0.0,,,tt3337188,,,0,0,Maicol Jecson,it +237214,Duniyadari,2014-07-19,148.0,,,tt3121604,,Duniyadari (Marathi: दुनियादारी) is a 2013 Marathi movie directed by Sanjay Jadhav. This movie is about journey of every individual which eventually makes one realize the true face of life. It has been acclaimed by Marathi audience. Critical reception of the film is positive.,390000,3,Duniyadari,en +253235,And So It Goes,2014-07-20,94.0,,,tt2465146,,A self-centered realtor enlists the help of his neighbor when he's suddenly left in charge of the granddaughter he never knew existed until his estranged son drops her off at his home.,18000000,25312387,And So It Goes,en +282268,Monty Python Live (Mostly),2014-07-20,138.0,http://www.montypythonlive.com/,,tt3872778,"One down, five to go","Celebrate the last night of the Pythons on the big screen! - With John Cleese, Eric Idle, Terry Gilliam, Terry Jones and Michael Palin.",0,0,Monty Python Live (Mostly),en +229297,Magic in the Moonlight,2014-07-25,97.0,,,tt2870756,,"Set in the 1920s French Riviera, a master magician is commissioned to try and expose a psychic as a fraud.",16800000,51029361,Magic in the Moonlight,en +280690,Kick,2014-07-25,146.0,,,tt2372222,,"An adrenaline junkie walks away from a whirlwind romance and embraces a new life as a thief, though he soon finds himself pursued by veteran police officer and engaged in a turf war with a local gangster.",22000000,55000000,किक,hi +362541,Jump!,2014-07-26,18.0,,,tt4095186,,"During a 48hr observation at a psych facility, Jack meets Wendy, a young woman with a unique obsession.",0,0,Jump!,en +287233,Tom and Jerry: The Lost Dragon,2014-07-27,57.0,,458017,tt4006794,,"Tom and Jerry find a dragon egg, and help the baby dragon find its mother.",0,0,Tom and Jerry: The Lost Dragon,en +284274,Iron Man & Captain America: Heroes United,2014-07-29,71.0,http://marvel-movies.wikia.com/wiki/Iron_Man_%26_Captain_America:_Heroes_United,,tt3911200,Iron Man and Captain America team up in groundbreaking Marvel CG Animation.,"Iron Man and Captain America battle to keep the Red Skull and his triggerman, Taskmaster, from unleashing an army of Hydra Brutes on the world! Sequel to the film ""Iron Man & Hulk: Heroes United"" and feature Iron Man teaming up with Captain America, it comes to accompany the live-action film ""Captain America: The Winter Soldier"".",0,0,Iron Man & Captain America: Heroes United,en +199575,These Final Hours,2014-07-31,87.0,,,tt2268458,It's never too late to find someone worth living for.,"What would you do on the last day on Earth? With the end of the world only hours away, the self-absorbed James heads to the ultimate party-to-end-all-parties. On his way there, he saves the life of a young girl named Rose who is searching desperately for her missing father. This simple act sets James on a path to redemption.",0,0,These Final Hours,en +325382,Nuntius,2014-10-28,60.0,,,tt4115896,,Mr. Normall adventuring space and time and other dimensions.,0,0,Nuntius,en +287301,Summertime,2014-08-01,90.0,,,tt3097490,,"25-year-old Iiris and Karoliina have been best friends since childhood. Karoliina has been travelling and living abroad for some years now, but is coming back home for the summer as Karoliina has gotten them a job as waitresses in Hanko, the best summer city in Finland!",0,0,Kesäkaverit,fi +239566,Get on Up,2014-08-01,139.0,,,tt2473602,The Funk Don't Quit,A chronicle of James Brown's rise from extreme poverty to become one of the most influential musicians in history.,0,31911598,Get on Up,en +288424,Shock Value,2014-08-01,91.0,,,tt3243464,,Struggling 'B' movie Director blackmails a serial killer to be the star of his next film.,0,0,Shock Value,en +225285,Blackwood,2014-08-01,100.0,,,tt2570414,,"Having recovered from a shattering emotional breakdown, college professor Ben Marshall relocates to the countryside with his wife and young son, hoping for a fresh start. He has a teaching job lined up and a new home to move into; things finally look to be going Ben's way. Until, that is, he starts to feel that something isn't quite right in the house. Finding himself plagued by spectral visions, Ben becomes obsessed with uncovering the truth behind a local mystery that appears to be putting the lives of his family in danger",0,0,Blackwood,en +418757,Między nami dobrze jest,2014-08-01,,,,tt4112020,,,0,0,Między nami dobrze jest,pl +281968,La Sapienza,2014-08-01,100.0,,,tt3182590,,"The story is one of an architect that has lost his inspiration and goes looking for those motivations that pushed him as a youngster to take up the profession. Inspiring him was the baroque movement and all of its artifices: the Guarini in Turin and the Borromini in Rome. The film’s central story ends up being the love story that develops between architecture, artistic inspiration and feelings.",0,0,La Sapienza,fr +326045,Lonesome Dove Church,2014-08-04,90.0,,,tt3447676,,The true story of the formation of the Lonesome Dove Church in Texas.,0,0,Lonesome Dove Church,en +283384,The Calling,2014-08-05,108.0,,,tt1666335,Pray for the Prey,Detective Hazel Micallef hasn't had much to worry about in the sleepy town of Port Dundas until a string of gruesome murders in the surrounding countryside brings her face to face with a serial killer driven by a higher calling.,0,0,The Calling,en +286940,The Boxcar Children,2014-08-05,86.0,http://www.hammerhead.com/new_site/animation/boxcar.html,,tt3246908,,"Four orphaned and homeless siblings happen upon an abandoned boxcar, which, they furnish with all the comforts of home. Fearful that they will be sent to live with their grandfather they have never met, the children keep their new home a secret.",5,0,The Boxcar Children,en +285213,The Pirates,2014-08-06,130.0,http://haejuk2014.kr/,,tt3485166,,"On the eve of the founding of the Joseon Dynasty, a whale swallows the Emperor's Seal of State being brought to Joseon by envoys from China. With a big reward on whoever brings back the royal seal, mountain bandits led by Jang Sa-jung go out to sea to hunt down the whale. But he soon clashes with Yeo-wol, a female captain of pirates, and unexpected adventure unfolds.",0,0,해적: 바다로 간 산적,ko +216580,Savaged,2014-08-06,91.0,,,tt2378453,They took her life. She'll take her revenge.,"After thugs brutalize a deaf-mute woman, the spirit of an Apache warrior takes over her lifeless body and sets out on a bloodthirsty quest for revenge.",0,0,Savaged,en +98566,Teenage Mutant Ninja Turtles,2014-08-07,101.0,http://www.teenagemutantninjaturtlesmovie.com,401562,tt1291150,Mysterious. Dangerous. Reptilious. You've never seen heroes like this.,The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder's diabolical plan.,125000000,477200000,Teenage Mutant Ninja Turtles,en +292625,The Swimmers,2014-08-07,115.0,,,tt3788392,Underwater no one can hear you scream,"After falling pregnant to Perth, her boyfriend's best friend, Ice commits suicide. She returns to haunt Perth while Tan seeks out the person who made her kill herself for his own revenge.",0,0,Fak wai nai gai thoe,th +287603,Eddie Pepitone: In Ruins,2014-08-07,64.0,,,tt3974972,,Standup special recorded in Brooklyn.,0,0,Eddie Pepitone: In Ruins,en +276909,Deepsea Challenge 3D,2014-08-08,90.0,,,tt2332883,,"Described as being a film about determination, danger and the ocean’s greatest depths, James Cameron's ""Deepsea Challenge 3D"" tells the story of Cameron’s journey to fulfill his boyhood dream of becoming an explorer. The movie offers a unique insight into Cameron's world as he makes that dream reality – and makes history – by becoming the first person to travel solo to the deepest point on the planet.",0,0,Deepsea Challenge 3D,en +278348,The Maid's Room,2014-08-08,98.0,,,tt2263814,How far will a family go to bury the truth?,"Drina, a young immigrant working as a live-in maid for a wealthy Long Island family, finds herself entangled in the family's web of dark secrets once she begins to suspect her employer's son has committed a terrible crime.",0,0,The Maid's Room,en +265712,Stand by Me Doraemon,2014-08-08,90.0,http://doraemon-3d.com/,148065,tt3331846,Is Doraemon ending this summer?,"In the suburbs of Tokyo some time ago, there lived a clumsy boy about 10 years old. There appeared in front of him named Sewashi, Nobita's descendant of four generations later from the 22nd century, and Doraemon, a 22nd century cat-type caretaker robot who helps people with its secret gadgets. Sewashi claims that his family is suffering from the debts Nobita made even to his generation, so in order to change this disastrous future, he brought along Doraemon as Nobita's caretaker to bring happiness to his future, although Doraemon is not happy about this. And so Sewashi installed an accomplishment program into Doraemon forcing him to take care of Nobita. Unless he makes Nobita happy, Doraemon can no longer go back to the 22nd century. This is how the life of Doraemon and Nobita begins. Will Doraemon succeed this mission and return to the 22nd century?",35000000,83061158,STAND BY ME ドラえもん,ja +242090,The One I Love,2014-08-08,91.0,,,tt2756032,,"On the brink of separation, Ethan and Sophie escape to a beautiful vacation house for a weekend getaway in an attempt to save their marriage. What begins as a romantic and fun retreat soon becomes surreal, when an unexpected discovery forces the two to examine themselves, their relationship, and their future.",0,0,The One I Love,en +277778,Starship Rising,2014-08-08,91.0,,,tt2547942,Rebellion starts with one ship,"A corrupt planetary federation… The ultimate weapon of destruction.... One starship captain stands between them….and intergalactic armageddon. STARSHIP: RISING - RISE UP OR DIE In the distant future, an immortal bionic leader, the product of genetic engineering, has ruled over the universe for 200 years. An uprising is being staged by those preserving natural birth.",3000000,0,Starship: Rising,en +286595,Marie's Story,2014-08-10,95.0,,,tt3132714,,Marie Heurtin is born both blind and deaf. Sister Marguerette wins her trust and teaches her how to express herself.,0,0,Marie Heurtin,fr +267815,The Absent,2014-08-11,80.0,,,tt3907090,,"An old man lives alone in a shabby cabin in a remote mountainous area of Mexico. His house is set to be demolished in order to facilitate the redevelopment of the area. He doesn't know how to protect his house. Time goes by and one day a young man shows up on his doorstep. Looking exhausted, he starts his new routine here, cooking and doing laundry just like the old man.",0,0,Los ausentes,en +227156,The Giver,2014-08-11,94.0,http://thegiverfilm.com/,,tt0435651,Search for truth. Find freedom.,"In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the ""real"" world.",25000000,66980456,The Giver,en +193893,Let's Be Cops,2014-08-13,104.0,,,tt1924435,Fake Cops. Real Trouble.,"It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.",17000000,136621271,Let's Be Cops,en +286657,Crawl or Die,2014-08-13,86.0,http://www.crawlordietrilogy.com/,,tt2219210,If you cant run,"Earth as we know it is gone. A virus has destroyed the planet and rendered all its women infertile, all but one. An elite team of soldiers are tasked with bringing the woman to safety on the newly habitable Earth Two. But when they are forced underground they find themselves fighting for survival from an bloodthirsty creature in a maze of ever shrinking tunnels. As the team's ranks start to dwindle, the tunnels shrink and the ammunition run out, the crawl for survival becomes more and more desperate.",0,0,Crawl or Die,en +287281,The Gamers: Natural One,2014-08-14,29.0,http://watchthegamers.com/,251383,tt2888340,,"Natural One begins with a summons to Gary from his Canadian half-sister, Monica. She's getting married and family tradition calls for her future partner to be vetted in-game. Is he gamer enough to be worthy of the family name?",0,0,The Gamers: Natural One,en +114982,Goodbye to Language,2014-08-15,70.0,,,tt2400275,,About a man who’s angry at his wife because she’s met another man on a park bench and they no longer even speak the same language.,0,0,Adieu au langage,fr +294690,Saints and Soldiers: The Void,2014-08-15,96.0,,306063,tt1270114,,"Germany, May 1945, deep in the Harz Mountains a U.S. tank crew discovers a platoon of Germans preparing to ambush U.S. supply trucks.",0,0,Saints and Soldiers: The Void,en +287179,The Iron Ministry,2014-08-15,82.0,,,tt3907314,,"Filmed over three years on China’s railways, The Iron Ministry traces the vast interiors of a country on the move: flesh and metal, clangs and squeals, light and dark, and language and gesture. Scores of rail journeys come together into one, capturing the thrills and anxieties of social and technological transformation. The Iron Ministry immerses audiences in fleeting relationships and uneasy encounters between humans and machines on what will soon be the world’s largest railway network.",0,0,The Iron Ministry,en +285803,Singham Returns,2014-08-15,142.0,,286951,tt2309764,,"Singham Returns is an Indian action film directed by Rohit Shetty and produced by Reliance Entertainment. The sequel to the 2011 film Singham, actor Ajay Devgn reprises his role from the previous film, as well as co-producing the project, while Kareena Kapoor Khan plays the female lead.",0,0,Singham Returns,hi +285135,Zodiac,2014-08-16,89.0,http://www.cinetelfilms.com/films/film-zodiac.html,,tt3102206,The Signs are Everywhere,"A 2,000-year-old astrology board possesses deadly powers that threaten the fate of humanity.",0,0,Zodiac,en +290656,Raised by Wolves,2014-08-18,76.0,,,tt2350852,,"When a group of friends come across an abandoned house in the barren desert, what follows is a terrifying tale of evil possession causing the friends to slowly turn against each other.",0,0,Raised by Wolves,en +340937,The Father's Love,2014-08-20,86.0,,,tt2573806,,"Struggling to find fulfillment in relationships, Sarah discovers that forgiveness is the key to true love.",0,0,The Father's Love,en +189,Sin City: A Dame to Kill For,2014-08-20,102.0,http://sincity-2.com/,135179,tt0458481,There is no justice without sin.,Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.,65000000,39407616,Sin City: A Dame to Kill For,en +246860,Clouds of Sils Maria,2014-08-20,124.0,,,tt2452254,,A veteran actress comes face-to-face with an uncomfortable reflection of herself when she agrees to take part in a revival of the play that launched her career 20 years earlier.,6600000,1851517,Clouds of Sils Maria,en +295723,Kingdom Come,2014-08-20,99.0,,,tt2701772,,A group of strangers wake up in an abandoned hospital to find themselves stalked by a supernatural force with sinister intentions.,3000000,0,Kingdom Come,en +330878,"Kidnapping, Caucasian Style",2014-08-21,95.0,,,tt4537362,,"Shura journalist comes to the Caucasus to shoot a report about the local beauty and tradition, and into Gorski, fiefdom of the local city mayor George Gadzhievich Saahova. Those supporting fashion, given the governor planned to marry a young beauty, athlete, and even ekstremalka Nina, who was so pleased with Shurik. Using the hapless journalist CAAX and his henchmen kidnap Nina. But, realizing that it played, Shura rushes to save his girlfriend ...",3500000,179000,Кавказская пленница!,ru +288980,Freedom,2014-08-21,98.0,http://themoviefreedom.com/,,tt2584018,John Newton's Amazing Grace,"Two men separated by 100 years are united in their search for freedom. In 1856 a slave, Samuel Woodward and his family, escape from the Monroe Plantation near Richmond, Virginia. A secret network of ordinary people known as the Underground Railroad guide the family on their journey north to Canada. They are relentlessly pursued by the notorious slave hunter Plimpton. Hunted like a dog and haunted by the unthinkable suffering he and his forbears have endured, Samuel is forced to decide between revenge or freedom. 100 years earlier in 1748, John Newton the Captain of a slave trader sails from Africa with a cargo of slaves, bound for America. On board is Samuel's great grandfather whose survival is tied to the fate of Captain Newton. The voyage changes Newton's life forever and he creates a legacy that will inspire Samuel and the lives of millions for generations to come.",14500000,0,Freedom,en +241254,The Prince,2014-08-22,93.0,,,tt1085492,Mercy is for the Weak,A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.,18000000,266586800,The Prince,en +265019,Preservation,2014-08-22,90.0,,,tt3138558,,"Three family members head deep into the woods for a hunting trip that doubles as a distraction from their troubles at home. When all of their gear is stolen, they turn on each other, but soon realize there are much more treacherous forces at work.",0,0,Preservation,en +295914,Queen of the Mountains,2014-08-22,135.0,,,tt2640460,,"At a time when most females in Asia possess little or no power over their lives, headstrong Kurmanjan Datka defies her family's authority -- and ultimately becomes the ruler of her native Kyrgyzstan region.",0,0,Kurmanjan Datka. Queen of the Mountains,ky +270886,You're Sleeping Nicole,2014-08-22,93.0,,,tt3483194,,"Making the most of the family home while her parents are away, 22-year-old Nicole is enjoying a peaceful summer with her best friend Véronique. But when Nicole’s older brother shows up with his band to record an album, the girls’ friendship is put to the test.",0,0,Tu dors Nicole,fr +284279,Burnout,2014-08-24,93.0,https://www.facebook.com/boerning/timeline,448758,tt3102440,,"For all who remember Cannonball Run. Here is a modern twist on the subject. The longest, wildest and funniest car race, ever. From Oslo to the North Cape. The only rule is getting there first!",4000000,0,Børning,no +353746,One Day Since Yesterday: Peter Bogdanovich & the Lost American Film,2014-08-26,120.0,,,tt3920572,,"The grim woes that surrounded famed director Peter Bogdanovich and his film, ""They All Laughed.""",0,0,One Day Since Yesterday: Peter Bogdanovich & the Lost American Film,en +283686,Out of the Dark,2014-08-27,92.0,,,tt2872724,,"A couple and their daughter moves to Colombia to take over a family manufacturing plant, only to realize their new home is haunted.",0,0,Out of the Dark,en +266030,Party Girl,2014-08-27,95.0,,,tt3660370,,"Angélique is a 60-year-old bar hostess. She still likes to party, she still likes men. At night, she makes them drink, in a cabaret by the French-German border. As time goes by, clients become rare. But Michel, her regular client, is still in love with her. One day, he asks Angélique to marry him.",0,472370,Party Girl,fr +290555,Wolves,2014-08-28,90.0,,,tt1403241,Unleash the beast,"The coming-of-age story of Cayden Richards. Forced to hit the road after the murder of his parents, Cayden wanders lost without purpose... Until he meets a certifiable lunatic named Wild Joe who sets him on a path to the ominous town of Lupine Ridge to hunt down the truths of his history. But in the end| who's really hunting whom?",18000000,0,Wolves,en +312138,Les Révoltés,2014-08-29,82.0,,,tt3778402,,"Pavel has a good job in the village factory and is sure to marry Anja, his best friend from childhood. It's written in the Book of Life. But reality doesn't follow books.",0,0,Les Révoltés,fr +292387,Summer Nights,2014-08-29,104.0,,,tt3759430,,,0,0,Les nuits d'été,fr +261101,Cantinflas,2014-08-29,106.0,,,tt3005242,,"Mike Todd is a Broadway producer struggling to produce the film. Around the World in 80 Days. In Mexico, Mario Moreno, a young entertainer is struggling to get some respect, and he manages to become a star. A twist of faith makes them partners. Together they won the Oscar for Best Picture.",0,0,Cantinflas,en +289960,Blondie's New York and the Making of Parallel Lines,2014-08-29,50.0,,,tt3996070,The story behind Blondie's album Parallel Lines,"The story behind Blondie's album Parallel Lines, which sold 16 million copies and captured the spirit of 1970s New York at a time of poverty, crime and an exploding artistic life.",0,0,Blondie's New York and the Making of Parallel Lines,en +289183,Boy Upside Down,2014-08-29,94.0,,,tt2421230,,A Finnish dramedy about an 11-year-old boy dealing with the loss of his parents.,0,0,Aikuisten poika,fi +287483,The Farewell Party,2014-08-29,90.0,,,tt3163304,,"A group of friends at a Jerusalem retirement home build a machine for self-euthanasia in order to help their terminally ill friend. When rumors of the machine begin to spread, more and more people ask for their help, and the friends are faced with an emotional dilemma",0,0,Am Ende ein Fest,de +283711,Red Amnesia,2014-08-30,116.0,,,tt3890278,,"A retired widow has her daily routine derailed when she starts receiving mysterious, anonymous phone calls.",0,0,闯入者,zh +285733,Barbie and the Secret Door,2014-08-30,81.0,,,tt3921852,,"It's the ultimate fairytale musical! Barbie stars as Alexa, a shy princess who discovers a secret door in her kingdom and enters a whimsical land filled with magical creatures and surprises. Inside, Alexa meets Romy and Nori, a mermaid and a fairy, who explain that a spoiled ruler named Malucia is trying to take all the magic in the land. To her surprise, Alexa has magical powers in this world, and her new friends are certain that only she can restore their magic. Discover what happens when Alexa finds the courage to stand up for what's right and learns that the power of friendship is far more precious than magic.",0,0,Barbie and the Secret Door,en +294093,Dinosaur Island,2014-09-01,90.0,,,tt3261302,Their world is closer than you think.,"The adventure begins when Lucas, a 13 year old boy, embarks on the vacation of a lifetime. When disaster strikes, Lucas finds himself stranded in a strange land littered with ghost ships and prehistoric creatures. While searching for other signs of life, Lucas hears a radio broadcast in the distance and is drawn into the jungle where he encounters a beautiful young girl who claims to have come from the 1950s. Together they set out on a quest to get home all the while uncovering secrets that will forever change the future.",0,0,Dinosaur Island,en +290235,Find Me,2014-09-01,87.0,,,tt3027188,Some secrets should stay hidden,"Before boxes are unpacked in their new home, newlyweds Tim and Emily, find themselves playing a very creepy game of hide and seek with a vengeful spirit.",0,0,Find Me,en +240745,Cymbeline,2014-09-03,97.0,,,tt3093522,Kings Queens Soldiers Bikers War,War erupts between dirty cops and outlaw bikers as a drug kingpin (Ed Harris) tries to protect his empire.,0,0,Cymbeline,en +204922,Before I Go to Sleep,2014-09-03,92.0,,,tt1726592,Who do you trust?,"A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.",22000000,15447154,Before I Go to Sleep,en +287628,Theeb‎‎,2014-09-04,100.0,,,tt3170902,,"In the Ottoman province of Hijaz during World War I, a young Bedouin boy experiences a greatly hastened coming of age as he embarks on a perilous desert journey to guide a British officer to his secret destination.",0,0,Theeb‎‎,ar +285860,Guidance,2014-09-04,83.0,,,tt3369248,,"Fabricating credentials to score a last-ditch job as a high school guidance counsellor, a boozing, drug-addled former child star becomes an improbable hit with his students by dispensing the worst advice possible, in this hilarious reprobate comedy from writer-director-star Pat Mills.",0,0,Guidance,en +288788,But Always,2014-09-04,106.0,,,tt3906444,,"After relocating to New York, former lovers feel the pull of romance once again.",0,0,一生一世,zh +284246,The Yes Men Are Revolting,2014-09-04,90.0,,475520,tt2531282,,"Activist-pranksters Andy Bichlbaum and Mike Bonnano pull the rug out from under mega-corporations, government officials and a complacent media in a series of outrageous stunts designed to draw awareness to the issue of climate change.",0,0,The Yes Men Are Revolting,en +270400,Breathe,2014-09-04,91.0,,,tt3365778,,"Charlie, a 17-year-old girl tortured by doubt, is thrilled when she becomes friends with Sarah, but when Sarah tires of Charlie and looks for a new friend, their relationship takes an ominous turn.",0,0,Respire,fr +284135,Hill of Freedom,2014-09-04,66.0,,,tt3732252,,"A Japanese man arrives in Korea to find his old lover. While he stays at a guest house, he encounters various people.",0,0,자유의 언덕,ko +331075,Twilight Online,2014-09-04,95.0,,,tt3587128,,"A thriller based on two real incidents: the 2003 Tuen Mun Road traffic accident that claimed 21 lives and the 2013 Yau Oi Estate suicide, where the female victim dressed in red leapt to her death on the day of the Chinese Ghost Festival.",0,496000,恐怖在線,cn +285841,Elephant Song,2014-09-04,110.0,,,tt3754976,,A psychiatrist is drawn into a complex mind game when he questions a disturbed patient about the disappearance of a colleague.,0,0,Elephant Song,en +254439,O Candidato Honesto,2014-09-05,0.0,,,tt4083076,,,0,0,O Candidato Honesto,pt +284537,Welcome to Me,2014-09-05,105.0,http://www.welcometomemovie.com,,tt2788716,Alice is going to be on TV whether you like it or not,"A year in the life of Alice Klieg, a woman with Borderline Personality Disorder who wins Mega-millions, quits her meds and buys her own talk show.",0,0,Welcome to Me,en +263855,Fort Bliss,2014-09-05,116.0,,,tt2093995,Soldier. Mother. So many expectations.,"After returning home from an extended tour in Afghanistan, a decorated U.S. Army medic and single mother struggles to rebuild her relationship with her young son.",0,0,Fort Bliss,en +286971,Innocence,2014-09-05,96.0,http://www.innocencethemovie.com/,,tt1724965,Love. Beauty. Wealth. Eternity.,"After losing her mother in a tragic accident, Beckett Warner realizes that her troubles may be far worse—her school is run by a coven of beautiful women who perpetuate their youth by drinking the blood of virgins.",0,0,Innocence,en +286521,5 Flights Up,2014-09-05,92.0,,,tt2933544,A coming of age story,A long-time married couple who've spent their lives together in the same New York apartment become overwhelmed by personal and real estate-related issues when they plan to move away.,6000000,1020921,5 Flights Up,en +230179,Big Game,2014-09-05,90.0,https://www.facebook.com/BigGameMovie,,tt2088003,,"Air Force One is shot down by terrorists, leaving the President of the United States stranded in the wilderness. 13-year old Oskari is also in that wilderness, on a hunting mission to prove his maturity to his kinsfolk by tracking down a deer, but instead discovers the President in an escape pod. With the terrorists closing in to capture their prize, the unlikely duo team up to escape their hunters.",8500000,7500000,Big Game,en +284288,Mary Kom,2014-09-05,122.0,,,tt3001638,,A chronicle of the life of Indian boxer 'Mary Kom' who went through several hardships before audaciously accomplishing her ultimate dream.,224056,15536328,मैरी कोम,hi +110416,Song of the Sea,2014-09-06,93.0,http://www.cartoonsaloon.ie/2009/06/feature-films-song-of-the-sea/,,tt1865505,Let the song of the sea sway your heart...,"The story of the last Seal Child’s journey home. After their mother’s disappearance, Ben and Saoirse are sent to live with Granny in the city. When they resolve to return to their home by the sea, their journey becomes a race against time as they are drawn into a world Ben knows only from his mother’s folktales. But this is no bedtime story; these fairy folk have been in our world far too long. It soon becomes clear to Ben that Saoirse is the key to their survival.",0,857522,Song of the Sea,en +284289,Beyond the Reach,2014-09-06,95.0,,,tt2911668,,A high-rolling corporate shark and his impoverished young guide play the most dangerous game during a hunting trip in the Mojave Desert.,0,45895,Beyond the Reach,en +283726,The New Girlfriend,2014-09-06,105.0,,,tt3184934,,A young woman makes a surprising discovery about the husband of her late best friend.,0,0,Une nouvelle amie,fr +285869,Wet Bum,2014-09-07,95.0,http://wetbumthefilm.com/,,tt3630720,,An awkward teenage outcast finds unlikely companions in two aged residents of the retirement home in which she works.,0,0,Wet Bum,en +285181,1001 Grams,2014-09-07,93.0,,,tt3346824,,"When Norwegian scientist Marie attends a seminar in Paris on the actual weight of a kilo, it is her own measurement of disappointment, grief and, not least, love, that ends up on the scale. Finally Marie is forced to come to terms with how much a human life truly weighs and which measurements she intends to live by.",0,0,1001 gram,no +282983,Magical Girl,2014-09-07,127.0,,,tt3089326,Be careful what you wish for.,A desperate man (Luis Bermejo) blackmails a mentally ill woman (Bárbara Lennie) to buy a dress for his terminally ill daughter (Lucía Pollán).,0,0,Magical Girl,es +230266,Miss Julie,2014-09-07,120.0,,,tt2667960,Love is a foolish game,"Over the course of a midsummer night in Fermanagh in 1890, an unsettled daughter of the Anglo-Irish aristocracy encourages her father's valet to seduce her.",5500000,5000000,Miss Julie,en +309929,Soldat blanc,2014-09-08,146.0,,,tt3952300,,"A muggy Saigon, late 1945. Stationed at a military camp in French Indochina, two young men--Robert and André--become close friends as they share the boredom and excitement of waiting for their first mission. But when they discover that instead of freeing Indochina from foreign aggressors, they will be fighting natives struggling for independence, their friendship is jeopardized.",0,0,Soldat blanc,fr +288130,A Good Job: Stories of the FDNY,2014-09-08,60.0,,,tt3983732,,"Acclaimed actor and FDNY veteran Steve Buscemi looks at what it's like to work as a New York City firefighter. Utilizing exclusive behind-the-scenes footage and firsthand accounts from past and present firefighters, this special explores life in one of the world's most demanding fire departments while illuminating the lives of the often 'strong and silent' heroes.",600000,0,A Good Job: Stories of the FDNY,en +298296,Heidi,2014-09-08,97.0,http://www.heidifilm.com/,,tt3581478,Do you wanna play?,"After discovering a mysterious doll in an attic, two high school friends are increasingly plagued by a series of disturbing and unexplained events.",0,0,Heidi,en +287587,Adult Beginners,2014-09-08,90.0,,,tt3318750,Some people just can't handle growing up.,"A young, hipster entrepreneur crashes and burns on the eve of his company’s big launch. With his entire life in disarray, he leaves Manhattan to move in with his estranged pregnant sister, brother-in-law and three year-old nephew in the suburbs — only to become their manny. Faced with real responsibility, he may finally have to grow up — but not without some bad behavior first.",0,108808,Adult Beginners,en +283701,3 Hearts,2014-09-09,100.0,,,tt2822742,,A twist of fate leaves a hapless accountant romantically torn between two sisters.,0,0,3 Cœurs,fr +401427,Elegy,2014-09-10,16.0,,,tt5769236,,"In the future, nature has evolved to destroy humans. One man fights across a treacherous landscape to reunite with his past. + (Post-apocalypse)",0,0,Elegy,en +198663,The Maze Runner,2014-09-10,113.0,http://themazerunnermovie.com/,295130,tt1790864,Run - Remember - Survive,"Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow ""runners"" for a shot at escape.",34000000,348319861,The Maze Runner,en +373541,Dark Awakening,2014-09-10,95.0,,,tt2718314,When the dead come out to play.,A thriller centered on a couple who makes an old estate their new home and soon begin to see the spirits of dead children.,0,0,Dark Awakening,en +294640,Afterlife,2014-09-11,93.0,,,tt3774870,,"A heavily neurotic young man starts to see his father's ghost, and while he helps the spirit cross to the otherworld, something happens that they could never achieve in their common life: they finally understand each other.",0,0,Utóélet,hu +292830,Creature,2014-09-12,134.0,,,tt3619854,,"People attend their first halt in a newly opened lodge in deep forest, but something is waiting for them.",0,0,Creature,en +330275,Des roses en hiver,2014-09-12,,,,tt3432260,,,0,0,Des roses en hiver,fr +211166,"Rio, I Love You",2014-09-12,110.0,http://rioeuteamo.net,,tt1456606,Love happens everywhere. Some love stories only happen in Rio.,A series of short films set in the Brazilian city of Rio de Janeiro.,0,0,"Rio, Eu Te Amo",pt +261037,Miss Meadows,2014-09-12,88.0,,,tt3128900,She doesn't play well with others.,"Miss Meadows is a school teacher with impeccable manners and grace. However, underneath the candy-sweet exterior hides a ruthless gun-toting vigilante who takes it upon herself to right the wrongs in the world by whatever means necessary. For Miss Meadows, bad behavior is simply unforgivable.",2000000,0,Miss Meadows,en +339312,A Nightingale Falling,2014-09-12,110.0,http://www.anightingalefalling.ie/,,tt2909748,When love is at war.,"Set against a backdrop of a turbulent, war-torn Ireland in the early 1920’s, this is a story of three people and the unfolding events from a crucial time in their extradionary and tragic lives.",0,0,A Nightingale Falling,en +221732,Rurouni Kenshin: The Legend Ends,2014-09-13,135.0,http://wwws.warnerbros.co.jp/rurouni-kenshin/index.html,247028,tt3029556,,"Shishio has set sail in his ironclad ship to bring down the Meiji government and return Japan to chaos, carrying Kaoru with him. In order to stop him in time, Kenshin trains with his old master to learn his final technique.",0,0,るろうに剣心 伝説の最期編,ja +295627,Spawn: The Recall,2014-09-13,7.0,http://www.therecall-movie.com/,,tt4071282,Ye who enter abandon all hope,"A former witch loses her son while shopping. Knowing evil forces are still lurking, she frantically searches for him, but comes across a discovery.",0,0,Spawn: The Recall,en +120172,Another World,2014-09-14,100.0,http://www.anotherworldthemovie.com/,,tt1920846,,"The movie is a post-apocalyptic horror/science fiction film. the setting is in a near post apocalyptic future where a biological warfare program goes wrong, and turns most of humanity to mindless, murderous creatures.",1000000,0,Another World,he +330588,Monsoon Baby,2014-09-17,,,,tt3837070,,,0,0,Monsoon Baby,de +278717,Test,2014-09-18,95.0,,,tt4131188,,"They live in the steppe. A father and a daughter. Nothing may disturb the eternal order. Tomorrow always comes. And every morning the father goes away to work. And she stays alone. To wait for her father. And to feel. Two men are in love with her. She loves everyone. Her love cannot be divided. One day, the decision comes by itself. It comes from where the sun lives.",0,0,Испытание,ru +293516,La nostra terra,2014-09-18,0.0,,,tt4033216,,,0,0,La nostra terra,it +291155,"Fat, Sick & Nearly Dead 2",2014-09-18,89.0,http://fatsickandnearlydead2.com/,386549,tt3701804,Get Your JUICE ON!,"Joe Cross took viewers on his journey from overweight and sick to healthy and fit via a 60-day juice fast in the award-winning Fat Sick and Nearly Dead. With Fat, Sick & Nearly Dead 2, he looks at keeping healthy habits long-term.",0,0,"Fat, Sick & Nearly Dead 2",en +289198,Redeemer,2014-09-18,88.0,,,tt3379456,,A former hit-man for a drug cartel becomes a vigilante to pay for his sins and find redemption,0,0,Redeemer,es +418072,Peace Code,2014-09-18,101.0,,,tt3782876,,"Pedro Ruiz is a Dominican real estate broker by day and a savvy but out-of-luck thief by night. Desperate to look for respect climbing the money ladder the easy way, he gets in the wrong mansion at the wrong time.",1500000,0,Código Paz,es +415255,The Secret of Evil,2014-09-18,77.0,,,tt5777418,,Video footage depicting a supernatural encounter is all that remains of a filmmaker and his crew who disappeared while exploring a haunted house.,300000,0,Secreto Matusita,es +293654,Corporate Event,2014-09-18,89.0,,,tt3761706,,"Igor, a furniture store manager, tries to figure out what happened during the corporate event which resulted his store to be completely destroyed.",2000000,0,Корпоратив,ru +289190,Felt,2014-09-18,80.0,,,tt3854104,,A women creates an alter ego in hopes of overcoming the trauma inflicted by men in her life,0,0,Felt,en +293982,Warsaw 44,2014-09-19,130.0,http://miasto44.pl/,,tt3765326,,"A beautiful story about youth, love, friendship and the pursuit of adventure during the bloody and brutal reality of the Warsaw Uprising.",6700000,0,Miasto 44,pl +246403,Tusk,2014-09-19,102.0,,,tt3099498,Let me tell you a story...,"When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend's girlfriend to search for him.",2800000,1826705,Tusk,en +289278,My So-Called Father,2014-09-19,123.0,,,tt2923652,,A daughter helps her estranged father who's lost his memory.,0,0,Min så kallade pappa,sv +290999,Wyrmwood: Road Of The Dead,2014-09-19,98.0,https://www.facebook.com/wyrmwoodmovie,,tt2535470,Mad Max meets Dawn Of The Dead,"Barry is a talented mechanic and family man whose life is torn apart on the eve of a zombie apocalypse. His sister, Brooke, is kidnapped by a sinister team of gas-mask wearing soldiers & experimented on by a psychotic doctor. While Brooke plans her escape Barry goes out on the road to find her & teams up with Benny, a fellow survivor - together they must arm themselves and prepare to battle their way through hordes of flesh-eating monsters in a harsh Australian bushland.",0,0,Wyrmwood: Road Of The Dead,en +298865,Lost After Dark,2014-09-19,85.0,,,tt3397556,And you thought the '80s were dead...,"A group of teens sneak out of their high school dance to cruise around and have some unsupervised fun. When their car runs out of gas on a deserted road, they discover an old farmhouse and the cannibal killer living inside.",0,0,Lost After Dark,en +290365,Project-M,2014-09-20,98.0,,,tt3700038,,"Four astronauts have to stay 1000 days in a space station around Earth in order to prove that a trip to Europa, one of Jupiter's moon, is possible. The experience goes well until something happens on earth.",0,0,Projet-M,fr +221667,Saint Laurent,2014-09-23,150.0,,,tt2707848,The story that has never been told before,"1967-1976. As one of history's greatest fashion designers entered a decade of freedom, neither came out of it in one piece.",0,0,Saint Laurent,fr +295602,Becoming Me,2014-09-24,77.0,,,tt3833744,,"Becoming Me is a film about three young women, Elli, Laura and Juulia. Each of them writes a blog on her life on the Internet, all of them sharing their lives with strangers. Each of them is struggling with the real or imagined demands and pressures of today’s society.",0,0,Matka Minuksi,en +265180,Leviathan,2014-09-24,140.0,,,tt2802154,,"In a Russian coastal town, Kolya is forced to fight the corrupt mayor when he is told that his house will be demolished. He recruits a lawyer friend to help, but the man's arrival brings further misfortune for Kolya and his family.",0,0,Левиафан,ru +266433,Ejecta,2014-09-24,82.0,,,tt2176722,We were never alone.,"Two men witness an unexplainable event in the sky as a historic solar storm approaches, and they try to survive as a terrifying life form hunts them.",0,0,Ejecta,en +314011,The Beat Beneath My Feet,2014-09-25,89.0,,,tt3064356,Live your dreams,"A teenage boy lives with his single mum in a flat in South London. Into the flat below moves an anti-social, former Rock God who faked his death 8 years ago. The teenage boy works out who the mysterious neighbour is and blackmails him into teaching him the dark arts of Rock Guitar.",0,0,The Beat Beneath My Feet,en +289232,The Goob,2014-09-25,86.0,,,tt3009070,,"We’re in the middle of a heat-wave in Fenland England. Goob Taylor has spent each of his sixteen summers helping Mum run the transport cafe and harvest the surrounding beet fields. When Mum shacks up with swarthy stock-car supremo and ladies’ man gene Womack, Goob becomes an unwelcome side thought. However Goob’s world turns when exotic beet picker Eva arrives. Fuelled by her flirtatious comments, Goob dreams of better things.",0,0,The Goob,en +300654,Wildlike,2014-09-25,104.0,http://www.wildlikefilm.com,,tt2204080,,"Fourteen-year-old Mackenzie is sent to live with her uncle in Juneau when her mother can’t care for her anymore. The living situation quickly takes a turn for the worse, and she runs away to rejoin her mother in Seattle. While on her dangerous journey of sleeping in cars and breaking into hotel rooms, she’s drawn to Rene, a lonesome backpacker looking for tranquility in the wilderness.",0,0,Wildlike,en +289720,Outcast,2014-09-26,98.0,,,tt1552224,To save their souls they must save a kingdom.,"A mysterious warrior teams up with the daughter and son of a deposed Chinese Emperor to defeat their cruel Uncle, who seeks their deaths.",25000000,0,Outcast,en +262338,Good People,2014-09-26,90.0,,,tt1361318,Money changes everything,"Tom and Anna Wright, a young American couple, fall into severe debt while renovating Anna's family home in London. As the couple faces the loss of their dream to have a house and start a family, they discover that the tenant in the apartment below them is dead, and he's left behind a stash of cash—$400,000 worth. Though initially hesitant, Tom and Anna decide that the plan is simple: all they have to do is quietly take the money and use only what's necessary to get them out of debt. But when they start spending the money and can't seem to stop, they find themselves the target of a deadly adversary—the thief who stole it—and that's when very bad things start happening to good people.",0,0,Good People,en +271164,The Song,2014-09-26,116.0,,,tt2517044,,"The film follows aspiring singer-songwriter Jed King (Alan Powell) as he struggles to catch a break and escape the long shadow of his father, a country music legend. After reluctantly accepting a gig at a local vineyard harvest festival, Jed is love-struck by the vineyard owner’s daughter, Rose (Ali Faulkner), and a romance quickly blooms. Soon after their wedding, Jed writes Rose “The Song,” which becomes a breakout hit. Thrust into a life of stardom and a world of temptation in the form of fellow performer Shelby Bale (Caitlin Nicol-Thomas), Jed’s life and marriage begin to fall apart.",0,1009620,The Song,en +284305,Shrew's Nest,2014-09-26,90.0,,,tt3417756,,"Spain, 1950s. Montse's agoraphobia keeps her locked in a sinister apartment in Madrid and her only link to reality is the little sister she lost her youth raising. But one day, a reckless young neighbor, Carlos, falls down the stairwell and drags himself to their door. Someone has entered the shrew's nest... perhaps he'll never leave.",0,0,Musarañas,es +298787,3 A.M,2014-09-26,0.0,http://en.wikipedia.org/wiki/3_A.M._(2014_film)#cite_note-1,,tt3720634,,"3 A.M. is a 2014 Hindi musical horror directed by Vishal Mahadkar, the film stars Rannvijay Singh, Anindita Nayar, Salil Acharya and Kavin Dave in lead roles.Amit sahani is an investment banker, single and ready to mingle. Mala is a free spirit who takes life as it comes.",0,0,3 बजे,hi +318053,natural history,2014-09-26,77.0,,,tt4131208,,"In 54 static shots, Benning provides a picture of the Natural History Museum in Vienna. With the exception of the first three shots, he chooses areas that are normally closed to the public: offices, store rooms and empty corridors. A characteristically meditative Benning, even though this time he chooses to stay indoors.",0,0,natural history,en +285270,Believe Me,2014-09-26,93.0,http://believemefilm.com/,,tt3107070,It's only a sin if you get caught.,"Desperate, broke, and out of ideas, four college seniors start a fake charity to embezzle money for tuition.",0,0,Believe Me,en +334175,Siccîn,2014-09-26,96.0,,,tt4240654,,"Öznur is a young and beautiful woman. She has had a platonic love since childhood to Kudret, who is her cousin. Kudret, however, is married to a woman named Nisa and is very happy. Jealous, Öznur uses terrible black magic to change this so that she and Kudret will be together. However, she is not prepared for the evil that this spell unleashes.",0,0,Siccin: Büyü Haramdir,tr +290370,Mutant World,2014-09-27,85.0,,,tt3626436,,"A decade after a disastrous meteor impact wipes out most of society, a group of survivalists emerge to find themselves on a twisted version of the old Earth, with a nascent society besieged by vicious marauders, ferocious mutants, and the dreadful symptoms of a post-apocalyptic environment.",0,1500000,Mutant World,en +286873,Northmen: A Viking Saga,2014-09-27,97.0,,,tt2290553,There's No Time To Bleed,A band of Vikings cross enemy lines and a panicked race begins. The losers will pay with their lives.,0,0,Northmen: A Viking Saga,en +298931,Billy Elliot: The Musical,2014-09-28,163.0,http://billyelliotthemusical.com/live-in-cinemas/,,tt4085696,,A talented young dancer has to learn to fight for his dream despite social and parental disapproval.,0,0,Billy Elliot: The Musical,en +296750,The Furthest End Awaits,2014-09-29,118.0,http://www.saihatenite.com/,,tt3524792,,"Set at the edge of the Noto Peninsula in Ishikawa Prefecture, Japan, with its beautiful scenic views, the film revolves around two women from different backgrounds who develop a friendship, and how they begin to influence and change each other’s lives.",0,0,さいはてにて ~やさしい香りと待ちながら~,ja +289191,I Am Here,2014-09-30,97.0,,,tt3004746,Fear nothing. Risk everything.,Successful businesswoman Maria has achieved everything except what she wants the most - a baby of her own. She decides to deal with the matter by herself and embarks on a desperate and dangerous journey in order to make her dream come true.,0,0,I Am Here,en +292035,Aanmodderfakker,2014-09-30,100.0,http://www.pupkin.com/projects/aanmodderfakker,,tt3983266,,"Aanmodderfakker is a coming-of-age film, but 15 years too late. The film is about the 32-year old student Thijs who fils his life with beer, chicks and working in a large electronics store. But then something grows between Thijs and Lisa, the 16-year old baby-sitter at Thijs' sister.",0,0,Aanmodderfakker,nl +295621,Eyes of a Thief,2014-10-01,98.0,,,tt2993406,,A father with a dangerous secret searching for his daughter.,0,0,Eyes of a Thief,en +320343,Hacker's Game,2015-03-06,90.0,http://www.hackersgamefilm.com,,tt3140724,,"A love story between two hackers, Soyan and Loise. Like many other hackers, Soyan works for a company he previously hacked.",0,0,Hacker's Game,en +325803,October 1,2014-10-01,149.0,http://october1themovie.com/,,tt3206616,,"Its September 1960, and with Nigeria on the verge of independence from British colonial rule, a northern Nigerian Police Detective, DAN WAZIRI, is urgently despatched by the Colonial Government to the trading post town of Akote in the Western Region of Nigeria to solve a series of female murders that have struck horror in the hearts and minds of the local community. On getting to Akote, more murders are committed, and with local tension high and volatile, Waziri has a race on his hands to solve the case before even more local women are killed. Set against the backdrop of the national celebratory mood of the impending independence, Waziri is pulled into a game of cat and mouse as he and the killer try to outwit each other...",2,0,October 1,en +295748,Pek Yakında,2014-10-02,0.0,,,tt3698408,,,0,0,Pek Yakında,tr +288694,La trattativa,2014-10-02,108.0,,,tt3893456,,,0,0,La trattativa,it +296633,The Whistleblower,2014-10-02,113.0,http://pd-report.co.kr/,,tt4034414,,"Lee Jang-hwan receives widespread acclaim and media attention after successfully cloning human embryo stem cells. A TV news program PD, Yoon Min-cheol, receives a phone call from an anonymous source who says he has worked with Dr. Lee on the stem cell project. The source blows the whistle on Lee's work, revealing how Lee fabricated research results and engaged in unethical practices.",0,0,제보자,ko +288313,Perez.,2014-10-02,94.0,,,tt3552638,,,0,0,Perez.,it +288281,A Good Marriage,2014-10-03,103.0,,,tt2180994,Two Can Keep A Secret... If One Of Them Is Dead.,"After 25 years of a good marriage, what will Darcy do once she discovers her husband's sinister secret?",0,0,A Good Marriage,en +217057,The Hero of Color City,2014-10-03,77.0,,,tt0498351,,An imaginative tale chronicling the adventures of a diverse band of crayons as they strive to protect not only their magical multihued homeland but the imagination of children everywhere from a terrifying monster.,0,0,The Hero of Color City,en +284048,Los tontos y los estúpidos,2014-10-03,,,,tt3104102,,,0,0,Los tontos y los estúpidos,es +254869,Torrente 5: Operación Eurovegas,2014-10-03,105.0,,2248,tt3321428,,Crooked cop Torrente gets out of jail in the year 2018 to find a different Spain from the one he knew.,9272437,11672363,Torrente 5: Operación Eurovegas,es +313074,Sword of Vengeance,2014-10-03,86.0,http://www.protagonistpictures.com/films/sword-of-vengeance,,tt3622332,,"Returning to his homeland after years of slavery, a Norman prince seeks revenge on his father's murderer – his ruthless uncle, Earl Durant. Gaining the trust of a band of exiled farmers, he leads them into battle against Durant, exploiting them in his inexorable quest for vengeance. As one by one they are slaughtered in the brutal battle, will the prince sacrifice everything an everyone to fulfil his quest for blood?",0,0,Sword of Vengeance,en +251232,Copenhagen,2014-10-03,98.0,http://www.copenhagenthemovie.com/,,tt2459156,"When the girl of your dreams is half your age, it's time to grow up.","After weeks of traveling through Europe, the immature William finds himself in Copenhagen, the place of his father’s birth. He befriends the youthful Effy, who works in William’s hotel as part of an internship program, and they set off to find William’s last living relative. Effy’s mix of youthful exuberance and wisdom challenges William unlike any woman ever has. As the attraction builds, he must come to grips with destabilizing elements of his family’s sordid past.",0,0,Copenhagen,en +314635,Schmitke,2014-10-05,97.0,,,tt4193216,,"Schmitke is an old German wind turbine engineer. One day, he is dispatched to the Czech side of the Ore Mountains to fix an old squeaking wind turbine. His colleague disappears and mysterious things begin to happen in the forest.",0,0,Schmitke,de +343878,An Afternoon,2014-10-06,8.0,,,tt3427066,,"Mathias is in love with Frederik, but is he ready to make his move?",0,0,En eftermiddag,da +180305,Mercy,2014-10-07,79.0,,,tt2481496,,A single mom and her two boys help take care of their grandmother with mystical powers,0,0,Mercy,en +289712,Mockingbird,2014-10-07,81.0,,,tt2125685,,A couple are given a camera and a set of instructions which they must follow or else someone will die.,0,0,Mockingbird,en +296029,Matt Shepard Is a Friend of Mine,2014-10-07,89.0,http://mattshepardisafriendofmine.com/,,tt2555302,,"An intimate portrait of Matthew Shepard, the gay young man murdered in one of the most notorious hate crimes in U.S. history. Framed through a personal lens, it's the story of loss, love, and courage in the face of unspeakable tragedy.",0,0,Matt Shepard Is a Friend of Mine,en +299730,The Dead the Damned and the Darkness,2014-10-07,90.0,,,tt3449302,,"In a savage land where zombies roam freely - Lieutenant Colonel Sawyer is armed with machine guns, body armor and courage. He is on a mission to give his family a burial at sea. To reach the coast, he must enter a quarantined infected zone and fight through hordes of bloodthirsty zombies. There he encounters a group of survivors including a young woman who is a target of both the male survivors and the ravenous zombies. To protect the last non-infected humans and complete his mission, Colonel Sawyer must face the Dead, the Damned and the Darkness.",0,0,The Dead the Damned and the Darkness,en +218778,"Alexander and the Terrible, Horrible, No Good, Very Bad Day",2014-10-08,81.0,http://movies.disney.com/alexander-and-the-terrible-horrible-no-good-very-bad-day/,,tt1698641,One day can change everything.,"Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.",28000000,100654149,"Alexander and the Terrible, Horrible, No Good, Very Bad Day",en +205587,The Judge,2014-10-08,141.0,http://thejudgemovie.com/,,tt1872194,Defend your Honor.,"A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.",50000000,83719388,The Judge,en +239563,St. Vincent,2014-10-09,102.0,http://stvincent-movie.com/,,tt2170593,Love Thy Neighbor,"A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.",13000000,54837234,St. Vincent,en +206563,Trash,2014-10-09,112.0,,,tt1921149,You never know what you might find,"Set in Brazil, three kids who make a discovery in a garbage dump soon find themselves running from the cops and trying to right a terrible wrong.",0,0,Trash,pt +290714,The Surface,2014-10-09,86.0,http://thesurfacemovie.com/,,tt3074578,Sometimes you look for the end. Sometimes it looks for you.,"Two strangers, both at the end of their rope, suddenly meet in the middle of the unpredictable waters of Lake Michigan.",0,0,The Surface,en +275060,The Disappearance of Eleanor Rigby: Her,2014-10-10,100.0,http://eleanorrigby-movie.com/,446782,tt3720788,Two Films. One Love.,"Told from the female perspective, the story of a couple trying to reclaim the life and love they once knew and pick up the pieces of a past that may be too far gone.",0,0,The Disappearance of Eleanor Rigby: Her,en +225283,Gone Too Far!,2014-10-10,87.0,http://www.vivaverve.com/gonetoofar,,tt2451550,,"GONE TOO FAR follows two estranged teenage brothers over the course of a single day as they meet for the first time, and struggle to accept each other for who they are. Yemi can't wait for his big brother to join him on the estate in Peckham - but when Ikudayisi arrives from Nigeria wearing socks and sandals Yemi questions both his judgement and his African heritage. A day on the estate filled with danger and excitement teaches both of them the values of family and self respect.",0,0,Gone Too Far!,en +293262,I Am Ali,2014-10-10,111.0,http://www.focusfeatures.com/i_am_ali,,tt4008652,Fighter. Lover. Brother. Father.,"Unprecedented access to Muhammad Ali's personal archive of ""audio journals"" as well as interviews and testimonials from his inner circle of family and friends are used to tell the legend's life story.",0,7205,I Am Ali,en +296456,Christian Mingle,2014-10-10,99.0,,,tt3398066,,"A young, modern single woman enters the world of online dating looking for an instant soul mate.",0,0,Christian Mingle,en +276401,The Disappearance of Eleanor Rigby: Him,2014-10-10,89.0,http://www.eleanorrigby-movie.com,446782,tt1531924,Two Films. One Love.,"Told from the male perspective, the story of a couple trying to reclaim the life and love they once knew and pick up the pieces of a past that may be too far gone.",0,0,The Disappearance of Eleanor Rigby: Him,en +298040,Gods,2014-10-10,121.0,,,tt3745620,,Set in communist Poland of the 80s the movie depicts early career of cardio surgeon Zbigniew Religa.,2000000,0,Bogowie,pl +293271,Moomins on the Riviera,2014-10-10,80.0,http://www.moominsontheriviera.com/,,tt2371399,,"The Moomins along with Little My and Snorkmaiden had a sea journey that after storms and desert island dangers leads the family to Riviera, the place that takes their unity to the test.",4700000,0,Muumit Rivieralla,fi +244786,Whiplash,2014-10-10,105.0,http://sonyclassics.com/whiplash/,,tt2582802,The road to greatness can take you to the edge.,"Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.",3300000,13092000,Whiplash,en +255343,Escobar: Paradise Lost,2014-10-11,120.0,,,tt2515030,Welcome to the family,"For Pablo Escobar family is everything. When young surfer Nick falls for Escobar's niece, Maria, he finds his life on the line when he's pulled into the dangerous world of the family business.",17000000,3758328,Escobar: Paradise Lost,en +297702,Gutshot Straight,2014-10-11,89.0,,,tt2252552,,A professional poker player falls deep into underworld when he takes an unexpected wager from a mysterious high roller.,0,0,Gutshot Straight,en +295656,Along Came a Nanny,2014-10-12,83.0,,,tt3958180,,"Hoping to catch a burglar, a cop (Cameron Mathison) goes under cover as a nanny in an upscale community. As he looks for leads, he becomes involved with a high-maintenance family and a pretty caregiver (Sarah Lancaster) nearby.",0,0,Along Came a Nanny,en +302118,Quatsch und die Nasenbärbande,2014-10-13,0.0,,,tt4045488,,,0,0,Quatsch und die Nasenbärbande,de +278632,Julia,2014-10-14,95.0,http://tombstonedistribution.com/julia/,,tt2582426,,"After suffering a brutal trauma, Julia uses an unorthodox form of therapy to restore herself.",0,2710,Julia,en +308269,"Gore, Quebec",2014-10-14,79.0,,,tt2181542,Not all Canadians are polite.,"Gore, Quebec tells the story of two acquaintances who are set up by their mutual friends on a cottage weekend in Quebec. What was supposed to be an exciting and fun weekend, quickly turns into the blind date from hell, as the Couple discover that the cottage is not safe, and that their friends are already dead. The film begins in a home movie found-footage style, but quickly shifts into a more cinematic style once things start unraveling. With a serial killer terrorizing them, the Couple have to either protect one another to survive, or try to escape separately. Do you protect your fellow man, or is survival a solitary journey?",7000,0,"Gore, Quebec",en +336775,All-Stars,2014-10-15,98.0,https://www.facebook.com/pages/All-Stars/117177195123942,,tt3113448,,"""All-Stars"" is a hilarious commentary on the state of all youth sports today, fueled by the outrageous behavior of the desperate sports parent living vicariously through his or her child. In the vein of ""Best in Show"", where it's more about the dog owners than the dogs - ""All-Stars"" is about the adults involved in youth sports (parents, coaches, umpires, volunteers, board members, etc.) more than the kids. The end result is a funny, yet compelling spin on fast pitch softball as well as a unique state of affairs on the outlandish antics of a few crazed parents.",608000,0,All-Stars,en +302666,10.0 Earthquake,2014-10-15,88.0,,,tt3488056,The end is near.,"Los Angeles is about to be hit by a devastating earthquake, and time is running out to save the city from imminent danger.",0,0,10.0 Earthquake,en +297736,Radiator,2014-10-15,93.0,,,tt4028876,,"A moving, blackly comic drama about the strains in coping with ageing parents.",0,0,Radiator,en +297745,...E fuori nevica!,2014-10-16,0.0,,,tt4129900,,,0,0,...E fuori nevica!,it +200727,"Love, Rosie",2014-10-16,102.0,,,tt1638002,Right Love. Wrong Time.,Rosie and Alex are best friends. They are suddenly separated when Alex and his family move from Dublin to America. Can their friendship survive years and miles? Will they gamble everything for true love?,0,4439431,"Love, Rosie",en +290916,7.2,2014-10-16,14.0,,,tt3901628,,A schoolgirl with amnesia wakes to a deadly ultimatum. Will she get to the library in time to avoid disembowelment?,0,0,7.2,en +264525,La dictadura perfecta,2014-10-16,143.0,http://www.ladictaduraperfecta.com/,,tt3970854,,"TV MX, the most powerful Mexican Television Corporation, discloses a scandalous story involving Governor Carmelo Vargas in serious crimes and illicit business. Governor Vargas worried about his political future, decides to clean his image and negotiates a billionaire secret agreement with the owners of the TV Corporation. Carlos Rojo, an ambitious young news producer, and Ricardo Diaz, TV network star reporter, are responsible for making a dirty campaign to change the image the public has of the corrupt Governor and make him, at any cost, a political star and a great presidential candidate. Mexican Television believes that democracy is a farce and has already placed one President... Will they do it again?",0,0,La dictadura perfecta,es +327909,No Man's Island,2014-10-16,93.0,,,tt3144226,,,0,0,Senki szigete,hu +321644,Enquiring Minds: The Untold Story of the Man Behind the National Enquirer,2014-10-16,98.0,http://www.ricburns.com/film/enquiring-minds,,tt4139412,,"Chronicle of publisher Gene Pope Jr.'s celebrity gossip and scandal fused vision, which became The National Enquirer, America's most notorious tabloid.",750000,0,Enquiring Minds: The Untold Story of the Man Behind the National Enquirer,en +294652,Son of a Gun,2014-10-16,108.0,,,tt2452200,Everyone gets what they deserve,"Locked up for a minor crime, 19 year old JR quickly learns the harsh realities of prison life. Protection, if you can get it, is paramount. JR soon finds himself under the watchful eye of Australia's most notorious criminal, Brendan Lynch, but protection comes at a price.",0,0,Son of a Gun,en +244403,Rudderless,2014-10-17,105.0,,,tt1798243,The way back begins with a single chord.,"A grieving father in a downward spiral stumbles across a box of his recently deceased son's demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.",5000000,0,Rudderless,en +296941,The Hacker Wars,2014-10-17,91.0,,,tt4047350,The War has already begun!,"h)ac(k)tivist-noun: a person who uses technology to bring about social change. The Hacker Wars - a film about the targeting of (h)ac(k)tivists, activists and journalists by the US government.There is a war going on- the war for our minds, The Hacker Wars.",0,0,The Hacker Wars,en +297265,Northern Soul,2014-10-17,102.0,http://www.northernsoulthefilm.com/,,tt1837613,,"Set in 1974, an authentic and uplifting tale of two friends whose horizons are opened up by the discovery of black American soul music.",0,0,Northern Soul,en +326255,Meet the Hitlers,2014-10-17,84.0,,,tt2432918,,What would it be like if your last name was Hitler? Director Matt Ogens seeks that answer by intimately portraying a diverse group of individuals with that same unfortunate name.,0,0,Meet the Hitlers,en +291336,Honeyspider,2014-10-18,76.0,http://honeyspidermovie.com,,tt3526462,...Let The Blood Of The Dead Inside.,"It's Halloween day in 1989 and college student Jackie Blue wants to enjoy a quiet birthday in the midst of a chaotic semester at school. Her friend Amber has other ideas and persuades Jackie to come to the annual Halloween party on campus after her shift at the local movie theater. As the night unfolds, it becomes apparent that Jackie will get more excitement than she bargained for on her birthday this year.",0,0,Honeyspider,en +296626,Finders Keepers,2014-10-18,85.0,,,tt3534842,,A haunted doll teaches one little girl why children shouldn't play with undead things.,0,0,Finders Keepers,en +298165,He Took His Skin Off for Me,2014-10-18,11.0,http://hetookhisskinoffforme.com/,,tt3452322,Love is sticky.,"A simple, domestic love story about a man who takes his skin off for his girlfriend, and why it probably wasn't the best idea...",0,0,He Took His Skin Off for Me,en +362765,The Sound and the Shadow,2014-10-19,90.0,http://soundandtheshadow.com/,,tt2190180,Be careful what you listen for.,"An allergy-ridden, eavesdropping sound engineer and his boisterous new roommate are thrust into a missing girl case when he discovers clues to her disappearance in his neighborhood recordings.",0,0,The Sound and the Shadow,en +286372,Treehouse,2014-10-20,96.0,,,tt1791681,No kids allowed,A teenage boy discovers the perpetrators of several brutal kidnappings in his home town.,3250000,3250000,Treehouse,en +226140,See No Evil 2,2014-10-20,90.0,,296872,tt3106120,You will pay for your sins,"See No Evil 2 revives the nightmare of the first film when Jacob Goodnight rises from the dead in the city morgue after his killing spree at the Blackwell hotel. In this ominous, underground locker for the dead, a group of medical students fight to survive as this deranged psychopath once again starts to pick them apart one by one.",0,0,See No Evil 2,en +298522,Wyatt Cenac: Brooklyn,2014-10-21,67.0,,,tt4286560,,Standup special recorded at Union Hall in Brooklyn.,0,0,Wyatt Cenac: Brooklyn,en +245891,John Wick,2014-10-22,101.0,http://www.johnwickthemovie.com/,404609,tt2911666,Don't set him off.,Ex-lunatic John Wick comes off his meds to track down the bounders that killed his dog and made off with his self-respect,20000000,88761661,John Wick,en +298722,Soap Opera,2014-10-23,,,,tt3358470,,,0,0,Soap Opera,it +299309,The Last Patrol,2014-10-23,87.0,,,tt4143384,,Four veterans of the Afghani war ride the American rails.,0,0,The Last Patrol,en +297288,Good for Nothing,2014-10-23,87.0,,,tt4078672,,"Easygoing Gianni looks forward to retirement - until he is informed that a change in the law obliges him to work three more years. Faced with the outrageous possibility of having to do a full day's work, he sets about finding a way to achieve a quiet life",0,0,Buoni a nulla,it +295588,23 Blast,2014-10-24,98.0,http://www.23blast.com,,tt2304459,Vision Comes from Within,"When a high school football star is suddenly stricken with irreversible total blindness, he must decide whether to live a safe handicapped life or bravely return to the life he once knew and the sport he still loves.",0,0,23 Blast,en +228108,The Road Within,2014-10-24,100.0,,,tt2962876,,A young man with Tourette's Syndrome embarks on a road trip with his recently-deceased mother's ashes.,0,0,The Road Within,en +177572,Big Hero 6,2014-10-24,102.0,http://movies.disney.com/big-hero-6,,tt2245084,From the creators of Wreck-it Ralph and Frozen,"The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.",165000000,652105443,Big Hero 6,en +302026,Garm Wars: The Last Druid,2014-10-24,92.0,http://garmwars-movie.com/,,tt2504640,,"In a world where clone soldiers from three military tribes are locked in a perpetual battle of air, land and technology, one clone is separated from the battle and finds herself on the run with a group of unlikely companions.",0,0,Garm Wars: The Last Druid,en +332488,Zombie Resurrection,2014-10-25,79.0,http://www.charmed-apocalypse.com/,,tt2267454,Prey for salvation,"15 months after the apocalypse, a group of survivors are forced to take refuge in an abandoned school, where they encounter a mysterious zombie with the power to bring the undead back to life.",0,0,Zombie Resurrection,en +267852,Black Mountain Side,2014-10-26,99.0,http://www.afarewelltokings.com/?cpt_portfolio=black-mountain-side,,tt3139756,There is something under the ice,"A group of archaeologists uncover a strange structure in Northern Canada, dating over ten thousand years before the present. The team finds themselves isolated when their communication systems fail and it's not long before they begin to feel the effects of the solitude.",0,0,Black Mountain Side,en +200511,7 Minutes,2014-10-26,92.0,,,tt2828954,It's a robbery. A million things could go wrong.,A young athlete takes a wild turn in life after suffering a serious injury.,0,0,7 Minutes,en +301566,Too Many Cooks,2014-10-27,11.0,http://www.adultswim.com/videos/infomercials/too-many-cooks/,,tt3534838,TOO MANY COOKS!,"""Too Many Cooks"" is a humorous parody of US sitcoms of the 70s and 80s.",0,0,Too Many Cooks,en +300424,LEGO DC Comics Super Heroes: Batman: Be-Leaguered,2014-10-27,22.0,,386162,tt4189294,,"Superman wants Batman to join his new superhero team, but Batman prides himself on being a self-sufficient loner.",0,0,LEGO DC Comics Super Heroes: Batman: Be-Leaguered,en +245906,She's Funny That Way,2014-10-27,93.0,,,tt1767372,"The question is, Who is doing Who?","On the set of a playwright's new project, a love triangle forms between his wife, her ex-lover, and the call girl-turned-actress cast in the production.",0,111996,She's Funny That Way,en +320181,The Perfect 46,2014-10-28,97.0,http://www.theperfect46.com/,,tt2771506,What if you could have the perfect child?,A geneticist creates a website that pairs an individual with their ideal genetic partner for children.,0,0,The Perfect 46,en +300490,Unutursam Fısılda,2014-10-29,123.0,,,tt4114744,,"Unutursam Fisilda tells the story of the two sisters Hatice and Hanife and how their lives change after they meet a boy named Tarik. A film full of beautiful music and the 70s fashion. Directed by Çagan Irmak. With Farah Zeynep Abdullah, Kerem Bursin, Gözde Cigaci, Evren Duyal.",0,0,Unutursam Fısılda,tr +245700,Mr. Turner,2014-10-31,150.0,,,tt2473794,,"Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.",0,5405500,Mr. Turner,en +290864,Kung Fu Jungle,2014-10-31,100.0,,,tt2952602,Kung Fu is a Skill for Killing,"A martial arts instructor working at a police academy gets imprisoned after killing a man by accident. But when a vicious killer starts targeting martial arts masters, the instructor offers to help the police in return for his freedom.",25000000,129115,一個人的武林,cn +303856,The Presence,2014-10-31,82.0,,,tt2624866,Can a place be evil?,"Hoping to film paranormal activity, three friends break into an abandoned castle, where an evil presence soon hounds them into terror and madness.",40000,0,Die Präsenz,de +332662,The Scopia Effect,2014-11-01,130.0,,,tt2673388,Death Should Be A Once in a Life Time Experience,"Reincarnation goes horribly wrong releasing dark forces across time. Basia accesses parts of her mind that should never be tampered with. Past lives merge with present as her reality becomes distorted, she fights for her very existence.",0,0,The Scopia Effect,en +206296,The Last Five Years,2014-11-03,94.0,,,tt2474024,There are two sides to every love story.,"In New York, a struggling actress and a successful writer sing about their failed marriage from two perspectives.",0,0,The Last Five Years,en +409696,Over the Garden Wall,2014-11-03,110.0,,,tt3718778,,Two brothers find themselves lost in a mysterious land and try to find their way home.,0,0,Over the Garden Wall,en +315467,Kubrick Remembered,2014-11-04,83.0,,,tt4015630,,"An 83-minute candid look into the life of Kubrick, including interviews with his widow, family, coworkers and actors, and featuring a tour of the Archive in London and an inside look into Kubrick's home.",0,0,Kubrick Remembered,en +301304,Doug Benson: Doug Dynasty,2014-11-06,60.0,http://www.netflix.com,,tt3983738,,Doug Benson brings his weed laced comedy to Seattle's Neptune Theater for his first ever hour long comedy special.,0,0,Doug Benson: Doug Dynasty,en +301272,Andiamo a quel paese,2014-11-06,0.0,,,tt4065308,,,0,0,Andiamo a quel paese,it +334146,Genetic Me,2014-11-06,0.0,,,tt4293698,,Directed by Pernille Rose Grønkjær.,0,0,Genetic Me,en +277847,Set Fire to the Stars,2014-11-07,97.0,,,tt3455740,Never Meet Your Heroes,"An aspiring poet in 1950s New York has his ordered world shaken when he embarks on a week-long retreat to save his hell raising hero, Dylan Thomas.",0,0,Set Fire to the Stars,en +329550,"Dzień dobry, kocham cię!",2014-11-07,0.0,,,tt4128514,,,0,0,"Dzień dobry, kocham cię!",pl +286532,A Merry Friggin' Christmas,2014-11-07,88.0,http://www.sycamorepictures.com/,,tt0910885,Spend it with the ones you loathe,"Boyd Mitchler and his family must spend Christmas with his estranged family of misfits. Upon realizing that he left all his son's gifts at home, he hits the road with his dad in an attempt to make the 8-hour round trip before sunrise.",0,0,A Merry Friggin' Christmas,en +300487,The Swedish Moment,2014-11-07,75.0,,,tt3435570,,"Pop singer Kari and his girl dump a tightly wrapped mattress on a frozen lake. Things don’t quite go as planned, and the two go to Kari’s old drummer friend for help. Paranoia, jealousy and a series of increasingly absurd events ensue.",495000,0,Ruotsalainen hetki,fi +330115,Ride,2014-11-08,93.0,http://screenmediafilms.net/ride/,,tt1930463,"When her son dropped out, she dropped in.",A mother travels cross-country to California to be with her son after he decides to drop out of school and become a surfer.,0,0,Ride,en +302104,That Thing Called Tadhana,2014-11-09,110.0,,,tt4170436,,"While struggling to meet the strict airline baggage requirements, a woman meets a man who heroically comes to her aid. Both are in despair out of love, which urges them to form a charming friendship which would take them out of the crowded airport and into the secluded city of Sagada where they would attempt to mend each other's hearts and find the answer to the question, ""Where do broken hearts go?""",0,0,That Thing Called Tadhana,tl +302042,Dead on Campus,2014-11-10,88.0,,,tt3731196,,"A freshman on campus discovers that the only way to be admitted into the sorority of her dreams is to seduce a nerdy introverted guy and film it. When the sorority ""prank"" goes viral, the boy is discovered dead from apparent suicide, but his sister does not buy it. She goes under cover to expose the sororities' hidden secrets.",1500000,0,Dead on Campus,en +293122,The Guide,2014-11-12,120.0,,,tt3037582,,American boy Peter and blind minstrel Ivan are thrown together by fate amidst the turbulent mid-30s Soviet Ukraine.,722083,499168,Поводир,en +313896,"Von einem, der auszog, das Fürchten zu lernen",2014-11-13,58.0,,,tt4312830,,,0,0,"Von einem, der auszog, das Fürchten zu lernen",de +294483,Wir waren Könige,2014-11-13,107.0,,,tt2718442,,"Violent youth gangs and a police force way out of its depth. When a police operation goes awry and two policemen die, the powder keg threatens to ignite as the SWAT team knows only one goal: revenge - irrespective of the law.",0,0,Wir waren Könige,de +302802,Tre tocchi,2014-11-13,0.0,,,tt3711684,,,0,0,Tre tocchi,it +321315,Forever,2014-11-14,87.0,http://www.falirohouse.com/films/Gia-Panta,,tt4246092,,"Two people, alone in a desolate city. Costas and Anna in Athens. Costas is an engine driver. The trains he drives travel from one end of the city to the other, following the traces of the ancient rivers that were paved over and made into roads. Anna sells ferry boat tickets at Piraeus, the city’s main harbour, the place where the rivers once flowed into the sea. Costas knows Anna. He sees her every morning, waiting on the platform for his train to take her from Thiseion to Piraeus; and he sees her every afternoon, when his train takes her from Piraeus back to Thiseion. Anna doesn’t know Costas. From the window of the train car she looks out at the same desolate city every day, without knowing who’s driving the train. When something happens to turn Costas’s life upside down, he decides to reach out from inside his solitude and talk to Anna.",0,0,Gia panta,el +295884,Saving Christmas,2014-11-14,80.0,http://www.savingchristmas.com/,,tt4009460,Put The Christ Back in Christmas,"Kirk is enjoying the annual Christmas party extravaganza thrown by his sister until he realizes he needs to help out Christian, his brother-in-law who has a bad case of the bah-humbugs.",0,0,Saving Christmas,en +331745,Top Spin,2014-11-15,80.0,,,tt4219836,,Three teenagers' quest to qualify for the 2012 US Olympic table tennis team.,0,0,Top Spin,en +430250,City of Dead Men,2014-11-15,87.0,,,tt2791026,Ready to die?,An American traveling in South America ends up living with a group of misfits at an abandoned hospital with a troubling past.,0,0,City of Dead Men,en +294651,Pale Moon,2014-11-15,124.0,http://www.kaminotsuki.jp/,,tt3560492,"To make your dreams come true, sometimes you have to break the rules.","Daily, Rika Umezawa battles a nagging sense of emptiness and dissatisfaction. She works a tiring job, comes home to an unappreciative husband and has little opportunity to enjoy life. But things change when office gossip about affairs and embezzlement inspire Rika to do the unthinkable. Soon, Rika finds herself filling the void with a university student named Kota and the millions entrusted to her by clients. Is her newfound lifestyle the key to happiness? And if so, how long can it last?",0,0,紙の月,ja +301224,54 Days,2014-11-16,87.0,http://www.54daysthemovie.com,,tt3509626,Either one dies...all they all do.,5 people trapped in a bunker after a nuclear and biological attack are forced to make an impossible decision - either one dies or they all die.,0,0,54 Days,en +337012,The Legend of Longwood,2014-11-16,94.0,http://www.legendoflongwood.nl/,,tt3394758,,"When 12-year-old Mickey Miller moves from New York to Ireland, she soon discovers a link between herself and the 300-year-old legend of the mysterious Black Knight, who regularly haunts the sleepy Irish village. With courage and a sharp mind, she sets out to save a precious herd of white horses and to thwart the evil plans of a greedy, ambitious woman.",0,0,The Legend of Longwood,en +295314,L'Oranais,2014-11-19,0.0,,,tt3407316,,,0,0,L'Oranais,fr +254193,Late Phases,2014-11-21,95.0,,,tt2420756,The hunt is on,"When deadly attacks from the forests beset a secluded retirement community, it is up to a grizzled veteran to figure what the residents are hiding.",0,0,Late Phases,en +306199,Joe Rogan: Rocky Mountain High,2014-11-21,63.0,,,tt4226162,,"Perched high above it all in Denver, Joe Rogan¹s brand-new one-hour stand-up special, ""Rocky Mountain High,"" has a clear perspective. Tune in to find out the real meaning of infinity, why Joe will lie to you on stage and why Kim Kardashian is the most popular woman in the world. Filmed at the renowned Denver Comedy Works in downtown Denver, ""Rocky Mountain High"" proves if you¹re not paranoid, you¹re not paying attention.",0,0,Joe Rogan: Rocky Mountain High,en +305127,The Frame,2014-11-21,127.0,http://doubleedgefilms.com,,tt2567038,,Two strangers find their lives colliding in an impossible way. Alex is a methodical cargo thief working for a dangerous cartel. Sam is a determined paramedic trying to save the world while running from her past.,0,0,The Frame,en +303281,Happy Ending,2014-11-21,135.0,,,tt3017412,,Yudi’s happy life is about to encounter a speed breaker-his BMW gets towed away and his dues have started piling up. He’s run out of money and luck! To make matters worse-his supposed ex-girlfriend isn’t really his ex.,0,0,Happy Ending,en +298935,All Relative,2014-11-21,85.0,,,tt3214248,,"Things couldn't be going better for Harry and Grace, a young New York City couple in love, until Grace's mother turns Harry's world upside down.",0,0,All Relative,en +302828,Against the Sun,2014-11-22,100.0,,,tt2557276,,"A WWII pilot, bombardier, and radioman find themselves adrift on a lifeboat without food or water after being forced to ditch their plane during a scouting mission.",0,0,Against the Sun,en +270946,Penguins of Madagascar,2014-11-22,92.0,,14740,tt1911658,The Movie Event That Will Blow Their Cover,"Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.",132000000,373552094,Penguins of Madagascar,en +293082,"10,000 Days",2014-11-23,91.0,,,tt3530690,,"10,000 Days ago, Comet 23 struck Earth with the magnitude of all the nuclear weapons in the world sending the planet into a deep freeze. Now, 27 years in the future, those who survived are locked in an epic battle of life or death.",0,0,"10,000 Days",en +310972,The Christmas Secret,2014-11-23,90.0,,,tt3626180,,"While her life is falling apart, single mom Christine finds a magical family heirloom that leads to love and good fortune during Christmas.",0,0,The Christmas Secret,en +245692,The Search,2014-11-26,149.0,,,tt2177827,,A woman who works for a non-governmental organization (NGO) forms a special relationship with a young boy in war-torn Chechnya.,25000000,0,The Search,fr +266856,The Theory of Everything,2014-11-26,123.0,http://www.focusfeatures.com/the_theory_of_everything,,tt2980516,His Mind Changed Our World. Her Love Changed His.,"The Theory of Everything is the extraordinary story of one of the world’s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.",15000000,123726688,The Theory of Everything,en +306598,"My Love, Don't Cross That River",2014-11-27,86.0,http://anata-river.com/,,tt4063314,,"There live a couple known as ‘100-year-old lovebirds’. As fairy tale's characters, the husband is strong like a woodman, and the wife is full of charms like a princess. They dearly love each other wearing Korean traditional clothes all the time, and still fall asleep hand in hand. However, the death, quietly and like a thief, sit between them. This film starts from this moment, and follows the last moments of 76 years of their marriage.",0,0,"님아, 그 강을 건너지 마오",ko +306555,Mio papà,2014-11-27,,,,tt3262112,,,0,0,Mio papà,it +299828,Women Who Flirt,2014-11-28,97.0,,,tt3313908,,"When Zhang Hui is told by long-time best friend Xiao Gong that he has a new girlfriend, she is determined to learn new tricks to gain him back. Based on the novel written by Luo Fuman, ""Everyone Loves Tender Women"".",0,0,撒娇女人最好命,zh +310123,Zid,2014-11-28,128.0,,,tt4228746,Come Play With Fire,"A girl falls in a love with a journalist, who is still involved with his ex girlfriend. The pair get trapped in a hit and run case. Will they be able to prove their innocence?",1556288,1268395,Zid,en +282069,Parasyte: Part 1,2014-11-29,109.0,http://www.kiseiju.com/,385386,tt3345472,,"Alien pods come to Earth and, naturally, start taking over Human Hosts. One such pod only manages to take over one human's, Shin Izumi, right arm. Together they grow and co-exist, all the while the other aliens are making meals of other humans; Shin feels he must put a stop to it all, but his alien, Migi, doesn't see why.",0,0,寄生獣,ja +300187,One Christmas Eve,2014-11-30,0.0,,,tt3725224,Chaos is coming to town.,"A series of mishaps threaten a recently divorced mom's attempts to make her two kids' first Christmas ""without dad"" perfect.",0,0,One Christmas Eve,en +264264,The Crossing,2014-12-02,129.0,,295274,tt3038664,There was never a more dangerous time to fall in love.,"During the Chinese Revolution in 1949, three couples flee from China to an island of Taiwan.",40000000,0,太平轮(上),zh +305455,Santa Claus,2014-12-04,80.0,,,tt3532850,,"One night, a burglar in a Santa Claus costume is surprised by Victor, a young boy who believes he is the real Santa Claus. Victor then follows him, and they embark on an unexpected adventure that will change their lives.",0,0,Le père Noël,fr +307649,Likes or Dislikes,2014-12-04,85.0,,,tt4268306,,Aleksey must decide what's better for him - a regular life with his fiancé Alyona or adventurous life with a famous journalist Irina.,0,0,Любит не любит,ru +304613,Charlie's Farm,2014-12-04,93.0,http://charliesfarm.com.au/,,tt3317874,7ft 375lbs Of Pure Aussie Killing Machine,"In an effort to do something different, four friends head into Australia's outback to explore Charlie's Farm, the site where a violent family met their end at the hands of an angry mob. Despite all warnings, they persist in their horror-seeking adventure.",3000000,0,Charlie's Farm,en +308165,Action Jackson,2014-12-05,144.0,,,tt0403935,"Naa Commitment, Naa Appointment, Only Punishment!","A man meets his lookalike, who's not just a killer of evil, but also a kind hearted man. Together, they team up to fight against a dreaded gangster.",0,0,एक्शन जैकसन,hi +284293,Still Alice,2014-12-05,99.0,,,tt3316960,,"Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.",5000000,43884652,Still Alice,en +228970,Wild,2014-12-05,115.0,http://howwilditwas.com/,,tt2305051,,A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.,15000000,52501541,Wild,en +304336,Lap Dance,2014-12-05,100.0,,,tt2392385,Fast money comes at a dangerous price,"An aspiring actress makes a pact with her fiancé to take a job as an exotic dancer to care for her cancer stricken father. Once the pact the couple made is broken, their lives are changed forever.",0,0,Lap Dance,en +250535,Get Santa,2014-12-05,102.0,,,tt1935940,,"A father and son who must team up to save Christmas, once they discover Santa Claus sleeping in their garage after crashing his sleigh and finding himself on the run from the police.",0,0,Get Santa,en +260001,Life Partners,2014-12-05,95.0,http://www.magpictures.com/lifepartners/,,tt2870808,One guy can ruin the perfect relationship.,A 29-year-old lawyer and her lesbian best friend experience a dramatic shift in their longtime bond after one enters a serious relationship,0,8265,Life Partners,en +310126,"Il ricco, il povero e il maggiordomo",2014-12-11,0.0,,,tt4229938,,,0,0,"Il ricco, il povero e il maggiordomo",it +229328,Electricity,2014-12-12,96.0,http://www.stonecity.co.uk,,tt2936470,,"A woman leaves her seaside hometown to search for her long-lost brother, experiencing hallucinations brought on by her epilepsy during her trip.",0,0,Electricity,en +305932,Expelled,2014-12-12,85.0,http://www.expelledmovie.com/,,tt4189442,Eastwood High Is About To Get Schooled,"Felix (Cameron Dallas) is a legendary prankster who gets expelled from his high school and, with his friend’s help, stops at nothing to hide it from his parents.",0,0,Expelled,en +284296,Top Five,2014-12-12,102.0,http://www.topfivemovie.com/,,tt2784678,,A comedian tries to make it as a serious actor when his reality-TV star fiancé talks him into broadcasting their wedding on her TV show.,0,25434291,Top Five,en +292014,The Snow Queen 2: Refreeze,2014-12-12,78.0,,374930,tt3477554,,"After the trolls' victory over the Snow Queen, Orm claims that he is destined to marry the princess and inherit great power.",0,0,Снежная королева 2: Перезаморозка,ru +68737,Seventh Son,2014-12-12,102.0,http://www.seventhsonmovie.com/,,tt1121096,"When darkness falls, the son will rise. When the son falls, the dark knight will rise.","John Gregory, who is a seventh son of a seventh son and also the local spook, has protected the country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?",95000000,114178613,Seventh Son,en +267931,Hidden in the Woods,2014-12-12,98.0,,,tt2320388,Hide Your Daughters,"Hidden in the Woods tells the story of two sisters who have been raised in isolation, subjected to the torment of their abusive, drug dealing father. When they finally decide to report him to the police, he kills the two officers and is put in jail. But things go from bad to worse when the girls must answer to their Uncle Costello, a psychotic drug kingpin, who shows up looking for his missing merchandise which is hidden in the woods.",1,0,Hidden in the Woods,en +311093,A Christmas Kiss II,2014-12-13,90.0,http://www.iontelevision.com/holiday-movies/a-christmas-kiss-ii,,tt4280430,"This Christmas, expect the unexpected.","At a Christmastime event, Jenna shares an impromptu, unforgettable kiss with the dashing billionaire, Cooper Montgomery. Unaware of his intentions and fearful of getting hurt in another relationship, Jenna vows to resist his charms, but begins to realize his affection is real as the two spend more time together.",0,0,A Christmas Kiss II,en +314283,A Perfect Christmas List,2014-12-14,86.0,,,tt4276834,She's making a list. and checking it twice...,"As a last wish, a recently hospitalized grandmother, Evie, tasks her daughter and granddaughter, Sara, with a list of festive accomplishments to do together before Christmas, hoping that the adventure of the experience will repair their relationship. Along the way, Sara discovers an unlisted Christmas adventure of her own.",0,0,A Perfect Christmas List,en +312497,Ascension,2014-12-15,282.0,,,tt3696720,Be part of mankind's last hope.,"In this three-part miniseries, a young woman's murder causes the subjects of a century-long mission to populate a new world to question the true nature of the project as they approach the point of no return.",0,0,Ascension,en +312174,Unedited Footage of a Bear,2014-12-16,11.0,http://claridryl.com,,tt4289434,,This is unedited raw footage of a bear I filmed with my cell phone. I'm not sure what kind of bear this is.,0,0,Unedited Footage of a Bear,en +312100,Elf: Buddy's Musical Christmas,2014-12-16,43.0,,,tt4147830,Narrated by Santa Claus,Santa narrates the story of Buddy's travels to New York City to meet the father he never knew he had. Along the way his unrelenting cheer transforms the lives of everyone he meets and opens his father's eyes to the magic of Christmas.,0,0,Elf: Buddy's Musical Christmas,en +181533,Night at the Museum: Secret of the Tomb,2014-12-17,97.0,,85943,tt2692250,One Final Night to Save the Day.,"When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley (Ben Stiller) spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.",127000000,349424282,Night at the Museum: Secret of the Tomb,en +313108,Ode to My Father,2014-12-17,126.0,http://www.kukje2014.co.kr/,,tt3812366,,"Amid the chaos of refugees fleeing the Korean War in December 1950, a young boy, Duk-soo, sees his fate change in the blink of an eye when he loses track of his younger sister and he leaves his father behind to find her. Settling at Gukje Market in Busan, Duk-soo devotes himself to his remaining family, working all manner of odd jobs to support them in place of his father. His dedication leads him first to the deadly coal mines of Germany, where he meets his first love, Youngja, and then to war-torn Vietnam in this powerful generational epic about one man’s personal sacrifices.",0,0,국제시장,ko +312149,Russell Brand: End the Drugs War,2014-12-17,57.0,,,tt4286440,,"In this personal journey for BBC Three, Russell Brand sets out to find out how other countries are tackling their problems of drug abuse and to explore how the framework of criminalization implicit in the 'war on drugs' produces enormous harm in the treatment of addicts.",0,0,Russell Brand: End the Drugs War,en +303542,The Invisible Boy,2014-12-18,0.0,,,tt3078296,,"Michele is thirteen year old, shy, unpopular at school, and in love with Stella. After wearing a costume for a Halloween party, he finds out that he's invisible.",8000000,0,Il ragazzo invisibile,it +335837,Therapy for a Vampire,2014-12-19,85.0,,,tt3400980,500 years is enough,"Horror comedy film following vampire count Geza von Kösznöm who's visiting groundbreaking neurologist Sigund Freud because he's bored of his life and frustrated of the ""eternally long"" relationship with his wife Elsa.",0,0,Der Vampir auf der Couch,de +318553,Sugar Daddies,2014-12-23,88.0,https://www.facebook.com/SugarDaddiesMovie/,,tt4329098,,"When a girl with a promising future finds herself in financial straits, she makes an agreement with an older man and struggles to keep it secret.",0,0,Sugar Daddies,en +269258,Head Full of Honey,2014-12-25,139.0,,,tt3488462,,"Before eleven years old Tilda's parents can put her beloved grandfather in an old people's home due to his progressing Alzheimer disease, she takes him on one last adventure that subliminally threatens to tear her family apart.",0,0,Honig im Kopf,de +314285,Antboy: Revenge of the Red Fury,2014-12-25,80.0,,347469,tt3606698,,"The film ' Antboy: Revenge of the Red Fury ' is a sequel to the Danish superhero film Antboy, based on the books by Kenneth Bøgh Andersen. The story is again on the ordinary Danish boy Pelle, who secretly fights crime as a superhero Antboy. In the first film, he made ​​short work of the super villain flea , now tucked away on the local insane clinic.",0,0,Antboy II: Den røde furies hævn,da +227306,Unbroken,2014-12-25,137.0,http://www.unbrokenfilm.com/,,tt1809398,Survival. Resilience. Redemption.,"A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.",65000000,163442937,Unbroken,en +317182,Doctor Who: Last Christmas,2014-12-25,57.0,http://www.bbc.co.uk/programmes/p02ct985,,tt4050552,,"The Doctor and Clara face their Last Christmas. Trapped on an Arctic base, under attack from terrifying creatures, who are you going to call? Santa Claus!",0,0,Doctor Who: Last Christmas,en +315057,Headfirst,2014-12-26,94.0,,,tt3526098,Headfirst,"Headfirst is a black comedy about a single mother with anger management problems and her teenage daughter who is always in trouble at school. With yet another school comes a new teacher and a blast from the past for the mother. Before long, an accidental pickpocket and a notoriously lousy storyteller teams up with this one dysfunctional sort of a family. Nothing is the same anymore. Headfirst is a story about missing teeth, strange friends, hidden dreams and long-gone love. And about a hare.",0,0,Päin seinää,fi +354832,The Cookie Mobster,2014-12-27,0.0,,,tt4041278,,"Peter's in deep with the mafia. Just as he is about to pay off his debt, he gets robbed by a little girl selling cookies. Now he must get the money back or get whacked.",0,0,The Cookie Mobster,en +314065,Altar,2014-12-27,95.0,,,tt3484800,Some secrets are best left hidden,A young family find themselves in serious danger when they move to an isolated haunted house in the Yorkshire Moors.,0,0,Altar,en +241239,A Most Violent Year,2014-12-30,125.0,http://amostviolentyear.com/,,tt2937898,The result is never in question. Just the path you take to get there.,"A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on a the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.",20000000,12007070,A Most Violent Year,en +290316,My Friend Victoria,2014-12-31,95.0,,,tt3203992,,"Aged eight, Victoria spends a night in the home of a wealthy white family; years later, she encounters them again and her life is changed forever.",0,0,Mon amie Victoria,fr +315252,Sneeuwwitje En De Zeven Kleine Mensen: Een Modern Sprookje,2015-01-01,,,,tt4298406,,,0,0,Sneeuwwitje En De Zeven Kleine Mensen: Een Modern Sprookje,nl +339342,Anarchy Parlor,2015-01-01,98.0,,,tt2948712,,Six young college hopefuls vacationing and partying in Lithuania get more than they bargained for when they unwittingly get caught up in a maniacal tattoo artist's fiendish side business.,0,0,Anarchy Parlor,en +337073,Almost Mercy,2015-01-01,84.0,,,tt3480446,,Jackson and Emily aren't like the other kids. Two burgeoning sociopaths on the brink of total meltdown. Ticking time bombs seeking revenge. Who will unravel first?,0,0,Almost Mercy,en +403330,Romantically Speaking,2015-01-01,90.0,,,tt4364862,,"A young lady who has grown up with her father being a radio DJ, becomes one herself. Falls in love and hosts a 'Romantically Speaking' show.",0,0,Romantically Speaking,en +320179,Resistance,2015-01-01,72.0,http://www.resistancethefilm.com/,,tt3393198,NOT ALL GERMS ARE CREATED EQUAL.,"Are the medicines and every day products we use putting us at risk RESISTANCE sheds light on the global crisis of antibiotic resistance and uncovers how our extensive use of bacteria-killing antibiotics has created a new kind of disease, resistant to the medicines created to destroy it.",0,0,Resistance,en +352917,Víkend,2015-01-01,,,,tt3257610,,,0,0,Víkend,hu +322266,Buddy Hutchins,2015-01-01,99.0,,,tt3380104,His Bad Day is Now Your Bad Day,"With his business in shambles, a mounting criminal record, and a cheating wife, today is the day that Buddy Hutchins snaps.",1200000,0,Buddy Hutchins,en +315319,We Accept Miracles,2015-01-02,110.0,,,tt3907790,,,0,0,Si accettano miracoli,it +307479,88,2015-01-06,88.0,http://www.88themovie.com/,,tt3465074,There are two sides to every story.,"A young woman comes to in a roadside diner with no idea where she is or how she got there. Split between two timelines, she gets taken on a violent journey as she seeks out the person responsible for her lover's death.",0,0,88,en +317214,From A to B,2015-01-08,108.0,,,tt1666287,,"Three estranged childhood friends (Omar, Ramy, Jay), travel on a road trip from Abu Dhabi to Beirut in memory of their lost friend. If what happens en route doesn't make them crazy, it might just bring them closer.",0,0,من ألف إلى باء,ar +332534,Bana Masal Anlatma,2015-01-09,0.0,,,tt4195278,,,0,0,Bana Masal Anlatma,tr +271039,"Something, Anything",2015-01-09,88.0,http://www.somethinganythingfilm.com,,tt2461126,,"When a tragedy shatters her plans for domestic bliss, a seemingly typical Southern newlywed gradually transforms into a spiritual seeker, quietly threatening the closest relationships around her.",0,0,"Something, Anything",en +327231,For Better and Worse,2015-03-06,90.0,,,tt3886006,,"A couple on the brink of divorce attempts to hide their crisis at a grand wedding, but it turns out they are not the only ones with false appearances.",0,0,I nöd eller lust,sv +315362,Beck 28 - Familjen,2015-01-10,90.0,,279715,tt4186390,,"When a well-known crime boss is murdered by a sniper in front of his family, Beck and his team are challenged to discover which one of his many enemies could be responsible for the crime.",0,0,Beck 28 - Familjen,sv +285848,Felix and Meira,2015-01-11,105.0,,,tt3685218,,A young married woman from Montreal's Orthodox Jewish community finds freedom from the strictures of her faith through her relationship with a young man who is mourning the death of his estranged father.,0,0,Félix et Meira,fr +326723,Snowden’s Great Escape,2015-01-12,58.0,https://www.dr.dk/tv/se/dr1-dokumentaren/dr1-dokumentaren-snowdons-store-flugt,,tt4477936,Big brother is watching you,"""Snowden’s Great Escape"" tells the story of how Edward Snowden managed to evade capture by the US. For the first time Snowden tells the story of how he managed to escape so that not to have to spend the rest of his life in an American prison.",0,0,Snowdens Store Flugt,en +265208,Wild Card,2015-01-14,92.0,,,tt2231253,Never bet against a man with a killer hand.,"When a Las Vegas bodyguard with lethal skills and a gambling problem gets in trouble with the mob, he has one last play… and it's all or nothing.",30000000,0,Wild Card,en +321191,Chronicle of a Blood Merchant,2015-01-14,124.0,http://herc.co.kr/,,tt3797004,,"Set in a village right after the Korean War, poor but good-hearted Heo Sam-gwan sets out to win the most beautiful girl in the village, Heo Ok-ran, by selling his blood to earn money. Years later, the two are happily married with three children, but their family undergoes a crisis when Sam-gwan's eldest son doesn't resemble him and rumors spread about the boy's paternity.",0,0,허삼관,ko +290764,Tracers,2015-01-15,94.0,http://www.unlimited-movie.com/,,tt2401097,It's not a crime if they can't catch you.,"Wanted by the mafia, a New York City bike messenger escapes into the world of parkour after meeting a beautiful stranger.",11000000,593683,Tracers,en +315335,Frau Müller muss weg!,2015-01-15,0.0,,,tt4216934,,,0,9127383,Frau Müller muss weg!,de +317144,Cyberbully,2015-01-15,62.0,,,tt4135218,"When you go online, who can you trust","A chilling real-time thriller featuring a teenager, Casey, battling with an anonymous cyber-stalker.",0,0,Cyberbully,en +313628,Love Forecast,2015-01-15,118.0,http://todaylove2015.co.kr/main.asp,,tt4315956,,"Whenever elementary school teacher Kang Joon-soo (Lee Seung-gi) falls in love, he always gives too much of himself to the relationship. Yet despite that, he ends up being the one getting dumped by his girlfriends. Joon-soo has been friends for 18 years with Kim Hyun-woo (Moon Chae-won), a weather forecaster whose beauty belies her witty tongue and aggressive manner.",0,0,오늘의 연애,ko +319971,Gary Owen: I Agree With Myself,2015-01-16,75.0,,,tt4767356,,"Fearless and happy-go-lucky stand-up comedian Gary Owen flips every accepted, politically correct approach to family, race, gender and politics in his hilarious comedy special.",0,0,Gary Owen: I Agree With Myself,en +319096,Whitney,2015-01-17,90.0,,,tt3750942,,Chronicles Whitney Houston's rise to fame and turbulent relationship with husband Bobby Brown.,0,0,Whitney,en +319999,Body,2015-01-20,90.0,https://www.facebook.com/bodycialo,,tt4358230,,"A busy attorney, worried that his anorexic daughter Olga might try to harm herself, since she's still grieving over her recently deceased mother, sends her to see a psychiatrist, Anna, who's dealing with her own loss in an unusual way.",0,0,Ciało,pl +336806,The Here After,2015-01-20,102.0,http://www.neweuropefilmsales.com/movies/96,,tt4150494,,"When John returns home to his father after serving time in prison, he is looking forward to starting his life afresh. However, in the local community his crime is neither forgotten nor forgiven.",0,0,Efterskalv,sv +308174,3 Türken und ein Baby,2015-01-22,0.0,,,tt3598648,,"The Yildiz brothers - Celal, Sami and Mesut - still live under one roof - despite their differences. The family bridal shop is doing really badly and they each yearn for a different life: Heartthrob Celal pines for his ex-girlfriend Anna and risks every last cent of their family inheritance for his dream of a mobile phone shop. Sami is searching for true love but ruins every blind date with his anger mis-management. And Mesut, the youngest of the three, tries to combine a cool music career with his strict adherence to the Koran. So when a sweet little baby comes careering into their lives, nothing is as it was before. The three young Turkish bachelors are given a crash course in responsibility.",0,0,3 Türken und ein Baby,de +316885,Bridgend,2015-01-22,95.0,,,tt4180576,,"Over a 5-year period in Bridgend in Wales, 79 people, many of them teenagers, committed suicide without leaving any clue as to why. This is the starting point for this mysterious social drama.",0,0,Bridgend,en +316883,Above and Below,2015-01-22,120.0,,,tt3249414,,"Above and Below is a rough and rhythmic roller coaster ride seating five survivors in their daily hustle through an apocalyptic world. A journey of challenges and beauty in uncomfortable places: Rick & Cindy, Godfather Lalo in the flood channels deep down under the shiny strip of Sin City. Dave in the dry and lonesome Californian desert and April in simulation for a Mars mission in the Utah desert. Through the hustle, the pain and the laughs, we are whisked away to an unfamiliar world, yet quickly discover the souls we encounter are perhaps not that different from our own.",0,0,Above and Below,en +318052,The Man in the Wall,2015-01-22,92.0,http://www.6sales.es/the-man-in-the-wall.html,,tt4029356,,"One night, one apartment and one mystery. Shir wakes up in the middle of the night. Her husband hasn’t come back after taking the dog out. The dog has. But where is Rami? Friends, relatives, neighbours and police come round and with each visit more marital secrets are revealed.",0,0,The Man in the Wall,en +319993,Aferim!,2015-01-22,108.0,,,tt4374460,,"Set in early 19th century Romania, a policeman, Costandin, is hired by a nobleman to find a Gypsy slave who has run away from his estate after having an affair with his wife.",1379375,105097,Aferim!,ro +314389,Baby,2015-01-23,160.0,,,tt3848892,History is made by those who give a damn!,"An elite counter-intelligence unit learns of a plot, masterminded by a maniacal madman. With the clock ticking, it's up to them to track the terrorists' international tentacles and prevent them from striking at the heart of India.",0,0,Baby,hi +303636,Young Sophie Bell,2015-01-23,84.0,,,tt3588544,,"Graduation just happened, and now it's time for adventures in Berlin with the childhood friends Sophie and Alice. But Sophie hesitates, and after an altercation, the impulsive Alice goes by herself - and mysteriously disappears. Sophie goes after her in desperation to find out what happened to Alice, which is the beginning of a painful journey from teenager to a young adult. It also is a journey into her friend's darker side, which she has hid from the rest for so long.",0,0,Unga Sophie Bell,sv +319092,The Russian Woodpecker,2015-01-31,80.0,,,tt4082596,,"As his country is gripped by revolution and war, a Ukrainian victim of the Chernobyl nuclear disaster discovers a dark secret and must decide whether to risk his life and play his part in the revolution by revealing it.",0,0,The Russian Woodpecker,en +342765,Carte Blanche,2015-01-23,106.0,,,tt4329800,,"The true story of a high-school history teacher who decides to hide a progressive sight loss from everyone surrounding him - his colleagues, pupils, even the ones who really care about him, because of the fear of losing his job and trying to save his dignity. Due to a genetic disorder, Kacper is faced with a very real possibility of permanent blindness. Initially heartbroken, he attempts to hide his health problems from his bosses driven by his desire to keep his job and to help his students with the final exams. The only person who knows about Kacper's problem is his best friend Wiktor. Meanwhile, Kacper enters a relationship with his colleague Ewa, and tries to help a rebel student Klara, who hides a secret of her own.",0,0,Carte Blanche,pl +315882,Beaver Trilogy Part IV,2015-01-23,0.0,,,tt4264834,,"A chance meeting in a parking lot in 1979 between filmmaker Trent Harris and a young man from Beaver, Utah inspired the creation of an underground film that is now known as Beaver Trilogy. But the film itself is only part of the story.",0,0,Beaver Trilogy Part IV,en +277355,Everly,2015-01-23,90.0,,,tt1945084,Enter if you dare.,"After she betrays a powerful mob boss, a woman matches wits and weaponry with a legion of killers who are out to collect the bounty on the heads of her and her family.",0,0,Everly,en +324181,The Resurrection of Jake the Snake,2015-01-23,93.0,https://www.facebook.com/jakethesnakemovie,,tt4016226,,A fallen professional wrestling superstar battles his past demons in a struggle to reclaim his life and the family that has given up on him.,0,0,The Resurrection of Jake the Snake,en +317114,Bridal Wave,2015-01-24,84.0,,,tt4368496,,"With her wedding day rapidly approaching, an anxious bride-to-be has doubts about her pending marriage. At a romantic island resort, she encounters a handsome kindred spirit and must now decide if her ""perfect"" fiancé is really her true love.",0,0,Bridal Wave,en +321160,With This Ring,2015-01-24,105.0,http://www.mylifetime.com/movies/with-this-ring,,tt3908634,,"After attending their friend Elise's (Sudano) wedding to Nate (Bishop) on New Year's Eve, Trista (Hall), a career-­driven talent agent, Viviane (Scott), a successful gossip columnist, and Amaya (Cooper), a struggling actress, make a pact to get married within the year to either a new love or a man waiting in the wings. But the close friends face their own set of challenges - Trista has not gotten over her commitment-­phobic ex-­boyfriend Damon (White), Viviane is secretly in love with Sean (George), the father of her son, and Amaya is desperate to break up her boyfriend Keith's (Sanders) unhappy marriage so they can live happily ever after. Each woman starts the year with high hopes and dreams of what will happen over the next 12 months... but will they all make it to the altar?",0,0,With This Ring,en +323149,Darkness on the Edge of Town,2015-01-25,87.0,,,tt2799040,,A troubled teenage sharpshooter decides to avenge the death of her estranged sister after she is found murdered in a public bathroom.,0,0,Darkness on the Edge of Town,en +318224,Going Clear: Scientology and the Prison of Belief,2015-01-25,119.0,http://www.hbo.com/documentaries/going-clear/,,tt4257858,,"Going Clear intimately profiles eight former members of the Church of Scientology, shining a light on how they attract true believers and the things they do in the name of religion.",0,0,Going Clear: Scientology and the Prison of Belief,en +314420,Body,2015-01-25,75.0,,,tt3732950,,A night out turns deadly when three girls break into a seemingly empty mansion.,0,0,Body,en +308640,Songs My Brothers Taught Me,2015-01-27,98.0,http://songsthemovie.com/,,tt3566788,,"This complex portrait of modern-day life on the Pine Ridge Indian Reservation explores the bond between a brother and his younger sister, who find themselves on separate paths to rediscovering the meaning of home.",0,0,Songs My Brothers Taught Me,en +322614,Crumbs,2015-01-27,68.0,,,tt4362764,,Our figurine sized supermen hero embarks on an epic surreal journey that will take him across the Ethiopian post apocalyptic landscape in search of a way to get on the hovering spacecraft that for years has become a landmark in the skies.,200000,0,Crumbs,en +319340,I Kissed a Girl,2015-01-28,98.0,,,tt4255626,,"Jérémie, 34, wakes up in an apartment he doesn't know, next to a woman he doesn't know. She is Adna, a stunning Swedish woman who is as funny as she is sweet. Is this the beginning of a fairy tale? Not quite, since Jérémie is about to get married—to Antoine.",0,0,Toute première fois,fr +322317,Christ lives in Siberia,2015-01-28,85.0,https://www.facebook.com/pages/Kristus-elab-Siberis/511576285651570,,tt5129768,,"n a remote area of Siberia, the world’s largest sect lives under the teachings of Vissarion, a man who claims to be the reincarnation of Jesus. Sveta has moved from away from St Petersburg and her ex-husband Magomed, and now lives in the community with her children, Danial, Mariam and Zaur, and her new husband, the Vissarionite bell ringer Dmitiri. Christ Lives in Siberia (Jeesus elab Siberis), by Estonian duo Jaak Kilmi and Arbo Tammiksaar, follows the daily lives of the children as they go to school and help out with community chores. As we go along, we discover more about them and what brought their mother to the community. Their lives are juxtaposed with that of Magomed, who writes letters to the Russian government in an attempt to get his children back.",0,0,Kristus elab Siberis,en +243940,The Lazarus Effect,2015-01-29,83.0,https://www.facebook.com/thelazaruseffect,,tt2918436,Evil will rise.,"Medical researcher Frank, his fiancee Zoe and their team have achieved the impossible: they have found a way to revive the dead. After a successful, but unsanctioned, experiment on a lifeless animal, they are ready to make their work public. However, when their dean learns what they've done, he shuts them down. Zoe is killed during an attempt to recreate the experiment, leading Frank to test the process on her. Zoe is revived -- but something evil is within her.",3300000,64110728,The Lazarus Effect,en +301729,Terminus,2015-01-30,94.0,,,tt3399896,The End Begins Here,"Following a near-fatal accident, David Chamberlain makes an unprecedented discovery that will not only determine the fate of his family, but of mankind.",0,0,Terminus,en +300596,Sidetracked,2015-01-30,103.0,,,tt3495184,,"A rural couple in crisis, who have a brother and sister with urban problems, and all of them trying to find a solution.",0,0,Las ovejas no pierden el tren,es +310001,Seoul Searching,2015-01-30,105.0,,,tt2566644,,"Seoul Searching is a comedy set in the ’80s about a group of foreign-born Korean teenagers who meet at a Seoul summer camp to learn what it means to be Korean. The three boys, from the U.S., Mexico, and Germany, then meet three girls who rock their world.",0,0,Seoul Searching,en +322785,Mel Brooks: Live at the Geffen,2015-01-31,58.0,http://www.hbo.com/comedy/mel-brooks-live-at-the-geffen#/,,tt4280818,Life is a funny story.,"Mel Brooks is one of the funniest voices in American comedy. Now, the entertainment legend dons a tux and takes the stage for a memorable one-man show filled with jokes, songs and hilarious anecdotes.",0,0,Mel Brooks: Live at the Geffen,en +327982,Soulless 2,2015-03-05,0.0,,352020,tt3136646,,"Max Andreev thought the best place to start a new life would be at the other end of the world. What he didn't know, is that you can't outrun your past.",0,0,ДухLess 2,ru +325712,Cool Cat Saves the Kids,2015-02-01,72.0,http://www.coolcatlovesyou.com/,,tt2974050,Cool Cat is Cooler than Barney the Dinosaur,"Cool Cat is the coolest cat in town. All the kids love him. Except for the bully Butch, who hates Cool Cat for his coolness. He terrorizes Cool Cat, his friends and family with threats, taunting, and the internet. Can Cool Cat face his fears and defeat the bully Derrick.",50000,0,Cool Cat Saves the Kids,en +320873,Dhanak,2015-02-02,106.0,,,tt4088588,The Rainbow,Orphaned siblings Pari and Chotu embark on a journey to restore Chotu's eyesight.,0,0,धनक,hi +248633,Zombie Killers: Elephant's Graveyard,2015-02-03,103.0,,,tt2908090,Death Starts With Life,A young militia is all that stands between a coming dead horde and their rural town decimated by the fracking industry.,0,0,Zombie Killers: Elephant's Graveyard,en +270303,It Follows,2015-02-04,100.0,,,tt3235888,"It doesn't think, it doesn't feel, it doesn't give up","For 19-year-old Jay, fall should be about school, boys and weekends out at the lake. But a seemingly innocent physical encounter turns sour and gives her the inescapable sense that someone, or something, is following her. Faced with this burden, Jay and her teenage friends must find a way to escape the horror that seems to be only a few steps behind.",2000000,14674076,It Follows,en +76757,Jupiter Ascending,2015-02-04,124.0,http://www.jupiterascending.com,,tt1617661,Expand your universe.,"In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynasty…",176000003,183987723,Jupiter Ascending,en +296313,Men & Chicken,2015-02-05,104.0,,,tt3877674,You don't choose your own family,"Men & Chicken is a black comedy about two outcast brothers, who by getting to know their unknown family also discover a horrible truth about themselves and their relatives.",0,0,Mænd & høns,da +365340,Cinema: A Public Affair,2015-02-06,,,,tt4483262,,,0,0,Cinema: A Public Affair,de +275696,3 Nights in the Desert,2015-02-06,90.0,,,tt2123884,One last chance to make it right.,"Three former band mates enter a cave after hearing it has the power to give them what they need. As unsettling desires rise to the surface, they all wonder if the cave has real power.",0,0,3 Nights in the Desert,en +379925,The Answers,2015-02-06,8.0,http://theanswersmovie.com/,,tt4009492,,"Immediately after his death, the victim of a car crash gets answers to every question he's ever had about his life, including the most import one of all - what did it all mean?",0,0,The Answers,en +323690,Matt Braunger: Big Dumb Animal,2015-02-06,64.0,,,tt3960808,,"In Matt Braunger's stand-up special, he reveals why single men are so creepy, describes the drunken antics he observed as a bartender and details a surprisingly stressful Bingo victory.",0,0,Matt Braunger: Big Dumb Animal,en +347331,Baji,2015-02-06,162.0,http://www.bajiworld.com/,,tt3919208,,It is an action-adventure-romance laced superhero vigilante film that transcends both folklore and present day. It is based on the legend of a man who took upon himself to protect the common man against oppression and injustice.,0,0,Baji,en +300983,Yennai Arindhaal,2015-02-06,176.0,,,tt4258292,"Well, If You Know Me...","Sathyadev, who is on a career break, is forced to put on his cop shoes ones again to save Thenmozhi, a young woman who is the target of a criminal organ harvesting group, led by a ghost from his past.",7900000,16000000,என்னை அறிந்தால்,ta +323426,Shamitabh,2015-02-06,135.0,,,tt3836958,,"A mute, aspiring actor joins forces with a man who has a powerful voice. Together they take the film industry by storm, but will their egos get in the way?",3700000,0,Shamitabh,hi +324440,The Bunker,2015-02-07,85.0,,,tt2847438,,"A student moves in with a family that lives in an underground house in the middle of the forest, far from civilization. His hopes of peace and quiet are soon shattered, when it becomes apparent that both the parents and their son have a screw loose.",0,0,Der Bunker,de +323315,You're Ugly Too,2015-02-07,81.0,,,tt3678656,,"After her mother’s death, Stacey moves with her uncle Will to a remote region in the Irish midlands. As the two cautiously get to know each other, they have to deal with the dark shadows of the past.",0,0,You're Ugly Too,en +323968,OzLand,2015-02-08,115.0,http://www.ozlandthefilm.com/,,tt3924144,"What if there is more to this world than we know? What if OzLand really exists, and that's where everybody is?","In a dry and dusty post-apocalyptic world, two wayfarers wander aimlessly until Leif finds a copy of The Wonderful Wizard of Oz. Using the world around him to interpret what he reads, Leif allows the book to challenge the beliefs, friendship, and even the very survival of these two divergent travelers.",0,0,OzLand,en +311301,As We Were Dreaming,2015-02-10,117.0,,,tt3306858,,Andreas Dresen's adaptation of Clemens Meyer's novel about a group of East German friends right after the fall of the Wall.,0,0,Als wir träumten,de +320005,Under Electric Clouds,2015-02-10,137.0,,,tt4285198,,"Russia 2017. The world could be on the verge of a great war. People are anxious that things could fall apart. Evolving around an unfinished building, a diverse group of outsiders struggle to find their place in this rapidly changing society, making up the mosaic of existence that is life itself…",0,80551,Под электрическими облаками,ru +324930,Proof of the Devil,2015-02-10,75.0,,,tt3867396,Evil comes from within,"18-year old Jesse Winters, also know as The Butcher, was put to death in Louisiana for committing 23 grisly murders. There was no doubt that he was killer, the question was why? His mother, Kate, claimed that Jesse was possessed by a demon that drove him to fiendish brutality. Now, for the first time on film, Kate will attempt to prove her theories and clear her son's name by inviting a demon to invade her body. Sit back and prepare to watch the unimaginable. That screaming you hear? It's probably your own.",0,0,Proof of the Devil,en +320318,The Clearstream Affair,2015-02-11,0.0,,,tt3037028,,,0,0,L'Enquête,fr +325263,Journey to Space,2015-02-13,42.0,http://www.journeytospacefilm.com/,,tt4292554,Next stop ... Mars!,"A sweeping overview of humanity’s accomplishments in space, as well as our ongoing activities and future plans.",0,0,Journey to Space,en +355984,Andy Peters: Exclamation Mark Question Point,2015-02-13,50.0,,,tt4604154,,"Exclamation Mark Question Point is the debut special from Andy Peters. More bootleg than traditional special, Andy recorded only one show, one night at The Virgil in Los Angeles. The special features a bouncy mix of Andy's dive-in-head-first approach to comedy. With The Virgil's intimate space as a backdrop, Andy litters the show with playful self-deprecating bits, a healthy dose of ""screaming at strangers"" and a nonstop stream of riffs.",0,0,Andy Peters: Exclamation Mark Question Point,en +353641,Risto Räppääjä ja Sevillan saituri,2015-02-13,73.0,,,tt3644202,,,0,0,Risto Räppääjä ja Sevillan saituri,fi +277967,Life Eternal,2015-03-05,123.0,http://www.dasewigeleben.at/,76291,tt3642618,Now something has happened again...,A thriller crime comedy directed by Wolfgang Murnberger.,0,0,Das ewige Leben,de +317198,Bad Hair Day,2015-02-13,90.0,http://disneychannel.disney.com/bad-hair-day,,tt3856042,,"The film is about a high school tech whiz (Laura Marano), who is determined to become prom queen. But on the big day, she suddenly wakes up having a bad hair day, and her destroyed prom dress, and everything that can go wrong, does go badly wrong. A police officer (Leigh-Allyn Baker) seeks the necklace that the teen somehow ends up possessing. Prom day goes really bad as the pair is pursued by a dogged jewel thief (Christian Campbell) on a wild ride cross around the city.",0,0,Bad Hair Day,en +325428,Out of My Hand,2015-02-14,87.0,http://www.outofmyhand.com,,tt3922764,,"‘What do you want?’ asks the trade union leader, to which the men respond as if with one voice: change! Life is hard work on Liberia’s rubber plantations and wages are meagre. Nothing has changed for generations, but now the workers are calling for a strike and instead of grafting, the men are playing football or fishing.",0,0,Out of My Hand,en +302960,Scooby-Doo! Moon Monster Madness,2015-02-17,72.0,,,tt4215766,,"It's one giant step for dog-kind as Scooby-Doo and the Gang blast off for an epic, other-worldly adventure in this all-new original movie! After winning the last 5 seats in a lottery, Scooby-Doo, Shaggy, Fred, Daphne and Velma are off to space in billionaire Sly Baron's brand new ship, the Sly Star One. It's all gravity-free fun until a mysterious alien begins destroying the ship! As the ship breaks down, the crew is forced to land on Sly Baron's base... on the dark side of the moon! Will the gang unravel this alien mystery? Will Scooby-Doo and Shaggy find snacks on the moon? Will Fred ever take his space helmet off?! Journey to the outer limits with Scooby-Doo to find out!",0,0,Scooby-Doo! Moon Monster Madness,en +325690,The Legendary Giulia and Other Miracles,2015-02-19,115.0,http://www.warnerbros.it/blog/noi-e-la-giulia-la-commedia-rivelazione-dellanno-con-edoardo-leo-e-luca-argentero/,,tt3809308,,Four losers join forces to refurbish an abandoned farm and turn it into a B&B in a mafia-ridden area.,0,0,Noi e la Giulia,it +319513,Zurich,2015-02-19,89.0,,,tt3257638,,"Zurich is a musical roadmovie about Nina, who discovers after the death of her great love, truckdriver Boris, he led a double life. Struggling with her feelings she comes to an almost unforgivable deed, and flees. She submerges into the truckers scene – not capable to express herself, except by singing.",0,0,Zurich,nl +347835,The Real Miyagi,2015-02-20,90.0,http://www.fumiodemura.com,,tt2313306,,The life of the greatest karate master of a generation.,0,0,The Real Miyagi,en +272693,The DUFF,2015-02-20,100.0,http://www.duffmovie.com/,,tt1666801,"You either know one, you have one, or you are one.","Bianca's universe turns upside down when she learns that her high school refers to her as a ‘DUFF' (Designated Ugly Fat Friend). Hoping to erase that label, she enlists the help of a charming jock and her favorite teacher. Together they'll face the school's mean girl and remind everyone that we are all someone's DUFF… and that's totally fine.",8500000,43528634,The DUFF,en +321303,1944,2015-02-20,100.0,https://www.facebook.com/Taska.Film.1944,,tt3213684,The first casualty of war is truth,"The events of the war in 1944, from the Blue Hills to Sõrve Peninsula. Shown through the eyes of Estonian soldiers who had to pick sides and fight against fellow brothers. Choices have to be made, not only by the soldiers, but also by their loved ones.",2000000,0,1944,et +319924,Russell Madness,2015-02-21,92.0,,,tt4257950,The strongest tag team is family.,"Russell, an undersized but big-hearted terrier, dreams of having a family of his own. After running away from his pet store, Russell gets taken in by The Ferraros, who discover their new pet pooch has incredible wrestling skills.",0,0,Russell Madness,en +322518,The Intruders,2015-02-24,92.0,,,tt3496372,You can't lock out what lives inside.,"After the traumatic loss of her mother, a teenaged girl tries to uncover the dark secrets behind her new home, in spite of her father's disbelief.",0,0,The Intruders,en +319396,Zombieworld,2015-02-24,100.0,http://www.zombieworldmovie.com,,tt3717324,The end is HERE!,"There is nowhere to hide...nowhere to run...the Zombie Apocalypse has come, and our world now belongs to the dead! From Ireland, Canada, Australia, Europe and all over the U.S., the bone-chilling news reports tell the same gruesome tale - walking corpses terrorize and devour the living. Only a few desperate humans find the courage to stand and fight for their last chance at survival. But the hordes of undead keep coming, and there's only one thing on the menu - us.",0,0,Zombieworld,en +327225,Crazy Beautiful You,2015-02-25,115.0,,,tt4377918,,A bad girl and a province boy found love in the state of being broken and in the process of healing.,0,0,Crazy Beautiful You,en +325039,Lady of Csejte,2015-02-26,110.0,,,tt2947556,,"Based on a story of Countess Bathory, a serial killer in 16th century Transylvania who supposedly killed hundreds of children.",2000000,0,Кровавая леди Батори,ru +244316,Into the Grizzly Maze,2015-02-27,94.0,,,tt1694021,Hunt or be hunted.,Two estranged brothers reunite at their childhood home in the Alaskan wild. They set out on a two-day hike and are stalked by an unrelenting grizzly bear.,10000000,0,Into the Grizzly Maze,en +322443,The Timber,2015-02-27,81.0,,,tt2215673,"Fortunes will be made, lives will be lost.","In the wild west, two brothers embark on a journey to collect a bounty in a desperate attempt to save their home: but what they find along the way is more than they bargained for.",0,0,The Timber,de +334299,Caprice,2015-02-27,100.0,,,tt3612984,,An average guy meets an actress who is more beautiful than he could ever imagine. But then a pesky girl materializes to make his life a living hell. His perfect girlfriend now thinks that he is involved with this Caprice.,0,0,Caprice,fr +346443,Disco Polo,2015-02-27,107.0,http://www.filmweb.pl/film/Disco+Polo-2015-716498,,tt2973854,disco polo,Young wannabe musicians from the province decide to write hit song and gain the top of the charts in order to become legends of disco polo,0,0,Disco Polo,pl +336885,Returning Home,2015-02-27,75.0,,,tt3831000,,"Two young brothers are forced to track down their absent father, having recently returned from service in Afghanistan, after he disappears during a reindeer hunt in the mountains.",0,0,Å vende tilbake,no +329286,Trevor Moore: High In Church,2015-03-02,60.0,http://trevormoore.comedydirect.com/,,tt4519914,,"Trevor Moore recorded his first solo one-hour special, High In Church, at The Gramercy Theatre in New York. Accompanied by a live band, dancing girls and music videos, Trevor performs an hour of brand-new sketches and songs spanning all musical genres.",0,0,Trevor Moore: High In Church,en +264729,Off Course,2015-03-03,104.0,,,tt3500544,Based on Hundreds of True Stories (Unfortunately),"Two young Spanish men, with a university education, are tired of unemployment and decide to move to Germany. But soon they will find out that finding a better living is not as easy as they expected.",0,0,Perdiendo el Norte,es +326874,L'Art de la fugue,2015-03-04,98.0,,,tt2094872,,,0,0,L'Art de la fugue,fr +323555,That Gal...Who Was in That Thing: That Guy 2,2015-03-07,0.0,,,tt4406298,You know her face. You know her work. You don't know her name.,That Gal...Who was in That Thing: That Guy 2,0,0,That Gal...Who Was in That Thing: That Guy 2,en +326359,Frozen Fever,2015-03-09,8.0,,386382,tt4007502,,"On Anna's birthday, Elsa and Kristoff are determined to give her the best celebration ever, but Elsa's icy powers may put more than just the party at risk.",0,0,Frozen Fever,en +289723,An Act of War,2015-03-10,99.0,,,tt1861445,,"Battling insomnia and undiagnosed PTSD, a war veteran works nights as a projectionist at a decrepit theater. While struggling to adapt to civilian life, he soon finds himself tangled in an inescapable web of seduction, addiction, and violence.",0,0,An Act of War,en +330011,The Millennials,2015-03-10,82.0,,,tt3518096,the lost generation tries to find their way,"With their university graduation nearing, a group of young students grapple with the inevitable fact that they must now become young “adults”.",0,0,The Millennials,en +362180,Don't Grow Up,2015-03-11,81.0,,,tt3557406,or you will die!,The story about a group of youths who can't face the thought of growing up because anyone who does becomes a rampaging zombie.,0,0,Don't Grow Up,en +228968,Kidnapping Mr. Heineken,2015-03-12,95.0,http://kidnappingmrheinekenmovie.com/,,tt2917388,It was the perfect crime until they got away with it.,"The true story of the kidnapping of Freddy Heineken, the grandson of the founder of the Heineken brewery, and his driver. They were released after a ransom of 35 million Dutch guilders was paid.",0,2633527,Kidnapping Mr. Heineken,en +330431,NH10,2015-03-13,115.0,,,tt3742284,,"A woman, stacked against all odds, manages to not just stick it out but indeed give it back.",0,0,NH10,hi +325365,Dawg Fight,2015-03-13,109.0,http://www.dawg-fight.com,,tt1421361,,"In a crime-plagued neighborhood near Miami, brutal, bare-knuckled backyard fights give young men a chance to earn money -- and self-respect.",0,0,Dawg Fight,en +367492,Bana Adını Sor,2015-03-13,0.0,,,tt4437212,,,0,0,Bana Adını Sor,tr +324263,Breaking a Monster,2015-03-14,92.0,,,tt4276112,,"Breaking a Monster begins as the band members of Unlocking The Truth are all in 7th grade, spending their weekends playing metal music in Times Square - often to substantial crowds. They take on a 70-year-old industry veteran manager. With his guidance they are soon on their way to a $1.8M record deal with Sony Music. Anything feels possible, and the eyes of the world are upon them. The boys are coming of age, not only as they become professional musicians, but also as they transcend childhood and step into adulthood. The sudden breakout of any band, let alone one of pre-teens, is an extremely narrow and specific period in time - Breaking a Monster is the story of this rapid transformation",0,0,Breaking a Monster,en +323552,Jay Mohr: Happy. And A Lot.,2015-03-14,67.0,,,tt4552112,,"Stand up comedian Jay Mohr reveals everything from the intimate - marriage, raising a child and more - to the extraordinary in this hilarious comedy special.",0,0,Jay Mohr: Happy. And A Lot.,en +320589,Mavis!,2015-03-15,80.0,,,tt4224328,,"A look at the life and music of legendary singer and civil rights activist, Mavis Staples.",0,0,Mavis!,en +319910,Broken Horses,2015-03-15,101.0,,,tt2503954,,"The bonds of brotherhood, the laws of loyalty, and the futility of violence in the shadows of the US Mexico border gang wars.",0,0,Broken Horses,en +323370,The Diabolical,2015-03-16,86.0,,,tt3603808,Evil is timeless.,"When a single mother and her two young children are tormented by an increasingly strange and intense presence in their quiet suburban home, she turns to her scientist boyfriend to take on the violent forces that paranormal experts are too frightened to face.",0,0,The Diabolical,en +323665,Ava's Possessions,2015-03-16,89.0,http://avaspossessions.com/,,tt3727982,Demons are a girl's best friend,"Ava is recovering from demonic possession. With no memory of the past month, she must attend a Spirit Possessions Anonymous support group to figure out what happened. Ava's life was hijacked by a demon, now it's time to get it back.",0,0,Ava's Possessions,en +324150,Uncle John,2015-03-16,114.0,http://www.unclejohnfilm.com/,,tt3219194,,Uncle John revolves around the struggle to keep a mysterious disappearance unsolved,0,0,Uncle John,en +323679,Manson Family Vacation,2015-03-16,85.0,,,tt3275216,Nick is a devoted family man. His brother is devoted to The Family.,"The story of two brothers: one who’s devoted to his family, the other who’s obsessed with the Manson Family.",0,0,Manson Family Vacation,en +329712,The Measure of a Man,2015-03-16,93.0,,,tt4428814,,"At the age of 51 and after 20 months on unemployment, Thierry starts a new job that soon brings him face to face with a moral dilemma. How much is he willing to accept to keep his job?",0,106498,La Loi du marché,fr +279690,He Never Died,2015-03-17,99.0,,,tt2386404,Bullets. Blood. Bingo.,Jack is a solitary man with a mysterious past. His strange habits will soon become stranger when his past catches up with him.,0,0,He Never Died,en +324251,A Space Program,2015-03-18,72.0,,,tt4630158,,The artist Tom Sachs and his team of bricoleurs build a handmade space program and send two female astronauts to Mars,0,0,A Space Program,en +256924,Danny Collins,2015-03-19,107.0,,,tt1772288,A letter from John Lennon changed his life,An ageing rock star decides to change his life when he discovers a 40-year-old letter written to him by John Lennon.,10000000,10835752,Danny Collins,en +335819,B/W,2015-03-19,92.0,,,tt4312536,,Nurick and Yaroslav are trying to robe a criminal boss. Unfortunately Nurick dies but returns to the world with a mission: to be the guardian angel of Yaroslav.,0,358590,Ч/Б,ru +330171,Latin Lover,2015-03-19,104.0,,,tt3735602,,"The five daughters of a famous actor, all from different mothers and different nationalities, get together on the 10th anniversary of his death for a celebration of his career.",0,0,Latin Lover,it +329206,Lost and Love,2015-03-20,112.0,,,tt4440036,,"After his young son goes missing, Lei (Andy Lau) begins a 14-year quest to find him.",0,0,失孤,zh +320736,Virgin Mountain,2015-03-20,90.0,,,tt2611652,,"Like a young bird yet to find the courage to lift its wings, Fúsi (43) lives alone with his mother, where they've always lived.",0,0,Fúsi,is +332788,Husband Factor,2015-03-20,108.0,,474012,tt4450706,,A traditional Turkish woman tries to find love and is forced by her family members to get married.,0,0,Kocan Kadar Konuş,tr +300690,Lily & Kat,2015-03-20,89.0,http://lilyandkat.com/,,tt2523756,Friends For(n)ever.,"Set in New York City, the film follows a naive fashion school graduate named Lily who finds her world turned upside down when her reckless best friend Kat announces she’s moving away to London in a matter of days. At a Lower East Side art opening the next night, they meet the enigmatic rising artist Henri, who Lily quickly takes a liking for. With less than seven days left and a new attractor between them, Lily and Kat will find their “unbreakable” friendship put to the test.",0,0,Lily & Kat,en +325892,Hunterrr,2015-03-20,141.0,,,tt4333674,,Hunterrrrr: 1. Someone that is always looking to score with women. 2. Someone that is always alert to the presence of women around him.,0,0,Hunterrr,hi +331485,Streit's: Matzo and the American Dream,2015-03-20,83.0,,,tt4230010,,"On New York's rapidly gentrifying Lower East Side sits the Streit's Matzo factory. When its doors opened in 1925, it sat at the heart of the nation's largest Jewish immigrant community.",0,0,Streit's: Matzo and the American Dream,en +156981,Old 37,2015-03-21,84.0,,,tt1600429,,Two brothers intercept 911 calls in their Father's beat up old Ambulance to exact revenge on a group of careless teen drivers.,0,0,Old 37,en +332280,Shark Killer,2015-03-23,0.0,,,tt4025594,,"The services of shark killer have been engaged by his brother Jake, the head of a West Coast crime ring. The gig: kill the black-finned shark that swallowed a valuable diamond during a gang transaction.",0,0,Shark Killer,en +299715,All About Them,2015-03-25,86.0,,,tt3817962,,"Charlotte is cheating on Micha with Mélodie. Not suspecting a thing, yet feeling neglected, Micha in turn cheats on Charlotte. But also with Mélodie. For Mélodie, things are topsy-turvy. She lies to both of them. She is privy to each of their lies. And is in love with both of them at the same time.",0,0,"À trois, on y va",fr +332759,Einstein,2015-03-26,,,,tt4114478,,,0,0,Einstein,de +332512,Ghost,2015-03-26,90.0,,,tt4559932,,An aircraft designer becomes a ghost after a sudden death. Now he needs to engage a help of seven-grader in order to finish all his unaccomplished tasks.,0,3300000,Призрак,ru +325205,Other Girls,2015-03-27,83.0,,,tt3720382,,"Other Girls tells the story of four young girls nearing graduation, all of them struggling with various issues.",0,0,Toiset tytöt,fi +332827,Ennum Eppozhum,2015-03-27,147.0,,,tt4553712,,"Vineeth, a senior reporter, tries to interview Deepa, a junior family court lawyer for the new edition of a magazine. However, the interview seems impossible due to Deepa's hectic schedule.",0,0,എന്നും എപ്പോഴും,ml +332936,Any Day,2015-03-27,100.0,,,tt3266948,Never give up.,"Following his release from prison, an ex-fighter meets a woman who helps him put his life back together.",0,0,Any Day,en +310568,The Summer of Sangaile,2015-03-29,88.0,,,tt2994832,,"Seventeen-year-old Sangaile is fascinated by stunt planes. She meets a girl her age at the summer aeronautical show, nearby her parents' lakeside villa. Sangaile allows Auste to discover her most intimate secret and in the process finds in her teenage love, the only person that truly encourages her to fly.",0,0,Sangailės vasara,lt +333103,Comedy Central Roast of Justin Bieber,2015-03-30,85.0,http://www.cc.com/shows/roast-of-justin-bieber,,tt4504452,,"Several roasters, and the master himself Kevin Hart, make fun of Justin Bieber.",0,0,Comedy Central Roast of Justin Bieber,en +288977,The Dovekeepers,2015-03-31,180.0,,,tt3656138,,This four-hour miniseries is based on Alice Hoffman’s acclaimed historical novel about four extraordinary women whose lives intersect in a fight for survival at the siege of Masada.,0,0,The Dovekeepers,en +303867,World of Tomorrow,2015-03-31,17.0,http://bitterfilms.com,,tt4171032,,A little girl is taken on a mind-bending tour of her distant future.,0,0,World of Tomorrow,en +358353,Bound & Babysitting,2015-04-01,85.0,http://pixltv.com/bound-babysitting/,,tt4364866,,"Forced to baby-sit with her college nemesis, a young woman starts to see the man in a new light.",1600000,0,Bound & Babysitting,en +168259,Furious 7,2015-04-01,137.0,http://www.furious7.com/,9485,tt2820852,Vengeance Hits Home,Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.,190000000,1506249360,Furious 7,en +327237,"Blood, Sweat and Tears",2015-04-02,111.0,,,tt3814486,The movie about Andre Hazes,"Bloed, Zweet en Tranen (Blood, Sweat and Tears) is a story about the life of Andre Hazes, a Dutch populair singer. This movie shows three crucial phases in the life of Hazes: his youth (60's), his breakthrough (80's) and the last year of his life (early '00).",0,0,"Bloed, Zweet en Tranen",nl +333884,La scelta,2015-04-02,0.0,,,tt2580658,,,0,0,La scelta,it +328032,Mara and the Firebringer,2015-04-02,90.0,,,tt3061534,,"Mara Lorbeer, a fifteen year old girl, finds out that she has to save the world because the Norse god Loki is threatening to break free of his chains.",0,0,Mara und der Feuerbringer,de +246127,Every Thing Will Be Fine,2015-04-02,118.0,http://neueroadmovies.com/film/every-thing-will-be-fine/,,tt1707380,A moment. A tragic accident. And nothing will ever be the same again.,"One day, driving aimlessly around the outskirts of town after a trivial domestic quarrel, a writer named Tomas accidentally hits and kills a child. Will he be able to move on?",0,8034,Every Thing Will Be Fine,en +335874,Childless,2015-04-03,90.0,,,tt0867270,,"Katherine is a typical teenager. Today's her funeral. The four adults in her life have a lot on their mind - and it's not all about Katherine either. With a frankness that's strikingly disarming as well as frequently self-serving, the grown-ups struggle with being... well... grown-up.",0,0,Childless,en +335872,Killer Crush,2015-04-04,85.0,http://www.mylifetime.com/movies/killer-crush,,tt3922474,,Paige's crush on her professor takes a twisted turn when she is hired to be the caregiver for his wife who has Multiple Sclerosis.,0,0,Killer Crush,en +329289,Always Watching: A Marble Hornets Story,2015-04-07,91.0,,,tt2737926,You shouldn't have looked.,"A group of student film makers are creating ""Project Marble Hornets"" when the production is interrupted by a series of paranormal events in this tense and shocking horror.",0,0,Always Watching: A Marble Hornets Story,en +167810,Lost River,2015-04-08,95.0,,,tt2366608,Dive deep into the underwater town,"A single mother is swept into a dark underworld, while her teenage son discovers a road that leads him to a secret underwater town.",2000000,45431,Lost River,en +228205,The Longest Ride,2015-04-09,128.0,,,tt2726560,Two couples. Two love stories. One epic tale.,The lives of a young couple intertwine with a much older man as he reflects back on a lost love while he's trapped in an automobile crash.,34000000,63013281,The Longest Ride,en +335031,¡Asu Mare! 2,2015-04-09,0.0,,,tt4528386,,,0,0,¡Asu Mare! 2,es +335051,God Willing,2015-04-09,87.0,,,tt4643844,,"The son of an atheist, authoritarian father, believed to be liberal, wants to become a priest.",0,0,Se Dio vuole,it +237756,Kill Me Three Times,2015-04-10,90.0,,,tt2393845,Once is never enough.,"While on a seemingly routine job, a jaded hit man discovers that he's not the only one with his target in the crosshairs.",0,0,Kill Me Three Times,en +327383,Happy 140,2015-04-10,0.0,,,tt3841866,,,0,0,Felices 140,es +206197,The Sisterhood of Night,2015-04-10,104.0,http://www.thesisterhoodofnight-movie.com/,,tt1015471,The Salem Witch Trials remixed.,"When a teenage girl says she's the victim of a secret network called The Sisterhood of Night, a quiet suburban town becomes the backdrop for a modern-day Salem witch trial.",0,0,The Sisterhood of Night,en +356900,Divine Access,2015-04-11,113.0,,,tt3651804,Believe what you want to believe.,"Jack Harriman becomes a spiritual celebrity after debunking Reverend Guy Roy on a public-access TV show. While on the road speaking his brand of truth, forces natural and supernatural lead him to question whether he has a deeper calling.",0,0,Divine Access,en +334890,The Schoolboy,2015-04-11,20.0,,,tt3977730,How can the bird that is born for joy sit in a cage and sing?,"The Schoolboy tells the story of Claire Adams, a former teacher and her struggle with survivor's guilt. In the aftermath of a school shooting, she wants return to her old job, however the memories of her past keep haunting her.",0,0,The Schoolboy,en +258363,Desierto,2015-04-12,99.0,http://stxmovies.com/desierto/,,tt3147312,,"A group of Mexican emigrants attempts to cross the Mexican-US border. What begins as a hopeful journey becomes a harrowing, bloody and primal fight for survival when a deranged, rifle-toting vigilante and his loyal Belgian Malinois dog chase the group of unarmed men and women through the treacherous borderland. In the harsh, unforgiving desert terrain, the odds are stacked firmly against them as they discover there’s nowhere to hide from the unrelenting, merciless killer.",0,0,Desierto,en +321528,Batman vs. Robin,2015-04-14,72.0,http://www.warnerbros.com/batman-vs-robin,334996,tt4324274,The showdown that will define a destiny,"Damian Wayne is having a hard time coping with his father's ""no killing"" rule. Meanwhile, Gotham is going through hell with threats such as the insane Dollmaker, and the secretive Court of Owls.",0,0,Batman vs. Robin,en +299780,Dough,2015-04-14,97.0,,,tt1517471,It's not just the bread that's getting baked.,An old Jewish baker struggles to keep his business afloat until his young Muslim apprentice accidentally drops cannabis in the dough and sends sales sky high.,0,0,Dough,en +277558,Final Girl,2015-04-14,90.0,,,tt2124787,"She didn't start it, but she'll finish it.","Veronica, the new girl in town, is lured into the woods by a group of senior boys looking to make her a victim. But the boys don't know that Veronica's been trained to handle herself in surprisingly lethal ways.",0,0,Final Girl,en +329724,In Harmony,2015-04-15,88.0,,,tt4228816,,"After a serious accident on a film shoot, Marc, an equestrian, loses all hope to mount back on. His insurance company instructs Florence to handle his case. This film is the story of their meeting.",0,0,En équilibre,fr +315872,Mia Madre,2015-04-16,106.0,,,tt3013610,,"Margherita, a director in the middle of an existential crisis, has to deal with the inevitable and still unacceptable loss of her mother.",0,0,Mia madre,it +381054,Clown Service,2015-04-16,14.0,,,tt4109454,,"A heartbroken woman, desperate for a brighter mood, enlists the services of a traveling party clown.",0,0,Clown Service,en +293863,The Age of Adaline,2015-04-16,112.0,http://theageofadalinemovie.com,,tt1655441,Love is timeless.,"After 29-year-old Adaline recovers from a nearly lethal accident, she inexplicably stops growing older. As the years stretch on and on, Adaline keeps her secret to herself until she meets a man who changes her life.",25000000,65663276,The Age of Adaline,en +223485,Slow West,2015-04-16,84.0,,,tt3205376,Wanted Dead or Dead,"In the Old West, a 17-year-old Scottish boy teams up with a mysterious gunman to find the woman with whom he is infatuated.",0,229094,Slow West,en +245706,True Story,2015-04-17,100.0,,,tt2273657,Some mysteries are beyond belief.,"A drama centered around the relationship between journalist Michael Finkel and Christian Longo, an FBI Most Wanted List murderer who for years lived outside the U.S. under Finkel's name.",0,4719695,True Story,en +336149,Arthur & Merlin,2015-04-17,103.0,http://arthurandmerlin.co.uk,,tt4065340,The Legend Begins,"In dark ages Britain, a time of magic and legend, a powerful druid is bent on destroying the Celtic people. Arthur, a banished warrior, and Merlin, a hermit wizard, embark on a heroic quest to stop the druid and save their people, before the Celts are lost forever and become a myth themselves.",3000000,0,Arthur & Merlin,en +329135,O Kadhal Kanmani,2015-04-17,138.0,,,tt4271820,,Adhi and Tara are in a live-in relationship and but they are both unwilling to get married. How do they realize that marriage is just a natural progression of their relationship?,940000,5100000,ஓ காதல் கண்மணி,ta +296025,Safelight,2015-04-17,84.0,,,tt2190467,,A teenage boy and girl discover a renewed sense of possibility as they go on a road trip to photograph lighthouses along the California coast.,0,0,Safelight,en +332286,1915,2015-04-17,82.0,http://www.1915themovie.com/,,tt3781762,100 years after the Armenian genocide.,"Exactly 100 years after the Armenian Genocide, a theatre director stages a play to bring the ghosts of the past back to life.",0,0,1915,en +332746,Thank You for Playing,2015-04-17,80.0,,,tt4190906,,"For the past two years, Ryan and Amy Green have been working on That Dragon, Cancer, a videogame about their son Joel's fight against that disease. Following the family through the creation of the game and the day-to-day realities of Joel’s treatment, David Osit and Malika Zouhali-Worrall create a moving testament to the joy and heartbreak of raising a terminally ill child.",0,0,Thank You for Playing,en +337758,Honey Night,2015-04-17,90.0,http://honeynight.themovie.mk/,,tt3340908,"political thriller, Macedonia",The story of this political thriller takes place in the 90s and follows one night of the life of the Deputy Minister Nikola and his wife Ana. Nikola Ristanovski and Verica Nedeska star in the main roles of the couple.,0,0,Медена ноќ,mk +303857,Dragon Ball Z: Resurrection 'F',2015-04-18,93.0,http://www.dragonball2015.com/,425164,tt3819668,,"One peaceful day on Earth, two remnants of Frieza's army named Sorbet and Tagoma arrive searching for the Dragon Balls with the aim of reviving Frieza. They succeed, and Frieza subsequently seeks revenge on the Saiyans.",5000000,61768190,ドラゴンボールZ 復活の「F」,ja +332741,Palio,2015-04-18,92.0,,,tt3669520,,"Taking bribes and making deals is as essential as being a good rider in the Palio, the world’s oldest horse race. Giovanni, a young jockey, is up to the challenge when he faces his former mentor on the track. What ensues is a thrilling battle with the intoxicating drama that is at the center of Italian tradition.",0,0,Palio,en +237584,Mojave,2015-04-18,93.0,,,tt2322517,,"A suicidal artist goes into the desert, where he finds his doppelgänger, a homicidal drifter.",0,0,Mojave,en +365447,Body Team 12,2015-04-19,13.0,http://ryot.org/bodyteam12/,,tt4430002,,Body Team 12 is tasked with collecting the dead at the height of the Ebola outbreak. These body collectors have arguably the most dangerous and gruesome job in the world. Yet despite the strain they emerge as heroes while the film explores their philosophy and strength.,0,0,Body Team 12,en +331737,All Eyes And Ears,2015-04-20,0.0,,,tt2505376,,Directed by Vanessa Hope,0,0,All Eyes And Ears,en +414977,Sam,2015-04-21,100.0,https://www.facebook.com/FeatureFilmSAM/,,tt1309379,How do you get even with a womanizer? Make him a woman!,"An alpha New York City male is magically transformed into a beautiful girl, falls in love, and learns what it means to be a woman.",0,0,Sam,en +99861,Avengers: Age of Ultron,2015-04-22,141.0,http://marvel.com/movies/movie/193/avengers_age_of_ultron,86311,tt2395427,A New Age Has Come.,"When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.",280000000,1405403694,Avengers: Age of Ultron,en +337101,El bosque de Karadima,2015-04-23,98.0,,,tt4341806,,,0,0,El bosque de Karadima,es +337014,I bambini sanno,2015-04-23,,,,tt4522716,,,0,0,I bambini sanno,it +256962,Little Boy,2015-04-23,106.0,http://www.littleboymovie.com/,,tt1810683,Believe the impossible.,An eight-year-old boy is willing to do whatever it takes to end World War II so he can bring his father home. The story reveals the indescribable love a father has for his little boy and the love a son has for his father.,20000000,6485961,Little Boy,en +321497,The Debt,2015-04-24,99.0,,,tt2698966,,"Set against the backdrop of an international finance deal in New York and Peru, Oliver's Deal is an intense political drama which explores how far people will go to get what they want.",0,0,Oliver's Deal,en +331161,See You In Valhalla,2015-04-24,82.0,,,tt3084028,You don't get to choose your family,"After the bizarre death of her brother, Johana Burwood must return home after four years, to face her strange siblings, her out of touch father and her very touchy past.",0,0,See You In Valhalla,en +359413,Aurélie Laflamme: Les pieds sur terre,2015-04-24,0.0,,363918,tt4653486,,,0,0,Aurélie Laflamme: Les pieds sur terre,fr +273610,Helicopter Mom,2015-04-24,81.0,http://www.helicoptermommovie.com/,,tt3094236,Ruining his life... One nag at a time.,"Maggie Cooper thinks it would be really cool if her son Lloyd were gay. So cool, in fact, that she outs him to the entire school.",0,0,Helicopter Mom,en +340881,About Scout,2015-04-25,92.0,http://www.scoutthemovie.com,,tt3252998,You can't choose your family.,A rebellious Goth girl embarks on a road trip across Texas with a suicidal young man in an effort to find her little sister.,0,0,About Scout,en +282070,Parasyte: Part 2,2015-04-25,117.0,http://www.kiseiju.com/,385386,tt3345474,,"Alien pods come to Earth and, naturally, start taking over Human Hosts. One such pod only manages to take over one human's, Shin Izumi, right arm. Together they grow and co-exist, all the while the other aliens are making meals of other humans; Shin feels he must put a stop to it all, but his alien, Migi, doesn't see why.",0,0,寄生獣 完結編,ja +315841,Ryuzo and the Seven Henchmen,2015-04-25,111.0,,,tt4176776,Are You old men?,"Ryuzo (Tatsuya Fuji) and his 7 former henchmen are all retired yakuza, but they now live as regular old men. One day, Ryuzo becomes the victim of a phishing fraud. He calls his 7 men together to reform their society.",0,0,龍三と七人の子分たち,ja +345519,The Day the '60s Died,2015-04-28,56.0,,,tt4660952,"During an anti-war protest on May 4, 1970, four students are shot and killed at Kent State in Ohio.","The Day the '60s Died chronicles May 1970, the month in which four students were shot dead at Kent State. The mayhem that followed has been called the most divisive moment in American history since the Civil War. From college campuses, to the jungles of Cambodia, to the Nixon White House, the film takes us back into that turbulent spring 45 years ago.",0,0,The Day the '60s Died,en +338079,Basta Poco,2015-04-29,,,,tt4644144,,,0,0,Basta Poco,it +350762,Mick Foley: Cheap Pops,2015-04-29,58.0,,,tt4328992,,Mick Foley shares humorous tales full of wit and wisdom from the WWE hall of Famer's storied career.,0,0,Mick Foley: Cheap Pops,en +338063,Drag Becomes Him,2015-04-29,82.0,http://www.dragbecomeshim.com/,,tt3593124,,Drag Becomes Him provides an intimate glimpse inside the life of internationally acclaimed drag performer Jinkx Monsoon.,0,0,Drag Becomes Him,en +338312,Argo 2,2015-04-30,0.0,,338313,tt3117504,,,0,0,Argo 2,hu +334132,You Are My Sunshine,2015-04-30,107.0,http://www.weibo.com/gaojuai,,tt4657764,,A film adaptation of Gu Man's popular novel of two college sweethearts who meet again after years of separation.,0,0,何以笙箫默,zh +324572,Escape,2015-04-30,96.0,http://www.ontsnappingdefilm.nl/,,tt3459906,,A Dutch woman escapes her family life in search for happiness in the Portuguese Algarve.,0,0,De ontsnapping,nl +336167,Private Number,2015-05-01,95.0,http://www.privatenumbermovie.com/,,tt3103412,Remember Me?,"A series of cryptic phone messages and visions haunt a writer while he struggles to finish a novel. As they increase in intensity, he loses his grip on reality, eventually obsessing over an old mystery that will lead to horrific revelations about both him and his loyal wife.",0,0,Private Number,en +337876,Gabbar Is Back,2015-05-01,128.0,,,tt2424988,,A vigilante network taking out corrupt officials draws the notice of the authorities.,11000000,41000000,Gabbar Is Back,hi +336845,Cleveland Abduction,2015-05-02,88.0,,,tt4262142,Based on a true story.,"A single mother becomes Ariel Castro's first kidnapping victim, and finds herself trapped in his home with two other women for 11 years.",0,0,Cleveland Abduction,en +337549,The C-Word,2015-05-03,90.0,,,tt3568218,,"The C Word is an adaptation of Lisa Lynch's inspiring and candid book, based on her blog, about her battle with cancer.",0,0,The C-Word,en +336850,The Encounter,2015-05-05,85.0,,,tt3746700,"When Night Falls, Fear The Light.","When Collin Bastrow is found in the forest, alone and afraid, he has a shocking story to tell. As he struggles to recount the events of the previous night his memories return in a series of horrific flashes of what became of his friends and fiancée. What started as a simple camping trip in the mountains of Northern Arizona quickly descended into an amazing and terrifying story that is truly out of this world. As the sole survivor of this deadly close encounter Collin must try and explain the unexplainable",0,0,The Encounter,en +338767,From The Depths of My Heart,2015-05-08,95.0,,,tt4059696,,Four friends are fatefully thrown into a veritable hell in this ambient and sometimes truly poetic Swedish genre drama.,0,0,Från djupet av mitt hjärta,sv +229304,Han Gong-ju,2015-05-08,112.0,,,tt3265462,,"After transferring to a new school, a teenage girl finds her troubled past exposed when she innocently signs up for a singing club.",0,0,한공주,ko +339327,Industrial Soundtrack for the Urban Decay,2015-05-08,52.0,http://www.industrialsoundtrack.com/,,tt3606298,,"Industrial Soundtrack For The Urban Decay traces the origins of Industrial music, taking you on a journey through the crumbling industrial cities of Europe to America's thriving avant-garde scene. Featuring Throbbing Gristle, Cabaret Voltaire, NON, SPK, Test Dept, Clock DVA, Re/Search - V Vale, Z'EV, Click Click, Sordide Sentimental, Hula, The Klinik, Ant Zen, Orphx, In The Nursery and Prima Linea.",0,0,Industrial Soundtrack for the Urban Decay,en +399798,Brad Williams: Fun Size,2015-05-08,59.0,,,tt4552412,,Comedian Brad Williams' standup topics include his experiences as a little person and how to please your woman in bed.,0,0,Brad Williams: Fun Size,en +268920,Hot Pursuit,2015-05-08,87.0,,,tt2967224,Armed and Sort-of Dangerous.,An uptight by-the-book cop must protect the widow of a drug boss from crooked cops and gunmen.,35000000,51680201,Hot Pursuit,en +340053,Orson Welles: Shadows & Light,2015-05-09,56.0,,,tt4670972,,"Giant of cinema, the embodiment of creation, Orson Welles is the man who reinvents the film language at 24-years old. Who is hidding behind this impressive figure? This movie is a journey towards the man behind the legend. It drags us into the labyrinth with multiple mirrors that Welles erases and recreates at the mercy of his imagination.",0,0,"Orson Welles, autopsie d'une légende",fr +323673,Just the Way You Are,2015-05-09,0.0,,,tt4380580,,"When a professional matchmaker’s own marriage loses its spark, she seeks to recharge the relationship by asking her husband out on a blind date. As Mother’s Day approaches and their romance starts to rekindle, she wonders if her career-driven husband will finally learn to put his family’s needs before his job.",0,0,Just the Way You Are,en +352694,Poison Berry in my Brain,2015-05-09,121.0,,,tt4063438,,"Ichiko is a 30-year-old unemployed woman. She meets Ryoichi at a drinking establishment. Even though he is a lot younger than her, she can't forget him. Meanwhile, Ichiko has 5 different characters in her brain that governs her actions. The 5 characters are Yoshida, Ishibashi, Ikeda, Hatoko and Kishi. These 5 character then have a fierce meeting. Yoshida presides over the meeting as the chairman. Ishibashi is the optimist. Ikeda is the pessimist. Hatoko is the character that lives in the moment and Kishi thinks about the past.",0,0,脳内ポイズンベリー,ja +76341,Mad Max: Fury Road,2015-05-13,120.0,http://www.madmaxmovie.com/,8945,tt1392190,What a Lovely Day.,"An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order. There's Max, a man of action and a man of few words, who seeks peace of mind following the loss of his wife and child in the aftermath of the chaos. And Furiosa, a woman of action and a woman who believes her path to survival may be achieved if she can make it across the desert back to her childhood homeland.",150000000,378858340,Mad Max: Fury Road,en +329819,Standing Tall,2015-05-13,119.0,,,tt3791302,,The film tells the story of Malony and his education as he grows from a six-year-old into an 18-year-old. A minors’ judge and a caseworker work tirelessly to try to save the young offender.,5000000,26144,La Tête haute,fr +300155,A Royal Night Out,2015-05-14,97.0,,,tt1837562,,"The re-imagining of VE Day in 1945, when Princess Elizabeth and her sister, Margaret were allowed out from Buckingham Palace for the night to join in the celebrations, and encounter romance and danger.",0,228136,A Royal Night Out,en +328692,Ventoux,2015-05-14,0.0,,,tt4075520,,A group of friends reunite after 30 years to climb the Mont Ventoux again. Memories to a happy youth but also new discoveries from the past. One person is not present at the reunion. Why is that? What happened?,0,0,Ventoux,nl +340119,Nomi e cognomi,2015-05-14,,,,tt3341620,,,0,0,Nomi e cognomi,it +342163,Sin hijos,2015-05-14,0.0,,,tt4400028,,,0,0,Sin hijos,es +336666,Sleeping Giant,2015-05-14,89.0,http://www.sleepinggiantfilm.com/,,tt3778086,,A coming-of-age tale that turns on three teenagers who are having a vacation by a lakeside.,0,0,Sleeping Giant,en +364810,Triple Troubles,2015-05-15,103.0,https://www.facebook.com/3conang,,tt4381242,,"The city girls include Royal American ( Kathy Uyen ) , Tuyet Dung ( Thuy Nga ) and Ngoc Vy ( Hoang Oanh ) bumped into each other while sitting together boat. Each of her own purpose for the trip , but they decided to make friends to enjoy the happy moments in the isle . After a night of partying ""drop door "" , the three wake up in the boat with the ragged shape and clean forget what happened to me the day before. Trip down "" what has happened "" about their group's fall resulted in itinerary are gangsters chase group .",0,0,Bộ Ba Rắc Rối,vi +316654,Bombay Velvet,2015-05-15,151.0,,,tt2979920,,"An ordinary man, who goes against all odds to forge his own destiny and become a star in the glittering sky of 'Bombay,' thriving on jazz and violence.",18000000,1500000,बॉम्बे वेलवेट,hi +339944,Secret Society of Souptown,2015-05-15,105.0,http://www.salaselts.ee/,,tt3949936,,"""Secret Society of Souptown"" is an adventurous family movie that takes place in Souptown, a district in the summery city of Tartu. Four children - Mari, Sadu, Olav and Anton form a secret society to play hide-and seek games invented by Mari's grandfather, a professor at the university. When the city is attacked by a mysterious poison which turns adults into children our gang embarks on a quest for the antidote. Their path is paved with challenges bigger than any other they have seen so far. It is an adventure you cannot even imagine... Will the children find the antidote in time to save their loved ones.",1,0,Supilinna salaselts,et +340684,Those People,2015-05-16,89.0,http://www.thosepeoplefilm.com/,,tt3899516,,"On Manhattan's gilded Upper East Side, a young gay painter is torn between an obsession with his infamous best friend and a promising new romance with an older foreign pianist.",0,0,Those People,en +344255,The Wrong Girl,2015-05-16,0.0,http://www.mylifetime.com/movies/the-wrong-girl#,,tt3661196,A budding friendship with a new student takes a sinister turn when the girl starts to disrupt the lives of her family.,"Sophia is the perfect 17-year-old girl. She studies hard, stays out of trouble, and is a promising pianist. The only problem is that she’s always been quiet and keeps to herself, so when she strikes up a friendship with Grace, the new girl in school, her parents are happy for her. Unfortunately it's not long before Grace starts showing signs of being possessive. Then, when she tries to destroy Sophia's family and seduce her would-be boyfriend, Sophia can't help but wonder if she's befriended the wrong girl. Now, Sophia must uncover Grace's secret past and learn the truth about her new friend before it's too late.",0,0,The Wrong Girl,en +336655,Dégradé,2015-05-17,85.0,,,tt4429074,,A Palestinian comedy about women crammed in a tiny beauty parlor on the Gaza Strip,0,0,Dégradé,ar +336199,Macadam Stories,2015-05-17,100.0,,,tt4357368,,"A drama about several lonely inhabitants of the same council estate, adapted by Benchetrit from his novel.",0,0,Asphalte,fr +336669,Land and Shade,2015-05-18,97.0,http://inter.pyramidefilms.com/content/land-and-shade,,tt4663992,,"Alfonso is an old farmer who has returned home to tend to his son, who is gravely ill. He rediscovers his old house, where the woman who was once his wife still lives, with his daughter-in-law and grandson. The landscape that awaits him resembles a wasteland. Vast sugar cane plantations surround the house, producing perpetual clouds of ash. 17 years after abandoning them, Alfonso tries to fit back in and save his family.",0,0,La tierra y la sombra,es +310593,Youth,2015-05-20,118.0,http://www.pathefilms.com/film/youth,,tt3312830,,"YOUTH explores the lifelong bond between two friends vacationing in a luxury Swiss Alps lodge as they ponder retirement. While Fred has no plans to resume his musical career despite the urging of his loving daughter Lena, Mick is intent on finishing the screenplay for what may be his last important film for his muse Brenda. And where will inspiration lead their younger friend Jimmy, an actor grasping to make sense of his next performance?",13360000,2000000,Youth,it +334074,Survivor,2015-05-21,96.0,http://survivormovie.com/,,tt3247714,His Next Target is Now Hunting Him,"A Foreign Service Officer in London tries to prevent a terrorist attack set to hit New York, but is forced to go on the run when she is framed for crimes she did not commit.",20000000,0,Survivor,en +341007,3 Braves,2015-05-21,94.0,http://www.3bahadurmovie.com/,,tt4306116,,"Three Braves is the story of three extraordinary children who rise from the most unlikeliest of places and save their town from the evils plague it. Equipped with courage and super powers,11 year old Amna, Saadi and Kamil battle against the odds and stand up to injustice to restore peace and harmony in their once thriving community And live a very happy life.",143149,645135,تین بہادر,ur +207270,The Hoarder,2015-05-21,86.0,,,tt1891923,Some things should never be locked away.,"Ella discovers a terrifying secret when she becomes trapped in an underground storage facility. To survive she must join forces with a group of strangers, each with something to hide.",0,0,The Hoarder,en +336811,Les Cowboys,2015-05-21,114.0,,,tt4228294,,Drama about a father and son who set out to find their missing daughter/sister with the help of an American headhunter.,0,0,Les Cowboys,fr +341176,Jen Kirkman: I'm Gonna Die Alone (And I Feel Fine),2015-05-22,78.0,,,tt4703660,,"Jen Kirkman's Netflix produced stand-up special as performed at the North Door in Austin, Texas",0,0,Jen Kirkman: I'm Gonna Die Alone (And I Feel Fine),en +340190,Drunk Wedding,2015-05-22,81.0,,,tt1950135,,Jon and Elissa dreamed of having an epic destination wedding surrounded by their best friends. But their trip to paradise turns into an outrageous drunken weekend they wish they could forget.,0,0,Drunk Wedding,en +341420,Demonte Colony,2015-05-22,116.0,,,tt4701688,,"Four friends go into a haunted mansion on a whim but they do not realize that they have returned home with an evil spirit, from which escape might be impossible.",0,0,தீமொண்டே கோலோனி,ta +94365,The Human Centipede 3 (Final Sequence),2015-05-22,103.0,,96671,tt1883367,100% politically incorrect,"Taking inspiration from The Human Centipede films, the warden of a notorious and troubled prison looks to create a 500-person human centipede as a solution to his problems.",0,0,The Human Centipede 3 (Final Sequence),en +342052,"Return to the Philippines, the Leon Cooper Story",2015-05-25,65.0,,,tt4450170,,A World War II veteran returns to the Philippines to boost efforts to recover the remains of American GIs still listed as missing in action.,0,0,"Return to the Philippines, the Leon Cooper Story",en +349441,The Kind Words,2015-05-28,118.0,,,tt3809478,,Follows three brothers who are going to discover the greatest secret of their late mother. This trip is going to change their lives.,0,0,Ha'milim ha'tovot,en +271714,Love & Mercy,2015-05-29,120.0,http://www.loveandmercyfilm.com/,,tt0903657,"The Life, Love and Genius of Brian Wilson",The life of reclusive and eccentric Beach Boys songwriter and musician Brian Wilson.,0,28641776,Love & Mercy,en +341895,Premam,2015-05-29,165.0,,,tt4679210,Love,"Three stages in George's life, and three girls he encounters in each stage.",6200000,11000000,പ്രേമം,ml +337751,The Secret Life of Marilyn Monroe,2015-05-30,240.0,http://www.mylifetime.com/movies/the-secret-life-of-marilyn-monroe,,tt4067076,Fame leaves a mark.,A chronicle of Marilyn Monroe's family life and how she succeeded in hiding her most intimate secrets from the press and an invasive world.,0,0,The Secret Life of Marilyn Monroe,en +359549,Prologue,2015-06-01,6.0,,,tt4955294,,Prologue depicts Spartan and Athenian warriors locked in a gory battle to the death.,0,0,Prologue,en +331354,Requisitos para ser una persona normal,2015-06-04,0.0,,,tt3720724,,,0,0,Requisitos para ser una persona normal,es +458808,Nice Places to Die,2015-06-04,,,,tt3792994,,,0,0,Nice Places to Die,de +280092,Insidious: Chapter 3,2015-06-04,97.0,,228446,tt3195644,This is how you die,"A twisted new tale of terror begins for a teenage girl and her family, predating the haunting of the Lambert family in the earlier movies and revealing more mysteries of the otherworldly realm The Further.",10000000,104303851,Insidious: Chapter 3,en +343369,Love Finds You in Charm,2015-06-06,93.0,http://uptv.com/movies/love-finds-you-in-charm/,,tt4122118,,"A young Amish woman, who isn't satisfied with her path at home, visits a cousin for the summer. Over the summer, she is exposed to another world, finds friendship and more. Soon she must choose and come to terms with the life she wants.",0,0,Love Finds You in Charm,en +345054,Double Daddy,2015-06-06,0.0,,,tt4733736,,A teen's life turns upside down when her boyfriend impregnates both her and a new student at school.,0,0,Double Daddy,en +369363,Claude Lanzmann: Spectres of the Shoah,2015-06-06,40.0,,,tt4815426,,The process of making Shoah.,0,0,Claude Lanzmann: Spectres of the Shoah,en +233490,Underdog Kids,2015-06-07,94.0,http://www.underdogkids.com/,,tt3150574,,Inner city kids from a poor neighborhood go up against the undefeated Beverly Hills Junior National Karate Team.,0,0,Underdog Kids,en +344560,Stonemouth,2015-06-08,120.0,,,tt4274822,Nothing Great Was Ever Achieved Without Danger,"Based on Iain Banks's best-selling novel, this romantic mystery follows Stewart as he returns to his childhood home and tries to discover the truth behind his best friend's death.",0,0,Stonemouth,en +359204,A Syrian Love Story,2015-06-09,76.0,,,tt4684410,An Incredible Family Odyssey Of Hope And Dreams,"Filmed over 5 years, A Syrian Love Story charts an incredible odyssey to political freedom. For Raghda and Amer, it is a journey of hope, dreams and despair: for the revolution, their homeland and each other.",0,0,A Syrian Love Story,en +343702,The Sweet Escape,2015-06-10,105.0,,,tt4163644,,"Michel, a fifty year old man, graphic designer, decides to change the urban lifestyle and go on an adventure. Fascinated by airmail, he dreams at Jean Mermoz when he's on scooter. One day, Michel sees a picture of a kayak.",0,0,Comme un avion,fr +344170,Only the Dead See The End of War,2015-06-11,78.0,,,tt3587396,How Far Would You Go To Understand The True Nature Of War,A searing account of war correspondent Michael Ware's seven years reporting in Iraq--an extraordinary journey that takes him into the darkest recesses of the Iraq War and the human soul.,0,0,Only the Dead See The End of War,en +336050,Son of Saul,2015-06-11,107.0,http://www.sonofsaul.co.uk/,,tt3808342,,"In the horror of 1944 Auschwitz, a prisoner forced to burn the corpses of his own people finds moral survival trying to save from the flames the body of a boy he takes for his son.",1000000,1777043,Saul fia,hu +345069,Crush the Skull,2015-06-11,80.0,,,tt4149732,Better safe than sorry.,"A couple of master thieves find themselves trapped within a house they intended to rob, only to discover they've inadvertently wandered into the lair of a deranged serial killer.",0,0,Crush the Skull,en +339148,Already Tomorrow in Hong Kong,2015-06-12,78.0,,,tt3700804,,"An attraction forms when a Chinese American girl visiting Hong Kong for the first time meets an American expat who shows her the way, but timing may not quite be on their side.",0,0,Already Tomorrow in Hong Kong,en +339367,Hamari Adhuri Kahani,2015-06-12,129.0,,,tt3483612,,"Hamari Adhuri Kahani (English: Our Incomplete Story) is a 2015 Indian romantic drama directed by Mohit Suri and produced by Mahesh Bhatt under the banner Vishesh Films and Fox Star Studios. The film stars Emraan Hashmi, Vidya Balan, and Rajkummar Rao. It is based on the love story of Bhatt's parents, Nanabhai Bhatt, Shirin Mohammad Ali and his stepmother.",0,0,Hamari Adhuri Kahani,en +307931,The Wolfpack,2015-06-12,89.0,,,tt2415458,,"Locked away from society in an apartment on the Lower East Side of Manhattan, the Angulo brothers learn about the outside world through the films that they watch. Nicknamed ‘The Wolfpack’, the brothers spend their childhood reenacting their favorite films using elaborate home-made props and costumes. Their world is shaken up when one of the brothers escapes and everything changes.",0,1301696,The Wolfpack,en +340627,Ayanda,2015-06-13,105.0,,,tt4459386,"Fiery heart, fiery mind","A coming of age story of a twenty one year old Afro hipster, who embarks on a journey of self discovery trying to keep the memory of her father alive, when she's thrown into a world of greasy overalls, gender stereotypes and abandoned vintage cars in need of a young woman's re inventive touch who tries to reclaim what would've been, what could've been.",0,0,Ayanda,en +339145,The Girl in the Book,2015-06-13,86.0,http://www.thegirlinthebook.com/,,tt2980554,She's ready to reclaim her story,The story of a young writer's transformation when her past invades her present.,0,0,The Girl in the Book,en +315846,Our Little Sister,2015-06-13,128.0,,,tt3756788,,A story that revolves around three sisters who live in their grandmother's home and the arrival of their 13-year-old half sister.,0,346485,海街diary,ja +339152,The Babushkas of Chernobyl,2015-06-14,72.0,http://thebabushkasofchernobyl.com/,,tt3299704,,Some 200 women defiantly cling to their ancestral homeland in Chernobyl’s radioactive “Exclusion Zone.”,0,0,The Babushkas of Chernobyl,en +338518,Age Of Kill,2015-06-15,85.0,http://www.richwaterfilms.com/age-of-kill/4581268822,,tt3220528,6 targets in 6 hours or London burns,A black ops sniper is blackmailed by a psychotic international terrorist into killing 6 unrelated people in 6 hours... but there is more to the victims than meets the eye.,0,0,Age Of Kill,en +307081,Southpaw,2015-06-15,123.0,,,tt1798684,Believe in Hope.,"Billy ""The Great"" Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city's toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.",30000000,91709827,Southpaw,en +321039,The Phoenix Incident,2015-06-16,81.0,http://m.imdb.com/title/tt4341532/,,tt4341532,,"A number of 'missing person' cases are reported in Phoenix, Arizona when an unexplained light appears in the sky one night in 1997.",1300000,0,The Phoenix Incident,en +336804,Mustang,2015-06-17,97.0,,,tt3966404,Their spirit would never be broken,"In a Turkish village, five orphaned sisters live under strict rule while members of their family prepare their arranged marriages.",1300000,250000,Mustang,tr +345176,Susan Calman: Lady Like,2015-06-17,84.0,http://www.gofasterstripe.com/cgi-bin/website.cgi?page=videofull&id=24479,,tt5298986,,"Susan Calman's stand-up show about being older, wiser and liking yourself whatever anyone might say. This show was recorded in the beautiful surroundings of Glasgow’s Citizens Theatre to an enthusiastic home crowd.",0,0,Susan Calman: Lady Like,en +337107,Valley of Love,2015-06-17,91.0,,,tt4120210,,"A story of two famous actors who used to be a couple. They reunite after the son's death and receive a letter asking them to visit five places at Death Valley, which will make the son reappear.",0,0,La Vallée de l'amour,fr +300601,It's Now or Never,2015-06-19,91.0,,,tt4161962,,Narrates the preparation for a wedding of a Spanish couple in which everything goes wrong.,0,0,Ahora o nunca,es +308024,The Overnight,2015-06-19,80.0,http://theovernight-movie.com/,,tt3844362,Get into the swing of things,"Alex, Emily, and their son, RJ, are new to Los Angeles. A chance meeting at the park introduces them to the mysterious Kurt, Charlotte, and Max. A family “playdate” becomes increasingly interesting as the night goes on.",0,1100000,The Overnight,en +308639,Dope,2015-06-19,103.0,http://www.youaredope.com/,,tt3850214,It's hard out here for a geek.,"Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.",700000,17986781,Dope,en +343921,A Deadly Adoption,2015-06-20,90.0,,,tt4573800,The birth of a plan gone wrong.,"Things go awry when an author and his wife welcome a pregnant woman into their home, with plans to adopt her baby.",0,0,A Deadly Adoption,en +286192,Lava,2015-06-21,7.0,http://www.pixar.com/short_films/Theatrical-Shorts/Lava,,tt3824386,,"The story follows the love story of two volcanoes, Uku and Lele. It features a song, ""Lava"", which is written by Murphy and performed by Kuana Torres Kahele and Napua Greig, who voice the two volcanoes.",0,0,Lava,en +343809,That's Not Us,2015-06-21,97.0,,,tt4480568,,"Three twenty-something couples, one gay, one lesbian, and one straight, travel to a beach house to enjoy the last days of summer, but what should be a fun and carefree weekend becomes an exploration of what it takes to sustain a healthy relationship.",0,0,That's Not Us,en +353257,Earthfall,2015-06-22,89.0,,,tt3630556,The World will Never be the same.,"As a rogue planet roars through our solar system, it acts as an intergalactic magnet that pulls Earth in its wake. Meteors destroy major cities. Fire and ice storms engulf the land. Casualties are in the millions. And as the situation grows even worse, Steve Lannon is determined to reunite with his wife and teenage daughter. But when they stumble into a secret government installation, they'll uncover a nuclear mission that will either blast our planet back into orbit or guarantee front row seats to the end of the world.",0,0,Earthfall,en +345888,The Piper,2015-07-09,107.0,http://sonnim2015.co.kr/,,tt4718500,,"""The Guest"" follows Ryoo Seung-ryong's character, who happens to stay in a mysterious town in the countryside shortly after the 1950-53 Korean War.",0,0,손님,ko +338100,Grace Stirs Up Success,2015-06-23,101.0,,25542,tt3733678,,"Grace is excited for the summer so she can start a business with her friends, but things take an unexpected turn when her mom announces a trip to Paris. There, Grace must learn to get along with her French cousin, Sylvie, and she finds unexpected inspiration for her business. Then, Grace finds out her grandparents bakery, that inspired her to start a business, is closing. Can she and her friends find a way to save it?",0,0,Grace Stirs Up Success,en +347096,Mythica: The Darkspore,2015-06-24,108.0,http://www.mythicamovie.com/#!blank/wufvh,363092,tt3478232,,"When Teela’s sister is murdered and a powerful relic stolen, Marek and her friends face a sinister new enemy – Kishkumen, a foreign mystic bent on reclaiming the Darkspore for his master Szorlok. Armed with twin maps, Marek and her team race Kishkumen and his horde through creature-infested lands, to a long abandoned underground city – all the while pursued by bounty hunters intent on returning Marek to slavery.",0,0,Mythica: The Darkspore,en +214756,Ted 2,2015-06-25,115.0,,266672,tt2637276,"Ted is Coming, Again.","Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.",68000000,217022588,Ted 2,en +367596,Täterätää - Die Kirche bleibt im Dorf 2,2015-06-25,,,380160,tt5133288,,,0,0,Täterätää - Die Kirche bleibt im Dorf 2,de +346473,Lisa Lampanelli: Back to the Drawing Board,2015-06-26,60.0,http://www.epixhd.com/movie/lisa-lampanelli-back-to-the-drawing-board/,,tt4566712,,"Brash, bold and never afraid to go blue, comedian Lisa Lampanelli offers a raucous and raunchy performance in her first stand-up special for EPIX. Taped at the Music Hall in Tarrytown, New York, the set includes Lampanelli’s signature brand of insult comedy as well as her personal experiences with weight loss and divorce.",0,0,Lisa Lampanelli: Back to the Drawing Board,en +325189,Teen Beach 2,2015-06-26,104.0,,408196,tt3764966,,"Dive in and rock out with the hottest surf sequel under the sun! Now that summer's over and school has begun, Brady (Ross Lynch) and Mack's (Maia Mitchell) relationship seems headed for a wipeout — until Lela, Tanner and the ""Wet Side Story"" kids show up! Dazzled by the novelty and variety of the modern world, Lela wants to stay, but the real world and the ""reel"" world just don't mix. Can Mack and Brady find the magic to get the kids home and get their own romance back on track before it's too late? Packed with electrifying song & dance numbers and hilarious fish-out-of-water wackiness, ""Teen Beach 2"" is ""wow-abunga"" fun for everyone!",0,0,Teen Beach 2,en +310137,Bound to Vengeance,2015-06-26,80.0,,,tt1230213,Escape is just the beginning.,"A young woman, Eve, fights back and manages to escape a malicious abductor. However, after discovering she may not be the only victim, Eve unravels a darker truth and decides to turn the tables on her captor.",0,0,Reversal,en +267955,Nintendo Quest,2015-06-26,92.0,http://nintendoquest.com/,,tt3063470,"30 days. 678 games. 10,000 miles! Are you game?","Homer's Odyssey meets King of Kong as two über geeks try to collect all 700+ Nintendo Entertainment System cartridges in 30 days, WITHOUT the aid of online purchasing.",0,0,Nintendo Quest,en +320061,Batkid Begins,2015-06-26,87.0,,,tt3884528,The Wish Heard Around the World,"On November 15, 2013, the world came together to grant one 5-year-old leukemia patient his wish to be Batman for a day. ""Batkid Begins"" looks at why and how this phenomenon took place, becoming one of the biggest ""good news"" stories of all time.",0,0,Batkid Begins,en +272878,Max,2015-06-26,111.0,,456778,tt3369806,Best Friend. Hero. Marine.,A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler's family after suffering a traumatic experience.,20000000,43967255,Max,en +277687,The Midnight Swim,2015-06-26,84.0,http://themidnightswim-movie.com,,tt3569374,Death is not what you think,"Spirit Lake is unusually deep. No diver has ever managed to find the bottom. When Dr. Amelia Brooks disappears during a deep-water dive, her three daughters travel home. They find themselves unable to let go and become drawn into the mysteries of the lake.",0,0,The Midnight Swim,en +86828,Absolutely Anything,2015-06-26,85.0,,,tt1727770,Great power. Total irresponsibility.,Eccentric aliens give a man the power to do anything he wants to determine if Earth is worth saving.,0,7200039,Absolutely Anything,en +263472,Knock Knock,2015-06-26,99.0,http://knockknockmovie.tumblr.com/,,tt3605418,One night can cost you everything.,"When a devoted husband and father is left home alone for the weekend, two stranded young women unexpectedly knock on his door for help. What starts out as a kind gesture results in a dangerous seduction and a deadly game of cat and mouse.",2500000,6341684,Knock Knock,en +330418,Indru Netru Naalai,2015-06-26,146.0,,,tt4806232,,"Elango and his astrologer friend Pulivetti Arumugam come in possession of a time machine and start profiting from it. However, their meddling with time prevents the death of a gangster, who begins to wreck havoc in their lives.",620000,1400000,இன்று நேற்று நாளை,ta +346490,Babai,2015-06-28,104.0,,,tt4741170,,"10-year-old Nori is obliged to grow up at a very young age after the early death of his mother and then being abandoned by his father Gezim in the Kosovo of the 1990s.After a dangerous and eventful journey, Nori finally arrives in Germany and is reunited with his father, but he cannot understand how Gezim could just have left him. And chances of them being able to stay in Germany look bleak when Gezim’s application for asylum is rejected.",2137000,0,Babai,sq +262542,51 Degrees North,2015-06-30,0.0,http://www.51degreesmovie.com/,,tt2374721,Life before the apocalypse,"When Damon Miller, a talented, young London filmmaker becomes involved in the disturbing research surrounding Near-Earth Objects he stumbles onto the discovery that the Earth stands on the brink of an extraterrestrial disaster.",0,0,51 Degrees North,en +343934,Staten Island Summer,2015-06-30,108.0,,,tt3137764,No Regrets,Pals Danny and Frank spend the summer after high school working as lifeguards while figuring out their future.,0,0,Staten Island Summer,en +345489,Meet Me in Venice,2015-07-02,90.0,http://www.railmovie.nl/,,tt3859052,Becoming father and daughter in one week,"Liza is a young Dutch woman who travels to Venice to meet her Italian father Mauro. Mauro has not seen Liza since she was three years old, when he and Liza’s mother decided to split up. Mauro has traveled the world since as a musician. When Liza is in Venice it turns out there is more in store than just a couple of days in Venice. He takes Liza on a musical voyage along the route of the Orient Express. A trip that will eventually take them to Istanbul.",0,0,Meet Me in Venice,en +354667,RangiTaranga,2015-07-03,0.0,http://www.rangitaranga.com/,,tt4432480,,A 2015 Kannada mystery-thriller movie.,0,0,RangiTaranga,kn +322922,Awaken,2015-07-07,95.0,,,tt3367686,A Perfect Vacation,A random group of people wake up on an Island where they are being hunted down in a sinister plot to harvest their organs.,0,0,Awaken,en +369373,Stutterer,2015-07-08,13.0,,,tt4817576,,A lonely typographer with a cruel speech impediment but an eloquent inner voice must face his greatest fear.,0,0,Stutterer,en +340176,Tag,2015-07-11,85.0,http://realonigokko.com/,,tt4439120,All high school girls out there you are a little too obnoxious so we decided to reduce your numbers.,"Female highs school students, including Mitsuko, Keiko and Izumi, become the targets of ghosts with various appearances including a groom with a pig's face and female teacher with a machine gun.",0,0,リアル鬼ごっこ,ja +315465,The Boy and the Beast,2015-07-11,119.0,http://www.bakemono-no-ko.jp/index.html,,tt4272866,,"Kyuta, a boy living in Shibuya, and Kumatetsu, a lonesome beast from Jutengai, an imaginary world. One day, Kyuta forays into the imaginary world and, as he's looking for his way back, meets Kumatetsu who becomes his spirit guide. That encounter leads them to many adventures.",0,490643,バケモノの子,ja +346838,The Four Warriors,2015-07-13,95.0,,,tt4026600,Darkness is coming. Heroes must rise. The legend begins.,Four battle-weary Crusaders take on a mission to track down the evil predator who has abducted all the men and children from a devastated village.,0,0,The Four Warriors,en +348857,Eugene Mirman: Vegan on His Way to the Complain Store,2015-07-15,64.0,,,tt4604642,,"Stand-up comedian Eugene Mirman takes his act to the Wild West, where he riffs on everything from Internet dating sites to bathroom signs.",0,0,Eugene Mirman: Vegan on His Way to the Complain Store,en +301875,Equals,2015-07-15,101.0,http://equals-the-movie.com/,,tt3289728,Find your equal.,A futuristic love story set in a world where emotions have been eradicated.,16000000,2084628,Equals,en +334298,Monster Hunt,2015-07-16,111.0,,,tt3781476,,Young monster kids try to make peace between the world of humans and the world of the monsters.,40000000,385284817,捉妖记,zh +347979,Horoscope for Good Luck,2015-07-16,95.0,,,tt4871022,,"Max falls into the hands of a ""happy"" horoscope, which he must follow for 30 days, performing all its insane orders to obtain previously unavailable beauty and success. But one day Max's horoscope is replaced...",2800000,964206,Гороскоп на удачу,ru +257344,Pixels,2015-07-16,105.0,http://www.pixels-movie.com/,,tt2120120,Game On.,Video game experts are recruited by the military to fight 1980s-era video game characters who've attacked New York.,88000000,243637091,Pixels,en +346723,Home Care,2015-07-16,92.0,,,tt4026642,,"Dedicated home care nurse Vlasta attends her whimsical patients in Czech wine country and lives for her husband Lada and her daughter, but one day things change and Vlasta is forced to reach outside of her comfort zone. Drama and gentle humor intertwine as Vlasta realizes, for the first time in her life, that she might need some care, too.",0,0,Domácí péče,cs +335970,Joe Dirt 2: Beautiful Loser,2015-07-16,107.0,http://www.crackle.com/c/joe-dirt-2-beautiful-loser,353325,tt4126340,Go Hick Yourself,"When happy family man Joe Dirt finds himself transported to the recent past, he begins an epic journey to get back to his loved ones in the present.",0,0,Joe Dirt 2: Beautiful Loser,en +332354,Rey gitano,2015-07-17,,,,tt3902698,,,0,0,Rey gitano,es +308032,The Stanford Prison Experiment,2015-07-17,122.0,http://www.stanfordprisonexperimentfilm.com/,,tt0420293,They were given 2 weeks. It lasted 6 days.,This film is based on the actual events that took place in 1971 when Stanford professor Dr. Philip Zimbardo created what became one of the most shocking and famous social experiments of all time.,0,643557,The Stanford Prison Experiment,en +271718,Trainwreck,2015-07-17,125.0,,,tt3152624,We All Know One.,"Having thought that monogamy was never possible, a commitment-phobic career woman may have to face her fears when she meets a good guy.",35000000,140795793,Trainwreck,en +344147,Sharktopus vs. Whalewolf,2015-07-19,83.0,,370374,tt3292154,,"When a mad scientist mixes the genes of a killer whale and a wolf, it creates the Whalewolf, and it's up to Sharktopus to stop it.",6000000,0,Sharktopus vs. Whalewolf,en +353462,Tut,2015-07-19,360.0,,,tt3214310,,"Explores the drama of power, political back-stabbing, war and murder and chronicles King Tut's rise to glory, his efforts to rule a chaotic empire and the enigma surrounding his death.",0,0,Tut,en +347945,Synchronicity,2015-07-22,101.0,http://www.magnetreleasing.com/synchronicity/,,tt2049543,To save his future he must alter his past.,"In this mind-bending 'Sci-Fi Noir' a daring physicist folds time to travel into the past, trying to stop a mysterious woman from stealing his invention. But once there, he uncovers a surprising truth about the machine, the woman, and his own fractured reality.",0,4505,Synchronicity,en +427680,Red Wine in the Dark Night,2015-07-23,100.0,https://www.facebook.com/redwineinthedarknightmovie,,tt4556730,He will make your night The Night,A boy who gets frustrated in love meets another boy who loses all of his memories and they find some ways to start a new life together.,0,0,คืนนั้น Red Wine in the Dark Night,th +346170,The Chosen,2015-07-23,88.0,http://thechosenmovie.co/,,tt4175888,The first kill is the hardest.,"When a child-stealing demon attaches itself to a little girl, her family is thrust into a battle against time in order to save the girl and send the demon back to hell.",0,0,The Chosen,en +177677,Mission: Impossible - Rogue Nation,2015-07-23,131.0,http://www.missionimpossible.com,87359,tt2381249,Desperate Times. Desperate Measures.,"Ethan and team take on their most impossible mission yet, eradicating the Syndicate - an International rogue organization as highly skilled as they are, committed to destroying the IMF.",150000000,682330139,Mission: Impossible - Rogue Nation,en +338421,Wild City,2015-07-25,102.0,,,tt3801934,,"Former cop-turned-bar owner Kwok and his underachieving half-brother befriends a drunken woman, they soon find themselves targeted by both her former lover, a high-powered attorney, and the gangster he employs. A suitcase full of tainted cash enters the picture as Kwok finds himself torn between the gangsters and his former colleagues.",0,0,迷城,cn +349028,The Interior,2015-07-27,80.0,,,tt4839476,,"After receiving a distressing medical diagnosis, a listless young man flees the crushing tedium of Toronto city life, trading it all for the wilderness of the British Columbian Interior. When his whims go awry, he is reduced to petty thievery just to survive. Fearing his misdeeds will catch up with him, he retreats further and further into the woods only to gradually find himself the target of increasingly inexplicable and disturbing manifestations, which point to a frightening truth: he is not alone. Some one or some thing is pursuing him into THE INTERIOR.",0,0,The Interior,en +310567,Umrika,2015-07-29,98.0,,,tt2614722,,"When a young village boy discovers that his brother, long believed to be in America, has actually gone missing, he begins to invent letters on his behalf to save their mother from heartbreak, all the while searching for him.",0,0,Umrika,hi +309809,The Little Prince,2015-07-29,92.0,http://www.thelittleprincemovie.com/,,tt1754656,Growing up isn't the problem... forgetting is.,"Based on the best-seller book 'The Little Prince', the movie tells the story of a little girl that lives with resignation in a world where efficiency and work are the only dogmas. Everything will change when accidentally she discovers her neighbor that will tell her about the story of the Little Prince that he once met.",64000000,97571250,The Little Prince,en +295273,The Crossing II,2015-07-30,131.0,,295274,tt4027270,,"A story of three couples and their intertwining love stories set in 1940s Taiwan and Shanghai, centered around the 1949 sinking of Taiping.",0,0,太平轮(下),zh +350779,The Bosses,2015-07-31,0.0,,,tt2977546,,"Poncho is a student at a prestigious college in northern Mexico who is immersed along a single day on a whirlwind adventure through the various levels of the narc world after accepting the help of ""Greñas"", a guy working in the parking lot of his college, who will explain him how to buy marijuana on the campus for the first time.",0,0,Los jefes,es +309581,Lila & Eve,2015-07-31,94.0,,,tt3442990,Torn by loss. Bound for revenge.,"Lila, a grief-stricken mother reeling from her son’s murder, attends a support group where she meets Eve, who urges her to take matters into her own hands to track down her son’s killers.",0,0,Lila & Eve,en +357441,Karachi se Lahore,2015-07-31,0.0,https://www.epicbuzz.net/movies/karachi-se-lahore,,tt4590482,,A road trip from Karachi to Lahore where 5 friends discover themselves and the country amidst getting to their destination.,0,0,Karachi se Lahore,en +253286,Two Step,2015-07-31,93.0,,,tt3288948,,"Two Step is a fast-paced Texas thriller in which the lives of James, a directionless college dropout, and Webb, a career criminal with his back against the wall, violently collide.",0,0,Two Step,en +323435,One & Two,2015-08-01,90.0,,,tt3975510,,"Two siblings discover a supernatural escape from a troubled home, but find their bond tested when reality threatens to tear their family apart.",0,0,One & Two,en +341886,June,2015-08-01,84.0,,,tt3379814,,"June is different from all other nine-year old girls. She is an orphan hiding a secret. Bad things happen when she gets upset, supernatural things. June has been in many foster homes usually leaving them destroyed. But this time it will be different. June has a new foster home and she really likes her new parents. She will have to face the force within her to protect her new parents and to save herself.",0,0,June,en +352036,Jay Pharoah: Can I Be Me?,2015-08-01,62.0,,,tt4888576,,"Stand up Jay Pharaoh performs his most popular celebrity impressions in this powerhouse comedy special, including hilarious takes on Chris Rock, Dave Chappelle, Jay-Z, Barack Obama and more.",0,0,Jay Pharoah: Can I Be Me?,en +348631,Gourmet Detective: A Healthy Place to Die,2015-08-02,84.0,http://www.hallmarkmoviesandmysteries.com/gourmet-detective-a-healthy-place-to-die,364342,tt4041382,,"When Henry is invited as a guest speaker at a luxury resort spa, he quickly finds himself at the center of another murder. With Maggie at his side, our favorite duo must not only find the killer but be careful they don't become his latest victim.",0,0,Gourmet Detective: A Healthy Place to Die,en +349045,Looney Tunes: Rabbits Run,2015-08-04,73.0,,,tt4840666,,"Lola Bunny invents a perfume with the adverse effect of turning people invisible, sending her and cab driver Bugs Bunny on the run from the FBI, while another shady group seeks the formula.",0,0,Looney Tunes: Rabbits Run,en +336265,The Mind's Eye,2015-08-05,87.0,,,tt4567486,The best SCANNERS sequel we never got,The Mind’s Eye follows a drifter with telekinetic abilities who targets a doctor who is creating a synthetic telekinetic power serum.,0,0,The Mind's Eye,en +346646,Veteran,2015-08-05,124.0,,,tt4768764,The Unstoppable vs The Untouchable,A detective pursues a man born from a wealthy family who runs a large corporation.,0,1200627,베테랑,ko +337958,Last Cab to Darwin,2015-08-06,124.0,,,tt3680410,It's never too late to start living.,"Rex is a loner, and when he's told he doesn't have long to live, he embarks on an epic drive through the Australian outback from Broken Hill to Darwin to die on his own terms; but his journey reveals to him that before you can end your life, you have to live it, and to live it, you've got to share it.",0,0,Last Cab to Darwin,en +347328,"OMG, I'm a Robot!",2015-08-06,90.0,https://www.facebook.com/OmgRobot,,tt2819130,,A sensitive guy finds out he's... a robot.,0,0,"אני לא מאמין, אני רובוט!",he +257450,Piranha Sharks,2015-08-06,79.0,,,tt3400060,,"Great white sharks bio-engineered to be the size of piranhas with the purpose of living in rich peoples exotic aquariums, terrorize New York City when they get into the water supply and do what great white sharks do best.",0,0,Piranha Sharks,en +310133,Cop Car,2015-08-07,86.0,,,tt3813310,Their first drive could be their last.,Two kids find themselves in the centre of a deadly game of cat and mouse after taking a sheriff's cruiser for a joy ride.,0,134552,Cop Car,en +353216,Homme Less,2015-08-07,81.0,http://www.homme-less.com/,,tt4164462,,"HOMME LESS is about the underbelly of the American Dream, the hidden backyard of our society.",0,0,Homme Less,en +353533,Srimanthudu,2015-08-07,160.0,,,tt4727512,,"Harsha, a multi-millionaire guy who has everything but there is something else he's looking for and in the process he adopts a complete village trying to bring change in the people.",0,0,Srimanthudu,te +338676,Extinction,2015-08-07,110.0,,,tt3467412,"When the undead can evolve, no one is safe.","And suddenly, overnight, the world came to a halt. Two men, two survivors, one kid, and hatred that separates them. A place forgotten by everyone, including the creatures that inhabit the Earth... until now.",0,0,Extinction,en +407575,Rosa Chumbe,2015-08-08,75.0,,,tt3733098,,"Rosa is a mature police officer with both a gambling and a drinking problem. She lives with her daughter Sheila, who has a little baby. One day, after a big fight between them, Sheila steals her mother's savings and storms out of the house leaving her baby behind. Rosa is forced to spend some time with her grandson. Something changes inside her heart of stone. However, everything takes a wrong turn one night. Only a miracle can save her.",0,0,Rosa Chumbe,es +246133,Entertainment,2015-08-11,113.0,,,tt3343784,,"Set in the Mojave Desert, the film follows a broken-down comedian playing clubs across the Southwest, working his way to Los Angeles to meet his estranged daughter.",0,0,Entertainment,en +348689,Memories of the Sword,2015-08-13,121.0,http://협녀.kr/,,tt3054798,The Fated Battle of the Three Swords,"While in medieval Korea, a young girl sets out to revenge the betrayal and the death of her mother. But therefore she must face one of the most powerful men and warriors of the Goryo Dynasty.",0,0,"협녀, 칼의 기억",ko +355111,Barbie in Rock 'N Royals,2015-08-13,84.0,,,tt4955162,,"In this upbeat musical, Barbie stars as Princess Courtney, a modern princess whose world is turned upside down when she switches places with Erika, a famous rockstar. Two very different worlds collide when a mix-up sends Princess Courtney to Camp Pop and Erika, to Camp Royalty. While the leaders of the rival camps try to correct the mix-up, both Courtney and Erika learn to adjust to the different worlds and have fun while making new, unexpected friends. When the girls learn both camps are at risk of shutting down, they must embrace their differences, find their true voices, and come together for an epic sing-off that shows anything is possible when you dare to dream big!",0,0,Barbie in Rock 'N Royals,en +310135,Turbo Kid,2015-08-14,95.0,,,tt3672742,This is the future... This is the year 1997.,"In a post-apocalyptic wasteland, an orphaned teen must battle a ruthless warlord to save the girl of his dreams.",0,0,Turbo Kid,en +351043,Amnesiac,2015-08-14,90.0,,,tt2837336,What he can't remember is killing him.,"The story of a man who wakes up in bed suffering from memory loss after being in an accident, only to begin to suspect that his wife may not be his real wife and that a web of lies and deceit deepen inside the house where he soon finds himself a prisoner.",3000000,0,Amnesiac,en +332839,Big Sky,2015-08-14,95.0,,,tt2689958,A new level of fear.,"Hazel suffers from a crippling case of agoraphobia. So much so that it causes a rift between her and her mother, Dee. Hazel and her mother decide to go on a road trip to a desert facility to help Hazel deal with her fear but when gunmen and brothers Jesse and Pru attack them, Hazel has to battle her fears so she and her mother can survive.",0,0,Big Sky,en +354128,Go Away Mr. Tumor,2015-08-14,128.0,,,tt4819514,,A young woman begins to live life to the fullest when she receives a diagnosis of cancer.,0,0,滚蛋吧!肿瘤君,zh +369019,Captain Webb,2015-08-14,87.0,http://www.marathonfilms.co.uk/project/captainwebb/,,tt3449664,Nothing Great Is Easy,"Captain Webb aka The Greatest Englishman tells the story of Captain Matthew Webb, the first-ever person to successfully swim the English Channel in 1875 equipped only with his moustache, doses of Brandy and a wire wool swimsuit.",0,0,Captain Webb,en +354544,Demetri Martin: Live (At The Time),2015-08-14,61.0,,,tt4512714,,"Demetri Martin brings his off-kilter take on acoustic guitar, hairless cats, color schemes, and the word ""nope"" to Washington in his original special.",0,0,Demetri Martin: Live (At The Time),en +225728,Macbeth,2015-08-16,113.0,http://www.macbeth-movie.com/,,tt2884018,All hail Macbeth that shall be king,"Feature film adaptation of Shakespeare's Scottish play about General Macbeth whose ambitious wife urges him to use wicked means in order to gain power of the throne over the sitting king, Duncan.",15000000,12601706,Macbeth,en +360205,Invoked,2015-08-17,85.0,,,tt3837162,Never Call Someone You Don't Want To See,"A group of young people went on a abandoned hostel in Sligo, Ireland. After they play a really creepy game, all of them disappear.",0,0,Invoked,en +352733,The Scandalous Lady W,2015-08-17,90.0,,,tt4184252,,"A gripping 18th century drama details the scandalous life of Lady Seymour Worsley, who dared to leave her husband and elope with his best friend, Captain George Bisset. Lady Seymour Worsley escapes her troubled marriage only to find herself at the centre of a very public trial brought by her powerful husband Sir Richard Worsley.",0,0,The Scandalous Lady W,en +342917,Batman Unlimited: Monster Mayhem,2015-08-18,81.0,,356688,tt4729754,It's a fright to the finish for Batman!,"The Joker is aided in his Halloween quest to render modern technology useless and take over Gotham City by Solomon Grundy, Silver Banshee, Clayface and Scarecrow.",0,0,Batman Unlimited: Monster Mayhem,en +323674,6 Years,2015-08-18,84.0,,,tt3799372,,"A young couple bound by a seemingly ideal love, begins to unravel as unexpected opportunities spin them down a volatile and violent path and threaten the future they had always imagined.",0,0,6 Years,en +283445,Sinister 2,2015-08-19,97.0,http://www.sinistermovie.com/,357173,tt2752772,"Be careful, children at play.",A young mother and her twin sons move into a rural house that's marked for death.,10000000,52882018,Sinister 2,en +338729,The Beauty Inside,2015-08-20,127.0,http://beautyinside.co.kr,,tt4273886,Love has many faces.,Woo-Jin changes into a different person when he wakes up. He falls in love with Yi-Soo.,0,108083,뷰티 인사이드,ko +369362,"Chau, Beyond the Lines",2015-08-21,34.0,,,tt4084844,,A man disabled by Agent Orange dares to dream.,0,0,War Within the Walls,en +352327,After Words,2015-08-21,91.0,,,tt2226630,,A librarian facing a mid-life crisis travels to Costa Rica.,0,0,After Words,en +353898,Manjhi The Mountain Man,2015-08-21,121.0,,,tt3449292,,"Using only a hammer and a chisel, a man spends twenty-two years carving a road through a treacherous mountain.",1230000,0,Manjhi The Mountain Man,en +339669,Blinky Bill the Movie,2015-08-21,93.0,http://www.blinkybill.com.au/,,tt3700456,,"Blinky Bill is a little koala with a big imagination. An adventurer at heart, he dreams of leaving the little town of Green Patch and following in his missing father’s footsteps. When Blinky discovers a mysterious marker that hints at his Dad’s whereabouts, he embarks on a journey that takes him beyond the boundary of Green Patch and into the wild and dangerous Outback.",12796917,0,Blinky Bill the Movie,en +341077,Tiger House,2015-08-24,80.0,,,tt2911674,"12 Hours, 4 Killers, 1 Way Out.",A young gymnast battles a group of bank robbers at the home of her boyfriend.,0,0,Tiger House,en +358982,Eden Lodge,2015-08-24,80.0,http://www.sky.com/tv/movie/eden-lodge-2015,,tt2488220,Enjoy your stay,"A young couple arrive at a retreat in the English countryside in the hope of saving their failing marriage. But when the people around them start to be picked off by a vicious killer, the weekend becomes a matter of saving their lives.",0,0,Eden Lodge,en +353595,LEGO DC Comics Super Heroes: Justice League: Attack of the Legion of Doom!,2015-08-25,67.0,,386162,tt4938416,Building the perfect crime!,"Crime is on the run as the newly formed Justice League keeps Metropolis safe and this makes evil genius Lex Luthor very unhappy. Together with Black Manta, Sinestro and a gang of ruthless recruits, Lex builds his own league and declares them the Legion of Doom. With this super powered team of terror and a plan to attack the top-secret government site, Area 52, can Lex finally be on the verge of victory? Sound the alarm and get ready for the bricks to fly when Superman, Batman, Wonder Woman and the rest of the Justice League face off against the world's greatest Super-Villains! It's the next all-new original movie from LEGO® and DC Comics.",0,0,LEGO DC Comics Super Heroes: Justice League: Attack of the Legion of Doom!,en +356461,In un posto bellissimo,2015-08-27,,,,tt3446626,,,0,0,In un posto bellissimo,it +353686,Visions,2015-08-28,80.0,,,tt2954474,Blood will stain the land.,"After moving to a vineyard with her family, a pregnant woman experiences horrifying visions.",0,0,Visions,en +353879,Phantom,2015-08-28,136.0,,,tt3469244,A Story You Wish Were True,"Phantom is an action thriller that unfolds across various countries around the world. The plot revolves around protagonist Daniyal, whose journey to seek justice takes him from India to Europe, America and the volatile Middle East. However, he finds out that in a mission like this, there is always a price to pay, in this case, a very personal price.",0,0,Phantom,hi +311291,45 Years,2015-08-28,95.0,,,tt3544082,,"There is just one week until Kate Mercer's 45th wedding anniversary and the planning for the party is going well. But then a letter arrives for her husband. The body of his first love has been discovered, frozen and preserved in the icy glaciers of the Swiss Alps. By the time the party is upon them, five days later, there may not be a marriage left to celebrate.",0,4250507,45 Years,en +336882,The Wave,2015-08-28,104.0,,,tt3616916,It was only a matter of time.,"Based on the fact that mountain party Åkneset, located in the Geiranger fjord in Norway, one day will race out and create a violent tsunami of over 80 meters that will crush everything in its path before it hits land in Geiranger. A geologist gets caught in the middle of it and a race against time begins.",5904067,12975143,Bølgen,no +343284,Night Of The Living Deb,2015-08-29,85.0,,,tt3602128,,After a one night stand Deb wakes up in the middle of a zombie apocalypse.,2000000,0,Night Of The Living Deb,en +244117,Emily & Tim,2015-08-29,88.0,,,tt3000308,,The movie is comprised of six vignettes. A look at the tumultuous marriage of Tim and Emily Hanratty over half a century.,0,0,Emily & Tim,en +303360,Queen of Carthage,2015-09-01,90.0,,,tt2458988,,An American Drifter discovers a New Zealand Singer and develops and obsession for him.,0,0,Queen of Carthage,en +354857,Regular Show: The Movie,2015-09-01,70.0,,,tt4920274,Save the Universe From Yourselves or You're Fired,"To save the universe, and their friendship, Mordecai and Rigby must defeat an evil volleyball coach.",3000000,0,Regular Show: The Movie,en +314371,11 Minutes,2015-09-02,81.0,,,tt3865478,,The lives of urbanites intertwine in a world where anything can happen at any time.,2023012,0,11 Minut,pl +366045,Reluctant Witness,2015-09-02,120.0,,,tt3661236,,"After giving up her mafia husband to the police, and starting a new life in witness protection, Erin thinks she's rid of Jimmy forever. However, a mysterious stranger has her worrying Jimmy is back.",0,0,Reluctant Witness,en +365065,Zero,2015-09-03,0.0,,,tt2436672,,,0,0,Zero,en +359152,Storie sospese,2015-09-03,,,,tt4203310,,,0,0,Storie sospese,it +227964,A Esperança é a Última Que Morre,2015-09-03,,,,tt3447830,,,0,0,A Esperança é a Última Que Morre,pt +352199,For Your Sake,2015-09-03,110.0,,,tt4898888,,"An extremely mannered and increasingly preposterous tale of a fortysomething woman who has to deal with an abusive, double-dealing husband and a handsome, soap-actor lover who seems to be too good to be true.",0,0,Per amor vostro,it +339527,Solace,2015-09-03,101.0,,,tt1291570,"A serial killer who can see your future, a psychic who can save it","A psychic doctor, John Clancy, works with an FBI special agent in search of a serial killer. After having lived in isolation for two years, since the death of his daughter, Clancy is asked by his friend Joe, an FBI special agent to help him solve several murders committed by a serial killer.",0,22586863,Solace,en +157843,Queen of the Desert,2015-09-03,128.0,,,tt1837636,,"A chronicle of Gertrude Bell's life, a traveler, writer, archaeologist, explorer, cartographer, and political attaché for the British Empire at the dawn of the twentieth century.",15000000,0,Queen of the Desert,en +354296,The Guy from Our Cemetery,2015-09-03,84.0,,,tt4765708,,Twenty five years old Kolya starts to work as a cemetery night guard after moving to Moscow from province.,0,0,Парень с нашего кладбища,ru +336029,A Tale of Love and Darkness,2015-09-03,95.0,http://www.focusfeatures.com/loveanddarkness,,tt1135989,,A story about the childhood of Oz in Jerusalem and his youth in the Kibbutz during the British Mandate and the first days of the state of Israel. The plot describes the relationship between young Oz to his mother and his first steps as a writer.,4000000,0,A Tale of Love and Darkness,he +358511,Baby Bump,2015-09-06,89.0,,,tt5028892,Growing up… not for kids.,11-year-old Mickey House is no longer a child. But who is he? He doesn’t know. He’s friendless. He doesn’t understand his mother. He hates what’s happening to his body. Reality and imagination come together in a toxic mix. Events escalate to extremes… at home and at school. Mickey has to find the strength within him to put a stop to what’s begun. Where will his encounter with his own maturing body take him?,0,0,Baby Bump,pl +319073,How To Change The World,2015-09-09,110.0,,,tt4144504,The Revolution Will Not Be Organized,"In 1971, a group of friends sail into a nuclear test zone, and their protest captures the world's imagination. Using never before seen archive that brings their extraordinary world to life, How To Change The World is the story of the pioneers who founded Greenpeace and defined the modern green movement.",0,0,How To Change The World,en +294254,Maze Runner: The Scorch Trials,2015-09-09,132.0,http://mazerunnermovies.com,295130,tt4046784,The Maze Was Just the Beginning.,"Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.",61000000,311256926,Maze Runner: The Scorch Trials,en +318973,Welcome to Leith,2015-09-09,85.0,,,tt3962848,Know your neighbors.,"In September 2012, the tiny prairie town of Leith, North Dakota, saw its population of 24 grow by one. Trouble had come to town.",0,0,Welcome to Leith,en +359105,Heneral Luna,2015-09-09,118.0,http://henerallunathemovie.com,,tt4944352,Nation or self?,A Filipino general who believes he can turn the tide of battle in the Philippine-American war. But little does he know that he faces a greatest threat to the country's revolution against the invading Americans.,0,0,Heneral Luna,tl +356191,Demon,2015-09-09,94.0,,,tt4935158,,"A bridegroom is possessed by an unquiet spirit in the midst of his own wedding celebration, in this clever take on the Jewish legend of the dybbuk.",0,0,Demon,pl +348315,Clean Hands,2015-09-10,100.0,,,tt3855240,Nobody leaves the family,"Sylvia has turned a blind eye for too long to husband Eddie's flourishing drug business. When his dealing takes a (deadly) turn for the worse, however, her need to protect the lives and futures of her young children compel her to flee. But Eddie will stop at nothing to keep his wife inside the ‘family'.",0,0,Schone handen,nl +352960,Lace Crater,2015-09-10,83.0,https://www.facebook.com/lacecrater,,tt4792648,,A woman encounters a strange presence in a guest house.,0,0,Lace Crater,en +359154,13 days of October,2015-09-10,0.0,,,tt4699592,,,0,0,13 dies de octubre,ab +280840,Ma Ma,2015-09-11,111.0,,,tt3480886,,"In the aftermath of a tragedy a woman, Magda, reacts with a surge of newfound life that engulfs her circle of family and friends.",0,1137421,Ma ma,es +351901,12 Rounds 3: Lockdown,2015-09-11,90.0,,221622,tt3957956,Twelve Rounds In the Clip. One Shot at Redemption.,"Lockdown Follows a police officer who returns to duty after recovering from a gun shot wound to discover incriminating evidence of illegal activities against those closest to him. He quickly finds himself trapped inside his own precinct, hunted and in search of the truth, as the crooked cops stop at nothing to recover the evidence.",0,0,12 Rounds 3: Lockdown,en +358924,Miss Sharon Jones!,2015-09-11,93.0,,,tt4935480,,Portrait of the singer and her year-long battle with cancer.,0,0,Miss Sharon Jones!,en +344039,Len and Company,2015-09-11,102.0,,,tt3675204,,"A successful music producer quits the industry and exiles himself in upstate New York, but the solitude he seeks is shattered when his estranged son and the pop star he's created come looking for answers.",0,0,Len and Company,en +333352,Eye in the Sky,2015-09-11,102.0,,,tt2057392,Welcome to the new front line,A military officer in command of a drone operation to capture terrorists in Kenya sees her mission escalate from “capture” to “kill” just as a nine-year old girl enters the kill zone.,13000000,18704595,Eye in the Sky,en +343795,90 Minutes in Heaven,2015-09-11,121.0,,,tt4337690,Hope lives,"A man involved in a horrific car crash is pronounced dead, only to come back to life an hour and a half later, claiming to have seen Heaven.",5000000,4842699,90 Minutes in Heaven,en +304372,The Perfect Guy,2015-09-11,100.0,http://www.sonypictures.com/movies/theperfectguy/,,tt3862750,"Trust one, fear the other.","After a painful breakup, Leah seems to meet the perfect guy. But she soon discovers his violent side that disrupts her life.",12000000,60273173,The Perfect Guy,en +351065,Zoom,2015-09-11,96.0,,,tt3763866,,"A multi-dimensional interface between a comic book artist, a novelist, and a film director. Each lives in a separate reality but authors a story about one of the others.",0,0,Zoom,en +290762,Miss You Already,2015-09-12,112.0,,,tt2245003,"When life falls apart, friends keep it together",The friendship between two life-long girlfriends is put to the test when one starts a family and the other falls ill.,0,0,Miss You Already,en +327528,Born to Be Blue,2015-09-13,97.0,,,tt2133196,Love is instramental,Jazz legend Chet Baker finds love and redemption when he stars in a movie about his own troubled life to mount a comeback.,0,830129,Born to Be Blue,en +358895,Being Charlie,2015-09-14,97.0,,,tt4630444,,"Charlie is a troublesome 18-year-old who breaks out of a youth drug treatment clinic, but when he returns home to Los Angeles, he's given an intervention by his parents and forced to go to an adult rehab. There, he meets a beautiful but troubled girl, Eva, and is forced to battle with drugs, elusive love and divided parents.",0,30400,Being Charlie,en +291866,The Hive,2015-09-14,89.0,,,tt3745906,,An amnesiac must reach back into his mind for memories that will help him save the love of his life before a virus completely takes over.,0,0,The Hive,en +330770,Evolution,2015-09-14,81.0,,,tt4291590,,11-year-old Nicolas lives with his mother in a seaside housing estate. The only place that ever sees any activity is the hospital. It is there that all the boys from the village are forced to undergo strange medical trials that attempt to disrupt the phases of evolution.,0,0,Évolution,fr +353464,Talvar,2015-09-14,132.0,http://jungleepictures.com/talvar/,,tt4934950,,"Dramatization of the notorious ""Noida Double Murder Case"", which set off a media frenzy around the world in 2008.",0,0,Talvar,hi +360784,Hidden,2015-09-15,83.0,,,tt2131532,Fear will find you.,A family takes refuge in a fallout shelter to avoid a dangerous outbreak.,0,0,Hidden,en +356294,25 April,2015-09-15,85.0,,,tt3728746,,A dramatization of the events at Gallipoli using the letters of the soldiers who were there.,0,0,25 April,en +315439,The Throne,2015-09-16,125.0,http://sado.modoo.at/,,tt4010918,,A historical story describing the death of Prince Sado.,0,0,사도,ko +333367,Sky,2015-09-16,100.0,,,tt4106306,,A woman embarks on a journey alone across the United States after fleeing from her violent husband.,0,0,Sky,en +433034,The Perfect Physique,2015-09-16,108.0,,,tt4737992,,"To acquire the best physiques in the world takes relentless desire, fierce drive and unwavering discipline. The struggle is real.",0,0,The Perfect Physique,en +277968,Me and Kaminski,2015-09-17,124.0,,,tt1369667,,"Young journalist Sebastian Zöllner is writing an article on artist Manuel Kaminski. Zöllner hopes that Kaminski dies soon, so that he can cash in on his article.",0,0,Ich und Kaminski,de +273481,Sicario,2015-09-17,121.0,,,tt3397884,The border is just another line to cross.,"A young female FBI agent joins a secret CIA operation to take down a Mexican cartel boss, a job that ends up pushing her ethical and moral values to the limit.",30000000,84025816,Sicario,en +306952,Naomi and Ely's No Kiss List,2015-09-18,89.0,,,tt3282858,She's just a girl who loves a boy who loves a boy.,The bonds between Naomi and Ely are tested when they fall for the same guy.,0,0,Naomi and Ely's No Kiss List,en +360341,Keith Richards: Under the Influence,2015-09-18,82.0,,,tt4900018,,"A portrait of Keith Richards that takes us on a journey to discover the genesis of his sound as a songwriter, guitarist and performer.",0,0,Keith Richards: Under the Influence,en +361181,Kara Bela,2015-09-18,0.0,,,tt4974684,,"After the death of his wife and father, Kudret, who has always lived by the book, decides to go on a road trip to save a girl.",0,0,Kara Bela,tr +359459,Steve Rannazzisi: Breaking Dad,2015-09-19,42.0,http://www.cc.com/shows/steve-rannazzisi--breaking-dad,,tt4878890,,"“The League’s” Steve Rannazzisi hits Boston’s Wilbur stage with his tales of life, marriage and yes, being a dad. A really funny dad.",0,0,Steve Rannazzisi: Breaking Dad,en +364111,The Anthem of the Heart,2015-09-19,119.0,http://anthemoftheheart.com/,,tt4489416,"Beautiful word, beautiful world","A young girl had her voice magically taken away so that she would never hurt people with it, but her outlook changes when she encounters music and friendship.",0,0,心が叫びたがってるんだ。,ja +159824,Hotel Transylvania 2,2015-09-21,89.0,,185103,tt2510894,They're back to raise a little terror,"When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.",80000000,473226958,Hotel Transylvania 2,en +343140,Office,2015-09-24,120.0,,,tt4392726,,A takedown of capitalist corruption and greed that's savvily packaged as a song-and-dance extravaganza.,0,0,華麗上班族,zh +310602,Klown Forever,2015-09-24,99.0,,441682,tt4585660,Friends forever?,"Frank and Casper's friendship is put to a test, when Casper decides to leave Denmark to pursue a solo career in Los Angeles. Determined to win his best friend back Frank chooses to follow Casper insuring an eventful trip.",0,0,Klovn forever,da +352372,Darling,2015-09-24,78.0,,,tt4126394,Terror Beyond Comprehension,A young woman slowly goes crazy after taking a job as the caretaker for an ancient New York home.,0,0,Darling,en +356757,Arianna,2015-09-24,84.0,,,tt4908430,"I was born twice, even three times.","Arianna is nineteen, but she's still waiting to get her first period. As the summer begins, her parents decide to renew their acquaintance with their country house on Lake Bolsena, where Arianna lived until she was three, and has never been back. As the family settle in for the summer, long-repressed memories start to re-emerge, and Arianna decides to stay on after her parents return to the city.",0,0,Arianna,it +372113,Ahwak,2015-09-24,0.0,,,tt5051390,,,0,0,Ahwak,ar +356758,First Light,2015-09-24,108.0,,,tt3530970,,"Marco, a cynical and ambitious young lawyer, lives in Bari with his partner Martina and their eight-year-old son Mateo. Martina had left Chile and moved to Italy when she met Marco. Their relationship has run its course, however, and Martina longs to go back to her country with Mateo, but Marco, the loving father left out of the equation, is adamantly against the idea. The couple clash for weeks on end, until Martina abruptly leaves the country with their son, goes back to Chile and virtually vanishes. With no news of Mateo, time seems to stand still for Marco. Anguished and unable to cope, he finally rallies and sets off in search of his son.",0,0,La prima luce,it +241927,Hellions,2015-09-25,80.0,,,tt3305844,"This Halloween, Hell Comes Knocking",A teen faces a night of terror when three malevolent trick-or-treaters come knocking at her door.,0,0,Hellions,en +347106,Best Wishes from Missangertrask,2015-09-25,82.0,,,tt3640034,"Nadja, a single girl longing to become a mother","Nadja, a single girl living the big city life finds herself stressed out over the wish of having a child of her own as she realizes the biological clock is ticking. She is prepared to do almost anything to fulfill her dreams but finds out that the abortion laws are about to change. To qualify as a mum, within the next 30 days she has to find herself a husband. She already discovered that chances finding a husband willing to do this on such short notice are slim to none in the big city. Maybe it is easier on the countryside?",0,0,Glada Hälsningar från Missångerträsk,sv +366692,Margaret Cho: PsyCHO,2015-09-25,81.0,,,tt4872998,,"Three-time Grammy and Emmy nominated comedian Margaret Cho performs in front of a live audience in this provocative and hilarious comedy special event, tackling off-limits issues from Boko Haram to female empowerment with her razor sharp insight and wit.",0,0,Margaret Cho: PsyCHO,en +301228,Narcopolis,2015-09-25,96.0,http://junkfilm.com/,,tt1957938,The future is a fix.,"In the near future, Frank, a police officer, discovers that the legalization of all recreational drugs comes with a price.",1500000,0,Narcopolis,en +361750,Brian Regan: Live From Radio City Music Hall,2015-09-26,57.0,,,tt5748362,,"For this live stand-up special, Brian Regan shakes things up by bringing his signature high-energy social commentary to Radio City Music Hall in a live performance.",0,0,Brian Regan: Live From Radio City Music Hall,en +300321,RWD,2015-09-26,80.0,http://rwdthemovie.com,,tt3836480,Kill your past... Rewind your future,"Two men went searching for ghosts, but they found themselves instead...",0,0,RWD,en +258947,Deadly Virtues: Love. Honour. Obey.,2015-09-28,0.0,,,tt2824852,,A home invasion irrevocably changes the lives of all involved in ways neither victims nor perpetrator could have imagined,0,0,Deadly Virtues: Love. Honour. Obey.,en +356326,What We Become,2015-09-29,85.0,,,tt3547682,Stay Home. Lock Up. Don't Breathe.,A family of four is quarantined in their home as a virulent strand of the flu spreads into town and they are forced to the extreme to escape alive.,0,0,Sorgenfri,da +359471,Swat: Unit 887,2015-09-29,96.0,,,tt3515632,The clock is ticking.,"A non-stop, race against time action packed thriller that follows an elite SWAT Team as they try to stop a domestic terrorist from killing innocent hostages and destroying the city of Los Angeles. With 24 hours left on the clock, the team must rely on their instincts and unique skill set to stop the attack and bring justice.",2000000,0,Swat: Unit 887,en +361183,Sum of Histories,2015-09-30,86.0,http://terugnaarmorgen.be/nl/,,tt4085502,,What would you do if you could change the past?,0,0,Terug naar morgen,nl +364324,Chronicles of the Ghostly Tribe,2015-09-30,115.0,,,tt4819498,,"In 1979, a young soldier is working in China's snowcapped mountains when an explosion reveals bizarre fossils hidden deep in the mountain caverns. What they discover next will change his life and human history forever.",0,0,九层妖塔,zh +344120,Rabid Dogs,2015-09-30,100.0,,,tt4379180,,"After a bank job goes badly wrong, three desperate criminals take a young woman and a father and child hostage - it's the beginning of a frantic and violent road trip that not all of them will survive.",0,0,Enragés,fr +362154,Saving Mr. Wu,2015-09-30,106.0,,,tt4819560,,"In this suspenseful crime thriller, Mr. Wu, a Hong Kong movie star, is kidnapped by six unpredictable criminals disguised as police officers. The story is based on the 2004 real-life celebrity kidnapping case in China.",0,0,解救吴先生,en +366249,Lapland Odyssey 2,2015-09-30,87.0,,461755,tt3697946,A couple of new variables,"It’s been three years since we last met Janne and Inari. Since then, they’ve had a daughter named Lumi. Janne and his friends experience a new adventure, this time on an autumn night. The boys go to a party but end up chasing Lumi who has disappeared. Meanwhile, Inari enjoys a girls-night-out and has an adventure of her own.",1730000,0,Napapiirin sankarit 2,fi +362682,Goodbye Mr. Loser,2015-09-30,104.0,,,tt5061814,,A middle-aged loser travels back in time to his high scool years to put his life on the right track.,0,0,夏洛特烦恼,zh +339350,By Our Selves,2015-10-01,80.0,,,tt4629636,,Andrew Kötting's film retraces John Clare's journey from Epping Forest to Northamptonshire accompanied by a straw bear.,0,0,By Our Selves,en +364833,The End of a Great Era,2015-10-01,98.0,,,tt4419390,,Drama based on life and stories of one of the most popular Soviet/Russian writers - Sergei Dovlatov.,0,0,Конец прекрасной эпохи,ru +303982,Vai Que Cola - O Filme,2015-10-01,105.0,,,tt4694404,,"Valdomiro gets involved in yet another scheme, this time involving the same people that tricked him into losing everything - and he brings everyone from Ms. Jô's hostel along.",0,0,Vai Que Cola - O Filme,pt +342588,Empire of Corpses,2015-10-02,120.0,http://project-itoh.com/,,tt4235644,The dead will inherit the Earth,"The story of The Empire of Corpses takes place in 19th century Europe, and revolves around John Watson. He is scouted by the government to become a secret agent- However, Watson lives in a world where ""Frankensteins""- human corpses that are re-purposed with a false soul in order to use them as laborers- are used to improve industrial development.",0,0,屍者の帝国,ja +295964,Burnt,2015-10-02,100.0,http://burntmovie.com/,,tt2503944,Never underestimate a man with everything to lose.,"Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.",20000000,36606743,Burnt,en +359245,Even Lambs Have Teeth,2015-10-03,78.0,,,tt4147210,,Two wronged women dish out vigilante justice ala Kill Bill’s “Bride”.,0,0,Even Lambs Have Teeth,en +365339,Black Road,2015-10-14,80.0,http://jomafilms.com/,,tt3829874,Don't Ride Into Darkness Alone,"In 2029, a cyborg drifter risks his life to protect a woman from her demented ex. Set in a lawless coastal town after Oregon secedes from the Union.",0,0,Black Road,en +334527,Criminal Activities,2015-11-20,94.0,,,tt3687310,Leave the crime to the criminals,Four young men make a risky investment together that puts them in trouble with the mob.,7000000,0,Criminal Activities,en +359746,The Propaganda Game,2015-10-03,94.0,,,tt4206218,,"North Korea. The last communist country in the world. Unknown, hermetic and fascinating. Formerly known as “The Hermit Kingdom” for its attempts to remain isolated, North Korea is one of the largest source of instability as regards world peace. It also has the most militarized border in the world, and the flow of impartial information, both going in and out, is practically non-existent. As the recent Sony-leaks has shown, it is the perfect setting for a propaganda war.",0,0,The Propaganda Game,es +438643,Lift me up,2015-10-04,108.0,,,tt4490824,,"A young lady, who recently lost her mother, faces the challenges of high school and her very strict step-father. Through personal growth, and an amazing dedication to dance, she learns to find the peace and happiness of family.",0,0,Lift me up,en +363354,Library Wars: The Last Mission,2015-10-05,120.0,,393328,tt4254046,,"Set 18 months after movie ""Library Wars."" After the government's enactment of the Media Betterment Act, battles wage between the Betterment Squads and the Library Defense. The Library Defense resists censorship and advocates freedom of expression. The biggest battle awaits for the Library Defense.",0,0,図書館戦争 THE LAST MISSION,ja +362617,Novatos,2015-10-05,,,,tt4069316,,,0,0,Novatos,es +331588,The Great Gilly Hopkins,2015-10-05,99.0,,,tt1226766,Family is where you find it,"Wisecracking, gum-chewing 12-year-old Gilly is well known in the foster system. Totally unmanageable, she has stayed with more families than she can remember and has outwitted them all. After all, how can she settle down when her real mother, the beautiful and glamourous Courtney, might be out there waiting for her? When Gilly is sent to live with the Trotters, the weirdest family yet, she isn’t planning to stick around. But cheerful, affectionate Maime Trotter isn’t giving up on Gilly just yet...",5000000,0,The Great Gilly Hopkins,en +363890,Night of the Living Dead: Darkest Dawn,2015-10-05,80.0,,,tt1512222,,A group of survivors trapped in a New York apartment fight to stay alive against legions of zombies.,750000,0,Night of the Living Dead: Darkest Dawn,en +422548,Jimmy Dore: Sentenced To Live,2015-10-06,77.0,,,tt4188766,,"Comedian and author, Jimmy Dore has been Sentenced To Live. His outrageous political humor promises to make you think, while you laugh. From the President, to the media, to his dog - he covers it all.",0,0,Jimmy Dore: Sentenced To Live,en +361018,Akron,2015-10-06,88.0,http://www.akronthefilm.com/,,tt3544014,,"Benny, a college freshman at the University of Akron, Ohio meets and falls for fellow freshman Christopher at a football game. With the support of their families and friends they embark on a new relationship. But a tragic event in the past involving their mothers soon comes to light and threatens to tear them apart.",0,0,Akron,en +356332,The Witness,2015-10-06,86.0,,,tt3568002,,"A brother's journey to unravel the truth about the mythic death and little known life of Kitty Genovese, who was reportedly murdered in front of 38 witnesses and has become the face of urban apathy.",0,0,The Witness,en +339530,Tremors 5: Bloodlines,2015-10-06,99.0,,91799,tt4180514,,"The giant, man-eating Graboids are back and even deadlier than before, terrorizing the inhabitants of a South African wildlife reserve as they attack from below-and above.",0,0,Tremors 5: Bloodlines,en +315855,The Forbidden Room,2015-10-07,128.0,,,tt3066630,,"A submarine crew, a feared pack of forest bandits, a famous surgeon, and a battalion of child soldiers all get more than they bargained for as they wend their way toward progressive ideas on life and love.",0,0,The Forbidden Room,en +361380,Barbie & Her Sisters in the Great Puppy Adventure,2015-10-07,76.0,,,tt5042426,,"Barbie and her sisters, Skipper, Stacie and Chelsea, and their adorable new puppy friends find unexpected mystery and adventure when they return to their hometown of Willows. While going through mementos in Grandma's attic, the sisters discover an old map, believed to lead to a long-lost treasure buried somewhere in the town. With their puppy pals in tow, the four girls go on an exciting treasure hunt, along the way discovering that the greatest treasure of all is the love and laughter they share as sisters!",0,0,Barbie & Her Sisters in the Great Puppy Adventure,en +347258,The Subjects,2015-10-08,80.0,http://thesubjectsmovie.com/,,tt4224478,Not everyone is meant to be a hero,Eight strangers go into a locked room for clinical trials on a new drug that gives them superpowers.,0,0,The Subjects,en +293970,The Final Girls,2015-10-09,91.0,,,tt2118624,,"A young woman grieving the loss of her mother, a famous scream queen from the 1980s, finds herself pulled into the world of her mom's most famous movie. Reunited, the women must fight off the film's maniacal killer.",0,0,The Final Girls,en +352094,Ladrones,2015-10-09,98.0,,,tt4296800,They're not just thieves... they're heroes for hire.,Alejandro Toledo comes out of his retirement from crime to help a community reclaim land stolen from them by a beautiful but ruthless businesswoman and her clan.,0,0,Ladrones,es +316042,Hyena Road,2015-10-09,120.0,http://rhombusmedia.com/film/hyena-road/,,tt4034452,One bullet can change everything,"Three different men, three different worlds, three different wars – all stand at the intersection of modern warfare – a murky world of fluid morality where all is not as it seems.",0,0,Hyena Road,en +360605,Invisible Sister,2015-10-09,77.0,,,tt4420110,What you see is only half the story,"Teenager Cleo's school science project goes quite awry, causing her popular older sister Molly to go invisible.",0,0,Invisible Sister,en +358901,Very Big Shot,2015-10-11,107.0,,,tt4971824,,A dark comedy about brothers running a drug-dealing business out of their takeout pizzeria.,0,0,Film Kteer Kbeer,en +362579,Anabel,2015-10-11,0.0,,,tt5032026,,"Anabel and his two roommates are looking for someone to share the rent. They choose an older gentleman who gain their trust, but soon they discover a strange and disturbing presence.",0,0,Anabel,es +363807,"Liar, Liar, Vampire",2015-10-12,66.0,,,tt4448304,,"When an ordinary boy Davis, suddenly becomes famous at school as people start to believe he's actually a vampire, vampire expert Cameron helps him act like a real vampire.",3500000,0,"Liar, Liar, Vampire",pt +371504,River,2015-10-13,349.0,,,tt4258440,,"John River, a brilliant police officer whose genius and fault-line is the fragility of his mind - a man haunted by the murder victims whose cases he must lay to rest",0,0,River,en +201085,Crimson Peak,2015-10-13,119.0,http://www.crimsonpeakmovie.com/,,tt2554274,Beware.,"In the aftermath of a family tragedy, an aspiring author is torn between love for her childhood friend and the temptation of a mysterious outsider. Trying to escape the ghosts of her past, she is swept away to a house that breathes, bleeds… and remembers.",55000000,74679822,Crimson Peak,en +359255,The Inhabitants,2015-10-13,90.0,,,tt3919598,,A young couple gets more than they bargained for when they buy an historic bed and breakfast in New England only to discover that the old house is hiding a dark secret within its walls.,0,0,The Inhabitants,en +348025,Families,2015-10-14,113.0,,,tt3613648,,"Jérôme Varenne, a French financier, lives and works in Shanghai with Chen-Li, his life and business partner. One day, during a short stay in Paris, while paying a call to his mother, he is very displeased to learn from her and his hated brother, that the family house in Ambray is going to be sold. Jerome decides to go to the town where he grew up to see what is going on. Little does he know how eventful his escapade will be. Little does he know that it will change his life from soup to nuts...",0,0,Belles Familles,fr +368051,Don't Hug Me I'm Scared 5,2015-10-14,6.0,http://beckyandjoes.com/dont-hug-me-im-scared-5/,,tt5114650,The food is talking.,The puppets learn about eating healthy.,0,0,Don't Hug Me I'm Scared 5,en +356842,The Ones Below,2015-10-14,87.0,http://www.bbc.co.uk/bbcfilms/film/the_ones_below,,tt4126438,How well do you know your neighbors?,A couple expecting their first child discover an unnerving difference between themselves and the couple living in the flat below them who are also having a baby.,0,0,The Ones Below,en +356296,Suburra,2015-10-14,130.0,,,tt4025514,,"A gangster known as ""Samurai"" wants to turn the waterfront of Rome into a new Las Vegas. All the local mob bosses have agreed to work for this common goal. But peace is not to last long.",7000000,0,Suburra,it +356161,Phantom Boy,2015-10-14,84.0,http://www.tiff.net/festivals/festival15/tiffkids/phantom-boy,,tt1856057,My name is Leo and I have a secret,An 11-year-old boy becomes an unlikely superhero when he discovers that he has the ability to leave his body and fly through walls.,0,0,Phantom Boy,fr +385654,Life Is a Trumpet,2015-10-15,92.0,,,tt2936938,,"Life Is a Trumpet has a loose jazz musician as the groom, a butcher as his father, and two families of different backgrounds whose members are not as different as one might expect.",0,0,Život je truba,hr +345438,"Ja, Ik Wil!",2015-10-15,96.0,,,tt4208868,,"Roos is pretty, successful and in her early-thirties. Every time she dreams of marriage, she gets dumped. When she gets invites to weddings from people all around her, she takes her young intern Daan as her date. She puts herself in awkward situations en falls deeply in love with a handsome doctor. They say one marriage leads to the other, but is he the one she'll say ""Yes, I do!"" to?",0,0,"Ja, Ik Wil!",nl +360283,Heart Like a Hand Grenade,2015-10-15,96.0,http://www.greenday.com/heartlikeahandgrenade,,tt1018728,The Making of the Album American Idiot,"More than 10 years after the release of Green Day's American Idiot, the 2015 Rock and Roll Hall of Fame Inductees present this time capsule rock doc that takes us inside the making of their award-winning punk rock opera.",0,0,Heart Like a Hand Grenade,en +322148,Caedes,2015-10-15,0.0,,,tt3367250,,Directed by Slavko Spionjak.,0,0,Caedes,en +385379,Mad Tiger,2015-10-16,82.0,http://madtigermovie.com/,,tt3911554,,"Two best friends spent the last fifteen years touring the country in their performance art punk band. When one of them decides to quit, they both face deeper challenges than expected.",0,0,Mad Tiger,en +356486,Lumberjack Man,2015-10-16,105.0,,,tt3201722,Welcome to Summer Camp.,"As the staff of Good Friends Church Camp prepares for a spring break filled with ""Fun Under the Son"", a demon logger rises from his sap boiler to wreak his vengeance and feast on flapjacks soaked in the blood of his victims.",0,0,Lumberjack Man,en +342684,Vulcania,2015-10-16,,,,tt2392451,,,0,0,Vulcania,es +339362,SuperBob,2015-10-16,82.0,http://www.superbob.co.uk/,,tt3055402,,"Six years ago, Robert Kenner, a mild mannered postman from Peckham, South London was struck by a meteor which bestowed him with super powers. Today, Bob is an overworked under-appreciated “civil servant” for the British government. He spends most waking hours saving people and filling out forms. There has been no time for anything else. Least of all love. But today he has a day off. And best of all, he has a date with the woman he once met at the library. Now all he has to do is act as if this isn’t the most exciting day of his life. Apparently that puts people off.",0,0,SuperBob,en +356483,Unnatural,2015-10-16,89.0,,,tt3551400,Some things were never meant to be.,Global climate change prompts a scientific corporation to genetically modify Alaskan polar bears with horrific and deadly results.,0,0,Unnatural,en +363413,Pyaar Ka Punchnama 2,2015-10-16,159.0,,,tt4430136,,"After falling in love, three roommates experience changes in their lives.",1,0,Pyaar Ka Punchnama 2,hi +245168,Suffragette,2015-10-16,106.0,,,tt3077214,Mothers. Daughters. Rebels.,Based on true events about the foot soldiers of the early feminist movement who were forced underground to evade the State.,14000000,16002420,Suffragette,en +264644,Room,2015-10-16,117.0,http://www.roomthemovie.com,,tt3170832,Love knows no boundaries,Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?,6000000,35401758,Room,en +362439,They Found Hell,2015-10-17,90.0,,,tt5113926,,"When a group of gifted college students run a secret teleportation experiment, they accidentally open a portal to another dimension, trapping them in Hell. One by one they are hunted, tortured and killed by the denizens of Hell who are bent on stealing their souls.",0,0,They Found Hell,en +391004,His Girlfriend,2015-10-17,103.0,http://senpaitokanojo.jp/,,tt4601064,,Teen romance is complicated for a boy who's secretly in love with a college girl but who's also captured the heart of a high school freshman.,0,0,先輩と彼女,ja +374618,Scrawl,2015-10-17,82.0,https://www.facebook.com/scrawlmovie,,tt2501366,Death Cannot Be Rewritten,"A boy writes a comic book with his best friend, and finds situations depicted in the comic book coming to life. Along with the appearance of a mysterious girl, the boy is forced to face the reality of what he has written, and begins a battle to attempt to rewrite death.",0,0,Scrawl,en +361025,Winning Dad,2015-10-18,81.0,http://winningdad.com/,,tt3030580,,A young man tricks his homophobic father into a camping trip with his secret boyfriend.,0,0,Winning Dad,en +167073,Brooklyn,2015-10-20,111.0,http://www.foxsearchlight.com/brooklyn/,,tt2381111,"Two countries, two loves, one heart","In 1950s Ireland and New York, young Ellis Lacey has to choose between two men and two countries.",11000000,62076141,Brooklyn,en +361050,Death Valley,2015-10-20,88.0,http://www.deathvalleythemovie.com/,,tt2788512,,"Four strangers on a drunken wedding dash from LA to Vegas hit a mysterious woman in the desert and must overcome injuries, the elements, and ultimately each other to survive.",0,0,Death Valley,en +320910,Naanum Rowdydhaan,2015-10-21,140.0,,,tt5128328,,"Pandian, the son of a cop and a wannabe rowdy, falls in love with Kadambarai, a hearing-impaired girl, who wants him to take on Killivalavan, a gangster-politician who has murdered her parents.",0,0,நானும் ரௌடிதான்,ta +258480,Carol,2015-11-20,118.0,http://carolfilm.com/,,tt2402927,Some people change your life forever.,"In 1950s New York, a department-store clerk who dreams of a better life falls for an older, married woman.",11800000,40272135,Carol,en +352197,Heart of a Dog,2015-10-21,75.0,,,tt4935446,What do you see when you close your eyes?,"Lyrical and powerfully personal essay film that reflects on the deaths of her husband Lou Reed, her mother, her beloved dog, and such diverse subjects as family memories, surveillance, and Buddhist teachings.",0,0,Heart of a Dog,en +337104,Chronic,2015-10-21,93.0,http://www.curzonartificialeye.com/chronic,,tt3850496,The last patient,"David is a nurse who works with terminally ill patients. Dedicated to his profession, he develops strong relationships people he cares for. But outside of work, it's a different story altogether.",0,0,Chronic,en +329805,My King,2015-10-21,130.0,,,tt3478962,,"Tony is admitted to a rehabilitation center after a serious ski accident. Dependent on the medical staff and pain relievers, she takes time to look back on a turbulent relationship that she experienced with Georgio.",0,282000,Mon roi,fr +362974,The Exclusive Beat the Devil's Tattoo,2015-10-22,125.0,,,tt5034194,"ONCE IT GOES ON AIR, THE TRUTH IS MEANINGLESS","An unsuccessful journalist becomes a star in the media after he wrote an article about the memo of an unknown serial killer. As he learns that the memo was just part of a novel, he decides to cover up everything.",0,0,특종: 량첸살인기,ko +363757,Io che amo solo te,2015-10-22,102.0,http://www.01distribution.it/film/io-che-amo-solo-te,,tt4835394,,Lukewarm wedding acquires a new meaning when the father of the groom rekindles his long-time love for the mother of the bride.,0,0,Io che amo solo te,en +367882,The Phone,2015-10-22,115.0,,,tt5034276,,"A magnetic field anomaly allows a man to phone back into the past to his wife, who was murdered years ago. But to save her, he must identify the killer now and warn her until the anomaly disappears.",0,0,더 폰,ko +321779,Lost in Munich,2015-10-22,120.0,,,tt1734579,,,1509896,0,Ztraceni v Mnichově,cs +335053,My Big Night,2015-10-23,100.0,,,tt4412362,,"During the never-ending TV taping for a New Year's Eve program, peoples personal lives clash and eventually explode out into the open.",4000000,0,Mi gran noche,es +302528,Remember,2015-10-23,94.0,http://www.rememberthemovie.com/,,tt3704050,Dark truths will come to light.,"With the aid of a fellow Auschwitz survivor and a hand-written letter, an elderly man with dementia goes in search of the person responsible for the death of his family.",0,1986615,Remember,en +287636,The Sound And The Fury,2015-10-23,101.0,,,tt3026144,,"A look at the trials and tribulations of The Compson siblings, living in the deep south during the early part of the 20th century.",0,0,The Sound and the Fury,en +206647,Spectre,2015-10-26,148.0,http://www.sonypictures.com/movies/spectre/,645,tt2379713,A Plan No One Escapes,"A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.",245000000,880674609,Spectre,en +422550,Sarah Colonna: I Can't Feel My Legs,2015-10-27,67.0,,,tt4188950,,"New York Times Best Seller and ""Chelsea Lately"" regular, Sarah Colonna, has some stories to tell and she doesn't care what you think. From how to get out of jury duty to online dating, Sarah does not disappoint in this new special.",0,0,Sarah Colonna: I Can't Feel My Legs,en +380057,Rory Scovel: The Charleston Special,2015-10-27,58.0,http://www.roryscovel.com/newdesign/,,tt6051412,,"Mixing his spontaneous creativity and absurd view of the world, stand-up comic Rory Scovel performs his first special in Charleston, South Carolina.",0,0,Rory Scovel: The Charleston Special,en +294016,Trumbo,2015-10-27,124.0,,,tt3203606,Are you now or have you ever been...,The career of screenwriter Dalton Trumbo is halted by a witch hunt in the late 1940s when he defies the anti-communist HUAC committee and is blacklisted.,15000000,8235661,Trumbo,en +365544,Крепость: щитом и мечом,2015-10-29,,,,tt5172306,,,0,0,Крепость: щитом и мечом,ru +364379,Cat Sick Blues,2015-10-29,101.0,http://phantasmesvideo.com,,tt4185862,All he needs is nine lives.,"When Ted’s beloved cat dies, the trauma triggers a terrible mental breakdown. His broken brain prompts him to bring his feline friend back – all he needs is nine human lives. Ted dons vicious deadly cat claw gloves and a creepy cat mask, and goes on a murderous rampage. As the butchery escalates, a twisted romance blossoms between Ted and Claire, a young woman who has also recently lost her cat in a horrifying incident.",0,0,Cat Sick Blues,en +361571,The Demons,2015-10-30,118.0,,,tt4247492,,A young boy begins to experience the adult world as he enters adolescence.,0,0,Les démons,fr +333091,Bare,2015-10-30,91.0,http://www.ifcfilms.com/films/bare/,,tt3741316,,A young woman's friendship with a drug-dealing drifter evolves into a lesbian romance.,0,0,Bare,en +218784,Freaks of Nature,2015-10-30,92.0,https://www.facebook.com/FreaksOfNatureMovie,,tt1817771,Get out undead or alive.,"In the town of Dillford, humans, vampires and zombies were all living in peace - until the alien apocalypse arrived. Now three teenagers-one human, one vampire, and one zombie-have to team up to figure out how to get rid of the visitors.",0,70958,Freaks of Nature,en +377362,Clarisse or Something About Us,2015-10-30,84.0,,,tt3170624,,"The dry quarry and a forest that still beats. A very sick father reviews the daughter. Resentments are brought to the table. The memory of the dead awakened by blood, objects, shadows and dreams affects Clarisse at this scenario of beauty and agony. Husband and business are expecting she in the city for a cathartic outcome.",0,0,Clarisse ou alguma coisa sobre nós dois,pt +356156,My Love Story!!,2015-10-31,144.0,http://ore-movie.jp/,,tt4681414,,"Takeo Goda (Ryohei Suzuki) is a high school student 2 m tall and weighting more than 100 kg. He has a righteous character. The male students adore him, but female students do not like him. All of the girls Takeo likes prefer his handsome friend Makoto Sunakawa (Kentaro Sakaguchi). One day, Takeo saves female high school student Rinko Yamato (Mei Nagano) from a pervert on train. Takeo falls in love with her at first sight. He feels Rinko likes Makoto, but Makoto isn't the one she likes. Takeo struggles to liaise between Rinko and Makoto.",0,0,俺物語!!,ja +363439,Secrets of a Psychopath,2015-11-03,91.0,https://www.facebook.com/SecretsOfAPsychopathMovie,,tt2855724,A new dimension of terror.,Two siblings lure unsuspecting victims to their house through a dating site for games and slaughter.,0,0,Secrets of a Psychopath,en +366143,Binky Nelson Unpacified,2015-11-04,4.0,,440769,tt5242320,,"Little baby needs his pacifier, but loses it during a heist in a museum. What will he do? Short #3 from the 'Minions: 3 Mini-Movie Collection'.",0,0,Binky Nelson Unpacified,en +228294,Now Add Honey,2015-11-05,100.0,http://www.nowaddhoney.com/,,tt2577854,Take one dysfunctional family...,"When a pop-star cousin comes to stay, a family's once normal life changes drastically.",0,0,Now Add Honey,en +398289,Life on the Line,2015-11-05,97.0,,,tt3727202,,A crew of men who do the high-wire work of fixing the electrical grid are hit by a sudden deadly storm.,0,0,Life on the Line,en +227973,The Peanuts Movie,2015-11-05,88.0,http://www.peanutsmovie.com/,,tt2452042,The story of an underdog. And his dog.,"Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest back home.",99000000,246233113,The Peanuts Movie,en +318922,Kill Your Friends,2015-11-06,100.0,http://www.killyourfriendsfilm.co.uk/,,tt2474958,Getting to the top can be murder,"In the late 1990s, a drug-addled nihilist resorts to murder to climb the ladder of the London music industry.",0,0,Kill Your Friends,en +335869,This Isn't Funny,2015-11-06,86.0,https://www.facebook.com/thisisntfunnymovie,,tt3334212,Right Person. Wrong Time.,Meeting the right person at the wrong time can be the best thing that ever happened to you.,0,0,This Isn't Funny,en +333360,Peggy Guggenheim: Art Addict,2015-11-06,97.0,,,tt3790720,,"Bouncing between Europe and the United States as often as she would between lovers, Peggy Guggenheim’s life was as swirling as the design of her uncle’s museum, and reads more like fiction than any reality imaginable. Peggy Guggenheim – Art Addict offers a rare look into Guggenheim’s world: blending the abstract, the colorful, the surreal and the salacious, to portray a life that was as complex and unpredictable as the artwork Peggy revered and the artists she pushed forward.",0,0,Peggy Guggenheim: Art Addict,en +365753,Rodeo and Juliet,2015-11-06,88.0,http://talmarc.blogspot.com/p/rodeo-juliet.html,,tt4693860,,"Juliet heads to her grandfather’s ranch with her mother for Christmas, where she meets a horse named Rodeo and young cowboy who change her life.",0,0,Rodeo and Juliet,en +375732,The Ritchie Blackmore Story,2015-11-06,134.0,,,tt4934296,,"The Ritchie Blackmore Story traces the long and winding road of the guitar legend — from his early days as a session player (with legendary producer Joe Meek) and his early ’60s combo the Outlaws up through his years guiding one of hard rock’s finest bands, Deep Purple, and into his recent work with Blackmore’s Night.",0,0,The Ritchie Blackmore Story,en +312831,The Hallow,2015-11-06,97.0,http://www.corinhardy.com/the-woods/,,tt2474976,Nature has a dark side.,A family who moved into a remote mill house in Ireland finds themselves in a fight for survival with demonic creatures living in the woods.,0,0,The Hallow,en +370168,Chicago Boys,2015-11-08,,,,tt4123562,,,0,0,Chicago Boys,es +395883,Andron,2015-11-08,100.0,http://ambidistribution.com/titles?title=Andron,,tt4073890,Only one survives,"A group of people are plunged into a dark, claustrophobic maze, where they must fight to survive, as the outside world watches.",0,0,Andron,en +364088,Decay,2015-11-09,98.0,,,tt2776704,All Jonathan wanted was somebody to love.,"Jonathan is a very lonely man. One day, he gets a visitor in his house: a young woman who, through a jarring turn of events, ends up dead. He does not report it because he is happy to have a friend, but now the body begins to decay.",0,0,Decay,en +228066,Victor Frankenstein,2015-11-10,109.0,http://www.foxmovies.com/movies/victor-frankenstein,,tt1976009,Discover the origin of the monster and his creation.,Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.,40000000,34227298,Victor Frankenstein,en +365709,Berserker,2015-11-10,0.0,,,tt4538930,,"Hugo Vartan is an author looking for a juicy story for his next book. He comes across one in the form of the sister of his flatmate's boyfriend, who has been hospitalised in a psychiatric ward for, seemingly, murdering her partner, beheading him with a knife and sticking his head on the steering wheel of her car.",0,0,Berserker,es +362150,Vedhalam,2015-11-10,156.0,,,tt5178278,,"Ganesh, a cab driver and a doting brother to his sister Tamizh, is hunting down three notorious criminals in Kolkata. Who is he actually and what's his motive?",0,0,வேதாளம்,ta +355890,Jane Wants a Boyfriend,2015-11-11,101.0,http://www.janewantsaboyfriend.com/,,tt3302654,,A young woman with Asperger's tries to find her first boyfriend with a little help from her older sister.,0,0,Jane Wants a Boyfriend,en +329682,The Anarchists,2015-11-11,101.0,,,tt4466336,,"Set in 1899 Paris, a young police sergeant is chosen to infiltrate a group of anarchists, an opportunity he sees to rise through the ranks. However, he soon finds himself becoming attached to the group.",0,0,Les Anarchistes,fr +328589,The Lady in the Van,2015-11-13,104.0,http://www.bbc.co.uk/bbcfilms/film/the_lady_in_the_van,,tt3722070,A mostly true story,"The true story of the relationship between Alan Bennett and the singular Miss Shepherd, a woman of uncertain origins who ‘temporarily’ parked her van in Bennett’s London driveway and proceeded to live there for 15 years.",6000000,41387687,The Lady in the Van,en +366759,Ali Baba ve 7 Cüceler,2015-11-13,0.0,,,tt4728338,,,0,0,Ali Baba ve 7 Cüceler,tr +334557,Port of Call,2015-11-13,98.0,,,tt4417522,,A grizzled detective works to solve the murder of a 16-year-old Hunan girl.,5000000,0,踏血尋梅,cn +336004,Heist,2015-11-13,93.0,,,tt3276924,Never make a bet you can't afford to lose.,"A father is without the means to pay for his daughter's medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they're forced to hijack a city bus.",8900000,4100000,Heist,en +367735,John Mulaney: The Comeback Kid,2015-11-13,62.0,,,tt5069564,,"Armed with boyish charm and a sharp wit, the former ""SNL"" writer offers sly takes on marriage, his beef with babies and the time he met Bill Clinton.",0,0,John Mulaney: The Comeback Kid,en +394668,Can We Take a Joke?,2015-11-13,0.0,https://www.facebook.com/canwetakeajoke,,tt4324916,,The modern limits of humor in an increasingly outraged society are examined.,0,0,Can We Take a Joke?,en +375170,The Tag-Along,2015-11-17,92.0,,,tt5078188,The uninvited can only be seen when you're tagged along,A story about a video of a group of people going hiking and a mysterious little girl in a red dress following them.,0,0,紅衣小女孩,zh +329809,Courted,2015-11-18,98.0,,,tt4216908,,"When a feared judge of the French court, Xavier Racine, encounters a French-Danish juror, Ditte Lorensen-Coteret, at a murder trial, their shared past is slowly uncovered.",0,0,L'Hermine,fr +348673,Noma: My Perfect Storm,2015-11-19,100.0,http://www.noma-myperfectstorm.com/,,tt4610372,,"A creative journey into the unique mind of René Redzepi, chef and co-owner of Noma, voted best restaurant in the world four times.",0,0,Noma: My Perfect Storm,en +370213,Sonita,2015-11-20,91.0,,,tt5278928,,"If 18-year-old Sonita had a say, Michael Jackson and Rihanna would be her parents and she'd be a rapper who tells the story of Afghan women and their fate as child brides. She finds out that her family plans to sell her to an unknown husband for $9,000.",0,0,Sonita,fa +348537,Spanish Affair 2,2015-11-20,106.0,,388180,tt3626742,,"Amaia after breaking up with Rafa, falls in love with a Catalonian. Koldo, her father, goes to Sevilla to persuade Rafa to go to Catalonia and take Amaia's heart back.",4500000,0,Ocho apellidos catalanes,es +345003,10 Days in a Madhouse,2015-11-20,111.0,,,tt3453052,,"Nellie Bly, a 23 year-old reporter for Joseph Pulitzer, goes undercover in the notorious Blackwell's Island women's insane asylum in order to expose corruption, abuse and murder.",1200000,0,10 Days in a Madhouse,en +301325,#Horror,2015-11-20,90.0,http://www.hashtaghorror.com/,,tt3526286,Death is trending.,"Inspired by actual events, a group of 12 year old girls face a night of horror when the compulsive addiction of an online social media game turns a moment of cyber bullying into a night of insanity.",1500000,0,#Horror,de +363479,Merry Matrimony,2015-11-22,84.0,http://hallmarkchannel.com/merry-matrimony,,tt5210048,,Brie Traverston is up for partner at her firm if she can successfully coordinate a Christmas wedding reshoot and ignore all the feelings that come with working with the one-that-got-away Eddie Chapman and his possibly new girlfriend Isabella.,0,0,Merry Matrimony,en +336691,Paternity Leave,2015-11-24,90.0,http://www.paternityleavefilm.com/,,tt3300442,,"Four years into his first stable relationship, a man finds out that he is pregnant with his partner's baby.",0,0,Paternity Leave,en +366548,Les Dissociés,2015-11-24,0.0,,,tt5148864,,,0,0,Les Dissociés,fr +345637,Sanjay's Super Team,2015-11-25,7.0,,,tt4661600,,"Sanjay's Super Team follows the daydream of a young Indian boy, bored with his father's religious meditation, who imagines ""a kind of ancient, Hindu version of The Avengers, with the gods appearing like superheros.",0,0,Sanjay's Super Team,en +312221,Creed,2015-11-25,133.0,http://creedthemovie.com/,1575,tt3076658,Your legacy is more than a name,"The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.",37000000,173567581,Creed,en +369245,La felicità è un sistema complesso,2015-11-26,117.0,http://www.bimfilm.com/schede/lafelicitaeunsistemacomplesso/,,tt4275910,,Enrico Giusti works for a big corporation: he tries his best to save dying companies.,0,0,La felicità è un sistema complesso,it +359807,Chico - Artista Brasileiro,2015-11-26,115.0,,,tt5251348,,,0,0,Chico - Artista Brasileiro,pt +363483,12 Gifts of Christmas,2015-11-26,84.0,,,tt5133810,,"When Anna Parisi, an unemployed fine arts painter, is unable to make ends meet, she is hired to become a personal Christmas shopper for Marc, an uptight corporate exec. As they begin working together, Marc learns that Christmas giving has less to do with the amount of money spent and more to do with the importance of the gift, while Anna discovers she might find success as an artist in a way she never expected. The best gift of all of course is the love they discover with one another.",0,0,12 Gifts of Christmas,en +287903,Krampus,2015-11-26,98.0,http://www.krampusthefilm.com/,,tt3850590,You don't want to be on his list.,A horror comedy based on the ancient legend about a pagan creature who punishes children on Christmas.,15000000,61548707,Krampus,en +320588,"Hello, My Name Is Doris",2015-11-27,95.0,http://www.hellomynameisdorismovie.com/,,tt3766394,She's not ready to act her age,A self-help seminar inspires a sixty-something woman to romantically pursue her younger co-worker.,1000000,14444999,"Hello, My Name Is Doris",en +360603,Crown for Christmas,2015-11-27,84.0,,,tt5133572,,"After getting fired from her job as a maid at a ritzy New York City hotel, Allie reluctantly accepts a temp gig as the governess to a young girl who is part of a powerful family in Europe that lives in an actual castle. After arriving, Allie learns the girl is named Princess Theodora and her father is Maximillion, the King of Winshire. The King informs Allie that the Princess has a tendency to terrorize authority figures, a predilection that has grown worse since her mother’s death. Yet governess and Princess wind up hitting it off while at the same time a spark forms between Allie and Max. However, Countess Celia is expecting to wed the King. Will Max take a stand for his feelings for Allie and make it truly a merry Christmas for all (or at least, most)?",0,0,Crown for Christmas,en +357390,Ajin: Demi-Human - Compel,2015-11-27,0.0,http://www.ajin.net/,,tt5234428,,"For high schooler Kei—and for at least forty-six others—immortality comes as the nastiest surprise ever. Sadly for Kei, such a feat doesn't make him a superhero. In the eyes of both the general public and governments, he's a rare specimen who needs to be hunted down and handed over to scientists to be experimented on for life—a demi-human who must die a thousand deaths for the benefit of humanity.",0,0,亜人 第1部「衝動」,ja +404459,Road to Yesterday,2015-11-27,95.0,http://www.roadtoyesterday.com/,,tt4871120,A journey down the path of revelation,"Victoria returns to Nigeria from the UK to help estranged husband Izu cope with his uncle's death. Hoping to save his marriage, Izu brings Victoria on his trip to the funeral, during which they reflect on their courtship, secrets and regrets.",0,0,Road to Yesterday,en +375599,Bad Guys Always Die,2015-11-27,104.0,,,tt5157018,,"A young Chinese man and his friends visit Jeju Island in South Korea. There, they meet a mysterious Korean woman.",0,5000,坏蛋必须死,zh +368342,Mordkommission Berlin 1,2015-12-01,123.0,http://www.w-b-television.de/projekte/projekt-detail/projekt/berlin-eins/,,tt4610102,Eine Stadt unter Mordverdacht,A crime movie directed by Marvin Kren.,0,0,Mordkommission Berlin 1,de +446345,La révolution n'est pas un dîner de gala,2015-12-01,27.0,,,tt4659060,,Lola is hitch-hiking on a highway rest area when she meets Karim. He agrees to drive her all the way to Paris. Lola wants to become a film actress. Karim wants to change the course of History. The revolution will happen with or without them.,0,0,La révolution n'est pas un dîner de gala,fr +369820,I'm Brent Morin,2015-12-01,67.0,,,tt5280664,,"In a witty solo show, Brent Morin serves up infectious laughs on the agony of puberty, hot guy problems and the time a girl dumped him for a magician.",0,0,I'm Brent Morin,en +400668,KidPoker,2015-12-01,88.0,,,tt5641138,,"Follow the winding career and personal life of professional poker phenom Daniel Negreanu, who rose from humble roots to become the game's top ace.",0,0,KidPoker,en +371818,Ouzeri Tsitsanis,2015-12-03,112.0,,,tt4508712,,"During World War II in Greece, under the submission of Germans, one Christian, Giorgos, falls in love with a Jewish, Estrea, something completely forbidden. Can they and their families overcome all the obstacles, along with racial discriminations and hardship? The story mainly takes place in an ouzeria, in which Tsitsanis works, one of the greatest Greek composer, librettist and singer in the 20th century.",0,0,Ουζερί Τσιτσάνης,el +374247,Die Salzprinzessin,2015-12-03,,,,tt5284240,,,0,0,Die Salzprinzessin,de +257088,Point Break,2015-12-03,114.0,https://www.facebook.com/PointBreakMovie,,tt2058673,The only law that matters is gravity,"A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, ""Point Break"".",105000000,133718711,Point Break,en +340275,Chi-Raq,2015-12-04,127.0,,,tt4594834,No peace. No piece.,"A modern day adaptation of the ancient Greek play Lysistrata by Aristophanes, set against the backdrop of gang violence in Chicago.",0,0,Chi-Raq,en +370234,Dementia,2015-12-04,90.0,,,tt3611002,Let the memory games begin.,"After being diagnosed with Dementia, an elderly war veteran is forced by his estranged family to hire a live-in nurse, only to find she harbors a sinister secret.",0,0,Dementia,en +277713,Sunset Song,2015-12-04,135.0,,,tt2262161,,The daughter of a Scottish farmer comes of age in the early 1900s.,0,0,Sunset Song,en +402455,125 Years Memory,2015-12-05,132.0,,,tt3512072,,"125 Years Memory (海難1890 Kainan ) is a 2015 drama film directed by Mitsutoshi Tanaka (ja) and written by Eriko Komatsu (ja).A Japanese-Turkish co-production, the film was released in Japan by Toei on December 5, 2015 and in Turkey by Mars on December 25, 2015. It received ten nominations at the 39th Japan Academy Prize, winning the awards for Best Art Direction and Best Sound Recording.",0,0,海難1890,ja +371003,Kill Game,2015-12-05,102.0,,,tt3024324,No one is laughing now.,"In the fictional town of Grace Arbor the answers are never clear.Who is underneath the mask?PRANK is the story of a group of high school kids who amuse themselves by pulling pranks on unsuspecting students and teachers. They are all popular, good looking, the kids voted most likely to succeed. But at their core lies a cruelty and shallowness which comes with the territory of privilege. One night, a prank goes horribly wrong and a teenager is killed. The gang covers it up as a drowning accident but five years later, their lives are turned upside down when Jimmy Edwards, is killed by a serial killer wearing a haunting Marilyn Monroe mask. Soon, the gang are killed one by one in manners mirroring the pranks they pulled in high school. Is it revenge? Is it karma?",0,0,Kill Game,en +366630,The Bridge,2015-12-06,89.0,http://www.hallmarkchannel.com/karen-kingsburys-the-bridge,451539,tt4698718,,"Karen Kingsbury's The Bridge is the sweeping tale of Molly Callens (Findlay) and Ryan Kelly (Nash), two young students who share a profound friendship their first semester in college, a time that becomes the defining moment of their lives.",0,0,The Bridge,en +371942,Le nozze di Laura,2015-12-08,,,,tt5256706,,,0,0,Le nozze di Laura,it +352025,Un plus une,2015-12-09,115.0,,,tt1918911,,A successful film composer falls in love when he travels to India to work on a Bollywood retelling of Romeo and Juliet.,0,0,Un plus une,fr +345775,Long Way North,2015-12-10,80.0,http://toutenhautdumonde.blogspot.com/,,tt2262345,,"1892, Saint Petersburg. Sasha, a young Russian aristocrat, has always been fascinated by her grandfather's life as an adventurer. A renowned explorer, he designed a magnificent arctic ship, but he hasn't returned from his last expedition to the North Pole. To save her family's honor, Sasha runs away. Headed towards the Great North, she follows her grandfather's trail in search of his famous ship.",0,0,Tout en haut du monde,da +325173,Close Range,2015-12-11,80.0,https://www.facebook.com/closerangemovie/,,tt3511596,Colton MacReady...is coming home.,"A rogue soldier turned outlaw is thrust into a relentless fight with a corrupt sheriff, his obedient deputies, and a dangerous drug cartel in order to protect his sister and her young daughter.",0,0,Close Range,en +366631,On the Twelfth Day of Christmas,2015-12-12,90.0,http://hallmarkchannel.com/on-the-twelfth-day-of-christmas,,tt5210078,,Maggie Chalke is torn between her journalistic integrity and helping her long time crush Mitch O'Grady when her boss orders her to write a story for the paper about the Secret Santa gifts she's been sending Mitch to help him relearn his love for Christmas.,0,0,On the Twelfth Day of Christmas,en +369052,Debbie Macomber's Dashing Through the Snow,2015-12-13,90.0,,,tt5070196,,"Stranded at an airport at Christmastime, Ashley Harrison accepts a ride from Dash Sutherland, who has just rented the last car in town. As the pair heads north, their adventures include car trouble, adopting a puppy and being secretly tailed by federal agents, who believe Ashley is up to no good. With a hint of romance gradually filling the air will these two fall in love or will their journey bring about an unexpected road bump to romance?",0,0,Debbie Macomber's Dashing Through the Snow,fr +421962,Lily & the Snowman,2015-12-13,2.0,http://www.cineplex.com/snowman,,tt6057856,,"Every winter, a magical snowman puts on a show for a little girl. But over time, life pulls them apart. Will she remember to take the time for what she loved?",0,0,Lily & the Snowman,en +373977,Childhood's End,2015-12-14,246.0,,,tt4146128,,"After peaceful aliens invade earth, humanity finds itself living in a utopia under the indirect rule of the aliens, but does this utopia come at a price?",0,0,Childhood's End,en +140607,Star Wars: The Force Awakens,2015-12-15,136.0,http://www.starwars.com/films/star-wars-episode-vii,10,tt2488496,Every generation has a story.,"Thirty years after defeating the Galactic Empire, Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.",245000000,2068223624,Star Wars: The Force Awakens,en +372640,The Very Private Life of Mister Sim,2015-12-16,0.0,,,tt4313614,,,0,0,La vie très privée de monsieur Sim,fr +258509,Alvin and the Chipmunks: The Road Chip,2015-12-17,92.0,http://www.foxmovies.com/movies/alvin-and-the-chipmunks-the-road-chip,167613,tt2974918,Fast & furry-ous,"Through a series of misunderstandings, Alvin, Simon and Theodore come to believe that Dave is going to propose to his new girlfriend in New York City - and dump them. They have three days to get to him and stop the proposal.",0,233755553,Alvin and the Chipmunks: The Road Chip,en +371084,Mike Epps: Don't Take It Personal,2015-12-18,60.0,,,tt5339586,,Mike Epps wastes no time bringing his unapologetic and raunchy swagger to a howling live audience at the historic Orpheum Theater in Los Angeles.,0,0,Mike Epps: Don't Take It Personal,en +362045,Bajirao Mastani,2015-12-18,150.0,,,tt3735246,,"A historical account of the romance between the Maratha general, Baji Rao I and Mastani, a Muslim princess.",19500000,56000000,Bajirao Mastani,hi +365222,Ip Man 3,2015-12-19,105.0,,70068,tt2888046,,"When a band of brutal gangsters led by a crooked property developer make a play to take over the city, Master Ip is forced to take a stand.",36000000,156844753,葉問3,cn +370687,Mythica: The Necromancer,2015-12-19,93.0,http://www.mythicamovie.com/#!blank/y9ake,363092,tt3608646,,Mallister takes Thane prisoner and forces Marek and her team on a quest. Marek tracks down the Necromancer for a final showdown for the Darkspore.,0,0,Mythica: The Necromancer,en +369054,Christmas Land,2015-12-20,83.0,,,tt5265662,,"Jules has just inherited a quaint Christmas tree farm bequeathed her by her grandmother. This is good news, since she plans to sell it and use the profits to buy her dream home in the city. The farm needs a bit of sprucing up, but Jules is a natural fixer so she’ll have it cleaned up in no time to impress buyers and be out by Christmas. But the longer Jules stays on the farm and the more she learns how important Christmas Land has been to so many families, the more Jules starts to question her motives to sell. And when the perfect buyer turns out to have ulterior motives for the farm, Jules must do whatever it takes to save Christmas Land.",0,0,Christmas Land,en +348320,Scream Week,2016-01-28,0.0,,,tt4849176,,"Six friends go to party for a week during the ""Sneekweek"". But they are haunted by a secret from their past.",0,0,Sneekweek,nl +352208,Where to Invade Next,2015-12-23,120.0,http://wheretoinvadenext.com/,,tt4897822,Prepare to be liberated,"Academy Award-winning director Michael Moore returns with what may be his most provocative and hilarious film yet: Moore tells the Pentagon to ""stand down"" — he will do the invading for America from now on.",0,0,Where to Invade Next,en +366566,Le Grand partage,2015-12-23,0.0,,,tt1659611,,,0,0,Le Grand partage,fr +314388,Mountains May Depart,2015-12-23,131.0,,,tt3740778,,"The life of Tao, and those close to her, is explored in three different time periods: 1999, 2014, and 2025.",0,0,山河故人,zh +373838,The Best Day Ever,2015-12-24,112.0,,,tt5083604,,"For a successful DPS officer time to start a family, but he lives with his mother. When Petia decides to propose Olya marriage, his official car crashes into drunken pop star.",0,0,Самый лучший день,ru +274479,Joy,2015-12-24,124.0,http://www.foxmovies.com/movies/joy,,tt2446980,,A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.,60000000,101134059,Joy,en +375742,The Lure,2015-12-25,92.0,,,tt5278832,,"Two mermaid sisters, who end up performing at a nightclub, face cruel and bloody choices when one of them falls in love with a beautiful young man.",1300000,101657,Córki dancingu,pl +374319,Prinzessin Maleen,2015-12-25,0.0,,,tt5295224,,,0,0,Prinzessin Maleen,de +374460,A Grand Night In: The Story of Aardman,2015-12-26,59.0,,,tt5304980,,"Julie Walters tells the story of how Morph, Shaun the Sheep and that cheese-loving man Wallace and his dog Gromit first came to life.",0,0,A Grand Night In: The Story of Aardman,en +390376,Rag Union,2015-12-30,97.0,,,tt4767340,,"The life of quiet teenager Vanya suddenly change after he meets a three young men who call themselves ""Rag Union"".",0,0,Тряпичный союз,ru +291270,Anomalisa,2015-12-30,90.0,http://www.anomalisa.com/,,tt2401878,,A man crippled by the mundanity of his life experiences something out of the ordinary.,8000000,5659286,Anomalisa,en +373200,Detective Chinatown,2015-12-31,135.0,http://www.DetectiveChinatown.com/,,tt5290882,,"After being rejected from the police college, a mannerly man travels to Bangkok where he and an energetic distant relative must solve a murder case.",0,0,唐人街探案,zh +334394,Baskin,2015-12-31,97.0,http://www.baskinthemovie.com/,,tt4935418,Enter a world of suffering and madness,Feature length version of the 2013 Turkish short film about police making a horrifying discovery in an apartment building.,0,0,Baskin,tr +414067,Amber Alert,2016-01-01,90.0,http://www.incendo.ca/productions/amber-alert,,tt4622108,,A 20 year old man takes a bus full of young children hostage in exchange for money to help his sick mother. Meanwhile a detective must over come doubt from family and co-workers while she tries to negotiate with the hostage taker.,0,0,Amber Alert,en +369406,Nowhere Boys: The Book of Shadows,2016-01-01,80.0,http://www.nowhereboysmovie.com/,,tt4836736,,"A year after the boys crossed dimensions, discovered magic and battled the restoring demon, they are back home in Bremin and are struggling with everyday teenage life. Felix has high hopes for the four heroes. He wants them to push the limits of their magical ability, working as a team to become masters of the arcane. But although he's unwilling to admit it, the boys have grown apart. The boys, once in perfect magical and elemental alignment, are a tangle of rivalry and distrust. On the verge of separating, the Nowhere Boys are drawn together for one last spell when Felix discovers a magically sealed 'Book of Shadows'. Unwittingly this releases a powerful force of chaos, and the gang is reluctantly drawn into a showdown that threatens their world and all they love...",0,0,Nowhere Boys: The Book of Shadows,en +402536,The Head Vanishes,2016-01-01,9.0,,,tt5510182,,"Jacqueline has lost her mind a bit, but whatever, for her trip to the seaside, she has decided to take the train by herself, like a big girl!",0,0,Une tête disparaît,fr +380058,Matt Besser: Besser Breaks The Record,2016-01-01,63.0,,,tt5223500,,"Matt Besser is here to air some grievances and break some comedy records, just don't bring up weed and he'll stay on track.",0,0,Matt Besser: Besser Breaks The Record,en +378227,Natsamrat,2016-01-01,166.0,https://www.facebook.com/NatsamratTheFilm/?fref=ts,,tt5311546,The King Of Theatre,"Appa, a veteran theatre actor who has primarily worked in adaptations of Shakespeare's plays, falls upon hard times in his old age.",0,0,Natsamrat,mr +406431,The Hurt Business,2016-01-01,107.0,,,tt3993350,,"From the producers of 'Bowling for Columbine', 'Fahrenheit 9/11' and 'Generation Iron' comes 'The Hurt Business' which examines the rise of mixed martial arts fighting through the eyes of today's top stars.",0,0,The Hurt Business,en +291871,Yosemite,2016-01-01,80.0,http://montereymedia.com/yosemite/,,tt2992000,Growing up is an adventure,"It's the fall of 1985. The intertwining tales of three 5th grade friends, Chris, Joe and Ted, unfold in the suburban paradise of Palo Alto, as the threat of a mountain lion looms over the community.",0,0,Yosemite,en +374416,Quo vado?,2016-01-01,86.0,,,tt5290524,,Checco is 39 and lived his entire life with his parents. He loves his job where he does nothing the all day until something happens that will change his behavior and maybe his life..,10000000,0,Quo vado?,it +174751,Jane Got a Gun,2016-01-01,98.0,https://www.facebook.com/JaneGotAGunFilm/,,tt2140037,,"After her outlaw husband returns home shot with eight bullets and barely alive, Jane reluctantly reaches out to an ex-lover who she hasn't seen in over ten years to help her defend her farm when the time comes that her husband's gang eventually tracks him down to finish the job.",25000000,1397284,Jane Got a Gun,en +330333,The Boss's Daughter,2016-01-06,98.0,,,tt4040042,,"40-year-old foreman Vital is chosen by Alix (25) as a guinea pig in the anonymous study she is carrying out in her father's factory. The boss's daughter soon finds herself falling under the spell of this reserved, enigmatic worker as he begins to open up to her, revealing his dreams of another life.",0,0,La Fille du patron,fr +275269,Wazir,2016-01-07,102.0,,,tt0315642,This new year make your best move,"'Wazir' is a tale of two unlikely friends, a wheelchair-bound chess grandmaster and a brave ATS officer. Brought together by grief and a strange twist of fate, the two men decide to help each other win the biggest games of their lives. But there's a mysterious, dangerous opponent lurking in the shadows, who is all set to checkmate them.",5200000,9200000,Wazir,hi +329440,The Forest,2016-01-07,95.0,http://theforestisreal.com/,,tt3387542,Everyone comes here looking for a way out,"Set in the Aokigahara Forest, a real-life place in Japan where people go to end their lives. Against this backdrop, a young American woman comes in search of her twin sister, who has mysteriously disappeared.",10000000,40055439,The Forest,en +362703,Diablo,2016-01-08,83.0,,,tt4076760,"Beyond Hope, Beyond Regret, Beyond Salvation",A young civil war veteran is forced on a desperate journey to save his kidnapped wife.,0,0,Diablo,en +277710,Anesthesia,2016-01-08,90.0,http://www.hello-please.com/#/anesthesia/,,tt3317208,Who we don't know can save us,Multiple lives intersect in the aftermath of the violent mugging of a Columbia University philosophy professor.,0,0,Anesthesia,en +371181,"Murder, She Baked: A Peach Cobbler Mystery",2016-01-10,84.0,http://www.hallmarkmoviesandmysteries.com/murder-she-baked-peach-cobbler-mystery,364344,tt5317546,,"With The Cookie Jar, Hannah Swensen has a mouthwatering monopoly on the bakery business of Lake Eden, Minnesota. But when a rival store opens, and one of the owners is found shot to death in the store, Hannah is determined to prove that she wasn't the only one who had an axe to grind with the Quinn sisters. Somebody wasn't fooled by the Georgia Peaches and their sweet-as-pie act--and now it's up to Hannah to track down whoever had the right ingredients to whip up a murder.",0,0,"Murder, She Baked: A Peach Cobbler Mystery",en +280617,Space Cop,2016-01-13,102.0,http://spacecopmovie.com/,,tt3892384,He's a cop. From the future. The future of space.,"Space Cop is the story of a cop from the future of space who travels back in time to the present and is teamed up with a cop from the past who is unfrozen in the present. Together, they must defeat evil aliens with a sinister plan. Out of time and out of place, these two unwitting heroes must work together to save the world from a group of renegade aliens and the re-animated brain of a mad scientist bent on global extinction.",80000,0,Space Cop,en +315880,The Correspondence,2016-01-14,116.0,,,tt3530978,,"The relationship between Ed, a married astronomer and Amy, his lover, who spend their years apart, is based only on phone calls and texts. One day Amy begins noticing something strange in Ed's messages.",10000000,0,La corrispondenza,en +323675,Ride Along 2,2016-01-14,102.0,http://www.ridealong.com/,376650,tt2869728,The brothers-in-law are back,"As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who's supplying the dealers of Atlanta with product.",40000000,124827316,Ride Along 2,en +376252,Mood of the Day,2016-01-14,103.0,,,tt5586914,,"By chance, a man and a woman meet on the KTX train and spend 24 hours in the unfamiliar city of Busan, South Korea.",0,0,그날의 분위기,ko +316268,Lake Eerie,2016-01-15,104.0,http://www.lakeeeriemovie.com/,,tt2948078,A dark secret locked away...will soon be discovered.,"A young widow moves into an old house on Lake Erie to recover from the sudden loss of her husband; however, she soon discovers a dark secret and that she is not alone.",0,0,Lake Eerie,en +384160,How to Lose Weight in 4 Easy Steps!,2016-01-16,7.0,https://www.youtube.com/watch?v=9mbp0DugfCA,,tt5424972,,Losing weight and getting fit has never been easier! Shed those unwanted pounds with these simple tricks your gym doesn't want you to know about. You won't believe what happens next!,0,0,How to Lose Weight in 4 Easy Steps!,en +377516,The Rack Pack,2016-01-17,88.0,http://www.bbc.co.uk/programmes/p03bv0t5,,tt2464690,,"The 1980s snooker rivalry between Alex “Hurricane” Higgins and Steve “The Nugget” Davis, two very different personalities who helped popularise the sport on TV.",0,0,The Rack Pack,en +378087,El pregón,2016-01-18,0.0,,,tt4866712,,,0,0,El pregón,es +378607,The House,2016-01-20,90.0,,,tt3425402,,,0,0,Huset,no +407965,A Lovasíjász,2016-01-21,,,,tt5502346,,,0,0,A Lovasíjász,hu +378570,The Pills - Sempre meglio che lavorare,2016-01-21,90.0,,,tt4676140,,Three life-long friends struggle with an early middle-age crisis as they start to try to get a job for the first time. An ironic quest to avoid becoming an adult and accept responsibilities.,0,0,The Pills - Sempre meglio che lavorare,it +402612,Gondolj rám,2016-01-21,103.0,,,tt3416386,,,0,0,Gondolj rám,hu +259694,How to Be Single,2016-01-21,110.0,http://howtobesinglemovie.com/,,tt1292566,Welcome to the party,"New York City is full of lonely hearts seeking the right match, and what Alice, Robin, Lucy, Meg, Tom and David all have in common is the need to learn how to be single in a world filled with ever-evolving definitions of love.",38000000,112343513,How to Be Single,en +331962,Exposed,2016-01-22,102.0,http://lionsgateathome.com/exposed,,tt4019560,Some secrets are better left buried,"After witnessing a miracle, a young Latina woman experiences strange things as a police detective searches for the truth behind his partner's death.",0,1787926,Exposed,en +362057,Martyrs,2016-01-22,86.0,,,tt1663655,,A woman and her childhood friend seek out revenge on those who victimized and abused them.,0,0,Martyrs,en +339547,Jeruzalem,2016-01-22,87.0,http://epic-pictures.com/detail.aspx?ProjectId=15790f7b-fb5a-e411-9d0b-d4ae527c3b65,,tt4552524,"On Judgement Day, Hell Shall Inherit The Earth.","When a couple of American young adults fly to Israel to visit the city of Jerusalem, a biblical nightmare falls upon the city",0,0,Jeruzalem,en +382155,Pitbull. New Order,2016-01-22,133.0,,402380,tt5377604,,Policemen from two precincts are joining forces to fight the Mokotowska Group.,0,0,Pitbull. Nowe porządki,pl +379959,Thunder Road,2016-01-23,13.0,,,tt5116560,,Jimmy Arnaud eulogizes his mother.,0,0,Thunder Road,en +379297,Toni Braxton: Unbreak My Heart,2016-01-23,85.0,,,tt5037902,,"The life story of R&B singer-songwriter and producer, Toni Braxton.",0,0,Toni Braxton: Unbreak My Heart,en +376501,Outlaws and Angels,2016-01-25,120.0,,,tt3491962,,"A gang of cold-blooded outlaws narrowly escapes a blood-soaked bank robbery in a grimy frontier town. With a notorious bounty hunter hot on their trail, these nefarious criminals desperately need a place to hide out before night falls. Fate brings them to the home of the Tildons, a seemingly innocent family with two feisty daughters. As the men settle in, an impetuous game of cat and mouse plays out during the cold, black night. Come morning, nothing will ever be the same.",0,0,Outlaws and Angels,en +279096,Lazer Team,2016-01-27,102.0,https://www.lazerteamthemovie.com/,,tt3864024,Mankind's darkest hour needs our brightest team.,"In the late 1970's, the SETI project received a one time signal from outer space. It looked exactly as theorists thought a communication from an alien civilization would -- unfortunately it has never been decoded. Or so we were told. Unbeknownst to the general public the signal was translated and told us two things: 1) We are not alone. 2) The galaxy is a dangerous place.",2480421,0,Lazer Team,en +377853,"The First, the Last",2016-01-27,98.0,,,tt5072542,,"Apocalyptic neo-western about two gangsters, a town full of crazy people and Jesus...",0,0,"Les premiers, les derniers",fr +371741,Ali and Nino,2016-01-27,100.0,,,tt4072326,,Muslim prince Ali and Georgian aristocrat Nino have grown up in the Russian province of Azerbaijan. Their tragic love story sees the outbreak of the First World War and the world’s struggle for Baku’s oil. Ultimately they must choose to fight for their country’s independence or for each other.,0,0,Ali and Nino,en +381525,WiNWiN,2016-01-27,84.0,,,tt5376720,,"American investment fund buys Austrian companies, but also takes over politics in Vienna. Money still makes the world go round.",0,0,WiNWiN, +379873,L'abbiamo fatta grossa,2016-01-28,112.0,,,tt4778106,,,0,0,L'abbiamo fatta grossa,it +357706,Irudhi Suttru,2016-01-28,112.0,https://www.facebook.com/Irudhi.Suttru/,,tt5819280,,"A grumpy boxing coach takes on a young, rebellious woman under his wings and starts training her for the world championship. But their biggest battle has to be fought outside the ring.",300000,2100000,இறுதிச்சுற்று,ta +379335,Love Records,2016-01-29,111.0,http://www.futurefilm.fi/?page=VALKOKANGAS&product=Love+Records+-+Anna+mulle+Lovee,,tt4431326,"A loud tale of ambition, loyalty and rock'n'roll",The rise and fall of Love Records record label in 1960s and 1970s Finland.,0,0,Love Records: Anna mulle Lovee,fi +437838,Invention of Trust,2016-01-29,,,,tt6113490,,,0,0,Invention of Trust,de +409536,Horace and Pete,2016-01-30,436.0,,,tt5425186,,"Horace and Pete (stylized as Horace and Pete's Est. 1916) is an American comedy-drama web series created by Louis C.K. starring himself and Steve Buscemi as Horace and Pete, co-owners of an Irish bar, Horace and Pete's.",0,0,Horace and Pete,en +374614,Dater's Handbook,2016-01-30,84.0,http://www.hallmarkchannel.com/daters-handbook,,tt5364518,,A woman changes her personality according to a dating guide book to find a husband but realizes the man she wants is the one who loves her for who she is.,0,0,Dater's Handbook,en +377428,All Things Valentine,2016-01-31,85.0,http://www.hallmarkchannel.com/all-things-valentine,,tt5329524,,"Avery, a blogger with a string of disappointing Valentine’s Days, is ready to give up on love when she meets handsome veterinarian Brenden. When Avery finds out Brenden blames his recent break up on her blog and is the one leaving her angry comments, she begins to question whether the bond they’ve began to build is a true love story or yesterday’s news.",0,0,All Things Valentine,en +339526,The Land Before Time XIV: Journey of the Brave,2016-02-02,82.0,,19163,tt4431254,,"On a day known to the dinosaurs as ""Treasure Day"", Bron becomes stuck in the Mysterious Beyond. This event urges the young Longneck to take his friends on a quest to the Fire Mountain to save his father. Along the way, they befriend a Flyer.",0,0,The Land Before Time XIV: Journey of the Brave,en +369776,Les Tuche 2: Le rêve américain,2016-02-03,94.0,,389544,tt4926538,,"Les Tuche, a modest french family, change his life after winning a super lottery. Thanks to the money of his parents, the son, Donald (aka ""coin-coin) goes to Los Angeles to improve his english. On the L.A. University, he meets Jennifer, daughter of a famous American financier.",0,0,Les Tuche 2: Le rêve américain,fr +255160,On the Milky Road,2016-02-03,125.0,,,tt2800340,,"A man, shaken by fate after his wife's death, chooses to be a monk.",0,0,Na mlečnom putu,sr +372226,Visaranai,2016-02-04,118.0,,,tt4991384,,"Pandi and his friends, immigrant workers in Andhra Pradesh, are picked up by cops for a crime they never committed. And thus begins their nightmare, where they become pawns in a vicious game where the voiceless are strangled by those with power.",325000,1600000,விசாரணை,ta +381691,Maheshinte Prathikaaram,2016-02-05,121.0,https://www.facebook.com/MaheshintePrathikaaramMovie/,,tt4851630,,"Mahesh, a studio photographer and owner of the studio. As the story moves on, Mahesh encounters an anonymous fight ending up with taking revenge that leads to certain realizations in his life.",0,230000,മഹേഷിന്‍റെ പ്രതികാരം,ml +381737,Manson's Lost Girls,2016-02-06,87.0,http://www.mylifetime.com/movies/mansons-lost-girls,,tt4800418,Follow the leader.,"Linda Kasabian falls prey to the hypnotic charms of Charles Manson and his self-proclaimed ""family"" during the drug-fueled summer of 1969.",0,0,Manson's Lost Girls,ab +340187,Uncaged,2016-02-06,95.0,,,tt3562786,Beware the beast within.,"After nights of sleepwalking, a troubled teen straps a camera to himself and discovers a sinister truth.",0,0,Uncaged,en +293660,Deadpool,2016-02-09,108.0,http://www.foxmovies.com/movies/deadpool,448150,tt1431045,Witness the beginning of a happy ending,"Deadpool tells the origin story of former Special Forces operative turned mercenary Wade Wilson, who after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.",58000000,783112979,Deadpool,en +380856,A Stand Up Guy,2016-02-09,90.0,,,tt4060962,,A low-level mobster takes a stab at stand-up comedy while in the Witness Protection Program.,0,0,A Stand Up Guy,en +378503,The Wounded Angel,2016-02-11,113.0,,,tt4729794,,In a godforsaken Kazakh village four adolescent teenagers try to find their place in the world...,0,0,Ranenyy Angel,en +300667,3 Generations,2016-02-11,87.0,,,tt4158624,A Family In Transition,"A teenager transitions from female to male, and his family must come to terms with that fact.",5000000,443962,3 Generations,en +269149,Zootopia,2016-02-11,108.0,http://movies.disney.com/zootopia,,tt2948356,Welcome to the urban jungle.,"Determined to prove herself, Officer Judy Hopps, the first bunny on Zootopia's police force, jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.",150000000,1023784195,Zootopia,en +360249,The Last King,2016-02-12,99.0,,,tt4738360,A story of legendary bravery,Year 1206. Norway is ravaged by civil war. The King's illegitimate son is guarded in deep secret. A boy that half of the kingdom wants to kill and two men will protect to the death. A boy named Earl Håkonsson. Birkebeiners is the story of the escape that changed Norway's history forever.,5455000,0,Birkebeinerne,no +298584,Cabin Fever,2016-02-12,99.0,,,tt3832096,You can't run from what's inside.,"In this grisly remake of the 2002 horror hit, five college chums rent an isolated woodland cabin for a party. But their fun quickly ends when the group is exposed to a hideous flesh-eating virus, and survival becomes the name of the game.",0,0,Cabin Fever,en +376047,Fitoor,2016-02-12,131.0,,,tt4399594,,"A young artist tries to win the heart of his muse, while her mother hatches a scheme to end his quest for true love.",0,0,Fitoor,hi +377432,Valentine Ever After,2016-02-13,85.0,http://www.hallmarkchannel.com/valentine-ever-after,,tt3515524,,"Big city girls Julia and her best friend Sydney take a trip to a dude ranch in Wyoming for a fun weekend getaway, but after a brawl at the local bar, the girls are sentenced to stay in town and perform community service. Along the way, Julia finds love and her true calling in life.",0,0,Valentine Ever After,en +381767,Shelley,2016-02-14,92.0,,,tt5013688,"Inside, an evil grows","Louise and Kasper want to become parents, but Louise cannot have children. She seals a pact with her Romanian maid, Elena, to bear her child, but things don't turn out quite as planned...",0,0,Shelley,da +382951,A Sunday Horse,2016-02-15,108.0,,,tt3543258,"An inspiring true story about love, family and following your dream.","After a near-fatal accident, on a horse the experts thought was nothing special, a determined rider from the wrong side of the tracks defies all the odds to pursue her dreams of winning a national jumping championship.",0,0,A Sunday Horse,en +383064,Road to Istanbul,2016-02-15,100.0,,,tt2207112,,"Elisabeth lives a quiet live in the Belgian countryside with her young adult daughter Elodie. After the divorce from her husband Elisabeth took care of her daughter on her own. When Elodie disappears over night and Elisabeth discovers that she travelled to Syria to join the Islamic State, she begins her journey to find her daughter.",0,0,La route d'Istanbul,fr +397520,Anne of Green Gables,2016-02-15,85.0,,,tt4820224,,"A retelling of L.M. Montgomery's story of Anne Shirley, an orphan who is accidentally sent to a couple looking to adopt a boy instead",0,0,Anne of Green Gables,en +266425,Sand Castles,2016-02-16,93.0,http://www.sandcastlesfilm.com/#home,,tt2233170,Tragedy runs through our blood,"In rural Indiana, Noah and his impoverished family wrestle with the mysterious return of his now mute sister, Lauren, who was kidnapped and held captive for over a decade.",0,0,Sand Castles,en +318781,Colonia,2016-02-18,120.0,http://screenmediafilms.net/productions/details/1635/Colonia,,tt4005402,There is no turning back,"A young woman's desperate search for her abducted boyfriend that draws her into the infamous Colonia Dignidad, a sect nobody ever escaped from.",14000000,3621046,Colonia,en +245703,Midnight Special,2016-02-18,112.0,http://www.midnightspecialmovie.com/,,tt2649554,He's not like us.,A father and son go on the run after the dad learns his child possesses special powers.,18000000,6212282,Midnight Special,en +377151,Fire at Sea,2016-02-18,108.0,,,tt3652526,"More than 17,000 people were reported to have died trying to cross the Mediterranean in the last 15 years...","Capturing life on the Italian island of Lampedusa, a frontline in the European migrant crisis.",0,0,Fuocoammare,it +263341,"Crouching Tiger, Hidden Dragon: Sword of Destiny",2016-02-18,103.0,,290973,tt2652118,The past returns with a vengeance.,"A story of lost love, young love, a legendary sword and one last opportunity at redemption.",20000000,0,"Crouching Tiger, Hidden Dragon: Sword of Destiny",en +376716,Elections Day 2,2016-02-18,105.0,,122776,tt5487052,,Igor Tsaplin wants to be elected for a third term and PR team already familiar to us will help him.,0,4314688,День выборов 2,ru +384262,Diving Into the Unknown,2016-02-19,90.0,http://divingintotheunknown.com/en,,tt5210376,We just wanted to bring our friends home.,"After a terrible accident deep inside an underwater cave, the survivors are forced to risk their own lives to bring the bodies of their friends home.",0,0,Takaisin pintaan,fi +335778,Risen,2016-02-19,107.0,,,tt3231054,Witness the manhunt that changed the course of human history,"Follows the epic Biblical story of the Resurrection, as told through the eyes of a non-believer. Clavius, a powerful Roman Military Tribune, and his aide Lucius, are tasked with solving the mystery of what happened to Jesus in the weeks following the crucifixion, in order to disprove the rumors of a risen Messiah and prevent an uprising in Jerusalem.",20000000,46069568,Risen,en +277839,"Good Guys Go to Heaven, Bad Guys Go to Pattaya",2016-02-24,100.0,,,tt4531694,,"Franky and Krimo dream of leaving the grey grime of their neighborhood behind and of traveling to the famous and diabolical Thai beach resort of Pattaya. To get there cheaply, the two friends have the crazy idea of registering, unbeknownst to him, the local little person for the Thai Dwarf Boxing World Championship. But what was supposed to be a dream vacation will transform into the most insane and dangerous adventure of their lives.",5402000,0,Pattaya,fr +384373,Poveda,2016-02-24,,,,tt4626160,,,0,0,Poveda,es +383809,Merci patron !,2016-02-24,84.0,,,tt5326448,,,0,0,Merci patron !,fr +205584,Gods of Egypt,2016-02-25,127.0,,,tt2404233,The battle for eternity begins,A common thief joins a mythical god on a quest through Egypt.,140000000,150680864,Gods of Egypt,en +384021,Who's Driving Doug,2016-02-26,99.0,http://www.whosdrivingdoug.com/,,tt3733606,,"A sheltered, intelligent college student Doug changes his life forever when he hires an underachieving driver Scott. In order to escape his oppressively loving mother, Doug agrees to go on a spontaneous road trip with Scott and his college crush Stephanie. At the height of the journey, a tragic series of events tests their bond and opens the road to self-discovery. Drugs, gambling, and romance await the three friends in this coming-of-age drama.",1500000,0,Who's Driving Doug,en +325302,They Look Like People,2016-02-26,80.0,,,tt4105970,"Love, Loyalty, and Living Nightmares.","Suspecting that people around him are turning into evil creatures, a troubled man questions whether to protect his only friend from an impending war, or from himself.",0,0,They Look Like People,en +347666,We Need to Talk,2016-02-26,0.0,,,tt4699534,,,0,0,Tenemos que hablar,es +383567,Theo Von: No Offense,2016-02-26,66.0,http://www.netflix.com,,tt5066564,"All Southern, No Comfort.","Known for always saying the unexpected and telling it like it is, even at the expense of offending, Louisiana comedian Theo Von returns home to film his first stand-up comedy special for Netflix at the Civic Theater in New Orleans.",0,0,Theo Von: No Offense,en +333385,Mr. Right,2016-02-29,95.0,,,tt2091935,They make a killer couple.,"A girl falls for the ""perfect"" guy, who happens to have a very fatal flaw: he's a hitman on the run from the crime cartels who employ him.",8000000,34694,Mr. Right,en +383140,Weaponized,2016-03-01,91.0,,,tt4776564,The Future of War is Here.,"A damaged homicide detective (Johnny Messner) must prevent a grieving father from unleashing a ""robotic virus"" that he believes will destroy the terrorist cell that murdered his son, but at an unimaginable cost.",0,0,Weaponized,en +381255,Down by Love,2016-03-02,110.0,,,tt4428762,,"A man, a woman. A prison director, his inmate. An impossible love, a true story.",0,0,Éperdument,fr +387845,Musudan,2016-03-03,87.0,,,tt5447140,,Some elite troops from South Korea trying to solve an amount of missing and death cases at the border between North- and South Korea.,500,500,무수단,ko +351809,To Steal from a Thief,2016-03-03,96.0,,,tt3655414,Who can you trust?,"On a rainy morning six armed men in disguise rob a bank in Valencia .But what seemed like an easy heist quickly goes wrong with nothing unfolding as planned, and mistrust quickly builds between the two leaders of the gang.",6700000,12118661,Cien años de perdón,es +359025,Camino,2016-03-04,103.0,,,tt4991652,The camera sees what it sees.,"A photojournalist gets more than she bargained for when she snaps a photo of a shadowy religious figure in the jungles of Colombia, triggering a flight – and fight – for her life.",0,0,Camino,en +375199,Jai Gangaajal,2016-03-04,149.0,,,tt4979082,,"The film features SP Abha Mathur who is appointed the first female SP of Bankipur district, Bihar. She then goes against the Local MLA of Bankipur and henchmen of Lakhisarai district.",1500000,0,Jai Gangaajal,hi +382873,On the Other Side,2016-03-04,85.0,,,tt4647482,,"20 years ago, Vesna moved her family to Zagreb, away from the events that almost destroyed their lives. However, an unexpected call will bring back the memory of a secret that she has been trying to hide all these years.",0,0,S one strane,hr +329010,Emelie,2016-03-04,82.0,,,tt4503598,I'm your new babysitter,"After their regular babysitter Maggie can’t make it, the Thompson family turns to her friend Anna to supervise their children while the parents go out to celebrate their anniversary. At first Anna seems like a dream come true to the kids, allowing them to eat extra cookies and play with things that are usually off-limits, but as her behavior becomes increasingly odd, the kids soon find out that her intentions are dark and twisted, and she is not who she seems to be.",0,0,Emelie,en +387558,My Feral Heart,2016-03-05,83.0,http://myferalheart.co.uk/,,tt3184666,We're not so different.,"Luke, an independent young man with Down's syndrome stumbles upon a wild and life changing friendship.",0,0,My Feral Heart,en +387399,We Go On,2016-03-05,90.0,,,tt3904278,Some doors should never be opened.,"WE GO ON tells the story of one man's quest to find out if there is more out there after we die. Paralyzed by his fear of dying, Miles Grissom offers a cash reward to the first person who can show him a ghost, an angel, a demon anything that can prove that we go on after our deaths. He narrows the responses down to three viable candidates a scientist, a medium, and a worldly entrepreneur. Along with his fiercely protective mother, he embarks on an adventure that will spiral into an unthinkable nightmare.",0,0,We Go On,en +417936,Accidentally Engaged,2016-03-05,86.0,,,tt4742556,Love Unscripted,"When unsuccessful actress Clarissa returns to her hometown for a wedding and tries to impress her old friends by claiming she's dating big time celebrity Chas Hunter, she suddenly finds herself in a comically false engagement when her lies go public and Chas decides to join the festivities in a stunt to escape bad press.",0,0,Accidentally Engaged,en +380731,Darkweb,2016-03-08,89.0,,,tt5247042,Some things can't be unseen,"A mysterious group has created a sadistic venture. Kidnapping young women, they auction the rights to hunt them to millionaires with a thirst for blood - and broadcast the hunt on the dark web for the world to see.",0,0,Darkweb,en +333371,10 Cloverfield Lane,2016-03-10,103.0,http://www.10cloverfieldlane.com/,,tt1179933,Monsters come in many forms.,"After a car accident, Michelle awakens to find herself in a mysterious bunker with two men named Howard and Emmett. Howard offers her a pair of crutches to help her remain mobile with her leg injury sustained from the car crash and tells her to ""get good on those"" before leaving the bunker. She has been given the information that there has been an alien attack and the outside world is poisoned. However, Howard and Emmett's intentions soon become questionable and Michelle is faced with a question: Is it better in here or out there?",15000000,108286421,10 Cloverfield Lane,en +376570,Hush,2016-03-12,81.0,http://www.mikeflanaganfilm.com/#!/Hush_(2016),,tt5022702,Silence can be killer,A deaf woman is stalked by a psychotic killer in her secluded home.,0,0,Hush,en +381073,Operator,2016-03-12,89.0,https://www.facebook.com/operatormovie,,tt5052524,How can she help you?,"Joe, a programmer and obsessive self-quantifier, and Emily, a budding comedy performer, are happily married until they decide to use one another in their work. A dark comedy about love, technology, and what can’t be programmed.",0,0,Operator,en +381645,My Father Die,2016-03-12,102.0,http://myfatherdie.com/,,tt4242100,,"Deaf and mute since having his hearing knocked out at the age of 12, Asher has been training for almost two decades to avenge himself on Ivan, the man that killed his older brother, 21 years ago. And now that his nemesis is out of prison, he gets his chance. But Asher's target also happens to be his father.",0,0,My Father Die,en +376391,We Are X,2016-03-12,92.0,http://www.wearexfilm.com/,,tt4835086,The music never had to be explained.,"As glam rock's most flamboyant survivors, X Japan ignited a musical revolution in Japan during the late '80s with their melodic metal. Twenty years after their tragic dissolution, X Japan’s leader, Yoshiki, battles with physical and spiritual demons alongside prejudices of the West to bring their music to the world.",0,0,We Are X,en +387999,The High Schooler's Guide to College Parties,2016-03-16,90.0,https://www.facebook.com/The-Highschoolers-Guide-to-College-Parties-186465891724/,,tt1572506,You think planning your future is hard? Try planning a College Party.,Shaquille has grown up below the radar and believes that his ticket to a better life lies in throwing a college party. All hell breaks loose as Shaq tries to fix the party--and his future.,0,0,The High Schooler's Guide to College Parties,en +378446,Ogres,2016-03-16,142.0,,,tt4466872,,"There's drama aplenty for the travelling theatre company Chekhov Cabaret. The actors share the good times and the bad as a nomadic tribe where work and private life always mingle. They don’t mince words, these obstreperous actors with a sardonic sense of humour. Theatre always comes first.",0,0,Les Ogres,fr +389972,What a Wonderful Family!,2016-03-16,108.0,,,tt4065842,,"A husband (Isao Hashizume) and wife (Kazuko Yoshiyuki) have been married for 50 years. For her birthday, the husband asks the wife what she wants for her birthday present. She replies that she wants a divorce. The wife's divorce announcement sends the entire family into chaos.",0,0,家族はつらいよ,ja +370178,Scare Campaign,2016-03-17,76.0,,,tt4467626,,"Popular prank TV show, Scare Campaign, has been entertaining audiences for the last 5 years with its mix of old school scares and hidden camera fun. But as we enter a new age of online TV the producers find themselves up against a new hard edged web series which makes their show look decidedly quaint. It's time to up the ante, but will the team go too far this time, and are they about to prank the wrong guy?",0,0,Scare Campaign,en +309024,Take Me to the River,2016-03-18,90.0,,,tt3142366,,"A naive California teen plans to remain above the fray at his Nebraskan family reunion, but a strange encounter places him at the center of a long-buried family secret.",0,0,Take Me to the River,en +390991,Frankie Boyle: Hurt Like You've Never Been Loved,2016-03-18,64.0,,,tt5566936,,Netflix Special,0,0,Frankie Boyle: Hurt Like You've Never Been Loved,en +323929,Krisha,2016-03-18,81.0,,,tt4266638,,"Krisha returns for Thanksgiving dinner after ten years away from her family, but past demons threaten to ruin the festivities.",0,140779,Krisha,en +461088,50 Kilos of Sour Cherry,2016-03-22,89.0,,,tt5689610,,"When the corrupted groom starts shooting in the wedding ceremony, guests try to run away. Aida and Davoud accidentally end up in a car that crashes a police car. Aida lies to the inspector that Davoud is her husband and that's where the story begins.",0,0,۵۰ کیلو آلبالو,fa +362178,Kaili Blues,2016-03-23,113.0,,,tt4613272,,"In the subtropical province of Guizhou, Chen Sheng embarks on a journey to find his nephew.",0,0,路边野餐,zh +325385,Endless Poetry,2016-03-23,130.0,http://www.poesiasinfin.com/,,tt4451458,,"A portrait of Alejandro Jodorowsky’s young adulthood, set in the 1940s and 50s, in the electric capital city of Santiago. There, he decides to become a poet and is introduced, by destiny, into the foremost bohemian and artistic circle of the time.",0,0,Poesía sin fin,es +209112,Batman v Superman: Dawn of Justice,2016-03-23,151.0,http://www.batmanvsupermandawnofjustice.com/,209131,tt2975590,Justice or revenge,"Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.",250000000,873260194,Batman v Superman: Dawn of Justice,en +359483,Duell der Brüder - Die Geschichte von Adidas und Puma,2016-03-25,0.0,,,tt5013980,,,0,0,Duell der Brüder - Die Geschichte von Adidas und Puma,de +383535,They're Watching,2016-03-25,95.0,,,tt3096858,Which House? Witch House.,"An American TV crew gets trapped in a centuries-old web of revenge, horror, and blood, when their home improvement show is attacked by angry Eastern European villagers out to kill the show's star.",3650000,0,They're Watching,en +186759,Get a Job,2016-03-25,93.0,,,tt1468846,Graduating was the easy part,"A recent college graduate and his friends are forced to lower life expectations when they leave school for the real world. Life after college graduation is not exactly going as planned for Will and Jillian who find themselves lost in a sea of increasingly strange jobs. But with help from their family, friends and coworkers they soon discover that the most important (and hilarious) adventures are the ones that we don't see coming.",8000000,0,Get a Job,en +388243,Bleed,2016-03-25,82.0,,,tt2948566,Reap the flesh,"It seemed perfect - a new house, a new marriage, a child soon to be born. But when Sarah and Matt invite their friends to celebrate, the situation turns deadly as they enter a burned-out prison on a ghost hunt.",550000,0,Bleed,en +390880,Friday,2016-03-26,87.0,,,tt5311004,Everyone waits for Friday!,Friday night is almost like a shortened New year's night. One can expect every kind of surprises on that night. Friday night has its special magic.,0,0,Пятница,ru +382170,A Bride for Rip Van Winkle,2016-03-26,179.0,,,tt4671274,,A woman hires actors and strangers to pretend to be her friends and family at her wedding.,0,0,リップヴァンウィンクルの花嫁,ja +381356,Five,2016-03-30,102.0,,,tt4741714,,"A young man paying the rent for himself and his lifelong friends at an apartment, ends up flat-broke and resorts to selling marijuana to pay the bills - only to get caught up in the dangerous world of drugs.",0,0,Five,fr +371645,Hunt for the Wilderpeople,2016-03-31,101.0,http://wilderpeople.film,,tt4698684,Nature just got gangster,"Ricky is a defiant young city kid who finds himself on the run with his cantankerous foster uncle in the wild New Zealand bush. A national manhunt ensues, and the two are forced to put aside their differences and work together to survive.",0,0,Hunt for the Wilderpeople,en +329718,Finding Altamira,2016-04-01,97.0,http://morenafilms.com/en/peliculas/altamira-2/,,tt3014910,Some secrets are too powerful to hide.,"The story of nine-year old Maria and her father Marcelino who, in 1879, found the first pre-historic cave paintings at the now world famous Altamira cave.",9500000,0,Altamira,en +384450,Dead 7,2016-04-01,89.0,,,tt4405860,Larger Than Life!,"A ragtag group of gunslingers try to make their way in a post-apocalyptic world. The twist to this world is that it’s just not barren and dangerous, it’s also filled with flesh-eating zombies. The gunslingers will find themselves stranded in a town and forced to make a choice on either to save the citizens of the town or save themselves.",0,0,Dead 7,en +371462,Mammal,2016-04-01,99.0,,,tt3777860,,"After Margaret, a divorcée living in Dublin, loses her teenage son, she develops an unorthodox relationship with Joe, a homeless youth. Their tentative trust is threatened by his involvement with a violent gang and the escalation of her ex-husband's grieving rage.",0,0,Mammal,en +410537,The Amityville Terror,2016-04-01,84.0,,397842,tt5312612,,"When a new family moves to an old house in Amityville, they are tormented and tortured by an evil spirit living in the home while trapped by the malicious townspeople who want to keep them there.",500000,0,The Amityville Terror,en +377587,Meet the Blacks,2016-04-01,90.0,http://meettheblacksmovie.com/,,tt4191580,,"As Carl Black gets the opportunity to move his family out of Chicago in hope of a better life, their arrival in Beverly Hills is timed with that city's annual purge, where all crime is legal for twelve hours.",0,0,Meet the Blacks,en +414910,Tonight It's You,2016-04-01,17.0,,,tt4341528,,"CJ ventures out for a late night hook up when things take a dark turn, leading him into something much more sinister than he could ever imagine.",0,0,Tonight It's You,en +391566,Cheerleader,2016-04-04,70.0,http://www.irvingfrancostudio.com,,tt4188654,Cheerleader dives into the mind of a teenager as she tries desperately to win her boyfriend back.,Cheerleader dives into the mind of a teenager as she tries desperately to win her boyfriend back.,0,0,Cheerleader,en +388862,Countdown,2016-04-05,90.0,,,tt4872162,The Race To Save A Life Begins Now,"A madman captures a young boy and rigs him with explosives. Ray Fitzpatrick, still haunted by the loss of his own son, will defy orders to stop the clock and save a life",0,0,Countdown,en +301804,Before I Wake,2016-04-07,97.0,,,tt3174376,Fear your dreams.,About an orphaned child whose dreams - and nightmares - manifest physically as he sleeps.,0,3295624,Before I Wake,en +332872,Julieta,2016-04-08,96.0,http://sonyclassics.com/julieta/,,tt4326444,,"The film spans 30 years in Julieta’s life from a nostalgic 1985 where everything seems hopeful, to 2015 where her life appears to be beyond repair and she is on the verge of madness.",1490000,0,Julieta,es +353326,The Man Who Knew Infinity,2016-04-08,108.0,http://www.ifcfilms.com/films/the-man-who-knew-infinity,,tt0787524,What does it take to prove the impossible?,"Growing up poor in Madras, India, Srinivasa Ramanujan Iyengar earns admittance to Cambridge University during WWI, where he becomes a pioneer in mathematical theories with the guidance of his professor, G.H. Hardy.",0,11472454,The Man Who Knew Infinity,en +391899,Hannibal Buress: Hannibal Takes Edinburgh,2016-04-08,80.0,,,tt5612850,,"Hannibal Buress braves Scotland's epic Fringe festival in Edinburgh, performing dozens of wry stand-up sets and testing new material on the locals.",0,0,Hannibal Buress: Hannibal Takes Edinburgh,en +332806,I Am Belfast,2016-04-08,84.0,,,tt3847390,,"Belfast, it’s a city that ís changing, changing because the people are leaving? But one came back, a 10,000 year old woman (Helena Bereen) who claims that she is the city itself.",0,0,I Am Belfast,en +376523,Nothing Left Unsaid: Gloria Vanderbilt & Anderson Cooper,2016-04-09,108.0,,,tt5275872,You know her name. But you don't know her story.,"Privilege, love, loss, and survival are all deftly examined in Nothing Left Unsaid, which turns a lens on the expansive life of Gloria Vanderbilt. At 91, Vanderbilt herself provides a rich living history on the experience of growing up within a storied American family. Her youngest son, Anderson Cooper, peppers his still-vibrant mother on camera with questions about her complex public and private personas.",0,0,Nothing Left Unsaid: Gloria Vanderbilt & Anderson Cooper,en +392386,Nikki Glaser: Perfect,2016-04-09,62.0,,,tt5675632,,Comedian Nikki Glaser talks about relationships and what it means to become an adult woman.,0,0,Nikki Glaser: Perfect,en +391375,The Bandit Hound,2016-04-12,87.0,,,tt3671052,Not all dogs go to heaven.,"A lovable dog named Bandit starts stealing cash to help his adopted family, he unwittingly sets them on a collision course with his dangerous ex-partner.",3000000,0,The Bandit Hound,es +385261,"Love, Lies",2016-04-13,120.0,,,tt5486170,A tragedy of jealousy and desires,"Two best friends, So-yool and Yeon-hee, dream of becoming the top artists in Seoul together. But their friendship doesn't last long as Yoon-woo, So-yool's first love and songwriter, falls in love with Yeon-hee and her voice. So-yool's feeling of jealousy and inferiority towards Yeon-hee grows by the day, and she eventually makes a drastic decision to bring the two lovers down.",120,0,해어화,ko +393134,Loop,2016-04-14,95.0,,,tt4118932,,Drugdealer wants get out of the circle with his pregnant girlfriend and a time loop effect makes it more complicated.,0,0,Hurok,hu +332411,I Am Wrath,2016-04-14,92.0,,,tt3212232,I lay my vengeance upon them.,A man is out for justice after a group of corrupt police officers are unable to catch his wife's killer.,18000000,0,I Am Wrath,en +386100,Fritz Lang,2016-04-14,104.0,,,tt5520618,,Filmmaker Fritz Lang seeks inspiration for his first sound film by immersing himself in the case of serial killer Peter Kürten.,0,0,Fritz Lang,de +392832,Nemiche per la pelle,2016-04-14,,,,tt5662556,,,0,0,Nemiche per la pelle,it +390782,I'll Sleep When I'm Dead,2016-04-15,82.0,,,tt4679136,The loud life of Steve Aoki,An energetic and fast-paced bio-doc that examines the story behind one of the most prolific and well-known DJs working today: Steve Aoki.,0,0,I'll Sleep When I'm Dead,en +274504,The Adderall Diaries,2016-04-15,105.0,,,tt1735907,The truth is a motherf_cker.,"Writer and Adderall enthusiast Stephen Elliott reaches a low point when his estranged father resurfaces, claiming that Stephen has fabricated much of the dark childhood that that fuels his writing. Adrift in the precarious gray area of memory, Stephen is led by three sources of inspiration: a new romance, the best friend who shares his history, and a murder trial that reminds him more than a little of his own story. Based on the memoir of the same name.",0,13191,The Adderall Diaries,en +313922,Green Room,2016-04-15,95.0,http://greenroom-movie.com/,,tt4062536,One way in. No way out.,A young punk rock band find themselves trapped in a secluded venue after stumbling upon a horrific act of violence.,5000000,3220371,Green Room,en +392660,A Sunday Kind of Love,2016-04-15,93.0,http://www.asundaykindoflove.com/,,tt3611112,,"A struggling writer meets death and falls in love. He must decide if his true love is in this world or the next, and if his dreams of success are worth dying for.",0,0,A Sunday Kind of Love,en +399894,Daylight's End,2016-04-16,120.0,https://www.facebook.com/DayLightsEndMovie/,,tt3007132,The Dead Rise When Daylight Ends,"Years after a mysterious plague has devastated the planet and turned most of humanity into blood-hungry creatures, a rogue drifter on a vengeful hunt stumbles across a band of survivors in an abandoned police station and reluctantly agrees to try to help them defend themselves and escape to the sanctuary they so desperately need.",2000000,0,Daylight's End,en +385750,Folk Hero & Funny Guy,2016-04-16,88.0,http://folkheroandfunnyguy.com/,,tt3212910,,"Two artistically inclined childhood friends, a comedian and a folk-rocker respectively, set out on a tour together in hopes of regaining their ""mojo"" and finding love in the process.",0,0,Folk Hero & Funny Guy,en +390343,Burden,2016-04-16,88.0,https://dogwoof.com/burden,,tt5144348,Beyond the limits. Out of the museum.,"A probing portrait of Chris Burden, an artist who took creative expression to the limits and risked his life in the name of art.",0,0,Burden,en +414173,jazzy@32 (a true story),2016-04-17,7.0,,,tt5570934,,"After a series of vivid dreams and faced with a big life question, the filmmaker seeks professional guidance from an online psychic community.",0,0,jazzy@32 (a true story),en +393443,Extremis,2016-04-17,24.0,,,tt5538078,,A purely observational non-fiction film that takes viewers into the ethically murky world of end-of-life decision making in a public hospital.,0,0,Extremis,en +369033,Rebirth,2016-04-17,101.0,,,tt4902716,,A man's life is turned inside out after a visit from his college friend leads him into the unexpected.,0,0,Rebirth,en +393263,Pearl,2016-04-17,6.0,,,tt5599918,,"Pearl follows a father and daughter on the road together, tracing his struggles to make it as a musician and parent, and her coming-of-age and musical journey to fulfillment.",0,0,Pearl,en +390526,Between Us,2016-04-18,93.0,,,tt3886604,,Longtime couple Henry and Dianne are afraid that if they finally tie the knot it would mean the end of their days as free-spirited urbanites. But a whirlwind night apart involving temptations from a duo of strangers will either make them realize why they are together in the first place or finally drive them apart forever.,0,0,Between Us,en +377287,The Son of Joseph,2016-04-20,115.0,http://www.filmsdulosange.fr/en/film/225/le-fils-de-joseph,,tt4741774,,"A young man who lives with his mother and has never known his father, heads off to look for him. He finds a cynical and Machiavellian man who works as a publisher in Paris. After he attempts to kill him, he finds filial love thanks to his uncle.",0,0,Le Fils de Joseph,fr +301348,Elvis & Nixon,2016-04-22,87.0,http://www.bleeckerstreetmedia.com/elvisandnixon,,tt2093991,"On December 21st, 1970, two of America's greatest recording artists met for the first time.","In 1970, a few days before Christmas, Elvis Presley showed up on the White House lawn seeking to be deputized into the Bureau of Narcotics and Dangerous Drugs by the President himself.",0,1055287,Elvis & Nixon,en +355008,Special Correspondents,2016-04-22,100.0,https://www.netflix.com/title/80048940,,tt4181052,Fake news. Real disaster.,A radio journalist and his technician get in over their heads when they hatch a scheme to fake their own kidnapping during a rebel uprising in South America and hide out in New York instead.,0,0,Special Correspondents,en +376292,Paradox,2016-04-22,90.0,,,tt4540434,,"A group of scientists are experimenting with time travel, and they manage to send one of their group ahead in time one hour. But when he comes back, he tells them that they’ll all be dead within the next hour unless they shut the machine down.",0,0,Paradox,en +343173,The ReZort,2016-04-22,87.0,,,tt3923662,,"The ReZort, a post apocalyptic safari, offers paying guests the opportunity to kill zombies in the wake of an outbreak.",0,0,The ReZort,en +366170,Yu-Gi-Oh!: The Dark Side of Dimensions,2016-04-23,120.0,http://www.yugioh20th.com/,,tt4273562,Back to The Stage of Battle,Yugi and Kaiba have a special duel that transcends dimensions.,0,1015339,遊☆戯☆王 THE DARK SIDE OF DIMENSIONS,ja +311764,Opening Night,2016-06-03,90.0,,,tt4156972,,A failed Broadway singer who now works as a production manager must save opening night on his new production by wrangling his eccentric cast and crew.,0,0,Opening Night,en +391618,Rumbos,2016-04-24,93.0,,,tt4857878,,"During a long night of August, some people have different experiences that leave a deep impression in them. Linked by a radio night show, all them cross the city of Barcelona, not knowing that their fates will collide with each other in unexpected ways.",0,0,Rumbos,es +390547,El rei borni,2016-04-24,,,,tt4555674,,,0,0,El rei borni,es +352164,Summer of 8,2016-04-26,88.0,https://www.facebook.com/Summerof8Movie,,tt4172146,,Eight close friends soak up their last day of summer together on the beach before parting ways for college.,0,0,Summer of 8,en +363841,Guernica,2016-04-26,110.0,http://www.sonypictures.com/movies/guernica/,,tt2556114,In love and war the first casualty is truth,"The fates of Henry - an American correspondent - and Teresa, one of the Republic's censors during the Spanish Civil War.",6229577,0,Gernika,en +312669,Maggie's Plan,2016-04-27,98.0,,,tt3471098,Chapter One: Maggie Meets John,"Maggie 's plan to have a baby on her own is derailed when she falls in love with John, a married man, destroying his volatile marriage to the brilliant and impossible Georgette. But one daughter and three years later, Maggie is out of love and in a quandary: what do you do when you suspect your man and his ex wife are actually perfect for each other?",0,3351735,Maggie's Plan,en +291351,The Sea of Trees,2016-04-27,110.0,,,tt3450900,Love will bring you home.,A suicidal American befriends a Japanese man lost in a forest near Mt. Fuji and the two search for a way out.,0,0,The Sea of Trees,en +395479,City 40,2016-04-28,89.0,,,tt2721744,,"Behind the walls of a forbidden city, the only thing more dangerous than its secrets is the truth.",0,0,City 40,en +394051,Phantom of the Theatre,2016-04-29,103.0,,,tt5639650,,"A haunted theatre, filled with the vengeful spirits of a tragically-trapped performance troupe murdered in a fire 13 years ago, waits for the once-grand palatial playhouse to re-open with a new show - and bring in new victims.",0,0,魔宫魅影,zh +365997,A Beautiful Planet,2016-04-29,45.0,http://abeautifulplanet.imax.com,,tt2800050,A Beautiful Planet,"A Beautiful Planet is a breathtaking portrait of Earth from space, providing a unique perspective and increased understanding of our planet and galaxy as never seen before. Made in cooperation with the National Aeronautics and Space Administration (NASA), the film features stunning footage of our magnificent blue planet — and the effects humanity has had on it over time — captured by the astronauts aboard the International Space Station (ISS) Exclusive IMAX and IMAX® 3D engagements of A Beautiful Planet begin April 29th.",0,0,A Beautiful Planet,en +390296,Do Not Resist,2016-04-30,70.0,,,tt5557976,,"Do Not Resist is an exploration of the rapid militarization of the police in the United States. Opening on startling on-the-scene footage in Ferguson, Missouri, the film then broadens its scope to present scenes from across the country.",0,0,Do Not Resist,en +396152,Restoration,2016-05-03,90.0,,,tt4517738,,"During home renovations, a young couple release a fiery spirit seeking retribution. To save themselves and set the spirit free, they must uncover the dire truth. But nothing is as simple as it seems...",0,0,Restoration,en +325133,Neighbors 2: Sorority Rising,2016-05-04,91.0,http://www.neighbors-movie.com/,400700,tt4438848,New neighbors.,A sorority moves in next door to the home of Mac and Kelly Radner who have a young child. The Radner's enlist their former nemeses from the fraternity to help battle the raucous sisters.,35000000,108758521,Neighbors 2: Sorority Rising,en +393079,Death by Death,2016-05-04,90.0,,,tt3407236,,A man's hypochondriacal relationship with his mother.,0,0,Je me tue à le dire,fr +377847,Scrappin',2016-05-05,0.0,,,tt5113028,,"Mirko Talhammer is beyond himself when two strange guys show up in his noble insurance office and remind him where he really comes from: from a scrapyard in the provinces, where careers are not what counts, other things are more important: scrapping things, the family, and every once in a while, a nice fist fight. Mirko left all that behind, but his father messes things up big time when he dies and leaves his son the run down scrapyard - together with his brother Letscho. And Letscho is still ticked off that Mirko deserted the clan. But soon the brothers realize that the Talhammers only have a future if they can pull themselves together and fulfill their father's last wish: to rob a train like real professionals! The coup itself is like a suicide mission, but then Kercher, the Talhammer's biggest nemesis, gets wind of things...",0,0,Schrotten!,de +270007,Take Down,2016-05-05,107.0,,,tt2782844,Rich. Spoiled. Hunted.,"Sons and daughters of international billionaires are sent to an boot camp where they are taught basic survival skills in hopes it will teach them responsibility. When they are taken hostage and taken for ransom by kidnappers, they will need to utilize every skill they learned to survive.",0,0,Take Down,en +368006,24,2016-05-05,164.0,,,tt4981966,Ready to GO Back,A scientist invents a time machine but his evil twin brother is after it and will go to any lengths to get the device in his hands.,10000000,15000000,24,ta +315664,Florence Foster Jenkins,2016-05-06,110.0,http://www.florencefosterjenkinsmovie.com/,,tt4136084,"People may say I couldn't sing, but no one can say I didn't sing","The story of Florence Foster Jenkins, a New York heiress, who dreamed of becoming an opera singer, despite having a terrible singing voice.",29000000,48902953,Florence Foster Jenkins,en +109453,Mothers and Daughters,2016-05-06,90.0,,,tt2395339,,Interwoven stories of what it is to be a mom seen through the lens of photographer Rigby Gray.,0,0,Mothers and Daughters,en +360284,A Light Beneath Their Feet,2016-05-06,89.0,,,tt3262022,,A high school senior must choose between enrolling at the college of her dreams and remaining at home to take care of her bipolar mother.,0,0,A Light Beneath Their Feet,en +331642,Born to Win,2016-05-06,0.0,,,tt4508542,,"Encarna, a thirtysomething girl of Móstoles (Madrid) is trapped in a life without changes, at the side of her lifelong boyfriend and with a job absent of incentives. Stigmatized by the famous Spanish sketch of the ""Empanadillas de Móstoles"", Encarna looks for a way to escape her boring life.",0,0,Nacida para ganar,es +153518,The Angry Birds Movie,2016-05-11,97.0,http://www.angrybirds-movie.com/en/,,tt1985949,Why so angry?,"An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, it’s up to these unlikely outcasts to figure out what the pigs are up to.",73000000,349779543,The Angry Birds Movie,en +293670,The Wailing,2016-05-12,156.0,,,tt5215952,Never be tempted.,A stranger arrives in a little village and soon after a mysterious sickness starts spreading. A policeman is drawn into the incident and is forced to solve the mystery in order to save his daughter.,0,0,곡성,ko +400465,Hitler's Folly,2016-06-03,67.0,,,tt5740242,,"""Hitler's Folly"" explores what might have happened if Adolf Hitler's art career had been more successful and instead of becoming an evil dictator, he was inspired to become an animator like Walt Disney.",0,0,Hitler's Folly,en +306966,Summer Camp,2016-05-13,81.0,,,tt2638662,Ready for some fun?,"A group of people have just signed up to be camp Councillors at a foreign country. They expect the camp to be the place for a memorable summer. Instead, something strange is going on and some of the campers begin to act strange. Things go terribly wrong real fast as a terrible game of tag has the campers running for their lives or going after the campers.",0,0,Summer Camp,en +391778,Azhar,2016-05-13,130.0,,,tt4906984,Love him. Hate him. Judge him.,"Indian biographical sports film directed by Tony D'Souza based on the life of the former Indian international cricketer, Mohammad Azharuddin. It will star emraan hashmi in the lead role alongside Prachi Desai , Nargis Fakhri and Huma Qureshi",0,0,Azhar,hi +257345,The Darkness,2016-05-13,92.0,,,tt1878841,Evil comes home,A family returns from a Grand Canyon vacation with a supernatural presence in tow.,4000000,10898293,The Darkness,en +310119,Last Days in the Desert,2016-05-13,98.0,,,tt3513054,,"On his way out of the wilderness, Jesus struggles with the Devil over the fate of a family in crisis, setting himself up for a dramatic test.",0,0,Last Days in the Desert,en +390930,If Cats Disappeared From the World,2016-05-14,102.0,http://www.sekaneko.com/,,tt4042994,,"A postman learns that he doesn't have much time left to live due to a terminal illness. A devil then appears in front of him and offers to extend his life if he picks something in the world that will disappear. The man thinks about his relationships with ex-friends, ex-lovers, relatives and colleagues who will be sincerely sad when he dies.",0,0,世界から猫が消えたなら,ja +398390,Superbia,2016-05-17,16.0,,,tt5653084,,"The native people of the surrealistic land of Superbia, where men and women form separate societies, face the changes sparked by the first equal couple in their history.",0,0,Superbia,en +246655,X-Men: Apocalypse,2016-05-18,144.0,http://www.foxmovies.com/movies/x-men-apocalypse,748,tt3385516,Only the strong will survive,"After the re-emergence of the world's first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.",178000000,543934787,X-Men: Apocalypse,en +330381,Lily Lane,2016-05-19,91.0,,,tt3876860,,A mother and son as grapple with the questions of life and death on an inner journey filled with strange stories.,0,0,Liliom ösvény,hu +394723,El Hilo Rojo,2016-05-19,0.0,,,tt5271772,,,0,0,El Hilo Rojo,es +387886,Canola,2016-05-19,116.0,,,tt6135036,,A girl who went missing after an accident returns 10 years later and reunites with her grandmother.,0,0,계춘할망,ko +399219,Happy End,2016-05-19,6.0,,,tt5749224,A black comedy about death with happy ending,"A splendid chain of unlikely encounters. Hunters, a tractor driver, a disco boy, and a corpse.",0,0,Happy End,en +399810,Brad Williams: Daddy Issues,2016-05-20,61.0,,,tt5773474,,"In this hilarious new comedy special, stand-up Brad Williams tackles race and political correctness, as well as how his father raised him to deal with adversity.",0,0,Brad Williams: Daddy Issues,en +398137,The Architect,2016-05-20,95.0,,,tt3180912,A couple hire a maverick architect,"When a couple sets out to build their dream house, they enlist the services of an uncompromising modernist architect, who proceeds to build HIS dream house instead of theirs.",0,0,The Architect,en +398786,Kammatipaadam,2016-05-20,177.0,,,tt5458088,,"Krishnan, who has been living away from his family and friends in Mumbai, gets a call from his friend Ganga in Kerala, out of the blue. He senses danger, and leaves for Kammattipadam, where both of them grew up.",1500000,0,കമ്മട്ടിപ്പാടം,ml +398633,Dan Soder: Not Special,2016-05-21,60.0,http://www.cc.com/comedians/dan-soder,,tt5737882,,"In Dan Soder's first hour-long special, he reveals the creepiest thing about his grandmother, admits that his recent breakup was his fault and remembers the hardest thing about being raised by a single mom. Throughout his special, Soder is so laid-back and charming that you'll be grateful he wasn't actually possessed by the devil that one time.",0,0,Dan Soder: Not Special,en +376502,The Blackout Experiments,2016-05-21,80.0,,,tt5222646,,"You arrive at a secret location at a precise time, prompted by a mysterious email. You must follow the instructions closely. Once inside, disturbing visions begin. Unspeakable acts befall you—often frightening, sometimes sensual, possibly painful—each stimulating your deepest fears. And when it's over, you are changed, abandoned, and left wondering what is real and what was merely a game.",0,0,The Blackout Experiments,en +340215,Dusk,2016-05-24,91.0,,,tt3868978,,"John Whitmore wakes to find his wife, Anne, has disappeared from their bed overnight and a recorded ransom message now remains in her place.",0,0,Dusk,en +361146,Point Zero,2016-05-26,87.0,,,tt3922062,,"Young Ênio is having to deal with a lot at home. His family is falling apart, whilst his sister's friends bully him at school. Over the course of one fateful night Ênio goes on an adventure, in a tour-de-force debut about growing up.",0,0,Ponto Zero,pt +442949,Rising Fear,2016-05-30,94.0,http://risingfear.com/,,tt3006588,,"When terrorists take our nation hostage, a rogue marine sets out to stop them.",0,0,Rising Fear,en +400174,Roots,2016-05-30,383.0,,,tt3315386,Your name is your shield.,"An adaptation of Alex Haley's ""Roots"", chronicling the history of an African slave sold to America and his descendants.",0,0,Roots,en +309879,Dark Signal,2016-05-30,98.0,,,tt3780208,,The spirit of a murdered girl returns with a message. Now a stranded woman must team up with the staff of a local station to solve the mystery of her death.,0,0,Dark Signal,en +267935,The BFG,2016-06-01,120.0,http://movies.disney.com/the-bfg,,tt3691740,The world is more giant than you can imagine.,"The BFG is no ordinary bone-crunching giant. He is far too nice and jumbly. It's lucky for Sophie that he is. Had she been carried off in the middle of the night by the Bloodbottler, or any of the other giants—rather than the BFG—she would have soon become breakfast. When Sophie hears that the giants are flush-bunking off to England to swollomp a few nice little chiddlers, she decides she must stop them once and for all. And the BFG is going to help her!",140000000,183345589,The BFG,en +349948,The Dark Below,2016-06-01,75.0,,,tt3591696,Silence is the most powerful scream,The Dark Below is an experimental thriller set on Michigan's Great Lakes.,0,0,The Dark Below,en +393407,They Are Everywhere,2016-06-01,0.0,,,tt5324800,,,0,0,Ils sont partout,fr +399811,Ben Gleib: Neurotic Gangster,2016-06-03,59.0,,,tt5773116,,"Satirical comedian Ben Gleib, dubbed the ""next big thing"" on Esquire's comedian list, performs his first one-hour comedy special where he tackles social media, singledom, vegetarians and everything in between.",0,0,Ben Gleib: Neurotic Gangster,en +334538,Into the Forest,2016-06-03,101.0,https://www.facebook.com/INTOTHEFORESTMOVIE,,tt2625810,Hope is power,"In the not too distant future, two young women who live in a remote ancient forest discover the world around them is on the brink of an apocalypse. Informed only by rumor, they fight intruders, disease, loneliness & starvation.",0,0,Into the Forest,en +396392,Wedding Bells,2016-06-03,84.0,http://www.hallmarkchannel.com/wedding-bells,,tt5670394,,"Nick and Molly, commitment-phobic and busy professionals with little in common, are asked to be the best man and maid of honor at the wedding of their mutual friends, Amy and Jamie.",0,0,Wedding Bells,en +328429,Approaching the Unknown,2016-06-03,90.0,,,tt2674430,,"Captain William Stanaforth is on a one-way solo mission to take the first steps in colonising Mars. Like all pioneers throughout history, Stanaforth will face insurmountable odds and life and death decisions as he rockets bravely through space.",0,0,Approaching the Unknown,en +393659,Ms. Matched,2016-06-04,84.0,http://www.hallmarkchannel.com/ms-matched,,tt5692030,,"A successful wedding planner is trying to make dreams come true for brides by organizing fairy tale weddings. But when she is paired with a financial advisor at a wedding expo, she soon realizes that he is giving the exact opposite advice to their audience by telling them to save their money. When they are forced to spend a lot of time together, they find out that they have more in common than they think.",0,0,Ms. Matched,en +391642,The Kodai Family,2016-06-04,116.0,http://koudaike-movie.jp/,,tt5180618,,"Kie Hirano (Haruka Ayase) is an ordinary OL who often daydreams. Mitsumasa Kodai (Takumi Saito) at the same company as Kie Hirano, but he is an elite salaryman. He is the eldest son in the Kodai family and he is also telepathic. Mitsumasa Kodai got his special ability to read other people's mind from his British grandmother. Mitsumasa becomes attracted to Kie's warm heart and her dreamy temperament. They begin to date and enjoy their days together, but Mitsumasa Kodai's mother calls.",0,0,高台家の人々,ja +401060,Mercy,2016-06-04,82.0,,,tt5710042,,"Brought together at their childhood home over their dying mother, an estranged family is thrust into a deadly fight for their own survival.",0,0,Mercy,en +391757,Never Back Down: No Surrender,2016-06-07,101.0,,96676,tt4790268,,"Picking up after the events of Never Back Down 2, former MMA champion Case Walker is on the comeback trail to become champion once again.",0,0,Never Back Down: No Surrender,en +397365,Madaari,2016-06-10,134.0,,,tt5713232,Sshhh...Desh So Raha hai,"Nirmal loses his family in a man-made disaster, he starts the journey of seeking answers asking for accountability which leads him to a deadly path. The journey brings out the extraordinaire out of an ordinary man.",0,0,मदारी,hi +405621,The Miki Howard Story,2016-06-12,81.0,,,tt5279042,,"Story of Miki Howard, an American R&B and Jazz singer, whose hits include ""Ain't Nobody Like You"" and ""Ain't Nuthin' in the World.""",0,0,The Miki Howard Story,en +228034,The Bronx Bull,2016-06-13,94.0,,,tt1148205,,"A combination ""before the rage"" and ""after the rage"" of world middleweight boxing champion Jake LaMotta's tumultuous life and times.",7000000,0,The Bronx Bull,en +302699,Central Intelligence,2016-06-15,107.0,http://www.centralintelligencemovie.com/,,tt1489889,Saving the world takes a little Hart and a big Johnson,"After he reunites with an old pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.",50000000,216972543,Central Intelligence,en +127380,Finding Dory,2016-06-16,97.0,http://movies.disney.com/finding-dory,137697,tt2277860,An unforgettable journey she probably won't remember.,Dory is reunited with her friends Nemo and Marlin in the search for answers about her past. What can she remember? Who are her parents? And where did she learn to speak Whale?,200000000,1028570889,Finding Dory,en +399106,Piper,2016-06-16,6.0,http://www.pixar.com/short_films/Theatrical-Shorts/Piper,,tt5613056,,"A mother bird tries to teach her little one how to find food by herself. In the process, she encounters a traumatic experience that she must overcome in order to survive.",0,0,Piper,en +344906,The Last Heist,2016-06-17,84.0,,,tt4743562,,"A bank heist descends into violent chaos when one of the hostages turns out to be a serial killer. Trapping the well-organized team of bank robbers in the building, the killer is now picking them off one by one.",0,0,The Last Heist,en +328111,The Secret Life of Pets,2016-06-18,87.0,http://www.thesecretlifeofpets.com/,427084,tt2709768,Think this is what they do all day?,"The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.",75000000,875457937,The Secret Life of Pets,en +401442,Internet Famous,2016-06-21,0.0,,,tt5291862,,"A group of Internet ""sensations"" compete for a tv show. Parody of the Internet.",0,0,Internet Famous,fr +396330,LEGO DC Comics Super Heroes: Justice League - Gotham City Breakout,2016-06-21,78.0,,386162,tt5612702,,"The caped crusader reluctantly agrees to let Batgirl and Nightwing take him on a long overdue vacation from crime-fighting, while Superman and the Justice League watch over Gotham City.",0,0,LEGO DC Comics Super Heroes: Justice League - Gotham City Breakout,en +150201,You Are Not Alone,2016-06-23,96.0,http://www.facebook.com/YouAreNotAloneFilm,,tt3576044,He's Been Watching You,"""An idyllic summer day turns into a living nightmare ... With school finally over, college graduate Natalie Wilner returns to her hometown to celebrate the Fourth of July weekend. But beneath the flags and fireworks lurks a dark, malevolent figure. After a night of drunken parties, she stumbles home and drifts off to sleep, only to be woken moments later by a loud knock on the door. Experience one night of terror, through Natalie’s eyes as she fights to escape a relentless, knife-wielding maniac …""",0,0,You Are Not Alone,en +403130,Intruder,2016-06-24,95.0,,,tt3014556,"In the shadows, he waits...","During one of Oregon's most violent storms, a young cellist seeks solitude and comfort in the safety of her large apartment, but soon realizes she might not be home alone.",0,0,Intruder,en +360606,Adventures in Babysitting,2016-06-24,105.0,,,tt4456850,,"Two teen rival babysitters, Jenny and Luci, team up to hunt down one of their kids who accidentally run away into the big city without any supervision.",0,0,Adventures in Babysitting,en +332567,The Shallows,2016-06-24,86.0,http://www.theshallows-movie.com,,tt4052882,What was once in the deep is now in the shallows.,"An injured surfer stranded on a buoy needs to get back to shore, but the great white shark stalking her might have other ideas.",17000000,119100758,The Shallows,en +347031,Swiss Army Man,2016-06-24,97.0,http://swissarmyman.com/,,tt4034354,We all need somebody to lean on.,"Alone on a tiny deserted island, Hank has given up all hope of ever making it home again. But one day everything changes when a dead body washes ashore, and he soon realizes it may be his last opportunity to escape certain death. Armed with his new “friend” and an unusual bag of tricks, the duo go on an epic adventure to bring Hank back to the woman of his dreams.",3000000,4210454,Swiss Army Man,en +393562,Raman Raghav 2.0,2016-06-24,127.0,,,tt5662932,,"Set in present day Mumbai the story follows the life of a serial killer Ramanna who is inspired by an infamous serial killer from the 1960s Raman Raghav. His strange obsession with Raghavan, a young Cop keeps growing as he closely follows him without his knowledge and often creates situations where both of them come face to face.",521873,1013926,रमन राघव २.०,hi +388764,Bounty Hunters,2016-07-01,106.0,,,tt5243900,The hunt begins,"Lee Shan and Ayo are ex-Interpol agents who are now bounty hunters, chasing fugitives for cash rewards. When the two of them are framed for a hotel-bombing, they join hands with a legendary bounty hunter named Cat, along with her teammates, to find the real bomber.",0,0,赏金猎人,zh +359412,Marauders,2016-07-01,107.0,,,tt3963816,The rich will pay,An untraceable group of elite bank robbers is chased by a suicidal FBI agent who uncovers a deeper purpose behind the robbery-homicides.,15000000,0,Marauders,en +391995,Hillary's America: The Secret History of the Democratic Party,2016-07-01,107.0,http://www.dineshdsouza.com/movies/hillarys-america/,,tt5646136,,"In his newest film, Dinesh D’Souza will expose the secret history of the Democrats and the true motivations of Hillary.",5000000,13000000,Hillary's America: The Secret History of the Democratic Party,en +345924,The Night Stalker,2016-07-01,89.0,,,tt1821657,,An account of serial killer Richard Ramírez and his rampage in California during the mid-1980s.,0,0,The Night Stalker,en +427409,Once Upon a Line,2016-07-01,8.0,,,tt5981110,,"A man leads a monotone, humdrum existence until he meets somebody.",0,0,Once Upon a Line,en +378441,Notes on Blindness,2016-07-01,90.0,http://www.notesonblindness.co.uk/,,tt5117222,,"After losing sight in 1983, John Hull began keeping an audio diary, a unique testimony of loss, rebirth and renewal, excavating the interior world of blindness. Following on from the Emmy Award-winning short film of the same name, Notes on Blindness is an ambitious and groundbreaking work, both affecting and innovative.",0,0,Notes on Blindness,en +405325,Dwayne Perkins: Take Note,2016-07-01,0.0,,,tt5857874,,Dwayne Perkins' standup special.,0,0,Dwayne Perkins: Take Note,en +188927,Star Trek Beyond,2016-07-07,122.0,http://www.startrekmovie.com/,115575,tt2660888,,"The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.",185000000,343471816,Star Trek Beyond,en +405388,Mono,2016-07-08,88.0,,,tt4872896,"First you get the mono, then you get the power.","A mono virus outbreak at Highland Park High takes out the most popular kids for two months, allowing the outcasts to rule the school.",0,0,Mono,en +333667,Rock Dog,2016-07-08,90.0,http://www.rockdogmovie.com/,,tt2822672,A new breed of rock star,"When a radio falls from the sky into the hands of a wide-eyed Tibetan Mastiff, he leaves home to fulfill his dream of becoming a musician, setting into motion a series of completely unexpected events.",60000000,9420546,Rock Dog,en +290825,Yoga Hosers,2016-07-08,88.0,http://www.yogahosers.com/,,tt3838992,Do your 'wurst...,Two teenage yoga enthusiasts team up with a legendary man-hunter to battle with an ancient evil presence that is threatening their major party plans.,5000000,0,Yoga Hosers,en +374475,Toni Erdmann,2016-07-14,162.0,,,tt4048272,,Without warning a father comes to visit his daughter abroad. He believes that she lost her humor and therefore surprises her with a rampage of jokes.,3537415,1390172,Toni Erdmann,de +308529,Kickboxer: Vengeance,2016-07-14,90.0,http://www.kickboxervengeance.com,105322,tt3082898,,"Eric and Kurt Sloane are the descendants of a well-known Venice, California-based family of martial artists. Kurt, the younger of the two, has always been in his brother Eric’s shadow, and despite his talent has been told he lacks the instinct needed to become a champion. But when Kurt witnesses the merciless murder of his brother at the hands of Muay Thai champion Tong Po, he vows revenge. He trains with his brother’s mentor for a fight to the death with Tong Po. At first it seems impossible to turn Kurt into the living weapon he must become to beat Tong Po, but through a series of tests and dangerous encounters, Kurt proves he has a deeper strength that will carry him through to his final showdown with Tong Po.",17000000,0,Kickboxer: Vengeance,en +353728,Closet Monster,2016-07-15,90.0,http://rhombusmedia.com/film/closet-monster/,,tt3638396,,A creative and driven teenager is desperate to escape his hometown and the haunting memories of his turbulent childhood.,0,33962,Closet Monster,en +403173,Pete Johansson: You Might Also Enjoy Pete Johansson,2016-07-15,67.0,,,tt5823326,,Johansson's stand up special.,0,0,Pete Johansson: You Might Also Enjoy Pete Johansson,en +336271,The Dark Stranger,2016-07-15,90.0,,,tt3653650,,"Haunted by a terrifying spirit out of her graphic novel, a young artist struggles to overcome her psychosis before it destroys her.",0,0,The Dark Stranger,en +384737,Precious Cargo,2016-07-15,99.0,,,tt4651410,Never steal from a thief,"After a botched heist, Eddie a murderous crime boss, hunts down the seductive thief Karen who failed him. In order to win back Eddie’s trust, Karen recruits her ex-lover and premier thief Jack to steal a cargo of rare precious gems. But when the job goes down, allegiances are betrayed and lines are crossed as Jack, Karen, and Eddie face off in a fateful showdown.",10500000,100659,Precious Cargo,en +396535,Train to Busan,2016-07-20,118.0,http://www.wellgousa.com/theatrical/train-to-busan,,tt5700672,Life-or-death survival begins,"Martial law is declared when a mysterious viral outbreak pushes Korea into a state of emergency. Those on an express train to Busan, a city that has successfully fended off the viral outbreak, must fight for their own survival…",8820000,2129768,부산행,ko +270774,Skiptrace,2016-07-21,107.0,,,tt2238032,Ready. Set. Panic.,A detective from Hong Kong teams up with an American gambler to battle against a notorious Chinese criminal.,32000000,58500000,Skiptrace,en +357851,Let Me Make You a Martyr,2016-07-22,85.0,,,tt3699372,,"A cerebral revenge film about two adopted siblings who fall in love, and hatch a plan to kill their abusive father.",0,0,Let Me Make You a Martyr,de +412103,Rick and Morty: State of Georgia Vs. Denver Fenton Allen,2016-07-24,10.0,,,tt5950978,,"A faithful, word-for-word recreation of one colorful day in the American court system.",0,0,Rick and Morty: State of Georgia Vs. Denver Fenton Allen,en +408140,Blood Moon,2016-07-25,73.0,,,tt3189648,Revenge is a dish best served COLD!,A young woman (Maya Kazan) gets revenge on both her uncle and the man who took advantage of her.,0,0,Blood Moon,en +407887,Operation Chromite,2016-07-27,110.0,,,tt4939066,The Odds Were 5000 to 1 … One was all They Needed.,A squad of soldiers fight in the Korean War's crucial Battle of Incheon.,0,0,인천상륙작전,ko +377158,United States of Love,2016-07-29,104.0,http://www.neweuropefilmsales.com/movies/97,,tt5333110,,"Poland, 1990. The first euphoric year of freedom, but also of uncertainty for the future. Four apparently happy women of different ages decide it's time to change their lives, and fulfill their desires.",0,0,Zjednoczone Stany Miłosci,pl +407173,For Love and Honor,2016-07-30,84.0,,,tt5781222,,"When a recently retired military officer Colonel is tapped by his old friend to take over the military division to help save declining Stone Creek Academy, he immediately clashes with academics dean, a civilian woman whose ""touchy-feely"" methods are at complete odds with his.",0,0,For Love and Honor,en +402446,Edge of Winter,2016-07-31,89.0,,,tt4526546,Nothing is more dangerous than a father's love.,"When two brothers are stranded by a brutal winter storm with an unpredictable father they barely know, the boys begin to suspect their supposed protector may be their biggest threat.",0,0,Edge of Winter,en +412309,How to Win the US Presidency,2016-08-01,50.0,,,tt5933588,,"This whimsical look at rough-and-tumble American politics examines the influence of money, religion and even ancient Rome on presidential campaigns.",0,0,How to Win the US Presidency,en +408755,The Binding,2016-08-02,88.0,,,tt4096750,Fear What You Believe,A young woman's faith is put to the ultimate test when she is forced to uncover the truth behind her husband's horrific visions.,0,0,The Binding,en +393367,Poi E: The Story of Our Song,2016-08-04,93.0,,,tt5459730,,"Written and directed by Tearepa Kahi (Mt Zion) and starring Maaka Pohatu (The Modern Maori Quartet, Two Little Boys) the film tells the story of musician Dalvanius Prime and the origin of the song “Poi E”, a ground-breaking fusion of 1980s pop and traditional Māori music. “Poi E”, composed by Dalvanius and Ngoingoi Pēwhairangi and performed by the Patea Māori Club, remains the only song in Te Reo Māori to reach No 1 in the charts, over 30 years since its 1984 release.",0,0,Poi E: The Story of Our Song,en +376579,Let's Be Evil,2016-08-05,83.0,,,tt3655682,Evil see. Evil do.,A woman enters an underground bunker where gifted children use virtual reality technology to wreak havoc.,0,0,Let's Be Evil,en +410259,Race to Win,2016-08-05,0.0,,,tt5024894,Courage is all you need to win.,"After losing her father, a young women must find the strength to face her fears and compete in the race of her life or her family will lose everything.",0,0,Race to Win,en +403593,Bazodee,2016-08-05,101.0,,,tt2922724,Love is a Carousel,"Set in beautiful Trinidad and Tobago, BAZODEE is a Bollywood style Caribbean musical about being true to yourself and honest in love at all costs.",0,0,Bazodee,en +401222,ISRA 88,2016-08-08,119.0,,,tt2278870,Their mission was to reach the edge of the universe... what they found was beyond imagination.,When a scientist and a pilot volunteer for a high profile space mission they are told their goal will be to do what no one has ever done before to find the end of the universe. After 13 years in space the ship crashes through the end of the known universe and into the unknown......,0,0,ISRA 88,en +294272,Pete's Dragon,2016-08-10,102.0,http://movies.disney.com/petes-dragon-2016,,tt2788732,Some secrets are too big to keep.,"Pete is a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, forest ranger Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.",65000000,143695338,Pete's Dragon,en +405050,Bad Girl,2016-08-11,99.0,http://www.badgirlmovie.com/,,tt3598108,,"Bad girl Amy, 17, is given one last chance by her adoptive parents, who think Amy's friendship with local girl Chloe is a step in the right direction. But when Amy discovers Chloe's secret she finds herself fighting for her life, and for the future of the family she herself tried to destroy.",1,0,Bad Girl,en +402672,Mohenjo Daro,2016-08-11,155.0,,,tt3859980,,"Village lad Sarman is drawn to big, bad Mohenjo Daro - and its mascot Chaani. But Chaani must wed Munja, son of Mohenjo Daro's ruler, Maham. Will Sarman find love - and more - in Mohenjo Daro?",15050000,16180000,Mohenjo Daro,hi +410634,Diggers,2016-08-11,80.0,,,tt5953804,,"A couple hires a professional digger (underground structure explorer) to help them find their friends, who mysteriously disappeared in the subway.",0,0,Диггеры,ru +373247,Down Under,2016-08-11,90.0,,,tt4463120,Australia V Australia - Nobody wins,"A black comedy set during the aftermath of the Cronulla riots, it is the story of two carloads of hotheads from both sides of the fight destined to collide.",2000000,0,Down Under,en +413198,Call of Heroes,2016-08-12,120.0,,,tt5842624,,"During the warlords era in China, a village located in rural area called Pucheng fell into dangerous situation when its government allocated all its military force to the front line, the cruel commandant Cao from the enemy troops arrived the village and killed the innocent, the guardians of Pucheng were desperate to fight against Cao for justice and to protect their homeland.",32000000,0,Ngai sing,cn +408024,Moka,2016-08-17,89.0,,,tt5072406,,"Diane Kramer is led by one obsession: to find the driver of the mocha color Mercedes which hit her son and devastated her life. With a few belongings, some money and a gun, she goes to Evian, where she's learned the driver lives.",0,126463,Moka,fr +411442,Time Raiders,2016-08-18,123.0,http://www.timeraidersmovie.com,,tt5354664,,Time Raiders is based on the online novel series Daomu Biji written by Xu Lei. It tells the story of explorers searching for the secrets of immortality in ancient tombs,0,0,盗墓笔记,zh +375082,Spaceman,2016-08-19,90.0,,,tt2262518,,Story of former major league baseball pitcher Bill 'Spaceman' Lee following his release by the Montreal Expos.,0,0,Spaceman,en +352890,Morris from America,2016-08-19,89.0,,,tt3652862,Nothing rhymes with Germany,The romantic and coming-of-age misadventures of a 13-year-old American living in Germany.,0,0,Morris from America,en +411081,Summer Love,2016-08-20,84.0,http://www.hallmarkchannel.com/summer-love,,tt5950094,,"Maya Sulliway is a struggling single mom who's studying to become an accountant. When her young daughter goes off to sleepaway camp, Maya accepts a summer internship at Kizzmit, a tech company known for developing a popular social app, in order to receive college credit.",0,0,Summer Love,en +300669,Don't Breathe,2016-08-25,88.0,http://www.dontbreathe-movie.com/site/,,tt4160708,"This house looked like an easy target, until they found out what was inside.",A group of teens break into a blind man's home thinking they'll get away with the perfect crime. They're wrong.,9900000,157100845,Don't Breathe,en +396643,A Flying Jatt,2016-08-25,151.0,,,tt5235880,,Jatt is a reluctant super hero that fights crime and protects people. He meets his match in the evil Raka who he must face off to save the day.,0,0,ए फ़्लाइंग जट्ट,hi +373397,Refrigerantes e Canções de Amor,2016-08-25,0.0,,,tt4747848,,New Luís Galvão Teles movie,0,0,Refrigerantes e Canções de Amor,pt +360924,Red Billabong,2016-08-25,113.0,http://www.redbillabongmovie.com/,,tt4011010,Blood is Thicker than Water,"In the Australian Outback, two brothers discover old secrets and family lies. As their friends start to go missing they fear they are being stalked by someone or something from their worst nightmares - But is it just - A story? A legend? A hoax? Or is it real?",0,0,Red Billabong,en +184341,Hands of Stone,2016-08-26,105.0,,,tt1781827,No más. No surrender.,The legendary Roberto Duran and his equally legendary trainer Ray Arcel change each other's lives.,20000000,0,Hands of Stone,en +271404,Beyond Skyline,2017-10-20,0.0,,,tt1724970,,A tough-as-nails detective embarks on a relentless pursuit to free his son from a nightmarish alien warship.,0,0,Beyond Skyline,en +310888,Southside with You,2016-08-26,80.0,,,tt4258698,,"Chronicles a single day in the summer of 1989 when the future president of the United States, Barack Obama, wooed his future First Lady on an epic first date across Chicago's South Side.",0,0,Southside with You,en +364690,Natural Selection,2016-08-26,100.0,http://www.naturalselectionthefilm.com/,,tt3667792,"At our darkest time, a moment will come that will define who we are.",Tyler is a young man who is desperately seeking direction from a world that seems to have abandoned him. Searching for answers he looks to his new friend Indrid who appears to have it all figured out.,0,0,Natural Selection,en +379441,Greater,2016-08-26,130.0,http://greaterthemovie.com/,,tt2950418,,"Greater – The story of Brandon Burlsworth, possibly the greatest walk-on in the history of college football.",0,0,Greater,en +351242,The Intervention,2016-08-26,90.0,,,tt4872078,What are friends for?,A weekend getaway for four couples takes a sharp turn when one of the couples discovers the entire trip was orchestrated to host an intervention on their marriage.,0,0,The Intervention,en +410965,Jeff Foxworthy & Larry the Cable Guy: We've Been Thinking,2016-08-26,74.0,,,tt5571712,,Comedians Jeff Foxworthy and Larry the Cable Guy bring their distinctive brand of humor to a packed crowd in Minneapolis.,0,0,Jeff Foxworthy & Larry the Cable Guy: We've Been Thinking,en +412851,Seneca's Day,2016-08-26,106.0,,,tt5988898,,"Seneca’s Day is set in the year 1989, the final period of the Soviet era in Lithuania. Eighteen-year old buddies establish the Seneca’s Fellowship with the motto “Live each day as if it was your last”. A love triangle breaks up the fellowship right at the time the nation experiences an exceptional sense of community via Baltic Chain.Twenty-five years later, the main character who at first glance appears to be accompanied by good luck, is disillusioned with himself. He has betrayed the ideals of his youth and become a cold observer of life.",0,0,Senekos Diena,lt +338189,It's Only the End of the World,2016-08-26,96.0,http://curzonartificialeye.com/its-only-the-end-of-the-world,,tt4645368,It would have been a lovely family dinner. If it weren't the last.,"Louis, a terminally ill writer, returns home after a long absence to tell his family that he is dying.",0,0,Juste la fin du monde,fr +405882,Don't Kill It,2016-08-27,93.0,http://archstonedistribution.com/dont-kill-it/,,tt3113696,,"Demon hunter, Jebediah Huntley teams up with an FBI agent to battle a supernatural force in the southern state of Mississippi.",3500000,0,Don't Kill It,en +413279,Team Thor,2016-08-28,3.0,,,tt6016776,,Discover what Thor was up to during the events of Captain America: Civil War.,0,0,Team Thor,en +411802,Batman Unlimited: Mechs vs. Mutants,2016-08-30,72.0,,356688,tt5896146,,"Mr. Freeze turns Killer Croc and Bane into super-sized monsters, and they bash their way through downtown Gotham until the Caped Crusader and his team of heroes join the fight in their giant robot mechs.",0,0,Batman Unlimited: Mechs vs. Mutants,en +437122,Third Guest,2016-08-30,7.0,,,tt6020172,Unplanned Unwanted,Sci-fi end of the world drama,0,0,Third Guest,en +196359,Max Rose,2016-09-02,83.0,,,tt1439558,,"An ageing jazz pianist learns something about his wife of 65 years, leading him to question their life together.",0,0,Max Rose,en +375794,No manches Frida,2016-09-02,0.0,,,tt5259966,,A thief gets a job at a school in order to retrieve the money he hid awhile ago.,0,0,No manches Frida,es +369894,Wakefield,2016-09-02,106.0,,,tt5195412,,A man's nervous breakdown causes him to leave his wife and live in his attic for several months.,0,0,Wakefield,en +410118,Cave,2016-09-02,85.0,,,tt4915318,Go deeper,"A group of former military elites set out to explore an uncharted abyss, not knowing their worst nightmare is waiting for them deep beneath the ground.",0,0,Cave,no +414827,Siccin 3: Cürmü Ask,2016-09-02,87.0,https://www.facebook.com/Siccin3/,,tt6029122,,"After a terrible car accident, Sedat will do anything to save a childhood friend – even if it means dealing with demons and ghosts.",0,0,Siccin 3: Cürmü Ask,tr +405473,A Date for Mad Mary,2016-09-02,82.0,http://directory.irishfilmboard.ie/films/1932-a-date-for-mad-mary,,tt4197642,,"""Mad"" Mary McArdle returns to Drogheda after a short spell in prison for something she'd rather forget. Back home, everything and everyone has changed. Her best friend, Charlene, is about to get married and Mary is maid of honor. When Charlene refuses Mary a 'plus one' on the grounds that she probably couldn't find a date, Mary becomes determined to prove her wrong.",0,0,A Date for Mad Mary,en +336011,White Girl,2016-09-02,88.0,,,tt4129870,,"Summer, New York City. A college girl falls hard for a guy she just met. After a night of partying goes wrong, she goes to wild extremes to get him back.",700000,200242,White Girl,en +414749,Comedy Central Roast of Rob Lowe,2016-09-05,81.0,http://www.cc.com/shows/roast-of-rob-lowe,,tt6038506,,It's Rob Lowe's turn to step in to the celebrity hot seat for the latest installment of The Comedy Central Roast.,0,0,Comedy Central Roast of Rob Lowe,en +414610,Stalked by My Doctor: The Return,2016-09-05,97.0,,,tt5989054,,No Overview,0,0,Stalked by My Doctor: The Return,en +406052,Mostly Ghostly 3: One Night in Doom House,2016-09-06,89.0,,326849,tt5127214,,"Just one enchanted jewel stands between earth and an army of evil spirits led by the devious ghoul, Phears. With the help of his new girlfriend and ghost pals, Max Doyle races to find the crystal and save the world.",0,0,Mostly Ghostly 3: One Night in Doom House,en +382501,Eternity,2016-09-07,115.0,,,tt3564574,,The story of the women and relationships that define a family across a century.,0,0,Eternity,fr +363579,The Age of Shadows,2016-09-07,140.0,,,tt4914580,,"Movie follows the activities of the Heroic Corps, an anti-Japanese independence organization that existed under the Japanese colonial period in South Korea. The group used violent means to achieve Korean independence.",8620000,0,밀정,ko +408537,The Distinguished Citizen,2016-09-08,118.0,,,tt4562518,,"After refusing big and prestigious awards all over the world, Mr. Mantovani, Literature Nobel Prize winner, accepts an invitation to visit his hometown in Argentina, which has been the inspiration for all of his books. It turns out that accepting this invitation is the worse idea of his life. Expect the unexpected when you have used real people as characters in your novels!",0,0,El ciudadano ilustre,es +390409,Magnus,2016-09-09,76.0,,,tt5471480,,"From a young age Magnus Carlsen had aspirations of becoming a champion chess player. While many players seek out an intensely rigid environment to hone their skills, Magnus’ brilliance shines brightest when surrounded by his loving and supportive family. Through an extensive amount of archival footage and home movies, director Benjamin Ree reveals this young man’s unusual and rapid trajectory to the pinnacle of the chess world. This film allows the audience to not only peek inside this isolated community but also witness the maturation of a modern genius.",0,0,Magnus,no +416635,American Summer,2016-09-09,80.0,http://ameerikasuvi.ee/,,tt5979406,Adventure of a lifetime - or not?,"""American summer"" is a road movie about life. It is loosely based on the adventures of real Eastern European university students selling books door to door in United States.",0,0,Ameerika suvi,en +377290,A Serious Game,2016-09-09,115.0,,,tt2787570,,An adaptation of Hjalmar Söderberg's novel The Serious Game from 1912. The great Swedish love story.,0,0,Den allvarsamma leken,sv +339408,The Birth of a Nation,2016-09-09,120.0,http://www.foxsearchlight.com/thebirthofanation/,,tt4196450,The Untold Story of Nat Turner,"Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virgina that results in a violent retaliation from whites.",8500000,15861566,The Birth of a Nation,en +411638,The Fury of a Patient Man,2016-09-09,92.0,,,tt4771896,,"The tentative romance between a gentle Madrid labourer and a working single mother becomes a struggle for survival when the woman’s violent boyfriend returns from prison, in the gritty, suspenseful debut feature from Spanish actor Raúl Arévalo.",1200000,0,Tarde para la ira,es +293452,The Disappointments Room,2016-09-09,92.0,,,tt2364897,Some mysteries should not be unlocked,A mother and her young son release unimaginable horrors from the attic of their rural dream home.,15000000,0,The Disappointments Room,en +412209,Tramps,2016-09-10,82.0,,,tt4991512,,A young man and woman find love in an unlikely place while carrying out a shady deal.,2000000,0,Tramps,en +415542,Jeff Ross Roasts Cops,2016-09-10,50.0,,,tt6156476,,"Roastmaster General Jeff Ross talks to Black Lives Matter activists, goes on an eye-opening police ride-along, and roasts members of the Boston Police Department.",0,0,Jeff Ross Roasts Cops,en +407559,I Am the Pretty Thing That Lives in the House,2016-09-10,89.0,,,tt5059406,,A young nurse takes care of elderly author who lives in a haunted house.,0,0,I Am the Pretty Thing That Lives in the House,en +397717,Barry,2016-09-10,104.0,,,tt5477566,"Before he was Barack, he was Barry",A biopic of Barack Obama set during his time as a college student in New York City.,0,0,Barry,en +413337,Girl in the Box,2016-09-10,0.0,,,tt5957584,,"A hitchhiking woman is abducted by a young couple and held captive for seven years, during which time she's tortured and forced to live as a slave to her captors.",0,0,Girl in the Box,en +385114,Beauties of the Night,2016-09-12,90.0,,,tt4958426,,"What happened to those vedettes who represented the mexican cabaret’s exotic beauty in the ‘70s and ‘80s? Four decades after the end of their roles, they tell their stories with dignity.",0,0,Bellas de noche,es +385372,Chalk It Up,2016-09-13,90.0,,,tt3951732,,"When a super girly-girl is dumped by her boyfriend; she decides to do everything she can to get him back by building a college gymnastics team, quickly learning that she is capable of a lot more than just getting an MRS degree.",0,0,Chalk It Up,en +301334,Una,2016-09-14,94.0,http://bronstudios.com/portfolio/una/,,tt2315582,,"When a young woman unexpectedly arrives at an older man’s workplace, looking for answers, the secrets of the past threaten to unravel his new life.",0,23275,Una,en +333484,The Magnificent Seven,2016-09-14,132.0,http://www.sonypictures.com/movies/themagnificentseven/,,tt2404435,Justice has a number.,Seven gun men in the old west gradually come together to help a poor village against savage thieves.,90000000,162360636,The Magnificent Seven,en +284564,31,2016-09-15,102.0,http://robzombie.com/movies/31-movie/,,tt3835080,Welcome to hell,ROB ZOMBIE'S S P O O K H A U S 31,1500000,779820,31,en +393939,Set the Thames on Fire,2016-09-15,83.0,,,tt3527166,,Two young men plot to escape a dystopian future London ruled by corporate tyrant The Impresario,0,0,Set the Thames on Fire,en +413052,Hacker,2016-09-15,95.0,http://www.sonypictures.com/movies/hacker/,,tt3173594,He will find you. He will become you.,"Alex, an immigrant from Ukraine comes to Canada and becomes involved with an online criminal organization called Darkweb. What starts off as a way to help his parents financially, soon becomes a personal vendetta against the entire banking system, when his mother is fired from her job at the bank",2000000,0,Hacker,en +351211,Blair Witch,2016-09-15,90.0,http://www.blairwitch.movie/,64750,tt1540011,There's something evil hiding in the woods.,Students on a camping trip discover something sinister is lurking beyond the trees.,5000000,45172994,Blair Witch,en +416680,"Gilda, No Me Arrepiento de Este Amor",2016-09-15,0.0,,,tt3846334,,The life and death of the tropical singer Gilda.,0,0,"Gilda, No Me Arrepiento de Este Amor",es +416290,Cedric the Entertainer: Live from the Ville,2016-09-16,60.0,,,tt5753806,,"Donning his signature suit and fedora, the dapper comic offers a unique spin on getting old, the presidential election and ""Honky Tonk Badonkadonk.""",0,0,Cedric the Entertainer: Live from the Ville,en +374461,Mr. Church,2016-09-16,104.0,,,tt4196848,He was the one person she could always count on.,"A unique friendship develops when a little girl and her dying mother inherit a cook - Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.",8000000,0,Mr. Church,en +413452,Cardboard Boxer,2016-09-16,88.0,,,tt3230660,,A homeless man is recruited by a bunch of rich kids to fight other impoverished people.,10000000,0,Cardboard Boxer,en +415358,Pink,2016-09-16,136.0,,,tt5571734,,"Deepak is a lawyer suffering from bipolar disorder who experiences frequent mood swings. One night, Rajveer and his friends get drunk and try to molest Miss Arora and her two roommates leading to an accident. The film revolves around how Deepak fights the girls' case against these influential boys.",75000000,0,Pink,hi +339994,The Good Neighbor,2016-09-16,98.0,,,tt2262315,,Two high school filmmakers decide to create the illusion of a haunting on an unsuspecting neighbor.,0,0,The Good Neighbor,en +348611,Sister Cities,2016-09-17,86.0,http://sistercitiesthemovie.com/,,tt4795692,Four sisters. Four different lives. One mother of a secret.,"Based on the internationally-acclaimed play by Colette Freedman, the story of 4 estranged sisters who reunite for their mother’s alleged suicide.",0,0,Sister Cities,en +414547,Samurai Rauni,2016-09-21,80.0,http://www.samurairaunireposaarelainen.com/,,tt6043942,"Who would move a mountain, if not the mountain itself.","Villagers are afraid of Samurai Rauni Reposaarelainen, who keeps them on their toes every day. When someone places a bounty on Rauni's head, he goes after this mysterious person.",56000,0,Samurai Rauni Reposaarelainen,fi +417820,Miss Saigon: 25th Anniversary,2016-09-22,144.0,,,tt6162808,The Extraordinary 25th Anniversary Performance Recorded Live in London's West End,"The 25th Anniversary performance – filmed at London's Prince Edward Theatre in 2014 – of the epic musical tale of a young Vietnamese bar girl, Kim, who falls in love with Chris, an American GI. But their lives are torn apart by the fall of Saigon.",0,0,Miss Saigon: 25th Anniversary,en +406992,Wild Oats,2016-09-22,96.0,,,tt1655461,,"Everything changes for Eva when she receives an insurance settlement check accidentally made out for $5,000,000 instead of the expected $50.000. She and her best friend take the money and head out for the adventure of a lifetime.",0,0,Wild Oats,en +371446,The Free World,2016-09-23,100.0,,,tt3517044,Only love can truly set us free.,"Following his release from a brutal stretch in prison for crimes he didn't commit, Mo is struggling to adapt to life on the outside. When his world collides with Doris, a mysterious woman with a violent past, he decides to risk his newfound freedom to keep her in his life.",0,0,The Free World,en +317557,Queen of Katwe,2016-09-23,124.0,,,tt4341582,,A young girl overcomes her disadvantaged upbringing in the slums of Uganda to become a Chess master.,15000000,10367161,Queen of Katwe,en +375366,The Girl with All the Gifts,2016-09-23,110.0,,,tt4547056,Our greatest threat is our only hope.,A scientist and a teacher living in a dystopian future embark on a journey of survival with a special young girl.,5005600,0,The Girl with All the Gifts,en +408203,Little Wing,2016-09-23,100.0,,,tt4636254,,"Little Wing tells the story of 12-year-old Varpu, who's quickly growing to adulthood, and about her mother, who doesn't want to grow up. Varpu lives with her mother and has never met her father. One night Varpu has enough of her riding buddies and her mother. She steals a car and drives up north in search of her father, of whom she only knows the name. But her father is not exactly what she had expected. Meeting him trigger something in Varpu and Siru's life, making them realize their role in each other's lives, and in the world.",1000000,0,Tyttö nimeltä Varpu,fi +353979,Pet,2016-09-24,94.0,,,tt1183374,"If You Love Something, Never Let It Go.","A man imprisons the woman he's still obsessed with after years apart, then finds the tables turned on him.",0,0,Pet,en +403605,Headshot,2016-09-24,117.0,,,tt5147214,They should have killed him.,"A young man washes ashore, his memory gone - but his past comes back to haunt him after he is nursed back to health and his killing ability is needed when he takes on a powerful drug lord.",0,0,Headshot,id +347630,Laid in America,2016-09-26,86.0,http://laidinamericamovie.com/,,tt4706888,You'll always remember your first time,Two foreign exchange high-school students are kidnapped during their quest to get laid on their last night in America.,0,0,Laid in America,en +408620,Asura: The City of Madness,2016-09-28,136.0,,,tt5918028,,"A shady cop finds himself in over his head when he gets caught between Internal Affairs and the city’s corrupt mayor, in this scintillating crime drama from Korean maestro Kim Sung-soo (The Warrior).",0,0,아수라,ko +383618,Siv Sleeps Astray,2016-09-28,79.0,http://sivgaatlogeren.nl/,,tt4861720,Northern lights in the morning. Then it will be a magical day.,"Seven-year-old Siv’s first night sleeping over at her new friend Cerisia’s place turns out to be a magical one. In the early evening, many things are already beginning to seem odd, the exotic food, all of the animals ... At night though, the unfamiliar flat really starts to become a realm full of secrets.",0,0,Siv sover vilse,sv +296524,Deepwater Horizon,2016-09-29,107.0,http://www.deepwaterhorizon.movie/,,tt1860357,"When faced with our darkest hour, hope is not a tactic","A story set on the offshore drilling rig Deepwater Horizon, which exploded during April 2010 and created the worst oil spill in U.S. history.",110000000,121790373,Deepwater Horizon,en +213681,Masterminds,2016-09-29,94.0,,,tt2461150,What Would You Do With $17 Million?,A night guard at an armored car company in the Southern U.S. organizes one of the biggest bank heists in American history.,25000000,29200000,Masterminds,en +339116,Maximum Ride,2016-09-30,88.0,https://www.facebook.com/MaximumRideFilm/,,tt0825283,Welcome To Her Nightmare,"Six children genetically cross-bred with avian DNA, complete with wings, take flight around the country to discover their origins.",0,0,Maximum Ride,en +418772,Crisis in Six Scenes,2016-09-30,141.0,https://www.amazon.com/_/dp/B01J4SS7NA,,tt4354616,,"During the turbulent 1960s, an American family receives a visitor who changes everything.",0,0,Crisis in Six Scenes,en +416256,The Caretaker,2016-09-30,80.0,,,tt3109072,,"A young woman returns home to care for her gravely ill grandmother, only to begin sleepwalking and envisioning spirits.",0,0,The Caretaker,en +384594,Blood Hunters,2016-10-01,90.0,https://www.facebook.com/onedropmovie/,,tt3646592,Save yourself or save the world.,"An elevated genre horror film about a single mother who wakes up in a medical facility to find that everyone is dead and she's nine months pregnant. As she struggles to escape she discovers the facility's secret, they've tampered with the boundaries of death and brought people back to life, but those who've returned, have not returned alone.",0,0,Blood Hunters,en +409550,Scoop!,2016-10-01,119.0,http://www.scoop-movie.jp,,tt5194226,,"Shizuoka Miyakonojo is a middle-aged paparazzi photographer. His skills as a cameraman are good, but he gambles and is in debt. When he worked in the editorial department for weekly picture magazine 'Scoop!,' he landed numerous scoops. He now works as a freelance photographer and chases after celebrity scandals. Shizuoka Miyakonojo works with Nobi Namekawa. She is a rookie reporter for 'Scoop!' and they land a scoop.",0,0,SCOOP!,ja +378485,We Are the Flesh,2016-10-01,79.0,http://www.somospiano.org/,,tt4682708,,"After wandering a ruined city for years in search of food and shelter, two siblings find their way into one of the last remaining buildings. Inside, they find a man who will make them a dangerous offer to survive the outside world.",0,0,Tenemos la carne,es +418969,The Irresistible Blueberry Farm,2016-10-02,85.0,http://www.hallmarkmoviesandmysteries.com/the-irresistible-blueberry-farm,,tt6131636,,"Ellen Branford, a high-powered attorney, finds love, purpose, and the promise of a simpler life when she sets off on a journey to fulfill her grandmother’s dying wish – to find the hometown boy she once loved and give him her last letter. Based on a book by Mary Simses.",0,0,The Irresistible Blueberry Farm,en +424643,Bad Ben,2016-10-05,86.0,http://www.badbenmovie.com/,,tt6269810,Tom Riley thought this home was a great deal... ...It turns out it was a nightmare,"Tom Riley thought he was getting the deal of a lifetime when he bought a house below market value at a Sheriff's sale. He invested every penny he had with the plan of flipping the home for a profit. Once he owned it, however, he noticed strange happenings, all of which were captured on 21 Surveillance Cameras located throughout the home inside and out. At first he thought people were breaking in, but he soon realized he was dealing with something Paranormal.",300,0,Bad Ben,en +408550,Les Pépites,2016-10-05,0.0,,,tt5774604,,,0,0,Les Pépites,fr +403429,Two Lottery Tickets,2016-10-07,86.0,,,tt5700224,,"3 men from a provincial town who are in an urgent need for money so they decide to buy a lottery ticket. They win the lottery, but very soon, the ticket gets stolen.",0,0,Două lozuri,ro +375012,Under the Shadow,2016-10-07,84.0,,,tt4273292,Fear will find you,"As a mother and daughter struggle to cope with the terrors of the post-revolution, war torn Tehran of the 80s, a mysterious evil begins to haunt their home.",0,0,Under the Shadow,en +408508,Blue Jay,2016-10-07,80.0,,,tt5912454,,"Meeting by chance when they return to their tiny California hometown, two former high-school sweethearts reflect on their shared past.",0,0,Blue Jay,en +366696,The Red Pill,2016-10-07,117.0,http://theredpillmovie.com/,,tt3686998,A feminist's journey into the Men's Rights Movement,A feminist filmmaker follows the Men's Rights Movement and begins to question her own beliefs. A look at gender politics.,0,0,The Red Pill,en +333663,War on Everyone,2016-10-07,98.0,,,tt3708886,They have the right to remain violent.,"Two corrupt cops in New Mexico set out to blackmail and frame every criminal unfortunate enough to cross their path. Things take a sinister turn, however, when they try to intimidate someone who is more dangerous than they are. Or is he?",0,0,War on Everyone,en +413417,The Matchbreaker,2016-10-07,94.0,http://matchbreakerthemovie.com/,,tt4269746,True love can just wait.,"When an idealistic romantic gets fired from his day job, he is offered a ""one-time gig"" to break up a girl's relationship for her disapproving parents. This ""one-time"" gig spreads through word-of-mouth and he ends up becoming a professional match-breaker. However, he ends up falling for one of his clients and must figure out how to balance his secret job with his love-life.",0,0,The Matchbreaker,en +390587,Tiger Raid,2016-10-07,92.0,,,tt4447518,,"While on a covert mission, two cold blooded mercenaries form an unlikely bond as they race across the desert in the dead of night. When their violent and desperate world implodes, past atrocities come to the surface threatening to tear each of them apart.",0,0,Tiger Raid,en +407806,13th,2016-10-07,100.0,,,tt5895028,From slave to criminal with one amendment.,An in-depth look at the prison system in the United States and how it reveals the nation's history of racial inequality.,0,0,13th,en +406449,Hatred,2016-10-07,150.0,http://filmwolyn.org/,,tt6068960,,"Summer of 1939. Zosia is a young Polish girl who is deeply in love with Ukrainian Petro. Their great love will be put to the test when her father decides to marry her to a wealthy widower Skiba. Right after wedding she is left alone because her husband is drafted to the Polish army for the war with Germany. Meanwhile, tensions grow due to Jews, Poles, and Ukrainians living side by side.",0,0,Wołyń,pl +369883,Middle School: The Worst Years of My Life,2016-10-07,92.0,,,tt4981636,Rules aren't for everyone,A quiet teenage artist Rafe Katchadorian has a wild imagination and is sick of middle school and the rules that have been put before him. Rafe and his best friend Leo have come up with a plan: break every rule in the school hand book and as you expect trouble follows.,8500000,19985196,Middle School: The Worst Years of My Life,en +434873,It Stains the Sands Red,2016-10-08,92.0,,,tt5735280,"If the heat doesn't kill you, something else will","In the throes of a zombie apocalypse, A troubled woman from Las Vegas with a dark past, finds herself stranded in the desert with a lone and ravenous zombie on her tail.",0,0,It Stains the Sands Red,en +392882,Night's Tightrope,2016-10-08,120.0,http://www.shoujo.jp/,,tt5323642,,"Yuki is a 2nd year high school student. She volunteers at a paediatrics ward for her summer vacation, because she wants to witness the moment a person dies. She got that thought after feeling envious of a transfer student's story of seeing a friend's dead body. Yuki has friend named Atsuko. She was bullied in the past and has anxiety issues. She volunteers at a nursing home for her summer vacation, hoping that she will gain courage if she sees the moment a person dies.",0,0,少女,ja +413579,Best Worst Thing That Ever Could Have Happened...,2016-10-09,96.0,,,tt3282712,,"This film from acclaimed theater director Lonny Price charts the journey of the original cast of Stephen Sondheim's ""Merrily We Roll Along"" in the 30-plus years since the musical debuted on Broadway at the Alvin Theatre in 1981.",0,0,Best Worst Thing That Ever Could Have Happened...,en +415633,Tonight She Comes,2016-10-09,84.0,http://tonightshe.com,,tt5161376,Everyone else will die,"After a girl goes missing, two of her friends and a mysterious set of strangers find themselves drawn to the cabin in the woods where she disappeared. They will laugh, they will drink, they will kiss, they will make love, and THEY MUST ALL DIE.",0,0,Tonight She Comes,en +393559,My Life as a Zucchini,2016-10-12,66.0,http://www.mylifeasazucchini.com/,,tt2321405,My Life as a Courgette,"After his mother’s death, Zucchini is befriended by a kind police officer, Raymond, who accompanies him to his new foster home filled with other orphans his age. There, with the help of his newfound friends, Zucchini eventually learns to trust and love as he searches for a new family of his own.",8000000,292279,Ma vie de courgette,fr +332794,The Odyssey,2016-10-12,122.0,http://www.wildbunch.biz/movie/odyssey-the/,,tt1659619,,Biopic of the great French ocean-going adventurer and filmmaker,21363000,0,L'Odyssée,fr +136799,Trolls,2016-10-13,92.0,http://www.dreamworks.com/trolls/,,tt1679335,,"Lovable and friendly, the trolls love to play around. But one day, a mysterious giant shows up to end the party. Poppy, the optimistic leader of the Trolls, and her polar opposite, Branch, must embark on an adventure that takes them far beyond the only world they’ve ever known.",125000000,346864462,Trolls,en +400610,Prey,2016-10-13,0.0,,,tt4291700,,A Lion Terrorizes the City of Amsterdam.,0,0,Prooi,nl +414771,The Last Band in Lebanon,2016-10-13,98.0,,,tt5564142,,A comedy about three military band reservists who wake to discover that the Israeli army has withdrawn from Lebanon and left them behind.,0,0,The Last Band In Lebanon,he +420703,O Shaolin do Sertão,2016-10-13,,,,tt5786508,,,2000000,0,O Shaolin do Sertão,pt +417406,The Possession Experiment,2016-10-14,84.0,,,tt3697398,,"When a student takes on a theology project, he taps into another side that had been hidden away from him.",0,0,The Possession Experiment,en +416569,Love and Fury,2016-10-14,94.0,,,tt4805816,,,0,0,Syysprinssi,fi +390777,Ordinary World,2016-10-14,86.0,,,tt4189494,It's time to face the music,"Perry is a happily married father of two living a comfortable but sedate life in the suburbs. On the occasion of his 40th birthday, he seeks to revisit his former life as the lead singer in a popular punk band though his middle-aged reality quickly (and hilariously) clashes with the indulgences of his youth.",0,0,Ordinary World,en +286567,Max Steel,2016-10-14,92.0,,,tt1472584,,"The adventures of teenager Max McGrath and alien companion Steel, who must harness and combine their tremendous new powers to evolve into the turbo-charged superhero Max Steel.",10000000,6272403,Max Steel,en +413770,Ethel & Ernest,2016-10-28,94.0,,,tt1725969,A true story.,"This hand drawn animated film, based on the award winning graphic novel by Raymond Briggs, is an intimate and affectionate depiction of the life and times of his parents, two ordinary Londoners living through extraordinary events.",0,0,Ethel & Ernest,en +411221,Ozzy,2016-10-14,90.0,http://scfilmsinternational.com/ozzy.html,,tt5770430,Fast & Furry,"Ozzy, a friendly, peaceful beagle has his idyllic life turned upside down when the Martins leave on a long and distant trip. There's only one problem: no dogs allowed! Unable to bring their beloved Ozzy along for the ride, they settle on the next best thing, a top-of-the-line canine spa called Blue Creek.",10000000,0,Ozzy,es +418990,Kyle Kinane: Loose in Chicago,2016-10-15,50.0,,,tt6114234,,"In his third one-hour special, Kyle Kinane talks about why his girlfriend doesn’t need to worry about him cheating, reveals the whitest thing he’s ever said, and explains why you have to keep fashion in mind if you insist on carrying a gun.",0,0,Kyle Kinane: Loose in Chicago,en +421958,Terror - Ihr Urteil,2016-10-17,95.0,,,tt5680442,,,0,0,Terror - Ihr Urteil,de +291413,Within,2016-10-18,88.0,,,tt3612320,,A thriller centered around a widower who moves into a seemingly perfect new home with his daughter and new wife.,0,0,Within,en +352498,First Girl I Loved,2016-10-18,91.0,https://www.facebook.com/FirstGirlILoved/,,tt4262174,,"Seventeen-year-old Anne just fell in love with Sasha, the most popular girl at her L.A. public high school. But when Anne tells her best friend, Clifton—who has always harbored a secret crush on her—he does his best to get in the way.",0,0,First Girl I Loved,en +422005,Tatu and Patu,2016-10-19,75.0,,,tt5262450,,,0,0,"Kanelia kainaloon, Tatu ja Patu!",fi +326285,American Pastoral,2016-10-20,108.0,http://www.americanpastoral.movie/,,tt0376479,A radically ordinary story.,"Set in postwar America, a man watches his seemingly perfect life fall apart as his daughter's new political affiliation threatens to destroy their family.",0,0,American Pastoral,en +331313,Keeping Up with the Joneses,2016-10-20,105.0,http://www.JonesesMovie.com/,,tt2387499,They lived a normal life... Until the Joneses moved in.,An ordinary suburban couple finds it’s not easy keeping up with the Joneses – their impossibly gorgeous and ultra-sophisticated new neighbors – especially when they discover that Mr. and Mrs. “Jones” are covert operatives.,40000000,29918745,Keeping Up with the Joneses,en +409502,I'm Not Ashamed,2016-10-21,112.0,http://imnotashamedfilm.com/,,tt4950110,Her faith would touch the world.,Based on the inspiring and powerful true story and journal entries of Rachel Joy Scott- the first student killed in the Columbine high school shooting in 1999.,1500000,2000000,I'm Not Ashamed,en +378018,The Void,2016-10-21,90.0,http://screenmediafilms.net/productions/details/2025/The-Void,,tt4255304,There Is a Hell. This Is Worse.,"In the middle of a routine patrol, officer Daniel Carter happens upon a blood-soaked figure limping down a deserted stretch of road. He rushes the young man to a nearby rural hospital staffed by a skeleton crew, only to discover that patients and personnel are transforming into something inhuman. As the horror intensifies, Carter leads the other survivors on a hellish voyage into the subterranean depths of the hospital in a desperate bid to end the nightmare before it's too late.",0,0,The Void,en +422603,Aanandam,2016-10-21,134.0,,,tt5998104,,Aanandam is a 2016 Indian Malayalam campus musical film written and directed by Ganesh Raj in his directorial debut. Vineeth Sreenivasan produces the film under the banner of Habit Of Life with Vinod Shornur under Cast N Crew.,450000,2300000,ആനന്ദം,ml +374473,"I, Daniel Blake",2016-10-21,100.0,http://www.idanielblake.co.uk/,,tt5168192,,"A middle aged carpenter, who requires state welfare after injuring himself, is joined by a single mother in a similar scenario.",0,260354,"I, Daniel Blake",en +422472,Family Possessions,2016-10-21,0.0,,,tt4933238,,"After moving into the home of a deceased relative, a family discovers they may have inherited more than just the house.",0,0,Family Possessions,en +352186,Good Kids,2016-10-21,86.0,,,tt2170427,Get ready for the summer of yes,Four high school students look to redefine themselves after graduation.,0,0,Good Kids,en +380124,Boo! A Madea Halloween,2016-10-21,103.0,,,tt5325452,,"Madea winds up in the middle of mayhem when she spends a hilarious, haunted Halloween fending off killers, paranormal poltergeists, ghosts, ghouls, and zombies while keeping a watchful eye on a group of misbehaving teens.",0,0,Boo! A Madea Halloween,en +422878,Wanda Sykes: What Happened… Ms. Sykes?,2016-10-21,59.0,,,tt6191090,,"Filmed at the Ace Theatre in downtown Los Angeles, Emmy award winning comedian Wanda Sykes ponders her life, the world, and what went wrong.",0,0,Wanda Sykes: What Happened… Ms. Sykes?,en +393732,Mean Dreams,2016-10-21,108.0,,,tt5160928,The law won't protect you,"When two youngsters meet and fall for each other, they must go on the run from the girl's corrupt father, who is also the sheriff of the town.",0,0,Mean Dreams,en +410718,Before the Flood,2016-10-21,93.0,,,tt5929776,"The science is clear, the future is not.","A look at how climate change affects our environment and what society can do prevent the demise of endangered species, ecosystems, and native communities across the planet.",0,0,Before the Flood,en +375355,Don't Hang Up,2016-10-22,83.0,,,tt3610746,Be Careful Who You Prank,An evening of drunken prank calls becomes a nightmare for a pair of teenagers when a mysterious stranger turns their own game against them.,0,0,Don't Hang Up,en +284052,Doctor Strange,2016-10-25,115.0,http://marvel.com/doctorstrange,,tt1211837,Open your mind. Change your reality.,"After his career is destroyed, a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under his wing and trains him to defend the world against evil.",165000000,677718395,Doctor Strange,en +394645,De Premier,2016-10-26,115.0,,,tt5357556,,"The family of the Belgian prime minister is kidnapped. To get them released, he must murder the American president.",0,0,De Premier,nl +418378,Die Beautiful,2016-10-27,120.0,https://www.facebook.com/diebeautiful/,,tt6186430,A Glamorous Life Deserves a Fabulous Death,"Trisha, a Filipino transgender woman, suddenly dies while being crowned in a beauty pageant. Her last wish was to be presented as a different celebrity on each night of her wake.",0,0,Die Beautiful,tl +393445,Ae Dil Hai Mushkil,2016-10-27,158.0,,,tt4559006,,"Ayan falls in love with his soulmate, Alizeh, but she doesn’t reciprocate the feeling. Later, a relationship with Saba helps him realize Alizeh’s value in his life, irrespective of their relationship status.",0,0,Ae Dil Hai Mushkil,hi +433082,Across the Waters,2016-10-27,94.0,,,tt4838486,,Fuglene Over Sundet is the gripping tale of the Danish Jews' escape to Sweden in October 1943.,0,0,Fuglene over sundet,da +403450,At War with Love,2016-10-27,99.0,,,tt5263116,,"It's 1943 and World War II is raging in Europe. In New York, Arturo and Flora the daughter of a restaurant owner are in love, but she is promised in marriage to the son of a Mafia boss. There is a way around this, but to be able to marry Flora, Arturo needs to get permission from her father, who lives in a village in Sicily. Arturo doesn't have any money, so the only way he can get to Sicily is to enlist in the U.S. Army, which is preparing for a landing on the island.",0,0,In guerra per amore,it +423093,7 Years,2016-10-28,76.0,,,tt5517438,Four partners. One crime. Who will pay?,The drama is centered around four friends and business partners who in one evening are forced to find a way to save their company and themselves. The impossible decision they face is agreeing on who will be the one to sacrifice their freedom to save the others from personal and financial demise. It is a race against time that will put their friendship and sanity to the test. Who will take the fall?,0,0,7 años,es +359870,Burn Burn Burn,2016-10-28,106.0,,,tt3627488,,"Following the death of their friend, two girls in their late twenties embark on a road trip to spread his ashes. Seph and Alex take turns driving. Dan is in the glove compartment, in tupperware, decreasing in volume as the trip progresses.",0,0,Burn Burn Burn,en +365323,Invisible,2016-11-03,84.0,,,tt4660248,,"Aris, a 38-year-old worker in a factory is fired without any warning. He is shocked. As his attempts to be re-hired fail, he gradually becomes obsessed with the idea of taking justice into his own hands. He buys a gun with the last of his money. He is ready to proceed with his goal when his ex-wife dumps their six-year-old son on him.",0,0,Invisible,en +423122,"Dana Carvey: Straight White Male, 60",2016-11-04,64.0,,,tt6217368,,Emmy-winning comedian Dana Carvey blends pitch-perfect tales on big personalities with so-true-it-hurts stories from his life as a dad of millennials.,0,0,"Dana Carvey: Straight White Male, 60",en +347127,The Charnel House,2016-11-04,90.0,,,tt4633662,Every Place Has a Past.,A modern loft reveals its past when new tenants arrive as this former slaughterhouse exposes the evilness still existing within the walls.,0,0,The Charnel House,en +345925,Rupture,2016-11-04,102.0,,,tt4578118,,A single mom tries to break free from a mysterious organization that has abducted her.,0,0,Rupture,en +339419,Loving,2016-11-04,123.0,http://focusfeatures.com/loving,,tt4669986,All love is created equal,"The story of Richard and Mildred Loving, an interracial couple, whose challenge of their anti-miscegenation arrest for their marriage in Virginia led to a legal battle that would end at the US Supreme Court.",9000000,8996802,Loving,en +332979,Bleed for This,2016-11-04,116.0,http://www.bleedforthisfilm.com/,,tt1620935,This is what the greatest comeback in sports history looks like,"The inspirational story of World Champion Boxer Vinny Pazienza, who after a near fatal car crash, which left him not knowing if he'd ever walk again, made one of sports most incredible comebacks.",6000000,6174491,Bleed for This,en +354979,Dog Eat Dog,2016-11-04,93.0,,,tt4054654,,"Carved from a lifetime of experience that runs the gamut from incarceration to liberation, Dog Eat Dog is the story of three men who are all out of prison and now have the task of adapting themselves to civilian life.",0,0,Dog Eat Dog,en +288710,The Frontier,2016-11-08,88.0,http://www.thefrontierfilm.com/,,tt3456206,There's only one way out of a four-way split.,"A desperate young woman, on the run from the law, takes a job at a remote desert motel. She quickly discovers the motel's patrons are rendezvousing after a large robbery. With nothing to lose, and all to gain, she hatches a plan to steal their loot.",0,0,The Frontier,en +329865,Arrival,2016-11-10,113.0,http://www.arrivalmovie.com/,,tt2543164,Why are they here?,"Taking place after alien crafts land around the world, an expert linguist is recruited by the military to determine whether they come in peace or are a threat.",47000000,203388186,Arrival,en +360737,Center of My World,2016-11-10,115.0,https://www.facebook.com/DMdW.Film/?fref=ts,,tt4932154,,"A strange family: 17-year-old Phil lives with his mother and twin sister in an old mansion on the outskirts of town. When he returns from summer camp, the mood in the mansion has soured somehow. Phil doesn’t worry about it, hanging out with his best friend Kat instead. When he starts to feel attracted to a mysterious new student at school, Phil is plunged into emotional turmoil only exacerbated by the trouble at home.",0,0,Die Mitte der Welt,de +425841,Kathleen Madigan: Bothering Jesus,2016-11-10,71.0,,,tt6264486,,Kathleen Madigan's stand up special.,0,0,Kathleen Madigan: Bothering Jesus,en +382598,Full Speed,2016-11-11,91.0,,,tt4993964,,"A family together with their grandpa go on a vacation, when their new car won't stop and it nearly escapes crashing into a hundred cars.",0,0,À fond,fr +425961,Pitbull Tough Women,2016-11-11,135.0,,402380,tt6212346,,Two new female police officers struggle to survive a force filled with corrupt superiors and the brutal world of the criminal mafia.,0,0,Pitbull. Niebezpieczne kobiety,pl +425071,Decanted,2016-11-11,82.0,,,tt6085362,,The Journey of a winemaker trying to find success in the napa valley,0,0,Decanted,en +345918,Come and Find Me,2016-11-11,112.0,,,tt2597768,,"When his girlfriend goes missing, David must track down her whereabouts after he realizes she's not who she was pretending to be.",0,0,Come and Find Me,en +340103,The Monster,2016-11-11,91.0,,,tt3976144,Stay in the light,A mother and her 10-year old daughter are trapped in a forest. There is something in this forest. Something unlike anything they have heard before. Something that lurks in the darkness and it’s coming after them.,2700000,0,The Monster,en +395763,In the Shadow of Iris,2016-11-16,99.0,,,tt5598110,,"The sudden disappearance of a wealthy banker's wife cracks open a dizzying world of secret fetishes, desperate acts and elaborate deceptions.",0,0,Iris,fr +424014,Quel bravo ragazzo,2016-11-17,0.0,,,tt6204874,,,0,0,Quel bravo ragazzo,it +340488,Salt and Fire,2016-11-17,98.0,,,tt4441150,Sometimes redemption is out of reach,"A scientist blames the head of a large company for an ecological disaster in South America. But when a volcano begins to show signs of erupting, they must unite to avoid a disaster.",0,0,Salt and Fire,en +370755,Paterson,2016-11-17,118.0,,,tt5247022,"If you ever left me, I'd tear my heart out and never put it back","Set in the present in Paterson, New Jersey, this is a tale about a bus driver and poet.",5000000,2152738,Paterson,en +369885,Allied,2016-11-17,124.0,http://www.alliedmovie.com/,,tt3640424,The enemy is listening.,"In 1942, an intelligence officer in North Africa encounters a female French Resistance fighter on a deadly mission behind enemy lines. When they reunite in London, their relationship is tested by the pressures of war.",85000000,119520023,Allied,en +376660,The Edge of Seventeen,2016-11-18,104.0,http://stxmovies.com/theedgeofseventeen/,,tt1878870,You're only young once... is it over yet?,"Two high school girls are best friends until one dates the other's older brother, who is totally his sister's nemesis.",9000000,18803648,The Edge of Seventeen,en +425003,Colin Quinn: The New York Story,2016-11-18,62.0,,,tt6257714,,"The ""SNL"" veteran performs his off-Broadway show about the history of New York and the people who shape its personality.",0,0,Colin Quinn: The New York Story,en +369524,The Comedian,2016-12-09,120.0,,,tt1967614,nobody's a bargain,A look at the life of an aging insult comic.,15000000,0,The Comedian,en +427045,A December Bride,2016-11-20,120.0,http://www.hallmarkchannel.com/a-december-bride,,tt5739680,,"Aspiring interior designer Layla is dreading the Christmastime wedding of her cousin who’s marrying Layla’s ex-fiancé. Although Seth is the one responsible for introducing the bride and groom, she begrudgingly accepts his offer to be her date as she’s out of options. Seth gets carried away at the reception and announces they’re engaged, forcing a mortified Layla to keep up the pretense. Stars Daniel Lissing and Jessica Lowndes.",0,0,A December Bride,en +424971,In View,2016-11-20,93.0,,,tt4072742,,Tormented by guilt over the death of her family Ruth comes to decide that by donating her organs she will placate her utter self-loathing.,0,0,In View,en +405670,Zoology,2016-11-24,87.0,,,tt5133392,It's Never Too Late To Grow A Tail,"Natasha is a lonely, middle-aged admin employee at the zoo who still lives at home with her mother. One day her life is turned upside down when she discovers she has grown a tail…",0,0,Зоология,ru +340616,Baden Baden,2016-11-25,95.0,,,tt4216890,,"Charts the trials and tribulations of Ana, a free-spirited 26 year-old returning home to Strasbourg for the summer after living abroad for long enough to feel out of place everywhere.",0,0,Baden Baden,fr +413782,Mifune: The Last Samurai,2016-11-25,80.0,,,tt4000670,,"Nearly 20 years after his death and in the run-up to his centenary, Toshiro Mifune remains a true giant of Japanese cinema.",0,0,Mifune: The Last Samurai,en +384682,Office Christmas Party,2016-11-25,105.0,http://www.officechristmasparty.com/,,tt1711525,Party like your job depends on it,"When his uptight CEO sister threatens to shut down his branch, the branch manager throws an epic Christmas party in order to land a big client and save the day, but the party gets way out of hand.",45000000,114501299,Office Christmas Party,en +424661,Legends of the Hidden Temple,2016-11-26,65.0,,,tt5333842,,Three siblings who break away from a lackluster temple tour in a jungle finds themselves immersed in a real-life mission comprised of obstacles that they must complete in order to escape alive.,0,0,Legends of the Hidden Temple,en +346672,Underworld: Blood Wars,2016-11-28,91.0,http://www.underworldbloodwars-movie.com/,2326,tt3717252,Protect the Bloodline,"Vampire death dealer Selene fends off brutal attacks from both the Lycan clan and the Vampire faction that betrayed her. With her only allies, David and his father Thomas, she must stop the eternal war between Lycans and Vampires, even if it means she has to make the ultimate sacrifice.",35000000,81093313,Underworld: Blood Wars,en +426670,Dolly Parton's Christmas of Many Colors: Circle of Love,2016-11-30,0.0,http://www.nbc.com/christmas-of-many-colors,,tt5713426,Miracles happen when we need them most of all.,"An unexpected blizzard threatens the Parton family, while at the same time Dolly's father (and his kids) make sacrifices to raise enough money to finally buy his wife the wedding ring he could never afford to give her. Meanwhile, an important person in little Dolly's life begins to see that her amazing voice and musical gift might just be made for something bigger than rural Tennessee.",0,0,Dolly Parton's Christmas of Many Colors: Circle of Love,en +390357,King of the Belgians,2016-11-30,94.0,http://kingof.be,,tt4818804,,"The King of the Belgians is on a state visit in Istanbul when his country falls apart. He must return home at once to save his kingdom. But a solar storm causes airspace and communications to shut down. No planes. No phones. With the help of a British filmmaker and a troupe of Bulgarian folk singers, the King and his entourage manage to escape over the border. Incognito. Thus begins an odyssey across the Balkans during which the King discovers the real world - and himself.",0,0,King of the Belgians,en +413547,Kahaani 2,2016-12-01,129.0,,,tt5477608,,"Vidya Sinha (Vidya Balan) has only one obsession in life. She wants to see her teenage daughter Mini, who is paralysed waist-downwards, walk again. But, is this scenario as obvious as it seems? Or is Vidya an impersonator of Durga Rani Singh from Kalimpong, who is wanted for kidnapping and murder?",0,0,Kahaani 2,hi +425774,The Legend of Ben Hall,2016-12-01,139.0,http://www.thelegendofbenhall.com/,,tt3844876,Legends never die,"Ben Hall is drawn back into bushranging by the reappearance of his old friend John Gilbert. Reforming the gang, they soon become the most wanted men in Australian history.",0,0,The Legend of Ben Hall,en +241258,Incarnate,2016-12-01,91.0,,,tt3216348,Faith Has Failed Us,An exorcist comes up against an evil from his past when he uses his skills to enter the mind of a nine year old boy.,5000000,6341855,Incarnate,en +381015,The Other Half,2016-12-02,103.0,http://theotherhalfmovie.com/,,tt4625334,Yet memory will not abandon love.,A grief-stricken man and a bipolar woman fall in love and attempt to forge a simple life together.,0,0,The Other Half,en +296523,Man Down,2016-12-02,92.0,http://www.mandownmovie.com/,,tt2461520,He's coming home to the war he never left.,A haunted Afghanistan war veteran attempts to come to terms with his past while searching for his family in a post-apocalyptic America.,0,454516,Man Down,en +429792,Tony Roberts: Motorcity Motormouth,2016-12-02,50.0,http://www.sho.com/titles/3437477/tony-roberts-motorcity-motormouth,,tt4973270,,Detroit native Tony T. Roberts returns to his hometown for a raucous and occasionally musical night of stand up where no topic is off limits and anything can happen.,0,0,Tony Roberts: Motorcity Motormouth,en +409447,Hairspray Live!,2016-12-07,120.0,http://www.nbc.com/hairspray-live,,tt5664684,You can't stop the beat!,A teenage girl living in Baltimore in the early 1960s dreams of appearing on a popular TV dance show.,0,0,Hairspray Live!,en +382591,Two Is a Family,2016-12-07,118.0,,,tt5078204,,A man without attachments or responsibilities suddenly finds himself with an abandoned baby and leaves for London to try and find the mother. Eight years later after he and his daughter become inseparable Gloria's mother reappears.,0,1447740,Demain tout commence,fr +296288,Tamo Junto,2016-12-08,100.0,,,tt3421780,,"Guy ends his relationship, re-encounter his best friend in school and the both start looking for girls while the nerd best friends thinks they're in a movie.",0,0,Tamo Junto,pt +423377,Sugar Mountain,2016-12-09,106.0,http://screenmediafilms.net/productions/details/1912/Sugar-Mountain,,tt3553378,,"Two brothers, down on their luck, fake a disappearance in the Alaskan wilderness so they'll have a great survival story to sell, but the hoax turns out to be more real than they planned.",0,0,Sugar Mountain,en +427673,Sadie's Last Days on Earth,2016-12-09,90.0,https://shaftesbury.ca/sadies-last-days-on-earth/,,tt5777802,,Everything in high school is like the world ending and Sadie Mitchell's crippling fear of the coming apocalypse is the heightened version of that.,0,0,Sadie's Last Days on Earth,en +389630,All We Had,2016-12-09,105.0,,,tt3910814,,A mother struggles to make a better life for her daughter.,0,0,All We Had,en +324670,Spectral,2016-12-09,108.0,,,tt2106651,,A special-ops team is dispatched to fight supernatural beings that have taken over a European city.,0,0,Spectral,en +399612,Realive,2016-12-13,112.0,,,tt4074928,Immortality is only a matter of time.,"Marc, a successful, ambitious man, is diagnosed with terminal cancer, and is given a few months to live. Unable to accept death, he decides to cryogenically freeze himself. The love of his life is devastated. Seventy years later, Marc becomes the first cryogenic resuscitated person in history. But this doesn't happen in the idealized way he dreamt of.",7000000,0,Proyecto Lázaro,es +360592,The Dust Storm,2016-12-13,96.0,http://www.theduststormfilm.com/,,tt3854372,,"On a business trip to Nashville, Brennan finds himself reunited with the ""Girl"" who had previously broken his heart. Now, for one weekend in the city's music scene, a past and present romance will be reborn and challenged.",0,0,The Dust Storm,en +393521,One Week and a Day,2016-12-14,98.0,,,tt4777584,,"When Eyal finishes the week of mourning for his late son, his wife urges him to return to their routine but instead he gets high with a young neighbor and sets out to discover that there are still things in his life worth living for.",0,0,שבוע ויום,he +330459,Rogue One: A Star Wars Story,2016-12-14,133.0,http://www.starwars.com/films/rogue-one,10,tt3748528,A Rebellion Built on Hope,A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy.,200000000,1056057273,Rogue One: A Star Wars Story,en +437253,Τέλειοι Ξένοι,2016-12-15,,,,tt6304968,,,0,0,Τέλειοι Ξένοι,el +427095,Kappen!,2016-12-15,0.0,,,tt5112054,,"When a boy is framed after an act of senseless violence by his friends, they turn against him for trying to tell the truth.",0,0,Kappen!,nl +430058,Votez Bougon,2016-12-16,,,,tt5792762,,,0,0,Votez Bougon,fr +311324,The Great Wall,2016-12-16,103.0,http://www.thegreatwallmovie.com/,,tt2034800,1700 years to build. 5500 miles long. What were they trying to keep out?,European mercenaries searching for black powder become embroiled in the defense of the Great Wall of China against a horde of monstrous creatures.,150000000,331957105,The Great Wall,en +429838,Cam-Girl,2016-12-20,90.0,http://www.webcamthefilm.com,,tt2290819,,"Gessica, a single mother who works as a webcam stripper is pushed to her limit when held hostage by an unknown gunman.",0,0,Cam-Girl,en +429801,Gabriel Iglesias: I'm Sorry for What I Said When I Was Hungry,2016-12-20,87.0,,,tt6302122,,"Hawaiian-shirt enthusiast Gabriel ""Fluffy"" Iglesias finds the laughs in racist gift baskets, Prius-driving cops and all-female taco trucks.",0,0,Gabriel Iglesias: I'm Sorry for What I Said When I Was Hungry,en +262841,Monster Trucks,2016-12-21,105.0,http://www.monstertrucksmovie.com/,,tt3095734,Meet Creech,"Looking for any way to get away from the life and town he was born into, Tripp, a high school senior, builds a Monster Truck from bits and pieces of scrapped cars. After an accident at a nearby oil-drilling site displaces a strange and subterranean creature with a taste and a talent for speed, Tripp may have just found the key to getting out of town and a most unlikely friend.",125000000,64493915,Monster Trucks,en +227932,My Mom Is a Character 2,2016-12-22,96.0,,455278,tt3212812,,"Dona Hermínia is back, but now rich and famous since she is the host of her own successful TV show. However, the overprotective character will have to deal with her children's departures, as Marcelina and Juliano decide to move out. In counterpart, she will welcome, as a visitor, her sister Lúcia Helena, who's been living in New York.",0,0,Minha Mãe é Uma Peça 2,pt +428355,Nick Thune: Good Guy,2016-12-22,60.0,,,tt6184932,,"Living legend, Nick Thune, takes the stage in Portland, Oregon and explains his stunning transformation into a good guy.",0,0,Nick Thune: Good Guy,en +377447,Railroad Tigers,2016-12-23,124.0,,,tt4687848,Roaring soon,A railroad worker in China in 1941 leads a team of freedom fighters against the Japanese in order to get food for the poor.,50000000,102205175,鐵道飛虎,zh +428398,Santa Claus. Battle of Mages,2016-12-24,117.0,,,tt6011884,,Young girl Masha accidentally discovers the organization of snow and ice mages fighting the global devil under the leadership of Santa Claus.,0,0,Дед Мороз. Битва Магов,ru +259695,Live by Night,2016-12-25,129.0,http://www.livebynight.movie/,,tt2361317,Witness the price of the American Dream.,A story set in the Prohibition Era and centered around a group of individuals and their dealings in the world of organized crime.,108000000,22678555,Live by Night,en +430973,The Woman in the Septic Tank 2: Forever Is Not Enough,2016-12-25,90.0,https://web.facebook.com/angbabaesaseptictank2/,,tt6271404,,"Eugene prepares for her comeback vehicle after a long sabbatical from movie making. Rainier proposes ""The Itinerary,"" a heartbreaking anatomy of a crumbling marriage as told through a couple's trip to Baguio, their former honeymoon location.",0,0,Ang Babae sa Septic Tank 2: #ForeverIsNotEnough,tl +403570,Red Dog: True Blue,2016-12-26,88.0,,,tt3567194,Every Legend Has a Beginning.,"Explores the early events leading up to Red Dog's discovery on the road to Dampier, and his ultimate rise from ordinary dog to Australian legend.",0,0,Red Dog: True Blue,en +350060,Heartstone,2016-12-28,129.0,,,tt4613254,,"A remote fishing village in Iceland. Teenage boys Thor and Christian experience a turbulent summer as one tries to win the heart of a girl while the other discovers new feelings toward his best friend. When summer ends and the harsh nature of Iceland takes back its rights, it's time to leave the playground and face adulthood.",0,0,Hjartasteinn,is +324017,The Master,2017-01-01,109.0,,,,,"In 19th-century China, during the infamous Qing Dynasty, the population is suffering at the hands of greedy landlords, corrupt officials, and unwelcome invaders. Hoping to unite his people, martial arts master Chen Xiang opens a school integrating techniques from both the North and South. But after Chen refuses to join the armies of the Qing Prince, his mother and his students are seized. To save them, Chen has only one path: all-out war.",0,0,The Master,en +443053,The Avenue,2017-01-01,81.0,https://www.flickflingr.com/the-avenue,,tt6174392,"Love, loss, diamonds...and only one way out of Atlantic City.","Giancarlo ""Eddie"" Marturano, a down and out gambler trapped in the world he's created for himself. Like his adopted home of Atlantic City, Eddie is beaten, down on one knee, struggling mightily to rise to his feet again. His only salvation is his beloved Sandra and their hope of a better future. When he and his partner in crime, Christian Flynn, stumble onto the deal of their lives, will it finally be their avenue out of town?",42000,0,The Avenue,en +333354,Extortion,2017-01-02,108.0,http://13films.net/projects/extortion/,,tt2957760,How much is your family worth?,A doctor desperately tries to save his wife and their 5 year old son after their vacation in the Bahamas takes an unexpected turn.,0,0,Extortion,en +413882,Ok Jaanu,2017-01-03,135.0,http://okjanu.com/,,tt5764024,,OK Jaanu is an upcoming Indian romantic drama film directed by Shaad Ali and produced by Karan Johar under his banner Dharma Productions. It is an official remake of Mani Ratnam's Tamil film OK Kanmani.,0,345872,Ok Jaanu,hi +432883,Jen Kirkman: Just Keep Livin',2017-01-03,69.0,https://www.netflix.com/watch/80134966,,tt6386352,,"Incisive comic Jen Kirkman gets real about women's bodies, the value of alone time and an Italian private tour guide who may have been a ghost.",0,0,Jen Kirkman: Just Keep Livin',en +429238,Coin Heist,2017-01-06,97.0,https://www.netflix.com/nz/title/80097725,,tt5740806,,"When a crisis threatens to destroy their high school, four teens hatch a daring plan to raise $10 million. Step one? Breaking into the U.S. Mint.",0,0,Coin Heist,en +430156,David Bowie: The Last Five Years,2017-01-07,90.0,http://www.bbc.co.uk/programmes/b088ktm6,,tt6375308,,"There was nothing predictable about David Bowie - everything was designed to intrigue, to challenge, to defy all expectations. But perhaps no period in David Bowie’s extraordinary career raised more fascination, more surprise, and more questions, than the last five years.",0,0,David Bowie: The Last Five Years,en +395767,Scribe,2017-01-11,88.0,,,tt5231916,,,0,0,La mécanique de l'ombre,fr +322548,Shangri-La Suite,2017-01-11,90.0,,,tt3014078,Meet Karen Bird and Jack Blueblood. Lovers. Dreamers. Serial Killers.,Karen and Jack met in a mental hospital and fell in love. They set out to follow what Jack thinks is his destiny: killing Elvis Presley.,0,0,Shangri-La Suite,en +428645,Eu Fico Loko,2017-01-12,,,,tt5968964,,,2500000,0,Eu Fico Loko,pt +381008,Claire in Motion,2017-01-13,83.0,http://www.claireinmotion.com/,,tt5432114,,"Claire is sure of herself, her work and family, until — like a bad dream — her husband disappears, leaving a trail of puzzling secrets that shatter her certainty.",0,0,Claire in Motion,en +433244,Clinical,2017-01-13,104.0,,,tt5577742,,"A psychiatrist tries to put her life back together after a violent attack by seeking to repair the life of a new patient, but he has his own terrifying history.",0,0,Clinical,en +435737,Rufus 2,2017-01-16,46.0,http://www.nick.com/rufus-movie/,,tt5687968,Paws meets Claws,Rufus is a dog but turns into a human with a pendant. He meets a girl named Kat who asks him to go out. Kat is a cat who can also turn into a human as well.,0,0,Rufus 2,en +425591,I Don't Feel at Home in This World Anymore,2017-01-19,96.0,,,tt5710514,,"When a depressed woman is burglarized, she finds a new sense of purpose by tracking down the thieves alongside her obnoxious neighbor. But they soon find themselves dangerously out of their depth against a pack of degenerate criminals.",0,0,I Don't Feel at Home in This World Anymore,en +371459,A Good Wife,2017-01-19,90.0,http://www.facebook.com/agoodwife,,tt3521306,,"When 50-year-old Milena finds out about the terrible past of her seemingly ideal husband, while simultaneously learning of her own cancer diagnosis, she begins an awakening from the suburban paradise she has been living in.",0,0,Dobra žena,sr +421365,The other me,2017-01-19,0.0,,,tt5221894,,"A lonely criminology professor attempts to solve the mystery behind five murders by decoding the puzzle of five Pythagorean theorems, in a crime story that features renowned French actor François Cluzet in a key-role.",0,0,Έτερος Εγώ,el +356500,Detour,2017-01-20,97.0,http://www.bankside-films.com/screeners/detour.html,,tt4372390,"When you want someone dead, which road would you choose?","A young law student, grieving for his dying mother, struggles to decide whether he should kill his unfaithful step-father.",0,0,Detour,en +430834,Water & Power: A California Heist,2017-01-23,87.0,,,tt6290202,,"Uncovering the profiteering of the state's water barons and how they affect farmers, average citizens, and unincorporated towns throughout California.",0,0,Water & Power: A California Heist,en +428687,Deidra & Laney Rob a Train,2017-01-23,92.0,,,tt4144332,,"After their mother ends up in jail, two sisters turn to train robbery in order to support their family.",0,0,Deidra & Laney Rob a Train,en +408220,Justice League Dark,2017-01-24,75.0,http://www.warnerbros.com/justice-league-dark,,tt2494376,,Beings with supernatural powers join together to fight against supernatural villains.,0,0,Justice League Dark,en +426265,Burning Sands,2017-01-24,105.0,,,tt5826432,,"Deep into Hell Week, a favored pledgee is torn between honoring his code of silence or standing up against the intensifying violence of underground hazing.",0,0,Burning Sands,en +379019,My Blind Date with Life,2017-01-26,111.0,http://meinblinddatemitdemleben.de/,,tt4299300,,An ambitious young man struggles to achieve his dream of becoming an employee in a Munich luxury hotel despite being strongly visually impaired.,0,0,Mein Blind Date mit dem Leben,de +365942,The Space Between Us,2017-01-26,121.0,http://stxmovies.com/thespacebetweenus/,,tt3922818,What's your favorite thing about Earth?,A young man raised by scientists on Mars returns to Earth to find his father.,30000000,14793385,The Space Between Us,en +403867,Kaabil,2017-01-26,139.0,,,tt5460276,The Mind sees All!,"Rohan (Hritik roshan) is a kind, happy young man who has been blind since birth and works as a voice-over artist for a living. Through friends, he meets Supriya (Yami Gautam), a working woman who is also blind, but proudly independent. The two start liking each other and get married. Rohan toughest journey starts in his quest of vengeance for Supriya's indirect murderers.",5200000,0,Kaabil,hi +364410,The White King,2017-01-27,89.0,http://www.thewhiteking.film,,tt4211312,The hardest thing to break is the human spirit.,"Djata is a care-free 12-year-old growing up in a brutal dictatorship shut off from the outside world. When the government imprisons his father, Peter, and Djata and his mother Hannah are labeled traitors, the boy will not rest until he sees his father again.",2494400,0,The White King,en +431244,Lost in Florence,2017-01-27,97.0,http://www.lostinflorencemovie.com/,,tt3809276,,"Eric Lazard is a heartbroken former college football star who gets involved in a dangerous Florentine sport and a local woman, Stephanie, while visiting his cousin Anna, who lives in Italy and teaches the Italian language to foreigners.",0,0,Lost in Florence,en +437830,Zero 3,2017-01-27,90.0,,,tt6194850,,Lithuanian politics Tarantino style,0,0,Zero 3,en +438137,Becoming Warren Buffett,2017-01-30,90.0,http://www.hbo.com/documentaries/becoming-warren-buffett,,tt6438096,Find Out What Life Is Really Worth,"The story of the evolution of a boy from Nebraska who became one of the most respected men in the world, and the heroes who helped guide him along the way. By allowing access to his life and never-before-released home videos, Buffett offers a glimpse into his unique mind to help us understand what is truly important when money no longer has meaning.",0,0,Becoming Warren Buffett,en +437752,Bill Burr: Walk Your Way Out,2017-01-31,77.0,https://www.netflix.com/title/80133549,,tt6184894,,"No-nonsense comic Bill Burr takes the stage in Nashville and riffs on fast food, overpopulation, dictators and gorilla sign language.",0,0,Bill Burr: Walk Your Way Out,en +449674,Louis C.K. 2017,2017-04-04,74.0,,,tt6736782,,"Louis C.K. muses on religion, eternal love, giving dogs drugs, email fights, teachers and more in a live performance from Washington, D.C.",0,0,Louis C.K. 2017,en +382597,R.A.I.D. Special Unit,2017-02-01,105.0,http://www.allocine.fr/film/fichefilm_gen_cfilm=238378.html,,tt5736696,,"The story of a woman who dreams to join an intervention group in the police department called RAID. Unfortunately, she is rather clumsy and both her family (and soon to be family-in-law) and a veteran of the RAID do not approve. However, Johanna is determined to prove them wrong.",0,0,Raid dingue,fr +341174,Fifty Shades Darker,2017-02-08,118.0,http://www.fiftyshadesmovie.com/,344830,tt4465564,Every fairy tale has a dark side.,"When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life, she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability, shadowy figures from Christian’s past start to circle the couple, determined to destroy their hopes for a future together.",55000000,378827494,Fifty Shades Darker,en +435366,Fabricated City,2017-02-09,126.0,,,tt6399158,,"In real life, Kwon Yoo is unemployed, but in the virtual game world he is the best leader. Kwon Yoo is then framed for a murder. With the help of hacker Yeo-Wool, he tries to uncover the truth behind the murder case.",0,0,조작된 도시,ko +392011,Kedi,2017-02-10,80.0,http://www.kedifilm.com,,tt4420704,,"A profile of an ancient city and its unique people, seen through the eyes of the most mysterious and beloved animal humans have ever known, the Cat.",0,0,Kedi,tr +431093,Everybody Loves Somebody,2017-02-10,102.0,,,tt5537228,"If her heart doesn't choose, her family will.","On the surface, Clara Barron seems to have it all: a job as an OB-GYN; a great house in LA; and a loving family. But, the one thing Clara doesn't have figured out is her love life. Pressured by a family wedding in Mexico, Clara asks a co-worker to pose as her boyfriend for the weekend festivities,- only to be caught by surprise when her ex- boyfriend (and family favorite) suddenly shows up after disappearing from her life completely. Torn, Clara must decide between going back to the past or open her heart to new and unexpected possibilities.",2000000,0,Everybody Loves Somebody,en +441043,Asteria,2017-02-10,5.0,https://www.facebook.com/AsteriaTheMovie/,,tt6528206,"Right Planet, Wrong Time","Two astronauts attempt to plant their flag on a newly discovered planet. But first, they need to get rid of some pesky aliens whose business there is unknown.",0,0,Asteria,fr +395982,Prevenge,2017-02-10,88.0,http://www.prevengemovie.co.uk/,,tt5154288,,"A pregnant widow, believing herself to be guided by her unborn child, embarks on a homicidal rampage.",0,0,Prevenge,en +412202,Handsome Devil,2017-02-15,95.0,,,tt5016946,,A music-mad 16-year-old outcast at a rugby-mad boarding school forms an unlikely friendship with his dashing new roommate.,1050000,0,Handsome Devil,en +436339,Colo,2017-02-15,136.0,,,tt5446444,,"Struggling against the crisis in Portugal, a mother doubles up jobs to pay the bills since her husband is unemployed. Their teenage daughter tries to keep living everyday life even if the money is running short, which makes everything uneasy. Escaping from their common reality, they slowly become strangers to one another, as the tension grows in silence and in guilt.",0,0,Colo,pt +435821,New Trial,2017-02-15,119.0,,,tt6731636,10 years behind bars - the only chance to find the truth,"A taxi driver is found dead, and Hyun-woo, the only witness, charged with a murder and serves 10 years in prison. While offering pro bono services, a lawyer Junyoung meets Hyun-woo, and they begin their journey to prove his innocence.",0,0,재심,ko +382589,Rock'n Roll,2017-02-15,123.0,,,tt5351818,,"Guillaume Canet is told by a young co-star that he's no longer Rock'n' Roll and can't sell films anymore. He then tries to prove her wrong and gets help from his girlfriend, Marion Cotillard.",0,0,Rock'n Roll,fr +345922,Fist Fight,2017-02-16,91.0,http://fistfightmovie.com/,,tt3401882,After school. Parking lot. It's on.,"When one school teacher gets the other fired, he is challenged to an after-school fight.",20000000,0,Fist Fight,en +438597,Major Grom,2017-02-19,27.0,,,tt5430888,,"Igor Grom, a skilled detective from St. Petersburg, happened to be at the scene of a bank robbery and decides to stop them.",0,0,Майор Гром,ru +440767,Trevor Noah: Afraid of the Dark,2017-02-21,68.0,,,tt6562866,,Trevor Noah stars in his first Netflix special.,0,0,Trevor Noah: Afraid of the Dark,en +443007,Fare,2017-02-21,75.0,http://www.faremovie.com/,,tt5032468,Of all the fares in the city,A ride-share driver finds himself transporting the man who is secretly sleeping with his wife.,0,0,Fare,en +340027,Brain on Fire,2017-02-22,95.0,,,tt3704700,,A look at a young woman's rapid descent into insanity.,0,0,Brain on Fire,en +419522,Beata ignoranza,2017-02-23,0.0,,,tt6197094,,,0,0,Beata ignoranza,it +419430,Get Out,2017-02-24,104.0,http://www.getoutfilm.com/,,tt5052448,"Just because you're invited, doesn't mean you're welcome.","Chris and his girlfriend Rose go upstate to visit her parents for the weekend. At first, Chris reads the family's overly accommodating behavior as nervous attempts to deal with their daughter's interracial relationship, but as the weekend progresses, a series of increasingly disturbing discoveries lead him to a truth that he never could have imagined.",5000000,252434250,Get Out,en +392271,Rangoon,2017-02-24,167.0,,,tt4909752,Love. War. Deceit,Love triangle set against the backdrop of World War II.,12003848,0,रंगून,hi +263115,Logan,2017-02-28,137.0,http://www.foxmovies.com/movies/logan,453993,tt3315342,His time has come,"In the near future, a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives, pursued by dark forces.",97000000,616801808,Logan,en +436343,On Body and Soul,2017-03-02,116.0,https://facebook.com/TestrolEsLelekrol/,,tt5607714,,"Two introverted people find out by pure chance that they share the same dream every night. They are puzzled, incredulous, a bit frightened. As they hesitantly accept this strange coincidence, they try to recreate in broad daylight what happens in their dream.",0,0,Testről és lélekről,hu +377691,The Man,2017-03-02,93.0,,,tt1740683,,"Simon is the king of the Danish art scene - eccentric, successful, wealthy, with a beautiful wife and a young mistress. Life is beautiful, until the day his unknown son Casper turns up and attracts all the attention. It turns out that Casper is the world-famous graffiti artist “The Ghost”. This is a provocation and a challenge to Simon, and the relationship between father and son is put to a serious test. However, against all odds he two slowly grow closer to each other, but the question is whether blood ties are enough? Because after all Simon has no plans of being a father, and Casper has other plans with his father than simply getting to know him…",0,0,Mesteren,da +354287,War Machine,2017-05-26,122.0,https://www.netflix.com/title/80068327,,tt4758646,We're gonna liberate the sh** out of you.,A rock star general bent on winning the “impossible” war in Afghanistan takes us inside the complex machinery of modern war. Inspired by the true story of General Stanley McChrystal.,60000000,0,War Machine,en +444713,Commando 2: The Black Money Trail,2017-03-02,123.0,,,tt5954088,,"India's most wanted Black Money agent, Vicky Chaddha, gets arrested in Malaysia and is kept in a safe house by the Malaysian authorities, along with his wife. A team of four is being sent to Malaysia to bring them to India. Apart from the growth of inter-personal relationships, the mission has quite a few twists and turns on its way. The story follows Karan as he uses his brain and brawn to recover all of the laundered black money.",0,0,Commando 2: The Black Money Trail,hi +439998,Omicidio all'italiana,2017-03-02,,,,tt6373590,,,0,0,Omicidio all'italiana,it +397837,Before I Fall,2017-03-02,98.0,http://www.beforeifallfilm.com/,,tt1691916,What if today was the only day of the rest of your life?,"Samantha Kingston has everything. Then, everything changes. After one fateful night, she wakes up with no future at all. Trapped into reliving the same day over and over, she begins to question just how perfect her life really was.",5000000,10025571,Before I Fall,en +457307,"Don't call him ""Dimon""",2017-03-02,0.0,,,tt6679360,,,7200,0,Он вам не Димон,ru +340584,Lavender,2017-03-03,92.0,http://www.lavenderthemovie.com/,,tt4680980,The past won't forget,A photographer struggling with memory loss discovers her pictures may indicate something sinister is hitting close to home.,0,0,Lavender,en +408272,Catfight,2017-03-03,96.0,,,tt5294198,A black and blue comedy,The rivalry between two former college friends comes to a head when they both attend the same glamorous event.,0,0,Catfight,en +445602,The Raking,2017-03-07,98.0,,,tt4897358,,"THE RAKING tells the story of a group of college students who set out to debunk an urban legend in Joshua Tree, California for their anthropology thesis, only to find that they become part of the legend themselves.",0,0,The Raking,en +293167,Kong: Skull Island,2017-03-08,118.0,http://kongskullislandmovie.com/,,tt3731562,All hail the king,"Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous, primordial island.",185000000,566652812,Kong: Skull Island,en +413391,A Few Less Men,2017-03-09,96.0,,466004,tt3784652,A lot more laughs!,Travel plans for three men in ill-fitting wedding tuxedos goes horribly wrong.,0,123899,A Few Less Men,en +446048,Jim Norton: Mouthful of Shame,2017-03-14,61.0,,,tt6664120,,"Fedoras, mom's underpants, and puppy love all make Jim Norton's s**t list in 'Mouthful of Shame'.",0,0,Jim Norton: Mouthful of Shame,en +445993,The Marine 5: Battleground,2017-03-16,0.0,,166373,tt5781798,One Marine. Two Gangs. One Long Night,"While working as an EMT back stateside Jake Carter after responding to a distress call, finds himself caught up protecting a person of interest from a biker gang ruthlessly hunting them down.",0,0,The Marine 5: Battleground,en +440777,Female Fight Club,2017-03-16,90.0,,,tt5153860,,A former fighter reluctantly returns to the life she abandoned in order to help her sister survive the sadistic world of illegal fighting and the maniac who runs it.,2000000,0,Female Fight Club,en +447236,Kincsem,2017-03-16,121.0,,,tt4964310,,The new owner of a brilliant race horse finds love while carrying out his revenge on the man who murdered his father.,0,0,Kincsem,hu +450530,Oasis,2017-03-17,60.0,https://www.amazon.co.uk/gp/video/detail/B06WLQVQ3H,,tt6268052,,A Scottish chaplain embarks on an epic journey through space. Based on Michel Faber's 'The Book Of Strange New Things'.,0,0,Oasis,en +330947,Song to Song,2017-03-17,129.0,http://www.songtosongmovie.com/,,tt2062700,Love. Obsession. Betrayal.,"In this modern love story set against the Austin, Texas music scene, two entangled couples — struggling songwriters Faye and BV, and music mogul Cook and the waitress whom he ensnares — chase success through a rock ‘n’ roll landscape of seduction and betrayal.",10000000,443684,Song to Song,en +336890,Goon: Last of the Enforcers,2017-03-17,101.0,https://www.facebook.com/GoonFilm/?fref=ts,476961,tt2417712,Glatt's Back!,"During a pro lockout, Doug ""The Thug"" Glatt is injured and must choose whether to defend his team against a dangerous new enemy, or be there for his wife as she prepares to give birth to his daughter.",0,0,Goon: Last of the Enforcers,en +447758,Carnage: Swallowing the Past,2017-03-19,65.0,,,tt6667360,,"It's 2067, the UK is vegan, but older generations are suffering the guilt of their carnivorous past. Simon Amstell asks us to forgive them for the horrors of what they swallowed.",0,0,Carnage: Swallowing the Past,en +395992,Life,2017-03-22,103.0,http://www.lifemovie.com/,,tt5442430,Be careful what you search for,"The six-member crew of the International Space Station is tasked with studying a sample from Mars that may be the first proof of extra-terrestrial life, which proves more intelligent than ever expected.",58000000,100541806,Life,en +413421,Phillauri,2017-03-24,138.0,,,tt5502766,Some love stories last beyond a lifetime,A man is forced to marry a tree to ward off ill-luck that surrounds his love-life which turns into a nightmare when the tree is embodied by a spirit with an unfinished business.,0,0,फिल्लौरी,hi +420648,The Bar,2017-03-24,0.0,,,tt5121816,,A group of strangers are trapped inside a bar.,0,0,El bar,es +440508,Diamond Cartel,2017-03-24,100.0,http://wholeworldatourfeet.com/en/,,tt6282314,,,7000000,0,Diamond Cartel,en +315837,Ghost in the Shell,2017-03-29,107.0,http://www.ghostintheshellmovie.com/,,tt1219827,There's nothing sadder than a puppet without a ghost.,"In the near future, Major is the first of her kind: a human saved from a terrible crash, then cyber-enhanced to be a perfect soldier devoted to stopping the world's most dangerous criminals.",110000000,169801921,Ghost in the Shell,en +436340,Félicité,2017-03-29,123.0,,,tt5980798,,"Félicité, a strong and proud woman, sings in bars in Kinshasa. She drifts away from reality when her 14-year-old son gets into an accident. In electric Kinshasa, she wanders in a world of music & dreams... until love unexpectedly brings her back to life.",0,0,Félicité,fr +408509,Orphan,2017-03-29,111.0,,,tt4746516,,"A young woman who moves to Paris and has a brush with disaster. The grown-up at last, an accomplished woman, who thought she was safe from her own past. Gradually, these characters come together to form a single heroine.",0,0,Orpheline,fr +408616,The Journey,2017-03-30,94.0,,,tt4826674,,"Firebrand Democratic Unionist Party leader Ian Paisley and Sinn Fein politician Martin McGuinness, two implacable enemies in Northern Ireland, are forced to take a short journey together in which they will take the biggest leap of faith and change the course of history.",0,0,The Journey,en +393172,Bottom of the World,2017-03-31,85.0,,,tt2337841,Reality is not what it seems.,"A mysterious disappearance of a young woman leads her boyfriend on a journey for truth and perhaps his own unknown reality in this dark, hypnotic mystery that transcends the limitations of traditional narrative.",0,0,Bottom of the World,en +445727,The Bigfoot Project,2017-04-04,90.0,,,tt2852500,Based on actual events. Not really.,A bush-league group of amateur filmmakers spend two weeks in the backwoods of Georgia searching for the mysterious Bigfoot.,0,0,The Bigfoot Project,en +430365,With Open Arms,2017-04-05,92.0,,,tt5804948,Thanks for the invitation!,"Jean-Étienne Fougerole is an intellectual bohemian who released his new novel ""In Open Arms"" and calling the wealthiest people to welcome home the families in need. While he promotes his book during a televised debate, his opponent criticized him for not applying what he himself advocates. While stuck, Jean-Étienne Fougerole accepts the challenge, for fear of being discredited. The same evening, a family of Roma rings the door of his Marnes-la-Coquette villa and the writer feels obliged to house them.",0,0,À bras ouverts,fr +416445,Revengeance,2017-04-05,71.0,http://www.revengeancemovie.com/,,tt3401174,Revenge is a dish best served animated,"A low-rent bounty hunter named Rod Rosse, The One Man Posse, gets entangled in a web of danger when he takes on a job from an ex-biker/ex-wrestler turned U.S. senator named ""Deathface.""",0,0,Revengeance,en +340101,Their Finest,2017-04-06,117.0,,,tt1661275,In the fight for freedom everyone played a part.,A British film crew attempts to boost morale during World War II by making a propaganda film after the Blitzkrieg.,32745300,12173470,Their Finest,en +342472,1 Mile to You,2017-04-07,104.0,,,tt2184233,Run with your heart.,"After a teenager's friends die in an accident, he finds running allows him to remember them perfectly. Running, however, also brings him notoriety. He is caught between keeping the past alive and making new memories in the present.",0,0,1 Mile to You,en +392818,The Transfiguration,2017-04-07,97.0,,,tt5039088,,"A New York tale about love, loss… and vampires.",0,0,The Transfiguration,en +445916,Asylum of Darkness,2017-04-10,117.0,,,tt6357202,There Is Evil Inside Us All,"After awakening in a mental asylum, a patient plans an escape to freedom, but finds an even more disturbing, supernatural world on the outside, one that threatens to keep him trapped in madness forever.",0,0,Asylum of Darkness,en +400552,Happy Burnout,2017-04-11,,,,tt5584176,,,0,0,Happy Burnout,de +337339,The Fate of the Furious,2017-04-12,136.0,http://www.fastandfurious.com/,9485,tt4630562,Family no more,"When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him, the crew face trials that will test them as never before.",250000000,1238764765,The Fate of the Furious,en +448847,The Hatton Garden Job,2017-04-14,0.0,,,tt5351458,,"In April 2015, the Hatton Garden Safe Deposit Company, an underground safe deposit facility in London's Hatton Garden area, was burgled by 4 elderly men. With the stolen property having a value of up to £200 million, the incident has been called the ""largest burglary in English history"".",0,0,The Hatton Garden Job,en +322487,Spark: A Space Tail,2017-04-14,97.0,http://sparkaspacetail.com,,tt3228088,Spark a revolution!,"Spark, a teenage monkey and his friends, Chunk and Vix, are on a mission to regain Planet Bana - a kingdom overtaken by the evil overlord Zhong.",0,116873,Spark: A Space Tail,en +369697,Norman: The Moderate Rise and Tragic Fall of a New York Fixer,2017-04-14,117.0,,,tt4191702,,A financial schemer finds himself in the middle of an international scandal after he becomes a political adviser to the new prime minister of Israel.,0,0,Norman: The Moderate Rise and Tragic Fall of a New York Fixer,en +435707,Skins,2017-04-15,78.0,,,tt5808778,,A story about four spanish people who see themselfs as freaks and seldom go outside...,0,0,Pieles,es +452142,Maigrets Night at the Crossroads,2017-04-16,88.0,,424842,tt6326286,,"A complex tale of murder, deceit and greed set in an isolated country community.",0,0,Maigrets Night at the Crossroads,en +451709,Lucas Brothers: On Drugs,2017-04-18,49.0,https://www.netflix.com/title/80117484,,tt6218048,,"Deadpan twin comics Keith and Kenny Lucas take the stage in Brooklyn with a set that touches on drugs, race, Deion Sanders, teachers and O.J. Simpson.",0,0,Lucas Brothers: On Drugs,en +283995,Guardians of the Galaxy Vol. 2,2017-04-19,137.0,http://marvel.com/movies/movie/221/guardians_of_the_galaxy_vol_2,284433,tt3896198,Obviously.,The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.,200000000,863416141,Guardians of the Galaxy Vol. 2,en +408381,Monolith,2017-04-20,83.0,,,tt4711924,Technology can be your best friend or your worst enemy.,A mother and her son plan a surprise visit to Los Angeles to see her husband/his father. Halfway there they get into a terrible accident in the middle of nowhere and now must fight to survive.,0,0,Monolith,it +418437,Unforgettable,2017-04-20,100.0,,,tt3462710,,"Julia moves in with her fiancé, David, but his ex-wife and her own haunting past join forces to rock her quiet suburban existence.",12000000,17768012,Unforgettable,en +354859,The Promise,2017-04-21,130.0,http://www.survivalpictures.org/the-promise/,,tt4776998,Empires fall. Love survives.,"Set during the last days of the Ottoman Empire, a love triangle develops between Mikael, a brilliant medical student, the beautiful and sophisticated artist Ana, and Chris, a renowned American journalist based in Paris.",0,0,The Promise,en +443319,Phoenix Forgotten,2017-04-21,80.0,http://phoenixforgotten.com/,,tt6574272,Based on Shocking Untold True Events,"20 years after three teenagers disappeared in the wake of mysterious lights appearing above Phoenix, Arizona, unseen footage from that night has been discovered, chronicling the final hours of their fateful expedition.",2800000,3600000,Phoenix Forgotten,en +411013,Citizen Jane: Battle for the City,2017-04-21,92.0,http://www.altimeterfilms.com/citizen-jane-battle-for-the-city/,,tt3699354,,Writer and urban activist Jane Jacobs fights to save historic New York City during the ruthless redevelopment era of urban planner Robert Moses in the 1960s.,0,0,Citizen Jane: Battle for the City,en +390059,Permission,2017-04-22,96.0,,,tt5390066,,A woman on the brink of a marriage proposal is told by a friend that she should date other men before spending the rest of her life with her boyfriend.,0,0,Permission,en +424600,The Immortal Life of Henrietta Lacks,2017-04-22,93.0,http://www.hbo.com/movies/the-immortal-life-of-henrietta-lacks,,tt5686132,Discover what you are made of,An African-American woman becomes an unwitting pioneer for medical breakthroughs when her cells are used to create the first immortal human cell line in the early 1950s.,0,0,The Immortal Life of Henrietta Lacks,en +448449,Whitney: Can I Be Me,2017-04-24,105.0,https://dogwoof.com/whitney-can-i-be-me/,,tt5563330,,The life and tragic death of Whitney Houston.,0,0,Whitney: Can I Be Me,en +390747,Obit,2017-04-26,93.0,http://www.obitdoc.com,,tt4820284,An inside look at life on the New York Times obituaries desk.,"How do you put a life into 500 words? Ask the staff obituary writers at the New York Times. OBIT is a first-ever glimpse into the daily rituals, joys and existential angst of the Times obit writers, as they chronicle life after death on the front lines of history.",0,0,Obit,en +274857,King Arthur: Legend of the Sword,2017-04-27,126.0,http://kingarthurmovie.com,,tt1972591,From nothing comes a King,"When the child Arthur’s father is murdered, Vortigern, Arthur’s uncle, seizes the crown. Robbed of his birthright and with no idea who he truly is, Arthur comes up the hard way in the back alleys of the city. But once he pulls the sword Excalibur from the stone, his life is turned upside down and he is forced to acknowledge his true legacy... whether he likes it or not.",175000000,146175066,King Arthur: Legend of the Sword,en +430826,Casting JonBenet,2017-04-28,81.0,http://cinereach.org/films/casting-jonbenet/,,tt6333052,Everyone wants the part that's missing,"Twenty years after the modern world's most notorious child murder, the legacy of the crime and its impact are explored.",0,0,Casting JonBenet,en +450875,LA 92,2017-04-28,114.0,http://channel.nationalgeographic.com/la-92/,,tt6794424,The past is prologue,"Twenty-five years after the verdict in the Rodney King trial sparked several days of protests, violence and looting in Los Angeles, LA 92 immerses viewers in that tumultuous period through stunning and rarely seen archival footage.",0,0,LA 92,en +367147,Buster's Mal Heart,2017-04-28,96.0,,,tt5173032,The Inversion is Coming,An eccentric mountain man on the run from the local sheriff recalls the mysterious events that brought him to his present fugitive state.,0,73121,Buster's Mal Heart,en +452372,Warning: This Drug May Kill You,2017-05-01,60.0,http://www.hbo.com/documentaries/warning-this-drug-may-kill-you,,tt6710212,America's prescription opiods kill more than pain.,"A harrowing, unflinching look at the devastating effects of opioid addiction in the U.S. told from the perspectives of four families devastated by the deadly epidemic.",0,0,Warning: This Drug May Kill You,en +455601,Maria Bamford: Old Baby,2017-05-02,64.0,,,tt6264596,,She's savagely upbeat. Lovably awkward. And full of surprises. A wildly funny trip through a one-of-a-kind comic mind.,0,0,Maria Bamford: Old Baby,en +383538,The Shadow Effect,2017-05-02,93.0,,,tt5044656,"Once you remember, you will never forget.",A young man's life is turned upside down when his violent dreams begin to blend with reality.,4000000,0,The Shadow Effect,en +426253,The Lovers,2017-05-05,94.0,,,tt5770620,A love so strong it can survive marriage.,The separation of a long married couple goes awry when they fall for each other again.,0,214078,The Lovers,en +381518,Mindhorn,2017-05-05,89.0,,,tt4799064,It's truth time!,"A washed up actor who played Mindhorn, a secret agent with a bionic eye, returns to the Isle of Man, the area where his most famous role was set, to help catch a killer.",0,0,Mindhorn,en +373546,Chuck,2017-05-05,101.0,http://www.ifcfilms.com/films/chuck,,tt1610525,,A drama inspired by the life of heavyweight boxer Chuck Wepner.,0,0,Chuck,en +402582,Handsome: A Netflix Mystery Movie,2017-05-05,81.0,,,tt5809020,,LA homicide detective Gene Handsome's knack for solving mysteries is matched only by his inability to make sense of his own problems.,0,0,Handsome: A Netflix Mystery Movie,en +381032,Another Evil,2017-05-05,92.0,,,tt4185566,,"After encountering a ghost in his family's vacation home, Dan and his wife Mary hire an ""industrial-grade exorcist"" named Os to get rid of the beings.",0,0,Another Evil,en +456781,Boone: The Bounty Hunter,2017-05-09,86.0,http://www.boonethebountyhunter.com/,,tt3229488,You can run but you can't hide,"When fame-seeking reality show bounty hunter, Boone, attempts to bring down a drug lord and his empire, he uncovers more than he bargains for and learns that justice means more than ratings.",0,0,Boone: The Bounty Hunter,en +126889,Alien: Covenant,2017-05-09,122.0,https://alienuniverse.com/alien-covenant,135416,tt2316204,The path to paradise begins in hell.,"Bound for a remote planet on the far side of the galaxy, the crew of the colony ship 'Covenant' discovers what is thought to be an uncharted paradise, but is actually a dark, dangerous world – which has its sole inhabitant the 'synthetic', David, survivor of the doomed Prometheus expedition.",97000000,232380243,Alien: Covenant,en +417489,Bon Cop Bad Cop 2,2017-05-12,0.0,http://bcbc2.ca/en/,417491,tt4738174,"It's okay America, we've got your back.",Ward and Bouchard must face an important car theft ring that turns out to be a lot more than they bargained for: one where the stolen cars will serve as bombs in a well planned terrorist attack.,0,0,Bon Cop Bad Cop 2,fr +401164,Tracktown,2017-05-12,88.0,http://tracktownmovie.com/,,tt5750534,The finish line is just the beginning.,"A bright, talented and lonely long-distance runner twists her ankle as she prepares for the Olympic Trials and must do something she's never done before: take a day off.",0,0,Tracktown,en +412363,The Wedding Plan,2017-05-12,110.0,,,tt5991206,30 days. 1 wedding. No Groom.,"Michal is 32 years old. She became religious 12 years ago, and only now is she getting married. A month before the wedding, while checking out the catering for the event, the groom has a change of heart and the wedding is called off. Michal feels she’s unable to go back to ordinary life, to the usual course of matchmaking. She feels this is the moment to change something very basic in her personality. A simple belief that God is good and sweet; that He wants to give and is only waiting for her to wish it. Michal goes on a month-long journey lasting up to the planned wedding day: “I have the venue, the dress, the apartment; God can easily come up with my groom.”",0,0,Laavor et hakir,he +413762,The Levelling,2017-05-12,83.0,,,tt5158522,,Clover is finishing a veterinary course when her brother dies and she is called home to her family's struggling Somerset farm.,1282545,0,The Levelling,en +458618,Ivanka Trump- America's Real First Lady?,2017-05-15,60.0,http://www.channel4.com/programmes/ivanka-trump-americas-real-first-lady,,tt6877238,,"Donald Trump's daughter Ivanka has been appointed to an official role within the White House, but what does she believe in and how much political clout does she actually have?",0,0,Ivanka Trump- America's Real First Lady?,en +356752,AWOL,2017-05-19,82.0,http://www.thefilmcollaborative.org/films/awol,,tt4462372,,A young woman in the Army must make tough decisions when her love for an older woman causes her to question just where she is going. Adapted from Deb Shoval's 2011 short film of the same name.,0,0,AWOL,en +417678,"Everything, Everything",2017-05-19,96.0,http://everythingeverythingmovie.com,,tt5001718,Risk everything... for love.,"A teenager who's lived a sheltered life because she's allergic to everything, falls for the boy who moves in next door.",10000000,0,"Everything, Everything",en +399790,Churchill,2017-05-25,110.0,http://www.embankmentfilms.com/portfolio_page/churchill/,,tt2674454,The untold story of D-Day.,A ticking-clock thriller following Winston Churchill in the 24 hours before D-Day.,10000000,0,Churchill,en +419192,McLaren,2017-05-25,94.0,,,tt5031332,Pioneer. Leader. Father. Champion.,"The story of New Zealander, Bruce McLaren, who founded the McLaren Motor Racing team, showing the world that a man of humble beginnings could take on the elite of motor racing and win.",0,0,McLaren,en +455043,God of War,2017-05-27,130.0,,,tt6083388,,"During the 16th century, Japanese pirates proliferate along the Chinese coastline. In 1557, the pirates take over Cengang in Zhejiang. After months of futile advances, Commander Yu (Sammo Hung) finally defeats them under the leadership of newly promoted General Qi (Vincent Zhao). The pirates, however, manage to escape. In 1561, the pirates regroup and once again attack the coastal cities of China. With both the cities of Xinhe and Taizhou under attack, Qi's army is caught between two fires. Even though most family members of his soldiers are located in Xinhe, Qi makes the tough decision to go to Taizhou and leaves his wife in charge of the fight against the pirates in Xinhe, knowing that the defeat of the pirates' elite team in Taizhou will bring long lasting peace to the coastal cities.",25000000,0,God Of War,zh +459295,Sarah Silverman: A Speck of Dust,2017-05-30,71.0,,,tt6948354,,"In her first comedy special post-health scare, Sarah Silverman shares a mix of fun facts, sad truths and yeah-she-just-went-there moments.",0,0,Sarah Silverman: A Speck of Dust,en +297762,Wonder Woman,2017-05-30,141.0,http://www.warnerbros.com/wonder-woman,468552,tt0451279,Power. Grace. Wisdom. Wonder.,An Amazon princess comes to the world of Man to become the greatest of the female superheroes.,149000000,820580447,Wonder Woman,en +429174,Loveless,2017-06-01,128.0,,,tt6304162,,"Zhenya and Boris are going through a vicious divorce marked by resentment, frustration and recriminations. Already embarking on new lives, each with a new partner, they are impatient to start again, to turn the page – even if it means threatening to abandon their 12-year-old son Alyosha. Until, after witnessing one of their fights, Alyosha disappears...",0,0,Нелюбовь,ru +448763,Amor.com,2017-06-01,92.0,,,tt5635808,,It's a love story between a fashion blogger and a video game blogger. The beauty and the nerd.,0,0,Amor.com,pt +423988,Kill Switch,2017-06-01,91.0,http://presskillswitch.com/,,tt5464234,Worlds will collide,A pilot battles to save his family and the planet after an experiment for unlimited energy goes wrong.,1000000,0,Kill Switch,en +455661,In a Heartbeat,2017-06-01,4.0,,,tt6969946,The Heart Wants What The Heart Wants,A closeted boy runs the risk of being outed by his own heart after it pops out of his chest to chase down the boy of his dreams.,0,0,In a Heartbeat,en +456101,Aaron's Blood,2017-06-02,80.0,,,tt3898776,,Single father Aaron fights to save his 12-year-old hemophiliac son after becoming infected with vampire blood.,0,0,Aaron's Blood,en +305342,Dean,2017-06-02,87.0,,,tt3914332,,A freelance illustrator in New York suffers a quarter-life crisis and leaves his home for the west coast.,0,0,Dean,en +426230,Band Aid,2017-06-02,91.0,,,tt5816374,,A couple who can't stop fighting embark on a last-ditch effort to save their marriage: turning their fights into songs and starting a band.,0,0,Band Aid,en +453053,Dumb: The Story of Big Brother Magazine,2017-06-03,79.0,,,tt6794450,,"The story of the rise and fall of the 1990s skate boarding magazine, ""Big Brother.""",0,0,Dumb: The Story of Big Brother Magazine,en +413998,My Cousin Rachel,2017-06-08,106.0,http://www.foxsearchlight.com/mycousinrachel/,,tt4411596,,"A young Englishman plots revenge against his mysterious, beautiful cousin, believing that she murdered his guardian. But his feelings become complicated as he finds himself falling under the beguiling spell of her charms.",0,2676077,My Cousin Rachel,en +345915,Once Upon a Time in Venice,2017-06-08,94.0,,,tt4694544,Never mess with a man's dog,"Steve Ford is a private detective in Venice Beach, Calif., who's good with the ladies, bad with the punches and wild about his dog Buddy. When local thugs steal Buddy, Ford turns to Spyder, their devious leader, and forges an unlikely alliance. With help from his best friend, Steve pulls out the big guns to retrieve Spyder's stolen cash and cocaine and save Buddy.",0,0,Once Upon a Time in Venice,en +424488,Megan Leavey,2017-06-09,116.0,,,tt4899370,Based on the true story of a marine's best friend.,"The true story of Marine Corporal Megan Leavey, who forms a powerful bond with an aggressive combat dog, Rex. While deployed in Iraq, the two complete more than 100 missions and save countless lives, until an IED explosion puts their faithfulness to the test.",0,0,Megan Leavey,en +461805,The Putin Interviews,2017-06-12,240.0,,,tt6840134,Know Your Enemy,"Academy Award-winning filmmaker, Oliver Stone interviews Russia's President Vladimir Putin about divisive issues related to US/Russia relations.",0,0,The Putin Interviews,en +461615,Mutafukaz,2017-06-13,90.0,,,tt4717402,,"Angelino is just one of thousands of deadbeats living in Dark Meat City. But an otherwise unremarkable scooter accident caused by a beautiful, mysterious stranger is about to transform his life... into a waking nightmare! He starts seeing monstrous forms prowling around all over the city... Is Angelino losing his mind, or could an alien invasion really be happening this quietly...?",0,0,Mutafukaz,fr +444193,The Evil Within,2017-06-13,98.0,,,tt0339736,You Can't Run From a Nightmare,"The sadistic tale of a lonely, mentally handicapped boy who befriends his reflection in an antique mirror. This demonic creature orders him to go on a murderous rampage to kill the people he loves most.",4000000,0,The Evil Within,en +461955,Rakka,2017-06-14,22.0,http://www.oatsstudios.com,,tt6990734,,"""Rakka"" is the story of broken humanity following the invasion of a technologically superior alien species. Bleak harrowing and unrelenting, the humans we meet must find enough courage to go on fighting.",0,0,Rakka,en +397422,Rough Night,2017-06-15,101.0,http://www.roughnightmovie.com/,,tt4799050,The hangover will be the least of their problems,"Five best friends from college reunite 10 years later for a wild bachelorette weekend in Miami. Their hard partying takes a hilariously dark turn when they accidentally kill a male stripper. Amidst the craziness of trying to cover it up, they're ultimately brought closer together when it matters most.",20000000,45056771,Rough Night,en +403119,47 Meters Down,2017-06-15,89.0,https://47metersdownmovie.com/,,tt2932536,No way out. No way up. No chance in hell.,"Two sisters on Mexican vacation are trapped in a shark observation cage at the bottom of the ocean, with oxygen running low and great whites circling nearby, they have less than an hour of air left to figure out how to get to the surface.",5500000,44235023,47 Meters Down,en +433471,Lou,2017-06-16,6.0,https://www.pixar.com/lou,,tt6267732,,A Pixar short about a lost-and-found box and the unseen monster within.,0,0,Lou,en +445840,Selfie,2017-06-23,,,,tt6597454,,,0,0,Selfie,es +460135,LEGO DC Super Hero Girls: Brain Drain,2017-08-30,0.0,,477208,tt7158814,,"When Supergirl, Wonder Woman, Batgirl, Bumblebee and Katana suddenly realize they cannot remember a single moment from their Monday at Super Hero High, the young DC Super Heroes spring into sleuthing action! Suspecting foul-play, they band together to retrace their steps and uncover the mystery of who exactly stole their memories – and what nefarious plan might be afoot?",0,0,LEGO DC Super Hero Girls: Brain Drain,en +426264,The Trip to Spain,2017-08-31,115.0,,309300,tt6193424,,Steve Coogan and Rob Brydon embark on a road trip along the coast of Spain.,0,0,The Trip to Spain,en +441728,Hampstead,2017-06-23,102.0,,,tt5153236,,"Emily Walters is an American widow living a peaceful, uneventful existence in the idyllic Hampstead Village of London, when she meets a local recluse, Donald Horner. For 17 years, Donald has lived—wildly yet peacefully—in a ramshackle hut near the edge of the forest. When Emily learns his home is the target of developers who will stop at nothing to remove him, saving Donald and his property becomes her personal mission. Despite his gruff exterior and polite refusals for help, Emily is drawn to him—as he is to her—and what begins as a charitable cause evolves into a relationship that will grow even as the bulldozers close in.",0,0,Hampstead,en +316154,The Bad Batch,2017-06-23,119.0,,,tt4334266,,"In a desert wasteland in Texas, a muscled cannibal breaks one important rule: don’t play with your food.",6000000,0,The Bad Batch,en +441881,Tubelight,2017-06-23,136.0,,,tt5882970,,"Laxman Singh Bisht (Salman) is nicknamed tube light by his neighbours because he is feeble-minded. Despite being special, Laxman lives by one life-lesson; keep your faith alive and you can do almost anything, even stop a war.",0,0,Tubelight,hi +339403,Baby Driver,2017-06-28,113.0,,,tt3890160,All you need is one killer track.,"After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.",34000000,224511319,Baby Driver,en +463800,Firebase,2017-06-28,27.0,https://www.youtube.com/watch?v=Tm0V24IEHao,,tt7078926,,"Set during the Vietnam war, Firebase follows American soldier Hines through an ever-deepening web of science fiction madness.",0,0,Firebase,en +407531,Bedeviled,2017-06-28,91.0,,,tt4998772,Don't accept his invite.,"A group of friends download a Siri-like App which, at first, seems like a harmless way to get directions or a restaurant recommendation. But the sinister nature of the App soon reveals itself. The App not only knows each person’s deepest, darkest fears, but is able to manifest these fears into the real world to literally scare the kids to death.",0,0,Bedeviled,en +269795,2:22,2017-06-29,99.0,,,tt1131724,,"A man's life is derailed when an ominous pattern of events repeats itself in exactly the same manner every day, ending at precisely 2:22 p.m.",0,422,2:22,en +438634,Summer 1993,2017-06-30,96.0,,,tt5897636,A new family. A new world.,"After her mother's death, six-year-old Frida is sent to her uncle's family to live with them in the countryside. But Frida finds it hard to forget her mother and adapt to her new life.",0,0,Estiu 1993,ca +458335,Soundtrack,2017-07-06,,,,tt3332372,,,0,0,Soundtrack,pt +348389,Stratton,2017-07-06,94.0,http://www.gfmfilms.co.uk/stratton,,tt3567666,The enemy has a weapon. So do we.,A British Special Boat Service commando tracks down an international terrorist cell.,0,0,Stratton,en +345916,Do You Take This Man,2017-07-07,92.0,http://doyoutakethismanmovie.com,,tt4723724,,"When a gay couple's impending wedding hits a snag, the grooms must rely on their friends and family to see them through.",0,0,Do You Take This Man,en +440597,Wish Upon,2017-07-07,90.0,http://wishuponmovie.com/,,tt5322012,Be careful what you wish for,"A teenage girl discovers a box with magical powers, but those powers comes with a deadly price.",0,0,Wish Upon,en +463906,The Saint,2017-07-11,92.0,,,tt2569088,,"International master thief, Simon Templar, also known as The Saint, is asked by a desperate rich man to find his kidnapped daughter. However, in addition to evading the authorities, Simon must face a dangerous adversary from his past.",0,0,The Saint,en +464111,Zygote,2017-07-12,23.0,https://www.youtube.com/watch?v=pKWB-MVJ4sQ,,tt7078780,,"Stranded in an Arctic mine, two survivors are forced to fight for their lives against a new kind of terror.",0,0,Zygote,en +417870,Girls Trip,2017-07-21,122.0,,,tt3564472,"""Forgive us in advance for this wild weekend""","Four girlfriends take a trip to New Orleans for an annual festival and, along the way, rediscover their wild sides and strengthen the bonds of sisterhood.",0,0,Girls Trip,en +419459,Landline,2017-07-21,93.0,,,tt5737862,1995. When people were harder to reach.,A teenager living with her sister and parents in Manhattan during the 1990s discovers that her father is having an affair.,0,0,Landline,en +413644,The Son of Bigfoot,2017-07-27,92.0,,,tt5715410,,"Teenage outsider Adam sets out on an epic and daring quest to uncover the mystery behind his long-lost dad, only to find out that he is none other than the legendary Bigfoot! He has been hiding deep in the forest for years to protect himself and his family from HairCo., a giant corporation eager to run scientific experiments with his special DNA. As father and son start making up for lost time after the boy's initial disbelief, Adam soon discovers that he too is gifted with superpowers beyond his imagination. But little do they know, HairCo. is on their tail as Adam's traces have led them to Bigfoot!",0,0,The Son of Bigfoot,en +403431,Brigsby Bear,2017-07-27,100.0,,,tt5805752,,"Brigsby Bear Adventures is a children's TV show produced for an audience of one: James. When the show abruptly ends, James's life changes forever, and he sets out to finish the story himself.",0,0,Brigsby Bear,en +468707,Thick Lashes of Lauri Mäntyvaara,2017-07-28,90.0,http://lmtr.fi/,,tt5742932,,,1254040,0,Lauri Mäntyvaaran tuuheet ripset,fi +378236,The Emoji Movie,2017-07-28,86.0,http://www.theemoji-movie.com/,,tt4877122,Not easy being meh,"Gene, a multi-expressional emoji, sets out on a journey to become a normal emoji.",50000000,66913939,The Emoji Movie,en +407448,Detroit,2017-07-28,143.0,http://detroit.movie,,tt5390504,It's time we knew,A police raid in Detroit in 1967 results in one of the largest citizens' uprisings in the history of the United States.,34000000,0,Detroit,en +433945,Tokyo Ghoul,2017-07-29,119.0,http://tokyoghoul.jp/,,tt5815944,,"Ken Kaneki (Masataka Kubota) is a university student. He becomes injured by Rize, a human eating ghoul. Ken is saved from the ghoul when a steel frame falls on Rize. They are both sent to the hospital. Ken receives an organ transplant from Rize and becomes a half ghoul.",0,0,東京喰種 トーキョーグール,ja +394822,London Town,2017-08-03,92.0,,,tt1724597,,A 14-year old boy’s life changes forever when his estranged mother introduces him to the music of The Clash in 1979 London.,0,0,London Town,en +414453,Columbus,2017-08-04,104.0,https://columbusthemovie.com,,tt5990474,,"A Korean-born man finds himself stuck in Columbus, Indiana, where his architect father is in a coma. The man meets a young woman who wants to stay in Columbus with her mother, a recovering addict, instead of pursuing her own dreams.",0,0,Columbus,en +411741,Ingrid Goes West,2017-08-11,97.0,http://ingridgoeswestfilm.com,,tt5962210,She'll follow you.,"Ingrid becomes obsessed with a social network star named Taylor Sloane who seemingly has a perfect life. But when Ingrid decides to drop everything and move west to be Taylor's friend, her behaviour turns unsettling and dangerous.",0,0,Ingrid Goes West,en +429200,Good Time,2017-08-11,99.0,http://goodtime.movie/,,tt4846232,,A bank robber tries to avoid the law closing in on him.,0,10893246,Good Time,en +284053,Thor: Ragnarok,2017-10-25,0.0,https://marvel.com/movies/movie/222/thor_ragnarok,131296,tt3501632,,"Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok, the destruction of his homeworld and the end of Asgardian civilization, at the hands of an all-powerful new threat, the ruthless Hela.",0,0,Thor: Ragnarok,en +413992,Sweet Virginia,2017-11-17,95.0,,,tt2582498,,A former rodeo champ befriends a young man with a propensity for violence.,0,0,Sweet Virginia,en +433086,Machines,2017-11-30,71.0,,,tt5690244,,"This portrayal of the rhythm of life and work in a gigantic textile factory in Gujarat, India, moves through the corridors and bowels of the enormously disorienting structure—taking the viewer on a journey of dehumanizing physical labor and intense hardship.",0,0,Machines,hi +353616,Pitch Perfect 3,2017-12-21,0.0,,306031,tt4765284,,Sequel to Pitch Perfect 2,0,0,Pitch Perfect 3,en +341689,How to Talk to Girls at Parties,2017-12-27,102.0,,,tt3859310,Some girls are out of this world.,"A couple of British 1970s teen-aged boys, Enn and Vic, go to a party to meet girls, only to find that the girls are very different from the boys' expectations.",0,0,How to Talk to Girls at Parties,en +332283,Mary Shelley,2018-04-25,0.0,,,tt3906082,,"The love affair between poet Percy Shelley and 18 years old Mary Wollstonecraft, which resulted in Mary Shelley writing Frankenstein.",0,0,Mary Shelley,en +76600,Avatar 2,2020-12-16,0.0,http://www.avatarmovie.com/,87096,tt1630029,,A sequel to Avatar (2009).,0,0,Avatar 2,en +439050,Subdue,,90.0,http://www.imdb.com/title/tt6209470/,,tt6209470,Rising and falling between a man and woman,Rising and falling between a man and woman.,0,0,رگ خواب,fa +139909,Aurinkotuuli,,,,,tt0140826,,,0,0,Aurinkotuuli,fi +150736,Recto / verso,,0.0,,,tt0181342,,,0,0,Recto / verso,fr +47934,Independence Day 3,,0.0,,304378,tt1628842,,Plot unknown,0,0,Independence Day 3,en +405763,The Adventures of Cinderella's Daughter,,0.0,,,tt0250944,,"A young girl yearns to be like every other teenager, and with the help of her fairy Godbrother, just might her wish.",0,0,The Adventures of Cinderella's Daughter,en +250503,Bad Chicken,,90.0,,,tt2424418,,"All Norah ever wanted to be was a reality TV star. But her dream-come-true quickly turns into a nightmare when she allows a motley television crew of chickens, led by a sociopath, 'Charlie Chicken', to invade her home, manipulate her emotions, and drag her and her soon-to-be-ex-boyfriend into the desert on what is supposed to be a glamorous reality TV shoot. Deep in the surreal landscapes of the Joshua Tree desert, it becomes a battle of species. The hilarious antics of the oddball chicken crew, the blind faith of a reality TV star wannabe, and the cruel perversions of one really 'bad chicken', all spiral downward into an extremely unique Spaghetti Western.",0,0,Bad Chicken,en +173300,Getting Back to Abnormal,,92.0,http://www.gettingbacktoabnormal.com/,,tt2452236,,"What happens when America's most joyous, dysfunctional city rebuilds itself after a disaster? New Orleans is the setting for Getting Back to Abnormal, a film that serves up a provocative mix of race, corruption and politics to tell the story of the re-election campaign of Stacy Head, a white woman in a city council seat traditionally held by a black representative. Supported by her irrepressible African-American aide Barbara Lacen-Keller, Head polarizes the city as her candidacy threatens to diminish the power and influence of its black citizens. Featuring a cast of characters as colorful as the city itself, the film presents a New Orleans that outsiders rarely see.",0,0,Getting Back to Abnormal,en +398295,Mundo Cão,,0.0,,,tt5256044,,,0,0,Mundo Cão,pt +201913,Señorita Justice,,86.0,,,tt0374212,,"Ana Rios is a former Miami police detective-turned-lawyer who becomes hell-bent on seeking revenge after tragedy shakes her stable existence. As part of her plan, she plots to seek out the gang members responsible for her brother's murder. But Ana also finds some for romance with a former boyfriend, Hector, but that only leads to more complications for her.",0,0,Señorita Justice,en +216550,Dolpo Tulku - Heimkehr in den Himalaya,,,,,tt1571570,,,0,0,Dolpo Tulku - Heimkehr in den Himalaya,de +262113,Monk by Blood,,25.0,,,tt3631388,,One young Japanese man struggles with his destiny as the next in line to take over his family's 800-year old temple.,0,0,Monk by Blood,en +283489,Ascendant,,0.0,http://www.thedivergentseries.movie/#ascendant,283579,tt3663184,,Beatrice Prior and Tobias Eaton fight to end the Bureau of Genetic Welfare's authoritarian reign over the United States.,0,0,Ascendant,en +122662,,,,http://m-scramble.jp/exhaust/,122661,tt2423504,,Third film of the Mardock Scramble series.,0,,マルドゥック・スクランブル 排気,ja +397339,The Awful Truth,,0.0,,,tt0015589,,Black and White,0,0,The Awful Truth,en +410576,Bad Dad Rehab,,,,,tt5935392,,,0,0,Bad Dad Rehab,en +382962,If These Knishes Could Talk: The Story of the NY Accent,,55.0,,,tt1449183,,"The story of the New York accent, as told by New Yorkers.",0,0,If These Knishes Could Talk: The Story of the NY Accent,en +419289,Allende en su laberinto,,,,,tt2782754,,,0,0,Allende en su laberinto,es +382436,"Vous êtes très jolie, mademoiselle",,,,,tt3956642,,,0,0,"Vous êtes très jolie, mademoiselle",ru +381670,Vogelfrei,,95.0,,,tt1048173,,Four directors tell the story of a single man as he goes through life's stages.,0,0,Vogelfrei,lv +365371,War Stories Our Mother Never Told Us,,95.0,,,tt0114894,,"Seven New Zealand women speak about their lives during World War II: some lost husbands, some got married, some went into service themselves. The director lets the women tell their stories simply, alternating between them talking and archival footage of the war years.",0,0,War Stories Our Mother Never Told Us,en +344741,Pajęczarki,,,,,tt0105087,,,0,0,Pajęczarki,pl +340155,Игра на выбывание,,386.0,,,tt1426767,,Inhabitants of an elite Moscow house get involved in a game of a terrorist threatening to kill them one by one if they don't pay them a large amount of money.,0,0,Игра на выбывание,en +439314,The Garden of Afflictions 2017,,0.0,,,,,"Brazilian philosopher Olavo de Carvalho's thinking, presented through his presence, his daily work routine and his family life in Virginia (USA).",0,0,The Garden of Afflictions 2017,en +404471,Pölynimurikauppiaat,,,,,tt0107903,,,0,0,Pölynimurikauppiaat,fi +440361,Whn the day had no name,,,,,tt4464270,,,0,0,Whn the day had no name,de +449131,Aprel,,,,,tt0321264,,,0,0,Aprel,ru +38061,Anybody's Son Will Do,,57.0,http://www.onf-nfb.gc.ca/eng/collection/film/?id=14310,,tt0222730,,"All soldiers belong to the same profession, no matter what country they serve, and it makes them different from everybody else. They have to be different, for their job is ultimately about killing and dying, and those things are not a natural vocation for any human being. Yet all soldiers are born civilians. The method for turning young men into soldiers-people who kill other people and expose themselves to death-is basic training.",0,0,Anybody's Son Will Do,en +441826,Shivering Trunks,,4.0,,,tt2137792,,"Natalia Brożyńska's animation debut, about dramatic love, acceptance and happy endings.",0,0,Drzace traby,en +91527,Vaastupurush,,159.0,,,tt0396963,,"Dr. Bhaskar, a Magsaysay Award winner, returns to his native village after forty years accompanied by his doctor son and American daughter-in-law. While watching the ruins of his ancestral manor, Dr. Bhaskar remembers the critical year before his joining medical college. It was not his Gandhian freedom fighter father nor his feudal uncle or romantic elder brother, but his mother who motivated him to be a doctor for the service of the poor. She believed that is the only way to appease the Guardian Spirit of the house. Bhaskar is indebted to another woman, Krishnatai, his brother's lower caste lover, who was enlightened enough to support his mother's dream. Bhaskar is now back home to fulfill the wish of his mother",0,0,वास्तूपुरूष,mr +278544,Always Faithful,,72.0,,,tt2282697,"Courage, Loyalty, Trust","This compelling doc chronicles the dedication of military dog teams on the front lines of war in Iraq and Afghanistan. ""Always Faithful"" follows five young Marines and their four-legged partners, exploring the intense bond that develops between man and dog as they put their lives on the line day after day.",0,0,Always Faithful,en +116059,Laffghanistan: Comedy Down Range,,90.0,http://laffghanistanthemovie.com/,,tt1343324,,"Stand up comedian Graham Elwood's journey physically, and emotionally, as he travels through Afghanistan's war zones to entertain the embattled U.S. troops.",120000,0,Laffghanistan: Comedy Down Range,en diff --git a/demo/install/resources/movies_csv/People.csv b/demo/install/resources/movies_csv/People.csv new file mode 100644 index 0000000000..3d68909c40 --- /dev/null +++ b/demo/install/resources/movies_csv/People.csv @@ -0,0 +1,152698 @@ +id,Name +1661631,Richard Cummings +33348,Adrian Holmes +34720,Christopher Villiers +1239107,Omi Minami +1894164,Jack Webster +34840,Miguel Pérez +93902,Signe Hasso +107943,Klára Issová +42308,Beau Starr +1091997,Edwin August +1896860,Kevin O'Brien +81072,Seun Olagunju +110525,Kett Turton +37131,Bourvil +114835,Roddy Hughes +222830,Tomáš Hanák +1290895,Rick Petrucelli +1692543,Elena Gibson +47547,John Bennett +1384192,David B. Nichols +41269,John Beck +1616920,Amer Chadha-Patel +15534,Paul Benjamin +791,Mohammad Bustami +1212530,Carol Ann Susi +178614,Dolly Wells +31029,Kristen Wilson +44155,Hrant Alianak +11050,Henrik Lundström +78923,Suchitra Pillai-Malik +201071,Yuval Daniel +30351,Manuel de Blas +1723452,Philippe Lièvre +115602,Nicholas Phipps +103063,Davide Marotta +1674890,Yolanda Hughes-Heying +23821,Bryan Greenberg +210056,Pierre Barrera +1456539,Terry D. Rich +1616051,Alyssa Bresnahan +1447952,Richard Clayton +44921,Morgan Lam +21657,Vera Farmiga +1740170,Anna Jaskolka +3362,Judith Anderson +1857430,Vladimir McCrary +2725,Rainer Werner Fassbinder +1674949,Alice Benjamin +1744155,Vincent Boling +1200797,Janine King +1567499,Bea Guard +30898,Gordon Mitchell +39305,Werner Eichhorn +233118,Hale Hamilton +59449,Paula Marshall +13557,Clyde Cook +14868,Robert Young +8291,Alison Lohman +61945,Andrei Serban +20005,Moira Kelly +1402955,Julien Maffre +1229068,Nisha Nayar +76287,Bernadette Damman +100768,Jon Hall +1609645,Raymond MacCormac +40519,Max Linder +14545,Sully Boyar +94553,Jamie Marsh +1507115,Lynn Baker +11611,Laura Tonke +82834,Helena Carter +38581,Rachael Leigh Cook +18484,Virginie Thévenet +1547062,Ken Gerson +38570,Ken Jenkins +1564987,Sarah Loew +562719,Andrey Fedortsov +617,Ichirō Nagai +79954,Stefan Gryff +1616922,Tanveer Ghani +2,Mark Hamill +1231,Julianne Moore +107678,Almira Sessions +22370,Sara Kestelman +8232,Ethel Griffies +1080223,John Lander +1223643,Trevor Denman +120940,George Kuchar +133038,T.R. Bowen +1459314,David Wade +52830,Don Topping +62590,Jack Riley +1857920,Bernadette Benson +1160260,Tamsen McDonough +67369,Don Brodie +78145,Gabrielle Howarth +1075119,David Richardt +1338541,James Garrett +1551624,Hazel Childers +51549,Jordan Charney +96959,Duncan Lai +588095,Ralph Penney +97985,Angelo Rossitto +259040,Nicoletta Boris +80437,Peter James Smith +26959,Samuel Fuller +1780616,Anthony Bodell +24832,Daniel Prévost +34848,Tracy Falco +1681412,Brad Flock +5472,Colin Firth +1331671,Miriam Tun +3346,Dorothy Adams +17651,Nicholas Colasanto +1295160,Susie Bick +143405,Arthur St. Claire +11283,Clive Ashborn +150739,Thurl Ravenscroft +17773,Gabrielle Union +563898,Matthew Long +1245576,Steve Adams +60433,Ben Cardinal +34536,Maurice Page +88947,Sandy Duncan +3679,Frederick Piper +131102,Daniel Perrone +32427,W.S. Van Dyke +1083253,Neil Brand +1463007,Joseph Cozier +18289,Yomi Perry +33230,John Hubbard +2390,LeVar Burton +15482,Aurélien Recoing +95082,Leo Gordon +18891,Joan Severance +29306,John Paul +11886,Francesco Quinn +16474,Walter Scott +7171,John Belushi +17074,Sara Forestier +4990,Susumu Terajima +52879,Jason T. Davis +2671,John Alexander +1073795,Joshua Milrad +3676,Wylie Watson +12359,Brian Steele +1209900,Roberto Lombardi +48064,Sig Arno +75263,Tim Robertson +1524605,Golan Ramraz +1291801,William Alston +1752800,Marc Kimelman +1896880,Nora Lynch +1052883,Jonathan Baumbach +1728660,Kerstin Malessa +90341,Danny Comden +27176,Karl Geary +88614,Carol White +29139,Adolf E. Licho +1577159,Esther Sylvey +52541,Vinícius Oliveira +1460965,Claude Walter +1430048,Brigitte Kahn +104807,Rita Rusic +129590,Jane Elliott +6573,William Sadler +2086,Pierre Cosso +1208039,Arthur Tovey +81200,Conan O'Brien +1211987,John Walter Davis +579763,Xavier Cugat +85935,Richard Wattis +1739,James Keane +2541,Jun Kunimura +1752344,Jennifer Abbey +1003454,Bradley Pickren +7547,Daniela Piperno +60700,Margaret Whitton +59222,George Newbern +105723,Joe DeRita +198630,Linda Smith +575818,Hugh Lloyd +90333,Raymond Hatton +84734,Erik Zholzhaksynov +76502,Turkey Joe +36666,Pip Torrens +1481114,Rasa Saya +575500,Lena Söderblom +1037633,Jamie Wild +1701137,Frank Pellegrino +1224519,"John Moschitta, Jr." +1393333,Clifford Buckton +39646,Mireille Darc +1757590,Gino Barbacane +100930,Lorenzo Robledo +1366447,David Purvis +14792,Josef Sommer +142906,Preben Lerdorff Rye +544968,Robyn Loau +64434,Charlene Choi +18793,Kieran Culkin +1583756,Harlan Arnold +1717860,Siobhan Keegan +31209,Ludwig Stössel +17029,Nelly Borgeaud +60533,Ricardo Mamood-Vega +1265395,Joe Guastaferro +20603,Hermione Gingold +591346,Forbes KB +1141556,James Solomon +94074,Jamie Walters +101689,Fernanda Mistral +18516,Nicole Vicius +134868,Frank McGlynn Sr. +103966,Laurie Schwartz +84519,Santiago Douglas +97751,Denise Cheshire +1609220,Odile Corso +127442,David Cross +83556,Mang Hoi +1073196,Tsutomu Sekine +21030,Michael Moriarty +1034935,Jack Gargan +9899,Francis de Wolff +1331761,Gregory Golubeff +1752332,Josh Feldman +41730,Carole Cook +26029,Robert Kent +30555,Antonio Moreno +57831,Karen Mok +1429470,Nick W. Nicholson +265863,Jenna von Oy +171297,Sondra James +14533,Vladimir Sokoloff +87175,Nan McNamara +937572,Kevin O'Connor +1838901,Moustapha Diop +1129450,Eugenia Dolores +15007,Laura Harring +1060265,Billy Dix +1287562,Karrie Crouse +109506,Kenny Ho +16841,Brett Cullen +1651678,Nigel Pivaro +42933,Darwyn Carson +24720,Keith Skinner +49742,Ilona Schulz +1412543,Ilana Dowding +1281538,Jery Hewitt +1894156,Dan Corry +35083,Augustin Legrand +57420,Amy O'Neill +1936,Martin Balsam +118940,Jane Hoffman +59864,Amber Sealey +1352523,Valeriy Kukhareshin +80140,Gilbert Stafford +1729784,Bob Windsor +1502571,Cliff Borchardt +83948,Rukiya Bernard +37628,Julie Gayet +78924,Ayub Khan +67449,Stanley Baker +1234110,Mildred Shay +1065258,Harry Lane +20128,Clive Revill +37763,Élisabeth Bourgine +70456,Emily Browning +121356,Brooke Mills +11832,Jonathon Young +1663170,Pyotr Baksheyev +287365,Betty Linley +10338,Grigoris Evangelatos +36281,Imanol Arias +18964,Richard Münch +161500,Kurt Grayson +170543,Louis Nye +1484412,Arwen Holm +1359879,Goga Gvessiliani +75897,Lynda Gibson +26879,Raymond Gérôme +1235586,Nicole Robert +47953,Sonya Walger +19858,Zoe Weizenbaum +29660,Paul Harding +101429,Rosey Grier +87345,Rifka Lodeizen +36080,Daigaku Sekine +152963,Lisa Raggio +28005,Maurice Sonnenberg +1609240,Natalie Goss +1224119,Eddie Gorodetsky +175311,Jeremy Webb +1422112,Ernesto Molinari +98950,Michael Harris +59076,Perry Benson +6106,Steven Weber +109516,Clémentine Célarié +1217513,Johnny Lee +1136764,Sam Chung-Chuen +145354,Orhan Gencebay +1185077,Françoise Dubois +592525,Emma Gramatica +117264,Don Vito +1472999,Sidney Grayler +1341128,Annette Benson +86930,Gary Grossman +120600,Seamus McNally +79166,Xueying Zhao +148111,Lucille Bliss +352,Dennis Haysbert +99025,Kevin Van Hentenryck +15564,Keith Robinson +16086,Liam Sullivan +1525535,Emily Conforto +1534,Chris Elliott +1893427,Stephanie Ericsson +132720,Moultrie Kelsall +1203318,Jimmy McQuaid +1748052,Aurorah Allain +38244,O.E. Hasse +6366,Laurence Fox +67764,Jerry Reed +56778,Stuart Townsend +554829,Luc Guérin +128125,Alvin Farmer +67443,Claude Nollier +101755,Cliff Emmich +90530,Justin Hall +1577172,Kenna Espersen +11135,Joan Hickson +571302,Miguel Mas +1888169,Kuei Li +1084840,Bryan Moss +29915,Joe Dallesandro +83462,Diane McBain +83859,Leonard Roberts +73538,Klaus Zmorek +1089948,Dagmar Stanec +105361,Roberta Leighton +1091328,Aldo Bonamano +1084324,Paula Canals +1981,Alfre Woodard +76992,Kevin Duda +60970,Lucy Decoutere +86925,Terry Lee Crisp +1752805,Dondraico Johnson +51670,Johnathon Schaech +48958,Debra Paget +110654,Stan Freberg +1514697,Cheryl Anne Jaroslaw +87751,Jimmy Hunt +36490,Monika Baumgartner +107033,Anastasia Griffith +73040,Doug Bradley +94854,Tom Nowicki +1770537,Maggie Lloyd Williams +66884,Emlyn Williams +159552,Rickie Sorensen +29661,Oskar Homolka +987346,Eva Calvo +84234,Wally Maher +35763,Sanjay Kapoor +77351,Oleg Taktarov +20770,David Swift +1019847,Molly Bee +1284334,Evelyn Hall +135173,Joanna Clarke +239203,Carlos Muñoz +1327788,Kammy Darweish +17646,Sean McCann +102721,Ronald Sinclair +174373,Chip McAllister +1130613,Eva Simonet +71887,Glenda Pannell +51659,Mike Pagano +81571,Yasmin Paige +54620,Branko Đurić +1162543,Oscar Ferrigno Jr. +97780,Traci Bingham +164040,Wendy Hoopes +131931,Shao Bing +1483726,Ashlynn Rose +20211,John Getz +1818,Paul Winfield +1386485,Юрий Панчишин +83122,Moon So-ri +23459,Sienna Miller +134731,Kanchit Kwanpracha +1681438,John Cording +78960,Lawrence Mooney +1432460,Dave Fogel +8927,Jack Taylor +1830,Vadia Potenza +24393,Marie-Christine Barrault +17064,Ben Whishaw +1735908,Malcolm Smith +237794,Yuri Bogatyryov +89708,Brian Palermo +72292,Joëlle Rübli +186614,Cody Dorkin +1123417,Vieslav Krystyan +1609677,Charlie Read +5723,John Leguizamo +29020,Eric Christian Olsen +51805,Kevin Anderson +17544,Dieter Landuris +80545,Harold Goodwin +1092937,Hideko Mimura +1444515,Benny Fjeldsøe +1524603,Warren Stearns +50752,Enno Hesse +1318155,Adam Bridge +95738,Jorge Rivero +288,Jon Seda +129328,Lynne Carver +34535,Annie McEnroe +36634,Julio Cedillo +94943,René Bergeron +1722637,Damien Kearney +1415877,Olivia Negron +66478,Elzbieta Helman +8838,Elmer Clifton +1296384,John Gaffey +83801,Ralph Dumke +108273,Patricia Prest +1169595,Manuel de Benito +104504,John Aprea +565518,Seth Sklarey +129996,Paxton Whitehead +82437,Melissa Jaffer +67880,Fiona Florence +106839,Eugene Cernan +175368,Frank Kelly +134082,Amy Pietz +4175,Jeffrey Tambor +79724,Evan Branford +83024,Kay Hawtrey +16269,Louis Garrel +590445,Eugene Walter +82105,Maggie Moore +95276,Guinn Williams +1516289,Richard Hummer +20829,Seiji Miyaguchi +156603,Marlene Warfield +1212974,Lomax Study +1324199,Dee Turnell +90172,Brett Marx +234346,Guillaume Durand +7631,Stella Stevens +14386,Beyoncé Knowles +141358,Julian Spencer +31439,Bryan Forbes +553189,Giuseppe Zizzo +1624189,Ngai Jan +131486,Gene Sterling +6805,Dabbs Greer +87019,Sean Smith +70066,Inger Nilsson +83277,Sarah Jayne Jensen +36169,Cheryl Ladd +56124,William Zabka +987107,Kevin Casey +29711,Krista Errickson +22250,Rance Howard +1507172,David Peden +86257,J.B. Ghuman Jr. +235507,Naama Kates +54122,Gwen Verdon +1742398,Connie Maynord +139179,John Sheehan +1848718,Sommer Garcia +91435,Michael Louden +551826,Yuki Inomata +1879472,Hart Throb +105350,Sydne Rome +3796,Michael Gough +1347968,Margery Withers +117714,Marjorie Eaton +16101,Steve Ihnat +81253,Ananda Everingham +82096,Jessica Paré +1142303,An Nguyen +16566,George P. Cosmatos +7541,Giuseppe Battiston +554275,Marja-Leena Junker +92941,Memphis Bleek +25441,Steve Speirs +119360,Victor Beaumont +1049234,Patricia Zehentmayr +45694,August Schmölzer +1368766,Percy Haswell +12446,Peter Sellers +1871254,Patrizia Leonet +150572,Stratos Tzortzoglou +122124,Jack Orend +32357,Nicholas Farrell +108093,Jack Allen +37946,Aitana Sánchez-Gijón +60973,Patrick Roach +126671,George Reed +18461,Nick Chinlund +158837,David Gwillim +1114919,Geoff Garland +552170,Shôichi Hirose +53763,Tito Larriva +95698,Kevin Foster +1406148,Gerhard Polacek +1214054,Jason Kolotouros +153266,Myra Marsh +130713,Ricardo Trêpa +5171,Al Mancini +20959,"Louis Gossett, Jr." +1179089,Nancy Nichols +1162089,Lew Fields +164938,Tara Karsian +55805,André Marcon +590483,Christina Zenato +3636,Paul Newman +30617,Jason Cavalier +238896,Carter Wong +1324478,Clarke Coleman +130936,Yani Gellman +1429146,Someshô Matsumoto +1240346,Terence Hillyer +3672,Peggy Ashcroft +10246,Dirk Borchardt +1663169,V. Dzheneyeva +5656,Noah Baumbach +12715,Jeff Gillen +26723,Katheryn Winnick +140570,Jeff Blumenkrantz +52947,Tim Kang +1365,Lawrence Makoare +16478,Johnny Galecki +544969,Amanda Muggleton +87134,Herbie Ade +13580,Harold Russell +55378,John Bourgeois +188526,Stan Bly +1677019,Karine Stoffer +82167,David Costabile +1170975,Larry Nash +589002,Cobina Wright Sr. +1582115,John Wayne Shafer +1213742,Stephen Nathan +48462,Mikey Holekamp +80285,Kate Sargeant +16427,Enrique Castillo +25466,Eiji Okada +35642,Ken'ichi Endô +27145,Dale Wilson +146589,Wiley Earl +104630,Don Keefer +613,Sumi Shimamoto +62427,James Tien +1668305,Robert E. Fleischer +82315,Jean Harlow +25717,Dagmar Bláhová +1778954,Raymond Boyden +20091,Kristina Malota +3547,Ian McNeice +1036782,Sol Abad +118357,Delphine Chanéac +52688,Liron Levo +166481,Angela Vint +135035,Michelle Stewart +1223619,George Fenneman +40449,Mitsunori Isaki +119374,Richard Haines +87833,Tony Ramos +31876,Dolores del Río +1276330,Anita Camargo +27004,Meghan Heffern +103871,Howard Ryshpan +35962,Michèle Laroque +130422,Will Lee +21353,Isaiah Washington +20545,Justin Ashforth +1059872,Katherine Murphy +1209713,Masha Lund +39304,Regine Lutz +232127,Eileen Herlie +26059,David Franklin +48509,Janine Kunze +1167686,Janine Klein +13785,Betty Field +27107,Mike Doyle +1098538,Big Jeff Bess +66836,Jean Carson +1076424,Ekke Niiva +554276,Jonathan Harvey +165959,Gus Hoffman +1265433,Michelle Berube +217757,George Meader +83610,Ralph Wilcox +34243,Richard Fiske +1316257,Christiane Cohendy +551839,Shoko Nakahara +82580,Stephen Nichols +1840070,Karen V. James +236039,Eva Gröndahl +1542814,Eileen Page +91372,Meg Mundy +71552,Ari Graynor +47779,Pasquale Aleardi +104647,Melanie Good +126096,Cordelia González +1445191,Thomas Knuth-Winterfeldt +448998,Alex Fisher +98465,James Barton +1070234,Carolyn Brandt +1718303,Edward Peil Jr. +44969,Maria Fabbri +52924,Rich Hutchman +31070,Ryan O'Neal +18490,Frank Giering +68397,Natalie Berg +1752723,Daniel Dyer +16215,Karen Young +141494,Lionel Murton +110268,Onimaru +1609179,Patrick Le Barz +1080220,Muriel Smith +1312720,Philip Sleeman +58768,Jim Turner +12982,Peter Capaldi +38673,Channing Tatum +38761,Stuart Whitman +956444,Marek Windheim +133004,Narciso Ibáñez Serrador +1895633,Catrin Fychan +592088,Josef Šulc +35107,Ornella Giusto +54278,Mouss +1857431,Aron Paramor +15424,Michael Vartan +95727,Ferike Boros +130654,Mikako Ichikawa +1330773,Tania Trudell +55912,Diego Abatantuono +22516,Lillian Lehman +26666,Amanda Pays +73427,Ken Takakura +23880,Steven Seagal +1217195,Tina Yothers +1752334,Ariel Reid +155549,Ray Iannicelli +69494,Don Stroud +14754,Doghmi Larbi +123790,Nick Barber +13995,Tom Drake +45232,Aldo Ray +44922,Bill Tung +60978,Clint Clarke +1534392,Paul Ready +9146,Lisa Barbuscia +50097,Nakia Burrise +26685,Jonathan Tafler +1019845,Ferlin Husky +968746,Greg Nutcher +1508678,Stéphane Roquet +583268,Jessica Wight MacDonald +1332230,Brandon Fibbs +71347,Tom Signorelli +962560,Martin Lucey +588053,Roger Coma +110743,Stephen Boss +182416,Laura Waterbury +1145445,Eugène Berthier +1469574,Harry J. Vejar +120890,Chris McGarry +30271,Irene Manning +105079,Rhonda Leigh Hopkins +12025,Patsy Kelly +30613,Keith Carradine +1367680,Cynthia Onrubia +181895,Adam Harrington +52064,Auretta Gay +381663,Marc Ruchmann +10243,Carmen-Maja Antoni +40043,Niall Buggy +158664,Mimi Cozzens +89582,Gene Evans +20277,David Suchet +1403615,Shaun McCann +559710,Stewart Bevan +4302,Walter Brennan +53265,Amy Lavere +71395,Chen Shiang-Chyi +140542,Julieta Díaz +26665,Cecil Humphreys +990778,Lam Kau +104923,Caroline Mortimer +109676,Nick Faltas +33928,Gina Rovere +1233161,Mark Holden +2453,Mary Steenburgen +72413,Tsutomu Tatsumi +1560861,Bobby Sandimanie +1741401,Bjorn Nittmo +1773117,Douglas Sheridan +1088,Ludger Pistor +136126,Robert Griffin +58916,Mickey Wilson +80598,Steve Peck +1198793,George Randol +99466,Tom Santschi +78695,Ginny Tiu +175630,Charlie Talbert +91443,Kevin Dorman +18864,Tom McGrath +28988,Aud Egede Nissen +584985,James 'Gypsy' Haake +14001,Chill Wills +206452,Sean Haberle +1015461,Bruce Peter Young +2632,Chris Rock +1345833,Jack W. Johnston +42206,Matt McCoy +137748,Louisa Milwood-Haigh +89504,Pertti Sveholm +1222793,Danny Adcock +16484,Joey Lauren Adams +3035,Jerry O'Connell +20697,Shannon Lawson +1594346,Freddie Chapman +1212453,Linda Wallem +1296118,Shaliew 'Lek' Bamrungbun +1752760,Jeffrey James +1096143,Edouard Mielche +1330760,Sara Giacalone +13362,Alec Newman +89033,Leander De Cordova +15415,Peter Maloney +52713,Kenichi Yajima +4810,Rosie Perez +6197,Brian Dennehy +583455,Mary Williams +125128,Marlene Clark +164463,Daniel Oreskes +599473,Penelope Horner +3085,James Caan +127614,Richard Elfman +96595,Grant Shaud +40429,Jack Carter +4777,Emmanuel Johnson +1089959,Markus Holmberg +1178942,Lau Hak-Suen +1741430,Sacha Voski +1388784,Walter Tait +8895,Didi Conn +1275919,Nhat Do +6016,Walid Afkir +82769,Craig Chester +1578504,Danny Sands +1347353,Felix Nobis +216778,Lisa Bronwyn Moore +9172,Elizabeth Whitcraft +2140,Monica Potter +5897,Wayne Robson +15105,Mike Hagerty +5041,Ivan Triesault +14532,Jorge Martínez de Hoyos +551858,Aiko Masuyama +90719,Desi Lydic +102209,Erik Estrada +1059873,Kon Ohmura +1857452,Leo Williams +70876,Slavko Štimac +43133,Peter Ballance +116729,Chris Cauwenbergs +60140,Kevin Ligon +176872,John Cecil Holm +18658,Mia Kirshner +1468194,Henry Blair +58661,Richard Mulligan +100588,Ernest Cossart +43853,Irma P. Hall +189826,Robert Cawdron +15440,Jared Harris +1673805,Jack Grant Jr. +97922,Rick Washburn +5701,Joann Havrilla +553181,Elisa Morucci +8603,Roberta Rodrigues +1206614,Shawn Nelson +154395,Jean St. James +133456,Mariah O'Brien +130918,Lynda Mendelson +62940,Anezka Novak +211705,Parris Mosteller +2757,Nick Dennis +1089177,Molly Binder +18060,Wahiba Sahmi +1894149,Bob Orrison +1568365,Malcolm Jamieson +4361,Joey Bishop +1188761,Charles David Richards +1219796,Gloria Cromwell +963118,Eli Snyder +1671457,Soledad Gonzales +55317,Heather Wahlquist +35075,Julie Mauduech +43976,Rosalind Cash +28033,Arthur J. Nascarella +94696,Assen Blatechki +54226,Ted Felbel +1349324,Richard Suarez +1391048,Tom Tarpey +16562,Don MacKay +10859,Ryan Reynolds +9288,Jenna Maetlind +28039,Bruce Brown +116442,Emily Rose Everhard +225189,Peppino De Martino +107939,Jocko Sims +240772,Joseph Leon +58450,Kenjiro Ishimaru +4891,Patrick Collins +1035980,Paw Hee-Ching +43301,Sherry Miller +1422173,Mike Donovan +1672668,Shawn Elaine Brown Chiquette +45416,Kent Osborne +1384548,Marjorie Holliday +35504,Dale Fuller +1588715,Brantley Bush +3480,Blanca Portillo +204167,Lucy Liemann +55316,Larissa Laskin +106460,Janet Wright +156910,Karl Wiedergott +1193676,Douglas Campbell +1867439,César Herrera +121257,Bill Elliott +85108,Shaka Taylor +93746,Kristin Dattilo +29955,Olga Grey +4443,Christopher McDonald +1211521,Wojciech Klata +173177,Sonia Jackson +1533137,Jean-Jacques Aslanian +4372,Concha Galán +1281536,Robert LaBrosse +1879799,Jacelyn Lobay +67455,Robert Charlebois +234801,Mark Hoppus +554449,Heinz Emigholz +1472514,Whitney De Rahm +98569,Vince Van Patten +81255,Unnop Chanpaibool +1733421,John Sansone +2933,Reginald Barlow +184946,Sarah Lawson +1542481,Jacques Gallo +1366362,Todd Hofley +980739,Olivette Thibault +218364,James Fairfax +1894158,W. H. Manooch +1563,Jesper Asholt +592634,Roger Coggio +144127,Ben Taggart +55844,Thomas Hunter +59783,Johnny A. Sanchez +3894,Christian Bale +94994,Barbara Morrison +212519,Tony Bazell +45211,Steve Bisley +95504,Setsuko Hara +1615298,Alex Murphy +261320,Jigme Kunsang +85645,Sinolicka Trpkova +103670,Laura del Sol +1733444,Norma Gelose +1388781,Victoria Spivey +1556884,Mary Fogarty +91332,Dedee Pfeiffer +235189,Peter Ngor Chi-Kwan +93051,Uta Hagen +1751,James Doohan +80969,Genelle Williams +1747349,Michael Clary +568396,Tony Kirwood +33355,Steve Bacic +725,Jerry Orbach +6614,Cole Hauser +10489,Jack McGee +70364,Margarita Isabel +26473,Fisher Stevens +56702,Claudia Martini +9045,Stephen Baldwin +82785,Emily Osment +20492,Jordan Ladd +3141,Marisa Tomei +15268,Branka Katić +148029,Robert Bolder +20335,Tetsu Watanabe +1742436,Steven A. Webb +1194969,Sidné Anderson +937467,Gabriel Renom +1093168,Jill Nicklaus +49961,Michelle Trachtenberg +60886,Patrick McCullough +154332,Megyn Price +1381438,Olli Sorjonen +18666,Don Murray +1063229,C. Mason Wells +3073,Pauline Turner +142758,John Griesemer +31349,Ángel del Pozo +14882,Jackie Gleason +96661,Jin-gu Kim +579831,Louiguy +1114601,Patrick Shane Dorian +4892,Chuck Cooper +206423,Sahar Bibiyan +142914,Raphaël Diligent +121254,Al Taylor +1213215,Noam Pitlik +1555351,Camille Wainwright +1417450,Gavin MacFadyen +1209726,Brett Padelford +62423,Lam Ching-Ying +29859,Richard Briers +429,Lucas Till +1393359,David Frisch +44059,Jodi Long +14733,Leslie Parrish +1880600,Dorothy Dorian James +219630,Gino Marrocco +62751,Sam Harkess +44959,Daria Nicolodi +1237604,Eva Tamargo +61614,Jerry Di Giacomo +1651001,Monica Perego +1192377,Dean Strober +66881,Finola Hughes +1213044,Patty Toy +62417,Richard Ng +112975,Inia Te Wiata +1738559,Rebecca Bridge +1415451,Tom Harrington +1591266,Nefertiti +109545,Tony Bellette +103060,Mario Donatone +140355,Rose Gregorio +8693,Jude Ciccolella +151246,Nicole Scherzinger +1281540,Zolly Levin +1347546,John Andrews +55436,Semion Sudarikov +77353,Jasmine Guy +1748115,Sharon Ferrol-Young +33658,Skipp Sudduth +8259,Emilio Fernández +1799813,Shannon Maliff +1664197,Suzanne Renaud +140568,Maria Friedman +1664165,Frederic Venant +164419,Gino Lucci +22248,Heather McComb +11901,Dennis Franz +9207,Theresa Russell +31046,Piya Boonnak +1118081,Bethany Joy Lenz +121366,Marjorie Cameron +154124,Eugene Williams +1114916,Christopher Culkin +140573,Shaun Henson +7693,François Berléand +1201022,Junpei Natsuki +1661654,Terry Textor +89982,Richard Rober +86859,Nijiko Kiyokawa +51497,Guylain N'Guba-Boyeke +583269,Jesse Solomon +1536858,Jeffery Feaster +147494,Zachary Browne +52480,Eddie Kaye Thomas +80125,Bass Wolf +4246,Wyclef Jean +135907,Mahmoud Behraznia +13446,Eliza Dushku +31032,Steven Gilborn +80375,Daniel Letterle +16784,Sven Pippig +5309,Judi Dench +142608,Tara Mercurio +5916,Rosario Dawson +1329280,Jack David Walker +154826,Catherine Reitman +1484407,Ron Bain +20903,Josh Keaton +532649,Tania Balachova +36173,Lawrence Dane +140291,Joseph Riley +127222,Takanori Takeyama +1091285,Kei Nagase +1071729,Jonathon Gulla +44188,Jon Cypher +75277,Harry Brentnall +205583,Stan Tracy +1904843,Roger Ruffin +43666,Mitsuru Murata +83782,Bruce Wright +1797589,Kishen Lal +95597,Jack Ging +10693,Stephanie Berry +92809,Andrew Cassese +7531,Joseph P. Reidy +1681528,Jack Gwynne +85542,David Croft +428222,Megan McKinnon +108471,Petteri Summanen +981410,John Archie +262701,Mavis Staples +101266,Bill Ferrell +62889,Mihai Calin +55663,Hitoshi Takagi +60460,A.J. Buckley +1456525,Raul S. Brewster +1345985,Golab Adineh +1672921,Gus Lynch +211964,Christopher Stadulis +7113,Stanislaw Igar +1668476,Dallas Raines +37445,Joyce Mackenzie +14911,Penny Marshall +55174,Marcus Thomas +44794,Miguel Fernandes +111584,Paul Lees +1897190,Dolores Robinson +106104,Russell Wade +1136765,Hsiang Mei-Lung +1177308,Maxime Tremblay +1458223,Count Stefenelli +1120191,Thapelo Mofokeng +1364105,Rosalind Byrne +1122585,Sachiko Mitsumoto +21532,Samuel Ball +6775,Angelo Nazzo +10336,Kiriakos Katrivanos +17113,Stephen Winter +60961,Jared Sandler +149012,David DeHart +63140,Theo Landey +1188780,Amanda Talbot +27500,Marylu Poolman +20672,Antoine Chappey +40178,Phil Silvers +3000,Werner Krauss +23125,Martin Moeller +1128108,Mario Schiano +997465,Fateh Lohani +160452,Brian Frishman +9308,Jennifer Syme +73234,Alex Karras +134905,Howell Evans +81070,Joyce Krenz +1692549,Teemu Heikkinen +1035639,Mickey Rentschler +129660,Lev Friedman +120704,Kane Richmond +105089,Michael Delano +6238,Juliet Stevenson +8977,Craig T. Nelson +1726163,Ruth Volner +62050,Paige O'Hara +1223998,Omar Avila +120537,Murray Kinnell +13297,Millard Mitchell +160263,Tom Smothers +189993,Gregg Vance +21909,Ekin Cheng +1444507,Michael Zile +1646992,Duffy Gaver +119708,David Francis +1037957,Armando Migliari +210620,Bruce Forsyth +1720056,Mohamed Hocinerouhi +103909,Effie Laird +1572036,Nicole Stuart +16936,Stan Shaw +56734,Chloë Grace Moretz +16350,Jean-Pierre Kalfon +85350,Loene Carmen +1470068,Lisa Marcos +1717647,Ross Berkson +1897169,Charmin Lee White +2111,Rosanna DeSoto +94110,S.Z. Sakall +1505473,Berenice Sand +1780604,Matthew Clucas +1114923,Alex Giannini +130947,Emil Wolk +162250,Barry Stanton +77736,Armelle +16583,Voyo Goric +17261,Neran Persaud +105834,Velislav Pavlov +3292,Nicholas Hoult +21446,Serge-Henri Valcke +1468974,Auguste Prasch-Grevenberg +101556,Maurizio Mattioli +1456505,Mark Grinage +1468784,Ann Bupp +107314,Margot Hope +127140,Aaron Wood +18627,Paul Morrissey +63763,Andrine Sæther +1680753,Carmen Getit +1008729,Melissa Lawner +129274,Angelica La Bozzetta +544084,Peter Ketnath +123854,Yoshi Katô +134676,Shôtarô Hanayagi +8498,James Anderson +141069,Harry Schultz +75323,Brandon de Paul +79708,Lucia Mastrantone +1064876,Nancy Allison Wolfe +31388,Naím Thomas +65893,Anna Kyriakou +167109,Marlon Young +86006,Paul Eiding +37050,Emma Kennedy +55744,Ellen Baker +48968,Ben Pullen +1801730,Miguel Delgado +164630,Sam Hennings +97331,Ralph Cotterill +928728,Philip Henn +24464,Philippe Khorsand +124882,Ralph Dunn +1037730,Andrew Chalmers +37936,Christina Milian +73589,Johnny Whitworth +27554,Alan Bates +1291802,James Blaine +51609,Gemmenne de la Peña +9640,Haley Joel Osment +57387,Leo Fitzpatrick +588260,Hal Walters +21047,Jonathan Sadowski +138251,Dodie Marshall +120544,Charles Williams +16896,James Garner +72731,Nick Cheung +6009,Pamela Hayden +81689,Lucy Lee Flippin +22113,Judson Mills +95296,Billy Halop +554612,Akio Nakamura +26157,Harold Pinter +294586,Christopher Kadish +937844,Cheung Chung-Kwai +100995,John Kerr +1178193,John Pirruccello +582056,Anna Palomo-Díaz +56112,David Lee Smith +27966,Oscar Levant +58371,Brandon Jay McLaren +1375346,Chaon Cross +149013,Joshua Todd Diveley +1074680,Peter Hric +268997,Coraly Zahonero +74573,Robert Pine +1728633,Jan Georg Effler +106576,Edwin Mills +1093411,Linda Delapena +148351,Michiko Hada +1197288,Franz Stein +1575504,Nadia Rowsell +65019,Lane Smith +76031,Veronica Lauren +4970,Ruth Gordon +120583,Jon Bradford +49821,Helen Lloyd Breed +4166,Isabelle Carré +117358,Patrick Cassidy +55931,Stuart Charno +583743,Tom Marshall +1208031,Mathew McCue +37034,Rick Kavanian +1215275,Michael Troughton +1195357,Charles Duke +52814,Janet Bartley +52399,David Barrash +28744,Jacqueline McKenzie +6567,Rex Robbins +29125,Louis Ralph +25103,Jean-Claude Deret +197315,Drake +20088,Jolene Purdy +153818,Christine Chatelain +1136499,Edison Flores +1661585,Madeline Balmaceda +1043528,Arturo Martínez +1200401,Setsuko Kawaguchi +22383,Franco Nero +1712380,Sekaryongo +550398,Luana Stoica +20644,Aasif Mandvi +83952,Jan Hartl +1232670,Elizabeth Bower +129485,Delores Taylor +78336,Nick Vallelonga +1680267,Filippa Franzén +940950,Steve Bassett +11193,Popeck +133871,Cyril Smith +1623,Sihung Lung +50143,Donevan Gunia +1183500,Xu Xi-Yan +133628,Tracey McCall +157673,Catherine MacNeal +543335,Manuel Bronchud +141693,George Lindsey +103483,Sandra Dorne +1318654,Renn Woods +60785,Johnny Sanchez +1120475,Akimoto Tsubasa +26973,John White +16318,Mario Brega +1433425,Carlie Taylor +1173216,Chiu Chi-Ling +10237,Julia Jäger +130494,Julia Faye +91438,Janet Harper +3065,Jack McElhone +1247296,Nobuto Okamoto +8978,Spalding Gray +131480,Helen Sage +151864,Roy Glenn +113792,Jin Song +126583,Alan Gelfant +56145,Keith Coogan +1565328,Thenna Bjørn Hansen +29659,Duncan Lamont +578093,Franck-Olivier Bonnet +1201353,Peter Corrigan +99039,Ron Fazio +1507605,Violet Columbus +33855,Guy Usher +37910,Camilla Spira +19933,Sophie Quinton +80446,Terrell Tilford +1736676,Andy Gray +81561,Ron Weyand +1041895,Daniel Rousse +1088566,Alexander Leftwich +1530759,Harli Ames +1089427,Henrietta Clemett +91982,Stan Gottlieb +1269763,G.D. Spradlin +157169,Christopher Allport +25808,Aharon Ipalé +1569422,David Milford +1832,Joe W. Davis +17653,Mario Gallo +1364449,George Stevens +134141,Robin Hooper +6907,Annie Corley +552643,Otome Tsukimiya +1133442,Gary Neilson +39961,Luminița Gheorghiu +45456,Irène Hilda +62846,Charlie Dell +13746,Eberhard Kirchberg +521717,T.E. Russell +77158,Irene Dunne +14725,David Amram +1268919,Su Ying Huang +15537,Leonard L. Thomas +42011,Itandehui Gutierrez +1661599,Pamela Everett +182574,Brooke Alderson +552220,Henry Morales-Ballet +81293,Dorothy Peterson +29368,Michael Greene +85990,Walter Baldwin +1396646,Zi Wei +1163671,Ian Sharrock +197537,Jeremy Applegate +117735,Victor Varconi +26996,Patricia Heaton +18686,Holly Hunter +1077833,Christian Bergner +1422179,Joe Gilbert +153127,Dorothy Gordon +1609638,James Ryland +94776,Linda Cristal +1712688,David Gilbert +218947,Martha Wainwright +1224351,Adrian R'Mante +39000,Athene Seyler +91492,Lorraine Bayly +987934,Tip Boxell +101741,Donald Murphy +3831,Jean-Pierre Melville +1509452,Dana Walsh +78696,Elizabeth Tiu +1118085,Brian Patrick Wade +94939,Fernand Charpin +1243622,"Albert Reed, Jr." +52971,John Abraham +589208,Rolf Sohlman +11716,Matthew Lawrence +551671,An-an Hsu +11833,R. Nelson Brown +97980,Thelma Todd +1127145,Camille Yarbrough +19936,Michèle Moretti +93897,Heather Angel +1711,Mackenzie Crook +29124,Wolfgang Zilzer +121394,Tien Feng +14737,Doug Savant +114058,Christopher Collet +10584,Heidi Klum +1352513,Larissa Kouznetsova +71535,Tom Kane +1176953,Nina Arsenault +1609028,Richard Cowl +48163,Sirena Irwin +78778,Alex Gerry +13906,Francis Lederer +61029,Chris Furrh +56733,Danny Mora +123722,Peter Hobbs +38004,Mira Banjac +24819,Gary Raymond +69471,Olegar Fedoro +40092,Twiggy +161724,David Westberg +1174692,Xu Xiang-Dong +9095,Eddie Boland +1098670,Dana Dietl +76986,Greta Lind +219738,Paul Kemp +1612555,He Sheng-Wei +3211,Dale Dye +94695,Olivia Lee +1830687,Artemis Pizarro +52063,Al Cliver +109434,Huang Xiaoming +5891,Yenny Paola Vega +1195490,Elisabeth von Koch +825,Stacy Keach +1061111,Bill O'Neill +62419,Stanley Fung +552667,Taiji Kodama +169086,Fiddle Viracola +33533,David Rasche +63137,Mathew Zajac +155540,Benny Nieves +37607,Géraldine Danon +23211,Maile Flanagan +61634,Nina Liu +562655,Patricia Hirschbichler +10798,Groucho Marx +130377,Sonia Darrin +47799,Nicolas Pignon +87563,Scooter Stevens +14823,Andrew Faulds +10380,Jim Haynie +100589,John Sutton +490982,Elizabeth Ingalls +50975,Johnny Crawford +1176362,Louise Franklin +946144,Annie Gorassini +553107,Yoko Yamaoka +12833,Edward Burns +1011253,Jesse Caron +86128,Susan Egan +61185,Jackie Burroughs +83242,Ivo Velon +71167,Tabitha Lupien +74612,Malinda Williams +177596,Patrick Pearson +11829,Sara Botsford +1891585,Jalil Nazari +1817,Linda Cardellini +79423,Leigh Hill +175002,Fred Dennis +1536725,Salvador Lozano +1503025,Stephanie Rizzo +48664,Nino Kirtadze +91655,Claire Carleton +1741403,Pete Ohnegian +191228,Victoria Justice +553437,Carrie Jean Yazel +1252520,Danielle Watson +1250,Alexander Armstrong +85386,Irina Björklund +225,Ashton Holmes +12324,Otto Wernicke +1254435,Peyton List +156605,Mark Sivertsen +10656,Mike Bugara +75899,Laurie Dobson +94895,Michael Sargent +1547818,Duke Fishman +33093,Pauline Jameson +438650,Rita Verreos +2670,Priscilla Lane +7636,Fred Sadoff +1342200,Tommy Baker +33656,Heather Matarazzo +1752801,Wally Michaels +29522,Ronald Colman +1778259,Jacob Greenblatt +1392751,Nicholas Haze +109759,Napoleon Walls +119521,Conor O'Farrell +60022,Colleen Dunn +61012,Fly Williams III +4963,Woody Strode +29775,Bobby Hosea +583985,Anja Schüte +99354,Danny Smith +103448,Barbara Jo Allen +117028,John Verros +31513,Dianne Reeves +8560,Paulo Lins +84639,Joe Downing +43857,Helen Foster +14903,Gene Pyrz +120445,Colin Kenny +133123,Tom Kempinski +63608,Jason Watkins +24556,Donald Randolph +17756,Samuel S. Hinds +1210833,Ryôsuke Koshiba +13820,Barry Fitzgerald +146499,Gérard Chambre +97666,Juan Cazalilla +10987,Verne Troyer +132982,David Hartman +141132,William Gillespie +10735,Gwen Taylor +7399,Ben Stiller +24811,Victor Buono +1073625,Brendan Murray +1206234,John Michael Alvarez +55653,Carl Gabriel Yorke +81192,Stephane Gauger +54168,Anne Marivin +29699,Ricky Tomlinson +4857,Marc Turtletaub +1400041,Max Reid +1671852,Leon Farey +75121,Steve Bastoni +7498,Eion Bailey +1357958,Clyde McAtee +74091,Makoto Shinkai +1348451,Hakan Turan +96250,Kent Taylor +1878509,Martii Coles +1674982,Zoran Krzisnik +1120220,Jody Abrahams +1132942,Mensáros László +61304,Jessie Flower +90160,Seiko Takuma +138236,Thomas Barbour +28476,Griff Rhys Jones +117300,Arnold Diamond +543835,Alain Cauchi +29363,Robert Middleton +76188,Tony Barry +223822,George McKnight +1609264,Javan Kaiama +86184,Tom Pedi +5274,Patrick Bauchau +13343,Lawrence Grant +55725,Randy Travis +1154165,Bruce James +1839755,Mário José Paz +90545,Jean Butler +52826,Ed 'Bim' Lewis +100600,Deborah Harmon +10191,Lana Wood +84239,Angel Caban +7180,John Candy +1016054,Gustav Wiklund +3589,Monique Dury +8183,Kathleen Quinlan +96163,Ernest Severn +1741405,Skip McClendon +1236853,Lisa Love +146213,Olga Grumberg +974329,Zvee Scooler +53203,Laurent Gamelon +70903,Marc Warren +180467,Rad Daly +1593822,Lee Murayama +1322980,Léon Bary +152682,Buddy Lester +134727,Arawat Ruangvuth +53936,Melonie Diaz +96372,Tom Clegg +1979,Kevin Spacey +1665568,Joshua Rubin +34759,Sterling Holloway +53490,Michael O'Hagan +211586,Chike Chan +1808423,Cécile Sanz de Alba +141793,Larry Spinak +1580029,Vladimír Hrbek +77081,Gloria Grahame +56252,Erik Stolhanske +34457,Ian Gomez +54324,Valérie Bonneton +127488,Stephanie Zimbalist +80292,Glenn Quinn +1212032,Bette Ford +939692,Derek Rydall +80599,Penny Santon +113906,Valri Bromfield +89830,Arkie Reece +231926,Thomas Hanzon +62838,Anna Becker +164036,Mark Zeisler +4795,Florian Lukas +21089,Bruce Greenwood +1325457,Stefanie Ford +6661,Inga Landgré +129551,Molly Picon +142765,Sam Lloyd Sr. +1740807,David Moses Pimentel +11889,Mark Moses +551749,Yoshihiro Katô +2878,C. Thomas Howell +1386353,Blaine Cartwright +1177732,Michael Chong +11047,Cecilia Frode +104004,Oleg Bernov +1670560,Francis X. Bushman Jr. +1529145,Michal Hofbauer +97698,Michelle Bauer +1748,William Shatner +87403,Billy Million +18643,James Franciscus +1216598,Ted Eccles +42022,Javier Escobar +53601,Bobby Slayton +1037918,Francesca Moriggi +5725,Goran Visnjic +967,Iain Andrews +162542,Kathleen Garrett +39461,Marc Mazza +56910,Susie Essman +98991,Elske McCain +76185,Rhys McConnochie +1236171,Tayler Kane +59299,Ben Crowley +1416970,Lo Hung +7455,Kichijirô Ueda +85424,Mark Doerr +61428,Matthew Josten +1537644,Antonín Pokorny +1826585,Ryan Xavier +1235485,Robert Thurston +552518,Isao Yatsu +4489,Steve Oedekerk +64674,Mike Dopud +1029339,Goro Ibuki +47486,Anthony Smee +10934,Michel Legrand +27552,David Eigenberg +167736,Allison Dean +39800,June Duprez +543193,Vanessa Williams +1537388,Gustav Opocenský +590020,José Ángel Espinosa 'Ferrusquilla' +1199334,Micky +1781812,Bilal Bishop +12311,Jack Kelly +15185,Frédéric de Pasquale +22615,Sam Presti +59175,Blake Lively +44962,Paul Costello +40978,Larisa Oleynik +27559,Matthew Edison +7304,John Gavin +143330,Adam Lamberg +143674,Igor Sergeev +184054,Sydney Brown +119713,Bruce Vilanch +1660164,Lesley Ward +504953,Michael Sullivan +17769,Laura Harrington +170348,Rae Allen +33011,Rick Zumwalt +85936,Walter Hudd +23342,Hilmar Thate +34715,James Nesbitt +177800,Andrea Palma +1393352,Stephen Lee Wright +1214322,Darrin Brown +79880,Stephen Pye +85648,Eros Pagni +23709,Joan Plowright +25308,Vanessa Angel +554584,Paul Buckby +2936,Ted Billings +107914,Lena T. Hansson +203400,Chris Cardona +547987,Seiko Nakano +51461,Alana Locke +3196,Juliette Lewis +163418,Kevin Pinassi +29959,Alfred Paget +1844804,Peter Pamela Rose +84211,Valerie Breiman +143324,Katya Virshilas +58150,Stacey Dash +1184115,Louis Mason +79696,Elena Carapetis +28870,Karl Pruner +110107,Ellen Anne Buljo +39601,Howard Keel +1738562,John Pennington +1007796,Li Bin +21175,Michel Blanc +174943,Paul Desmond +27425,Constantine Gregory +1326530,François Viaur +1655538,Henry Shapiro +17779,Eamonn Owens +5257,Billy Nelson +205222,Mark Wakeling +120348,Hideo Murota +113759,Morton Lowry +23586,Joe Flynn +1138971,Dominique Rocheteau +134908,Dafydd Hywel +1568541,Christian Christiansen +552094,Saul Priever +235613,Stéphane Guillon +1507117,Susan Sosa +132300,Edith Diaz +1120188,Grant Preston +200,Nancy Cartwright +1752337,Chris Andrew Robinson +3907,Harve Presnell +946666,Marco Poulin +1011213,Juanita Quigley +1226471,Tim Maculan +33764,Yûzô Kayama +30241,Helen Mack +47797,Fred Ulysse +139926,Ilka Chase +33271,Rasool J'Han +1386343,Jonathon Pelletier +1127061,Akinori Ando +105633,Michel Ray +14730,Angela Lansbury +35236,Hunter Parrish +55435,David Allen Brooks +1037925,Francesca Villa +1541923,Don Anderson +44366,Filip Peeters +85642,Davor Dujmović +1276,Patricia Clarkson +148764,Marc Didden +78958,Chris Peters +5372,Ron Leibman +130917,Johanna Baer +64826,Isabel Glasser +1550298,Jean Vanderwilt +1859,Christiane Paul +125810,Peter M. Thompson +1896872,Peter O'Mahoney +184581,Hamish Linklater +109777,Eva Novak +76506,Steve Butow +28412,Rebecca De Mornay +59778,David Nelson +1245030,Micael Borges +88622,B. J. Ward +83052,Linda Thorson +97435,Peter Gevisser +44441,Ellen Umlauf +76834,Robbie Magasiva +5403,Richard Basehart +1467335,Helen St. Rayner +165994,Christine Kellogg +12656,Joanne Whalley +571516,Yuen Yat-Choh +23961,Claudio Amendola +41901,Roselyn Sánchez +1554774,Yip Ha-Lei +37432,Robert Wisden +26993,Richard Epcar +39166,Maurice Poli +158020,Shawn Colvin +1234315,Nicholas Rose +1296746,Evangelos Grecos +50781,Franca Bettoia +82636,Luke de Woolfson +552655,Kinji Omino +239010,Billy Lau +11638,Ernst Busch +1766032,Charles Gibb +36039,Adrian Zmed +979671,Thanh Nguyen +1857450,Robert Clapperton +35779,Boman Irani +139855,Joël Dupuch +96975,Halil Ergün +41465,Robin Thomas +19383,Michel Bompoil +1729246,Ramón Sánchez +55340,Paul Rattray +1209710,Javan Tahir +13656,Amanda Wyss +59582,Mekdes Bruk +44948,Linda O'Neil +7502,Ernest Borgnine +19208,Matt Malloy +1366382,Mila Stromboni +15202,Peter Bowles +221950,Molly Schade +559660,Frank Gerrish +146859,Erni Mangold +553106,Tadamichi Tsuneizumi +1733428,Jack Claxton +80759,Lisa Arrindell +16907,Gerard Kelly +57133,Paulo Costanzo +57428,Michael Landes +1420993,Hector V. Sarno +76309,Khaled Abol Naga +1650,François Truffaut +111513,Yvette Nicole Brown +980,Vinnie Jones +24743,Simon MacCorkindale +31882,Carlos Riquelme +1351367,Ludo Busschots +30489,Karen Austin +10660,Tanya Roberts +97352,Laurie Bird +13263,Woodrow Parfrey +18056,Koji Yakusho +5795,Leon Askin +29465,Jack Langedijk +589217,Wallis Clark +562708,Peter Frampton +11482,Tony Darrow +97284,Henri Letondal +1502500,Myung Kue Kim +552022,Figge Norling +134872,David Cavendish +42021,Marco Antonio Argueta +1371296,Tom Greer +79155,Zhang Lei +11663,Patrick Fugit +99217,Houseley Stevenson +14584,Bill Bambridge +1243825,Josh Meyer +98357,Pilar López de Ayala +38528,Gilles Pelletier +1800119,Ward Ohrman +84546,Tom DeLonge +1269426,Kinji Nakamura +59136,Héctor Alterio +12674,Siu Ping-Lam +1661604,Michael O'Steen +25689,Liliana Komorowska +36011,Farina Brock +63661,Jenny Mollen +163774,Reed Birney +50967,Doug McClure +16663,Delia Sheppard +1493006,Mirhadi Tayebi +51517,Jerry Houser +69182,Peter Steen +558289,Jack Dean +1402625,Rrenford Junior Fagan +69120,Eric Nenninger +19307,Suzanne Krull +67230,Bill Thompson +132992,Frances Ruffelle +1142516,William Graeff Jr. +9928,Ivan Desny +86041,Delilah Cotto +1741406,Derrick Lassic +94512,Niki J. Crawford +1633323,Phil McGraw +1004868,Romain Deconinck +12373,Paul Hartmann +148401,Olin Francis +8659,John Terry +933722,Kae Araki +4327,Brian L. Keaulana +127032,Iron Eyes Cody +211413,Mark Donovan +21250,Scott Getlin +88911,Johan Ulveson +16063,David Frankham +101229,Lugene Sanders +1327674,Dorothee Hartinger +1624033,Bruce Khan +1537395,Milica Kolofiková +1372457,Daniel Zettel +89744,Ferdinand Gottschalk +162539,Nick Taylor +93663,Kellie Martin +42731,Anthony Guidera +150202,Jill Sobule +1013177,Anna Demetrio +1533,Andie MacDowell +1889111,Giorgos Xidakis +56471,Katy Murphy +135197,Mickey Finn +555195,Ritsuko Amano +2137,Benito Martinez +1469588,Fred Rapport +166890,Anthony Alessandro +1282688,Marian Hailey +64778,Nancy Everhard +1671460,Luanne Robb +1812173,Blaise Loong +939869,Donna Evans +170567,Abel Fernandez +1392608,Milton R. Gipson +100427,Geoffrey Copleston +24589,Paul Mercurio +1340627,Nicky Aycox +100654,Bruce McGuire +564300,Federico Veiroj +14929,Edgar J. Scherick +96901,Joe La Due +270080,Ludovic Bergery +80441,Amy Wieczorek +12791,Hugh Dancy +1333583,Liam Carney +1692552,Lassi Lindquist +65806,Marnie Alton +1229806,Melanie MacQueen +106092,Marcelle Corday +133855,Carl W. Crudup +25166,Dora Doll +1330739,John Medici +31440,Kim Stanley +1503030,Nancy Anderson +101611,Rita Montone +583571,Sushma Unnikrishnam +100047,Mary Pickford +3349,James B. Harris +505,Camillia Sanes +148419,Eric Mayne +425,Dan John Miller +2277,Loyd Catlett +1616856,Guo Jia-Qing +153486,Paul Genge +105771,Carlos Lucas +1765924,Reno +975134,Nancy Moore Atchison +81137,Loredana Groza +3650,Carlos Lozano +1710214,Mircea Anca Jr. +39061,Maria Machado +93381,Michael Segerström +49551,Aloma Wright +216716,Wendy Liebman +114529,Meri Welles +201736,Matthew Lemche +29685,Kurt Fuller +4604,Theresa Randle +1076199,Timothy Daniel Furst +54819,Rachael Crawford +1630463,Brett Berg +234040,Dana Golombek +1221198,Bob Okazaki +52125,Maria Socas +133277,Frank Mayo +155551,Reggie Montgomery +86370,Joel Fluellen +16754,Basil Wallace +36318,Françoise Arnoul +230880,Masaru Hamaguchi +83876,Kristýna Kohoutová +137111,Kathleen Cody +33286,Matthew Settle +600741,Al Hill +48327,Freddie Frinton +30674,David Hutcheson +85906,Neel Rønholt +7320,Liz Smith +1209708,Vladimir Kubr +1011148,Leticia Huijara +1412679,Charles Brewer +1317731,David Gibbs +1757131,Lorenzo Pedroni +51957,Roger L. Jackson +42565,Lorcan Cranitch +86831,Marguerita Sylva +101847,Lance E. Nichols +120773,Arthur Stone +65262,Lawrence Chou +14306,Googie Withers +1253648,Jeff Ward +41246,Lee Purcell +90163,Ben Piazza +153460,Robert H. Harris +78393,Nicolas Beauvy +452,Margo Martindale +134613,John Dennis +36631,Randall Batinkoff +1247858,Helena Fernandes +77438,Ashley Roberts +113208,Melissa R. Stubbs +97775,Donald Cook +95346,Hideko Yoshida +108476,Mikko Leppilampi +112344,Svetla Vasileva +1415787,Robert Hung Law-Bat +1209839,Harry Walker +1271047,Adda Gleason +1781159,Kali R. Harrison +44353,Barbara Bold +17416,Chuck Loring +79858,Andrew Melville +1196053,Charles Frank +81812,Jean-Marie Bigard +58169,Vlasta Vrána +928730,Crystal Dobson +19463,Harry Andrews +1321651,Kyle Allatt +553453,Garry Bassin +214521,Peter Waddington +173841,Michel Etcheverry +61641,Bic Runga +20178,James Kirchner +1180940,Daniel Emery Taylor +27440,François Périer +14343,Rene Russo +60804,Jarno Laasala +1218880,Alison La Placa +1046574,Suchita Ray Chaudhury +11891,Ivan Kane +23740,Trevor Fehrman +111067,Predrag Ejdus +9281,Elizabeth Banks +17403,Mike Judge +47742,Clare Holman +1622612,Crystal Michelle +1544346,Filipa de Almeida +158670,Marc Zuber +1619,Chow Yun-fat +552409,William Devlin +161764,Bill Couch +88649,Bob Steele +1246621,Jackie Loughery +51802,Joshua Ballard +1894,Scott Caan +39755,Marianne Hoppe +51857,Tim Meadows +154182,Iqbal Theba +76384,Sara Sommerfeld +1737,David Patrick Kelly +72455,Harumi Sone +28869,Mike Realba +1471388,George F. Calger Jr. +102200,Peg Shirley +1237213,Joshua Bell +1372790,Erica Beck +27687,Shane Callahan +23628,Eriq La Salle +36915,Pierre Maguelon +1464468,Charles Warrington +1121643,Makoto Kobori +11864,Ryan Phillippe +1265402,Andy Nolfo +48516,Hans-Peter Abts +1797594,Kapil Dubey +110310,Tatsuo Matsumura +1434988,Jennifer Brown +105290,Yvette McClendon +3002,Ken Wahl +94400,Sid Melton +1235368,Joe Maffei +91718,Mathias Sercu +1168315,Max Lee Chiu-Jun +50968,Carlos Rivas +1560864,Josey Scott +92706,Slash +34504,Wilton Graff +103080,Paul Marco +1661623,Shelley Frankel +1122326,Mariah Inger +25790,Adriana Ambesi +1203802,Sachiko Mitani +72932,松田龙平 +56152,Kari Wuhrer +141,David Carradine +11664,Zooey Deschanel +38337,George Hearn +106089,Wendy Barrie +19587,Rumi Hiiragi +1173200,Dung Chi-Wa +137169,Ryan Malgarini +89799,Jello Biafra +1296372,P.T. Horn +940339,Lau Ching-Wan +132447,Rosario Pardo +1744176,Chris Marley +113590,Herbert Flack +12357,Robert Nichols +1416139,Michel Koscielniak +59213,Jeffrey Anderson-Gunter +1381584,Danny Hoy +11857,John Gielgud +19200,Carrie Finklea +553445,Shôtarô Kusumi +36137,Nectar Rose +1673749,William E. Marks +134249,Livio Badurina +1198730,Emily Wachtel +1674990,Bruno Mourani +17072,Sam Douglas +1336109,Victoire de Koster +80461,Yu Jun-sang +168095,Michel Petit +1224878,Angelique Naude +1856,Ralph Herforth +7368,Ernesto Gómez Cruz +126679,Diana Lewis +85042,Phyllis Thaxter +95788,Susan Anspach +1579,Maggie Gyllenhaal +10361,Raymond J. Barry +96930,Claire Nebout +2636,Alfred Hitchcock +13111,Benny Moshe +154287,Lynne Marta +59199,Joan Heney +61607,Adam LeFevre +1441185,Rochelle Hogue +37042,Ann Magnuson +555193,Noboru Hamada +1583087,Terey Summers +543087,Carlo Duse +61170,Joanne Rodriguez +1780580,Jim R. Coleman +1123187,Paul Chowdhry +1583720,Joseph Moynihan +32192,Olaf Hytten +109071,Martin Garner +1342790,David Lloyd +1485027,Mario Conocchia +550266,Jean Rougeul +1781329,Tony Galtieri +30115,Frank Ferguson +75638,Bruce Bruce +15098,June Foray +6413,Danny Huston +24682,Robert Powell +1170486,Cliff Fields +11703,Kerry Washington +18286,Nona Gaye +93625,Lewis Martin +1076195,Paul David Magid +69669,Neil Diamond +130890,Nathalie Boutefeu +63372,Christa Brittany Allen +17402,Ron Livingston +554452,Zdeněk Vencl +136503,José Gras +92907,Montagu Love +429401,Ho-Kwan Tse +102726,Leola Wendorff +5828,Reta Shaw +1853188,John Stroehman +1187578,Zaa Nkweta +156755,Monica Mikala +182092,Patrick Drury +173810,Sayed Badreya +52847,Joy Bryant +1680761,Shanell Woodgett +60255,Jake T. Austin +980296,Grace Hayes +1769157,Tom Kubiak +131083,Vincent Marzello +1188868,Margaret Heald +1072,James Tolkan +18980,Katey Sagal +29505,Bill Fraser +113905,Ann Jillian +554330,Lee Seung-Shin +8926,Barbara Jefford +2302,Adam Fogerty +67199,Stephanie Farrow +11008,Rebecca Romijn +955108,Florence Shirley +31115,Kyle T. Heffner +1526989,Roly Serrano +48582,Betty Petristy +30067,Thomas Downey +33339,Jody Racicot +932263,Gilbert Fallman +37343,Gudrun Landgrebe +1336664,Jad Mager +579138,Valsø Holm +73569,Dana Eskelson +25786,Rossana Di Rocco +59568,Fredro Starr +137029,Ren Osugi +40173,Robert Morse +55433,Lari White +3398,Kim Bodnia +8496,Paul Fix +1537729,Cosmo Sardo +1089441,Deby Wightman +990575,Suzette Harbin +945719,Chad Fernandez +1236895,Tom Nardini +1896857,Máirtín de Cógáin +2974,Roger Yuan +26563,Ronald Nitschke +6168,Austin Pendleton +1591060,Rico Chu Tak-On +74633,Jake Muxworthy +1117062,Atsushi Ida +1806055,Hossein Moharami +60291,Denise Galik +87047,Derrick Sanders +928727,Luke Cornell +224459,Livio Galassi +78779,Bob Clayton +1073485,Sean Else +114961,Olan Soule +40939,Clément Sibony +1872744,Steven Shayler +6018,Daniel Duval +239794,Jamal Joseph +104758,Niall O'Brien +125843,Robert Light +1277506,Christopher Tierney +4886,Norman Reedus +96381,Ivan Trojan +1077849,Erik Petersen +76135,Richard Manuel +5705,Sylvia Kaler +204606,Ben Newmark +14517,Tim Holt +1075016,Amanda Parsons +120758,Phyllis Brooks +41153,Ugo Bologna +552517,Hiroyuki Yokoo +1330752,Dave Lapommeray +58474,Anthony Russell +89011,Jay Wilsey +11705,Michelle Monaghan +10780,Serena Scott Thomas +76497,Brook Yeaton +147491,David Shiner +15978,Charles Drake +2790,Marietta Canty +12500,Patricia Hitchcock +1039125,Romeo Fabian +1287659,Darrell Bryant +120755,Michael Visaroff +52828,Joanne Dunn +558098,Pamela Moller +100650,Francis X. McCarthy +16792,Richard Leaf +51457,Dawn Dininger +122974,Marceline Day +50880,Robert Beltran +105788,Lisa Lampanelli +199298,Trevor St. John +52891,Tom Burke +75786,Hywell Williams +91404,Eric Breker +7032,Lorelei King +1674924,Eugene Geylik +88569,Edna Best +1557513,India Neilan +99745,Bob Bragg +938750,Terri Teague +1109703,Michael Clark +1802668,Varvara Dvalishvili +125807,Philip Loeb +97705,Stuart Paul +1661601,Dana Moore +25663,Thomas Brodie-Sangster +985305,Arthur Macrae +1704723,Chris Weihl +1453555,John H. Tobin +1163193,Reid Kilpatrick +110472,Chad Willett +52898,Sun Li +230950,Mickey Hardt +1386113,Katie Cockrell +141597,Valerie Allen +103861,John Altamura +11911,Sarah Dampf +83133,Milton Reid +2469,Gerda Stevenson +66101,Michael Boatman +35090,Billy Green Bush +100113,Claire Richard +1651540,Steve Bickford +2549,Barnard Hughes +1616016,Michelle Bernard +15112,Tom Selleck +227804,Suki Kwan +79105,Matthew Dyktynski +124877,Julie Budd +24241,Sara Stockbridge +11806,Julia Sweeney +74193,Sam Lee +89042,Susanne Blakeslee +60166,Bryan Ling +90075,Cecilia Parker +119774,Toshi Shioya +138874,Joy Thompson +1296930,Ruth Chiang +62932,Jemima Rooper +589761,Joey Sagal +1405970,Park Jeong-Woo +6471,William S. Burroughs +44221,David Sutcliffe +1378394,Lillian Watson +53578,Elliot McCabe-Lokos +35970,Patrick Ligardes +103795,Roberto Contreras +95563,Walter Reed +1171661,Andre Stolz +5402,Giulietta Masina +153573,Virginia Ann Lee +1316260,Françoise Hubert +1781718,Douglas J. Aguirre +97598,Alex Van +131952,Filippo De Luigi +147156,Gaetano Aronica +67917,Patrick Wymark +79623,Noël Burton +1651685,Collette Cooper +58918,Ceit Kearney +8897,Michael Tucci +100042,Charles Croker-King +1101309,David Pérez Espinosa +1502549,Ginger Marin +59089,Adriana Yanez +54598,Jake Siegel +1281109,Franco Ukmar +66095,Gerome Ragni +62837,Chandler Hill +12270,Michel Serrault +20276,Constance Towers +6071,Sasha Roiz +49025,Samuel Le Bihan +1229181,Helen Schlesinger +1121439,Paul Morley +1753359,Chia-Ching Niu +79394,Claire Oberman +15385,Alida Valli +1409205,Mary Hay +1444512,Tommy Christensen +32726,Frederik Gullits Ernst +1370651,Francesca Hunt +201569,Ellis Dale +1027429,John 'Skins' Miller +1219831,Julie Ariola +1196242,James B. Schwartz +53085,John Cullum +39039,Rex Trailer +20566,Katie Condidorio +1362948,Jane Moffat +27584,Julie Carmen +1277204,Leo de Pokorny +34182,Kathleen Lockhart +1504833,David Clement +148565,Connie Leon +91259,Michael St. Clair +2882,Diane Lane +82720,Michael Flippo +189756,Martin Pfefferkorn +32599,Justin Hagan +198472,Matthew Moore +61111,Tara Subkoff +1022040,Florencio Amarilla +1905155,Eldon Burkett +1075086,Keith Brava +1233888,Shannon Walker Williams +1091279,Rolly +1458832,Kristine Howarth +1221086,Susan Yeagley +13688,Karin Viard +2441,Tom Hollander +25527,Jason Connery +62823,Hannah Schick +155921,Tim Quill +22123,Jordana Brewster +95797,Vonte Sweet +9778,Ice Cube +14782,Andrew Robinson +123923,Réal Bossé +1592619,Zofia Borucka +55851,Johanna ter Steege +1160676,Louis Lewyn +131934,Bre Blair +26094,Barry McGovern +1368769,Betty Bouton +1117049,Serge Basso +1980,Mary McCormack +96061,Tom Wilson +45106,Peter Carpenter +44304,Walfriede Schmitt +1773099,Chelsie Amber McEachnie +21658,Ryoko Hirosue +103579,Amy Barrett +1444499,Tom Frederiksen +12079,Kelly Asbury +52601,Sean Hayes +194265,Roy McAdams +1043275,Ljuba Tadić +1525312,Tom DiFilippo +1286734,Ez Perez +124478,Aya Hisakawa +9924,Molly Peters +94944,Paul Escoffier +91724,Joyce Hyser +11146,Elizabeth Deering +58965,Alyson Stoner +13789,Richard Barthelmess +3087,Robert Duvall +1853217,Paul Pelletier +59183,Sarah-Jane Redmond +60422,Gabriel Spahiu +119227,Ellen McElduff +1095793,Jon Fong +17249,Carolyn Choa +1317410,Shirley Dixon +111180,Nicky Rebello +15850,Tony Brubaker +65127,Adamo P. Cultraro +96845,Freark Smink +1240893,Elliot Lawless +985061,Daphne Anderson +148525,Harry Bowen +131018,Yôko Katsuragi +105804,Alan Carney +60795,Richard DeDomenico +14893,Linda Kash +5342,Mike Nichols +116278,Brian Tee +1619409,Cassie Silva +135394,Helen Gibson +66653,Gregg Daniel +153389,Barbara Wilkin +6574,Clancy Brown +82791,Valerie Tian +1311608,Mandus De Vos +1368459,Ray Wineteer +81058,Martha Gibson +12813,Lara Guirao +78293,June Rodgers +1619939,María Teresa Ortega +81693,David S. Cass Sr. +40380,Don Dubbins +168456,Brendan Beiser +1799817,Robert Phillips +18259,Jason James Richter +24199,Jennifer Echols +119377,Patrick Braoudé +1206236,Richard D. Clark +12210,Jacek Koman +118489,Walt Dohrn +1275917,Van Oanh Nguyen +75779,Tonderai Masenda +1788896,Keny Long +222257,René Bouloc +1704734,Benny Tjandra +74736,Magnus Härenstam +83056,Marvin Braverman +11030,William Alland +30417,George Zucco +56902,John Witherspoon +1013092,Jennifer Kendal +1217850,Michael Yarmush +557377,Igor Chernevich +1332245,Nancy Young +1230289,Reg Evans +12,Alexander Gould +146878,Damian Damięcki +1413586,Suzanne Ridgeway +29581,Cecil Clovelly +1845156,Lionel Decker +1197504,Madge Brindley +1021,Stine Bjerregaard +7488,Jean-Claude La Marre +4457,Thomas Bo Larsen +526,Lukas Haas +9452,Daniel Bernhardt +1173605,Alvina Kong Yan-Yin +930410,Beckett Bould +52930,Carlos Jacott +129658,Aleksia Landeau +135046,Stuart Gordon +101901,Milton Selzer +5039,Heinrich Gretler +271458,Lynda Baron +1488336,Brian Carpenter +36513,Liliane Rovère +211078,Dennis Rudge +1109535,Takna Jigme Sangpo +1265406,Rodrick Selby +117132,Adrian Bower +1014572,Joseph Melendez +1472495,Alex Woloshin +114470,Polly Draper +555069,Pat Ryan +141492,Silvia Colloca +78140,Daniel Manche +203738,M.D. Walton +1820,Mark Lenard +1409195,Mónica Escudero +227622,Hideyo Amamoto +16450,Sean Combs +1294173,Yves Amyot +47237,Max Raabe +3411,Slavko Labović +24305,Julie White +47504,Estelle Winwood +62845,Beverly Polcyn +39775,Annabelle Weenick +2456,Sean Sullivan +20852,Hélène Duc +1609268,Eric Laufiso +1089968,Bruce Rhodewalt +59182,Jacqueline Ann Steuart +1066278,Hayward Nishioka +42016,Bernardo Ruiz +41214,Forrest Tucker +103107,Bill Walker +16273,Simon Chandler +7700,Conchita Airoldi +56757,Eva Amurri Martino +994544,Walter Reyno +87685,Ann Sothern +1328755,Jim Shield +289370,Angel Coulby +1226328,Barry Diamond +1070663,Shaul Mizrahi +1063,Lea Thompson +1090669,Harry Allen +1615013,Ng Kong +54859,Sherman Howard +58430,Ruth Bradley +66431,Jodie Whittaker +1465452,Dorothy Varden +1296390,Al Pipkin +1219648,Lisa Cerasoli +1352515,Ludmila Kurepova +97786,Michael Brockman +1216431,Peter Walsh +30772,Nobuo Nakamura +90721,Zorianna Kit +66476,Iwona Glebicka +117602,Frank Killmond +60165,Joe Koons +52797,Robert Musgrave +103006,Yussuf Abu-Warda +94694,Ivan Petrushinov +135045,James Montgomery +264968,Gwyneth Powell +1077866,Jim Cullen +1415786,Oscar Lam Wai-Kin +1226702,Bernie Landis +170948,Billie Neal +1478365,Shizuko Higashi +131479,Harvey B. Dunn +12219,Jon Stewart +67212,Том Ву +9782,Tyra Ferrell +51527,Niklas Konowal +83397,George Lloyd +10823,Kris Kristofferson +79523,Louisa Jones +120741,Jack Norton +21661,Poppy Rogers +69344,Dana Hill +1687941,Theo Barnes +166120,Michelle Stacy +1635103,Amy Redmond +48071,Lobo Sebastian +58927,Floyd Levine +1535175,Amina Gusner +223814,Jerry Denton +3054,Roz Hammond +1371531,Jim Titus +56861,Tony Leung Ka-Fai +78306,Robert Patten +550106,Cynthia Wood +79741,Deborah Foreman +558287,Fannie Ward +1242281,Alec Ledd +9289,Michael Massee +1283911,Ingrid Johnson +19586,Anna Carena +51310,Henry Wilcoxon +1436019,Anne Marie Moskovenko +308636,Judith Chancel +223515,Bernard Sumner +121299,Silver Tip Baker +142159,Frank Ferrara +933716,Morgana King +5813,Aldo Giuffrè +20166,Joe Inscoe +105289,Heather Ford +97171,Robin Askwith +937052,Ève Salvail +230818,Sylvaine Strike +18054,Rinko Kikuchi +1577179,Edmundo Alonzo +7499,Jared Leto +83350,Mark Cohen +74934,Jackie Flynn +91490,Kristopher Steele +1853181,Catalina Izasa +1218308,Jim Wise +936826,Andy Steinlen +3129,Tim Roth +25389,Peter Bryant +133196,Sharon Osbourne +87473,Clint Ritchie +1120516,Filiberto Estrella +79892,Luke Morris +21131,Joe Lo Truglio +54834,Zachary Knighton +1650996,Benny Maslov +145108,Burr McIntosh +1215782,Alan Kirschenbaum +1674603,Francesca Scorsese +544144,Wally Moon +1780624,Tracey Adamson +552505,Chikara Ishikura +34517,Trey Parker +1879501,Elizabeth Kneeland +116114,David Korty +97600,David DeLuise +146210,Danièle Goldmann +116564,Ed Hinton +43429,Barry Flatman +27513,Danny Aiello III +9827,Rose Byrne +113392,Le Tuan Anh +55464,Kelly Blatz +166788,Mark Ballou +35793,Abhishek Bachchan +72395,Kinzô Shin +152670,Fran Ryan +8937,John Wood +27432,Luigi Diberti +1593279,William Chang Suk-Ping +1704743,Lauri Crook +142756,George Woodard +108294,Nicholas Day +99725,Read Morgan +81180,Carl Benton Reid +1412902,Tex Higginson +12312,Richard Anderson +295849,Alun Lewis +128110,Andrea Rossi +1319052,Mark Fisher +1498726,Frank Losee Jr. +60230,Jack De Sena +1651541,Patrick Brady +120061,George J. Lewis +88946,Howard McGillin +92309,Sherman Augustus +12903,Sarah Freeman +78143,Benjamin Ross Kaplan +8828,Lillian Gish +29546,Geoffrey Toone +62288,Julieanne Steger +170293,Daniel Edward Mora +40577,Harry Lauter +6304,Jean-François Stévenin +1780597,Mike Fallon +169639,Christa Sauls +77310,Florence Loiret Caille +553454,James Corey Kaufman +37309,Pierre Collet +589,Daryl Hannah +83141,Paul Wesley +8842,Howard Gaye +1856722,Bruce Edward Hall +35194,John Emery +1115332,Gregg Bullock +76973,Joris Jarsky +67456,Carrie Dobro +1104811,Eugene Nomura +1467173,Anita Koh +1305983,Jessee Roach +1257821,Vincent Wong +80365,Paul Rhys +942839,Pamela Brull +87227,Stella Arroyave +1073810,Aaron Dozier +131194,Masao Shimizu +1484103,Andrés Márquez +1155163,Leonard Ceeley +10486,Chelcie Ross +60719,Hiro Kanagawa +17538,Pîtâ +66153,Naomi Nishida +1582111,Sheldon Davis +89704,Steve Pendleton +66444,Antonia Bernath +3651,Fernando Guillén +54519,Carlos Lasarte +78896,Elizabeth Allen +47080,Gloria Talbott +81961,Dominic Figlio +98658,Jason-Shane Scott +1681457,Colin Etherington +10701,Simon Kunz +2463,Patrick McGoohan +148600,Nina Varela +1214127,Suli McCullough +183239,Rolando Rodriquez +53931,Sandy Martin +157986,Diana Bellamy +1773788,Heather Brown +18795,Heavy D +80536,David Walliams +562677,Patrick Moug +553441,Shintarô Mizushima +1628,De Ming Wang +11064,David Strathairn +117647,Ralph Littlefield +154072,Phil Buckman +64809,Billy Corgan +13451,Jane Morris +1346925,Lee Fai +1076156,Yitzhak Ne'eman +124016,Al Whiting +1049208,Fred Norris +1577171,Bernice E. Shamaley +1052820,Claire Rochelle +76233,Karisma Kapoor +1704742,Ty Crook +930166,Tommy Bond +94182,Marco St. John +111487,Bart Braverman +64710,Reeve Carney +129509,Susumu Kurobe +1680745,Russ Irwin +1216966,Danielle Brisebois +1748068,Joie Shettler +81897,Susie Coelho +64712,Tom McCamus +79692,Justine Clarke +1586956,Lauren Glenn +82549,Peter Jeffrey +55586,Sam Redford +262929,Elena Safonova +987,Lenny McLean +69709,Uday Chopra +28746,Geoff Brooks +53595,Jeff Altman +1245,Scarlett Johansson +554278,Brandon Merrill +93279,Bobby Brown +37601,Lori Birdsong +75794,Roy Francis +1857445,David Garvey +143635,Cyril Frankel +69503,Rebecca Tilney +73980,Patrick Allen +547991,Junji Nishimura +75276,Stuart Nicholls +149466,Mark Phelan +1577175,Joe Zizik +1282703,Jay De Plano +207722,Richard Arnold +1116544,Cristen Kauffman +86479,Shaun Dingwall +589512,Maciej Zakościelny +3343,Jay Adler +42279,Laura Fraser +24320,Alan Oppenheimer +1896,Don Cheadle +554451,Dieter Okras +98452,Jonathan Haze +2090,Kirk Douglas +1502521,Bob Lewis +42935,Renée Estevez +125502,Ruy Krieger +552676,Michiko Nakahata +1868269,Kevin Wadowski +86368,Andrew Duggan +60141,Ray Wills +58914,Kate Isitt +168246,Donald Li +80237,Binnie Barnes +932262,David Ormont +1895,Carl Reiner +170599,Jorja Curtright +110105,Sara Marit Gaup +982098,Nick Loren +104501,Talent Harris +105626,Alan Rachins +586484,Tony Ho Wah-Chiu +1191173,Shut Mei-Yee +1861053,Lena Bousman +1692548,Tatu Heikkinen +2567,Peter van Eyck +114837,Russell Waters +60827,Jarppi Leppälä +1128103,Dean Faulkenberry +141068,Broderick O'Farrell +11892,Paul Sanchez +37254,Al Ruscio +30559,Pippa Scott +3366,Gladys Cooper +27978,Denis Lavant +58414,Dina Merrill +60089,David Alpay +115012,Binnur Kaya +45052,Anton Corbijn +1420479,Jack Low +101785,Michael Sharrett +103322,Michael McGreevey +121112,Harry Jones +17644,Ekaterina Chtchelkanova +87027,George Rose +941147,Viviane Vives +35958,Billy Kearns +52030,Catlin Adams +23480,Henri Attal +245,Keir Dullea +124723,John Gemberling +69010,Brad Davis +15277,Jon Favreau +57723,Nora Miao +1435062,Annette May +23390,Sara Martins +1158634,Jeanne Carpenter +123310,Wilfrid Bray +41091,Kristen Wiig +583765,Orly Silbersatz Banai +167501,Farrah Forke +79740,Jim Metzler +945285,Don Ackerman +117895,Jean Clarieux +115155,Carl Brisson +42000,Jane Carr +6014,Annie Girardot +62818,Chauntae Davies +1232373,Mark Roberts +36917,Jean-Roger Caussimon +137927,Struan Rodger +188368,Ryan Todd +55167,Waltraud Witte +97204,Ikio Sawamura +1897,Bernie Mac +101779,Karen Valentine +1303209,Ryan 'Bosco' Baker +100820,Emilio Linder +1329660,Paddy O'Flynn +35875,Nadine Van der Velde +75926,Janine Lindemulder +56752,Lorna Luft +115428,Ryan Simonetti +53863,Simon Helberg +10501,Chaim Topol +1254626,Jonathan Kite +16963,Jeong-hak Kim +29643,Craig Stevens +29260,Wallace Beery +13576,Fredric March +76489,James With +1413939,Lia Beldam +3230,Todd Louiso +1502411,Gérard Camp +90387,Andrew W. Garroni +1564989,Benita Krista Nall +39568,Dey Young +1550252,Oz Clarke +1531889,Analia Castro +1781811,Anais Bonet +1626527,John Walf +1675033,Toshihiro Itô +133030,Mona Bruce +136228,Christopher Knight +1365247,Mr Lordi +590858,Elie Stello +51580,Janine Turner +6672,Barbara Rudnik +61305,Terrence Hardy Jr. +1561014,Rebecca Lin +1074167,Danny Kovacs +35881,Jean Rougerie +99195,Franco Garofalo +51398,Peter Lühr +5814,Luigi Pistilli +33644,Paula Prentiss +28166,Ben Savage +1434981,Marty Levy +127638,Barrie Chase +4491,Jennifer Aniston +107322,Henry Strzalkowski +166617,Rod Britt +44846,Howard Duff +135171,Stephen D. Newman +150,RZA +1582114,Earl Pereira +39608,John Derek +1656607,Robyn Roth +112419,Susana Traverso +3617,Günter Meisner +1779982,Donte Calarco +1577168,Carlos Bruno Villaneuva +70881,Alan Cox +61829,Kelly Overton +199975,Ian Mercer +1840472,Cinnamon Faye +36010,Axel Milberg +125498,Paola Bechis +33684,Bono +17238,Leslie Hayman +5292,Denzel Washington +46597,Ali MacGraw +13918,Elizabeth Hurley +551956,Seiji Morita +76291,Dolores Bouckaert +1498967,Shelley King +60003,Cassandra Magrath +1155517,Imelda Ilanan +47301,Hans Moser +45415,William Katt +54718,Brooke Dillman +16860,Miranda July +119185,Akiji Kobayashi +21043,Dylan Walsh +1901816,Silvana Zarro +1680746,Joyce Tolbert +10653,Rachel Kempson +2941,Norman Ainsley +225629,Daniel Stewart Sherman +240629,Andrew Jack +65002,Dana Delany +57352,Andrew Rubin +1116944,Barbara Carey +126316,Roger Monk +1052815,Eddie Gordon +106742,Renata Scott +65894,Eleni Anousaki +4776,Michael Murphy +52615,Marilyn Joi +1205,Richard Gere +1464780,Leda Nicova +3069,Therese Bradley +102449,Janie Squire +1038483,Kita Ca +25503,Mandy Patinkin +60975,Val McDow +1221381,Gene Baylos +17764,Charles S. Dutton +567333,Ben Temple +62750,Murray Smith +113,Christopher Lee +1393529,Bart Bedford +1800184,Lucy Smith +62251,Annie Brebner +39829,Henry O +88362,Julie Sobotta +225969,Parris Washington +1131169,Richard Divizio +131015,Jun Usami +84656,Tak Kubota +3930,Phoebe Nicholls +147015,Morgane Maugran +1597482,B.J. Barie +1119125,Fujio Murakami +15899,Jenifer Lewis +1554107,George Carl +1109,Kevin Peter Hall +293856,Patricia Kaas +96228,Gary Basaraba +143435,Khanh Doan +9128,Derek de Lint +1853467,Alice Dylan +1253879,Dominik Bender +5276,Joel Cunha Ferreira +81283,Margaret Hayes +1501999,Chief Sky Eagle +134288,Taizô Fukami +13352,Paul Muni +42978,Jim McMullan +49877,Nick Mancuso +1127849,Evelina Gori +1620878,Wen Yang +1681421,Weston Gavin +84957,Ritesh Deshmukh +75262,Ivan Tatarovic +62753,Andy Anderson +103017,Madame Sul-Te-Wan +34717,Gerard Crossan +1211997,Liz Sheridan +225233,Wolfgang Hübsch +105571,Jacqueline deWit +95140,John Voldstad +12555,Kathryn Howell +7168,Vinny Vella +56459,Colin Patrick Lynch +1011436,Cirocco Dunlap +43120,Andy Dick +1194427,Fanny Belle DeKnight +119647,To Wai-Wo +1180885,Rex Benson +963074,Luisa Williams +555375,Hsi-Sheng Chen +167384,Shane Sinutko +1808424,Micheline Larpin +7400,Lee Evans +17839,Pierfrancesco Favino +195525,Miranda Raison +11522,Jedidiah Cohen +51100,Gad Elmaleh +37509,Joaquín Roa +1569328,James Rae +3877,Eno Hünninger +1838955,Josephine Theodora M'Boup +438076,Mark Lynch +50571,Fess Parker +1896882,Barry L. Looney +96302,Paul E. Burns +102888,Matthew Boulton +30601,Allan F. Nicholls +24598,Michael Attwell +29754,Jon Van Ness +78087,Len Lesser +100794,Patricia Blair +143336,Morgan Tanner +1229676,John Koensgen +77680,Zac Fox +1093537,Hanna Ralph +12440,Warren J. Kemmerling +148742,Howard Petrie +550261,Genesis P-Orridge +78881,Alan Chávez +1657355,Bob McGuire +1503256,Javad Ramezani +54214,Julie Pederson +1597032,Enrique Díaz 'Indiano' +1170,Michael P. Moran +14890,Ariel Waller +1296376,Jane Horner +62531,Valérie Lemercier +105309,Robert Wightman +1439592,John Barimani +23388,Hippolyte Girardot +1690483,Joan Jaffe +121345,Paul Horn +119649,Chen Feng-Chen +29309,Patrick Cargill +198320,E.J. André +554120,Gloria Yip +172780,Kristina Copeland +1765275,W.A. Lindblatt +1609637,Robert Hickey +171574,Chuck Montgomery +55708,Ron Smerczak +52476,Dylan Bruno +3516,Serge Rousseau +30262,Robert Greig +102002,Minerva Urecal +1781205,Brianna Leann Florian +4160,Helen Shaver +25837,Elisha Cuthbert +1108832,Betty Farrington +1441043,Lee Sandman +1836715,Candy Johnson +96724,John Tyrrell +1648657,Paul Garcia +142635,Blake Woodruff +1890327,Zahra Naderi +1330756,Veronique-Natale Szalankiewicz +1380364,Wong Kwok-Leung +66094,Annie Golden +193763,Jack Larson +138563,Richard Warwick +9012,Jonny Lee Miller +129013,Roger Hewlett +134312,Eijirô Yanagi +6916,Peter Jason +1128238,Carmine Zozzora +29222,Zac Efron +149978,Gillian Lind +1336772,Lauri Lupino Lane +1114985,Oscar Ljung +997068,Darlene Rice +194756,Todd Hanson +205030,Alina Phelan +1628026,Georgeta Paduraru Burdujan +148044,Niina Kurkinen +15234,David Arquette +117190,Jon Sklaroff +1577161,Jay Thurman +170275,Stanley Prager +1089593,Viveca Dahlén +98092,Dennis Fanning +1331673,Diana Botello +102860,Darleen Carr +94034,Betty Utey +1234847,Edward McNally +1799816,Kara Tweedie +1880445,Gary Marsh +170074,Sierra Pecheur +93285,Charlyne Yi +1222822,Amy Spanger +14509,Frederick Worlock +181884,Val Lauren +84222,Daniel Cudmore +127139,Marion Shad +112356,Frederick Giermann +104291,Claudette Nevins +143391,Magnus Krepper +1089145,Chris Lerude +1448096,Mary Sue Evans +1821747,Michelle Woods +23764,Эрика Элениак +117766,Betsy Jones-Moreland +101690,Tomás Fonzi +1420332,Josephine Wilson +109772,Charles Evans +1465100,Garland McKinney +62521,Vitamin C +1896877,Fiona Lawton +18053,Jamie McBride +20807,Harsh Nayyar +1829,Carl Steven +6174,Jesse Doran +549355,Jeffrey Goldenberg +80547,Harry Gribbon +89999,J. Edward Bromberg +1023934,Philip Morris +86998,Vera Alentova +19506,James Arnold Taylor +1507100,Bobby Boriello +1217401,Cathleen Cordell +208956,Justin Martin +8629,Gloria Swanson +887,Owen Wilson +146490,Karine Belly +52313,Eileen Essell +111081,Tommy De La Cruz +92095,Ludovica Modugno +115995,Brooks Benedict +945115,Connor Funk +94743,Jerry Springer +1218705,"Brad ""Chip"" Pope" +129995,Bartlett Robinson +556062,Topo Swope +27689,Christin Frame +203022,Linda Eve Miller +77980,Håvard Bakke +1902,Dianne Wiest +1331667,Maria Isidra Hoil +199664,Dick Martinsen +28240,David Eggby +131982,Jean-Baptiste Malartre +57253,Chris Casamassa +14064,Norman Fell +140296,Jim Myers +554826,Hwan-Jun Lee +79698,Andreas Sobik +1574206,Paul Warren +13757,Dhiresh Majumdar +179625,Mark Venturini +154901,Gloria LeRoy +17419,Bryan Cranston +30726,Daniel Krauss +943369,Suzee Pai +6281,Charlotte Ayanna +20016,Vadim Glowna +11719,Scott Capurro +1217143,David Rounds +71467,Matt O'Leary +552669,Teruhiko Shibata +68307,Luke Mably +137264,Markus Flanagan +4939,Téa Leoni +160494,Paul Stevens +53887,Brandon Ratcliff +87332,Andrew Shaifer +1833,Jamie Sives +765,Hiam Abbass +120747,Janet Warren +278796,Daniel Mendaille +48548,Lee Stanley +119210,Mariya Zhukova +1600055,John Barton +122979,Vernon Dent +91537,Stephen Lee +153640,Fritzi Burr +82832,Jim Kelly +149275,Julia Child +553478,George R. Robertson +1495418,Forrest Wood +1518678,Diane Ciesla +143436,Nguyen Thai Nguyen +548133,Yasukaze Motomiya +29675,David Kossoff +126881,Gong Hyo-jin +31514,Peter Jacobson +36592,Saoirse Ronan +15699,William Campbell +2601,Neil McCarthy +79211,David House +191111,Marc Tissot +75931,Kiri Paramore +115884,Axel Wandtke +78308,Roger Anderson +1565330,Steffen Westmark +1112388,Joshua Coleman +90348,Toshizo Fujiwara +24357,Alex Borstein +43824,Madge Blake +12094,Jennifer Saunders +129456,Guillermo Ríos +5694,Robert Forster +557480,Mary Stewart +1574277,Noelle Lippman +13255,Kayoko Kishimoto +121236,Carol Adams +66194,Raymond Singer +1188146,Lorraine Krueger +1246,Emily Mortimer +128490,Doan Viet Ha +990661,Virginia Innocenti +1021808,Britt Delano +1046144,Ivan 'Flipz' Velez +118484,Richard O'Brien +1077248,Mohamed Ben Kassen +72730,Kelly Chen +1596342,Alphonso DuBois +1416134,Wouter Crucke +1233447,Chay Santini +2252,Maz Jobrani +158374,Fred Henderson +554477,Archie Smith +1752716,Marc Spaulding +1484516,Tania Uren +1583088,Randi Klein +1229231,Kelli Rabke +48665,Ramaz Chkhikvadze +131947,Jason Fuchs +137780,Maudie Johnson +1739324,Robert David MacDonald +237167,Akiko Monô +1758317,Liborio Simonella +108867,Lady Reed +1502572,Tom Beach +59206,Becky Ann Baker +1676597,Valeria Hernandez +135053,Leanne Jenkins +222556,Sekwan Auger +1176968,Ivey Lloyd +1502570,Bill Borchardt +1044946,Josh Evans +1781172,Nina Lafarga +1216556,Venus DeMilo +63441,Kim Chang-wan +567074,Isabella Celani +1237323,Chuck Martin +141598,Jack Orrison +47297,James Marsters +1343823,Atif Lanier +14277,Klaus Kinski +173964,Andrew Leeds +451,Lucia Rijker +14785,Harry Guardino +230469,Cheik Doukouré +154263,Ted Rooney +112978,Maxwell Shaw +4927,Alexandra Neldel +41903,Jakob Cedergren +555198,Kiminari Matsumoto +562949,Moni Moshonov +95692,Jennie Linden +154971,David Rappaport +37029,Peter Kent +1643,Adrian Rawlins +109874,Dominic Mafham +120592,Randall Godwin +1215588,Priscilla Taylor +21315,Eric Roberts +14331,Nestor Serrano +121481,Robert Phillips +142106,Lyle Alzado +20264,Jeon Kuk-hwan +1628055,Constantin Bojog +109869,Kristen Schaal +61263,Skyler Gisondo +12521,Kenneth McMillan +103079,Ann Robinson +1352522,Vadim Sadovnikov +14593,Ingeborga Dapkunaite +9656,Johnny Knoxville +192660,Jerome Dempsey +1049406,Lorna Heilbron +1023487,Brian E. O'Neal +101,Leonor Watling +1141558,Jenny Dean +207549,Perdita Weeks +18331,Nancy Travis +1650963,Robert Earley +17078,Michael Smiley +1075037,Danielle Brooks +1459031,Susan Smith +1115997,Nancy Stelle +122293,John Roberson +136039,Larry Lamb +239658,Pupita Lea Scuderoni +120585,Rachel Morrin +42290,Shay Duffin +1025,Ronnie Lorenzen +2249,Clyde Kusatsu +3267,George Hamilton +140356,Rita Taggart +164779,Renie Riano +94777,Frank Maxwell +1879781,Jamie De Roy +8599,Jonathan Haagensen +153196,Geoffrey Chater +1183969,Sharon Wyatt +28479,Richard Hope +27393,Dudley Sutton +32598,Daniel Franzese +122029,Christian Camargo +119646,Lam Hak-Ming +1887363,Janine Hill +1214091,John Clegg +60464,Gabrielle Fitzpatrick +70985,Gig Young +236436,Alfonso Tort +10671,Joe Don Baker +1649292,Brandon Weaver +1790432,Deanna Eppolito +59241,P. Lynn Johnson +231273,Jay Rodan +107354,Youssou N'Dour +1050869,Елизабета Ђорђевска +74278,K. C. Collins +78090,Dee Pollock +26847,Adam West +155282,David Cubitt +229645,Stanley Morgan +15419,Thomas G. Waites +1043263,Branko Cvejić +14631,André Eisermann +59075,Lee Oakes +229176,Ebbe Rode +12792,Brian Van Holt +51734,Kit Gwin +179771,Richard Ashton +1469580,Stephen Soldi +118924,Andy Granatelli +1331770,Manuel París +1674439,Joshua Rollins +23678,Michael Jordan +1298358,Court Shepard +128742,Fiona Allen +92959,Helen Burns +1661608,Linda Kuriloff +198149,Bobby Lee +1077727,Gary Rule +786,Stephen Elliott +122296,Bryan Reents +1790453,Buzzy Popovec +71247,Christine Hargreaves +1005698,Sarah Cahill +14226,Gia Carides +3128,Alicia Witt +77719,Jesse Spence +15975,Michael Dante +148791,Wallace Reid +1776455,Christie Herring +43814,Nathalie Delon +931885,Johnny Murphy +1495416,Jill Giraldi +1231399,Matthew Pidgeon +11871,Alaina Reed Hall +572,Hanno Pöschl +1188784,Tyler Morgan +1114904,Meggan Lennon +112303,Erika Leigh +71642,Mirei Oguchi +55466,James Corden +146896,David Wood +552664,Yuriko Abe +21264,Garvin Cross +14795,Allen Joseph +75604,Yul Vazquez +1891581,Rashid Akbari +29236,Anna Maxwell Martin +1332125,Rob Daly +60918,Cody Lightning +199909,Gregory Phillips +2547,Bruce Boxleitner +1075085,Guy Strauss +1709862,James Kline +16855,Mandy Moore +583419,Joey DePinto +130421,Marie Bryant +2701,George Martin +1415469,Sophon Pukanok +1403616,Laurent Imbault +4589,Benjamin Bratt +20265,Seong-hwang Jeon +136220,Gary Mule Deer +159985,Haley Hudson +1151713,Dorothée Blanck +1313436,Harold E. Finch +169628,Jeff Imada +1471658,Lucille Pinson +153410,Jerry Van Dyke +120152,Agnese Nano +1072359,Ruth Renick +1800182,Luke L. Hansen +556471,Ana Katz +144076,Holly Towne +1679366,Lynsey Beauchamp +4080,Sheb Wooley +134679,Gonjurô Kawarazaki +119778,Anthony Holland +1752773,Niky Johnson +122999,George Newton +1488718,John Starck +83527,Shinobu Terajima +1460956,Annie Carriel +1514698,Nina Jaroslaw +1331878,Horacio Erman +1609675,Stella Pixton +543657,Steve Grace +1089426,Denis Lewis +1214565,John Winston +110144,Puneet Issar +77487,Don Charles McGovern +1607818,Bobby Barnes +44082,Derrick Brenner +78260,Sibylla Budd +1030526,Juan Díaz +590740,Esther Ralston +71189,Cobie Smulders +146056,Lisa Keller +17178,Patrick Wilson +1037,Harvey Keitel +79514,Camille De Pazzis +4134,Keram Malicki-Sánchez +7549,Matteo Febo +1244447,Jimmy Gardner +183653,Bernie McInerney +35204,Ginette Garcin +227606,Pascale Desrochers +117477,Joseph Hoover +79704,Violet Gilbert +231429,Chan Siu-Pang +1275921,Thi Thanh Tra Nguyen +41959,Valerie White +85929,Krista Leis +143037,Issei Ogata +1111812,Robin Rosenberg +16911,Karen Fraser +10768,Rachel Ticotin +39393,Renée Houston +32221,Wheaton Chambers +1853174,Bruce Bowns +40902,Deborah Conway +4038,Susan Sarandon +55593,Shawn Mathieson +237562,Eleanor Powell +566939,Tadashi Yamashita +60882,Steve Maye +108511,Billie Seward +149665,Kali Rocha +1230442,Larry Mannell +1616929,Martin Greenwood +160409,Jo McDonnell +1199823,Buddy Messinger +113008,Serdar Kalsin +1547063,Sal Lumetta +81905,William Cort +119485,Gerald S. O'Loughlin +143770,Monica Evans +83953,Jaroslava Kretschmerová +1282548,William House +1122587,Kazuhiko Kasai +142160,Don Picard +105312,Calvin Jung +136421,Willie Williams +1265389,Angelo Lamonea +143033,François Lafarge +1000180,Bob Davis +983707,Elise Eberle +76131,Karen Duffy +83990,Laurette Luez +1235484,Manini Mishra +34761,Arthur Vinton +553438,Makoto Kuno +929654,Kerstin Granlund +1120189,Mike Huff +97003,Sumit Das +1520857,Beau Sia +58739,Hank Harris +982340,Gina Petrushka +102954,Tacey Robbins +4688,Michael Rapaport +938984,Tymon Dogg +2040,Christopher Eccleston +77075,Norm Macdonald +222281,Ursula Jeans +21416,William Devane +1857411,John Hughes +9296,Balthazar Getty +190483,Tom Wright +55092,Lauren Leech +47730,Jessica Hynes +1200796,Lee Brownfield +236611,Joan Scheckel +1538375,Laura Ford +33241,Michael Gaston +29536,Hobart Bosworth +110493,Liddy Clark +9898,Lotte Lenya +170778,Roger Lodge +43858,Ryan Hurst +1506410,Paul Gustine +1797587,Hitesh Sindi +1393357,George Masswohl +155902,Ryan James +4640,Dejan Aćimović +81464,Bruce Barry +1375801,Clyde E. Hopkins +114232,Chuck Hayward +1104854,Ali Mosaffa +140909,Zak Knutson +16763,Paul Petersen +1200205,Haruka Sugata +1280709,Marion Ballou +35349,Pat Musick +7169,Alan King +60508,Red West +85566,Doug Barron +552677,Akiko Naraoka +152273,Andrew Taft +120216,Bill Cartledge +5139,Robert Englund +1752744,Susan Henley +73139,Shirô Sano +9922,Rik Van Nutter +42288,Woody Schultz +128621,Robert Goulet +70035,Maureen O'Hara +1521657,Felipe Solís +228608,Myriam Thys +37525,Luis Ciges +175979,Merrill Markoe +60920,Chuck E. Weiss +115874,Carlos Gómez +84638,Cees Geel +1571035,Zach McLarty +66558,Christine Barger +1279,Peter Aylward +39306,Karl-Heinz Vosgerau +164021,William H. Burns +1887364,Francis Dux +1552815,Nick Tiger Poe +23680,Dee Bradley Baker +6068,Sela Ward +1643131,Renae Smith Trevino +1199590,Lew Davis +1627,Yan Hai +1591432,Genevieve Zweig +564,Richard Linklater +1510926,Eduard Tabishev +9309,Richard Pryor +41218,Edward Albert +1229,Jeff Bridges +155996,Eric Pierpoint +1640,Stellan Skarsgård +558234,Will Huston +16801,Andreas Kiendl +11750,Dan Hicks +167295,John Cygan +44301,Cliff DeYoung +10694,Glenn Fitzgerald +76183,Mark Hembrow +196286,Willie Brown +46300,Alexander Nathan Etel +65422,Vivienne Sendaydiego +1240748,Harry Standjofski +1857006,John Moss +68406,Salvo Randone +16858,Lauren Graham +1723454,Marie Poitevin +166534,Jamie Williams +94701,Levana Finkelstein +91980,Richard Schaal +59807,Élodie Bouchez +6704,Miri Fabian +37306,Josephine Chaplin +41464,Scott Mechlowicz +1281531,Charles Ferrara +1644474,Paul M. Lane +1352286,Sean Blackman +75532,Benita Ha +1733,Nick Nolte +551670,Firebird Liu +1330769,Genevieve Guilbault +2838,Chloë Sevigny +91305,William Paulson +33522,Hiro Abe +1107162,Nancy Borgenicht +27711,Doug Korstanje +13843,Daniel Emilfork +12159,Howard Caine +1047942,Geraldine Brophy +2438,C. Aubrey Smith +8170,Eva Mendes +34560,Pamela Duncan +34331,Elspeth Dudgeon +4045,Tom Silardi +109760,James Cotton +76988,Mary Ann Thebus +134701,Robert Ball +58214,Larry Pennell +45572,Ruggero Deodato +34973,Bob Hastings +74933,Robert Torti +51800,Teryl Rothery +958,Candela Peña +134907,Malcolm Cousins +17770,Kevin Tighe +1530360,Jerry Zafer +1151734,Stefan Hunstein +136853,Elva Josephson +72298,Michel Rochat +26456,Lori Singer +886,William Fichtner +1278257,Barbara Callawaert +207881,Kwasi Songui +1878750,Jennifer Diaz +677,Moritz Bleibtreu +1193684,Michael Tate +1435006,Kevin Brewerton +11180,David Bradley +1271528,Ara Romanoff +42222,Kim Dawson +12977,Malik Yoba +62568,Rosine 'Ace' Hatem +1674892,Jay Mahin +52140,Charles B. Griffith +95254,Cardew Robinson +3052,Rachel Griffiths +42,Lars von Trier +18017,Emily Lloyd +1107848,Max Robinson +1551605,Ralph Moratz +9741,Jean Marais +589756,Clay Steakley +18326,Dennis Miller +1536857,David Reed +1180787,Sze-Ma Wah-Lung +1482684,Yoko Bambi +5418,Hubert Koundé +1447264,Margaret Anderson +1754329,Consuelo Reina +230264,Glória Menezes +421,Shooter Jennings +53962,Đỗ Thị Hải Yến +1136859,Hye-mi Lee +55548,Michael Winters +96720,Joe De Stefani +185225,Julia Stemberger +87281,Jeffrey Ross +87644,Kaho Minami +126841,Jeremy Fitzgerald +1231666,Chris Chittell +53684,Robert Smigel +81896,Adolfo Quinones +1218219,Penny Johnson +1232543,Rita Gardner +41883,Max Thieriot +1707732,Annie Coffey +107206,Brigitta Boccoli +75894,Costas Kilias +1781708,Nik Pjeternikaj +81135,Cabral Ibacka +1803409,Jill Jones +69482,Victoria Davis +36712,Werner Dissel +31525,Marian Spencer +33519,Hiroshi Watanabe +96477,Ryo Katsuji +228532,Jô Shishido +76961,Demián Bichir +94008,Allyce Beasley +18557,Elisabeth Margoni +1180843,Loleh Bellon +391533,"Rozonda ""Chilli"" Thomas" +2037,Cillian Murphy +66716,Pierre Hanin +1075153,Lasse Kolstad +134250,Tomislav Maretic +1017301,Rupert Young +9171,Brownie McGhee +1598278,Amanda Hadingue +103054,Jack Lambert +1159170,Pedro Efe +1230276,Libby Stone +24323,Steve Franken +71139,Vera Talchi +20882,Lea Massari +1313093,Keith Kupferer +37823,Sonny Shroyer +112288,Lucille Soong +202582,Lars Knutzon +97437,Joel Pitts +1089394,Ray Garvey +33716,Terry Moore +61409,Laura Kightlinger +1284,Noah Taylor +197795,Lynne Adams +77991,Andre Iversen +42644,Badi Uzzaman +23694,Hans Christian Blech +35321,Rex Harrison +29426,John Phillip Law +1554173,Wang Chi-tsan +1234009,Bradford English +174700,Angela Curran +1296371,Andy Hansen +1308763,Mickey Munday +1370,Brad Dourif +95312,Louise Allbritton +33544,Walter Barnes +63303,Peter Cornwell +56015,Tom Heaton +1463002,Clive Baxter +953035,Logan McElroy +1738942,Craig Vincent +67386,Juliette Brewer +15852,Ashley Judd +1294170,Fabrice Mongeau +165434,Nick Dunning +229664,Sophie Kullmann +20189,Amy Smart +193318,Lucinda Weist +95608,Carolina Bona +81047,François-Régis Marchasson +107411,Nicolas Van Burek +29600,Holmes Herbert +1223726,Robbie Amell +552513,Risa Odagiri +1612529,Kôichi Sugisaki +78287,Roxanna Williams +478,Jamie Bell +167720,Andrew Borba +1203929,Jeff Lynas +14014,Gérard Tichy +30202,Edward LeSaint +31581,Robin Ward +48515,Gustav Adolph +89188,James Harrison +38407,Evan Sabara +78083,Hal Buckley +25189,Philip Holmes +1077968,Fred Bell +1198065,Emil Petrovics +2883,Leif Garrett +35545,Aimee Graham +17282,Takashi Miike +16218,Mitchell Anderson +1456529,Chris Cox +1626,Xian Gao +1609275,John Kirsch +538370,Hoot Gibson +1482300,Yoshizo Tatake +107616,Sam Moore +171225,Phillip Clark +4792,Katrin Sass +1092641,Börje Nyberg +65121,Jarrod Bunch +35322,Alan Hale Jr. +123335,Jennifer Lowry +17244,Hayden Christensen +13472,Tim Curry +200507,John Findlater +95564,John Larch +1366360,Javier Lambert +544791,Sammy Hung +938161,Richard Bauer +12676,Dong Jie +75463,Michael Hitchcock +17921,Clem Caserta +101740,Johnny Sheffield +10083,Beatrice Straight +1005056,Edmund Wyson +239636,Bambou +1326332,Darren Humphreys +13356,C. Henry Gordon +1290,Jordan Fry +555377,Shu-shen Hsiao +149106,William A. Poulsen +157488,Israel Juarbe +4774,Jim Brown +14063,Simon Oakland +17754,Todd Karns +12965,Tommy Swerdlow +1760084,Marta Biuso +1853183,Ken Duvall +146340,Scott Wilkenson +19410,Dick Simmons +118545,Dakota Johnson +1651544,Sarah M. Miles +11826,Selma Blair +181067,Ken Medlock +24983,Magdalena Mikolajczyk +1390993,Avi Hadash +91437,Darrick Harris +33277,Isabel Jewell +168797,Ruth Williamson +1799895,Vanni Bramati +1601157,Eugene Wolf +1372517,María Mercedes Villagra +20282,John Kavanagh +75901,Stephanie Daniel +62645,Tory Kittles +1406141,Ernest Hausmann +994194,Jacques Henri Lartigue +88464,Arno Frey +141873,Seo Won +940134,Ruth Weston +105077,Pat Anderson +1189934,Clara Auteri Pepe +1854982,Oreste Rotundo +20186,Damian Lewis +96976,Şerif Sezer +52951,Jane Leeves +1089251,Varvara Massalitinova +1741963,Weston Scott Higgins +1207226,Hal Wilson +104578,Wally K. Berns +109412,Richard Tyler +129277,Rochelle Harris +1444549,Paw Eriksen +1605158,Liza Lee-Atkinson +12378,Gustav Püttjer +193526,Percy Edwards +129463,Rodney Kageyama +555202,Kei Hayami +92774,Lisa Vidal +101967,Karen Smith +5176,Sam McMurray +1877402,Jack Carpenter +47014,Derek Elphinstone +109669,Fahim Fazli +46593,Emile Hirsch +1547349,Tabitha Taylor +116109,Judith Kahan +7768,Phil Feldman +1239773,Heidi Androl +1170981,Patrick Cage +1313741,Wendy Russell +61402,Elliott Cho +45568,Liliya Malkina +1183498,Zhou Zhong-He +1444475,Vasilije Bojicic +8535,Gloria Stuart +1185405,Maria Tucci +26865,Brendan Conroy +202598,Vera Gebuhr +133854,London Lee +1581614,Adelaide Alaïs +5844,Detlev Buck +74296,Teller +97593,Tom Tully +32059,Helmut Griem +996744,Peter Graves +1586957,Leslie Ann Lizarde +17930,Louis Vanaria +552501,Kayoko Shibata +1160018,Jake Phelps +10359,Pierre Leymarie +41655,Jeff Olan +152796,Lisa Cloud +1609256,Wayne Jacintho +17883,David O. Russell +232137,Danielle Proulx +56857,Peter Facinelli +949160,Mabel Colcord +71447,Candace Hutson +1558227,Che Landon +70899,Tamara Feldman +30278,Eddie Foy Jr. +1889421,Alec Murphy +54234,Kalyn Bomback +73586,John Wesley +168733,Katherine Bailess +48579,Noé Pflieger +3009,Jim Youngs +84433,Lannick Gautry +1350,Irène Jacob +230765,Emie Hudson +5149,Bonnie Hunt +21007,Jonah Hill +149932,Janne Reinikainen +69399,Alexandra Holden +116669,Alan Barzman +1356745,Yvans Jourdain +189160,Patricia Scanlon +9846,Gustav Botz +8214,Barry Del Sherman +1901808,Josef Mrkwicka +19849,Chete Lera +28853,Anton Rodgers +127141,Sue Davies +12714,Zack Ward +44897,Shelley Morrison +1720969,Kellen Fink +1773114,Rita Edwards +163066,Mary Marsh +129972,Park Gil-soo +1089176,Harris Peet +134092,Richard Brestoff +19934,Catherine Jacob +1593810,Mitsuyuki Oishi +24596,Colin Bruce +102922,Marilyn Manning +56618,Brian Murray +34398,Bill Fagerbakke +120599,Rick Thompson +30936,Karl John +32685,Christian Tafdrup +1879509,Jack Penix +75467,Stephen E. Miller +58929,Jeanette Miller +552650,Shizue Natsukawa +1224598,Robert X. Golphin +71009,Emy Storm +22215,Michael Showalter +95943,Patrick O'Moore +7210,Kathleen Freeman +141064,Carl Harbaugh +79878,Sean Albuquerque +88906,Cyril Delevanti +63136,Patrick Mofokeng +85152,Petronella Barker +52043,Stuart Pankin +198952,George Gobel +105793,George Tabori +1683090,Adam Drescher +70377,Beth Ehlers +1416131,Edward Reyntjens +67318,Megumi Okina +81557,MacIntyre Dixon +42705,Justine Waddell +1381181,Eneko Olasagasti +1139759,Lynette Tompkins +1661657,Lisa Cangelosi +22861,Carl Perkins +42018,Richard Can +1658505,Loïc Pora +1196934,Mahlon Hamilton +96733,Kim Hamilton +12836,Ted Danson +1190635,Colette Marchand +56421,Nora Ferrari +1029304,Toru Yuri +87518,Robin Hughes +11389,John Lone +1773796,Staci B. Flood +4323,Darrick Doerner +10478,Jeanne Tripplehorn +125039,Tom Chadbon +154668,Lee Spencer +14731,Henry Silva +592016,Dominic Koulianos +3337,Vince Edwards +18277,Sandra Bullock +20258,Thure Lindhardt +25306,Mel Harris +11439,Hoagy Carmichael +132710,Elizabeth Rogers +20814,Gregory Smith +1453029,White Lightnin' +113738,Dara-Indo Oum +135023,Toshiki Ayata +931393,Ren Yamamoto +1661597,Waltrudis Buck +1779986,Alfred Briere +653,Ronald Lacey +65975,Yuen Cheung-Yan +20817,Peter Woodward +39436,Dominique Rozan +8854,Bill Cobbs +41278,Michael Sacks +149594,Paige Moss +4587,Halle Berry +119184,Ichiro Kijima +1394788,Linda Gehringer +52535,Camila Monteiro +157022,Lisa Kaseman +7676,William Atherton +10826,Traci Lords +1457572,Milton Owen +1185412,Jane Harker +1840071,Shad Ali +1224052,Michael Den Dekker +159456,Marc Vann +1018113,Toby Wing +1287296,Elaine Barrie +27563,Amy Irving +1350135,Stefan Walz +101878,Lou Krugman +116691,Marcia DeBonis +57451,Leslie Bibb +65448,Sylvestra Le Touzel +550564,Patricia Manterola +1331754,Nino Bellini +96069,Edward McWade +5830,Matthew Garber +51544,Mare Winningham +1229689,Justice Leak +115787,Danny John-Jules +554094,Ron Sauvé +64370,June Angela +59156,Stephanie March +1571364,Anna Nugent +32895,Kevin James +8338,Jodelle Ferland +52718,Andrew Francis +75355,Marion Ross +89101,Louise Beavers +988795,Ron Whelan +37068,Jan Niklas +166602,Brian Jacobs +35780,Amitabh Bachchan +128124,Shannon K. Foley +1409154,Lilyan Irene +21722,John Billingsley +40165,Ave Ninchi +1192358,Daniel Villarreal +76283,Norman Baert +51459,Raegan Lamb +123631,Rudy Diaz +1757137,Lucia Pezzoli +75282,Matt Dunk +96705,Bobby Johnson +4041,William O'Leary +74954,Corinne Bohrer +95023,Oliver Milburn +51878,John Kani +65423,Mike Pniewski +1146141,Charles Robinson +1537645,Jaroslav Kladrubsky +70083,Antonella Attili +1296383,John Floren +29384,Sheila McCarthy +1050066,Shelley R. Bonus +142683,Malin Morgan +94432,Adrian Martinez +1296395,Tamie Steinke +34211,Roy Gordon +170977,Stephen Mailer +103671,John Carroll +106157,Robert Kramer +1502516,Christine Soustre +969219,José Suárez +17194,Chance Kelly +53576,Beatrice Brown +60075,Shane Hunter +3668,Loretta Tupper +24535,David Marshall Grant +1027813,Jarl Borssén +62245,Fred Ewanuick +228627,Kyoko Baertsoen +9984,Frank Toth +1009979,Eddie Brugman +1624216,Al Bain +93239,Leif Andrée +29221,Brittany Snow +57700,Brandon Lee +56977,Roy Dupuis +217111,Judith Fisher +19492,Viola Davis +1886577,Kevin Michael Doyle +123015,George Kirby +1456532,Dale Frye +27733,Neil Hamilton +1776535,Jenny Seeger +55258,Robinne Lee +7505,Roddy McDowall +64237,Sascha Knopf +1630461,Hans Raith +1050988,Alexander Bisping +29069,Michael Jayston +62133,Sarah Francis +589812,Matthew 'Stymie' Beard +106813,Gloria Hayes +1651688,Tracy Cunliffe +54616,Lhakpa Tsering +1879230,Cipriano Lodosa +119228,Marge Kotlisky +25448,Caroline Chikezie +1826586,Michael David Masters +30157,Roscoe Karns +6465,Grace Zabriskie +1836332,Janet Adderley +172496,Sam Behrens +1656608,Jamar Cargo +963298,J.D. Donaruma +1709244,Anna Goltz +76184,Bryan Marshall +80164,Sondra Lee +1500211,Scott Haven +4798,Jürgen Holtz +1120190,Alan Swerdlow +115573,Glenda Jackson +935429,Jean Rupert +102576,John Otrin +99,Amanda Plummer +1412549,Patty Poulsen +964,Eloy Azorín +40693,Stuart Clark +49824,Kathryn Erbe +69570,Jacquelyn Hyde +34540,Peter Bucossi +16358,Simon McBurney +1606806,Flora Cambi +92313,Joey Jordison +96060,Eddie Kane +183785,Nicholas Le Prevost +1192385,Lucille Patton +3242,Fay Wray +30562,Kazuo Yamada +1385340,Jaroslava Adamová +229605,Kate Rutter +1172860,Hannah Sullivan +20437,Moshe Agazai +7089,Glenn Walker Harris Jr. +62893,Craig Wasson +1192388,John Wills Martin +1045090,Bob Perry +1563034,Dennis Goldson +82426,The Edge +28281,Jean-Pierre Bacri +1369254,Glenn 'Pop' Warner +40954,Maria Schell +118222,Gower Champion +7027,James Dreyfus +14976,Richard Gaines +1144349,Roger Moore +95757,Gilbert Emery +51581,Clarence Gilyard Jr. +1029864,Jack Austin +94296,Richard Karlan +45308,Ken Swofford +9257,Bruno Kirby +1209727,Ajani Perkins +115330,Peter Leeds +955005,Akira Sera +1876859,Andrew Bayly +154996,Mary Wickliffe +1577170,Richard Watts +1572020,Emily Sarah Stikeman +585664,Perrette Souplex +100326,Jack Overman +1543495,Benji Ming +1324198,Jimmy Thompson +39388,Amy Ryan +1007875,Sebastian Feldman +1364518,Merja Alanen +15887,Julia Ormond +21347,Jo McInnes +1275922,Lam Huy Bui +3124,Valeria Golino +4043,Danny Gans +1618607,Art Irizawa +47073,Fyr Thorvald Strömberg +115483,Enrique San Francisco +1590834,Michael Elsworth +99724,John Martino +1853164,Kathryn Frick +99327,Charlotte Granville +54235,John Bluethner +71171,Lee Kang-Sheng +11764,Ian Abercrombie +572541,Caleb Landry Jones +551865,Shingo Seto +55971,Jan Machulski +27030,Tom Gallop +547,Victoria Thomas +62074,Ira Hawkins +9925,Martine Beswick +240956,Marie-Bénédicte Roy +1198258,James Guilfoyle +327357,Catherine Chevalier +86308,Shari Albert +92525,Melissa Disney +1040443,Michael Cadman +578082,Bohdan Poraj +2817,Krystyna Zachwatowicz +590863,Elias Abdul +5365,Clifton Collins Jr +34117,Robert Lowery +38085,Michael O'Keefe +138219,DeWitt Jennings +1299317,Kang Hye-jung +109359,Arturo Puig +105668,Dina Korzun +1629435,Chachchaya Chalemphol +228623,Bin Bunluerit +20046,Kapil Bawa +21290,Dave Foley +85954,J.D. Garfield +1408064,Mika Quintard +58105,Natja Brunckhorst +200999,Nancy Daly +78805,Laura Leighton +12248,Alec Guinness +1295853,Harry A. Bailey +1424325,Esodie Geiger +941548,Jacobo Morales +10921,Charles Laughton +942,Ralf Moeller +42090,Jimmy Williams +1468086,Raúl Lechuga +1382,Paul Norell +1779400,Tyler J. Smart +147963,Harry Crocker +1218890,Tony Frank +72286,Natacha Koutchoumov +23646,Jeremy London +1627402,Koey Wong +115989,Lisa Stothard +40623,Hayden Rorke +951459,Lord Tim Hudson +93518,John Hargreaves +99323,Walter Szurovy +1738565,Howard Southern +325,Eminem +1176969,Matt Barker +553430,Shôji Ôki +1220981,Sheila Allen +105624,Darwin Joston +193,Gene Hackman +18914,Gregory Sierra +1125485,Alex Grazioli +8945,Kevin Kline +1569163,Gwenael Clause +53510,Silu Seppälä +1810376,Adam Smith +1330768,Ruan Vibegaard +148996,Brittany Ashton Holmes +1609,Raúl García Forneiro +65851,John Clements +109621,Rekha +90625,George Murcell +1348331,Claudia Lapacó +8255,Warren Oates +10468,Marvin Hamlisch +4654,Jeremy Davies +18765,Alexandra Stewart +1484410,Peter Doran +192822,Victoria Shalet +9983,Richard Swingler +1458295,Geoffrey Matthews +1580381,Betty Tyler +28248,Dwight Schultz +1775,Take +553881,Parkman Wong +117393,George Shibata +15183,Tony Lo Bianco +39179,Raoul Billerey +1242525,Traci Adell +1779976,Baron La Scala +80459,Hang-Seon Jang +29816,Frederick Kerr +1190728,Ikuma Ando +122106,Gary McLarty +231928,Gunnar Nielsen +103870,Frank Moore +157579,James Nardini +206652,Elizabeth Marleau +74353,Maria Menounos +1509209,Walter K. Jordan +557955,Nele Mueller-Stöfen +1313069,Ricardo Díaz Mourelle +15533,Olivier Martinez +5898,Johanna Andrea Mora +1090538,David Toole +1048868,Iain McKee +148669,Marge Champion +552658,Gen'ya Nagai +1225744,Michael Melia +111185,Long Nguyen +10379,Victor Slezak +1804072,Edwonda White +1435061,Sean Michael Fish +39597,Damon Whitaker +557983,Fernando Wagner +1800177,Mike Lisenco +1183968,Marlene Callahan +52400,Dirk Martens +980418,John P. McCarthy +1752781,Sammy Rosen +99277,Mick Jones +31365,John Kassir +65756,Melissa Errico +76759,Benjamin Salisbury +7025,Richard McCabe +66746,Grant Piro +1875122,Mollazaher Teymouri +1563216,Frank Clem +37156,James Biberi +146084,Rufus Wainwright +153942,Morgan Nagler +67848,Ashley Olsen +1011224,Frankie Chan Fan-Kei +6295,Catherine Breillat +77996,Asa Butterfield +1894150,Fargo Graham +88463,Tonio Selwart +169920,Leon Russom +1556476,Denny Wilson +44893,John Corvello +1278,Steven Goldstein +88099,Tara Price +80143,Alan Dellay +567105,Richard Gullage +53185,Texas Battle +11671,Bijou Phillips +20928,Linda Evans +552217,Sarah Rose Hendrickson +123307,John Nelles +175302,Louis Del Grande +123306,Vernon Chapman +12422,Dennis Weaver +261927,Souad Faress +23,Bill Hunter +1789265,Zhang Lu +588160,Selan Karay +27530,Don Lake +1281342,Will Reeve +1661605,Luis Martin Perez +235361,Bruce Jones +1664226,Jean-Marie Juan +60832,Evil Jared Hasselhoff +17025,Paraic Breathnach +80160,Todd Jamie +140654,Rafał Królikowski +52957,Ray Santiago +11702,Adam Brody +8598,Douglas Silva +58210,"Ernie Reyes, Jr." +138038,John Beckett +106628,Marianne Stone +97225,William Irving +1308766,Al Sunshine +23162,Raymond Devos +85346,Maureen Swanson +1452155,Lori Shelle +134729,Pairoj Jaisingha +127165,Jean Boht +1752322,Hayley Podschun +35705,Regina Hall +41350,Ken Kercheval +2115,Kurtwood Smith +1247020,Nadia Cameron-Blakey +110106,Anne-Marja Blind +51493,Châu Belle Dinh +131001,Virginia Dale +54817,Liane Balaban +1712381,Baziga +122269,Jack Lotz +56205,Atom Egoyan +11951,August Zirner +96053,Charles Judels +57575,Natalie Mendoza +37777,Hardy Krüger +3674,Helen Haye +108018,Mariko Okada +22035,Joseph Walsh +3968,Michael Sheen +4494,Lisa Ann Walter +58658,Geoffrey Edwards +2880,Emilio Estevez +1275926,Van Chung Le +1590536,Robert Sean Burke +98298,Lahmard J. Tate +43827,Elizabeth Flournoy +11516,Devin Ratray +79716,Taimi Allan +23591,Christopher Toler +1616647,Edward Warwas +61636,Daniela Farinacci +21944,Burt Kwouk +12052,Gwyneth Paltrow +11161,Tom Savini +101869,Zoran Hochstätter +34849,Ted Demme +10020,Stephen Boyd +1609251,Carlos Andrade +30238,Frank Jenks +74627,Jamie Bartlett +104506,Rhonda Stubbins White +1526773,Louis Rosario +161650,Michael Tolan +1891584,Mahbobeh Khalili +13023,Colleen Camp +106678,Lloyd Battista +81726,Lorraine Toussaint +1607162,Neil Looy +1857454,J.D. Dawodu +84400,John Byner +82092,Will.i.am +160554,George Loros +16554,Richard Crenna +18471,Anthony Anderson +592904,Ted Duncan +12097,Christopher Knights +1735904,Sarah Stephenson +200632,Felicity Kendal +51538,Emma Campbell +545852,Otto Petersen +52021,Frank Wood +3682,Joserra Cadiñanos +108208,Lesley Taplin +35247,Luce Fabiole +1456533,Danny E. Glover +140578,Nick Holmes +35598,Matt Keeslar +70075,Michael Carr +9186,Chad Lindberg +984489,Rocco Musacchia +2099,J. M. Kerrigan +82189,Judson Pratt +51651,Joachim Paul Assböck +42307,Peta Wilson +112253,Leonard Frey +1434987,Tamara Carrera +553892,Guy-Daniel Tremblay +5655,Wes Anderson +1317628,Jack Kenny +1054325,Martin Hub +104196,Sean Cullen +12834,Barry Pepper +31771,Billy Bletcher +583273,Robyn Reeves +78305,John Kellogg +1609664,George Egee +1724909,Pam Barney +98455,Sennuccio Benelli +7667,Patricia Collinge +110507,You Yong +7207,John Lee Hooker +35367,Jeff Doucette +39882,Andrée Tainsy +2876,Matt Dillon +100460,Cec Verrell +22970,Peter Dinklage +1190706,Christopher Nilsson +42200,Lennie Loftin +1265413,Liese Lyon +103469,Virgílio Teixeira +401125,Laurence Colussi +83909,Shirley Anne Field +554315,Ryûdô Uzaki +167691,Alex Morris +14755,Jack May +1478367,Keiji Sakakida +70254,Donald Gibb +55097,Nate Hartley +1673794,William 'Bill' Spaulding +1487177,Bill Wallace +65236,Bill Goldberg +30366,Victoria Jackson +4301,Angie Dickinson +34625,Frank Wilcox +548090,Joe Bellan +7447,Alec Baldwin +1190960,Vsevolod Tsurilo +1704741,Jordan Cohen +58819,Anthony Barrile +41249,Tess Harper +120738,John Davidson +24299,Jean-Claude Brialy +1336845,Jeff Bailey +9631,Carel Struycken +65166,Mark Joy +56404,Patrick Mille +299658,Blaki +180625,Alonzo Mourning +84598,Robert Hy Gorman +112558,Kaj-Erik Eriksen +133876,David Nicholls +1612444,Alex Dee +9596,Jeff Corey +44106,Georges Douking +1214186,Lauren Tewes +1840745,Gordon Greene +233143,Jan Wiley +138741,Janne Virtanen +29554,Gerda Maurus +218094,Kai Soremekun +55581,George Anton +34103,Eddie Parker +39659,Burn Gorman +131199,Sabine Singh +37827,John William Galt +1231331,Tom Lowell +29623,Lana Turner +1757139,Guglielmo Badoni +1878356,James McHale +1723441,Roselyne Puyo +545828,Marina Zudina +39044,Werner Finck +1621926,Dayna Porter +1577167,Paula Ruiz +1742423,Annabel Stephan +229669,Luca Lazzareschi +55516,Filipp Yankovsky +14663,Dick Warlock +121306,Eva McKenzie +66460,Krzysztof Globisz +10465,Edward de Souza +72171,Mary Ellen Brighton +89691,Frank Puglia +1228048,Julie Hayek +214999,Tim Barrett +98095,Jay Koiwai +15757,Ray Romano +10241,Robin Becker +1597842,Gaston Morrison +71128,Ashley Scott +108172,John Myhers +1784317,Zachary James Bernard +24479,Jean Saudray +1780599,Ronnie Ravey +72095,Lee Pace +1613652,Pat Moya +940039,Charles Hyatt +532890,Jennifer Crystal Foley +1441226,Elizabeth Lang +1468856,Tommy Garland +101756,Lynn Borden +1214190,Lawrence Mandley +1468846,Jolane Reynolds +1539949,Raiko Bowman +96594,Alex Ivanovici +31507,Rose Abdoo +100592,Vinny Argiro +35246,Christophe Bruno +43433,Teresa Hill +572525,Sailor Vincent +151439,Elspet Gray +1176951,Jeffrey Murray Johnston +120589,Christina Romana Lypeckyj +20752,Alex Rocco +1568595,Malika Haqq +1790425,Ivan Bathee +1038671,Eleanor Hansen +1532851,Glenn Walken +161310,Bruce Solomon +2955,Chris Cooper +1138526,Henryk Niebudek +34437,Adele Jergens +13965,Jessie Ralph +1433378,Suzanne Dulier +92587,Gloria Gifford +940212,Coley Wallace +1609654,Steven Burke +3416,Demi Moore +41280,Steve Kanaly +172747,David Cameron +44357,Đorđe Nenadović +117259,Chris Raab +14452,Jerome Cowan +1773850,Samuel Givens +1232501,Tom O'Rourke +554279,Ya Hi Cui +2506,Alice Krige +82712,George Costigan +20581,Jack Betts +1615011,Yao Weixing +133565,Vaclav Jezek +157617,Pearl Shear +59168,Ann Talman +1468322,Brendan Kelly +1209184,Gloria Dea +80602,Tyler Perry +74587,Terry Loughlin +1596619,Vene L. Arcoraci +160292,Deborah May +1500879,Aaron Vodovoz +55747,Michael McCulley +1316030,Alf Skaneby +129331,Matt Ingersoll +89732,Virginia Sale +32041,William Russell +8631,Nancy Olson +8841,Donald Crisp +1275924,Xuan Loi Phan +1086622,Joe Bordeaux +44176,Dov Tiefenbach +52422,Michael DeLorenzo +551515,John Riedlinger +10824,N'Bushe Wright +238746,Art Farmer +230499,Belinda Grant +25246,Andy Lau +7911,Joe Ranft +89528,Faye Emerson +84655,Steve Cory +7545,Vitalba Andrea +91488,David Bradshaw +38025,Kristin Davis +1205131,Maylen Calienes +2265,Adrienne Corri +1271,Andy García +1110444,Marisol Membrillo +3383,Thomas Mitchell +122090,R. Gilbert Clayton +4888,Lily Rabe +24046,John Schuck +197126,Wil Johnson +82647,Bruce McFee +1991,Tess McCarthy +87680,Michele Soavi +61946,Isabelle Almgren-Doré +72308,Paul Jesson +24465,Eric Elmosnino +143335,Heather Laura Gray +9313,Lisa Boyle +7425,Nobu Matsuhisa +43845,John Harron +53939,Adam Scarimbolo +1023463,David Rollins +85119,Dr. Wesley Von Spears +1154526,Mohammed Umar +134726,Supakorn Kitsuwon +20553,Thomas Mauch +14,Ellen DeGeneres +219407,Ann Holloway +66464,Aleksander Bednarz +24942,Tsilla Chelton +94952,Olga Lord +61967,Angayuqaq Oscar Kawagley +192709,Lucinda Davis +57380,Miguel Ángel Fuentes +1315450,Anthony Miller +120604,Keith Lenart +1444505,Christian Wenkens +236056,Michael Raysses +119992,Leo Gullotta +1422434,Harry Denny +91936,Harry Hauss +9997,Scott Thomson +131814,Michael Brandon +1873997,John Basinger +107403,Nancy Palk +207,Tom Wilkinson +32728,Ida Dwinger +20768,Cherie Lunghi +228441,Hugo Arana +195416,Richard Platt +1280234,Jeffrey Lee Gibson +78288,Carl Power +1089396,Fenja Klaus +1504900,Sarah Backhouse +114509,George Skaff +31511,Grant Heslov +79510,Esme Creed-Miles +435731,Yi-nan Shih +106031,Tanis Chandler +168881,Julia Vera +60652,Darren Shahlavi +1901815,Hani Song +963257,Sonita Henry +212522,Kevin Golsby +174723,William Ilkley +1565425,Denise Orita +1368909,Una Brandon-Jones +104601,Vincent Barbi +1774045,Tanya Papanicolas +11051,Emil Moodysson +1839770,Joana Nardelli +5412,Raoul Bova +1196243,John Zimmerman +1654797,Inge Maria Granzow +113927,Jack Coleman +30050,Brian Avery +100110,Catherine Rivet +551835,Takuya Muramatsu +235782,Vanessa Martinez +1344737,James Brady +12518,Richard Jordan +1348804,Marko Zecewic +13359,Tully Marshall +14636,Michaela Rosen +229667,Giovanni Guidelli +24385,Laurent Terzieff +97223,George McKay +934930,Ray Saunders +1681426,Matt Russo +62735,Dorian Kingi +35742,Shah Rukh Khan +168638,Beatrice Winde +139240,Max Davidson +971538,Ramon Estevez +200523,Jim Bohan +1649567,Surachet Lorsungnem +1270997,Frank Meredith +120217,Jack Chefe +100918,James Mitchell +570324,Joseph Marr +41283,Geraldine Page +545604,Cris Lankenau +1076568,Richard Santoro +73952,Cheryl Tiegs +1228290,Romina D'Ugo +994407,Mikael Rundquist +2076,David Warner +91979,Gary Waynesmith +104873,Kate McNeil +1886589,Basil Reale +87003,Curtis Armstrong +51937,Jonathan Cherry +6906,Lee Tergesen +30832,Franco Fabrizi +37723,Dan Vadis +24630,Harald Kuhlmann +146756,Michael Murray +1853182,Samatha Pearson +231608,Paule Daré +1226231,Deborah Kellner +139997,Cristos +26054,Claudia Black +1606898,Fritz Eggert +1613799,Guo Feng-Qiang +65827,Keith David +551590,Yuriko Hiro'oka +1060036,Yasuzô Ogawa +1401184,Bruno Boni +87039,Nan Martin +955655,Egidio Tari +96847,Derk-Jan Kroon +1114915,Hugh Alexander +14760,Paul Antrim +99791,Joe Zammit Cordina +1214389,Jesse Burch +168964,Anson Scoville +36059,Joanna Pacula +239379,Madeleine Rousset +1188305,Eva La Gallienne +123304,Colette Stevenson +31531,John DiMaggio +52534,Rodrigo dos Santos +4065,Fred Zinnemann +1085462,Mandy Gonzalez +997985,Art Felix +77160,Cecil Cunningham +45480,Cheryl Smith +129759,Reg Rogers +279078,Marissa Delgado +138498,Ken Wong +1790454,Tommy Smolko +94656,Jahi J.J. Zuri +1595381,Mabel Smaney +24368,Roscoe Lee Browne +1178620,Marioara Sterian +1416107,Alfred Lutter III +156927,Hayden Tank +80245,Grant Cramer +164583,Joe Petruzzi +118544,Malese Jow +31512,Robert John Burke +54422,Tupac Amaru Shakur +58857,Tencho Gyalpo +3848,Owen Gorman +1417132,Wera Liessem +50971,Arthur Hunnicutt +10539,Kim Hunter +169301,Maury Efrems +1449364,Kyjel N. Jolly +55145,Eddie Castrodad +267603,Olivier Pajot +50668,Jamie Bamber +1183363,Pavel Sedláček +97470,Mirelly Taylor +9354,Richard Alexander +4292,Inigo Lezzi +186469,Alistair Browning +232287,Juha-Pekka Mikkola +80991,David Lansbury +1273501,Deborah Overes +1152827,Maurice Kowalewski +103501,Robert Emmett Keane +64734,Barbara Bingham +163794,Craig Walker +1327918,Christopher Crumb +1237366,Christine Jones +30162,Perry Ivins +945958,Robert Farrior +55541,Eddie Cibrian +27125,Molly Parker +64999,Megan Ward +56923,Mara Corday +24421,Jean Rochefort +20853,André Wilms +93949,David Bauer +81553,Sylvia Davis +388,Jim Broadbent +258571,Connie Francis +30485,CCH Pounder +66599,Ross Klavan +589794,Adriana Roel +6600,Peter Bull +24812,Joanna Dunham +156466,Richard Penn +13026,Nina Foch +1296388,Ken Olson +1368268,Michael Patric +994134,Gary Howard Klar +3833,Van Doude +14320,Jack Thibeau +61406,Alessandro Ruggiero +18345,Brenda Fricker +1142,Philippe Volter +117418,Mahalia Jackson +1789270,Li Lianyi +60884,Earl Maddox +48524,Liv Tullia +83424,Peter New +41748,Vivian Blaine +1234833,Shawn Bradley +50762,Mike Kellin +96913,Ben Hammer +1661622,Eileen Casey +953738,Masashi Odate +1585738,Beau Daniels +1339668,Jamileh Sheikhi +1046577,Arjun Chakraborty +66472,Zbigniew Borek +16667,Elisebeth Peters +1414747,Jacqueline Stewart +95314,Virginia Bruce +3467,Leonard Stone +37627,Dany Boon +33059,Alan Vint +34111,Marcus Carl Franklin +51944,Mike Epps +18296,Art Chudabala +4729,Tom Guiry +6462,Denver Pyle +1234564,Ken Terrell +104009,Monti Ellison +994406,Lenn Hjortzberg +4994,Ryo Ishibashi +6930,Diane Baker +571440,Sevda Aktolga +1322477,Hallie King +84786,Kim Min-jung +67221,Sharla Cheung Man +41127,Laura Gemser +1231552,Bonnie McKee +178233,Ray Goulding +22868,Roy Orbison +1830654,Janine Jordae +1593819,Makoto Hashiba +105946,Joseph W. Girard +554617,Eric Thiele +107412,William Pappas +27422,Bruce Payne +85867,Matt Mulhern +553432,Ikuko Saiton +17881,Jason Schwartzman +11500,Butterfly McQueen +1849690,Liliane Sorval +164039,Maureen Mueller +1222189,Tami Sagher +1086875,Alex Ballar +79615,Michel Barrette +18070,Nicky Katt +5301,Waris Ahluwalia +7208,Lou Marini +5823,Julie Andrews +1578,Holmes Osborne +1667623,Brendan Walsh +1609663,Heather Dawes +1228459,Michael Soltis +1198505,Miyoko Nakamura +1765269,Julia Klopp +21037,Prince +171661,Ellen McLaughlin +1748939,Joe Cuddy +79959,Hilary Drake +1289891,Walker Davis +1876864,Polly Crooke +1673806,Billy Gratton +74610,Tasha Smith +132458,Stijn Koomen +587264,Johnny Walsh +16442,Najwa Nimri +1138772,Raymond Wong Ho-Yin +121175,George P. Breakston +1143091,Dean Cromer +33040,Nicolette Krebitz +117975,Eita +167098,Marilyn McIntyre +85626,Bénédicte Loyen +1215608,Mark Thompson +58503,Paddy Ward +75255,Francis McMahon +123900,Leslie Dwyer +18649,John Randolph +3756,Erik Schumann +229288,Bill Mauldin +1356007,Sarah Crowden +88949,Mark Harelik +72305,Lesley Manville +1850001,Charles Ortiz +83674,Stephen Lord +1191929,David Wu +39986,Jim Ryan +1790460,Janet 'Scarlett' Gibson +41743,Maggie Castle +1181318,Edward Burns +27764,Steven Waddington +134013,Dennis O'Neill +1320286,Ervín Tomendál +62752,Damon Herriman +950617,Vincent Gentile +69056,Stacey Pickren +1076200,Hamid Fillali +1366381,Carla Nascimento +1069802,Bill Weeden +28637,Andy Richter +121318,Mikhail Rasumny +66070,Dave Matthews +155618,Paul Newlan +71728,Tom Poston +932823,Max Manwell +84440,Marie Guillard +1023709,Tudor Williams +29036,Nils Asther +38162,Barry Brown +34986,Ian Patrick Williams +102335,Taaffe O'Connell +1894177,Chuck Henson +105999,Sharyl Locke +2428,Ernst Lubitsch +1468198,Buck Mack +7140,Leonard Termo +46530,Adam Hann-Byrd +7906,Jennifer Tilly +49735,Aidan Gillen +146209,Hans Wyprächtiger +4133,Giuseppe Andrews +4091,Fred MacMurray +14583,Anne Chevalier +947522,Leo Martinez +1364451,Jari Salmi +1127066,Mantarô Koichi +30280,Chester Clute +1075172,Davison Clark +53768,Anita Pallenberg +14632,Dana Vávrová +1776543,Joe Jagatic +121347,Joyce King +1582113,Safwan Javed +84482,Luke Benward +555192,Hiroyuki Katsube +125721,Masao Mishima +226827,Hitori Gekidan +1621641,Morgan Jones +1011139,Gal Hoyberger +142492,Ranko Akagi +89570,Carol Speed +57251,Linden Ashby +1217828,Hilary Angelo +883,Will Patton +45672,Bruno Mattei +63470,Jennifer Lyons +117564,Jack Moore +80627,James Cranna +554009,Robert Grasmere +190920,Ryan Scott Greene +32438,Cyril Thornton +4122,Helmut Dantine +128191,Billy Blanks +128115,Thorsten Schwarz +79515,David Blaine +83272,Cherami Leigh +14869,Margaret Sullavan +1086615,Fabien Béhar +21359,Edoardo Ballerini +35750,Reema Lagoo +533762,Joachim Lombard +22312,Venantino Venantini +233454,Henry Sharp +156633,Tracy Vilar +1432461,Jeff Grossi +61030,Danuel Pipoly +109761,Burke Byrnes +7665,Macdonald Carey +60545,Damon Dash +58044,Tony Noakes +1577018,Larry Tuff +235088,Hua Rong Weng +63275,Sandra McCoy +1318524,Victor Power +591880,Ishia Bennison +1080222,John Petievich +44208,Nigel Bennett +40221,Don Haggerty +1129381,René Le Vant +17257,Elina Löwensohn +6726,Sheryl Lee +123654,Yiu-Cheung Lai +1470325,Jeffrey M. Meyer +46418,Mickey Knox +26975,Steve Talley +97431,Melanie Gutteridge +29382,Carl Lumbly +68750,Robert Townsend +80281,Chad Power +82988,Meagen Fay +47820,Benoît Poelvoorde +23608,Colin Stinton +84481,Courtney Jines +1598,David St. James +62880,Tom Harper +4467,Lars Brygmann +17338,Vanilla Ice +22,Barry Humphries +128154,Ismail Bashey +177522,Kelly Monaco +21247,Debi A. Monahan +40900,Mark Rylance +18269,Brendan Fraser +1550963,William Byrne +231088,Herbert Lomas +1571370,Laurann Rabbitt +103205,Peter Carew +6548,Isabelle Renauld +971458,Jordana Beatty +131775,Geneviève Picot +124660,Hilary Momberger +34210,Peggy Ann Garner +1073785,Daniel Magon +16527,Bill Baldwin +87838,Ary Fontoura +23532,Jason Bateman +1586950,Vincent Malouf +87663,Sverrir Gudnason +1444500,Jeller +1053980,Scott Cummins +1681440,Raymond Thompson +214516,Robert Cait +87269,Ruggero Raimondi +124238,Timothy Quay +2203,Neal McDonough +103833,John Aylward +40551,Stephen Young +1112033,Nicole Muñoz +1045553,Ladd Anderson +95479,Linda Carol +13635,Kristen Johnston +583562,Keith Vitali +1531887,Chela Ruiz +95975,Mark Linn-Baker +31367,Anthony Crivello +21881,Laura Kirk +113513,Phillips Holmes +53891,Najarra Townsend +10696,Famke Janssen +1629434,Sivagorn Muttamara +105164,Kitty Aldridge +1228665,Brian Bovell +131328,Alessandro Momo +4570,Emily Hampshire +94333,Virginia Karns +2276,Sheila Raynor +95725,Henry Armetta +71782,Cate Bauer +13977,Charles D. Brown +81493,Brian Sieve +70772,Kathryn Mullen +44810,Cassandra Peterson +17259,Ashley Artus +1293766,Megan Katherine +55266,Catherine Mary Stewart +207938,Rhonda Doyle +74935,Lauren Storm +60076,Thad Luckinbill +3201,Pruitt Taylor Vince +30458,Henry Bean +1077247,Samia Kerbash +146338,Kathleen Camp +141052,Charles C. Stevenson Jr. +1683650,Gilyak Amagasaki +1188787,James K. Baylis +232174,Indra Ové +140481,Lau Kong +1188792,Chris Slone +173994,Marc Musso +980385,Guy Bates Post +1741943,Chandra Washington +113603,Philippe Uchan +152265,Natalie J. Robb +1003285,Ernest Dancy +1095101,Humberto Elizondo +153277,Phil Tead +1432462,Hank Gum +62891,David Finti +1386344,Kimberly Schwartz +90567,Tomokazu Seki +69311,Valeria Bertuccelli +200079,Erick Carrillo +79648,Hugh Ross +1905154,Elton Burkett +87841,Benny Urquidez +136520,Nancy Martin +1484285,Takayuki Shiho +1880443,Gary Marshal +116487,Stuart Hughes +118487,Elizabeth Cheshire +76133,Chris Demetral +5023,Julienne Davis +117261,Phil Margera +1908,Robert Oliveri +64775,Robert Vito +34890,Bud Osborne +37125,Giuseppe Castellano +1752748,Tiffany Green +134633,Theodore Newton +1561203,Costin Manu +19163,Virginie Ledoyen +2823,Andrzej Graziewicz +13399,Lloyd Bochner +952664,Michael Maccarone +205300,Lonny Ross +119906,Margaret John +1132209,Janie Story +7055,Sienna Guillory +34047,Nigel De Brulier +2395,Whoopi Goldberg +178173,Carol Williard +141770,Matthew Leitch +6163,Adam Goldberg +79646,James Jeter +178411,Douglas Lambert +19783,Marge Redmond +73584,Cosie Costa +1896461,Teruaki Ishiwatari +105060,Chuck Mitchell +1416106,Leontine Nelissen +106991,Robert Adams +14852,James Karen +1781141,James D. White +824,Ethan Suplee +78577,Graham Norton +232182,Chris Morrell +10431,Jennifer Jason Leigh +121238,Hal Taliaferro +51864,Kasi Lemmons +24379,Bernard Blier +65265,Yut Lai So +990108,Nina Lisandrello +37481,Alexander Duda +545766,Yukata Matsushige +53602,Linda Hart +52783,Rachel Bilson +64349,Craig Anton +69013,Kurt Nielsen +1150116,Germán Monzó +11678,Rainn Wilson +4300,Ricky Nelson +54217,Janaya Stephens +138461,Tom Smith +87228,Lana Antonova +1346926,Chun Kwai-Bo +153085,Brandon Brady +17695,Bill Macy +94661,Moss Mossberg +142261,Mike Hodge +10068,Akiko Wakabayashi +1744160,Jaehne Moebius +1178520,Louis Natheaux +60081,Brett Wagner +93035,Oliver Muirhead +1609673,Pat O'Donohue +1916,Biff Yeager +1397911,Riley Osborne +14324,Joss Ackland +1219181,Jesse Collins +150212,Mara Hobel +19900,Daniel Southern +1265136,Denise Sullivan +1596347,Rudy Germane +38559,Christopher Lambert +1854983,Valerio Magrelli +51465,Kenneth Khambula +1781830,Marc Alan Austen +18776,John Irving +95195,Michael Bofshever +122530,Unicorn Chan +35259,Dagmar Schwarz +16106,David Hurst +1616859,Zhang Lian-Zhong +64721,Kevin Spirtas +1781840,Lisa Maris +214729,Terrell Owens +2872,Carmine Coppola +96973,Pedro Armendáriz +230176,Eve +62820,Somah Haaland +13473,Barry Bostwick +1082774,Ruthelma Stevens +1577513,Virginia Cassavetes +549323,Sissi Duparc +80145,Jemma Redgrave +939737,Hugh Sothern +128012,Stephanie Niznik +19794,Eddie Constantine +111305,Simone Paris +1080207,Michael Edward-Stevens +83154,David Muller +65618,J. A. Preston +1547067,Joanna Mihalakis +24705,John Phillips +171871,Gabriel Carpenter +128075,Armando Marra +68842,John Cho +49001,Sarah Chalke +4286,Emma de Caunes +23429,Adam Godley +33657,Aemilia Robinson +222831,R. Michael Givens +5304,"Rodney ""Bear"" Jackson" +32428,William Powell +120761,Thomas Beck +981098,Nora Cecil +100372,Derek Hamilton +14409,David Schwimmer +581350,Soledad Jiménez +1471657,Ray Hendricks +57854,Cheryl Hines +155545,Kathleen Widdoes +18270,Orlando Jones +1209417,Ido Ezra +93165,Ewan Roberts +62014,Barry Miller +41345,Ashley Eckstein +159109,Richard Fullerton +134773,Miriam Owiti +103513,Charly Bravo +131193,Fumiko Okamura +1093258,Joseph Cassese +3361,George Sanders +171472,Maryann Plunkett +68989,Hitoshi Ozawa +1600058,Jerry Brown +10595,Wilfrid Brambell +14358,Marcel Journet +233121,Ronald Maccone +235137,Janet League +1894162,Larry Hollister +65764,Kirsten Bishop +7745,Anna Bache-Wiig +68311,Gilbert Sicotte +333,Evan Jones +235293,Sei Ashina +1429990,Gudmar Wivesson +35323,Jacques Villeret +166606,Tony Genaro +94864,Max Martini +136222,Helen Boll +98241,Angelique Pettyjohn +228,Ed Harris +943779,Wong Wai +11756,Lou Hancock +1076197,Randall Edwin Nelson +183799,Linda Beckett +1096679,Anthony Martins +1502515,Melissa Holgate +91431,Timothy Leary +30469,Akira Kubo +11315,Noah Emmerich +121453,Miguel Castro +80236,Henry Kolker +552473,Peter Weireter +1222049,Makio Inoue +1880598,Mallory Jones +1262961,Ronn Wright +6701,Norbert Weisser +20434,Marek Rozenbaum +555383,Kai-Li Peng +1176592,Mike Kulcsar +42010,Lorena Heranandez +1445662,Arvind Doshi +82963,Tsunehiko Watase +25711,Kevin Cooney +16783,Hannah Herzsprung +140796,Eda Reiss Merin +23497,Drew Tyler Bell +78183,David Tress +26396,Wolf Roth +13324,Paul Scofield +1356548,Fiona Watts +1773793,Kimi Bateman +98879,Lisa Loeb +38103,Kurt Zips +12214,Gillian Anderson +25793,Luciano Conversi +77713,Jordan Brooking +1773776,Hayley Zelniker +29861,Jay Tavare +33269,Dan Albright +963235,Aurian Redson +94974,David Barry Gray +59180,Erica Hubbard +9926,Roland Culver +153165,Philip Ray +132433,Samantha Lagpacan +172200,Simbi Khali +311,Michel Ruben +146011,Colin Stewart +59866,Mindy Lee Raskin +298754,Jennifer Seguin +12406,Paul Le Mat +1234,Tara Reid +6843,Janet Ward +1175742,Lee Burns +38914,Christian Marquand +41088,Jason Segel +1118131,Eva Six +4483,Dustin Hoffman +121796,Takashi Tsukamoto +94027,Santi Sudaros +1781220,Mark A. Keeton +79196,Lena Endre +1018924,Hildegard Neil +38486,Michael Brandner +99350,Russell Hopton +80131,Shirô Namiki +73088,Peter Dalle +196500,Todd Glass +1114469,Carolyn Jania +1038487,Adrián Giampani +10560,Donald Symington +83781,Robert Covarrubias +103999,Jeffrey Falcon +1752790,Chad McFadden +1166141,Christian Lentretien +4590,Russ Meyer +83391,Dolores Hart +60568,Darnell Williams +3872,Daniel Brühl +1192382,Frank Winters +131725,William Lucking +1085249,Hitoshi Ueki +85409,Max Showalter +104631,Harry Bartell +56100,Alistair Petrie +1154468,Billy Dawson +1879801,Jennifer Palichuk +554318,Tomoko Ôtakara +12772,Rick Barker +90000,John Miljan +10593,George Harrison +9069,Bert Lahr +93422,Fran Higgins +2913,Gerhard Bienert +523675,Jack O'Connell +26778,Ellen Chan +551903,Camille Calvet +22091,Robert Sterling +1217752,Roderick Cook +8537,Jonathan Hyde +1444485,Jan Fog +561257,Kimberley Walsh +133559,Arnošt Goldflam +932191,Tammi Katherine Jones +57952,Tianna Sansbury +1172830,Tina Menard +97561,William Finley +54524,Carlos Vicente +1281527,Hilda McLean +196902,Stephanie Astalos-Jones +1216495,Anthony Hamilton +54327,Anna Mouglalis +96067,Dorothea Wolbert +47722,George Cole +21533,Jeremy Childs +3130,Jennifer Beals +1073816,Oliver Block +102955,Kirk Duncan +17020,Conor McEvoy +143032,Walter Green +1584,Mark Hoffman +1847227,Fiona Duncan +95536,John Bowe +67575,Shari Belafonte +78292,Arno Chevrier +1618013,Virginia Romero +83436,Nita Talbot +548025,Tamaki Sawa +26867,Steve Fletcher +1984,Kimberly Scott +170185,Gregg Binkley +1854984,Yu Ming Lun +93491,Will Poulter +1853166,Lawrence Kopp +552515,Kana Kobayashi +96806,Ginzô Sekiguchi +1269082,Hazel Deane +85065,Jack O'Connell +16586,Steve Williams +80146,Martin Donegan +1763429,Amber Hay +25536,Michael Craig +28897,Julie T. Wallace +83780,Georgia Emelin +1735717,David Fishley +81074,Tim Henry +27433,Paolo Villaggio +38701,Mark Hofeling +29159,Harry Meyen +9565,Louise Lasser +1093257,Robert DiPatri +39057,Skip Ward +77484,Kyle Stanger +36836,Nadja Tiller +58108,Rainer Woelk +1386672,Jennifer Paz +1527179,Peter Saville +1872742,Nuno Antunes +1781693,Scott Nicholson +1214403,Maulik Pancholy +29516,Serge Renko +33043,Heinrich Schmieder +12283,Frances Bavier +104011,Paul Szopa +155530,Rebecca Front +29792,David Dukes +157707,Ken Turner +121732,Fabrizio Bentivoglio +16556,Jack Starrett +1676701,Conchita Brando +1480047,Pat Kiernan +936535,Rudi Davies +13358,Purnell Pratt +1281294,The Goldwyn Girls +8903,Dody Goodman +71562,Buck Taylor +1129454,Charlie Gomorra +41436,Andrew Airlie +6549,Lola Naymark +209513,Macon Blair +3245,Frank Reicher +536099,Karan Ashley +1521654,Yari Lorenzo +21490,Peter Onorati +20259,Jana Pallaske +947709,Fred Aldrich +1283909,Karina Colon +93424,Barbara Quinn +8210,Wes Bentley +1188789,Darlene Clair +952996,David McCharen +93531,Jean-Noël Brouté +1699713,Lam Fai-Kan +152463,Justin Monjo +1282698,Perry Wilson +156980,Jane Edith Wilson +1061290,Yoshiko Nakada +1634019,Aidan O'Hare +9145,James Callis +1649569,Voraphark Sarobon +21044,Lynn Collins +90529,Brenda Currin +1841263,Bodi Soham +21624,Judd Nelson +117673,George Dockstader +1580198,Steve Tyler +1537372,Dana Urbánková +87176,David Boat +1281030,Airick Woodhead +84328,Stack Pierce +41298,Jamia Simone Nash +1671975,Donald Gantry +1414190,Christa Fast +43773,Andreas Katsulas +1777973,James Rosin +54852,Danny Bolero +28190,Roger Van Hool +54376,Henri Génès +11902,Robin Bartlett +120745,Claudia Dell +1104843,Albert Gran +26707,Nicholas Ball +49743,Robert Schupp +1046803,Brook Byron +13094,Kenneth Nkosi +64186,Jamshied Sharifi +1232432,Tyrone Bogues +73585,Joe Michael Terry +30487,Peter Crombie +553187,Gianluca Guarrera +87459,Norman Foster +1049361,Senad Bašić +1075079,Mickey Gaines +938097,Feđa Štukan +97880,Maria Ford +30012,Herman J. Mankiewicz +60661,Clemens E. Franek +1313506,Allan Sears +19903,Richard Bremmer +37508,Luis Heredia +140295,Orin Cannon +1109534,Lama Lhundup Woeser +11395,Victor Wong +1348447,Sine Nielsen +41420,Lisa Edelstein +6692,Caroline Goodall +128024,Shiho Fujimura +94968,Corey Carrier +146520,Catherine Ribeiro +24977,Karra Elejalde +1354,Frédérique Feder +6017,Lester Makedonsky +1503027,Elaine Corral Kendall +126559,Maria Zanoli +57907,Morris Day +78324,Jamie Chung +76314,Channon Roe +157204,Carol Worthington +55591,Tygh Runyan +1752319,Becca Sweitzer +62536,Julia Molkhou +110210,Nita Bieber +71172,Chen Chao-jung +1491992,Fulvio Pellegrino +17358,Kim Staunton +944140,Shari Watson +161418,Michael Baseleon +1669,Dean Lennox Kelly +1748112,Denise Holland +200067,Mann Alfonso +27334,Peter Jonfield +1470215,Stephen Buckingham +81563,Neil Brooks Cunningham +116774,David Ramsey +1786487,Jim Prejean +127005,Chris Wilson +77518,Cody Hanford +1225991,Denalda Williams +99790,Giulio Donnini +141400,James W. Gavin +1077893,Brian E. Frankish +262444,Antonio Flores +8728,Eugene Pallette +96970,Anne-Séverine Liotard +8772,Mattia Sbragia +5024,Marie Richardson +1136501,Cielo Muñoz +239955,Akiko Shima +159087,Squire Fridell +9781,Nia Long +1162538,Matías Del Pozo +51720,Tom Daly +12133,Laurie Metcalf +135048,Molly Innes +3482,Chus Lampreave +7167,Don Rickles +1293,Franziska Troegner +227629,Takeo Chii +22252,Leslie Easterbrook +87957,Keith Szarabajka +24826,John Abbott +1897695,Pamela Miles +51042,Niamh Wilson +937248,Brunella Bovo +52908,Collin Chou +93727,Marco Paolini +1850977,Orio Scaduto +15740,Tim McMullan +1671459,Elena Martínez +1126165,James Caffrey +1439598,Perry Christensen +99828,Gil Lamb +34199,Thomas Dekker +13389,Charlie Korsmo +1076202,Peter DePalma +83138,Ian Curtis +975881,Lester Sharpe +63373,Sean Marquette +71819,Karen DiConcetto +121327,Wilbur Mack +110407,Frankie J. Holden +982374,Jeff Ramsey +190781,Jose Gonzales-Gonzales +693,Roshan Seth +75739,Brett Stiller +75959,Beth Buchanan +8614,Jeffrey Voorhees +18280,Brian McCardie +57298,Anne Parillaud +3496,Craig Hall +34447,Douglas Wood +35753,Mark McGrath +1577176,Maria Delgado +77174,Ron Lester +1729780,Priscilla Kovary +11165,Jane Russell +32396,Richard Belzer +1680009,Clare Kirkconnell +1513485,Michel Mourlet +1894155,Jimmy H. Burk +1738563,Martyn Read +953728,Toshishiro Obata +21134,John Slattery +1580379,Judy Hatula +29493,Tim Brooke-Taylor +1685312,Christoph Leonhardt Müller +228604,George Arrendell +1720051,Hocine Rifahi +1881244,Dawn Roach +6140,Hans Henrik Clemensen +55673,Troy Gentile +27553,Bill Laing +3262,James Flavin +1381975,S.S. Simon +1989,Celia Weston +14965,Claire Trevor +975165,Jon 'Bowzer' Bauman +40046,Frank Gallacher +54423,Joe Torry +1749,Leonard Nimoy +1313186,Leo Sulky +148604,Donna Loren +3136,Salma Hayek +854,James Stewart +1397393,Tara Thomas +117091,Heather Headley +69301,Hal Scardino +118641,Stream +109945,Martin West +44149,Yvette Nipar +679,Franka Potente +20767,Samantha Mathis +14303,Basil Radford +20146,Griff Barnett +78279,Masakatsu Funaki +99121,Arch Hall Sr. +15100,Lauren Tom +551832,Midori Yamamoto +1133443,Jackie Winterrose Fullmer +1081944,A.S. Byron +92824,Emotion Cheung +551603,Dampongongtrakul Sawadee +18346,Rae'Ven Larrymore Kelly +343,Taryn Manning +1799815,Jasmine Andrade +224316,Marta Nobili +2609,Leleti Khumalo +1317082,Eddie Coke +84678,Johnny Cash +7178,Murphy Dunne +106844,John Young +125558,Leopold Borkowski +1887361,Balbina +26290,Sybelle Silverphoenix +1281526,Helen Jolly +1595131,Bob Fonseca +71010,Tom Conti +156586,Alex Rodine +92111,Jim Simmons +2931,Lucien Prival +131229,Mark Roberts +18803,Van Heflin +1289041,William Pagan +81974,Joe Devlin +80928,Ann Reinking +181248,Marie-Julie Rivest +1383190,John Warren +1880602,John Weissman +79436,Thelma Louise Carter +1838956,Tabata N'Diaye +30709,John Stuart +76476,Troy Winbush +10402,Alanna Ubach +1228171,Tom Foreman +1374832,Hank Jones +1316261,Marie Albe +74196,Terence Yin +102448,Melody Thomas Scott +948173,Glenn Beck +44235,Ian D. Clark +116588,Jorge Bolani +554575,Kensô Katô +83477,Virginia Field +130724,Merwin Goldsmith +1456745,James Ciccone +101747,Edward Walsh +158377,Terry David Mulligan +72865,Anna Geislerová +1893431,Kit Jee Wong +29308,Oliver Johnston +3594,Julien Bertheau +21818,Lesley Ann Warren +24809,Ina Balin +34904,Enn Reitel +48525,Herman Wirtz +11863,Sarah Michelle Gellar +4326,David H. Kalama Jr. +9786,Jessie Lawrence Ferguson +1879983,Bill Duffy +141067,Forbes Murray +141401,Al Rossi +1351005,Michael Mark +32327,Ken Russell +976644,Leo Bassi +236049,Regan Arnold +1141723,Bryce Walters +1671854,Leonard Lawrence +1646869,Paul Frison +26855,Wi Kuki Kaa +11127,Margaret Rutherford +1061273,Carlos Ramírez +34841,Dan Ferro +126458,Joe Van Moyland +1781824,Craig Johnson +95224,Ivan Dixon +17087,Michael Moore +583595,Philippe Jouannet +7009,Tim Post +58856,Tenzin Thuthob Tsarong +35345,Diana Leblanc +1426037,Maria Andrei +1101310,Milton Nascimento +33457,Amy Aquino +59613,Mike Chute +139360,Will Knickerbocker +52049,Jay Chandrasekhar +88867,Norma Shearer +998535,William Wallace +104907,Lincoln Kilpatrick +73583,Bennett Ohta +40543,John Ortiz +18678,Richard Eastham +3548,Timothy Bateson +1029074,Julius Lavonen +57628,William Snape +82415,John Pinette +1177850,François Duhamel +134340,Edan Gross +98971,Marie Prevost +1081955,Eric Lonsdale +77986,Connie Barr +21431,David Gant +94335,Tito Renaldo +182931,Simon Webb +19471,George Shapiro +164707,Warwick Sims +13963,Una Merkel +1594318,Olga James +9283,Candice Azzara +44101,David Fraser +1286269,Ron Madoff +55152,Campbell Scott +23679,Billy West +579270,Jean Neisser +59673,Jeff Daniel Phillips +79434,Craig Zobel +166387,John Miranda +550821,Rinaldo Smordoni +39015,Eileen Brennan +239396,Pierre Blanchar +1734769,Loretta Jean +1167682,Jacques Branchu +1797592,Mukhtiar Bhai +1516292,Brian Ramage +201733,Janet Bailey +1648605,Elaine Renee Bush +1779785,Nikki Plant +68455,Jerry Nelson +9139,Celia Imrie +1549561,Katherine Hoskins Mackey +20394,Alastair Sim +28683,Michel Dubois +77058,Jung Doo-hong +1134726,Lee Kwan +1703326,Francisco Ledesma +65811,Brent Chapman +85898,Freddie Steele +424,Dallas Roberts +26483,Valerie Perrine +51099,Valérie Zarrouk +1412558,Malila Saint Duval +60722,Nathaniel Arcand +8499,William Windom +119135,Anna Crawford +1307855,Jack Curtis +7431,Kevin Zegers +73831,Godfrey +1422947,Barry Hays +1183446,William Raymond Calhoun +250,Margaret Tyzack +1838961,Boury Kandé +2314,Peter Falk +10356,Marika Green +5280,Ricardo Colares +1203932,Bertrand Gagnon +105810,Selmer Jackson +1116,Alan Ford +11217,Claude Gensac +1089698,James Gandia +18794,Kate Nelligan +1992,Natasha Dorfhuber +37518,Will More +59184,Ernie Lively +54403,Jean-Pierre Posier +106033,Phutharit Prombandal +8224,Alec McCowen +234403,Hanne Hedelund +160261,Helen Stenborg +90369,Lane Chandler +145527,John Friesen +171522,Anthony Ruivivar +95299,Robert Gleckler +933564,Marika Rivera +149214,Vic Polizos +156431,Robert Cicchini +185091,Debra McGrath +1194871,Tommy Karlsson +1002189,Roy Bucko +27773,Jonathan Brandis +108432,Frances Rafferty +97981,Creighton Hale +262738,Malcolm Conrath +38160,Patti D'Arbanville +107770,B. J. Novak +61137,Graham Bell +1668,Emmanuel Idowu +9299,Alexander Folk +106747,Jeff Pomerantz +1815747,David Morris +120540,Otto Yamaoka +590099,José Luis de Vilallonga +781,Paul Reiser +58643,Linda Emond +161860,Don Novello +87421,Doudou Gueye Thiaw +154830,Simon Brooke +1220332,David Richardson +1170808,Jay Belasco +1417927,Thomas Martin +33449,Essie Davis +16666,Kevin Connolly +106935,Kathryn Joosten +132347,Casey Dubois +124659,Robin Kohn +161715,Richard Anders +99825,Al Lewis +1708249,William E. Benson +77990,Elin Tvedt +162587,Aden Gillett +5999,Kati Outinen +52028,Chip Hormess +228915,Gu Bao-Ming +1155164,Vivien Fay +10464,Olga Bisera +1192386,Michael Marcus +88728,Syd Saylor +40210,Hal March +178446,Caroline Barclay +131785,Douglas Barr +4119,John Qualen +88894,Joseph O'Conor +44345,Uwe Beyer +21200,Will Arnett +1801505,Marc Winocourt +78842,Kimberley Davies +1439914,Harry Hollingsworth +71858,Jerry Tondo +115856,Kenneth McGregor +77983,Edward Schultheiss +45396,Ross Partridge +53888,Miles Thompson +18812,Philippe Dumat +178452,Tony Guma +73036,Holly Fields +1484294,Yoshimitsu Yamaguchi +28022,Kenneth Edelson +40276,Gary Dourdan +113781,Peter Sherayko +68382,Peter Elbling +35077,Didier Flamand +1537355,Ladislav Jakim +1290632,Whitney Brown +108665,Daniel Chilson +1757143,Emilio Pedroni +1282173,Dan Eggleston +91612,Arie Verveen +151895,Patrick Whyte +134896,Enid Nelmes +19549,Greta Garbo +135066,Abraham Sofaer +101996,Charles Lang +3367,Florence Bates +11672,Alice Marie Crowe +93592,Jérôme Deschamps +112345,Kaloian Vodenicharov +168402,Charley Lang +57829,Anthony LaPaglia +75315,Danny Bonaduce +1581072,Jimmie Horan +1660163,Rufus Deakin +38354,Yvonne Gamy +56475,Marnix Van Den Broeke +83253,Alan Curtis +165721,Jimmy Murphy +48138,Petrea Burchard +1748109,Carrie Zanoline +15029,Enrico Colantoni +1393883,Peter Mountain +1593827,Ryoichiro Yonekura +178232,Bob Elliott +67849,Mary-Kate Olsen +15322,Valentina Yakunina +1886575,Sean Grennan +1277942,Chan Wai-To +156432,J. Madison Wright +37158,Carmen Ejogo +12226,Michael B. Silver +54808,Mona Hammond +70089,Imogene Coca +1717861,Constantine Hartofolis +18045,Said Tarchani +123057,Lydia Lei +14886,Craig Bierko +15666,Victor Jory +2133,Dina Meyer +1164910,Razia Israeli +1367762,Akemi Goto +56123,Danny Kamekona +102441,Dick Miller +67378,Travis Tedford +94294,Don Porter +1183257,Majka Gillarová +1636212,Harry Stewart +70067,Maria Persson +1193722,Chan Chi-Fai +1482896,Gil Herman +555210,Kenichiro Ito +29068,Ben Cross +34287,Bill Goodwin +21294,Katie Griffin +227782,Leung Kar-Yan +58860,Christopher Neame +21577,Julie-Anne Roth +1196184,William Pullen +565515,Roy Engleman +120545,Eugene Borden +589540,Madame Pâquerette +1213157,Herschel Daugherty +1013613,Donnie Fritts +19189,Elizabeth Berkley +83619,Patrick Mynhardt +4278,Jean-Michel Bernard +139631,J. Larose +1198478,Masaki Shinohara +53575,Diana Greenwood +1003,Jean Reno +6720,Joan Chen +33220,Percy Herbert +87056,Khamani Griffin +82886,Francis Benhamou +963406,Scott Wittman +127516,Adeline De Walt Reynolds +38564,Tre Smith +150956,Michael Tully +42316,John Toles-Bey +29988,Estelle Clark +21530,Steve Burton +60858,Apichart Chusakul +8833,Ralph Lewis +121208,Leah Baird +1385303,Claudia Kaleem +134771,Eric Menyuk +59573,Cory Stewart +84916,Venetta Fields +77979,Kim Haugen +120200,Bob Reeves +56183,Art Evans +60510,Mitch Eakins +1888567,Dalia Shachaf +73252,Seung-Yeon Jo +59292,Cécile Breccia +172888,Patricia Drake +10849,Marek Vašut +17444,Corey Haim +1033087,Bobbie Shaw Chance +1706337,Michael S. Siegel +1029276,Yoshimasa Kondô +19687,Greg Latter +56875,Esmond Knight +85643,Borivoje Todorović +6717,James Marshall +122637,June Hedin +545857,Tim Harrod +50655,Megumi Odaka +1536134,Charles Soldani +33090,Noel Purcell +1866974,Isabelle Costacurta +13253,Kyoko Fukada +70591,Philip Chan Yan-Kin +132488,Gianni Rizzo +1296386,Holly Lisker +590754,Ekkehard Arendt +1209712,Nicole Lindeblad +24502,Jules Sitruk +1262420,Peggy Diggins +120769,Elsa Buchanan +1476391,Ilse Earl +111715,Jenny Parsons +79232,John Burton Jr. +82860,James Craig +137351,Richard Morgan +1035934,Patti Hansen +78105,Keegan MacIntosh +1439252,Gitte Siem +55259,Paul Rodríguez +1539168,Moisés Acevedo +77486,Gerry Salsberg +1275,Billy Drago +9305,Heather Stephens +120734,Eddy Chandler +14740,Christian Aubert +50400,Christopher Hart +99536,Malisa Longo +3609,Robert Donat +6553,Isabelle Adjani +1872724,Antonello Puglisi +223810,Ron Bliss +1008314,George Clutesi +1676552,Florence Moreau +26046,Amy Stiller +190778,Helene Marshall +2550,Dan Shor +219174,Dina Eastwood +27448,Rocky Carroll +88680,John Halloran +166061,Kene Holliday +82097,Ohad Knoller +52852,Kat Dennings +20982,Marton Csokas +16647,Dominic Barto +122095,Gerald Walling +9996,Sean Whalen +36277,Juan Echanove +104582,Kimberly Hyde +57514,Erica Leerhsen +1133285,Jun'ichi Kanemaru +55750,Ted Sweetser +1889600,Stefano Mayore +52462,Betty Buckley +18545,Karin Baal +586412,Sim Andreu +1671463,Roger Steele +1542804,Isadora O'Boto +171352,John Norman Thomas +1624,Cheng Pei-Pei +1120193,Stephen Webber +11613,Saskia Vester +1106204,Shin'ya Ohwada +1174635,Suen Yuet +1006951,Edythe Chapman +34209,Olin Howland +163809,Tanya Berezin +103622,Jackie Searl +29463,Michael Sinelnikoff +63566,Michael Adamthwaite +1218549,Mark O'Hare +237408,Mark Umbers +151349,Cynthia Martells +201667,Doug Allen +73714,Nathalie Roussel +30273,Rosemary DeCamp +16702,Sean Harris +58016,Anna Friel +9142,Paul Brooke +110530,Jerome Benton +695,Roy Chiao +21164,David Brannen +1046251,Lena Lessing +13106,Owen Sejake +1239218,Noelle North +1757134,Brunella Migliaccio +83314,Dewey Martin +1200641,Samba Wane +726,Jack Weston +1235841,Dan Gifford +122098,Alonzo Atkins +1706339,Peter Licassi +97717,Britt Leach +40275,Tim Guinee +11033,Paul Stewart +3652,Manuel Morón +146336,Melinda Haynes +1330759,Andreanne Ross +24708,Renato Terra +19786,Howard McNear +56118,Charlie Tanimoto +11032,Buddy Swan +31393,Shaun Phillips +1890329,Azizeh Mohamadi +120708,Edward Keane +125501,Miguel Oliveira +1397273,Dave Roberts +58319,Jason Scott Lee +68769,Julie Gonzalo +1196909,Junior Johnston +1072887,Hubert Kramar +52458,Daniel Clark +6666,Gunnar Olsson +89934,Suzanne Whang +541462,Glen Gabela +583276,Marisa Smith +1728638,Andreas Fuhrmann +568017,Jill Furse +1090794,José María Linares Rivas +67393,Buddy Hackett +54941,Harriet Medin +87007,Amy Wright +1199750,Cody Harvey +1212123,Leslie Grossman +1415262,Kim Fowley +1330753,Vervi Mauricio +6485,Busta Rhymes +579184,Carl Johan Hviid +151077,Terry Chimes +121046,Diana Darrin +87158,Tina Illman +43140,Tara Lynne O'Neill +20118,Françoise Brion +1032213,Clémence DesRochers +1653085,Valerie Colgan +1366380,Wes Berger +58151,Elisa Donovan +1507121,Teresa Kelly +3568,Patrick Godfrey +11031,Philip Van Zandt +185933,Fredric Abbott +129268,Grant Page +1468686,Jane Isbell +18307,Daniel Dae Kim +87126,Michelle Thrush +157497,John Braden +11042,Jessica Liedberg +1661613,Colton Green +133099,Josef Swickard +102,Deborah Harry +2081,George Murdock +1193343,Knowl Johnson +16380,Michael Graham Cox +68321,Michael Carman +2561,Victor Argo +131023,Manzaburo Umewaka +85117,Ryan Bergmann +20089,Jena Malone +6552,Céline Samie +67883,Renato Giovannoli +6649,Gunnar Björnstrand +78899,Jeffrey Byron +112867,Viveka Seldahl +94947,Robert Ozanne +1109813,Sam Lee +4721,Jill Scott +1021785,Sig Shore +5313,Lena Olin +1580380,Patti McKaye +124977,Thomas Laroppe +26557,Ferdy Mayne +29815,John Boles +145875,Carol Drinkwater +101722,Vanda Godsell +6367,Daniel Brocklebank +2247,George Harris +1832336,Steve Pelot +101365,Anita Berber +152648,Robert Hogan +80289,Jay R. Ferguson +1206235,Richard C. Terry +1795981,Dylan Trowbridge +90614,Heather Dubrow +26008,Gordon Clapp +183066,Daniel Booko +1186226,Sid Ahmed Agoumi +136872,Lara Lindsay +103571,Cindy Weintraub +10071,Tetsurō Tamba +153651,Elizabeth Thompson +1725924,Christopher White +83955,Dagmar Stríbrná +6931,Martin Gabel +24292,Jerry Adler +31696,Isa Miranda +52401,Matthew Harbour +42879,Florentine Lahme +1615010,Maggie Lau Sze-Wai +102957,John Armond +45102,Jon Evans +234489,José Pinto +1723429,Anne Bataille +1459592,William Atkinson +3345,Tito Vuolo +47085,Ronald Guttman +76527,Felicia Day +550497,Koen Crucke +221945,Da'Vone McDonald +557155,Peter Dane +35248,Sylvine Delannoy +4391,Charles Dance +1367255,Andrew Patrick Ralston +1741980,Holly Hargrave +1463812,Emily Mason +2250,Eric Keenleyside +553451,Shogo Nakajima +231170,José Luis López Vázquez +1629438,Binn Kitchachonpong +1118191,Mogens von Gadow +93396,Jacob Tierney +9829,Jacob Smith +91442,Deena Levy +996758,Delaney Driscoll +145601,Louis Negin +18236,Donna Hanover +99600,R.A. Mihailoff +15338,William Mapother +29369,Melanie Griffith +1853212,Brian Mone +13950,Gordon Pinsent +65471,Mimi Kuzyk +944610,Joan Henley +544145,William Mackleprang +1098347,Mitsugorô Bandô +61401,Jeremy Bergman +976171,Philip Maurice Hayes +144304,D.W. Brown +123311,Lora Schroeder +52786,Lisa MacKay +174982,Neil Pearson +72018,Yulian Zhao +76944,Maxine Peake +1209717,Crystal Marie Denha +75890,Anne Tenney +1420903,Homer Dickenson +552162,Kristen Clayton +32392,Steve Inwood +20141,Deborah Kerr +52365,Cerina Vincent +16200,Susan French +58158,Taro Ishida +62760,Zena Grey +84093,Liesel Matthews +1225417,Suzette Llewellyn +35829,Vania Vilers +6555,Guillaume Rannou +1781689,Claudia Lopez +1444545,Morten Lundholm +1348858,John Dair +65167,Scott Cooper +1237536,Ken Kensei +124934,Douglass Watson +98775,Big Boi +1389140,Robert Gardett +120342,Billy Wilkerson +1145852,Park Ji-ah +1182678,MIchael P. Cahill +20810,Joely Richardson +552675,Aiko Nagayama +1481,Lee Weaver +44404,Juliet Mills +72132,Danny Pino +22796,Hans Meyer +21680,Dominique Besnehard +30367,Alisan Porter +87426,William Nadylam +98162,Susan Cabot +1320285,Martin Radimecký +1009324,Jesse Adams +1342659,Steve Griffin +1861057,Menda MacPhail +121122,Lester Dorr +33688,Conrad Roberts +42209,Jenny McShane +21215,Elise Neal +18702,Mark Dacascos +171425,Laura Esterman +1041,Diahnne Abbott +84652,Linda Ridgeway +161932,Jim Rash +30211,Edward Arnold +1180927,Sam Savitsky +1416230,Wolfgang Pissors +57674,Alexa PenaVega +90568,Issei Miyazaki +47457,Cassie Yates +149404,Sachiko Kokubu +1286627,Georgie Cooper +64914,Emily Perkins +553447,Hiro Nagae +11870,Christine Baranski +157951,Race Nelson +158208,Alex Trebek +18468,Gustavo Sánchez Parra +124909,Danny Hoch +1075146,Al Vrkljan +59253,Brian Zarate +13724,Jane Alexander +1405827,James A. Kuhn +78089,George Fargo +43664,Gorô Kishitani +77516,Oliver Clayton-Luce +1453024,Elvin Jones +62835,Susanne Wright +16222,Mary Smith +1202712,Peter Conboy +231228,Elizabeth Threatt +1878506,Tony Helou +35263,Hans-Michael Rehberg +1308762,Jon Roberts +566363,Hubert Noël +8604,Luis Otávio +317776,Nabila Baraka +136690,Andrzej Fedorowicz +46949,Gilda Radner +1673792,Moreau Choir of Notre Dame +58953,Faune A. Chambers +44850,Fern Persons +64895,Anita Yuen +44354,Ingrid Lotarius +58100,Ron Haddrick +54882,Morena Baccarin +194772,Carol Kolb +116299,Saundra McClain +983505,William Meader +102328,Rodd Redwing +65896,Takis Emmanuel +1789269,Liu Yanjin +1781730,Alexandra Tejeda Rieloff +52929,Angie Harmon +1713,Giles New +8318,Brian Blessed +161939,Cindy Katz +20625,Robert Miranda +7177,"Donald ""Duck"" Dunn" +110449,Jennifer McKinney +33262,Stuart Greer +1231626,Paul Trussell +204210,Hlomla Dandala +99943,Phil Laurenson +142763,Dennis Mientka +90643,Mervyn Johns +1219576,Terry Bozeman +1384809,Jack Young +17679,Dalia Hernández +108023,Bill Edwards +1072014,Seiji Nishimura +21876,Yvette Mimieux +1624329,Teruo Aragaki +32907,Nick Swardson +90175,David Stambaugh +1265417,Branko Andric +18861,Zero Mostel +1595128,Steve Wertheimer +154625,Pamela Dunlap +6326,Pat Skipper +134114,Gavin Millar +71644,Rio Kanno +28743,John Lynch +1024546,Leland Harris +138000,Christopher Durang +1116374,Marion Moseley +79693,Robbie Hoad +1664787,Maurice Magalon +523,Tom Jones +2694,Josh Charles +1209711,Justin Rex +262950,John Bindon +33153,Pierrino Mascarino +131012,Yumeji Tsukioka +125556,Ewart G. Morrison +180686,Mif +225612,Chanel Cresswell +111489,Buck Kartalian +1547962,Frank O'Brien +18015,Andrea Corr +156011,Stuart Stone +326033,Georges Casati +9143,Felicity Montagu +97217,Peter Gawthorne +133357,Joel Heyman +1381587,Madame De Bodamere +552413,Stephen Haggard +93800,James Wainwright +35070,Akshay Kumar +12249,Sessue Hayakawa +35035,Townsend Coleman +1674914,Oleg Ferdman +222487,Nelson Vasquez +115609,Roberto Nobile +212797,Geoffrey Nauffts +90723,Kathryn Kirkpatrick +59962,Glynnis O'Connor +584994,Raymond Waring +116110,Gillian Gould +143367,Kuniko Igawa +1676998,John De Bello +176201,Grant Masters +128123,Duchess Tomasello +1176105,Philippe Beautier +1741958,Jeff Gibbs +87822,Damon Wayans Jr. +1172948,Mickey Daniels +63902,Roxanne Kernohan +46946,Joseph Bologna +108241,Jonathan Ledford +60415,Skye Bennett +6858,Mike Vogel +46711,Robert Keith +1360674,Lys Assia +14470,Sean Baker +18993,Stuart Graham +1888566,Roman Hazanowski +94325,Lotte Palfi Andor +129614,Jo An +1188788,Velma J. Bowen +1222016,Ernest Perry Jr. +79502,Richard Strange +1264490,Steve Mizerak +103184,Peter Pitsch +67524,Leo Rossi +114808,Gordon Harker +1892882,Dominique Toussaint +589001,Harry Pilcer +79860,Kris Krishnamma +1297174,Cynthia Murell +2278,Aubrey Morris +1183444,Frank W. Inness +66776,Liza Minnelli +3234,Joan Cusack +64908,Lisa Gay Hamilton +77547,Brady Bluhm +49327,Don Franklin +106154,Wilfrid Lawson +240185,Fan Mei-Sheng +103936,Aline Towne +5896,Wilson Guerrero +1132472,Nicolas Cade +143334,Ilaria Tommasino +105786,Arron Shiver +1484310,Tokie Kanda +121939,Michael Countryman +132494,Mary Howard +34060,Lisa Coleman +99827,Sheila Bromley +1364452,Karoliina Kudjoi +104301,Judy Campbell +17690,Rodolfo Palacios +1201220,Brenda Schad +231607,Andrée Damant +32775,Lenard Norris +189592,Kent Perkins +3731,Marie Pillet +105990,Frank Nelson +167220,Camille LaChe Smith +1199088,Sarah Maclay +72318,Tracy O'Flaherty +1364580,Petar Temelkovski +103,Mark Ruffalo +1348440,Dan Dommer +111956,Junko Yashiro +16905,Ahmad Riaz +553774,Claudia Haro +552502,Shuri Matsuda +1786662,Tracy Britton +146706,Jenny Lee Wright +1507179,George Stidham +107540,Michael Trubshawe +75201,Tom Tammi +46192,Josef Dahmen +29934,Brett Rice +1633263,Christian Magnani +1629437,Kachormsak Naruepatr +980328,Shaun Tomson +1178956,Gam Dai +26467,Kyra Sedgwick +1132779,Mike Tellegen +40450,Yo Oizumi +1858658,Elizabeth Marangoni +976857,Mario Arteaga +51215,Aeryk Egan +68532,Gabriele Lafari +6860,Jimmy Bennett +79248,Doris Dowling +15153,Wendell Wellman +1270524,Willy Kuskin +68162,Riccardo Zinna +34241,Stanley Brown +99278,Topper Headon +56622,Scott Peden +81375,Colleen Flynn +59174,America Ferrera +2074,Michael Mark Edmondson +47281,Mamie Gummer +1228624,Todd Gordon +1797593,Suraj Kumar +17933,Paul Perri +43992,Bob Hannah +9286,Louis Eppolito +1444506,Kitt Nielsen +1286738,Rick Williamson +1497890,Tony Marlow +601472,Carol Nugent +227308,Virgilio Riento +240745,Clifton Lloyd Bryan +1383,Thomas Robins +176198,Jake Nightingale +1184833,Enrico Bologna +121276,Victor Love +39008,Claudio Brook +1890719,Mary McDonald Gershon +1127498,Francis von Zerneck +87131,Lenny Clarke +1741815,Lori Yohe +72988,Dominic Colón +177898,Nellie Sciutto +1209730,George F. Watson +29523,Martine Carol +222968,Shingo Yamashiro +1109920,Nicole Marie Lenz +89585,Catherine Lloyd Burns +48039,Paul Otto +43449,Tara Carroll +975731,Jordan Christopher Michael +1092484,Bruce Mitchell +1465098,Rex Corley +1325073,Susanna Wellenbrink +43445,Melissa Yvonne Lewis +106627,Basil Dignam +1896891,Allan Huntley +3140,Marc Lawrence +18293,Kathleen York +2022,Catherine Hicks +164785,Robert Q. Lewis +157467,Blackie Dammett +129889,Matthew Wilder +2751,Richard Davalos +39574,Deborah Shelton +9763,Geneviève Page +1229514,Danny Murphy +71978,Udom Promma +84232,Sally Forrest +8568,Daniel Filho +90186,Tiger Haynes +1225217,Alan Shearer +1752339,Shawn Byfield +1396841,Stanley Ackerman +1527161,Donald Sellers +47714,Martine McCutcheon +1152418,James Monks +12647,Armin Mueller-Stahl +1091287,Maiko Mori +7136,William James Myers +79156,Liang Qi +26859,Simon Adams +1116510,Sosuke Ikematsu +20145,Raymond Greenleaf +427,Sandra Ellis Lafferty +1120476,Ryûji Nakagi +226744,Junkichi Orimoto +950091,Dillon Evans +29900,Jay Adams +11854,Ian Charleson +1369418,Harry Burkhardt +90161,Tomomitsu Yamaguchi +1144689,Wilda Bennett +101606,Hamilton Camp +208920,James Walker +1368723,Cameron Oppenheimer +1577178,Francisco Farias +501,Dakota Fanning +15377,Burt Bulos +92315,Chris Fehn +130749,Jason Antoon +1481118,Sôkichi Maki +1158858,Roy Cooper +3536,Marie-France Pisier +11039,Sam Kessel +1425449,Aleksandar Šeksan +94070,Eduard Franz +2857,Libby Villari +98454,Pietro Cammarata +4333,Evan Slater +106726,Sandy McPeak +10410,Danny Lloyd +1267795,Justin Robinson +1531888,Aníbal Morixe +1749203,Peter Stockbridge +1251744,Jerry Keller +77682,John Carlisle +1622585,George Hine +141398,Adrianne Herman +41884,Jasper Polish +14419,Glen Cavender +7269,George Catalano +79701,Jacquelynne Willcox +1507176,Philip Tuersky +1188785,Jesse Adams +740,Julian Glover +556713,Harold Agnew +9560,Ellen Burstyn +1183499,Zeng Qiu-Sheng +1222277,Camilla Scott +183027,Ken Chandler +79525,Anyury Trotman +1553094,Delia Salvi +39117,Meg Tilly +67567,Christopher Cazenove +99751,Constance Worth +1059889,Keiko Sawai +545048,Georges Lannes +1250598,Thomas Gumpert +104635,Natalie Brown +1156984,Jay Hunt +6937,Lawrence Tierney +84225,Gil Birmingham +142262,Peter O'Hara +1466149,Victor Kilian Jr. +52119,Megan Mullally +6283,Michael Nyqvist +1895634,Ceri Cunnington +25544,James Pickens Jr. +1136500,Jesus Martinez +33833,Al Fann +83560,Anthony Chan +1479153,Mitsuo Tsuda +1177243,Machiko Naka +1673212,Diane Hetfield +1491524,Jacques Famery +1417388,Constant Franke +177475,Matt Besser +231919,Ann-Marie Gyllenspetz +19889,Bob Dishy +66556,Emily Nelson +11825,Maggie Grace +563094,Les Rubie +1744171,Henry D. Zapata +551511,Sabrina Allen +20522,Robert Cavanah +231256,Johnny Russell +1485643,Alice Cadogan +54345,Moishe Rosenfeld +233513,Tony Peers +72117,Matt Birman +552408,Hay Petrie +150932,Robert C. Kirk +176986,Deborah Taylor +55568,Mark Lutz +102794,Mitzi McCall +170924,David Little +30566,Tôru Watanabe +43138,Ian McElhinney +22461,Vincent Gallo +4116,Madeleine Lebeau +80478,Théogène Barasa +134514,Geoffrey Carey +298410,Keegan-Michael Key +13331,Jack Gwillim +970218,Mellany Gandara +15337,John Polson +552526,Andre B. Blake +1773867,David M. Francis +36282,Gloria Muñoz +19265,Khandi Alexander +118132,Sam Coppola +19578,Alexis Arquette +584846,Lucien Pascal +1250057,Pawarith Monkolpisit +247622,Elizabeth Ercy +9893,Aurore Clément +1661593,Vikki Schnurr +189880,Tatiana Abracos +119898,Astrid Allwyn +93008,Omillio Sparks +84163,Matt Borlenghi +59255,Mitch Hedberg +1684213,Susan Daniel +1591225,Andrew Amador +12889,Ray Baker +17093,Eduardo Noriega +152943,Macon McCalman +11665,Michael Angarano +184793,Jane Hallaren +1741944,Cora Cardona +106553,Stephanie Bachelor +81054,Nicolas Duvauchelle +5047,Veronica Cartwright +71888,Lynnsee Provence +1582010,Joy Galmut +553492,Violet Farebrother +91260,Russ Conway +1355601,Dante Palminteri +121240,Lynton Brent +78052,Ella Raines +168247,Sam Hiona +1758314,Manuel Cuadros Barr +74862,Masanobu Ando +46853,Norma Aleandro +1896459,Kuniyasu Hayashi +9208,Robert Wagner +49148,Calista Flockhart +85921,Joseph Hieu +1193682,Greg Swanson +172757,Eric Schneider +122306,Driss Roukhe +10360,Robert Prosky +1411319,Kiyotaka Ueno +1773449,Lee Dawson +1072934,Daniel Nunez +1535191,Tetsushi Yamazaki +21245,Greta Scacchi +118617,Nicholas Woodeson +4113,Claude Rains +19485,Tom Hallick +1673801,Jack Banta +82594,Shevonne Durkin +1433893,Lu Elrod +156963,Toshi Toda +1075087,Jerem Goodwin +134263,Ichirô Sugai +974929,Evangelina Sosa +190,Clint Eastwood +5565,Rik Battaglia +1256066,Paul Brightwell +58423,Richard Jaeckel +15193,Herbie Hancock +53807,Armie Hammer +103062,Franco Trevisi +18956,Norman Golightly +121068,Rudy Sooter +15358,Vic Armstrong +1187262,Dee Jay Jackson +1114928,Carol Teitel +16587,Don Collins +949598,Jeff DeBenning +51102,Annelise Hesme +552457,Coyote Shivers +1229178,Lucy Sheen +1420994,Louise Brien +1089170,Paul Greenstein +71824,Erik Jensen +8198,Ulrich Tukur +13443,Laura Albert +40009,Matt Frewer +42601,Brid Brennan +73172,Jeremy Clyde +62246,Amy Matysio +1316258,Tony Lemiere +16828,Chris Evans +1684215,Gérard Garino +1748126,Bob Quinn +78384,Steve Levitt +11088,Barry Tubb +1077898,Andrew Nason +1076551,Gary Joseph Thorup +9979,Peter Coyote +14262,Capucine +132536,Ivan F. Simpson +3384,Peter Mann +932719,Jeff Gordon +5731,Tom Helmore +13420,Ellen Greene +1073272,Roger Llewellyn +1232089,Jamie Lomas +1269,Kevin Costner +1330750,Jeremy Thibodeau +46582,Hakuryu +1538212,Luis Miguel Dominguín +1257594,Kim Min-joon +3261,Steve Clemente +1398493,A. George Smith +41776,Veit Stübner +1357126,Claire de Lorez +120786,Ralph Lewis +1092534,Pep Sais +19239,Judith Ivey +206398,John Cenatiempo +71649,Paul Bernd +30156,Walter Connolly +22090,Barbara Eden +142472,Sanae Nakahara +1096850,Charles Stevens +78144,Austin Williams +120756,Hilda Vaughn +1235592,Irving Mitchell +34320,Paul Harvey +1464000,Eugen des Montagnes +2565,Yves Montand +86014,Jackie Shroff +551847,Nobuyo Tsuda +25147,Tony Hale +117191,David Nott +1748182,Melanie A. Gage +1185258,Jackson Warris +80416,Richard McGonagle +1749195,Elias Perkins McCook +51186,Robert Gray +1339475,Christine Harbort +2750,Julie Harris +3137,Paul Calderon +524,Natalie Portman +107667,Liya Akhedzhakova +125559,Claude Gambier +1620869,Zhang Shu +149105,Phyllis Gordon +9291,Michael Shamus Wiles +90546,Andrew Schofield +1237372,Sal Richards +41957,Robert Stephens +1333582,Martin Murphy +2777,Rochelle Hudson +59068,Declan Donnelly +1345984,Mehraveh Sharifinia +1469190,Ron Schuitemaker +70119,Catherine Spaak +1629451,Teranet Jongaramrungrueng +1150926,Liz Liew +90198,Lyman Ward +51502,Afida Tahri +1629445,Tanapon Chansming +13092,Jerry Mofokeng +228963,Cece Bullard +79718,Carmel Johnson +1811,Randy Quaid +120718,Leslie Denison +997751,Lew Harvey +21485,Blake Clark +16243,Rolf Becker +14950,Jim Norton +109988,Sheena Easton +36219,Marsha Thomason +1781140,Tim Harris +1074165,Bertina Macauley +57410,Héctor Jiménez +172734,Don Yesso +104794,Ishmael Harris +1609665,Jill Foster +103347,Ramsay Ames +7677,De'voreaux White +228431,Hannah Tointon +977444,Jos Laniado +87707,John Ventimiglia +87835,Glória Pires +3710,Jaimz Woolvett +242414,Walter Massey +63859,Scott Gibson +141599,Steve London +9575,Jada Pinkett Smith +6180,Cheryl Howard +136309,Andre Odendaal +1139746,Stellar Bennett +3027,Stephen King +33666,Georgina Grenville +1252726,Roberta Taylor +1234558,Phil Harvey +1629448,Natraya Rotthirawanit +20739,Adam Shankman +20341,Makoto Ashikawa +1800178,Divina Cook +1105030,Natalia Vodianova +40311,Adrian Scarborough +1778248,Lily Jackson +115482,Agustín González +582861,Laurent Jumeaucourt +119950,Claudio Bigagli +99945,Ike Ogut +1038484,Carlos Rossi +160737,Linda Marsh +62834,Ryun Yu +1674908,Kim D. Cannon +25784,Anna Orso +65239,Susan Ward +75696,Melissa De Sousa +216255,Allan McClelland +1244,Jonathan Rhys Meyers +1330754,Charles Papasoff +181081,Jussie Smollett +97719,Leo Geter +18190,Justin Cooper +7139,Norman Alden +155917,Jean Sincere +1469189,Klavertje Patijn +121323,Bess Flowers +30686,J. Carrol Naish +125483,Tilly Losch +1193683,Jim Chad +12801,Razaaq Adoti +1265404,Alex Ross +33336,Gina Holden +55582,James Francis Ginty +1456541,Jeffrey P. Thompson +129659,Richard Messing +10029,André Morell +1773872,Jennifer Schlueter +78940,Michael Goodliffe +214666,Robin Johnson +11673,J.J. Cohen +1882508,Chris Winfield +1034534,Leonard Knight +1896871,Peggy Lynch +116565,Pitt Herbert +120797,Rita Quigley +1092896,Hideo Sugawara +97720,Tara Buckman +59882,Paz de la Huerta +31940,Fiona Walker +81099,Scott Wentworth +1197045,Kathy LaCommare +134020,Isao Yamagata +1463216,Frank H. Wilson +146519,Geneviève Galéa +638709,Gabriel Molinelli +1230690,Sean Tweedley +16808,Matthias Schweighöfer +106506,Robert F. Simon +99815,Chick Vennera +179149,Laurie Mock +1889107,Sarah Nolan +1773781,Tracy Kay +144062,Mary Eaton +81134,Oana Pellea +9315,Marilyn Manson +18944,Thomas Limpinsel +104418,Miles Chapin +85890,Amrita Rao +1661610,Arlene Martin +1405,Zbigniew Zapasiewicz +115858,Cotter Smith +7672,Reginald VelJohnson +71520,Scott Whyte +134819,Ellen Lowe +559838,Kent Fuher +50973,Marina Ghane +8262,L.Q. Jones +27112,Terence Kelly +147054,Brendan Dempsey +1699694,Vincent Wang +555631,Judy Ongg +394525,Stephen Vercoe +5320,Leslie Caron +138211,Gabriele Torrei +61138,Kaitlyn McMillan +1953,Casey Siemaszko +2535,Vivica A. Fox +123831,Jack Robinson +1646172,Sally Gross +1900,Shaobo Qin +59674,Ben Bray +1341053,James Gleason +11715,Polly Holliday +143232,Simeon Andrews +29878,Dmitry Chepovetsky +3091,Al Lettieri +53999,Eileen Walsh +25309,Jim Storm +199072,Terry Downes +34383,Stefan Kurt +33532,Stark Sands +58647,Jesse Borrego +11859,John Mills +1894154,Joe Massangale +1265372,Dolina MacLennan +86003,Harry Lewis +67832,Rachael Lillis +153694,Bethel Leslie +34745,Jimmy Durante +1221980,Neil Bell +82777,Annette Funicello +83456,Michael Trucco +6443,Robert Milli +1542813,Parsan Singh +123633,Meg Myles +567256,Carol Delay +61659,Chris Messina +1493007,Ali Bakhsi +7556,Silvana Bosi +165165,Frances Mercer +1391496,Joey Green +189718,Jeffrey Ballard +21700,Christopher S. Capp +551678,Josef Fiala +80426,Yan Feldman +52792,Maya Rudolph +53976,Nitish Pandey +67289,Eleanor Audley +1092242,Pierre Olaf +87005,Boris Smorchkov +17027,Charlene McKenna +1741437,Micah West +86434,Joe Alaskey +1806056,Rogheih Moharami +1212446,Tyce Diorio +83907,Roger Livesey +140095,María Vico +35350,Marc Singer +16922,Jean-Paul Rouve +1195675,Deke Anderson +15866,Nicholas Love +147733,Pamela Tola +73132,Marco Rodríguez +4969,Lionel Stander +2171,Griffin Dunne +66843,Anders Matthesen +27397,Anton Lesser +94089,James Lew +13997,June Lockhart +15501,William Ruane +1581375,Irvin Mosley Jr. +1039612,Damon Butler +78922,Rajat Kapoor +54193,Sergio Di Zio +82542,Kei Tani +160374,David Ursin +32138,Jean Hersholt +2414,Artus de Penguern +24383,Victor Garrivier +562340,Yuval Segal +20162,Natasha Richardson +182691,Ron Johnson +1535176,Jacob Klaffke +179702,Bob Joles +1037922,Giuseppe Brignoli +33834,Ele Keats +11679,Erin Foley +8434,Cindy Williams +3034,Corey Feldman +15211,Valérie Kaprisky +1778144,Per Ottosson +1688874,Sharron Matthews +1103,Bill Duke +94979,Keith Scott +1739330,Victoria Nairn +149671,William Forward +161745,Jacqueline Susann +1265393,Donald A. Feeney +952815,Joseph Marievsky +85344,Anne Crawford +68014,Ben Silverstone +129317,Robert Conrad +571504,Rodney Pike +67913,Henry Simmons +449,Jay Baruchel +47615,Tara Fitzgerald +154693,Peter Siragusa +34040,Anna Henkel +143800,Billy Whitaker +75755,Anthony Jensen +23967,Mary Ellen Trainor +1535177,Stefan Kolosko +146628,Souad Amidou +1594622,Jacqueline Dai +1720980,Matt Alexander +1041572,Dennis Cubic +105002,Rick Peters +86046,Wes Robinson +1425450,Almir Ćehajić +1609263,Afa Thompson +26199,Jonathan Ibbotson +141354,Nicola Walker +37153,Zoë Kravitz +47886,Jorge Luke +72933,Ryôsuke Miki +1234239,Dan Clark +3044,Scott Beach +1850008,Troy Dunlap +147907,Peter Hook +57206,Sally Potter +36633,Irineo Alvarez +54754,Viva +50877,Jill Hennessy +91817,Antonio Corevi +83454,Barbara Werle +154114,Adilah Barnes +1752754,Mary McCandless +18274,Michael Haley +1219901,Colin Quinn +1647611,Frank Bennett +1238442,Samantha Power +1311372,Carin Moffat +125557,William Rogers +116121,Chuck Dorsett +232472,Jonas Falk +1661656,Ashley H. Wilkinson +114287,Joan Tetzel +126836,Charles Sullivan +50586,Alex Neuberger +1544025,Myrtle Anderson +1879506,Karen DeConcini +135044,Mick Maharg +24298,Gérard Blain +3735,Dominik Castell +8901,Edd Byrnes +5686,Caterina Boratto +42711,Ty Olsson +73022,Robert Culp +1511945,Waclaw Rekwart +1415345,Fred Cavens +129346,Malcolm Storry +1107034,Karen Alston +1065,Thomas F. Wilson +89522,Minta Durfee +1646171,Richard Bellamy +21356,D.B. Woodside +30846,Jim Davis +1215378,John Harrington Bland +55907,Lucy Gutteridge +25787,Ava Gardner +228499,Marisa Porcel +60080,Ryan Slattery +948553,Kevin Breslin +2877,Ralph Macchio +79192,Sverre Porsanger +112214,Eugenia Leñero +1249959,Jakki Degg +1263,Lynn Stalmaster +78142,Graham Patrick Martin +1177458,Maéva Nadon +2713,Linda Hamilton +99097,Kelli McCarty +1203931,Mignon Elkins +1486720,Sessel Anne Johnson +41296,Aaron Staton +1619138,Susan Lloyd +8979,Patrick Malahide +141450,Mel Smith +62938,Ho Hon Chou +551856,Chika Kimura +83548,Peter Gunn +40036,Taraji P. Henson +3982,Xander Berkeley +59166,Michael Guarino Jr. +1066358,Juan García +120257,Joe D'Angerio +1163350,Buddy Gorman +12002,Tullio Carminati +1116943,Cheryl Guttridge +1697718,Christof Veillon +29992,Alice Mildred Puter +13786,Whit Bissell +142455,Fujio Tokita +94331,Felix Knight +57349,Bubba Smith +34846,Jennifer Gimenez +146214,Yves Neff +15326,Gregory Apps +12121,Cliff Potts +124237,Stephen Quay +19299,Eamonn Walker +385470,Charles Sherlock +1856479,Don Henenlotter +5319,Ron Cook +1744180,Lily Gareth +113637,Sonia Rangan +1609233,Jody Kono +6463,Dub Taylor +1188779,Carolyn Baeumler +1853214,Brad Norton +6844,Dom DeLuise +1773791,Banks McClintock +59919,Russell Brand +4070,Grace Kelly +66811,David Huffman +83196,Jessica Lundy +123308,John Bekavac +1331758,Carl Deloro +1381435,Hanna-Mari Karhinen +769,Martin Brest +105824,Martin Miller +79876,Joan Oliver +85970,Neil Edmond +1393353,Debrah Ellen Waller +1332532,Laurence Herder +98633,Brandon Carroll +1410494,Betsy Monroe +827,Elliott Gould +1077329,Christine Harder +164433,Lanette Ware +139,Uma Thurman +103933,Tico Wells +1206583,George Kezas +1846,André Hennicke +81975,Shimen Ruskin +83754,Roy Castle +1194430,Alice Spivak +25532,Philip Jackson +131005,Cynthia Patrick +1441480,Meenal Petal +1468512,Brooke L. Berry +1078659,Patrick Ludlow +14061,Jacqueline Bisset +15441,Mili Avital +6450,Faye Dunaway +52834,Carol Lawes +1741941,Matthew Scott Wilcox +1738560,Richard Moore +1015037,Chan Yau-Hau +159327,Terrence Beasor +39199,Valérie Lagrange +10922,Tyrone Power +182951,Rod Wilson +114930,Jacque Gray +1096097,Vicki Darnell +2098,Carleton Young +44419,Peter Cellier +30277,Douglas Croft +136283,Tracy Pfau +79521,Lila Munro +1271024,Huey White +83739,Ingrid Pitt +2143,Avner Garbi +41264,Pamela Bellwood +48580,Christopher King +1901813,Heinz Niklaus +96498,Jeanne Cooper +225022,Andrés Lima +204880,Tyler Poelle +229639,Deon Stewardson +150186,Edith Jefferson +133573,Joel Marston +142759,Jeri Lynn Cohen +90039,Chip Zien +67569,Steven M. Martin +86830,Chef Milani +1535173,Nils Brück +6003,Lisa Lindgren +1197732,Glenn Ruth +1360193,Corinne Skinner-Carter +20290,Garrett Lombard +27551,Tom Stoviak +143034,Philippe Asselin +15186,Bill Hickman +35214,Gabriel Jabbour +70564,Patricia Owens +106487,Hilary Shepard +17580,John Vernon +18615,Akira Takarada +63706,Renji Ishibashi +115460,Malcolm Atterbury +1542817,Tabatha Allen +554578,Setsuko Shinoi +124554,Harry Holman +134677,Kôkichi Takada +14672,Michael Winslow +136519,Andrea Lowe +53256,Terry Crews +118695,Han Min +55775,Katie Cassidy +1872805,Dagny Hultgreen +9349,Dane A. Davis +72056,George Grizzard +48,Sean Bean +7571,Blair Brown +1255409,Kim Shi-hoo +41232,Jessica Walter +81422,Serge Thériault +14639,Mel Brooks +64929,Jack Gilford +23310,Rufus Thomas +128926,Bekim Fehmiu +3072,Daniel Lapaine +3204,Lanny Flaherty +141521,Walter Sparrow +56924,Nestor Paiva +77948,Selena Gomez +25782,Peter Heinze +1851421,Pamela Carter +43413,Vikram Gokhale +938749,Raoul Hoffnung +58369,Alexandra Breckenridge +39308,Horatius Häberle +128120,Dawn McMillan +119101,Rony Bridges +20835,Maggie Renzi +93967,Mark Dignam +24629,Michel Galabru +1192378,Judah Lazarus +100112,Florence L. Afuma +18405,Peter Berling +233969,Daniel Rohr +1765264,Angel Sande +47652,Martin Kemp +109625,Robert Viharo +125500,Marcelo Chaparro +47777,Anne Kent +87520,Yuki Shimoda +1790430,Paul Di Pinto +18558,Jean-Louis Richard +5279,Elisabete Cunha Rocha +16974,Laia Marull +21284,Ann Selepegno +1386479,Анна Фроловцева +28416,Frederick Coffin +1661634,Jonathan Giordano +1661615,Lisa LeGuillou +126852,Maria Cordero +79893,Catherine Gosling Fuller +71727,Betty White +2649,Philip Coolidge +51303,Jeff Wolfe +72317,Georgia Fitch +96850,Don DeFore +104059,Susan Barnes +55315,Daniel E. Smith +26293,Rachael Bella +77029,Corey Page +1468060,Vallejo Gantner +1356189,Hon Yee-Sang +259,Vanessa Bauche +1169765,Carmen Martínez Sierra +23627,Patricia Kalember +1187947,Bryan 'Slim' Hightower +94343,Marilyn Maxwell +74843,Don James +27237,G. W. Bailey +55666,Tanie Kitabayashi +1239954,Pat O'Malley +50235,Michael C. Gwynne +45107,Jackie Illman +31508,Reed Diamond +982183,Heidi McNeal +1127486,Koen van Impe +1270519,Karen Fields +1348454,Michael Hasselflug +552470,Ali Gage +1223848,Barry Kramer +1006368,Karen Kahn +999736,Bianca Hunter +91432,Jerry Rubin +1675551,Hsu Kuei-ying +1338670,Joy Zapata +48959,Barry Jones +582202,Mark Deakins +97443,Mark Barratt +21354,Russell Wong +4094,Jack Kruschen +1723449,Marion Delbez +135047,Stephen Sloan +12282,Michael Rennie +75353,Adam Rich +212429,Italia Ricci +1708724,Allan Kent +8180,Mo Gallini +1281020,Dwane McLean +141397,Elizabeth James +83339,Paul Provenza +1463005,Christopher Cozier +66477,Henryk Guzek +19754,Tony Cox +569,Ethan Hawke +1629444,Saifon Nanthawanchal +76181,Sigrid Thornton +77588,Howard George +222508,Michel Qissi +143438,Kaycee Moore +21593,Jason Biggs +1416114,Gerda Marchand +93151,Joshua John Miller +30112,Glenn Strange +1749223,Oscar Orosco +79734,Gretchen Corbett +30158,Jameson Thomas +42020,Ammel Rodrigo Mendoza +60801,Oscar A. Colon +78775,Mary Webster +10727,John Hannah +27550,Bob Tracey +1229062,Elizabeth Edmonds +15625,Lawrence Dobkin +1229902,Dave Anderson +1168781,Akira Yamamoto +247325,Barbara White +6466,Tom Troupe +1553379,Paul Thornton +976738,Alex Kelly +1127147,George Strus +11913,Rhonda Dotson +82442,Phillip Rhee +1215193,Laura Crossley +13731,Nicolas Coster +1537647,Jaroslav Bendl +101510,Verina Greenlaw +584336,Adriana Aizemberg +388960,Nick Stewart +59405,Jerry Minor +1537648,Frantisek Prazak +77886,Plácido Domingo +85227,Ion Sapdaru +111585,Ottola Nesmith +45041,Judith Hoag +79856,Tony Maudsley +12497,Farley Granger +583428,Lance Edwards +141070,Gertrude Astor +1776453,Josh Prince +9865,Leif Erickson +1238069,William Warfield +297106,Jesper Lohmann +3370,Edward Fielding +4001,Simon Callow +17067,Karoline Herfurth +66071,Charlotte Rae +89292,Elizabeth Bogush +92271,Bill Corday +77982,Christian Skolmen +1879482,Frieda Smith +1776509,Jessie Rice-Holiday +151142,Michael Praed +27141,Kim Kondrashoff +179210,Jessamine Milner +82645,Jeff Seymour +565350,Susan Richards +1131540,Lee Hughes +96064,Paul Cavanagh +183155,John Gill +1513190,James Timmons +1551797,Joss Skottowe +59964,Robert Reed +190119,Warner Shook +39952,Maurice Denham +552542,Kinzoh Sakura +1075017,Georg Olden +7121,Jerzy Zelnik +1769717,Maeng Bong-Hak +29239,Michael James Ford +35586,Irina Demick +584143,Yukiyoshi Ozawa +100614,Jim McKrell +1089967,Dolores Judson +1609636,Maura O'Malley +1943,John McGiver +130420,Helen Craig +12099,Raman Hui +118257,Bernard Nedell +119415,Pearce Quigley +10647,Klaus Maria Brandauer +42745,Steve Antin +2128,Leigh Whannell +138622,Christian Andrews +184459,Jillian McWhirter +180141,Derrex Brady +113741,Yusuke Hirayama +146498,Rosine Favey +558445,John Barrie +1215346,Mike Damus +146013,Gerard Carlin +552586,Motoharu Tamura +60887,Leanne Cochran +88082,Katy Louise Saunders +130346,Eugene Iglesias +57574,Shauna Macdonald +1015002,Meikyô Yamada +157914,Tracy Arnold +1872759,Fiona Roeske +100899,Adolf Klein +1111831,Michael Logan +16314,Margarita Lozano +555256,Yorie Yamashita +1077822,Tony Dolan +1184834,Vincenzo Tranchina +949253,Alfie Scopp +160082,Justin Lazard +1648164,Tony Guida +6565,Victor Arnold +1850009,Joe Downey +59841,Matt Walsh +539,Thomas Lennon +1086323,Lou Bollo +1077732,Vincent Amabile +132324,Malvina Polo +3223,Robert Downey Jr. +1537247,Catherine Gaffigan +25188,John F. Cleary +1217886,Renee Albert +134264,Osman Yusuf +1674952,Michelle Leblanc +56262,Aaron Abrams +47029,Max Hiller +86390,John Sebastian +56903,Tracy Morgan +1219536,Suleka Mathew +20999,Mark Williams +21510,William Demarest +1656,Guy Decomble +195086,Alphonse Martell +119232,Tom Noonan +96473,Shugo Oshinari +13252,Chieko Matsubara +1354257,Cindy Hogan +23418,Rhiannon Leigh Wryn +1478373,Masaaki Tachibana +152719,Lew Brown +1773877,Cassie Townsend +61150,Charles Aidman +12308,Walter Pidgeon +47882,Cynthia Gibb +29214,Anne Fletcher +73707,Shelley Conn +53202,Jean-Pierre Malo +1735,Frank McRae +218356,Roger Morlidge +551846,Tatsunori Matsuda +184875,Jamie Davis +1861055,Norman Dachman +87018,Eddie Mills +92908,Robert Coote +125486,Rosana Pastor +79188,Stephen O'Reilly +70990,Will Geer +11179,Sean Biggerstaff +1077738,Shawn Skie +36424,LL Cool J +249,Leonard Rossiter +1781165,Dana DePalo +130310,Les Hill +31295,Bryant Haliday +1401053,Anthony Carr +68935,Nati Abascal +60390,Trula M. Marcus +17836,Kim Raver +22687,Johanna Wokalek +2815,Piotr Cieslak +28246,Lisa Langlois +132323,Betty Morrissey +1218146,Tricia Paoluccio +4641,Bogdan Diklić +1024268,John Thornton +93665,Georgie Cranford +937104,Jorge Fernando +1725319,Mariano Bardera +1281449,Jessica Morton +64918,Patricia Idlette +80282,Rand Kingsley +1772254,Shawn Rowe +222249,Poldo Bendandi +17832,Carla Gugino +79866,David de Keyser +1589963,Heidi Kramer +1386,Jerzy Radziwiłowicz +1486199,Lucía Muñoz +1071690,Robin Smith +1303214,Domenica Steele +1119550,Walter Carr +1484404,Sue Wallace +1552812,Zak Kerkoulas +1733433,Terry Braunstein +109410,Joanne Woodward +19269,Nicole Berger +103964,Charlotte McGinnis +89526,Robert Hutton +1366378,Lenka Matuska +1772270,Taylor Allbright +47969,Nick Boraine +90174,Quinn Smith +143038,Kelly Lee +135162,Karen Sillas +199899,Christopher Carlos +1547827,Ralph Volkie +218402,Jimmi Harkishin +82405,Jane Powell +13413,Phil Adams +33489,Josh Mostel +93125,John Leyton +178269,Sydney Smith +54223,Tracy McMahon +77222,Aaron Douglas +1894153,Erik Owens +101481,Virginia Christine +21462,Raquel Welch +38674,Aisha Tyler +112045,Wanda Christine +1629,Li Li +1704987,Donna Dax +1079278,Glória de Matos +44080,Thomas M. Pollard +148041,Eija Nousiainen +24699,Lee Montague +34214,Daisy +109686,Flex Alexander +33679,Emily Woof +1194870,Harry Asklund +166994,Jo Anne Worley +67805,Claudia Stedelin +102663,Brook Williams +113922,John DiSanti +12816,John Welsh +2109,Kim Cattrall +41035,Edouard Baer +80442,Tristan Jarred +425893,Nina Pens Rode +985275,Christian Rub +69483,Christina Brucato +18261,Jayne Atkinson +240009,Kunio Murai +188377,Daniel Riordan +1668313,Charlie B. Brown +1699715,Rao Guo-Xuan +935976,Enzo Doria +104806,George Regas +1366820,Jean Brassat +89610,Marie Dressler +1063614,Tommy Bertelsen +256326,Albert Vidal +64189,Ara Celi +39985,Remy K. Selma +947209,Jocelyn Lai +67798,Gemma Clarke +1007522,Manuela Arcuri +18291,Larenz Tate +13294,Gene Kelly +65023,Daniel Pollock +67527,Mary Stephen +6091,August Diehl +27578,Ellen Page +582054,Olga Peytavi-Müller +32430,Nat Pendleton +85870,Luis Contreras +53453,Blaine Horton +41905,Morten Suurballe +205345,John Lee Ames +10559,Colleen Dewhurst +550626,Shigeo Kobayashi +11109,Nick Frost +1205880,James D. Dever +1580388,Joe Powell +9971,Charles L. Campbell +1178619,Alin Panc +6035,Russi Taylor +23340,Rosel Zech +60833,Jimmy Pop +56253,Paul Soter +12077,Jim Cummings +81049,Claude Lulé +565520,Debbie Cummins +78184,Lenore Kasdorf +26292,David Dorfman +104502,Anthony C. Hall +370042,Carol Nadell +54679,Rebecca Mader +27031,Tim Griffin +8785,Ciarán Hinds +1219190,Frances Hyland +13893,Willy Fritsch +16962,Jang Dong-gun +111594,James Andelin +581402,Rosita Yarza +2078,Charles Cooper +1580028,Ho Ban Le +224168,Nyambi Nyambi +81555,Eulalie Noble +1321748,Ingrid Vold +1084740,Rob Roy +1212620,Ilana Levine +62817,Anthony 'Treach' Criss +32239,Steven Chester Prince +72861,Robbie Robertson +1278767,Laura Kamis Wrang +64062,Traci Lind +237858,Frédérique Jamet +22167,Aicha Abadir +32385,Irene Cara +1213672,Willoughby Goddard +121019,Kitty Carlisle +1780225,Lily Costner +61535,Steven Michael Quezada +11610,Josef Bierbichler +1517868,Katherine Sigismund +126252,Kasia Vassos +1425451,Ana Vilenica +117087,Larry Sullivan +1901804,Theresa Davi +582656,Russell Durham Comegys +2130,Cary Elwes +157335,William Lally +3544,Harry Eden +1879798,Fred Dunsmore +18892,Goldie Hawn +127560,Nina Mae McKinney +123301,Catherine Fitch +1183966,Angus Duncan +79006,Kenji Mizuhashi +127725,Devon Werkheiser +151695,Johnny Haymer +1517386,Margaret Anne MacLeod +5503,Gabrielle Anwar +53364,India de Beaufort +1240172,Adam Curry +1781193,Reed Kelly +27813,Michael Zelniker +61400,Dylan McLaughlin +80325,Petr Meissel +129726,Rajesh Vivek +19497,Armando Riesco +1137390,Park Kil-Soo +962954,Akim Chir +1089392,Eddie Aldridge +61135,Shirley McQueen +114526,Toby Michaels +8265,John Michael Higgins +122007,Richard Angarola +120596,Joanna Woodcock +982402,Earl Rhodes +70939,Alberto Morin +746,Alexei Sayle +50962,Audie Murphy +1215659,Andrew Bernstein +62068,Tom Fletcher +48805,Alan Ormsby +1077269,Moon Jeong-hee +938432,JR Reed +176415,Michael J. Shea +1320522,Ruan Mandelstam +515,Glenn Close +1331795,Allan Steele +47296,Jeffrey Dean Morgan +43125,Rob Paulsen +1388799,Glen Walters +54830,Sophia Bush +1710,Lee Arenberg +1231415,Paul Doonan +78030,Ashley Benson +7632,Shelley Winters +150584,Noel O'Donovan +1781706,Robert A. Pennacchia +152844,Joseph Rutten +84278,Ted Åström +104058,Charles Siebert +21985,Mary Jo Smith +1731500,J.J. Clark +100585,Philip Ng +1460995,Yvonne Legeay +1494522,Larry Guardino +121097,Hooper Atchley +1024,Ulf Pilgaard +40174,Lucille Ball +1194873,Fritjof Tall +1138,Benoît Régent +51851,Jake Kasdan +79127,Claudia Harrison +1878512,Fiona Latham +11029,Dorothy Comingore +1726165,Martin Rosenblatt +35002,Roland Amstutz +1677317,Gary Toy +25541,Katherine Heigl +1381436,Mikko Hakola +17523,Cristina Brondo +3037,Richard Dreyfuss +177950,Kyle McCulloch +11518,Hillary Wolf +123333,Rick Hearst +58919,Nichola Bee +1609658,Barbara Clague +173431,Bruce Allpress +24986,Elisabeth Ruiz +200406,Tom Hillmann +180815,Ritch Shydner +107246,Carlos Lucena +1229431,Jay Silverheels +53934,Ellen Dubin +39782,Paul L. Smith +46099,William Prince +131448,Don Dillaway +1397650,Lin Jing +1277,Vito D'Ambrosio +1214427,Chris Williams +4442,Ryan Donowho +53971,Jenny Gabrielle +18706,Meredith Salenger +592618,Marc Cass +280312,Margaret Scarborough +557006,Vladimir Ivashov +27914,Malcolm Keen +2168,Jean Bouise +33157,Denis Mercier +87051,Beverly May +116489,Barbara London +145526,Robbie Magwood +1717652,Dennis Vero +1490,Joan Baez +88653,Robert McKenzie +1394980,Auriol Evans +2413,Dominique Pinon +1800121,Frank Carillo +5222,Robert Lee Pitchlynn +104780,Tionne Watkins +16166,Hoyt Axton +570303,Kim Bu-seon +23974,Dwier Brown +1131204,Alex Vojdani +1507162,Jeff Blum +72732,Eddie Cheung Siu-Fai +34036,Robert Strange +1063897,Zentaro Iijima +551608,Tian Nan Wu +88450,Chuck McCann +39962,Adi Carauleanu +18854,Martin Ritt +1386366,Wendy Cross +1501993,H.W. Gim +73030,Rosetta LeNoire +1236761,Penny Hardaway +385778,Florence Short +988134,Sam Finn +1191208,Gloria Marlen +127566,Lee Ki-Woo +99750,Elsa Janssen +590493,Gina Hernandez +578957,Gyda Hansen +225704,Vlado Jovanovski +208316,Vickie Eng +1446429,Paula Froelich +11517,Gerry Bamman +1075512,Carlos Larkin +1639,Emily Watson +40943,Bernard Cribbins +70786,Jean Michel Paré +1857439,Sibyl Buck +1381675,Marc Farley +12835,Vin Diesel +20246,Dave Hill +23775,Eliza Bennett +2205,Jessica Capshaw +1162537,Mónica Scapparone +97439,Virginia Fanshawe +938774,Mary Morter +97777,Ethel Barrymore +1749204,Rachel Lewis +1021442,Peter Faussett +590854,Charbel Iskandar +3876,Michael Schütz +1744182,Diane Hudock +15154,Brett Kelley +30614,Ryan Gosling +110866,Susan Anton +117035,Al Kikume +1759981,Moon Woo-Bin +150947,Carmencita Johnson +1356291,Joseph Amodei +16060,Brian Tochi +1359877,Nino Koberidze +5286,Jonathan Filley +20812,Jay Arlen Jones +1212818,Pat O'Brien +2712,Michael Biehn +1376239,Sophie Tellier +1573505,Clark Beasley Jr. +130,Kenny Baker +1393344,Joe Matheson +4294,Bertrand Delpierre +107405,Elliot Levey +1456493,Rick Colella +1372191,Josif Josifovski +3071,Ewan Stewart +544283,Geymond Vital +49278,Olivier Rabourdin +62076,Marcus Hester +1357127,Henry A. Barrows +23682,Larry Bird +589672,Ann Hovey +124884,Clarissa Kaye-Mason +99792,Maria Cumani Quasimodo +1813186,Rielle Hunter +6753,Reathel Bean +24539,Alexandra London +149933,Karoliina Blackburn +133913,Fred Van Kuyk +163597,Kale Browne +20388,KaDee Strickland +1439596,Daniel Mortensen +164276,Rufus Collins +135135,Masahiko Shimazu +72895,Miguel Fernández Mila +11356,Imelda Staunton +26457,Matthew Lillard +79062,Roland Jansson +408,James Keach +154697,Kirk Ward +238715,Jack Kerouac +34234,Donald MacBride +78439,John Shea +1884305,Gang of Four +1093413,Simon De Deney +1803238,Michael Rapport +1672679,John McCarthy +1877409,Julie Inouye +4263,Kim Jung-young +6108,Emily Procter +27912,Arthur Chesney +1331573,Michèle Lonsdale Smith +32646,Monica Calhoun +67274,Dolly Parton +181434,Patricia Childress +136298,Adrienne Pierce +388490,Geoffrey Steele +1853689,Kikito Junqueira +401433,Tony Alva +2820,Dorota Stalińska +38333,Ana Ortiz +176777,Hamilton Clancy +562290,Billy Chan +3545,Edward Hardwicke +1073837,Reuben Santiago-Hudson +14110,Rolf Hansen +1827518,Zia Harris +1196099,Lam Chi-Tai +8536,Victor Garber +212580,Ken Goodlet +55052,Jonathan Gurfinkel +6408,Nick Stahl +1651007,Tania Matos +122125,Gene Schuldt +1135238,Kwan Hoi-San +49360,Stephen Curry +555066,Jennifer Prichard +1741984,Vicki V. Johnson +62033,Doug McGrath +147591,Stéphane Ferrara +1753362,Ananda Ellis +33050,Terry Howson +1781704,Luigi Scorcia +62862,Danny McBride +227974,George DeNormand +51762,Douglas Fairbanks Jr. +58982,Kuno Becker +1229744,Parker Fennelly +48512,Tyron Ricketts +10159,Jane Greer +26106,Ugo Soussan Trabelsi +1227733,Stefan Booth +56242,Lolita Chammah +44686,Henry Darrow +66079,Madolyn Smith Osborne +41907,Kristian Halken +1537390,Ladislav Krivácek +1475768,Aurelio Dinunzio +75076,Bronson Webb +10075,Tsai Chin +7351,Ana Claudia Talancón +20512,Rachel Appleton +61633,Lisa McCune +92295,Addie Yungmee +120705,Chris-Pin Martin +119549,Jack Wise +1258444,Akio Chen +1203689,Mike Pickering +1661598,Kevin Bogue +51505,Pascal Léger +59743,Jaime Tirelli +50570,Jeff Chandler +61962,D. B. Sweeney +1280232,Chucky Venice +7523,Jessalyn Gilsig +17328,Rufus Sewell +13332,Thomas Heathcote +89733,Theodore von Eltz +1838,Robert McIntosh +6015,Bernard Le Coq +78936,Augusta Ciolli +1281529,Salvatore H. Tornabene +21216,Kim Delaney +21371,Amy Holden Jones +1572034,Robert Scott Wilson +52301,Jerry Doyle +10841,Karel Roden +1681410,Lee Quigley +17781,Stephen Brennan +38593,Alvaro Vitali +179830,J. Kyle Manzay +1296369,Lisa Maurer +1620,Michelle Yeoh +1173280,Maureen McRae +33085,George Bernard Shaw +111329,Jack Smethurst +10682,Anthony Starke +52861,Peter Anthony Tambakis +96929,Salomé Stévenin +97668,Montserrat Julió +94978,Christina Pickles +10371,Mary Vivian Pearce +1273958,Branko Završan +39353,Kyle Labine +42390,Ben Wright-Smith +165453,Sam Gifaldi +37035,Christian Tramitz +82487,Helen Hanft +210842,Ricki Lander +5151,Beth Grant +72994,Michael Mosley +1434992,Cameron Moore +80156,Frank Patton +553179,Maria Terranova +4737,Jason Kelly +116027,Eli Marienthal +1857416,Kevin Molloy +122117,Lari Taylor +1472602,Sandra Lee Gimpel +11277,Natasha Wightman +1857459,Stina Richardson +1196131,Alex Zuckerman +70168,Jean-Roger Milo +1741925,Anthony Cristo +102013,Giovanni Frezza +75544,Jeremy Sims +1753,Nichelle Nichols +1681417,Jill Ingham +177219,Billy Kay +68277,Christina Cabot +1893429,Dave Kelly +29962,King Vidor +117617,Marisa Pavan +5480,Torri Higginson +1728642,Christiane Lechle +1331769,Leo Mostovoy +1537392,Alois Mottl +203176,Kriss Dosanjh +12409,Wolfman Jack +99956,Hassan Tantai +16477,Danny Goldring +29714,Neil Hunt +301657,Colin Higgins +1194429,Antonia Rey +83645,Jiang Wen +1153,John A. Alonzo +107378,Darren Morfitt +26512,Carroll O'Connor +82428, Larry Mullen Jr. +201811,R.D. Reid +70332,Maria Yi +551910,Steve Sayre +58106,Thomas Haustein +3664,Sandra Bernhard +18481,Anna Perrier +6929,Tippi Hedren +12711,R.D. Robb +19489,Peter McRobbie +2321,Jessica Amlee +71282,Kate Magowan +1468449,Lillian Ten Eyck +74876,Warren Hymer +140365,Marcel Melrac +95428,Peggy McIntaggart +1349871,Vester Pegg +1066,Claudia Wells +1205357,Billy Sparks +17225,Michelle Johnson +2176,Tommy Lee Jones +554856,Lei Ren +87119,Earl Billings +95741,George Plimpton +1661595,Barbara Hollander +19384,Tony Todd +1040111,Celine O'Leary +935,Connie Nielsen +124112,Charles Parnell +1422458,Pat McKee +1896900,Niall McCarthy +24540,Jean Carmet +1337714,Chona Jason +169133,Lewis J. Stadlen +952,Agustín Almodóvar +55745,Franklin Chang-Diaz +26737,Denver Mattson +1503028,David C. Fisher +1161141,Lucile Fairbanks +1513403,Gary Cowan +1081815,Marvin Katzoff +3132,Lana McKissack +12693,Sydney Bromley +173191,Sam Jenkins +92697,Julian Orchard +1330781,Neon Cobran +1609261,Mervyn Lilo +37150,Blaze Foster +49820,Keith Jochim +583845,Aaron McPherson +236836,Vsevolod Larionov +1813182,Laura Fabian +82507,Dick Durock +16224,Fritzi Jane Courtney +77226,Theresa Merritt +1712687,Brian Flanagan +9030,Thandie Newton +80469,Gail Russell +1226747,Geoffrey Burridge +1089144,Adriano Aragon +52611,Dyanne Thorne +1747351,George Patelis +821,Beverly D'Angelo +1089171,Steven Zlotnick +138076,Ray Dennis Steckler +11107,Ben Foster +157460,John Scott Clough +1556477,Blair Woolstencroft +13558,Mitchell Lewis +208310,Cherise Boothe +929946,Susan Jaffe +2275,Caitlin Clarke +1606734,Ian 'Blaze' Kelly +55278,Jackie Cooper +1138762,Joe Chu Kai-Sang +273,Guillermo Arriaga +77155,James Saito +44819,Judd Omen +39303,Hannelore Hoger +1076419,Pekka Virtanen +29427,Terry-Thomas +23750,Johannes Silberschneider +1712379,Siriaque +69807,Rider Strong +78690,Jeremy Slate +1571927,Guo Jun +1655540,Make Bray +225610,Joseph Gilgun +131274,Sharon Acker +84848,Loudon Wainwright III +166598,Franklin Cover +163002,Laura Kenny +10938,Barbara Carrera +99156,Carl Burrows +12513,Francesca Annis +61833,Ewan Chung +80139,Brent Katz +53266,Clare Grant +220118,Benjamin Petry +550107,Alexandra Mercouroff +239022,Whitford Kane +155988,Daniel Hansen +1173600,Maggie Shiu +121258,Claudia Barrett +37884,Walter Slezak +5676,Marcello Mastroianni +1112455,James Leonardo Mayberry +1423338,Inna Gest +1184011,JD Cullum +15336,Dougray Scott +3653,José Luis Torrijo +1946,Beverly Powers +11191,Xavier Gélin +1092639,Peder Ivarsson +1860665,Elizabeth Mansfield +18287,Ken Garito +8635,Buster Keaton +83665,Madeleine Potter +1389606,Olga Rzhepetskaya-Retchin +158522,Alannah Ong +105881,Da Brat +84325,Ed Peck +21563,Corin Nemec +18235,Brett Harrelson +1101311,Salvador Godínez +15012,Katharine Towne +107371,David Beecroft +101654,Blaine Novak +1076582,Spartaco Conversi +1872824,Michael N. Fujimoto +1714,Angus Barnett +153505,Isabel Randolph +1080208,Zoe Burton +3776,Jean-Luc Godard +2470,Mhairi Calvey +1518743,Renald Dupont +964764,Débora Nascimento +544596,Lina Marín +1482639,Yukiko Yanagishita +66896,Raven-Symoné +4515,Treat Williams +83788,Irene Tsu +97004,Layne Friedman +426,Larry Bagby +8835,Spottiswoode Aitken +31633,Jaason Simmons +88702,J.P. Manoux +26472,Steve Guttenberg +155580,Dana Reeve +1190702,Michael Rees Davis +90356,Lev Prygunov +1147575,Michel-René Labelle +228606,Lut Hannes +106867,Pons Maar +590860,Fouad Hojeij +20386,Jason Behr +228609,Bert Van Nieuwenhuyse +12692,Albert Salmi +73925,Ole Ernst +60292,Gary Hudson +3265,Eli Wallach +2474,Alan Tall +1609639,Eileen Dromey +63871,Joey Cramer +187678,Marni Nixon +1298380,Jeffrey Vincent Parise +287341,Billy Bush +230909,Alexandra Pigg +119588,Dan Jackson +1365100,Luis Alarcón +27739,Jennifer Jostyn +4801,Lisanne Falk +42914,Emma Rose Lima +1231488,Barry Switzer +133585,Art Lund +9112,Neville Brand +1204352,Oscar 'Dutch' Hendrian +7674,Alexander Godunov +155086,Anthony Chisholm +33042,Felix Eitner +174516,Jon Ross +1723684,Adrian Alonso +8595,Alexandre Rodrigues +552662,Kirô Abe +10963,José Zúñiga +1601895,George Little +15323,Nathan Osgood +554045,Taryn Band +961840,Cara Horgan +1234613,Joe Savino +23931,Mira Sorvino +114000,Kevin Rankin +1133291,Utawaka Katsura +1361007,Bill Gavin +91288,Etsuko Ichihara +129124,Richard Steinmetz +937651,Julie Kolbech +66499,Lauri Johnson +80246,John Allen Nelson +92327,Lindsay Hollister +1296381,Scott Christoffel +1587192,Brenda Cavendish +20300,Eileen Atkins +113360,Tim Preece +1728637,Lothar Chamski +5172,Richard Woods +1443149,Søren Poppel +127166,Carl Chase +1600501,Dick Cherney +15152,James Earl Jones +187636,Jason Harris +1059891,Kôji Uno +87823,Edna May Wonacott +1364421,Scott Seaton +90339,Joseph Carberry +59258,Lewis Black +21151,Maureen Stapleton +71940,Thérèse Kobankaya +58374,James Kirk +1542935,Jim Hooper +132102,Arthur Mullard +1048852,Joyce Ingle +1773865,Arturo Elizondo +184106,Sam Sarkar +52288,Jim Byrnes +1514445,Leonor Gómez +42751,Lu Leonard +1498511,Tim DeZam +2112,Brock Peters +138742,Laura Malmivaara +125482,Luise Rainer +80430,Erik Erotas +12325,Gustaf Gründgens +480,Gary Lewis +1314585,Jessica Hamilton +97005,Marguerite Churchill +51931,Harrison Young +1174794,Stephanie Venditto +1753361,Lazar Kalmić +29950,Robert Harron +130481,Otto Diamant +9842,Alexander Granach +66122,Alfred Cheung Kin-Ting +238747,Frank Rosolino +44843,Gus Mercurio +19775,James Lance +149447,Edith Fields +22811,Daisy Donovan +18025,Ben Miller +18271,Toby Huss +39491,Olga Georges-Picot +11783,John Houseman +109778,George Sherwood +8329,Radha Mitchell +1481099,Roberto Stocchi +1145425,Rico López +9094,Arthur Housman +130715,Diogo Dória +1019259,Christiane Kubrick +1271030,Payne B. Johnson +1500398,Michael McCartney +9625,Linda Fiorentino +11803,Peter Greene +1225492,Richard Jutras +136129,Russell Thorson +215304,Victor Varnado +58707,Sunny Mabrey +127461,Harry Scott +166406,Ryan O'Donohue +1801763,Jack Cottland +37893,Andrew MacLachlan +101784,Meshach Taylor +389763,Neil Summers +14363,Leo B. Pessin +137997,George E. Mather +39678,Rab Affleck +133772,Robin Frates +174254,Joanne Pankow +25187,Allison Gompf +151875,Forrest Lewis +97446,James DuMont +128023,Yûnosuke Itô +1212883,Roy Heather +1277939,Ailen Sit +21522,Joe Regalbuto +93644,Marilyn Lightstone +145414,Jorge Sanz +1081823,Susie Malnik +32379,Moira Orfei +1105542,Eric Hart +120818,Wade Boteler +58012,David La Haye +79859,Jamille Jinnah +140106,Noboru Nakaya +1265409,Fred Squillo +19022,Constance Cummings +113523,Laila Morse +1444479,Rachied Isdrissi +83635,Huang Sheng-Yi +1020826,Lisle Wilkerson +132776,Sansei Shiomi +1425502,Keith Hamshere +91525,Anthony Johnson +101778,Leslie Wing +2372,Ron Perlman +1857436,Yui +224094,Mobb Deep +122120,Tony M. Conde +1000228,Jerry Haleva +29097,Kerry Armstrong +24500,Paul Préboist +69033,Vivian Wu +19221,Margo +419,Tyler Hilton +62244,Giacomo Beltrami +1681204,Robert 'Bernie' Esquivel +48527,Evangelos Pananos +1897663,Vera Furlan +22531,Herbert Fux +1262960,Dave Petitjean +12027,Marianne Gordon +1896878,Clare Dineen +24360,Gregory Jbara +10257,Katharina Thalbach +13644,Tony Longo +236315,Shinsuke Aoki +82343,Ian Christopher Scott +90230,Helen Kleeb +10173,George Baker +85064,Tara Ellis +224055,Hou Lian-Sheng +8831,Miriam Cooper +7673,Bonnie Bedelia +61103,Kristin Ketterer +3980,Danny Cooksey +4492,Philip Baker Hall +1275927,Tho Phuong +1270525,Desiree Gould +56192,Fritz Manes +37714,James McEachin +35743,Jaya Bachchan +45291,Philip Carey +12295,Perry Lopez +333422,Marie-Laure Descoureaux +1681437,Michael Harrigan +1089179,Elizabeth Andrews +126652,Brian Rhodes +1330119,Tom Paul Wilson +23345,Elisabeth Volkmann +49357,Bill Mumy +18298,Tony Danza +231920,Sissi Kaiser +134713,Kendall Cunningham +61959,Jeremy Suarez +1879510,Michael Listorti +59178,Maria Konstadarou +143433,Diem Lien +84399,Jim Nabors +99888,Susanne Zenor +1770538,Rachel Isaac +213483,Miyuki Kuwano +1331760,O.K. Ford +16441,Tristán Ulloa +95109,David Dundas +80167,Tony Devon +1752335,Jason Dolphin +1055157,Beverley Elliott +1183447,Bob Heitman +119258,Cy Kendall +19276,Ralph Ting +646797,Takashi Nishina +213474,Yûko Kotegawa +1889070,Bengt Hernvall +27615,Alain Fromager +83586,Ken Jeong +27517,Howard Morris +71408,Patricio Contreras +1790426,Drew Bongianni +59181,Emily Tennant +21027,Mika Boorem +96240,Dick Rich +164131,Fran Brill +3640,Larry Gates +37748,Giuseppe Mattei +72446,Al Septien +1048024,April Kent +1811959,Dell Maara +16904,Shabana Akhtar Bakhsh +1458297,Arthur Gross +116117,William Browder +17355,Michael Paul Chan +50463,Malin Åkerman +25252,Ruby Wong +55616,David Brown +161823,Pamela McMyler +1557959,Rena Zednikowa +1067843,Charles R. Moore +80525,Tolla Van Der Merwe +1230333,Krista Vendy +1594615,Jamari Richardson +1844,Til Schweiger +1432027,Hüseyin Turan +584141,Lars Lohmann +1788201,Greg Walker +27983,Marion Stalens +1781199,Amanda Florian +75977,Alan McKee +96737,Allen Nourse +7663,Teresa Wright +43364,Dakin Matthews +33682,Sandra Borgmann +34676,Roger Carel +21312,Frank J. Coleman +1183497,Stuart Nisbet +1173502,Jim Thorpe +6576,Mark Rolston +44682,Richard Poe +1752863,Tommy Lack +193860,Allan Kayser +12152,Werner Klemperer +1129795,Annika Pergament +1331708,Mikel Garmendia +52978,Florin Piersic Jr. +114097,Harvey Stephens +61638,Anh Do +27323,Garry Cooper +21045,Maggie Q +1368475,Peter Gardner +558739,Rainer Peets +6656,Bengt Ekerot +48576,Charles Berling +100986,Margaret Landry +119542,Stuart Holmes +1754973,Shannon Collins +1080070,Jaffe Cohen +62508,Bogdan Uritescu +1816899,Alan Wilder +1125484,Angelica Di Majo +93664,Jesse White +69899,Zachary Levi +1853189,Terry Mullany +556838,Dorothy Porter +63135,Cécile Bayiha +30300,Ray Hyke +96260,Guy Kingsford +9310,Matt Sigloch +1856465,Bradlee Rhodes +213290,Leonor Silveira +12784,Harry Humphries +19223,Nathan Bexton +106609,Walter Greaza +1386337,India Cosper +1320524,Marie Van Deventer +237163,Reuben Langdon +5173,Thomas Toner +3203,Russell Means +94088,Anne Dupont +1507114,Debbie Schock +63563,Veena Sood +106571,Audrey Betz +1221143,Nobuo Tobita +80480,Johannes Bausch +32093,Guy Mairesse +11065,Wilford Brimley +81075,James Juce +121368,Barbette +22223,Marguerite Moreau +94653,Hoke Howell +68898,Sandy Baron +1548677,Bruce Comtois +82414,Karen Meagher +7164,Frank Vincent +3347,James Griffith +37289,Tom Budge +39995,Michael Cera +101783,Debbie Lytton +25087,Kais Nashif +650,Karen Allen +128401,Oscar Apfel +28059,Max Adalbert +94624,Tony Papenfuss +45375,Sherry Leigh +56819,Dudley Moore +6949,John Malkovich +122978,Ray Cooke +1655,Albert Rémy +55861,Kirk Acevedo +1176552,Hiroto Itô +1616923,Dean Gatiss +1896861,Gary McCarthy +141206,Ettore D'Alessandro +11148,Joan Allen +133100,Eddie Fetherston +22556,Ruth Buzzi +13298,Douglas Fowley +14987,Peter Bonerz +78285,Marion O'Dwyer +101252,Krista Morin +6665,Åke Fridell +1572042,Michael Anastasia +10917,Simon Abkarian +1744183,Michael Andrew Colin Keller +1130480,Rachel Clay +39953,Jean Martin +24554,John van Dreelen +1087690,Kazuko Shirakawa +1742439,Shane Daniel Wood +23986,Winfried Glatzeder +1207046,Pamela Gray +25627,Hal Smith +190593,Scott Trost +26294,Lindsay Frost +945612,Tom Tarantini +38583,Ivan Sergei +183191,Nicola Duffett +1752,George Takei +56420,Cordell Clyde +11499,Oscar Polk +4440,Brea Frazier +168436,Linden Banks +89602,Roscoe 'Fatty' Arbuckle +1666966,Bhogwan Singh +2829,Andrzej Seweryn +29383,Luca Bercovici +61905,Steven Vidler +128638,Vincent Deniard +95640,Nicholas Davidoff +98972,G. Pat Collins +129793,Jamie King +1187261,Wes Tritter +83348,Chris Albrecht +119139,Wendy Playfair +1857435,Eddie Ellwood +10158,Robert Mitchum +1676553,Bruno Allain +10194,Bruce Glover +14530,Natividad Vacío +11502,Harry Davenport +29274,Leo White +144129,Tracy Fraim +20448,Elad Atrakchi +35363,Mari Devon +34041,Roberto Maccanti +11049,Thérèse Brunnander +348606,Keith Hitchcock +87519,Connie Gilchrist +1200791,Tommy Thomas +11045,Ola Rapace +553424,Norihide Goto +3712,Saul Rubinek +79056,Lasse Åberg +1580376,Hal Forrest +87406,Magic Schwarz +5177,Randall 'Tex' Cobb +1609262,Gordon Lilo +931942,Max Palmer +85731,Zayed Khan +1219143,Chelsea Hertford +34915,Kristin Booth +1372,Karl Urban +1162542,Demián Bugallo +1181,Peter Gantzler +1538301,Mohammad Reza Sharifinia +30263,Dora Clement +1141147,Gloria Browne +40334,Yasutaka Tsutsui +97725,Teri Weigel +34985,Cree Summer +548617,Wai Pak +964908,Kaycee Stroh +1185237,Eugene Kohn +1330780,Trudi Hanley +1294,Missi Pyle +1406997,Anthony Benson +10239,Edita Malovčić +38753,Christiane Blumhoff +155743,James Lesure +1677316,Jade Go +1265403,Jerry Piller +171300,Stacey Moseley +117722,Nancy Reagan +1034627,Patxi Freytez +19976,Robert Joy +1228313,Peter Simon +1723439,Valérie Pêcheur +928737,Jaco Espach +42408,Dhia Cristiani +1836328,Emiko Parise +1087649,Gary Werntz +1733375,Valentina +1051092,Lisa Dodson +56266,Fred Gwynne +1587180,Seth Stewart +65952,Jude Poyer +19400,Roy Roberts +144011,Ruth Dwyer +1527162,Leon Sills +72637,Bob Neill +1752770,Cindy Willems +164494,Cornell Womack +235969,Max Gillies +2233,Bridget Fonda +25643,Anthony Nicholls +1251776,Phil Taylor +1857007,Capucine Lyons +1662136,Doug Torres +1282392,Yasuo Araki +79869,Tara Savage +66463,Barbara Dziekan +69130,Kathleen Kinmont +1221258,Renee Godfrey +131834,Patricia Allison +1609236,Roy Dinson Jr. +51856,Jenna Fischer +14606,Albert Dupontel +132935,Hiroshi Yamamoto +164974,Norman Leavitt +25654,Julianna Margulies +1168161,Phillip Ko Fei +77897,Tyra Banks +117783,Jed Prouty +4796,Alexander Beyer +106245,Linda Kerridge +1336110,Laurie Caminata +172280,Elsa Raven +1017230,Freddie Fletcher +80148,John Ring +1216067,Charlie G. Hawkins +1303213,Krocky Meshkin +141008,Sam Lufkin +21084,David Dwyer +19797,Marlee Matlin +1194425,William Fountaine +69958,Fernandel +25665,Robert Glenister +10707,Terry Jones +1037917,Luigi Ornaghi +21069,Randy Stone +790,Michael Champion +10226,David Hedison +1723689,Aurelio Perea Morales +118022,Donald Woods +30142,George Pravda +25333,Philippe Leroy +15387,Wilfrid Hyde-White +946051,Melissa Cobb +95980,J. Christopher Sullivan +40979,Andrew Keegan +76976,Shima Iwashita +28847,Rafe Spall +1786656,Paul Anthony Reynolds +221652,Ianka Fleerackers +1426029,Maria del Mar Rivas +1184910,Tony Barton +95781,Danny Schechter +1157287,Fang Yu +130335,Peter Chong +60229,Miles Marsico +60990,James Aubrey +100700,Izzy Diaz +26259,Michael Feast +80625,George Burns +963208,Tila Tequila +96444,Jean Stevens +1436025,Elizabeth Darius +5251,Jack Warden +62887,Helga Racz +1167683,Pierre Joffroy +1303212,Sean LoGrasso +157542,Zale Kessler +571,Andrea Eckert +95632,Gwendolyn Watts +12211,Garry McDonald +1872821,Paige Goodman +233184,Arturo Bragaglia +94146,Bart Johnson +1901748,Kristina Lykowa +115932,César Sarachu +79691,Mary Kostakidis +7142,Ross Manarchy +20333,Masahiko Nishimura +981048,Nicholas Bird +3714,David Mucci +224,David Cronenberg +154932,Jayden Lund +39949,Barrie Ingham +113574,Georges Metaxa +51391,Frankie Muniz +81567,Alice Brock +587562,Junior Singo +148603,Deborah Walley +87752,Dorothy Neumann +80770,Leon Lamar +21170,Michel Aumont +93004,Tommi Korpela +65921,Mario Joyner +560300,George Rankins +92760,Laura Jacoby +1589479,Kamian Allen +44050,Mario Machado +80449,Mark Winn +1466148,Frederick Chapin +20444,Rami Danon +1287805,Lois Lindsay +1046806,Frank Melton +1073865,Fran Gargano +1298539,Vickie Benson +5,Peter Cushing +82613,Juano Hernández +111658,Lisa Palfrey +47773,Paul Mazursky +95976,Kate Rich +77338,Tom McGowan +52473,Glen Vance +1472971,Christine Cabanne +19275,Amanda Detmer +40000,Susanne Benton +100350,Don Nagel +1215401,Sonny Surowiec +23505,Christophe Odent +113879,Glory Annen +81847,Dan Gilvezan +78151,Ray Proscia +1265160,Christina Carlwind +5414,Colin Salmon +52463,Stefan Gierasch +80165,Alice Playten +1228788,Cynthena Sanders +13823,George Irving +1446411,William May +82956,Darcy DeMoss +1896885,Peadr O'Riada +160849,Michael Medeiros +3043,William Bronder +5698,Jessica Tandy +24501,Pierre Richard +49356,Robert Deman +448,Hilary Swank +141596,Chuck Wassil +17640,Susan Misner +1781821,Darrie Lawrence +1275249,Heather Blodgett +97251,Jules Berry +1609248,Fred Lunt +228960,Mary Steelsmith +63360,Denis Conway +77800,Aaron Frazier +222885,Jack H. Harris +114530,Dodie Drake +1176973,Emily Klindt +1225471,Tracie Savage +17203,Gary Whelan +58754,Haley Bennett +166002,Itzhak Perlman +44421,Elisa Mainardi +135036,Lynne Ramsay Jr. +63484,Fenton Quinn +101254,Carrie Colak +7120,Piotr Fronczewski +25688,Christopher Bowen +141112,Stefania Spugnini +1816298,Eva +52418,David Kriegel +345529,Charles Haefeli +559324,Ellen Locy +83011,Laura Christensen +92658,Byron Minns +6074,Kenneth Welsh +74763,John Considine +144534,Tania Cruz +5130,Cristi Conaway +975135,Elisabeth Welch +70626,Tsutomu Yamazaki +1661602,Troy Myers +9114,Gil Stratton +10920,Tobias Menzies +139183,Joseph E. Bernard +124873,Sulevi Peltola +145394,Hümeyra +1114530,Asta Esper Hagen Andersen +235386,Tadashi Okabe +157627,Debbie McLeod +30836,Raoul Kraushaar +242238,William Pawley +67767,Hal Needham +64470,Katie Stuart +33525,Kyle Eastwood +1265408,Harold L. Simonsen +33007,Robert Warwick +70815,Emma Cleasby +115767,Mary Louise Wilson +11184,Warwick Davis +1856228,Kathy Kiera Clarke +5498,Adam Bousdoukos +93728,Claudia Della Seta +106243,Mary Ann Schmidt +1723443,Isabelle Roumieu +1234147,Jeff Williams +31960,Zlatko Burić +1762960,Jonathan Chapin +49941,William Lanteau +74875,Frank McHugh +79359,Dervis Ward +3830,Jean Seberg +42970,Carolyn Seymour +57905,Lindsay Wagner +930907,Tadeusz Teodorczyk +1760085,Marisa Simonetti +1860582,Noah Gumbert +5351,Kate Shindle +557052,Hugo Björne +43134,Pauline Hutton +75949,Shaun Micallef +115654,Anna Nicole Smith +1159,Steven Bauer +1010122,Fue Choung Cheng +34977,Liane Schirmer +77624,Renee O'Connor +30615,Robert DoQui +1484296,Eiichi Kanakubo +72606,Toshie Negishi +26673,Harold Kasket +932200,Betty Vaughn +1298364,Irene Snow +26258,Kenneth Cranham +14573,Martin Milner +97083,William Klein +1371268,Laura Gold +189684,John Hainsworth +1609657,Margaret Cain +40,Orson Welles +29910,Tina Louise +971924,Alejandro Felipe +55061,Kajol +1151549,Felix Felton +555201,Tetsu Sakuma +70134,Daisuke Ryû +1165,Paul Shenar +166335,Roger Creed +1321407,Francis Carpenter +953,Cecilia Roth +1704732,Mike Parnell +131431,Daphne Pollard +1226010,Greg Rikaart +553516,Paul Houde +1283209,Terrance Ray +62565,John Bobek +52925,Donna W. Scott +34774,Gösta Prüzelius +178787,Barbara Beaird +81562,Eleanor D. Wilson +44960,David Colin Jr. +223268,George Offerman Jr. +202606,Henrik Larsen +86499,Mike Genovese +34594,Sacha Pitoëff +157616,Harper Roisman +534016,Tommy Dorsey +59580,Kevin Reid +58478,Kevin Nealon +1444495,Mia R. Andersen +5617,James Cada +124049,Stephen Shea +58691,Heather Locklear +106741,Leon Martell +14328,Steve Kahan +177443,Tracy Pollan +5601,Sarah Trigger +417,Ginnifer Goodwin +1088087,Constantin Draganescu +231333,Murray Head +78894,Fritz Ford +96460,Deborah Kennedy +66166,Kim Rossi Stuart +2167,Mercedes Ruehl +9302,John Solari +17479,Matyelok Gibbs +140176,Robert Lesser +1243600,Seong Hyeon-a +56837,Jean-Claude Grumberg +98953,Jerry Ferrara +1660013,Johanna Crayden +17485,Oliver Platt +101975,William Jordan +11077,John de Lancie +1075077,Rob Sample +1192187,Diego Cappuccio +131642,Joshua Malina +35747,Saif Ali Khan +25155,Jean-Louis Barrault +235984,Joe Perry +79520,Sabina Ruiz +595477,Alan Bean +1246221,Bernadette Lords +2219,Tobey Maguire +36014,Johann von Bülow +4742,Tori Davis +29952,Sam De Grasse +5526,Georgie Henley +951993,Mary Klug +61307,Michael Chinyamurindi +104624,Seana Ryan +42003,Gail Strickland +17882,Isabelle Huppert +86137,Johnny Brown +21848,Regina Taylor +53589,Phillip Brock +1857414,Justin Lee Burrows +42276,Rupert Penry-Jones +96068,William Janney +150296,Mayumi Ogawa +90263,Fernando Luján +91453,Edward James Hyland +1660159,Will Leighton +545582,Tom Lillard +1135538,Skyler Fortgang +109724,Perc Launders +585902,Noel Appleby +14834,Cliff Osmond +1136766,Tai Leung +71871,Sergei Bodrov Jr. +1333232,Jesus Ruiz +1143686,Alex Lam Chi-Sin +1577160,Luis Mejía +62252,Todd Lewis +427934,Lea Bridarolli +1349310,Manuel Estanillo +90624,John Gregson +106187,Lou Martini Jr. +88745,Sophie Traub +100557,Wayne Crawford +95017,Ray Montgomery +1209714,James Bethea +1673793,Amos Alonzo Stagg +166956,Leslie Danon +110960,Enis Bešlagić +131776,Jeffrey Walker +1752856,Liam O'Callaghan +1273,Jack Kehoe +8240,Alan Mowbray +1146992,Ivie Anderson +1136763,Thomas Hong Chiu-Ming +52346,Francis Renaud +99367,Jean Rouverol +13605,Joseph Rigano +113743,Ravindra Ngo +1003897,Frank McCarroll +994133,Douglas Reith +83453,Victor French +78092,John G. Heller +15274,E.G. Daily +58063,Judy Morris +103777,Vittorio Sanipoli +122784,Liliana Mocanu +1139,Florence Pernel +98963,Irene Tedrow +45993,Hideo Sakaki +69345,Jason Lively +222579,Hermann Picha +180738,Bob Eubanks +112052,Jennifer Elise Cox +223809,Everett Alvarez +19217,Frank Silvera +91042,Al Cerullo +766,Ashraf Barhom +95301,Barbara Pepper +1552054,Elaine Baillie +150536,Barry Otto +930174,Mabel Todd +93215,Anatoly M. Sagalevitch +213957,Theresa San-Nicholas +157459,Ellen Foley +157411,James Logan +1901800,François Blancpain +60138,Bryn Dowling +101032,Rod McCary +110104,John Sigurd Kristensen +37825,Afemo Omilami +1661637,Sean Grant +119547,Russ Powell +1017831,David Milner +81900,Steve Notario +19857,Kaori Momoi +1156155,Wolf-Dietrich Sprenger +193808,Judith Lowry +235381,Nadao Kirino +591258,Magdalena Cielecka +95681,Jack Mullaney +15084,Anders Villadsen +937681,Zoe Caldwell +1212933,Victor A. Young +217770,Robert Dudley +240388,Thierry Gibault +1503020,Lily Houtkin +87956,D.W. Moffett +28660,Emilie de Ravin +104002,Clifford Hugo +1439599,Leif Nørballe +27754,Mitchell Butel +939102,Franco Ricci +144532,Damián Delgado +54238,Harry Nelken +68371,Jacques Deschamps +545855,Peter Pitofsky +1330747,Tom Rack +10236,Jörg Schüttauf +999718,Cicely Courtneidge +1281024,Amelia Tenttave +125503,Marcos Montes +1152683,Kenth Rosenberg +79702,Laura Peisley +60974,Cory Bowles +89524,Dane Clark +1572409,Susanne Jansen +180533,Melinda Renna +21385,Tony Sirico +14534,Rosenda Monteros +1328,Sean Astin +7866,Robert Pastorelli +94809,Roger Ward +1752763,Krystal Kiran +54618,Jamayang Jinpa +961,Antonia San Juan +33655,Erika Alexander +33689,Charlayne Woodard +1672,Reg Wilson +1567503,Charlie Caine +80124,Guitar Wolf +1722388,Sibylle Baier +102069,Bill Wolfe +974420,Jonathan Hilario +1857438,Fred Williams +11626,Gore Vidal +1441481,Meenal Petal +551866,Fumiko Watanabe +236465,Grayson Hall +54014,David Hayman +986341,Allen Wood +97079,Philippe Marlaud +1281840,Sergei Karlenkov +47570,Joanna Hole +107303,Jed Allan +216140,Deon Cole +1748124,Jake Gentry +1535178,Joy Kraft +1853170,Sean Gildea +554574,Toshimune Kato +140569,Nicholas Colicos +58098,Howard Stern +1542809,Valerie Hill +1672199,Louise Colombet +89291,Nino Aldi +1879783,James Pyduck +3490,Adrien Brody +20332,Kaoru Kobayashi +11025,Agnes Moorehead +1698903,Batica Nikalic +1542815,David Stoll +134667,Brian Coburn +67715,Saïd Serrari +52821,Volair Johnson +1241030,Cavan Clerkin +547990,Taeko Nakanishi +50744,Olga Karlatos +103413,James Todd +49486,John Keogh +1244470,Paul Hébert +27391,Anna Galiena +1757138,Franco Pilenga +56271,Elmore James +418,Robert Patrick +585017,Franck Monier +32193,Tom Chatterton +54445,Adrian Ross Magenty +104013,Zuma Jay +550752,Igor Volkov +74266,Dick Cheney +29655,Leo Genn +1447025,Frank Royde +8493,Ruth White +928731,Mickey Wenk +39114,Kathleen Doyle +949499,Jean Darling +156330,Freddy Andreiuci +1757145,Francesca Bassurini +4635,Mirjana Karanović +28024,Judy Gold +218907,Jeannette Lewis +85113,Len Kraus S.J. +1209491,Eleanor Lynn +16901,Eva Birthistle +79448,Betty Schuurman +1854985,Serena Nono +1577169,Ronne Drummond +10258,Tina Engel +17522,Cécile de France +1634650,Austin Green +153946,Christopher Boyer +11867,Eric Mabius +10223,Jane Seymour +79230,Brian Keith Gamble +111439,Caroline Néron +999089,Dolores Sage +1273694,George Wallace +1681184,El Hassan Ait Bablal +107205,Laura Lenzi +30181,Fred Astaire +1704720,Robert Bower +18779,Maurice Risch +1346928,Alex Yip Choi-Naam +20127,Martita Hunt +141823,Tisha Campbell-Martin +1303018,Italo Clerici +62748,Dragicia Debert +15968,Glenn Corbett +6402,Harvey Perr +1526094,Mirsad Tuka +6939,Edward Bunker +228075,Hijiri Kojima +99043,Dan Biggers +1135966,Cheng Man-Fai +80615,Juanita Jennings +165132,Fred Sherman +276598,Elgudzha Burduli +557128,Gina Moxley +89589,Colin Keith-Johnston +1580027,Rene Hajek +55432,Jamie Farr +1853216,Chris Spain +85647,Suada Karisik +33819,Bruno Corazzari +224816,Pierre Lebeau +10874,Ron Selmour +93376,Logan Browning +96329,Shazahn Padamsee +145241,Doru Ana +1614870,Jean-Joël Barbier +102710,Michael Wiseman +119368,Jennifer Westfeldt +8187,Max Elliott Slade +1035069,Jamie Kenna +119656,Cheung Bo-Sin +81934,Henry Stephenson +16483,Sylvester Stallone +56691,Saverio Guerra +85097,Joan Blair +14734,Khigh Dhiegh +178884,Émile Genest +26874,Victor Magnotta +78299,Tom Morello +72312,Gary McDonald +12356,Douglas Spencer +34374,Kyôko Kagawa +1073864,Mary Christian +4692,Frank Adonis +65130,Carrie Fleshman +86999,Irina Muravyova +1483634,Angie Kempf +70165,Gérard Lanvin +48581,Gérard Blanc +175919,Neil Stuke +102946,Marie-Pierre Castel +1197044,Ric Randig +67612,Giuseppe Sulfaro +16846,Harland Williams +67613,Luciano Federico +22559,Ingvald Guttorm +1786,Hiroko Kawasaki +72708,Lynsey Baxter +11367,Bradley Whitford +122982,Louise Keaton +3150,Tony Curtis +1880597,James Arcuri +72421,Joel Brooks +22133,Jack Noseworthy +567549,Henry Power +1537218,Paul Carson +72414,Ayano Shiraishi +47698,Denis Lawson +1003386,Samuel Jones III +1841254,James Richardson +16908,David McKay +19839,David Paymer +1232023,Craig Piligian +53200,Marcus Johns +403249,Lúcio Andrey +1296747,Mihnea Paun +1313808,Teddy Vincent +1868620,Vladimir Endrovski +1606905,Paul Kant +78576,Scott Thompson +31716,Peggy Miley +52890,Richard Coyle +13354,Karen Morley +16764,Charles Herbert +34042,Paolo Pavesi +1482645,Shin Ibuki +12126,Cheryl Sparks +555208,Ginji Nakamura +53918,Salli Richardson-Whitfield +1884306,Pere Ubu +48329,Heinz Piper +225028,Carlos Cruz +1588704,Jimmy Burke +9072,Margaret Hamilton +1752313,Sheldon Smith +56457,Aimee Garcia +178789,Betty Lou Keim +583594,Didier Perez +1176510,William H. O'Brien +930719,Veronica Radburn +1781835,Ryan Hutchins +3909,Gary Houston +91449,B.J. Jefferson +1394109,Johnny Timko +553102,Minoru Midorikawa +131832,Arnold Johnson +21259,Michael Dudikoff +15344,J.J. Abrams +20766,Richard E. Grant +3556,Roman Polanski +57869,Kevin West +42199,Daniel Greene +227400,Jaroslav Moučka +90540,Earl Maynard +11394,Ruocheng Ying +121370,James Boscon +20090,David Moreland +98489,Stelio Candelli +29918,Dalila Di Lazzaro +20363,Suzanne Snyder +15056,Michael Gornick +19654,Michael Chiklis +1623507,George Ghermanoff +24818,Hervé Pauchon +216330,Takashi Matsuyama +58510,John Burke +1220556,David Dickinson +45454,Gabrielle Middleton +135377,Mitsuru Hirata +3835,Richard Balducci +16089,Jason Evers +234486,Luís Miguel Cintra +55431,Larry Linville +8902,Sid Caesar +30120,Iain Quarrier +644,Blanchard Ryan +554857,Ying Wang +80206,Richard Deacon +94202,Glenn Langan +37759,Kathy Burke +20918,Jean-Yves Gautier +142754,ill Raymond +161254,Brendan Burns +102754,Fay Ripley +551894,Christopher Murphy +1348332,Elsa Berenguer +1219764,Robin Ramsay +148655,Aaron Lohr +1546232,Avi Korein +1462675,Pat Romano +202983,Bo Rucker +1748106,Terilyn Joe +554851,Liankun Lin +1068099,Randy Jurgensen +1291665,Aaron Tucker +1291607,Ben Gilbank +1348448,Lotte Wenkens +33923,Mel Blanc +1463004,Peter Cozens +1441374,Birgitte Prins +1644870,Klaus Rainer +1430,Keith Richards +1086333,Arthur Kay +1109540,Manfred Klell +61839,Clint James +113737,Cyril Mourali +64125,Henning Jensen +66459,Mirosław Baka +553227,Wilfred Shine +981005,Charles McGregor +148189,Mario Iván Martínez +925,Paul Guilfoyle +11152,Margaret Cho +449990,Ninon Brétécher +1112466,Ren Imaizumi +80429,Logan O'Brien +1178611,Sing Chen +658,Alfred Molina +43235,Franca Stoppi +1835010,Thomas Lyons +548608,Guo Tao +1084850,Uriel Emil Pollack +1676999,Del Hinkley +236051,Michael Joseph Thomas Ward +13920,Mimi Rogers +7543,Marina Massironi +94370,Diana Coupland +96283,Jocelyn Brando +141857,Choi Duk-moon +249810,Ray Mort +4238,Common +552198,Kenji Kodama +119508,Pat Goldin +1631589,Giovanna D'Agnello +19439,Henry Gibson +30848,Rayford Barnes +1422296,Billy Wolfstone +74423,Tricia Helfer +1556266,Ray Michal +134948,Eric Rath +11027,Everett Sloane +48775,Christiane Hörbiger +81055,Marian Waldman +3026,Rob Reiner +223821,John McGrath +72607,Mieko Harada +1330770,Bonnie Mak +1624032,Han Kwan-Hua +42374,Nicki Aycox +219902,Charlie Condou +13733,Frank Latimore +21877,Sebastian Cabot +1441804,Dennis Anderson +31492,Robert King +184400,Graeme Campbell +83437,Pauline Collins +44990,Peter Horton +964823,Jemma McKenzie-Brown +120249,Iris Bahr +403172,Tomas Bolme +1411288,Barbarella Pardo +1896895,Bernie Sweeney +1747450,Ana Paula Vieira +1555143,Richard Dioguardi +938,Djimon Hounsou +14264,John Le Mesurier +1426110,Nora Gaye +551857,Torakichi Watanabe +193304,Vlade Divac +1887362,Jose Sukhum Boonlve +36914,Jean Franval +1137819,Zdzisław Kuźniar +25132,Alicia Borrachero +132263,Maria Mizar +16873,Serge Riaboukine +7542,Antonio Catania +1352179,Tom Long +147514,Samantha Langevin +990489,Candy Ann Brown +145831,Nancy Carroll +33233,Edgar Edwards +187731,Brett Tabisel +1439597,Sebastian Sandbeck +1507185,Jeff Temkin +1270596,Kimihiro Reizei +18975,Wilmer Valderrama +551805,Binnosuke Nagao +131,Jake Gyllenhaal +553191,Emanuele Gullotto +52946,Reynaldo Gallegos +20364,George Brent +67538,Jessica Bowman +16977,Nicolás Fernández Luna +80483,John Halsey +12975,Doug E. Doug +1482621,Tatsuhiko Namisato +210891,Harriet Oser +8930,John Cleese +118390,Hristo Hristov +939792,Kirsten Childs +1209419,Tim Rigby +215811,Jim Davidson +934933,Robert Spafford +1678178,Chloe Brooks +12504,Robert Gist +1444498,Janelie Jensen +1512293,Vince Viverito +1677323,Nathan Jung +45245,Paula Jai Parker +1502536,Gunter Ziegler +1000845,Jay Ward +1282744,Simon Girard +30364,Tracey Ullman +101251,Ennis Esmer +137389,William Mims +33162,Harry Belafonte +88748,Richard Venture +16417,Paul Frees +1084848,Bianca Bree +6682,Warren Frost +2554,Mardik Martin +170432,Willam Belli +107217,Judy Rosly +1106160,Holger Perfort +80486,Bianca Jagger +1450756,Roman Arabia +1262963,Jack Radosta +130403,Chet Stratton +81560,Shelley Plimpton +1336112,Lorena Caminata +36814,Diana Salvatore +1741414,Liz Petterson +1681416,Su Shifrin +38944,T.V. Carpio +1752727,Alison Smyth +95265,James O'Rear +121556,Jess Ingerslev +112,Cate Blanchett +73553,Per Schaaning +16585,Baoan Coleman +2676,Kim Roberts +13309,Oprah Winfrey +100655,Del Russel +81933,Terry Kilburn +58930,Alexis Rhee +1133289,Midori Ando +1872788,Milton Quon +1216423,Stella Tanner +35095,John Rubano +81377,Demene E. Hall +112085,Joey Simmrin +41250,Dick Sargent +1387708,Mayako Katsuragi +28392,Goran Radaković +17239,Chelse Swain +1082319,Lee 'Lasses' White +33053,Chiara Zanni +79703,Alex Rafalowicz +191637,Lance Baker +1710216,Alex Cioalca +38068,Carl Jaffe +41247,Len Cariou +551830,Mineko Yorozuyo +53494,Tristan Lake Leabu +1780606,Jonathan James +23671,Émilie Dequenne +550142,Gösta Cederlund +38070,Edward Judd +78234,Johannes Thanheiser +58654,Owen Teale +2096,Robert J. Wilke +19411,Lloyd Nolan +48048,Paul Biensfeldt +1283328,Joyce Mathews +185033,Gordon Sterne +67247,Atanas Srebrev +1851425,Rick Waln +95686,Dylan Sprouse +74286,Nicky Jones +104342,John Laughlin +19761,Lindsay Beamish +1366359,John Carvalho +15402,Gérard Darrieu +107469,Deanna Bond +1695029,Bruce Bennett +1675355,Nicole Orth-Pallavicini +976444,Kevin Mukherji +112306,Tom Mackie +101499,Hazel Court +31391,Barbara Tarbuck +1747353,Al Kirk +1230014,Nelson Leigh +127631,Scott McKay +28149,Christiane Minazzoli +1637458,Dan Travers +206590,Irene Sunters +52646,Vincent Kartheiser +92110,Tannis Benedict +64846,Jorge Perugorría +87402,Evan James +1459987,Tamitaro Onoue +38913,Benoît Ferreux +19876,Zelda Tinska +1441539,Dennis T. Carnegie +9067,Frank Morgan +15086,Nicolas Bro +33163,Claudia Schiffer +551609,Nittaya Suthornrat +24476,Pierre Brasseur +17353,Matthew Marsh +3670,Vinnie Gonzales +123827,Frédéric Mitterrand +29795,Jack Plotnick +127195,John Phillips +67881,Pia De Doses +1224995,Jack Johnson +74273,Danny De La Paz +25024,Lloyd Berry +12795,Nikolaj Coster-Waldau +1216483,Joy Bisco +962981,Lenny Zundel +75275,Rani Hayman +12298,Roy Jenson +7107,Daniel Olbrychski +1419560,Harold Entwistle +34119,Lyle Talbot +66712,Wesley Addy +67017,Shawn Christian +16668,Hayes Swope +1193401,Natasha Morley +8632,Fred Clark +37477,Marita Marschall +174857,Janet DeMay +146330,Chris Kendrick +20244,William Scott-Masson +552465,McKenzie Satterthwaite +72313,Robert Wilfort +1717081,DeShonn Castle +114528,Jack Warford +56085,Jefferey Frost +1366819,Gérard Poirot +5899,Evangelina Morales +83278,Pat Shortt +558906,Kenji Isomura +175895,Steve Stafford +309,Pedro Almodóvar +1303210,Pride Grinn +56785,Tegan West +73446,Georges Rouquier +58676,Yoshiko Tanaka +18480,Sabine Glaser +101609,Abigail Clayton +1244683,Regis Parton +101549,Paul Müller +165111,Mary Alan Hokanson +34538,Rachel Mittelman +199919,Peter Madden +174745,Niamh Cusack +65409,Fay Masterson +91842,Nancy Parsons +99788,Amerigo Tot +42722,Michael T. Weiss +2141,Ned Bellamy +92810,Julia Montgomery +78589,RuPaul +545576,Norman Max Maxwell +1352287,Michael Sterk +14582,Matahi +17071,Timothy Davies +422,Waylon Payne +145872,Robert Graves +13353,Ann Dvorak +1086110,Leandro Hassum +150194,Damion Poitier +125565,Asher Keddie +1526654,Victor Togunde +1242423,John Bloom +76234,Matt Salinger +222894,Michael Brandon +1221507,Llewellyn Rees +1200841,Tom Fergus +4812,Isaach De Bankolé +220064,Kerris Dorsey +1609646,Jim Ashford +1269185,William Courtright +153318,Paul McGuire +5685,Barbara Steele +134401,Kiyoko Tsuji +552469,Gwenda Deacon +1510927,Gulnara Yeraliyeva +66526,Jackie Long +39520,Garret Dillahunt +1677329,Donna L. Noguschi +4731,Andrew Mackin +32030,Guinevere Turner +1957,Sophie Marceau +72299,Ursula Meier +1273290,Krit Suwannapaph +1048920,Michael von Newlinsky +1105177,Avonne Taylor +238804,Kazu Matsuda +1060572,Yoshiyuki Omori +119246,Donna Jo Boyce +252263,Nicolas Koretzky +996588,María Félix +33006,Leila Bennett +70984,Isela Vega +141522,Carl Harbord +1558984,Carlos Velazquez +83991,Jess Kirkpatrick +83128,James MacArthur +135058,Marion Connell +1776503,Karen Elmore +87071,Raymond Huntley +1367581,Big Brother and the Holding Company +64678,Linda Darlow +1620875,Zi Qi +42393,Bille Brown +239981,Sara Tanaka +1643048,Patric Kreuzer +1229735,Kathy Staff +119478,Frank Chiesurin +44919,Marc Akerstream +66557,Selma Stern +9280,Ellen Pompeo +86105,Bill Maynard +1392602,Gary Mathis +17382,Ni Dahong +15543,Derek Luke +159004,Randy Stumpf +62892,Anatole Taubman +1723426,Henri Agel +34186,Hal K. Dawson +95505,Jacqueline Fernandez +1347351,Bartholomew Rose +1503035,Joseph Medaglia +1206,Jason Alexander +1580042,Milolas Cech +57147,Paul Hogan +53,Peter Stormare +81018,Gale Page +1006135,Nicole Arlyn +1060228,Eva Duijvestein +91428,Daniel Chapman +552509,Daisuke Honda +2977,Jamey Sheridan +103714,Linda Lawson +9562,Marlon Wayans +180939,Danielle Brett +81735,Kelly Thordsen +133872,Jack Lambert +1741402,Matt Martinez +1265139,David Katz +1379150,Judy Ovitz +100806,Henry Hall +37715,Oleg Rudnik +553099,Junkichi Yarita +36482,Pierre Drouot +239021,Keith MacKechnie +1470328,Omero Mumba +1155601,Eileen Percy +75257,Sayuri Tanoue +236055,Greg Miller +239061,Bernadette Balagtas +134047,Christopher Ling Lee Ian +82879,Kenpachiro Satsuma +16355,Ingy Fillion +8398,John Bluthal +13869,Morgan Woodward +379723,Sogyal Rinpoche +1655539,K.C. +129482,Tom Laughlin +96408,Rosemary Leach +27616,Eric Nguyen +1123566,Betty Alexander +1349312,Omar Alfonso +1577173,Glenda Meadows +4355,Cesar Romero +1833020,Stacey Halprin +11202,Michel Fabre +20030,Jacques Perrin +93624,Ray Teal +1011053,Walter Byron +1674590,Meghan Elizabeth +1296391,Irene Schubert +9643,Robert Gordon +939,David Schofield +1487467,Helena Benda +146879,Jerzy Duszyński +1581372,Ken Johnson +43234,Sam Modesto +57116,David Johansen +45103,Vincene Wallace +1077328,Doug Hughes +83824,Barbara McNair +31080,Taro Yamamoto +6579,Brian Delate +1502525,Jonathan Strauss +52776,Dagmara Domińczyk +1168171,Paul Herwig +15992,William Schallert +20543,Frank T. Wells +238745,Gerry Mulligan +47468,Frances de la Tour +1839763,Barbara Paiva +930809,Steve Gadler +30900,Luciano Pigozzi +78619,David L. Lander +190060,Eric Hoziel +29307,Michael Medwin +1331572,Shanelle Henry +1216570,Darcy Laurie +6915,David Schramm +74608,Merwin Mondesir +1224565,Erica Tazel +27222,Olivier Granier +27164,Frank Baker +29958,Ruth Handforth +213494,Masami Taura +71857,Mark Moseley +564791,Gabriel Barylli +32822,Dominic Raacke +60231,Christian Argueta +205136,Brad Lee Wind +543715,Anne-Marie Cadieux +47532,Tony Lee +1595022,Wong Chung +81822,Pierre-Luc Brillant +1808566,Bill Eudaly +1446417,Zach Cumer +104034,Ben Blue +66462,Jan Tesarz +533548,Sylvie Loeillet +40464,Cal Bellini +1704738,"Allan Pahanish, Jr." +70668,Danny Kaye +108668,Don Handfield +1896890,Jonny Holmes +115334,Diane Varsi +10871,Natasha Lyonne +204,Kate Winslet +22063,James Frain +59179,George Touliatos +83237,Elizabeth Patterson +1386362,Elisha Choice +146182,Alexandra Boyd +41226,Cyd Charisse +100510,Roger Caine +11585,Jan Hieronimko +2256,Robert Clohessy +12044,Predrag Bjelac +63138,William McBain +544659,Isabelle Van Waes +949423,Lorraine Côté +1221067,Dorian Lough +81291,Edmund Breon +54434,Norma Donaldson +6397,Cecillia Stark +1741412,Antares Davis +1282,David Kelly +119947,Petar Kralj +550110,Philippe du Janerand +1660178,Bob Babenia +109900,Judith Drake +58431,Abdul Salis +17075,Joanna Griffiths +21165,Kim Dickens +981271,Dick Botiller +1017521,Kelly Brown +590751,Luise Ullrich +11662,Jason Lee +1369283,Demetrius Alexis +32494,Robert Easton +1144361,Tom Dugan +1217103,Dennis Blanch +41820,Michelle Forbes +104793,Raphael Harris +102363,Peggy Moran +79234,Anthony Jordan Atler +170898,Alvin Epstein +1517385,Angela Heck +104008,Avi Sills +1080054,Sandra Abbott +14658,Frank Conroy +79714,Alirio Zavarce +1007624,Margarita Calahorra +7504,Carol Lynley +21319,Sheri Moon Zombie +41229,Meg Foster +38903,Michel Delahaye +1537639,Pavla Martinkova +75774,Nigel Ivy +583274,D. David Porter +1017322,Rich Hopkins +1735270,Giuseppe Napoli +2410,Serge Merlin +1331793,Molly Schaffer +91211,Thordis Brandt +14677,Waldo Salt +102885,Desmond Tester +1061872,Roberto Hoyas +1594630,Christine Todino +78772,Robert Ivers +89895,Mona Washbourne +8984,Bill Pullman +11,David Reynolds +543655,Kerry Shrimpton +112304,Annie Ryan +1747350,Robert Dagney +322261,David Boyce +777,Judge Reinhold +77635,Robert Kurcz +51456,Rhoda Griffis +550127,Sarita Khajuria +85096,Stephen Blackehart +1671472,Peggy Remington +34793,Manuela Velasco +4029,Bob Gunton +1461324,Charly Chemouny +39506,Marcel Gassouk +233,Sumela Kay +93325,Christopher Gable +93,Esther García +1199438,Wayne Taylor +77052,Ecstasia Sanders +37600,Wendy Schaal +173264,Wanda Acuna +564929,Pedro Galván +1160797,Shinji Takano +59165,Lilli Lavine +139089,Björn Gustafson +33031,Philip Dorn +1073482,Dirk Stoltz +141399,T.J. Castronova +1269951,Eva von Hanno +66560,Craig Susser +57404,Travis Wester +1539232,Richard Hawley +1331767,Tony Martelli +1076230,Joe Caits +1077844,David P. Smith +1074055,Renato Pinciroli +554013,Miyuki Sakamoto +19728,Mark Harmon +96602,Arthur Margetson +3432,Rick Aviles +82688,Mary Sheldon +52887,Nancy Ellen Mills +180529,Sam Gauny +52050,Alice Greczyn +1427759,Eve Lilith +1593825,Takeru Shimizu +950014,Edmund Elton +101953,Neil Flanagan +557791,Jason Beitel +149670,Kevin Weisman +62073,Mikki Val +1295637,Max Hayter +1241532,Georgie Billings +1090738,Leonhard Haskel +165760,Napoleon Simpson +80476,Ashani Alles +9380,Paul Goddard +100243,Dudley Digges +58412,Courtney Taylor Burness +3237,Joelle Carter +110980,Josif Tatić +9777,Cuba Gooding Jr. +97128,Merv Griffin +99370,Baby LeRoy +553195,Paola Pace +1484297,Akihiko Sugizaki +89784,Phyllis Diller +1445496,Edna Mae Jones +6886,Christina Ricci +69763,Nancy Kovack +1502509,John Charles Sheeham +118946,Brian Backer +69298,Michael McGlone +551629,Wai-Ho Yung +38665,Max Cullen +1181189,Michael Rogers +10025,Frank Thring +1346930,William Duen +1609265,Nicole Maldonado +29897,Daria Halprin +1137847,Trevor Coppola +38664,Sullivan Stapleton +106812,William J. Kulzer +227,William Hurt +1390260,Ellen Savaria +1229040,David Barber +117287,April Margera +111235,Misako Watanabe +181876,Daniel Raymont +120418,Jackson Liu +1741393,Mazio Royster +213835,Gary Gray +27714,Sam Nicotero +1878431,Giorgio Libassi +93927,Kathy Lamkin +15765,John Colicos +1896876,Peg Crowley +1749200,Amanda Crossley +7132,Vincent D'Onofrio +177525,Minae Noji +145076,Léonce Corne +5346,Dan Futterman +33448,Judy Parfitt +6951,W. Earl Brown +52048,Blake Foster +165827,Jim Lau +217991,Genevieve Mooy +12055,John Cassini +68528,Adam Storke +1091420,Jack Deery +1432841,Lee Young-lan +101873,Leslie Ryan +1609670,Anne Lace +21366,Roma Maffia +41516,Maureen O'Sullivan +66221,Tyne Daly +1116141,Ada Tai +8253,Robert Ryan +1044770,Buster Phelps +1198457,Reiko Nanao +218506,Gretchen Becker +3905,William H. Macy +1060570,Ken'ichi Nagira +3517,Paul Pavel +2049,Rubén Blades +87750,John Bromfield +95735,Clifton Young +169077,Pippa Pearthree +11158,Ernest Liu +14969,Berton Churchill +65934,Vincent Kok +16502,Geraldine Hughes +55594,Christopher Routh +224054,Yu Wen-Zhong +15650,Michael Strong +27682,Yvonne Erickson +138179,Murray Matheson +1201024,Yukie Shimura +1882504,Alfredo Michelson +70883,Tusse Silberg +100508,Elyane Nadeau +14565,Wayne Morris +94554,Danielle Keaton +82646,Trevor Hayes +4295,Eric Mariotto +77988,Lars Joakim Ringom +4329,Titus Kinimaka +1064724,Clay Randolph +20045,Tanvi Azmi +41258,Jennifer Salt +47785,Alwara Höfels +103087,Maidie Norman +202850,Imani Hakim +1437603,Bill Ricci +97953,Jonathan Terry +1673119,Al Vandecruys +1376923,Michel Dacquin +1616311,Gurdial Sira +59872,John Pankow +1446422,Kelly Crean +188049,Lonnie Farmer +1164500,Guram Pirtskhalava +1171678,Chuck Daniel +1660811,Frank Macetta +44792,Art LaFleur +1152008,Dan Bittner +550724,Margarete Schön +18391,Lee Marvin +580227,Colette Castel +20287,Laird Macintosh +3420,Armelia McQueen +1469572,Russell Custer +36802,Elaine Stritch +1618572,Stacy Hart +134,Jamie Foxx +1663236,Mark Rudd +1444538,Martin Wenner +1330757,David Thibodeau +88031,Eddie Velez +91543,Rossana Rory +103092,Michael Ross +100703,Ty Jones +1349308,Salvador Wood +1193257,Brendan Cade +3155,Pat O’Brien +1857001,Matty Delia +77683,Mathokoza Sibiya +62444,François Chattot +1781143,Nicholas Hunter +105456,Pat Moriarity +1733432,Julius Digennaro +59868,Paul Preston +1529143,Anna Věrtelářová +114371,Lester Allen +1031219,Andrea Leeds +42409,Elio Marcuzzo +1047752,Alan MacNaughton +240105,Kate Conner +152355,Jeanine Jackson +1123098,Jimmy Bryant +42158,Angela Lindvall +1569582,David Kneeream +145861,Suzy Parker +79506,Melita Morgan +939873,Exene Cervenka +70338,Gong Hyung-jin +68296,John P. Whitecloud +1214060,Tonye Patano +102445,John Sayles +10650,Joseph Thiaka +19717,Keith Coulouris +18509,Eddi Arent +1234573,Gail Kobe +39884,Jacques Frantz +56121,Joey Miyashima +1052312,Erol Kadić +16643,Gene LeBell +1800124,Peter Lloyd +974798,Armando Araiza +152339,Bert Kramer +11998,Eddie Albert +7444,Nick Mazzola +13609,Alex Descas +31707,Tim Davis +80579,Robert Z'Dar +106474,Marcelo Tubert +100158,Sebastian Brook +1472510,Bobby Callahan +543521,Jim Ross +110389,Lalita Panyopas +64095,Tom Hyde +24604,Corrado Gaipa +117694,Jean Fenwick +147823,Wilson Dunster +33192,Joel Edgerton +97641,Russell Napier +156192,Drew Letchworth +1597387,Laurie Morton +555078,Kenneth Kessler +14364,Erskine Sanford +1386481,Любовь Розанова +60253,Allison Mack +1039927,Hiro Hayama +1228874,Robin Pearson Rose +33005,Harry Beresford +21310,John Rand +59967,Rebecca Gayheart +80448,Antonio Rufino +4943,Bruce A. Young +79187,Sean Cw Johnson +5182,John Williams +15444,John North +1485107,Aaron Covington +6072,Nassim Sharara +1366357,Jason Hunter +1352760,Sonia Laroze +5129,Paul Reubens +92079,Merrilyn Gann +223815,Paul Galanti +1741989,Brett Lynch +27260,Laila Robins +13341,Anna May Wong +1004624,Russell Bobbitt +335,Michael Shannon +1826584,Eric Bachniarz +1781806,Jamie O'Keeffe +177802,Rodolfo Landa +79424,Alfred M. Jackson +4955,Dario Argento +209398,Bendt Rothe +940141,Maston Williams +6093,Henry Hübchen +59672,Wilmer Calderon +71249,Eleanor David +81292,Thomas E. Jackson +1901242,Irving Fryar +129432,Fanny Brice +86001,Peggy Cummins +82819,Nolan Gerard Funk +1463999,James William Gledhill +110315,Donal Gibson +1886578,Michael P. Byrne +38526,Rémy Girard +3,Harrison Ford +19937,Valérie Donzelli +19205,Bennie Dixon +1239281,David Earl Waterman +105000,Merle Kennedy +17018,Ruth Negga +109623,Alejandro Bracho +9192,Togo Igawa +117081,Teresa Ganzel +170315,Andi Carnick +1393350,Zoran Radusinovic +96721,Charles Trowbridge +986480,Timmy Hung +62935,Nikita Lespinasse +4050,Robert Dickman +1281539,John Schnauder Jr. +71389,Thomas Schmieder +1896874,Diarmuid Ó'Dálaigh +56081,Ken Davis +12793,Matthew Marsden +200332,John McGlynn +45035,Piero Lulli +189546,Paul Tompkins +14030,Grace Hayle +4433,Alexis Dziena +37995,Bo Derek +23126,Patrick Güldenberg +232,Kyle Schmid +1768180,Pete Dunwell +169642,Gabrielle Tuite +61837,Darren Victoria +1752784,Mike Cota +146140,David Bedella +61149,Constance Forslund +1733425,Penny Wolfgang +36651,Nebojša Glogovac +1547065,Noel Stilphen +2758,Timothy Carey +7565,Corinne Marchand +94603,Roger Duchesne +1616052,Richard O'Rourke +79717,Eliza Lovell +195535,Anna Bolt +1209725,Sylvette Ortiz +94833,Eric Fink +564871,Evelyn Beresford +193778,Chad Stuart +14256,Dick Crockett +122468,Riisa Naka +1411301,Ed Lewis +106843,Buzz Aldrin +31166,Henry Ian Cusick +4169,Dave Chappelle +148852,Barry Norton +1473327,Jeremiah Vaughn +1444477,L'ymani Saibi +73675,Sayako Hagiwara +38647,Philippe Caroit +1396843,Baron De Beer +5888,Nicole de Boer +71240,Leigh Taylor-Young +124087,Gil Glasgow +1092642,Henrik S. Järrel +97935,Anton Diffring +1876,Kai Wiesinger +62939,Antonin Hausknecht +7874,Tony Pierce +57799,Bill Young +30226,Geraldine Fitzgerald +1730638,Guy Ross +6660,Maud Hansson +10137,Steve Rankin +7684,Thelma Ritter +126354,Tracy Reed +993183,Ratna Assan +932201,Margie St. Juste +146232,Jean-Claude Martin +89290,Kyle Adahl +1118783,Siqin Gaowa +102064,Lynne Overman +1847232,Albert Lampert +159382,Richard Livingston +1507164,Reginal M. Toussaint +11669,Jimmy Fallon +66630,Alexa Havins +22125,Jimmi Simpson +238702,Alla Kazanskaya +1772250,Laurie Lathem +1556465,Alice Ludes +97964,Victoria Carroll +11824,Tom Welling +24903,Claude Rich +20240,Zoë Wanamaker +79719,Rocky Feo +22072,Lala Sloatman +115387,Rickson Gracie +6069,Austin Nichols +1812175,Terrie Batson +165289,Larry Cox +64065,Rudy Wurlitzer +27678,Tom Fisher +8834,Josephine Crowell +73753,Ana Cristina Oliveira +100811,Ian Sera +13006,Professor Tanaka +96900,Renee Faia +724,Cynthia Rhodes +1386338,Blaze Walker +24541,Dominique Labourier +39602,Dolores Gray +126678,Patricia Dane +1007561,Michael Forest +20201,Như Quỳnh Nguyễn +34130,John Doucette +76242,Noel Clarke +10558,Janet Margolin +42070,Sándor Badár +1176930,Georgia Caine +199523,Pandora Colin +15050,Leah Remini +50310,Chuck Roberson +34184,Fay Helm +9173,Eliott Keener +551834,Masao Imafuku +1444493,Lennert Mouritzen +22614,Ernest Boehm +93172,Charles Lloyd Pack +8260,Strother Martin +76625,David Sullivan +552471,Lee Stepp +2135,Paul Gutrecht +213497,Yûko Mochizuki +1246051,Narimi Arimori +14564,George Macready +71976,Huai Dessom +1209704,Lauren Scyphers +28069,Klaus Pohl +89551,Peter Kelamis +112464,Ashley Jones +57096,Maynard Eziashi +2451,Alex Norton +27726,Don Knotts +1444504,Albert Hatchwell +110378,Joseph Schaffler +1879467,Karen Kronwell +47805,Philippe Passon +1466154,Leni Lynn +56804,Lau Siu-Ming +5789,Horst Buchholz +30269,Joan Leslie +1016954,Jennifer Chu +8837,George Siegmann +55272,Novella Nelson +27627,Waldemar Kobus +1147313,Jeanne Lafayette +1359878,Shota Qristesashvili +14501,Peter Ustinov +6012,Daniel Auteuil +6727,Kimmy Robertson +19337,Kate Murtagh +124736,Ann Codee +166254,Ed Parker +29908,Nancy Kwan +32905,Rachel Dratch +194372,Alex Donnelley +1609239,Reri Tava Jobe +7056,Emma Thompson +55412,Steve Toussaint +1331768,Hercules Mendez +1629447,Watthanaporn Wannacome +1857455,Patrick Nicholls +1443706,Baron James Lichter +7002,Luke Kirby +1677328,Diana Tanaka +15266,Zabit Memedov +140445,Ben Aris +4764,John C. Reilly +223812,George Day +1472397,Spencer Greenwood +1089571,Hannah Lin Han +933686,Lois Red Elk +24722,Cyril Shaps +1379979,Joe Black Elk +1850002,Trajan Cuevas +6870,Duncan Henderson +3897,Katie Holmes +19613,Mike Marshall +20372,Edison Chen +15111,Jean-Claude Van Damme +100937,Franco Diogene +1250671,Ray Hassett +37066,Bettina Redlich +106815,Ty Thomas Reed +158400,Colleen Winton +59956,Estelle Getty +8495,Alice Ghostley +1556340,Victor Harrington +553185,Daniele Arena +1014936,Dante Fioretti +75710,Lynette Curran +70365,Tamara Shanath +89673,Raymond Walburn +47822,Bouli Lanners +134402,Hisako Yamane +71084,Paul Higgins +55588,Roman Podhora +17291,Andrew Pleavin +38945,Spencer Liff +13998,Henry H. Daniels Jr. +1220927,Alan Johnson +9017,Pauline Lynch +1366417,Guy Fauchon +14405,Courteney Cox +33939,Lubomir Bukovy +6721,Piper Laurie +1482447,David Boyd +1507119,Gwen Smith +159699,Peter Tilden +2652,Ken Lynch +39774,Bill Thurman +112158,Chris Makepeace +12498,Ruth Roman +34978,Arleen Sorkin +75193,Kym Gyngell +39925,Ken Miller +6024,Loïc Brabant +100078,Jason Robards Sr. +77331,John Livingston +7643,Natalie Schafer +186808,Gregg Rogell +110299,Yoshitaka Zushi +1745908,Patrick M. Walsh +58317,Chris Kattan +27725,Jane Kaczmarek +58435,Keith McErlean +6667,Erik Strandmark +5906,Ana Maria Acosta +75337,Erin Murphy +1434991,Angela Greenblatt +951965,Lee Shumway +1420826,Kim Jin-geun +23701,Georges Staquet +103071,John Agar +74366,Nancy Sorel +65128,Candace Elaine +1856477,Angel Figueroa +1752792,Shaun Amyot +1765272,Jim Shirah +94430,Erica Gimpel +27321,Philip Locke +1087157,María Luisa Robledo +4137,Richard Friedenberg +66056,Miki Lee +19784,Ann Shoemaker +155625,Sonya Eddy +1243976,Surendra Pal +1575514,Véronique Pinette +592526,Francesco Golisano +10713,Eric Idle +34405,Ludwig Donath +134772,Keith Gibbs +944143,Jia Hongsheng +2392,Gates McFadden +78877,Ray Lui +1857,Cornelia Froboess +147396,Charlie Spradling +20562,Antoni Corone +27713,Elizabeth Cazenave +91421,Nicholas Wyman +1275915,Vantha Talisman +153174,Susan Westerby +1368770,Audrey Chapman +12207,Kylie Minogue +1472493,Hank West +1216163,Kaylee DeFer +1108271,Alan Freeman +1641116,Christopher Martin +1896446,Shôichi Kofujita +84248,Damir Andrei +62888,Lia Bugnar +1661652,Lenny Roberts +1416133,Sofie De Vos +83553,Paul Reynolds +534537,Mia Fothergill +120476,Landers Stevens +1781831,Justin Ellis-Johnson +1425467,Lawrence P. Casey +57992,Tina Lifford +97252,Mady Berry +1434994,Justin Mosley Spink +77912,Andrew Caldwell +95967,William Edmunds +108302,Matt Holland +60878,Warren Kole +1559270,Gordon Carveth +11023,Shawn Ashmore +28834,Leon Niemczyk +115366,Mary Field +131822,Rileah Vanderbilt +1333696,Akira Takayama +1114295,Daniel Knight +104996,James Cardwell +1108688,John Picorri +26155,Edmund Purdom +79073,Gina Gallego +30667,Lorenzo Terzon +50346,Shiri Appleby +140167,Noel Harrison +1434369,Junior Williams +299082,Frank Singuineau +1045964,Aaron Vexler +298767,Robert Putt +1100,Arnold Schwarzenegger +56732,Fernanda Romero +26676,Davyd Harries +1527165,Charlette Julius +1728632,Uwe Diderich +16186,Shawn Nelson +1271929,Ellen Pasternack +30621,Bert Remsen +21544,Richard C. Sarafian +12150,Maximilian Schell +1277930,Kam Hing-Yin +131285,Sabrina Scharf +12710,Scott Schwartz +21710,Michael O'Neill +220529,Wirt Cain +3007,Hans Heinrich von Twardowski +51329,Bradley Cooper +554577,Yoshihei Saga +14152,David Tree +167640,Mayim Bialik +99829,Severn Darden +1604873,Lonnie Woodley +5302,Gerry Vichi +14743,Gladys Hill +116778,Ebbe Roe Smith +147877,Llŷr Ifans +71041,"""Weird Al"" Yankovic" +89928,Blanche Yurka +1460959,Robert Le Ray +91491,Howard Eynon +555079,Barbara Gurskey +1353683,Behzad Khodaveisi +106172,Mato Valtonen +124855,Robert Elliott +60160,Scott Halberstadt +152582,Nick Corello +15443,Mark Bringelson +93946,Guy Deghy +1504146,Greg Farkas +52787,Patricia Stasiak +47423,Yuri Belyayev +5401,Anthony Quinn +1513404,Javon Constantin +121759,Michael Zaslow +37056,Stephen Kennedy +1888773,Joseph Bono +47703,Bryan Dick +110981,Milena Pavlović +137421,John J. York +12047,Andrew Kevin Walker +79216,Jo Ann Soto +98016,Bernard Siegel +42687,Athena Massey +1672645,Bayani Ison +105078,Lindsay Bloom +1073838,Tricia Heine +88536,Leonard Pietraszak +52933,Timm Sharp +1800179,Russell Gibson +1609652,James Bishop +1471656,Frank Fletcher +1781228,Kent Sladyk +1511375,Diana Ruppe +174382,George Rossi +54622,Filip Šovagović +14854,Donald Hotton +1804183,Lydia Nicole +568361,Mary Morris +101781,James Murtaugh +101045,Jennifer Siebel Newsom +963077,Annemarie Lawless +24517,Frank Zagarino +1704737,Boris Worister +101378,Don Most +55051,Shosha Goren +10430,Fred Ward +41640,Tovah Feldshuh +17028,Charles Denner +50970,Charlene Holt +159798,James G. Richardson +109361,Valentina Bassi +3042,Bruce Kirby +5384,Method Man +1593826,Hisao Takeda +1394475,Graeme Ford +1432192,Carla Perez +70209,Yusuke Iseya +34551,Reece Shearsmith +5922,David Huband +62526,Daniel Enright +1200403,Yoshie Kihira +58565,Carlos Leon +96994,Eric Portman +1237724,John Bear Curtis +1434976,Jay Koch +30007,Robert McWade +213,Gerry Robert Byrne +92010,Harold Lang +38232,Hugh Beaumont +30136,Leyland Hodgson +14471,Paddy Ryan +35,Sally Field +544623,Georgiy Yumatov +1781218,Cooper Grodin +1112908,Arne Warde +1757597,Giovanni Ukmar +1781340,Tammi Reiss +21090,Adrian Ricard +380003,Bernadette Robert +20391,Jane Wyman +122984,Bert Moorhouse +41886,Mark Polish +14837,Carol Burnett +82750,Larry J. Blake +116352,Mandy Chan +49968,Neville Phillips +85362,Margaret Field +1633400,Kate McEnery +116307,Harry Semels +1232538,Teddy Coluca +554420,Ako Mayama +94882,Damian O'Flynn +5737,Raymond Bailey +22225,A.D. Miles +1021440,Eric Nesterenko +136436,Alba Arnova +1288695,Peter Ashley +3163,George E. Stone +1503021,Carolina Lancaster +1605159,Don Barkham +1073042,Phoebe Legere +47802,Olga Legrand +125016,Hiroshi Hayashi +38608,Dietrich Hollinderbäumer +141010,Kay Deslys +225857,Keve Hjelm +144018,Ray Thompson +553984,Sabrinah Christie +1229847,Stephen Hancock +1723447,Marie-Cecile Truc +79512,Cerrlera +1606902,Samy Azaiez +5475,Clive Merrison +1063405,John McCarthy +21733,Michael Dolan +1421068,Wesley Giraud +30956,Jesús Franco +228625,Jasper Steverlinck +20948,Delia Boccardo +1643258,David Kelsey +80103,Christopher Titus +1801762,Caroline Glazer +78152,T.J. Hoban +16480,Peter Egan +121322,Adolph Faylauer +1849161,Jim Eagle +10730,Rowan Atkinson +18217,Henri Serre +141510,George Lessey +1363088,Monique Lea-Gall +4456,Henning Moritzen +143381,Daniel Louis Rivas +152587,Selma Archerd +12122,Ron Rifkin +239716,Oleg Popov +112722,Ross Elliott +1393362,Bruce Vavrina +70132,Akira Terao +1392598,Voltaire Sterling +59410,Bob Odenkirk +118355,Lee Lik-Chi +1839766,Aline Camacho +100839,Rene Assa +49813,Don Warrington +552640,Fumie Kitahara +33014,Sam Scarber +96895,Stuart Milligan +70099,Yuki Matsuoka +203731,Carlin Glynn +1616896,John Elliotte +40644,Chad Stahelski +14721,Kevin Dunn +54998,Olivia Araújo +1346157,Jacqueline Heinze +1094319,Matthew Page +102514,Jerry Desmonde +229668,Anna Lelio +57686,Hill Harper +24454,Tom Novembre +1786140,Richard Bell +94330,David Bradley +174580,Judah Katz +158673,Charles Collingwood +150338,Nadia Mourouzi +932632,Matt McCormick +202299,Murray Evans +1254650,Miranda Pleasence +9284,Thomas Kopache +1709423,K.C. Winkler +37065,Ruth Drexel +76064,Kathleen Beller +1468089,Ed Randolph +30611,Myriam Cyr +95899,Yekaterina Golubeva +79418,Devon Alan +84785,Hoyt Richards +123212,Fermí Reixach +151657,Regis Philbin +1461425,Julia Juhas +85650,Glauco Mauri +1220314,Nathan Constance +980863,Marianna Elliott +1120515,José María Negri +157059,Jimmy Palumbo +4,Carrie Fisher +1619946,Kao Chen-Min +60145,Tory Ross +32153,José Manuel Martín +4779,Jeremy Blackman +1157036,Mark Elwes +153537,Herbie Faye +148100,Donal Lardner Ward +1176949,Kent Staines +15535,Robin Harris +235434,Rob Halford +19131,Marsha Mason +15011,Brent Briscoe +83433,Shelley Fabares +75465,Lewis Arquette +1129883,Paul Campbell +545675,Claude Jutra +1624702,Bernardine Dohrn +53552,John O'Leary +37597,Charlie Stratton +938743,Denise Dillaway +557008,Antonina Maksimova +161806,Michele Marsh +1717079,Lois Bendler +1089965,Albert Dumortier +119250,Mercedes Leggett +88821,Ronnie Schell +5927,Tony Munch +133560,Jitka Smutná +116119,Elizabeth Saxon +1279653,Gianfranco Piacentini +97007,Addison Richards +1468172,Tom Coleman +66441,Talulah Riley +1358403,Kelvin Hale +27948,John Miller +554850,Kevin Lin +150666,Kevin Phillips +1465608,Estella Perez +4757,Rupert Everett +1499721,Michael Shawn Lucas +3156,Joe E. Brown +2341,Richy Müller +1609266,Iele +87049,Nancy Chartier +84493,Mickie McGowan +2310,Bruno Ganz +1229549,Michael Caloz +83806,Arch Johnson +1853269,Josh Shipley +6979,Romola Garai +1224787,Louis V. Arco +17292,Tom Wisdom +50587,Larry Vigus +1349415,Herbert Sutch +1009300,Ivan Bekjarev +33232,Mamo Clark +1467331,Judith King +145876,John Rees +30276,George Barbier +135360,Misha Philipchuk +117027,Clark Howat +1692542,'Mad' Mike Jones +1011102,Jesse Lee Soffer +1184846,Antonia Frering +11159,Cheech Marin +38358,Donald Houston +1582,James Duval +20405,Brian Posehn +1656609,Travis Cody Aimer +1042265,Campbell Cotts +1896883,Connie O'Connail +26108,Victor Poulouin +57137,Alexz Johnson +39556,Dana Davis +1089443,Lee Biolos +10163,Virginia Huston +1147362,Esmarel Gasman +126753,Ruth Hall +935959,Susie Scott +53010,John McIntire +84508,Takehito Koyasu +29956,Erich von Ritzau +102104,Françoise Blanchard +96722,Byron Foulger +123858,Kumeko Urabe +1229174,Eoin McCarthy +1089178,Chad Brigockas +38053,Heinz Reincke +136906,Marc Clement +135054,Dougie Jones +23659,Will Ferrell +141692,Johnny Whitaker +43800,Charles Dennis +231318,Melinda Kinnaman +952657,George MacQuarrie +31774,George 'Spanky' McFarland +17021,Bryan Ferry +69855,Jane McGregor +141404,Tom O'Neill +29304,Sydney Chaplin +81194,Cat Ly +56649,Jennifer Decker +1332017,Brian Christensen +24627,Oliver Cotton +577739,Michael Ahl +82478,Isao Tamagawa +1271205,Joseph North +12462,Rebecca Pan +1580382,Lucille Lamarr +552410,Jeanne De Casalis +21182,David Dayan Fisher +1342,Liu Zhong Yuan +97718,Will Hare +118745,Fung Hak-On +32931,Gregor Bloéb +16588,Christopher Grant +1617303,Emily Andrews +1117324,Brian Tenenbaum +68301,Will Sampson +91444,Davidson Thomson +80223,Melissa Greenspan +166951,Lisa Dean Ryan +58251,Elaine May +923,Dean Stockwell +1471395,James Carlisle +990961,Chema de Miguel +1444519,Erkan Jakupi +92422,Lennart Hjulström +1134504,Tin Ching +27241,Nina Axelrod +19013,Al Gore +552179,Ryû Kuze +10131,Sara Rue +552084,Bowie Lam +1467399,Ida May Johnson +1498313,Bernie Allen +1275928,Long Chau +166796,Gareth Thomas +36253,Achim Strietzel +92840,Alvin Alexis +1018310,Michael Sassone +1780918,Anton Rice +29238,Jessica Ashworth +59233,Scoot McNairy +16979,Chus Gutiérrez +56749,Don Thompson +2496,Stanley Ridges +1799821,Rebecca Price +35687,Zane Rockenbaugh +30676,Howard Goorney +17772,Jesse Bradford +148349,Elsa Saisio +39908,Ulrike Krumbiegel +35757,Athit Naik +20902,Raffi Di Blasio +1850004,John B. Thayer +64871,Barbara Luddy +1606904,Philippa Day +1077900,Penny Everingham +62821,Tyler Patrick Jones +6449,Warren Beatty +74537,Maggie Siff +156616,Michael Tomlinson +112866,Ernst Günther +24816,Pierre Arditi +1301643,Ana Valle +137907,Carmen Miranda +66561,Corinne Reilly +128709,Sabyasachi Chakraborty +85737,Billy House +52948,Aung Aay Noi +1841267,Kristin Hoke +191104,Apollonia Kotero +1034677,Alberto Cracco +11989,Michel Bouquet +1872814,Neisha Folkes-LeMelle +1366374,Yan Regis +1300853,James Babbin +552411,Mabel Terry-Lewis +12854,Kent Williams +1183449,Drenda Spohnholtz +127037,Joyce Gordon +109383,Clint Dyer +1281,Freddie Highmore +1416109,Jeffrey Louis Starr +96280,Ralf Little +1203246,Barbara Graley +1186930,Frances Fong +1468354,Richard Elmore +248579,Bill Cody Jr. +53013,Jeremy Sheffield +80234,Doris Nolan +33832,Greg Lewis +32139,David Torrence +81050,Hyam Zeytoun +103982,Ja'net DuBois +77072,Tyson Beckford +32384,Eddie Barth +99662,Mitzi Gaynor +81051,Tahar Rahim +39954,Donald Sinden +109086,D'Urville Martin +1454066,Neville White +1365727,Justino Díaz +71057,Zhou Xun +1318526,Kizito Ssentamu Kayiira +1661617,Andrew Pacho +108890,Harvey Atkin +21177,Thierry Lhermitte +1672682,Damian Foster +26715,Robert Klein +75278,Norris Blanks +61144,Reb Brown +30119,Alfie Bass +555070,Chris Liano +54043,Gary Anthony Williams +1570015,Katie Lansdale +1569482,Cole Morgen +1669956,Mike Massimino +1335880,Catherine Duncan +1053297,Britta Smith +1538900,Anthony Walters +136886,Li Tian-Lu +180527,Lidia Porto +21735,Billy L. Sullivan +161159,Dale Robinette +1565326,Malene Brandt +58925,Lester Speight +119782,Vernon Weddle +72590,Ariane Ascaride +20055,Renée Asherson +80487,Marky Ramone +1629441,Jitlada Korsangvichal +1040465,Edith Clever +953424,Etta Moten +67515,Marilyn Chris +15860,Miguel Ferrer +237362,Yoshiko Miyazaki +1198480,Toshie Kusunoki +52703,Alan C. Peterson +47625,Christina Cole +1882506,Grisha Plotkin +28778,Shirley Knight +1217685,Alexandra Neil +10981,Fiona Shaw +140438,Jiří Lábus +1037924,Massimo Fratus +109767,Ivette Soler +1279570,Vasana Chalakorn +1185641,Midori Uchiyama +95978,Kim Sebastian +1478366,Kiyoshi Kamata +131391,Maryann Urbano +78119,Gabrielle Brennan +366,James Mangold +93795,Tony Fields +148038,Matleena Kuusniemi +1439595,Ivan Jovanicic +52903,Anthony De Longis +1366125,Elaine George +1744152,Mitzi Martin +1084274,Claudio Rissi +64722,John Carl Buechler +33667,Victor Browne +1467397,Dorothy George +52116,Wendy Raquel Robinson +81899,John Christy Ewing +29215,Jamal Sims +239009,Lui Fong +53646,Missy Crider +1032202,Max Benitz +1620086,César Gattegno +40185,James Best +174860,Lora Staley +115596,Arthur Holden +1361024,Wong Chi-Wai +1077256,Roberta Lena +1237062,Kevin Rushton +218321,Gary Sefton +11216,Julien Guiomar +12812,Lysette Anthony +1150553,Anne Sofie Espersen +21066,Patrick O'Neill +78064,Adam Deacon +1075118,Bill Ontiverous +53720,Timothy Webber +68706,Yu Tokui +1062037,Michel Camilo +1613413,Joanna Marie Jones +584154,Maya Maron +132078,DJ Qualls +131474,Tom Graeff +950877,Mary Ashleigh Green +21275,Dean Silvers +86204,Geoff Meed +552183,Hiroyoshi Yamaguchi +51754,Freda Foh Shen +22132,M.C. Gainey +7161,Eva Löbau +231165,Jan Hrušínský +2266,Stephi Lineburg +108244,Stacy Morgan +102886,Joyce Barbour +79747,John Burgess +51500,Bruno Flender +1366350,John MacDonald +180495,Ron Simons +17304,Adrian Pasdar +132449,Eduardo Blanco +2273,Paul Farrell +41779,Monica Vitti +16761,Eduardo Ciannelli +1668483,Robert Michael Lee +1693338,Leticia Marfil +1234546,Sally Corner +109740,Alysia Reiner +127517,Paul Phillips +60951,Craig Kilborn +46074,Rachael Harris +129868,J.D. Evermore +1606865,Marc Goutas +83442,Lola Albright +24980,Kandido Uranga +1634913,Ursula Abbott +588668,Julien Mitchell +115059,Walter Crisham +1720982,Michael Moertl +1741968,Johnny Bartee +1164448,Hon Gwok-Choi +152783,Mak Takano +1778745,Diana James +1857441,Dane Messam +60077,Douglas Smith +1043972,Beth Gosnell +17857,Shaun Toub +51611,Chris Marrs +4114,Sydney Greenstreet +5739,Konstantin Shayne +86583,Roderick Peeples +1176932,Thomas Pogue +182372,Michael Skewes +1081945,Juan Carrasco +4239,Yasiin Bey +153783,Richard Ian Cox +193032,Hugh Corcoran +678,Martina Gedeck +10263,Heinz Bennent +177987,Mark Wing-Davey +9980,K. C. Martel +6714,Mädchen Amick +14756,Karroom Ben Bouih +15389,Louis Malle +217773,Norman Ollestad +1542405,Moet Meira +59245,Laara Sadiq +1408344,Lyne Tremblay +49168,Noémie Lvovsky +96734,Mae Barnes +89684,Osa Massen +553228,Harry Terry +87475,Taylor Lacher +1781144,Steven Mason +1224825,Georgia Craig +79952,Mikhail Baryshnikov +1179090,Mitchell Group +519,Martin Short +52939,Max Kasch +45222,Joe Bugner +1894165,Alan L. Brown +155252,Robert Cabal +1773,Kazuyoshi Minamimagoe +1219502,Christopher Neiman +2480,Tam White +102956,Tanya Maree +1595130,Lane Turney +120556,E. Alyn Warren +131542,Manuel Álvarez Maciste +59039,Mitchell Mullen +74674,Jonathan Tiersten +101918,Lucien Morgan +1310173,Perry Askam +134757,Alain Rimoux +132999,Petra Martínez +16903,Ghizala Avan +13697,Dominique Zardi +160335,John McCann +55821,Luther Adler +110102,Helen +1030330,Søren Christensen +2165,Rosanna Arquette +1132357,Larry Williams +558205,Julie R. Ølgaard +5419,Saïd Taghmaoui +86711,Zoya Fyodorova +75898,John Benton +233174,Emilio Cigoli +40976,Claude Cerval +93718,Anne Jeffreys +1055191,Fusia El Kader +37114,Gabriel Gobin +1580039,Tom Klar +53400,Tim Bagley +44352,Hilde Weissner +21153,Remak Ramsay +935842,Don Barrett +84917,Clydie King +6075,Michel 'Gish' Abou-Samah +24404,Gérard Barray +1181119,John Compton +1879507,Earl Smith +1346975,Lam Gwok-Hung +10930,Irvin Kershner +39596,Tricia Vessey +65125,Rebekah Chaney +1437091,Daisy Bufford +1063466,Wesley Bly +1726179,Bernie Styles +12358,Zita Görög +159118,Melinda Mullins +12501,Marion Lorne +25656,Terence Harvey +5577,Chris O'Donnell +1875121,Safdar Shodjai +20526,Maï Anh Le +86247,Eiji Gô +216086,James Grant +779,Lisa Eilbacher +144361,Irene Browne +1593821,Takashi Kora +73044,Ikue Ōtani +8186,Miko Hughes +119855,Hunter von Leer +4047,Rick Marzan +1384168,Norma Calderón +1747708,Ted Finn +1481113,Harue Kuramoto +19787,Harry Davis +1046722,Dom Flemons +92565,Larry Flynt +92403,Jakob Eklund +2692,Robert Sean Leonard +739,Alison Doody +150652, Robert Osth +1381182,Carlos Zabala +11150,Gina Gershon +104302,Ronald Adam +30495,Victor McLaglen +1857437,Laura De Palma +2464,Angus Macfadyen +1603298,Stéphane Bierry +40061,Andersen Gabrych +122289,Eugene Cherry +217100,Darlene Johnson +194863,Chris Coghill +103934,Harold Nicholas +116129,Dan Ammerman +34616,Roger Dumas +133047,Betsy Aidem +1502566,Alex Borchardt +15452,David Steinberg +158567,Stephen Chang +25462,Kô Nishimura +1027146,Nick Lathouris +106644,James Van Patten +1315447,A.C. Green +1468726,Dorothy Barrett +63791,Jay Brazeau +95313,John Lund +1339,Zhang Ziyi +4533,Sibylle Canonica +1975,Jacques Ardouin +67383,Sam Saletta +940721,Al Herman +1838958,François Chicaïa +76241,Christy Carlson Romano +60143,Brad Oscar +38682,Martin Umbach +19414,Tom Tully +3702,Sebastian Schipper +104382,Dyana Ortelli +145106,Taylor Emerson +551823,Yukito Mizoguchi +57358,Brant von Hoffman +13577,Myrna Loy +1130025,Richard Barela +1225741,Judy Buxton +1551024,Jane Crowley +67222,Chingmy Yau +11483,Catherine Scorsese +1674980,Florence Situ +103967,Tiffany Helm +179508,Gary Valentine +125811,Alan Edmiston +2617,Cara Seymour +1812179,Chuck Allen +62247,Wendy Anderson +75742,Anthony Phelan +59539,Raúl González +15863,Don S. Davis +1537,Angela Paton +1136791,Samuel Pang +87133,Lyndon Byers +134528,Bernard Barrow +73513,Peter Boyden +189433,Sion Tudor Owen +29797,Matt McKenzie +1790458,Tyler Dayne Gallimore +26882,Kiyoshi Kurosawa +222330,Brit Marling +2517,Donna Murphy +83463,Nancy Sinatra +64447,Mitch Carter +1741415,Kirsten Krueger +22290,Leelee Sobieski +33585,Vince Murdocco +5644,Alexandra Maria Lara +37207,Angel David +49623,Jared Padalecki +933830,Don Hicks +59869,Clair Elsmore +18735,Rock Hudson +98544,Michael Todd +27727,Marissa Ribisi +1583695,George Christy +187494,Steve Mouzakis +167122,James Cunningham +25414,Jody Thompson +161769,Pamela Payton-Wright +1681177,Abdelaziz Merzoug +589228,Eddie Searles +1186207,Catherine Berg +77027,William Newman +97281,William Bryant +175719,Marisa Rudiak +134399,Tsukie Matsuura +5621,John Farley +553450,Makoto Kakeda +85937,Aubrey Mather +25133,Vincent Grass +1484287,Sen Yamamoto +117379,Stephen Adly Guirgis +176333,Lisa Hartman +1196490,Dyron Holmes +154773,Chris Ufland +1261781,Iona Talanov +1140804,Wiesław Komasa +117194,Gabriel Gutierrez +51812,Nicol Williamson +6677,Kyle MacLachlan +57236,Melody Kay +1030612,Carol Lazare +91815,Emma Danieli +55648,Robert Kerman +118,Geoffrey Rush +68278,Peter Mensah +1225944,Benjamín Benítez +1543447,Bettina Ciampolini +1422180,June Glory +5148,Lucinda Jenney +1226921,Tristan Gemmill +100603,Lynda Wiesmeier +106682,Agneta Eckemyr +28160,Dave Gorman +1648887,Teddy Rooney +71779,Betty Lou Gerson +1019851,Jim Kent +120587,Steven Petrarca +1741390,John Daniel +62694,Lisa-Marie Schneider +52901,Yun Qu +19855,Suzuka Ohgo +98467,Anna Maria Alberghetti +5481,Liisa Repo-Martell +591599,Eduard Wesener +120066,George M. Carleton +1265950,Law Ho-Kai +76793,Irrfan Khan +40899,Isabelle Pasco +13105,Thembi Nyandeni +385,Ian Richardson +79861,Sophie Bevan +64592,Christiane Bopp +1851410,Mark Woods +18917,Erick Avari +40042,Sally Anne Newton +4135,Robert Redford +1781701,Barbara Ann Davison +61256,Trevor Wright +44114,Simon J. Smith +118389,Nick Poltoranin +1773101,Kaja Gjesdal +1420892,Lucille Porcett +99348,Gordon Gebert +134346,Hisao Toake +82,Olaf Storm +11510,Macaulay Culkin +78789,Jay Patterson +82885,Zoe Lister-Jones +1433496,Frank Hopf +1212803,Joseph Marcell +59450,Katy Mixon +1471,Ed Gale +1211731,Jordan Ranft +555067,Cindy Manion +5793,Liselotte Pulver +559200,Karl Sundby +1661645,Al Dana +1677320,Paul Lee +20502,Leslie Banks +60847,GQ +1066208,Giovanni Petti +2898,Rosa Valetti +80224,Ned Brower +44881,Arlene Dahl +1170096,Shalom Sharon Raginiano +109211,John Call +1400931,James DeForest Parker +75269,Graeme Carroll +5010,Todd Field +12827,Stubby Kaye +82847,Carmel O'Sullivan +47775,Marc Anthony +62066,Faizon Love +588,M. Emmet Walsh +579267,Eliane Kherris +102652,Myrtle Vail +164657,Carlos Palomino +77260,Paul Anka +103572,Anthony Pena +26257,Leigh Lawson +159131,Ken Wright +1502513,Lionel Washington +516266,Stephen Noonan +239091,Yen Shi-Kwan +592894,Belle McDonald +240908,Giulio Baraghini +1513490,Jacques Siclier +82661,Vinnie Hunter +178576,Alexei Jawdokimov +17070,Paul Berrondo +987357,Tim Gamble +58115,Eric Dane +88735,Horace Murphy +1296382,Debbie Connoyer +77587,Frank Roman +69757,Banlop Lomnoi +1775935,Gustavo Vargas +122815,Julie Lee +19869,Peter Youngblood Hills +1023353,Sally Baker +69026,Harry Bellaver +570799,Joshua Kyallo +1728655,Cathrine Schabeck +1604344,Addison Pate +1427881,John Talbert +58873,Dan Fogler +103367,Archie Twitchell +27263,Diana Douglas +1889110,Elaine Boisseau +1867437,Valentín Rivero +1773887,Susan Anne Wall +1836327,Chase MacKenzie Bebak +51173,Armin Dahlen +56731,Jessica Alba +210826,Andrea Navedo +380,Robert De Niro +100509,Francine Middleton +35022,David Darlow +1186533,Chase Moore +24303,Paul Bisciglia +117474,Scott Plank +1207091,William Ansor +1219226,Matthew Glave +1125222,Lisa Aldenhoven +21082,Raynor Scheine +33937,Jana Kaderabkova +9978,Robert MacNaughton +158737,Johnny Dark +1198661,Karen Henthorn +168320,Louis Giambalvo +1300857,Kelly S. King +1180131,David Golden +1204239,Leigh Allen +58014,Rossif Sutherland +45523,Lila Kedrova +119569,Dmitri Milyutenko +19222,Rachel True +177731,Miroslava +1502567,Chris Borchardt +25001,Lee Young-ae +33997,Mathias Mégard +1692547,Oystein Kjorstad +1411100,Billy Wells +43823,Herbert Anderson +39412,Monika Dahlberg +145694,Michele Austin +47153,Ghita Nørby +89808,Sandra Dee +64896,Michael Wong +1422741,Julian Reed +19851,Armand Schultz +60033,Yaya DaCosta +58354,Mary Portser +1214402,Brian Turk +553452,Bradley Jay Lesley +31210,Richard Bull +1232,David Huddleston +24047,Courtney B. Vance +92024,Brad Gorton +1393342,Frank Proctor +240086,Steve Alden +77154,David Forman +19781,Lurene Tuttle +175037,Leigh French +58392,Kristen Cloke +60818,Aki Niininen +1037921,Teresa Brescianini +234401,Claus Flygare +85736,Charles Kemper +10733,Carol Cleveland +96284,Alexander Scourby +52902,Brandon Rhea +1533696,Irene Santiago +53377,Kulbhushan Kharbanda +134383,Narutoshi Hayashi +114329,Gage Clarke +999672,Michael Adams +30194,Tiny Sandford +4356,Patrice Wymore +7173,Cab Calloway +163619,Eileen Pollock +18290,Ashlyn Sanchez +40002,Helene Winston +1571367,Michelle Read +1556463,Patt Hyatt +1041677,Silvia Planas +33660,Barbara Radecki +1117087,Shigeo Katô +56881,Shelley Long +73676,Hideo Sako +14414,Kareem Abdul-Jabbar +18266,Peter Cook +1856642,Byron Quiros +57353,David Graf +1857011,Tim Maloney +1385936,Lucas Denton +1742408,Shawn Rakowitz +187073,Max Fairchild +67026,Janet Suzman +79421,Charles 'Jester' Poston +59293,Archie Kao +1427818,Gin Clarke +71913,Bokeem Woodbine +555182,Anh Tuan +1366126,Esmond Ren Yi-Wan +1063140,Neil Finnighan +8246,Barry Levinson +70670,Yukako Kukuri +3829,Jean-Paul Belmondo +1214111,Kenneth Waller +18304,Billy Gallo +12522,Siân Phillips +1661658,Malinda Farrington +1415225,Wong Chi-Keung +171111,Harold Miller +4452,Lisa Marie +19196,Eric Deulen +154038,Cody McMains +22251,Royce D. Applegate +1590757,Anne Stedman +1507167,Anne Logan +69302,Litefoot +17481,Claudine Acs +19199,Jordan Taylor +32,Robin Wright +29520,Robert Newton +66545,Lisandra Vazquez +71555,Andrew Wilson +126656,John Holland +85116,Anne Fischer +76282,Dries Van Hegen +81098,Joe Dinicol +1599680,Clifford McGhee +33046,Anna Hagan +1471681,Curt Furburg +83874,Michael Arden +122983,Charles A. Lindbergh +52178,Ray Corrigan +27106,Harley Jane Kozak +44616,Monty Bane +65897,George Foundas +1454306,Aija Terauda +589728,Erville Alderson +1317939,Janet Young +15008,Ann Miller +15370,Gretchen Mol +41273,Ami Dolenz +32683,Sidse Babett Knudsen +156611,Luck Hari +94713,Warren Mitchell +34270,Walter Soderling +120593,Mitchell Mandeberg +90380,Charles Butterworth +16240,Stefano Dionisi +84681,Jo Henderson +115457,Eddie Bracken +27428,Aaron Taylor-Johnson +181299,Keith Reddin +1571366,Barbara Bergin +23658,Jennifer Schwalbach Smith +1664789,Ari Aricardi +1203529,Spider One +44818,Mark Holton +1482976,Sally Norvell +12658,Patricia Hayes +28006,John Doumanian +1733426,Anthony Mydcarz +576415,Candy Lo +36480,Phyllis Davis +3489,Naomi Watts +133730,Betty Lynn +30610,Barbara Baxley +17618,Frankie Pain +16526,Jimmy Gambina +90157,Sayaka Maeda +52051,Steve Lemme +12351,Jeff Morrow +58915,Nicholas Gleaves +149406,Eriko Imai +585,Rutger Hauer +55422,Elaine Hendrix +1020340,Jeff O'Haco +93164,Reginald Beckwith +16557,Michael Talbott +17660,Constance Collier +211568,Simon Baker +552672,Seiji Tabe +1335635,Paul Butterworth +1426136,Peter Houghton +11181,Kenneth Branagh +1781727,Karen Nazarov +22809,Keeley Hawes +135060,Donnie McMillan +192350,John William Young +112139,Yuri Amano +1135040,Pamela Green +9226,Irene Forrest +1422177,Frank Erickson +78898,Cherylene Lee +27546,Lisa Malkiewicz +120199,Eddie Hall +1002925,Joe Cheung Tung-Cho +25154,Arletty +4138,Craig Sheffer +55166,Christian von Aster +1790452,Frank Marino +1183660,Bobbie Steinbach +84654,Lindsay Crosby +10925,Torin Thatcher +8874,Ernie Hudson +150669,Micah A. Hauptman +1706740,Randy Stoklos +997860,Tim Bentinck +151335,John Zarchen +1340628,Kasan Butcher +1730639,Philip Bagenal +79981,Sun Ra +50315,Isabella Parkinson +14874,Gene Reynolds +47169,Gertrude Welcker +1618663,Piggy Chan +1897170,Terrell Mitchell +131219,Mathias Gnädinger +134403,Akira Ôizumi +23915,Pat Morita +1242989,Scott Newman +1823374,Michèle Barthélémy Zafrilla +25900,Daniel Guzmán +1291666,Robert Khakh +1607217,Jack Howarth +129101,Lance Reddick +30564,Kumi Mizuno +24854,Étienne Becker +107791,Kelly Stables +81551,Joseph Boley +929134,Ryan C. Benson +21397,Dennis Rodman +1647625,Alberta Lee +212938,Brit Morgan +78141,Grant Show +1275920,Thi Hai Vo +171004,Timothy Britten Parker +118577,Mitsuki Tanimura +18750,Annabella Sciorra +128094,Biana Tamimi +94852,Matt Roth +8654,Matthew Modine +59160,Kirk Penberthy +33352,Cory Monteith +111196,David O'Donnell +77993,Parry Shen +14505,Harold J. Stone +6110,Graham Beckel +70773,David Lazer +223263,Josephine Lawrence +1091239,Serge Christianssens +3832,Henri-Jacques Huet +75200,Tait Ruppert +39481,Jordana Spiro +1826582,Krista Conti +74110,Antoine Duléry +162985,Ryan O'Neill +74352,Roberta Collins +19328,Dick Powell +1233541,Sonny Grosso +17415,Brenda Canela +19181,Rory Calhoun +1986,Peter Gerety +64148,Chase Ellison +1896855,Frank Bourke +147371,Daniel Lugo +100582,Roy Engel +1624473,Li Hua-Sze +1879504,Michael Waltman +64733,Jensen Daggett +1352524,Oleg Kosminsky +64502,Park Ji-yeon +506,John Scurti +10989,Rupert Grint +102422,Susan Saiger +174893,Annabella Price +12074,John Lithgow +79513,Britta Gartner +150029,Monica Broeke +65760,Marin Hinkle +4600,Joe Dante +69638,Emily Chu +198327,Mia Bendixsen +141476,Vincent Friell +1214023,Wesley Mann +18299,Ime Etuk +87794,Mark Borchardt +84341,Patrick O'Brien Demsey +59581,Andrew Rothenberg +27980,Edith Scob +1215657,A. Russell Andrews +76987,Scott Benjaminson +195061,Martine Bartlett +1717649,Steven Farber +2048,Gary Busey +23282,Gudrun Ritter +17495,Martha Plimpton +30184,Eric Blore +8853,Ralph Waite +41419,Hugh Laurie +1192379,Sig Libowitz +1347363,David Wieland +1176933,Grace Field +1248,Brian Cox +95825,Randall Slavin +62879,Chris Geere +105293,Martin Jay +4761,Darlanne Fluegel +71725,Jake Sandvig +20696,Jonathan Higgins +61623,Tonio Descanvelle +1003698,Parker Torres +1619526,Sean Cernow +947670,Robert Agins +14465,John Woodvine +551831,Koinojô Nishikawa +111401,Bernadene Hayes +1187,Saul Stein +96674,Paul Tylak +77054,Tetchie Agbayani +240240,Leila Hatami +163934,Emma Lesser +1181526,Alessandro Bertolucci +95739,Susana Dosamantes +79651,Matt O'Toole +87067,Jack Soo +10767,Barbara Hershey +1416110,Philippe Kerjean +1365681,Jenni Blong +141304,Anne Cornwall +7174,Ray Charles +33382,Jack 'Tiny' Lipson +1059106,Crystal Shepherd-Cross +68456,Richard Hunt +33676,Kathleen Robertson +19302,Jason Mewes +590617,Lili Damita +25579,Chuck Hicks +6908,Marc Macaulay +1076415,Puka Oinonen +1331575,Elizabeth Walsh +134910,Dafydd Wyn Roberts +5940,Matthew Ferguson +1833018,Anita Muccia +130486,Manart Kippen +201660,Brian Stirner +1229258,Charles Bartlett +1348446,Anja Bertelsen +147119,Vincent Spano +131478,Bryan Grant +1468182,Rosemary Grimes +29433,Lucio Fulci +930621,Florence Vidor +78730,Oliver James +115329,Elliott Sullivan +1074,"Harry Waters, Jr." +1010507,Joan Ingram +64971,Samuel Fröler +65354,Yang Kuei-Mei +49706,Adam Rodríguez +163555,Arianna Huffington +70811,Yôko Tsukasa +1609672,Alix Morrey +56695,Michael Tucker +1728659,Bernhard Janson +109301,Carrie Ng +1872797,Paula Montes +1907,Kathy Baker +36821,Nicholas Guest +1077899,Dorothy Thorsen +1179586,Cactus Mack +5281,Spike Lee +61830,Sylva Kelegian +1781724,Turi Haim +146328,Nick Whitaker +97798,Don Scribner +21664,Christian Sinniger +159869,Matthew Sussman +57490,Fausto Tozzi +1280766,Aaron Wan +54681,Richard Denning +1359432,Bernice Nicholson +1229488,Lew Schneider +58859,Gyurme Tethong +139075,David Mitchell +78749,Hrithik Roshan +171960,Rick Johnson +367116,Marie Micla +545488,Masako Motai +1779452,Michele Shay +53246,Jason Salkey +2896,Marlene Dietrich +130562,Andrew Lin +101948,Judy Pace +58563,David Alan Grier +226829,Masahiro Komoto +7175,Aretha Franklin +118998,Hiroshi Tanaka +1002270,Ann Newman-Mantee +19137,Lou Ferrigno +1255311,Hoon Lee +142469,Shirô Ôsaka +1014122,Lavínia Vlasak +80440,Chuck O'Neil +43547,Nonso Anozie +932202,Chuck Baron +1077897,Russell Butler +83151,Kelli Maroney +1415347,Kan Tat-Wah +126804,Atthakorn Suwannaraj +238650,Robbe De Hert +1985,Saul Williams +1587928,Joaquín Blanco +123573,Hans Joby +51036,Louis Ferreira +1209603,The Music Maids +1469187,Helena Remeijers +103789,Don Barry +95808,Maurice Blake +119606,Gam Kei-Chu +74710,Marie Göranzon +58393,Crystal Lowe +57607,Stephen Chow +6354,Charles Cioffi +27763,Casper Van Dien +225291,Karl Platen +1646170,Larry Rivers +583568,Darmaraja Ravi +1469186,Maria Kooistra +1856481,Slam Wedgehouse +1580033,Petra Jezková +198927,Sarah Drew +10362,Roberta Maxwell +1475681,Maria Druille +2922,Boris Karloff +1704735,Brian Heinberg +59641,Ted Hartley +9768,Francisco Rabal +38597,Renzo Palmer +104926,Peter Liapis +13791,Edward Peil Sr. +14108,Joyce Van Patten +12520,Silvana Mangano +9783,Lexie Bigham +351,Judy Davis +104090,Fausta Avelli +231013,Tao Leung +212658,Donald Ewer +58113,Niklaus Lange +32684,Rolf Lassgård +1206249,Max Broadhead +51798,Katee Sackhoff +10866,Eric Bogosian +143171,Bertila Damas +42017,Ricardo Diaz Mendoza +103578,Bruce Monette +18997,Bryce Dallas Howard +176724,Romi Dias +1077828,Dara McGarry +1210,Héctor Elizondo +14263,Colin Gordon +151846,Willard Sage +85949,Daniel Quinn +31031,Kyla Pratt +49834,Bette Henritze +1071846,José Manuel Poncelis +27734,Stafford Repp +48136,Gary Carlos Cervantes +16030,William Smithers +1733427,Michael Maciejewski +149921,Mike Faiola +1116907,Craig Castaldo +204339,Christopher Place +74428,Tim McGraw +1444514,Palle Hougaard Nielsen +13611,Jack White +108289,Barney Phillips +26657,David Bamber +18365,Sandy Dennis +1741422,Amy Dorris +36028,Michael Hinz +38901,Guy Marchand +100461,Nicholas Worth +1742437,Charlita Williams +1421080,George Bruggeman +2726,Brigitte Mira +5529,Anna Popplewell +137270,Louis Gottlieb +127640,Selma Diamond +593,Joanna Cassidy +14407,Matt LeBlanc +1002235,Maria Kazan +1619134,Alexander Cann +1781690,Edward Shkolnikov +1614869,Marie-Claire Fremont +41157,William Aldrich +82407,Kathryn Grayson +48962,Tom Conway +100702,Fabián Conde +97441,Olivia Caffrey +14990,Morgan Fairchild +62840,Brian Scolaro +1790461,William 'Shorty' Young +49971,Jennifer Ehle +1281025,Annabelle Singson +1729936,Benoit Martin +749886,Paul Ryder +1137039,Sherrie Wills +89569,Teda Bracci +78717,Lexi Randall +42388,Luke Keltie +27566,Penelope Milford +1392607,Southey Blanton +231034,Helena Yaralova +1076196,Howard Jay Patterson +109634,Guy De Saint Cyr +121412,William Royle +155419,Theresa Hayes +84407,Jim Gaffigan +1290863,George W. Jimenez +98365,Veronica Hart +277436,Gunilla Nyroos +1469200,Pee Chantrarangsan +18561,Cyrielle Clair +15253,Stanley Anderson +2465,James Robinson +134897,Noel Williams +93846,Googy Gress +551625,Narongsak Junjiamrat +60633,Kevin Sussman +581064,Patricia Besnard-Rousseau +106554,Mary Servoss +4679,John Furlong +53923,Aunjanue Ellis +1493009,Maryam Mohamadamini +1237738,Shawn Stewart +97998,Nick De Ruiz +1035445,Don Ackerman +11661,Kate Hudson +1295583,Joan Marie Lawes +59645,Kel Mitchell +53975,Deepika Padukone +950499,Érika Gagnon +39776,Camilla Carr +51975,Laura Ramsey +129973,Park Choong-seon +93799,Carl Betz +3063,Tilda Swinton +1218566,David Gray +1084940,Greg Jeloudov +1896858,Kieran Hegarty +1441488,Asger Gottlieb +35701,Dave Sheridan +54281,Olivier Cruveiller +69157,Dick Beebe +80591,Rashida Jones +164114,Michael Hogan +32162,Clément Harari +10669,Timothy Dalton +148673,Kim So-yeon +1879478,Pat Willoughby +151699,Peter Canon +44185,Judith Scott +1361156,Lori Bara +1757591,William Mayor +38649,Madeleine Damien +1479,Frank Collison +149507,Richard Assad +8436,Miranda Richardson +1671454,Mary Carewe +103592,Stephen Davies +3111,Alexandre Rockwell +164556,Peter Mochrie +71335,Chloe Hunter +16506,Henry G. Sanders +83820,Gordon Lam Ka-Tung +70838,Jonathan Beck +119217,Sherwood Price +1173757,Peter Chan Lung +31350,Craig Hill +1411422,Wylie Grant +65421,Elizabeth Rodriguez +51382,Chris Parnell +8836,Jennie Lee +130744,Tuck Milligan +35340,Barbara Williams +234653,María Luisa Arias +25849,Richard Burgi +57424,Helen Buday +77263,Mitch Morris +1145352,Géraldine Maillet +188148,Paul Bon Tempi +9126,Edward Fox +1591178,Adele Robbins +16271,William Squire +27752,Bruce Spence +1077330,Weston McMillan +1530153,Alan Turkington +1593805,Ray Godshall Sr. +1119000,Innokentiy Smoktunovskiy +25779,Ulla Bergryd +130719,Terry Beaver +9293,Ivory Ocean +1674894,Tom Farr +150204,Mina Badie +171946,Jean Brassard +1888569,Rawda Suleiman +74642,Shawn Carson +66555,Whitney Cummings +150609,Lawrence Ko +11419,Robert Kurtzman +47549,Jack Watson +10383,Phyllis Lyons +154189,George Anthony Bell +1291648,Shannon McLeod +1527166,Adam Henderson +149979,Connie Booth +74690,Beatrix Lehmann +4335,Darryl Virostko +97715,Toni Nero +143806,Jean Lenauer +1778955,Felicite Morgan +1620877,Yang Guang +16838,Steven Paul +77934,Fumihiko Tachiki +76134,Rick Danko +55047,Sarah Adler +1468088,Aurora Navarro +1055869,Mara Tartar +4098,Edie Adams +1417451,Chuck Adamson +1138498,Iwona Katarzyna Pawlak +20493,Sydney Tamiia Poitier +136422,Ric Segreto +30200,Murdock MacQuarrie +85607,Sillo Mahava +9807,Rene Auberjonois +73029,Skip Hinnant +4159,Nicole Burdette +1813935,Jacqui-Lee Pryce +555203,Atsuko Tadano +165381,Roz Kelly +41042,Danny Dyer +105987,Amanda Horan Kennedy +7037,Jean-Hugues Anglade +23324,Paul Schmidt +1181562,Raymond Anthony Thomas +1752316,John Andersen +12857,Irving Metzman +157858,Jerry Giles +51992,Odette Annable +467633,Adepero Oduye +48405,Olivier Perrier +165973,Wally Rose +106486,Rodger Halston +75151,Glenn Newnham +9594,Katharine Ross +7420,Harvey Fierstein +30514,Leonard Strong +3088,Sterling Hayden +77689,Tony Hatton +24200,Leonardo Nam +1333933,Nicholas Hamnett +1460962,Guy Rapp +12095,Cody Cameron +104943,Robert Harris +1075445,John Boxer +591416,Julia Wróblewska +111875,Al Roker +1837890,Rick Elmhurst +939767,Thuy Thu Le +1857440,Sarah Carrington +19049,Masayuki Yui +6004,Sten Ljunggren +79891,Josh De La Mare +1802666,Varvara Dvalishvili +146138,Rich Little +3969,Shane Brolly +75123,Bob Franklin +101230,Juli Reding +31526,Judith Donner +24605,Pete Lee-Wilson +96739,Noel Drayton +83621,John McGuire +1896870,John Quinlan +1446421,Damian Daly +193365,Arthur Whybrow +29985,Eleanor Boardman +12023,Maurice Evans +41658,Michael Bodnar +43836,Edmund Cobb +99749,Edmund Lowe +572076,Joanna Theobalds +3715,Anthony James +1448983,Tanya Haden +1550750,David Holcomb +79061,Kim Anderzon +1831425,Lola Lefebvre +61643,Lisa Bailey +1406724,Abdullah Abbas +1582110,Veronica Hurnick +1305317,GG Allin +1451740,Christian Manon +124467,Maurane +88948,Steve Vinovich +160546,Steve Landesberg +11318,Holland Taylor +32157,Zev Braun +1757,Persis Khambatta +75195,Jessica James +1190701,Linda Faye Farkas +76505,Ed Peranio +110486,Serge Lazareff +1090917,Shozo Suzuki +169769,Stephanie Williams +85105,Christo Garcia +83441,Anne Neyland +17413,Julio Oscar Mechoso +50588,Bates Wilder +1648656,Markus Napier +18920,Patricia Velásquez +19270,Michèle Mercier +233693,Kôjirô Kusanagi +61084,Michael Hyatt +51993,Anjul Nigam +137004,Gregg Barton +40901,Marie Angel +222559,Russell Badger +995,Vas Blackwood +217800,David Dixon +7678,Hart Bochner +84384,Osama Bin Laden +54074,Witold Pyrkosz +1121516,Satya Gumbert +1013377,Charles Francis +16927,Gérard Depardieu +1155485,David No +19767,Snoop Dogg +1506286,Lauren Blumenfeld +27688,Dan Callahan +1171859,Brian Swibel +116186,Lowell Sherman +59017,Jurnee Smollett +38159,Geraldine Smith +364835,Carl Mazzocone +1575502,Claude Gasse +160411,Rudy Challenger +1709751,Evan S. Evans +101742,Leonard Mudie +20095,Alex Greenwald +5528,William Moseley +9963,Jacques Ledoux +99038,Michael Rubenstein +995601,Matthew Dupuis +26104,Henri de Lorme +12208,Ozzy Osbourne +7666,Henry Travers +97430,Joe Absolom +61345,Alex Menglet +63936,Dayle Haddon +46780,Samantha Eggar +86474,Kelly Wolf +32254,Steffen Wink +554984,Wu Bai +47699,Alison Steadman +1877153,William R. Perry +558860,David Zellner +21629,Tzi Ma +95789,Georgina Cates +62571,John Waugh +131981,Catherine Verlor +1461,George Clooney +1531625,Nathalie Asnar +1231420,Martin Ball +26061,Matthew Newton +154917,Al Sapienza +136761,Nathalie Baye +90764,Richenda Carey +75791,Ed Beeten +939703,Mojo Nixon +270786,Joel Allen +2555,David Proval +154433,Mary Sinclair +79395,Shirley Gruar +35862,Douglas Henshall +1244362,Phe Caplan +1878510,Chuck Meo +1707730,Charles Bonet +66839,Philippe Lefebvre +116975,Paul Copley +57471,Peter Marquardt +108988,k.d. lang +31211,Clive Barker +155376,Bill Richmond +1320290,Milan Vyskocil +1201023,Kumeko Otowa +24778,Jeanne Pérez +68167,Gil Cates Jr. +102567,Randy Oglesby +20176,Kris Lemche +789,Joel Bailey +1609276,Jewel McDonald +1571853,Heidi Jayne Netzley +157582,Bruce French +82782,Charles Irving +955006,Lucija Serbedzija +147981,Michael Chaplin +1926,Eddie Izzard +121294,Robert Walker +42545,Ron Jeremy +77153,Leif Tilden +1509778,Geoff Falk +7061,Joanna Page +551861,Yôsuke Imanaka +54455,Devon Gummersall +79877,Colin Wetherall +77234,Priyanka Chopra +7622,Hope Clarke +7539,Liz Phair +10207,William Hope +112853,Jan Mybrand +8237,Doris Day +95734,Douglas Kennedy +20354,Amber Tamblyn +167999,Cyndi Pass +999887,Catherine Dale Owen +1673818,Billy Sheffield +109897,Ethel Merman +69932,Jordan Houston +980450,Bradley Page +1879475,Loy Burns +106765,Joanna Miles +1101336,Andrés Vicente +100653,Vanessa Bell Calloway +77715,Lucas Fraccaro +60802,Ben Lipitz +55423,Wayne Rogers +1081813,Betsy Lynn Thompson +1800181,George Grafas +64715,Patrick Van Horn +1330764,Isabelle Fournel +98443,Richard Nichols +24381,Jean Yanne +1769721,Shin Hye-Jung +1484290,Yasuhito Yamanaka +132320,Clarence Geldart +583592,Jean-Pierre Mangeot +77337,Aaron Schwartz +7134,Brent Hinkley +1215878,Haylie Johnson +76638,Hugh Thompson +54187,Aleksandar Berček +24173,Mike Binder +580606,Idir Elomri +75174,Socratis Otto +26858,Malcolm Terris +49359,Mitch Vogel +1010,Michael Badalucco +118763,Lúcia Moniz +138401,Frank Senger +68677,Hwang Jang-Lee +37154,John Magaro +1580200,Fawn Irish +128966,Estelle Taylor +22600,Edmund Gwenn +14298,Margaret Lockwood +179313,Mickey Maga +16523,Burgess Meredith +72100,Joseph May +1392746,Charles Rosenblum +69148,Danilo Lazović +16832,Tony Hawk +1786649,Connor Carmody +1376187,Mónica del Carmen +93123,Monty Woolley +1353645,Carl M. Leviness +10651,Stephen Kinyanjui +939983,Marten Lamont +1326575,Jean Gold +10867,Steve Braun +86325,Ryoo Seung-wan +1896869,Finbar O'Mahon +170954,Johann Carlo +114034,Christian Oliver +82387,Gordon MacRae +15254,Emir Kusturica +1183913,Ken White +31712,William Converse-Roberts +179270,Bruce Dinsmore +234197,Michel Charette +1330767,Elisabeth Etienne +1139069,Ma Jing-Wu +59057,Moira Quirk +1366358,David Collins +1889112,Sheila Aza +554274,Milos Hlavac +11535,Paulette Dubost +81786,Barbara Schulz +90441,Tito Goya +553868,Jorge de Juan +116315,Kari Wahlgren +15761,Grey Griffin +58432,Gail Downey +1010448,Helen Dickson +1504112,Mary Kircher +1194872,Josef Norman +235365,Mike Henry +1770649,William Houck +1373202,Tom Nobles +10165,Dickie Moore +129270,Steve Millichamp +1781842,Vincent James Russo +136419,John Crowther +17824,Regine Zimmermann +44800,Bunny Summers +4071,Otto Kruger +87270,Faith Esham +1235718,Jerry Schram +1240490,Kevin Wiggins +8789,Mathieu Amalric +100870,Jill Schoelen +16431,Sam Elliott +1896864,Owen Buckley +1609202,E. Kalani Flores +25003,Kim Tae-woo +1609641,Dermot Kerrigan +10926,Norma Varden +61968,Patrick Pinney +8223,Jon Finch +148812,Gloria Blondell +80129,Makoto Inamiya +17489,Lillias White +311811,Paul Popplewell +140777,Michael Schoeffling +1706342,Karla Sue Krull +159826,Adam Grupper +1609660,Edwina Crebbin +69014,Anne Sørensen +236686,Manuel Ojeda +1432458,Miriam Newhouse +18283,Dato Bakhtadze +44103,Richard Fitzpatrick +121369,Danny Best +932474,Katherine Ross +14729,Laurence Harvey +1197568,Calvin Churchman +34577,Pat Sheehan +1016691,Charles McMurphy +1469188,Wilhelmija Lamp +1135394,Tommy Wong Kwong-Leung +988023,Claudia Coleman +92495,John Koyama +31167,Elizabeth Mitchell +1826583,Gina Salemi +66474,Wladyslaw Byrdy +1749196,Jane Mitchell +1439600,Charlotte Fuchs +150826,Laura De Marchi +134692,William Mannering +185766,Flint Beverage +47654,Paul McGann +1162,Robert Loggia +1271045,Charles Brinley +1387,Artur Barciś +1790448,Cher L. Halas +59177,Michael Rady +1366371,Moses Nyarko +69552,Sakke Järvenpää +65314,Giuseppe Tornatore +1856503,Daniel Frye +74288,Andrea Bowen +120941,Mike Kuchar +1851409,Lynn Hobart +23346,Armand Assante +72293,Vincent Verselle +38527,Robert Lepage +46814,Dale Dickey +117153,Yekaterina Rednikova +29312,Christopher George +84901,Bryan Hanna +1797586,Trudy Mathis +113587,Urbanus +19110,Virginia Gregg +60095,Karen Hines +1218873,Beverlee McKinsey +10606,Anne Baxter +55672,Tony King +18982,Ted McGinley +79532,Quentin Grosset +95639,Julian Stone +11588,Rena Mandel +552506,Chikako Isomura +229432,Frédéric Desager +86356,Milburn Stone +30222,Garry Watson +64145,Eugene Jones III +1661647,Paul Evans +96261,Matty Fain +567065,Masatoshi Nakamura +89601,Harry McCoy +115062,Charles Goldner +6172,Tanya Clarke +148788,Robert Cain +5204,Jürgen Tonkel +1231170,Michael Gover +23119,Peter Krause +27975,Mary Faktor +151644,Larry Storch +936373,Chi Kuan-Chun +78882,Carlos Bardem +1556459,Charlotte Arren +1178815,San Kuai +140914,Jeremy Brett +136040,Michael McKell +156413,Perry Anzilotti +60152,Lisa London +1905151,Vera Graaff +133252,Zoie Palmer +1018729,Norma Argentina +1212192,Bill Tangradi +78714,Cosimo Cinieri +1456538,Charles Page +44894,Jim Staahl +26471,Ron Kovic +552216,Sean Powers +91654,Barbara Brown +10022,Martha Scott +1373929,Germaine Lix +75259,Nathan Kotzur +278617,William Rothlein +160537,Michael Ebert +90776,Roscoe Orman +1232657,Suzanne Cyr +184180,Cam Neely +105623,Melissa Prophet +78386,Edward Faulkner +1106260,Alan D. Purwin +5478,Peter Rühring +4073,Harry Morgan +1134774,Mary Nell Santacroce +27108,Sonsee Neu +70961,Bernice Stegers +1581387,Cheryl Lee Thorup +1668097,Jim Boyle +71933,Michel de Gavre +154583,John Gowans +11140,Lynn Carlin +553097,Akio Nojima +8492,Rosemary Murphy +1568902,Duke Hobbie +111303,André Garet +218015,Samantha Fox +88671,Richard Dix +43628,Mirella D'Angelo +1658152,Darleen Asevedo +62250,Mike O'Brien +1115494,Juan Marquez +1205356,Michael Bland +102889,S.J. Warmington +570293,František Němec +45039,Miles O'Keeffe +948428,Candy Bonstein +135356,Frank Fenton +34469,Mary Young +88072,Brittany Curran +1192604,Leif Forstenberg +103357,Kenneth MacDonald +70173,Jean-Pierre Darras +98444,Gwili Andre +44401,Hubert Gignoux +1201662,Sigfrid Tor +103672,Gordon Jones +1230532,Marie-France Lambert +120070,Robert Williams +59192,Emmanuelle Chriqui +62883,Vitalie Ursu +52648,Alex Solowitz +13617,Taylor Mead +83956,Zdenek Kozák +1122586,Nana Saito +80427,Rafael Feldman +49965,Tim Dutton +145075,Aline Bertrand +16354,Lola Peploe +69810,Dana Wynter +93015,Drena De Niro +41965,Sylvester Groth +1741988,Brandon Lilly +1752074,Rachael Dolan +1674588,Elisa Dyann +94949,Mireille Balin +975120,Rollo Lloyd +217291,Tim McCarver +1218160,Olga Sosnovska +10814,Wesley Snipes +100115,Christiane Gibeline +146977,Vince Offer +69248,Chips Rafferty +80990,Virginia Capers +1851419,Marta Fergusson +1773112,Ana Mirkovic +1231810,Tony Audenshaw +154432,Allen Jaffe +16165,Jon Lovitz +120441,Rita Page +287671,Roger Mollien +93742,Tony Michaels +175993,John Riggi +951568,Baha Jackson +42607,Aisling O'Sullivan +23629,Brian O'Halloran +12708,Peter Billingsley +12011,William Castle +17069,Sian Thomas +1487893,Leverne McDonnell +14999,George A. Romero +1645157,Frances Mignano +145536,Leon Herbert +11675,Ray Porter +1593815,Hiroaki Amano +129437,Shani Wallis +1388782,Milton Dickerson +26291,Martin Henderson +90528,Laure Mattos +27970,Chris Ambrose +1148559,Karl Meixner +233119,Lupe Garnica +14542,James Broderick +171299,Madeline Lee +119671,Gastón Pauls +154454,Cynthia King +1144394,Shirley Lew +18193,Christopher Mayer +103340,Richard Ney +30206,Ted Oliver +145251,Shin'ichi Himori +574878,Dexter Holland +228813,Margaret Lacey +1070625,Olive Tell +1107519,Anderson Wong +1456543,Michael G. Norris +82684,Claude Earl Jones +1502544,Kelly Clayton +42558,Charlotte Lewis +1078453,Florence Dudley +37008,Michael Bailey Smith +217551,Darren Epton +101258,Elisa Moolecherry +1757135,Giacomo Cavalleri +1270888,Czeslaw Grocholski +11667,Mark Kozelek +228704,Deborah Mailman +931389,Shigeki Ishida +552468,Satch Huizenga +7427,Felicity Huffman +1114203,Lu Feng +58955,Kevin McDonald +56585,Steve-O +1330766,Sandrine Merette-Attiow +220167,Floella Benjamin +1422325,Art Dupuis +36601,Armin Dillenberger +79393,Kelly Johnson +1478933,Trond Peter Stamsø Munch +980381,Minosuke Yamada +1562,Iben Hjejle +13257,Yûko Daike +82805,Ray Burdis +97440,Anita Kelsey +544906,Pauline Wong Siu-Fung +10513,Robert Brown +57953,Laura Monaghan +54564,George Buck Flower +111466,Mona Marshall +21051,Yorgo Constantine +29313,Dean Jagger +57897,Amelia Curtis +77073,Lance Bass +217123,Peter Armstrong +7430,Elizabeth Peña +55055,Nikol Leidman +1136854,Wu-jin Jang +81798,Jean Parker +11890,Chris Pedersen +59172,Kate Blumberg +14892,Rosemarie DeWitt +120390,Rex O'Malley +63934,Vincent Klyn +61259,Dominic Scott Kay +77690,Clare Marshall +5473,Julian Wadham +54237,Leslie Bais +1254059,Jo Yoon-hee +1538074,George Ross +32195,Lal Chand Mehra +106117,Thomas Schellenberg +73733,Megan Edwards +994259,Marco Perella +1527163,Will West +1924,Jeroen Krabbé +1757529,Roy Butler +1416135,Harry Van Hest +39151,Marino Masé +76238,Wayde Preston +78494,Beau Billingslea +57997,Malcolm Goodwin +184834,Ty O'Neal +79456,Kyoko Koizumi +1366369,P.J. Kerr +104805,Etienne Girardot +199849,Duff MacDonald +1446418,Brando Murphy +14800,Jennifer Chambers Lynch +1839024,Sam Riddle +33969,Roy Barcroft +1229194,Chandra Ruegg +32035,Edward R. Pressman +931452,Chihiro Suzuki +54609,Avaz Latif +1901810,Marie Anne Nauer +155031,Jim Jansen +1196493,Craig muMs Grant +198716,Victor Knight +1072733,Gary Sexton +1213786,Brent Spiner +26890,Jacques Marin +1502517,Manny Perry +160868,Joy Bang +1112610,Karen Eleanor Wight +2975,Laurence Fishburne +42411,Juan de Landa +125270,Károly Eperjes +130916,David Carey +73269,Elsa Pataky +1390808,Jayne Tottman +1256561,Paul Burnham +1213137,Paul Goebel +20017,Margit Carstensen +4095,David Lewis +1679263,June Smaney +98772,Lauren London +133738,John Beradino +557829,Apl.de.Ap +1661591,Cherylyn Jones +5924,Richard McMillan +2958,Diana Scarwid +103711,Joe Greene +52415,Michael Cudlitz +183407,Jamie Alexis +1144566,Carme Fortuny +1173474,Geraldine Keams +36653,Anica Dobra +52443,Jason Reitman +6212,Zak Orth +1188444,Yutaka Abe +1168285,Ana Kayne +78792,Steve Cochran +104200,Lorrie Richards +163029,Haynes Brooke +56391,Anton Glanzelius +5732,Henry Jones +35518,Harry Groener +7517,Kate Bosworth +24422,Bernard Fresson +1265410,Brian Sunina +13979,Louis Jean Heydt +15942,Celia Lovsky +1444541,Merete Nørgaard +9914,Austin Willis +937206,Anabela Teixeira +1219899,Jeff Kahn +35319,Sylvia Kristel +70003,Taurean Blacque +12223,Joel McCrary +66844,Kim Mattheson +1205434,Henry Hebert +57738,Samuel Labarthe +1077782,Gary A. Hecker +26700,John Steiner +53116,Eric Lively +33524,Steve Santa Sekiyoshi +59163,Jamil Shaw +1553974,Steve Giammaria +60144,Brent Barrett +134891,Joshua Jenkins +29261,Lloyd Hughes +8832,Mary Alden +201459,Sean Barrett +217510,Christian Maelen +1547,Bela Lugosi +181312,Jayne Haynes +79993,Flaco Navaja +1839,Lorraine McIntosh +67614,Matilde Piana +66613,Leueen Willoughby +140821,Lisa Davis +1015780,Frankie Ingrassia +550129,Stig Järrel +31135,Jermaine Williams +85,Johnny Depp +43815,Cathy Rosier +27691,Susan Nicholas +1569578,Robert Bizik +101497,Patricia Laffan +64897,Barbara Tyson +1853187,Gary Sivertsen +77672,Henry Caine +81133,Amy Acker +51458,Sarah Jean Kubik +37016,Zuzana Geislerová +1757132,Felice Cervi +555181,Long Le Vu +24477,Paul Le Person +40403,Dyan Cannon +1577014,Brian Abercrombie +98034,Ernest Torrence +96638,Johnny Okura +2009,John Wray +956358,Theodore Wilhelm +89834,Barry Kelley +53573,Olek Krupa +100707,Mike Figueroa +58655,Harry Van Gorkum +7209,Matt Murphy +199891,Richard Bond +120258,Jenjira Pongpas +1509779,Jan Falk +104728,Madge Evans +1073274,Jean Lorraine +1667819,Margaret Betts +7471,Zach Grenier +1553306,Chris J. Cullen +164783,Owen McGiveney +41240,Yvonne De Carlo +26102,Christian Sengewald +20749,Charles Kimbrough +10699,Samantha Bond +142995,Patrick Huard +218605,Bonnie Johnson +237256,Jason Pai Piao +8228,Barbara Leigh-Hunt +171743,Lori Tan Chinn +78501,Melissa Joan Hart +33759,Roland Drew +40206,Tony Randall +109896,Gracie Allen +13346,Emile Chautard +113543,Robin Hawdon +1789267,Xiao Cong +97620,Robin Stille +89846,Teuila Blakely +194599,Greg Webb +153301,William Swan +186291,Margo Cunningham +14329,Dean Norris +116772,Janet Brandt +60015,Dylan Hartigan +1661653,Annette Sanders +1420879,Bruce Sidney +500,Tom Cruise +51539,Gordon Currie +90448,Rolando Molina +30553,Henry Brandon +2440,Bill Nighy +20754,Philip Pavel +14421,Frederick Vroom +18936,Martin Butzke +10531,Kitty Bradbury +14883,Myron McCormick +20158,Diahann Carroll +133499,Christopher Biggins +5469,Ralph Fiennes +6783,Spiros Focás +20195,Lorne Brass +56153,Scott Terra +105174,Kenn Scott +1180477,Clémentine Baert +25901,Pedro Miguel Martínez +230466,Messaoud Hattau +147078,Melvin E. Dummar +1316264,Michel Bellier +28781,Christian Clavier +1444524,Ming Lau Hong +100987,Tuulikki Paananen +4971,Bud Cort +72822,Saburo Shinoda +53402,Richard Jeni +591,Brion James +1664446,Luis Vega +1390847,Richard Hamilton +1076218,Michiko Otsuka +1056117,Peter Donald Badalamenti II +102327,Francis McDonald +1265135,Ted Kaden +1894146,Richard Brewer +2755,Albert Dekker +96313,Elizaveta Boyarskaya +1392754,James Callaghan +20245,Eve Matheson +77013,Deirdre O'Connell +1408412,Brian Royal +227099,Marshall Napier +58737,Jack McBrayer +9634,Kent Faulcon +13091,Presley Chweneyagae +60252,Cheri Oteri +175834,Gideon Jacobs +3493,Evan Parke +170991,John MacKay +1192380,Jacob Green +339617,Phoebe Foster +79632,Liz Fraser +1012401,Lionel Newton +24142,Dorothea Moritz +83470,James Alexander +2320,Julian Richings +14290,Richard Tucker +1460958,Georges Gosset +12111,Justin Timberlake +58794,Todd Jensen +1113467,Ako +1116512,Shoji Yoshihara +6952,Charlie Sheen +154883,Bodhi Elfman +79430,Carlos DeLoach +11545,Dita Parlo +1650997,Monica Zamora +31268,Larry Fessenden +142293,Marisa Ryan +14420,Jim Farley +64856,Michael Jai White +98090,Buddy Anderson +78,Fritz Rasp +185001,Ray Armstrong +135827,Larry Steers +7118,Tadeusz Białoszczyński +1773848,Marissa Fedele +25675,Bruce Byron +76192,Mark Pennell +54207,Suzanne Kelly +1644224,Mickey Little +9986,Anne-Marie Martin +1243493,Jonathan Watson +7108,Wojciech Pszoniak +69249,Eddie Byrne +92829,Matt Chow +1202743,Len Lowe +1231780,Sérgio Mendes +1765271,Albert Smith +554858,Lin Ge +1238725,Pinky Lee +955762,Auden Thornton +23959,Debra Messing +19470,Greyson Erik Pendry +27805,Robert A. Burns +879,Billy Bob Thornton +40310,Anne Lambton +80475,Peninah Abatoni +997708,Eiko Nakamura +27880,Henri Garcin +2756,Harold Gordon +120598,Judy Dery +129842,Greta Chi +5090,Adrian Grenier +30496,Francis Ford +974738,Reiko Takashima +66762,Charlie Yeung +52472,Mike Towers +554043,Elizabeth Maclellan +21605,Dirk Bogarde +98096,Elizabeth Gilliam +97398,Ben Hall +66586,Mariah Carey +248225,Raymond Brown +1381096,Judson Vaughn +80623,Savion Glover +102337,Mary Ellen O'Neill +55507,Răzvan Vasilescu +124665,Wesley Singerman +154713,Tom Finnegan +51797,Nathan Fillion +1075028,Paul Mann +92813,Suzi Lorraine +132621,Christopher Norris +72311,Helen Coker +1215054,Jerry Rice +1090887,Edwin Brian +1137641,Anh Duong +116494,Eddy Waller +21523,Ed Lauter +64,Gary Oldman +151079,Stephen Lunsford +652,Paul Freeman +199303,David Stratton +2956,Amanda Peet +149021,Tommy Ivo +62832,Michael Ormsby +69748,Tristine Skyler +552096,Alessandra Benjamin +280714,Grace Smith +4735,John Doman +1802653,Yuri Mgoyan +1331762,Jamiel Hasson +56476,Andrea Gibb +1510928,Hurtaj Kanagat +1215689,Christina Chang +77284,Gérald Laroche +1501998,Chief Sky Eagle +1836336,Steven Maines +105018,Bruce Cowling +12080,Conrad Vernon +37919,Stanislas Merhar +544425,Steve Mitchell +127137,Peter Whitford +1233174,Sam Guttman +78885,Jim R. Coleman +43479,David Conrad +1193047,Anne Sharp +1145693,Erner Huebsch +109865,Sydney Tafler +219496,Edward Woodall +129512,José Iturbi +1287732,Feng Xiaogang +1217941,Sam Ayers +1482627,Nobuo Chiba +1901799,Stefan Schertenleib +1317660,Neal Hart +1212244,Daniel Bess +29199,Vera Orlova +152624,Murray MacLeod +55779,John Schneider +1310611,Ann Marie Hall +1120421,Jyri Ojansivu +10691,April Grace +146334,Carleton Bluford +135037,Leanne Mullen +96471,Robert Frazer +1081814,Carol Gwynn Thompson +1836333,Katie McGloin +15668,Andrew Prine +66804,Gregory Hines +1081921,Fred Cox +118071,Charles Levin +1198584,Anna De Linsky +87301,Mahabanoo Mody-Kotwal +116638,Jonathan Malen +1535172,Jorg Biesler +1505259,Anne Zamire +33705,Edwin Stanley +1662225,Gillian Gordon +152718,Mark Wheeler +1580,Daveigh Chase +28158,Martin Hancock +1221056,Dorothy Atkinson +106118,Robert K. Feldmann +156869,Bob Minor +19861,Elizabeth Sung +1423674,Loye Payen +55398,Ashley Jensen +228628,Phisate Sangsuwan +1353801,Tova Smith +6007,Maggie Roswell +49756,Evelyne Didi +24732,Bruce Lidington +1167543,Susumu Ishikawa +1429399,Dan Dowling +6836,Dan O'Herlihy +1954,Billy Zane +18046,Mustapha Rachidi +347630,Florence Helminger +71266,Lynne Thigpen +555204,Hioko Nishina +65771,Dean McDermott +6165,Anthony Rapp +196288,Andonia Katsaros +5511,Nadja Uhl +1211,Larry Miller +115879,Dirk Kummer +48222,Emmy Wyda +2415,Yolande Moreau +1624226,Baby Quintanilla +1089958,Johanna Strömberg +137269,Salem Ludwig +107468,Nique Needles +85354,Nick Tate +10403,Shelley Berman +1757144,Vittorio Capelli +222922,Wim Opbrouck +42133,Nina Siemaszko +115772,Charles Tannen +27446,Patty Duke +60930,Jack Polick +16857,Tom Everett Scott +62976,Eleanor Matsuura +20174,Oscar Hsu +1232032,Freddie Davies +1445745,Charles Edwin Powell +55002,Björn Granath +1456484,Gianpaolo Bonaca +26864,Jon Gadsby +37947,Lawrence Gilliard Jr. +92999,Valentina de Angelis +9706,Toshiyuki Morikawa +62566,Brad Surosky +677707,Buba Bayour +6818,Werner Herzog +541888,George Houston +1040679,Donny Boaz +1143119,Lindsay Owen Pierre +97337,Irene Worth +115446,Loretta King +12485,Jack Creley +9190,Koyuki +101432,John Dullaghan +54429,Maia Campbell +156240,Andrew Craig +31820,Gérard Boucaron +30196,Stanley Blystone +1847202,Vincent Glo +11074,Kathy Najimy +1337,Tony Leung Chiu-Wai +51072,Kate Mara +19256,Vicki Frederick +1897196,Ralph Thorson +17688,Raoul Max Trujillo +27942,George Curzon +1541696,Lisa Stahl +44795,Louie Anderson +1281525,Louis Charles Mounicou III +931643,Paul DeAngelo +79058,Sven Melander +111664,Ronald Squire +37920,Julie Depardieu +4328,Buzzy Kerbox +1505009,Marty Wright +1472667,K.L. Smith +234935,Marc Legault +1491611,Lisa Calder +15897,Larry the Cable Guy +18840,Alexander Allerson +62441,Tony D'Amario +20092,Marina Malota +180524,Elena Hurst +1003623,Slim Talbot +576173,Harley Quinn Smith +282349,Anna Gourari +1601648,Cecil Combs +1781162,Christine Ashley DeJesus +124086,David Doty +83452,Rudy Vallee +161903,Cathy Ladman +153295,Jack Lomas +269139,Renée Fleming +142489,Masakazu Kuwayama +6852,Jack Fitzstephens +183919,Pamela Sinha +6019,Nathalie Richard +554576,Fukumi Kuroda +148743,Edna Morris +1816293,Manuel Rodal +1365930,Alain Guernier +15567,Hinton Battle +194802,Tony Pantages +33741,Rita Hayworth +61440,Lance Bangs +1416065,Samuel Kwok Fung +1665707,Elizabeth Primm +32799,Angela Bettis +101658,Tom Nolan +95137,Jonathan Keltz +1503022,Mona Leah +10743,Ricky Jay +7137,Juliet Landau +76285,Sam Louwyck +5893,Rodrigo Sánchez Borhorquez +111090,Javier Botet +54818,Pascale Bussières +5275,Vasco Sequeira +50589,Frank Ridley +1461983,Bob Terhune +1832363,Glen Adams +1114921,Frederick Young +52474,Jason London +1444492,Latka Bakic +30141,Maxine Audley +130941,David Burns +263,Emilio Echevarría +54210,Brian Edward Roach +40062,Stephanie McVay +59085,Ian Porter +170953,Paul Hecht +90467,Andrew Shaver +18860,Herschel Bernardi +543298,Mark Ellis +590852,Elias Gergi +2380,David Carson +1028072,Mary Ann Hermansen +129051,Harry Fowler +1073863,Perry Crawford +1472348,Mike Murehead +1178772,Jill Clark +46917,Tamara Davies +149209,Mia Cottet +101396,Brenda Strong +1951,Elisabeth Shue +1392756,Loren Ferriso +14814,Walter Chiari +82685,Mel Stewart +1778211,Cynthia Santana +1815748,Harry Taylor +551845,Mariko Ohara +1623850,Nikolai Arsky +1571369,Kim Larney +1406696,Megan Thorp +55269,Eloise DeJoria +144530,Jean Passanante +162828,Cooper Thornton +120542,Joan Marsh +1064082,Lilian Braithwaite +1755001,Roger Richman +14011,Tom Courtenay +245858,Anya Ormsby +66546,Chris Carberg +162607,Lauren Katz +160888,Bill Edwards +1872755,Michael Sicoly +21711,Erika Christensen +4072,Lon Chaney Jr. +68934,Carlos Montalbán +1106079,Taro Marui +1039054,Eric Lee +1484405,Geraldine Griffiths +69555,John Fraser +52117,Horatio Sanz +955406,Mark Stefanich +1185637,Akio Kusama +74636,Trish Van Devere +58800,Sonja Bennett +81059,John Rutter +76913,Ge You +8169,Tyrese Gibson +19491,Stoney Westmoreland +15033,Justin Long +230,Stephen McHattie +1467395,Willis Clare +1186201,George Hilsdon +1061847,Alfonso Lussón +18850,Mihalis Giannatos +56895,Amy Jo Johnson +38667,Steve Jones +162342,Missy Doty +37152,Gordon MacDonald +45982,Alberto Sordi +82345,Genie Francis +3967,Kate Beckinsale +90547,Fraser Ayres +1137,Juliette Binoche +1357039,Lam Kai-Wing +26482,Merry Clayton +62937,Sai-Kit Yung +707346,Mary Griffin +120105,Richard X. Slattery +11144,Darlene Conley +1296897,Clinton Loomis +1888770,John Manca +20311,Yūrei Yanagi +134668,Raf De La Torre +12670,Takuya Kimura +32925,Cyril McLaglen +6085,Tom Jahn +19413,Audrey Totter +1659311,Cicily Daniels +1170219,Joe Brown +78150,Joshua Cox +1622,Chang Chen +2471,Jeanne Marine +1348445,Lasse Wenkers +1291606,Mark Hird +1064444,Mary Brodel +126014,Eddie Foster +10438,Jarrett Lennon +70004,Greg Evigan +1296374,Alonzo Ward +14786,John Mitchum +122122,Dean Hill +174248,Ronn Carroll +590851,Antoinette Turk +1649570,Somchat Ubon +190365,Daniel Chacón +225965,Ilse Holtmann +4203,Garry Goodrow +87545,Marjorie Reynolds +79912,Frank Buxton +185111,Jefferson Mappin +1031916,Carmelita González +12689,Ralph Richardson +14799,T. Max Graham +1757140,Laura Lecatelli +79886,David Farr +1661118,Kurt Schweickhardt +21192,Laura Drasbæk +143328,K. Todd Freeman +26148,Dodie Heath +180934,Michael Caruana +13922,Seth Green +1534692,JoJo Whilden +123903,A. Bromley Davenport +52131,Marcos Woinsky +2315,Hans Martin Stier +18897,Jackie Chan +140996,Brahim Hadjadj +94691,Kathryn Rose +1243112,Victor Lucas +4992,Lombardo Boyar +7401,Lin Shaye +180892,Julien Lambroschini +119776,Lance LeGault +124286,Lauri Nurkse +553332,Hiroki Ida +1040564,Franklin Parker +65362,Holliston Coleman +1674954,Eddy Salim +1448528,Trixie Firschke +95603,Lincoln Maazel +33235,Logan Lerman +94308,Sheetal Sheth +10448,Anne Byrne Hoffman +77981,Eivind Sander +27631,Nathaniel Parker +60898,Sebastian Stan +30513,Paul McVey +30004,Ned Sparks +36663,Claudie Blakley +1190344,Chosuke Ikariya +167160,Lucy Lin +1575499,Guy Vaillancourt +1186832,Boyd Irwin +1505996,Maurice Marceau +16620,Hulk Hogan +72546,Avi Kleinberger +135353,Conrad Goode +62567,Karina Logue +10449,Karen Ludwig +19363,Dominique Reymond +35756,Rajpal Yadav +1872782,Sherri Villanueva +41129,Dina Morrone +1571910,Mike Montgomery +15009,Justin Theroux +21360,Matthew Harrison +5465,Otis Harlan +89670,Stan Laurel +60118,John Bedford Lloyd +25791,Maria Grazia Spina +1583678,Gerard G. Williams +78111,Eli Danker +4610,John Landis +156741,Ralph Monaco +752320,Lea Seidl +54623,Georges Siatidis +34378,Miki Odagiri +99185,Amy Sloan +169665,Lisa Sheridan +122154,Robert Ito +15057,John Amplas +145589,Alice Reys +551669,Vicky Wei +31989,Amedeo Nazzari +101890,Maurice Black +20002,Flip Webster +1662018,Paul Cristo +144012,Frances Raymond +1676886,Yudie Bank +147592,Bill Calvert +34755,Earle Foxe +15762,Tara Strong +231844,Frances You +58724,Rya Kihlstedt +49734,Fann Wong +21217,Jonathan Lynn +1497889,Kathryn Byron +89687,Tom Brown +1077235,Carol Florence +4800,Gena Rowlands +1797582,Dalpat Singh +176695,Sharon Wilkins +10461,Caroline Munro +146714,Hugh Millais +23607,Nick Hobbs +1692545,Tarja Karvonen +104505,John Vargas +107702,Ramadan Huseini +83807,John Hudson +1644894,Alfred Nittoli +95013,Edward Ashley +235858,Oleg Shtefanko +17589,Nadine Nortier +33698,C. Montague Shaw +40964,Brian Oulton +152820,Chris William Martin +93725,Carlo Mazzacurati +91389,Mars Callahan +28633,Richard Jenkins +22138,Alexis Cruz +20623,Wendy Makkena +35109,Miriam Flynn +1154284,Roy Gaintner +27737,Bill Moseley +1664232,Michel Doré +80433,Marley McClean +99324,Aldo Nadi +157269,Sally Marr +1213795,Tom Rosqui +33807,George Eastman +48513,Gerit Kling +1499720,Hugh Panaro +553983,Trishalee Hardy +1395666,Edward Biby +36093,Peggy Roeder +170935,Paul Austin +41781,James Addams +110607,Isabella Gutierrez +51996,Brian Klugman +172568,Nancy Paul +1089169,Carole Ruggier +19415,Jayne Meadows +164636,Kim Morgan Greene +34917,Lynne Griffin +945734,Michael C. Maronna +42376,Zahn McClarnon +534,Mark Boone Junior +55148,Sean Maher +128328,Sidney De Gray +136105,Victoria Racimo +1602,Fele Martínez +175594,Kim Harris +186061,Simon Rouse +79427,Damian Jewan Lee +93805,Greer Garson +196258,Al Wyatt Sr. +4120,Leonid Kinskey +49346,Debora Weston +1659299,Latonya Tolbert +37629,Julie Durand +61171,Eric Epstein +980330,Jack Mower +84605,Jeff Moldovan +1235962,Norman Smith +145151,Bradley Pierce +1266705,Denis Smith +66475,Andrzej Gawronski +942976,John Hussey +44824,Chad Bannon +1212225,Jodi Carlisle +176227,Richard Dillane +1384703,Lori Lynn Dickerson +1896893,Daniel Kington +978032,Robert Winkler +202949,Devin Brochu +198707,Ivan Smith +1879474,Elaine Moe +10091,Zelda Rubinstein +80860,Jonathan Bailey +77115,Edward Ellis +87388,Mohammad Amir Naji +234741,Thomas W. Gabrielsson +101855,Marie Burke +1500999,David Boston +236132,Clément Chebli +1220476,Steve Benham +574029,Ian Danby +1225374,Annette Ekblom +26724,Eric Tsang +592529,Elsa Vazzoler +4078,Lee Van Cleef +1000660,Curley Dresden +27976,Harvey Pekar +60506,Alphonso McAuley +1661618,John Selya +57255,Keith Cooke +89141,Jerry Hardin +45586,Magda Szubanski +4068,Gary Cooper +96804,Kôji Mitsui +85142,Paul Ben-Victor +186500,Arlene Mazerolle +34334,Rafael Storm +10924,Henry Daniell +13753,Sharmila Tagore +36280,Manuela Vargas +87575,Arnold Pinnock +119657,Lam Chi-Ming +1068412,Bill Ayers +9297,F. William Parker +1102674,Zhao Yi +3754,Mel Ferrer +11160,Danny Trejo +51467,Camilla Walker +1041787,Adelle Lutz +98084,David Baerwald +19752,Guy Boyd +87562,Demian Slade +106714,Kimberly Flynn +12828,Alan Tilvern +1224308,Samantha Harris +8954,Virgil Frye +17181,Ty Simpkins +50807,Michael Richards +33662,Coati Mundi +11495,Ann Rutherford +37336,Kimberly Blair +1217404,Noel Toy +133190,Charles Blavette +100818,Isabel Luque +8362,Brian Jagersky +1061525,Baran Kosari +171388,Tandy Cronyn +1393354,Richard Litt +1598393,Bekka Eaton +8293,Marion Cotillard +154224,Esther Scott +67690,Lola Forner +30551,Jeffrey Hunter +56824,Jaime Pressly +99237,Gail Harris +75344,Barry Livingston +31759,Meral Orhonsay +61098,Shyann McClure +137750,Hal Ozsan +95668,Harry Antrim +26761,Larry Dolgin +73982,Wolfe Morris +1363812,Archduke Leopold of Austria +1446416,Constance Hsu +53969,Luce Rains +1487,Bob Dylan +928233,Billy Quirk +111962,Akira Natsuki +79364,Imogen Annesley +2208,Kathryn Morris +1286660,Mauricio Llera +84732,Ayanat Ksenbai +1771,Giovanni Ribisi +144061,Oscar Shaw +1425452,Amra Kapidžić +75254,Brett Stewart +26103,Louise-Anne Hippeau +17022,Antonia Campbell-Hughes +1441177,Ron Tippe +8600,Matheus Nachtergaele +11521,Kristin Minter +25186,John Limnidis +1896875,Danny Riordan +36077,Rakkyo Ide +73968,Henry Cavill +224077,Terry Haig +1606900,Thoraya Sehill +57951,Everlyn Sampi +83882,Petr Čepek +124141,Miroslav Donutil +66744,Chaney Kley +1375837,Angelo Galassi +977543,Carl J. Matusovich +17837,Patrick Gallagher +562199,Don Shelton +156000,Neil Maffin +70011,Maren Jensen +156404,Maurice Sherbanee +1161730,Ann-Gisel Glass +115244,Walter Phelan +1359873,Temuri Qamkhadze +72295,Rachel Noël +1887358,Peter Bartlett +1085860,Min Kim +1464600,Sam Garrett +1196133,Derek McGrath +12642,John Neville +139221,Paul Marion +15903,George Carlin +75889,Michael Caton +33399,Bronagh Gallagher +585959,Paul Durden +738439,Philip Notununu +1896894,Owen McQuade +91422,Michael Luciano +1029289,Yang Tang +1081132,Tong Wang +1468186,Guy Repp +102858,Jane Merrow +75261,Skye Wansey +1664180,Stéphane Brel +104046,Bingo O'Malley +87826,Janet Shaw +1502512,Alex Desir +86151,Vladimir Mashkov +24496,Simón Andreu +1265398,Grady Mathews +98944,Hope Marie Carlton +10529,Monte Collins +939670,Barry Downing +145271,Mike Morgan +140059,Paul Getty Jr. +4040,Robert Wuhl +99755,Marlo Dwyer +122469,Takuya Ishida +1231850,Shelby Lynne +1089421,Michael Halton +1269910,Ching Hoh-Wai +53176,John Gatins +114481,Serge Livrozet +131021,Ichirô Shimizu +149335,Tricia Small +110887,Jane Wheeler +1491043,Gary Shail +31839,Ruben Santiago-Hudson +148403,Ralph Yearsley +1240549,Natalia Sánchez +11885,John C. McGinley +84927,Benjamin Whitrow +1465294,Isabel Trimborn +233533,Gilles Gavois +1565331,Per Jørgensen +223291,Alex Revan +16580,George Cheung +52820,Lucia White +1560860,William Engram +1393349,Satori Shakoor +27742,Dennis Fimple +1177733,Jacqueline Giroux +65704,Andrew Lowery +1728654,Kerstin Richter +1116511,Aoi Minato +33681,Dylan Gray +3433,Phil Leeds +117189,Hannah Sim +6577,James Whitmore +38078,José Bénazéraf +51671,Susie Porter +239506,Hiroshi Nawa +551840,Gai Takizawa +1344747,Carl Pitti +87415,Susan Fleetwood +1802471,Joël LeMay +105007,Philip Merivale +75789,Simon Fenton +61151,Jan Tříska +81671,Mark Strange +163537,Steven Eckholdt +1524278,Ladislav Krečmer +2881,Glenn Withrow +97628,Yoshiro Kitahara +109612,Lou Tellegen +1894159,Fred O'Dell +183404,Carole Androsky +10545,Mickey Kuhn +1525313,Ted DiFilippo +53367,Ruth Sheen +18156,Don Ameche +80348,Lorena Gale +1157690,Nicola Roberts +1081855,Heetu +1403284,Ian Beattie +12452,Shirley Douglas +114946,Charles Kerr +1446426,Michael Stellman +44809,John Paragon +130513,Geneva Carr +1045630,Steve Ross +80861,Jessica Claridge +1444487,Thomas Scheer +1007589,Toby Radloff +89663,Louise Lorimer +29327,Rossano Brazzi +448309,Liz Cackowski +978608,Laura Clifton +55470,Dominic Cooper +1735983,Stevie Lee +1179587,Bill Patton +263229,Roger Fan +18979,Christina Applegate +3665,Shelley Hack +108717,Jim True-Frost +87899,Lorenzo Balducci +3075,Rory McCann +6856,Kurt Russell +1462242,Ming Lei +76822,Dennis L.A. White +5479,Geordie Johnson +1393348,Rob Evans +223458,Kate Byers +1560261,Raphaël Grenier-Benoît +1513489,Jacques Serguine +1274470,Peter Gruber +939842,Wilson Benge +545513,Yoneo Iguchi +7003,Ginette Reno +1312451,Jen Sung +18899,Yuen Woo-ping +4794,Maria Simon +5117,Birol Ünel +544142,Guy El Tsosie +1135338,Nirut Saosudchart +146253,Flavor Flav +1267239,Justin Gregg +10860,Jessica Biel +936659,Martin Prikryl +75671,Maya Stange +130423,Charles Meredith +1487532,Arthur Laupus +1273502,Ezra Perlman +157506,Lisle Wilson +1201020,Hiroko Maki +8786,Ayelet Zurer +80479,Dan Barlow +1072771,Carlos De Valdez +70615,Rodger Bumpass +454973,Laura Innes +65524,Ioan Gruffudd +108102,Carmel Myers +46428,James Stacey +94103,Evan Ross +40529,Alexander Knox +45380,Turhan Bey +31325,Jorge Casanova +75267,Pascal Delair +151370,Walter Scott +239391,Seizô Fukumoto +52657,Enzo Cannavale +60162,Shana Hiatt +2925,Ernest Thesiger +98964,Marjorie Wood +8545,Bernard Fox +2206,Samantha Morton +1653,Jean-Pierre Léaud +59571,Elisabeth Oas +1681201,Ivor Shier +18946,Tanja Schleiff +102005,Carlotta Monti +12950,George Kennedy +1535183,Chikako Hara +98132,Jim Wynorski +86343,Salome Jens +27684,Harris Mackenzie +42568,John Grillo +1504712,Anne Ewen +555207,Takashi Hosome +1583089,Bruiser +53579,Jefferson Guzman +85902,Nicholas Joy +22228,Helgi Skúlason +101660,Ken Gibbel +29127,John Loder +30275,Frances Langford +108474,Mikko Kouki +142706,Mikio Terashima +9806,Roger Bowen +4976,Eric Christmas +2472,Sean Lawlor +954000,Kim-Maree Penn +1209051,Robert Stone +1583282,Sabin Rich +93390,Fikret Kuskan +95579,Akemi Negishi +74056,Brendan Coyle +10562,Mordecai Lawner +4885,Emmanuelle Béart +64101,John Charles +27124,Gerard Plunkett +95189,Kim Wayans +560299,Greg Wayne Elam +1182724,Larry Mitchell +6968,Hugh Jackman +154342,Richard Lee Jackson +48058,Vladimir Gajdarov +70992,Josh Albee +12773,Graziella Galvani +4451,Mark Webber +3074,Alan Cooke +123728,Allan Wasserman +1183443,Marcus Powell +590244,Goran Šušljik +103068,Harry Hayden +938390,William Morgan Sheppard +1244171,Odessa Munroe +1198284,Matthew Moore +8692,Eddie Jones +37018,Petr Vančura +55192,Verna Bloom +14794,Charlotte Stewart +1303569,Accursio Di Leo +10607,Celeste Holm +55267,Terry Kiser +2138,Shawnee Smith +189680,Richard Gunn +4331,Mickey Munoz +19995,Marianne Faithfull +552642,Yoshiko Ieda +120520,Kenne Duncan +142681,Josefin Neldén +26727,Dean Shek +57995,Matt Bushell +31715,Azura Skye +15788,Nigel Hawthorne +1435626,Carla Foscari +59350,Chaim Girafi +929465,Tracy Crabtree +146491,Valérie Keruzore +51792,Rory Cochrane +210420,James B. Douglas +10023,Cathy O'Donnell +38571,John Beasley +66542,Brian Patrick Clarke +59861,Billy Asher +1463961,J.W. Cortes +13549,Deborah Kara Unger +84685,Brent Jennings +195399,Madhur Jaffrey +548174,Karina +1127183,Malcolm Smith +41216,June Allyson +207667,Andrew Walker +63143,James Ngcobo +27811,Peter Weller +13524,Christopher Guest +52414,Cameron Bright +121371,Richard Boscon +1367613,Anders Van Haden +14991,Jay Leno +26109,Laurence Ragon +54626,Alain Eloy +14426,Tom Nawn +1535181,Sabine Svoboda +3908,Tony Denman +1594894,Wong Kin-Mi +22603,Arthur Shields +1850010,Heather McCluskey +3543,Jamie Foreman +30239,Abner Biberman +80530,Michelle Bowes +228914,Chang Shih +87097,Neil Dudgeon +60195,David Aaron Baker +1664788,Georges Billy +1098345,Arun Wannarbodeewong +110082,Sabrina Lloyd +81959,Alicia Sixtos +17258,Kerry Fox +38576,Al Corley +2822,Ewa Ziętek +1016595,Agostino Borgato +3625,Ana Fernández +55546,Liza Weil +120554,Lou Lubin +92255,Jane Sibbett +184752,Lawrence Trimble +62522,Christopher Jacot +10594,Ringo Starr +1050306,Ted Pearson +555074,Norma Pratt +64212,Dan Duryea +8695,Guillermo Díaz +28745,Deborra-Lee Furness +1444537,Thomas Gabrielson +79507,Daniel Rovai +42835,Darrell Johnston +88550,Joel Garland +128095,Patrick Elias +82863,John Dehner +28040,Dan Moran +213469,Kyû Sazanka +985423,Gerard Whelan +1116654,Robert Small +12515,José Ferrer +53454,Damon Gupton +17449,Bob Stephenson +108939,Jeremy Foley +1535189,Tetsuya Tabata +95729,William B. Davidson +74839,Ray Ramirez +35264,Thomas Heinze +39390,Michael Kenneth Williams +117587,Patrick Tatten +132934,Thomas McTaggart +551842,Yûnosuke Ômi +1481109,Hirayoshi Aono +16759,Martha Hyer +8792,Lynn Cohen +1616643,Hans Christian Ægidius +101707,Jane Higginson +20798,Tanya Lopert +77156,Kevin Clash +155442,Mary Pat Dowhy +51577,Sheree J. Wilson +69369,Émile Vallée +1312737,Robert North +1188793,Stanley Wall +35091,Scott Grimes +55053,Gera Sandler +11498,Hattie McDaniel +183218,Ralph Nossek +35040,Paul Williams +45422,Tipper Newton +1139753,Ed Zang +21064,Jason Gould +587,Edward James Olmos +222628,John Edmondson +12539,Lily Knight +127363,Penny Brahms +79793,Margo Harshman +4293,Yvette Petit +583271,Madelyn Coleman +81958,Caitlin Crosby +12151,Montgomery Clift +74294,Daniel Johnston +97753,Linda Shayne +938831,Jenny Lumet +58962,Drew Sidora +126223,Dolores Drake +1201021,Yoshiko Maki +2494,Felix Bressart +218589,Joel Robinson +1634771,Matthew Schlein +58611,Kiyohiko Shibukawa +24045,Joseph Gordon-Levitt +1466153,Jackie Taylor +62312,Gary Kasper +71938,Jan Bucquoy +1636975,Daniel N. Butler +76501,George Stover +134344,Chieko Naniwa +96165,Tom Reese +1550461,George Hyde +64998,Pauly Shore +49944,Anne Ramsey +99754,William Phipps +47478,Gwen Watford +55743,Donald Williams +32696,Krzysztof Kowalewski +60018,Tom Riis Farrell +12983,Joe Sheridan +1567580,Ed Paul +79519,Gundula Hofer +1062837,Symona Boniface +10051,Tobe Hooper +61347,Barry Langrishe +10416,Mike Kaplan +1872737,Jake Carpenter +94031,Kem Dibbs +127646,Madlyn Rhue +47480,Valentine Dyall +192,Morgan Freeman +1752762,Chantelle Leonardo +1469823,Régis Iacono +75773,Agatha Hurle +64385,Cub Chin Kong-Hon +1472516,Charles Watt +11317,Natascha McElhone +1674951,Dalila Alini +65198,Kane Kosugi +78084,Jeff Morris +62477,Antonio Monroy +118055,Rolf Søder +1044042,Charles Arthur Berg +88953,Harold Lloyd +1466,Charles Durning +15693,John Crawford +107728,Anna Healy +25313,Elena Sahagun +188433,Mal Whyte +1029782,Fumio Okura +15499,Gerard Kearney +27762,Ian McDiarmid +1004150,Wesley Barry +37255,Chris Krisea +31366,Jimmie Walker +30766,Dennis Price +86138,Thalmus Rasulala +6405,Chiara Caselli +67003,Sven Wollter +55253,Michelle Krusiec +161795,Ahna Capri +95631,Eily Malyon +67615,Kay Walsh +64524,Martin Maria Blau +1781217,Tiffany Ashley Florian +1775925,Kato Bonner +1220923,Dimitra Arliss +22099,Jean Del Val +102949,Louise Dhour +57127,Blake Heron +52904,Jean Claude Leuyer +21736,Jason Miller +102269,Song Seon-mi +16757,Sophia Loren +52823,Clover Lewis +26107,Alba Gaïa Kraghede Bellugi +57209,Bongkoj Khongmalai +1672961,Ananda Thorson +20284,Gary Stretch +4495,Steve Carell +1420615,Monya Andre +8873,Annie Potts +1204,Julia Roberts +554244,Kengakusha Akiyama +785,James Russo +22612,Lisa Kreuzer +230464,Harri James +931730,Ernest M. Garcia +14891,Patrick Louis +89750,Gabriel Dell +83095,Steve Marshall +193340,David Cann +1265589,Gohr Van Vleck +18977,Ed O'Neill +77346,Laura Breckenridge +1724945,Holly Alexis Hyman +120816,Paul Stanton +54770,Eetu Hilkamo +1068089,Norman McKinnel +20698,Laura Vasiliu +6588,Isabella Rossellini +1112118,Chuck Niles +106121,Noah Keen +13949,Astrid Heeren +1177002,Richard Fréchette +5788,James Cagney +37286,Tony Martin +173172,Ben Masters +6954,Bill M. Ryusaki +1785144,Daniel Lestuzzi +128111,Alla Faerovich +1062,Christopher Lloyd +105369,Laurence Payne +1431719,Carl Ekberg +18300,Eddie J. Fernandez +155492,Ashley Crow +1238944,Nathan Watt +61880,Lucie Arnaz +11917,Margaretha Krook +1632866,Martin Harris +1748864,James 'Sporty' Ahern +1112440,Hong Soo-a +153638,Dick Curtis +520,Sarah Jessica Parker +20043,Keren Mor +2178,Forest Whitaker +89010,LeRoy Mason +80569,Oscar O'Shea +66894,Heinz Schenk +17661,Douglas Dick +25242,Jerome Fung +1517174,Ben Scholfield +167625,Paul Cronin +1658382,Hal Fort Atkinson +10658,Job Seda +1420384,Traci Mann +1800180,Carlo Giuliano +60980,Gerry Shano +1117323,Shea Fowler +1036843,James Balsamo +132879,John Dankworth +41742,Ravil Isyanov +79864,Trevor Thomas +113505,Kodi Smit-McPhee +61160,Marina Stephenson Kerr +105759,Guy Wilkerson +1216356,Sam Harris +103577,Lisa Glaser +216971,Peter Martin +30437,Iain Robertson +78925,Samantha Tremayne +70783,Ken Carpenter +1856474,Michael Bishop +1208035,Bert Stevens +556855,Giulia Boschi +1347365,Craig Black +129663,Hank Garrett +185731,Lawrence Taylor +35452,Corey Yuen Kwai +1119591,Marcel De La Brosse +84164,Billy Jayne +1317036,George Anderson +71930,Gustave de Kervern +1361367,Tommy Smeltzer +1395652,Winifred Westover +34918,Mark Rendall +20188,Lynda Boyd +66554,Kadeem Hardison +38999,Stephen Murray +191611,Mary Kay Cook +72300,Marlyse Bonvin +535977,Robert Arden +1208142,Jerzy Schejbal +98160,Fay Baker +1886582,Pat Billingsley +192846,Anthony Calf +17478,Trevor Martin +20510,Richard Johnson +43264,Meredith Henderson +111702,Christopher Rydell +7384,Donald Calthrop +74930,Hayes MacArthur +13251,Tatsuya Mihashi +69951,Milton Berle +1896886,Alan Ready +13024,Amanda Foreman +574,Tex Rubinowitz +11155,Thomas Jane +27992,Brian Yuzna +99252,Frances Drake +81494,Judy Cook +16017,Skip Homeier +1215189,Tracie Bennett +77080,Will Oldham +33308,James Ashcroft +198178,Lisa Antille +126735,René Liu +552125,Olga Landina +102032,Donald Hodson +14451,Barton MacLane +3317,Takeshi Kitano +89847,Madeleine Sami +185044,Paul Tamarin +1271204,Tiny Jones +1098669,Christopher Bregman +176228,Mark Spalding +81556,Louis Beachner +92276,Kohl Sudduth +5802,Karl Ludwig Lindt +1398940,Armando Celso +91486,Tommy Dysart +83566,Audrey Christie +550851,Bern Cohen +10748,Terence Rigby +1077742,Gordon Elder +1507171,Charles W. Camac +147980,Jeanine Basinger +135798,Shannen Fields +1183822,Mtume Gant +1574696,Fred Scheiwiller +29282,Fernando Lamas +986334,Gregg Gibbs +179632,Philip Rosenthal +1220107,Annabel Mullion +13243,Glenn Shadix +1680,Mami Koyama +94036,Nancy Kelly +1179086,Carmela Rappazzo +1075214,Archibald Batty +93719,Warren Derosa +65730,Rick Ravanello +236906,Madeleine Renaud +1565325,Viktor Markussen +81954,Albert Reed +13657,Jsu Garcia +23076,Robert Hardy +12372,Mike Mukatis +91726,Toni Hudson +1221810,Laura Sadler +95087,Michelle Bellerose +132487,Jolanda Modio +299397,Shakara Ledard +1233017,Gillian Ferrabee +156739,Bernard White +12675,Bird McIntyre +223978,Medi Broekman +14789,Ruth Kobart +1270058,Kaoru Kusuda +14276,Gian Maria Volonté +1356546,David Lonsdale +124875,Emory Parnell +40044,Jessica Swift +597293,Ray Paisley +38803,Roman Coppola +81053,Emmanuel Lanzi +58513,Patrick Cranshaw +1817631,Bill Davis +1467341,Eric Kwok +553479,James Millington +1723427,Chantal Balussou +77312,Max Adrian +216224,Flint Eagle +1406152,Ákos Sinkó +9147,Salman Rushdie +5502,Bill Nunn +104940,Eva Rueber-Staier +5605,Richard Farnsworth +4004,Jeffrey Jones +45265,Piet Fuchs +103890,Tony Corteggiani +1030251,Nat Carr +79503,Jason Pennycooke +23633,Walt Flanagan +2092,Paul Lukas +127020,Eliot Makeham +62,Bruce Willis +4813,Béatrice Dalle +51518,Allan Miller +1613400,Penelope Lee +13978,Peggy Knudsen +24599,Duilio Del Prete +49,Maria Bello +857,Arthur O'Connell +1281532,Esteban Fernandez +1261778,Olga Kondorova +1769718,Jung Jin-Gak +1651546,Charles Ward +129662,Marcia Mitzman Gaven +51733,Ana Reeder +100306,Ted Healy +168627,Martin Doyle +1466856,Colin Parry +20899,Peter Riegert +175511,Matt Levin +1216568,Andrew Kavadas +8227,Anna Massey +929947,Jeremy Collins +14585,Hitu +1421810,Charles Dunbar +4252,Tony Shalhoub +1901750,Tamara Scarpellini +24239,Lara Belmont +98001,J.C. Nugent +170941,Paul Geier +27109,Felicity Waterman +51466,Lihle Mvelase +38332,Dwight Armstrong +160627,Jay Rasumny +1276887,Nick Kenkel +75212,Clement Fowler +11276,Tim Pigott-Smith +586693,Julie Herrod +1366128,Tou Chung-Hua +1192390,Jordan Lage +1293493,Caroline Bouchard +68314,Andrée Lachapelle +225292,Paul Rehkopf +28238,David Hasselhoff +27098,Gary Goetzman +1286,Julia Winter +1683451,Albert Godderis +963233,Tracey Miller-Zarneke +108669,Linna Carter +22124,Jill Ritchie +52854,Sophie Monk +61162,Frank Adamson +1040937,Eduardo Alcaraz +1748940,Gladys Sheehan +4961,Gabriele Ferzetti +54586,Molly Cheek +543805,Chunchuna Villafañe +176012,Robin Quivers +46938,Pierre Caden +94105,Charlotte Henry +1754681,Carlos Miranda +1073985,Andreas Pietschmann +83954,Kristina Adamcová +16199,Barry Coe +148040,Vilma Melasniemi +6036,Marcia Wallace +122250,Kris Eivers +553422,Kenji Morinaga +59945,Mason Adams +1890328,Ghorban Ali Naderi +1230823,Cedric Ceballos +81076,Elicia Cronin +53970,Olive Bureker +21878,Doris Lloyd +1537397,Zdenek Hradilák +1650962,Marie Meyer +38334,Jennifer Coolidge +100503,Raymond Martino +1748650,Jenny Seastone +381,Katherine Helmond +61414,Mark Kennedy +102392,Tyrone Power Jr. +929464,Linda Finney +63492,Corbin Allred +1003566,Carrie Lynn +1741409,Mark Robert Ellis +1720976,Mary Martin +64162,Geoff Revell +93327,Gemma Craven +86812,Ted Manson +79528,Macia Zapata +1241523,Sally George +99326,Clark Williams +1491922,Seth Romatelli +1235937,Ron Gilbert +15507,Kieran Aherne +26600,Rudolf Schündler +9295,Gene Ross +131273,Melissa Sue Anderson +39016,James McMurtry +11085,Anthony Edwards +1122588,Ryôta Satô +496263,Gregory Pekar +9871,Ursula Andress +14359,Art Smith +4962,Paolo Stoppa +1079611,Tommy Luske +552097,William Minkin +1816297,Daniel Delevin +52260,Shawn Maurer +544206,Vladimír Pucholt +51383,Tyler Labine +3093,Abe Vigoda +162052,John Achorn +106911,James Black +56728,Tim Herlihy +125499,Adrián Fondari +113639,Roddy McMillan +8289,Billy Crudup +652000,Clelia Rondinella +45104,Robert Aiken +234030,Vincent Bilodeau +70820,John Payne +8534,Kathy Bates +42526,Dee McCafferty +6599,Robert Morley +1508013,Mary Jo Ellis +1444501,Natale Zupelli +1216429,Tava Smiley +59620,Gemma Arterton +34046,Reed Hadley +368684,Amaliya Mordvinova +22948,Veda Ann Borg +955807,Jenni Tooley +92319,Shawn Crahan +44822,Starletta DuPois +1748102,Hans Schoeber +237034,René Enríquez +986808,Wyatt Russell +7380,Anny Ondra +1391035,Eric Hull +1600059,Richard LaMarr +59784,Carlos Alazraqui +36171,Brent Carver +8225,Barry Foster +83643,Ken Nakamoto +212196,Alex Band +1231412,Jimmy Chisholm +1239677,Ahn Suk-hwan +9919,Claudine Auger +1857463,Roger Wright +1677330,Shinko Isobe +1147123,Lo Hoi-Pang +105047,Gerald Okamura +235347,Zeke Davidson +3202,Edie McClurg +131190,Anna Tsuchiya +12157,John Wengraf +97659,Alan Dexter +95125,David Lodge +40041,John Alderton +37875,Derek Blomfield +1228161,Chris Gampel +79217,Adriana Cordova +2406,Mathieu Kassovitz +153546,Jessica Myerson +85073,Lorraine Stanley +1245394,Socorro Valdez +108584,Alysha Westlake +1137031,Eileen Stevens +3033,Wil Wheaton +20041,Maryam Karimi +1181464,Charles Paraventi +94959,Camilla Power +981090,Vivia Ogden +49563,Hilde Olausson +17118,Mohamed Akhzam +69122,Heather Graham +104669,Gerard Sanders +955167,Ronald Simpson +1073040,Jessica Dublin +1542133,Tere Morris +1781823,Joshua Jaymz Doss +94702,Nikolai Sotirov +16428,Darren E. Burrows +552645,Kiyoshi Nakano +15265,Srđan Todorović +67676,Kenneth More +83078,George Lee +60016,Fallon Brooking +90318,Gabriel Garko +582559,Wen-hsi Chen +7383,John Longden +106805,Sidney Miller +1578547,Stanislaus Solotar +69129,George P. Wilbur +1752802,Matthew Caruso +20905,Melissa DeLizia +3094,Talia Shire +44240,Roddy Piper +122473,Sachie Hara +168938,Scott Caudill +67381,Zachary Mabry +36013,Thomas Schmauser +28343,Karl Kranzkowski +81816,Benjamin Feitelson +32203,Stephen Moyer +13759,Sefalika Devi +152353,Jayne Modean +12445,Sue Lyon +1484864,Elizabeth Greenberg +15214,William Tepper +4766,Melora Walters +1342694,Hidekazu Mashima +547988,Yoshie Shimamura +52884,Wally Welch +89568,Candice Roman +21005,Darlene Hunt +36819,Hayley Mills +146007,Mark Asante +75308,Emmanuel Lewis +1077929,Miki Iveria +71450,Robert Lindsay +9951,Kevin McClory +29601,Halliwell Hobbes +36669,Rupert Friend +15998,Joseph Ruskin +100717,Alberto Dalbés +84978,Joe Tornatore +552221,Jonathan Smit +1364323,Graham Loughridge +1482683,Yuko Bambi +77191,Jeanne Balibar +228561,Takeshi Maya +122416,Tina Rodriguez +7548,Tiziano Cucchiarelli +54617,Tenzin Tashi +1176955,J.C. Kenny +829,William Russ +79522,Leslie Aldredge +1276276,Leon Beaumon +179096,Ruben Moreno +10916,Caterina Murino +66496,Adrienne Shelly +98137,Lenny Juliano +119605,Yeung Wai +555018,Mame Yamada +1366354,Julio Cesar Torres Dantas +15137,Serge Reggiani +134688,Adam Blackwood +56456,James Read +54,Maurice Roeves +1857434,Ian Beckett +20442,Roschdy Zem +99418,Gary Warner +1219410,Elizabeth Hoffman +138116,Tony DiBenedetto +97992,Jewel Carmen +1194944,Gene Jones +21125,Richard Kind +132493,Virginia Gilmore +40938,Romane Bohringer +33432,Arija Bareikis +116118,Geoff Hoyle +99592,Greer Goodman +6217,Anupam Kher +47781,Anne-Sophie Briest +11866,Joshua Jackson +75264,Robert Morgan +1244810,Hilary Reynolds +16297,Edward Saxon +54887,Elizabeth Bracco +29903,Peter Finch +44799,Carole Ita White +52616,Richard Kennedy +11207,David Thewlis +590856,Jad Stephan +103503,Milton Parsons +170537,Mary Patton +1781139,Patrick Nielsen +1838952,Charles Edouard Gomis Correa +42996,Trevor Peacock +20564,Tony Musante +21625,Molly Ringwald +1606,Francisco Boira +27504,Chris Young +1173223,Danny Chan Kwok-Kwan +1901812,Jens Nielsen +1674961,Xu Zhi +1484348,Utaroku Miyakoya +1773874,Abraham Smith +50583,Adam Rifkin +163650,Kevin Hagan +10557,Paul Simon +78548,David Muyllaert +49271,Brian Geraghty +1223006,Jonathan Parks Jordan +25129,Don Johnson +120481,Jan Vostrčil +979987,Terri Ivens +11128,Arthur Kennedy +67010,Branko Samarovski +72819,Yasufumi Hayashi +33496,Molly McClure +27806,Jean-Baptiste Huynh +1195360,Harrison Schmitt +1196710,Helen Lynd +57197,Gina La Piana +147077,Chip Taylor +110589,Allen Ginsberg +1059599,Jacques d'Amboise +12688,Peter MacNicol +1720268,Jorge Chesterking +19215,Lou Gilbert +17190,Erik Per Sullivan +1126347,Jeanette Kontomitras +24982,Ane Sánchez +1646183,Krista Pflanzer +928735,Ursula Peveling +936477,Knud Vesterskov +123305,Lynne Cormack +88392,Robbie Kay +105455,Matt McHugh +65122,Richard Bairos +1409209,Athole Shearer +92318,Craig Jones +11070,Outi Mäenpää +59575,Dorothy Martin +1609669,Una King +228148,Beatrice Palme +10679,Carey Lowell +201798,Helen Hughes +20614,Hasan Ali Mete +552660,Hikaru Jinno +1265400,Rick Mohr +1348450,Marek Magierecki +57347,Terry Miller +20830,Isao Kimura +106247,Tom Villard +14325,Derrick O'Connor +3812,Pilar Bardem +1093409,Jason Morell +68312,Maxime Collin +1502568,Ken Keen +146487,Éric Naggar +1468189,Ramon Ros +97002,Mary Biondo +554883,Torauemon Utazawa +120308,Caleb Peterson +819,Edward Norton +61346,Rowan Woods +2980,Nadim Sawalha +16632,Gary McCormack +1166328,Konstantin Stepankov +1507166,Gene Picchi +1317809,Josi K. Waksman +62692,Oliver Hudson +13401,Peter Mark Richman +14699,Pamela Reed +154727,Tom McCleister +26513,Debra Winger +156204,Constance Zimmer +1728656,Lutz Hemmerling +1720889,Pirie MacDonald +592128,Ashley Ferrare +1401796,John Knoll +4520,William Forsythe +1153612,Randy Steinmeyer +16294,Jonathan Demme +38404,Véronique Barrault +96043,Kylie Travis +58305,Gudrun Brost +63279,Anna Deavere Smith +568656,Reshma Gajjar +20495,Jeff Fahey +12026,Emmaline Henry +1676386,Kai Shi Chen +42400,Gila von Weitershausen +1804393,Anastasia Sharp +975522,Rosalind Harris +86489,Blanca Guerra +84223,Anna Kendrick +76931,Kiichi Nakai +189431,Glen Murphy +93821,Judy Marte +29954,Lillian Langdon +162582,Mike Santana +34862,Viggo Bentzon +1090894,Al Ferguson +86271,Brandi Coleman +35554,Steven Anthony Lawrence +1218005,Mia Dillon +56897,Steve Cardenas +1179681,Vladimir Orlov +1493008,Ammar Tafti +1119436,Michel Castenholt +78429,Josie Ho +1664791,Maria Maneva +125312,Patricia Manning +53890,Natasha Slayton +175787,Nancy Giles +29259,Lewis Stone +63895,Alessandra Martines +34377,Bokuzen Hidari +552167,Akira Tani +1081829,Jérôme Tiberghien +965,Fernando Fernán Gómez +4273,Charlotte Gainsbourg +148355,Santeri Nuutinen +35053,Đơn Dương +1139748,Veryle Rupp +504,Tim Robbins +21358,Jon Kit Lee +15286,Christine Taylor +1448493,Marcel Rouzé +102642,Karen McKevic +1051054,Blanca Vischer +94129,Kathryn Loder +20387,Clea DuVall +1705493,Frederick Warder +1735912,Ronald Eng +1537360,Zuzana Oprsalova +124025,Stuart Brotman +102501,Jobyna Ralston +74077,Camille Saviola +58475,Angus MacInnes +1771191,Larry Nazimek +83197,Anthony Mockus Sr. +58019,Ethan Embry +554597,Haruhiko Hirata +89810,Katherine Locke +20501,Joel McCrea +81902,Ken Olfson +111431,Audrey Long +5378,Pamela Abdy +1035532,Sophie Prégent +1408414,Camilo Vilanova +1002678,Guido Spadea +150939,Richard Kanayan +134308,Walter Cartier +73967,Anna Tolputt +1321352,Volker Zack +27611,Christiane Krüger +1673750,Romeo Farrington +82541,Erika Oda +53647,Lainie Kazan +122245,Jonathan Hadary +1296375,Cathy Cervenka +19455,Julia Campbell +45463,Angela Aames +120740,Betty Blythe +1016195,Do-yun Yu +7868,Maury Chaykin +1374524,Eugene Burr +1435021,Karen Berger +58699,Michael Wynne +122925,Tomonori Yazaki +74197,Jaymee Ong +1759259,Alice Mock +211602,Nikki Novak +25173,Gale Sondergaard +1410389,Fritzi Brunette +59170,Stephen Bruce +130098,Lela Bliss +50466,David Castro +2683,Glenn Plummer +100395,Josie Bissett +1772258,Melissa Hays +1468209,Frederika Brown +11543,Gaston Modot +1015446,Jacques Vanaire +1569740,Charles Pendelton +87420,Barbara Ferris +120822,Frank Coghlan Jr. +83769,Robert Mammone +17780,Ian Shaw +74228,Earl Carroll +99360,John Canada Terrell +939656,Eddie Conrad +78197,Elisabeth Harnois +131726,Benita Hume +148520,Dorothea Kent +11142,Dorothy Gulliver +20439,Roni Hadar +1238424,Peter Elliott +71519,Marnette Patterson +21179,John Benjamin Hickey +1748114,Melanie Gage +103058,Federica Mastroianni +30687,Anthony Eisley +204462,Janet Varney +168925,Nadine Ellis +98495,Anita Sharp-Bolster +4121,Marcel Dalio +1463148,Dane Gordon +1064925,Charles Morton +1209257,Rana Morrison +109470,Andre Gregory +1089960,Fyr Thorwald +95977,Zoe R. Cassavetes +62569,Escher Holloway +87744,Charles Weldon +3014,Val Avery +1456495,Sasha Pressman +141518,Summer Altice +21618,Victoria Tennant +28029,Ira Wheeler +1062531,Billy Engle +215042,Dean White +59198,Matthew G. Taylor +83259,Florinda Bolkan +14035,Paul Weigel +136787,Richard Wyler +557337,John Stephen Hill +78304,Robert Arthur +36325,Christian Näthe +79699,Lisa Flanagan +1214024,Bill Applebaum +1644928,Geo von Krogh +1776511,Shannon Novak +1336159,Mario Donen +37287,Noni Hazlehurst +1556204,Teddy Reddy +1117120,Aparicio Rivero +51551,James Handy +15854,Ted Levine +27560,Paul Brogren +1619136,Anne Harvey +20327,Taro Suwa +149018,Shirley Jean Rickert +18324,Steve Zahn +32386,Lee Curreri +67532,Mélanie Doutey +1485642,Ken Heron +121224,Roger Gray +1629449,Sawai Poomring +1609666,Susan Hidson +47782,Brigitte Zeh +62916,Brad Sihvon +6839,Fritz Weaver +15232,Ty Burrell +168083,Pepe Hern +52829,Adrian Robinson +70830,Faye Grant +543146,Louis-Philippe Dandenault +77223,Tahmoh Penikett +106095,Maxie Rosenbloom +1290146,Dean Holland +15374,Leon Rippy +19664,Samaire Armstrong +646,Daniel Travis +1094423,Ashleigh Dejon +83313,Melanie Mayron +7457,Daisuke Katô +122816,Lee Siu-Kei +84386,Joseph Cirincione +110537,Kelly Flynn +1359875,Khatuna Ioseliani +1274103,Marie Blake +1352527,Konstantin Lukashov +6780,Vonetta McGee +11496,George Reeves +89043,Lois Nettleton +75283,Michael Fawaz +52835,Aston 'Bam' Winter +939743,Edward Taft +1479870,François Domange +165549,Andi Garrett +956719,Tim DeZarn +1230490,Sonny Caldinez +1001804,Scott Dillin +89727,Egon Brecher +80987,Karyn Parsons +13286,Adolph Green +132533,Noreen Nash +213932,Whitney Reis +171293,Damon Saleem +60005,Nathan Phillips +18999,J.K. Simmons +171213,Lucy Deakins +349518,Denis Houle +1575500,Jean-Pierre Gonthier +87816,Anjali Jay +84952,Olesya Rulin +9995,Jami Gertz +75772,Nomadlozi Kubheka +1397945,Brenda Wehle +122678,Maureen Gallagher +34660,Will Hutchins +18546,Hans Söhnker +1200125,Chôichirô Kawarasaki +28641,Terence Stamp +67978,Ona Grauer +151327,Bill Morey +26470,Jerry Levine +62570,Molly Bryant +134901,Dawn Pritchard +1649566,Nuntapon Kamutavanit +52145,Wayne Grace +75778,Guy Witcher +87340,Mauricio Gonçalves +1141559,Joan Fred Emney +25182,Yves Robert +18847,Irene Papas +93379,Skyler Shaye +38949,Angela Mounsey +1170325,Robert St. Angelo +112859,Yûka +184330,Gary Schwartz +126658,David Leonard +7465,Carrie Preston +34,Mykelti Williamson +157502,Robert V. Barron +122107,Joe Cuttone +156657,David Mills +1217658,Julie Nathanson +1105149,Max Schnur +52850,Lina Esco +30298,Chief Yowlachie +79697,Tamara Lee +1776499,Rita Bland +80490,Dee Dee Ramone +143803,Miho Nakayama +50465,Michael Ziegfeld +40186,Jacqueline Scott +85738,Lillian West +115916,Angela Mao +582012,Nicole Evans +93423,Carl Dagenhart +124342,Vanessa Cobham +45099,Erica Gavin +77675,Vera-Ellen +53806,Kieran Mulroney +162817,Marla Frees +59153,Robin Givens +72060,Herbert Mundin +94401,Martin Garralaga +218810,Mary Wilson +13728,John McMartin +1468085,Elena Durán +110550,Max Morrow +2934,Mary Gordon +1230601,Michael Spice +89587,Aminta Dyne +71733,Nanette Newman +1888570,Gal Altschuler +1480246,Leonard Zola +551516,Ladd Vance +1483450,Florica Vlad +77716,Cruise Moylan +1081559,Marc Singer +83873,June Diane Raphael +52421,Christian J. Meoli +147495,Christopher Miranda +544964,Geoffrey Weeks +1381437,Jimi Pääkallo +43328,Carmen Balagué +1368261,Ángel Di Stefani +1281027,Abby Zotz +13934,Kate Harrington +136482,Herta Ware +128672,Rodrigo Obregón +1769720,Kim Kyeong-Jin +6239,Ameet Chana +94156,Diana Dors +1153611,Bernie Gigliotti +176543,Ken Murray +54523,Martha Carbonell +1125483,Emanuela Iovannitti +544088,Takehiko Ono +1042911,Helen Schneider +1185438,Janet Rotblatt +1183958,Claire Rankin +1033154,James McIntire +188729,Sammy Smith +552653,Mutsuhiko Tsurumaru +99612,Courtney Lercara +4110,Humphrey Bogart +1426040,Gabriela Romanov +1527167,Brennan Gallagher +1170984,Petie Perkins +90164,Erin Blunt +97039,Edith Barrett +1032,Martin Scorsese +1234783,Bramwell Fletcher +133459,Joan Winfield +83988,Lynn Baggett +7376,Jorge Zárate +72408,Clarence Felder +6001,Björn Kjellman +1741977,Tony Gibson +1608789,Haley Sweet +1720984,David Clayton Miller +1313120,James Crane +124987,Ludivine Morissonaud +994453,George Dawson +145109,Kate Bruce +83978,William Bassett +4691,James Gandolfini +37589,María Isbert +27561,Amy Stewart +21303,Eric Campbell +229797,Natasja Loturco +586196,Alexandrine Agostini +1075005,Jenna Byrne +52537,Eduardo 'BR' Piranha +118638,Harry Harvey Jr. +13760,Dhiren Ghosh +100975,George Pelling +586,Sean Young +1463997,Günther W. Welpert +189364,David Purcell +55901,Gemma Ward +158126,Richard Gross +126903,Joseph Bernard +115308,Ron Randell +68180,Gary Grubbs +70753,Bill Kerr +144009,Josh Radnor +7489,Parker Posey +1008912,Jimmy O'Gatty +111994,Jack Kosslyn +61941,Madalina Stan +167676,Dewey Weber +9191,Timothy Spall +1184300,Norma Doggett +17497,Romain Duris +154295,Michael Milhoan +85603,Shernaz Patel +1630601,Lai-Si Fernandez +92404,Joel Kinnaman +64951,Neil Ross +86002,Anabel Shaw +7302,Janet Leigh +22048,Robert Sampson +97825,Joe Fleishaker +129279,Carole-Ann Aylett +228549,Toshie Kimura +104321,William Whitton +71770,Stephen McCole +1683932,Cristina Cottrelli +575433,Ali Salim Yaşar +21997,Kurt Raab +1125195,José Artur +59252,Nikki Reed +1507109,Susan Foster +15099,Paul Willson +7058,Kris Marshall +1796,Kirstie Alley +1116665,Gert Bastian +20279,Fiona O'Shaughnessy +81670,Yukari Ôshima +96998,Jeff Wolverton +20380,Paul Jarrett +106165,Eijirô Tôno +27412,Benito Pacifico +1101312,Dieter Milz +556527,Flip Benham +1144746,Chiquito +1106078,Naoyuki Abe +1378058,Beau Harris +51455,Johnny Lewis +134763,Charles Gitonga Maina +133230,Donald Kerr +1218282,Kevin O'Rourke +108642,Godfrey James +1624031,Alexander Bao +56584,Bam Margera +982297,J. Michael Oliva +1518741,Doria Caron +121247,Lloyd Ingraham +121464,Gillian Kearney +12217,Jay Mohr +148212,Jackie Kreisler +40060,Tina Holmes +190631,David Sherwood +16504,Tony Burton +121727,Jill Melford +7624,Stan Lee +1178333,Tibor Kenderesi +81092,Asin Thottumkal +1857424,Rachel Willis +138427,Richard Dimitri +19020,Walter Huston +61099,Irene Ziegler +56418,Sean Curley +306574,Greg Kramer +33935,Eythor Gudjonsson +20533,Heinrich Gotho +91462,Dulcy Rogers +148617,Brent Kinsman +162708,Bill A. Jones +59574,Jennifer Anglin +1189173,Rod Gist +83530,Jefferson Brown +18482,Marie-Jeanne Montfajon +32544,Monique Parent +164511,Ed Hodson +119643,Dorian Tan Tao-Liang +61133,Michael Daingerfield +1359880,Gogola Kalandadze +129713,Mia Stallard +78499,Scotty Noyd Jr. +1220115,Saskia Wickham +224918,Kelvin Wong +77278,Denzel Whitaker +552512,Aki Fujî +1083307,Kikuko Hanaoka +10485,Leilani Sarelle +135930,Alex Nussbaum +1894175,Paul Pinnt +557840,Kristen Holden-Ried +211474,Emily Rios +7070,Alan Gibbs +2063,Jukka Hiltunen +553429,Leon Lee +14503,Herbert Lom +111287,Jack Daley +1677325,Daniel Wong +1006136,David Cale +70243,Eartha Kitt +62712,Andrew Jackson +115283,Michael Percival +1586292,Ann Wilner +1510929,Khorabek Musabayev +1097896,Monica Bannister +1393447,Lex D. Geddings +1866708,Delphine Sérina +1838641,Margot Welch +40348,Phillip Glasser +1593808,Noguchi Takayuki +131612,Charles Irwin +35899,Jean Benguigui +551620,Tassanana Nuntasapee +58198,Chris Farley +42708,Rob LaBelle +1274513,Francesca Eastwood +17305,Greg Grunberg +46939,Jean-Pierre Dorat +1228956,Smug Roberts +19877,Dick York +6730,Sacha Baron Cohen +23797,Marco Hofschneider +1896865,Aidan Fitzpatrick +228744,Nicola Arigliano +152977,Donald Willis +1416120,Philip Skeet +19134,Brian Part +54888,James Villemaire +96675,Paul Young +21925,Albert Popwell +105902,Michael Filipowich +78567,Peter Callan +131728,Yuen Tak +551902,Tina Theberge +1232094,Nolan Hemmings +154237,Nick Toth +1348437,Øyvind Hagen-Traberg +31,Tom Hanks +32431,Minna Gombell +206366,Ross Canter +136424,Gil Arceo +107555,Michael Jackson +98093,Lisa Crawford +43978,John Mahon +77114,Walter Abel +73457,Chris Pratt +1634919,Luka Kain +124471,Josh Meyers +1346977,Ferdinand Schumann-Heink +553178,Pippo Provvidenti +183968,Kenny Call +35826,Siegfried Rauch +81554,Simm Landres +79154,Duobuji +134893,Lennie Huhtala +60060,Mackenzie Astin +107635,Krzysztof Kiersznowski +34330,Ann Savage +131017,Yoshiko Tsubouchi +33653,Sherry Stringfield +1609622,Maureen Brennan +5902,Guilied Lopez +933862,Neal Burns +1226742,Robert James +78782,Herkie Styles +40389,Bernadette Peters +56816,Michelle Reis +1196309,Jerry Butler +109390,Jean Ainslie +6914,Scott Wilson +92316,James Root +1418163,Stephan Enquist +1857425,Natasha Brice +2010,Louis Wolheim +175017,Michael Prince +1748105,Peter F. Giddings +1517240,Toby Salaman +567303,Wu Fung +20796,Thérèse Liotard +1024803,Jan Waldekranz +1341,Donnie Yen +99207,Amber Wallace +99375,Morgan Wallace +125847,Scotty Beckett +81598,Reece Dinsdale +954,Marisa Paredes +188468,Pat Laffan +44434,Edwige Fenech +2659,Sol Gorss +8346,Jerry Ziesmer +54615,Christy Chung +135189,Jon Cedar +94138,Frank Nasso +16349,Robin Renucci +999904,Shannah Laumeister +104942,Don Sparks +11116,Nicola Cunningham +1039476,Isa Gallinelli +980357,Jacques Gagnon +235848,China Shavers +69484,Siri Howard +61983,Jason Marsden +975188,Bill Schoppert +151385,Bobby Edner +27398,Urbano Barberini +24293,Doris Belack +37917,Kristen Stewart +156692,Amanda Carlin +31384,Jordi Mollà +1520267,Kala Alexander +71977,Sirivech Jareonchon +208944,Casey LaBow +974425,Daria Kalinina +49275,Spencer Garrett +13925,Paul Dillon +44033,Barbara Alyn Woods +27775,Chelan Simmons +10649,Malick Bowens +42650,Jesse Harris +1465268,Michael Carven +10742,Teri Hatcher +14634,Jürgen Schornagel +1206247,J. Paul Broadhead +1420880,Edward Thomas +1857413,Said Talidi +20179,Balázs Koós +182102,Patti Austin +69865,Jesús Ochoa +1249,Penelope Wilton +1219157,Jim Doughan +119130,Sean Garlick +1044969,Edward Dillon +17678,Rudy Youngblood +1741942,Connett Brewer +742,Michael Byrne +62843,Meera Simhan +1858657,Freddy Korner +635804,Stephen Earnhart +84476,Kamala Lopez +17024,Owen Roe +1866709,Sachi Kawamata +1501359,Carl Snell +1265416,Hubert Fabian Kulterer +21665,Alexandre Brik +1039630,Gerald Oliver Smith +81956,Don Margolin +76873,Noemí García +1116509,Shintaro Wada +552266,Toshiya Agata +1446420,Rick Adams +153516,Ryan McDonald +53396,Ronnie Wood +1222175,Becki Newton +80255,Margaret Leighton +74657,Alex Barnett +46595,Signe Egholm Olsen +182280,Daniel Eric Gold +1196130,Michael Stoyanov +1334946,Izudin Bajrović +42974,Troy Byer +97478,Don Collier +129297,Jerry Sroka +583570,Gilles Rousseau +1609244,Jason S. Nichols +963078,Frank Dattolo +1005,Peter Appel +40946,Dilys Laye +28748,Alex Pinder +1752786,Dennis Lupien +4430,Sharon Stone +1209707,Ava Rose Williams +5890,Virgina Ariza +93105,Richard Egan +59281,Steven Randazzo +109693,Brian Levinson +234102,Maria Erwolter +1152,Oliver Stone +119359,John Chandos +1789029,John Di Fusco +18616,David Morrissey +3635,Elizabeth Taylor +67519,Ashlyn Gere +1085896,Leslie Vincent +1116302,Taru Mäkelä +1616857,Zhang Yu-Ting +199876,Patrick Monckton +61792,Richard Huggett +55467,Stephen Campbell Moore +51684,Mehcad Brooks +1741410,Joseph A. Wilson +80152,Tony Boschetti +566944,Robert Clarke +190040,Mark Nelson +1294172,Étienne Bouchard-Dauphin +72099,Ben Cotton +1219029,Paul F. Tompkins +1467405,Fred Sweeney +91541,Daniele Liotti +13976,Charles Waldron +140147,Anne Blake +135658,Varhan Orchestrovich Bauer +1741948,Marie Mizener +1323652,Katerina Poladjan +29603,Tempe Pigott +64181,Dave Goelz +918340,Sonia Benezra +123149,Mercedes McNab +203739,Bill Dawes +61658,Ja Rule +65605,Muhammad Ali +95117,Frances Dee +75279,Jilly Ferguson +1152713,Yoshie Minami +133774,Mews Small +554573,Isao Hashizume +84323,Florence Stanley +1453028,New York Rock & Roll Ensemble +106564,Emma Sutton +551849,Yûsuke Umemoto +1347496,Nikolai Panov +64453,Jo Jae-hyeon +1973,Bernard Giraudeau +51550,Dorothy Fielding +108653,Colin Maitland +105492,Stuart Fox +1186497,Jonathan Best +148593,Haley Miller +229663,Lita Chevret +15838,Lea Salonga +1221564,Shelly Novack +1879746,Johanna McKay +80127,Masashi Endô +201648,Patti Love +147884,Morven Christie +37511,Juan García Tiendra +1161040,Scooter Teague +40947,Judith Furse +955475,Ed Stobart +1133641,Ranran Suzuki +1183967,Leroy Johnson +28463,Jean-Pierre Darroussin +96844,Andrew Kelley +62054,Faith Ford +95566,Claes Månsson +8690,Kumar Pallana +103829,Jason Presson +63864,Amy Lalonde +67445,Katherine Kath +95315,Roman Bohnen +21171,Gérard Jugnot +10174,Bernard Horsfall +37221,Penn Jillette +97695,Peter Kwong +3595,Jean-Pierre Ducos +51214,Brad Renfro +226831,Takuzô Kadono +1538451,Diana Lambert +141384,María Celedonio +59151,Chipo Chung +86104,Patricia Morison +167495,Ron James +107500,Danièle Noël +14435,Mack Swain +39195,Elsa Zylberstein +66469,Olgierd Łukaszewicz +1681737,Gilbert Cruz +9273,Amy Adams +19488,Dorothy Lyman +1034429,Heywood Hale Broun +35549,Coolio +1101333,Beat Presser +129271,John Murphy +69934,Nick Cravat +75711,Anthony Hayes +106171,Maila Nurmi +1075078,Merrilyn Jones +1014459,Michele Winstanley +11677,Terry Chen +13663,Robert Shaye +10080,JoBeth Williams +157639,Blanche Rubin +151423,Pamela Susan Shoop +29216,Zachary Woodlee +47001,Frank Mills +17540,Yoshio Tsuchiya +1208020,James Conaty +20399,Sybil Thorndike +8435,Stephen Dillane +10000,Gregory Sporleder +103727,Jill Townsend +1317199,Alexander Schoenberg +1744158,Rod Simmons +98462,Jeanette MacDonald +14830,Vincent Gardenia +36745,Mavie Hörbiger +122268,Slava Schoot +60277,Earthquake +551627,Vuanna Mahachanok +38243,Dominique Blanchar +1201835,Christine Gerlach +75787,Michael Brunner +1133286,Ai Satou +1482303,Hideki Furukawa +27264,Susan Kellermann +992504,Siobhan Redmond +124089,John Mylong +1609647,Anne Bancroft +104448,Lee Taylor-Allan +1331750,Enrique Acosta +1281022,Laura Jeanes +83721,Scott Cohen +989813,Stephen Eiland +1085689,Bud Stout +28383,Marko Jeremić +1469246,Matt Gorsky +42401,Jeanne Tremsal +63696,Kippei Shiina +974922,Rex Bell +1213791,John Pappas +1673228,Thomas Conroy +41749,Johnny Silver +1426031,Bryan Jardine +1049337,Anja Popović +543128,Robert Stevenson +565184,Laila Westersund +1552814,Sabrina Passuntino +77794,Elisabeth Waterston +106740,Miriam Byrd-Nethery +137952,Jesse Birdsall +157444,Stanley Brock +34609,Paul Bryar +1392601,Charissa Allen +57904,Ken Radley +945793,Mikhael Speidel +146141,Louise Dresser +43233,Kieran Canter +1345466,Marin Babić +27443,Gérard Buhr +1320294,Vendula Pecová +1853218,Mark Levine +129276,Paul Harris +77096,Claire Lautier +55636,Donald Sutherland +24365,Michel Subor +193285,Loren Haynes +79247,Howard Da Silva +3911,John Carroll Lynch +1492479,Gordon Winter +97043,Sir Lancelot +66605,Todd Solondz +10086,Heather O'Rourke +69777,Barbara Kellerman +51936,Lindy Booth +96553,Greg Serano +1414389,Archie Macdonald +148394,Peggy Cartwright +149563,Ethan Erickson +2201,Max von Sydow +1228341,Munro Chambers +120597,Joseph Haynes +1416136,Piet Van Immerseel +29658,Elizabeth Cole +99793,Liù Bosisio +1446431,Emma Raimi +1894174,Roe Henson +1609671,Shirley Lewney +7419,Brett Favre +153697,Shelly Manne +1302584,Gloria Hope +67127,Tony Bishop +63681,Julie Warner +6486,Dan Hedaya +1221007,Su Elliott +62019,Clu Gulager +157612,Paul Kent +2407,Rufus +151305,Dean Lopata +40898,Michael Clark +1438015,Stanley Taylor +1125225,Robina Chaffey +95771,Leslie Fenton +592406,Francis Lister +19868,Paterson Joseph +1050223,Eve Southern +1277938,Kristopher Kazmarek +71943,Reggie Rock Bythewood +16145,Youki Kudoh +80648,Vivien Oakland +203194,Natalie Denise Sperl +95223,Will Kuluva +589956,John Cann +1077875,Nick Bacon +77070,Gwen Stefani +1775892,Trey Knight +1333746,Jack Lilley +1665708,Stacey Marie Palmer +1077970,John Stein +134429,Zizi Jeanmaire +100480,Karen Mayo-Chandler +118263,Ong Soo Han +13029,Anne Betancourt +1117146,Gérald Weingand +1744174,Gordon Simmons +1812176,Jackson 'Rock' Pinckney +545850,Jackie Martling +142322,Fernando Alves Pinto +91573,Christine Boisson +109144,Damian Young +78289,Mark Power +5740,Lee Patrick +63585,Andy On +91839,Greg Goossen +1021561,Tatiana Saphir +1892328,Ffolliott Le Coque +34061,Wendy Melvoin +75349,Erin Moran +2409,Lorella Cravotta +102746,Leslie Bradley +47851,Andrew Sachs +1316031,Beppe Gudheimson +184375,Tyler Gurciullo +78290,Gareth O'Connor +127632,Marie McDonald +1459986,Yoneko Mogami +1033086,Sydney Mason +1781698,Edward Conlon +223514,Stephen Morris +35745,Preity Zinta +15250,Hope Davis +131833,John Walcutt +79736,Mariclare Costello +1298434,Dai Lung +56356,Gina Philips +143358,Li Xuejian +1209294,Don Costello +120351,Ken Mitsuishi +100111,Tom Clark +13377,Paul Henckels +1091312,Russ Clark +1392883,Anne O'Sullivan +1371450,Ayla Amiral +23724,Patrice Chéreau +1723433,Michele Gonsalvez +54507,Jon M. Chu +86940,Viktor Sukhorukov +197960,Tony T. Johnson +1853261,Marty Fresca +1752343,Rhonda Roberts +1105509,Svante Grundberg +1905,Vincent Price +1393332,Gwendolyn Mulamba +977271,Winifred Harris +1412213,Fatima Robinson +58494,Tom McFadden +60019,Lorri Bagley +1655864,John Hardman +1218243,Audra Blaser +1681413,David Petrou +117301,Gordon Tanner +75895,Bryan Dawe +94522,David Shatraw +1417453,Spero Anast +1223017,Peter Duguid +169384,Theo Forsett +53581,Patrícia Guerreiro +33161,François Cluzet +1180151,Lee Sau-Kei +1215988,Jim Hanna +20242,Fiona Victory +553449,Cin Chi Cheng +10872,Patton Oswalt +1823372,Vincent J. Isaac +29697,Nigel Whitmey +1625,Fa Zeng Li +1176957,Demitri Warner +203430,Yetta Gottesman +1452763,Peter McNamara +35596,Deon Richmond +148195,Brett Baxter Clark +126912,Marianne Stewart +1475,Musetta Vander +95298,Bernard Punsly +43444,Nathan Wetherington +39017,George Morfogen +43629,James Telfer +3681,Alma Reville +10774,Anne Bancroft +1059105,Robert Dauney +1323219,Don Winston +63911,Iain Cuthbertson +7795,Buck Henry +35317,Kate Mulgrew +1233,Philip Seymour Hoffman +1199749,Douglas Seybern +1206250,Melissa Best +5563,James Coburn +73489,Tom Burlinson +2296,Clive Owen +28906,Richard Chamberlain +1268954,Luís Lima Barreto +1206418,Alain Dion +74651,Josie Maran +10,Bob Peterson +1313348,Kathleen Mackey +1214500,Kim Wall +866,Russ Brown +1651013,Anjali Mehra +83932,Osamu Saka +1678291,Fadmael Ouali +42836,Marie Mullen +1444496,Pawel Godziak +116127,Gyearbuor Asante +1144679,Veronica Quilligan +61471,Otto Grünmandl +1232592,Chris Eyre +1527164,Jennifer Tyler +12412,Beau Gentry +101218,Deke Richards +1527314,Rafael Banquells hijo +1139751,Jean Brookner +134794,June Clayworth +169001,Aris Alvarado +1117359,François Moreuil +85796,Martina Zinner +1269956,John Cheung Ng-Long +1392597,Brian Smiar +93476,Suzy Kendall +937849,Pui Tak-Wan +30515,Ray Spiker +64679,Frida Betrani +34043,Stefania Casini +35896,Richard Berry +74285,Carolyn Hennesy +136530,Mark Valley +106480,Simon Poland +1790444,Golde +87328,Akshaye Khanna +228621,Winai Kraibutr +1010217,Fredi Washington +34818,Cyril Ring +13506,Willeke van Ammelrooy +81481,Darryl Hickman +116111,Geraldine Green +19426,Jackie Coogan +13344,Louise Closser Hale +13,Albert Brooks +125649,Mort Shuman +1423376,Joe Parro +93291,Christopher Simpson +1088028,Matsunosuke Onoe +1886584,Eddie Minasian +9178,Kristi Zea +162074,John Rice +148886,Alex Man Chi-Leung +1894148,Jim Burgdorf +1019113,Claudie Lange +1434979,Theo Schwartz +1012479,Jeanne Austin +1778957,Llewelyn Thomas +101914,Atsuko Yuya +94314,Milly Vitale +1195450,Baat Leung-Gam +111116,Matthew Rauch +22686,Maria Schrader +159394,Jim Ortlieb +51610,Judith McConnell +71186,Bjørn Sundquist +195198,Glynis Brooks +1006167,Anthony Debaeck +1781696,Jose Edwin Soto +101940,Delphi Lawrence +209539,George Ghali +103108,Douglas Evans +33670,Jay Goede +47884,Valerie Wildman +65508,James Olson +66027,Sergej Trifunović +129486,Julie Webb +231661,Susie Singer Carter +1386476,Владимир Кучеренко +56045,Matthew Davis +1272,Richard Bradford +555328,Jake McKinnon +13315,Leonard Jackson +103696,Jack Bligh +1847230,Grahame Charles +83459,Shawn Weatherly +172201,Wayne Thomas Yorke +63611,Nickolas Grace +42009,Iazua Larios +4319,Stacy Peralta +32526,Hellmut Lange +1386345,Matthew Draper +172953,Robert Bridges +1048530,Sid Raymond +981096,William Worthington +1781709,Jamal Weathers +1328126,Timothy Reifsnyder +81843,Jennifer Darling +109864,Gibb McLaughlin +31714,Stacey Travis +89088,Hedy Lamarr +1446555,Alex Burton +1075355,Jemima West +62424,Dick Wei +1704619,Joyce Henderson +45094,Steve Oliver +77717,Zan Cross +16906,Shy Ramsan +955949,Julie Upton +122599,Stig Olin +1081798,Gordon Watkins +165369,James Blendick +133479,Lora Lee Michel +77597,Ric Sarabia +1952,Jeffrey Weissman +3218,Louis Lombardi +124976,Marie Félix +148384,Frank Terry +52057,Obba Babatundé +5168,Gabriel Byrne +1330774,Stephania Gambaroff +1834,Shirley Henderson +1160,Michelle Pfeiffer +1720053,Mahrem Feydi +69764,Laurence Naismith +143441,Jack Drummond +2818,Magda Teresa Wójcik +34690,Shigeru Kôyama +13729,Robert Walden +107398,Stuart Bunce +176958,Mario Todisco +50574,Frank De Kova +225931,Kathleen Cleaver +1444510,Geneal Sanders +85838,Hope Summers +138696,Ignasi Abadal +10885,Kenneth Tsang +10526,Natalie Talmadge +1214184,Laurie Faso +94956,Craig Conway +1238610,Daphne Deckers +1217571,John Michael Bolger +234004,Mark Kuhn +61639,Jason Chong +1089567,Huang Wei-Han +1214056,Lisby Larson +86441,Alan McKenna +8445,Michael Culkin +1351477,Karel Vlček +29429,Riccardo Cucciolla +16646,Al Bandiero +1225463,Jon Walmsley +1948,Claude Stroud +1577162,Craig Terry +129332,Jan Hooks +2491,Carole Lombard +1236832,Julia Devin +149216,Rayder Woods +1681194,Sfia Ait Benboullah +76129,Albert Daniels +59173,Ron Payne +92073,Don Letts +38691,Anne Pitoniak +124091,William Stelling +550725,Gertrud Arnold +197036,Ralph Peduto +189636,Richard Donat +1752730,Thomas Dillon +18288,Terrence Howard +22163,Florence Muller +52312,Tracy Scoggins +11282,John Standing +81466,Robert Thompson +127993,Largo Woodruff +938983,John Cooper Clarke +1165238,Luis Mottola +156707,Devon Michael +73288,Michael McElhatton +44994,Arsenio Hall +1872823,Christina Fitzgerald +1386355,Colin Malone +82410,Terry O'Neill +8783,Eric Bana +67384,Blake Jeremy Collins +161357,Laurie Heineman +30044,Bo Svenson +126837,Michael A. Nickles +65561,Kip Pardue +122922,Ursula Howells +13249,Miho Kanno +14732,James Gregory +3005,Lil Dagover +44356,Milan Bosiljčić +3784,Michel Piccoli +1366363,Joe La Loggia +89527,Peter Whitney +16923,Pascal Greggory +1222446,Glynis Barber +195206,John McArdle +118038,Cloe Mackie +14978,Tom Powers +1857460,Kamay Lau +85776,Robin Morse +49744,Heinz Röser-Dümmig +1109542,Thupten Tsering Mukhimsar +179383,Irene Dailey +1595378,Charles Ferguson +1960,Alexandre Sterling +140577,Peter Challis +30124,Susan Hayward +35593,Sally Nesbitt +49832,R. D. Call +20220,Elden Henson +1673610,Marilyn Salisbury +998685,Beth Brickell +940876,Regino Herrera +83822,Roland Winters +11793,Priscilla Pointer +1532966,Nicholas Papademetriou +567812,Yuliya Krasnova +98234,Barbara Bain +103963,Wendy O. Williams +157257,Sandy Kenyon +151907,James Philbrook +15736,Sylvia Syms +35783,Zohra Sehgal +1276503,Rex Ingram +50362,Thiago Martins +14287,May McAvoy +81821,Sandrine Kiberlain +170392,Wally Dunn +706070,James Goodwin +89037,Barboura Morris +72636,Neil Bergeron +17414,Jill Talley +88672,Robert Barrat +1208034,Bobby Somers +1556203,Satchu Annamalai +1242809,Antony Byrne +43553,Jerzy Skolimowski +553893,Nadia Drouin +54769,Susanna Haavisto +100701,Rob Devaney +79731,Zohra Lampert +74022,Gao Yuanyuan +13014,Toby Jones +60788,Frank Digiacomo +1555141,Cathy Scorsese +59051,Jean Gilpin +1720933,Rex Pierson +940694,Howard Brookner +103987,Antonio Iranzo +26209,Matt Lucas +80238,Jean Dixon +1352511,Barbara Horne +177905,Joe Stevens +129215,Ernst Stötzner +30155,Claudette Colbert +129550,Norma Crane +1668468,Ida Darvish +74673,Felissa Rose +1560202,Ådne Olav Sekkelsten +60021,Christopher Evan Welch +1378072,Lyne Odums +58711,Kirsten Baker +55155,Bernard Behrens +54850,Kyle Davis +846000,Edgar Mitchell +138393,Tommy Rall +1163139,Anne Cunningham +1896899,Karl Dawson +143333,Marcus Hondro +1417449,Norm Tobin +1096095,Lia Chang +89613,Larry Fine +1423897,Cecilie Thomsen +113710,Chief John Big Tree +68445,Nancy Morgan +1239283,Betty Linde +153493,Sandy Descher +83390,Anne Helm +1716971,Atsushi Haruta +137684,Terry Norton +83458,Stephanie Jacobsen +89898,Fred Johnson +104998,Alexandra Wentworth +1179088,James F. Dean +1580378,Jeri Miller +121325,Fred Hueston +52816,Ras Daniel Hartman +45210,John Jarratt +1106263,Dolan Wilson +963,Toni Cantó +20420,Dirk Sanders +63208,Tommy Chong +3303,Russell Barr +93948,Alan Gifford +1109646,Ralph McCullough +79059,Weiron Holmberg +185797,Sue Kolinsky +109360,Carlos Santamaría +60121,John Di Benedetto +1575501,Betty Jones +1356,Jean-Pierre Lorit +171672,Rica Martens +549499,Derek Kueter +1119355,Guillermo Battaglia +1673821,Rajeev Punjabi +1444502,Katinka A. Schyberg +134725,Stella Malucchi +128438,Grayce Hampton +1869995,Jilly Rizzo +33713,Jordan Lund +74929,Madison Pettis +67951,Kenny Vance +1189964,Orazio Stracuzzi +1442832,Richard Lee +169093,Bob Maroff +71780,Martha Wentworth +1287658,Jennifer Lafleur +3340,Marie Windsor +190185,Rochelle Ashana +1010145,Jack Clifford +1365510,Joseph Passerrelli +61164,Craig March +62504,Florian Ghimpu +99251,Pericles Lewnes +1180942,Ralph Pace +1109541,Chungdak D. Koren +1469191,Jenayden Adriaan +19856,Navia Nguyen +44553,Lee Hays +57851,Bernard Rose +579269,Sylvie Debrun +1111693,Mark DiConzo +4811,Richard Boes +940044,Barbara Ewing +225290,Erich Pabst +1209719,Kristin J. Hooper +17642,Deidre Goodwin +58477,Jonathan Loughran +544286,Antonín Zacpal +1637459,Desmond McNamara +477,Julie Walters +49353,Jack Dodson +20577,Amira Casar +729,Lonny Price +4991,Royale Watkins +7466,Paul Borghese +144399,Jan Clayton +1665712,Laura Mraz +9892,Hunter Carson +1839760,Agatha Aguiar +139603,Betty Furness +43613,Sylvain Landry +21302,James T. Kelley +124243,Ayn Ruymen +1866071,Igor Džambazov +1513128,Joanne Strauss +1852419,Christine Sclafani +1355923,Jeremiah Kissel +967961,Roberto Rivera +194357,John Edson +1653785,Janet Hamill +85988,Berry Kroeger +152681,Don Hanmer +96800,Tatsuyoshi Ehara +20006,Christopher Reeve +112302,Emily Seltzer +146489,Frederic Bouraly +1449399,Angela Moore +185154,Vincent Marino +61016,Joe Forbrich +52507,Kandyse McClure +36041,Lewis Smith +176011,José Baviera +21384,Paul Butler +35791,Rishi Kapoor +162605,Kathy Kinney +234572,Carlos Vereza +65263,Chutcha Rujinanon +1031882,Evelyn Selbie +189430,Roger Brierley +16074,Michael Ansara +79320,Christopher Reid +60928,Busy Philipps +23493,Mike J. Regan +1471660,Elizabeth Williams +62749,Thomas Adamson +138092,Charles Anthony Hughes +133464,Takahiro Murase +119002,Hiroto Kimura +140364,Albert Malbert +66223,Sondra Locke +1223624,Jack Sheldon +170173,Anthony Palermo +1776773,Ivan Heng +200581,Diane Hsu +1417452,Sam Cirone +553177,Gabriella Di Luzio +123906,Lloyd Pearson +1349319,Luis Romay +1593806,Kosaburo Nomura IV +1059890,Kenzô Tabu +79428,Michael Gulick +1757596,Clemente Ukmar +41691,Ungela Brockman +2782,Ian Wolfe +3283,Margaret Travolta +120456,Robert Adair +83273,Anne Clarke +35761,Kamini Khanna +36494,Robert Giggenbach +11753,Denise Bixler +70286,Elizabeth Hartman +1857412,Roberto Bryce +29626,William Tannen +1765922,Alicia Renee Washington +1448991,Stephanie Harvey +587096,Gary Hetzler +1758316,Jesus Goiri +53650,Anthony Mackie +100230,Mickey Jones +107309,Elaine Joyce +91459,Hugh Hayes +41746,Serge Houde +1815845,Derek Anunciation +551615,Somchai Leelanukul +17590,Jean-Claude Guilbert +16178,Rick Baker +1218171,Robert Funaro +28871,Eugene Lipinski +47878,Jeff Yagher +1385304,Candice Merideth +41297,Alex O'Loughlin +975349,Robert Fiske +105962,Julianne Phillips +40351,John P. Finnegan +1934,Patricia Neal +1504098,Sam Smiley +1363015,Stefan Witschi +10367,John Waters +107068,Val Bisoglio +139909,Anthony Woodruff +8516,John Carradine +77720,Simone Cullinan +10662,Patrick Macnee +1223828,Fred Stoller +386,Peter Vaughan +61344,Fiona Press +1164,F. Murray Abraham +81136,Ovidiu Niculescu +103061,Francesca Ottaviani +130217,Leigh Whipper +551614,Sungwen Cummee +17240,Anthony DeSimone +932225,Jaye Michael Davis +130581,Thom Bray +68631,Kristina Kennedy +6396,Richard Edson +51997,Kelvin Yu +91241,Nick Dimitri +1593816,Kenta Daibo +94648,Tina Cote +43928,Meghan Ory +1139455,Cheyenne Rivera +34983,Tress MacNeille +2393,Marina Sirtis +67879,Peter Gonzales Falcon +1381,John Noble +1049503,Zorka Manojlović +1890720,Brian Waldvogel +46590,Eddie Vedder +1049235,Courtney Kraus +87827,Estelle Jewell +1290389,Archie Harradine +75893,Robyn Nevin +80376,Diego Serrano +80374,Patrick Tam +11584,Henriette Gérard +50965,June Walker +93798,James Millhollin +22075,Reggie Lee +52220,Walter Fitzgerald +1220202,Susan Cookson +1896866,Vince Hannington +1668328,Richard McClarkin +10073,Karin Dor +13296,Jean Hagen +1778257,Hannah Rosenberg +1221453,Danny Bravo +4784,Laura Dern +1117,Dennis Farina +3593,Daniel Mesguich +54224,Gordie Farrell +1430285,Erminio Spalla +93620,Welker White +1814901,Millie Foster +143073,Doug Benson +1193724,Chow Bo-Saan +155080,Frank Renzulli +1672657,Greg Montgomery +107040,Trevor Blumas +1221283,Hilda Plowright +20471,Demetri Goritsas +27994,Bruce Abbott +19511,Larry Pine +1211994,"Stacy Keach, Sr." +148014,Pekka Valkeejärvi +103627,Tano Cimarosa +1170368,John Eberts +56730,Cole Sprouse +44055,Gabriel Damon +116125,Jennifer Black +1760083,Franca Berdini +567800,Shirley Mills +1169886,Robert Vento +148139,Vicky McClure +84115,Jason Weaver +20769,Imogen Stubbs +163254,Frank Cavestani +89107,Owen Moore +1775884,Hunter Hamilton +15072,Gaylen Ross +150653,Ruth Dardick +90300,Buddy Foster +1313952,Tony McCoy +1119768,Marguerite Marsh +1106256,Angelica Page +18297,Sean Cory Cooper +1620870,Wang Jiu-Sheng +62881,John Kerr +240837,Sofiko Chiaureli +157227,Kelly Jean Peters +81409,Anthony Newley +1139757,Lorien House +1077878,Tom Foligno +1776532,Molly Gosline +1345504,Dennis L. O'Connell +7014,Michel Perron +1386342,Saucy +136528,Bartine Burkett +129952,Sean McNamara +167259,Paul Tulley +1008707,Dennis Carvalho +1446430,Jordan Benedict +54720,Steve Bannos +134404,Kyôko Kusajima +188694,Mark Beltzman +170986,Deborah Hedwall +119370,Omero Capanna +1325915,Stephen Bruton +219193,Brian Muehl +2928,Douglas Walton +2151,Amy Lippens +1511232,Chalky Williams +89746,Joan Woodbury +1228768,Joe Greco +70874,Lazar Ristovski +1352514,Mikhail Khmelyov +551904,David Ensor +38560,Lou Diamond Phillips +555068,Robert Prichard +10611,Barbara Bates +29951,F.A. Turner +29796,Rosalind Ayres +102645,Andres Centenera +544069,Chasey Lain +1075014,Ralph Coppola +57138,Tony Bill +55911,Billy J. Mitchell +13027,Keene Curtis +1875119,Monica Hankievich +218220,Jeannette Charles +38592,Cinzia de Ponti +88999,Fern Emmett +30474,Chôtarô Tôgin +93726,Raffaella Lebboroni +1217647,Leila Danette +1070523,Jeremy Hoop +1406994,David Trevena +29267,Jules Cowles +18023,Robert Carlyle +231837,Gottfried Breitfuss +1660002,Colin Fernandes +15319,Henry Czerny +1236452,Robert O'Neill +1044338,Carmen Morales +178776,Linda Hopkins +1359876,Marina Kakhiani +1011906,Chiara Picchi +1491523,Clesson Goodhue +73662,Tai Chung Kim +174880,Andra Millian +553192,Claudia Muzi +1037927,Battista Trevaini +77100,Audrie Neenan +5169,J.E. Freeman +1235524,Carrie Cain-Sparks +32554,Wolfgang Büttner +111690,松隆子 +34027,Stefania Sandrelli +150082,Claude Gillingwater +975417,Carole Skinner +1118,Rade Serbedzija +74276,Cindy Pickett +1605,Francisco Maestre +1218215,Judy Del Giudice +1032074,Mikaela Fisher +9762,Jean Sorel +1445466,India Adams +206475,Lasse Rimmer +1280235,Omar Hernandez +7,Andrew Stanton +72307,Marion Bailey +139044,Maia Brewton +79511,Michael-Joel David Stuart +58549,Bill Irwin +1281542,Bill Raye +1105814,Billy Lombardo +69811,King Donovan +83411,Timothy Scott +9383,David Aston +37251,Christopher Mitchum +54782,Mary Beth Hurt +202520,Ken Dodd +10458,Barbara Bach +16216,Judith Barsi +1673819,Phil Thorpe +78229,Lindsey Haun +213392,Ali Yassine +30015,Raquel Torres +70577,Ghassan Massoud +1609648,Lewis Charles Barham +552466,Luis Cortés +17662,Edith Evanson +29717,Dorothy Provine +2462,Catherine McCormack +1681213,Cynthia Montaño +3217,Robert Swan +3339,Elisha Cook Jr. +39125,Will Sasso +1790456,Robert Standley +195562,Alison King +103972,Roxana Nieto +99958,Sadou Teymouri +17647,Michelle Rodriguez +1409194,Patricia Fruen +98477,Joe Silver +43776,Neil Flynn +7570,Lauren Bacall +124365,John Watson +95866,Billie Joe Armstrong +4789,Bob Peck +6561,Moses Gunn +474632,Joey Ray +552607,Hisahiko Murasawa +1088044,Wayne Ferrara +20815,Skye McCole Bartusiak +280,Terry Gilliam +223349,Tom Stern +828,Guy Torry +27447,Sydney Walker +1484298,Norio Matsui +553180,Marcello Catalano +132322,Charles K. French +29953,Vera Lewis +77139,Judith Lucy +271982,Grande Otelo +37041,Andrew McCarthy +44407,Bernard Charlan +75285,Torquil Neilson +1537641,Frantisek Kosina +1229725,Nicholas Georgiade +1142371,Maurice Costello +1441535,Sean Oliver +45398,Steve Zissis +60876,Walter Breaux +167075,Bill Pugin +1226696,Will Zahrn +1210383,Robert Conway +1392606,Kelvin Payton +85153,Birgitte Larsen +38225,Cher +140485,Deep Ng +1765870,Antone Pagán +175154,Michael Nardone +72983,Manny Pérez +1231325,Paul Gilbert +137924,John Thaw +3417,Tony Goldwyn +69319,Nedrick Young +1104724,Karsen Liotta +11884,Kate Greenhouse +10166,Ken Niles +192940,Kelly Hunter +79757,Ville Virtanen +9632,Fredric Lehne +123834,Ramalao Makhene +42574,Gavin Muir +7166,Kevin Pollak +128114,Dimitri Süsin +1284626,Autumn Campbell +1392748,Scott Faulconbridge +95053,Edit Angold +107249,Zarine Khan +5873,Paul S. Mezey +18708,Courtney Gains +548004,Yu Shimaka +86606,Michael Reich +236567,Paul Ellis +37448,Stephen McNally +102650,John Herman Shaner +1436024,Eija Pokkinen +189827,Frederick Schiller +53493,Kal Penn +21343,Ben Chaplin +935292,Jaruchai Iamaram +20887,Marisa Merlini +156531,Jane Daly +941239,Carl Switzer +1496026,Robert Smith +96700,Joanne Jordan +136897,Veronica Turleigh +34845,Lola Glaudini +178148,Juliette Marshall +573795,Yun-beom Bae +1738564,Liza Ross +982313,Albin Pahernik +1405825,Kevin Jefferson +1733423,John Rummel +87564,Brian Imada +63935,Alex Daniels +116116,Clyde E. Robertson +122115,Alan Rubin +1274017,George Dillon +1799812,Richard Berendzen +1422390,Jack Shea +1155593,Vincent James Prendergast +1456742,James Georgiades +1470030,Caroline Bossi +1484301,Nobaru Sone +1516288,Peter Kerwin +134376,Per Grundén +228603,Gert Portael +1470323,John W. Momrow +153093,Leonard Sachs +54522,Vicente Gil +1206243,Barbara Stafford +1776545,Danielle Riffenburgh +89843,Oscar Kightley +1371446,Henry Wyndham +1090481,Oleg Yankovskiy +1333,Andy Serkis +17294,Tyler Neitzel +555159,Réal Andrews +567272,Phil Regan +1344661,Robert Sciglimpaglia +146012,Emma Little +1045558,J. D. Daniels +1076575,Cynthia Allison +981323,Brie Hill Arbaugh +1529890,Linda Broughton +1667,Danny Cunningham +39554,Jennifer Jones +1241522,Surendra Kochar +53767,Roger Vadim +196707,Stephanie Mills +176978,Gregory Vignolle +65986,David Chiang +1813,Anne Hathaway +18050,Elle Fanning +80344,John R. Taylor +6719,Ray Wise +1593249,He Jun +3667,Lou Brown +232877,Maurizio Mein +114423,Tawny Sunshine Glover +195111,Tony Van Bridge +14702,Cathy Moriarty +1133290,Takayuki Handa +399224,Lillian Yarbo +55961,Courtland Mead +1592590,Larry Best +93722,Antonio Petrocelli +1110553,Christopher Severn +85995,Edmund MacDonald +174037,Michael Reid MacKay +29986,James Murray +133798,Neil Affleck +76065,Robert Tessier +72327,Jalil Lespert +83260,Lucile Watson +164015,Anne Lange +99905,Kathleen Byron +1328364,Antonio De Matteo +1053099,Vivian Tobin +1027314,Thelma Hill +554572,Mario Abe +1150570,Rick Masters +47031,Hermann Vallentin +1404642,Guy Fithen +55270,Tom Wright +2673,John Ridgely +976039,Odiseo Bichir +1720978,Andrew Armbruster +10369,Divine +1189231,Malindi Fickle +79732,Barton Heyman +48711,Uwe Kockisch +156606,Cory Buck +87480,James Hall +1770536,Dena Smiles +171379,Katherine Borowitz +1344365,Devyn A. Tyler +136423,Bella Flores +29240,Tom Vaughan-Lawlor +104789,Bonz Malone +1206248,Alex Burton +1043462,Armando Velasco +58954,Darrell Hammond +1159168,João Perry +1270060,Makoto Matsuzaki +19875,Daniel Caltagirone +545853,Owen Morse +45457,Dominique Joos +54220,Thanya Romero +87698,Allyn Joslyn +87229,Lindsay Barth +8189,Tracy Reiner +1284629,Jillian Wieseneck +1064452,Alex Havier +1609649,Colin Bendall +1629452,Krai Kanchit +1026,Anders Nyborg +101621,Barbara Hewitt +12645,Jeffrey DeMunn +81430,Stéphane Demers +20289,Neil Jackson +34545,Rebecca Clarke +1525716,Harry Evans +1193099,Clyde Tull +551848,Yûta Takihara +1139752,Katherine Monick +1621842,Elle Bennett +1210694,Fred Walton +83129,Janet Munro +117772,Garry Owen +58511,Brian George +141408,Bobby Watson +1108830,Roger Edwards +1412879,Myles Horgan +127269,Lu Yi +13328,Corin Redgrave +1216592,William Boyett +951120,Robert Harris +26662,Jennifer O'Neill +1671514,Destan Owens +85602,Ayesha Kapoor +922,Allen Garfield +97438,Pete Valente +37054,Alice Bird +1234204,Dikembe Mutombo +52,David Morse +153111,Tony Thawnton +69250,Tim Seely +18870,Ned Glass +21967,Samuel Gould +1901258,Tyler Cravens +1120,Lennie James +155649,Joel Murray +1747352,James Forster +24969,Henry Kingi +37130,Giani Esposito +1570367,Jonny Bogris +28071,Adele Sandrock +62520,Sisqó +3064,Peter Mullan +71781,Ben Wright +79872,Andrew Kötting +1673815,Pete Mehringer +34593,Giorgio Albertazzi +1407506,Leung San +1676551,Patrick Blondel +54608,Soran Ebrahim +17759,Frank Faylen +91439,Peter Nevargic +1420891,Jean Malin +1839771,Rodrigo Oliveira +548699,Philippe Clévenot +78869,Shawn Yue +68430,Tia Texada +60650,Michael Paré +581341,Knut Agnred +56122,Marc Hayashi +178006,Max Brandt +127521,William Halligan +172017,Tommy Nohilly +1108891,Satoko Yamamura +71391,Stephen W. Burns +83027,Nola Augustson +118937,Dennis Boutsikaris +1069803,Eric Axen +577670,George Snell +518,Danny DeVito +34552,J.J. Toba +1673753,Levant Carey +111991,Frank Lackteen +1804392,Migdalia Melendez +2544,Akaji Maro +15393,Miles Davis +1192383,Peter Meadows +1005050,Fayard Nicholas +1398830,Carly Lang +21058,Colleen Rennison +52105,Heio von Stetten +1153049,Yutaka Honda +20288,Francisco Bosch +17442,Kelli Garner +117679,Slim Whitaker +59642,Sandra Hess +26042,Jerry Stiller +123120,Florence Rice +2935,Anne Darling +71936,Pierre Ghenassia +1178527,Jillian Stacom +104714,Paul Guilfoyle +42993,Martin Donovan +78018,Allan Corduner +1551623,Dana Ong +20115,Amidou +977672,Chris Papadopoulos +1853184,Cecile Krevoy +15413,Richard Dysart +181486,Joe Baker +45820,Esther Schweins +199977,Paul Kember +88170,Byron Webster +1901440,Tucker Brown +1806674,Christopher Greet +8579,Tulé Peak +102429,Roger Corman +1434006,Jan Citron +1194874,Lena Bergman +77644,Wynter Kullman +148046,Kirsi Tarvainen +142744,Robert Blythe +1735552,Birgit Thøt Jensen +135885,Aviva Marks +20021,Wilfried Hochholdinger +1091366,Michael Laren +76465,Laurene Landon +36172,Al Waxman +130086,Charles Marsh +25221,Alicia Agut +101331,Carlo De Mejo +54219,Courtney-Jane White +1201268,Paula Rittie +57756,Gene Simmons +1209418,Garret Noël +59543,Steffany Huckaby +16223,Edna Billotto +148096,Miles Heizer +97391,Darryl Cox +119979,Beverly Tyler +551859,Fusaaki Katô +1905148,Mabel Row +156666,Jules Sylvester +1661630,Lindsy Canuel +120009,Bern Hoffman +1275913,Hoa Hoi Vuong +1239341,Shawn Singleton +62754,Emma Lung +1320523,Bobo Seritsani +1156161,Sarah Kubel +131566,Maureen Arthur +33971,Bud Geary +226742,Yoshirô Aoki +146500,Miglen Mirtchev +6487,Richard Roundtree +1765265,Carol Jean Owens +1317055,Dan Tobey +115367,Frances Morris +87749,Ann Richards +47513,Peter Davison +1878350,Frank J. Garlotta +158587,Christina Jastrzembska +24483,Georges Descrières +57593,Ernie Dingo +1537393,Daniela Pokorná +61132,Theodore Turner +127544,Bentley Mitchum +1651693,Martin Coogan +120173,Moyna MacGill +81824,Shuko Akune +2603,Hakeem Kae-Kazim +78859,Lori Nelson +131408,Frank Butler +29490,Sharon Tate +141403,George Westcott +1002677,Mara Revel +21382,Gene Canfield +25988,Vitali Baganov +17161,Ann Firbank +28255,Fabrice Luchini +87743,Miguel Ángel Suárez +1330783,Duy Vo Van +21474,Leslie Stefanson +1281026,Julia Cohen +128112,Manuel Katzy +61399,Mike Ditka +1033159,Carolyn Farina +93951,John Serret +129681,Hadda Brooks +45749,Thekla Reuten +1267471,Peter Hugo +51906,Édgar Vivar +1366821,Alvaro Gheri +30243,Pat West +1198883,Merrill McCormick +1099216,Gene Coogan +171673,Kathleen McNenny +1722548,Andrea Avery +337275,Bob Evans +67523,Bernie Coulson +62884,Bogdan Voda +52801,Patrick Fischler +11486,Michael Imperioli +32923,Brian Aherne +25245,Jacky Cheung +81953,Katie Walder +57354,Debralee Scott +1090923,Nathalie Lissenko +69022,Ilyas Agac +27225,Jean-Louis Povéda +22162,Roger Dutoit +146010,John Fashanu +20291,Chris Aberdein +105389,Ashley Cowan +169316,Nancy Mette +82288,Jackie Berroyer +24754,William Sabatier +78021,Lloyd Kaufman +112454,Jessie Robins +19138,Bill Bixby +1045552,Joe Pagliuso +25933,Emily Deschanel +42841,John Meillon +62936,Scott Bellefeville +192706,Terence Bowman +29385,James Staley +437104,Humphrey Davis +1106954,Ralph Bucko +45849,Christian Erickson +274679,Richard Lupino +441718,Loriel Hennington +48577,Mathilde Seigner +14033,Emma Dunn +565393,Lim Seong-eon +1550460,Walter Bacon +554272,Sophie Langevin +1399075,Peter Graham +39801,Mischa Auer +37923,Florence Darel +21399,Ron Silver +1142866,Robin Wilcock +162263,Lois Hamilton +100566,Pilar Alcón +144865,Olivier Pierre +1468481,Edwin Rochelle +96162,John Rodney +66288,Roberts Blossom +1441485,Jens Basse Dam +4920,Oliver Korittke +23975,Lee Garlington +55908,Harry Ditson +1551625,Arthur H. Williams +102101,William Berger +137161,Colin Fox +25461,Meiko Kaji +551863,Naoko Yamanouchi +1537643,Bozena Matuskova +128098,Andries Rossouw +31705,Sam Edwards +1513167,Pete Shelley +38943,Martin Luther +60573,Angel Oquendo +554855,Yemang Zhou +2545,Lawrence Bender +89009,Lucile Browne +4514,Tuesday Weld +179274,Gianpaolo Venuta +4304,John Russell +1610635,Beatriz Thibaudin +3145,Simonetta Stefanelli +61139,Peter Scoular +552030,Emanuelle Devos +179384,Pert Kelton +197986,Mark McManus +1267324,Joe Burrow +1188616,Andy MacLennan +53024,James Pax +207297,Tony Devon +126549,Sam Hayes +6065,Dennis Quaid +50089,Benno Sterzenbach +1776450,Hannah Robinson +1468184,Rudolph Medina +224566,Eli Anne Linnestad +1741701,Lisa Ratzin +103932,Frank Moran +1179092,Donavon Dietz +1559607,Irja Matikainen +112364,Roger Imhof +46929,Ivonne Coll +1231005,Anneliese van der Pol +10929,Ruta Lee +70131,Tatsuya Nakadai +1070703,Francis X. Mahoney +178888,Paul Busch +101893,Laura Hippe +98233,Meeno Peluce +124007,Conrad Bain +1465099,John Lindsey +55512,Margarita Terekhova +2478,Tommy Flanagan +1159101,Filipe Cochofel +91289,Aya Takanashi +238576,Jessie Matthews +19406,Robert Montgomery +1316259,Laura Marinoni +1374381,George Hickman +198642,Griffith Brewer +14758,Mohammad Shamsi +998494,Ning Jing +77799,Shedrack Anderson III +545854,Jonathan Wee +99959,Hoyatala Hakimi +1850012,Dar Warison +1039094,Ashot Adamyan +992912,J. Anthony Hughes +29803,Madeline Kahn +1375201,Ken Scott +72666,Jean-Philippe Écoffey +20163,Richard Libertini +105637,Morey Amsterdam +1112109,Tony Roux +17026,Ruth McCabe +1741965,Victor García Jr. +86371,Napoleon Whiting +15074,David Early +239947,Araceli Guzman-Rico +76001,Tim DeKay +100138,Marcos Mundstock +132099,Portland Mason +36602,Peter Berg +4316,"Harry Carey, Jr." +1376292,T.J. Timon +9567,Cole S. McKay +79865,Tilly Blackwood +42604,John Simm +34376,Nobuo Kaneko +31896,Brett Halsey +33272,Sophie Stewart +13710,Yuriy Nazarov +427932,Zoé Auclair +1296387,M.J. Lloyd +83400,Dorothy Lamour +1586648,Chris Sayour +1109198,Anna Malberg +100784,Ann Todd +1573492,Irena Violette +47813,Serge Chambon +161989,Keith McConnell +3799,Billy Dee Williams +1781814,Timmy Mitchum +99126,Dolores Fuller +12354,Lance Fuller +15864,Clarence Williams III +37700,Sam Easton +1486424,Kristina Uranowski +47770,Joseph Siravo +1678298,William Hahn +40656,Juliet Howland +19203,Alicia Miles +55578,Steve Nicolson +1396544,Artie Pasquale +1459371,Alice Keating +42012,Sayuri Gutierrez +1381585,Robert Russell +2614,Mothusi Magano +125625,Risto Tuorila +192204,Christina Nigra +1127466,Troels II Munk +372273,Jean Obe +230884,Alfredo Landa +154540,Richard Saxton +1742412,Isaac Rodriguez +1229277,Jonathan Linsley +21042,Ebon Moss-Bachrach +67382,Ross Bagley +222581,Lucie Höflich +197371,Ashley Cox +12852,Barry Corbin +1170690,Susanne Juhász +1502565,Monica Borchardt +694,Philip Stone +32248,Michelle Duncan +40233,Anne Seymour +6658,Nils Poppe +121367,Kirby Allan +34485,Lauren Holly +131016,Kuniko Miyake +1660278,Pierre Bodry +31266,Claudia Bryar +86866,Nonna Grishaeva +1168139,Ashley Avis +1678179,Cooper Brooks +42837,Dawn Bradfield +3926,Albert Finney +1670,Daniel Mays +52442,Olivia Thirlby +25783,Eric Leutzinger +1226913,Jackie Harris +107380,Cal Macaninch +20800,Jean-Pierre Castaldi +2850,Jerry Haynes +9211,Eduardo Yáñez +113948,Eugenia Yuan +24474,Paul Barge +99036,Ted Sorel +1609651,Joy Birnie +1227157,Candy Moore +1320440,David Deblinger +21199,Jake Steinfeld +1281864,Melanie Merle +1105263,Mario Opinato +1771533,Michael Graves +80661,Michael Zegen +1640576,Marquis Nunley +4003,Christine Ebersole +1507184,Lars Hensen +1800125,Richard C.W. Schutz +16845,Nicole Sullivan +15310,Anthony Kiedis +144370,Anne O'Neal +1324197,Virginia Bosler +1075385,Sophia Adella Luke +551605,Ben Yuen +66577,Danielle Cormack +16648,Danial Brown +120106,Ed Call +33511,Oliver Broumis +107212,Massimo Foschi +94940,Lucas Gridoux +1200505,Shinoburyû +18262,Richard Riehle +1452110,Rafer Weigel +591881,Roger Kemp +40981,Kyle Cease +2283,Stanley Tucci +28786,Mouna Fettou +103965,Denise Gordy +1446419,Sarah Hernandez +111203,James Downing +1408410,Lennie Peters +47668,Esme Percy +22226,Paul Rudd +3738,Haymon Maria Buttinger +200911,Gerald Flood +1576714,Rémi Bichet +6725,Russ Tamblyn +90423,Lindze Letherman +1796669,Maxine Tabnac +14333,Grand L. Bush +52687,Uri Ran Klauzner +53198,James Carpinello +43286,Laura Vandervoort +1673751,Anthony Delaney +27111,Kevin McNulty +143346,Keith Ferguson +176053,John Erwin +55513,Alla Demidova +1610931,Chan Sek +1065416,Nobuko Fushimi +16459,John McConnell +1218533,John Santucci +1752857,Paddy Cole +52684,Hana Laslo +1437833,Kenji Ôyama +1287807,Jack George +1600511,Eddie Jauregui +52817,Basil Keane +1778143,Didrik Gustafsson +28640,Molly Shannon +544916,Paul Chang Chung +27712,Betsy Zajko +6280,Powers Boothe +1220338,Terri Seymour +15857,James Booth +65797,Catherine Dent +73264,Claire Nadeau +43247,Deborah Odell +101608,Rob Bottin +1083,Armin Rohde +1988,Tracey Vilar +1894147,Larry Strawbridge +96968,Christian Vadim +27120,Matt Hill +25785,Gabriella Pallotta +113697,Richard O'Callaghan +1114922,Kate Beswick +1752795,Glen Kerr +35552,Majandra Delfino +1218962,Wallas Eaton +1089425,Chris Hollins +551624,Wirasinee Kuntipan +14417,Marion Mack +107074,Hy Pyke +27116,Kevin Conway +1099402,Ann McElhinney +58623,Sy Richardson +89678,Oscar Stribolt +119856,Les Lannom +80745,Lee Ving +12098,Chris Miller +14575,Barbara Nichols +53755,Elizabeth Reaser +1182085,Stacy Arnell +1742435,LaToya Ward +21484,Todd Allen +164099,Susan Porro +82170,Jeanne Crain +47140,Natasha Parry +1155668,Mike Chambers +1544026,Al Stokes +184325,Ari Barak +39019,Mario Pisu +14109,Georgann Johnson +125424,Loredana Detto +79939,Tony Red Richards +53892,Colette Kilroy +87728,Willa O'Neill +2927,Gavin Gordon +219393,Ramona Pringle +44842,Alan Hopgood +79694,Leon Teague +79431,George Smith +89451,Steve Mackall +26158,Charles Wagenheim +33260,Freddie Prinze Jr. +1212249,Tim Conlon +7004,Paul Sorvino +96164,Peggy Miller +1227493,Nicholas Coppin +24480,Gabriel Gascon +955923,Ginny Tyler +1237611,Marcy Harriell +82490,Maidel Turner +42593,Roger Sloman +1370580,Ricca Allen +582560,Hsueh-Liang Pu +83975,Arte Johnson +74874,Aline MacMahon +1257982,Gabriella Messina +18514,Asia Argento +1540104,Keith Langsdale +1216462,Jack Duffy +78385,Jordan Rhodes +4051,Jenny Robertson +29220,Amanda Bynes +1229203,Marc Platt +19231,Karl-Fred Müller +1199752,J.P. Gabriel +70233,Ricki Lake +1402854,Natsuo Ishido +1196132,Patti Tippo +34901,Joanna Lumley +96386,Jana Hubinská +32218,George Cleveland +6837,Walter Matthau +97165,Brian Pettifer +85991,June Storey +6773,Rosalind Miles +28608,Anne Vernon +1469195,Henk Kreekel +551604,Ming Poon +974,Dexter Fletcher +1374770,Anthony Arkin +40168,Susan Clark +1499600,Tôru Takeuchi +172677,Michael Keys Hall +54768,Turo Pajala +201417,Merle Haggard +1220072,Lynn Farleigh +1047266,Ljiljana Jovanović +1275568,Wai Ching +16660,Sage Stallone +7639,Joan Bennett +89040,Ed Nelson +95805,Norman D. Wilson +13242,Paul Giamatti +1668100,Marlon McGann +39185,Kevin Eldon +19216,Jean Peters +231923,Monica Ekberg +57372,Kerri Green +1089561,Sumomo Yozakura +143591,Shoshannah Stern +1651566,Beatrice Fredman +122114,Rosie Shuster +11701,Angelina Jolie +144395,Paul Sutton +123587,Cedric Sanders +78847,Nelson Eddy +110484,John Derum +85427,Pascual García Peña +1467054,Mickey Martin +175553,Blaze Berdahl +1616921,Renu Kochar +140571,David J. Higgins +1188794,Marlene Wallace +6857,Jacinda Barrett +194,Richard Harris +99548,Karl Zinny +65334,Michael Des Barres +1332531,Roy Stephens +6684,Lara Flynn Boyle +78959,Peter Rowsthorn +29459,Patrick Bergin +75280,Jon Wicks +53574,Eric Thal +1194426,Harry Gray +19888,Géraldine Pailhas +99551,Fabiola Toledo +1629446,Thamonwan Srinatsomsuk +97170,Mary MacLeod +16490,Sean Albertson +1466740,Arthur Yeoman +558258,Babú Santana +67601,Lucas Grabeel +559766,John McLaughlin +48519,Béatrice Jean-Philippe +28462,Dominique Bettenfeld +1677031,Massaro Nagahishi +98017,Cissy Fitzgerald +1320291,Dalibor Fencl +1448984,Stephen Kearin +157672,Corinne Wahl +169362,McKenzie Westmore +3492,Colin Hanks +117546,Davy Kaye +1838428,Grant Thompson +1896867,Denis Kelleher +69588,John Eaves +80138,Erika Katz +77330,Kenan Thompson +22611,Yella Rottländer +84457,Marisol Nichols +40194,House Jameson +75266,Scott Major +29428,Elsa Martinelli +1102477,William N. Mayberry +42998,Elizabeth Berrington +140618,Jiřina Bohdalová +78793,John Archer +111907,Norman Steinberg +553810,Naoko Watanabe +30204,Sammy Stein +928532,Josh Pence +77977,Pia Tjelta +6473,Kelly Lynch +5063,Joseph Ragno +10776,Elizabeth Wilson +91536,Cassie Stuart +8519,Russell Simpson +558099,Paul Welsh +1122214,Linda Harris +1923,Robbie Coltrane +1019,Mads Mikkelsen +81024,Roger Lloyd Pack +31043,Patharawarin Timkul +1386222,Brit Shaw +178765,Corinna Tsopei +78148,Wayne Alexander +54800,Anna Maria Horsford +1267241,Liz Lloyd +1838957,Aminatha N'Diaye +42802,Salman Khan +454223,Michael Ciesla +186212,Hal Galili +56658,Daniel Studi +9188,Billy Connolly +1620857,Jacques Bondoux +143131,Tuula Nyman +79871,Oliver Parkes +32389,Boyd Gaines +1193681,Robert Desroches +103877,Una Kay +205104,Michael Rubenfeld +128096,Gérard Rudolf +160589,Brooke Palance +1781705,Miriam Cruz +92866,China Chow +13098,Rapulana Seiphemo +7623,Sam Raimi +17689,Gerardo Taracena +1257389,Whitney Vance +1200211,Mayumi Nagisa +1872794,Carmen Williams +3981,Jenette Goldstein +10527,Ralph Bushman +103956,Brendan Dillon +1511754,Eddie Goines +65141,Laurence Mason +53940,Federico Castelluccio +108019,Kuroemon Onoe +17040,Matthew Carey +123960,Kjell Stormoen +16047,Marj Dusay +206,Jim Carrey +19081,Luc Etienne +23721,Dieter Laser +1348452,Susan Petersen +52689,Adnan Tarabshi +12517,Freddie Jones +87715,Carissa Kosta +27005,Don Michael Paul +30272,George Tobias +1576553,Daniel O'Haco +1235129,Mary Murphy +156058,Craig Ng +111129,Miloš Samolov +136516,Pierre Issot +52860,Judah Friedlander +944315,Leslie Simpson +105337,Ray Lovelock +4890,Brian Tarantina +1472526,Gerald Pierce +2282,Ben Kingsley +544595,Jean Gascon +26468,Rob Camilletti +32072,Jacques Dorfmann +165818,Tito Puente +37102,Christian Redl +11676,Mark Pellington +73700,Richard Hillman +12929,Rosie O'Donnell +1035071,Chloe Bale +537,Stephen Tobolowsky +113588,Bea Van Der Maet +18285,Jennifer Esposito +15915,Sergio Rubini +30318,Amanda Root +1776544,Justin Rhoads +156165,Kevin Page +14576,Jeff Donnell +1421688,Chet Hanks +83640,Tôru Abe +33675,Alan Boyce +1465097,Bill Dunbar +134492,Klaus Händl +74689,Rupert Davies +1583757,Rika Hofmann +1648581,Valerie Wright +127671,David Cota +18802,Ronald Reagan +1469496,Sam Kalilieh +41885,Logan Polish +161819,Alice Backes +16842,Stephen J. Anderson +30704,Francis Matthews +117037,Byron Shores +11827,DeRay Davis +16762,Mimi Gibson +10169,Telly Savalas +1271036,Lucille Ward +4889,Kim Director +5268,Paulo Branco +1246598,Jane Wood +143020,Teo Gheorghiu +39603,Vic Damone +81376,Daniel C. Swanson +1292226,Charles Willis Lane +545605,Sarah Hellman +70098,Jūrōta Kosugi +114739,Yuzuru Fujimoto +1042749,Miguel Alcíbar +95271,Selena Royle +234,Gerry Quigley +16220,Charles Bowleg +112862,Marika Matsumoto +1569888,Eric Welch +30199,Mira McKinney +238826,Osamu Shigematu +1598135,Herschel Graham +29285,Jay Novello +1083899,Candace Kita +20000,Meg Wynn Owen +1839753,Marcella Muniz +15983,Beverly Washburn +1467850,Manuel Díaz +100594,Lucille Lund +277526,Robert Favart +106739,Mitchell Laurance +114630,Joel Carlson +67685,Richard Carlson +1192389,Tibor Feldman +58544,Neal Huff +159810,D.C. Benny +1392752,Kevin Ryder +1894173,Lee Barton +120446,C.L. Sherwood +34421,George Tyne +118125,Katja Schuurman +1732631,Felipe Martín Puertas +65709,Stephen Zapotoczny +96321,Tego Calderón +3597,Julien Dubois +127641,Paul Ford +37017,Milan Kňažko +1132614,Tam Bing-Man +21882,Josh Stamberg +20263,Seo Ji-Seok +1546957,Adam McCarthy +19589,Mari Natsuki +85174,Song Ji-hyo +5831,Arthur Treacher +55583,Lex Shrapnel +1323612,Jonny Coyne +81284,Eddie Marr +23123,Elena Meißner +1634331,Chris Moss +1506691,Laura Rees +133470,John Lodge +82644,David Calderisi +51462,Dave Spector +131058,Henry A. Escalante +95236,Forbes Riley +1466150,Ethel Marical +92434,Georgina Hale +83025,Tim Eddis +84209,RonReaco Lee +12981,Kristoffer Cooper +13013,Luke Spill +162169,Alma Martinez +163866,Billy Griffith +140302,Leigh Snowden +64344,Billy Gardell +1280236,Kai Martin +2094,Peter Lorre +89857,Keili Lefkovitz +975597,Franklyn Farnum +1741930,Heather Hall +89845,Iaheto Ah Hi +79425,William D. Turner +115597,Adrianne Richards +1544027,James Fuller +1280233,Laurentiu Possa +41720,Jerry Paris +1397977,Corina Gough +85751,Eero Milonoff +202581,Hans Henrik Voetmann +1752778,Diana Coatsworth +15569,Yvette Cason +54918,Vincent Elbaz +1202546,Rodrick Hersh +741278,Sergei Parshin +73031,John McCurry +93670,Archie Hahn +1695829,Paulo Giardini +213481,Shinichirô Mikami +1124018,Boyan Milushev +161766,Ron Nyman +1531890,Daniel Lago +131014,Hohi Aoki +1664790,Carl Lechner +77117,Angus T. Jones +549342,Jer O'Leary +45404,Elise Muller +9278,Jennifer Garner +131047,Ed Brady +105581,Ari Gold +14975,Porter Hall +94938,Saturnin Fabre +574410,Kevin Cummins +30882,Christine Lakin +92691,Heather Menzies +2772,Ann Doran +1145,Zbigniew Zamachowski +947207,Kirsten Olson +590519,Sam Ash +942749,Ashley Taylor +86923,Caroline Williams +175604,Shanna Moakler +554273,Myriam Muller +87346,Nadja Hüpscher +938748,Jonathan Jacobs +1195240,Nick Copeland +1352759,Éva Szabó +1439591,Ole Abildgaard +36913,Luc Merenda +119132,Laurie Moran +1193680,Adrienne Pocock +954664,María Alfonsa Rosso +1184,Anders W. Berthelsen +79713,Sacha Horler +940121,Rashel Novikoff +13325,Wendy Hiller +8844,Lawrence Kasdan +30510,Alan Ladd +100802,June Collyer +551868,Masayoshi Deguchi +543589,Vincent Craig Dupree +1329738,Jack Herrick +19111,John Anderson +1190992,Nikolay Grinko +14450,Gladys George +21320,Danielle Harris +109102,Josiah Trager +35137,Josiane Balasko +33240,Nancy Ticotin +114850,Tony Vaughn +940412,Fabia Drake +4130,Harvey Parry +1492650,Andrew McCulloch +12021,Mia Farrow +235640,Nina Divíšková +553193,Conchita Puglisi +1470303,Alice Poon +4878,Homer Murray +39552,Mari Blanchard +1422951,Charles Phillips +1575517,Nathalie Gascon +39555,Kipp Hamilton +95311,Robert Homans +215709,Ray Bennett +51494,Williams Belle +1386484,Сергей Шинкаренко +116563,Sandy White +1121128,Benny Lai Keung-Kuen +1752783,Stephen Findlay +143544,Charles Flynn +57773,Tyrin Turner +38425,Amber Valletta +85899,Ben Bard +1652305,Paul Terry +1045604,Esther Muir +1773859,Ian Aronson +61834,Alain Uy +1467401,Emmett O'Brien +1707350,Will Gill Jr. +2125,David Manners +161455,Christopher Brooks +43950,Dena Dietrich +1089180,Neal Young +543656,Sonia Kruger +2839,Brendan Sexton III +1629433,Titikarn Tongprasearth +207915,Brooke Tansley +1674935,Kes Kwansa +82582,Matthew Brent +16909,Raymond Mearns +16275,Norman Bird +6807,Sam Rockwell +143434,Jayvee Mai The Hiep +7453,Takashi Shimura +36811,Nick Cannon +9628,Mike Nussbaum +25966,Jacques Gheusi +17788,Ralph Riach +28472,Adam Garcia +1502543,James Choi +1081820,Ralph Morino +1060194,Douglas Weston +155457,Roberta Bassin +94429,Jackson Walker +231216,Ann Morriss +1417291,James Quinn +1576631,Chitra Neogy +146971,Farida Jalal +28042,Rory Culkin +28277,Luce Garcia-Ville +127536,Alfred Dennis +52909,Masato Harada +1188781,Vera Beren +1733447,Janel King +11856,Daniel Day-Lewis +6105,Richard Lewis +235722,Haruo Nakajima +1542810,Andrea Pickering +76934,Atsushi Ito +1269707,Robert Aberdeen +30565,Hideo Sunazuka +56528,Kay Linaker +70324,Keiju Kobayashi +33035,Ruth Tobey +1386346,Bill Rowell +33820,Franco Fantasia +2053,Bill Paxton +585924,Angelika Niedetzky +1010892,Kim Jae-in +1480848,Józef Para +22131,J.T. Walsh +73043,Maddie Blaustein +3801,Tracey Walter +93089,Tracy Coogan +129065,Vincenzo Crocitti +4000,Elizabeth Berridge +1704733,Paul Black +1547832,Lillian Savin +136487,David Letterman +107323,Nick Nicholson +3934,Burghart Klaußner +4975,Ellen Geer +9251,Marc Shaiman +6610,Walter Gotell +1331757,George Dee +2629,Alun Armstrong +15576,Matthew Macfadyen +76495,Susan Lowe +24880,George Chakiris +1742406,Carlos Pina +45105,Michael Donovan O'Donnell +10673,Andreas Wisniewski +181553,Dylan Boersma +19545,Jack Angel +147486,Bob Uecker +5247,John Fiedler +1366355,Raimundo Camargo Nascimento +10255,Angela Winkler +112861,Tetta Sugimoto +85847,Nydia Westman +43626,Dora Bryan +938160,Douglas Gillison +1128944,Owen King +20563,Alex Veadov +159549,Joe Haworth +5703,Clarice F. Geigerman +225611,Andrew Ellis +82461,Seijun Suzuki +1583,Arthur Taxier +1657357,Clarence Glover +1121642,Chui A-Fai +20283,Dwight Ewell +8634,Jack Webb +1201019,Michio Kida +1748110,Garrett Griffin +161285,Tony Epper +1596096,Renee Montemayor +96634,Lee Han-Wi +43203,Tisa Farrow +1430038,Norwich Duff +1472990,Charles Schaeffer +145711,Rosemary Theby +52905,Mike Leeder +59570,Garland Whitt +30144,Don Barclay +1085539,Harry Van Dyke +1616205,Francis B. Creamer Jr. +32600,John Stamos +73032,Phil Seuling +69303,Andrea Bendewald +239979,Nadja Pionilla +35821,Masood Akhtar +1392600,Samuel Elliott Whisnant +1752776,Shannon Whelan +207506,Gareth Saxe +120702,Georges Renavent +103499,Fred Kelsey +33034,Nell Craig +96442,Michael Carmine +23958,Jeremy Sisto +29817,Lionel Belmore +59759,Michael Halphie +40421,Rikke Louise Andersson +1394359,Nathan Geist +13312,Rae Dawn Chong +5726,Cedric the Entertainer +1124108,William Caploe +34443,Jack Davis +13240,Mark Wahlberg +1514695,Mercedes Herrero +163670,Gordon Joseph Weiss +66745,Emma Caulfield +975214,Ernesto Yáñez +17200,Bill Smitrovich +1178811,Betty Ann Carr +17303,Ali Larter +10744,Götz Otto +1230787,Eddie Dew +643,Gong Li +194571,Don West +106152,Norman Macowan +103121,Antonella Ponziani +18894,Harry Caesar +1013946,Viola Roache +1440891,Joe Lowry +1633863,Claire Toeman +95712,Paloma Faith +1176163,Scott Wilkinson +1773971,Jacquetta May +25256,Victoria Abril +1180788,Danny Chow +42839,Kate O'Toole +61980,Wendie Malick +26999,Chris Owen +36076,Gurêto Gidayû +86929,Jessica Collins +1217974,Hy Anzell +2394,Alan Ruck +8489,Phillip Alford +134294,Atsushi Watanabe +300793,Shingo Katsurayama +1217730,Mike Reynolds +1296380,Gary Anstaett +148006,Charles Bennett +93378,Nathalia Ramos +33671,Patrick Taylor +1616637,Tomasz Kamiński +9633,Richard Hamilton +1088201,Billy 'Sly' Williams +60885,Will Barnett +16377,Jerry Seinfeld +64829,Heather Hach +552507,Chiona Ôkuni +1420383,Michael J. Kaplan +85927,Roz Michaels +1195666,Shlomo Vishinsky +15905,Robyn Lively +95054,Leon Belasco +3019,Olympia Dukakis +1248659,Isaac Stern +86565,Lucina Paquet +938558,Stephen Bishop +6086,Devid Striesow +12519,Virginia Madsen +148391,Carlton Griffin +17420,Paula Newsome +1422627,Bernard Gallagher +51744,Giuliana Calandra +38123,Dragan Nikolić +22931,Zygmunt Malanowicz +52699,Danny Mann +68109,Sheila Kelley +4738,Connor Paolo +1197748,Ahmad Rashad +1507175,Robert Sutton +982,Sting +928729,Peter Hallr +117036,Milton Kibbee +94087,Lee Reyes +1218926,Colin Cunningham +1484155,Barbara Tasker +1253183,Shinji Yamashita +1742409,Seneca Ramirez +1184828,Angela Tommasi Di Lampedusa +551850,Kokoro Awata +1267323,Rick Scully +173194,Robin McKee +118509,Guillaume Marquet +74829,Eric Gurry +79458,Yoshiyuki Morishita +31503,Bert Freed +1038,Jodie Foster +57741,Mark Osborne +30769,James Hayter +116727,Connie Sawyer +562314,Slavitza Jovan +1853219,Billy Smith +1176970,January Sorensen +6161,Jennifer Connelly +57381,Paul Hittscher +123309,Walter High +1188580,Xavier Castano +120633,Mauro Di Francesco +26869,Sharon Bower +72297,Marianne Bruchez +148635,Todd Susman +158079,Richard Branson +40176,Art Carney +59247,Maggie Ma +6611,Peter Swanwick +19278,Bill Hader +31510,Helen Slayton-Hughes +121321,Lulu Mae Bohrman +58368,Robert Hoffman +89942,Edna Mae Harris +11784,Tom Atkins +24203,Rhea Perlman +34613,Philippe de Broca +13028,Nicholas Pryor +22462,Joaquim de Almeida +121365,H.E. West +1744175,Ronnie W. Elliot +15135,Alain Delon +112740,Adam Coleman Howard +1661609,Helen Miles +18323,Marc Lawrence +81097,Shawn Roberts +1069,George DiCenzo +107313,Toni Gillman +17094,Federico Luppi +1557946,Margit Rogall +1609232,Cynthia Langbridge +61136,Blaine Hart +33378,James Pierce +1835,Lisa McKinlay +10565,Dick Cavett +230532,Ryutaro Otomo +60275,Dom Irrera +79086,Kent Shocknek +65404,Christopher Stone +1632523,Dorothée Brière +8522,Zeffie Tilbury +27570,Anna Katarina +30306,Manuel Dondé +20402,Julian McMahon +50998,Basil Sydney +1303226,Sanna Vraa +124777,Wong Chung +106976,Ashley Buccille +1422800,Robert Martini +85170,Ron Canada +1201328,Megan Edwards +90067,Roy D'Arcy +34020,Héctor Colomé +633744,George Walsh +1125223,David Bracks +177753,Ernesto Alonso +25657,Justin Salinger +1690482,Hal Blankenship +1274904,Eitan Kramer +101874,Ace Mask +5646,Justus von Dohnányi +948509,Harry C. Bradley +82972,Takeshi Ôbayashi +1123325,Matteo Fadda +120833,Richard Durden +86766,Donald Fong +1464322,Dana Dempsey +72302,Noah Canete Alves +89525,Warner Anderson +1456536,Johnny Holbrook +1407314,Caroline Girard +105062,Joseph Sirola +16163,Mike H. McGaughy +12718,Noël Coward +121478,Sadie Corre +83130,Tommy Kirk +99468,Victor Potel +16935,Geena Davis +91832,Robert Pentz +1352521,Gelena Ivliyeva +65,Ian Holm +10881,Toby Stephens +37512,Sergio Mendizábal +6587,Diane Ladd +115223,Joseph Ferrante +129668,Darby Hinton +79711,Maggie Dence +124978,Arthur Quehen +15739,Alex Jennings +41734,Brian Davies +58924,Clifton Powell +55536,Melissa McCarthy +188510,Merritt Nelson +4728,Kevin Chapman +33952,Edward Laurie +1657172,Jack Ryan +232893,Elsa Albani +120048,Joe Gray +21213,Kavan Smith +144740,Jacqueline Noëlle +151384,Meredith Scott Lynn +199315,Megan Dorman +214644,Edwin Apps +72028,Arye Gross +999598,Patricia Gozzi +40665,Derek Hutchinson +155976,Michele Maika +42740,Christopher Atkins +16302,Bob Einstein +185786,Janet Alcoriza +93924,Dwayne Alexandre +1231166,Bryan Mosley +34518,Matt Stone +52366,Andrew Bryniarski +21143,Allison Mackie +95868,Tre Cool +65278,Sun Zhou +190772,David Hughes +18646,Thomas Gomez +1742402,Rissa Medlenka +1615230,Ho Wai-Han +4785,Jeff Goldblum +155532,Adam Buxton +69813,Carmen Dragon +11187,Louis de Funès +97939,Reggie Bannister +12139,Lolita Davidovich +65475,Brad Rowe +1095035,Michael Charles Hill +1243306,Marty Farrell +62833,Charles Rahi Chun +1861,Markus Knüfken +1758307,Jon Shear +138148,Andy Clyde +119214,Irina Rakshina +87066,Ike Eisenmann +1337522,Charles Bernard +44079,Charlotte Rampling +1323697,Daan Ekkel +20425,Donald Sumpter +260967,Bill Moor +1046805,Julius Tannen +201587,Peter Frye +579197,Ebba With +9985,Pat Welsh +1673754,Darlene Davis +1405822,Susan Joyce +37675,Rudolf Forster +1276259,Katherine Allentuck +52583,Wagner Moura +1751003,Gong Jinghua +58449,Fumiyo Kohinata +22092,Frankie Avalon +1672661,Amy Oberer +1661624,Fred Mann III +12438,Bob Balaban +25816,Umberto Raho +124435,Thomas Hill +585776,Daniel Farson +29769,David Copping +85109,Robert D'Avanzo +24564,Stéphane Algoud +174657,Richard McMurray +25911,Cecilia Suárez +590550,Walter Walker +19149,Tori Spelling +1075075,Isaiah Malone +1607815,Betsy Douds +11089,Whip Hubley +155465,Clifton Davis +33613,Sheryl Lee Ralph +11086,Michael Ironside +11275,Stephen Fry +1066798,Juliano Mer-Khamis +29349,Robert H. Rimmer +54812,Chevy Chase +9384,Marc Aden +20303,Dion Basco +42160,Ariel Winter +8949,Peter Fonda +1284627,Steve Doughton +22127,Christina Kirk +55980,Elżbieta Czyżewska +60079,Eileen April Boylan +94951,Fréhel +1468087,Tessie Murray +1668463,Olive Gallagher +14698,Penelope Ann Miller +94774,Tisha Sterling +81052,Emmanuel Guez +1359128,Ann Hanslip +41381,Sadie Frost +95743,Robert Rothwell +6023,Christian Benedetti +77521,Christoph Sanders +1106822,Lisa Iverson +100656,Dale Wyatt +42547,Jay Acovone +2887,Tom Waits +1614687,The Marx Brothers +67566,Stephen MacKenna +948587,Keith Britton +1163672,Sarah Tamakuni +980279,Suzanna Love +51464,Roy McCrerey +34747,Sidney Toler +1036441,Duel Farnes +67064,Walter Kelley +156731,Maricela Ochoa +14835,Dick O'Neill +1373773,Frank Gio +22184,Sebastian Rudolph +1537398,Hynek Kubasta +232596,Layke Anderson +19456,Nia Peeples +1331756,Melie Chang +9071,Billie Burke +143395,Marcel Jeannin +81287,Shannon Whirry +68288,Doris Hare +1778956,Bill Rayburn +84878,Antonio Fargas +1661640,Joanne McHugh +1175664,André Cheron +14060,Robert Vaughn +38046,Ullrich Haupt +56080,Javal Davis +137404,Charlie Hall +14707,Alix Koromzay +149080,Johnny Calkins +555196,Katsuki Muramatsu +29445,Ethan Phillips +154698,Caprice Benedetti +1167757,Constance Talmadge +565516,Robert Philip +1386482,Александр Пословский +16262,Han Yeo-reum +44038,Nancy Allen +32393,Paul McCrane +52304,Stephen Furst +87230,Ali Marsh +1184832,Rita Mole +59662,Joanna Going +57121,Rie Rasmussen +44917,Anita Mui +108021,Mitsuko Mito +100245,Walter Long +93749,Michael Lowry +13792,Norman Selby +69984,Sheldon Abend +94914,Luis Alberto García +45195,Ingrid Caven +39998,Tim McIntire +1781337,Rasheed Wallace +93839,Sheila Hancock +120170,Gisela Werbisek +1217771,Mark Ferguson +6368,Embeth Davidtz +35063,Sean Bury +141087,David Yorston +92903,Frank Salsedo +5278,Vera Cunha Rocha +1265415,Otto Reiter +19210,James Van Der Beek +175194,Paul Begala +134855,Winnie Leung +185529,Theresa Lynn +1661592,Tina Paul +1138735,Małgorzata Rożniatowska +39024,Arthur Lowe +26060,Hugh Keays-Byrne +90301,Joan Gerber +34514,Jouko Ahola +1502539,Andrea Carlson +11544,Jean Gabin +551828,Hikaru Yoshikawa +1856169,Bianca Beyga +928480,Ken Osborne +61168,Brenda McDonald +1503715,Libertad Green +62563,Arthur Young +3800,Jerry Hall +9832,Tyler Mane +999860,David Osterhout +137951,Gennie James +50314,Boris Aljinovic +133710,Eimei Esumi +103853,Marc Coppola +216636,John Campbell +194981,Alasdair Gillis +55089,Evan Peters +59782,Jeffrey Garcia +1209724,James M. Myers +8349,Martin Sheen +47783,Claudia Fritzsche +22616,Lois Moran +1198701,Cliff Saum +79130,Gary Henderson +101231,Lillian Adams +1468755,Shep Houghton +21194,Vanja Bajicic +328,Brittany Murphy +82564,Liv Corfixen +111827,Fred Graham +12726,Trevor Howard +6580,Brian Libby +1269196,Ellinor Vanderveer +1231235,Victor Paul +158134,James Martin Jr. +97629,Jun Hamamura +80157,Kim H. Ornitz +29957,Margery Wilson +160328,Lee Bryant +1609676,Joyce Pullin +1270526,Owen Hughes +193866,Patricia Alice Albrecht +3040,Jason Oliver +27944,George Merritt +76513,Fred Koehler +38720,Nina Proll +110001,Phil Collins +553190,Totò Borgese +3142,John Marley +1348438,Karsten Schrøder +11612,Sophia Dirscherl +551838,Kyôko Mayuzumi +131684,Christine Murillo +1593807,Takashi Noguchi +1224660,Estelle Reiner +65716,Josh Daugherty +1840474,Lonnie James +1484406,Maggie Wilkinson +741,River Phoenix +58552,Burr Steers +18863,Eric Darnell +136518,Michiyo Tanaka +18057,Yuko Murata +1399038,Karen Gledhill +141140,Leo Willis +156669,Leeza Vinnichenko +59576,Kim Tlusty +42645,Felicity Dean +16351,Florian Cadiou +92119,Larry Brandenburg +79885,Steven O'Donnell +36911,Roland Lesaffre +14686,Mary Nash +43611,Sabine Karsenti +1490125,Teddy Mangean +1576419,Kenny Endoso +113655,Sandra Gould +22137,Viveca Lindfors +9285,John Roselius +114,Orlando Bloom +1674492,Kae Shimizu +76621,Will Friedle +58593,Kou Shibasaki +19574,Robert Freitag +15252,Mason Gamble +138,Quentin Tarantino +1482640,Toshiko Fukai +55066,Sharat Saxena +26854,Phil Davis +143181,Joe Tucker +35643,Shungiku Uchida +1887359,Angela Pringle +33654,Breckin Meyer +157359,Jane Connell +83851,Alejandro Rey +52482,Kate Skinner +1590835,Brent McIntyre +96141,Dorothy Tree +65683,Alex Vincent +29645,John Dierkes +25248,Yoyo Mung +119243,Bunta Sugawara +1296394,Dolores Starling +1092787,Eugenia Gilbert +98047,Edmund Mortimer +101401,Susi Sánchez +127267,Barbara Lott +53905,Mireille Perrier +30048,John Karlen +1076423,Jore Marjaranta +932198,Reginald James +95638,John Pyper-Ferguson +52306,Robert Rusler +93326,Lally Bowers +149775,Adam Paul +77802,Omarion +51533,Fran Kranz +106223,Joe Franklin +83108,Alex Thomas +1698900,Tanja Kecman +99022,Richard Conant +927779,Big John Studd +32224,Jason Lewis +218480,Melanie Fullerton +100919,Basil Ruysdael +544598,Tom Tyon +206946,Brian Keith Allen +1675163,Louis Schaefer +36184,Stephen Charles Barry +82622,Charlotte Ross +47665,Michael Shepley +1655536,Polly Niles +2501,Tom Dugan +119456,Wan Faat +13755,Alok Chakravarty +1865393,Jay Bernard +119136,Richard Terrill +1187283,Gertrude Simpson +54495,Khleo Thomas +1077734,Chuck Bell +96554,Mary Mara +150825,Patrizia Terreno +96257,Donald Douglas +36908,Walter Sittler +13848,Charlie Chaplin +1234262,Khadijah Haqq +41780,Esmeralda Ruspoli +1000950,Marla Schaffel +1090804,Débora Monteiro +3238,Merian C. Cooper +16460,Marcus Lyle Brown +76871,Delia Casanova +32394,Anne Meara +1642,Jean-Marc Barr +558990,Erika Blumberger +1660014,Nina Carter +1901794,Adrian Fuhrer +102940,Françoise Pascal +8171,Ludacris +138697,Maria Lanau +166896,Lily Nicksay +57553,Lil' Kim +86442,Michael J. Reynolds +1773864,Marcus Edward +2954,Jeffrey Wright +94550,Jim Hutton +187608,Daniel Stewart +1170985,Hope Miles +8554,Peter Benchley +102948,Philippe Gasté +1507173,Vanna Salviati +84480,Larry Blackmon +1677015,Akihiro Nishida +99549,Paola Cozzo +1673752,Heather Thompson +1237750,Corey Gorewicz +14551,Estelle Omens +1265425,Wolfgang Glüxam +11290,Stanislav Yanevski +61165,Andrea Shawcross +1015378,Vili Matula +85075,Holly Lewis +198700,Aidan Pendleton +28777,Yoshiyuki Daichi +125364,Victor Moore +124852,Sue England +287,Brad Pitt +22890,Carlos López Moctezuma +2575,Jean Bell +1676559,Philippe Ribes +236115,Elva Hsiao +203538,Tom Knight +7172,James Brown +667748,Kurt Egelhof +5477,Hichem Rostom +1444763,Riva Di Paola +83051,Eric Michael Cole +1223,Joel Coen +87001,Aleksey Batalov +20340,Hisaya Morishige +1474736,Maurice Podbrey +148350,Janna Herttuainen +1125461,Robert Russell +382,Bob Hoskins +78329,Lorraine Ashbourne +1016315,Qin Hao +102320,Eli Russell Linnetz +1861054,Marina Salli +91343,Hal Hartley +36073,Yusuke Sekiguchi +14017,Mark Eden +1359433,Ed Morgan +78404,Gary Wilmes +81100,Philip Riccio +62564,Madeline Carroll +62498,David Kennedy +1601649,Bob Whitney +21662,Ed Westwick +1802664,Varvara Dvalishvili +48791,Predrag 'Miki' Manojlović +978055,Duke York +1565324,Pia Hansen +932309,Tom London +90553,Alejandro Rose-Garcia +202402,Harry Fielder +1273898,William Arnold +85121,Andy +74262,Derren Nesbitt +1045551,Mel Hampton +45266,Bernhard Marsch +120746,Dick Gordon +1538452,Maggie Rennie +1463981,Wolfgang von Ungern-Sternberg +68890,Tatum O'Neal +23626,Liev Schreiber +1546585,Nancy Barker +8900,Dinah Manoff +1392755,Anthony Ferriso +53122,Fran Drescher +97955,Don Maxwell +946477,Kim Cristo +1015830,Al Weaver +82924,Constantin Alexandrov +240665,Toni Ucci +60227,Greg Cipes +141355,Rose Keegan +1402622,Daniel Dresner +12548,Kenneth White +1221648,Arabella Kiesbauer +58090,Greg Cruttwell +51753,Jolie Jenkins +26100,Melvil Poupaud +32304,Yossi Yadin +544797,Chin Siu Ho +36055,Costas Mandylor +134682,Yôko Umemura +77548,Paul Winchell +61232,Tony Munafo +1091315,Claude Maki +120749,Don Costello +1661650,Jenna Miles +1485087,Jeong Jin +72680,Ron Carey +23120,Teresa Weißbach +20958,Ray Mancini +33516,Tsuyoshi Ihara +581118,Haydée Caillot +9277,John Finn +553103,Shigeharu Matsuda +94349,Russell Dykstra +129267,Marion Edward +84653,James Davidson +1473075,Salvatore Inzerillo +1834038,Diana Shneider +167927,Walter Winchell +1873998,Barry Magnani +15553,Nomhlé Nkyonyeni +17687,Mayra Serbulo +9073,Clara Blandick +99814,Siri Baruc +194493,Darcy Shean +43464,John Patrick Amedori +57329,Phil Harris +1821347,Marie Tsien +4458,Paprika Steen +1781703,Irwin Gray +7242,Temuera Morrison +57015,Sissela Kyle +59690,David Alan Basche +106010,John Bleifer +225883,Carmen Lebbos +140056,Jeffrey Kime +66559,Lilly McDowell +53828,Jennifer Carpenter +1437604,Johanna Brushay +17725,Anya Hoffmann +13968,Grady Sutton +42362,Eddie Deezen +106160,Eiko Miyoshi +111304,Colette Fleury +203263,Sarah Christine Smith +32290,Brenda Bakke +1481105,Kyôko Seki +10460,Richard Kiel +102313,Tamara Mello +1284938,Juan Fernández +70437,Ng Man-Tat +11477,Ray Liotta +1594631,Elizabeth Douglass +553186,Giovanni Litrico +1168002,Dr. Fink +114632,Aileen Fitzpatrick +1896868,Colin McClery +1778261,Jaye K. Danford +116906,John Shum Kin-Fun +1049221,Sugisaku Aoyama +663,William Hootkins +14153,Ann Rye +1661625,Kathy Sanson +42571,Susan Lynch +13308,Akosua Busia +1426038,Ignacio Paurici +41223,Linda Purl +551860,Kiyohide Ohtani +20619,Fahri Yardım +1239447,Garry Robbins +1219,Amy Yasbeck +78902,Frank Albertson +66193,Chris Sanders +1609241,Christian Martson +76284,Gunter Lamoot +9194,Shin Koyamada +975692,Jack Pennick +551621,Damrongwiseeatpanich +100116,Caroline Laurence +1620872,Zhang Zheng-Yong +106116,Gregory Wurster +1219018,Walter Woolf King +33492,Robert Costanzo +17645,Jonathan Whittaker +28008,Philip Levy +977583,Greta Meyer +58604,Nao Omori +81962,Christina Blevins +77898,Brenda James +1004159,Molly Maslin +1227454,Rex Reed +8857,Debbie Reynolds +1500635,Mladen Krstevski +2192,Lambert Wilson +84733,Aziz Beyshenaliev +152507,Robert Bruning +70999,Jennifer Nitsch +42700,George Pilgrim +8944,Jamie Lee Curtis +124037,Greg Felton +5827,Hermione Baddeley +639148,Darryl Brunson +131203,Reiko Dan +31140,Mary Stuart Masterson +1585518,Stubby Kruger +8447,Jeff Daniels +1516661,Andrés Herrera +25336,Bob Zmuda +44161,Richard Paul +30554,Ken Curtis +214979,Pip Mushin +1064924,Margaret Mann +32830,Víctor Israel +1583061,Don Champlin +1576976,Marrett Green +1613833,Stuart Quan +56825,Sarah Carter +47774,Vincent Pastore +1341996,David Ralphe +54883,Michael Buscemi +47058,Lisa Thornhill +543681,Pietro Tordi +982077,Marvin Lichterman +16662,Richard Gant +33747,Joseph Calleia +1191766,Benz Kong +64122,Søren Pilmark +110300,Kin Sugai +33706,Paul Butcher +91448,Bradford Tatum +13097,Zola +1457709,Mick Gould +63584,Francis Ng +8397,Charlie Creed-Miles +65717,Jon Hamm +548024,Masato Yamada +1292673,Eugene Anderson Jr +39784,Yehuda Efroni +124555,Chief Thundercloud +161912,Suzanne Somers +559279,Rita Bennett +1374536,Hilliard Karr +137146,Carl Ng +1278542,Robert 'Bobby Z' Zajonc +20187,Camryn Manheim +98437,Arthur Roberts +10242,Oscar Martinez +93490,Anna Wing +81168,Dick Foran +1728594,Don Pulford +99550,Fiore Argento +155864,Kelsey Mulrooney +22561,Nils-Aslak Valkeapää +125848,Blossom Rock +98451,Morgan Jones +556526,Bill Baird +1677321,Willie Wong +1008884,Ann Lancaster +19546,Michael Bell +71643,Asami Mizukawa +80126,Drum Wolf +215386,Peggy King +86044,William Ash +146488,Jean-Yves Chatelais +170970,Rex Everhart +1278810,Lori Lanegger +7318,Peter Kay +1089510,Johnny Vatos Hernandez +591879,Ahmed Osman +1542805,Felix Pire +52416,Idalis DeLeón +145103,Marco Perrin +79024,Beth Littleford +53201,Edgar Givry +95274,Clancy Cooper +1657360,Phillip S. Wilson +42567,Kika Markham +93216,Pamela Conrad +101277,Ivyann Schwan +589823,Lowell Thomas +27507,Rebecca Gordon +53137,Mohammad Ahmed +156831,Stephanie Dunnam +159753,Anita Morris +1278240,Naiyana Shewanan +125425,Sandro Panseri +37019,Roman Janecka +112049,Jonathan Slavin +1904841,Laurel Lee Kiefer +84229,Mike Mazurki +79720,Philip Spruce +14633,Ben Becker +154745,Kim Delgado +981642,Grace Cunard +94082,Michele B. Chan +13952,Sam Melville +103399,Jean-Paul Coquelin +1517431,Zhao Hongfei +1617533,Cho Youg-jin +557865,Ugo Paletti +938149,King Cotton +70121,Katsuo Nakamura +1041315,Sharon Bruneau +46432,George H. W. Bush +15045,Michael Lembeck +1379978,Robert A. Bennett +26719,Veanne Cox +75260,Haskel Daniel +110733,Arny Freeman +7331,Eleanor Parker +52188,Drew Snyder +129222,Geraldine Baron +552219,Svetlana Jovanovich +158812,Michael Woolson +1009982,Jan Blaaser +71180,Anders T. Andersen +1879500,Kimberly Steuter +129122,Charlie O'Connell +22672,Terrence E. McNally +94434,Matthew Cowles +1575803,Chris Carlberg +1789285,Zhao Yuxiu +226385,Paolo Giovannucci +1833019,Dylan Hubbard +2911,Charles Puffy +17288,Michael Fassbender +37935,Steven Tyler +589521,Pierre Tornade +6542,Isaac Hayes +13360,Inez Palange +1353684,Fatemeh Azrah +29880,Maxim Roy +1426030,Concha Lopez +1092611,Major Tamás +85958,Charles Smith +1847409,Elaine Murphy +20788,Artie Lange +81048,Jean-Baptiste Tabourin +147898,Nicole Dionne +1064081,Sybil Rhoda +73978,Ekkehardt Belle +8731,Ian Hunter +170820,Ben Falcone +591497,Bruno Ziener +113654,Larry Keating +164719,Rebecca Clemons +1090000,Liana Del Balzo +1636055,Rosie Thomson +1516291,Allan Gill +14487,John St. Polis +1432102,John Stewart +27772,John Ritter +19468,Gerry Becker +146551,James McKechnie +1385665,Cece Tsou +19647,Robert Dalban +229254,Ruy Polanah +80524,Leon Schuster +1560862,Haystak +1203320,Gregory Scanlon +17352,Marianne Jean-Baptiste +1448568,Erin Cathryn Strubbe +1600365,Stewart Harvey-Wilson +551851,Hajime Nakaarai +98473,Cassandra Gava +230868,Steven Christopher Parker +1285041,Byron Russell +113604,Marina Tomé +114972,Raphaël Patorni +39799,Louis Hayward +148286,Tomoko Tabata +179150,Ralph Neff +90609,Oz Perkins +39741,Michael Hordern +582126,Geshe Tsultim Gyelsen +1204020,Deirdre Lorenz +60879,Bernard Johnson +6437,Ben Shenkman +228959,Kimberly Cameron +1472882,Jane Fergus +76546,Ricky Schroder +1571036,Anthony J. Ribustello +57395,Natasha Henstridge +1376588,Roger Rathburn +1729761,Woody Eney +126732,Tony Chan +7347,Robert Strauss +10475,Lois Chiles +76182,Nicholas Eadie +51717,Gerald Mohr +105298,George Chuvalo +103968,Leslee Bremmer +55314,Kimberly Elise +61264,Dan Joffre +10450,Michael O'Donoghue +71392,Elyssa Davalos +105367,Chuck Griffiths +431,Victoria Hester +163340,Kathryn Givney +77685,Michael Richard +197182,Joe Kirk +25788,Zoe Sallis +136381,Teruko Nagaoka +174708,Josette Simon +70804,Dan Schneider +34544,Joshua Harto +6554,Guillaume Gallienne +1518112,Philip Philmar +25946,Bonita Friedericy +1331571,Tiny Mills +103231,Virginia Wing +1171862,John Alderson +105364,Russel Savadier +5375,Geoffrey Arend +52831,Karl Leslie +7909,Steve Susskind +215772,Shelby Adamowsky +51751,Susan Walters +25578,Evelyn Guerrero +1330776,Sabrina-Jasmine Guilbault +86329,Ahn Gil-kang +1723834,Benjamin H. Carlin +32395,Debbie Allen +44205,Jeremy Ratchford +104174,Ed Marshall +1027243,Carlyle Moore Jr. +226828,Magî +11390,Peter O'Toole +1879466,Deborah Otto +535270,Raymond Bond +1206242,Betsy Nagel +1128374,Brember Wills +103401,Eddy Rasimi +1609278,Niko Rusakov +1420348,Hans Hopf +6279,Alexis Bledel +129872,Jenny Gago +18165,Aaron Russo +17242,Robert Schwartzman +12716,Leslie Carlson +131514,Zhao Benshan +238749,Bud Shank +17167,Andy Tennant +35769,Christopher Masterson +56082,Tony Diaz +177175,Michael Girardin +623417,Bindu +1310385,Danny Le Boyer +92680,Karen Carlson +10518,Jean C. Havez +45261,Bert Santos +66789,William Harrigan +138814,Valérie Mairesse +124986,Nathalie Kirzin +11484,Suzanne Shepherd +1109538,Tenzin Dhargye +1275914,Ngoc Trung Tran +154716,Elizabeth Gracen +154228,Bari K. Willerford +69773,Richard Dempsey +107400,Diana Berriman +1116942,Dorothy Tapert +1231324,Tom Hatten +160707,Al Eben +213492,Ineko Arima +8437,Teri Garr +25666,Ian Hogg +186070,Peter Cartwright +27084,Nan Yu +1224672,Sten Eirik +1215237,Naomi Radcliffe +7675,Paul Gleason +1196060,O.B. Clarence +1071728,Bobby Dark +10596,Norman Rossington +948411,Ryan Bohls +10164,Paul Valentine +32286,Patrick Kilpatrick +33491,Karla Tamburrelli +1004061,Rosa Rosanova +28010,David Ogden Stiers +1329415,Samantha MacIvor +79725,Joe Weber +2303,Wim Wenders +101782,Warren Vanders +129278,Abbe Holmes +1787560,Larri Thomas +9808,David Arkin +93110,Pia Miranda +1219214,John Lehr +19552,Rolfe Sedan +49422,Anne De Salvo +41960,Bernard Holley +13951,Sidney Armus +18059,Shigemitsu Ogi +83414,Tim Conway +54232,Chuck Robinson +1394311,Dieter Rupp +102062,Catherine Doucet +1773102,Melody Cherpaw +1444542,Lars Phister +991150,Howard Chase +158739,JoAnn Willette +210992,Dirk Zeelenberg +120584,Ramsey Krull +144796,Yôko Fujiyama +63,Milla Jovovich +1476390,Edward Power +1062609,Terrell Carter +160133,Rex Cutter +1422446,Buster Slaven +1468520,James Gonzalez +105596,Alana Stewart +938747,Richard Meatwhistle +21817,Jane March +178068,Paul Sun-Hyung Lee +131485,James Conklin +1366743,Taylor N. Duncan +44083,Olivier Achard +2228,Sean Penn +1212270,Vivian Bang +1619040,Xenia Ferchner +1780618,Jackie Richmond +21596,Shannon Elizabeth +543654,John Hannan +551852,Tomoko Kimura +1320732,Dan Hewitt Owens +1462021,Predrag Zagorac +1018011,Frank Austin +214613,Matty Liu +77462,Kam Heskin +1230262,Adam Briscomb +51662,Ken Lerner +1717645,Darren Harris +52880,Richard Lee Crow +92684,Anthony Geary +64113,Robert Francis +13550,Elias Koteas +1345506,Andrew Ream +7223,Christopher Lawford +58799,Dana Kimmell +4517,Joe Pesci +37014,Lauren German +153738,True Boardman +59283,Dan Byrd +213560,Amira Chemakhi +107476,John Elias Michalakis +214496,Elizabeth Morton +70875,Mirjana Joković +107204,Johnny de Mol +14888,Bruce McGill +59534,Iker Casillas +12931,Rita Wilson +45455,Judy Cornwell +1297965,Stéphanie Aubry +139988,Rita Kvist +1045272,Ferdinand Munier +20330,Yuriko Ishida +1506412,John Northpole +1371,David Wenham +6474,James Le Gros +80135,Rutanya Alda +267962,Emmanuelle Riva +1339141,William Watson +7332,Arnold Stang +51347,Paul Roebling +1031960,Jean-Stéphane Bron +1196982,Howard Jones +223823,Kevin McManus +102267,Richard Rust +54291,Gilles Lellouche +28023,Brian McConnachie +1444509,Linus Ekland +79894,Andy Lane +1334138,Lou Payton +1781722,Erin Deighan +59122,William McInnes +33484,Robert Douglas +117115,Robert Gendreu +52813,Jimmy Cliff +59295,Lee Thompson Young +90477,Yvan Ponton +9221,Donald Pleasence +1229244,Sean Blowers +544708,Lena B. Eriksson +34037,Anna-Maria Gherardi +1118628,Nguyen Anh Hoa +108688,Francisco Reiguera +1687942,Lucille Saint-Peter +83913,Joseph Mell +1124634,Tom Runyon +95641,Roman Varshavsky +1185636,Miki Yashiro +1507168,Rita Turner +543724,Lev Borisov +37046,Dania Ramirez +20772,Laurent Grévill +12879,Vince Deadrick Jr. +77165,Virginia McKenna +41729,K Callan +95047,Graham McTavish +17373,Jürgen Vogel +1752771,Faye Rauw +37260,Abbie Cornish +1086460,Stacey Martino +33517,Ryo Kase +90765,Eric Allan +1580386,Isabelle Dwan +16645,R. J. Adams +212824,Stacy Keibler +1456497,David Pressman +90453,Nikita Hopkins +4690,Christopher Walken +76990,Deborah Wittenberg +115172,Júlia Lemmertz +1591622,Chan Chue +88830,David Lovering +1314583,Johnny Zander +170468,Ted Nugent +1404613,Khetanya Henderson +4941,Alessandro Nivola +1055340,Dixie Lee +1510525,Gene Wesson +3039,Bradley Gregg +90517,Jeffrey Lynn +1781191,Jorge Santos +12790,Charlie Hofheimer +63142,Solomon Fietse +76993,Robert Benirschke +8167,Paul Walker +2698,Norman Lloyd +617651,Carlos Tristancho +9312,Greg Travis +73472,Jean Wang +1609267,Aldo Paro +95598,Lonny Chapman +1780603,Geraldine Ward +26678,Bruce Winant +1220662,Lulu +1601650,Albert Cavens +45002,Angel Tompkins +1350874,George J. Finn +62065,Bree Turner +21183,Nicolas Winding Refn +126564,Hugh Webster +29283,Richard Haydn +1615012,Yeung Kin +1211573,Conrad Binyon +94929,Percy Kilbride +1723687,Ania Yarasech +939104,Marisa Volonnino +79505,Joseph Morgan +193063,Ben Ryan Ganger +29719,Edward Andrews +6383,Aaron Eckhart +963429,Iris Apatow +8233,Charles McGraw +1331753,Frank Arnold +45473,Ian McCulloch +20369,Spring Byington +6648,Ingmar Bergman +135056,James Watson +940,John Shrapnel +58522,Kellie Overbey +52465,Harry Gold +56117,Martin Kove +1626529,Richard Scobie +1894157,Bob Kern +3291,Hugh Grant +1635104,Kathryn Toolan +26142,Millie Perkins +7470,Meat Loaf +537336,Linda Griffiths +93163,Niall MacGinnis +52457,Eileen Pedde +218520,Ryan Sexton +1484286,Noboru Shimizu +148787,Theodore Roberts +76612,Trond Høvik +1121299,Joseph Brooks +44347,Rolf Henniger +112300,Tom Hodges +27493,Jay Underwood +112731,Kenny Morrison +192097,Lucinda Crosby +1444480,Salar Janabzadeh +1215734,Paula Hamilton +11828,Adrian Hough +76494,Liz Renay +3391,Kathleen Turner +7486,Michael Wincott +551510,Glori Gold +84247,Emily VanCamp +52825,Prince Buster +91489,June Jago +68763,Dean Winters +52590,Paul Mantee +96993,Michael Mellinger +21595,Alyson Hannigan +68286,Nicola Reynolds +58043,Michael Stadvec +1484347,Asei Kobayashi +160969,Lou Frizzell +22560,Nils Utsi +240450,George Moss +10680,Talisa Soto +1392592,Trenton McClain Boyd +161318,Al Nalbandian +84640,Joe King +27782,Yutaka Matsushige +158986,Susan Blanchard +70689,Mallika Sherawat +1606903,Habib Chetoui +60919,Nicole Mancera +119655,Chiang Sheng +199,Julie Kavner +551611,Si Won Ho +1348582,Hal Courtney +13936,Frankie Faison +71248,James Laurenson +119475,Joe Seely +1741954,D.S. Moss +39143,Guy Grosso +21702,Ming-Na Wen +32480,Donald Craig +4513,Elizabeth McGovern +1590537,Amy Lemons +590403,Oskar Höcker +127816,Licinia Lentini +61944,Alin Rosca +20393,Richard Todd +120215,Jack Carr +25877,Roger Cross +1077740,Judson McCune +1466139,Betty Jaynes +40203,Russell Collins +1244681,Mel Allen +120602,Robert Daniels +1781219,Nobuo Inubushi +73836,Laura Regan +538924,Carmelita Geraghty +181247,Tyrone Benskin +89735,Doodles Weaver +1210463,Russ Badger +33938,Jan Vlasák +1741969,Stephen Belyeu +16501,Milo Ventimiglia +154178,Amzie Strickland +1661583,Ami Almendral +170880,Jennifer Hall +1468722,The Singer Midgets +37246,Axel Stein +1226707,John Judd +29586,Edgard Varèse +116587,Mirella Pascual +1671167,Loulette Sablon +2433,Miriam Hopkins +1446427,Nina Luna +68681,Paul Koslo +575906,Geno Lechner +203097,Bradford Anderson +1469196,Nico Huisman +165275,Shireen Crutchfield +555384,Tang Tsung Sheng +1814425,Alain Hocquenghem +126017,Rusty Wescoatt +1738561,Rosamund Nelson +135049,Stephen King +84230,Ian Keith +40202,Robert Preston +43265,Corey Sevier +31004,Tone Loc +8242,Christopher Olsen +201013,Andrew Livingston +697,Michael Gwisdek +1773689,Kimberly Lyon +4039,Trey Wilson +19218,Joseph Granby +58899,Carly Schroeder +1089447,Jerome Patillo +172695,Lise Hilboldt +9205,Denise Richards +71886,Natalie Canerday +1140109,Joey Klein +29347,Robert Ellis +1484349,Mie Suzuki +1202981,Eidan Hanzei +4069,Katy Jurado +110976,Milena Dravić +3910,Frances McDormand +1577210,Pearl Elmore +265723,Pepper Martin +26089,Garry Chalk +119864,Judith Malina +47394,Nicholas Parsons +129840,Anna Maria Everett +138570,Vincent Sardi Jr. +58045,Molly Hagan +11076,David Hyde Pierce +579272,Pierre Chollet +1823369,René Loyon +15082,Jeppe Kaas +1018643,Marlen Hecht +592941,Wallace Scott +58384,Anthony Waller +13483,Gaye Brown +79240,Tavia Schwartz +66791,Anastasia Hille +180355,Matt Moore +62248,Devyn Burant +1681435,George Harris II +58429,Karen Ford +52824,Elijah Chambers +94435,Stuart Rudin +72202,Shidou Nakamura +2957,Alexander Siddig +115854,Matthew Sharp +1218998,John Altman +119081,Keefe Brasselle +87427,Sebastien Hebrant +1651542,Deborah Jenssen +1401954,Jean-Pierre Leclerc +85897,Hobart Cavanaugh +103619,Fuzzy Knight +1755638,Wendy Bartel +77596,Jeff Sanders +86007,Jim Ward +553750,Noble Craig +1424766,Madeleine Taylor Holmes +1418031,Christopher Doyle +129549,Rags Ragland +128665,Yumi Shirakawa +1059871,Kelly Varis +25878,Shawn Doyle +134766,Mabutho 'Kid' Sithole +63765,Robert Skjærstad +85693,Malaika Arora Khan +122116,Gwen Banta +142918,Gilles Margaritis +53926,Jon Heder +1850007,Roy Tanner +8975,Sam Waterston +1386352,John Matta +14101,John Larroquette +1426205,Alex Sheafe +119868,Douglas Brian Martin +106237,Ari M. Roussimoff +6769,Joseph Mascolo +1265401,Lloyd Moss +1339157,Robert Kennedy +1038482,Claudina Fazzini +559142,Troels Malling Thaarup +56882,Ernst-Hugo Järegård +9091,J. Farrell MacDonald +52271,Brianna Brown +12206,Richard Roxburgh +14889,Connor Price +64198,Thom Mathews +17686,Espiridion Acosta Cache +994110,Ramon Sison +554566,Narumi Kayashima +1446943,Brian Munn +1466158,Johnny Eckert +555379,Pang Chang Yu +77133,Christine Lahti +1252837,Keegan Joyce +61635,Linda Cropper +1020221,Joel Hoffman +17683,Amilcar Ramírez +180933,Domenico Fiore +1752728,Christine Moore +30560,Patrick Wayne +1757141,Carmelo Silva +79429,David Blazina +35776,Rani Mukerji +1333852,Randee Lynne Jensen +1830870,Eddy Kariti +6865,Sheila Allen +1429298,Judy King +1086949,Claudio Ruffini +225288,Hans Sternberg +90443,Lance Guecia +1211812,Charles Barkley +31137,Brian J. White +106469,Ted Clark +3739,Kurti +36925,Mathieu Carrière +1187704,June Elvidge +554010,Betty Ramey +25026,Cristina Marcos +60798,Nicholas A. Puccio +1472515,Henriette Kay +1381716,Kellyann Kelso +1660632,Angelo Bertolini +191751,Dermot Keaney +82508,Kiyoshi Kobayashi +76298,Sebastien Dewaele +1484299,Yasushi Doshida +1867444,Teresita González +43259,Kyra Harper +1510760,Thomas Mathys +11038,Emma Samuelsson +1088975,Tudorel Filimon +100076,Glen Vernon +52402,Maria Pia Calzone +1482612,Isabelle Sheridan +1228995,Ellie Haddington +2646,Edward Platt +3798,Pat Hingle +166518,Dan Petronijevic +52848,Isla Fisher +114918,Kurumi Mamiya +95012,Joe De Santis +1077827,John H. H. Ford +94803,Tony Martin +1555142,Ray Dittrich +81182,Morris Ankrum +19,Allison Janney +1317063,Jimmy Lono +158423,Michael Tayles +1330745,Loucas Minchillo +109611,Olive Borden +1681406,Alan Cullen +40192,Marc Connelly +1220190,Gary Numan +1011424,J. Stephen Coyle +130564,Courtney Wu +1748108,Valerie Perri +1387513,Arthur Christiansen +32894,Lew Gallo +1851415,Vernon Demetrius +77335,Ben Mendelsohn +82704,John Dunsworth +551476,Derek Gilroy +96914,Anna Aries +121220,Marilyn Knowlden +1879749,Tricia Munford +1769,Sofia Coppola +551841,Minoru Hirano +560302,Candice Kingrey +28046,Marion McCorry +93166,Peter Elliott +1681247,Tose Fukuda +1903,Alan Arkin +154838,Brian Leckner +59240,Michelle Harrison +236076,Kenny Wong Tak-Ban +116046,Michael MacRae +10024,Sam Jaffe +1077729,Braden MacDonald +238805,Yukika Sakuratani +29909,Nigel Green +20901,David Drew Gallagher +68394,Doug Dearth +1664158,Matthew Gonder +85348,Anthony Forwood +64860,Jack Davies +1894179,H. P. Evetts +82436,Francesca Buller +1905152,Emily Massey +34162,Richard Cramer +103051,Ted North +75846,Lennox Lewis +131561,Wallace Merck +128126,Justin Humphrey +12261,Jason Patric +938977,David Peel +1780602,Christine Abbott +1869985,Edward Rowan +1674978,Debbie-Anne Champagne +2719,Brian Thompson +938744,Jovita Bush +1467402,Joe Polosci +7644,Rosa Rey +1841261,Linda Libby +101526,Jeremy Longhurst +1444508,Aino Junka +9084,Herman Bing +1200402,Shizuko Azuma +558312,Murray Westgate +1356549,Theresa Maduemezia +91197,Hanna Landy +57331,Bruce Reitherman +117046,Frank Marlowe +107793,Adam Johnson +86618,Marc Messier +1156168,Jack Devnarain +6355,Roy Scheider +84385,Robert Byrd +214427,Daniel Hilfer +124551,Edmund Glover +30001,Ruby Keeler +1804391,T. Wendy McMillan +19136,Sal Viscuso +1236861,Merrill Markoe +52849,Louis C.K. +118462,Bill Dow +11769,Ted Raimi +225232,Gregor Seberg +122058,Faye Michael Nuell +112705,Syd Brisbane +79958,Benny Young +12430,Lucille Benson +65017,Natalija Nogulich +1349317,Elsa Montero +1665241,Laura Smith +175910,Simon Cadell +1209721,Steve Janousek +552187,Gen Shimizu +75793,Robert Thomas Reed +1184831,Giovanni Danesi +32019,Joachim Hansen +177692,Libby Langdon +20624,Mary Wickes +1423899,Dominic Shaun +169396,Cameron Arnett +555211,Hirofumi Hamada +1385605,Michèle Montfort +67370,Frankie Darro +21607,Roger Delgado +1297728,Leon Head +1262852,Larry Rio +8544,Eric Braeden +1800185,Paul Zimmerman +72542,Guich Koock +81901,Sabrina García +50763,Víctor Manuel Mendoza +552175,Minoru Itô +153437,Belle Mitchell +1507169,Dorothy Streisin +78598,Dave Power +59651,Simon Brand +19508,Nolan North +169511,Kirsten Alter +171827,Joshua Gomez +24563,Philippe Magnan +8345,Derek Ritschel +1256822,Michio Satô +236418,Vic Moeremans +566324,Rita Webb +190776,Bob Morgan +1019293,Al Haskell +1622591,Sara Swain +1425531,Bobby Z +122828,Keiko Kishi +4139,Tom Skerritt +583567,Pratapan Nagaratnam +129661,Bob Clendenin +553100,Kinpei Azusa +42387,Christopher-Robin Street +436781,Dorothy Davis +35762,Shoma Anand +2059,Adam Baldwin +1482389,Andreas Krämer +40376,Lymari Nadal +1328108,Geo Dobre +6613,Minnie Driver +1064359,Franz Dobrowsky +1265418,Constanze Schweiger +1901431,Joe Schmidt +52118,Oren Williams +43152,David Wilson +118757,Chuck Pfeiffer +11617,Mischa Barton +13725,Meredith Baxter +1434985,Junior Fann +1732230,Martin Tilleman +144016,Howard Truesdale +163951,Margot Steinberg +1793,Ricardo Montalban +5504,Michael Nicolosi +1509,Roscoe Ates +1084045,Guy Sanville +113393,Ngoc Dung Le +1790429,Don Creque +1584544,Philip Ettington +223774,Andreas Patton +1438919,Neil Stewart +201499,Elizabeth Bradley +60034,Laura Benanti +148385,Risto Salmi +204196,Jesus Mayorga +62128,Maestro +111177,Mary Makhatho +1194961,Lenny Baker +10341,Britt Ekland +41644,Assi Dayan +24979,Txema Blasco +1547026,Wendy Girard +1789941,Gary Mattis +33547,Anthony Steel +203907,Stephen Burrows +106743,Eric Brown +1752745,Nick Settimi +134450,Billy Aaron Brown +576408,Bruce Leung Siu-Lung +64676,Peter Hall +19592,Tatsuya Gashûin +92280,Kevin Scannell +162747,Kathryn Greenwood +14406,Lisa Kudrow +107401,Diego Matamoros +265594,John Dilson +1220370,Ian Bartholomew +1537394,Galina Kopaneva +27136,Katharine Isabelle +168913,Rafael J. Noble +33017,Allan Graf +54229,Charles Crossin +5832,Reginald Owen +228953,Patrick Been +1886583,John Bracci +106122,Marie Stelin +19279,Lance Armstrong +110884,Michael-Leon Wooley +91440,Larry Attre +5004,Omar Sharif +79879,Jason Thorpe +2964,Nicky Henson +551867,Naoko Tanimoto +24271,Ken Campbell +1388506,Marcell Rosenblatt +58136,Christine Cavanaugh +66838,Florence Thomassin +1031280,Virginia Lee Corbin +97267,Susan Willis +1535186,Kumiko Ishizuka +30673,Katy Wild +1630464,Angel Sing +1752330,Kelly Fletcher +1295297,Glen Garner +82899,Isao Takeno +8663,Jon Stafford +1930,Truman Capote +166529,Philip Craig +516,Annette Bening +63436,Jun Ji-hyun +55557,Michael DeLuise +128000,Barbara Ruick +156602,Blair Williamson +91663,Gerald Sim +17783,Malachy Bourke +1422117,George Noisom +169681,Lana Kinnear +170975,Ray Gill +18249,Cicely Tyson +164382,Albert Jones +25249,Waise Lee +27913,June Tripp +1657358,Charles Dodrill +347770,Tom Hennesy +1661648,Chrissy Faith +1276748,Chick Hannan +1179344,Joe Berryman +1579469,Michael Oosterom +29478,Rachel Blakely +97944,J. Kenneth Campbell +2264,Patrick Magee +145074,Joëlle Bernard +116367,Rudolph Valentino +17396,Timothy Carhart +111852,Johnnie Ray +1456544,Steven M. Simma +1409656,Julian Nest +173136,Tracy Smith +6400,Tom DiCillo +1375144,Lena Banks +17494,Dennis Dugan +1593809,Sven Toorvald +96137,Howland Chamberlain +1277941,Rocky Lai +1031424,Gus Glassmire +4581,Steve Coogan +235176,Stefanie Stappenbeck +147,Michael Madsen +1173466,Eddie Buzard +93133,Christopher Scott Cherot +1397903,Sean Christensen +96421,Kathleen Harrison +133,Peter Sarsgaard +1043211,Vojislav Brajović +14242,Jean Servais +1677020,Yuki Sakai +5921,Martin Roach +133814,Will Denton +81391,J. D. Pardo +100260,Mike Moroff +1224673,Paul Wu +157054,Liane Curtis +225707,Zvezda Angelovska +1045763,Harry Wilson +1467406,D.H. Turner +1609234,Michael Lushing +10690,Anna Paquin +1468812,Morgan Brown +15439,Gary Farmer +64915,Janet Kidder +58448,Penelope Spheeris +86820,Shirley Yamaguchi +44054,Roger Aaron Brown +2202,Steve Harris +232331,Susanne Bredehöft +79432,H.G. Green +96660,Chu Kwi-Jung +1733431,Kim Krah +1116140,Arlene Tai +22821,David Zayas +103398,Raymond Meunier +176340,Charles Martinet +1468536,Marilyn Kinsley +58332,Kevin Thoms +1349137,William Dyer +12538,Nick Searcy +130187,Jinx Falkenburg +30720,Suzanne Flon +1644867,Mario Pezzin +32729,Mona Malm +75270,Terry Serio +94928,Alice Faye +1544028,Ida Forsyne +1461320,Loukas Papas +120674,Gary Sauer +53592,Jimmy Murray +67520,William S. Taylor +31493,Alex Cox +131481,Frederick Welch +19567,Terry Leonard +122108,Layne Britton +1585297,Daxing Zhang +1674904,Amy Whitmore +1215144,Victor Webster +44796,Franklyn Ajaye +56933,Donna Dixon +1029310,Reiko Kasahara +1077530,Oscar Ferrigno +72288,Pierre Chatagny +119570,Vakentina Malyavina +171701,Victor Verhaeghe +155907,James Dalesandro +1799814,Stephanie Le Blanc +85666,Konkona Sen Sharma +121417,Max Phipps +1486718,Mae Bruce +23124,Horst Lebinsky +1380163,Tokala Clifford +1037926,Maria Grazia Caroli +1826581,Eric Dearborn +1594637,Ficchi +536499,Beverly Randolph +3463,Roy Kinnear +22767,Alfonso Aráu +67893,Larry B. Scott +1838951,Adjoua Barry +993689,Erin Fogel +29051,L. Scott Caldwell +146754,Peter Westley +1393334,Vincent Lawson +37507,Teresa Rabal +14468,Brian Glover +18998,Rosemary Harris +51678,Mary Murphy +3008,Alan Rosenberg +1853171,Hillary Matthews +3524,Marcel Berbert +118130,Arlen Dean Snyder +1392749,Budd Mishkin +115855,Rhona Shekter +1800183,Eric Reid Schroeder +40431,Catherine Bach +2929,Una O'Connor +110696,Bahare Seddiqi +120772,Stepin Fetchit +981554,Shakira Caine +1074679,Milan Bahúl +8396,Tom Lister Jr. +93720,Giovanna Bozzolo +1853220,Jim Blake +64351,Eloy Casados +119300,Aurora Miranda +229632,Amanda Duff +80128,Kwancharu Shitichai +4429,Jim Jarmusch +28611,Béatrice Romand +39251,Dominique Horwitz +584484,Karyn Balm +225968,Kent King +1017631,Eddie Shubert +9601,Kenneth Mars +33395,Dearbhla Molloy +940179,Dorothy Ford +285269,Angelo Tsarouchas +590862,Nazem Issa +19632,Georges Géret +87714,Lionel Mark Smith +62745,Beverley Dunn +1665711,Catherine Satterwhite +1206587,Edwin Mordant +78088,Fred Pearlman +975598,Blackie Whiteford +35595,Scott Foley +1776534,Jonathan Ritter +172073,Victoria Haas +8591,Ted Grossman +1717650,Bill Orsi +94998,Tim Choate +69415,Ernie Sabella +1348583,Matthew Helms +23302,Carole Karemera +236435,Jorge Temponi +37147,Gabrielle Fontan +537951,Spencer Lam +1888072,Darlene Levin +53257,Emilio Rivera +15591,Mariana Cordero +66155,Hiroshi Abe +133836,Jean-Claude Bourbault +76989,Christopher Reed +77176,Fred Stone +1194876,Nils Whiten +76340,Giselda Volodi +39959,Vlad Ivanov +1073866,Mercedes Hall +72415,Yoshiko Shinohara +572135,Howard Lee +18687,William McNamara +1075076,Betsy Toll +46691,Teruyuki Kagawa +1781225,Thelma O'Leary +23882,Amy Madigan +1448987,Jeremy Shipp +122008,Maurice Marsac +1811953,Anton Evangelista +115786,Eric Edwards +45275,Erik Goertz +1677318,Jimmy Jue +18688,Harry Connick Jr. +1331765,Lou Marcelle +144270,Isabel García Lorca +85848,Loretta Young +1636954,Ana Isabelle +68209,Michael Oliver +18219,Sabine Haudepin +22109,Peter Firth +107038,Eric Nobbs +1811958,Carl S. Redding +85730,Sunil Shetty +116072,Jesús Castejón +1016646,George Guhl +1469587,Hans Moebus +120461,John Power +1089116,Sabrina Lu +161673,Sean Morgan +121786,Ryō +77089,Ken Marino +110068,Ryan Dunn +36746,Matthias Freihof +91535,Bunty Bailey +1469193,Laura Dozzelne +1546224,Yan Xi +1209715,Jeffrey Ashkin +180468,Robert DeLapp +36283,Juan José Otegui +1577096,Fred Burrell +590711,Julius E. Herrmann +64873,Peter Carey +141606,Victor Zimmerman +91433,Bobby Seale +34039,Ellen Schwiers +225840,Johannes Joner +156774,Viveka Davis +41686,Neil Patrick Harris +159056,Alan Toy +933618,Silvia Kutika +35690,Shawn Wayans +116976,Simon Sherlock +33836,Sean O'Bryan +1616648,Anna Dejczer +31114,Lilia Skala +1748111,Harve Cook +89729,Joseph Crehan +82099,Asi Cohen +1478364,Saburô Iketani +551513,Christopher Utesch +17031,Valérie Bonnier +231927,Kristina Adolphson +556716,Kiyoko Imori +1377842,Ian Talbot +83787,Donna Butterworth +67346,John Adames +60874,Dane Rhodes +77801,Marques Houston +61351,Paul Livingston +29466,Russell Yuen +131067,Alf Kjellin +1023,Niels Olsen +1550942,Jack Ellis +1628053,Adina Cristescu +1876863,Pat Cavanaugh +234685,Mia Frye +1776,Francis Ford Coppola +11831,Mary Black +4317,Jake Abraham +34728,Bruce Gordon +582058,Joséphine Van Wambeke +11059,Lyle Lovett +166961,Sue Casey +1444489,Allan Grandal +201747,Richard Wong +1420567,Ludwig Lowry +26660,Richard Kiley +208060,Deborah Martinez +196843,Jill Jane Clements +59369,Susan Tyrrell +50835,Marcel Hillaire +36216,Cynthia Watros +116509,Bertil Norström +132701,David Thursby +6403,Sara Driver +1352525,Victor Gurianov +162313,Glenn Scarpelli +1357559,Frank Liu +403150,Sten Ardenstam +541733,Deezer D +29960,Seena Owen +994475,Eva Moore +51683,Jake McLaughlin +76331,Suzanne Reuter +12288,Robert Evans +649,Vernon Dobtcheff +562908,Joe Cunningham +10654,Graham Crowden +1502542,Chris Carnel +1321350,Ljubisa Gruicic +228629,Theeranit Damrongwinijchai +38529,Yves Jacques +113660,Mary Kohnert +9316,Jeordie White +8517,Charley Grapewin +1802667,Varvara Dvalishvili +1232929,Tudi Wiggins +95979,Louise Stratten +112150,Michael Cavalieri +213519,Takeshi Sakamoto +1206057,Tommy Crebbs +84707,Michael Fairman +44509,Christian Barbier +1324905,Jurij Schrader +52394,Lauren Lee Smith +120462,Pat Somerset +10722,Graham Chapman +1867441,Valeria Mendieta +136382,Yatsuko Tan'ami +141477,Joe Mullaney +1467396,Dick Dennis +90298,Lennie Weinrib +14529,Brad Dexter +27597,Werner Bruhns +1150519,At Botha +1403596,Xia Bin +59296,Daniella Alonso +1148662,Pochi Ducasse +58535,Paul Herman +1048008,Gregor Törzs +111176,Alex Michaeletos +1457452,Imelda O'Reilly +16476,Larry Drake +1257643,Jang Min-ho +79873,Graham Lawson +552680,Eken Mine +231012,Chin Wing-Wai +30159,Blanche Friderici +2620,Harriet Lenabe +92843,Darin Heames +15276,Angela Featherstone +39163,Andrea Bosic +190888,Sherry Hilliard +934,Russell Crowe +168750,Jake Epstein +1213390,Jerad Anderson +1112043,Antony Del Rio +61426,Sean Elmore +1531759,Frank Hill +4002,Roy Dotrice +1027740,Paco Tous +119866,Jimmy Workman +1426135,Vince Poletto +6067,Jay O. Sanders +193031,Jan Heininger +97996,Walter James +54198,Morgan Kelly +1399074,Peter Graham +109646,Yoon Ji-hye +11670,Olivia Rosewood +3036,John Cusack +1041366,Geretta Geretta +1072105,Narges Rashidi +1665704,Chris Bogard +147499,Shaun Weiss +1513492,Emile Villion +36079,Fumie Hosokawa +57597,Ron Dean +64091,Bruno Lawrence +34981,"Efrem Zimbalist, Jr." +1217476,Jim Calvert +18797,Connor Fox +1369082,Darla Fay +25465,Miyoko Akaza +19262,Alyson Reed +1278808,Teddy Driver +80371,Steven Elder +91451,Basia McCoy +19303,Kevin Smith +578714,Laura Mayne +224662,Fumio Watanabe +552472,Huey Redwine +187133,Jenny Lovell +181028,Chris Gillett +34375,Haruo Tanaka +554625,Wu Ngan +1393355,Adam Large +56472,Sophie Main +16217,Lynn Whitfield +1356550,Fiona Nelson +37205,David Vadim +72170,Samuel Berkowitz +119113,Jacqueline Brookes +11046,Olle Sarri +1586423,Luke Hardy +60507,Al Shearer +125723,Chieko Nakakita +18313,Michael Rispoli +1055297,Dannie Mac Grant +1087342,Scott Charles Bigelow +70172,Valerie Curtin +9641,Jake Thomas +327203,Henri Chemin +29540,Simon Ward +11843,John Stride +210966,Andrea Domburg +1879797,Lou Profeta +1224522,Henriette Mantel +58913,Beans El-Balawi +237324,Kotaro Shiga +935291,Arkanae Cherkam +1119770,Brian Neville +1041313,Edward Clayton-Jones +91441,Frederikke Borge +32656,Gary Lee Davis +1089393,Brian Poteat +1139750,Tobin Wheeler +26870,Tavana +55434,Leonid Citer +29784,Leigh Enns +27659,Tim Woodward +103648,Lu Yi-Ching +137072,Radoslav Brzobohatý +26201,Emil Marwa +944066,Antonio Ugo +58000,Sasha Jenson +52464,Doug Cox +1359743,Elsa Peterson +581063,Carina Barone +1624551,Bud Cokes +18272,Gabriel Casseus +53388,Nevan Finegan +1286659,Jessica Moreno +174882,Estelle Reiner +216444,Michael Rogers +74877,Frederick Burton +124984,Yasmine Modestine +1347476,Andrzej Mellin +34333,Arthur Loft +14797,Judith Roberts +88161,Debbi Morgan +5376,Jean Smart +2926,Elsa Lanchester +1033448,June Filmer +4496,Nora Dunn +1447340,Ian Burns +119461,Yuen Bun +95900,David Wissak +145828,Gene Morgan +30111,Bud Abbott +237501,Zhanna Prokhorenko +58917,Polly Frame +1661619,Jo Telford +954122,Dina Platias +33487,Patricia Wettig +57676,Katie Sagona +91030,Michael Mantell +1781715,Bob Colletti +10208,Al Matthews +99040,Beverly Bonner +377743,Nadem Rachati +1003453,Spencer Pickren +56084,Lynndie England +1444546,Yuesong Fan +23496,Amelia Warner +7074,Peter Brocco +95622,Deanna Durbin +39618,Nicola Di Pinto +1183536,Connie Nelson +239945,David W. Ross +229679,Cut Chemist +585008,Cathleen Bradley +1360460,Sebie Hendricks +82771,Malcolm Gets +60136,Gary Beach +58271,Neil Fanning +1651683,Tim Horrocks +2923,Colin Clive +10800,Harpo Marx +94511,Taj Mahal +121116,Rita La Roy +1838954,Abdoulayé Diop Yama +117006,Leo Cleary +58764,Tomi Cristin +106585,Dick Scott +72723,Anne Judson-Yager +15139,Giuliano Gemma +149995,Michael Santoro +2230,Pam Grier +19553,Richard Carle +1240252,Edgar Dearing +75782,Robbie Bulloch +278332,Yane Barry +122471,Ayami Kakiuchi +41342,Iris Peynado +24975,Carmelo Gómez +955784,Lung Tin-sang +111174,Ben Chapman +145174,Jonathan Daly +1059460,Alexander Cross +1575511,Louis-Philippe Dury +30003,Ginger Rogers +133586,Minnie Gentry +96382,Zuzana Šulajová +1837916,Jack Swanson +939834,Carmen Laroux +1301139,Shaghayegh Farahani +559493,Jasna Žalica +1524853,David McGowan +61011,Clarke Peters +1792987,Gemma Paternoster +1651012,Gillian Grueber +1371118,Chou Heng-Yin +9224,Marshall Efron +75792,Dominic Walker +5293,Willem Dafoe +1346927,Chan Siu-Wah +123208,Fran Fullenwider +186816,Marion Ramsey +34982,Jeff Bennett +98373,Tiffany Clark +1752779,Keri Tkacz +9138,Gemma Jones +1741967,Erik Anderson +28511,Luis Zahera +77,Rudolf Klein-Rogge +191752,Georgie Glen +2016,Slim Summerville +142757,Yusef Bulos +131380,Gérard Hernandez +67784,Ross Bickell +167543,Brian Drillinger +5185,Jean Martinelli +27637,Clara Bellar +1168491,Yôko Hoshi +40179,Jackie Russell +1079978,Verity-Jane Dearsley +133070,Corena Chase +132739,Jordan Chan +79126,Diana Glenn +4288,Sacha Bourdo +26469,Holly Marie Combs +239948,Jesus Castanos +80163,Anita Keal +61969,Phil Proctor +567219,Dorothy Lovett +8767,Jim Caviezel +69827,Tuan Chun-hao +1444476,Slavisa Knezevic +1275931,Ba Hang Phan +1842,Andrew Townsley +79742,John Hancock +78961,Gina Riley +2405,Audrey Tautou +1892,Matt Damon +1393339,Michael Justus +2169,Michael Jeter +258011,Gunnar Hellström +61010,LaTanya Richardson +1015081,Harry Welchman +589000,Jack Buchanan +138494,Karen Tong +1491525,Julie Wildman +108462,Mo Sesay +196767,Sal Jenco +1157004,Frederick Sullivan +1175146,Claude Brécourt +1723448,Michel Marti +1179087,Jordan Jacobson +32891,Céline Bonnier +1551150,Shandra Beri +135170,Rita Karin +1169,Pepe Serna +120309,William Haade +9960,Jean Négroni +7321,John Thomson +47171,Robert Forster-Larrinaga +1230891,Jim Frangione +106142,Larry Laverty +1073208,Samantha Carpel +6862,Freddy Rodríguez +107399,Stephen Russell +83468,Buddy Baer +5973,Patricia Rae +72888,Frank Braña +80435,Erik Weiner +61364,Ashley Walters +6681,Sherilyn Fenn +1032664,Akiko Kazami +1236034,Jake Fritz +56650,Ray Fearon +33743,Gus Schilling +1271250,Clair Dia +1346388,Admir Glamočak +44998,Steve Forrest +1580041,Jan Petrik +1363827,Maxine Elliott Hicks +33242,Kevin Neil McCready +1675496,Norman Grabowski +81415,Larry Green +92777,Tucker Smallwood +96662,Ga-hyun Yun +72059,Franchot Tone +1135826,Tsutomu Kitagawa +1416130,Katrien Devos +1226611,Kimi Reichenberg +30558,Dorothy Jordan +224315,Alessandro Morace +1416124,Jan Steen +20157,Pearl Bailey +146044,Niu Ben +1387766,Doug Roberts +1856998,Leah Gray +77157,Robbie Rist +142271,Vittorio Fanfoni +136334,Art Aragon +1090856,Thomas A. Curran +547989,Katsuji Mori +5587,Hank Azaria +155393,Dorie Barton +105021,Georgia Backus +1225403,Tony Craig +1077865,Sharon Lockwood +4989,Masaya Kato +1507182,Dick Young +54625,Sacha Kremer +1139758,Dana Pinchera +544591,Aurora Clavel +1223965,Clementine Ford +39065,Alan Badel +940864,Frederick Culley +993240,Hannah Davis +42006,Ned Dowd +148573,Edwin Phillips +115659,Yoji Tanaka +1409210,Edith Shearer +103493,Pedro de Cordoba +24475,Anny Duperey +40209,Paul Lynde +1653779,Terry O'Connor +43661,Takeshi Kaneshiro +3596,Marie Henriau +1081120,Michelle Durning +45400,Greta Gerwig +57609,Yuen Wah +11478,Lorraine Bracco +104391,Abel Woolrich +1712343,Joel Stedman +163220,Steve Raulerson +1473496,Tyson Hall +553433,Hikari Takano +1894176,Jim Medearis +160527,Sharon Compton +183877,Lisa Reeves +1747702,Ann Graves +1527168,Justin Lucas +163687,Tom Cappadona +1331759,Arthur Dulac +3239,Ernest B. Schoedsack +116,Keira Knightley +65808,Fulvio Cecere +1803856,Pamela Holt +11792,George Dickerson +1178011,Bob Martana +150158,Qibin Leng +174680,Dawn Ann Billings +1102616,John Borras +1201,Garry Marshall +164713,Andrew Winner +32137,Charles Starrett +36927,Graham Jarvis +110313,Noboru Mitani +2525,Shannon Cochran +552671,Michio Gina +1186440,Mark Malicz +119986,Emmett Smith +936813,Lisa Collins +98596,Marc Vahanian +1112607,Rustam Branaman +188452,Jimmy Keogh +119548,John J. Richardson +1091908,Édith Piaf +143190,Wei Pin-ao +1776454,Lilli Babb +129460,Pedro Damián +47778,Brian McGrath +114525,Karyn Kupcinet +79700,Irena Dangov +7196,Loris Loddi +1381616,Alessandro Cremona +45465,Edith Evans +1167684,Philbert von Lifchitz +17605,Idris Elba +98002,Lila Lee +522,Rod Steiger +28168,Timothy Stack +1607816,Felicia Hernández +99406,Shelly Cole +1433092,Bodil Lassen +12516,Linda Hunt +61013,Portia +1565317,Tue Frisk Petersen +95728,Arthur Aylesworth +86562,JoBe Cerny +1136761,Li Chung-Chien +1674950,Ghiziane Alini +155783,Shari Headley +77196,"Chris Warren, Jr." +57881,Heidi von Palleske +87108,Dayton Callie +1582112,Shaun Verreault +1242130,Jimmy Mataya +213326,Miroslav Holub +1393361,Ryan Williams +35320,Cornel Wilde +5958,Hilary Duff +23664,Martin Benrath +40640,Megan Gay +1176946,Philip Eddolls +4432,Frances Conroy +76994,Luke Massery +1581369,Joe Dobbs III +1469627,Damien Nguyen +83786,Walter Cronkite +1453102,Henry Dinhofer +590859,Fidel Béchara +98330,Rick Collins +183930,William Marsh +1217124,Billy Vera +112404,Judith Brown +83398,Wade Crosby +65729,Sebastian Tillinger +30121,Barbara Parkins +102120,Anna Kanakis +1098447,Suzie Kaye +1800168,Matt Smith +1318826,Blake Hammond +103733,Ivan Bonar +21743,Alexander Held +85869,John Dennis Johnston +26101,Marie Rivière +68635,Salvatore Cascio +110108,Svein Birger Olsen +5816,John Bartha +64472,Bryan Clark +1200399,Takao Zushi +1600942,Victoria Vescio +1233146,Paulino Nunes +135228,Jamie Croft +117192,Dan Hildebrand +552315,Akiko Koyama +27012,Robert Ginty +105636,Red Skelton +1741927,Jen Tracy +113918,Crystal Scales +6563,Gwenn Mitchell +109529,Scarlett McAlister +1379975,Joseph American Horse +14849,Peter Donat +545,Matthew Barry +46596,Cheryl Francis Harrington +556502,Phyllis Morris +6194,Claire Danes +1838900,Marie Augustine Diatta +108433,Cecil Weston +1866972,Antoine Pialat +146997,Piero Vida +1661651,Robert Ragaini +51579,Steven Williams +84330,Dee Carroll +2412,Isabelle Nanty +111657,Hélène Mahieu +104872,Mac Davis +47020,Eric Laneuville +1235633,Jason Gaffney +1416542,Lam Ying-Fat +96971,Hervé Grandsart +11916,Liv Ullmann +1705491,Ken Sharrock +323,Curtis Hanson +1188829,Richard Kipling +14979,Fortunio Bonanova +1372185,Al Coronel +1841262,Gary Lowery +1391387,Jerry Ross +123529,June Fairchild +1378404,Oliver Sveinall +1021841,John T. Murray +1905150,Bunny Gordon +237359,Mansaku Ikeuchi +3243,Robert Armstrong +6124,Louise Mieritz +1780622,Derek Alleyn +1293297,Brenda Braxton +1264371,Margit Lindeman +1331574,Sean Orr +1853186,Bill Beauchene +1386367,Cookie Brindle +25753,Leo Stransky +4605,Eugene Collier +21142,Gregory Itzin +38499,Maurice Barrier +1482619,Kenzô Matsui +1769719,Chae Yoon-Seo +37422,Jan Rubes +84240,Joaquin Martinez +1422328,Max Lucke +55514,Ignat Daniltsev +162923,Penny Peyser +1661596,John Griffin +21049,Yancey Arias +134813,Ken Yoshizawa +85450,Mithun Chakraborty +111179,Jennifer Steyn +567392,Hiroya Morita +161927,Carol Leifer +88935,Adolf Wohlbrück +8774,Luca Lionello +116645,Harry Towb +565354,Willard Louis +77989,Synnøve Svabø +45285,Christiane Schmidtmer +62077,Ameer Baraka +69210,Chyler Leigh +1217271,Nancy Dussault +74442,Jaime Winstone +119449,Fung Ging-Man +782,Steven Berkoff +1568433,Eugene Boles +29990,Lucy Beaumont +5942,Barbara Gordon +1406150,Mirko Hussari +160267,Katherine Cannon +26491,Vernon Wells +8615,Craig Kingsbury +21430,Natassia Malthe +268113,Jorge Vargas +1485030,Ian Dallas +1720866,Judith Loomis +1374479,Reva Rose +1270523,John E. Dunn +41961,John Hamill +117256,Rake Yohn +116640,Frances Farmer +1901795,Frank Demenga +553894,Rita Lafontaine +61532,Pab Schwendimann +260536,Wolf Christian +60560,Macy Gray +106615,Mijou Kovacs +29129,Georg John +124983,François Noël +94021,Christopher Benjamin +223622,Paul Land +949374,Kathy Cronkite +9108,Don Taylor +59785,Fat Joe +78063,Red Madrell +49204,Susanne Wuest +159024,Jim Burk +87304,Archana Puran Singh +142162,Michael Russo +48463,Reece Thompson +1674975,Léopold Boisvert +196179,Stephen Henderson +1716243,Wael Zuaiter +146496,Véronique Boulanger +89844,Shimpal Lelisi +61947,Susan Almgren +100913,Tito García +59196,Joe Flaherty +76190,Alec Wilson +22675,Damon Wayans +70425,Denny Miller +1077836,Daniel Daujon +2207,Lois Smith +20374,Teresa Palmer +22122,Meagan Good +99353,Michael Blake +82433,Nicolas Surovy +56890,Malcolm McDowell +82443,Robert Radler +39126,Bai Ling +145250,Chôko Iida +40349,Erica Yohn +233298,Robert Curtis Brown +1235532,Bill Croft +8875,David Margulies +208460,Anton Saunders +2963,Nicolas Cage +44051,Leeza Gibbons +21505,Robert Wisdom +47155,Birgitte Federspiel +123859,Chôei Takahashi +34679,Daniel Ivernel +51881,Ronald Fraser +59451,David Gallagher +77955,Yuki Matsuzaki +9175,Dann Florek +9005,Frédéric Pierrot +1191818,Leoda Richards +1303020,Giovanni Onorato +114159,Tania Popa +1752331,Jesse Weafer +104127,Geraldine Hooper +552445,Tom Bullock +57657,Hannelore Schubert +96552,Kamatari Fujiwara +10664,Willoughby Gray +98329,Mark Torgl +927616,Dorothy Vernon +985798,Donna Jo Gribble +1212034,Barney Martin +1537396,Jan Bartos +2630,Nastassja Kinski +69149,Dubravka Mijatović +99404,Zander Schloss +1750,DeForest Kelley +33299,Don Shanks +49822,Caroline Struzik +552651,Susumu Tatsuoka +155544,Gloria Irizarry +1077839,Barbara Elbourn +1009983,Nanako Okochi +1045069,Shane Kosugi +154644,Una Damon +1405824,Sean Summers +131109,Neil McCallum +120700,Louis Mercier +25810,Mariangela Melato +14887,Paddy Considine +1773126,Levi Woods +34472,Jody Gilbert +65124,Troy Brenna +78776,Milton Frome +1080619,Marjorie Kane +1240066,Dean Sheremet +1577164,Concepción Palmeres +55493,Brady Corbet +1580031,Marta Andresová +4090,Shirley MacLaine +1409208,Louise Lawson II +553444,Masanao Matsuzaki +80484,Ricky Fataar +6135,John Martinus +1634920,Hunter Reid +16765,Madge Kennedy +37793,Dietmar Schönherr +70336,Won Bin +101397,Rusty De Wees +37057,Derbhle Crotty +1280230,Russ Huards +233547,Mohammed Ghaffari +1196675,Joe Yule +135799,Chris WIllis +1886574,Colleen Bade +1647609,E. Nick Alexander +30710,J. J. Feild +184792,Gene Hartline +1128053,Michiko Araki +1274,Brad Sullivan +552674,Noriko Mikura +1215741,Kathryn Drysdale +38940,Evan Rachel Wood +98000,Frank Lanning +74709,Peter Haber +65131,Dax Garner +1851417,Arlene Harris +29794,Mark Kiely +1896454,Shôtarô Fujimatsu +1535802,Marika Blossfeldt +34179,Arthur Lake +141694,David White +19943,Dana Ivgy +214900,Sonny James +1193679,Bob Warner +1655537,Yvonne Delaine +61110,Fred Armisen +529,Guy Pearce +56422,Linda Dano +1781717,Ava Lee Scott +6121,Jens Albinus +83435,Joby Baker +72451,Yûta Sone +1583186,William Hall +1845370,Jesse Hernandez +85353,Judi Farr +1875310,Tom Allen +1616635,Wojciech Biedroń +78416,Paul Sand +227548,Red Mitchell +156294,Paolo Seganti +1586955,Adam Ho +53487,Margi Clarke +1476426,Frankie Lee +35159,Laraine Newman +38050,Karel Stepanek +54651,Joey Fatone +93492,Tallulah Evans +13905,Fritz Kortner +1704729,Jeff Downey +15917,Stefania Rocca +5049,John Hurt +141396,Janear Hines +30647,Mel Welles +55251,Asif Kapadia +7059,Heike Makatsch +116135,George Eldredge +57925,Evan A. Lottman +1416220,Sylvia Torf +72314,Diveen Henry +60020,Lisa Masters +27506,Hilary Gordon +1228015,Peter Boretski +87729,Michael Lawrence +38784,Alice Garner +30163,Michael Mark +939916,Marcia Diamond +100779,Gloria Holden +1183501,Liu Yan-Bin +937,Derek Jacobi +1391027,Mircea Constantinescu +54221,Paul Christie +52467,Cindy Daly +985447,Percy Gordon +33191,Ayesha Dharker +95867,Mike Dirnt +3229,Arliss Howard +1222237,Di Botcher +1121926,Paolo Figlia +232743,Alicia Harding +570800,Members of Acholi Tribe +84035,Sarah Alexander +31471,Patrick Richwood +11132,Charles Tingwell +72742,Barry Dennen +77279,Gina Ravera +8948,Cynthia Cleese +95565,Ulla Skoog +97049,Samantha Mumba +141402,Ben Niems +99443,Dante DiPaolo +103927,Larry Olsen +1405696,Frank Howard +1502569,Matt Weisman +1674985,Vsevolod Malamud +125808,Charles La Torre +56393,Anki Lidén +47434,Aleksandr Pyatkov +38331,Edward Atterton +1644869,Walter Tribus +19135,Panchito Gómez +1281301,Anna Madigan +71356,Fredrik Ohlsson +235382,Fuyuki Murakami +30446,Simon Lenagan +60142,Marilyn Sokol +96639,Katsuo Tokashiki +1507118,Katy Moffatt +9747,Jean-Claude Carrière +10182,Ving Rhames +27008,Chelsea Field +20542,William Wise +145913,Sayaka Yoshino +173065,Melissa Rivers +987050,Joseph Buloff +18191,Amanda Donohoe +41694,Roger Ebert +32513,Hélène Fillières +147290,Mary Stavin +1330784,Agnieshka Wnorowska +17778,Charlotte Bradley +14759,Albert Moses +79072,Kevin Durand +1596767,Ruth Nichol +11141,Fred Draper +1667949,Ralph Gilliam +1905153,Ann Curzon +538687,Denis Akiyama +2060,Alex Palmer +1230529,Diana Barrington +1741428,Sarah Penman +1308714,Sumi Mutoh +57192,Spencer Locke +96928,Johan Libéreau +987625,Jon Proudstar +1778142,Fritz Elofsson +112343,Carl Lewis +57119,Sinbad +559559,Marshall Neilan +107304,Spencer Milligan +25251,Lam Suet +19225,Christian Campbell +1413411,Brad Logan +554854,Jie Zhou +33016,Terry Funk +150571,Tania Palaiologou +938742,Stephanie Fondue +1146,Julie Delpy +59159,Elizabeth J. Carlisle +60881,Douglas M. Griffin +53348,Petr Jákl ml. +168197,Olivia Olson +2729,Irm Hermann +1422389,Jesse Graves +1432509,Josh Epstein +1249528,Danny Jackson +114564,Shug Fisher +119543,Harry Depp +1901793,Ursula Reiter +148899,George Shevtsov +57421,Thomas Wilson Brown +189847,Derek Sydney +545848,Paul Krassner +35189,Peter Breck +11768,Patricia Tallman +1141557,Ecce Homo Toto +1200874,Tomo'o Nagai +1077896,Maddison Joyce +150318,Chôchô Miyako +1485029,Yvonne Casadei +1229807,Gregory Snegoff +1765486,Joey Luft +1251463,Janice Acquah +93090,Graham Sibley +35597,Jenny McCarthy +248282,Irma Christenson +1861056,Menda MacPhail +552178,Kazuo Higata +143039,Jonathan Chang +54348,Kate McGregor-Stewart +159297,Eliza Szonert +614230,Betty Miller +1501992,Big John Hamilton +9235,Nicoletta Braschi +1855554,Jean Minisini +94948,Philippe Richard +6557,Daniel Znyk +100817,Hilda Fuchs +962185,April Clark +57110,Bruce Kimmel +135402,Vincent Di Paolo +40966,Elsie Randolph +146837,Michael McLafferty +1723455,Carmen Sardá-Cánovas +8316,Michael McShane +40433,Barry Sullivan +29579,Charles Lane +28167,Don Galloway +82054,Jan Tore Kristoffersen +1233840,Koo Hye-sun +34407,Rusty Schwimmer +54532,Ferran Terraza +1089759,Flavia Manes Rossi +3884,Lene Tiemroth +10961,Gavin Rossdale +132444,Amparo Moreno +39690,Marcel Marceau +130104,Vanessa Zima +1265157,John Walton +5464,Billy Gilbert +129554,Robert E. Strickland +5606,Sissy Spacek +1123104,Johnny Gimble +936612,Jade Calegory +40271,Alexander Goodwin +80434,Scott Kinworthy +1393358,Lawrence Sacco +102093,Goyo Lebrero +114807,Lillian Hall-Davis +1261901,Mark A. Hernandez +42524,Claire Stansfield +94076,Kingdom Yuen +31260,Robert Burton +161897,Robert Mailhouse +54216,Stephen Eric McIntyre +37764,Jacques Spiesser +1543059,Noble Chissell +85819,J. Michael Weiss +29656,Rex Sevenoaks +102761,Jeff Nuttall +77870,Glenn Howerton +143714,Rebecca Spence +58032,Jessica Campbell +1426133,Karen McLymont +1661641,John Mineo +1601776,Vladimir Ermilov +1217165,Joshua Shelley +8471,Larisa Tarkovskaya +4237,Erykah Badu +27683,Scott Nunnally +28639,Carmen Electra +71070,Amanda Seyfried +8790,Meret Becker +548816,Pierre Étaix +565514,Valerie Mamches +51918,Harmony Korine +72689,Victoria Silvstedt +13954,W.C. Fields +175468,Michael Horse +61937,Thom Fell +1183445,Page Johnson +985446,Chris Cruz +31006,Troy Evans +1192603,Ove Porath +1368758,Monty O'Grady +79867,John Ramm +147101,Miguel Guilherme +12022,Sidney Blackmer +1218133,Patrick Michael Buckley +11903,Joanna Merlin +1360008,Joseph Oliveira +135802,Sierra Pitkin +1184298,Nancy Kilgas +1421032,Marie Melesh +100539,Kimberly Pullis +1896873,Barry Bourke +142487,Daizaburo Hirata +1212897,Philip Bretherton +1417404,Huang Zong Luo +1349322,Carlos Ruiz de la Tejera +1781194,Marc C. Cancassi +125911,Todd Zeile +111383,Danny Goldman +85308,Yôko Naitô +1752803,Janice Luey +40969,René Génin +1005147,Sherie Rene Scott +39258,Lee Dae-yeon +1348733,Guy Ale +1200994,Shannon MacMillan +26093,Earl Pastko +112305,Jason Alderman +1117371,Dominic McHale +19974,Greg Germann +1219534,Joseph Vassallo +1437229,Thelma Leeds +90360,Yevgeni Zharikov +27941,Edward Rigby +1557078,Julia Mackley +17871,John Hamburg +192772,Linda Ellerbee +1853195,Kevin Sheehan +52211,Toshiya Ito +92808,Gabriel Jarret +34651,Peter Baldwin +1216157,Albie Selznick +23937,Katja Studt +1173157,Larry McGrath +2744,Carmen Maura +9597,George Furth +112317,Gordon Kennedy +2518,Gregg Henry +105072,Candice Rialson +15423,Paget Brewster +15738,Paul Barrett +1308764,Jorge Ayala +1364095,Brown Eyes +1471396,Rolf Lindau +1221574,Peter Coffield +7645,Mark Dennis +1356023,Abdellatif Hamrouni +73716,Victorien Delamare +1126804,Andrew Priestman +1275925,Xuan Dung Phan +83872,Casey Wilson +1393336,Joy Nichols +2680,Donnie Wahlberg +82220,Danielle von Zerneck +1577512,Cheryl Horne +20737,Jeon Do-yeon +98828,Anthony Dexter +85846,Jesslyn Fax +10437,Lily Tomlin +105998,Jack Good +78421,Nicolas Marié +58622,Dick Rude +1211929,Shaun Prendergast +63582,Hui Siu-Hung +49002,Donald Faison +1723442,Michel Ricordy +99374,Pier Angeli +1270057,Shinichi Uchida +119652,San Chan-Yat +135175,Jade Magri +1230452,Howard Lang +1752796,Paul Gordon +58058,Lochlyn Munro +37148,Ene Oloja +135040,Anne McLean +20366,Fay Bainter +26782,Mark Houghton +60509,Kip Weeks +188642,Bruklin Harris +17591,Marie Cardinal +1466161,Kent Odell +110208,Marta Mitrovich +8326,Geraldine McEwan +61014,Haneefah Wood +56867,Mark McKinney +129544,Beatrice Blinn +19978,Jason Kravits +47098,Pete Townshend +100552,Mary Woronov +1039220,Ken Yasuda +555380,Tang Ru-Yun +51504,Nassim Faid +156591,Ruth Maleczech +21619,Marilu Henner +15746,Barbara Babcock +89990,Bobby Jordan +1629826,Juanita Waterman +50994,Unax Ugalde +548814,Jean-Louis Comolli +74616,Damani Roberts +1680747,Noelle Scaggs +157085,Vernee Watson-Johnson +84520,Víctor Sierra +52708,Andy Davoli +94332,Florence Roberts +1195532,Alain Floret +14773,Don Siegel +13924,Mindy Sterling +119142,Nick Waters +1177915,Rene Beard +1501358,Lenka Kripac +1209731,David Zyler +50719,Rodman Flender +15500,P.J. Soles +1729789,Vince Brocato +19867,Staffan Kihlbom +38389,Didier Pain +1265399,Carol Messing +951387,Prudence Wright Holmes +964124,Paul Hanson +13692,Jacques Mathou +122909,Louise Hampton +125496,Pablo Razuk +1215995,Deborah Rawlings +21460,Pat Buttram +59161,John Badila +20945,Catherine Jourdan +1456485,John E. Brady +76126,T.I. +1239376,Marvin Karon +81667,Jennifer Hale +1169885,Vito Antuofermo +175400,Dan Fredenburgh +129968,Aldo Ralli +86313,Jack Mulcahy +1386340,Paul Carden +134903,Ena Cohen +1664779,Robert Rondo +161405,Ron Soble +1074683,Thom Baker +985861,Jack Kenney +96322,Rafael Báez +1752315,Christian Hagen +15376,Brad William Henke +150573,Gabriel Cosmin Urdes +1661607,Krissy Richmond +171800,Doc Dougherty +23393,Barbet Schroeder +1444488,Thomas Harder +144402,Harry Worth +7071,Louise Fletcher +56101,Gerard Horan +1749201,Di Sherlock +159870,Brian Donahue +91756,Hazelle Goodman +48312,Noah Segan +134307,Chieko Higashiyama +1420958,Katherine Williams +56054,Sherri Stoner +1537356,Jaroslava Razova +1677001,J.B. Waters +162690,Sam Simon +6777,Moe Howard +1232003,Norman Vaughan +59860,Alice Eve +2824,Jerzy Moniak +148294,Tiina Pirhonen +32446,Minh-Khai Phan-Thi +72818,Yôko Ishino +106115,Marie Butler +1840,Gordon Brown +152522,Sean Taylor +1674976,Jitka Svecova +1396444,Ángel Muñoz +150636,Paul Dickey +189458,Maria Porter +108986,Helen Westley +15403,Micheline Bona +74658,Paul Goldblatt +91964,Holly Near +1184928,Christian Simpson +1130024,Todd Anderson +42627,James Wilby +1018015,Morgan C. Jones +103498,Mary Carlisle +1224999,Gregg Turkington +108232,Marguerite Chapman +213904,Brian Conley +53593,Pete Antico +8830,Henry B. Walthall +2753,Burl Ives +198878,Misa Koprova +1014030,Stephen Chen +97943,Raphael Sbarge +5586,Yeardley Smith +9304,Al Garrett +5945,Bruce Gray +24652,Patrick Préjean +111306,René Havard +1409203,Edgar Nelson +1287489,Walter Ehlers +140,Lucy Liu +146335,Neal Barth +10333,Vangelis Kazan +116746,Billy Daniels +4459,Birthe Neumann +157676,Christina Carlisi +111191,Arthur Godfrey +96846,Elsje de Wijn +135850,Kim Young-jae +52886,Jeffrey Donovan +109619,Lucie Laurier +72316,Edna Doré +31818,Karin Petersen +21666,Jean-Marc Montalto +944830,Daston Kalili +58921,Anne Smith +55997,Joi Lansing +3341,Joe Sawyer +120303,Daniel P. Conte +20286,Toby Kebbell +3508,Delphine Seyrig +1661629,Tommy John +48574,Axel Düberg +7863,Tantoo Cardinal +14151,Leopoldo Trieste +1422967,Bonnie Bannon +112598,Per Egil Aske +97988,Emily Fitzroy +225730,Ryunosuke Kamiki +1234545,Dorothy Abbott +3583,Suzanne Schiffman +16902,Shamshad Akhtar +5903,Victor Macias +130935,Shane Meier +1757592,Giulia Salvatori +128643,Jack Roper +106066,Gustav Vintas +29583,Alma Aiken +27586,Conrad Bergschneider +1087561,Iain McColl +96259,Chester Gan +2258,Stuart McQuarrie +8986,James Rebhorn +1154772,Julie Neesam +19998,Dorka Gryllus +137581,William Chun +88350,Annazette Chase +116137,Abel Franco +10021,Hugh Griffith +589641,Jim Toney +1565318,Sune Thomsen +1019795,Wu Gang +545847,Wayne Cotter +162754,Francis Guinan +24820,Joseph Schildkraut +58296,Joe Strummer +26510,Eugene Levy +13333,Vanessa Redgrave +1744172,Christopher Comes +551626,Kanta Aeamsamang +13969,Russell Hicks +1857325,Alan Woolf +33397,Sarah Bolger +26371,Jacques Sereys +10978,Maggie Smith +1661626,Frank Pietri +19739,"Al Freeman, Jr." +64933,Chris Lemmon +42019,Carlos Ramos +26490,Fiona Lewis +66152,Takehiro Murata +29657,Gillie Fenwick +102661,Diane Clare +112832,Yuriri Naka +1287871,Jack Gordon +1661632,Kristen Pettet +51188,Darrell Larson +5756,Peter Davor +1223409,Cesare Gelli +144612,Fortunato Arena +1793074,Chane't Johnson +112009,Ralph Sanford +151604,Jana Taylor +79165,Zhanlin Ma +103441,Ann Harding +151286,Tony Spiridakis +19910,Nora Tschirner +1706010,Daniel Karaty +980038,Charles Brokaw +24551,Kinuyo Tanaka +122126,Charles Mountain +96659,Ahn Nae-sang +7503,Red Buttons +1114920,John Hetherington +1221260,Joe Brooks +6547,Pierre Boulanger +95742,Chuck Courtney +82412,Edna May Oliver +88652,Earl Dwire +53591,Steven Grives +1203248,Arthur Lovegrove +36901,Martin McDougall +97568,Arthur Wontner +161279,Joe Miksak +16500,Mark De Alessandro +139857,Maxim Nucci +552223,Joan Buddenhagen +1869983,Michelle Eabray +78773,Horace McMahon +50347,Rachel Nichols +52885,Ritchie Montgomery +291,Frank Gorshin +13784,Burt Lancaster +1810,Heath Ledger +59216,Tom Cavanagh +62249,Jaden Ryan +1303208,Alison Allen +6771,Wally Taylor +15555,Piper Perabo +1086322,Dan O'Dowd +60950,David Spade +1114926,Richard Sterne +17483,Michael Maloney +17894,Claude Duneton +119460,Chung Fat +86347,Robert Brubaker +47395,Miles Malleson +21246,Corbin Bernsen +14316,Damon Hines +86922,Lee Armstrong +32291,Sandra Taylor +1781197,Jill DeMonstoy +1657191,Ángel Merino +1287657,Jett Garner +134895,Stan Stennet +17142,Paul Dano +239398,Maurice Baquet +2387,Patrick Stewart +170921,Baxter Harris +71241,Justin Henry +1107987,Ryan Goldstein +30719,Akim Tamiroff +25136,Ken Stott +47298,Nellie McKay +77688,Sibusiso Mamba +89375,Travis Aaron Wade +78248,Himani Shivpuri +1171948,Ean Mering +45392,Cynthia Szigeti +1319966,Tien-Lang Li +67778,Jonathan Lipnicki +85656,Zakir Hussain +20367,Richard Cromwell +582558,Chao-ming Wang +553188,Michel Daniel Bramanti +123521,Chandler House +555378,Adriene Lin +1236882,Dominic Borrelli +1353671,Mario Dominici +100061,Tim Cutt +1617366,Selena Mars +1453073,Takashi Miki +129428,Cameron Hall +18916,Kevin J. O'Connor +1752724,Kristen Munro +50997,Bobby Driscoll +93310,Laurie Main +1824609,Don Wetherhead +1239068,Emma Amos +50236,John James +87360,Michael Taliferro +101255,Inna Korobkina +1081772,Dolly Jonah +1406153,György Liszác +108277,Ed Bishop +120594,Sheldon Alkon +138588,Brett Climo +168326,Lauren Bowles +15320,Marcel Iureș +145059,Carlos Padilla +1857427,Sophia Goth +2787,Nick Adams +70440,Robin Gammell +1239752,Carmit Bachar +8400,Kim Chan +58650,Raymond Cruz +41517,Christian Clemenson +103575,Breck Costin +49497,Walter Saxer +95949,Ralph Peters +1138759,Victor Hon Kwan +1015322,Maude Turner Gordon +73401,Michael Dixon +97081,Coralie Clément +1879469,Frank Dworsky +42191,Kenny Johnson +730296,Isaac Mavimbella +59237,Margarita Levieva +937650,Jannik Lorenzen +65772,Shaun Sipos +90731,Robin Nielsen +1746017,Lien Pi-tung +1394981,Keylee Jade Flanders +1200393,Vittorio Viviani +1226313,Ken James +997823,Sergei Blinnikov +749,Isla Blair +1155467,Bill Brinsfield +121344,Chaino +1850005,Tim Carroll +106753,Richard Brooks +20368,Henry O'Neill +39189,Stephen Merchant +1904,Anthony Michael Hall +1069932,Edric Connor +97995,Charles Sellon +1430526,Ray Armstrong +1059867,J. Mascis +590767,Lien Deyers +164077,Sally Murphy +72820,Sayaka Osawa +11480,Frank Sivero +74615,Nicole Ari Parker +65971,Sek Kin +1622946,Stefan Nelet +35505,Sylvia Ashton +1281541,Joey Ancona +3977,Joe Morton +1857453,C. Keith Martin +1365933,Jimmy Au Shui-Wai +72280,Lionel Baier +1778253,Tumbleweed +112347,Rufus Dorsey +132729,Eric Bruskotter +54683,Charles Watts +1251369,Del Harris +1564984,Julia Roth +6251,Karlheinz Böhm +369,Henry Bumstead +76187,Cornelia Frances +111840,Peggy Maurer +18316,Ally Walker +34837,Jack Ingram +1883265,Turi Killer +103490,Rafaela Ottiano +1550296,Jay Gilpin +170979,Norman Rose +8597,Phellipe Haagensen +32362,Jon Bon Jovi +142572,Shireen Shah +38170,Hugues Quester +1139454,Alan Chappuis +83155,Annie Neal +138240,Bitty Schram +1513488,Raymond Ravanbaz +75891,Wayne Hope +110393,Steve Caballero +1221197,Patricia Driscoll +1781694,Al Linea +105800,Penelope Dudley-Ward +77721,Toby Schmitz +1385445,Ariana Bernstein +112973,Antonio Cifariello +5081,Emily Blunt +17680,Jonathan Brewer +1125220,Tim Burns +14504,John Dall +1666743,Albena Stavreva +157439,Paula Kelly +41256,Art Hindle +87404,Robert Winley +129933,Nate Adams +52907,John Paisley +54427,Kimberly Brooks +555974,Alisha Das +33190,Pernilla August +1140,Charlotte Véry +129548,Virginia O'Brien +1105803,Pramod Moutho +119457,Hsu Hsia +1296373,Rich Valliere +1219130,Mike Smith +112088,Matthew McCurley +1853191,Mark Miosky +89307,Dolly Rathebe +1187536,Jacqueline Marbaux +53893,James Kayten +1320284,Miluse Straková +86557,David Breashears +1776531,Carol Borjas +583103,Armando Acosta +135680,Jaroslav Dušek +122402,Kari Väänänen +80863,Masahiro Motoki +62934,Andrew Blanchard +135855,Jim Norton +1741429,Kathy Alzado Murray +5630,Jane Alderman +1573507,Valentino Visentini +21499,Tamio Kawaji +72353,Marc-Henri Wajnberg +35243,Ed Gilbert +10583,Gisele Bündchen +1196143,John Baker +83457,Donna Douglas +13329,Colin Blakely +86395,Janis Joplin +1638928,V.S. Brodie +18767,Jean Champion +167261,Tony Crane +1376150,Caris Vujcec +96637,Hisashi Igawa +1504123,Eddy Donno +551864,Akira Endô +1159905,Kenny Stabler +559897,Vitali Makarov +1571793,Kelly Cooney +113740,Hidetoshi Nakahashi +1217939,Robert Peters +18329,Maria Schneider +49958,Rosemary Forsyth +81029,Jack Deam +143151,Miranda Rhyne +1487246,Emma Roberts +588821,Cuca Escribano +6804,Graham Greene +1889101,Honora Burke +1609643,Rennie Campbell +91458,Mitchell Riggs +78878,Xing Yu +79723,Daniel Whyte +657997,Hani Furstenberg +20329,Takako Fuji +184997,Oscar James +1542806,Seth Mumy +1147460,James Neill +1580030,Jirí Mojzís +166654,Ethan Sandler +1456540,Scott A. Surgenor +56251,Kevin Heffernan +33403,Mac McDonald +120735,Lelah Tyler +940100,George Mozart +552412,Morland Graham +5833,Ed Wynn +144549,Edward Ryan +702,Philip Tan +40191,Sorrell Booke +41998,Gordon Jackson +39586,Christian Hoening +1824208,Nancy Farrelly +48063,Lydia Potechina +15170,Jiang Wu +30198,Cecil Reynolds +33669,Cameron Mathison +155547,Murphy Guyer +1702788,Georgina Armstrong +1661635,Michel Moinot +57346,Kate Nauta +133971,Alice Lake +1612202,Major McBride +2226,Sydney Pollack +10561,Helen Ludlam +73382,Sien Eggers +134321,Ken Mitsuda +1661628,Damon McCloud +79460,YosiYosi Arakawa +1210629,Robert Welch +1231768,James Paxton +109143,Gigi Proietti +1431569,John Jabaley +1896887,Bill Armstrong +140063,Francisco Baião +134351,Takako Irie +147482,Tom Mannion +163422,Diana Quick +62129,Judi Embden +130561,Henry Fong Ping +69632,Jolanta Umecka +205578,Michael Blackson +113516,Arthur Belasco +41295,Leon G. Thomas III +129272,Bill Stacey +1881246,Lousnak Abdalian +1348805,Dusan Zecewic +2311,Otto Sander +79357,James Bolam +52892,Hugh Sachs +55584,Ingvar Eggert Sigurðsson +196456,Paul Avery +213324,Lubor Tokoš +71939,Irmeli Debarle +1789205,Molly Grant Kallins +21923,Tamara Dobson +1681418,Pieter Stuyck +71929,Benoît Delépine +150253,Ryûtarô Gomi +938745,Brandy Woods +35351,Guillermo Montesinos +65720,Mark McCracken +1139749,Black-Eyed Susan +56322,Amy Poehler +1402313,Whitey Ryan +34085,Louise Currie +185395,Michel Scourneau +20519,Simon Yam +1757534,Ron Jeremy +118231,Virginia Gibson +987830,Louise Carver +1295,Deep Roy +1434599,Brian Smyj +1492450,Ernest Grooney +18736,Jane Withers +59569,Vince Green +1901790,Susanne Kunz +98654,William Beckwith +79526,Mikeysha Calimoke +27686,Ann McDonough +7546,Tatiana Lepore +583796,Jeffrey Lippa +76539,Derek Basco +2505,James Cromwell +1269827,Florence Wix +59298,Joseph Beddelem +101882,James Bush +84763,Joey Kern +46163,Sonja Kirchberger +87824,Charles Bates +57254,François Petit +167069,Loyda Ramos +76470,Dan Butler +1738566,Colin Thatcher +29519,Charles Boyer +59229,Damien Dante Wayans +33341,Rick Rosenthal +70635,Bodil Kjer +17593,Jean Vimenet +10480,Denis Arndt +1134350,Klaus-Jürgen Steinmann +9866,James Westerfield +50096,Johnny Yong Bosch +209723,Eve Harlow +1184071,John Knox +579413,Lutz Gabor +89899,Norman Pierce +185460,Mark Lewis Jones +1265419,Alexandra Seibel +1574239,Bill Allison +54708,Carla Gallo +127798,Choi Min-soo +552511,Mao Kobayashi +7904,Billy Crystal +76504,James Yeaton +169792,Artine Brown +2568,Folco Lulli +19859,Samantha Futerman +1072363,Beatrice Curtis +58733,Jason Davis +90112,Ivaylo Geraskov +116126,Christopher Rozycki +53688,Lily Cole +1668478,Joe Solís +131013,Haruko Sugimura +97701,Fox Harris +40568,Raimund Harmstorf +1013950,David Tse +1901787,Daniel Fueter +222963,Yoichi Hayashi +78744,Donald Gray +16327,Timothy Hutton +159907,Brad Grunberg +6451,Michael J. Pollard +87717,Antoine Joseph +101286,Carolyn Lowery +20318,Myra Lucretia Taylor +1263061,William Benedict +11260,Peter Franke +19997,Siobhan Hewlett +114556,Maurice O'Connell +1891583,Valiollah Beta +31780,Cinzia Monreale +1218024,Robert Sedgwick +1911,Dick Anthony Williams +3214,Steven Wright +1742429,Kathryn Tait +37005,Eric Jungmann +73637,Nicolai Cleve Broch +1804429,Jody Carlson +1720052,Ferhendeh Feydi +57402,Cathy Meils +57551,Mario Cantone +3161,Joan Shawlee +551618,Pierre Png +13991,Margaret O'Brien +78080,Krysten Ritter +12838,Joerg Stadler +53596,Martin Neufeld +15032,Jed Rees +32461,Tom Farrell +203781,Lela Loren +87152,Shelby Chong +105940,Michael Hui +87335,Fernanda Torres +10633,Seth Arnett +23417,Chris O'Neil +1865,Hark Bohm +1664225,Xavier Berlioz +44895,Tessa Richarde +584287,Arthur Devère +99885,Kathleen Lloyd +56509,Margaret Langrick +15140,Terence Hill +6198,Vondie Curtis-Hall +557850,Le Clanché du Rand +262960,Anne Kessler +1102,Elpidia Carrillo +2924,Valerie Hobson +20278,Jessie Kamm +107754,David Dennis +1680758,Kasey Campbell +1513402,Dominique Mahut +142766,Tarık Akan +62596,Kane Hodder +1872803,Brian K. Grant +63382,F. Blinn +553194,Noemi Giarratana +172843,L. Harvey Gold +146212,Grégoire Oestermann +1089919,Kelly Craig +89659,Katherine Warren +105831,Toni Trucks +107215,Sheik Razak Shikur +552467,Michael McCleery +12899,Jim Varney +6678,Michael Ontkean +86605,Peter Hurteau +1105000,Jayne Luke +170658,Marilyn Cooper +1237729,Charles Payne +98574,Gail Patrick +269903,Axelle Abbadie +77225,Barbara Rhoades +1184839,Nan Boardman +82625,Hallie Todd +120443,Otto Fries +142443,Élodie Navarre +552168,Takeo Oikawa +76650,Colin Rogers +52836,Toots Hibbert +106702,Silvana Gallardo +42824,Carl Ciarfalio +20436,Moshe Abebe +235348,Lois Geary +53577,Maxwell McCabe-Lokos +6269,Elena Uhlig +1038485,Rolando Zadra +1414419,Lotte Eisner +94500,Jason Hervey +120472,William Bailey +995614,Milton De La Canal +62001,Dee Wallace +14289,Otto Lederer +10508,Louis Jourdan +1565319,Jacob Tranæs +1286022,Hunter McGilvray +162323,Terence McGovern +100346,Claude King +61948,Howard Rosenstein +27441,Pierre Dux +130585,Carleton Carpenter +1231709,Paul Sutera +148047,Wanda Dubiel +135800,Tracy Goode +10332,Stratos Pahis +1398129,Jesse 'Casper' Brown +108275,Paul Maxey +1287646,Robert Reitherman +19899,Dennis Storhøi +225966,Eva Bodnar +21028,Anton Yelchin +147292,Mark Silver +545603,Erin Fisher +55751,Kristin Kreuk +13923,Fabiana Udenio +1860530,Alexander P. de Seversky +164270,Josh Philip Weinstein +94288,Ted Hamilton +182194,Bronwyn Cornelius +387961,Madame Spivy +51506,Frédéric Pellegeay +32791,Brian Keith +15213,John P. Ryan +33661,Victor Sutherland +66,Chris Tucker +1034689,Catalina Harabagiu +143175,Luis de Icaza +5038,Valeska Gert +148822,Ralph Wright +79874,Joseph Greig +6104,Julian Sands +199405,Sally Stark +230881,Toshikazu Fukawa +122230,Elizabeth Regen +1580384,Maisay Kawasuma +39500,Christiane Barry +58123,Bolo Yeung +1265412,Zoë +67581,Heather Litteer +159336,Daisy McCrackin +8613,Lee Fierro +175060,Karen Petrasek +229606,Monica Dolan +171927,Eileen Letchworth +1075088,Andria Hall +105229,Lara Morgan +1617619,Silver Harr +1768212,Drew Russell +1076425,Lyle Närvänen +55156,Mai Zetterling +28114,Oliver Stritzel +7072,William Redfield +502,Miranda Otto +1781822,Georgia Creighton +88093,Linda Haynes +22108,Skeet Ulrich +1444539,Michael Sand +1316523,Chris Sharp +1640575,George Marshall Ruge +935917,Aleska Palladino +168632,Donal Donnelly +7805,Wotan Wilke Möhring +79518,Loreto Barcelo +551619,Sue Yuen Wang +18594,Don Cherry +13661,Joe Unger +1742407,Michael D. Price +77940,Chynna Phillips +4251,John Mahoney +26202,Nina Fog +36212,Alexandre Rignault +1317197,Walt La Rue +22111,Daniel Hugh Kelly +25130,Ben Barnes +1048574,David Kaye +99572,Marián Salgado +2710,James Cameron +1141810,Chance Romero +30568,Akihiko Hirata +118742,Chapman To +955618,Amid Taftazani +37891,Simon Jones +150901,Karole Rocher +1167688,Germano Faccetti +67830,Veronica Taylor +1174961,Humberto Catalano +38941,Jim Sturgess +1037919,Omar Brignoli +31550,Joan Crawford +30427,Nicola Pagett +1301642,Bruce Colbert +206410,Noah Harpster +1658841,Eddie Das +10822,Stephen Dorff +73284,Tony Doyle +2816,Wieslaw Wójcik +1080641,Rick Taylor +30160,Charles C. Wilson +34902,Jane Horrocks +59457,Rudy Costa +174203,Christian Durango +1752326,J.P. Ferreri +43431,Barclay Hope +99179,John Lahr +51536,Agnes Bruckner +4031,Greg Ellis +1618664,Wong Chi-Ming +1391363,Alan Pottinger +34297,Ingo Naujoks +1876860,Doug Dew +7179,Willie Hall +150574,Lukas Miko +84631,Mary Jackson +114693,Dona Speir +30122,Tony Scotti +75022,Alan Autry +1237,Flea +51348,David Sheiner +1380133,Noël Coffman +107407,Andrew Pifko +194525,Pat Cooper +83646,Lin Qiu +61342,Ben McIvor +552215,Muriel Maida +16263,Kwak Ji-min +1120620,Jack Stoney +1056193,John E. Coleman +125588,Anna-Leena Härkönen +226830,Nagisa Katahira +87777,William Gregory Lee +1546102,Mia Riverton +1136760,Chan Muk-Chuen +48520,Mark Popp +1409192,Mrs. Morgan Belmont +188722,Charles Murphy +2172,Andréas Voutsinas +10681,Wayne Newton +1405829,Kunu Hank +1038425,Tyler Nelson +1778141,Arnold Alfredsson +5589,John Glover +147496,Spencer Vrooman +379722,Khyongla Rato Rinpoche +95694,Michael Coles +7767,Sam Peckinpah +1213105,Kevin Crowley +1577016,Rich 'The Body' Wiley +1853193,Tom Leasca +1079576,Mary Foy +1196402,Jack Fletcher +232886,Angelo Pellegrino +101505,Fanny Schiller +17817,Merab Ninidze +1014911,Isa Danieli +1320287,Josef Chodora +1175880,Sue Mitobe +151133,Elena Karam +60799,Salvatore Paul Piro +1296368,Liz Morris +936084,Tarah Nutter +9658,Colombe Jacobsen-Derstine +15381,Harald Warmbrunn +30097,Michael Hutchence +137783,Irvine Allen +13093,Terry Pheto +9070,Jack Haley +1752342,Jade Anderson +83622,Eve Miller +81565,James Hannon +550612,Gô Nagai +2080,Todd Bryant +13593,Jonathan Winters +1014342,Frank Krog +1778258,Atiana Coons-Parker +70703,Teddy Chan +1485645,Evelyne Smith +65126,Paul Diaz +8855,Christopher Birt +531,Danny Elfman +112365,Ruth Gillette +1082452,Baldwin Cooke +10133,John Fujioka +2251,Hugo Speer +149484,Will Rothhaar +41421,Jennifer Morrison +60164,Geno Kirkland +44184,Michael Rhoades +21344,Kate Lynn Evans +138248,Byron Kane +1173152,Louis Payne +70013,Jerry Lacy +16433,James Gammon +85547,Mark Malone +42646,Robbi Chong +19977,Liam Aiken +106284,Alex Courtney +1218180,Billy Smith +20523,Ronan Vibert +20042,Jérôme Horry +95145,Patricia Healy +15865,Ian Buchanan +1054351,Fred La Porta +1239345,Ola Sturik +543624,Nicolas Rimsky +1408413,Juan Calot +15397,Lino Ventura +1781808,Tyler McGuckin +4783,Sam Neill +994193,Augusto Poderosi +6008,Harry Shearer +76974,Warren William +79356,Avis Bunnage +1513405,Owen Steketee +1003892,Lee Powell +47137,Milo O'Shea +101565,Madison Riley +573295,Axel Slangus +147593,Tricia Leigh Fisher +42572,Beryl Reid +1773853,Nick Zephyrin +158632,Kim Vithana +125493,Antonella Costa +1786577,Tommy Bush +30014,Zeppo Marx +929657,Peter Rangmar +33229,Carole Landis +16002,Gene Nelson +10132,Colm Feore +2091,James Mason +3382,Hope Lange +66670,Chief Dan George +115769,George Walcott +95263,Isobel Elsom +1393343,Peter Wylie +58609,Toru Tezuka +1106080,Yukitaro Hotaru +101592,Linda Ho +78596,Rebekah Johnson +144487,Mandy Chiang +74905,Andrea Tenuta +180327,Jennifer Alden +13637,Joan Collins +183439,Ahmed Ahmed +87740,Tim Dixon +16659,Bobby Bass +14467,Joe Belcher +45921,Andrew Duncan +1600506,Tex Holden +1392757,Chantal Lonergan +36900,John Sharian +19293,Lusia Strus +47253,Eduard Linkers +34086,Johnny Arthur +87547,Percy Waram +1173316,Hamid Dana +1701590,José Montijano +207676,Damien Fahey +1178364,H.E.D. Redford +7117,Wojciech Siemion +395016,Holger Vistisen +1242043,Simon Lack +7803,Christian Berkel +138445,Asao Uchida +79715,Craig Behenna +1857456,Shaun Davis +1496046,Roy Lansford +116234,Paul Keith +157904,A. J. Langer +143244,Tanee McCall +117410,Robert MacLeod +211897,Josephine Butler +1726176,Dan Ruskin +1204780,Naomi Hoshi +131046,John Marston +1206910,Marcello Melo Jr. +158441,Patricia Mayen-Salazar +1895636,Gwen Ellis +17840,Charlie Murphy +98062,Lars Bom +164660,Andra Akers +559919,Pierre-Jean Chérer +185773,H. Jon Benjamin +283444,Tony Robbins +36801,Adam Scott +3540,Raoul Coutard +937667,Natalya Pozdnyakova +1421138,Mark Strong +186025,Deirdre Costello +1325395,Bob Burrows +33452,Chris McHallem +4817,Stéphane Boucher +85449,Hope Emerson +124315,Scott McCord +2717,Rick Rossovich +122712,Sharron Corley +215334,Thick Wilson +167363,Jeannie Linero +149682,Cynthia Lamontagne +538,Harriet Sansom Harris +108637,Nigel Stock +1704731,Zander Villayne +1556462,Jeanne Darrell +125650,Scott Jacoby +1496469,Samoil Dukovski +13101,Ian Roberts +220837,Todd McKenney +13708,Irma Raush +179098,Fred Coby +1645155,Dolores Winn +1704739,Dorian Heartsong +1671458,Judith Linden +142855,Tuba Buyukustun +1026656,William Murray Weiss +22082,Lacey Chabert +103582,Terri Treas +134707,Troy Yorke +55463,Jessica Stroup +10697,Alan Cumming +31837,Dane Cook +209,Jane Adams +101786,Richard Wright +55746,Shannon Lucid +61163,Ryan Miranda +122231,Katherine Moennig +1066372,Ray Gravell +69758,Sakda Kaewbuadee +141239,John A. Maloney +20173,Don McKellar +1178932,Sunny Fang Kang +159970,Marissa Leigh +44151,Andrea Roth +60257,S. Scott Bullock +1795,Merritt Butrick +34208,Robert Middlemass +1352508,Hamish Falconer +50098,Jason David Frank +80994,Ann Sheridan +78692,Laurel Goodwin +12158,Karl Swenson +66031,Graziella Delerm +1752797,Gerard McIsaac +75312,Sasha Mitchell +1797584,A. P. Singh +1391414,Jayd Johnson +76764,Bill Buell +52374,Bruce Davison +1348449,Kujtim Loki +160111,Saffron Henderson +1472580,Alina Thompson +52760,Alan Dale +4966,Keenan Wynn +186769,Shawn Phelan +83644,Li Jia-Min +14641,Ronny Graham +11397,Ric Young +18315,Monica Keena +33003,Lee Tracy +155115,Patrick Garner +1347338,Michael Anthony Williams +730346,Roger Maxwell +1781733,Richard Shankman +559934,Elza Lezhdey +1539278,Warren Selko +1580377,Jack Tesler +117029,Benny Rubin +1781813,Michael R. Hammonds II +101500,Peter Reynolds +52686,Aki Avni +143036,Wu Nien-Jen +119199,Claude Perron +1353811,Natacha Rambova +1418566,Marc Bossley +2225,Todd Holland +1752378,Neil Chan +87424,Awa Sene Sarr +77209,Grace Park +42156,Roger E. Mosley +131045,Rudolph Anders +16543,Stu Nahan +42174,Kay Lenz +66873,Hera Lind +30233,Rosalind Russell +995920,Paul Irving +1329,Billy Boyd +82388,Bob Hope +30934,Ernst Schröder +7277,Georges Wilson +13342,Warner Oland +113739,Kevin Peracini +68186,Dominic Chianese +1075013,Jesse Bronstein +60158,Shirley Jones +8655,R. Lee Ermey +1674936,Peter Blake +96596,Roc LaFortune +121288,Sammy McKim +1616653,Stanisław Jaskułka +145959,Helen Morgan +217524,Eden Riegel +105988,Galyn Görg +551844,Shôta Koike +9090,Bodil Rosing +133276,Hugh Huntley +1405572,Jay Fletcher +1588721,Genevieve Maylam +1666,Julie Christie +27102,Wanda Sykes +1506440,Russell Meeker +1362974,Babak Tafti +159032,Arell Blanton +337009,Larisa Eryomina +69718,Jon Cryer +1167391,John Garwood +87390,Mark Stevens +1071484,Camilla Metelmann +79422,Mark Darby Robinson +1752798,Darcy Evans +1288583,Christopher Freeman +95852,Vien Hong +55268,Catherine Parks +11616,Olivia Williams +99369,Tommy Bupp +1101335,Baronin van der Recke +46617,Ida Lupino +16528,Al Silvani +1850440,John Yates +70361,Birgitta Pettersson +1082662,Alfredo Varelli +122693,Jorge Petraglia +1467392,Carl Faulkner +544779,Moon Lee +22093,Regis Toomey +1331,Hugo Weaving +1343275,Christian Chase +1698899,Zdena Hurtocakova +1244382,Austin Di Iulio +12640,David Duchovny +1371121,Alireza Oosivand +76991,Christopher Erwin +19011,George W. Bush +3847,Colin McAllister +49018,Jeanette Hain +135528,Lisa Pepper +1077971,Harold Benedict +121416,Kate Price +1229223,Niven Boyd +122022,Enzo Robutti +45317,Cara Peters +94937,Gabriel Gabrio +89672,Jimmy Conlin +95652,Tom Leopold +252527,Rusty Goffe +106109,Katherine Emery +65976,Yuen Shun-Yi +1468057,Paul Sotoff +20771,Kate Hardie +1000304,Brandon Obray +88038,Rachel Specter +154073,Carmen Filpi +35025,Kurt Naebig +12054,Daniel Zacapa +93419,Don Scardino +40352,Will Ryan +212691,Jessie O'Donohue +16811,Alexander Scheer +74021,Bin Li +101905,Monika Schnarre +87006,Natalya Vavilova +87425,Robert Liensol +141618,Anders Eriksson +3476,Peter Capell +103951,Frederick Vogeding +44408,André Thorent +16782,Monica Bleibtreu +117051,Darcy Fehr +21063,Pamela Adlon +1650067,Morgan Christopher Ferris +95624,Shirley Temple +33674,Thyme Lewis +2459,Freddie +1841257,Betty Wills Stephens +78861,Amy Price-Francis +151438,Rolf Saxon +129419,Richard Zeman +85098,Troy DeVolld +1335638,Joanna Swain +1232170,Sage Allen +119486,Paul Kruger +10279,Adolf Hitler +1224245,Lise Simms +58516,Beetlejuice +1368070,Wolfgang Gasser +33723,Jess Hahn +24695,Olivia Hussey +33033,Walter Kingsford +42176,Veronica Hamel +85655,Dharmendra +11659,David Bowe +368,Reese Witherspoon +1427882,K.K. Riddle +48465,Andrew Robb +83438,Julia McKenzie +38660,Lee Cormie +13525,Matt Craven +31042,Premsinee Ratanasopha +65748,Richard Fancy +71934,Isabelle Delépine +93421,Jean Sullivan +530,Carrie-Anne Moss +1405550,Hanne Windfeld +1321560,Magdalena Manville +239303,Min Luong +89813,Charles Dingle +234795,Wayne Emmons +7249,Pete Smith +120931,Tamsin Greig +1076566,Ricky Liu +14261,David Niven +34101,Tom Steele +218664,Jarma Lewis +26731,Arthur Wong +1215803,Kenneth Moskow +1457125,Fabienne Chaudat +1661643,Jerome Vivona +1126362,Gracita Sacromonte +22554,Tina Caspary +3442,Mickey Shaughnessy +53597,Daniel Do +1427707,Gustavo Hernandez +588158,Margit Evelyn Newton +106669,Jewel Shepard +68384,Claire Rushbrook +1906,Scott L. Schwartz +17348,Muse Watson +60877,Carol Sutton +78399,Clay O'Brien +101253,Marc Trottier +1388780,Everett McGarrity +34588,Jacques Maury +71561,Jo Harvey Allen +1857457,Roy Garcia +1176507,Albert Pollet +229,Peter MacNeill +173133,Robert Himber +1853265,Craig Patterson +7472,Richmond Arquette +14438,Henry Bergman +37059,Nicholas D'Agosto +143205,Josh Clark +1629453,Manop Boonvipat +160423,Merete Van Kamp +1502410,Christian Bianchi +43774,Daniel Roebuck +9880,Sam Shepard +19782,Harry Holcombe +1490176,Seung-chae Lee +3639,Madeleine Sherwood +135051,Ann Marie Lafferty +59926,Jesse Moss +51298,Dax Shepard +53580,Willy Rachow +131544,Lucio Villegas +1776510,Cricket Hamar +35847,Donald Curtis +217906,Annie Hayes +58959,Damaine Radcliff +86938,Tim Ware +1465721,Beverly Overstreet +120601,Cassidy Cirka +1629439,Panitan Mavichak +1020723,Evgeniy Urbanskiy +1502519,Randy Falcon +121003,Nigel Patrick +240050,Richard Courcet +168788,J. Adam Brown +7682,Anthony Dawson +175871,George Orrison +223290,Shôichirô Masumoto +1066004,Victor Power +65302,Leslie Ash +944548,Branko Tomovic +100581,Lenita Lane +1456300,Bryna Weiss +240127,Eric Gores +75892,Tiriel Mora +145832,Lilian Bond +1673515,Ray De Ravenne +158293,Jeremy Child +27822,David Ryall +43816,Frederick de Cordova +29315,Glenda Farrell +158713,Jamie Abbott +20446,Mimi Abonesh Kebede +8925,Emmanuelle Seigner +1616204,Al LeBreton +1307798,Lara Rodrigues +1444521,Zinedine Gaceb +551872,Ho Ying Sin +153535,Jerry Jones +35055,Manh Cuong Tran +1662013,Bernard Sell +51962,Bill Cosby +15565,Jennifer Hudson +100796,Tor Johnson +97708,Lisa Freeman +15425,Neil Young +4996,Tatyana Ali +942055,Kris Park +77906,Yann Collette +1816294,Alejandro Gancé +1390470,Katerina Mechera +28747,Humphrey Bower +32511,Marina Hands +1781168,Antoine 'Doc' Judkins +112346,George Stanchev +22384,John Amos +113491,Cy Schindell +24407,Ann Petersen +110101,Knut Walle +2124,Iman +40279,Jenna Elfman +35810,Juhi Chawla +1036218,Jose Montini +34550,Alan Stocks +29224,Nikki Blonsky +59535,Iván Helguera +213511,Tatsuo Saitô +534231,LisaGay Hamilton +137402,Frank Brownlee +1655281,Aldo Parodi +1460999,Tony Sears +62055,Alan Zweibel +85106,TeeJay Boyce +147291,Erik Silver +102947,Mireille Dargent +1704740,Adam Jeremy Williams +1074924,Rafa Castejón +65261,Angelica Lee +52141,Robert Jayne +981049,LuLu Ebeling +68812,Ed Asner +1224257,Elizabeth Norment +17076,Alvaro Roque +57991,Wanda De Jesus +1235193,Brad Silverman +24529,Chuck Borden +5695,Sid Haig +73713,Philippe Caubère +146492,Gwendoline Hamon +76943,Mel Raido +12410,Bo Hopkins +1704725,Jeff Rosenthal +98568,Paul Robeson +10862,Dominic Purcell +1212040,Mari Gorman +44234,Jean-Marie Winling +59804,Ken Gampu +79538,Khalil Kain +85008,Sol Kyung-gu +1026534,Cindy Grover +1407086,Tang Cong-sheng +33052,Luke Edwards +171747,John Costelloe +998312,Roger Rignack +548351,Pierre Rosso +1765317,John Louis Fischer +1593811,Jiro Wada +6566,Sherri Brewer +109043,Rebeccah Bush +1013093,Debashree Roy +1728658,Daniela Jaeger +75253,Emily Hamilton +7634,Pamela Sue Martin +42566,Adrian Dunbar +4661,Benito Stefanelli +77520,Ron Prather +1497332,Gisèle Trépanier +203407,Sasha Neulinger +20196,Boyd Banks +1885589,Ken Farmer +6200,Diane Venora +97785,Ron Frazier +235139,J. A. Preston +30435,Flora Montgomery +17184,Phyllis Somerville +1193328,Joshua Hill Lewis +2417,Maurice Bénichou +70696,Kimberly Williams-Paisley +80868,Joe Piscopo +82804,Dominic Anciano +30215,Grant Mitchell +1330755,Isabelle Champeau +37043,Taylor Negron +134890,Hannah Higgins +688,Hermann Beyer +20753,Fred Willard +85941,Robin Raymond +1866973,Claude Davy +1121,Benicio del Toro +62890,Sofia Vladu +175087,Carrie Nye +551622,Sopol Duriensuk +1459213,Christine McCorkindale +1346931,Dang Taai-Woh +427933,Bérangère Haubruge +3641,Vaughn Taylor +275014,Michael Kraft +551512,Robbin Julien +589221,Bruno Ortenzi +37204,David Warshofsky +44350,Skip Martin +56830,Brigitte Lin +35328,Ray Sager +1880444,Anthony Rogers +734,Paula Trueman +937929,Carl Rux +52144,Lana Clarkson +557053,Märta Arbin +43139,Alan Devlin +12041,Julia Stiles +940329,Herbert Corthell +52822,Beverly Anderson +18473,James Badge Dale +32593,Steven Brill +73981,Leonard Maguire +55701,Chubby Johnson +1087,Lars Rudolph +21083,Andy Stahl +85957,Sarah Edwards +4938,Vanessa Lee Chester +62010,Portia de Rossi +84285,Yvonne Romain +1194262,Brian Hamill +1896881,Diarmuid Ní Mheachair +52647,Shawn Hatosy +1434259,Ky Robinson +13822,Leona Roberts +28044,Merritt Wever +100114,Eva Hamel +121144,Joseph Campanella +1757136,Lorenza Frigeni +1214418,Becky Thyre +778,John Ashton +21682,Jo Ann Marlowe +1184028,Michael Winther +560263,Danielle Ornelas +69502,James Lashly +95345,Ken Ogata +85095,Sarah Sido +1748125,Tim Glenn +143191,Huang Chung-Hsin +28657,Matthew Fox +1856504,Jeff Calder +1669267,Alex Madison +1453670,Richard Golding +1077730,Angus Burgin +131483,Sonia Torgeson +198900,Peter Sproule +1284628,Darren Prolsen +51041,Billy Otis +29096,Peter McCauley +154695,Ashley Gardner +1447585,Kevin Reid +551616,Busarn Thongtiw +17528,Javier Coromina +83908,Daniel Massey +1059634,Emmanuelle Sallet +30201,Wilfred Lucas +1019852,Marcella Wright +103922,Gladys Blake +43524,Charles Robinson +64475,Chris Sigurdson +559971,Andy Bradshaw +109875,Sarah Winman +164618,Mike Erwin +42095,Casper Christensen +1467400,David Mcdonald +1857924,Ken Traill +53938,Eléonore Hendricks +69681,Philippe Labro +1904840,Katherine Bean +236565,Hugh McArthur +21757,J.C. Quinn +56394,Kicki Rundgren +74242,Shea Whigham +54514,Buck Damon +10168,Diana Rigg +12299,Richard Bakalyan +1426035,The Ballets Espagnols +1086394,Tyrone Power Sr. +33523,Sonny Saito +65505,Arthur Hill +36638,Maya Zapata +32225,Lindsay Crouse +139690,George Belbin +105209,Bernard Erhard +162813,Laura Margolis +1637460,Ian Michie +1022158,Art Miles +62831,Will Forte +1674986,Xinkang Tong +51732,Rodger Boyce +54414,Jacob Pitts +229670,Sergio Falasca +1426032,Bill Avery +1677000,Regina David +1283842,Carles Canut +1181001,Paco Christian Prieto +182095,John Barrett +32715,Diana Ross +83701,Alex Kingston +8196,Ulrich Mühe +459980,André Holland +1196051,Ka Lee +31977,Morris Carnovsky +81095,Michelle Morgan +132491,Anna Amendola +1330772,Gina Gagnon +65553,Bill Graham +1792779,Victor Morris +1079979,Michael Marquez +123972,Stacy Grant +1068453,Gregor von Rezzori +1765273,Harold Mumm +91445,Timothy L. Haffern +172339,Steven Shenbaum +19590,Takashi Naito +84735,Dilnaz Akhmadieva +162522,Blaise Corrigan +1089966,Abraxas Aaran +77928,Bruno Salomone +1349731,Sandra Morgan +1412560,Sharon Harvey +56853,Phil Morris +62253,Justin Kirby +100555,Johnny Legend +81549,Seth Allen +29468,James Bradford +1422893,Al Lloyd +137950,David Lumsden +46612,David Clarke +43476,Chloe Webb +29235,Lucy Cohu +155826,Michael Wyle +81071,Adriana O'Neil +17545,Jan-Gregor Kremp +1609253,Kester Smith +14366,Sonja Bryden +69830,Doze Niu Cheng-Tse +47849,Sue Lloyd +12408,Mackenzie Phillips +18582,Nancy Gates +111948,Kojiro Hongo +91725,Clayton Rohner +1752791,Ted Banfalvi +58444,Yui Ichikawa +1609659,Pam Courtenay Smith +66131,Tracey Cherelle Jones +113709,Robert Anderson +205720,Jeannine Kaspar +388114,Austin St. John +78901,Kurt Kreuger +69616,Bianca Kajlich +20001,Susan Hitch +70508,Rita Rudner +17337,Nathalie Cox +20973,Louis Guss +123943,Dorottya Udvaros +1462229,Mari Fletcher +1856478,John Reichert +1431849,Lois James +56181,Maria Mendoza +43443,Kristina Anapau +240799,Fab 5 Freddy +444956,Mary Sheila +564936,Fely Franquelli +100944,Ralph Moody +54885,David Schecter +176093,John Cassady +1853172,Karen Ingram +1206231,A. Madeline Smith +551607,Nonlaporn Sombatruksasuk +1123328,Stefano Masciarelli +110,Viggo Mortensen +105025,George Spaulding +1529596,Heather Neale +80366,Lesley Sharp +1840473,Isaac Maxwell-Hunt +94894,Lalo Rios +109670,Said Faraj +196780,Jim McLarty +3875,Ilse Strambowski +1219474,Charles Kahlenberg +59845,Marcella Lowery +1577015,Brenda Nowatka +146501,Léon Vitale +189883,Juliana Francis +1308727,Željko Vukmirica +935345,Ann Todd +1937,Mickey Rooney +8399,Christopher Fairbank +56978,Jennifer Rubin +1752557,Narinder Samra +9311,Gilbert B. Combs +63311,Shaun Evans +949051,Wai Choy +64681,Mark DiSalle +13602,Joie Lee +1580026,Matthew Storey +65607,Don King +71507,Marc-André Grondin +2811,Jacek Lomnicki +1233076,Christie MacFadyen +51706,Mary Fanaro +1672644,Timothy Dale Agee +54813,Patrice Martinez +7244,Julian Arahanga +940060,John Morley +1217809,Rick Otto +1426138,Kris Lord +1459985,Ryôtarô Kawanami +91624,Peter Hooten +1752076,Charlotte Szivak +884,Steve Buscemi +91261,Ena Hartman +57419,Kristine Sutherland +1422376,Lillian O'Malley +1203933,Judith Gault +12259,Vittorio Gassman +105083,Joonee Gamboa +52926,Mark Phinney +21731,Michael McKean +39113,Christine Elise +1509146,Jack Doroshow +1179091,Taylor Fry +53916,Ralph Brown +1609662,Ted Cruddace +1060571,Ken'ichi Ishii +34168,Frank Hagney +13021,William Baldwin +20132,Jon Foster +1720864,Jo Collins +6890,Mark Damon +8782,Charles Randolph +550143,Olof Winnerstrand +100969,Toni Alessandrini +1219161,Tara Slone +4117,Dooley Wilson +1219786,Sukie Smith +128719,Valeriy Nikolaev +60161,Heidi Hawking +100763,Billy Bevan +128983,Richard Calderon +588565,Jean De Briac +106696,Cameron Dye +10507,Jack Hedley +171242,George Bartenieff +94698,Valeri Yordanov +67833,Eric Stuart +20652,Cecilia Cheung +42967,Arabella Holzbog +1671515,Sam Kitchin +20604,Janice Rule +58741,Phil Reeves +53582,Joaquim Horta +83439,Judy Tyler +1972,Dominique Lavanant +73355,Georgia Groome +62842,Eddie Griffin +1017,Sonja Richter +84613,Madeline Zima +1439593,Troels Richter Knudsen +140572,Patrick Clancey +104279,Sue Vanner +1463137,Alan Lewis +1021756,Guy D'Ennery +185198,Rosemary Martin +1878508,Sharon Jessop +944229,Norma Moore +61159,Billy Merasty +91043,John D. Bair +14592,BD Wong +87478,Kevin Geer +148574,Dorothy Coonan Wellman +570796,Jane Adong +1145861,John Bishop +6401,Rockets Redglare +5344,Meg Ryan +544597,Tamara Garina +1664777,Jacques Leroy +1035098,Ian Roberts +26170,Lucienne Hamon +1046807,Brenda Fowler +1432391,Chick Collins +65020,Victoria Rowell +125514,Eve Gray +1501939,Coleen Maloney +41118,Carole André +571298,VictoriaRegina +1080069,Ross Bleckner +8254,Edmond O'Brien +79889,Andy Harrison +116661,Frank Darien +60026,Michelle Grace +551677,Pavel Marek +127098,Gary Hershberger +72659,Michael Kane +1005347,Sheldon Jett +1776546,Rory Charles Thost +239961,Billy Chow +192602,Birdie M. Hale +34847,Emma Roberts +1765267,Walter Dimmick +171986,Larkin Malloy +144780,Fabienne Babe +5576,Val Kilmer +995741,Mirella Pamphili +1658517,Venus Boone +33394,Maria Doyle Kennedy +1673820,Praveen Sirohi +184973,Suzanne Neve +94350,Chris Sadrinna +56128,Kristy Swanson +82540,Arata Iura +1386483,Сергей Кушнаренко +21152,Nesbitt Blaisdell +1838962,Assy Dieng Bâ +110940,Sammy White +1856480,Kenneth Packard +1364450,Marko Tiusanen +1407717,Gregory Doucette +1571681,Lacey Rae +152666,Gary Collins +14735,Douglas Henderson +32021,Karl Michael Vogler +552095,Kadina de Elejalde +230467,magaly Berdy +53366,Simon Day +19961,Nina Dobrev +240333,Jackson Loo +57598,Daniel Faraldo +103089,Ernest Anderson +74641,Jack McDermott +159261,Brent Sexton +62909,Paul Campbell +91303,Randi Brooks +59602,Brendan Wall +16718,Cosma Shiva Hagen +1502510,Randy Gomes +173666,Jason Done +80719,Cheryl Chase +12371,Richard Cetrone +10657,Shane Rimmer +231009,Florence Wu +79343,Laura Mennell +30711,Kenneth Lonergan +1672959,Chris Edwards +1838950,Erick Patrick Correa +122260,Mick O'Rourke +551602,Ousinthorn Chotphan +1672667,Joel Hurt Jones +1857003,Chris McGovern +114957,William Reynolds +136195,Ted Markland +1064877,Liza D'Agostino +32436,Natalie Moorhead +43132,Michele Forbes +70069,Hans Alfredson +1176950,Sofonda +13994,Leon Ames +1456501,Earthquake +94293,Walter Sande +122282,Sean Huze +140230,Niall Toibin +52419,Josh Hamilton +128484,François Guérin +5905,Hugo Ferro +21277,Mary Tyler Moore +98374,Marlene Willoughby +30697,Jim Meskimen +1220360,Charles De'Ath +210774,Chris Offutt +1600361,Radovan Marković +153619,Allan Arbus +1107517,Janet Gilmore +1613794,Tai Li-Wu +1627987,Jay Phillips +16581,Andy Wood +114625,Iva Franks Singer +1752320,Tiffany Engen +49000,Robert Le Vigan +57434,Amy Heckerling +77293,Charlie Schlatter +552657,Akio Miyabe +97832,Carol Channing +230814,Elize Cawood +1781183,Marielys Molina +32433,Henry Wadsworth +123459,Sully Díaz +65134,DJ Pooh +551824,Eri Yu +1901805,Timo Götz +1879471,Lisa Rubin +551601,Mylio Lau +1474678,Maria Semenova +47032,Emilie Kurz +31309,Hugh M. Hefner +3414,Tony Giorgio +1781221,Linda Lee +1073798,Kim Tabet +90531,Cordis Heard +1557582,Larry Randall +103457,Wende Wagner +1120606,Sue Roderick +12260,Ron Eldard +44687,Katherine Woodville +55084,Sean Faris +582605,Qyoko Kudo +1330746,Nicholas Minchillo +68284,Lorraine Pilkington +2267,Michael Bates +1343369,Hanns Manship +57252,Trevor Goddard +19838,Marg Helgenberger +88620,Lauren Collins +97000,Eric Armstrong +145877,Nick Stringer +164723,Matthew Laurance +161358,Lenore Stevens +60234,Jonathan Kimmel +141619,Claes Eriksson +152703,Sally Kemp +76547,Aksel Hennie +1896854,Mary O'Riordan +56510,Joshua Rudoy +131055,Mario Navarro +21127,Bobby Cannavale +1276434,Tex Driscoll +146877,Marek Bargiełowski +66199,Stacey Nelkin +1331794,Paul E. Short +41125,Eric Allan Kramer +32486,Allen Payne +3123,Amanda de Cadenet +159913,Allison Kyler +23910,Tom Adams +1187577,Connie Mfuku +86824,Jean Brooks +19999,Corey Burke +1678187,Alison Rose +57351,George Gaynes +44963,Nicola Salerno +164235,Ruth Gottschall +34844,Monet Mazur +1744177,Alec Murdock +107707,Reila Aphrodite +94897,Dan White +1552813,Linda Mancini +96072,Jonathan Katz +18178,Laurent Lucas +1047658,Necmettin Çobanoğlu +1200620,Isseu Niang +13908,Krafft-Raschig +17484,Dermot Crowley +128122,Jessica Howell +1741392,Jerry A. Sharp +17752,Donna Reed +1505069,Ralph Brannen +31549,Phil LaMarr +43415,Kermati Desai +33521,Lucas Elliot Eberl +40175,Polly Bergen +18515,Scott Patrick Green +180279,Monique Coleman +1593278,Wong Kim-Fung +34610,Frank Sully +80965,Randy Harrison +1741931,Stephanie Huettner +32990,Sophie Thompson +158356,Campbell Lane +38339,Paul Ronan +102920,Arch Hall Jr. +1194754,Marc Bischoff +41224,Jack O'Halloran +96918,Leticia Brédice +73475,Adriano Giannini +34497,Lloyd Corrigan +1062038,Arturo O'Farrill +10130,Catherine Kellner +34487,Delta Burke +1242308,Ed Bernard +488,Steven Spielberg +580246,Amalric Gérard +4154,Brenda Blethyn +149545,Mark Kriski +1847200,Didier Azoulay +35516,Howard Hesseman +1411157,Gary Riotto +1083422,Malcolm 'Bud' McTaggart +14812,Jeanne Moreau +11043,Axel Zuber +174420,Lisa Maxwell +1894163,Victor Spelta +102757,Mak Wilson +39066,James Villiers +63444,Jung Ho-Bin +44765,William Lustig +60796,Jerry Grayson +122151,Phillip MacKenzie +1741394,Todd Smith +24324,Michael T. Mikler +12000,Harcourt Williams +16697,John Franklyn-Robbins +123323,Jack Blum +7234,Shepherd Frankel +1434984,Nikki Birdsong +95469,Shannon Wilcox +102336,Jack Blessing +1485712,Myarn Lawford +154195,Hugh Dane +1600363,Colin Skeaping +1432396,Howard M. Mitchell +552661,Toshio Fukuhara +34280,Spencer Charters +155209,Matthew Morrison +171030,Jack Richardson +24696,Yorgo Voyagis +1781716,Victor Tatarkin +87858,Kay Hammond +5125,Fatih Akin +229303,Philip Kwok Chun-Fung +1214919,Gil Perkins +39950,Tony Britton +47793,George Babluani +14801,Hal Landon Jr. +57286,Noah Fleiss +83187,Garrett Morris +18325,Jeremy Northam +78062,Aml Ameen +68897,John Harkins +448999,Peter Clayton-Luce +19996,Kevin Bishop +33853,Felix Silla +15824,Chris Mulkey +15760,Josh Peck +94502,Arlene Cockburn +572591,Bryan Johnson +100624,Avery Schreiber +1482288,Jirô Mitsuaki +592841,Hector Sarno +932310,Dick Rush +41958,Robert Flemyng +1456507,John Henry Huffman IV +149405,Mansai Nomura +103753,William Newell +79419,Eddie Rouse +67616,John Howard Davies +1278499,Keith Dunphy +131020,Jun Tanizaki +1223005,Brandon Henschel +1345951,Aleksandra Vujcic +156925,Sydney Walsh +78620,Julie Payne +41406,Stuart Margolin +1674958,Thomas Karle +80546,Sidney Bracey +38951,Reg E. Cathey +134681,Tokusaburo Arashi +583569,Caroline Kunti-Leconte +1238390,Soo Garay +1492304,Denny Sullivan +3360,Joan Fontaine +86994,Kaki Hunter +223817, Douglas Hegdahl +238556,Alexander Pschill +52403,Emily Siewert +1800173,Mansoor Najee-ullah +10882,Rosamund Pike +98089,Bobby Cooper +40394,Kaye Stevens +1886590,Louie Lanciloti +110844,Ben Lam +120473,Brick Sullivan +65733,Rúaidhrí Conroy +15251,Robert Gossett +199128,Eilene Janssen +1434978,Charles Gherardi +1117119,Antonio Canal +1395871,Tom Hanlon +937883,Ji-Tu Cumbuka +1147656,Lorin Raker +941988,Shauna Kain +995587,Chao Li Chi +49740,Daniela Holtz +61838,Glenn R. Wilder +57099,Quinn Culkin +6752,Zeljko Ivanek +73499,Bruce McCulloch +1533602,Sandra Scott +450609,Richard Genelle +58442,Chiharu Niiyama +1297931,Christopher Kriesa +53974,Shreyas Talpade +85099,Larry Fitzgibbon +77498,Lubna Azabal +11587,Sybille Schmitz +134320,Yutaka Sada +89989,Leo Gorcey +120586,Rebecca Morrin +1071306,Dan Inosanto +17639,Chita Rivera +133452,Frank Girardeau +34559,Harold Peary +12763,Joseph Fiennes +16664,Mike Girard Sheehan +1387709,Erika Schickel +252659,Stephen Clark +4935,Pete Postlethwaite +31265,Marshall Bradford +187749,Danny Dennis +70887,Pierre Sanoussi-Bliss +1895803,Pete Atherton +1456545,Char He Downing +1184909,Bruce Alexander +53979,Shawar Ali +10238,Valentin Platareanu +1781695,Joseph Coffey +61407,Sammy Fine +124988,Mark Valladolid +55983,Jim Henson +59873,Debra Feuer +941290,Kely McClung +99752,Jacqueline White +112977,Barry Keegan +74289,Amanda Righetti +965278,Sarah McLeod +1006064,Mike Hudson +76742,Marissa Jaret Winokur +87428,Thilombo Lubambu +134116,Matthew Scurfield +1193473,Steven Rosenbaum +65202,Nicholas Elia +1613796,Liu Ming-Zhe +1656687,Shane Casey +214108,Gary Owen +20503,Scott Mosier +228620,Jaran Ngamdee +1053732,Marco Bretscher-Coschignano +1752717,Arike Rice +37052,Wendy Nottingham +9900,George Pastell +75716,Peter Hehir +1606242,Richard Nugent +20047,Cara Buono +1398251,Jackson Ng Yuk-Sue +1466151,Wilhelmina Morris +1311060,Josh Picker +32391,Tresa Hughes +3210,Sean Stone +1079577,Betty Ross Clarke +57379,José Lewgoy +1089395,Nicki Cochrane +2821,Kazimierz Kaczor +1497311,Holly Maples +1812,Michelle Williams +77022,Kevin O'Morrison +78719,Jon DeVries +59578,Ora Jones +1366,Sala Baker +108098,Danny Zorn +1514927,Nancy De Mayo +581114,Cécile Parès +64093,Anzac Wallace +95046,David Nathan Schwartz +29814,Mae Clarke +11401,John Woo +1230272,Cliff Ellen +7497,Holt McCallany +119882,Robert O'Reilly +6365,Desmond Harrington +106123,Monica Rapalli +244518,Antoine Sire +74906,Lidia Catalano +154217,Louisa Abernathy +5277,Sofia Bénard da Costa +1551263,Harry Davis +31171,Julie Bowen +121714,Jocelyne Loewen +585958,Ronnie Williams +69751,Charley Boorman +1520708,Ljubo Zečević +56896,David Yost +57250,Robin Shou +1301343,Deryck Whibley +37140,Marc Eyraud +55964,Christine Harnos +134770,Nigel Miguel +89162,Ken Clark +1178608,Gina Gillespie +1212485,Eve Plumb +1733575,Ludmilla Nova +16119,Charles Napier +1352518,Sergei Shcherbin +2783,Frank Mazzola +17417,Justin Shilton +15949,Vic Perrin +1183565,Sandra Kerns +96716,William Marshall +1346976,Lau Chi-wing +64796,Tom Holland +1656014,Pete Droge +52300,Claudia Christian +10592,John Lennon +1661587,Tommie Baxter +1781719,Edwin J. Birmingham +156253,LaRita Shelby +50707,Ed Marinaro +44762,Forrest J. Ackerman +1254379,Linse Kessler +33032,Phil Brown +195762,Kerrie Cullen +6102,Lex Barker +170306,Jodi Thelen +52906,Jon T. Benn +9931,Elisabeth Trissenaar +1882505,Zeno Nahayevsky +22159,Martin Clunes +11680,Pauley Perrette +105562,Agnieszka Grochowska +1075818,Christine Claravall +98,Sarah Polley +34657,Ray Barrett +936609,Tracy Curtis +64180,Steve Whitmire +36820,Jenny Seagrove +143010,Tamar van den Dop +30032,Dan Woren +141610,Lauren Vélez +1879800,Eric Nipp +16767,Aki Kaurismäki +1780381,Dane Christensen +121095,Herbert Evans +21180,Justin Bartha +565530,Ezard Haußmann +1117748,Stephen Broussard +1206335,Mladen Vasary +44547,Arlo Guthrie +84617,Zelda Williams +150094,Ben Taylor +1218072,Ellen Muth +78828,Zita Johann +76191,Peter Browne +1121835,André Nicolle +1220731,Barbara Colby +76365,Preston Lacy +153661,Weaver Levy +390839,Jason Tavassoli +78261,Mandy McElhinney +55477,Alan Bennett +61676,Candy Candido +47812,Didier Ferrari +176312,Cameron Thor +99939,Henny Youngman +8256,Anne Heche +1428,Mick Jagger +143620,Jiří Bartoška +1101317,Leoncio Bueno +14736,Albert Paulsen +190088,Danielle Hubbard +87208,Sheila Moore +20508,Iain Glen +205934,Matreya Fedor +152713,Dick Haymes +95795,John Gavigan +50398,Devon Sawa +36586,Paulina Gaitán +145615,Grace Johnston +153315,Eloise Hardt +32885,Michel Côté +92320,Mick Thomson +127252,Sergio Hernández +24808,Michael Anderson Jr. +583312,Jean-Pierre Becker +12149,Richard Widmark +14595,Duncan Fraser +65829,Wood Harris +162381,Rose Portillo +543813,Pauline Carton +975306,Edward Hearn +134807,Helena Phillips Evans +6541,Philip Bosco +1970,Sheila O'Connor +1056131,Paul Simon +6662,Gunnel Lindblom +30237,Clarence Kolb +233185,Guglielmo Barnabò +99841,Paula Shaw +75268,Wendy Roberts +1184830,Prof. Cucco +45283,Letícia Román +8175,Thom Barry +10522,Elgin Lessley +1619132,Allen Bickford +150153,Fu Biao +202575,Vibeke Hastrup +3095,Gianni Russo +2848,Craig Erickson +91446,Rodney Clark +227199,Chris Conrad +2481,Ian Bannen +109406,Grant Williams +38129,Robert Fuller +9780,Angela Bassett +8799,Ulrich Noethen +44896,Duke Stroud +99854,John LaMotta +20602,Ernie Kovacs +1876866,Robert Davis +1748085,Kristen Fick +1347359,Gregg Palmer +1551522,Joey Pizzi +563092,Lesleh Donaldson +1197789,Scott Garland +1234628,Siegfried Fischbacher +10587,Alun Owen +63471,Kip Martin +29395,Marisa Mell +100109,Frédéric Lagache +1299570,Michael Laurence +119867,Tony Azito +214821,Matt Crowley +96967,Pascale Ogier +1225809,Monica McSwain +19616,Vivian Pickles +25780,Pupella Maggio +50974,John Gabriel +37712,Dana Elcar +1197946,Page Wood +56392,Tomas von Brömssen +270182,Bruce Le +1333124,Annabella Andreoli +1514694,Jessica Gormley +1029127,Douglas Cowan +7018,Richard Curtis +66547,Kierstin Koppel +1463147,Leonard Boucher +59118,Christopher James Baker +1289391,Dave Moordigian +15414,Charles Hallahan +82779,Vito Scotti +182258,Natalie Strom +1364563,Mira Waters +18363,Roland Thénot +15973,Julie Newmar +1886576,Larry Viverito Sr. +34423,Ray Walker +14469,Rik Mayall +2179,Suzy Amis +77681,John Matshikiza +1162736,Helen Cohan +1398839,Austin Majors +1778132,Manfred Serner +1581,Mary McDonnell +1074166,Pauline Stone Myrie +125809,John Drew Colt +40056,Inger Stevens +2007,Lew Ayres +125767,Edmund Chen +78518,Jean De Baer +110311,Imari Tsuji +984,Nicholas Rowe +1050336,Jane Howard +52997,Rob Corddry +14853,Michael Alaimo +26721,Iraida Polanco +160947,Morgan Upton +1123,Andy Beckwith +1248977,Belinda Davey +1117325,Temple Nash +1130286,Norbert Heckner +1331672,Rafael Velez +116679,Cliff Norton +591199,Harald Madsen +1752738,Melissa Leifer +117644,Karl Brown +82821,Jeffrey Pierce +37984,Hugh Thomas +198,Dan Castellaneta +1837,Susan Vidler +1077736,James Hamm +3419,Vivian Bonnell +78286,Niall O'Shea +3736,Bilge Jeschim +1444178,Robert Goldman +78116,William Haze +121191,Kazuo Suzuki +7028,Dylan Moran +52833,Ula Fraser +70179,Pierre Barouh +1223695,Darryl Sivad +1192652,Justin Braine +139178,William Ruhl +79420,Patrice Johnson +8226,Billie Whitelaw +1226099,Roger Miller +560301,Karen Trumbo +1785189,Kate Kneeland +1250517,Raoul Curet +12930,Gaby Hoffmann +1115618,June Kyoto Lu +19866,Guillaume Canet +41251,Sheree North +238764,Roger Leenhardt +9962,Davos Hanich +108438,Steve Van Wormer +30016,Edmund Breese +551855,Kazuko Suzuki +1391518,Jan Jiráň +1594636,Vincent Roselli +11154,Matt Ross +1156768,Yehuda Fuchs +144017,Kathleen Myers +289,Madeleine Stowe +62072,Jaqueline Fleming +27011,Vanessa Williams +1234848,Conrad Yama +20361,John Bennett Perry +984619,Vianessa Castaños +7402,Markie Post +588096,Shirley Warde +554044,Julianne Mazziotti +1005339,Beau Holden +651165,Achille Brugnini +555076,Al Pia +11462,Ellen Sandweiss +34945,Andrea Romano +203468,Jim Cramer +23630,Jeff Anderson +29703,Susan Hampshire +6329,Irene Olga López +5578,Debi Mazar +61404,Dallas McKinney +7141,Danny Dayton +99183,Alan van Sprang +1229915,Liza Snyder +1372421,M.C. Hammer +105827,Roberta Rex +326,Kim Basinger +65765,Rocco Sisto +1206238,Molly Cameron +16839,Matt Long +143261,Michael Beasley +64433,Gillian Chung +85651,Judy Holliday +79060,Lottie Ejebrant +60139,Meg Gillentine +80742,Martin Mull +82857,Jasper Pääkkönen +1318970,Pat Walshe +1723685,Ana Paulina Caceres +555077,Reuben Guss +89019,Mimi Aguglia +1733422,Manny Fried +1739329,Leonard O'Malley +7569,Harriet Andersson +1495928,Edward Ivory +1781732,Kristen Schiano +14902,Nicholas Campbell +112917,Stepfanie Kramer +1790433,Ron Gallegos +146553,Peter LaCroix +97065,Richard Kline +53492,Sam Huntington +1857461,Tracy Redington +1174939,Charlie Holliday +52390,Livia S. Reinhard +73194,Barry Primus +22019,Raicho Vasilev +1092715,Sunshine Hart +5963,Magali Noël +1000083,Herbert Heywood +1273849,James Horrocks +1371452,David Cheung +34839,Kevin Gage +1609272,Elliot M. Kaplan +9811,Fred Williamson +1740811,Carl Kasell +1225349,Deborah S. Craig +1417131,Herbert Grünbaum +69055,Jessica Harper +79504,Rachel Korine +616995,Jeetendra +100634,Jo Ann Harris +1459,Tina Turner +84212,Scott LaRose +170142,Deborah Wakeham +1192381,James McCaffrey +1539277,Mary Margaret Patts +110501,Yusuke Oshiba +113018,Gabriel Correa +151463,Charles Horvath +115146,Dominique McElligott +19591,Yasuko Sawaguchi +120759,Pauline Moore +3783,Brigitte Bardot +554413,Alejandra Gollas +60953,Erinn Bartlett +540487,Alex Wiesendanger +1083344,Robert Patterson +174454,Frank Gallegos +20082,Michel Vuillermoz +52899,Dong Yong +138646,Cyrus Elias +40526,Georg Friedrich +1571861,Rob Maxey +135662,Jaromír Kalina +1802887,Greg Noonan +1484288,Shuhei Sugimori +17641,Denise Faye +93226,Katherine DeMille +26860,John Sessions +1214165,Michole Briana White +152705,Steve Bond +59789,Pamela Gidley +968007,Haley Busch +938247,Stefan Mehren +98450,Paul Birch +1364322,Carlton Chance +1487415,Lucio Villiegas +580228,Roger Caccia +1659314,Frank Maraden +42015,Ariel Galvan +12672,Carina Lau +88966,Billy Porter +14638,Angelika Bartsch +43137,Claire Connor +1219440,Geff Francis +1507170,Lionel Dozier +1748666,Leo Gosse +22489,Caren Kaye +54395,Guy Bonnafoux +39187,Olivia Colman +1183818,Toshiaki Tanabe +126741,Kim Ho-jung +1482647,Shu Komoro +209380,Richard M. Davidson +1187218,Warren Davis +4344,Reinhold Schünzel +53365,Matthew Fenton +133957,Luoyong Wang +9436,Kenny Alexander +133580,Meg Kasdan +1413940,Billie Gibson +112692,Robert Maillet +103366,George Murphy +105303,Fred Melamed +194335,Wayne Armstrong +4030,Martin Klebba +921738,King Baggot +11110,Kate Ashfield +30203,Fred Malatesta +18192,Jason Bernard +105358,Michele Starck +170153,Dean Denton +533325,Chieko Baishô +7641,Anne Revere +1319161,Helen Dunbar +102690,Stoney Jackson +1896859,Shane Nott +1330749,Jere Gillis +96999,Dustin Adair +79870,Callum Savage +10127,Jon Voight +57449,Jodhi May +1159355,Eugene Beday +1673804,Bunky Fleischman +552606,Kanako Kojima +148606,Marianne Gaba +27267,Rebecca Pidgeon +74722,Josh Jacobson +15988,Charles Dierkop +130598,Fan Siu-Wong +1367499,Troy Robinson +981718,Jean Dubost +91424,Becky Glass +1237531,Eshaya Draper +1348443,Maya Ababadjani +1568976,George Steele 'The animal' +1221064,Michael Hodgson +32995,George Rosener +37058,Anne-Marie Duff +129553,Raul Roulien +1629450,Twich Chombuatong +141244,Rudolph Kovar +1462345,Russell Horton +1378405,Asbjørn 'Bear' Riis +103069,Kenneth Tobey +147489,Takaaki Ishibashi +112231,Mark E. Smith +5825,David Tomlinson +1089390,Connie Embesi +52755,Fran Jeffries +115857,Kea Wong +1752765,Jessica Dawson +103011,John Philbin +51583,Mitchel Musso +3038,Gary Riley +75777,Winston Mangwarara +63141,Ron Donachie +552648,Masanori Tomotake +58805,David Hemblen +10689,Rob Brown +159480,Roy Werner +21519,Kathryn Harrold +1887367,Lew Luton +18177,André Dussollier +3244,Bruce Cabot +109831,Frances Robinson +248772,Billy Milton +160361,Dean Hallo +28165,Jennifer Savidge +1224338,Forbes March +134764,Yolanda Vazquez +56560,Simon Bamford +51495,Malik Diouf +1337842,Michael Glover +1448990,Emily Burns +3514,Catherine Lutz +140234,Anne Bobby +45458,Clarissa Hillel +1704744,Jacky Jack +89661,Robert Osterloh +1123038,Chief Tug Smith +91487,Bruce Kerr +23504,Kiersten Warren +8630,Erich von Stroheim +70260,Dwayne Hickman +95965,Dolores Moran +4743,Jonathan Togo +148115,Barbara Cook +149081,Heather Wilde +148439,Mary Lawrence +74712,Ing-Marie Carlsson +19958,Alberta Watson +157618,Don Pugsley +97315,Neill Barry +101620,Frank Bonner +2411,Clotilde Mollet +1318795,Doris Rankin +231246,Karel Dobrý +33664,Sophie Rousseau +53353,Albie Woodington +1460964,Maurice Salabert +234408,Hana Makhmalbaf +115655,Mutsuko Sakura +82488,Lester Matthews +96142,Wally Brown +102953,Roy Morton +2770,Sal Mineo +22465,Johnny Ramone +169293,Katherine Cortez +1347361,Joshua Marshall +1324,Victoria Burrows +42710,Keegan Connor Tracy +1138079,Wojciech Nowak +78190,Chris Eigeman +76827,Hélène de Fougerolles +1758318,Isabel Jimenes de Cisneros +103957,David Elliott +102580,William Utay +21197,Janeane Garofalo +36422,Luke Wilson +2672,Jack Carson +1513129,Sierra Bandit +115126,Brianne Davis +186977,Suzi Dougherty +91218,John Daheim +1269188,Charles Meakin +9303,Jack +24495,Michel Constantin +150633,Lillian Randolph +1789028,Don Gentry +1290636,Laura Edwards +1651676,Howard DeVoto +146495,Hélène Rodier +79246,William Bendix +1125224,Bertrand Cadart +8891,John Travolta +1176972,Dane Stevens +26044,Bill Erwin +95024,Bobcat Goldthwait +1367759,Florence Britton +21831,Mark Keller +4942,John Diehl +62882,Jack Wilson +1102098,Peter B. Good +140077,Vic Trevino +83981,Jeff Ament +158360,Lenore Zann +2895,Emil Jannings +87400,Brian Bosworth +1772,Anna Faris +9982,David M. O'Dell +6945,K. K. Dodds +96224,Sandra Rodríguez +52882,Candyce Hinkle +127601,Lloyd Haynes +49818,Jacqueline Obradors +38351,Elisabeth Depardieu +6917,Yvonne Bryceland +1507178,Geoff Marlowe +109365,Greg Behrendt +30303,Bruce Bennett +10399,Teri Polo +935073,Charles J. Conrad +116130,Tam Dean Burn +77881,Francis Fulton-Smith +4290,Stéphane Metzger +104007,George L. Casillas +78781,Eddie Shaeffer +60977,Sam Tarasco +1024398,Alana Allen +1720054,Bahrovz Aydini +1645509,Troy Gilbert +1508010,Lola Deem +1101,Carl Weathers +30470,Jun Tazaki +1139747,Grant Forsberg +27753,Colin Friels +39762,Stefanie Powers +155967,Kevin Bourland +116131,Ryan Sheckler +30082,Benedict Wong +79883,Sadie Walters +142736,Sabrina Grdevich +1776540,Jolene Riella +12502,Jonathan Hale +534315,Tom Scholte +56357,Jonathan Breck +1127355,Ferdinando Gerra +213667,Chuck Faulkner +7333,Darren McGavin +1223819,Bryant Gumbel +150174,Laine Megaw +1482977,Claresie Mobley +68396,Michael Thomas Dunn +1266703,Lynda Marshall +78040,Alex Kendrick +1507568,Moharram Zeinalzadeh +17073,Harris Gordon +12073,Mike Myers +29273,Gilbert Roland +1423898,Andrew Hawkins +1281528,Monte Starr +1602370,John Kazek +59874,Robert Downey Sr. +28782,Monica Bellucci +1265959,Chan Ging +1857415,Jerome St. John Blake +1564961,Charli Barcena +3062,Daniel Wyllie +20234,Fanny Ardant +26911,Gert Haucke +46772,Marc Blucas +79931,Caroline John +92855,Aimee-Lynn Chadwick +33712,Carlos Carrasco +550537,June Preisser +1285239,Lizzie Curry Martinez +98164,Bruno VeSota +1879502,Ed Peterson +131290,Tsai Chen-Nan +1813575,Korla Pandit +5937,Kari Matchett +150697,Ko Chang-seok +14361,Howard Freeman +76414,Ariel Gade +1577163,Adalberto Cortez +18364,George Segal +1812174,Haley Peterson +199755,Martin Dempsey +982412,Colin Rix +1191427,Joe Morrison +930569,Baba Zula +1326566,Jean Degrave +936660,Eva Williams +588034,Manuel Aranguiz +1770539,Paul Dungworth +153940,Tami-Adrian George +1289290,Igor Bubenchikov +1062527,Tex Cooper +35765,Sulabha Arya +1838953,Marie-Louise Shedeye Diiddi +1393330,John A. MacKay +1147860,John McCormack +1672954,Kelly Nielson +552182,Rinsaku Ogata +19860,Karl Yune +1406142,Gábor Salinger +78020,Mitch Cohen +27396,Sônia Braga +60925,Tricia Peters +48179,Elfriede Irrall +1987,Melanee Murray +1465293,Dieter Wardetzky +19097,Doro Merande +10923,Jürgen Tarrach +174426,Ivan J. Rado +106968,Earl Ellis +8610,Susan Backlinie +4353,Peter Lawford +92490,Edward Conna +1093717,Kay Armen +52996,Heather Goldenhersh +61105,Floriana Tullio +62100,Robert Harvey +1202533,Seth Howard +1611,Alberto Ferreiro +32029,Bill Sage +96623,Richard Dawson +68395,Gracie Bednarczyk +1281023,Annamaria Janice McAndrew +71648,Oscar Beregi Sr. +321845,Tor Borong +77691,Kim Borrell +947789,Nicholas Amer +16274,Dominic Guard +1158103,Xavier Boiffier +53917,Danny Webb +1575805,Amir Derakh +1723432,Ghylaine Dumas +107009,Badja Djola +50782,Raf Baldassarre +148302,Serge Davri +64913,Marie-Anne Chazel +111167,Jane Rose +204411,Steven Martini +239171,Lhakpa Dorji +1423323,Walter Lawrence +1366361,Chris Ratz +6609,Theodore Bikel +120703,George Sorel +58277,Kathy Ireland +57823,Marylouise Burke +590520,Leonard Sues +138568,Juliana Donald +122430,Eitarô Shindô +1197566,George C. Pearce +49425,Annabeth Gish +937317,Crystal R. Fox +1723434,Sabine Guilleminot +1014834,Jack Perrin +89102,Clarence Wilson +945445,Iva Jean Saraceni +82344,Romy Windsor +48526,Markus Maria Profitlich +20747,Joanna Gleason +129971,Kang San +55105,Gero Camilo +1219097,Penny Bae Bridges +84755,Yosuke Kubozuka +29406,Joey Ansah +60093,James Carville +4332,Greg Noll +86997,Gene Jackson +231918,Barbro Hiort af Ornäs +105003,Zoe Trilling +237119,Hung Wai-Leung +189862,Ian Ellis +932227,Luther Ingram +84773,José Chaves +59826,Natacha Régnier +8638,Anna Q. Nilsson +199640,Laurel Cronin +60830,Hannu-Pekka Parviainen +50658,Akira Nakao +10190,Jill St. John +1800126,Glendon Gabbard +109764,Jimmy Noonan +88163,Marjoe Gortner +91434,Rosanna Iversen +1076612,Peter Orlovsky +1582853,Cheryl Klein +75272,Keeryn Gill +39464,Tamara Taylor +5961,Anita Ekberg +73568,Ryan Wilson +1521391,John Meredith +6575,Gil Bellows +81852,Takeshi Aono +1254711,Denis Karasyov +103176,Fritz Leiber +6070,Arjay Smith +54722,Laura Marano +1935,Buddy Ebsen +1040441,Christine Noonan +35104,Renato Carpentieri +1781691,Katya Savina +96538,Ginny Yang +64160,Robert Fyfe +5657,Anjelica Huston +1188795,Velvet Vale +36816,David Sparrow +2714,Lance Henriksen +134906,Pat Kane +141242,Ed Meekin +176976,Richard Panebianco +22297,Kyle Gass +29223,Elijah Kelley +77485,Luana Anders +1203319,Paul Eagle +37861,Milton Rosmer +21942,Max Ryan +3086,Richard S. Castellano +5077,Valeria Bruni Tedeschi +1246209,Diane Sherry Case +1091289,Frank Whitbeck +1139456,Alan Marcus +134635,Tyler McVey +6213,Jamie Kennedy +1712378,Kimursi +4818,Roberto Benigni +64436,Daniel Wu +8351,Frederic Forrest +34277,Thurston Hall +1357760,Zoot Lynman +135041,Craig Bonar +102440,Suzee Slater +1491009,Peter Blackwell +9981,Sean Frye +96922,Rain Phoenix +1191019,Clarence Hennecke +33160,Anne Canovas +114633,R.J. Miller +1546547,Virginya Keehne +93420,R.A. Dow +1200793,David Harold Brown +58595,Cherilyn Hayres +1841,Mhairi Morrison +16910,Emma Friel +1569421,Kathy Larson +85351,Graeme Blundell +555072,Charles Lee Jr. +10582,Daniel Sunjata +159129,Phil Brock +26857,Philip Martin Brown +61938,Zoe Thorne +26231,Walter Richter +47850,Danny Schiller +1050090,Cris D'Annunzio +106633,Lyn Harding +3282,Sara Gilbert +1218227,Saycon Sengbloh +2051,María Conchita Alonso +69935,Eva Bartok +1853168,Mike Watkis +21240,Nadia Cassini +61350,Heather Mitchell +22128,Geoff Stults +5082,Jacques Bonnaffé +1196400,Charles Pierce +121209,Robert Carson +114579,Peter Viitanen +146757,Lorna Poulter +1390442,John Hammil +1358814,Go Shut-Fung +1200456,D.J. Harder +14344,Stuart Wilson +112198,Nicole Courcel +43680,Bill Treacher +33182,Jay Laga'aia +25626,Robert Ridgely +12134,Sally Kirkland +21594,Chris Klein +72912,Axel Strøbye +35257,Timothy West +1444490,Charlotte Gamberg +199198,Erik Silju +6120,Bodil Jørgensen +1038575,Gennadiy Yukhtin +110455,Tony Booth +71659,Charles Gunning +1356539,June Broughton +65598,Tony Jay +4987,Omar Epps +10775,William Daniels +975564,Anna Manahan +38226,Caroline McWilliams +1240845,Christopher Riordan +22434,Betsy Russell +12313,Earl Holliman +1328812,Theresa Bell +1070666,Ken Nagayama +1256162,Tadhg Murphy +1558226,Megan Gallagher +61323,Dan Ziskie +1472601,Lev Mailer +1482638,Kyoko Kurisu +17183,Jackie Earle Haley +67215,Brian Hibbard +116157,Vesa-Matti Loiri +1664216,Nils Moreau +31702,Hardie Albright +109707,David Bair +71641,Hitomi Kuroki +1053296,Rick Cordeiro +1092640,Peter Harryson +33488,Helen Slater +4756,Matthew Broderick +57198,Dana de Celis +567104,Sally Bondi +1577155,Manuel Viescas +104000,Justin McGuire +41689,Rue McClanahan +1538453,Michael Lees +1206232,Amy Styvesant +30000,Bebe Daniels +1681444,Frank Lazarus +39757,Fabian +552646,Akiko Nomura +1485644,June Harris +78780,Sonnie Sands +2645,Adam Williams +143204,Jan Hoag +84923,Steve Rosen +20125,Clifton Webb +1381493,Matt Mangum +123720,Bing Russell +58042,Linda Hoffman +931174,Emil Chow +61584,John Forgeham +34294,Edward Gargan +7133,Max Casella +32807,John Surman +1292,James Fox +84383,John Ashcroft +1409199,George Neville +62525,Jeanie Calleja +1205726,Alec Stockwell +65011,Pat Thomson +77482,Ken Sansom +59257,Maria Thayer +6199,Miriam Margolyes +61425,Joe Whyte +1234578,Robert Burton +10357,Jean Pélégri +14531,Rico Alaniz +1723436,Beatrice Meyer +107499,Parnell McGarry +134724,Suwinit Panjamawat +25702,Rhona Mitra +1720055,Ziya Babai +1314357,Eddie Driscoll +1073850,Don Gordon Bell +166772,Joy Behar +3388,James L. Brooks +58649,Teddy Wilson +72495,Nenji Kobayashi +227086,Nao Nagasawa +1814427,Tom Gehrke +1857433,Tyrone Tyrell +1308770,Nelson Andreu +12106,Aron Warner +142204,Andy Umberger +1752720,Reggie Jackson +1223862,Mark Richard +177425,Bill Boggs +14502,John Ireland +9068,Ray Bolger +99937,Amy Farrell +1773787,Jessica Asher +1059870,Tsutomu Takakuwa +1411061,Mark Mottram +1130008,Mario Valgoi +59407,Susan Messing +1552811,José Rafael Arango +554622,Hwang In-Shik +46594,Brian H. Dierker +189721,Miho Nikaido +55643,Prunella Scales +228954,John B. Crye +1650058,Patrick Carroll +114143,Nils Brandt +9048,Clark Gregg +81512,Ignazio Oliva +553215,Jean-Pol Brissart +586106,Pau Poch +1199748,Kim DeLong +1441532,Greta Martin +2641,Martin Landau +120748,Walter Fenner +7301,Anthony Perkins +120875,Frankie J. Allison +2077,Laurence Luckinbill +882,Liv Tyler +57675,Daryl Sabara +80482,Gary Weis +18589,Lee Majors +1781700,Francis Toumbakaris +1089920,Tim Connolly +226031,Timo Lavikainen +20155,Dorothy Dandridge +40258,Kyle Secor +1649568,Jarin Phomrangsai +932224,Carla Thomas +25789,Eleonora Rossi Drago +1402117,Kerry Rossall +112342,Nikolai Binev +43304,Richard Blackburn +1857005,Colleen McQuade +84213,Bill Farmer +982089,Tere Livrano +61161,Ralph Alderman +86310,Connie Britton +1752713,Eboni Nichols +1218306,Graydon Gould +2136,Michael Emerson +1728653,Christiane Reichelt +80496,Roberta Tovey +5471,Naveen Andrews +44150,Blu Mankuma +122119,Elizabeth Hoy +1289890,Kristine Blackburn +1656017,Julia Decker +36189,Paul Schulze +110122,Antonio Mora +1660633,Joelle Jacobi +18586,Moroni Olsen +95009,Neyle Morrow +96537,Yves Rene +164416,Hardy Rawls +1576549,Nicole Parker +52819,Winston Stona +557533,Walter Soo Hoo +552659,Toru Uchida +17271,Brandon Routh +10205,Sigourney Weaver +1195359,James Lovell +37439,Pierre Epstein +1140276,Aomawa Baker +19301,Yevgeni Lazarev +203801,Katie Gill +49458,Salvatore Borghese +60163,John Kirk +106120,Jeff Duus +59315,Olivia Wilde +43446,Natalie Ramsey +4445,Chris Bauer +44883,Guy Rolfe +112355,Helen Mowery +15442,Jimmie Ray Weeks +51384,Missy Yager +554626,Robert Chen +20281,Peter Williamson +18340,Massimo Girotti +106772,Max Wright +1472489,Loren Brown +17006,Ariadna Gil +60071,Kallie Flynn Childress +10462,Geoffrey Keen +1375070,Pat Johnson +61555,Haley Ramm +7708,Arsinée Khanjian +44261,John Rubinstein +17260,Antony Cotton +136045,Earl Pennington +163838,Mark Casella +1781349,Robert Myers +147016,Pablo Verón +180822,Robert Hawkins +1089391,Jonathan Cavallary +1366356,Jason Burke +1677324,Vernon Rieta +85359,Dan Tobin +1128247,Martin Cichy +22969,Jane Asher +69614,Brad Loree +228958,Pamela Jean Bryant +984870,Aldrich Bowker +1484328,Toshihiko Nakano +211929,Johnny Chavez +119404,Margaret Early +4204,Antone Pagan +34758,Joseph Cawthorn +7268,Max Perlich +1262680,Forrest Robinson +140058,Alexandra Auder +203177,Kieran Hardcastle +73249,Lee Jung-jae +15566,Sharon Leal +39960,Alexandru Potocean +96159,Richard Wilson +27172,Peter Guinness +29521,Tim McCoy +105387,Donna Corcoran +7202,Vittorio Storaro +182054,Lisa Faulkner +119431,Saro Urzì +1371116,Ebrahim Sheibani +19871,Lars Arentz-Hansen +95664,Ed Byrne +43933,Adrien Dorval +89609,Al St. John +55115,Nathan West +3753,Giancarlo Giannini +69504,Debra Mooney +2064,"Morton Downey, Jr." +49487,Richard Sammel +117187,Reno Wilson +3896,Liam Neeson +9642,Jude Law +82677,Lynne Roberts +105791,Charles Andre +58528,James Urbaniak +16559,Alf Humphreys +64210,Maïwenn +1265420,Georg Schöllhammer +117265,Bucky Lasek +1741408,Phil Latzman +78214,Mark Caso +6497,Naseeruddin Shah +29977,Tom O'Brien +183856,Harper Flaherty +1633842,Leo Lewis +63933,Deborah Richter +234161,Anna Przybylska +17346,Robin Tunney +1881923,Valentina Markova +1310813,Maria Beck +58119,Austin O'Brien +67380,Jordan Warkol +87004,Aleksandr Fatyushin +55275,Jernard Burks +550559,Mieko Suzuki +126534,Toyah Willcox +78434,America Olivo +101768,Virginia Vincent +1784320,Jordan Alexander Hauser +14955,Peter Arne +30557,Walter Coy +401445,Jeff Ho +1776500,Keli Murphy +57143,Mark Dymond +35029,David Harbour +931390,Hiroshi Hasegawa +6664,Anders Ek +68642,Mildred Dunnock +410,John Carter Cash +4968,Frank Wolff +1348803,Gordana Radosavljevic +990,Frank Harper +25540,Sandra Oh +590,William Sanderson +1849159,Larry Dobkin +167718,Grace Phillips +3811,José Sancho +2639,Eva Marie Saint +1077830,Joseph Mateo +89186,Mildred Harris +48518,Metin Ilica +106124,John Oblinger +118310,Fred Essler +201073,Steve Mousseau +1666903,Kenneth Londoner +1838960,Abdou El Aziz Gueye +24321,Victoria Shaw +34486,Ashley Johnson +1537391,Jan Teplý +18709,Ron Masak +140054,Isabelle Weingarten +1010125,Claude Heymann +5500,İdil Üner +94889,Joanna Moore +1449320,Akio Nomura +61611,Eric Balliet +1284767,Wedgwood Nowell +552194,Kazuo Katô +1749199,Metin Marlow +565206,Joe Ely +1664821,Linda Carpenter +30527,Charles Bickford +124285,Hannu-Pekka Björkman +1574936,Mark Falvo +102096,Antonio Molino Rojo +213493,Teiji Takahashi +29225,Taylor Parks +231801,Gerry Duggan +117775,Elaine Kao +81973,Peter Virgo +1439728,Kate Lansbury +1444482,Karsten Sø +34695,Sherry Lansing +59713,Mpho Koaho +84478,Chastity Ayala +5962,Yvonne Furneaux +39430,Don Hood +1875,Rufus Beck +1364324,Lex Daniel +548193,Jasmine Maimone +17236,A.J. Cook +5729,Kim Novak +1423398,A. Frank Ruffo +1077728,Terry Wells +105081,Ken Metcalfe +118984,Kan'emon Nakamura +30018,Edgar Kennedy +55153,Fiona Loewi +104637,Jessica Rains +1074064,Jo Seok-hyeon +63440,Im Ye-jin +95517,Justina Machado +1345474,Jean Schertler +552656,Atsuo Nakamura +1778256,Melissa Pouk +134406,Toranosuke Ogawa +1366370,Deshaun Clarke +43893,Kimberly J. Brown +88960,Babe Ruth +1035801,Douglas McPhail +1371119,Homeira Riazi +1080072,Alice Vaughn +1020736,John Yost +35064,Ronald Lewis +85649,Piero Mazzinghi +17262,Carlton Headley +12851,Ally Sheedy +47397,Andrew Cruickshank +98317,Lisa Gaye +49938,Bert Williams +80445,Ryan Tasz +4118,Joy Page +47680,Ronald Ward +33776,Jack Mulhall +85163,Benoît Brière +82552,Dallas Adams +100864,Damon Redfern +10652,Suzanna Hamilton +4111,Ingrid Bergman +1114602,Maylin Pultar +1268901,DeWolf Hopper Sr. +88768,Michael Wayans +5254,George Voskovec +13262,Lou Wagner +97042,Theresa Harris +94958,Iddo Goldberg +82187,Mathias Mlekuz +106665,John Dresden +945583,Wong Tin-Lam +551776,Masahiko Tsugawa +970634,Cliff Burnett +7124,Ray Milland +30585,Brenda Vaccaro +555329,Greg Funk +1717651,Beth Ringwald +58427,Scott Hazell +1254016,Ellen Horn +50402,Nicholas Sadler +19201,Nicole George +9599,Cloris Leachman +6556,Manuel Le Lièvre +5367,Zach Braff +239526,Shûji Ôtsuki +1061015,Johnny Duncan +14586,Jules +1729788,Annette Robyns +4572,James Allodi +1402694,Bill Reimbold +1183502,Ma Lun +578327,Gérard Sire +1723450,Josiane Couëdel +575450,Kenny Lynch +135134, Frank Nagai +590262,Carlos Álvarez-Nóvoa +107048,Kay Parker +1316028,Eva Örn +579200,Karl Gustav Ahlefeldt +1778250,Manny Kleinmuntz +21730,Joan Jett +11366,Lorenzo Lamas +1090914,Junji Masuda +120679,Eddie McClintock +21298,Ryan Kennedy +61427,Evan Dunn +1437095,Sally Sage +31700,Helga Liné +308779,Raymond Aimos +83550,Robin Soans +48464,Joel Palmer +109439,Kieran Darcy-Smith +146331,Randall Newsome +129723,Ken Olin +50929,Arturo Goetz +19469,Leslie Lyles +1709231,Hans Salcher +2055,Robert Davi +54886,Molly Griffith +79508,Nigel Cooper +1415419,Janet Sully +783,Jonathan Banks +1247932,Michael E. Perry +107432,Barbara Murray +19281,Claudia Choi +1877407,Warner Wolf +33761,Isuzu Yamada +1173817,Brian Protheroe +12156,Alan Baxter +78837,Brooke Burns +96384,Miroslav Krobot +1317954,Nick Lukats +1748113,Sal Vassalo +26203,Bruno Lastra +5417,Carsten Norgaard +4158,Susan Traylor +39142,Michel Modo +10648,Michael Kitchen +1559604,Joonas Bragge +93703,Steve DuMouchel +62069,Danny Jones +231008,Yin Ping Ko +59176,Jenna Boyd +73349,Hugh Gillin +93648,Pablo Rago +199077,Andy Bradford +81687,Rick Avery +940155,Alfred Drake +85646,Elvira Sali +120458,Bobby Hale +10487,Dorothy Malone +56300,László Gálffi +1857002,Margaret O'Neill +62410,Sammo Hung +13345,Gustav von Seyffertitz +14850,Daniel Valdez +238748,Pete Jolly +63446,Kim Jeong-tae +1391612,John Eddins +238563,Fritz Leiber Jr. +1507163,Jody Wilson +1343352,George Smith +1889106,Ruth Russell +1593277,Wong Aau +13939,Ritchie Coster +1857410,George Khan +173693,Tom Quinn +57742,John Stevenson +64948,Cathy Cavadini +147522,Nick Nichols +122101,Armand Cerami +941204,Alicia Bustamante +1107,R. G. Armstrong +9195,Hiroyuki Sanada +77718,Eleeza Hooker +35523,Patrick Laurent +932226,Don Bryant +43414,Smita Jaykar +44935,Lynda Carter +1215855,Jason Narvy +85900,Marion Martin +552514,Kaori Nakajô +147493,George Greif +65240,Leila Arcieri +1436317,Keaton Simons +19144,Shannen Doherty +16214,Mario Van Peebles +1428513,Tereza Srbová +17187,Trini Alvarado +1513483,Liliane Robin +209585,Jack Williams +81042,Achita Sikamana +583499,Meir Suissa +134723,Chartchai Ngamsan +3134,Tamlyn Tomita +1220746,Shera Danese +123317,Parikshat Sahni +1077821,Richard Pates +125841,Alice Brady +1028711,Paul Mulder +120715,Paul McGrath +51989,Jessica Lucas +126051,Richard Foo +555071,Doug Isbecque +207225,Cathy Immordino +47503,Nancy Walker +151232,Wil Shriner +41684,Edda Seippel +111454,Shishir Kurup +430,Hailey Anne Nelson +117837,Miki Sanjo +55959,Mickey Cottrell +35219,Corey Burton +13816,May Robson +166488,Alon Nashman +11608,Marie-Lou Sellem +28066,Theo Lingen +11512,John Heard +19292,Adam Sandler +83149,Willis Bouchey +127629,Michael Harvey +1662256,Jesse Borja +14360,Carol Yorke +54225,Toni Reimer +37049,Andrew Simpson +1190229,Ko Su-Hee +552652,Makiko Kitashiro +1119769,Charles West +42013,Hiram Soto +138531,Kim Su-ro +52420,John Newton +1872784,Margaret Medina +94339,John Baragrey +27660,Roger Hammond +1271019,Fred Santley +118350,Cheung Tat-Ming +1786653,Bridgette Ho +21874,Alan Young +587975,Marcin Walewski +20496,Jason Douglas +1619468,Chris Bearne +70092,Alexandra Dahlström +20511,Chris Barrie +28410,Jake Busey +1067,Marc McClure +21668,Fabio Zenoni +1609238,Don Nahaku +92811,David Wohl +551837,Ken'ichirô Hoshino +44153,David Gardner +1974,Jean-Michel Dupuis +95027,Allan Jeayes +64124,Niels Anders Thorn +8699,Michael Nouri +76528,Tony Nappo +93377,Janel Parrish +65776,Martha Burns +43738,Michael Kind +6551,Mata Gabin +37149,Luis Da Silva Jr. +1190398,Vladimir Basov +44860,Franco Citti +1483451,June Lion +3853,Börje Ahlstedt +111510,Nancy Sullivan +941607,Sid Hillman +14966,Andy Devine +1858659,Mirio Guidelli +81188,Rosalind Ivan +144238,Miki Sakai +1825824,Carmen Aguado +8797,Juliane Köhler +1176900,Toshiyuki Ichimura +52540,Vítor Oliveira +27165,John Hollis +583267,Marta Renzi +1127104,Emilio Messina +1790424,Dudley Swetland +1535174,Bono Dost +14254,Tracy Reed +1328167,K.C. Martel +1265217,Jana Havlickova +65123,Shirly Brener +55645,Victoria Hamilton +558626,Thomas Voss +11851,Om Puri +41904,Tilly Scott Pedersen +100040,Carol Dempster +71027,Kenichi Hagiwara +1853173,Elaine Wood +185296,Charles Maquignon +46001,Kanae Uotani +4171,Stanley DeSantis +1319824,François Aubineau +1622839,Vinnie Torrente +3363,Nigel Bruce +230776,Michael Chow Man-Kin +135571,Robert Deacon +132704,Kevin Coughlin +1234615,Frankie McCafferty +26486,Bill McCutcheon +19370,Anne Le Ny +17736,Adam Pascal +94699,Dejan Angelov +1061236,Nobuo Kyô +54884,Tara Elders +92412,Hanna Alsterlund +174106,Keith Flippen +114020,Katie Volding +1405826,Page Williams +1464109,Peggy Aitchison +1294709,Francisco Moreno +79245,Veronica Lake +1853167,Clint Allen +1389389,India Cooper +37979,Emily Holmes +235349,Troy Ward +203630,Alexia Fast +149862,Chumphorn Thepphithak +131867,Daniel Hendler +1437242,Juanita Fields +30151,Leo Burmester +1348453,Gitte Dan +1033064,Francesc Garrido +553425,Joh Nishimura +99545,Lino Salemme +1534627,David Neumann +2231,Samuel L. Jackson +55271,Steve James +4566,Alan Rickman +148868,Will Stanton +105893,Krzysztof Stroiński +82630,Ashley Peldon +11515,Angela Goethals +137260,Stuart Hall +32120,Walter Rilla +100961,Tamara Clatterbuck +1544178,Maria Tornberg +820,Edward Furlong +1819847,Edward McQuillan +555212,Hiroki Nakayama +150201,Jennifer Wigmore +67817,Alexander Pollock +74036,Tom Arnold +1372431,Yvon Lec +146712,Ted Allan +11558,Eugène Lourié +1054299,Xabier Aguirre +13604,Iggy Pop +5941,Neil Crone +86023,Hemant Pandey +1221149,Gregory Salata +571297,Gerardo Mejía +170609,Ralph Reed +13726,Ned Beatty +89848,Maryjane McKibbin-Schwenke +66802,Karen Craig +1074209,Jack Perry +73677,Takashi Nomura +34543,Summer Phoenix +30368,Jon Kasdan +91361,Hugh McDermott +113670,Youko Sakamoto +1200886,Haruko Chichibu +19975,Michael Rosenbaum +123011,Mario Badolati +1230708,Stephen Churchett +1209722,Laura Liguori +551827,Hiromi Kuronuma +137383,George Mikell +56120,Yuji Okumoto +13281,Ittoku Kishibe +103874,Terri Hanauer +27115,Tamsin Kelsey +1600113,Alan Loayza +120437,Louis King +10195,Norman Burton +936613,Lauren Stanley +91708,William Leslie +1502511,Rain Ivana +1208609,Logan Anderson +1648658,Seamus McQuade +551854,Shigeko Yabashi +1533325,Graham Rowat +1177693,Petre Arsovski +1089928,Robert Paradis +1074682,Kyle Cohen +120010,Queenie Smith +939816,Drummond Marais +29706,Harvey Miller +145717,Dagmar Oakland +146025,Sharon Blackwood +72638,Tracy Letts +30501,Sean McClory +1402314,Doc Lawless +19448,Enrique Lucero +1177316,David Schaap +85895,Broderick Crawford +33731,Jukichi Uno +12988,Paul Michael Glaser +89841,Kay Medford +34519,Kristen Miller +94557,Mark Carlton +1186532,Maria Geelbooi +112363,Harry Green +38171,Reinhard Kolldehoff +7487,David Bowie +17114,John Cameron Mitchell +1650983,Tsouli Mohammed +103617,Riccardo Pizzuti +7026,Rhys Ifans +13805,Dagmar Manzel +36810,Tamara Hope +14481,Lon Chaney +5887,Catalina Sandino Moreno +1133445,Diana Dunkley +72605,Mitsuko Baisho +15800,Don Amendolia +228605,Silvia Claes +30145,Harry Stubbs +97824,Conrad Brooks +164859,Bernie Kuby +1230012,Roy Poole +553455,Adam Vargas +60883,Don Brady +90377,Molly Lamont +40478,Ricky Champ +63978,Jodi Benson +553985,Terence Paul Winter +121331,Fred Farrell +1825709,José Miguel Aguado +970399,Carlos Weber +1835337,Parzaan Dastur +153912,Cristine Rose +1591712,Helle Jensen +1698604,Joshua Tilden +27401,Bruno Bilotta +55029,Maria Luísa Mendonça +20509,Robert Phillips +159948,Damien Leake +1676555,Pulcher Castan +1223076,Evergreen Mak +27708,Pete Handelman +30117,Bobby Barber +1681414,James Brockington +1224363,Shane Conrad +3722,Hans Weingartner +40386,Ted Ludzik +1185640,Katsumi Tezuka +238390,Jean Dalric +1040487,Donald Briggs +6970,Christopher Fulford +3663,Jerry Lewis +81841,William Callaway +17356,Garrick Hagon +1752767,Jessica Keeling +251,Robert Beatty +32682,Stine Fischer Christensen +1225909,Kristie Marsden +83170,Valerie Harper +58078,Sheila Rosenthal +55595,Lubomir Mykytiuk +1781226,Michelle Rouhani +1472,Ray McKinnon +1072437,Brandon Beach +12967,Swoosie Kurtz +81260,Bill Milner +962955,Solange Milhaud +1781815,Henry Caplan +72092,Jewel Staite +79592,Bob Ivy +1217015,Jim Ishida +1236068,Kelly McNair +1668330,Brian McCallister +79888,Tim Potter +1264629,Alma Tell +140345,Mills Watson +103576,David Strassman +75273,Benjamin Rich +171351,Michael Willis +1352517,Tatyana Zakharova +1269159,Ryôko Mizuki +14299,Dame May Whitty +123016,Dirk Blocker +6384,Keanu Reeves +16978,David Mooney +1551013,Florence Rutledge +115432,Bill Johns +1265046,Charley Broderick +187565,Audra McDonald +20863,Werner Hinz +184955,Gabrielle Drake +50217,Michael Kelly +1242258,Jani Lane +99906,John Bloom +76417,Gary Reineke +1886586,George S. Spataro +135352,Kevin Nash +1457479,Nina Polan +1429995,Tina Kiberg +114400,Don Castle +134289,Hisako Hara +938660,Guy L'Ecuyer +78498,Tony Perez +1264666,Max Alvarado +1406140,Torsten Hammann +1704736,Joe Taylor +6640,Ed Stoppard +1268898,Richard Lund +14300,Cecil Parker +1289627,Sid Troy +34757,Mae Busch +85672,Shabana Azmi +1344674,Jung Hee-tae +931198,Rondo Hatton +1405751,Bruno Davézé +1818315,Vincenzo Pellegrino +1378721,Marylou Lim +135673,Ed Viesturs +114580,Ralph Carlsson +1206251,Dan Rogers +24435,Jack Wallace +113390,Khanh Lê +13340,Clive Brook +76800,Tom Minder +52868,Shane Baumel +11263,Peter Franzén +118265,Henrietta Crosman +124268,Kakhi Kavsadze +6835,Walter Bernstein +1523632,Božidar Stošić +10746,Geoffrey Palmer +1218266,Camille Chen +1872825,Richard Gelb +105647,Justine Bateman +1568274,Henry-Jean Servat +198025,Pat Zurica +59697,Kate Jennings Grant +87015,Eduard Fernández +67091,Tomorowo Taguchi +138650,Mario Pedone +154227,David Youse +46275,Raymond Bouchard +85307,Michiyo Aratama +68122,Tim Daly +233294,Sarah-Jane Wylde +76096,Kelly Ripa +79516,Eve Korine +236053,Wendy Lardin +105665,Wilson Tong +74932,Paige Turco +1644186,Jana Thompson +63707,Kazuo Kitamura +49835,Tom Aldredge +27685,Zachary Mott +5538,Ray Winstone +1231930,Rowetta +20056,Keith Allen +126749,Rockliffe Fellowes +75790,Winston Ntshona +34726,Robert Shayne +4808,Giancarlo Esposito +78685,Cameron Bancroft +81179,Frank Lovejoy +30552,Olive Carey +1263504,Joseph DeVillard +521,Michael J. Fox +44351,Samson Burke +1036975,Tony Horton +1776449,Kady Cole +108243,Dennis Adams +554580,Akio Tanaka +1213767,Heidi Sorenson +1265423,Barbara Klebel +36083,Kevin Allen +82348,Paul Kelly +28130,Julius Falkenstein +8211,Mena Suvari +5659,Seu Jorge +1603935,Brian Bosak +27770,Dennis Christopher +85993,Tom Neal +51582,Ned Vaughn +97001,Yakov Baytler +98966,Virginia Farmer +60739,Kath Soucie +9193,Shun Sugata +136514,Dean Raphael Ferrandini +92025,Charlotte Brittain +1752793,Blaine Totten +175678,Karen S. Gregan +99351,Valerie Mahaffey +59846,Joanne Baron +103819,Ann Muffly +1124479,Yun-Yeong Choe +30085,Michael Wildman +116351,Lydia Shum +80458,Shim Eun-Ha +1403301,Emile Genevois +1192949,Joey Banks +16303,Céline Dion +128494,Helen Flint +133566,Joseph Cahill +53211,Cesar Flores +94759,Gloria Estefan +181090,Amy Higgins +985532,Mark Brady +3246,Sam Hardy +532628,Virginia Valli +934932,Beryl Salvatore +1551012,Kathleen Proctor +13967,Shemp Howard +547971,Yun-tae Kim +582057,Astrid Homme +98927,Robert Earl Jones +10825,Donal Logue +40401,Bert Convy +1517885,Steve Behal +144021,Eddie Borden +18792,Delroy Lindo +1674957,Nick Sita +936,Oliver Reed +1444497,Ronny Watt +16940,Jeremy Irons +1331790,James Haggis +57189,Ryan Newman +51501,Amel Djemel +1597344,Clarence Lee Ga-Ho +14422,Charles Henry Smith +2155,Thora Birch +81918,Greg Sestero +143236,Jeff Hiller +171079,Brenda Denmark +105681,Scott Ian +10802,Allan Jones +1169888,Janet Savarino Smith +68313,Giuditta Del Vecchio +105733,Patricia Medina +16578,Julia Nickson +1726177,Ved Bandhu +1186116,Ernie Alexander +1687130,Raul Labancca +27281,Faith Brook +138643,Harrison Muller Jr. +1190705,John McLoughlin +1297705,Leonilde Montesi +18913,Lynne Frederick +1213613,Jeri Ryan +1752733,Julianne Jackson +162641,Brett Butler +90519,Christopher Curry +36888,Lillian Müller +14832,Herb Edelman +1193340,Joe Ploski +1132436,Kôichi Hayashi +18895,Alex Bruhanski +1692550,Teppo Heikkinen +22229,Svein Scharffenberg +64930,Bob Newhart +101250,Kim Poirier +73283,Peter McDonald +8791,Marie-Josée Croze +1406149,Marc Schönthaler +5483,Philip Whitchurch +236849,Yevgeniya Khanayeva +11586,Maurice Schutz +1238392,Cedrick Hardman +23122,Annika Kuhl +1623341,George Blagoi +1081816,Christopher Sands +14544,Penelope Allen +27855,Shannyn Sossamon +987739,Al Kaplon +44233,Mathilda May +182396,Dave Brown +1204218,James Blackburn +35003,Paul Crauchet +1064477,Robert Shaw +1212660,Geri Hall +110274,Michael Colgan +233117,William Stack +7473,Rachel Singer +89938,Earle Hodgins +74622,Barbara Everest +118258,Dorothy Granger +100790,Terence De Marney +1781692,Matthew Djentchouraev +106359,Travis McKenna +1079977,Egor Pazenko +35314,Vivien Merchant +17594,Marie Susini +34468,Sid Tomack +4253,Jon Polito +13254,Tsutomu Takeshige +1218055,E. Katherine Kerr +1264978,Cap Somers +82719,Jon Pennell +14905,Chuck Shamata +103099,Guy Beach +90749,Andrew Shue +1165647,Yuriy Sherstnyov +1879468,Mark Manning +4733,Robert Wahlberg +236116,Dion Lam +952986,Doreen McCann +27128,Aaron Pearl +8616,Robert Nevin +20811,Lisa Brenner +152345,Barry Kivel +120783,Victoria Faust +192838,Eileen Davies +350,Laura Linney +4395,Michel Fau +43662,Anne Suzuki +555194,Yuuki Kawai +472349,Michael Dyson +36812,Sarah Lafleur +1408657,Myrtle Rishell +1030869,Shawn Hewitt +51991,Michael Stahl-David +46395,Stephen Gevedon +10555,Tony Roberts +11013,Dan Harris +62003,James Morrison +41784,Nathaniel Lees +1261863,Polikarp Pavlov +1873994,Georgia Ann Cline +1893430,Don Sommese +1080053,Ramsay Hill +1031275,Leona Maricle +167146,Yvette Freeman +59786,Alyssa Shafer +114021,Kevin Kilner +60542,Matthew Sturgess +1211892,Joyce Bulifant +190895,Sarah Gadon +56247,Enrique Piñeyro +76236,Carla Cassola +5950,Seymour Cassel +113868,Matt Prokop +1422863,James McNamara +1163674,Geraldine Sherman +1281029,Dorian Wolf +87719,Ken 'Bam Bam' Johnson Jr. +122118,Cindy Fisher +57448,Eric Schweig +85940,Arthur Franz +227855,Mona Seilitz +91508,Hassan Johnson +34905,Stephen Ballantyne +75271,Chris Samios +119884,Gretchen Palmer +14454,Murray Alper +1075123,Carl A. McGee +43544,James Greene +84924,Mike Schank +1064453,'Ducky' Louie +21402,Adam Wylie +24595,Vincenzo Nicoli +1609106,Jake Feagai +41236,Ron Moody +71580,Benedict Cumberbatch +131779,Gene Anderson +41087,Leslie Mann +99936,Frank Kress +21163,Gary Cole +1471682,Michael Jeffers +1674587,Al Dubois +179183,Stella Garcia +119781,Joyce Brothers +73456,Lorna Scott +148251,Massimo Ghini +1847231,Ellison Kemp +1735839,Kao Ming +97268,Karl Bury +1649240,Janelle Hutchison +61405,Francesco Liotti +1276607,Daiamondo Yukai +81898,Jo De Winter +153148,Ronald Hines +31844,Ann Blyth +38572,Gavin Grazer +3336,Coleen Gray +1723686,Lourdes Villareal +13010,Kate Maberly +13640,Harvey Korman +552681,Reiko Suzuki +19021,Kay Johnson +1571682,Natalie Carter +936480,Moni Ovadia +19195,Alex Frost +1347013,Christiane Rorato +91971,Friedrich von Ledebur +2812,Michał Tarkowski +1077957,Victor Thrash +1857458,Alex Georgijev +57191,Sam Lerner +1215808,Trisha Goddard +20750,Judy Greer +1316890,Kelly Ko +1736,James Remar +1038480,Rosa Valsecchi +75900,John Lee +52032,Richard Ward +1867442,Silvio Sielsky +12123,Jesse Vint +19143,Jason Priestley +1283200,Joe Leeway +1534332,David Draper +1543340,Victor Romito +1213708,William Marlowe +20828,Yoshio Inaba +26703,Peter Blythe +1419570,Robert Haines +53715,Annabel Kershaw +103574,Meegan King +91461,Michelle Hurd +83796,Lizabeth Scott +99871,Daniel Pesina +33243,Allen Bernstein +84635,Susan Peters +1656023,Anthony Martelli +1514446,Ignacio Peón +61289,Hal Havins +238412,Huang Ha +1889069,Per Westman +60203,Carlton Wilborn +100411,Stefania D'Amario +1032530,Charles Kassatly +99916,Herschell Gordon Lewis +62589,Ellie Cornell +1348441,Sven Erik Eskeland Larsen +149731,Mark Ginther +121766,Jeff Richards +954432,Kay Reynolds +50303,Michael Pate +154694,Alex Black +1356540,Glenn Cunningham +1231983,Paul Luty +62547,Susanna Thompson +166671,Helen Siff +96735,Carmen De Lavallade +27993,Jeffrey Combs +1114468,Gus Kamp +80447,Joshua Michael Kwiat +1729785,Clyde McLeod +183500,Tricky +70718,Gordon Heath +1124,William Beck +58373,James Snyder +246385,Hsiao Ho +8907,Dennis Stewart +1799185,S.I. Hsiung +47801,Christophe Vandevelde +74928,Morgan Alling +1293761,Nathan Christopher Haase +26659,Anthony Andrews +178336,Kay Stewart +65171,Tim Parati +136170,Grégoire Colin +1677032,Makiko Kishi +1217016,David Labiosa +1851411,Ben Haller +127136,Aileen Britton +1853259,Brad Lowder +1741404,Robert L. Goff +13856,Hank Mann +12536,Jack Thompson +69221,Marilou Berry +1220726,Gary Dell'Abate +1607159,Robert O'Neill +47678,Elizabeth Allan +10674,Thomas Wheatley +124848,Francis De Sales +553982,Tenaya Erich +976,Jason Statham +1857422,Mark Seaton +1461219,Susan Brightbill +156875,Myndy Crist +80155,Hollis Granville +12888,Roy Brocksmith +160375,Ismael 'East' Carlo +134711,Amy Smallman +238807,Rafie +45100,Garth Pillsbury +104005,Igor Yuzov +1306050,Rodolfo Bravo +222942,Josse De Pauw +1242148,Ron White +16669,Nicky Blair +1524845,Aline Mowat +2416,Urbain Cancelier +40381,Joyce Jameson +1990,Brian Howe +545849,Jay Marshall +1496,Tod Browning +39028,Jean Anderson +1190704,Jon Garrison +12980,Larry Gilman +77277,Nate Parker +1233183,Laurance Rudic +67773,Steve Martin +143237,Linda Powell +131487,Ralph Lowe +1211876,Anthony Chinn +17753,Lionel Barrymore +1888568,Sasha Chernichovsky +102170,Pascal Druant +205,Kirsten Dunst +1717646,Debbie Pollack +182955,Erika Rosenbaum +12284,Lock Martin +860,Eve Arden +1507174,Maurice Pete Mitchell +934931,Benjamin Lev +37020,Davide Dominici +1089505,Peter Atanasoff +84494,Donald Fullilove +1219313,Fiona Hale +1778262,Tracy Dixon +122884,Paul Nicholas +10400,Barbra Streisand +1416113,Giovanni Guzzo +1204349,Sterrett Ford +59577,Felicia Fields +32645,Marianne Sägebrecht +128404,George Gerdes +1468191,Fred Velasco +856,Ben Gazzara +77806,Nicholas Celozzi +1564,Sofie Gråbøl +14974,Barbara Stanwyck +74686,T. Sean Shannon +1466406,Dan Ford +93899,Harlan Warde +78791,Margaret Wycherly +1840450,Alison McGuire +7568,Dominique Davray +3174,Richard Bright +163280,Tim Considine +3266,Joe Mantegna +38341,Bulle Ogier +1040442,Rupert Webster +4173,Anthony Hopkins +1674955,John Kesler +119666,Soledad St. Hilaire +1559637,Jennifer Lamb +142213,Nazanin Boniadi +50659,Kôichi Ueda +155890,Julie Garfield +1077864,Eva Gholson +85140,Kevin G. Schmidt +1332,Craig Parker +161439,Bibi Osterwald +9831,Vincent Regan +13152,Robin Mathews +2523,Stuart Baird +3669,Peter Potulski +21561,Tim Matheson +579294,François Bernheim +1790449,Kenneth Lanci +120046,Dewey Robinson +36928,Horst Krause +1043608,Glenn Wright +19547,Gregg Berger +1271508,Richard Oldham +78029,Martin Lawrence +1361236,Luciano Miele +932264,June Jeffery +117671,Jerry Hausner +107370,Page Hannah +1178530,Katherine Kamhi +27972,Josh Hutcherson +10609,Hugh Marlowe +553224,Randle Ayrton +93532,Laurent Lafitte +1641228,Josette DiCarlo +11850,Candice Bergen +81960,Tarek Zohdy +64308,Krysta Carter +125574,Nautica Thorn +553446,Katsushi Yamaguchi +6181,Josh Pais +1356270,Paula Mattioli +163671,Will Lyman +18588,Joan Hackett +557054,Jan Molander +159962,Kat Graham +937468,Josep Lluís Fonoll +14519,Richard Bennett +1074154,William Yokota +89747,Mantan Moreland +1797590,Bhawani Sankar +16406,Patricia Reyes Spíndola +1420542,Harry Stafford +37430,Gordon Tootoosis +53584,Alan North +1171593,Ashley Greenfield +77874,Sachi Parker +80582,Brad Bufanda +13854,Harry Myers +145874,Julian Hough +15498,Liam Cunningham +119133,Ray Chubb +3126,Ione Skye +1567504,Gareth Marks +36022,Hassan Hassani +46475,Patrice Melennec +1413335,Chang Gan-Wing +1757130,Giuseppina Langalelli +25174,Vernon Downing +121148,Park Joong-hoon +1530547,Quay Terry +106489,Billy Burnette +140812,Pina Cei +86267,Ana Gasteyer +8490,John Megna +40385,Marcia Bennett +155,Lucas Black +71140,Franco Interlenghi +106161,Noriko Sengoku +13687,Jean-Claude Dreyfus +1874,Katja Riemann +120027,Ennio Antonelli +143440,Angela Burnett +109088,Douglas Fairbanks +548698,Jacqueline Danno +35521,Matt Winston +545351,Frank Lieberman +1609292,Candice T. Cain +58370,Amanda Crew +1193569,Mickey Gilley +237157,Hideji Ôtaki +1403235,Mostyn Evans +98087,Kellita Smith +1158865,Olga Tolstetskaya +1200792,Granville 'Danny' Young +928732,Stephanus Titus +2662,Frank Capra +22494,Arlene Golonka +103773,Robert Livingston +1138493,Ryszard Mróz +30096,Catherine Rabett +21660,Rafi Gavron +938901,Robert Osborne +122981,Harry Keaton +214904,Victor Borge +37070,Heribert Sasse +173192,Jonathan Chapin +134614,Herb Vigran +1385305,Alma Collins +1013995,Eloy Burman +54521,David Vert +102787,Richard Devon +14831,David Wayne +64120,John Matuszak +1398807,CoCo Lee +62071,Dougie Poynter +47536,Cheryl Campbell +76215,Adrian Lester +552201,Yang Chung-Hsien +128179,Max Kleven +85189,Bob Cousy +65831,Robert LaSardo +68446,Fritz Sperberg +4464,Bjarne Henriksen +1101308,Huerequeque Enrique Bohorquez +155978,Joel Stoffer +1426109,Jack Leustig +33253,Frank Yaconelli +1213951,Kimberlin Brown +4455,Ulrich Thomsen +4112,Paul Henreid +2229,Catherine Keener +148048,Jere Viitanen +29381,Nobu McCarthy +1735913,Reginald Stewart +72172,John Alan Schwartz +1420746,Doug Shanklin +10799,Chico Marx +20334,Tsunehiko Kamijô +1867446,Gonzalo Eyherabide +3359,Laurence Olivier +122549,Philippe Vonlanthen +1386486,Татьяна Король +93721,Sebastiano Nardone +148042,Jaana Järvinen +982447,Michele Russo +131923,Osamu Takizawa +1853221,Pam Nielson +3268,Raf Vallone +180830,Kurt Bryant +231010,Wisarup Annuar +55048,Tsipor Aizen +1181865,Andreas Nickl +193654,Tanya Tucker +16103,Keye Luke +103105,Elzie Emanuel +13752,Soumitra Chatterjee +6933,Alan Napier +21283,Lee Richardson +1635972,Roger Willie +1889108,Joanne Zorian +17637,Taye Diggs +99368,Julian Madison +8608,Murray Hamilton +582381,Nadine Coyle +14425,Mike Donlin +106068,Jeanie Moore +1781843,Christina Vinsick +73715,Julien Ciamaca +336610,Jabir Elomri +1661600,Gregory Mitchell +1535187,Natsumi Mizuno +23524,Veronica Ferres +1741962,Clifton 'Troy' Robinson +941550,Moynan King +1639432,Brian Hopson +1265422,Wilbirg Reiter +79539,Jermaine 'Huggy' Hopkins +65145,Liza Walker +10268,Charles Aznavour +1739314,Frances Low +76186,Peter Cummins +34395,Kevin Chamberlin +106101,Tudor Owen +103033,Tony Armatrading +1778145,Magnus Rask +117724,Anthony Sydes +74086,Bill Maher +38651,David Baxt +84490,David Kaye +1559606,Sakari Korhonen +1100323,Jerry Wills +143747,Agrippina Steklova +91962,Sharon Gans +73931,Bette Midler +1299313,Kim Byeong-ok +153443,Phil Chambers +1484312,Reiko Nanjo +16475,Burt Reynolds +54200,Aaron Berg +1428580,Crystal the Monkey +13821,Fritz Feld +1559631,John Benson +7115,Kazimierz Opaliński +1309423,Romulo Yanes +80018,Rachel Skarsten +1018,Nikolaj Lie Kaas +1326503,Élizabeth Teissier +4012,Spencer Treat Clark +167632,Kevin Miles +57626,Joy Boushel +19957,Wendy Crewson +955709,Wolfram Teufel +1081812,Joel Kenney +14500,Jean Simmons +98571,Eddie 'Rochester' Anderson +1468553,Byron Poindexter +1778070,Tony Forsyth +40618,Eileen Heckart +1706741,Sinjin Smith +184881,John Savident +97175,Dick Cogan +1616645,Adrianna Biedrzyńska +54195,Greg Dunham +555065,Andree Maranda +131003,Harry Strang +8549,Scott G. Anderson +1469197,Emmanuel K. Obinna +127520,Ralph Byrd +42296,Gwen McGee +26069,Paul McGillion +1781142,James Perkins +41253,David Knell +128873,Joan Blair +1624660,Harvey Karels +1432459,Jason Collier +1015616,Vanessa Johansson +47458,Zakes Mokae +77684,Sindisiswe Nxumalo +1572024,Kallie Tabor +15851,Amy Brenneman +589138,Ligia Branice +5298,Victor Colicchio +31169,Julie Adams +129427,Anna Kashfi +1349314,Gaspar De Santelices +16867,Luis Tosar +580245,Apollinaire Louis-Philippe Dogue +17276,Gerard Butler +47396,Henry Oscar +117776,Kathy Shao-Lin Lee +1676560,Claude Rossignol +127135,Robert Grubb +28002,John Tormey +9999,Wendle Josepher +26105,Walter Pagano +4534,Matthias Habich +1152729,Paul McAllister +86397,Chad Donella +39002,Freda Jackson +1804148,Ben W. Fluker +69971,Édouard Delmont +82837,Robert Karnes +76292,Wim Willaert +20126,Kathleen Howard +29582,Nita Naldi +2557,Richard Romanus +17859,Wendell Pierce +55265,Jonathan Silverman +160970,Ray Buktenica +1198964,Shane McMahon +107312,Gwil Richards +35754,Sonali Bendre +231219,Don Roberts +578939,Charlie Anson +1167813,Milla Davenport +67916,Mary Ure +2177,Lloyd Bridges +3173,G. D. Spradlin +64102,Christopher Adamson +223818,Sam Johnson +119612,Cheung Ching-Kwok +30844,John Lupton +67786,Joseph Blaire +1894167,J. P. S. Brown +554019,Kôji Shimizu +951813,Heather Karasek +1668099,Trudel Williams +80436,Conor O'Brien +1223812,Ping Wu +1272193,Jack Grey +1147904,Clare Perkins +364611,Charlotte Maury-Sentier +35085,André Penvern +1226782,Eric Dickerson +1448921,Afton Smith +1556460,Johnny Broderick +128631,Tanya Newbould +1470,Wayne Duvall +37044,Patrick Painter +30236,Cliff Edwards +116488,Noam Chomsky +1661612,Rene Ceballos +94941,Gilbert Gil +22602,J. Pat O'Malley +1859762,Winona Smith +1184299,Betty Carr +64457,Perry King +52536,Naima Silva +552644,Kenzô Tanaka +7551,Mauro Marino +23420,Bill Carraro +200535,Debra Clinger +27798,Marilyn Burns +110548,Kristin Fairlie +1075038,Jean Marie Coffey +63438,Jang Hyuk +166940,Cole Evan Weiss +554192,Pamela Ludwig +1221046,Victoria Wicks +1481300,Barry Halliday +1673513,Nina Borget +175720,Мишель Го +64944,Keith Charles +46815,Wendy Morrow Donaldson +33763,Hiroshi Tachikawa +1831896,John Hartley +3461,Jack Albertson +930120,Farhad Kheradmand +153545,Lisa Gerritsen +78309,Paul Picerni +35792,Jimmy Shergill +1009,Randolph Scott +1752726,Sal Scozzari +90131,Anne Marie DeLuise +1958,Claude Brasseur +114092,Joyce Reynolds +30785,Peter MacLean +551829,Bin Moritsuka +2454,Matt Clark +1505419,Elizabeth Leigh-Milne +79956,David Savile +10135,Jesse James +138505,Kim Bo-Kyeong +553442,Nobuyuki Kariya +119313,Harumi Inoue +30010,Arthur Sheekman +153387,George Cisar +1748117,Robin Tasha-Ford +1275918,Gerard Neth +16980,Elena Irureta +162371,Scott Aukerman +30556,Beulah Archuletta +1609260,Pancho Graham +78470,Philippe Hérisson +16847,Eli Roth +38405,John Corbett +1542811,Peter Moreton +7090,Kelsey Grammer +16560,David Caruso +16131,Mariette Hartley +1073836,Christofer de Oni +1781192,Roel Suasin +1773770,Ross Mulholland +68560,Lynne Langdon +28009,Vince Giordano +1476392,Janie Gavin +143439,Charles Bracy +105366,Dean Maddox Jr. +143035,Edward Yang +1773875,Tessa +10459,Curd Jürgens +99681,Robert Axelrod +1166565,Lee Chun-Wa +587064,Rita Angela +18974,Laura Prepon +43903,Carly Pope +762,Ali Suliman +11048,Claes Hartelius +1836807,Татьяна Решетникова +8197,Sebastian Koch +108055,Richard White +2497,Sig Ruman +64670,Philip Granger +63235,Cedric Yarbrough +1910,Caroline Aaron +1112609,Patrick Firpo +1379424,Darryl Henriques +1331774,Dina Smirnova +57422,Jared Rushton +188721,Chris Cooke +226825,Asuka Kurosawa +5530,James McAvoy +553164,Enrique Garcia Alvarez +89725,Joyce Compton +172191,Ann Beach +1084,Joachim Król +1728636,Peggy Bussieck +18992,Aidan Quinn +1673569,Graham Brown +35551,Julie Benz +1505860,Dick Johnstone +172605,Bruce Taylor +150396,Erroll Shand +1042,Frank Adu +98445,Clifford Brooke +1674960,Richard Orlando +125512,Marie Ney +21858,Krista Allen +40952,Sid James +77522,Frank Hoyt Taylor +173990,Gena Shaw +5294,Chiwetel Ejiofor +1089570,Chang Han +33013,Bruce Way +80353,Ted Friend +103969,Sheila Lussier +160405,Margaret Ladd +109747,Eiko Masuyama +134909,Beverly Hotsprings +1049305,B.S. Pully +1203934,Norman Taviss +1535,Brian Doyle-Murray +1244143,Barry Tompkins +37510,Lola Gaos +37446,Van Johnson +17696,Kathryn Hahn +75984,Alan Brough +185853,Adrian Hein +52602,Rob Morrow +133001,Anette Day +35777,Kirron Kher +95093,Peter Jones +146220,Beau Dremann +200298,Susan Kiger +14562,Ralph Meeker +19935,Yasmine Belmadi +1226026,Brendan Ford +157436,Andrew Bloch +157968,Steve Welles +105672,Maynard James Keenan +37168,Hans Matheson +15372,Jeremy Roberts +1132211,Paul Davis +1132123,Fred Lawrence +1535182,Yuri Aso +27812,Monique Mercure +148130,Charles Schneider +3460,Gene Wilder +1723688,Prisiliana Hernández +95537,Shmil Ben Ari +36012,Peter Ender +122726,Hikaru Midorikawa +1324196,Hugh Laing +120442,Phyllis Barry +1699714,Siu Wun-Man +980358,Lyne Champagne +37870,Clare Greet +110505,Robin de Jesus +55132,Ana De Sade +42709,Damon Johnson +26166,Michèle Girardon +1225821,Edward R. Murrow +163664,Susan Blackwell +200900,Will Klipstine +109613,Priscilla Bonner +1616855,Jin Mao-Heng +81178,Charlie Adler +1312315,Christopher Egan +1955,Darlene Vogel +106728,Marjean Holden +47404,Sheila Reid +1315940,Skei Saulnier +77803,Keri Lynn Pratt +79721,Aaron J. March +5496,Mehmet Kurtulus +72289,Khaled Khouri +106996,Jennifer Jayne +8839,George Beranger +1091284,Kôsuke Hamamoto +8354,Albert Hall +1672662,Ash Winfield +7062,Andrew Lincoln +24985,Ortzi Balda +13095,Zenzo Ngqobe +16582,William Ghent +42838,Peter Gowen +79376,Edwin Hodgeman +1028692,Eugenio Lobo +184460,Tomoko Kaneda +190391,Patricia Routledge +37069,Anne Bennent +31321,Jorge Russek +10386,Debra Monk +78094,Karl-Otto Alberty +28638,David Koechner +1219497,Thom Gossom Jr. +1095650,Julia Kijowska +59231,Joel David Moore +97621,Brinke Stevens +15497,Pádraic Delaney +1867440,Judith Anaya +87045,Keri Jo Chapman +543873,Nikolay Kryuchkov +41745,Jim Grimshaw +1470498,Narciso Ojeda +34505,Stanley Andrews +56659,Jeff LeBeau +1091873,Ruth Springford +67379,Kevin Jamal Woods +1889104,Marlene Morley +41785,Joel Tobeck +33883,Jack Arnold +1429988,Hanne Stensgaard +115077,Mickey Simpson +17342,Paul Adelstein +4042,David Neidorf +944614,Rebecca Klingler +1526,Danny Rubin +30861,Leslie Jordan +1386350,Donna Wright +1154773,Sam Sewell +1076567,Brad Kerner +545831,Tom Schimmels +19023,Stephen Mendillo +71935,Gérard Condejean +89064,Ralph Truman +1076155,Shoshi Marciano +117675,Charles King +84233,Marshall Thompson +3208,Maria Pitillo +29791,Lynn Redgrave +51799,Craig Fairbrass +78935,Esther Minciotti +17005,Doug Jones +1303003,Charles Vissières +1499573,Dave Wong Kit +74912,Alejandro Awada +69119,Garikayi Mutambirwa +104256,Fanny Magier +4289,Pierre Vaneck +54247,Aaron Yoo +552169,Takuzô Kumagai +325881,Frances Carson +1650613,John Ahearn +50833,Walter Hampden +115550,John Pickard +1873563,Fred Evans +56419,Eddie Alderson +559280,David Haydn-Jones +13689,Ticky Holgado +31468,Christopher Daniel Barnes +1378909,Chick Roberts +554073,Hiroyuki Watanabe +62075,J.C. Sealy +64675,Vyacheslav Vinnik +33500,Takayo Fischer +64731,Tiffany Paulsen +2468,Sean McGinley +583457,Justin Gordon +57552,Julie Halston +29286,Vitina Marcus +1890326,Massoumeh Naderi +9274,James Brolin +96546,Chor Yuen +1563179,François Le Roux +159555,Frank Campanella +1647153,Zamba The Lion +100619,Jenny Neumann +1711193,E. Parker Webb +27747,Chuck Connors +1144743,Arthur Stuart Hull +158719,Kit McDonough +554233,Hiroshi Kanbe +14265,James Lanphier +63423,Johnny Martin +27199,Francesco Carnelutti +1680739,George Fisher +1665239,Rachel Boyd +181080,Ralph Louis Harris +45091,Coleman Francis +129466,James Ritz +222228,Carola Neher +34419,Ernest Truex +1296379,Les Alford +55638,Kevin Hart +27681,Ron Emanuel +27736,Tom Towles +1077313,Freddie Simpson +65562,Andy Griffith +247,William Sylvester +1379976,Wilda Asimont +44825,David Reynolds +76745,Dante James Hauser +1672671,Michael Grasso +1816649,Maung Maung Khin +1613798,Lin Hai-Bin +951580,Gilles Jacob +78547,Marian Araujo +8820,Joseph Henabery +222580,André Mattoni +141825,Rusty Cundieff +135043,Andrew McKenna +90768,Richard Ireson +54634,Chandra West +83805,Sigrid Maier +544229,Bořivoj Navrátil +479941,Teodor Corban +1091286,Yôko Kamon +76995,Robert J. Steinmiller Jr. +1629442,Duangporn Sontikhan +14563,Adolphe Menjou +191198,Greg Joung Paik +1030402,Hugo Sélignac +1191548,Jean Duceppe +1142100,Carl Dixon +87401,Paulo Tocha +1468521,Jimmy Grant +54520,Pablo Rosso +1523920,Tony Middleton +89012,John Ince +116834,Ryan McDonald +16293,Anthony Heald +132,Scott MacDonald +12932,Barbara Garrick +105144,Lupe Carriles +5738,Ellen Corby +2193,Alexandra Gonin +30035,Terence Alexander +202759,Sean Buckley +93623,Richard Benedict +69222,Virginie Desarnauts +1225512,Shaun Fleming +80874,Tom Mason +148416,Pat Harmon +1896879,Tomas OhEalaithe +1234655,Tiny Tim +1811949,Daniel May Wong +48810,Scott Paulin +1218257,Lisa Joyce +1513132,Eugene Troobnick +567257,Paul Heyman +57629,Steve Huison +148621,Mary Kornman +1232135,Rhonda Burchmore +1715,David Bailie +1028551,Silvia Suárez +56083,Tim Dugan +1647,Mikkel Gaup +937153,Harold Berens +209386,Holger Juul Hansen +1252814,Angus Wright +1757595,Bruno Ukmar +102727,Wally Campo +146399,Irina Apeksimova +993409,Robert Porterfield +19335,Sylvia Miles +8633,Lloyd Gough +143820,Dorothy Sebastian +59865,Laurence Bouvard +1685460,David Paris +937210,Isabel Ruth +103437,Grace Bustos +1029781,Benkei Shiganoya +59157,Nate Dogg +56930,David Selby +1038757,Julia Parton +5683,Sandra Milo +23874,Phillip Jarrett +110025,Ricky Hui +122004,Roger C. Carmel +1145664,Florine McKinney +129330,Cecilia Pérez-Cervera +14508,John Hoyt +1542057,Michael Reardon +51460,Karen Beyer +296066,Chun Wong +534168,Marie Adam +32287,Scott Sowers +12266,Simone Signoret +288940,Lucille La Verne +100608,Kim Lankford +6125,Henrik Prip +1411151,Karen Bankhead +1414791,Tamara Glynn +20965,Chu Hung +20972,Julie Bovasso +90676,Isabelle Blais +1661642,Willie Rosario +99813,Becky LeBeau +1723683,Jorge Angel Toriello +1320293,Michaela Tyllerová +54474,Peter Czernin +142601,Linda Lin +36594,Juno Temple +17030,Geneviève Fontanel +1331588,José Manuel Seda +69979,Zachary David Cope +97619,Linnea Quigley +10564,Jonathan Munk +1631215,Marcia Wright +7635,Eric Shea +39730,Susan Floyd +8541,Jason Barry +17546,Peter Fitz +158152,Rick Lenz +26466,Caroline Kava +21986,Reba McEntire +1178314,Randall Arney +1136858,Seung-Yeon Han +82547,Edward Burnham +57755,Woody Harrelson +61178,Alia Shawkat +48012,Jason Gedrick +78879,Xu Qing +27692,Tim Hartman +78920,Sonali Kulkarni +92623,Matt Adler +51330,Terry Bradshaw +30675,James Maxwell +25438,Ed Speleers +20373,Arielle Kebbel +100606,Susan Gordon +1551011,C. Hayes +54621,Rene Bitorajac +24891,Clovis Cornillac +1005247,Sven Hugo Borg +29709,Mark Blankfield +122470,Mitsutaka Itakura +1185357,The Grateful Dead +36358,Ruth Hausmeister +1315448,Derek Harper +2846,Robert Prentiss +1232039,Emily Yancy +30706,Lionel Jeffries +227986,Richard Mawe +6598,Katharine Hepburn +1920,Winona Ryder +258715,Elaine Edwards +98530,Donnie Jeffcoat +1041222,Galliano Sbarra +17265,Hayden Panettiere +88138,Sushmita Sen +18284,Loretta Devine +1166564,Tai San +12974,Leon Robinson +1465713,Albert Taylor +1448920,Tom Even +133033,Ian Brimble +177165,Jake Richardson +2408,Jamel Debbouze +40347,Dan Molina +129329,D'Arcy Corrigan +24807,Darry Cowl +1130451,Kenner G. Kemp +1676504,Harry Duff +552508,Miho Fujima +33025,Howard C. Hickman +36042,Rachel Ward +1027008,Michael McKay +8637,Hedda Hopper +166066,Robert Hackman +1517019,Patrick J. Dancy +20584,Lucy Lawless +2166,Sergio Castellitto +10672,Art Malik +1195183,Ben Youcef +1034456,Alejo del Peral +14968,Donald Meek +1008513,Jorge Luis Moreno +8261,Willie Nelson +1271642,Harry Leroy +148196,Michelle Moffett +1038184,Sonny Lamont +20914,Kent Broadhurst +3077,Anne Marie Timoney +1178981,Joanne Camp +53930,Tina Majorino +1674910,Gabor Zsigovics +116321,Masato Hagiwara +7642,Barbara O'Neil +555381,Shu-Yuan Hsu +52469,Anson Downes +7060,Martin Freeman +57356,Bruce Mahler +205770,Dani Marco +1073161,John Murtagh +16649,Rose Mary Campos +21459,Sue Ane Langdon +1040112,Ritchie Singer +1710213,Maria Oprescu +144743,Suzanne Grey +181949,Frank Rice +64874,Ann Marie Lee +11279,Roger Allam +131482,Carl Dickensen +4275,Alain Chabat +36183,Donna Dempsey +66465,Jerzy Zass +1386351,Ken Daly +100,Scott Speedman +1079554,Henry McCann +1543164,Neumann-Schüler +11749,Sarah Berry +112037,Zelda Harris +24590,Dominique Sanda +1897666,Maria D'Ajala +269638,Christine Dejoux +3673,John Laurie +862,George C. Scott +52263,Arjun Rampal +1076602,Barbara Davis +101877,Wesley Lau +58610,Yoshiki Arizono +34035,Francesca Bertini +10212,Ricco Ross +14485,Norman Kerry +1770,Akiko Takeshita +1212632,Danielle Spencer +14855,Frank Borzage +21734,Paul J. Harkins +115852,Janine Perreau +82875,Kosuke Toyohara +100591,Michael E. Knight +1112944,Almeda Fowler +1271053,Hal Craig +1840069,Judith David +101776,Jim Fyfe +10427,Anne Archer +1327,Ian McKellen +61423,Mark Walton +1024027,Jeremy Karson +75129,Damian Walshe-Howling +146493,Tatiana Gousseff +98195,Manoush +14791,James Nolan +1886581,Charles Keller Watson +552647,Eiko Muramatsu +50464,Brian Kerwin +1604,Lluís Homar +142919,Maurice Gilles +10627,Eva Mattes +68495,Perrey Reeves +1857443,Scott Woods +1296895,Benedict Lim +35468,Amber Benson +1514686,Ayelet Kaznelson +104609,Lisa Comshaw +119211,Yuriy Kuznetsov +66297,Madison Arnold +1019332,Anthony Monaco +579158,Else Petersen +10412,Anne Jackson +79530,Franck Milhan +1233711,Park Han-byul +551617,Panpimol Jeamsakol +118552,Mildred Joanne Smith +2079,Cynthia Gouw +1483633,Tamara Bruno +1456197,Nick DeMarinis +132821,Pierre Collin +141129,Manuel López +86031,Rakhi Sawant +1134012,Scott E. Miller +2319,Maria de Medeiros +45602,Roger Behr +1392753,Robert Newton Brown +1880599,Robert Pastner +29263,Arthur Hoyt +33383,Theodore Lorch +77228,Patricia Pearcy +1533326,Catherine Swing +1620873,Wang Yong-Xin +6535,Antonio Dechent +36218,Andrew Divoff +83600,Tichina Arnold +1195367,Jeff Howard +37469,Betsy Palmer +105825,Clive Powell +28047,Kevin Pires +121830,Nathan Greno +1356750,Jeffrey Hutchinson +52471,Cameron De Palma +24815,Dorothy McGuire +100705,Anas Wellman +120750,Mildred Boyd +1045385,Merritt Stone +935845,Leonard Elliott +121098,Jack Gardner +163669,Barry Shurchin +58909,Charisse Baker +4967,Colin Higgins +70627,Nobuko Miyamoto +24516,Daniel Baldwin +1296378,Ray Meunnich +86402,Charles Cane +1684214,John-Paul Bogart +124936,Soo Yong +1744157,Christina Rydell +13709,Nikolay Burlyaev +2435,Herbert Marshall +79128,Alan Cinis +1216355,Andrea Anders +280847,Andrea Allan +1045089,Dave Pepper +91454,Tord Peterson +131476,David Love +428,Dan Beene +2222,Beau Bridges +18181,David Keith +130723,Julian Beck +1594319,Joe Adams +140258,Warren Takeuchi +67579,Edward Edwards +17241,Lee Kagan +12819,Bernard Archard +33972,Joe Whitehead +34521,Maurice LaMarche +78458,Tom Hamilton +15198,John Castle +389,Alison Eastwood +155437,David Purdham +52937,Rob Benedict +1494713,Gabriel Millman +18574,Budd Boetticher +122708,Jorge Noya +145928,Mai Hosho +92756,Bill Allen +166204,Alexander Zale +2841,Alison Folland +70852,Schuyler Fisk +109701,Barbara Hale +73774,Sun Honglei +90166,Jaime Escobedo +20879,Kate Burton +142244,Mary Boylan +680,Corinna Harfouch +80267,Paul Sonkkila +120307,Romo Vincent +1228374,Colin Foo +166550,Camila Griggs +1406154,Ferenc Diera +75256,Ian Hughes +5874,Jaime Osorio Gómez +1129756,Gregory Corso +571299,Michael Kuka +1356541,Chris Brailsford +1239247,Namgoong Min +105496,Neil Napier +51499,Maher Kamoun +233128,Elsa Cárdenas +193926,John Popper +1723445,Luce Stebenne +109755,Rocky Giordani +116436,Soleil Moon Frye +53978,Subhash Ghai +1433965,Thi-Loan Nguyen +86136,Ann Prentiss +101614,Linda Lee Walter +1147,Janusz Gajos +1281028,Maddy Wilde +101335,Martin Sorrentino +131269,Lisa Howard +16035,Robert Lansing +170562,Herman Hack +225190,Mimmo Poli +1357277,Yvonne Lawley +1185235,Olivier Galfione +78934,Betsy Blair +551514,David Portlock +1429994,Therese Højgaard Christensen +1733429,Dominic Telesco +1550447,Sol Murgi +70518,Jo Hartley +1415468,Nantarat Sawaddikul +1482975,Jeni Vici +67290,Verna Felton +93602,Antwon Tanner +1886587,Melody Rae +16778,Ilkka Koivula +63362,Ned Dennehy +112652,Michael Stevens +90074,Monte Blue +16311,José Calvo +1765270,Ralph Flanders +87002,Yuri Vasilyev +3655,Yael Barnatán +1720476,Henry Harris +6593,John Huston +2879,Rob Lowe +1677033,Kinshiro Oyama +998895,Priscilla Alden +1356289,Michael Turney +1487414,Sarah Schwartz +94742,Hazel Douglas +1345177,Shannon M. Hart +78435,Nick Bakay +109694,Kiami Davael +90155,Koji Imada +982212,Rogerio Miranda +553896,Anna Maria Ferrero +105454,Harry Tyler +88059,Tommy Davidson +6352,Jane Fonda +232879,Paola Liguori +67267,Robin Houston +146980,Gena Lee Nolin +1080062,Arsenio 'Sonny' Trinidad +118385,James Schram +56567,Dina Spybey-Waters +65010,Tara Morice +87033,Julie Davis +232940,Alan Chui Chung-San +1327503,Alice Neel +1080640,Michael Naegel +8443,Linda Bassett +555191,Mikiko Otonashi +148637,Matt Doherty +95295,Gloria Dickson +25074,Stanley Townsend +95623,David Bruce +77152,Michelan Sisti +99282,Oleg Tabakov +72294,Laurent Guido +9464,Harry Lennix +27709,Matt Miller +14326,Patsy Kensit +945312,Noah Watts +148071,Loyal Underwood +96767,Paul Simonon +7520,Jeanette Nolan +109407,Randy Stuart +1094514,Kendal Rae +2131,Ken Leung +67385,Blake McIver Ewing +117765,Venetia Stevenson +35249,Jacques Robiolles +21457,Elvis Presley +107368,Daniel Beer +123897,Mary B. Ward +14028,Jack Oakie +1220350,Peter Geeves +25440,Richard Rifkin +76496,Jean Hill +10297,Matthew McConaughey +404347,Ruth Reichl +1706344,Adele Proom +1585,Patience Cleveland +89208,Edward Underdown +101652,Jennifer Runyon +81395,Alana Austin +1422281,Jack Tornek +1857921,Andrew Nolan +159435,Michael McElroy +146009,Charles Porter +60078,Katija Pevec +14635,Paulus Manker +930167,Joe Dougherty +586221,Nikolai Pastukhov +103620,Willard Robertson +30216,Pierre Watkin +148039,Valtteri Roiha +14870,Bonita Granville +117952,Roy Horan +4347,Frank Sinatra +184906,Larry Cross +279042,Florence Eldridge +111691,Hidetaka Yoshioka +37055,Benedict Taylor +2638,Cary Grant +58401,Joanne Samuel +33,Gary Sinise +1188786,Nancy Arons +62649,Russell Hornsby +12132,Michael Rooker +111464,Richard Lane +198065,Joe E. Ross +12928,Ross Malinger +58744,Michael Bacall +148116,Gary Imhoff +1676901,Sharon DeBord +202619,Tine Miehe-Renard +129571,Lucia Sardo +108774,Michael Reilly Burke +6735,Luenell +1073806,Mark Ettlinger +145253,Mitsuko Yoshikawa +1088077,George Daly +571304,Ken Perkins +1013050,Gabriel Fleary +7109,Kalina Jędrusik +1441482,Neeral Mulchandani +156136,Joel Swetow +1111813,Keri Moran +1202550,Danni Katz +1465096,Jeanna Wilson +141600,Conrad Nagel +5960,Mary Kay Place +125552,Ivan Jandl +101501,Joseph Tomelty +543513,David Boutin +1778135,Jan-Philip Hollström +32597,Dylan McDermott +72291,Hervé D. +1225377,Rufus Crawford +84921,Devorah Rose +1609644,Eamonn Doyle +11108,Simon Pegg +75934,Mary Acres +51861,Ghostface Killah +63465,Marieh Delfino +1038347,Cheap Trick +1139048,Coco Chiang Yi +75751,Steve Rodgers +58184,Jane Curtin +45042,Adam Ant +6407,Marley Shelton +20100,Murvyn Vye +198219,Mike Lally +19968,Royal Dano +61671,Conrad Dunn +8200,Hans-Uwe Bauer +34509,Iris Adrian +29896,Mark Frechette +55056,Noa Raban +1228631,Alexis Raich +616,Gorō Naya +97887,Jake D'Arcy +1588373,Chris Cresswell +1469198,Troy Patterson +103793,Barney Gelfan +11057,Robert Towne +1194875,Gordon Löwenadler +101610,Kelly Piper +84045,Kôji Tsukamoto +77896,Bill Bellamy +4364,María Isabel Díaz +1247384,Kristina Matisic +44833,Maurice Murphy +1045559,Robert Arentz +21088,Alan Tudyk +13275,Tadanobu Asano +52650,Frank Cassavetes +61169,Deena Fontaine +206888,Aaron Todd Kessee +153688,Arthur Gould-Porter +1227996,Paul Tucker +60451,Brian Matthews +1717648,Pamela Elser +1850003,Guadalupe A. Garcia +91850,Jennifer Leigh Warren +81941,Mary Forbes +106626,Frank Pettingell +153342,Hollis Irving +580229,Gérard Majax +84249,Edward Hibbert +1657366,Bob Banks +4074,Ian MacDonald +163729,Mark Zimmerman +11868,Sean Patrick Thomas +1467404,Jean Sablon +1407127,Hsu Hui-Ni +18303,Howard Fong +43753,Collin Bernsen +1091640,Ryo Hariya +1004,Danny Aiello +592328,Wong Wan-Si +590709,Trude Berliner +57093,Stephen Spinella +38253,Herbert Berghof +50590,Alexander 'Alex' Garde +8319,Nick Brimble +987186,Erica Creer +6612,Richard Marner +77028,Poppy Montgomery +1330841,Tony Maggio +25934,David Boreanaz +13514,Jan Decleir +1461107,Ningali Lawford +133212,Ryan Kwanten +99846,Sho Kosugi +106853,David Oliver +591198,Carl Schenstrøm +67207,Anjela Lauren Smith +975503,Bob Terry +129994,Patricia Smith +1285,AnnaSophia Robb +129701,Shosuke Tanihara +1050936,Nayo Wallace +142505,Yevgeni Syty +55050,Ilanit Ben-Yaakov +42092,Benedikt Erlingsson +1856261,Aine O'Connor +68676,Yuen Siu-Tin +60228,Colin Hay +1887360,Jenny Bridges +17486,Alison Pill +1179221,Cheung Hei +33293,David Paetkau +76382,Allyn Ann McLerie +62824,Gary J. Tunnicliffe +33450,Joanna Scanlan +1083979,Gilles Quéant +68648,Frankie Chin +74115,Constance Dollé +1367171,Catherine Combs +76132,Michael Faustino +1478372,Hideo Shibuya +27271,Barbora Bobuľová +1320283,Jana Mézlová +1196876,Christian Leffler +54218,Marc Devigne +1781720,Dominick Cicco +4826,Matti Pellonpää +25282,Marthe Keller +166489,Bill Lake +262394,George Fawcett +72309,Kathryn Hunter +1367,Alan Howard +80634,Mary Jo Catlett +1556188,Eve Kendall +51381,Michael Weston +1748116,Tara Nicole Hughes +160899,David Canary +120672,Julia McNeal +94950,Line Noro +35806,Shaquille O'Neal +85740,Faith Domergue +165904,Earl Barton +68918,Ai Kobayashi +294790,Pat Bermel +86919,Jamie Harrold +1458758,Jordon Dorrance +151522,Burt Mustin +83145,Ann Wedgeworth +559485,Lydell M. Cheshier +68686,Fulton Mackay +94433,Robert Benchley +95968,Jimmie Dodd +65303,Mark Wingett +45356,Marcia Karr +40481,Luis Guzmán +62067,Carlos Ponce +59227,Susan Santiago +24932,Robert Castel +64057,Dean Cameron +41090,Maude Apatow +545784,Amos Lavi +56523,Laura Bell Bundy +50836,Nella Walker +127451,Johnny Trí Nguyễn +1196077,Dorothy Phillips +1189010,Frank O'Sullivan +1609273,Stephen Conteh +2013,Owen Davis Jr. +1860437,Brendan Hutt +11117,Steve Emerson +1283,Helena Bonham Carter +557864,Yacef Saadi +49741,Jan Neumann +1244120,Ralph Foody +18221,Serge Rezvani +60949,Rob Schneider +157108,Alexandra Kyle +112301,Kevin Wixted +122096,Walter Levine +20285,Féodor Atkine +137424,Gia Mantegna +20824,Perry Andelin Blake +17685,Israel Ríos +87517,Willard Waterman +28025,Herb Lovelle +88147,Carl Lee +107982,Ronald G. Joseph +72986,Lukas Behnken +7278,Lionel Abelanski +1385868,Francine Lembi +1539459,Melinda Bennett +96974,Carlo Cecchi +1296896,Danil Ishutin +1266017,Van Hai Bui +1752761,Carla Guiliani +5684,Rossella Falk +76872,Juan Carlos Colombo +8924,Frank Langella +8729,Alan Hale +21798,Johnny Messner +53607,Peter Salett +1392605,Sharon Jones +54612,Abdol Rahman Karim +126555,Marcella Rovena +14884,Michael Constantine +6663,Bertil Anderberg +37574,El Gran Wyoming +58778,Nina Young +1463996,Manfred Eigendorf +27974,Daniel Tay +160728,Julie Gregg +42335,Kathleen Wilhoite +1668469,Vikrum Shah +1657356,Julie Noble +25215,Джо Чампа +117188,Mark Aiken +62527,Park Bench +106125,Tony Lecce +1609668,John Kaighin +928638,John Franchi +1653759,Eli Vargas +1766033,Luce Potter +82384,Bruce Lester +14701,Carroll Baker +1896888,Christopher Bown +214700,Joe Lynch +928396,Halley Feiffer +1038479,Walter Donado +1081797,Elizabeth Ward +1181344,Conor Romero +64446,Sean Bishop +1503036,Joe Lo Grippo +1002183,Hajni Biro +93009,Sundy Carter +1331669,Nicolás Jasso +1494808,Hans Dieter Trayer +1246564,Sheeba Chaddha +93615,Angell Conwell +162568,Frederick Rolf +63046,Kelly Jo Minter +517,Pierce Brosnan +48328,May Warden +1296389,Ronnie Parks +235642,Ivan Palúch +55049,Bruria Albeck +93628,Harry Harvey +88076,Cody Linley +44827,Gene Kirkwood +81842,Brian Cummings +101687,Alison Faulk +47368,Barry Watson +930411,Edna Petrie +34347,Hugh Herbert +5892,David Hewlett +1121715,John Merkyl +78423,Omar Sy +18859,Andrea Marcovicci +1665,Eddie Marsan +1230,John Goodman +2966,Steven Hinkle +93389,Çetin Tekindor +13357,Vince Barnett +1577158,Billy Silva +160332,John Callahan +146660,Robin Irvine +78729,Nathan Lane +1126501,Walter Perry +103946,Margaret Tallichet +51657,Vincent Pagano +1776533,Richard Jackson +1329667,Jay Eaton +55589,Shaun Benson +549532,Jim Martin +14472,Anne-Marie Davies +185090,Walker Boone +3734,Hanna Schygulla +82100,Aya Steinovitz +7165,Pasquale Cajano +80150,Peter Radon +80467,Cornelia Otis Skinner +1749245,Jill Krop +47681,Mary Jerrold +1229502,Madylin Sweeten +554579,Ei Takami +92172,Aaron Jeffery +53977,Vishal Dadlani +176628,Anthony DeSando +1316029,Juan Socorra Vega +998513,Shaghayeh Djodat +133747,Valérie Labro +14816,Tony Beckley +51490,Charles Perrière +27595,Heinz Baumann +73421,Joaquin Phoenix +29974,Claire McDowell +1193142,Bryant Pearson +1837896,Veryl Jones +17895,Lorraine Evanoff +1242152,Joannah Portman +39780,Frank Stallone +1838902,Selly Raby Kane +181010,Shaun Austin-Olsen +14397,Jackson Browne +78093,Shepherd Sanders +1212688,Hattie Winston +39658,Sally Hawkins +930329,Steven P. Park +97434,Tameka Empson +100507,Christine Forrest +1609667,Margaret Horsfield +590861,Abdallah Jabbour +1660000,Michele Brisigotti +103036,Sidney Clute +939990,Colin Gibson +111931,Andrew McNee +10224,Clifton James +967735,Robert Rendel +38086,Robert Prescott +61131,Evan Turner +937200,Dalila Carmo +1157606,Andrei Kashkar +112976,David Spenser +21104,Glenne Headly +33049,Giacomo Baessato +6832,Melissa Leo +96969,Lisa Garneri +181414,Peter O'Connor +150972,Molly Price +977334,Alexis Iacono +179327,Jeffrey Sayre +1207203,James Fiddy +99093,Dan Montgomery Jr. +34448,Dick Wessel +66473,Ryszard W. Borsucki +1969,Denise Grey +16644,Dolph Lundgren +119650,Chiu Chun +260762,Laura Cardoso +544198,Danièle Ajoret +583270,Betsy Julia Robinson +67392,Samuel E. Wright +46901,Jan D'Arcy +168380,Mo Collins +81462,Dendrie Taylor +157015,Michael McGrady +69656,Birger Malmsten +21355,DMX +1887376,Tucker Stone +552654,Yôsuke Kondô +47643,Robert Pugh +101613,James Brewster +1238088,Jane Luk +128152,Isa Jank +1185639,Keisuke Yamada +1135474,Adriana Giuffrè +7456,Noriko Honma +1348444,Luis Werner Grau +74910,Pablo Cedrón +35965,Antoine Basler +24967,Alyssa Milano +1162540,Gabriel Galíndez +69553,Heikki Keskinen +231272,Phil McKee +121308,Fred Parker +1325837,Yesse Spence +34502,Kellan Lutz +1159361,Carli Elinor +19331,Donald Douglas +40945,Jim Dale +121066,Lee Phelps +119568,Stepan Krylov +161541,Gary Bisig +117432,Eddie Spears +43131,Gerard McSorley +82749,Grandon Rhodes +35752,Delnaaz Irani +103565,José Chávez +219574,Claudia Silver +52468,Deirdre Berthrong +106625,Betta St. John +1506665,Elodia Hernández +97257,Marjorie Bennett +96862,Hu Jun +59269,Elio Germano +16381,David Buck +40620,Kurt Kasznar +153363,Gertrude Flynn +116424,Bob West +30847,Steven Geray +18607,Hiroshi Koizumi +236336,Rufus Swart +7143,Bill Cusack +68091,Cleavon Little +101557,Antonio Maimone +1609678,Thomas Reeder +66957,Nahuel Pérez Biscayart +129219,Lisa Blake Richards +1499582,Ken Higelin +95666,John Gallaudet +1473000,Clara Blore +1741957,David Precopia +201951,Jee-Yun Lee +107310,Monique St. Pierre +420,Johnathan Rice +1238505,Jackie Kelk +27862,Mary Gross +182287,John Barrowman +1221555,Mathew Valencia +33431,Eric Silver +13361,Edwin Maxwell +1174003,Michael Gilden +121320,Ed Agresti +79875,Tim Barlow +94697,Antony Argirov +1074187,Danny Vinson +943150,Avner Eisenberg +34811,George Chesebro +14670,Joan Rivers +935841,Joe B. Barton +59537,Roberto Carlos +136891,Yang Li-Yin +1359892,Cheung Ging-Boh +25834,Leslie Hope +551606,Wasarat Thrasarchoti +227809,Kirsi Tykkyläinen +1861050,Jackie Kroeger +188104,Brenda Grate +1477239,Ken'ichirô Maruyama +60797,Tony Ray Rossi +103719,Patricia Breslin +13592,Irwin Keyes +85352,Malcolm Robertson +209990,Lorna Gayle +12427,Alexander Lockwood +136517,Randon Lo +1894161,John L. Hallett +1330779,Camille Rizkallah +12545,Joe Marinelli +81267,Navin Chowdhry +1161,Mary Elizabeth Mastrantonio +112760,Jacques Léonard +563838,Stian Smestad +1537640,Zdenek Kulhanek +1674898,Victor Callender +25616,Edgar Ramírez +2268,Warren Clarke +1368458,Brian Albanese +100373,Daniella Evangelista +239337,Marina Pierro +1095916,Shinji Suzuki +158395,Allan Harvey +1841264,Horace E. Smith +13566,Edward G. Robinson +1322001,John Harrington +6885,Charlize Theron +80132,Taneko +23344,Annemarie Düringer +44042,Felton Perry +198415,Tom Lester +64092,Alison Routledge +76498,Karen Gerwig +21318,Scout Taylor-Compton +1524344,Michele Sincavage +1472518,Eve Whitney +4973,Cyril Cusack +155435,Valeri Ross +146280,Xavier Tchili +1557706,Vladimir Pokrovskiy +25175,Dennis Hoey +1179595,Dave Van Ronk +100816,May Heatherly +1428673,Michael Brill +27995,Barbara Crampton +18499,Mercedes Morán +544753,Fred Dur +569336,Lana Ettinger +1634770,James Kisicki +69465,Pauline McLynn +23708,Lou Jacobi +32727,Kristian Gullits Ernst +5699,Patti LuPone +16168,Don Steele +1129857,Philippe Paimblanc +1281530,Kevin Dearie +1168396,Carla Daniel +105405,Sousuke Takaoka +33665,Cindy Crawford +3270,Natasha Gregson Wagner +133790,Michael D. Olmos +552608,Fuyu Ooba +60741,April Winchell +6795,Karl Júlíusson +58428,Philip Winchester +1271657,Willie Keeler +174313,Adam Nee +53023,David Gulpilil +120595,Laurie V. Logan +13250,Hidetoshi Nishijima +170155,Charles Fick +38406,Paris Hilton +157211,Rupert Crosse +1661620,Andrea Piedimonte +96555,Antonio Cupo +76150,Tom Malone +1070128,Salvador Sánchez +76512,Jason Clarke +1580035,Eva Ruzicka +14802,Jean Lange +8796,Ulrich Matthes +94793,Roy Billing +585009,Sean McDonagh +37505,Silvia Pinal +1265411,Jim Widlowski +47760,John Harding +115770,Paul Porcasi +1145892,Ed Koch +8177,Michael Ealy +1677322,Yukio G. Collins +1902899,Yankton Hatten +1741955,Ric Maddox +143021,Fabrizio Borsani +91820,Carolyn De Fonseca +1328752,Jason Kristofer +1241458,Misa Uehara +60698,Tracy Nelson +124010,Sarah Marshall +57357,Ted Ross +1392750,Carmen Echeverria +53184,Rick Gonzalez +161383,Ron Thompson +54610,Saddam Hossein Feysal +1786657,Lisa Oliva Rodriguez +80352,Noel Fisher +72310,Sam Kelly +59246,Aleks Holtz +1136762,Ma Cheung +141365,George Reynolds +181043,Jonah Lotan +1672683,Yetta Ginsburg +3133,Patricia Vonne +58558,James Douglas Haskins +40950,Fenella Fielding +27543,Waldemar Kalinowski +1586954,Joe Wilson +223811,Fred Cherry +2942,Peter Shaw +88519,Evan Richards +216227,Victoria Sanchez +38891,Michel Albertini +1392604,Harold Evans +90040,Kim Crosby +35517,Connie Ray +552516,Akira Saito +1789030,Ron Cedillos +3197,Tom Sizemore +153720,Roberta Shore +95455,Bradford Bancroft +1558686,Darren Tighe +10463,Michael Billington +77561,Julia Blake +13012,Nick Roud +1120477,Ikuo Nishikawa +102502,El Brendel +1546180,Elliot Santiago +2449,Kevin McNally +80574,Rex Thompson +30436,Kata Dobó +237,Aidan Devine +80621,Lowell Gilmore +117787,Sonja Ziemann +14120,Paul Hörbiger +1850011,Kriston Rutherford +45992,Tak Sakaguchi +6159,Ron Howard +585663,Max Montavon +1873995,William D. Byrd +19427,Christopher Cary +17488,Alice Drummond +109696,Marian McCargo +75776,Brendan Deary +19361,Thibault de Montalembert +29989,Daniel G. Tomlinson +551610,Hing Kim Lee +1110185,Amanda Moresco +1091367,Cindy Stanford +1773779,Amber Goetz +51755,Ian Ogilvy +44961,Ivan Rassimov +33337,Eric Johnson +18518,Ryan Orion +148615,Morgan York +11382,Ryuichi Sakamoto +217472,Clint Curtis +4096,Naomi Stevens +106711,Vince Corazza +590855,Yasmine Awad +1421014,Dick French +54809,Marco Khan +60259,Paul Greenberg +63442,Cha Tae-hyun +134038,Dong Li-Fan +24974,Emma Suárez +1209709,Callie Croughwell +67070,Herman Osorio +29545,Claire Bloom +106806,James Luisi +14518,Ray Collins +129984,Glynis Davies +1572035,Pamela Figueiredo +15269,Ljubica Adzovic +1106626,Loyola O'Connor +21065,Johnny Green +4254,David Warrilow +81550,Monroe Arnold +1331792,Joe Ordaz +28049,Rhonda Overby +1105084,Alicya Eyo +80280,Michael Treanor +1896884,Francis O'Connor +236052,Aftab Pureval +17652,Theresa Saldana +66201,Ralph Strait +108635,Susan Isaacs +112013,Rain +38236,Helene Stanley +13295,Donald O'Connor +161441,Eileen Wesson +177594,Kathryn Pogson +75564,Sid Mitchell +33278,H.B. Warner +153575,Howard Cosell +37191,Gino Cervi +58372,Clifton MaCabe Murray +131667,Ben Stein +85101,Michelle Gunn +11804,Duane Whitaker +69645,Kjell Bergqvist +34180,Gordon Oliver +140062,Artur Semedo +6274,Holger Franke +131270,Peter Adams +1616655,Marek Pietrak +81181,Martha Stewart +106584,Mary Treen +31028,Richard Schiff +545469,Alex Joffé +1215551,Joe Torre +24813,David McCallum +3015,Dolph Sweet +5895,Charles Albert Patiño +152727,J. Jay Saunders +109677,Eddie Lee +1518,Frances O'Connor +161408,Betty Carvalho +1196487,Quisha Saunders +41719,Biff Elliot +1214164,Merrin Dungey +1661586,Vivian Cherry +1789579,Mark W. Madison +72863,Blake Boyd +31429,Francesco Salvi +100898,Ilka Grüning +32556,Ronald Pickup +115272,Martine Chevallier +2943,Kansas DeForrest +60434,Dee Snider +7577,Shauna Shim +34596,Sergio Fantoni +38946,Lisa Hogg +20094,Gary Lundy +12671,Faye Wong +11852,Saeed Jaffrey +16353,Valentin Merlet +593091,Lev Fenin +1622614,Stacey Harper +973,Jason Flemyng +935765,Sílvia Munt +61852,Nicholas Gonzalez +15453,Debra Jo Rupp +104001,Kim De Angelo +1247280,Harry Markham +1553918,Jesús Gómez +22479,Giacomo Rossi-Stuart +578329,Clive Roberts +212261,David Cameron +29284,Ray Stricklyn +1472490,Harley Luse +9137,Renée Zellweger +99606,Sharon Mitchell +161149,Linda Redfearn +146333,Christy Summerhays +1174223,Clint Boon +1805491,Gábor Svidrony +14016,Jack MacGowran +55585,Sam Spruell +48578,Nanou Meister +70417,Michael Sheard +1291267,Robert Milasch +1190852,Jack Harris +69223,Keine Bouhiza +198055,Richard Krisher +69310,Ricardo Darín +100587,Nan Grey +129492,Rafael Campos +1429906,Søren Thomsen +3172,Michael V. Gazzo +550134,Naima Wifstrand +129520,Esther Williams +5233,Heinz Hoenig +1224636,Bill Lee +140236,Martha Quinn +1898731,Tasha Zemrus +19219,Fay Roope +1636752,Luana Lee +134900,Stevie Parry +8252,William Holden +1292202,Robin Cahall +62523,Kylie Bax +826,Fairuza Balk +66528,Finesse Mitchell +67599,Vanessa Hudgens +941524,Byron Jennings +77517,Isabelle Fuhrman +1808425,Dina Treno +140576,Michael Small +1311371,Angelo Celeste +113760,Art Foster +954853,Stuart Saunders +75318,Retta +1549831,Sammy Shack +70673,Lo Lieh +94942,Charles Granval +1819817,Buffie Carruth +1533813,Magali Amadei +138988,Paul Lazar +19274,Seth Rogen +127892,Yasuko Matsuyuki +14515,Dolores Costello +1290175,Carla Alapont +1472994,George Suzanne +1904842,Gracie Mansion +1366372,Carlos A. Gonzalez +239557,Carol Levy +1681411,Jeff Atcheson +66717,Anthony Wong +1250670,Peter Attard +2930,E.E. Clive +1643129,Dennis Kreusler +42389,Naomi Wright +120785,Al Bridge +60232,David Cowgill +75394,Terence Donovan +3554,Levi Hayes +15010,Lori Heuring +4199,Neal Jones +77670,Anne Grey +1737976,Rosie Ede +1629443,Panu Puntoomsinchal +57736,Keiko Toda +560303,Ron Graybeal +96793,Al Santos +1109778,Lee Hoi-Sang +1386349,Brett Paesel +29879,Mayko Nguyen +1394877,Michael Gottli +146755,Aad Wirtz +93848,Julian Firth +8335,Kim Coates +56485,Jacqueline Kim +105307,Frances Bergen +67600,Ashley Tisdale +142454,Shoichi Ozawa +68130,Sean Marshall +690,Jonathan Ke Quan +12957,Nancy Marchand +87546,Carl Esmond +29710,Bess Armstrong +51546,Joe Seneca +189231,Diane Craig +11855,Geraldine James +41624,Claude Jaeger +159755,Yakov Smirnoff +1459376,Genta Dairaku +27539,Lisa Blount +16055,Richard Hale +543546,Ellis Irving +1464838,Lauren Leah Mitchell +28003,Kaili Vernoff +46364,Shun Oguri +1670480,Barnaby Holm +1741947,David Kroll +4537,Doris Schade +1406458,Helena McCarthy +3846,Coral Preston +107372,Howard Berger +29578,John Barrymore +1101332,Benino Moreno Placido +1790455,Nicole R. Sorice +38416,Ellen H. Schwartz +18066,Juliet Aubrey +1109536,Matthieu Ricard +34187,Chuck Hamilton +16859,Tammy Blanchard +117437,Patrick St. Esprit +45525,Mort Mills +551862,Sanae Akimoto +966742,Joleigh Fioravanti +45863,Doris Roberts +2669,Raymond Massey +550560,Shû Nakajima +1299277,Nam Il-u +1046575,Bhola Dutta +103704,Jules Munshin +78597,Rob McElhenney +1381136,Olga Kaya +1872781,Simone Gad +14528,Yul Brynner +52889,Johnny Vegas +30299,Hank Worden +1758644,Valentino Cimo +1001769,Eric Benet +26283,Gerrit Graham +554271,Nicholas Elliott +103730,Russell Copley +153582,Louise Troy +967133,Ruth Robinson +556715,Shuntaro Hida +1029003,Tamara Stafford +682,Uwe Ochsenknecht +1484292,Hiroshi Shimada +569901,D. Taylor Loeb +116515,Delaney Williams +127138,Patricia Kennedy +36813,Onalee Ames +8742,Ingrid Thulin +62715,Robert Miano +59649,Michael Pressman +138244,Fito Páez +1077775,Alexander Calvert +58920,Jamie Edgell +21306,Albert Austin +130840,Thomas Jay Ryan +2369,Michael Lonsdale +1896896,Derek Taylor +49851,Steffen Schroeder +36118,Roy Stevens +11111,Lucy Davis +57880,Stephen Lack +1352682,Jack Laufer +82803,Corinna Mura +17077,Franck Lefeuvre +1896892,Bill Hurst +27568,Jennifer Rhodes +42707,Jessica Steen +19159,Thomas Haden Church +135172,Juliette Caton +94808,Deryck Barnes +95519,Nick Sandow +100647,Shari Shattuck +1580032,David Listvan +20445,Meskie Shibru Sivan +81523,Frank Simpson +83474,Charles Winninger +99235,Tim Abell +140057,Camila Mora-Scheihing +124985,Annie-Claude Sauton +963962,Fred Keating +1061218,Burr DeBenning +2746,Elia Kazan +3666,Ed Herlihy +47096,Roger Daltrey +86924,Leigh-Allyn Baker +1265421,Christian Ankowitsch +30369,Michelle Joyner +1372751,Kai Rune Larsen +34268,Esther Dale +13011,Joe Prospero +29541,Sybil Danning +50764,John Banner +8802,Michael Mendl +27810,Joseph Scoren +248150,Scott Sunderland +10525,Joe Roberts +42600,Mark Lambert +98091,Edward L. Katz +37829,Michael Mattison +1696429,Lois Chartrand +1786659,Roger E. Reid +42363,Peter Scolari +1209723,Robert McMurrer +146518,Patrice Moullet +1692551,Jussi Ranta +47644,Frances Barber +51860,Jewel +68527,William R. Moses +231924,Gun Jönsson +32204,Christopher Redman +1444478,Ayoub Saibi +102403,David Sherrill +117648,Charles Jordan +1365929,Maggie Chan Mei-Kei +555206,Satoshi Mihara +16421,Hans Conried +11066,Hal Holbrook +95604,Daniel London +20344,Dankan +15972,Reggie Nalder +209506,Madeline Taylor +164525,Patrick Husted +72644,Mirta Ibarra +133561,Radek Holub +571309,Lex Lang +1364153,Frank Walsh +291778,George Becwar +52307,Mary Kay Adams +127142,Gordon Piper +1661639,Delphine T. Mantz +56447,Kelly Carlson +51503,Abdelkrim Bahloul +3611,Lucie Mannheim +109756,Tom Wagner +16307,Maura Tierney +98970,Thomas Meighan +159519,Roger Bowen +592,Joe Turkel +17019,Laurence Kinlan +103911,Nolan Leary +1758694,Stephen Detherage +1723428,Nella Barbier +18161,Simon Verhoeven +1580383,Dante De Paolo +1242437,Bill Raisch +40001,Alvy Moore +6164,Josh Lucas +1076574,William Geiger +30219,Delmar Watson +9908,Gert Fröbe +18216,Oskar Werner +1480988,Igor Efimov +2784,Robert Foulk +1478943,Harald Brenna +1293764,Rex Hurst +723,Patrick Swayze +1270520,Thomas E. van Dell +11168,Elliott Reid +83349,Drew Carey +54124,Marceline Hugot +1752310,Bryan Hindle +110500,Hirofumi Arai +1577166,Norma Mayo +67101,Olivia Hayman +102959,Joey Benson +13392,Arthur Malet +122239,Sylvia Kauders +152491,Peter Carroll +6941,Cameron Diaz +1146154,Marilyn Harris +76294,Jan Hammenecker +37934,André Benjamin +218028,Levi Stubbs +32058,Helmut Berger +93723,Giulio Base +60469,Dee Macaluso +1089174,Jessica Golden +5915,Jaime King +3380,Bette Davis +1197944,Klaus Nomi +73572,Sara Montiel +1569484,Lena Yada +1165229,Ikuko Takahashi +1209678,Filomena Spagnuolo +65728,Scott Michael Campbell +34537,Hugo Stanger +20851,Sabine Azéma +103443,Cass Daley +6498,Lillete Dubey +8894,Jeff Conaway +147404,Charlie Weber +55554,John Kapelos +1221907,Beatrice Lillie +110390,Sirisin Siripornsmathikul +75186,Mick Molloy +184040,Jo Yang +3135,Danny Verduzco +94337,William 'Bill' Phillips +9306,Scott Coffey +141418,Billy Beck +213382,Branislav Lečić +32747,Stephen Lang +574833,Sophie Faucher +176096,Joolia Cappleman +156651,Penelope Windust +47934,Dylan Smith +1661644,Cindy Cobitt +1379419,William Yetter Sr. +3152,George Raft +51498,Laurent Piemontesi +6398,Danny Rosen +153260,Hazel Boyne +67902,Sophie Guillemin +118007,Forbes Angus +16213,Lance Guest +237923,Bill McIntosh +85922,Tom Butler +30320,Annette Badland +61018,Genevieve Hudson-Price +2299,Josh Hartnett +156653,Cooper Huckabee +93639,Court Young +552343,Torahiko Hamada +1269562,Craig Thomson +15259,Nele Karajlić +1786661,Nathaniel Carter +15778,Brian Pimental +43299,John DeSantis +76874,Guillermo Gil +60196,John Carter +40388,Jennifer Billingsley +591785,Joyful Drake +30185,Helen Broderick +2467,James Cosmo +81056,James Edmond +1253667,Yvonne Gaudry +137580,Richard Monahan +1215262,Jay Johnston +102734,Mary Scheer +10661,Grace Jones +27694,Jennifer Martin +446351,Becky O'Donohue +70114,Steven Gary Banks +1184827,Dorothy De Poliolo +51801,William MacDonald +71861,Liliana Mumy +184980,Burnell Tucker +11044,Shanti Roney +14069,Vic Tayback +1593820,Shimpei Horinouchi +1522985,Jacqueline Laurent +1040018,Silvia Gambino +17243,Jonathan Tucker +2650,Patrick McVey +1417325,Suzunosuke +101170,Peggy Trentini +996704,Robert Filmer +111578,Paul Douglas +59863,Sarah Edmondson +1106625,Louise Emmons +1277557,Billy Mahan +84870,Rosanne Katon +89736,Si Jenks +237481,Carmen Luján +77920,Howie Mandel +1646987,Jared Thorne +151432,Boris McGiver +44127,Larry King +11514,Catherine O'Hara +148429,Sydney Jarvis +1086324,Andrew Markey +19034,Evangeline Lilly +6252,Magda Schneider +1176948,Kathryn Zenna +62562,David Denman +1365437,Dominic Coleman +135021,Takashi Ebata +15886,Julia Louis-Dreyfus +198797,Eddy Martin +32387,Laura Dean +101851,Barry Morse +1616632,Rafał Zimowski +99848,David Chung +547972,Choi Yoon-young +2450,Lauren Maher +227977,Frank J. Scannell +1557453,Jo McGinley +75006,Jack Lawrence +20441,Yaël Abecassis +1469192,Lisa Kuil +1470110,Edra Gale +1861051,Nora Alexis +590963,Marc Cassot +107435,Philip Stainton +114378,Carman +1330777,Manny Cortez Tuazon +78348,George Tokoro +12969,Mildred Natwick +1346978,Johnny Cheung Wa +139322,Kay Sutton +102971,Regina Carrol +78943,Scott Finch +63680,Tarah Paige +1331668,Aquetzali García +117110,Gary Murphy +1166385,William Johnson +110950,William Eadie +1220575,Kimberly Wyatt +1270527,Susan Glaze +27807,Henri Marteau +553494,William Fazan +16429,Jacob Vargas +114956,Kathleen Hughes +1417456,Hal Frank +36423,Tom Green +1315403,Charles Oakley +1429873,Tsuyoshi Kinoshita +75491,Catherine Lambert +162924,Rob Moran +92312,Corey Taylor +84919,Rita Coolidge +153470,Wolfe Barzell +1581386,Anna Barnathan +101615,Frank Pesce +383,Michael Palin +1656606,Fletcher Sheridan +465117,Ari Meyers +1742403,D.J. Morrison +44823,Monte Landis +553869,Ion Gabella +35550,Danny Strong +3041,Marshall Bell +75265,Clayton Jacobson +93111,Kick Gurry +1363425,Stefanos Miltsakakis +88507,Justin Isfeld +217087,Pamela Raymond +9872,Joseph Wiseman +16173,Belinda Balaski +553183,Giuseppe Pattavina +1716972,Yasutoki Furuya +1040156,José Peña +34213,Helen Jerome Eddy +119877,Kwan Lee-Na +88570,Vanessa Brown +121765,Elaine Stewart +551908,Betsy Bond +1678185,Laura Mayes Byrnes +60017,Faith Hill +4325,Dave Kalama +137405,Bob Kortman +1226885,Eagle-Eye Cherry +34008,Emmett Vogan +1609661,Jill Cruddace +50792,Henning Peker +1468177,Sandra Andreva +1741960,Cameron Clapp +132075,Thiago Lacerda +1328640,Paul Goodman +73933,Daniel Gerroll +78962,Andy McPhee +989,P.H. Moriarty +86995,"Hank Williams, Jr." +21293,Alan Fawcett +79857,William Keen +1467074,Roy Damron +555197,Ei Kawakami +35818,Rajeev Verma +1502514,Amanda Barry +159173,Frank Cox +946489,Donny Galland +19901,Clive Russell +1542812,Arthur Spreckley +6564,Lawrence Pressman +1093410,Barry Stearn +66225,Evan C. Kim +33430,Jenny Wade +42166,Kathleen Miller +142263,Terry Walters +1175529,O Chun-Hung +1022678,Harry Langdon +123121,Elyse Knox +206379,Doris Hargrave +113640,Lee Patterson +34595,Micheline Presle +1112075,Kamayuki Tsubono +21414,Billy Rieck +18647,Bradford Dillman +2038,Naomie Harris +32323,Boby Lapointe +111581,Irene Hervey +1482690,Yû Sekita +1134138,Anna Turner +55274,Lisa Nicole Carson +1586641,Thomas Corey Robinson +17068,Jessica Schwarz +140579,Gerry McIntyre +43859,Diane Delano +1080224,Janet May +75599,Jesse Corti +20011,Margot Kidder +35849,Wallace Ford +1300227,Texas Terri +77859,Richard Dillard +552007,Keijirô Morozumi +84219,Chaske Spencer +3895,Michael Caine +37155,Laila Liliana Garro +1239453,"Noah ""40"" Shebib" +11012,Michael Dougherty +59169,Crystal Bock +11463,Richard DeManincor +1179084,Audrey Klebahn +1832377,Anita Rice +100800,Clive Morgan +52815,Carl Bradshaw +1156173,Gordana Boban +1330820,Kevin Scott +51359,Lela Rochon +3422,Gail Boggs +1216971,Brynn Thayer +56950,Della Reese +54450,Gavin MacLeod +215904,Tony Haney +1399641,Zsolt Somogyi +57418,Marcia Strassman +143022,Urs Jucker +1392596,Brad Watkins +100485,Tony Markes +1265407,Christina Sigel +18841,Bud Spencer +79739,Morgan Brittany +8539,Nicholas Cascone +91024,Patti Deutsch +101939,Arnold Marlé +1042415,Wayne Toth +1841255,Stephen Dupree +1405539,Raymond Blathwayt +1386473,Глеб Пускепалис +97978,Tom Ferguson +1459258,John Quayle +1944,Alan Reed +140223,Ewa Szykulska +1384193,Deborah Cass +1571372,Aoife Murray +120676,David Healy +1593818,Koji Fujii +59464,Michelle Brew +87117,Cynda Williams +1729781,Eleanor C. Heutschy +1616858,Shu Yao-Xuan +11465,Theresa Tilly +1547066,Dan Eaton +1444523,Ieva Bieza +94304,Larry Cedar +938986,Ian Gillis +1084494,Marilyn Bautista +231921,Lars Lind +61835,Trieu Tran +57910,David Arnott +1317808,Ivo Lopez +1513401,Corinne Jaber +99330,George Meeker +4421,Anna Magnani +100019,Wally Cox +939913,Arletta Duncan +133121,Patrick O'Connell +153471,Eileen Baral +1321148,William Lowery +8896,Barry Pearl +4165,John Wayne +64680,Tony Alcantar +1532627,Steve Mellor +62095,Jon Huertas +83270,Daniel Ross Owens +120560,Jim Piddock +166935,Dawn Maxey +44549,Pete Seeger +97080,Anne-Laure Meury +101479,Jean Willes +42145,Anna Karin +1729783,Rieneke +3338,Jay C. Flippen +54123,Патрик О’Нил +111214,Hector Elias +1507180,Willie White +97721,Geoff Hansen +1456508,Everett Fitzgerald +34316,Larry Parks +3084,Marlon Brando +83951,Veronika Žilková +194770,Chris Karwowski +54793,Carlo Rota +102830,Tony Miller +1609656,Norman Cain +179204,Randolph Roberts +14362,John Good +1366353,Simon Wong +38942,Dana Fuchs +1723440,Michele Planques +6774,Joe Santos +28848,Sean Pertwee +117426,Kathleen O'Malley +76503,Willie Brooks +1110579,Valda Hansen +19098,Mabel Albertson +234117,Patrick Labbé +42724,John Prosky +205783,Susan Pourfar +117352,Jo Brand +67228,Kathryn Beaumont +1339670,Turan Mehrzad +10240,Robert Lohr +7710,Laura Betti +57906,Andrew Dice Clay +156598,Cedric Young +1547064,Clifford Warren +21541,Agostina Belli +1444511,Camilla Ramonn +3160,Nehemiah Persoff +1107518,Naomi Lewis +21525,Blanche Baker +10330,Eva Kotamanidou +76499,Jay Allan +72296,Robin Harsch +30217,Dick Elliott +1383789,Karin de la Penha +116128,John M. Jackson +1075817,Kimberley Russell +33668,Noam Jenkins +1368767,Fay Lemport +24366,Philippe Noiret +229714,Lisa Schrage +1075152,Gunnar Öhlund +62035,Michael Krawic +101752,Ray Sharkey +949636,Drew Deighan +14466,Lila Kaye +1215304,Jim Rome +1651692,Anna Tyborczyk +82129,Dan Dailey +1054308,Robert Busch +550014,Benkt-Åke Benktsson +7907,John Ratzenberger +27319,Christoph Waltz +41217,Tom Bosley +1799818,Hollyce Phillips +79710,Jordan Leovic +27945,J.H. Roberts +52272,Megan Lusk +238321,Jerry Lawler +1332529,Frank Berry +1711556,Su-Jeong Eom +131484,Billy Bridges +1740212,Norma Giacchero +84599,Joe Hess +572393,Louis Seigner +47173,Grete Berger +53778,E.J. Callahan +119567,Valentin Zubkov +1802010,Katherine Parr +1505345,Joseph Bertot +587137,Hervé Sogne +55494,Devon Gearhart +54815,Steven Strait +119140,Ed Turley +85868,Dan Tullis Jr. +44348,Siegfried Wischnewski +326448,Maria Ceiça +70519,Andrew Shim +26756,Yasuaki Kurata +941,Tomas Arana +96300,Janis Carter +85943,Dan Seymour +1912,O-Lan Jones +1047726,Jason Maves +54447,Samuel West +11550,Jean Dasté +26868,Mary Kauila +27740,Walton Goggins +114696,Ava Cadell +47991,Bob Geldof +34547,Raj Ghatak +1327702,Deborah Kirshenbaum +92838,Michael Greer +31117,Philip Bruns +40163,Patience Collier +144199,Marcel Hensema +1577506,Brooke Stacy Mills +51576,Chuck Norris +124360,Charles Seminerio +1889100,Gareth Jefferson +84731,Doskhan Zholzhaksynov +29713,Michael McGuire +93055,Sarah Koskoff +31536,Marc Worden +56348,John DeMita +1082345,Eiko Takamatsu +12799,Jeremy Piven +25222,Miguel Palenzuela +1613708,Bonnie Paul +14146,Hilary Mason +51532,John Christopher Jones +554248,Vasek Simek +67216,Брюс Ванг +1452156,Kay Cummings +136236,Reid Cruickshanks +94219,David Neilson +42134,Wendy Hughes +1128885,Victor Wong +5826,Glynis Johns +554825,Park Cheol-Ho +30296,Joanne Dru +11172,Taylor Holmes +181514,Ian Barford +558892,Franziska Stömmer +1113864,Seijirô Onda +117491,Michael Gabel +1296117,Kasikorn Niyompattana +1330782,Devin Delorme +1544024,Abraham Gleaves +2771,Jim Backus +119452,Yuen Miu +1626528,Peter Cobbold +115888,Lisa Pelikan +553439,Michiyo Washizuka +1802665,Varvara Dvalishvili +1218277,Samantha Bee +1277940,Chan Man-Ching +204034,Anne Girouard +3507,Claude Jade +63213,Gina-Raye Carter +59579,Tab Baker +53389,Tyrone Huggins +80567,Freddie Bartholomew +3364,Reginald Denny +65959,James Wong +19257,Janet Jones +195505,Patrick Miller +3051,Toni Collette +7153,Imogen Kogge +33936,Barbara Nedeljakova +24498,John McEnery +104006,Zhenya Kolykhanov +1335636,Vinny Dhillon +938832,International Chrysis +56563,Lara Phillips +9927,Klaus Löwitsch +79863,Kiki Kendrick +19550,Melvyn Douglas +13038,Dan Kemp +141489,David Keats +1227314,Оззи Юе +9206,Neve Campbell +55637,Brian Hooks +161794,Walter Wyatt +2139,Makenzie Vega Norfolk +1886270,James Michael Detmar +2888,Will Smith +130606,Kenny Kwan +1054297,Patxi Barko +1575802,Christina Marie Walter +1467394,Bess Wade +58406,Ken Pogue +62070,Harry Judd +86034,Julianne Nicholson +153916,Wendy Benson-Landes +1422155,Robert Cauterio +89662,Sherry Hall +3171,Lee Strasberg +74762,Bob Sherman +1108268,Max Herbrechter +19392,Jesse L. Martin +28477,Jonathan Aris +13277,Gadarukanaru Taka +42094,Mia Lyhne +1472491,Mary Shannon +84477,Urbanie Lucero +149116,Bunny Beatty +1535188,Hirofumi Nakagawa +86858,Norihei Miki +2479,Rupert Vansittart +79581,Gloria Lynne Henry +27420,Erol Sander +1546560,Robert Elliot +68046,Anna Keaveney +1149612,Sparkle +83585,Sasha Barrese +34094,Dale Van Sickel +1546041,Jack Lee +223813,Jeremiah Denton +1263449,Curt Clendenin +274746,Dominique Valadié +3125,Madonna +115618,Ruth Kettlewell +171791,Richard Petrocelli +87405,Demetre Phillips +1638394,John Bower +957076,Clé Bennett +15110,Brooke Shields +85616,Aman Johal +73847,Robert Hands +5482,Raymond Coulthard +3785,Jack Palance +121242,Spade Cooley +214701,Sherry Lynn +32897,Nicholas Turturro +1309327,Hiroshi Kôno +57166,Linda Kozlowski +55621,Clotilde Joano +37431,John Novak +1011342,P.J. Ochlan +8606,Robert Shaw +50667,Petra Morzé +67371,Dickie Jones +1346929,Cheung Fung-Lei +1190703,Terry Cook +28475,Emma Pierson +155576,Bruce MacVittie +154431,Mary Munday +10983,Richard Griffiths +13568,Joan Blondell +1470160,Richard W. Farrell +44656,Herb Robins +1161790,Murray Leonard +155236,David Bailey +975424,Justo Martínez +1116115,Michelle Lukes +1422183,Dolly Jarvis +1730644,Michael Newport +155077,Stevie Ray Dallimore +42168,Nancy Fish +64928,Art Garfunkel +161446,Camila Ashland +138508,Kim Seung-woo +37045,Nicollette Sheridan +21772,Jimmy Karoubi +1804068,Myra J. +170150,Ralph Marrero +36279,Joaquín Cortés +58926,Katt Williams +86530,Chilton Crane +1366365,Ruru Sacha +1444483,Jasim Laut +66750,Colin Mochrie +117863,Tiffany Peters +1019846,Don Bowman +1525030,Erik Rondell +15034,Jeremy Howard +10171,Angela Scoular +589220,Marion Byron +3916,Finlay Welsh +30928,Michael Callan +1510925,Oldzhas Nusupbayev +58461,Michael Panes +66055,Richard Norton +200728,Jordan Christopher +229957,Stephen Chase +56159,Dana Carvey +1197947,Tony Frere +90169,George Gonzales +34057,Julián Villagrán +1352505,Valerie Braddell +134400,Toshiaki Konoe +1089921,Sebastian St. Germain +62886,Sandu Mihai Gruia +1403521,Eytan Mirsky +4765,Jason Robards +553440,Rinzoh Suzuki +1789274,Zhang Kang +121354,Kaye Ballard +58381,Vince Vieluf +1315451,Sharone Wright +9294,David Byrd +56685,Brooke Bloom +1774123,Julie Austin +331806,Liliane Dreyfus +119454,Mars +98871,Janet Tracy Keijser +1550299,Jack Norworth +3654,Malena Gutiérrez +38670,Camilla Belle +15070,Ken Foree +27565,Kim Walker +147961,Max Alexander +175600,Max Daniels +70671,Misaki Ito +99328,Jeanne Bartlett +1213318,Teresa Parente +1200840,Michael Eric Kramer +1633666,Pat Hazell +37598,Alix Elias +30123,Lee Grant +53199,Mark Collie +148618,Brent and Shane Kinsman +1236153,John Drainie +1133858,Leon Dai +153754,Sara Lane +1436026,Marie Danube +27741,Robert Allen Mukes +9290,Henry Rollins +1801504,Fabien Ferreux +150836,Jan Nygren +50966,Arnold Merritt +38948,Michael Ryan +15134,Pietro Notarianni +1425549,Bill Lung Biu +116586,Andrés Pazos +555205,Yoshikazu Tanimura +656,Denholm Elliott +31923,Oliver Ford Davies +47439,Helen Hayes +125554,Jarmila Novotna +141520,Barnett Parker +105864,Haig Sutherland +1583609,Christine Bridges +73086,Magnus Roosmann +1593814,Yusuke Myochin +123010,Anne Hegira +556837,Dani Crayne +117568,Justin Herwick +46944,Michele Lee +11022,Aaron Stanford +62595,Mary Pat Gleason +18251,Fannie Flagg +18282,Karina Arroyave +236,Bill MacDonald +149980,Dick Vosburgh +108638,Richard Cornish +1609650,Dodo Bickerdike +930817,Anthony Brandon Wong +159971,Taylor Hoover +1862912,Jonny Bliss +1467852,Lillian Nicholson +52342,Olivier Marchal +148585,George Jessel +2072,Lilyan Chauvin +91426,Ed Fry +21911,Shu Qi +53011,Mary McCusker +1752345,Sherisse Springer +19938,Sophie Medina +551613,Chim Pui-Ho +55062,Tabu +49265,Lindsay Lohan +4532,Emmanuelle Laborit +67161,Mary Demas +6657,Bibi Andersson +1235093,Ron Zimmerman +13299,Rita Moreno +170561,Ainslie Pryor +97999,John George +1005423,Harold Minjir +4324,Laird Hamilton +41773,Susanna Simon +1312993,Nellie V. Nichols +1879503,Grant Moran +1656012,Devin Corey +3232,Lisa Bonet +1086275,Heidy Forster +1720977,Steven Scott +17697,John Krasinski +32205,Brendan Fletcher +142929,Cay Kristiansen +60236,Eddie Gossling +1270521,Loris Sallahian +557087,Paul Everton +37623,Tracy Dali +1238851,Dave Barry +34989,Anna Gaylor +2102,Ted Cooper +1758315,Christian Mantilla +6645,Richard Ridings +79517,Elina Larrauga +38026,Chris Noth +1031778,Nonnie Griffin +130389,Ding Yue +231979,Renzo Ricci +115459,Peter J. Votrian +143978,Yelena Solovey +4299,Dean Martin +80162,Ken Smith +7450,Toshirō Mifune +1095107,Hank Bell +94945,Roger Legris +141139,Budd Fine +1377960,Charles-Roger Bour +141789,Bronwen Mantel +14798,Laurel Near +94289,Maggie Kirkpatrick +79982,Raymond Johnson +1344672,Tyler Noble +79706,Olive Gilbert +1328408,Estephania LeBaron +97776,Alphonse Ethier +1609255,Pat Cockett +65715,Robert Bagnell +136151,Margot Grahame +47754,Rita Tushingham +1742413,Macy Salasel +44995,Monique Gabrielle +1395313,Kurt Reis +9109,Harvey Lembeck +1232550,Daniel Farcher +1135804,Kusuo Abe +243036,Steve Monarque +9307,Amanda Anka +130253,Logan Marshall-Green +7621,Courtney Love +13578,Dana Andrews +103385,Gregg Martell +135038,Jackie Quinn +138833,Iva Bittová +928734,Marietjie Vaughn +110097,Henrik H. Buljo +68704,Naoto Takenaka +43337,Cayetana Guillén Cuervo +54246,Peter Friedman +42439,Paula Paul +45566,Roger Bart +1406147,Eleftherios Kokotos +11084,Kelly McGillis +33362,Frank Shannon +79236,Dave Colon +145238,Hilton Edwards +103962,Pat Ast +1153847,Ken Edwards +58079,Sarah Badel +1559344,Garen Boyajian +92899,Nipsey Russell +70036,Claude Jarman Jr. +13100,Nambitha Mpumlwana +3001,Conrad Veidt +96997,Bradford Simonsen +175883,Christopher S. Nelson +19197,John Robinson +81624,Jay Baker +81942,Frank Dawson +104625,Jan Merlin +74570,Ron Glass +51735,Zach Hopkins +141243,Hank Salas +1296393,Tony Shepherd +52999,Remo De Angelis +80283,Alan McRae +1137395,Hiroshi Ôguchi +15831,Frank Welker +1471400,Harold DeGarro +1080265,Michael Ensign +3212,Evan Handler +76137,Garth Hudson +62941,John Hyams +1232581,Sloane Momsen +3978,S. Epatha Merkerson +135052,Bessie McDonald +12659,Billy Barty +16900,Atta Yaqub +1166104,Tino Wong Cheung +46461,Jacob Derwig +106531,Gene Lythgow +67028,Hugh Fraser +128113,Ingrid Appenroth +551628,King Man Ip +5461,Eddie Collins +59862,Olivia Peterson +1407918,Robert G. Denison +54036,Frank Vosper +27643,Marco Leonardi +1260945,Calvin Trillin +120736,Sam Flint +11143,Joanne Moore Jordan +79709,Isabella Reimer +137582,Harold Fong +991,Steve Sweeney +37293,Paul Blackwell +1109633,Mike Stanley +1549,Dwight Frye +104980,Rafael Inclán +8555,Carl Gottlieb +151118,Elena Fancera +589209,Lennart Tellfelt +181964,Diane Dorsey +63144,Sello Motloung +35589,Karen Blanguernon +113223,Linda Lavin +26121,Nicholas Jones +1052339,Helen Kim +1652960,Robbie Thibaut Jr. +159850,Jack Gwaltney +160605,Gene Scherer +85094,Peter Alton +214,Brian Price +1429989,Jean-Philippe Lafont +57893,Raquel Castro +1646173,Pablo Frank +69054,Brooke Adams +1397904,Edward O'Blenis +1896889,Mark Bryce +99789,Robert Sacchi +131427,Gary Teague +187189,Rupert Reid +983412,Sendi Bar +5527,Skandar Keynes +1216151,Ken Michelman +91816,Christi Courtland +83362,Dennis Burkley +1173733,Charlie Chan Yiu-Lam +3737,Harold Waiglein +1294726,Slicker the Seal +198643,Johnny Morina +583801,Orli Perl +24340,Michael Ripper +7111,Bożena Dykiel +2221,Leland Orser +13567,Ann-Margret +1483345,Enedina Díaz de León +1170886,Jack Marsden +554852,Hsiang Ting Ko +1421016,Mitchell Ingraham +3293,Rachel Weisz +70569,Doug McKeon +26856,Tevaite Vernette +75258,Linal Haft +36637,Brandon Smith +132877,Wendy Craig +223820,John McCain +19048,Sakae Kimura +59843,Paul Scheer +1356544,Daryl Fishwick +80130,Haruka Nakajo +1658153,Jay Asevedo +1226857,Judy Collins +1388783,Robert Couch +102640,Kaz Garas +121330,Jacques Lory +155808,Ginuwine +1075130,Dee Hennigan +554601,Onochi Seietsu +105732,Edson Stroll +188623,Isabella Fink +147492,Chief Leonard George +117193,Matthew Roseman +119226,Jack Denbo +105102,Lena Brogren +8905,Ellen Travolta +164258,Barbara Andres +28779,Lupe Ontiveros +37887,Peter Ehrlich +129193,Paula Abdul +10750,Sheryl Crow +1799819,Rich Habersham +58433,David Ellison +114142,Ulf Brunnberg +4960,Charles Bronson +34754,Chester Morris +43448,Michael Pemberton +30282,Patsy Parsons +1609270,Vise Vitale +1720972,Sean Bolvin +578100,Alexandre Chappuis +228136,Karel Heřmánek +1031779,Aaron Scotti +1145556,Philip Hurlic +132711,Barry Cahill +1138528,Jadwiga Jankowska-Cieślak +95294,The 'Dead End' Kids +58808,Anne Gaybis +1609242,James Edward Sclafani +239363,Andrée Clément +1417446,Nick Nickeas +148853,George Nardelli +10804,Margaret Dumont +44735,Jesse Eisenberg +5442,Benoît Magimel +1108142,Shaun Mason +35759,Satish Shah +112412,Stanislaw Tym +134064,Jack Hunter +1188791,Bear Sheppard +1668026,Joseph Rezwin +1788856,Andrew Read +4937,Vince Vaughn +166543,Mario Roberts +27037,Levan Uchaneishvili +34470,Jeff York +1002218,Lionel Gamlin +85644,Husnija Hasimovic +104997,Marlo Thomas +28453,Marita Breuer +111091,Claudia Silva +54938,Dots Johnson +1437605,Ralph D. Bowman +142682,Cecilia Wallin +5567,Romolo Valli +1857462,Gito Santana +1369,Bernard Hill +1212036,Heather McNair +78829,Arthur Byron +2778,Dennis Hopper +579268,Yannis Belkacem +19115,Linh Đan Phạm +28028,Howard Erskine +980076,David Bingham +15737,Helen McCrory +14365,Otto Waldis +9788,Regina King +1003550,Peter Kosaka +104982,Ofelia Medina +602823,Pippa Hinchley +79895,Vito Rocco +1674906,Susan Cannon +217914,Tony Hancock +1580036,Hanka Scudlová +116153,Niki Harris +91420,Dion Anderson +4922,Ralf Richter +9372,Marcus Chong +972893,Tracey E. Bregman +152711,Liam Dunn +42799,Son Byung-ho +1201018,Saburô Kadowaki +99753,George Cooper +5972,John Álex Toro +1468183,Toni LaRue +1070704,Sunnie O'Dea +225930,Bill Garaway +15197,Sarah Miles +535498,Bert Hanlon +15531,Ossie Davis +54470,Lauren Ambrose +27105,Ed Helms +54494,Ian Harcourt +7192,Leo McKern +99461,Cedric Hardwicke +1742410,Erica Richards +80278,Rebecca Rigg +843374,Kari Hawker-Diaz +35254,Michèle Morgan +3413,Victor Rendina +164653,Andy Kaufman +1055559,Kate O'Malley +7138,Clive Rosengren +45570,Susanna Bequer +1773121,Sandra-Jessica Couturier +1280,Don Harvey +20746,Justin Chambers +34128,Eric Wilton +18737,Mercedes McCambridge +13326,Susannah York +16505,A. J. Benza +33004,Preston Foster +1087589,Deborah Burgess +551623,Pornchai Hongrattanaporn +66125,Bey Logan +131192,Hirotaro Honda +197925,David Engelbach +1179083,Ayo Adejugbe +69,Gottfried Huppertz +80137,Diane Franklin +1193837,San Sin +1356433,Anney Giobbe +67453,Danso Gordon +29518,Cantinflas +24462,Gisèle Casadesus +11026,Ruth Warrick +1172639,Josef Bradna +76286,François Beukelaers +1471629,Lloyd Talman +61017,Donna Cutugno +1176338,Craig Hurley +109200,George Sewell +1502508,David Rody +585957,Dorien Thomas +1853169,Diane Kinerk +4958,Henry Fonda +1117048,Ben Salem Bouabdallah +738,Sean Connery +12309,Anne Francis +1790660,Tony Harris +776,Eddie Murphy +96258,Ernest Whitman +1351408,Richard Ooms +14668,Daphne Zuniga +1886588,James Guthrie +1179093,Robert Rigamonti +8191,Chris Ellis +117525,Beau Mirchoff +83758,Joan Young +1296392,August Schwartz +18212,Mathieu Schiffman +1421097,Ray Hanford +20,Elizabeth Perkins +21708,Tomás Milián +156917,Annie Korzen +106164,Reikichi Kawamura +10112,Yoo Ji-tae +55778,Isabelle Corey +1886269,Dean Brewington +159879,Joseph Lyle Taylor +528,Sylvia Sidney +205446,Michael D'Ascenzo +12514,Leonardo Cimino +1609655,Derick Bussey +44968,Lea Lander +43612,Christian Tessier +78294,Jennifer Gibney +1111852,Jenny Cooper +70276,Eva Dahlbeck +95796,Dan Martin +9111,Peter Graves +1209706,Summer Kylie Remington +74073,Rosalind Chao +53351,Janet Henfrey +1462583,Melissa Goodwin Shepherd +1269187,Jack Hanlon +1056298,Zoran Miljković +3573,Daniel Boulanger +1671853,J. Franklin Harrison +2516,Anthony Zerbe +1139756,Cynthia Friberg +15071,Scott H. Reiniger +1133440,Randy King +34098,Ernie Adams +61106,David A. Shaffer +140079,Suzanne Kent +12153,Torben Meyer +141240,Pershing P. Anderson +33060,Ramon Bieri +75071,Daniel Cerqueira +1222953,Robyn Ross +8612,Jay Mello +119381,Howard Smith +1296116,Tony Skarberg +1594620,Jack Chen +64135,Charlie McDermott +91217,Rand Brooks +119483,Anatoly Zinoviev +1227952,Rene L. Moreno +1195865,John Stoneham Sr. +1889105,Annee Blott +1741981,Garth R. Hassell +1230574,Peter Miles +61166,Ty Wood +2343,Katharina Schüttler +1381434,Unto Helo +13696,Howard Vernon +974819,Ignacio Guadalupe +83810,Vic Morrow +91722,Jeremy Lloyd +19588,Miyu Irino +16866,Jennifer Lopez +15028,Daryl Mitchell +7119,Jerzy Nowak +11006,James Marsden +11147,John Cassavetes +16766,John Litel +13314,Dana Ivey +190204,Andrew Rhodes +1858660,Lucca Rossi +35749,Sushma Seth +134876,Vernon Steele +84518,Jacob Davich +1472497,Beulah Hall Jones +137472,David Schaal +15321,Ion Caramitru +18976,Ashton Kutcher +240913,Pietro Ceccarelli +178097,Don McKillop +1851418,Buster Wilson +1559605,Pihla Penttinen +1372684,Jack Sterling +1864893,Joseph Traynor +1804407,John Brent +224153,Marianne Mendt +96664,Park Kyung-geun +31044,Pisek Intrakanchit +1371322,King Mojave +35068,Vidya Balan +1048569,Bernard Zette +1729782,Peter Eastman +1484311,Sawako Kochi +1303215,Shannon Vann +151819,Jeremy Sinden +97993,Gertrude Olmstead +52716,Houka Kinoshita +1115118,Tom Quinn +23121,Ignaz Kirchner +120525,Verna Hillie +10254,Mario Adorf +980225,Ra Mi-ran +553891,Dominik Michon-Dagenais +8666,Sal Lopez +41894,Zhang Jingchu +1440224,Dore Davidson +161547,Sam Freed +978,Steven Mackintosh +22477,Mimmo Palmara +543623,Jacques Baumer +1338974,Jean-Luc Caron +83880,Pavel Nový +106322,Bridget Barkan +89251,Melinda Clarke +72428,Malik Zidi +1225785,Robin Weisman +55058,Zaharira Harifai +11115,Peter Serafinowicz +134680,Kakuko Mori +93729,Lorenzo Alessandri +52514,Malcolm Scott +20906,Peter Michael Goetz +78957,Denis Moore +963016,Patricia Rivera +83987,Beverly Garland +79695,Andrew S. Gilbert +85278,LaToya Chisholm +119653,Mang Ding-Goh +1651690,Elizabeth Kelly +78461,Joey Kramer +210570,Jochen Stern +79890,India Martin +1778298,Sarah Mitchell +4046,Lloyd T. Williams +1677327,Daniel Eric Lee +15675,Alison Elliott +334,Omar Benson Miller +21945,Laurence Ashley +88978,George 'Gabby' Hayes +12407,Candy Clark +117349,Shim Hye-Jin +83205,Tatsuo Endô +19898,Vladimir Kulich +197073,Philip Perlman +66580,Scott Adsit +1864553,John Hill +1188783,Matthew Faust +96545,Norbert Schwientek +1708458,Professor Toru Tanaka +1366351,Shaun McComb +1313819,Isabel Rose +1444735,Jonathan Simpson +1811956,Joe Bacino +22185,Nadeshda Brennicke +1218168,Isidra Vega +16180,Robert Picardo +1672684,Daniel Rogerson +83783,Albert Sharpe +9174,Charles Gordone +1867438,Damián Barrera +70888,Michael von Au +1409925,Eleni Haupt +81955,Joy Gohring +9046,Chazz Palminteri +111382,King Moody +592897,Kevin Fennessy +54044,Patrika Darbo +29585,Martha Mansfield +1426036,Lucía Real +1628035,Sanziana Tarta +183517,Gina Belafonte +63982,Christopher Kovaleski +11751,Kassie DePaiva +5658,Michael Gambon +66761,Leon Lai +3143,Rudy Bond +1304260,Thomas Noguchi +387,Kim Greist +165082,Wendell Holmes +135057,Stephen Purdon +1174347,Jiří Suchý +93538,De'Aundre Bonds +6838,Frank Overton +8241,Hillary Brooke +81101,Chris Violette +1786658,Kristin Cruz +41220,James Coco +1628344,Katherine Disque +14574,Sam Levene +573570,Öllegård Wellton +29862,Jim Beaver +551911,Karl Johnson +48514,Eric Judor +11674,Gary Kohn +1460957,Henry Farty +60880,Gina 'Ginger' Bernal +108155,Cisse Cameron +17787,Phyllida Law +76416,Amanda Walsh +13897,Olga Tschechowa +1118082,Dennis Hemphill Jr. +1077735,Everado Elizondo +16241,András Bálint +1115655,Richard Smedley +59154,Tamala Jones +10734,Kenneth Colley +80141,Petra Lea +176790,Jeff Mantel +46936,Marc Michel +1225334,Roy Barraclough +94766,Gene Davis +1896856,John Crean +80432,Jessica Huang +20900,Jeffrey Force +8784,Daniel Craig +1331764,Manuel Lopez +1076427,karl vaananen +27406,Florian Fitz +58950,Greg Collins +11464,Betsy Baker +1124231,Richard McNamara +544311,Eva Vejmělková +90118,Naum Shopov +120603,Erin Frosty +11357,Bruce Campbell +100781,Isabel Jeans +110878,John Prine +69395,Bug Hall +98214,Monique Dupree +1256494,Go Soo-hee +14424,Frank Barnes +29508,Barret Oliver +1886571,John J. Walsh +1542807,Sunny Hawks +108105,Winter Hall +1779454,Bill Cwikowski +1804166,David Rees +21081,Zach English +1009503,Laksh Singh +1455760,Jason Furlani +27110,Malcolm Stewart +20124,Gene Tierney +119375,Janet Du Plessis +1345870,Greg Sheridan +41293,Marian Seldes +1439594,Søren Vestergaard +174942,Lawrence Cook +33501,Mark Christopher Lawrence +172962,John F. Parker +292249,Barbara New +1229320,Eric Mason +1379561,Jean Darie +1460963,Max Rogerys +97854,David Millbern +1254216,Kent Tong +590992,Willy Semler +1217610,George T. Odom +68884,John Collin +20093,Scotty Leavenworth +10675,Caroline Bliss +149486,Carlease Burke +1294171,Raphaël Dury +11717,Mara Wilson +77332,Ridge Canipe +78085,Dick Balduzzi +139088,Carl Billquist +3342,James Edwards +236974,Micheline Bourday +47784,Paul Maximilian Schüller +31903,Henry Winkler +1114903,Matthew-Lee Erlbach +118039,Holly Mackie +590850,Imad Creidi +51963,Michael O’Hare +98306,Morgan Griffin +58225,Zach Galifianakis +82721,Ernest Dixon +7862,Floyd Red Crow Westerman +83813,Thierry Neuvic +3874,Patrick Joswig +575674,Christian Stokes +1209055,John Warman +75397,Rod Mullinar +1296370,Harry Grant +1087584,Linda Sorensen +114674,Glynn Turman +53283,Jonathan Taylor Thomas +69966,Leda Gloria +30191,Noel Hood +47172,Hans Adalbert Schlettow +1230785,Arlene McQuade +112884,Ed McMahon +152701,John Quade +1531882,Jennifer Perkins +95981,Kimberly Neville +51339,Ted D'Arms +2536,Michael Parks +54791,David Ferry +145252,Masao Hayama +28164,Charles Grodin +1151383,Dmitriy Bykovskiy-Romashov +102437,Karrie Emerson +11511,Daniel Stern +224073,Donald Pilon +1069676,Josephine Koo +2775,Corey Allen +1315402,Paul Westphal +42297,Brooke D'Orsay +1206246,Spencer Ashby +199055,Michael Carter +10511,David Meyer +41756,Robert Bray +6022,Caroline Baehr +1339926,Lee Nashold +66470,Leonard Andrzejewski +1462134,Eileen Bell +35547,Harley Cross +1752333,Everett Smith +553157,Elizabeth Dupeyrón +175484,Carlos Martínez Baena +25869,Reiko Aylesworth +143574,Paul Collins +1752725,Ingrid Gaynor +98169,Aron Kincaid +105291,Leslie Kaye +12900,Wallace Shawn +119892,Lorie Griffin +151550,Pat McCaffrie +60875,David Jensen +44691,Lee Montgomery +218223,Kathryn Reynolds +15635,Stewart Moss +74043,Dave King +1720973,Kenneth Flores +18613,Kenji Sahara +91039,S.A. Griffin +107191,Bernard Seray +20760,Willie C. Carpenter +216108,The Amazing Johnathan +1417042,Jonah Russell +1330778,Atif Y. Siddiqi +70359,Birgitta Valberg +62933,Alvin Van Der Kuech +44560,Hubert Saint-Macary +987465,Bill McLaughlin +1891665,Chris T. Margaritis +1162288,Alexandra McGuinness +2142,Alexandra Bokyun Chun +85199,Alan Thicke +39332,Henry Czarniak +9874,Bernard Lee +1173804,Rob Riley +72017,Hao Zheng +215741,Winston Dennis +1879505,Darwin Hall +92710,Werner De Smedt +1609235,Pua Kaholokula +1104568,Sylvia Jefferies +1183964,John Mauldin +163431,Bill Luhrs +1265405,Peter Saxe +122257,Robert McKay +2061,Bindu De Stoppani +136882,Kyôichi Satô +1532386,Celestine Rae +30261,Janet Beecher +52685,Makram Khoury +76980,Leora Dana +1779985,Olanna Taskey +102722,Olive Sturgess +1673211,Moby Griffin +553182,Domenico Gennaro +167166,Hiep Thi Le +38709,Tom Virtue +1116664,Thomas Antoni +91371,Quinn K. Redeker +66539,Libby Mintz +1225755,Terry O'Sullivan +39972,Ruth Trouncer +45571,Monika Malacova +1232417,Lynne Marie Stewart +1221596,Sally James +1422613,Peter Savage +983490,Cerasela Iosifescu +18354,Bridget Moynahan +60004,Kestie Morassi +14104,Phil Hartman +955,Penélope Cruz +4177,Jake Weber +581116,Christian Bassoul +62134,Kevin Duhaney +82687,Michael Strasser +58760,Serge Soric +75780,Cecil Zilla Mamanzi +78057,Oliver Hardy +8898,Kelly Ward +2246,Earl Cameron +125271,György Barkó +21132,Abraham Benrubi +1836,Julia Davis +77018,Carrie Hamilton +64672,Christine Lippa +17928,Joe D'Onofrio +33186,Alan Ruscoe +90358,Yuri Petrov +4343,Louis Calhern +68653,Claire Du Brey +109614,Betty Garrett +1096796,Douglas Sebern +95099,Valerie Leon +1218119,Mark Schulte +41234,Judy Geeson +119209,Svetlana Pismichenko +26009,Gail O'Grady +1502507,Matt Thomas +9975,Richard E. Butler +40393,Dean Jones +1091176,Tony Colon +167441,Vivienne McKee +1660692,Ross Brodar +1089439,William Yang +2524,Tom Hardy +33482,Bob Holt +999605,Ahna O'Reilly +76297,Tristan Versteven +66645,Cary Guffey +108236,Boyd 'Red' Morgan +50972,Michele Carey +1232568,Ephraim Benton +1160575,Ronald Wong Ban +1197283,Mabel Van Buren +65719,Erik MacArthur +72055,Tawny Kitaen +59538,David Beckham +1136808,Tenky Tin Kai-Man +134407,Hiroshi Oizumi +18071,Geoffrey Lewis +52466,Nichelle North +1163072,Stuart Rogers +1303019,Luciano Manara +1879477,Jack Edward +260837,Jean Douchet +79228,Roy Costley +101502,Anthony Richmond +47000,Richard Vernon +1173,Mark Margolis +1661590,Jeff DeRocker +920,Jürgen Prochnow +47567,Anna Cropper +1448835,Suzi Bass +80439,Carrie 'CeCe' Cline +85358,Rita Johnson +1716153,Sylvie Strause +550822,Annielo Mele +10160,Rhonda Fleming +1081822,Wayne Doba +85345,Felix Aylmer +7796,Illeana Douglas +32592,Ron Vawter +48522,Erik Lee Steingröver +1679452,Paula Raflo +21562,Annabel Schofield +1039590,Michael Nash +1385763,Sandro Moretti +2870,Gray Frederickson +70287,Will Finn +60387,Fahnlohnee R. Harris +1888565,Menachem Lang +78139,Blythe Auffarth +30618,Barbara Harris +98018,Gwen Lee +83777,Christopher Shyer +24976,Ana Torrent +128097,Ali Al Ameri +1373457,Julie Brown +1733424,Bob Wahl +40212,Dave Willock +42324,Annabelle Gurwitch +1179787,Jorge Luis Abreu +1025312,Tamao Satô +18228,Juliet Berto +1748103,Alexander Denk +17490,Isiah Whitlock Jr. +1417447,W.R. Brown +1790434,Tamie Gandee +555532,Ion Haiduc +18061,Satoshi Nikaido +552165,Nakajirô Tomita +1216331,Sandy Scott +15772,Richard Derr +19753,Debbie Lee Carrington +1620879,Zheng Xiao-Dong +74946,Huang Lei +113704,John Alvin +97250,Mavis Villiers +169263,Lisa Altomare +554476,Andrew Cooper +187841,Tim Bohn +21278,Alan Alda +220704,Evan Seinfeld +81548,William Obanhein +77448,Ross Thomas +1582007,Ashley Whillans +125106,Steven Cheung +1229623,Erin Elliott +1134729,William Ho Ka-Kui +10956,Josh McLaglen +552519,Haruka Yamano +34947,Kevin Conroy +107336,Anthony Valentine +94892,Valentin de Vargas +161783,Kip King +1571365,Danna Davis +60235,Clinton Leupp +107684,Frank Craven +89187,William H. Brown +30274,Jeanne Cagney +213289,Júlia Buisel +76130,Brian Bonsall +1006063,Beth Naef +1112128,Darby Crash +30453,Robert Clarke +32390,Albert Hague +1681445,Robert Whelan +26775,Liu Chia-Liang +1215915,Bernard Kates +14690,Rex Evans +941286,Grant Nickalls +134894,Padrig Owen Jones +1376722,Totti Truman Taylor +70068,Pär Sundberg +1653784,Sara Anderson +18328,Ken Howard +1757142,Mario Brignoli +1901807,Laura Hayek +1248524,Yoriko Douguchi +9920,Adolfo Celi +1752861,Tony Morando +40634,Florian Panzner +1646100,Lenka Vomocilova +85111,Bill McCormack +3144,Al Martino +29237,Leo Bill +141586,Eddie Gribbon +236050,Dustin Sterling +151797,Jimmy Yuill +104012,Richard McGuire +119077,Mika Shinohara +17066,Enric Arquimbau +17684,Israel Contreras +2780,Virginia Brissac +1620876,Qu Xue-Dong +62561,Tessa Thompson +994272,Alex McAvoy +1041747,Ethan Laidlaw +8355,Steve Lucescu +1603,Daniel Giménez Cacho +1186843,Pelle Bang Sørensen +77519,Ryan Pelton +109758,James E. Bowen Jr. +26028,Eddie Ryder +1352529,Aleksandra Lavrova +1717088,Marsha Florence +234586,Anna Maguire +124476,Tomoko Kawakami +29584,J. Malcolm Dunn +29920,Nicoletta Elmi +19329,Miles Mander +65142,Darren Lee +22606,Alec Craig +1239830,Toki Shiozawa +1468244,Julianne Waters +2495,Lionel Atwill +48965,Anthony Hickox +31713,Brían F. O'Byrne +80261,Robin Hardy +135142,Raz Degan +76526,David Thornton +15799,Lenny Von Dohlen +15504,Sabrina Barry +30218,Billy Watson +108020,Kaoru Yachigusa +96349,Molly C. Quinn +1513364,Shomari Downer +207309,George Antoni +65146,Bob Sessions +27911,Marie Ault +87268,Julia Migenes +112080,Shawna Waldron +4786,Richard Attenborough +84521,Elisa Bocanegra +87010,Silvio Muccino +1663613,Jim Brockhohn +68851,Ricky Dean Logan +39036,Vladek Sheybal +1576540,Danielle Saklofsky +19109,Carolyn Jones +1749231,Jia Fengsen +20243,Roger Ashton-Griffiths +27738,Chris Hardwick +1209729,Toi Rose +1887378,Daryl Nuhn +64517,Joseph Griffin +81247,Philip Latham +87079,Jaleel White +1484313,Heihachiro Suzuki +44178,Gregory Scott Cummins +5012,Sky du Mont +4599,Ray Barlow +108620,Amanda Walker +35031,Ken Berry +1188782,Michael Cavadias +89065,Douglas Wilmer +71777,Olivier Py +136386,Tsuruko Mano +114402,Oliver Blake +180435,Dominic Marcus +95750,Sonu Sood +1185259,Danielle Dunn-Morris +1778260,Nicholas Sugimoto +1426034,Tara Marie Anderson +125908,Paul Stassino +210276,Brittany Byrnes +51791,Mary Davenport +1896898,Gregor Wood +1193677,Sharon Lewis +119369,Maureen Connell +147852,Kim Eung-Soo +92757,Alfie Wise +84559,Jacques Aubuchon +103598,Elaine Jin +140293,Todd Turquand +1879479,Francis Brooks +317535,Arlette Balkis +181133,Randall Bosley +86624,Collette Wolfe +102424,Darcy Pulliam +1876861,Sue Broberg +83976,Sherman Hemsley +1765268,Leslie Thorsen +1741945,Isreal Saldivar +116749,Norm Grabowski +1645156,Tammy Vaughn +1582315,Michael Nunes +1760086,Geraldine Thomas +101377,Paul Bartel +98180,Dick Biel +86396,Sachiko Murase +10556,Carol Kane +190775,Cliff Lyons +1224149,David Meunier +1169737,Noam Morgensztern +19117,Emmanuelle Devos +70674,Norman Chu +82316,Edward Woods +1698438,Hope Ross +2475,Andrew Weir +6944,Octavia Spencer +1416137,Guy Van Riet +72786,Gigio Morra +1037923,Pasqualina Brolis +1478368,Tamae Sengo +57136,Ryan Merriman +551517,Lynn Philip Seibel +1567028,Roberto Rossi +21411,Ice-T +1055133,José Mora Ramos +999884,E.H. Calvert +25156,María Casares +52893,Trudi Jackson +1246931,Kim Gyu-ri +36078,Nezumi Mamura +9878,Lois Maxwell +1857326,Pamela Tice Chapman +115068,John McLaren +1366377,Matt Purdy +1543046,Elaine MacKenzie Ellis +135839,Philip Hersh +154905,Beans Morocco +20667,Sami Bouajila +10355,Martin LaSalle +76381,David Butler +573,Karl Bruckschwaiger +1225517,Larry Johnson +131057,Bernie Gozier +2749,James Dean +78783,David Landfield +17290,Andrew Tiernan +90659,Chris Hogan +1752788,Serge Kushnier +174632,Zara Cully +1331796,Kate Super +142474,Tomio Aoki +555209,Hayato Ichimonki +2388,Jonathan Frakes +14921,Erwin Connelly +1857423,Jerry Ezekiel +102603,John Howard +93928,Cristen Coppen +96223,Michelle Hurst +151908,Jorge Moreno +1147364,Femke Lakerveld +93493,Emilie Chesnais +48883,Neelesha BaVora +17604,Jeremy Renner +2232,Michael Keaton +151676,Ned Wever +99932,Toni Wynne +1386347,Pearlyne Irving +225032,Pedro Fernández +80477,Hope Azeda +536472,Edward Pawley +1780617,Bob Mullane +31007,John Capodice +157405,Darryl Theirse +1416108,Isabelle Noah +95758,Ken Page +235345,Autry Ward +53652,Collins Pennie +88342,Araba Walton +7110,Anna Nehrebecka +96320,Gary Perez +1894152,Leo Hohler +228560,Hiroki Matsukata +553225,Kim Peacock +1105,Sonny Landham +1290486,Victor Travers +238615,Leslie West +106840,Michael Collins +975,Nick Moran +855,Lee Remick +114921,Dorothy Stratten +22621,Angela Alvarado +931793,Paul Panzer +78086,Gene Collins +12644,Mitch Pileggi +8987,Lisa Jakub +11149,Dominique Swain +1086573,Robyn Reede +15789,Alex D. Linz +18585,Joe Molina +7116,Andrzej Łapicki +1135967,Lisa McCammon +40598,Rafer Johnson +71726,Casey Boersma +1181275,Kit Guard +188707,Christopher Stapleton +1013882,Mitch Gaylord +134898,Robert Page +1082746,Seiichi Kato +85593,Dhritiman Chatterjee +1241038,Wynn Irwin +1280469,Jennifer Gray +74931,Jamal Duff +1261735,Luc-Antoine Diquéro +235145,Takashi Kashiwabara +1016433,Kevin Porter +168043,Montie Montana +954129,Rose Plumer +1513491,Virginie Ullmann +1956,Cherry Jones +15853,Wes Studi +66543,Cree Ivey +1260881,Monalisa Basarab +82427,Adam Clayton +1170974,Behrooz Afrakhan +8829,Mae Marsh +235346,Rusty Meyers +216490,Shepard Koster +57701,Rochelle Davis +25792,Alberto Lucantoni +3902,Sara Stewart +1209703,Robert Berkman +101908,Maxwell Caulfield +81846,Richard Gautier +120306,Gloria DeHaven +19202,Brittany Mountain +138877,Sam Malkin +12056,Hawthorne James +35026,Duane Sharp +1789031,Michael Augenstein +87369,Mario Siletti +10477,George Dzundza +7176,Steve Cropper +131311,Charles Eastman +119702,Amber Norman +57461,Simon Russell Beale +177493,George Ede +82341,Hillary Tuck +70337,Lee Eun-ju +1432661,J. Lewis Smith +75343,Florence Henderson +11451,Eddie Campbell +37460,François Chaumette +1356542,Malcolm Pitt +3013,Erland van Lidth +2687,Lyriq Bent +207310,Eiji Kusuhara +18044,Boubker Ait El Caid +39472,Henri Poirier +1445663,Stuart Powell +1741432,Lisa Ann Phillips +1537642,Josef Koza +20710,Chiara Mastroianni +81952,Jackson Wurth +1080071,Laurie Kilpatrick +1224391,Ian Roberts +37599,Charlie Phillips +81295,Shane West +1081854,Kirsten Larkin +87817,Pooch Hall +138752,Takao Inoue +60765,Adrian Roberts +11221,Raymond Bussières +133952,Burton Gilliam +12976,Rawle D. Lewis +1463006,Joe Cozier +1661594,Navah Perlman +10510,Kabir Bedi +31364,Sarah Douglas +103783,Fred Meyers +1217505,Gary Morgan +1545466,Anthony Cecere +951246,George Herbert +1748941,David Beggs +116423,Liu Kai-Chi +79415,Sophia Lin +1194903,John Plumpis +167756,Dempsey Pappion +158939,Redmond Gleeson +97716,Robert Brian Wilson +689,Kate Capshaw +45581,Jim Gaines +16171,Phoebe Cates +78798,Tom Kenny +1616634,Kama Kowalewska +26066,Joe Flanigan +1265424,Wolfgang Staribacher +10358,Dolly Scal +3138,Kathy Griffin +17682,Carlos Emilio Báez +1050274,Saša Petrović +81381,Michael McConnohie +1580043,Karel Urban +47780,Wladimir Klitschko +552673,Mitsuko Narita +183289,Alexander Kirkland +1766029,David Carrera +102421,Mike Hatfield +8258,Ben Johnson +79529,Eric Cornet +1263235,Doris Deane +97442,Rodney Hart +33135,Chishu Ryu +90571,Toshihiko Seki +1752340,Shane Simpson +1837918,Alan Lilly +1619137,Alexi Long +25456,Chris Symes +1086,Heino Ferch +81691,Chris McKenna +79735,Alan Manson +4741,Cayden Boyd +166924,Herschel Sparber +39770,Adam Roarke +228962,Marjorie Andrade +1064720,Cesarino Miceli Picardi +61824,Mick Garris +1748104,Rodney Louis Johnson +1290726,Bill Walters +116805,Paul Feig +1352516,German Maksimov +28262,Jacques Duby +120474,James T. Mack +106119,David Hart +141478,Teri Lally +61961,Dave Thomas +544742,Iwan Mosschuchin +612216,Eddy Ko +56513,Catherine Sutherland +34574,Lucien Littlefield +921,Brigitte Nielsen +121519,Tina Gylling Mortensen +25463,Toshio Kurosawa +17755,Beulah Bondi +4819,Paolo Bonacelli +16584,Dana Lee +1080209,Wade Hayward +553448,Yoshimi Imai +2886,Gailard Sartain +1589970,Alissa Kramer +1454094,Doug Yasuda +81690,Don Swayze +188147,Nick Bon Tempi +150570,Michalis Zeke +188949,Cyrus Thiedeke +25472,Lim Giong +74506,Curt Lowens +1159594,Salah Miled +1231581,Susan Richardson +97432,James Hillier +168101,Alex Montoya +83623,Tom Fadden +14947,Susan George +1230008,Monica Staggs +101232,Gene Roth +1287645,Richard Reitherman +12797,Glenn Morshower +186411,Ronald Rubin +10863,Paul Anthony +87136,Don Gavin +1193723,Cheng Mang-Ha +63134,Lomama Boseki +117112,Linda Christian +13241,Estella Warren +5730,Barbara Bel Geddes +7370,Damián Alcázar +120613,John Karlsen +322506,Shelby Brammer +8985,Margaret Colin +87118,Michael Beach +1281537,Carl Rooney +1275930,Hông Hanh Luguern +168051,Pat Hogan +239946,Ramiro Iniguez +10608,Gary Merrill +63544,Steven Culp +120701,George Davis +39689,Marie Trintignant +126565,Jack Van Evera +12876,Peter Jurasik +42556,Neith Hunter +1629440,Samruay Jaratjaroonpong +1571373,Aileen Mythen +31551,Zachary Scott +34317,Andrew Tombes +1441268,Don Bell +258,Gael García Bernal +11169,Charles Coburn +1444547,Lotte Mejlhede +65568,James Sikking +83053,Hope Alexander-Willis +4322,Jeff Clark +18472,Kevin Corrigan +31925,Hugh Quarshie +60677,Brad Leland +20751,Bridgette Wilson +1556271,Nick Borgani +3855,Per Oscarsson +18918,Dwayne Johnson +179451,Ruth Lee +67315,The Dalai Lama +1059874,Ryô Hayami +32206,John Merton +105762,Jimmy Jean-Louis +1659312,Panama Redd +71198,Christian Kane +120588,Brian Hoyt +94315,Richard Shannon +84077,Duane Martin +1750077,Cavada Humphrey +41670,Rebecca Miller +1031118,Lalita Ahmed +1609210,Greg Gorman +1072123,Mel Ruick +137471,Julia Deakin +60959,Jackie Sandler +1607161,Ana Argueta +1225788,Catherine Butterfield +1152492,Allen Fiuzat +140817,Blanche Payson +59540,José María Gutiérrez +135148,Vlad Radescu +4739,T. Bruce Page +16181,Haviland Morris +77136,John Clarke +53204,Vincent Moscato +70439,Yin Tse +1396842,Dorothi Fox +16621,Ian Fried +162751,Belinda Carlisle +7424,Oscar Goodman +1192387,Roberto Gari +37137,Jean Ozenne +579203,Pouel Kern +1335637,Kate Layden +428960,Park Ye-jin +1173224,Jia Kang-Xi +102425,Anna Mathias +92857,Shalom Harlow +30264,Luis Alberni +120657,Gilberto Idonea +45428,April Telek +17293,Giovani Cimmino +67503,Nikolai Okhlopkov +79957,Ian Liston +1622623,Tara Battani +81388,Steve Howey +1296385,Jackie Kuntarich +69671,James Acheson +13283,Akira Emoto +35848,Art Baker +77192,Estelle Lefébure +1113206,Mădălina Ghițescu +20480,Taylor Momsen +70690,Ken Lo +400,Geraldine Chaplin +162091,Jayson Kane +62572,Owen Smith +44715,Zsa Zsa Gábor +62064,Chris Pine +69405,Brian Krause +1141,Hélène Vincent +47305,Hans Junkermann +1887366,Kevin Manser +111922,Robert Capron +33178,George Chandler +1090464,Brad Baldridge +239980,Adriane Napualani Uganiza +81096,Joshua Close +1742631,Siobhan McSweeney +142915,Louis Lefebvre +13548,James Spader +200598,Dwayne McLean +2628,Kiefer Sutherland +352112,Veronika Johansson +551853,Tomi Segawa +175935,Jay Kogen +9779,Моррис Честнат +329782,Armand Cortes +16564,David Petersen +929300,Kai Atô +84844,Michael Shulman +1781726,Robert Nardi +1206237,Angela Montoya +1037002,Jonas Applegarth +1661616,Joe Locarro +193597,Elaine Wilkes +27996,David Gale +127164,Phyllis Logan +156756,George Perez +1094093,Bryn Walters +102066,Granville Bates +1038481,Mariela Díaz +130517,Angie Tsang Sze-Man +16850,Rose McGowan +1444503,Henrik Boensvang +46920,Sam Lloyd +1476699,Nicolae Constantin Tanase +1216581,Murray McArthur +85620,Kevin Harrington +38809,Camilla Rutherford +1729786,Harry Bill Roberts +1232205,Sarah Sawatsky +34257,Anthony Stewart Head +5588,Alicia Silverstone +1294216,Chantal Giroux +1762965,Frankie Como +1735910,Sandra Bolton +12075,Peter Dennis +1448697,Jina Song +168500,Sandra Steier +105190,Sheeri Rappaport +1247601,Theresa Watson +1527995,Sarah Hudnut +17141,Greg Kinnear +143821,William Bechtel +24898,Nathan Jones +1406155,Ernö Virág +24499,Valentina Cortese +105826,Yoke-Moon Lee +1200794,Lloyd L. Tolbert +29642,Lou Costello +78317,Bob Bergen +1539,Rick Overton +134234,Christian Roberts +58068,Fionnula Flanagan +28034,Trude Klein +4732,Adam Nelson +1307853,Pauline Starke +48521,Dana Carlsen +16310,Wolfgang Lukschy +54203,Tinsel Korey +1576788,Sandra +3127,Lili Taylor +78460,Brad Whitford +104593,Gary Schneider +31717,January Jones +80369,Annabelle Apsion +1781195,Bill Chemerka +78921,Dimple Kapadia +1004549,Vassili Lambrinos +132429,Aïssa Maïga +3971,Sophia Myles +44728,Cameron Mitchell +30849,William Fawcett +4568,Jayne Eastwood +75781,John Turner +3149,Marilyn Monroe +27888,Raúl Juliá +1517843,Daniel Spink +1225436,Michael Starke +13526,Noah Wyle +78616,Lorenzo Music +1660539,Dee Noah +1272810,Vinnie Adams +3491,Thomas Kretschmann +1214865,B.J. Britt +19164,Julien Rochefort +1115,Stephen Graham +135174,Nicola Stapleton +555199,Zhao Fanghao +120725,Yu Rong-Guang +1552315,Eugenia Bosânceanu +53368,Scott Porter +14288,Eugenie Besserer +1360814,Grey Evans +126171,Michael Socha +1213153,Malachi Throne +23881,Timothy Busfield +1186733,Tanya Smith +110008,Kris McQuade +119446,Chin Yuet-Sang +190208,Robby Romero +140515,Juliette Compton +1540664,Roger Vincent +1212003,Ricky Paull Goldin +45467,Diane Cilento +84918,Marta Heflin +105049,James Patterson +45476,Joan Prather +67172,Elizabeth Kaden +24981,Miguel Ángel García +1677034,Tomo Fukui +936397,Kenneth Ransom +19870,Jerry Swindall +35198,Rachel Roberts +63378,Carl Miller +183057,Mary McNeal +229565,Heather Beers +1677002,Indira Manjrekar +25686,John Comer +1794711,Lance Rosen +5248,Lee J. Cobb +10875,Françoise Yip +2502,Charles Halton +1315446,Danny Ainge +1427105,Bing Conley +1728634,Ellen Esser +36193,Anibal O. Lleras +149869,Françoise Gillard +1204260,Jim McKay +16897,Sidney Poitier +33181,Jimmy Smits +32388,Antonia Franceschi +80158,Lindsay Hill +1741407,Eric Miller +89099,Harvey Clark +7036,Eric Stoltz +217394,Dort Clark +1444491,Jeppe Kristiansen +62597,Peter MacKenzie +21345,Stephen Mangan +64880,Choi Min-sik +125842,Pat Flaherty +6591,Chris Isaak +82495,Rachel Roberts +75345,Mike Lookinland +75896,Monty Maizels +9140,James Faulkner +1778224,Jeremy Thompson +545856,Johnny Thompson +85588,Murali Sharma +1217749,Robert Fieldsteel +12367,John Mann +1564078,Jeong Dae-Hun +1513690,Henry Kingi Jr. +2981,Akbar Kurtha +18248,Mary-Louise Parker +552665,Yuri Satô +1556205,Raheem Khan +1269703,Pak Man-Biu +40965,Victor Maddern +2097,Ted de Corsia +1526343,Joy Lane +59259,Mark Derwin +1127146,Margaret Warncke +229672,Lee Ingleby +1088939,Kenny Alfonso +189302,Hamilton Dyce +246347,Gertrud Fridh +33401,Bosco Hogan +2220,Tony Curran +1831,Stephen Manley +80866,Nell Carter +135059,Robert Farrell +68324,Thomas Anzenhofer +19207,Timothy Bottoms +80543,Emani Sledge +91427,Patrick John Hurley +1776458,Brittany Weber +1216504,Claudia Jordan +166258,Malcolm Tierney +565517,Alecs Baird +72230,Marcel Pérès +14671,Dick Van Patten +10070,Mie Hama +17412,Lauren Shiohama +142878,Guðrún Gísladóttir +14541,Chris Sarandon +131449,Fay Compton +1226675,Pat Priest +1821,Michael Elphick +29091,Mia Sara +18359,Terry Camilleri +14738,Malcolm Danare +68024,Rim Turkhi +90516,Eddie Fisher +8607,Lorraine Gary +6840,Larry Hagman +1720970,Alexandra Theriault +1406145,Linda Wagener +66541,Donté Bonner +1212301,Darren Frost +12725,Celia Johnson +25976,Bernard Musson +103059,Fiorenza Tessari +34546,Mark Gatiss +79131,Bill Wisely +1056194,Jeff Corbett +77987,Karita Bekkemellem Orheim +30210,Jean Arthur +931246,Jack Woods +89838,Leo Penn +1463851,Mary Pitt +1839025,Wallace Earl Laven +52087,Carol Alt +149010,Orlando Brown +28004,Brian Markinson +1861052,Corlee Bew +228622,Theerayut Pratyabamrung +1789263,Liu Tianchi +169906,Jennifer Bassey +1479429,Mike White +991317,Evan J. Klisser +56710,Oliver Parker +1356547,Muriel Hunt +14486,Arthur Edmund Carewe +1093250,José Greco +8487,Gregory Peck +2989,Richard Price +17476,Peter Wight +101619,Edward Connell +127642,Louise Glenn +99377,T. Roy Barnes +103944,Dondre Whitfield +1724911,Danny Gain +19280,Suzanne Ford +1206233,Vinc Massa +1959,Brigitte Fossey +41292,Keri Russell +42706,Nicholas Lea +9287,Robert Blake +1752721,Tramaine Montell Ford +10222,Roger Moore +131477,Dawn Bender +1527825,Bradley Hall +32786,John Davis Chandler +552504,Yuya Ozeki +540,Callum Keith Rennie +85347,Gabriel Woolf +8494,Estelle Evans +1650965,Aleczander Gordon +1079544,Margo Winkler +148884,Chin Ka-Lok +1335621,Andrew Birch +1147893,Victor Romero Evans +1680755,Steve Lucky +1152705,James Dime +82270,Bonnie Raitt +48510,Erdal Yildiz +75528,Kaitlin Hopkins +1217903,Ronald William Lawrence +1847201,Colin Prince +576473,Jan Rippe +68398,Shélan O'Keefe +62231,Rupert Frazer +16851,Josh Brolin +91436,Charlie Gates +10401,Blythe Danner +1230446,Lynda Mason Green +378,Jonathan Pryce +13732,Richard Herd +96701,John Eldredge +1455810,Elaine Summers +4093,Ray Walston +11392,Dennis Dun +4602,Jon Tenney +1426137,Peter Lindsay +1185642,Yutaka Nakayama +26718,Dorian Missick +1613797,Wong Chi-Man +70261,Nat 'King' Cole +1382045,Seth Sakai +86602,Jerry Trimble +374,Charles McKeown +19178,Dick Shawn +1270,Charles Martin Smith +94286,Harold Pruett +14105,Stephanie Faracy +153941,Jim Mapp +132730,Bob Sorenson +110319,George Roubicek +31649,Brooke Smith +1896862,Tim O'Mahon +76525,Gerry Bednob +1623506,Andre Cuyas +1836338,David Poynter +1841265,John E. Davis +1673213,Daniel J. Manning +1770825,Serge Citon +1108,Shane Black +1371117,Mohsen Ghazi Moradi +64471,Chad Faust +15412,David Clennon +590277,Norman Shelley +9015,Kelly Macdonald +103397,Jean Keraudy +94137,Raffaello Degruttola +44248,Ron Lea +17630,Michael Tadross +578328,Gérard Larrousse +9657,Patrick Warburton +35216,Michel Boisrond +185178,Laura Catalano +10655,Leslie Phillips +20362,Jill Clayburgh +101896,Milt Kogan +143476,Henry Cele +1217575,Chuck Ardezzone +86566,Preston Maybank +109201,Hugh Walters +1857451,Robert Alexander +1794,Bibi Besch +166652,Brandon Jarrett +230076,Patrick Paroux +89014,Jack Duffy +85115,Joe Fria +554628,Ed Crowley +73337,Al White +72290,Mikele D. +1446696,Kathryn Faughnan +1444544,Toshihito Inoue +1200247,Masanobu Ôkubo +81544,Kelly Reno +1977,Richard Bohringer +3899,Ken Watanabe +134732,Chamloen Sridang +45754,Fedja van Huêt +66525,Jesse Garcia +106791,Aida Turturro +9723,Masahiro Kobayashi +69597,Drew Barrymore +3623,Elena Anaya +33259,Jennifer Love Hewitt +1060579,Stephen Eugene Walker +122807,Dana Gould +1677319,Danny Kwan +120226,Mohsen Makhmalbaf +85939,Sei Hiraizumi +17079,Richard Felix +50401,Katie Wright +1983,Vincent Laresca +1348634,Gus Saville +117148,Chris Nash +1982,Ajay Naidu +987053,Marc Fiorini +57541,Henri Labussière +7112,Andrzej Szalawski +131022,Youko Benisawa +79189,Nick Mennell +42195,Kristy McNichol +127738,Harry Northup +53264,Claude Phillips +82820,Annabella Piugattuk +1076576,Isabella Rocchietta +1651930,Lola García +1762963,Wendy Foxworth +6395,Eszter Balint +1671,Sverre Anker Ousdal +69884,Mary Gregory +1098344,Black Phomtong +82342,Devin Oatway +72540,Takeshi Katô +184030,Jason Marin +30087,Fraser James +62836,Derek Waters +114527,Lynn Storey +199468,Bobs Watson +1645,Sandra Voe +44020,Stella Dassas +173682,Sheila Frazier +145200,Maxime Lombard +2157,Robin Williams +1660267,Pieter Riemens +44621,Ray Reinhardt +1188456,James MacDonald +54881,Summer Glau +547992,Tatsuya Jo +114604,Maree Cheatham +119245,Sherry Jackson +6770,Kathy Imrie +1263309,Shelton Baily +141241,William Munchow +231011,Yuet Siu Wong +1379307,Rina Takagi +76977,Akira Ishihama +133558,Gustav Vondráček +40680,Julie Brown +1176947,Tulsi Balram +1100818,Gaston Meunier +1676556,Natacha Guinaudeau +26722,Charlotte Maier +59148,Leigh Zimmerman +32434,William Henry +121193,Tetsu Nakamura +1566,Anders Hove +5266,Rüdiger Vogler +126547,Hildy Brooks +8199,Thomas Thieme +9857,Karl Malden +2437,Edward Everett Horton +11666,John Fedevich +554623,Fu Ching Chen +1356188,Wong Man-Ying +167662,Ryan Seacrest +39186,Karl Johnson +1444548,Pascal Lubrano +1322888,Glynis Angel +17287,Dominic West +105964,Rikki Fulton +550494,Yvonne Verbeeck +1867443,Claudia Martínez +100360,John Zacherle +116437,Olivia Hack +1465295,Jörg Friedrich +12643,William B. Davis +833,Alex Sol +119796,Gary Grimes +10566,Marshall McLuhan +145197,Philippe Brigaud +58596,Shinichi Tsutsumi +15309,Lori Petty +79238,Dave Mallow +7544,Felice Andreasi +59830,Patrick Mercado +11145,Gene Darfler +1674923,Philippe Soucy +40350,Amy Green +8906,Annette Charles +41711,Kitten Natividad +20313,Asumi Miwa +35819,Johnny Lever +30125,Edward Mulhare +47944,Anthony O'Donnell +553184,Franco Catalano +271738,Michael Sottile +85144,Candice King +1044677,Harold Garrison +234488,António Reis +99803,Stormy Daniels +1092212,Marie De Becker +204376,Meital Dohan +936669,Latifa Ouaou +8518,Dorris Bowdon +4936,Jochen Nickel +26131,George Innes +31383,Caroline Dhavernas +158825,Simon Rhee +13875,Robert Donner +155696,Christine La Fontaine +123464,Sif Ruud +9087,George O'Brien +79321,Christopher Martin +27261,Olivia Burnette +74113,Emanuel Booz +70991,Delle Bolton +1324518,Helen Lindsay +176511,Howard Rice +43927,Dahlia Salem +1676550,Jean-Jacques Scheffer +1577330,Arlin Alcala +570530,Nora Gryakalova +11131,Thorley Walters +11841,Robert Rietti +140148,Steve Plytas +39188,Edward Woodward +2492,Jack Benny +120591,Ryan Spahn +1472380,Matthew Garth II +570797,Kitara Coldwell +1823370,Annick Danis +1412669,Nancy Ann Nelson +1001010,Charlotte Treadway +161433,Mark Goddard +1656019,Brian Vaughan +133581,Patricia Gaul +97145,Paul Langton +101320,Jean Luisi +91906,Bobby Huber +41737,Tony Plana +3090,Richard Conte +1431403,Daniel Hilt +21564,Tetsuya Bessho +1947,Stanley Adams +1081415,William L. Rose +172917,Chris Robson +34691,John Spencer +70133,Jinpachi Nezu +237122,Wah Wo Wong +59243,Alex Ferris +150651,Dan Grimaldi +990400,Victoria Foyt +57599,Seann William Scott +1276381,Tab Thacker +1089398,Franci Leary +553434,Frank Thomas +72658,Franklyn Seales +683,Jasmin Tabatabai +1609269,Wayne Aqino +223819,Tom Madison +11767,Michael Earl Reid +70624,Neil Innes +136119,Audrey Young +3068,Matt Day +61058,Portia Dawson +52995,Edward Herrmann +19068,Dominique Blanc +14984,Jessica Hecht +158230,Joseph Adams +42146,Kai Wulff +1281031,Daniel Woodhead +65344,Esai Morales +90180,Cleavant Derricks +42171,Jonathan Kaplan +60073,Brie Larson +1237599,Charles Noland +1450156,Billy Wilson +61940,Miquel Brown +1454453,Tony Vázquez +1467403,Fred Reinhold +1178955,Lisa Lui Yau-Wai +27269,Gina Doctor +159078,Rummel Mor +35758,Jhanak Shukla +3713,Frances Fisher +130452,Anthony Decadi +61704,Al Leong +6562,Christopher St. John +2762,Mushy Callahan +104503,Scott Burkholder +238180,John Butler +33024,Huntz Hall +1062654,Jack Raymond +4689,Bronson Pinchot +552649,Tokue Hanazawa +92900,Lena Horne +1322476,Francois Harold +52865,Garry Shandling +92932,Aaron D. Spears +89013,Henry Roquemore +80444,Brian O'Hare +1836812,Huw Garmon +144020,Mary O'Brien +1422194,Ernest Shields +131386,James Finlayson +552668,Nobuaki Maeda +1153979,Roberto Suárez +1224212,David Brenner +1159649,George O'Hara +10409,Shelley Duvall +1193721,Fong Yau +148353,Arttu Kapulainen +19165,Dominique Frot +90444,Rony Clanton +15735,Helen Mirren +39817,Milo Sperber +1271226,André Méliès +1070,Frances Lee McCain +4521,Burt Young +1224173,Ian Nelson +1857449,Omar Williams +5474,Kevin Whately +1692546,Jussi Seljas +87718,Steve Heller +11915,Nigel Gibbs +80136,Jack Magner +153238,Phil Tully +61373,Cory Edwards +41235,Stewart Granger +1079042,Lee Wong +32808,Alexander Morton +17918,Francis Capra +1231141,Patrick Ewing +441778,Filip Remunda +72817,Takuro Tatsumi +545113,John Doe +30074,Burt Brinckerhoff +2041,Dr. Dre +34584,Jacques François +27934,Edwin Greenwood +58495,Morgan Paull +170662,Ria Pavia +184498,Jonathan Ward +6913,Ellen Barkin +19092,Stéphane Audran +76189,Wyn Roberts +1099406,Barry Mulligan +2154,Scott Bakula +25253,Ai Wai +150394,Priyanka Xi +55547,Matt Czuchry +45164,Henry Rowland +4303,Ward Bond +1320288,Karel Vidimský +1231662,Tutte Lemkow +55749,Martin Lo +101723,Catherine Lacey +85892,Raima Sen +1661603,Joe Orrach +141491,Darin Morgan +38562,Roberta Angelica +1366379,Scott Magee +1605162,Peter Collingwood +16071,Gregg Palmer +10027,Finlay Currie +13975,Martha Vickers +4048,George Buck +1473301,Tino García +227034,June Lang +1875120,Zahra Shafahi +27803,Edwin Neal +31711,Troy Garity +1080221,Keith Leon Williams +141429,Lance Kinsey +28279,Agnès Jaoui +1762314,Billy Mitchell +1117996,Petr Shelokhonov +44552,Michael McClanathan +1661621,Gerry Burkhardt +7640,Michael Redgrave +60159,Chuck Church +78875,Louis Koo +1124478,Yun-jae Min +127024,Frederick Leister +1338069,Suleiman +96448,James Congdon +123302,Robert Haley +1409191,Josephine Bernard +41819,Sarah Wynter +21403,Thomas Ian Nicholas +180996,Desmond Campbell +100041,Porter Strong +17140,Abigail Breslin +28413,Carmen Argenziano +72416,Akemi Yamaguchi +31444,Maren Kroymann +53963,Robert Stanton +17941,Domenick Lombardozzi +1215492,Joy Philbin +150469,Nina Wadia +1478363,Toyoaki Suzuki +44550,Tina Chen +1857418,Colin Brooks +7454,Minoru Chiaki +1264489,Keith McCready +1518352,Marisa Sally +9766,Macha Méril +166789,Dick Smothers +1711541,Kassagi +80503,Gabriele Lavia +42718,Elodie Frenck +1281690,Lottice Howell +96243,Bill Williams +1322085,Margot Gödrös +3591,Dani +9298,Guy Siner +186939,Peter Curtin +552666,Nobuo Aikawa +1167993,Yasuhisa Tsutsumi +1591740,William Rossman +1748119,Margo Blas +1077876,Andrew Wyatt +64496,Richie Ren +1706343,Aeron Macintyre +1466402,Bill Jenkins +1741970,Gene Cervenka +1781725,Philip E Jones +1320521,Skye Svorinic +60966,Robb Wells +1708242,Dan Snow +1664780,André Salgues +563413,Paola Mendoza +149359,Colin McCredie +2968,Richard Lintern +27971,Joey Krajcar +100545,Raelyn Saalman +64310,Richard Alan Campbell +80153,John Clohessy +154649,Alan Davidson +583260,Jeffrey Nelson +4734,Jenny O'Hara +156768,Dana Gladstone +43670,Dean Harrington +1115033,Makenna Cowgill +107020,David Rose +1190224,Savely Kramarov +102729,Greg Vaughan +41547,Georgina Chapman +7317,Peter Sallis +4441,Pell James +57794,Simon Lyndon +128160,Armand Kaliz +2050,Noah Huntley +106435,Gabriel Olds +1077824,Thierry Segall +16561,David L. Crowley +50,Catherine Deneuve +4174,Claire Forlani +1741391,Patrick O'Hara +144955,Luc Palun +113391,Quang Hai Ngo +7830,Heiner Lauterbach +184436,Anne Marie Howard +131049,Joyce Meadows +1594514,Chui De-Hai +106814,Paulo Araujo +228589,Eva van der Gucht +131579,Ulf Johanson +6759,Friðrik Þór Friðriksson +1172323,Gedren Heller +1408508,Edmund L. Shaff +1265394,Carey Goldenberg +1238648,Casey MacGregor +19198,Elias McConnell +164809,Ralph Brooks +78291,James Lappin +1837898,Carleth Keys +52832,Sandra Redwood +78181,May Britt +33942,Thom Christopher +1723435,Marianne Maurin +307982,Alex Campbell +119887,Mel Novak +96539,Daryl Edwards +1468748,Sig Frohlich +37015,Vera Jordanova +55438,Dmitri S. Boudrine +12353,Rex Reason +1781167,Gerard Heintz +144933,Masato Tsujioka +20491,Vanessa Ferlito +140778,Billie Bird +133002,Lewis Fiander +19393,Wilson Jermaine Heredia +47662,Austin Trevor +16975,Kiti Mánver +43470,Linda Wang +89726,Lucia Carroll +152993,Gene Wolande +78198,Tyler Hoechlin +21946,Cyril Raffaelli +76975,Rentarô Mikuni +30488,Miguel Sandoval +1672202,Douglas Grant +956213,Caven Watson +49424,Michael A. Goorjian +55615,Megan Park +163645,Neva Small +69791,Charles Haid +74911,Jorge D'Elía +11668,Liz Stauber +12826,Charles Fleischer +119648,Tong Kam-Tong +978719,Spenser Leigh +80597,Kym Whitley +176852,Sarah Churchill +1674979,Lilly He +9907,Honor Blackman +963693,Max Hoffman +154520,Matt George +136973,David Julian Hirsh +935629,Frances E. Neal +1248822,Sean Mitchell +70146,Wilson Pickett +173184,Bree Walker +2356,Gérard Brach +1624474,Tu Chia-Cheng +40305,Stéphane Freiss +1352432,Casson Ferguson +21193,Peter Andersson +1320292,Robert Blanda +1542824,Jeffrey Wiseman +11953,Benno Fürmann +1695109,Kipp Marcus +104944,Simmy Bow +83469,Shaye Cogan +159838,Lola Pashalinski +144006,Lillian Lawrence +6278,Devon Aoki +1173005,Sun Chun +52478,Rachel Blanchard +544143,B.J. Merholz +57057,Kuei Ya-Lei +97203,Eitarô Ozawa +1773757,Michelle Holgate +101612,Hyla Marrow +45839,Paul Lieber +6550,Anne Suarez +1337521,Shannon Ferber +80385,Rachel Shelley +551612,Yuk Ha Lau +84342,Michael Mantenuto +4965,Jack Elam +290,Christopher Plummer +130913,Marquard Bohm +69488,Nanni Moretti +88907,Monika Henreid +135927,Ash Varrez +37765,Audrey Marnay +1209702,Thomas Craig Plumer +44358,Fred Williams +2101,Percy Helton +4201,Wayne Knight +14700,Richard Tyson +1473,Daniel von Bargen +119255,Billy Wayne +1706157,Ginette Marcelle Bron +1434986,Shaun Hunter +82969,Takeshi Kusaka +13327,Nigel Davenport +45947,Ann-Kathrin Kramer +135169,Michael Romanoff +162172,Alex Kubik +9144,Sally Phillips +15371,Steven Schub +20156,"Sammy Davis, Jr." +1331797,Alastair Douglas +1741438,Christy Tummond +97884,John Gordon Sinclair +403760,Alma Lawton +176337,Robert Donley +141741,Gregory Hlady +64222,Mark Herrier +53285,Earl Hindman +1466147,Bonnie Belle Barber +1869984,Anna Lee +20241,Tony Haygarth +79524,Aralelly Davidson +8395,Luke Perry +1653104,Cat Stone +87135,Melissa Fitzgerald +6461,Estelle Parsons +1022217,Donald Waugh +66260,Dean Wareham +18657,Laurel Holloman +6679,Richard Beymer +21663,Yoshi Oida +16756,Jimi Mistry +65400,Dalton James +60205,John Rothman +92652,Grażyna Błęcka-Kolska +10847,Santiago Segura +118802,Douglass Montgomery +1172955,Wong Wa-Wo +1799820,Jennifer Jaramillo Valkana +1879481,Marlon Darton +150792,Etienne Chicot +1544181,Aria Alpert Adjani +141540,Susie Amy +52881,Christine Renee Ward +172844,Raoul Ganeev +71763,Susan Hogan +99806,Paul Coufos +1681455,Norman Warwick +152647,Peter Haskell +2248,Michael Wright +14453,James Burke +64677,Jay Robert Inslee +102426,Billy Curtis +40377,Roger Guenveur Smith +4730,Emmy Rossum +504787,Grace Gummer +106054,Natasha Ryan +97426,Duncan Macrae +1754,Walter Koenig +1402629,Antony Gabriel +30043,Susan Strasberg +81102,Todd Schroeder +68399,Doug James +743,Kevork Malikyan +1894178,Claude Henson +238388,Guillaume Viry +1875778,Ian Nelson +17628,Mary Elizabeth Winstead +30695,Mary Kay Bergman +69021,Marinela Dekic +80754,Etsushi Toyokawa +140574,Martin Callaghan +1096093,Joseph Gonzalez +11355,Jason Isaacs +1213527,Connor Matheus +153422,Cathleen Cordell +24965,Scott Wolf +15753,Jill Ireland +1576798,Luis Martín Gil +42077,Cserhalmi György +128598,Freddie Cunliffe +146329,Nate Bynum +87317,Nikki Cox +52175,Bryant Washburn +1517090,Ann Scott-Jones +157609,Richard Coca +136438,Eric Savin +59671,Clayne Crawford +1000109,Wan Chi-Keung +162283,Quinn O'Hara +79,Theodor Loos +29305,Bill Nagy +1206240,Joan Forster +81559,Donald Marye +1077877,Dan McMillan +5700,Esther Rolle +20819,Peter Dante +14836,Jon Korkes +82787,Jonas Abry +106475,Tom Poster +12124,Steven Brown +1668460,Steve Cormier +1661636,Don Correia +55277,Courtney Thorne-Smith +183037,Stacy Stas +22490,Matt Lattanzi +1230579,James Garbutt +21105,Jay Thomas +11052,Lars Frode +82835,Rhys Williams +533061,Dave Grohl +180878,Michael Copeman +58858,Tsewang Migyur Khangsar +100277,Julie Gordon +9825,Saffron Burrows +1741435,Carin Abnathy +41155,Don Backy +577669,Frederic K. Martini +554242,Meijin Serizawa +1741419,Tonya Oliver +1720929,Jill Jaress +4974,Charles Tyner +93149,Brian Peck +59572,Artel Great +1800176,Paul Stocker +18260,August Schellenberg +1301644,Joseph A. Bove +177623,Matthew Kimbrough +1392745,Marguerite Kinh +66587,Max Beesley +66442,Tamsin Egerton +37203,Jason Beghe +1098342,Prompop Lee +80967,Ricardo Chavira +6751,Siobhan Fallon +62885,Rodica Mandache +81246,Suzan Farmer +1109539,Ven. Geshe +199802,Graham McPherson +44711,Nicole Eggert +1031748,Ana Isabel Velásquez +1244482,Buddy Roosevelt +184388,Quancetia Hamilton +78865,Baek Jong-hak +1609271,Lloyd Chandler +227033,Michael Hutchence +61101,Matt Moore +7030,Henry Goodman +1236748,Agnes Bernelle +1235292,Joanna Roth +551825,Hisako Ohkata +117584,Eddie Phillips +20628,Michael Durrell +18355,Alex Winter +553431,Tomoko Fujita +1503026,Heather Joy Sher +139498,Lee Young-jin +1329662,Carrie Daumery +130129,Don Stark +200201,Paul Schrier +3122,Sammi Davis +1459982,Kisho Hanayagi +554337,Donna Burke +544059,Brett Fleisher +8596,Leandro Firmino +39709,Kate Reid +1303211,Christie D'Amore +110379,Phyllis Quinn +12466,Roy Cheung +1347532,Herbert Beerbohm Tree +29961,Carl Stockdale +90539,Jeff Cooper +1661638,Roland Hayes +7053,Gregor Fisher +40160,Ralph Michael +1554694,Jodi Hicks +110539,Renata Vanni +1543341,Phil Schumacher +37939,Yum Jung-ah +37108,Rudolf Waldemar Brem +144533,Dan Rivera González +99376,Josephine Whittell +1196025,Nigel Lovell +780,Ronny Cox +1498332,Hugo de Vernier +37981,Christopher Britton +1784314,Wendy Bilanski +1456537,Charles R. Knowles +1256926,Tilman Günther +80159,Rudy Jones +127519,Helene Reynolds +134899,Peggy Mason +146720,Hervé Pierre +81183,William Ching +56753,Maureen Teefy +1213541,Toy Connor +1234167,Roland MacLeod +41019,Wilbur Fitzgerald +77978,Henrik Giæver +53594,Peter Bromilow +1331670,Ronaldo Eknal +74861,Hideaki Ito +176797,Michael Drayer +1292677,Chief Dave Beautiful Bald Eagle +61114,Kate Walsh +14304,Mary Clare +1346237,Fabrizio Ferracane +34515,Velibor Topic +1330751,Leon Laderach +21129,Marla Sucharetza +101850,Rick Dean +1646174,Denise Parker +1158,Al Pacino +7039,Bruce Ramsay +18227,Anne Wiazemsky +20365,Margaret Lindsay +1503029,Tom Miller +122099,Chaka Khan +7031,Julian Rhind-Tutt +79705,Jacqueline Cook +20403,Beau Garrett +16183,Gedde Watanabe +149526,Dell Yount +13946,Paul Burke +8295,Matthew McGrory +11151,Nick Cassavetes +1819,Robin Curtis +27791,Shinji Takeda +52404,Mae Whitman +1281296,Peter Gowland +79213,Forrest Fyre +1806057,Parvaneh Ghalandari +3921,David Bateson +1450290,Hannah Leder +96271,Luella Gear +45363,Troy Donahue +12366,Scott McElroy +13938,Michael Lombard +57082,John Stockwell +44714,Eva Gabor +136797,Jan Kraus +106706,Marcie Leeds +117534,Neelam Kothari +49201,Philippe Brenninkmeyer +133023,Emir Hadžihafizbegović +10692,Michael Pitt +90173,David Pollock +7633,Leslie Nielsen +285641,Casey Johnson +131488,Bill DeLand +99062,Janus Blythe +6195,Harold Perrineau +1395911,Ginger Williams +1888071,Maureen Sue Levin +15196,David Hemmings +58770,Carole Shelley +95522,Yolande Bavan +101720,William Lucas +1426033,Sorin Popa +217560,Robert Brewster +25658,Chris Larkin +135834,Li Hai-Tao +1317190,Valentina Ivashova +156962,Eric Stonestreet +1168415,Jean-Pierre Miquel +945918,Max Barwyn +23877,Angelina Peláez +1117877,Lim Su-gyeong +161970,Mari Aldon +24984,Enara Azkue +11609,Floriane Daniel +134902,Louise Hopkins +60828,Jukka Hildén +1614868,Nathalie Joyaut +955691,Harry Tenbrook +1754328,Bill Moore +1006721,Charles Scorsese +28043,Ted Sutton +33520,Eijiro Ozaki +35755,Simone Singh +61043,Charlie Newmark +43778,Navi Rawat +70688,Kim Hee-sun +29092,Bryan Brown +101172,Michael Cavanaugh +117638,Dorothy Vaughan +119216,Igor Shibanov +1528765,George King +139610,Earle S. Dewey +100325,Anita Colby +3555,Jeremy Swift +53517,Nigel Havers +1075012,Ritchie Allen +503,Justin Chatwin +52037,Robert Ri'chard +24358,Lori Alan +45474,Rudy Ray Moore +15568,Mariah I. Wilson +1235963,Jeff Xander +1673502,Jill Clifford +554475,Amal Rhoe +11278,Rupert Graves +133564,Frantisek Polata +183207,Peter Barkworth +68689,Heydon Prowse +1016571,Eric Alden +218899,John Dunn-Hill +79881,Yvette Richardson +10597,John Junkin +2842,Jeannetta Arnette +36815,Daphne Korol +1226376,Ray Combs +11007,Ray Park +110877,Sandra Seacat +163578,Stuart Mabray +75274,Rebecca Cutler +9276,Steve Eastin +116644,Bernard Braden +1114905,AJ Diana +85605,Nandana Sen +20544,W. Clapham Murray +1015385,Sven Medvešek +152572,Jana Bellan +129275,Colin Vancao +1752338,Starr Domingue +81564,Thomas De Wolfe +62816,Josh Zuckerman +6103,Nadia Gray +98610,Elisabeth Brooks +1051750,Fred Huntley +1641,Katrin Cartlidge +13996,Marjorie Main +550796,Paul Azaïs +75284,Skye Gamblin +75281,Simon Wheeler +1779786,Michael French +60705,Thomas Ian Griffith +3727,John Sloss +28294,Julika Jenkins +8601,Jefechander Suplino +1535180,Gerhard Severin +1045686,Sylvain Giguère +47879,John Savage +82994,Doug Stanhope +3269,Franc D'Ambrosio +215752,Emily Bindiger +1405823,Steve Hogg +34749,Sarah Padden +218432,Jess Osuna +148527,Barbara Bedford +1123327,Carla Benedetti +205362,Marvin Jordan +149113,Colleen Clare +3076,Ian Hanmore +992862,Torsten Wahlund +245573,Claire Luce +14463,David Naughton +240805,Oliver Eckhardt +1140620,Andrew Henderson +102861,Brenda Benet +19505,Mitchell Whitfield +107708,Hikari Ishida +160042,Bob Costas +976231,Curtis Andersen +1224152,Timi Prulhiere +58339,Ian Hendry +1681199,Lhacen Znin +157942,Tuc Watkins +17418,Gordon Thomson +34597,Kevin McCarthy +186539,Richard Binsley +2932,O.P. Heggie +2047,Danny Glover +1213156,John Orchard +202729,Stephen Garlick +579743,Aleksandr Ilin +23378,Barbara Sukowa +195601,Frank Grimes +1605161,Kurt Beimel +1291266,Hal Le Sueur +1076201,Guy Cuevas +53119,Chris Gauthier +84479,David Perez +31497,John Cromwell +1674934,Norman Yap +54648,Bess Meisler +144438,Jeff Witzke +76392,Philip Zandén +78854,Alan Marshal +1175330,Lee Hoi-Hing +552663,Toshiro Yagi +152706,Ben Frommer +20309,Dwight Yoakam +18559,Jean Desailly +38902,Gilberte Géniat +1466392,John Farndale +1131109,Cami Sebring +11830,Cole Heppell +8726,Patric Knowles +85151,Trond Fausa +13966,Franklin Pangborn +1901814,Anna Roth +1605353,J. Víctor López +131170,Robert Wall +43115,Clement von Franckenstein +10739,Bebe Neuwirth +229225,Hisaya Itô +85361,Luis van Rooten +66500,Sarah Hunley +4797,Christine Schorn +247639,Vaughan Glaser +135121,Joachim Rafaelsen +1418951,John Del Regno +1366364,Roberto Bakker +1681415,Ray Evans +11071,Peter Lohmeyer +574389,Vít Klusák +77722,Stephen James King +5318,Elisabeth Commelin +26998,Suzy Nakamura +271933,Norma Dell'Agnese +37290,Nathaniel Dean +1932,Audrey Hepburn +1575513,Manon Gauthier +56979,Andrew Lauer +66537,Crystal Hunt +1178376,Susan Merson +72450,Bob Saget +1132202,Jackie Bateman +42175,Richard Stanley +1583060,Matt Holwick +71650,Henry Pleß +55459,Jerry Mayer +77638,Mark Benton +230538,Betty Chung +91545,Tiberio Murgia +104779,Nas +727,Jane Brucker +1594623,Rosa Luo +21352,Aaliyah +1872804,Jane Crawley +1216752,Frank Medrano +137386,Diana Krall +119131,Elaine Cusick +1357125,Chan Kwok-Bong +1538414,Ingrid Vandebosch +195442,Russell Richardson +939707,Movita +21248,Bert Rosario +17521,Kelly Reilly +4274,Miou-Miou +1607,Juan Fernández +18292,Beverly Todd +1318271,Richard Guedj +192234,Sean Ryan +2979,Michael Higgins +83812,Ford Rainey +1051907,Esther Furst +17543,Fabian Busch +81903,Herb Mitchell +1133596,Emily Churchill +233191,Terrence 'T.C.' Carson +32573,Robert Robinson +153556,Janis Hansen +3711,Anna Levine +93698,Erin O'Brien-Moore +1054403,Trudy Young +105308,Peter Turgeon +87132,George MacDonald +31528,Wayne Pére +80541,Matthew Faber +41750,Sheldon Leonard +19576,Richard Thomas +25134,Shane Rangi +1150073,Annelore Sarbach +1299051,Archie Robbins +157121,Ric Mancini +56442,Gene Barry +163011,Dana Andersen +32067,Mark Burns +95667,Esther Somers +61341,John Gaden +157048,Natsuko Ohama +5524,Andrew Adamson +1816645,Aung Theng +1435298,Yôyô Kojima +1275116,Stella LeSaint +1413,Tadeusz Łomnicki +1569166,Matthew Frauman +1812178,Sharon K. Tew +1392599,Gordon Danniels +1773118,Katina Robillard +78091,George Savalas +554618,Dawn Martel +20443,Yitzhak Edgar +1495216,Luigi Di Fiore +103436,Michael Barryte +130003,Richard Lyon +43451,Iris Berben +17866,Jon Abrahams +81083,Max Burkholder +567255,Kelly Aldrich +123524,James Drury +1234935,John Tierney +14029,Reginald Gardiner +13756,Swapan Mukherjee +918980,Anthony Fridjohn +1470885,Olivia Jones +1609257,Michael Barretto +61115,John Ennis +105292,Steve Grant +102634,Katt Shea +44275,Rosemary Dunsmore +1571019,Bruno Blanchet +1875080,Mária Majláth +96536,Rosanna Carter +153080,Zena Walker +1340662,Jeffrey Marcus +3648,Henry Grace +1276225,Kristen Wharton +1855240,Jacqueline Williams +140452,John Boswall +194774,Karen Haber +94077,Catherine Hung Yan +572207,Georg Årlin +135650,Melvin Van Peebles +63522,Sofía Vergara +203664,Randi Lynne +44349,Hans von Borsody +77150,Sal Landi +164481,Candy Buckley +1348442,Jean Pierre Peuleve +939712,Ingrid Chavez +203898,Maud Winchester +115052,Leire Berrocal +8676,Dean Devlin +10500,Carole Bouquet +91351,Sarah Hyland +327,Mekhi Phifer +14637,Detlef Bothe +1169887,Jeanne Savarino Pesch +123303,Mauralea Austin +1456534,Kent Ezzell +7540,Licia Maglietta +583275,Nancy Elizabeth Kammer +52794,David Herman +1216607,Trevor Laird +558254,Baard Owe +1785,Fumihiro Hayashi +1302632,Julia Bähre +955388,Bert Starkey +77687,Olivia Grant +1344888,Joe McGuinn +52475,J. Smith-Cameron +172793,Bryce Hodgson +2436,Charles Ruggles +52883,Pat Corley +157994,Ron Kuhlman +80468,Dorothy Stickney +1723446,Isabelle Temple +11548,Georges Péclet +5801,Henning Schlüter +1315449,Jeff Malone +1420492,Lowell Drew +5470,Kristin Scott Thomas +142627,Randhir Kapoor +1839758,Thomas Morkos +1417455,William LaValley +78840,Jason Acuña +66200,Michael Currie +1175530,Alexa Jago +243805,Noel Neill +49435,Paul Bös +47796,Pascal Bongard +85956,Sara Haden +1778139,Leif Ericson +34508,Edward Earle +83055,Almayvonne +7576,Bill Raymond +24591,Valeria Cavalli +12543,Eileen Ryan +137936,Jenny Howe +141346,Babe London +60972,Jeanna Harrison +84932,Jay-Z +36409,Michael Beck +15900,Paul Dooley +988794,Larry Wheat +1315419,Sofija Kunovska +59158,Angie Mattson +1289296,Jonathan Walker +9096,Gino Corrado +90347,Sabu Kawahara +7727,Phil Tippett +105176,Scott Marlowe +30512,Edgar Buchanan +213830,Sam McDaniel +90604,Jacqueline Ramel +2461,Mel Gibson +107729,Tom Hickey +18798,Montgomery John +9300,Lucy Butler +1514699,Dana Goodman +1594339,Paul Bradley +111679,Edmund Lyndeck +1781227,Lisa Sever-Ferraro +1218174,Joseph R. Gannascoli +59242,Desiree Zurowski +7114,Franciszek Pieczka +66913,Flora Martínez +8656,Dorian Harewood +47441,Jameson Parker +136152,J. B. Blanc +29712,Tim Thomerson +33663,Donald Trump +1241692,Tony Wilson +15758,Queen Latifah +77164,Ryan Robbins +554423,Koba Hayashi +1136767,Boon Saam +112600,Marc Donato +41555,Melissa Sagemiller +1481410,Ryôji Shimizu +1208,Ralph Bellamy +134319,Haruko Tôgô +5829,Karen Dotrice +30240,Frank Orth +15515,Robert Phalen +1032546,Alberto Mariscal +1415875,Monica Bell +7664,Joseph Cotten +1397873,Aissa Wayne +8962,Luke Askew +1242816,Lynn Carey +27545,Bruce Altman +24763,Roland Blanche +95627,Marcia Mae Jones +6718,Jack Nance +33012,David Mendenhall +1502573,Joan Petrie +1660431,Gustavo Muñoz +543390,Gerald Berns +102644,Vic Diaz +1188414,Terry Rangno +94503,Gary Hollywood +20190,Efren Ramirez +72287,Rui Pedro Alves +29370,Gregory Harrison +29580,Brandon Hurst +1226679,George Raistrick +1080206,Evelyn Krape +1290139,Julietta Brandt +231,Greg Bryk +7063,Nina Sosanya +982731,William LeMassena +142907,Lisbeth Movin +61644,Lan Tran +1191434,Bill Marcus +1101334,Baron van der Recke +13474,Richard O'Brien +163991,Lou Torres +31155,Fred Olen Ray +30778,Tom Tryon +59090,Nichole Hiltz +106179,Anthony Franciosa +222255,Stéphane Bouy +946311,Larry Neumann Jr. +114962,Helen Wallace +1291,Philip Wiegratz +120044,Angela Greene +59399,Miguel Nino +1317732,Talmadge Scott +20381,Jenna Dewan +60851,François Chau +1229698,Kelly Miller +10162,Steve Brodie +34365,Arthur Space +1281535,Dave Drinkx +71937,Pierre Carles +1765266,Kim Iocouvozzi +148632,McNally Sagal +2716,Earl Boen +1369281,Alice Auspergerová +1773780,Morisa Taylor Kaplan +33041,Claudia Michelsen +139182,Laura Treadwell +34285,William Frawley +15411,T. K. Carter +14833,Harold Gould +41089,Martin Starr +43277,Joanne Kelly +59312,Alessandro Juliani +20761,Sven-Ole Thorsen +30187,Robert Urquhart +78850,Leo Carrillo +5476,Nino Castelnuovo +551836,Masatora Ishikawa +76543,Chris Browning +1404180,Danny Borzage +1654,Claire Maurier +1365320,Ruth Eddings +64987,He Saifei +2234,Michael Bowen +1752327,Phillip Spaeth +29137,Albert Bassermann +79707,Miranda Gilbert +1420897,Raoul Freeman +83131,Kevin Corcoran +92314,Paul Gray +90442,Miguel Piñero +1185638,Yutaka Oka +4439,Heather Simms +75788,Gert Van Niekirk +5800,Til Kiwe +78897,Jacqueline Malouf +1240,Jack Kehler +1316033,María Esperanza Santos +1194968,Stacy Rock +27964,Lauren Hutton +1535190,Kenji Yamaguchi +51463,Mary Lynn Owen +88750,Tom Gilroy +1504118,Fred Holliday +14312,Mitchell Ryan +59070,Morwenna Banks +94011,Bill Melendez +1208431,William J. Daprato +1454420,Brian Hopkins +40463,Dan Frazer +586692,Samantha Jones +67602,Corbin Bleu +92279,Claude Brooks +17477,Harriet Walter +78892,Chuck Liddell +107445,Ann Gillis +120269,Patricia Shay +158777,Cherie Franklin +45615,Patrick Wright +1132170,Angelo Pedari +72128,José María Yazpik +1200788,Katherine Britton +1120226,Fabrizio Mummolo +2769,Natalie Wood +1371454,Stephanie Burns +27690,Rohn Thomas +1088195,Gerard Jordan +555200,Ikken Matsuoka +16758,Marius Weyers +58168,Rachelle Lefevre +31071,Marisa Berenson +10373,Edith Massey +38561,Kelly Brook +1237734,Michasha Armstrong +126339,Jennifer Claire +124783,Perry Lang +582139,Odette Barencey +84584,Marina Orsini +11028,George Coulouris +89485,Tony Halme +75712,Jeanette Cronin +1170979,Bettina Rose +130782,Jessica Szohr +19440,Warren Berlinger +17051,James Franco +1046723,Rhiannon Giddens +85146,Bo Brundin +106738,Henry Brown +73251,Kim Mu-saeng +30297,"Noah Beery, Jr." +159030,Marilyn Jones +1089927,Dennis St John +104010,Kareem +51496,Yann Hnautra +42626,Trent Ford +1219275,Jed Mills +35370,Eugene Roche +200065,Chelsea Rendon +110931,Blue Deckert +1265392,Alvin Anastasia +100613,Karen Lorre +44839,Christopher Pate +44021,Pierre Barbaud +1262288,John Deauville +1536293,Bill Bailey +14666,Victor Kilian +74840,Eugene J. Anthony +69147,Nikola Simić +126997,David McMahon +99547,Natasha Hovey +1077251,Charles Akins +8475,Анатолій Солоніцин +59171,Gary Gerbrandt +136425,Roger Dantes +1877156,Ronald Moss +1252521,Hannah Walters +274912,Morgan Mason +83407,Andrew Ableson +7404,Sarah Silverman +37157,Lenny Venito +75330,Ambyr Childers +1170980,John M. Rosenberg +571251,Rochelle Oliver +91600,R. H. Thomson +144406,John Beach +33722,Ray Danton +27585,Wilhelm von Homburg +1468551,Wanda Perry +1366366,Stephen Gartner +1658701,Spencer Diamond +1163,Miriam Colón +1241,John Turturro +1901801,Sascha Lara Bleuler +1668317,Sadwyn Brophy +10331,Aliki Georgouli +21535,George W. Scott +174871,Florence Schauffler +81970,John Garfield +1594617,Marcus Lovett +93466,Joyce Brabner +134904,Maggs Harries +165524,Dick Winslow +102891,William Dewhurst +119138,Roger Stephen +2907,Roland Varno +135062,Chris McElhill +486,Wallace Wolodarsky +5201,Robert Stadlober +73,Alfred Abel +101780,Margie Impert +222836,Hermann Thimig +1894166,Rock A. Walter +1029288,Anlian Yao +108238,Cormel Daniel +1507177,Micki Varro +1538,Rick Ducommun +17401,Stephen Root +74420,Buckley Norris +19453,Tom Bower +1535185,Morito Ikeda +38998,Dorothy Tutin +79212,Julie Gawkowski +55748,Roger Diehl +1065264,Scot Nery +1561391,Dennis North +94893,Victor Millan +1339671,Amir Pievar +585468,Toni Mihajlovski +1075089,Susan Hopper +98098,Matthew Ryan +940628,Crauford Kent +2018,Beryl Mercer +136420,Ernie Ortega +65590,Christopher Gray +239978,J. Moki Cho +99378,Dell Henderson +120457,J. Gunnis Davis +66749,John F. O'Donohue +123209,Geoffrey Bayldon +153459,Hank Brandt +1577165,Juan Salas +8899,Jamie Donnelly +565519,William R. 'Bob' Smedley +92086,Tracey Gold +1467232,Rudy Bowman +3061,Ewan McGregor +9961,Hélène Chatelain +24300,Juliette Mayniel +32774,Beah Richards +1094092,Tina Landini +171744,Fay Ann Lee +1125676,Frank Benson +25004,Shin Ha-kyun +1275916,Keo Souvannavong +11164,Kelly Preston +75775,Tracy Brooks Swope +87544,Tadao Nakamaru +30289,Linda Darnell +186357,Tina Thompson +224484,Agnieszka Dygant +1420624,Tina Marshall +1090465,Andrew Camuccio +1319273,David Carpenter +24814,Daniel Gélin +1704726,York Shakelton +107478,George Seminara +944895,Gary DeWitt Marshall +1039,Peter Boyle +10530,Joe Keaton +20494,Zoë Bell +12426,Charles Seel +33848,Gil Gerard +54855,Joseph Pilato +357312,Raju Lal +57656,Ursula Schucht +119134,Bradley Meehan +98797,Hari Rhodes +1062323,José Luis Fernández 'Pirri' +8893,Stockard Channing +91897,Jon H. Epstein +176254,Sandra Dickinson +80542,Angela Pietropinto +1091459,Maria Gladys +234656,José María Lado +127914,Alexander Davion +1192715,Mick Jones +1479493,Mariella Lo Giudice +76136,Levon Helm +91423,Amy Glass +70118,Luke Halpin +19487,Jay Hernandez +1566081,David Wilson +25177,Teddy Infuhr +4307,Claude Akins +149107,Muriel Hutchison +111988,Gigi Perreau +28101,Harry O'Reilly +9921,Luciana Paluzzi +76500,Al Strapelli +121667,Everlast +19152,Dylan Baker +139366,Mariko Kaga +13108,Israel Makoe +1204286,Eumenio Blanco +65727,Sam Jaeger +47398,Megs Jenkins +89728,Cliff Clark +61831,Sammi Hanratty +1680695,Carol Duboc +216837,Emo Philips +117414,Fay Holden +8801,Rolf Kanies +1466152,Renee Orsell +125494,Carlos Echevarría +1265218,Petr Janis +145987,William Collier Sr. +86346,Elisabeth Fraser +61216,Vyto Ruginis +1392726,Ray Donn +209266,Jermel Howard +1135860,Judith Harte +29762,Stanley Fields +1743,Denise Crosby +20447,Raymonde Abecassis +747,Alex Hyde-White +1352,Jean-Louis Trintignant +1630274,Mark DeLisle +927637,Marian Nixon +31045,Korkiate Limpapat +1209720,Chris Jalandoni +64655,Dennis Alexio +13819,Walter Catlett +1606807,Riccardo Bertazzolo +3381,Glenn Ford +1610,Javier Cámara +19153,Cliff Robertson +127478,André Lima +156475,Thomas Bellin +88887,Dayton Lummis +80474,Cleophas Kabasita +13992,Mary Astor +106102,Henry Corden +20850,Eric Berger +65885,Miles Anderson +55057,Ma-nenita De Latorre +128116,Eric Neumann +143331,Daniel Escobar +105701,Joe Bays +943323,Silvio Pollio +1377052,Raushanah Simmons +166944,Jonathan Osser +58265,"Herb Jefferson, Jr." +43826,Edward Clark +1067761,Josh Feldman +87255,Cyndi Lauper +33490,Phill Lewis +1651878,Sandy Johnson +1879508,Ethan Aronson +144403,Paula Stone +1609635,Paul Vaughan +1586947,Dana Nicole Silver +1761543,Gib Rotherham +160343,Robert Krantz +10747,Julian Fellowes +156706,Mason Lucero +1095017,Floria Bloise +10806,Robert Emmet O'Connor +19444,Jack Knight +124851,Michael O'Shea +59297,Eric Edelstein +19820,Mercedes Sampietro +66790,Gösta Ekman +10985,Ian Hart +113284,Shirley Booth +2885,Michelle Meyrink +38024,Cynthia Nixon +9994,Helen Hunt +11754,Richard Domeier +1720971,Kimberly Paige +53117,Dustin Milligan +582055,Alisson Lalieux +34490,Sarah Paulson +51707,"Roger Clinton, Jr." +79584,Angus Scrimm +146339,Lincoln Hoppe +1551007,Jane Corcoran +184340,Akuyoe Graham +143432,Kiều Chinh +105230,Adam Franks +4726,Marcia Gay Harden +14796,Jeanne Bates +140093,Cristina Torres +112972,Maurice Chevalier +1599519,Roz Abrams +87174,Justin Gross +1045550,Grace Oshita +1366470,Peggy Logan +1089930,Frédéric Smith +1781697,Greg Wilson +1200457,Tasen Chou +68848,Lisa Zane +10134,Mako +84915,Oliver Clark +44654,Scali Delpeyrat +23789,Sebastian Roché +127808,Sharon McManus +33768,Momoko Kôchi +948582,Maria Britneva +587708,Niels Hinrichsen +1094094,Brian Claxton Payne +11519,Larry Hankin +1616651,Barbara Dzido-Lelińska +1386475,Вера Сандрыкина +167926,Ben Lessy +119215,Sergei Murzin +23647,Renée Humphrey +938985,Dick Evans +1315621,Joe Garcio +56729,Carlo D'Angelo +88462,Dennis O'Keefe +8947,Tom Georgeson +1886580,Aditra Kohl +14664,Paul Hurst +1077733,David Weinstein +78303,Jimmy Kimmel +933883,Eric Meyers +79722,Anni Lindner +1857446,Stanley Kowalski +6066,Dash Mihok +9032,Bryan Singer +124050,Linda Ercoli +1698468,Donald Meyers +133853,Carmine Caridi +1187918,Phyllis Haver +118993,Ichirô Nakatani +98052,Harry Cording +170906,Tonya Pinkins +303197,George O. Gore II +136879,Rikiya Yasuoka +60072,Sara Paxton +57540,Jacques Morel +1228152,Sally Leung Bayer +1174366,Jack Kao Kuo-Hsin +553428,Takanobu Hozumi +1922,Catherine Zeta-Jones +26602,Traugott Buhre +11805,Frank Whaley +235548,Kevin Downes +86480,Rupert Procter +58986,Kevin Knapman +553131,Leonor Llausás +144165,Ben Bode +1742438,Michele Williams +1537389,Jiri Cisler +1444494,Marcus Kolind +1554915,Mike Burke +74909,Dolores Fonzi +10227,Gloria Hendry +1271033,Vangie Beilby +95457,Bobby Rhodes +80151,Lawrence Bolen +90132,Alejandro Rae +1335620,Chung Chan +10988,Geraldine Somerville +545277,Lam Tze-Chung +1888168,Shih-huang Chen +1718354,Seamus Moynihan +35014,Abby Mukiibi Nkaaga +48898,Ruth Glöss +17923,Frank Pietrangolare +1853175,Denise Vienne +53937,Olga Merediz +47179,Olav Riégo +27647,Angelo Infanti +1170356,Jack Egan +190526,Frank Windsor +87457,Stefan Schnabel +60672,Zen Gesner +81547,Kathleen Dabney +32300,Johnny Harris +66446,Lucy Punch +1132182,Alexandra Monroe King +1890330,Zahra Saghrisaz +1853192,Mike Cavallo +56507,Bill Martin +61649,Pras +25987,Eddie Cahill +2983,Mark Strong +152863,Belita Moreno +204997,Hanna Hall +56358,Patricia Belcher +1023439,Edward C. Gillow +211314,Arnold Gelderman +1757146,Lina Ricci +55206,DeWayne Jessie +15184,Marcel Bozzuffi +19277,Todd Stashwick +52690,Shredi Jabarin +40625,Nancy Fox +87739,Eliza Norbury +1491994,Musto Pelinkovicci +64671,Jim Thorburn +108579,Penny Downie +22224,Michael Ian Black +945486,Lee Stringer +239348,Emmanuelle Chaulet +1107016,Oliver 'Power' Grant +153539,Walter Janovitz +814,Tony Kaye +22169,Tom Bell +54996,Graziella Moretto +1563988,Zeta Graff +59788,Michael Cornacchia +571982,Aislin Roche +5616,Everett McGill +14455,John Hamilton +10225,Geoffrey Holder +61642,Natasha Beaumont +31819,Françoise Lugagne +47930,Nicolas Chagrin +1887365,Victoria Chaplin +120214,Dick Ryan +79406,Michael McMurtry +87050,John Hallum +1789268,Dong Fei +1093538,Kaaren de Zilva +35036,Patty Maloney +5124,Cem Akin +1795599,Kirsten Maryott +1345505,Bryce Kasson +983604,Cory Hart +1273780,Dick La Reno +12355,Russell Johnson +66443,Amara Karan +129319,Ivy Bethune +2368,Elya Baskin +1853185,George Bedard +32677,Claudio Gora +95642,Noa Hegesh +102829,Richard H. Cutting +1882503,David Meyers +1416981,Brad Stoll +23985,Georges Neri +154680,Vincent Angell +558311,Alexa Kenin +1328797,Julie Welch +157799,Robert Swann +1537819,Ken Magee +89016,Lloyd Whitlock +25464,Masaaki Daimon +33732,Taiji Tonoyama +176,Kieran O'Brien +18517,Kim Gordon +36075,Beat Kiyoshi +29266,Frank Finch Smiles +1330775,Chanelle Lamothe +161741,Wayne Heffley +1250279,Kim Noble +87422,Maimouna N'Diaye +552510,Hirokazu Inoue +3999,Tom Hulce +1331798,Nicholas George Stark +1677014,Osamu Tsuruya +83209,Vincent Berry +79411,Michael Barry +1403815,Alvin M. Sugarman +50573,Herbert Rudley +61219,Jillian Bach +1863,Tobias Schenke +94946,Jean Témerson +1676557,Guy Matchoro +1532,Bill Murray +30622,Gwen Welles +1198373,Gennaro Curci +7220,Mark Famiglietti +16972,Sergi López +10210,Daniel Kash +6861,Andre Braugher +59675,Mel Rodriguez +1477516,Shamsi +134684,Chiang Kam +12646,Terry O'Quinn +13790,Arthur Howard +8360,Tig Fong +549482,Penny Baker +30046,Philip Bourneuf +1678186,Antonia Jones +1053791,Bob Burns +1484302,Francis Selleck +122589,Alan Williams +54444,Joseph Bennett +9626,Rip Torn +52853,Juliette Marquis +8730,Melville Cooper +659,Wolf Kahler +942165,David Newell +114894,C. Ernst Harth +1212443,David Jeremiah +1349872,William Steele +1176952,Kendall Knights +158452,Ricky Harris +1598134,John Breen +933024,Frederick Miragliotta +1326576,Valérie Boisgel +163013,Cathryn de Prume +165590,Eddie Little Sky +3053,Sophie Lee +74940,Lumi Cavazos +1075841,Anne Raitt +1513189,Jessie Winter Mudie +179303,Maggie Task +82836,Herbert Heyes +91430,Greg Rex +191557,Raymond Serra +87716,Briana Beghi +229665,Sylvia Barter +5255,Robert Webber +1386357,Christopher Nguyen +54789,Sean Patrick Flanery +64673,Jennifer Clement +1075120,Jacqueline Moscou +1218554,Reginald Marsh +555073,Larry Sulton +70743,Brad Hall +34236,Elizabeth Dunn +1651021,Marta Barahona +79955,Florence Faure +61167,Frank C. Turner +1209718,Halla +1483449,Sarah Gilson +1280231,Sinead O'Keefe +57014,Göran Ragnerstam +38582,David Krumholtz +5702,William Hall Jr. +1366782,Amanda de Martinis +1772252,Jesse Hays +1727842,Tiffany Taylor +552139,George Wallace +79868,Boyd Clack +42141,Casey Sander +68752,Roy Fegan +72315,Ben Crompton +31941,Prunella Ransome +78956,Brett Swain +583364,Léon Pauléon +1076422,Ben Granfelt +82280,Louis Armstrong +64662,Dennis Chan +59162,Ed Wheeler +39183,Annie Savarin +199143,Charles Taylor +11041,Anja Lundkvist +1235008,Andrew Buchan +197151,Syl Lamont +119571,Tommy Kjellqvist +8609,Jeffrey Kramer +155610,Marcus Maurice +1720974,Joette Hayward +4793,Chulpan Khamatova +30428,Michael Sarrazin +15993,Michael Pataki +113570,Maggie Kiley +235720,Wataru Ômae +61408,Timmy Deters +3369,Lumsden Hare +21301,Edna Purviance +1353187,Barbara Rosenblat +1420952,Eddie Graham +20438,Sirak M. Sabahat +1291360,William Gillis +1068,Wendie Jo Sperber +1051795,Jurandir de Oliveira +153039,John Dearth +1081821,Mona Agar +57155,Boots Southerland +1411458,Harry Humphrey +108037,Josh Berry +72454,Keiko Tomita +43010,"Thomas Rosales, Jr." +56871,Blair Underwood +1104977,Robert P. Lieb +1007,Don Creech +4724,Kevin Bacon +93091,Tonya Cornelisse +137993,May Wynn +102753,Elaine Devry +1246691,Zane Meas +29616,William Armstrong +72090,Jacques Boudet +174952,Jean Daigle +571249,Betty Murphy +41279,Gregory Walcott +102423,John Shearin +151849,Richard Collier +4790,Martin Ferrero +45453,Eleanor Bron +21659,Michel Muller +88811,Shashi Kapoor +1427103,Walter O. Stahl +55172,Hauke Diekamp +99914,Cynthia Garris +8215,Bruce Cohen +1056412,Constance Purdy +66713,Arthur Burghardt +62032,Duane Davis +178757,Nick Thompson +930412,Alan Whicker +1320281,Vladimír Kudla +19923,Hugh Bonneville +40643,Andy Rashleigh +38371,Anna Thalbach +67502,Nikolai Cherkasov +57452,Faran Tahir +5048,Harry Dean Stanton +23791,Chris Coppola +101772,Carmen D'Antonio +203286,Drew McWeeny +1513487,Madame Paul +81566,John E. Quill +94516,Bonnie Root +1010443,Sayre Dearing +236495,Robert Minkoff +1527315,Emilio Brillas +1495419,Steve Goldstein +69829,Jun Takeuchi +24614,Roberto Posse +117723,Barbara Billingsley +543812,Kim Sujin +589207,Ann-Sofie Kylin +1024399,Sasha Allen +100074,Richard Fraser +179566,Adam Carl +1536284,Marco López +1749206,Mia Soteriou +20528,Jaran 'See Tao' Petcharoen +5946,Philip Akin +1232353,Melanie Vincz +1239597,Carson Manning +117636,Maris Wrixon +94136,Sonny Marinelli +251065,Aurore Rauscher +1435080,Dorothy Hack +1643487,The Temperance Seven +1111116,Nadine Rochex +76456,Alexandra Adi +1503023,Chekesha Van Putten +1676702,Suset Pérez Malberti +134769,Ilo Mutombo +82406,Paulina Porizkova +1709,Jack Davenport +135061,Lisa Taylor +88123,Brenda Song +126667,John Bell +1483452,Brenda Lockmuller +2067,Calvin Lockhart +19206,Nathan Tyson +116560,John Drew Barrymore +1264610,Barry Papick +81558,Arthur Pierce Middleton +96848,Wiendelt Hooijer +1483776,Iano Salomão +87708,Gian DiDonna +1304062,Alma Rubens +1355360,Kevin Van Doorslaer +3857,Allan Edwall +44424,Elisa Montés +1073811,Frank Burt Avalon +19874,Daniel York +66471,Wieslaw Bednarz +1332339,Randall King +55596,Michael Gladis +37462,Sylvie +1588792,Tarja Heinula +6218,Shaheen Khan +8350,Sam Bottoms +14488,Snitz Edwards +106090,Charles Peck +1296248,Jane Aird +946334,Sidney D'Albrook +51389,Joe Cobden +1646,Udo Kier +105368,Richard W. Peterson +219711,Tom Charnock +61403,Erik Walker +24978,Klara Badiola +1733430,Carl Marchi +81129,Chris Martin +1199751,Melkon Andonian +1077032,Joe Gilbert +30567,Tôru Ibuki +51331,Tyrel Jackson Williams +121640,Angela Cartwright +35824,Alice Cooper +57256,Ed Boon +119645,Ko Keung +124090,Carleton G. Young +1516290,Kim Parker +1754323,Alessandro Di Chio +120440,Helen Freeman +26852,Joshua Leonard +1800172,Michael Simon +1785713,Steven Rotblatt +80620,Hurd Hatfield +1220068,Paula Jacobs +185355,Yan Epstein +27710,Josh Braun +21368,Peter Strauss +81992,Taylor Wily +92619,Drew Seeley +15155,Clarice Taylor +31162,Daran Norris +58543,Ivan Martin +1077841,Ian McConnel +34279,Will Wright +1616640,Oskar Kamiński +16976,Elisabet Gelabert +1471663,Jack Easton +13109,Sindi Khambule +1022942,Clark Burroughs +6264,Udo Samel +25176,Arthur Hohl +11782,Adrienne Barbeau +222686,Mia Hansen-Løve +18796,Travis Champagne +969847,Jorge Monje +1878354,David Gross +178926,Michael McDonald +41357,Jeroen Willems +19209,Chantelle Chriestenson Nelson +980147,Nikola Ristanovski +107308,Paul Linke +1184297,Matt Mattox +1077834,Matthew Bowyer +1748053,Kristie Capozzoli +32105,Régine +52470,Rory Stevens +544823,Lelio Luttazzi +52267,William Petersen +20070,Jim Carter +1857432,Kaleem Janjua +1840086,Roberto Pedret +63445,Jeon Jae-hyeong +19394,Idina Menzel +5724,Denis Leary +163580,Douglas Fisher +213561,Sylvie Richez +56522,Gillian Barber +122067,Norman Stevans +105795,Lon McCallister +42157,Ed Begley Jr. +92856,Jana Kramer +1393340,George Truzzi +124002,Wang Hsieh +36992,Vicco von Bülow +59262,Robin Lord Taylor +74354,"Miguel A. Núñez, Jr." +57912,Song Dandan +176873,Lita Milan +18220,Vanna Urbino +29987,Bert Roach +66540,Arnie Pantoja +1471655,Emilie Cabanne +112341,Janine Eser +81685,Frank Grillo +1654206,Yette Lucas +534920,Julián Pastor +1879796,Wesley Cade +67020,Susan Chuang +61632,Dustin Nguyen +176272,Maryedith Burrell +3151,Jack Lemmon +21521,Steven Hill +1038486,Pascual Condito +1192653,Sonia Todd +20582,Michael Papajohn +61102,Laurel Whitsett +119792,Bhasker Patel +29258,Bessie Love +51537,Lauren Birkell +1123326,Giacomo Fadda +8294,Robert Guillaume +66685,Edward M. Kelahan +205600,Wayne Wilcox +1295296,Karl Lewis Miller +26663,Denis Quilley +545032,Pierre Klossowski +203683,Sonja Sohn +119757,Kate Luyben +62747,Chad Michael Murray +215661,Max Pirkis +31599,Antonio Bravo +309103,Michael Meyers +24810,Pat Boone +1173173,Philo McCullough +32559,Scott Handy +1320100,Guy Edwards +20626,Joseph Maher +30281,Odette Myrtil +1220081,Susan Engel +240168,Lau Wing +1408411,Bernie Searle +1909,Conchata Ferrell +124088,Leslie Banning +5249,E.G. Marshall +1162539,Evelyn Domínguez +11872,Deborah Offner +161314,Geoffrey Deuel +1734,Annette O'Toole +236054,Jenn O'nofrio +16172,Donald Elson +56538,Hailey Noelle Johnson +16856,Gabriel Macht +153853,Iris Paluly +110135,Billy De Wolfe +108240,Edward Erwin +113204,Tony Morelli +1886585,Joseph Scianablo +1407026,Joseph Rosenberg +1409190,Mrs. David Landau +7222,Chopper Bernet +15832,Gilbert Gottfried +13591,Richard Moll +1072309,Hannah de Leeuwe +32289,Andy Romano +17343,Robert Knepper +134074,Joe Gieb +55688,Annette Crosbie +1482691,Yû Sekita +79239,Clark Sanchez +21667,Véronique Balme +108729,Molly McCarthy +20239,Vincent Pérez +81552,Vinnette Carroll +1265414,Peter Ily Huemer +1772253,Andrea Sandahi +131813,David Landau +63493,Alexander Polinsky +722,Jennifer Grey +567972,Corban Walker +1061730,Satini Pualoa +56595,Marisa Coughlan +3096,John Cazale +1198828,Susan Wooldridge +150342,Rita Macedo +234536,Thorsten Krohn +31005,Noble Willingham +939103,Elena Veronese +1535184,Junji Iijima +1101302,Wolfgang Bächler +215900,Robyn Petty +124314,Al Hunter Ashton +6772,Julius Harris +1183442,Kenneth Frawley +3592,Dorothée +127609,Dawn Dunlap +42410,Michele Riccardini +58507,Samm Levine +1020326,Mauro Mannatrizio +44346,Maria Marlow +12411,Manuel Padilla Jr. +1466390,Mathew Constantine +11024,Kelly Hu +114876,Patrick Labyorteaux +226302,Danilo 'Bata' Stojković +64825,Harry Hamlin +117696,Neil Fitzgerald +60603,Mark Griffin +1177754,Michael B. Miller +1568434,Keena Keel +59867,Kenneth Jay +953505,Abdoulaye N'Gom +30451,Martin Heathcote +1228104,Franco Corsaro +17286,Lena Headey +5215,Nancy Steiner +103175,Maria Palmer +18082,Timothy Olyphant +30475,Yoshifumi Tajima +1212551,Forry Smith +2295,Mickey Rourke +1887377,Liz Bender +64857,Wendy Phillips +15215,Robert Dunn +3424,Angelina Estrada +119424,Ella Edwards +101919,Vass Anderson +8658,Ed O'Ross +229666,Siria Betti +104545,Marc Stevens +555084,Thomas Wagner +226556,Stephanie Fong Shuan +1380393,Forrest Silvers +202272,Guy Middleton +106802,Rebecca Perle +1507165,Bob Gordon +2313,Curt Bois +1331791,Martin Norseman +60278,Maria Bamford +44172,Patrick McKenna +20194,Fernando Hernandez +10345,Soon-Tek Oh +144797,Yû Fujiki +14685,Roland Young +1668098,Gary Swailes +133401,Amanda Fuller +155621,Renee Olstead +87573,Jessica Greco +43068,Sherrie Rose +166029,Dan Patrick +1462194,John Roy +177205,Charles Guardino +72328,Bruce Myers +65643,Nick Phillips +134215,Nino Terzo +204749,Rick Dano +40462,Kristen Bell +1228299,Michael Kinney +131019,Toyo Takahashi +1787,Daikon +77023,Jack Gilpin +2969,Chris Penn +1597814,Hayward Soo Hoo +59294,Tyrell Kemlo +81895,Lucinda Dickey +13003,Marvin J. McIntyre +1271202,Marion Clayton Anderson +65500,Tom Keene +65842,Sotiris Moustakas +110953,Mandy Matthews +96551,Ganjiro Nakamura +18352,Patrick Dempsey +1790427,Mariel F. Cray +174639,Sudie Bond +58813,Erich Anderson +1188790,Casey Dickerson +81254,Natthaweeranuch Thongmee +1281445,Jimmy Flynn +59167,Abdul Alshawish +14970,Tom Tyler +9521,Mark Conway +108542,E-40 +8238,Brenda De Banzie +7125,Robert Cummings +121126,Walter Merrill +236986,Mary Davis Duncan +548085,DeVeren Bookwalter +162235,Mike Gomez +136104,Len Birman +994,Stephen Marcus +21196,Levino Jensen +176362,Charles McCaughan +54614,Shawn Ku +4431,Jessica Lange +1093412,Francine Stock +22227,Christopher Meloni +27540,Harold Sylvester +554599,Kentaro +16525,Joe Spinell +29860,Trevyn McDowell +107549,Ward Costello +64371,Vanna Bonta +1851413,Roberta Spero +130986,Ania Suli +1232496,William Hill +47627,Janet McTeer +141417,Mike Bacarella +1008488,Marcello Verziera +1752321,Brooke Engen +40390,Michael Conrad +10939,Bernie Casey +1306285,Lionel Villeneuve +50175,Patrick Rapold +162413,Suzanne Bertish +162901,Stephen Caffrey +5727,Diedrich Bader +1527160,Christopher Fennell +1641170,Dick Curtis +177785,Ariadna Welter +74284,Brendon Baerg +17681,Morris Birdyellowhead +29698,Paul Barber +44651,Ken Duken +22053,Alan Blumenfeld +15416,Richard Masur +140055,Rebecca Pauly +141459,Dan Warry-Smith +10085,Oliver Robins +10488,Benjamin Mouton +1074749,Patricia Pillar +3763,Willy Harlander +1898726,Roger Lowe +1512826,Anna Anka +1188495,Kenny Griswold +1432270,David Adam +147878,Jorge Yamam +1116941,Philip A. Gillis +552027,Kazuyoshi Ozawa +27977,Leos Carax +130063,Victoria Horne +5341,Richard Burton +144005,Margaret Leahy +85881,Sanjay Dutt +1752735,Laura Lawson +1626719,Sally Howitt +235209,Anita Björk +9364,Gloria Foster +116123,Norman Chancer +216321,Cheryl Cole +1752324,Nick Baga +342,Eugene Byrd +47030,Hans Unterkircher +26056,Anthony Simcoe +81951,Tricia Pierce +27442,Renato Salvatori +1386339,Storm Walker +1354808,Jerry Day +66154,Mayu Suzuki +1202628,Hon Ping Tang +1497064,Suky Appleby +1345868,Michael 'Tunes' Antunes +1464749,Joe Farey +123933,Dominic Philie +124658,Chad Webber +1262199,S.D. Wilcox +1462,Tim Blake Nelson +171189,Michael Egan +9189,Shichinosuke Nakamura +10959,Shia LaBeouf +1417454,Sam T. Louis +1108831,Bert LeBaron +1508012,Ellen Ross +1665709,Lisa C. Vendetti +2473,Sandy Nelson +14669,George Wyner +2644,Philip Ober +1019026,Mercedes Grower +7423,Erika von Tagen +129049,Murray Rose +4334,Kelly Slater +1878511,Caroline Lee +110540,Saverio LoMedico +5682,Anouk Aimée +238572,Richard L. Duran +1183006,Michèle Loubet +553420,Jadrien Steele +1178622,Cynthia Mace +1176722,Charlie Daniels +8999,John Hodge +1857442,Nathan Hamlett +15218,James Gunn +168423,Billy Van Zandt +29904,Julián Mateos +92428,Samuli Edelmann +1811948,A.J. Benza +1221533,Martin Boddey +551833,Katsuichi Inoue +99352,Rob Moore +1154564,Jennifer Lim +1701741,Patrick Crean +68973,Masatoshi Nagase +240171,Gordon Liu Chia-Hui +1659340,Casey Erklin +1234177,Joe Melia +4959,Claudia Cardinale +1816296,Guido D'Albo +1580038,Hana Jouzová +1416869,Alex Novinsky +133603,Hôsei Komatsu +65032,Ciaran Owens +553022,Linda Cheung +40250,Paul Dinello +106995,Ann Bell +1291605,Roy Bradshaw +94700,Hilda van der Meulen +20981,Jennifer Sky +24318,Richard Benjamin +6073,Carl Alacchi +70557,Nancy Pimental +20113,Claude Dauphin +29446,Armin Shimerman +57403,Nial Iskhakov +1467013,Roy Darmour +257562,Ilias Logothetis +36190,Edie Falco +453,Riki Lindhome +270,Adriana Barraza +39816,Ed Begley +1756,Stephen Collins +42407,Clara Calamai +148122,Geoffrey Blake +42649,Sofia Shinas +96663,Park Myung-shin +47632,Rob Brydon +122094,Tom Erhart +144613,Rocco Lerro +43461,Endre Hules +21021,John Maclaren +1850006,Michelle Allred +72539,Kenjiro Ishiyama +10883,Rick Yune +11494,Evelyn Keyes +8602,Alice Braga +89263,Joan Lora +120767,Paul England +1454441,Jasper Johannes Andrews +655,John Rhys-Davies +55841,Ron O'Neal +87280,Bellamy Young +10161,Richard Webb +1680764,Donyelle Denise Jones +120293,Jack Ramage +4330,Gerry Lopez +1422586,Philip Rham +1197046,Mary Ellen David +1235959,John Marrott +77984,Dagrun Anholt +18973,Mila Kunis +1234690,Sidney Kibrick +230946,Sarah Torgov +31138,Valarie Pettiford +63003,Ricci Harnett +1641515,Mary Tempest +1655285,Jacky Gencel +28030,Tina Sloan +1197945,David McDermott +404,Melora Hardin +1313820,Alix Korey +1330758,Stewart Myiow +1275912,Thi Loc Truong +1661627,Devalle Hayes +1281533,George Fernandez +63214,Sonny Carl Davis +143901,Tetsuo Yamashita +110538,Debi Storm +102742,Patrick Sabongui +1741973,David Miguel Estrada +1275929,Thi Van Khanh Truong +163869,Robin Swid +83096,Jill Whitlow +1741397,Greg Orvis +1869997,Meghan Lahey +1231914,Rory Jennings +14739,Lorry Goldman +112184,Danielle Winits +79712,Joshua Clarke +371587,Melanie Norris +65284,Alexis Smith +553226,Nellie Richards +1558649,Brigitte Bourdeau +101418,Nelson Landrieu +1710215,Marius Silviu Florentin +40180,Henry Hull +9259,Lisa Jane Persky +156381,Andrée Bernard +1671461,Maureen Roden-Ryan +66538,Adam Hendershott +114725,Kanata Hongo +148602,Jody McCrea +1786652,Kennedy McCullough +20818,Allen Covert +21445,Monique van de Ven +586276,Serge Larivière +1546030,Milton Davis Jr. +38947,Nicholas Lumley +200823,Ryne Sanborn +56559,Nicholas Vince +580811,Elmo Lincoln +51803,David Milchard +73245,William Hartnell +1609926,Pierre Gompertz +124185,Richard Hylton +26863,Richard Graham +35608,Alain Doutey +1092904,Teruyo Hayami +34900,Paul Whitehouse +6162,Paul Bettany +8963,Karen Black +96140,William 'Wee Willie' Davis +52697,Georgia Engel +131543,Milisa Sierra +1328285,Sian Martin +15230,Nick Alachiotis +1006139,David Hallyday +132321,Lydia Knott +114697,Eric Chen +143822,Jack Byron +928295,Adrian Armas +202830,William Sterchi +568531,Allan Rich +106356,Kent Stoddard +164904,Rudolph Walker +112467,Wendy Hamilton +1102046,Veronica Brooks +80865,Takashi Sasano +32358,Ana Sofrenović +3418,Vincent Schiavelli +4255,Richard Portnow +78307,Lee MacGregor +1223059,Jaime Murray +590857,Tatiana Sarkis +16352,Pierre Hancisse +70755,Harold Hopkins +1231909,Alex Lowe +24827,Rodolfo Acosta +1748825,Kate Ferguson +77188,Oh Dal-su +52302,Richard Biggs +17458,Abdellatif Kechiche +98464,Adrian Edmondson +42694,Tamara Tunie +192895,Robert Oates +23498,Alexander Ludwig +57330,Louis Prima +9765,Françoise Fabian +2452,Vanessa Branch +207992,J.R. Nutt +1448139,Al Rhein +1661633,Patrick Lavery +1676389,Michelle Rugema +58521,Constance Shulman +57795,David Field +1170986,Elizabeth Brower +6905,Bruce Dern +106820,Zoe Carides +1315735,Jeff Braun +1456486,Jon Thompson +552222,Adrianna Sevan +1213151,Lawrence Montaigne +1163673,David Samuels +52539,Pedro Henrique +53448,Sarah Livingston +3590,Michel Laurent +117674,Jimmy Hawkins +51390,Emily Bergl +975563,Debbie Muggli +135176,Kathryn Ludlow +13022,Tom Berenger +157843,Michael Zand +132476,Riccardo Billi +13579,Virginia Mayo +1816295,Daniel Alejandro Ovando +98185,Jane Doniger Reibel +1465347,Johnny Marlin +103573,Lynn Theel +1263308,Karen Studer +31196,Nicholas Clay +1002686,Nancy Czar +145838,Alec B. Francis +1469194,Howard van Dodemont +4940,Trevor Morgan +1564966,Jane Pfitsch +1162536,Nicolás Cantafio +139929,Wayne Morse +146497,Christophe Guybet +1077832,David Begg +47170,Paul Richter +26861,Andrew Wilde +84522,David James Elliott +1442866,Lucy O'Connell +131835,Joyce Godenzi +80472,Pamela Nomvete +37048,Max Lewis +1331674,Joaquin Rendon +2245,Yvan Attal +24618,Paloma Baeza +76278,Arno +1878361,Robert MacNamara +1484289,Kota Yui +148354,Eeva Litmanen +122110,Toni Fleming +32514,Bernard Verley +1076421,Twist-Twist Erkinharju +16743,Arnold Vosloo +590853,Viktor Axelsson +45207,Tony Bonner +1176956,Paul Mota +1117806,Roger Fradet +6806,Doug Hutchison +90159,Takashi Fujii +16170,Zach Galligan +142104,Daniel Butler +1752747,Kyle Golemba +39599,Gene Ruffini +70851,Jack Black +59195,Kathryn Haggis +124131,Alan Fudge +78003,Mark L. Taylor +15318,Keith Campbell +123926,Emmanuel Bilodeau +1215219,Gray O'Brien +11068,Karina Lombard +16298,Kenneth Utt +589726,Donald Reed +246,Gary Lockwood +153208,Anthony Green +9029,Stephen Rea +19139,Jack Colvin +1076426,Pemo Ojala +72003,Tara Summers +937333,Oliver Conant +79531,Alisa Grace Greaves +82793,Martin Lamotte +46935,Mireille Perrey +8245,Ted Mapes +1895635,Llio Silyn +85926,Melyssa Ade +14848,James Hampton +1629454,Suthiphong Bhibalkul +936403,Stephen Rider +1534719,Grace Gordon +27515,Richard B. Shull +37464,Muni +88583,Frank Clarke +3294,Sharon Small +27915,Ivor Novello +35013,David Oyelowo +12431,Carey Loftin +213339,Robert Dawson +1394703,Robert Dahdah +13962,Cora Witherspoon +66606,George Wendt +1235504,Robyn Driscoll +29314,Charo +2807,Krystyna Janda +16555,Bill McKinney +954389,Charles Regan +1190319,David Eisner +1240847,Ray Ballard +14579,Emile Meyer +10580,Tracie Thoms +1219890,Walter Marsh +1879473,Aaron Berger +1206322,Princess O'Mahoney +82383,Frieda Inescort +37695,Jovanna Huguet +33677,Sarah Lassez +8540,Danny Nucci +1178957,Wong Sam +43135,Fiona Glascott +8840,Maxfield Stanley +55207,Eliza Roberts +93622,Frank Cady +19610,Michael Crawford +980082,Kevin McKeon +3131,Antonio Banderas +60971,John Paul Tremblay +188739,D.J. Mendel +149915,Mike Powers +125024,Ron Perkins +1104776,Bohdan Graczyk +56985,Frank Dux +8611,Chris Rebello +53590,Ed Trucco +18218,Marie Dubois +55247,Judith Belushi-Pisano +927666,Michele Morgan +6193,Leonardo DiCaprio +590533,James Donlan +99329,Elisabeth Risdon +145439,Michel Elias +544585,Charles Coleman +2391,Michael Dorn +106091,George Humbert +1484416,Paul Haley +94764,Philip Abbott +945810,Ben Allison +1393338,Terry Claybon +44652,Hary Prinz +59190,Miles Dougal +8212,Peter Gallagher +199813,Scott Walker +6972,Ian McShane +1384,Grażyna Szapołowska +151165,Man San Lu +552670,Haruo Kaji +1230439,Paul Jerricho +552407,Horace Hodges +1542,Willie Garson +209730,Danielle Skraastad +283367,Alain Bashung +79152,Enid-Raye Adams +65301,Phil Daniels +24738,George Camiller +12727,Stanley Holloway +101622,Robin Christopher +156744,Lynn Wanlass +1406144,Nina Lauterbach +20144,Mona Freeman +1166,Harris Yulin +13565,Steve McQueen +1556461,Bobbie Canvin +1127469,Shake Tukhmanyan +159647,Frank Pellegrino +61349,Robbie McGregor +160239,Nanette Fabray +569144,Frank McLure +9462,Randall Duk Kim +103183,Eliana Miglio +16661,Tommy Morrison +554095,Chi Muoi Lo +39444,Pierre Leproux +1372948,Susana Sentís +579249,Oliver Loftéen +9258,Steven Ford +1206318,Danny Wagner +136835,Cathryn Harrison +138327,Marieta Severo +78193,William Farnum +64182,Bill Barretta +83631,Elvis Tsui +93324,Polly Williams +35341,Geneviève Bujold +1861058,Marlene Berger +78794,Wally Cassell +1296367,Dan Blasko +172725,John Doolittle +27567,Lance Fenton +18305,Glenn Taranto +121127,Frank O'Connor +132441,María Galiana +55538,Tim Russ +1469199,Matt Kosokoff +974833,Buzz Barton +66684,Johnathan Hallgrey +1549646,Roger Hume +80746,Bill Henderson +1620880,Suki Wong +1219992,Colin Douglas +23215,Gabino Diego +166393,Scott Marshall +988612,Sheila Robbins +141374,Molly Ephraim +78157,Lindsay Anderson +46899,Garwin Sanford +1006058,Valentin Teodosiu +14286,Al Jolson +28676,Françoise Bertin +1183437,Joe Paparone +60393,Forrest Landis +30530,Irving Bacon +1444481,Sune Anderson +104305,George Woodbridge +17354,Todd Boyce +1412369,Terence Beesley +1204882,Patricia Quinn +246358,Christa Lang +59238,Chris Marquette +131493,Bengt Blomgren +59787,Mark Klastorin +928,Rebecca Ferratti +19132,Charley Lau +1513127,Alyce Passman +100956,Goffredo Unger +6768,Drew Bundini Brown +19540,Peter Cullen +955645,Sherloque Tanney +1061848,Guillermo Rodríguez +136895,Clem Bevans +928577,Steven Wiig +929463,Dan Kratochvil +8800,Birgit Minichmayr +129050,Rachel Hurd-Wood +258901,Finn Nielsen +14253,Slim Pickens +11628,Loren Dean +121217,Frank Baxter +19507,Mikey Kelley +123910,Corrado Pani +1976,Evelyne Bellego +1265397,Lawrence Linn +227537,Daisy Prince +550571,Takeshi Nakajima +1066472,Kevin Kelsall +82098,Yehuda Levi +1183712,Roland Dupree +55364,Steven Robertson +25884,Mary Lynn Rajskub +135055,Joe McCrone +106816,Brian O'Neill +1299218,Myeong Gye-nam +83271,Glen Powell +133003,Miguel Narros +52888,Paul Ritter +1139745,Colman deKay +1741975,Pablo D. Flores +1178938,Paul Che Biu-Law +1474802,Otto Forrest +981033,E.J. De la Pena +103186,Marcello Modugno +1422110,Harry Lash +62819,Diane Ayala Goldner +1862893,Peppi Sanders +37252,Yvonne Zima +124686,Mark Bazeley +764,Amer Hlehel +12729,Cyril Raymond +45369,Ty Hardin +8231,Suzanne Pleshette +85531,Clive Dunn +79214,Gurudarshan +130732,Octavio Gómez Berríos +10344,Richard Loo +1878353,Harry Goines +171374,Marian Quinn +25258,Rossy de Palma +1511013,Ariana Thomas +1147303,Frank Coletti +80428,Hunter Ansley Wryn +540363,Wyndham Standing +455546,Michael Buckley +1275523,Charles Haugk +30629,Richard Baskin +1171,Al Israel +35028,Zoe Kazan +185830,Ruth Madoc +1204226,J. Nathan Simmons +32676,Vittorio Duse +1459988,Fujiko Shirakawa +1215283,Paul Soles +83804,Kenneth Becker +157602,Gary Owens +78110,Scott Adkins +120447,Walter Burke +553443,Satoshi Jinbo +154095,DeJuan Guy +79897,Sherrie Hewson +131441,Marie Wilson +42803,Ajay Devgn +207982,Colin Campbell +48511,Fanny Staffa +103035,John Brascia +83336,Steve Dash +45101,Harrison Page +1318523,Susan Nalwoga +552180,Ichirô Chiba +44104,Milena Vukotic +2962,Robert Foxworth +1420240,Alois Moyo +99206,JoAnna Garcia +1079980,Ronnie Letham +181791,Michelle Moretti +1148621,Wikus du Toit +37053,Jill Baker +199104,Chuck Julian +41881,Aymen Saïdi +8515,Jane Darwell +1476686,Gabriel Pascual +43945,Alex Boling +1482646,Kanzô Uni +1886579,Kaitlin Montgomery +76383,Dan Ekborg +933684,Lisa Kay +1077820,Jack Randall +15455,Tate Donovan +6394,John Lurie +121012,Luc Thuillier +88186,A.J. Johnson +1673800,Evelyn Atchinson +1010121,Ming Hwa Bai +4077,Harry Shannon +1227611,Ron Pardo +1098537,Rod Brasfield +19902,Mischa Hausserman +33108,Clive Swift +1318525,Musa Kasonka Jr. +30212,Harry Carey +1752766,Sheri Godfrey +94838,Ed Devereaux +20231,Enrique Iglesias +1271351,Joe Geil +163646,Patrick Boll +29644,Helen Westcott +10698,Tchéky Karyo +60023,Joe Viterelli +19435,H.M. Wynant +1328287,Cynthia Powell +108279,Karl Braun +10839,Leonor Varela +180137,Aaron Smolinski +33515,Kazunari Ninomiya +229345,Heidi Brook Myers +20044,Tomer Russo +72466,Colin Farrell +221973,Bronislav Poloczek +7566,Antoine Bourseiller +1229301,Keith Alexander +153713,Paul Hartman +1220359,David Neal +1420204,Michael E. Williamson +110204,Trevor Bardette +552641,Kappei Matsumoto +930690,Enid Bennett +55788,Keith Dallas +1447263,Corkey Ford +15661,Clint Howard +514,Jack Nicholson +234571,Luíza Mariani +84497,Aaron Paul +227151,Jindřich Narenta +15721,Jon Lormer +119783,Joseph Mawle +155825,Dennis Cockrum +30450,Peter Rnic +1076413,Pimme Korhonen +376760,Olivier Poujol +97551,Cameron Pearson +1038474,Clarence Derwent +72306,Alison Garland +17487,John Gallagher Jr. +81957,Alejandro Patino +83037,Jan-Michael Vincent +22379,Dieter Mann +1840843,Ann Warn Pegg +10074,Charles Gray +1182444,Keren Ben Rafael +1331777,Rafael Trujillo +233120,Jessica Castillo +80966,Janel Moloney +54213,Ofield Williams +532,Joe Pantoliano +1320282,Viktorie Knotková +109145,José Pérez +1674596,Danielle Franke +154759,Erik King +30002,Guy Kibbee +61637,Ferdinand Hoang +5052,Helen Horton +53889,Carlie Westerman +4368,Carlos García Cambero +30316,Shaun Parkes +141395,Eugene Daniels +36182,Brian Salzberg +116185,Ina Claire +67015,Michael Gross +94561,Phil Hawn +48517,Micha Breidenstein +1575507,Philippe Daneault +16861,John Hawkes +21282,William Hickey +1723444,Maïte Simard +84920,Tony Orlando +121319,Mona Maris +1612556,Zhang Meng +204665,Sasha Cohen +1673802,Tommy Bennett +11718,Anne Haney +1405828,Anne Voss +14390,Diane Mizota +94198,Hugo Haas +1185257,Barry W. Levy +33022,Dennis Morgan +1762957,Jeffrey Landman +127220,Rei Dan +3932,Julia Jentsch +1190369,Heather Mathieson +14065,Georg Stanford Brown +1415876,Carol Schneider +1231796,Edie Brickell +2223,Fred Savage +67882,Marne Maitland +52396,Stefanie von Pfetten +34548,David Mark +11583,Julian West +7553,Ludovico Paladin +1680226,Diane Whitley +171135,Saundra Santiago +1563035,Juliette Simpson +176436,Hadley Eure +11755,John Peakes +69637,Leslie Cheung +41755,Brian Donlevy +62254,Jackie Mitchell +9659,Peter Spellos +1778206,Perla Walter +1299741,Mickey Roth +55194,Mark Metcalf +48371,Buddy Elias +40359,Amber Bongard +32372,Carlo Nell +52818,Bob Charlton +18281,Donald Petrie +77890,Janne Formoe +1167681,André Heinrich +24987,Ramón Barea +20497,Fergie +220241,Ehren McGhehey +1502783,Tina Lorraine +12125,Mark Persons +880,Ben Affleck +1857429,Paul Priestley +5174,Barry Sonnenfeld +135050,John Comerford +556785,Mari Hamada +184796,Paunita Nichols +1824595,Jacques Kerr +225031,Raúl Eguren +7668,Hume Cronyn +20904,James Hong +33659,John Hines +1565321,Christian Tychsen +80133,Masao +1073822,Christopher Kelk +5064,Meryl Streep +1575806,Zoe Waters +96416,Xavier Maly +1185236,Roberto Sanchez +1073814,Kimberlee M. Davis +457438,Per Fritzell +82585,Douglas Roberts +1773104,Alana Drozduke +16558,John McLiam +141493,Stephen Fisher +1698905,Desa Biogradlija +1265396,Mark Jarvis +1242279,Brandy Gold +225162,Ila Arun +1467398,Ethel Haworth +129269,Thaddeus Smith +37129,Béatrice Altariba +141195,Wayne Tippit +195286,Sarah Flind +1252524,Rosamund Hanson +5250,Jack Klugman +26071,Camille Coduri +123833,Tsholofelo Wechoemang +120178,Max Wagner +13919,Michael York +1773110,Sandra Higueras +107867,Ewa Wiśniewska +1513682,Melissa Williams +236486,James N. Harrell +65769,Bryce Johnson +61828,Shane Haboucha +1336359,Wayne Gordon +238320,Monica Hewes +100511,Sara Venable +79641,Irene Handl +20589,Aurora Quattrocchi +9828,Garrett Hedlund +1209716,Mike Cochrane +32679,Nello Pazzafini +210566,Kulap Vilaysack +1077741,Robert Shea +1889102,Deborah Yhip +106811,Lenny Montana +1335583,Lisa Chess +1728635,Eberhard Auriga +52409,Jake La Botz +28048,Clifford David +1330,Dominic Monaghan +14415,Julie Hagerty +1395429,Derek Ezenagu +1720979,John Mascaro +19429,Bruce Lee +1162833,Riz Meedin +1232502,Lizbeth MacKay +1434975,E. Casanova Evans +1037920,Antonio Ferrari +35420,Maly Delschaft +24549,Edmon Ryan +120811,Tom McGuire +1183659,Davidlee Willson +59304,Kathleen Arc +1857444,Leon Dekker +29930,Ivana Miličević +1401952,Marie-Thérèse Saussure +141769,Roxana Andronescu +111178,Nthabiseng Kenoshi +94128,Terry Carter +18052,Nathan Gamble +1197503,Denis Tankard +1329538,Desmond Robertson +1221066,Daniel Ryan +124603,"Larry ""Flash"" Jenkins" +36278,Carme Elias +12978,Peter Outerbridge +56288,Alysson Paradis +90613,Shiva Rose +13310,Willard E. Pugh +1077947,Sebastián Haro +1492162,George Haywood +89567,Anitra Ford +30005,Allen Jenkins +1185644,'Little Man' Machan +58224,Jason Sudeikis +1043380,Harry Houdini +1507183,Sonny Shields +17867,Tom McCarthy +1185411,Claire Meade +1231352,Paul Boocock +985839,Gladden James +15340,Nicholas Bell +141578,Alex Mackenzie +87942,Athena Chu +1607817,Divya Satia +21091,Jerry Wasserman +2476,Peter Hanly +38392,Julia Thurnau +963433,Ishan Davé +13256,Kanji Tsuda +1208018,Chet Brandenburg +1644871,Simonetta Allodi +590532,Libby Taylor +105310,Leonard Trolley +1167833,Mogens Holm +100920,Harry Woods +99247,Kunie Tanaka +79882,Francesca Dowd +228973,Robert Henderson +2493,Robert Stack +1076417,Mauri Sumén +10610,Gregory Ratoff +95468,Kelli Williams +108026,Sachio Sakai +69828,Yi-Hsuan Chen +143963,Carmen Llywelyn +1759982,Jung Na-Yoon +1781325,Amy V. Dewhurst +6020,Denis Podalydès +1276756,Tony Paton +1724910,Dave Mann +1136392,Steven Fung Min-Hang +43257,Krista Bridges +82385,Victor Sen Yung +67288,Bill Shirley +116081,Dominic Cuzzocrea +2651,Edward Binns +1217553,Joe Lisi +43454,Christian Kahrmann +54611,Hiresh Feysal Rahman +77271,Pink +52763,Aamir Khan +110502,Yuta Yamazaki +591368,Jenteal +72157,Brooke Bundy +19204,Kristen Hicks +16619,Mr. T +122105,Kristi Oleson +67521,Kari Sylwan +2227,Nicole Kidman +55437,Peter von Berg +990443,Natalis Chan +551843,Mieko Igarashi +100595,Albert Conti +1467881,Tony Urchel +1292243,Brittany Krall +25678,Richard Haas +99938,Hedda Lubin +140348,Tracy Thorne +148408,Gus Leonard +118043,Francie Swift +1109537,Madhureeta Anand +155299,Del Monroe +547973,Yoo-jin Shin +100798,Sally Yarnell +1219809,Leonard Kibrick +28787,Jean-Michel Noirey +1781196,Ed Cuffe +83440,Jennifer Holden +125686,Maurizio Terrazzano +1184829,Franco Cimino +115608,Bill Shine +1216133,Rick Hoffman +582141,Yvonne Yma +582125,Greishma Makar Sing +1337520,Zoe O'Grady +97856,Jim Boyce +1162544,Alberto Silva +1780601,Lee Brennan +231426,Nathalie Krebs +59302,Victor Izay +61134,Tatiana Maslany +82676,Shepperd Strudwick +26784,Danny Lee Sau-Yin +91963,Neil Fletcher +77976,Anders Baasmo Christiansen +150213,Nicholas Hormann +133342,Eddie Dunn +17919,Taral Hicks +82643,Iris Graham +169210,Heather Fairfield +48613,Renate Krößner +1773766,Benjamin Waldow +1434041,Ruben Rabasa +62414,Yuen Biao +10366,Ray Aranha +5688,Guido Alberti +390184,Richard Syms +134251,Mare Mlacnik +119644,Chu Ching +5170,Mike Starr +84080,Newell Alexander +1077829,Kelly Hoover +939991,Kathryn Sheldon +1613795,Huang Peng +428440,Poorna Jagannathan +79215,Callie Anne Morgan +467077,Richard Rebiere +51547,James Avery +1172152,Masashi Nagadoi +85103,Jennifer Eolin +1237005,Sammee Tong +1482637,Chisato Aoki +1174365,Tai Bo +1895804,Wilda Taylor +1037360,Checco Rissone +1219380,Noley Thornton +12936,Jim Abrahams +117365,Michael Long +1059956,Carlos Lanari +36221,Sam Anderson +234297,Christopher Connelly +19551,Gregory Gaye +99857,Earl W. Smith +14691,Lionel Pape +707,Dan Aykroyd +19967,Virginia Grey +144604,Larry D. Mann +8480,Tamara Ogorodnikova +8689,Barry Shabaka Henley +91387,Keone Young +1117876,Kwon Yea-young +80622,Suzzanne Douglas +1521656,Salvador Ojeda +19594,Yumi Tamai +78149,Bob Amaral +91369,Basil Hoffman +1459030,Mary Ann Chinn +69294,Stanley Swerdlow +104040,Andrew Tarbet +1150803,Andre Jaques van der Merwe +19183,Cliff Gorman +1270534,Dean Baykan +1392610,Alvin Youngblood Hart +1609653,Peter Bradford +1077264,Relioues Webb +83389,Juliet Prowse +47771,Richard Foronjy +228626,Suntharee Maila-or +29513,Rosette +121063,Billy Franey +1286628,Joseph Romantini +1606808,Angelo Prioli +64986,Clare-Hope Ashitey +72717,Dawn Addams +21376,James Stephens +79527,Sue Clark +146207,Eric Boucher +26786,Melvin Wong +14107,Graham Stark +26862,Neil Morrissey +1925,Vincent Cassel +1372092,Roy Farfel +60279,Fred Tatasciore +1643278,Francisco Prado +87046,Teresa Garrett +32437,Edward Brophy +1281021,Abigail Bernardez +1243,Woody Allen +11365,Mark Feuerstein +14821,Fernando Rey +82854,Patrick O'Kane +78500,Will McCormack +1076198,Samuel Ross Williams +17199,Corey Johnson +1735906,Mike Bradwell +42746,John Doe +98024,Ethel Grey Terry +73671,Peter Kern +28868,Kenneth Mitchell +80284,Margarita Franco +2039,Brendan Gleeson +8263,Andrea Martin +14332,Philip Suriano +69012,Leif Sylvester +85171,Ellen Albertini Dow +64932,Tammy Lauren +6292,Barbro Kollberg +553426,Kensuke Toita +46937,Ellen Farner +37506,Victoria Zinny +26755,Charlie Cho +92685,Pat Colbert +10912,Eva Green +4828,Sakari Kuosmanen +184970,Michael Kilgarriff +1671997,Rama Bai +1761392,Graham Acres +73138,Maiko Kawakami +1074689,Brad Lockerman +1933,George Peppard +39802,Queenie Leonard +33015,Chris McCarty +1441533,Christie Moreau +14357,Mady Christians +131723,Sarah Wright +19446,Vincent Palmieri +97082,María Luisa García +1680743,Sahar Simmons +1406784,Raymond Wells +99500,Jeff Prettyman +232024,Mario Lanza +100279,William Fuller +54126,Rachel Miner +6250,Romy Schneider +16069,Sam Gilman +42162,John David Carson +21006,Sydney Zarp +992589,Mario Nieves +61241,Tony Lip +80457,Han Seok-kyu +1240932,Taboo +79129,Brady Kitchingham +42715,Amber Smith +1154224,Jasmine Heikura +1012440,Chris Moir +1130900,W.E. Lawrence +34084,William Forrest +99946,Nelofer Pazira +41262,Don Calfa +80117,Billy Idol +30234,Gene Lockhart +199842,Caroline Yeager +1623505,Bob Cautiero +1247,Matthew Goode +173303,Claude Harz +7412,Mark Charpentier +97188,Steve Schirripa +4778,Melinda Dillon +1316525,William Lacey +1102078,Park Hyun-Jin +15048,Robby Benson +43416,Vinay Pathak +935445,Kirsten Rolffes +1221753,Ruth Warren +3092,Diane Keaton +58107,Jens Kuphal +49895,Aldo Sambrell +164966,Pat Woodell +944116,Kelly Coffield Park +37292,Adrienne Pickering +58382,Jessika Cardinahl +38127,Erland Josephson +1507181,Curtis Jackson +1678170,David A. Kipper +2640,Jessie Royce Landis +1074686,Jordan Valacich +177131,Shaun Duke +58780,Padma Lakshmi +93129,Chenoa Maxwell +39093,Daniel Cauchy +153862,David Lascher +8724,Errol Flynn +135420,Deborah Findlay +1608,Nacho Pérez +1462382,Joel Strachan +962,Rosa Maria Sardà +151361,Kurt Loder +1234629,Roy Horn +1183440,John Leighton +10779,David Calder +3371,Forrester Harvey +1330762,Ariadne Bourbonnière +37288,Roberto Meza-Mont +3272,Drake Bell +555075,Sarabel Levinson +137781,Max Johnson +194646,Jodean Lawrence +26197,Nabil Elouahabi +117419,Gene Raymond +113617,Alexandra Lamy +98774,Fulvio Mingozzi +1524,Harold Ramis +93730,Antonio Neiwiller +1772241,Laura Lee +211847,Daisy Beaumont +1336,Jet Li +2144,Tobin Bell +1172430,John Storey +1812180,Kristina Sebastian +60846,Pat Healy +1158427,George J. Manos +1234940,Lynda Goodfriend +1434980,Lindsey Whitney Barry +3836,Roger Hanin +14062,Don Gordon +1076766,Hillary Kavanagh +2062,Kent McCord +1503024,Emily Zachary +1089929,Alexandra Beaton +1231674,John Sterland +54865,Jeff Kober +24937,Bing Crosby +2065,David Schneider +554284,Cecil Cheng +3392,Michael Douglas +58731,Diva Gray +43121,Lisa Kaplan +16540,Leonard Gaines +1467330,William Eddritt +225539,Kiyoshi Yamamoto +1237353,Susan Bruce +43442,Kerr Smith +27544,Tom Irwin +85778,'Snub' Pollard +6399,Rammellzee +56024,Jean Dujardin +231925,Maud Elfsiö +161030,John Owens +4049,Garland Bunting +133563,Zdenek Palusga +47178,Ralph Forbes +66466,Zdzisław Tobiasz +998514,Abbas Sayah +71146,Ted Knight +84666,Ryan Belleville +122472,Yuki Sekido +83026,Dawn Greenhalgh +1549747,Sonia Bhalla +55614,Dylan Taylor +1232567,Natalie Carter +1834100,Mak Gilchrist +1661646,Kevin De Simone +88698,Chelsea Kane +567752,Teri Hope +83902,James Blackwell +130060,Gerald Hamer +55587,Peter Stebbings +21154,Lee Wilkof +29783,Fred Durst +21520,Sam Wanamaker +3205,Richard Lineback +1039126,Eric Mosely +78341,Ryan Pinkston +2776,William Hopper +30279,Minor Watson +1366818,Albert Juross +59287,Gregory Nicotero +1668299,Dianne Anderson Mathis +80473,Oris Erhuero +1052080,Cheathavuth Watcharakhun +1306447,Jason Ferraro +41318,David Fabrizio +52851,Paula Patton +42113,Zalman King +1061897,Griffin Miner +213222,Margery Mason +62037,Eileen Weisinger +8521,Eddie Quillan +58112,Richard Speight Jr. +1266585,James Greene +1178792,Jason Harris +1706667,Heidi Staley +9923,Guy Doleman +125628,Mikko Nousiainen +1444486,Flemming Hansen +19434,Sharon Farrell +1603933,Maria Valdez +4736,Cameron Bowen +1402887,Marc Miles +1896863,Graham Browne +1901802,Theresa Davi +191601,Phil Cornwell +45438,David Barrass +1661655,Vanéese Y. Thomas +136831,Cecilia Callejo +1222036,Patricia Lawrence +12110,Amy Sedaris +5050,Yaphet Kotto +80438,Weston Nathanson +22126,Jessica Cauffiel +1571368,Hilary Cahill +124602,William Traylor +1898,Eddie Jemison +37632,Eddie Redmayne +30270,Richard Whorf +78662,Jonathon Trent +25868,Vicellous Reon Shannon +171264,Ellen Parker +1778254,Ofer Samra +79435,Anne Marie Dove +26223,Jenna Jameson +79057,Jon Skolmen +930958,Anthony Mark Streeter +53088,Jeff East +131108,Hanako Yamada +1229700,Nancy O'Meara +161641,Carol Bagdasarian +9976,Henry Thomas +16420,Richard Boone +134704,Wu Ma +20799,Philippe Laudenbach +13638,Thomas Gibson +104522,Aoi Miyazaki +25190,Bob Hiltermann +2677,Bahar Soomekh +8691,Zoe Saldana +121305,Bud McClure +94991,Donna Martell +1535179,Frank Schendler +1054782,Đorđe Branković +10960,Max Baker +127643,Marvin Kaplan +1599,Jazzie Mahannah +149550,Jordan Baker +193390,Jon Matthews +1893,Casey Affleck +91254,Benson Fong +239944,Chalo González +53441,Aleksa Palladino +49897,Lucia Modugno +47848,André Maranne +1376291,Jason Brouwer +59244,Tania Saulnier +168906,Sarah Buehler +1132615,Ronald Yan +91981,Gilmer McCormick +81167,Genevieve Tobin +1168495,Mikio Ohsawa +59660,Rick Lashbrook +45625,Yvonne Catterfeld +5079,Gilbert Melki +55009,Lázaro Ramos +140575,Sebastien Torkia +1198371,Sonny Bupp +66981,Özge Özberk +57392,Michael Chambers +976070,Terry Woo +71393,"Joaquin Garay, III" +124023,Duncan Watson +19655,James D'Arcy +47417,Wendy Morgan +117395,Cliff Ketchum +67504,Andrei Abrikosov +1466134,Leslie Sketchley +102958,Lyle Felice +954104,Humberto López +4390,Ludivine Sagnier +112415,Bronisław Pawlik +591494,Hadrian Maria Netto +113511,Kurt Katch +1139755,Linda Beausoleil +1533630,Timothy Levine +43543,Anna Calder-Marshall +1557954,Kenneth Kopolovicz +1132669,William Knoblauch +7683,Wendell Corey +118033,Sarah Harding +17202,Thomas Lockyer +38899,László Szabó +11163,John Saxon +91533,Carrie Lorraine +1309326,Yuzo Kiura +121060,Mary MacLaren +29991,Freddie Burke Frederick +44078,Linda Hardy +56439,J. Trevor Edmond +151630,Larry Duran +18197,Anna Karina +1331570,Michelle Grisom +1278060,Alexander Pollard +728,Kelly Bishop +15532,Ruby Dee +1786648,Felix Achille +214794,Gregor Truter +233905,Kaspar Capparoni +172790,Anna-Louise Plowman +120419,Annie Wu +8904,Susan Buckner +60561,Mo'Nique +547986,Masaki Kouda +1393331,Donnique Privott +27858,Adam Trese +3434,Alma Beltran +1800174,J.T. Cromwell +1349629,Harry S. Murphy +151503,Maudie Prickett +3070,Chris Haywood +553104,Shozo Hirabayashi +1774,Kazuko Shibata +191140,Julia Montgomery Brown +15954,Celeste Yarnall +581115,Florence Levu +56473,Mary Riggans +2323,Camille Martinez +90762,Sheila Kelley +147397,Richard Zobel +72440,Brendan Fehr +144007,Kewpie Morgan +1770540,Barry Dobbin +1225875,Ana Mercedes +147138,Jeff Truman +29234,Joe Anderson +1434990,Irina Cashen +43775,Jane Lynch +92311,Sid Wilson +1077731,Martin Zentz +153427,Mark Slade +1853190,Brad Blank +1227123,Lisa Lyon +61303,Dick Van Dyke +23648,Priscilla Barnes +59081,David Threlfall +116932,Kate Yacula +60074,Jeff Garlin +108565,Agnieszka Liggett +94217,Robert Paige +83920,Nicole Abisinio +2134,Mike Butters +935831,Ben Dova +34238,Harlan Briggs +111198,Oscar Rowland +79433,Jesse Scott Nelson +119734,Danielle De Metz +9629,Jon Gries +1239516,Howard Jerome +84382,Ken Adelman +1741932,Amy Quick Parrish +61411,Mark Dindal +4291,Alain de Moyencourt +214951,Frank Nyi +140221,Mariusz Bonaszewski +1812177,Janice Graser +168702,Huey Lewis +2944,Josephine McKim +155531,Joe Cornish +1446415,Andrea Edwards +1348455,Steen Fridberg +120793,Dudley Dickerson +1580385,Henry Coden +1209705,Reid Harper +9576,Gina Torres +3550,Teresa Churcher +9066,Judy Garland +26994,Steven Barr +1502546,Peter Iacangelo III +7381,Sara Allgood +1873566,Anthony Irvine +71491,Patrick Descamps +231934,Inga Ålenius +3810,Javier Bardem +167120,Jennifer Dundas +15417,Donald Moffat +3834,Claude Mansard +18,Brad Garrett +156015,June Kyoto Lu +87389,Amir Farrokh Hashemian +49882,Manu Tupou +188728,Timothy Jerome +87048,Barbara Lasater +51682,Wes Chatham +14102,George Coe +21620,Susan Forristal +1471372,Kalu K. Sonkur +579216,Fennie Yuen +79884,Thomas Q. Napper +79416,Robert Longstreet +1074681,Sandra Kovacicova +143150,Amy Braverman +543256,Patrice O'Neal +1521655,Pedro Lorza +119942,Lindsay Kemp +16182,Jackie Joseph +1128104,Michael Nardella +34748,Douglass Dumbrille +1228823,Matthew Walker +87000,Raisa Ryazanova +113900,Petar Buntic +7073,Michael Berryman +1723438,Maurice Pecheur +227851,Jonathan Kahn +109513,Alexandra Daddario +454,Michael Peña +13633,Mark Addy +1477803,Cristy Thom +40980,Susan May Pratt +1008470,Takamaru Sasaki +1108092,Tony Salome +1044381,Maurice Brierre +95645,Ryan Bollman +14266,Guy Thomajan +1674956,François Paquette +1664786,Pierre Vaudier +1671499,Ted Lochwyn +1612530,Wong Kwai-Hung +114943,Marsha Moreau +33074,Richard Ryen +1393328,Mitchell Taylor Jr. +7685,Raymond Burr +1075194,Rosa Gore +2642,Leo G. Carroll +1183965,Taldo Kenyon +216758,Neil Foster +110504,Joanna Chilcoat +26485,Jim Belushi +24336,Andreas Malandrinos +23495,Jonathan Jackson +553436,Frank Mendoza +56444,Robert Cornthwaite +17874,Fred Dalton Thompson +54613,Ajil Zibari +26995,Gregory Paul Martin +106730,Branscombe Richmond +1177460,Kathleen McAuliffe +44400,Sybil Maas +20699,Anamaria Marinca +51948,Pierre Forget +830,Joe Cortese +1537646,Frantiska Skalova +25781,Angelo Boscariol +6659,Inga Gill +8946,Maria Aitken +27778,Miki Nakatani +1064,Crispin Glover +1077823,Ousmane Thiam +1357697,Mike Randleman +163795,Rick Warner +8687,Chi McBride +17411,Elke Werner +1330771,Caroline Aspirot +7867,Charles Rocket +14723,Vicki Lewis +150165,Yiwen Chen +35515,June Squibb +104289,Cynthia Thompson +25072,Oscar Isaac +1227947,Erin Torpey +83489,Dicky Cheung Wai-Kin +61943,Vlad Cruceru +60800,Frankie Perrone +109100,David Jean Thomas +990420,Rose Alba +103762,Jonathan Davis +545851,Eric Mead +18199,André S. Labarthe +1245069,Ko Hyun-jung +5704,Muriel Moore +135039,James Ramsay +1664224,Fabrice Donnio +14784,Reni Santoni +1057324,Meredith Wells +77483,Otis Young +1102478,Eric Rivas Quiroga +97243,Hugh Sinclair +89658,John Maxwell +12071,Guillaume Aretos +146337,Jeff Olson +124312,Reagan Pasternak +48330,Wolfgang Liebeneiner +1212639,Kristoff St. John +1619135,Geoff Gilmour +94953,Renée Carl +70517,Thomas Turgoose +1194396,Anri Ban +1744987,Angee Hughes +146798,Trinidad Silva +1591894,Gord Martineau +1385803,Frank Riggi +1879499,Mel Coleman +1513486,Guido Orlando +1386408,Jeremy Turner-Welch +1838959,N'Deyé Aïta N'Diaye +1098343,Tasanawalai Ongartittichai +109746,Yasuo Yamada +84922,Nancy Anne Ridder +130735,José Ramón Rosario +93922,Jeff Celentano +5025,Vinessa Shaw +15502,Laurence Barry +1046057,Richard Labelle +9998,Joey Slotnick +7550,Lina Bernardi +88460,Anna Lee +1271643,Field Norton +66986,John Franklin +932521,Manuel Gary +7077,Scatman Crothers +230665,Sue Price +1793092,Phil Atkinson +928736,Erle Vaughan +553435,Todd A. Provence +1168435,Ruy de Carvalho +166221,Robert Gwilym +31132,Columbus Short +75785,Paul Tingay +131329,Lilla Brignone +1292403,Juan Villegas +58651,Geoffrey Rivas +37028,Carolyn Purdy-Gordon +61348,Graham Ware Jr. +11067,Terry Kinney +80443,Elaine Mani Lee +116353,Don Wong Tao +102828,Richard Garland +5296,James Ransone +1853260,Doug Caputo +181343,Begonya Plaza +146211,Maxime Henry +33361,Priscilla Lawson +97574,Nan Peterson +1216708,Darren Carter +579271,Marie-Madeleine Fouquet +946090,Jessica Boehrs +9170,Stocker Fontelieu +122455,Paul A. Partain +27755,Melissa George +3247,Noble Johnson +1444484,Sofie Aandahl +1621835,Lon Michael Lee +1712689,Laura Whitehorn +558152,Rod Loomis +134529,Shiek Mahmud-Bey +55411,David Gyasi +7303,Vera Miles +93177,Lee Ross +47712,Mark Heap +1550,Edward Van Sloan +52827,Bobby Loban +1748107,Michel Camus +1873996,Frank Carter Jr. +152780,Charles Hoyes +152654,Bill Fletcher +565645,Luc-Martial Dagenais +133046,Charlie Hewson +1047407,Spencer Chan +33835,Tim Hopper +15212,Art Metrano +96843,Maarten Smit +119651,Cheung Yan-Hon +76783,William Smith Yelton +2224,Christian Slater +35024,Doug Spinuzza +70843,Brian Bedford +11040,Gustaf Hammarsten +977522,Linda Singer +12263,Geoffrey Wigdor +56654,Laura Morante +33934,Derek Richardson +1444517,Philip Riviera +1467478,Buck Woods +30197,Richard Alexander +16219,Cedric Scott +508384,Gloria de Jesús +21475,John Putch +20212,Dermot Mulroney +37937,Gregory Alan Williams +148306,Juan Ramírez +9671,Jun Murakami +258942,Charlotte de Turckheim +1077835,Patrice Cossoneau +1609674,Ged Pearce +18763,Michael Balfour +81802,Lisa Marie Caruk +9805,Sally Kellerman +65846,Fran Lucci +54627,Zoltan Butuc +19375,François Guillaume +185165,Pedro Salvín +34520,Masasa Moyo +61153,Wings Hauser +1275923,Xuan Thu Nguyen +7908,Frank Oz +106810,Ursaline Bryant +1393360,Ralph Brown +30242,Alma Kruger +115462,Dan Terranova +148707,Ashlee Simpson +80492,Joey Ramone +3006,Toni Kalem +1036,Cybill Shepherd +1522077,Daisy Jefferson +77985,Cathrin Gram +2371,Feodor Chaliapin Jr. +97436,Derek Lea +1316263,Antonin Lebas-Joly +1421073,Leon Alton +81060,Robert Warner +20175,Robert A. Silverman +1170994,Steven Nelson +1049237,Mark Wynter +1024779,Courtney Campbell +60659,Razvan Popa +121757,Maddie Corman +92940,Beanie Sigel +42394,Bernard Curry +14610,Jo Prestia +230401,Louis-Do de Lencquesaing +1361023,Kam Shan +1301641,DJ Flava +194768,Joe Garden +231649,Gys de Villiers +119230,Del Close +171652,Michael Cumpsty +161702,Julian Rivero +1673059,Steve Morphew +1039963,Carlos Múzquiz +41906,Nicolaj Kopernikus +34979,Loren Lester +99373,Tammany Young +54711,Kevin Breznahan +100438,Vanni Corbellini +1485028,Bruno Agostini +91494,Enzo Cilenti +141133,Ham Kinsey +2069,Corey Rand +109627,Eduardo López Rojas +29625,Peter Godfrey +74287,Anthony Ghannam +93500,Tom Mahoney +1085469,Thomas Peterson +56540,Rickie Lee Jones +1346979,Guan Shan +104021,Ricou Browning +53362,Harish Patel +87699,May Beatty +1894160,Drummond Barclay +1101331,Justo González +1648653,Greta Turken +20370,Irving Pichel +20974,Anita Gillette +28485,Steve Pemberton +1582008,Colin McSween +104039,Nina Garbiras +61981,Michael Clarke Duncan +17482,André Oumansky +59011,Jade Yorker +1692544,Kirke Gardener +176029,Jake Johannsen +100869,Kristen Vigard +9906,Desmond Llewelyn +1216876,Barbara Barrie +128645,Archie Panjabi +1759713,Gary Parker +26245,Dieter Eppler +101257,Shawn Michael Howard +23681,Brandon Hammond +160872,Brooks Almy +36486,Lena Stolze +1576562,Tim Werner +590444,Mario Fabrizi +164945,Sarah Shahi +104129,Linzi Drew +33614,Barbara Hamilton +61340,Russell Kiefel +582557,Chin Shih-Chieh +75783,Gordon Arnell +15676,Arnold Moss +70767,Drea de Matteo +57313,Junius Matthews +87773,Aishwarya Rai Bachchan +21029,Billy Burke +1504568,Darin Mangan +7552,Antonia Miccoli +148402,Constantine Romanoff +2197,Daniel Russo +53177,Brian Robbins +100945,James Millican +3841,Samuel Finzi +87416,Charlotte Cornwell +152281,Madhav Sharma +135101,James Hazeldine +9013,Kevin McKidd +1106155,Eugenio Morales +8504,Gregg Toland +3425,Augie Blunt +63383,Frank Campeau +62452,Ludovic Berthillot +554391,Allen Hamilton +1076203,Mark Daly Richards +170159,Jullian Roy Doster +11162,Brenda Hillhouse +553735,Tom Tangen +1236383,Chris Johnson +112213,Esteban Soberanes +1432701,Hal Taggart +17643,Mýa +551578,Terumi Niki +108028,Kokuten Kôdô +1281295,Mary Ellen Gleason +42123,Assumpta Serna +349,Scott Glenn +1654207,René Pascal +1226709,Billie Worley +99231,John Maynard +1802663,Varvara Dvalishvili +4887,Joe Grifasi +78550,David Ryan +1172555,Cynthia Smith +1224165,Lisa Waltz +40651,Charles Cork +180174,Roberto Meyer +1039613,Stella Choe +1241993,Victor Löw +50266,Shemar Moore +47640,Clark Johnson +5499,Regula Grauwiller +1232505,Curtis Holbrook +1192920,Denise DuBarry +4740,Miles Herter +95643,Angela Gots +44551,Geoff Outlaw +1386512,Chris McKinney +1846761,Sana Saeed +35767,Ketki Dave +1513484,Jean Domarchi +1123241,Myo Campbell +1026115,Gösta Krantz +238806,Hiroko Natori +1107803,Addie Land +17201,Anthony Warren +71813,Carson Grant +1609640,Kitty Fitzgerald +75784,Jeremiah Mnisi +1031220,Frank Shields +1660009,Claudine Bowyer +96935,Johan Widerberg +1581388,Irene Columbus +1371455,Sylvano Clarke +158459,Chris Owens +940214,Lee Kohlmar +6637,Frank Finlay +2355,Andrew Birkin +64056,Jenny Wright +35768,James DeBello +1205637,Carla Henry +30214,Ruth Donnelly +4287,Aurélia Petit +81681,Denis O'Hare +21258,Gary Paller +119875,Valerie Chow +79426,Carla Bessey +58663,Daniel Benzali +1422381,Sam Rice +82130,Michael Kidd +46927,Josh Hammond +2322,Kenya Jo Kennedy +1389605,Yuri Chervotkin +27427,Massimiliano Pazzaglia +15509,Orla Fitzgerald +80419,Kellie Bright +1729931,Joris Molinas +37713,Taliesin Jaffe +98458,Russ Bender +52538,Luciano Vidigal +85997,Esther Howard +145061,Xuna Primus +1706340,Irene Michaels +1145704,Ann Kunde +56876,Me Me Lai +1676665,Robyn Rosenkrantz +55037,Jeremy Kemp +23286,Omar Doom +75395,Vincent Ball +80968,Dwain Murphy +22810,Andy Nyman +1099139,Marion Lessing +1416443,Casey McCarthy +98928,Tom Spratley +11614,M. Night Shyamalan +41243,Paul Benedict +34286,Chick Chandler +235362,Gemma Phoenix +55257,Adam Arkin +63296,J.C. MacKenzie +1206770,Anna Cardini +193921,Carrie Snow +33730,Kei Satô +19401,George Montgomery +154096,Reginald Ballard +1436949,Tom Parker +1469,Brian Reddy +1198893,Georgia O'Dell +4788,Ariana Richards +1371879,Nadine Avola +52785,Cindy Sampson +113742,Pascal Gentil +44830,Deborah Rush +1540998,Joy Harington +1620874,Liu Dong +26532,Dieter Hallervorden +565196,William Preston Robertson +131442,Johnny Downs +9141,Charmian May +30416,Peter Coe +34516,Pamela Britton +1077901,Jeff Dornan +30228,Cecil Kellaway +981812,Ed Geldart +31921,Sophie Ward +942471,Roberto Álvarez +1673210,Cyprian R. Dube +65499,Duke Moore +231035,Vladimir Friedman +1879470,Deborah Swartz +76019,Steven Keats +55468,Andrew Knott +681,Nina Hoss +119426,Yuen Qiu +79509,Mal Whiteley +30539,Don Beddoe +97433,Cyril Nri +88778,Jimmy Aubrey +69300,Gene Saks +4250,Michael Lerner +62123,David Moscow +25867,Carlos Bernard +97279,George Dolenz +94663,Earl White +1209728,Chris Reid +1139045,Berg Ng Ting-Yip +20738,Song Kang-ho +60916,Buck Holland +1456535,Ronald W. Herndon Jr. +117770,Crane Whitley +67838,Marianne Hagan +153230,Patricia Marmont +101023,Fintan McKeown +8892,Olivia Newton-John +98770,Vladimir Medar +114317,Wing Fan +1886271,James Noah +1557960,Claudius Freyer +21862,Charlene Tilton +11492,Clark Gable +1309424,Caroline Neville +223412,Aleksandr Bureyev +22613,Edda Köchl +22121,Sara Foster +10447,Mariel Hemingway +8520,O.Z. Whitehead +61100,Phillip DeVona +88763,Babo Harrison +18648,Natalie Trundy +1105816,Lucille Dobrin +558333,Giselle Pascal +1213238,Hank Patterson +12850,Dabney Coleman +85486,Tamara Shayne +5985,Thomas Gammeltoft +41231,John Ericson +555382,Hsin-Yi Tseng +25135,Cornell John +583593,Monique Mangeot +306173,Lamine Dieng +1507,Leila Hyams +1592266,Lola Bates-Campbell +18766,Jean-Pierre Aumont +35863,Andrew-Lee Potts +1238683,Anthony Parker +1575512,Louis Wiriot +97418,Cady McClain +40863,Joe Swanberg +150175,Simon Magill +122910,Jill Esmond +1220073,Edward Petherbridge +14683,Ruth Hussey +169702,Haskell V. Anderson III +70106,Nicholas Tse +1800932,Linda Nagle +30098,Catherine Corman +66571,Mitch Rouse +575447,Fábio Lago +7248,Cliff Curtis +58907,Elias Toufexis +1272955,Vincent Stone +36074,Kazuko Yoshiyuki +1345983,Mohammad Reza Forutan +38144,Michaela May +17782,Colm Meaney +44052,John Ingle +8605,Darlan Cunha +1403817,Carolyn Gold +1076565,Ka Ting Lee +52129,Augusto Larreta +1120221,Sean Kelly +43236,Lucia D'Elia +37438,Rip Taylor +15563,Anika Noni Rose +65129,Rob Fleming +180662,Charlotte Church +107467,Saskia Post +19873,Magnus Lindgren +195943,P. Jay Sidney +11398,Cary-Hiroyuki Tagawa +1127499,Kristina Simonds +103015,Cora Sue Collins +1338109,Everett Creach +567246,Shôtarô Hayashi +123898,Jimmy Baio +10411,Barry Nelson +29408,Ute Lemper +96736,Lois Thorne +102795,Beach Dickerson +94402,Walter Brooke +4995,James Shigeta +119699,Lee Reherman +1097503,Eddie Hart +1234560,Judd Holdren +1120517,Yomo Tlazotlalli +227079,Sen Hara +10563,Joan Neuman +2477,Stephen Billington +134768,Dennis Patrick +77686,Caroline Smart +88895,Nora Swinburne +2434,Kay Francis +1282003,Melchior Derouet +25180,Victor Lanoux +25442,Joss Stone +104349,Kurt Johnson +2752,Jo Van Fleet +938987,Bernie Rhodes +86318,Sammi Cheng +354606,Tullio Kezich +126471,Tom Amandes +130942,Michael David +18662,Erin Daniels +69750,Stephen Barker Turner +23970,Denise Dowse +105823,Alfred Burke +113388,Tran Nu Yên-Khê +189128,Lianna Pai +58637,William Marquez +78549,Eoin Whelan +37633,Jean Becker +20081,Brigitte Catillon +33239,Brawley Nolte +37051,Syreeta Kumar +41739,Robert Harper +121253,Francis Sayles +1022633,Jarl Kulle +1199002,Amy Anzel +9292,Mink Stole +1784315,Erika Thomas +59254,Pablo Schreiber +8213,Sam Robards +1435060,Todd Blood +36691,Anton Rattinger +553427,Naoki Fuji +1319846,Kasey Stevens +1173491,Mary Jane Carey +169,Hanns Zischler +8727,Basil Rathbone +1072036,Sydni Beaudoin +1383133,Herbert Ashley +1622616,Kadee Sweeney +30017,Charles Middleton +24525,Joseph Ashton +46423,Olivia d'Abo +102500,Charles 'Buddy' Rogers +1186118,Ronald R. Rondell +67162,Anne Bartoletti +212,David Cross +592129,Dar Robinson +1194461,Ingrid Lacey +43169,Christian Schmidt +8688,Diego Luna +1014587,Bryan Probets +116115,Elma Barry Robertson +54462,Danton Stone +40445,Katherine Justice +1800170,Joseph Palmas +160598,Bill Hart +34746,Zasu Pitts +73210,Louis Zorich +9301,Carl Sundstrom +27973,Cameron Carter +125323,Steve Vella +1802669,Varvara Dvalishvili +940166,Marta Linden +104101,Michel Charrel +99180,Janet Dale +112570,Charles Dougherty +74492,Gino Conforti +21195,Lisbeth Rasmussen +115729,Teddy Dunn +34842,Tony Amendola +91818,Ettore Ribotta +27411,Stefania Montorsi +28768,Farrah Fawcett +1282690,Skipp Lynch +554008,Ann Yen +106992,Kenneth Cope +59251,Victor Rasuk +1004885,Barbara Chilcott +156387,Roy Boyd +1195877,Salvatore Corsitto +1609642,Matthew Devitt +6973,Fenella Woolgar +120778,Adrienne D'Ambricourt +114631,Dee Dee Rescher +1440808,Anne Fletting +96055,Leon Janney +26866,Barry Dransfield +103400,André Bervil +984930,Trevor Black +97802,Jerod Howard +153107,Myrtle Reed +1175248,Bruno Guillain +1581701,Maitland Stuart +589730,Blue Washington +105288,Bernie Van De Yacht +201862,Paul Dzenkiw +140567,Donny Osmond +10731,Anna Chancellor +90644,Marie Lohr +983343,Keegan DeWitt +1591739,Matt Johnston +107780,Elizabeth Cox +1176954,Brian Bowman +77714,Ben Lee +18222,Anny Nelsen +1203930,Henry Gamer +1276203,Valda Setterfield +14464,Jenny Agutter +36688,Gustav-Peter Wöhler +1120315,Gertrude Sutton +62036,Robert Carradine +1634923,Mark Doherty +1056756,Susan Douglas Rubes +101551,Giuseppe Addobbati +16965,Hye-jin Yu +223472,Selma El Mouissi +1039124,Jeremy Williams +29120,Willy Schmidt-Gentner +1069916,Richard Aherne +134728,Sombat Metanee +67850,Riley Smith +8229,Rod Taylor +226826,Gori +1634773,Na'Kia Bell Smith +65552,Margaret Blye +171102,Scotty Bloch +1125,Ewen Bremner +93688,Jesse Zeigler +83693,Blacky Ko Sau-Leung +1773116,Sarah Smith +12748,Michel Simon +5687,Eddra Gale +1180893,Hideki Noda +36068,Bianca Lawson +9894,Bernhard Wicki +75838,Louie Rankin +24362,Kevin Michael Richardson +8872,Rick Moranis +545825,Shinobu Ōtake +121364,Tom Dillon +39012,Peter Bogdanovich +10542,Richard Garrick +1741922,Cass Naumann +99934,David F. Friedman +4512,James Woods +1044,Michael Chapman +1704727,Barris Jahn +134892,Menna Trussler +8725,Olivia de Havilland +54650,Gerry Mendicino +56758,Andre Ware +143892,Steffan Rhodri +149011,Peyton Chesson-Fohl +9314,Leslie Bega +1108918,Choi Ban-Ya +97222,Charles Quigley +124717,Darren Ewing +1083493,Conor J. White +1338,Maggie Cheung +144019,Sally O'Neil +1179846,Terry +1878507,Laura Swanson +153692,Barbara Stuart +39307,Angelika Hillebrecht +136899,Dreya Weber +98608,Ann Turkel +1198660,Steve Garti +1392612,Ahmad Powell +1660018,Christopher Scoular +89507,Niko Saarela +1265216,Keiko Seiko +3757,Gottfried John +53980,Yuvika Chaudhary +14121,Wolfgang Preiss +618,Kōhei Miyauchi +1029004,Colleen Riley +79157,Xueying Zhao +592065,Karel Vasicek +218577,Steve Albert +194597,David Damas +87159,David Hadinger +29141,Bernhard Goetzke +32328,Bart Burns +84586,Amélie Sorel +1384784,Gene Weygandt +227439,Don Hall +1462228,Diana Davila +24048,Jeffrey Nordling +172109,Helmar Augustus Cooper +186336,Patsy Garrett +2819,Zdzisław Kozień +68411,Sô Yamamura +81983,Chunky Pandey +1308767,Toni Mooney +59185,Kendall Cross +1277051,Sticky Fingaz +39753,Hugh O'Brian +98700,Mary Parker Williams +17638,Cliff Saunders +117549,Adrienne Posta +61904,Christina Vidal +51120,Elliot Cowan +159013,Paul Tuerpe +64342,Craig Robinson +567254,Alida Aldrich +32092,Michel Robin +9031,Domiziana Giordano +124038,Gail Davis +1723431,Martine Chassaing +1052200,Pietro Fumelli +1616046,Lyralen Kaye +79210,Nicholas Ballas +230275,Sondos Belhassen +69554,Mauri Sumén +104795,Bill Paterson +13445,Tia Carrere +1227492,David Collings +77929,François Morel +81073,Nick Ouellette +95599,Stewart Petersen +95484,Rodney Bingenheimer +1189244,Wilfred Lawson +22304,Ronnie James Dio +545767,Kazue Tsunogae +58776,Nitin Ganatra +82216,Robert Taylor +34549,Jack Pierce +119402,Tom Ricketts +5411,Sanaa Lathan +1753360,Anđela Stojković +1081819,Sonia Zomina +1073473,David Clatworthy +1171424,George Ovey +109,Elijah Wood +113506,Bob Jennings +18067,Rachael Stirling +66536,Jack Carpenter +550247,Jesse Capelli +1392579,Carrie Clark Ward +24264,Craig Ferguson +12024,Victoria Vetri +1320289,Rudolf Ruzek +97425,Charles Victor +12979,Paul Coeur +100633,Lynda Day George +198812,Matthew Fahey +76519,Tab Hunter +1212,Laura San Giacomo +2021,Jane Wyatt +45587,Jack Shepherd +1800161,Margaret Eginton +1198882,Francisco Marán +12224,Alec Mapa +82632,Jerry L. Jackson +1060569,Bengaru +1284159,Simon Baker +81683,Gbenga Akinnagbe +95021,Trudy Marshall +19151,James Eckhouse +214813,John Baddeley +7372,Pedro Armendáriz Jr. +1316265,Joëlle Sevilla +1577405,Elizabeth DeCicco +119748,Arnold Bell +1525270,Robert Lin +1194424,Daniel L. Haynes +27166,Umberto Orsini +116579,Max Gail +1204013,Dominick Grieco +1896897,Neil Alan Taylor +1092643,Carl-Lennart Fröbergh +44409,Soledad Miranda +1296377,Kathy Jenkins +13103,Percy Matsemela +1212302,Annick Obonsawin +1208202,Harold Goodwin +124982,Christophe Hatey +1400380,Mary Elizabeth Still +1092610,Róbert Rátonyi +176824,James Parris +1439294,Niels Andersen +1336073,Marc Amyot +141762,Joe Chrest +84935,James Bell +1150544,Aymeric Demarigny +1132183,Hunter Elliott +2482,David O'Hara +17858,Jeris Poindexter +16412,William Conrad +1322270,Ellen Blake +4687,Patricia Arquette +146008,Sam Sarpong +244278,Tor Isedal +1213609,Chris Heuisler +1217114,Alfred Maron +44355,Maria Hofen +3974,Miloš Forman +72432,Han Ying-Chieh +1661649,Jeff Lyons +1503019,Krista Goodsitt +131545,Pedro Regas +1579312,Gabriel Hansen +12657,Jean Marsh +15655,Kim Darby +37151,Rafael Sardina +1120192,Ekard Rabi +36926,Frances Sternhagen +1473409,A.E. Matthews +1527177,Richard Boon +212578,Edward Howell +17289,Rodrigo Santoro +7085,Sydney Lassick +81373,Jason Wiles +226557,Annie Shizuka Inoh +199918,Reg Lye +1371453,Wai-Keat Lau +61939,Sam Alexander +168588,Steve Kehela +21249,Jedda Jones +45577,Claudio Fragasso +1123037,Scamp +54814,Philip Gordon +1074501,Sonia Mankaï +80431,Demetra Raven +21223,Tom Lewis +1166566,Tony Wong Yuk-Long +17421,Wallace Langham +87825,Clarence Muse +10017,Charlton Heston +62447,Samir Guesmi +116120,Sue Murphy +999716,Gary Combs +61565,Timothy Vahle +95014,Philip Ahn +1757133,Pierangelo Bertoli +12147,Spencer Tracy +113888,Randal Patrick +162061,William E. Green +1815542,Nancy McAlear +1809645,Kaelin Stockwell +1758608,Phinya Rawiwannakon +1172981,Samuel Leung Cheuk-Moon +223273,Bernadette Giraud +125192,Páger Antal +592089,Antonie Hegerlíková +928935,Andrea Pergolesi +543729,Shyla Molhsen +1723619,Emilee Roscamp +1055296,Harry Spear +1255529,Vishesh Bansal +1047996,Hale Soygazi +1321989,Olof Ås +1093735,Jari Litmanen +1412944,Jaime Coue +1365981,Evan Dane Taylor +1212960,Charlotte Sullivan +1057614,Peter Freuchen +1431441,Miriam Tolan +1599278,Michael White +1504964,Katie Page +156199,Chip Heller +1367847,Austin Hébert +1637681,Zoltán Bereczki +28585,Sascia Haj +1784661,Jeremy Palko +1297147,Todd Aaron Brotze +1604101,Jensi Hansen +24,Robert Zemeckis +1841498,David Koral +1186075,Tarek Boudali +62356,Abbey Stirling +1819133,Mitchell Hesley +1264152,Manuel Sinor +1289765,Ruth Kappelsberger +29470,Martin Sims +1774087,Eliana Adise +1438815,Nelson Aspen +588934,Adrienne Dore +1340,Chen Dao-Ming +204946,John Mauceri +111801,Eoin Macken +1233749,Fiona Gubelmann +165425,Sendhil Ramamurthy +544098,Iliass Ojja +1595077,Suzanne Marrot +1423214,Matthew Gravelle +135624,Gérard-Antoine Huart +1208442,Alberto Rossi +4637,Leon Lučev +1714698,Carrie Turpin +1478382,Edwina Findley Dickerson +42441,Khalifa Natour +1905791,Jakub Mayer +1842113,Laurie Seymour +1504915,William Banyard +858,Duke Ellington +225685,Artem Dushkin +1848808,Jyllina Skye +564321,Ben Sheppard +1764648,Skylar Collins +206757,David Giuntoli +1506699,Ken Trietsch +148424,Bert Woodruff +1678977,Shawn Beaton +57916,Bertram Hiese +1457026,Urs Rechn +1219688,Greer Barnes +82660,Henry Douthwaite +83921,Chris Bashinelli +1506865,Ben Gleib +1070634,Mathieu Lardier +175854,Michael Donovan +1342843,Ding Laam +1177944,Mika Akizuki +1444366,Kim Ki-chun +1336773,Ingrid Wayland +1381481,Daniel Parvis +34247,Deirdre Quinn +1277478,Nikos Pantzopoulos +1226197,Mig Macario +1137527,Pietro Zardini +559557,Ida Waterman +1469216,Nina Varano +150126,Jeon Hye-Jin +1286530,Shannon Kummer +120339,Charlita +1675548,Diana Roos +124748,Chris Renaud +143288,Zhanna Bolotova +572081,Aleksandr Makogon +102943,Carly McKinnon +1672118,María Mendive +1380561,Micheal Doonan +1840031,Fa'amgase +928296,Armand Anthony +975344,Edward Lexy +234990,Brahim Achabbakhe +1545510,Ann Reskin +1627500,Hikaru Horiguchi +1746931,Khareem Hinton +1669336,Emma Bercovici +24461,Roger Crouzet +43163,Ursula Karusseit +56446,John Cena +1001779,Emre Şen +1657460,Cal McCrystal +587181,Pierre Forest +109577,Clint Black +931652,Brad Dosland +1182087,Josh Watson +1496672,Maxwell Simkins +196826,John Kennedy +1293718,Chris Jericho +24933,Jacques Monod +1173002,Natalia Safran +1564293,Malgorzata Sobieszczanska +239008,Petrina Fung Bo-Bo +1181295,Steven Krueger +1613074,Małgorzata Klara +1493134,Al Maini +1678709,Lincoln Melcher +83849,Søs Egelind +202578,Sarah Boberg +1331805,Elvio Duvini +1055697,Brad Overturf +1869464,Bogusława Jantos +1050078,Marija Pikić +102184,Uke +144742,Paul Faivre +947171,Mohit Ramchandani +44516,Bernhard Schütz +27644,Luke Elliot +116647,Dave Brubeck +569304,Geraldine Carr +1580574,Gary Sievers +1849990,Amanda Leatherman +234354,Matt Flannagan +558049,Oleg Shklovsky +1530414,Yasuko Hanamura +1093854,Fred Murray +1800025,Ben Condron +1481494,Chiara Josefina Peralta +86220,Sugandha Garg +1871535,Branden Garrett +79616,Luc Senay +1215922,Dee J. Thompson +111683,Jason Mantzoukas +63564,Nels Lennarson +1747657,Alvin Burke Deer +1516081,Sarah Abbott +1467540,Ryan Power +1301980,Božidar Alić +63365,David Herlihy +1266241,Corey Hansen +1464036,David McKnight +1788334,Bill Clifton +1359158,Robert Beal +1835579,Jude Orhorha +1490058,Oskar Cedermalm +103126,Giancarlo Prati +1222306,Jeff Timmons +141467,Pierre Marais +74755,Lasse Borg +1541777,Aaron O'Connell +1367318,Karenlie Riddering +218125,John Guerrasio +1200392,Maximilian Scheidt +75607,Curtis McClarin +145217,Saúl Lisazo +1086563,Shawn Savage +1382566,Heaven Peabody +1637067,Martin Treat +1293062,Adoor Bhavani +584639,Madhu +1545509,Mike Dennis +1635138,Lance Palmer +22588,Gojko Mitić +1739820,Rich Ronat +253,Douglas Rain +171948,William Charles Mitchell +92171,Sebastian Gregory +72050,Marco Cocci +1390085,Sanne Langelaar +1656893,Damrongpol Ruengsri +1087003,Jim Grenander +120019,Aldo Baglio +1189309,Roman Filippov +948533,Paul Braunstein +1835272,Basil Crimaldi +96044,Samy Seghir +1064446,Barbara Tennant +134410,David Atrakchi +108103,Frank Currier +89409,Raymond Lam Fung +1542941,Jimmy Hart +1650188,Robert Haulbrook +1114553,Svanfríður Blöndal +115730,Patrick John Flueger +127245,Mario Guerra +118420,Juliette Goglia +1848677,Lorena Castanheira +1388903,Olivia Chenery +1362517,Arantxa Uribarri +108047,Agniya Kuznetsova +1726321,Camilla Roholm +144381,Leonard Penn +1784678,Chad Stevens +132113,Eran Naim +60416,Alex Ferns +936031,Petros Lagoutis +1251438,Kōichi Nagano +91333,Randy Mulkey +1105697,Jeremy James Douglas Norton +69094,Tobias Kasimirowicz +1205527,Kevin Mulvey +545841,Hüseyin Avni Danyal +119118,Jerry Levitan +1083698,Jake Beale +1298790,Jeremy Sande +87637,长泽雅美 +554497,Ayako Kobayashi +101292,Christopher Alan +1378430,Susan Keller +132929,Narciso González +1179849,Lion Shirdan +1650200,Ken Holliday +1293069,Jota David Ojeda +43934,Myron Natwick +1488513,John Trejo +1174071,Gin Maeda +1315173,George R. Taylor +116907,Marshall Manesh +569548,Argos MacCallum +118037,Christian Brassington +91285,Ed Portillo +1191824,Liliana Cabal +1198786,Ai Wan +47460,Lynne Moody +1675545,Robert Garner +1362995,Giacomo Gianniotti +96558,Reiko Kataoka +1286615,Ivana Wong +132246,Adrian Ringman +129744,Ramona Badescu +1090169,Stan Morrow +76876,Brandon Blue +1572630,Selma Mansouri +127541,John Thaddeus +145129,Claude Aufaure +96790,Gloria Votsis +1161081,Katalin Lábán +1043805,Edgardo Román +985150,Louise Mackintosh +19362,Marc Rioufol +932343,Iwein Segers +591240,Dorota Pomykala +86230,Supriya Karnik +3675,Frank Cellier +1172840,Craig Coyne +936798,Tania Tripi +97328,Wandjuk Marika +235384,Leonard Walsh +84725,Keisuke Koide +1699956,Bozoombo +1869100,Rixt Velt +1532525,Ursula Yovich +110199,Annu Kapoor +384316,Ibrahim Seck +1512485,Tina Harris +946773,Gertrude Short +584045,Olga Lapshina +550438,Benjamin Gibbard +1296103,Bo-geun Cheon +18449,Rupert J. Seidl +1293068,Jimena Del Pozo +1782583,Jessica Pak +64504,Mathew Tang +47026,Adele Neuhauser +1235591,Sean Campbell +120114,Franca Scagnetti +162246,Abbe Lane +1431527,Inigo Dominic Pascual +1233577,Petr Svojtka +18409,Horst Mendroch +133822,Ufuk Bayraktar +1232370,Mikki Padilla +1361269,Aileen Carlyle +1584908,Carolyn Blair +1378398,Jesse D'Angelo +1604110,Carla Short +2503,Maude Eburne +1528935,Elena Lazorishak +1392203,Norman Towns +1477609,John Wentworth +1418983,Didier Muller +1176835,Marzio Honorato +1564565,Mohamed Salem Ould Dendou +227386,Franco Califano +1014881,Anderson Davis +199717,Patti Heider +1086320,Ferenc Jánossy +121244,Harrison Greene +47330,Kerstin Andersson +226548,Douglas Cavanaugh +62018,Mark Patton +1263723,Marc Trinkhaus +1881181,Leonie Siegel +70193,Hervé Bellon +1801202,Stephanie Federico +1692100,Luis Espinoza +1759086,Alan Ackles +1862746,Enayat Delawary +90851,Rhea MacAdams +24712,Michael Cronin +1591185,Chrystall Friedemann +1302509,David Avallone +143719,Daniel Yelsky +1620089,Michèle Maynard +124955,Ivan Brkić +435044,Ryan Barrett +559814,Paul Clayton +4305,Pedro Gonzalez Gonzalez +77250,Pat Moran +1459151,Jack Doke +1352999,Jimmy Roca +1112571,Steve McCoy +89144,Francesca Nunzi +1517134,Chris Hayes +1590707,Zack Peladeau +87881,Endre Martin Midtstigen +1531613,Alex Zelenka +1735541,Brooke Jayne Taylor +19823,Bea Segura +1778996,Cristiano Malgioglio +1418969,Priit Pius +1678833,Jeanne Reynolds +95697,Dileep Rao +1120492,Ilarion Ciobanu +943309,Melanie Hall +111678,Thomas Middleditch +1804259,Xènia Gausa +119201,Antoine Oppenheim +210065,Luke Hayden +550417,Marie Daëms +1338752,Paul Keast +234921,Arben Bajraktaraj +1818040,Aaron Sauer +94022,Matthew Wolf +1327722,Shelley Cook +192908,Rebecca Johnson +1046748,Siddharth Jadhav +107133,Vanessa Gray +1060790,Rodney Diak +1789506,James Garlin +133328,Anna Maria Perez de Tagle +936404,Daniel Fox +1326241,Sean Douglas Hoban +1089649,Attilio Duse +1375147,Morgan Lester +142488,Teruko Kishi +931432,Sheila Bond +1704661,Todd Lee +65197,Mark Cheng +108860,Erkki Ruokokoski +187016,Jasper Bagg +934151,Susanne Thorson +84507,Kazuya Nakai +1098636,Mohsen Kadivar +1140220,Dakota Rivers +232262,Nashla Bogaert +1052769,Margherita Girelli +1006035,Armida +1457246,Christopher Attadia +1129683,Richard Dew +1676878,Malva Benredjem +999729,Alexey Bardukov +38898,Jean-Luc Bideau +1098394,Paola Giannini +1611987,Fisayo Akinade +1574847,Ryan W. Smith +1089082,Andrew Ross +1769805,Christina De Leon +1225901,Zayne Emory +1346325,Mathilde Warnier +1747661,Kay Koury +235916,Mikhail Galustyan +4638,Kenan Catic +1198438,Jeff Marchelletta +155698,Jackie Debatin +230034,Markus Rygaard +1019912,Fabrizio Moresco +1418649,Zeynabou Diallo +186898,Neil Melville +1466536,Thomas Luccioni +138191,Eliška Balzerová +93434,Lionel Vitrant +928376, Zoltán Rátóti +130617,Dino Emanuelli +1674833,Yvick Letexier +132474,Nino Taranto +1270375,Pierre Bianco +1216947,David Ankrum +1440179,Trent Garrett +1457001,Carol Lee +54190,César Troncoso +1423096,María Dolores González +1863664,Bennett Deady +1775298,Joe Case +978824,Chris Dinh +69197,Rabah Nait Oufella +1831280,Hayley Warnes +1146713,Mary Ann Hearn +1313156,David McGuire +98889,Thomas Jefferson Byrd +946350,Nasser Memarzia +129435,Cécile Mazan +812068,Emily Hagins +225545,Jo Woodcock +1539843,John Rutland +1050340,Józef Nowak +1503071,Tom Edden +232199,Meira Durand +142500,Sergey Batalov +1323717,Luciana Faulhaber +1596419,Beate Menner +1796126,Connor Heath +1004719,Kuni Hashimoto +61856,Mykel Shannon Jenkins +136409,Robert Black +1438316,Corrina Roshea +1292007,Solveig Walking +1842539,Jasmine Mae +1351058,Will Brandt +1745373,Raven Tershy +1165639,Ruud De Ridder +1315166,Cora Green +86928,Brent Jasmer +937164,Joanna Kasperska +145998,Jake Broder +1518860,Lis Nielsen +1322605,Jason Bynum +1016036,Mary Doran +1080623,Kathrin Clare Ward +1271650,T.M. Karthik +1831165,Ingo van Gulijk +1840868,Aye Hasegawa +37190,Philipp Moog +149412,Victor Chambon +1485710,Chrystèle Saint-Louis Augustin +1839566,Krista Sihvo +1427606,Thomas Sagols +1230425,Noma Dumezweni +98666,Masuimi Max +1610452,Dave Kohut +1420249,Juliette Frederick +1180034,Effie Ellsler +1200853,Sophie Evans +80618,L. Warren Young +67837,Jacki Weaver +182838,Michael Byers +1744727,Kaden Washington Lewis +1467961,Karen Jones +483327,Joem Bascon +1272847,Garrett Kruithof +114235,Vaughan Wilson +96671,Mick Lally +1242102,Lanie McAuley +1592926,Graham Ashmore +563560,Gordon Alexander +1383392,Poppy Corby-Tuech +578842,Ntalya Dolmatova +33073,Elga Brink +997197,Nelson Wong +10128,William Lee Scott +1627704,Jinny Steffan +128462,Andrea Miglio Risi +82289,Jean-Paul Lilienfeld +1438288,Carroll Burt +134003,Lee Roberts +1602233,Sebnem Kostem +240536,Viktor Ilichyov +1068698,Stephen Archibald +1205528,Steven McGraw +1306309,Alice David +74713,Måns Nathanaelson +189656,Lee Taylor +35794,Shenaz Treasury +140585,Earl Lee +204802,Aaron Neil +235804,Thomas Wodianka +110708,Suhasini Mulay +1258268,Özlem Turhal +71490,Yannick Rénier +106966,Kathrin Middleton +1210952,Charles Gay +30790,Egon Krenz +100316,Manuel Guitián +96698,Caroline Quentin +70108,Tak-bun Wong +24651,Nana Mizuki +53585,Sheila Gish +28437,Michael Degen +46866,Ewa Fröling +1114830,Richard Cheung Kuen +100099,Wanda Ventham +1561243,Marie Löschhorn +62867,Andrew Moxham +137821,Merle Jääger +1388680,Rick Esparza +1019120,Jack Evans +1750483,Ben Saunders +212285,Jack Whitehall +174563,Paul Pape +178871,Jason Griffith +576229,Na'im Lynn +9717,Masachika Ichimura +1353680,Korn Khunatipapisiri +956385,Meadow Williams +148352,Mari Hoshino +1809938,Vincent van Hinte +1355222,Nicky Salapu +114334,David Michôd +144994,Ignazio Leone +1135594,Gaetano Amato +1211933,Simon Nash +1692027,Kirill Ostapenko +559057,Max Hauser +23113,Agnes Kraus +105731,Carol Heiss +31390,Michèle Bernier +140030,Colin Barrie +1371005,Thomas Goritzki +1247736,Theo Bell +117677,Kermit Maynard +1360156,Ann Ogbomo +6811,Hans Ziegler +1862469,Vittorio Ripamonti +584777,Jaffer Idukki +972294,Michael Godere +27324,Bev Willis +65925,Rick Shapiro +555945,Henry Nixon +222288,Louise Saint-Claire +1749827,Sean Beck +106532,Babs Chula +1563603,Richard Sarcione +1414,Goro Miyazaki +1577503,Olivia Culpo +1019499,JR Valentin +63239,Kathryn Fiore +1046025,Otávio Muller +1001772,Erol Eraslan +102751,John Wardlow +66841,Mathieu Chedid +553603,Kan Tanaka +173451,Jed Brophy +147644,Michael Dorn +137362,Judy Gringer +87948,Ada Choi +115685,James Harper +1623402,Wang Hui +550130,Hjördis Petterson +1841503,Sue Yurchak +143707,Teruyo Nogami +1019948,Lita Recio +1718444,Manuel Trejo Morales +35781,Hema Malini +1728966,Alexi Melvin +1408870,Enrico Appetito +119439,Tanny Tien-Ni +237847,Michel Gautier +1367908,Alysia Lucas +1671694,Finn +1708445,Louis Homyak +1214063,Eddie Pepitone +1544967,Leslie Sternbergh +1377385,Bresha Webb +1047221,Vladan Živković +53336,Brandon T. Jackson +85229,Florin Zamfirescu +1896719,Andreas Olavarria +464188,Juli Erickson +1835518,Pete Ford +1796924,Henry Ardsley +291133,Tai Bennett +1353659,Joelle Tang +1333687,Sydney Lucas +148023,Hampton Del Ruth +232636,Mirjam de Rooij +1732420,Justiin A. Davis +1281682,Batan Silva +1335771,Kim Hyun-Sook +1177629,Alexandria Ferguson +1083177,Charlie Rawes +1762653,Lena Marie +216147,Nick Thune +583330,Maryvonne Schiltz +1544922,Felicity Hamill +1199161,Jake Williams +1199824,Lindsay Lamb +1772038,Serge Jaswal +1599254,Miloud Mourad Benamara +241839,Mitsuko Kusabue +996532,Stanley Smith +113892,Paul-Antoine Taillefer +1270481,Emily Shewell +73328,Arta Dobroshi +121964,Nicholas Saputra +1247386,Giles Cooper +1398814,Hubert Rees +1091867,Eric Davis +588144,Karel Wong Chi-Yeung +1413151,Christian Patterson +1437422,Allegra Allen +146521,Paul Beauvais +1624591,Gerardo Ortiz +1207236,David Van Horn +110800,Alastair Duncan +931611,Malin Crépin +1375707,Tom Erhardt +144214,Mercedes Quinteros +1411823,Leila Virzì +1118014,Nikita Tarasov +1587892,Annabelle Malaika Süess +70488,Olimpia Carlisi +1358561,Shiloh Nelson +1224186,Kevin E. West +554596,Marc Faure +536822,Ilan Dar +95061,Andre Rosey Brown +1159456,Joen Bille +228544,Isamu Nagato +137440,John Russel +1232487,Malachi Weir +1373501,Müfit Can Saçıntı +83860,Aldis Hodge +1147657,The Brooklyn Dodgers +1803366,Pina Bellano +1653239,Claudio Weppler +566261,Harry Burton +1818101,Connor Robinson +1441760,Emilio Palacios +1467923,Sinjin Venegas +86694,Natalya Varley +1618644,Juliette La Violette +113334,Leonid Bichevin +1088059,Fred La Torella +1501045,Viktoria Li +86304,Dino Morea +1125991,Felicia Shulman +937120,Nigel Cooke +1204672,Jonathan Ortiz +964614,Sonia Rockwell +1704616,Ben Ladner +109073,Terry Haven +120923,Keiko Kitagawa +1900339,Monica Bhargava +240978,Ray Sullivan +1702128,Ian Singleton +1656801,Linnea Skog +1081175,Bunty Cutler +20884,Elisabeth Flickenschildt +1153741,Johnny Raaen +1058107,Miranda Tapsell +1650209,Tyrell Ford +226588,Maximilian Grill +1427294,Leo Tepp +1766385,Gulnizat Omarova +181113,Matthew Dunn +189162,Dale Jacoby +1446019,Collette Merton +1522128,Amanda Moon Ray +929104,Cory Anderson +222351,Kousuke Toriumi +543139,Aroon Seeboonruang +121243,Art Dillard +73410,Chaton Anderson +1769254,Carlos de Azevedo +79966,Claudia Karvan +1130529,Adriano Reys +146062,Karl Karliczek +235425,Ario Bayu +1542831,Phi Vu +118482,Lou Fant +1811551,Edouard B. Uwayo +994429,Yuri Senkevich +1042767,Rosanna Walls +27405,Daniel Wilson +1762437,Edwin Edwards +1142265,Nada Gaćešić +1364908,Caroline Vigneaux +1384986,Seija Tyni +557931,Leslie Murphy +97140,Jerami Cruise +1606634,José Escobosa +229932,Golshifteh Farahani +30421,Barry Warren +147641,Mick Slaney +1496068,Tarjatta Rose +58147,Jascha Washington +550869,Megumi Kagurazaka +1886321,Alicia Morris +1484157,Deonna Lang +225388,Nithya Menen +108168,Bryan Jones +135756,Martin Hestbæk +1790378,Meghan Gutierrez +1435253,Marc Bicking +79289,Javier Pereira +1303596,Ville Salminen +40262,Lily Lavina +558318,Jack Teague +581207,José Paul +1021684,Charlotte Le Bon +934136,Ricardo Hoyos +1215888,Cheryl Hall +1054685,Asawari Joshi +1315947,Guerin Piercy +1224254,Reuel Pendleton +1660694,Ace Buhr +1393311,Jake Brennan +119270,Ajit Vachani +85219,Vladimir Zamanskiy +1566179,David Brooks +11786,Charles Cyphers +584887,Pradeep Ram Singh Rawat +22831,Galina Polskikh +1167606,Kantaphat Phoemphunphatsuk +1610547,Mengistu Berhanu +1481136,Jonathan Camp +1331692,Tin Settachoke +14150,Giorgio Trestini +117939,Tove Maës +87442,Kevin Yon +23385,Martin Combes +992882,Lucille Carney +1547937,John Lightbody +1898508,Frank Schneider +9715,Yumi Kakazu +173030,Jennifer Kitchen +1769823,Heather Witherill +1534809,Katie O'Malley +124291,Markku Maalismaa +1350330,Nelly Corradi +1809570,James M.L. Muller +103684,Dulcie Gray +174653,Roger Wilson +544817,Robert R. Stephenson +82352,Lene Maria Christensen +1589601,Daniel Aguera +35980,Brooke Langton +1822707,Tobias Gollner +954213,Lee Prather +58804,Gabrielle Rose +1366034,Karel Blazek +929634,Gennadi Beglov +1239914,Emily Richard +1442695,Sebastian Bull Sarning +1879750,Valentina Capone +230609,Fayssal Bazzi +1796408,Danielle Dury +1888487,Sabrina Klüber +1620569,Abdel Hamid Bodaoha +65345,Sandrine Holt +938563,María Cuadra +1458876,Albert Médina +1203080,Naomi Andrews +586139,Valentine Stach +114424,Lucyna Winnicka +144275,Karla Souza +117449,Robin Short +1562099,Tyler Fayose +1060289,Ty Hungerford +1230846,Sara Van Horn +227317,Gloria Guida +1508583,Miro Belzil +366785,Evandro Mesquita +57998,Rebecca Mosselman +1611436,Tony Ellul +1453329,Trevor Bland +1358558,Magalie Contreras +1320276,César Cardadeiro +70277,Margit Carlqvist +954656,Yolanda Ross +173866,Alex Rice +1354188,Christiane Rohde +134658,G. Hannelius +1375272,Ron Trice +1140946,Domenico Ravenna +230661,Blanka Copikova +1505894,Garance Pauwels +1167885,Christian Boucher +1588334,Carollette Phillips +999498,Tommy Nelson +1614742,David Gabarayev +1018912,Cleia Almeida +1598789,Jeannette Weinstein +1187107,Baron Vaughn +1275869,Artur Steranko +20086,Jean-Philippe Puymartin +1367879,Jean Heuzé +136552,Fred Galang +12547,Tracy Middendorf +96530,Donald Cumming +72215,Sina Tkotsch +174643,Tom Fitzsimmons +1677587,Joel Harold +86837,Yuri Belov +11171,George Winslow +1185422,Steve Decker +1331801,José Luis Gioia +1388656,John Ganun +1771034,Richard Lavin +1212471,Jeff Austin +1666943,Francisco Venegas +1387663,Lyudmila Semyonova +1071154,Frank Cwertniak +1127918,Kol Zefi +1087002,Mårten Lohti +939072,Celeste Zappala +1277015,Rich Grosso +58462,Gruschenka Stevens +1373344,Ralph Bracco +105650,Amol Palekar +1079329,Armando Bottin +15136,Rina Morelli +1188417,Abdelati Lambarki +1617485,Megan Schroder +127834,Makoto Satô +125592,Ahti Jokinen +1531659,Darrah Lemontre +226388,Peppe Lanzetta +1490042,Lew McCreary +158375,Andrew Johnston +86826,Georgi Georgiu +24625,Milton Johns +1086915,Denis Greene +568080,Eppu Pastinen +114843,Claire van der Boom +1049537,Paz Bascuñan +94216,Sarah Bannier +1683961,Sean Quan +945426,Silvia Curiel +1137926,Janusz Zakrzeński +943913,Brittany Allen +1363410,Gurkan Uygun +91291,Kyôko Sasaki +1375729,William Foley +1605912,Agnieszka Marek +132914,Santiago Neira +171754,Saidah Arrika Ekulona +235837,Amanda Fairbank-Hynes +1201027,Zenichi Inagawa +592717,Joachim Tanguay +232050,Grant Sawyer +64439,Fan Bingbing +591173,Mamukkoya +1153640,Renée Amzallag +10964,Laz Alonso +1653352,Faith Logan +1619293,Liu Tie-Lian +1398172,Nicolas Begin +45827,Ashley Greene +1191823,Carl K. Aselton III +1266274,Miriam Dalmazio +144760,Fanny Valette +913626,Sindi Lacej +1197115,Kate Corbett +1599263,Bodo Friesecke +1156499,Elías Helgi Kofoed-Hansen +9225,John Pearce +1364656,Emily Nordwind +85168,Holly O'Brien +10368,Vincent Peranio +22187,Edda Fischer +1050002,Anne-Marie Labaye +35956,Laura Antonelli +86314,Mindy Cohn +1545514,Tanya Smith +74231,Nick Dash +1037764,Ellen Johnson +85157,Mark Mitchell +587020,Theo James +1413688,Ragne Veensalu +1720500,Nikolai Makarov +232661,Cesare Cremonini +1183180,Greta Vayan +204913,Sally Pressman +543965, Juan Carlos Lara +116636,Guo Xiaodong +79500,Jeff Markey +565501,Teri Wyble +137753,Alina Berzunteanu +1654748,Mikel Goenaga +549565,Rumiko Ukai +1386330,Stephen Latham +683524,Jan Buckingham +141765,Sharon Landry +26247,Eva Maria Meineke +278926,Cherry Pie Picache +1115987,Victoria Vance +580222,Mahat Raghavendra +37193,Luigi Pavese +1294982,Paul Walter Hauser +1075053,Melanie Manooki +1860890,Trina LaFargue +1071375,Pieter Hauptfleisch +93907,Samuel Tasinaje +114373,Angelina Armani +1683960,Michael Neumeyer +939091,Ping Medina +102894,Jill Kelly +120454,Charles McNaughton +1683840,Jacob Shinder +1398143,Sarah Katie Holmes +1676783,Cat Cabral +90122,Beat Schlatter +1863903,Wendy Wolf +1511040,Craig Grainger +6950,Kevin Carroll +1423756,Christa Nicole Wells +1411498,Sully Mason +1263323,Melissa Scott +171334,Amy Hohn +211685,Emilie Ullerup +946148,Des Braiden +79559,Adriana Piasek-Wanski +45152,Olivier Gourmet +2978,Max Minghella +18466,Giovanna Zacarías +1121713,Emmett King +1848074,Kaori Yamamoto +1549113,Derek Ryan Duke +130227,Matt Bush +1467543,Charlie Sexton +1717282,Al Carabello +1562568,Xu Yang +20472,Norah Jones +101522,Walter Perez +140119,Lynne White +928347,Mariann Gavelo +1201134,Brian Charles Johnson +1419725,Jean-François Ferland +1054326,Dusan Hyska +122598,Maj-Britt Nilsson +21914,Alex Fong Chung-Sun +150438,Ayaz Khan +103938,Mary Currier +1507586,John Hackett +936085,Jirí Sýkora +4949,Don Davis +225681,Ilya Lyubimov +1496071,Nathan Standridge +129245,Moti Kirschenbaum +1102264,David Arturo Cabezud +1446118,Oti Nsafoah +1342847,Lau Waai-Leung +1091604,Rudy Smaila +1213838,Juliet Cowan +64242,Tina D'Marco +1555462,Peter Foyse +142405,Teruo Yoshida +1884995,Scott L. Treger +9743,Marcel André +1025680,Van Jones +83257,Mick Øgendahl +1381514,Andrews Engelmann +67145,Abdelhafid Metalsi +1137449,Rose Kent-McGlew +1394347,Mark Norris +227244,Olga Villi +1722533,Ramsey Scott +1238537,Teófilo Martínez +141913,Geoffrey Rhue +103283,Mike Antonakos +592274,Alexis Auffray +32699,Zbigniew Buczkowski +937398,Jay Brothers +226439,Yosra El Lozy +1375579,Amon Robert Wendel +71283,Beatriz Batarda +54382,Paul Mercey +292250,S. J. Surya +1795681,Leonora Scelfo +190516,June Watson +1293459,Sophie Bacry Picciotto +1793179,Dorothy Bennich +1302056,Escolástico Dávila +1196409,Lilly Larson-Lund +1388694,Robert Mello +100744,Monir Ait Hamou +1215651,Kate Miller +1249688,Akiko Matsumoto +137077,Karel Augusta +1494546,Michael Sheets +45983,Nino Vingelli +227064,Richard Fortus +54230,Maya Sansa +1816956,Michael Romano +132911,Alma Bianco Medina +1008607,Sophie Nélisse +1445779,Tove Loos +1874142,Gina Cottone +87164,Whitney Anderson +1219032,Demond Wilson +21721,Dean Cain +18198,Sady Rebbot +120187,Guido Nicheli +1187354,Christian Lex +1784724,Conor Emser +1547091,Walter Nicoletti +1127307,William R. Dunn +994440,Oleg Vershinin +1330005,Elvira Diamanti +1798370,Peter Hannah +40023,Murat Cemcir +227767,Coosje Smid +1103652,Alex R. Carroll +47987,Geri Halliwell +74158,Katherine Parkinson +1390543,Stacey Harkey +1162233,Ketel Weber +1657540,Demetrius Daniels +3407,Søren Sætter-Lassen +225099,Bruno Mazzeo +1274945,Nav Sidhu +945094,Joanna Trzepiecińska +81268,Jermain Allen +1855736,Althaf Salim +63694,Joe Odagiri +53666,Chad Chenouga +9209,Daphne Rubin-Vega +98457,Sally Fraser +77608,Davor Janjić +143242,Terrence Jenkins +1207977,David Delfín +1180097,Esosa Edosomwan +122818,Lawrence Ng +1363562,Alisa Rozen +933328,Adriana Innocenti +151529,Jason Wingreen +938435,Gus Sorola +1001692,Evelyn Gundlach +1145665,Malachi Kirby +195545,Adlyn Ross +1335231,Matthias Heise +1415428,Lester Millet +1264222,August Falck +532270,Aude Landry +1862812,Alessandra Marozzi +1544227,Frederick Ooms +1569,Ellen Hillingsø +27274,Giorgio Pasotti +569165,Rob Van Dam +937751,Nicole Zeoli +1254052,Kouki Uchiyama +1448396,Louise Coldefy +96275,Leonard Lyons +576402,Géraldine Martineau +583114,Timothy Ingles +577647,Philip Griffiths +360193,Peter Linz +1815382,Rachel Leah Cohen +103994,Sophie Lowe +1042757,Rafael Martín Ortiz +1607382,Manuela Ventura +61605,Ron Crawford +1735551,Jake Dewitt +4897,Michèle Pétin +30006,Edward Nugent +1782867,Lyle Reginald +1532532,Alyssya Swales +29248,Fritz Strassny +132820,Sylvie Boucher +910946,César Desseix +1008015,Benjamin Schmoll +106029,Preeti Barameeanat +1205378,Yuka Komatsu +1106563,Alejandro de la Peña +117844,Etweda Cooper +1087008,Alan Gorg +1229738,William R. Cox +1069734,Rajia Baroudi +1203114,Jef Groff +1576530,Angelo Bonsignore +77433,Johannes Wieke +1636767,Joe Gallipoli +1115149,Kelly Lancaster +1319779,Séverine Litzenburger +1566573,Heidi Ødegaard Mikkelsen +130706,Alla Nazimova +1263641,Daniel Cornelissen +95377,Kai Roach +1128163,Greg Quinn +1352334,Shannon Knopke +589272,Monika Dzienisiewicz-Olbrychska +1429694,Ramona Mallory +1416383,Jim Cummings +1340731,Aiste Gramantaite +31770,Margaret Bert +1440316,Ash Gordey +100769,Leon Errol +929666,Viktor Markin +1140222,Mariko Munro +159694,Earl Pomerantz +1041440,Emory Cohen +1117470,Hannah Moore +1754064,Thakur Anoop Singh +57734,Michie Tomizawa +1125625,Geena Lisa +24781,Yves Rénier +1582461,Craigar Lusk +1353656,Kanako Takegishi +1505309,Lamesha Vine +151253,Porscha Coleman +228354,Lore Reutemann +1662448,Jamie Burch +1200536,Anthony Gee +146572,Rick Springfield +1253212,Galina Konshina +227620,Donpei Tsuchihira +929136,Thomas Horn +1074666,Jeff Orlowski +1482501,Renzo Lewis +1468403,Jack Knoche +1184129,Samantha Mills +1332414,Moune Duvivier +1771553,Joseph S. Wilson +616015,Nina Skomorokhova +128466,Alessandro Di Fede +576094,Xenia Assenza +53846,Pheline Roggan +1821489,Kelton DuMont +51039,Marty Adams +1424687,Branislav Fistrić +933059,Anecy Rocha +1390550,Richie T. Steadman +1083305,Shuntarô Emi +1385641,Richard Fike +84956,Nana Patekar +1533995,Marek Oravec +930288,Félix Moati +1334123,Suzanne Hepburn +129981,Ighèzu Mussiè +1029798,Victoria DiGiovanni +144650,Aya Hirano +1691981,Kristine Cabanban +160948,John Hansen +49175,Franz Buchrieser +586627,Chandramohan +110031,Oleg Kulikovich +1059044,Chase Maser +1052351,Mylene Dizon +1184674,Soogi Kang +140105,Takumi Shinjo +1723563,Laura Frost +1106865,Johnny Ray Gill +578989,Else Højgaard +1434837,Jodi Draigie +1588873,Zachary Hilliard-Forde +1903060,Gisele Alves Moura +1599036,Billy Gilbert +1891815,Mauro Spitaleri +10483,Blanche Ravalec +1788071,Vasilis Panayi +145084,Louis-Ronan Choisy +1137504,Rosita Pisano +1059597,Zoey Deutch +76749,Jerry Johansson +1053651,Luke Moran +169625,Alejandro Furth +1029107,Jorge Gurpegui +16700,Greg Wise +1531593,Anthony Fitzpatrick +124265,Satu Silvo +1265783,Tatiana Ouliankina +108567,Louise Mardenborough +1601623,Aleksandr Kostomolotsky +568714,Brenda Koo +1252934,Emerald Fennell +1839913,Ana Vitória Bastos +93225,Aleksandr Baluev +1606269,Franco Bagagli +101101,Carol Bennet +1086566,Tomi X. +1779228,Irwin Berke +1683143,George Tracy +1664128,Toto Barbato +862932,Karl Linnertorp +37940,Im Soo-jung +181879,Gerald W. Abrams +1179445,George Tchortov +1181331,Sufe Bradshaw +1133401,Yola d'Avril +140457,Dieudonné M'bala M'bala +1723620,Dan Ball +147444,Emma Schweiger +87385,Tony Robinson +1390552,Cardiff Gerhardt +1352656,Fernand Mathes +1469377,Ron Heisler +1060187,Alexandre Païta +227980,Rhian Ramos +1379954,James Lee Guy +1224166,Kunal Sharma +81747,Aurélia Thiérrée +240181,Chen Ping +1378256,Khaled Kouka +34612,Anna Chlumsky +74540,Haruhiko Yamanouchi +1723573,Alexander Babara +1467113,Andrei Puntus +124879,John Raitt +544197,Georges Vaur +952564,Bob Lowell +83285,Leah Pipes +52585,André Ramiro +1224687,Todd Cahoon +994412,Giorgos Symeonidis +1017981,Lauro Gazzolo +1793172,Larry Mongo +568405,Mimi Sagadin +929105,Gregg Christensen +1094642,Gary Betsworth +1010052,Robert Nolan +1418260,Mike Padega +592207,Rosita Celentano +1301796,Patience Rentoul +225683,Yuliya Takshina +82668,Vanessa Mae +1480500,Şevket Süha Tezel +72674,Paulina Gálvez +543868,Aleksandr Belyavskiy +1188194,Laura Atwood +1563608,Ariirau Tekurarere +1784155,Arun Mode +186164,Ben Roberts +1398201,Eric Ardila Quinonez +1293074,Sandro Molfesa +1603092,Weronika Wachowska +1042756,Antonio León +230471,Kana Ueda +1694294,Oscar Ali Garci +414239,George Turner +1481492,Robert Duncan +128382,Deepak Kumar Bandhu +1475955,Tatsuya Ueda +564862,Choi Il-hwa +1174840,Pamela Flores +97172,Dave Atkins +146898,Janet Waldo +1156390,Sergio Dorado +204975,Andrea Brooks +1384017,Andy Copeland +1486215,Joel Labelle +108925,Charles McCallum +39991,Chuck Barris +80876,Katerina Papoutsaki +1524890,Hilary Crane +145194,Spencer Berger +1385063,Olivia DeJonge +98504,Florence Auer +1294426,Carlito +224506,Alejandro Camacho +1102163,Shinobu Aoki +1328508,Jangiri Madhumitha +1015896,Adrian G. Griffiths +101503,Jane Liddell +1704674,Tyvonna Jones +86706,Yevgeni Lebedev +1433896,Gunnar Pedersen +1085660,Ray Fonseca +1087382,Javier De la Vega +1754594,Talia K. Dillingham +121062,Tommy Coats +1195239,Nathalie Claude +219695,Sam Butera +1483403,Kenzo Echigo +78035,Tanisha Harris +182576,Jack O'Leary +587180,Stuart Seide +26835,Eva Ingeborg Scholz +933268,Angelita Velásquez +1331922,Robert Missler +1898510,Karen Verbrugge +84822,Maria-Rosa Rodriguez +402999,János Derzsi +20664,Kouichi Yamadera +57714,Andi Feldmann +1771571,John Carter +235379,Leonard Stanford +1590840,Will Rastal +574141,Madison McAleer +566641,Roy Gunsberg +1084809,Jon Adams +1188448,Reino Valkama +153347,Joan Tompkins +1088205,William Gribble +222316,Mikko Niskanen +219998,Keenan Tracey +93980,Carlee Baker +1860635,Kaitlyn Reed +1630267,Colby Clayton Lemaster +1555123,Kelicea Meadows +1468102,Hassan Said +1301807,Anthony Daniel +215301,Michael Jr. +79557,Amélie Lerma +550899,Morgan Distefano +1356320,Roger Álvarez +141974,Saadet Isil Aksoy +1469972,Estanislao Schillinsky +1132167,Santtu Karvonen +16704,Rainer Ewerrien +154960,Christina Ulloa +1257146,Anton Bogdanov +1507533,Celia Tejeda +77434,Annemone Haase +188882,Stacie Mistysyn +1734963,Jusin Holmes +57364,Maggie Peren +148307,Yves Arcanel +46921,Michael Jace +19615,Didier Haudepin +200753,Peter Wong +589235,Maria Gładkowska +1863917,Beto Naci +72855,Felicity Jones +985072,Sergei Popov +307885,Alex Knight +143117,Fernanda Campos +1385056,Mickey River +14688,John Halliday +1179337,Jared Gilmore +1636793,Kim Evans +1554490,Narantsogt Tsogtsaikhan +1634619,Sharon Gee +1504087,Nick Young +1700247,Adalberto Arvizu +1003843,Stephanie Allynne +1373733,O.C. Ukeje +102703,Paul Popowich +1167986,Masaya Nihei +39683,Ivan Kaye +928341,Helen Garriott +221843,Shannon Chan-Kent +141676,Raúl Castro +80036,Dani Kind +99291,Inna Churikova +1484036,Shin Yoshida +1465413,Anne Gullestad +89654,Scott Swofford +1431685,Lars Junggreen +1796406,Henry Hallowell +1331273,Helena May Seabrook +208198,Olivia Hardt +1456424,Abel Alves +124713,Michael Stephenson +231715,Stephen Weigand +1598080,Tugrul Tulek +68332,Marco Stefanelli +1853763,Romano Sommadossi +35910,Maurice Mons +572724,Christian Martyn +210343,Carrie Reichenbach +581145,Shinya Ofuji +4665,Josh Cruze +26670,Rebecca Saire +113779,Valerie K. Garcia +1174111,Joyce Ilg +99285,Nikolai Karachentsov +1611439,Odetta Balzan +229689,Jesse Daly +969316,Ben Aldridge +1872254,Markell Boyd +1774939,Troy Hoskins +1185481,Steven McDonnell +1815369,Дмитрий Медведев +103459,William Thourlby +933929,Tiana Brown +1295540,Emily Deahl +64501,Saki Seto +135355,Vivian Austin +84698,Jessica Lowndes +1840871,Joni Podesta +233147,Stuart McLoughlin +132068,Elisa Sednaoui +39148,Maria Pacôme +115349,David Kennedy +1362514,Eduardo Fernández +101704,Rose Stradner +42442,Saleh Bakri +1309679,Jackson Barker +1224835,Conner Rayburn +1307354,George Nelson +1805291,Silvaine Faligant +90395,Poppi Reiner +1627139,Charles Williams +1388976,Pieter van der Sman +128632,Pam Levin +1112414,Christopher Hagen +1172579,Kate Toncray +1395182,Chanel Iman +1171903,Gay Seabrook +101431,Kathrine Baumann +227577,A.J. Tannen +1039532,Joe Sykes +1890115,Ibrahim Kiransal +34451,Kirby Grant +83895,Jacob Ericksson +87387,John Lloyd +1393187,William Wunsch +1380096,Clint McCreery +55923,Simon de La Brosse +1764143,Konrad Beerbaum +1678198,Joanne Bruno +209196,Annie Ilonzeh +1782601,Adam Kolkman +104212,Natalie Perrey +148745,Peter Newbrook +258039,Tiziana Lodato +1209543,Alastair Caldwell +544566,Jean-Yves Lafesse +1788314,Bob Taylor +1319572,Chris Hutchinson +1098246,Jocelyn Ayanna +1172844,Allan Chapple +1133011,Melia Kreiling +60420,Laura Grigoriu +1131606,Annie Thurman +223621,Chiara Francini +235608,Viktoriya Smirnova +1798997,Collin Crowley +54649,Louis Mandylor +1560908,Todd Voltz +1199647,Meliz Karlge +1367203,Yahya Gaier +43646,Tygo Gernandt +1543044,Florence Bell +1235094,Big Tigger +1663786,Isabella Ricker +564824,Elena Bellocchio +1439662,Marie-Paule von Roesgen +1785743,Vicky Yu +1650323,Cheryl Bond Danks +1357096,Nadia Gan +1074179,Tsui Fu-Sheng +1833229,Nolan Malcolm Fink +1549471,Anita Crane +1154221,Peter Grosz +1408148,Michael Gregory Fung +1449806,Gorkem Kasal +1093521,Celeste Risko +27459,Ernesto Alterio +1807472,Satu Helena Mikkelinen +1171568,Tony O'Gans +122681,Casey Tutton +144675,Jordan Belfi +111061,Olivera Marković +41529,Romina Mondello +98220,Jonathan Cott +1597629,Craig Kellman +1469935,Vicky Kaushal +928468,Godehard Giese +1891501,Ed Hickok +98535,John F. Beach +567329,Cameron Antrobus +107879,Lech Dyblik +52698,Nika Futterman +71038,Dimitri Storoge +227607,Catherine Proulx-Lemay +90451,Tom Sturridge +1174582,Halil Kumova +1137925,Grażyna Długołęcka +1092494,Colea Rautu +1838039,Katrin Assi +226023,Christophe Lavalle +530327,Robert Haythorne +1225488,Mandy Schaffer +1104462,Matias Varela +544910,Dang Wai-Ho +235544,Miliza Korjus +152823,Carmen Moore +1385043,Jackson Frazer +582918,Nick Murphy +224319,Julio Bracho +1304662,Samuel Joslin +1619846,Вероніка Шостак +128360,Polly Walters +1167892,Jo-Anne McArthur +1192913,Jacob Gregory +39768,Jocelyn Lane +1070233,Ron Haydock +1246972,Ruby Rose +1891491,Dorinda Dercar +51995,Theo Rossi +236678,Eric Pehota +1152740,Jacques Lavallée +1523857,Cat Commander +1442256,Dennis Albrechtsen +1282129,Warren Masemola +23734,Vittorio Mezzogiorno +1838442,Venus Seye +80407,Cameron Daddo +102865,James Salisko +1438816,Brodie Masini +967376,Taylor Geare +141471,Diane Wilson +1210548,Soulasath Souvanavong +120057,Jane Seymour +80405,Karen Holness +1588363,Caitlin Burt +1238979,George Howe +21009,Isabel Sanford +80995,Joyce Grenfell +1267382,Eric Braun +11285,Ian Burfield +1412150,Emily Cass McDonnell +227600,Gabriel Maillé +550949,Tien Hsin +1522259,Akiko Iwase +1335774,Yu Ji-Yeon +40897,Jean Galland +1046088,Ed Emshwiller +71090,Raj Babbar +585494,Jannik Schümann +96183,Christopher Witty +1769113,Roni Merhavi +203677,Evan Adams +1156259,Peter Parente +1336803,Jung Heung-Chae +1684108,Danube R. Hermosillo +1785744,Karry Wang +105638,Billie Mae Richards +72494,Rie Miyazawa +145609,Alessandra Negrini +1467367,Mads Hjulmand +1128157,Evert McQueen +38280,Tang Wei +1086695,Vanda Duarte +42317,Scott Lawrence +40921,Suzanna Leigh +1782495,Porche Robinson +40949,Joan Sims +1033156,Randhir +1270535,Imke Brügger +1457014,Reece Moffett +12905,Ash Brannon +102227,Dani Martín +939939,Primo Carnera +1443660,Max Rennie +124794,Caitlin Martin +43427,Sarah Thompson +1169125,Nicola Pistoia +191277,Todd Lowe +44215,Josef Kemr +1381335,Nathaniel Lindsay +88866,Susanna Anteroinen +85901,Connie Marshall +1023424,Rob Pallatina +1290125,Jillisa Lynn +105784,Mel MacKaron +1547693,Henry +126502,Charisma Carpenter +1307989,Jean Marie De Busscher +89025,Kirby Morrow +1304469,Russ Bain +1763227,Shawn Bittenbender +101221,Robert Reynolds +1134619,Sakae Umezu +931684,Yahya Barakat +228160,Michela Miti +1749828,Tearyn Belanger +1056205,Mohamad Imran Tapa +11195,Gérard Oury +162878,Jan Devereaux +568594,Tanaka +1296198,Roxanna Naranjo +169476,Jud Tylor +482289,Nicole Badaan +1303598,Eila Pehkonen +41031,François Rollin +1493356,Pelle Heikkilä +116387,Hallvard Holmen +239452,Shunji Sakai +1577093,Sergej Onopko +1880342,Apetor Afiwayi +236485,Derek Googe +85938,Mayuko Fukuda +1636799,Whitney Romito-Mason +1542545,Park Min-ji +213583,Tilo Nest +1592925,Éric Robidoux +1217563,Eugene Mirman +1379821,Michael James Shaw +1575991,Kash Goins +42557,John Enos III +87843,Nino den Brave +1746882,Christian D. Ellison +123905,Jack Watling +1450777,Alan Mueting +1747318,Zuzana Valchárová-Poulová +592174,Christel Oomen +933325,Julio Carrasco +198540,Jason Deline +107069,Jack DeLeon +1440321,Lam Chi Kit +142298,Alexander Klein +112785,Jung Woong-in +1116062,Michał Kula +1422101,Don Downen +224730,Adrián Lastra +108920,Brea Bee +114755,Isa Hoes +147091,Gretchen Wells +1388891,Jozef Aoki +574108,Anthony L. Fuller Jr. +152926,J.P. Bumstead +545573,Marianna Alacchi +588335,Matt Biedel +24706,Ken Jones +2170,Marc Duret +1811522,Nebiyu Baye +132069,Abraham Belaga +206485,Ravi Patel +1656659,Maryse Ouellet Mizanin +234392,Corrado Olmi +1098451,Peter Michael Dillon +234659,Julie Glenn +226197,Bjorn Ungersness +129960,Fumi Hirano +1759659,Anissa Borrego +42286,Julene Renee +1255247,Mădălina Diana Ghenea +566792,Yana Gupta +130359,Giampaolo Morelli +1781711,Charandeep +64924,Declan Baldwin +225914,Benny Poulsen +1080995,Johann Jürgens +64622,Kate Kelton +1199479,Mike Lutgen +1820241,Fernando Richart +197486,Edward Grover +82311,Artur Żmijewski +1706335,Hanzala Shahid +1105459,Helen Soraya +1209858,Jordan Parrott +1244335,Haruko Kitahama +91345,Linda de Mol +1085059,David Kehoe +84422,Carolyn McCormick +1508640,Leslie Menu +60757,Yumi Takada +1385246,Georgie Stone +12820,Belinda Mayne +1893934,Madeleine Brolly +1668390,Nasry Malak +28235,Sebastian Shaw +1115695,Carmela Marner +133837,Anne Caudry +1783677,Bryan Zampella +1034509,Minnie Marx +1643035,Pernilla Ostervall +1130958,Leah Best +54149,Amparo Soler Leal +57130,Todd Phillips +552181,Shigemi Sunagawa +1013749,José Mehrez +1782148,Brooke Schlosser +86784,Alok Nath +1060136,Davie Fairbanks +101559,Naelee Rae +1099724,Ben Sharples +1883543,David Carter-T +14247,Claude Sylvain +122661,Yūsuke Numata +1149597,Austin Scott +1021227,Brandon Barrera +1714066,Jérémy Nebot +144342,Michael Fuith +1160511,Tado +996878,Natalya Sezeman +1428394,Zak Henri +167387,Sian Barbara Allen +537884,William Gaxton +117888,Christopher Harvey +1662631,Dolores Morrison +149880,Serge Bozon +108477,Eppu Salminen +1605804,Damien Rigaud +28139,Isabella Spade +1044540,Thanyathon Seekhiaw +1343583,Orestes Sophocleous +1730829,Meie Castanho +1202163,Beverly Salviejo +94491,Robby Kiger +1240645,Vincent Tong +1118739,Vanni De Maigret +1493331,Xavier Lemaître +933545,Christina Bach +1760860,Minhee Yeo +1722992,Will Cooper +1772092,Andy Goldenberg +1666044,Tara Brook +863,Orson Bean +1507492,Garry Mannion +143461,Žarko Laušević +1069299,Chieko Imaizumi +1311034,Viktoriya Raykova +577830,Pascal Gillot +141643,Olga Korytkovskaya +141830,Pietro Ragusa +29175,Albert Steinrück +1146439,Spyros Papafrantzis +188619,Sarah Manninen +138627,Eve Muller +76366,Scott Ryan +1230349,Heidi Arena +1357796,Claudia Lau Sin-Yi +1394431,Dylan James Watson +1148696,Kyle Nobess +1430946,Cindy Joy Goggins +79003,Abhay Deol +1194767,Russell Evans +85438,Margo Woode +1416301,Mark Strepan +1197238,Lisa Alvgrim +116257,Dorothy Lee +164105,Carl Palmer +6263,Hannelore Elsner +1874732,Theis Gottorp +1222053,Dai Matsumoto +1043210,Ivana Mihić +96791,Adriana DeMeo +1245452,Alexandra Stevenson +124745,José Antonio Rivero +1660662,Raoul Guillet +83624,Damian Lau +1863895,Wilton Andrade +1519253,Caroline Redekopp +998380,Ivy Holzer +1363253,Veronica Cavalcanti +1089486,Dirk S. Greis +1729665,Erik Bauersfeld +130838,Stephan Bender +36804,Peter Chelsom +1414273,Chow Chi-Fai +1464082,Paula Hartmann +1796416,Erika Heather Mergl +116742,Dick Contino +1484680,Shinjirô Hirota +1654001,Amber Midthunder +102653,Tommy Withrow +120000,Zdeněk Štěpánek +1083306,Jun Ôtomo +68987,Riki Takeuchi +1272975,William Zielinski +1423095,Fernando Sáez +93672,Allison McKay +103449,Ralph Morgan +1774405,Chloe Hirschman +581662,Antônio Carlos Jobim +114290,Jonathan Corey +141545,Jo Kyeong-hun +1337740,Ivan Zhvakin +1584781,Mondé Sibisi +1091460,Bernardo Mendes +6285,Frida Hallgren +1388480,Jonathan Carkeek +1436998,Raïna von Waldenburg +1081135,Josh Mills +206661,Crystal Balint +1200859,Charlotte Reidie +556743,Filippo Perego +1527312,Mia Xitlali +187066,Sally Cooper +1426804,Suzana Petričević +1050418,Wang Ji +586013,Sid Lucero +1683126,Jack Big Head +1207367,Warona Setshwaelo +585191,Smita Patil +1230626,David Sibley +1718567,Elizabeth Ludlow +1658145,Ed Spila +142019,Yayan Ruhian +90681,Antoine Bertrand +79825,Magnús Ragnarsson +1121625,Robson Caetano +27104,Johnny Simmons +131281,Jean Byron +1630631,Vivien Ciskowski +16760,Ntare Guma Mbaho Mwine +1428448,Jean-François Poulin +101533,Ralph Bates +1267277,Ashley Hayes +1296299,Richard Neill +213506,Mona Geijer-Falkner +1111692,Fouad Mourigh +1404697,Jimmy Romano +135130,Shinichi Yanagisawa +87243,Nicole Beharie +1753245,Sasha Dadvar +1589755,Ted Thomas +1821484,Gentry Lee +1862909,Doug Harriman +1152396,Rosalio Garcia +183070,Julian Acosta +1042307,Martin Burton +90523,Martin Schick +1193833,Adam Brown +1489158,Roongtawan Jindasing +1622651,Jade Chynoweth +1330010,Zef Mosi +1432696,Amy Martell +1171071,Miyuki Matsuda +136757,Judith Henry +1283527,Isabelle McNally +239953,Marina Resa +1844338,Madonna Bowe +224981,Beppe Grillo +1490044,Carmie Tedesco +234982,Bella Heathcote +1424438,Zorana Kostic Obradovic +85490,Edward Norris +32377,Enrico Maria Salerno +1759594,Liz Morgan +556460,Pascal Mazzotti +1706562,Lella Cattaneo +982031,Marina Koshetz +999637,Juha Hippi +1165008,Kev Adams +125718,Kelly Adams +1545497,Trent Rowland +29512,Gerald McRaney +27399,Paolo Calabresi +165056,Paul Todd +1713690,Bella Ava Georgiou +1016156,Naoyuki Morita +230579,Marco D'Almeida +122546,Al Palagonia +197057,Melanie Kinnaman +68853,Sissi Perlinger +48178,Hilde Van Mieghem +1842210,Shawn Michelle +1029121,Armine Zeytounchian +585702,Tania Garbarski +1495093,Edric Carter +1330186,Gora Seck +1432096,Cameron McDonald +935617,Dimitris Tzoumakis +129420,Olivia Birkelund +59889,Kurt Caceres +1027218,Douglas MacArthur +202629,Birgit Sadolin +150967,Stevie Vallance +1849988,Travis Fleetwood +1743593,David Georgiou +95748,Paul McCarthy-Boyington +1429877,Peter von Zahn +98485,Arturo Dominici +137020,Jiří Sovák +57012,Fares Fares +1351508,Roger Dunn +85493,John Shay +1205257,Stephanie Garvin +1560244,Anthony Ramos +1322031,Martin Owen +1657944,Linda Kenton +1481005,Jonah Coppolelli +556494,Camila Pitanga +127553,Thorsten Kaye +1427400,Justyna Suwala +1454165,Chelsea Islan +1187642,Kami Ashita +1692997,Jang Yoon-ju +121590,Mirto Alikaki +1878882,Claudio Guain +158136,Naya Rivera +81012,Adrián Suar +1524908,Eva Lea Pace Morrow +228879,Kiko Rivera +1179813,Jirí Sesták +98104,Julian Barratt +1154749,Hilt de Vos +1132702,Aleksandr Kobzar +110080,Sheridan Smith +239403,Alain Robak +1332495,Ian Hecox +1749825,Jerome Andries +59776,Michael Twigg +210154,Mike Miller +1167481,Guillaume Faure +43232,Valerie Cruz +115665,Briony Glassco +31422,Ivan Massagué +107132,Victor Parascos +1071380,Jacky Sigaux +1186597,Neve Gachev +1207259,Joseph Brady Madden +47828,Paolo Kessisoglu +728828,Anatoli Marenich +100381,Jed Rowen +433315,Alexandra Beaujard +1509229,Kambri Pellerin +126446,Veronica Corsi +1031686,Meighan Gerachis +83183,Gabriel Arcand +62674,Billy Parrott +935646,Dimitra Stogianni +1070001,Sarah Messens +1192158,Jamal Grimes +1247353,Martin Dejdar +47881,Colby Chester +143455,Ginny Simms +111640,Munetaka Aoki +1760900,Jaiden Stafford +1035737,Maria Paiato +62501,Del Synnott +20116,Lalla Ward +102505,László Csákányi +1542794,Antonio Monfort +104219,Sylvia Bourdon +968289,Ellie Nunn +1073407,Barbara Anne Constable +85686,Tanaaz Currim Irani +1134800,Erh Chun +85684,Ashish Vidhyarthi +27463,María Esteve +1141262,Angelo Maria Santiamantini +1543458,Atef Vogel +1259971,Aliki Vougiouklaki +1386540,Ryu Hye-young +135025,Shigeru Muroi +1697397,Teigan Follett +1063128,Ethan Juan +1313564,Aurora Perrineau +100434,Brigitte Petronio +1498619,Rose Shalloo +1388681,Stacey Hummell +1520899,Michèle Blondeel +52123,Vidal Peterson +105352,Angela Goodwin +85627,Greg Germain +1613990,Dante Hoagland +1430327,Vilhelm Petersen +6784,Jacques Herlin +5943,Lindsey Connell +238777,Hiu Sun Ha +1009376,Phillip Sacramento +147092,Chris Martell +111681,Jason Rogel +1296699,Jon Shone +1264127,Malin Cederblad +1482567,Charles Lamb +88360,Rhys Muldoon +26706,David Rintoul +31298,Derek Farr +1502239,Valyn Hall +1426919,German Tintaya Mamani +1265906,Jawed El Berni +1620570,F. El Demerdache +1837294,Matthew W. Morgan +27275,Daniela Poggi +100161,Rene Bond +37874,John Singer +230099,Jaimie Beebe +981014,Tara Leigh +1337712,Sean T. Krishnan +47973,Dan Robbertse +1625710,Veronica Stork +1158688,Berta Khapava +1580289,Cédric Appietto +1146818,Carole James +984422,Richard Reid +1103658,Ellen Becker-Gray +150197,Pasupathy +200689,John Quinn +1683719,Jason Martin +144311,Rez Kempton +1578321,Casey Manderson +1376001,Tina Grimm +589218,Monte Montague +88785,Hanung Bramantyo +944934,Veeru Krishnan +40419,Robert Hansen +1367884,Lisa Hart Carroll +36315,Monique Chaumette +1090781,Tolga Safer +1134107,Koulis Stoligas +1302478,Charlie Sanders +31133,Ne-Yo +1433094,Britta Lillesøe +564323,Maren McGuire +1439075,Darshan Kumaar +1735621,Maria Schneider +580706,Hugo Ruiz +206399,Elizabeth Gillies +1089139,Jamie Bick +1288637,Radek Valenta +206027,J. Omar Castro +1075570,Hermann Lause +1541333,Robert Tudawali +1676882,Guillaume Benoît +223969,Joeri Busschots +97783,Lisa Rinna +584196,Sergio Pángaro +1374771,Margot Demeter +1684473,Charlie Wright +17062,Rosa Enskat +123455,Henriette Steenstrup +1259680,Saharat Sangkapreecha +48440,Nils Tavernier +117431,Shaun Johnston +115350,George Lois +1165938,Sascha Alexander Geršak +95257,Candi Milo +76802,Brian Tester +1079805,Saxon Sharbino +204675,Michel Winogradoff +132908,José Alberto Avendaño +111491,Howard Wright +95058,Anne-Marie Miéville +231869,Andrius Paulavičius +3840,Anna Maria Mühe +994433,Aleksandr Borovikov +1651412,Sophie Shad +148082,Sacha Guitry +106583,Ruth Ford +1467925,Derek Chase Hickey +96392,Michelle Beaudoin +1695147,Izzy Lim +1118721,Alan Douglas +1153677,Katarina Ivanovska +198676,Benjamin Shirinian +1272229,Aurelia Scheppers +19122,Anna Sigalevitch +102168,Meg Register +1621639,Eiken Shoji +120460,Henry Mowbray +74957,Andre Royo +231241,Uriah Shelton +85836,Herb Voland +1475710,Jord Knotter +1881182,Gwendolyn Göbel +1557178,Yang Xuwen +1188866,Hjalmar Selander +21676,Sharon Horgan +138828,Vladimír Javorský +1528072,Joanna Horton +928812,Roberto 'Sanz' Sanchez +1384535,Courtney Lyons +144764,Florinda Chico +229616,Alejandra Adame +25090,Jeffery Kissoon +221613,Benedict Campbell +81504,Johnny Pruitt +66579,Bonnie Somerville +1362813,Niamh Algar +93997,Jin Ji-hee +125382,Molnár Piroska +1291810,Julien Arruti +1367569,James Sobol Kelly +1456938,Anikó Nagy +565643,Pierre Mailloux +994436,Ugo Fangareggi +225726,Vadim Zakharchenko +64548,Tadrina Hocking +67843,Lloyd Adams +7279,Cyril Couton +1564297,Daniel Dobosz +937720,Emilia Ikäheimo +13825,John Kelly +1851926,Diego Verdegiglio +223073,Tom Pöysti +362851,Peter Mandell +1379275,Hannah Flynn +1139707,Chan Wai-Lau +1102268,Dana Dorel +140406,Katie Morgan +82137,Alexis Butler +39674,Alain Jouffroy +15030,Robin Sachs +1546416,Maata Ould Mohamed Abeid +1207266,Wray Wilson +1362826,Kristin Kueter +75914,Seo Young-hee +169337,Katherine LaNasa +109151,Jaime Ray Newman +1599407,Daniel Casadellà +3209,Josh Richman +142947,Giles Alderson +173158,Brian McGovern +1752991,Angelo Olivier +1388673,Jallen Rix +1465486,Quincy Tyler Bernstine +1883813,Peter Neaves +109321,Lewis Lemperuer Palmer +1894272,Lorenzo Logli +1879741,Sergio Vespertino +1663867,Laura Juhász +582316,Dean Austin +120484,Sheila Keith +1863894,Drika Torres +1673306,Thérèse Perreault +1177627,Paige Moyles +225598,Özz Nûjen +1639424,Zach Myers +1584555,Andi Bajgora +589146,Inma de Santis +1633358,Elizabeth Brissenden +995471,Jean Dean +590410,Lee Neville +44533,Ludwig Trepte +53130,Zoe Simpson +1244458,Aruno Tahara +56619,Julian Rivett +1286905,Phillip X. Levine +1080763,Marek Morvai +1467978,Wayne Sutton +178952,Anthony Rogers +1001384,Onur Tukel +1337780,Byun Yo-han +1860980,Khalid Mohamed +83465,Gale Gordon +27163,Ornella Muti +136910,Wally Ann Wharton +230060,Amy Ferguson +1221936,Tennessee Ernie Ford +1443612,Laura Gómez +997406,Niko Pepaj +589087,Jean-Marie Amato +1822955,Victor Travis +1653014,Adam Barr +81269,Eros Vlahos +1222298,Bridget Regan +1255907,Echo Kellum +62333,Choi Ji-woo +120953,Gautham Vasudev Menon +1092940,Jun Yokoyama +89445,Noe Hernandez +1108098,Jordi Martínez +1788311,The Antlers +168052,Lee Kinsolving +1195236,Al Tuck +74687,Stella Maeve +150675,Jayme Lynn Evans +110421,Hanna Mangan Lawrence +228517,Olga Louzgina +1176934,Thomas R. Mills +1170869,Robert P. Kerr +1074565,Gastone Renzelli +1898305,Maria Teresa Campus +1416922,Carolyn Shakespeare-Allen +1842575,Kevin Anderson +1722986,Ahkai Franklin +1816439,Anna Brooks Beckman +1622089,Vincent Anthony +110542,Ben Gold +1586008,Renato Zamengo +63169,Cory Knauf +866906,Kelly Washington +1796421,Tally Rodin +142949,Zoe Richards +38907,Michael König +82695,Austin Basis +89556,Cecile Arnold +1820118,Dalton Parrish +97691,Tony Isbert +1046233,Elizabeth Blackmore +30473,Andrew Hughes +1456193,Scott Campbell +1780283,Ana Flaherty +147635,Georgette Dee +130846,Noah Lennox +109473,Matthieu Boujenah +105844,Courtney Halverson +70880,Manuel Witting +1853874,Ken Savage +1581559,Jason Wikander +84242,Karl Bille +1782025,Earth-G +126631,Manuela Morabito +1296666,Chinatsu Akasaki +76828,Patrick Gilmore +97041,Alexia Stresi +148851,Muriel Kirkland +132860,Shawn Toovey +94272,Alfred Brown +1032528,Hendrick Haese +139194,Sabrina Machado +1567894,John L. Cowan Jr. +4621,Axel Prahl +1531599,Victor Mensah +309241,Kalabhavan Mani +122600,John Ekman +136981,Anthony Ireland +109517,Mohamed Hicham +1335021,You Liping +192248,Mickey Mantle +620108,Liliana Gerace +117742,Gail R. Plush +1811264,Cyce Sadsad +550854,Keaobaka Makanyane +1127913,Zana Hasaj +1902455,Manuela Garcia +565508,James Rawlings +1445772,Arshad Aslam +1342868,Andrew Ehrlich +992078,Vera Miao +1784658,Melinda D. Marin +1282826,Lucille Lewis +10538,Vivien Leigh +1130814,Þorbjörn Guðmundsson +1807470,Mary Nduku Mbai +1760475,Adam Hoskins +1842094,Nina Mansker +1396620,George Kirby +1050372,Donna Yeager +569865,Joshua Payne +150917,Jean-Baptiste Thiérrée +1807838,Archit Deodhar +933018,John Lakos +173079,Tammy Hui +35135,Jacques Denis +120813,Olive Brasno +543860,Andrei Boltnev +1470175,Napua Greig +1018917,João Vaz +132310,Brian McElhaney +77313,Willa Ford +98851,Garrett Clancy +1851059,Federico Poggipollini +1161086,András Orosz +160330,Victoria Bass +48088,Beatrice Frey +1408695,Edwyn Collins +141547,Hyun Joong Kang +1050364,Baadur Tsuladze +999790,Alexis Knapp +101183,Sean Cain +1350563,Joe Rickson +1089434,Yu Kang +580223,Ashwin Kakumanu +1762725,Sofia Vempo +238487,Mikhail Boyarskiy +63071,Terry Stone +57563,Elon Musk +158489,Stefan Arngrim +85178,Christa Campbell +1376106,Huang Xuan +932605,Tarik Ünlüoglu +16418,Casey Kasem +142182,Sean Bott +1419993,Christina Aceto +1256820,Jenessa Grant +1523035,Josef Tödtling +1707951,Wesley Holmes +1212319,Barry Jenner +40596,Jan Murray +150698,Song Joong-ki +139340,Kippee Valez +79051,Wendee Lee +9708,Keiji Fujiwara +67712,Josh Strait +1673245,Brandon Scott Miller +1457004,Oscar Martínez +95607,Jimmy Barnatán +205854,Zachary Booth +928294,Kim Allen +1482847,Laura Freeman +1135306,Julia Dalavia +1585042,Sandra Rosko +95353,Lil Wayne +118002,Tom Pickett +1313153,Catherine J Hood +1818379,Charlene May +45923,Kathleen Barr +1172609,Yuan Quan +1117094,The Beagle Libby +1317921,Jean Temple +351074,Silvana Jachino +579551,Lana Del Rey +1333569,Eustaquio Barjau +38116,Olivier Hussenot +1261625,Aada Hämes +1804418,Trevor Wolf +928261,Gabriel Elkaïm +1298268,Jayson McCardell +1257387,Katie Findlay +1465969,Emily Bach +131734,Michelle Glavan +5352,David Wilson Barnes +304282,Kate Flannery +1199628,Georgi Mamalev +1790364,Elle Winter +1414109,Gabriel Strong +207304,John Schwab +589796,Manuel Garay +995205,Dario Barosso +138125,Aleksandr Goloborodko +1354253,Joseph Logan +1632517,Elisabeth Adwin +1769822,Yesse Rodriguez +226621,Anne Collings +1062342,Cara Uchida +139341,Steven Kaman +1174837,Camille Lellouche +145222,JoJo Henrickson +617505,Wen Ying +567077,Burke Denis +213914,Hugh Reilly +1125200,Fatima Ouchaye +1808626,Stewie Stone +1561253,Josephine Fabian +47392,Joan Benham +92754,Marty Lindsey +28626,Arielle Dombasle +984614,Miles Elliot +500085,Erin Agostino +1397789,Jayme Rae Dailey +1316628,Rüdiger Kriese +157626,Jan Rabson +121260,John Close +1388531,Cameron Tremblay +27671,Mohamed Khaddy +1198999,Ami Ameen +1306785,Bruce Cook +1284748,Isidore Cashier +94017,Kyôsuke Yabe +949165,Dave Cole +46128,Amanda Ooms +1324653,Stony Bower +112309,Olga Bołądź +1446018,Kalia Prescott +152599,Richard C. Adams +64304,Jordan Madley +1502529,Freeman Dyson +95721,Michelle Tate +44641,Timothy Peach +1450888,David Miscavige +1531024,Josephine Scandi +1704656,Tian Richards +1408165,Stephen Oprychal +1489319,Laura Ainsworth +33267,Edward Chapman +66596,Vladimir Weigl +1118363,Fionn O'Shea +1125109,Jean-Louis Cassarino +138585,Desirée Smith +1888398,Erkan Esenboga +1038909,Didier Bienaime +1660697,Matthew L. Imparato +1254547,Seda Bakan +1509227,Brashaad Mayweather +87232,Bruce McIntosh +1837874,Todd Maki +108919,Chris Riggi +238065,Marina Kazankova +1754537,Matthew McCrocklin +1394358,Rimmel Daniel +64440,Chen Bolin +124382,Augusta Dabney +1106334,Stephen Shore +50250,Joachim Kappl +1677900,Katia Kieling +1674839,Jonathan Samson +62421,Lau Ga-Yung +137969,Greg Kean +545451,Jean Angelo +130485,Jess Lee Brooks +1754423,Manolo Gonzalez-Vergara +122535,Samantha Spiro +1345536,Jelica Vlajki +1851073,Elena Martínez +1298300,Ruth Bond +90514,Birgitte Hjort Sørensen +1672080,Taylor Dettore +1161085,Fruzsina Pelikán +81830,Gary Werntz +1071148,Mátyás Dráfi +1102265,Enrique Saint-Martin +117997,Dean Wray +1745406,Nicholas Delbanco +131660,Roberta Fiorentini +1502863,Mike Nikitas +1398197,Stephane Charbonneau +1672713,Stephanie Street +87186,Alexandra Barreto +1624623,Susan Chira +47424,Yelena Sanayeva +1397016,Chen He +1295462,Lee Yeon-Kyeong +268826,Sophie Forte +1042610,Hillary Goldhar +1501043,Boris Ventura-Diaz +1125735,Fred Herrick +939467,Nicolas Leroy +1221701,Franklin Ruehl +1330723,Tamara Stuparich de la Barra +141680,Fernando Lugo +184815,Jennifer Gibson +235311,István Hajdu +1154734,Francesca Piñón +1039679,Stephanie Young +1385592,Domenico Fortunato +814200,Arsher Ali +110617,Yousef Shweihat +117326,Ian Wilson +1172637,Fanie Zanini +1690528,Serena Poon +1585964,Jason Canela +103352,Richard Riddell +1006733,Tara Holt +30789,Peter Boyles +1190182,Valeriy Zolotukhin +1344887,Kees Alberts +1539150,Emilio Álvarez +83186,Max Lloyd-Jones +68368,Leslie Malton +1564560,Baba Ould Mini +174356,Jerry Summers +1243680,Andreas Stenschke +144826,Boris Barnet +1076268,Jukka Kärkkäinen +1158357,Shayne Farris +1573209,Sonita Alidazeh +1788169,Ashlyn Casalegno +1648749,Ricky Russert +1371439,Daniel Westwood +110759,Ari Piispa +82139,Catherine Hayos +1293918,Elodie Goulet +1057432,Lexi Fernandez +74304,Doua Moua +143595,Monia Chokri +1193858,John Graham Spacey +1454054,Jack Giddings +1489441,Annalisa Cochrane +938113,Mara Alexander +1126724,Anne Tait +125585,Nicke Lignell +1799342,Bella Camero +1903978,Jill Morgan +93790,Jamie Bloch +1111532,Mildred Van Dorn +125409,Zoltán Bezerédy +1172147,Daniel Zovatto +1672079,Alexander Murph +41379,Omid Djalili +146702,Tatiana Astengo +1208342,Krista Madison +1134282,Michael Bott +1107941,Agustina Muñoz +83526,Haruka Ayase +116637,Cung Le +1138158,Alexander Mehner +94797,Dichen Lachman +275820,Béatrix Van Til +1111694,Joe Schermann +1720434,Marc Comstock +454282,Alex McNally +1735574,J. C. Robaina +35069,Fardeen Khan +221670,Per Pallesen +1096415,Emily Hahn +81406,Paul-Ottar Haga +1150232,Dennis Staroselsky +50553,Elizabeth Fehr +1107185,Lucia Bodenizza +123515,Alex Karpovsky +1174013,Antonio Rubio +1295460,Hong Jin-hee +559281,Drew Davis +97465,Kyle Rea +1449407,Mike Pollock +1145677,Calvin C. Winbush +1232623,Paul Fitzgerald +98385,Chuck Vincent +894116,Paula Beer +146957,Kalki Koechlin +85195,David Loiseau +1816047,The High Hatters +1336860,Tatiana Luter +169257,Adam Kulbersh +53904,Johan Leysen +579802,Marie-Claire Pissaro +1285059,John R. Cumpson +1195790,Mette Marie Hede +116161,Simo Salminen +1579770,Phillip Boykin +1827457,Inéia Arce Gonçalves +1028460,Rio Dewanto +1268114,Patrick Sane +568682,Cornelis Vreeswijk +1192163,Napiera Groves +1377946,Nadia Windell +171955,Zabryna Guevara +1650686,Aaron Colom +101006,Jill Banner +133246,Leueen MacGrath +1521537,于正昇 +18809,Françoise Dorléac +1682514,Jim Sojka +954794,Kennedy Samuel +1871448,Bella Chernova +1289114,Ben Buckton +1098750,Ski Carr +225174,Semyon Furman +231931,Henrik Hjelt +32066,Nora Ricci +1178581,Wayne Sutherlin +1682759,Nick Waring +44100,Kevin Jubinville +147525,Dave Morris +1016977,Alicia Stewén +1661452,Carmen Gutiérrez +113261,Jiro Manio +55036,Paulo Betti +226740,Jun Toba +159485,Stephanie Romanov +127927,Zaizai Lin +1496297,Lina Franchi +1629645,Kong Foo-Keung +1117988,Ria Deloutsi +18770,Bernard Ménez +25958,Hubert Deschamps +1005046,Encarna Paso +582341,Birgitte Simonsen +78335,Paul Sloan +1097462,Paschalis Tsarouhas +21136,Michael Cristofer +128681,Igor Alimov +1396359,Mariano Mariano +1413782,Ethan Grabis +89177,Eiji Funakoshi +1063534,Gisella Arden +1323317,Cristina Ascani +1360579,Bernard Allouf +460802,Logan Huffman +1388485,Danielle Phelan +223483,Max Rüdlinger +1451595,Tommy Jessop +1704767,Liam Henry +112755,Philippe March +1882000,Flavio Sala +963946,Sonalii Castillo +1464599,Giulia Greco +439763,Ramon Revilla Sr. +227795,Bonnie Neilson +82192,Vanessa Haywood +1557180,Ding Wenbo +1204700,Jazmine Rivera +93566,Juha Veijonen +95682,Billy Ray Sharkey +240152,Helen Poon Bing-Seung +1110925,Michael Terra +142838,Ragıp Savaş +93193,Kamal Haasan +20591,Filippo Pucillo +574145,Emppu Vuorinen +238661,Ella Harris +1592931,Kimmi Melnychuk +1599267,Francis Attakpah +1115921,Takuro Ohno +99053,Ariauna Albright +1457866,Priscilla Delgado +997707,Lucas Evans +1476728,Juliet Cadzow +1098322,Tomoko Saitô +1494526,Rebecca Olejniczak +1150872,Kurt Dreyer +94391,Gregory T. Eismin +1231968,Andy de la Tour +58398,Jessica Harmon +1110548,Lee Beggs +1317397,T.J. Ramini +1404340,Gerald Pring +235921,Hiroshi Miyasaka +1879917,Andrea Colicchia +134365,Fernanda Andrade +1053940,Aaron Takahashi +1792537,Charles Poole +89499,Jonathan Hernandez +1419436,Do Kum-bong +58769,Stephen Colbert +1356803,Michele Franco +1630352,Shalen Hutchings +1174795,Marc Grapey +1898511,Desheng Zhou +117856,Robert J. Anderson +591973,Antonín Procházka +79244,Toby Keith +1818007,Addison Black +1189923,Srisak Boonsomrat +150673,Tim Holmes +225127,Blai Llopis +1154131,Sara Braunstein +1416154,Tita Muñoz +1781991,Bibiana Navas +143419,Malcolm Shields +1078372,Kadir Kök +27999,Jing Dong Liang +229396,Ruby O. Fee +1698783,Darcie Lincoln +1639352,Don Guillory +1064502,Bram Flick +1677465,Pablo Calva +51040,Sarain Boylan +64412,András Kern +40887,Riccardo Salvino +1671572,Johnny Tran +94428,Lara Grice +1199627,Pavel Popandov +553793,Sanae Miyuki +1327297,Sawyer Tanner Simpkins +1853883,Buddy Mize +1635351,Herman O'Neill +1239810,Masanari Nihei +931242,Louise Glaum +1155729,George Graves +68178,Bret Harrison +84369,Eugene Jarecki +1086321,Imre Vass +1481016,Ashleigh Rains +204676,Alexandre Varga +116771,Michael Landon +122648,Niall Greig Fulton +95568,Peter Watkins +1459145,Darren Dolynski +1054582,Cristian Iacob +54931,Benjamin Emanuel +1367903,Lecrae Moore +148803,Edna Mae Cooper +16479,Andrew Lawrence +13662,Mimi Craven +1201628,Yootha Wong-Loi-Sing +201783,Mairon Bennett +1650411,Giovanni Pucci +1317566,Ashton Moio +1316817,Josie Taylor +93971,Mayo Methot +49070,Pascale Rocard +1446344,Scott Medderd +1112245,Willem Voogd +1556292,Luc Dartagnan +110485,Peter Gwynne +1164472,Ivan Cândido +230975,Jeevan +86637,Pyotr Mamonov +6261,Otto Treßler +82119,Chantal Lauby +1026889,Ephraim Sykes +104331,Lewis Van Bergen +1709368,Jeanine Marie +91637,Jarl Friis-Mikkelsen +556930,Kim Patterson +975334,Narciso Busquets +223966,Franca Valeri +1063138,Johnie Chase +587830,Bob O'Connor +1534584,Homer Nish +1351567,Ethan Allen +24558,Laurence Côte +111767,Sarah Natochenny +102850,Fernand Herrmann +1489163,Tulaya Huntra +1502323,Vito Grassi +21633,Kai Lennox +1218199,Eden Espinosa +1185281,Shihan Hussaini +1752190,Sergiy Marchenko +1794830,Heather Bash +100126,Kōzō Shioya +1807469,Emil Nicolai Helms +198751,Jude Beny +81217,Sarah Lancaster +1301269,Dimiter Kuzov +1518917,Everett Meckler +105799,Audu Paden +1444469,Miroslav Krnák +1185279,Kalsang Phuntsok Gordukpa +25809,Shmuel Rodensky +108451,Diogo Infante +103084,Annabella Incontrera +62912,Hrothgar Mathews +137323,Winter Ave Zoli +226182,Anne Kokkinn +132905,Elba Aurora Talavera +1153569,Farah Zeynep Abdullah +1189038,Elizabeth Bond +1077702,Alex Monsky +1829344,Pam Levine +984078,Santi Ugalde +212828,Cheyenne Jackson +590241,Madeleine Geoffroy +1647128,Manuela Maletta +232660,Gigliola Cinquetti +348497,Harry Hines +1841525,Sheldon Lubin +582270,Yevgeni Serov +222492,Melissa Pace +1115140,Sherri Vernon +39657,Stephen Hawking +568028,Carmen Serrano +62147,Joey Zimmerman +1439708,Yip Chun +225061,Shawn Lee +574201,Vetle Qvenild Werring +1586696,Julie Bersani +1133330,Maximilian Dirr +52878,Lisa Banes +7804,Oliver Stokowski +1060041,Gianni Loti +1346669,Hector Dion +1293391,Barbara Dunkelman +1340322,Jason Johnston +140652,Tomasz Kot +1613244,Hunter Phoenix +1422517,Oakes Fegley +1569800,Jazmine Reynolds +555658,Shauna Rappold +1790366,Lucca De Oliveira +1528493,Kyla Smith +1054496,Yusuf Khan +39883,Jean-Claude Bouillaud +31282,Richard Topol +1718121,Kimberly Rose +137819,Heiko Hiller +1515572,Xandra Rocha +1108730,Jessica Alexandra Green +1353654,Beatrice Ilg +1842598,Jennifer Kowalchuk +65775,Toby Proctor +97991,Jack Pickford +82944,Rachel Kerbs +1461332,Nancy Ellen Shore +55567,Alexandra Paul +121360,Richard Pearson +1117076,Kerry Scram +55125,Juan Ferrara +1532536,Amelia Shoichet-Stoll +63917,Lisa Wilcox +24647,Katsuyuki Konishi +235023,Gareth Reeves +103842,April Monique Burril +1402877,Marco Columbro +1128806,Yosuke Hayashi +98635,Hannah Hughes +1011137,Michael Aloni +224945,Lello Arena +1070749,Darwin Shaw +144518,Lupino Lane +146527,Manon Andersen +1783269,Sean Brosnan +1707543,Daniel Brooks +232044,Joseph Domingo +58905,Dominic Zamprogna +77764,Saskia Burmeister +587906,Heinz Meier +1205278,James Norton +1088234,Fernando Heitor +1267386,Megan Rosati +1185970,Miguel Esteban +1184853,Jessica Allsop +1355111,Karina Bonnefil +1151242,Mette Maria Ahrenkiel +1148496,Mizinga Mwinga +1102164,Kyôko Mitsukawa +1182938,Lydia Yeamans Titus +1123487,Tiit Lilleorg +928020,Hanna Hedin Hillberg +210814,Rome Shadanloo +563918,Rikke Bendsen +24522,Michael Holden +179887,Gilbert Rosales +44474,Klausjürgen Wussow +42122,Carré Otis +1650332,Deborah Orazi +1289273,Duane Avery +1410299,Park Young-seo +1063893,Enrica Dyrell +278799,Erico Braga +1734175,Chris Patton +26282,Nicolas Cazalé +233964,Nicholas Ofczarek +1285647,Piyakarn Butprasert +1047648,Lyman Williams +1262554,Bernadette Chapman +213432,Brahmaji +36546,Alan Mandell +196446,Seth Foster +126986,Marco Messeri +99417,Christine Moore +1094788,Hassan el Baroudi +1309621,Denisa Andreea Savin +1503678,Destiny Soria +1394476,Darren Gallagher +1835263,Jennifer Mary Stanaltis +149370,Rolf Wanka +550166,Kishore +115536,Frankie Smith +183814,Jefferson Mays +98078,Elizabeth Kaitan +225986,Lori Richardson +1027208,Jean-Marie Durand +1085088,Robert Matthew Wallace +1428393,Braxton Beckham +1053827,Eddie Lawrence +1674638,Felix Soper +75540,Gillian Jones +98788,Giancarlo Sbragia +150223,Jimmy Clem +271798,Jack Jessop +1519297,Tara Thompson +1695654,Adam Margules +1810502,Lyudmila Kozlovskaya +929906,Jared Gilman +109649,Matt Stern +1784323,Jeremy Hollingworth +23528,Rudolf Wessely +1504486,Mélanie St-Pierre +1707099,Colton Ruscheinsky +167290,Mandy June Turpin +1695664,Joe Convery +1379940,Joel Adrian +1827740,Lili Lopez +105403,Gaku Hamada +1206146,Manny Ayala +1178704,Chuen Yuen +144310,Per Myrberg +543169,Wang Wufu +227800,Rick Maguire +57000,Anja Jaenicke +1245461,Joanna Brookes +1748374,Marc Bessant +1176107,Ryan Pope +587539,Helena Patočková +1799980,Meg Guzulescu +1299773,Chris Burden +1272979,Accalia Quintana +984837,Louison Danis +229608,Jayne Regan +1371251,Chris Soldevilla +35911,Patrick Bouchitey +1575431,Max Pfeifer +1359966,Leslie Lowe +86613,Francis Ducharme +34324,Tom Kennedy +1153830,Vladimir Léon +1383170,Ben O'Brien +584050,Evgeniya Presnikova +109737,Vittorio Brahm +30624,Donna Denton +228567,Mimmo Cuticchio +116005,Evgeny Mironov +232388,Melanie Hawkins +145264,Mark Taylor +1154469,Bernice Pilot +220295,Geert Van Rampelberg +17193,Adam Mucci +104368,Anne-Marie Frigon +228527,Kôshirô Matsumoto +1299273,Timothy E. Goodwin +40420,Jens Okking +240130,Éva Henger +968291,Zoe Carroll +1360221,Nicholas A. Newman +587208,Laura Berlin +110473,Luciana Carro +569894,Nergis Çorakçı +1598028,Francesca Golia +1759684,Anna Maiche +93996,Jang Young-nam +98634,Maggie Gwin +103613,Aldo Canti +164402,Steve Routman +1175134,John P. Gulino +567076,Bobby McLaughlin +101219,Heidi Hawkins +1797388,Gaby Hull +1397768,Martín Lombard +93646,Jonathan Crombie +1438907,Brendan Kalin +37728,Erno Crisa +1145374,Michael Gilmour +235385,Kôzô Nomura +1071195,Morris Unicomb +1784982,Sydna Scott +306116,Michal Yannai +1324777,Barbara Perry +1364693,Piotr Skiba +232115,Emanuela Grimalda +130844,Josh Dibb +1099828,Anton Enus +544569,Mohammed Lakhdar-Hamina +996219,Freedom Bridgewater +1496179,Pierantonio 'Noki' Novara +65731,Sam Worthington +1352758,Ariana Rivoire +929422,Rhandy Piñango +1707545,Bill Greer +1699504,Elizabeth Rowin +1033078,Gökçe Bahadır +1672977,Cal Brunker +588333,Joseph Williamson +1683125,Wendell Baker +10072,Teru Shimada +1253636,Nick Symmonds +1301653,Tracy Mulholland +290159,Doris Dudley +1233372,Jason Hoyte +70954,Luke Wilkins +1295604,François Ruffin +1356391,Tim Elliott +571188,Hildegard Schroedter +1381394,Chas Harvey +153611,Sandra Giles +20418,Jan Sterling +1112967,Raqesh Vashisth +1698392,Tymberly Canale +19821,Olalla Escribano +550114,Diego J. Martinez +11934,Heidemarie Hatheyer +1261473,Claudia Traisac +51519,Robert F. Lyons +1517836,Isabella Amara +62105,Kerry Condon +123513,Davie-Blue +86054,Razak Khan +1427312,Bridgette Cameron +949078,Roxana Chávez +567810,Marianne Deeming +1771785,Steve Barnett +89962,Emma Sehested Høeg +108114,Brandon Francis +1125219,Reavis Graham +1286655,Zen McGrath +1061942,Sveinn Ólafur Gunnarsson +1063896,Bakudan Kozo +1172672,Jackie Moen +1096185,Soranut Yupanun +1771572,Bonnie Cole +931963,Blu Yoshimi +1349338,Mustafa Haidari +1551922,Elmo Murray +1574911,Nicole Santini +1427680,Jessica Rothe +1885999,Pete Buzzsaw Holland +1373943,Michel Dussarat +1331800,Sebastián Blanco +1085115,Gary Mak +113286,Rebecca Jenkins +1332250,Sindy Espitia +1475557,Dida Camero +60749,Rumi Sakakibara +1289000,Ebba Toje +444420,James Thomas +120645,Nicola De Buono +205011,Michelle Pierce +104217,Claudine Beccarie +1700943,Jelani Cobb +1768256,Andrew Brent +86967,Kevin Lewis +1839565,Kaisu Vuoristo +88318,Edna Holland +1866928,Natalia Chakhovskaia +237355,William Layton +73995,Céline Vogt +1196405,Harald Schwenzen +1084810,Renny Arozarena +108858,Raimo Grönberg +106979,Anthony Harrison +34867,Laura Bro +227282,Einar Vaage +1867487,Alona Shauloff +105306,Jessica McManus +1430895,Angeline Appel +1850868,Jenyane Provencher +102016,Dorina Lazar +1347841,Valentina Malakhiyeva +1418651,Aminata Sane +992881,Georgia Wilson +84504,Norio Wakamoto +1891552,Jim Beck +145881,Chris Berman +1085150,Stephen Hill +1503294,Aaron Washington +1183508,Jiang Yi +1734960,Sadbh Malin +1018032,Thor Ramsey +569370,Quoc Dung Nguyen +229040,Rense Westra +1520912,Nadine Keseman +95394,Andrew Glen Rector +1759612,Josiah Blount +1862813,Patti Vailati +1668236,Sajjad Delafrooz +1288787,Alex Dobrenko +117260,Jess Margera +1528536,Igor Gotesman +1891532,Chris Mueser +938096,Miloš Timotijević +78604,Laurie O'Brien +185343,Patrick Burgel +1395056,Stephanie Koenig +1731961,Ruairi O'Connor +1730828,Kevin Sorieul +1012144,Shanyn Leigh +1707956,John Coory +1041618,Svetlana Tsvichenko +1279817,Imogene Wolodarsky +1707548,Leo Munoz +1646452,Chistian Jadah +1157936,Coskum Ayfekin +86244,Ishtiyak Khan +1076617,Kim Ji-mee +1320766,Dessislava Maicheva +102938,Donna Spangler +1559690,Mike Senior +1358765,Stevie Steel +1625131,Frédérique Cerbonnet +1226732,Allan Sherman +84128,Sabine Bethmann +12856,Joe Dorsey +1240830,Stacey Gregg +1791801,Trish Rainone +1607378,Stefano Patti +1200242,Genji Kawai +228887,Eric Forterre +1125663,John Truscott +1839577,Eero Salmenhaara +16066,Rex Holman +1068684,Xevi Collellmir +1696231,Patrick O'Connor Cronin +549060,Jerry Schuerholz +1254796,Ayesha Omar +567562,Phil Johnston +88469,Luca Argentero +1891528,Suzanne Yazzie +24787,Jacqueline Pierreux +1406676,Bob Schreck +1177891,Letícia Colin +1273701,Keiko Yumi +1129446,Hermelinda Luján +86836,Mariya Vinogradova +1439646,Marius Sonne Janischefska +1416300,Richard Lothian +1242112,Terry Jastrow +934840,Kumiko Watanabe +1179882,Maud Le Guenedal +1422917,Max Marx +93167,Rosamund Greenwood +1412942,Thabo Rametsi +1341648,Chadd Smith +19190,Dennis Haskins +1025627,Zoe Berriatúa +1905793,Simona Simkova +1390545,Andrew W. Johnson +1689226,Susan Terry +932680,Karena Ng +1869367,Lazare Herson-Macarel +1234886,Micky Flanagan +520561,Burak Yigit +1566423,Hamid Farokhnezhad +1641615,Alexander Dean Williams +1802971,Marc Anthony Thompson +1334464,Azeez Mohammed +76330,Karim Rasheed +1141591,Anne Müller +1768799,Suhail Nayyar +83847,Annie Grégorio +1841504,Mandy Kolensky +215225,Jack Quinn +1041212,Giancarlo Magalli +200376,Eddie Guerra +40164,William Job +1136865,Angel Wong Chui-Ling +1800985,Sean Hamrin +1153639,Eva Killing +1209879,Jenson Smith +648609,Eddie Chen +1685476,Lina Michel +1564302,Zbigniew Zglinski +1086558,Maxime X. +1458464,Manuel Noriega +551981,Issei Futamata +1224813,Haley Beauchamp +58797,Andy Cheng +1553055,Lachlan Roland-Kenn +1124181,Alla Popova +1062262,Stanislav Boklan +555020,Maiko Asano +93259,Achmed Akkabi +60602,Ron Bottitta +1509237,Elisabetta Mirra +1827450,Ademilson Concianza Verga +111837,Don Wycherley +1872172,Chuck Hull +121693,Pablo González +1592534,Julien Cesario +1519566,William Alan Coats +1399774,Josh Thomson +1765441,Kevin Kinkade +574071,Waclaw Adamczyk +1179848,Branca Ferrazo +41276,Karl Alexander Seidel +1518298,Lorraine Abarbanal +1367474,Jennifer Wenger +553817,Shingo Ishikawa +63073,Billy Murray +132923,Richard Senghas +1873604,Richard Kattan +1593199,Brock Harris +1421418,Franziska Una Dagsdóttir +97220,Kynaston Reeves +1055120,Udo Künnapas +213589,Andrea Runge +1415437,Johnny Stockwell +226235,Ottar Wicklund +31881,Enriqueta Reza +129313,Gordon Scott +1090076,Rita Klein +1667161,Moonlyn +1117908,Svetlana Penkina +1138179,Michele La Ginestra +91348,Thijs Römer +1669797,Cherokee Walker +1763864,David Nicholls +1434826,Charlotte Nicdao +20578,Jean-Claude Binoche +45364,Dawn Abraham +20548,Ruy Guerra +999636,Kari Hevossaari +56292,Zoltán Latinovits +87578,Albert Howell +1004601,Elliott Spiers +1545506,Deb G. Girdler +1117077,Connor Bredbeck +586824,Amélie Prévost +1014913,Pino Ammendola +1530273,Ruben Lundström +46450,Rudolf Lucieer +1892479,Marcelo Bem +23116,Leander Haußmann +590700,Ulrich Bettac +1224727,Lucy Robinson +98796,Frank Sutton +207003,Clinton Blake +1745606,James D. Paulis +235175,Isabell Gerschke +1147412,Hans Henrik Bærentzen +86554,Rohit Roy +84412,Jaden Spitz +276118,Madge Hindle +1125451,Laura Agorreca +83097,Adam Savage +62737,Lenore Thomas +1562081,Martin Nelson +102375,David Robb +1190331,Kimi Aoyama +583510,Claudia Marsani +62389,Danny Jacobs +1024619,Tony Taylor +78328,Julian Sedgwick +21144,Joan Pringle +231657,Tertius Meintjes +969412,Ximena Romo +153413,David Macklin +114928,Desean Terry +1464310,Eliza Coleman +137426,Gale Harold +97277,Ihsan Yüce +1648881,Paul Murk +1249928,Mats Reinhardt +970084,Tyne Stecklein +1359948,Stanislav 'Slava' Medvedenko +1408162,Jim O'Donoghoe +222340,Yuko Kaida +1231943,Deborah Moore +1402306,Chris Grahamson +1167990,Naoya Kusakawa +1197423,Carolyn Lee +1570877,Robert N. Altman +1812246,Siovhan Christensen +580204,Kikunosuke Onoe +196181,Ann Harada +101777,Julianna McCarthy +231856,Amber Bartlett +110662,Hideyuki Umezu +1195670,Oren Yadger +238260,Margarete Tiesel +198054,Al Ferrara +7314,Nick Park +1108724,Anthony Welsh +1824303,Adam Sef +147736,Jussi Nikkilä +138721,Dario Bandiera +225387,Nani +223083,Arja Koriseva +1411497,Harry Babbitt +1089650,Massimo Deda +28273,Friederike Kempter +1179688,Lewis Furey +1239478,Addison Bell +96487,Dermot Walsh +1086567,Saye Yabandeh +1828989,Aidan Considine +560033,Carin Swensson +1658348,Zeke Elizondo +1269540,Dilys Thomas +544513,Lyubov Dobrzhanskaya +257627,Mark Saporta +969332,Jacob Hopkins +1176993,Robert Johnson +1254620,Michael Blaiklock +1732065,Lj Klink +1848651,João Lucas +586478,Tatti Sanguineti +43648,Cas Jansen +1767210,Pamela Conover +20765,Lenore Banks +1863909,José Negreiros +1180771,Margrete Robsahm +1771579,Cameron Feimster +191507,Sandra McCabe +1392467,Phyllis Black +1504917,Sue Beattie +81145,Franz Xaver Kroetz +929089,Ranjan Grewal +100060,Susan Ruttan +1885601,James Braddell +49178,Barbara de Koy +126257,John Stead +1311495,Laura Bonaparte +1633867,Peter Ormond +1711173,Kola Bokinni +1656032,Ely Henry +1360388,Luis Cordova +138878,Stuart Culpepper +482503,Paolo Pierobon +1083128,Randy Mermell +1696921,Jodi Haynes +1548179,Christine Rodriguez +1475034,Suzie Haines +1841534,Caitlin Hill +1223496,Raquel Ascensão +23533,Zach Mills +548089,Mark Keyloun +86185,Enid Markey +1235307,Drew Garrett +201838,Luci Christian +98036,Eulalie Jensen +1704033,Behnoosh Bakhtiari +1254583,Jamie Dornan +555155,Shinji Nomura +8776,Claudia Gerini +1016502,Steve Nave +87337,Luiz Fernando Guimarães +138888,Kevin Colson +1797614,Juana Samayoa +236388,Vera Day +1353678,Chanon Santinatornkul +591301,Bobby Smalldridge +1336122,Ramdoss +582230,Andrey Bronnikov +1256546,Fūka Haruna +1538581,Tatiana Golykh +84411,Brendan Spitz +191921,Pat Petersen +62849,Tom Lenk +1151355,Alana O'Mara +205128,Mike Houston +1684337,Nora Jobling +95085,Robert Wolders +76999,Jess Weixler +584082,Mark Daly +1376415,Jeff Rubino +37696,Colin Lawrence +124871,Leea Klemola +83682,Jung Jae-young +1902068,Alessandro Bernardini +234520,Carlos Latre +928572,Scott Eastwood +134814,Rie Yokoyama +164,Lior Ashkenazi +1159345,Lucy Gervais +71208,Aline Küppenheim +110126,Younes Bachir +237166,Eric Bossick +1902242,Nara De Natividade +1474032,Turlough Convery +659502,Melissa Hellman +1315172,Doli Armena +244289,William Orlamond +1207253,Chris Mala +1295186,Melissa Tracy +1851868,Jacob Garcia +148249,Lewis Wilson +1444039,Andreas af Enehielm +1734252,Matthew Lowry +1694036,Simone Soares +54138,Manuel Zarzo +591135,Subair +935504,Ayush Tandon +1848659,Natalia Kreuser +154657,James Sie +1239053,Daniel Negreanu +1242992,"John F. Kennedy, Jr." +996617,Blixa Bargeld +543505,Jake Johnson +1480948,Francesca DeRose +1204517,Christopher Gummer +1718156,Ricky Gray +62919,Alex Zahara +1339348,Dainius Gavenonis +82055,Junko Takeuchi +1035406,Jack Packard +129985,Teach Grant +974270,Jung Woo +205521,Marcus M. Mauldin +1704663,Mary Shaw +1564557,Staz Nair +990514,Nic Sampson +228196,Thierry Godard +238528,Regina Myannik +1087773,Masataka Kubota +1234512,Thomas Roberts +50958,Sybille J. Schedwill +77660,Savannah Costello +1089162,Nadette Thinus +1331714,María Jurado +77088,Katharine McPhee +567993,Antonio Stornaiolo +1528095,Tonia Freeman Doussett +1640425,Fjokra +1371122,Frank Gladstone +559791,Irene Rindje +139150,Amy Seimetz +188982,Erin Fitzgerald +1034712,Loredana Simioli +89603,Charles Murray +45386,Mary Stein +1714270,Mariel Belanger +1210544,Amphaiphun Phimmapunya +1239414,Josh Wittig +1811119,Einat Tubi +971898,Matías López +1835269,Karla Scime +1140110,Evelyn Roberts +1470861,Daniel Benson +83351,Stephen Martines +1190668,Timothée Chalamet +1800031,Rob Harrington +45049,James Anthony Pearson +1483404,Kazuo Hinata +1513874,Riku Nieminen +1082358,Cassie Shea Watson +1611363,Jonathan Rauch +35158,John Mariano +572240,Maxime Kathari +222575,Edith Yorke +1086576,Lisa Hill +132894,José Meneses +1650139,Joan Kendall +1277477,Klea Samanta +1893383,Warren Sawyer +1153745,Murray Chesson +312870,Vineet Kumar +1654074,Marty Bufalini +1357300,Toby Moore +1511384,Heidi Herschbach +1256748,Jodre Datu +1467536,Elliott Larson +217759,Franz Roehn +1512190,Shawn Hawkins +55469,Russell Tovey +1835260,Heather Chadwell +589499,Maria Pia Arcangeli +57207,Tony Jaa +1334331,Kate Black-Spence +123256,Débora Bloch +1624934,Robyn LeAnn Scott +87256,Mazhar Alanson +625,Iemasa Kayumi +1033252,Aimee Mullins +30753,Barry Feterman +554633,Magi Avila +216785,Eric Davis +48406,Olivia Bonamy +35004,Guillaume Depardieu +1577027,Alejandro Cuello +79554,Christian Hincker +101923,Adrian Bouchet +85036,Minissha Lamba +153337,Benny Baker +98239,Andrea García-Huidobro +80185,Adam Korson +132933,Ramón Lozano +1631185,Chema Rodríguez +144792,Bruno Romy +1032660,Vijay Kashyap +1117924,Svetlana Andropova +117450,Betty Marsden +63476,Oren Skoog +17735,Mike White +168504,Conan Graham +236561,Ada Dondini +1117088,Patrick Gouran +1781524,Fergus Rees +82973,Shinji Kanai +230098,Charlie Trepany +1418518,Ben O'Brien +54717,Rakefet Abergel +93092,Anouchka +231243,Markéta Hrubešová +1546864,Kerry Howard +83140,Robert Whitehead +1583326,Peyton McDavitt +108726,Justin Smith +138145,Ann Ayars +554931,Zhong Yi +1578521,Patricia Ide +544312,Jana Hlaváčová +565405,Antonella di Marco +24440,Milan Peschel +556933,Tommy Bouvier +222307,Heikki Nousiainen +944870,Scott Owen +165630,Jonathan Brooks +211540,Jessica Parker Kennedy +5817,Livio Lorenzon +1394352,Frog Stone +2015,William Bakewell +1251975,Dylan Riley Snyder +2376,Urs Althaus +1031928,Abigail Schrader +5297,Bernie Rachelle +124628,Matteo Taranto +980193,Kristin Foster +8066,Katherine Ringgold +86672,Natalya Fateeva +146413,Danny Mooney +1273237,John Wilmot +1530272,Petter Darin +115011,Engin Gunaydin +124262,Taneli Mäkelä +1251119,James Lovett +31648,Dragan Mićanović +1782578,Jimena Alegre +113746,Chris Ivan Cevic +93934,Ron Carlson +37478,Wolfram Berger +1692081,Débora Almeida +1159596,Michelle DeVito +1021742,Mahamadou Alzouma +215913,Jacob Tomuri +71402,Andrea Savage +1094741,Pedro Merlo +1620982,Cherie Danielle +1534356,Flavio Domenici +1589524,Joshua R. Aragon +1238805,Floyd Patterson +1656065,Enes Sürüm +1123766,Vijay Sethupathi +966943,Nicolai Dorian +446511,Shakira +1849488,Miles Faber +1382323,Ludovico Caldarera +592399,Herbert Fiala +39863,Joachim Kretzer +1170118,Nigel Hogge +1657729,Raja Simman +226127,Ahmad Magdy +1068827,Surekha Vani +1243017,Cole Howard +1483420,Hiroyuki Satake +1189482,Varvara Vladimirova +1754422,Evaluna Montaner +1266503,Carole Bardsley +1604347,Monica Mariotti +1546955,Deena Beasley +120635,Fabio Grossi +1487152,Roger Cruz +1402303,Elliott Hanna +1778475,Mevlüt Demiryay +1886066,Belén Celedón +1296632,Shine Tom Chacko +566151,Dustin Leighton +582601,Özge Özpirinçci +109743,Abhimanyu Singh +1586411,Harron Atkins +77530,Hella Joof +55709,Darcy Donavan +102614,Guðrún Ásmundsdóttir +1295113,Paula Bellamy +1318290,Václav Štekl +1648783,Tan Srey Neth +1651416,Christopher McMullen +589722,Teresa Ruiz +1445197,Inge Molnes Heramb +1653000,Loi Nguyen +237169,Stephen Sarrazin +47355,Boy Gobert +95950,Marie Brassard +1374534,Ross Anderson +1209475,Dean R. Williams +230720,Alina Bulynko +1503848,Krista Kilber +195690,Ifan Meredith +44583,Ken Parker +1213704,Jan Francis +1544909,Matt Glynn +1528816,Margaret Jackman +571155,George Martin +296028,Arnaud Binard +1178307,John Dreher +1347935,Filiz Tacbas +141126,Duncan 'Dean' Parkin +1013156,Mikkel Boe Følsgaard +141034,Billy Magnussen +1478709,Armand Aucamp +1196969,Marvin Stephens +229424,Stéphane Gagnon +1335463,Wanda Badwai +1394443,Conor Fogarty +1678682,Helen Bertram +148616,Anita Campillo +1588870,Diana Bentley +1240920,Karl Lucas +1310869,Martin Watmough +111323,June Ritchie +1423080,Tomás Roncero +1355139,Rebecca Calder +8202,Matthias Brenner +106631,Betty Ann Davies +1870853,Arnold Arnold +1173630,Giorgio Biavati +1769124,Sivan Mast +77340,Heidi Dippold +1459356,Theo Geldenhuys +1891546,Joe Brienza +83498,Kenny Florian +114970,Jacques Castelot +1302196,Hussein Kandil +16096,France Nuyen +167139,Phil Abrams +35795,Isha Koppikar +1387596,Sebastian Hegmar +964758,Morgan Roberts +144956,Martial Bezot +1035194,Heida Reed +94064,Svetlana Khodchenkova +74156,Kelly Jo Charge +81316,Reid Scott +1315948,Jake Vaughn +1569985,Mike Tornabene +96022,J. Matthew Miller +163775,John C. Vennema +96054,Dorothy Mathews +1097799,Felix St Clair +14416,Robert Hays +36170,Daniel J. Travanti +1011209,Brock Patrick Kaufman +1188755,Joyce Feurring +1054651,Jean-Pierre Sanchez +1357921,Therese Lyon +1076802,Nik Goldman +100954,Gianni Franco +576223,Fabianne Therese +112574,Patrick Duffy +1298421,Tony Blauer +158977,Beeson Carroll +566835,Yelena Galibina +99811,Andrés Pajares +1191731,Costinha +109068,Juno Dawson +1846448,Asan Mazhit +1512786,Laura Londoño +549351,Hans Hoes +548120,Danny Morgan +6536,Loles León +1118346,Carlyne Fournier +1529913,Ellie Botterill +1089970,Marieke Heebink +1784651,Melody King +1776761,Bai Cheng Pow +1759668,Michelle Fonseca +1683858,Andrew McMichael +1835264,Cimone Drupman +1425420,Ruby Barnhill +1683834,Shea James +122373,Naoki Tatsuta +142134,Andrea Aureli +239715,Sergei Filippov +1113155,Constantin Chiriac +1841526,Virginia Davis +1035907,Darren Kent +20748,Lou Myers +1754598,Alex Grantz +1719890,Debra Sarrategui +227454,Alicia Vikander +1463664,Rockey Dickey Jr. +98333,Rose Ghavami +147778,Olgun Şimşek +1136696,Emil Almén +1794932,Tomas Martinez +588550,Daniel Renton Skinner +1781106,Vivien Wood +171029,Billie Allen +49562,Per Christensen +143593,Xavier Dolan +1381510,Mademoiselle Kithnou +544461,Ling Yun +1544738,Lynn Kennedy +107474,Arthur Angel +929726,Beto Coville +1648969,Jonathan Oskar Dahlgren +591429,Marek Piotrowski +27320,Christoph M. Ohrt +1391321,Fabian C. Moreno +1679,Nozomu Sasaki +560154,Svetlana Amanova +204419,Tommy Snider +1589148,Rebecca Harris +1504597,Jean-Marc Dalphond +1811525,Veronika Avraham +1753256,Cherilee Martin +173780,Susan Ziegler +34449,Ruth Terry +1353560,Onyeka Onwenu +108942,Brocker Way +1698109,Celeste Dodwell +1133834,"Tyler, The Creator" +1343614,Cristina Marino +1024845,Nahid Persson Sarvestani +1601503,Duangjai Hiransri +90848,Hugh Feagin +110923,John Potter +1427455,Adrianna Di Liello +1344350,Nicole Collins +80750,Mary Jane Bostic +1744117,A.k. Steppa +1356785,Whitney Rose Pynn +45313,Toby Adler +1419646,J.H. Torrance Downes +1124979,Will Collins +220348,Peter Yacoub +1863901,Luiz Valcazaras +1684549,Kevin Woodhouse +29602,Edgar Norton +1555019,María de la Riva +35435,Maja Beckmann +1457288,Elliott June Rogers +128230,Federica Cassini +1293073,Tulio Gomez Alzaga +237444,Mikhail Mamayev +282086,Barbara D'Urso +1679024,Marie Alice Sinaman +143506,Anna-Leena Uotila +1486488,Callie Hernandez +1385280,Gideon van Schoor +33321,Sam J. Jones +82142,B.J. Hogg +592329,Paul Chun Pui +1020981,Félix Germán +1709466,Lucia Ryan +591344,Grace Moore +1071383,Ophélie Montel +1194766,Carolle Drake +1328188,Emily Soleil +1451698,Frederik Wolf +1254586,Ross Philips +51729,Chloe Franks +1459818,Gavin Mey +1169491,Pierre Sénélas +150061,Christine Dunford +551475,Rob Heschl +1697807,Mari Angeles Nebrera +1697802,Pilar Montejo +1349730,Joanna Abbot +1848595,Randy Thomas +149512,Mimi Paley +1818041,Deanna Tryon +1835265,Gina R. Demczyk +1438879,Lauren Cleary +109255,Leonard Maltin +130083,Caitlin R. Kiernan +1650329,Thomas Fletcher Henley +1283040,Rick Vargas +1153029,Sofia Eroshevic +59077,Jimmy Carr +1461312,Ivan Goris +1891496,Mohammad Sharif Ebrahimi +37980,Michael Teigen +1352079,Francesco Campobasso +1111386,George Wright +60462,Peter Wingfield +240151,Sun Chien +230427,Jools Topp +84436,Dale Place +1449809,Yôko Takahashi +1871506,Silvia Tortarolo +1641546,Brooke Alexandra +572282,Annie Carol Edel +116924,Mahesh Babu +1185452,Donald McKee +1198309,Saige Thompson +45054,Orian Williams +1256036,Francesca Capaldi +1688645,Cheyanna Lavon Zubas +1400602,Patrick McMinn +150603,Albert Préjean +1255830,Darrell Fetty +281746,Anna Douking +942507,Bill Dance +2280,Clive Francis +106180,Carl Anthony +53780,Catalina Murgea +1512195,Sara Smidge Goessel +1195791,Lone Rode +1179879,Anne Charrier +87201,Paul Watson +79358,Joe Robinson +182201,Brian Fitzpatrick +1696152,Njema Williams +101476,Sandra L. Brennan +1185039,Angela Nicholas +35968,Pierre-François Martin-Laval +41062,Domiziano Arcangeli +27390,Carla Mancini +9275,Frank John Hughes +1760119,Mark A. Watters +937065,Jonas Hoff Oftebro +1894238,Primarosa Battistella +1190191,Efim Kopelyan +34332,Lew Kelly +147090,Elizabeth Davis +1539219,Pierre Verville +94075,David Soren +1187398,Ashok Selvan +208389,Tricia Collins +40975,Gustavo Re +1001781,Nihan Okutucu +131510,Al Thomas +92896,Ingrid Luterkort +685,Nina Kronjäger +1105573,Nuengthida Sophon +1179446,Adam Bogen +128400,Frances Starr +930215,Jason Burkey +1398200,Max Paradis +1767218,Joseph Geoffroy II +112277,Michiko Neya +1563605,John Taea +1344360,Scott M. Jefferson +116714,Juan Carlos Hernández +122663,Hiroshi Masuoka +1105673,Nick Saso +937175,Ron Barnhart +168675,Erin Cline +1651,Jean Constantin +28730,Jos Brink +143233,May Hallatt +1432555,Stevie Mack +92268,John Sanford Moore +1637845,Casey Frank +1204699,Nicole Janine +1492859,Menno Stijntjes +47664,John Turnbull +1525601,Olivia Knowles +1385644,Noa Zatta +223019,Carrie L. Walrond +97462,Pasquale Pinto +1599265,Noemi Krausz +239921,Paola Lavini +41255,June Havoc +81311,Jonathan Rockett +1434904,Yuki Iwasaki +1405926,Toru Nomaguchi +1759621,Billy Concha +1053374,Tõnu Saar +1204679,Konchen Carrasco +32101,Paul Amiot +156971,Johnny Ray McGhee +83826,Robert Emhardt +85577,Shahana Goswami +1058633,Peri Baumeister +42671,Helgi Björnsson +578502,Gérard Lemaire +1055272,Saša Latinović +1161042,Piéral +1723565,Giuseppe Cicciari +1820115,Willie Stratford +1676154,Vivian Full +1344662,Trisha Gorman +120638,Carlo Buccirosso +53485,Rose McIver +585965,Marie Féret +170804,Peggy Stewart +942880,Ángel Garasa +1674440,Arthur Hiou +127396,Stephanie Faulkner +1312168,Georgina Minter-Brown +1015822,Tokio Emoto +230944,Melina Lizette +131251,Dayton Knoll +1656892,Damrongsak Ruengsri +1165430,Jacki Kerin +149030,Hugh French +74502,Kristof Konrad +1115636,William Carroll +107516,Małgorzata Kożuchowska +1855571,David Balliano +1507489,Ben Gardner Gray +53761,Christopher Gorham +1001968,Jeb Berrier +1759661,Roseny Carrero +1657315,Rupal Pujara +1570777,Julius Brian Siswojo +1865498,Tyrone Jenkins +112322,Michael Yurchak +1660483,Florence Van +99744,John Blyth Barrymore +1349739,Erica Elmer +63205,Brian Lloyd +1418579,Choi Min-chul +1554383,Dave Johns +557255,Natalya Bogunova +992757,Prakasit Bowsuwan +1320065,Marta Castellote +1078833,Kong Yeung +1333666,Steven Hauck +567269,Jessica Brown Findlay +1098810,Jonathon Klein +1358760,Fiona Choi +1508659,Rachelle Bergeron +39977,Michael Michele +57617,Jeffrey Lau +1361876,Dominique Tipper +1039470,Bunky Jones +63670,Winston Hibler +1170147,Prince R. Gupta +80676,Jordan Nagai +1736738,Stephen Brodie +1060552,Ernst Brunman +1147461,Saqib Saleem +968660,Nicki Minaj +1042201,Kernan Cripps +1568025,Venus Ariel +1460443,Álex Martínez +1900954,Bo Bene +134662,Wong Chau-Yin +188334,Michael Kirby +1171510,Camélia Jordana +1704615,Brad Spiers +1656863,Ray Chase +1427540,Carol Tam Suk-Mui +1439854,Alberto Chicote +1196471,Andrew Church +40638,Guy Henry +1516082,Mackenzie Muldoon +131133,Trevor Noah +1284449,Luc Schwarz +85209,Meredith Giangrande +583635,Renata Sorrah +1116975,Bjorn Jiskoot Jr. +1411811,Johnny Skreli +1796432,Ronald Tremblay +1561256,Benedikt Crisand +1339661,Anik Shefrazian +1265891,Yang Xiaoyuan +1894255,Guido Agostinelli +1751757,Don Wahl +1001020,Anna Chang +1322769,Vladimir Blagoy +581072,Anandharaj +181270,Aletta Bezuidenhout +1869050,Eli Jones +935784,Tor Stokke +1344321,Alain Ngalani +1019254,Christopher Casson +1723659,Lawrence L.J. Hughes +1171679,Satish Rajwade +1728945,Essam Abu Aabed +24388,Claude Piéplu +1687922,Ron Centanni +1562080,James Cleverton +1650198,Lance Lemon +138892,Tania Martin +1073489,Álamo Facó +1192788,Naomi La +1676159,Casey Young +1193805,Hyubs Azarcon +1711367,Lucine Amara +96016,Adam Berry +113745,Sarah Farooqui +140411,George Douglas +1447731,Lillian Crombie +1780119,Saliya Kahawatte +141628,María Gracia Omegna +115978,James Thomas Bligh +59357,Teddy Newton +302412,Nur Al Levi +1499013,Robert Ramsay Collins +99128,Robert Southerland +88256,Joanna Litwin +1392535,Michael C. Mahon +593182,Jordon Hodges +565889,Ravi Babu +1364480,Varma Lahtinen +1204268,Nadia Niazi +116643,Marti Stevens +1149688,Lili Papayanni +1229467,Nichola McAuliffe +1388663,Justin Donahue +23360,Rosemarie Fendel +1057931,Hitomi Takahashi +77666,Anton Shagin +141961,Chad McKnight +93649,Javier Godino +1335461,Johnny Alves +77888,Carlos Juvera +1841673,Henriikka Salo +1156171,Trpimir Jurkić +1198259,Agnes Anderson +43975,Elizabeth Montgomery +1265282,Grant Doyle +60419,Vince Leigh +134384,Tamao Nakamura +106505,Lawrence Ryle +89933,Lupe Vélez +129233,Eyal Kitzis +1418994,Kelly Keto +1436277,Chao Xu +1700384,Ho Siu-Hung +1175543,A Sai +134673,Andrew W. Walker +1470725,Krishna Shankar +984055,Trevor Jackson +1834952,Stanley Lemin +2606,Tony Kgoroge +48119,Heinz Petters +1145050,Marteinn Þórsson +1732069,October Moore +1587633,Jaysson Reyes De La Cruz +40564,Andreas Windhuis +1031170,Jack King +1100393,Maaka Pohatu +1863898,Ivi Mesquita +230671,Lorella De Luca +14373,Zia Mohyeddin +1719998,Luke Gallegos +78326,Luis Arrieta +1363395,Jessejames Locorriere +186502,Alex Poch-Goldin +581082,Andrey Terentev +22738,Monika Lennartz +54127,David Spielberg +81442,Nancy Wolfe +1352567,Dan Mott +157753,Harry Peacock +1593238,Gamal Abdel Nasser +1286528,Carly Peeters +1392075,Marta Aránguiz +84263,Jun Ichikawa +591265,Krzysztof Majchrzak +1427401,Roman Gancarczyk +20676,Philippe Beglia +140342,Essex Smith +1587289,Asghar Semsarzade +1838596,Gwyn LaRee +154785,Mark Povinelli +189720,Kevin Parent +1088056,Alexxus Young +1665012,Sarah Middleton +1021686,Helene Millard +1433439,Paul Baxley +1200876,Isao Suenaga +64227,Brandon Trost +1759913,Valérie-Marie Chadelaud +1324628,Jeremy Neal +193734,Lisa Loring +1625819,Ana Galvão +1329070,Christopher Gareisen +40525,Maria Hofstätter +1782720,Steve Crest +1835240,Keith Hernandez +1568412,Christopher Severio +87912,Walter Crommelin +1503911,Victoria Emslie +177403,James Moses Black +1541357,Betty Suttor +236697,Paige Meade +1313151,Nyla Lewis +1650376,Jarosław Gruda +147773,Juhani Kumpulainen +1227918,Roberto Durán +1801120,Laurent Biras +50518,David Epstein +1523002,Peter Anthony Tumbaga +90572,Yukana Nogami +1064957,Srinivasa Reddy +1699413,Leopold Manswell +223334,Zoe Vance +118616,Robert Sheehan +57576,Alex Reid +1369329,Taylor John Smith +1707832,Julia Sen +1166752,Felix von Manteuffel +221809,Taylor Schilling +1753491,Marc Angelucci +1375242,Nathalia Acevedo +1076065,Rune Veber +1281129,Vanessa Compagnucci +1425325,Tracy Hutchinson +557805,Beau Brasso +226176,George Fant +1866643,Monique Daniels +1833803,Joe Sproulle +929508,Iftach Ophir +239231,Raimu +41356,Monic Hendrickx +1108967,Margriet Bruggeman +1283851,João Pedro Zappa +104619,Allie Moss +154857,Ziggy Marley +1101373,Oh Ji-eun +77347,Christopher Shand +1017597,Simon Meacock +226638,Leonor Baldaque +1475960,Scott Shepherd +18819,Þröstur Leó Gunnarsson +76035,Todd Waring +19537,Megan Fox +1169313,Kim Seul-Gi +1291255,LuLu Roche +1638426,Yulia Tushina +170252,Terry Ray +1428436,Rei Fujita +1501339,Li Yuan +1339119,Andre Koock +588688,Eléonore Klarwein +1334945,Sanja Burić +1809694,Adrian Formosa +89966,Liam O'Brien +1497759,Diana Patrick +128443,Jacopo Domenicucci +232471,Gunilla Röör +99264,Marina Neyolova +1568707,Jamie Ben Chambers +72453,Shôhei Hino +100905,Fernando Albizu +520398,Francis La Haye +1446330,Eric Cryderman +15956,David Soul +1186810,Korkmaz Arslan +97671,Luan Peters +1157087,Luke Matheny +1071607,Walter Murphy +126152,Jason Brandt +1392956,Joanne Bentley +981262,Jason Boegh +1127729,Wei Zongwan +71155,Stine Stengade +583490,Marie Fischer +1646463,Robert D. Morais +1818583,Bal Nagra +1248569,Iina Kuustonen +94906,Brandon Hardesty +1656872,Nakarin Triemmareng +1388181,Dana Powell +1814106,Guillaume Brillat +1624631,Brian Lam +1029102,Milja Heino +1615899,Gianluigi Ghione +1198148,Mark Proksch +109323,Tyler Anthony +1092211,P. Adams Sitney +1043068,Dick Billingsley +1349737,Andrew Samuels +223067,Ninni Ahlroth +1445755,Jan Andres +1663164,Lou Conley +970249,Amelia Meyers +1043350,Sandy Mansson +562640,Ekaterina Kopanova +1055099,Agnieszka Suchora +1283554,Hamze Bytyci +1096782,Tamara Yazbek Bernal +1314450,Vladan Holec +1775251,Siddharth Ray +1172108,Mckenna Grace +1352584,Deborah Sun +16031,Logan Ramsey +1166029,Barbara Worth +1385137,Emiliano Ragno +1121519,Harriet Minto-Day +133820,Serhad Can +1286725,Steve Donmyer +1549891,Harriet Yeung +115742,Johan Heldenbergh +1056612,Minako Yamada +1398012,Jackie Goldston +118426,Griffith Jones +85837,Fay DeWitt +156085,Stan Yale +86895,Svetlana Druzhinina +1405914,Bebe Cave +967160,Lola Casamayor +110776,Aku Hämäläinen +1399124,Timothy Leach +973385,Ross Lynch +70787,Kaniehtiio Horn +140352,Max Dalban +1432025,Mustafa Kırantepe +1193604,Jack Kilmer +134000,Gary Clarke +93548,Nina Usatova +131547,Jenilee Harrison +38989,Dirk Bach +2150,Kevin Greutert +587697,Melissa Sturm +1694309,Jasper Timm +1231859,Jim Lauderdale +1150904,Fanny Midgley +25298,Tammi Sutton +64498,Joyce Cheung +1146140,JoJo D'Amore +1024298,Chris Nash +1724681,Tung Mingh Nguyen +51764,Kent Smith +49892,Fernando Di Leo +1192372,Viktors Ellers +1503846,Yancey Wells +157817,Anya Lahiri +18065,Jimmy Nail +146472,Cody Darbe +1150552,Karen Lis Ahrenkiel +1511043,Richard Durning +1470854,Milada Zázvorková +929305,Jyonmyon Pe +1004776,Xian Lim +20730,Nursel Köse +1522822,Maria Debska +1103793,Susan Blond +159663,Kathy Long +114925,Richard Dutcher +975725,Frances Grant +1050852,Tamara Dragičević +1655891,Anjili Pal +1886302,Samantha Rushton +1762431,Evelyn Hendrickson +1809690,Ruairi MacDonald +120828,Missy Higgins +184296,Eva Fisher +1800447,Simone Liberati +544096,Sallie Harmsen +19765,Peter Stickles +1178197,Anthony Marlowe +1227099,Cameron Bender +1796597,Helga Backe +94020,Peter O'Farrell +130329,Ron Hajak +1015795,Victoria Johnson +1520751,Queta Lavat +102395,Reed Hollister +1734188,Ripley Voeten +227616,Ben Hiura +585717,Laurent Gendron +769308,José de Abreu +134497,Kerem Bursin +1728742,Marie-Jeanne Maldague +113652,Elizabeth Healey +13375,Hilde Sessak +1676637,Nathalie Armin +1707549,Loretta Munoz +1672707,Dylan Charles +133072,Tony V. +1537342,Karel Uhlík +118213,Dix Davis +932375,Diego Noguera +948520,Raul Brambilla +1390541,Aunna Abel +1719893,Glen Lloyd Hahn +116882,Lyndsy Fonseca +544990,Pragathi +1611154,Madiyar Aripbay +1676727,Grady McCardell +124273,Tatyana Tkach +1154053,Jeanette Dilone +1478376,Joey Fisher +572195,Yael Grobglas +1593378,Katherine Stephens-Miller +1084815,Paul Lambert +11935,Michael Janisch +537175,Carlos Estrada +1215402,Menina Fortunato +1079281,Cecília Guimarães +52974,Raghuvir Yadav +1333899,Ana Laura Loza +231875,Spencer Van Wyck +111910,Mihai Dinvale +1508579,Marianne Verville +1060185,Kamel Abdeli +79795,Shiloh Fernandez +1890105,Charlie D'Agata +543105,Ella Fitzgerald +1276951,Deborah Childs +5510,Inka Friedrich +1196079,Frank Braidwood +1050819,Tomoko Mariya +1490043,Bill Pittman +221985,Jamie Blackley +229426,Leo Putt +1434105,Randolf Menzel +1492327,Cameron Esposito +109438,Xavier Samuel +1782615,Hend Baghdady +1773021,Callum Cuthbertson +1618653,James E. Abbe +1519978,Monty Geer +937515,Mark Thompson-Ashworth +225692,Jeremy Irvine +1329373,Jeremy Akerman +230663,Andrej Lehota +1119449,Noelia Noto +939010,David Wells +1088202,J. Grant Albrecht +109787,Michael Showers +37495,Juan Luis Buñuel +1590856,James Hogue +1112874,Mihaela Sirbu +1219096,MC Lyte +1007679,Seána Kerslake +1079940,Mei Chen +1118194,Vidyut Jamwal +1696235,Ram Revilla +120453,P.J. Kelly +49914,Cameron Richardson +1215617,Felix Solis +32090,Roger Blin +552051,Michio Nakao +22856,Jaecki Schwarz +76094,Oscar Nunez +110019,Stephen J. Cannell +1057470,Jérôme Foulon +116931,Jennifer Pudavick +119667,Michael Brennan +91617,David Farrar +1151398,Marian Mansfield +1264621,Albert Coates +1670910,Ben Chisholm +1801204,Deb Hultgren +232142,Carlos Piñar +31879,Gilberto González +119000,Seishirô Kuno +80264,Damien Richardson +125368,Haumann Péter +159657,Judy Reyes +235767,Colin O'Donoghue +1421376,Kelly Mullis +1396353,Adolfo Losada +569895,Azize Tan +19819,Ingrid Rubio +1053405,Samuel Vauramo +1043347,Renuka Shahane +1405915,Patricia Squire +107153,Marat Basharov +481162,Krzysztof Skonieczny +988455,Rima Miller +1724691,Kader Loth +1404159,Jean Reiner +1106963,Bert Huysentruyt +146402,Alexander Nevsky +1872360,Asia Lim +1589833,Gloria Govan +144003,Bonnie Hill +1863907,Valdir Grillo +1746963,Jeff Ward +1475238,Gerard Miller +558459,Danielle Minazzoli +6087,Claudia Geisler +140665,Rana Jung Bahadur +966327,Wang Bo-Chieh +1322309,Akie Kotabe +1421106,Lola Jensen +1683833,Sienna James +1811518,Aaron Arefe +1684556,Tony Smith +232684,Molly Dunsworth +1719885,Marc Chamlin +1371523,Jon Spencer +62717,Rekha Sharma +1277225,Stephen Scott Scarpulla +1032810,Nicole Gale Anderson +1046524,Jeff Cameron +1163184,Jason Chan Chi-San +1603909,Poppy Delevingne +190921,Steve Boyle +1585245,Akiteru Ito +992880,Isabel Vernon +1882875,Patrick Murray +1819148,Tim Staples +1099009,Elain Del Valle +83223,Donnie Keshawarz +1763860,Justin Burrows +76698,Branko Lebar +224030,Ding Yuin-Shan +1326320,Klaus Peeck +103472,Luis Marín +186406,Alan Roberts +1373121,Edward Nolan +35224,Anndi McAfee +1567382,Олег Куликович +1886691,Madeleine Milhaud +931401,Marina Limosani +1437681,Rod Paradot +1446328,George Armstrong +1090690,Bilal Mir +130448,Nanou Garcia +1145285,Ivan Anderson +30788,Celino Bleiweiß +1029029,Brandon Auret +1466291,Agnese Civle +147269,Sergei Yakovlev +1870827,Jemal Gaganidze +1193308,Haden Kuo +1277053,Mo Idriss +24689,Carlo Alighiero +1511994,Roger Yeh +1262861,Anneza Papadopoulou +114712,Anca Radici +1681650,Filipa Gordo +1008489,Dante Cleri +1478271,Caroline Barry +585988,Sonia Infante +1075627,Bob Mason +100766,Sakura Ando +1173741,Choi Foo-Gwai +1356801,Sabino Civilleri +47134,Wolfgang Neuss +1388079,Winston Simon +228345,Thomas Klameth +1056213,Burhan Qadfir +1433910,Katherine Moore +1495097,Henry Shotwell +58998,Nikolai Volkov St. +143138,Alfredo Silva +128045,Nello Mascia +549051,Tom Griffith +556735,Hildburg Schmidt +234362,Reinhard Hauff +95372,Michael Cuomo +113549,Chantal Contouri +1195945,Wang Ban +1541356,Ngarla Kunoth +87221,Yavuz Bingöl +1116795,Richard Strauss +1531740,Kyllikki Väre +1211862,Adrian Pang +1632516,Brandon Valley Jones +72792,Oldřich Kaiser +1144092,Matt Johnson +113891,Rebecca Windheim +562922,Christian Keyes +1555291,Barbora Fišerová +11170,Tommy Noonan +108924,Arthur Dignam +937646,Amanda Jean Kvakland +1392849,Christos Doxaras +237970,Geetha +1185377,Mary Shelley +1545421,Seon-ae Ji +1633625,Zoltán Schneider +62171,Ellia English +239458,Kuniko Kashii +1042844,Elmira Arikan +173006,John Innes +164452,Alfredo Narciso +1505305,Jordan Spaulding +133067,Slaine +1820494,Carolyn Alise +1861524,Salvatore Morra +1440870,Joana Prata +1424905,Hervé Compagne +1544223,Sérgio Antunes +97367,Andrey Myagkov +233931,Joost Prinsen +225222,Patrick Uskert +1423306,Yoon C. Joyce +1412168,Edgar Justice +1039426,Charles Nix +963109,Tim Trobec +1082231,Oleg Dolin +225247,Megumi Yokoyama +1308809,Gary Retmeier +1195668,Shadi Fahr-Al-Din +1837873,Jenny Maki +543877,Xiao Yang +38246,Helene Thimig +1204261,Colin Blakemore +1398116,Nicholas Stewart +29899,Nir Shaviv +1600794,Semyon Sokolovsky +93211,David Murray +222888,Fred Engelberg +1047655,Brennan Taylor +1185985,Anthony Lumia +552397,Rocky Cheung +75125,Kate Bell +1718146,B.J. Grogan +224985,Channing Pollock +1134590,Sebastian Wendelin +160247,Susan Pitts +40477,Chris O'Dowd +1333429,Priyanka +1663672,Britain Dalton +144212,Manuel Vignau +161255,Barbara Anderson +582741,Mariah Buzolin +1306921,George Wang +1426410,Marc Pujol +237624,Meera Jasmine +1301978,Mirela Brekalo +928330,Kelly Gould +80608,Frankie Sakai +1361968,Dacio Caballero +1734172,Christina Koch +1478733,Erzsi Cserhalmi +111125,Zijah Sokolović +1041608,Aileen Pringle +1805197,Anthony Vance Pierce +1019756,Marjorie White +146713,Desi Arnaz Jr. +1396362,Marcelo Molina +1279769,Sanja Vejnović +1249300,Katherine Drew +141115,Max Parodi +1383391,Holly Earl +130193,Dusty Anderson +1697253,Kenji Yoshino +1790584,Guillermo Botau +1134443,Nicole Andrews +123381,Koreya Senda +1114246,René Jacobs +1026733,Djemel Barek +1190105,Tom DeNucci +1612445,Edward Killingback +1384110,Luzian Walter Bappert +178447,Jessica Malka +1225045,Elizabeth Bond +968218,Freddie Benedict +1630315,L.P. Pinson +593154,Lori Alter +1095720,Giulio Tomasini +19909,Josep Maria Pou +931362,Michael Wager +1002567,Chez Starbuck +1628686,Carlacia Grant +1331817,Alejandro Pérez +22186,Jophi Ries +1886448,Berta Pipó +1531589,Quincy Griffin +1566501,Luca Di Capua +1029130,Alla Sahakyan +1692112,Dolph Scott +1128309,Nick Bylsma +544260,Dana Medřická +1140994,Ng Hong-Sang +34244,Inez Courtney +48038,Harry Liedtke +1305782,Hamsa Nandini +74440,Nichola Burley +76107,George Shane +288230,Giobbe Covatta +1649447,Wasita Naree +1096801,George McManus +1330506,Jacquelyn Ritz +1287067,Mateo Lynch +74595,Gordon Michaels +223847,Mark Gil +557311,Gord Rand +1330207,Michael Mullins +1151393,Maribel Martí +114304,Yuria Haga +228763,Nikola Rakočević +225907,Heiko Pinkowski +1400838,Phyllis Applegate +1764644,Polly Humphreys +134220,Maria Paiato +1078317,Antonello Morroni +1011111,Mimi Branescu +98833,John Herrin +985086,Janna Vorobieva +1592928,Luce Vigo +1213603,Max Greenfield +1367103,Anthony S. Johnson +53376,Eric Peterson +20661,Tsutomu Isobe +20262,Tino Mewes +125381,Zsolt László +103214,Glenn Gyorffy +37815,Hansi Linder +143975,Yelena Shulman +1471556,Robert Novotny +207606,Alessandra Ambrosio +1739699,Yi Dong Hian +935002,Ioseb Gogichaishvili +1368956,Tom Maurice +95476,Connie Stevens +1270304,Harald Trangsrud +100789,Sidney Fox +1109320,Peter Fält +7443,Karen O'Toole +969687,James Connelly +1363769,Marlene Streeruwitz +587661,Tetsushi Tanaka +1190206,Donatas Banionis +82361,Kátya Tompos +73287,David Wilmot +1700417,Kari Kuuva +1273010,Kevin Vaz +1469926,Alexandra Noël +73907,Tara Agace +1511987,Michael Ruggiere +1153437,Naomi Krauss +121291,Burr Caruth +1548150,Pongsanart Vinsiri +1849120,Céline Perrier +1264221,Edith Erastoff +146382,Tsuyu Shimizu +1479334,Stein Bjørn +1316482,Rosey La Rouge +1266991,Yuli Fait +1293817,Onni Veijonen +1239264,Gordie Giroux +1153030,Martin Laue +86212,Rahul Bose +1805301,Kathryn Fischer +1477242,Tiara Ashleigh +1818039,Ross Rouillier +1562082,James McOran Campbell +1221888,Travis Willingham +195078,Tom Curtis +45290,Marianne McAndrew +18240,Charlotte Alexandra +1615300,Luke Bryant +239457,Mitsuko Asou +1602324,Fet Bamund +1721609,Ricardo Ewert +35542,Peer Jäger +1501793,Ondina Quadri +584357,Marie Payen +1383013,Joel Keller +1161232,George Sidney +1638474,Kang Rae-yeon +64549,Nathalie Jouin +236455,Tino Buazzelli +128424,Vittorio Emanuele Propizio +63080,Marvin Campbell +1162029,Renae Geerlings +1307581,Claudia Knichel +1173172,Jack Donovan +191443,Kelly Nelson +1315210,Klaus Herm +1393177,Noah Schnapp +1422455,Robert Brister +1524955,Grace Stottor +101100,Elio Jotta +1102270,Barbara Perrin Rivemar +1228264,Doran Godwin +585438,Suman Ranganathan +589175,Hildegun Riise +1286623,Afsaneh Bayegan +85176,Bridgit Mendler +1650121,Chasten Harmon +1613045,Kelsie Mathews +1851696,Greg Ryan +1161725,Lucas Reiber +239568,Richard Mack +1350666,Robert Whittier +1352332,Victoria Spencer Smith +49678,Judit Jónás +1487398,Marie Arbuckle +1615007,Benjamin Yuen +230572,Stuart Ashen +1793045,Sung-yeon Park +1503909,Raffiella Chapman +104216,Anita Berglund +166519,Len Doncheff +60399,Binh Dang +976293,George Wang +1236357,Gary Lasdun +120493,Pete Walker +1620979,Devon Terrell +167178,James Harper +1309637,Richard Forsgren +19062,Michel Duchaussoy +1427293,Woody Carter +1001709,Dallas Barnett +150072,Amit Shah +1568703,Jordanne Calvin +149829,Brandon Keener +1398173,Derek Rice +1579244,Kishana Thomas +1228485,Steven Mitchell +1078613,Beau Knapp +469759,Astrid Bergès-Frisbey +1207265,Paul Yates +977993,Tashiana Washington +40019,Meray Ülgen +112727,Apinya Sakuljaroensuk +114753,Frederik Brom +1273013,Anas Abdirahman +1702120,Alvin Lin +61606,Jean Bejote Njamba +1848802,Chad T. Wood +1735572,Brycen Counts +1283865,Ulisse Minervini +5923,Mike 'Nug' Nahrgang +227608,Bruno Marcil +103494,Bud Widom +1459147,Keith McCafferty +179267,Catherine Colvey +48495,Nika von Altenstadt +96513,Vatslav Dvorzhetsky +1611435,Lino Grech +1514243,Elisha Yaffe +977079,Gordon Devol +947231,Stefan Weinert +1348750,William Prociuk +35050,Henri Nassiet +1387158,Olga Frank +80864,Kimiko Yo +1650221,Darrick Claiborne +566375,Jo Jae-yoon +1568721,June Griffin Garcia +1378867,Ellie O'Brien +77282,Lee Seo-jin +35957,Sim +44163,Chris Wiggins +1112171,Charles Eaton +1401359,George Wood +46064,Bülent Emin Yarar +1205410,Marshall Gaddis +1339659,Hossein Sarshar +97468,Steve Seagren +1050916,Holger Handtke +98420,Lynn Lowry +1083308,Hiroshi Sugi +5570,David Warbeck +943523,Danuta Szaflarska +127558,Andrea Riseborough +1650382,Aleksandr Cieszerow +236439,Giobbe Covatta +1215664,Sayaka Isoyama +103219,Hettie Lynne Hurtes +1562563,Cai Lu +1579258,Inga Tuminiene +1185529,Sandy Chinney +1503721,Rogelio Douglas Jr. +945409,T.J. Beacom +31951,Pauline Melville +45634,Gary Kent +30830,Gustavo Rojo +1102435,António Melo +583222,Julien Rassam +1324297,Kaan Çakır +1192581,Jerry Leggio +1510020,Nam Da-reum +1176578,Darel Glaser +1202398,Christopher Sweeney +148415,Joseph Harrington +143665,Kirill Pletnev +95266,Rebecca Gibney +1410540,Meredith Majors +99014,Sean Serino +1231318,Giorgio Vignali +27882,Annet Malherbe +1362892,Assi Raine +63550,Tom McLoughlin +1818004,Tiara McKinney +1308125,Léon Arvel +1179657,Sebastian Martinez +1515475,Chazia Mourali +543687,Italia Marchesini +141642,Valentin Gneuschov +23625,Kathleen Gati +587904,Thibault Le Guellec +1392199,Maryum Ali +591153,Raghu Babu +115400,Robert Pike Daniel +1686,Takeshi Kusao +39794,Mikhail Gluzskiy +106249,Jeffrey Rogers +1763230,Phillip G. Carroll Jr. +1699796,Aurelia Riley +574159,Doris Monteiro +148363,Adithya Menon +79260,Claes Malmberg +1164663,Ira Tchigrinova +1272931,Henri Valbel +1725480,Tunet Vila +74523,Jason Ciok +1033712,Ginnie Watson +1593672,Park Hae-soo +1506243,Kayla Perkins +1880197,Joseph Breen +1867731,Courtney Roper-Knight +557778,Liana Blackburn +147882,Maud Wyler +227612,Miori Takimoto +77821,Danny Midwinter +1621967,Laura Marie Howard +1783169,Kjersti Østin Ommundsen +1354956,Maurice Hall +1864378,Matt Visser +1125626,Gert Jan Dröge +102577,Roger Rook +1433828,Mohai Tamás +1719902,Ysobel Villanera +582121,Ashlyn Drummond +87167,Jeannette Sousa +586220,Irina Feofanova +1338008,Brooke Kelly +1496908,Mate Gulin +84314,Keith Allan +1677478,Maxine Tucker +1037336,Jase Anthony Griffith +89038,Antony Carbone +128487,Hoang Phuc Nguyen +511138,Arne Gottschling +1845539,Jim Macie +72737,Veronica D'Agostino +1902105,Quinn Schmidt-Deckstrom +27468,Blanca Marsillach +567079,Joan Douglas +586371,Pierre Poirot +231674,Hadley Fraser +133472,Peter Lindgren +1422536,Lincoln Younes +1398114,Raymond Alexander Cham Jr. +73638,Helge Jordal +1784151,Abhishek Kapur +1033882,Minoo Mumtaz +1718143,Taylor Wilcox +1434017,Matthew Sim +1383576,Sarah Burkhardt +1036879,Felice Jankell +22743,Ulrich Thein +1046494,Kris Pearn +50625,Cristina Galbó +1567927,Vladislav Vetrov +1025171,Christophe Kourotchkine +38842,Hans Werner Olm +1561567,Neil Ashton +53430,Jeanne Goupil +1624097,Yang Xiao-Dan +10375,Cookie Mueller +1647203,Brandon Bowen +24243,Cathy Murphy +1569345,Dario Narducci +1265796,Brian Schaeffer +95042,Cameron Goodman +239649,Ureo Egawa +62507,Mihai Stanescu +1384003,Richard J. Danum +1221680,Rachel Quaintance +164361,Bruce Smolanoff +1613220,Evelyne Bonneau +94800,Vanessa Howard +60656,T. J. Storm +1070406,Phongsathon Chongwilat +1003061,Krystal Ellsworth +1029321,Asao Sano +1228880,Rodger Corser +1808859,Sara Gil +141526,Sierra McCormick +1187039,Samer Bisharat +579803,Clary Monthal +1483243,Fabrice Scott +1776747,Naomi Toh +1042750,Carmina Barrios +228794,Michael Berz +1156677,Ansgar Göbel +1654739,Karl Farrer +98275,Brittany Finamore +73946,Nick Reding +120130,Giulia Michelini +1623451,Desmond O'Neill +121487,Melissa Newman +1665820,Mary Scheyla +220236,Kathryn Prescott +83475,Helen Walker +181110,Brooke Anne Smith +1452741,Bob Loya +23534,Jonathan Potts +128003,Sarah Lieving +1635136,Mark Smith +1351396,Cay Forester +21609,Eric Pohlmann +31263,George Lynn +121638,Larry Mintz +1105793,Niesha Butler +1192366,Artūrs Putniņš +1696151,Jordan Israel +118364,Ashley Parker Angel +1886280,Ita O'Brien +1268971,Talon G. Ackerman +587953,Norma Talmadge +641165,Ram Mohan +125970,Sotigui Kouyaté +1694165,Eva Roelens +88918,Heikki Silvennoinen +1166041,Miika Ullakko +1304140,Broderick Boyd +122023,Carlo Monni +237405,Lady Gaga +194066,Nicholas Shields +240156,Ku Kuan-Chung +225810,Kim S. Falck-Jørgensen +1445190,Jacob August Ottensten +1521627,Duke Bannister +1898627,Giorgio Alfieri +113973,Natai Pauwels +217739,Nicole Dicker +92895,Mike Almayehu +1192162,Rani Goulant +1676156,Alexa Barajas +1381542,Alison Wandzura +1002642,Anselm Clinard +1552637,Josh Green +53281,Di Quon +1264827,Noel Deelen +53423,Sandra Ceccarelli +1599280,Pezhmaan Alinia +1022670,Valeriano León +221150,Tabrett Bethell +1013909,Joris Muzio +1055700,Ron Baker +71298,Bruno Giannotta +1179076,James C. Morris +543030,Lucy Spain +1561419,Mason Heidger +149793,Garrett Brawith +593044,Paige Jones +1035744,Valérie Crouzet +581278,Vyacheslav Krikunov +1038130,Mike Clifford +1026224,Cat Wilson +553047,Mitsuki Yayoi +1519548,Michael Nostrand +1342696,Nao Nekota +1475270,Jake Unsworth +1052106,Louis Tomlinson +1844344,Jeffrey Hoogenboom +1696905,Daniel Faraldo +127555,Dan Metcalfe +1531858,Can Yılmaz +65294,Don Austen +1522166,Julia Scarlett Dan +1384976,Thea Sofie Loch Næss +1753684,Buff Douthitt +76108,Kirsty Stuart +71794,Barry Manilow +1031784,Terrell Anderson +100572,Victoria Vera +1898243,Darko Kurtović +21316,Nestor Carbonell +1510146,Benedikt Hösl +272408,Damien Garvey +938430,Larry Reynolds +1754491,Macayla Botelho +12212,Matthew Whittet +939466,Ian Fonteyn +1673239,Jeff LeGore +1295597,Henri Mahler +1017270,Urfé Koupaki +1315952,Andrew Pirozzi +1120664,Troy MacKinder +121301,Bob Card +1647138,Terry Miller +994274,Victor Cavallo +1210759,Anouk Wagener +1848803,Tess Gordon +1339113,Katharina Boltz +1459144,Jane Craven +1159405,Sam Kanater +1816954,Camilla Thorsson +570935,Steinar Sagen +1667330,Robert Kuchenbuch +78814,Cheick Kongo +1647928,Philip Wilson +592082,Otto Lackovič +227187,Mark Meily +1059611,Carl Steppling +113690,Kunaal Roy Kapur +586916,Antoine Gouy +931358,Claudia Orozco +109076,Paul Roman +1883504,Михаил Пуговкин +37107,Walter Kreye +1450373,Michael Ning +188477,Stephen Brennan +1195363,Inez Newell +966053,Lorraine Nicholson +24485,Nicole Garcia +1567380,Елена Шульман +1523005,Claudine Najera +1037391,Turner Ross +175494,Melissa Clayton +7823,Andrea Sawatzki +168458,Daniel Boileau +1795349,Elizabeth Sokol +1168998,Helen Campitelli +1703702,Suma Zenabh +1860422,Olga Du Toit +227406,Concordia Selander +1784330,Vanessa Rubio +118302,Robert Roark +40997,Margaret Jahnen +559582,Éric Bruneau +1400589,Kerry Donelli +1417807,Friedrich Hartau +1863662,Miguel Pimentel +570706,D'Arcy Allen +965913,Cain Manoli +64015,Xaver Hutter +1574442,Nikki Duval +1605615,Vasco Palmeirim +932313,Eduardo Roman +1584938,Lisa K. Price +50745,Giovanni Cianfriglia +140875,Isabelle Keith +1187057,Leandro Daniel Colombo +1574238,Charlie DiPinto +147333,Carlos Alcantara +1650374,Adrian Zaremba +100462,Kristi Somers +1888501,Margit Lieverz +1472200,Jang Ah-young +1704057,Alice E. Mayer +58022,Bob Guccione +994271,Joseph Stalin +1695655,Douglas Farrell +1352324,Sean Landless +25819,Michele Placido +1519446,Robert Lubera +1819130,Andy Geller +90133,Akemi Okamura +1898242,Rade Bošković +1818966,Júlia Sabugosa +1016040,Evi Maltagliati +98714,Joel D. Wynkoop +1888942,Michael Huff +190884,Sean Bell +1656519,Wong Kai-Gwong +1262848,Gavin Free +147896,Ayano Yamamoto +15659,Marianna Hill +141658,Anne Kasprik +213896,Camille Bonora +1449406,Lauren Weintraub +1675206,René Tramoni +587954,Belle Bennett +177,Margo Stilley +1834957,Jim Davis +1415467,Zhao Rui +128176,George Buza +1434106,Liane Singer +146391,Brian Stepanek +182610,Kent Bateman +230601,Bren Foster +125624,Vera Kiiskinen +59752,Cengiz Bozkurt +1020045,Lee Colley +58322,Thando Walbaum +578332,Léon Zitrone +239582,Carmine Marino +1029085,Niklas Nemlander +550453,Dan Stulbach +1262228,Tiffany Lonsdale +228329,Niels Gomperts +1170945,Juan Patiño +1494862,Buster Wiles +1469805,Joseph Aguon Drake Jr. +125655,Maggie Shiu +994153,Frank Spano +61563,Jackson Hurst +580699,Marc Arian +1223324,Richie King +44637,Anian Zollner +564326,Shel Bailey +1399829,Astra McLaren +224732,Alicia Rubio +219769,Holly Willoughby +99917,Brian Singleton +140459,Rian Garrick +19490,Wass Stevens +179882,Toby Holguin +1327447,Joey McNamara +1210465,Chelsea Jenish +1762642,Joel Neff +1481412,Hiromi Mineoka +137818,Ivo Goldi +1519571,Theresa McCoy +560056,Arvind Swamy +1839839,Rafael Queiroga +1060475,Bonnie Bentley +1821498,Nayah Murphy +77913,Andree Moss +25649,Ayu Kitaura +99557,Josefina Jartin +150084,Patsy Marks +1516712,Seda Kulcu +97546,Govinda +1185917,Anna Keul +1120905,Chet Doherty +1173679,Hannele Majaniemi +1231874,Landon Pigg +165604,Marvin Brody +1662558,Tommy Buck +1521298,Sonalli Sehgal +1178587,Tetsu Tsuboi +179613,Edward Bennett +181481,Stephnie Weir +118911,Anthony Marks +1111991,Dominique Aveline +1031744,Àlex Monner +1745329,Nikita Volkov +1878321,Danny Binstock +543784,Peter Greathouse +591338,F.W. Schröder-Schrom +1380019,Stefanie Austin +1774101,Marianne Bayard +1223320,Tray Loren +110786,Jukka Anttila +1894999,Don Whistance +1412633,Susan Zareena +126352,James Spinks +98581,Suzanne Ager +1556234,Del Lawrence +1650385,Maria Sobocińska +101624,Natasha Alam +592749,Françoise Spira +1319185,José Goula +96805,Sen Yano +1387082,Sam Coward +579799,Marc Hélin +1695668,Deborah Greenspan +1399119,Marta Barrio +230676,Frank Oliveras +1376050,Adam Levy +128471,Massimo Marino +1673477,Siena Larsson +928079,Sierra Jade Sampson +110419,Toby Wallace +124305,Emerald-Angel Young +230761,Yusuf Akgün +132915,Belkis Ramirez +95360,Lisa Chung +147539,Daniela Silverio +1664326,Paz Villegas +1239768,Steve Marsh +77000,Hale Appleman +8178,Jin Au-Yeung +1476279,Andrew Ryder +1631630,Michael Donovan +81799,André De Toth +1486002,Aldina Teresa Bossi +137078,Ilja Prachař +1074078,Mario Maranzana +1313143,Craig Lemons +1093720,Alexander Newley +1766753,Adam Bloch +16725,Matthias Zelic +1211337,Owen Conway +24442,Daniel Zillmann +88381,Keith Agius +75720,Stephen Leeder +89512,Risto Kaskilahti +13622,Jamie Anderson +1039529,Chad Villella +24041,François Damiens +171243,Wil Horneff +1811849,Obed 'Bubb' Pickard Jr. +3198,Rodney Dangerfield +1473442,Kenneth Franklin +32421,Bibiana Beglau +83280,Tommy Fitzgerald +1842111,David Castellvi +99759,Shauna O'Brien +1455122,Nansi Nsue +70775,Hal Williams +1497343,Christina Simhandl +209393,Kirsten Hansen-Møller +1658132,Bertrand des Pallières +998278,Vivan Dugré +1498353,Gérard Jumel +1808636,Sarah Fearon +28817,Dagmar Patrasová +101864,Vikram Inamdar +1167608,Nattapong Chartpong +56465,Benito Pocino +85924,Vincent Piazza +1617451,Mahmud Shalaby +979618,Hannah Cowley +28769,Vsevolod Sanayev +154000,Essence Atkins +1364346,Slate Holmgren +1212459,Suanne Spoke +209225,Ellery Sprayberry +373213,Aleksandr Ovchinnikov +1385109,Kristian Fjord +223636,Misato Tate +68501,Sean Higgs +153996,Jeanne Mori +1195707,Brent Neale +1759915,Chloe Chavigny +1172458,Jacob Tommila +1177343,Árpád Gyenge +308771,Raoul Marco +1062463,Rhian Sheehan +164882,Gerald Peters +1720650,Kevin McNamara +60720,Laura Ward +144462,Alexandros Mylonas +126716,Amber Kuo +136411,Osiride Pevarello +1658341,Tomas Elizondo +1028331,Ellie King +1377693,Jonas Hien +53067,Karen Chilton +1869238,Andrei Kostrichkin +63368,Sean Markey +1047269,Gordana Pavlov +932695,Olivia Alexander +22016,Vladimir Kolev +1709651,"Javon ""Faz"" Johnson" +568728,Maria Mashkova +98358,Nadia de Santiago +1146042,Xavier Capdet +33708,Antonio Sabàto +1827452,Fabiane Pereira da Silva +1209922,Jordan Alan +1277581,Jacob 'Stitch' Duran +1648778,Pisey Hak +1073181,Brigitte Christensen +62714,Bryan Genesse +1521612,Tosh Greenslade +1493736,Kerry Sims +78077,Clarence Nash +1583092,Jasmina Polak +105068,Mary-Robin Redd +1650373,Wasyl Wasylik +1511976,Heather Merkel +167831,Julian Ovenden +1339650,Sedigheh Kianfar +941482,Aditya Pancholi +1709904,Jean-François Regazzi +81174,Aan Jing-Kwok +1174701,Ma Kei +1251197,Nathan McMullen +132721,Cinthia Burke +1707948,Brent Albon +18347,Tonea Stewart +35253,Marc Dudicourt +1764169,Eddie Underwood +1085818,Viktor Argo +83225,Colin Egglesfield +1182867,Arthur Vaughan-Whitehead +209658,Desmond Barrit +1859551,Andy Kidd +1750910,Markella Pappa +1604099,Evander Goodman +1591373,Choi Young-sung +433309,Paquita Rico +586521,Rob Cotterill +1493400,Daniel Bargueño +1246284,Gay Talese +1766050,Stephen Clegg +1696230,Issac Ryan Brown +555156,Natsumi Sakuma +59755,Neil Hopkins +1621146,Benjamin Donlow +83172,Somchai Kemglad +117145,Pat Conway +6864,Kirk B.R. Woller +1503296,David Brown-King +100057,Elvire Audray +1261683,Mitch Ryan +1891326,Loredana Flori +1243537,Caroline de Bruijn +1617453,James Harlon Palmer +231289,Jerry Leon +160588,Lester Fletcher +1426365,Alexis Rangheard +61777,Andy Whitfield +1207891,Kenni Kinsey +1820216,Marissa Ghavami +933053,David Laurin +939582,Tatyana Kolganova +15599,Antonio Durán Morris +119421,Matt Cohen +1179653,Mayra Matos Perez +1563623,Aoife King +223619,Paolo Ruffini +1795086,Joey Greer +979834,Marlowe Peyton +240544,Pyotr Shcherbakov +154331,Jamie Kaler +1707882,Jana Wilkes +141672,Tariq Ali +94883,Patrice Robitaille +544199,Michel Barbey +211020,Geert Lageveen +1427291,J. Herbert Kerr Jr. +1562108,Noor Dillan-Night +138396,Claude Bessy +1770252,Carmen Dollard +125708,Ha-jun Yu +207491,Melanie Scrofano +1363052,Elizabeth Conboy +1663870,Nikolett Takács +141181,Jonathan 'Lil J' McDaniel +90137,Nobuyuki Hiyama +1837298,Tyler Buckingham +1643968,Michael Kranz +1516697,Joshua Thurston +21235,Alberto Lionello +125318,Emma Randall +95015,Anthony Collins +1650251,Micky McGregor +297502,Cote de Pablo +1878955,Pietro Manigrasso +1296726,Tutie Kirana +102893,Julie Grundtvig Wester +1134505,Wong Ching-Ho +46452,Leonard Lucieer +1359366,Julia Enriquez +237623,Cristina Gaioni +147183,Alfredo Pea +1179389,Edwin Finn +1429057,Martin Mill +1518244,Westbam +1194709,Hille Beseler +1417466,Jorge Gómez +1130510,Ella Ballentine +56383,Kelly Reichardt +1518599,Yang Lin +927730,Boris Hvoshnyavskiy +144821,Vsevolod Pudovkin +83396,Jane Frazee +160486,Al Hansen +1498234,Saila Saarinen +1386310,Kyle Hoover +146464,Marco Giallini +1844332,Curtis Barnott +68163,Alfonso Postiglione +1441487,Thomas Hwan +1448094,David Lee Garver +106671,Bob Skidmore +42325,Audie England +1864,Jenny Elvers +154778,Jonathan Joss +1232324,Pippa Black +1898238,Milan Nešković +1288009,Manya Gupta +4893,Clem Cheung +979449,Sonia Couoh +1629010,Shaun Romy +230078,Vincent Nemeth +496410,Devin Kelley +929435,Frank Rivera +1560380,Erica Tremblay +972046,Garrett Backstrom +1749867,Ire Wardlaw +298703,Olga Arntgolts +56091,Jeremy Sivits +1737807,Dayna Clark +560030,Elof Ahrle +214193,Bud Collyer +1687411,Erkki Saarela +54948,Ursina Lardi +1509232,Joseph Angel +15085,Ole Thestrup +134607,Stacey Roy +147102,Gonçalo Waddington +1765663,Neil Elliot +9824,Diane Kruger +107625,Mario Pupella +1170150,Mohena Kumari Singh +42721,Saxon Trainor +1362208,Stella McComas +120134,Gigi Angelillo +1738110,Oscar Rus +1584998,Natalia Fedner +7686,Judith Evelyn +545520,Sukhwinder Singh +128626,Katherine Wilson +932887,Mairi Hronopoulou +1464650,Dafne Keen +1753560,Carnell Smith +1427158,Yau Lung +1801193,Shylee Sagle +1738367,Camille Davis +1877996,Sigelfrido Rossi +1827934,Dianne Oxberry +95389,Rebecca Petro +7884,Daniel Gerson +1640548,Rin Honoka +1594798,Sharon Alexander +129692,Bob Swaim +1574428,Jared McVay +1313135,Scott Jemison +95777,Bill O'Reilly +198133,Thomas Craig +52614,Tanya Boyd +265904,Charlotte Arnold +1315418,Aleksandar Mikić +1283558,Thora Kleinert +1538984,Jang In-sub +1529017,Rhonda Johnson Dents +1195189,Thurman Scott +147152,Biagio Barone +1787175,Derek Givens +94324,Johanna Hofer +213083,Lara Pulver +11765,Richard Grove +1364655,Georgie Grieve +1107944,Pablo Sigal +1764361,Steven Fleisher +108,Peter Jackson +1687768,Vladimir Tereshchenko +1706105,Stephen Thompson +1700949,James Kilgore +544683,Théo Fernandez +1392469,Margit Echols +223069,Hellen Willberg +534831,Eric Defosse +1272217,Marcel Reluctant +1650394,Serhij Bachyk +1322689,Katarina Garcia +124558,Jane Cowl +1592945,Sherpa Macilu +235003,Antonio Cornacchione +143017,Frederick Weller +32585,Walter Giller +127353,Beverly Adams +1309624,Aurora Garofalo +1381295,Anthony Konechny +79991,Stephen Kunken +1117990,Ivan Martynov +1384815,Shirley Tregre +125603,Hannu Kahakorpi +122814,Yeung Hung +1588477,Inga Salkauskaite +62311,Joe Mari Avellana +1484502,Mick Coulthard +1745551,Laurent Couson +97466,Bertrand Roberson Jr. +1469769,Melissa Papel +48572,Jan-Olof Strandberg +1221459,Ashley Taylor Dawson +39298,Margarethe von Trotta +938921,Kyrie Capri +1881187,Harald Höbinger +1180374,Hanja Kochansky +1211897,Chen Baoguo +85033,Paresh Rawal +1371383,Tyler Craig +937600,Yannis Baraban +110018,David Lipper +1696399,Maruja Fernández +1351681,Lachlan Woods +81142,Derek Anderson +119169,Danny Brainin +29430,Bill Vanders +1220099,David Burke +1518859,Flemming Ytzen +23383,Leïla Bekhti +66224,Charles B. Pierce +1512026,Ra'na Azadivar +1292482,Edward J. Clare +1488128,Kainaat Arora +592094,Selim Naşit +1334014,Ellie Schwartz +1497224,Paloma Blanco +1636507,Gabrielle Gardner +72664,Franco Angrisano +1445749,Ludger Bökelmann +124318,Emily Corcoran +82313,Andrzej Chyra +1055695,Jayne Smith +1470726,Shabareesh Varma +3279,Francesca De Sapio +1208277,Katherine McGolpin +1630317,Jadarrel Belser +558879,J.J. Banicki +932523,Gaspard Proust +1369024,Bianca Kronlöf +1705792,John Crow +87445,Mia Serafino +61987,James Morrison +32043,François Perrot +131781,Adelaide Kane +1127914,Erjon Mani +566708,Yelena Shanina +584233,Alfredo Adami +134180,Alyssa Diaz +1067604,Dylan Smith +183587,Gene Sheldon +140091,Tamara +152289,George O'Hanlon Jr. +936234,Jimmy Broome +84224,Christian Serratos +1324161,Cinda Adams +80154,Blake Ritson +1367222,Ben Urie +1055740,R. N. R. Manohar +1089517,Edwina Elek +936990,J. Michael Tatum +1058078,Andy Gathergood +1162483,Pattie Mallette +1200621,Mustapha Ture +1394308,Eko Fresh +1444195,Chris Schellenger +588958,Bruno Monsaingeon +1140633,Jamie Atkins +1891140,Veronica De Silva +129507,Ryucho Shunputei +1324773,Clara Langsner +1462357,Salvatore Campochiaro +1680433,Andrea Dora +1361558,Berryn Schwerdt +142590,Professor Lamberti +1647558,Jennifer Kersey +576084,Joanna Vanderham +59219,Kyle Gallner +1604718,Agnieszka Jaskółka +992276,Daisy Lewis +589038,Odile Michel +1489161,Pramote Keawchan +1199478,James C. Gentry +1133986,Yeung Chi-Hing +40660,Malcolm Sinclair +1622074,Tioreore Ngatai-Melbourne +1753368,Lorenz Arnell +1380887,Abdou Boukefa +1199024,Bharathi Vishnuvardhan +79025,Don McManus +1099170,Annika Marks +1038364,Heather Conforto +224964,William Edmondson +1174520,Giovanni Attanasio +1090177,Darla Deans +1849123,Laura Dallo +1495088,Robert Alan Barnett +255745,John Garrick +1698873,Mckayla Twiggs +226186,Trond Kverno +101798,Victoria Snow +127237,Ching Kuo-Chung +1144866,Julia Braams +1813533,Stacee Mandeville +1503906,Rufus Taylor +1253424,Claudia Liptai +1119919,Dinos Iliopoulos +1871368,Lino Musella +16726,Ellen Schlootz +1512186,Melissa Nyenhuis +115535,Pam Helton +190049,Jacklin Webb +1070388,Carlo Boszhard +4771,Aimee Mann +46393,Roseanne Barr +101131,Pietro Genuardi +1407899,Alisa Harris +56397,Brasse Brännström +1686927,Tony Fennelly +1709644,Drevon Cooks +117739,Bruni Löbel +1663953,Shane McCaffrey +928339,Mike Fincke +235133,Alon Dahan +1502439,Bern Collaco +21995,Ingolf Lück +135621,Marilyn Jess +5925,Joshua Peace +968968,Tim League +299644,Carlos Gregório +1722990,Alexis Nichole Smith +1156243,Kylie Hutchinson +1197824,Mark Greenstreet +1319530,Chelsea Turnbo +29847,Mariya Mironova +1845974,Johnny Wyne +48044,Karl Harbacher +31296,Norman Wooland +150921,Martine Vatel +1720855,Andy Fernuik +28482,Peter Copley +83552,Mark Frost +1021528,Devin McGee +1896145,Rickey Castleberry +223280,Caleb Campbell +1123855,Ekta Sohini +38501,Isabelle Sadoyan +188212,Elston Ridgle +1734184,Shyan Tonga +1839928,Lais Moss +1504764,Nils Holst +1187406,Karunakaran +26683,Gerrard McArthur +965413,Jason Cermak +1424580,Walter Bankson +44257,Constantino Romero +589242,Krystyna Stypułkowska +115210,Mauricio Dayub +117901,Robert Vattier +927847,Marjan Faritous +82869,Toshiyuki Nagashima +1030277,Asami Usuda +125587,Santeri Kinnunen +1301697,Alexandra Anthony +1326440,Bianca Bradey +1026727,Denise Blasor +210485,Liam McMahon +88819,Diane Gaeta +114189,Catherine Hansson +1477356,Ellen Ekjord +32411,Stefan Rudolf +122761,Tainui Callaghan +1286421,Moon Seo-yeon +91255,Shelby Grant +1442869,Kevin Swierszcz +1784679,Michelle Stevenson +38161,Louis Waldon +566382,Arnold C. Waterman +1880591,Matteo Scalzo +1254111,Aliana Lohan +1516708,Alexander Alberts +1085652,Shelly Shenoy +1367185,Shaun Patrick Brady +183016,Dalias Blake +239047,Tomoko Umeda +1384536,Janine Parkinson +197477,Ward Ramsey +1829166,Christian Audi +1178212,Peppe Quintale +100849,Michael Garfield +1187643,Terumi Hoshi +1842182,Christina Cacic +1178916,Christopher J. Domig +1256710,Flora Nicholson +206450,Will Triplett +1048704,Flavio Medina +1507337,Colby Arps +109507,Byron Pang +1153722,Lucia Ragni +144074,Juleah Weikel +1714881,Horacio Cerutti +1057911,Kelly Bohanon +1215416,Alexandra Lydon +1621144,Ocean James +46274,James Thiérrée +239302,David Knight +123820,Kim Sang-ho +1838949,Jasmin Wisniewski +1888492,Mina Akkus +1741834,Kathryn Gerhardt +31208,Don Megowan +234637,Milagros Leal +1077848,Kristjan Markersen +52859,Joe Drago +1801267,Nieves Cabrera +1732263,Andy Allo +1084891,Sheena Lee +1347063,Sarah Campbell +940168,Cesare Gravina +223072,Heikki Kuvaja +1192362,Inga Alsiņa +188244,Pamela Stewart +2728,Barbara Valentin +142258,Kathy Rice +76068,Michael Dorman +1333571,Coby Batty +1561285,Antonia Ribero +1251087,Minty Lewis +1381955,Iris Ashley +216294,Lewis Hamilton +133215,Claudio Gioè +83146,Enzo Cerusico +1196298,Radha Seth +1381396,Raven-Danielle Baker +1266053,Derrick Carr +1192855,Pat McNeely +12524,Chris Carter +1837337,Tommaso Maria Neri +1376416,Rikin Vasani +1129184,Carrie Scott +1476096,Mario Ceara +1026959,Nicola Rignanese +1217400,Pauline Drake +47401,Drewe Henley +142965,Maria Isabel Lopez +137447,Ivo Uukkivi +1506902,Grace McPhilips +31533,Allan Kolman +1144871,Charles Gross +1361063,Sam Fuhrer +1286542,Lee Schall +1170115,J.A. Seazer +59900,Svetlana Ivanova +1829162,Soultan Saladin +83973,Enrico Macias +1156306,Vilius Tumalavicius +18818,Tómas Lemarquis +1066309,Ryan Dee +50041,Leopold Hornung +67707,Angela Lamarsh +1574335,Alencier Ley Lopez +1267381,Christina Marie Leonard +173785,Michael Mack +79255,Marie Robertson +548610,Chiang Tao +1495069,Will Cuddy +1862602,Ruben de Freitas +50558,Peter Wall +1746880,Ricardo Vera +1886750,Dorota Lis +237638,Vijayakumar +190936,Jason Knight +14434,Georgia Hale +226551,Alba Parietti +235853,Regine Redwing +27173,Bruce Purchase +89034,Budd Buster +82732,Mohanlal +212403,Brian Berrebbi +205360,Phil Vassar +1646276,Massoud Zand +101167,Melissa Stone +585782,Thomas Galasso +1547784,Michaela Horká +130012,Nicholas Hannen +568024,Alejandro Gomez +63756,Maria Elisabeth A. Hansen +1017200,Vadim Spiridonov +1042362,Patrick Griffin +1695660,Alex Burris +46710,Eduard Marks +1108578,Iwao Yoshioka +1227283,Deacon Jones +132892,John Paul Leach +1169120,Charu Rastogi +41005,Regine Burghardt +29348,Michael Werner +68667,Solvi Stübing +145311,Mounir Margoum +1182598,Hayley Squires +521564,Blake Anderson +555748,Natalya Khodus +1193048,Ronan O'Casey +1274509,Katharina Damm +106217,Jason Alan Smith +1182595,Shonn Gregory +1171394,Jean-Pascal Abribat +1426494,Madison Lawlor +1362170,Samantha Mills +122763,Rajvinder Eria +931244,Jack Hulbert +274577,Jean-Louis Vitrac +1886627,Ursula Martin +588764,Karel Novak +1290924,Ceasar Cavaricci +1033169,M.K. Raina +1656604,India Gaythwaite +236947,Shirley Bousquet +143425,Aaron Tveit +1477955,Sean Panting +133846,Andy Fenwick +1278816,Mikhail Vladimirov +1357560,Tony Frazier +566740,Djédjé Apali +101990,Nina Soldano +930045,Taran Bajaj +562156,Gilles Bellomi +1520907,David Errera +1623845,Vadim Ganshin +1164005,Jean-Paul Jesstiece +25005,Christoph Hofrichter +578533,Björn Berglund +578782,Michael Cory Davis +1474984,Jessica Stone +932809,Giuseppe Giacobazzi +1454837,Claire James +455033,Matt Shively +1390540,Becca Ingram +1064196,Bikram Saluja +1355738,Sarodj Bertin +1174160,Frank Evans +1158465,Clémence Charpentier +84795,Bobby Zelsdorf +927864,Dave Mount Jr. +1588818,Gaile Butvilayte +1056178,Guillermo Orea +545452,Raymond Guérin-Catelain +1327721,Elizabeth Horton +58793,Sarah Ann Schultz +116464,Stephanie Northrup +1100036,Moose Ali Khan +139625,Lynn Colliar +114602,Melissa Ordway +571995,Francoise Birnheim +177579,Tracy Waterhouse +1450099,Einar Dagbjartsson +1122374,Chuck Brown +77292,Sean Gilder +1695152,Charlotte Viala +220299,Ides Meire +544399,Annie Anderson +109898,Jay Henry +1891515,Michael Kennedy +1050965,Julien Amate +71443,Zoë Lund +11641,Scott Spiegel +1131502,Jonathan Ashmore +1159954,Benjamin Lavernhe +1153743,Graeme Fullgrabe +1204681,Kenny Quiñonez +1795290,Kalei Shallabarger +1684512,Mina Vesper Gokal +135433,Mary O'Shea +1435946,Cherinda Kincherlow +138069,Loa Falkman +60649,Will Sanderson +1127310,Pina Bottin +115589,Andy Signore +570733,Sture Lagerwall +1091500,Ritva Vepsä +1753262,Mavis Paenga +86700,Georgi Millyar +1168903,Olin Howard +99425,Gregory Sullivan +32422,Volker Spengler +1409653,Douglas Rankine +117172,Arielle Brachfeld +42142,Stafford Morgan +1169007,Vincent Hoss-Desmarais +221944,Katie Aselton +645323,Dhumal +89832,Hiroki Touchi +1443418,Luís Fernández +234395,Ferruccio De Ceresa +1768738,Andreas Pliatsikas +124622,Daniele Pecci +49920,Willow Smith +1575344,Catherine Blades +1744820,Célestin Mokono +936673,Jay Lau +1305413,Frank-Leo Schröder +226020,Jean-Pierre Lazzerini +1184305,Mimi Stark +1544807,Grace Savage +158399,Philip Anglim +100128,Tsutomu Kashiwakura +120434,Pierre Taki +935339,Claus Wiese +101242,Antonio De Martino +937370,Natalie Victoria +158095,Jason Dohring +113308,Louis Ozawa Changchien +1894240,Edith Jost +149837,Courtnee Draper +85719,Amy Shiels +1720898,Lexy Howe +175322,Urs Remond +933580,Oz Noori +132912,Tatiana Miranda +146525,Thierry Rode +1252312,Caroline Sunshine +96326,Eric Podnar +238486,Valeriy Garkalin +567241,Ralph E. Tresvant +1197362,Chester See +55027,Roberto Bomtempo +92993,Trent Haaga +147637,Hans Hohlbein +183780,Connie Hyde +930332,Nicola Posener +1537745,Colm Gormley +1464532,Павел Баршак +1115225,Dulquer Salmaan +1011019,Jared Abrahamson +76877,Laurence Leboeuf +167320,Dylan Cash +1309217,Tamara Johnson +102556,Andréa Beltrão +82190,Robert Hobbs +235241,Tasuku Nagaoka +1891518,Casey Lloyd +1125106,Julie Papillon +1435479,Aidan Kennedy +1099653,Debra Arnott +1087000,Nicolai Jandorf Klok +130848,Kat Stroot +1869044,Rodney Edwards +554814,Yngve Seterås +563376,G.K. Bowes +30666,Renate Kasché +1707942,Adam La Rosa +1205530,Lee Ann Brentlinger +1131356,Jessica Tsang +118501,Gianni Magni +1326036,Han Han +1745909,Naheem Garcia +1079850,Irene Choi +1207439,Rachel Handler +1106461,Laura Stevenson +141036,Alissa Dean +1295980,Billy Hatton +1395234,Connie Ventress +110635,Christopher Emerson +135746,Luana Piovani +587443,Meda Andreea Victor +1436260,Qingjian Wu +1771525,Michael Fraguada +1765942,Abigail Friend +565187,Jason Lombard +66786,Ronnie Barker +1445679,Conphidance +39389,Titus Welliver +1803313,Mason Frank +1465967,Toni Saladna +176860,Keith Larsen +1469807,Darrin Otto +1120229,Paco Benlloch +126500,Prateik Babbar +12951,O.J. Simpson +75073,Tom Mison +1326030,Anne Marie Guenette +549127,Viktor Maurer +23441,Mariya Poroshina +1245709,Tiffany Hsu +1624619,Ian Fisher +80389,Vinod Nagpal +1091965,John Giorno +1624095,Wong Bing +57690,Jim Breuer +1115152,Eileen Lee +1176590,George Gebhardt +1418245,Stephanie Marie Capeling +82631,Joseph Sikora +24537,Jean-Claude Bouillon +1481144,Yasumasa Ônishi +1446339,Laurie Pierce +931359,Martha Preciado +79108,Andrew Maj +110707,Sushant Singh +1382354,Arantxa Urretavizcaya +96963,Jason Chang +154647,Michael Greyeyes +1108129,Trin Miller +1443433,Ferran Rull +1501802,Eduardo Valdarnini +179958,Patrick Day +1505303,Julianne Alexander +1240144,Naomi Bentley +132928,Roberto Flores +1377285,Gail Peters +571569,Edwin Wright +1125453,Viviana Suraniti +147468,Scott Cleverdon +203751,Lakshmi Manchu +1521540,宋昱璁 +1658144,Sonny Puzikas +1392953,Yaroslav Poverlo +179193,Nancy Fisher +1204673,Jonathan Worrell +1546421,Makanfing Dabo +1431853,Steffiana De La Cruz +1692490,Darren Scott +89599,Eric Bauza +1091,Joel Silver +543945,Svetlana Savyolova +1769812,Naisha Khanna +1030995,Jessica Camacho +1200222,Masatoki Sasaki +965129,Zafer Tawil +237235,Lee Kin-Yan +56844,Anita Caprioli +1406820,Ellinor Gynt +117062,Teppei Koike +1459888,Irena Ladosiówna +1104994,Oscar Pearce +1508819,Mike Jablon +134184,Leehom Wang +1690069,Anne-Laure Gruet +22511,Josef Heynert +1386325,Freddie Poole +576255,Caitlin E.J. Meyer +155422,Sarah Ramos +1879846,Mikko Makela +234753,Vivian Schilling +1397694,Eddie Garcia +1071125,Emma Hartley-Miller +251083,Renaud Mary +59119,Ewen Leslie +592045,Hristina Popović +96035,Katie Woolridge +43373,Aaron Himelstein +136982,Thomas Gallagher +118754,Tom Mardirosian +1541361,Margaret Dingle +1518856,Charlotte Winther Nielsen +1367729,Jernej Kogovšek +1855573,Arthur Danto +1335646,Rachel Crow +995177,Nicholas Houltham +144286,Alice Parkinson +224284,Dmitriy Shevchenko +1760118,Kip Addota +1176923,Rubye De Remer +588999,Margot Stevenson +9875,Zena Marshall +1782586,Roy Tunnell +1060181,Jessica Erickson +1703700,Lili Ivgy +25146,Colin Ferguson +1890102,Andrei Bilyk +115873,Zachary Charles +1350469,Andrew Bachelor +20966,Tuo Jilin +931240,Alfred Hollingsworth +1436285,Chen Song +1665449,Joshua Lutes +1445754,Laina Schwarz +1230897,Sammy Sheik +17374,Monika Hansen +89299,Miriam Makeba +176035,Kirk Baily +37027,Lew Temple +592570,Ronald Shiner +1686571,Elliot Latil +589652,Robert Emms +965530,Jilanne Klaus +34788,Emy Hagman +1544812,Elizabeth Florer +14106,Alice Hirson +131059,Michael Risley +49675,Bence Mányoki +1882003,Valentina Violo +1426347,Bertrand Quoniam +939669,Beth Marion +549037,Aleksandr Filippenko +1225953,Sterling K. Brown +92651,Louise Griffiths +1360005,Chris Neville +1182315,Sabrina Debler +1357868,Janelle Odair +105725,Robert Colbert +587623,Vitaly Kishchenko +1780264,Brad Harding +1799434,Robert Axelrod +1454386,Nick Moceri +1587572,Tony Yo-ning Yang +1633566,Laurence Coy +548018,Masato Tsujimura +228876,Cesc Fàbregas +1564490,Brendan Bradley +50774,Nancy Beatty +588040,Dmitry Medvedev +191135,Sam Dolan +1193098,Don Yanan +1796452,Roberta Burton +43243,Raoul Bhaneja +1784156,Chetan Kadam +1412400,Shadi Alfons +23305,Ahmed Ibrahim Mohamed +560190,Tang Guoqiang +72873,Michael Stuhlbarg +1227660,Clare Wilkie +1650322,Caroline McNeil +82136,Richard Zeppieri +1367881,André Lannes +148345,Henri Vilbert +1018813,Amy Dowd +206483,Richard Short +1073150,Mercedesz Henger +119586,Ethan Peck +48290,Collien Ulmen-Fernandes +1124174,Sergei Volf +18544,Tilo von Berlepsch +1124418,Michael Brodie +1205529,Cynthia S. Lee +1538778,Kim Ramos +1323876,Danielle Bourgon +1467505,Sydney Orta +1621053,Dorien Rose Duinker +1485775,Laila Haley +5317,Gaelan Connell +114268,Mary Elizabeth Boylan +1475590,Jacir Eid +1848676,Fábio Nascimento +1455909,Sarah Ripard +113969,Reece Chapman +965202,Ayesha Mohan +588062,Grigori Gaj +1088063,Will Toto +1381988,Andrew Ortega +1225394,Peter Williams +1853889,Ray Wickman +120652,Salvatore Ficarra +1165803,Ain Mäeots +1782587,Dawn Bianchini +1501495,Mick Preston +1581206,Andrew Grose +95896,Dervla Kirwan +51189,Peggy McCay +113534,Jenny Ulving +88619,Shenae Grimes +209087,Scott MacArthur +1103546,Bill Delarm +20499,Rebel Rodriguez +1844339,Kitte Dickie +141047,Yvette Heyden +74225,Jaymes Butler +1810154,Akul Dang +1182308,Kelly-Marie Murtha +1888465,Thania Rodriguez +119669,Maire O'Neill +90803,Chris Davenport +1819129,Brian Takahashi +19980,Kelvin Han Yee +65220,Danica McKellar +1278393,Jim Nieb +1653012,Kathleen Bentley +1735561,Gwendalyn Barker +43372,Stacy Edwards +142852,Fadik Sevin Atasoy +111066,Isidora Minić +106708,Stacie Randall +24684,Paul Frankeur +1441203,Michelle Fine +235924,Yelena Kamayeva +1395094,Constantin Nitchoff +1445133,Derli Prada +1898251,Rajka Milinković +223907,Denis Burgazliev +564322,Jamison Challeen +1390007,Brittany McDonald +182293,Suzanne Lodge +544210,Romano Ghini +1707746,Jamie Coffa +1362828,Casey Adkisson +930995,Noah Kronenberger +131824,Peder Melhuse +226708,Andrey Rudensky +1156992,Carolina Westmann +1503893,Rex Baker +1880405,Sakio Hirata +1795341,James Jannett +1049353,Slobodan Stefanovic +1446123,Jacqueline Steeneck +111366,Henric Brandt +93290,Satish Kaushik +1478375,Beth Humphreys +1039122,Mike C. Manning +1221105,Tadashi Miyazawa +1602464,Minosuke +1701867,Jon-Christiuan Costable +122765,James Rolleston +1656600,Hollie Johnson +1548738,Bineyam Girma +22307,Guilaine Londez +59230,Laura Soltis +1860441,Daniela Ferrera +1050001,Raymonde Vernay +1723561,Rochelle Bostrom +1702119,Ma Jun +1490776,Bret Jackson +1237299,Howie Johnson +1542417,Im Sun-Young +1481002,Danielle Guldin +281527,Charles Edwards +158629,Jade Malle +1436207,Sergey Badyuk +26076,Billie Piper +1171335,Jan Smit +1801191,Aeona Cruz +1389070,Véronique Wüthrich +1090419,Grahame Lintell +1045910,Michael Ferreri +1376425,Chloe Wepper +1513886,Tom O'Malley +1821487,Mali O'Connor +125789,Iglesias Estefania +1041314,Xavier Declie +1469162,Nancie Phillips +174698,Nayef Rashed +1841538,Ezra Nepon +72945,Max Baissette de Malglaive +1638307,Carol Plant +159849,Christopher McCann +145245,Caitlin Stasey +578818,Yeo Hyun-soo +227543,Deborah Secco +929599,Yuri Gorobets +1271016,Oscar Smith +578368,Raul Cimas +1865909,Steve Carroll +39465,David Starzyk +65938,Gigi Leung +1636764,Theresa Wylie +1442430,Morgan Taylor Campbell +1026877,Ted Ferguson +1533850,Eden Estrella +211288,Gerard Cox +1795280,Georgina Leeming +133423,Prakash Jha +1696388,Julen Arregi +557091,Louise Forestier +973238,Aron Ralston +1488614,Thomas Hunt +1896747,Ronit Cohen +140377,Mike Scotti +163367,Flip Mark +1090599,Milan Srdoč +1423308,Thaddeus Jones +1449639,Mariamne Merlo +1264,Bill Pankow +1595079,Aynur Komecoglu +1337617,Olivia Keister +1366840,Paula Giroday +1784931,Viktor Fetisov +1062706,Thomas Holm +73937,Judith Godrèche +1521623,Damian Monk +573544,Paul Julian +1578815,Dan Soder +1452636,Steve Corona +73694,Jordi Vilches +1192849,Niccolò Calvagna +1622945,Hon Muk-Dui +19382,Anne Coesens +1173786,Hiroko Tanaka +121809,Crystal Carson +1837868,Madelynn von Ritz +1537760,Timothy Dance +150882,Julian Assange +82193,Jason Cope +151108,Jef Betz +1839916,Fábio de Lucena +1062000,Nausicaa Bonnín +1292322,G. Marimuthu +1704659,Jock McKissic +1503905,Lottie Hamilton +1071200,Barton Hepburn +1263733,Pekka Ahonen +1475853,Jennifer Hagan +110968,Dragan Bjelogrlić +1152932,Jason Newman +1167536,Nanette +1556323,Bettina Skye +582271,Aleksandra Astakhova +1082853,Gerard Malanga +1651399,Jason Grangier +1074005,Lenka Krobotová +1774535,Andrew Gourlay +1186026,John Weselcouch +1190921,Rodrigo Fernandes +1284822,Suthon Wechkama +154888,Blake Robbins +1614447,Johanna Tolentino +1337234,Matthew Bruch +1129684,Sky Palma +65004,Tatjana Simić +1885610,Henri-Charles Alexandre +114927,JJ Neward +1286879,Nathan Hollabaugh +1332934,Kristen Corvers +1114216,Björk Jakobsdóttir +138509,Lee Mun-sik +75958,Jane Allsop +1735564,Si-Fu Eric Oram +79552,Nicolas Feroumont +1121623,Ben Johnson +1218882,LaGena Hart +55842,Victor Mohica +996594,Katerine Avgoustakis +1825504,Ana María Ayala +110774,Paavo Piskonen +1241603,Kimiko Saito +1117506,Sheila Hullihen +59817,Jaimie Alexander +591852,Robrecht Vanden Thoren +1439850,Elena Rivera +1498427,Jim Cantafio +589461,Jace Mclean +557284,Jean-Nicolas Verreault +1692065,Aldo Juliano +147498,Fernando Delgado +40565,Matthias Matschke +140009,Penelope Reed +237954,Elsa Poblete +1501944,Evan Manoukian +1205389,Ethan Alexander McGee +1256215,James McArdle +1694022,Antonia Fontenelle +1284969,Ella Toivoniemi +92776,David Farkas +1404689,Rob Lawrence Brown +104385,David Haskell +1120842,Amy Groening +1028804,Nurretin Celik +1134592,Amelie Binder +1251615,Susanna Fournier +222726,Skjalg Gamst Landsem +1502321,Malcolm M. Mays +1871450,E. Ovanov +47272,Raoul Retzer +1467530,Tess Allen +1081289,Indriði G. Þorsteinsson +186603,María Gentil Arcos +122962,Mike Sorrentino +87058,Maria Lark +1707886,James Grim +49729,Katherine Kelly Lang +1523950,Lu Liu +1205900,Courtney Munch +1180791,Sonny Lahey +1368800,Spencer Drever +1230663,Sheila Ruskin +141538,Emma Clifford +1393184,Marleik Mar Mar Walker +1246603,Nebahat Cehre +572284,Lydia van Nergena +24363,Frederick Stafford +554381,Wally Patch +143823,Fred Griffiths +1187202,Sabrina Nouchi +147642,Alexander Yassin +20180,Stephanie Belding +1107771,Yoshifumi Nomura +30930,Albert Lieven +1050908,Carlos Santos +1331814,Judith Buchalter +74093,Richard Dawkins +63753,Tobias Bøksle +86057,Dinesh Hingoo +143754,Carol Brewster +106274,José María Prada +1251644,Suna Yıldızoğlu +1107772,Sanae Katô +167367,Scott Colomby +1364232,Eva La Dare +81877,Mark Hadlow +1902098,Holger Wiegandt +1624626,Jeff Jarvis +1163600,Olga Dobrina +66147,Arly Jover +399681,David Yow +1835244,Carl Mintz +132856,Tim Heidecker +1004043,Charles Hubbell +21502,Kôji Wada +1352105,Mollie Milligan +1344364,Devin Maurice Evans +118932,Peter Davies +1524134,Troy Martino +35210,Roland Giraud +1398179,Saxon Fraser +1418254,Miranda Mills +1334333,Jesse Gentry +1611361,Chris Lee +1481500,Veni +1014935,Ilary Blasi +96443,Frederick Valk +390453,Vincenzo Talarico +1821363,Christopher Jenner Cole +115539,Cathie Reimer +1172491,Claire Julien +1457280,Sandra DeNise +28099,Lewis Fitz-Gerald +81839,Mozhan Marnò +1224686,Dominick Dunne +85138,Demi Lovato +1657309,Rick Zingale +556932,William Paul +1425463,Sean Kleier +1127659,Serena Rossi +1370953,J. Mark Donaldson +1089474,Maik Solbach +1496181,Angelique Cavallari +74151,Jason Spevack +1643335,Ibrahima Keita +1505816,Megan Stevenson +1563449,Branko Beninov +1065175,Carlos Olalla +1344883,Renske de Greef +1038797,Eric Jakobiak +969140,Israel Broussard +97186,Michael Bloomberg +183005,Kit Mallet +143287,Maya Bulgakova +1903782,Semyon Budyonny +183073,Angela Trimbur +1646461,Michael Nangreaves +46315,Toshko Savov +1184304,Fred Sica +117586,Ed Cassidy +136383,Rieko Sumi +1299596,Marta Hrachovinová +19106,J. D. Cannon +9603,Sergei M. Eisenstein +1373351,Ann McGowan +19942,Ronit Elkabetz +1272970,Christina Wren +1486382,Holly Mae Brood +1370799,Jwaundace Candece +1150071,André Kaczmarczyk +224513,Ana de Armas +208061,Chad Brummett +115245,Ian A. Wallace +129452,Dennis Lill +52167,Theo Maassen +222562,William Belleau +997369,Ben Winchell +63000,Bernard Kay +1360387,Sonny Loy +1692865,Valentino Simeoni +1321881,Tony Sheldon +1839563,Risto Palm +1373307,Joe Stapleton +1663988,Frank Roder +153482,Maurice Wells +27462,Alberto San Juan +1261533,Matleena Kuusniemi +52966,Tim Oliver Schultz +78447,Stefano Viali +2272,Carl Duering +1418266,Todd Tucker +1656871,Sukanya Kongkawong +130618,Gabriel Pimentel +1642148,Ruth Rockenschaub +96792,Robert Buckley +1900646,Claudine Lumbu +199704,Beth Hall +21688,Bae Doona +95234,Betsy Soo +1848805,Shannon Lorance +74927,Joakim Nätterqvist +1107183,Micol Azzurro +1545547,Stefano Elfi DiClaudia +568085,Juha Lagström +103855,David Holbrook +601406,Philip O'Flynn +1630254,Steve Mason +36091,Christian Stolte +59695,Denny Dillon +9705,Takahiro Sakurai +1764695,Lutuf Nouasser +52913,Hilmir Snær Guðnason +1364815,Ban Ki-Moon +1574237,Tom Cassell +78194,Barbara Britton +1464284,Shirley Lawrence +1563106,Sheila Leighton +5531,Kiran Shah +1076736,Cristina de la Diosa +225256,Bowen Dong +1839906,Hamilton Dias +936508,Harriet MacMasters-Green +1561251,Thorsten Wenning +110875,Gareth David-Lloyd +172990,Alonso Oyarzun +1902462,Felipe Casé +956764,Iain De Caestecker +1162313,Paul Ashton +81446,Sondra Blake +1389069,Tarik Akreyî +1719586,Mickey Gooch Jr. +1463197,Rosanna Hoult +82561,Ronald Dunas +1354237,Sara Paavolainen +49704,Eisi Gulp +1136712,Mirko Todorovic +143227,Concha Hidalgo +202775,Kobna Holdbrook-Smith +1419355,James Warrior +955264,Ron Smoorenburg +1774109,Stephanie Eaton +132133,Aimi Satsukawa +94600,Pia Glenn +227399,Luděk Munzar +113332,Aleksey Serebryakov +1058695,John Webb Dillon +28213,Huug van Tienhoven +1427100,Kathlyn Brox +1637160,Narendra Bedi +1664057,Audrey Lazzini +947232,Peter Beckwith +233122,Valerie Bettis +1178890,Karen Miller +1170145,Punit Pathak +135668,Tatiana Papamoschou +115737,Alexander Karim +1074504,Valérie Cantin +38624,Reiner Schöne +1744721,Claire Frederiksen +580192,Donald von Kurtz +1269332,Wataru Nakagawa +135629,Cathy Ménard +1377013,Michalis Ainatzoglou +1538575,Rayman Jilani +1404245,Margareta Montez +1223239,Ingrid García Jonsson +23984,Bernard Farcy +1130787,Stacy Shirk +1903969,Curt Keilback +118239,Dinah Sheridan +1313311,Predrag Tasovac +1197816,Matteo Branciamore +1163720,Casey MacLaren +1807467,Mary Hounu Moat +1405647,Nicole I. Butler +1446350,Ken McKee +1180542,Piero Nuti +1601651,Stephen Sullivan +1272218,Katrina Maree +1013138,Goga Kapoor +1194704,Anthony Ambrosino +195599,Ravin J. Ganatra +1355389,Madeleine Nicolas +1423519,Oona Laurence +96519,Igor Yasulovich +130450,Stéphane Jobert +1086476,Marianne Moritzen +117065,Risa Kudo +1475588,Leon Barker +1879712,Steve Judkins +538006,Luigi Petrucci +1582296,Erik-Michael Estrada +6002,Göran Forsmark +1579544,Angela Atwood +147111,Rita Ferreira +1415417,Tyler Harrison +1155321,Emmy Robbin +94807,Ken Shorter +1487248,Neelesha Barthel +83970,Gladys Cohen +99467,Dorothy Christy +1764360,James C Jackson +1459157,Josh Adell +1086277,Christoph Gaugler +226179,Hilde Grythe +1153589,Piotr Kishteev +1401547,John O'Dowd +208507,Jessica Oyelowo +94188,Kyoko Kishida +1414696,Ha Yeon-soo +81124,Brigitte Bémol +1432440,Graem Beddoes +1297679,Mari Szemes +116775,Julie Haydon +127372,Sergey Shakurov +1161963,Black Francis +102610,Þórhallur Sigurðsson +1620573,Safia Sarwat +238313,Artemiy Troitskiy +132504,Nina Almlöf +130914,Sylvia Kekulé +1063816,Lexi Strauss +928344,Robert Garriott +205459,Jon Dore +1668397,Laurence Covington +1522143,Dale Jackson +236103,Anne Céline Auche +1660698,Dominick Sabatino +82332,Nour El-Refai +1351918,Sabrina Kruschwitz +131687,Doraid Liddawi +4573,Selina Cadell +1358893,Anna Saia +1699608,Yu Kai +7918,Bud Luckey +74733,Källa Bie +87931,Tracy McDowell +24072,Cecile Harke +176658,Anslem Richardson +1031780,Danielle Hawkins +165636,Jackie DeShannon +562159,Sevket Altug +1186025,Peter Gvozdas +1771035,Neal Penso +1769244,Christine Mitges +1406035,Giles Panton +38565,James Kidnie +1174841,Jeremias Herskovits +1121550,Senne Rouffaer +1475102,Zandy Hartig +101881,John Arledge +103767,Irv Saunders +1379210,Robert Tweten +1898306,Alessia Capua +1198311,Joseph Batzel +1232661,John Duthie +1114835,Yu Tai-Ping +105255,Knut Walle +1175382,Gianfranco Bullo +225694,Oliver Cooper +931444,Pachara Chirathivat +1112460,Henry J. Smith 3rd +1044238,Bianca Balbuena +69857,Jim Calarco +104211,Jean-Loup Philippe +1056211,Umar Rashid Dar +1517472,Peyton 'Alex' Smith +1229932,Ann Coulter +78863,Jessica Heafey +1370568,Isabelle Duby +1522921,Ryan Mulkay +239450,Harue Akagi +87705,Kim Sharma +1289504,Gleb Samoylov +1040061,Manuela Martelli +581208,Daphné Bürki +1212271,Harley Graham +1285426,Jacques Fabri +77887,Eddie 'Piolin' Sotelo +147968,Terra Hazelton +1320055,Aliye Rona +62262,Ranjit Krishnamma +1424716,Brendon Eggertsen +1175617,Radim Kalvoda +1165395,Jakob Porser +234626,Fedra Lorente +123512,Linas Phillips +227232,Vincent Rogo Angelini +54338,Hafsia Herzi +1417442,Zi-yi Wang +1769807,Shamea Morton +1321448,Sarit Larry +1454365,Dylan Prince +1071597,Raphaël Goldman +97045,Darby Jones +935715,Abe Larkin +1457189,Um Tae-goo +126499,Alishka Varde +1211946,P. J. Byrne +496733,Liz Dean +98577,David Homb +81460,William Butler +213641,Oscar Beregi Jr. +154035,Richard Tanner +91631,Ravi Krishna +1084721,Jason Turner +1895080,Salami Bahija +77257,Kevin Booth +125105,Derek Tsang +1217772,Charles Knight +1089480,Sarah Marecek +475571,Steven Kaplan +1633754,Heath Campbell +61703,Ron Yuan +124309,George Arliss +104465,Neto DePaula Pimenta +128677,Boris Khmelnitsky +94424,Haley Webb +91997,Terry Davis +1062345,Hoshinosuke Yoshinaga +70241,Jennifer Warren +1627038,Chantui +584337,Jorge D'Elía +1018056,Gabino Rodríguez +145113,Norm Lewis +106819,Lakis Lazopoulos +103904,Alice Terry +1424978,Marko Leht +1753483,Joe Manthey +544013,B-Real +1221107,Jirou Jay Takasugi +1163172,Misha Ghoshal +142889,Captain L. Hussey +935360,Adrien Michaux +193677,Joseph Tatner +1506903,Nancy Sellers +1079280,João Guedes +344269,Simon Green +104036,Marty Ingels +1367572,Lewis Rainer +98827,Dean Fredericks +1630309,Jackson Meehan +584791,Pandiyarajan +566681,Arnar Jónsson +101678,Kieron Moore +34052,Eva Pallarés +1687032,Peaches Davis +96480,Arnaldo André +1031918,Maruchi Fresno +152947,Bobbi Jo Lathan +179415,Barbara Wheeldon +201488,Patsy Byrne +93995,Shim Eun-kyung +1529060,Susan Cembrowska +238553,Karin Booth +44246,Kenner Ames +133592,Meghan Maureen McDonough +1234291,Tracey Hoyt +110045,Bill Timoney +1400921,Jesse McGinn +80641,Sterling Beaumon +83937,Sakiko Tamagawa +1758534,Phachara Kueakanchanaphon +1209471,Kai Paris +1637662,Mike Carlson +1588321,Masaya Tsukida +1158134,Jack Neubeck +1650410,Lionnel Desruelles +130540,David Coco +139130,Vassili Karis +39449,Pierre Grasset +37974,Helmut Förnbacher +1087001,Jesper Hyldegaard +256841,Pedro Costa +1561545,Liam Matthews +1393199,Estelle +1093685,Michela Gatto +1251978,Mateo Arias +30751,Graig Guggenheim +137849,Jassi Zahharov +1233647,Ivan G'Vera +1434090,Kandiss Edmundson +1452393,Norma Arnould +205177,Remy Thorne +1083851,Romain Bouquet +84560,Chris Carlisle +932042,Sami Iazouguen +97772,Mel Tormé +320107,Camille Bert +1758522,Shrishti Shirvastav +138391,Claire Sombert +190941,Jeffrey R. Smith +1012248,Thuróczy Szabolcs +1304685,Phurenje Tshering +1042759,José Manuel Postigo +1492293,Stephen Dunlevy +1195195,Tommy Brubaker +1388674,Brian Mills +931360,Laura Saldaña Quintero +1382031,Dan Leonard +1320568,Mark Bulluss +1195745,Knud Hilding +42877,Nadja Becker +89246,John Marshall +1288047,Alice Isaaz +108973,Titoff +103707,Austin Stoker +125332,Tim Fields +1885524,Monica Gioia +48673,Roswitha Schreiner +1176539,Toshinobu Matsuo +1528094,Nicholas Neve +1094117,Siam Yu +65807,Ingrid Tesch +1102575,Lane 'Roc' Williams +1156024,Tao Okamoto +1739855,James Feaheny +3368,Leonard Carey +1274877,Majid Niroumand +176823,Spencer Grammer +1369076,Michael Strusievici +1844331,Anthony Grgas +1569982,Brock O'Hurn +133244,Emrys Jones +60906,Robert Crooks +130877,Enzo Salvi +11720,Jiří Menzel +54153,Miguel Bosé +21749,Jörg Hube +107633,Jan Englert +52623,Joyce Mandel +1097115,Lucie Englisch +1506063,Kacper Olszewski +1476847,Nanna Buhl Andresen +544608,Carloto Cotta +1706742,Jaret Martino +8933,John Du Prez +1902109,Gisela Zabel +1577104,Ruby Gillett +1580367,Bruno Lauren +1410725,Jordi Llordella +131946,Danny A. Abeckaser +1396358,La Chunga +1726660,Chelcie Lynn +95016,Bill Welsh +1457490,Alyssa Koerner +1828324,Jueri Saamel +545292,Lee Li-Chun +1521174,Chela Campos +1648787,Chab Kola +1635159,Donald K. Overstreet +147837,Anna Bellato +113539,Johanna Sällström +25148,Xavier Saint-Macary +1434412,Ib Makwarth +6734,Ken Davitian +1394456,Joel Knights +1211302,Irina Greco +1380560,Louis Toshio Okada +1075468,José Gálvez +1033173,Areez Gandhi +190352,Kim Mai Guest +1839537,Roberto Sbaratto +553503,Parker Bagley +18948,Kathrin von Steinburg +1543107,Diana Herbert +1269323,Andrew Fognani +39935,Gunther Philipp +1634034,Kayla Anderson +1173230,Ben Lloyd-Hughes +939076,Tim Goodrich +147176,Eleonora Sergio +88081,Laura Chiatti +1562079,Jesus Alvarez +103787,Bambi Allen +52205,Patrick Jordan +1428990,Patrick Ryan +984371,Andre Van Gyseghem +234199,Robin Aubert +1215206,Natalie Gumede +132218,Sarab Kamoo +1125108,Mohamed Aroussi +194814,Loyal T. Lucas +1683953,Rachel Sheen +1331272,Andy Riddle +1524906,Maria Alexandra Lungu +1717265,Elizabeth Windley +1223084,Mary Mouser +29272,Nelson McDowell +223477,Joel Basman +74748,Randy Couture +1588352,Ruby Harris +1055701,Diana Hurd +1513533,Amy da Luz +1385125,Alvaro Gradella +108857,Kunto Ojansivu +1645600,Yayu A.W. Unru +163439,Sarah Ann Morris +1419293,Pedro Chomnalez +178920,Walter Kohler +127105,Piros Ildikó +6639,Emilia Fox +1605862,Michael Danvers-Walker +1411819,Xhilda Lapardhaja +1599276,Walid Mumuni +1158710,Jung Yoon Lee +1759918,Maude Cigna +1128334,John Epper +1028454,Emma Fuhrmann +1255110,Ashok Lokhande +147104,José Wallenstein +1692101,Melissa Anne Acosta +121721,Amy Manson +180300,Jesse C. Boyd +961830,Sofía Álvarez +107881,Tadeusz Gloskowski +1211524,Adrianna Biedrzynska +27653,Jeremy Peters +1057912,Kevin Hearst +544402,Constant Rémy +30431,Heathcote Williams +1311154,Ha-jin Lee +1448222,Charlie Heaton +1542939,Franklin Broderick Spencer +1122282,Thomas Nowell +1496155,Ko Won-hee +1084299,Kayne Di Pilato +1374597,Peter Mansbridge +129875,Valerio Binasco +1528381,Patricia García Méndez +556734,Lucia Schlör +115681,Rosalind Halstead +1376615,Bart Rochon +1662632,Jack Kadden +67979,Michael Eklund +1185916,Dagmar von Kurmin +37093,Langley Kirkwood +1018992,Vikram Gandhi +115335,Anna Kuchma +182004,Christine Wilson +1090507,Andrea Drahota +1121877,Jacqueline Alexandre +89376,Tina Huang +127856,Robert Więckiewicz +1549538,Jaret Sears +76743,Miles Bakshi +1071157,Aaron Viergever +144137,Tehilla Blad +1626464,Vasiliy Butkevich +140161,John Wark +148053,Charles Inslee +550538,Georg Funkquist +149407,Shannon Lee +969950,Dyfan Dwyfor +584867,Rajeev +1888187,Katie Luddy +1203090,Sahana Srinivasan +1120198,Andrzej Blumenfeld +1596413,Ron Shachar +1870836,Shota Skhirtladze +564816,Stinne Hedrup +125204,Uttara Baokar +107866,Wojciech Malajkat +100237,Violeta Markovska +1500637,Kiril Gravčev +58502,Natalie Dormer +1464571,Paul Lefèvre +1758902,Pedro Morillo Jr. +1359988,Ashley Turner +1182318,Priscilla Herman +572475,Mélissa Mars +1413316,Wim Van den Heuvel +19803,Leonardo Sbaraglia +939002,Claus Preute +173996,Marina Black +79768,Elena Spirina +1811922,Sravana Bhargavi +1558179,Ian Keir Attard +1542296,Gieorgij Martirosjan +582698,Erin Simms +143114,Maria Albertina +1207314,Maria Rother +104240,Alban Ceray +117697,Claud Allister +62591,Marissa N. Blanchard +78540,Lydia Mancinelli +108887,Melanie Leishman +1116973,Carlos Pratts +1862607,Luis Gaspar da Silva +1848654,Liège Monteiro +118512,Michaël Vander-Meiren +1588358,Kourtney Bell +996571,Luis Prendes +190897,Raven Dauda +1376316,Jon Glentoran +76120,Steve Sanders +99913,D.T. Carney +1583059,Marie-Hélène Bourlard +1111514,Gerhard Hartig +110032,Lia Medvedeva +2334,Florian Koerner von Gustorf +23855,Kasha Kropinski +567737,Eliú Armas +1048881,Mel Oshins +1120814,Fraunie Fraunholz +1104350,Ralph Rodriguez +106504,Marla English +1293586,Gia Skova +118166,Sam Bell +1178041,Pat Silver +1086509,Barry Strydom +1818364,Nathalie Merchant +63704,Toshiya Nagasawa +142185,Rebecca C. Olson +142316,Carlen Altman +1473231,Derrick Baskin +1259963,Károly Gyulai +184571,Lossen Chambers +36632,Juan Diego Botto +227798,Allan Price +222317,Kristiina Halkola +1266597,Nuala Campbell +38449,Cyrille Thouvenin +1681697,Howard Antony +1633756,Hitler Gutierrez +1780279,Matt Dravitzki +1367901,Ted Welch +222130,Eloise Mumford +1115147,Christina de Cattani +1205174,Jim Fitzpatrick +82134,Peter Kelly Gaudreault +97881,Starr Andreeff +219303,Duffy +152902,Randy Kovitz +138326,Mário Barroso +39876,Hélène Dieudonné +1774375,Jean Morel +1359569,Gay Gaynor +1217825,Peyton Manning +1842097,Ndea Williams +127069,Charles Techman +1203628,Nelli Savichenko +1747660,Yeghishe Harout +1221558,Laura Wright +1717051,Fiona Moore +1388917,Osy Ikhile +1544226,Gerd Volkmar +1040475,Maiko +105216,José Vivó +147165,Carlo Cartier +102852,Andreas Apergis +105186,Chelsey Crisp +21173,Gérard Zimmermann +1658130,Marie-France des Pallières +1849984,J.R. Osborne +1349625,Che Ramos +1025682,Katrina vanden Heuvel +1838047,Jeremy Timmins +1361549,Luke McKenzie +1620571,Said El Araby +34183,Dorothy Moore +13727,Penny Fuller +1273236,Michael L. Parker +1115746,Maniyanpilla Raju +1903778,Mikhail Frunze +1218281,Alana de la Garza +1527210,Alexander England +1158284,Elio +1371716,Bessie Barriscale +125076,Lee Ha-Na +1123091,Eric Averlant +111062,Milica Mihajlović +1098988,Mildred Burke +1055179,William F. Nugent +1134732,Jamie Luk Kim-Ming +110634,Stephan Cox +235056,Nikolay Fomenko +121259,Tina Carver +117133,Leader Hawkins +1754597,Lena Gora +1331886,Tiffany DeMarco +1576994,Gloria Colston +128468,Roberto Farnesi +1095921,Yasushi Higuchi +88803,Mrinalini Sharma +38386,Armand Meffre +1452666,Moey Hassan +543990,Merritt Patterson +127156,William Vanderpuye +1186091,Atou Ecare +22902,Hans-Peter Minetti +181538,Tara Boger +1226358,Mimi Lieber +84487,Mabel Paige +91562,Philippe Deseck +1287113,Sarah Noble Peck +1070631,Pénélope-Rose Lévèque +71889,Michael Abbott Jr. +1058269,Nicky Tilroe +1806601,Leota Gunn +1033084,Jim Ameche +1683850,Sara Haines +35964,Gilles Privat +1073426,Christoffer Svensson +1178700,Man Lo Zhang +225110,Luigi Pisani +44790,Biff Manard +93093,Antonio Mayans +222299,Joel Rinne +84854,Jung Joon-ho +1339163,Jodie Lynne McClintock +1292329,Kimberly Sustad +10843,Luke Goss +1309757,VJ Kewl +19483,Med Flory +169452,Jessica Cherniak +1424893,Evelyn Joy Pointer +78046,Mimi Michaels +1500691,Shane Guilbeau +78407,Melody Zara +1543963,Luis Huilca +1187648,Akira Tamura +36097,Laurence Rupp +1788313,Turin Brakes +27138,Doug Abrahams +575662,Antoine-Olivier Pilon +1108907,Nick Robinson +36588,Joe Wright +1158287,Steen Kaalø +1426899,Sandra Abouav +1494336,Ashwin Gore +1323225,Eli Goodman +77820,Oshri Cohen +1532117,Renée Dumas +211101,Bart Klever +1523656,Hunter Canedy +208343,Josh Alexander +1332749,Kundara Johny +1250842,Lee Seung-gi +1769246,Christine Kendrick +592537,Ampon Rattanawong +149991,Alan Devine +1489155,Nui Saendaeng +18488,Jeanne Lobre +92948,Chris Eric Williams +1157594,Agung Udijana +1625713,Nick Nasta +979412,Matthew Cardarople +1358560,Raymond Adam +18966,Horst Frank +1684455,Jong Kun Lee +1127884,René Gilson +138774,Laura Heisler +1290939,Arifin Putra +1707833,Marcus Engelhardt +1098637,Mitra Khalatbari +13824,Tala Birell +91706,Cássia Kis Magro +1037301,Teni Panosian +1328186,Amy Hubbard +210665,Janina Gavankar +107491,Sebastian Spence +1736432,Nesti Gee +83264,Katarzyna Figura +1011210,Noël Wells +106096,Ben Howard +1336775,Lorna Nathan +1078608,Lorenza Izzo +71064,King-to Ng +120430,Shefali Shah +1204690,Elijah Canada +77148,Robert Dryer +1800020,Carolyn Bracken +100106,Lou Bonacki +1816,Marty Antonini +1169322,Noé Blancafort +226178,Gina Green +1385531,Naomi McDougall Jones +1465889,Koko +109616,Ayaan Hirsi Ali +121885,Harry Mestayer +1735558,David Buglione +1001959,Yuval Scharf +1180705,Andy Trask +1338429,Julie Brandt-Richards +1211674,Fabian Adeoye Lojede +1824914,Susanna Reid +985076,Aleksei Znamensky +1381695,Jessica Luza +1158462,Jérémie Yousaf +1835278,Shane Brewer +1086568,M. Robert Todd +114913,Kazuko Sugiyama +1430906,Philippe Rouleau +1535065,Gareth Hamilton-Foster +182327,Alice Lowe +1332937,James Downing +1671470,P. S. Sridhar +1655883,Dr. Obrusánszky Borbála +1051829,Zachary Andrew Turner +1635157,Chad Joyce +237347,Juan C. Bofill +1277475,Andreas Konstantinou +11937,Carl Möhner +43278,Jane McLean +1443757,Memo Rojas +1670767,Trey Tucker +1197098,Denis Theriault +1672439,Luke Gregory Crosby +800064,Stacey Miller +132756,Christian Doyle +1832743,David Roberts +128855,Igor Sigov +1021884,Susan Danford +55063,Lara Dutta +61861,Vlado Mihailov +117890,Guy Perry +1382975,Elene Lizarralde +1506479,Deema Aitken +555154,Akira Murayama +4592,Tura Satana +28345,Mark Zak +81982,Sushma Reddy +327724,Vlasta Chramostová +1477143,Joseph Balderrama +1192984,Ben Wong Chi-Yin +1105681,Noppan Chantasorn +79288,Ruth Díaz +1193916,Charles Kim +88140,Gulzar +1544188,Snow Keim +1160305,Nikas Safronov +1253199,Alexandra Shipp +143626,Roman Kostomarov +13562,Lillian Worth +72985,Ramón Rodríguez +35919,Luis Rego +1388679,Fred Goldsmith +141470,Wayne Shields +1512205,Jesse Brand +1089060,George Burton +4217,Ingrit Dohse +83836,Yevgeni Tsyganov +79291,Luciano Cáceres +1443756,Vitaly Petrov +10376,Susan Walsh +100745,Amelle Chahbi +1859938,William Townsend +130000,Kim Braden +27957,Antonie Kamerling +83147,Giampiero Albertini +1001711,Sophia Elisabeth +100753,Tina Barnes +1657314,Buddy Osborn +105816,Shigeru Chiba +1800026,Shauna Higgins +3483,Antonio de la Torre +1470859,Stacey Hinnen +1559086,Harriet Ghost +1184333,Duarte Grilo +88902,Ellen Wong +70304,Sarah Jane Morris +1381273,Nihat Ziyalan +1772155,Ivan Gurtsenkov +185805,Jason Jones +1084976,Zydrunas Ilgauskas +1683860,Eric Trask +1564566,Mohamed Lemine +145367,Peker Açıkalın +1108135,Nicholas Turner Martin +1446866,Kaiser Johnson +90634,Don Omar +1625133,Patricia Coulet +1423081,Torbe +19789,Marcel Ophüls +193045,Kim Bubbs +1824922,Sebastian Kaufmane +81005,Maksim Sukhanov +1693772,Elena Marchesini +626531,Septimus Caton +1461683,Shanna Strong +84789,Keythe Farley +81928,Anushka Sharma +1071140,Tamara Samonte +928777,Christian Esquivel +1898500,Charles De Moura +1192365,Jānis Vimba +106384,Colin Heywood +1044447,Javier Ruán +81971,Hazel Brooks +1413110,Mircea Groza +1323881,Mark Coles Smith +1339115,Timm Bock +487273,David Field +1359964,Pete Mortoz +77826,Annie Tedesco +1051058,Lorenzo Richelmy +1039011,Natalia Dyer +1709130,Chris Luca +1166089,Jeffrey Iorio +31058,Gene Gutowski +96529,Josh Caras +88547,John Speredakos +1544225,Haddy Moss +119050,Aleksandr Yatsko +1351135,Michel Goyette +1900911,Igor Zalewsky Marini +142667,Sonja Oppenhagen +224150,Michaël Abiteboul +93236,David Dencik +1140046,Carisa Yan Wing-San +81840,Adeel Akhtar +1623747,Alfredo Gutiérrez +86419,Anju Mahendru +1371161,Wojciech Solarz +7282,Anne Benoît +1650166,Smith Harrison +1732771,Ersun Kazançel +1148519,Jamie Downey +935670,Amy Judd +1448274,Ethel Jewett +1174658,Zheng Wei +61998,Natalie Compagno +1144370,Giorgio Gaber +1228651,Marcus Shirock +934059,Aislín McGuckin +1011071,Eric St. John +1438872,Troy Coward +947463,Isabel Robayo +177099,David Pevsner +1696087,Vsevolod Khabarov +1485205,Jeanette Kelly +96977,Mehmet Günsür +70027,Jerry Calà +1552816,Helen Hong +1191710,Park Jeong-soon +1869434,Stefano Gragnani +1872891,Maritza Rivera +225262,Elisabetta Piccolomini +1171433,Benjamin Baroche +74620,Lisbet Dahl +45999,Takao Osawa +76788,Dev Patel +194418,Angie Bolling +114896,Neil Schell +86111,Toby Scott Ganger +1529491,Rachel Hroncich +1491364,Arly Arnaud +1818839,Tia Diagne +1648799,Em Boun Nat +1579773,Clemmie Evans +1039632,Chelsea Ricketts +86984,Ian Rose +929511,Utkarsh Ambudkar +1110617,Dana DiMatteo +17499,Jonathan Zaccaï +227521,Margaret Mazzantini +992827,Pierre Richard-Willm +586277,Patrick Hastert +1579247,Maxine Brogan +30577,Madeline Smith +1137525,Claudio Nicastro +40586,Christian de Tillière +1494146,Luke Cook +55689,Philip Glenister +1344345,Vivian Fleming-Alvarez +1384202,Andrew Sparacino +52635,Paula Kalenberg +1187309,Rolande Polya +74578,Michael Sean Tighe +92627,Casey Tibbs +1880534,Francesco Bocchetti +73827,Patrick Bruel +1719810,Hsin Shu-Fen +225999,Eri Kitamura +1056699,Thomas Laughlin +239722,Leonid Filatov +1865852,Patrick Osborne +1348735,Ruby Ruiz +1346234,Edoardo Natoli +16723,Simon Gosejohann +1376110,Hugh Scott +54292,Julie Ferrier +1066415,Dorothy Van Engle +117627,Lara Parker +1700952,Guillermo Romero +91870,Sadao Abe +1563624,Rachel O'Byrne +1642765,Kevin Jackson +990393,Erin Moriarty +550910,Masaru Ikeda +1421069,Reginald Simpson +58972,Gabrielle Jourdan +98399,Jill Marie Jones +1673414,Brandon Walters +1774940,Charles Redding +931319,Juan Antonio Jiménez +1477662,Aino Louhimies +1086294,Ferenc Bencze +1872250,Jon Kinikama +141539,Travis Oliver +95787,Lorna Thayer +1329297,Loren Bass +1113302,Cormac Kerins +1083359,David Whitman +1330825,Steve Crest +237448,Grigore Grigoriu +1436976,Nick Loeb +63766,Kim Sørensen +13260,Linda Harrison +1039245,Ryôhei Abe +1059930,Tomomi Maruyama +109282,Hamadi Khemiri +1122389,Jonny Mars +932339,Chris McGurrin +1145581,Georgie Smith +57399,Lesley-Anne Down +1234526,Arron Villaflor +1523984,Arianne Martin +36668,Sinead Matthews +1754484,Sarah K. Thurber +56285,Bruno Todeschini +1824300,Dario A. Lee +1404459,Derek Glynne +1870826,Giorgi Khobua +131513,Xiao Shen Yang +1144910,Vasilis Diamantopoulos +66893,Hape Kerkeling +1533189,Alison Brooks +135120,Henrik Rafaelsen +1668413,Lexie Helgerson +89731,Constance Bennett +1761851,Tim Sjöberg +1240839,John London +21214,Jill Teed +1404373,Mia Faith +1475033,Leah Wiseman +1338741,Mary O'Neill +223348,Lee Hae-yeong +1338720,Brooke Melling +1471456,Kevin Elarbi +1204409,Marija Korenkaitė +1840495,Peter Karinen +585276,Shashikumar +1195671,Amir Yerushalmi +1471365,Dominie Duval +1357846,Greg Kot +120683,Memet Ali Alabora +1076441,Luíza Durão +1704664,Christopher Robert Escobar +208519,Nick Kroll +187857,Toby Leonard Moore +85516,Shelly Varod +178650,Doug Llewelyn +1020145,Horacio Fontova +1724686,Michael Hagen +1040418,Aleksei Gavrilov +1293818,Elli Ylimaa +1386301,Rebecca Chulew +96466,Yoo Yeon-mi +237867,Pascale Salkin +1438677,Jarett Shorts +1276627,Li Shengye +1059016,Kym Whitley +207250,Maribeth Monroe +85063,Imran Khan +1477353,Nils-Jørgen Brochman +35820,Suresh Bhagwat +145499,Beren Saat +1158713,Oleg Mavromatti +1902095,Markus Sprungalla +1158777,Adam Mularczyk +148890,Jennifer Tse +101243,Artie Baxter +1217590,Constance Barron +587514,Eduard Flerov +1795276,Guillaume Bouchède +1672140,Mario Moran +141469,Vaneshran Arumugam +198607,Diego Diablo Del Mar +1759681,Olivia McCarthy +127610,Linden Chiles +230219,Nazareno Casero +1776749,Jia Min Chantel Teo +1388666,Juan Pablo Zuluaga +190066,Michael Rudder +1365517,David Garver +930313,Steve Dixon +1076721,Ronnie Lazaro +1308806,Eléonore Costes +125029,Sean McGowan +87720,Charlie Higson +1280881,Tenzing Norgay Trainor +1459353,Sivan Raphaely +133217,Roberto De Francesco +1273248,Tessa Albertson +1445786,Fynn Thilker +1473140,Brian McCarthy +21769,Bruno Podalydès +1369075,Luke Camilleri +7393,Cyril Ritchard +1610451,Zach King +231143,Fausto Maria Sciarappa +150587,Katie McGrath +1032549,Consuelo Frank +99241,Jamie Lynn Sigler +105082,Joseph Zucchero +1010010,Jordi Figueras +1297677,Eric Bouwer +1297686,Ivars Brakovskis +41134,Arthur Gardner +82145,Lara McIvor +1175446,Shane Twerdun +1036355,Feroz Khan +1485597,Lucas Brown +585981,Germán Valdés +206626,Zach Poole +1814863,Luke Hawx +118727,Ian Powers +1542652,Songha +1125627,Greta Van Langhendonck +1092927,Einosuke Naka +1254014,Armelle Deutsch +1060474,Sebastian Saraceno +525617,Aleksandr Golubev +93485,Maria Kulle +1352338,Meghan Socha +187470,Angus McLaren +1692500,Sidney Jennings +1746238,Monisha B. Schwartz +1711399,Urara Aryû +28712,Piotr Pawłowski +85734,Sushmita Mukherjee +154582,Pamela Gordon +1719210,Shoba Narayan +1827449,Ambrósio Vilhava +938182,Sturgis Adams +1076701,Dustin Runnels +1816045,Dean Collins +152704,Victor Campos +16818,Joachim Fuchsberger +1294405,Nathan Caracter +1370999,Chris Matheny +136575,Antoni Królikowski +1195526,José E. Felicetti +1636708,Dorota Białowąs +1058279,Jean Paul Ladouceur +1026167,Agda Helin +944953,Derek Morgan +81596,Thomas Calabro +1581210,Jack Rigby +133087,Jim Gillen +1559726,Nita Anastase +228159,Alfiero Toppetti +18972,Danny Masterson +107710,Sally Bankes +60417,Michael Fitzpatrick +224181,Jai Courtney +119341,Anne Firth +235992,Sergey Mukhin +1664574,Mathis Thomas +111534,Gabriel August Gjønnes +1672453,Guy Webster +1169326,José María Angorrilla +79574,Park Won-sang +14776,Dean Riesner +40582,Frédérique Meininger +1774304,Ioana Visalon +1495631,Mario Gaoa +131201,Yōsuke Natsuki +73539,Domenico D'Ambrosio +46919,Thomas F. Duffy +1426907,Fiona Bell +19929,Uwe Fellensiek +1372353,Virginia Da Brescia +124742,Lilia Lazo +237740,Mike Mizanin +1661734,Kunika Lal +1438817,Korum Ellis +67059,Grant Swanby +33412,Alberto Amarilla +1401119,Paul Fox +1404648,Carmen Corley +544265,Bedřich Prokoš +31663,Alexander Fehling +1043255,Predrag Milinković +1800833,Susie Spear Purcell +84404,Esma Cannon +1860430,Richard Antrobus +1849104,Ilian Raad +148255,Giacomo Rizzo +1394428,James McEnery +550087,Masami Suzuki +1093448,Shin'yô Nara +1321912,Ester Rada +954674,Matty Roubert +1030392,Surender Dhavle +956054,Jeetu Verma +1215120,Ted Koppel +1762432,Durwyn Robinson +85437,John Hodiak +1464767,Aydan Cakir +1604095,Ray Fischer +1648879,Pamela Koevoets +590249,Tokihiko Okada +125581,Tiffany Lyndall-Knight +88466,Brendan Hines +88527,Maria Claire +138441,Gôzô Sôma +1793173,Robert Skrok +22855,Erika Pelikowsky +996595,Kato Bijtebier +1848661,Thássia Naves +93952,Danny Daniels +133216,Corso Salani +1677213,Miguel Baldeón +1293392,Miles Luna +1263809,Barry O'Moore +1190332,Masato Yamamoto +150245,Charity Wakefield +1394448,Stephen J. Douglas +216245,Bill Dean +1276789,Kyouko Chikiri +146414,Ron Causey +1446111,Lennard Bensch +1722584,Ramsey Gilderdale +1233821,Aine Ni Mhuiri +545757,Park Sun-young +39783,Moira Lister +64511,Colin Glazer +78697,Antonino Bruschetta +1086063,Winifred Oughton +1214019,Joseph V. Perry +230654,Ryo Tomioka +117068,Shizuyo Yamasaki +216057,Jay McCarroll +79550,Gil Alma +1427719,Jean Kilbourne +1722996,Christopher M. Polito +1268102,Daisy Lee Mothershed +1305589,Wolfgang Müller +1009355,Doris Wells +104390,Ty Randolph +1387704,Fredy Ripers +1583943,Elżbieta Jodłowska +35562,John Steakley +1881534,Jason Steffan +150813,Aleksandr Strizhenov +1203792,Jo Han-cheol +120712,Sheila Ryan +145159,Régis Laspalès +1734185,Cass Comerford +70124,Ikki Sawamura +1746932,Noah Coogler +128164,Madge Kirby +566323,Izabela Kuna +23776,Matt King +1509239,Daria D'Isanto +60763,Hinano Yoshikawa +260361,Emil Forselius +1285570,Elsa Wallencamp +1394042,Adam Mervis +1099007,Nina Ljeti +1494496,Bobbie Thomson +1723621,Xanthe Gibson +109725,Steve Darrell +143670,Judith Allen +36434,Uwe Friedrichsen +1722914,Shinsuke Kawamichi +90337,Don Blakely +921146,Florence Arliss +1546496,Jennifer Nettles +1400600,Daniel Friedman +148892,Wilfred Lau +35546,Chris Palermo +1094177,Alí Rondon +1758598,Prasert Wiwattananonpong +1065016,Thor Kristjansson +190098,Andrew Simms +1035976,Jackie de la Nuez +1718320,Jackie Renee Robinson +17270,Allison Miller +1270830,Martin Ewens +1801687,Maria Junghetu +8179,Edward Finlay +86049,Alana Maria +1313147,Bill Koruna +1042680,Charles Camus +143709,Vladimir Yepifantsev +59824,Gary Entin +1602305,David Ramírez +1581190,Joseph David-Jones +1456427,Ina-Marija Bartare +42289,Tyler Steelman +1678985,G. Patrick Currie +563643,Kaitlyn Wong +28508,Ulises Dumont +1210950,Frank Whitson +1257663,Nikki Hsin-Ying Hsieh +18726,Fritz Karl +63548,Brandon Craggs +1185550,Diana Spencer +1155724,Sam Keeley +1171452,William J. Butler +1316253,Robert McCallum +1673509,The Elderbloom Chorus +236025,Marian Mason +182674,Tony Shultz +1397381,Vladimir Novikov +1262388,Jay Gallagher +1452392,Richard Walter +126899,Arlene Gray +1125959,Lakis Komninos +95076,Krist Novoselic +1160207,Robert Boyle +88549,Heather Robb +1394335,Alexandra Fraser +1716337,Sam B. Cloutier +103655,Herbert Butterfield +230666,Juro Rasla +1683722,Raymond W. Beal +1797588,James Edwards +128249,Maurizio Battista +398791,Mary Scott +907352,Thomas Schubert +36152,Lawrence Hilton-Jacobs +92947,Capone Lee +1116202,Jeff Stearns +91264,Alejandro Antonio +82629,George Stults +235996,Chris Shiflett +1021417,Cai Cortez +1289010,H Victor Weske +126726,Lola Créton +32913,Anne Heywood +1563458,Brian King +92617,Matthew Willig +549602,Meena +131054,Bill Giorgio +1678197,Wayne Sutherland +1473715,Mark Dodson +592632,Adriana Facchetti +152814,Ronnie Corbett +226955,Eloïssa Florez +1791800,Evan Stern +565619,Joseph Mesiano +61536,Aaron Hendry +168872,Jesse Heiman +1398066,Marc Inniss +993854,Benedetta Gargari +347335,Josh Heald +132807,Hideyuki Kasahara +91549,Vadivelu +1601493,Claudia O'Doherty +1623640,Maxton Beesley +1131340,Tayden Marks +115972,Alex Kaluzhsky +1446719,Tony Besson +1891593,Khojeh Nader +1473183,Bjarne Østerud +59116,Steve Le Marquand +222268,Smita Bansal +1384094,Paul Adler +227257,Ingolf Rogde +100129,Eve March +1239675,Hwang Bo Ra +559177,Juliano Cazarré +590919,Steven Dasz +1502373,Raed Abbas +1324222,Paco Moreno +1377948,Nuria Mora +9039,John Ottman +227617,Shûji Kashiwabara +1513868,Bobby Lee +1286340,Jay Natelle +1835526,Ian van Temperley +91645,Sarah Bayes +179522,Emilio Garibay +82242,Stevie Nicks +1278362,Charmienne Harker +1223459,Bronson Adams +11931,Annie Rosar +234026,Marie-Ginette Guay +1075450,Claire-Louise Cordwell +1025523,Guido Wieland +210719,Janina Traczykówna +1172845,Andrew Mayers +1083438,Jackie Monnier +1311152,Eun-ran Jo +1376094,Calvin Hayward +1476099,Jorge Velazco +1009399,Richard Bishop +1328506,Chaams +1748783,Nathan Stein +1102263,Michele Garcia +15200,Jane Birkin +1630993,Gurdepak Chaggar +1367102,Andre Alexsen +1155284,Esa Septian +83191,Roger Jendly +1745597,Judy Carrington +55927,Catherine Arditi +1522643,Benhur Abalos +1028274,Serik Aprimov +42071,Zsolt Nagy +127670,Kiko Mascarenhas +1235476,Jeong Bo-seok +114233,Jack C. Williams +1423079,Falete +931760,Rhett Wilkins +90083,Michael Silva +1362816,Gabrielle Walsh +120551,Gloria Saunders +1653479,Nitesh Pandey +106998,Warrene Ott +104156,Ann-Marie MacDonald +131842,Casanova Wong +27392,Enrico Lo Verso +1384105,Richard Pleuger +1218610,Martha Stewart +935420,Vladimir Golovin +117492,Cheryl Scungio +79914,Claire Vardiel +1689751,Анатолий Азо +1880901,M.G.M.S. Zulfick +1113722,Gautam Joglekar +1465470,Zak Hendrikz +1090694,Nicole Boccumini +1483240,Emmanuel Dabone +931912,Sergei Yermilov +1467941,Roland Ruiz +1624616,Seth Mnookin +1704671,Elizabeth Hackler +1755,Majel Barrett +124143,Jozef Kroner +87209,David Longworth +543734,Lauren Schroeder +211029,Frans van Deursen +148388,Kai Lehtinen +41645,Clara Khoury +37345,Isolde Barth +95635,Michelle Nolden +114461,Carlos Areces +129248,Yuval Semo +1789156,Ike Kawaguchi +45250,Howard Douglas +933065,Jim VanBebber +938895,Nico +211658,Alexandra Carl +135691,Johan Kylén +580785,Mayilsamy +1734735,Steve Steinlauf +1180945,Percy Daggs III +229364,Jean Taylor Smith +1068158,Carmel McSharry +21052,Jack Valan +9089,Margaret Livingston +1495425,Michelle Gillette +1095755,Else-Marie Juul Hansen +588319,Stephen Tyrone Williams +237953,Héctor Morales +1204677,Chenkon II Carrasco +110727,Virginia Leith +1562095,Ulli Ackermann +1400776,Monica Mitro +209389,Karin Nellemose +1089164,Raymond Gérard +127633,Connie Laird +1210344,Maarit Rinne +569938,Iva Babić +1863888,Ricardo Pettine +1865183,Chelsea de Puyjalon +62487,Michael Denkha +1147919,James Pasierbowicz +1320567,Sally McKenzie +1724360,Victoria Fairchild +1477507,Monika Biciunaite +1571654,Sophia McGregor +85045,Neil Nitin Mukesh +1412288,Jake Davies +995626,János Greifenstein +1041228,Fatima Trotta +1230588,Max Faulkner +1750915,Meletis Rapaj +81479,Lulu Molina +937371,Benjamin Webster +1196107,Chan Wai-Ling +1653233,Sophie Reynolds +20301,Justin Kirk +9241,Pietro De Silva +131696,Maciej Stuhr +1079366,Josh Allen +1501044,Wioletta Michalczuk +83598,Sonia Iris Lozada +1308745,Karen Renee +147893,Louise Cliffe +20892,Anastasiya Nemolyaeva +1436274,Xiaoluo Mo +91022,Aria Curzon +140900,Felix Ward +1394345,Sharon Coleman +1270453,Oliver Exley +1788329,Anita Carter +1205630,Ben Peel +13812,Tilo Prückner +1683758,Alexander Schuler +116776,Alexander Woollcott +1445602,Jude Swanberg +1710074,Jean-François Fagour +109785,Krystal Mayo +127399,Aleksandra Yakovleva-Aasmyae +131439,Sarah Desage +1110448,Cihat Tamer +1170305,Victoria Sáez +1243973,Nitish Bharadwaj +1190266,Leonid Bronevoy +1870855,S. Gusev +82240,Lindsey Buckingham +137970,Matthew Jordon +1220123,Gwilym Lee +111533,Knut Morten Brekke +115606,Cyril Chamberlain +1267375,Anna Akana +239264,tara ballard +964971,Manish Dayal +1074070,Gloria Paul +1264260,Alex Mandel +1436161,Hangyu Tian +1263937,Cheryl McMahon +1296405,Jo Kukathas +1789175,Alex Trevino +1653013,Justin Barr +1205392,Gianni Zullo +1784720,Joe Brenckle +55346,Carla Weindler +106279,Alberto Fernández +1114534,Þorlákur Kristinsson +194477,Susan Lucci +43876,Anthony-James Ryan +127874,Linda Rybová +105462,Geraldine Wall +74618,Katrina Bowden +1379973,George Ali +96038,Natalia Dove +1382707,Anitra Stevens +233695,Toshiyuki Nishida +76790,Rajendranath Zutshi +1153066,Claude-Michel Bleau +1434982,Rajesh Joshi +94114,Lillian Bronson +1579271,Joonas Suokko +140023,William Reta +1200210,Tokiko Mita +1512149,Kenny Davis +1808414,Teresa Negrão +147420,Yehezkel Lazarov +145290,Rasim Öztekin +565456,Sheila Chan +1275944,Juliette Bennett +236799,Jón Ormar Ormsson +24064,Imke Büchel +1414377,Sándor Söth +234532,Secun de la Rosa +1813770,Mollie McGregor +1559695,Chesse Daves +3680,Hilda Trevelyan +1206374,Yûna Natsuo +134084,Hunter Allan +1589607,Natalie Hulla +111065,Katarina Žutić +144004,Freeman Wood +124687,Ciera Payton +1009255,Jason Trost +207453,Ptolemy Slocum +1369071,Kate Bateman +53259,Michael Raymond-James +97210,Ayako Wakao +54933,Harold Wagner +1651385,Roman Green +59413,Ben Garant +1153526,Dmitriy Podnozov +1357721,Marvin Kane +1058651,Cassandra Nix +1293485,Sasha Samar +1664126,Alessio Fantozzi +1707960,Ella Hill-Cotter +99689,Deng Chao +1816415,Travis Bacon +1134388,Matthew Hawkins +1563444,Marija Novak +1397783,James Freedson-Jackson +132354,Kate Micucci +558883,Tim Rock +1151637,Lora Martinez-Cunningham +60038,Marcus T. Paulk +168610,Kathleen Munroe +133333,Travis Milne +1023515,Marta Belenguer +1072040,Nopachai Chaiyanam +4611,Mace Neufeld +1140881,Christian Potalivo +1650306,Christin Sawyer Davis +179028,John Young +16807,Natalia Avelon +1323480,Heiko Obermöller +1171437,Paul Hamy +1283053,Samuel Cloud +1031212,María Luz Galicia +1769773,David J. Porras +1123937,Sammy Blum +1205489,Shinji Ikefuji +1329572,Brandon Cyrus +19355,Janus Dissing Rathke +1611434,Helena Abella +1065549,Genevieve Nnaji +2884,Darren Dalton +131563,Jun Fukuyama +1584569,Calum Sivyer +136551,Dewey Stringer +1819136,Logan Ludwig +1032088,Joseph Hamilton +1088431,Shamna Kasim +1111996,Didier Faya +1257307,Luiza Valdetaro +1800027,Jamiu Giwa +1190345,Andrey Mironov +168554,Christie Laing +1381319,Keiichi Enomoto +118300,Kathleen Crowley +1106964,Jan Bijvoet +131418,Brett Brock +1011212,Elton LeBlanc +1169235,Takatarô Kataoka +45268,Jürgen Rißmann +20831,Keiko Tsushima +35539,Andreas Brandt +1802462,Mariola Mlekicki +1452608,Toni Hristoff +1277017,Doug Drucker +175743,Krista Rae +96688,Javier Rey +1755171,Elena Harding +1135404,Kendall Toole +544022,Helle Merete Sörensen +1759676,Sagan Rose +1002600,Amandine Dewasmes +1222726,Jacob Zachar +1304663,Cody Stauber +523979,Autumn Federici +1036825,Stella Schnabel +1697976,Yeh Hsing-Chen +1277214,Dino Maronetto +1155125,Nicholas Bateman +1687764,Boris N. Petrov +1795336,Kris Russell +218139,Julie McWhirter +1872632,Go Joon +110908,Taylor Firth +127433,Queenie Chu +157961,Michael Goodwin +26171,Pierre Frag +593084,Pihla Maalismaa +18068,Helena Bergström +1455179,Kirk Barker +1386778,Melha Bedia +49433,Lukas Ammann +1391343,Antoni Khodursky +85414,Hugh Daly +1615543,Lou Wick +78659,Derek Magyar +571346,Carsten Bjørnlund +112042,Richard Whiten +1006802,Clay Clement +1261370,Meegwun Fairbrother +1385277,Barry Armitage +1070870,Shawn Parsons +1871192,Stephanie Gernhauser +1074586,Àlex Maruny +1531660,Jay Pugh +19828,Oriol Vila +1650202,Marc Anthony Lowe +136479,Seth Willenson +80230,Lino Banfi +1694305,Lalo Rotaveria +90772,Kirsten Storms +570199,Tingsui Tang +1162329,Michael Mattera +72660,Glauco Onorato +1820212,Marylou Mellace +1442882,Godfrey Ojiambo +1117503,Ron Kennard +1398214,Chad Mayate +78552,Andrei Arlovski +1880338,Massimo Maffei +119244,Jun Fubuki +135670,Panos Mihalopoulos +1714037,Chanel Hoxha +1860081,Shailesh Pandey +1141872,Terry Lau Wai-Yue +1663379,Dimitri Karystinos +1440458,Chalie Wong +545450,Catherine Hessling +169747,Sean Rogerson +1077360,Michael Harris +567138,Lucy Owens +1175310,Wong Chi-Sang +1507325,Assaf Ben-Shimon +1869471,Tracy Wiggs +56603,Ivonne Schönherr +1527103,Carlos Fernández +122287,Abdul Henderson +1415412,Cory Gooding +1030690,Paolo Conticini +1446115,Marcel Schiessendoppler +932525,Aleksei Maslodudov +22191,Peter Maffay +145131,Jacob Wysocki +1084973,David Remnick +83995,Brian Regan +1776841,Tua Kealoha +28432,Max Mauff +91580,Christa Hughes +1061053,Ana Villafañe +239464,Jordan Hayes +1663788,Drew Haytaoglu +127733,Bob Morley +6360,Dorothy Tristan +1356630,Charlie Murphy +104132,Jack Maturin +1743678,Saara Forsberg +71362,Christina Becerra +86966,Justin Ament +8010,Doug Sweetland +1825690,Natália Guedes +96309,Chase Masterson +1683136,Budd Landreth +1264077,Kent-Arne Dahlgren +1273239,Mustafa Harris +1025375,Wiz Khalifa +1785337,Ludivine de Chasteney +1287514,Enea Gabino +74607,Autumn Reeser +1031255,Israel Islas +115973,Stephanie Danielson +1440855,Ian Villalobos +558084,Christopher Dibb +231332,Cyril Lecomte +142604,Rene Ashton +132100,Godfrey Winn +1457792,Einari Ketola +111068,Mihajlo 'Bata' Paskaljević +971464,Donald Oliver +227932,David Garrett +1312166,Dylan Llewellyn +36837,Carl Raddatz +1117073,Mike Delia +7882,Jeff Pidgeon +1718452,Richard Blake Suarez +429275,Gerry Dee +930764,John Hoey +474050,Peter Cunningham +200915,Richard Doubleday +4643,Ermin Bravo +1090947,Neil Broome +550472,Samantha Beaulieu +1528361,Jacey Margolis +1859935,Jude Koyaute +1218506,Justin Weaver +1849103,Gina Jimenez +1534585,Tom Reynolds +94983,Brendan Hill +159599,Noah Beggs +548112,Radovan Lukavský +1448862,Nikki Pierce +177434,Frank Gifford +238977,Ching Li +1891594,Yasin Tavildar +1717374,Manikandan R Achari +1878453,Riccardo Gasparini +1190267,Kate Bayley +143279,Peter Sellars +73454,Kristen Hager +139388,Kaci Starr +232941,Catherine Walker +52935,John Francis Daley +95403,Nadia Sahari +1572390,Gianluca Cesale +1074096,alkis kourkoulos +1531607,Tiffany Laos +229634,Sebastian Armesto +1871429,Carmine Battaglia +95655,Bárbara Rey +27661,Mahjoub Raji +205984,Michael Grant Terry +1423924,Judd McMichael +44828,Robert Logan +296274,Diego Muñoz +1566911,Gaurav Pandey +1052191,Alexandre Delamadeleine +1849124,Barbara Lambert +557185,Alexandria Benoit +1071374,Jan Bruijn +1233494,Joe Feeney +1221100,Maki Saito +1222219,Julie McNiven +163333,Kevin Tate +958556,Hou Yong +965819,Finley Jacobsen +7572,Thom Hoffman +1791280,Daron Stewart +932696,Chelsea Edmundson +1068123,John Waters +227841,Tess Atkins +589244,Wanda Koczeska +99539,David Brandon +1496067,Adam Morris +125444,Iván Fenyő +91315,Cleve Hall +1117804,Anartz Zuazua +27279,Massimo Sarchielli +978996,Ashlynn Ross +1836261,Manuela Mulé +1243498,Ferry Doedens +129347,Martin Grace +16823,Jimi Blue Ochsenknecht +90466,Ferelith Young +1110482,Adele DeGarde +120017,Sandra Ambrosini +1710114,Piero Vivaldi +1493242,Anna Rose Hopkins +1041557,Gary Watkins +229769,Manel Dueso +16016,David Brian +1811521,Teje Tesfahun +1120855,Mini Tabassum +1129116,Clarence 'Big' Miller +1388482,Jay Oringer +1199754,Jay Farrar +140217,Agnieszka Glinska +124288,Rea Mauranen +1665414,Manju Sunichen +1459887,Aleksander Czajczynski +1232084,Travis Caldwell +223906,Evgeniy Grishkovets +1711062,Cha Ji-yeon +39426,Sylvia Kuumba Williams +1187052,Oliver Petszokat +1467975,Will Harris +1718496,Denise Garcia +1448860,Mary Mikva +82967,Masako Natsume +195813,Ken Norton +932490,Lan Yin +135722,Douglas Johansson +146092,Claude Despins +930173,Raphaël Ferret +236821,Ekaterina Savinova +549567,Glenn Doherty +1260554,Sarah Minnich +51430,Giancarlo Bastianoni +1630316,Tamara Akins +575938,Norman Anstey +1216132,Aaron Hill +1413438,Peta Shannon +60348,Dave Legeno +78430,Julianna Guill +1827460,Luiz Mário Vicente +998687,F.E. Miller +1001736,Mandela Van Peebles +1863891,Gabriel +929295,Josi Antello +1776539,Patricia Schell +1375269,Tony Allen +95733,Rory Mallinson +1891492,Carolyn Strauss +1021562,Carla Crespo +32818,Aglaia Szyszkowitz +1254927,Erkan Petekkaya +1383059,Nadezhda Lumpova +1129823,Valgerður Rúnarsdóttir +1237059,Edward Jaunz +47769,Ingrid Rogers +1164111,Alba August +1905850,Gianmarco Pozzoli +1380840,Jordi Vila +37244,Franz Dinda +139687,Michael Latimer +132153,Maho Nonami +1090077,Néstor Garay +125948,Ani Miyoshi +25842,Louise Chevalier +6259,Hilde Wagener +1493722,Elektra Anastasi +23172,Florian Brückner +1591687,Yusaku Terashima +138398,David Kasday +941301,Agustín Silva +106572,Martha Raye +1381499,Edith Lyle +53845,Philipp Baltus +1239425,Howard Hoover +1813995,Aaron Matthews +1768829,Pascale Sabbah +1159937,Eric Trung Nguyen +1482622,Lola Montero +1541161,Keith Johnson +30802,Susanne Kliemsch +1593390,Yassie Hawkes +932753,Dimitris Papamichael +586396,Vincenzo Musolino +1421245,Selam Tesfayie +1385265,Steve Effler +92876,Paul Conway +142895,Mr. James +238527,Aleksandr Dedyushko +1593038,Bilal Dardai +1581229,Mira Bosanac +1440574,Charlie Plummer +94334,Tom D'Andrea +24931,Dany Carrel +1663040,Kazuo Sumita +87726,Willie Andréason +1650169,Coley Campany +38888,Seth Gabel +145087,Dominique Jacquet +1423442,Pano Masti +1447782,Tina Desai +1395904,Nikki Tyler-Flynn +71154,Peter Mygind +938770,Caroline Mckinley +49056,Martin Wuttke +232884,Gianfranco D'Angelo +937792,Sean Tucker +1090696,Melinda Fleming +962938,Andero Ermel +1502451,James Taku Leung +1697396,Emma McIsaac +1803072,Bill Roberts +1053669,Ryann Campos +87747,Dandy Nichols +80755,Mao Daichi +32197,Michael P. Flannigan +1366830,Jessie Fraser +1879745,Salvatore La Mantia +1687930,Edward Lees +1194820,Karl Gysling +1651536,Maria Ekblad +1019253,Diane Cassidy +1184306,Robert Uricola +131732,Xiong Xin-Xin +60062,Scott Subiono +1215264,William Salyers +262023,Jimmy Cummings +1357824,Rory O'Shea +1689241,Jana Allen +1408008,Melih Ekener +1695144,Clark Baker +1063885,Akira Yamanouchi +1080199,Kyôko Hanyû +1099654,Devin Denicola +100317,Ramón Lillo +1506490,Valentina Hurtado +170237,Frazer Smith +53503,Bernhard Minetti +173455,Ross Harper +124577,Kerry Beyer +1634060,Jacob Yakob +109833,Peter Ferdinando +130680,Sameer Kochhar +1235179,Sanjeeda Sheikh +1484031,Yoshiyuki Uemura +1835268,Shieda Orr +1749486,Virginia Ávila +72782,Toni Servillo +1030289,Joan Goodfellow +1604107,John Rodiger +1559694,Jonathan Adams +77287,Anne Reid +59234,Jeremy Guskin +1056790,Harry T. Morey +1148398,Saroj Khan +28733,Roxeanne Hazes +1754595,Brad Gage +111451,Matt Corboy +124847,Ric Roman +575788,Bridgette Potts +146974,Mandira Bedi +1027643,Michelle Creber +1112344,Hideo Fujino +90410,Jon Funk +229938,Carlos Echeverría +267236,Jose Canseco +1440445,Au Tsui Yea Maggie +71296,Ugo Conti +146697,Sam-soon Lee +1797410,Mahalia Martin-Jones +132193,Pietro De Vico +82338,Michael Cunio +94055,Lisa Niemi +100842,Concha Cuetos +144050,Edward Connelly +45197,Magdalena Montezuma +1221739,Jo Enright +26853,Michael C. Williams +1342463,Grace Victoria Cox +73551,Marian Saastad Ottesen +96175,Ann Lynn +1754820,Madiyar Nazarov +1828325,Hans-Dieter Brunowsky +210695,Jesse Williams +4758,Joely Fisher +1663378,Sassa Kazeli +1656885,Lawan Hiwpong +1167148,Giovanni Ciccia +1630350,Richard Valdez +1244459,Kaoru Morota +932986,Megumi Oohara +110801,Lisa Vischer +1494958,Lui Villaruz +158223,Rib Hillis +128800,Amy Brentano +239260,Ahmet Kural +126220,Margot Berner +12898,Tim Allen +1185618,Paulo Gustavo +27940,Derrick De Marney +1117096,Rachel Hirshorn +938998,Jim Grodin +1128886,Alexander Martella +86305,Riya Sen +53329,David Sproxton +130761,Yann Yann Yeo +583509,Neena Gupta +43663,Kirin Kiki +1503910,Sam Houston +567575,Alexandra Richter +937793,Allison Brennan +1128314,Shirley Norris +1722988,Monique Vukovic +151115,Rebecca Kush +1375141,Luis Deveze +1392775,Erik LaRay Harvey +1545525,William Cross +1296200,John Carlos Huenchuano +1441844,Asbjørn Krogh Nissen +50020,Scott Patterson +1336610,Kitty +1685662,Amber Rivera +68472,Kappei Yamaguchi +1402935,Henry Hastings +1073988,Ulrike Mai +97989,Louise Fazenda +1489045,Antonio Tabet +1185976,César Abánades +74723,Trine Wiggen +575727,Jose Verheire +1893384,Darr Wittenmyer +1199621,Stoyan Gudev +1118114,Robert Benz +84910,Kim Sang-Joong +84619,Takeshi Kaga +1115141,Dixie Lauren +145340,Hasibe Eren +108210,Ryan Slater +1276266,Miquel Gelabert +1673478,Adam McMonigal +150638,William Haines +1423664,Chase Joliet +29143,Käthe Haack +1522705,Miray Akay +98877,Matt Emery +1331269,Maddie Howard +1433307,Boguslaw Kierc +109156,Katia Winter +1492238,Susan Dolan Stevens +1501340,Lui Ruilin +97242,Barbara Mullen +1763719,Dany Bouchard +1185479,Johnny Fortune +1114554,Friðrik Steinn Friðriksson +1707750,Lauren Gregory +932999,Jessica Andrieu +31593,Martha Elena Cervantes +1880147,Viktor Hernandez +1651954,Casey Groves +1106195,Jesús Briceño +1261406,Miklós Bányai +1874281,Benedetto Raneli +129575,Sergio Graziani +115980,Jolynn Carpenter +1234753,Kim Morgan +96407,David Essex +1281126,Paolo Bessegato +1211193,Chelsie Preston Crayford +1727925,Ann Morrison +94924,Iván Espeche +1133958,Bahri Beyat +1714883,Miguel Perez +1296199,Lorenza Aillpan +1285414,Willa Cuthrell-Tuttleman +1900164,Marc Canonizado +1707892,Gerrard Woodward +1330700,Amélie Gonin +929109,Keston Wing +1450380,Anton Narinskiy +93124,Raffaella Carrà +1085087,Meredith Thomas +1467970,Richard Robichaux +579330,Tiger Hu Chen +76689,Sarah Brightman +88854,Olavi Uusivirta +151113,Angela Funk +1112010,Joaquim Carvalho +1426656,Mollee Gray +62318,Shin'ichirou Miki +563104,Allison Fruet +238923,Alex Jolig +1349743,Mazlum Kortas +1794828,Anthony Jarvis +1351859,Patrick Zard +27780,Hitomi Satô +20057,Michelle Fairley +1210347,Marita Vienovirta +1344724,John Westford Jr. +1862856,Maurizio Lops +1114244,Maarten Meeusen +1140904,Nada Đurevska +1240218,Jang Keun-suk +1593370,Tonya Guadalupe +1041551,Thomas R. Voth +1204379,Kevin Guthrie +74359,Lee Tockar +1863672,David A. Flannery +1326574,Lisa Hannigan +12243,Donald M. Ashton +1874735,Benjamin Lund Lassen +1783652,Sam Furman +184475,Mort Ransen +1467459,Jarold Clifford Lyons +240742,Guillaume Cyr +553504,Shanley Caswell +1771556,Nicole Michele Sobchack +223050,Nick Principe +27636,Edward Hall +55729,Pavel Trávníček +34181,Danny Mummert +66758,Ray Harryhausen +145310,Philip Arditti +1289946,Gabriele Rendina +1324776,Marvin Kline +27663,Alan Parnaby +1175834,Nicole Dubois +238495,Carlo Luca De Ruggieri +968292,Clemmie Dugdale +1073411,Adam Stardust +1071456,Giovanni Vernia +112112,Hugo Carvana +1666304,Doyle Devereux +1544966,William Zacchi +59152,C. Gerod Harris +1055303,Miroslav Machácek +932039,Sébastien Loiseau +1412782,Mikal Vega +1189054,Marie-Jaoul de Poncheville +1574443,Neamat Arghandabi +149549,Lindsay Taylor +1129801,Mindaugas Capas +126713,Elizabeth Marvel +1754446,Renaldo Brady +1164967,Jean-Louis Frémont +1114063,Sofía Oria +1062704,Petter Kevin +1123784,Armand Verdure +1844334,Fiona Hendry +127016,Bebo Storti +1394470,Jack Alcock +27639,John Francis +19356,Elin Reimer +1859974,Carla Monti +1720917,Jill Dalton +1656891,Boogburg Jatkarn +1331602,Mario De Candia +101787,Darryl Nau +1640385,Antônio Fragoso +1789755,Tawn Mastrey +1609286,Sheila Cochran +76317,Rolf Degerlund +1410542,Chris Majors +1902104,Tayler Valentin Kingston +963885,Randy Gambill +1196388,Kevin Dust +1037997,Dustin Guy Defa +1207268,Carvon Futrell +18907,Richard Quine +1523990,John Phelan +583768,Michael Guy Allen +109714,Laura Soveral +103217,Tiziana Arrigoni +1109623,Udi Persi +1068145,Jessica Grabowsky +60294,Steve Makaj +1769594,Mayra Juárez +1607840,Margarita Ruhl +1257860,Jessica Shea Alverson +80109,Marla Sokoloff +223860,Manjot Singh +1507579,Laurie Kynaston +140584,Charles Lampkin +1288449,Wang Jingchun +1291700,Jeremy Furtado +1523221,Tuija Halonen +1662294,Puneet Vasishtha +1338898,Denise McCormack +1104716,Amparo Arozamena +229981,Napoleon +1150902,Vladimir Aleksandrov +145025,Julieta Zylberberg +1400597,M.C. Schmidt +191883,Lisa Guerrero +1816960,Graham Davie +1138806,Antonis Papadopoulos +1870823,Lika Kavjaradze +1206599,John Chriss +1536116,Inga Leps +1302051,Sandra Riva +232204,Alexandra Huxhorn +93808,Dr. Erik D. Demaine +1157588,Paul Spera +1382185,Greg Wilken +1851691,Doug Jarecki +550521,Amanda Tilson +1758595,Sunon Wachirawarakarn +575496,Arne Lindblad +94199,Cleo Moore +1196850,Don Martin +1699955,Libero Risi +1600869,Masaharu Kan +230664,Hracko Pavol +1355570,Muratbek Ryskulov +1173614,Sélica Pérez Carpio +81511,Mácsai Pál +1510943,Emily Anne Graham +1850508,Geoffrey Hoffman +1116152,Shae Keebler +145403,Zeynep Tokuş +1312500,Katarina Stegnar +1760466,Luz P. Mendez +342100,Shivani Ghai +1382977,Abel Vitón +226954,Alain Azerot +1436148,Ma Jingjing +6271,Inga Busch +1117289,Lorenzo Catlett +210157,Angelique Midthunder +1422103,Claudia Simmons +1231144,Rhea Durham +237687,Daniel Balaji +183737,Jan Nemejovský +1707893,Josephine Croft +549115,Nina Jiránková +1388479,Tyler Jon Olson +1686957,Stacie Davis +143264,Trey Burvant +1255538,Livia Brito +1449638,Daniel Laur +1711406,Rika Hoshina +86225,Reema Sen +1427409,Konstantin Zeliger +228264,Oleg Sheremet +1208758,Jules Cowles +928148,Alina Levshin +1464090,Robert Maaser +1835528,Ian Pead +141463,Simon Quarterman +84899,Melissa Bacelar +592719,Clermont Jolicoeur +1327166,Pongsatorn Sripinta +1849111,Berthy Savin +1289274,Kelly Gremli +144867,Jim McManus +237447,Svetlana Toma +1511042,Paula Phelan +1474869,Thomas Le Douarec +1759914,Jean-François Boisvenue +1066361,Bruno Lopez +1537626,Malik Bazille +1663866,Emília Gresicki +1665257,Dylan Tucker +1269835,Ted McNamara +230719,Denis Paramonov +1347840,Anna Demyanenko +931162,Jack Antonoff +110909,Rob Mayes +1033495,Titos Menchaca +1695142,Matthew Castle +1657455,Kyosuke Takamatsu +1168761,Anabel Sweeney +57321,Jeanette Biedermann +1246620,Lillian Porter +203315,David Patrick Green +138626,Glory Fioramonti +131308,Cyril Gueï +552525,Daniella Garcia-Lorido +1452467,Isabelle Rosais +1349724,Goldy Greaves +1539215,Kyle Bradley Donaldson +1868456,Sophia DeJesus +120157,Enrico Silvestrin +36948,Dominique Paturel +132926,Marcelino Cruz +1862890,Ken Love +565318,Svetlana Stepchenko +98782,Dana Ghia +1088620,Sophie Rundle +41002,Edith Adana +1200687,Kasym Zhakibayev +1050503,Shah Nawaz +76333,Camilla Frey +30929,James Mitchum +53772,Patrick Maléon +97368,Roman Madyanov +1717473,Ashleigh Murray +1074616,Vladimir Furdik +1608972,Eleonora Giovanardi +164973,John Wilder +1633135,Kim Min-Kyo +1680822,James R. Sweeney +1112453,Zach Irsik +1606371,Bennett Dammann +33156,James Merendino +1676734,David F. Hughes +930110,John T. Smith +130385,Ruth Chatterton +1496510,Seth Gueko +120790,Gloria Warren +1798342,Grace Gawthrop +214299,Sammy Williams +127635,Noelle Middleton +1746136,Amy Lyn Elliott +82124,Jonas Ball +104017,William 'Stage' Boyd +1427948,Pete Davidson +1439738,Swaroopa Gosh +47647,Christian Rubeck +559716,Bruno Gagliasso +78803,Hans Kesting +1288766,Blake DeLong +997845,Brian Shoop +27268,Samantha Shelton +16513,John G. Avildsen +11840,Patrick Troughton +76329,Johan Wester +557267,Valentinas Masalskis +1656059,Matthew R. Staley +1434836,Robin Meloy +18584,Foster Hood +177300,Jackie Torres +1704653,Ninja N. Devoe +1622094,Logan Coffey +1423076,Aureli del Pozo +1795141,Keith Lucas +1646730,Clifford Tatum Jr. +1091541,Ruggero Diella +1735509,Mariann Sullivan +1137518,Antonino Faà di Bruno +133789,Brenda Joyce +577430,Patrick Le Bouar +1003384,Ricardo Rodríguez +588039,Andrey Kislitsin +1065397,Nine-Christine Jönsson +237383,Nathan Stevens +995458,Jessica Tyler Brown +1358980,Chris LaPanta +1542758,John Early +84865,William Houston +1898232,Vitomir Jefić +82605,Mirrah Foulkes +225377,Griffin Newman +82103,Haaz Sleiman +1552955,Norma Burgess +1136032,Margaret Morosetti +51990,T.J. Miller +39773,Jeff Alexander +1444273,Merlin Crossingham +1246804,Lenny Jacobson +1796927,Homer Hunt +1209113,Amy Rochelle +87284,Terryn Westbrook +1651054,Steven James Williams +241558,Karen Michaels +1398558,James Bailey +1171953,Kim Jong-gu +1208904,Henry Stone +1683152,Ronald Ssemaganda +1006783,Bernie Diamond +1760899,Ian Kay +11929,Hertha Feiler +1723719,Maja Aro +1759636,Brittany O'Connor +1611028,Dave Tolentino +114036,Evan Helmuth +27962,Kasper van Kooten +1887301,Carlo Montini +1167117,Michael Daeho Chung +237471,José Orjas +188401,Dermot Morgan +1401957,François Germain +136413,Nancy Hall +166358,Ken Mayer +1127917,Selman Lokaj +1865841,Nuno Vaz +491560,Brittany Adams +1611780,Laura Aleman +586625,Ajay +1381508,Álex Nova +1853897,Karl Goldenberg +1245743,Alyssa McClelland +1189690,Boļeslavs Ružs +1097457,Mark Sheals +1871522,Massimiliano Vitullo +1867765,Anant Kumar Nayak +141525,Matt Lauer +106642,Brody Harms +1357956,Billy Russell +1508190,Danny Bryck +1174316,Hashem Arkan +1029087,Reijo Viinamäki +91302,Chad Allen +1719585,Sarah De La Isla +32946,Catherine Wilkening +588830,Eman Xor Oña +64435,Jaycee Chan +82915,Lyoto Machida +1630266,Ken Early +998412,Oh Jung-se +182535,Linda Grovenor +109332,Oscar Redif +1647137,Dean Sothern +1275946,Bradford West +88975,Mala Powers +1187662,William Humphrey +40424,Helle Fagralid +933515,Saik Nee Ng +1615574,Raj Lal +234129,Tiina Weckström +396609,Nadja Weiss +1649388,Grant Collins +81235,Тихомир Станић +1877716,Marley Otto +133257,Virgile Bramly +1121241,Akira Otaka +544575,Stefano Patrizi +1849987,A.D. Johnson +19812,Laura Cepeda +1891817,Piero Misuraca +1402424,Sarah Suco +120979,Artur Rolén +7198,Charles Borromel +234568,Barbara Sarafian +985077,Julia Govor +1733288,Paul Renteria +1155641,Kumi Nakamura +1841499,Adam Nortfors +1187207,Cateline Alteirac +1489477,Otar Zautashvili +1038110,Joseph Bee +1616089,Catherine Thierry +96669,Evan McGuire +80647,Glenn Tryon +1656879,Ittipol Silaorn +1694306,Carlos Alejandro Lopez +1027113,Marcy McGuire +1300129,Lisa Drake +107775,Zhang Jia-Yi +34450,Janet Burston +64383,Anson Leung +928545,Rivers Cuomo +143735,Lyanka Gryu +1517547,Vanessa Amaya +1874733,Lars O. Nielsen +152486,Felicity Price +101240,Carlo Gentili +596378,Robert Coogan +1394770,Zoë Bright +1744819,Diplome Amekindra +238696,Olga Popova +90596,Katie Featherston +1179488,Sachiko Chiba +222379,Volkmar Siems +1155279,Bunga Citra Lestari +1221716,Melissa Rauch +1794817,Fiama Fricano +1840496,Garreth Hadfield +1878444,Andrea Pennacchi +1207888,Jessee Foudray +1838948,Olivia Marei +929322,Yi-fan Chen +131683,Fabio Volo +1373528,Margherita Vicario +145313,Uri Gavriel +222719,Erika Young +115976,Lila Urda +1174580,Deniz Güngören +1888584,Georgia Giannakoudi +553329,Tadanori Yokoo +1482162,Mateusz Kościukiewicz +87868,Bert Geurkink +939457,Adam Greydon Reid +140415,Ann Michelle +1625137,Gérald Garnier +117309,Burgess Jenkins +83854,David Dastmalchian +40619,Ewa Krzyżewska +1078735,Mitzi Mayfair +1707343,Eiji Inoue +995470,Camille Cregan +32886,Jean Lapointe +1890510,Betty Adewole +1155332,Bryan Head +1350111,Lorenz Martinez +1334270,David Assaraf +130036,Nelson Xavier +111420,Lars Eidinger +1086572,Sonja Runar +568241,Art Fox +1870832,Givi Chichinadze +1119,Robbie Gee +565503,Cameron M. Brown +1348600,Dragana Atlija +114677,Michel Voïta +94029,Claire Kelly +1404647,Barney Lanning +1845743,Robert J. Malyk +1126668,Lars Andreas Larssen +1196064,Kai Schmidt +1062708,Markus Wilson +24063,Aksana Assmann +1662463,Nicole Broadway +567557,Joe Cross +1358596,Shane Hart +126932,Elisabeth Röhm +1264129,Ney Matogrosso +1310711,Lisa Loven Kongsli +1379064,Reuben Dabrow +1334197,Arvydas Lebeliūnas +105085,Byron Mabe +1868297,Lisa Marie +38143,Miha Baloh +935295,Peter Girges +177008,Ray Chang +590242,Maurice Bénard +86028,Khan Jahangir Khan +137008,George Brenlin +557379,Nikita Emshanov +1216346,Chris Edgerly +1165742,Anastasias Kozdine +1197580,Pamela Bosley +583792,Adir Miller +61783,Brendan Clearkin +1674152,Harrie Hayes +1619183,Aiko Masuda +1429730,Louis Hippe +1854449,Italo Celoro +122655,Toshio Kobayashi +1158769,Michał Pawlicki +2289,John Barry +34866,Paw Henriksen +89091,Onslow Stevens +1496074,Tracy Yarkoni +1427393,Alberto Dinache +1346848,Yeon Woo Jin +1774105,Patrick Pitu +1707840,Vanessa Kicker +932043,Mouloud Akkouche +1001947,Rachel G. Fox +129023,Mike Mayhall +1584101,Al Bell +1771526,Christian Gonzalez +76669,Wayne Brady +572061,Jonatan Lindoff +91581,Kevin Sherlock +1784609,Vanessa Ryan +1420034,Tung Lam +1147896,Malcolm Frederick +35324,Anne Alvaro +180105,Cameron Graham +1337984,Marco Marchese +73883,Rene Naufahu +581228,Zuleica Dos Santos +52236,José Muñoz +198886,Philip Casnoff +25838,Caroline Cellier +57345,Alessandro Gassman +1604098,Annette Goodman +1648785,Tol Kunthea +1478649,Devyn Stokdyk +1764132,Gunther Effler +178442,Hal Torey +101017,Johann Urb +1240679,Alison Burrows +202240,Clive Cazes +28605,Markus Schleinzer +1720591,Golan Yosef +1343828,Joey Eye +1107773,Yumiko Takagi +73609,Nicolas Wright +83620,Dale Evans +239573,Anna Speller +32673,Richard Harrison +158221,Simmone Jade Mackinnon +1841965,Duncan Elliott +550297,Aubrey de Grey +430152,Owen Pearce +201665,Eve Best +1240440,Sara Khan +165897,Tom Clancy +145500,Murat Yildirim +1033470,James Lentzsch +94482,Natasha Calis +1180095,Mutiyat Ade-Salu +1235614,Kasper Michaels +1087599,Lino Omoboni +61854,Shane Edelman +51361,Hans Fitz +10624,Rudolf Lenz +56571,Wolf Haas +1788269,Muriel Minot +1730666,Marie Michaels +1394429,Jordan Patrick Smith +1851688,Megan Genthert +393420,Anna Ukolova +593020,Bhakti Barve +137048,Robert Kotecki +30809,Dwight David Frye +1049841,Ennio Balbo +45469,Claudia Jennings +83286,Lisa Darr +167851,Natalie Anderson +128470,Vincenzo Fiorillo +33409,Mabel Rivera +129333,John Whiteley +232447,Robert Zachar +1056325,Tatsuya Azuma +1556723,Jon Komp Shin +1146942,Joe Grisaffi +113503,Peter Zumstein +32520,Emmerich Schrenk +211005,Bart Oomen +861,Kathryn Grant +74230,Rachel Seiferth +1853310,Fabrizio Giannini +937382,Daria Delancey +75027,Michael Edwards +1596937,Dana Bash +1880539,Angelo Minichino +1072013,Haruhiko Tsuda +72778,Vincenzo Fabricino +83528,Noriko Eguchi +52176,Herbert Rawlinson +102325,Lisa Ferraday +1031161,Shannon O'Neil +587184,Alison Wheeler +1647321,Chloe Stearns +1707843,Lotta Fuchs +56970,Tim Bergmann +111887,Megan Blake +1266239,Justin Gilbert +1334091,Christine Bently +1127664,Steve Sweere +1436406,Weiping Liang +1821499,Rissa Rose Kilar +1694082,Chester Rushing +1294286,Inés Castaño +1335647,Bebel Gilberto +228546,Kyoko Aoi +1739854,Rachel Adams +928931,Patrick Wang +40234,Dan Riss +480657,Dagmara Krasowska +100765,Hikari Mitsushima +1281107,Nadia Russeau +935500,Nicholas R. Grava +21841,Tony Garnett +1457291,David Carzell +1222359,Dawn Steele +12768,Dan van Husen +224192,Thomas Howes +90777,Alison Bartlett +1445464,Marguerite Cramer +579415,Catherine Le Couey +86577,Eric Lane +92408,Mikael Tornving +1507599,Jocelyn Ott +1302536,Sabine Eickmann +131520,Brooklyn Decker +945846,Tristin Mays +997641,Richard Ulfsäter +1436394,Faizat Muhammed +1224829,Zaib Shaikh +1041434,Karina Gidi +1273375,Leonardo Della Bianca +1366325,François Legrand +41161,Giorgio Bracardi +1728946,Anna Maria Hawa +129778,Blaze Ya Dead Homie +1159034,Ward Edmondson +1542696,Allie Marshall +1178411,Giovanni Bissaca +7187,Richard Donner +548619,Stirling Gallacher +1522462,Lucas Blaney +1496066,Micheal Jenks +123148,Brandon Quinn +80726,Laird Cregar +509193,Rory Scovel +942128,Patxi Bisquert +130495,Theodore Kosloff +1137500,Tina Castigliano +102306,Armando Silvestre +87287,Bonnie Aarons +139197,Jesse Pruett +65623,Rona Figueroa +230660,Shiori Kutsuna +1679237,Coralie Russier +120391,Rita Gam +1031745,Carla Nieto +586551,Kyle Larkin +75037,Laura Bailey +1341526,Kitty Boone +1033547,Brady Allen +141695,Kota Srinivasa Rao +110056,Talan Torriero +211114,Carly Wijs +1413703,Priit Loog +131075,Grynet Molvig +115345,Lee Clow +1496069,Haley Ruth Sands +80769,Georgia Allen +1186193,Bonnie Sturdivant +100127,Tarako +1559488,Harris Mayer +103949,Mary Maguire +47985,Emma Bunton +99669,Mayumi Wakamura +257575,Arik Einstein +1761824,Jarkko Rantanen +231784,Georges Aminel +1886451,Noemí Piñana +1309899,David Conk +103328,Elle Travis +1667887,Jon Doust +1650197,Lonnie M Henderson +1001710,Jason Berrent +153019,Bernadette O'Farrell +1563600,Nancy Hall Rutgers +31694,Jesús Puente +1663869,Dénes Kiss +210580,Jon Barton +83870,Josefine Lakatha +1176547,Ryoko Takizawa +102750,Tyler Johnston +1204698,Evonny Escoto +57412,Moisés Arias +108627,Charley Chase +1174581,Melza Burcu Ince +33638,Roldano Lupi +1838571,Talya Mar +1540039,Kareem Samar +1500051,Andy Peters +75986,Jeremy Kewley +1065193,Michel Joelsas +1511985,Jacinto Romero +49896,Franca Polesello +140745,Asha Sharma +39391,Edi Gathegi +81585,Phil Brough +1671174,Roberts Brothers +37843,José Villasante +1683786,Eduardo Gonzalez +548016,Kazuya Sokabe +223012,Jayson Blair +1183134,Réka Tenki +1450809,Luisa Moraes +1386122,Gianna Simone +1186623,Josh Sussman +1263735,Mauno Alasuutari +1818043,Valerie Joy Wilson +138527,Park Cheol-min +240761,Jon Manthei +1446647,Anna Amalie Blomeyer +48859,Kurt Großkurth +1147084,Munir Shargawi +96509,Yelena Metyolkina +126123,Amy Veness +1592216,Karl Shiels +1776671,Billy O'Brien +1174578,Melih Atalay +1317368,Margarita León +979639,Nick Gehlfuss +103215,William Howell +1818585,Claire Margaret Corlett +203637,Benjamin Arthur +95293,Busby Berkeley +232052,Frank Iatarola +221773,Saori Hayami +1503769,Raleigh Gardenhire +133590,Bevin Prince +1548302,Blane Crockarell +1784351,Antoine de Pharoah +1209310,Fukuko Sayo +1888395,Perihan Doygun +1825792,Chris Farquhar +222558,Joanne Badger +1798371,Francesca Zoutewelle +1354105,Sophie Adell +1195388,Greg Haines +205257,Lucy Griffiths +1841540,Laura Marie Thomson +1420036,Lee Man-Chow +1394438,Clay Zamperini +76925,Jenny Skavlan +1584100,Adam Ayres +1895924,David L. Osborne Jr. +95874,Jason White +142494,Masaomi Kondo +1862910,Lance Brady +450,Mike Colter +946971,Alex Paxton-Beesley +1366984,Maximilian Brauer +235338,Kang Ye-won +101862,Rajita Joshi +1700223,Vladimir Chestnokov +1790562,Daniela Jerez +1212946,Christian Potenza +1427529,Andrew Armour +109861,Jamie Thomas King +1163254,George Kamel +577644,Wynne Evans +1888580,Constantina Georganta +1203205,Giorgia Sinicorni +1334653,Jedidiah Goodacre +8269,Suzanne Cryer +558253,Kai Løvring +1032397,Jacob Ottensten +1564285,Janina Wronska +1574459,Abdul Khalim Mamutsiev +1226806,Milton Barnes +1355765,Michel Noher +88052,Milutin Milošević +447184,Maria Nafpliotou +1496479,Marko Matanović +1446515,Mohamed Hadj Smaïn +224413,Satoshi Hino +1426879,I. Cheng-Sheng +209650,Anna Friedman +54155,Mayrata O'Wisiedo +1587224,Mónica Aragón +1118662,Efthymis Papadimitriou +1579246,Natasha Ilic +1562093,Judith Bogner +1707752,Zane Ciarma +1415424,John Langston +1261400,Samantha Isler +1841396,Cole Kornell +46924,Alex Datcher +1306178,Muriel Morris +76396,Mika Doi +116362,César Bordón +103492,Robert Horton +558178,Timothy Marlowe +1394341,Ekaterina Zalitko +1702112,Jake Awa +69699,Kim Yu-seok +1891545,Luca Rodriguez +138956,Shawn Huff +104215,Hélène Maguin +102825,Marissa Mathes +1545515,Ryan Wesley Gilreath +1802425,Shnorhk Sargsyan +1833619,Deidre Doyle +1317272,Malu Valle +1147079,Elias Al Subehi +201782,Geoffrey Bowes +263002,Roberto Zibetti +113758,Labina Mitevska +19538,Rachael Taylor +90407,Ryan Haneman +144517,Antonio Ozores +49767,Frederick Lau +1744759,Candice Zhao +1254503,Imran Abbas Naqvi +213345,Mahmoud Hemida +128201,Eve Brent +1540054,Keith Varnier +7709,Romain Goupil +571911,David Lewis +544726,Asha Puthli +1537762,Kathleen Anderson +1117775,Fadi Yanni Turk +93713,Amelia Bullmore +56267,Brad Greenquist +53109,Marie Bäumer +1840869,Louie Lopez Jr. +34488,Diana Maria Riva +44384,Bernd Michael Lade +1777473,Daniele Bossari +1315949,Alex Solomon +1172222,Scott Burn +1085656,Laurie Dawn +1090692,Koz McRae +110902,Ólafur Darri Ólafsson +586233,Tommi Rinne +25659,James Babson +141587,Nita Pike +1583618,Aislinn DeButch +119670,Maxwell Reed +1305924,Shannon Tarbet +236639,Françoise Lebrun +1188249,Georg Blomstedt +143930,Ciwi Lam +1326238,Hudson Taylor +136798,Tomasz Tyndyk +113810,Brahmanandam +1520451,J.J. Totah +70177,Charlie Rose +55792,Cheryl Pollak +1522638,Heather Fairbanks +1503912,Will Barton +580705,André Rouyer +1879093,Mario Zucca +55890,Joan O'Brien +1903777,Felix Dzerzhinsky +89640,Enikö Börcsök +1862914,Travis Dutch +1131252,Leandro Arvelo +107067,Fuddle Bagley +74183,Brigitte Krause +238044,Thomas Doret +939789,Kimberly McArthur +1055524,Joseph Dahan +1467981,Ben Hodges +132112,Ranin Karim +34442,Anita Louise +87736,Brenna O'Brien +142108,Jennifer Stone +5645,Anke Engelke +562611,Pyotr Savin +132917,Amy Bank +1180702,Noah Byrne +1224022,Enver Gjokaj +141448,Gary Galone +1323310,Matthias Weidenhöfer +1388843,Sergey Petrov +226189,Kitty Lossius +125199,Felix D'Alviella +1815277,Kathryn Holcomb +37408,Stephan Remmler +1890251,Thaïs Fischer +1685108,María Angélica Ureña +544116,Sébastien Akchoté +1328821,Bret Kennedy +1504058,Rania Photiou +1039417,Valerie Hobbs +72246,Luca Zingaretti +1178764,Eric Murdoch +1094209,吴刚 +128411,Giorgia Brugnoli +58978,Keera Ann Davis +29627,Charles Lamont +1386558,Lluís Torner +54765,Hugo Perez +223532,Grégory Gadebois +1241485,Yoshiko Ohta +2853,Jackson D. Kane +1402320,Kate Comer +27929,Percy Marmont +568026,Julie Nash +1672142,Andres Pardave +1439852,Svante +1516709,Dimitri Bouzdes +1271861,Ludovico Ceriana +550315,Ken Maynard +1099718,Tony T. Roberts +1871507,Pierino Bertone +1794927,Jorge Rocha Fuentez +1620094,Rosette Mourrut +1432780,Jacob Houston +22630,Bela B. +136288,Corrado Fortuna +1428378,Katie Peterson +1524412,Corinne Azoulay +117461,Risa Goto +1141721,Daniel Nelson +1432794,Bobby Parr +144192,Zeynep Çamcı +1479150,Jirô Suzukawa +1630648,Du Guo-Zhang +1660461,Jorge Marcos +208296,Callan Mulvey +1451078,Tony Flores +1699993,Anarkali Marikar +93847,Mick Ford +1758897,Luis Dalmasy Jr. +1894264,Tullio Scovazzi +972951,Cozi Zuehlsdorff +79031,Julien Baumgartner +1418249,Kim Kaitall +13376,Erich Ponto +76795,Chris Johnson +36686,H.H. Müller +1238595,Shinobu Adachi +119347,George Skillan +1169979,Krystn Caldwell +1425205,Donna Davidson +45309,Alaina Capri +100602,Julia Duffy +968185,Marion Kerr +126801,Erik Markus Schuetz +1841549,Elisabeth Weaver +1907162,Qualid Mezouar +38115,Jean Valmont +1068832,Aiko Mimasu +189494,Greg Bradford +141180,Stephen Colletti +934089,John Regala +18342,Todd Graff +31259,Phyllis Coates +1238719,Byron Nelson +126251,Mallory Margel +1242127,Lani Billard +103207,Steve 'Lips' Kudlow +1012320,Kai Ko +1381479,Jackie Costello +236220,Fernando Galiana +1029080,Mikko Hänninen +964421,Aaron Lazar +1771588,Corey Maher +1672687,Michael Ajao +231477,Kim Ji-yeong +81239,Sharon Bajer +95708,Carl McCrystal +999815,Ivo Müller +1529917,Seikô Nakamura +1627888,Lesley Roach +1271787,Thomas A. Covert +1556840,Nurzhan Turganbayev +1237976,Kim Tae-hee +24783,Clément Michu +223684,Sebastian Jessen +107543,Jan Gunnar Røise +1104951,Jóhann G. Jóhannsson +1755081,Mark R. Miscione +1173616,Enrique Salvador +1762640,Eamon McGee +1278721,Misha Gabriel +63295,Peter O'Brien +143690,Irina Brazgovka +1880903,Tahir Mahmood +79124,Karen David +1678842,Nita Romani +125530,Yan Zhang +1520923,Simon Zaleski +132054,Terrence Evans +1080512,Nikita Zverev +1482974,Matt Kulis +1315945,Jesse Einstein +1139380,Federica Fracassi +40064,John Eby +51969,Hywel Bennett +129076,Roberto Herlitzka +1042754,Antonio Estrada +1090553,John Fordyce +1859934,Tati Gabrielle +213371,Taraneh Alidoosti +287752,Jonas Gülstorff +934113,Masahiro Toda +1483782,Alden Tab Siegel +44613,Janet Wood +1060671,Agyness Deyn +1836942,Jermain Hollman +18943,Julia Koschitz +121751,Sô Yamanaka +1349721,Sarah Niles +1543951,Matthew Scott Miller +1234253,David Waller +40696,Nicolas de Pruyssenaere +1184725,Charles Shull +34707,Zoya Buryak +28964,Jeanne d'Alcy +1708937,Steven Schoolmeesters +1177628,Lindsay Rolland-Mills +89910,Maria Alba +994257,Barbara Chisholm +1674312,Cooper Dodson +551679,Karel Hamr +1116699,Gonzalo Robles +1282754,Scotty Cook +1020027,Carly Craig +1862083,Marco Guadagno +1640290,Ajaz Khan +932374,Thomas Chalmers +935913,Stephen Chambers +130794,Britani Bateman +1431604,Kelly Boegel +41432,Candus Churchill +1869098,Kimberly Richardson +1080023,Nayra Calle Mamani +1163657,Aleksandr Piskaryov +1800028,Darragh O'Toole +1004890,Travis Turner +31895,Virna Lisi +1356418,Marie Montegani +583533,Robert Le Fort +165282,Andray Johnson +152771,Clay Wilcox +114346,Edmond Ardisson +1604109,Kimberly Ryans +17500,Gilles Cohen +556913,Don Jones +229320,Nari Blair-Mangat +68225,Beth Toussaint +1031263,Rowanne Brewer +1046724,Mike Seeger +1764146,Fito De la Parra +188632,Brad Borbridge +1858720,Charles Broaddus +1209478,Samuel Clay Ostlund Sease +950131,Cesare Fantoni +1098989,Billie Mahoney +42201,Rio Alexander +1082060,Ronaldo Valdez +1898237,Elvedin Musanović +1513949,Yasin Eren +121530,Grégoire Leprince-Ringuet +348,William Goldman +1760869,Mathapelo September +1510306,Paul Elam +585934,Anouk Whissell +131226,Dieter Meier +9559,Jophery C. Brown +115592,Ellen David +40087,Karen Brooks +582722,Kate Lyn Sheil +84362,Stephen Lewis +90117,James Chalke +105738,Jean Pierre Noher +132562,Jan Schweiterman +1172054,Peteris Sogolovs +216899,India Oxenberg +186526,Patrick McGaw +1636777,Phillip Shaun DeVone +114463,Michelle Jenner +1159526,Giovannella Grifeo +132919,Mark Forget +1537527,Nihan Gur +1824302,Phil Tillott +1689523,Teresa Romagnoli +1429553,Michael Gabriel +112562,Catherine Dyer +1297975,Don Jones +151610,Than Wyenn +928905,Clare Foley +1691986,David Midura +213419,Bjørn Jenseg +3186,Trent Reznor +1486655,Patricia Bernal +1553543,Ulrich Møller-Jørgensen +61995,Haley Joel +1077346,Laura Patalano +1642134,Mark Kalpakis +1794821,Kerry O'Brien +934281,Alex Wolff +141756,Florencia Bertotti +169995,Lino Troisi +39518,Brooklynn Proulx +1492804,Nina Hellman +1649916,Markus Mühleisen +83235,Marjorie Rambeau +216453,Takayuki Sugo +1408775,Yvon Jaspers +1670763,Rene Herrera +932874,Валентина Владимирова +1869696,Rachel Nottingham +172053,Paul Romero +1562103,Emilio Aniba +1818053,George Alexander +1252635,Miyako Takeuchi +1863881,João Francisco Tottene +1219677,Kevin Shinick +1452924,Justin M. Rasch +1805144,Gabrielle Sebben +545010,Laila +123796,Gil Kolirin +1031781,J.T. Jackson +87572,Pat Kelly +275776,Michelle Goddet +1589711,Melahat Cengel +147041,Raphaël Personnaz +1117914,Stamatis Gardelis +1426644,Thibault Segouin +1878826,Kate Hefferman +117749,Roy R. Steele +1031959,Gino Pernice +130525,Sinead Maguire +1193510,Alex Vincent Medina +211958,Robert Lawrenson +1349052,Christopher Johnson +1656894,Anucha Kansa +1600353,Kevin Fenlon +101943,Denis Shaw +212174,David Thomas Jenkins +1589402,Pascale Wouters +1456888,Coco Jack Gillies +979402,Cian Barry +980173,Mahesh Elkunchwar +1662454,Luis Rico +1026466,Maria Sole Mansutti +933331,Clarita Gatto +120630,Angelo Bernabucci +1001965,Luke Guldan +26598,Günther Stoll +1651414,Sternkiker François +1066897,Louis Stern +932925,Gerardo Romano +70257,Georges Adet +1696037,Brooke Baldwin +1102966,Melanie Chapman +1397770,Parris Goebel +1321410,'Baby' Carmen De Rue +1784723,Ryan Patrick Dolan +558880,Dusty Burwell +34295,Kristian Kiehling +1283055,Robert Loerke +84703,Elijah Hardy +100724,Maribel Hidalgo +1464907,Leonardo Sbragia +1002932,Luca Levi +61510,Christopher Denham +106763,Patrice Rohmer +1329276,Nonna Terentyeva +1560011,Charlie Clapham +96037,Joanna Waldsmith +1099267,Bheeman Raghu +582892,Donna Biscoe +1379123,Talitha Bateman +1484679,Koji Kamimura +1224510,Lauren Conrad Tell +225825,Edvard Drabløs +104412,Allison Hayes +1890678,Giulia Perillo +1072875,Jason Owsley +1737940,Damien Bryson +980197,Beth W. Crookham +1865731,Nell Williams +30978,Charlotte Austin +60688,Micheline Dax +1297474,Kaori Toregai +1223435,Toby Hargrave +133967,Richard Snee +1449539,Mimí Muñoz +210126,Michaela McManus +1516948,Jürgen Domian +66523,George Back +1144873,Ian Liddell +56455,Moon Bloodgood +240841,Harland Tucker +57208,Petchtai Wongkamlao +1263260,Adam C. Edwards +1385278,Rachel Wood +21398,Maxine Bahns +1503913,Lucy Challenger +1451919,Garrett Coffey +93803,Mamoru Miyano +58330,James Hiroyuki Liao +99347,Jack La Rue +132262,Steffen Zacharias +1128733,Marianne Viard +79614,Francine Ruel +1180361,Mádi Szabó Gábor +43721,Wendy van Dijk +115736,Lisa Werlinder +1486384,Rutger Vink +1316592,Steven Gätjen +236758,Evklid Kyurdzidis +1103797,Óscar Corrales +110973,Verica Nedeska +1024017,Agustín Garvíe +927752,Art Usher +91415,Jenny Lewis +97320,Takanori Jinnai +1232689,Brandon Scott +237407,Eva Sayer +1535057,Premila Jennar +1759090,Jonny Jenks +1370595,Stephen Boswell +53330,Michael Rose +61182,Gillian Vigman +56218,Diego Maradona +78221,Romain Lévy +29902,Melina Mercouri +1086250,Zhang Songwen +588183,Silvia Alonso +1326245,Jordan Kirkwood +1393528,Katherine Trowell +110709,Rajendra Gupta +1447050,Brandee Steger +154837,Chris Gann +1077795,Quinn Dempsey Stiller +1660684,Rachel Rossin +52133,Norton Freeman +6258,Peter Weck +1295456,Ho-jeong Yu +931213,Maxine Doyle +132902,Karla Obando +1280969,Mórocz Adrienn +30290,Victor Mature +1257000,Ekaterina Starshova +1438541,Saša Pavlin Stošić +576041,Larramie Doc Shaw +1544924,Lolo Owen +1866061,Pedro Frias +1777490,Maggie Doyle +1215365,Henri Lubatti +1160011,Olivier Mosset +1110403,Selina Boyack +1699502,Christine Meier +126771,Diego Martín +1650378,Sebastian Stegmann +93219,Jake Short +144292,Adam Rayner +229949,Allen Sarven +1167603,Davika Hoorne +1379270,Jon Rumney +1396367,Sergio Ramos +58759,Georgina Rylance +998571,Elsie Kate Fisher +1646444,Abigail Pniowsky +124823,Robert Kino +569550,Breanna Ellis +1804421,Shannon Marie Watts +1547888,Hesham Hammoud +536760,Peter Miles +15918,Ivano Marescotti +1504594,George Mantis +30609,Polly Shannon +1863905,Maria Eugênia Almeida +1481837,Bahar Kerimoğlu +137853,Barbara Moose +1160231,Carlos Revilla +1845739,Michael Zeldin +980842,Nick Fuoco +109298,Rachel Ngan +54942,Renzo Avanzo +951891,Teddy Kempner +124744,Celia Cruz +117811,Chris Shearer +208225,Ashley Rickards +91399,Erik Thomson +1438883,Ken Backshall +86640,Spartak Mishulin +204548,Rolando Boyce +90200,Thomas Ikeda +1085558,Stuart Hawley +1903382,Andrew Morris +24057,Annett Renneberg +107637,Pawel Delag +1446340,Joe Sgro +41556,Omari Hardwick +122481,Banjō Ginga +1563264,Pauline Nowakowski +590159,Pino Micol +1699986,Vishak Nair +152831,Jonathan Scarfe +145345,Maggie Wheeler +233272,Zoe Voss +100493,Barbara Dow +32089,Jacques Dutronc +1677141,Fouad Yammine +577650,Heather Jackson +48530,Maurice Compte +1522583,Meade Nichol +1865048,Paulo Furtado +98506,Richard Hart +1226025,Paolo Bediones +226599,Norman Ferguson +1602330,Isabel Llanos +1219500,Kirsten Nelson +1126292,Yumiko Shibata +1029800,Magne-Håvard Brekke +1660460,Charly Bivona +1488533,Riccardo Diana +1262335,Pavel Barshak +84894,Michelle Clunie +154783,Neil Giraldo +1432730,Tyson Sully +1386308,Diane Selken +1315003,Marco Castoldi +1581110,Tyrell Witherspoon +1707939,Elizabeth Farrell +77756,Harmony Blossom +1292214,Vittorio Marsiglia +1740107,Don Binkley +1338083,Kassi Crews +162896,Millicent Martin +1113263,Alan Maxson +224944,Giuliana De Sio +226738,Kazuki Namioka +1219597,Jim O'Heir +1863880,Amaury Jr +35043,Perrette Pradier +938344,Michael Maertens +1491854,Yvette Thor +1569948,India'yolanda Collins +82711,Siobhan Finneran +1370567,Eugene Cordero +1014880,Clint Catalist +1178303,Erika Heidewald +114986,Miguel Céspedes +1031943,Sophia Takal +91977,Chantal Perron +1594325,Akihiko Naruse +1314188,Adriana Matoshi +196690,Robert Saunders +1860857,Inka Haapamäki +1268937,Jamie Bradley +32202,Leah Cairns +45466,Joan Greenwood +304586,Nikolai Volkov Ml. +222539,Hillevi Lagerstam +125855,Valentin Gaft +125769,Terri Kwan +43366,Ann Dowd +1056291,Mladen Nedeljković +1553053,Tommy Bayiokos +38915,Serge Marquand +1610446,Della Saba +21689,Ko Ah-sung +153432,Anne Whitfield +1519547,Barbara McCulloh +1485723,Sunil Grover +1114529,Orri Helgason +205061,Ariston Green +1636760,Tora Kim +1537759,Michael Rippe +1477369,Vlasta Žehrová +1283947,Michael Kean +1090662,Jean-charles Simon +932897,Jitka Čvančarová +1106965,Blanka Heirman +19496,Morgan Flynn +1283599,Willie Covan +61265,Irene Karas +1175188,Leonidas Bayer +1507598,Charlie Gallant +1115738,Robert Stambler +104410,June Chadwick +572090,Victor Chin +69973,Piero De Bernardi +1880360,Nadeah Miranda +1632959,Torrey Wigfield +1841501,Mike Munkatchy +1145866,Mauricio Diocares +140112,Charles 'Chic' Sale +1830741,Peighton Brown +40588,Katie Carr +1367617,Cory Michael Smith +1277523,Luca De Castro +1674645,Ben Greaves-Neal +1633405,Hillarie Putnam +13191,Anne Loiret +22311,Clémentine Poidatz +1078265,Kunio Tamura +1382978,Aitor Badiola +1037193,Gary Walker +1429649,Alvin Ing +1706581,Les Podorozhnij +76344,Remo Remotti +1690527,Cassidy Reiff +549533,Aliocha Schneider +62336,Jin Hee-kyung +118384,Kevin O'Donnell +1527586,Dave Murray +1321681,Luciano Scarpa +1317696,Martin Reinke +1082052,Claude Évrard +240202,Guillermo Marín +1750940,Anne Rieman +74007,Paolo Walcher +136384,Machiko Kitagawa +1475629,Giampiero Galeazzi +1054115,Cindy Scrash +1272612,Cliff De Young +52710,Masanobu Katsumura +1797585,Katherine DuBois +1257073,Yuki Furukawa +72254,Éric Caravaca +1467548,Matthew Martinez-Arndt +1096828,Lucius Brooks +992883,W.N. Cone +50626,Claudia Butenuth +182161,Laurie Rose +1184082,Wong Kuen +1109702,Karan Soni +1139975,Maria Kiriakis +180677,Jack Manning +1487396,Jean MacMurray +88941,Marian Rivera +1026046,Carlo Puri +1104770,Doug Van Liew +1769115,Karin Serrouya +1400594,Cricket Arrison +128444,Jacopo Maria Bicocchi +1003256,Melissa Chimenti +1109650,Hugh Saxon +1388078,Barbara Gott +1337186,Grayson Berry +1023906,Natalie Kingston +1735559,Adam Lytle +42194,Caitlin Dulany +1221032,Norihisa Mori +1829913,David Hendrawan +85872,Aamna Shariff +1238415,Uhm Tae-woong +126698,Kenji Nojima +1646281,Julio Axel Landrón +1635952,Paulo Américo +447207,Romina Paula +1087651,Gammy Singer +1886453,Arnau Ferrer +1557181,Wi Ha-joon +178874,Larry Haines +1835161,Bemjamin DeWalt +587144,Hervé Falloux +1184679,Nele Kiper +104038,Walt Davis +1168097,Manuel Garcia-Rulfo +1297995,Rudolf Deyl st. +65237,John Fasano +96011,Suporntip Chuangrangsri +113933,John Durren +1357035,Betsy Landin +1438877,Kingsley Judd +1647428,Siobhan Shanahan +223844,Mike de Leon +1148574,Tim Gail +129705,Saki Kagami +1103522,Summer Bellessa +101246,Dean Shelton +193698,Eric Woods +1394346,Georgia Winters +239683,Nikolai Gusarov +935901,Dean Russell +1672452,Joan Warner +587155,Zacharie Chasseriaud +1298423,The Plantation Chior +27516,Bobby Di Cicco +1212697,Jazz Raycole +1816438,Bleu Landau +132897,Josefa Calderon De Calero +1643047,Klas Anderlin +78809,Rashad Evans +234809,Charlotte Laurier +66636,Valerie Azlynn +1329618,Tom Costello +1888574,Erol Babaoğlu +1491378,Fafá Pimentel +4753,Brian Bloom +113304,Stephen Galaida +1164457,Shirley Jean Anderson +1353639,Matthew Dale +1055173,Bob Collins +976457,Jason Pace +1088120,Nick Gionta +578847,Murat Nurasilov +1746827,Ben Tatar +1273012,Abdiaziz Hilowle +1446352,Larry Wilson +175965,Glynn Edwards +142206,Dylan Bruce +1203800,Tsuruko Kumoi +1353646,Henry Browne +1660682,Peter Schmidt Pawloff +8856,DeVaughn Nixon +1696393,Julio Chapper +1427182,Bishop Blay +20416,C.M. Pennington-Richards +225550,Mara Venier +69136,John McLeish +1417300,Ryan Pederson +1332908,Susy Buchan +215335,Peggy Mahon +1762435,Debra Blackwell +559948,Emil Fjellström +26039,Victor Williams +1294274,Luc Bourgeois +68185,Eric Schaeffer +74375,Cynthia Rothrock +231671,Earl Carpenter +1678684,Wingy Manone +27641,Peter-Hugo Daly +106382,Suzy Aitchison +47667,C.V. France +45751,Pierre Bokma +1564298,Zuzanna Wronska +49676,Kálmán Hollai +1198286,Ed Oxenbould +137516,Keiko Niitaka +210824,Kristen Connolly +219666,Madisen Beaty +1167748,Astrid Whettnall +31884,Luis Aceves Castañeda +1017021,Geliy Sysoev +934914,Frans Frederiks +95370,Landon Henninger +1100322,Rusty Musselman +59264,Joe Hursley +1066609,Terrell Ransom Jr. +225433,Bibeth Orteza +67713,Kent Nolan +114834,Betty Cooper +18898,Rob Minkoff +48869,Gus Backus +557823,Al Casey +1099455,Frank Pastor +587892,George Lauris +1086570,Azia Sumatra +1538936,Sarah Maine +1285684,Tonie MacMillan +34760,Toshia Mori +1821543,Jason Goodrow +1107190,Isaac Leyva +1507604,Janine Edwards +70427,Farid Chopel +1103548,Tammy Signorile +1750913,Dina Mihailidou +119309,Robert Douglas Washington +1452938,Michael J. Sielaff +1380260,Mara Bronzoni +1103796,Lucía Guerrero +1728943,Adi Krayem +1357163,Yassin Koptan +1609624,Nicondra Norwood +1205904,David Speed +1140092,Siaosi Fonua +79498,Kai Caster +81270,Serah D'Laine +161040,Al Avalon +1226195,Rob Stewart +224290,Brian Cox +6084,Martin Kiefer +1187203,Georges Martin Censier +103130,Savina Geršak +58675,Seiichi Tanabe +982406,David Rigby +117108,Barry Barnes +222143,Jordan Gavaris +1223061,Ken Baumann +1506478,Evan Kuzma +1472783,Grace Van Patten +1707097,Samuel Summer +38763,Antonella Interlenghi +1762438,Warren Kenner +1428028,Lawrence Stubbings +1745405,Rocky Rector +1646176,Kai Känkänen +13374,Karin Himboldt +1069765,Lotta Tejle +40020,Öznur Kula +1485179,Tre Laughlin +1569795,Gavin Blakley +1769817,Michelle Hayden +233300,Kara Woods +121716,Kuranosuke Sasaki +1278134,Kelly Franklin +27665,Mohamed Razine +89193,Carlo Verdone +1295965,Damien Dorsaz +1350320,Adriana de Roberto +239574,Eugenio Derbez +1631554,Elsa Olivero +118724,Lin Chi-Ling +1754429,Leslie Ivette Quezada +1228941,Craig Ricci Shaynak +1683856,Colleen Reynolds +222887,Kristina Hanson +1890673,Larissa Tavares +1078949,Patrik Děrgel +110335,Elif Inci +1544551,Renee Fishman +1507553,Vivian Ruiz +6092,Julia Krynke +220038,Joanna Adler +933333,John Buchan +1137457,Jurgen Vsych +1589611,Marianne Murray +977279,Nicholas Hawtrey +999406,Emilie Caen +144515,José Sazatornil +1548524,Rhydian Jones +111432,Kathryn Card +26057,Gigi Edgley +1689929,Marcello Meleca +1140232,Trae Harris +147085,Tina Parker +84295,Rita Ramnani +1450840,Nigel Greaves +1353905,Daniel Johnston +1275870,Jerzy Fedorowicz +223278,Elizabeth Adams +47433,Irina Mazurkevich +118762,Piotr Adamczyk +91402,Ali Liebert +1277346,Bill +34750,Louise Carter +1323109,Aisling Franciosi +1896363,Bailey Bass +135376,Akira Onodera +87020,Rachel Wilson +1525808,Zdenka Sajfertová +1370826,Terry Mynott +1164661,Anatoli Gorbachyov +107364,Simply Marvalous +1837288,Abderrahim Daoudi +558249,Jason Miller +1163722,William White +1217619,Ronobir Lahiri +16921,Clotilde Courau +83012,Kim Ha-neul +193341,Ben Homewood +77017,Michael David Lally +1425950,Anne Macina +50004,Aroldo Tieri +1527958,Derek Blakeney +1568216,Joe Garcia +130505,Chan Tat Yee +1860891,Marcin Szocinski +1084849,Louis Dempsey +1277198,Dawid Ogrodnik +1073408,Christopher J. Hart +1874738,TT Thomas Tamsen +1175938,Olga Volkova +21311,Wesley Ruggles +44712,Jill Eikenberry +110015,Rachel Hunter +1696036,Erika R. Erickson +1115626,Eileen McCallum +1750935,Mike Leffingwell +1316172,Carlos Martínez +1572960,Idrissa Hanrot +1390544,Lance Jensen +130022,Mohamed Majd +137928,Colin Baker +234906,Catrine Beck +1462633,Franklin Kelsey +1191198,Rolan Bykov +74949,Joel McHale +306471,Fiammetta Baralla +133296,Jana Stehnová +116300,Jennifer Walcott +91967,Ron Scott +589923,Nana Eikura +1379564,Steven Andrade +57748,Byron Mann +577775,Friedrich Karl Praetorius +1433915,Piano Frank +134749,Olivier Beer +43649,Christian Kmiotek +191897,Jennifer Hasty +1122855,Armin Amiri +63759,August Karlseng +66646,Atticus Shaffer +15898,Guido Quaroni +32787,Neil Nephew +159280,David Bickford +1520903,Laurent De Buyl +1077805,Ana Ayora +146935,Ravi Teja +73505,Jacques Bouanich +1220090,Elisabeth Dermot Walsh +583871,Dan Deacon +7087,Brad Bird +1244703,Leena Uotila +1593040,Kelley Dorney +1105161,Kerttisak Udomnak +133501,John Charlesworth +1590275,Maggie Jiang +1393178,Hadley Belle Miller +974832,Max Hoffman Jr. +1371849,Stafford Douglas +18408,Bratislav Metulskie +72391,Shinsuke Ashida +1485591,Claude Laroche +168635,Casey King +231718,Oscar Van Rompay +1819137,Larry Dean +1589605,Eduardo Ribeiro +1255296,Jude Wright +1409409,Grahame Mallard +592056,Bedy Moratti +20670,Benoît Giros +24301,Geneviève Cluny +556906,Kadir Inanir +86762,Rina Zelyonaya +1125168,Adrian Wilms +105114,Ricky Tognazzi +1414003,Biyon +127110,Tainá Müller +580597,Rosemary Linousy +1827456,Camila Caetano Ferreira +1152024,Raven Ledeatte +224508,Luisa Huertas +1520898,Jacques Bauduin +432267,Jacob Bonnema +1700878,Anupama Verma +1184077,Mao Jun-Jie +1674311,Gigi Johnson +134002,Henry Hunter +1329563,Daniel Alvim +1643917,John M. Hull +30086,Julian Bleach +1262695,B.J. Parker +61613,Robert William Bradford +127008,Ukweli Roach +128441,Chiara Nicola +62972,Tim Plester +1122109,Aadukalam Murugadoss +1512991,Kurt Christopher Kinder +88933,Chantelle Chung +1562565,Zhao Xiao-Rui +1509230,Josh Berger +1433343,Pia Koch +1038000,Matthew Kennedy +1192901,Kearstin Plemel +27646,Freddy Douglas +145191,Gabriel Tigerman +1010894,Aley Underwood +1184455,Yasuhiro Takato +1204689,Esmeralda Herrera +172123,Suzette Gunn +139310,Lucy DeVito +1848092,Makoto Murata +1398192,Axelle Munezero +1907172,Amadou Salah +1690413,Jackie Easton +1072874,Howard McNair +1195966,Linda Rennhofer +1488353,Haruyoshi Nakamura +1718147,Pollyanna Uruena +963849,Tammy Minoff +1167388,Fred Wallace +1110538,Mo Zhang +1412789,Rick Chambers +1460904,Eric Martinez +192632,David Rudman +12505,Kasey Rogers +1028239,Harry Parke +1504599,David Alexandre +1431169,Jasper Newell +1707894,Bailey Barbour +1619187,Mitsuhiko Shibata +88892,Michael Johnson +133451,Aya Cash +586486,Johnny Lu +1618650,Giuseppe Pavoni +1467529,Andrew Villarreal +609937,Luis Miranda +1165594,Sachiko Meguro +128627,Moffat Johnston +1647554,Jessica R. Salazar +1134506,Lee Man-Tai +25555,Kathleen M. Darcy +86401,Marion Leonard +108452,Cristina Câmara +1784644,Erica Day +325709,Rustica Carpio +1418633,Ho Wing-Cheung +1833305,Robert Weaver +102075,Ralph Remley +1051672,Côme Levin +1170930,Gunilla Larsson +95363,Casey Williams +1511983,Robyn Pugh +1537755,Don DiPetta +136969,Elitsa Bako +145679,Jacques Ramade +1248825,Caroline Ribeiro +933265,Anahí de Cárdenas +1015998,Dogan Tamer +1329739,John Quillan +119760,Anaya Farrell +1436292,Guangchao Liu +1056286,Can Themba +1111158,Albrecht Schuch +18906,Neil Dickson +34491,Luigi Lo Cascio +1124617,Lisa Elaina +1177623,Katie Coseni +1378650,Elizabeth Hunter +128207,Patricia French +1886630,Anna Lim +1671172,Princess Vanessa Ammon +30406,Vladimir Bogdanov +590897,Eleni Prokopiou +1095121,Panissara Phimpru +1734191,Nathan Jenkins +1482526,Ashe Parker +124484,Keiko Han +1409321,Hope Shapiro +51741,Franco Ressel +1393180,Madisyn Shipman +1522125,Jasmin Carina +1287371,Esa Saario +1562096,Saif Al-Warith +1272162,Anna Gurji +35015,Adam Kotz +1651413,Raphael Desprez +116514,Eric Lange +1492649,Colin Farrell +22944,Jenny Gröllmann +1393315,Scott Anthony +1651388,Claire Richardson +1035399,Rich Evans +1046105,Sudhir Joshi +1105151,Mark Verstraete +1689170,Emiliano D'Ávila +78298,Mike Nawrocki +1298512,Istar Göksever +1689522,Emanuela Fanelli +78479,Laurent Bateau +1364509,Pentti Irjala +89756,Jackson Beck +1210138,Igor Obłoza +1424051,Alessa Kordeck +1431607,Mackenzie Ball +83338,Elissa Dowling +211259,Bert André +1347307,Monika Guiberteau +1495082,Carlee McManus +1651967,Tyler Kunkle +1227167,Lynn Berry +129314,Al Mulock +1384104,Georg Ensermann +1286545,Joy Yao +199529,Jordan Long +1062326,Ovidi Montllor +1048390,Frank Arvidson +1359943,Alexandra Mamaliger +1761841,Tuomas Laine +62646,Marc John Jefferies +967164,Miriam Raya +1664127,Monica Brachini +1662171,Ketan Karande +1747652,Sharon Jan Altman +1841548,Erin Weaver +94148,Mark Elias +1517231,Catherine Saint-Bonnet +1708548,Conrad Maga +1372289,Don Allen +76686,Terrance Zdunich +85912,Jon Lange +1663795,Alina Wazna +1188841,Rajesh Tandon +556861,Benny Bartlett +43321,Fernando Tejero +1094125,Spencer Howes +972356,Luke Bracey +252340,Stig Ossian Ericson +38541,Natalia Wörner +1695065,Gabriel C. Brown +1082509,Takehiro Hira +928975,Dean Andre +105353,Clive Riche +561199,Nam Bo-ra +584369,Y. G. Mahendran +1780275,Ruby Vincent +1767220,Robin Gutierrez +42068,Csaba Pindroch +1371108,Kyla Drew Simmons +1788513,G Bock +14741,Philippe Bergeron +1083439,Blanche Bernis +1342853,Pan Han-Guang +109468,Rodolfo Ranni +1438866,Michael McCall +1538577,Lee Chen +495355,Sebastián Estevanez +1534586,Rico Rodriguez +75539,Glenn Hazeldine +1630331,Earl Jones +1508938,Bill Keller +36483,Katia Romanoff +933494,Dagbeh Tweh +1322775,Petr Korolev +1095805,Cassie Jaye +1093520,Carlos Faison +95382,Marley Whistler +1636769,Shawn Mattox +1304595,Kim Hee-ae +1555432,Erkki Siltola +1496482,Marica Vidušić +1467995,Elijah Ford +481337,Kaitlyn Dever +1395235,Ian Gregory +127405,Mikhail Metyolkin +549352,Jaimy Siebel +588829,Limara Meneses +86704,Grigori Abrikosov +1452046,Lana Condor +85984,Ivano Staccioli +1266498,Oliviero Prunas +106670,Edward Talbot 'Chip' Matthews +78681,Isabella Ferrari +1290403,Dick Hatton +1325939,Ace Marrero +1853758,Nanni Tamma +233947,Daniel Grao +1564334,Barbara Ogilvie +1154239,Dean Constantin +1859978,Mario Cei +1622078,Timothy Herbert +1074077,Agata Flori +75722,Michael Ienna +1735566,Johanna Yunda +89283,Nando Angelini +934292,Eileen Stevens +150798,Badasar Colbiyik +1085051,Gabriel Diani +1204680,Raymond Rios +1471026,Duncan Airlie James +135030,Ayumu Saitô +1625774,Haley Tju +1110616,Chris Haley +1363658,Diana Devlin +100294,William Bonner +29073,James Vaughan +1438286,Jon Arthur +1518297,Bertha Guttenberg +98805,Carl Washington +237782,Denis Lambert +82346,Jonathan Prince +22787,Antal Farkas +344947,Natalya Gudkova +20962,Linh Thj Bich Thu +1872452,Tobby +1619186,Shin'ichi Matsushima +1822713,Stella Aschauer +1822696,Lukas Czapski +1152395,Ted Fletcher +1531583,Michelle Mitchenor +287863,Tommaso Bianco +136403,Robert Dryden +112159,Art Camacho +1743462,Shaban Arifi +590880,Vanesa González +46918,Rayne Marcus +1239467,Adam Gregory +1188269,Richard Kohnke +1717268,Michael Brannon +969561,Thomas Law +1243491,Jim Sweeney +1561247,Diana Ionescu +85470,Kangana Ranaut +155173,James McCaffrey +557862,Victor Rebengiuc +582476,Jeff Dahlgren +982316,Billy Palmieri +85067,Jumayn Hunter +1522261,Meg Kubota +551942,Dana +37585,Emma Penella +1579545,Zack Weiner +12296,John Hillerman +1548301,Farrah Mackenzie +124786,Holly Gagnier +1146492,Gero Preen +34394,Luisa Lindner +112472,Sophie Anna Everhard +76321,Svante Martin +24602,Marina Berti +1503838,Clifton 'Fou Fou' Eddie +224167,Ben Schnetzer +1278123,Angie Wallis +1308677,Oleg Mazurov +993897,Joshua De La Garza +1377011,Iris Ponkina +1520921,Gisèle Oudart +146381,Arielle Moutel +938638,Roser Batalla +580197,Françoise Deldick +21861,Brody Hutzler +28615,Éric Rohmer +78038,Lisa Glaze +109327,Daniel Tatarsky +1764359,Chloe Hendrickson +78036,Michael Copon +1774431,Rafaël de Ferran +1481764,Lillemor Grimsgaard +119870,Rick Fox +1225493,Brien Perry +1247684,Dai Tabuchi +1169338,Jared Kemmerling +1255201,Shira Lazar +1383381,Larue Hall +117463,Takaaki Enoki +149015,Eleanor Hunt +79832,Elma Lísa Gunnarsdóttir +1452764,David J. Curtis +19895,Vinzenz Kiefer +20530,Philippine Leroy-Beaulieu +238907,Wu Chi-Chin +1017347,Brenton Thwaites +1769435,Owen Fielding +1581392,Astrid Lövgren +556929,Tammy Patterson +226537,Libby Whittemore +8328,John Milius +580675,Helena Mäkelä +1354364,Anna Plisetskaya +1679095,Vega Cuzytek +139541,Henry Phillips +1788168,Bryant Tardy +1176787,Paul Sinclair +1714034,Mohammed Bendahma +931947,Evie Thompson +1827459,Poli Fernandez Souza +109858,Kayla Ewell +1018947,Maximiliano Hernández +175888,Jo Anne Meredith +1050786,Aleksandar Radojičić +179479,Larry Ward +1247778,Shintarou Asanuma +1086486,Justin McMillan +225739,Katsunobu Ito +61778,Samantha Noble +79907,Tony Doupe +1221063,Klariza Clayton +592061,Magda Vášáryová +1461424,Sistah Lois +1086556,Marinela Chelaru +1757221,Paul James Jordan +591271,Anna Dymna +1460902,Gerardo del Castillo +121521,Michael Carøe +1769114,Dafi Alpern +1207312,Ricarda Ramünke +1848055,Matthias Luafutu +1399240,Fanny Chang Chun-Fang +95090,Michael St. Gerard +1377433,Claire Assali +144475,Christian Meier +1635134,Thurman Sewell +1430486,Henning Tadäus Beeck +55925,Chantal Banlier +1394451,Yoji Tatsuta +1745609,Joan Thomas +1200416,Christopher De-Schuster +1332765,Jose Prakash +1320171,Pedro Pablo Isla +1593375,Selena O'Sullivan +1503649,Rye Fariñas +97249,John Penrose +75060,Kellie Shirley +1144178,Jon Hill +237254,Nageshwara Rao Akkineni +225207,João Lagarto +1191846,Václav Kotva +994435,Aleksandr Kadanyov +998695,Ruth Hampton +120181,Susy Laude +1107729,Cissy Houston +174449,Juan García +1697251,Kazuya Horikoshi +1073145,Franco Javarone +209417,Shu Lan Tuan +1650195,Georgia Crawford +1544741,Lochlann Harris +189185,Thomas Hobson +1439243,Karen-Helene Hjort +550525,Boris Khimichev +45377,Alan Amiel +118178,Virginie Efira +33949,Ben Turpin +1776743,Kelvin Ho +93999,Park Hee-soon +1889638,Sydney Benson +127261,Mike Pratt +1282919,Szilvia Czobor +930502,Rosemary Glosz +119416,Jonathan Hearn +1493395,Eduardo Fedriani +116317,Lloyd Sherr +590496,Frank Hernandez +576050,Kwan Fung +1024336,Fumiko Miyata +1642240,Nathaniel Dupree +1829813,Olga Chepurova +543112,Tim Boyle +1446105,Jerry Wang +1341241,E. Ramadoss +1155660,Nathan Derrick +1180092,Anthony Okungbowa +963134,Raymond Ochoa +1836223,Candice May Langlois +1328328,Taiga +1346875,Dayana Contreras +1295592,Arnaud Lagardère +1544925,Chi Jiajia Lim +95684,Marc Rude +105648,Nat Faxon +1480471,Jean-Luc Borras +1535056,Sean Michael Perez +1650114,Kacey Cockett +126498,Nirav Mehta +1168790,Fabrizio Zangrilli +70882,Sarah Patterson +675,Christian Ulmen +159041,Howard Platt +233884,Katelijne Damen +132093,Nick Manning +1538726,Craig Cobb +1140093,Phil Somerville +1289444,Jonathan West +1561288,Takao Kinoshita +1138531,Andrea De Pino +38122,Daniela Surina +571418,Kristofer Hivju +1707914,Peter Sardi +1822119,Lino de Greiff +1291611,Craig Evans +209198,Adriana Lima +138013,Nicola Cowper +1662175,Lee Macsween +1691967,Jeff Dumas +1274156,Michael Leone +1210340,Eero Rinne +80884,Michael Deak +932351,Elena Podkaminskaya +1356797,Maurizio Bologna +56105,Renée Taylor +77760,Monoxide +225315,Subbaraju Santosh +1499011,Frenchie McFariane +550853,Khomotso Manyaka +38267,Ursula Grabley +106951,Paul Lazenby +1254135,Sumire Morohoshi +1295595,Michel Naudy +1074615,Branwell Donaghey +238352,Sasha Andreev +1704665,Clint Edwards +144250,Michelle Gomez +1563446,Strezo Stamatovski +65870,Dirk Ahner +12798,Enrique Murciano +1199624,Ivan Obretenov +95670,Li Yi-Min +1459703,Ivan Sherry +1238834,Dennis Crosby +239474,Michela Cescon +936666,Rich Dietl +1543182,Sven Jerring +92833,Vincent Wan Yeung-Ming +1457250,Noel Johansen +87447,Hugh Maguire +135592,Valerie von Martens +323331,Sean Brosnan +45366,William Zipp +1758521,Vijayant Kohli +1523036,Philippe Van Den Bergh +601643,Joan Haythorne +1388669,Melvin Myles +92942,Derron 'Smokey' Edington +107963,Ruriko Asaoka +34353,Nadja Bobyleva +1087135,Celia Au +1109656,Joe Martin +278368,Philippe Castelli +580782,François Valorbe +1771567,Mandi Beers +1235967,Caryn West +101854,Ewen Solon +1105706,Tait Fletcher +308445,Mansaku Fuwa +1753490,Vladek Filler +130436,Terrea Smith +91251,Luis Fernando Peña +1015732,Salina Duplessis +1378125,Isabella Kai Rice +52002,Florencia Lozano +152723,Anne Schedeen +1567840,Kiernan Ryan Daley +1605318,Albert Gardner +1046864,Kim Tae-in +1646378,Chance N'Guessan +1720658,Re'Sean Pates +1134593,Emely Arato +1776849,Don Hudson +1067994,Gerald Rogers +1707930,Brenton Foale +1826349,Manolo Bertling +226832,Lorenza Indovina +146411,Dominic Rains +1647204,Jasmine Carlina +395846,Emma Hamilton +72858,Jonathan Cake +216570,Scott Graham +1760474,Joey Glynn +63363,Michael FitzGerald +127554,Nikita Ager +1470962,Joyce Hiller Piven +1047173,Branka Petrić +1716520,Doug Stroup +88675,Justin Baldoni +27650,Emilio Doorgasingh +1171340,Alphonse Putharen +151254,Chelsea Handler +1784662,Barrett Perlman +1489939,David Bernon +1079558,Augie Davis +113501,Rupert Henning +90460,Julien Elia +549534,Nicole Max +937631,Alberto Alifa +1194711,Felix Römer +1446347,Scott Young +1643761,Jennie Eggleton +113929,Chris Gallinger +52392,Rocko Schamoni +1112461,Alexis Woods +1358559,Marco Cortes +1446329,Bruce Armstrong +965140,David Kang +1377171,Arnar Guðmundsson +1294431,Micaela +86622,Priyanshu Chatterjee +57165,Jess Hill +1332412,Henry Luciani +1278389,Patrizia Milano +1367904,Kat Alexander +1028952,Lui Manansala +100597,Marie-Alise Recasner +111535,Agnes Karin Haaskjold +90406,Dr. Gerry Ramogida +1279377,Setsuko Horikoshi +1649295,Mario Pu +116388,Kjærsti Odden Skjeldal +1481496,José Sánchez +1334078,Daniel Wurm +35529,Georges Corraface +1083445,William Aguet +1683137,George Little Buffalo +1358974,Max Huang +234126,Jari Pehkonen +1698149,Dino Lee +929574,Joo Won +1562104,Volkan Ay +109846,Alex Nicol +1178308,Ana Liza Platt +105282,Stig R. Amdam +995175,Piers Graham +40177,Jayne Mansfield +8547,Jonny Phillips +47734,Paul Nicholls +213488,Kôji Shitara +1287564,Alice Olivia Clarke +74337,Dana Snyder +1694021,Creo Kellab +1711365,Giuseppe Valdengo +567591,Erica Jones +1458878,Brian Penikas +104087,Marthe Mercadier +928134,Emma Rayne Lyle +86559,Shabbir Ahluwalia +65739,Sung-Hi Lee +1377014,Kostas Alexandrou +1525076,Jordan Essoe +151027,Jun Kaname +239451,Yoshio Yoshida +1682512,Erika Erica +1222875,Nivedita Bhattacharya +1764142,James Williford +1820843,Bob Zache +29333,Roy Taylor +1651425,Cameron Beames +1701495,Ori Laizerouvich +1758888,Miguel Rivera +1869472,Maria Copper +1399609,Cliff Lambert +143403,Najib Oudghiri +1790349,Marcos A. Gonzalez +1158461,Louna Klanit +163411,George Milan +42067,Sándor Csányi +6083,Alice Dwyer +63361,Moira Deady +203867,Joeanna Sayler +1330719,Joseph Nemmers +1695653,Tennessee Luke +1224669,Ron Kennell +1461050,James Roosevelt +591496,Hilde Körber +1408199,Grégoire Bonnet +55119,Alejandro Jodorowsky +87621,Eason Chan +1787843,Usha Khan +1869973,Tom H. Lariviere +1319619,Chelsea Chase +1207254,Julie Lamm +578512,Marc Zinga +934148,Yngve Dahlberg +1373292,Tonya Glanz +64772,Marina Glezer +78266,Mami Nakamura +1649298,Basang Yawei +1435084,Heike Koslowski +97464,Patricia Prata +20053,Eric Sykes +83968,Jim Parrack +937505,Itatí Cantoral +567111,Harlen Carraher +1214171,Al Rodrigo +1554756,Mark Forester Evans +1697472,Katrina Durden +1359769,Neil Coleta +1718008,Melisa Celayir +1429663,Kelly Byrns +1161743,Dirk de Batist +1623419,Takao Nakamura +168331,Debra Christofferson +1630191,Elena Valyushkina +454163,Sunaina +143624,Andrey Kaykov +1908262,Morse Diggs +1298835,The Brian Sisters +1125454,Sharon Herrera +939004,Marlene Roden +1246891,Charley Koontz +1319258,Ely Reynolds +1239413,David Talbot +1473432,Abby Quinn +42169,Richard Gilliland +229311,Christopher Sanford +1457270,Cameron K. Smith +137817,Boris Burachinski +1859308,Claudia Zaccari +1502365,Mateo Rufino +184560,Alicia Leigh Willis +557505,Claire Bronson +30689,Greydon Clark +1292111,Cory Nichols +1316307,Zoran Ratković +1122428,Raphaëlle Blancherie +205176,Cassi Thomson +98152,Kathleen Ryan +572288,Aga de Wit +1138756,Magdalena Berus +1359012,Adam Sessler +1169229,William Wallace +60488,Wade Allain-Marcus +1467982,Daniel Zeh +147985,Gordon Griffith +40021,Erman Saban +84394,Carol Hawkins-Williams +57001,Ute Sander +121249,George Morrell +111650,Simon Savory +223231,Guy Frangin +82400,Vincent Zhao +931289,Ezzatolah Entezami +1332516,Tyrone Keogh +87845,Georgina Verbaan +1560255,Byrne Davis Jr. +1331271,Joseph McCaughtry +1636077,Robin T. Rose +86681,Nina Grebeshkova +1028461,Hannah Al Rashid +110712,Ujjwal Chopra +1624613,Evan Williams +83394,Pina Pellicer +149308,Nicholas Rogers +1694298,Lauren Jane Pringle +1094160,Joshua Ormond +15264,Bajram Severdzhan +1771030,Kimberly Sedgwick +587517,Aleksandr Nazarov +97782,Marcia Rodd +1077477,Harry Zinn +1341529,Suzanne Balog +245484,Tommy Carlton +1772622,Christopher Caldwell +1283050,Anthony McKenzie +235113,Leonid Nevedomsky +1035331,Paola Dominguín +1293071,Victoria Larriveu +1755263,"Pieter van der Sman, Sr." +129881,Giulia Salerno +54594,Jason Earles +53932,Trevor Snarr +567078,Nick Costa +40937,Olivier Sitruk +18478,Rodrigo de la Serna +77879,Oliver Kieran-Jones +1163133,Gregory Gordon Schmidt +52020,Norbert Leo Butz +143976,Yevgeniya Igumnova +1757855,Amanda Wilmshurst +1604363,Elena Plaksina +1278433,Marcos Veras +92263,Don Jordan +106724,Jayne Kennedy +183524,Patrick Toomey +15598,Luis Callejo +1047716,Joy Sengupta +1317341,Marko Jovanović +224570,Anne Marie Ottersen +213144,Madeleine West +109850,Gordon McLeod +74,Gustav Fröhlich +564817,Torben Brinck +1634315,Xanthe Elbrick +1504060,Irini Tripkou +32784,Kay Doubleday +932298,Sonia Holm +1004761,Mustafa Karakoyun +1338715,Meg Lucas +1202683,Max Wrottesley +625924,John Arcilla +1069544,Kenji Takagi +1600848,Jos Geysels +116341,Bill Clinton +1371000,Pete Burris +77384,Helena Růžičková +1830202,Angela Costello +114845,Sommore +143283,Suzanne Lanza +1636694,Oleg Bakhrutdinov +1199620,Yordanka Stefanova +1118719,Peter Neil +1650327,Rob Faubion +1333404,Letty Butler +67210,Shend +142344,Roderick Lovell +1478765,Anatoly Slivnikov +1050964,Thomas Millet +1432984,Radick Cembrzynski +1667527,Jim Schulman +1728948,Wafaa Aon +1880902,Dhamayanthi Fonseka +559141,Rumle Riisom +557604,Claudio Colangelo +1660965,Josh Heisler +1398064,Chelsee Albo +928575,Jonny Weston +1224102,Dijon Talton +103147,Giancarlo Previati +1087376,Gabriella Lepori +95092,Patrick Mower +155510,Richard Voigts +440306,Adhir Kalyan +1406819,Otto Treptow +626381,Andrei Dudarenko +156004,Meghan Murphy +119545,Spec O'Donnell +1388524,Carl Toftfelt +1144176,Graham Parker +236676,Stefano De Benedetti +1168952,Michele De Virgilio +165473,Rick Traeger +1475771,Nathan Dales +1874737,Martin R. Nielsen +1015836,Eric Etebari +1356427,Marie-Claire Sadler +1471664,Paddy Wallace +1616030,Mathieu Goldfeld +569535,Prudence Edwards +228152,Giancarlo Costa +277081,Troian Bellisario +996701,Miles Teller +232245,Frank Perozo +1222025,Richard Dixon +95235,Dan Kern +1579772,Jubilant Sykes +202568,Torben Zeller +1339651,Bita Farahi +107898,Aleksander Pociej +1485937,Ramón Aguirre +43961,D.C. Douglas +130702,Cecile Aubry +1170260,Giorgia Bongianni +5042,Alex Minotis +110790,Matti Penttilä +1788170,Salef Celiz +1796401,James Loye +226564,Mario Maurer +37990,Henri Crémieux +14847,Scott Brady +1060186,Richard Chevallier +970466,Andres Bagg +1546535,Parviz Gurbanov +1847924,Cory Kennedy +94167,Joan Lorring +43645,Mike Reus +131306,Maurizio Arena +174514,Annie Mumolo +1232603,Ian Redford +122518,Erica Shaffer +1637559,Hailee Lautenbach +190383,Nicholas Lyndhurst +1148130,Jackson Nicoll +1615033,Vsevolod Yakut +1702121,Ashok Lavasa +1903781,Clara Zetkin +113808,Navdeep +1615559,Breanna Brooks +1023669,Vladimir Consigny +29999,Warner Baxter +585096,Chithra +544442,Paola Nuñez +1394434,Akira Fujii +225319,Daniela Tusa +1648,Roef Ragas +1113443,Kenji Tanigaki +1154461,Mimi Lesseos +1494966,Jessette Prospero +569843,Ramūnas Rudokas +225582,Jacques Chirac +1683842,Meher Pavri +1093516,Cassie Keller +1334173,Thomas Blake Jr. +48313,Will Woytowich +89973,Frank Hvam +1188881,Grace Vallorani +571335,Christopher Corey Smith +1665050,James Bowie +1396140,Aleksandra Khokhlova +1782573,Robert Malmuth +79621,Catherine Trudeau +1029325,Daigo Inoue +1114243,Bent Simons +559661,Jean Lipscomb +1024395,Ma Dong-seok +1411588,Kazuya Kojima +174733,Michael Aitkens +18505,Heinz Drache +227441,Kim Kyeong-ik +1295417,Kim Jong-su +1813857,Jaden Rain +1599676,David Jones +33297,Ben Easter +84513,Erin Kelly +145384,Florian Renner +1307516,Mohammed Zeeshan Ayyub +112110,Stepan Nercessian +1783680,Jered Meeks +929826,Emayatzy Corinealdi +44576,Charles G. Schelling +47646,Catherine Tate +1163726,Charlotte Jeane Lucas +156415,Billy Mayo +1337739,Artyom Katsov +1898245,Miroslav Zubac +1661877,Zafar Sanjari +1378357,Jenne Decleir +220893,Rob Mills +1315515,Frankie Cee +1852511,Calidore Robinson +142448,Husky Kihal +1747656,George Chester +1519247,Alex Harrouch +939073,Eric Blickenstaff +87527,Chu Sang-mi +552686,Rudolph Segers +1156086,Lou Veloso +1579542,Michelle Cameron +36749,Hans-Peter Korff +1117983,Teimuraz Chirgadze +1381651,Elliott Dixon +228346,Isa Günther +1153638,Florian Billion +581729,Christian Ameri +553005,Katrin Pollitt +1638440,Artyom Khabibulin +84756,Kyle Russell Clements +79917,Ridley Pearson +21550,Julie Bataille +1401455,Suzy Hannier +928106,C. Robert Cargill +1172595,Janette Caldwell +1482606,Zoe Fraser +240206,Iris Chacón +1192880,Damir Lončar +1099229,Evan Crooks +236790,Rúrik Haraldsson +1505293,Natasa Lusetic +25634,Margaret Brooks +1640412,Shafi +150942,Robert Bean +1273667,Leandro Amato +1764647,Jeffrey R. Kelsey +238957,Henri Martinez +52754,Mary Ann Mobley +1342866,Huang Jun-Lang +1176581,Aaron Craven +1278402,Ying Zhi-Gang +7194,Ken Hutchison +1182235,Daníel Ágúst Haraldsson +1408433,Norman Hacker +134073,Norm Spencer +1684475,Jeff Kinney +1771597,Allegra Nova +1331901,Alan Dukes +47360,Edith Hancke +1625132,Agnès Rosier +1567897,Jordan Henderson +148643,Michelle Wright +93031,Ryan McPartlin +47336,Marc Lavoine +1495913,Mannara Chopra +590710,Kurt Fuß +589082,Elvira Tonelli +65572,Frédérique Bel +1657787,Shane Nigam +1358970,Preston Baker +1056768,Keizô Kawasaki +120557,Angie Cepeda +993245,Mark DeMichele +1271012,Phil Pardee +564273,Orane Demazis +1439929,Bart Gordon +49812,Kirsty Mitchell +1108970,Souad Boukhatem +34390,Susanne Wolff +1668417,Jeffrey Dread +112176,Bill Lippincott +549431,Viktor Khokhryakov +19894,Thorsten Feller +1678624,V.J. Delos-Reyes +1085696,Eugenia Herman +1844350,Morena Milani +57578,MyAnna Buring +37249,Sonya Kraus +1905160,O'Ryan +1597831,Annabelle Garth +135448,Marko Nikolić +487393,Kate Sissons +109285,Jessica Forsberg +1278160,Kim Won-hae +1133530,Ivan Yudin +166471,Daniel Magder +1630312,Eugene Mosley +559779,Alexandru Bindea +1569984,Jc Caylen +108090,Slim DeGrey +1170007,Pedro M. Ruivo +110764,Aarre Karén +46898,Peter Graham-Gaudreau +109564,Amina Robinson +1481470,Uriel Iasillo +939592,Mark Reeb +89513,Jari Nissinen +285369,Ryan McDonell +1598405,Petr Svoboda +19927,Michael Kessler +959445,Ganesh Acharya +1823497,Silvana de Faria +1106890,Tornike Gogrichiani +1553308,London Hall +80002,Daisy Tahan +588108,Valentina Sperantova +173825,Bill Birch +1278125,Leo Thompson +29976,Robert Ober +566734,Poul Thomsen +1663817,Dan Mazur +1048129,Lee Van Atta +237041,Sarah Allen +94799,Beba Lončar +1611582,Ashleigh LaThrop +88957,Dick Sutherland +1481821,Andrea Belfiore +1214847,Travis T. Flory +1112415,Galen Hutchison +1798376,Helen Cooper +1619147,William Weston +179881,Jeremy Ray Valdez +1253678,Ryan Martin Dwyer +192458,John Bagni +221981,Antonia Thomas +1372346,Elina Abai Kyzy +126449,Veronica Bruni +1610941,Lyman Chen +115530,Mary Marr +1440183,Leo Au-Yeung +54593,Tad Hilgenbrink +101870,Debbie James +1305366,Kauko Kokkonen +1695631,Melissa Villasenor +173879,Elizabeth Keener +1382186,Glenn Millanta +207597,Mirja Boes +1532480,Ilari Johansson +25640,Parnum Wallace +1716341,Bruno Corbin +102198,Yvonne Wilder +1295461,Park Jin-Joo +73135,Eric Eisner +1716348,Jeff Robitaille +1331866,Ross Elliott +1867764,Charudatta Jadav +1624098,Donald Freeman +1807040,Frank W. Rima +1207267,Melvin Leno Clark III +98102,William Smith +1759672,Sandra Yap +21606,Sylva Koscina +1799842,Mary Rowe +1408163,Alisa Merline +130841,Kyrian Friedenberg +1560335,Sue-Lynn Ansari +1538585,Leilani Smith +30140,Veronica Carlson +1440457,Kasey Tang +1367999,C.J. Qualiana +1422654,Brian Morvant +144789,Subbu Panchu +1124543,Yûki Nakao +1484152,Fred Pinkard +1042794,Filippo Scelzo +95358,Elvy Yost +188923,Julie Stewart +114236,Pancho Magalona +1844341,Voula Henzinilodos +18983,Peter Thoms +1338074,Sarah Lian +70913,Ildikó Bánsági +234013,Kaspar Weiss +593137,Yunus Parvez +117937,Alice O'Fredericks +1545508,Ken Strunk +544873,Dhamu +1174579,Ozan Cem Dur +1066313,David Ausem +1285567,António Sequeira Lopes +1561639,Lauren Revard +126802,Alaa Safi +589248,Andrzej Nowakowski +1227233,Gwen Stewart +1442883,Matthew Ondiege +153849,Suzanne Ristic +1139841,Piero Pastore +562714,Willard W. Willingham +5404,Aldo Silvani +1863878,Marcela Falci +1095727,Oscar Andriani +1602205,Gillian White +89626,Reda Kateb +1519029,Zixuan Wang +35122,Mario Mazzarotto +1423490,Ben Konigsberg +1105278,Renaud Rutten +1148844,Nushrat Bharucha +1832742,John Russell Houston Jr. +52810,Miyoko Asada +51106,Blandine Pélissier +54977,Cecília Homem de Mello +1623406,Jiang Tong +1195616,John Topor +27649,Joseph Long +1207152,Marl Pero +27675,Mohamed Basri +80631,Martijn Lakemeier +1224010,Jon Jon Briones +1687935,Keith Hargreaves +112373,Tom Cameron +225257,Yuanyuan Ning +1581080,Au Lap-Bo +544724,Olimpia Di Nardo +1199020,Edmilson Filho +1511744,Jason Berg +586675,Martin Weinek +123329,Ruud Feltkamp +1670909,Sophie Don +128479,Shunsuke Matsuoka +56385,Grant Bowler +458905,Morgan Perez +1694310,Éric Gigout +5299,Cassandra Freeman +1233609,Federico Dordei +1304681,Sonam Sherpa +1287589,Jake Foy +128312,Nikolai Kryukov +156785,Sara Mornell +132058,Qiwen Hong +1246825,Jeremy Wade +217765,Norma Jean Nilsson +227601,Jules Philip +1179177,Therese Damsgaard +1384511,Uli Latukefu +103524,Rafael Hernández +1869063,Joshua Tanksley +932337,Connor Synder +181763,Trevor Lissauer +1283049,Zarin Rahimi +1182987,Gaëlle Jeantet +1600867,Kaoru Yamashina +1785910,Anna Elizabeth Eaton +1523010,Remedios Calinangan +87440,Chris Carmack +559741,Kate Elyse Forrest +1186940,Sidney Fullmer +239581,David Sandholm +11258,Hilmi Sözer +1837862,Gulcin Gilbert +586543,Scott Horton +1201399,Joseph Mika-Hunt +1713820,Tyrone Love +1435244,James W. Evermore +1179269,William Todd Levinson +1483781,Danielle Lauder +114953,Géraldine Nakache +1696226,Jeff Hanlin +94479,Cathy Weseluck +1898234,Ninoslav Ćulum +1669836,Katla Njálsdóttir +1471446,Owais Ahmed +125360,Vera Pap +1270223,Dana Wilson +1745552,Dimitri Naïditch +82362,Lucia Brawley +139151,Jemima Kirke +1754002,Nina Krachkovskaya +112831,Akira Koieyama +1560046,Elliot James Langridge +50886,Paul Bösiger +135627,Christopher Young +1642137,Minerva Mohabir +1642135,Angela M. Newell +28201,Christine Urspruch +1500628,Ron Nix +1781893,Larry Marko +76532,Jed Whedon +142260,Jordana Leigh +1478371,Toku Ihara +62967,Robin Weaver +16422,Don Messick +17838,Rami Malek +566884,Fábio Audi +1420169,Herbert Ballerina +1298266,Bali Rodriguez +145396,Kenan Ece +933508,Jamie Yeo +1493027,Apollo Abraham +82314,Karina Testa +1186515,Nicole Alexandra Shipley +1452408,Devrim Yakut +1862895,Shane McCabe +109075,Gelsa Palao +26760,Tsui Hark +975832,Sheila Sullivan +1398165,Kenny Mugisha +1779954,Ryan Spriggs +1689980,Rodrick Goins +1896757,Vince Guerriero +150617,Mariangela Giordano +931605,Fredrik Dolk +21313,Leota Bryan +1172581,Chili Bouchier +91632,Sonia Agarwal +1466289,Aigars Apinis +1846455,Andrea Yu +48377,Alessandro Bressanello +111668,Siddique +51270,Hugo Lindinger +1346732,Akaki Khorava +1331466,Seth David Mitchell +106490,Stefanie Scott +33296,Torrey DeVitto +1531926,Susan Wokoma +1162327,Matthew Jacob Wayne +143060,Harry Hill +160091,Neil Denis +1456750,Jeremy Sample +59801,Norm Berketa +63942,Julie Michaels +119967,Joan McCall +1771607,Wil Smith +1769862,Cesare Gagliardoni +25002,Lee Byung-hun +1845741,K. Trevor +1365344,Armi Toivanen +23171,Ferdinand Schmidt-Modrow +148334,Amira Khalifa +1023931,Ko Mishima +1496448,Vladimir Sychyov +236380,Michael Findlay +1164758,Adam Hartley +214438,Christina Murphy +225687,Anastasiya Fedorkova +1524954,Adam Michael Dodd +1383004,Amanda Thomson +1295524,Poonam Basu +128250,Massimo Bonetti +456066,Ryan Lee +459003,Goran Grgić +1116802,Jet Jurgensmeyer +79760,Kari Ketonen +54279,Souad Mouchrik +1570750,Michael W. Broomer +90754,Sonya Suares +1781925,Rossie Cottrell +1566180,Ella Daincourt +1895588,Najja Meeks +110027,Darlene Sellers +22331,Johan Rabaeus +82423,Veerle Baetens +1438284,Jason Ament +113780,Riley Polanski +1784683,Victoria Vodar +1016213,Minoru Torihada +543540,Ulf Palme +53255,Cesar Garcia +591569,Ilkka Villi +1398113,Kim Marko Germar +107375,Joe Frazier +82075,Deep Dhillon +92803,Brian Gallagher +106049,Jennifer Ellison +1307751,Chris Jackson +1207317,Christine Hoppe +1072780,Barlowe Borland +1489156,Sompong Leartvimolkasame +122651,Jane Stabler +1564300,Marcin Ulanowski +1147817,Antonio Giuliani +1720587,Grace Holuby +1758605,Natthakhan Intaraksa +1732070,Joseph Bertót +1436267,Fucheng Zhang +1096449,Aitor Luna +1336804,Yoo Jae-Myung +237172,Mike Duncan +235097,Evgeniy Stychkin +84012,Andreas Beckett +137629,Jevgeni Gaitsuk +91579,Georgina Hobson +51103,Charlotte Vermeil +228352,Armin Schweizer +99529,Vittorio André +578840,Saken Aminov +76750,Hampus Johansson +204392,Cristin Milioti +1537740,Diane Parkes +589844,Mariela Flores +1178415,Patrick Reynolds +42663,Robert Bathurst +1352296,Mike McLaughlin +1333907,Jason E. Hill +1538573,Emilie Germain +1018657,Keli Price +198203,Johnny Lee +587930,Marta Etura +1651933,Elena Benarroch +1818384,Fabian Alomar +148017,Johanna Kokko +1795614,Morné Visser +1496846,Mustafa Changazi +52938,Vanessa Lengies +72795,Josef Abrhám +113248,Tonton Gutierrez +201217,Linda Miller +1176579,Bob Kramer +42704,Lynette Walden +1489667,Tom Deardorf +1509233,Tomer Azarly +1729135,Drew Marvick +1760890,Michael Matovski +1695991,Henri Franklin +41029,Bernard Campan +37798,Friedrich Schoenfelder +86508,Ashutosh Rana +201335,Pat Starr +1863886,Dato de Oliveira +1573857,Anna Maria Buczek +1092241,Frank Fontaine +1086296,József Ruszt +1070661,Adrián López +1124052,Iñaki Beraetxe +143741,Anna Starshenbaum +1238096,Valerie Taylor +956637,Michael Zenon +1592923,Cynthia Ekoe +1380009,Ron Flagge +123660,Tara Spencer-Nairn +1636790,Jessica Daley +134722,Rudolf Jelínek +1047311,Frederic Tozere +1194966,David W. Thompson +1749484,Anna Jiménez +1052885,Ünal Gürel +61218,Abby Brammell +450660,Jessica Heap +2539,Julie Dreyfus +1413678,Barbro Wastenson +80933,Anita Strindberg +1753914,Josephine Langford +1021529,Chris Hayes +1132153,Ronan Summers +1201031,Koji Shirotani +1842092,Ashleigh Biller +1181306,Marta Milans +1811912,J. Brandon Hill +1207262,Frankie Torres +1174086,Xie Nan +1210599,Vera Kholodnaya +1061122,William Jackson +228618,Stefanie Estes +1085405,Carmen Losa +1545081,Brigitte Lahaie +155046,James Kim +157254,Bobo Lewis +1415568,Anthony Naylor +1353937,Torey Byrne +585000,Jimmy Carter +1637836,Stéphanie Gob +87295,Richard Grieco +140020,Lena Marie Johansson +140527,Amy Robbins +1755034,Jennifer Iacono +47988,Devon Anderson +1396348,José Manuel Muñoz +1736791,Zion Rain Leyba +78718,Malgorzata Zajaczkowska +1666760,Jamal Sydney Bednarz +58621,John Boyd +1660272,Nadya Podgornova +18273,Miriam Shor +92644,Micke Spreitz +1142677,Regina Fritsch +1480855,Jung-Yul Kim +544041,Víctor Valdivia +1137454,Jay Giovanni Ramirez +1692066,Matthew Sakimoto +102173,Sacha Darwin +1340294,Ha-eun Kim +1389740,Rony David Raj +1090731,Sung-hwa Jung +236016,Danielle Darrieux +568334,Sima Eliyahu +1105260,Bruno Armando +1472993,Anne G. Sterling +591946,Sergey Artsibashev +1562085,Nicholas Lupu +1894618,Jonathan Ellul +1382974,Imanol Gaztelumendi +1429014,Emily Tyra +1078989,Tomáš Pavelka +566544,Aura Garrido +1429475,Georgina Blackledge +1833913,Blanca Camacho +1630875,Francesco Paterna +73996,Sandro Iannotta +1629649,Yan Ngai-To +1009160,Quinn McColgan +108046,Polina Filonenko +150198,Ajmal Ameer +1473312,Álvaro Ortiz +1684557,James Jaysen Bryhan +214695,Kate Miner +84790,Diane Davisson +50906,Elsie Attenhofer +1670726,Karima Gouit +116467,Drew Droege +939003,Elliot Rittenband +1738306,Misty Mills +1427408,Viktor Bugakov +1366645,Robert Klein +1508644,Olivier Miconi +1734930,Zani Jones Mbayise +1544524,James Bellamy +113916,Scott Menville +63449,Josh Miller +168875,Gary Weeks +101600,Efrem Appel +1833304,Tony Farella +1108976,Liesa Naert +36790,Hans-Joachim Kulenkampff +1637256,Clare Mortimer +34960,Dachung +1689982,Lana Yoo +143733,Rodion Dolgirev +1532258,Conor Craig Stephens +101449,Maria Lease +1440863,Shari Gulley +55885,Sofia Helin +1498201,Cassandra Braden +122503,Liu Yifei +1907174,Fatima ezzahra El Jaouhari +1546533,Fakhraddin Manafov +1762880,Ahmet Arıman +1048963,Bill Blair +1604112,Joseph Valentinetti +239554,Kenji Imai +190826,Robert Coleby +88950,Joel McKinnon Miller +230582,Maria João Falcão +1207890,Richard Johnson +1253784,Lucie Bílá +221672,Derek Carter +1084970,Greg Speirs +1650217,Kenneth William Clarke +85545,Gary Hetherington +13363,Saskia Reeves +94097,Joan Caulfield +1782588,Edmund C. Pokrzywnicki +47163,Peter Vogel +1719889,Lennon +156356,Richard Cordery +1313830,Solly Duran +130054,Ursula Thiess +1749866,Susannah Mars +566722,Ya'ackov Bodo +1392201,Gene Kilroy +1398202,Eric Martel +1112483,Richard Falkner +1569986,Abraham Clinkscales +1542577,Bob Hachman +1158711,Daniela Kostova +939388,Cohen Holloway +1597738,Antonella Mosetti +46926,Joel West +240014,Elio Zamuto +161672,Mike De Anda +1189949,Edward Martindel +104155,Jacqueline Dalya +237173,Alan Koji +1650321,Bill Lemens +2843,Rob Campbell +1888599,George Mpougos +970104,Carrie Keagan +1519265,Unto Salminen +1509240,Rosaria Di Ciocco +89278,Barbara Nelli +16848,Rob Zombie +1512994,Ryan Sheridan +1611250,Nathan Wiley +1503915,Stuart Benson +54716,Lauren Miller +1838443,Ndiagne Dia +1692084,Steven A. Milling +558926,Sage Ryan +124682,Alexia Murray +1454296,Megan Lozicki +145362,Shirley Roeca +1763157,Takako Akashi +1586257,Matilda Thykier +63992,Brett Kelly +92704,Steve Vai +1662173,Shrirang Godbole +1224868,Richard Kahan +130874,Paolo Macedonio +1543764,Andrew Dallmeyer +1761843,Kari Kuronen +228518,Naima El Bezaz +221581,Rebel Wilson +110200,Rakesh Bedi +149870,Francis Leplay +1863879,Heitor Goldflus +1531588,William Gines +1820219,Lauren Culpepper +1315335,Kevin Johnson +579064,Christopher Nicholas Smith +36933,Adalberto Maria Merli +1004806,Engin Akyurek +565349,James Mellor +1381776,Luca Vecchi +1531603,Lena Owens +543508,Anna Juvander +1583286,Mike Hard +1650176,Logan J. Woolfolk +1159289,Bruno Rosa +1479707,Petter Width Kristiansen +1316023,Jon Kortajarena +1221102,Yoshihisa Kawahara +28256,Eduardo De Filippo +553623,Misa Aika +1092908,Eve Macklin +237322,Taka Okubo +1569779,Natalie Joy Johnson +6539,Alba Rodríguez +587099,Armando del Río +1170148,Bhawna Khanduja +73873,Teco Celio +584302,Jacqueline Porel +1418958,Diana Phipps +1555729,Jessica Johnson +1236595,"Henry Louis Gates, Jr." +1757176,Michael Boretz +53304,Peter Lord +136350,Eden Porter +1410523,Vasco Bailly-Gentaud +544553,Anna Zinnemann +1280604,Hayati Hamzaoğlu +1273917,Kamil Tkacz +1244172,Matthew Robert Kelly +1572043,Bettina Bresnan +1764331,Petru Gheorghiu +206378,Hosea Chanchez +1121626,Calvin Smith +1535437,Dirk Nocker +120521,Lyle Latell +1080210,Russell Arons +145411,Uğur Polat +1286549,Jasmine Aceves +184402,Carlos Navarro +550148,Fernando Caruso +227085,Ekaterina Kuznetsova +1407145,Jeremy Bernstein +70962,Donatella Damiani +96161,Karen Sharpe +1869477,Chris Gatewood +36208,Arthur Miller +944510,Lisa Valens +206756,Nikki McCauley +1057630,Henry Hanikka +123049,Odysseas Papaspiliopoulos +1892773,Henry Webster +97058,Joseph Runningfox +130497,Sabina Guzzanti +938639,Francesc Belda +1174458,Yan Jie +1873606,Joris Van Ransbeeck +131975,Anne-Marie Blot +1110910,Juliet Garrett +1863904,Diana Galantini +1353422,Jan Krafka +103016,Eleanor Wesselhoeft +999996,María Douglas +965200,Venkatesh Chavan +560296,Julian Noa +569544,Jeff Griffin +121889,Fred Warren +1105463,Kim Engelbrecht +115896,Anya +1651432,Glyn Angell +78916,Farhan Akhtar +1695139,Sarah Lamesch +6500,Vijay Raaz +400612,Xavier de Guillebon +1890680,Luciana Domiciano +1747654,Geraldine Bogdonovich +31656,Andy Bichlbaum +1140130,Jesse Cordasco +1174369,Lena Lam +1115145,Jane Farnsworth +1152669,Guillaume Briat +528638,Mumaith Khan +1883817,Jared De' Har +1248373,Motoyuki Kawahara +1358928,Greg Ingram +119995,Rosanna Banfi +1059100,Jiří Žák +169428,Baby Ashrafa +120550,Joan Banks +1003241,Kizzy Mee +208931,Spencer McLaren +1504914,David Covarrubias +1176384,Julio Daneri +1835581,Naya Amobi +146021,Jason Leith +1179423,Douglas Bennett +67811,Hanna María Karlsdóttir +213211,Kylie Trounson +1029132,Christina Hovaguimyan +25723,Vladimir Kulhavy +74191,Cam'ron +1888493,Stojan Petrov +226581,Luke Healy +44879,Gilbert M. Anderson +117073,Evelyn Venable +1640625,Elias Ferkin +1264251,Stefano Villabona +211598,Andrew J. West +33701,Warner Richmond +98969,Joey Smack +1413783,India Zorkovic +1279897,Peter Meinhardt +535740,Laura Alves +148037,Jr NTR +1261375,Kyra Zagorsky +1192900,Anna Quick +576222,Chase Williamson +1796485,Richard Trinder +563338,Yehuda Almagor +1197581,Michael Kiel +1029101,Riikka Martiskainen +1346510,Don Fischer +83871,Rudolf Götz +1070886,Daisy Head +1500687,Michael Bienvenu +1795034,Caleb Walker +1042797,Pupo De Luca +1739823,Michael Knight +138883,Lloyd Semlar +1519998,Troy Romzek +1294284,Ladislav Jandos +571210,Laura Summer +582744,Oscar Keesee +1676158,Darryl Van Dyke +946857,Fabián Arenillas +114952,Nathalie Levy-Lang +1738622,Lena Münchow +1257563,Annet Mahendru +27881,Olga Zuiderhoek +584171,Yiftach Klein +19913,Andreas Günther +1158763,Raoul Fortier-Mercier +1050849,Nenad Herakovic +586527,Jayden Taylor +125280,Mihai Constantin +176956,Stephanie Champlin +134608,Katie Keating +44097,Maria del Mar +70839,Emilia Schüle +590309,Gorka Aguinagalde +239942,Alina Nedelea +239899,Valerio Tambone +64014,Carlos Leal +1907177,Ayoub Layoussifi +1124980,Timmy Creed +230039,Sarah Hannemann +1194737,Junji Takada +575698,Stephanie Sousa +1078404,Charlie Alberto +147100,Nuno Lopes +130386,Kathryn Marlowe +1456426,Benzirar Baroudi +1476852,Kirsten Maltha +928158,Ludwig Göransson +1247272,Zero Kazama +1185038,Charity Staley +1061545,Javier Manrique +71686,Christopher Gehrman +59204,Nick Gregory +65758,Stephen Joffe +49100,Axel Olsson +162229,Laura Campbell +117458,Brian Downey +114484,Matheus Souza +1344592,Cliville +1528380,Javier Esquisabel +1380400,Bigelow Cooper +98834,Nejat İşler +12399,Joffre Soares +1692966,Solange Teixeira +60293,Jeremy Guilbaut +1325945,Juan Gabriel Pareja +1095872,Eugenio Becker +148393,Juha Muje +1707834,Kenny-David Baehr +1489790,Chloe Pecorino +168658,Melissa Ponzio +1435850,Aaron Jackson +98159,Miranda Kwok +1855135,Rosemarie Dexter +1345429,Marcel Sabat +1371551,Melissa McMeekin +544227,Zuzana Bydžovská +204651,Stephanie Kurtzuba +1042571,Sidney Martins +144309,Anders Ekborg +1436403,Hanyi Zhang +228882,Stephane Girondeaud +1550581,Charlotte Ubben +1574461,Lela Bagakashvili +127790,Piyush Mishra +120037,Tommy Farrell +4644,Semka Sokolović-Bertok +1754454,Sharon Farmer +1059885,Rina Franchetti +1895703,Rosa Lee +3495,John Sumner +14149,Renato Scarpa +120470,Ivan Miller +1173618,Joyce Payne +1760469,Desirae Anslover +1127382,Franca Mazzoni +1626950,Megan Baily +1537754,Michael D. Reynolds +208710,Shaun Earl +1241192,Hendrik Borgmann +1336329,Steven Ogg +1602315,Toni Sans +1034671,Debbie Mathers +1670757,Kelly V. Lucio +1376889,David Chow +1772836,Carmine Monaco +1349591,Jens Eulenberger +1109632,Ai Kato +1603637,Emrah Erdogru +1191826,Rithy Dourng +616517,Stephen Payne +1278121,Alex Austin +91587,Blythe Metz +1787126,Pilar Gómez +560130,Boris Kokovkin +227603,Jean Maheux +160959,Dennis Redfield +534896,Lisette Lanvin +76004,Josh Janowicz +64445,Elisa Gabrielli +116163,Elli Castrén +1251570,Lesley Fera +64707,Yu Cheng-Hui +1849122,Aurore Lanoë +554499,Yuma Nakamura +29774,Dan Lauria +1512027,Ahmad Mehranfar +1283054,Perparim 'Peter' Bici +112326,Paula Brancati +92944,Noreaga +198647,Emma Stevens +27658,Zaki Houari +1501941,Orphée Ladouceur +1676027,Ainsley De Silva +132603,Neil Kirkland +1412166,Robert Snively +115107,Roland Armontel +1653010,Thomas Coates +1630994,Faycal Sekkoum +1572790,Tony Benn +33865,Piero Corbetta +171627,Mike Burstyn +102777,Mel Fair +103995,Scott O'Donnell +928698,Nic Novicki +979018,Emanuelle Araújo +157020,Timilee Romolini +172103,Victoria Dillard +173027,Andrea Whitburn +136193,Takeo Nakahara +1188972,Geraldo Rivera +1239372,Julia Chantrey +1000941,Janet Chapman +1470018,Ashkan Khatibi +1847208,Michael Miller +109560,Gabourey Sidibe +145839,Richard 'Skeets' Gallagher +1052209,Andrew Byron +1696019,Henrietta Hermelin +1043254,Dragomir Čumić +136073,Christoph Clark +1281288,Daniel Caren +1175092,Ivan Agar +1731382,Nicholas Politis +1208438,Grant Holmquist +62861,Andy Samberg +1620449,Lou Salerni +1830429,Leon Collins +571940,Dave Barbour +230697,Gary Cargill +1561020,Ismaila Sarr +1633762,Doug Shimell +65277,Zhang Fengyi +970681,James Byrnes +592727,Marcel Maupi +1473957,Michael Aaron Milligan +1753498,Alison Tieman +1159002,Tom Jackson +1097786,Eva Millberg +1408401,Kevin Hickman +147883,Justin Blanckaert +1420033,Kong Ling +1325761,Scott Allen Perry +1407936,Rainer Galke +1171286,Franco Cabrera +1186443,Juan Carlos Naya +1337015,V. I. S. Jayapalan +100795,Phyllis Stanley +1056072,Ali Cook +1293656,Skyy Moore +927972,Jonas Bane +192589,Sari Chang +567994,Nando Gazzolo +98435,Mark Collver +928456,Roger M. Mayer +161891,Dominic Hoffman +116575,Kim Hawthorne +1398206,Dean Placzek +144619,Giuseppe Tuminelli +23733,Annick Alane +84841,Randy Wayne +183519,Craig Stark +88442,Claudio Caiolo +92355,Scott Garrett +1750513,Sarah Frangenberg +1030522,Maria Popistasu +1404559,Flo Mega +1798374,Judith Amsenga +1001017,Dino Curcio +1362684,Maythavee Weiss +59928,Danielle Hampton +1436646,Vladimír Krška +218107,Terry Bird +3610,Madeleine Carroll +93108,Lars Hjortshøj +586216,Nikolai Prokopovich +1231648,Charles Farrell +963720,Amy Motta +120275,Sergio Forconi +1376403,Eric Klotzsch +9242,Giuliana Lojodice +1519569,Roger Preston Smith +540282,Hilda Fenemore +88834,Erin Cottrell +1870834,Dato Abashidze +1402409,Gábor Torday +1479515,Terry Braun +112144,Freddie Joe Farnsworth +1459890,Marcel Novek +225535,Kohei Kuroda +1291458,Wang Zhifei +1841539,Bekah Saidman-Krauss +1130877,Miki Ros +45588,Clare Higgins +137831,Luana Patten +20191,Jose Pablo Cantillo +544921,Cheng Miu +931219,Jon Michael Davis +123632,David Doyle +1343579,Khalil Ramos +544619,Boris Runge +1290854,Sam Lipsyte +213058,Nnamdi Asomugha +1327880,Nicole Kolman +1729809,Patrick Correll +73060,Daryl Jackson +1301911,Oberdan Júnior +24759,Jacques Toja +1548316,Joe Copsey +572243,Romina Tahami +1562088,Benjamin Plautz +154816,Michael Patrick McGill +1588820,Ignas Gužauskas +127804,Robert Mak +1102261,Kim Ly +1619019,Gyöngyi Bürös +24758,Nicolas Silberg +991494,Celia Travers +1281803,Gavin Arthur +1638433,Leisan Sitdikova +146573,Frank Aendenboom +1095236,Anton Thomson Coon +228344,Elsbeth Sigmund +101093,Rochelle Swanson +1782871,Christian Lagasse +119336,Rafael Edholm +1112468,Yoshie Nakagawa +1432558,Inah de Belen +1341448,Margot Bancilhon +84227,Justine Wachsberger +146923,Yuri Tarasov +517007,Rikki Howard +1324630,Sara Jecko +1085857,Ulrich Gebauer +990473,Ashwini Bhave +939358,Polly Cole +90399,Curtis Bechdholt +485005,Vanessa Ray +1460855,James Leard +1241802,Kit Lang +939100,Ali Marhyar +1156245,Vita Vārpiņa +934585,Bianca Krijgsman +87932,Renée Elise Goldsberry +1144300,Serena Bennato +1427451,Vibha Chhibber +180203,Claudia Besso +1009885,Liz Carey +125627,Tuukka Huttunen +1169432,Diego Hurtado +1665951,Rachel Federoff +1417509,Aleksey Polevoy +1581032,Nuttapon Kemthong +1742833,Alice Albergaria Borges +122759,Maakariini Butler +1882932,Italo Renda +1153755,Chema Adeva +1844909,Mariafae Mytnyk +148720,Jamie Morton +1086862,Eden Watson +992588,Gene Barge +1625479,Chiu Gwok +54692,Martha MacIsaac +1138248,Ewa Kolasińska +559476,Ashok Saraf +94792,Tammin Sursok +1507601,Holly Hougham +1384004,Gillian McGregor +32315,Gigi Ballista +1037373,Glen Warner +1271277,Mozos Francisco +223798,Mikhail Skryabin +156288,Jeff Griggs +115595,Carlo Mestroni +1707841,Renick Bernadina +1367771,Bob Jesser +1562566,Lu Peng +47130,Helmuth Rudolph +1838726,Luke Valenzuela +12216,Kellie Waymire +134621,Jun Fujikawa +101015,Chin Han +1468597,Taylor Richardson +1024806,Stefano Fresi +1567899,Crystal MacDonald +1210485,Alyson Bath +1191300,Alexandre Etzlinger +150676,Bobby Soto +1293064,Santiago Magariños +1192363,Vilis Daudziņš +1428379,Shea Stewart +1066314,Tony Batman +229561,Abdul Ayoola +1363623,Jim Bennett +1432982,Holly Scott Cavanaugh +144654,Minoru Shiraishi +1589596,David Haugen +1356494,Fernando Iglesias +1362822,Carlisle Forrester +133051,Antonella Lualdi +1001780,Burhan Yıldız +25674,Christopher Ettridge +33720,Ann Smyrner +231819,Gerhard Liebmann +435837,Joseph Smith +1476384,Robert Lonsdale +33702,Ben Lewis +187523,Bill Mitchell +1323860,Julien Deschamps Jolin +1175469,Michael Horton +1271113,Nate Steinwachs +1266314,Charlotte Gallagher +1551198,Santhosh Keezhattoor +1353938,Tommy Ball +1054395,Elena Beuca +123403,Elizabeth Chan +121635,Graham Kennedy +158949,Eileen Saki +94423,Shantel VanSanten +219430,Jack Harrell +1661267,Sadie Robertson +119365,Jack Peach +1205935,Daryl Montgomery +1581574,Marc Kenison +132708,Michael Raffetto +139635,Stuart Davidson +137820,Aapo Ilves +1548222,Chris Lew Kum Hoi +993784,Rhydian Vaughan +1115699,Michael Schneider +1413104,Jon Seleș +1132168,Johannes Holopainen +14018,Erik Chitty +1040027,Feliks Yavorsky +111924,Ryan Grantham +31078,Tatsuya Fujiwara +1305041,Malin Maradjo +236826,Oleg Strizhenov +569973,Danko Ljuština +1142354,Mandy Lieu +34056,Marta Aledo +36730,Matthias Koeberlin +60723,Kevan Ohtsji +211944,Sonal Shah +1508677,Léo Lorléac'h +160573,Dionne Warwick +75814,Sean Skene +1448885,Kristopher Higgins +1459156,A.J. Wartinger +1058027,Grant Harvey +88945,Ehra Madrigal +1290333,Jack Vyvian +1672910,Rienus Krul +100022,Len Kabasinski +41879,Marie Kremer +94018,Meisa Kuroki +32375,Mario Monicelli +1819135,Pietro Schito +1178035,John Lawrence +28368,Klaus J. Behrendt +221211,Maria Sid +217530,Aaron Harpold +44646,Alessio Boni +1185386,Masahiro Higashide +1825285,Laurence S. Chess +1338707,Avril Maas +1467914,Tyler Strother +1291848,Yvonne Landry +1507962,Màrcia Cisteró +175003,Frank Dent +1320183,Lara Atalla +1887743,Jacklynn Smith +1625138,Catherine De Guirchitch +1308444,Horst Tomayer +1504600,Francine Pilote +132196,Ernesto Almirante +22437,Philip Sterling +1592948,Marie-Sophie Roy +237078,Celia +96056,Kenneth Thomson +586496,Linda Gary +545078,Benoît Dagenais +272929,Lars Amble +1776045,Véronique Montel +1891541,Jase Wiedeman +1049365,Ramón Balenciaga +1223381,Nicholas Vlachakis +1195506,Pauline Egan +1853,Thierry van Werveke +583281,Claire Olivier +224454,Hideaki Tezuka +97469,Robert Seymone +1820242,Marita Rosada +585780,Michael McKiddy +1757114,Paul Lauden +70142,Jacques Jouanneau +1589813,T.P. McKenna +1052840,Stella De Lanti +278180,Natalya Shchukina +1215797,Erinn Hayes +223233,Jacques Kébadian +121143,Frank D'Amico +74157,Christian Maier Smith +1630311,Ashley Carr +86780,Shillpi Sharma +1426905,Hsing Feng +61663,Faith Evans +577648,Stephen John Davis +56172,Steve Markoff +1319571,Elizabeth Bunch +1605451,Edgar Pauly +1173456,Adam Williams +1581785,Aashif Sheikh +93540,Anatoliy Belyy +1480060,Eric Frank +76687,Loretta Higgins +77668,Ammara Siripong +1172565,Lesley Gore +201093,Josh Holliday +134625,Shôzô Nanbu +1592943,Matthew Comeau +1085215,Archie Adamos +1762439,Rosemary Tichenor +53861,Susan Seidelman +1035838,Matteo Simoni +1093722,Yolanda +92077,Willow Johnson +99455,Susy Andersen +1239440,Ellen-Ray Hennessy +1067470,Igor Mendjisky +1115068,Mei Nagano +32625,Paul Berndt +1788484,Jan Koecher +1505021,Eric Herson-Macarel +1257584,Jung Ae-yeon +32094,Katia Tchenko +1117981,Ramaz Giorgobiani +567245,Nobiko Sawa +21542,Silvia Tortosa +1488887,Andrew Klazinga +999546,Dave Edwards +1872182,Livia Romano +1869053,Thina Lowe +1319235,Lise Lacasse +1338247,Chris Newman +590970,Hans Homma +1324061,Héctor Mendoza +81197,Mark L. Young +1784284,Pavol Dynka +1651377,Emma-Jane Martin +1821662,Vanessa Selbst +1071149,Hanna Held +444008,Jayne Wisener +97816,Jackey Hall +79110,Ben Anderson +204408,Helena Barrett +1186856,Christoph Colomb +1299351,Lee Min-ki +968353,Alejandro Abelenda +49324,Uwe Freyer +1724785,Natalya Chenchik +25944,Larry Poindexter +13737,Yevgeni Sitokhin +1589576,Teddy Nygh +1206261,Ester Anderson +231442,David Lenneman +1455929,Kit Cheung Man-Kit +1130129,Marius Badea +33453,Rollo Weeks +14689,Virginia Weidler +1234518,Alan Andersz +1535985,Jason Loughlin +150169,Rube Miller +1758904,Diosmer Reynoso +1760858,Gareth Kieran Jones +1879227,Haroon +227139,Agot Isidro +1822711,Martha Flaschka +1371261,Andy McDermott +745528,Nezha Rahile +1085786,Julia Nachtmann +550900,Carrick O'Quinn +89900,Vera Cook +84275,Joshua Olatunde +1622090,Damon Bellmon +80178,Benz Antoine +118336,Agniya Ditkovskite +1476853,Christian Lykke Nielsen +1297772,Kirk Brown +53779,Djoko Rosic +1683144,Russ White +1333162,Mark Wallace +1089016,Seri DeYoung +985416,Margrét Helga Jóhannsdóttir +1606299,Crane Jackson +1764130,Russell Schuldt +107755,Grethe Fox +97675,Jane Hylton +235436,K.K. Downing +139765,Ernest Clark +104437,Tally Chanel +121533,Agathe Bonitzer +27672,Younes Megri +107890,Andrzej Pieczynski +1347947,Remy Hii +1753504,Janice Fiamengo +61743,Vicky Hernández +1030701,Tarri Markel +147069,Britta Pettersson +1312112,Birte Schnoeink +1642341,Anatoliy Koshcheev +1159650,Jeremy Gardner +1880540,Laura Iannone +2558,Cesare Danova +1239834,Oliver Dimsdale +42956,Laurel Wiley +1050724,Billy Lee +1438812,Zaydah-lee +17443,Chase Offerle +153561,John Wheeler +1055269,Andre Heneke +117528,Homayoun Ershadi +34721,Larry Bishop +63860,John Bayliss +1631186,Oscar Salcedo +961755,Andrew Matthews +151043,Randy Orton +96082,Yoko Ono +97835,Phil Arnold +1034714,Aniello Arena +1085172,Vittorio De Bisogno +936497,Jessica Cameron +232595,Lauren Steventon +54652,Fiona Reid +111590,Michael Brynjolfson +88663,Lyndon Brook +5847,David Kross +1200667,Lily Pearl Black +1262854,Michael Jones +1180452,Sarutoki Minagawa +67345,Fadi Abi Samra +1685266,David Mitchum Brown +1696223,Thomas J. Fentress +1330012,Admir Sorra +1390501,Matthew Meese +22605,John Rogers +1782604,Blake Ramsey +100102,Lisa Collings +1232605,Ted Sod +1496180,Viviana Strambelli +150433,Chris Henry Coffey +112053,Michael Chieffo +1460211,Michelle Rose Domb +1281099,Leonilde Simoncelli +1132075,Mike Hart +1862037,Valerio Isidori +228883,François Hatt +111364,Christian Magdu +235038,Kyoko Hasegawa +1273511,Brigitte Barilley +1377186,Halldóra Guðjónsdóttir +441790,Gianni Giardinelli +1169489,Anne Richard +111921,Grayson Russell +1366693,Berna Roberts +129545,William H. Strauss +1299674,Ian Casselberry +1744814,Véro Tshanda Beya Mputu +622844,Vince Jolivette +1525451,Abdellatif Chaouqi +300191,Paula Moore +53844,Lilay Huser +1516696,Thomas Redford +1360969,Juan Carlos Velis +590877,Gabriela Aguilera +1460265,Cristina Pascual +1338127,Oona Menges +1636761,Lauren Ashley Berry +1561246,Nora Borchert +1774536,Phil Longergan +1746969,Stephanie Damiano +113757,Luka Petrušić +565498,Laura Cayouette +1284241,Helmuth Häusler +1844335,Jimi Panoutsopoulos +1640657,Sarah Strasberg +70685,Ger Ryan +1548434,Gene Patton +1089695,Kye Benson +32266,Darren Evans +228178,Brandon O'Neill +1511014,Ciara Rose Burke +567110,Athena Lorde +109337,Alessandro Sperduti +76112,Steve Wiebe +213464,Shôji Yasui +93594,Arthur Deschamps +17575,Anna Prucnal +1153536,Lena Clark +1339741,Thalapathi Dinesh +1785904,Daniel Dow +145363,Kim Hye-ok +148631,Toke Townley +126674,Ellen Ekdahl +101576,Annie Belle +983368,Katherine Von Till +586757,Adèle Exarchopoulos +99535,Silvia Dionisio +1549540,Ben Jarvis Dumas +1871229,Fabrizio Ferri +60605,Dexter Bell +120267,Matty Kemp +1298299,Evelyn Bishop +229261,Clara Bindi +1903776,Anna Ulyanova +1349719,Ruben Crow +1597992,Chris Conner +1744817,Nadine Ndebo +81483,Gary Pillai +138769,Alex Draper +1096830,Leonard Christmas +77435,Hajo Mende +1465,Chris Thomas King +143738,Olesya Potashinskaya +1519567,Seth Hampton +47463,Santos Morales +1255200,Nora Binder +1511982,Doug Plaut +1335230,Jules Gund +1063013,Bryan Chesters +1193562,Mohammad Beigy +1598800,Dan Pelchat +1503844,Keenan Allen +1699685,Hitesh Dave +236983,Paula Knowles +1185473,Dan Gordon +1425207,S. Leslie Julian +227805,Joe Ma +161317,Jim Malinda +40327,Tōru Furuya +1018916,Francisco Tavares +108107,Konstantin Bronzit +1872492,Benjamin Taylor +71894,Wyatt Ashton Prentiss +1093245,Anna Gunndís Guðmundsdóttir +1163458,Grace Helbig +938671,Ville Tiihonen +1423064,Jesulín de Ubrique +549372,Janusz Chabior +1503914,Nicola Victoria Buck +1512204,Reen Vogel +1113292,Chandler George Brown +1359950,Kyle Deluca +1771578,Jason Michael Elliott +1431798,Petra Scharbach +589738,Boris Shchukin +1862908,Patricia Landau +1127386,Agnese De Angelis +1001791,Hüseyin Bekeç +1689148,Gabe White +37569,Antonio Resines +592470,Guadalupe Lancho +582416,Raymond Hitchcock +87873,Tsugumi +129521,Charlotte Greenwood +1745554,Solenne Rodier +992851,Maarit Peltomaa +145166,Ben Bishop +1894269,Olivo Mondin +1169105,Lillian Hayman +140674,Navneet Nishan +86187,Franklin Dennis Jones +1217075,John Orcsik +1562137,Carl Roup +1508189,Victoria Nugent +1446331,Kathryn Carlling +107379,LeBron James +1550884,Eugene Dieterle +1885894,Tessa Morris +94067,Alexis Loret +1771668,Hiu Woong-Sin +29870,Fiona Gillies +1270035,Peter Boulware +966264,Jade Yourell +1543952,Keisuke Akizawa +1298269,Daniel Ross Mix +1332482,Xavier Laurent +1397794,Leah Christ +1212959,Gina Clayton +1287978,Shannon Plumb +1288867,Naiia Ulrich +1278867,Kelly Greyson +1750432,Justin Sandler +1121911,Lucy Chevalier +968692,Gerardo Davila +1081614,Ann Noble +563097,Linda Dalby +156005,Jeffrey Scott Jensen +1854451,Giovanni Piscopo +123795,Michael Urie +1798882,James Johnson +1315535,Jean-Édouard Bodziak +1695662,Kyle Hatch +1296517,Theodus Crane +1500627,Nate Long +39327,Michael Fitz +1401534,Seamus Hughes +96279,Con O'Neill +1795292,Gail Lyon +1905788,Irena Morisakova +1353653,Bryon Chief-Moon +83434,Gary Crosby +1634017,Benjamin Loeh +47319,Hans Hermann Schaufuß +1440699,Sara Sohn +91373,Elizabeth Hubbard +1755089,Benjamin Wood +222557,Zachary Nolan Auger +1263878,Martin Melin +1034220,Reid Morgan +238534,Alisa Grebenshchikova +1509327,Suman Ranganathan +1579245,Raquel Thomas +592913,Malgorzata Hajewska +1370819,John Procaccino +181250,Patricia McKenzie +51056,Jochen Brockmann +141371,Christopher Joy +1905794,Daniel Vojtech +110848,Valeri Solovyev +1322777,Ekaterina Malikova +1376003,Sherri Eakin +1755083,LaQuita S-Kay +47569,John Horsley +564941,Lucy Hutchinson +1209368,Delphine Tempels +147537,Tim Haars +105325,Jean-Christophe Brétigniere +1471865,Cindy Creekmore +1052508,Jewel Blanch +1819147,Craig Strawn +237346,Giselle Blondet +1484592,Terence Soall +1820018,Tim Ingall +142955,Alison Armitage +1012628,Paul Sherman +1186769,Clyde Dilson +64720,Susan Jennifer Sullivan +1704668,Tashaun Stanfill-Perry +1425214,Beverly White +1024959,Eulabelle Moore +999329,Kevin Hernandez +1376078,Jack Holden +1168999,Rick Khan +98870,Joseph Haggerty +1585399,Eva Larvoire +1446335,Perry Thompson +1794822,John Raymond +1768822,Isabelle Bondiau +1363771,Dado Crostarosa +1579273,Elena Stonciute +1287513,Alex Nazzi +1667524,Amy Lester +1780273,Luke Bonjers +1214870,Tyler James Williams +151162,Agustí Villaronga +126131,Evo Morales +1716335,Christian Picone +235294,Gota Watabe +1578280,Jackie Davis +1384640,Yannis Vouros +10993,Tom Felton +1197664,Violetta Schurawlow +935071,Antonio Gradoli +1168224,Ishita Vyas +1433911,Alfred Hawkins +1379273,Natasha Gordon +35344,Denny Doherty +1082283,Alnur Turgambayeva +1003817,Blackjack Ward +1136510,Kawai Okada +1415701,Johnny Monteiro +1740109,Ed Tillman +1663885,Vaughn Taylor +1845755,Nina Jääskeläinen +1465471,Emmanuel Castis +1287098,Charlotte Brimble +83858,Simon Barrett +1159284,Joy-Maria Frederiksen +1204781,Narushi Ikeda +99628,David Byrnes +43508,Anthony Skordi +1072139,Niki Wane +1860885,Peter Walton +107393,Orla O'Rourke +119901,Eva van de Wijdeven +1848645,Aline Guimarães +1189687,Olga Dreģe +1610309,Cherise Bangs +571570,Michelle Bergh +1605664,Mapaseka Mathebe +1822967,Gerold Huber +17525,Barnaby Metschurat +88871,Phyllis Povah +94066,Cédric Chevalme +583739,Kirill Boltaev +44705,Rhonda Shear +1255131,Acelya Devrim Yilhan +1559491,Theodore B. Taylor +82607,Peter Docker +1271752,Tim J. Smith +202660,Laura Niemi +1653243,Kazuomi Takagi +1357252,Memo Benassi +15552,Charlotte Savage +37308,Enzo Fisichella +178608,Elizabeth McKechnie +64215,Didier Sandre +224180,Viva Bianca +227565,Ronald Bronstein +1526157,Timothy DeLaGhetto +1288480,Sven Relander +53870,Jörn Hentschel +27460,Guillermo Toledo +1353446,J. Parks Jones +126984,Claudia Pandolfi +1681778,Jordi Tarrida +133031,Nicholas Blane +1760266,Ade Firza Paloh +22333,Erica Braun +1121529,Peter Strynckx +78871,Wu Jing +127153,Pete Atkin +87662,高桥一生 +240081,Choi Moo-seong +105996,Jim Boelsen +155950,Jennifer Aspen +1574334,Dileesh Pothan +123967,Micaela Pignatelli +1536687,Arash Kohanteb +86796,Tatyana Pelttser +1475818,Drew Tanner +1648978,Jon Inge Nordnes +1561789,Guro Nagelhus Schia +1805302,Nico Nothnagel +20803,Zuleikha Robinson +1248830,Daniela Peštová +1069786,Oskar Pöysti +79633,Jess Conrad +1568246,Maria Luisa Bavastro +1564303,Stanislaw Lowicki +1643635,Charles Lawlor +93692,Steve Zurk +6082,Sebastian Urzendowsky +1207362,André Kasper Kolstad +1751949,Sandra Itzin +55664,Chika Sakamoto +1403241,Noel Stookey +1163608,Alexandru Papadopol +590878,Stephania Barbagelata +223771,Daniel Fripan +56296,Márta Fónay +1151957,Sophie Kennedy Clark +126988,Sergio Albelli +1568513,Despoina Nikolaidou +543726,Lauren Ashley Carter +74750,Georges St-Pierre +87073,Rodney Rowland +1638438,Olga Gileva +128020,Gianni Cavina +1853769,Sonia Tozzi +5713,Chris Wedge +152545,Kelly Butler +1330383,Guido A. Schick +34868,Vincent Croiset +1353906,Thomas M. Gofton +36019,Roberta Paladini +1012349,Reiko Seto +988593,Marc Raymond +556928,Christina Keefe +84702,Gregg Brazzel +1021449,Martine Fléty +1410478,William Jackson Harper +228792,Dorit Adi +68190,Maximilian Artajo +233474,Robert Capelli Jr. +78674,Luciana Littizzetto +543558,Guido Celano +151137,Estelle Hemsley +1726741,Natasa Babic-Zoric +1661473,Mike Rinder +562160,Bianca Byington +1771535,Laura Palka +145219,Oscar Torre +1477411,Gretchen Kingsley +15094,Diana Kent +86025,Shri Vallabh Vyas +139309,Mary Elizabeth Ellis +225082,Marcelo Adnet +1393186,Anastasia Bredikhina +1865888,Liliana Gane +1031246,Tong Dawei +1066343,Joe Osborn +1025669,Aurelius DiBarsanti +1381630,Jamie Moore +141468,Az Abrahams +1353676,Suttinut Uengtrakul +1424249,Matt Lockwood +1523987,Christian Taylor +229707,Robert Lee Oliver +1365383,Maria Rosaria Russo +53371,Eva Haßmann +1736792,Derrick Barry +1294428,Zineb Elkabi +1268985,Christina Bellavia +1086564,Stephanie Leighs +227316,Franco Pastorino +1670351,Alejo Apsega +1203293,Alan Calton +109836,Lucy Flack +1298419,Cleo Desmond +66188,Renée Soutendijk +521916,Bruno Henry +995515,John Conor Brooke +1355225,Rawlston Masaniai +1205623,Barbara Vincent +1717825,Ray Julian Torres +1294772,Hwang Byeong-guk +1027241,Al Shean +567515,David Sánchez del Rey +50981,Karl-Heinz Peters +64154,Sasha Alexander +96181,Sally Stephens +1435274,Mike Garthwaite +1138626,Änne Bruck +81170,Lauren Maltby +1176782,Katherine Moir +1572261,David Wendefilm +151887,Ken Christy +1498258,Rick Henrickson +1589597,Merri Biechler +1214101,Jan Holden +64751,Mathieu Demy +1520107,Nolitha Zulu +1821365,Gregor Kelder +1661904,Manwell Reyes +1585120,David Hill +1302500,Hiromi Oshima +1361065,Deleono Johnson +239486,Andrey Martynov +1609485,Pai Ming-Hua +593053,Antonino Paone +1692099,Cliff Bernhardt +81682,Bojana Novaković +971123,Ignatiy Vishnevetsky +1342850,Du Chuan-Yang +1166917,Selena Khoo +128174,Tom Bresnahan +1423493,Belén Cuesta +1108176,Tim Murck +164180,Jim Walton +1858716,Mary Minor +144773,Sho Hayami +38525,Johanne-Marie Tremblay +1821938,Joanna Ampil +1070748,Bonnie Swencionis +1269479,Gemma Dyllen +1193606,Christian Madsen +1074940,Ely Galleani +928637,Lee Cunningham +1098706,Vivis Colombetti +1718319,Jessica Miesel +1088211,Radu Minculescu +95633,Helen Fraser +81125,Denis Ménochet +1607607,Jinn S. Kim +1776842,Kami Christiansen +107733,Daniel Betts +1084910,Emi Takei +127247,Luis Dubó +1684104,KREVA +27177,Marco Bonini +175071,Rhetta Greene +1096498,David Delorenzo +106759,Layne Coleman +1261476,Carlos Cuevas +928921,Rupert Allason +1624614,Clay Shirky +231517,Ayisha Issa +1217540,Rick Rosner +482101,Yao Chen +169588,Michael Crider +130664,Audrey Lamy +938807,Gabriel Corrado +1099652,Brendan Aguillard +582051,Frederikke Dahl Hansen +1108172,Wanlop Rungkamjad +1888876,Cédric Liddell +1145326,Caroline Lang +1588548,Douglas Bradley-Smith +44588,Pegge Thomas +1185973,Ignatius Farray +72860,John Fogerty +1336796,Mike Mitchell +8032,Dylan Brown +155023,Katie Fountain +1648794,Sarin Kath +1445416,Meibh Campbell +1513948,Benian Dönmez +1209094,Tyson Kennedy +1028462,Aridh Tritama +1746884,Kathleen M. Deegan +47383,Noel Howlett +1691467,Megan Adelle +219054,Marcia Ralston +1055630,Dolores Cortés +84327,Ivor Francis +97274,Adile Naşit +82653,Mary Page Keller +1581394,Henrik Gustafsson +119795,Giovanni Filidoro +1559929,India Wadsworth +8787,Gila Almagor +1547216,Emilio Martire +18452,Sergej Gleithmann +76667,Wesley Jonathan +1416461,Brandon Biebel +1097233,Nadja Josephson +186605,Terri Douglas +1519412,Witold Bereś +62910,Sarah Lind +1309129,Stephanie Cumming +1671751,Laila Alj +220714,Ai Nonaka +1503570,Yasir Hussain +17721,Elmar Wepper +933542,London Angelis +12429,Shirley O'Hara +1205870,Todd Cochran +549137,Vladlen Davydov +146981,Tardu Flordun +73830,K. D. Aubert +97013,Joey Heatherton +1308675,Sergey Byzgu +1376314,Steve Emerson +963767,Bill Heck +20864,Ingrid Andree +1784731,Meredith Kelly +102917,Jimmy Ames +589911, Liu Jin +228756,Alessandra Sarno +60632,Rebecca Wisocky +78019,Peter Polycarpou +1641478,Mink Brar +144001,Jacek Braciak +509648,Jo Hee-bong +1872194,Ettore Conti +121023,Patrizia Pellegrino +53235,Temeceka Harris +116507,Ingvar Kjellson +143127,Coralia Escobar +1518296,Juda Bleich +1340119,Oliver Cliff +1804164,Michelle Poole +162630,Jim Wise +1271788,Jaxon Johnson +72864,Tim Kelleher +1056129,Trestin George +29764,Tetsu Komai +1375218,Jack Murphy +1412289,Wilson Haagens +43202,Antje Traue +939080,Joe Vogel +932967,Mahershala Ali +1539090,Zelman Cressey Gladwin +185795,Fernando Soler +38511,Carmen Scarpitta +97314,John Beal +1767235,Glenn Walkup +1504143,Terry King +1034608,Alan Steel +1313075,Hilty Bowen +160702,Zulu +1400880,Jerrod Carmichael +230681,Pip Carter +30223,Larry Simms +100433,Don Powell +167922,John Nesbitt +103607,Piero Vivarelli +1028807,Taies Farzan +35704,Karen Kruper +105728,Matthew Thompson +1579661,Oldrich Táborský +516105,Liz Robertson +49679,Dorel Visan +1132936,Pavlos Kontoyannidis +1583701,Jessica Harbeck +133184,Jacques B. Brunius +206847,Mark Kempner +79558,Florence Maury +101474,Esther Moser +19069,Claude Chabrol +583494,Xavier Couture +1199481,Laci Kay +1503853,Stephen Hsu +232836,Galina Belyaeva +51520,Robert Pierce +183748,Alexis Kanner +1371193,Gino Paul Guzman +1179405,Taki Abe +150616,Nihal Koldaş +1444844,Michelle Bensoussan +1185275,Tenzin Choeying +82121,Patrick O'Connor +160905,Michael Burns +1061909,Lena +124266,Meri Nenonen +1459819,Janus Prinsloo +936265,Udo Lindenberg +1781892,Kristina Haddad +1423269,Anikha Surendran +6268,Sebastian Blomberg +142490,Sumie Sasaki +161356,Zooey Hall +1415446,Gentry Williams +27783,Katsumi Muramatsu +1176786,Alex Schrage +232401,Ilkka Heiskanen +1629647,So Hoi-Kit +1038491,Věra Křesadlová +1038669,Dorothy Libaire +1287563,Elizabeth McKee +1511973,Juliette Marotta +1200855,Rose Reynolds +1559945,Susan Marie Keller +1267466,Lance J. Holt +146750,George MacKay +1371667,Michael Powers +949244,Matthew Cooke +1668907,Jane Patten +1331808,Oscar Sánchez +1466263,Jonathan Jaynes +1796127,John Bagenal +1148669,Dimitris Katalifos +33816,Marina Malfatti +172096,Chris Chalk +1331815,Héctor La Porta +58501,Stephen Greif +1286162,Lauren Aboulafia +226174,Svein Erik Brodal +1761828,Pauli Virtanen +40479,Gareth Llewelyn +1545707,Nicole Lopez-Isa +1088951,Ziya Mirza Mohamad +80989,Amelia Campbell +1024351,Claudio Trionfi +567517,Laura Calabuig +98580,Savannah +10623,Barbara Lass +229031,Peyton List +967456,Louis Minnaar +1362639,Lorelei Winterfrost +60716,Bob Sapp +126669,Tara Alice Scully +145115,Ramin Karimloo +114228,Luz Valdez +136558,Adam Woronowicz +122632,Christopher Jones +1585672,David Dustin Kenyon +544831,Stefano Cassetti +563071,Hal Osmond +237180,Aldo La Riviere +1557711,Kelvin Bonneau +180942,Aaron Poole +1771564,Beth Adams +1696251,Scott Edward Logan +70548,Mikhail Ulyanov +24060,Laurens Walter +79936,Timothy Block +1104751,Charlotte Hunter +1432843,Kwon Bum-Taek +1322574,Philip Lewis +146768,Claire Hackett +558175,Nils Hallberg +1588307,Thomas Silberstein +1527064,Menelaos Hazarakis +1137448,Tony Vespe +1491689,Robert Daniel Sloan +34178,Penny Singleton +1782150,Kate Kiley +1618647,Antonio Barda +38788,Sean Rees-Wemyss +1056282,Henry Nxumalo +946221,Roslyn Ruff +1099770,Philippe Hartmann +1184819,Piero Bushin +74358,Kelly Sheridan +1287561,Earl Lynn Nelson +149496,Jeff Langton +1270836,Jason Daly +1522644,Jeffrey Sison +1189924,Mantanakam Lhaomang +189512,Scott Strader +68458,Jack Burns +41245,Laraine Day +135436,Norma Sheahan +1096781,Gonzalo Vega Sisto +235273,Franco di Francescantonio +1011208,Brendan Robinson +1704326,Francesca Knight +66677,Loredana Nusciak +1261421,Bruno Oro +1417533,Nadia Kay +1881493,Corey Weaver +1435699,Leela Samson +1781150,Uchida Soumei +584556,Altan Günbay +1204682,Amanda Mercado +110666,Kei Tomiyama +1129686,Larry Zience +1201762,Adam Ginsberg +227047,Jesse Lipscombe +1296084,Mallory Jansen +1799840,Steven Johnson +176456,Jane Lambert +1170198,Pedro Fernandes +95521,Lindsey Kraft +90605,Anastasios Soulis +1747680,Wilma Reid +43719,Ton Kas +932325,Deborah Reed +214626,Virginia Hewitt +94859,Victoria Hanlin +130220,Lenore Ulric +1153759,Jonathan Rosenbaum +95612,René Ray +1132014,Shogo Narita +1821663,Jason Mercier +1016415,Manrico Gammarota +970216,Austin Stowell +1246961,Mahnoor Baloch +1136135,Will Brill +1001964,Blakely Bunnell +1179817,Chow Siu-Loi +1205233,Mario Granato +115991,Yvette Duguay +231666,Alistair Brammer +1224691,Robert Newman +562262,Helen Gardner +275597,Rebecca Robbins +87070,Michael Chernus +1781392,Sveta Driga +14873,Maria Ouspenskaya +101176,Marcia Henderson +1117367,Pamela Mann +588017,Shriya Reddy +1206337,Hugh Skinner +940934,Mercedes Soler +110456,Sheila White +100797,Louanna Gardner +1075467,Mario Alberto Rodríguez +1494539,Eric Pumphrey +1633753,Deborah Campbell +18404,Norbert Losch +149660,Bob Morrisey +1211383,Vyacheslav Muratov +132893,Norma Rivera +105252,Malin King +66655,Sumalee Montano +1288730,Moe Dunford +1834268,Anne Hardcatle +129240,Alma Zack +1650165,Quinn McPherson +1799979,Brahm Vaccarella +1036401,Klaus Tange +1549815,Farrah Aviva +61855,Eyal Podell +126444,Valentino Campitelli +17041,Robert Wu +79622,Muriel Dutil +229737,Lyudmila Kasatkina +1592122,Yavuz Çetin +1171557,Savanah Montalvo +123071,Tom Beard +1841507,Lily Williams +1018944,Shota Sometani +1232334,Ron Pember +136043,Michael Andrew +87065,Jacques Riberolles +148576,Guillermo Bravo Sosa +1375271,David Pendleton +106443,Victor Bonacore +54675,Zabou Breitman +1294316,Zdeněk Jarolímek +1559481,Jaromir Astl +1114051,Reed Buck +1636695,Cezary Krajewski +102154,Carla Calò +1468833,Phyllis Douglas +1375501,Bobby Naderi +33134,Tomokazu Miura +210346,Keena Ferguson +23137,Ruth Kommerell +30188,Melvyn Hayes +211900,Gerald Webb +1449380,Bashiri Johnson +39098,Henri Virlojeux +134083,Eric Lutes +966753,Caitlin Carmichael +933014,Andrew Nolte +136416,Andy Stradly +226711,Kiko Mizuhara +84086,Rosemary Alexander +222377,Sheela Patel +1108860,Steve Parrish +1056611,Sachihiro Ohsawa +1292479,Deborah Ayorinde +132106,Elias Saba +1321012,Hélène Médigue +1101394,Baburaj +237503,Aleksandra Nazarova +150502,Rita Durão +1503841,Tony Baker +1295964,Marion Duval +1483037,Alex Childs +15801,Jerry Stahl +420943,Sergei Astakhov +1397411,Emin Ceylan +114460,Alexandra Jiménez +151263,T. J. Thyne +1481066,Wakayo Matsumura +1386244,Sophie-Marie Larrouy +1454093,Jabari Gray +1430482,Marcel Heupermann +1234854,Ty Henderson +1414782,Heidi Toini +1612442,Jack Brett Anderson +563106,Janice Pinke +1368802,Laura Kai Chen +110014,Christina Hendricks +176027,Gloria Steinem +1160256,Wade Forrest Wilson +1607316,Urvashi Rautela +225427,TJ Trinidad +173520,Beryl Te Wiata +1013894,Neha +99297,Semyon Farada +226192,Merete Moen +60424,Luminita Filimon +99263,Natalya Gundareva +1716346,Kim Cormier +28613,John Rico +586403,Randal Douc +941721,James Whyle +125162,Őze Lajos +586534,Glen Matthews +27419,Benjamin Sadler +1593379,Terry Stroud +1869475,Fredrick Montgomery +44043,Jesse D. Goins +1163186,Eman Lam Yi-Man +1031750,Arthur Duarte +1428799,Joseph Dermody +1169486,Catherine Becker +1729054,Dante Briggins +1198334,Kenji Sugawara +87469,Marcus Patrick +1191933,Jacky Yeung Tak-Ngai +20575,Sarah Pratt +1202689,Jessica Henwick +449513,Meredith Hagner +192927,Ruth Jones +1439931,Ben Fransham +506931,Peter Vilnai +51489,Titus De Voogdt +559477,Sudhanshu Pandey +549134,Vladimir Korenev +1629009,Amalda Liz +115688,Carmen Serano +1204262,Tim Jenison +933066,Megan Murphy +59270,Riccardo Scamarcio +148143,Tanya Myers +1128450,Patrick McDade +1292143,Lee Blakemore +125854,Amaia Salamanca +1001523,Tim Treloar +55659,Zora Kerova +1181324,Sarah Haskins +1135307,Henry Fiuka +10136,Reiley McClendon +563105,Brett McAdams +1339106,Renato D'Amore +1090523,Kerstin Dunér +1278878,Matt Clouston +257448,Jordi Dauder +1418582,Heo Joon-seok +50555,Maria Pankratz +81664,George Ball +1831442,Jason Shah +1453680,Corey Fogelmanis +1177625,Claire Mazerolle +1517367,Mauri Jaakkola +453493,Holly Baldwin +162758,William Gabriel +1440629,Brooke Williams +99710,Vidhu Vinod Chopra +56088,Janis Karpinski +42328,Lexington Steele +1351971,Syb van der Ploeg +1018707,Bai Bing +1074186,Jacob Tolano +5918,Zachary Bennett +54691,Christopher Mintz-Plasse +61545,Rick Worthy +929065,Michael Sirow +117471,Barry Lowe +101470,Tania Busselier +150271,Anniek Pheifer +112471,Ellen Marlow +72233,Gary Mackay +148135,Julia Ford +1171584,Joseph Graybill +34137,Magdalena Mirek +1891558,Randy Schriever +1168858,Alexander Cook +1804236,Cheyenne Phillips +545137,Nando Paone +1776844,Lance Gray +79450,Jeroen Spitzenberger +240595,Lyudmila Ivanova +239019,Kit Harington +298328,Petrine Sonne +1510,Henry Victor +1339959,Cal Johnson +1430948,Chase Mowen +1661735,Maya Alagh +120694,Denia Brache +951985,George Robert Klek +588030,Archana +1258227,Clara Paget +579300,Vicki Hackett +1764645,Arthur S. Brown +1141368,Kiff VandenHeuvel +228166,Isabel Russinova +104958,Robert Sommer +1308811,Raymond Fusci +1414612,Kei Shuto +935274,Jack Tartaglia +1163924,Jacqueline Curtis +1331786,Filip Pławiak +31481,Hugh Gallagher +1133349,Elizabeth Debicki +1410541,Anne Leigh Cooper +1681260,Kim Hwan-hee +74699,Robert Gustafsson +106432,Ryan Payne Bell +1039424,Howard Blevins +1719608,Kristen Kassinger +55012,João Miguel +496470,Jake Lacy +1273971,Peeter Volkonski +101033,Mike Pyle +49628,Petra Schmidt-Schaller +107822,Vladimir Sorokin +136489,Valérie Benguigui +84338,Clint Carleton +1443735,Maria Stenz +91347,Tjebbo Gerritsma +115790,Bin Shimada +62500,Adam Croasdell +1055520,Christian Barillas +112945,Lyudmila Shiryaeva +1661025,Jorge Navarro +153911,Bill Kirchenbauer +1520902,Edith De Barcy +1311610,Gabriele Pignotta +1750938,Andy Maxwell +1656897,Burin Supapan +98026,Marc McDermott +567106,Göran Stangertz +1628639,Lin Mei-Shiu +1175135,Brett A. Jones +115075,Henry Kulky +231441,Johanna Leamo +94157,Märta Torén +103368,Ruth Brady +92285,Aaron Brumfield +212080,Ruben Alves +148012,Jorma Tommila +1512790,Meg DeAngelis +1317108,Thanos Kermitsis +1755076,Don Jarrells +566644,Glenn McCreedy +2759,Lola Dueñas +935342,Yosi Mizrahi +235778,Nick Brandon +244424,Tom Parsekian +56273,Esko Salminen +112758,Christian Lude +1796419,Josh Madryga +1263732,Timo Aalto +104802,Phillip Rhys +145726,Nevra Serezli +1258352,Ayten Uncuoğlu +1082868,Bjørn Breigutu +85430,Cassidy Ladden +1314651,Jorijn Vriesendorp +150190,Laura La Varnie +65395,James Madio +71589,Hannes Wegener +1136481,Sandra Pulley +124718,Jason Steadman +119342,David Horne +932425,Florence Hartigan +227242,Paolo Sassanelli +54750,Sandro Lohmann +65774,David Purchase +1569921,Khumar Salimova +563750,Vinicius de Moraes +1150433,David Cunio +1754479,Annie Kerins +977228,Gilda Gray +1520918,Carmela Locantore +73381,Matthias Schoenaerts +191202,Matt Jones +1457428,Ulrik Munther +1874721,Trine Sick +169249,Master Sharokh +137734,Lembit Peterson +1837456,Makena Lei Carnahan +1378128,Allegra Carpenter +31612,Jenny Tamburi +582511,Sébastien Cotterot +1664569,Sarah Mottet +1654742,Gjevat Kelmendi +145195,Brian D. Phelan +1601624,Mariya Durasova +1385217,Nadia Parra +49491,Jeff Burrell +1476862,Aisha Ayamah +125357,Dorian Gray +59389,Kennedy Rolle +1255322,Kanata Fujimoto +1362945,Joan Massiah +222376,Günter Mües +85433,Lara Janine +935970,Alice Kessler +1283677,Stanislav A. Sokolov +1006777,Charan Prabhakar +17347,Marshall Allman +150583,Gary Lilburn +86322,Daniel Bonjour +1184303,Zeph Michelis +7195,Giancarlo Prete +110766,Pehr-Olof Sirén +1869030,Rhett Lindsey +1673619,Laramie Cooley +1248829,Maggie Rizer +162815,Ron Pearson +1130045,Conchita Muñoz +1618651,Francesco Socinus +1849114,Swen-Love Benfares-Gueye +1106889,Rene Etore +145077,Camille Fournier +66621,Jürgen Rüttgers +157009,Vince Grant +98831,Dick Haynes +1796402,Herb Luft +142626,Aditya Roy Kapoor +1192902,Sushant Singh Rajput +134612,Scott Patey +99109,Marcus DeAnda +78602,Jean Effron +7817,Antoine Monot Jr. +1127870,Jakalyn Gatward +147892,Angela Galuppo +578948,Oona von Maydell +1666254,Matt Lacy +142375,Nathalie Fay +1716339,Hazgary Colin +997111,Renee Whitney +1862819,Annunziata Pozzaglia +117311,Jason MacDonald +586814,Solène Rigot +1001821,Jerry Kernion +154937,Vanessa Vander Pluym +7761,Øystein Martinsen +521673,Sahajak Boonthanakit +1223597,Michelle Barthel +1260050,Maro Kodou +1230799,Teresa Gallagher +1281405,Falcão +1286437,Casey Heflin +1213462,Mary Hignett +1203108,Paul Kennedy +52586,Milhem Cortaz +1388985,Martijn Fischer +586628,Dharmavarapu Subramanyam +97990,Robert McKim +1488053,Alexis Peterman +1085278,Sílvia Lourenço +1541181,Tommy Nelms +1636074,Michael Heltay +53349,Gary Olsen +1267185,Amber Lee Ettinger +5425,Christophe Rossignon +1052079,Paul R. Frommer +583815,Valene Kane +112120,Chris Laird +1357869,Michelle Campbell +1847020,Vincent Pietton +105451,Barbara Leonard +93696,Dick Wesson +62000,Tiffany Shepis +1685446,Rebecca Rocheford Davies +1229849,Max Walker +445843,Axelle Ropert +1811546,Jeff Rutagengwa +241712,Enzo Turco +244990,Etta McDaniel +1720588,John Francis Mountain +1024492,Rob Archer +58866,Dana Wheeler-Nicholson +1698130,Ezra Khan +1348158,Domokos Szabó +49331,Alexander May +1795216,Raphael von Blumenthal +148870,Pauline Garon +229382,Jacques Charrier +1855401,Judy Wong +37354,Eugeniusz Priwieziencew +1630272,Jessica Irvine Drake +1332754,Thodupuzha Vasanthi +937348,Ibrahim Celikkol +1397782,Dzajna 'Jaja' Vanková +1730419,Michael Elkin +557449,Alexandra Kiester +5497,Aleksandar Jovanović +1644499,Hussein Sami +934917,Mandela Wee Wee +445918,Bridger Zadina +1038585,Valentina Voilkova +523533,Luke Allen-Gale +211429,Riley Thomas Stewart +1658598,Disney James +1619957,Elham Korda +1382202,Björn Borg +75488,Matthew Le Nevez +568546,Oleg Prudius +1780262,Karen O'Leary +1121562,Edwin Perez +995198,Tom Lipinski +1800030,Dylan Kelly +144162,Anthony De Marco +292445,Blake Shelton +236987,Finn Storgaard +1392950,Billy Wickman +1717052,Del Baker +1137630,Carol Brannon +1551763,Larry Varanelli +112985,Jiang Lu-Xia +265843,Valérie Valois +128478,Eri Fuse +1419122,Timothy John Smith +1592929,Angela La Muse Senyshyn +1172494,Georgia Rock +556436,Fernando Lara +1574620,Kim Sa-Kwon +1667160,Ty Kostyk +1380095,Don Daro +1522729,Bernhard Bozian +26912,Ernst Fritz Fürbringer +1800040,John Paul Maguire +3551,Jake Curran +1129045,Asao Koike +1286436,Gloria Gonnillini +1781390,Dan Bradford +1819134,Peter T. Mai +101283,Graham Timbes +62917,John Callander +1603579,Idenisse Salamán +63762,Bernhard Naglestad +1482160,Mariusz Drężek +1124179,Sergei Gorbatyuk +558910,Barry McBrien +939008,Diane Tschekaloff +1170661,Geng Le +588636,Marta Nieto +1357229,Trent Pardy +222727,Tormod Vassel +1182304,Daniel Pirrie +111347,Mattias Ohlsson +75924,Jesse Jane +1648474,Edgardo Castañeda +83827,Liam Redmond +98959,Erika Smith +120794,Raugi Yu +1441037,Vincenzo Maggio +65778,Irene Dale +30518,Helen Brown +52139,Seth MacFarlane +79091,Richard Green +169265,Chris Gethard +39467,Lino Capolicchio +1084581,Cindy Clark +1700817,Fielding Edlow +1562332,Mark Barakat +157499,Denise Gallup +45651,Kelli O'Hara +15503,Kyle Richards +1495340,Robin Skye +193849,Dennis O'Flaherty +1165061,Chuck Doherty +19076,François Négret +983998,Ingrid Isensee +1112410,Sieger Sloot +22750,Fritz Diez +591021,Iris Vandeleur +559684,Anna Hilgedieck +229191,Banjou Ginga +77262,Jonathan Chase +1485556,Ty Parker +1089691,Tiffany Giardina +109319,Nikki Amuka-Bird +97663,Betsabé Ruiz +1381480,Joy Glover Walters +1469172,Hermes +61956,Chuck Williams +1753266,Hoanihuhi Takotohiwi +98108,Rob Monkiewicz +164242,Darren Goldstein +1379204,Suzanna Ling +97179,Chris Hargreaves +49609,Sorapong Chatree +237286,Zinoviy Gerdt +1782023,Rachel Ofori +228880,David Fernández +4097,Hope Holiday +171737,Paul Regina +1657296,Liz Loza +1810604,Federica Tatulli +52142,Susan Lee Hoffman +1510794,Danielle Arnold +237183,Masaki Kurusu +1902450,Diane Pierre +1090693,Eric Curtis +65871,Amanda Schull +150954,Diane Farr +1085210,Nonie Buencamino +185170,Dan MacDonald +26367,Bernard Noël +1085659,Jason Altman +1483666,Colin Lacativa +38620,Aykut Kayacık +829372,Michael Mando +167080,James Lorinz +1082753,Akio Isono +105183,Daniel Hirsch +1396558,Dmitriy Endaltsev +1083107,Mirella Falco +1697812,José María Salvado +102974,Vicki Volante +210344,Jen Lilley +73619,Scott Seymour +1151497,Scott Norman +964792,Jacob Anderson +108454,Ana Bustorff +1255481,Marc Balaguer +1039343,Ryoko Shinohara +1057153,Helga Braga Jónsdóttir +80495,Ray Brooks +141086,Ted Gunther +572166,Luiz Bonfá +1171836,Luisa Gavasa +188607,Murray Oliver +1650206,W. Keith Scott +1443324,Emily Yatman +1905792,Denisa Krskova +1467542,Mark Finn +1613034,Elizabeth Hales +227602,Micheline Bernard +1187351,Katharina Leonore Goebel +101196,Franco Caracciolo +1626948,Dan Baily +1535267,Austin Taylor +572127,Amy Huckabay +543542,Muriel George +1489298,Ilker Kaleli +1647324,Karl Kwiatkowski +932670,Stefan Matousch +72054,Martina Stella +1684131,Jennifer Hines +1746962,Brionna Maria Lynch +1173678,Helinä Hirvikorpi +1182826,Hattie Noel +1344142,Toni Novella +96264,Anatoliy Pashinin +1055180,Eugene Dow +1600351,Marguerite Lemir +118303,Nacho Vigalondo +1569735,Kelly Lynn Warren +1714566,Liam Hughes +1021743,Boshai Dalai Khan +1018117,Ann Evers +1278789,Takato Yonemoto +116421,Nirut Sirichanya +5968,Riccardo Garrone +1208797,Ivan González Roa +127634,Mario Marenco +72247,Geneviève Rey-Penchenat +927966,Baby Pinky +1102424,Marc Goodman +1234544,Adam Kennedy +558015,Vladimir Simonov +1688368,Debra Hunter +544931,Angela Yu Chien +83928,Rie Kugimiya +232040,Brittany Miller +990116,Abian Vainstein +1602637,Matthew Blumm +45811,Vijessna Ferkic +155874,Andrew Bilgore +87723,Sven-Bertil Taube +1409179,Seiko Tano +99171,Arturo de Córdova +1180346,Anthony Carrigan +35703,Mark McConchie +87859,Jacqueline Clarke +1057914,Dale Hopkins +60042,Alison Sealy-Smith +1026719,Francisco Solorzano +549557,Yô Inoue +1137249,Marwan Reyad +1215107,Amy Austria +1783662,Ryan Zweers +1680292,Miriam Zucker +1035348,'M.' Kadath +86037,Jeff Crook +929400,Perawatch Herabutya +1760472,Julie Stracener +1744816,Papi Mpaka +1202513,Lauri Korpela +1273229,Todd Cummings +125682,Judit Schell +1656521,Lee Suk-Ching +1356010,Allan McLeod +1601527,Sa-gnad Chaiyapan +1631055,Chidi Chickwe +1488909,Bobby Batson +1207149,Gary Allen +1869046,Jon Gould +1542797,Doris Hasslinger +1599234,Dharmakirti Sumant +1046996,Marcella Valeri +81082,Travis Oates +1363045,Honor Kneafsey +1695893,Trinidad Rugero +1469164,Janis Young +138106,Dan Blocker +39654,Sylvia Earle +110360,Yoav Donat +1536162,Michael B. Woods +93970,Lola Lane +175481,Aurora Walker +54937,Leonard Parrish +1601626,Zoya Rupasova +52398,Mikael Persbrandt +98146,J.J. North +1288837,Jennifer Oleksiuk +947565,Tiger Darrow +103616,Mae West +1544808,Ron Duncan +1902452,Monique Storch +138621,Paul Keller Galan +60634,Marty Belafsky +13681,Gilles Adrien +1865135,Ermanno Schiavina +118980,Carl Parker +1591372,Kim Koo-hyun +117646,Wheeler Oakman +215395,Aidan Drummond +118583,Nuot Arquint +939082,Princeton Lyman +1274507,Alyssa Ruland +144841,Mikhail Zharov +99564,Antonio Orengo +78952,Samantha Womack +1805300,Tim Wustrack +1707842,Walter Löwenberg +994384,Ngaai Fei +1482625,Antonio Corrales +1196678,Helene Burls +544166,Jason Loughridge +1349977,Alfred Munyua +84364,Bob Grant +569993,Rosalina Neri +147105,Clara Andermatt +950832,Sally Gracie +135374,Nene Otsuka +1462256,Rodney Rogers Beckley +34452,Tito Guízar +1506498,Michael Patrick Burke +1477352,Toralv Brekketo +558466,Alex Russell +70176,Shaker Paleja +1243892,Ryu Seung-su +1782627,Lorenzo De Felitta +1506698,Paul Trietsch +1620957,Aparna Balamurali +297095,Derek Lee Nixon +1273240,Ruby Lou Smith +1641971,Andrea Goss +1661475,Antony A. Phillips +1332029,Christina Wolfe +1891566,Steven Scott +1673617,Margaret Killingbeck +939591,Nathan Harlan +148471,Asahi Uchida +82755,Jesse Camacho +49898,Pierre Cressoy +1590758,Emily Carey +1523001,Roychell Torre +225046,Hanna Obbeek +1031929,Samantha Lester +1371493,Patrick Condren +96743,Colin Tapley +1603890,Vasilis Dimitroulias +1418859,Sébastien Siroux +232045,Joseph Battaglia +1706345,Badar Qureshi +1810482,Janeline Hayes +60721,Kurt Max Runte +221980,Nathan Stewart-Jarrett +1186319,María Fiorella +1310915,Rocío García +1381311,Armand Babel +1299516,Song Sae-byeok +1206162,Marvin Lieber +1724703,Gesine Lötzsch +77036,David Parker +62593,Katie Lohmann +1775352,Leandro Taub +1333941,Ed Fletcher +1301885,Drago Sumonja +1593005,Bill Mootos +1491140,Michael Hirschorn +1433894,Annette Lindgren +1007656,Kiradej Ketakinta +1230676,Alec Sabin +1261199,Danny +76105,Chris Benson +126238,Susie Wall +20275,Sarita Choudhury +1686127,Chris Bannow +235972,Svetlana Svirko +1697474,Mark Anthony Brighton +1789821,François Doms +1656098,David Clavel +57409,Ana de la Reguera +171538,Clark Middleton +102980,Des McAleer +1207250,Lisa Roumain +1094174,Marcela Girón +1623405,Cui Yu-Gui +239079,Wai Wang +1185419,Cynthia Bell +125278,Ada Condeescu +1115040,Kazuo Kojima +1472480,Georgina Simpson +160432,Jock Mahoney +1648797,Dino Homsey +1014719,Jim Libiran +931919, Simona Caramelli +1513867,Caspar Lee +32914,Paola Tedesco +930353,Kim +65054,Rainer Bock +1409038,Freek Bartels +141342,Mary Carr +1337144,Pyotr Sobolevsky +584142,Joachim Knop +1193577,Hans Caninenberg +1202909,Ronan Rees +204468,Fiona Dourif +1454624,Fernand Fox +1199623,Ivan Grigorov +1590926,Mike Steen +1648977,Adam Nemet +1270122,Kaisu Leppänen +1754482,Kyle Washburn +980746,Kristian Truelsen +130041,Giulia Gam +25703,Lake Bell +1296557,Terry Randall +148995,Monica Acosta +206905,Jeremy Allen White +1441202,Jessica Beitchman +1174722,Augusto Mastrantoni +1423665,Bryan Casserly +1041214,Stefano Amato +1672141,Pamela Moreno +1029664,Jennie Pierson +99764,Jamie Martz +97635,Diana Lorys +101827,Gajraj Rao +216802,Caroline Brazier +1670470,Arūnas Storpirštis +236563,Laura Gore +1873605,Robert Lemaire +130712,Lio +1372163,Beate Maes +1491371,Nélia Carvalho +1555891,Emma Rose Maloney +100799,George Sawaya +1225911,Peter Holden +1368801,David Quinlan +1401102,Uzimann +1508584,Xiao Sun +1107198,Arthur Sinclair +1392647,Oscar Gale +557803,Stacey Asaro +129340,Ida Eccher +1842192,Hannah Harris +73726,Nozha Khouadra +100964,Mark Richardson +16004,Anthony Caruso +549582,Boris Nevzorov +1394454,Yoshinao Aonuma +1713832,Emeson Nwolie +1362638,Stanley Pemberton-Warbrick +222269,Sudhir Dalvi +1872174,Antoinette Steen +1112331,Zheng Jun-Li +1161079,Sima Dodyk +1316689,Jeremy Dozier +1215152,Dawn Hope +1814103,Julie Enilorac +81212,Jacob Nordenson +140868,Ghada Adel +936667,Ryan Crego +1593004,Ben Sloane +964548,Ann Sears +120717,Cobina Wright +1548828,Saša Klančnik +1249583,Howard Leeds +104003,Montserrat Prous +295908,Renzo Rinaldi +1076166,Angeline Quinto +1251993,Holly Deveaux +1147085,Amira Helene Larsen +1282801,Janessa Crimi +1214007,Katherine Moffat +553752,Will Egan +114372,Danielle Campbell +21198,Peter Sohn +220294,Ben Segers +1898244,Ratka Radmanović +1486374,Poal Cairo +1387782,Tarinee 'Aoi' Thaima +1698776,Paul Knops +1859937,Wendell Brooks +3813,Alex Angulo +1640939,Mark Burzenski +556943,Philip Morrison +1783266,Courtney Lauren Cummings +1465727,Jamie Tisdale +1143483,Alexandra Starnitzky +1844326,Felix Biviano +587339,Emy Aneke +34293,Stuart Erwin +1611359,Noam Dworman +58356,Kerry Bishé +1656890,Titanart Fhasawang +97416,Richard Dormer +110777,Riitta Havukainen +24714,Tony Vogel +1503918,Jumaane Brown +1734173,Jon Iles +119123,Kris Michaels +32062,Sonia Petrovna +205982,Heather Hemmens +989675,Cristin Michele +132557,Mariam Bernstein +558009,Boris Kamorzin +83262,Phyllis Kirk +997642,Anna von Rosen +1517202,Madeleine Kelly +8,Lee Unkrich +83522,Tito Ortiz +221147,Matt Gillanders +97684,Gianni Garko +106433,Dechen Thurman +93974,Stacy Harris +1391891,Tina Cristiani +1052255,Charlotte Hope +1040008,Vladimir Ivanov +1872251,Fred Vanden Akker +1444942,Canco Rodríguez +1699988,Thomas Mathew +37758,Eric Cantona +1813974,John Dauer +932875,Mikhail Dadyko +132719,Isabel Dean +1418261,Jim Ferraro +1087439,Raoul O'Connell +1719906,Jack Linden +1646194,Tia Thompson +1187348,Lucy Wirth +1497672,Jack North +1818034,Kelly Migdon +1197470,Tommi Liski +1394373,Eloise Webb +1691971,Richard Burden +1544740,Amber Rissmann +228263,Karina Khidekel +1159521,Baldassarre Caruso +1238167,Karan Patel +1111690,Roberta Petzoldt +1372967,Jordi Serrat +25116,François Marthouret +117887,Mark Charles Davis +1851860,Mario Cordova +1844327,Ed McShortall +110927,Penn Badgley +139065,Tania Gunadi +192870,Carolyn Pickles +1496731,Maria Gus +1074114,Tullia +94106,Kim Mi-hyang +226334,Adrian Flowers +172221,Naomi Judd +1081269,Alexander Gray +1381721,Sal Verena +1190034,Catherine Missal +944151,Daniel Arroyo +1283048,Nicholas Patel +38001,Petar Božović +30315,Richard Armitage +1396599,Maarten Dannenberg +142508,Kirill Lavrov +1103549,Libby Smith +544115,Sebastien Tellier +81582,Chris Stapp +1630333,Willie R. Malloy +1050319,Olga Solbelli +1876161,Jenni Duffy +133275,Anthony Averill +1142266,Andrijana Videnović +1221391,Jack Pepper +52721,Karoline Teska +148556,Kurt Krömer +1754427,Fallingstar Locke +1374210,Ordynbek Moldakhan +73879,Don McGlashan +1417361,Tim Spencer +1202503,Kristine Samuelson +239618,Terese Cilluffo +1758547,Watchara Sukchum +1345418,Lola Kirke +1651374,Jason Matthewson +1054838,Jason Dundas +983929,Laure Calamy +527097,Gilles De Schrijver +63426,Tierre Turner +1372369,Samara Weaving +1690480,Christine Ebadi +592912,Kasia Szczepanik +230581,Nuno Markl +86789,Vera Altayskaya +99355,Andrew Osborn +586529,Timothy Dunn +54325,Alice de Lencquesaing +1169150,Richard Bachellor +1566499,Mattia Coluccia +1384210,Dawn Jimenez +230794,Jim Annan +148342,Miina Maasola +1593374,Ela Necker +119260,Frank Bruno +1417566,Roger Dauer +239065,Başak Parlak +1508676,Néo Rouleau +46856,María Botto +37624,Jennifer Sommerfeld +1489235,Fernando Sosa +1041542,Liam Broggy +92729,Spencer List +1327723,Arlene Meadows +170169,David Garrison +1577106,Ben Saulnier +1233264,Nick Kellington +1088124,Anthony Valbiro +1467913,Andrew Bunten +68,Fritz Lang +1185270,Bhusang +73403,Joanna Canton +86705,Mikhail Vodyanoy +1011141,Yaara Pelzig +105691,Chavdar Simeonov +1646374,Simina Soumaré +1240639,Joe Thomas +1685107,Deyvy De Leon +1355733,Isobelle Molloy +174940,Suzanne Coy +146301,Javivi +223021,Stephen Caudill +1148417,Elizabeth Tripp +35543,Leyli Timner +1789154,Chuck Lines +53776,Philippe Clay +1871296,Lamberto Solfa +1627161,Allan Gray +1543950,J. Skylar Testa +1676740,Jon Reigle +1508083,Louis Blanche +119251,Gage Munroe +281985,Masiela Lusha +1637839,Baptiste Somin +1822118,Leon de Greiff +146065,Vitus Wieser +55732,Vladimír Menšík +587658,Tomochika +143669,Gennadiy Garbuk +1156455,Marie de Villepin +1071591,Davina Kevelson +1902464,Marcellinton Lima +1024878,Lotte Hermann +59592,Izabella Miko +239900,Sara Sartini +4499,Tom Shadyac +77667,Oksana Akinshina +1405584,Julie Brister +1638423,Larisa Domaskina +1214863,Christopher Massey +125365,Rajhona Ádám +210978,Marcel Faber +164866,David Lawrence +84046,Riko Narumi +236106,Joji Oka +197235,Brigit Forsyth +1698765,Tim Ajro +1207278,Matt Clayton +1692048,Dave Pasch +62127,Lonette McKee +1368545,Alice Adair +133968,Ron Melendez +120116,Barbara Scoppa +1700955,Lorenzo Beteta +1246667,Jasmine Waltz +515636,Eleanor Zichy +1607422,Akshay Oberoi +1523009,Buck Harold Pago +1014984,Pyotr Rytov +59551,Gill Gayle +592916,Paul Verkade +1288594,Anna Cottis +111539,Elisabeth Lillevik +54076,Zygmunt Bielawski +180449,Carly McKillip +1047928,Pirjo Lonka +28078,Aleksandr Kaydanovskiy +34392,Sophie Stierle +1481495,Jonathan Raia +62592,Stacy Marie Fuson +1265149,Olga Aksyonova +1528164,Jessica Kaplan +1593166,Tom Morrissey +1236411,Jade Pawluk +1359361,Adwoa Aboah +1310288,Mimi Kung +174461,Katy Carmichael +24040,Jean-Luc Couchard +1192371,Artūrs Krūzkops +643171,Helen Ryan +78848,Susanna Foster +1153026,Anna-Katharina Samsel +1576528,Michael J. Panichelli Jr. +1069211,Elena Cucci +132233,Тони Шина +592535,Kanyapak Suworakood +1034800,Scott Pembroke +1560953,Sheryl Gannaway +51112,Guillaume Verdier +1440602,Han Oldigs +1753142,Samantha Neyland +106986,Michele Matheson +103116,Carla Brait +147382,Eve Mauro +4460,Trine Dyrholm +1213263,Richard Side +238978,Chong Lee +1123092,Jean-Claude Romer +578532,Gösta Ekman +1221080,Alex Arnold +169585,Patricia Bethune +1391206,Thomas Wittmann +1656898,Sumran Junkong +1026725,John Harlacher +1444641,Carolin Walter +545595,Rajendra Prasad +1461692,Nikolai Annenkov +1280586,Dagmar Bürger +1543856,Natalie Marchelletta +125335,Michael Matthias +514154,Allison Weissman +568021,Luke Denton +1473602,Novak Bilbija +1816344,Nezar Alderazi +147107,Teresa Faria +48950,Ingrid Burkhard +59640,Angela Finocchiaro +166019,Bill Thomas +86954,Andrei Panin +1039673,Richard Hemingway +1271008,Harry Hartz +1168716,Andrew Pagana +34278,William Brisbane +1313028,Stephanie Stremler +23301,Isaka Sawadogo +71586,Alfie Allen +80253,Anjanette Comer +102385,Miodrag Krstović +1148205,José Airosa +1855352,Thamisanqa Molepo +1200655,Sibyl Santiago +1513,Rose Dione +36469,Ulrike Folkerts +1412928,James Jillings +1839910,Martha Tupper +93739,Helene Stanton +84634,Richard Travis +90032,Tina Houtz +202899,Todd Grinnell +122998,Emily Aston +1505300,Inkerbella +214839,Akon +131954,Roberto Rey +1650214,Winter-Lee Holland +1209469,Chloe Lesslie +134989,Mark A. Nash +1082357,Lindsay Small +583263,Louis Martinez +1320563,Matthew Scully +1632090,Johnny Rey Diaz +1030280,Claude Stephenson +1689264,Kelly Bensimon +1245537,Sam Fontana +1357745,Esa Nikkilä +943891,Dolores Pedro +458286,Tony Oller +1204864,Ursala Taherain +89883,Rie Tanaka +1851694,Emmitt Morgans +1323016,Felix Valle +1773921,E. Kharkevich +120809,Nedda Harrigan +112935,Nesdon Booth +1578454,Lawrence Haegert +932331,Glenn Gerner +41207,Christian Gregori +1780270,Denis Welch +1739696,Henry Boston +1386137,Gen Seto +80575,Patrick Adiarte +35049,Robert Berri +154048,Stephanie Charles +1233127,Ethelreda Leopold +33642,Marvin Agustin +144216,Ciara Bravo +1028467,Surya Saputra +1152010,Jacinta Puga +1826013,Michael Cipiti +1384109,Carmen Thelen-Gaspar +227189,Jericho Rosales +102516,Vincent van Ommen +1057525,Alpa Gun +122937,Christopher Sabat +171631,Johnny Lee Davenport +17317,Roger Ditter +1657148,Rupert Simonian +1430626,Bobby Darling +1123312,Carlotta Natoli +933017,Braydon Chlow +4027,Frank Darabont +557145,Jesús Tordesillas +1417182,Sid Phoenix +1026047,Angelo Ragusa +1804414,Yuliya Zelenskaya +1886272,Sigursteinn Brynjólfsson +238204,Mikhail Bogdasarov +1636770,Robert Maples +1631758,Chieh Yuen +131123,Dublin James +232046,Joe Hendrick +1676767,Marion Graham +1620960,Sujith Sankar +79563,Andreas Vuillet +1311153,Kyeong-seon Kim +1217017,Josh Taylor +98280,Joey Luthman +1219397,J.C. Brand +578846,Bulat Kalymbetov +1713947,Katee McClure +1262132,Sean Patrick Leonard +142858,Melissa Gilbert +562653,Dean Crow +227619,Yûki Ogoe +1028289,Miguel Ligero +1753327,Gwendolyn Apple +1098641,Babak +1523986,Joshua Morris +6183,Michael Esper +1513307,Susanne Kreitman Taylor +78895,Anderson Silva +1711523,Lizeth Hutchings +450366,Robert Naylor +1117368,Keith Best +24402,Marie Mergey +1777773,Tom Roach +928464,Elena Di Cioccio +1859696,Susy Del Giudice +46029,Otto Waalkes +153020,Archie Duncan +1200361,Lucas Wilber Silva Laborda +23170,Rosalie Thomass +1408809,Hannah John-Kamen +1286328,Haley Lu Richardson +1624633,James McQuivey +1704768,Aino Jawo +180175,Miracle Laurie +235784,Dan West +1454097,Garrett Hendricks +111202,Adam Frost +1170278,Margaret Blakemore +1798883,Frazer Bird +930771,António Capelo +1318711,Jessica Tovey +1076049,Chen Shu +1180056,Thomas Kim Hoder +1793175,K.T. Almujahid +102741,Donald Adams +1260011,Jack Fulton +1841500,Paul Hosey +74046,Kiely Williams +1851061,Cristina Ramella +1683954,Fabiola Colmenero +70095,Erica Carlson +1347098,Valentina Lysenko +1853152,Ene Rämmeld +1393519,Jimmy Lee Jr. +1061534,Alejandro Goic +1763722,Harrison Arevalo +142512,Vasili Lanovoy +1381494,Corey James Wright +98844,Karla Zamudio +1643921,Sidney Nicholas Warbrick +144289,Georgia Mackenzie +439032,Benjamin Trinks +109547,Nicholas G. Cooper +1432726,Ryan Clare +60412,Eva Pope +1416960,Alan Perrin +99583,Michael Warren +1895925,Danni Wolcott +1750912,Giorgos Lazarides +1059598,Alexandria DeBerry +1870838,Leila Dzigrashvili +117669,Portia Doubleday +1755069,Lyle R. Guidroz +1668696,Robert Benevides +1714323,Sarah Kraft +222554,Victoria Aberdeen +1502856,Joe Siriani +1331694,Isara Ochakul +1452468,Jean-Jacques Aublanc +1470849,Karel Kolár +78327,Richard Blake +94185,Shailene Woodley +17917,Lillo Brancato +79562,Laurent Van den Rest +79107,Matthew Green +584486,Suzette Gondry +16374,Stéphane Debac +1173036,Anna Cachia +1300275,Damon Dayoub +999814,Isabel Muñoz Cardoso +99136,Anton Funtek +1449318,Madhurima Tuli +1576306,Lazare Gousseau +85759,Maria Canals-Barrera +1146747,Gwen Berrou +1557248,Joe Pallister +85491,Marjorie Woodworth +142346,Ernest Jay +177031,Eddie Matthews +543138,Mason Lee +138986,Tony Bennett +83904,Cara Williams +1841551,Seana Warman +26690,Martin Potter +143560,Verree Teasdale +1824296,Roy Martin Thorn +57362,Felicitas Woll +1538582,Renna Nightingale +1512197,Walter Swierk +1283041,Gregory Rockwood +24698,Regina Bianchi +1495094,Matthew Noyes +27140,Cindy Girling +1115624,Paul Kermack +73004,Isolda Dychauk +558904,Brandon Belknap +1879676,April Berry +112821,Billie Hayes +1197103,Geneviève Boivin-Roussy +238498,Satomi Kobayashi +1398508,Marii Rosen +1869476,D-Taylor Murphy +1154465,Oka Antara +1473729,Fernando Soto +1482904,J. Waltham +1829985,Lilly Aspell +983710,Adriana Paz +1271600,Dani Rovira +161340,William Sargent +131008,Hannah Endicott-Douglas +1108059,William J. Harrison +97086,Charlie Dupont +240072,Bill Robinson +101981,Robert Lott +1418155,Soroush Saeidi +1481832,Güneş Nezihe Şensoy +230269,Antônio Pitanga +1706142,Julissa Roman +983608,Brian Neal Lucero +1363621,Didi Costine +1656876,Nuttakrit Boonannatanasarn +224812,Donita Rose +1174455,Kau Jan-Hoi +1890099,Andrei Alexandrovich +226199,Marthe Werring +1157596,Uli Auliani +1719653,Raiko Küster +115294,Son Kang-gook +1880592,Carlotta Giannone +1890110,Viktor Yanukovich +1294994,Kathia Rock +78045,Chuck Hittinger +1224759,Patrick Newell +1281664,Vasco Pimentel +1412930,Saige Fernandes +1465820,Michael D. Nye +136550,Norman Pak +1459163,Krystie Castro +211991,Philip Ettinger +113967,Karl Ashman +213453,Alois Švehlík +1640551,Ravi Varma +1635160,Mason Pike +14655,Mary Beth Hughes +1119908,Alekos Alexandrakis +89125,Alberto Lupo +28828,Jana Brejchová +549055,Greg Dohler +1853767,Tatiana Illari Dell'acqua +1367906,Maria Engler +61517,Richard Blauvelt +947426,Christina Jennings +1302263,Tim Henning +72256,Roy Marsden +1355969,Gianpaolo Fabrizio +1060566,Ulay +114533,Maurice Good +27673,Adil Besri +18821,Hjalti Rögnvaldsson +1885526,Totò Pinto +1358973,Manel Soler +88502,Vanessa Feltz +79928,David Daker +87013,Mustafa Nadarević +4415,Federico Fellini +1302057,Hernán Romero +1555835,Napoleon Pukui +82304,Michaël Youn +1239762,Kishori Shahane +222560,Clifford Crane Bear +1330011,Hajrie Rondo +141980,Kari Heiskanen +128437,Clyde Fillmore +1136479,Michael Mfume +1522920,Matt Testro +1077361,Darcy Brown +535450,Frank Rossi +1431606,Jazmin Paradis +130793,Johnny Ahn +1592480,Dino Fazzani +1047948,Edoardo Leo +1489333,Zihni Göktay +1831281,Brooke Ence +544236,Ester Geislerová +143121,Elvira Coutinho +1264233,Isaac Andrews +94783,Dick Butkus +92426,Liezl Carstens +95506,Ratna Pathak +1636798,Edward Pfeifer +129505,Homare Suguro +1087378,Soledad Arocena +583224,Aristide Demonico +1513955,Charlotte Anne Bongaerts +1438858,Lauren Thomas +143282,Kate Mailer +1158460,Jules Ritmanic +1207370,Kevin Desfosses +938452,Franca Mantelli +305993,Tom Yi +1167915,Connor Christopher Levins +1051781,Gary Waddell +1519449,Beata Schimscheiner +1829168,Jonathan Mulia +1308187,Sita Nursanti +67705,David Gane +1494063,Will Wallace +36306,Josef Sieber +1325836,Christopher Morris +1849545,Rachel Stamberg +1692068,Joanne Takahashi +584046,Aleksey Bagdasarov +1033027,Manuel Luna +1199626,Silvia Vargova +102776,Jahidi White +1067963,Jessica Seely +1484659,Haimer Leal +1702101,Michael Brune +130683,Konstantin Seldenstücker +79919,Kyle J.M. Thompson +1423350,Marie-Pierre Casey +63155,Mackenzie Firgens +1153024,Nico Liersch +14148,Massimo Serato +235410,Alfredo Alcón +1398054,Allie Meixner +73186,Shin Takuma +568371,Hebe Beardsall +1429728,Pauline True +1331691,Krongthong Rachatawan +161691,Paulene Myers +1512180,J.T. Hodges +102912,Bilge Zobu +1061054,Julian Black Antelope +1090175,Martin J. Wolfman +1636792,David Downie +1588355,Leisa Pulido +556926,Scott Praetorius +1417317,Hachiro Ika +120156,Leonardo Petrillo +1471581,Cédrick Spinassou +1315978,Karl Schulz +163241,Sue Giosa +1267379,Russell Dennis Lewis +932855,Ángel Jordán +1533264,Yuri Killmov +1593122,Alexandra Creteau +1254366,Colin Dennard +1345542,Ludovico Succio +589162,Génesis Rodríguez +965673,Ray Haratian +468492,Lucian Maisel +1776044,Monica Budde +548038,Akemi Kita +1115984,Jason Mitchell +1006760,Kent Farries +1223883,Maurissa Tancharoen +1651968,Jason Bayle +1142191,David Weatherley +86612,Anne Dorval +1293961,Canella Diava +1829361,Jesus Del Orden +141981,Lino Toffolo +1507227,Alain Saadeh +1483629,Rich Vreeland +125354,Guru Dutt +1662627,Peter Keepnews +125839,Vassili Schneider +1462077,Junko Fuji +1658352,Johnnie McQuarley +1811850,James Pickard +1895702,Jen Halperin +49674,Radu Amzulescu +205260,Emily Butterfield +1112587,Fulya Zenginer +1205204,Vincenzo De Toma +1235477, Hong Soo-hyun +1244864,Sandy Simpson +1423088,Leo Harlem +1294407,Nathan Connor +1274942,Daniel Fraser +1535435,Vinzenz Wagner +204108,Alex McGregor +1719900,Krystal Sather +592960,Nikolai Nademsky +220235,Lily Loveless +1605807,Nicolas Oton +125194,Lajos Básti +81801,Brandon McGibbon +1072064,Do Shi-gang +1032655,Shafi Inamdar +1291720,Peter Baldwin +1818449,Brett Goodkin +1254147,Hiroe Oka +1021178,Cathy Darietto +36786,Ulrike Bliefert +30064,Amanda Barton +1502870,John Bernecker +1557745,Zachary Hernandez +106611,Paul Brinegar +1144718,Nicole Rio +1784287,Jozef Hrncirík +239967,Kat Castaneda +1061132,John Karna +1185474,Tommy McArdle +544244,François Simon +935294,Scottie Epstein +1097126,Yuriy Itskov +54146,Verónica Forqué +947465,Richard Sheinmel +48243,Andreas Wellano +1275224,Janene Carleton +1248335,Takaya Kamikawa +589064,Pitchanart Sakakorn +36841,Helen Vita +1816404,James Augustus Lee +127712,Matt Ryan +1067341,Isabelle Habiague +1145558,Jimmie Milliken +1428018,Kehinde Bankole +1085657,Todd Lewis +114366,Checco Zalone +107515,Raúl Esparza +1183679,Jesse Bean +543211,Denise Filiatrault +141534,Louise Dylan +228123,Lucien Dodge +1334387,Danila Rassomakhin +1541359,George Simpson-Lyttle +1366885,Jill Buchanan +1088064,James Robillard +950433,Charles Fredericks +1497329,Hedi Rian +1056289,Dara Macala +1303090,Allyn Rachel +82639,Ophelia Lovibond +1409017,Ivan Kostadinov +10062,Otávio Augusto +1426916,Mohammad Aslam Ansari +1771566,Andrea Alcorn +1182886,Brian Fortune +226568,Acharanat Ariyaritwikol +85760,Jean Howell +1495084,Jason Newell +1001787,Ufuk Karali +1591063,Glen Gordon +1153006,Troy Kingi +1476850,Jørgen Nørgaard +1393535,Alison MacLeod +213438,Kenny Bee +136961,Laura McLean +34070,Nora Zehetner +1507487,Cyd Casados +1777432,Nemanja Naumoski +1498652,Clare Filipow +105510,George Taylor +203575,Jamie Beamish +1796091,Barbara Danicka +1668006,Stylane Lecaille +1891502,Gary J. Neuger +1763721,Simone Chevalot +82149,Conor MacNeill +27958,Danny de Munk +102674,Mizzi Götzel +111692,Hannah Fierman +17498,Niels Arestrup +133177,Anjala Zaveri +105595,Kevin Dobson +1185269,Youdon Aukatsang +1321911,Gilad ben David +53622,Anil Yadav +1648968,Michael Aasen +453588,Melanie Papalia +54129,Fernando Vivanco +1812214,Brian Knoebel +1192361,Jānis Amanis +132904,Alison Paula Rizo +550604,Elika Portnoy +1266243,Logan Farmer +1408149,Alex Fox +134488,Sara Malakul Lane +1760872,Kabelo Thai +1117086,Grant Carricker +1322958,Jürgen Hartmann +1503843,Jimmie Kirkpatrick +1754455,Rebecca Lee Fox +104134,Andrés García +1734264,Vipin Gohil +75620,Davenia McFadden +1766056,Jack Depp +52010,Lisa Potthoff +1003524,Chester Gunnels +592173,Josefien Hendriks +142658,Maxine Göbel +1325715,Michael Cyril Creighton +85757,Joe Jonas +222169,J.G. Quintel +213049,Jadin Gould +1869035,Ramsey Luke +117308,Nicole Tubiola +1523166,Shannon K. Dunn +1742634,Jane Doole +1424214,Emily Yarbourgh +1093941,Nils Gunnar Lie +119706,Karl Graboshas +141546,Lee Hang-soo +5444,Philippe Nahon +564050,John Melin +560354,Cho +19740,Kate Vernon +1747653,Don Bender +1367224,Michael Todd Behrens +1607508,Leina Krespi +124094,Steve Perry +206486,Guilford Adams +1196679,Judith Carol +1891550,Kristina Jones +208762,Peter Gannon +170638,Dan Cortese +1327733,Eduardo Domínguez +124644,Analeigh Tipton +93737,Lim Kay Tong +1432518,Clara Wong +1507788,Jorge Palma +1134300,Pablo Nicomedes +145123,Grégoire Ludig +1531624,Hans Dieter Wolff +1408057,Jon Croft +557605,Sandrine Bisson +1290631,Bianca Brewton +1124177,Yevgeni Goryunov +236273,David Silva +137757,Arko Okk +1445107,Pietro Gian +1671029,Vlada Verevko +1827931,Jeffrey Li +1621791,Xesc Cabot +1068139,Kristjana Vagnsdottir +95385,Bobby Bones +133442,Andrew Ginsburg +133886,Naomasa Musaka +1454295,David Stassen +1162328,Ariana Smythe +1903917,Sripradha +1287370,Laila Räikkä +1016069,Angela Doria +1294275,Richard Champagne +1514479,Tom Bui +1706103,Sandy Tejada +1879669,Madison Marie Steinacker +1127316,Attilio Martella +1319889,Bruno Ledez +71521,Chuck Zito +1062244,Jordi Torras +1344884,Ko Aerts +212059,Edin Gali +1723560,Giulia Cicciari +670,Ben Burtt +70460,Elisa Schlott +1367842,Annie Fitzgerald +1669954,Victoria Haynes +1350973,José Julián +1204327,Kristina Ellery +1179100,Kei Suma +929675,Viktor Smirnov +1536683,Danny Cheng +1240646,Rebecca Shoichet +1266245,Josh Deering +1624443,Flor Ferraco +1357755,Roxanne Lauren Knouse +1895596,Portis Hershey +1719830,Chin Shih-Hui +1176976,Tomiko Ishii +931533,Lorella Di Cicco +1341669,Erik Rasmussen +1516166,Manasvi Mamgai +1734183,Darren Mitchell +128022,Raizô Ichikawa +1645002,Edward Lee Thompson +205797,Maria Dizzia +144617,Renzo Ozzano +518627,Joel Courtney +1445129,Anahi Martela +150019,Raisa Gichaeva +193356,Karl Collins +64543,Julien Cafaro +39274,Lucia Bosé +37651,Monique Roussel +599157,Sherry Hardin +1090178,Bucky Santini +1902084,Karolin Oesterling +556938,James Ha +88167,Anushka Shetty +1676741,Naika Toussaint +29460,Jayne Heitmeyer +226642,June Haver +98829,Richard Weber +1049536,Ignacia Allamand +1129856,Louis Dunbar +1820218,Susan Knight +1170317,Pat Moore +1743387,Mike Krahulik +1543949,Kelsey O'Brien +1244926,Danny Lee Wynter +1277001,Marie Boissard +1413433,Harry Lister Smith +1349722,Annie Gould +1734194,Ferdinand Hengombe +1420544,Frank Fanning +1734967,Beau Rose Garratt +1854493,Michelle Lee +1159622,João Pedro Vaz +1582131,Xiqui Rodríguez +132355,Malcolm Barrett +1089597,Kittikorn Liasirikun +1252061,Cagatay Ulusoy +1579267,Getter Kolosov +188454,Jonathan White +1291699,Anthony Amaral III +1537741,Padraig Fallon +1234330,Ann Morrish +1898248,Zora Stijačić +1196017,Tony Horton +235134,Shumlik Cohen +1309472,Tamotsu Hayakawa +120107,Andrea Roncato +13475,Patricia Quinn +142101,Trilby Glover +1055176,Melanie Graham +45693,Hans Diehl +1107940,Elisa Carricajo +110166,John Holowach +1549537,Tracey Bonner +1819144,Bruce Morningstar +550408,Karine Nuris +61367,Richard James +225648,Jacques Marbeuf +1428297,Marcus Vögeli +1284053,Katrina Hodiak +24512,John H. Brister +37792,Olga Schoberová +244967,Giovanni Mauriello +1164789,Tony Leung Siu-Hung +183465,Peisha Arten +66608,Laurent-Christophe De Ruelle +1678980,Julie Brar +1432559,Loisa Andallo +968305,Melody Weintraub +1136710,Milan Lugomirski +1416467,Jesus Fernandez +1083311,Hiroshi Izumida +1698790,Rick Bacon +209687,Jason Logan +178343,Michael Keep +1293916,Linda Sauvé +1368206,Tiffany Tynes +994438,Aleksandr Kulyamin +237781,Jacynthe Jacquet +217046,Eddie Baroo +1129858,Patrice Movermann +100490,Stephanie Blake +550903,Schultz +1147926,Cobe Williams +88473,Monica Scattini +126497,Karan Makhija +1081845,Ekaterina Gorina +110425,Eamon Farren +99446,Giovanni Di Benedetto +1215395,Scott Klace +128198,Fred Kohler +1509586,Graciela Doring +141464,Natalie Becker +1261577,Ali Sadeghi +128944,Karl 'Karchy' Kosiczky +1173038,Justin Cone +150810,Justin Bieber +1046143,Caity Lotz +1497232,Luisa Ezquerra +1394591,Melanie Mullen +209426,Jane Park Smith +1043348,Anne Tubin +1837297,Damson Idris +17123,Darren Boyd +993025,Atul Agnihotri +102849,Jean Aymé +31082,Ai Maeda +180705,Veronica Milagros +138710,Xavier Estévez +47860,Allan Cuthbertson +1699987,Annu Antony +32313,Massimo Farinelli +130496,Arthur Rankin +1650199,Brian Thomas Wise +1180976,Lau Ng-Kei +1172641,Vincent De Bouard +108864,Timo Nissi +1857671,Karol Coussirat +1758601,Theerat Wattanakijrungroj +931543,Riccardo De Torrebruna +997569,Kenneth Collard +98549,Mark Volman +150279,Öner Erkan +88050,Edo Brunner +1481125,Ryûtarô Amami +235666,Emília Vášáryová +970880,Enrique Gagliesi +1037763,Melanie Lyons +237508,Roman Kartsev +27931,Charles Carson +1581209,Joseph Attenborough +1055273,Goran Petranović +1416474,Kenny Anderson +1754822,Kanagat Taskaraev +228640,Curtis Lum +1553545,Johannes Riis +1381535,Joseph Eggenton +1683030,Gabriel Galvão +47835,Robin Soudek +1574233,John 'Fast Jack' Farrell +1320694,Ahmet Danyal Topatan +1042599,Jack McDonald +1495607,Claire Greasley +40304,Jacques Nolot +1342865,Song Jian-Zhang +1519264,Kaarlo Kartio +71784,Sabu +1204027,Gibson Bobby Sjobeck +1324145,Lena Baader +1212644,Reina King +1293892,Chris Sullivan +1842114,Michael Lopez +556724,Leonardo Sprengler +72698,Mike Weinberg +100292,Megan Timothy +1673647,Andi Matheny +1775356,Carlos Leay +223478,Viviana Aliberti +144128,Jonas Chernick +1853766,Mohamed Badrsalem +204507,Leslie-Anne Huff +1324065,Magda Brugengheim +568027,Francesca Mac Gill +100408,Maria Rosaria Omaggio +53152,Jean-Luc Julien +1663868,Kára Jurány +1565960,Georg Baselt +52023,Steve Railsback +220048,Richard Marx +441898,Ben Davies +194896,Joy Creel +18400,Helge Schneider +58973,Gary Brockette +132906,Luis Talavera +1844643,Lebogang Phoshoko +1104321,Scott Ly +79258,Per Graffman +1117469,Michael Finney +219506,Khalid Laith +1074097,Antonis Kafetzopoulos +1717266,Jerry Hoven +1117266,Ian Paul Freeth +1301797,Lilian Stanley +1677474,Andrea Tariang +1169487,André Sallée +1309245,Tommy Tedesco +142938,Philippa Bevans +89558,Andreas Rothlin-Svensson +136812,Martin Myšička +1545520,Anita Farmer Bergman +220013,Heather Rae Young +1132166,Lauri Maijala +226188,Torunn Lødemel +1028523,Takashi Naha +1883871,Christian Maggio +1086557,Catalin Rotaru +95785,Richard Stahl +232048,Sandi Tucker +1502864,Robin Hamilton +45357,David James Campbell +1089488,Julie Chevallier +119143,Kana Hanazawa +34742,Marion Davies +1208788,Ernesto Campos +240214,Judith Stott +117170,Joel Hanson +1201716,Bel Powley +237747,John Hennigan +1627036,The Jungle +1076455,Barroso Lopes +1572583,Kyle Kirkpatrick +81876,Stuart Devenie +1271591,Dennis Mojen +1797945,İlhan Hemşeri +240914,Salvatore Billa +1373625,Riley Rose Critchlow +32751,Mark Acheson +1489160,Klongkrit Klaydang +1667886,Calen Tassone +1151732,Cordelia Wege +1698803,Paul C. Morrissey +110985,Uroš Đurić +1076562,Hampton Dixon +563822,Santiago Ramos +1002718,Gavino Ledda +1159514,Shannon Mosley +139868,Ignacio Serricchio +63502,Ben Gourley +1254614,Leslie Odom Jr. +1023889,Maximiliano Ghione +1444616,Slavo Bulatovic +1573776,Nancy Bach +70551,Ernst Romanov +1796797,Michael Brown +1789783,Marquis Rodriguez +592097,Adnan Tönel +1103794,Joaquín Núñez +237537,Rita Marley +29461,Julian Casey +1472513,Harry Templeton +935863,Stig Fransman +1086507,Themba Nkosi +1051816,Cândido Ferreira +1664858,Harish Khanna +121554,Jakob Wilhjelm Poulsen +1286729,Michelle Grassnick +545286,Fang Mian +566557,J.P.S. Brown +1012108,Louka Masset +81923,Kyle Vogt +1252034,Brian Yang +1229667,Joy Smithers +1031939,Alfredo Wally Barrón +1035434,Pietro Fornaciari +1129680,Scott Silveria +1169981,Parrish Randall +1419492,Heo Chang-kang +1333567,Elena McGhee +1758600,Chawalit Klinkusum +165662,Jerry Mann +1695145,Tom Barker +1384708,Lexi Atkins +1398070,Josue Anthony +227808,Danise Chan +219736,William Hoyland +1271180,Einar Wenes +1284242,Rick Kirkham +36909,Paola Pitagora +1219152,Billy Martin +1422587,Peter Ladjev +228512,Sharon Schouten +1800046,Fionnula Murphy +1080212,James Devoti +1108337,Rahul Vohra +1734192,Fletcher Gill +1185747,Charles Rooner +1784577,Nuno Homem de Sá +17496,Jacques Audiard +1672692,Jermaine Smith +1696236,Marcus Goddard +1175507,Jason Box +965770,Carlson Young +84217,Alex Meraz +149901,Somlek Sakdikul +1495605,Allison Riley +18728,Franz Xaver Brückner +47826,Alexandre Astier +95512,Julie Ege +20833,Jace Alexander +1502955,Michael Trisler +71200,Andrés Parra +65798,Brandon James Olson +1553544,Tina Hjortshøj Bilsbo +1031514,Jayant Gadekar +1527565,Mayling Ng +571265,Edie Mirman +1303558,Bao Bei-Er +1359461,Graham Curry +2619,Simo Mogwaza +1169134,Philipp Hartmann +1011105,Laura Ashley Samuels +46928,Beth Riesgraf +199917,Bruce Beeby +87285,Mailon Rivera +72631,José Luis Gómez +1176788,Dominique Steffanoff +1796422,Francis Limoges +1492365,Paul Renay +1643339,Guillaume Delbart +1794858,Zacciah Hanson +24690,Nicoletta Machiavelli +1646191,Gail Smale +1753460,Alora Catherine Smith +1324182,Isamu Saeki +1543058,James J. Casino +1145979,Isabelle Allen +939717,Tex Palmer +144615,Virgilio Ponti +1183138,Charlotte Bøving +23442,Vladimir Menshov +115863,Fidel Castro +1624092,Liu Sha +149569,Lauren E. Roman +79149,Dylan Neal +56699,Franziska Weisz +145126,Philippe Gaulé +107870,Gustaw Lutkiewicz +1660796,Martine Malle +1880537,Antonio Sepe +1652362,Ciara Flynn +1084799,Michelle Torres +1205894,Philip Lawrence +1428396,Sara West +1095874,Alejandra Toussaint +1093942,Sondre Abel +1583948,Daniel Szczypa +1381322,Jack McTaggart +1801454,Nikolay Kutuzov +23988,Fumiko Orikasa +82806,Mathew Horne +1266275,Robert Dancs +1270194,Pamela Cortes Bruna +82603,A.J. McLean +1834953,Alan Broadhurst +107624,Marcello Mazzarella +1446334,Robin White +1174373,Colby Trichell +140171,Dragan Maksimović +1525497,Tom McLaren +948741,Stéphane Butet +26363,Mona Dol +1285499,Angela Kerecz +129928,Sarah Butler +1891549,Robby Hanbery +118508,Tige Andrews +129104,Melissa Benoist +103584,Joseph Hardin +139036,Manuel Mesquita +143133,Ana María +582253,Johannes Zeiler +1811520,Takelech Beyene +562279,Liz Gallardo +1581393,Lilly Brown +1547104,Ben Perez +568031,Patrick Tagget +170955,Rafael Ferrer +63206,Robin Sydney +1725276,Beau Gadsdon +1810138,Christian Jadah +587090,Girish Kulkarni +1317781,Pablo Viña +22026,Rick Rubin +1024491,Chriss Anglin +1197879,Jaime Plama +1886311,Amy Newey +1082716,Gaye Gordon +113224,Michaela Watkins +1506486,Aubrey Hays +1288112,Nikita Presnyakov +1849922,Luis Fabra +1827138,James Matthews-Pyecka +1145673,John T. Woods +1674684,Donia Eden +1181799,Luisa Arraes +163515,Steve Blackwood +104338,Ivan Naranjo +1413781,Sophie Allan +1395135,Jørgen Beck +564271,Fırat Tanış +1169506,Tomi Kerminen +1251069,Nathalie Emmanuel +559416,Mana Ashida +143208,Sidney S. Liufau +1820117,Wyatt Lanier +1286531,Claire Elizabeth Oldham +1663952,Felicity McKee +1158067,Camden Gray +933327,Gegia +1370986,Happy Anderson +85962,Gwei Lun-mei +17578,Sami Frey +94158,R. Kelly +1807041,Anna Van Hoek +1174536,Gabriele Villa +1376095,Jeanne Nielson +1218234,Ian Kahn +593168,Helen Raye +138009,Rick Malambri +1033152,Paolo Graziosi +1844348,Debbie Elford +1561284,Marika Casteel +1400512,Luciano Acuna Jr. +1325764,Jorres Risse +40300,Camilla Bendix +85494,Rosemary Bertrand +307837,Yann Goven +544187,Ghali Benlafkih +166522,Andrew Moodie +970559,Ailín Salas +1373116,Akéla Sari +1034493,Risto Aaltonen +113701,Richard Shaw +23185,Brian Wilson +1381672,Rose Locke +1039420,Billy Schaffner +1010505,Shelly Hines +1516713,Mehdi Haloti +1400592,Jackson Manning +1784149,Ramneeka Dhillon Lobo +100124,Hirotaka Suzuoki +1719887,David M. Graves +1523860,Jeni Bezuidenhout +1094635,Rachel DiPillo +21181,Fabio Testi +584303,Pierre-Louis +1539987,Mandalynn Carlson +1223613,Ron Taylor +1531608,Dusan Sanford +1623639,Mick Ferry +1535063,Rhavin Banda +544716,Dominique Maurin +1037701,Pietro Torrisi +1758891,Shiran Nicholson +1398204,Daniel Morrison +125941,Yoshimi Ashikawa +99482,Ely Galleani +83746,Makiko Esumi +1841517,Cedar Landsman +1327364,Giovanna Gold +1747739,Jack Connell +1581575,Brian Peters +1579217,Nadia Essadiqi +225934,János Kulka +1214788,John Pirkis +1192635,Marcel Challaye +1624627,Jimmy Wales +1205884,Dane Brown +103883,Rajesh Khanna +1260529,Jesus Jr. +1017370,Gus Perez +113461,John Legend +1535058,Michael-Anthony Taylor +96923,Katherine Ellis +1455166,Shigako Shimegi +1888591,Kyriakos Korogiannis +239259,Tuna Orhan +152542,Ashley Fairfield +178402,Fabrizio Mioni +1660485,Dave White +1546354,Ashley Knight +1767342,Madeleine Vall +28079,Alisa Freyndlikh +30952,Andrea King +1378399,Tracy Biddle +1244028,Alexandra Pascalidou +1753020,Tina Simmons +1455089,Momelezi V. Ntshiba +138629,Jeff Yesko +129395,Clare Stone +1774254,Éva Bata +1179386,Jean Marlow +90844,Jessie Lee Fulton +18211,Nathan Miller +1727517,Richard Bogutskii +4371,Fanny de Castro +127715,Freishia Bomambehran +1702114,Philip Levine +26370,Romain Bouteille +1582293,Lauren Kitt Carter +992381,Blake Bertrand +1698114,Phillipe Spall +587506,Shameik Moore +1086858,James Bierman +1322589,Alice Belardi +50944,Johannes Riemann +34416,Charles Arnt +1622942,Sun Jiao-Long +2959,Kayvan Novak +1064509,Bram van der Hooyen +411483,Philippe Chany +95875,Andrew Daly +1530091,Mike Massa +105868,Filippo Timi +1441403,Annie Roed Frederiksen +1903226,Bas Teeken +1651532,Joakim Arvidsson +1869093,Jochem Hamerling +1795195,Leslie Baker +140361,Génia Vaury +1795301,Melissa Wyler +992623,Vincent Macaigne +1733480,Stacey Lynn Crowe +1166131,Matti Oravisto +110769,Erkki Thil +1643586,Amanda McCann +185407,Steve Lyon +73149,Monte Markham +586286,Hera Hilmar +908548,Joanna Kulig +64799,Nino D'Angelo +165934,Caitlin O'Heaney +1444467,Nicola Meisselová +19484,Burr DeBenning +554175,Reita Serizawa +1480403,Salomé Dewaels +1194917,Nikolay Gavrilov +564591,Isa Bellini +1591795,Gaspar Campuzano +54170,Jérôme Commandeur +52705,Zak Santiago +20961,Nguyen Van Quang +1135127,Oskar McNamara +1094173,Gonzalo Cubero +1519555,Thomas Buck Mason +984850,Jolyon Baker +1266720,Hsin Li +54730,Stephen Borrello IV +102118,Darla N. Warner +1100011,Slimane Dazi +59020,Sonja Kerskes +227847,Paolo Rossi +238057,Massimiliano Vado +1137248,Firas Al-Lateef +226332,Trae Ireland +1333164,Jason Raphael +1633919,Mikhail Kalinin +1545519,Robert J. Ashe +1569227,Sacha Charles +1036293,Reginald Mason +1737693,Robert Dill +464228,Aoba Kawai +114403,Carol Andrews +1318089,Stoyan Angelov +20640,Chen Kaige +40181,Lorne Greene +226566,Peerawat Herapath +82772,Peter Tork +1434411,Paula Hans +1117909,Yelena Tonunts +59842,Jon Glaser +968089,Emma Dumont +1372463,Gabriel Weinstein +1555747,Declan Wheeldon +1581227,Marija Tadić +952143,Ferran Lahoz +1289123,Thagubothu Ramesh +1164507,Ahn Jae-hong +1455758,James DiGiacomo +1734187,Riley Paton +110742,Tika Sumpter +67154,Jay Gillespie +1822968,Nickel Bösenberg +44237,Matt Cooke +81416,Arturo Gil +936991,Leah Clark +111671,Raai Laxmi +237176,Markus Wambsganss +1324188,Sophie Sam +1768255,Daniel Boyd +221857,Miles Jupp +1291612,Arthur Fogel +39502,Nelly Kaplan +1207281,Allan Henry +1436151,Hao Zhang +1279818,Ashley Aufderheide +46362,Samuel Witwer +1188270,Emmanuel King +1484035,Moori Yukiko +930992,Erin Beute +46765,Traute Carlsen +1085819,Vincent Giovagnoli +270391,Leonid Kulagin +928008,Stefan Gödicke +1401451,José María Hervás +110139,Willard Parker +1034476,Telmo Esnal +1271295,Nilgün Bubikoğlu +931599,Cocco +104628,William Murphy +1546231,Troy Bogdan +703622,Jean Gargoet +1862897,John Wade +1714059,Fabien Martin +1339653,Turan Mehrzad +138628,Smith Wordes +1062697,Clara Jost +128749,Eleonora Mazzoni +1521222,Teressa Liane +1898239,Milorad Supić +145352,Yılmaz Güney +1771559,Vincent Garcia +1213844,Chieko Honda +1506488,Mela Hudson +96609,Roger Pryor +1029082,Pentti Kotkaniemi +1478584,Mårten Svedberg +1591370,Seo Hyun-Woo +1317695,Valery Tscheplanowa +83569,Erik J. Berg +1146888,Kim Andrzejewski +87952,Joe Hackett +134368,Utaemon Ichikawa +1624282,Bob Battier +1619456,Ziad Bakri +1337445,Emily Boisseau +1247697,Mari Lehtonen +1284323,Kevin Hudson +7452,Masayuki Mori +85676,Ronit Roy +1138600,Perry Joshep +126451,Andrea Gherpelli +114718,Helge Kjærulff-Schmidt +208478,Brogan West +1315167,Hazel Diaz +204439,Emily Hirst +216,Josh Flitter +88262,Lucjan Czerny +61516,Teodorina Bello +123192,Ub Iwerks +647347,Diogo Morgado +1802426,James Chanos +1821362,Lois Meleri-Jones +1398109,Emilio Dosal +1190897,Jack Trent +1326143,Cheryl Meyer +1073193,Shih Szu +1116334,Rina Hidaka +163910,Gerrit Vooren +5763,Jacques Tati +1207366,Victor Cornfoot +1031508,Maryam Zakaria +1795277,Natacha Andrews +1351402,Jamshid Mashayekhi +1359974,Aaron A. Fink +1426918,Timothy Reevis +1517761,Ayesha Parveen +98396,Dean Edwards +188081,Corbett Tuck +578838,Shin Jung-geun +63238,Brandon Molale +99088,Dana Bentley +44329,Arnd Klawitter +988844,Ben Zeller +1193060,Joseph Bellerose +1531594,Gina Breedlove +77927,Megumi Ogata +1720921,Dennis Banks +145116,Samantha Barks +1273699,Charlotte Schultz +63760,Marie Kinge +1138557,Tori Welles +866390,Nicolás Treise +1334720,Jung-ki Kim +1650189,Will Dalton +59661,John S. Schwartz +1566370,Louise Hradsky +385420,Robert Sheppard +149133,Shirley Ross +1853877,Les La Marr +1361963,Tom Prior +119125,Francis Mitchell +534985,Emmanuelle Bataille +1444643,Wolfgang Edelmayer +466505,Kumail Nanjiani +1676765,Chris Franke +1509231,Tara Phillips +1416483,Rick Howard +1860008,May de Lavergne +1517760,Atul Kumar +86675,Pavel Shpringfeld +1239427,Jack Newman +1203524,Reese C. Hartwig +64294,Tom Nagel +345272,Pontus Gustafsson +1139026,Bohdan Łazuka +103529,Antonio Casas +143708,Natalya Nazarova +101241,Mirko Valentin +127848,Choi Jin-ho +64541,Wladimir Yordanoff +31438,Radica Jovicic +80349,Simon Longmore +140017,Noëlle Balfour +21902,Manfred Wong +1776758,Aizuddiin Nasser +1188481,Herzl Tobey +1264667,Chase Austin +935639,Mickey Brantford +1672770,Noa Kooler +1422100,Fern Barry +1115623,Karl Fieseler +191855,Kate Higgins +1105302,Jean-Jacques Rausin +78672,Eduard Gabia +206042,Chris Stone +134029,Fan Wei +1539683,Melissa Brown +587823,Alice Englert +39005,Simone Valère +1413774,Alicia Zorkovic +96624,Rachel Boston +984866,Kumiko Akiyoshi +1172847,Denis Davey +1294429,Emmanuel J. Esther +1271474,Ava Telek +1360309,Tony Harrisson +1436886,Aleksy Komorowski +1840034,Pe'a +1501784,Ruthie O'Dell +1249368,Carla Hidalgo +30537,James Gleason +1294531,Levi Wilson +599976,Owen Davis +88054,Radoslav Milenković +1216523,Ford Kiernan +1064454,Jean-Jérôme Esposito +26048,Ben Browder +935234,Simon Armstrong +1001788,Fevzi Müftüoğlu +22703,Diana Körner +549251,William Riley +117942,Peter Malberg +1017271,Pascal Henault +219861,Dinesh D'Souza +1697395,Megan Rose Jones +1707838,Wolfgang Nissen +1189937,Ricardo Azevedo +1195194,Margot Novick +85451,Ranvir Shorey +1399673,Allan Surtees +1173388,Gianfranco Gallo +92931,Angelle Brooks +1513563,Arthur Allen +1362636,Rafe Beckley +1215046,Chris Beetem +17266,Wolfgang Völz +586676,Rainer Haustein +102453,Marcie Barkin +126743,Lee Chung-a +53507,Elina Salo +1588476,Laurynas Jurgelis +1624609,Sarah Ellison +1592116,Beck DeRobertis +928673,Michael Hudson +63110,Jay Jablonski +218000,Ian 'Molly' Meldrum +85412,Olivier Gruner +99570,Javier de Rivera +1102300,David Hockney +126875,Alicia Coppola +150864,Barry Jackson +92305,Pierre Stévenin +177417,Justin Alston +1670958,Michael Nikolich +1184042,Ben Field +141048,Dean Abston +139459,Vladimir Zelenskiy +96860,Ginger Hall +1097313,Ned Hourani +1137886,Victor Mayer +1478273,Natalia Davidenko +1209377,Roger J. Timber +1847922,MikeMo Capaldi +1186317,Carla Araque +1812963,Tsukushi Suzuki +74427,John Hensley +141535,Ashley Mulheron +1156337,Şinasi Yurtsever +29077,Phillip Van Dyke +1129442,Malku Choquehuillca +1085070,Etta Devine +44933,Lyle Waggoner +1754442,Precious Roberson +1429,Charlie Watts +1863916,Marcos Melo +1202564,Louis Cheung +1771560,Eizzil Cintrón Valenzuela +1158436,Pamela Knaack +1476772,Sebastian Lund +1829165,Robby Tumewu +1401112,Shane Cullen +1623641,Cleveland Campbell +158131,Hunter Tylo +1647141,David B. Johns +1375948,Hayley Magnus +1522153,Freddie E. Williams II +130769,Grey Damon +1900161,Ray Diaz +149320,Turgay Aydin +93994,Chun Jung-myung +1562091,Tim Breyvogel +1057915,Fred Seagraves +33092,Eleanor Summerfield +913618,Tristan Halilaj +1601831,Lorna Guity Pruce +1841519,Egypt Hemby +1073409,Claudia Angelique Rademaker +41003,Käthe Kamossa +90396,Winston Brown +1172956,Law Chung-Him +1231547,Stephen Sowan +1426209,Rick Ernest +1148912,Bianca Saad +31775,Joe D'Amato +1255440,Turgay Kantürk +98509,Gustavo De Nardo +557863,Florian Wotruba +233027,Sergey Bekhterev +1362491,Lisa Goldman +228153,Peter Luberti +1394424,Maddalena Ischiale +146528,Malachi Jara Kohan +108686,Kim Chiu +1410543,Kevin R Allen +1890676,Nicolas Conceição +1375838,Renato Tontini +1428333,Sanjeev Chadda +1521299,Ishita Sharma +38992,Ortrud Beginnen +1187037,Adam Bakri +123037,Jonathan Harris +1650318,Graciela Montalvo +120879,Engin Altan Düzyatan +1656700,Brendee Green +543786,Dax +1362877,Clotilde Baudon +1376597,Audrey Lynn Weston +35081,Camille Natta +1143300,Mónica Gonzaga +1522206,Remco Alberts +1458875,Philippe Derrez +1439246,Henrik Møller +1054379,Christopher Rithin +1440176,Jonathan Wong +100269,Timothy Elwell +20632,Maduka Steady +1392128,Janet Song +1266237,Chaz Cowles +99930,Mark McLachlan +117470,Josh Groban +935011,Kote Daushvili +1647127,Jamie Ward +1564304,Ewa Jedrusik +1024337,Noriko Kitazawa +1776754,James Ng +225321,Doroteea Petre +1262138,Charles Comyn +99706,T.J. Glenn +1151806,David Geselson +1528179,Oded Leopold +61568,Edgar Arreola +1315198,Kanehira Yamamoto +85016,Marcial Di Fonzo Bo +1446044,Ebru Cündübeyoğlu +135132,Hayao Takamura +91290,Hiroyuki Amano +1582460,Kelea Skelton +97736,Jasi Cotton Lanier +1368501,Faustino Di Bauda +1251581,Kim Soo-Hyun +1742640,Leigh Daniels +1739695,Richard Regan Paul +1497830,Kostas Zerdaloglu +1431128,Caroline Maria Winberg +1427183,Zenobia Taylor +1585244,Kotaro Tsukada +1849645,Christopher Lewis +1181154,Malcolm McGregor +62964,Phil Nice +1127387,Adriano Di Pasquale +145344,Salih Kalyon +1353643,Rita Affua Connell +1448560,Devon Conti +1345953,Anna Savva +1436816,Nader Dernaika +1179810,Daniela Choderová +1896152,Pierce Baird +153510,Marlyn Mason +201495,Guy Bertrand +1165743,Giorgos Souxes +1326243,Louie Boria +1883815,Craig Sparrowhawk +111371,Rei Igarashi +50408,Christoph Engel +1404651,Talia Lanning +13079,Gavin Hood +89809,Bobby Darin +1096277,Marilyn Castonguay +1510810,Chuck Fiorella +102122,Rosita Torosh +1103547,Dotty Shepard +1578720,Divine Prince Ty Emmecca +1734251,Tara Leia +588809,Ana Moreira +1542137,Zack Ratkovich +1205524,John Didrichsen +132197,Pietro Carloni +145677,Oriane Zani +1413105,Daniela Stoica +1412929,Jordan Nicholas Smal +1028351,Tadao Sato +87444,Sarah Habel +1709047,Cailey Fleming +939596,Franz Rudnick +1292551,Yevgeniya Kuznetsova +178124,Marion Yue +1114552,Stefán Jón Óskarsson +1027298,Geraldine Singer +105920,Heidi Maria Glössner +169549,John Fabian +138716,Ana Polvorosa +86666,Valentina Talyzina +96611,Barbie Hsu +1194041,Emanuela Galliussi +41964,Dörte Lyssewski +1376398,Emil Iserle +1582024,Victor Ezenfis +1782575,Tracy Correll +546216,Alexis Maitland +1496061,Illya Allman +1447878,Jean Benoit Lauzon +1171861,Bronte D'Esposito +1394997,Tituss Burgess +566381,Frank J. Cimorelli +1862894,Judy Lebeau +36570,Georg Lehn +71517,Mandy Amano +1255055,Jessica Green +1353929,Todd Maurer +1545518,Liberty Fraysure +98923,Susannah Devereux +1360072,John Mainieri +36628,Kate del Castillo +930763,Robert Lepler +967458,Vittorio Leonardi +1278911,Keith Arthur Bolden +223692,Sebastian Dickins +1272002,Sreenath +1169323,Salvador Llós +76744,Nina Zoe Bakshi +1397303,Vitaliy Alshanskiy +37572,David Thomson +73890,Michelle Ang +1127939,Necdet Yakın +1506491,Hannah Munson +1237876,David Ury +1833632,Jacob Crawford +1697392,Jinji Dawson +55472,Sacha Dhawan +1326141,Brian Foyster +88820,Jean Rollin +1796595,Ragnar Baartvedt +1178777,Alex Maizus +199586,Noah Reid +1155123,Octavius J. Johnson +87055,Karen Disher +1473959,Melissa Bolona +1342693,Akio Seki +1835249,James Seward +1717670,Aathma Patrick +1660481,Lucile Sewall +1204941,Primo Gaburri +88523,Heidi Kozak +1080015,Adhvik Mahajan +1604097,Alfred Gilliam +1117770,Talal El-Jordi +1172455,Andi Norris +1614740,Vladimir Borodin +1172234,Mrs. William Bechtel +13953,Edward F. Cline +37317,Brian Eno +1112588,Burçin Bildik +35472,Hilarie Burton +101060,Danielle Nicolet +170773,Anthony Clark +53621,Jampa Kalsang Tamang +536802,Karen Balkin +1117778,Cem Sultan Ungan +106645,Tom Reilly +1289016,Erik Charles Nielsen +1091307,Alonzo Price +1029718,Yuko Oshima +141222,Michael Luckett +1228351,Samantha Munro +59818,Joey Mendicino +132187,Don Jeanes +1451394,Mariana Paola Vicente +1891735,Dalmazio Grenti +1561566,Mark Del Amo +1487525,Karin Beewen +1189935,Grazia Di Marzà +96512,Yelena Fadeyeva +1487287,Aleksandr Gorchilin +1189039,Michael Sundin +1436280,Tanwei Pang +213486,Martin Wallström +2741,Walter Sedlmayr +560126,Grigori Belov +1234653,Shelley Peterson +550598,Teagan Vincze +1198454,Jim Ford +1054532,Clifford Soubier +92614,Dawn Olivieri +1189196,Stephen Sheffer +237150,Sergio Hasselbaink +571229,Colleen Clinkenbeard +91485,Patricia Karim +1842172,William Sonnie +146954,Mårten Klingberg +1352335,Chance Nichols +1090138,Stephen Bent +1170642,Valentino Muffolini +1169505,Jevgeni Haukka +1602019,Yves Peneau +1672658,Simon Howard +49842,Maximilian Simonischek +558135,Mina Fujii +67761,Ruth Nelson +1413066,Robin Queree +1690514,Josh Diogo +134386,Ichijirô Oya +98905,Phoebe Dollar +1005852,Janelle Monae +141673,Jason Eisener +90403,Mary Mancini +1180478,Eve Chems de Brouwer +1217934,Betsy Brandt +1753218,Samantha Russell +98060,Mette Agnete Horn +1295290,Christina Elmore +44639,Torben Liebrecht +1018042,Teresa Roberts Logan +994032,Ákos Horváth +971329,Nina Arianda +1760471,Briana Van Schuyver +1413780,Charlie Crabtree +1782153,Rhonda Jensen +132901,Manuela Guevara +1273857,Paul Bernon +956556,Michael Xavier +1764149,Dennis Koraiskov +272412,Anne Doat +1562110,Georgina Redhead +1683718,Colin Critchley +1796921,Ina Hammer +92494,Kim Robert Koscki +1734198,Christian Fane +186466,Sydney Jackson +567542,Carlos Kaspar +95839,R. Michael Stringer +1624624,Katherine Bouton +50930,Maya Lesca +30227,Hugh Williams +38131,Sergey Bondarchuk +1886299,Sean Evans +5714,Carlos Saldanha +1683440,Eugenia Gonzales +93126,Jacques Stany +55814,Marie Denarnaud +1458922,Vicki Marcus +239487,Lyudmila Zaytseva +1204678,Jacobchen Carrasco +1439320,Elena Bell +1437111,Paul Lang +553794,Takashi Nagasako +1760476,Ryan Koenig +52255,Furio Meniconi +1363563,Rafael Tabor +938163,Talgat Nigmatulin +1154283,Morganna Ekkens +1071130,Ashley Chin +111986,Dan Gachman +1326155,Kang Shin-chul +1735924,Jeff Urquhart +1128861,Lauren Watson +1032886,Kevin Bigley +1246183,María Eugenia Suárez +144141,Otto Šimánek +64870,Peggy Lee +1454291,Tom Dab +102315,Troy Ruptash +939345,Patrick Seitz +86946,Anatoli Zhuravlyov +1332369,John Oates +927854,Brenda Luana Rodrigues Lima +1200619,Makhouredia Gueye +1689914,Chris Stapley +1337754,Lucinda Raikes +1811519,Abiye Tedla +1219469,Tracy-Ann Oberman +1816052,The Rangers Chorus +102688,Jonathan Winfrey +1390015,Percival Vivian +1515926,Julien Vrebos +1691847,Ivy Blackshire +1738236,Elaine Caulfield +104353,Al Valletta +1184128,Colleen Morris +1748372,Walker Babington +448526,Kyle Kinane +1820910,Sébastien Desjours +543783,Berne Velasquez +563065,Tone Beate Mostraum +938898,Marcel Charvey +166514,Jonathan Welsh +281143,Sergio Fiorentini +1779956,Tayne Sweetman +1603928,Vladimir Zharikov +1442261,Veronika Nová +556472,Ali Düşenkalkar +1451973,Ken Carpenter +1353925,Anna Paavilainen +143364,Sohee Park +1459885,Lily-Rose Depp +1086505,Elizabeth Mkandawie +1083499,Sherif Smith +563644,Tenika Davis +1099825,Vladimir Matovic +190652,Dennis Larson +1256357,Kim Hyun-joon +1580815,Got Ping +1206336,Colin Ash +930681,Ronnie Cosby +107836,Vladimiros Kiriakidis +1117074,Holly Reimer +231152,Juraj Nvota +85431,Chantal Strand +1880344,Silvia Munguia +1325576,Erick Trinidad Camacho +1569920,Daniz Tacaddin +1209344,Ronald Asinas +37727,Philippe Lemaire +137143,Law Wing-cheong +937273,Keeley Hazell +1846539,Ion Lupu +226833,Allie MacDonald +232862,Dmitriy Khrustalev +1008392,Anna Legchilova +1084475,Elcira Olivera Garcés +927964,Gita Siddharth +52916,Nina Gummich +96029,Deja Kreutzberg +115370,Ralph Ince +210292,Anya Monzikova +1434107,Heidrun Singer +139809,Anita Majumdar +1426657,Kent Boyd +1414163,Daisy Waterstone +1088952,Haron Ahad +18035,Johanna Gastdorf +1028899,Meghann Fahy +33109,James Cossins +1373080,Natalia Payne +1568234,Alina Tomnikov +1095430,Baby Peggy +128942,Nita Krebs +238778,Angelo Costabile +1066933,Bob Carrano +1583786,Claudia Zielke +1855353,Valon Ratkoceri +1122375,Lewis Franklin +1229072,Paul Schoeffler +20673,Aurélie Eltvedt +91643,Katie Jarvis +1261980,Taisha Monique Clark +177558,Ken Jones +100537,Rick Irwin +1233094,Kwon Sang-Woo +1086293,Erzsébet Kútvölgyi +575774,Soliman Cruz +58758,Deobia Oparei +47175,Per Christian Ellefsen +120129,Dino Abbrescia +121278,Andrea Thompson +1695663,Alexanne Wagner +1560248,Deovana Lauderdale +92700,Peggy Ann Clifford +1406570,Kimberly Cox +1753243,Robin Blair +57877,Stefano Abbati +137816,Hellar Bergmann +215317,Karolina Kurkova +142953,Mini Anden +1125648,Peter Eberst +559985,Aleksandr Polovtsev +1168885,Peter Cook +261272,Premgi Amaren +53572,Charles Malik Whitfield +190991,Gloria Winters +1296595,Myko Olivier +1679215,Didier Nobletz +1353829,Seo Ye-ji +219708,Audrey Fleurot +21369,Gloria Reuben +138961,Enrique Renaldo +165570,Brioni Farrell +112936,Juney Ellis +212368,Oliver Torr +142485,Sachiko Hidari +1017193,Inez Bjørg David +992679,Pierre de Guingand +549135,Anatoliy Smiranin +119739,Pat O'Hara +1338430,Nelson Freitas +3281,Gastone Moschin +1399126,Jennifer Badger +580240,Maya Gilbert +1793182,Alexis Mabry-Hart +1788312,Dave Berryman +1213889,Cal Gibson +1494315,Carlo von Tiedemann +1658597,Kozhikode Sarada +1364234,Morris Rong Xiang +103720,Eugenie Leontovich +1285939,David Marsais +10984,Derek Deadman +1837280,Megan Leavey +139910,Donald Bisset +1204963,Milena Bettini +1264223,Bergliot Husberg +131432,Betty Healy +1547789,Eva Sitta +591572,Tullio Moneta +1543532,Harvey Lowry +1869087,Rachied Belfor +85928,John Whittaker +16125,Barry Atwater +1766048,Mickey Hutton +120158,Myriam Catania +39851,Christopher Karl Hemeyer +1294398,David M. Ames +1175571,Wan Chiu +1163517,Wolfgang Pampel +983467,Erik Van Wyck +1195722,Sonia Vigneault +1882001,Yor Milano +1415429,Sawyer Pierce +954144,Lou Polan +593202,Maddie Hasson +82183,Olivia Ross +135409,Brigid Brannagh +1204685,Chantelle-Lisa Davis +294675,Tracy Green +133761,Howard Gibson +1191690,Roberto Caporali +1879766,Cristiano Di Calistio +1480659,Peter John Saunders +134248,Becky Rosso +62221,Daniel Percival +1613218,Hugo Dillon +239454,Kazuo Iwata +171941,Antonique Smith +45753,Lyne Renee +1132108,Charles Ray +1342851,Chui Chi-Keung +397312,Jason Whyte +140664,Sonia Bohosiewicz +929825,Ava DuVernay +1683957,Tony Chris Kazoleas +1622142,Mick Casale +1045095,Marshall Ruth +950125,Cokey Falkow +1298297,Charlie Benditt +1139670,Menggie Cobarrubias +1569910,Melissa Lloyd-Wade +59256,Adam Herschman +84700,Ashley Schneider +96428,Malena Alterio +64240,Sewell Whitney +1724692,Claudia Effenberg +1879408,Sara Beccarini +1588416,Josep Maria Riera +1088723,Grigoriy Gladkov +1716535,Mathieu Mortelmans +1557950,Erika Rose +58757,Tamzin Outhwaite +1438679,Tyler Soerries +1136031,Bianca Galvan +226025,Aryan Rahimian +22699,Sophie Schütt +1367502,Andy Ryan +586060,Yavor Baharov +1197582,Lindsey Rhodeos +85976,Satomi Hanamura +29836,Nurzhuman Ikhtymbayev +1370630,Leanne Best +1186291,Mike Daneen +946248,Mahesh Thakur +1047052,Daniel Berini +1336697,Blake Webb +133261,Claudia Eisinger +1313148,Jennifer Wilkens +1053959,Cyril Chadwick +1661205,Suku Mukherjee +1549473,Jennie Anderson +1535047,Matt Ruscic +1292669,Ravi Vallathol +1511961,Michael DeMello +1121111,Violetta Arlak +74257,Peter Joseph +1230606,Jon Laurimore +1538828,Michelle Gerster +985156,Haydee Faverola +1192090,Sergio Sinceri +1469925,Maxime Mazzolini +79332,Trond Espen Seim +89112,Anthony Leondis +230583,Maria João Luís +1023404,Leonor Mediavilla +1616031,Nissim Renard +206301,Samantha Droke +932882,Anatoliy Barantsev +105217,José Sacristán +1646375,Dielika Coulibaly +977636,Brad Nelson +1673505,William Telark +1221129,Martin Trenaman +31363,Candace Cameron Bure +127228,Ayaka Komatsu +1096866,Susanna Cappellaro +1689983,Pam Smith +1087006,Alynia Phillips +1879767,Isabella Briganti +1225650,Buzz Belmondo +1206163,Virginia Greenwald +1128068,Bagavathi Perumal +558927,Brendan Meyer +121749,Yasuhi Nakamura +127015,Gennaro Diana +1298706,Raiden Integra +1189738,Algis Matulionis +1324026,Hans-Joachim Hanisch +1716435,Jynx Vandersteen +1613219,Jeanne Damas +118529,Aleece Jones +1575424,James Howard +109060,Kang Shin-il +55820,Stathis Giallelis +1427684,Scott Evans +1510297,Karen Straughan +65024,Alex Scott +239044,Yuriko Hishimi +83966,Pascale Arbillot +1661736,Dolly Thakore +105457,Mack Gray +1467980,Sean Tracey +1762430,Simone McQueen +1617527,Ronny Yuen +111920,Cindy Busby +1108964,Patricia Goemaere +1033003,Enzo Liberti +123086,Jamal Johnson +20848,Rumer Willis +36072,Holly Weber +49677,Julianna Kovacs +982443,Vytautas Rumšas +226177,Astrid Folstad +1223383,Christos Sapountzis +97456,Julia Howard +1314891,Mauricio Mendoza +223,Alejandro González Iñárritu +47068,Jonas Karlsson +1419744,Tomáš Bambušek +1891563,Gary Woods +1265705,Saber Abbar +49277,Bernard Nissile +133359,Burnie Burns +97837,Jaik Rosenstein +71551,Lorene Scafaria +1281232,The Staff of the Walt Disney Studio +176104,Michael Bilton +592722,Michel Laperrière +1660862,Arlene Zoellner +128226,Roberto Accornero +1188865,Edla Rothgardt +1110537,Alfred Hsing +89717,Frank Alexander +1127802,Sofia Lee +1240099,David Worth +585492,Jonas Nay +563112,Kenneth Garland +1357561,Gloria Camacho +1206436,Lukman Sardi +549054,Eleanor Herman +1615558,Elizabeth Dampier +935701,Rohan Chand +1859548,Kyle McCachen +123384,Bontarô Miake +115290,Lee Sun-kyun +1719594,Alan Aisenberg +1463697,Patrick Barnes +24883,Germaine Delbat +1065792,Evan Charles Flock +1698980,Oscar Phens +1112411,Alex Hendrickx +1793920,Henry Buchmann +994615,Alfred Allen +932189,Bria Hobgood +154829,Craig Gellis +1556158,Carl Lawrence Lagasca +1436271,Junzhu Zhang +211427,Pierre Mascolo +1173459,Alex Grimshaw +111063,Branislav Zeremski +1014985,Irina Fatkina +1354411,Daniel Gadi +168534,Allison Warnyca +76313,Daniella Monet +1862904,William J. Fisher +161297,Tony Young +19826,Joel Joan +1290967,Vadim Galygin +1511979,Petronia Paley +54228,Déborah François +191377,Bobby C. King +211085,Theo de Groot +1271000,Wilbur Shaw +1650319,James Montalvo +202622,Thomas Levin +110778,Marius Gaidon +1531620,Lauren Candela +62920,John Reardon +43024,Vincent Franklin +939398,Pana Hema Taylor +104482,James Martinez +1650253,Julie Nicholson +171567,Paul Klementowicz +1140577,Kevin Pearce +98065,Rasmus Bjerg +554133,Wes Borland +44976,Daniela Giordano +938897,Robert Rollis +1196101,Jessica Gunning +31024,Betty Thomas +134242,Deborah White +1769861,Felix Jerry Droz +1738911,Anne Fitzpatrick +61508,Erick Kastel +1610501,Elise Turner +117885,Gattlin Griffith +1292644,Mikal Evans +1404670,Amelle Iazouguen +1631708,Raphael Acloque +1002715,Marino Cenna +1839926,Nicole Pelosi +1657185,Teca Pereira +39831,Feihong Yu +48488,Heini Göbel +1865910,Katie Jackson +1603495,Angelique Joan +1393313,Adam Schneider +62866,Brittney Irvin +1205869,Jamie Norwood +1419586,Marie Ruchat +1793180,Darnell James +1722985,Flora Wildes +932458,Lina Basquette +1513565,Jake Street +1200895,Waymond Lee +1501942,Steeve Léonard +1503902,Nicholas Gerard-Martin +95673,Mark Lung +94381,Geoffrey Giuliano +1494056,J.C. Cuadrado +1583091,Karolina Staniec +1693770,Barbara Lerici +173952,Blake Adams +29249,Paul Askonas +1502946,Diana Chiritescu +1859514,Toussaint Martinetti +1177637,Chelsee Livingston +1535062,Alessandro Guerrera +38705,Marquise Brown +109142,Tina Aumont +46312,Eva-Maria Kurz +1353141,Kyôko Maya +154548,Robert Madrid +1375335,Lauren K. Montgomery +1717348,Isabella Moreira +1335112,Lucas Leguizamo +109223,Carl Don +543583,Bob Messini +237806,Giuseppe Antignati +78412,Peter Keleghan +1872417,Clyde Boraine +57013,Torkel Petersson +130873,Jonathan Kashanian +1444646,Stanislav Satko +273022,Tatyana Kravchenko +1031783,Anthony McKinley +202734,Lenora Crichlow +133788,Elena Verdugo +1444468,Lucia Vráblicová +63797,Alistair Abell +1512122,Paris Berelc +80717,Yoshito Yamaji +1357015,Hansi Wendler +1058071,Bastián Bodenhöfer +1254113,Hikaru Hanada +173146,Richard Partlow +1536689,Ed Newton +1377670,Glenn Fleshler +1181527,Stefania Rivi +1572354,Lee Jung-eun +106593,Aleksandra Ursuliak +1191301,Ludivine Geschworner +128442,Domiziana Cardinali +1016043,Lamberto Picasso +1706341,Farhan Qureshi +130400,Tülin Özen +1718160,Bryan Blasingame +1045634,Bridget Turner +1477314,Tristan James Butler +40994,Ginette Pigeon +1519561,Tony Spinosa +1431483,Raj Kala +1690563,Luke Hardeman +1289475,Jerry Marlowe +1296950,Kim Do-Young +1504592,Carolyn Guillet +1280591,Vicky Mesmin +16486,Kevin King Templeton +61697,Sung Kang +12776,Senta Berger +51988,Lizzy Caplan +953445,Lara Mulcahy +1622084,Tony Espinosa +78006,Roger Cudney +1145895,Ruben Ametllé +66044,Haluk Piyes +1846377,Igor Krasavin +71033,Mark Humphrey +1692089,Eder Salcedo +1864086,Somasekharan Nair +1598645,Pedro Luis Lozano +120924,Andrew Krakat +1163789,Sophia Taylor Ali +19148,Brian Austin Green +99000,Kevin Yarbrough +1523211,Carol Herman +1217003,Dana Barron +13560,Guy Oliver +1298053,Thanasis Tzeneralis +102749,Kimberley Warnat +1581558,Jessie Underhill +553083,Kazuya Kosaka +156453,Brandon Maggart +96921,Cole Williams +137561,Mirtel Pohla +233302,George Allen +1489795,Susanne Angulo +584543,Lilah Fitzgerald +164830,Clarke Gordon +1798995,Don Burns +144378,Julie Carter +76996,Jonathan Bennett +968176,Katarzyna Herman +36934,Maria Teresa Albani +94147,Gillian Shure +105584,Bret McKenzie +1750429,Jesse Lewis IV +1508176,Judith Chaffee +35670,Charles Regnier +1768828,Philippe Josserand +1524909,Carlo Tarmati +559207,Synnøve Macody Lund +14015,Noel Willman +45060,Leticia Dolera +1650256,James Hepworth +42226,Regina Russell Banali +1398062,Hayden Fong +137028,Denden +94226,Chris Salvatore +1707836,Manuel Helbling +35610,Jean-Marc Thibault +1769122,Odelia Moreh-Matallon +137850,Ülle Kaljuste +1658650,Erica Field +1462980,Casey Neistat +1761830,Harri Rantanen +1605120,Eric Michael Carney +1028522,Satoshi Kobayashi +230662,Michal Gucík +110965,Branimir Brstina +1255149,Sonia Sui +143389,Nicolas Giraud +93647,Soledad Villamil +79763,Taisto Reimaluoto +52329,Ezio Greggio +145543,Damon Lipari +1184167,Song Wenjia +1426411,Ruben Arroyo +73756,Teresa Madruga +1630330,Clifford Jones +1150167,Marco Zangardi +1438239,Nikolai Kuchinsky +1270936,Don Coleman +1306684,Jaouher Brahim Ben Fredj +1298394,Éric Laprise +233466,Teresa Berganza +1413785,Isla Zorkovic +11281,Sinéad Cusack +569210,Bethany Brown +131006,Sam Trammell +47883,Will MacMillan +1409984,Jeffrey Grover +1387957,Jingyang Ni +64373,Elyse Dinh +56843,Valerio Mastandrea +1163660,Charles Aknin +1268090,Angela Ray Clark +228100,Priya Suandokemai +33294,K.C. Clyde +1503834,Adrian Burks +1304335,Jimmy Tatro +1849116,Rachel Dabou +1452864,Koby Azarly +202572,Lykke Sand Michelsen +1207032,Gwyn Drischell +1674837,Patrice Quarteron +14813,Marina Vlady +1324398,William 'Big Sleeps' Stewart +1028524,Shigeru Nakano +100648,Robert Lipton +222230,Olavi Ahonen +1115096,Bajrangi +932926,Inés Estévez +1190179,Leonid Bykov +237170,Tiger Charlie Gerhardt +1009079,Mariya Shalayeva +1519568,Steven Petrillo +1191713,Cyril Drozda +1439560,Natalia Kiriya +37206,Boyd Kestner +186620,Rafael Icardo +1764646,Michael Bernstein +103160,Eva Grimaldi +1841532,Amy Trynoski +75131,Nash Edgerton +1079939,Beatrix Brunschko +1862610,José Antônio Gomes +217777,Steve Alterman +45034,Gloria Milland +1410479,Malikha Mallette +209969,Jane Barnes +58040,Bruce Malmuth +1766049,Jane Birch +572362,Jack Orend +126284,Kazuhiko Kishino +1496182,Francesca Nerozzi +1185530,Eddie Stacey +1745603,Jim Hubbard +43297,Elizabeth Thai +1170727,Norman Trevor +1180704,Katy Stoll +1102425,David Torok +101220,Keir Cutler +1381726,Chen Tang +1195079,Francine Everett +1480809,Sylvie Degryse +176188,Flaminia Cinque +130303,Fábio Assunção +1156310,Jacques Villeneuve +236581,Alexandra King +529302,Chook Sibtain +1478021,Camilla Jackson +45346,Ted Prior +7013,Mark Camacho +1547996,Ambrit Millhouse +941240,James P. Burtis +1332941,Mairtin O'Carrigan +1436115,Chien Sheng +1581555,Kenneth Lee +42934,Véronique Jannot +1112452,Josh Christman +930731,Suraj Venjaramoodu +543789,Rhondeen Pitts +1277230,Barbara Fritchie +56098,Michael Jibson +1371735,Nicole Colchat +168776,Alex House +1228437,Nick Hogan +180997,Nazneen Contractor +119295,Tarik Filipović +1720606,Julia Valentine Larson +1172454,Brandon Anthony +19884,Daniela Ziegler +1478076,Dominik Nowak +1302538,Panama Red +1326033,Carole Péloquin +116446,William Brent +1090167,Anthony M. Carr +1706743,Darcy Hinds +1381663,Allie O'Neill +56467,Paco Sagárzazu +97282,Joseph Vitale +1519550,Barry Cavanagh +1670350,Marlee Jepson +1718136,Brian Tanke +1577151,Kelley Lewallen +1283052,Ishmael Antonio +1795311,Greta Carew-Johns +115728,Ryanne Duzich +72779,Gianfelice Imparato +231995,Serena Autieri +1044077,Leonardo Daniel +87582,Wakana Yamazaki +938203,Fernando Alonso +38505,Philippe Babin +58530,Mae Questel +1482620,Juan Miguel Martínez +15306,Peter Abrams +1252850,Ron Mustafaa +1164460,Laetitia Dosch +1054437,Nora Cullen +1020746,Richard Desjardins +1886284,Ria Lopez +120664,Sebastian Street +1034685,Cosmina Stratan +1156367,Ya'ackov Ben-Sira +62282,Mónica Huarte +1818009,Naz Jafri +1083260,Tristan Risk +1878928,Noa Manor +543843,Hervé Duhamel +1241722,Isamu Tanonaka +39588,Hussi Kutlucan +1583689,Hans Beerbaum +1450374,Jacky Cai +1212737,Susan Silo +198750,Pierre Leblanc +1140498,Antonio Monselesan +1494709,Armando Traverso +549061,Hank Stuhmer +1160576,Chik King-Man +37366,Linda Blair +109010,Jesse Welles +935266,Tammy Klein +1044009,Peter Haddon +129967,Irma Capece Minutolo +1248704,Remy Bonjasky +1224596,Felicia Pearson +1445111,German Romero +140168,Ronald Radd +584682,Murali Mohan +1390504,Allan Groves +127858,Eryk Lubos +1398213,Charles Nguyen +30976,Jana Lund +1831379,Martin Bishop +1394457,Kristopher Bos +1293072,Teresa Gioia +65799,Pam Hyatt +1502431,Madeleine Worrall +34963,Stefani Jackenthal +523952,Dustin Ybarra +150018,Vasily Shevtsov +1179584,Victor Cox +152804,J. Marvin Campbell +128445,Edo Monaci-Toschi +1298642,Christian Hjejle +1357165,Mohamed Nosair +1440455,Sebastian +1886316,Will Brooks +145089,Maurice Antoni +545011,Kalairani +1212732,Gerry Cowper +112393,​Ljubiša Samardžić +933079,Charles Kissinger +125724,Aparna Sen +1561286,Aaron Marshall +176583,Ashley Wolfe +1225546,Ephraim Ellis +1144865,Andre Arend van de Noord +52481,Clint Jordan +1771608,Ron Stafford +1583090,Michal Mikolajczak +4387,François Ozon +103055,Luciano Spadoni +1834119,Sabine Lorenz +571497,Holger Boland +1378238,Blaine Gibson +559552,Irene Brügger +933813,Iliana Zabeth +1461676,José Nájera +86278,Danny Cosmo +75074,Paul Chahidi +938784,Michail Elenov +73035,Paul Johansson +573794,Bae Seong-woo +1276996,Simone Telecchi +1174100,Vera Ulik +150734,Aleksey Panin +1186919,Koh Jia Ler +1368436,Glenn Maynard +1178781,Carol Jean Wells +1393310,L.J. Benet +1404416,Svenja Görger +1357683,Darius Udrys +82422,Koen De Graeve +1888498,Celine Schmitt +190194,Jorge Gil +1156197,Park Shin-hye +92582,Alley Mills +1024312,Jody Thompson +61997,Karin Anna Cheung +584581,Anat Topol +1563381,Brian Nickels +1413778,Lucy Hong +124891,Béla Fleck +983836,Enrique Victoria +560235,Imre Olvasztó +1496177,Massimo Cagnina +1543459,Lea Marlen Woitack +59693,Liza Colón-Zayas +1281937,Valter Skarsgård +1071373,Sue Burman +1111992,Claude Janna +1467544,Byron Jenkins +994403,Massimo Zeppieri +1053109,Hilda Doolittle +1337805,Sibylla Deen +1441810,Rune Lund Eggen +1093707,Benjamin Blankenship +550403,Pokwang +1579260,Inga Maskarina +1353644,John Shrimpton +1335497,Robert Malone +1478053,Lee Wakefield +1179997,Brian D. Johnson +1348457,Andrew Polk +168752,Robert Clark +135692,Mia Skäringer +1886692,Willi Pferdekamp +148147,Jack King +1528969,Jessica Boyde +1215426,Mary Charlotte Wilcox +1605380,Eiichi Takamura +169075,Carrie Kei Heim +992366,Maia Mitchell +1293282,Khawlah Hag-Debsy +1491962,George Dobbs +86510,Amjad Khan +1298267,Gray Hawks +941263,José Dupeyrón +140653,Tomasz Karolak +1229940,Natalia Livingston +1872245,Roman Neri +1086578,Kate Vasquez-Eberhardt +117315,Ruthie Henshall +25773,Christine Auten +1161083,Dániel Hegedüs +24657,Franco Zeffirelli +1039669,Ilaria Spada +1650220,Victoria Chavatel Jimison +111857,Hannah Bax +1178302,J. Blakemore +553939,Naoto Ogata +236820,Yevgeni Tashkov +128475,Paolo Verdone +1054038,Sarah Maestri +1259880,Lior Raz +1169488,Marc Briones +104057,Christine Healy +1272976,Jessica Jean Wilson +112012,Adele St. Mauer +1886001,Matthew Smallwood +1023455,Dennis Ambriz +1317697,Anja Laїs +35215,Valentine Monnier +1416570,Nozomu Iwao +5741,Matt Groening +271352,Mary Jo Deschanel +84815,Josh Cooke +92841,Allison Barron +1385281,Karen Snyman +101395,Brian Kelly +1286625,Billy Ward +1722995,Kinga Piersiak +1894268,Agniello Costabile +1112004,Isabel Branco +1727864,Nancy Lea Owen +1296101,Lee Moon-Su +239650,Yumeko Aizome +1364783,Ragni Grönblom +53998,Nora-Jane Noone +1837860,Kimberly McKillip +553499,Hans-Jürgen Schatz +1175189,Paulo Campos +1211934,Nigel Anthony +77069,Lenny Kravitz +1406107,Haru +939007,Debra Tate +1225740,Richard Morant +944326,Henry Penzi +1704669,Matthew Bernard +1795140,Kenneth Lucas +1009966,Anna Appel +169198,Timothy Brennen +1001729,Alvaro Orlando +955362,Gandolph St. Clair +6298,Ylva Lööf +1232217,Danielle Schneider +592395,Josephine Dunn +202609,Berrit Kvorning +236020,Vincent Winter +1605815,Laina Cuguen +520615,Rebecca Da Costa +113726,Argentina Brunetti +35816,Jayshree T. +1339629,Stephanie Hyam +235169,Crispin Bonham-Carter +1436297,Guangwen Bao +64545,Raphaël Dufour +210181,Devon Weigel +1358468,David Shih +153578,Peggy Rea +76113,Walter Day +931876,Chryssie Whitehead +1279082,Rodrigo Fernandez- Stoll +1670750,Nathaniel Augustson +83266,Cezary Pazura +1013165,Jessika Van +1377874,Claire Stollery +1312687,Danica Moors +1285382,Julia Denton +1307664,Everette Scott Ortiz +120823,John Henry Allen +1488235,Ricardia Bramley +14078,Nargis +96464,Adam Morgan +592915,Antoni Majak +1734564,Michelle Jubilee Gonzalez +1521014,Don Barnhart Jr. +48121,Brigitte Kren +220442,Hayley McElhinney +1637680,Blanka Szilasi +572291,Earl van Es +1244897,Claudia-Sofie Jelinek +1308262,George Wang +1309694,Alexei Dolinin +95379,James Hairston +122876,Laura Bertram +1511989,Jason B. Schmidt +1118292,Lyudmila Marchenko +1455813,Ben VanderMey +550095,Sarah Stouffer +61562,Jennifer Sipes +168475,Matt Bellefleur +1620091,Maurice Domingo +545817,Vsevolod Safonov +116259,Jobyna Howland +1232910,Chang Mi-hee +112276,Kazuki Yao +1112406,Kei Majima +1833948,Anne Mercier +1283943,Joe Cipriano +46925,Cathleen Kaelyn +1024252,Chuck Sacci +1285160,Walter Edwin +1551919,Jack Boyle Jr. +231050,Lehel Kovács +1313136,Jason Welden +1839909,Rodrigo Arruda +85572,Yoshihiro Akiyama +1420037,Sa Au +209781,Roman Wilhelmi +585888,Kean Cipriano +1902086,Oliver Albin +119280,Sean Carrigan +91284,Brandon Tyra +1901413,William H Worden +1337684,Andrea Lamár +1415426,Chad Martinez +79270,Annika Hallin +239998,Maria Bethke +992913,Sammy Cohen +1031788,Chandra Mason +1685978,Alena Savastova +1514386,Laura McKenzie +1879677,Bill Hall +428406,Börje Mellvig +1644519,Majida Hussein +1640660,Betty Laure +81333,Ben Oxenbould +44484,Joseph Offenbach +103856,Christina Veronica +1579242,Peter Roue +1018953,Ellen Dunning +932932,Vladimir Baranov +1879765,Osvaldo Brigante +234022,Atmen Kelif +113563,Rhys Coiro +98215,Matt Gerald +189367,Glyn Houston +1380107,Michael J. Burton +1159958,Robert Seiter +1216579,Samantha Robinson +1338903,Jenna Lind +91398,Cecily Gambrell +82106,Jonatan Spang +584338,Tom Morton +87679,Anna Falchi +1136030,Paolo Maria Veronica +1838468,C.C. Smiff +1769865,Aaron Godfred +125212,José Nieto +110863,Kumari Naaz +142295,Alexander Kalugin +438290,Christophe Sermet +77436,Pedro Hebenstreit +90072,Smiley Burnette +226181,Ida Herud +109549,Sridevi Kapoor +156648,Joel de la Fuente +63366,Ruth Lawlor +76379,Norman Wisdom +25082,Farida Ouchani +1452740,The Luv Johnsons +1272222,Petra Salsjo +1081875,Joe Cole +1046863, Lee Hee-joon +1421737,Hasan Kaçan +123532,Rick Gomez +588695,Katie O’Grady +1272964,Michael Adrienne O'Hagan +1764128,Brian Meredith +932041,Jérémie Loiseau +1216369,Noel Dyson +1303584,Paavo Jännes +970534,Ryan Ahern +74094,Sam Harris +129703,Mitsuki Oishi +122762,Ngapaki Emery +1623409,Zhao Cheng-Shun +43170,Thomas Huber +154349,Robert Thompson +1004238,Torrey Dickinson +51890,Aleksandar Gavrić +1179651,Lin-Manuel Miranda +1562102,Julian Moore Crook +85523,Vivek +556086,Dena Kaplan +1138501,Grzegorz Warchol +1015667,Randy Austin +1138711,Bolesław Kamiński +1266313,Royce Pierreson +1305862,Franziska Oehme +1221134,Jennifer Ferrin +928015,Isak Cederberg +35382,Matthias Brandt +138551,Jiří Kodet +1610929,Tony Visconti +1110613,Wayne Burton +198980,Linda Gillen +1853352,Dane Johnson +1704439,Pola Chapelle +1427313,Raphi Henly +117889,Brynn Massey +113613,Catalina Denis +1353825,Alyssa Lynch +1445198,Esben Just +124515,Norman Eshley +51484,Greg Timmermans +124795,Chris Solari +197285,Bobby Gaylor +1279814,Josh Wiggins +112901,Hugo Silva +7491,John Cale +1315534,Adeline D'Hermy +225897,Christian de la Cortina +78334,Rebekah Staton +1011142,Rona-Lee Shim'on +1078408,Kasia Olczac +1235749,Brent Sheppard +1042839,Karin Lithman +1221057,John Weldon +1171527,Alexander Mercury +1707889,Emily Thomson +1553351,Noa Bernaoui Savreux +35918,Jessica Forde +1637555,Adam Ray +1091772,Stacey Turner +1203442,Dirk Talága +107880,Marek Frackowiak +135993,Frank Schorpion +50656,Yûsuke Kawazu +1146142,Tom Dever +230727,Camilla Overbye Roos +1020699,Guillermo Iván +78746,Anne Swift +1102165,Junko Matsui +87579,Natalie Krill +71514,Christoph Bach +1182596,Wahab Sheikh +235729,Donald Stuart +206269,Jordan Potter +75332,Miko C. Brando +980125,Mariya Andreeva +1640659,Néné Kaò +100371,Claire Keim +61862,Michael McCoy +1069667,George Adrian +1647290,Susan Tordoff +1330575,Rimante Valiukaite +557841,James Byron +1379274,Melanie Freeman +1228245,Eric Richard +1865131,Agnese Ricchi +1494834,Tae In-ho +932340,Damon Schoeffler +1503862,Vladimir Troitsky +1718451,Lisa Ann Smith +1082634,Rosa Katô +1476892,Anana Rydvald +1363086,Franz Drameh +77078,Malcolm David Kelley +64188,Damon Albarn +1049288,Anita Mančić +1411198,Phil Austin +118751,Tommy Yuen +1080768,Ondřej Brousek +1103625,Chris Jai Alex +1842178,Eric Wasserman +1020139,Radu Banzaru +565309,Mariya Babanova +1205934,Dan Mallinger +112604,Steven Yaffee +568400,Regiane Alves +236090,Isao Natsuyagi +1149167,Gabriel Santoyo +7276,Anne Consigny +1313508,Steffi DiDomenicantonio +452696,Charlie Carver +86365,Mehmood +1439927,Jacilyn Mitchell +1554221,Karan David +1734177,Vince Roxburgh +234621,Alexander Bracq +1406778,Viktor Ivanov +1478966,Leone Le Doux +1709370,Bari Suber +1880544,Valentina Stella +237171,Prakhar Jain +1427289,Pascal Zullino +933693,Stan Jones +40260,Otar Iosseliani +73549,Kjersti Holmen +56694,Donna Mitchell +166141,Chris Wallace +1661206,Dilip Bose +1699481,Max Moritt +1072012,Masayoshi Otsuka +1808631,Stephanie Corbett +589091,Paul E. Richards +121447,Nicolau Breyner +1780266,Morgana Hills +120799,Lois Austin +50827,Marisa Belli +1409657,Trish Mullin +7005,Mary Walsh +1367228,Nobuhiko Otani +931290,Ali Nassirian +95441,Alicia Cabrera +1082985,Ruben Garcia +1090741,Maureen Allisse +1517833,Andre Pushkin +1320424,Jay Anstey +1379944,Vander McLeod +57770,Arlin Miller +118643,Falk Hentschel +1534545,Wade Kelley +1518349,Benjamin Engell +88171,Teresa Graves +1337365,Kristo Viiding +589742,Yuriy Sarantsev +1148521,Nadja Zwanziger +64451,Lynnanne Zager +41527,Remo Girone +73093,Nis Bank-Mikkelsen +1285657,Hana Matsumoto +1102256,Max Martell +228106,Tsang Siu-Yin +224100,Rick Ross +989443,Rhett Lynch +1821494,Noell Jellison +1216875,Paul Sparer +72560,Carlos Sotto Mayor +40122,John Evans +87263,Edgar Flores +99692,廖凡 +1127752,Yaniv Segal +1398196,Marc Antoine Millette +1496062,Barry Bishop +1191058,Peter Lai Bei-Dak +1142894,Roberto Calabrese +132182,Delphine Chuillot +1160291,Christoph Süß +1361929,Tom Drury +560192,Yoshizumi Ishihara +933544,David Gallegos +1394356,Olia Klein +1440060,Jason Sims-Prewitt +1523983,Tony Brownrigg +1133295,Jeremy Ambler +1466630,Eric Berris +60286,Ralph Garman +1839914,Victor Gorgulho +1465001,Carine Bouquillon +1869474,Kristine Louisa +237336,Lucio Dalla +51736,Cormac McCarthy +1205886,Kurt Deville +102324,Gloria Henry +1090547,John C. Rice +1423672,Dan Gill +1512451,Shola Adewusi +94786,David Argue +498130,Sisse Reingaard +148877,Theresa Maxwell Conover +1280677,Joop Kasteel +142389,Charlie Rowe +1760382,Rosaria della Femmina +1614471,Sam Upton +103608,Magda Konopka +62296,Axel Neumann +1784280,Marián Kuruc +125167,Mindy Kaling +95384,Nikka Graff Lanzarone +1294968,Daniela Dib +95129,Margaret Nolan +1194990,Veronica Diaz-Carranza +939684,Ralph Cooper +1273953,Luna Martín +1674844,Kit Ying Lam +105494,Sophie Stanton +82453,Yannick van de Velde +1335340,Am Park +180928,Jennifer Hill +84300,Chris Lowell +1033671,Corinne Masiero +1557143,Victoria Diamond +128480,Youichi Nukumizu +1245663,Ryo Naitou +1439658,Erik Hovby Jørgensen +1224238,Aimee Carrero +1487395,Louise Myers +985548,JoJo Adams +200573,Ray Boyle +1767207,Dayo Abanikanda +1053614,Morgan Snyder +89885,Quinn Lord +1278131,Paul Kennington +1207360,Tomomi Morimoto +93453,Margrit Rainer +1170304,Lucienne Deschamps +213468,Mantarô Ushio +479656,Kathryn McCormick +1490448,Matthew Atkinson +82148,Rachel Morton +568694,Christina Zilber +133950,Matthew Tompkins +567574,Cauã Reymond +148767,Florence Gill +1821541,Eric Butler +95398,Aaron Lemke +122913,Paul Nicholas +1394469,Dougal Walker +1536926,Dennis Nicomede +1436888,Weronika Książkiewicz +1526636,Joe Wilkinson +1718512,Cameron Worthen +549526,Thommy Berggren +40024,Settar Tanriogen +60187,Anthony Katagas +1605197,Gennaro Guazzo +86024,Veerendra Saxena +1650320,David Loper +133498,Carol MacReady +141703,Rupini +107878,Maciej Czapski +228077,Mami Yamasaki +122498,Varun Badola +477741,Lauren Fain +148959,Peter Ho +37421,James Naughton +77885,Blayne Weaver +1272952,Ron Caldwell +140013,Santiago Mallo +1517095,Aniket Chouhan +210355,Brea Grant +1450110,Wallace Gregory +1402307,Liam Mower +1096468,Myeongsin Kim +1118150,Gerald McQuirter +1822089,Asad Ismatov +1343690,Bryce McLaughlin +1004846,Leo de Jong +1024359,Andrés Mejuto +1784681,Jennifer Thompson +562177,Radhika Sarathkumar +1775357,Felipe Pizarro Sáenz De Urtury +1610317,Krizia Bajos +1523000,Anastacio Cruz +126239,Scott Watson +1073539,Nadja Engelbrecht +1143742,Mimmo Mancini +1193151,"Mike ""Killer Mike"" Render" +1361991,Anandhi +91353,Ruben van der Meer +1797597,Bob Lipka +1266233,Rusty Rogers +1356629,Milton Rodrigues +209537,Graham Abbey +1348163,Mario D'Leon +1082352,Kasi Scarbrough Corley +1837167,Katelyn McKerracher +1764134,Sonny Sullivan +82874,Haruko Sagara +1161585,Duncan Sarkies +1599253,Oleg Mirochnikov +1549475,Alicia Dhanifu +1514178,Sally Messham +1209369,Gregory Brossard +1398207,Lawrence Devera +1573611,Aaron Trainor +1349746,Yiannis Morgan +49815,Silas Weir Mitchell +1180068,Dee Coppola +1698116,Éric Théobald +970236,Dean Francis +1893944,Brett Allen +1371541,Benjamin Rigby +1109318,Milan Dragisic +1225873,Connor Gibbs +148629,Anna Norberg +577394,Park Hyun-young +31991,Gabriele Tinti +141605,Olympe Bradna +1110868,Shi Yang +106777,Advah Soudack +1239390,Michael Polley +1501946,Pierre Sigouin +1172083,Pooja Gupta +1298489,Megan Montaner +1753501,Erin Pizzey +99096,Brandon Slagle +79608,Hélène Bourgeois Leclerc +11978,Jesús García +1503832,Paul Hampshire +63359,Cathy Belton +1039342,Paul Amadi +1121458,Sante Scaletta +543091,Marie-José Nat +208294,Daisy Betts +94765,Diane Brewster +1378397,Francesca Bonacorsa +1763905,Thomas Torrey +1363744,Melia Renee +1065777,Shraddha Das +1797946,Gül Yalaz +1099827,Richard Mueck +1147081,Hassan El Sayed +145248,Chris Pang +131740,Matt Lagan +940455,Sorrell Brooke +1467538,Vincent Messina +33645,Jacques Balutin +126448,Stefano Masciolini +32031,Stephen Bogaert +572314,Bunny Wailer +106350,Giuseppe Cederna +1117078,Sarah Killion +541912,Charles Cullum +85500,Sab Shimono +1118347,Ken Holmes +94501,Brent Chalem +1166919,Augusto Victa +955272,María Rojo +68330,Ottaviano Dell'Acqua +140299,Emi Shindo +1902444,Guga Coelho +1163187,Lam Yee-Lok +1438682,Bob Walker +944584,Jane Spidell +1890677,Thiago Ruffoni +34958,Sally Berg +1417110,Lynn Monteil +113936,Joanne Nail +1696149,Dallas Edwards +161793,Robert Burr +158627,Richard Stroh +1045435,Srdjan Timarov +1257573,Mark Schardan +29933,Deneen Tyler +1842180,Jennifer Lindgren +1207361,Cheryl Diabo +1097941,Conor Leslie +1388924,Jamie Swayer +1542286,Findlay Adams +21412,Amy Locane +64147,Peter Macdissi +1885529,Ivano Barchiesi +128163,Clara T. Bracy +1862903,Wanda Dittman +1335256,Mike Kannon +1127790,Brian Hollan +1116422,Adam Petroski +1131215,Sadie Katz +933705,Bojan Westin +1238865,Burçin Terzioğlu +117489,Christine Eads +1831163,Beate Gärtner +103667,Paulo César Peréio +939009,Philip Vannatter +1165641,Anke Frederick +7800,Deirdre Bowen +1536415,Richard Starzak +1764161,Olympia Miccio +566643,Merritt Holloway +1298900,Rio Mangini +232085,Lexy Fridell +572283,José Way +1692962,Fabio Goulart +1248728,John Kenneth Muir +114299,Ryohei Kimura +108719,Anna Sten +131722,Ciara +1666113,Aram Ghasemy +40550,Parker Stevenson +1210338,Matti Kuortti +563908,Niels Weyde +1393531,Carly Street +1891548,Noah Isakson +583844,Kasia Kowalczyk +1066329,Andy Spencer +1331652,Allison Tolman +236696,Terry Notary +1862603,Marco Paulo de Freitas +1176986,Евгений Стычкин +1599266,Noah Saavedra +101591,Charles Fawcett +78588,Perez Hilton +1249932,René Mioch +276094,Nina Urgant +1735562,Karina Florez +154584,Bill Wiley +65744,Harris Laskawy +180318,Gloria Mestre +1215021,Cullen Moss +589676,Dorothy Shupenes +64449,Holly Dorff +1353638,Stephen Anderton +81187,Jess Barker +1455078,Ditte Hansen +574106,David Bosnak +166549,Robert Caso +1090197,Aleksandr Trofimov +238093,Bibiane Zeller +45857,Martin Lindow +1782592,Dale Tanguay +1593235,Levi Eshkol +27122,Matthew Walker +55915,Gigio Alberti +592393,Mackenzie Ward +932751,Despo Diamantidou +1599261,Eiji Mihara +1120638,Veronica Kedar +1215722,T'Keyah Crystal Keymáh +15580,Jodie Rimmer +1082851,Gregory J. Markopoulos +1295924,Vijay Chavan +1287508,Carlo Zoratti +199147,Catherine Battistone +154689,Bradley James +1713824,Angus Cook +1174011,Edoardo Toniolo +1417248,Patrick Daniel +1862498,Claudia Poggiani +1221121,Dennis Keiffer +1424216,Alexis Sykes +117556,Julian Clary +32562,Roberto Citran +137167,Adam Hicks +1599258,Sadao Ueda +1544770,Alex Finlayson +1157088,Briana Marin +457386,Arian Moayed +1352950,Russell Edge +584496,Abhirami +105605,Leo Fong +1369015,Anthony Farrelly +1174703,Wong Wing-Sang +1593369,Christopher Clausi +42181,Sam Laws +1426412,Joan Pico +932400,Milton Sills +99135,Sean Morelli +1504828,Hartmut Engler +84073,Eben Young +229226,Minoru Takada +1108286,Maria Tedeschi +1167,Ángel Salazar +1333898,Alberto Laiseca +1035394,Tamayo +1496719,Zeb Newman +1037942,Tamás Cseh +66658,Jae Head +1230996,Christopher Bolton +107261,Edwin Brown +222799,Václav Neužil ml. +101330,Catriona MacColl +122757,Te Aho Aho Eketone-Whitu +58981,Lashandra Burrows +110912,Amy Kerr +1643336,Gilles Thompson +1605398,Violet Hill +1352329,Daniel Fredrick +150999,William Tucker +1169894,Shlomi Ben Attar +97480,Mamie Van Doren +1539091,Daniel Di Giovanni +1076809,Luka Peroš +1017280,Berte Rommetveit +562587,Tom Ljungman +1666442,Kay Skinner +1584567,Sophie Cotton +1177621,Raven Adamson +1842212,Taylor Nelms +1361564,John Michael Burdon +1040469,Kim Matula +152592,Damu King +1208343,Brandon Wickens +1687927,Oliver Leach +1678983,Mario Casoria +1125746,Isabelle Pia +1381691,Kane Mason +1326242,Valen Ahlo +1130127,Viorica Geantă-Chelbea +1734959,Rosa Molloy +48239,Nicole Heesters +1126366,Alice Joyce +565637,Raymond Cloutier +175583,Charlene Amoia +147734,Samuli Vauramo +1522144,Zach McLain +1755614,Cuco Usín +1756366,Camille Ross +1016177,Miranda Rivers +1266840,Guru Somasundharam +1544540,Tyra Holmen +146936,Srihari +107891,Stefan Szmidt +1154732,Anna Gras +165364,Regina Baff +1875586,Valérie Gagnon Laniel +35476,Brittany Daniel +1066132,Annemarie Prins +1414723,Gilad Kahana +168618,James Carroll +1201029,Reiko Minakami +1041604,Stefanie Reinsperger +164285,Jason Jurman +1544394,Aja Frary +1130948,Myrtle Stedman +1050324,Yu Shao-Qun +1472898,Lucas Saiter +76538,Bryan Krasner +1355834,Débora Ingrid +1377479,Sin Il-Ryong +1629876,Inke Tarkas +112943,Avalon Barrie +51840,Francesca Romana Coluzzi +1754141,Frenchi Firecracker +7806,Stephan Szasz +110078,Geoffrey Hutchings +1371070,Nick Hentsch +93087,David Gebroe +149505,Scott Hamm +122654,Hisao Egawa +63508,Chris Clark +1755191,Thomas van Montfort +1218928,Erica Cerra +205560,Kevin O'Grady +1362858,Jacob Loeb +1294262,Andrew Whitehead +1758884,Donald John Hewitt +1588593,Dan Marshall +1258541,Shane Smith +935272,S. Lue McWilliams +121121,Mary Bovard +52655,Dieter Hildebrandt +1055230,Raffey Cassidy +82536,Thomas Hartmann +30752,Jayson Spence +929044,Victoria Witemburg +1476855,Peter Gislund +1847966,Devine Calloway +556745,Salvatore Puntillo +1692062,Ray Adash +1647325,Shayla Chanadet +129338,Silvia Annichiarico +590133,Sergey Puskepalis +114924,Kristopher Shepard +160349,Doran Clark +59214,Cas Anvar +98789,Nando Tamberlani +186703,Adolfo Torrado +1134979,Wang Han-Chen +1653241,Daniel Campomenosi +1190655,Tamsin Carroll +1529373,Sam McArdle +233276,Josh Bolt +125726,Surekha Sikri +1567589,John Atwood +84261,Moran Atias +132261,Claudio Biava +125931,Sameer Dharmadhikari +170573,Bobby Clark +1561254,Manuel Hafner +1689910,Jo Phillips +1451506,Kalani Queypo +1124925,Juergen Maurer +155965,Amy Parrish +148839,Clarence G. Badger +80414,Maureen McGovern +1485959,Noureddine Aberdine +180110,Noah Bastian +581686,Bella Esperance +1690573,Jessi Goei +37734,Claus Biederstaedt +1021981,William Corkery +27669,Mohamed Tsouli +56600,Max Giermann +238985,Chan-Peng Chang +930821,Hilary Cruz +1193456,Andrew Bongiorno +1151392,Rosemarie Abella +211227,Leopold Witte +569975,Miro Barnjak +1660177,Lynda Topp +983700,Matthew Wiese +1152483,Ga Hoi +53766,Albert Michel Jr. +569543,Johnny Cotugno +111372,Rica Fukami +1128320,Carson Durven +101182,Joan Dixon +63313,Victoria Thaine +79008,Mona Lee Fultz +119354,Luis Molteni +1370972,Brogan Hall +49160,Andreas Kaufmann +962547,Clara Mamet +1831208,Mladen Puric +928574,Cooper Timberline +577642,Barry James +1090413,Michael Tregor +1214673,Alexis Denisof +1177603,Carlo Rizzo +1650167,Brenan Young +74367,Christopher Gaze +236194,Joman Chiang +1682683,Zhang Boyu +6254,Gustav Knuth +228516,Has Drijver +1254424,Kang Byul +96018,Robert Belushi +1371569,Alejandro de Enciso +571716,Sandayuu Dokumamushi +1652379,Christian Brunetti +1229245,Patricia Potter +1787116,Fred Aaron Blake +578849,Azat Seymetov +126968,Kristina Orbakayte +1465477,Justin Hoffmeister +1587694,Audrey Sablé +1674715,Marcus Majella +1127384,Lilli Panicalli +142595,Dorothy Cumming +103113,Paola Quattrini +1204683,Manuel Rivera +1108805,Huma Qureshi +1841529,Michael Rittenberg +550007,Ratka Radmanovic +1457604,Margaret Clunie +193935,Paul Kiernan +109503,Nicola Lambo +1247010,Chiké Okonkwo +1562098,Tarrick Benham +139299,Paulo José +84408,Samantha Pryor +1054859,Ho Nguyen +1242151,Joe Clair +1905751,Tomas Fisher +1088065,Sean O'Brien +1372740,Mitsouko +1534322,Pardoe Woodman +1067737,Paul Page +40917,Bogumił Kobiela +1085655,Jzaneen Damji +1820151,Marko Leht +1499901,Matthew Stevens +1763863,Kate Deakin +13007,Mick Fleetwood +1292552,Winta McGrath +221599,Rufus Hound +1290965,Anna Antonova +1459161,Maxie Solveig +933516,Teck Wan Ng +1362915,Chuck Lindsley +1140545,Chu Ko +1632213,Aubrey Reynolds +586953,Anna Foglietta +2970,Jocelyn Quivrin +1388918,Mathew Kaye +1691470,Ned Yousef +233523,Keisuke Horibe +1385045,Jane Mowder +1336863,Guglielmo Poggi +1030580,Javier Toca +1662629,Jeff Roth +1199192,Greg Paul +1141056,Do Ji-han +559685,Petra Nadolny +1381777,Jack Willis +210520,Graham Miller +1581036,Thanabodee Laohawanich +958540,Alec Gillis +592227,Șerban Pavlu +1170146,Noorin Sha +1888490,Eva Marianne Kraiss +47422,Lyubov Polishchuk +1683151,Ivan Jacobo +99506,Aaron Gallagher +1749829,Kina Dach'e Bullock +1071638,José Manuel Poga +1174372,Sara Carlson +1827514,Michelle Baptista +11219,Georges Chamarat +1754443,Leticia Magaña +1405873,Rômulo Medeiros +157316,Bill McLean +1200962,Sofia Leite +1458055,Art Kearns +35136,Véronique Silver +154106,Greg Eagles +1111993,Nicole Velna +1871178,Jacques Morlaine +66840,Alain Attal +1336141,Nogon Shumarov +260441,Ulla Sallert +148033,Fred Goodwins +1230868,Tiffany Haddish +1820643,Michael Harrity +16028,William Marshall +101442,Ivan Nikolaev +1859981,Marina Casali +1541645,Amanda McCauley +1459142,Izabel Pearce +223003,Brian Perry +18022,Gina McKee +1561248,Anna Sodan +1761847,Matti Fadjukov +1388529,Timothy Lyle +1436279,Mingzhe Song +1518350,Ella Solgaard +1269815,Bertram Johns +1894997,Holly Sohail +100318,James Darren +50554,Jacobo Klassen +1366610,Lisa MacFadden +584991,Andres Maimik +1125732,Steve Banner +1236553,Hayley Lochner +1056192,Magnús Ólafsson +1238461,Ariyon Bakare +90563,Michael Sopkiw +1544016,Davyd Williams +1717112,Daymond C. Roman +171795,Mary Catherine Garrison +223971,Dirk Roofthooft +1648782,Kwanlar Nyirady +1228380,Noel Callahan +1445780,Aliena Jacobs +1740398,Murat Tok +568030,Tamzin Walker +99891,Whitney Bourne +227618,Masanori Mimoto +1674158,Eleanor Stagg +1631063,Michelle Alexander +1324446,Shogen Itokazu +77040,Kira Clavell +1180371,Elena Furiase +100896,Anton Edthofer +1167734,Dillaran Martin +1759617,Lia Lam +129234,Eli Finish +1031256,Erando González +1814862,Janmarco Santiago +21176,Michel Berto +19534,Gina Lollobrigida +1596414,Maayan Eliasi +226180,Veslemøy Haslund +1219510,Ellis E. Williams +1362424,Charles Wolfe +65966,Kent Cheng +556733,Enzo Salomone +1706347,Khalid Ahmed +1324340,Iyad Hoorani +100173,Maggie Rose Fleck +90405,Kate Green +1413784,Lotte Crawford +583728,Sébastien Ricard +1720657,A.J. Danna +120490,Trisha Mortimer +6301,Mikael Rahm +1619618,Sang Ping +1496483,Vanda Vujanić +170145,Jeff Hochendoner +1121969,María Luisa Sala +1422279,Jimmie Lucas +205534,Peter Malof +1245824,Nehir Erdoğan +1287319,Ella Leyers +550005,Sabina Ajrula +33396,Sean Power +118309,Johnny Sands +209848,Abraham Amkpa +1718102,Micky Shiloah +178602,Suzanne Burden +1878439,Francesca Calò +32103,Jean Lescot +1319946,Girlie Alcantara +555533,Michael Denish +156689,Jessica Tuck +188311,Eric Ladin +1889635,Bill Logan +1030312,Justin Tinucci +160929,Jirô Tamiya +44098,Anthony Lemke +168341,Yves Bright +1331701,Albert Pla +1283565,Bernhard Thomany +1134748,Ou-Yang Sha-Fei +117173,Donte Essien +124546,John Wesley Shipp +1360630,Andrew Roux +1040467,Liz McGeever +118927,Vangelis Mourikis +1516140,Nick Cornwall +1093453,Kenji Oyama +1196879,June Christopher +65310,Kenny Ortega +557804,Gralen Bryant Banks +1769041,Paul Carpenter +240285,Yu-chen Chang +1475077,Charlie Kerr +50090,Harald Maresch +162180,Tommy Lamey +237671,Mohammad Bakri +1224681,Ivan Shaw +1860979,Eva Crawford +1492415,Lee Anne Ford +1079955,Daniel Kehlmann +141062,Sharon Lynn +1469281,Dick Stanley +1801190,Hannah Cagwin +95614,Bruce Seton +1207275,Bravita A. Threatt +1862891,Katherine Gosney +39645,Francis Blanche +93552,Mariya Semyonova +1418974,Pääru Oja +1592512,Adrianna Belan +1383382,Zoot Lynam +1503854,Herman Johansen +1560984,Stephen Rana +1102495,Brian Arya +556731,Franco Melone +95361,J.W. Wright +935007,Veriko Andjaparidze +108866,Kielo Tommila +1039527,Tyler Gillett +1201002,Neil Ryan Sese +1692091,Patrick Wait +1026947,Dascha Polanco +112601,Whitney Hoy +559584,Bénédicte Décary +1474708,JP Vanderloo +84228,Hugo Steele +1701873,Amy Blackman +240203,Luis Morris +589736,Pino Caruso +134720,Jan Werich +1869041,Matthew L. Collins +67949,Sonny Bono +1585444,Lexy Kolker +37542,Félix Rotaeta +583348,Cyrille Diabate +9088,Janet Gaynor +107884,Jerzy Karaszkiewicz +305092,Konstantin Shelestun +742536,Lyda Roberti +1386309,Lise Ross +191118,William Bookston +1523669,Georgi Zlatarev +1125452,Paulina Galinelli Hertzog +39471,Viviane Romance +108922,Suzanne Savoy +1511995,Benjamin Eakeley +155439,John Miller +120649,Stephen Wright +109432,Li Bingbing +141721,Rainer Egger +237304,Emi Wakui +1530818,Jason Buckley +91520,Michiel Huisman +1183606,Jeffrey T. Schoettlin +1281230,Truman Woodworth +77930,Elise Larnicol +1335169,William Howes +70175,Chelah Horsdal +200203,Jeff Dolan +1190485,Yorke Sherwood +58293,Alex McArthur +112994,Rudolf Ising +144975,Mercedes Colon +1261118,Hannah Sharp +1803326,Ray Shirley +137815,Piret Avila +1098660,Howie Lai +1251103,Janie Haddad Tompkins +213373,Vishka Asayesh +1895760,Jack Champion +550596,Ashley McCarthy +1121786,Odeya Rush +1810511,Damir Karakaš +224515,Alfonso Bassave +1789160,Jon Bangle +1510788,Michael Lehr +1102141,Sam Qualiana +931271,Eduardo Casanova +74577,Bitsie Tulloch +227269,Tryggve Larssen +227290,Wilfred Breistrand +71949,Bernard Hepton +24709,Roy Holder +1573819,Liu Haoran +1096494,Byron Rosales Romero +18413,Günter Kordes +225235,Florence Giorgetti +96890,Bonnie Fu +1202865,Julia Sporre +136562,Marta Lipińska +1515925,Jac. Goderie +1704670,Sage Mayer +94602,Michael Delaney +1124389,Ravi Prakash +77822,Emma Catherwood +1029105,Leena Nuotila +1450262,Annie Starke +1094813,Mario Jannilli +1222047,Takayuki Sugō +90582,Tom Frederic +982065,Vincent Leclerc +1793168,Misty Robinette +1579241,Val King +98808,Lee Marks +393518,Maria Urban +932358,Vladimir Ushakov +90778,Orianthi +124684,Sara Girolami +586526,Maris Morgan +1820214,Adam LaFaci +41978,Samantha Phillips +128464,Clizia Fornasier +84751,Kim Kang-woo +1502855,Cassie Djerf +130332,Diosa Costello +1144988,Javier Gómez +1336882,George Kotsiopoulos +1817451,Remy Teicher +104281,Greta Thyssen +1394444,Ross Langley +144236,Poncho Hodges +86827,Evelyn Brent +137844,Anastasiya Makeyeva +1696397,Maritxu Etxaniz +1855403,Alvin Crawford +1196004,Ronnie Khalil +1207248,Jahnel Curfman +12997,Richard N. Gladstein +1736502,Linda Linsley +1178900,Hsu Gou +1388687,Ryan Cummings +1144603,János Körmendi +1771562,Timothy Timms +1651392,Angus Kennedy +1042758,Paqui Montoya +1696148,Karsten Friske +1630349,Ibe Wilks +1216046,Lucy Pinder +1581915,Jocelyne Klur +32987,Sam Riley +197147,Sally Mansfield +1697813,Luis Sabate +112462,John Bregar +14980,John Philliber +1110547,Charles Emmett Mack +1442445,Kattia Thony +1820243,Omar Valdez +32312,Ugo Tognazzi +1192278,George Griffith +1325575,Santiago Mendoza Cortes +1231532,Rob Zabrecky +1211833,Liam Titcomb +1565516,Jon Snow +557004,Loredana Cannata +1333069,Frank Miranda +1884992,Maria Genero +1273766,Martin Leutgeb +5512,Andreas Schmidt +152607,Michael Margotta +1168829,Bárbara Santa-Cruz +1529185,Humberto Castro +1585217,Meghan Victoria Martin +1176509,Nicholai Konovaloff +567330,Josephine Barnes +1016551,Joe Bushkin +1196960,Alec Utgoff +66967,Andrzej Beja-Zaborski +54073,Eliasz Kuziemski +1072381,A.W. Baskcomb +74951,Alyson Court +1656878,Pasnani Chinsatapornchok +1512183,Allee Sutton Hethcoat +939225,Mark Courneyea +1049501,Dubravko Jovanović +1323453,Gary Cairns +1891332,Tijmen Govaerts +227564,Ben Safdie +1036813,Natalie Draper +1719891,Linda Silver +1204693,Marie E. Raphael +1290106,Joanna Niemirska +1157316,Susie Power +565186,Alaina Talebreza +1276772,Klaas Heufer-Umlauf +205761,Teddy Cañez +114497,Steve Conte +1427452,Ramakant Dayma +1092493,Jozef Adamovič +583498,Ya'ackov Banai +1256497,Seo Young-Joo +1388922,Craig Russell +232039,Nicole Aiken +1433495,Ilse Rande +570899,Son Tae-young +931907,Boris Smirnov +132887,Stewart Preston +26900,Walter Buschhoff +1758906,Edwige Sam +66029,Patrick Catalifo +1383088,Massimiliano Galligani +235847,Keegan Boos +37649,Bernard Crombey +1507961,Manuel Badàs +1789819,Mathieu Bouteligier +2859,Gail Cronauer +1902448,Lazuli Galvão +7353,Angélica Aragón +1693656,Emma Treyvas +109568,Nealla Gordon +1547799,Jakub Albrecht +1475531,Olesia Shewchuk +928076,Josiah Patkotak  +119361,Suzanne Clair +549333,Alexandre Steiger +50202,Heinz-Werner Kraehkamp +180132,Tara Buck +112200,Slavoj Žižek +1647401,Vesa Rantanen +120384,Rocky McKenzie +1510533,Lee In +151547,John Milford +55762,Kristina Söderbaum +1287722,Naomi Hewer +238693,Yekaterina Vulichenko +38871,Patrick Raynal +594495,Doug Stevenson +1464974,Elliot Moriarty +1046140,Ben Levin +932520,Yves Furet +1483785,Jun Fujio +89949,Lotus Long +145208,E.J. Bonilla +568583,Jim Duggan +235956,Jimmie Rodgers +1716674,Cromwell McKechnie +1657471,Jamie Lynn Concepcion +118338,Igor Sklyar +1711813,Randy Gonzalez +1856377,Oh Dae-Hwan +66664,Algerita Wynn Lewis +1608002,Christine McBurney +940003,Vernon McCalla +80708,Shigeru Amachi +46280,Antoine de Caunes +82925,Khalid Maadour +934869,Nikolette Noel +28285,Rick Giovinazzo +72777,Salvatore Ruocco +1118629,Cody Caira +29827,Selin Bademsoy +8239,Bernard Miles +1585214,Cecile Garcia +1173407,Michael Nightingale +1144911,Christos Kalavrouzos +1438319,Samantha Jade +86847,Lev Durov +1064568,Samantha Sherman +1447863,Michael Roark +1621704,Wang Yuexin +1124102,Alicia Klein +592769,Norbert Lichý +1163091,Gediminas Storpirštis +58272,Scott Innes +31506,Gerald Hiken +1286551,Kelsie Naugler +197185,Ralph Gamble +1099236,François-Marie Banier +86653,Carter Jenkins +538139,Carles Sans +1727020,Matt Baram +557216,Ali Faulkner +85004,Yu Koyanagi +1599269,Marlon Boess +105657,Richard Christy +168158,Tiiu Leek +1405518,Samira El Ouassil +76070,Mia Wasikowska +1841509,Krystian Bienkowski +1752450,Riccardo Cirilli +553146,Rosa Furman +1561603,Lucie Březovská +100927,Ricardo Merino +1579116,Samuele Pucillo +86498,Gabriel Iglesias +35172,Robert Clotworthy +76696,Sarah Power +1285380,Roger Payano +211191,Ricardo Sibelo +77795,Katherine Waterston +1112246,Sanne Wallis de Vries +65804,Margaret Ryan +1696018,Anne Marie Damman +59311,Mark Hildreth +1683862,Susie McLean +968006,Katherine McNamara +1224526,Luke Adams +1434486,Kai Fung Rieck +1492587,Oleta Adams +113926,AJ Michalka +1371827,Poppy Lee Friar +78535,Fabio De Luigi +1045279,Mona Mårtenson +1440858,Chris W. King +912632,Jella Haase +1562961,Linda Victoria Romo +1561604,Zdeněk Vesecký +80181,Travis Ferris +131498,Albert Chung +1344082,David Annen +390552,John Tams +1147599,Jane Johns +1030524,Tudor Chirila +137846,Karin Touart +70028,Stefano Mingardo +39020,Daniele Vargas +549110,Ota Sklenička +1839920,Guilherme Albertini +292158,Gianni Pulone +557586,Carol Castro +939680,Adia Kuznetzoff +102553,Tonico Pereira +39728,Jackson Bond +1754424,Harlon Miller +73286,Antoine Byrne +1253360,Pedro Pascal +1593372,Kimbrey Jones +98186,Bunny Levine +141753,Alice White +1110193,Sara Vardi +1753912,Mitchell Slaggert +1511250,Blake Sewell +1696394,Mikel Mari Eceiza +73214,Preben Kristensen +90684,Tony Burgess +40159,Keith Michell +1850850,William Boyce Blanchette +1313145,Jim Dougherty +1439314,Mark Aaron +544665,Joséphine Japy +1552818,Christopher L. Parson +153069,Jack Melford +1888396,Mehmet Yigenoglu +972306,Rebecca Griffiths +1604290,Lily Tirinnanzi +1841506,Gwen Galasso +1146052,Regina Linnanheimo +85752,Jermaine Crawford +111446,Justin Rice +935305,María Elena Marqués +1555749,Alexandra Pearson +1401546,Chelsea O'Connor +101492,Scott Speiser +86022,Yashpal Sharma +1396325,Addy Stafford +1429050,Tom Bolton +48414,Isabelle Caubère +1531611,Patricia Urbonas Clark +1445110,Rodolfo Basile +157021,Mik Scriba +145521,Nurhayat Kavrak +1138122,Lari Kangas +1861429,Kerry Constantinou +29875,Andrew Braunsberg +117199,Francis Compton +1808628,Aaron Ayhan +1221763,Sorcha Cusack +1529371,Jessica Bastick-Vines +1001536,Angelique Cabral +1841531,Susan Shoval +1269138,Graham McNamee +13516,Reinout Bussemaker +1684737,Lesley Paterson +1081,Herbert Knaup +1328185,Linds Edwards +587513,Yevgeniya Dmitriyeva +1136164,Ushio Akashi +1393661,Yorgos Souxes +231266,Xavier Depraz +1251573,Paloma Guzmán +1696013,Lulu Dahl +91271,Pascal Parmentier +232824,Ji-hye Ahn +1162331,Casey Leet +1719888,Lisa Kramer +31234,G. Larry Butler +88780,James Sheridan +1127065,Yoko Ran +1095728,Amina Pirani Maggi +4925,Heinrich Giskes +1074561,Vinny Curran +1207319,David Morgan +1294277,Amélie Grenier +78433,Ryan Hansen +237780,Séverin Blanchet +53240,Riz Ahmed +1029093,Minna Roslöf +1146958,Earl McCarthy +147747,Minka Kuustonen +1422042,Fiorella Mattheis +1522999,Jett Desalesa +1202473,Greg James +124495,Lanny Joon +1243743,Patricia Vico +33359,Buster Crabbe +25144,Ty Panitz +120132,Raul Cremona +39432,Tom Felleghy +1796447,Tim Freeman +1223187,Michael Uppendahl +1559489,Donald I. Prickett +1853875,Mark Field +82159,Mohamed Dione +970238,Kiran Deol +235610,Nelli Nevedina +1512203,Vivi Vendetta +980198,Osman Betin +1121247,Paul Hindemith +96308,William Wellman Jr. +1774303,Oscar Berthe +1269683,Lara Peake +611922,Leigh Madison +188363,Brad Wilson +102221,Rubén Ochandiano +83367,Krzysztof Soszynski +1885604,Alexandre Lopez +1196974,Vivian Reis +98887,Peewee Love +936275,Aoi Yuki +1851877,Nick Buttaro +1147823,Marie Dame +1460924,Mouzam Makkar +114459,Maureen Lahoud +22623,Arthur Brauss +1853084,Gabriele Maggio +1769769,Shelby Courtney +1074193,Micka Luna +231728,María Casanova +1615535,Sixtine Murat +1822705,Bartek Gudejko +928170,Philip Van der Byl +1747764,Carly Steel +1279250,Jonas Smulders +1754589,Rey Goyos +223970,Céline Verbeeck +95400,Julian Riano +124828,Kimberley Nixon +1735506,Lori Reese +106949,Andrea Powell +1466164,Bernard Bygott +1544912,James Corscadden +1495077,Jerry Carlton +434009,Violeta Llueca +1158356,Dru-Anne Perry +1761831,Esa Pakarinen Jr. +81665,Bart Flynn +1083443,Viviane Clarens +89811,Curt Goetz +1475591,Hassan Mutlag +125660,Andrew Scott +57340,Steven Brand +1183608,Madeline Merritt +1223451,Arthur Bridgers +19024,Javier Gutiérrez +1055289,Norman Chaney +102847,Édouard Mathé +1144870,Alan Daiches +110721,Shammi Kapoor +1862913,Bill Cook +90412,Joel Ross +6256,Josef Meinrad +1084678,Sebastián Mogordoy +935297,Ella Kosor +1372302,Lyne Clevers +188426,Gerry O'Brien +1126585,Kassia Warshawski +57101,Andreas Elsholz +1169879,Sanna-Kaisa Palo +1046665,Joshua Mikel +65802,Chris Kelly +1392952,Marcel Bridges +1521536,許淑嬪 +1849539,C. Ronald McPherson +131240,Carl Marotte +129706,Motoki Fukami +24905,Paul Guers +1423927,Mary Lou Cook +1136492,Chan Lau +928936,Georgie DeNoto +97576,Gemma Chan +1651427,Melissa Sirol +109330,Glynne Steele +1353302,Gilbert Owuor +1707844,Lydia Ahrens +1417625,Mirta Zečević +228023,Lúcio Mauro +1179451,Lady Vezina +1883811,Geoff Kelso +1310333,Susan Spano +101433,Aleksey Chadov +1537341,Jaroslava Stedra +1192632,Germaine Challaye +229237,Antoine Hubert +1471570,Pablo Sanábio +985030,Marc Hoang +1604990,Heather Ashley Chase +1436156,Yulin Gao +6255,Vilma Degischer +237052,Naga Chaitanya Akkineni +1198672,Eili Harboe +83912,Michael Granger +48702,Franziska Walser +1761845,Pentti Laakso +1090172,Tyrone Taylor +1358971,Anoja Dias Bolt +1551921,George Kilgen +118352,Tats Lau +144582,Bob Ari +1248374,Takuya Eguchi +1181263,Kevin Wayne +1808634,Kevin Dohrenwend +1059875,Kaname Endô +1665946,Steve Goh +543560,Giulio Bosetti +929132,Deidra Edwards +1274719,Samba Schutte +1521624,Gabriel Carr +1021680,Andrea Albani +35884,Andréa Parisy +180838,Brian Simpson +1545505,Kay Geiger +968742,Kaiwi Lyman +1528127,Ricky Dillon +1077357,Alan Brock +583932,Jared Cohn +128560,Travis Hammer +934967,Marie Richardsson +1175187,Maria Adélia +1415436,Bryce Romero +512266,Chatarina Larsson +1306114,Elena Milea +563378,Kelly Brewster +1093435,Kazuhiko Kato +2675,Darren Lynn Bousman +25260,Emiliano Redondo +556710,Franco Gasparri +72984,Ali Landry +564296,Tuula Väänänen +105797,Ona Munson +1784732,Jimmy Chan +1315219,Shelby Stockton +1717902,Allison Gobuzzi +128013,Greg Cromer +85533,Arnold Ridley +96563,Yoshinori Okada +122679,Taylor Miller +1719070,Wesley Elder +184951,Harry Baird +1049253,Jérôme Thibault +35634,Tina Krause +1138082,Rafał Mohr +550965,Oz Zehavi +1593041,Nick Hart +235812,Mikhail Dementyev +1371607,Alice Wegmann +646938,Veena +41798,George Lopez +1114549,María Heiðdal +282708,Martin Aliaga +1543158,Henry Youngman +2537,Sonny Chiba +1093684,Gianni Bisacca +1018660,Tanner Beard +967457,Marian Hooman +1762726,Kostas Pomonis +1247018,Jake Pratt +1525522,Pasquale Petrolo +237077,Josée Destoop +1796605,Nils Aas +27188,Carolina Rosi +223082,Armando Arriola +240169,Lily Li Li-Li +1001701,Aaron Fa'aoso +74384,Per Ragnar +103358,Raymond Largay +995561,Jerry Hagins +174792,Deion Sanders +146505,Helen Parrish +94125,Sean Fujiyoshi +1331678,Helmut Alimonta +1057898,Giorgio Piazza +1337738,Nikita Ost +1543874,Joe Fishel +544023,Mikkel Bjerrum +144957,Daniel Lundh +1098549,Dominique Catton +1499329,Lisa Marie DiGiacinto +1196604,Mike Donahue +931646,Jaime Radow +78475,Isabelle Gélinas +1677480,Sully Seagull +1825795,Verlyn Plowman +1163366,Lam Fung +1254396,Kelli Berglund +1195518,Herbert Forthuber +1141961,Tushar Dalvi +215837,Nitza Shaul +966306,Karren Karagulian +236698,Danielle Vitalis +1183782,Reed Luplau +1185418,Lilian Lane +230085,Sina Saba +1118630,Mike Dirksen +232398,Peter Kanerva +1155088,Eva Ugarte +1292449,Gregory Korostishevsky +195003,Jean-Michel Michenaud +1795082,Molly Stein +1367015,Jon Patrick Walker +1567039,Jerry A. Ziler +1106333,Lou Reed +1545498,Sadie Heim +1878881,Massimiliano Iacolucci +1267329,Lupita Nyong'o +1224942,Anthony Jeselnik +143675,Oleg Fomin +96176,Keith Barron +1804451,Mikhail Tot +53651,Monique Gabriela Curnen +52701,Fergal Reilly +147769,Pertti Pasanen +1658138,Sakada des Pallières +928019,Marcus Standoft +1272223,Peter Flaherty +1283051,Brian Call +1151822,Katrine Jensenius +1347585,Marcelo Galván +73058,Natacza Boon +1211682,Sihle Dlamini +1195738,Ursula von Wiese +1758603,Pasu Singautsaha +31897,Marco Guglielmi +91715,Jaak Van Assche +1853086,Roberto Salussoglia +1702489,Karen Ardiff +1846966,Eric Bartsch +1313,Andrew Lesnie +1232889,Rachel Pickup +558912,Peter Alexandrou +1769768,Michelle Pieroway +1330722,Crystal Kung +1163718,Ashlee Thompson +1449869,Sébastien Dupuis +588817,Patricia Montero +1394348,Elina Alminas +215961,Valery Pappas +77865,Benjamin Hollingsworth +553738,Stacey Alden +1059941,Aroon Wanatsabadeewong +1821493,Haley Glass +1080225,Michael Caridia +84205,Kara Hui +1324502,Aoua Sangare +64726,Daryl Haney +1359560,Van Hughes +127281,Harrison Gilbertson +78887,Billy Ray Cyrus +228718,Arthur Mazet +51636,Jacky Ido +591924,Elena Serrano +1327908,Cordelia Strube +1173458,Andrew M. Greenwood +1365705,Maude Wayne +1109319,Jonathan Lampinen +111367,Alexandra Algerydh +1707825,Hans Nieswandt +1330093,Valentina Gebbia +1508825,David Weindel +1115637,Anne McLeod +938995,Richard Brenneman +1019913,Maria Antonietta Guido +1119508,Kenji Shiiya +1402913,Martin Gordon +1228652,Chuti Tiu +155081,Stink Fisher +1821491,Hudson Wright +1095723,Apittha Klaiudom +1337737,Aleksandr Pal +1699114,Lora Moss +1660452,Betty Gabriel +58333,Tom Kemp +175922,David Wilson +1259692,Edina Balogh +31394,Guillermo Ayesa +41074,Marina Hedman +8442,Lyndsey Marshal +97185,Eric Jacobson +1450103,Arvo Kuusla +90227,Anselme Baud +1133881,Joe Madden +235981,Valentin Smirnitskiy +1244697,Hayward Morse +153360,Allan Melvin +933504,Zhao Jing Chen +1883544,Amy Roiland +160441,Paul Stewart +1457422,Ina Marija Bartaité +937835,Lung Fei +1367905,David Christopher +78398,A Martinez +1647207,Alan Chow +121292,Allen Connor +30420,Robert Morris +1563626,Annabell Rickerby +1085654,Elizabeth Eggers +592709,Manolo Solo +1184847,Ernest Ignatius +131129,Teddy Hart +1690741,Fortunella +1478274,Katie Singleton +71354,Nia Roberts +101279,Brian O'Connor +227278,Eugen Skjønberg +68326,Xenia Seeberg +29396,Anthony Steffen +167656,John Garry +1064538,Allan Paule +210829,Karolina Wydra +941974,Dakota House +1498715,Kim Deacon +1229172,Chuck Wagner +1780281,Lucy Marinkavich +208979,Brian Dueck +1758594,Nitthanit Kulviroj +1140028,Giuseppe Terranova +161420,David Whorf +933277,Aitor Merino +1336360,Sagar Radia +1871555,Warwick Sadler +98790,Maria Grazia Buccella +103606,Richard Dyszel +1578223,Elaine Aiken +1253356,John Paul Green +1377303,Nora McMenamy +1758599,Thada Meemanee +83445,Jason William Day +106599,Sergey Bludov +120234,Maksim Matveev +1186880,Merlin Rose +1658136,Leakhéna des Pallières +1173904,Billy Ray +1559490,Johndale Solem +1302705,Francesco Bracci +99523,Mina Azarian +1150576,Rick Neilsen +177473,David Cohen +1244695,Dean Harris +1803812,Francesca Brill +1113461,Elena Goode +1394426,Savannah Lamble +207150,Jessica Barth +202930,Anthony Molinari +1400595,Stavros Halkias +1187205,Gildas Saublet +30902,Simonetta Vitelli +1546539,Karen Wheeling Reynolds +1428280,Wim Boven +122045,Vilma Santos +80678,Tim Hodge +583853,Finnegan Oldfield +1184080,Forest Zhu Sen-Lin +1788330,Helen Carter +116134,Olga San Juan +1388686,John Moore +1090772,Frank Cooke +1636802,David Spencer +1288527,Patti Negri +164847,Joyce Easton +57735,Seizō Katō +217359,Julian Bond +213586,Helmut Zierl +138891,Francine Bell +210773,Rutina Wesley +1430483,Frederic Haselon +1859936,Timothy Durkin +110793,Rauli Somerjoki +81214,Pierre Lindstedt +54453,Wilson Cruz +971299,Griffin Gluck +304463,Alexandre Brasseur +932880,Римма Мануковская +138771,Clark Freeman +1314963,Andrew Lander +17376,Felix Gebhard +1514142,Sean Mathieson +1022801,Brent King +210849,Chris Spinelli +1391129,Chad Randall +89798,Danny Nussbaum +137578,Jan Uuspõld +1029097,Patchariwan Pieskä +1283951,Angel Anthony Marrero +1328711,Sean Edward Frazer +1394342,Symara A. Templeman +239127,Yuri Vizbor +17188,Marsha Dietlein +105790,Dolly Haas +1179880,Yelle +1456979,Raya Khatib +1570684,Adrian Voo +584824,Jayabharathi +1350577,Roy Stewart +1526120,Milan Pavlović +1037912,Michael Arata +585180,Lubomír Kostelka +1375090,Kaitlyn Dodson +1087328,Giuseppe Silvi +3933,Stipe Erceg +1243536,Cynthia Abma +72270,Souleymane Dicko +1700631,Liza Koshy +60613,Brenda Crichlow +101440,Artyom Mikhalkov +1055121,Hans Söderholm +1223325,Perry Morris +1481172,Shirô Tsuchiya +1265676,Antonis Papadakis +1891739,Enzo De Toma +169653,Luke Massy +69225,Q'orianka Kilcher +55135,Aldo Puglisi +1537756,Rootie J. Boyd +1386297,Collin Dean +145458,Patrick Drolet +556924,Danny Ronan +1539088,Pearl Tan +1451101,Franciska Töröcsik +18208,Annie Miller +1026726,Matt Bernhard +1522344,Bridget Graham +1622093,Victoria Budkey +1386409,Winona Mae +1253355,Kiersey Clemons +1083498,Red Lawson +580835,Viire Valdma +106953,Biski Gugushe +78296,Tim Commerford +1635146,Sidney Sewell +587516,Larisa Malevannaya +1738449,Bubba Ganter +1338705,Lachlan Halliwell +1339656,Fathali Oveisi +1198479,Kôji Uruki +1511951,Norman Lehnert +1650307,Lupe Trejo +20377,Matthew Knight +574143,Marco Hietala +206902,Andrew Garman +1150435,Gita Amely +161424,Cass Martin +210603,Arzu Bazman +1750925,Avin Das +1572353,Lee Joo-woo +46948,Kelly LeBrock +10055,Fernanda Montenegro +235309,Péter Scherer +556048,Münir Özkul +2316,Beatrice Manowski +1498214,Noah Moon +1015796,Doreen Lipson +126042,Alex MacQueen +355391,Alla Kliouka +1185278,Tenzin Dorjee +96364,Kyle Clare +91527,Liesbeth Kamerling +1448,Michael Lang +1758611,Wanida Langvilai +1406450,Jon Daly +225012,Amparo Noguera +1547725,Tony Russel +1446110,Kian Hinsenkamp +1585711,Natifa Mai +1310867,Jacque Fresco +986734,Kelly Kilgour +1063191,Alvaro Rodriguez +941639,Tamara Acosta +1271784,Patsy Meck +1473469,Sharaf U Dheen +145327,Anthony Delon +1388080,Persi Diaconis +1418872,Fubuki Koshiji +95388,Will Johnson +1511750,Evelyn Fleder +179489,Chel López +1512147,Theodora Greece +17370,Marcus Wiebusch +1607301,Choi Byung-mo +1273009,Sebastian Blyckert +125196,János Rajz +1800047,Darren Creaven +21859,Maeve Quinlan +1320767,Angelina Hadjimitova +238216,Karl Künstler +1754457,John Garcia +39004,Luigi Vannucchi +85410,Denis O'Dea +1095267,Julian Burton +79449,Margarita Broich +132849,Nunzia Schiano +33543,Pierre Brice +1457289,Jamell Richardson +1055292,Mary Ann Jackson +1140027,Carlo Spadoni +11927,Sabine Eggerth +1784326,Zoë Crawford +1340883,Kurt Metzger +928340,Renita Fincke +117434,Sean Wei Mah +1508641,Nassime Nazari +1419411,Andrée Lumière +1464492,James Kilgannon +1134691,Frankie Avina +232043,Cooper Campbell +555500,Bruce Bickford +1017363,Christina Szápáry +1766754,Jamie Switch +1796392,Aladeen Tawfeek +1450800,Jim Pacitti +1378076,Thomas Fowler +164901,Paul Tinder +114019,Luke Evans +1583942,Ifi Ude +34872,Eric van der Donk +1168912,Nick Corirossi +1362824,James Darbyshire +1227664,Manfredi Aliquo +1592947,Miguel Eduardo Cueva +1383042,Fabio Vannozzi +1332913,Cathy Gulkin +66062,Tom Beck +1123270,Victor Andres Turgeon-Trelles +1541248,Filippo De Carli +1424111,Alex Moffat +1312266,Marama Corlett +190237,Adam Mills +1511972,Gianna Marino +1719597,Billy McFadden +1525266,Raymond Gil +94264,Casper Andreas +1564287,Marta Malikowska +76951,Hiroyuki Onoue +48931,Karin Rasenack +225777,Jack Fjeldstad +1644655,Daniel Maurio +1851062,Cristiano Pasca +215186,Carlos PenaVega +1879680,April Ann Reese +116529,Devin Barry +95939,Brittney Powell +1150158,Ahmad Massad +1672081,Josh Potter +75598,Jens Wolgers +69636,Ti Lung +12009,Anthony Harvey +1127397,Bud Thompson +1795952,Andreina De Martin +106596,Bob Schrijber +1098596,Esmat Safavi +1692085,Pete Porteous +48429,Winfried Küppers +1279013,Lorenzo Tucker +559059,Katrina Hawley +1179062,Adina Vetter +230067,Adrien Saint-Joré +59261,Hannah Marks +1700563,William Morts +1015448,Nadia Verrucci +1324063,Marcos Moreno +1522257,James Owen +91582,Mavis Xu +87675,Waldemar Torenstra +133607,Thodsapol Siriwiwat +1781067,Ray Oliver +221018,Dan Stevens +1186811,Suat Usta +1432557,Andrea Brillantes +1639187,David Rubin +1805297,Joachim Gern +87657,Mirai Moriyama +1332938,Tracey Ferencz +30328,Martin Savage +1088029,Monika Kelly +1508174,Vasilios Asimakos +1637679,Enikõ Eszenyi +112135,Masami Kikuchi +1872246,Lance Harris +140565,Frida Westerdahl +1094535,Teresa Franchini +86253,Kali Prasad Mukherjee +1759667,Diana Emuge +47176,Sven Nordin +1006346,Piotr Gąsowski +130613,Giuseppe Anatrelli +1093683,Alessandro Sampaoli +1398056,Peter Newman +1089658,Lia Tanzi +588715,Firat Celik +271927,Valentina Titova +1692964,Bruna Hamu +1894773,Mable John +99773,Sam Mann +144852,Richard Harmon +227566,Sage Ranaldo +1071370,Wynand Uys +237434,Lev Sverdlin +1247016,Wanda Opalinska +1266290,Jonathan Braylock +82796,Nikita Mikhalkov +71597,Johannes Allmayer +20727,Baki Davrak +106099,Rita Corday +1802423,Milene Mayer +86667,Nikolai Parfyonov +1037690,Kai Shishido +1771586,Keith Paul Hunter +1625032,John P. Miller +123068,Anjali +1796600,Finn Ryhl-Andersen +929663,Alla Meshcheryakova +1327010,Sam Dillon +127853,Marian Dziędziel +1584554,Aurita Agushi +1153626,Andrius Bialobzeskis +83591,Ayesha Takia +931682,Riyad Ideis +1137558,Anisia Uzeyman +1223718,Rizwan Manji +1467145,Alice Orr-Ewing +20565,Burton Perez +582419,Darío Ramírez +1364925,Samuel Shipway +1332839,Maggie Scott +1808832,Eric Dietrich +1646462,Chloë Bellande +27638,Gina Bellman +68517,Konstantin Lavronenko +1709372,G. Rockett Phillips +571465,Jakub Špalek +100993,Lynette Bernay +81468,Fanny Mallette +1660173,Dalvanius Prime +143548,Fernanda Dorogi +116642,Paul Harris +117769,Harry Bronson +1215048,Leland L. Jones +1346703,Brandon Gill +12268,Jean Brochard +206517,Asher Book +1562963,Jesse G. Louis +1684448,Arsène Jiroyan +1676370,Elif Baysal +224144,Sebastian Pigott +141246,Oliver MacGreevy +1364481,Paavo Pentikäinen +117020,Jack Marshall +1363814,Bolot Beyshenaliev +572440,Hend Rostom +138875,Ralph Benmergui +228350,Herr Cajörl +1004792,Nina Emelyanova +548329,Sherman Wong +72592,Yann Trégouët +1851865,Chase Anderson +1636956,Joseph Cranford +1747627,Richard Guerry +1431632,John Alex Castillo +1017169,George Jones +1523667,Goran Ganchev +37588,María Luisa Ponte +129310,Anthony Markwell +136893,W.A. Bishop +564389,John Robinson +1471376,Jack Maclennan +1898806,Liliana Niespial +1046073,Valeri Kudryashov +120737,Weldon Heyburn +999445,Kym Jackson +172254,Mark Burnham +1497557,Alexa Demie +1712417,Jessica Sowa +62671,Mac Fyfe +1819151,Brian Hatch +1435701,Ramya Subramanian +1163721,Marideth Sisco +145836,Aimee Teegarden +110509,Zheng Hong-Tao +87753,Paul Fierro +1443095,Ib Michael +1702759,Shaun Newnham +102225,Ramón Pons +130566,Kevin Jonas +1004565,Im Won-hee +73710,Raad Rawi +130399,Erdal Besikçioglu +1060189,Stavros Xenidis +1170732,Svyatoslav Kossakovsky +236870,Enzo Casertano +1241195,Jan Stapelfeldt +1657129,Steven Harwood-Brown +79618,Albert Millaire +931241,J. Frank Burke +138881,Jere Beery +1124535,Shunsuke Kazama +1462291,Peter Pan +1327614,Vladimir Alexis +1717048,Robin Parkinson +19633,Claude Génia +117974,Hiroshi Tamaki +155109,Christopher Mann +96015,Teri Andrzejewski +1129687,Jay Colligan +107525,Colin Moss +563379,Helen Niedwick +230743,Natalia Dontcheva +1066410,Fumie Kashiyama +545637,Nikhil Dwivedi +101028,Michelle Borth +1498028,Jordyn Kane +1840816,Korey Coleman +85420,Boris Kievsky +1529735,Teruko Wakamizu +85415,Jack Dimich +161559,Rick Jason +1115720,Yami Gautam +1367830,Nicolas Phongpheth +1280226,Andrea Jublin +935720,Madison Lintz +68937,Axel Anderson +153943,Shadoe Stevens +119668,Lily Kann +27635,Dominic Rowan +1119438,Stig Hoffmeyer +1885269,Chigumi Ôbayashi +1025629,Hui Chi Chiu +74688,Keke Palmer +1459812,Chad Sapire +64540,Medeea Marinescu +1863670,Joey Lawyer +91613,Natalie Smyka +1206334,Josh O'Connor +89754,Johnnie Morris +238111,Kseniya Knyazeva +201898,Noémie Kocher +1382010,Bryant Prince +21833,Burkhard Driest +89835,Ayumi Fujimura +1151807,Olivier Desautel +1024442,Eli Batalion +1380103,Anthony Taylor Lopez +1694301,Natalia Señorales +1165390,Markus Persson +1431605,Claire Calarco +223799,Yuri Matveyev +1444837,Chuck Morrell +1239110,Kaori Mizuhashi +126439,Emanuele Bosi +46907,Jillian Marie +59603,Michael Hanrahan +1903977,Heidi Matijevic +61494,Elwaldo Baptiste +14034,Bernard Gorcey +1851641,Antonio Andrisani +40673,Simon Newby +1082094,Dave B. Mitchell +134268,William Austin +562312,Sean Gallagher +103520,Vicente Parra +169751,Jim Shepard +1544148,Lasarus Ratuere +145927,Sayaka Yamaguchi +1548735,Diana Gaitirira +140666,Anna Prus +1276612,Ryôta Nakanishi +1169766,Ana María Morales +17283,Rupert Evans +1464143,Lilo Wanders +1211881,Beth Goddard +100803,Huntley Gordon +1160686,Jacopo Olmo Antinori +1592860,Yannis Aivazis +1069886,Anneli Sauli +1905795,Lukas Vydrzal +1075998,Alan Rogers +226707,Svetlana Antonova +1807064,Chris McCail +117413,Patricia Roc +1423050,Rik Battaglia +1562521,Michael Vincent Dagostino +1700953,Luis Bajo +118374,Gaius Charles +1368533,Yvette Dudley-Neuman +1483978,Tony Banwell +1136922,Rocky Braat +1257710,Kazunari Kojima +1226225,Will Schaub +90520,Susan Oliver +1508829,Michael Underhill +1089491,Julia Mack +1396370,Jessica Silva +1544548,Sunil Thapa +206177,Abhin Galeya +228205,Paola Lattus +1640427,Sophie Brown +10846,Daz Crawford +262459,Marc Betton +108916,Rooney Mara +101947,Joan Van Ark +1507453,Ava Santana-Cassano +1361559,Cain Thompson +1470818,Arden Belle +1746876,Michael Barker +140898,Michael St. Michaels +1509256,José Javier Domínguez +185316,Jacques Ciron +1748375,Ed Lowry +970027,Marta Hazas +1746889,Hannah Storm +31242,Alison Lees-Taylor +40609,Dan Clarke +582653,Jamie Wozny +1459816,Chris Oberem +126807,Wong Cho-lam +73752,João Pedro Rodrigues +34260,Michel Pilorgé +592055,Eva Czemerys +111599,Kirsten Lehfeldt +1014715,Hannah Levien +232363,Nassereba Keita +151431,Jordan Gelber +1835282,Adam M. Miele +78199,Lisa Arnold +1517230,Noel Mairot +128481,Ryo Iwamatsu +34212,Grace Stafford +1306414,Danny Davis +1440511,Junjie Zhang +99502,Mick Rossi +1485771,Caden M. Fritz +1707920,Mario Gori +1061041,Camila Sosa Villada +1430505,Adam Ganne +1291460,Guli Nazha +1071592,David Lavenski +1505457,James Burnett +7820,Markus Klauk +1757736,Geoffrey Howard +130997,Bodjie Pascua +1042001,Darius Milhaud +1039917,Krista Stadler +1223739,Guido Palliggiano +580626,Ilavarasu +131288,Lin Cheng-sheng +1018043,Joby Saad +100568,Erika Carlsson +1767221,Iris Hirabi +143625,Alina Kirillina +1596412,Georg Blumensaat +1388675,Christopher Saint +1331687,Louise Purnell +1325245,Fanny Landini +1297701,Alja Uzulena +543208,Sascha Alexander +85272,Sam Stout +171742,Ryan Homchick +114831,Kenneth Horne +52639,Tom Wlaschiha +1504489,Temple Williams +1205388,Katie Garfield +467845,Rohini +1077356,Zhu Zhu +1891507,Jay Benedict Brown +74614,Gary Anthony Sturgis +64499,Choi Yeo-jin +150802,Claes Bang +1028469,Ajit Khan +1497230,Isabel Malavia +1714057,Jennifer Bordi +238229,Gerhard Rühmkorf +1078979,Danica Curcic +934996,Sesilia Takaishvili +36433,Friedrich G. Beckhaus +1719212,Elijah Boothe +1208406,Zoë Borde +1420252,Nicole Yardley +126398,Pino Quartullo +1091387,Don Battee +79079,Jamie McShane +1075761,Stella Pecollo +18566,Pierre Vernier +81684,Caterina Scorsone +1278127,Sebastian Zaniesienko +77378,Míla Myslíková +1114546,Már Ásgeirsson +100486,Noel Peters +1380344,Ken Van Sant +939188,Mikhail Kokshenov +1345950,Mark Stanley +1064908,Sonia Lázaro +77529,Peter Frödin +1394375,Joshua McGuire +109835,Lorenzo Camporese +275073,Tatyana Kuznetsova +1131937,Robert Indiana +1712724,Chloe Hesar +101540,Heather Woodbury +110544,Giorgio Faletti +1848667,Alice Caymmi +1886274,Christophe Pinon +1388660,Justin Gaines +1382567,David Schultz +1646275,Mehdi Nekoueï +1255553,Kevin Brueck +125933,Ralphie May +562601,Raisa Nedashkovskaya +1306541,Barbara Rubin +228158,Maurizio Micheli +83395,Roy Rogers +1200162,Atef Yousef +1312688,Audrey Mason-Hyde +1156240,Rob Knighton +7011,Pierrette Robitaille +928328, Lindsey Black +1132081,Victoria Almeida +545468,Madeleine Guitty +560102,Aleksandr Borisov +553353,Marieke Dilles +155456,Neal Matarazzo +121096,Jack Kennedy +1493208,Candice Harrison +1174191,Mae Costello +160594,Stephen Coit +1446107,Eren Oguz +1851869,Michael Lisenby +112765,Eric Métayer +995358,Alice Rietveld +35256,Damiano Damiani +1156392,Jinson Añazco +1738910,Shauna Taylor +1179883,Renaud Barse +1632896,Melania Lenoir +1281106,Rosanne Ratcliffe +1499686,Kenneth MacKintosh +1205889,Zander Gerhardt +31431,Nigel Terry +2367,Helmut Qualtinger +174612,Michael Ross +1128305,Alden Richards +1168086,Krishna Das +1822697,Maja Samchanova +1161652,Tomás de Pablo +1232126,Megan Gale +1043304,Andy Milder +1765437,Elbert Hill Jr. +155754,Melanie Chartoff +1424210,Rich Mercurio +149520,David Fury +1092247,Mark A. Walsh +1348124,Teréz Vass +1207564,Jeremy Becerra +83798,Anthony Sonigo +21998,Rolf Zacher +1097967,Sam Palladio +89521,George Nichols +1316484,Michael Hariton +128324,Noah Beery +52132,Mary Gale +1543395,Mahendra Munisamy +1040862,Lawrence Krauss +97449,Eric Feldman +1674153,Chris Gallarus +1280062,Imogen Archer +166060,Gary Wood +1165401,Peter Molyneux +33795,Aldo De Carellis +1386502,Julia Lalonde +87224,Ercan Kesal +1309329,Sarah Dawn Finer +107321,Laura Banks +1699474,RJ Hermes +68557,Joey Wong +26923,Aleksander Fogiel +1441807,Mogens Petersen +1400178,Pepe Lorente +1529757,Shin Suzuki +140409,Shaun O'Hagan +113932,Ordena Stephens +1219832,Bob Goen +1203504,Pino Mauro +15293,Keisha Castle-Hughes +583402,Anne Jacquemin +1759662,Daniel Ormerod +1585694,Ross Sturlin +129574,Luciano Gubinelli +440916,Erica Roby +85891,Tusshar Kapoor +1169107,Duane Allen +1118240,Yuldus Rysayeva +1718104,Maria Quinones +1603927,A. Abayeva +109281,Jan Fares +1857670,Kiara Coussirat +571501,Naoki Tanaka +25848,Rudolf Martin +120188,Isaac George +1291643,Philip Steadman +1833324,Vincenzo Zampa +932352,Konstantin Chepurin +1570735,Ashley Tramonte +1539681,Merrill Gruver +233868,Ingrid De Vos +1445196,Niels Jakob Søndergaard Mye +1446353,Ed Fitten +1394478,Beau Paley +125533,Tom E. Lewis +1466913,Bruce Whitmore +1063947,Bretton Manley +1501800,Corrado Sassi +1129444,Kian Khalili +1135561,Giovanni Grasso +110771,Chelaf Abdeslam +1664576,Rose-Marie Perreault +1252008,Chris Bergoch +146526,Philippe Lacoste +1786729,Edward Mannering +1376096,Ndalo Stofile +565305,Lev Lemke +1162995,Idrissa Diabaté +32626,Otar Koberidze +1313152,Tevis R. Marcum +64358,Dan Chupong +1037704,Margareta Rance +108693,Sheaun McKinney +1099269,N.N. Pillai +1197398,Sophie Alexander-Katz +85285,Chikao Ohtsuka +147103,Carla Maciel +63364,Brian Gleeson +1210611,Darcy Fowler +120148,Joyce Howard +1603267,Hélène Kuhn +61964,Estelle Harris +1502448,Cooper Cowgill +225392,Marcella Michelangeli +127249,Gloria Münchmeyer +1408881,Miako Tadano +157818,Kara Tointon +584052,Dmitriy Mezhevich +22188,Dieter Pfaff +140412,Phillip Trent +1066316,Vincent Chimato +995560,Megan Hagins +139724,Renee Castle +1004107,Görbe János +583456,Morgan Peter Brown +1489914,Sana Mouziane +85477,Trace Adkins +1480871,Derick Mayes +1829164,Gino Korompis +232309,Esa Pakarinen +1656875,Suttipong Satjachoktam +100858,Melanie Shatner +49211,Henny Porten +1577047,Kristina Pimenova +80494,José María de Tavira +139329,Gregory Cason +1200857,Flora Slorach +1418982,Anna Mascha +1074828,Isabella Biagini +1065331,Lu Yong +1661264,Cameron McKendry +19498,Jon Bernthal +126457,Tom Bennett +1074668,Chris Clanton +132903,Santos Olivas +1811261,Edna Panaggio +1268136,Evie Brodie +1301101,Amparo Iturbi +1448031,Katrina Norman +1355669,Sui He +1072141,Stephanie Greco +1656869,Namfon Pakdee +1021740,Abu Aldanish +85685,Eddie Ruiz +930322,Jacob Rodier +1136976,Mira Eklund +96511,Uldis Lieldidžs +927859,Jim Ladd +1112311,Анна Лутцева +1031270,Kathleen Kirkham +15201,Gillian Hills +1269275,Cholo Barretto +1717267,Scott Herman +73534,Celesta Hodge +1715073,William Stagg +115466,Arthur Pierson +1164979,Valérie de Monza +1195776,Joanna Reis +230087,Behi Djanati Atai +212604,Adam Devine +1522642,Raymond Nullan +235854,Sunday Burke +1243732,Delores Wells +99619,Ashlie Rhey +1180480,Florence Hebbelynck +1833801,Emon Hussain +143974,Albert Asadullin +22330,Maria Lundqvist +1830800,Kim In-woo +1734178,Ben Smith-Petersen +1181345,Jack Gore +1656888,Sahatsawat Thonginn +1559151,Sedona Legge +29180,Otto Gebühr +1322770,Vladislav Demin +225186,Belcim Bilgin Erdogan +132502,Lars Väringer +132907,Jimmy Jose Arguello +1295820,Mary-Ann Vaughn +548167,Vincent Krüger +1236474,Natalie Distler +1464147,Sahin Eryilmaz +566730,Nikolai Boyarsky +1050371,Carmine Iannaccone +63758,Gitte Witt +112960,Greg Thirloway +1026995,Alicia del Lago +930019,Benny Parrish +1526926,Andre Hall +230977,Ravi Baswani +822,Avery Brooks +127472,Cooper Harris +46316,Nicole Pilzecker +210909,Amy Gumenick +137700,Jaan Tätte +63501,Jeff Birk +49252,Walter Janssen +49673,Miklós B. Székely +121604,Julie Beaulieu +1849117,Cyril Monroig +934628,Thodoris Atheridis +1155547,Patrick Brice +44203,Lori Hallier +496937,Kim Young-ae +1699953,Mario Patumi +1747105,Vitta Mariana Barrazza +563599,Krystyna Tkacz +1458053,Lucy Morton +1256170,Jakob Salvati +587875,Rachel Stephens +103895,Frank Conlan +229696,Ella Connolly +1906019,Emily-Jane Boyle +74047,Tyson Ritter +141778,Tim Williams +85421,Time Winters +1744013,Shaylin Janelle Broady +30433,Neil Maskell +1171173,Judit Fekete +582900,Fabrizio Biggio +1093950,Javier Cárdenas +1085556,John Hurley +44385,Julia Brendler +1693887,Cedrick Juan +1194577,Ariel Nuñez Di Croce +1897713,Ian Nsenga +97460,Laura Molina +230033,William Jøhnk Nielsen +1520910,Lucy Grauman +1188323,Vidal Sancho +77700,Travis Fimmel +97276,Erdal Özyağcılar +990064,Amanda Lawrence +1400686,Katie Goebel +1412500,Murat Dikenci +1673474,Danielle Carey +1190334,Michi Yamamoto +1800021,Barbara Brennan +28299,Gianni Meurer +1265675,Lefteris Daskalakis +1286019,Bernadette Ralphs +84344,Paul Preiss +1427473,Tristan Slade Mitchell +1685106,Ivan Aybar +1057528,Liquit Walker +140253,Talia Balsam +1114834,Wong Lik +570323,Kerrie Hayes +568022,Joan Hostench +70602,Jörg Buttgereit +1234388,Simon Kassianides +150948,Lennox Pawle +34314,Janet Blair +81859,Tomomichi Nishimura +1797949,Ali Karagöz +8995,Marval +934313,Ismaël Sy Savané +92949,Timothy V. Murphy +1189689,Baiba Indriksone +1565630,Shotaro Mamiya +1797944,Filiz Bozkurt +149876,Laure Marsac +587174,Christèle Tual +111365,Isabelle von Saenger +1209474,Gabrielle Elyse Thompson +137283,Susan Jane Tanner +1544619,Sudev Nair +1454805,Lizzy +39955,Eric Porter +1430438,David Hoffman +1382745,Michael Shikany +933015,Daniel Potts +158390,Phillip Mitchell +1296662,Jude Anthany Joseph +1459344,Kobus Swanepool +110781,Marita Järvinen +990401,Ben Corbett +117668,Lucienne Bogaert +39055,Muir Mathieson +210161,Christopher Wilcha +79930,William Simons +1074191,Sonia Casademont +583439,Marcos Paulo +982403,George Rhodes +1192879,Žarko Potočnjak +58975,Roy Rivera +51508,JoeyStarr +155860,Wendel Meldrum +1880149,Jorge Ferragut +228716,Laurent Delbecque +1291602,Angy +628641,Gustavo Garzón +127365,Jan Watson +1631529,Chloé Henry +1162439,Frank Mosley +260836,Adrien de Van +119810,Geoff Gustafson +1093974,Brigitte Millar +1062644,Conrad Bluth +1344533,Tamara Chernova +1281345,Parinita Seth +933160,Suraj Sharma +83831,Konstantin Murzenko +1283562,Alexander Haugg +1744825,José Lusala +58555,Steffen Jürgens +1099592,Kanchan +29374,Rick Glassey +168625,Michael Boisvert +1379407,Patrick Gibson +151470,Ben Cooper +213596,Clemens Schick +1804420,Dominick Wilkins +205923,Babs Olusanmokun +39104,Abel Ferrara +1102422,Pierre Bourdaud +1523611,Jerry Brown +118593,Anna Colwell +1676536,Roy Allen III +1313150,Don Savoie +581279,Irakli Mskhalaia +22903,Gerhard Rachold +1227784,Ace Bhatti +86676,Lyubov Sokolova +1890111,Vitaliy Klichko +1840030,Ta'avale +1319890,Jamy Gourmaud +1388690,Albert Wyss +27932,Lilli Palmer +1082750,Teruko Kojima +68913,Terence H. Winkless +172800,Elisabeth Rosen +129302,Max Gazzè +1849536,Logan Kishi +1412941,Meganne Young +79396,David Chisum +1056876,Wade Barnes +1720847,Tiffani DiGregorio +1001783,Salih Ünal +1372351,Mirlan Abdulayev +1440461,Jia Hui Wu +1308332,Ralph George +158644,Ellie Harvie +66252,Bruno Campos +1041196,Francisco Melo +1402671,Peter J. Chaffey +1204687,Patricia Persaud +106684,Dominique Badou +34737,Pat Fraley +76169,Demo Tanaka +120337,Duke Mitchell +1149290,Dima Bilan +1427074,Mart'nalia +1817737,Yohanna Schwertfeger +96034,Kelly Dessoye +1423809,Chelsea Li +1119897,Giannis Gionakis +1735575,Markos Rounthwaite +85773,Byrd Holland +1010135,John Bradley +936254,Luis Gerardo Méndez +560105,Bruno Frejndlikh +125871,Igor Vernik +1567103,Elyse Cole +224731,Clara Lago +135753,Mille Dinesen +125927,Pradip Adhikari +1498874,Hanns Schuschnig +1364768,Yuuki Tsujimoto +1866644,Jordan Moser +1040420,Ekaterina Melnik +29544,Claudia Mori +581144,Tsuneko Yamanaka +1269244,Pepa Sarsa +1589713,Katrina Smith +569549,Susan Conklin +1802509,Anne O'Shea +84959,Paco de Lucía +1633757,Gene Hitler +975343,Clinton Rosemond +86074,Sanjay Suri +1741929,Raffaele Zabban +1594224,James Young +1156400,Judith Haspel +1262837,Laura Nucci +1394461,Connor Clarke +237345,Jay Amor +1363770,Rosa Waissnix +103728,Greta Baldwin +214811,Katy Behean +1790563,David Ojeda +184816,Chelsea Hobbs +94861,Nathalie Pownall +1209472,Samuel Mason Paul +1228940,Jonathan Dixon +54464,Tomas Spencer +1197739,Marly van der Velden +1051378,Terrayne Crawford +1177638,Joey Iachetta +937783,Jean-Benoît Dunckel +1870847,T. Wagner +1358460,Annie Q. +59387,Maria Victoria Di Pace +100253,Johnny Mack Brown +1795363,Luis Augusto Figueroa +1585211,Jen Hansen +230428,Linda Topp +1414536,Rich Pecci +1095901,Eduardo Sterblitch +1728990,Claudia Sermbezis +1667159,Julian DeZotti +15217,Zack Snyder +1072792,Leif Holt +1810569,Keiran King +1905799,Anezka Nosková +1773377,Jeremy Lucas +963482,Jeff Grace +1293283,Maysa Daw +564610,Jytte Kvinesdal +1248831,Anouck Lepère +1177300,Roch Aubert +930692,Edwina Booth +588159,Blanche Gardin +195325,Ben Tibber +1371380,Sibylla Kay +1164931,Megumi Han +1405756,Font García +18502,Alfred Vohrer +165919,Scott Newman +1515527,Bill Kottkamp +1562960,Shawn Schminke +1560254,Joy Flowers +1120711,Richard Morgiève +980399,Tino Bianchi +1695667,Natalie Chevonne +1173284,Claire Cellucci +112563,Feng Yuanzheng +93321,Dan Gauthier +32131,Loni von Friedl +1146054,Ossi Elstelä +1401554,Guillermo Crehueras +1088683,Caroline Tillette +126235,Christine Tucci +1373120,Dixie Chene +1117034,Julia Pott +970670,Audra Griffis +216002,Ish +1538867,Minpei Tomimoto +1522829,Katarzyna Czapla +985071,Vera Strokova +587911,Alla Pokrovskaya +235959,Vladislav Galkin +1150283,Ewan Ross +565347,Aitor Beltrán +1752446,Carlotta Cimador +29760,Richard Arlen +1638436,Sergey Yarmolyuk +563809,Ettore Manni +111377,Archil Gomiashvili +1336937,Bernhard Ramstad +62961,Sarah Hadland +1107179,Evonne Walton +1089149,Hariette Garellick +475138,Bogdan Szumilas +1327206,Diane Medina +1351400,Robbie Kavanaugh +1358087,Brett Azar +550550,Tim Beckmann +82718,Andrey Chadov +1753503,Barbara Smith +104892,John Dugan +584933,Demeter Bitenc +1011904,Gwendoline Christie +1180043,Tadashi Shiraishi +1853088,Michele Codognesi +150687,Vaibhav Reddy +1144001,Pauline Broderick +1895704,Christine Q. Nguyen +1292115,Aren Buchholz +1815812,Gloria Slade +1306417,Katherine Best +113585,Dianne Foster +1757668,Scot Greenan +1044768,Eugenio Krauss +1184848,Siddiqua Akhtar +1418447,Steffi Hagel +115395,Aleksey Petrenko +1686565,Levi Alexander +1496293,Gia Gadsby +127961,Jake Burton +1765299,Jessye Romeo +1055533,Cindy Díaz +1428999,David Crowley +28396,Jürg Löw +1210352,Orvokki Taivalsaari +1884493,Josephine Callies +1054839,Matthew Ziff +1251178,Óscar Borda +47684,Diana Beaumont +1542127,Abby Walker +128222,Michele Di Mauro +1796449,Sheila Simpson +142385,Kay Kendall +1518644,David H. Stevens +1091350,Michel Israel +172847,Bruce Dawson +3621,Roberto Alvarez +137891,Robert Wayne +81002,Mikhail Evlanov +236582,Zeudi Araya Cristaldi +87245,Juanjo Puigcorbé +1861964,Jade Chkif +101201,Luciano Bartoli +1010349,Adrienne McQueen +90499,Akiko Yajima +1557951,Nina Rosenthal +140602,Jorge Lavat +31200,Mathias Henrikson +1261131,Simon Fisher-Becker +1142897,Robert Walker +133182,Antonio Gades +1384662,Sergey Pokhodaev +1328597,Bryon Williams +1497076,Jared Shipley +142502,Boris Khlebnikov +1503852,Ellee Jane Hounsell +1761849,Kai Råglund +143769,Sydney Andrews +1376318,David Lyn +1124796,Taylar Hollomon +125775,Angela Tong +575928,Jessica Haines +1013386,Melanie Green +1017324,Corinna Harney +82420,Koen De Bouw +25839,Anouk Ferjac +110615,Prasanna Puwanarajah +1601467,Nikos Filippopoulos +230425,Gianni Musy +60736,Jeff Foxworthy +943602,Robert Modica +1469855,Raymond Souplex +1436259,Tuli Guer +1287321,Jos Verbist +1382346,Daniel Trepiana +5790,Pamela Tiffin +556920,Vladimir Osenev +1902101,Nada Josten +36906,Catherine Flemming +1334637,Gábor Curtiz +1142310,Guy Kingsley Poynter +238006,Bhavana +138876,Allan Royal +1623844,Nikolai Svobodin +1428550,Jane Watson +1234569,Dawn Richard +24044,Zhao Tao +1902103,Isabelle von Hundelshausen +136349,Fred Whitlock +1445113,Miguel Forza +1331457,Sofia Carson +545756,Lee Mi-yeon +1486057,John Leary +1588356,D.J. Oliver +1702392,Ariana Guerra +1764231,Jagannathan +933512,Yun Fei Li +82873,Yoshiko Kuga +1167029,Scott Helms +569891,Alinne Moraes +129527,Brendan Cowell +1350676,Mara Croatto +1325341,Angana Roy +125763,Andorai Péter +1318852,Jean-Claude Camus +42216,Charlotte Salt +140031,Billy Franks +1471662,Rege-Jean Page +109270,Michelle Yim +1083440,Suzanne Desprès +239690,Anant Jog +1888494,Marco Wohlwend +1425618,Mary Akin +140771,Sunny Leone +1029300,Gulshan Bawra +1073525,Chelsey Reist +55569,Anne Openshaw +138063,Martin Ťapák +1588665,Moshidi Motshegwa +1660679,Stefano D'Amato +1209525,Ofer Hayoun +1284830,Jards Macalé +1815386,Jason Charles Hill +209038,Alessandra Torresani +1313437,Lucas Janson +556721,Marco D'Amore +947563,Racer Rodriguez +935669,Mary Bronstein +100757,Eleanor James +1168787,Simone Leorin +1572218,Greg Hovanessian +1273232,Brent Wendell Williams +124741,Sara Shane +52605,Eva Longoria +1747266,Jesse Byron +1066417,Laura Bowman +1372549,Sakari Jurkka +1699398,María Pachón Mesa +1579262,Viola Klimciauskaite +965980,Alix Angelis +128206,Lea Michele +1473746,Dre Davis +117746,Gerald Arons +1113299,Brandon Olds +1301729,Matt Ball +1421051,Lee Eon-jeong +204650,Roman Mitichyan +1153590,Sergei Tulayev +184567,Andrew Bush +105785,Jenny Marlowe +1375247,Rebekah Turner +1376479,Mark Verstraeten +236627,Zuzana Kocúriková +121639,Nancy McKeon +1465724,Gus Rhodes +146440,Gülşen Özbakan +587624,Nina Loshchinina +1651931,Paqui Horcajo +1620568,Loutfi El Hakim +1467630,Karen Rushmore +1295372,Mollie Munks +1885906,Alex Reed +21314,Charlotte Mineau +43708,Kim van Kooten +1213289,Martin Lynes +62168,Sasha Pieterse +1539472,Sabrina Diaz +588733,Milly Mathis +1340376,Luis Pescador +6286,Helen Sjöholm +1468095,Imboden Parrish +85641,Temessy Hédi +228020,Marcelo Saback +62513,Leanna Creel +134466,Paul Hilton +1711569,Jess Salgueiro +1441819,Lars Lønnerup +1392957,Anthony Welch +1485331,Lauren Alexandra +563098,Eleanor Beecroft +133165,Tamio Hayashi +1678834,Tom McGraw +1431834,Jean Perry +1464769,Ebru Kaymakci +1476994,Ma Sichun +40331,Daisuke Sakaguchi +1179268,Christopher Jon Gombos +131232,Conway Tearle +1132667,Lovake Heyer +1510476,Dan Bern +83753,Jimmy Edwards +1033625,Zita Hanrot +1212483,Julie Claire +932881,Мария Скворцова +131272,S. John Launer +563068,Joan Rice +1620962,K. L. Antony +1274592,Doron Amit +1093517,Jess Adams +92686,Darshan Jariwala +55703,Wallace Earl +1544915,Ellis Rockburn +50627,Pilar Castel +75313,Kathleen Randazzo +1735547,James Rackley +1806599,Mac Wells +234253,Maija Leino +37586,Ángel Álvarez +1171336,Roos van Erkel +235407,Irina Pegova +583067,Jean Martin +1307608,Choi Jae-woong +30774,Fernand Gravey +1062707,Mattias Asplund +1051382,Natalie Joyce +63757,Elias Holmen +239448,Tomoko Matsushima +1183610,Nick Light +50556,Miriam Toews +971519,Onira Tares +1071561,Nivin Pauly +118174,Robyn Moore +5306,Lasse Hallström +1303010,Aria Noelle Curzon +1708829,Jeannie Bell +112733,Cyron Melville +563837,Bellan Roos +204420,Josh Blacker +53422,Vittoria Puccini +1471525,Vicky Palma +146471,Lauren Currie Lewis +1001792,Mehmet Öztürk +175008,John Ford Noonan +28278,Madeleine Barbulée +133248,Eamonn Andrews +88029,Alison Brie +139612,Katherine Squire +137203,Ted Stanhope +109314,Don Hertzfeldt +586674,Butz Ulrich Buse +1568704,Taryn Jones +136290,Lucrezia Lante della Rovere +1779168,Bill Hunter +1677244,Jamund Washington +244801,Mathilde Comont +33021,Rosemary Lane +1215525,Jorge Garcia +1707748,Jack Martin +1707943,Aaran Hughes +1480713,Jake Regal +1176783,Melanie Parker +1331637,David Effler +234414,Achille Majeroni +1237210,Teddy Thompson +85864,Joe Besser +979406,Budak Akalin +77301,Jiang Wen +1337734,Andrey Muravyov +995631,Nicholas Stuart +227462,Ned Norton +1384814,Robert Michael Szot +39001,Rosalie Crutchley +1650236,Natalie Ann Jamieson +29409,Christien Anholt +1168061,Santha Leng +322458,Gabriel Braga Nunes +1098885,Dani Levine +232887,Isabella Savona +1503908,Oliver Payne +1538578,Kale Clauson +65535,Alice Evans +58488,David 'Shark' Fralick +240948,Moon Sung-keun +145681,Bernard Bouillon +1063268,Nathan Silver +83306,Oliver Dear +1516873,Victor Winters-Junco +532536,Jann Arden +100290,Sheldon Lee +1391351,Eha Urbsalu +1610447,Evelyn Wilson Bresee +1045919,John Beck +27464,Nathalie Poza +32061,John Moulder-Brown +1613044,Kyle Paul +447244,Jimmy Wong +225010,Marcelo Alonso +1414819,Lesya Kudryashova +550474,Conner Ann Waterman +25069,Jacques Richard +238383,Camille de Casabianca +107307,Jennifer Leak +1498235,Timo Nurmi +1006522,Patrick Rooney +8718,Ilona Kusmierska +939514,Simon Millar +25092,Monica Contini +1074888,Jacob Artist +1354585,Claude Sesé +115488,Misty Rowe +101545,Sean Reid +80997,Pyotr Fyodorov +238958,Jacqueline Dufranne +579285,John Brewer +237182,Getto +1031790,Trice Johnson +35663,Franziska Petri +1384871,David Butler +1084990,Arlyn dela Cruz +143505,Sara Melleri +72662,Nazzareno Zamperla +207396,Brian Hallisay +21503,Tatsuya Fuji +31975,Maria Montez +1776542,Marta Rasoknik +5122,Stefan Gebelhoff +1762723,Hristina Kalogerikou +934150,Eric Rydman +153501,Hal Lynch +548181,Aubrey Miles +81349,Julie Mond +1005363,Karen Kester +1712416,Andrew Gallagher +127071,Giovanna Yannotti +584657,Alexandre Carrière +939861,Reginald Purdell +1393181,Alexander Garfin +116573,Martin Cummins +1200359,Mike Zafra +209657,Nick Thomas-Webster +1167611,Jean-Philippe Laroche +1902091,Angela Sidikowa +932036,Chantal Pelletier +389604,Sudeep +251768,Christopher Brown +1174927,Spencer Lofranco +72775,Salvatore Abruzzese +47918,Anatoliy Ravikovich +11542,Roland Toutain +549056,Kim Dohler +1102278,Bill Carr +179398,Jack Raine +1190280,Martin Maloney +1513535,Cailan Rose +1790226,Don Johnson +1342848,Yan Di-Hua +103878,Riva Spier +67505,Dmitriy Orlov +1173680,Aku Neuvonen +85338,Maurizio Merli +1252801,Emma Kenney +1395236,Mark Dumonski +1513512,Garry Pastore +239188,Leo Lapara +1659999,Geraldine Glenn +582505,Aleksandr Revva +938992,Marilyn Beck +1207941,Damianne Saint-Clair +1354630,Sydney Bell +1225057,Matt Watts +7006,Peter Miller +1651395,Richard Hills Jr. +1272933,Louisa Staples +1427286,Sherif Eltayeb +48942,Franz Zimmermann +1361557,Catherine Terracini +1265974,Mok Mei-Lam +1294402,Bill Bolz +589403,Gianni Bonagura +1106266,Tatom Pender +76941,David Lyons +224029,Flora Chan +1257963,Lee Joon +1385266,Trey Hough +6209,Kym Barrett +930894,Roman Kłosowski +108038,Tom Schuch +936571,Kelcie Stranahan +1188416,Fouad Labied +1407894,John Baker +1325577,Baken Kydykeyeva +57733,Kaneto Shiozawa +1098478,Bob Barlen +1389576,Younes Bouab +1437842,Serayah +1724702,Lale Akgün +31877,Columba Domínguez +82302,Arié Elmaleh +1020672,Pavel Gajdos +1566805,Mackenyu Arata +225401,Miko Oscard +1589608,Sara Tripp Swartout +1561601,Michal Zelenka +1518110,Richard Sumitro +239163,Yevgeni Antropov +1120754,Max Skladanowsky +88813,Nirupa Roy +66792,Valentin Ganev +1516957,Laura-Elise Barrett +1005461,Will Quadflieg +1447884,Luke Madigan +1504297,Marshall Grant +210275,Cariba Heine +16097,Jay Robinson +1796398,Michael Terlecki +1467479,Jack Clisby +168615,Joy Tanner +1521620,Ken Senga +27276,Christian Brendel +571225,Kyle Hebert +1798340,Suzanne Ehrlich +559662,Hillary J. Walker +185947,Anthony Bailey +63583,Lei Liu +1402321,János Zách +1440505,Lu Yang-Yang +122756,Dulé Hill +30863,Kathy Shower +1299784,Hristos Tsaganeas +1063263,Beth Kennedy +1059947,Silpakorn Mongkolnimite +1371518,Crystal Clarke +84178,Carl Donelson +1542882,Natalie Legendre +95040,Pietro Germi +1609486,Hsiao Hou-Tao +1135442,Małgorzata Pritulak +230972,Durga Khote +1079395,Shirley Venard +994269,Nadezhda Krupskaya +1747658,Dede Gainor +129293,Merrell Jackson +100888,Chuck Jones +1435416,Thomas Bair +23091,Bobby Vee +1074068,Adriano Micantoni +133168,Haruma Miura +222270,Imran Hasnee +1717864,Jeff DeRouen +608601,Alfred Drayton +1345153,Frances Lozada +583732,Мария Берсенева +1585263,Fuschia Sumner +60061,Steve O'Neill +168976,Meeghan Holaway +1740113,Robert Zelenka +1467352,Matilde Caterina +136977,Meredith Edwards +1025444,Rotimi +45662,Hannes Hellmann +1230383,Gail Grainger +1535054,Marisa Lamonica +1163121,Emma Molin +151909,Rico Alaniz +1576529,Iggy Berlin +944159,David Alford +1872335,Kiera Milan Hendricks +88593,Himesh Reshammiya +972860,Emil Markov +139034,Rafael Morais +1557182,Kim Yoon-hee +1367205,Mike Weerts +1505302,Nik Tyler +74539,Colin Ford +1093400,Vladimir Konkin +1897661,Federico Benvenuto +992630,Jung Suk-won +205171,Thomas Stanley +1094135,Richard Nguyen +1155085,Alicia Sanz +955065,Peggy Sheffield +591284,Malgorzata Buczkowska +568272,Wieslaw Golas +148580,Valeria Eisenbart +1835580,Gloria Young +558680,Alexandra Bogojevic +1291101,David Lee Hoffman +1488357,Kanta Ina +1402674,Vid Krkeljic +571728,Skye Lourie +96010,Scott 'Carrot Top' Thompson +1861362,Daniel Andersen Lie +1651424,Cecilia Gragnani +54476,Jordan Prentice +1357758,Loreto Aravena +998541,Victoria Barrett +1845936,Charles Richardson +1379068,Bjørn Alexander Brem +106395,Philip Campanaro +238751,Piyathida Woramusik +1605722,Issiaka Kane +1305039,Titi Savitri +78853,Carol Ohmart +1476561,Viora Daniel +1412845,Charlotte Hawkins +1278983,Vaibhav Mangle +1510581,Vincent Guillaud +571220,David Lodge +1423502,Reizaburô Yamamoto +109738,Farooq Shaikh +1184420,Emilea Wilson +1848804,Stella Gordon +550489,Robin Blazak +37916,Taryn Power +1534292,Janet Johnson +964473,Katie Savoy +1482623,Josmar Gerona +150941,Hannes Häyrinen +1035738,Mattia Zaccaro +1324495,Zazie de Paris +1246607,Itir Esen +1798885,Sam Wilmott +51429,Rafael Albaicín +90760,Karolina Gruszka +136410,Stephan Soffer +1763226,Louis Ballezzi +235775,Elena Drobysheva +1204671,Raymond Delgado +1279895,Marla Menn +1156614,Natale Tulli +929937,Stephanie Sigman +87413,Pamela Banks +83182,Daniel Brière +983468,Percy Walsh +1618512,Genevieve Hegney +1830144,Andrea Vasiliou +938640,Elisabeth Bergalló +102117,Lawrence Morgant +67089,Mai Takahashi +94693,Sylvie Huguel +935075,Annabel Morley +1774533,Jack Madigan +1342808,Roman Baskin +94005,Russell Howard +1415841,Geoff Browne +229080,Rossana Martini +78912,Rick Hill +10505,Michael Gothard +1122545,Lateef Lovejoy +108851,Eeva-Maija Haukinen +1225170,Erin O'Brien +229117,Nagma +83894,Magdalena in de Betou +1313160,Farrah Tucker +972040,Alex Esmail +1327195,Henning Nöhren +1239058,Antonio Esfandiari +107023,Emil Sitka +1886064,Axel Dupré +26160,Albert Hackett +1523167,Shannon K. Dunn +551569,Takashi Itô +1717349,José Victor Pires +1424906,Sabine Ponte +126717,Joseph Chang Hsiao-Chuan +580853,Bill Radovitch +119828,Vir Das +1768699,Tahlia Jade +1000796,Geoffrey Beauchamp +1146265,Spyros Kalogirou +89215,Angela Clarke +164777,Nina Wayne +1154279,Aaron J. Wiederspahn +1559453,David Garrick +145371,Haldun Boysan +98825,William Telaak +1647914,Natalya Pavlenkova +96013,Tassawan Seneewongse +1782610,Jesus Perez +1467916,Mika Odom +1031173,Pierre Kopp +1232688,David Caves +1193420,Pablo Domínguez Prieto +1398183,Mecdy Jean-Pierre +1614347,Xing Jiadong +1264234,Sebastian Dunn +1665246,Chioma Omeruah +1318456,Pierre Gérard +1094915,Alicia Alonzo +1198988,Julia Faye West +1851697,Jesse Sorgatz +550082,Else-Merete Heiberg +592914,Krzysztof Grabarczyk +34200,Sakina Jaffrey +1390503,Alex Boye +1161671,J. J. Nolan +1272880,Marines Munoz +1501197,Michele Griffo +1425462,Brad Koed +1545521,Colin Botts +1219601,Jeanne Sakata +1119772,Wally Moran +1650387,Gieorgiv Povoltskij +93896,Mary Anderson +1097452,Kwan-hun Lee +839196,Vsevolod Sobolev +155268,Thomas Carr +1584419,Caitlin Bidwell +1443695,John Scott Trotter +1497140,Vitali Khayev +1299134,Boris Tsipuria +1673479,Anton Monsted +54533,Anna Fischer +85775,Dick Pinner +1891513,Dale Strom +1108809,Sophie Karl +1195111,Maggie Huculak +215887,Randal Reeder +1349720,Parker Sawyers +26878,Daniel Lecourtois +1355798,Alexandra Turshen +902,Milton Welsh +1470913,Hanna Taini +223606,Karl Farr +1394430,Talia Mano +1438876,Matt Lovkis +939114,Xiangnian Li +119385,Jean Fornerod +90464,Matthew Raudsepp +1519031,Lun Ai +1524094,Ivana Korab +145587,Gijs Naber +84299,Shannon Lucio +104660,Molly Weir +1848600,Carlo Cancemi +220290,Ellie Kendrick +995627,Seress Zoltán +1283042,Ryan Kay +1531587,Corey Hendrix +1324062,Leonel Tinajero +1556836,Gulsharat Zhubyeva +98384,Annie Sprinkle +1200850,Zachary Bailess +568071,Renzo Spinetti +87381,Valarie Ianniello +942588,Max Dolbey +558787,Renate Grosser +1224996,Lauren Sánchez +1349728,Caroline Bond +1198541,Maria Maj +544725,Roberto Messina +1170105,Tian Wen Chen +1579240,Geoff McCracken +1227898,John Griffin +53261,Kim Richards +584241,Rajesh +114906,Ryōka Yuzuki +1467091,Yuri Averin +1402312,David Muscat +113818,Jenica Bergere +87669,Alexie Gilmore +1452092,Jackie Zane +1746022,Suzanne Ridgway +1372459,Rickson Tevez +94780,Chili Williams +1687765,Nina Semyonova +1766584,Edmund Ikeda +225301,Anna Bonaiuto +1319997,Günay Güner +83283,Masa Yamaguchi +1630345,Donte McCoy +1191993,Manuel Martínez Sobrado +85640,Gyula Pauer +1388688,Derek Jones +222329,Liisamaija Laaksonen +1386306,Carolee Crawford +1280398,Josh Ventura +226173,Peter Baden +117747,James Wilson +80771,John Lawhorn +1388682,Ryan May +206966,Zosia Mamet +1153608,Fatima Ennaflaoui +543366,Dinara Drukarova +1154246,Jure Henigman +240910,Enzo Pulcrano +1782579,Romina Gilmore +1048770,Lahcen Razzougui +1544186,Carr Thompson +120932,Claire Foy +76555,Jakob Oftebro +125699,Alessandro Roja +130048,Cássio Gabus Mendes +1442834,Christian Smith +149132,Jimmy Butler +21980,Margaret McAdam +1248899,Bae Soo-bin +589182,Wes Brown +1825977,Susan Buffett +1046208,Leon Kellar +97114,Roberto Camardiel +1273646,Gilbert Russell +1865179,Stephen Ogden +46066,Yiğit Özşener +1413679,Monica Wastenson +131077,Holger Löwenadler +1478018,Guy Stevenson +1254002,Erik Griffin +1175231,Ray Danniels +1436270,Wenxue Sun +1444368,Nasos Kedrakas +1254540,Fatih Artman +1511970,Salma Khan +1497676,Corky Edgar +62731,Rich Komenich +244214,Birte Tove +19187,Tiffani Thiessen +1647139,Jennifer Surprenant +1415431,Weston Rachal +1796399,Ahmed Osman +110969,Slobodan Ninković +1891495,Majid Alipour +1182760,Sophie Dalezio +1620963,Saiju Agustine +1685663,James O. Beatty +1239016,Vivianne Pasmanter +125938,Robyn Malcolm +86241,Priyanka Kothari +120886,Donna Air +119412,Peter Hesse Overgaard +55833,Mariana Ximenes +80998,Юлия Снигирь +149966,Nicholas Tucci +37405,Margaret Anne Florence +37307,Ugo Pagliai +1672329,Allie Marie Evans +1734171,Antoinette Kellerman +1478585,Zeljko Santrac +105338,Jared Martin +1541179,Sarah Wharton +1676733,Janet Cho +1351857,Tim Gordon +1127748,Jack William Scott +980211,Kora Karvouni +54465,Herbert Feuerstein +1209983,Mark Herron +1328431,Tabea Bettin +1521539,康殿宏 +95387,Ryan Ciardo +1660482,Everett Sullivan +50935,Björn Andrésen +1398053,Tae Helgeth +557090,Claude Gauthier +1897415,Olga Balan +1075550,Carmelo Petix +1329262,Tolomush Okeyev +1720702,Daisy Piedra +1776755,Sook Fen Wong +208826,Hiromi Tojo +93426,Miloš Kopecký +4511,Mark Adair-Rios +2548,Cindy Morgan +980050,Bert Dillard +117757,Andrius Mamontovas +126222,Chad Cole +223331,Sky Ferreira +87120,Deborah Raffin +236596,Dean Waite +1510796,Charles Thomas Doyle +108048,Olga Shuvalova +1749582,Polo Ramos +1356449,Mathieu Lourdel +46577,Alena Penz +18475,Kristen Dalton +112824,Aisling Loftus +1090554,Raimondo Penne +135625,David Jalil +69602,Ross Hill +129776,Tony 2 Tuff +1160232,Matilde F. Vilariño +148370,Reino Nordin +105349,Aled Roberts +37983,Natalie Press +108721,Bill Rogers +1405670,Hector Brøgger Andersen +1509562,Jean-Pierre Moutier +1818024,Aron Biedenharn Coates +1423901,Kena Onyenjekwe +1389957,Patrick McFadden +112131,Enrique Arreola +1388677,Steve Waye +1776848,Danna Louisa Wilson +1197756,Martin Gisti +1059067,Tom Blair +1224218,Kate Reinders +243795,Gisella Sofio +5373,Trisha LaFache +137827,Kristiina Nurmis +31739,Oliver Chris +150199,Meenakshi +1366982,Oliver Konietzny +86853,Pyotr Merkuryev +1188528,Gianfranco Poddighe +1289021,Shannon Esper +52722,Jacob Matschenz +583305,Don Rowan +1039680,Britanni Johnson +229611,Jean-Marc Minéo +1890755,Esther Baier +36197,Jennifer MacDonald +942179,Vando Villamil +1537019,Andrzej Golejewski +1519540,Elisa Sagardia +1510947,Mayumi Ôzora +102996,Bostin Christopher +1072572,Ester Dean +117042,Peggy Evans +145603,Margherita Fumero +1796123,David Garlick +1484027,Yoshio Katsube +34489,Eric Balfour +1572631,Sabila Moussadek +1903064,Sarita Houli Brumer +237084,Giovanni Martorana +1412785,Braeson Herold +104711,Matt Willis +109322,Jefferson Hall +1658168,Elizabeth Jackson +1055499,Shandi Finnessey +1503670,Ganindra Bimo +1225804,Tatum McCann +120412,Jennifer Edwards +1090415,Natascha Rybakowski +87358,Genelia D'Souza +1827133,Guy Fox +1313149,Matt Hodges +117550,Patricia Franklin +104646,Barbara Niven +1523165,Hannah Barron +1172113,Jared Larson +118756,Madison Mason +1217201,Giles Thomas +1364775,Olga Breeskin +1784154,Cristelle Douennelle +180518,Jerry Biggs +1624610,Larry Ingrassia +138620,Kieron Elliott +1196354,Casey Lluberes +41020,E. Roger Mitchell +116243,David P. Johnson +230096,Leslie Andrews +932097,Celestina +583401,Antoine du Merle +1204276,Stark Raven +36086,Peter Richardson +1417031,Style Dayne +14228,Auguste Le Breton +29692,Poon Hang-Sang +932514,Charles Lavialle +15600,Pere Arquillué +198847,Jessie Usher +1422282,Walter Voegler +64645,Philippe Duclos +1433881,Alf Andersen +152585,Eugene Elman +102887,Stephanie Leon +1436290,You Zhang +1718445,Robert Pekel +1441039,Piero Del Papa +928150,Gerdy Zint +1699992,Vinitha Koshy +1760865,Mandla Gaduka +980594,Vicky Peña +1401523,Stanley McGeagh +1378543,Joseph Harrell +1065770,Angelique Kidjo +1457287,Adrien Scott Robinson +1008490,Franca Viganò +1157595,Nick McKinless +1307173,Jared Moses +1397448,Cody Sullivan +1200144,Akira Yamada +51752,Leann Hunley +1038365,Crystal Napoles +108222,Dana White +1071156,Anthony Groves +1313139,Maggie Mae Fish +172809,Brad Kelly +1570539,Genevieve Sibayan +1163723,Cinnamon Schultz +95214,Andrea Evans +23226,G. Mac Brown +52348,Guy Lecluyse +1273678,Germano Gentile +1467219,Joe Keery +1505893,Yann Lemadic +100489,Rod Sweitzer +1088210,Nicolae Urs +1359494,Dorina Martinovics +1039594,Rachel Scheer +1179610,Philippe Avron +1050963,Ali Hamada +109783,Haley Pullos +1897707,Jennifer W. Evans +164343,Kristin Griffith +221974,Jan Kanyza +1074713,Clara Schwarze +25178,Danièle Delorme +1795189,Scott Harms +167564,Paul Sparks +1397772,Cyrus Spencer +1684519,Kirris Riviere +1199531,Mona Walravens +226175,Vibeke Falk +6974,Doreen Mantle +1271944,Richard Powell +1488450,Emma Chandler +1522379,Cem Özdemir +148528,Phyllis Crane +1198313,Cody Walker +1234191,Celestina Aladekoba +1384518,Darren Josephs +218767,Lutz Halbhubner +1050906,Branislav Lalević +57559,Jean-Bernard Pouy +1211858,Tim Wylton +1697250,Kazuo Hashimoto +1309410,Andrea Chen +219600,Andrew Turner +592721,JiCi Lauzon +1437339,Paul Steiger +1457254,Tom MacNeill +1579759,Chris Whitney +51201,Walter Wilz +935169,Metin Coşkun +236876,Johan Urb +56477,Michael Schaack +83507,Rich Clementi +81577,Jason Yachanin +129296,Jeffrey Mylett +193357,Eileen Dunwoodie +939370,Tommy Cresswell +1413676,Gunilla Elm-Tornkvist +133340,Helen Gilbert +1269272,Freddie Webb +1087670,Aldo Bergamaschi +1183808,Zhang Jin +95391,Candice Jackson +1322687,Beckett Gandolfi +1886308,Rayn Khan +1438966,Léo Caron +255377,Paul Bradley +40541,Andrea Di Stefano +120634,Carmine Faraco +1497056,John Spence +1619494,Turner Savage +1467994,Genevieve Kinney +35534,Simone Hanselmann +97902,Ted Monte +1277224,Robert Beyer +1816341,Mohammadi Gul +1677388,María Evoli +1035620,Maureen Stephenson +1495342,Randy Redd +1238762,Paul Whiteman +1200851,Jasper Levine +1158463,Dramane Sarambounou +590606,Magda Sonja +111923,Karan Brar +102780,Michelle Anselmo +142956,Logan White +1270377,Jean-Claude Caron +568774,Igor Dmitriev +59600,Evan Williams +1681774,Sonya Krimsky +56614,Ray Stevenson +1108183,Nihal G. Koldas +1682510,Kay Smith +1744823,Ferdinand Minga +1228206,Chad Muska +1610449,Jill Cordes +1417738,Annie Funke +1175394,Mickey Sumner +1630328,Michael Jay +166144,Isabel Cooley +1392546,Roland Nincheri +1272878,Esteban Carreno +1893381,Florence Cato +1081839,Eva Dahlman +1345406,Fred Starr +592096,Mustafa Uzunyılmaz +1871604,Françoise Perrot +1587857,Mehreen Pirzada +1185966,Lorena Iglesias +1042728,Úrsula Corberó +1492021,Rafael Cebrián +29095,Nicholas Hammond +1394447,Marcus Vanco +227615,Mika Hijii +1752148,Camiel Warren-Taylor +586535,Kristin Slaney +558925,Tucker Albrizzi +20574,Jean-Philippe Tesse +1265929,Crystal Martinez +110791,Tino Räsänen +158005,Steve Garvey +159530,Eric Olson +213518,Curt Löwgren +1211596,Jorge Valdano +234535,Roy Best +73741,Mila Dekker +1104911,Minami +65801,Jayme Knox +112465,Jenny Hanley +564035,Jing Lusi +1718461,Mayte Carol +1512709,William Ainscough +550267,Carla Tatò +1011136,Ben Adam +1126711,The Four Blackbirds +1838852,Tom Tiner +226956,Ahlima Mhamdi +1745602,Anita Granger +1121528,Charles Janssens +254500,Everett Chambers +1853894,Kelly Adams +63312,Yvonne Strahovski +545244,Élise Guilbault +1178844,Iva Law Wing-Han +1827135,Jean-Pierre Janic +1096436,Fabio Camilli +236988,Jes Holtsø +1183544,Joe Burke +54165,Zoé Félix +1207285,Jorge Pobes +79915,Secunda Smith +140970,Patty Cornell +110424,Alberto Ammann +1636788,Peter Chiamardas +1193377,Frankie Burke +1251567,Drew Van Acker +1382198,Louis Trefgarne +1148271,Angelina Noa +1190285,Peter Cassidy +47138,Pat Heywood +106828,Jason Michas +1150009,Toots Thielemans +971001,Scooter Braun +585250,Ahuva Keren +1689464,Rosa Maria Espinet +1374816,Hedda Stiernstedt +145161,Bruno Ricci +29265,Bull Montana +1194207,Cynthia Schneider +1486976,Christina Low +919804,Daniele Dublino +134609,James Pizzinato +228888,Hakim Romatif +543116,Caroline Kennedy +1795332,Kerry Flanagan +1749487,Anabel Maurín +567541,Martina Juncadella +60467,Parker Hadley +78993,Simon Donald +1471447,Calvin Holt +1029086,Miikka Salli +1760859,Chan Woo Lim +1418578,Kang Ji-Woo +578953,Emil Hass Christensen +14302,Naunton Wayne +1687932,James Gilbert +1442955,Keith Powers +560272,Gonçalo Galvão Teles +108984,Bob Crane +1017282,Monika Bjerke +1196680,Valerie Ward +89514,Konsta Mäkelä +90282,Erkan Can +1495345,Christopher Darby +1329453,Elvira Sánchez +181297,David Lipman +97505,Jack Gordon +1615572,Rinat Khismatouline +128326,George Periolat +1841510,Ian Heath +1116526,Kip Waldo +1169895,Amir Jerassi +153371,Berkeley Harris +1071689,David James +1771527,Candace Blanchard +76857,Joaquín Cosio +592320,Tyler Ross +267790,David Whiteley +1879742,Samuele Segreto +99481,Teodoro Corrà +110367,Neil Fitzmaurice +14126,Paul Bildt +1312543,Costas Kakavas +1308334,Anna-Maria Giannotti +550115,Susan Player +1850451,Vittoria Piancastelli +1082521,Ann McKenzie +1449321,Shigeru Ogura +1682328,Syd Wilder +114471,Ashleigh Aston Moore +72255,Céline Sallette +1524907,Agnese Graziani +1449296,Yves Barbaut +73751,César Chedid +176216,David Phelan +933271,Eve Hewson +110668,Katsue Miwa +1786478,Enrico Oetiker +212631,Claire Corlett +115470,Jean Gras +1134920,Rotem Zissman-Cohen +1059610,Tom Baker +1390394,James Embree +174178,Chris Hill +24290,Mariano Rigillo +85294,Barbara Goodson +79932,Joseph Upton +95463,Tyrone Parsons +1181253,Hannah Pearl Utt +1599403,Natalya Bardo +150827,Aleksey Frandetti +79344,James M. Connor +91519,Carl Ottosen +55523,Laura Vietzen +1625711,Mitch Maglio +35027,Ryan Simpkins +1489354,Robert Della Cerra +1795828,Cecily Morrissey +1894241,Nicola Maldacea Jr. +1119732,Tôru Shinagawa +1459154,Amanda Goff +1869058,Lexi Noel +145187,Steve Clark +113288,Hollis McLaren +1416462,Brian Anderson +104658,Hugh Burden +1691940,Tiffany Bedwell +580230,Hervé Sand +1192055,Aleksey Barabash +1232673,Deborah Cornelius +930327,Nobuya Shimamoto +1356262,Kaya Sakrak +104354,Toni Lawrence +1049724,Matt Fentiman +1470815,Joey Eugene +1496065,Melissa K. Gilbert +1717904,Chloe Guidry +1514065,Charlotte McKinney +147344,Liliana Trujillo +559328,Mathew Greer +1676807,Tom Ashton +1647314,Stephen Anthony Bailey +1562809,Adah Glassbourg +584725,Jaya Seal +1646009,Henry Surentu +975536,William Hardy +77315,Robert Moloney +171525,Candice Rose +1528488,Tara Rheaume +1553393,Kathy Sullivan +209884,Emil Hostina +952262,Gerald Lawson +1879762,Chiara Alberti +168994,Kimberly Quinn +235060,Roman Ageyev +1183233,Wallace Chung +1884135,Pauline Vaubaillon +1018848,Adriano Braidotti +1469148,Jung Joon-Young +231473,Rémi Gaillard +1481199,Béla Baptiste +563576,Carey More +1080234,Larry Littlebird +1706102,Gabe Vargas +1411622,Jesse Moore +1754428,Kayla Cangiamilla +1508585,Declan Hannigan +46433,Dick Clark +1286840,Melanie Schmidli +38863,Alice Taglioni +128251,Pino Calabrese +224182,Nick E. Tarabay +1175069,Maria Ribeiro +1352655,Peter Anderson +112328,Christopher Backus +117748,Richard A. Kellogg +1429739,Melissa Ten Eyck +1182657,John Emmet Tracy +564329,Areana Cirina +1242776,Bailey Noble +1518351,Michael Molin +131739,Kendra Sue Waldman +45471,Camille Keaton +1098600,Hiroki Hasegawa +1418650,Agnile Sambou +1260038,Ron Funches +1394460,Shane Leckenby +14432,Patrick Kennedy +1157296,Mike Johnson +1054306,Jaiden Kaine +1316401,Mario Tardón +72220,Therese Hämer +1496063,Sarah Frances Conkle +1489476,Akaki Kvantaliani +210573,Lydia Hearst +97051,Beatrice Miller +126509,Misa Shimizu +1690348,Lee Ji-hoon +1854056,Claire Ashton +117074,Guy Standing +1465852,Stephen Monroe Taylor +115125,Chase Ryan Jeffery +106622,Ebru Akel +58908,Carrie Fleming +213659,Barry Robins +1337930,Richard Záhorský +1152987,Flavien Tassart +89100,Lillian Harmer +143668,Viktoriya Romanenko +212809,Carlo Marks +1230936,Justin Moorhouse +95724,Bruce Edwards +15298,Rachel House +135354,Grace McDonald +1187402,RJ Ramesh Thilak +748,Paul Maxwell +101267,Jodie Fisher +81925,Dan Janjigian +122482,Hiroko Emori +108696,Susie Abromeit +601881,Ram Sethi +1605813,Clément Lerosier +1291696,Michael Yebba +147991,Phyllis Allen +105429,Jang Jin-young +1819523,Babu Annur +1239793,Eunice Cho +1592999,Christina Everett +1682540,Miriam Lee +1257839,Virginia Mirea +114929,J.J. Boone +1152083,Sabrina Carpenter +1271626,Jerzy Zalewski +1869090,Sean Bogaerts +36322,Valentina Lodovini +1639966,Dave Reachill +1465683,Jeanette Samano +224429,Yvette Andréyor +1821523,Ryan Sturz +119121,Moses Znaimer +1495089,William Nelson +1901234,Nikos Kordinos +1588351,Joanna Bronson +151623,Todd Martin +1094734,Maria Kallimani +135726,Simon J. Berger +446627,Daniela Lumbroso +107761,Sergei Dreiden +1114540,Sigrún Waage +211738,Mark Dexter +140182,Matthew MacCaull +1358954,Elizabeth Kouri +1865893,Richard Bevan +1094124,Dyson Fyke +1450816,Artie O'Daly +1809693,Ryan Cowie +1808856,Nuria Lage +1299080,Kiran Friesen +1592165,Casey Hendershot +1446109,Ricardo Osango +1207273,Christa Oliver +1104323,Cambell Westmoreland +559579,Anne-Élisabeth Bossé +1330300,Choi Jong-Hoon +1289120,Shankar Melkote +1392954,Isabelle Landry +1155584,Kathleen Christy +64417,Jenő Hódi +1363529,Jean Benoit Mollet +108534,Adam Butcher +24071,Jodie Ahlborn +70422,Kin Shriner +1031163,Margarita Papageorgiou +1615534,Gaspard Schlatter +1047261,Ivo Arakov +1158069,John L. Armijo +131009,Natalie Radford +1274996,Pif +100491,Marilyn Adams +1435702,B. V. Doshi +1421013,Demetris Emanuel +1799839,Paul Goldberger +6123,Troels Lyby +145234,Serge Gisquière +94431,Waleed Zuaiter +78715,Franco Oppini +1273235,Stephen Conroy +1284066,Truyen V. Tran +1130195,Wong Yan-Mei +1139665,Kiray Celis +125929,Kameshwar Mishra +27288,Mohamed Bensouda +108900,Silvio Orlando +1185276,Thupten Dhargyal +1593377,Elvira Safiulina +51017,Ludwig Schmitz +554495,Yui Asaka +231842,Rafael de Penagos +1764363,Emily R. Johnson +972492,Isabella Crovetti +584175,Luigi Zerbinati +1626187,Kai Coleman +1511960,Spike Christie +229262,Michelle Marquais +851784,Mackenzie Foy +207596,Janin Reinhardt +1013929,Dawson Dunbar +105348,Angela Pagano +40220,Kevin Brodie +78320,Bryan Callen +588760,Helena Anýzová +1754140,Tracey Ferrara +1112966,Meenakshi Thapa +1824304,Zac Whitehead +120174,Steve Calvert +1599241,Richard Banham +1795085,Aisha Prigann +1048503,Marcel Cobzariu +1086559,Conner Gebhart +1271649,Padmini Ramachandran +1583292,Patricia Kay Jones +1018580,Theresa June-Tao +1500222,Tyde Kierney +3185,Leonard Cohen +1185421,Ofelia Montano +1356191,Alan Chan Kwok-Kuen +1537526,Dustin Quick +78452,Gina Carano +39673,Daniel Pommereulle +1522205,Julliën de Roover +1089499,Du Haitao +41063,Silvano Tranquilli +1285066,Carey Lee +1060370,Iris Lang +1882931,Gaetano Altamura +1152387,Frank Richardson +1060301,Hideki Nakano +21429,Sam Page +1307523,Jake Miller +85668,Vivek Oberoi +49352,Sally Struthers +51002,Renate Ewert +238105,Sergey Makhovikov +1006594,Wang Zi Wen +53842,Volkan Özcan +1801269,Giselle Irrazabal +1223185,Miles Fisher +115331,John Indrisano +1173214,Tong Liya +30066,Rhett Giles +1330446,Lee Yi-Kyung +1097796,Bengt Andersson +49326,Jonathan LaPaglia +1602212,Dan Renalds +1635792,Yang Yang +928619,Greg Connolly +587931,María León +1085661,Jennifer Azano +1100034,Joana Cartocci +1470867,Bryan Hands +1578220,Levy Tran +238920,Menderes Samancılar +1327024,Irina Temicheva +1589523,Tommy Truex +1327771,Véronique Baylaucq +1275874,Anna Lenartowicz +486603,Anna Hutchison +128220,Antonia Truppo +1865129,Maddalena Fellini +79935,Alison King +115741,Wouter Hendrickx +101734,Jillian Swanson +1648793,Ben Tan +5996,Anna Asp +77916,Carolyn Moss +1039533,Drew Sawyer +1393538,Jan Caruana +9767,Georges Marchal +1878924,Jill Ben David +1240551,Carl Rice +1762641,Kirsten Meenan +1112012,Dmitriy Kulichkov +239342,Madeleine Sologne +146550,Sola Aoi +1042755,Ana María García +1631177,Nazareth Dairian +584048,Irina Znamenshchikova +5463,Marion Darlington +1764139,Max Van Holt +24054,Harald Schrott +64585,Dimitri Rafalsky +85724,Akhilendra Mishra +47857,Jonathan Cecil +46923,Billy Maddox +8192,Joe Spano +1359967,Khalil Beznaiguia +1081290,Róbert Arnfinnsson +113809,Kajal Agarwal +1223149,Simon Dutton +1541180,Mark Berger +1111108,Jason McNichols +119248,Daniel Sharman +220765,Emma Cunniffe +81678,Pooja Kumar +69489,Jasmine Trinca +1156309,Vitalij Porshnev +71893,Tucker Prentiss +1150148,Göran Gillinger +1524413,Nessim Azoulay +53675,Kunal Kapoor +1753720,Catherine Lavoie +107809,Alexander Rafalski +1223886,Elizabeth Henstridge +1286744,Steele Stebbins +1817400,Sasha Spencer Atwood +1366286,Clotilde Sabatino +994402,Peter Meersman +136134,Jenn Liu +87038,Joanna Kerns +1271651,Amarendran Ramanan +222121,Ben Schwartz +1879647,Eric Paykert +129707,Wakana Sakai +1180936,Sean Patrick Murphy +583514,Milva +942025,Edmundo Espino +126286,Mitsuki Saiga +589246,Teresa Szmigielówna +1754483,Michael Patrick Kane +39288,Heinz Marecek +20579,Frédéric Botton +1340664,Ava Acres +119301,Carmen Molina +1155103,Bryan Rostron +1068699,Hughie Restorick +1272877,Gepe +1462257,David Roberts +29431,Franco Balducci +1270705,Jim Adhi Limas +1044225,Roy Bosier +1470813,Barbara Carrillo +1825796,Kristen Shepherd +1371320,Shorty English +1347952,Omid Zader +78553,Josh Barnett +1424964,Robert Budak +72857,Anna Madeley +1243955,Jun Karasawa +1300569,Paula Sánchez Ferry +1099268,Philomina +302432,Aleksandr Klyukvin +1435355,Vince Castello +145184,Sandra Echeverría +1581108,Kirstyn Konig +1836146,Rudy Dobrev +87460,Simone-Elise Girard +931906,Viktor Stanitsyn +1305303,Judith Abarbanel +112327,Michelle Lombardo +1629332,Charles Baca +376404,Mark Polley +1516594,Mickey Chu +1636691,Adam Bajbak +932489,Jian Cui +45580,Massimo Vanni +543732,Lauren Petre +45229,Kirk Alyn +136359,Arata Shibata +1687981,Andrea Blarzino +155933,Adrian Sparks +96958,Tony Yang +55091,Neil Brown Jr. +1293394,Arryn Zech +217272,Brooke Hogan +1467655,Veriano Ginesi +90325,Luca Calvani +147190,Claudio Castrogiovanni +1286524,Sabrine Ferretti +133556,Bedrich Glaser +1476857,Emilie Juul Skøtt +1200310,Achille Ridolfi +1444882,David Imani +205881,Luis Javier +1117082,Tammy Brice +123569,Lona Andre +1673434,Haidee Gaudry +30664,Rosalba Neri +1012169,Mari Carmen Alvarado +1692064,David Jacobs +1585219,Brittnee Habbib +1872177,Joe Spinuzzi +1677216,Percy Taira +137715,Evelin Võigemast +235547,Connor Cruise +1771603,William Cowboy Reed +169907,Jay Pickett +90283,Müjde Ar +118344,Pétur Jóhann Sigfússon +1777435,Mieko Wertheim +1830449,Bill Hibbert +1261092,Akin Gazi +979851,Maureen Sebastian +1871281,Enrico Pozzi +1239088,Phil Ivey +79037,Kenichi Matsuyama +1436354,Andrew Arrabito +130567,Meaghan Jette Martin +1418993,Ronald Baker +1041300,Wanda Capodaglio +1827930,Sophie Lee +106621,ismail Hacıoğlu +1079317,Richard Hell +568029,Diana Franco +109996,Clifford A. Pellow +1870841,Georgi Khorkov +220573,Sheila Vand +1416709,Vikram Kapoor +154839,Danielle Bisutti +1654649,Neka Zang +1476058,Kate Easton +20795,Jean-Pierre Marielle +203227,Rikki Gagne +1140091,Jeff Mash +1081470,Amy Lennox +1873426,Mayka Dengrá +70194,Georges Audoubert +1098420,Guglielmo Inglese +968977,Omer Barnea +564891,Janine Chang +1084956,Laurent Rejto +1380492,Miles Mussenden +1175342,Mau Ging-Shun +584252,Kalpana Ranjani +1198810,Cristopher Hirsh +553634,Alice Tissot +228719,Laurent Capelluto +1426883,Chou Chung-Wei +27634,Gideon Turner +1354938,Jacques Jou-Jerville +1045403,Poonam Jhawer +1307362,Daniel Friedrich +123725,Abigail Spencer +1605803,Nicolas Capelle +1084911,Go Ayano +1459150,David Cohen +1737862,Alex Safi +86670,Georgiy Vitsin +219579,Alex Albrecht +154153,Sean Anthony Moran +108861,Timo Julkunen +579204,Lene Brøndum +1038456,Kalilah Harris +1073410,Joseph P. McGlynn +1894994,Wilf Walters +47839,Nela Boudová +1875067,Mimma Lovoi +113544,Sean Caffrey +1418258,Byron Freiter +227794,Randall Carpenter +1562084,Nicholas Sharratt +1620492,Nayli Russo +1872367,Lisa Dahling +129572,Massimiliano Amato +1521538,劉傑 +1422170,Irene Coleman +56552,Sean Chapman +1422736,Elizabeth Miller +1496325,Mehmet Faith Dokgoz +1538825,Ben Keller +55784,Yosuke Eguchi +1030578,Aída Gómez +1152394,Christopher Craig +1504556,Francisco Pando +98285,Bella Thorne +20804,Adam Alexi-Malle +585675,Jia Mae +1452395,Sylvia Burrows +173251,Alison Moir +1102514,Brian Sutherland +89502,Martti Suosalo +930714,Paulo Avelino +1689167,Catarina Abdalla +91609,Joe Rogan +997303,Autumn Dial +61784,Goran D. Kleut +1869042,Tiffany Cosey +37177,Frank David +1207251,Taylor Kibby +128304,Viktor Avilov +1075431,Artur Rubinstein +1415725,Wende Snijders +131870,Daryl Wein +122571,Laure Duthilleul +118755,Keith Middlebrook +1469688,Cuco Wallraff +67953,Joe Stewardson +1476037,Maya Kazan +61511,Karen Anderson +134417,Ahmad Kaabour +1522998,Lucito Lopez +211828,Maxwell Glick +1508116,Garrett Black +211599,Charles Henry Wyson +1784660,Lindsey Marie Nelson +1183671,Mark Daugherty +1233262,Genevieve Morris +1397133,Jared Doreck +1335825,Shin Sung-rok +1016077,Léticia Belliccini +41266,Mark Lindsay Chapman +232864,Timur Rodriguez +1056212,Bilal Bhat +1069637,Thomas Solivéres +1436262,Peng Zhou +1303088,Michal Roneš +1723617,Grainne Keenan +566786,Jared Day +1626695,Marcus Fok +51038,Simon Reynolds +1827451,Eliane Juca da Silva +197356,Sandra Dorsey +17055,Thomas Wendrich +1200479,Albie Casiño +6537,Muriel +106660,Ruth Vega Fernandez +110096,Iftekhar +104939,Marie Liljedahl +1569659,Dániel Gábori +1869049,Angel Jackson +150944,Sonia Noemí González +34422,Francis Pierlot +588317,Teresa Harder +1247954,Takashi Yamanaka +155028,Isaac Lipscomb +1180941,Kerry Knuppe +931194,George Melford +42445,Gotthard Lange +1522256,Noriko Sakura +109069,Shirley Jo Finney +1648789,Rasmey Kep +1033002,Nicoletta Piersanti +1196009,Kate Costello +1535050,Ishak Issa +1796393,T. J. McGibbon +1380101,Travis Barrera +1384401,Nick Pasqual +40738,Wolfgang Stegemann +1841523,Ina Lubin +82381,Tonantzin Carmelo +1211538,Maja Barelkowska +1479737,Rachael McOwen +1646011,Gino Makasutji +579236,Ted Pendleton +1122432,Camie Boel +1455192,Aristide Caporale +1811848,Mario Costa +1240938,Roy Peter Link +81860,Ai Orikasa +1299060,Katherine Sigimund +1647426,Nick Peine +1294270,Toshiko Onizawa +1397787,Jenny Dailey +1635137,Patrick R. Walker +592530,Åsmund Høegh +1631704,Peter Krag +39035,Barbara Markham +149511,Andrew Ducote +1351638,Togo Yamamoto +47376,Gracie Fields +1057933,Miyu Yagyu +1879700,Reza Hashemi +109453,Ward Kimball +142643,Zhou Chu-Chu +2106,Walt Disney +97033,Henric Holmberg +1670751,David Devereaux +1621706,Zhang Yuexuan +58006,Jodi Lyn O'Keefe +124880,Carol Haney +44296,Gwynyth Walsh +1890753,Verena Poxleitner +69150,Marie Matheron +143599,Diego París +1801192,Liv Bagley +1334151,Justin Brown +1471448,Mina Kolb +58928,Pat Crawford Brown +1769821,Vanessa Rose Rivera +85996,Tim Ryan +77908,Fabrice Adde +1313397,Fanny Cadeo +132505,Richard Sun Kwok-Ho +1076083,Katarzyna Bargiełowska +1601439,Jacquelyn Twodat Jackson +1497463,David Allen +1395050,Michael Ellison +1601528,Kanitpat Premkij +39476,Lina Polito +69835,Mei Fang +1045490,Anita O'Day +150059,Al Foster +1863671,Morgan Rae +1028525,Chiyoko Sakamachi +98045,John Gilbert +1113440,Harsh Mainra +1457536,Eliza Kiss +1265065,Dejan Loyola +138970,Irina Voronina +930730,Innocent +207389,Rob Yang +1496259,Brad Moore +1188084,Gary Kerr +1283563,Marcus Lachmann +105685,Giovanna Mezzogiorno +5203,Alicja Bachleda-Curuś +239271,Jeremy Strong +551801,Zenji Yamada +1340866,Daniela González +1872361,Chelsea Florko +1092235,Jerome Hill +31168,Kiele Sanchez +1438860,Alison Van Reelen +96764,Frank Lawton +75070,Christine Bottomley +58974,Isabelle Constantini +122199,Gary Oliver +1097800,Dieter Augustin +93815,Dr. Tom Hull +1459889,Anna Nieborowska +209505,Thom Bishops +1136483,John Doyle +1444112,Jesse Inman +1697247,Sukio Fukuoka +1569909,Merrik Foune +39793,Anatoli Romashin +1581097,Zoey Vargas +1436269,Meihui Chen +1696752,Teeadora Paz +1531256,Julien Josselin +1332335,Rune Melby +560254,Jordi Sánchez +1271018,Jack Crawford +235923,Dmitri Solovyov +148860,Robert Ames +496,Rick Carter +141095,Kathy Horan +1483419,Kô Hayami +1338246,Yare Michael Jegbefume +1469278,William E. 'Red' Blair +1455347,Tihana Lazović +933548,Chase Conner +37606,Christian Charmetant +1683836,Toru Iwatani +83020,Song Seung-heon +98951,Garon Grigsby +1055699,Victor Kwasnick +19526,Maria Sebaldt +1459817,Jimmy Fell +1031257,Sofía Sisniega +1190276,Fiona Dolman +172101,John Thomas +22633,Ingrid van Bergen +1464493,Louise Springer +1679369,David Mills +1287263,Jeppe Beck Laursen +1687982,Andrea Salerno +42327,Angela Cornell +62856,Seth Meyers +13680,Marc Caro +1835281,Joel Bauschatz +1622097,Morgen Dukes +1635143,CJ Jones +98292,Roxana Ortega +1218825,Don Li +948762,Craig Cackowski +1339140,Mohan V. Raman +1466169,José Báez +1546153,Stephen Walden +172883,Elizabeth Weinstein +195254,Tracey Wilkinson +240350,Angelina Mirimskaya +1302534,John Halbach +1115154,Julie Wakefield +550721,Mae Murray +95683,Michael Melvin +1170640,Andrés Zunini +1205411,Kate Sannella +213480,Noriko Maki +936728,Mario Merola +53397,Christina Aguilera +106032,Kumpanat Oungsoongnern +126124,Humphrey Lestocq +172667,Tony Rosato +74006,Vroni Bittenbinder +1106490,Kiran Karmarkar +582186,Sathyapriya +1052133,Arlen Aguayo-Stewart +1302833,Sophia Jurewicz +395295,Christine Vouilloz +1029125,Ara Hakobyan +140495,Julien Schoenaerts +1167735,Bo Linton +94936,Johnny Weissmuller +92418,Per Burell +98830,Al Jarvis +992386,Alex Livinalli +1842200,Maria Laskowski +1785298,Kaitlyn Sapp +1804168,Ryan Poole +1059943,Kittitat Kowahagul +1532924,Anne Johnson +75946,Fab Filippo +1574235,Anthony Tarantola +165368,John Elerick +1459343,Carl Nel +237779,Boris Tokarev +179461,Alfred Linder +1590282,Thom Rivera +48481,Fabian Krüger +1423166,Willie Davis +114254,Verónica Echegui +26876,Philippe Mareuil +1477243,BJ Tanner +164390,Joe Holt +28514,Àlex Brendemühl +1205457,Eino Kaipainen +1708250,William Decker +18805,William Lundigan +1765440,Patrick Arnez +550855,Lerato Mvelase +1381511,Rosita Ramírez +1506482,David Chen +127539,Meredith Morton +1077537,Franck Gastambide +95987,Louis Graham +85732,Shamita Shetty +1683958,Greg LaSalle +1423837,Shannon Maree Walsh +1180044,Seiya Hiramatsu +1158036,Chui Fat +1094568,John DeLuca +235135,Irit Kaplan +548717,Nicolas Amato +558911,John Woodruff +1076591,Pere Ponce +1445074,Simon Magaard Holm +1379239,Güzin Özyağcılar +247601,Charles Dorat +96474,Miwako Ichikawa +77131,Pascal Elbé +1585167,Rene Michelle Aranda +1599032,Elzbieta Latenaite +135622,Isabelle Estelle +1754638,Pearl Chanda +535167,André Gabriello +1496484,Krunoslav Belko +45611,Pat McCormick +141028,Johnny Carson +1890118,Jeremy Zylberberg +557945,Enrico Glori +24288,Alessandro Preziosi +1851695,Jessi Nakles +1155281,Tio Pakusadewo +938568,Makarand Anaspure +1209,Elinor Donahue +101602,Fernando Arcangeli +1508655,Julien Boissaud +996558,Alena Mihulová +1169503,Jere Laukkanen +1106888,George Dugashvili +1160310,Chrissie Fit +1663238,Michael Cameron +94835,Eric Barker +1091875,William Calvert +1649191,Jonathan Louis +98105,Noel Fielding +101825,Kishore Kadam +1270114,Jeannie Chang Yung-Yung +1077253,Belinda Palmer +196157,Joseph Breen +1278162,Kim Soo-an +1588817,Martynas Budraitis +990125,Fernando Noriega +1325691,Leonard Wu +135586,Monique Alexander +1193558,Nezam Manouchehri +1360176,Tenma Shibuya +1441643,Hiroko Nakagawa +37609,Christian Bouillette +103947,Otto Hoffman +100150,Susan Damante +1290652,Brittny Sugarman +236028,Lily LaBeau +1271648,Elie Alouf +31504,Joan Copeland +72484,Elle Kull +1683645,Philippe Maymat +1878815,Pablo Bubar +204367,Frankie Valli +1695666,Raven Felix +175353,Lee J. Campbell +1400211,Wolfgang Cerny +227860,Angéla Stefanovics +1307604,Chloé Jouannet +1190310,Emily MacLeod +1406502,John Sharp +1017306,Valentin Popescu +83838,Yuri Stepanov +1180423,Malik Bentalha +1874726,Kristian B. Sørensen +1661474,Tony Ortega +128211,Peg Allen +1051831,Chico Roland +1486761,Adrien Benn +538318,Emilia Crow +1200884,Yoichi Osugi +1475255,Laila Zaid +499175,Madeleine Peters +1286539,Kira Legg +1735554,Kevin Arnold +54940,Gar Moore +144365,Jay Kirby +1523038,Christina Mølgård +1386311,Mike Carreon +99849,Dale Ishimoto +97823,Joe Estevez +1614738,Blu Aruag +108854,Riitta Salminen +1841543,Camille Cirurgiao +1363816,Jay Morley +1215086,Craig Raisner +583881,Nobuhiro Yamashita +1191711,Kil Hae-yeon +1050993,Peter Hintz +140103,Yûjirô Ishihara +120680,Nurgül Yeşilçay +237756,Atticus Mitchell +29123,Paul Wegener +1019578,Peter Dillon +85779,Wilson Bethel +59638,Diane Fleri +1102680,Ippei Sasaki +103078,Jeanne Carmen +53280,Tyler Posey +152936,Joshua Cadman +1648773,Houn Pilot +61220,Ina Barron +1848653,Lala Rudge +1876320,Carlo Conversi +40201,Guy Madison +939471,Philippe Résimont +138882,Ervin Melton +1194120,Matt Cinquanta +78408,Merik Tadros +32535,Jim Capobianco +1785911,Sian Francis +96058,Noel Madison +555190,Kyôzô Nagatsuka +1689915,Garth Holcombe +1733801,Connor Ratliff +159386,Kristoffer Polaha +1103699,Rainer Langhans +1353657,Johnson Phan +58399,Leela Savasta +128674,Ennio Girolami +131763,Jack McClelland +1569228,Karl Walcott +54930,Robert Van Loon +1044836,Patrick Rutnam +1414108,Flynn MacArthur +1064501,Fiona Livingston +1486797,James Alexander +1401338,Hiyori Sakurada +84933,Mary J. Blige +1643988,Johanna Penski +1074448,Martufello +1848657,Marcela Lahaud +1354722,Izaak Smith +995518,Andrew Bennett +86903,Dallas Page +1342054,Joel Thingvall +235850,Reynaldo Pacheco +947564,Rocket Rodriguez +88920,Tuija Ernamo +1230198,Jim Earl +132478,Mara Berni +222729,Elisabeth Sand +1386160,Stephen Jennings +1838558,David Simpson +102026,Jacques Sernas +1795182,Anna Kim +90424,Mario Andretti +1708194,Kurt Meister +1740112,Jacci Lindsey +1560252,Frank Holley +1337235,Bonnie Pritchard +1180696,Beck Bennett +1783264,Annie Jacob +153997,Warren G. +235806,Waléra Kanischtscheff +127248,Luis Gnecco +937641,Marie-Philomène Nga +9611,Ivan Bobrov +149453,Krissy Carlson +95539,Anat Waxman +232203,Karoline Chmelensky +1419616,McKell David +967540,Carrie Wiita +225473,Paul Marc Davis +131630,Edoardo Pesce +1522148,Tim Higgins +84659,Janis Paige +864924,Samuel Whitten +45468,George Devine +232205,Eveline Hall +1046202,Candice Coke +169676,Jon Curry +1580370,Tekla Nyman +101071,Evalena Marie +1077383,Eisaku Yoshida +1556838,Erzhan Nurymbet +1597847,Gigi Rizzi +137003,John War Eagle +1237618,Leonard Robinson +126877,Stewart Bick +226852,Felix Engström +1317373,Elva Alcandré +1176928,Sibyl Harris +1348474,Camille Cottin +222322,Jukka Sipilä +1886312,Joshua Smallwood +1546417,Mohamed Mahmoud Ould +1784322,Ollie Mitchell +1581096,Elise Vargas +1574108,Horst Weinheimer +590269,Warona Seane +110250,John A. Lorenz +1055117,Bernhard Eiger +133382,Eddie Bravo +25636,Louis Sheldon Williams +1189711,Kenjirô Nashimoto +1196539,Jamie Grace +1049532,Meto Jovanovski +201074,Richard Clarkin +1360087,Aidan Potter +1751950,Hilly Gordon +97844,Robert Pralgo +4554,Ute Cremer +1267389,Zach Preston +1179888,Philip Schurer +38707,Jason Dolley +1507141,Ryan Keating +9323,Eric DaRe +1323946,Atsushi Arai +1080211,Kelly Marie Berger +567783,Kim Kkobbi +130002,Nona Griffith +99926,Rodney Bedell +652540,Lyubov Malinovskaya +1151395,Maria Ros +1179885,Loann Foissac +95232,Denice Duff +151371,Darla Haun +43596,Jacob Browne +1693390,Joaquín Climet +1214513,Jimmy Vee +67298,Linda Dona +1841010,Bluebell +59224,Michelle Page +143393,Ata Demirer +1838215,Tamer Burjaq +944605,Alex Fatovich +1315950,Skyler Vallo +1258702,Sadie Calvano +24610,Martine Brochard +174119,Nancy Saunders +113330,Aleksey Poluyan +105796,Allene Roberts +1401868,Jane Brady +1696238,Cruz Gonzalez-Cadel +1743097,Hannah Stark +1176524,Anastasiya Georgiyevskaya +1206014,Clare Agius +1293540,P. Ravi Shankar +558550,Adelheid Seeck +168778,Noah Cappe +1260716,Tyler Elliot Burke +1392152,Dan Levy +1319650,Lloyd Adams +32662,Umberto Smaila +1173841,Jimmy Fontana +1310865,Nadya Cazan +39672,Haydée Politoff +1424209,Erik Detusch +1593121,Michael Steven Costello +1425934,Nicholas Galitzine +1383869,Trevor Robins +1522204,Johnny de Mol +81390,Aaron Carter +1223916,Bruce Holman +555296,Tatsuo Yamada +1364474,Jouko Turkka +161288,John Himes +1134745,Teneil Whiskeyjack +1692069,Mary Shelton +1151445,David Moreau +1800036,Kelly Kierans +134178,Patricia Richardson +8204,Charly Hübner +1501198,Faysal Abbaoui +1204686,Brandon Diaz +1182686,Geetanjali Thapa +82191,Sharlto Copley +590312,Eduardo España +269695,Manuel Tallafé +103298,Michael Reed +34700,Denis Kirillov +1029590,Barbara Valmorin +1040017,Arévalo +1488483,Walter P. Lewis +234364,Miki Imai +1493821,Patrick Shea +1534370,Daniela Martani +1269289,Ilya Sobolev +1261694,Barkhad Abdi +85911,Mira Wanting +13904,Louise Brooks +1115219,Pauline Knof +236632,Paul Allio +87330,Sanjay Narvekar +226915,Bianca Gervais +88808,Peter van den Begin +589656,Aline Andrade +105602,Cathryn Hartt +1087613,Nuccia Fumo +101684,Jessy Greene +96818,Anna Camargo +524503,Noah Lomax +561641,Sôtarô +1630255,John McGlothlin +16797,Karl Fischer +84486,Jim Bannon +1342466,André Dubosc +1439853,Arantxa Aranguren +2828,Franciszek Trzeciak +1423420,Nicholas King +133656,Yukijiro Hotaru +564590,Franco Coop +1621714,Tracy Leung +1408697,William Collins +1203022,Pekka Räty +1307911,Dinah Hinz +228780,Francis Lalanne +156660,Patti Allison +1737549,Nina Zorskaya +553345,Mami Okamoto +1403283,Pierre Piérade +1716521,Ethan Daniels +1274075,Frank Otto +129238,Tal Friedman +1506297,Mason Shea Joyce +1309678,Jennifer Torrance +813,Pierre Unik +1286020,Emily West +1127866,Nick Falk +1863910,Gustavo Trestini +99861,Frank Olivier +1605911,Ewa Skonieczna +1699688,Rhea Pagar +120612,Randi Ingerman +1139722,Tony Tam Chun-To +1147891,Cassie McFarlane +165402,Diane Jergens +1695648,Heather Cowles +1001068,Torsten Colijn +1619455,Na'ama Shoham +98187,Allen Lewis Rickman +1296187,Nika McGuigan +1561252,Liv Scharbatke +18414,Helmut Körschgen +215843,Max Carver +135669,Christos Tsagas +1604346,Krystyna Mazurówna +938003,Jeffrey Schmidt +1103227,Harish Uthaman +77634,Leigh Lombardi +130847,David Portner +1747321,Marja-Sisko Aimonen +1238457,Martha Howe-Douglas +1448287,Paolo Maria Scalondro +1427195,Martin Hron +131172,Jessica Lancaster +1535059,Alia Seror-O'Neill +98410,Nefetari Spencer +100932,Luca Sportelli +191179,Carole King +235092,Koichi Todome +569861,Michael McHale +544008,Lander Otaola +114838,Lyonel Watts +1683847,Mark Sparks +1656870,Piyapan Choopech +1367241,Amanda Clayton +984377,Peter Cilella +148052,M. S. Narayana +1120652,Viola Dana +1187745,Leonardo Botta +1441222,Jelle Palmaerts +223144,Kim Sung-su +1315421,Claudio Tolcachir +572646,Sigi Zimmerschied +1269474,Tadayoshi Ueda +65464,Chico Buarque +129243,Maor Cohen +1387200,Vladimír Škultéty +60737,Vicki Lawrence +1691982,Sammy A. Publes +1411820,Aurora Giuliani +98251,Sebastián Silva +190900,Ted Whittall +1676881,Alizée Fischer +236811,Olga Orlova +230580,Pedro Laginha +437100,Taylor Gray +83797,Vincent Lacoste +155134,Jennifer Mudge +1035597,Frédéric Pierre +1648791,Haik Zarian +1301293,Paul Adams +1734262,Damon Buckley +1174686,Vivien Li Meng +931650,Paul Weiner +1221679,Rebecca Corry +86889,Son Ye-jin +1538576,A.J. Ackleson +1187201,Jeremy Taieb +1405921,Ryuji Yano +129501,Menna Shalabi +1352976,Colin Follenweider +153621,Sondra Currie +1862801,Lev Shabarin +56389,Steven Pasquale +1312173,Tom England +544021,Marie Louise Wille +97771,Marilee Earle +116652,Ray Dempsey +1051811,Susie Park +1052112,Brianna Barnes +78538,Gianmarco Tognazzi +1169983,Umberto Procopio +110724,Aruna Irani +229249,Dilip Kumar +1201668,Raija Paalanen +71051,Wang Baoqiang +97206,Adam Faith +157998,Antony Ponzini +14168,Hildegard Knef +1506904,Jesse Bob Harper +184465,Agustín Isunza +1280970,Dániel Czupi +1204675,Alex Barrios +1122433,Agathe Cornez +1184334,Genevieve Capovilla +1298431,The Four Tones +1362720,Clarence Handyside +1648786,Hout Sithorn +1438304,Mark Joyce +113521,Jon Jones +1676775,April Wilkner +1446108,Jan Niklas Köhler +81243,Romi Park +11770,John Carpenter +71811,Harley Adams +236533,Yvonne de Bray +117999,Jake LeDoux +1085735,Kynan Griffin +139885,Mike Nelson +1394144,Caryl Little +96476,Kazusa Matsuda +1266992,Vadim Novikov +92011,Sam Kydd +145789,Bruno Odar +143354,Yvette Guilbert +458843,Cee Lo Green +141051,Lew Hopson +78727,Jenn Murray +1499542,Elsie Gatien +144100,Toshiko Fujita +1044255,Alex Ross Perry +1744989,Evagelia Siriopoulou +185391,Geoffrey Bateman +143551,Oldřich Vízner +1486446,Federico González +1690043,Anita Gillier +51889,Dusan Antonijevic +1547797,Lukáš Král +131764,Angie Brown +1262570,Hanna Binke +1096831,Wade Dumas +1077139,Aitziber Garmendia +1905158,Cheryl Fowle +101843,Lee Ranaldo +1084790,J. Paradee +1848672,Edi Raffa +1758524,Balkrishna Doshi +590781,İhsan Yüce +1108978,Dominique Van Malder +1161019,Zu Feng +941842,Denise Gagnon +110283,Bob Byington +1764168,Rick Schuldt +1169139,Ruth Armas +1223454,B. Todd Johnson +142660,Lisa Vicari +1506824,The Singing Riders +1175999,Chung Yiu-Nam +19907,Belén Rueda +1507488,Ellie Dickens +1198776,Samantha Castillo +27662,Mohamen Mehdi Ouazanni +997884,E.J. Ratcliffe +108853,Pertti Koivula +1579182,Kelly Connolly +133503,Claire Bouanich +556944,Sylvia Bataille +1699407,Lorenzo Pisoni +72781,Salvatore Striano +1592934,Pamela Iveta +1544913,Mary O'Driscoll +1467884,Hedwiga Reicher +72045,Donavon Stinson +107887,Krzysztof Kolbasiuk +1650219,Robert Furner +1538781,Chelsea Mee +237340,Giampiero Littera +178780,Al Lewis +27680,Steven Millhauser +1343264,David M. Sitbon +240374,Viktor Sergachyov +1301577,Rene Gube +1098646,Mohammad Khatami +1174533,Loretta Goggi +1186846,Tommaso Olivieri +1488063,Bob Olin +101991,Gloria Jean +51827,Piet Klocke +36102,Susi Stach +1838593,Kaitlin Otoole +1302535,Forrest Wheeler +1430682,Tom Jacobsen +1485772,Jaden Klein +556840,Sevil Üstekin +1226830,Eric Gilliland +91634,Vijayan +46557,Franz Muxeneder +1137927,Zdzisław Mrożewski +1099603,Fatima Ptacek +30143,Ilona Massey +117487,Dan DeLuca +1447882,Myrthin Stagg +1497231,Araceli Lavado +1689911,Jade Bronneberg +1330721,Raymond Rivera +1801199,Kit Thompson +1884984,Chris Weber +932491,Jin-Long Lin +1643034,Johan van Huisstede +1512182,Cory Scott Allen +100258,Ramiro Alonso +1047281,Boris Dvornik +1438315,Andre Robinson +1671691,Stu Giles +283807,Amy Brassette +1080935,Youn Yuh-jung +1092632,Anikó Iván +39180,Jean Tissier +1362853,Lexi DiBenedetto +1347939,Caitlin Burdi +1215981,Dominic Pace +1128970,Pauline Burlet +994405,Annie Bernal +1517908,Victor Le Blond +96547,Birgit Linauer +1648776,Srey Thoy +1049342,Toma Kuruzović +61903,Glenn Thomas Jacobs +1193108,Nekhebet Kum Juch +1844619,Judy Stepanian +1092633,Péter Gálfy +125412,Michaël Cohen +154383,Jerry Buteyn +1560981,Alexander Poletti +1052078,Glenn Derry +171824,James Doerr +1215448,Rachael Ray +1530457,Antonio Díaz Conde hijo +108571,Joseph Muir +16925,Caroline Sihol +1017990,Augie Tribach +100103,Olga Anthony +1560892,Marissa D'Onofrio +1207369,Dennis Lafond +1676779,Jen Cohen +1221916,Herb Shriner +50932,Verónica Piaggio +105296,Belinda Montgomery +35929,Sophie Grimaldi +98328,Martin Andersson +1713819,Steen Young +1277921,Tse Wai-Kit +1543964,Maris Stella Morrow +1200059,Yann Bean +1760470,Charlotte Cormier +1354594,Teresa Acerbis +218565,Dwayne Cameron +1333809,Forrie J. Smith +929637,Mohammed Faisal +1345419,Hermione Corfield +1584972,Zoë Hall +1410083,Majid Michel +24073,Reinhard Wegner +1572537,Julia West +1229877,Frederik de Groot +218186,John Bett +1428017,Sadiq Daba +85286,Toshio Furukawa +559728,Avelar Love +1404066,Justin Sproule +1025543,Micky Skeel Hansen +219664,Cody Christian +1106149,Hwang Seung-Eon +1125016,Sanchita Shetty +143090,Marjorie Yates +1083446,Albert Rancy +1270456,Robert Hayes +145400,Suna Selen +61520,Paul Boritzer +1180616,Epy Kusnandar +1173034,Daniela Piazza +1263763,Bernard Farber +1261407,Charlotte Asprey +90060,Pilou Asbæk +1633654,Willie Denton +15138,Ottavia Piccolo +1388920,Lydia Piechowiak +1815372,Mike Forbs +1015987,Christopher B. MacCabe +91561,Aash Aaron +74576,Ho-Jung +89555,Fritz Schade +1485773,Delphine Pontvieux +125435,Károly Gesztesi +1191822,Will Bouvier +24487,Christophe Malavoy +94481,Ashleigh Ball +4426,Maria Michi +1802970,Julian Deyer +97931,Ivana Novak +225830,Michael Bernard Beckwith +1605816,Bernard Chevreul +1088317,Lawrence Joffe +26742,Walter Tso Tat-Wah +1900163,Melita Camilo +12766,Lenn Kudrjawizki +133762,Miguel Rodarte +1354665,Dennis Marasigan +1327011,Shane Graham +138889,Mark Lee +176217,Cordelia Bugeja +1000757,Paton Ashbrook +1388689,Greg Mueller +83221,Kim Sun-a +1807056,Lara Monti +663595,Larisa Kuznetsova +140606,Jeronimo Medina +1045426,Dragan Zarić +1511978,Roy Nowlin +135631,Adam Lannon +1019684,Anne Marsen +125801,Paavo Liski +1494446,Justin Mark +584518,Agathe Dronne +1399676,Gordon Christie +1496070,JimmyLee Smith +125629,Sampo Sarkola +121233,Bob Woodward +1806603,Alphonso A'Qen-Aten Jackson +1625626,Vera Pescarolo +1689287,Samuel Stricklen +1177,Ib Tardini +1837166,Erika Brodzky +525439,Patrick Mölleken +71673,Michael Muhney +139305,Peter Helliar +1687937,Karol Steele +43835,Violet Mersereau +67144,Andrea Renzi +1815368,Алексей Навальный +1506481,Quinn Baganz +1379278,Grace Calder +30644,Ged Marlon +1371784,Scott Thomas Reynolds +116480,Phil Van Tee +1453330,Claude Barichasse +1086506,Morena Busa Sesatsa +1356424,Cédric Kerguillec +550312,Roger Barclay +1601530,Mee Maadman +1576505,Kira Cahill +34471,Anne Nagel +112982,Pinky Cheung +78047,Matt Rippy +31532,Josh Hopkins +1782626,Charles Marti +141537,John Pierce Jones +1013905,Mahnaz Afshar +1839350,Dorothy McGinnis +240977,Reggie Cunningham +572443,Andrea Duro +1486583,Wilfrido Moreno +1262710,Clarice Falcão +1636673,Julia Pogrebińska +1177636,Nakita Jones +1173099,Christopher Berry +132925,Laura Tredway +883802,Lev Kubarev +68418,Grete Nordrå +1718318,Sonny Valicenti +1193593,Sarah Sokolovic +208016,Miia Nuutila +1396948,Ho Sai-Man +206637,Kelli Giddish +28111,Liane Forestieri +1724927,Billy Gillespie +1609628,Krista Kiuru +15339,Mathew Wilkinson +1707846,Julia Westlake +1091263,Stephen Turner +1379395,Julian Barnes +19162,Jean-Pierre Cassel +1206196,Jaime Ordóñez +1630509,Irena Lamberková +1112345,Ayako Katsuragi +149000,Ross Britz +87329,Upasna Singh +1769804,Jessica Bialick +1515525,Angel Laketa Moore +1546631,Alex Puccinelli +1246343,Malcolm Raeburn +1319089,Lisbeth Gruwez +591998,Kathryn Bernardo +1517894,Scott Leva +8700,Sasha Spielberg +1707957,Alana de Freitas +1250246,Slim Gaut +1041427,Asha Sachdev +505710,Zendaya +104074,Zebedy Colt +1895923,Enoch Moon +116162,Tapio Hämäläinen +548704,Violetta Sanchez +1799835,Thomas Campanella +1433827,Jakab Juli +1784150,Mona Irani +170045,Jeff Benson +1174126,John Kirby +1650171,Jordan Dickey +1211399,Aliaga Agayev +91658,Kevin McCorkle +35193,Michael Chekhov +62101,Kevin Glikmann +117642,Jason Momoa +1854445,Sara Bond +1718163,Destiny Lopez +1338404,Laura Brock +129337,Franco Adducci +238127,Trude Ackermann +1090750,Marin Orcand Tourres +1605201,Giuseppina Cervizzi +1114412,Nick Jones Jr. +1342862,Wang Chun-Yuan +44414,Raymond Hardy +1676739,Mark Garcia +77798,Callum Williams +55465,Samuel Anderson +20592,Ernesto Mahieux +1125192,Cameron Harlow +52936,Kaitlin Doubleday +1489792,Oscar Angulo +183203,Paul Gregory +1235855,Sam Cox +1546076,Jennifer Leigh Mann +113068,Ed Berke +116082,Félix Cubero +231722,Mavis Fan +583520,Shivkumar Subramaniam +574170,Jeanna Fine +133440,Frank Richards +226195,Rut Tellefsen +43258,Matt Gordon +1647320,Hayden Shinger +1435927,Nicolás Maduro +106479,Christobel d'Ortez +1175908,Antonio Lara +67175,Luisa De Santis +1360211,Wayne Goddard +1650158,Nellie +133571,Lillian Leighton +240024,Nick Blake +1111755,Tom Douglas +131256,Kate Tsui +1630346,Jessica Joan +994299,Kelly Randall +86017,Shakti Kapoor +1679033,Bertrand Combe +1338703,Nyawuda Chuol +17345,Rockmond Dunbar +1198778,Nelly Ramos +929358,Kaho +79620,Jean Marchand +1157297,Darren Jones +1325230,Ayumu Murase +1342224,Cora Bissett +44567,Tobias Moretti +238775,Wang Biao +4720,Kanye West +1042760,Mari Paz Sayago +33350,Carrie Genzel +155934,Jay Karnes +1275875,Urszula Bartos-Gesikowska +88980,Artie Ortego +568921,Rasmus Christiansen +1754425,Phil Anaya +537962,Robert Ellis +89936,Marion Burns +127841,Pongpat Wachirabunjong +121557,Sidse Mickelborg +1121908,Gianni Manera +106774,Rick D. Wasserman +1410539,Al Snow +151679,Sean Kenney +1821049,Eugene Peterson +1489157,Boonprasert Salangam +1522149,Alison Mary Forbes +1315169,Carman Newsome +1196255,Asbestos Felt +1883547,Lyndsay Rae +1019963,Sunil Dhawan +1388826,Franklyn Ardell +1038698,Jean-Pierre Germain +204920,K.T. Thangavelu +1278130,Samuel Mak +240369,Mikhail Svetin +130092,Lottie Williams +135184,Big Mick +114252,Edward Hogg +67246,George Zlatarev +1875578,Karine Lavergne +1557641,Ashleigh Borman +34091,Kenneth Harlan +1618646,Giovanni Viccola +1191238,Palina Rojinski +989603,Christian Contreras +218678,André Pousse +100910,Diana Polakov +1537758,Freddie Edo +590882,Christian Quevedo +1042223,Pál Hetényi +32322,Gérard Lartigau +1636705,Robert Waćkowski +1412429,Alan Gutiérrez +1520914,Francine Landrain +1257179,Tatyana Orlova +1189549,Gunārs Cilinskis +1184130,Ellis Levinson +1575556,Chan Pui-Sai +53714,Rachel McAdams +86691,Mikhail Pugovkin +1657347,Rafael Hernández +1774013,Jean Teplitsky +103018,Laurence Criner +1147551,Yevgeni Chervyakov +1860412,Katie Farringer +82809,Annabelle Wallis +35475,Sean S. Cunningham +85200,Ziggy Lorenc +104978,Helena af Sandeberg +141623,Bernt Lindqvist +588612,Somegorô Ichikawa +1424248,Reis Ciaramitaro +5462,Pinto Colvig +198610,Jessica Lee +1557948,Ana Marie Calise +18711,Christian Lerch +197819,Lesley Stahl +1097178,Christopher Patrick Nolan +1497968,Catherine Cornell +1230194,Chris Regan +57633,Rawson Marshall Thurber +1666252,Karolyn Arnold +580847,Manikka Vinayagam +103615,Genie Woods +1583287,Kenny Mugwump +1646372,Lindsay Karamoh +930508,Stuart Cowan +52386,Martin Schneider +930709,Ken Jacobs +1891510,Blake Curton +43999,Grégory Gatignol +104381,Joaquín Garrido +1739529,Jules Maitland +942706,Malena Doria +1497341,Christoph F. Krutzler +127918,Marlies Heuer +135925,Javier Cifrián +1453856,Nina Seul +64811,Mike Farrell +1331690,Arisa Wills +557995,Hal Price +1277014,Juan Pablo Veza +1021736,Atibou Aboubacar +15601,Enrique Villén +3575,Barbara Laage +980174,Ravindra Mankani +1033673,Jean-Michel Correia +587142,Karim Leklou +239258,Hazal Kaya +77361,Lynley Hall +1428022,Ibrahim Chatta +1199629,Boris Radivenski +1822700,Ramzan Magomadov +1393252,Peggy Page +19562,Bettine Milne +115364,Joan Evans +1487029,Clayton LaDue +1297171,Julian Bane +1386668,Iggy Malmborg +1830442,Charlie Stewart +153070,Valerie Cardew +552176,Haruo Suzuki +1807466,Gabriel Muli +1795844,Mens-Sana Tamakloe +1557116,Walt Dongo +59827,Nick Orefice +125361,Koltai Róbert +987572,Zane Holtz +1268582,Deborah Sheridan-Taylor +1869031,Brianne Gould +1610860,Nancy Denis +29075,Susannah Fellows +1478379,Indre Pivoraite +1560227,Donald Paul +1563144,George Savvides +129676,John Warburton +985074,Valeri Zavodovsky +227797,Bob McHeady +1767217,Jeremy Degree +146022,Leland L. Jones +1467150,Pietro Ghislandi +1091275,Kazuki Yano +86020,Kay Kay Menon +66524,Noureen DeWulf +169287,Teresa Yenque +231057,Justin Deeley +118370,Marko Zaror +1543396,Sherard Parker +1187448,Bruno Georis +533790,Advent Bangun +1239950,Gloria Pall +1394318,Joanna Bielinski +124518,Evelyn Scott +933514,Hock Lai Lim +263123,Louis Florencie +77159,Alexander D'Arcy +95101,Charlie Day +85419,Dylan Kenin +538398,Daniel Martin +1463026,Rasmus Luthander +132362,Chantelle Burger +1413763,Barbara West +57999,Nicky Kantor +1489357,Samuel Faraci +63271,Julia Lee Smith +1430509,Benjamin J. Cain Jr. +1173677,Pirjo Heikkilä +928297,Dennis Hearn +1814641,Beatrice Ward +1207490,Patricia Lentz +1584102,Anthony Heilbut +1646418,Eliezer Ortiz +1204482,Kathy Rickman +1588822,Kestutis Cicenas +1586256,Maisy Mazer +568562,Andrey Khabarov +1562330,Alexis Lefebvre +1695146,Katelyn Connerty +90372,David Wolfe +1228094,Maggie Ollerenshaw +1041499,Grover Ligon +251203,Yvan Chiffre +1508830,Wendy Forbes +1056287,Florence Nxumalo +1862811,Michele Bovenzi +99100,Mary O'Rourke +1602304,Borja González +76677,Linda Boston +125338,Alyssa Julya Smith +87219,Hend Ayoub +67711,French Stewart +210259,Samantha Figura +1670469,Marijus Mazunas +126101,Tommy Kavelin +1474188,Kaarlo Kytö +1196847,Roxanne Rogers +1800022,Sarah Gorman +239124,Vladimir Kashpur +125025,Joey King +935286,Walter Duncan +1118054,Yevgeni Shutov +218417,Steve Curry +585032,Brad Rijn +81039,Sarunyu Wongkrachang +1865136,Alfiero Alfieri +1185769,Freya Mavor +1172638,Romain Morelli +100062,Del Zamora +1602325,Rosa Chevalier +1153832,Sofia Marques +211488,Katherine Boecher +1898504,Anne Hélène Kotoujansky +934254,Feodor Chaliapin Sr. +1689984,Gloria Webber +1120448,Anna Próchniak +1761840,Ramona Valmunen +1380183,Ninon Fovieri +1562577,Liu Pei-Qi +80704,Shintarô Katsu +117509,Samuel Child +1079292,Juha Kukkonen +572286,Niels Wolf +1337736,Anton Shurtsov +1457276,Charles Siegel +162185,Gary Pagett +71425,Melissa Etheridge +1138542,Grażyna Wolszczak +82926,Arsène Mosca +1175809,Wayne Lai +1438242,Dmitri Erdman +1308808,Jesse Galante +229241,Raúl Jiménez +1784148,Philippe Azoulay +1676731,Suzanne Michaels +122024,Riccardo Rossi +1221865,Hideki Tasaka +1490654,Manuel Salas +1749280,Fangyuan Chang +238489,Igor Starygin +117963,Johannes Meyer +135628,Trevor A. Stephens +1460369,Simon Papousek +1202679,Sylvie Rocha +1157933,Yusef Geçtan +117950,Enzo Jannacci +1545501,Michael Haney +1603932,Lyumdila Chupiro +97697,Jay Richardson +971237,Hector David Jr. +84769,Michael Worth +1657525,Matthew Tronieri +1091869,Mélodie Simard +83220,Ha Ji-won +1445664,Danny Brown +1047711,Gulshan Devaiah +1009275,Emilie Jo Tisdale +86420,Sandhya Mridul +1507494,James Killeen +559713,Stênio Garcia +81578,Kate Graham +970192,Rena DeAngelo +1083148,Shirley Knight +987021,Bill Burrud +1734182,Rob Jones +77796,Sam Horrigan +1481907,Brandon Garvey +89823,Olly Alexander +1870830,Temina Tuaeva +1502960,Seiyo Uchino +199139,Bruce Lawrence +1554761,Elizabeth Boag +239447,Teruo Miyazaki +30526,Gene Allen +1053935,Raymond Bagatsing +592119,Gülnihal Demir +233531,Laurent Malet +55070,Vrajesh Hirjee +1758282,Rajesh Sharma +28422,Alexander Hörbe +1293406,Barry Hansen +1476043,Brian McCaig +1604105,Catherine Pictaggi-Tiesi +46310,Islam Ben Arfa +1322779,Maksim Peshkov +11686,Stella Zázvorková +1248828,Aurélie Claudel +1198310,Valerie C. Walker +211292,Helmert Woudenberg +121300,Bobby Burns +145560,Larry Eudene +143119,Beatriz Costa +1272221,Nicola Eveleigh +1317694,Kathrin Wehlisch +104523,Hiroki Narimiya +1209473,Mark Robokoff +1276625,Murray Clive Walker +1342846,Sun Jian-Kui +110065,Sophie Tolstoy +1115098,Sapna +1344361,Kelvin Harrison +112429,Mehmet Ferda +1356354,Niki Papadatou +1418971,Henrik Kalmet +583400,Shaike Ophir +1758896,John Baker +88051,Beppe Costa +153609,Jaye P. Morgan +88717,J.P. McGowan +25637,John Gugolka +24545,Pascal Elso +1056809,Sido +1044800,Jeong Man-sik +1883849,Richard Suliman +1266461,Jac Nellemann +1153063,Rose Adam +1734193,Whiley Toll +1692434,Aleksey Mikhaylov +1125581,Chloe Pirrie +120974,Ashleigh Sumner +1387381,Lucy Chappell +577652,Rosemary Ashe +56542,Addison Timlin +79351,Alison Araya +128633,Phet Mahathongdy +939453,Bart Pierce +1311612,Fabio Avaro +240893,Renata Zamengo +1413101,Sebastian Topan +1426801,Andrija Nikčević +1050631,Edward Akrout +1295992,Stuart Matthews +90061,Rosalinde Mynster +1205220,Anja Karmanski +212985,Sasha Jackson +1305923,Toby Murray +35778,Divya Dutta +89548,Louis Chirillo +81865,Hidenari Ugaki +1325949,Inori Minase +94875,Victoria Haralabidou +1865827,Julia Lewis +1593376,Pablo Ramos +142741,Ardon Bess +1784579,Avery Camp +1052603,Luke Neal +1184078,Tie Nan +137755,Awa Ly +1054256,Vinah Makeba +1427481,Billy Shepperd +1174337,Christophe Paou +108532,Scott Elrod +3755,Karl-Heinz von Hassel +212802,Emile Levisetti +188628,Donna Goodhand +1897699,Gina Brinkman +1080846,Ken Proulx +1093957,Paco Porras +78740,Jackée Harry +32365,Sophie Daumier +223283,Daniel Crohem +1871452,Mikhail Abesadze +1518970,Colm Kenny-Vaughan +1289020,Genevieve Angelson +60992,Tom Chapin +30907,Susumu Fujita +6705,Anna Mucha +1428029,Ifayemi Elebuibon +930827,Cátia Afonso +1585158,Sitara Attaie +234070,Harold Torres +1644784,Christian Harting +130503,Chan Sang +158747,Ruth Silveira +1446289,Isaac Saviñón +128416,Costantino Valente +932886,Manos Katrakis +1090732,Won Ki-jun +1314262,Bianca Cruzeiro +32297,Uri Zohar +1146744,Gilles Soeder +1227518,Rodney Litchfield +133824,Ayla Arslancan +4541,Stephan Kampwirth +1171680,Sulekha Talwalkar +235532,Emanuela Rossi +72690,Dan Malmer +1144915,Mike Campbell +1381318,Yasuhiko Miyauchi +1292075,Hildur Carlberg +34391,Katharina Matz +99653,Klara Luchko +1659288,Andrea Frigerio +1439318,Kathan Fors +1293065,Amira Adre +935721,Karan Kendrick +1036828,Billy Hough +1050030,Junie Hoang +1760884,Mina Kweon +1185,Anette Støvelbæk +1489873,Zelmar Gueñol +23706,Eve Gordon +91638,Kerwin Mathews +1105796,Jay Hayden +583496,Irit Sheleg +129246,Mariano Idelman +189491,Lisa Whelchel +11291,Clémence Poésy +1382493,Zahra Bentham +1635155,James Blackshear +1046222,Ryan Hunter +1714060,Bianca Maria Corbella +1433898,Per Hansen +1848673,Dandara Albuquerque +1400908,Sonnie Brown +1277219,Renell Gibbs +1569580,Jae Greene +1505088,Nancy Warren +558823,Alan Tang +1206367,Yayaying Rhatha Phongam +74421,Song Hye-kyo +78323,Joon Park +229354,Denis Shvedov +276591,Anna Ovsyannikova +550359,Christopher Robin Miller +1609804,Tim Walker +1848800,Isabel Shill +224092,T-Pain +568303,Lennart R. Svensson +175213,Mavor Moore +83387,Robert Donavan +1564301,Adrian Lipinski +580645,Herman Ahlsell +584527,Jimmy Wang Yu +14577,Edith Atwater +1530412,Yôko Mikawa +1202127,Hasan Ceylan +1206062,Gary Poulter +1891144,Maurizio Comito +1031104,Greg Magie +156590,Currie Graham +77381,Miloš Vavruška +132921,Micky Mckay +130845,Raigan Irons +84792,Barry J. Ratcliffe +1633761,Jim Riswold +132608,Tony Johnson +1418256,Gwenyth McLaughlan +565314,Tatyana Shabelnikova +933549,Michael Dicarluccio +1511993,Will Torres +25376,Joel Gretsch +88587,Martin Gore +73871,Arnaldo Ninchi +124377,Jeannie Berlin +18463,Raúl Méndez +1157598,Astri Nurdin +1253391,Ji Chang-wook +1378544,Mauricio Ovalle +1786513,Kanwaljit Singh +84897,Mark Kelly +1555463,Cleo von Adelsheim +587438,Chris Coy +110913,Joe Chisholm +116147,Jon Mikl Thor +104911,Wes Armstrong +1406838,Miguel Pedregosa +67970,Milly Carlucci +1326967,Divya +1374738,Mireia Portas +559891,Joëlle Le Quément +111362,Moa Silén +937000,Theo Breaux +1797950,Yusuf Çatalbaş +1354992,Carrie Wampler +979599,Pallavi Sharda +118131,Gareth Williams +939117,Cenzi Xu +1708546,Annabelle Huggins +571429,Dinçer Çekmez +1588825,Romualdas Gudas +1720641,Sarah Domin +1849126,Marika Inholm +1661269,Cory Chapman +1174504,Parvathy Nair +1903973,Emma Hunter +3742,Heinrich Schafmeister +1559748,Minoru Sakurai +127048,Nate Corddry +88043,Frits Lambrechts +100125,Michihiro Ikemizu +1286852,Axel Scholtz +1088252,Taylor Nida +565335,Charlotte Arthur +36856,Claus Wilcke +579298,Fiona Carnegie +1542593,Charlie Ebbs +96858,Lisa Chiao Chiao +17825,Shawn Levy +1161075,Chris Nicola +586001,Chris New +41341,Andy Mackenzie +1038002,Conor Sweeney +82546,Gabriel Odenhammar +1650207,Jay SanGiovanni +127891,Masaharu Fukuyama +1328187,Lauren Lazarus +1621790,Ruth Llopis +1510821,Jhemma Ziegler +126224,Ellen Kennedy +353681,Peter Katona +1285134,Arieta Corrêa +1006024,Balasaravanan +140604,Pablo Cruz Guerrero +17726,Sabine Wackernagel +998961,Leslie Francis +70312,Fabrizio Rongione +1569981,Lexy Panterra +1427157,Chai No +1622076,Mabelle Dennison +1039355,Susan Stranks +1472508,Arline Willden +1521376,Mary Anthony +1180136,Paco Manzanedo +591422,Rafal Guzniczak +103500,Evalyn Knapp +1051677,Lúcia Bronstein +584081,Fewlass Llewellyn +995469,Chelsea Rae Bernier +58616,Sakichi Satô +98314,Charlotte Kaufman +1290984,Eddie Juaregui +56293,István Dégi +30519,Nancy Kulp +1169982,Gregory Chandler Maness +58693,Dean Andrews +120706,Lionel Royce +88079,Todd Duffee +4704,Fu'ad Aït Aattou +83374,Rory Markham +969635,Sue Rock +1216471,Mike Wilmot +104800,Noel Francis +108101,Betty Bronson +1326026,Jean-Guy Latour +82537,Søren Malling +1519557,Janet Higgins +1102200,Michael Conroy +1226300,Michael Patrick O'Brien +149007,Castel Casti +1351315,Malika Williams +37559,Óscar Ladoire +18905,Peter J. Lucas +64066,Philip Bolden +224228,Gucci Mane +1589598,Lorraine Wochna +238265,Maverick Quek +1313538,Tippy Dos Santos +1170282,Liz Hume Dawson +1054304,Jordan Dean +145257,Jean Vander Pyl +1583620,Shenell Randall +1011802,Sundeep Kishan +1630876,Francesco Mannino +130464,Louise Delamere +130334,Henry Slate +1322947,Robert Alexander Baer +1367049,Bruno Tuchszer +126242,Shileen Paton +113867,Angela Kinsey +1895451,Denise Bailly +1210235,Sonalee Kulkarni +1784930,Lavrenti Beria +647022,Manmohan +1510795,Donna Dewey +145355,Gulsen Bubikoglu +90429,Mike McCoy +1229025,Martin Turner +1521489,Joshua Funk +44435,Rainer Penkert +1046204,Fatima Sana Shaikh +92897,Michalis Koutsogiannakis +78033,Jennifer Tisdale +1539093,Logan Phillips +1271561,Haakon Arnold +95275,Vicki Raaf +1088483,Jim Dougherty +430313,Jan Broberg +1515686,Oliver Böttcher +1476848,Vera Torpp Larsson +20668,Bernard Blancan +1167894,Robert Copple +1512145,Winston James Francis +1155122,Chris Petrovski +1371848,Jonathan David Dixon +1447885,Kurt Ogilvie +208406,Brando Eaton +32659,Simon Buret +102786,Barack Obama +1334136,Breck Gallini +1521297,Sunny Singh Nijjar +174606,Kader Khan +110037,Mikhail Chernyak +58594,Adam Lieberman +85896,Constance Dowling +170436,Cherie Johnson +1373642,Laura Brumagne +1544017,Cassia Rosenstraus +1611977,Julio C. Peña +1295104,James Cathcart +1021400,John Barber +256754,Beverley Owen +1112872,James Mackay +108676,Paul Moder +1886320,Elizabeth-Anne Fuller +1531590,Chantley Lorraine Ward +96413,Thierry Frémont +1230871,Marcia Ann Burrs +1666852,Delhi Kumar +1393838,Jagadisa Angulo +1060567,Klaus Biesenbach +1467090,Pavel Polunin +1140111,W.A. Kelley +1166156,Marcel Imhoff +64326,Modesto Lacen +1854444,Mariangela Eboli +1282961,Felicia Hom +137826,Bille Neeve +130801,K. Danor Gerald +1042748,Antonio Adarve +106623,Tolga Çevik +1790733,Zo Zosak +141226,Andrew Sensenig +15953,Keith Andes +115771,Margaret Brayton +85041,Sameera Reddy +1822709,Leonie Stella Berger +1164595,Tatiana Chiline +1292781,Virginia Dabney +1599257,Gary Fannin +1630273,Sky Adams +85889,Arshad Warsi +1652853,Mauricio Alemany +1650204,Micah Claiborne +1036827,Sammy Boyarsky +1458843,Ngo Okafor +1140663,Mita Vasisht +1046228,Massimo Ferrero +49306,Rolf Dennemann +213428,Sunil +1711548,Greg Perrow +906406,Shannon Zeller +582231,Valeriy Prokhorov +109579,Jann Wenner +87713,Neeraj Vora +99314,Yılmaz Erdoğan +1426334,Buster Reeves +1072593,Monica Peña +38703,Kay Panabaker +1576624,James Tennison +147108,Carlos Santos +1754501,Mikaela Happas +97838,Stacy King +1397088,Carol Needham +1517159,Emiliano Ruschel +207201,Shauna McLean +1614450,Seth Young +1511990,Casey Smith +1159343,A.K. Shand +1648618,Alpha Trivette +1105794,Bennie Slay +41561,Kenneth Choi +61696,Marie Matiko +85161,Jean-Robert Bourdage +104648,Dave Bean +996596,Serge De Marre +223168,Anupam Shyam +24685,James Farentino +79197,Johannes Brost +1218930,Eli Gabay +101597,Lars Bloch +1126219,Laidychen Carrasco +113732,Iko Uwais +972158,Ernesto Sevilla +1640423,Lukas Rolfe +1188862,Nils Aréhn +1332325,Emily Ting +1105280,Brandon Tynan +122442,Melissa Keller +122363,Peter Nelson +1386199,Vivaan Shah +122501,Ryou Horikawa +45378,Sandahl Bergman +1321981,Riria +1490038,Bones Howe +1853087,Pasquale Salerno +1281104,Chris McCollins +1905797,Adam Vosecek +190457,Gerry Sundquist +1523037,Anne Christine Bech +61363,Alex Pettyfer +1851690,David Hoffer +1089490,Mirko Guckeisen +22074,Vanessa Evigan +1137451,Alex Schroeder +87741,Sterling Knight +1093948,Richard Wilson +86720,Semyon Strugachyov +1719370,Isabel Herrera +1313144,Glen Hobgood +225241,Grace Cave +1517281,Karole Foreman +1694293,Lucila Gandolfo +1777420,Ibuki Kaneda +1339657,Amrollah Saberi +1286522,Sawyer Hartman +86861,Rostislav Khait +937647,Emir Mulasmanovic +1457629,Éric Caravaca +5853,Hans Löw +239693,Sumona Chakravarti +1169976,Larry Wade Carrell +128076,Toto Savio +1603421,Roger Gobeth +1296267,Luis Politti +1389068,Feyyaz Duman +1432001,Alessandro Federico +1578024,François Fehner +1382744,J.J. Jones +1108382,Mikhail Mikhajlov +222889,Wayne C. Treadway +1783352,Tatyana Peltzer +101245,Leila Johnson +96048,Hiroki Suzuki +1104748,Itziar Atienza +1198312,Jordan Chamberlain +1717810,Shelly Dhar +1792062,Reed Armstrong +41880,Flore Vannier-Moreau +1833800,Josh Cohen +1774937,Eddie Thomas +63761,Julia Krohn +58554,Nina Asseng +81341,Mike Brune +1819138,Raquel Vázquez Gutiérrez +1190350,Evgeniy Evstigneev +1833055,Felix Göransson +1089689,Anthony Aveni +166191,Diane Shalet +226769,Rajit Kapoor +1662630,Douglas Martin +147056,Caitriona Balfe +1204408,Rokas Zubovas +930022,Mike Parrish +114347,Albert Dinan +104243,Florian David Fitz +1152393,Jillie Reil +1307218,Werner Schumacher +1116629,Tony Cavalero +56739,Peter Chan +120108,Gigi Sammarchi +1085040,Frankie Cullen +70776,Kellee Stewart +1557631,Claudine Oriol +1147121,Jeremy Xu Zheng-Xi +119972,Tomás del Estal +1224744,Louisa Lytton +1758894,Sy Fader +1820122,Stephen West-Rogers +1012899,Wladimir Matuchin +1257122,Olga Kuzmina +1183783,Catherine Miller +1127305,John Bunny +1865313,Oliver Barker +1122426,Jeannine Godinas +1741923,Natascia Macchniz +1521413,Sarji Ruiz +1041329,Jakub Zindulka +1719599,Stewart Steinberg +1413772,Sophie Riggs +122504,Morgan Benoit +1169327,Kang Peng +63546,Shane Daly +1718133,Leah M. Clark +39679,Steve John Shepherd +1178301,Ray Zupp +142334,Mukta Barve +1506495,Ocean Elizabeth Currier +62418,Charlie Chin +1001979,Edward Foy +156082,Christopher Crabb +28185,Michel Bardinet +1557115,Gayle Wells +233832,Gunther Lesage +1427450,Krrish Chhabria +1100366,Mayra Wallraff +1147388,Ditch Davey +71884,Douglas Ligon +54794,Rudolf Thome +1045911,Steven Booth +588231,Chris Wylde +1837828,Matin Rey Tangu +1461118,Dolly-Ann Osterloh +1436287,Jianfeng Chen +1455167,Natsuka Yashiro +238312,Yelena Kotelnikova +206790,Josh Wingate +1287731,Richard Rankin +1753496,Kristal Garcia +1626466,Elena Nesterova +1547691,Linda +413599,Oliver Sandys +168567,Jonathan Sutton +58723,Gilles Marini +39906,Luise Berndt +91662,Ken Bones +1628177,Jennifer Martin +1797581,Kamille Dawkins +91484,Robert Lamoureux +932093,Jessica Guadix +1308691,Hiroshi Honjomaru +1418262,John Peter +1898616,Antonio Zambito +1828323,Juhannes Kask +39769,Astrid Warner +110423,Neil Pigot +548053,Helena Law Lan +1226023,Brock Kelly +1329902,David Paul Dean +1569798,Samantha Johnson +120149,Eileen Bennett +1190186,Roman Tkachuk +1580163,Marti Rich +587452,Jürgen Drews +1655062,Jaime Wallace +138625,Dana Sue Collins +160112,Alex Doduk +1627270,Sumi Jo +127812,Zara Taylor +218254,Julie Forsyth +1520622,Julio Goróstegui +1682235,Daniel Smith +1661472,Spanky Taylor +1619923,Charles Shen +938996,Michael M. Crain +67710,Anita Smith +1202416,Donny Alamsyah +84409,Conor Carroll +1543688,Saed Soheili +63116,Terence Goodman +1247771,Yuka Terasaki +1018954,Jim Mercer +45984,Aldo Bufi Landi +1171171,Marc McKevitt Ewins +997483,Ashley Fires +1807062,Zoya Naumchik +1548734,Katrina Kavanaugh +1537624,Tony Bellew +1215398,Dan Warner +104351,Andrew Boyer +1534294,Edward Keyes +128150,Katie Boland +106950,Ken Kramer +1637682,Tünde Majsai-Nyilas +101698,Paul Grau +85034,Ranbir Kapoor +1361556,Yure Covich +1732067,Jake Love +76624,Shane Carruth +1297761,Sarah K. Joaquin +1672455,Mary Martha Wood +102675,Otto Spring +1758606,Pimchanok Viniyompong +1428026,Nick Rhys +132501,Carina Lidbom +99034,Heather Rattray +1366444,Ian Carter +1142686,Gabriel Rush +107894,Aleksander Wysocki +581123,Dominique Ratonnat +3849,Tage Danielsson +1168175,Griffin Kohout +1055118,Rolf Engström +144591,Kim Sae-ron +135664,Kostas Kazakos +1643041,Sven Wagelin +40208,Patricia Barry +1895604,Patrick Bautista +4075,Eve McVeagh +34000,Marine Jolivet +1630992,Salah Mohamed-Marich +38481,Gerd Lohmeyer +130224,Gloria Lloyd +160634,Sterling Swanson +218536,David Holt +1293080,Lee Kyoung-young +224878,Ramona Marquez +1149019,Sonny Rooney +1071372,Wilhelm Esterhuizen +83885,Claire Wikholm +237162,Greg Townley +86013,Arbaaz Khan +68850,Lezlie Deane +213704,Jill Adams +1657469,David Shabtai +1157471,Miguel Noguera +73134,Evan Adrian +60735,Hannah Farr +1093953,Joan Antoni Estadés +105900,Holly Dignard +227605,Évelyne Rompré +1041497,Spencer Bell +1752451,Simona Nobili +1760898,Tony Christensen +30126,Flora Robson +1086861,Jonathan Chan-Pensley +1751725,Paige Nicollette +1696931,Marie Jeannette +70152,Navíd Akhavan +1134502,Chu Mu +1468979,Huang Zitao +47842,Alena Vránová +1758609,Prapruettham Komchat +1220089,Veronica Roberts +1863900,Juliana Helcer +940459,John Heffernan +1511975,Kurt Meier +226196,Svein Tindberg +117165,Sean Mahon +1299232,Ross Butler +284463,Akash Khurana +240946,Jess Allen +1439581,Aksel Rasmussen +141014,Jay Benedict +374448,Nicolás Pauls +1754365,Mark Quigley +1784286,Mária Fornayová +1793046,Do-Yoon Kim +1303531,Elna Hellman +1513534,Isabel Rose Machado +18725,Markus Krojer +36851,Belinda Lee +1727108,Angelica Amor +278485,Josema Yuste +111080,Patrick Bristow +1134607,Yûko Fueki +591210,Carolyn Adair +1102513,Tyler Trerise +1214466,Jon Plowman +1842096,Lana Walling +1141258,Christian Paul +105688,Bashar Rahal +102223,Kira Miró +1754819,Anzara Barlykova +1467863,Douglas Gordon +1760467,Laina Loucks +126495,Cho Seung-woo +1678388,Sean Mercado +145000,Juan Leyrado +1031550,Irma Torres +84606,Raymond O'Connor +1504095,Steve Gates +1518919,Paige Budelsky Johnson +1127396,Paul Steffen +233922,Priscilla Poland +1375349,Jason Wishnowski +1584420,Brian Crawford +81321,Amy Carlson +1182319,Samantha Herman +550008,Filareta Atanasova +183758,Emeril Lagasse +1302834,Anthony J. Salimeni +223605,Hugh Farr +1341701,Aleksandra Metalnikova +1760116,D.W. Reiser +1150582,Vorakan Rojchanawat +115305,Ryūsei Nakao +62358,Eric Colvin +628316,Umberto D'Orsi +6167,Judd Hirsch +1166976,Samantha Kendrick +195430,Angela Wynter +1071158,Beau Gosling +513793,Nils Althaus +146830,Marc Winnick +1186714,Ruben Pla +121952,George Riddle +1245094,Nobuhiko Okamoto +1516115,Minnie Goode +1284197,Kirsty Smith +120319,Carlina Torta +27272,Ennio Fantastichini +555652,Lucy Faust +114477,Daniele Formica +55958,Kim Myers +1386161,Abena Ayivor +24938,Anthony Ross +1377975,Jakob Öhrman +1033621,Mathieu Oullion +134610,Marco Soriano +928327,Chandler Massey +1010218,Ruby Elzy +1124714,Virginia Thomas +226172,Bernhard Arnø +124709,Karoline Schuch +1186622,Kachina Dechert +545233,Domenico Aria +1497913,Taylor James +68828,Bartłomiej Topa +112950,Melanie Winiger +1542446,Yvette Parsons +1364241,David Bishins +361406,Richard Lund +1208345,Shailene Garnett +1545526,Richard Doone +236959,Arto Halonen +1547694,J.R. Robles +127449,Pimchanok Leuwisetpaiboon +141705,Simran +1647142,Clinton Beyerle +55101,Luiz Carlos Vasconcelos +1002483,Leslie Feist +106674,Margie Skidmore +1531601,Sammy Joe Temple +172303,Danny F. Smith +55972,Beata Tyszkiewicz +1231907,Ciaran Madden +114897,Gardiner Millar +39881,Pauline Lafont +1503907,Delilah Sexton +1576138,Yuen Fai +1758909,Evan Lewis +1562106,Shamir Dawood +1264589,Emma Eliza Regan +1649159,Yannick Gobeil-Dugas +55734,František Filipovský +558036,Mike Vallely +101995,Mona Barrie +234418,Tiziana Pini +1353939,Will Crown +231123,Lazar Rockwood +55755,Richard T. Jones +1259597,Emmalyn Anderson +20080,Catherine Frot +1538824,Darci McDonald +11523,Georges Méliès +169469,Jesse Hutch +1114537,Jórunn Sigurðardóttir +54402,Jerry Brouer +19402,Nancy Guild +156580,Marnie McPhail +1888138,Kazuko Ojima +31887,Jaime Fernández +1393776,Meg Hudson +1498161,Kanokporn Tongaram +584049,Aleksandra Kamyshova +1336774,Hermione Farthingale +221606,Heather Morris +984951,Bharat Jadhav +65571,Stefano Accorsi +1495914,Karanvir Sharma +1256603,Natsuki Hanae +1875585,Denise Lamontagne +1494289,Ralph Lister +1140169,Graham Hopkins +359523,Gustav Levin +1291451,Lucie Aron +933493,Daisy Victoria Vandy +1367105,Evan Shafran +1423812,Eric Burton +225896,Benoît Pétré +558014,Shayna Alexander +85416,Adam Leadbeater +135431,Roy Souza +1357295,Yo Yoshida +53512,Marja Packalén +550394,Zuzana Krónerová +85519,Madhavan +89247,Kailin See +1683138,Ramon Martinez +104023,Claudette Lali +116140,Henri Vidon +95041,Ava Gaudet +126488,Lauren Sweetser +96346,Swini Khera +1613221,Nadja Settel +1300128,Cody Hackman +133441,Alan Gordon +1588955,Rich Manley +72633,Paul Whitthorne +225175,Lara Daans +1424715,Charlie DePew +559683,Christopher Becker +238630,Ayumi Sonoda +1214791,Declan Mulholland +145235,Eric De Staerke +1890932,Tyler Hall +1192785,Rose-Maïté Erkoreka +1602747,Gabriel Ebert +7679,Dennis Hayden +1215841,Justin Fletcher +1248826,Emma Heming +93932,Paula Rhodes +1350509,Lúcio Tranchesi +97784,Neil Roberts +225429,Luis Alandy +1337248,Becky Fenton +38008,Jean-Pierre Andréani +48400,Marion Kracht +1261519,Borzou Arjmand +574142,Tuomas Lauri Johannes Holopainen +1398150,Edith Collin-Marcoux +234187,Rolf Boysen +1643039,Pelle Sandberg +1359941,Karen-Eileen Gordon +1379965,Anthony Vincent +1153630,Judith Reval +1531739,Hilma Vainikainen +1511519,Sian Sladen +187196,Michala Banas +1408726,Zack Williams +1394330,Demi Kazanis +74604,Ze'ev Revach +1446122,Julian Graupner +560297,Franca Faldini +66741,Taylor Handley +937714,Harisree Ashokan +1509832,Esin Harvey +1506298,Leah Stoltz +1021566,Aki Hano +1479863,Kang Ching-Jung +1321625,Fernando Mora Ramos +1319573,Josh Sheltz +1180703,Brentan Schellenbach +74611,Tracee Ellis Ross +1532567,Paul Stephen +1157294,Colby Minifie +1807043,Iestyn Arwel +1195789,Jesper Hede +125951,Yuma Sanada +1684452,Eva Noblezada +1402305,Ann Emery +1464845,Joseph J. Micucci +1151375,Rocío León +128473,Stefano Natale +1094739,Syllas Tzoumerkas +1874734,Brian Conradsen +1197448,Gitali Roy +237276,Marina Dyuzheva +1644517,Bader Alami +145680,Jean-Pierre Yvars +951894,Phyllis Kennedy +91640,Valerie French +132111,Hilal Kabob +160118,David Moses +1388671,Perez. Gabriel +142335,Upendra Limaye +120323,Frank Crudele +932076,Kate Siegel +1107182,Thony +159522,Abby Dalton +19211,Ian Somerhalder +1774532,James Harkness +1119334,Chuck Pierce Jr. +1155510,Ashley Spillers +1445116,Juan Martín Guix +1272978,Beata Dalton +1207247,Sonia Yee +109848,Paul Carpenter +1615541,Estelle Hennard +1709469,Mitchell Edwards +591299,Maurice Cole +1443153,Martin Christiansen +1118080,Ray Mist +1531612,Michelle Shelton Huff +39777,Desmond Dhooge +1016992,Leonid Reutov +79082,Randall Park +1223460,Vincenzo Hinckley +440414,Amy Schumer +57108,Usher Raymond +570758,Joe Raffa +1507490,Georgio Costa Houtris +1647407,Vittorio Stagni +1777429,Lidija Antonic +32046,Jean Cherlian +180103,David Aranovich +91657,Shannon Collis +1073185,Antonio Velázquez +1208036,Charles Stewart +223395,Morse Bicknell +1624501,Alexa Losey +1440347,David Miller +118034,Zawe Ashton +121953,Stephanie Szostak +201046,Kim Bourne +577640,Sierra Boggess +1511041,Christopher Daly +1445417,Lee Perry +1092634,Henrik Pauer +98216,Dean Knowsley +1771524,Nils Cruz +84475,Lewis Collins +1496728,Délé Ogundiran +109335,Luca Angeletti +552339,Kazuhiro Yamaji +53375,Arif Zakaria +101792,Robert Patrick Brink +228149,Enzo Andronico +34300,Dieter Montag +1507448,Olivia Jordan +1546078,Peabody Southwell +224507,Dolores Heredia +150929,Krisha Fairchild +56295,Sinkovits Imre +53236,Beth Hebert +69036,Christian De Sica +72785,Salvatore Cantalupo +57145,Ellie Chidzey +1833570,Ingrid Cannonier +1894242,Anna Vivaldi +62008,Paul Spadone +1385530,Yury Yakor +76164,Asami +1436162,Nuo A. +1635144,Trey McGriff +232749,Nelson Bonilla +88090,Erik van Muiswinkel +144343,Anka Graczyk +34274,Lisa Lackey +155862,Kimiko Gelman +116088,Logan Miller +54296,Samuel Benchetrit +1178996,Shûsei Uto +145326,Alessandra Mastronardi +1878326,Rafe Terrizzi +225636,Henrik Dorsin +1697394,James Hawksley +1719996,Matt Metzler +1160627,Bradley Gallo +54565,Raymond St. Jacques +1013122,Álfrún Örnólfsdóttir +1602225,Ryo Sato +172994,Peter Shinkoda +936989,Khristine Hvam +1161579,Brian Ames +1581551,Zan Gibbs +142950,Nicholas Shaw +1581103,Stefania Spampinato +98272,Chloe Bridges +564048,Johannes Zirner +864082,Bojana Panic +1381671,Caroline Kiger +965718,Matti Ristinen +1175687,Ulla Geiger +61186,Nicola Peltz +30415,Anne Gwynne +1600864,Александр Годунов +1533640,Katy Townsend +79333,Terje Strømdahl +1622940,Jiang Yi-Yi +1576429,Scott Keiji Takeda +1379271,Matt Beveridge +1831168,Ida Irmler +583061,Michael Kopsa +1882767,Elisa Della Valentina +185085,Vito Rezza +224371,Rasmus Troedsson +1886628,Sharudeen Tamby +1091866,Ronald Lee Clark +123737,Alex Warren +140661,Roma Gąsiorowska +1461116,Moritz von Zeddelmann +1388315,Matthew Frias +137007,Darvas Lili +1745924,Taylor Kowald +1271017,Eddie Sturgis +143702,Konstantin Demidov +87264,Kristyan Ferrer +73867,Fabio Troiano +146063,Guido Lambrecht +1511988,Cliff Samara +98276,Sean Wing +82795,Oleg Menshikov +1028299,Ryu Kohata +1221552,Pippa Steel +93621,Samantha Ivers +1210467,Jen Pogue +1403650,Joelle Koissi +933495,Barry Chernoh +1871505,Silvia Tortarolo +67706,Shannon Jardine +1175136,Delaney Barr +150722,Antoine Stacquet +1489946,'Jeeva' Ravi +1204265,Benoït Peverelli +1014628,Matias Umpierrez +592933,John Lavachielli +86276,Sean Boyd +1683838,Jared Riley +1435230,Adam Nagaitis +1307552,Felix Knopp +559644,Fatimah Hassan +1614307,Xie Gang +1888499,Louise Schmitt +14871,Irene Rich +1276792,Miyuki Satou +1076064,Holger Thaarup +104458,Victoria De Mare +82789,Annabella +42610,Emily Joyce +140086,Matt Cimber +1797948,Ayşe Kemikoğlu +213775,Robert Lyden +146452,Yui Kano +1890071,Murat Subasi +608128,Norah Howard +1732210,Dariusz M. Uczkowski +239666,Luigi Antonio Guerra +1422048,Samantha Schmütz +1256260,Ian Patrick +551869,Moses Chan +1497342,Verena Altenberger +1464956,Carla Antonino +36750,Joseph Hannesschläger +586537,Keith White +1076689,Dean Kamen +1711290,Josh Whitehouse +229777,Brenda Isaacs Booth +221019,Daniela Ruah +35865,Hannah Spearritt +84505,Hiroaki Hirata +79494,Matt Dallas +189668,Marlane O'Brien +218798,Marcy Walker +6540,Vicente Romero +1528360,Marika Daciuk +33411,Tamar Novas +130565,Nick Jonas +153662,Gardner McKay +112560,Quinton Aaron +1235738,Laura Zapata +1173460,Blaze Bayley +1127868,Helen Edwards +1267131,Sean Connolly +933049,Sarah Finigan +45050,Craig Parkinson +1674733,Michael Cloke +76493,Karin Schubert +1650175,Martin Van Treuren +1781403,Jordan Haj +1084298,Alfredo Casero +163711,Peter Bartlett +145209,Gleendilys Inoa +1119938,Kostas Kazanas +83899,Sofia Ledarp +1408728,Augustin Symonds +228554,Sadao Nakajima +118243,Sprague Grayden +1579660,Alexei Okunev +59822,Curtis Taylor +1502852,Zane Cowans +1241252,Rodney King +1707963,Hayley Marlow +1399998,Harry Madsen +105563,Mads Sjøgård Pettersen +936017,Terri Ann Eckstein +1407301,Brian Robertson +151109,Greg Oliver Bodine +90569,Yuuko Minaguchi +20532,Moussa Maaskri +1171905,Brigitte Virtudes +136913,Linda Miller +1564288,Dariusz Wnuk +1481214,Peyton Keesee +1353813,Louis Dumar +1827513,Giselle Baptista +140018,Esther Velázquez +1274508,Jaeden Lieberher +102909,Hulusi Kentmen +1291809,Jean-Marie Paris +1695148,Matt Parsons +1717274,Stan Fitch +31796,Andrés Soler +1686656,Taylar Fondren +132500,Andreas Hoffer +1379208,Beverly Eddins +1128162,Warren Meacham +237445,Natalia Guslistaya +9932,Günter Lamprecht +119546,Henry Otho +1127381,Giovanni Cimara +539818,Tutta Rolf +569545,Candace Campfield +1268984,Tom Benedict Knight +70684,Donal O'Kelly +97167,Barbara Hicks +545635,Preeti Desai +97423,John McCallum +1393841,Mukunda Angulo +1256300,Daniel Lissing +1485220,Richard Sutherland +583052,Sean Carey +944430,Ravi Jhankal +1849792,Aura Rolenzetti +123180,Raveena Tandon +1890450,Caitlin Burles +587163,Diana Rudychenko +1784545,Markley Rizzi +1800032,Joseph Lydon +1552452,Justin Alexio +543261,Karen Gillan +953810,David Ostrosky +1769808,Isabella Fleetwood +1169978,Dylan Horne +1706127,Amaurys Rodriguez +1600152,Matt Frei +1155126,Stephanie Simbari +1028292,Jolyon Coy +1811847,Ruth Pickard Colwell +1675547,Gaby Harrold +1391205,Dom DeLuise +1782024,Will Rastall +1662170,Mohit Gokhale +1445114,Juan Alari +1558766,Duncan B. Putney +591421,Ola Prószynska +1406358,Mike Sage +139542,Ellen Ratner +1531609,Willie Middleton +62711,Darryl Quon +1178947,Lee Pang-Fei +150517,Manuel Soares +1888378,Apo Demirkubuz +1559774,Jiaqing Huang +1023428,Jordan James Smith +1514160,Nancy Grace +126447,Matteo Urzia +1049940,Phillip Wolf +1637661,Joe Kenda +1115146,Melodie Bell +1154748,Claire Mijnals +1016168,Lily James +1712271,Tonko Bossen +1494861,Bruce Carruthers +136883,Nobuo Yana +1381474,Briana Venskus +123497,Linzey Cocker +146808,Klaus Rott +1760864,Lele Leowaba +79913,Shelly Lipkin +31753,Luis Induni +47829,Elie Semoun +1723616,David Shields +16868,José Ángel Egido +225161,Matthew Géczy +1006181,Peter van den Eede +1508817,Liam McNeill +1055698,Shawn Brown +142689,Suzanne Clément +1646006,Hengky Tornando +204896,Louanne Stephens +125301,Chiang Ching-Hsia +148992,Austin Abrams +1681427,Helena Pruuli +1158646,Fausto Lombardi +115128,Bo Burnham +139549,Rory Kinnear +1695143,Henri McCullough +227270,Brita Bigum +2127,James Wan +1760941,Marquis Adonis Hazelwood +18399,Andrea Rottmann +233509,Joy Hallward +1195834,Jackamoe Buzzell +135617,Mia Nygren +1735654,Ekran Mustafa +1886452,Ricard Catalina +557921,Leo Howard +567592,Penny Wiggins +129168,Alice Pol +1791802,Grace Munro +1317370,Dina Monaco-Boland +30831,Fernando Hilbeck +1601625,Vladimir Kochurikhin +104119,Eva Lyberten +142320,Werner Schünemann +1152809,Niki Gunke Stangertz +1495078,Kevin-Michael Moore +1650163,Scott Wichmann +1146133,Paulette Élambert +1094122,Mackenzie Munro +1142414,Agnieszka Podsiadlik +43292,Steve Byers +1530910,Joaquín Notario +76101,Dylan Roberts +106722,Giorgos Hristodoulou +1170641,Romina Rocca +1184370,María Renée Prudencio +1431402,Depeyrou +67708,Gerald Lenton-Young +1627373,Karen Chan +85978,Javed Sheikh +134950,Marco Bocci +1415416,Dustin Guitreau +124263,Jenni Hakala +1707547,Ana Iovine +240073,Jessie Busley +1054816,Robert Graf +25340,Emmanuelle Bercot +49169,Marisa Bruni Tedeschi +25065,Nicolas Moreau +932328,Mike Hamill +1068925,Ken Kenzle +1324749,Stefan Dubois +81986,Salim Khan +179512,Marv Albert +1361061,Elvis Thao +1408750,Kim Ostrenko +1192816,Tapas Pal +1223658,Raymond S. Persi +46736,Karl Etlinger +1662623,Bruce Weber +463583,Jang So-yeon +1282921,Margit Gyovai +1309496,Pilar Muñoz +109331,Evie Dawnay +1132449,Kanzaburô Nakamura +1821513,Matt McClain +1270775,Louis Pré Fils +183159,Sandy Ratcliff +107896,Andrzej Zólkiewski +1187349,Hartmut Schreier +1869094,Dorine Henning +97445,Drue Delio +1391610,Lorraine Huling +346352,Diana Hardcastle +1135034,Karl 'Killer' Davis +1174457,Chen Zhi-Hui +1353635,Aaron Jeffery +1231380,Robyn Cohen +1179659,Miquel Fernández +101961,Lee Morgan +558148,Cheri Caffaro +1273011,John Ortiz +1578027,Philippe Cataix +172997,Maya Massar +220011,Kendra C. Johnson +1062703,Anton Häggblom +1513992,Erin Cipolletti +108100,Richard Karron +1218653,Rosanne Cash +557269,Nikolai Bogolyubov +78532,Nancy Brilli +121552,Kasper Ruwai Berg Kesje +196749,Leesa Bryte +66872,Amanda Lear +930999,Kaleigh Howland +1467092,Kirill Alekseev +40003,Ron Feinberg +101013,Clayton Landey +85506,Charlie David +104950,Mariwin Roberts +996689,Heihachirô Ôkawa +1774373,Vincente Perez +1322224,Vladimír Srámek +1754426,Joe Camp III +1771554,Jee An +1127750,Alicia Manta +49702,Rudolf Krause +1670959,Tyler Garamella +1311057,Todd Hunter +1275606,Suzanne Landsfried +592978,Guido Leontini +26300,Sabine Sinjen +1785924,Henardo Rodriguez +1704842,Kim Neilsen +1275957,Nezha Karim +1406674,Rob Franco +1207282,Anthony Ingruber +1356601,Sam Dalton +1575325,Mia Roth +106434,Eddie Malavarca +1788335,Flo Wolfe +195606,Matthew Cottle +1687632,Eddy Gunawan +1220343,Kirsty Wark +27961,Raymi Sambo +1818201,Kate McArthur +101519,Naturi Naughton +212814,Joonas Saartamo +155983,Rachel Winfree +241865,Larry Chance +1546096,Simone Colling +936458,Dedé Santana +1753559,Sage Gerard +57167,Jere Burns +445687,Regina Parton +1543373,Elvis Clausen +60414,Michael Elwyn +58402,Cainan Wiebe +1115627,Helen Rae +1145077,Edwards Davis +86012,Shashi Kiran +1476860,Pierre Moreau-Peron +1372291,Naomi Lavette +572084,Wen Zhang +97669,Elsa Zabala +1722961,Paul Richards +167953,Edward Wiley +45329,Chris Tashima +1660451,Harley Ware +1619444,Dig Wayne +236238,Pilar Pellicer +94071,Leslie Brooks +1218191,Jay Wilkison +1795827,Theo Morrissey +1149336,Johanna Went +139161,Nora von Waldstätten +1456577,Víctor Sevilla +1214531,Dianne Turley Travis +95378,Chris Copeland +1261087,Dan Starkey +1523163,Denielle Fisher Johnson +142491,Shigeru Tsuyuguchi +1134746,Sage Galesi +1056617,Alan Crofoot +983869,Griffin Wade +1799449,Anthonia Kitchen +130872,Stefano Fregni +1397085,Sandra Bernadou +1801194,Danika Toolson +1575412,Father John Misty +109325,T'Nia Miller +107900,Janusz Sieniawski +1409685,Marieke van Leeuwen +65444,Alexis Zegerman +1348129,Mari Csomós +77334,Chandler Canterbury +563861,Viktória Szávai +1438905,Phil Bennett +1724698,Jörg Woltmann +1446851,Rochelle Rudolph +1184083,Douglas Kung Cheung-Tak +1052301,Ana Marković +1276754,Louis Merrill +1112526,Kôji Seto +101336,Kathryn Leigh Scott +142605,Von Coulter +126429,Shane Taylor +1862986,Gerardo Mastrodomenico +5767,Betty Schneider +211243,Jennifer de Jong +1336781,Michael Tellering +1210346,Matti Vienovirta +185149,Rufus Crawford +235993,Artyom Tkachenko +1052343,Reiko Kusamura +1258699,Sean Giambrone +91410,Dai Carter +1636794,Rick Fike Jr. +1095089,Francisco Sánchez +205525,Aaron Spivey-Sorrells +1214157,Ethel Ayler +1159357,Jan Bryant +237519,Mika Shinohara +17278,Nick Gomez +1334135,Lynn Ayala +1845737,Leland Tilden +1385478,Rob McGillivray +211742,Drew Waters +55199,Douglas Kenney +150897,Andreas Helgi Schmid +1024388,Shôko Nakagawa +1869033,Lily Chambers +178413,Allyson Ames +116522,Odile Versois +61512,Jeanette Arnone +31805,Javier Beltrán +1835093,Luigi Esposito +65944,John Ching +1271222,Alli Riks +1251138,Joseph Taylor +1105485,Ian Helfer +1369182,Goro Daimon +232053,LeLand Washington +1539094,Sam Sharwood +1474114,Mark Gessner +1445419,Oscar Beard +230659,Takeru Satoh +1774039,Anthony Kentz +211242,Michel Sluysmans +33777,Anthony Warde +16926,Catherine Allégret +1769820,Heather L. Porter +225221,Paul Hellyer +553507,Bruce Headlam +1468170,Nikoma DeMitro +1540858,Peter Crooks +1519027,Ma Li +575103,Zdena Hadrbolcová +1021737,Adalberto Jr. +227987,Arthur Acuña +1121589,Jacqueline Ford +1583290,Joel Hale +1125111,Wilfred Benaïche +25259,Lola Cardona +128463,Martina Pinto +1289442,Minon John +1433385,Serge Bourrier +543725,Shana Barry +1754441,Noel Rathe +225920,Ove Verner Hansen +104053,Michele Greene +248412,Nan Adams +94399,Myrna Dell +1092492,Jozef Majerčík +1530377,Kimiko Kayo +1128883,Allen Vincent +25879,Geoff Pierson +147043,Francis Perrin +73947,Barnaby Kay +1573982,John Harvey +118408,Mikijiro Hira +1706136,Daniel Ojeda Astigarraga +98294,Raven Lexy +577390,Cecilia Walton +1113245,Petra Nesvačilová +107518,Pawel Iwanicki +112887,Stig Grybe +235206,Gabriele Campanelli +135180,Robert Lang +140180,Pamela Blake +1184131,James Shanta +150080,Roxzane T. Mims +927853,Maria Juliana Souza de Oliveira +1344358,Austin Purnell +1138764,Sanita Pelkey +1200570,Muthumani Somasundaran +1150932,Jenny Allford +1838444,Mariama Balde +20813,Joey D. Vieira +1500685,Lisa Mackel Smith +232255,Ross Kidder +87115,Richard Wharton +1728956,Derek Arnold +556033,Michael Wilbon +11999,Hartley Power +1635720,Logan Paul +968863,James Frecheville +1606880,Liliane Bordoni +10756,Kerry Walker +1769117,Erez Drigues +1089964,Mónica Sugranes +1264237,Duncan Pow +33298,Clayton Taylor +1589746,Tom Carpenter +87879,Ingrid Bolsø Berdal +9343,Owen Paterson +1696934,Stu Landry +1335341,Park Jeong-ja +80180,Robin Brûlé +928014,Raphaël Björkroth +1707542,Harris Benbury +1404086,Adam Chernick +236557,Dominique Marcas +1837871,James Welch +1525047,Dacre Montgomery +37813,Monica Pardo +1522730,Burak Akkoyun +1265767,Tyler Forrest +579419,Jean Sylvère +14704,Park Overall +79271,Amanda Davin +56677,Whitney Able +1658141,Suon Sopheap +1272220,Shea MacDonough +58952,Adam Campbell +1476858,Freya Aakerberg +131849,Christy Scott Cashman +1255571,Bailey De Young +1636772,Ali Amin Carter +545037,Balla Moussa Keita +1231981,Larry Levine +1431,Bill Wyman +1384875,Liah O'Prey +102857,Daniela Akerblom +21479,Andrew Stevens +89153,Prakash Raj +456935,Norito Yashima +1853881,Louise Lawson +559581,Magalie Lépine-Blondeau +1427101,Lorayne Brox +117176,Kevin Cunningham +560136,Nelli Volshaninova +1099301,Brian Berry +220283,Jacob Hays +572060,Oskar Löfquist +235208,Anita Kravos +1743022,Ryan Hanna +571469,Augusto Madeira +1182929,Freema Agyeman +35157,Jane Wiedlin +98394,Affion Crockett +1380106,Robert T. McDorman +1745276,Michael Lamont Bivins +1379269,Glen Stanway +119242,Aoi Teshima +106980,Susan Gibney +1482624,Arlekín +1450886,L. Ron Hubbard +31415,Ivan Labanda +97208,Marty Wilde +1041777,Sean Flanagan +1440940,Vanessa Gouri +1849106,Julian Furtuna +586603,Franck Sasonoff +1521876,Shaun Rey +143740,Aleksei Shevchenkov +1328264,Kira Pozehl +1198213,Carlo Giuseppe Gabardini +1807044,Charles Reston +1516834,Jennifer Cheon +1753482,Attila Vinczer +574203,Torkil Johannes Høeg Swensen +1569797,Eileen Daley +78233,Andreas Lust +1764364,Guy Guy Juravich +32361,Kim Rømer +8664,Bruce Boa +55799,Fausto Di Bella +1352339,Elaine Jenkins +1206206,Robert Tayman +73417,Joseph Bishara +1288833,Kenneth Kynt Bryan +1865138,Marzia Nanni +1478447,Gogi Gegechkori +146793,Alberto Lattuada +1009320,Alexandra Kahwagi +93053,J.D. Walsh +1048793,Nicky Marbot +132109,Ibrahim Frege +1102267,Jessica Iris +100770,Skelton Knaggs +574146,Jukka Nevalainen +1396601,Michael Fox +147590,Debora Caprioglio +106559,Carla Ferrigno +1681779,Ángel Tarris +1265876,Michael A. Rizza +1277365,River Alexander +1588173,Daniel Eghan +1524919,Oliver Bigalke +283842,Catherine Taber +1541178,David Rysdahl +1749839,Kourosh Tahami +1615008,Yu Ka-Ho +941309,Joaquín Coss +1222753,David Ngoombujarra +1321927,Yar Koosha +569366,Sanne Schnapp +1279767,Iskra Jirsak +215919,Motomu Kiyokawa +1356261,Michelle Hutchison +578947,Yvonne Maria Schäfer +211092,Joep Onderdelinden +1451545,C.J. Vana +1323716,Erin Anderson +139463,Farid Shawqi +1418244,Bruce Turner +85505,Dan Payne +1172757,Manuel Miranda +1276629,Xin Yi Yang +1724684,Jaro Omar +1439242,Jesper Øhlenschlæger +1194214,Sam Quinn +1840446,Niamh McCann +1523006,Rebecca Padilla +124620,Elena Sofia Ricci +934925,Olivier Aubin +1650386,Aleksandr Zbarażskij +571186,Herwig Lucas +1717812,AJ Meijer +1029185,Jeong Yu-mi +1207358,Job Daniel +1656033,Ryan Boudreau +132898,Azucena Figueroa +46363,Aya Ueto +43672,Masaya Takahashi +108272,Richard Irving +1865137,Fabrizia Del Farra +1578135,Mathieu Barbet +1682536,Maurisa Selene Coleman +127122,Jethro Skinner +1523040,Ron Groenewoud +46528,Friedrich Benfer +200483,McKinley Freeman +1795364,Mary Rasmussen +1277516,Corey Flaspoehler +1713202,Sondra Lowell +1467539,Cole K. Mickenzie +1082748,Tomoko Naniwa +1019225,Nicole Sherwin +1423300,Adriano Chiaramida +1394795,Maryanne Nagel +87479,Eugene Butler +99520,Dario Michaelis +1863893,Fabiana Bento +1179788,András Gyémánt +106630,Patrick Holt +1063495,B. Anthony Cohen +1605578,Isabel Cueva +1623852,Aleksandr Kovalevsky +50787,Rinaldo Zamperla +293843,Nicholas Murchie +87466,Souleymane Sy Savane +572244,Estelle Bealem +1673512,The Lady Killer's Quartet +1562570,Wang Zheng +231486,Sílvia Abril +1800042,Marc Matthews +1073048,Chris Combs +1900169,George Crayton +1508172,India Pearl +225242,Michael Riddall +94306,Wynne Gibson +549974,Reza Sixo Safai +137624,Anna Begunova +979408,Engin Dogan +109003,Cecilia Dopazo +1635194,Adrienne Ballenger +136549,Michael Parsons +1634313,Ana Flavia Gavlak +1170498,Elsa Maxwell +173995,Drew Powell +1795832,Marine Battier +1837281,Andrew Moon +1329672,Buddy Smith +1781511,Peter Halpin +29932,Ann Mahoney +1323457,Roman Artemev +291263,Jordan Peele +228487,Keith Faulkner +1399555,Aubrey Shelton +999459,Hyper BB +1610500,Gary Jochimsen +1421629,Todd Lascane +108473,Lena Meriläinen +1072881,Leigh Davis +1854673,Max Gecowets +119219,Julia Maxwell +88542,Claire Ross-Brown +1032108,Ruby Mayer +111368,Björn Davidsson +1554976,Kim Larrichio +1140520,Piotr Wysocki +1275806,Derek Weston +1334327,Sara Gorsky +99137,Scott Blacksher +1088672,Ben Rosenfield +1088123,Kim Merril +96049,Ichirôta Miyakawa +94149,Ron Roggé +46947,Michael Huddleston +90141,Silvio Berlusconi +1142629,Tavi Gevinson +1123418,Mark Whelan +225520,Dolores Faith +65800,James Hutson +93139,Nina Zanjani +151713,Sid Grossfeld +230441,Abhishek Sharma +49170,Simona Marchini +1650312,Frédéric André +1436337,Evald Terho +559081,Gladys Henson +1360412,Geoffrey Gill +109786,Alex Feldman +1631761,Kwok San-Hing +170600,Joanne Gilbert +1211750,Indira G. Wilson +63367,Eanna MacLiam +1337696,Sarah Karijan +932646,Colleen Moore +129700,Nozomi Sasaki +1089230,Simon Vincent +1765664,Caleb James +1500677,Francesco Sechi +1717911,Willy Ray Core +1100362,Annika Ernst +1623329,Warren Scherer +1780278,Matthew Harvey-White +1774100,Steven DeMarco +1711521,Michael Love Toliver +229674,Radu Andrei Micu +1036241,Mackenzie Mason +994415,Vasilis Nanakis +137652,Kristjan Sarv +1601531,Wibool Boonrak +1223495,Claudia Teixeira +133049,Tetsuji Tamayama +187096,Tibor Gyapjas +1184774,Daniel Fritz +1642138,Meghan Nora Smith +1165731,Misao Seki +237784,Aleksandr Efremov +1417352,Kingsley Ben-Adir +132541,Gaëlle Cohen +225656,Masami Iwasaki +1853910,Marcella Melnati +1383251,Paco Catalá +1417538,Takayuki Takuma +276614,Kimberly Davies +1520905,Philipee Ekkers +110920,Richard O'Barry +1321964,Simon Larouche +1000800,Sonja Crosby +70010,Bernard McKenna +173835,Richard Waugh +1588360,Mike Lanier +36755,Peter Prager +1849105,Patrick Boshart +1362527,The Hoosier Hotshots +120209,Donald Haines +1459159,Michael Falso +131744,Stephane Griffin +1562564,Wu Ruo-Fu +1825503,Eloi Costa +7159,Johann Adam Oest +1422188,Mary Mersch +1218154,John Lloyd Young +1646458,Kathleen Stavert +589420,Jessi Palmer +1185800,Jeremy Shinder +1022455,Archie Alemania +1755084,William Schaff +94926,James Horan +22190,Dieter Thomas Heck +103285,Leah Gibson +1734736,Carol Jean Lewis +1493398,Adam Zambryzcki +1156339,Frédéric Moulin +1863902,Graziele Grassoni +88981,Tex Phelps +222141,Megan Boone +1413779,Annie Batten +129014,Dhaffer L'Abidine +1827455,Luciane da Silva +1014926,Lino Facioli +271091,Inna Ulyanova +1704787,Nigel Bach +55668,Jamie Uys +1651874,Marc McCardie +578096,Marianne Comtell +1431399,Barral +77264,Ashlie Atkinson +1176892,Granville Ames +60432,Jason Cerbone +1799151,Jordan Lawrence +1508823,Alicia Love +76674,Ele Bardha +11528,Jean Renoir +1426906,Hao-Hsiang Hsu +1039429,Vincent Russo +1500424,Joujou Turenne +998697,Flora Finch +5850,Kida Khodr Ramadan +1034672,Todd Nelson +1438921,Caleb Helm +117281,Matt Costello +96339,Nicole Jaffe +1372475,Shin Dong-Mi +1643689,Alex Marx +226384,Tommaso Ramenghi +1285592,Erin Darke +77860,Jacques Gamblin +137639,Mait Malmsten +130507,Kelvin Chung +46251,Henry van Lyck +1741924,Andrea Gattinoni +1488675,Jake Robbins +1039258,George Canyon +104561,Craig Roberts +1663823,Norman Bowman +97966,John 'Bud' Cardos +1094091,Maika Monroe +1743573,Gintare Beinoraviciute +96021,Debra Gordon +543619,Jenny Alpha +563082,Jacques Adèle +140763,Manav Vij +1411472,Vi Kaley +1889234,Munshi Munakka +1420663,Lyndon Smith +603619,Maria Gladkowska +1344716,Violet Krumbein +1298785,Jessie Tilton +1295542,Teresa Biter +990986,Madison Bauer +1076363,Tao Tsuchiya +21461,Joan Staley +1888496,Peter Fadl +560153,Algis Arlauskas +1288733,Wendy Aaron +1893913,Amir Tessler +1654409,Danny Gutierrez +1707949,Brad West +564934,Dorothy Morris +80095,Claudia Jurt +1763856,Emma Gilmour +1624808,Asier Aranguren +29842,Nikolay Olyalin +16898,Bill Travers +128630,J. Paul Boehmer +130365,Jonathan Watton +551793,Caroline Gasser +1614440,Cliff Ferraro +1388676,Darren Main +220141,Ben Mansfield +1488534,David G.B. Brown +1444242,Alena von Stroheim +1865503,Aric Floyd +1153620,Saulius Balandis +109093,Cheng Lui +74368,Andrea Libman +211155,Trudy de Jong +1369057,Katherine Cunningham +1105251,Manolo Caro +1315752,Eva Kaminsky +110885,Jennifer Cody +1484029,Martha Miyake +125528,Weijie Yu +1052887,Sıtkı Akçatepe +80877,Laertis Malkotsis +1210349,Anna Hakala +1190374,Yuriy Yakovlev +1179796,Tina Gloriani +1120449,Dariusz Majchrzak +1216801,Justin Jason Roberts +70321,Mireille Bailly +1079896,Stefania Bogo +74138,Sigmund Vik +1427085,Lauren Brady +106786,Zafer Algöz +1031272,Patricia Wilder +1188,Kim Ki-duk +122192,Naoko Watanabe +1706812,Duncan Ragg +1506790,Scott A. McGillivray +1425800,Necro +41077,Joe Henry +1438249,Ahmed Abaza +1233838,Maggie McCarthy +195895,Cathy Rigby +1484675,Dona Carlson +590773,Ali Şen +144787,Lakshmi Ramakrishnan +1273680,Valerio Lo Sasso +1827453,Temily Comar +1251643,Melis Babadağ +1322390,Darla Biccum +1504912,Fleur Poad +1820222,Scarlett Thiele +99262,Oleg Basilashvili +1378400,Manon E. Turbide +101959,Doris Merrick +1456341,Parker Mack +99099,Justin Deas +129702,Hikaru Yamamoto +1704770,Kandee Johnson +1296813,Matleena Juusniemi +52154,Stephen Sondheim +21608,Derek Fowlds +1211403,Mukhlis Dzhanni-zade +33775,Jackie Moran +117654,David Sterne +1334724,Jasmine Polak +1308690,Reina Hara +1351923,Jakob Kraze +1085618,Anthony Shim +117741,John R. Mason +1576433,Billy Graham +1324627,Chris Graham +212758,Volga Sorgu +1023425,Vida Blue +1095608,Marque Richardson +1616827,Cheung Man-Ting +10995,David Hayter +1508820,Mark S. Cartier +15626,"Robert Walker, Jr." +1306572,Giselle Eisenberg +95672,Jack Lung +1758544,Ekarajh Sapphakitkamjorn +35128,Steffan Boje +15189,Michelangelo Antonioni +555248,Michael Scovotti +1584566,Matthew Needham +95376,Nathan McCray +1102574,Diana Franco Galindo +1553392,Sally Ride +1174601,Celia Quicke +30984,Katherine Victor +550034,Marcel Gotlib +235337,Yoku Shioya +1877029,Daniel Panes +1247474,Engin Hepileri +1044536,Dechawut Chuntakaro +549026,Don Dohler +1522126,Zach Guerrero +1651426,Saif Lone +1366486,Nina Melo +130977,Joanne Froggatt +187996,Annie McGreevey +1511965,Miki Hanta +1077852,Henriette Damsgård +1672084,C.J. Evans +131261,Delhi Ganesh +837588,Jim Cirile +153115,Michael Barrington +10506,John Wyman +24065,Mario Winkelmann +1061428,Hebe Duarte +601629,Olga Edwardes +1188435,Santí Serra +168865,Krista Kalmus +1413402,Patrick Kearns +130928,Lise Roy +1365418,Josefina Díaz +1224426,Alison MacInnis +1020809,Dorota Segda +1209311,Yumi Takano +1019097,Jason Vail +228789,Ricardo Gil +1436393,Kasumba Isma +1135998,Yeung Yam-Yin +1051596,Max Urlacher +1213398,Michael Steger +1506701,Charles Ward +3614,Michel Houellebecq +9282,Guy Thauvette +37007,Aimee Brooks +60272,Cam Clarke +104111,Ann Marie Calhoun +38312,Wolfram Koch +68889,Alfred Dorfer +1179649,Bruno Irizarry +1531622,Kevin Tillett +102140,Aline Mess +1874736,Sven Aage Andersen +1273489,Vic Oliver +1707747,William Lee +1423660,Trey Edward Shults +277634,Sila Agavale +932038,Jacques Mazeau +102224,Carlos Sampedro +1898628,Emy Bergamo +1871453,G. Absaliamova +1719079,Shawna Howson +1446841,Norma Michaels +195098,Anita Mann +132531,Tiara +1667523,Mahlon Foreman +143725,Mikhail Kozakov +111741,Corinne Orr +566645,Allan Wood +549833,Sergi Mateu +81404,Pernille Sørensen +124719,Jason Wright +1452211,Connie Craig +1307990,Patrice Succi +1740110,Ax'nt +1677399,Rebecca Forsythe +1789194,Kevin Curtis +1363398,Gerry May +38361,David Muir +1346980,Ivo Nandi +1511971,Tural Manafov +98632,Lane Hughes +1707954,Edward East +1744828,Nathan Mulumba +72699,Clare Carey +992824,Guy Michel +1163378,Keung Hon +1798994,Yolanda Suarez +1221286,Zeme North +27657,Rachid Fekkak +1704660,Tinashe Kajese +1418246,Margarita Giliadov +102309,Kinna McInroe +145634,Fernanda Tavares +83276,Kenny Wormald +1176988,Игорь Христенко +1446020,Dixie Gay +932045,Lacie Harmon +1224968,Sig Hansen +1534742,إنتصار +76536,Courtney Ford +77237,Celina Jaitley +1724987,Toby Hefferman +1422379,Janice Chambers +63606,Meredith MacNeill +1903974,Lane Manson +1123686,Lavrentis Dianellos +304845,Mark Adam +1456202,Hilary Jardine +1530440,Jay Santiago +1531738,Ida Kuusela +1192899,Andrea Stefancikova +1315140,Bernardo Cubria +1256325,Choi Min-ho +1518187,Gavin Lewis +93813,Miri Golan +1640623,Elisa Calin +1310024,Erik Øksnes +45582,Don Wilson +1717119,Sheila Campbell +1619184,Yukio Tada +96592,Manuel Tadros +102880,Cherie Chung +1117921,Nikolay Stotskiy +1378150,Elizabeth Davidovich +70556,Ken Olandt +1872248,Anthony Gamboa +1517477,Orlando Gallegos +1094175,Fernando Moreno +107187,Karina Huff +1151320,Michael Fischetti +1604108,Corinne Rogan +1600854,Николай Еременко мл. +1649391,Marlena Lerner +1511992,Kathy Tong +53515,Beatie Edney +1720614,Michael Andrew Baker +1508657,Jessy Gagnon +1169333,Gerda Gilboe +1088116,Dan Scott +994217,Mélanie Chaney +1289750,Myrette Morven +1127191,Mayumi Kurata +1034513,Devan Leos +1511956,Connor Antico +224728,Inma Cuesta +82604,Howie Dorough +1880481,Gianfabio Pezzolla +624813,Boris Ivanov +1431448,John Ireland +57371,Jeff Cohen +1150495,Jean-Marc Chautems +1110069,Kazy Tauginas +1360003,Susan Garibotto +134616,Yûji Hori +80177,Cameron Ansell +6713,Michael Kuhn +1866646,Shelby Patterson +163905,Bruce Kirkpatrick +31811,Luciano Albertini +39334,Yves Barsacq +148744,Eddie Mayehoff +87525,Alan Carr +149223,Laura Smet +141035,Patricia Raven +1019098,Jason Hughley +127273,Kim Hyo-jin +1441919,Caspar Phillipson +209785,Reedy Gibbs +136128,Lee Miller +1154422,Ben Lewis +1269276,EJ Jallorina +1723112,Ignacio Villalbazo +65805,Lillian Carlson +1725277,Dolly Gadsdon +116925,Trisha Krishnan +1362515,Mauricio Vaca +1471817,Oskar Sandven Lundevold +92429,Jens Hultén +1784602,Asher Wallis +1643337,Hind Attassi +1181426,Valorie Curry +235082,Nathalie Alonso Casale +935194,Georgi Martirosyan +1894273,Gaetano Fusari +559896,Igor Vladimirov +589139,Loredana Martínez +1334717,Si-nae Jo +71658,Bill Wise +1544304,Akhil Akkineni +1557277,Eiji Gô +1291254,Luke Murphy +1771658,Dennis Scholz +1436153,Limin Deng +1545504,Michael Ward +1302541,William Tao +1888139,Takayuki Suematsu +1464770,Asuman Kostak +239739,Mavis Harris +33856,William Gould +9726,Kenichi Suzumura +1050851,Milan Nikotović +102353,Egbert Jan Weeber +122157,Yuri Nakamura +1261684,Nikki Moore +589654,Ali +35208,Coline Serreau +219485,Mark L. Walberg +1578333,Rose King +74370,Nicole Oliver +1064930,Vera Baranovskaya +240010,Gannosuke Ashiya +1093236,Mária Ronyecz +1823853,Taliah Webster +1436284,Yuzhan Gao +129806,Chase Tatum +1504598,Paul van Dyck +1066880,Lyn May +1001266,Ori Levy +1418165,Chelsey Marie +1827139,Donald Stewart +1531257,Vincent Tirel +1317688,Taylor Ashley Murphy +93467,Toni Acosta +1317889,Eric Robbins +237573,Santa Auzina +1272846,Jon Lee Cope +114977,Margaret Bowman +1170462,Tom Dewispelaere +93892,Masatō Ibu +1065329,Emily Stofle +54932,Raymond Campbell +1105465,Kerry Finlayson +1488356,Kôetsu Ômiya +83029,Shawn Campbell +1062936,Billy Davis +1116011,Han Soto +1512181,Valerie Jane Parker +1716986,Kay Thiel +1507148,Lyndsey Doolen +87476,Lisa James +39754,Daliah Lavi +1854,Huub Stapel +974455,Susan Gallagher +129807,Bob Kyle +1315035,Florian Karlheim +1279379,Toshiko Itô +31187,Catherine Disher +1625019,Beth Stelling +972378,Katie McGovern +27613,Eckart Dux +590556,Agnese Dubbini +955322,María Sorté +1762409,Gyan Dookie +1359121,Patrick Bartsch +129007,Nino Bignamini +1151794,Aaron Șerban +146195,Francine Bergé +1637933,Nadir Siddiqui +1821656,Regev Farkash +202360,Sidney Johnston +1049407,Ronald O'Neil +1193421,Juan Manuel Cotelo +58482,Soncke M. Korries +997235,Jeff Newman +63941,Marshall R. Teague +1205905,Peyton Whitcomb +1784649,Stacy Jordan +69098,Catherine Oxenberg +1338402,Aldo Farnese +124874,Eila Roine +137835,Tõnu Kark +112532,Kevin Interdonato +1260127,Toshie Takada +124625,Paola Minaccioni +1767214,Derek Carver +117886,Amanda Garsys +96605,Tris Coffin +103286,Sonya Salomaa +1324066,Leticia González +1497228,José Manuel Rodríguez +111518,Devon Graye +1353641,David Ritchie +1687933,Angie Inwards +100690,José Marco +1394670,RJ Cyler +88940,Richard Gutierrez +43311,Yannick Bisson +37010,Tim Sitarz +119388,Clara Furey +52130,Michael Fontaine +1430949,Liam Springthorpe +1482572,Eric Boon +124547,Nicole Leigh +1364476,Ulla Koivuranta +1604103,Danice Page +1288866,Jakob Ulrich +1203952,Meredith Forlenza +557381,Debra Harrison-Lowe +1860630,Ana Mackenzie +234125,Eero Ritala +1605319,George Moss +1618923,Johanna McGinley +1580710,Larry O'Dwyer +140596,Helen Nima +568560,Diana Kaarina +1798336,Nicholas Jones +135618,Deborah Power +544816,William G. Schilling +1493489,Günter Lemmer +16809,David Scheller +1841516,Alyx Weiss +1782611,Vanessa Casas +99388,Darren Doane +49795,Peter Simonischek +32380,Margaret Lee +1130878,Sandi Salamon +123517,Michael J. Anderson +1356413,Héloïse Cunin +1164003,Shian Denovan +27632,Ben Daniels +1014367,Alejo Mango +1087648,Lou Liberatore +1267122,Rory Fleck-Byrne +34266,Zouzou +1796431,Linda Joyce Nourse +158940,Rollin Moriyama +19118,Anton Yakovlev +1196006,Monroe Mann +1674203,Eddie Ramos +150258,Hizuru Takachiho +87372,Ted Ryan +24397,Jean-Pierre Mocky +101808,Marc Senter +554065,Kôzô Satô +1760867,Beulah Hashe +104141,Venesa Talor +1477355,Gerda Diesen +81232,Lars Ekborg +944353,Jennifer Carmichael +1486367,Prabhakar +207997,Drew Roy +1707896,Caleb McClure +848,Hans Werner Meyer +1337983,Renzo Gariup +1078378,Süleyman Turan +141996,Hilo Hattie +559555,Michel Gammenthaler +119481,Chip Chuipka +1069919,Sergei Astahov +89760,Özgü Namal +1687458,Marcelo Flores +132475,Mario Riva +1159710,Caglar Corumlu +1631702,Bill Crespinel +44412,Willy Braque +228930,Smaïn +1509499,Jobst Schnibbe +1263644,Jochum van der Woude +1117867,Zang Jinsheng +31898,Luciano Salce +72783,Carmine Paternoster +1008339,Nina Maslova +1213024,Donald May +1707541,James Andrews +1062709,Mike Nordlund +70654,Max Wall +67787,Karen Lynn Gorney +225809,Ida Marie Bakkerud +86803,Tatyana Klyuyeva +77749,Jenna Harrison +1579945,Nikki Limo +224565,Knut Husebø +1566395,Finn Michael +148533,Barbara Brewster +1455084,Josef W. Nielsen +1480130,Tiffany Sander McKenzie +1029120,Narek Nersisyan +1745067,Luis Chávez +1035347,Killjoy +559194,Odd-Magnus Williamson +945387,Henry Hewitt +135838,Libby Brien +1400226,Nadia Poeschmann +1423925,Ted McMichael +1295285,Sandra Huldt +124618,Nicole Grimaudo +139168,Bob Martet +1393520,Vincent Fuentes +175658,Lesli Kay +194630,John Scott +1581573,Benjimen Blair +944734,Daniel Lee Robertson III +1060184,Zoé Bruneau +179896,Jeff Bergman +130111,Nassar +1363400,Mark Dealessandro +228121,Laura Post +1093970,Porfiri Podobed +1210466,Sofia Banzhaf +1399528,Pip Andersen +1177921,Adrian Rosley +53819,Grégoire Aslan +1492918,Louis Perez +1071146,Gabriela Schmoll +1819152,Miguel Angel Varela Fimbres +93252,Kim Hae-sook +1576622,Rick Hildreth +6134,Jens Jørn Spottag +1184974,Lore Richter +46867,Jan Malmsjö +1355113,Linde Prelog +147725,John Prudhont +1475127,Gemma Whelan +1627417,David Williams +156818,Gina Hecht +231014,Jaci Velasquez +109793,Jon Dainty +2730,Elma Karlowa +24520,John Reilly +173132,Kim Christiansen +86384,Logan Bartholomew +1239060,Doyle Brunson +1897710,Edwin Rodriguez +1589614,Meredith Jensen +47436,Vladimir Zeldin +112649,Brent C.S. O'Connor +1140190,Flore Sollier +1650193,Pryor Ferguson +1305407,Carl Wery +207144,Mike Goodenough +63207,Kristyn Green +82511,Will Gluck +146359,Max Boublil +110599,Petrus Andreas Christensen +559659,RuDee Sade +1835243,Charles Dean Stead +24343,Peter Mayhew +1798372,Billy Holland +1332971,Dean-Charles Chapman +1333881,Jane Cobb +10600,Deryck Guyler +171005,Marilyn Rockafellow +1050255,Edouard Bamporiki +1497225,Tony Cruz +1050843,Danina Jeftić +172529,Remy Auberjonois +18407,Carina Berns +1817399,Rebecca Friday +1816345,Tara D'Arquian +1071202,Helen Trenholme +1437840,Zuzana Fišerová +123496,Ben Batt +1511921,Melissa Eastwood +1405317,Robert Firth +1182602,Olivia Sparks +1576623,Don Adkins +127225,Akio Kaneda +137537,Katariina Lauk +223938,Tamer Hosny +1033069,Kalpana Iyer +1366416,Winnie Hung +127825,Dagoberto Gama +135865,Lisa Foster +120985,Siv Ericks +935333,Tatyana Tashkova +1088203,Valerie Hines-Williamson +85215,Maitland McConnell +129656,Clara Voda +1350211,John Ciccolini +138206,Olivier Tuinier +1138915,Miroslawa Marcheluk +207199,Ray Gardner +1651533,Johan Asplund +1717271,Stephanie Marrero +225695,Jonathan Daniel Brown +1807045,Kyle Lima +1796925,Rene Boucicault +1186840,Sterling Jerins +1114581,Dinesh Ravi +500269,Julianna Robinson +24683,Jacques Weber +1301503,Micheline Poitras +159068,Rodney Saulsberry +1063379,Teuvo Tulio +1516554,Michael Grant +580891,Pandu +1170241,Tony Jarreau +571467,Jiří Ornest +1045281,Birgit Conradi +1312150,Нада Блам +74303,Dreama Walker +1583955,Konrad Bugaj +209780,Wojciech Pokora +1419329,Wa Lun +1288760,Laura Mollica +123852,Masumi Harukawa +1696088,Sergei Lodzeisky +168077,Joe Benson +1283564,Thilo Prothmann +1561755,Svenja Jung +118036,Ella Smith +1001883,Walter Riml +95131,Sally Geeson +1144716,Angela O'Neill +91378,Veronica Ngo +1210350,Hannes Veivo +1749868,Dakota Zariwny +556907,Ahmet Mekin +1106411,Lindsay Burdge +140407,Ksenia Solo +1382838,Justin Scott +89878,Ryotaro Okiayu +111945,Noah Bean +88168,Rebecca Staab +544729,Maurice de Féraudy +1845453,Amanda Smith +1740121,Robert Herrick +94253,Robert Seethaler +157549,Diane Robin +1117084,Paul M. Walker III +1719596,Ato Blankson-Wood +102222,Carmen Machi +1179774,Nina Rakovec +1021832,Yvonneck +92193,Chico Diaz +112894,Anna Skellern +1650390,Ignacy Sut +1185448,Wanda Taylor +1295822,Diana Miller +583956,Mahanadhi Sankar +1863882,Carlos Grillo +98787,Piero Palermini +1210979,Michael Kirch +962179,Emilio Gavira +54430,Michael Colyar +232535,Angad Bedi +1588560,Dirk Lavryssen +1079697,Kenneth Edmonds +577645,Sergei Polunin +1874742,Rikke +1885522,Fides Stagni +96817,Jane Novak +1644520,Asriah Nijres +1481006,Tanja Melendez Lynch +1636765,Susan Cashdollar +1005681,Filipe Duarte +1074596,Karlin Walker +128229,Barbara Braconi +156271,Richard Barnes +1217434,Eric Longworth +1654525,Jaime Feggi +137600,Rein Oja +1225977,John J. Dalesandro +137848,Indrek Taalmaa +206311,Steve Berg +320709,Isao Bito +1367114,Didier De Neck +1018064,Jorge Neto +1393837,Govinda Angulo +1056810,Nathalia Dill +1754821,Nurlybek Saktaganov +1072138,Roska Rozen +1280060,Tilda Cobham-Hervey +1360311,Pierre Andrau +39905,Josef Hader +1211684,Brenda Ngxoli +1214345,Bruce Hopkins +1182095,Katarzyna Galica +56366,Ross McCall +1560379,Hayden Szeto +1208006,Vera Ross +1178457,Clémentine Yelnik +1086298,János Ács +1128255,Christian Thomas Ashdale +145484,Atıl Inaç +158011,Kristian Alfonso +1842095,DaLaura Patton +1576785,Marianne Meløy +143768,Mark Scheibmeir +76478,Dom Hetrakul +53258,David Banner +117175,Heath C. Heine +1350847,Charlotte Dupont +175183,Jason Collins +933082,Danielle Branch +121574,Ashley C. Williams +1308759,Raphaël Descraques +1795350,Harold Sokol +1510630,María del Monte +1200039,Ivy Corbin +210904,Aliyah O'Brien +1266584,Georgina Rich +997740,Navin Nischol +937884,Domingo Ambriz +1796599,Thorleif Reiss +180746,Derek Mark Lochran +1488888,Alstair Cloete +65438,Shinpachi Tsuji +1023534,Grant Sutherland +1161655,Maria Olga Matte +1267675,Dorota Puzio +591976,Willem van den Broeck +1769860,Maria Mehalis +1118284,Marianna Kushnirova +1535055,Josh Farah +39589,Dietmar Mössmer +131632,Massimo Popolizio +115421,Pit Bukowski +1706959,Heo Jung-eun +1353647,Evan Sturrock +12341,Memmo Carotenuto +1118053,Sofya Pavlova +150903,Gong Yoo +1667488,Fekete Tibor +1685109,Manuel Raposo +28767,June Carter Cash +1168789,Chris Szymiec +1268988,Grant Huggair +10726,James Fleet +127431,Singh Hartihan Bitto +222303,Leo Jokela +1446291,Camila Bossa +85574,Purab Kohli +1696038,Abigail Kuklis +23180,Johanna Bittenbinder +81579,Allyson Sereboff +41821,David Bisbal +1279821,Kristoffer Gummerus +113211,Chris Webb +81751,Mariya Kuznetsova +1520916,Suzanna Lastreto +1784152,Noa Musa-Lelouch +104915,Bob Rumnock +142446,Manuel Blanc +8741,Victor Sjöström +554877,Nils Hugon +1210153,Rocky Myers +1460120,Millie Brady +1330450,Kim Joong-ki +86050,Rachel Grant +1602211,Greg Matt Garcia +1800029,Emmet Ryan +92080,Brad Swaile +1398714,Tyler Kimball +63764,Gustaf Skarsgård +545079,Julien Poulin +1600352,Gregory Giannis +1117505,Heather Caldwell +1880538,Michael Uwaifo Olabiyi +104333,Jillian Kesner +1782584,Jackie J. Lee +97889,Clare Grogan +96365,Ellie Araiza +1587891,Esmée Myers +76548,Agnes Kittelsen +1326186,Alessandro Marverti +148016,Jussi Lampi +1782613,Raymondo Mendez +1159662,Erin Shanagher +1189922,Naratid Namkang +1695652,Josh Golden +66914,Manolo Cardona +1167424,Tomoko Kiyoshima +33343,John Ralston +126175,Jerome Holder +102326,John Raven +1776385,Solly Assa +1515476,Estelle Cruijff +590818,Jerry Ying +1391240,Bernhard Schmid +190626,Morne Visser +107203,Bracha van Doesburgh +1183672,Fortune Feimster +100414,Roberto Dell'Acqua +1266349,Hannah Tiefengraber +1110005,Lorry O'Toole +81792,Élise Otzenberger +1284084,Evan Jonigkeit +1302830,Jessi Badami +51315,Joanna Pettet +1383480,Atkins Estimonds +1203062,Gracinda Nave +1012982,Amy Lindsay +1117987,Dimitris Kalivokas +212641,Ria Vandervis +146822,Jácint Juhász +1479978,Jill Terashita +1018784,Gérard Meylan +24424,Ilaria Occhini +91450,Dimitris Horn +1211683,Jayashree Basavaraj +1069645,Li Dongxue +16870,Celso Bugallo +136500,Sandha Khin +1639262,Sylvain Wiltord +1316589,Bernhard Brink +1001789,Turgay Kürkçü +79638,Edward Tudor-Pole +109441,Chris Massoglia +83203,Fujio Suga +1297494,Anggun +1683792,Khamary Grant +1447460,Chris Clements +225863,Zach Callison +930994,Lucius Baston +1152021,Keston John +1367052,Márton Kristóf +1501561,Mindy Ramaker +37912,Walter Gross +1857592,Janine Mitchell +1071096,Paola Loew +1072286,Bruce Chadwick +235320,Larisa Luzhina +257819,Edward John Stazak +176215,Robert Goodman +1300650,Jake Manley +151180,Isild Le Besco +1174456,Liu Wei-Hua +55757,Enzo Tarascio +288221,Enid Stamp-Taylor +107185,Ari Cohen +1339660,Khosro Shakibai +105422,Wong Yau-Nam +125529,Chengren Tian +1745073,Hope Dworaczyk Smith +1684551,Alan Grice +1388538,Meral Polat +99139,Volmar Franz +1426802,Miloš Mesarović +53718,Erin Boyes +239119,Neil Kinsella +933264,Jason Day +1186023,Tisha French +97552,Masami Kosaka +1157592,Atiqah Hasiholan +130863,Shanti Lowry +220056,Franco Vega +1095855,Fábio Porchat +1180698,Kyle Mooney +1458926,Daniel Makarenko +35953,Olivier Girard +40958,Peter Butterworth +925500,Mitzi Green +185427,Benedick Blythe +130839,Maximillian Roeg +588928,Ewa Bukowska +1646584,Maxime Lapointe +96178,Derek Lamden +87569,Tia Mowry +1433877,John Lambreth +1399368,Benjamin Winspear +1158712,Sung Kim +1282731,Daniël Arends +937119,John Charles Meyer +224658,Hideo Kanze +48874,Carmencita +235668,Eduard Kohout +563100,Ronald Reece +120825,Jessica Mauboy +225048,Nils Verkooijen +584644,Kollam Thulasi +933067,Marc Pitman +1098498,Erni Arneson +1368433,Tamela D'Amico +1261071,Ben Turner +555315,Maxine Waters +1562479,Loreto Murray +550133,Anders Henrikson +1542288,Rosemary Findlay +1317209,Corby Kelly +1078610,Jane McNeill +88030,Alex D'Lerma +1411821,Mara Adriani +1537837,Austin Fryberger +932323,Margo Prey +82705,Sarah Dunsworth +205082,Shauna MacDonald +1392949,Taya Clyne +1026218,Jesse Bostick +842056,Caroline Abras +1262786,Gordon Waddell +1239934,Vince D'Amico +1524416,Alexandre de Toulouse Lautrec +52661,Pamela Prati +125279,Pistireanu George +74302,Cory Hardrict +52031,Mabel King +1426900,Abel Aboualiten +1549476,Wendy-Sue Rosloff +1094133,Andy Reid +1133106,Stefano Scandaletti +1029078,Mikko Vanhala +1143305,Peter Belli +130040,Christiane Torloni +1353417,Kristina Kloubková +884406,Susannah Fielding +1332923,Victoria Mitchell +1302821,RJ Konner +1489944,Anjali Varadarajan +108908,Josep Maria Domènech +1739698,Ying He +168452,Leslie Jones +1267376,Lamar Legend +53066,Sebastian Sozzi +1413269,Richy Castellanos +1808833,Violeta García +80507,Stefan Kapičić +1589679,Jason Frederick +228347,Willy Birgel +177919,Rachel Kimsey +1500894,Cody Abercrombie +72688,Anna Järphammar +238068,Giovanni Visentin +1763912,J.R. Adduci +1844329,Damian Foletta +1451332,Roy Sampson +1133425,Miranda Caharija +1579543,Johnny M. Faulkner +81244,Akira Ishida +1261491,Alejandra Onieva +74195,Toru Nakamura +1636658,Stefan Grube +1027457,Elisa Lasowski +216299,Michael Schumacher +1491376,George Vassilatos +57054,Winston Chao +1333667,Lauren Macklin +1391951,Amit Bhargav +1494520,Mary-Lou Hermant +1363232,Curtis Arden +193020,Richard Glover +1523988,Cory Turner +1188240,Rebecca Lawrence Levy +64888,Von Flores +972937,Trevor Reid +586138,Victor Sévaux +1057147,Maude George +1045408,Danica Ristovski +1591117,Lin Hsiu-Ling +1265889,Shi Guangjin +196461,Jennifer Gay +137370,Bertel Lauring +1588872,Kaleb Alexander +1353261,George White +1675345,Brittany Allen +1192159,Dee Dee Austin +1228352,Luke Bilyk +395517,Dahlia Waingort +1273234,Jalen Coleman +128435,Andrea Scotti +1697155,Julia Holt +78849,Edgar Barrier +237048,Pawan Kalyan +1738257,Mike Eshaq +589847,Beryl Cunningham +65826,Frank Alvarez +1505505,Alexis G. Zall +1144894,Paris Chong +52773,Amole Gupte +1504910,Andrés Cantor +234339,Alain Duhamel +1496755,Anthony Ippolito +1537895,Julie Lockhart +1153298,Camille Verschuere +60642,Tom Petty +1485596,Sam Hutchin +1890681,Paulo Adriane +115607,Wensley Pithey +1532420,Ashley D. Merritt +1212929,James McGowan +17606,Imogen Poots +1769814,Mary Farah +1167895,Franco Pistoni +120781,Ben Carter +1054258,Molly Parkin +1759003,Romuald Andrzej Klos +1589574,Josep Torrents +94986,Amanda Shaw +1471526,José Miralles +931941,Rosemarie Stack +1263758,Raoul Grassilli +1353679,Suraphat Kirivichien +105775,Theo Trebs +1784613,Annette Houlihan Verdolino +1653480,Sadhil Kapoor +149094,Moms Mabley +1723888,Sayuri Kawauchi +36659,Boris Isaković +1753328,Colin Moretz +1746879,Derrick Webster +1394337,Charlotte Rickard +565447,Romina Power +66823,Joseph Kahn +113468,Michael Hunter +1181403,Pixie Davies +1223415,Gennarino Palumbo +931318,Cristina Hoyos +1259515,Simon Chin +146937,Sayaji Shinde +1696396,Txuno Etxaniz +1399819,Thomas Bading +932091,Ryan Guzman +94490,Andre Gower +933492,Christopher Minie +63369,Nigel Linden +1239887,Chris Pitt +1294397,Sandy Adell +1464454,Neet Mohan +1018502,Ai Kago +1324064,Luciana Villegas +353858,Stepan Kayukov +1583622,Leonel Claude +1037725,István Szilágyi +1314029,Patrick McAllister +4369,Natalia Roig +1176475,Olivier Chantreau +1338812,Sérgio Amorim +1462362,Attilio Torelli +1398068,Phillip Chbeeb +132431,Mélanie Bernier +143126,Oiva Lohtander +1640223,Gwen Waymon +216425,Bertie Carvel +133284,Richard Goteri +1179852,Cosondra Sjostrom +1165616,Elena Sanchez +1431400,Carmely +1780263,Ethel Robinson +1529494,Ash Merat +1029103,Marek Kosteczko +1457535,Megan Drust +1570878,Lloyd Lindsay Young +1185964,Julián Génisson +589355,Peter Carlsson +64213,Brett DelBuono +12815,Bernard Bresslaw +112129,Diego Cataño +937760,Alexandra Batrumova +1817963,Aaditi Pohankar +121386,Renée Stobrawa +1188743,Fantine Banulski +928458,Jed Maheu +1481493,Ludmila López +582228,Sofia Oleynik +1357465,Wayland Trask +1206149,Marcus Natividad +1586010,Maria Sciacca +1020044,Neelam Bakshi +105159,Alexandra Bastedo +1300113,Maria Giannakopoulou +1759495,Aka Zhao Hui-Shan +223274,Inês de Medeiros +1538584,Shondale Seymour +1087601,Alfredo Michelsen +237151,Micha Hulshof +1853762,Mary Asiride +15902,Michael Wallis +1240499,Marcos Winter +544684,Sarah Stern +23178,Peter Mitterrutzner +1351403,Firouz Behjat-Mohamadi +81282,Frances Gifford +1065087,Charles Giblyn +1798998,Garfield Wedderburn +86245,Ishrat Ali +1266279,Claudia Brovedani +1035542,Jimena Barón +7451,Machiko Kyô +77266,Katie Lyons +40622,Wiesława Mazurkiewicz +1434838,Ellen Dorsher +155792,Roz Ryan +95732,Robert Alda +1563545,Nivedita Joshi Saraf +1270295,Lydia Opøien +1297390,Mark O'Neal +1285828,Michael Galante +96119,Marc Thompson +143633,Igor Gasparyan +1724705,Marion Schmitz +145360,David Lee McInnis +1584779,Zak Rowlands +78425,Louise Monot +1620918,Chan Chiu +1527566,Jet Tranter +1278129,Tyler Dobbs +1175905,Silvio Hernández +41000,Edith Helou +29761,Kathleen Burke +4593,Haji +120052,Jimmy Lydon +1745600,Connie Ducharme +1083697,Giorgos Tsitsopoulos +1050881,Jacqueline Kennedy +1097144,Cécile Boland +1732066,Kasey Brown +73127,Joseph Julian Soria +1042751,José Mari Bizcocho +932376,Nathalia Galgani +553544,Mike Muliadro +1660175,Pātea Māori Club +1321140,Margery Bonney Erskine +1382585,Harry Wijnvoord +1225712,Antonia Pemberton +1019607,Thou Reyes +143304,Aydemir Akbaş +101187,J.P. Davis +1325581,Enrique Mendoza +1673586,George Lee Miles +994244,Jenni Ahola +45555,Núria Badia +1098990,Titi Paris +1204706,Jazz Rituper +1686467,Catia Ojeda +1513594,Juliette Beavan +95051,Tom Proctor +112644,Luvia Petersen +39441,Yvette Etiévant +101607,Cindy Leadbetter +207090,Corey Sorenson +22593,Helmut Schreiber +1321508,Ryûji Akiyama +1518299,Irving Honigman +1800792,Wu Yue +1248802,Michael Müller +1266861,Anoushka Ravanshad +285900,Jeff Allen +1112524,Tauno Palo +1185413,Deborah Scott +222890,Luci Blaine +1144874,Tim Thompson +1014373,Roger May +1212181,Tim Healy +932261,János Gyuriska +31922,Christian Burgess +1147277,Stephanie Powers +1759932,Pokey Lafarge +1494874,Helle Pilar Larsen +1457293,Matteo Sciabordi +1112394,Heide Ackermann +55256,Julie Ann Emery +1375705,Yaumilton Brown +257740,Ecija Ojdanić +1329395,Miwa Saitô +120233,Evgeniya Khirivskaya +1373734,Golda John +210539,Nick Russell +1696268,Marcel Shihadeh +985024,Besedka Johnson +124619,Lunetta Savino +1842089,Danielle Orner +83967,Manu Payet +128236,Sabrina Ferilli +1467065,Carolina Presno +18453,Wayne Bartlett +100058,Clara Colosimo +1653007,Chuck Kull +1458391,César Vianco +1294529,Steve Stanulis +576478,Torsten Lilliecrona +1428019,Demola Adedoyin +1309622,Mariasole Mansutti +130501,Carol Lam +31546,Renato Romano +1030579,Paco Mora +552005,Sadako Sawamura +162849,James Martin Kelly +1741856,Matthew D'Arcy +1640424,Sophie Holland +16051,Joanne Linville +1584909,Samantha Crawford +1608416,Anabel Kutay +1041385,Felipe Camargo +1045070,Brian La Rosa +1540602,Alexa Nisenson +140387,Moon Unit Zappa +99293,Igor Kvasha +638,Michael Mann +1324626,Andrew Glaszek +5953,Spike Jonze +1310524,Michael Chacon +1539398,Larissa Albuquerque +1827932,Verelle Roberts +1563610,Taeve Tetuamia +83633,Vanness Wu +232059,Noëlle Adam +132194,Nando Bruno +1367730,Lukas Matija Rosas Uršič +109087,Barbara Leigh +1790534,Andrea Barr +1878807,Peter Greed +1205409,Christopher Craven +117169,Tim Johnson +81245,Chiwa Saito +387731,Silvio Spaccesi +238309,Mikhail Vladimirov +1061943,Hilmar Guðjónsson +1678282,Jenna McDonald +23008,Hans Hardt-Hardtloff +1697810,Tomás Champer +1650393,Ludmiła Gonczarowa +136180,Kim Charney +35981,Gideon Emery +221669,Jérôme Robart +1200219,Kôichi Itô +36905,Fredrick Lopez +1317372,Brian W. Roberts +1652139,Sangita Patel +1427089,Brandon Uranowitz +1178707,Shum Lo +1579119,Pietro Bartolo +25815,José Quaglio +1357866,Zak Hudson +1016570,Mario Alarcón +1638387,Hugh Ross +1321683,Massimiliano Franciosa +86755,Vladimir Nosik +81943,Scotty Lago +973667,Rosa Salazar +1747845,Matt Stubbs +1240507,Peter Harness +544372,Craig Clarke +4374,Pepa Aniorte +1304173,Kaja Blachnik +1581129,Christophe Maratier +223535,Liu Feng-Chao +1397347,Joseph Naufahu +135347,JeeJa Yanin +1163183,Yu Man-Si +1211584,Roberto Baggio +97176,George Baxter +1142581,Hajime Kubo +1839859,Alessia Mancini +1880593,Vittorio Hamarz Vasfi +147159,Andrea Tidona +1448626,Diego Casale +1273238,Evan Cleaver +1382985,Miriam Cabeza +1663964,Niki Edwards +125845,Robert Noble +1137237,Wolfgang Jansen +58971,Todd Collins +1706336,Abu Rashid Khan +115979,Katherine Owens +1437139,Dani Calabresa +70904,Michelle Dockery +1427407,Viktoria Korotkova +125285,Fuyumi Shiraishi +1192916,Derrick Sherwin +1630649,Huang Xin-Yu +1267863,Starlette Miariaunii +1182729,Kate Cobb +219396,Louis Theroux +1295874,Imtiaz Ahmad +1232307,Patrick Harvey +144261,Françoise Michaud +1189927,Renee Lee Wan +1815691,Kalle Hennie +240556,Mikhail Derzhavin +182326,Robert Craigs +47028,Markus Boysen +1153367,Misha Dibono +1429569,Jon Menick +114756,Kees Boot +1335308,Benjamin Flores Jr. +1620448,Joel Morello +1562111,Katie Pattinson +1736224,Shizuka Ishibashi +181701,Dean J. West +1246803,Arjun Gupta +1650162,Troy T. Parham +128090,Sabina Began +167919,David Cassidy +1502296,Curry Stone +115533,Margot Hartman +585676,Ryan Doyle +224223,Ranveer Singh +1394344,Eric Ian +1503916,Andrew Bridgmont +1891564,Kaydence Lucero +1050084,Vladan Cvetković +106248,Lucinda Dooling +78356,Tomoko Naraoka +21748,Maximilian Brückner +11950,Max Felder +1413689,Jüri Aarma +68182,Stefan de Walle +1241536,Hirohiko Kakegawa +1538779,Iraidaarambulo +223133,Jessica Gomes +131738,Michael Gaglio +630358,Nanda +45746,Ariane Schluter +1784646,Ingrid Fermandois +937554,Lynn Larkin +573792,Kim Min-jae +120026,Carlo Croccolo +124506,George Givot +1429686,Travis Greer +1650331,Jeremy O. Harris +1562086,Stella Stocker +73845,Abigail Cruttenden +1083619,Neil North +1406695,Luis Albert Acevedo Jr. +145160,Matthieu Dahan +1580708,Susan Bracken +1758889,Clinton C. Ingram +1518588,Reggie King +121011,Maximilian Belle +1250223,Heinie Conklin +1294687,Clare Verdera +222504,Rauni Luoma +80112,Sylvester McCoy +538228,Jacques Dufilho +1134966,Joe Lee Yiu-Ming +93919,Danny Keogh +130685,Tomi Ungerer +572287,Peter Smits +592098,Celal Belgil +556931,Kathleen Ferguson +990654,Lee Wilde +1741310,Renata Castro Barbosa +48417,Roger Lumont +104350,Robin Davidson +1095873,Siouzana Melikian +1901235,Panos Vourlamis +560065,Byeong-chun Kim +173001,Marion Eisman +129294,Joanne Jonas +1394446,Louis McIntosh +935201,Diego Boneta +1125580,Joe Roberts +1817422,Gabriela Ostos +1145462,David Bredin +1467979,Joe Sundell +1037958,Maria Donati +1171047,Frank Merrill +1424788,Gwendolyn Gourvenec +1098638,Shadi Sadr +119791,Imogen Church +1042872,Brock Simpson +1605790,Ami Tomite +566882,Ghilherme Lobo +1179881,Garance Legrou +79052,John Hostetter +120005,Lisa Golm +85454,Kunal Khemu +50901,Susanne Cramer +97178,Emile Charles +1390506,Jesse Nagy +219852,Ariel Levy +553954,Akio Suyama +195544,Matilda Ziegler +1736341,Kentaro +180422,Bryan Batt +1195178,Chiyoko Ôkura +549612,Ted Donaldson +1706561,Rossana Canghiari +208246,Darien Provost +142374,Sharon Conley +1589603,Minh Nguyet Nguyen +1635222,Jaye Tyroff +130871,Roberto D'Alessandro +16126,Phillip Pine +1219824,Matthew Posey +1270297,Alf Ramsøy +1584568,Richard Mason +79331,Ellen Dorrit Petersen +1138744,Juan Andrés Silva +101997,Nell O'Day +1012902,Torsten Knippertz +539775,Ewa Swann +1164660,Volodya Belov +1172858,Mahesh Kothare +86893,Nadezhda Rumyantseva +1800037,John Paul Donnelly +1434677,Jeremy Ivy +1670428,Cory Roberts +53843,Reyhan Sahin +1445418,Jai Sloper +1089461,Michael Ojake +1564075,Natalie Jones +1774094,Jamell Washington +1353649,Rob Flanagan +92775,Joshua Pelegrin +1438302,Justin Edward Davis +932354,Anna Kasatkina-Barats +1593042,Kirsten Riiber +1903971,Glen McDonald +1809714,Jagen Johnson +1013973,Carla Juri +143135,Vasco Santana +1029112,Filippo Scicchitano +601407,Desmond Perry +1372476,Kim Kang-Hyun +1750431,Kaitlin Thomas +202955,Theo Kypri +1404403,Nigel Barber +1796423,Tsu-Ching Yu +109519,Manon Chevallier +231487,Hans Jaray +1536684,Andrew Eads +577831,Marina Ninchi +1212194,Andrew James Allen +1187647,Shinsuke Mikimoto +554187,Holly Kaneko +1833804,Jamie-Ray Hartshorne +145678,Patrick Ridremont +96613,Liu Yiwei +1515360,Édouard Tremblay-Grenier +89890,James Dresnok +550683,Kim Hee-won +84903,Larrs Jackson +44191,Sugith Varughese +1091940,Edward Emerson +83897,Ellen Mattsson +1029192,Kang Hae-In +1174659,Yin Zhu-Sheng +1377176,Magnús Kr. Guðmundsson +1380499,Tanroh Ishida +1691469,Samantha Smith +1835279,Sean Manos +100233,Kato Kaelin +94647,Michael Halsey +78415,Stuart Fratkin +1753145,Ron Marino +545009,Cochin Haneefa +1664955,Michael Bodie +1829619,Lauren Faber +1392192,Manor Chan Man-Na +1340677,John Lavelle +12499,Robert Walker +1650310,Anthony Montanino +1497227,Ana Alborg +76920,Vegar Hoel +589729,Martha Mattox +587905,Jade-Rose Parker +1651872,Konstantine Osipenkov +235380,Harold Conway +99809,Tom Shell +29979,Kathleen Key +1082437,Jhangir Badshah +1818386,Gene Loveland +989823,Muireann Bird +98806,Ángel Vargas +1835275,Kristina Randjelovic +132924,Anita Setright +74572,Jaishon Fisher +31463,David Garfield +1506493,Amy Lynn Stewart +13871,Lou Antonio +585721,Maurice Colbourne +109708,Bill Burr +174837,Yolanda Adams +1481488,Silvia Villegas +1193839,Lam Minh Thang +1039677,Katy Corlis +544024,Troels Linde Andersen +1484767,Assil Kandil +1327728,Indra Birowo +147984,Helen Carruthers +1668412,Cygalle Dias +1735573,Adrian Gonzalez +1138897,Radoslaw Kaim +1185476,Aoife Meagher +1471374,Ethyl May Halls +84699,Ross Kohn +1853150,Andres Lõo +1564774,John Estes +1851692,Stephanie La Phillip +133708,Ryuji Kita +31530,Gema Zamprogna +591302,Haruka Kuroda +146462,Campino +1412356,Roberto Sanchez +78679,Rosalia Porcaro +1177323,Inessa Frantowski +70274,Chet Atkins +1334050,Steve Della Casa +557822,Hal Blaine +1389035,Lia Marie Johnson +1324778,Elmer Brown +1848658,Mica Rocha +1089589,Andrew Biggs +9443,Helmut Bakaitis +146024,Greg Clarkson +1630995,Sherekia Barton +1075507,Hadas Yaron +62412,Barry Wong +1503297,Daniel Oliver +545310,Tammy Taylor +1447035,Richard Cerqueira +1390551,Logan Rogan +1376844,Christian Mazucchini +40621,Kristine DeBell +1430584,Franz Aigner +1806596,Hannah Gottesman +115981,Ricky Garcia +1444639,Karsten Kramer +1391765,Ryan Ward +123540,Brad McMurray +39496,Julien Rivière +101816,Olivia Villanti +68903,Hwang Jung-min +1695649,Whitney Rice +1611153,Omar Adilov +41985,Tamara Toumanova +37989,Marie Déa +1646376,Djibril Gueye +1379377,Summer Jike +1229041,Jeanne Watts +1050847,Debra K. Beatty +1172814,Lucky Johnson +1114054,John Di Domenico +1240550,Marc Abaya +1089596,Chatchai Doroman +96301,Coulter Irwin +1603926,Shaarbek Kobaganov +1269345,Arnaldo Dell'Acqua +1715613,József Gyabronka +1049358,Aleksandar Stojković +934256,Alex Klaasen +1491370,Analu Tavares +1415835,Roger Narayan +1870846,Aleksandr Evdakov +929202,Bill Gunn +1654737,Cristian Lazar +63204,John Patrick Jordan +1888491,Nicole Vosahlo +1295180,Francisca Castillo +1207033,Theo Polites +1798341,Alley Ninestein +1627035,Wild Beasts +1545412,George Caldwell +1156404,Greta Stanton +101541,Jesse Hartman +1049938,Adriene Mishler +3786,Giorgia Moll +1117771,Antoine Balabane +38909,Laurens Straub +149539,Jennifer Hetrick +1428662,Marie Laurin +1366033,Zdenek Bezusek +1480221,Jerry Lee Tucker +1467999,Jessi Mechler +81149,Paul Mooney +91522,Kenan Raven +1796765,Gaizka Ardanaz +556458,Ion Besoiu +1473118,Madonna Sebastian +1501799,Massimo Popolizio +1427484,Darren Summersby +1189478,Nathalie Buscombe +1578104,Natasa Hanusová +1041474,Kenta Hamano +229023,Richard Wiley +51105,Laurent Claret +35736,Karan Johar +1078914,Bulut Aras +1074907,Mateus Solano +37444,Gabrielle Dorziat +180940,Billy Khoury +237629,Sarath Babu +1396064,Óscar Álvarez +223017,Juro Kara +1158762,Ted Pluviose +967071,Beth Bailey +554183,Tam Sin-Hung +1443861,Nicholas Asbury +1270302,Mette Møller +163959,Eric Martin Brown +35591,Yves Brainville +1311107,Lightning +1181214,Belén Chavanne +1278494,Nicola Sloane +1672067,Carly Otte +1175584,Agnieszka Wosinska +1579259,Adrija Cepaite-Palsauskiene +1169115,Sam Daly +1350652,Jazmin Caratini +1632886,Erin Elizabeth Reed +1651935,Jimena Solano +18420,Andreas Kunze +117737,Frank Watkins +1293646,Jeanette Du Bois +1863897,Flávio Vaz +143128,Eduardo Fernandes +1888077,Massimo Corvo +1161618,Harry Cleven +1724704,Gabriele Pauli +1132586,Júlio Braga +200237,Jessica St. Clair +1322604,Caitlin Nicol-Thomas +1621705,Li Jingjing +1870824,Soso Jachvliani +65007,Vanessa Paradis +1059892,Bailey Maughan +1612617,Josée Laviolette +72129,Jennifer Lawrence +56449,Jerome Ehlers +1480660,Brian Billings +18947,Katharina M. Schubert +126297,Mickey Hart +232006,Nat Wolff +570708,Hae-in Kim +1206159,Jean Wechsler +1559779,Zhiwen Xiao +1673241,Don Ian +202946,Ellen Woglom +100850,Kim Terry +1797408,Tim Gebbels +1228336,Justin Kelly +1354500,Perri Hanson +1593039,Trevor Dawkins +44845,Elizabeth Ashley +1611777,Isaac Santiago +1783353,Phelix Ivanov +99182,Jennifer Baxter +1438311,Haley Powell +1116442,John Morris +11213,Pam Ferris +1579268,Aurelija Prashuntaite +1827454,Nelson Concianza +44980,Antonio Cantafora +107909,Roland Hedlund +980177,Tomasz Schuchardt +85035,Bipasha Basu +1289272,Larissa Vereza +1263761,G. Voujaklia +55620,Jacques Hilling +67737,Tuva Novotny +122676,Ann Hagemann +96526,Björn Karlsson +1142145,Yûho Yamashita +1537081,Marta Dabrowska +129080,Eugenia Costantini +563086,Hausman Hugues +1319569,Wendel Calvert +46129,Sossen Krohg +104195,Bailey Chase +132217,Jake Andolina +1033183,Virginia Hammond +1385142,Gilles Rocca +1056209,Afrooza Langoo +1522641,Chris Garrido +164860,Debbie Wong +207551,Catherine Byrne +1636737,Gaia Scodellaro +1377614,Taylor Weaver +1497671,Tabitha Thompson +1495852,Jasmine Adele +219486,Cindy Robinson +1100364,Robert Hofmann +1491368,Fernando Fulco +96434,Elena Kondulaynen +1637173,Vladimir Komarov +1797952,Ayten Koçak +1440057,Allison Paige +35882,Riton Liebman +206777,Andy Fischer-Price +144930,Shin-Ichi Kawahara +147634,Peter Benedict +1157593,Rahayu Saraswati +62535,Christian Hecq +932329,Don Packard +1248648,Peter R. de Vries +1104136,Jason Ralph +937388,Eric Williams III +1024948,Alexey Vorobyov +1551425,Pierre Champagne +1434231,Manuel Burque +107434,John Slater +552008,Norikazu Takeda +67278,Małgorzata Foremniak +33471,Fosco Giachetti +580594,Frédérique Ruchaud +1440177,Donnell Turner +175690,Jimmy Akingbola +1888488,Kayla Rybicka +1183022,Mitsuyo Ishigaki +110197,Mahima Chaudhry +1537477,Jimmy Hager +1061040,Maite Lanata +107223,Leonard Mann +1138527,Adam Kamień +114286,Pierre Oudrey +90041,Con Schell +1459336,Nanna Øland Fabricius +129111,Corinna Agustoni +586742,Michel Jourdan +104092,Carolin Ohrner +996700,Dax Flame +1024165,Winsor McCay +1041197,Pablo Krögh +125405,Zita Perczel +1088717,Bruno Dietrich +1796389,Lukas Penar +139454,Vera Brezhneva +202297,Griffith Davies +148843,Lawrence Gray +1253993,Imma Piro +143564,Bill Brandon +1519556,Alon Williams +100787,Patrick Barr +928933,Mauro Conte +1241568,Tsuyoshi Domoto +1625139,Jean Van Herzeele +1215471,Elizabeth Vargas +150306,Toshiyuki Hosokawa +1089482,Markus Haase +1647427,Charleigh Bailey +1599175,Patrick O'Connor +1293268,Yumi Wong +236057,Boramy Tioulong +1476033,Paul Moniz de Sa +27788,Kumiko Asou +932736,Eyal Sivan +1394312,Sami Nasser +1163659,Jérémy Davis +1212467,Natalia Cigliuti +928924,Juan Kreisler +573773,Laurence R. Harvey +118626,Miss Ming +1468343,Jonathan Gordon +554502,Yuka Ônishi +207218,Rachel Hamilton +557447,Cyndi Williams +141038,Samantha Hahn +1107178,Caroline White +1818586,Chelsea Kaur Gill +1334335,Mike Molenda +577649,Gardar Thor Cortes +87431,Tiffany Dupont +74922,Jean-François Wolff +110058,Eri Fukatsu +1502861,Lydia Hannibal +1064129,Sanam Shetty +182680,Michael McCafferty +1230655,DuShon Monique Brown +1695064,Lucia Geddes +1019911,Nino Korda +1861427,Dimitris Sacorafos +1650132,Rick Anglada +1898509,Marie Simonet +72481,Tommi Eronen +72852,Peter Harting +71403,Rob Riggle +50234,Donna Mills +31164,Adewale Akinnuoye-Agbaje +232008,Asa Akira +204686,Daniel Samonas +1222023,Fidelis Morgan +134219,Corrado Guzzanti +103843,Paul Kelleher +1300371,Linda Nigmatullina +1642750,Louisa Nehar +1315168,Trixie Smith +1112942,Charlotte Merriam +1673990,Wataru Akashi +579439,Sylvia Sorrente +84464,Julia Benson +1378193,Iliya Khtamtsov +1203008,Leonard Tarver +1250237,Gladys Gale +559502,Clemira Aguayo +1771580,Willie Tyrone Ferguson +1682509,Bryan Adrian +1625714,Michael Tierno +1700947,Michael Hough +1277196,Cathy Adamek +584096,Robert Kya-Hill +1567898,Justine van Ruskenveld +1087171,Na Wei +1738909,Bernadette McKenna +99596,Bob Burns +1139872,Sharad Kelkar +568657,Sofia Boutella +1680886,Sam Adler +1458873,Renaud Marx +98832,Earl McDaniels +1142780,Subaru Kimura +1009740,Pitbull +1568353,Meredith May +1743575,Annarie Boor +106495,Michel Mongeau +96410,Keith Moon +115289,Stephen Crane +1384987,Henny Valjus +1242017,Takuma Suzuki +1636776,Bruce Reizen +1269277,Marnie Lapuz +59096,Luke Brandon Field +113782,Gregory Paul Smith +1661772,Helene Wilson +86874,Valeriy Barinov +1229159,Mitt Romney +80649,Tyler Brooke +71890,Coley Canpany +44461,Sebastian Bezzel +16376,Larry David +1125205,Alfio Caltabiano +1042684,Lydia Hull +1834642,Bonny +1300672,Joel Bosqued +1153065,Marjolaine Lemieux +465273,Jagapati Babu +9340,Lana Wachowski +228348,Anita Mey +1089494,Nadine Salomon +1034302,Henriette Richter-Röhl +1344593,Champel +1374641,Caryl Lincoln +1602373,Harry Anthony Shelley +215662,Chiara Mastalli +1647148,Suzanne Krarna +1684389,Sorel Carradine +1249820,Romi Dames +1089000,Louie Bonnano +1156402,Elisheva Susz +1032584,Mahavir Shah +1851866,Cullen Ries +942283,Elizabeth Schofield +24544,Sacha Briquet +42074,Lajos Kovács +1226695,Phillip Edward Van Lear +102119,Dino Conti +1764691,Eugene Kline +156920,Ken Ward +105499,Danny Blanco Hall +1026048,Luigi Birri +103240,Jon Whiteley +946156,Phyllis McGuire +1200827,Ken Eaton +1420366,Jérémie Covillault +1490056,Alfredo Hernandez +1014980,Darya Charusha +1566007,Olivia Viikant +1817100,Kim Girschner +1117081,Yûko Sugihara +77093,Brian Hutchison +584597,Tommy Citera +1821545,Sundown Spencer +70746,Ed Flanders +1650157,Sophia Muller +565404,Nicola Morelli +223048,Olivia Presley +1024890,Akina Minami +1623854,Nikolai Sokolov +100295,Bruce Kimball +1112309,Егор Пазенко +1438278,Jerod Haynes +1088193,Adnen Helali +1795342,Diana Levitt +933019,Brendan Guerin +1196959,Rosie Day +1367883,Claire Franconnay +235999,Anna Semenovich +76239,Garette Ratliff Henson +134848,Alan O'Silva +1839571,Tapio Kasanen +1890103,Fedor Chebanenko +1134507,Wang Kuang-Yu +1902243,Mattia Rovatti +1294070,Lauren Nash +46465,Kees Hulst +543790,Victoria Jeffries +150801,Michael Baral +1301102,The Wilde Twins +1290997,Kansas Moehring +209871,Jane Harber +98497,Barry Bernard +154890,Jim Abele +1356923,Albert Prisco +426216,Josh Segarra +91286,B.J. Bales +94798,Lincoln Lewis +37387,Peter Gavajda +1179878,Baltazar Rizzo +54275,Claire Johnston +99145,Kurly Tlapoyawa +1433913,David Boykin +1074740,Jaime Olías +85683,Mohnish Behl +144213,Lucas Ferraro +1398485,Samy Szlingerbaum +1333949,Yoshio Iizuka +71518,Richie Chance +1092519,Kikue Môri +1782966,Helen Kelly +90458,Mustafa Abdelkarim +1062012,Maria Molins +1265674,Eric Pollins +1537738,John Cronogue +1625033,Maureen Wagner +71538,Dave Filoni +128227,Giorgio Colangeli +230083,Pourya Mahyari +1102262,Alan Martinez +1182659,Justin Callan +44582,Julie Williams +94884,Jean Pierre Bergeron +114257,Elissavet Konstantinidou +1411625,Terence Rosemore +1657802,Justin John +238100,Alex Van Bibber +1179424,Nick Gillie +21305,Lloyd Bacon +64374,Josiah D. Lee +92489,Darryl Chan +52603,Alfonso Freeman +47017,John Salew +1274084,Shizuo Chûjô +16604,Sasson Gabai +1615098,Duane Evans Jr. +1889863,Kanhaiyalal Chaturvedi +382758,Ezio Sancrotti +1034805,Yossi Graber +71815,Emily Meade +78297,Phil Vischer +1170357,John Hyams +106087,Antonio R. Frausto +86283,Kashmira Shah +1218279,David Simon +1053813,Atte Blom +231531,Pamela Guest +1023341,Mike Posner +143737,Dmitriy Kubasov +1780265,Aaron Jackson +1525608,Curt Bortel +1556940,Goo Seung-hyun +116277,Nathalie Kelley +1186438,Richard van Weyden +1386305,Holly Jee +1223707,Davis Cleveland +1898626,Milo Coretti +560229,Morgan Marinne +1393183,A.J. Tecce +79828,Valdimar Örn Flygenring +1486677,Master Bharath +1796418,Mary-Piper Gaudet +196511,Betsy Slade +149402,Jenna Gering +71895,David Rhodes +208099,Kunal Nayyar +1734253,Jen Halbert +1783268,Christian Adam +551799,Sophie Niedergang +1171323,Vijayalakshmi Agathiyan +1400987,Haris Fragoulis +1074125,Peyton Kennedy +1364782,Alma Pöysti +227430,Jin Se-yeon +51879,Kenneth Griffith +1182599,Shanaya Rafaat +1080147,Assun Planas +1878197,Irina Medvedeva +1523034,Simon Van Lammeren +1516760,Julie Schmid +1863912,André Pires Martins +1841533,Rose Holcomb +1707878,Lauren Grimson +1275860,Manoushka Zeegelaar-Breeveld +1527316,Juan Orraca +545328,Tim Doiron +129565,Dragoș Bucur +87411,Iulian Makarov +1128397,Danny Jacobs +1423086,Álvaro Tortosa +200658,Goldy Notay +1567165,Andrea Pineda +1714162,Deonna Young +126721,Curtis Morgan +1413795,Glenn McCuen +124754,Michele Riondino +1842173,Cristoffer Carter +1227922,Edgar Allan Poe IV +10018,Jack Hawkins +1393533,Romyen Tangsubutra +1068912,Kenichi Kawasaki +1114538,Jóhann Már Jóhannsson +203086,Amir Talai +139135,Lena Dunham +1479337,Sunniva Hamnes Johansen +58517,Bonnie Morgan +1735577,Amy Sutherland +1102161,Yukichi Iwata +1203506,Emy Salvator +129803,Michelle Willingham +1399675,Francis Mortimer +1082610,Vasiliy Livanov +1804260,Gemma Lozano +117659,Maxim Knight +1330187,Alioune Ndiaye +77324,Kal Weber +1818098,Maureen Rooney +1119397,Gladys Egan +1646373,Mariétou Touré +1658600,Kochouseph Chittilappilly +124761,Francesco Brandi +1348605,Amanda Jelks +228150,Roberto Ceccacci +125130,Michael Teh +19854,José Mota +118463,Peter DeLuise +1724810,Dwayne Wiley +1106999,William Desmond +238116,Nikolai Dobrynin +42223,Daniel Anderson +114356,Laurie Maher +1391533,Christine Hung +1732071,Jacob Kasch +69180,Morten Grunwald +76334,Elisabeth Lahr +47072,Liv Mjönes +30779,Dorothy Gish +1353695,Dong Zijian +120918,Mitsuru Fukikoshi +1167280,Krystal Tini +37520,Marta Fernández Muro +228458,Christopher Karl Johnson +1336096,Valy Arnheim +1677215,Rafael Pulgar +1053170,Katie Chang +1129849,Kensuke Ohwada +1848599,Simone Nepote André +115610,Tien Niu +207818,Patrick Kerton +167582,Lynda Gravatt +1820444,Andrea Ciacci +1250945,Özcan Deniz +118633,Dave O'Brien +1527960,David Manzanares +1028318,Samuel Ramey +79903,Jacob Pearce Guzman +1039181,Chad Anthony Miller +50374,Daniela Hoffmann +1467963,Martel Summers +1057154,Björn Ingi Hilmarsson +170680,Peter Van Norden +1668234,Soussan Farrokhnia +1452674,Bruce McGregor +1624630,Tim Arango +1122461,Michael Villar +1215836,Kyle Bornheimer +23987,Jouji Nakata +99311,Vyacheslav Tikhonov +106784,Ozan Guven +1639803,Michelle Benet +1151791,Elena Ivanca +1862817,Livia Ermolli +88438,Sagarika Ghatge +1064157,Erica Frene +233183,Carla Del Poggio +1144430,Marie-Josee Bastien +589090,Arthur Storch +1567842,Johnny Tall +63220,Kerri Kenney-Silver +1240153,Malin Persson +1418497,Lisa Charlotte Friederich +1181326,Hannah Simone +1470474,Krista Marie Yu +1539940,Ebby Weyime +1122373,Marion Barry Jr. +544552,Dante Maggio +26498,Ernst Jacobi +1161723,Marie-Anne Fliegel +55654,Janet Ågren +1222716,Derek Mio +36561,Svenja Steinfelder +1165384,Gaia Weiss +1902459,Antônio Casé +1397417,Márcia de Oliveira +1021741,Kenshleg Alen Khan +138842,Miroslav Homola +1342844,Woo Gin-Keung +1854446,Andrea Midena +1841505,Roxanne Stutzman +1379268,Nigel Genis +130504,Wu Wai Chung +86048,Buffy Davis +1630987,Gareth Randall +1793185,Erin Emanii +1213640,Stephen Stanton +1129635,Labros Konstadaras +1044744,Yvetta Blanarovičová +34627,Nadia Farès +107889,Anna Majcher +559137,Mathilde Høgh Kølben +1367032,Emile Baujard +227084,Garik Kharlamov +237352,Mario Pardo +1024957,Alice Lyon +162096,Julie McCullough +172776,Russell Roberts +559566,پیمان معادی +132891,Alicia Devine +26163,Jean-Marc Bory +1585213,Molly Gardner +558556,brian akins +1662625,William Grimes +54024,Nikolai Kinski +1728949,Jehad Abu Assal +1119494,Julienne Mathieu +1428152,Henry Yuk +1599255,Gido Schimanski +227395,Ana Belén +8719,Ryszard Kotys +239335,Gérard Loussine +1241324,Bobby Tisdale +1531582,Anya Engel-Adams +576467,Frej Lindqvist +69497,Hanna Verboom +1177579,Vanessa Vaughan +54943,Dale Edmonds +134511,Liv Boughn +1859511,Laeticia Hallyday +108253,Katie Lowes +84294,Andy Zaltzman +1760866,Harriet Manamela +1351970,Hilbert Dijkstra +1264817,Max Rudd +33510,Antonio Wannek +1517366,Aku Korhonen +42747,Misha Collins +1127391,Carla Onofrio +1551044,Rahel Romahn +54944,Roberto Van Loel +1592949,Victoire Du Bois +1436276,Guoqiang Wu +583284,Aleksey Rozin +1754590,Seth Almberg +51128,Albert Rueprecht +1651871,Caolan Byrne +121018,Eddie Cantor +231048,Szabó Győző +88269,Adam Seybold +29268,George Bunny +1300855,Katy Yoder +1623514,Jakub Kropáček +88386,Frank Magree +63280,Ethan Cohn +1114547,Ásta Hjálmtýsdóttir +1261545,Sahar Ghoreishi +1093686,Fabiana Gatto +35046,Guy Tréjan +1043267,Branka Pujić +1439656,Yousef Sundoo +4259,Kim Young-min +164396,Beth Dixon +33322,Melody Anderson +980378,Lincoln Tate +6815,Sonia Sorel +1304682,Joshua Rutter +440943,Raza Jaffrey +1205924,Robert Trow +97940,Lynn Eastman-Rossi +1118063,Lola Pagnani +99294,Yuri Katin-Yartsev +1076806,Friedhelm Gartner +1233105,Jane Brennan +1173615,Charito Leonís +1772545,Javier Caramiñana +147271,Yuri Klepikov +1072158,John Hunsaker +80595,Rob Huebel +25009,Raul Inglis +1387383,Sophie Perry +87928,Adam Kantor +1467026,Tyson Sullivan +1321909,Avi Shnaidman +79033,Jérémie Elkaïm +24752,Gabriel Cattand +46922,Jeffrey Johnson +78032,Noel Areizaga +575460,Ayşe Tunaboylu +111537,Bjarte Hjelmeland +13307,Margaret Avery +1457261,George Quinones +1424211,Emilie Cardinaux +1256118,Bebe Wood +1451393,Bruce Buffer +1754456,Rebecca Gamble +1584777,Kate Liquorish +1652407,Gary Pezzullo +1650303,Peggy Schott +97369,Aleksandr Robak +76099,David Gore +1069238,Betty Brewer +88341,Paul Kalkbrenner +544481,Ladislav Trojan +1418852,Jürgen Zwingel +1405969,Lauren Molina +129292,Katie Hanley +1544339,Sari Sanchez +44586,Arlyn Solomon +1208495,Akis Gourzoulidis +1446120,Elias Bouamrane +967692,Reid Ewing +1338512,Tiger Shroff +1568233,Tomi Alatalo +1114607,Mathias Melloul +1097169,Daniel Schweiger +1389339,Blake Cooper +133086,Peter Damon +203207,David Goldman +1157071,Gustavo Serena +545346,Silvia Navarro +1546534,Nigar Gulahmadova +1667888,Caitlin Berestford-Ord +1545055,Yosuke Irie +29945,Monika Hilmerová +1691380,Mark Vincent +1542942,Joe Berryman +965205,Tate Ellington +18938,Anna Böger +1003082,Briga Heelan +1898254,Rudolf Bebek +1155111,Marina Kalogirou +1199625,Trifon Dzhonev +1216703,Parker Goris +224286,Dolya Gavanski +1376936,Anindita Nayar +6143,Regitze Estrup +28731,André Hazes jr. +1023139,Adam Driver +1204329,Sarah Fischer +1041617,Julya Men +1692501,Hugh Halliday +85406,Rodney Scott +216986,Luke Hemsworth +27119,Bernard Cuffling +112959,Bob Bancroft +81924,Greg Ellery +1450392,David Castaneda +1128158,Steve Tandy +930058,Susan Boyle +47265,Lotte Rausch +98308,Johnny Sneed +1462922,Arthur E. Owen +1807475,Nancy Akoth +40103,Joshua Elrod +1796453,Toby Irvine +23673,Martine Sarcey +1475022,Ng Ho +1058,Bob Gale +111002,Brady Coleman +1041249,Marie Jung +989219,Parisa Fakhri +205184,Wandile Molebatsi +1147918,Pamela Betsy Cooper +1012919,Pablo Cerda +234655,Ángel Ter +95395,Juan Lopez +121578,Peter Blankenstein +121865,Leela Chitnis +1653237,Mathias Sandor +1396860,Andrea Russett +81378,Salli Saffioti +1344342,Dickie Gravois +1163376,Shut Chung-Tin +1197855,Raoul De Leon +1650208,Jennifer Joyner +1385057,Heather Sossaman +43791,Danny Green +148512,Irene Purcell +1036284,Mirta Busnelli +1131833,Erbulat Toguzakov +1694297,Johannes Frolich +5234,Claude-Oliver Rudolph +967044,Mike Landry +559658,Barry Yourgrau +1161649,Moira Miller +1898252,Novka Miletić +156185,Robert Silver +1328311,Arvi Tuomi +41508,Jason Stuart +142896,Mr. Clark +1099824,Brad Ashby +168269,David Gautreaux +584043,Donatas Grudovich +1584347,Martin Sensmeier +1119900,Anna Matzourani +73650,Pascal Cervo +1220564,Curtis Stigers +928338,Sergey Brin +94002,Jason Manford +945665,Max Cavallari +1564290,Maciej Lubienski +243399,Hugh Pollard +43426,Robin Dunne +943480,Gabriela Roel +101054,Willow Hale +106246,Carol Wayne +258213,Gaston Rey +1651996,Al-Nisa Petty +95380,Chance Morgan +558207,Tintin Anderzon +233493,Fernando Arrabal +69500,Lou Adler +1544395,Mark Fichera +1193376,Bill Crago +1531584,Ebony Joy +107995,Hakan Bulut +87443,Lynch R. Travis +1160314,Mahmood Shalabi +126783,Masato Kato +1507454,Brooke Frost +50557,Cornelio Wall +199883,Edina Ronay +126829,Saginaw Grant +108852,Hannu Kivioja +235852,June Saunders +77344,John Hodgman +1440942,Lars Kjelgaard +1356538,Luc Roderique +30807,Rudy Behlmer +118377,Cassidy Hinkle +1235729,Fernando Colunga +1557949,G. Michelle Robinson +1898299,Daniele Locci +1184329,Cloudia Swann +88271,Tomasz Zaród +527095,Evren Duyal +235851,Leslie Shea +86951,Kirill Pirogov +68181,Coen van Vrijberghe de Coningh +91029,Cass Morgan +110799,Rino Romano +1088220,Ingrid Wallin +36391,Ina Duscha +963818,Troy Baker +1398141,Julie Dombrowski +1438890,Talei Howell-Price +1676666,Héctor Aníbal +931323,Compañía Antonio Gades +76544,Chris Ashworth +101014,Beatrice Rosen +587115,Riann Steele +1776757,Siow Phing Tan +115348,Jeff Goodby +981192,Mirta Wons +931239,Jack Standing +136930,Chris Cox +1091599,Lallo Circosta +1208798,Scarlett Jaimes +193040,Dan Duran +247889,Bruno Punzalan +120020,Giovanni Storti +1150494,Shirley Palmer +148036,Paddy McGuire +1042768,José María Rubio +1156878,Clément Roussier +1510502,Derek Herd +1695650,Tay Zonday +1662455,Kiely Renaud +1117982,Vasil Kakhniashvili +65512,Kotoe Hatsui +80535,Robbie Williams +1013256,Gianrico Tondinelli +1344379,Wong Wa +1674426,J. Jewels +24562,Patrick Fierry +1088078,Ewing Miles Brown +4924,Martin Semmelrogge +81281,Keizo Kanie +1413771,Craig McArdle +1270744,Clenard Childress Jr. +125753,Béla Barsi +1869479,Julia Gorin +120975,Jill Bennett +1753486,Harry Crouch +161315,Davey Davison +1044418,Muriel Hogue +543863,Anatoli Adoskin +1033126,Lauren Bond +145398,Bülent Yarar +1581031,Phetmongkol Chantawong +100409,Eduardo Fajardo +74638,Karen Moncrieff +45407,Mark Duplass +550105,Antonio Villaraigosa +1393312,Tiffany Jeneen +1810153,Alexander Da Mota +104300,Rosamund John +236048,Rosie Huntington-Whiteley +120888,Victoria Broom +179495,Lorne Cardinal +148120,Tiffany +1465525,Tom Graziani +1878824,Filippo Delaunay +1287220,Tamas Menyhart +88709,Shawn Carter +1583307,Natasha Liu Bordizzo +1459358,Kelly Lambe +1115148,Paula Ian +584542,Julia Sarah Stone +1043262,Irfan Mensur +1359956,Michael Adams +71156,Flemming Enevold +27895,Chantal Bronner +1547826,Jeanette Maus +1072008,Kaiti Ibrohori +1316667,Andrew James Jones +1529495,Eva-Marie Becker +164103,Conan McCarty +587518,Gleb Podgorodinsky +1168908,Anthony Gioe +560159,John Boylan +80692,Gérard Herter +1363583,Alice Sanders +1837295,Joseph Yakob +11485,Gina Mastrogiacomo +1194929,Youlika Skafida +1041317,Angela Judy +1418226,Katherine Prentice +128200,Larry Semon +1786960,Danusia Samal +64441,Jim Chim +1004915,Tiffany J. Curtis +30721,Madeleine Robinson +5214,Ludwig Blochberger +1635844,Katia Bokor +45388,Cal Bartlett +112476,Dylan Minnette +110198,Tara Sharma +231489,Sasha Rucavina +930616,Semra Kaplanoglu +1351014,Ida Husøy +1363833,Harriet Hagman +1675346,Matt Cooke +1754445,Betsy Borrego +1719071,Torry Martin +566295,Salvador Allende +123539,Caroline Marohasy +584333,Laurène Doval +1275022,Jamie Lyle +1425961,Jean-Marie Fonbonne +1670425,Jayda Fink +1086358,Esteban Bigliardi +1195196,Buddy Stein +1589285,Guido De Craene +1335207,Shane Brady +71360,Soledad Alfaro +1631995,Choi Yoo-hwa +1511634,Phil Grieve +148045,Margie Reiger +110711,Ghanshyam Garg +39849,Werner Daehn +1138923,Lionel Bourguet +1006403,Kaviyoor Ponnamma +130597,Dennis To Yue-Hong +1308810,Allegra Swift +117034,Rosina Galli +987986,Nino Casale +71566,Richard Jones +1227276,Jan Burrell +585086,Livingston +1772544,Santiago Alverú +585783,Harry Burkey +567586,Ruth Barrie +1672078,Sebastian Dean +1364479,Selma Miettinen +933441,Willette Thompson +1697808,Angie Yu +1300745,Thai-Hoa Le +1559621,Jack S. Daniels +1738932,Heather Black +74409,Eric Winter +8185,Emily Ann Lloyd +137705,Rain Simmul +1088034,Tom Holloway +1029801,Rin Takanashi +1112467,Masuo Inoue +1286526,KristiLynn Grace +152566,Dean O'Gorman +160524,Susan Howard +131955,Lau Kar-Wing +1274943,Oliver Mott +165377,Charlene Dallas +1369205,Jason Martorino +1589609,Alycia Kunkle +582328,Pieak Poster +935884,Rusty Kelley +1186482,Becky Wu +85765,Bruce Carlisle +1169660,Enzo Maggio +85715,Tanushree Dutta +219763,Charlotte Spencer +1338704,Caitlin Duff +98552,Tom Russell +1050079,Dragan Marinković +56676,Michael Welch +22925,Rolf Ripperger +1137469,Isa Crescenzi +1522919,Leore Hayon +1318684,Angelina Altishin +99687,Zhang Hanyu +47833,Daniela Kolářová +87438,Seth Grossman +1157258,Vicki Glover +1071124,Aimee Kelly +1438824,Nani Jiménez +172833,Michael Karl Richards +1094176,Gabriel Rojas +146831,Diahnna Nicole Baxter +1333665,Elvis Nolasco +6141,Lone Lindorff +1095801,Preben Mahrt +1331803,Maximiliano Trento +1305990,Maryana Spivak +1089690,Krista Ayne +1088657,Koji Sahara +954005,Neva Peoples +1444881,Lory Tatoulian +1636800,Allen Roth +1382181,Dianna La Grassa +1572351,Kim Dae-ryung +1169118,Ratan Singh +1517847,Ian Gregg +87148,Keanu Pires +88044,Marisa Van Eyle +1353812,Earl Schenck +66497,Darby Stanchfield +1602210,Eoin O'Brien +1178213,Alessandra Bellini +1310223,Chief Caupolican +1470127,Kentaro Sakaguchi +1241085,Swapnil Joshi +1065014,Ian Clark +74131,Anessa Ramsey +1278190,Yuka Hoshino +1886315,Matt Adcock +550018,Gaëlle Bona +1312204,Karidja Touré +928307,Ashley LeConte Campbell +1558444,Lazaro Solares +991930,Pamelyn Chee +1868697,Paul Schnabel +1587576,James Dryden +1471367,Psyche Neibert +228327,Loek Peters +1108893,Corey Charron +1754444,Lukas Bennett +1293174,Ben Woolf +59313,Erin Karpluk +1217468,Ava Lazar +1897704,James Canino +38710,Connie Young +1451779,Fusako Itoh +36463,Arndt Schwering-Sohnrey +1699951,Paride Mensa +1156305,Arnas Fedaravicius +1755071,Scott Gulino +589458,Carlo Bagno +120138,Francesca Chillemi +1140991,Sek Gong +225973,Dorothy Dwan +1670752,Aurora Antonio +1753499,Jess Kay +553705,Song Ok-Suk +1772601,Kendra Carelli +1086309,Kim Sun-Kyung +1557710,Nathaniel Gordon +240174,Johnny Wang Lung-Wei +1071132,Marc Sutcliffe +1335466,Constanze Becker +173269,Dimitri Diatchenko +1745108,Tom Anfinsen +992989,Juan Carlos Galván +84357,Reg Varney +161956,Robert Dowdell +1271035,Alfred P. James +1181558,Seth Meriwether +571735,Jarrod Cooke +1717004,Shôjirô Ogasawara +115347,Cliff Freeman +10952,Lorenzo di Bonaventura +1331920,Antonia von Romatowski +52622,John F. Goff +1281250,Rob Morgan +1051827,Kathleen Bagby +29718,Mike Connors +1636675,Tomasz Oświeciński +1463027,Anna Rothlin +28596,Heinz Strunk +83853,Arne MacPherson +81978,Ken Shamrock +1070129,María Montaño +1695987,John Lepard +1366490,Arthur Denton +277657,Natalya Gvozdikova +150543,Thomas Byrne +58259,Rainier Meissner +117848,Etty Weah +931322,Elvira Andrés +1567663,Luke Grakal +2742,Karl Scheydt +560118,Dana DeVestern +1581225,Toni Šestan +1486373,Bente Fokkens +545090,Atila Pesiani +14898,John Phillips +130085,Peter Straub +1215284,Andrew McIlroy +1540131,Duncan Joiner +121004,Sheila Sim +1187200,Alex Skarbek +79577,Kim Byung-Chul +220407,Sarah Adams +78240,Roland Düringer +1266059,Michael Karm +40942,Barbara Windsor +1619188,Hisanobu Ichikawa +1523689,Anatoli Nikolov Netchev +106046,Mikhail Trukhin +1848671,Sergio Mattos +601048,Cecilia Loftus +1059241,Yue Hoi +1125098,Shiv Pandit +558343,Tom Stevens +1156046,Hayley Lovitt +1259874,Yon Tumarkin +1362308,Azdine Keloua +154564,Tom Simmons +103528,Carmen Sevilla +34263,Serge Gainsbourg +156889,Paul Vincent O'Connor +101415,Daniel C. Dennett +1177624,Madeleine Bisson +60150,Waddy Wachtel +95280,Bonnie Soper +934796,Luke Tyler +1693,Ryohei Suzuki +1078906,Terry Finn +1186024,Dana Bunch +82703,Barrie Dunn +80611,Cassi Davis +144990,Fernand Sardou +1025545,Benjamin Boe Rasmussen +86242,Gautam Rode +1588362,Vincent Hogarth +1312170,David Barnaby +109598,Šarūnas Bartas +95028,Anthony Holles +545398,Kelly Pendygraft +42643,Patrick Field +1588819,Anupras Jucius +1706108,Danny Guzman +1732068,Kyle Love +101016,Osric Chau +1137651,Sana +125695,Eros Galbiati +1560336,Tony Beard +1775990,Lydia Blanco Garza +108865,Martti Palo +118752,Natalie Morales +50300,John Farrow +1718144,Errol McDowell +129980,Marco Manchisi +1448173,Jorge-Luis Pallo +1635876,Eric Colmar +931366,George Pistereanu +244430,Alexander Fu Sheng +7822,Edgar Selge +6938,Randy Brooks +940327,Jane Farrar +1150482,Neil Neely +1067188,Elena Lyadova +117740,Dante V. Morel +103977,Guillermo Murray +1169980,Leo D. Wheeler +27394,Anita Zagaria +1147017,Edwin Pamanian +1849112,Olya Mareva +1572628,Aliénor Poisson +1066204,Marshal Hilton +83461,Daniela Rocca +1385295,Karl-Heinz Merz +27666,Mohamed Bastaoui +1203600,Akari Endo +1096930,Samantha Logan +229686,Kyle Morris +1753724,Michel Valliéres +111064,Radmila Živković +16591,Stewart Arnott +582184,Sithara +933016,Chris Wood +9721,Junichi Suwabe +563111,Robert Gatrell +984724,Aiden Lovekamp +994432,Boris Ludmer +1653905,Mayumi Yoshida +5445,Zinedine Soualem +27421,Ian Duncan +81774,Valerie Taylor +1506487,Elisabeth Henry-Macari +91716,Sven de Ridder +1077359,Tawm Ellis +1108314,Countessa Veronica +1677387,Diego Gamaliel +1259987,Yasmin Ayun +1459357,Matthew Thompson +131591,Jorge Bosch +156191,Frank Farmer +1248383,Benjamin Stockham +148590,Carlo Campanini +968429,Abbie Cobb +460636,Jessalyn Wanlim +234908,Yasmine Garbi +1521132,楊凱凱 +88470,Francesco Pannofino +1849125,Gwenaël Perrin +144834,Anatoli Ktorov +1350051,Rostislav Novák ml. +84218,Kiowa Gordon +924292,Rachel Loiselle +999820,Monica Clay +1604220,Franco Moraldi +128752,Vito +121868,Booboo Stewart +1718448,Matthew Sligh +145047,D. Kevin Epps +153185,Catherine Finn +150303,Junichiro Yamashita +1363049,Lasco Atkins +130849,Brian Weitz +1526639,Peter Stanford +1266804,Robin James +591427,De Ly Luu +1457281,Sheldon Frett +88905,Mario Alcalde +1536202,Ananias Dixon +131421,Mike Gassaway +1562959,Sergio Blanco +1758602,Kanitsorn Taraprasert +1589613,Brian Evans +1495073,Kurt Conroyd +1150434,Shirili Deshe +1196353,Fernando López +56652,Cyril Sjöström +1381498,Tom Lewis +1446021,Ashley Atwood +102396,Paul Andrich +545299,Ungsumalynn Sirapatsakmetha +120444,Ivo Henderson +1603506,James Hand +1424844,Bayu Oktara +85986,Anne-Marie Balin +129146,Jennifer Gillian +1255881,Choi Woo-shik +1122376,Rhia Hardman +1427454,Leanne Miller +25089,Tomer Sisley +1400327,Peter Hjorth +104678,Terri Conn +1396616,Amanda Edwards +995003,Elijah Nelson +856126,Pete Teo +1209782,Michelle Hu Ran +8394,Robert Grayson +142890,Dr. McIlroy +182085,Holly Weston +131662,Giuliano Ghiselli +1707947,Bobby Ruckus +1718164,Theresa Cook +1719829,Cho Sheng-Li +67213,Ian Puleston-Davies +1198742,Ori Hizkiah +154720,James Leo Ryan +1876155,Bill Barclay +6266,Steffen Groth +54075,Halina Buyno-Loza +115993,Tony Barr +1085090,J. Barney Sherry +92877,Catherine Kresge +1382835,Ken DeLozier +1135590,Patrizia Loreti +5938,Geraint Wyn Davies +1785912,Ulises Galeano +1409181,Takuro Nakayoshi +937724,José Ignacio Cabrujas +235695,Vladimir Turchinsky +1684010,Emmy Elliott +1484661,Edison Raigosa +1105502,Norm Erskine +108399,Brian Bowles +30114,Jane Randolph +1535051,Richard Mutschall +86897,Inna Makarova +1279279,Virginia Gardner +124423,Vladimir Yaglych +240211,William A. Lee +120392,John McKutcheon +1696392,Juan Ignacio Carrasco +182948,Byron Lawson +1605863,Rosario Serrano +1445943,Chloe Hurst +1511938,David De Beck +1378192,Lev Akselrod +1009961,Ella van Drumpt +1506921,Uriah Arnhem +1844349,Rose Giannone +1485332,Rachel G. Whittle +1171577,Debbie Bartelt +1183581,Evelyn Künneke +1821654,Mike Negreanu +16021,Barbara Bouchet +1668753,Aksel Thanke +81919,Philip Haldiman +1461038,Jon Bass +116271,Dom Magwili +85202,Jean Laplac +1891514,Carlos Martinez +1424327,Van Neistat +72609,Hisao Kurosawa +1627377,Kang Jia-Qi +167604,Nadia Dajani +1401968,Janek Sirrs +1907175,Francis Montary +1765915,Andy Taylor +935235,Marwan Kenzari +186396,Darrell D'Silva +27298,Horst Kube +1460274,Carles Lloret +1144345,Mumtaz Sorcar +32552,Adrian Hoven +1540241,Karen Belfo +79151,Dean Marshall +1608629,Preston Cook +1746961,Sli Lewis +142685,Primrata Dech-Udom +976270,Fermi Reixach +178954,Willy Kaufman +1443631,Itsuki Sagara +51037,Athena Karkanis +153548,Carolyn Stellar +928934,Sandra Toffolatti +24607,Selva Rasalingam +1000708,Amber Jaeger +1254725,Loretta Blake +1124419,Teresa Lynn +82421,Bruno Vanden Broecke +1567892,Joe McCoy +1905540,Chris Fry +17548,Fritzi Haberlandt +62503,Ioan Ionescu +1531023,Sally Cross +216126,Jimmy Dore +1446766,Bárbara Muñoz +136360,Shizuko Takizawa +213412,Britt Langlie +565421,Mark Henry +1510898,Misha Arobelidze +946673,Brian Jones +225411,Mark O'Brien +131106,Hidehiko Ishizuka +1349733,Austin Wilks +584195,Andrés Duprat +1512201,Victor Bond +1782591,Helen Yeotis +226575,Shaike Levi +3541,David Pittu +588765,Jan Schmid +1206937,Eero Melasniemi +26851,Heather Donahue +1083948,Dariusz Gnatowski +1195193,Ira Rogers +1238307,Nina Kulkarni +569320,Ragnar Arvedson +980203,Bertice Reading +1038524,Jeannie Berlin +1867071,Gulyam Aglayev +84973,Kim Ah-joong +1747723,Johnny Gee +208509,Louise Lewis +549057,Monica Neff +1574430,Gregory Waller +122166,Anant Nag +1171782,Jake White +1514130,Mac Pietowski +1291313,Chariklia Baxevanos +93138,Mats Bergman +1068162,Jo Ann Sayers +109870,Tom Woodruff Jr. +1088041,Kenneth Brown Jr. +78862,Anna Silk +33067,Walter Gronostay +148683,Amanda Ward +1088662,Feridun Koc +1207271,Hanniyah Muhammad +1494619,Alfredo Zammi +1147107,Angie Medrano +1758518,Eesh Kakkar +110554,Ray Landry +124961,Goran Navojec +132930,Claire Hemphill +1059362,Jess Evardone +1841496,Sadie Butler +1072160,Barbara Spencer +1050104,Amanda Alch +1420171,Ivo Avido +1142181,Jung Eun-chae +9457,Roy Jones Jr. +1656099,Marion Reymond +224369,Robert Follin +1807471,Dynah Bereket +1051298,María Ucedo +1190917,Zoe Levin +1357804,Kam Kong +1881559,Steve Strachan +1440428,Mimi Kok +1416549,Zinaida Naryshkina +142192,Ryan O'Nan +209764,Connor Stanhope +140902,Alec Nemser +1332498,Bill Champion +99915,Ron Atkins +1862152,Yarett Harper +1146050,Zayn Malik +50003,Turi Ferro +1207151,Heather Leigh +79904,Karen Heaven +1507602,Yusleidis Oquendo +212184,Joshua Rush +32360,Joe Montana +145871,Benjamin Biolay +1118249,Igor Bogodukh +1291692,Maisha Diatta +589188,Nils Jørgen Kaalstad +1414640,Manu Rishi Chadha +232926,Alena Šeredová +44575,Werner Kirsch +112473,Samantha Boscarino +246269,Jil Jarmyn +1036793,Roland Rába +1784285,Libor Filo +240150,Derek Yee Tung-Sing +1025970,Robert Gerdisch +1241498,Daisuke Ono +96710,Emmett Lynn +120439,Louise Campbell +35084,Johnny Hallyday +147737,Eero Saarinen +1139623,Janusz Sykutera +1200858,Francesca Reidie +129069,Federico Torre +4606,Jimmy Ortega +1404084,Mike Miller +17441,Lou Taylor Pucci +1106491,Ricardo Bonno +590317,Raphael +1294424,Noura Azzagagh +1257861,Delphina Belle +140822,Barbara Darrow +1327296,Meryl Williams +1898236,Stevan Ušćumlić +132963,Ben York Jones +23307,Moussa Assan +21321,Kristina Klebe +1066889,Inés Murillo +588323,Julio Perillán +1389992,Franco Ravera +1090418,Benjamin Gordan +1529061,Jules Benchetrit +1308394,Evelyna Rodríguez +7280,Geneviève Mnich +23086,Tommy Sands +1566010,Arabella Antons +1683133,Evan James +1577109,Todd Saulnier +1662557,Angela Trento +1093416,Masako Yagi +1169878,Mirja Oksanen +1445750,Paul Schalper +512958,Carolina Bang +1221174,Karen Philipp +78710,Alessandra Acciai +190919,Adam Brooks +1536085,Thanapob Leeratanakajorn +66068,Volker Büdts +37770,Claude Autant-Lara +1771599,Paul Pillsbury +937721,Heini Jaanus +583738,Kirill Safonov +228878,Andreu Buenafuente +83171,Suthep Po-ngam +65529,Irene Bedard +544030,Reuben Sallmander +203886,Jay Brooks +162072,Julio Iglesias +1014696,Augie Duke +1412167,James McAlpine +1393182,Mariel Sheets +968351,Bárbara Palladino +228101,Gwion Jacob Miles +113552,Briony Behets +1849115,Touria Benfares +1493396,Jeremy Wheeler +550283,Raffaele Pisu +1675543,Happie Barman +1576436,Hayley Gagner +1490055,Eddie Glass +111536,Andreas Haugsbø +1505210,Willie DeJean +84075,Demetri Martin +1381627,Katie Deal +803460,Mercedes Hoyos +1248832,Karen Elson +79035,Patrick Bonnel +1104,Jesse Ventura +1361561,Sheridan Harbridge +115998,Kseniya Kachalina +1785925,Samantha Russell +556730,Edoardo Melone +147542,Ketchup Eusebio +87892,Gabrielle Adam +205247,Anthony Vitale +584095,Sydney Barrosse +1684814,Nina Nikolina +142290,Mark Killeen +145072,Grahame Wood +1702104,Marc Mageau +1072319,Jaye Martin +86832,Stefaniya Stanyuta +1537585,Jan Rericha +48278,Pierre Rousseau +1184434,Kelly Curran +1306665,Marcello Airoldi +1802145,Eamon Brooks +78510,Urijah Faber +585677,Erica Stikeleather +936308,Christiann Castellanos +34090,Thomas Louden +1004791,Irina Dolganova +1485541,Alexander Eldimiati +1883545,Robert Tunnell +938198,Josh Covitt +1898503,Laetitia Giorgini +89647,Juli Básti +1148455,Wyatt Oleff +1180042,Masumi Nakao +557579,Raúl Castillo +1395190,Dakota Brown +26086,Michael Shanks +1589684,Paul Beckham +556927,William Kirksey +1404470,František Kubíček +24378,Bernard Alane +148532,Gloria Brewster +1492018,Thaddeus Phillips +1007834,Adrien Dixon +928923,Aline Griffith +1544957,Marty Roberts +1556839,Kuandyk Kystykbaev +53429,Clotilde Hesme +1498512,D.L. Hopkins +136894,Russell Arms +252,Sean Sullivan +109550,Olive Thomas +1141383,Yaya Alafia +1114535,Edda Heiðrún Backman +103209,Robb Reiner +482044,Beth Behrs +582484,Sergey Svetlakov +159695,Whitney Kershaw +85201,Rod Hebron +1439323,Lacey Olsen +1100333,Jimmy Zepeda +1241396,Mariano Argento +1196008,Kayle Blogna +137754,Marius Ignat +1234691,Darwood Kaye +1169977,Grace Powell +586161,Katarzyna Bujakiewicz +1432500,Liu Junxiao +119353,Erik Freund +1271300,Noah Johnston +1128270,Kate Clarke +1572629,Cyrielle Martinez +1157254,Ernest C. Warde +1422181,Earl Gunn +592370,Rodrigo Pandolfo +1622671,Bo Roberts +79001,Benjamín Vicuña +96366,Casey Kramer +121684,Teddy Darvas +143977,Aleksey Gurev +1503247,Mykayla Sohn +1178601,Naomi Battrick +1169504,Miroslav Laur +1765873,Daniele Tripepi +1423049,Goro Kumon +94850,Brenda Marshall +220592,Cecilia Nilsson +1031463,Lin Oeding +126657,Mildred Coles +10026,Ady Berber +1742815,Wart Kamps +585464,Dimitar Gjorgjievski +140466,Nedumudi Venu +43263,Conrad Coates +1273231,Shyaam Karra +1291805,Krasimir Simeonov +131029,Ian Fleming +136682,Wojciech Machnicki +131361,Dana Power +124692,Bushido +18950,Sebastian Weber +22974,Renate Blume +229164,Mike Stoklasa +540551,Rudy Lee +1480662,Garry Membrini +1868698,Hasso Wuerslin +53233,David Durbin +515510,Ryan Potter +1483783,Dan Anders +110784,Pekka Hietala +589433,Magdalena Czerwińska +1503901,Guy Oliver-Watts +52775,Kristin Chenoweth +932969,Felipe Ehrenberg +563620,Hsiao Wang +1371486,Danny Small +1694712,Aaron Sherry +1206158,Shirlee Strasser +128190,Michael Shaner +73908,Morgan Vukovic +1833228,Kailash Banerjee Sukhadia +543847,Germán Legarreta +3939,Oliver Bröcker +147888,Cay Izumi +1123788,Katia Chaperon +77432,Bodo Wolf +1795293,Penelope Sharp +1635208,Damita Jane Howard +1254517,Dorota Kolak +23669,Philippe Torreton +992869,Ayane Sakura +1027912,Louise Lorraine +144465,Alessia Franchini +1465469,Pearl Thusi +1828514,Gary Bird +225299,Francesco Villa +1017267,Alain Zef +1186996,Félix Bossuet +1538441,Rahart Adams +1138745,José Miguel Silva +1482519,Irine Kolliakou +86061,Rakhee Gulzar +1569357,Aurelie Thepaut +931203,Claude Marcy +1849534,Edwin Garcia II +1554785,Sarah Jaffe +93565,Kari Hietalahti +231440,Lars Bethke +1733481,Amy Floyd +1081332,Rosie Rowell +1600190,Olga Romanelli +1660478,Leonard Bell +107872,Jerzy Bończak +563051,Maria Annette Tanderød Berglyd +1205757,Senta Moira +1680529,Paolo de Manincor +1276626,Viktor Sobtchak +1651535,Anna Ekblad +223272,Fejria Deliba +1114307,Liam Rhodes +145023,Martín Kohan +999737,Erica McDermott +31639,Claudiu Trandafir +97455,Joe Guth +28749,Lucy Russell +1381698,Jason Pendergraft +562583,Matthew Albrecht +112510,Sevda Ferdag +88617,Jean Wallace +60421,Corina Toader +116309,Suzanne Kaaren +1399612,Doug Moran +121042,Woodrow Chambliss +1265887,Yang Yinqiu +1411871,Han Eun-jin +1020393,Bunny Waters +77707,Christina Lindberg +227799,May Jarvis +1182567,Justine Mattera +147894,Tom McKay +1394466,Sarah Alison +1391524,Carmen Mayerová +1728971,William M. Patrick +568846,Lise Henningsen +96585,Daniel Peacock +32586,Thomas Fritsch +196358,Barry Lynch +103921,Robert Malcolm +1564935,Mario DeAngelis +13804,Anne Ratte-Polle +32707,Philippe Bas +147964,Steve Murphy +1779822,Eoin Murtagh +131191,Eiko Koike +1292108,Toni Meyerhoff +96470,Madge Bellamy +1029083,Helena Kallio +34784,Harry Ahlin +1146148,Periklis Hristoforidis +1349740,Fabian Bourgoin Heskia +1672070,Jordan Drexel +1564562,Diallo Ibrahima Sory +1485908,Chantal Maurice +141651,Michaela Kuklová +123102,Yousuf Azami +1455553,Giorgos Chrysostomou +1394351,Jermaine Tindell +100051,Pola Negri +1166561,Lau Hok-Nin +1540764,Yogi Babu +1614414,Rock Duer +7929,Angus MacLane +170575,James Maloney +59336,Atze Schröder +1342692,Kei Tamura +1333163,Matthew Pollino +20913,David Birney +1724361,Rose Nelson +59337,Rüdiger Hoffmann +1003348,Rhino Michaels +971795,Ted Jan Roberts +148049,Lee Willard +1796926,Charles Butler +1089483,Clemens Giebel +1064420,Pitou Nicolaes +932207,Lola Dockhorn +1483386,Abhishek Krishnan +1140548,Tung Lam +1333739,Stephen Chance +1848078,Praphaphorn 'Fon' Chansantor +147880,Megumi Seki +30977,Tom Duggan +86779,Sahil Khan +1331396,Joes Brauers +1707544,Mary Brooks +1615542,Elliot Sanchez +1381720,Jennifer Stearns +548017,Kyôko Tonomiya +556722,Francesco Di Leva +1033739,Tom Audenaert +1184849,Sam Vincenti +22744,Erik Veldre +14182,Ernst Stahl-Nachbaur +1326172,Lee Kwang-Soo +85785,Michael Ostrowski +131663,Andrea Purgatori +152461,Jeremy Sims +6863,Kevin Dillon +73687,Elisabetta Rocchetti +1738908,David Brittain +1798879,James Jack Bentham +18704,Joe Lando +1055098,Sylwia Juszczak +1812341,Stephen Vining +670394,Steve Bilich +138161,Lee Boardman +1146810,Roberto Mei +1078568,Emma Rigby +226440,Hani Adel +1434623,Frank Tomick +1379206,Herman Wallner +132916,María José Silva +178940,Richard Schuyler +1255817,Glozell Green +1118671,Tai Chan Ngo +133247,Helen Cherry +1163724,Ramona Blair +126723,Jordan Brown +98022,Jim Mason +146817,Kento Hayashi +189896,Ted Atherton +48687,Sebastian Kroehnert +104199,Lynn Bari +98778,Fabrizio Jovine +1127663,Matt Amendt +1603650,Melis Tuna +1196508,Freda Kelly +1442570,Montse Torrent +1673520,Hal Taylour +1672450,Mimi Montaye +1207245,Leonard Scheicher +1386186,Jorma K. Lehtonen +1185918,Andreas Potulski +229615,María Aura +109324,James Cook +1734179,Russ McCarroll +1782576,Leo Garcia +1392451,Martin J. Kelley +38746,Uwe Detlef Jessen +40633,Jamie Parker +1219758,Caroline Lee-Johnson +85613,Juan Riedinger +1521625,Peter Settle +1754447,Stephanie Claire +1400941,Taylor St. Pierre +200163,Tonita Castro +74290,Travis Van Winkle +1129681,Kirsten Urso +1496178,Davide Giordano +1325714,Hannah Bos +58970,Juan Pablo Di Pace +115992,John Albright +1372661,Soufiane Guerrab +1187778,Gladys Dawson +1155298,Kwak Do-won +1874731,Tue Bjørn +211647,Jillian Rose Reed +1640728,Kamaal Rashid Khan +153254,Vivian Vance +157136,Robert Maffia +585373,Gianni Santuccio +1203411,Kana Tsugihara +1745605,Leticia Paquet +1056819,Lívia de Bueno +1049498,Nataša Marković +27144,Shaina Tianne Unger +59115,Travis McMahon +1298306,Christina Marie Moses +137693,Ott Aardam +1223323,Ben Sebastian +110036,Tatyana Ivanova +115680,Sarah Lancashire +8768,Maia Morgenstern +1320565,Elise Greig +1207868,Jean-Paul Kaijanen +105254,Marte Cristensen +36852,Karl Schönböck +222373,Helge Ihnen +1835239,Moussa Hachem +1843660,Satya Dusaugey +1676771,Samantha Scaffidi +1049408,Nancy Nevinson +1071371,Lady Frolic of Belvedale +237577,Yulia Peresild +163839,Michael McCormick +1860425,Danijela Vukovic +86011,Suresh Menon +236850,Elena Proklova +3752,Zelda Cleaver +113970,O.T. Fagbenle +239046,Minoru Takashima +1534800,Gentry White +965857,Uli Krohm +1696150,Ross Kimball +1190987,Dan Amboyer +1913,Susan Blommaert +3410,Preben Harris +1788304,Dhruv Ganesh +1592151,Mehran Ghafoorian +7590,Ville Haapasalo +1055181,Don Hurst +1282853,Augusto Pinochet Ugarte +42515,Cyia Batten +1476849,Anders G. Koch +509640,Martina Ittenbach +117174,Lisa Wegener +220989,Brooke Palsson +1123124,Jado Alagad John +8257,Jaime Sánchez +227638,Ryu Seung-ryong +130502,Doris Chow +1516710,Bernard Brkic +61519,Dr. R.D. Bowers +3537,Rosy Varte +171766,Tarik Lowe +1630327,Amara Grace +74574,Caleeb Pinkett +1710813,Fabio Lusvarghi +30683,Gary Graver +95401,Joey Olivares +106030,Khanutra Chuchuaysuwan +1100330,Kelly Coleman +1305365,Assi Nortia +70510,Marla Landi +1394310,Prashant Prabhakar +1495763,Laura Warner +217300,Kathleen McDermott +1189918,Seung Tin-Ngo +1605806,Claude Funkiewiez +67696,Kent Harper +1271401,Brittania Carraway +1289011,Charles Groves +1015340,Tim Janis +1382741,Steele Gagnon +940572,Jean Harrington +1872253,Joseph L. Salomone +118366,Jessie Nickson +1243416,Sergio Mayer +134414,Silvio Simac +1296646,Lynwood Robinson +97448,Evan Elliot +1090695,Lisa Marie Thomas +1656901,Chalongrat Thongkam +1099655,David Pullman +1451770,Emilia Drago +67176,Peppe Servillo +559378,Mike Mills +60116,Allison McAtee +64505,Hilary Yeung Sum Yee +1357752,Amy Everson +1259945,Jason Asuncion +1336371,Jose Miguel Vasquez +105265,Zachary Vazquez +1699503,Chloe Meier +989762,Andy Ostroy +130908,Ľubomír Paulovič +1387695,Antonio Maroño +154158,Wesley Thompson +364526,Scotty Mattraw +52624,Howard Maurer +551791,Agnès Sourdillion +1736008,Wayne Brinston +97084,Robinson Stévenin +120690,Kengo Kora +89600,Alice Davenport +141465,Shane Manie +557434,Henry Crowell Jr. +1472794,Jake Katzman +231427,Barbara Cabrita +1381097,Can Gürzap +101278,Leo Weltman +39145,France Rumilly +80189,Vanessa Thompson +940522,Graciela Alfano +230171,Everaldo Pontes +42741,Dominique Abel +1336771,Vicki Woolf +1593240,Yitzhak Rabin +1324774,John Hammond Dailey +1523164,Whitney Hayes +239064,Dilip Joshi +211800,Colton Haynes +1761826,Raili Tiensuu +113951,Del Moore +1180701,Nick Rutherford +1158760,Dany Boudreault +1523989,Haven Riney +1730830,Paloma Hidalgo +1091453,Carlos Bonow +177918,Camryn Grimes +1225906,Kelly-Ruth Mercier +47430,Boris Novikov +129506,Masahiko Tanimura +1252852,Jesse Carere +1863184,Kate Lavender +1052140,Dan Richards +111488,Tyler MacDuff +85366,Maxine Miller +1459398,Anthony Bishop +1489665,Whitt Brantley +1559492,David Weiss +1581228,Ljerka Margitić Miholjević +1344366,Willo Jean-Baptiste +979071,Pedro Telémaco +1103822,Iga Cembrzyńska +74721,Arthur Berning +1657141,Antonia Christy +141994,Sugar Ray Robinson +78950,Johnny Briggs +1883803,Sára Arnsteinová +130508,Eric Lau +956575,Wong Yat-Fei +111361,Zandra Andersson +1327299,Farzana Dua Elahe +1206772,Barbara Herrera +126778,Eddie Peng +1347281,Scott Shilstone +1219437,Stephanie Sheh +1883800,Daniel Pietrucha +218449,Zachary Charles +1262860,Aggeliki Papathemeli +155766,Sugar Ray Leonard +1182758,Abel Jafri +1123871,Mike Seal +1886753,Sylwia Szczerba +1017366,Michael Edward Brooks +1476856,Mads-Peter Neumann +545724,Marilyn Roberts +931768,Ravi Kissen +1210836,Kôji Yokokawa +1045532,Patrice Thibaud +1648878,Kees van Eyck +1014965,Carmina Villaroel +100477,John Terrence +1172813,Richard King +99682,Mike Jacobs Jr. +932628,Marta Larralde +1113514,Patrick Vincent +1630877,Maria Signorello +1016035,Max Linder +567011,Sirin Horwang +1398175,Ian Arcudi +1324248,Kaoru Hirata +1562219,Feng Fei-fei +323149,Helena Brodin +1904094,Warren E. Thomas +89888,Adam Copeland +164770,Diana Chesney +1181030,Ferran Audí +1512194,Kyler Wilson +145399,Suavi Eren +29094,John Bach +56551,Ashley Laurence +134600,Shakti Mohan +1367033,Lock Mosoner +227674,Fyodor Lavrov +1697805,Enri García +19827,Pablo Derqui +1031787,Shiney Elizabeth +88495,Sandra Ng Kwun-Yu +114288,Gertrude Hoffmann +127720,Jung Yu-mi +1480253,Espen Hana +141704,Jayaram Subramaniam +110072,Kenny Ireland +1271727,Paul Snodgrass +1397742,David Shreibman +1188861,Greta Almroth +1461456,James Brown +1325421,Yaşar Şener +105305,Aaron Wolff +1877261,Marcella Rica +107520,Enzo Coticchia +556787,Yosuke Saito +98103,Richard Ayoade +1207917,Evan Siegel +1364657,Olivia Mattingly +142315,Nick Ackerman +1672449,Jeanne Houser +75912,Kim Yoon-seok +142892,Dr. Macklin +1818380,Jennifer Manley +108992,William Bishop +1263642,Evita Rozenberg +180286,Paco Martínez +1800039,Clive Fitzpatrick +1674352,Skin +131820,Emma Bell +120571,Myriam Boyer +109576,April Adams +559553,Florine Elena Deplazes +1195967,Ted Turner +1531741,Martta Aho +1005695,Omid Roohani +1848666,Jonathan Costa +213394,Matthew Beard +1046561,Tullio Altamura +1179887,Oksana Markham +37746,Christa Linder +44578,Lana Young +52316,Ruth Collins +1838932,Michael Koschorek +1822698,Franciszek Norman +133214,Paola Cortellesi +142704,Kenichi Ogata +228515,Dalorim Wartes +1691468,Damien Moses +223680,Kelly Devoto +148518,Lupita Tovar +1412590,Sonia Wilson +102657,Jonas Talkington +82923,Bérénice Bejo +1381507,Apollon Uni +64455,Jang Hyun-sung +47943,Stephen Boxer +112949,Michael Koch +1232745,Zaraah Abrahams +983705,Sara Wilson +1441333,Chris Damon +1670764,Kyle Pierson +590558,Aldo Fiorelli +144637,Nebojša Ilić +1181282,Viva Tattersall +1467962,Gordon Friday +1278820,David Gutman +1668237,Amir Ranjbar +1334077,Jason Liggett +1203021,Ahti Kuoppala +78799,Carolyn Lawrence +62654,Brendan Jeffers +1220087,Daniel Weyman +145121,Pierre Niney +1300699,María Emilia Sulbarán +164431,Amir Arison +1668553,Joseph La Cava +88779,Lew Meehan +146061,Stefan Haschke +1464768,Gunes Galava +1488893,Jorge Eduardo De Los Santos +1549535,Zhuohua Yang +227259,Amund Rydland +1557953,Cameron Taylor +1115635,Jessie Combe +1078697,Myles Breen +554323,Hiroshi Kawaguchi +39917,Jan Peter Heyne +548758,Keiko Takeshita +98874,Mike Coen +1761850,Pentti Viljakainen +193488,Stanley Baxter +1620096,Georges Riccio +1361066,David John Rosenthal +556113,İlker Aksum +1548305,Jennifer D. Taylor +106781,Santiago Giralt +1256851,Maryjun Takahashi +26279,Manuela Vellés +121118,Monte Vandergrift +1002001,Frank Lotito +1045898,Neeraj Sood +1424380,Ellen Ho +1808627,Jack Ricardo Miller +1298569,Karim Babin +1398148,Marina Bastarache +1407933,Assa Sylla +70759,Philip Michael Thomas +1165391,Jens Bergensten +86345,John Lawrence +1334388,Karim Pakachakov +9654,Charles Croughwell +1620572,Hana Abdel Fattah +72154,Serkan Keskin +132900,Alcides González +1118336,Igor Kashintsev +1576784,Kristoffer Hjulstad +44648,Ana Caterina Morariu +1535064,Kurt Goehner-Winter +1056613,Shôji Nakayama +930425,Shuntaro Hani +99123,Ron Jason +113648,Karmine Alers +1129783,Gediminas Adomaitis +1549814,Anna Smolowik +1903063,Marina D'Elia +1867763,Darpan Inani +86477,Claire Keelan +217748,Ruth Clifford +1898302,Carlo Viani +83993,Frank Jaquet +1583614,Yanny Chan Wing-yan +71896,Travis Smith +31992,Ignazio Dolce +1643257,Fuschia! +1540601,Thomas Barbusca +1367570,Elizabeth Kinnear +151759,Ann Morgan Guilbert +931681,Suheir Hammad +1324629,Glenda Lauten +1349381,Joel Lok +1796417,Tauntaun +551462,Katie Parker +1174989,Yves Penay +1584610,Nthenya Ndunda +1583945,Grzegorz Goch +1714289,Allison Macri +1389034,Cameron Dallas +149096,Gary Bolling +1775299,Brandy Smith +1863669,Ricardo Pitts-Wiley +170364,Tom Papa +1299221,Baek Do-bin +132888,Richard Loza +1564893,Takako Miki +78031,Cassandra Scerbo +84251,Ivo Garrani +565126,Philippe Ohrel +37303,Jacques Champreux +1184372,Rebecca Jones +1724270,Fouzia Guezoum +1568201,Tanya Giang +12089,Tony Leblanc +1563222,Jay Walker +1834940,Kenneth Downey +1118286,Valentina Ananina +51719,J. Edward McKinley +227243,Marco Cocci +11572,Carl Theodor Dreyer +1326031,Nicole Fortin +982296,Gracia Olayo +1299620,Hu Xiaoguang +1060909,George Mitchell +93037,Camille Solari +1232748,Katie Griffiths +550953,Andrew Bennator +115582,Shawn Storer +164614,David Sobolov +1371392,Anne Bergstedt Jordanova +35082,Gabrielle Lazure +991145,Mary Cecil +1561814,Natalie Light +120385,Bruno Putzulu +157685,Lisa Montgomery +1782864,Kavandeep Hayre +1650142,Johnnie Mae +1042609,Colin D. Simpson +1172394,Rukmini Vijayakumar +133207,Patti Hale +125341,Viktor Mikhaylov +11928,Peter Feldt +33926,Carlo Giuffrè +1548606,Madeleine Fairley +1815692,Ellie Graham +90044,Nikki Kelly +1694304,Martine Conzemius +1347584,Trygve Svindland +1105223,Juan Pablo Shuck +1375062,Oh Chang-kyung +35668,Cordula Trantow +1785906,Moya Allen +1114060,Mireia Vilapuig +985079,Jim Avignon +1838853,John Quijada +1821522,Brandon Melendy +1465615,Margaret Ying Drake +1866645,Elena Praskin +89979,James Ferris +1525318,Joanne Hunt +1366717,Brittany-Ellen Willacy +40241,Todd Armstrong +1382197,Molly Gaisford +1095875,Ana Julieta Récamier +1658131,Caroline des Pallières +575502,Hans Strååt +1537748,Tom Colsh +104976,Jessica Zandén +8206,Hinnerk Schönemann +1736784,Danila Yakushev +558917,Tracey Fairaway +13707,Nikolai Sergeyev +1616614,Mickey Blaine +1215869,Moosie Drier +1734174,Quentin Kenihan +18941,Felix Hellmann +203048,Skyler Stone +121799,Fachry Albar +1604692,Bülent Üstün +1196702,Mike Ragan +44972,Alessio Orano +976274,Areen Omari +40530,Johnny Sekka +1794891,Lluvia Almanza +96687,Cecilia Freire +30582,Norman Mitchell +79087,Robin Weigert +132918,Belinda Forbes +1394784,Mirja Mane +1229669,Andrew Supanz +1674731,Jack Hickey +1398158,Tiger Kirchharz +83593,Girish Karnad +1694296,Jules Waringo +1081605,Dietlinde Turban +93578,Ben Williams +91283,Tim Larson +120025,Giacomo Poretti +567590,Kristy Clark +1184081,Mak Wai-Cheung +240545,Vladimir Tolokonnikov +1127744,Ronn K. Smith +5208,Hanno Koffler +1096822,Afrika Bambaataa +1405553,Fred +1128557,Madison Dae Clarion +1272480,Raphael Grosz-Harvey +484293,Britt Flatmo +1433017,Rebecca Croll +194762,Kim Manning +24374,Gleb Strizhenov +93792,Louise Linton +1192758,Samuel Schneider +143137,Sofía Santos +179073,Jack Younger +1316481,Helen Fisher +1605124,Clare McGlinn +107479,Michael Rubin +232979,Cory Peterson +237689,Devadarshini +1549539,Evan Taylor Burns +97836,Thomas Law +1102369,Lara Parmiani +1362743,Hilary Greer +57370,Frank Coraci +580682,Guinness Pakru +14872,William T. Orr +1808891,Ivon Orvain +563713,Joel Barcellos +26330,Katrin Schaake +1004279,Shahbaz Khan +84778,Natasha Yarovenko +1830647,Pezhman Jamshidi +72998,Neus Asensi +1038495,Mitko Apostolovski +70461,Katinka Auberger +1684546,Sandra Lavoie +140814,Micke Dubois +1367516,Timothy Eulich +1179812,Matej Zikán +64245,Maggie Wagner +73595,Halvar Björk +1356867,Dustin Cook +1484151,Bill Smillie +146696,Won-gyoon Choi +1385061,Michael Chapman +229250,Madhubala +1422628,Charles Bolton +1158419,Laura Lemar-Goldsborough +1581033,Atapon Wernziw +82480,Franz Gruber +1157047,Harry Palmer +1544920,Trevor Bau +1869039,Nilsa Castro +125222,Rafael Alonso +54725,Jenna Haze +1880148,J.J. Phillips +1872242,Tessy Tischler +30581,Michael Ward +237960,Miguel Dedovich +1505502,Kaelee Vigil +585936,Erin Coker +211010,Hugo Metsers +183048,Stephanie Vogt +225811,Pål Stokka +1002938,Girolamo Marzano +1153591,Yulia Inozemtseva +212198,Tina Ivlev +119754,Rob de Leeuw +122467,Cynthia Bain +549136,Nikolai Simonov +1288246,Taichi Kokubun +1737866,Amanda Wright +965506,Ryôga Hayashi +26507,Gustl Bayrhammer +28146,Christine Delaroche +145323,Patrick Johnson +1672660,Gina Antwi +1853898,Larry Burrell +1081520,Yevgeni Muravich +83358,Michael Chan Wai-Man +232525,Warren Christie +587159,Héléna Noguerra +1764148,Jonathan Hester +1601474,Suchada Sirithanawuddhi +587962,Valentina Quinn +1455549,Giannos Perlegas +24062,Jens Peter Brose +143502,Akiko Hiramatsu +12662,Phil Fondacaro +348101,Micheline Herzog +61705,Woon Young Park +1070750,Maria-Christina Oliveras +533398,Sara García +1247415,Melissa Michaelsen +141679,Rafael Correa +1082064,Tess Bomb +102545,Ham Larsen +124069,Seth Morrison +1239123,Qi Yuwu +1859939,Paige Eileen Caparella +108025,Michiyo Kogure +1060741,Loris Bazzocchi +1228965,Sydney Wade +1029084,Marco Melander +74192,Stephen Fung +1401544,Mikel Murfi +1184079,He Si-Rong +167565,Ron McLarty +1683153,Nikita Waligwa +1129188,Dorothy West +120656,Luigi Maria Burruano +1017279,Håvard Lilleheie +928977,Gabo Correa +1531619,Jermaine Mctizic +73187,Kana Onodera +1304413,Smita Tambe +127154,Noni Lewis +103369,Ruby Dandridge +240040,Cheung Ying +1187012,Belarmino Fragoso +55005,Yvonne Lombard +1685904,Hannah Anderson +138114,Kim Bum +87786,Jang Se-jin +71900,Adrian Paul +94256,Margareth Madè +1623284,PiaGrace Moon +61985,Olivier Baroux +141040,Russel Lewis +1089584,Phintusuda Tunphairao +942254,Jim Lampley +1633799,Bill Cato +36898,Ely Pouget +1685980,Vladimir Kuznetsov +1088898,Reed Brown Jr. +1685469,Stephen Blake +1121491,Bernard Wrigley +236002,Aleksandr Lykov +228884,Mélusine Mayance +199313,Freya Stafford +99831,Jennifer Ashley +63370,Aonghus Og McAnally +40247,Julia Meade +1186117,Edward Cooper +1016067,Savannah Jayde +1048753,Joakim Latzko +1409555,Antonio Zavatteri +1707831,Yasmin Allain +138521,Kim Hee-chang +144075,Billy O'Sullivan +1571745,Vern Crofoot +1709053,Philicia Saunders +117640,Haluk Bilginer +80182,Mark Forward +31748,Barta Barri +17039,Nick Offerman +161023,Jenny Sullivan +69287,Eriko Hatsune +1574460,Zukhra Duishvili +78246,Vishal Malhotra +1394465,Nicholas Farris +1427888,Alain Moussi +127407,Valentina Kurdyukova +110667,Chisa Yokoyama +1511127,Maya Washington +1654843,Jay Dunn +46311,Jonas Laleman +1139976,Peter Hunter +18426,Charlie Weiss +34235,Thomas W. Ross +1117090,Bonnie Norris +195675,Ricky Whittle +1525609,Joe Krieg +1179627,Manav Kaul +1161078,Sonia Dodyk +1883872,Lello Analfino +105505,Lee Bowman +1637129,Charlie Shotwell +195389,Rebecca Manley +1857866,Kattreya Scheurer-Smith +1326568,David Rawle +1448661,Laura Grey +1296849,Michael D. Cohen +1365909,Liu Hai-Long +1860,Hannes Jaenicke +1711414,Fûka Iwasaki +5805,André Previn +1400687,Tyler Thirnbeck +1195368,Martha Greenhouse +1189919,Siu Suet +1532534,Taylor Dianne Robinson +118496,Franco Bracardi +962148,Kenda Benward +271664,Giulio Farnese +1625820,João Listz +138210,Edy Angelillo +239313,Yumiko Fujita +237429,Gennadiy Khazanov +1675540,Hideaki Komori +203294,Jill Morrison +1369183,Ippei Takahashi +1318386,Dean Santoro +1467780,Gwenllian Gill +1534321,Edward Baxter +16863,Todd Haynes +1088036,Daniel O'Meara +1349801,Ed Birch +1562478,Jonathan Race +586533,Craig Ferguson +1059877,Yûsuke Izaki +106594,Varvara Porechenkova +146540,Laurence Masliah +82514,Magdalena Mielcarz +1267619,Marrese Crump +1268070,Jan Hammill +1326246,Christina Lynn Knowles +1218631,Curtis Stone +1117785,Michel Michelis +42217,Rik Young +1242533,John Voce +124573,Leon Burchill +131085,Diana Gómez +1421534,Stefan Nagel +1440747,Ernesto D'Argenio +305332,Masumi Okada +80784,Shannon Eubanks +1537009,Sophie Gannon +49915,Jesse McCartney +211068,Leslie de Gruyter +1079573,Peter Marshall +1816042,The Buckaroo Band +222371,Emil Austermann +35127,Antonia Liskova +963450,Evan Gamble +87297,Tannishtha Chatterjee +100804,Charles Hill Mailes +1427625,Dik Boh-Laai +1271001,Shorty Cantlon +72871,Marianne Hold +1143950,Nicolás Coronado +1873607,Ferenc Dávid Kiss +946533,Arath de la Torre +120632,Simona Mariani +1516699,Christopher Parkinson +1807063,Doug Meacham +1872890,Seret Scott +1423926,Joe McMichael +1605812,Franck Contenti +1526119,Satoshi Yahata +444317,John Robinson +937187,Maresa Gallo +1438874,Ben Sutton +1891523,Dan Davidson +134216,Carlo Brandt +1478648,Walter Michael Bost +1086297,Géza Rácz +119996,Alessandro Haber +23357,Johannes Schaaf +1375273,Sheila Wills +1286797,Jackie van Beek +61069,Miguel Arteta +61518,Stephen Benson +1869038,G. Christopher Carson +1405861,Gerhard Zwerenz +82141,Lynne Deragon +1207280,Jamie Harrison +49232,Georg Vogelsang +12062,Jeffrey Katzenberg +1264352,Jonathan Flumee +1411405,Nancy Nash +1176789,Kim Carbone +1541358,Paul Reynall +1050337,Zdzisław Maklakiewicz +1784722,Jack Cranfield +1150097,Michal Trzeciakowski +50931,Bárbara Lombardo +1087381,Janet Bar +431085,Otto Reichow +1144867,Anne van de Ven +1386221,Aaron Moten +1883852,Barbara De Bortoli +8744,Gunnar Sjöberg +1696391,Santiago Burutxaga +32481,Sarah Cunningham +1318861,Michael Pollitt +1202065,Christian Brandin +1554763,Chris Casey +1428021,Bimbo Manuel +1053375,Janusz Bylczynski +1074069,Gina Mascetti +1789159,Fernando Sur +114230,Charlie Briggs +1902453,Julia Farsette +936928,Yvonne Owen +1034704,Paul Brannigan +184114,Dan Priest +1192274,Jordan Fisher +1497340,Dominic Marcus Singer +1026577,Julie Marcus +19525,Gisela Trowe +1310863,Colin D. Calway +1351623,Joe Hembus +150869,Bret Marnell +1266462,Lasse Ellegaard +1457266,Aaron Jay Rome +380715,Emma Roldán +1022724,Gabriela Muskała +1413103,Ileana Neagu +1174608,Paul Thompson +1091539,Giovanni Bonadonna +1128161,Robyn Moore +1368022,Fred Thomson +82788,Frankie Boyle +130032,Jan Decorte +198150,Ike Barinholtz +1286873,Andrei Runtso +576097,Alex Cardillo +7885,Randy Newman +1438683,Caroline Grace Williamson +1548,Helen Chandler +41044,Babou Ceesay +1459402,Aidan Lithgow +1229578,Brooke Satchwell +530618,Jane Levy +35116,Ivan Franěk +432771,Boris Svrtan +144191,Şahan Gökbakar +79918,Phil Scroggs +1312412,Udo Vioff +1509225,Jayde Rossi +1110009,Lane Edwards +1893380,Joe Cassidy +237284,Aleksei Gribov +553270,Jurgen Delnaet +134961,Alessandro Mallia +1161224,Luce Klein +1298755,Jennie Kamin +223027,Tiffany Morgan +1286510,Sara Rapisarda +1117776,Badih Abou Chakra +1172216,Margarida Moreira +1839574,Martti Silvennoinen +1579265,Kristina Mauruseviciute +1193327,Alvin Greenman +87274,Les Claypool +1466262,Adam Thomas Wright +1785923,Jag Patel +1398162,Lorella Boccia +145826,Dorothy Wilson +106672,Howard Gruber +143362,Gino Santercole +1392499,Mick Walter +1365908,Steve Yoo +120154,Corinne Jiga +96485,Jang Dong-jik +143928,Koen Balcaen +102744,Monique Ganderton +1322191,Bahram Radan +34165,Frank Ellis +86669,Radner Muratov +1094789,Abdel Aziz Khalil +2695,Dylan Kussman +129999,Tim Hovey +575726,Saartje Koningsberger +11189,Claude Giraud +269476,Andrea Compagnoni +132184,Marco Albrecht +136747,Jimmy Woha +601266,Ranjeet +91355,Christa Théret +1350000,Seo Kang-joon +1197469,Elina Keinonen +1605144,Mary Passeri +569893,Nihat Alptuğ Altınkaya +1249685,Atsushi Tamura +1551692,William Pifer +1344380,Mark Tallman +1204701,Darius Davis +232042,Irina Costa +153469,Kevin Hagen +570509,Storm Acheche Sahlstrøm +1198613,Danae Reynaud +143933,Rex Ho +931901,Irina Gubanova +935932,Carl Crew +17844,Elke Sommer +52768,Vipin Sharma +1293589,Leila Knight +236021,Camilla Luddington +1793183,Alexander Burke +1071382,Juliette Montel +592680,Claudio Jaborandy +1710824,Sue Hathaway +152802,John Apicella +985075,Sergei Volzhin-Yastrebov +1127388,Isa Ferreiro +543791,Maria Jeffery +105226,Lautaro Murúa +1086318,Imre Donko +275667,Sergei Kachanov +1485708,Ivy George +1001691,Deniz Petzold +167823,Jackie Gayle +94322,Charley Foy +1522760,James Bloor +240243,Merila Zarei +10504,Jill Bennett +103821,Bill Thunhurst +543929,Henri Poupon +1040950,Esha Gupta +89154,Prabhu Deva +65476,Joke Devynck +1446346,George Gross +1202404,Nobuyuki Suzuki +1106543,Natalie Makenna +96317,Kathleen Madigan +543788,Horacio Louis Guerrero +94033,Myrna Hansen +34624,Judi Meredith +1286329,Jack Falahee +1741064,Sharon Jones and the Dap-Kings +80415,Judith Light +145158,Anne Le Guernec +1271571,Orã Figueiredo +1424892,George Avgoustis +1336997,Rajkumar +109317,Jennifer Nyholm +1562567,Yu Ai-Lei +1488894,Tony Almont +90414,Kurtis Maguire +582233,Vikenty Volchansky +1365817,Barbora Milotová +1839907,Rafael Oliveira +1107774,Akiko Tanaka +67321,Piera Degli Esposti +1648775,To Savan +196694,Meredith McGeachie +1200670,Kelsey McNabb +1541183,Nicole Pursell +52189,Patsy Pease +235364,Alessandro Di Carlo +107374,Henry Cooper +1630683,Oliver Parsons +99312,Viktor Rakov +1161201,Laurent Talon +1186713,Matt Mercer +39970,Alastair Mackenzie +67471,Hideyuki Tanaka +1452000,Johnny M. Wu +87790,Park Jun-gyu +1176781,Holly Bressler +156711,Sigal Diamant +127662,Rafaela Mandelli +939005,Fred Sidewater +1607570,Min Jin-Woong +1588359,Alexyss Spradlin +1862643,Francesco Forte +1294406,Tom Christianson +68447,Bo Greigh +1611360,Karith Foster +122820,Kwong Leung Wong +563655,Debra Clein +90394,Mike Reilly +1776847,Catherine Griffiths Auger +163386,John Washbrook +1068405,Gail Kane +1716517,Dylan Michael Rowen +1261994,Hugo Marín +932586,Augustine +1784327,Riley Crawford +515821,Julia Mallam +139313,Stewart Nedd +1753495,Richard Cassalata +95091,Ilona Staller +1830469,Selva +20083,Christiane Millet +1719598,Ben Folstein +1274671,Maryan Guuleed +1646464,Laurean Adrian Parau +933897,Ruth Johansson +131202,Ryô Ikebe +928922,José Antonio Escoriza +1734195,Gadaffi Davsab +223309,Shozo Iizuka +1359352,Gameela Wright +6975,Meera Syal +1352022,Nadine Crocker +1146840,Sabahattin Yakut +167667,Joe Lala +1422424,Hiroshi Aoyama +119400,Casey Roberts +1381689,Ben Walker +1706346,Wasif Arshad +1585997,Guillermina Valdez +172868,Ryan Drescher +1088729,Michael Otis +110845,Carman Lee +1496037,Lemogang Tsipa +549058,Glenn Barnes +1585216,Jenna B. Kelly +1772152,Georgy Burkov +1554759,Joe Daly +61470,Natalya Lapina +1196412,Mattis Morotaja +1661538,Manuel Rojas +1624629,Dean Baquet +110899,Margrét Vilhjálmsdóttir +1839931,Marcelo Cavalcanti +120791,Rick Vallin +96725,Wallace MacDonald +1205153,Ron Asheton +1141816,Alexander Mandra +1192631,Paul Argaud +93380,Michelle Meadows +1007325,Venu Madhav +123316,Dilip Prabhavalkar +1445124,Victoria Bargues +47456,Season Hubley +22018,Velizar Binev +293984,Lalainia Lindbjerg +1376478,Herwig Ilegems +556087,Maya Aleksandra +76855,Tony Dalton +1144872,Mark Hendy +357551,Amy Landecker +569349,Julius Nitschkoff +1501618,Aida Espiritu +1743949,Bruna Cusí +95357,Tim Jo +1364446,Irma Seikkula +1841959,Paul Vally +1648570,Thamnoon Ar-Taroprayoon +1179656,Joel Isaac +26817,Anita Lochner +1443629,Moro Shioka +1531735,Walle Saikko +1451456,Lenz Moretti +1566184,Quino Piñero +110129,José Coronado +84214,Taylor Lautner +1119834,Dave Alex Riddett +1003567,Bruce MacFarlane +1504537,Adam Dietrich +1205885,Grant Case +1029031,Christopher Beasley +95956,Luc Picard +20759,Yancy Butler +1192392,Virginia Girvin +84059,Angelica Panganiban +183426,Sabrina Bryan +145078,Josée Steiner +565160,Raza Murad +1356807,Nicola Pannelli +1585170,B.J. Smith +131234,Alison Skipworth +1077276,Enzo Petito +1295455,Uno Kawase +93228,Louis Herthum +553286,Masashi Hirose +1769757,Jayson Genao +221082,Russell Harvard +58093,Don McGuire +1413776,Chris Roberts +1209476,Karl Glick +150945,Blanquita Romero +236792,Jón Júlíusson +1686510,Marissa Heart +1352337,Jake Gregory +86873,Aleksey Kortnev +1096815,Takahiro Miura +235002,Aurora Cossio +909226,Zachary Sayle +92282,Nathan Anderson +120760,Morgan Conway +580701,Norman Bart +1891521,Mark Canjar +1812571,David Peel +1738282,Peter Tocco +1179853,Bolt Birch +138324,Tony Elias +1805298,Lina Kramer +228545,Yoshiko Kayama +1784157,Mata Amritanandamayi Devi +1374337,Hayley Joanne Bacon +1355221,Jaiyah Saelua +1848082,Jacqueline Lee Geurts +1145175,Marguerite Whitten +54384,Georges Atlas +1814921,Eden Mengelgrein +1047650,Anouska Mond +1055293,Bobby Mallon +240842,Pavel Vinnik +71185,Espen Skjønberg +1898501,Tanja Fanzun +1476095,Olga Valdez +582117,Rachel Harrison +586677,Florian Teichtmeister +27651,Francesca Bartellini +1502726,Ermanno De Biagi +55458,David Ketchum +1760120,Mark A. Watters +1707839,Pari Chopan +1774435,Mana Hira Davis +1221520,Constance Ford +1659263,Liz Godwin +1130154,Aju Varghese +81927,Rimi Sen +111541,Marius Rusti +1174697,Candy Liu Zi-Yan +33815,Pier Paolo Capponi +1422977,Paulina Singer +102672,Ernst Petersen +1209860,Shannon Finn +22589,Hannjo Hasse +1059939,Hiro Sano +1452736,Roxanne Cybelle +1269393,Tannalotta Räikkä +44486,Viktor de Kowa +1907176,Peter Stevenson +79168,Jonas Inde +1281286,Nalan Burgess +95045,Linda Bisesti +567616,Isabella Murad +1683830,Hannah Covert +104894,Jamie Luner +1794006,Tomer Offner +1379493,Chandler Rylko +81580,Serdar Kebapçilar +51325,Jérémie Renier +1271176,Signe Bernau +994245,Laura West +39740,Yvonne Mitchell +1820238,Yamil Chapa +1564563,Cheick Oumar Tembely +1404698,Saleem Watley +560052,Torsten Winge +1702669,Hugh Maynard +56104,Sharon Maughan +1784603,Catherine Lynn Stone +103858,Kurt Sinclair +1087004,Stefan Svensson +116988,Tol Avery +1128390,Zhang Jian-Wen +74121,Maud Buquet +209578,Laura Haddock +230086,Payam Madjlessi +1636704,Marek Serafin +1238646,Choi Bool-am +102509,Gyula Szabó +1161088,Norbert Gogan +56616,Brett Fancy +1140989,Gigi Wong Suk-Yee +116312,David Masterson +1049457,Scott Sutton +88578,Anita Blond +1328350,Gianni Gori +1082,Nina Petri +1292273,Anna Shurochkina +213479,Keiji Sada +1478222,Seerat Kapoor +126725,Dominique Thomas +105355,François Montagut +1670731,Hélène Liber +36440,Nils Nelleßen +935419,Yelizaveta Solodova +298988,Pierre Labry +119362,Filippo Del Giudice +1745407,Penelope Stoller +1230855,Thorsten Nindel +1088192,Mariana Seligmann +108680,Jimmy Hanley +1454104,Philip J Silvera +575113,Dmitriy Sharakois +472602,Mary Ashton +1617613,Ivan Allen +67447,Anthony Veiller +939125,Fallon Goodson +1131440,Jin Yan +211042,Mike Libanon +18403,Werner Abrolat +1450383,Greice Santo +860526,Ben Stambler +101575,David Hess +1548297,Hannah Nordberg +1084477,Juanita Lara +128074,Alfredo Cerruti +1246717,Petra Blossey +1631016,Dominique Engelhardt +20266,Michael Wittenborn +22647,Rolf Römer +15889,Caroline Gray +125488,Flavio Parenti +937136,Ionel Mihailescu +1531621,Aj Brander +94189,Tetsuko Kuroyanagi +142388,Izzy Meikle-Small +110116,Dafne Fernández +29412,Eric MacLennan +1503835,Joseph Bruno +964079,Charlotte Newhouse +1646438,James Warren +68988,Sho Aikawa +1755085,Sean Stevens +131724,Adrienne Bailon +1091128,Macarena García +39636,Margot Mahler +1731870,Joe Foti IV +1096780,Hernán Mendoza +234555,Paolo Paraiso +237057,Paolo Bernardini +34971,Daniel Pilon +1675541,William Douyuak +1160209,Zach Freeman +67269,Raymond Briggs +64018,Karin Pfammatter +173428,Bridget Hoffman +1869089,Sean William Bogaers +1165713,Aleksandr Tyutin +1418580,Lee Dong-Hwi +185464,Tilly Vosburgh +1127280,Kyle Rideout +1841522,Ronne Kurlancheek +1383623,Joe Coffey +986519,Mark Ullod +1073338,Amélie Glenn +1558642,Ava Sambora +1194169,Matthew Chiu +1433818,Keiko Horiuchi +1871300,Ciro Orlando +86228,Tiku Talsania +1650377,Andrzej Popiel +1828320,Uma Fritze +27143,John Tench +1186654,Joey Paras +1152023,Christine Horn +1784654,Carrie Lauren +1196098,Mango Wong Sau-Lam +1318257,Sébastien Pouderoux +1503917,Jamie Edwards +106657,Moa Gammel +1831703,Lindsay-Elizabeth Hand +264955,Manuel Manquiña +1463146,Elizabeth Rider +90459,Landon Norris +28247,François Maistre +218569,Mary Grace +127023,Marjorie Rhodes +1066753,Mary McLeod +1422280,Ralph Malone +1083327,Masanori Machida +1599404,Anatoliy Burnosov +1202592,Sophie Broustal +87890,Nam Sang-mi +57830,Rachael Blake +1003283,Josh Macuga +37412,Peer Augustinski +226171,Berard Arnø +1187356,Judith von Radetzky +21978,Louise Goodall +1440459,Donny Wu +74070,Nana Visitor +44266,Alejo Sauras +19584,Lyudmila Saveleva +1425799,Buddy Duress +1055290,Allen 'Farina' Hoskins +1155659,Jack Pearson +155703,Karl T. Wright +1900079,Peter Beard +1287141,Edward Zebrowski +1662172,Uday Lagoo +1291806,Rosi Chernogorova +1542295,Aleksandr Pieskow +217828,Melita Jurišić +1452744,Laurie Guzda +1117285,Ken Burrows +1196268,Tônia Carrero +1707941,Frank Dixon +1298527,Elena Ponsova +1672075,Carol Weyers +1188419,Abdellah Chicha +1090691,Damion Stephens +103330,Navid Negahban +56265,Dale Midkiff +1381688,Patricia Taylor +97447,Mark Casimir Dyniewicz +1450040,Donald Hall +64343,John Ales +59401,Amy Hill +589787,Mario Feliciani +23899,Robert Blanche +143667,Yuriy Tsurilo +146080,Nina Rodriguez +565312,Klara Rumyanova +82408,Benny Goodman +102094,Manuel Gas +1327175,David Maldonado +22214,David Wain +123921,Normand D'Amour +1519447,Monika Nowak +39440,Antoine Vitez +1403178,Hannah Dunne +46986,Chris Evert +29527,Tom Ward +92714,John Boxer +1859518,Antonio Spagnuolo +98236,Catalina Saavedra +1154133,Sipho Mlangeni +1090196,G.R. Johnson +1559452,Bobbi Hunter +1304639,Billy Paterson +27329,Peter Gordon +563107,Edith Bolsover +978960,Damián Canduci +1898231,Aleksandar 'Saša' Sarić +59386,Katharina Heyer +86030,Adah Sharma +1190133,Dawn Sorenson +89501,William Holden +1615560,Jack King +1210612,Julian Shatkin +1829370,Vincent Gail +1185475,John McArdle +101537,Meredith Snaider +1880535,Andrea Canfora +1512175,Kevin G. Quinn +1592523,Milena Suszyńska +1740108,Bill Hawk +57852,Tom Gerhardt +193254,David Shaughnessy +1161961,Robert Levon Been +55015,José Dumont +1489945,Ramachandran Durairaj +1444929,Tony Lomba +1583293,Howard Brusseau Jr. +1782151,Greg McFadden +568717,Anas El Baz +60053,Larry Seymour +1161221,Philippe Dionnet +1266858,Faysal Ahmed +1110445,Tuğçe Kazaz +983679,Carter Jackson +160273,Lydia Cornell +1752147,Lucas Chartier-Dessert +134512,Dimitri Rataud +1650302,Gareth Maguire +928078,Teddy Kyle Smith +1018913,Anabela Moreira +3822,Ángela Molina +168773,Suresh John +1212174,David Griffin +1758466,Kistachapon Tananara +1491318,Darrell Thomas +935340,Bjørg Riiser-Larsen +1322236,Mish Boyko +1117079,Atsuko Takahashi +222786,Michael Beran +67193,Hansi Jochmann +69912,Dominique Deruddere +1495941,Timur Batrutdinov +113861,Luisa D'Oliveira +1202971,Natalia Ryumina +1470384,Max Turnbull +1842196,Christopher Kaczmarek +57172,Ashanti +52011,Jan Sosniok +1003922,Matilde Costa Giuffrida +939150,Charlotte Vandermeersch +1123787,Duncan Versteegh +278032,Pierre Amzallag +1334174,Angela Oberer +870112,Antonina Shuranova +1647319,Terral Altom +133832,George Keymas +1418972,Karl-Andreas Kalmet +1467349,Nick P. Ross +1532331,Nafessa Williams +1122102,Dominic Bogart +1185444,Brianna MacDonald +1495076,Lorraine Bahr +1782609,Joey Rubina +24895,José Garcia +1602320,Jana Soler +1106891,Ibrahim Idowu +1079462,Ulrike C. Tscharre +1377317,Jeremy DeCarlos +1695150,Jocelyn Prah +200487,Adam Chambers +101802,Patrick Durham +5131,Diane Salinger +1464771,Koray Sahinbas +1098059,Meghan Stansfield +1183609,Kelly Donohue +106978,Ryan Lloyd +79819,Kristbjörg Kjeld +86610,Normand Daneau +142012,Peter McEnery +143661,Elena Panova +141088,Robert Dunham +1232755,Wil Johnson +114446,Jacob Bertrand +109890,Firat Ayverdi +134746,Sylvie Granotier +115679,Charlotte Riley +1121968,Lucio De Santis +1840035,Leupenga +544616,Aleksandr Pashutin +1280184,Bo Feng +1210980,Nicholas Dallas +1439239,Victoria Sparrevohn +1551424,Lee Min-ji +1603889,Lena Giaka +1784153,Eric Prévot +87283,Suzanna Keller +231064,Allan Olsen +1366237,Nubia Martini +50927,Guillermo Arengo +133387,Tom Eplin +1420248,Joe Bistaveous +24291,Annie Parisse +59284,Desmond Askew +35103,Gaetano Bruno +1592996,Michael Coons +144388,Jean Phillips +1376758,Jean Clark +1865780,David Lorenzo +578038,Mario Santini +1308171,Jeff Hanna +1497112,Radhika Chetan +108940,Kyle Gibson +1342842,Peggy Tseng Pei-Yu +1114242,Gabriela Carrizo +1489833,Pramod Pathak +231596,Sarah-Jane Dias +63677,Maddy Curley +124857,Antti Raivio +1343525,Whitney Goin +131119,Bo Dietl +1025655,Jimmy Chhiu +1583054,Ingvild Deila +1001694,Frank Kessler +29443,Richard Doyle +75542,Reg Cribb +1140556,Gert von Zitzewitz +1305042,Wahid Chan +1781157,Reuben Yabuku +399,Mariola Fuentes +1207886,Melinda Browne +1759089,Wallis Herst +1875172,Kamryn Boyd +1707899,Micheal Resce +72765,Mitchell Nye +117795,Preeya Kalidas +567545,Susú Pecoraro +1895155,Adrian Auld +147639,Thomas Kornmann +1622042,Alice Van Springsteen +20658,Naomi Kawase +235681,Anna Kovalchuk +937286,Danielle Smith +1835159,Michael Maslany +87561,Raj Kapoor +121610,Ritah Parrish +1391874,Kyle T. Cowan +173105,Tamara Prescott +1723995,Caleel Harris +110918,Kirk Krack +552174,Shin Ôtomo +1331816,Liliana Cuomo +1835262,Destiny C. Cole +1272973,Roy James Wilson +72389,Eiji Okuda +99166,Will Blagrove +44469,Karl-Georg Saebisch +1223878,Emily Kinney +223051,Laura Hope Crews +273906,Elspeth March +1117339,Zsuzsa Holl +40944,Charles Hawtrey +1127076,Rio Yamashita +1447890,Gillian Gibbs +118208,Concha Velasco +1228325,Sean O'Neill +942993,Darrell Waltrip +1114528,Sigrún Hjálmtýsdóttir +95368,Cassidy Johnson +81703,Zulay Henao +582673,Antony Hickling +1236,Mark Pellegrino +206726,Nick Holder +1004839,Cindy Lucas +1121927,Elisabetta Fanti +1347175,Kim Eui-sung +397765,Clara Williams +79501,Cristie Schoen +176191,Andrew Havill +231140,Clive Walton +1255,David Mamet +560236,Teri Horváth +35463,Anthony Timpone +581710,Francesco Anniballi +1886326,Callum Lloyd +55531,Adina Cartianu +13970,Dick Purcell +1299344,Jeon Soo-kyung +563099,James Crammond +1367112,Dave Engfer +1398229,Julija Steponaitytė +212484,Steven Ross +1548433,Phillip Simms +59825,Mikey Post +1872252,Miguel Hierro +808068,Nahatai Lekbumrung +1816953,Milton Schneider +37913,Ernst Waldow +1297318,Sydney Mikayla +77637,Antony Sher +1407149,Isaac Heron +1212042,David Ruprecht +7791,Peter Howitt +212218,Mark Saul +1050210,Christian J. Frank +1522373,Natalia Álvarez-Bilbao +1548360,Camille Claris +1803941,Caryl Swift +932265,Paula Dorety +1089888,Pete Dicecco +1426348,Pascal Loison +1487030,Rachel Ann Mullins +111363,Thomas Hedengran +190905,Angela Besharah +1696395,Ceferino Eskizabel +209349,Chad Guerrero +148050,Marguerite Clayton +1427892,Rahul Bhat +185016,Clinton Greyn +1636774,De'Andre Bush +214919,Ed Sullivan +225962,Giulio Brogi +180182,Colton Shires +191009,Mal Jones +64838,Betty Grable +1782606,Phil Alvidrez +1292665,Alan Boyd +32004,Gustav Diessl +1650226,Sergei Martynov +1686099,Serafín García Vázquez +1497328,Nicolas Paquin +95259,Mark Tandy +1470727,Willson Joseph +1849102,Patrick Bouin +38238,Richard Allan +1089573,Alistair Rumble +136417,Steve Rivers +1289600,Gina Gretta +115255,Big Daddy Kane +1307376,Garlic Garcia +1419649,Bridget Megan Clark +1512187,Ronnie Scissom +563642,Dean Armstrong +1395198,Janet Meshad +57278,Kate Beahan +1286897,Lori Jean Wilson +60611,Brandi Alexander +1200241,Tadashi Suganuma +1741928,Gianluca Valente +45423,Kris Swanberg +1113723,Habib Tanvir +976814,Nicky Andrews +1760265,Otto Djauhari +1701516,Jody Mullins +1349744,Ryan Bohan +1229334,Adam Shaw +545539,Véra Flory +1575155,Mary Hon Ma-Lee +1272147,Maathu +586530,Shaun Clark +1153740,Amiel Daemion +130591,Lisa Haydon +61329,Declan Mulvey +262128,Cora Miao +1155553,Ethan Maher +1788069,Thomas Underhill +1111696,Daryl Ray Carliles +213214,Hugo Becker +246007,Kathleen Barry +175081,Savannah Smith Boucher +26667,Philip Sayer +222378,Herbert Schröder +1752449,Enrico Cavallero +1534990,Daniel Feng +1185424,Marklen Kennedy +1147088,Fouad Ghazali +1807465,Emily Mglaya +111217,Pavel Liška +187400,Laura Gordon +134240,Alec Finter +1581037,Soda +1462089,Blue Cheng-Lung Lan +1739700,Rishik Patel +121728,Alvys Maben +1877,Monty Arnold +107727,Ekaterina Vilkova +1646379,Elyes Sabyani +1689985,Michelle Keller +1670754,Ryan Jason Cook +583491,Maxime Gavaudan +1445119,Germán Cabrera +1784726,Matt Fujita +592751,Marie Glory +86654,Austin Butler +107969,Mike Bodnar +579493,Iabe Lapacas +100854,Stan Schwartz +1756778,Alma Noce +1430484,Tom von Heymann +1516593,Lang Yueting +568938,Arne Møller +931388,Ichirô Arishima +1511955,Kevin Abernethy +1528382,Daniel Luke +79489,Leslie Schofield +1748696,Paula Robles +727467,Jon Mack +1394477,Kent Lee +932338,Geneve Rupert +575480,Salvatore Ragusa +1439737,Viktor Frey +115534,Irene Orton +1208130,Valérie Leroy +86400,Arthur V. Johnson +116845,Myron Healey +1549531,Yue Guo +1367909,Kristin McKenzie +1147087,Nehmedo Ibrahim +931642,Michael Gibney +73357,Eleanor Tomlinson +167197,Gigi Bermingham +1270452,Nancy Clarkson +600727,Gil Winfield +584198,Florence Bloch +123703,Steve Warren +1299358,Soo-Ae +1495090,Andrew Saunderson +1808482,Pierre-Benoist Varoclier +1175875,Tadashi Yokouchi +237175,Sou Fujita +1711524,Mary Peyton Stewart +1028459,Vikas Anand +178971,John Siegfried +1716534,Régis Lang +95038,Johanna Braddy +476163,Nasim Pedrad +1319927,Marie Bulte +108831,Gabriel Harrison +1108912,Jimmy Wakely +1692965,Haroldo Guimarães +1487907,Enrique Rivero +100667,Silvia Abascal +1166113,Peter Chang Chi-Long +1128160,Ron Kelly +223536,Wang Wen-Jie +1117517,Steven Bradley +1388654,Shane Stiel +1377399,Chris Osborn +1294150,Li Xinyun +1297820,Božidarka Frajt +1833946,Charles Davis +1281098,Liliana Fioramonti +278141,Yelena Majorova +82816,Trevor Devall +1360002,William Xifaras +83488,Corinne Calvet +1338033,Jason K Wixom +1238032,Michael Magee +1559700,Kathleen Fletcher +1226189,Carolyn Scott +1769809,Elizabeth Ramos +1070303,Václav Halama +544666,Roxane Duran +95157,Donna Michelle +512991,Richard Madden +21675,Jack Conley +1295877,Ankush Bali +1154244,John Paul Ruttan +1266278,Stefano Sabelli +1714434,Christoph Bertram +933267,Ramsay Ross +1790533,Karl Stoeber +1089520,Romy Settbon Moore +993511,István Znamenák +228614,Vincent Sze +1692864,Anna Maria Perego +114711,Tien Shue +84849,Piper Mackenzie Harris +1280827,Lars Hjelm +1363528,Mathieu Spinosi +1753489,Ben Evans +84625,John Lafayette +172873,Dean Redman +28971,Charles Ogle +1903061,Lana Guelero +1188567,Morgan Turner +282916,Ramsey Nasr +1480669,Rylee Fansler +145090,Sylvie Haurie-Aussel +79499,Brett Claywell +1152020,Tishuan Scott +83835,Oksana Fandera +53374,Kitu Gidwani +1162677,Alex Saxon +60674,Alcides Dias +1871508,Pierino Bertone +1234567,Ralph Votrian +1030252,Álex González +1147924,Tio Hardiman +1605321,Virginia Rankin +1459203,Julio Wizuete +102937,Gene Okerlund +53399,Buddy Guy +1519929,Sonya Williams +929106,Beki Diamond +1166314,Luigi Mezzanotte +1367831,Jan Oliver Schroeder +1575867,Ashleigh Craig +121145,Alphonse Mouzon +107320,William Steis +1531737,Aino Haverinen +1161962,Brian Bell +127524,Ludwig Hardt +113734,Erin Cummings +1375431,Lucille Miller +1055236,Dwight Henry +44561,Olivier Pagès +25038,Michel Creton +1253428,Koltai János +138760,Darío Valenzuela +148323,Titta Jokinen +1567105,Larry Rosenthal +148066,Jack Wilson +59437,Thomas Huber +579295,Samuel Bottomley +1029480,Hira Talfrey +992163,Vittoria Meneganti +204755,Nicole Ansari-Cox +1290419,Bryan Herbert +1329366,Tom Hanslmaier +1560228,Jeremy Michael Pereira +1513736,Lynne Alana Delaney +1696908,Emilio Chino Ramirez +1535375,Dylan Penn +929559,Olga Zhiznyeva +1163725,Beth Domann +1798373,Judi Scott +31505,Betty Lou Holland +46313,Alexander Müller +1218228,Ruby Jerins +110850,Chitrangada Singh +190407,William Gaminara +1688077,David McCarrison +15347,Michael Giacchino +94171,Paulie Redding +31153,Paca Gabaldón +129142,Smith Cho +1293960,Ippolita Baldini +1431805,Ana Dela Cruz +1124946,Viji Chandrasekhar +1861708,Joe Attewell +99458,Margaret Irving +1656802,Niina Sillanpää +1177673,Madelyn Deutch +1788166,Quincy Fouse +48480,Stefan Konarske +82144,Matt Jessup +43323,José Luis García Pérez +130836,John Viener +1683831,Abigail Covert +1412934,Renate Stuurman +120429,Bhumika Chawla +1811911,Andrea Montero +1254445,Krasimir Rankov +1406026,Arielle Tuliao +109266,Abigail Halley +146601,Kristina Asmus +1242900,Claudia Morgan +1425461,Cary Woodworth +564826,Gianni Schicchi +78480,Sophie Mounicot +110921,Roger Payne +1389058,Lucie Boujenah +1569355,Ada Philine Stappenbeck +1384989,Tarja Markus +113928,Michael Trevino +559139,Lasse Guldberg Kamper +97311,Joan Wheeler +25652,Hanae Kan +50088,Lotte Ledl +1372554,Suhail Haddad +1580817,Ko Sang-Mi +91671,Colman Domingo +802600,Brendan McFadden +132896,Keila Rodriguez +83356,Jamie Campbell Bower +124402,Masaki Okada +129508,Hisao Dazai +136472,Richard Martin +1214845,Chuck Sklar +1116282,Cortney Palm +226994,Stefan Lampadius +83772,John Batchelor +139451,James Carney +124992,Qin Hailu +1089478,Franziska Arndt +24548,Gô Katô +233114,Geneva Mitchell +1102259,James Cade +76789,Saurabh Shukla +1528495,Nicole Thompson +947574,Julie Berman +1144353,Kyle Harrison Breitkopf +1127661,Anna Dalton +1190646,Natalya Krachkovskaya +87096,George Potts +1462634,Lewis Stringer +1011837,Bjarni Ingvarsson +50038,Josef Griesser +1120230,Mattieu Ettori +1160633,Vinay Forrt +1113300,Carbonel Renzo +97982,William V. Mong +1488354,Kuniko Ashihara +1820237,Leonardo Castillo +1177374,Enrico Papa +1456035,Louka Meliava +1082302,Dylan Postl +115401,Dean Kreyling +84410,Bailey Harkins +1692781,Kat Lindsay +1737094,Maegan Vogel +1112417,Tatanka Means +23265,Jirí Vrstála +1630260,Ron Kidd +147255,Tony Way +1030558,James Kochalka +1283948,Christopher Weite +1184817,C. Thomas Biscardi +1383359,Maeve McGrath +25346,Eva Darlan +1394433,Hiroshi Kasuga +1018982,Audrey P. Scott +1053892,Slobodan Tešić +1415889,Dara Vukić +19354,Sarah Juel Werner +73445,Gérard Hérold +1202531,Julia Lea Wolov +1827257,Rob Bonz +1680203,Vladimir Shiryaev +564825,Letizia Bellocchio +1394467,Mathew Hislop +1761848,Keijo Pennanen +1233674,Patrick S. Harrigan +1140133,Case Prime +63881,Krešimir Mikić +1703701,Zenabh Mahrab +90492,Lynn Shelton +1791283,Sasha Eden +140021,Linda Guzmán +1780280,Roland Hunter +1811552,Pierre Claver Kayitsinga +1168172,Peter Fricke +556851,Tatyana Bedova +1324748,Claire Cordingley +1357562,Gene Morford +55897,Uwe Bohm +131335,Kyle Gatehouse +1232315,Saskia Hampele +1725448,Ian Robinson +145908,Ankie Beilke +1342852,Cham Fung +189377,Anne Tirard +1049460,Rachel Garcia +146677,Derrick Denicola +223337,Camila Amado +1818027,Cherie Thibodeaux +1040530,Cacai Bautista +1626331,Marino Narduzzi +34129,Michael Whalen +1268986,Ben Lloyd-Holmes +80506,Nenad Jezdić +932951,Stan Moore +1362820,Tony Vella +237225,Priya Anand +1676189,Martin Schienle +29076,Joshua Brody +1381492,Michael Scialabba +1871258,Adriana Franceschi +1031102,Paul Haynes +205179,Danny Pudi +127734,Georgina Haig +4830,Eija Vilpas +62443,Dany Verissimo-Petit +1453790,Joseph Izzo +103918,Betty Lawford +120534,Sally Eilers +1212135,Tamyra Gray +1656874,Stuart Nombluez +76611,Stig Henrik Hoff +1573585,Harrison Forsyth +1642637,Jonah Bowling +1034471,Parineeti Chopra +1046903,Caren Pistorius +1041480,Juan Piedrahita +1349729,Hema Bedre +1784727,Benjamin Varda Gillespie +94205,Anthony Jochim +1004584,Vladimir Putin +1100035,Leo Vertunni +78797,Tom Jackson +72890,Loreta Tovar +11849,Rohini Hattangadi +62420,Sibelle Hu +1216393,John Normington +76450,Ameesha Patel +986096,Jasmin Wagner +1263246,Frederick Ko Vert +1619150,Tony Fourmann +1583776,William McKinney +173796,Dat Phan +12013,Krzysztof Komeda +150177,Ralph Graves +1187061,Aaron Saxton +1404652,Laurel Harris +35579,Debbie Rochon +853194,Patrick Leahy +1622086,Chris Greene +1701050,Oh Yeon-ah +271623,Denis Braccini +1028466,Marsha Timothy +96023,Caroline D'Amore +1554977,Jesus Nevarez-Castillo +1182525,Nicola Correia Damude +1860894,Christine Carter +104035,Godfrey Cambridge +101863,Srikanth Chitrao +932356,Aleksandr Nazarov +59114,Jack Finsterer +232049,Merissa Principal +52127,Edward Morrow +30231,Douglas Scott +114473,Dwight McFee +1808633,Ray Crisara +1386307,Heather Materne +52126,Dolores Michaels +37411,Sunnyi Melles +1050350,Brigitte Kali Canales +76825,Vincent Desagnat +1780277,Jaxon Cook +1710416,David Thornton +1622607,Kimberly Howe +96340,Heather North +14408,Matthew Perry +16720,Bernd Stegemann +1427539,Heung Dip +1699684,Harssh A. Singh +124636,Dick Dickinson +16102,Yvonne Craig +111375,Yasuyuki Kase +76945,Ronnie Fox +1353936,Nicole Alonso +576165,Daniel Vincent Gordh +1136940,Lili Reinhart +553135,Lilia Aragón +555063,Rumi +1178678,Gea Martire +1410501,Jason Kirkpatrick +1186922,Luo Lanshan +550955,Lynn Cole +1692070,Tracy Robertson +235383,Malcolm Pearce +35782,Manoj Bajpayee +56347,Clayton Watson +944506,Shirô Mifune +126863,Ivan Okhlobystin +47759,James T. Callahan +71359,Walter Quiroz +1518470,Bill Steven McLean +1697398,Paula Morgan +1127644,Lina Beckmann +1344359,Andre Shanks +1129441,Arturo Anacarino Zarate +1523162,Lisa Howard +559963,Lyudmila Chursina +78427,David Troughton +1144928,Walt Dongo +970213,Abdelghafour Elaaziz +141999,Otto Jespersen +583482,Isabelle Pirès +1790387,Robert LuJane +1544407,Pandora Clifford +213430,Nagineedu +1240390,Rosángela Balbó +1297695,Andrejs Garnavl +168292,Stan Ivar +1137860,Katarzyna Gniewkowska +1359975,Jared Wagner +1031103,Curtis Hyde +1089465,Jana Thies +87865,Carolien Spoor +86231,Shashikala +1175909,Miguel Figueroa +580842,Shanmugarajan +1562092,Rupert Wickham +96758,Anthony Bushell +1796284,Jun Young-sun +1525611,Matthew Uriarte +57492,Morgan Spurlock +93778,Shane Nolan +52483,Rus Blackwell +1415418,Landon Hazel +1039419,Richard C. Parish +1260055,Smaro Stefanidou +122191,Daisuke Gouri +1420247,Kate Rasmussen +103775,Hugh Warden +1296186,Carrie Crowley +1718175,Mya Levels +588611,Krzysztof Czeczot +569211,Kazumi Evans +1049014,Yoshikazu Ebisu +591531,Chris Kirkpatrick +1895788,Trinity Bliss +140419,Jeffrey Quizon +35533,Elsa Schulz Gambard +1420561,Albert D'Arno +1324821,George Sowards +1785921,Kei Miura +1373068,Harry Nestor +1128315,Lauren Alfano +119883,Randy Vasquez +91787,Ashley Rose Orr +229360,Aoi Nakamura +155523,Art Alexakis +74542,Barbara Rush +1477315,Elisabeth Meurer +979614,Rigoberto Ferrera +1073412,Ikang Fawzi +83533,Melanie Marden +1129413,Samuel Davis +148074,Mai Wells +50180,Hendrik Duryn +1210028,Gucken Cederborg +1552436,Austin Amelio +1194434,Ike Jones +146294,Vincent Gale +1872334,Chance Crimin +1563431,Michael Shaeffer +1148961,Robin Gooch +1819132,Jared Jacobsen +1497333,Christopher Tyson +148469,Hiromi Nagasaku +1051406,Dejan Matić +1578447,Tommy Europe +1257289,Reina Triendl +23523,Jürgen Hentsch +1020079,Barbara Kerwin +75541,Lisa Hensley +76008,Max Van Ville +104210,Cristie Whiles +567225,George A. Smathers +556729,Giovanni Ludeno +106448,Ed Fury +85069,Tom Gill +46246,Jan Frycz +1053673,Jack Laskey +1312970,Annie Heise +153409,Gil Frye +1136365,Nicolas Guillot +233747,Theresa Scholze +1157126,Emiri Kato +206036,Tia Robinson +1107227,Ahuti Prasad +1381665,Brittany Susko +175570,Challen Cates +555656,Caleb Michaelson +1221073,Will Merrick +132363,Kudzani Moswela +34871,Nelly Frijda +566950,Wook Heo +1225783,Lindsey Shaw +16943,Joost Siedhoff +1088405,Kate Herriot +953191,Jessica Meyerson +1853102,Andrea Montuschi +142940,Paul Bernard +583737,Vladimir Sychev +230097,John McGarr +1220757,Farah Fath +138471,Carol Forman +212208,Taylor Swift +124716,George Hardy +1560897,Nathalie Walker +1819131,Lawrence Thomas +593049,Collin Galyean +21929,Lin Chen-Chi +1077345,Jennifer Kim +82858,Michale Graves +1075115,Bastien Ughetto +557581,Jeb Pearson +947174,Scott Vandiver +931441,Nottapon Boonprakob +1115097,Gulshan Rana +84705,Janine Venable +38967,Karl Merkatz +111919,Elvira Deatcu +125198,Bujtor István +102524,Rik Sinkeldam +1265182,Keresztes Tamás +1661265,Taylor Kalupa +134629,Ken Uehara +1703906,Topo Wresniwiro +240102,Roberto Alpi +1443485,Colette Whitaker +84760,Nick Gomez +1327651,Vladimir Kuznetsov +1299719,Rufus Wright +1139977,Roland Bryan +140850,Baird Stafford +1819150,Michael Coates +44865,Tom Baker +1277310,Colin Hoult +129577,Roberto Attias +212141,Kristen Harris +1282218,Crystal Santos +584234,Paolo Baroni +1131811,Rob van Vuuren +102451,Michael Ashe +118203,Frank Fay +1103588,Roberto De La Peña +1863914,Daniel Torres +1111851,Danielle Parker +1735539,Josh Elliott +1554764,Ellie Selwood +1544541,Herman Bernhoft +766752,Ann Wilton +1292008,Angela Bishop +139812,David Christo +1497675,Bernie Pock +1637838,Laurent Caron +104037,Larry Gelman +1169893,Meir Golan +24521,David Leisure +91611,Rob Newman +1683140,Letitia Paquette +88710,Ambra Angiolini +1156655,Yōko Kawanami +203526,Rachel O'Meara +115240,Lindsay Pulsipher +81108,Yoshio Harada +1302856,Dana Freitag +1191707,Lee Hwan +1824575,Paloma Coquant +1484673,Elsie Richter +1342695,Satoru Jitsunashi +84556,Celia Ireland +120894,Mark Deklin +119224,Jonas Armstrong +96593,Jesse Rath +128739,Nassim Iazouguen +1267385,Ray William Johnson +1491614,Angela Uyeda +1767219,Tahseen Ghauri +1187347,Peter Nitzsche +1536686,Luis Enriquez +1184421,Hector Diaz +1040012,Knox Manning +1095865,Claudia Ohana +112330,Avrielle Corti +72594,Souhade Temimi +87923,Emma Williams +1285754,Chidi Ajufo +191468,Suzanne Barnes +1408167,Marisa Cody +1288832,Janet Lynn Carey +232311,Siiri Angerkoski +17120,Jung Woo-sung +1172846,Krystle Flaherty +585397,Samuthirakani +1180863,Guilherme Weber +63234,Wendi McLendon-Covey +1452735,Max Morris +37645,Alexia Barlier +1426720,Misa Lommi +1051115,Mary Mercier +64454,Gi Ju-bong +86077,Manisha Koirala +1106347,Deborah Ryan +1643040,Peter Larsdotter +1534954,Brooke Markham +1473132,Timo Wils +120922,Masaya Kikawada +78687,Robert Higden +91276,Heinrich Schweiger +1312420,Mimmo Manfredi +1089489,Cynthia Cosima +935298,Nate Jones +973518,Dylan Schmid +114926,Jontille Gerard +100095,Horst Janson +167145,Hank Rogerson +16950,Pep Munné +1405671,Johannes Jeffries Sørensen +94420,Giovanna Ralli +1771585,Keya Hamilton +212225,Kim Kardashian +1891819,Alessia Zammitti +1506081,José de Freitas +68559,Gary Daniels +1755878,Pete Rockwell +129576,Fabio Traversa +29492,William Rushton +93759,Bryan McGowan +930765,Frank Hayden +134137,Anthony Bate +1269925,Michael Sergio +80019,James A. Woods +1530733,Ryu Jun-yeol +1839708,Simon Bowman +931645,Brye Cooper +1155324,Felipe Luciano +1832102,Nilotpal Dey +1381690,Massimiliano Andrighetto +1528165,Pamela Thomas +1503569,Shehzad Sheikh +101543,Karl Jacob +1514036,Jennifer Pates +1642128,Mark Buck +19575,Jacques Breuer +103187,Helena Pickard +1685664,James Gordon Jennings +1675329,Matthew Stagg +1117095,Keena +1080766,Kristýna Nováková +144853,Karissa Tynes +1807042,Owen Findlay +4555,Franz Hanfstingl +1078035,Andris Keiss +7819,Jacek Klimontko +1435955,Jay Ali +135665,Marc Barbé +1438289,JJ Coker +1805156,Melissa Santiago +1378657,Lili Bordán +1630324,Peter George +57100,Jonas Gruber +1510409,Cris Michelena +1275186,Otar Megvinetukhutsesi +1672446,Kay Kyser Band +223442,Ivana Andrlová +1133027,Eva Link +1418884,Farhad Ayish +1880343,Roberta Carrese +1519570,Daniel Valle +140603,Jeannine Derbez +1466300,Liga Vitina +125944,Ryô Hashizume +1814638,Tracie Filmer +1838548,Sebastian James +1630261,Yoshie Morino +76741,Susan Fitzer +1904615,Vanya Seager +563906,Aurélie Montea +1275258,Jan Rooney +32119,Howard Marion-Crawford +136415,Robert Karshin +143280,Norman Mailer +1795300,Matt Sinnreich +1359316,David Grammer +120459,Barry Macollum +133627,Todd Babcock +133591,Ian Reed Kesler +47150,Dirch Passer +1347310,Jackie Tuttle +1643248,Julie Ann Dawson +1445192,Lasse Handberg +1060183,Héloïse Godet +1057485,Tess Haubrich +147799,Kostas Voutsas +108436,Joel Friedkin +72949,Brigitte Sy +192007,Steve Boergadine +1471639,Muriel Barr +1263404,Bernd Regenauer +110202,Raju Kher +552684,Mireille Leveque +1495344,Billy Wheelan +1412630,Kian O'Grady +1533266,Franc Zalewski +63916,Rodney Eastman +1043186,Angel Aquino +199483,Rebecca Schaeffer +558913,Kent R. Williams +98961,Brice Kennedy +66145,Darius McCrary +932353,Sergey Burunov +1796434,Alexander Peganov +99181,Joanne Boland +5600,Marc Hosemann +100045,Blanche Sweet +1305893,Nathan Lacroix +1508822,Christopher S. Porter +30307,José Torvay +939078,Fred D'Amato +134385,Shunji Natsume +1774116,Markus Grupa +1291807,Peter Rusev +136569,Marek Sawicki +1428020,Kayode Aderupoko +30133,Evelyn Ankers +1321408,Violet Radcliffe +85011,Clare Bowen +87678,Elise Schaap +32335,Mushtaq Khan +1050256,Mazimpaka Kennedy +1525322,Daniel Fearn +224361,Andrew McDonald +32543,Lenny Rose +24398,Jean-Paul Zehnacker +588203,Lia Di Leo +1491975,Jana Ritter +1658178,Paul Nygro +100681,Orchidea de Santis +578848,Alma Rulas +1719075,Christina Grimmie +1206253,Chad Moffitt +44930,Tony Rohr +238704,Yuli Gusman +108855,Matti Mäntylä +208059,Amy Okuda +51739,Adriano Pappalardo +1619185,Natsu Setoguchi +1353677,Norrapat Sakulsong +1095464,János Papp +1075760,Roberto Basilico +158231,Will Wallace +1130128,Emilia Popescu +1894243,Gregory Foreman +1648970,Åsmund Brede Eike +1843632,Richard Allan +158012,Bo Eason +6503,Parvin Dabas +579299,Piers Mettrick +1540300,Catherine Alias +1285756,Rickey Brown +1624636,Nick Bilton +1520757,Herbert C. Walton +229708,Donatella Hecht +29517,Eric Viellard +109844,Byron Barr +1784652,Charlotte Wilson Langley +13716,Carl Bernstein +1506043,Wolfgang Weiser +134117,Diane Fletcher +1644660,Lauren Crawford +1579617,Jordan Schatz +183096,Geof Prysirr +212766,Gillian Zinser +1505913,Varun Grover +287378,Helen Twelvetrees +1149033,Ryouko Shintani +1739821,Joe Virzi +228028,Ingrid Guimarães +931812,Roman Shmakov +228514,Lisette Livingston +24364,Dany Robin +1222986,Daniela Wutte +1742838,Adam Foster +1325962,Daiki Yamashita +1489473,Marina Kartsivadze +1739859,Angelique Sky +42641,Claire Skinner +1173409,Dafydd Havard +136547,Patrick Wolfe +1467094,Evgeny Teterin +1496395,Mary Price Moore +148802,Mayme Kelso +1263764,Luigi D'Acri +32558,Porgy Franssen +1338956,Ciro Miró +1502322,Aaron Quattrocchi +1245226,Lineke Rijxman +1072877,Alfred Rubin Thompson +1210351,Erkki Peltomaa +1438680,Tre Tureaud +51763,Ross Martin +1566964,Franco D'Onofrio +216973,Jason Spisak +1611437,Joe Theuma +1520915,Grégoire Lapiower +84326,Gene Blakely +1058106,Shari Sebbens +1436640,Karel Houska +87377,Shikha Talsania +1545667,Peter Lucas +1024250,Jean-François Boudreau +1326244,Auriel P. Rickard +1647323,Skya Chanadet +1469924,Géraldine Voillat +234925,Shefali Chowdhury +1464673,Paula Blanco +1894271,Franco Tuminelli +84791,Bart Fletcher +1138240,Andrzej Chichłowski +583733,Gia Gogishvili +1310637,Cornel Coman +148144,Sammy Pasha +1872173,James M. Williams +1399367,Tim Purcell +1088117,A.J. Lowenthal +1178497,Li Ching +1704677,Farah Pahlavi +76594,Miley Cyrus +71374,Christian Friedel +1117784,Patrick Walker +1563240,Richard Brody +129620,Ugo Gregoretti +42377,Alexondra Lee +237686,Kamalinee Mukherjee +124870,Onni Tommila +157717,Tom Connolly +38591,Sabrina Siani +1849113,Tahera Benfares-Gueye +1501341,Cheng Yi +1718103,Chadwick Armstrong +1086711,Linda Arvidson +1363396,Mario Jiminez Jr. +2830,Marek Kondrat +102898,Honey Lauren +2294,Robert Rodriguez +137825,Mart Laisk +556853,Valeriy Nosik +1179387,Douglas Ridley +1168940,Nelly Panizza +94419,Carlo Delle Piane +1776047,Evelyne Bouvier +154001,Jermaine Montell +1708558,Henry Duval +1795829,Freya Galpin +1777516,Kimberly Van Luin +1481156,Markita Prescott +1236259,Harry Monty +137905,Bill Skarsgård +1090034,Drew Edwards +80504,Katarina Radivojević +967161,Pepe Ocio +19107,Harry Townes +939593,Kerbey Smith +64542,Benoît Turjman +1493117,Ruby Wendell +84029,Ayako Fujitani +1254331,Sol Rodríguez +22979,Dean Reed +1418992,Ronald Alphonse +1824289,Edward Wolstenholme +1184864,Huguette Hue +1565959,Charles Lincoln +1519925,Robert Dodds +1413677,Anne-Charlotte Sjöberg +1755086,Will Stone +92795,Julianna White +544681,Alban Ivanov +1753261,Tuhoro Ranihera Christie +568088,Mika Kurvinen +27648,Abdelahk Lazali +210515,Antti Virmavirta +128419,Tony Brennero +15596,María Ballesteros +1119771,Joe Jamrog +1621276,Bryan López Vázquez +931908,Kira Golovko +1436408,Xiaoqin Xu +499717,Natalie Dickinson +139543,Audrey Siegel +1528987,Geoff Houtman +143657,Yana Troyanova +1656880,Ple Pised +579437,Marcel Bernier +1394406,Barrie Martin +1812015,Kaoru Mimura +237969,Shaam +1040966,Tyler Hollinger +87677,Petra Laseur +1576960,Françoise Godde +120110,Claudio Boldi +1557632,Elissa Middleton +1055177,Shannon Cooper +1251018,Yoshikazu Nagano +1082124,Ignazio Balsamo +5310,Antonio Gil +591020,Geoffrey Hibbert +1384212,Lori D'Amour Heidt +967625,Blanca Blanco +1073915,Max Ricat +1310503,Maura Foley +224320,Diana Bracho +27656,Peter Birrel +139536,Jacque Fresco +145361,Joseph Y. Kim +586274,Darvas Iván +1561416,Chris Newman +223445,Roman Skamene +1531604,Eric Wilkins +1699514,Alison Trumbull +1661268,David Errigo Jr. +1614451,Amy Hostetler +1105079,Lucas Hedges +616013,Tatyana Stepanova +1089572,Barbara Adair +1064510,Lea Vlastra +1615806,Adrian Gaeta +1660981,David Ross +1865014,Antonio Rucco +1088212,Camelia Zorlescu +44256,Juan Calvo +1356752,Devin Sidell +939081,Jeff Champagne +85691,Vuk Kostić +1114551,Halldór Jónsson +1331811,Alicia Haydée Pennachi +1178367,Kristen Riley +88856,Jani Volanen +83675,Doña Croll +79109,Marita Wilcox +931402,Claire Oddera +1753487,Fred Hayward +584125,Ponnambalam +1496389,Ai Ti +44110,Adriana Asti +150028,Linda Doudaeva +1205906,Michael Wozniak +11288,Robert Pattinson +1684513,David Papava +592931,Ladislav Ondrej +1039453,Frances Fuller +1216901,Cee Lo Green +1872244,Earle A. Armstrong +131992,Gilles Masson +141029,Allan Cavan +1065887,Tom Chatto +1470321,Ariel R. Pacheco +1112459,Cameron R. Murphy +59150,John Keefe +1744095,Emily Ng +110388,Kim Nam-gil +1618040,Jane Wald +1209121,Ruben Brinkman +21860,Michael Bublé +1479148,Yasuhiro Shigenobu +1127650,Richard Alan +138166,Nyree Dawn Porter +229685,Katie Wilson +7482,Julian Schnabel +1316629,Mélanie Fouché +1337236,Peter Harrington +143409,Marianne Löfgren +543940,Betty Stockfeld +1699952,Mimmo & Franco +1795083,Simon Cohen +26452,Ida Krottendorf +1447307,Josie Trinidad +1802974,Christopher J. Keene +980172,Siddharth Daftardar +1275871,Redbad Klijnstra +142289,Jason Maza +108825,Brandon Chang +1457286,Alvin Edney II +34348,Alan Dinehart +1386930,Megan Albertus +553867,Louis Roth +101273,Stephen Quadros +1167389,Sebastian Schultz +115217,Kate Albrecht +1576786,Renate Reinsve +1046145,Steve Terada +35790,Rati Agnihotri +42152,Young-Shin Kim +83148,Roberto De La Madrid +1576045,Anouar Toubali +1660863,Gloria Zoellner +402505,Clément Thomas +1149361,Adam Rocke +230220,Lautaro Delgado +60900,Taylor Kitsch +1044195,Kim Collins +1224543,Julius Sharpe +568084,Henrika Andersson +1647152,Alice Fries +1392200,Rahaman Ali +55920,Charles Gérard +1890686,João Carlos Carpenedo +143130,Ivone Fernandes +25811,Mario Ferrari +1061615,Sohum Shah +963373,Nick Lane +93638,David Charvet +944892,Shûji Sano +1411677,Aicha McKenzie +1513950,Sinan Karabuga +84706,Jarreth J. Merz +111373,Takaya Hashi +1050118,Nebojša Đorđević +1239127,Shingo Hiromori +1263930,Chun Woo-hee +62006,Jim Giggans +1294408,Janet Cresson +55086,Cam Gigandet +128728,Milind Gunaji +1087299,Alveda King +63232,Mary Birdsong +139444,Terrence Hardiman +216099,Oliver Mason +144302,Claudia Bassols +1396222,Märt Pius +1054639,Marie Louise Stheins +178360,Sharon Hugueny +1176194,Johan Sundberg +1028806,Xhiljona Ndoja +72393,Yasushi Nagata +587178,Jacques Lassalle +26519,Dieter Kirchlechner +232399,Ylva Ekblad +1297561,Sunny Pang +1187534,Diego Vegezzi +1144896,Bobby Taylor +5620,Kevin Farley +1196540,Jonathan Goldsmith +1683135,Frank Kennedy +1738897,Svetlana Ageyeva +1027187,Kean Matthams +1293066,Nicolás Valenzuela +1392837,E.R. Ruiz +1726738,Alexandra Rohmig +109318,Finlay Robertson +929553,Lyudmila Khityaeva +136779,Nacho Galindo +1111695,Debbie Williams +1184610,Garry Walberg +1455180,Stefan Buttler +106346,Gigi Reder +137822,Kaisa Karu +47177,Jørgen Langhelle +561869,Amandla Stenberg +65196,Nadine Velazquez +1003801,Ciara Hanna +74756,Beate Bille +1419648,Kyle Donnery +1470039,Jill Pearson +34756,Claire Dodd +125779,Hans Karsenbarg +1088060,Christopher Thompson +1111561,Kimberly Jaraj +1592589,Kristen Williams +58791,Patrick Fabian +1181047,Seiichirô Kameishi +1242472,Dean Paul Martin +77309,Daniel Cohen +62869,Alvin Sanders +1297131,Dagmar Veškrnová-Havlová +1332982,Nick Hendrix +1803813,Andrew Fell +1636784,Melissa Rae Bender +1526009,Anisha Adusumilli +222684,Clara Schønfeld +1394771,Sophia Eraklis +95233,Peter Murnik +1158102,Sven Boräng +7962,Lou Romano +1886450,Quimet Pla +3901,Richard Brake +1002306,Rob Steinberg +58601,Kazue Fukiishi +105872,Salman Shahid +1227552,William Stanford Davis +94954,Katie Chonacas +78994,Sergio Peris-Mencheta +152995,Troy Fromin +246914,Ethel Shutta +232104,Kathleen Hanna +27748,"James A. Watson, Jr" +1784645,Tenley Dene +966240,Lydia Hyslop +1359710,David Wilson Page +144325,Simona Stašová +1118307,Svetlana Korkoshko +1583944,Katarzyna Z. Michalska +42185,Michael Woods +81869,Katrina Kaif +256062,Mireia Ros +1760940,Jordan Williams Jr. +146023,Jeff Portell +1189528,Romualds Ancāns +1347816,Charles Harris +939113,Niansong Jing +90210,José Celso Martinez Corrêa +1293753,Edy Ganem +1489351,Elizabeth Greer +24702,Norman Bowler +1064443,Sally Rand +1280064,Sam Althuizen +1651109,Divine Brown +589131,John Bolen +592961,Semyon Svashenko +1107769,Keinosuke Okamoto +76862,Germano Haiut +125195,Attila Nagy +1613030,Peter Joshua Hull +162398,Tony Slattery +51428,Emilio Laguna +1388471,Nick Williams +1187374,Bongo Mbutuma +1408727,Harold Hightower +1589831,Mack Williams +1302197,Wendy McColm +85722,Prabhu Ganesan +1467124,Amanda Foster +1312816,Marika Krevata +1689288,JaQuinley Kerr +58665,Shingo Tsurumi +1053880,Ratko Miletić +101721,Andrew Crawford +1880150,D.J. Hapa +147117,Arthur Q. Bryan +940996,Gloria Mayo +139618,Jakob Davies +1650328,James Garrigan +1208799,Gloria Montoya +1248650,Mimoun Ouled Radi +1436283,Teng Zhou +1128902,Camille Rowe +175608,Guy Williams +1485764,Itala Békés +1055759,Kazuyuki Asano +1672381,Emilio Palame +1796395,Sebastian Naskrent +1504934,Bentley Kalu +134295,Zeko Nakamura +1408696,Grace Maxwell +1145327,Silverio Blasi +1858370,Thomas Cadrot +551781,Ichirô Zaitsu +1561376,Brandon Bautista +1349727,Brenda Storer +1781965,Sharlene Grover +1785090,Sheng Wang +1106112,John Cromwell +1138242,Bronisław Wrocławski +1050848,Andrija Kuzmanović +110553,Amos Crawley +1283046,Jason Riggins +1152881,Priscilla Rozenbaum +1749081,Giustina Buonomo +1216367,Robert Gillespie +61963,Danny Mastrogiorgio +211236,Edwin Jonker +33549,Renato Baldini +1283583,Karolina Rahm +107722,Grigoriy Dobrygin +134079,Durward Allen +86745,Anatoli Kubatsky +87236,Wiesław Michnikowski +1464254,Tom Davis +571446,Mumtaz Ener +88461,Nana Bryant +1496073,Daryl Wilcher +1347128,Kara Lily Hayworth +1577107,Justin Saulnier +1694295,Etienne Halsdorf +1449314,Ken'ichi Miyajima +1204484,Mike Gerschefski +24247,Patrick Poletti +110938,Marion Marshall +1665011,Lotte Spring Rice +560189,Kami Hiraiwa +1606719,Ye Juan-Juan +2681,Erik Knudsen +586629,Rao Ramesh +1232540,Al Thompson +129038,Nance O'Neil +46004,Yumiko Shaku +1814491,Chris Lindsay +1681740,Gregory Perri +232201,Fernando Spengler +1052246,Özay Fecht +1722430,Cameron Brodeur +1147113,Michael Peterson +84902,Rocco Passafaro +1195287,David Almeida +446189,Baya Belal +544572,Tomás Blanco +1248292,Vicki Pepperdine +146434,Cezary Kosinski +232888,Annabella Schiavone +1368829,Bram Hoover +141093,Linda Hardisty +1559622,Steve Parvin +211012,Camilla Siegertsz +1564295,Joanna Jedrejek +211006,Tanja Jess +124401,Mao Inoue +15950,BarBara Luna +1458844,Uchenna Onuaguluchi +1564445,Amber Alexander +1394333,Dilyana Bouklieva +120553,Renny McEvoy +489467,Jack Gleeson +1566393,Karyn Michelle Baltzer +74571,Regine Nehy +240,Stanley Kubrick +1049226,Richard Banks +76535,Lance Lanfear +816712,Megan Van Kerro +1662555,Stephen Lin +1141398,Carlos Santos +1657458,Helen Stern +222326,Aake Kalliala +1334999,Kazuki Tsujimoto +1385097,Sean Cronin +1439649,Ali Kahn +1396383,Héctor Cantolla +78414,Robert Neary +1200356,Phil Miler +213617,Gustavo Falcão +225140,Maurizio Nichetti +1122661,Steffanie Sampson +1293888,Shelley Delaney +591209,Morten Holst +21111,John F. Kennedy +73488,Loredana Romito +1443760,Sebastian Vettel +1281378,Megan Boyle +232598,Roots Manuva +144577,Justine Cotsonas +1462944,Maria Kawamura +224488,Ivan Makarevich +1151368,Eduardo Manzano +111740,Jack Grimes +1105513,Lotti Törnros +237348,Tommy Ray Harner +1007391,Tiren Jhames +121400,Charles Russell +929605,Veeni Paranjape Joglekar +1519314,Haas Manning +1047199,Božidar Pavićević 'Longa' +1098562,Matt Angel +1193969,Rodrigo Cachero +549555,Sergei Nasibov +146412,Milica Govich +96429,Diego Peretti +225446,Jodi Sta. Maria +219378,Steve Nallon +1567895,Luman Coad +111058,Nikola Đuričko +1314865,Timo Tuominen +128417,Marcello Magnelli +1706348,Bassam Shazali +130114,M. S. Bhaskar +1687934,Myles Keogh +554500,Yayoi Tanaka +1678887,Jennifer Worthington +240098,Bryant Weeks +1546660,Nevaina Graves Rhodes +1247091,Rupak Ginn +25432,Winnie Böwe +8309,Kierston Wareing +44587,Rusty Taylor +93944,Paula Raymond +1835583,Reginald Ofodile +1901690,Concetta Cilona +1871601,Andrea Azzarito +1666944,Víctor Manuel Moreno +22930,Herbert Köfer +1374130,Barton Bund +1319780,Cynthia Litzenburger +1572579,Ben Getz +81581,Tom Konkle +223013,John Deignan +988413,Peggy Matheson +1860407,Sue Dall +148837,Doris Kenyon +119414,Jonathan Ryland +10139,Leni Riefenstahl +1172838,Kathryn Wissell +1776839,Cj Strong +226191,Wenche Medbøe +1040906,Juliana Schalch +234640,Frank McGlynn Jr. +573779,Tamara Donà +131368,Thé Anh +14439,Malcolm Waite +1871602,Daniela Basile +1181228,Elda Peralta +142115,Kiana Madeira +1683131,Fermin Garcia +1034609,Eleazar Reygadas +1071133,David Nellist +1600857,Людмила Власова +104082,Gernot Möhner +1271014,Bryan Salspaugh +97643,Rosanna Yanni +33850,Erin Gray +1549116,Erik Thirsk +11861,Dalip Tahil +35134,Dominique Laffin +42532,Anya Longwell +1087514,Jesse Malin +231547,Chris Zylka +235065,Yevgeniya Kryukova +568681,Ulla Sjöblom +6079,Ivan Shvedoff +1509235,Mark Burdick +592421,Eva Fritjofson +1299479,Lee Jin-wook +1319836,Sampath Ram +1069764,Ingjerd Egeberg +437742,Teun Kuilboer +1195282,Rui Luís +90033,Aly Michalka +282200,Renata Fronzi +1539026,Bobbi Kristina Brown +82140,Craig Blair +32512,Jean-Louis Coulloc'h +1850838,Tobias Beer +115495,Kate Yeung +46624,Atsuro Watabe +1424440,Miki Peric +1102269,Juan Carlos Arreguin +1206372,Maari +1881185,Conny Mews +1167492,Simona Williams +131423,Hans Marrero +579195,Preben Østerfelt +222767,Laxmikant Berde +221727,James D. Rolfe +557239,Esther Campbell +942080,Patricia Manterola +1535048,Wassim Hawat +232499,Harry Shum Jr. +1133987,Chamanun Wanwinwatsara +1103483,Stefany Mathias +1313141,Richard Hackel +1650301,Trevante Rhodes +990513,Richard Brancatisano +590881,Patricio Ossa +230675,Juan Torres +90408,Chris Anderson +1158271,Romy Haag +1082313,Cedella Marley +1039416,Chris Kroesen +1805149,Ramona Schwalbach +1668698,John Carlyle +80190,Jamie Ferenczi +933577,Tiffani Elise Edwards +1353908,Joanna Gaskell +114668,Simone Bargetze +116972,Graeme Duffy +930251,Lam Fai-Wong +1683942,Justyn Shippelt +1091491,Hughie Mack +1753143,Amor Flores +1245104,Lee Min-ho +1107942,Laura Paredes +141041,Rich Ceraulo +1093956,Encarni Manfredi +1796124,Ross Harland +79911,Jennifer Mercein +244558,Yuzo Hayakawa +119544,Jerry Fletcher +156358,Oliver Haden +1142959,Marcin Czarnik +57361,Diana Amft +1849108,Mathieu Félix +1692963,Frank Menezes +63751,Celine Engebrigtsen +1404450,Milynn Sarley +1754992,Massimiliano Belsito +96517,Boris Shcherbakov +1589682,James Hamilton +928832,Rachel Thomas +140901,Maria Pechukas +1221954,Josephine D'Arby +1469573,Amelia Stone +27514,Shecky Greene +110979,Ljubomir Bandović +73358,Tommy Bastow +1032948,Fuyukichi Maki +1021608,Núria Trifol +1445121,Mariano Caligaris +230726,Clark Heathcliffe Brolly +106370,Jeff Bowser +1807178,Jonathan Avigdori +123012,Barbara Loden +99918,Tate Steinsiek +555955,Rieko Miura +234984,Thomas McDonell +1191830,Renata Mašková +1463061,Fabrício Belsoff +1325716,Ilana Glazer +1841497,Hannah Dillon +110531,Shanola Hampton +1352109,Emmi Jurkka +1563451,Ankica Beninova +1251914,Bill Turnbull +121529,Léa Seydoux +109548,Gabriella Di Labio +32563,Giovanni Capalbo +1443755,Jan Nilsson +1286529,Hayley Gripp +91785,Aaron Spann +154019,Joey Wilcots +1397360,Hudson Yang +1265848,Constance Broge +37839,Teresa Gimpera +1171003,Fergal Philips +96591,Romano Orzari +1281092,Roberto Alessandri +1180694,Michael Swaim +1214517,Joseph Millson +137463,Joe Vaz +1372694,Umit Ulgen +1331695,Nirut Sutchart +1876862,Enrique Gómez +1045271,Tad Alexander +1200669,Katharine King +146475,Jessica Delong +1154152,Ole Romsdal +1135890,Yasuhisa Furuhara +1272876,Manuela Baldovino +107521,Muzaffer Özdemir +149873,Botum Dupuis +38172,Raoul Delfosse +129594,Vito Cicchetti +64416,Lukács Bicskey +11256,Johannes Herrschmann +1273859,Sam Slater +85718,Allen Leech +1429732,Terry La Franconi +13423,Matt Roe +1127394,Giulia Pittaluga +1314278,Keith Chanter +1192364,Mārcis Maņjakovs +1891490,Ronda Belser +1717262,Vidya Fellon Sreenivasan +1267679,Kumiko Tsuchiya +1449065,Emma Frances Burge +1606268,Antonia Carmi +1232067,Clare Calbraith +225100,Ellen Rocche +1335335,Devipriya +1846446,Olga Elmanova +1259586,Berat Yenilmez +1120450,Joanna Majstrak +84197,Zahary Baharov +96177,Linda Hayden +72320,Xavier Beauvois +1064131,Rajendran +91356,Kristopher Turner +159614,Sharlene Martin +50747,Antonio Marsina +1553391,David Leestma +1711950,Victor Esteves +560277,Isabel Abreu +167245,Amanda Aardsma +1250527,Rainbow Harvest +1411601,Katie Sarife +997610,Jim Harris +1521173,Lidia Franco +1063322,Goyo Jiménez +1613035,Brad Johnson +76534,Otto Michael Penzato +1351406,Ezatallah Ramezanifar +184868,Ian Black +122908,Beatrice Varley +930993,Brady Reiter +125064,Ramón Salazar +1845734,Jamie Robinson +1329900,Dell C. Payne +1216129,Erik Audé +1374213,Erzhan Besikbasow +134206,The Greg Wilson +588763,Jitka Novákova +562161,Mônica Martelli +1695988,Sandra Love Aldridge +1332993,Chali Pala +16288,Lee Mi-sook +1779008,Alessandro Mannarino +1325034,Sora Amamiya +95149,Danton Mello +1181314,Ginger Gonzaga +97193,Eva Holubová +239449,Kenji Usuda +81663,Vanessa Marshall +932577,Dagmar Altrichter +1446305,Katrin Heß +1759674,Isabella Sanchez +44977,Valeria Sabel +1173033,Samuela Sardo +136150,Jorge Mistral +100997,Eithne Dunne +1656900,Jaruwat Thongboran +1424193,Melissa Maria Gonzalez +1024396,Kim Sung-kyun +1188195,Taylor Schwencke +128579,Robert Moniot +16413,Brother Theodore +1438896,Benj Daddario +1498700,William Mark McCullough +77349,Şener Şen +1763918,Gengen He +1503544,Lucas Hamming +95691,Kelly Keaton +1186617,Jitka Schneiderová +1146047,Cesc Casanovas +1167116,David Zaugh +1822972,Thomas Wehling +48228,Harry Hardt +563102,Peter Sturgess +1438307,Gerard 'Jerry' Lewis +32627,Dudukhana Tserodze +38101,Klaus Dahlen +1033150,Beena Banerjee +1291292,Thomas G. Lingham +86892,Supriya Pathak +1380098,J. Alan Nelson +1703452,Ed Powers +1577600,Orly Benyar +1475774,Marc Senior +1670753,Gregory Paul Valdez +1504596,Francis B. Goldberg +1502900,Bryan Chojnowski +1481499,Sergio Ávila +1868695,Rick Kincaid +150125,Ju Ji-hoon +35538,Ralf Knicker +1164767,Matt Stuertz +1085653,Mike DiGiacinto +1717261,Elisabeth Clark +76700,Brianna Buckmaster +592832,Bertram Grassby +1547786,Anna Stiborová +936702,Wini Shaw +1751570,Renata Guida +6142,Erno Müller +86251,Ravi Kale +1833303,Christopher Gardner +1591367,Oh Jong-hyuk +1402407,Teréz Bod +86170,Audrey Wasilewski +1661203,Bholanath Koyal +1611253,Truus de Boer +33719,Harald Leipnitz +58512,Steve Tom +556454,Marcello Martana +86367,Brenda Sykes +1190213,Shi Xiao-Hong +1569924,Jovdat Shukurov +220587,Melanie Walters +1487245,Einar Kuusk +77622,Catherine Lough Haggquist +62549,Peter Hansen +116838,Betsy Drake +1010101,Toshi +1194043,Stefanie von Poser +150899,AngelaBaby +110903,Ilmur Kristjánsdóttir +229276,Shaad Randhawa +1001016,Hilda Barry +1655886,Katrina E. Perkins +1427456,Ryan Bobkin +1422263,Emma Willis +1687265,Allegra Leguizamo +1750192,Morcsányi Géza +1700877,Tora Khasgir +36217,Mira Furlan +1445123,Adrian Garvano +112308,Danuta Stenka +1878926,Tamar Shem Or +1282652,Val Tasso +1523041,Marco Rollot +234812,Smaragda Karydi +84272,Walker Howard +1776760,Delwin Neo +1743520,Mairead Armstrong +210128,Jon Briddell +1207915,Natalie Olanick +1496324,Mehmet Cerrahoglu +77525,Charlotte Munck +1801195,Nicole Hamilton +1289503,Vadim Samoylov +1270718,Michael Lovan +1263640,Michael Buice +1288831,Sadarias Harrell +1402411,Tony Pritchard +38450,Stéphan Guérin-Tillié +1885528,Rolando De Santis +1839575,Kai Gahnström +228886,Julien Haurant +1277223,Nozomi Linus Kaisar +1398215,Justin Valles +1426196,Lucas Bond +1605200,Gennaro Di Biase +1098601,Gen Hoshino +1211746,Ia Langhammer +1371440,Avery Phillips +1042811,Garth Breytenbach +1392140,Annie Murphy +1285394,Javier Butler +238099,May Loo +26717,David Haig +58963,Josh Henderson +1848655,Luca Pougy +63078,Ian Virgo +90402,Michelle Brezinski +240540,Svetlana Kryuchkova +1121635,Rebecca Dayan +238755,Irene Azuela +1884492,Vladimir Houbart +137069,Egidio Termine +476866,Allie Gonino +1036319,Robert Hunter +1158500,Rotem Keinan +1106088,Susan Robinson +1077806,Matthew J. Walters +200920,Amber Marshall +1709639,Eric Lane +1438911,Emily Crew +563113,William Roth +61857,Joseph Steven Yang +1611554,Jack Briggs +153392,Tom Greenway +927862,Tamela Song +1189337,José Victor +93820,Reagan Gomez-Preston +1650316,Jennah Love Montalvo +108472,Jenni Banerjee +1461572,Annalisa Aglioti +1727209,Gui Adorno +173391,Kelson Henderson +1695971,Debbie Stabenow +1496909,Milivoj Beader +85456,Mahesh Manjrekar +1668056,Xing Xing Cheng +58957,Crista Flanagan +37195,Aldo Nicodemi +55353,John Hand +1440522,Lv Ziying +1056326,Miyuki Tanigawa +101542,Ti West +1522262,Tatsujiro Oto +1405669,Astrid Juncher-Benzon +106551,Olive Blakeney +1151733,Lennart Bär +1543640,Kabir Duhan Singh +57350,Donovan Scott +1581983,Daniel Gómez +1127665,Sam L. Landman +98783,Eleonora Morana +1470853,Karel Vána +1439516,Marvel Chow +85429,Melissa Lyons +1404603,Christophe Meynet +66584,Liddy Holloway +1759666,Chassidy Cox +1084537,Derek Savage +1496440,Mari Sofie Andreassen +1028488,Carolina Barret +1401457,Matías Prats +1365573,Raúl Dávila +147771,Heikki Kinnunen +1195993,Vickie Lester +75340,Todd Bridges +1630308,Tiffany Cole +29594,Leslie Austin +237859,Joris Ivens +1398169,Teya Wild +1193393,Tatsuo Terashima +1848652,Laila Coelho +1606982,Nicki Bluhm +1466175,Korey Jackson +40960,Jon Pertwee +81332,Andy Rodoreda +194925,Frank Fox +1415871,Jean St. Clair +240566,Aleksandr Kalyagin +1629923,Brenna McDonough +1129802,Larisa Kalpokaitė +1729393,Jamie Flatters +86132,Claire Holt +176048,Basil Harris +5969,Ida Galli +222374,Martina Janßen +45316,Joe Perrin +1683141,Alberto Piña +113904,Julianne Grossman +1325622,Remo Fernandes +1200854,Samantha White +94570,Christopher B. Duncan +225187,Şebnem Sönmez +1436150,Chao Hsu Lin +138003,John Tillinger +563110,Don Brennan +1152011,Matthew J. McCarthy +1444692,Josefine Højbjerg Bitsch +1891511,Rj Clay +1758545,Kailas Pondongnok +54922,Nicolas Briançon +1600868,Masaya Kintaka +224871,Olivia Molina +587622,Daniela Stoyanovich +11685,Ondřej Vetchý +549320,Louise Harris +223038,Alessandra Agosti +618696,Mohan Choti +129097,Aaron Woodley +1138905,Beata Kawka +1129506,Victor Boichev +85236,Paul Rust +47932,David Hunt +24798,Georges Beller +1704655,Sylvia Grace Crim +1070665,Sandro Ruffini +1457429,Loa Ek +86503,Anang Desai +238212,Georges Kern +1678944,Pepita James +1347239,Victor Ortiz +1750194,Alexandra Borbély +82126,Jeff Prewett +1461065,Pyotr Masokha +1719719,Shahadi Wright +1459813,Juan Dippenaar +1872358,Shylo Sharity +1103651,Michael B. Allen +1789157,Luke Custer +86878,Mikhail Kozyrev +1399615,Bob Reichert +583938,Arun Vijay +589356,Amit Zen +58983,Steve LiGambi +111195,Jamie Harris +54041,Paul Hipp +14427,Frank Ashmore +150794,Nikita Tyunin +1221455,Al Hodge +1404645,Ashley Sommers +108076,Rod La Rocque +1495839,Jojo Saguin +110775,Sirpa Taivainen +109667,Ilia Volok +1221038,Siwan Morris +1661770,Elizabeth Morris +1272879,Gary Boyd +569794,Nathan McLeod +1723618,Ruby Stokes +106194,Mark Redfield +1448206,Tony Paul West +227073,Laura Pamplona +228968,Emun Elliott +1764152,Maria Matthews +45501,John Alderman +6787,Adolfo Lastretti +80753,Tsuyoshi Kusanagi +1182547,Marco Morales +59032,Isabelle Candelier +34202,Matt Lanter +42930,Anna Brüggemann +1092702,Zalán Makranczi +1249400,Thomas Gimbel +176358,Pamela Bowen +1302052,Raúl Martin +1070447,Toshimitsu Okawa +137325,Vera Filatova +1252824,Vasilis Andreopoulos +1456660,J. Bernard Calloway +5494,Gary Jones +1267377,Leanna Spear +1589655,Sarah de Freitas +1561289,Yumiko Hioki +137228,John Jones +1448783,Kai Greene +1391447,Zhang Zixuan +1281097,Fernanda Dell'Acqua +43905,Colleen Wheeler +1338747,Aniket Vishwasrao +222818,Jiří Fero Burda +583714,Jenae Altschwager +1903058,Aleta Gomes Vieira +1537747,Joe Lafferty +1076595,Fabrizio Falco +1064071,Ivanno Jeremiah +1139466,Christina Landshamer +1481440,Daniel Stisen +138623,Sue Saad +1489532,Barbara Pesante +1655618,Tim Perez +550741,Ivan Kupreyenko +216819,Amelia Crowley +82615,Maxine Cooper +1050083,Duško Mazalica +1066311,Krystyna Ahlers +120686,John Mellencamp +1153574,Arūnas Sakalauskas +586547,Eric Duncan +86848,Artyom Karapetyan +1450431,Vanessa Mizzone +1184965,Ben Uttley +220496,Alfonso Herrera +102908,Meral Zeren +1504458,Kiko-Ray Clerkin +156780,Julia Whelan +66107,John Murray +1647916,Dmitriy Groshev +104341,Leslie Hunt +131546,Thomas Mitchell +141759,Ana María Castel +131253,Kathryn Michelle +1217648,Chris Diamantopoulos +130714,Catarina Wallenstein +1123198,Terence Crawford +1024393,Kyôko Tôyama +1036781,Bigote Arrocet +562226,Vishwajeet Pradhan +113311,Ruby Lin +1784725,Andrew Escobedo +1016119,Tim Key +4109,Michael Curtiz +103898,Jeffrey D. Sams +209680,Frederic Doss +8343,Ron Gabriel +203639,Elfina Luk +1785931,Rachel Emma Slack +1194227,Dori Dorika +238311,Galina Kashkovskaya +1093852,Luisa Morandini +1554064,Judd Wild +1479516,Pat Buchanan +163784,Seth Barrish +1151397,Sharada +1662626,Jon Pareles +235783,Rick Popko +574107,Brooke Carpenter +54690,Akira Kamiya +86015,Lakshmi +122539,Ivan Urgant +1599277,Derek Horsham +1381509,Kada-Abd-el-Kader +1002057,Hugh Prosser +929943,Zehra Leverman +89615,Bud Jamison +99346,Stephen Roberts +1089388,Nicholas Jacob +1058011,Terri Doty +927860,The Weiner Family +1509228,Michael J Long +1451679,Kaori Ito +206334,Scott Krinsky +15644,Karen Steele +1648751,Ripley Sobo +1507603,Ina Geraldine Guy +91606,Tom Hiddleston +1842090,Mandy Pursley +555903,Everett Brown +1668754,Øystein Røger +1164340,Salwa Mohamed Ali +1754135,Nico David +1523859,Andrew Gallacher +1006784,Sinan Akkuş +135677,Helmut Zerlett +33527,Adam Beach +164222,Freddie Roman +990388,Rossy Mendoza +108918,Brianne Berkson +1455231,Ryu Hwa-Young +117891,Martin Thompson +1835162,Madison Dewalt +134611,Donovan Cerminara +1739528,Robert Wark +1400906,Christopher Scarabosio +945403,David Earnest +591520,Paul Verhoeven +1470403,Jenny Raven +1039423,Blanche Mickelson +1310403,Baiju V K +1725464,Gary Lavard +222267,Shweta Kumar +1070347,Ebizo Ichikawa +1486084,Ralph Jesser +1360911,Sabit Kurmanbekov +1196562,Ole Larsen +1175501,Kendra Anderson +99302,Aleksandr Zbruev +1167893,Michael Flood +1413680,Laila Novak +1319817,Saphia Azzeddine +1834752,Julie Lynn-Mortensen +1123087,Roselyne Geslot +59612,Morjana Alaoui +1776043,Brigitte Rosset +60423,Titus-Gabriel Patrascu +151111,H. R. Britton +1606823,Todd Nolf +588204,Marcel Raine +21979,Salvador Espinoza +1675544,Warflum Begiches +1482945,Elizabeth Mazev +86641,Geraldine Brooks +13660,Joseph Whipp +115433,Russell Hodgkinson +1295282,Johnny Sequoyah +1302829,Tish Rayburn- Miller +1209046,Amit Shah +134534,Elena Callegari +1127872,Jane Longhurst +120653,Valentino Picone +1366696,Emanuel Fappas +1371594,Pang Chi-Ching +1185943,Rishi Deshpande +142183,Koleman Stinger +85955,Emma Lahana +83211,Tasha Simms +1481497,Juan Manuel Molina +1628107,Hunter Denoyelles +550319,Katia Gomez +933083,Tung Li +105444,Sadashiv Amrapurkar +1039418,Darlene Lohnes +148019,Kari-Pekka Toivonen +1194703,Susan T. Travers +1603930,Vladimir Kostin +1232114,Jim Raymond +1643037,Viva Ostervall +1169490,Marie-Christine Hervy +1283043,Eric Steinig +1746875,Tone Trump +1646454,Genevieve Sirois +134493,Christian Weinberger +1654004,Danny Winn +85228,Gheorghe Dinică +1037370,Emily D. Haley +1351920,Christian Kirste +1527552,Agnieszka Żulewska +94815,Louie Psihoyos +44411,Olivier Mathot +74360,Tabitha St. Germain +119755,Fred Keating +228885,Arthur Peyret +1195214,Erwin Kalser +87674,Karina Smulders +24326,Anne Randall +89461,J.J. Johnston +1719897,Nancy Dregan +992978,Emilio Disi +566108,Aleksandra Hamkało +1907142,Younes Benzakour +1187312,Delpaneaux Wills +1732769,Deniz Erkanat +1120644,Yotam Ishay +1565616,Medha Manjrekar +558924,Frankie Jonas +125909,Jay Hindle +144593,Chloe Lattanzi +182728,Nancy Bell +983999,Candace Marie +84335,Joe Lynch +1251544,Shuuhei Sakaguchi +128679,Knifewing Segura +92304,William Touil +222066,Ulf Kvensler +1444297,Edith Posca +228351,Friedrich Braun +1828321,Paula Fritze +110223,Sarika +564876,MC Hammer +928009,Jonatan S. Wächter +105056,Edie Sedgwick +1367129,Cyd Strittmatter +148735,Benjamin Kasulke +1224042,Ric Drasin +1153704,Gabriele Caprio +578503,Roland Neunreuther +99567,Sandra Mozarowsky +1622943,Cheung King-Wa +129113,Alice Croci +147429,Jean Richard +566081,Claire Bodson +1122429,Barbara Roland +1323,Richard Taylor +130218,Billy McClain +1563622,Alex W. du Prel +23799,Uwe Boll +1108733,David Gere +1484153,Alice Jubert +1113724,Marcus Lucas +47837,Pavel Landovský +1285064,Pat Hartigan +106659,Tanja Lorentzon +1207363,Andrew Johnston +1599259,Phillip Law +147742,Ari Mäkinen +1448863,Eric Wood +1714701,Joe Williams +973998,Ursula Parker +163326,John Frederick +1536685,Jamie Eng +1088913,Christopher Obi +1332485,Sebastien Vandenberghe +1769816,Cindy Gold +210877,Isabella Acres +1252763,Hikaru Ijyuin +590990,Boris Quercia +87955,Kuma +1166366,Roger Maris +983506,Christian Patrick +184842,Rob Hayter +931172,Chen Jianbin +1007636,Rodolfo Bigotti +1412940,Kira Wilkinson +1067953,Ona Casamiquela +1512431,Lautaro Vilo +1175671,Peter Shupenes +1844343,Michael Freeman +1257900,Kim Ian +1629875,Jouni Tapiola +1018945,Fumi Nikaido +1418482,Shu Yaoxuan +119479,Tony Calabretta +139447,Gabi Amrani +1797596,Abby Leigh Huffstetler +51930,Wade Williams +238163,Theodór Júlíusson +227567,Frey Ranaldo +170835,Steve Callaghan +1485262,Mario Cecchi +1210545,Douangmany Soliphanh +549545,Evgeniy Redko +1518300,Rose Wallerstein +81364,Olivia Munn +1180093,Bukky Ajayi +1566915,David Coussins +24771,Monique Mélinand +1080034,Bill Hutchens +1863665,Tokunbo Joshua Olumide +123404,John McNamara +239941,Manuela Ungaro +1689263,Rachel Heller +96039,Justin Tully +157336,Martin Walker +106746,Eb Lottimer +1438898,Samantha Harper +1562503,Elizabeth McLaughlin +101103,Reginald Price Anderson +94112,Clinton Sundberg +543140,Yasmin Lee +588068,Ji-hyeon Kim +228791,Tony Cooper +143134,Artur Rodrigues +1399273,Tammy Gillis +1440857,Katherine Macanufo +1401456,Joaquín Escola +162541,Bonnie Dennison +1496263,Paul McCole +219130,Arthur Howard +222820,Petr Ctvrtnícek +100662,Karina Bacchi +1897662,Oscar Genovese +18889,Mic Rodgers +1803311,Susie Yip +1277016,Denise Glass +1878968,Elia Schilton +1872176,Glenn T. Rabago +587901,Evita Muñoz +25451,Spencer Wilding +1041739,Iwona Bielska +97581,Oliver Lee +73071,Barbro Enberg +1348957,Ian Nelson +1255487,Tsubasa Honda +1336599,Radha Bai +1230955,Paolo Ballesteros +1171827,Maria Laird +1648795,Paul Oberle +1689172,Leandro Soares +1186540,أمل رزق +86725,Andrey Krasko +1042765,Arturo Valls +1224115,Blake Jenner +1418959,Victoria Hawley +1043265,Milivoje Mića Tomić +1055703,Janiece Stamper +239420,Frank Dae +1643334,Vincent Parisi +56604,Hendrik von Bültzingslöwen +583229,Allison Latta +1286794,Cori Gonzalez-Macuer +29072,David Henry +6674,Julia Dietze +82558,Charles Farrell +1176984,Игорь Бочкин +85287,Tomiko Suzuki +1664704,Enrique Carrillo +1433384,Patrick Bricard +1414711,Gruffudd Glyn +1031218,Maurizio Aiello +1056322,Patrizia Gori +1093246,Björn Thors +49444,Hanspeter Müller +1282189,Wes Deitrick +1396124,Sosie Bacon +132895,Rosa Amelia López +16158,Susan Arnold +1061514,Alex O'Dogherty +205053,Jared Keeso +1372553,Souad Massi +1777793,Cassandra M. Bellantoni +2598,Sophie Okonedo +235658,Anny Romand +141838,Irina Maleeva +932463,Lillian Rich +202427,Daphne Heard +1178559,James Lafazanos +44212,Helena Vondráčková +81467,Gilles Renaud +591298,Jerzy Block +1189071,Edmund Lupinski +1865130,Angela Masini +1452045,Ben Hardy +572299,Mikael Bertelsen +88888,Peggy Webber +1382334,Juan María Segues +1505815,Brian Mganga +585112,Sankaradi +1200923,Hsia Yu-chiao +1871536,Boris Ostan +1090688,Paul Natonek +238524,Fyodor Dobronravov +1521370,Ty Fanning +1088057,James Aspden +139689,Kenneth Hendel +62784,Billy Slaughter +1863913,Kokada Maurício +1099283,Rocío Verdejo +1094098,Sara Guasch +66959,Verónica Llinás +1522345,Jocelyn Hudon +1293719,Neil Krause +581728,Cyril Mendy +1210341,Tauno Hautaniemi +76858,François-Xavier Demaison +1207488,Eva Bella +182739,Carol Williams +1311373,Ivalou Redd +19127,Wen Yann Shih +548390,Kristian Luuk +551797,Marucha Bo +1374150,Garrett Hines +1098640,Payam Akhavan +1820844,Danko Gurovich +156154,Robert DiTillio +1069552,Vu Ngoc Tuan +41206,Jean-Pierre Gos +1014986,Dmitriy Sergin +556275,Matthew Mercer +224930,Danny Chan Bak-Keung +107339,Claire Brennen +569933,Tena Jeić Gajski +1450460,Myra McFadyen +131619,Mary Castle +1043869,Ana Ofelia Murguía +1108732,Bobby Rice +1017115,María Castro +1409655,Jack Greenless +1782595,Christine Nelson +33548,Marie-Noëlle Barre +1831209,Evamaria Björk +1375358,Ricky Wayne +1628500,Dakota O'Hara +1270745,Carol Everett +1161076,Saul Stermer +1184600,Tao Zeru +97236,Greta Gynt +71353,Fernando E. Solanas +1700876,Chitrita Sharma +1133365,Angelo Bellini +1634442,Josh Yadon +133587,Philip Roye +72593,Frédérique Bonnal +1021739,Tano Alansar +1201461,Tom Collins +67709,Mac Miller +1151657,Jing Tian +543178,Zhang Guoli +136034,Adam Kroloff +1395491,Randall D. Cunningham +100343,Jack Warner +1318428,Seo-hie Ko +1081828,Sonny Forbes +1880146,Charlie Kimsey +1133849,Vibish Sivakumar +92748,Eme Ikwuakor +592527,Andrea De Rosa +1412498,Robert C. Campion +139466,Anastasiya Stotskaya +1842220,Abigail Wylie +157498,Dian Gallup +185459,Sarah Smart +1090508,Yuriy Solomin +1646450,Brittany Teo +1137866,Kazimierz Witkiewicz +564787,Stanko Molnar +1512146,Montserrat Espadalé +1567381,Вадим Никитин +186561,Rosita Quintana +1804234,Reka Rene +107781,Mónica Randall +1033085,Carolina Cotton +124513,Brian Murphy +1696958,Vicky Murdock +1080767,Jiří Krejčík +1517103,Pirjo Leppänen +1663038,Nobuo Minamitaka +1046537,Valerie Hurt +1060279,Larry Kerr +236562,Tamara Lees +98175,Lee Perkins +199272,J.R. Starr +1517851,Sherod Ogletree +1588361,Don Hails +942302,Baron Davis +108575,René Zagger +1194700,Graham Skipper +213619,Vladimir Brichta +587856,Chris Blackwell +211133,Cecile Heuer +1394361,Clem So +174093,Traci Dinwiddie +130797,Joel Bishop +1423419,Farryn VanHumbeck +60223,Michael E. Goldman +31381,John Paul Fedele +1735543,Tom Clark +1795187,Steve Skopick +1759496,Kabby Hui Nga-Ting +1186434,Anna Bederke +94123,Richard Van Vleet +1104698,Tiffany Adams +1227612,Rosa Laborde +1467228,Spencer Curnutt +43869,Lavelle Roby +1424191,Keen Ruffalo +144630,Vojin Ćetković +207899,Natalie Dreyfuss +67195,Monika John +1226263,Ayda Field +1351919,Julia Kaufmann +592536,Somdet Kaew-ler +1353827,Taylor Russell +1766866,Greyson Turner +1543277,Astrid Ovalles +1384203,Tracey Lawrence +1193595,Dylan Chalfy +1795343,Donald C. Llorens +968922,Dwyane Wade +237323,Kenichi Takito +1461489,Brett London +1076803,Alexis Wawerka +85027,Aftab Shivdasani +107677,Peter Cookson +11794,Frances Bay +1169157,Timothy Woodward Jr. +935288,Donnabella Mortel +25668,Brendan Hughes +1753166,Rocio Vidal +44416,Pamela Stanford +69563,Cris Campion +1365271,Tiitus Rantala +1685265,Stella Egitto +1662,Pierre Repp +16776,Maria Heiskanen +104348,Anita Skinner +1050718,Michael Huff +933472,Mie Kitahara +1050080,Goran Jokić +97417,Jonathan Harden +1128522,Brittney Alger +64341,Amanda Brooks +1876176,Luke Oscar Ford +1510433,Morag Hills +1509713,Pepita Morillo +155403,Paul Vogt +73361,Georgia Henshaw +1089484,Theo Meller +1207257,Cullen B. Madden +32324,Betty Beckers +1095239,Ben Thomson Coon +1834641,Johnny Bolton +1326240,Sasha Dominy +1370950,Aaron Rivera +92572,Betty Gilpin +591074,K P A C Lalitha +1013126,Ívar Örn Sverrisson +1300910,Billy Choi +1343613,Niccolò Gentili +1289968,Cara Delevingne +1357164,Nagy Nabil +1364475,Vappu Jurkka +26120,Harvey Hall +181230,Fiona Perry +1135598,Rin-Tin-Tin +1317523,BabyJohn Choi +73988,Lyndon Johnson +1504950,Laura Waddell +86862,Aleksandr Demidov +1665945,Rie Iikura +1299243,Uhm Ji-won +1224877,Nancy Sivak +45747,Jaap Spijkers +560276,Marco Delgado +1536690,Dave Pomeranz +1330099,Lollo Franco +1763224,Cheryl M. Bailey +1138605,Piotr Głowacki +91528,Kürt Rogiers +150640,Victoria Koblenko +556911,Hieu Hien +1207030,Ray Stough +1156502,Matko Raguž +97845,Ted Huckabee +230551,Mikhail Gorbachev +559589,Jasna Fritzi Bauer +1320609,Phoebe Fox +1121624,Carl Lewis +54929,Carmela Sazio +1694302,Marcelo Vilaro +94636,Dawn Brodey +240155,Lo Meng +133273,Dorothy Arnold +85811,Kristian Ayre +1362516,Diego Boggioni +236622,Natasha Andrews +61566,Lawrence Varnado +1057499,Bobby Tight +58312,Angie Everhart +143623,Aleksandr Golovin +1831282,Hari James +50185,David C. Bunners +30317,Lee Williams +268743,James Gilbert +1316122,Daniel clérice +559738,Rajiv Kanakala +1432727,Richard Mitchell +1077737,Jackie Moore +121335,Albert Petit +101810,Benjamin Dickinson +1668310,Dharmesh Yelande +1196411,Aslag Aslagsen Sara +13636,Jane Krakowski +1261487,Ramón Ibarra +932035,Natacha Amal +63708,Hiroko Yashiki +588038,Sergei Druzyak +403451,Jason Bentley +1153525,Mantvydas Janeliunas +1897702,Tiana Davidson 'Thelma' Davis +1465065,Joanna Ignaczewska +134671,David Gow +116910,Carolina Garcia +1545496,Nik Pajic +200240,Michael Christian +1042753,Paco Casaus +222308,Anna Haaranen +1141261,Gina Sammarco +1559773,Shanqun Hong +1374151,Hunter Burke +1307014,Simone Kirby +226185,Per Kvaernes +170633,Joel Miller +1457455,Dani Sanchez-Lopez +1390490,Maxim Emelianov +3809,Francesca Neri +1083304,Katsuko Wakasugi +1270299,Per Bronken +1676722,Al Staggs +1782589,Andy Mardiroson +1543389,Eva-Maria Kromer +1707940,Cris Cochrane +78311,Steve Valentine +1228886,Justin Rosniak +1192753,Christine Görner +999389,Sean Patrick Doyle +1130080,Gina Patrichi +1105711,Richard Cabral +1155282,Ratna Riantiarno +89879,Soichiro Hoshi +134829,Maki Sakai +1691846,Malik Peters +1743005,Tom Whelehan +1793177,Joseph Norman +1178214,Giulio Brunetti +1126622,Samuel De Rijk +37769,Tanit Phoenix +1327879,Renee Murphy +1801198,Jerry Cortese +1557207,Lucy Sheftall +96020,Zack Garrett +1692063,Andre Scruggs +1723465,María Sánchez Aroca +1194035,Craig Walker +1236059,Luis Robledo +1366983,André Hinderlich +103992,Carlos Pumares +379289,Francisco Ribeiro +1029123,Aren Vatyan +86752,Vyacheslav Nevinnyy +229745,Andres Arellano +1144355,Liu Hua +593025,Robin Das +1020867,Park Sang-wook +10620,Ulli Lommel +106817,Blanca Suárez +79292,Dámaso Conde +1234823,Rutherford Cravens +1567639,Shridhar Limaye +1187206,Joëlle Taieb +1282493,Gianni Vagliani +1186978,Erina Mano +1390554,Shayne J. Cullen +1098512,Trond Halbo +1358636,Skrillex +235919,Yan Tsapnik +1072147,Marjie Millar +80205,Danny Corkill +100263,Jill Andre +211654,Alex Miller +1524415,Lena Grinda +1252765,Takejyo Aki +12005,Paola Borboni +24542,Jean-Claude Adelin +1352108,Helvi Järveläinen +1690535,Dwight Greene +225006,Shazada Hussein +1666878,Ashok Samarth +1107943,Gabriela Saidon +1114142,Nanna Kristín Magnúsdóttir +95151,Luíza Curvo +1445120,Nicolás Rocca +1230173,Nancy Carell +1537587,Vera Vlcková +1439241,Ib Petersen +148567,Peggy Ryan +1614339,Sensi Lowe +72130,Tessa Ia +79909,Amy Walton +449889,Ben Drew +587936,Tedd Dillon +1123849,Esther Jun +1214713,Sean Catherine Derek +83476,Ricardo Cortez +92175,Tahyna Tozzi +1095404,Masayoshi Haneda +1189982,Aubrey Peeples +158804,Kellye Nakahara +108075,Alex Melesh +1223463,Keene McRae +136741,Rafał Wieczyński +1485935,Alexandra Zetterberg +115284,Joanna Dickens +1623642,Des Sharples +1870843,M. Mikhajlovsky +1559747,Makiko Shibata +136548,Genki Koyama +962545,Alec Holden +1683839,Andrew Bambridge +87187,Emily Catherine Young +556505,David Bagby +585606,Thikkurissy Sukumaran Nair +1902094,Gisela Nehmann +1563099,Patrick Médioni +1153680,Jessica Sonneborn +1663662,Nathan Luke +55934,Taika Waititi +1504595,Jesse Sherman +569142,Russell Huestis +148836,Lois Wilson +1129974,Edda Di Benedetto +557086,Art Mix +1190484,Josephine Borio +94098,Gillian Jacobs +1217118,Patsy Smart +1491421,Ines Laimins +1376414,David Schlachtenhaufen +1221642,Daniel Aichinger +1845946,Jane Dore +1891494,Amir Janfada +165488,Heidy Hunt +567589,Lev Polyakov +570367,Gabriele Spinelli +1110284,Grant Goodman +1091538,Edy Biagetti +1522145,Deborah Clifton +142636,Josh Holloway +43644,Marcel Musters +1425594,Ladislav Brothánek +120320,Mohamed El Sayed +38677,Juraj Kukura +100955,Aldo Massasso +1225903,Asante Jones +146064,Oscar Weidner +91555,Rajinikanth +77319,Jacob Cheung Chi-Leung +1657532,Peter Tzotchev +119592,Aubrey Plaza +220717,Uri Geller +943440,Stephen MacDonald +1394124,Margo Victor +1686803,Derrick R. Roberts +1821490,Sebeon Jackson +78572,Gyton Grantley +1520904,Alix Dugauquier +59215,Jordi Caballero +1839924,Julyani Lugoch +103554,Isabel Lucas +1816054,Lee Sunrise +1200879,Keiji Tsuchida +1614745,Nurberdy Allaberdyyev +212085,Nadia Fossier +127913,Sheila Burrell +1105080,Charlie Kilgore +1633758,Romano Hitler +84495,Jess Harnell +134888,Tracey Adams +1844905,Doug Childs +6030,Kris Portier de Bellair +1806597,Blondy Baruti +1500213,Don Laurel +935649,Ernest Hilliard +583611,Ann-Sofie Nurmi +27640,Mohamad Belfikh +313610,Giovanni Calcagno +1042136,Gabi Geist +201391,Michael MacKenzie +1272966,Kurt Leitner +1265154,Trevor Sterling Stovall +1745604,Jo Anne Loren +183147,Ciaran Madden +206505,Garrett Ryan +44649,Violante Placido +1867072,Shukur Burkhanov +141091,Eugene Vince +567331,Jo Kelly +1080024,Monica Coca +152673,Don Knight +91559,Gregory Connors +1150903,George Beban +587179,Marie Vialle +1666839,Piero Di Carlo +1052853,Herb Dean +1286547,Catherine Fisher +53501,Udo Lutz +1174356,Lonny Stevens +1069550,Lou Pimber +1754824,Rasul Vilyamov +1567550,Magdalena Kuta +24484,Valérie Stroh +76940,John Brumpton +86467,Jay Simpson +1338009,Carl Hadra +34744,Billie Dove +1221085,Jessica Sula +132186,Nico Marquardt +120821,G.P. Huntley +86678,Svetlana Starikova +1599150,Cristina Abad +1267396,Antoine Desrochers +1888505,Stephan Becker +566313,Luisa Maneri +1753257,RickyLee Waipuka-Russell +1170014,Jonathan Good +1384102,Walter Könnike +1371301,Guy Bellis +1777434,Tales Yamamoto +207004,Adam Smith +135715,Mike McNamara +85969,Emraan Hashmi +90755,Janet Montgomery +178622,Ramon Tikaram +113228,Tinarie Van Wyk-Loots +141089,Gary Randolf +1002713,Fabrizio Forte +106496,Odile Katesi Gakire +1163661,Raymonde Aknin +1502395,Matsuo Satoru +1759919,Martin-Pierre Duguay +1545648,Maksim Pinsker +176491,Shawn Carter Peterson +232861,Alika Smekhova +21750,Petra Kelling +1385972,Sheila Mae Alvero +1512184,Kysa Otis +1072157,Katie Powell +584655,Luce Mouchel +213359,Silvia Šuvadová +1392937,Carmel Amit +1127751,Anthony Manganiello +1099717,Jay Pharoah +196737,Allen Altman +272487,Olga Melikhova +1303696,Leila Shenna +1244717,Jan Crawford +101604,Rick 'Ercolino' Martino +1635150,Juliette Sicard +1467351,Ruben Aprea +1260677,Aidan Cook +1666251,Bob Oschack +1838045,Adam Cabrera +1681862,Agatha Mccarthy +1888397,Taci Ersan +1746388,Niccolo Cancellieri +1487397,Jerry Philips +1120097,Gino Marturano +1084317,Noah Lindsey Cyrus +60459,Soren Fulton +138734,Pan Yue-Ming +1118344,Kathy Lashay Berenson +79293,Isabela Ritto +131125,Steve Monroe +1091795,Graham Rogers +938993,Madeline Bessmer +1695672,Kayla Swift +1640628,Irina Noaptes +1090027,Bruce Bundy +124683,Francesca Valtorta +1716344,Félix Sylvestre +115671,Christopher Dane +1716342,Sylvain Legrand +62913,Sage Brocklebank +101822,Aditya Srivastava +168565,Dean Paul Gibson +551777,Takashi Tsumura +148027,Gene Marsh +83862,Mercedes Mason +1506299,Matthew Grant Godbey +1029635,Olivia Cella +85983,Pierre Hatet +200666,Nigel Hamer +145143,Aneurin Barnard +1422442,Leigh De Lacey +139811,Mark Caven +63586,Nay Suet +113536,Mats Helin +1644278,Janelle Bailey +1050846,Bojan Krivokapić +105658,Sunkrish Bala +1886756,Ruta Kubas +84430,Joséphine de Meaux +1352658,Volker Wolff +150332,Hernán Romero +591925,Victoria Pagès +1535506,Pradeep Kottayam +1323726,Christian Ehrich +1150483,Raymond G. Moses +1697806,Santi Vilacañas +1121999,José Luis Fernández +32006,Florelle +1902100,Mails Morling +1046159,Ralph Emerson +1434242,Victor Solé +929088,Vinod Doshi +1213231,Jane Dulo +1229255,Tony Pitts +143578,Ernest Van Pelt +1522142,Chike Johnson +1173024,Michael Vavitch +52761,Igor Jijikine +129059,Vincenzo Salemme +79901,Tsidii Leloka +224399,Barney Dean +1028293,Sarah Kants +110916,Charles Hambleton +39545,Robert Taylor +1163719,Valerie Richards +205862,Jeremy Chu +1270263,Naomi Shiraishi +1572156,Hannah Sohn +1110118,Shradha Kaul +24753,François Patrice +933961,Steve Cirbus +1681500,Fabrice Michel +1793171,Thomas McDonald +142891,Mr. Wordie +1277246,Richard Maguire +1308373,Dylan Gelula +78811,Quinton Jackson +1585212,Svetlana Boguinskaia +1225230,Gordon Brown +1819141,Elijah Villegas +1380651,Sabina Gadecki +34735,Loni Anderson +117067,Hiro Mizushima +270894,Fyodor Stukov +1759618,Kate B. O'Brien +1800045,Kelly Byrne +1044259,Cree Kelly +1538780,Judah Lewis +1483334,Corinne Massiah +1282325,Özgürcan Cevik +1524501,Luke Spencer Roberts +1177074,Tamás Lengyel +202760,Andrew Brooke +1822971,Anthony Escobar +1254291,Lia Pokorny +240368,Emmanuil Vitorgan +118206,Pepón Nieto +525243,Richard Jackson +79759,Rain Tolk +84170,Luis Accinelli +1084971,Dan Majerle +63241,Cathy Shim +1038297,Vaz Andreas +123762,Marco Nanini +138408,Patricia McCarron +1233560,Trevor Donovan +72089,Pierre Meyrand +97146,Robert Bice +1202655,Henky Solaiman +87819,Dawnn Lewis +1589599,Abraham Adams +1811854,Wesley White +186052,John Larsen +73428,Tomisaburō Wakayama +1230426,Victoria Alcock +166701,Mathew Botuchis +1704658,Jazzy Ellis +1407605,Pedro Campos +1506489,Birgit Huppuch +570197,Suqin Chen +1580368,Hemmi Hagert +1808857,Anny Quinas +1394355,Oleg Nasobin +1608090,Jean-Charles Clichet +311052,Keith Van Hoven +566383,Fred W.S. Newton +558930,Claire Sloma +228168,Ovidio Martucci +1251907,Haruka Kinami +65225,Justin Chon +101475,Peggy Markoff +1464070,Im Hwa-young +1404562,Aleksandr Uman +29372,Jerry Marshall +93831,Saturnino García +1142290,Timur Aidarbekov +36938,Mimsy Farmer +1615891,Marc Ma Yu-He +86957,Tatyana Dogileva +78870,Li Xiaoran +66681,Matt Bettinelli-Olpin +225932,Ervin Nagy +1244632,Donna Christie +98868,John Polonia +143260,Nicholas Alexander +1337802,Martin Langenbeck +1428445,Karelle Tremblay +1513747,Leslie Gunning +933058,Ney Santanna +38864,Arthur Jugnot +127068,Steven Rishard +1478687,Ram Vaitheeswaran +141984,Mikko Bredenberg +98334,Khalid Rivera +29271,Virginia Brown Faire +1402408,Sándor Szemere +138701,Pilar Castro +165148,John McKee +77763,Mick Foley +1290659,Erica Emm +72787,Ronghua Zhang +17627,Lucile Hadzihalilovic +144552,Virginia Davis +543826,Franco Neri +1102446,Andreina Carli +91352,Horace Cohen +1318270,Valérie Messas +1650305,David Shea Henne +568683,Lasse Pöysti +102846,Musidora +1531591,M.J. Carey +1038625,Kacey Rohl +1650222,Raymond H. Johnson +1542940,Mike Salazar +566380,Kirk L. Kiskella +1222210,Patrick O'Connell +1673562,Betty Sanko +80600,Audrey Dalton +1250099,Melanie Kilburn +1118735,Joanna Jabłczyńska +1076804,Maximilian Gartner +56323,Tina Fey +70029,Kallie Knoetze +1433483,Curt Skov +226569,Kachamat Pormsaka Na-Sakonnakorn +33774,Constance Moore +128060,Rosalia Maggio +179352,Everett Glass +1820240,Mariela Herling +1251325,Tsuyoshi Koyama +1663037,Kôshi Kosugi +50572,Nicole Maurey +48690,Carin C. Tietze +122428,Christos Stergioglou +234660,Valeriano Andrés +1272837,V. K. Sreeraman +1869061,Sarah Reagin +1839573,Mauno Hyvönen +131742,Susan Kohner +1707823,Steve Blame +169725,Alaina Huffman +1835481,Marva Alexander +590308,Brina Palencia +1218185,Timothy Adams +550954,Jason Benjamin +121040,Kent Rogers +1427065,Dhafir Harris +1691173,Pierre LeBlanc +20708,Yôichirô Saitô +96525,Baldvin Halldórsson +985706,Adam Cornelius +1466240,Mark Reeder +1636818,Louis Hynes +1056119,Drag-On +1803312,McKenna Hutton +1362829,Elizabeth Wang +1276790,Makiko Nitta +1293076,Marina Groshaus +1632532,Ian Fenelon +3289,Paul Weitz +1472986,Frederic Mellinger +1522607,Anne Houdy +1165294,Steve Tran +139032,Ana Padrão +188638,Simon Kim +126975,Tony Sperandeo +1878837,Charlie Richards +1264156,Martin Lindström +1063332,Bruno Ascenzo +1650622,Mike Guymon +1547696,Michael Trolinger +47337,Gérard Darmon +130984,Li Chen +1002071,Don Randi +1276791,Mitsuaki Kanuka +1029046,Greg Melvill-Smith +82326,Grete Havnesköld +96518,Igor Ledogorov +1161654,Camila Hirane +184591,Valerie Geffner +1277033,Betty Brian +1800041,Alan Maguire +132213,Ethan Cutkosky +144880,Lyndon Davies +1547211,Valentino Agunu +94375,Dmitriy Maryanov +1152042,C.K. McFarland +1195238,Sébastien René +1271482,Maxwell Kovach +1762643,David Roush +60146,Okko Bekker +1264322,Patsy Creighton +592918,Katarzyna Gajewska +128189,Cris Aguilar +1402966,Jenny McCracken +1334389,Narinman Bekbulatov-Areshev +1719898,Robin Hansen +1503856,Jesse Mitchell +1189226,Coburn Goss +1131489,Svavar Jonatansson +1646007,Thomas Forcher +1115634,Mr. Munro +1138285,Lech Łotocki +202073,Heather McEwen +1296705,Son Ga-in +109419,Ken Takemoto +212480,Christine Scott Bennett +1418255,Justin Saczek +20705,Machiko Ono +1315264,Alexandru Dabija +1363095,Franco Di Trocchio +41284,Lelia Goldoni +231755,Kelsey Matheson +1066898,Mrs. Wong Wing +239898,Antonella Salvucci +1604096,Barbara Garabedian +587455,Luciano Bonanni +1440506,Chen Yan-Xi +1265256,Allistair McNab +1083310,Nagamasa Yamada +1289945,Livia Rossi +1842590,Alexandra Garrido +1677212,Willy Gutiérrez +1463118,Norival Rizzo +1443325,Per Damgaard Hansen +41340,Michelle Hunziker +13280,Yui Natsukawa +130870,Antonello Costa +1103795,Estefanía de los Santos +564848,Jo Deok-jae +583988,Trent Harris +25641,Yootha Joyce +584084,C. Denier Warren +75821,Lisa Durupt +1208792,Rafael Cruz +1169284,Megan Brown +110515,Lisa Chappell +1560226,Fred Nance Jr. +1637846,Narendra Jha +559556,This Moser +1818054,Raymond Winston +280880,Bartosz Obuchowicz +144226,Nick Di Paolo +580596,Jacques Dichamp +228619,Osvaldo Hernandez +209197,Marisa Miller +1145286,Mercan-Fatima Türköglu +966842,Maciej Marczewski +20376,Sarah Roemer +1849128,Nina Lopata +1829918,Avrilla Sigarlaki +47226,Vincent Gauthier +583654,Elodie Hesme +1384206,Rose Martin +1373478,Alberto Chaves +25152,Raymond Jourdan +97050,David Leon +1650250,Mick Laffey +132551,Norma Argentina +1457015,Cleta Elaine Ellington +1837279,Jennifer Duke +120812,George Brasno +1260782,Kevin Hanchard +1671474,Bonnie Gaye Cowen +1214499,Michael Fenton Stevens +1293721,Joseph Lawrence +480656,Anna Karczmarczyk +1174583,Ibrahim Oner +1476066,Zenon Zeleniuch +1133460,Paul T. Taylor +1078918,Ozan Bilen +1519551,Drake English +936415,Kim Kold +1644509,Hamed Najem +164794,Tim Rooney +101544,Vanessa Horneff +1071128,Kate Foster-Barnes +1398211,Can Nguyen +20707,Makiko Watanabe +1238720,Helen Forrest +1199586,Fernando De Oliveira +1356902,Bob Baker +1332333,Vladimir Rautbart +1711401,Mao Asô +239421,Arielle Sémenoff +111858,Giel Beelen +25064,Jean Barney +154856,Sarah Rafferty +1623643,Greg Cook +132575,Tom Pittman +1853761,Lucio Caizzi +80187,Alex Popovic +1110618,Dana Healey +145048,Sandy Gardiner +1088031,Warren Ball +1054693,Đorđe Šargaš +1716338,Nicolas Archambault +938887,Lounès Machene +1314866,Minna Suuronen +35621,Ruby LaRocca +1129679,George Barnes Jr. +1818052,Loretta Nicholson +1651417,Paul Leon Bridger +1436264,Yuanfeng Gao +1153527,Aleksandre Saulov +6799,Jeff Coopwood +1326316,Michael Brennicke +58352,Jimmy Shubert +1680874,Aaron Leddick +86896,Lyusyena Ovchinnikova +85203,Damian Lee +43997,Maxence Perrin +70890,Adam Green +132446,Blanca Apilánez +47874,Richard Wilson +36576,Dirk Dautzenberg +1646010,Syarief Friant +117818,Victoria Maurette +1630256,Ford D'Aprix +53286,Richard Karn +1203507,Gianni Diana +1389383,Medalion Rahimi +990857,Ángela Cavo +1084972,Arvydas Sabonis +585142,Woody Herman +1363393,Connor Day +89564,Tim Minchin +1604094,Mike Monosky +1087769,Dale Cook +114307,Ryuya Wakaba +134657,Hutch Dano +1127749,Natasha Cresap +239459,Kasei Kishita +112266,Kortney Adams +94030,Lewis Charles +27959,Peter Paul Muller +894128,Adamina Kerr +1576626,Pat Waggoner +936762,Petar Mirčevski +1837296,Jeremy Jones +1011126,Estrellita Castro +1476972,Nik Schodel +231835,Florian Bartholomäi +80589,Guido Caprino +1811851,Leila May Pickard +1135305,Rita Elmôr +1702187,Enrique Robles +84704,Tatyana Kanavka +64185,Joey Mazzarino +568304,Li Qin +1008394,Estelle Raskin +1447195,Eliza Rycembel +120637,Mario Carotenuto +1543146,Prakash Belawadi +558217,Per Svensson +1324330,Çetin Altay +973678,Sylvana Krappatsch +1062864,Apasiri Nitibhon +65451,Oliver Maltman +226139,Miloš Biković +16690,Neil Newbon +1673453,Jimmy Hong +1639435,Stewart Skelton +150227,Cindy Butler +1119079,Eldridge Cleaver +122728,Charles Matthau +1309014,Rainer Reiners +1635843,Matt Townsend +928342,Owen Garriott +651765,Marian Richman +1024604,Eddie Lo Russo +1514111,Matthew Rizos +231054,Lindsay Shaw +71080,Hitoshi Matsumoto +73930,Paul Hagen +1458146,David Chevers +1432731,Mark Muskiw +932326,David McConnell +564328,Jessica Jackson +111350,David Clausson +1344352,Andy Dylan +79027,Jake Roberts +1716737,Big Jim Wheeler +208230,Elisa King +1334323,Albert Valladares +1656902,Tanespol Wisitchanachai +1711442,Momona +128297,Yanina Zhejmo +1862915,Suzanne Patterson +1414736,Blake Mawson +1582026,Julia Gros de Gasquet +89929,Sybil Seely +1099657,Marie-Ange Dutheil +146913,Yekaterina Gorokhovskaya +999813,Henrique Espírito Santo +586664,Marleen Lohse +1330009,Mira Minga +224462,Naoya Uchida +1134750,Woo Gam +1089971,Olivier Spijkers +1164329,Laura D'Arista +1464783,Frances MacInerney +141687,Dianna Agron +108832,Kou Zhenhai +110915,Molly Oberstar +132712,Keir Gilchrist +933087,Dayton Ka'ne +157531,Dori Brenner +1445108,Pablo Pirrotta +1769687,Sergio Enrique +65987,Rosamund Kwan +154176,Chaz Lamar Shepherd +1370997,Kelly Borgnis +1583011,Gam Tin-Chue +238157,Eugene Domingo +1423066,Cañita Brava +1566570,Espen Edvartsen +143316,Brittany Wiscombe +1140714,Rogério Fróes +1446114,Alexander Scheling +138608,Dodie Brown +1696733,Juan C. Defendini +1046792,Louie +204505,Trenton Rogers +5207,Marlon Kittel +576477,Percy Brandt +107550,Warrick Grier +34959,Sonam Bhumtso +141640,Marina Ilyichyova +112720,Clark Bartram +1683031,Ana Karolina Lannes +1646177,Sami Paakkarinen +1034606,Willebaldo Torres +1761827,Esa Suvilehto +206919,Daniel Kaluuya +6090,Janek Rieke +557435,Carrie Mitchum +66816,Terele Pávez +206737,Rico Rodriguez +1426645,Claire Zaniolo +1074242,Fumio Demura +1702113,Jason E. Box +1493397,Katharine Bubbear +1341670,Elena Stejko +1283871,Oliver Stark +1547791,Tereza Terberová +1744121,Mehmet Selim Akgul +554324,Gai Harada +1728954,Daniel Naprous +1898250,Marko Ukropina +103174,Carlo Mucari +122616,Grant Gustin +600251,Om Prakash +553762,Jill Adler +1502859,Viera Andrea Moya +1066429,Julie Gholson +1121400,Johnny Flynn +1720595,Skylar McClure +583309,Jean-François Dérec +1362891,Eero Paganus +1409492,Edsel Pete +89607,Jess Dandy +93900,Francis L. Sullivan +87570,Tamera Mowry +84824,Peter Tuinman +1446116,Tim Reingruber +1790376,Mattea Conforti +86737,Viktor Kosykh +1385276,Carel Nel +1811547,Eric Ndorunkundiye +1319055,Rod Grant +77659,Matt Carmody +1033672,Mourad Frarema +551473,Leigh Bourke +225219,David Sereda +235871,Bombolo +178054,Margaret Trigg +1467996,Kyle Crusham +223800,Aida Tumutova +1394472,Andy de Lore +1497339,Julia Jelinek +1141458,Paul McGill +1458958,Joan C. Davis +1835618,Stacey Maltin +1244235,Jojit Lorenzo +102229,Jons Pappila +110359,Michael Moshonov +7012,Dino Tavarone +1784739,Sergio R. Lopez-Permouth +1506492,Lily Autumn Page +1475032,Elizabeth Mears +1893185,Clayton Wilcox +232500,Charice +1650216,Jorge Vega +543530,Dave Bautista +120673,Katherine Mayfield +69423,Maureen Keiller +120950,Ponvannan +77496,Vince Colosimo +1783267,Ryan Boz +226143,Predrag Vasić +55877,Andrew Gillies +1288767,Jasmine Mooney +1176790,Cheryl Cantwell +281413,Andrew Buckley +1283064,Edmund Blanchet +1394435,Brodie Henson +1036368,I.C. Mendoza +1651929,Lupe Roda +1723,Walter Hill +1384684,Aristarkh Venes +230860,Naoki Kawano +1443438,Reimer Bo +120151,D.J. Williams +159729,Elmarie Wendel +1512177,Mallory James Mahoney +145165,Florian Yven +1504057,Sofia Seirli +18406,Carlos Boes +76826,Sam Karmann +1159356,Al Billings +587301,János Bán +101398,Erin Broderick +1205907,Lynette Zumo +1361162,Buddy Rae +133821,Almila Bagriacik +1001786,Mehmet Eren Topçak +560038,Jayaprakash +1509234,Aqua Boyance +1205903,Lawanda Smith +1371098,Dane Davenport +1468400,Lee Moore +1086319,Istvan Bolla +1790561,Dominique Baute +937222,Russell Balogh +112286,Edrick Browne +111636,Perry Dizon +1511996,Alanna Fox +1738960,Norman Mikeal Berketa +1605814,Raynaldo Houy +1490041,Larry Knechtel +1017283,Arne Scheie +140478,Philip Keung +584042,Yuliya Aleksandrova +38906,Katja Rupé +1452352,LaDon Drummond +1457292,Dominic Thigpen +120716,Truman Bradley +1711407,Nanami Ishimaru +1602328,Miguel Ángel Alarcón +1670760,Shad Adair +1838570,Saskia Larsen +456982,Ofer Shechter +61187,Daniel Bacon +1256257,Tracy Weisert +96012,Siraphan Wattanajinda +55196,Mary Louise Weller +1006787,Hülya Duyar +1359954,Dillon McNaight +1468344,Max Jenkins +178154,Craig Russell +127394,Masao Kusakari +223972,Tuur de Weert +26248,Horst Naumann +1198923,Kristoffer King +1467216,Hanna Dworkin +553838,Do Yong-Gu +231457,Kacey Mottet Klein +144525,Stephen Guarino +1793170,Holly Schlegel +146504,Bob Nolan +1195027,Natalia Dicenta +1878412,Mila Lipner +145812,Iván Kamarás +1125110,Marcela Iacub +201629,Otto Tausig +83915,Steven Ritch +88146,Jannie Faurschou +1372350,Adilet Usubaliyev +108700,Eileen Dietz +281638,James McCauley +545343,Tyrone Brown +1522637,Benjie Filomeno +1000981,Dimo Alexiev +60740,Krista Swan +1469280,Anthony Marsh +136532,Matt Smith +146942,Dorothea Walda +1178923,Oscar Dietz +1338126,Randy Powell +1031930,James Lyons +145319,Ryan Sypek +227727,Karel Effa +1008449,Shinobu Araki +1308381,Sam Wolfson +108078,Winnie Maughan +1111256,Harlan Knight +1212167,John Arnatt +1766059,Kema Sikazwe +1890754,Stefanie Sattlberger +1586290,William Andrews +1759504,Cynthia Chenault +1385640,Ludovico Girardello +103329,Joshua Feinman +236559,Galeazzo Benti +1173773,Felipe Abib +182944,Marcia Laskowski +1452940,Nick Gracer +87891,Christian Olson +1366398,Eden Marryshow +1524410,Charles H. Gray +59614,Catherine Bégin +1782580,Peter Rutledge +1195180,Kensaku Hara +22310,Mar Sodupe +1605320,Howard Stuart +112854,Bert-Åke Varg +1475082,Gabriela Zimmerman +82363,Szonja Oroszlán +1332697,Camille Chamoux +1302677,Alexa Benette Fox +938911,Claire Garvey +240598,Lyudmila Arinina +89462,Kali Hawk +1209479,Leif Sawyer +182070,Alex Avery +1585215,Ashley Kirk +86260,Calico Cooper +101130,Barbara Cupisti +107463,Del Tenney +586531,Aria Publicover +154993,Stephanie Erb +93209,Gary Lydon +1207100,Diane Bori +1326142,Eric Shani +87897,Yoo Sun +1208794,Irina Dendiouk +1660701,Lawrence Whitener +106704,Valeria Marini +691,Amrish Puri +1831162,Anna Katrin Klöpfer +1796446,William Ellis +1426221,Benjamin Davis +213504,Hideko Takamine +1418225,Emily Deruytter +1226277,Colin Jost +239793,Vladimir Burlakov +140011,Wolfram Hoechst +119435,Ettore Geri +1687767,Sergey Nasedkin +1438678,Chaz Smith +1009819,Natalia Kim +146288,Jonathan Lambert +1512824,Magnus Carlsen +1447880,Susannah Hart Jones +89202,Barbara Francis +1799837,Alexander Garvin +1568053,Lex Scott Davis +53509,Vesa Vierikko +1193605,Keegan Allen +39213,Keir O'Donnell +1261530,Amir Jafari +973497,Britt Lower +1592855,Madelaine Petsch +87792,Joo Hyun +1647317,David Casiano +99125,Gene Ellison-Jones +61911,Tiffany Lamb +1104794,Charles Penrose +548041,Kaku Takashina +1311148,Jong-hak Choi +222342,Kenji Takahashi +1200195,John Patterson +997632,Karim Saleh +1707551,Karen Rice +1221794,Walter Tetley +93895,Tallulah Bankhead +1853255,Klavdiya Lepanova +1278137,Gabe Cronnelly +1117866,Ba Sen Zha Bu +1677240,Dane Martinez +1123122,Martin Löschmann +555888,William Wagner +1273918,Elisabeth Duda +235350,Rossella Como +1421260,Barbarao +116158,Spede Pasanen +107824,Sergey Shnurov +1334329,Tanya Thai McBride +1874740,Jydespætten +1531585,Val Warner +1495095,"John Dickerson," +1164143,Atilio Pozzobon +442780,Cedric Hardman +1095080,Julio Monterde +1327742,Felipe Ríos +107041,Marisé Álvarez +1620092,Noëlle Baleste +1176263,Jeff Mallory +440439,Matty Finochio +1723623,Katie Money +189418,Nicola Bryant +1035307,Teresa del Río +120455,Frank Elliott +1438350,Cecilia Noble +584047,Garold Strelkov +1074009,Andrzej Franczyk +1672068,Lily Kenna +1076805,Harold Levy +568045,Courtney J. Clark +1123199,Bonnie Poe +1660683,Harry Beer +193140,Jane Singer +580231,Kristian Hodko +1554158,David Hardware +5648,Harald Schmidt +1816342,Abdul Salam +1200360,Narcival Rubens +1691429,Matt Thompson +1193640,Eric D. Johnson +115150,Kaya Scodelario +1452762,Jessica Mann +1761852,Mertsi Lindgren +1707826,Marusha +1128004,Yoo Seung-mok +462584,Jung Won-joong +571189,Mathieu Süsstrunk +1252764,Choei Takahashi +1604989,Shona Gastian +927865,Thomas Herod Jr. +1148627,James Alexander +1511256,Anne-Marie Caicco +1758523,Anagha Joshi +1670935,Ryan Munzert +79560,Louisa Pili +183907,Pamela Shaddock +1134494,Eric Abrahamsson +1368669,Petrik Andrea +117809,Chris D. +140109,Athole Stewart +549052,Jamie Zemarel +1902099,Annemarie Warnkross +63732,Ty Hodges +1112038,Renwick D. Scott II +1714643,Lou Richards +1322013,Ryu Tae-joon +111540,Karin Park +1291961,Marcus Henderson +76227,Johnny Pacar +39677,Dennis Berry +1854968,Annie Papa +1372330,Anton Sviatoslav Greene +238393,Alain Figlarz +1184852,Gabrielle Amies +1894265,Enzo Savone +1220003,John Woodnutt +85883,Shruti Haasan +45036,Andrea Checchi +5860,Stephan Grossmann +1497674,Richard Jewkes +1736009,Борис Чунаев +219367,Steve Oram +73177,Sharon Gless +1066932,Eric Tomlin +1050217,Alan Fisler +1444472,Edita Zákravská +1890249,Thomas De Araujo +1213611,Amanda Aday +34762,Donald Kirke +136401,Larry Green +1745601,Wilma Ewell +19084,Paul Gégauff +89730,Ben Welden +1865309,Zac Barker +1299282,Ana Sophia Folch +125595,Martin Bahne +1764129,Kurt Mandzukic +590939,Caroline Hayes +1202966,Paul J. Ballin +1031258,Blaire Noonan +72776,Simone Sacchettino +74541,Corey Stoll +1857677,Kristin Shepherd +1632531,Sylvain Lazard +131258,Janagaraj +1542411,Diana Ochoa +1699991,Siddhi Mahajankatti +1700946,John Hagan +83354,David Stanbra +125078,Kyôko Enami +101957,Joyce Terry +125489,Edoardo Gabbriellini +1499908,Hassie Harrison +1475744,Lola Flanery +73408,Megahn Perry +1271339,Billie Thomas +1325838,Andrew Buchanan +1848070,John Luafutu +1585133,Veronika Dash +105508,Margaret Seddon +1317071,Georgia Simmons +1134660,Johnnie Brannon +101708,James Jude Courtney +110380,Colin Powell +1788333,Laura Cash +1145697,Ajit +21908,Aaron Kwok +1118004,Boris Grebenshchikov +1235622,Tenen Holtz +1164880,Fung Ngai +148595,Eleanor Keaton +1294376,Helena Schoenfelder +1784650,Kelly Keyser +1421622,Sarah Mathilda Libbertz +162182,Derek Barton +39121,Moby +1293077,Nancy Encinas +1091668,Noboru Kaneko +231226,Lino Guanciale +118452,Patrick Aherne +51487,Marijke Pinoy +1394468,Matthew McConnell +237869,Jacqueline Delubac +1845880,Thomas Solivérès +1636791,Donavan Darius +1735507,Perrie Wardell +1031791,Carlos Linares +62360,Olivia Hill +1458317,Dionne Houle +143470,Joshua Homme +757902,Owen Sullivan +1172833,Brendan Rock +1411644,Sam Malone +1314275,Alfred Svensson +1207371,David Goff +76102,Gene Dinovi +487836,Dale Mercer +131507,Gary Bond +1421102,Josef Vajnar +1384205,Sage Lawrence +1213668,Peter Duncan +1356805,Enzo Lombardo +17380,Jay Chou +55826,Natália Lage +1241056,Lee Ji-ah +1157261,Steve McTigue +112863,John Karyus +1158286,Kristoffer Sandberg +84955,Myk Watford +151035,Campbell Singer +87516,Peggy Cass +1776538,Bernard Hall +106393,Alan Naggar +1137450,Alec Herskowitz +1423662,Robyn Fairchild +1189118,José Pedro Carrión +1686423,Matt Beene +1446338,Lisa Wilder +62851,Tom Fitzpatrick +1026388,Gertrude Musgrove +568824,Helle Merete Sørensen +1147939,Eddie Bocanegra +103545,Sebastian Arcelus +1637851,Ana Caldas +1114303,Neville Archambault +41384,Bill Haber +115177,Sanny van Heteren +1490051,Flora Spencer-Longhurst +1872175,Kevin McCaulley +1590327,Earl T. Kim +1116113,Apoorva Arora +5534,Patrick Kake +1283519,Cristina Rinaldi +201732,Isaac Durnford +968290,Adele McCann +77090,Jordan Carlos +1193594,Esau Pritchett +1200244,Osamu Kimura +8063,Ken Schretzmann +239472,Claus Theo Gärtner +130915,Gaby Go +1247406,Caroline Paterson +205213,Edi Patterson +78534,Cécile Cassel +1403857,Olavi Virta +540871,Mario Montenegro +1509712,Eufrosina García +1064503,Amin Belyandouz +1135161,Wan Seung-Lam +146547,Jean Davy +994641,Frankie Ng +225258,Novello Novelli +225050,Mike Meijer +1204168,Barbara Ronchi +1711386,Aki Hiraoka +1055686,Anderson Lawler +1048644,Sarah Greene +77921,Hideaki Anno +1624612,Dennis Crowley +114253,Simon Farnaby +583489,Céline Bel +130024,Jennifer Blanc +558019,Elena Nikolaeva +109284,Anita Wall +1046504,Sharad S. Kapoor +1302055,Juan Bautista Font +1192760,Ashley Charles +283080,Adolfo Thous +566131,Estee Adoram +1320204,Marek Erhardt +1674664,Vera Horton +236462,Margo Johns +1207291,Jodie Taylor +47590,Holly Aird +42208,Gulshan Grover +1029323,Daihachi Kita +22911,Günter Reisch +1206831,John Challice +93903,Cédric Kahn +1315951,Ptosha Storey +23753,Georg Marischka +1570211,Ariana Guido +91354,Joan Nederlof +76905,Alice Butaud +1138634,Ruth Rayyah McCaul +1774091,Bill Thorpe +215444,Peter Oldring +39710,Renaud Verley +383624,Adrian Schiller +1550779,Cynthy Wu +1825797,Kiva Mary Golden Carlson +97453,Tessa Germaine +228083,Marika Fukunaga +928356,Teri Clark +17273,Masi Oka +1763916,Sloan Stewart +1367034,Thomas De Pourquery +101566,Amber McDonald +134531,Anna Gunn +1078376,Perihan Savaş +162414,Robert Llewellyn +995514,Michael Nathanson +1107767,Minako Naka +99562,María Vidal +1511137,Grace Sherman +20816,Bryan Chafin +29898,Tim Ball +1037800,Ferenc Elek +456907,Tina Witherby +136806,Jana Plodková +1581212,Alison Harris +1560983,Wolfgang Roeck +1451618,Anthony J. Sacco +1185919,Roswitha Ehlen-Athuman +930216,Robert Amaya +1094536,Gianfranco Magalotti +88474,Neri Marcorè +1784721,Ryan Childs +1873278,Guillermo Rodriguez +1842219,Lisa Y. Wong +168349,Shane Dawson +49158,Douglas Welbat +1440482,Liang Xinwen +178565,Sarah Berger +1368961,Gregory Paris +147144,Ada Pometti +1423093,José Luis Barroso +1606981,Kelley Stoltz +212928,Uwe Preuss +203740,Zuzanna Szadkowski +1140887,Tania Béryl +574658,Jelena Gavrilović +1672072,Tanner Boatwright +38706,Allison Scagliotti +92732,Renée Geyer +934289,Kiernan Shipka +1125107,Mamadou Minte +227088,Toru Kazama +168829,Bruno Amato +166995,Andrew Levitas +28856,Jack Dee +130985,Xu Fan +19824,Andrea Ros +11551,Sylvain Itkine +1816433,Craig McGinlay +128472,Marco Minetti +121423,Ayşen Gruda +1289599,Apphia Castillo +1303603,Tyyne Haarla +161147,Emilio Delgado +82759,Vesna Stanojevska +23670,Grégori Derangère +40924,Justine Lord +107234,Lucretia Love +35537,Robert Viktor Minich +26263,Carlo Pisacane +578081,Stanley Weber +1347587,Jose Diaz +62146,Rob Brownstein +218142,Saeko Shimazu +1034453,La La Anthony +234654,José Luis Ozores +1214943,Bill Blackburn +1086354,María Villar +1467388,Candice Michele Barley +43650,Pleuni Touw +1050850,Rade Ćosić +143132,Teresa Gomes +83423,Heather Doerksen +8438,Elizabeth MacRae +1451780,Izumi Kikchi +1585139,Ken Sudo +938997,Samantha Geimer +1382995,Ashlyn Nicole Selich +1046854,Enver Petrovci +77446,Eberhard Esche +110911,Tattiawna Jones +1546129,Christina Carrafiell +1331693,Somchai Satuthum +116651,Keith Christie +116528,Ward Roberts +939534,Harry Jay Knowles +11933,Hans Putz +2340,Barbara Auer +1601468,Loukianos Rozan +559138,Sebastian Kronby +1359384,Barbara Drennan +34269,Ray Turner +1204696,Patricia Collazo +1479147,Mitsuo Matsumoto +131340,Marjorie Gateson +1671692,Selina Woulfe +240212,Margaret Johnston +1866322,Jeckie Brown +1326237,Ned Van Zandt +1174649,Cheng Fu-Hung +235131,Itzik Cohen +1230317,Debra Lawrance +582232,Roman Artemyev +1319308,Laura Pierpont +1744821,François Kasonga +544878,Jan Potměšil +1232785,Denis Simpson +580595,Michèle Ban de Loménie +1717,Isaac C. Singleton Jr. +1029286,Morgane Hainaux +1719718,Roger Groh +39459,Hayley Atwell +1651384,Iain Batchelor +1246267,David Foxxe +89660,Emerson Treacy +88812,Neetu Singh +553274,Linda Robson +199884,Michael Standing +232051,Gabriella Lamb +109969,Daws Butler +1583956,Rafał Dajbor +1230878,Wrong +68516,Ivan Dobronravov +103817,Jan White +1441644,Kazuko Yamamoto +159658,Douglas Arthurs +107983,Teri Copley +1541360,Willie Farrar +83869,Edith Rosset +1604111,Palm Sirichanya +1699478,Kyle Field +137843,Marko Matvere +1114306,Joy de la Paz +36918,Serge Sauvion +143206,Michael Blain-Rozgay +127491,Claude Lanzmann +1611256,Ali Akkul +1246530,Kavita Kaushik +53086,Lori Lethin +1851883,Silvana Di Lapico +581143,Chikako Hosokawa +1416469,Daniel Castillo +392621,Joanne Tree +579777,Marguerite Templey +1718162,Devin Lord Chachere +1428067,Jace Norman +168323,Neil Giuntoli +1586918,Filip Watermann +65205,Sean Kanan +103996,Carlos Ballesteros +1513973,Jay Brian Winnick +125949,Momosuke Mizutani +1007946,Duke Green +592656,Murilo Grossi +96880,Jamie Rose +571445,Kazım Kartal +120016,Donna Osterbuhr +1782846,Michael D. Arenz +1420175,Tom Stourton +1400598,John Eaton +126233,Talia Ranger +1352336,Mallory Malibu Waugh +147030,Wellson Chin +1204863,Natasha Malinsky +1433829,Bánfalvi Eszter +9093,Jane Winton +1246552,Avantika Shetty +936152,Floy Dean +141629,Alicia Rodríguez +220990,Kevin Janssens +1810360,Lauren Tempany +1385279,Charles Tertiens +1181412,Hilary Martin +1463282,Alina Gatti +131868,Jazmín Stuart +1252354,Maciej Musiał +125601,Pauli Poranen +577651,Ellen Jackson +1878709,Justin Coach +1206155,Matty Castano +1824299,Fran Targ +125200,Dalai +1165643,Aron Wade +158560,Jason Diablo +548093,Ladislav Chudík +1341528,Tad Pfeffer +102551,Diogo Vilela +1398073,Brandy Lamkin +1576968,Tony Vlastelic +1327255,Julian Lehmann +176031,Todd Barry +977345,Roland Jack +118499,Jimmy il Fenomeno +1870825,Erosi Manjgaladze +1886273,Páll Óskar Hjálmtýsson +55575,Leah Pinsent +129561,Joshua Safdie +59016,Trever O'Brien +1718158,Chris Angerdina +1457285,Randy Smith +144398,Steffi Duna +1106520,Marc Benjamin Puch +1718168,Jen Guitreau +11490,Claude Sarraute +135795,Todd Berger +563731,Çun Lajçi +94622,Brian Baumgartner +120549,Jean Porter +1182592,Shin Morikawa +1622088,Allen Phoenix +1205881,Alex Aristidis +1458874,Agnès Viala +1445784,Zoe Zwede +65699,Andrew Fiscella +995357,Frank Pacheco +834,Otto Preminger +66045,Oezlem Cetin +156989,Kari Coleman +1373208,Gábor Nagypál +1298847,Kornél Simon +1313066,Nadine Wrietz +1780695,Bing Liu +138127,Eve Kivi +127102,Éva Szerencsi +1089591,Naowarat Yuktanan +1627370,Chris Titone +1532118,Rosa María Gallardo +1211665,María Canale +1409177,Reina Takahashi +500427,Hannibal Buress +25644,Annette Carell +1439240,Gitte Ertbirk +232863,Tigran Keosayan +79556,Melaura Honnay +963684,Chandler Frantz +1436286,Fanjie Meng +1624625,Nick Denton +115218,Donnell Rawlings +120636,Renato Cecchetto +49918,Charlie Tahan +577832,Gilbert Servier +1457013,Nick Serino +1423092,Damián Ramos +1064508,Xander Straat +1054415,Tanisha Mukherjee +1346264,Teófilo Torres +1280061,Del Herbert-Jane +225764,Joachim Holst-Jensen +75187,John Molloy +1045405,Jovan Ristovski +94164,Otto Hulett +133665,Daniel Cerny +90368,Nancy Shubert +120921,Fumio Itô +1007420,Matthew Douglas +1782622,Danielle Montezinos +71581,Oliver Coleman +1429733,Rosalie Roy +1630041,Paloma Matta +1056208,Owaise Qayoom Bhat +1564683,Anote Tong +201534,Anna Neagle +1848649,Chico Rezende +1133860,Tina Lattanzi +1782410,Renaldo Kuhler +1794802,Jack Freiberger +76332,Rolf Skoglund +135945,Petrine Agger +23696,Hannes Messemer +1459158,Joseph Lewis Hemming +169795,Robin Smith +1298418,Manuska Rigaud +52355,Markku Peltola +30754,Hiram Jacob Segarra +1398074,Pearl Lin Yin-Zhu +1890409,Ooooota Adepo +590799,Helen Christie +196866,Gerald Brown +53252,Noel Gugliemi +245910,Gene Krupa +557303,Aaron Burns +117981,Vincent Giry +115648,Yuta Hiraoka +226709,Igor Ugolnikov +96047,Chase Wright Vanek +1584103,Spencer Tweedy +1598859,Jeffrey Stubblefield +1081635,Valerie Vernon +1454623,Véronique Fauconnet +1283045,Justin Tade +1444471,Martin Dusbaba +1648326,Frank Cannon +115594,Patrick Costello +1194930,Maria Skoula +63676,Nikki SooHoo +97826,Jeff Dylan Graham +1420472,Alan Davis +136004,Sabi Dorr +19465,Filippo Luna +1178817,Teresa Ha Ping +235952,Giancarlo Sisti +1495085,Barry O'Neil +1379641,Neil Ronco +1317375,Melissa LaFore +928302,Ilire Vinca Celaj +1272941,Iota +87549,Pankaj Kapur +1195041,Marie Burchard +1670730,Clémentine Niewdanski +1120071,Stephen Bateman +54416,Sam Golzari +229024,Marya Zimmet +1461486,Emma Paetz +1446483,Terry Conlin +194961,Will Mellor +56833,Horst Westphal +102649,Cory Booker +5228,Herbert Grönemeyer +177022,Rosalyn Coleman +25639,Gustav Henry +1401539,Chris MacManus +1673508,Tommy Reilly +1436291,Rongjian Yang +1057661,Eileen Elton +153359,Ann Mitchell +17198,Megan Dodds +87577,David Ingram +16719,Josef Ostendorf +146516,Josie Loren +1502441,Kornelia Horvath +1668856,Marty Stonerock +147638,Senta Dorothea Kirschner +209994,Heather Craney +1003242,Jamie Munns +587675,Yoo Yeon-seok +1096776,Christian Traeumer +132183,Julian Rappe +124093,Artyom Strelnikov +592095,Ayumi Takano +271770,Ana María Custodio +155871,Vladimir Skomarovsky +1358981,Zahir Zahrieh +1222968,Richard Blade +1293070,Eliana Grosso +141536,Emer Kenny +1759637,Rose Wakesho +1805163,Charlie Reyes-Torreblanca +1235168,Alejandro Abellan +46314,Jörg Purschke +1650717,Stephan Dubeau +1500686,Donovan Jackson +1094420,Saxon Anderson +106595,Maksim Drozd +550698,Orville Caldwell +47653,Aidan McArdle +78938,Nicolas Sarkozy +150468,Leontine Borsato +82745,Angel Boris Reed +1462484,Bryn Jones +1891497,Aspen Rader +1902796,Brytni Sarpy +266665,Jacques Dacqmine +68891,Roger Murbach +1528490,Jodi Wood +60096,Brandon Firla +170276,Kelly Wood +1185416,Ross Newton +102648,Jill Gatsby +29432,Jean Sobieski +30737,Bolek Polívka +129445,Sara D'Amario +32160,Simon Williams +110350,G. Sacco Albanese +1669338,Olivia Gillies +941439,Olivia Tennet +1327945,Tom Rhys Harries +41001,Tessy Aselmeier +1474244,Lise-Lotte Hjelm +86062,Anant Mahadevan +1506497,Steven Patrick O'Connor +1667331,Hannah Scheibe +1531022,Kelly Baker +233135,Nick Ashdon +937258,Yoshiko Okada +1356001,Harley Morenstein +180805,Cody Brown +1710034,Ga Deuk-Hi +1076923,Victoria Risk +1433475,Jacob Ulrik Lohmann +1370513,Lenna Kuurmaa +1462255,Duke Murphy Dennis +1331806,David Di Napoli +1735568,T. C. Anyachonkeya +95488,Bob Denver +1544222,Philip J. Spinelli +1447888,Kyle Fowler +1323318,Olaf Burmeister +1242012,Peter Armitage +97032,Maria Bonnevie +236653,Kevin Shea +1528557,Zeb Halsell +1723622,Jessica Jean Harland Stubbs +129804,Evelyn Hindricks +145320,Cara Mantella +182600,Christopher Bradley +1657777,Reuben Rox +1146848,Sébastien Castro +1588357,Charles Gertner +1888502,Jörg Schäfer +58395,Karin Konoval +186642,Enrique del Castillo +833802,David Bueno +37647,Michel Lagueyrie +139616,Sheila Shah +1297473,Ken Bolton +1120095,Joren Seldeslachts +1620093,Alain Derboy +48081,Wolfgang Böck +100900,Ivonne Sentis +142978,Kool Shen +32989,Denys Hawthorne +35908,Catherine Hiegel +1545513,Steven Andrews +503150,Bojan Navojec +1436275,Gangqiang Yang +1168911,Jill Donnelly +85481,Ed Corbin +69549,Maxime Leroux +1359100,June Nash +1283655,Lydia Velezheva +1835242,Michael Wisniewski +1486001,Daniela Cristofori +99140,John P. Baniqued +1839564,Pirkko Kankaanpää +120321,Giovanni Cacioppo +590955,Lori Lahner +1559778,Ming-Yang Shih +237177,Hajime Izuki +117008,Joëlle Miquel +1418975,Hendrik Toompere Jr. Jr. +80108,Satoshi Tsumabuki +1142298,Pedro del Río +1133381,Beverly Bentley +77755,Joseph Bruce +42014,José Suárez +1295353,Phil Heath +1185477,Siobhán O'Brien +37492,Eriko Tamura +1560251,Frisco Cosme +1098664,Dylan Playfair +1270465,Josephine Timmins +1433344,Çiğdem Tunç +977837,Harry Seymour +1169500,Olli Similä +1111432,Kate Moran +1080198,Sari Akasaka +130221,Robert Capa +159454,Peter Breitmayer +1119986,Pantelis Zervos +36210,Jean Gaven +36803,Stephen Dunham +1559701,Alejandra Pérez +29931,Deborah Duke +1475089,Ian Rozylo +1395348,Sasheer Zamata +1334989,Shawn Donahue +555061,Kôta Kusano +593051,Jake Austin Walker +586549,Sean Grady +163545,Simon Delaney +235607,Maxim Lagashkin +104340,Vincent Baggetta +115656,Miho Shiraishi +1816840,Sergey Kempo +1422283,Carl Voss +70351,Buster Larsen +107764,Andreas Cappelen +1455911,Kate Fuglei +1184459,Hiromi Nishikawa +1828836,Truman Van Dyke +1851689,Jeff Grabowski +1438834,Justin Burford +202573,Claus Bue +26085,Richard Dean Anderson +1844336,Mirjana Raos +39468,Barbara Pilavin +85721,Tamanna Bhatia +1155563,Alissa Wilms +77536,Søren Bregendal +1488961,LilRel Howery +1448024,Mimosa Willamo +1173627,Leonardo Ruta +59117,Angus Sampson +1185482,Simple The Bull +1225886,Sundra Oakley +1434104,Fred Jaggi +1133063,Dana Gourrier +1427460,Ty Forhan +931855,Hili Yalon +1107770,Kazuyoshi Hayashi +1257128,Elena Chernyavskaya +1139049,Michelle Ye Xuan +990397,Helen Lowell +1279006,Lawrence Chenault +1522152,Denise Kaderabek +1377087,Emily Peterson +1152095,Eric Chadi +115376,Raymond Lovell +1374515,Lee Yeon-Doo +1147112,David Rudolf +83201,Mikiko Tsubouchi +1540603,Hali Jones +1439851,Richard Pena +116510,Margreth Weivers +1784328,Emmett Mitchell +1074591,"""Freeway"" Ricky Ross" +1265888,Xiang Chuifen +1682535,Kim Adis +170333,Eddie Hassell +930580,Anna Azcarate +544960,Michel Khleifi +24968,Nils Allen Stewart +998246,Gillian McCarthy +1197163,Ronnie Dapo +90475,David Hanson +1851029,John Henry Binder +45445,Megan Gallagher +1245859,Nishigandha Wad +53335,Rachel Avery +203516,Mariana Klaveno +109067,Tabi Cooper +13852,Virginia Cherrill +136774,Helene Reingaard Neumann +1589600,Alexander Nicosia +1313162,Emerson Johnson +1252507,Jana Lee Hamblin +1377888,Katie Buitendyk +47702,Tom Riley +1326239,Ryan Greer +650356,Erin Carufel +1399567,Jo Cameron Brown +108475,Mari Perankoski +234314,Mark Gregory +1356263,Ebru Caparti +1383174,Dina Kelberman +1355497,Thomas Nawilis +260,Marco Pérez +1303089,Thorir Sæmundsson +1745598,Steve Ciro +86634,Viktor Tsoy +1529025,Atesh Salih +1833056,Jan-Erik Olsson +168525,Nicki Clyne +23169,Anna Maria Sturm +1155127,Mackenzie Sidwell Graff +1184380,Alan McGee +961834,Alex Anfanger +1339114,Oliver Maurer +233299,Tyler Mason Buckalew +1883846,Sarah Filippi +933330,Mirella Banti +1055158,Elidh MacQueen +1189686,Lilita Bērziņa +584189,Dan Toren +1168178,Mario E. Garcia +590883,Marcial Tagle +30757,Mark Trares +1744039,Brian Neal +84788,Kim Mu-yeol +1190216,Oleg Efremov +1443677,Queenie Samuel +1040410,Leon Bibb +1064507,Chris Comvalius +1194351,Anna Maganini +1036371,Alex Castro +234821,Pier Giorgio Bellocchio +4595,Sue Bernard +1399369,Chloe Hurn +102673,Ernst Udet +932102,Don Mac +30980,Mike Lane +1267378,Cassandra Van Dongen +120073,Bruce Marchiano +1377169,Þrúður Kristjánsdóttir +1440222,Cho Kwai Chee +83536,Tessie Santiago +592367,Joaquim Lopes +1328504,Marius Du Plooy +1519437,Mariela Zapata +160580,Meredith MacRae +1888610,Thanos Liakos +1175480,Richard Gonzales +195751,Burton Richardson +1135308,Maurício Sherman +1528128,Josh Leyva +1607563,Fredi Walker-Browne +1271015,Lou Schneider +1196020,Joe Wredden +967696,Brandon P. Bell +1792102,Travis Armstrong +935421,Aleksei Kolesnik +1673476,Mark Rathbone +1426803,Ena Simović +71390,Manuel Cortez +141774,Reese Alexander +935514,James Inhofe +939744,Ida James +593083,Joonas Makkonen +1287565,Emmsjé Gauti +145086,Claire Vernet +1398010,Tara Jean Verrette +126690,Ryuuzaburou Ootomo +1491360,Lucas Valadares +104133,Warren Draper +1426915,Samuel Churin +1632611,Claire Benedict +1492449,Virginia Engels +236830,Tatyana Doronina +1085990,Guilhem Simon +8992,Pierre Batcheff +1081149,Mika Aguilos +1267015,Guillaume Tavi +1358986,Maggie Geha +994599,Sumner Getchell +1535461,Paul Cremonesi +551474,Nik Markovina +578844,Sayat Isembayev +1469806,Rafael Sochakov +81920,Carolyn Minnott +205885,Chenier Hundal +1776759,Kamal Bin Abdul Rahim +1425686,Remington Moses +90071,Gene Autry +1048764,Samir Djama +1252220,Emma Stansfield +1459155,"William ""Will"" Daubert" +222574,Mary Duncan +109058,Egor Beroev +13555,George Bancroft +1481021,Jimi Shlag +70754,Gerda Nicolson +1308807,Delta Giordano +121615,Renu Setna +234479,Dakota Goyo +106666,Jennifer Holmes +1071155,Marcus Howard +1356425,Eric Gallienne +1562087,Martin Bermoser +1495091,Orianna Herrman +1070721,Zara Phythian +550117,Wanetah Walmsley +117845,Vaiba Flomo +20020,Sven Martinek +1375944,Kim Dong-young +1220148,Matthew Kelly +1464913,Manfredi Saavedra +1337142,Vladimir Vladislavskiy +1630543,Federica Sbrenna +91776,Alec Medlock +12269,Pierre Larquey +1415405,Jerry Clark +1837867,Cynthia Ream +145985,Billy Cook +1728984,Orly Schuchmacher +157757,Damian Samuels +1808610,Steve Suh +1375146,David Hutchison +78237,Thea Gill +1554021,Vlado Kerošević +1294285,David Fernández Fabu +86320,Sean Cameron Michael +41094,Luigi Casellato +119601,Karen Damen +1141402,Julia Morrison +1350056,Iva Pazderková +171561,Anne Frith +1019359,Charo Santos-Concio +1207288,Logan Pithyou +1419822,Hande Dogandemir +66072,Michael Buffer +1862605,Aurélie Chazelle +1752452,Giacomo Tarsi +936927,Lyn Evans +1168884,Frank De Benedetto +146748,Megan Hilty +70153,Martin Ontrop +225682,Ingrid Olerinskaya +18560,Michel Beaune +1290496,Vladimir Konstantinov +559730,Duda Little +1544911,Peter Campion +117598,Ivar Brogger +1264776,Thomas Thoroe +1737033,Tamila Bilalova +150832,Lauren Mae Shafer +1391314,Luna Rösner +589004,Javier Albalá +144863,Daragh O'Malley +1830204,Kevin Findlay +939099,Lou de Laâge +240781,Viktor Proskurin +223769,Konstantin Frolov +94309,Farah White +1636775,Jonathan Gaietto +1707872,Jordan Fraser-Trumble +120804,Tôru Masuoka +1600259,Rand Paul +1039607,Rami Reddy +1523042,Pierre Lelieu +18915,Catherine Schell +1829163,Rosaline Oscar +107634,Maciej Kozłowski +1763861,Marc Goodhall +1886300,Joe Lomas +1543145,Sumit Gulati +3284,Bruce Springsteen +1185478,Alice McCrea +1563602,Bernadette Sarcione +84076,Nick Zano +1667526,David Noll +624241,Svetlana Ryabova +112209,Juan Manuel Bernal +88219,Adam Baumann +128248,Nico Toffoli +233325,Jane Adams +1040511,Aku Hirviniemi +1707924,Darren Holmes +1013178,Frank Leigh +583600,Elen Rhys +1567685,Kliment Voroshilov +1695671,Franklin J. Sterns +1392414,Kazumasa Hoshino +1069989,Timo Linnasalo +1053372,Ferdynand Matysik +159544,Harry Moses +1157934,Tatyana Goncharova +95010,Stuart Randall +1753330,Dean Satriano +232828,Kiran Kumar +222881,Jai Day +109109,Rosie Fellner +142300,Julissa +1617638,Shin Minatsu +227938,Barbara Thurzó +1090678,Carlos Suárez +1084789,Naomi McClure +146761,Iva Janžurová +503103,Vanessa Bayer +582968,Julian Domingues +1484033,Kreisuke Yamada +174158,Barbara Weetman +116493,Peggie Castle +142937,Georgina Cookson +1636000,Antonio Zubiaga +175317,Gary Levert +1716515,Cameron Jones +929660,Valeri Kuzin +1135824,V.I. Lenin +46116,Marisa Solinas +1695669,Gino Lee +1204987,William Morris +67986,Joachim Calmeyer +1392198,Hana Ali +1063494,Karlygash Mukhamedzhanova +1675555,Mika Rättö +1709448,Alvino Rey +187183,Paul Bishop +1082026,Yuri Volyntsev +1483691,Mike Steinmetz +1154835,Cristina Rodlo +1808004,Givi Berikashvili +93170,Lloyd Lamble +1759895,Marc Thibaudeau +1140085,Cynthia LeBlanc +26253,Richard Lauffen +1620087,Jeanne Delos +213508,Astrid Bodin +79555,Lino Hincker +1118911,Erin Heatherton +109326,Benedict Martin +121935,Pepper Binkley +1106331,Billy Name +1175599,Miroslav Moravec +1257123,Sergey Lavygin +1035920,Tej Sapru +121411,Walter McGrail +154340,Ellen Clark +239579,Dore Mann +1642155,Robert Schlunze +1691471,Sari Cummings +38762,Gianni Macchia +586942,Federigo Ceci +80757,Mike Tyson +21124,Paula Garcés +446906,Mimoun Oaïssa +554387,Masaharu Satō +1275872,Jakub Snochowski +142948,Francesca Fowler +164771,Peter Duryea +1470851,Jaroslav Hurt +55850,Eugene Bervoets +1522151,Steve Piper +1170149,Mayuresh Wadkar +1106629,Raymond Mamrak +137068,Ivano Silvari +102186,Lisa Cohen +1472819,Stunt Silva +37143,Jean Murat +1508173,Edmund Donovan +1105086,John Blundell +1724696,Giullian Yao Gioiello +1744096,Maricruz Nájera +227802,Fishka Rais +99568,Julia Saly +86481,Carol Allen +1673555,Joe Molinas +1818030,Louis Dupuy +232808,Qiao Zhenyu +22823,Viktor Avdyushko +156978,John Fortson +1505253,Willy Safar +1061512,Alix Elizabeth Gitter +31643,Udo Schenk +138397,Irving Davies +1366239,Marco Massari +1510032,Carolo Ruiz +588175,Lars Ranthe +228710,David Robles +1607090,Pradeep Velankar +1235154,Olive Dunbar +569553,Geoffrey C. Martin +1123768,Lakshmi Menon +1014934,Giuliano Gensini +119225,Chuck Gillespie +105932,Louis-José Houde +1360368,Hubert Gagnon +1239215,Bob Arbogast +30538,Evelyn Varden +1441615,Marina Vasilyeva +114035,Seamus Dever +932764,Jung In-Sun +1205523,Carrick Glenn +40576,Ulla Strömstedt +1281096,Sonia Ciuffi +31385,Scot Williams +1888577,Yannis Rubus Rubulias +117803,Raymond Cordy +2244,Jesper Christensen +1486957,Bridget Everett +1185417,Charles Grant +48007,Willy A. Kleinau +764268,Ronnie Walsh +132542,Maurice Barthélemy +1106927,Arun Mathur +1522646,Antonio de Guzman Jr. +1359213,Mariam Bachir +130037,Ângelo Antônio +1656598,Christian Newling +223776,Lucia Ocone +1605317,Robert Gemp +1698788,Joe Coen +1375712,Jelle de Jong +1050186,Irán Castillo +1103650,Will Bakke +1010001,Fanny Sidney +136191,Min Tanaka +230885,Alejandra Grepi +28886,Hans Nielsen +1159602,Zita Duarte +1286523,Mamrie Hart +1053304,Lawrence Lipton +1214757,Michael Q. Schmidt +46451,Loes Wouterson +224666,Kiyoshi Atsumi +1446336,Mickey McReynolds +1569152,Anthony L. Fernandez +1806598,Sierra Love +68133,Jerome Courtland +59203,Marcia Haufrecht +1079514,Alessandro Partexano +1396371,Israel Amaya +1700945,Marie Gottschalk +1448942,Byron McIntyre +1105441,India Salvor Menuez +1764156,Lance Miccio +84523,Paulette Hinz +106655,David Hellenius +158830,Shannon Day +35540,Irshad Panjatan +1589610,Ledger Free +1090176,Boo Teasedale +136402,William Hinnant +222906,John Brotherton +940920,Maruja Grifell +47657,Henry Edwards +1470724,Anupama Parameswaran +484993,James Evans +138220,Matthew Betz +1804235,Chloe Catherine Kim +1489234,César Renato Suárez Morales +45819,Sascha Hehn +928453,Calvin Lee Reeder +128267,Michael Villani +1821642,Yolanda Rigel +934255,George Robey +179051,P.B. Smiley +1319925,Stefanie Bodien +101181,Harold Daniels +1499763,Lindsay Arber +1466977,Mingo De Pasquale +1661208,Bankim Ghosh +1271446,Naim Alherimi +54858,Richard Liberty +1707905,Steve Sammut +1643582,Sobhita Dhulipala +1631532,Vasia Panagopoulou +222564,Stan Big Sorrel Horse +1001784,Aziz İzzet Biçici +938201,Johnnie Schofield +1821495,Vincenzo Lucatorto +1089696,Ben Cleaveland +1197089,Johanna Murillo +51300,Derek Mears +930997,Brianna Lee Johnson +1754592,Tamiko Brownlee +1196848,Stephen Fiachi +127127,Marielle Jaffe +1015388,Wilson Millar +186550,Matthew Howard +1891535,Jacqui Pugh +934847,Chris Claremont +229272,Gerolamo Alchieri +143715,Grace Rex +543555,Camille Figuereo +1135781,Mimi Chu Mai-Mai +1355961,Anna Veselá +71363,Marc Berman +73610,Tim Rozon +207939,Toby Levins +228119,Phillip Sacramento +964776,Comfort Fedoke +240099,Julia Ewing +2339,Julia Hummer +1167004,Anna Bjelkerud +1485180,Greg Flowers +48997,Harry Baur +67262,Mónica López +182049,Gerard Jordan +1548526,Ben Wilby +47435,Nina Agapova +102916,Yolanda Lacca +11153,James Denton +122556,Ian Bonar +1583957,Marek Serdiukow +144779,Rémi Martin +1328064,Alesandra Assante +87513,Coral Browne +1487596,Art Cruz +235786,Dan Burr +20590,Francesco Casisa +31544,Eolo Capritti +1190204,Georgiy Shtil +1372348,Aziz Muradillayev +1079024,Kathy Wittes +15628,Paul Carr +1542699,Ariana DeFusco +1156405,Nanne Selinger +553323,Hisako Manda +47965,Alice Field +1320017,Sarah Naylor-Liddell +1426210,Larry Reichman +1719896,Heather Dalberg +1648798,Phich Bun Ly +1211314,Subrata Sensharma +170830,Annie Gagen +74513,Stephen C. Sepher +590821,Tara Macken +169693,Stephanie Chao +63581,Ding Xiao-Lung +217341,Claire Gordon +1119170,Hau Woon-Ling +97657,Lyle Bettger +109889,Emmanuel Courcol +83933,Yutaka Nakano +1107486,Liana Mendoza +1088703,Adolfas Mekas +96172,Sam Levinson +575979,Ron Cornet +21292,Alain Goulem +986143,Suzanne Voss +1776762,Wei Ren Lian +1878828,Evelyn James +1033806,Raageshwari +225724,Aleksey Glazyrin +117555,Nigel Planer +63420,Katy Karrenbauer +1483728,Marianne Oldham +205468,John Armstrong +105979,Marie Vinck +89000,John Ward +1252873,Max Fowler +1176836,Jan Révai +1819142,Janet Worner +113636,John Reach +1368887,George A. Sack +1164932,Michiyo Murase +1071138,Anja Herden +54023,Yangzom Brauen +1759665,Chia Chen +1433914,L.E. Lewis +1548927,Helen Bradbury +5416,Agathe de La Boulaye +111793,Klas-Gösta Olsson +965232,Christina Masterson +550473,Jeff Galpin +73755,João Carreira +559195,Tobias Santelmann +1164259,Kylie Rogers +1266677,Abigail Blackmore +111006,Jake Messinger +1718174,Friday Chamberlain +1449637,Cathy Duros +28532,Maxim Mehmet +1156242,Liberty Selby +1073055,Hiro Tateyama +109329,Paula Bingham +1127747,Florence Reymond +1486941,Jan Skotnicki +1297771,Agnes Herrmann +1138241,Zofia Saretok +1218238,Mackenzie Mauzy +1294399,John Apple +83002,Jessica Chastain +590183,Brian Lafontaine +69378,Kim Sang-kyung +1621147,Georin Aquila +1430414,Scarlett Brookes +205335,Max Adler +161790,Leon Lontoc +1871293,Antonio Vezza +1762635,Curtis Caldwell +114291,Robin Corey +1682080,Adinath Kothare +2126,Herbert Bunston +1270862,Darcel White Moreno +126905,Leon B. Stevens +975037,Ricardo Blume +208307,Lindsey Broad +1369033,Stacey Carino +506085,Sami Gayle +7144,Michael Flynn +1188864,William Larsson +1479795,Ludmila Šafářová +145331,Cezmi Baskın +1544813,Adam Villacin +1829620,Emma Duke +1213127,Diane Klimaszewski +1556245,Marion Sheldon +1049360,Stela Ćetković +96522,Mark Huberman +1484860,Tibor Orbán +1154280,Buzz McLaughlin +46526,Charly Berger +1155121,P.J. Boudousqué +1716522,Caleb Martin +1442429,Aatash Amir +933581,Maura Kidwell +1324183,Yasushi Sakagami +563909,Jacob Thuesen +1071590,Susanne Gschwendtner +96189,Anthony Ainley +12745,Heinz Rühmann +1317588,Annie Mörk +63347,Eva Derrek +1784278,Irena Bendová +1095811,Jane Baxter +1719884,John Barnes +1385282,Vlam Beukes +229302,Ku Feng +1611362,Greg Lukianoff +1851075,Ivan Zekic +1100363,Katharina Hauck +929043,Berta Muñiz +118319,Harry Cheshire +225017,Roberto Álamo +30792,Wiebke Reed +1159993,Manuel Vicente +566883,Tess Amorim +92196,Marcos Mion +692,Jennifer Ulrich +147899,Tino Navarro +1346404,Brady Novak +33862,Antonio Casagrande +1140088,J.J. Kandel +121689,Miguel Ángel Silvestre +588041,Pavel Melenchuk +1775297,Louie Benson +1266167,Graziella Marina +92051,Per Theodor Haugen +1594741,Mekai Curtis +134387,Mitsusaburô Ramon +79346,John Shaw +1685382,Javier Torreiro +1557952,Ekaterina Samsonov +1102535,Johnathan Fernandez +586744,Thomas Blanchard +132913,Ramón Monterrey +1088054,Bevin McGraw +1666623,Kari Sara +22189,Brigitte Janner +225220,Gordon Cooper +1439296,Karin Rørbech +124511,Gerard Thoolen +1039219,Yusuke Yamamoto +1176792,Dana Garrett +180408,Jill Latiano +116649,Charles Mingus +1391884,Kadan Rockett +1167136,Mariella Ahrens +205586,Alberto Bonilla +1097801,Eliane Gagneux +33479,Henry Beckman +1074927,Jordi Aguilar +1502447,Charlotte Gulezian +138249,Marilee Phelps +1241613,Behroze Sabzwari +1381547,Jack Goldenberg +190449,Andrew Lodge +1683128,Jay Erwin +1431772,Ahnna Rasch +554683,Rick Mora +1449636,Lola Crespin +1439315,Lucy Adden +1626334,Tino Giada +142798,Zoe Naylor +1281095,Luigi Ciavarro +1544453,Jared Carter +1730637,Clive Myrie +1221635,Michael Dangl +1692098,Kent Card +1795186,Gus Navarro +14948,T. P. McKenna +1259587,Nejat Birecik +590772,Necla Nazır +1508582,Hubert Lavallée Bellefleur +1747655,Brad Brown +93740,Baynes Barron +1539092,Lester Ellis +222682,Astrid Holm +92930,Bella Darvi +1606881,Didier Léon +1528491,Beverley Brooks +1902245,Rosy Dilettuso +1599262,Tristan Matthiae +1438681,Justin Christopher Vaughn +169691,Thomas DuPont +1302704,Lucrezia Guidone +1179789,László Gyémánt +1330569,Vaidotas Martinaitis +87725,Gösta Bredefeldt +189816,Joe Cirillo +1593036,Kristopher Lofton +571336,Cassandra Morris +1097232,Tomas Magnusson +1431528,Dante Ponce +107561,Mido Hamada +1604286,Sean Dulake +180916,Markus Parilo +590270,Francis Chouler +1381459,Antonio Sarrá +1620912,Wang Xue-Mei +96672,Michael McGrath +107942,Marek Taclík +81503,J.A.Q. +1171407,Werner Kolf +1065793,Ian McPhail +1834866,Billy Miller +189313,Eric Mason +1097175,Mark Rawlings +1734181,Greg Van Borssum +1812243,Davion Traylor +552395,Anthony Carpio +1542795,Till Hoheneder +1239464,Nora Sheehan +97046,Jeni Le Gon +1315321,Consuelo Pascual +935293,Dean Geyer +73548,Fridtjov Såheim +1426635,Joseph Randy Causin +96028,Rick Applegate +1400591,Jacqueline Donelli +69037,Massimo Boldi +1535067,Karim Zreika +564324,Ileana Herrin +592919,Kazimierz Rabski +93593,Louise Wallon +107489,Garret Sato +1277130,Beto Schultz +224281,Denis Nikiforov +1304141,Megan Lee Joy +1084852,Jimmy Townsend +88814,Parveen Babi +28258,Alessandra Mussolini +1750930,Jason Sheridan +1640887,Ruka Wakabayashi +962031,Javiera Díaz de Valdés +1158115,Mike Heim +1252781,Kamya Punjabi +1651420,Laraine Dix +1453312,Olivier Bénard +1579239,Nick Staverson +1271949,Lucas Salvagno +1294642,Jin Kyung +74312,Ahney Her +1359968,Patricia Henderson +1644786,Amitai Kedar +29198,Nikolai Batalov +1892771,Roger Hyams +1796085,Michael Birnberg +1459261,Aleksey Ptitsyn +49825,J.H. Wyman +1243532,Mark van Eeuwen +229264,Lucky Ali +86905,Caroline Rhea +76595,Byron Howard +1394420,Sophie Dalah +143627,Aleksandr Oleshko +1351682,Paul Henri +1349747,Jonathan Whittaker +1696904,Jess Brown +1181938,David Auker +1341809,Armen Dzhigarkhanyan +76878,Kathleen Mackey +1865502,Deidre Harmon +593169,Dana (I) +1295373,Thomas Ahrens +580659,Abinaya +1318798,Eric Goins +1116333,Hisako Kanemoto +62729,Brendan Donaldson +1766387,Inessa Rodionova +127233,John Liu +105020,Brad Morrow +1722585,David Nunn +1357877,Lennart Betzgen +218984,Johnny Ward +28586,Frank Christian Marx +150062,Erika Ringor +1898498,Luzia Braun +1178521,Jocelyn Lee +1383566,Audrey Jessup +1546927,George Yoshinaga +1821521,Clinton Roberts +64017,Martin Rapold +1399749,Ethan Lawrence +1717818,Eric Sharp +1641647,Eka Lakhani +101024,Kate Orsini +993929,Martina Haag +1040480,Dominic Kinnaird +107288,Abel Salazar +34558,Florenz Ames +1796391,Abanoub Andraous +1244469,Louise Brealey +83443,Joan Blackman +158161,Barbara Mandrell +1389750,Cierra Ramirez +32617,Milan Jablonsky +1236584,Andrew Sullivan +1069224,Sivan Levy +1398191,Vincent Poirier +129442,Barbara Mautino +58480,Gustav Adolph Artz +1375093,Lori Farrar +1074677,Jonathan Park +234526,Raphaël Bouvet +67254,Rudolf Blümner +1175950,Liza Balkan +973407,Omar Ayala +226245,Henrik Anker Steen +126105,Guillermo de Cun +1398257,Stephen Todt +1466531,Andrew Ross Sorkin +15995,Charlie Brill +1219590,Mitch Silpa +1707959,Xander Paterson +1106961,Nell Cattrysse +1423913,Colin Love +1732666,Claire Whitworth +1879674,Blair Wright +1649835,David Lloydy +213484,Shin Saburi +212324,Mekenna Melvin +131385,June Marlowe +1318195,Shaun Brown +1440182,Max Brebant +79619,Noémie Yelle +1315944,Stephanie Kim +1182187,Balaji Patturaj +167365,Jess Walton +1890511,Freddy Elletson +1304845,Ken Anthony II +1418164,Jo Jo Karume +1069635,Sophie de Fürst +88929,Jean Yoon +57497,Scilla Gabel +1074712,Albert Mieza +591152,Hema +1359127,Annette Ciarli +207713,Lisa Berry +1315802,Dawn Hamil +205307,Lucy Hale +121783,Toivo Mäkelä +589727,Nina Quartero +1375796,Emily Robinson +1858436,Giorgio Centamore +1250552,Luk De Konink +99322,Chris van den Durpel +60841,Nick N. Raslan +177144,Adam Tomei +1418251,Kirsten Comerford +1360310,Moussa Sylla +1205488,Tom Hobbs +1117264,Alesandra Durham +1540756,Sananth Reddy +1410499,Christian Wennberg +278923,Joel Torre +587382,Anne Verhoeven +107888,Bernard Ladysz +1753492,Katherine Spillar +1134730,Jimmy Lung Fong +1464494,Paul M. MacWilliams +25382,Megalyn Echikunwoke +571172,Park Jung-Min +145375,Vildan Atasever +121522,Niels Skousen +1050122,Jelena Rakočević +186612,Luis López Somoza +39171,Andrea Bogart +3581,Philippe Léotard +23587,Stephanie Leonidas +1322313,Morgan Watkins +1152086,Simão Cayatte +1495519,Chariz Solomon +123181,Martin Dubreuil +122662,Kumiko Nishihara +1276910,David Bonneville +1620566,Said Khalil +1004977,Roger Pace +1000336,Irene Seidner +149516,Vanessa Bednar +1752167,Matthew Willson +69206,Joanna Shimkus +90135,Marina Inoue +1619020,Ilona Gurnik +1100816,Rene Aranda +930582,Stefan Cronwall +1218733,Katrina Milosevic +1544921,Maverick Flack +292214,Nikki M. James +551502,Masahiro Noguchi +559677,Odette Laure +1057923,Nao Okabe +1518374,William Genovese +1583396,Elliott Weston +1499543,Kendra Leigh Timmins +1194407,Sergio Pierattini +91547,Vijay +1002409,Danielle Hartnett +1223462,Cheetah Chrome +121603,Julian Coutts +1388473,Lucia Forte +1467993,Charlotte Linklater +1135434,Yûji Nakamura +1895605,Sorana Black +1553394,James Van Hoften +68470,Minami Takayama +69230,Lars Ulrich +1672071,PJ Rossotto +96859,Christiane Eudes +116847,Alan Austin +130876,Nini Salerno +579468,Bente Børsum +28189,Mario David +1629275,Santiago Segura +1517741,Zarrin Darnell-Martin +1360013,Jodi Lyn Brockton +1270296,Olav Nordrå +20270,Jens Münchow +62357,Nadja Brand +582649,Ram Dass +39652,Kenny Ausubel +1821310,Matvey Novikov +592476,Marian Álvarez +99898,David Chase +1161724,Martin Greif +73742,Luc Leclerc du Sablon +527094,Arzu Kökeng +1368001,Andrew Elias +129777,Boondox +1440647,Mick Innes +512966,Ksenija Marinković +92678,Kim Mi-Sook +1636690,Jarosław Szczepaniak +274195,Raymond Segard +95102,Kaitlin Olson +1031001,Antonia De Michelis +1255070,Erik McNamee +97213,Warwick Ward +165087,Karen Green +1185453,Mike O'Dowd +282150,Danièle Gégauff +1328820,Roslyn van Doorn +564838,Liu Yang +30308,Margarito Luna +796326,Marilù Tolo +55347,Julian Messner +1529875,Matt Kwaczynski +1243167,Kyle Dunnigan +1225652,Jennifer Kydd +146637,Marianne Groves +143734,Mariya Filshtinskaya +1207913,Greg Krantz +568585,Ted DiBiase +1525501,Saška Dimitrovska +29528,Matthew Rhys +1055097,Krzysztof Ogloza +1545523,Chelsea Carnder +87880,Tomas Alf Larsen +189309,Dermot Tuohy +1187352,Florian Schmidt-Gahlen +1397404,Jake Lucas +133819,Tamer Yigit +104367,Brett Kelly +1622092,Anthony Bryant +1707958,Connor Bashford +1165551,Manou Kersting +564629,Ashley Fink +86206,Marie Westbrook +106656,Mirja Turestedt +724188,Bárbara Lennie +1086860,Logan Wong +1055696,Nanette Kuczek +115683,Andrew Hawley +37985,Adrian Lukis +1246233,Kokoro Kikuchi +1482818,Sára Venclovská +1905539,Eric Paulsen +82698,Gorka Lasaosa +101091,Brooklyn Sudano +100342,Margia Dean +194040,Michael Heit +1694308,Edgar Moro +67323,Margherita Buy +1045389,Beau Brasseaux +30225,Merle Oberon +1706002,Salvo Libassi +150977,Edvin Laine +1531547,Francesco Procopio +1231304,Luis Chávez +1467545,Holly Moore +1630213,David Thomas +87769,Dick Martin +125631,Jonna Järnefelt +1224518,Whitney Port +1115122,Brandon Soo Hoo +1124651,Margaret Davis +1285323,Yoni Dahan +1423099,Mary Carmen +1758520,Sarika Singh +206811,Jocelyn Towne +1102427,Steven Cree +1392839,Carmella Cansino +1465496,Zillah Glory +44888,Linn Sara Reusse +1504903,Cullen McCarthy +114271,Robert Trebor +109742,Jordan Berkow +74154,Kelan Pannell +123797,Maureen Beattie +97424,Susan Shaw +1841530,Carmen Bolin +1285101,Lorenzo Patané +584411,Omakuchi Narasimhan +94972,Elliot Ngok +1011225,Tina Apicella +67704,Hugh Dillon +1332413,Christian Fremont +192926,Helen Grace +1704676,Miguel Angel Marrero +1374336,Leilah de Meza +1164664,Lena Tchigrinova +45419,Ry Russo-Young +1238025,Pankaj Berry +553407,Yasuo Matsumura +1005804,Alina Vargas +128235,Anna Maria Barbera +583897,Norbert Ferrer +1883850,Nick Britton +38376,Jacques Beauvais +72946,Judith Chemla +209387,Jørgen Buckhøj +80875,George Hilton +23440,Konstantin Khabenskiy +1178926,Samuel Ting Graf +1735565,Naomi Parshin +101761,David McLean +1898625,Mirko Da Cruz Evora +1401369,Yukihiko Kageyama +224282,Ben Waters +1647140,Ken Marquis +1076915,Antonio Ortiz +1176977,Kaori Kobayashi +37804,Corny Collins +1074800,Alberto Sorrentino +100586,Jon Foo +78647,Sandy McLeod +1302540,Hugo Ishida +11645,Bleuette Bernon +1721910,Anna Kasyan +64305,Terra Vnesa +1506499,Christina Venuto +586191,Philippe Rebbot +1265890,Wu Shenming +174466,Ogie Banks +45390,Michael Ornstein +1321963,Catherine St-Laurent +151183,Ayako Kawasumi +15481,Marianne Basler +927863,Michael Ameen +1387384,Finlay Wright-Stephens +1141877,Ariana Neal +994441,Nail Idrisov +932252,Barbie Forteza +1274511,Kyle Red Silverstein +577829,Brigitte Périn +1372217,Anna Niemtschk +110636,John Di Crosta +128410,Enrica Rosso +1879646,Gladys Mathon +110768,Veijo Pasanen +78231,Johannes Krisch +1052108,Liam Payne +39847,Halina Reijn +66994,David Gianopoulos +1539204,Lai-Ling Bernstein +1148626,Lindsey Morgan +123328,Sreenivasan +176544,Suzanne Lloyd +1714291,Cassandra Inman +1764694,Josh Buland +28140,Anna Campori +939070,Robert Ellis Orrall +147706,Paresh Ganatra +1502989,Priya Rajaratnam +1502858,Tania Cabrera +1209944,Devra Korwin +1157298,Greg Kam +26516,Ingeborg Schöner +1096265,Pauline Brunner +1090697,Rob Mosca +97797,Cindy Beal +54792,Brian Mahoney +1175525,Tsang Ming-Cheong +1774534,Frank Madigan +25972,Melina Kanakaredes +1011306,Peppino Mazzotta +1386148,Brian T. Delaney +556989,Sara Alzetta +208524,Andrew Astor +1484590,Pauline Shepherd +936233,Antonio Bacci +591529,J.C. Chasez +583769,Meg Barrick +1584780,Aisha Takow +1002566,Donnie Brooks +1755088,Leslie Anne Whitman +118459,Mark Gibbon +1386334,Caiti Ward +61604,Penny Balfour +109046,Tiya Sircar +1714065,Brigitte Belle +1019089,Marcello Urgeghe +6321,Valente Rodriguez +1523856,Rachel Rai +562603,Vasiliy Shukshin +1112469,Ayala Iijima +106673,Rick Morrow +1072882,Mindy Robinson +30325,Michael Mears +145389,Ayça Bingöl +1838597,Corrina Cornforth +1026994,Victorio Blanco +13313,Adolph Caesar +1879938,Giuseppe Ansaldi +1277799,Michael Draper +1690239,Winnie Mzembe +588989,Mae Madison +1351386,Damian Hardung +239996,Benjamin Walker +588991,Sherwood Bailey +562155,Jalil Naciri +1905790,Tomas Fingerland +399477,Yo La Tengo +1056614,Chisako Hara +1511957,Ali Skye Bennet +25099,Matt Patresi +129112,Gianmaria Biancuzzi +1388977,Koen Wouterse +566094,Lex de Groot +1746933,Angela Davis +1511126,Lucia Oskerova +88048,Tjitske Reidinga +1111984,Geir Børresen +1555012,Candis Nergaard +217889,Daniel Kruse +1104619,Alano Miller +1207316,Dennis Ritter +1235568,Beth Dover +1184823,Marcus Mathias Aarnseth +1399529,Dixie Arnold +1888,Jerry Weintraub +1599272,Konstantin Gerlach +1291703,Josefina Scaglione +1460982,Leith Towers +74361,Venus Terzo +1195179,Shinpachirô Asaka +1880896,Kusum Haider +1359415,Alex Beckett +52702,Jonathan Walker +1511954,Alexandre Gorchkov +1816451,Ren Croney +76904,Brigitte Roüan +979954,Nicholas Pasco +1547859,Jonathan Billions +1213467,Iyanla Vanzant +85658,Dayanand Shetty +90561,Shūichi Ikeda +1391352,Cat Lynch +126230,Jamie Payton +117824,Assaf Cohen +1187587,Paul McGuinness +16790,Gaspard Ulliel +1211093,Brant Daugherty +86983,Steve Bell +1579399,Chris Valenti +30758,Jamie Gillard +153490,Lisa Seagram +1069672,Caley Hayes +9341,Bill Pope +147535,Huub Smit +101958,Richard Crane +144211,Matt Walton +105835,Robert Menzies +1880341,Rufin Doh Zeyenouin +170231,BoJesse Christopher +545399,Bryan Brewer +1863906,Fred Steffen +1737939,Alex Becconsall +1418889,Poulad Kimiayi +1072414,Bukhuti Zakariadze +629064,Mayuri Kango +1663354,José Luís Mósca +50686,Luca Maric +234260,Katja Kiuru +62864,Chester Tam +131666,Seal +1507241,Johnny Stuart +1450879,Susan Valdez-LeGoff +1880533,Ciro Giustiniani +1189504,Charlotte Walker +1094134,Kolton Stewart +150664,Gino Anthony Pesi +202061,Diana Terranova +1366551,Tommy Nash +208882,Craig Stanghetta +1611025,Bianca Valerio +35535,Franziska Knuppe +1167172,Katherine Fitzpatrick +1036344,David Brazil +1302422,Katie Nehra +938886,Lounès Tazairt +1037943,Kati Zsurzs +69196,Louise Grinberg +78973,Jonathan Sachar +110470,Jackson Berlin +1495092,Brian Borcherdt +1041308,John Armstead +583487,Eric Barbarit +1514779,Julia Wentzel Olsen +1818056,Mary Hennessey +567614,Laura Dickinson +574092,James Bitonti +1295464,Kim Bo-mi +1572347,Jeon Bae-soo +104644,Dan Povenmire +554456,Joan Lee +35045,Guy Delorme +1578026,Inès Fehner +83818,Stefan Gumbs +1837457,Jacob McCafferty +1354964,Miki Esparbé +19774,Mary Nighy +1042249,Priya Arun +232944,Claudia Coli +133799,Keith Knight +1509238,Edoardo Crò +67810,John Gilroy +1843662,Charles Albiol +141681,Néstor Kirchner +1395660,Alessandro Borghi +1110505,Alain Hernández +1819149,Rene Flores +1518857,Gaute Munch +1312061,Samuel Theis +1244801,Yeon Jung-hoon +1062344,Rento Isobe +602161,Paul Gordon +553890,Ken Ishiguro +121100,Buddy Pepper +165074,Charles Davis +65809,Dominic Ferronato +1745065,Mónica Huarte +1847925,Gino Iannucci +1243489,Sharon Percy +1833805,Lewis Snow +1236010,Kenneth Meseroll +1192368,Miķelis Žideļūns +136875,Ryôji Hayama +162945,Cynthia Geary +1173203,Austin Wai +125799,Pirkka-Pekka Petelius +1084896,Vanessa Cooke +141983,Johan Hallström +1614744,Sergei Priselkov +1898780,Ariadna Martín +239165,Anastasiya Bezborodova +53435,Rodney El Haddad +123664,Kim Min-hee +27221,Dominique Farrugia +1019964,Asha Patel +1761836,Markku Blomqvist +23303,Asma Nouman Aden +28513,Rachel Lascar +5007,Jackie Sawiris +1174106,Josh Perry +85774,Larry Thor +1322985,Ara Ball +73016,Debi Derryberry +1595251,Leo Staar +584307,Ondas Besikbasov +102454,John Lawlor +1180979,Josh Brener +240824,Ivan Ryzhov +232842,Leonid Markov +1064626,Seyna Seyn +1260687,Esko Roine +1057442,Derek Theler +215890,Maurice Benard +1485207,Becki Burke +1436154,Guoyin Jiang +558923,Jordan Trovillion +60614,Chad Riley +32152,Maria Perschy +1032629,Shahbaaz Khan +1362172,Frank J. Aard +110034,Anatoli Petrov +85148,Brontis Jodorowsky +550307,Neil deGrasse Tyson +1191768,Ketaki Mategaonkar +110026,D'Angelo Midili +1615605,Joshua Schlegel +31515,Mark Cuban +1254820,Rei Okamoto +1584775,Olga Gainullina +552393,Nicky Li Chung-Chi +68929,Laurie Anderson +1093934,Barbara Willar +96032,Chris Conroy +944649,Ellen-Ray Hennessy +1014629,Osvaldo Djeredjian +1053419,Erin Wilhelmi +928181,Harish Kumar +211596,Inbar Lavi +19357,Steen Stig Lommer +1047981,Pyotr Glebov +41039,Judd Apatow +113971,Scarlett Alice Johnson +141557,Roberto Della Casa +1527746,Alexandre Chen +1193610,Helena Phil +1056670,Clem Beauchamp +1793184,Elijah Daniel +1886067,Ana López +1650140,Dominic Liriano +942100,David Selvas +148268,Ed Horwitz +1202589,David Disher +1205887,Joshua Farcone +124757,Sergey Nikonenko +1167390,Erich Krieg +1746881,Shawn Clark +1432979,Oriah Acima Andrews +142386,Leslie Mitchell +133979,Jennette McCurdy +1133520,Lucas Gregorowicz +681098,Camila Bordonaba +1593239,Moshe Dayan +1872451,Ida Boros +6644,Wanja Mues +103585,Al Guarino +561927,Ian Palmer +1089163,Bernard Thinus +164930,Katrina Law +157859,Adam Lazarre-White +1426372,Julien Personnaz +134071,Alan Bridle +75178,Craig Stott +1161972,Omar Hakim +1286419,Noh Joo-hyun +53425,Alexandra Vandernoot +98653,Valentine Miele +1361100,Bailey Spry +52357,Kaija Pakarinen +1006756,Noël Godin +1630650,Zhang Jie +1511991,Eshita Starr +232396,Max Irons +206926,Darcy Rose Byrnes +157234,Amanda Randolph +1624622,Carla Baranauckas +1109482,Carl Beukes +132244,Kenny Wåhlbrink +79607,Serge Postigo +1544787,Christine Dye +1602899,Anvar Libabov +1672438,Lyliana Wray +141956,Marc Evan Jackson +128386,Colin McFarlane +99508,Jorge A. Jimenez +1039207,Mary Kay Fortier-Spalding +1093919,Cecily Strong +965884,Hayley Holmes +1534333,Christopher Lawrence +1216193,Shelley Longworth +87341,Selton Mello +50005,Laura Adani +1015644,Benjamin Portnoe +1314279,Philip Rosch +35524,Humbert Balsan +1145709,Charles Delaney +931653,Hannah Stangel +1263643,Jan Paul Grootentraast +1199519,Gabrielle Fanuele +929294,Bel García +1698108,Vincent Latorre +939000,Clive James +1046213,Lance Brannon +938392,Viggo Waas +8966,Bruce Robinson +996826,Kelli Dawn Hancock +1761853,Heikki Ahola +1214573,Serena Williams +927858,Marc Dietrich +1223813,Tom La Grua +239319,Chun Chung +1506485,Grace Gray +17565,Wilfried Dziallas +82624,Hubbel Palmer +1823567,Ashley Ledbetter +1440319,Junlica +1542796,Katharina Beissel +92042,Frank Thornton +979017,Luciana Souza +22476,Marie Versini +1334134,Ralph Guzzo +76933,Masato Sakai +1597855,Madison Iseman +133140,Noël Simsolo +1879763,Ginevra Cinti +1660760,Magdalena Peralta Antivero +1344349,Liza J. Bennett +1197124,Rajesh Tailang +1088118,Pat Wesley Bryan +67987,Tomas Norström +1454313,Folake Olowofoyeku +138852,Oldřich Navrátil +1772897,Thaynara OG +77193,Bill Hicks +1563604,Daniel Taea +723555,Veronika Lebedeva +1270464,Liam Thomas +1052659,Elissaios Vlachos +1699686,Rajesh Jais +1594986,Carmen Gangale +1190018,Hajime Okayama +125009,Tatsuya Ishiguro +64357,Santisuk Promsiri +103354,Charles McNamee +130640,Hailee Steinfeld +1027769,Claudio Rodríguez +933391,Denzil Smith +1048460,Nergis Öztürk +1468404,Bill Knudsen +1436157,Jiatong Lai +1680508,Gina Parks +1874309,Brando Taccini +120322,Giovanni Esposito +40956,Frankie Howerd +1366725,Evan Bird +1585596,George Haymid Stamper +543787,Gautam Sabnani +1336754,Leila Mimmack +1226529,Theo Von +1862911,Jeanette Pavini +18469,Carlos Cobos +200543,Sondra West +1046212,Victor Aminger +1801197,Elle Walker +1114247,Sander van Sweevelt +136554,Linda Albertano +1304459,Ilse Salas +1650215,Miles Hopkins +1829339,Sophie Kindred +568240,Brooke Peoples +1607018,Flora Djien +43193,Mark Shannon +1886318,Alexandria Wright +169005,J. David Shanks +1187535,Tomas Mackinlay +134863,Victor Creatore +141993,Susana Miranda +1018088,Kenjiro Morokado +581083,Dmitriy Volkostrelov +1249937,Yvonne D'Alpra +222318,Kirsti Wallasvaara +1411097,Roger Converse +1454400,Ella Olivia Stiller +1747659,Aurello Galli +550077,Sergey Medvedev +1656967,Chris Marchant +1179886,Timéo Foissac +1576780,Frode Saugestad +230649,Dariusz Basinski +1885998,Macey Ward +58771,Katie Finneran +1037348,Louis Hofmann +192937,William Gaunt +1503860,Vladislav Koulikov +1071194,Thelma Grigg +935725,Dajka Margit +133122,John Abineri +174188,Elaine Nalee +109440,Kelton Pell +499431,Irina Rakhmanova +1326945,Kumud Pant +237040,Ileana D'Cruz +1440436,Joe Luk +17576,Carole Laure +1050081,Stefan Bundalo +145804,Adam Grimes +100244,Otto Matieson +1175170,Marcin Kowalczyk +209673,Charlie Carrick +1259504,Deuntem Salitul +1520768,Giancarlo Ratti +93564,Pihla Viitala +1401233,Nigel Plaskitt +932330,Christina Reynolds +205129,Chris Bowers +1183917,Lily Gladstone +1633210,Caron Gardner +1436273,Hui Guo +1153025,Jana Reinermann +1332926,Claire Walker +1650164,Mark Huber +1439247,Dan Nielsen +1620998,Bruce Guerin +1889634,Grant Miller +1827243,Eric Hanson +1068137,Hiroko Saito +82667,Ana Serradilla +258049,Charo López +110035,Ivan Krasko +151845,Dan Sheridan +1502853,T.J. Hourigan +87409,Sergei Bezrukov +122566,Mako Hyoudou +103618,Karen Yeh +1395104,Catarina Mira +1678687,Evelyn West +1470850,Eva Vrchlická +1158532,Tora Hallström +43310,Christine Horne +138390,Igor Youskevitch +1647316,Nathalie Autumn Bennett +67714,Ramzy Bedia +1385342,Alexandra Evans +929661,Lidiya Volkova +104198,John Conte +1331810,Gabriela Daniell +4318,Victor McGuire +1137588,Ari Shaffir +12001,Margaret Rawlings +1646729,Iris Mann +1597947,Axel Harney +64805,Billy Brown +1461121,Vladimir Kolchin +1623670,Francesco Romei +90031,Kurt Angle +1213577,Indigo +1478275,Jessa Campbell +109074,Bernie Massa +121146,Virginia Fox +85934,Michael Denison +284628,Jimmy 'Jax' Pinchak +1898794,Cecilia Rivera +1163179,Fuli Wang +564804,Lena Amende +120111,Paola Tiziana Cruciani +1178738,Hamid Djavadan +1190333,Masumi Satou +1439647,Stine Holm Joensen +1610450,Madeleine Curry +1729745,Danna Hansen +1088244,Todd Carpenter +237603,Manivannan +20662,Ami Hasegawa +748938,Zumi Rosow +86019,Asrani +544706,Gunvor Pontén +134424,Charles Halford +586231,Aarne Tarkas +1628130,Rodney Cook +1623407,Yi Zhen +1136690,Louise Martini +1631703,Billy Hammond +99527,John Merivale +1140992,Hon Lai-Fan +147106,Ivo Canelas +86075,Urmila Matondkar +134069,Dennis O'Connor +1607560,Alex Morf +45367,Thomas Baldwin +123251,Laura Neiva +117033,Mala +1176791,Brian Luttrell +105108,John Gaeta +100559,Peter Fox +46065,Taner Birsel +1127746,James Eric Anzalone +238041,Sebastiano Somma +1031746,Claire Baschet +1339116,Freddy Cheniti +11130,James Robertson Justice +1672139,Regina Pavon +131670,Giorgio Panariello +1886065,Damián Hassler +1699954,Alberico Simeone +1627034,Natives of the Wild +145120,Swann Arlaud +1573177,Kitty Barshay +1060479,Harvey Flaxman +1252003,Stefania LaVie Owen +86252,Howard Rosemeyer +436643,Robert Paschall Jr. +143706,Viktoriya Tolstoganova +1345254,Teodor Tzolov +1221981,Susan Tully +1381393,Randall P. Havens +166610,Jennie Fahn +1099766,Reign Morton +1163120,Lars Bringås +1891533,Kaye Taavialma +1660686,Christopher Bizub +552072,Jeong Gyu-Su +108555,Matt Silver +1032504,Víctor Bayo +1122377,Darrell Watson +1285571,António Costa +1849487,Shankar Ravindram +22541,Brian J. Smith +149008,Éric Chartier +1621145,Julia Silverman +549053,Karin Kardian +101599,Giulio Bianchi +1380696,Cem Uçan +1755407,Heather Bicknell +1078926,Ari Boulogne +215912,Harshavardhan +46278,Yvon Back +1085583,Sam Laird +1102260,Lara Jean Chorostecki +1576355,Cody Hamilton +33155,Tom Gulager +1112456,Micaela Phillips +1787174,Bonnie Paine +1239534,Jeff Kassel +1691154,Robert Montcalm +68287,Callum Blue +1178305,Patrick Mullen +1505308,Allen Merritt +293480,Menno van Beekum +1271786,Tyler von Tagen +78676,Valeria Fabrizi +1076563,Carolyn Green +1353658,Jade Tang +1148606,Jan Doense +130537,Simona Borioni +980412,George Murdoch +1371002,Marlo Scheitler +106897,Svetlana +1662624,Margalit Fox +71361,Ricardo Bartis +115692,Joanna Moskwa +1089975,Miled Traïdia +1632160,Alexi Pappas +56578,Jeff Tremaine +231049,Tibor Gáspár +1702123,Jeremy Jackson +1263515,Thomas Cocquerel +38772,Adrian Topol +215695,Jeffrey Silver +1412631,James Koch +61858,Dennis James Lee +568048,Courtney Shay Young +239298,Juliette Cohen +122454,Allen Danziger +1241168,Charles White +1141924,Doretta Morrow +1509226,Catherine Fetsco +553493,Drusilla Wills +145863,Kristian Leth +71554,Jonathan B. Wright +1734969,Tighe Wardell +174624,Bernie Hamilton +137824,Marika Korolev +138323,Persia White +124552,James Warren +129033,Ballard Berkeley +55843,James Coleman +150473,Lotta Lehtikari +1153529,Igor Cygankov +1297976,Tonia Bryan +436771,Windham Beacham +1330007,Robert Ndrenika +131782,Crawford Wilson +88944,JC de Vera +234235,Gaite Jansen +39656,Michel Gelobter +1859519,Vittorio Introcaso +185065,Emma Tate +1380993,Kathleen Butler +1335168,Jake Hathaway +1436278,Junjie Guan +1754593,Robert Borak +544188,Liz Strange +568047,Kimberly Whalen +1522409,Aleksandre Takaishvili +1287272,Kalinka Petrie +97429,Vida Hope +224026,Peter Cotes +969570,Madeline Duggan +1792637,Terrence V. Walker +9133,Peter Faber +145628,Shriya Saran +1468807,Luigi Cortese +107810,Aleks Paunovic +150247,Reiko Fujiwara +930830,Marisa Jara +194092,Michael Rougas +1579575,G. Lane Hillman +272987,Mireille Roussel +122280,Aymen Hamdouchi +1608052,Natasha La Force +112278,Wataru Takagi +109651,Adjoa Andoh +571571,Lynette Biunno +1512196,Robin Smotherman +145585,Kristina Karst +1485208,Tony Gee +100941,Giulio Massimini +43720,Bas Keijzer +1443849,Matt Falletta +947462,Bob McGrath +1201669,Veikko Tiitinen +1561896,Boris Voznyuk +1306314,Megan Ferguson +1089495,Naike Jaszczyk +1818033,Michelle Lenhardt +111440,Ifan Huw Dafydd +5564,Maria Monti +1242199,Lyle Brocato +135133,Shojiro Ogasawara +195330,Antony Zaki +80988,Amy Redford +583736,Yakov Kucherevky +134373,Mieko Takamine +583531,Rinke Khanna +176523,Dwan Smith +1066174,Geula Noni +97237,Wilfred Walter +230476,Samuel Irons +95392,Manjeri Krishna +36018,Claude Mann +572225,Yoo Ah-In +1692036,Rashontae Wawrzyniak +1525525,Massimiliano Delgado +1885527,Antonio Giordani +1313439,Günter Fleck +40015,Kim Schnitzer +1513896,Patrícia Selonk +1426719,Ida Vakkuri +1369263,Bernadette Gibson +117484,George Eads +1900342,Jessica Zitter +1027724,Anton Lundqvist +1702118,Michael E. Mann +1359949,Shelly Burch +1446121,Yannik Müller +1084816,Nicola Murphy +1836943,W.F. Bell +552252,Hasan Minhaj +1462360,Sina Relli +1332680,Uzo Aduba +213660,André Lawrence +62539,Mike Thompson +1182688,Nataša Gollová +48416,Patrick Floersheim +52809,Itsuji Itao +1088051,Irene Joseph +152421,Boris Brkic +1171574,Lee Do-ah +1807640,Jane Jacobs +128741,Doon Mackichan +129704,Araki Nanaki +94124,Ryan Higa +90290,Ismail Incekara +1576625,Charles Potter +1430142,Preben Ravn +1810141,Alex M. Yeuh +1432091,Lynn Wahl +1795830,Octavia Morrissey +238488,Venyamin Smekhov +67287,Mary Costa +1193045,Eileen Peel +1359947,Eddie Levi Lee +1075381,Jessie Arnold +125857,Yuriy Stoyanov +1573253,Ben Davies +1890684,Luis Franke +91869,Sho Sakurai +1232769,Amanda Brugel +1707352,Jake Fairbrother +1382837,Katelyn Nacon +929393,Nick Baldasare +236375,Yekaterina Strizhenova +1072042,Harold Prince +1573787,Lucia Scarano +584324,Revathi +1015739,David Fierro +5964,Alain Cuny +1438026,Brett Granstaff +1641938,Saravana Subbiah +1758326,Supassra Thanachat +1626918,Yuliya Silaeva +557964,Anna Kamenkova +1759686,Toi'ya Leatherwood +1393840,Krsna Angulo +105787,Greg Giraldo +1103653,Matt Owen +148051,Hazel Applegate +1224027,Emily Bett Rickards +56226,Florence Foresti +89562,Alice Howell +1061663,Alfonso Sánchez +1446349,Fergie Olver +52973,Waheeda Rehman +1842091,Alina Aliluykina +1511997,Andi Matichak +582418,Ruben Padilla +1647917,Irina Chipizhenko +1169852,Conner Chapman +58662,Koichi Sato +100488,Robert R. Ross Jr. +933511,Johnny Ng +1616889,Wong Kwan-Hong +1457999,Arturo Castro +156237,Kim Zimmer +1122951,Khaled Benaissa +953446,G.H. Mulcaster +58942,Will Beinbrink +21723,Robert Baker +1845733,Federica Lacaño +196408,Noreen Corcoran +1165383,Aurora Ruffino +1271005,Jack Brisco +96528,Eiríkur Guðmundsson +1251213,Tanya Chisholm +1086582,Nick Cogley +206321,Jack Sway +1294403,Stacy Brickson +931104,Mattie Liptak +80921,Egill Ólafsson +12549,Brett Rickaby +236341,Miguel Angel Perez +1561245,Florian Von Stockum +1604604,James Malloch +1400780,Thomas Nilsson +997649,Sofia Rönnegård +1815738,Richard Philipps +1201979,Sam Logan Khaleghi +86664,Evgeni Leonov +1327315,David Schütter +1397001,Brendon Zub +87927,Will Chase +1636789,Lou Consolo +1416476,Justin Eldridge +66150,Yann Arthus-Bertrand +94383,Daniel O'Neill +135843,Ann Staunton +1756489,Harald Siebler +493987,Yogi Joshi +234619,Marina Salas +1316047,Sophia Hatfield +1452742,Alan Corona +7156,Nicholas Reinke +1564289,Józef Mika +1192408,LiLiCo +1149643,Malú Chouza +64916,Helena Bereen +1109781,Laurent Lacotte +228151,Any Cerreto +1256249,Park Min-woo +1151381,Jacques Henley +1583947,Kamila Górska +1021392,Michael Rae +1436124,Tim Seitter +1421303,Florence Wright +144346,Andreas Schröders +1016978,William Blomfeldt +1067849,Kim Go-eun +153309,Vinton Hayworth +1654873,Mark Oliver +1569359,Clemens Rehbein +1569756,Morgan Davies +18778,Jean Poiret +1623644,Johnny Travis +1066422,Alec Lovejoy +1704626,Zailand Adams +1240834,Dorothy Konrad +1354363,Filipp Rukavishnikov +588885,Ray McDonald +64503,Pete Spurrier +1790532,Ronnie Cass +1568214,Maureen Grady +1358567,Richard Allan Jones +41237,Fernando Allende +1155476,Jeff Frey +2377,Michael Habeck +88806,Robbie Cleiren +79938,Clare Thomson +209603,Leo Daniels +1330867,Edoardo Faieta +108453,Henrique Viana +1505892,Léonard Louf +110099,Satyendra Kapoor +1646377,Binta Diop +88492,Ole Lemmeke +1201511,D.W. Kann +1297700,Olegs Teterins +121021,Matteo Ripaldi +1782015,George Keywood +103241,Stanley Maxted +1304642,Very Tri Yulisman +368961,Daniela Morozzi +19358,Kurt Ravn +266,Humberto Busto +580907,Bala Singh +1650384,Irina Składan +1388659,Tim Jochen +566917,Kafka +1196102,Calvin Poon Yuen-Leung +98756,Conrado San Martín +1444985,Katerina Gogou +1221058,Inder Manocha +1363773,John Ely +86709,Vladimir Samoylov +1895595,David Dooyun Kim +133286,Barbara Coven +89547,Brian Dobson +211048,Rik Launspach +1446565,Brian Vernel +30358,José Manuel Cervino +244354,Wong Yu +1607562,Monte Greene +149174,Amanda Howell +64450,Hope Levy +550781,Stan Tolhurst +144516,Antonio Ferrandis +1085035,Paul Borst +931644,Kate Simses +1270303,Johs. Løken +109066,Danny Wells +1580727,Jeffrey Swann +1039534,Jas Sams +240213,Jessica Dunning +1538580,Sharon Fredrickson +1086884,John P. Dulaney +9339,Lilly Wachowski +1410041,Nestore Cavaricci +1837872,Blair Bell +228353,Axel Kubitsky +225900,Rachel Riley +1062705,Willhelm Grotenfelt +200613,Michael Lamport +1677239,Michal Vondel +1538594,Leslie Hoffman +128433,Silvia Monti +1670804,Trevor Stines +1042812,Bjorn Steinbach +85559,Julián López +1097788,Oscar Franzén +1210468,Matthew Romantini +934243,Halston Sage +970188,Cody Saintgnue +25635,Pamela Franklin +1426208,Fred Gibmeyer +1753263,Ngaru-toa Puru +27196,Mario Erpichini +560316,Nadia Litz +553568,David Quintero +564325,Hank Cartwright +1491513,David L. Price +533174,Tom Brokaw +1417299,Tim Peddicord +1301772,Mark Ashworth +929658,Zinaida Adamovich +1199482,Cindy Schoonover +544586,Andrei Popov +145091,Arnaud Goudal +88699,Steven R. McQueen +1603639,Pasquale Africano +1699128,Mickey Mickey +146476,Sam Dahler +1040419,Roman Indyk +83699,Kyle Howard +21123,Jase Blankfort +1548435,Cloyce Morrow +1841541,Mike Hurwitz +1413770,John Maurice +1400029,Marc Velasco +1869047,Keith Allen Hayes +107735,Caroline Carver +86133,Matthew McNulty +97947,Dianne Hull +1837869,Damon Webb +1195205,Robert Harrin +1105700,Rhoda Montemayor +206161,Celyn Jones +1137714,Hermann Schomberg +163615,Janice Heiden +35076,Karim Belkhadra +613224,Rebecca Potok +1682511,Russ Skains +1684713,Andrew Peplowski +1458392,Luis Sabatini +1683142,Rita Rogers +1512193,Kat Meoz +15121,Simon Schwarz +600425,Georgianna Carter +1108794,Shail Chaturvedi +1455755,Pun Bandhu +1479382,Kôzô Shioya +5374,Jim Parsons +1145002,Norman Thavaud +105813,Christopher Hewett +1083955,Susanne Schimkus +1318952,Derek Miller +1555137,Glen Marzillo +76627,Daniel MacIvor +201392,Kenneth Hill +237179,Dwayne Lawler +28115,Ercan Durmaz +1314072,Kim So-Young +549586,Ada Rogovtseva +931477,Kalervo Nissilä +586998,Carrie Brownstein +1691935,Anish Jethmalani +1754481,Robert Woo +135671,Kostas Karras +74575,Robert Dahey +1695149,Tilly Jeanette Pearce +1689787,Jack Maland +1516700,Polly Thompson +967384,Kari Nissena +1448801,Hanala Sagal +82417,Russell Peters +235861,Boris Galkin +107992,Muharrem Bayrak +1221048,Troy Glasgow +1522485,Shani Salyers Stiles +1797387,Lizzie Hull +1719091,Amaris Kirby +43822,Richard Reeves +1302214,Vamsi Krishna +1813771,Donnie Baxter +1862609,Rafael de Sousa +1122431,Julien Collard +1503903,Brett Brown +1728942,Mousa Habiib Allah +1107768,Norihiko Morishita +1234808,Norman Bennett +96179,Dick Emery +1879935,Azzurra Martino +231940,Aurora Redondo +1097798,Klasse Möllberg +995606,Lotte Stein +1136069,Sigurjón Kjartansson +1466581,Nik Dodani +77678,Asaka Seto +71297,Kathy Christopherson +1470687,Susan Jones +1169458,Megan Raye Manzi +1234091,Angela Fong +1026729,Moreno Brown +29973,Renée Adorée +1079615,Antonio Battistella +6538,Iride Barroso +1306277,Claira Watson Parr +1207310,Michael Foyle +975870,Shirley Kilpatrick +521563,Anders Holm +1523858,Meg Spencer +1805556,Mark Axelowitz +1258548,Aya Suzaki +1006759,Sam Blackburn +549775,Greer Grammer +3288,Chris Weitz +121059,Paul Scardon +237725,Patricia Barzyk +1297699,Vilke Liman +1046200,Andrea Moore +101165,Daniel Sauli +123509,Kyle Ward +94568,Sheetal Menon +117738,Cornell Borchers +120117,Antonio Allocca +1276782,Marie-Laure Copie +592307,Valeri Khlevinsky +1564438,Belen Greene +70795,Lothar Firmans +1617859,Enrico Roccaforte +1533227,Brian Dewar McNamara +1646380,Halem El Sabagh +42186,Laura Johnson +1449106,Ryan Mirvis +97090,Joel Bryant +24741,Paul Curran +45358,Fritz Matthews +34598,Jacqueline Beer +935273,Julia Royter +1160263,Mario De Barros +1427475,Jada Robinson +12272,Noël Roquevert +1679368,Cristina Franco +1140635,Jon Campling +1041697,Deon Lotz +1204146,Simone de Oliveira +1513308,Trevin Lica +140651,Iza Kuna +1755079,Nathan Marchena +1885525,Fabrizio Sergi +116102,Mark Baker +93033,Pancho Moler +1371050,Jordan Stephens +587634,Park Bo-geom +1378358,Kim Hertogs +1327735,Shawn Elliott +1107298,Kelley Jakle +24387,Pierre Mondy +1428023,Femi Adebayo +1448864,Katie Johnston-Smith +1365516,Martin Palmer +181408,Daryl Hall +1428030,Abiodun Aleja +124244,John Ventantonio +106250,Peter Isacksen +1004788,Elena Drapeko +46134,Linn Stokke +1311119,Ernst Nadherny +1161925,Constantin Florescu +73462,Georgia King +1105164,Pawanrat Narksuriya +132556,Kimberly Huie +110914,Mandy-Rae Cruikshank +81480,Ori Pfeffer +65905,Crystal Shaw +238401,Axelle Laffont +181661,Josh Wolford +1115100,Babbanlal Yadav +168649,Tom Brennan +94779,Curt Conway +23131,Martin Flörchinger +1146151,James Durkin +143746,Miroslava Karpovich +93079,León Klimovsky +1362204,Pam Eichner +231806,Michael Keseroglu +1842217,Julie Simon +1388657,Rick D'Agostino +1139801,Théo Cholbi +81010,Christopher Rhodes +1155572,Olivier Sauton +145085,Pierre Louis-Calixte +17052,Topher Grace +1678285,Dal Nicole +45391,Beth Broderick +235095,Bernard Yerlès +23330,Isabel Allende +1257819,Daniella Pineda +76104,Martin McCann +132553,John Benjamin Martin +1160767,Jan Niklas Berg +228712,Abraham Aguilar +1445606,Chris Swanson +1377042,Rocky Abou-Sakher +237020,Alexandra Roach +579469,Ole-Jørgen Nilsen +1502860,Heajee Kim +74415,Patrice Naiambana +213581,Oliver Masucci +1352333,Darren Kennedy +1648357,Marco Maurer +1589715,Clemence Slama +1423692,Jenna Lyng +47039,Totò Mignone +1846434,Alexey Frandetti +200972,Marcy McCusker +1765428,Dinita Gohil +120859,William Charlton +1192762,Christopher Amitrano +1849486,Shankar Ravindram +1512174,Nathan Jean +105838,Emma Booth +1066144,Laurent Poitrenaux +226747,Ryôhei Uchida +90201,Sharon Alexander +1717050,Philip DaCosta +119171,Andrea Parker +62716,B.J. Harrison +1475097,Zoé De Grand Maison +25179,Guy Bedos +95399,Krystal Morton +1131492,Adam LeWinter +1117083,Vince Valdez +1260008,Nora Valsami +235063,Aleksandr Lazarev Jr. +489697,Shannon Edwards +1161077,Sam Stermer +588889,David Arribas +1338215,Tom Waite +1183430,Shelton Grant +1171904,Anne-Marie Loop +21041,Shohreh Aghdashloo +110422,Pip Miller +1436935,Margaret Moffatt +1771523,Tom Werme +1136300,Jayden Yuan Xiaochao +934968,Natalie Björk +1223450,Parker Grant +1650170,Sheri Lahris +1082579,Pierre Lestringuez +57124,David A. Stewart +1694987,Gayle Telfer Stevens +125737,Sergei Makovetsky +1722987,Jean Godsend Floradin +1466855,Gaby Chiappe +1376315,Steve Wilsher +89563,Mabel Normand +1239290,Andrea Kinsky +23962,Christian Kohlund +132850,Salvio Simeoli +64972,Kirsti Eline Torhaug +223052,Dennie Moore +1835584,Paresh Behera +1077375,William Benz +1366238,Alessandra Massari +1286552,Chris Riedell +163554,Bill Walton +1654738,Lobna Futers +1772477,Astrid Ewerts +77562,John Flaus +1237385,Michelle Federer +992374,Hana Hayes +1228910,Bridie Carter +1696398,Carlos Etxeberría +1182653,Gail Ann Dorsey +1304687,Jimmy Kunsang +1473119,Sai Pallavi +1284243,Carmen Gratl +1436999,Kate Berlant +1282920,Ilona Somogyi +22917,Angelica Domröse +1418653,Adrianna Gradziel +1514068,Joe Sison +1033015,Gastone Pescucci +1029122,Garik Chepchyan +1754485,Lawrence Koplin +1138249,Izabela Dąbrowska +1423906,Harvey Morris +99265,Iya Savvina +1387081,Allira Jacques +1436389,Kakule Wilson +1388685,Michael Sigmann +109408,Diana Van der Vlis +1519318,Joseph E. Murray +117814,Texacala Jones +1439926,Ergun Kuyucu +80592,Sarah Burns +590197,Tristan Gardiner +950969,Ofelia Guilmáin +1562575,Yin Tao +1387036,Lee O'Brian +1231117,Paul O'Brien +1071680,John Harding +382490,Claudio Salgado +1141412,Anna Bak-Kvapil +147268,Vladimir Gostyukhin +585619,Antoine Bibiloni +1413768,Pippa Wanganeen +550860,Shailen Mukherjee +78437,Stephen Rannazzisi +1374099,Erwin Bozzolini +1327274,Adrian Saidi +1294401,Collin Spencer +175427,Jack Carr +1138597,Luke Howard +1117803,Josean Bengoetxea +1309682,Bryan Chatlien +179954,Quinn Duffy +91670,Eisa Davis +125287,Bárbara Goenaga +1583951,Magdalena Woleńska +939001,Hans Mollinger +1275241,Kenneth Peerless +1313559,Ray Fisher +1225435,Sarah White +1027869,Jorge Sesán +85480,Ryan Carnes +1898303,Micol Pavoncello +980544,Marie-Hélène Montpetit +53886,Max Holzboer +577643,Gareth Snook +1192903,Vaani Kapoor +583329,Gilbert Frémont +544511,Gotlib Roninson +68201,Gol-Ghotai +1180793,Toke Lars Bjarke +937534,Terry Diab +1781402,Clementine Nicholson +1036288,Abbey Lee +92328,Jim Cody Williams +203757,Roy Milton Davis +1670471,Vesta Grabštaitė +1835585,Jennifer Osammor +239997,Debrianna Mansini +67921,Daniel Drewes +1721907,Jolanta Szemberg +1408146,Shuya Chang +1709467,Joel Rinzler +1593371,Fred Huguez +87724,Marika Lagercrantz +1172770,Jillian Nelson +92104,Rolv Wesenlund +73977,Saverio Marconi +88139,Deven Verma +17834,Jake Cherry +1286525,John Milhiser +92945,Angie Martinez +1031174,Ζαννίνο +5120,Güven Kıraç +112961,Danielle Fraser +1504015,Tetona Jackson +1019919,Carlo Gaddi +1605322,Violet Stuart +225223,Stephen Bassett +62911,JR Bourne +97457,Justin Kelly +80613,China Anne McClain +1102515,Vanessa Prangley +109976,Mark Doherty +116501,Ulf Eklund +1589604,Jared Davis +1059787,Shingo Usami +1231106,Steve Peacocke +120211,David Gorcey +1207276,Colin Bleasdale +113545,Imogen Hassall +1189625,Gertrude Robinson +1511747,Bob Currie +1865843,Nell Barlow +1526637,Jermaine Humes +1537018,Jerzy Michotek +62599,Jill Montgomery +228456,Kate Orsini +231396,Jimmy Lennon Jr. +1055291,Bobby 'Wheezer' Hutchins +218948,Simon Bird +1052211,Mark Steger +1750963,Park Do-Yeon +1504855,Egil Birkeland +28681,Hélène Surgère +223234,Gilles Sandier +240092,Giuseppe Maffioli +86110,Glen Campbell +1223457,Evan Alex Cole +459032,Blas Jaramillo +1438923,Ryan Knight +1339117,Freedo Leetz +1562571,Li Long-Jun +1024854,Johnny Olsen +241863,Eugenia Paul +44581,Sammy Gilbert +120831,Annaleigh Ashford +1805204,Darko Nikolic +126120,Veronica Hurst +131283,Jeanne Tatum +1607523,Saniyya Sidney +9016,Eileen Nicholas +46989,Rolf Peter Kahl +1506494,Lindsay Andretta +1805292,Victor Ellinghaus +1581104,Dominique Brownes +225479,François Vincentelli +222934,Daan Hugaert +989216,Andrew Jackson +1293458,Jean-François Cayrey +277570,Jean Gillie +1824301,Freddy Carter +144649,Yuko Goto +37145,Henri Guégan +200820,Rachel Thorp +209819,Pat Kiely +1560229,Gabrielle Lott-Rogers +1782612,Enrique Espino +119717,Rockne Tarkington +1891508,Rand Moritzky +1767216,William Curtis Coppersmith +1093423,Hiroko Masuda +1124111,Yasuhito Hida +570368,Sara Rosa Losilla +10215,Paul McCartney +86473,Julian Boote +91403,Chad Krowchuk +1282770,Wilfred Roberts +1255122,Osman Sonant +230680,Douglas Booth +141548,Lee Sung-min +1777419,Yasuo Tobishima +999758,Tansu Bicer +932889,Dora Volanaki +7285,Stéphan Wojtowicz +74376,Cem Yılmaz +100418,Ned Romero +40501,Mark Waschke +1501836,Roy Brown +239265,Betty Bench +1529370,Tom Coulston +1125698,Kostya Panov +1784589,Micaela Johnson +222728,Morten Espeland +117557,Sara Crowe +107245,Quique Camoiras +84396,Leon Scrap Batts +1394343,Jon Norris +1207887,Andy Chan +158868,Paul Jenkins +1385071,Richard Barlow +1349549,Kodi Kitchen +1086710,Florence Lawrence +83917,Gloria Victor +1208790,Jesús Careca +1497139,Anna Chernova +1294282,Vladimír Ptácek +1570734,Kim Mulhauser +61996,Christien Tinsley +135840,Chiu Chi-Shing +73856,Federica Pontremoli +543752,André Valmy +1854047,Bebe Rebolledo +72968,Eduardo Verástegui +132101,Desmond Walter-Ellis +240439,Cheran +38773,Max Riemelt +1751948,Amy Russ +578037,Clémence Gégauff +208716,Jonathan Biggins +138843,František Smolík +1180699,Daniel Rubiano +1153016,Roman Huber +204405,Eric Sheffer Stevens +150017,Galina Vishnevskaya +1642156,Günter Willumeit +110541,Todd Rogers +125930,Dilip Patra +22945,Carl Heinz Choynski +1503923,Alkoya Brunson +141746,Sylvia Stewart +1411818,Manuela Zero +936932,Adam DiMarco +21977,Oyanka Cabezas +1853724,Urbano Lione +544430,Erica Curtis +1302131,Lotta Losten +1499902,Sue Ronne +626645,Inna Gulaya +130030,Chantal Akerman +40941,Kenneth Williams +129341,Elena Fabrizi +133124,Mary Larkin +1361576,Lucien Dodge +73575,Sophie Charlotte Conrad +1504922,Connor Gallagher +31534,Marcus Giamatti +118533,Kiersten Hall +95272,Robert Hyatt +10228,Tommy Lane +1481213,Lilia Duran +1585650,Precious Chong +1508824,Manoah Angelo +1068844,Carlos Chamarro +563722,Danilo Gentili +1821496,Emma Teo +1438287,Blake Burt +106667,Carla Reynolds +129619,Piero Mazzarella +175756,Helene Joy +1229148,Rosie Rowell +578693,Patrick Moorhouse +1756412,Ray Whelan +73331,Alban Ukaj +74501,Luis Fernandez-Gil +145216,Miguel Varoni +187281,Joshua Jay +1088726,Aleksandr Levenbuk +56097,Alki David +214812,Patrick Brennan +141039,Michael M. Wartella +1355224,Larry Mana'o +1179811,David Máj +1872183,Guido Monti +1094537,Rosalia Randazzo +932095,Zoe Aggeliki +1364784,Christoffer Strandberg +1364448,Vappu Elo +1531592,Samuel Robinson +1239253,Demord Dann +76110,Stephen Amell +1224609,Anwan Glover +76469,Tamás Puskás +1026170,Jan-Olof Rydqvist +1516826,Antonin Gabrielli +1704769,Caroline Hjelt +199445,Blaine Capatch +74718,Rolf Kristian Larsen +1189920,Natthasinee Pinyopiyavid +1489232,Roman Leonardo Rodriguez +1286037,Juraj Ďurdiak +154529,Lisa Robin Kelly +1744827,Plaisir Mumbula +1024891,Akiyoshi Nakao +1054007,Emilio Fornet +144387,Duncan Renaldo +75175,Christopher Kirby +141472,Nathan Fredericks +88597,Jay Paulson +1241660,Kohei Kiyasu +1477060,Katherine Hughes +71536,Matthew Wood +1222951,Yoo In-young +146186,Eddie Frierson +1326029,Gil Viviano +1532531,Claire Maggie Corlett +1467928,Megan Devine +1181800,Sérgio Guizé +98909,Eric Spudic +94000,Eun Won-jae +1791945,Baek Hyun-jin +138879,Danone Camden +171375,Jerome Le Page +1304142,Patricia Malley Thacher +6859,Mía Maestro +1381649,Adam Rosenberg +1685665,Franchesca Soto +104632,Sylvia Hoeks +1073197,Barry Brenner +200754,Michael Chan +1066865,Norma Herrera +1438833,Lara Bezuidenhout +1888575,Türkan Ince +1283949,Kyle Patrick Brennan +1295565,Bryan Santos +1152009,Emily Fleischer +85905,Mirosław Zbrojewicz +1363063,Dominic Garfield +235093,Eaching Sue +231155,Jana Šulcová +115975,James Colby +1147080,Omar Shargawi +568321,Brian Lally +1324633,Valerie Ryan Miller +125862,Aleksandr Adabashyan +114849,Erica Watson +55425,John Ross Bowie +123576,John Elliott +132886,Subash Singh Pall +1030295,Reda Guerinik +886142,Jacqui Holland +1764638,John Mancini +639,Pieter Jan Brugge +128465,Geppi Cucciari +1130145,Jason Becker +584051,Maksim Kostromykin +1147897,Chris Tummings +59819,Deanna Russo +563093,Dean Garbett +1191606,Chetan Hansraj +285738,Paul Temps +1579118,Samuele Caruana +27282,Maria Cristina Heller +26584,Marianne Nentwich +1870618,Murielle Zuker +133169,Tsurube Shôfukutei +173196,John Edward Peck +1168128,Haruka Abe +1333918,Alison Ball +1535060,Yaya Deng +584487,Jean-Yves Gondry +1085709,Sharon Garrison +1011818,Erica Duke +1138713,Jan Suzin +1205546,Urmas Kibuspuu +1068138,Masaaki Kaiji +1331802,Juan José Ortíz +59820,Michael Childers +1232607,Venida Evans +77109,Corey Large +201407,Connie Kreski +1756356,Gurdeep Ahluwalia +1746938,Moses Sumney +77303,Wang Xue-qi +1445463,Kay Bryant +1450196,Cody Hall +76038,Shane Johnson +107242,Sally Faulkner +124623,Carolina Crescentini +181647,Dylan Jones +1622660,Sarah Colonna +637953,Ramón Llao +1511383,Roni Meron +227611,Mirai Shida +553569,Lilian Tapia +1228390,Jolo Revilla +109834,Ricky Grover +1108980,Lukas Smolders +1031166,Thanasis Vengos +1382184,Byron Sakha +78406,Brandon Hanson +909212,Sebastian Banes +1334639,Hannah Arterton +1140299,Fatih Dervisoglu +1570199,Ailish O'Connor +1402322,László Czuczor +971049,David Ajala +110787,Tiina Bergström +1853882,Myra Lee +189026,Magda Apanowicz +1481003,Jesse Dufault +1014998,Masaki Miura +141113,Alessandro Bonanni +1169781,Kyle Summercorn +1843659,Naoufel Aliju +1036289,Walter Percival +1081521,Lyubov Arkus +1200989,Francisco Nicholson +86232,Lucy Boynton +362742,Michael Maltese +145814,Gage Golightly +1502244,Doris Morgado +59753,Sebnem Donmez +1128178,Girija Shettar +24730,Isabel Mestres +1636702,Arkadiusz Jędraczka +1075591,Sofiya Magarill +1801196,Emma Winslow +1670755,Marika Day +24597,Marc Porel +1734180,Elizabeth Cunico +1475414,Ulrik Windfeldt-Schmidt +1818582,Audrey Looten +1462495,Mike Johnson +24459,François Dunoyer +151094,Hubertus Grimm +999817,Olivia Taylor Dudley +138887,Jack Wagner +1411815,Salimata Kamate +1009257,Caitlyn Folley +1864083,P K Venukkuttan Nair +1459004,Megan Pribyl +1268987,Kyle Loren +1066284,Sarah Desjardins +56780,Cornelia Sharpe +1029089,Jukka Holm +1838595,Darrell Salk +1388662,Derek Brocklehurst +1331260,Pieter Derks +67967,Adriano Celentano +25854,Lucas Belvaux +973651,Billy Eichner +1644095,Anais Fairweather +110085,Pran +108036,Shawn Prince +551795,Françoise Muxel +151073,Cindy Baer +1566181,Tubby Phillips +1629954,Cachaco +543910,Yuriy Dubrovin +1278784,David Dahlgren +109173,Suresh Oberoi +933894,Ameena Matthews +1015925,Gina Grande +216921,Craig Marriott +1504965,Ahmed Bharoocha +55327,Julien Courbey +1722915,Shiori Wakaba +1000983,Dessi Morales +1503647,Josef Marcelo +1092507,Yôko Kosono +130082,S.T. Joshi +115876,Mikhail Gorevoy +1191290,Kazu Patrick Tang +167081,Jeanie Hackett +1309904,Kenny Waymack Jr. +150467,Jacques Vermeire +1020684,Colin Paradine +1267408,H.P. Baxxter +138850,Zuzana Kajnarová +1115598,Yetkin Dikinciler +24701,Oliver Tobias +1455749,Nick Epper +559145,Jan Hertz +191251,Megan Duffy +146354,Rodolfo De Souza +1010099,Pata +43358,Jenny Schily +1182096,Anna Wendzikowska +1666942,María José Charfole +1569925,Eran Anjel +41504,Alexis Thorpe +1046675,Arjun +1073006,Barb Mitchell +234934,Freddie Stroma +1639261,Marie-Laetitia Bettencourt +33734,Shinji Tanaka +1465699,Tate Berney +564283,Eva Santolaria +1673307,Kang Jin-ah +78265,Dustin Harnish +1254561,Seiko Yoshida +1364121,Emily Brobst +20631,Ann Hearn +1588364,Christopher Hohman +1262855,Pinelopi Tsilika +1249737,William B. Williams +46277,Julie du Page +239878,Eleanor Yates +91714,Marilou Mermans +105323,Claudio Aliotti +13706,Ivan Lapikov +1013750,Andrers Ciavaglia +1753470,Warren Farrell +1381477,Andrew Kochman +1414722,Joëlle Antonissen +73754,Nuno Gil +62551,Heidi Swedberg +1183509,Zhao Yao-Dong +930674,Alican Yücesoy +1195191,Joel Cory +88543,Martin Buch +1672241,Alec Secareanu +230400,Radivoje Bukvić +172150,Alex Manette +1052900,Paul Anthony +131120,Henry Strozier +1753497,Rachel Edwards +142853,Josh Folan +1158662,Benjamin Wangermee +121303,Lee Ford +106663,Edward D. Murphy +1166920,Richard Olney +1090170,Brent Thurston-Rogers +1397784,Hays Wellford +1393197,Marina Camacho +235805,Eva-Katrin Hermann +586790,Koki Maeda +1084474,Juan José Camero +74363,Scott McNeil +1620045,Pavel Chinaryov +82968,Keiko Oginome +90633,Gal Gadot +572227,Choi Jeong-woo +102362,Lisa Gastoni +204499,Michael Brown +1322026,Steve O'Brien +240596,Lev Perfilov +1586007,Luigi Zitta +962169,Jay Xcala +55758,Yvonne Sanson +85160,Nick Lawson +1836956,Shawn Rougeron +1861428,Kerry Constantinou +1313220,Israel Elejalde +1221099,Tetsuya Iwanaga +1272219,Marlene Magee +1021200,Wang Ya-Chao +142224,Mimi Coutelier +1428449,Franco Montesano +1157295,Eddie Johnson +97799,Carl Horner +1683755,Thomas La Marche +992910,Claire Whitney +1322391,Noel Thurman +142839,Sermiyan Midyat +1351404,Jafar Vali +2967,Daisy Tormé +587935,Letizia Ciampa +1853893,Rita Tubin +117676,Riley Hill +1502719,Patty Peturbed +964834,Frank Dillane +1277032,Gwen Brian +1550644,Tokio Sasaki +40876,Sophie Linfield +20215,Billy Campbell +1831105,Nicolina Papetti +1125747,Jean Yonnel +1845947,Patrick Halpin +1643584,Anuschka Sawhney +572238,Michel Raskine +1537663,Mikulás Ladizinský +37383,Simone Thomalla +53279,Evan Lurie +1271340,Jack Baxley +1110520,Zhang Lan-Xin +1774941,David Beuret +84627,Jamie Johnston +990582,Sirry Steffen +1127871,Bodane Hatton +1811549,Jean Pierre Harerimana +1662447,Aled Llyr Thomas +85471,Mugdha Godse +73750,Alicélia Batista Cabreira +226371,Shane Harper +1783262,Tim Johnson Jr +118895,Tory N. Thompson +69711,Jugal Hansraj +85825,Leighton Meester +549059,Rose Wolfe +1030272,Maria Emo +1146887,Florian Müller-Mohrungen +11220,Fernand Guiot +585674,Casey Durkin +1083600,Columbus Jackson +263403,Raquel Rodrigo +1356199,So Tung +1368518,Mik Byskov +144081,Aden Young +14372,Donald Wolfit +175660,Zoe McLellan +1031164,John Caresio +1086000,Oleg Zhakov +238205,Vladimir Kachan +76098,Trevor Gagnon +1522255,Kikuo Ichikawa +1503842,Sam Campisi +1697246,Kazuo Goto +193601,Christine Jansen +1367907,Rhett James +1508645,Guillaume Plumejeau +1256242,Bessie Cursons +222587,Rafael López Somoza +227633,Kantarô Suga +1902092,Anna Vielhaber +1096499,Mercedes Del Carmen Romero +1776840,Chad Wright +1071198,Ysa Penarejo +23304,Saïd Abdallah Mohamed +157909,Chance Boyer +559944,Anton Tabakov +236342,Eva Molina +60907,Larry Day +214142,Raquel Gardner +40161,Barnaby Shaw +1053814,Emma Salokoski +188654,Taras Kostyuk +583483,Veroushka Knoge +1894267,Bruno De Cerce +223015,Todd Julian +140649,Edyta Olszówka +1704666,De'Marco Arrington +552166,Senkichi Ômura +1263126,Nathalie Legosles +1503861,Munro M. Bonnell +1412358,María Mera +1129800,Perlis Vaisieta +928024,Meg Westergren +125275,Cserna Antal +132931,Felipe Hernandez +1639461,Daniela Droz +240160,Wong Yung +1581106,Joey Forfellow +1508580,Genevieve Chartrand +1062343,Kanna Hashimoto +1746887,Elvis Grant +163731,Louis Cancelmi +1320474,Daisy Keeping +12315,Robert Dix +933426,Etsuko Shikata +1067460,Indra Briķe +73540,Thomas Quinn +1512992,Chuck Lafont +1093518,Diana Hopper +117843,Janet Johnson Bryant +1511963,Olamide Faison +1780285,Belle Gwilliam +142193,Diego Klattenhoff +76315,Tom Malloy +1844337,Katherine Armstrong +1338712,Lovro Preprotnik +1660699,Reno Laquintano +1066151,Hideaki Satô +1371487,Robert Taylor +1746878,Josue Rivera +1707822,Jürgen Laarmann +7762,Odd Arno Midtsjø +103595,Bob McFarland +1742866,Christopher Rosamond +1728950,May Jabareen +1706745,Ioan Sebastian Tirlui +5920,Michael Riley +15122,Sophie Rois +134541,Francesca Reggiani +1543460,Simon Staudacher +25925,Thorsten Grasshoff +138001,Mick Muldoon +25383,Samantha Ferris +79617,Gaston Lepage +1171049,Zsuzsa Járó +1178800,Eriko Sono +1331804,Sergio López Santana +1204684,Jillian Rice +553335,Hilde De Baerdemaeker +22852,Jutta Hoffmann +559413,Ai Hashimoto +1196840,Danilo Nigrelli +1139349,Julian Dennison +1506500,Benita Zahn +583356,Adrien Jolivet +557830,Taboo +63333,America Young +1597383,Anne Byrne +1121198,Amber Anderson +68088,Joan Weldon +128469,Pier Luigi Ferrari +1332931,Justin Goodhand +151104,Champion +1598009,Ocean Hellman +46774,Gwendoline Yeo +1162466,Barbara Folchitto +1840498,Korey Williams +1148762,Luis Rosado +1898249,Tomislav Sokić +1529183,Lauren Myers +954261,Francisco Pérez-Bannen +1758539,Wirat Udsama +86268,Serinda Swan +1439928,Amber Bellaire +92731,Bethany Whitmore +177885,Donna Yamamoto +928253,Cansu Demirci +1636671,Piotr Stramowski +1128307,Renz Valerio +127062,Stephanie Macdougall +1464975,Andy Kellegher +1651932,Sara Jiménez +1123262,Greta Scarano +97929,Erika Blanc +1118790,Yumika Hayashi +99067,Melissa Moore +1088250,Dennis Adkins +1640622,Mircea Banu +1200695,Kaoru Itô +130615,Paola Arduini +1841528,Pat Parks +1163662,Rosalie Becker +144495,Orsolya Tóth +1735546,Demetrois Hodges +1244938,Robert Vargas +138426,Hiroshi Kondô +1349736,Gideon Jensen +1152094,David Saada +1035490,Gil Peterson +1548304,Kennedy Brice +1437791,Ann Wilkinson +192934,Rachel Bell +938292,Tova Stewart +200625,Vickie Papavs +1415251,Yue Tau-Wan +27191,Jude Alderson +1760023,John Macdonald +115647,Juri Ueno +98080,Lawrence King-Phillips +72950,Franc Bruneau +120155,Sara Bertelà +1501811,Maria Eugenia Barrenechea +1713945,Leo Gorcey Jr. +1339655,Jalal Moghadam +1163180,Leung Tin +55099,Óscar Kramer +1380127,Chembil Ashokan +1658142,Keo Sokneou +1017259,Simon Phillips +1090198,Pavel Doychev +54479,Bailee Madison +1684442,Michael David +1097456,Richard Cunningham +1683802,Carlos +1197738,David Lucieer +1349742,Lee Craven +975666,Rino Katase +1525092,Sam Ly +981413,Billy Arnold +1266312,Georgia Maguire +1147555,Александр Лыков +113495,Pepita Emmerichs +178107,Rod McKuen +229259,Aditya Narayan +96367,Jeffrey Lee Woods +1082706,Kelly Richardson +148004,Billie Bennett +1651402,Vikki Edwards +21422,Brett Goldstein +928010,Karl Martin Eriksson +120739,I. Stanford Jolley +615,Hisako Kyouda +1517744,Sandy McMaster +94476,Tunde Adebimpe +1135177,Rachel Lee +84048,Richard Tillman +5202,Kostja Ullmann +71785,John Justin +145539,Bryce Cass +543870,Francisco Marsó +130499,Neiky Yim Hui Chi +1017266,Valérie Sibilia +1497048,Kate Harper +1312172,Ria Carroll +150514,Mariana Ricardo +1238176,Gautam Gulati +74391,Pale Olofsson +1835259,Audrey Morgan +1330999,Madison Wolfe +1502854,Owen Clarke +269705,Marina Confalone +1179449,Ian O'Brien +23835,Nthati Moshesh +77823,Stephen Hagan +1207283,Ashley Jeffery +1755074,Ryan Hebert +1309414,Ichirô Okuni +1035346,Michael Todd Schneider +1035349,Erika Schultz +1542375,Mona Goodwin +150078,Randy Cohlmia +77546,Andre Stojka +135131,Hiroyuki Nagato +120253,Tony Bentley +45379,Shannon Tweed +999772,Chanty Sok +116159,Marjatta Raita +108802,Hugh Dempster +1379621,Dan Considine +148428,Alexandra Davies +61514,Matthew Biancaniello +1445721,Lucia Rossi +1334133,Emii +125626,Ritva Jalonen +940922,Jorge Cervera Jr. +1338706,Victoria Liu +1295553,Vasil Vachev +60958,Joe Gnoffo +1482026,Scott Chambers +1162234,Yupp Regeler +83105,Debra Wilson +17192,Chadwick Brown +161719,Robert Sorrells +78211,Gaspard Augé +571993,Shizuka Itou +1824297,Steve Healey +1089873,Rita Ora +557212,Neil Bhoopalam +1872247,Azhakd Fariborz +1267134,Tom Johnigarn +1544804,Cass Buggé +1439381,Niels Hougaard +1154455,Christina Turley +1759916,Frederique Cigna +1204318,Aedin Mincks +1181557,Josh Warren +148368,Maija Junno +128467,Nicola Di Gioia +992507,Ashley Hamilton +124259,Elli Vallinoja +158287,Murray Rubin +226567,Pijitra Siriwerapan +1222969,Jon Lindstrom +1891561,James Lewis +1149337,Fumika Shimizu +141757,Claudia Fontán +551932,Aine Leicht +1695665,Kevin Kenyon +157434,Emily Wagner +101423,Artur Smolyaninov +1120216,Feró Nagy +79290,Héctor Bidonde +1419568,Sonny Chorre +1746873,Ricardo 'Padman' McGill +109085,Ugur Yücel +96076,Meredith Ostrom +557552,Rez Cortez +1566008,Karl Jakob Vibur +1821366,Meriliis Lillemägi +84573,Mélissa Désormeaux-Poulin +1488800,Erina Andriana +1085944,Trip Hope +229684,Nick Afanasiev +149009,Yves Gabrielli +72900,Mark Ezra +1313134,Daniella Grace +1876179,Erica Von Stein +1678979,Paul Cummings +557088,Hélène Loiselle +107877,Jerzy Cnota +1900662,Oleg Yefremov +1398106,Brandon Shaw +1522254,Rina Takasaki +1830871,Lamar Stewart +1581207,Garth Maunders +591944,Linnea Heacock +1210343,Aimo Heino +1842208,Daniel T. Martin +1465954,Georg Nikoloff +1574236,Patrick Hughes +1155715,Ken Yamamura +1042761,Fran Torres +559510,Alberto Ajaka +64551,Françoise Monneret +1267482,Rasmus Albeck +1548736,Andre Bedard +52038,Thomas Carter +1326866,Alex Lanipekun +76338,Emilio Solfrizzi +1726924,JME +1841521,Judd Shoval +1323776,Amr El-Bayoumi +1029095,Jussi Saarinen +583762,Gilat Ankori +27804,Gunnar Hansen +1432560,Chienna Filomeno +238167,Frank Forsyth +1620084,Chester Marshall +234504,Tom O'Sullivan +1142312,Billie Holiday +1123657,Lino DiSalvo +102499,Clara Bow +1549536,Shixue Yu +1502366,Martin Cochrane +1027115,Mariya Semkina +565332,Eduard Nazarov +1058612,Mike Dirkesen +115176,Sebastian Knapp +188347,Jorge Diaz +47432,Lembit Ulfsak +46070,Tilbe Saran +147962,Merna Kennedy +145535,Van Williams +1298393,Claude Desjardins +1093123,Teresa Espinosa +1353634,Michael James Olsen +584718,Parthiban +1636706,Rafał Wójcikiewicz +1429875,Carline Seiser +1065796,Matthew Deslippe +1176558,Eugenia Tempesta +86879,Aleksandr Gurevich +132198,Mario Castellani +1409,Adam Ferency +1838765,Madalina Anea +1015727,Jun Hashimoto +1191706,Crystal Mudry +5118,Sibel Kekilli +216409,Cory Lee +98631,Adam Wingard +1674486,Jesse Romero +1630632,Patrick Lorenczat +1643247,Portland Helmich +1349745,Samantha-Jane Hunt +582279,James E. Davis +1362169,Mariah Brown +1663785,Stefani Kimber +29373,Kyalo Mativo +105423,Jacky Heung +29247,Carmen Cartellieri +1196204,Marguerita Padula +110783,Lauri Törhönen +112474,Elizabeth Keifer +1820211,Gerard Canonico +227793,Ronald Ulrich +1562576,Liu Yi-Wei +1502947,Kylen Davis +1648796,Chniny Chhing +121492,David Mason Daniels +1829362,Allen McLean +72838,Beverly Lynne +1380562,Shoota Tanahshi +583492,Mehdi Bouaza +1796397,Martin Skorek +228612,Erol Taş +1149278,Adelmo Togliani +128412,Alessia Bruno +1181361,Luke Mitchell +1801200,Teresa Cocas +37941,Moon Geun-Young +1379184,Sophie Verbeeck +580915,Hutchi Hancock +145035,Aaron Le +1644661,Laura Mann +565384,Iya Villania +1405571,Imogen Poynton +1458839,Conor Kikot +1417564,Rick Burks +101625,Kristi Clainos +39792,Aleksei Zharkov +1385139,Antonio Folletto +1273228,Allison Bills +86864,Maksim Vitorgan +1358252,Raymond Bloomer +238707,Ursula Rojek +1347779,Park Yu-hwan +137446,Paulina Olszynski +1046791,Bernie +33058,Gary Littlejohn +1117504,Scott Knisley +229982,Sriman +83867,Silvia Rabenreither +556759,Guerrino Crivello +1013947,Jane Brakhage +1619445,Celestino Cornielle +1208240,Iván Steinhardt +161704,Alex Dreier +225812,Sturla Rui +1700632,Bradley Martyn +1758898,Alex Felix +1149925,Jose Mellinas +1702670,Kwang-Ho Hong +1188806,Nicholas Georgiade +1498026,Nesta Cooper +1662634,Paul Vitello +968929,Harry Borg +83852,Liam James +1207972,Dominic Arellano +7879,John Lasseter +543631,Laure Diana +156395,Anne Gee Byrd +1084813,Ray Gillon +1841544,Erik Hussa-Lietz +36450,Lisa Martinek +110756,Juuso Hirvikangas +1257205,Rowan Blanchard +1485936,Isidor Alcaide-Backlund +1891553,John Chilson +1449381,Mo Pleasure +1087668,Man Huang +1614310,Aleksandr Zhdanov +1683028,Bruno Bebianno +1039525,Lili Simmons +1086859,Cat Meacher +1381478,Hoke Faser +1328815,Kit Sivyer +1041576,Maas Bronkhuyzen +1394462,Steven Carnuccio +1684444,Kathleen Stevens +1151863,Laura Dekker +1428395,Jessica Lowe +1841492,Nicole Dillon +1196028,Sam Jarvis +1172836,David Walker +47426,Natalya Danilova +575725,Tom Jasen +1398506,Petar Bachvarov +1656886,Nontapat Worratammatip +206405,Greyston Holt +1502320,Jose Caraballo +1366658,Devielle Johnson +122764,Darcy Ray Flavell-Hudson +934114,Yumi Shimizu +1021799,Linda Perry +115079,Leonard Bremen +100307,Alfredo Mayo +180789,Tommy Dewey +82093,Daniel Henney +1699948,Ponzio Pilato +1481051,Kan Takami +1302053,Lorena Duval +1213573,Taran Killam +1210336,Antti Peippo +1583295,Ken Laplace +64612,Jeff Roop +591168,Ricci Chan +134859,Lauro Chartrand +1754452,Taylor DiMarco +945955,Eric James Virgets +107028,John Stanton +1143491,Lee Chang-joo +1016110,Richard Geiwitz +937372,Eden Malyn +619,Jōji Yanami +1764145,Alexander Carter +141541,Yoon Je-moon +1580365,Meri Hackzell +1168769,Marta Nieradkiewicz +1665609,Antony Acheampong +141114,Maurizio Casagrande +232403,Čestmír Řanda st. +1579181,Vanessa Cloke +83868,Karin Springer +1207264,Gerry Blair +1231330,Mark Evans +969218,Bruno Mars +1388664,Eric Pyne +1434413,Peter Illmann +569860,Tom Lidgard +17648,James Purefoy +237502,Igor Pushkaryov +180538,Brent Anderson +1291701,Jami Tennille +1871282,Francesco Biscione +569546,William Lawrence Allen +1286550,Kiara Lisette Gamboa +1182985,Dounya Hdia +1136711,Bosa Stojadinović +1834258,Callahan Connor +236369,Vladimir Vdovichenkov +30471,Yukiko Kobayashi +94121,Clint Jung +155574,Enid Graham +939687,Edward Thompson +213465,Taketoshi Naitô +1197526,Philippe De Lacy +150898,Franziska Traub +80188,Edwina Renout +109653,Patrick Lyster +1098756,Brittany Ishibashi +222375,Sara Kessel +1420695,Claire Blackwelder +1881919,Mariya Andrianova +1278726,Rocco Oppedisano +1273679,Margherita Laterza +1651928,Blanca Parés +1769802,Donny Carrington +1333917,Elizabeth Gast +1439245,Roberto Coronado +1179646,Kresh Novakovic +1660179,Moana Maniapoto +1651534,Martin Dahl +1445346,Chris Capen +235633,Pascal Vincent +29209,Paul Prokop +129339,Giuseppe D'Aloja +972041,Leeon Jones +1524667,Lorenzo Allchurch +208685,Matt Braunger +37089,Cameron Monaghan +1497673,Kim Peach +135483,Luke Arnold +1203601,Yasser Michelén +1707911,Curtis Taylor +1870854,A. Glushkova +1798353,Alice Bailey Johnson +543836,Benjamin Siksou +144737,Julia Caba Alba +31792,Joaquín Cordero +2361,Tonino Delli Colli +239296,Alice Kelley +1157599,Brent Duke +1192145,Sylvia Panacione +146417,Corlandos Scott +119126,Sonja Belliveau +74364,Brian Drummond +95365,Zach Thatcher +183645,Trenton Knight +1879936,Lilia Perno +1401166,Jessica Lemon Wilkinson +1722463,Christiane Dor +936950,Boris Arakelov +1883904,Jerelino Augustuszoon +77091,DeQuina Moore +1216701,Meghan Markle +7691,Caroline Ducey +86282,Ashmit Patel +1331981,Samantha Sloyan +4569,David Fox +90682,Lisa Houle +1433453,Hubie Kerns +1771032,Ashley Brittingham +556475,Türkan Şoray +87286,Jennifer Sciole +1423823,Jen Jacob +1428046,Xavier Hosten +1667092,Alexandre Roth +1371109,Matt Pascua +74251,Sasha Grey +29946,Tomas Mastalir +1593366,Hannah Elise Pilkington +1003411,Helen Norton +32194,Luana Walters +150456,Lale Mansur +230995,Donna DuPlantier +1309902,Paul Andrew O'Connor +1135825,Atsushi Ônita +141635,Pauline Étienne +1872243,Joe Hoak +1714084,Luna Lauga +116519,Chareva Naughton +1495079,Debra Pralle +1353652,Eileen Bui +939470,Georges Lini +1734733,Yukio Yamamoto +134721,Karel Höger +1371766,Bety Moshona +552692,Tine Reymer +585487,Tzvi Shissel +110952,Boris Milivojević +1140129,Ronen Rubinstein +141285,Veliko Stoianov +1195777,Steve Malovic +547969,Angie Jibaja +1207287,Kai Pantano +126994,Isabella Cecchi +1200885,Tami Yamamoto +143579,Anthony Eustrel +1495075,Jeffree Newman +1106123,Alex Williams +106153,Maureen Delaney +1567383,Михаил Хрусталев +1199622,Nikola Pashov +27654,Said Amel +550167,Taapsee Pannu +150829,Michael Welz +204904,Chris Doubek +1361064,Rachel Renee +1049459,Philip Friedman +139493,Park Sung-woong +1586278,Djalenga Scott +1341649,Christopher Scott +1716519,Hannah Goergen +90119,Marie Leuenberger +935722,Brad James +237511,Andrei Rostotsky +226021,Frédéric Chau +206724,Justin Edwards +1902096,Recardo Koppe +136811,Jan Budař +549519,Naveed Choudhry +161002,Charles Quinlivan +1783651,Michelle West +1775353,Julia Avendaño +133093,Laurence Cordier +126864,Aleksey Makarov +3509,Daniel Ceccaldi +1591374,Lee Dae-kwang +1071127,Varada Sethu +1754496,Clemeen Connolly +1694571,Carol Portes +27287,Colin Goodwin +88544,Tommy Kenter +1486681,Theo Pont +232047,Chris Blasman +1223497,Glicínia Quartim +5792,Howard St. John +1576787,Elisar Sayegh +1391420,Miyavi +1546521,Louis Silvers +1066450,Matthew Burrill +1281102,Patrizia Luparia +1492328,Josh Buchanan +1630262,Carter Bratton +1318797,Alana Cavanaugh +54137,Lina Canalejas +235125,Ariane Labed +81508,Robert Davide +71821,Bernadette Quigley +1443154,Mikkel Trier Rygård +92061,Sara Jane Nash +238779,Xu Chungqing +1208795,José Roberto Díaz +1460359,Peter Christoffersen +90771,Brandon Baker +136745,Lucien Jean-Baptiste +1027044,Manuel Arvide +589222,Saki Takaoka +1122013,Laura Hughes +134214,Michele Gammino +210262,Leon Voorberg +1090166,Steve Sooy +1821486,Natosha Humphrey +1001676,Paraschiva Dragus +588933,Jack Luden +1845953,Terry Randall +9711,Maaya Sakamoto +1112591,Abdallah El Akal +1495080,Gray Eubank +225663,Yasufumi Terawaki +590536,Morrie Cohan +1440534,Laia Artigas +1680236,Mark Allen +358119,Eric Laugérias +1260004,Tawfeek Barhom +1046348,Maggie Elizabeth Jones +931513,Mino Caprio +1010054,Cathryn Hostick +156990,Julie Dretzin +1216171,Liza Tarbuck +1459373,Adam Neill +55785,Shunji Iwai +1269930,Ilja Racek +1093790,Karol Machata +149653,Rob Boltin +164778,Mary Grace Canfield +35000,Marlène Jobert +1687004,Dalila Seruntine +1676773,Joy Shatz +159877,Lois Robbins +1223452,Danielle Shaw +1646449,Leisa Reid +143122,Júlia da Assunção +128225,Giampiero Judica +71669,François Dyrek +1734189,Maycn Van Borssum +1264126,Anette Sevreus +1037818,Daniel Dicenta +110765,Kauko Laurikainen +104528,Mik Cribben +10994,Tom DeSanto +98401,Gino Montesinos +45450,Jean-Christophe Lebert +589653,Anjali Lavania +112561,Lily Collins +55103,Ailton Graça +76640,Brian Heighton +167035,Bruce Hopkins +54729,Clark Duke +974732,Tiaré Scanda +1630263,Gerald Bales +1559762,Veikko Sinisalo +132116,Moshe Yerushalmi +933510,Vernetta Lopez +1676781,Matthew Minor +86351,Rodolfo Hoyos Jr. +1088062,Ben Kahn +536999,Angela Kovács +12242,Jack Hildyard +1462948,Shigezô Sasaoka +138208,Yoran Hensel +1205239,Randy Schulman +1090739,Ric Walker +1210547,Khouan Souliyabapha +1104666,Juan Carlos Altavista +1399531,Billie Lourd +1206427,Callie Cameron +1057247,Isabel Rocatti +101034,Kerry Shale +1342869,Jillian Barberie +173833,James Sharpe +1095524,Lydia Wilson +1226245,Christian Bowman +1185130,Gardo Versoza +999449,Emily Alatalo +1298752,Molly Conarro +46591,Kaki King +1359350,Liz Fye +1255554,Toby Turner +1419322,Hank Williams +38791,Sarah Robertson +220787,Shawn Macdonald +1569544,Mark Leslie Ford +1070195,Sarmarie Klein +58742,Marisa Petroro +1388902,Siegfrid Calizo +1207365,Teale Hansen +1315946,Megan Easton +100338,Tandra Quinn +1042516,Barak Hardley +928221,Diljit Dosanjh +147739,Laura Malmberg +1759087,Tricia Allen +19528,Vincent Sherman +1363060,Amra Mallassi +1505416,Richard Graham +1581034,Tongsit Rachasin +31699,Juan Luis Galiardo +1166834,Dan Beirne +41230,John Astin +68166,Iaia Forte +1332753,Paravoor Bharathan +145754,Steve Greenstein +1336776,Elizabeth Muthsam +28732,Rachel Hazes +1286878,Joshua Elijah Reese +945428,Ju Jin-mo +75038,Roger Craig Smith +143722,Garri Bardin +1430614,Annelle Hayes +1251286,Jon Lajoie +1495081,Anne Sorce +175776,Laura Jaszcz +1160313,Marie Wisselmann +1660249,Martavious Gayles +1551656,Frank Baxter +59668,Shannon Makhanian +136127,Alex Sharp +1691848,Daniela Leder +1018915,Teresa Tavares +939320,Michael Kreihsl +90576,Jeff Branson +1845740,Harvey Sokoloff +1074082,Sandro Merli +1748448,Oysel More Despaygne +1470837,O. Merlatti +1486221,Mao Nakagawa +1432694,David Barth +98976,Henry Sedley +1056781,Huie Rogers +36662,Carey Mulligan +935285,Marc Payne +222122,Gabriel Basso +1587693,Rémi Caillebot +577646,Daisy Maywood +1650211,James Atticus Abebayehu +1401452,María del Mar Serrano +228845,Dmitriy Astrakhan +935934,Pep Tosar +1784631,Keith Kurtz +1096127,George MacFarlane +935648,Penelope Pitsouli +90404,Mychele Watson +1439319,Toben Seymour +1353904,Monica Zelak +1498236,Tapio Pirttioja +212008,Omar Khan +1204326,Max Harris +31347,Patty Shepard +157287,Franco Corsaro +1593231,Levi Eshkol +1676050,Chimwemwe Miller +43866,Gordon Westcott +1480144,Joti Nagra +1497233,Cani González +137814,Anu Aaremäe +1269611,LeJon +1302542,Harry Williams Jr. +1174786,Karl Oscar Törnros +1636414,Vern Zaborowski +143602,Gong Beibi +1491373,Eva Lima +1531623,Matthew Salter +127701,Joe Egender +1456034,Jorge Usón +1525612,Royce Clark +1441404,Karen Skov Petersen +62362,Rachel Townend +585972,Ingrid Schoeller +1527309,Phalba Morgan +1867726,Summer Fontana +151886,Tom Monroe +1336802,Lee Yoo-Joon +37457,Jean Lefebvre +1892776,Sarah Buckley +46636,Dagmar Lassander +108215,Allu Arjun +27339,Peter Hall +1285572,Ricardo Pais +1542136,Dunlap Peeples IV +1120194,Ayush Mahesh Khedekar +1581553,Melissa Hoffer +33587,Tony Travis +1481636,Tiago Riani +150220,Deepti Naval +16407,Roger Rees +1210610,Olivia Luccardi +544818,Michael Rubbo +1229816,Max Bacon +70273,Bruno S. +149894,Yuuki Kaji +992162,Giovanni Franzoni +81851,Emi Shinohara +1373133,Dan Albert +565870,Oscar Pettersson +1820506,Joe Gelchion +208529,Adrian Quinonez +1611032,Janlee Dungca +15645,Susan Denberg +150012,Mohan Agashe +1827140,Alexandra Thom-Heinrich +969597,Kavin Dave +131056,Acquanetta +72248,Safy Nebbou +948150,Deborah Baxter +1841513,Naomi Pandolfi +559490,Heinz Lieven +176785,Rick Zahn +1276628,Yang Caiyu +9912,Martin Benson +1107299,Shelley Regner +1261125,Alisha Bailey +143527,Lee Whitlock +1851867,Charles Barden +1012903,Severin von Hoensbroech +1579243,Charlie Baker +966102,Karen Baum +55808,Michel Saint-Jean +1477226,Dayana Amigo +1158778,Zygmunt Apostol +150981,Anja Pohjola +138893,Michael Mills +19360,Léa Drucker +1640626,Alexandru-Victor Nemteanu +105743,Fabián Vena +151447,Kip Niven +1161653,Hernán Lacalle +1593229,Michael Keane +1225799,Jonathan Kydd +1678622,Robin LeMon +3497,Kyle Chandler +574091,Larissa Stadnichuk +1588347,Ingrid Mortimer +1170658,Linda Bright Clay +1442736,Elena Sherbakova +1705079,Miss Robson +572038,Ken Arnold +7960,Jerome Ranft +1182601,Asheq Akhtar +230454,Marina Saura +114457,Graham Clarke +1428027,Colin David Reese +145173,Bettye Ackerman +107012,Simon Gough +146342,Vimala Pons +557133,Lee Da-wit +1147083,Khalid Al-Subeihi +1769811,Massiel Checo +1896758,Vince Guerriero +1717286,Asher Roth +92416,Alexandra Rapaport +226278,Unni Bernhoft +114144,Gio Perez +1562083,Tom Lowe +27985,Bruno Cathomas +1270457,Bretten Lord +142314,Gina Abatemarco +82554,Alister Williamson +305750,Patrik-Ian Polk +86753,Georgi Burkov +1440861,Caerley Hill +1676772,Sarah Seeds +1627475,Einar Jóhann Valsson +1066315,Janessa Brazil +127723,Barbara Topsøe-Rothenborg +1323889,Michel Guillaume +1636699,Patryk Bernardowski +1154282,Seth Chatfield +1636762,Ali Wasdovich +142814,Karyofyllia Karabeti +1267383,Trevor Dow +1125601,Guillaume Delaunay +1577105,Ashley Saulnier +120640,Stefano Ambrogi +560294,Gino Bramieri +1032793,Sheetal Suvarna +107328,Scott Antony +1736794,Gabriel Isaiah Abeyta +1693042,Mir Taher Mazloomi +1275092,Stijn Van Opstal +1427449,Swastik Ram Chavan +1398181,Handy Yacinthe +1517537,Bechir Sylvain +1459162,Alec Justin Henderson +72992,Doug DeBeech +555366,Lu Zhong +560298,Lauren McKnight +1595057,Anthony Tam Chan-Keung +1036826,Matt McTighe +88815,Madan Puri +1531132,Teo Planell +151937,Mort Sahl +1357388,Mark Rossignol +1597338,Brandon Prust +1255100,Mariko Shinoda +1432732,Mitchell Kummen +106401,W.P. Dremak +228015,Lília Cabral +559496,Bojan Dimitrijević +1812367,Josh Tipis +1178639,Manju Warrier +992960,Dominique Leduc +1094511,Aljin Abella +91711,Desi Arnaz +103172,Carin McDonald +130081,Robin Atkin Downes +239281,Joachim Nimtz +1764135,David Aires +1599260,Wai Wong +62426,Michiko Nishiwaki +70578,Gurkan Uygun +1658338,Emily Nuñez +1144930,Christiana Leucas +1468578,Judd Green +1504920,Julia Marie Franzese +591850,Evelien Bosmans +70785,Anita Briem +1182186,Vidyullekha Raman +85944,Rusty Lane +1266246,Rudie Crane +1031685,Garrett Clayton +89822,Tuppence Middleton +560191,Reona Hirota +1185447,Liam McNamara +183834,Carleton Hobbs +118187,France Lomay +1841980,Katie Kelly +1818058,Bob Tetrick +18041,Oded Fehr +1759634,Aaron Zell +1841535,Ray Young +1126673,Gautham Karthik +1377952,Enio Drovandi +1168788,Jake Meyer +1213848,Hidekatsu Shibata +1466299,Iveta Pole +1188863,Thekla Borgh +1277034,Doris Brian +591428,Wojciech Zieliński +106251,Joy Michael +1544914,Iarla O'Lionaird +425055,Daniel Ross +1144931,Kristen Rakes +1140241,Will Brittain +1892908,Fernando Daviddi +1173282,Sith Sekae +1818385,Kerry Wynnyk +1004060,George Field +208542,Sandra Huggett +111465,Adrien Beard +1336527,Shin Eun-jung +1200870,Shôichi Kotôda +1769871,Jennifer MacKenzie +209511,Natalie Hall +166809,Kelli Taylor +235876,Andrey Smirnov +1678516,Reetta Turtiainen +1572052,Bruce Robert Cole +58956,George Alvarez +1367285,Vannessa Vasquez +112572,Ernie F. Orsatti +102607,Dee Booher +1418581,Choi Gwi-hwa +1221560,Ted King +1677241,Jeszenia Jimenez +65640,Khary Payton +112566,Lance Gross +1706334,Muneeba Yaseen +1302426,Landon Marshall +1106514,Hu Ge +109641,J.R. Villarreal +141543,Kim Kwang-il +1380797,Gozde Cigaci +140874,Anita Garvin +97685,Roberto Maldera +1704672,David Shae +1531395,Alan Palomo +148510,Norman Phillips Jr. +34675,Prudence Harrington +1685977,Roman Evdokimov +1512192,Lisa Shirley +122578,Tarô Shigaki +1235160,William Osler +58170,Kathleen Fee +1394450,Taka Uematsu +1349726,Alison Carpenter +77933,Yuriko Yamaguchi +133386,Sabrina Gennarino +1841502,Scott Nadler +1223657,Tom Brady +29981,Julanne Johnston +1283560,Melek Diehl +536709,Manuela de Freitas +1054260,Haru Kuroki +234907,Dar Salim +1439648,Ann Kristine Schmidt +224842,Jordin Sparks +142001,Johanna Mørck +1016074,Ted Rusoff +54645,Nia Vardalos +75067,Harvey Virdi +1090200,Yoana Bukovska-Davidova +1668441,Antoine Ray +1164938,Lior Miller +1862608,Armanda Bacelar +1277137,Weng Hsiao-Hu +56256,Coco Martin +1080291,Samantha Thomson +104803,Holly Fulger +41167,Brigitte Hobmeier +71375,Alden Ehrenreich +98438,Kimberly Rowe +1207150,Bruce Kerley +1037888,Luli Deste +1063266,Maho Yamada +181685,Nick Steele +1256097,Henry Kelemen +1357162,Omar Herrawi +110710,Naved Aslam +1563625,Annette Tierney +1523007,Arnold Cruz +84028,Yu Aoi +220753,Charlotte Roche +1527313,Dejon LaQuake +137387,Elsa Kikoïne +1410159,Iskender Altin +1419424,Choi Eun-hee +1879458,Miu Naraki +1097516,Ramon Bautista +91109,Nils Johnson +1147820,Sergio Sgrilli +109157,Steve Furst +1544834,Lynne Jordan +1841493,Dawn Santoriello +27884,Peer Mascini +115343,Connie Sellecca +110964,Sonja Savić +1345986,Hassan Majooni +1606944,Aniello Iorio +224197,Brett Gelman +1374818,Karin Franz Körlof +1343376,Dylan M. Johansson +90630,Timothy S. Shoemaker +1888495,Pia Sarpei +1042691,Sam Zeller +1650111,Helen-Jean Arthur +1158279,Rose Marie Tillisch +231946,Antonio P. Costafreda +1335229,Wiebke Inn +1878452,Enea Barozzi +61660,Eugene Clark +1529474,William Roberts +1444927,Christian Stamm +1308078,Augustín Kubán +1466489,Patrick Orr +1784676,John L. Smith Jr. +125047,Lalaine +120689,Yuriko Yoshitaka +1251102,Sam Marin +6969,Geoff Bell +57274,Panna Rittikrai +55069,Jaspal Bhatti +1399613,Dan Meyler +34769,Åke Grönberg +1849540,Edgar Nentwig +11555,Joseph Kosma +26271,Montse Sanz +939392,Steven Love +16312,Sieghardt Rupp +1434872,Bram Verrecas +78909,Michael Bisping +1696234,C.T. Fletcher +901,Rita Lengyel +1161087,Mira Bonelli +1449120,Megan Grano +1845736,Lucía Parrilla +100861,Cris Huerta +99947,William Kerwin +112375,Sophie McBride +20883,Günther Lüders +42743,Mari Morrow +1129689,Stan Alley +1300918,Eugenio Franceschini +102226,Chema Ruiz +85169,Marcel Sabourin +1888489,Tim Grothe +1776845,John Forker +1272224,Jasmine Purches +92845,Joshua Desroches +1542697,Kristen Annese +1074007,Grzegorz Jankowski +53028,Eva Kryll +58217,Rod Cameron +103082,Giovanna Lenzi +1073076,Zoltán Miklós Hajdu +1438290,Haylie Creppel +1497965,Katherine Mulville +1796435,Simon Therrien +1108802,Mukesh Chhabra +1895678,Marisa DeVonish +111965,Keiichi Noda +1822708,David Gollner +72754,Elissa Knight +1304486,Bjorge Bondevik +1503904,Anthony Skrimshire +1149166,Fernando Álvarez Rebeil +572043,Yang Mi +996215,Adriane Galisteu +1261371,Mark Ghanimé +1648936,Paniz Zade +1607203,Albano Bufalini +589340,Crystal Huang Yi +1494736,Keith Oney +1138027,Masaru Matsuda +1401606,Lori McCoy-Bell +158038,Jimmy Hart +1089083,Kerry Wall +1736437,Nate Hatton +1211891,Brett Somers +96066,Liam Hemsworth +1301604,Eva Bergh +132245,Eva Melander +1207723,Dominick LaBanca +129535,Cochi Ponzoni +12811,Ken Marshall +1302231,Holly Beavon +1390421,Addy Miller +24687,Alfred Adam +50544,René Deltgen +1473672,Rebecca James +1283062,Robert H. Doudell +1353636,Marion Lord +146832,Jennie Ford +1126417,Arturo del Puerto +1383834,Richard Davies +1381388,Brian Oerly +84936,Gayle Kellogg +65446,Kate O'Flynn +1695658,Jayne Taini +1003248,Troye Sivan +105251,Severin Eskeland +506930,Max Edelbacher +70457,Peter Kremer +1252737,Aída Yéspica +1836946,Alyssa Perper +1678199,Priscilla Cory +80576,Max Records +15684,Paul Schneider +1408164,Veronica Reed +27395,Federico Pacifici +240563,Vladimir Ilin +324200,Judith Burnett +1057236,Maurizio Fardo +74886,David Stern +578841,Zhan Baizhanbayev +1563266,Jorge Lendeborg Jr. +146441,Efe Babacan +1286537,Cameron Britton +3880,Karen-Lise Mynster +87147,Sarah Deakins +1020057,Tiffany Little Canfield +1481147,Masayoshi Kawabe +1283559,Babett Arnold +239707,Ashalata Wabgaonkar +592986,Malcolm Lunghi +1451816,Tomás Pozzi +1663039,Akira Sugiyama +147473,Ingrid Kavelaars +1785922,Cameron Moon +52146,Edward Blackoff +1863666,Benz Veal +159381,Jennifer Griffin +1019770,Xiong Naijin +932085,Olga Frycz +81748,Catherine Castel +1003294,Marilyn Hamlin +1238460,Kazimir Sas +1332241,Kiante Elam +101192,Paolo Ferrari +82927,Abdellah Moundy +196732,Dean Miller +936018,Bongani Masondo +1408168,Kristin Calkins +579801,Georges Lemaire +1698794,Anas Chenin +146532,Elizabeth Chauvin +238310,Valentina Sharykina +110309,Hideko Okiyama +1198539,Gilles Treton +63998,Tammy Grimes +1224620,Dion Graham +1434388,Lisbet Lipschitz +124260,Chike Ohanwe +1034648,Dean Barlage +22385,Mary Valenti +47852,Mina Tander +143666,Anatoliy Lobotskiy +1771589,Gabriel Manak +85040,Sonam Kapoor +1686793,Sophie Lui +591067,Manish Choudhary +1055745,Sol Heras +1827933,Luke Heald +121125,Charles McAvoy +571439,Reha Yurdakul +1293281,Alon Pdut +1090397,Juliana Wimbles +1266459,Steffen Frank Keilberg +1736524,Nikki Smith +1248372,Hayato Taya +1423078,Rafa Mora +1547798,Nora Rajnochová +576180,Fina Rius +1215973,Leyna Nguyen +1263102,Rosalie Craig +93119,Geoff Morrell +144616,Saviana Scalfi +1163656,Viktor Neznanov +1140820,Ivano Davoli +1200545,Tsahi Halevi +1147413,Jalene Mack +949183,Kelly Lintz +1188336,Renato Dobal +550552,Jessica Barden +1812245,Chukky Okobi +1164832,Belinda +1205281,Kay Buckley +1667522,Sharon Danziger +147848,Ozge Borak +1452737,Sir Lamont Rodeheaver +1194391,Franco Cobianchi +1883853,Massimo Belli +55919,Yves Mourousi +85985,Michel Lemoine +567000,Manuel Broekman +110722,Prem Nath +1090216,Fred Hibbard +141558,Marisa Allasio +1588616,Niousha Zeighami +1201288,Giorgia Senesi +1422864,Harry Fleischmann +106421,Andy Nichols +161568,Dawn Lyn +6178,Roy Thinnes +125943,Naohito Fujiki +1763865,Francesca Hall +62220,Lauren Cohan +1746117,Andrew Jacobs +70354,John Hahn-Petersen +1021567,Kazuki Futami +1096116,Sergey Belogolovtsev +1272969,Rebecca Buller +1592924,Sienna Mazzone +1339118,Jeanette Jay +1420250,Vincent Naviti +1344343,Mister Mackey Jr. +1598079,Zeynep Ozder +87929,Rodney Hicks +543586,Ricky Addison Reed +1545517,Giedre Bond +1510492,Emmanuel Kabongo +1435542,Inga-Kai Puskar-Polonski +1715051,Tuyen Do +1169502,Emilia Räisänen +110898,Ólafur Egilsson +26426,Balduin Baas +1036196,Dexter Darden +221673,Jenn Fee +135257,Donna Croce +1271789,Paxton Johnson +1527819,Romano Malaspina +1569851,Marci Madison +969045,Chris Sheffield +203696,Steve Earle +110989,Eva Ras +1570540,Jessica Jay +1299312,Francesco Arca +84834,Trevor Moore +537581,Robert Seller +1231959,Marilyn Kagan +1178812,Andrew Bowser +17743,Miranda Cosgrove +227598,Antoine L'Écuyer +240945,Cody Deal +994417,Tecla Scarano +549981,Katarina Čas +82188,Jean-Pierre Martins +1670761,Jon Erik Castro +145415,Oktay Kaynarca +3309,Augustus Prew +1050726,Spencer Leigh +40687,Richard Laing +1394440,Sean-Ryan Petersen +32091,Gabrielle Doulcet +1031567,Diana Lázaro +1147927,Gary Slutkin +117277,Chad I Ginsburg +1366811,Alex Quijano +158124,Shane Sweet +1347982,Michel Ferracci +37011,Robert R. Shafer +1352657,Marc Olinger +182647,Lou Joffred +166965,Jolie Jackunas +1169485,Séverine Vincent +1394339,Hazel D'Jan +1875247,Gianfranco Salemi +48828,Hilmar Eichhorn +106385,Mark Powley +1273233,Jhil McEntyre +225200,Axel Siefer +128678,Viktor Gajnov +6932,Louise Latham +1217309,Anderson Cooper +33292,Brooke Nevin +17377,Max Martin Schröder +1459051,Rakel Laakso +929685,Ivan Krivoruchko +80792,Mihiro +1167459,Marine Vacth +1747682,Saye Sumi +121863,Prithviraj Kapoor +370407,George Navarro +1203089,Michael Zhang +1310760,Ki Hong Lee +237532,John Trudell +1523004,Rodney Luengu +18705,Bruce Nelson +1056090,Olumiji Olawumi +1468405,Don Latorre +133227,Katharine Alexander +929686,Stanislav Kantsevich +1707830,Anvil +238262,Sabina Riedel +1558152,Joe Cornelius +1030261,Bérénice Marlohe +1319615,Sydney Mary Nash +1372292,Antonio Contreras +76516,Paul Swift +3854,Lena Nyman +1238952,Nailea Norvind +1412751,Joanne Wilson +97563,Yuu Kashii +1676101,Diana Noris +1396600,Anick Wiget +1302468,Justin Marco +1096333,Mieczysław Voit +1797403,Miranda Beinart-Smith +935633,Juan Torena +1679772,Jeff Gum +1121031,Andrés Velencoso +1513564,Chuck Sigars +140372,David Palmer +143861,Patrick Murphy +1310262,G. Gnanasambandam +99464,Walter Miller +1531602,Emily Boakye Agyemang +1717903,Lauren Gobuzzi +241930,Dominique Briand +930440,Monique Brienne +86870,Mikhail Efremov +57715,Kulle Westphal +136758,Lia Boysen +1194995,Diego Joaquin Lopez +180906,David Lowe +114305,Takami Mizuhashi +1650112,Owen Asztalos +101876,Catherine Feller +128223,Lorenzo Gioielli +1200688,Oleg Li +1327484,Sujitha +61547,Linda Ko +173450,Karen Sheperd +544216,Daniele Ferretti +1782577,Hayat Jubrail +562225,Rajeev Mehta +1319570,Adam Gibbs +1445130,Pablo Grasso +38672,Johanna Day +16722,Tim Wilde +137261,Leo Nomis +1784659,Deana Molle' +70499,József Madaras +132909,Ana Victoria Borge +70827,Jane Badler +1511986,Kristen Romond +236984,Trey Stroud +133870,John Bentley +1863889,Edmilson Cordeiro +1225571,Sherry Hursey +1785905,Alister Albert +1241405,Aaron Schwartz +963745,Buddy Sosthand +232474,Bergljót Arnadóttir +1646439,Oscar Sanders +1767231,Stephanie Long +1449376,Dorian Holley +159365,Pete Gardner +129511,Kenichi Hata +129589,Pippo Franco +1750926,Ben Parks +114382,Nandu Madhav +62172,Benjamin Ayres +129020,Jonis Bashir +131845,Fawad Afzal Khan +134538,Antonello Fassari +1230693,Keith Jayne +51765,Patrick Campbell +1589636,Shystie +64618,Adam MacDonald +1297702,Irina Yegorova +128188,Rob Kaman +113460,John Kerry +210016,Dominic Flores +557537,Marcheline Bertrand +1723676,Cindy Piper +18402,Bernhard Sondermann +146608,John Flanders +1791287,Justine Salata +170257,Garfield Morgan +1719087,Jennifer Mays +579800,Pierre Huchet +1841009,Cooter Heber +1473624,Ante Vićan +1255439,Hazar Ergüçlü +1593389,Branislav R. Tatalovic +1074966,Evgenia Dodena +158609,Lesley Ewen +160430,Aron Abrams +25126,Jeanne Herviale +1292114,Jake Croker +1475593,Marji Audeh +539341,Alec Clunes +1046955,Jack Cheatham +1610502,T.K. Webb +1779360,Ashlyn Moore +1264417,Anja Schneider +1480664,Guillermo Balcázar +238845,Tuba Ünsal +22932,Boleslaw Płotnicki +221125,Noah Munck +1672731,Prestin Persson +589357,Mona Andersson +139619,Jessie Rusu +96706,Lynn Hamilton +112594,Anders Ahlbom +931417,Dipannita Sharma +101898,Edgar Stehli +128641,George Watts +1865132,Martino Scovacricchi +1459152,Christopher T. Wood +227071,Pedro Casablanc +137353,Pamela Villoresi +1636801,Debbie Scaletta +1169341,Alexus Lapri Geier +572062,Charlie Elvegård +1114533,Höskuldur Eiríksson +1394459,Matt Hurley +28675,Laurent Stocker +59045,Catherine Vinatier +1127977,Bailey Hughes +1561575,Miguel Gomez +1588229,Devix Szell +1454472,Dominic Oley +121205,Bud Wolfe +1613033,Terry S. Mercer +1190330,Kae Shimamura +1184984,Sergio Ukmar +544723,Giuseppe Pambieri +1581099,Pat Williams +1620022,Paul Ralli +1386192,Kirti Kulhari +1711167,Mason Alban +1270298,Jens Bolling +1423501,Ryôtarô Mizushima +21110,Richard Leacock +229355,Sergey Sosnovskiy +1178489,Taisiya Vilkova +1150147,Pär Ericson +1748847,Sérgio Stern +976019,Lyn Wilde +1759917,Marie-Eve Cigna +155222,Jeremy Shamos +227234,Jim Porterfield +1479882,Geoffrey Burton +994871,Fanfulla +1473937,Cesare Taurasi +55733,Jaromír Hanzlík +140373,James Feldman +566331,Oona Chaplin +1579589,Danielle E. Hawkins +1906372,Brenda K. Starr +1380498,Darcey Johnson +1689933,Brian Daye +1186,Lars Kaalund +1827266,Jenna Hurt +1087600,Ben Onwukwe +52477,Zachery Ty Bryan +37006,Justin Urich +1902107,Amit Jacobi +46039,Hannelore Schroth +59013,Setu Taase +1423069,Pablo Motos +1816403,Leslie A. Hughes +1056227,Daniela Flynn +1697393,Meghan Cullen +147891,Marie-Marguerite Sabongui +936836,Jang Hee-jin +1623645,Kelly Bowland +1380886,Amal Kateb +1213688,Prentis Hancock +1826457,Samuel Hubinette +1267701,Baijaku Nakamura +1767211,Kristina Case +1170659,James Landry Hébert +196862,Pierre Perea +48721,Horst Rehberg +1457426,Erol Afsin +1869051,Shawn Knowles +125926,Mauli Ganguly +38598,Lucio Montanaro +1733105,Christine Lohr +1760868,Musca Kumalo +30260,Martha O'Driscoll +136983,Max Bacon +159366,Kavita Patil +46216,Niels-Bruno Schmidt +1860858,Rosa Honkonen +1697248,Kenichi Fukuda +1544406,Jannette Sepwa +1724706,Frank-Michael Malchow +77122,María Valverde +1129445,Sonia Loaiza +1226457,John O'Brien +1580562,River Huang +1371012,Michael Simon Hall +79910,Deb Craig +1417739,Pico Alexander +69052,Harry Nilsson +65449,Karina Fernandez +1161964,Kevin Cronin +1159354,Janet Barrett +118503,Dino Cassio +115491,Ana Layevska +1605801,Richard Capelle +226083,Ruby Bentall +1491367,Wilson Mello +101555,Wandisa Guida +20960,Rob Estes +970508,John-Paul Howard +1357513,Stephanie Hodes +1283063,Hillel Michael Shamam +85459,Sudesh Berry +1067238,Igor Zaripov +72672,William Miller +108188,Clyde Jones +1153637,Mehdi Joossen +1745599,Debi Creger +104895,James Wilder +1773945,Aleksandr Zakharov +1295250,Laurent Klug +1318352,Lewis Powell +933324,Cristóbal Briceño +432189,Mélèze Bouzid +133602,Kichiemon Nakamura +1295457,Kang So-ra +9746,Michel Auclair +156972,Jonelle Allen +158711,Jonna Lee +88105,Atticus Todd +1209487,Bob Cole +1174218,Tim Ransom +27875,Alex van Warmerdam +1180347,Sasha Sloan +187406,Madeleine Greaves +31949,Owen Berry +1394360,Ryan Browning Johnson +1888506,Sharon Adams +1298090,Alan Keith +152411,Karen Elizabeth Austin +87083,Vladimir Grammatikov +1419588,Jeremy Zampatti +237525,Yelizaveta Uvarova +134078,Aron Tager +122750,Leslie Uggams +106798,Teal Roberts +1367614,John Lester Johnson +1504646,Sam Quartin +555741,Marina Aleksandrova +1068866,Mitsuo Nagata +1509651,Se Nam-Nam +571300,Dave Wittenberg +138129,Raivo Trass +100492,Matt Devlen +1009362,Yannis Stankoglou +1775370,Rodrigo Magal +1361010,Timothy Balme +99522,Bahar Pars +1031101,Margaret Gerard +78405,Stacie Theon +1040951,Manish Chaudhary +553807,Sanae Miyata +95618,Philippe Geubels +1522268,Craig Henry +1446337,Les Pauley +1464662,Nubia Martí +59844,Omar J. Dorsey +3308,Rosalind Knight +1240284,Farhad Aslani +1894270,Luciano Muzzi +117729,Amit Sial +111593,Ron Hagerthy +141046,Emily Longstreth +23458,Charlie Cox +1277583,Bianca A. Santos +228877,Belén Esteban +1360004,Becki Dennis +1397778,Anya Taylor-Joy +1207148,Skip E. Lowe +1489350,Alexandra Mchale +584638,Thilakan +1049830,Kerry Cahill +24762,Catherine Mouchet +96881,Catherine Carlen +1500689,Kristen Merritt +1210951,Zip Monberg +1011138,Meital Barda +1192564,David Peart +109750,Conrad Coleby +429557,Mary Evans +1535053,Julian Maroun +1315197,Izumi Sawada +96036,Jeff Krajci +1771542,Reegus Flenory +1169853,Shaun Thomas +1695140,Emily Aitcheson +148819,Wanda Hawley +593022,Rajesh Puri +46453,Veerle Dobbelaere +1785902,Adam Pelta-Pauls +569847,Visockaite Sonata +1207147,Joseph Carlo +1724689,Lilo Friedrich +72685,Henrik Norberg +1068812,Peg Thon +232400,Antti Reini +90047,Charles Mnene +3762,Christine Kaufmann +59847,Leonard Earl Howze +134467,Florentín Groll +1298966,Lee Tuson +1802424,Lucía Zorrilla +1086249,Sifan Shao +1258397,Sadi Celil Cengiz +205316,Max Amini +1857785,Maria Vittoria Argenti +97458,Mike Kurzhal +1503845,Ayinde Vaughan +937176,Pamela Craig +1298422,Mark Kulik +1235628,Zinaid Memišević +994414,Kostas Kleftogiannis +1438676,Katherine Jeanie Russell +1138169,Daniel Hadebe +1283555,Judith Evers +1538091,Simon Werner +1664462,Richard Lyntton +90411,Stacey Horsley +1667054,Melanie Alexander +113546,Jan Rossini +37170,Sylvie Koblížková +1784630,Cameron Banfield +1165400,Carl Manneh +1117059,Kana Harada +814150,Yoshiki Hayashi +53420,Peter Moland +1237528,Reshma Shetty +85756,Frankie Shaw +1621713,Auston Lam +560142,Dodo Abashidze +46902,Kirsten Robek +1677464,Diego Espejel +1496230,Elizabeth Jayne +1174577,Yasar Abravaya +564348,Lavell Crawford +64516,Austin Farwell +1846436,Serik Bimurzin +79279,Paco Cabezas +1585171,Devyn LaBella +1264354,Jonna Sohlmér +1844345,Brigid Kelly +91602,Scandar Copti +81749,Manoel de Oliveira +120004,Keith Richards +1353911,Andy Dopieralski +1371321,Lew Hicks +1883799,Jiri N. Jelinek +1349534,Luciana Paoli +1200099,Ramona Rahman +1183867,Georgia Lyman +6129,Anne-Grethe Bjarup Riis +1028507,Nurhan Nur +1090927,Trey Loney +1893379,Robert Burroughs +1310868,Sven Erik Prytz +1462232,József Kiss +1568024,Melissa Linton +1113146,Mira Awad +100855,Lucía Prado +1445128,Jose Luis Arias +87849,Namrata Shirodkar +84182,Luis Raúl +1650257,Rob Kirtley +99007,Laura Silverman +1503851,Kyle Julian Graham +1207775,Jorma Pulkkinen +81725,Nicki Micheaux +96328,Gauhar Khan +582044,Booder +1056056,Toshiko Kobayashi +53548,Angela Punch McGregor +81346,Laila Rouass +1371497,Gavin Bloomer +1130975,Leszek Herdegen +1649293,Chang Pai-Chou +110996,Nikola Pejaković +113528,Chrissie Cotterill +1068811,Matthew Cornwell +144678,Jamie Gulpilil +31664,Ryszard Ronczewski +221098,Anna Camp +172884,Simone Bailly +1890100,Igor Alexandrovich +1285537,Gracyn Shinyei +1481835,Tuğba Sunguroğlu +1648473,Félix Pascual +1508651,Zoe McLane +108856,Tom Lindholm +1795288,Guillaume Mélanie +1128854,Philip Bulcock +1534583,Yvonne Williams +57453,Finn Carter +134144,Hugh Morton +1828990,Andrew Franklin +133092,Michaël Balerdi +1232582,Rebecca Luker +108563,François Guétary +207442,Tom Pelphrey +1702131,Gidon Eshel +988680,Corrado Solari +1412401,Fadi Rifaai +1669340,Steve Barr +138242,Elizabeth Franz +117655,Andrei Araditz +214556,Indiana Evans +101807,Regan Deal +20728,Tuncel Kurtiz +574223,Marcel Borràs +146230,André Chaumeau +60287,Charles Carroll +128015,Francesco Mandelli +1055742,Emiko Yagumo +1210613,Georgia X. Lifsher +165787,Rich Moore +87558,Manoj Kumar +220582,Catherine Benguigui +1318510,Claire Dupray +1849485,Lauren Hamilton Neill +1319519,Deena Dill +1177873,Dick Rich +1505458,River Shields +80123,Michael Yama +1555943,Attila G. Kerekes +1168578,James Maitland +1210484,Alyssa Capriotti +1504905,Lori Tritel +1589178,Liu Yin-Shang +133436,Stanley Clements +1724707,Jeevan D'Souza +1004717,Graham Murray +1329372,Tom Fairfoot +1522154,Clarence Aumend +6603,Jack Cardiff +1355010,Paul Roland +1561249,Anabel Möbius +1091874,Lisa Noto +1418957,Charlie Ganis +1371438,Alexander Hunzinger +577431,Michel Gondoin +236822,Boris Bibikov +32044,Pierre Santini +1377992,Lori Beth Sikes +128418,Mimmo Petrelli +1272980,Maria Laboy +29163,Trude Hesterberg +121039,Frank Graham +1364893,Iggy Azalea +10962,Jesse Ramirez +1343041,Shriya Sharma +8529,Jon Landau +1818382,Ashley A. Thomas +1382473,Dougie Baldwin +1112036,Tim Lewis +134076,Philip Williams +1681428,Jarmo Murumaa +1093020,Igor Klass +188370,C.J. Thomason +1814099,Charlotte Kedy +1295979,Tony Barrow +1542416,Chun Jae-Hyun +1671175,Bud Mercer +82543,Allan Svensson +1519560,Hally McGehean +930452,Frédéric Mariotti +11684,Libuše Šafránková +146973,Pooja Ruparel +1795185,Leon Mercedes +1492895,Евгений Гришковец +1173620,Larry Kretchmar +1496292,Aundrea Gadsby +1798347,Amy Dawson +157476,John C. Becher +1631707,Nancy Crane +1439316,Sean Thomas +7041,Salvator Xuereb +191775,Will Rogers Jr. +1600856,Наталия Трубникова +625117,Marika Enstad +1452350,Don Richard +1461309,Rajeev Pahuja +1628378,Gregg Goldsbury +544246,Zuzana Stivínová +155875,Gregory Millar +1117092,Dana Cook +1758890,Doug Wright +1817452,Cruz Donawa +1560333,Masey McLain +1105832,Jason Gurvitz +10931,Lorenzo Semple Jr. +226190,Elisabeth Matheson +1354628,Damien Chapelle +1359357,Josefina Burgos +1403510,Yuji Yoshimasu +167825,Kim Rhodes +222859,Paul Graetz +1855,Leonard Lansink +55930,Steven Tash +1463652,Madeleine Arthur +1306892,Michael J. Morris +1465158,Patrick David +119949,Vlastimir Velisavljević +131638,Fabrizio Bracconeri +67178,Valeria Solarino +1396499,Luis Castilla +1207315,Oleg Rabcuk +1508646,Nino Podalydès +1489791,Ned Shatzer +1319926,Jacqueline Bir +1692665,Юлия Чернова +64774,Natalia Oreiro +78913,Hans Klok +35800,Jianna Ballard +1620915,Gladys Fung +1438310,Jason Owen +1438891,Josephine Hirst +1015307,Herbert Farjeon +240659,Ricky Cheng Tien-Chi +1293717,Brian Hlushko +82626,Calum Worthy +1730429,Kate Ambler +1676049,Chris Cavener +936672,Jessica Schulte +15976,Cal Bolder +78044,Erin Cahill +149495,Marti Noxon +1382960,Charles Unger +1771600,Joey Popp +1127788,Luciano Piergiovanni +1715630,Nóra Rainer-Micsinyei +1811524,Araba E. Johnston Arthur +1445683,Shaun Clay +116518,Tom Naughton +1035689,Raymonde de Kuyper +130414,Emily Beecham +569896,Lies Pauwels +1161966,Warren DeMartini +1174685,Zhou Yiwei +157644,Jack Jones +1241137,Amy Marston +1261274,Greg Jones +1799474,Tristan Peach +1041731,Rory Keenan +1043451,Morton Selten +1733512,Adam Gillen +235884,Christian Gaul +231885,Paola Barbara +1842093,Irene Guindal +439253,Laura Wiggins +1338957,Samuel Viyuela +235665,Miloslav Holub +156245,Jim Chiros +1521622,Boe Kaan +1674155,Tristram Davies +1190019,Misako Konno +1465526,Danielle Jadelyn +1484887,Sam Milman +559879,Blaise Miller +133936,Willy Maertens +1506496,Donna Sue Jahier +935282,Cedric Bates +1717347,Filipe Bragança +1641967,Marcus Paul James +279486,Dira Paes +162672,Pat Finn +41274,Stephen Macht +108859,Seppo Sallinen +1795340,Amin Faruqi +1879413,Gabriele Berti +35536,Us Conradi +227229,Brian Balzerini +1214777,Russell Porter +4619,Gabriela Maria Schmeide +136974,Brenda Carlin +1676052,Aaron Janke +995644,Dylan Cole +1160233,Matilde F. Vilariño +12310,Warren Stevens +1848806,Michael Anthony DiNuzzo +114599,Hallock Beals +1839932,Daniel Terra +1683796,Sean Archulet +1190450,Chutavuth Pattarakampol +212768,Nick Eversman +1697811,Rafa Remedios +1187355,Annina Butterworth +1010819,Elham Ehsas +1121961,Siobhan Williams +1225951,Emy Aneke +186341,Miyuki Sawashiro +979216,Victor Cruz +1871272,Massimo Bando +93812,Vincent Floderer +44891,Pascal Andres +1089799,Sabine Mamou +98664,Sarah Scott +1327646,John Redlinger +146931,Mike Raven +558900,Stephen Huszar +1384106,Bertram Jesdinsky +63381,Nellie Bly Baker +28729,André Hazes +1151458,Christophe Reymond +1743566,Alphonso Austin +236615,Aymeric Cormerais +1719905,Lee Arnone +1090276,Alison Becker +1821542,Ed Greenburg +1099738,Andrea Esquivel +1883806,Brendan Kerkvliet +1505301,Alizabeth Hamer +1125007,Liz Beebe +1856730,David Bobin +129440,Vanessa Incontrada +1622028,Ma Wei-Jiang +19959,Thomas Hauff +1670756,Shawn Lecrone +15577,Emily Barclay +588186,Ilza Rosario +1092893,Ardy Brent Carlson +79649,Sarah DeVincentis +81003,Anna Mikhalkova +1139379,Sonia Gessner +211521,Warren Brown +1691983,Jay R. Adams +1049742,Jade Pettyjohn +119807,James Tupper +42840,Paul Rogers +1377256,Wayne Arey +1268071,Ashton Leigh +100242,Elize du Toit +1288839,Sherril Johnson +1278500,Courtney Eaton +1471363,Sonie Charsaky +1784288,Ján Jankov +109472,Olivier Barthelemy +1694307,Jose Antonio Coello Porras +86243,Rasika Dugal +219692,Tom Arcuragi +1636420,Jessica Copeland +53583,Alison Murray +1171570,Jacob Lofland +1005696,Mani Haghighi +240013,Kôji Sekiyama +72458,Kazunari Tanaka +1137795,Virginia Welch +1555433,Yrjö Järvinen +81106,Camille Guaty +1026049,Ann Ferguson +1418885,Anahita Afshar +235718,Yukihiko Gondô +1262119,Míla Beran +117490,Stephen Szibler +113693,Samrat Chakrabarti +137336,Marko Igonda +1869972,Julian Kennedy +97864,Richard Gabai +1363404,John W. Lawson +1720589,Stephen Varga +1611251,Véronique Seghers +1597840,Enno Trebs +1339825,Debi Dutta +1452151,Atheena Frizzell +146149,Jayaprakash Reddy +127070,Brian Anthony Wilson +1745802,Rafael García +1428024,Kunle Afolayan +1217907,Joanna David +1687412,Martti Tschokkinen +1000799,Olivia Wickline +96031,Melissa Lukon +1006758,Ronald Bailey +139913,Harry Brogan +1622882,Anjali Aneesh Upasana +86302,Sunny Deol +126673,Leo Magnusson +1002639,Angeles Woo +1394379,Matthew Steer +1480661,Hank Sutter +1621149,Justin Clarke +179577,Desmond Roberts +1799843,Michael Sorkin +1660959,Maddie Baillio +230363,Tak Jae-hoon +562602,Lyudmila Volynskaya +566167,Terunosuke Takezai +1316665,Andrea Grano +99812,Fernando Esteso +110183,Nate Rubin +1225228,Dr George McGavin +98474,Jimmy Stathis +1292671,Jagannatha Varma +1505472,Floriane Potiez +1023402,Josefina Cembrero +84469,Mayan Lopez +142769,Şerif Sezer +38841,Mike Krüger +589027,Marie Hammer Boda +1114536,Pálmi Gestsson +95001,Simon Templeman +190760,Colette Jackson +120810,Maurice Cass +210166,Terry Duggan +582280,Daryl Wahayenni-Martin +1425204,Jeff Michael +930223,Fajah Lourens +1115745,Anusree +1901672,Nello Appodia +1530879,Maria Breyman +1240398,Damien Molony +1549744,Guadalupe Manent +583486,Gilbert Mouret +1016206,Eleni Zafeiriou +1614891,Eric Ruffin +629478,Achyut Potdar +205772,Wrenn Schmidt +543132,Richard Hatch +1063979,Bob Bottieri +1822704,Ekaterina Kreh +141533,Lucy Gaskell +1348613,Monica Garcia +1415180,Sugizo +544971,Jan Duggan +102412,Kostas Sommer +1643044,Alva Hellenius +1519559,Scott Bridges +1357161,Omar Boflot +238688,Oksana Korostyshevskaya +1467353,Angie Alexander +128141,Gianni Agus +1504937,Rachel Handshaw +1139484,Marie Berto +1747317,Elena Stanisheva +236080,Maurizio Donadoni +1717270,Ron Goleman +150440,Gülçin Santırcıoğlu +1838591,Monique Robbins +26075,Alan Scarfe +1167134,Chanel Latorre +1332900,Max Meyr +1039631,Zinaida Kirienko +87862,Matthijs van de Sande Bakhuyzen +1225904,Nick Hodaly +114421,Anita Todesco +143541,Ryu Hyun-Kyung +37889,Elsa Wagner +1394012,Jaren Mitchell +1188434,Pau Nubiola +1568705,Tara Bowles +1456328,Patrick Carlyle +587753,Pooja Hegde +1874722,Robert Strandgaard Mikkelsen +144104,Kiyoshi Kawakubo +63588,Patrick Tang +1388672,Nic Delis +1076454,Freddie Stewart +1622087,Justin Randell Brooke +143325,Porntip Papanai +1547692,Rebecca Lines +397265,CeCe Whitney +1399610,Paul Wilson +138624,Robin Arcuri +1651400,Peter Meyer +1399243,Feng Kang Chu +1398061,Aason Nadjiwan +1077335,Kazuo Kumakura +88191,Marian Makula +1208800,Xavier Abreu +140014,Anita Larronde +59110,Joey Chin +1296865,Kozhikode Narayanan Nair +1078371,Yadigar Ejder +550033,Marius Colucci +26920,Maria Zbyszewska +593170,Brendan O'Reilly +591419,Agnieszka Pilaszewska +593021,Deepak Qazir +1462234,Zoltán Téglás +155349,Cici Lau +27429,Alex McSweeney +629492,Mariya Shukshina +102779,Tom Lowell +32378,Liana Orfei +562158,Samira Lachhab +936970,Julia Garner +1150862,Diana Axelsen +1744815,Gaetan Claudia +3582,Jean Aurel +1136786,Nino Böhlau +1624093,Wang Jian +1371831,Ben Gavin +1205759,Stefan Merki +1170657,Amanda Warren +134077,Tom Melissis +55085,Amber Heard +80029,Matthew Stefiuk +1287127,Xhevdet Jashari +1205888,Alex Froman +129077,Valentina Carnelutti +256170,Minor Mustain +19962,Melanie Merkosky +92943,Paul Sado +207450,Justine Dorsey +1881183,Hans-Jürgen Müller-Hohensee +1599275,Ziad Abaza +59373,Mélanie Thierry +556750,Lorenzo Piani +87915,Gijs Scholten van Aschat +31594,Nora Veryán +1660680,Gabriele Blum +1766047,Ashley Greene +85417,Tye Olson +130491,William Boyd +14815,Michael Aldridge +177453,Anne James +1890106,Anatoly Duatlov +1190708,Irina Savina +1359959,Danny Bental +935865,Katariina Kaitue +1525762,Almut Zilcher +1503849,Cici Leah Campbell +107978,Robert Christian +1508642,Georges Labbouz +571731,David Hobbs +992848,Ari-Kyösti Seppo +60458,Liana Liberato +1034731,Isabelle Linnartz +96787,Sophie Vavasseur +1187769,Vittoria Tessitore +1027188,Alexandra Malek +1306596,Swaminathan +519735,Grace Phipps +99420,Roy MacArthur +100033,Françoise Rosay +128634,Tony Black +1857784,Malvina Ruggiano +125375,Sándor Fábry +1260072,Mimis Fotopoulos +1507975,Roberta Mattei +141641,Aleksei Chernov +3970,Erwin Leder +85139,Nicholas Braun +1098642,Zahra Renaward +1352110,Simo Osa +148513,Polly Moran +69529,María Asquerino +1112484,Scarlet Hemingway +1635147,Ryan Newton +81331,Maeve Dermody +968889,Billy Blair +32648,George Aguilar +544977,Arjun Sarja +570010,George Georgiou +1127942,Atilla Ergün +1123789,Catherine Fa +1183781,Ryan Steele +951571,Warren Jackson +1707934,Dylan Lloyd +1359547,Paul Ireland +1071129,Michael Maris +5147,Ralph Seymour +189624,Isabelle Mejias +1002666,Tatyana Shmyga +548375,Michael Rainey Jr. +232942,Dagmar Döring +135630,John Gillespie +108179,Roy Tatum +585141,Ransom M. Sherman +229268,Louis Arbessier +1839927,Julia Garcia +1003641,Adele Watson +64624,Marium Carvell +1454471,Cornelia Ivancan +86269,Amy Esterle +1117922,Zinaida Dekhtyaryova +146447,Murat Ünalmış +1149603,Ketty Nichols +1384990,Anita Sohlberg +1394120,Lisa Eisner +563080,Lou Brown II +1117269,Alix Maria Taulbee +65732,Brad Hunt +217334,Kristýna Leichtová +1006731,Melissa Roxburgh +1445115,Mariano Gerling +1628643,Pauline Letts +22050,Camilla More +119048,Nikolay Valuev +1262704,Fernanda Souza +140918,Sakura Tange +86890,Rukhsar +25642,Claire Davidson +1622095,Kemuel Crossty +1838854,Ed Sweeny +1112960,Emiliano Freifeld +1365798,Murilo Quirino +56241,Rachida Brakni +1333734,Stefanie Brown +1545524,Gary Chinn +1655882,Kassai Lajos +1153793,Amaris Davidson +1520920,Claire Nelissen +1297759,Chris Wilson +3644,Dean Smith +532598,Danny Quinn +927857,Samantha Scully +93650,Guillermo Francella +1651130,Guy Van Swearingen +1363053,Shina Shihoko Nagai +96483,Julián Doregger +94418,Peppino De Filippo +240532,Larisa Udovichenko +1643244,Joseph Wise +1140044,Kevin Cheng +1041345,Rafał Maćkowiak +550539,Mimi Pollak +1479514,Gregory Antoine +1512188,David G. Baker +1348608,Caitlin Coons +1584553,Fisnik Ademi +1180327,Brianna Williams +552625,Cynthia Adler +1629555,Luciana Fregolente +85143,Angela Sarafyan +1151394,Raül Molist +1851058,Ermanno Bonatti +1516453,Gary Arthurs +77033,Judyann Elder +1145557,Arthur J. Maskery +586159,Katarzyna Zielinska +1123743,Ginevra Colonna +82701,José Luis Gil +1645538,Susanne Reuter +106994,Barbara Dare +1171718,Bryan Safi +56103,Hattie Morahan +560281,José Eduardo +543,Marianne Muellerleile +566727,Elena Morozova +1462340,Antoine Régent +24240,Roland Manookian +1480637,Codin Maticiuc +83222,Shane McRae +1808450,Maria Ester Caldeira +1879764,Prospero Richelmy +1093954,Nacho Sierra +1436295,Yongyong Yang +1030260,Pat Mills +1068136,Reiko Tokunaga +10057,Marília Pêra +1453803,Sarah Carbiener +143533,John Shelton +154580,Anthony Holiday +1308519,Dušan Bulajić +35878,Suzy Falk +97330,Norman Kaye +1459891,Edward Radulski +1248204,Moon Chae-won +1025370,Daylon Walton +138558,Landon Liboiron +1717376,Caleb Spillyards +95018,Colleen Miller +79906,Kathryn Witt +1211167,Gian Paolo Rosmino +226001,Ariana Grande +1869040,Chenique Charmaine +1680199,Sean Martini +1538882,Artur Żmijewski +537836,Christina von Blanc +166298,Whit Hertford +1295522,Justin Ray +1804474,Eddy Stewart +2254,Curtiss Cook +29246,Alexandra Sorina +1379501,Thatcher Robinson +1776750,Zhi Fang Xu +19822,Carlota Olcina +1084695,Haydée Padilla +1683739,Joan Q. Scott +1846437,Murat Bissenbin +228969,Roxanne McKee +33810,Luciano Catenacci +123609,Jean-Paul Comart +549318,Jon Norman Schneider +1598081,Ahu Yagtug +1704855,Jasmin Barbara Mairhofer +1538574,Sophia Hasmik +1102317,Fiore Leo +1579248,Kirsty Page +581414,Yeşim Ceren Bozoğlu +1196822,Jessica De Gouw +198677,Joanna Noyes +58762,Elias Ferkin +1107678,Stephen Plunkett +113952,Alice Pearce +8205,Marie Gruber +1676371,Nevin Efe +1115625,Ann Smith +237637,Yuvarani +91607,Paul Francis +1628687,Regé-Jean Page +41946,Mike Katz +1763913,Pat Dortch +1346954,Razvan Ciuraru +1480651,Hans R. Walthard +55004,Birgitta Andersson +130768,Bill Oberst Jr. +1533665,Deirdre Brennan +1388067,Alfredo Martinelli +146147,Vennela Kishore +1676369,Büsra Apaydin +13017,Hawk Koch +1319820,Raphaële Germser +1093705,Göran Thorell +1327009,Lorelei Linklater +1123090,Thierry Le Portier +1664483,Ennio Colaianni +58047,Charles Finch +18443,Christa Strobel +84392,Don Ferrarone +1438973,Teodoro Giambanco +1283600,Johnny Taylor +1008541,Massimiliano Benvenuto +111669,Jagadish +1046747,Priya Bapat +937448,Iñaki Aierra +1615206,Evan McManus +1640658,Angela Ritschard +75,Brigitte Helm +35654,Spencer Breslin +1315576,Ananth Nag +230084,Elika Bozorgi +1215883,Jason Cook +181234,Phil Hendrie +481155,Fernando Gomes +1378244,Toby Bronson +1544809,Niall Madden +1309268,Dmitri Yendaltsev +77868,Suzanne Turner +1811853,Ann Pickard Rhea +1358978,Matthew D'Olimpio +228147,Armando Bandini +1021201,Zhou Bo +1019060,Jean Le Bouvier +223054,Aldo Monti +1707961,Edward Tresize +177645,Dale Gibson +1140262,Clara Christiansson +1204945,Guglielmo Dal Corso +559973,Liva Kruminya +592076,Otto Sevcík +115974,Adam Pally +1848662,Walério Araújo +131338,Kent McQuaid +490877,Nikos Kalogeropoulos +1144087,Sandra Storme +108569,Iain McGregor +95613,Charles Oliver +1208891,Bryan Fogel +1531606,Yaneisha Franklin +157790,Glenn Wrage +1035417,Giulia Fossà +1368000,Kathy Murphy +1714085,Marius Uhl +1607174,Tiffany Baldwin +1029081,Merja Larivaara +1111443,George Wein +1727875,Jorge Becker +1504156,Niki Koss +1316666,Ginette Rhodes +237079,Hiroshi Ishikawa +1157292,Miles Robbins +55903,Nathin Butler +1431879,Conceição Senna +82738,Adam Leese +1027491,Brittany Gray +1871279,Tomaso Thellung +60734,Harrison Fahn +107893,Leszek Teleszynski +1636759,Logan Fry +147417,Hiroko Sakurai +1689913,Daniel Wakefield +1610902,Tamzin Brown +1335495,Kira Pearson +1467460,Jack Walsh +89686,Will Rogers +1098616,Nikolay Yakovchenko +110304,Junzaburô Ban +143120,Francisco Costa +84100,Fred Testot +1307569,Annemarie Steinsieck +1555125,Charles Christopher +1118743,Renaud Cestre +101247,Adrian Petriw +1565085,Charlotte Kate Fox +28254,Bernadette Lafont +1861166,Teresa Rossi Passante +61999,Ashley Hartman +1671693,Tuss +1774430,Ulysse Stein +1278265,Mikey LeBeau +108256,Aaron Gaffey +1287133,Manos Vakousis +1221098,Takayuki Kondō +1651393,Ty Hurley +1270127,Hannes Närhi +1726739,Andreas Lucius +94255,Francesco Scianna +1457534,Dan Rowan +1624628,Rick Lyman +1479333,Brynjar Andersen Saus +174241,Terrence Currier +40646,Amelda Brown +27035,Paul Dubov +110755,Pirkko Hämäläinen +111957,Kôji Fujiyama +1559746,Nobutaka Asahara +1418970,Priit Strandberg +1174354,Ray Chippeway +1288335,Kevin M. Brennan +1574241,Anat Gerber +3176,Vic Ramos +1050856,Jasna Djuricic +25435,Michael Grimm +1311386,Alwy Becker +1167989,Kôji Iwamoto +1579926,Marc Valera +1652810,Lee Yeong-ran +54233,Vincent Rottiers +66773, Cheung Chi-Sing +1247793,Eri Nakao +1604964,Rachel Faulkner +112414,Christine Paul-Podlasky +106822,Tasso Kavadia +127060,William Kania +1467501,Elijah Smith +1878323,Kris Lundberg +58980,Myesha Pinder +1674309,Ross Gallo +1818100,Brieanna Moench +63836,Élodie Bollée +1367216,David Carey Foster +1155285,Marsha Natika +1082749,Sumiko Kurishima +111385,Rachelle Carson +1307208,Wendy Allnutt +1521611,Katharine Innes +178630,Kate Fleetwood +230808,Paul du Toit +1326322,C.J. Perry +1886752,Mateusz Machnik +108943,Bill Capizzi +130033,Henri Storck +225866,Charlotte Barrielle +1356144,Alain Pierre +170740,Zuhair Haddad +1695990,Graham W.J. Beal +94065,Dmitri Ulyanov +550318,Amber Gaiennie +1295591,Laurent Joffrin +929931,Daniela Catz +1289008,Philip Godfrey +544186,Jamil Khoury +1443155,Marie Schultz +1168129,Junichi Kajioka +151521,Ted Gehring +1618827,Andrés Huesca +20891,Daniil Strakhov +1608740,Xavier Morales +1090093,Zebulon Whatley +1566182,Jack Rawl +568081,Lina Turkama +1766052,Dan Li +1207391,Alice Hechy +75403,Frank Wilson +1266878,John Batis +1085160,Henrik Mäki-Tanila +932663,Richard Ruxton +1366025,Zofia Wichłacz +121410,Frank LaRue +226527,Francesco Paolantoni +1402673,Milica Jevtić +100874,Lindsay Bourne +1467096,Alexander Novikov (II) +1377525,Jacopo Crovella +1837278,Sasha Morfaw +98920,Scott Lunsford +123989,Anaïs Demoustier +1687444,Theresa Wong +935632,Mihalis Marinos +1202801,Azmil Mustapha +1381406,Chelsea Hayes +144829,Vladimir Fogel +1618066,Corbin Reid +1127915,Veton Osmani +65195,Mathew St. Patrick +1400685,Mike Schminke +1837168,Rita Serino +101857,Prateeksha Lonkar +929107,Anthony Straga +1088214,Florin Ionescu +1759638,Stanis Krista Ames +1251014,Hiroyuki Kinoshita +928636,Anita Storr +106829,Doc Harris +1584244,Sorush Sehhat +236982,Frances Peterson +20866,Peer Schmidt +1777590,Ramona King +86673,Zoya Vasilkova +83930,Kenji Utsumi +586000,Tom Cullen +51750,Joey Lawrence +102183,Bart Sumner +1266276,Aurore Erguy +137644,Aleksander Okunev +1548298,Mary Lane Haskell +82700,Mario Casas +1016007,Bob Herron +1585243,Kengo Hioki +1810156,Frank Fiola +1055672,Heather Tocquigny +1062375,Sidi Henderson +1179388,Adrian Correger +1113301,Jerocko Harder +1173728,Stephanie Randall +81015,Audrina Patridge +1117437,Jas Anderson +37124,Giacomo Furia +234365,Shirô Itô +78325,Shavon Kirksey +17818,Sidede Onyulo +1391055,Patrick DeSantis +87574,Jackie Rosenbaum +229557,Dan Jeannotte +1816340,Abdul Whahab +82094,Tim Pocock +1760892,Constanza Ruff +172855,Terrance Leigh +1228249,Pavel Douglas +1676188,David M. Parker +38832,Thomas Gottschalk +993483,Luke Vitale +106745,Don Wilson +6623,Vik Sahay +125359,Mirna Girardi +1115039,Kiyoshi Seino +1558069,Samuel Marty +1308642,Patricia Malvoisin +1758538,Panich Rattanaphan +208079,Marianne Farley +1375186,Umar Khan +1071193,Pat Penny +570775,Matthew Lintz +67052,Macarena Gómez +1333330,Yoann Blanc +1805265,Anil Dhawan +1467998,Maximillian McNamara +88104,Wang Ping +52347,Catherine Marchal +1073546,Reia Moriyama +126719,Jack Yao +1411016,Stein Winge +139654,Genevieve O'Reilly +139620,Stephen Park +171847,Jennifer Riker +84405,Bill Owen +1388103,Joseph Franz +1485934,Helena Eliasson +1388667,Scott Cullens +105652,Dina Pathak +119120,Ken Quinn +1853256,Svetlana Konovalova +1590377,Sara Forsberg +1081465,Valin Shinyei +1635547,Richard Freeman +78520,Rachel Black +1026730,Elizabeth Halbert +569927,Zrinka Cvitešić +1221913,Joe Louis +237627,Radha Ravi +104352,Daniel Bryan Cartwell +592718,Frédéric Paquet +1759630,Bart A. Piscitello Jr. +1214954,Michael Cade +1350267,Christopher Soren Kelly +1696086,Aleksandr Gizgizov +1294430,Gabriel J. Esther +89914,Elliott Nugent +221679,Lily Holleman +1438314,Erin Rementer +99301,Aleksandr Sirin +1324060,Paulina Montemayor +588079,Adrian Can +1399611,David W. Donoho +36067,Brad Johnson +1091885,Philippe Peythieu +1484888,Peter Vass +1411134,Justin Thorne +1215931,Steve Higgins +1156765,Fanny Lubitsch +1223789,Eugene Simon +83165,Chaleumpol Tikumpornteerawong +110990,Tamara Jolaine +1158062,Lisa M. Barfield +97461,Ramsey Moore +1650395,Wołodymyr Protciuk +52956,Jennifer Irwin +135626,Xavier Fultot +1884494,Bernard Cherqui +11214,Coluche +1056053,Josh Helman +1281804,Blanche Lewin +1160009,Caroline de Bendern +1375554,Charley Palmer Rothwell +119252,Aron Tomori +84900,David Winston Barge +545601,Rostislav Plyatt +135695,Kjell Wilhelmsen +1192790,Charles-Olivier Pelletier +1706350,Joel Frenzer +1588824,Egle Grigaliunaite +556728,Nick Dong-Sik +1686562,Jeff Bezos +1669185,Eoin Griffin +1304489,Johan Munch-Ellingsen +543731,Frank Olsen +1029292,Catherine Salée +120719,Iris Wong +1689286,Noah Tully Sanderson +97674,Erika Remberg +1483784,Kan Hayashi +143427,Jon Prescott +1001918,Ivan Yazykanov +1504593,Edward Langham +1096187,Maneerat Wongsjirasakdi +424454,Josune Lasa +45612,Walter Olkewicz +114285,Michael Petrovitch +1217464,Trish Stewart +1535193,Antti Holma +1271296,Kamuran Usluer +168529,Wendy Glenn +1517395,Eiko Otani +88676,Marc Bacher +148760,Harry Todd +18448,Ludwig Haas +1784606,Jennifer Skinner +1544923,Tess Jamieson-Karaha +43849,Joseph P. Mack +1549533,Feiyang Luo +1207031,Lynnea Benson +535181,Tony Nardi +228550,ôko Mihara +95696,Lorna Raver +1511980,Dorsea Palmer +1031792,Shon Lange +95383,Wyatt Adams +1252420,Olivia Steele-Falconer +147770,Riitta Väisänen +1109605,Chiron Elias Krase +8331,John Ashley +1438910,Loukia Clemeno +140022,Alberto Marty +564901,Cesare Nizzica +146004,Marlene Forte +49362,Dave O'Neil +111000,David Blackwell +1076561,Ryan H. Amos +156405,Julius Tennon +129426,Craig Reynolds +1484660,Hilda Ruiz +104483,Richard Yniguez +1123882,Jarrod Phillips +1218790,Michael Maize +1737804,Jane May Graves +141594,António-Pedro Vasconcelos +592067,Václav Sloup +119357,Fritz Wendhausen +1205902,Philippe Radelet +1739824,Sam Brice +129062,Orsetta De Rossi +1696487,Bruce Carr +1189078,Mari Koda +1260481,Greta Lee +1485770,Lucas Jade Zumann +238139,Fernando Becerril +1052884,Ahmet Sezerel +1862553,Megan Griffey +1902108,Hoa Dinh Quang +70350,Jørgen Kiil +30678,Al Adamson +1672688,Jacey Sallés +132785,Lea Padovani +1760468,Devon J. Adams +94059,John Ewart +238395,Manu Layotte +56164,T.W. Leshner +950773,Jackie Gonneau +1502670,Junes Zahdi +1748450,Alina Bunk +55071,Ali Haji +1364772,Muhammad Ali Jr. +1035818,Antonis Antoniou +1650173,Chris Condetti +1477361,T. Tomter +1161665,Brett Curtze +137829,Dinah Shore +665167,Mario Diaz +1144605,Lauren Coleman +1428661,Annette McCarthy +25035,Maurice Aufair +86330,Lee Beom-soo +1157324,André Nunes +1102162,Shusei Nomura +239966,Dari Gerard Smith +1424575,Dinny Powell +1841511,Chris Turcotte +1216413,Jan Anderson +1224085,Tiffany Hines +1672066,Alexis Hodges +1012241,Júlia Nyakó +1424363,Eden Brolin +1055268,Milan Delčić +1716345,Andrée Anne Godbout +50829,Carlo Hintermann +1245805,Jai Kalra +1025762,Archer MacDonald +1835516,Andy Pilgrim +1873121,Annemarie Blom +1069783,Tobias Zilliacus +101521,Kherington Payne +1418223,Kat Krawczuk +1357798,Jessica Chow Jing +1349723,Tracy Higgins +941727,Jean Muir +588943,Marlon Moreno +77002,Ashley Springer +1123886,Raeden Greer +1669262,Chelsea Moody +1478378,Gracie Finlan +1140132,Andrew McCord +1224490,Chad Morgan +1459892,Halina Szram-Kijowska +495384,Jeany Spark +580224,Aravind Akash +1409398,Abby Hoes +1525632,Marie Newton +1841491,Madeline Hindmarsh +96182,Timothy Carlton +138773,Sam Elmore +1310386,Panuvat Anthony Nanakornpanom +97899,Danielle Petty +573817,Yvette Yates +1237646,David Gasman +90134,Tetsuya Kakihara +1646274,Mohammad Fassih +240326,Aleksandr Shirvindt +1445125,Alvaro Arocena +1855529,Ines Des Longchamps +1724699,Claudia Roth +1055228,Adelaide Teixeira +1087785,Alfonso Carvajal +1706878,Liisa Mustonen +1707820,Alex Christensen +1517228,Karine de Mirbeck +1455792,Drew Beasley +1065019,Lena Christensen +588057,Bai Baihe +544204,Annie Toinon +1179099,Jiro Sakagami +161600,Ari Sorko-Ram +118590,Larry Joe Campbell +41688,Seth Gilliam +116378,Henny Moan +1500292,Graciela Lara +1863883,Marcelo Szpektor +1531605,Erin Allen Kane +1157373,Adrian Bustamante +1685979,Anna Vasileva +1032439,Dante Brown +110146,Pooja Bhatt +85411,Tino Struckmann +132549,Sofia Viruboff +1624632,Charles Strum +121001,Lars Hanson +1662456,Tyler Werrin +144138,Petr Kostka +1389492,Ryan Hollyman +1276265,Dina Konsta +227326,Mukul Dev +1386304,Deborah Abbott +232415,Marcellite Garner +1671734,Jeremy Hooton +59792,Philip A. Patterson +109174,Lea Coco +1633755,David Gardner +1522127,Jarrett King +1619454,Samira Saraya +1537742,Anna Crossley +84149,Marcos Palmeira +1120542,Joey Anaya +113968,Anna Brewster +1484587,Edward Cast +1029076,Juuso Pekkinen +544117,Vincent Belorgey +124679,Sabrina Impacciatore +1750916,Tasos Rapaj +1258671,Agnieszka Kowalska +1360399,Tommy Thomas +1887742,Kennadie Smith +1797402,Drew Prentice-Main +1247355,Matouš Ruml +48087,Erwin Steinhauer +1566669,Erik Schultz +1545616,Sebastian Fabijański +120341,Milton Newberger +1180357,Joska Versari +1200358,Jorge Tarquini +1846445,Arsen Dzhambulov +85173,Go Soo +1054388,Søren Spanning +30755,Andrew Hurley +1467200,Edward Kilroy +206912,Mike Bailey +1324714,Mike Ching +1381328,Sarah McVicar +1733484,Eli Lane +6976,Robyn Kerr +1314260,David Wiberg +1764693,Warren W. Feigin +1156993,Emelie Strömberg +27175,Hassani Shapi +1457893,Brenna Rhea +1663439,Raj Awasti +1379749,Cecep Arif Rahman +145162,Lyes Salem +116295,Brett Davern +3402,Line Kruse +1261967,Julian Podolski +1899137,Arthur Streiling +1526129,Jonny Solomon +65511,Minori Terada +217924,Satomi Kōrogi +157523,Nedra Volz +555133,Steve Doyle +905368,Kaan Karabacak +93210,Domhnall Gleeson +1138052,Nicolás D. Perchicot +1088194,Oliver Kolker +54277,Jean-Claude Arnaud +1353941,Clayton Burgess +1755087,Julee Vadnais +25401,Josefine Preuß +1592200,Matt Rossitch +120617,Vanessa Marano +1140546,Siao Yuk +27103,Graham Phillips +1179847,Jimmy Heck +1034673,Linda Bortell +30765,Kate O'Mara +1332929,Alex Hatz +1322860,Steady Eddy +1883082,Tabata Nery +107899,Tomasz Konieczny +1052284,Volker Michalowski +1264686,Alex Kruz +151125,David Oxley +123318,Ninad Kamat +25691,Max von Thun +1206161,Linda Creagan +1145730,Reatha Grey +37892,Judy Loe +1265053,Nikolai Will +1843661,Lou Ballon +1796400,Moataz Fathi +1503857,Amanda Newman +1274681,Megan Guinan +105783,Danielle De Luca +543981,Yeon-ah Park +1625806,Joana Azevedo +1461926,Stacey Bender +1495799,Nicholas Coghlan +138261,Trevor Zacharias +1283805,Gabrielle Stone +169462,Beverley Breuer +217055,Cleopatra Coleman +24399,Yves Beneyton +53952,Tania Alvarado +1499041,Lex King +94247,Doug Erholtz +84645,Amy Huberman +1748905,Terry McGovern +1132180,Will de Meo +1142768,João Villas-Boas +238939,Mert Fırat +236597,Jael Elizabeth Steinmeyer +929601,Olga Bystrova +1255214,Luca Zamperoni +1090630,Gene Rizzi +1039422,Dianne Johnson +45443,Mark Wilson +39068,Catherine-Isabelle Duport +104509,Jeff Wincott +1457249,Jordan Scott +104323,Jim McCullough Jr. +116526,Jeremiah Birkett +211790,Lauren Gottlieb +1571061,Rayven Symone Ferrell +55527,Mircea Diaconu +1215663,Jessica Collins +101092,Allison Lange +1172316,Andrea Deck +1384215,Oliver Lawrence +1630322,Jerryn C. Currie +90384,Arline Judge +1602310,Xavier Ruano +202958,Eddie Steeples +527313,Taissa Farmiga +933000,Juliette Gautier +59314,Dave Ward +1294261,Jill Stanley +5797,Karl Lieffen +1688384,Johan Saimima +5602,David Lynch +971937,Gary Clark Jr. +119758,Anita Brown +1147819,Fabrizio Nardi +1196416,Joseph Striker +1218685,Karen Anderson +1545511,Annie Kalahurka +1285612,Dan Zachary +5889,Nicky Guadagni +1851057,Gianluca Impastato +513677,Henry Lloyd-Hughes +46558,Michl Lang +128414,Gloria Sirabella +47840,Martin Pechlát +138336,Cho Jin-woong +1105503,John Dalleen +556945,Georges D'Arnoux +47757,Kelly Rowan +143406,Mary Martin +1182570,Alexander Brooks +1587740,Wong Yiu +100341,George Barrows +1270476,Roderick Bain +1693041,Naser Gitijaah +1562578,Zhou Xiao-Ou +1582533,Chin Han +583104,Gregorio Acosta +1681449,Ali El Aziz +1391609,Frederick Warde +1151396,Iurie Timbur +1375706,James Butsicaris +544897,Soori +32435,Harold Huber +131637,Glenn Saxson +1458841,Stella Rae Payne +1426718,Sara Soulié +89519,Ford Sterling +582938,Alfie Field +1052575,Plamen Zahov +1097231,Emma Mehonic +1089514,Lizzie Hopley +96516,Aleksandr Mikhaylov +235771,Vera Glagoleva +132576,Merry Anders +932524,Nicolas Bedos +77809,Ross Patterson +933182,Justin Price +1382565,Sunny Peabody +1711396,Samuel Ethridge +115994,Richard Bartlett +1334121,Katherine Billings +559377,Raul Valerio +59618,Anie Pascale +1413773,Stephen Sheehan +1332928,Peter Evans +1283556,Anne Gaedcke +1021659,Daniele Pilli +67580,Nick Damici +1207943,Mireno Scali +132257,Giuliano Montaldo +96327,Jenny Spain +92264,Sean Devine +583645,Alexandre Nero +38265,Franz Schafheitlin +46992,Adriana Altaras +1477961,Percy Hynes White +1809569,Christopher Marsh +1029099,Riina Hakola +937506,Carlos de la Mota +1619152,Наталья Хорохорина +1796104,Katherine Kanter +103551,Sean Schemmel +234814,Camilla Filippi +1222174,Joe Nieves +1772473,Carola Ewers +1762429,Reda Wyatt +1827448,Pedro Abrísio da Silva +63587,Kitty Yuen +76558,Mats Eldøen +1885612,Marie Sellers +1204942,Mariella Fabbris +55670,Cinzia De Carolis +1603081,Sebastian Łach +35231,Gabriel Chavarria +1646459,Hal Roberts +1521122,陳美貞 +979103,Sam Gilroy +150512,Miguel Gomes +1044537,Taphon Phopwandee +939118,Haoyu Yang +139723,Jerome Pradon +1284970,Ranja Omaheimo +82754,Conor Donovan +225055,Jack Neo +1443279,Svend Schmidt-Nielsen +1106869,Patrice Lovely +1466540,Kabby Borders +1488885,Caroline Bruins +1230174,Stacey Grenrock-Woods +1869096,Marieke Jongens +1168177,Walter Miranda +1169596,Maribel Ayuso +1485206,Corky Pigeon +1214974,Mark Smith +1038168,Ruth Harlap +1651419,John Skerritt +225188,Ayda Aksel +102275,Julio Alemán +1422557,Claudia Penoni +1168174,Sam Kindseth +559457,Steve Agee +1871294,Marcella Theodoli +102790,Jered Barclay +1103870,Patti Brady +1122014,David Pearse +44589,Princess Livingston +555972,Robert Kay +1521621,Gerry Day +1123732,Ken Lin +1075069,Hidetoshi Imura +1754453,Jared Drennan +1467093,Pavel Winnick +1190851,John P. Fertitta +96033,Joe Forgione +1869043,Orlando Vargas Diaz +115007,Berrak Tuzunatac +156342,Romy Rosemont +92648,Pollyanna Rose +1207372,Benoit Priest +1821655,Oren Farkash +159482,John Duff +934173,David Mazouz +15578,Colin Moy +105175,Sean P. Donahue +1459399,St John Alexander +1319776,Angélique Litzenburger +1307579,Renate Fischer +33863,Carla Romanelli +166070,Brian Cutler +1283061,John Hocker +1267243,Lesa Thurman +1623027,Mei Man Jin +37441,Joyce Redman +63767,Reidar Sørensen +1424442,Mina Sablic +80758,Boris Kodjoe +116474,Kevin Alejandro +11537,Odette Talazac +1457248,Jamarion Scott +30304,Alfonso Bedoya +1427406,Louis Franck +994404,Sam Galter +1244780,Gabriela Duarte +1028463,Izzi Isman +210473,Serena Brabazon +124685,Nick Nicolosi +108557,Dan Haber +937750,Simona Fusco +34541,David Shumbris +86237,Joe Pingue +84063,Joey Dedio +972935,Hansel Ramírez +1183860,Laura Sánchez +235667,Valentina Thielová +1321953,Jacquy Phillips +1009621,Leah Ray +1091423,Jimmy Gonzales +117066,Yusuke Yamazaki +1102516,Lorin Prangley +83861,Brendan Miller +1257143,Nikolay Naumov +1137455,Kate Dawson +1150096,Klaudia Bulka +587092,Bharati Achrekar +1653805,Juliane Koepcke +228489,Florentino Soria +143736,Naira Khachaturyan +3882,Bent Mejding +1777176,Naděžda Blažíčková +4636,Luna Mijovic +1094672,Larry Jack Dotson +89714,Ilram Choi +1313157,Jason Dixie +848678,David Mackey +1864082,B K Nair +61287,Michael Cutt +1615354,Lee Yiu-Ging +70946,Hui Lou Chen +204735,Laura Adkin +97656,Alfred Lucchetti +564049,Mimi Nelson +1086574,Kalila Ceccarelli +3474,Aubrey Woods +1160210,Max Fröhlich +1223879,James Allen McCune +37698,Mackenzie Gray +182715,Wonderful Smith +1865497,Christopher Jay Gresham +60635,Marco Assante +1363549,Diane Rouxel +1163437,Jeremy St. James +1635151,D.R. Lewis +1513953,Onur Sarialtin +1114532,Hans Þór Hilmarsson +1255308,Fumino Kimura +18451,Schringo van den Berg +129451,Carol Burns +95475,Jason George +1797401,Johnny Robson +1771027,Arva Holt +1357535,Mark Grossman +1382494,Laytrel McMullen +1398230,Aistė Diržiūtė +1088196,Brad Krupsaw +1308333,Lisa Drew +1175581,Tomasz Schimscheiner +150515,Sónia Bandeira +40948,Harry H. Corbett +1207629,Yeo Jin-goo +165415,Jack Wagner +3306,Denise Stephenson +1880340,Costanza Carafa +219960,Ashley Zukerman +1061875,Herbert Bötticher +52485,David Lenthall +132107,Youssef Sahwani +1493399,Orsolya Bene +1028805,Bulent Buyukasik +1299061,Jordan Turchin +1443203,Akio Suyama +42386,Billy Mitchell +1151842,Muga Tsukaji +87054,Butch Vig +68561,Eric Kot +1297687,Igors Buraks +1455770,Sue Jean Kim +1554760,Annabelle Le Gresley +1470176,Kuana Torres Kahele +1692096,Phillip Orr +1677062,Tony Jessen +973816,Elisabeth Hower +930981,Ryan Curry +1126619,Gisle Straume +1860374,Michael Bundred +1591664,Marilyn Akin +1028325,Renate Mannhardt +1815694,Wil Coban +133032,David Horovitch +1127109,Silvana Bacci +1319620,Brooke Hobby +188758,Arthur Darbinyan +1119553,Erol Demiröz +1869974,Sonia Laplante +1862900,Ed Gable +972115,Elinor Crawley +1695656,Bart Baker +26401,Michèle Garcia +65606,George Foreman +1115142,Sally Alice Gamble +1010877,Han Ji-min +27492,Garrett M. Brown +1238,Torsten Voges +1218891,Victoria Bass +1879649,Maynard Nicholl +1709371,Richard Helm +1194714,Yoriko Haraguchi +1361099,Lili Sepe +1699950,Ignazio Bevilacqua +117884,Ludmila Mikaël +175585,Candace Smith +1484677,Heinz Bodmer +1308173,Dale Jett +1403920,Jan Vlček +223527,Sergei Selin +46897,Erica Durance +1170306,Saeed Khan +1459810,Daniel Janks +579297,Robin Butler +1430485,Nico Kleemann +212730,Michael Whalley +1129685,Norma J. Nesheim +142173,Márcio Kieling +1214835,Natasha Leggero +231618,Gyula Bodrogi +147191,Giacinto Ferro +1544187,Lilly Perreault +98174,Brooke Lewis +1701760,Yukita Kusunoki +124284,Marcus Groth +26669,Vincent Riotta +1390549,Lonzo Liggins +201812,Kate Hennig +998517,Eva Padberg +1220453,Frank Bruno +46317,Walter Hötte +1380903,Jimmy Roussounis +146443,Büşra Pekin +1511984,Sergi Robles +1790409,Georgica Pettus +162606,Ryan Stiles +1902449,Tatá Lopes +554167,Donald Richie +1119889,Jenny Karezi +228218,Mikael Birkkjær +557600,Joe Bocian +88919,Heikki Hela +132639,Allan Poppleton +91346,Chris Tates +1689981,Mark Drum +1844324,Anita Smith +97245,Alan Wheatley +128661,Daniel Parker +1380563,Shogo Tanikawa +63109,Joshua Alba +927751,Erik J. Bockemeier +38442,Thure Riefenstein +80732,Jean Louise O'Sullivan +1475592,Hussein Salameh +48338,Sepp Rist +1683,Kōichi Kitamura +131282,Marilyn Harvey +591079,Zeenath +100683,Franco Borelli +1181816,Sigurður Karlsson +1013969,Joanna Haartti +231981,Alvin Anson +146604,Benjamin Morgaine +1187532,Julia Volpato +1313733,Han Sung-chun +1496447,Kristina Kazinskaya +126282,Hiroshi Naka +1122430,Márcia Breia +570196,Changhua Zhang +1326025,Gilbert Beaumont +1537746,John Colleary +1782590,Heather Wang +574105,Suzette Andrea +1520911,Michel Karchevsky +203390,Brandon Stacy +1632766,Tullio Sorrentino +123548,Antonio Salines +1438182,Vaibhav Tatwawadi +1822160,Philipp Rafferty +84701,Arcadiy Golubovich +27198,Orso Maria Guerrini +116443,Hal B. Klein +1810500,Anatoliy Egorov +222139,Stephanie Lemelin +94421,Bobby Campo +1718150,Molly Wolf +54864,Geno Silva +152741,Linda Gray +1127392,Elyane Pade +1251240,Haruna Kawaguchi +67151,Steven Beckingham +1428025,Deola Sagoe +1113462,Tillman Norsworthy +383443,Nina Scenna +148125,Gabriel Hogan +145401,Ege Aydan +1691946,Keith D. Gallagher +237061,Tariq Trotter +585171,Michel Garcia +72336,Rémy Roubakha +1842112,Michael Peach +1170143,Remo D'Souza +1364649,Fanny Touron +117995,Alissa Skovbye +238475,Lyubov Germanova +1283568,Debra L. Repashy +58355,Alexandra Fong +121245,Karl Hackett +571470,Thelmo Fernandes +136800,Tatiana Pauhofová +1113163,Oxana Moravec +15398,Iván Petrovich +1205531,Peter Steltzer +1746964,Terry Lee Fields II +1620090,Carmen Ripoll +1669570,Rita Gregory +99219,Circus-Szalewski +79827,Jón Gnarr +1636506,Christian Gardner +82340,Anne-Marie Johnson +1257725,Illya Konstantin +1537048,Eloise Smyth +1304488,Henrik Carlyle +136920,Lillian Roth +1074967,Reymond Amsalem +128408,Regina Orioli +1111671,Xosé Manuel Olveira +1204512,Sarah Diener +591405,Danuta Kowalska +1437582,Alexa Davies +1481134,Akira Kitchôji +1247543,Ivan Fominov +1296781,Graham Hughes +198615,Chris Shields +158190,Mitzi Kapture +1239077,Phil Hellmuth +1658129,Christian des Pallières +145520,Nilüfer Açıkalın +53056,Shareeka Epps +1262582,Xabi Tolosa +59692,Ray Charleson +1766295,Joel David Taylor +97246,Joan Maude +1758467,Nontapat Intarasuan +1442583,Park So-dam +71083,Kate Dickie +256725,Ivo Gregurević +1697249,Hiroshi Isogai +1545500,Amy Warner +1505304,Daniel Mandehr +1396624,Preston Tate Jr. +1413108,Nicu Varga +129143,Christopher Gessner +1581557,Nick Sahoyah +972286,Denisse Peña +11414,Maurice McEndree +1650174,Chris Condetti +1688076,Ross Tomlinson +1795180,Terrence Gibney +207401,Leven Rambin +1697809,Chelo Mora +1178903,Zhe Quan +1081270,Bernice Claire +1734255,Keith Norstein +550006,Salaetin Bilal +1364519,Markku Annila +145309,William C. Dement +1605328,Carlotta De Felice +229274,Paulo Bernardini +1175102,Dick Merrifield +127121,Madlen Dzhabrailova +90401,Dr. David Wikenheiser +1760888,Verity Hewlett +1642952,Taylor Tunes +1137250,Faisal Talal +232310,Masa Niemi +132110,Shahir Kabaha +77997,Zac Mattoon O'Brien +54605,Terry Lewis +77701,Philip Holder +1663973,Hervé Claude +1050966,Tolga Cayir +12154,Martin Brandt +1581554,Kevin Kauer +1700948,David Keene +59823,Jennifer Cormack +53818,Pamela Brown +1485380,Alisha Boe +93409,Liubomiras Laucevicius +1802002,Josef Schaper +1377458,Algee Smith +1150406,Iñaki Gabilondo +1055116,Christer Christensen +31548,Dada Gallotti +1060591,Marit Nissen +61109,Chuck D. +149468,Ryan Bittle +1412258,Andy Hull +1835280,Courtney Ann Sivinsky Benson +39283,Henry Courseaux +78300,Brad Wilk +954498,María Rivas +1669337,Christian Zagia +92645,Georgi Staykov +1198191,Jay Huguley +993074,David Bowles +228881,Olivier Schneider +1429729,Doris Atkinson +1422264,Olwen Catherine Kelly +78533,Cristiana Capotondi +1423884,Ron Voz +146751,Kevin Otto +133717,Solveig Andersson +7657,Julian Nott +1399608,Theresa Harold +1370811,Betty Woolfe +107559,Ditte Hansen +1685301,Welmo Romero +1281819,Sofia Lesaffre +40993,Danik Patisson +1325731,Abbi Jacobson +1380467,Jeffrey Daunton +1801203,Tamara Hutchins +1325971,Tom Bloom +17835,Ricky Gervais +1169804,Heinz Limaverde +20143,Jean Kent +1083987,Jamie Renell +1149644,Joaquín Castiglioni +1795191,Anne Hulegard +1365797,Ravi Hood +28415,Bret Loehr +1779823,Suzy Lawlor +1817450,Jordan Smith +1753471,Dean Esmay +939594,Marc Pouhe +1648461,Marc Montserrat +1381948,Henidar Amroe +1422975,Jordan Lane Price +231994,Barbara Tabita +1137262,Benjamin de Lajarte +1038935,Jose Domingos +1599899,Hailey Gates +1562107,Yasen Atour +1287557,Branko Čakarmiš +1356513,Stephanie May +5759,Nicole Marischka +117064,Nami Tamaki +1644492,Mustafa Kamel +182038,Eileen Davidson +994514,Sachin +159468,Nick Jaine +82076,Arun Bali +1721484,Kika Meyer +1707827,Jan Köppen +1840032,Tama +25872,Laura Harris +35232,Pat Carroll +52869,Madison Davenport +1363817,Louis Durham +544669,François Bureloup +1437255,Nikol Kouklová +24042,Mourade Zeguendi +41028,Mirabelle Kirkland +112879,Jeremy Luke +165422,Robert Hallak +48029,Eugen Klöpfer +1043266,Zvonko Lepetić +119351,Gianluca Gobbi +138395,Daphne Dale +2891,Josef von Sternberg +1519583,Angela de Silva +78245,Shahid Kapoor +31224,Roberto Cañedo +102452,Marciee Drake +167244,Michelle Stafford +82360,Ónodi Eszter +86381,Algenis Perez Soto +154509,Jake Sakson +119122,Robert Nasmith +96173,Steffen Mennekes +146821,András Kozák +72784,Alfonso Santagata +996735,Natalie Allen +1441405,Sandra Å. Petersen +1652455,Dwayne Perkins +1237603,Isaiah Mustafa +23367,Ninetto Davoli +131337,Spiro Malandrakis +1772225,Keith Jeffrey +115658,Masaaki Takarai +10695,Izabella Scorupco +71676,Mary-Margaret Humes +583453,Dmitriy Nagiev +1436281,Qiankun Ma +1269136,Marvin Linke +1412399,Fahad Albutairi +1148003,Mama Hung +1163445,Charlie Ruedpokanon +516518,H.I.M. Damsyik +1053370,Boleslaw Abart +566705,Tatyana Vedeneeva +108641,Hilary Dwyer +1758327,Hugh McCue +82510,Michael Dugan +1430612,Chet Douglas +1619151,Mehdi Laribi +39864,Dieter Dost +121764,Shannon Sturges +1125218,Grant R. Krause +229609,Wilhelm von Brincken +1486826,Joe Alfasa +1620095,Jacques Larson +1622128,Julia Torrance +1888572,Nazal Kesal +1799836,Mindy Fullilove +1880532,Pasquale Palma +137845,Renars Kaupers +543523,Britne Oldford +1123823,Michael Borrelli +1033172,Aneesha Dalal +57282,Richard Wells +1848668,Jesus Luz +139759,Austin Wolff +490022,Ravshana Kurkova +1576627,Charles Vanderburg +150686,Shiva Rindani +567102,King +1457275,Taura Cherne +1401555,Patricia Conde +1077701,Amy Greene-Andrews +31613,Lorenza Guerrieri +49414,Gisela Fackeldey +47834,Tatiana Vilhelmová +595213,Dorothy Mackaill +117653,Lucy Holt +1238205,Neelam Mehra +144677,Crusoe Kurddal +1754599,Michael Kaves +1194710,Peter Knaack +1225098,Ana Gabriel +158155,Ashley Cusato +574243,Hans Olav Brenner +1291804,Plamen Manassiev +168656,Leigh Jones +1176256,Anders Gustavsson +1057433,Derick Monasterio +1176429,Claire Huskisson +1650213,Derick Newson +1149067,David Verdaguer +973519,Conner Dwelly +1213572,Leonora Pitts +160371,Lola Falana +15488,Ken Loach +1886757,Jan Wartak +1633220,Bilal Aya +71891,Cole Hendrixson +1327288,Georgiy Kishko +1376317,Val Graham +1094057,Hans Richter +1317369,Anneliese Fiedler +1001828,Nitin +1844333,William K. Halliwell +1150095,Nikodem Rozbicki +200446,James Molina +584301,Madeleine Lambert +1494485,Meredith Howard +118630,Dorothy Short +1107297,Hana Mae Lee +1891814,Gino Carista +26400,Günther Jerschke +225684,Marina Zaytseva +184953,Peter Gordeno +56090,Brent Pack +1429172,Alison Woods +172046,Sekou Laidlow +1192761,Dominic Sherwood +1430523,Judy Levitt +1340640,Akis Sakellariou +54728,Brian Huskey +1657883,Eedit Patrakka +1206197,Octavi Pujades +934913,Zoë van der Kust +1336690,Andrea Covington +1187649,Tomohiko Ôtani +227314,Gianni Cavalieri +1518111,Jamie Bacon +44585,Barbara Baral +210221,Ian Matthews +1167171,Donna Andresen +34870,Susan Visser +145133,Harry Hadden-Paton +568939,Ernst Meyer +1583946,Elżbieta Matynia +1019186,Bernard Palanca +592366,Suely Franco +1207945,Rocco Giordano +172310,John Bird +543782,Kelly O'Leary +101026,Rene Rivera +973644,Shad Gaspard +1405570,Isabella Poynton +210135,Kathy Uyen +85485,Barbara Lawrence +42844,Giovanni Ivan Scratuglia +1762638,Daniel Kuttner +235378,Kyôko Anzai +1581028,Kumgieng Jittamaat +1212675,Bob Kerr +18734,Tim Seyfi +207557,Marcello Magni +1704657,Kate Bond +109183,Jonathan Klein +96527,Bryndis Petra Bragadóttir +124283,Minna Haapkylä +1502862,Shawn Thornton +1433592,Elea Oberon +90136,Yukari Fukui +48998,Renée Faure +55134,Francesco Mulé +1374211,Isbek Abilmazhinow +2682,Franky G +1519595,Adam Masnyk +78318,Luke Gair +185226,Fred Pearson +113785,Brian Wimmer +28150,Jean-Claude Drouot +1046021,Ararat Keshchyan +1047358,Simon Schatzberger +1102526,Elana A. Mugdan +1650194,James Nevins +1275665,Sean LeeRoy +1324296,Yasemin Allen +128628,Scottie Thompson +1538579,Bren Coombs +1837866,Mark Brown +1438915,Steve McCall +1649387,Abella Wyss +1427099,Bobbe Brox +1824290,Frank Allen Forbes +30051,Willie Aames +87907,Tom Murphy +1270746,Georgette Forney +1738614,Elise Reed +1869097,Maya Mallinckrodt +1362823,Clara Aranovich +1220269,Claudia Winkleman +115766,Robert Mandan +1634622,Marisol Correa +1014981,Mikhail Yefimov +32565,Jochum ten Haaf +118639,Tom Six +106533,Jørgen Ryg +1336175,Susana Estrada +1687936,Charli Janeway +235207,Augusto Fornari +65833,Joseph McKelheer +1195067,Gregory Finnegan +119363,Brefni O'Rorke +1115099,Vinod Tripathi +114370,Steve Barclay +15091,Melanie Lynskey +1114589,Thambi Ramaiah +125942,Asae Oonishi +174331,Steve Hanks +31883,Eduardo Arozamena +1798368,Ned Derrington +1420583,Francisco Letamendia. +112374,Oliver Driver +1083149,Anne Marie Rosier +187973,Nilaja Sun +1053788,Kaori Fujii +1495472,Elisse Joson +95558,Menashe Noy +1089569,Gustavo D'Arpe +101280,Sean Holton +1164966,Ophélie Koering +1615537,Paulin Jaccoud +132185,Dawid Szatarski +236547,Véronique Alain +1394474,Matt Clayton +1176931,Valerie Bergere +96742,John Buckler +1365732,Dejan Bucin +87783,Park Sang-myeon +1136709,Mirjana Blašković +1518197,Katy Reece +1434873,Wilfried de Jong +984629,Christopher Abbott +1207155,Helene Farber +6253,Uta Franz +1115155,Leigh Reynolds +208357,Adrian Kali Turner +1447887,Rachel Atherstone +1198994,Anthony Del Negro +79039,Milan Duchek +1287369,Salik Silverstein +1547790,Daniel Bambas +1266721,Po-hung Lin +1200735,Alok Kumar +1753260,Manihera Rangiuaia +53922,Ed Quinn +1121628,Kan Yanagiya +1091543,Carmelo Reale +163132,Marianne Jones +1557608,Marta Mazurek +11930,Paul Klinger +1198931,Eugene Khumbanyiwa +1841518,Janani Shankar +1863911,Anapaula Csernik +197365,Stella Parton +1616826,Tiger Yang +1102351,Henry van Loon +1051673,Gaëtan Gallier +1099223,Zach Cuddeback +90465,Luis Olivia +97923,Jennifer Lauren Grant +559376,Peter Buck +1382984,Abel Mora +47836,Jiří Macháček +1805200,Carmelo Oquendo +233409,Klaus Mikoleit +1014586,Christopher Sommers +1440450,Mulhall +63545,Hannah Lochner +102732,Anne Kimbell +1636795,David Gragg +1269324,Jaime Gallagher +1086994,Nino Benvenuti +6294,Niklas Falk +932571,Walter Roderer +1352107,Gunnar Hiilloskorpi +1519558,Joseph Favalora +1133424,Uroš Potočnik +1153795,D.J. Kemp +225483,Titina De Filippo +133245,Hugh Pryse +1428334,Sophie Choudry +1784647,Corin Grant +150369,Amala Akkineni +1814885,Allie Woods +1369321,Emily Jackson +1522731,Jakob Graf +1445117,Nicolas Borlenghi +556747,Adriana Falco +48694,Norbert Heisterkamp +1810229,Jean-Robert Viard +1123004,Maxfield Lund +1030276,Rudy Barrow +1252215,Glen Lefchak +1562964,Alicia Hepker +180999,Paul Fauteux +56086,Megan Ambuhl Graner +140468,Senthil +1202649,Wouter Braaf +1211865,Rocky Marshall +232055,Clifford Bañagale +1505459,Robb Janov +1232834,Scott Swalwell +1093944,Emily Bridges +120340,Muriel Landers +82150,Lorraine Hilton +24066,Dustin Semmelrogge +39551,Lili St. Cyr +555973,J. Wesley Huston +1468237,Karen Vicks +1164088,Mircea Pascu +1781409,Marielle Tepper +192254,Trenton Teigen +132105,Nisrine Rihan +86633,Lisa Lu +135432,Alison Barry +118861,Paul Hubschmid +553063,Wojciech Mecwaldowski +949345,Robert Craighead +128629,Crystal Reed +1544539,Edith Haagenrud-Sande +1133619,Siegfried Terpoorten +1378243,J.J. Castillo +199748,Angharad Rees +1108185,Murathan Muslu +62965,Miranda Hart +100853,Santiago Álvarez +557682,Devika Strooker +227408,Ramata Koite +1163018,Roy Assaf +1197058,Emily Atack +1600932,Massimiliano Filoni +139820,Pom Klementieff +20217,Janet Carroll +24579,Sarah-Laure Estragnat +1114543,Eiríkur Hilmisson +1056207,Ali Mohammad Dar +6781,Neda Arnerić +1886301,Daniel Jack Evans +236136,Norbert Rutili +188402,Ardal O'Hanlon +1312686,Beau Travis Williams +1344344,Storm Reid +40325,Megumi Hayashibara +74365,Britt McKillip +1580369,Manta Nyman +1810501,Maksim Gribov +169839,Grainger Hines +27058,Inés Efron +105130,Augusto Benedico +111069,Goran Daničić +1882002,Donatella Bartoli +91495,Mimi Kennedy +1172476,Celina Jaitly +174798,Butch McCain +1195590,Julie Mintz +1171835,Ana Turpin +1770600,Mike Iorio +14009,Eddie Fowlie +169901,Martin Sacks +1820119,David Topp +58464,Dolly Buster +1394235,Ben O'Toole +87778,Salvatore Antonio +44393,Martin Brambach +1178902,Zhaohua Mei +1891516,Timothy Ackerman +928016,Per Holtstrand +1398509,Edward Joe Scargill +79561,Amaury Smets +86082,Sandeep Mehta +56863,Miriam Yeung +82496,Pavle Vuisić +1200478,Nathan Lopez +101400,Magaly Solier +1152019,Ashton Sanders +104897,Allison Graham +89534,Phyllis Calvert +548461,Rafinha Bastos +1059218,Vivian Dawson +116846,Mauri Lynn +1073579,Sean Price Williams +1202115,Ekrem Dumer +1166722,Zoe Myers +29802,Marty Feldman +131508,Sylvia Kay +1497865,Geoffrey Wade +581964,Rina De Liguoro +78257,Ronald Cheng +1442976,Justin H. Min +1693895,José Luis Heredia +142996,Julie Le Breton +927852,Wallison Felipe Leal Barroso +1049278,Ladislav Županič +991212,Jeff Fannell +117407,Nino Candido +230280,Boris Sichkin +1163599,Darya Ekamasova +543364,Pascal Aubier +1125175,Batiste Sornin +1508175,Rebecca Whitehurst +147084,Savannah Welch +1758903,Anthony Ramos +1290476,Jean Joyce +1052119,Milan Pleština +30195,Chester Conklin +1894263,Adriana Tocchio +108941,Evan Matthew Cohen +81505,Rob Sullivan +1869062,Cody Rowlett +1523655,Mirela Burke +1742812,Zaki Nobel Mehabil +1675650,Newik Cullet +1344594,Van der Haegen +137683,Alex Duncan +1512199,Chuck Shaw +1004793,Kirill Stolyarov +13874,Marc Cavell +168904,Chris Fogleman +103685,Henry B. Longhurst +1200463,Nan Munro +126232,Claude Bertrand +1788835,Jon Kohler +1505922,Mike McPhaden +101333,Daniela Doria +33528,Joseph Cross +1111444,Colm O'Leary +1284349,Jared Breeze +1583289,John Reneaud +206869,Shelby Rabara +1656882,Ekkachai Sengprieng +1160230,Ángela González +1725449,Joel Olivier +1673475,Angus Pilakui +1871537,Tomaž Kuralt +1698872,Maurice Jones +1310866,John Darvill +1521200,Eleanor Lawson +1221004,Llewella Gideon +1676375,Cem Uslu +1038379,Robert Kazinsky +1573609,Teresa Decher +227095,Devin Goldenberg +12728,Joyce Carey +1736793,Rebekah Wiggins +1694713,Johanna Putnam +98745,Jacqueline Hickel +129886,Eduardo Moscovis +1595078,Serife Kara +122669,Emilia Krakowska +1102331,Annabelle Dexter-Jones +1683029,Renata Ricci +1625680,DeRon Horton +983953,Alex Staggs +1017323,Lanette Fugit +143083,Graeme Garden +1865499,Stan Van Pelt +131935,Dorian Brown +1132749,Thomas Arnold +151112,Nadia Dassouki +1563601,Nick Rutgers +1394357,Kenny Knight +1056174,Mariya Ignatova +1444928,Dylan Moreno +1307923,Roy Marten +37722,Brad Harris +1379209,Patricia Landon +81418,Karine Vanasse +1761842,Matti Markkanen +34475,Ross Ford +58783,Ben Righton +1441398,Daniel Ørum +91873,Katsuhisa Namase +932822,Subrat Dutta +82898,Kyōka Suzuki +237022,Sarah Ridgeway +571466,Sylva Tománková +1114614,Yan Brian +89863,Dave Chapman +1284345,Yeva-Genevieve Lavlinski +27322,Cecilia Dazzi +118362,Jillian Murray +1604285,Liv Hewson +302065,Maksim Konovalov +45446,Megan Follows +40207,Clint Walker +84395,Joseph Jazz Hayden +929585,Jake Robinson +1643340,Vincent Lezenes +98397,Jesse Erwin +1457454,Ellora Torchia +237335,Rita Pavone +1179412,Pang Pang +1470848,Jakub Seifert +77270,Tomm Coker +133593,Michael Albala +143129,Tapio Liinoja +1317208,Chris LeFevere +19161,Sandrine Bonnaire +124426,Ekaterina Klimova +71565,Heather Kafka +1269633,Fran Bennett +1212648,Mehran Modiri +1229076,Amerjit Deu +1257065,Anastasiya Melnikova +118045,Jose Yenque +1189938,João Marçal +1262084,Jesuíta Barbosa +225426,Jay-R +55680,Manuel Ferrara +1903970,Tessa Bonhomme +1028808,Oral Uyan +228711,Cecilia Santiago +97896,Olga Kabo +1178327,Sol Frieder +1177469,Frederick Keeve +1253309,Yakov Tripolsky +1269288,Artyom Tsukanov +975947,Peter Syvertsen +1015798,Sherri Ross +1149880,Lucie Pohl +1099137,Jodi Sadowsky +1611048,Nick Marini +1273742,Aria London +564418,Debbi Blythe +586539,Sophie Snow +549028,Don Leifert +1676780,Markeith McCain +60091,Doug Murray +56274,Puntti Valtonen +1136406,Tom Holland +545700,Mija Aleksić +220448,Paul Anderson +47151,Ove Sprogøe +32060,Izabella Telezynska +84937,Mack Chandler +1269103,Eiko Yanami +236695,John Boyega +1681700,Devin Keaton +1441400,Helene Ravn Jedzini +1849546,Heather Wynters +132114,Sigal Harel +940651,Don Turner +1807839,Parth Bhalerao +1577108,Pauline Saulnier +931683,Sylvie Wetz +1546419,Nana Diakité +939144,Kim Hye-na +84393,Thelma Grant +1127395,Dianora Veiga +51891,Ilija Ivezić +1462304,Will Coffey +1184381,Stella Carnacina +1109321,Ruzica Pichler +1707837,Margit Laue +98804,Ronnie Gene Blevins +970219,Teyonah Parris +1695141,Emma Nicole Bailey +1421244,Daniel Tadesse +1887382,Kim So-jin +1504465,Eileen O'Higgins +107869,Andrzej Kopiczyński +1032493,Joaquín Pardavé +1796922,Edith Diestel +73663,Elizabeth Gill +103614,Marc Hannibal +1165836,Roman Yunusov +1533162,Ernst Hausman +1209256,Nigel Harbach +1204712,Joaquín Berthold +550524,Igor Gorbachyov +150320,Masakane Yonekura +1163053,Katherine Pearce +980194,Valerie Watkins +50282,Teri Tordai +82382,James Stephenson +933578,Ella Anderson +1455165,Katsuyuki Itô +206112,Dustin Ingram +1357753,Alanna Reynolds +112143,Mark Consuelos +1228343,Craig Arnold +121797,Ryuta Sato +35168,Lara Steinick +1271773,Bill Martin Williams +1719886,Henry Fehren +226194,Ulrikke Stokkstad +41878,Pascal Légitimus +74245,Shane Jacobson +88317,Joan Miller +1086577,Lourdez Gonzales +23182,Volker Bruch +88097,Bill Adler +1531610,Rinska Carrasco +239232,Marie Bell +1141694,Fred Fuchs +1287323,Jenn Lyon +81866,Daiki Nakamura +1602312,José de la Cruz +1866,Muriel Baumeister +1185382,Trevor Narom +1836952,Kara Gibson +108024,Koji Tsuruta +27960,Plien van Bennekom +1408729,The Three Sea Hawks +1864700,Umberto Rocco +132552,Hector Fonseca +96892,Shuler Hensley +123516,Catherine E. Coulson +96533,Harlan Baker +1029280,Daisuke Miyagawa +104266,Élodie Delage +120235,Igor Voynarovskiy +1382839,Morgan Burch +560295,Joan Alexander +22165,Axel Kiener +27655,Peter Mair +228154,Karen Lindsay Peyton +545232,Teresa Del Vecchio +1376581,Chelsea Lopez +1261440,Marc Gassot +1158600,Austin Wilson +1445778,Tarja Loos +25344,Laura Favali +1093935,Mats Mogeland +1758533,Sakdinan Chusuwan +1017357,Jason Hedges +17841,Mizuo Peck +146783,Crystal Allen +190162,Danny McKinnon +1278754,Rhys McCoy +89614,Curly Howard +1698764,Tyler Williams +1113334,Jamie Donovan +42668,Björn Hlynur Haraldsson +1371237,Henry Frost +89608,John T. Dillon +1319618,Charlotte Collins +143303,Şafak Sezer +117314,Philip Quast +987019,Mirtha Borges +136734,Maria Chwalibóg +117727,Rajkummar Rao +1243844,Kim Carnes +44213,Bohuš Záhorský +76540,Keith Hudson +1198250,Loia Cheaney +1567104,Ever Prishkulnik +1119394,El Langui +1796436,Patrice Martre +136380,Yôko Sugi +121142,Patrick Cupo +121218,Jesse Archer +1272862,Emma Tremblay +1102130,Paula Sigman +1047161,Kerri Randles +1315801,Weston Cage +1200237,Yasuhiko Saijô +24478,Raymond Pellegrin +125617,Masaya Onosaka +1189304,Anatoli Papanov +937003,Philippe Martz +565378,Wang Qian-Yuan +1046436,Steven Luke +1703685,Hilla Sarjon +30357,Xabier Elorriaga +1089574,Kitty McLaughlin-Dunning +1395184,Taysha Fuller +32675,Luigi Bonos +1764138,Robert Cloud +251582,Pia Green +1718101,Dex Carvey +24395,Jean-Pierre Bisson +1257287,Natalya Medvedeva +1059946,Abalhaja Soumia +1445465,Amo Ingraham +1117075,Lee Look +1821544,Nevada Spencer +62233,Trevor Baxter +1509714,Gloria Morel +35527,Jean-François Balmer +1233885,Annalee Jefferies +1476859,Peter Martensen +582816,Cody Horn +68276,Jolene Blalock +1117085,Jeffrey Hyler +37073,Richard de Klerk +59333,Mirco Nontschew +1871196,Douglas N. Hachiya +97754,Deborah Dutch +129986,Bronwen Smith +1491365,Valderez Freitas Teixeira +141675,Jason Winer +1115986,Janey Gioiosa +1603858,Liam Walpole +128676,Marie Louise Sinclair +1026173,Josua Bengtson +109467,Leonor Benedetto +119598,Phylicia Rashād +83815,Stephanie Bishop +586540,Cadence MacMichael +1459143,Cate Richardson +935328,Yelena Kuzmina +1421223,Ruby Blaine +11192,Henri Guybet +1426642,Anthony Fazio +135787,Dominiqua Alexis +1636797,Gary Jones +1026225,LeShay N. Tomlinson +54709,Ben Best +1045388,Parvati Melton +1445785,Marvin Heiden +1180697,Kaitlin Large +1448937,Sophia Santi +239349,Gunnel Fred +1180738,Johannes Nikolussi +1593043,Heather Riordan +25023,Anne Ramsay +209488,Sally Carman +161449,Florence Sundstrom +1522258,Nadja Mazalica +1029088,Göran Gustafsson +124743,Sergio Pena +1525610,Jannel Robinson +125010,Shinjirô Asano +24068,Claudia Dibbern +127893,Keishi Nagatsuka +86369,Parley Baer +1382836,William Tokarsky +502608,Kevin Wu +96686,Belén López +13379,Lutz Götz +1313155,Debora Mincy +1570966,Rachel St. Gelais +1895700,Larry Goldstein +1064937,Neha Oberoi +565854,Charo Soriano +31368,Deron McBee +1450803,Dwayne Standridge +567977,Gianluca Favilla +237045,Prabhas +107003,Candace Glendenning +1451161,Rowan Joseph +204964,Paula Boudreau +1689510,Myriem Akeddiou +331924,Boyd Davis +1089413,Suroosh Alvi +51756,Nancy Renee +1100365,Leander Modersohn +1506427,Max Langler +1762878,Tayfun Akalın +1272848,Cody Robinson +1270743,Sandra Cano +1849118,M'Backé Sow +1162738,Jackey Vinson +6257,Erich Nikowitz +1204697,Linda Collazo +214203,Mart McChesney +1118291,Konstantin Sorokin +1676157,Wyatt Bernard +192147,Dean R. Miller +144271,Brenno Placido +1189586,Lyndon Bray +1622713,Luca Mercalli +1782180,Jay Weingarten +228793,James Ian Wright +112376,Erin Chambers +1520906,Bénédicte Erken +159489,Elimu Nelson +550859,Madhabi Mukherjee +109914,Julie Rusti +1518754,Rodrigo Sant’anna +1364473,Heikki Hämäläinen +210271,Taylor Kinney +1265629,Angourie Rice +1560337,Kirk Robertson +150027,Joffrey Verbruggen +1582159,Beppe Abela +223160,Prasanna +1624635,John Carr +1371491,Joe Cauley +222597,Valentín Tornos +136414,Linette Ray +34957,Gavin Attwood +1297974,Sherry Robinson +1780267,Moose Kapua +15744,David Opatoshu +5522,Traute Hoess +1004832,Britta Hammelstein +15123,Ulrich Wildgruber +1010912,Tim Downie +169421,Tony Rock +1465571,Katie Rich +20392,Michael Wilding +204949,Jah Shams +44638,Herb Andress +1528093,Kylee Thurman +1209531,Gladys Reyes +565344,Li Guang-Jie +1397812,Fiona Vroom +133589,Ryan Melander +1589595,Zev Haworth +178408,Hanley Stafford +55876,James Gallanders +1303567,Irina Ivanova +1537739,Michael Sheridan +1450372,Jessie Li +1372534,Robert Cochran +1114539,Jóhannes B. Guðmundsson +1377987,Heidi Baratta +149258,Giulia Steigerwalt +1256346,Lee Hyun-jae +1319777,Joseph Bour +1281108,Edith Shock +60655,Daniela Nane +932037,Jean-Hugues Oppel +1834941,Angela Glynne +119241,Junichi Okada +210766,Alessandro Tiberi +1283862,Berto Romero +127434,Charmaine Fong +95746,Adam Kaufman +31655,Mike Bonanno +38666,Tania Raymonde +142525,Joachim Lamża +1353640,Peter Barry +1734962,Ciaran McGlynn +127706,Kim Seo-hyung +1200689,Baiten Omarov +221658,Katelijne Verbeke +1194702,Vanessa Leigh +1746965,Chandra Anderson +98351,Russ Russo +1236069,Larry Udy +1108571,George Karlukovski +1337741,Aleksandr Shalyapin +1225640,Wlodzimierz Press +35590,Philippe Baronnet +1308676,Marina Duksova +1539476,Jerald Garner +52798,Christopher Ryan +232038,Robert J. Locke +1329661,Frankie Genardi +1579249,Georgia Crane +1698401,Macarena Sanz +109893,Veikko Aaltonen +1511964,Najee Griffin +1090174,James H. Housely +1086222,Bruno Gunn +1758516,Jasmeet Singh Bhatia +38099,Anne-Marie Kuster +66295,Fred Stuthman +1707946,Sean McIntyre +1136354,Lau Yuk-Pok +929659,Valeriy Filonov +143745,Inga Strelkova-Oboldina +1200240,Shôken Sawa +37745,Tony Kendall +1841514,Leah Kreitz +1446617,Natalie Vansier +1000555,M. Steven Felty +1336224,Vladimir Serov +1176431,Emily Baxter +143329,Anna Mae Routledge +66032,Philippe Duquesne +235435,Glenn Tipton +1278815,Maurizio Marchetti +1383511,Derek Blankenship +162610,Fred Stoller +211214,Krijn ter Braak +25181,Marthe Villalonga +102548,Elina Knihtilä +1115304,Manolo Cal +31402,Manu Fullola +1771584,Brent Gribble +120137,Ivana Lotito +79553,Arthur H. +120276,Paolo Hendel +105830,James Kyson +1564296,Mariusz Grzybowski +68954,Edward Graydon Carter +1736521,Ari Rufino +111742,Billie Lou Watt +1280400,Tota Roy Chowdhury +1495074,Ted de Chatelet +1056206,Taniya Khan +1690062,Anna Monedière +1003035,Gino Cavalieri +938616,Travis Brooks Stewart +1623449,Dirk Rommeswinkel +1355196,Don Crosby +1722989,Samantha Marie Ware +31997,Jean Oser +239954,Shirley To +576474,Juliana Harkavy +153464,Chris Noel +27831,Thomas Acda +575522,Vera Molnar +38459,Karl Markovics +1285611,Bruce Blain +810740,Thiago da Silva Mariz +1099017,Graham Riddell +51806,Stan Egi +1414454,Ankit Tiwari +227766,Samira Maas +69289,Shin Eun-Kyung +1585473,Lyudmila Gnilova +1145012,Nadir Caselli +1089926,Tsuyoshi Toshishige +93331,Dmitri Nazarov +1116525,Cindy Silver +1650333,Aaron Isaac Vasquez +20964,Lê Tung Linh +1862896,Allan Berne +189704,Alanis Peart +209458,Daisy Haggard +1042711,Charles Willcox +1011719,Kakuko Chino +137429,Bindi Irwin +35092,Don Keith Opper +54697,Dave Franco +137391,Jordan Brower +1738907,Julia Dearden +1426895,Tseng Sheng-En +1651834,Taylor Frey +1473241,Luke Fava +1513956,Emma Kirstin +116646,María Velasco +77543,Charlotte Fich +1532535,Bronwen Holmes +1898499,Anne Morneweg +81238,Victor Cowie +103097,Christine Larsen +53508,Esko Nikkari +226141,Viktor Savić +1500891,Elle Labadie +78496,Ken Utsui +122680,Jax Jackson +1762724,Voula Zouboulaki +54503,Adam G. Sevani +77872,Yuichi Kimura +10146,Jacques Tourneur +158521,Colin Foo +1221438,Kumai Motoko +101598,Maria Piera Regoli +1720622,Tripp Pickell +1197883,Eddy Debray +1168909,Nao Touyama +24603,Rodolfo Corsato +939075,Dante Zappala +1651045,Mike McCarty +1343799,Hayden Skigen +1308820,Meryl Hathaway +1358061,Christopher Matthew Cook +1504893,Bertalan Šolti +1502281,Ken Melde +1391164,Zoë Mannhardt +1907140,Richard Goulding +1123123,Zorana Musikic +119735,Jack Daly +111591,Drew Scott +59031,Didier Bourdon +1677354,Roan Curtis +1001702,Gethin Anthony +1709625,Maria Davis +1201028,Masami Maehata +1147082,Salah El Koussa +33817,Gabriella Giorgelli +258032,Georges Grey +88351,Chen Kuan-Tai +1310051,Ella Büchi +183038,Charity Shea +99304,Marie-Julie Baup +1207029,Cassie Madden +1404660,Laura Misch Owens +228513,Elisabeth Hesemans +52969,Lisa Ray +94904,Wendy Worthington +33866,Vittorio Pinelli +1088119,Peter Dain +228902,Janina Hartwig +1128156,Jack Henry +1523067,Eddie Bagayawa +225578,Masayoshi Nogami +113676,Helena Mattsson +120682,Gülse Birsel +1120269,Willi Herren +1108171,Vajrasthira Koramit +1405734,Cristina Castaño +25028,Ana Gracia +142893,Frank Wild +27823,Stanley Lebor +212234,Mason Vale Cotton +1133423,Nina Ivanič +1073804,Ali Eagle +1714062,Ben Etoria +105798,Jean-Carl Boucher +1084794,Christian Wolff +1182321,Jordan White +1796394,Davide Chiazzese +1559226,Nick Wang +1278136,James Granstrom +574245,Ingrid Olava +1112407,Tomu Miyazaki +1014017,Bashir Al Majid +1214108,Jan Ravens +1381475,Americus Abesamis +97181,Tahj Mowry +38140,Claus Holm +1335462,Lucile Charlemagne +1503418,Alfredo Bertone +550777,Helen Grieve +1017383,Kay Williams +1064312,Joshua Cruz +1872365,Kimberly Paris +1665036,Joseph Leo Bwarie +1298787,Susan McPhail +1169763,Hunter Ives +1651394,Shane Griffin +213990,Robertson Hare +211993,Caitlin Fitzgerald +1794933,Joseph P. Santillanes +155577,Ernie Hudson Jr. +1379207,Linda Spatz +53660,Lando Buzzanca +1466677,Sara Fabel +1665499,William Dinus +1313784,Anna-Maija Tuokko +1686201,Yoon Ji-min +1355967,Simona Tabasco +147110,António Vaz Mendes +294910,Roy Lewis +235374,Pia Johansson +563641,Kelly Thiebaud +1437832,Haruo Takeda +1180134,Mario de la Rosa +88930,Kristina Pesic +1445126,Mauro Arocena +1083451,Johnny Cicco +87583,Chafurin +1764154,Kenneth Miccio +1802699,Gennadi Yegorychev +118070,Carmencristina Moreno +148011,Jari Halonen +1302345,Rebecca Amzallag +1537586,Libuše Pešková +77350,Douglas Spain +571428,Fatma Girik +1070002,Julie Kaye +1094233,Dimitrius Pulido +1570840,Christian Rodrigo +47729,Thelma Barlow +20806,Silas Carson +69785,Andy Luotto +1530658,Tony Brown +1790583,Michelle García +151860,Fredd Wayne +1465465,Felix Avitia +1185451,Gerald Petrarca +37783,Margaret Rose Keil +578850,Mintai Utepbergenov +1650252,Dylan McKiernan +1536979,Joanna Bacon +475512,Ellie Kemper +1269198,Jody Barton +1512148,Jennifer Cadena +1188558,Jeremy Jordan +170842,Catherine Bruhier +1538801,Eve Lindley +1803327,Alexia Osborne +1394458,Katsu Nojiri +1867486,Carmit Mesilati Kaplan +1048992,John Forest +88733,Forrest Taylor +190780,Eduardo Noriega +29839,Yuriy Kutsenko +580868,T. S. Suresh +1630651,Zhou Yao-Zhong +34581,Patrick Dewaere +1508828,Uatchet Jin Juch +130487,James Adamson +1400859,Butz Aquino +230119,Mikako Tabe +1008740,Wilbur Higby +61541,Yee Jee Tso +1575171,Wu Fu-Sheng +1636796,Jeff Hilliard +1085555,Andrew Lusher +62709,Garfield Wilson +1277213,Leo Garavaglia +1525607,Lisa Ann Rubin +933238,Rebecca Ferguson +930673,Emin Olcay +71797,Alex Gibney +559947,Sigurd Wallén +1851693,Titania Lyn +1508658,Diane Arson +1807473,Lucas O. Nyman +1221788,Thomas Morrison +993774,Rachel Brosnahan +1281151,Francesco Di Gesù +590898,Kleopatra Rota +93801,Hiroshi Kamiya +1415466,Chen Manyuan +213431,Supreet +556758,Antonio Spaccatini +1210903,Connie Woods +147109,Fernando Luís +1005538,Ann Whitney +1573613,Richard G. Boron +1529108,Gilles Chabrier +31695,George Rigaud +39655,Gloria Flora +550843,Elizabeth Olsen +1576808,Noree Victoria +222683,Mathilde Nielsen +1057866,Gundula Korte +591277,Jerzy Binczycki +225865,Barbara Jean Barrielle +1390882,Tasya Teles +130034,Jacques Doniol-Valcroze +103681,Gertrude Michael +932040,Olivier Lacut +78578,Angela Oh +28846,Alexander Skarsgård +1499010,Durango Coy +1205492,Akos Armont +1153347,Dominik Tiefenthaler +1152392,Mark Sagato +1309488,Adrián Ladrón de Guevara +165844,Jane O'Brien +1683956,Matthew Hoglie +1196885,Katrin Bauerfeind +1702111,Enric Sala +551591,Megumi Kobayashi +60899,Chace Crawford +1898506,Dean Morris +1624620,Claiborne Ray +207509,Mark Hapka +136553,Hiroshi Kiyama +1387126,Teo Yoo +587147,Brice Fournier +1033021,Daniela Di Bitonto +153197,Martin Wyldeck +1396423,Bianca Lishansky +1822025,Asif Ali +82702,Michael Jackson +1739827,Jeanette Manderachia +1599256,Stephane Cornicard +1093936,Gunnar Skramstad Johnsen +1114839,Lau Wai-Ling +1885266,Jinichi Isizaki +1744209,Kseniya Alfyorova +1525247,Nga Thuy +85273,Brad Morris +1073049,Susana Gibb +96424,Dragan Petrović +1411950,Zanny Laird +96713,Rex Lease +137529,Ned Eisenberg +93731,Belita +85576,Prachi Desai +182081,Carl Rigg +1485112,Ryan Monolopolus +133604,Yûsuke Takita +103185,David Clyde +999320,Cocoa Brown +1417518,Lilly Liefers +118500,Pippo Santonastaso +83761,Erik Clausen +52147,Diana Barton +1375171,Szymon Piotr Warszawski +76229,India Ennenga +237138,Evgen Bavcar +945442,Zoran Radanovich +312722,Lorna Tolentino +118074,James Yagi +1029131,Armen Hayrapetyan +1640426,Grace Schneider +172705,Richard Easton +1419401,Marguerite Lumière +444211,Shelley Hennig +66585,Gregory Cruz +80502,Leigh McCloskey +993943,Mark Chao +583484,Julien Imbert +1891526,Marian Rothschild +45924,Ian James Corlett +132103,Larry Martyn +1707879,Tom Beaurepaire +1773379,Jake Christian +1621486,Amelie Leroy +1086356,Julián Tello +566706,Mikhail Lyubeznov +1907169,Abderrahmane Baalla +1086316,András Szabó +38885,Marie-Françoise Audollent +1109600,Muriel Wimmer +399957,Jan Zangenberg +932373,Joe Lewis +1063269,Kia Davis +1822706,Bernhard Höttnitz +550520,Keeva Lynk +91407,Julius Chapple +302165,Holliday Grainger +68727,Sunny Besen Thrasher +1288797,Rima Te Wiata +9745,Nane Germon +109436,Ying Da +1286546,Julia Moorefield +1418525,Eszter Zakariás +128952,Patti Tindall +1562328,Godefroy Reding +1375035,Gregory Kelly +114710,Paco Boublard +1322070,Christiane Hess +1157093,Fotini Baxevani +1599983,Kyoko Yoshine +1745929,Juliana Strange +137240,Owen Williams +237475,Conchita Bautista +1835582,Zack Orji +1777436,Yoshio Hasegawa +100322,Germán Robles +127129,Justin Michael Brandt +1327544,Minnie Minoprio +1563213,Klement Tinaj +124681,Andrea Calligari +1833901,Sammy Pignalosa +1122173,Orestis Makris +1523039,Tara Uitterlinden +33305,Nathan Meister +1722982,Brandon Bermeo +110076,Nicholas Burns +1067237,Erica Linz +96523,Gísli Halldórsson +107404,James Middleton +227309,Isa Barzizza +1445657,Chris Renton +1050338,Alex Vitale +1277479,Ioanna Piata +1719883,Charlie Alfano +1304174,Ulrike Hanke-Haensch +28568,Ruth-Maria Kubitschek +1161887,Katiuscia Canoro +4367,Yolanda Ramos +86224,Harman Baweja +1670749,Adande 'Swoozie' Thorne +7010,Tara Nicodemo +106195,Alec Joseph +1494849,Patricia Sansone +637852,Mariana Lima +1807331,Yvonne Maverick +108804,Heather Thatcher +140493,Michael Pas +48370,Pierre Besson +1140948,Franca Sciutto +62106,Michael Jenn +1223458,Caleb McCotter +1604106,Patrick Poppy Reed +1658133,Isabelle Leibl +578690,Lee Nicholas Harris +73828,Marilyne Canto +40259,Malcolm-Jamal Warner +929110,Travis Wing +121459,Vanessa Giácomo +1373437,Nic Rasenti +1683081,Michele Burger +1445194,Regitze Stampe +230715,Renat Davletyarov +1000718,Dalton Leeb +100494,Cindy Maranne +558918,Daniel Buran +86636,Aleksandr Bashirov +1444832,Thomas W. Ashworth +1349140,Maxim Driesen +1298270,Michelle Jones +93735,Jamie Gillis +1757740,Racquel Bianca John +6643,Michal Zebrowski +83817,Gerard Kearns +27384,Paolo Malco +559060,Ellen Karsten +30584,Christopher Cunningham +150516,Fábio Oliveira +125402,Tamás Jordán +1086959,Corinne Fontaine +1215925,Marsha Hunt +1442829,Breeda Wool +1190697,Stanislav Sadalskiy +573987,Noelle Perris +1486798,Michael Armstrong +155293,Mercy Malick +947663,Mohammed Afifi +1226513,Tom Scharpling +1579117,Mattias Cucina +592911,Karolina Ostrozna +211947,Ernest Ndhlovu +70150,Patricia Thielemann +89991,Kenneth Howell +123766,Kim Joo-hyuk +138113,Nam Gyu-ri +1617456,Carmen M. Herlihy +116037,Stany Crets +1621410,Raphaël Lacaille +143047,Christina Rose +34363,Marjorie Weaver +1109652,C.E. Anderson +94927,Erin Brown +1862816,Isabella Ippoliti +945707,Frank McCusker +142785,Mehmet Ali Nuroğlu +1841524,Wesley Parks +1286747,Jennifer Gorey +1394437,Stefan Mogel +1586915,Samia Chancrin +132890,Andy Townsley +50308,Frank McGrath +55107,Sabrina Greve +1729055,Shannon Garnett +1891539,Ryan Haskell +101601,Stefania Nocilli +1454808,Frances Flanagan +1619189,Kazumi Higuchi +1113335,Luis Figueroa +1375708,James Karalla +1452469,Alain Jérôme +1582129,Raúl Escudero +1667483,Michael Ian Farrell +138409,Joan Heal +1810545,Hannelore Ohlendorf +1493223,Taylor Hickson +1129417,Reginald Robinson +1589272,Peng Kong +40451,Akio Ohtsuka +43821,Harold Vermilyea +999844,Alberto Jiménez +1097436,Miriam Leone +157230,Mitzi Hoag +1862898,Cynthia Eichor +981307,Sebastian Gacki +25347,Lorànt Deutsch +88237,Jacek Borusinski +1719907,Thomas Paul Croce +1822701,Malgorzata Gajda +125586,Milka Ahlroth +86663,Leonid Kuravlyov +148783,Winifred Greenwood +587540,Jaromír Sobota +1624621,Noam Cohen +1184076,Wang Fei +1547697,April Ragan +231820,Coco Huemer +1266052,Nickola Shreli +1508265,Elmo Redrico +146716,Katharina Müller-Elmau +1418995,Olivier Marchevet +1093080,Sándor Zsótér +15013,Chad Everett +98040,Gladys Brockwell +172187,Alfredo de Quesada +972994,Pedro Carmo +15999,Steve Sandor +221161,Hugh Sheridan +53672,Soha Ali Khan +1162998,Arón Piper +1869473,Kelci Jeter +151952,Colin Tierney +1851060,Michael Galluzzi +86679,Aleksey Vanin +1129738,George Maguire +566171,André Weber +225378,Matt Stadelmann +1206426,Becka Adams +14942,Daniel Melnick +1413687,Katrin Pärn +1219270,Frank Marth +559501,Manuel Hernández +1204704,Mia Lobo +49104,Jutta Speidel +1764365,Bobby Kanowitz +1424895,Mia Diaz +1605119,Dan B. Norris +1318714,Lily Pearl +996224,Alexander DiPersia +1086789,Edwin Frazee +1187788,Ryûzô Tanaka +151025,Adria Dawn +1187353,Pascal Fligg +570785,Alec Sulkin +1760267,Putri Sukardi +79924,Gayle Hunnicutt +586255,István Avar +1618648,Giacomo D'Attino +1496439,Tor Halvor Halvorsen +89925,Frankie Thomas +236331,Lana Cooper +1212619,Robert Merrill +1219489,Rose Rollins +1606394,Laura Harrier +1729076,Dylan Boyack +36419,Peter Ahrweiler +225298,Alessandro Besentini +1529751,Osamu Maruyama +1469802,Britten Tillinghast +57359,Neal Israel +1776846,Griffin Childers +41663,Maria Ricossa +78844,Virginia Pearson +1383575,Jennifer Sun Bell +1279896,Henriette Morawe +1694291,Jeanne Werner +231988,Riccardo Flammini +146287,Pio Marmaï +88716,John Lowell +1115150,Peggy Hayes +1337143,Nikolai Chaplygin +1138121,Tomi Kaminen +202065,Meshach Peters +13477,Jonathan Adams +1716872,Jan-David Rönfeldt +40266,Maruschka Detmers +1093933,Danny Green +1379225,Anthony Fridjhon +592343,Richard Gallion +1191678,Viktor Pavlov +1176987,Владимир Большов +230787,Minoru Oki +1726976,Lara McDonnell +1454944,Levente Molnár +1800035,Michael Duffy +37625,Andrew Garfield +1818444,Peter Bigler +1092718,Lillian Cornell +1724695,Bettina Schausten +1583975,Anthony Hill +1529997,Charli XCX +1023735,Lotten Roos +1619202,Alec Coleman +1549818,Piotr Domalewski +214019,Luke Newberry +56862,Meme Tian +309260,Harald Eia +1677218,Mirella Carbone +54936,Mats Carlson +1713831,Sam Hanover +1423807,Andrew Sellon +1076564,Drew Haggard +1520919,Michel Lussan +1244126,Lisa Diveney +1316668,Kathy Grano +1099848,Joshua Burge +1275552,Wang Lu-Yao +1382106,Lucy Christofi Christy +1618515,Ashley Wilson +27642,Lina Sastri +36209,Jean Debucourt +1415443,Lane Westerhaus +1810151,Dave Campbell +45315,Tom Howland +1400599,David Lemoyne +1207153,Kelly Beau +367246,Fernando Milani +1722983,Jack Turell +1199148,Kimke Desart +1429678,Kseniya Lavrova-Glinka +1398507,Mimoza Bazova +5661,Matthew Gray Gubler +1511967,Kevin Ho +1122494,Gustavo Comini +1693043,Giti Moeeni +43241,Attilio Dottesio +188024,Vincent Martella +1266877,Tomi Barrett +107220,Daniela Virgilio +1051671,Arthur Orcier +942341,Joaquín Roche +1244796,Emily Wheaton +175971,Geoffrey Case +1117232,David Fernandez Jr. +553882,Fan Wei Yee +1167607,วิวัฒน์ คงราศรี +21229,Raimondo Vianello +1623408,Jia Hong-Wei +1445112,Gabriel Lobianco +1131334,Jacob Thurmeier +80886,Danny Lohner +1127315,Fara Libassi +1291761,Adivi Sesh +1459148,Grace Chin +1163622,Pete Ploszek +173277,Robb Skyler +1244276,Gerald Kyd +1077583,Kehinde Koyejo +1363399,Lindsey Soileau +1451542,Charlie Ian +148866,James A. Marcus +1570873,Josette Eales +1698098,Lina Renna +585673,Mariah Bonner +1722492,Nitzan Sharron +119893,Mark Arnold +232139,Julie Perreault +32249,Natasha Alderslade +139237,Shawn Smith +1457245,Rhys Williams +1813934,Zinnia Kumar +1821488,Cynthia Woods +1502324,Tony Weeks +1508581,Lou-Pascal Tremblay +1878064,Daniel Popat +164094,Marin Ireland +1053859,Vladan Gajović +160736,Sheila Larken +1095408,Storm De Hirsch +1676730,Trantario Jones +1538178,Peter Banta +143081,Oja Kodar +1384101,Frank Fenstermacher +1822710,Marija Ognianosha +101730,Nola Roeper +56602,Alfonso Losa +34637,Agnès Soral +1174392,Luca Orlandini +4024,Steve Reevis +1897700,Richard Laurence +995176,Floyd Alexander-Hunt +297300,Eliana De Santis +1767343,Ann Wolfe +97008,Miki Morita +933056,Jeanne Allard +559140,Frida Luna Roswall Mattson +1641685,Bobby Gillespie +1102266,Michele Estrada +19184,Mark-Paul Gosselaar +1457012,Jackson Martin +43239,Sergio Doria +131871,Louisa Krause +18491,Albert Kitzl +935299,Lani Gelera +1747278,Diezel Ramos +1497698,Laura Petersen +24439,Jule Böwe +1830373,Adriana Volpe +1386089,Edward Snowden +1377187,Amy Yoder +1270454,Alex Froom +133980,Jake Weary +1288264,Diana Toshiko +57322,Vanessa Petruo +1673468,Julius Fleischanderl +1630325,Sean W. Gillaspie +1564292,Justyna Swierczynska +1424761,Sonya A. Avakian +91786,Leigh Kelly +105818,Machiko Washio +86961,Garik Sukachyov +123511,Bill Curbishley +1608792,Manfred Freyberger +1270305,Erling Wicklund +1347321,Aakomon Jones +1400588,Robby Rackleff +1696264,Nene Nwoko +29479,Jennifer O'Dell +76799,Rey Hernandez +1204328,Katelyn Lorren +73997,Brit Gülland +1802431,Hélène Barbry +1127390,Vittorio Mangano +228547,Jun Tatara +82194,Neill Blomkamp +1478647,Lauren Reeder +136154,Scott Martin +222569,Bruno Wolkowitch +1083954,Christoph Roser +1271545,Harry Gulkin +1424215,Erin Benin +1387973,Boyd Marshall +129171,Johannes Hitzblech +555099,Koji Yusa +1227867,Soledad O'Brien +1077059,Hilary Pingle +1096268,Sarah Le Picard +117667,Jeanne Boitel +146392,Jacqueline Pinol +229933,Shahab Hosseini +1839912,Daniel Belmonte +82807,Lydia Leonard +189385,Kevin Flood +932878,Михаил Зимин +114483,Érika Mader +1787981,Tom Aksel Mathisen +80901,Shinji Wada +1514026,Leah Caruana +113903,Skye Arens +1277212,Diana Borghese +19513,Wally Wingert +35658,Juanita Moore +1032556,Àgata Roca +54710,Jody Hill +1163379,Si Wai +444749,Annie Clark +1414379,Ágnes Kakassy +152759,Peggy Lipton +544976,Gunnar Jónsson +1228355,Sarah Fisher +148121,Patric Zimmerman +1132104,Wolé Parks +32064,Heinz Moog +96458,Patricia Cutts +1204705,Helen DeSanto +1581638,Vanessa Earl +932030,Elizabeth Sandy +1176785,Scott Culbertson +130281,Sam Kinison +1090173,Anthony Burlington-Smith +1684891,David Maler +1759698,Jewel McGowan +1841520,Marina Hernandez +161366,Shelly Novack +1056735,Gary B. Gross +1246781,Shruti Bapna +1283044,David Shepard +5370,Austin Lysy +1235973,Darin Cooper +182878,Laurie Paton +206393,Miles Richardson +1754536,Jamie Gliddon +1563273,Mark Salas +1446332,Derek Sanderson +150307,Takuya Fujioka +1606675,Adam Whittington +1886754,Wojciech Mierkulow +53929,Haylie Duff +124080,Jean-Pierre Kérien +900,Christopher Boyes +1072143,Graham Denman +184981,Edwin Richfield +551790,Dominique Rousseau +938949,Sara Brooks +552404,Marc Paquet +1296236,Ryck Rydon +1457021,Antonius Charles +1104959,María Sigurðardóttir +1208007,Vivian Hart +74005,Ditte Schupp +551794,Florence Lannuzel +1497223,Mar Bordallo +15342,Kee Chan +20655,Hong Chen +119350,Flavio Insinna +1533574,Mike Wozniak +1238592,Lee Dong-wook +132426,Li Li-Hua +1870837,Davit Kvirtskhalia +203203,Jennifer Jalene +1229948,Clem Burke +1197143,Melanie Straub +1058273,Yûya Ogawa +1074560,Justin Benson +1129443,Edgar Condori +1050987,Tony Robinow +40663,Selina Giles +142499,Andrei Zhigalov +110762,Pentti Lahti +117582,Victoria Vinton +1403099,Takaya Aoyagi +980805,T.J. Storm +1252466,Brian R. Norris +1302828,Bruce Wayne Eckelman +1155086,David Seijo +52397,Jim Boeven +1519320,Rhomeyn Johnson +1895154,Jason Wilder +215910,Rana Daggubati +225218,Walter Rodríguez +33742,Glenn Anders +1737719,Ruth Crawford +1174584,Incilay Sahin +1263759,Vera Besusso +1536688,Billy Mallon +1678281,Larissa White +1274938,Owain Arthur +1763917,Robert Lee Simmons +589070,Christian Heldbo Wienberg +235000,Farini Cheung +143730,Aleksandr Mosin +1699133,Glen Mexted +140683,Avtar Gill +75713,Anna Lise Phillips +305000,Olga Onishchenko +1080216,Samuel Le +22820,Jenna Stern +141018,Ismael Martínez +36863,Oliver Wnuk +228276,Jessie Wiseman +1366234,Filip Čapka +1521372,Hilary Anderson +1583950,Rafał Iwaniuk +1002593,Yoka Berretty +142253,Tonia Renee +1013640,Andrea Goldberg +24769,Isabelle Cagnat +1009512,Michael Hearn +1283065,Jim Cusic +228371,Chad Michael Collins +1519450,Grzegorz Dyduch +1606821,Cathy O'Hanlon +14752,Richard Parker +1490334,Vietnam Ron +1668085,Darko Kurtovic +40039,Josh Stewart +1241730,Taeko Nakanishi +1125871,Jens Arentzen +1424712,Cameron Palatas +1589138,Monica Moore Smith +1863892,Claudinho +1495604,Mariola Jaworska +24265,Bill Bailey +1729,James Horner +1330448,Cho Dong-in +549384,Valeriy Priyomykhov +121628,Kazue Ikura +1902097,Eridian Sommerfeld +1208796,Gustavo Ferrín +1072872,Carolina Groppa +190937,Katie Bergin +111284,Beverly Michaels +82312,Maja Ostaszewska +133525,Abel Folk +50293,Henriette Confurius +1228523,Steve Wilder +172037,Madeleine Martin +1593232,Levi Eshkol +494102,Helge Mauritz +1638441,Viktor Gerrat +1468331,Rita Murray +1898247,Milorad 'Pajdo' Sarić +55914,Claudio Bisio +13645,Danny Woodburn +33970,James Craven +1564561,Mickaël Onoimweniku +105326,Eleonora Brigliadori +94842,Derek Nimmo +1051260,Ana Sakić +111166,Connie Scott +1257593,Min Hyo-rin +107573,Kenta Kiritani +145728,Turgut Özatay +228105,Katrine Bach +1755068,Scott Gray +1475653,Harmonica Bill +1281610,Tiny Bertels +933196,Sofiya Pilyavskaya +30379,Esther Zimmering +543561,Mario Meniconi +1625135,Patrick Playez +1567839,Carleigh King +1485328,Leslie Castay +1373503,İlyas İlbey +1195667,Jony Arbid +1088938,Anthony Reynolds +1689285,Eric Tabach +589596,Kade Phillips +12690,John Hallam +1196554,Almedin Leleta +1635870,Richard Price +88440,Vipul Gupta +1735883,Pierfrancesco Villaggio +1184371,Anabel Ferreira +1636926,Frida Palsson +87576,Jessica Feliz +971273,Jennifer Prediger +1821758,John Manning +1684888,Prabha +1055514,Pier-Luc Funk +1084476,Saul Jarlip +1119647,Camille Panonacle +1467541,Sharee Fowler +1112593,Hussein Yassin Mahajne +210700,Jermaine Washington +1148668,Giorgos Armenis +1689930,Cal Rosemond +1182317,Lindsay Bushman +1451410,Paula Cancio +1395705,Stéphane Grossi +99259,Boris Andreyev +204679,Emily Wickersham +149875,Béatrice de Staël +1228293,Mark Wilson +1323642,Jens Kipper +1084575,Jennifer Ingrum +1475369,Nicholas Popov +1630507,Petr Vrsek +18851,Dimitris Kaberidis +225255,Francesco Nuti +1170691,Marianne Mortensen +210196,Laure Killing +88599,Chauncey Leopardi +117656,Ingrid Bisu +134844,Gô Jibiki +1381389,Alec Rayme +543728,Alexa Marcigliano +28723,Zbigniew Sawan +427978,Brandon Smith +227937,Felícián Keresztes +1390388,Annie Penn +157847,Cress Williams +77931,Kotono Mitsuishi +1878320,Terra Mackintosh +1367473,Marcia De Rousse +239731,Moshe Ivgy +943044,Lynn Fontanne +17663,Dick Hogan +1244262,Ken Weatherwax +1417107,Reina Asami +1252343,Kim Min-sang +90463,Pia Ajango +90744,Karl Girolamo +1634772,Katherine DeBoer +548347,Micheline Luccioni +144160,Sean Bridgers +1158464,Malika Doudaeva +1283705,Ken Hall +550522,Kimberly-Sue Murray +1068865,Tomie Tsunoda +1088206,Jim Wiggins +2825,Marian Opania +224116,Olga Ostroumova +1619617,Zhao Ying-Zhun +567975,Alberto De Amicis +1418115,Sophie Simpson +1891542,Tre Penna +20663,Gara Takashima +1259583,Pelin Akil +143136,Manuel Santos Carvalho +1351003,Tom Key +1563599,Roo +1120766,Koo Bon-Woong +1446843,Toni Santagata +1388683,Jonathan Miller +1788578,Ryô Iwamatsu +937009,Juan Pablo Raba +1159982,Ansel Elgort +1393836,Bhagavan Angulo +235572,Orazio Orlando +119447,Shing Fui-On +1824291,Ben Kelleher +1465480,Kenny Santiago Marrero +116848,Bruno Della Santina +1676883,Lauren Bacquet +1181246,Simone Colombari +233207,Tatyana Samoylova +1610548,Getu Fixa +1163380,San Shu-Wa +1407795,Ceyhun Yılmaz +583502,Fani Kolarova +60606,Julian Christopher +55936,Jemaine Clement +1738398,Leilani Barrett +134774,Wunmi Mosaku +1615809,Takato Kitamoto +141382,William Juan Prieto +1117265,Joel Bishop +32100,Maurice Biraud +86303,Vatsal Seth +1760879,Ben Sakamoto +230023,Khaled Nabawy +99315,Kenan İmirzalıoğlu +213530,Gus Dahlström +1090132,Keith Poulson +588067,Seung-cheol Kim +1279191,Lili Wang +79934,Trevor Cooper +1099510,Jennifer Restivo +233334,Alessandro Siani +1255071,Chanelle Peloso +558055,Margaret Laney +1606424,Luciano Zanussi +209545,Bubba Lewis +1759683,Sophie Mazzaro +93810,Martin L. Demaine +38567,Donald Burda +1150850,P Balachandran +18951,Stephan Zinner +1431050,Oluniké Adeliyi +239118,Guillaume Gouix +1748388,Gino Galento +1177410,Fudeko Tanaka +546875,Stefan Perceval +50780,Philippe Hersent +1581552,Deanne Hoffer +1125710,Greta Rehfeld +131126,Patty King +1762543,Kate Dion-Richard +57710,Abraham Lim +1470852,Florentin Steinsberg +558899,Desmond Phillips +1282038,Wiliam Troughton +1623936,Gary Vider +1513952,Hakan Salinmis +132830,David Savard +469462,François Arnaud +93255,Mercedes Cabral +40998,Ulla Moritz +1017268,Ruth Elkrief +1586843,Vincent M. Biscione +1213283,Chris Foy +1156403,Trude Hirschler +974991,Tom Harvey +106219,Kathy Searle +1579592,Rhapsody Violetti +1740095,Andrea Pucci +64497,Lee Jung-Jin +1210546,Soukchinda Duangkhamchan +1701452,Tom Kauffman +77210,Matthew Bennett +81584,Matt Heath +1375250,Troy Bernier +1184168,Michael Shannon +99349,Helen Vinson +16033,Rhodes Reason +36058,Bruce Weitz +142184,Bailee Michelle Johnson +1106962,Nils De Caster +1642149,Raymond Voß +82146,Myles Thompson +1512189,Blake Rice Kirkland +1180099,Da'Vine Joy Randolph +548835,Néstor Guzzini +235983,Vitali Solomin +1386385,Olwen Brookes +159572,Michael Jackson +44821,Peter Looney +1650372,Michalina Łabacz +1677140,Wissam Fares +222685,Johannes Nielsen +1884996,Andrey Kuzichyov +1381460,Mir Ferry +1015809,Wanida Termthanaporn +99138,Donna Hamblin +134520,Benjamin Haddad +1782152,Sawyer Avery +19779,Ron Rich +18410,Bodo Oesterling +168542,Julie Patzwald +1271004,Stubby Stubblefield +1754591,Amanda Bell +1418967,Kristjan Üksküla +1555131,Christopher James Culberson +1341800,Jennifer Li Jackson +1111995,Catherine Leno +120338,Sammy Petrillo +1458393,Daniel Figuereido +1090945,Andrew Ryan +1244429,Melissa Galianos +936092,Pyotr Aleynikov +1364637,John Sackville +1731342,Dawn Young-McDaniel +1845738,Cristina Morán +141982,Rauno Ahonen +1746871,Andre Ward +194173,George Cooper +1480773,Bettina Tietjen +1157671,Gerald Frank +99691,Tiffany Tang +553273,Richie Campbell +97604,Kevin Rahm +1105501,Owen Moase +1086569,Arianna +1232510,Wendy Barrie-Wilson +1054837,Sean Michael Afable +1451088,Karen Huie +143281,Freddy Buache +1615713,Sonia Zonenberg +119344,Herbert Cameron +1541162,Scott Vance +1042752,Raimundo Carrasco +1820239,Jennifer Frank +575499,Svea Holst +1140901,Carlo Marcolino +1272968,Samantha Jo +1113450,Martin Blencowe +1280063,Mario Späte +37248,Kailas Mahadevan +1833799,Brendan Heaney +1585226,Vicki Marentette +131303,Yan Ni +1526632,Camilla Beeput +1505209,Jason Naylor +220304,Camilia Blereau +1017369,Wayne Scott Miller +35102,Donatella Finocchiaro +98274,Micah Alberti +1221875,Ayaka Saitō +1118058,Robin Morrissey +1784281,Patrik Czanik +26889,Francis Lemaire +1821492,Ella Rowbotham +1707901,Steve Jager +1520070,Teruko Nakajima +1379267,Daniel Ben Zenou +230655,Kaho +557932,Robbie Sublett +557958,Walter Hess +1355226,Charles Uhrle +1560936,Sarah Whitefoot +59129,Óscar Jaenada +1624227,Nick Madrick +1090179,P. Floyd Piranha +84762,Kathryn Walker +1714038,Johan Seknadje +138377,Fred Krone +47227,Renée Saint-Cyr +49827,Michael Cerveris +26741,Chan Sing +1163308,Johnny Walter +1132056,Margaret Lee +1650309,Gabriella Rhodeen +103822,Neil Fisher +1352016,Kanayo O. Kanayo +1682,Hiroshi Ohtake +38124,Carl Lange +514757,Jimmy Dorsey +232108,Mauro Pirovano +548204,Miranda Handford +1260894,Paulina Urrutia +1814922,Kayla Mengelgrein +931002,Silvio Wolf Busch +53953,Gaspar 'Indio' González +1863899,Carlos Dias +138532,Lee Si-young +2684,Emmanuelle Vaugier +1373152,Patrice Dozier +228755,Mariangela Arcieri +131238,Murat Yilmaz +946953,Frank Harts +543622,Juliette Faber +1849543,Lucky Schwarz +543822,Weronika Książkiewicz +1238521,Gloria Cámara +1718157,Caitlin Chapman +109065,Tina Romanus +101471,Eric Falk +1353940,Tom Chamberlain +1519564,Kim Arnett +145733,Erdal Tosun +140169,Gábor Baraker +1675348,Vivian Wright +112825,Archie Lal +1384501,Frank Leboeuf +552600,Yuuko Kobayashi +228951,Martine Fontaine +1467528,Jamie Howard +495827,Torrance Coombs +1642136,Sable Rae Empey +169349,Evan Arnold +132548,Nicholas Blandullo +1108829,Cameron Deane Stewart +1357105,JM Ibañez +9742,Josette Day +1436978,Dave Davis +90462,Gemma James Smith +934990,Christie Burson +1114527,Örvar Jens Arnarson +209844,Carrie Fleming +1853089,Ilaria Ingenito +105641,James Patrick Stuart +108991,Charles Korvin +93655,Guy Stockwell +104299,Sally Gray +559988,Fyodor Dunayevsky +1306567,Kaali Venkat +237763,Robert Arnoux +1776843,Ashlyn Brooke Anderson +1071384,Ahmed Moualek +1291350,Tony Revolori +276530,Ken Sylk +1041508,Sierra Fisk +1510858,David Baptiste +128559,Tien Pham +566913,Mariska Van Kolck +115977,Jake Siciliano +58541,Matt Servitto +120710,Joan Valerie +1367571,Jack Fox +1383478,Gregory Fears +1187768,Lisa Halvorsen +1439650,Michael Bengtson +42124,Oleg Vidov +1504368,Nick Vorsselman +108685,Gabby Concepcion +1564305,Kaya Kolodziejczyk +1189245,Mia George +1260160,Neta Riskin +1799511,Evgenia Dodina +110910,Gillian Ferrier +71860,Michelle Kwan +1674642,James Kirkham +929636,Gerasim Zhukovsky +1738056,Brendan Pedder +1471841,Flula Borg +101472,Lina Romay +90409,Brooklyn +1077843,Geoffrey Pomeroy +1049458,Bonnie Perkinson +46906,David Richmond-Peck +239852,Arisara Thongborisut +1528857,Lane Smith Jr. +34807,Shirley Patterson +35530,Christopher Thompson +1220189,Karl Davies +989325,Ella Purnell +35917,Catherine Samie +1467099,Evgeni Kudryashov +81969,Chris Lomme +1192218,Sebastian de Souza +1427893,Siddhanth Kapoor +1372349,Nasira Mambetov +1762444,Joe Blakemore +64023,Mike Müller +1796390,Nabeel El Khafif +934383,Pippa Allen +1500688,Hunter McGregor +1057660,Vernon Greeves +1394452,Ben Rossberg +132554,Jason Thompson +80122,Paul Nakauchi +1072378,Hiromitsu Suzuki +114482,Gregório Duvivier +575101,Zlata Adamovská +1064931,Aleksandr Chistyakov +1216606,Gugu Mbatha-Raw +564335,Robert Bear +30497,Eileen Crowe +1157390,Teuku Rifnu Wikana +97329,Roy Marika +910944,Bastien Bouillon +230672,Manuel Muñiz +1102453,Ryan Cooper +1370832,Shazad Latif +1747681,Peter Reynolds +223232,Claude Ollier +91531,Tim Chiou +232597,Amy Blackburn +1145171,Mae Turner +506932,Johann Bednar +146348,Samart Payakarun +1418446,Brayden Edwards +1473776,Tom Meeten +1776046,Romane Cretegny +1742694,Ross Green +1149879,Peter Kraus +1728947,Ziad Jarjoura +548015,Shinji Ogawa +117075,Henry Jaglom +179740,Stephen Edward +1394354,Thomas Gaitsch +1589717,Chris Sancha +1477359,Edel Stenberg +1470882,Frauke Ludowig +970561,Joe Adler +41166,Pino Ferrara +144985,Håkan Johannesson +84905,Marc Schaffer +590820,Art Hsu +1262795,Giampiero Schiano +1598604,Eva Magni +1124536,Haruka Shiraishi +1147086,Diab El Masri +109099,David Basila +91292,Midori Matsuo +1404693,Nell Murphy +58620,Joseph D. Reitman +1745102,T.J. Lyell +1326056,Bella Dayne +227385,Teddy Reno +1055235,Quvenzhané Wallis +55887,Stina Ekblad +1051473,Jeremy Raymond +175206,Alex Karzis +1186092,Sabine Pakora +129303,Claudia Potenza +1862899,Bill Andres +1029033,Kenneth Fok +1087747,Kiara Glasco +1522146,Bo Johnson +1701515,Dodge Prince +1148,Jerzy Stuhr +146250,Erika Okuda +1761846,Kai Lindberg +1602952,Lexie Roth +20654,Liu Ye +1393530,Craig Snoyer +1695063,Sloane Murray +1652470,Arlen Stuart +17614,Blandine Lenoir +1507139,James Patrick Stewart +110141,Alex Désert +103157,Adriana Russo +1707751,Nick Barry +1287909,Kim Hong-pa +128224,Lidia Vitale +592475,María Vázquez +1091542,Dino Mattielli +930828,Tiago Barbosa +1833230,Nilu Gacek +985078,Dmitri Novikov +1675048,William Severn +1244822,Lee Jung-hyun +1669834,Diljá Valsdóttir +73749,Taiane Arce +1753911,Shannon Purser +584065,Dariya Semyonova +57711,Klaus Büchner +1888504,Abdi +367368,Michele Miller +1202534,Sadie Sandler +1839351,Virginia Maitland +87220,Brian Boland +1271681,Sunny Sandler +91564,Dirk Foulger +1528109,Hannah Victoria Stock +1399614,Phil Lister +935277,Inga R. Wilson +1345410,Cheikh Nourredine +1501741,Charlotte Maltby +1318905,Lyubov Aksyonova +1520908,Catherine Graindorge +216269,James May +1282313,Anna Safroncik +113934,Susan Flannery +123405,George Womack +26419,Gunnar Möller +32532,Brad Lewis +1117091,Ty Kamerman +44987,Claudio Camaso +1331799,Rudy Romano +97920,S. William Hinzman +1758610,Oraphan Arjsamat +1671024,Jessica Williams +1544910,Emma Lowe +135096,Robert Raglan +1339111,James Gallery +553198,Vincent Claude +1600085,Patsy Ferran +1413423,Adam Loxley +124501,Gabrielle Dennis +1305040,Raden Ismail +441040,Dominic Bowden +1681,Tesshou Genda +1833569,Mark-Alexnader Solf +1302425,Curtis Gordon +1077851,Egon Stoldt +1165295,Mahamadou Coulibaly +548086,Sergei Desnitsky +1011211,Johanna Igel +1298967,Alison Hofer +11493,Leslie Howard +1203505,Enzo D'Ausilio +1071145,Hannes Fretzer +930413,Sawako Agawa +179127,John Hudkins +1427474,Chelsey Pozdyk +134397,Nathan Keyes +97608,Kimberly L. Cole +54478,Kate Butler +222272,Tarina Patel +1336140,Valentina Ponomaryova +235991,Aleksei Alekseyev +18454,Helmut Kleinmann +55348,Beatriz Castillón Mateo +1842181,Kim Bordwine +35241,Nicholle Tom +158473,Bill Marchant +228466,Gorô Inagaki +1677217,Fernando Vivas +96024,Maxx Hennard +1021444,Umut Kurt +83599,Jonny Mack +1639760,Rodolfo Rodriguez +1138215,Brandi Cyrus +1585603,Eva Redpath +1334214,Jo Adrian Haavind +116187,Phillips Smalley +1371160,Iwona Sloczynska +1699687,Kalidas Parthitan +1042447,Emmanuel Schwartz +1206373,Kei Nakata +567809,Ingeborg von Kusserow +1621373,Ryan Clark +572304,Adriana Mascialino +1034197,Samira Wiley +75813,Aaron Hughes +1108894,Karl Claude +77759,Shaggy 2 Dope +79256,Janne 'Loffe' Carlsson +1489426,Pedro Caxade +1803942,Andrzej Szeremeta +1366661,Primo Allon +1547724,Cassie Self +1128378,Garry Peters +1105269,Billy Dooley +1207364,Sarah Booth +1362814,Stephen Cromwell +1016503,Jeff McGrail +1593380,Rudolph Whitcomb +206047,David Campbell +1382739,Parisa Johnston +1407751,Rusty Robertson +1205895,Tony Mccullough +1165003,Amos Tamam +1758541,Nattapat Sookwongsil +129573,Raquel Sueiro +1847765,Gigi Feshold +1247723,Victoria Bruno +137791,Tambet Tuisk +962262,Amanda Riley +969630,Alexis Boozer Sterling +75748,Yutaka Izumihara +1673510,Bender and Daum +130951,Joyce Holden +1753561,Miles Groth +1228361,Jordan Todosey +1127867,Alan Andrews +112405,Dorothy Compton +1187189,Redouanne Harjane +1078128,Megan Mercier +549541,Eduard Martsevich +1196410,Ibe Brekke +115532,Gennadi Vernov +1891504,Robert Toomey +121546,Manuel Cauchi +1846538,Stela Furcovici +577686,Jasmin Singer +64202,Tom Fridley +1821364,Sten-Markus Rohtla +544826,Valeria Moriconi +1117773,Aljoscha Stadelmann +135526,Jack Johnson +143186,Evel Knievel +985248,Marianne Benet +1062029,Sam Cobean +589757,Allison Varnes +134265,Laurence Hanray +587477,Florin Busuioc +1689928,Jesse Farb +1518858,Inez Thomsen +137021,Věra Tichánková +1485209,Marilyn Anderson +1638431,Ivan Tushin +1428992,Róisín O'Donovan +1326947,Mirco Reseg +74377,Takayuki Yamada +1848076,Tanya Drewery +1441997,Justina Bustos +147527,Dennis Wyndham +1334990,Robert Frank Telfer +1798148,Jon Agro +1381628,Ryan Girard +940312,Elizabeth Stack +110943,Zoran Cvijanović +1790368,Francesca Keller +101596,Roger Browne +157176,Mary Joy +53107,Asif Basra +153365,Anne Barton +1506483,Annie Creech +1450938,Lilian Prent +1170030,Jörn Knebel +1032340,Owen Pattison +1298296,Sarah Barnes +1075447,Keiichirô Katsumoto +1526638,Michael Warburton +1891142,Asia Ndiaye +1439488,Claudia Jessie +1156401,Anni Lampl +208096,Adetokumboh M'Cormack +121702,Jun Naito +164485,Anne Bedian +186043,Kevin Brennan +1758517,Prahlad Kakkar +36672,Tamzin Merchant +1096851,Allen D. Sewall +1126674,Thulasi Nair +129502,Ward Wood +1334122,Michael Chase +1106129, Ye Ji-won +24325,Terry Wilson +166857,Ken Forman +150943,Esther Sandoval +82666,Rhys Darby +1132786,Claude Wisberg +1574934,Agustín Jiménez +476556,Adam Tsekhman +36385,Pascale Audret +1254211,Lin Gengxin +93966,Natasha Pyne +81215,Carl Magnus Dellow +1114053,Gary 'G. Thang' Johnson +228054,Patrícia Travassos +1401120,Sorcha Fox +43998,Jean-Paul Bonnaire +1297041,Zara Dimitrova +10828,Guillermo del Toro +1151354,Morissa O'Mara +225163,Pitobash +1812212,Yosuke Ochi +1557630,Emma Kantor +71199,Marleyda Soto +1217006,Christian Bocher +1746886,Marquise Noel +1424207,Madison Love +95402,Joshua Montoya +1169342,Deidra Shores +1023537,George Summers +1335167,Rafiella Brooks +1479324,Kjell Breivik +8769,Christo Jivkov +432040,Luke MacFarlane +988751,Oduvil Unnikrishnan +1477962,Rebecca Liddiard +1139961,Lisa Star +17341,Amaury Nolasco +86707,Margarita Krinitsyna +105493,Howard Crossley +1500895,Giovani Adams +88706,Kellie Cockrell +580629,Lourdes Martin +1850164,Zita Fusco +1426920,Kanneti Sawe Han +19502,Kevin Eastman +1685383,Nobuaki Kakuda +1396351,Samara Losada +128748,Alba Rohrwacher +1349738,Dino Georgiades +1753510,Chanty Binx +107792,Maclain Nelson +83726,Elliot Villar +559176,Gisele Fróes +1513866,Olajide Olatunji +1348351,Signe Heide Steen +1276785,Marc Prin +1643033,Thomas Segerström +1636951,Xavier Torres +1310862,Daniel Bedford +240036,Maroun Bagdadi +1544968,Ellen Kinnally +1112572,Peter Bush +932034,Axelle Ade-Pasdeloup +1275873,Barbara Kolodziejska +1149610,Stephen J. Bridgewater +1511968,Lily James +121611,John Breen +24615,Wendy D'Olive +26930,Amy Morton +1381214,Marta Pérez +207601,Manou Lubowski +1283582,Pernilla Stalfelt +1138120,Chris Hester +1144062,Mattis Herman Nyquist +180687,Nicole Stoffman +236737,Alessandra Comerio +1279060,Langen Han +1094119,Michael Friend +27645,Giorgio Francesco Palombi +1592932,Melissa Trainor +28478,Christian McKay +1019159,Armida Siguion-Reyna +86708,Tamara Nosova +95364,Maggie Maye +222563,Terry Big Charles +933558,John Mulaney +132532,Ryo Tomita +231028,Antonio Garisa +1043278,Odette Khan +1297266,Deogracias Masomi +86689,Stanislav Lyubshin +1381491,Justin Miles +48903,Stefan Jürgens +584094,Wilbur Penn +236633,Angelo Abazoglou +1612628,Cappy Barra Boys +1081840,Rebecka Englund +236098,Kan Mikami +17125,Park Jeong-Hak +579458,Arch Taylor +1362643,Marilyn Hull +109345,Louis Jouvet +1894995,Margaret Michell +98550,Howard Kaylan +1436293,Maoping Zhan +1718151,Sara Fiona Wolf +61238,Kurek Ashley +170230,Tristan Tait +1651295,Paradorn Vesurai +1294883,Jon Barinholtz +89604,Rachel Stevens +1214745,James Randi +1610300,Llysa Rie Lesaka +1719081,Tessa Violet +1287720,Clyde Willson +1559484,Edward B. Giller +1229049,Alex Tetteh-Lartey +62478,William Lightning +144942,Shunsuke Kariya +1609153,Giorgio Molino +123974,Dezső Garas +1869695,Jade Colucci +223077,Mari Vainio +26395,Götz George +1861914,هستی مهدوی‌فر +1293716,Mike Fleischhaker +87934,Meredith Monroe +978844,Jai Stefan +1418422,Jake Stormoen +1530413,Haruko Tani +1270475,James Alley Jr. +102851,Stacia Napierkowska +33105,Sharon Gurney +95105,Borys Szyc +120109,Paola Onofri +591834,Lauren Lapkus +95397,Chris Ritchie +1157301,Ian Kilgannon +98817,Debra Mayer +1657803,Nandini Sree +1272709,Xavier Alcan +136412,Sandra Carle +989607,Drew Rausch +1839352,Robert Chadwick +82638,Laura Aikman +153081,Alan Edwards +1088213,Theodor Danetti +1230389,Brian Stack +583278,DTeflon +63139,Robin Smith +1303064,Fernanda Castillo +1621148,Corrie Danieley +933232,David Paul Baker +59263,Diora Baird +70466,Mats Långbacka +1761839,Juha Kandolin +588143,Poon Jan-Wai +1409067,Matthew Urban +1128383,Juana Acosta +1461660,Herman Gilis +39007,Carlos Miranda +212686,Gregg Sulkin +1031142,Gail Gilmore +592712,Paolo Gasparini +1442884,Eddy Kimani +38231,June Vincent +124304,Michael Irby +32129,Maria Rohm +1524414,Huguette Faget +1607448,Nobuitsu Nakano +1334328,Cole Simon +116650,Bert Courtley +1602209,Creighton Mark Johnson +24518,Teri Ann Linn +142854,Ayca Damgaci +200465,Diana R. Lupo +1000984,Stefan Shterev +1110612,Dallas Gilbert +64531,Komi Togbonou +1841547,Micael Navarro Lopez +1343379,Helena Löwenmark +1078398,Aaron C. Peer +1186517,Steven Marlow +561247,Helena Barlow +1673233,Randy Dunham +129228,Candace Kroslak +1687323,Nicolás Barsoff +44464,Mike Maas +81926,Esha Deol +1079639,Barbara Romaner +89574,Manuel Alexandre +1449309,Amvrosi Buchma +1084211,Julie Ivey +1322378,Marta Guerras +1834959,William Simonds +974219,Gigi Sarroino +52052,Jessica Simpson +1110447,Batuhan Karacakaya +1826653,Fernando Macário +1427102,Gretchen Thomas +1615540,Raul Ribera +1158111,Patricia Pierangeli +1759635,Scott Wahle +23536,David Rendall +1096173,Inthira Yeunyong +229736,Stepan Bubnov +140010,Danitza Kingsley +1358664,Caitlin Harris +1771592,Brenda Moss-Clifton +1352565,Chum Ehelepola +117771,John Harmon +135620,Gérard Dimiglio +1313146,Stacey Nickel +226024,Philippe Girard +509344,Luca Marinelli +1607561,Mina Sundwall +231439,Jacobsson Anton +108216,Siddharth +1648792,Danich Kouy Chan +139834,Gemma Atkinson +1496480,Mirta Takač +1355223,Nicky Salapu +1290853,Ron Chapman +1305038,Nurnaningsih +560246,Joaquín Gómez +1093940,Signe Tynning +1140582,Jeremy Lin +1163602,Yana Sekste +1312814,Gelly Mavropoulou +1189921,Chaiyapong Settagam +46426,Mirta Miller +54536,Jacques Palminger +1074676,Tiffany Boone +990584,Ethel Smith +1716,Michael Berry Jr. +6715,Dana Ashbrook +1846470,P C Soman +1058278,Grant Munro +165370,Margaret Fairchild +1322114,David McAlister +58996,Sovetbek Dzhumadylov +36709,Götz Schubert +1448859,Krista Dzialoszynski +84996,Yoo Hae-jin +1081488,Douglas Chapman +1511236,Agneeta Thacker +121237,Sally Payne +115538,Vladimir Yemelyanov +24747,Pino Colizzi +1200864,Keith Stanfield +1520922,Isabelle Pousseur +1569755,Anthony Bolognese +96186,Max Harris +1255370,Carmen Tănase +975849,Leni Stengel +1780282,Melanie Hamilton +572690,Elena Shevchenko +131509,Peter Whittle +1062048,Frank Powell +84833,Zach Cregger +115982,Bianca Giancoli +1412632,Lucky Wickremanayake +1108910,Darius Williams-Watt +1448592,Tina Tempesta +1676373,Ömer Musab Küçükle +1559776,Shaojun Ma +1824294,Karl Fredrick Hiemeyer +931357,Cirilo Recio Dávila +238481,Sari Mällinen +1154281,Emily Seymour +1231673,Brad Williams +1435700,Prabhu Lakshman +1059040,Lou Ferrigno Jr. +121576,Akihiro Kitamura +97248,Hugh Latimer +1841542,Quehanna Spacht Weaver +1041562,Paul Sampson +1308163,Janette Carter +1238225,Igor Sas +1096784,Paloma Cervantes +67206,Andrew Howard +1631191,Daniel Cho +1213620,Alan Simpson +1104958,Thora Bjorg Helga +579797,Louis Vonelly +1869036,Jazmia Battle +1360181,Felix Goeser +1557947,Jacqueline Baum +1691970,Alicia Regan +75398,Alan Cassell +1246373,Marvis Frazier +557089,Guy Provost +618699,Jagdeep +1630508,Johanka Schmidtmajerová +1771570,Miller Carbon +626031,Svetlana Ponomaryova +84312,John Fleck +86421,Mukesh Khanna +6064,Marcello Bezina +1277476,Vasilis Vasilakis +20197,Mylène Jampanoï +1069545,Tran Van Khe +1753485,Brian de Matos +557215,Deanna Brochin +1267892,Krissada Sukosol +103210,Kevin Goocher +1279537,Ireneusz Kozioł +128409,Ines Nobili +1445249,Christopher Heskey +132571,Lilli Carati +1494489,Eddie Arcaro +239680,Aleksey Filimonov +95043,Erik Eidem +105507,Leslie Kimmell +1257899,Kang Ha-Neul +18182,Olga Kurylenko +1616703,Gene Amoroso +1507368,Sean Hartley +1204944,Lucky Ben Dele +96515,Aleksandr Lazarev +1334230,Kim Jung-pal +117637,Gene O'Donnell +1212282,Megan Henderson +1503858,Daniel Weidlein +1010903,Emil Johnsen +1346087,Kristina Hayes +205204,Jean-Luc Bilodeau +1478978,Cecilie Alstrup Tarp +129031,Stanley Meadows +146154,Håkan Serner +146162,David Norona +124261,Minttu Mustakallio +1888573,Necmi Aykar +138860,Jamie Bernadette +1367843,Nondumiso Tembe +1326966,Shyam Ganesh +1890766,Mem Ferda +1664059,Jean-Claude Audouin +1877260,Yasmin Catramby +1312165,Peter Kuiper +83629,Po Tai +1199349,Cheryl Kennedy +1650392,Ołeś Fedorczenko +1381712,Antwan Mills +1669831,Blær Hinriksson +1215684,Brandon Fobbs +164004,Ken Cheeseman +1391810,Scott Summitt +1398051,Anthony Joseph +1353501,Boudewijn de Groot +549389,Mikhail Yanshin +1108866,Kenneth Harp +967162,Lucas Manzano +1117790,Javier Fernandez Pena +1741857,Jerry Stewart +229486,Abbey Hoes +91206,Erin O'Brien +228167,Antonella Vitale +1477354,Vessa Carlsen +552553,Lily +928976,Guadalupe Alonso +1797568,Victor Klein +1325774,Sergey Epishev +592496,Joe Taslim +1194140,Joel Johnstone +1167393,Ole Hedegaard +59388,Summer Davis +1580364,Waldemar Wohlin +80879,Zeta Douka +1120059,Larry Taylor +1381317,Ben Warren +146137,Lang Lang +1042917,Ivan Savkin +1900910,Francesco Brandinelli +592917,Marek Bukowski +380767,Cynthia Roman +1107806,Joel Pollak +48895,Oliver Bootz +1587599,Kira Smirnova +146941,Hildegard Krekel +1510999,Dee Anderson +40996,Roma Bahn +1606637,Dénes Száraz +1753494,Darrah De Jour +1210954,George B. French +23444,Zhanna Friske +109776,Norman Willis +31838,Danielle Panabaker +102044,Judy Matheson +1029220,Yusuke Kamiji +1898246,Anastasija Vujović +1062865,Chokchai Charoensuk +1507239,Angelica Chitwood +232741,Mauro Meconi +1879940,Luciano Montrone +1015873,Son Hyun-joo +3883,Elsebeth Steentoft +17306,Zachary Quinto +1804477,Shawn Sterba +1072774,Youko Hikasa +1159965,Carminho +1454976,Suzu Hirose +120917,Yoshikuni Dôchin +113893,Christian Grenier +1168997,Rick Gitlin +46903,Genevieve Buechner +567068,Ryo Kato +144655,Tomokazu Sugita +1039531,Mike Donlan +1528718,Devika Bhise +55110,Ricardo Blat +83974,Susan Saint James +160271,Jan Smithers +214660,Beth Porter +583328,Micheline Boudet +64295,Alan Ritchson +1135891,Yuya Miyashita +1134589,Johanna Paliege +1690063,Mayline Dubois +32564,Renata Litvinova +1314862,Nora Larraga 'Karla' +1192850,Ivan Castiglione +85595,Sampath Raj +33353,Samuel Patrick Chu +39945,Regina Sattler +1074918,Virginia Mataix +114939,J.D. Smith +1415410,Mark Gibson +238768,Jean-Jacques Delbo +1609185,Patrick Massiah +1771604,David N. Russell +1279480,Dharma Harun +33184,Rohan Nichol +1630259,Anica Barbosa +1470500,Antonio de la Cruz +1817266,Kristina Bangert +556018,Pedro Winter +74133,AJ Bowen +1393539,Jon Bruno +197226,Ian Jacklin +1388878,Rowley Irlam +1593392,Connie Kincer +124869,Iiro Panula +129295,Robin Lamont +1381673,Courtney Patterson +46788,Jacques Legras +1021847,Alma Lloyd +7219,David Andrews +1024405,Percy Parsons +75633,Bobb'e J. Thompson +68494,Justin Whalin +120919,Mutsutoshi Furuhata +1366182,Jean-François Malet +1011206,Julie Vorus +128162,Elmer Booth +932970,Maria Manoella +95356,Charlie Saxton +1288585,Kyle Villalovos +1441808,Anders Emil Vestergaard +1481834,Elit İşcan +1758607,Chontida Onnim +37814,Loni Heuser +1393347,Tom Wood +1457282,Mario J. Radford +184915,Queenie Watts +130506,Amy Tam Ka Chuen +1660681,A.Z. Markus +1693067,Caroline Dunphy +928825,Hiroshi Morie +112208,Claudio Obregón +69823,Alfred Holighaus +186197,Paul Herzberg +550738,Aleksandr Lyapin +1524417,Ghislaine Valence +71766,Peter Bart +1125201,Haian Koutaine +582512,Anna Chipovskaya +589147,Crystal Atkins +137373,Lúcio Mauro Filho +1582713,Sally Elphick +8336,Tanya Allen +1385587,Dimitrij Schaad +118584,Ottaviano Blitch +63469,Paul Hansen Kim +1074867,Reid Carolin +151177,Cyril Troley +104975,Katarina Ewerlöf +20048,Paul Kersey +99521,Oldoz Javidi +88439,Udita Goswami +155426,Deanna Milligan +152855,Anna Nicholas +32458,Gabriel Mann +3081,Des Hamilton +1651873,Jimmy Watkins +1450278,Albert Schaefer +132419,Beppe Fiorello +130802,Paul D. Hunt +1796415,Ian Rosenberg +39165,Enzo Fiermonte +1713204,Faith Christopher +1056284,Jürgen Schadeberg +150242,Lee Min-jung +1583288,Margaret Gomoll +1187308,Denise Brossot +1079952,Jan Kayne +1042648,Matt Whittaker +1439657,Fraz Jamil +73476,Michael Beattie +1311844,Andrei Khvorov +1215007,Joseph Gallison +90001,Amira Moustafa +1283060,Zabiullah Mirzai +1068924,Jim Bradford +1670758,Nate Warren +938994,Pierre-André Boutang +1048580,Kasey Ryne Mazak +56679,Edwin Hodge +1586006,Renato Rotondo +586271,Mia Aegerter +1663989,Alena Pfanz +1343378,Viktoria Sätter +457674,Jen Kirkman +1052328,Thomas Loibl +1128269,Al Hayter +5761,Michael Benthin +222324,Pentti Siimes +36916,Alain Nobis +103961,Edmundo Rivera Álvarez +116433,Grant James +225698,Bill Sweek +1704675,Raphael Dante' Carr Jr. +1608628,Joe Censoplano +120714,Kay Aldridge +84244,Sofie Lassen-Kahlke +1043461,Armando Sáenz +1768009,Nicholas Verdi +559313,Stuart Goetz +1112403,Gin Pun Chou +39721,Ellen Bahl +1053111,Eslanda Robeson +1358965,Fred Galle +669208,Mildred Gover +562612,Viktor Stepanov +101577,Lorraine De Selle +203233,Rebecca Marshall +1033675,Eleanor Seigler +137366,Otto Brandenburg +571564,Brianne Siddall +183384,Alicia Ziegler +1289211,Ajay Ghosh +1166247,Johnny Stewart +102218,Carmen Russo +1057435,Louise de los Reyes +1125591,Enrico Maisto +1396497,Emilio Higuera +1800044,Leah Rossiter +1210342,Martti Pennanen +116571,Jillian Fargey +34408,Stana Katic +109907,Jessica Borden +1538985,Roh Jeong-eui +1321206,Sandy Foster +1559702,Abigail James Witherspoon +149905,Olavi Reimas +1827458,Urbano Palácio +1138119,Dathon Brown +61912,Sam Cotton +206808,Cordelia Reynolds +166688,Jackie Geary +1395940,Jeremy Tsui +963486,Alexander Martschewski +1315036,Daisy Ridley +97226,Eddie Laughton +236960,Katja Küttner +1351055,Ye Soo-Jung +1360864,Mario Michael Rosko +105327,Penny Brown +1791289,Michael T. King +564320,Brad McCray +1234271,Bahni Turpin +1550498,Michael O'Hara +101453,Michael Stearns +184470,C. David Johnson +1130009,Lola Odusoga +1200395,Lee Eun-woo +1228891,Louise Gold +1030923,Hina Abdullah +1227575,Bruce Mackinnon +1359961,Jeff Scarone +588808,Teresa Villaverde +61782,Kevin Copeland +1537627,Gabe Rosado +239020,Isaac Hempstead-Wright +1696221,Jonathan Stanley +1194905,Theodora Tzimou +238460,Nicolas Vaude +238605,Gaby Morlay +1281146,Alessia Alciati +9913,Cec Linder +1178310,Nicky Warner +1274547,Giorgos Gerontidakis-Sempetadelis +117085,Wanda Cannon +944113,Ursula Burton +1835018,Dana Cebulla +1636707,Zuzanna Bernat +1255312,Ryann Shane +1217870,Lydia Look +1590589,Zedric Harris +360980,Sara Louis +110364,Itay Tiran +144400,Muriel Evans +1722104,Laurence Barrette +181387,Kieran Campion +1653582,Billur Kalkavan +129108,Valeria Bilello +53260,Adriane Lenox +1048914,Lucki Winn +928301,Refet Abazi +233503,Carlene Carter +115378,Wyndham Goldie +1548299,Parker Sack +116075,Abbey DiGregorio +16609,Joseph Shiloach +1087602,Carola Palacios +1618984,P.J. Jenkins +1226767,Jack Campbell +1813141,Alfie Hepper +1124100,Craig Bonacorsi +45659,Sophie von Kessel +1151218,Camané +109546,Chris Betts +107106,Kôen Kondô +1385532,Jan Kutrzeba +224209,Maria Pia Casilio +1364492,Elina Hurme +1376399,Suacina Krytenés +583259,Peter Knapp +1055330,Ayberk Pekcan +1452418,Santo Fazio +931928,Andrea Bruschi +305593,Mehran Rajabi +1561602,Jan Řéhák +1584335,Haroldo Costa +1293440,Letícia Isnard +99168,Emily Roeske +1102497,Sandra Carolina +10869,Scott Heindl +132920,Tom Lee +1055369,Dennis Kilbane +1301505,Holden Wong +1176794,Pat Hellberg +117743,Mack Blevins +1438882,Leanne Curran +1161102,Smoke +1281228,Jimmy Luske +1743385,Tim Schafer +1413107,Tibi Covaci +1343612,Cecilia Bertozzi +225016,Allan Bernard +1030313,Kai James +234797,Ingrid Held +38500,Bernard-Pierre Donnadieu +1092609,Sándor Oszter +1526002,Igor Angelov +223014,Mike Horton +1376880,Pippa Bennett-Warner +1180098,Hubert Point-Du Jour +1441059,Silja Eriksen Jensen +130875,Andrea Osvárt +41163,Serena Grandi +1388896,Medea Radzina +1207403,Meletis Georgiadis +1223382,Eleftheria Komi +121033,Sons of the Pioneers +1735560,Phil Ortiz +1184801,Angie Milliken +1060492,Marco Rubio +9809,Jo Ann Pflug +1116386,Florencia Miller +1092945,Kerstin Thielemann +114255,Eleni Kastani +58641,Thomas Curtis +137262,Steve Purcell +1714101,Didier Blin +1082382,Frederick Peters +137006,Frank Allenby +28420,Lavinia Wilson +1358892,Paola Cortini +1160281,Hocine Choutri +1746936,Robert Douglas +1623848,Yelena Shatrova +115076,Carl Milletaire +926,Ola Ray +935001,Tengiz Daushvili +109328,Ruth D'Silva +1487758,Claire Cage +1088058,Dan Merriman +1783088,João Côrtes +52061,Sherry Buchanan +1542578,Glorie Haufman +103180,Valeria D'Obici +564603,Ignazio Spalla +228262,Sabina Akhmedova +1336801,Han Jae-young +1361414,Alannah Olivia +240633,Bill Gates +1432725,Pesi Daruwalla +141037,Maryam Basir +1700950,Nicholas Turner +1240793,Siddhartha Basu +89545,Lisa Ann Beley +1677209,Bruno Espejo +1507606,Julie Luck +97839,Renny Roker +1503837,Janet Hoskins +1326034,Carol Downs +96017,Megan Wolfley +1501945,Martin Paquette +74369,Brittney Wilson +227849,Adil Hussain +1267912,Duda Mamberti +105161,Emilio Gutiérrez Caba +1656701,Sylvia Zuk +93456,Fred Tanner +589885,Theodore McNabney +229958,Ben Hendricks Jr. +1191027,Daniel Hernández +96995,Edana Romney +1859965,Solvejg D'Assunta +1593878,Hieu Nguyen +86655,Ashley Boettcher +1137592,Jack Knight +1736795,Antonio Valdez Jr. +1439699,Sus Wilkins +1059876,Hisato Izaki +1505007,Steve Jasgur +1518295,Michael Rosenberg +1678686,Beth Hartmen +1504184,Violette Wautier +224194,Laura Carmichael +150167,William Hauber +36941,Kurt Meisel +47901,Emma Samms +938899,Jean-Marie Rivière +1421229,Alex Henderson +71892,Vivian Morrison Norman +110930,Skyler Samuels +37650,Jean-Claude Bolle-Reddat +1511807,Sofia Wells +1764140,John Sliskovich +119823,Kirill Poluhin +1784668,Phillip Daniel +227806,Ben Ng +1609496,Grace Chen Shu-Fang +1112457,Bella Perryman +1458394,Jorge Booth +74637,Russell Hunter +45972,Mišel Matičević +1636803,Michael Vehar +1147825,Tadhg McMahon +1465797,Duncan Mansfield +185019,Kirsten Lindholm +1074516,Pilar Clemens +1418981,Kostas Filippoglou +1214603,Jason Fricchione +1168786,Gerlinde Kaltenbrunner +1599279,Adam McGrady +588796,Evelyna Steimarová +1605811,Stéphane Gatinet +1084758,James Preston Rogers +1504601,Angie Larocque +76453,Adam Gierasch +1752448,Giulia Maulucci +131731,Stephen Tung Wai +1889636,John Howard +1191314,Eric Neil Gutierrez +933190,Marina Shimanskaya +71023,Norman Spencer +1016071,Déborah Révy +112066,Leonardo Medeiros +1696241,Ahman Green +1038143,Maurice Downs +1315171,Sammy Gardiner +930762,Patrick Gardiner +1128322,Amanda Barker +1147894,Beverley Martin +79929,Pauline Moran +22306,Kad Merad +84021,Paul Gross +103257,Christian Anderson +1552301,Kim Caramele +165176,Diane Sayer +1423441,Quincy Brown +233996,Chiqui Fernández +1050082,Vladimir Đorđević +108862,Sonja Saarinen +1880571,Andrea Perroni +1041316,Hans Bachmann +1863668,Zurin Villanueva +975126,Frank Ball +1227509,Karen Drury +1327770,Sarah Alafandari +1422400,Tom Macdonald +1471573,Axel Bry +1585624,Leanne Melissa Bishop +1201529,Trinity Fatu +1843236,Linda Cieslik +994439,Valentina Berezutskaya +44243,Maurice Godin +582327,Walanlak Kumsuwan +1139873,Sanjay Sharma +1296812,Olavi Angervo +141551,Richard Lumsden +124839,Matthew Montgomery +1307013,Barry Ward +1547513,Raymond T. Williams +211907,Daren A. Herbert +1122730,Max Kidd +570522,Mark Lee +1044559,Zhang Shan +1447886,Peri Greig +1146261,Mary Metaxa +1296115,Jennifer Ikeda +1071199,Kally Berard +574835,Jean-Michel Anctil +157404,Kip Gilman +1207227,James Patrick Pitt +141033,Samantha Siong Facchi +91567,Camilla Larsson +1197119,Sarah Grey +1467504,Bonnie Cross +1073192,Angela Carnon +98586,David Williams +1783661,Tony Messenger +1457283,Joe T. Blankenship +1248850,Bianca Balti +1044838,Ashan Dias +1304175,Christopher Kane +140833,Dack Rambo +1634620,Michael 'Red Bone' Alcott +239455,Noriko Shigeyama +140015,Armando Capo +32798,Elisabeth Moss +935766,Fernando Valverde +583336,Pia Micaela Barucki +1690060,Oscar Flores +1559689,Jeremy Ray Taylor +1054484,Lauri Fraser +27667,Salah Benmoussa +220088,Tig Notaro +85989,Tommy Cook +572237,Steven de Almeida +1247768,Ai Horanai +555514,Santi Sans +34869,Rosa Reuten +550739,Lidiya Milyuzina +1191627,Bodo Bach +175561,Hamish McEwan +141683,Luiz Inácio Lula da Silva +1625134,Jean-Claude Meilland +1098645,Ayatollah Ali Khamenei +581148,Tsutomu Shimomoto +1255742,Ezgi Mola +246939,Carol Grace +1330572,Geoff Parish +1199614,Mostafa El Houari +1208005,William Danforth +1336920,Erik Skjeggedal +1776536,Annie Albers +99528,Didi Perego +1533263,Micheal Goudd +1587739,Pak Sha-Lik +1698797,Idrissa Sisco +1266235,Robby Armstrong +1421391,Miroslav Šírek +1017303,Dorothy Kirsten +144344,Emily Cox +1471366,Adele Labanset +1336128,Supergood Subramani +1220983,Keith Pyott +7155,Anna Blomeier +144418,Tae Kimura +1093757,Grischa Huber +939079,Mike Hoffman +1335208,Kenzo Lee +1524215,Summer H. Howell +141677,Hugo Chávez +569369,Blondin Miguel +1658594,Usha S Karunagappally +1630505,Helena Dvoráková +1552954,Jeremy Mascia +1327590,Seckin Orhan +1797630,Jay Pirouznia +1840013,Gianna Sammarco +1238835,Phillip Crosby +1490179,Bobby Kottarakkara +116113,William Hall +554590,Sabine Bail +42820,Shashawnee Hall +935284,Kai Parham +1293067,Alejandra Figueroa +1333735,Herman Chavez +198523,Ida Carnevali +136385,Fumiko Saito +132889,Greg Friel +1153027,Sarah Brandner +1049795,Camille Balsamo +1119435,Anne Oppenhagen Pagh +935283,Mobolaji Komolafe +111826,Don Sullivan +1442867,Colm Ó'Snodaigh +55392,Martha Higareda +1126387,Amedeo Trilli +930138,Christiano Cochrane +1532399,Lee Jae-Joon +1454942,Géza Röhrig +129304,Michela Andreozzi +1845735,Guillermina Pardo +1158285,Jurij Ferrini +1364785,C. G. Wenzel +1418996,Geroges Edouard Nouel +148021,Frank Hayes +218442,Joan Davis +378552,Cristiana Réali +227230,Dante Wildern +1627037,Kru +1447280,Carolina Bartczak +6985,Jody Halse +1451540,Nate Lang +1327078,Soumya +1165640,Nicole Laurent +118705,Svetozar Cvetković +1819919,Alexander Suvandjiev +1597118,Filippo Roma +27670,Abdellah Lamrani +238590,Irena Orosová +236599,Brittany Hingle +1070188,Clint Glenn Hummel +1503847,Candace Roberge +1337247,Jim Rohn +551798,Jean Le Scouarnec +584044,Anastasiya Zabadaeva +1360307,Guslagie Malanga +102691,Jeannie Millar +1296067,Yavuz Selekman +1334332,Nick Cardiff +81837,Alyy Khan +1125197,Salah Eddine Benmoussa +930025,Cedric Thompson +117469,Yuichiro Miura +72208,Alicia Keys +1196734,John Healy +129765,Jonathan Cohen +14246,Robert Hossein +563727,Claude Semal +147640,Gundi Anna Schick +110785,Hannu Väyrynen +1133600,Emily Somers +51055,Friedrich Domin +1769859,Helena Mehalis +1890513,Sammy Hayman +186358,Gene Darcy +468565,Anthony Falcon +94320,Jimmy Baird +76673,William L. Johnson +1704667,Jaylon Gordon +151537,Paul Lukather +1459405,Willem Huyzers +1591377,Park Hyung-seok +580191,Jo Warfield +108034,Melanie Abramoff +234983,Gulliver McGrath +54401,Konrad Von Bork +16628,Martin Compston +1375340,Alys Crocker +208659,Madison McKinley +60952,Molly Sims +1894774,Nagee Clay +1409556,Beatrice Mancini +1713946,Rhio H. Blair +142018,Alex Abbad +122888,Ashley Williams +1517535,Guy Nardulli +1560969,Myles Williams +1650248,Viktoria Kay +1024335,Ryûzaburô Nakamura +814434,Erika Flores +1759670,Isabel Wagner +75170,Gary Sweet +1194928,Nikos Diamandis +224079,Dmitriy Dyuzhev +24313,Frank Griffin +151093,Koji Okura +1316483,Alley Scott +118726,Miao Pu +101886,Ralf Harolde +1097230,Jonatan Bökman +1573607,Jason Rouse +1333940,Tom Ardavany +1868457,Kasia Gabinska +1746959,Kenneth Martin +1207269,Brandon Jelkes +1374432,Marthe Bernard +38708,Chad Broskey +1189523,Regīna Razuma +113510,Carol Thurston +90496,Masako Nozawa +583628,Sophie Charlotte +46021,Ill-Young Kim +101281,Darrel Guilbeau +9718,Taiten Kusunoki +43386,Axel Wedekind +1485182,Donna Jarrett +1335454,Audrey Giacomini +1515337,Ian Lerch +1379277,Alex Lawther +579153,Grethe Sønck +271868,Vladimir Gerasimov +1100321,Bob L. Harris +85694,Vineet Sharma +1362174,Ethan Dunn +1475659,David Lautman +14596,Danny Denzongpa +1420626,Joseph Chanet +1456185,Don Luce +1016083,Bruno Boschetti +223880,Silvia De Santis +226187,Wiggo Lebsanft +592230,Toma Cuzin +1214934,Louise Sorel +88522,Charles Lucia +1168941,Guido Gorgatti +52666,Valerie Koch +74679,Kristine Cofsky +1686693,José Manuel Trujillo Salas +1330110,Joe Condren +1223023,Meade Roberts +1126405,Brad Carter +102856,George Spiridakis +125835,Judith Baribeau +23048,Horst Jonischkan +130752,María Alché +568390,Robbie Jarvis +1054884,Eucir de Souza +1418973,Maiken Schmidt +126722,Zan Calabretta +90226,Ingrid Backstrom +1445134,John Galindo +1204692,Shade Blanch +1503836,Keenan Henson +1046562,Tahitia Hicks +76850,Simone Kessell +1115731,Wynn Reichert +85017,Vittoria Scognamiglio +147324,Jyothika +1825968,Sergius Buckmeier +1211371,José Guillermo Cortines +948927,Constance Cavendish +1486604,Fulu Moguvhani +53000,Angela Luce +16874,Pepo Oliva +1853885,Lewis Lawson +1218218,Thomas Sadoski +1046948,Karin Boyd +1636771,Steve Mayberry +97781,Reynaldo Rey +105212,Pepe Ruiz +25341,Sophie Hardy +1654872,Kelly Tippens +37233,Kareena Kapoor +1334712,Mike Minogue +102896,Lorielle New +106086,José Luis Jiménez +1871532,Tilen Lapajne +1359902,Lau Nga-Lai +47238,Dorkas Kiefer +1137067,Rupert Osborne +6327,André Sjöberg +459004,Slaven Knezović +1611026,Jasmine Maierhofer +1293917,Sylvie Pouliot +1114548,Hanna Steina Hjálmtýsdóttir +158575,Tom McBeath +29944,Nicole Lewis +1466297,Varis Pinkis +1073691,Bin Furuya +1648980,Torkel Dommersnes Soldal +1867,Auguste Lumière +1600866,Tatsuya Nagatomo +1546415,Khatra Ould Abder Kader +65779,Doug Jung +1648971,Elg Elgesem +1268226,Ruth Hart +97147,Richard Hervey +20099,Tommy Rettig +110498,Cedric Smith +543275,Bridget Walters +1466779,Clyde Courtright +6240,Mariska Hargitay +1269392,Ari Vakkilainen +1213839,Daniela Nardini +53620,Milind Soman +101976,Betty Anne Rees +1067459,Nathan Parsons +1567008,Robin Svartström +17631,Hélène Testud +91539,Scarlett Sabet +1782614,Weldon 'Red' Johnson +1329041,Brian Herring +1424208,Joanna Mauer +26952,Maria Singer +100097,John Carson +584709,Kanaka +5554,Oscar Ortega Sánchez +1021831,Marise Maia +1440451,Donny Ng +1569718,Morgan Eastwood +141958,Scott Poythress +1014983,Yelizaveta Stishova +38130,Velimir „Bata“ Živojinović +1294526,Jo Dal-hwan +211213,Kuno Bakker +1665247,Ebele Okaro-Onyiuke +93218,Jolie Vanier +6260,Karl Fochler +932336,Andy Weiss +1376330,Damon Runyan +56530,Andrzej Mastalerz +9466,Matt McColm +1476773,Maria Guggenheim +1547787,Zinnini Elkington +1672076,Lauren Blumenthal +158396,Ken Tremblett +1468402,Hank Hankison +1636751,Lesław Żurek +105341,Paolo Paoloni +66980,Cansel Elçin +1374212,Ondasyn Besikbasow +1332746,Brian Sacca +1253195,Bobby Lockwood +90474,Jeff Carlson +1422302,John Bohn +49946,Jean-Philippe Écoffey +1472079,Mehdi Djaadi +1154456,Audrey Heaven +113930,Sandy Robson +935361,Christelle Prot +1748447,Anton Kuznetsov +1811221,Jason Sandler +1034004,Allen Pomeroy +37644,Fanny Cottençon +147220,Giorgos Konstadinou +117760,Lynn Hung +143634,Marina Golub +1649856,Katie Drinkwater +96521,Vladimir Fyodorov +149958,Nagarjuna Akkineni +21724,Alex Carter +1524133,Daniel Morial +986634,Mario Cassem +1578231,Erica Ibsen +88548,Brenda Cooney +101118,Emilia Wolkowicz +1153738,Thomas Hardy +1130006,Andrei Alen +1309623,Massimiliano Carradori +1352311,Timo Flloko +114882,Barbara Edwards +143692,Evgeniya Dobrovolskaya +118510,Frédéric Epaud +223801,Anna Korotayeva +1564294,Monika Babula +1793178,Angela Hearts-Glass +1883542,Sajad Jabery +1089161,Olivier Straub +586544,Zoe Dunsworth +1526517,Ramdas Padhye +1085816,Lexi Giovagnoli +1664572,Alfred Poirier +1662554,Brendan Titley +1201033,Sôji Ubukata +99880,James Dixon +39660,Tamer Hassan +583908,André Dietz +115652,Hana Kino +1081479,Aidos Sagatov +1496393,Beanie Feldstein +1560253,Charles DelGatto +1819146,Cole Hurst +1123126,Gabriel Kashin +1162698,Răzvan Oprea +19234,Eva-Maria Hagen +1188778,Mingus Johnston +1676776,Victor Colicchio +999822,Tyler Maynard +559190,Thiago Dottori +1812563,Alan Silverman +487490,Kristijan Ugrina +80596,Colleen Crabtree +67969,Edith Peters +1432087,Sarah Boey +64500,Sasha Hou +1233909,Chris Wylde +104914,Kavan Reece +1376312,Catherine Roman +1065417,Den Obinata +56572,Maria Köstlinger +23644,Günther Grabbert +1478685,Inigo +1214797,Harriet Thorpe +101297,Bill Milling +118427,James Kenney +1854443,Serena Bukasa +126724,Eddie Della Siepe +1342305,Hiroshi Akitsu +1886304,Pamela DeAbreu +1269278,Cheska Iñigo +1012162,Leonor Maia +1278122,Jenny Bede +86682,Nonna Mordyukova +132420,Roberta Mancino +140029,Jack Wild +1089978,Mike McEwen +588334,Tim Hade +1366022,Józef Pawłowski +1724683,Erwin Bruhn +1760117,Greg Wayne +85828,Peter Stark +582286,María Guðmundsdóttir +119515,Nazzareno Natale +130912,Uschi Obermaier +19825,Jacob Torres +56294,Vera Venczel +1886313,Joel Sheldon +4462,Therese Glahn +1419363,Paula Vesala +1326795,Haley Louise Jones +1212967,Carlos Romero +66623,Hayley Marie Norman +1138748,Michael A. LoCicero +1204702,Omar Mualimmak +1484591,Paddy Edwards +65838,Jeremy Sumpter +69604,Melba Moore +12901,Erik von Detten +44374,Corinna Kirchhoff +1088663,Fatma Ceylan +1660174,Ngoingoi Pēwhairangi +1266460,Palle Gram +1622143,Elena Greenlee +1419474,Kim Hee-kap +83487,Tse Miu +1535066,Adam Roper +1135194,Kim Yip +582912,Matt Lindahl +123402,Dennis Kohler +1794930,James Espinoza +1427009,Masha Silberberg +224504,Olivier Guéritée +211484,Natalie Alyn Lind +1520909,Brigid Grauman +166251,James Cole +1869045,Curtis Gammage +1166717,Asuman Arsan +239192,Luan Jaha +19536,Josh Duhamel +71300,Steve Wang +205267,Jareb Dauplaise +235422,Tatyana Vasileva +53087,William Allen Young +1201386,Matt Hamilton +1767209,Andrew Farmer +103939,Claudia McNeil +82454,Quinten Schram +1186724,Jacob York +1604991,Tracy B. Mann +1841550,Megan Ellersick +88995,Adrianne Palicki +1393839,Narayana Angulo +980520,E.V.H. Emmett +1890515,Camila Vergara +141624,Antonia Zegers +1672082,Steven Edmonds +90677,Angèle Coutu +1271006,Fred Guisso +1658147,Sawyer Bell +1412943,Vaughn Lucas +86543,David Attenborough +1262796,Mela Esposito +1795347,Michele Rifkin +1644525,Yves Girard +1720645,Lucas Lind +39854,Peter Carsten +1398063,Mackenzie Green +120641,Molly Malone +938259,Kim San-Ho +1764133,Chris Ramirez +1202899,Stanton +1335772,Do Kwang-Won +1000152,Newton Blick +572290,Aukje Jetten +1723658,Stefan Rollins +127852,Arkadiusz Jakubik +929133,Staci Lawrence +1322312,Jorge Leon Martinez +1862902,Mike Casper +107927,Marina Gatell +1537753,Suzanne Sumner Ferry +553352,Jappe Claes +557281,Aleksandra Kulikova +128461,Eva Riccobono +157095,Jenna Leigh Green +1490112,Evan Brinkman +1294693,Ashley Drayton +1326518,Chihiro Shibata +1081136,Chanel Ryan +1001693,Kristof Gerega +1400270,Christina Alex +1381670,Jennifer Allison Chavez +1063009,Marco Lorenzini +1183607,Sean Muramatsu +1104740,Luis La Torre +145119,Lise Lamétrie +207012,David Matranga +1790536,Marcelle Bichette +54280,Catherine Hosmalin +34819,Mauritz Hugo +1230621,Jonathan Newth +572450,Marisol Ribeiro +1186520,Nicole Dickson +1530559,Jang Hyuk-Jin +489,Kathleen Kennedy +1845881,Victor Assié +90473,Suk-Won Chang +301285,Andrea Cleven +1427314,Ben Kientz +171584,Stan Carp +1428070,Isabela Moner +62230,Shobu Kapoor +1477357,Ferdinand Lunde +1397413,Muhammad Zimbaoglu +148514,Ruth Selwyn +1655849,Gregg Micheals +1789277,Armando Pizzuti +1321099,Dawntavia Bullard +24923,Ginés García Millán +559809,Dace Eversa +1094210,Jing Boran +967200,Chris Papavasiliou +165293,Nicole Forester +964251,Nic Rhind +91275,Georg Schuchter +2832,Maja Komorowska +540965,Bryan O'Dell +1263324,Lisa Neeld +190355,Warren Ellis +134698,Haydn Gwynne +549035,Aleksandr Mitta +231983,Beau Ballinger +1320456,Christina Montt +1253190,Bettina Kenney +97335,Lyubov Tolkalina +107461,Ted Le Plat +1033001,Sofia Lombardo +557414,Herson Capri +1678283,Brock Russell +1818028,Daurice Cummings +64773,Omar Núñez +100259,Esperanza Pedreño +1886309,Shay Gutteridge +586542,David Brunt +145580,Hans Croiset +99289,Yekaterina Vasilyeva +1102131,Bob Thomas +1622077,Sonia Spyve +1651995,Colin Lawless +1084974,Jonas Valanciunas +1869034,Juliet Kim +118127,Pedro Sempson +234645,Toshirō Yanagiba +73864,Antonio Albanese +1448276,José Ignacio Álvarez +1339676,Nikolay Zasukhin +1574187,Fernande Albeny +1678625,Spencer Atkinson +1418247,Madison Crocker +140605,Norma Lazareno +971606,Jorge Suquet +1665083,Andy Rush +1481833,Doğa Zeynep Doğuşlu +46028,Mignon Remé +101063,Tyler Kain +565510,Yelizaveta Lotova +109868,Morgan Saylor +1364786,Beata Harju +1151737,Jürgen Mai +89624,Adel Bencherif +221611,Jonathan Groff +114465,Kathleen Aerts +1501943,Yves Corbeil +231278,Mohamed Fellag +1794803,Al Lampkin +1769062,Tony Quinn +240145,Han Hyo-joo +108699,Scott Anthony Leet +1698008,Karli Hall +1792249,Carson Reaume +1405554,Jennifer Moylan-Taylor +1123121,Jinde Khan +1369184,Yoshihisa Amano +624,Yoshiko Sakakibara +119993,Teo Teocoli +1475081,Jenn MacLean-Angus +575461,Emre Karayel +584702,Fathima Babu +47061,Jörn Donner +630988,Leela Mishra +1888075,Lucrezia Marricchi +1089519,Sally Reeve +1329537,Sophie Curtis +1418738,Kimchoi Yong-Joon +1196986,Maggie Steed +157633,Pete Schrum +1878970,Cristian Vitali +1616032,Pablo-Noé Etienne +1664629,Somboonsuk Niyomsiri +275862,Jeremy Licht +77195,Yves Verhoeven +1503850,Damien Coates +1012321,Lina Romay +145755,Mylène Farmer +20921,Monte Hellman +109283,Juan Rodríguez +30083,Lindsay Duncan +25048,Yves Afonso +1695659,Deji Olatunji +1706137,Jewel Donohue +211768,Amanda Payton +1215072,Clea Lewis +1178299,Dave Kiner +86078,Antara Mali +1014909,Aitor Mazo +1678280,Nathan Eswine +1395247,Angelina Lo Yuen-Yen +1076773,Pierre Knoesen +1644736,Erik McKay +1278135,Stacey Franklin +1341527,Dennis Dimick +1083447,Pierrette Debrèges +61860,Marianne Stanicheva +1377949,Florencio Calpe +94976,Christopher Showerman +101436,Konstantin Kryukov +1297399,Ron Bush +1418968,Kaspar Velberg +183765,Brandon Jones +1839569,Veikko Kaseva +586546,Alexander Rosborough +145095,Sun Hai-Ying +588202,Christine Grado +1488355,Akio Murata +1344362,Isaiah Jackson +1190712,Yelena Koreneva +1788905,Saurav Das +1878411,Yuliya Paranova +1600616,Rebecca Benson +60673,Steve Levy +1379720,David Joseph Craig +1083441,Manuel Raaby +1340669,Paul Briggs +1179385,Harold Innocent +46454,Dary Some +1155933,Jacek Fedorowicz +102616,Halldór Gylfason +1669773,Michael Crane +117061,Ema Fujisawa +1769803,Jabari Simba +1502916,Olivia Rose Keegan +1505875,Nick Armstrong +1267831,Nicolas Bouchaud +246688,David Summer +118587,Gianpiero Cognoli +128040,Dylan Kuo +56200,Patti Smith +1605808,Cyril Champon +188947,Jenn Griffin +1083442,Gerard Mock +1335499,Nigel DeFriez +1191990,Mateo Chiarino +1466041,Maria Amélia Fragoso +1169119,Anil Rastogi +237628,Mansoor Ali Khan +153263,Gail Bonney +18583,Dyke Johnson +1790108,Klayton Stainer +1885267,Jusin Kitamura +172871,Colin Corrigan +586538,Sasha Snow +135757,Michael Asmussen +1614747,Aleksander Novikov (III) +1102423,Paul Philip Clark +1040850,Grégory Fitoussi +1669484,Simon Johns +587677,Kim Joo-ryoung +939085,Anne Wright +88319,Marc Krah +1270301,Erik Melbye Brekke +1773040,Billy Price +255920,David Cardy +106668,Mark Tanous +1102421,Jade Xu +1828987,Rayna Vallandingham +1489860,Shayle Gardner +1323233,Shankar Chakraborty +1727514,Yury Eller +6523,Juan José Ballesta +100197,Jools Holland +1192759,Lucy Fry +1270026,Zan Fujita +110543,Darren Olsen +40951,Angela Douglas +1034702,Daniel Portman +1586009,Salvatore Emilio +1522263,Shintaro Taketani +88307,Fernando Arroyo +1507143,Ron Ross +227359,Dario Cassini +559975,Olga Sutulova +1291746,Ahmet Rifat Sungar +1782618,Tess Hunt +1111298,Edith Van Cleve +1098639,Mehdi Mohseni +1037311,Laurien Poelemans +1392385,Chad Kurtz +1389088,Michelle Clarke +123879,Matthew Nable +27593,Michaela Mann +107897,Marek Marcinkowski +1215629,Hattie Hayridge +1123031,Budd Knapp +1834905,Frank Warner +1869478,Archie Williams +1114512,Mihaela Rădulescu +1001777,Murat Kiliç +1268846,Daniel Padilla +234644,Josele Román +1499900,J. Robert Maze +1891555,Johnny Claus +1849119,Brando Monne +1082351,Meg Rains +1641617,Jostein Sagnes +1332382,Everett Bradley +1082700,Kosuke Mukai +1348208,Diletta D'Andrea +133022,Vera Zima +1632533,Jérôme Pauwels +1123785,Yannick Choirat +1734965,Max Cleary +70234,Sonia Bergamasco +1383558,Frederick Clarke +1169522,Jerry L. Buxbaum +1074080,Glenn Speers +1488886,Ian Jepson +121239,Jack Kirk +1630348,Benjamin Sedillo +1677547,Marta Timofeeva +215023,Zach Cohen +1745086,Jim Keisler +1079137,Anton Blake +1449416,Rogvold Sukhoverko +1676186,Paul Hayes +1542698,Chaunty Spillane +552012,Toshio Shimamura +933546,Ashley Bissing +21010,Alexandra Hay +128159,William Collier Jr. +22634,Horst Pinnow +160890,Herb Jeffries +553280,Roberto Hernández +156274,Kevin Fry +168265,Harley Venton +49062,Konstantin Graudus +236195,Elena Kong +105646,Linda Park +1205991,Joe Quattromani +1117814,Juliusz Chrząstowski +94654,James Mathers +14147,Clelia Matania +1416396,Leigh Gill +1891512,John Bronson +1661733,Nasser Abdullah +1590309,Marisa Davila +132190,Totò +130868,Paolo Cevoli +1096497,Rick McKnight +1425665,Lauren Kinsella +1886629,M. Rasuli +167110,Annie Kitral +1664058,Mohamed Fathi El Nagar +96019,Marie Blanchard +1658139,Chân Samedy +137823,Kristjan Kasearu +89664,Fiona Hutchison +151694,Ronald Long +29196,Igor Ilyinsky +123857,Kei Yamamoto +1024133,Juliana Alves +932217,Janina Fautz +1137377,Adam Pålsson +1447879,Rick Mele +105342,Pascal Persiano +1320768,Anton Falk +131645,Kim Schraner +1441407,Thomas Erikson +1903919,Shamsuddin +1361841,Barry Ford +102695,Meg Cionni +1308740,Paloma Olympia Louvat +105747,Kate Jackson +66753,Franco Giacobini +1126203,Dipa Shah +100415,Nieves Navarro +88673,Richard Hageman +1748057,Sidney Grigg +74617,Brooke Lyons +1157804,Édith Cochrane +1436885,Barbara Kurdej-Szatan +1418766,Giselle Batista +135524,Kenjirou Tsuda +233264,Jenna Romanin +224208,Tina Pica +143437,Barry Cooper +109829,Nick Rosen +1697252,Emiko Iwasaki +209151,Ryan Blakely +1195898,Ron Richards +1576251,Terry Dale Parks +1281967,Josh McConville +1389916,Nathaly Thibault +1336934,Kai Kolstad Rødseth +1318260,Yvonne Gradelet +56496,Mungo McKay +147173,Francesco Foti +135697,Gloria Tapia +1089466,Nicolas Wackerbarth +18465,Mary Crosby +140851,Sharon Smith +126237,Cornell Turner +1728454,Regina Taufen +566168,Ryûsei Saitô +131766,Jean-Christian Fraiscinet +130307,Louise Cardoso +74472,Drew Fuller +1214961,Tom Luginbill +1750929,Kevin Pedersen +146326,Thomas Cammaert +169741,Jaren Brandt Bartlett +105184,Billy Frank +157987,Frank Annese +67205,Terence Maynard +1439849,Roman Vogdt +1811120,Hana Jane +1559691,Derryl Rivers +1499012,Cheryl Wilson +226960,Megan Marie Wilson +107928,Adria Allue +128550,Desmond Tutu +1391938,Vladimir Vinokur +184736,Nora Heflin +54698,Marcella Lentz-Pope +1317159,Natalie Burn +1687766,Tagir Rakhimov +1185129,Hideo Takamatsu +1134160,Johan Hegg +1455769,Julee Cerda +1419615,Strelsa Brown +87727,Tomas Köhler +1523704,Pope Francis +1419854,Lee Si-Won +1064511,Renee de Graaff +1462628,Gregory Stroud +1598931,Billy Marti +176776,Betsy Beutler +85690,Vesna Trivalić +79496,Douglas Rowe +138392,Diana Adams +1314451,Cinzia Bruno +1868694,Mark 'Woody' Keppel +53234,Dorian DeMichele +1163182,Hui Pik-Kei +107701,Ingar Helge Gimle +30801,Nils Düwell +1670765,Cesar Miramontes +213528,Carl-Axel Elfving +1036282,Vera Fogwill +229571,Massimiliano Bruno +219215,KRS-One +1718135,Justin Rupple +1699949,Duilio Raggetti +589234,Joanna Orleańska +224183,Ben Rappaport +58989,Maksim Munzuk +1053878,Lidija Stevanović +545609,Arnis Licitis +1646456,Tammie Sutherland +50928,Germán de Silva +1385140,Vincenzo De Michele +1354321,Sutatta Udomsilp +98527,Harold Ayer +62915,Kyle Cassie +557717,Kiko Cerone +126443,Claudio Cotugno +1379939,Lorie Pester +1209239,Miles McDonald +112988,Tian-lin Wang +173212,Tohoru Masamune +1291351,Mario Revolori +12329,Vittorio De Sica +1332916,Robert MacMillan +96311,Ivan Zhidkov +1224384,Theo Stockman +168961,Tequan Richmond +76746,William J. Caparella +1451616,Romeo Santos +1240486,Abby Elliott +16264,Lee Eol +104452,Mikel Angel +1285848,Augustine Frizzell +203421,Anthony Bishop +1095266,Ketty Lester +1515929,Birgit Van Mol +1718148,Brittany Brousseau +1620961,Lijomol Jose +75066,Tom Brooke +1155089,Luis Fernández +24198,Anne Dudek +550778,John Fernside +73550,Henrik Mestad +1349732,Suzanne Downes +96597,Arthur Grosser +1264638,Katie Uhlmann +1588451,Hedi Bouchenafa +1615103,Lee Soo-ah +88045,Arron Fuller +1514109,George Couyas +34021,Raúl Arévalo +1782026,Robert Cawsey +1263405,Joachim Zons +111060,Tara Manić +230759,Ahmet Mümtaz Taylan +1869060,Eddie Rattanasouk +6000,Tarja-Tuulikki Tarsala +35425,Roeland Wiesnekker +1378680,Craig Fraser +236810,Asel Sagatova +115791,Maya Okamoto +1229461,Holly Harris +26887,Francis Huster +1267374,Rachelle Neal +111482,Chantavit Dhanasevi +1231158,Simon Lowe +1320015,Taris Tyler +1849109,Vanessa Dreidi +211223,Ottolien Boeschoten +927756,Oh Yun-Hong +1842183,Justin Cooney +1310222,Walter Law +1559482,Ed Creutz +1300301,Agnes Lauchlan +1724693,Hilli Hotan +931542,Fabio Bussotti +1549048,Ursula Prats +23621,Hannah Taylor-Gordon +1187553,Carlos Gonzalez-Vio +160823,Kathleen O'Rourke +1898507,Marc Philipps +543785,Clifford Garbutt +1683148,Martin Kabanza +1127088,George Piltz +539795,Jody Lawrance +939116,Ye Lu +1658595,Adhvaitha +1599239,Tam Williams +1682647,Benjamin Egner +277105,Danielle Rayne +144614,Enrico Palombini +1381289,Zhang Zhi-Zhi +1460711,Allison King +77120,Steve Austin +81662,Richard Steven Horvitz +1311045,Jason Selvig +1789281,Franco Pinelli +1674639,Spike White +1762399,Mirjami Manninen +1016125,Sunwoo Yong-nyeo +238130,Yuri Kolokolnikov +992164,Francesca Melucci +1161312,Herbert Ellis +1168145,Ryan O'Callaghan +114588,Ryan Michelle Bathe +229093,Birgit Schuurman +103522,Lola Herrera +563458,Shih Ting-Ken +1764137,Anthony Ardisone +94782,Harold Warrender +930476,Cecil Thiré +1196852,Wayne Chema +114688,Marco Rima +932056,Eduard Farelo +1647315,Windy Marshall +992427,Pierce Gagnon +935971,Ellen Kessler +1739418,Rance Martin +1014916,Eddie Ritchard +122844,Jansen Panettiere +544889,Sudha +1082353,Sarah Duncan +34018,Quim Gutiérrez +287270,Ganesh Yadav +88158,Peter Bolhuis +79012,Luis Caldeira +1639308,Axel Mansella +147049,Kemal Kuruçay +587752,Narain +225007,Yasser Talib +126422,Callard Harris +1114542,Einar Sigurðsson +24606,Stefano Satta Flores +1844325,Mike Bishop +1651053,Lauren Emily Vaughan +1333916,Derek Anthony +165214,Raymond Ma +1650205,Jevin Crochrell +55797,Carlos de Carvalho +1784633,Marland Burke +1622096,Nicole Davis +67900,Claudio Undari +1420346,Edgar Sherrod +1406156,Anton Weber +141196,Chuck Patterson +1196810,Ivor Salter +1330208,Jim Kester +178635,David MacCreedy +1357412,Sylvain Katan +207031,Ewart James Walters +1563196,Thierry Der'ven +1044954,Sam Medina +1134885,Omar Chaparro +222370,Ulrike Arndt +1448194,Andrew Herr +549319,Lucas Pittaway +90725,Alain Chanoine +1437321,Cosmin Padureanu +1072142,Alex Arleo +80406,Kevin Smith +1285116,Andoni Agirregomezkorta +113972,James Marriot +78906,Bryce Hitchcock +1489159,Saroch Ruampaothai +1205629,Philip Hill-Pearson +1461217,Lorelei Hill Butters +1277215,Giorgio Metrailler +2566,Charles Vanel +108213,Isabella Hofmann +115444,David Atkinson +1599252,Erick Hayden +928013,Pär Brundin +1086016,Carol Goodner +1400596,Lola Pierson +1849063,Gerardo Scala +987012,Margaret Armstrong +1776033,Hannah Tasker-Poland +1285658,Ryôta Matsushima +107811,Ingrid Torrance +1172554,Louise Kamsteeg +212559,Buster Fiddess +1518294,Florence Weiss +1561705,Madge Levinson +36890,Werner Pochath +570544,Mary Travers +1281505,Monika M. +567732,Jason Topolski +1390548,Terence Johnson +1512542,Frances Reagan James +1564299,Barbara Wronska +75310,Brian Clark +1902088,Nela Bartsch +151809,Freddie Annobil-Dodoo +1378007,J.H. Gilmour +1271400,Edoardo Maria Falcone +583707,Berta Socuellamos +1162330,Elissa Kapneck +1505023,Théodore Pellerin +1089523,Laura Phillips +1685795,Tuncer Sevi +1270136,Eagle Han Ying +1654411,Dane Hanson +1525819,Claudio Morganti +1463206,Jody Quigley +61788,Christian Clark +1615889,Elanne Kong +1743118,Molly Fisher +983578,Jasper Redd +76029,Courtenay Taylor +120054,Raymond Roe +43942,Carol Abney +230621,Tracey Lee Maxwell +86085,Mahie Gill +1361562,Damian Dyke +1039354,Katsuya +1850947,Lee Kyung-mi +562652,Mort Burke +1684837,Francois Cote +133400,Cecelia Antoinette +1683149,Madina Nalwanga +96478,Mariela Vitale +1216510,Stephanie Hodge +1818038,Marcus Morales +179973,Mark Nutter +572239,Jocelyne Desverchère +582740,Aaron Jaeger +582602,Alper Saldıran +583697,Gordon Hart +54388,Mag-Avril +1213299,Cynthia Preston +1459814,Tjaka Erasmus +1142407,Lilly Mantovani +76328,Anders Jansson +1457264,Kevan Kase +1069644,Julie Ann Doan +110767,Tuija Vuolle +1621150,Electa Rawls +1656873,Chano Pemberger +1458290,Alma Sisneros +567787,Yuliya Vysotskaya +1530415,Shizuko Matsunaga +75352,Ron Palillo +1719971,Lam Kui +544620,Mikhail Yevdokimov +1212964,Melanie Nicholls-King +1251572,Shane Coffey +11321,Heidi Schanz +96307,Ian Kelly +1179889,Victor Destrez +109713,Rita Blanco +83188,Scott Bloom +1466295,Artuss Kaimins +1784672,Maxi Schlereth +30036,Rory Acton Burnell +225928,Boris Terral +1267167,Clara Peller +584668,Charan Raj +65569,Emmanuel Mouret +1152784,Lawrence Arcouette +1098072,Ryan Doucette +1182316,Olivia Faye +231051,Zsolt Huszár +1236264,Liu Tao +1082027,Olga Gromova +1835274,Jake Ingrassia +70210,Kanako Higuchi +136880,Yasuko Matsui +140114,Marie Avgeropoulos +1142987,Tobias Kersloot +100437,Lucia Ramirez +96287,June Clyde +1436390,Sserunya Ernest +43436,Mehdi Nebbou +1772605,Gary Lee Vincent +1441812,Lea Katharina Christensen +1664062,Pascal Blivet +1576782,Olivier Mukuta +1359960,Svetlana Anufrieva +87909,John Buijsman +98735,Pamela Sutch +27652,Paul Angelis +1340889,Alexander Flores +1090825,Pepe Smith +184311,Sunny Doench +1672230,Tuncay Akça +1148989,Jitendra Joshi +1519562,Randy A. Davis +1209676,Lisa Altamirano +130035,Yves Bical +1567169,Tony Meyler +1457290,Justin Hall +1200357,Gideon Rosa +589048,Anatoly Korolkevich +1604148,Ken Tanaka +556470,Emmanuelle Escourrou +1156241,Eliza Harrison-Dine +1334840,Andy Favreau +238333,Eve Torres +1330044,Diarmaid Murtagh +1736010,Олег Сорокин +1261760,Lucas Lagré +7707,Libero De Rienzo +1758075,Roxane Hayward +82135,Michelle Arvizu +1198809,Marian Brock +1123125,Nathalie Sorrell +1053977,Oscar Magrini +86560,Aditya Lakhia +45365,Suzanne Tara +1811523,Wuhib Bayu +1446097,Kathryn Smith-McGlynn +1276014,Dariusz Siastacz +1023516,Michael Allen Ryder +167293,Rae Ritke +1676777,Kelly Driscoll +165080,Linda Lowell +1753144,Santiago Minor Lecay +95136,David Henrie +551676,Ludvík Sváb +1056139,Sérgio Godinho +1167137,John Hopkinson +66982,Burak Sergen +1331988,Michelle Anne Johnson +1440152,Adam Pospíšil +217437,Chris Kerson +77430,Julie Jurištová +1073054,Tsutomu Yukawa +1246733,Tom Alter +1547788,Karel Polišenský +1531598,Latisha Hyman +9607,Grigori Aleksandrov +148383,Rauno Juvonen +139555,Caro Lenssen +1631189,Sean Freeland +1044058,Steven Kramer +147475,Anne-Marie Jabraud +1113945,Elizabeth Stuart +27471,Luis Bermejo +1331098,Adrián Viador +77236,Amrita Arora +1587631,Seo Chong-Ju +1485932,Sergej Merkusjev +1380553,Keith Fleming +1042791,Monti Castiñeiras +1593368,Herbert Centeno +1179482,Tee Fargo +1153676,Tony Raccosta +953333,Caco Monteiro +32190,Robert Kellard +1264238,Annabel Riley +174710,Frank Mills +136648,Arkadiusz Bazak +1110915,Mathilda von Essen +240827,Mamuka Kikaleishvili +1219610,Myra Turley +97630,María Kosty +1037728,Bea Palya +101326,Alessandra Vazzoler +237168,Yûko Nakamura +1484034,Takuya Yuki +1306580,Vinodhini Vaidynathan +230348,Federico Rizzo +1903779,Leonid Krasin +943113,Khadijah Karriem +77240,Gurpreet Ghuggi +1207274,April Marie Thomas +1401533,Aileen Henry +61117,Todd Farmer +1195204,Marjory Hume +1090597,Jörg Marquardt +1108117,Sidharth Malhotra +52080,Eric Champnella +1656906,Amy Block +1125818,Uldis Dumpis +1445127,Miguel Paludi +1512021,Scarlett Estevez +123724,Tim Draxl +1052256,Michael Marcus +20404,Vanessa Lachey +86726,Михаил Пореченков +39887,Dany Saval +54282,Lily-Rose +1630307,Jayson Matthews +557580,Robyn Rikoon +81698,Michael Bunin +1697473,Linda Louise Duan +3409,Lasse Lunderskov +1381473,Kara Michele Wilder +562263,Charles Sindelar +1423073,Xavier Deltell +134258,Akitake Kôno +86040,Chris Ferry +334758,Nyta Dover +1453311,Linda Bouhenni +545626,Dominique Garny +92654,Mariusz Saniternik +1094772,Alex Ozerov +145753,Keren Tishman +104218,Béatrice Harnois +262384,John Herbert +1896746,David McFarlane +1511759,Peter Kalisch +1453118,Scott Arthur +93679,Dennis Neal +1648788,Ok Sokha +1658137,Marie-Lyna des Pallières +51998,Liza Lapira +105280,Eindride Eidsvold +54415,Josh Gad +1221053,Simon Amstell +152283,Milos Kirek +1191425,Gábor Nagy +143716,Axel Daeseleire +1484589,Kevin Bennett ... +1785909,Alice Chen +119499,Laetitia Casta +558670,Mika Ishibashi +1651415,Jake Wyatt +108298,Marjorie Stapp +71655,Felix Wong +1596424,Pablo Kamolz +1696737,Zev Glassenberg +102169,Christina Englehardt +1366985,Michael Klammer +1045391,Chinna +1890101,Natalia Barabovskaya +1140128,Gina Piersanti +51740,Marisa Laurito +14371,Anthony Quayle +1088122,Joan Ellen Delaney +1196961,Dominique Provost-Chalkley +544842,Giovanna Claudia Mongino +1045424,Vladan Dujović +35255,Catherine Rouvel +76514,Justin Mader +121488,Robin Evans +1475236,Gilly Gilchrist +1157293,Ian Groombridge +1583953,Tomasz Krzemieniecki +180691,Janine Theriault +36932,Shirley Corrigan +563103,Barry Allen +1112404,Jun'ichi Haruta +1278555,Antonia Clarke +102371,Margherita Horowitz +1776850,Gage Chandler +87837,Isabelle Drummond +46309,Finja Martens +1384095,Anke Gieseke +187712,Robert Bogue +1695123,Michael Swanson +1561895,Valeriy Bessarab +1064531,Marco Bonini +130518,Glenn Carter +72788,Marco Macor +985251,Robin Altman +1206588,Edith Shayne +1247852,Paula Cohen +1023583,Alex Olson +111639,Tasuku Emoto +28414,Matt Letscher +36211,Pascale Petit +1388484,Andrew Wert +1508566,Christopher Rob Bowen +125358,Lynn Shaw +939137,Nam Ji-hyeon +1522260,Masashi Fujimoto +213044,Anna Wood +1538823,Tamala Shelton +205701,Kristen Bush +1104719,Pompín Iglesias +227391,Mino Reitano +1462969,Diana Sinclair-Hall +133804,Thomas Kovacs +1481192,Pamela Drake Wilson +102305,Rosita Arenas +77007,Pierre Palmade +1357881,Thomas Kapanowski +111542,Jon Sigve Skard +1418841,Valérie Beaulieu +82056,Noriaki Sugiyama +1569710,Antonia Bennett +71015,Tomoyo Oshima +1281101,Sybilla Barbara Hubner +1676850,Heather Gardner +4596,Stuart Lancaster +1210413,Ye Qing +27588,Michael Benyaer +1045282,Margrethe Koytu +1039037,Sugunthan +45216,Tom Richards +78432,Arlen Escarpeta +165659,Virginia Peters +93925,Tommy Hinkley +1015993,Aytekin Akkaya +1744822,Prince Mbasi +1438837,David Partridge +552396,Mars +946788,Roy Brent +1560245,Tamika Sonja Lawrence +142676,Hiroshi Ôkôchi +1223453,Holly Hubbell +144167,Barbara Gruen +9909,Shirley Eaton +1853254,Valentina Karavayeva +1221114,Yuichi Nakamura +1453617,Kyle Bell +1495157,Dolores Valcárcel +1516701,Anna Sainsbury +19911,Anneke Kim Sarnau +96484,Jung Jin-young +1562962,Joe Busch +1657453,Eiko Minami +106769,Dehl Berti +164791,Jim Begg +87951,Alexander Chaplin +1518293,Moyshe Oysher +107522,Emin Toprak +1512202,Kathy Hanner +6,Anthony Daniels +1727208,Hanna Ledesma +1158267,Pia Vieth +89968,Kazuhiko Inoue +1454946,Milana Vayntrub +1151261,Donny McCaslin +119345,Toni Edgar-Bruce +1184883,Bobby Riggs +1272256,Allison Baar +1720438,Tsogbaatar Batzorig +73866,Carla Signoris +1531595,Darren Jones +54274,Serge Hazanavicius +1527585,Geoffrey Jones +1657801,Eva Prakash +1177496,Erkki Pajala +236833,Igor Nefyodov +1537761,Kee Broussard +1039523,Dylan Arnold +554498,Yôko Minamino +1237404,Denise Vasi +387183,Sarah Smyth +76531,Nick Towne +1596427,Regina Paul +1449384,Jasmine Alveran +1783265,Emily Murden +1143201,Harry Barris +139900,Florence Kasumba +1106047,Vladislav Demchenko +1738267,Wallace Bridges +586554,Joseph Mojo Widgery +96728,Takumi Yamazaki +47949,Svetlana Nemolyaeva +1818102,Taison Gelinas +1814288,Odiseas Georgiadis +1179652,Dayanara Torres +1384315,Ashanti Bromfield +102065,Sandra Julien +24342,David Prowse +204588,Sarah Mahoney +1066283,Victoria Bidewell +1878707,Fat Dog +1197736,Keiko Yukishiro +1338063,Huang Zhizhong +99558,José Thelman +1256296,Christian Michael Cooper +119068,Levin Henning +62744,Nicholas McCallum +1650254,Briana Shann +1535784,Matthew Shugailo +608,Hayao Miyazaki +208282,Shea Adams +1213880,Paulene Myers +52490,Robert C. Treveiler +1609623,Lee Zurik +107961,Kôji Ishizaka +1152003,Maggie Fox +53674,Sharman Joshi +1042681,Chan Shen +647061,Tarun Bose +1269583,Hjalmar Peters +935612,Tomasz Sapryk +1745928,Kris Kiley +152523,Marta Dusseldorp +1114541,Árni Benediktsson +1163112,Chaim Banai +1665448,Jonathan Charles +1578317,Bettina Mangiaracina +104662,Andrew Dove +222543,Serdar Orçin +1207889,Mary Ann Gilbert +1844638,Mulweli Muofhe +1360872,Elsa Turakainen +1398324,Alex Cendron +1531597,Lamar Greer +6809,Walter Reyer +233304,Woody Robertson Jr. +508582,Miraj Grbic +50304,James Arness +1331023,Emilia Jones +1379397,Evonne Hsieh +1167751,Aart Staartjes +1030334,Søren Steen +1225358,Erkan Mustafa +1427115,Olan Rogers +1507963,Jordi Llovet +1148697,Adam Hurtig +1334718,Kim Hee-jung +236674,Bill Briggs +87017,Adriana Ozores +1670768,Lorraine Sanchez +500339,Mhamed Arezki +43034,Tom Goodman-Hill +233321,Harry Carter +1352662,Charlotte Kirk +1089595,Peud Blackcat +1644104,Corey Schmitt +48057,Lya De Putti +1221877,Ayahi Takagaki +21814,Jack Morrisey +1687127,Christine Tonry +257772,João César Monteiro +1584924,Aline Elasmar +1445665,Simon Burbage +115604,George Benson +1099464,Rafa Rodríguez +234014,Mouni Farro +213395,Hannah Murray +85047,Nawazuddin Siddiqui +1374727,Cristela Alonzo +1421638,Lee Hye-sook +1175158,Denis Karvil +1817448,Matt Miner +938990,Istvan Bajzat +581121,Jean-Pierre Foucault +1849127,Marc Raffray +1139712,Valérie Decobert-Koretzky +1001657,Sophie Turner +69490,Giuseppe Sanfelice +1453145,Sylvain Lemaitre +1525267,Éliane Adatto +98965,Marjorie Crossland +1734669,Jurjen van Loon +151958,Bob Goody +1017269,Thomas Misrachi +225312,Samantha Akkineni +118138,Violet Kemble Cooper +1352341,Debbie Forrester +668060,Karin Molander +33828,Máximo Valverde +121553,Kathrine Bremerskov Kaysen +1102576,Mamadou Lam +591295,Marcin Dorociński +1892909,Eleonora Spinelli +132910,Junior Escobar +1321644,Russell Jay +529003,Connor Jessup +9152,Patrick Doyle +97599,Nathalie Boltt +589468,Sebastian Michael Barr +1397406,Mike Nguyen +210098,Mariah Gale +1360787,Roberta Robinson +1376611,Alysa King +6712,Ezra Dagan +121014,Pino Insegno +77837,Femi Ogunbanjo +96007,Johnny Reno +1853892,Connie Valoie +263259,Kate Steavenson-Payne +1734961,Nick Lee +145457,Sophie Desmarais +1052145,Shehnaz Kudia +1200623,Tabata Ndiaye +1643329,조병만 +1124446,Grazia Spadaro +134956,Pio Di Stefano +1459815,Hannes Vosloo +932512,Andrey Leonov +171727,Kelly AuCoin +105238,Chukwudi Iwuji +1408161,Billi Lee +1624234,Chloé Esdraffo +141182,Cassandra Jean Amell +131821,Ed Ackerman +1748445,Aleksandr Gorbatov +209674,RJ Mitte +1047643,Scott Dymond +1231373,Camille Mana +1353814,Arthur Jasmine +1106196,Fehd Benchemsi +1612355,Paul Casar +1863915,Deiwis Jamaica +1018090,Rin'ichi Yamamoto +1056225,Trey McCurley +97936,James Felix McKenney +1258076,Maccio Capatonda +1367880,Yves Forget +102966,Jennifer Bishop +1848646,Felipe Roque +1784350,Dennis Kellum Castro +585618,Rasha Bukvic +101037,Christopher Maleki +1359997,Ari Millen +1339195,Trystan Pütter +1396365,Amparo Niño +1623404,Guo Chao +1658135,Eric des Pallières +1213128,Elaine Klimaszewski +595426,Dudley Foster +1443659,Helen Pearce +1385391,Antoine Laurent +122237,Michaela Conlin +51526,Brooke Johnson +1357354,Peter J. Gray +96514,Nadezhda Semyontsova +240383,Aurélie Bargème +1181328,Stephen Louis Grush +13508,Dora van der Groen +1797361,Augusta Burmeister +928985,Karin Lischka +1675649,Wannika Udomsinwatana +1336777,Prince Johannes Schonburg-Hartenstein +1822702,Raisa Ciulin +1656895,Panayakorn Sornmayura +1771610,Kathy Walton +1531097,Perry Costello +146378,Martin Nissen +1561244,Josephine Becker +1528891,Mickaël Chirinian +108099,Elaine Bilstad +126229,Karina MacKenzie +73696,Esther Nubiola +32053,Ruggero Mastroianni +1402878,Gianni Coletto +85973,Yatin Karyekar +1314274,Eiffel Mattsson +1039796,Ithamar Enriquez +1544811,Sophia Kazolides +1711163,Luz Alba +1220119,Elizabeth Spriggs +41122,Daniel Goddard +115541,Georgi Zhzhyonov +55882,Jytte-Merle Böhrnsen +43349,Ruth Reinecke +233301,Lindsay Austin Hough +1353785,Uwe Lauer +1474616,Benito Sagredo +1842213,David Sanborn +1327076,Suchindra +559504,Alejandra Yañez +1766388,Farkhad Abdraimov +28857,Jérôme Kircher +450628,Albert Kwan +1647322,Eric Watson +102687,John Howard +1283047,Johnny Bautista +1715954,Hikmet Gül +1794829,Jamie H. Jung +1355265,Erkan Kolcak Kostendil +80186,Benjamin Morehead +86852,Yuri Medvedev +1724682,Henry Matz +990627,Nelly Montiel +12251,Geoffrey Horne +1750936,Ben Rodgers +215056,Chandler Riggs +1163462,Hannah Hart +1100549,Marina Squerciati +1297777,David August Lindauer +1831312,Luiz Fernando Coutinho +1084851,Charlotte Beaumont +1034607,Rut Reygadas +1717910,Ryan Core +1323877,Rachelle Casseus +104617,David Michie +92747,Jennifer Batter +1268543,Tristan Göbel +564021,Amalie Lindegård +1185480,Darragh Hand +1905789,Terezie Kovalova +1384027,Justyna Wasilewska +142402,Maria Olsen +1891509,William Tidwell +1502857,Josh Duvendeck +120248,Ashley Bell +1650210,Devin Cleckley +150730,Elena Babenko +47384,Kevin Stoney +1488236,Matt Berry +85657,Ashwini Kalsekar +95561,Tzahi Grad +1132016,Bunmei Tobayama +576511,Jonathan Morgan Heit +1681270,Sandra Figueiredo +1519451,Marcin Świetlicki +153716,Donald Losby +968974,Christopher Clawson +552071,Go Eun-mi +234641,Hiroyuki Ikeuchi +266618,Walter Emanuel Jones +1142402,Valentin Vinogradov +240557,Alina Pokrovskaya +23012,Heidemarie Wenzel +139035,Virgílio Castelo +1292047,Lila Lucchetti +1707950,Shane Savage +1676374,Yavuz Pekdiker +1665193,Louis Suc +1440058,Nicolas Bechtel +233680,Mirjam Weichselbraun +53667,Ludmila Ruoso +209210,Raquel Riskin +76693,Nivek Ogre +98865,Mark Polonia +973810,Kim Holland +1238408,Ingrid Martz +107002,David McGillivray +180402,Joe Murphy +1770250,Shiraine Haas +1776838,Gerry Garcia +1366786,Jason Vaisvila +1222865,Sharad Kelkar +1339972,Shashank Khaitan +236679,Glen Plake +1538883,Paweł Bawolec +1459160,Karli Klein +554404,Toshio Kakei +1272826,Tauno Majuri +19123,Susanne Lothar +103393,Jacques Becker +1845971,John Wilder +238025,P. S. Keerthana +127104,Éva Ruttkai +1332334,Fridtjof Såheim +1718009,Tunç Oral +78541,Maria Grazia Grassini +1371492,Noel McGee +1879648,Hirakish Ranasaki +974169,Jenna Ortega +40004,Michael Rupert +79916,Michael Agostini +224027,Kwok-Lun Lee +1514474,Jayson Warner Smith +1287320,Herwig Ilegems +1071376,Johan Du Plooy +1000982,Robert Blush +1080195,Vicky Krieps +1198473,Toshiko Nakano +1665824,Márvio Lúcio +1470810,D.J. Harner +994109,David Weininger +1329162,Christian Pätzold +1069763,Tommie Moore +107626,Paolo Briguglia +1179218,Chiu Hung +1813664,John Kinory +1635149,Hal Whiteside +160548,Lal Baum +939135,Park Hyo-ju +117745,Alfred L. Freiburger +96479,Diego Velázquez +1400689,Nelly Tagar +137625,Nikolai Bentsler +101856,Shweta Prasad +168877,Finn Wittrock +134412,Yann Sundberg +1784729,Gary E. Holcomb +1400593,Jamie Norcross +1270455,Alan Gibson +545503,Frans Tumbuan +132899,Tomasa García +1545752,Puya +990158,Drew Koles +19404,Marvin Miller +105359,Guido Mariotti +85777,Lou Place +111341,Blanca Engström +1429053,Courtney Daniels +131252,Adam Huss +1515927,Elizabeth Kloos +934149,Anteo Quintavalle +1129760,Ruth Becquart +25342,Aurélien Wiik +1450962,Allie Schulz +1058619,Paul Grau +937385,Takanari Saito +80301,Michael Dempsey +1636688,Jerzy Ciszewski +1697412,Roshan Mathew +165938,Rebeca Arthur +38458,Jasmin Schwiers +1127916,Zefir 'Bep' Bushati +144958,Joséphine Berry +1609625,Sean Kaplan +1304766,Hilary Farr +1438862,Brendan Johansen +933123,Mark Gibson +992683,Fernand Mailly +928579,Andy Arness +1630506,Jakub Zácek +1427194,Cestmír Randa +228975,Frederik Christian Johansen +141451,Nancy Villone +96325,Andrew DiPalma +235901,Rosa Salomaa +1549115,Elle Sunkara +566093,Taksaorn Paksukcharern +96816,Kristine Miller +1205412,Brad Shelton +1352328,Dana Melanie +1206517,Jason David Brown +68108,Chris Gartin +45699,Doris Kunstmann +623776,Miguel Ángel Ferriz +1540259,Erica Cho +1531617,Michael Czerniawski +1628680,Roman Armstrong +1163727,Russell Schalk +1896138,Eric Colton +1444470,Tomás Král +1734966,Aaron Kinsella +270791,María Fernanda D'Ocón +108288,Catherine McLeod +53951,Alejandro Ulloa +46656,Werner Cartano +64544,Valentin Traversi +1317371,Karina Jordán +234256,Carl-Kristian Rundman +1155106,Alex Heyns +1624235,Raphaëlle Godin +1715239,Ángela Rodríguez +1118042,Yevgeniya Uralova +43244,Dylan Everett +144501,Jai Koutrae +1230922,Kendrick Cross +1138654,Henryk Machalica +1308174,Peggy Bulger +1522465,Liam McGuigan +1673483,Chris Polzot +1633437,Robert Forgit +129434,Jean-Marie Rollin +1692061,Kazja +31614,Anna Mazzamauro +1029287,Alice Dubuisson +1511977,Makayla Merkel +1676782,Legs Malone +65114,Heidi Jo Markel +1246273,Sachi Matsumoto +145289,Hande Subaşı +1078825,Mona Lisa +1888503,Celo +71885,Barlow Jacobs +1308586,Chino Darín +1753915,Natalie Prinzen-Klages +1601529,Jaruwan Techasatiern +77917,Wendy Talley +81093,Jiah Khan +1640624,Ioana Florentina Dimitriu +91588,Luciano Szafir +1487401,Barbara Whitson +126450,Piero Cardano +1494008,Sophia Walker +583111,Michele Boyd +1739697,Jack McQuaid +1296203,Kevin Anthony Ryan +1029129,Hayk Gasparyan +1019049,Jessy Hodges +593144,Keshto Mukherjee +1117991,Yekaterina Kmit +116256,Robert Woolsey +117540,Edwina Carroll +219339,Diana Goodman +129060,Enrico Brignano +1635158,Christopher Beanland +92574,Marc Wootton +935183,Kelsey Edwards +1451204,Wenka von Mikulicz +1398879,Karen Pittman +1186027,Alicia Vela-Bailey +1466293,Gatis Gaga +1428381,Brandy Whitford +172156,Patch Darragh +1562397,Steffinnie Phrommany +1423817,Nathan Gray +115591,Danette Mackay +1039431,Georgiana Young +62960,Robert Webb +39208,Gérard Philipe +1272981,Ante Novakovic +52266,Olli Dittrich +76021,Griff Furst +1295436,Giannis Malouhos +1511748,Paul Davidson +1819143,Janice Matthews +127223,Midoriko Kimura +14315,Jackie Swanson +1820220,Allen Wilson-Myers +452205,Bobby Moynihan +1102257,Louis Robur +135255,David Ndaba +1415423,Nick Killebrew +145299,Eric Godon +1678087,Jon Vegard Hovdal +1417567,LaNette La France +30901,Salvatore Baccaro +228803,Sloboda Mićalović +1582410,Alberto Catalá +101102,Carlo Kechler +1725447,Brian Dunstan +29832,Viktor Verzhbitskiy +1442975,Aynsley Bubbico +103517,Fernando Sánchez Polack +79397,Kristen Kerr +1076621,Robert Hinton +1384876,Christy Pankhurst +1120525,Takaya Kuroda +1821658,James Hartigan +1087005,Louise Erlandsson +1330006,Xhevdet Ferri +77625,Josh Becker +3017,Samm-Art Williams +51377,David Janssen +938419,John Lebar +87371,Don Orlando +64750,Pascal Bonitzer +1719972,Sit Chi-Jing +1718323,GinaMarie Zimmerman +74613,Terri J. Vaughn +1718441,Steve Kish +1449238,Danielle Bux +1441204,Emma Wellbelove +221433,Alex Martin +32657,Julien Boisselier +3300,Natalia Tena +1487622,Erica Derrickson +140102,Yukio Mishima +585170,Benoît Tachoires +115531,Paige Lee +1743853,Mike Murray +132922,Ruth Pacheco +1662622,William McDonald +86060,Shilpa Shetty +975962,Marcelo Villamil +1306116,Juan Rodríguez +1848648,Carol Sampaio +110760,Aino Seppo +80183,Alexander Franks +1238593,Minori Matsushima +143139,António Silva +73884,Xavier Horan +1170144,Salman Yusuff Khan +1394332,Shira Haas +1514475,Juan Gaspard +1602420,Emily Haine +1702124,Lindsey Allen +1117911,Yuri Zakharenkov +134072,Brittaney Bennett +1600495,Mawaan Rizwan +1782593,Jonathan Stromberg +31878,Julio Villarreal +545062,Todor Kolev +984711,Kate Drummond +135445,Lyn Thomas +1844919,Sam McGovern +136408,Kiro Wehara +135267,Jennifer Lafleur +1567166,ViDonna Michaels +583223,Julie Delarme +1200391,Antonia Bill +1502453,Dan Howell +1648981,Ane Ulimoen Øverli +30405,Sergey Gazarov +53431,Nadine Labaki +1413690,Kaili Närep +567224,Laura Wood +206384,Nadine Garner +95948,Halla Vilhjálmsdóttir +120529,Hamilton MacFadden +96625,Minka Kelly +592932,Brad Heller +1130367,Beata Lehmann +1467537,Maurane Arcand +135698,Frederik Nilsson +1869091,Hiske Bongaarts +1882933,Vincenzo Bombolo +303020,Meaghan Rath +568087,Jaana Joensuu +153335,Kate Manx +1138102,Georgia Vasileiadou +1049540,Nicolas Martinez +16201,Donna Wilkes +1641530,Roxanne Fernandes +1065449,Buzz Farber +928199,Ron Wear +1355719,Sarah Sutherland +1226527,Reinhard Glemnitz +964973,Lykke Li +90400,Kaela Aryn +224376,Max Mazzotta +1735508,Martin Rowe +103284,Randal Edwards +70201,Mario Pilar +1206157,Ken Peters +1248371,Atsushi Miyauchi +624719,Sergei Gerasimov +72764,Yoshino Kimura +1798881,Dan Armour +33728,Nobuko Otowa +1629999,Go Yeung +129877,Nicole Murgia +1285844,Peter Giliberti +121780,Antti Litja +451877,Regan Mizrahi +40914,Zbigniew Cybulski +24919,Alberto Jiménez +562157,Ahcen Titi +231773,Julie Wilson +94632,Emily Fradenburgh +5613,Jack Walsh +1604100,Jessica Goodman +1695647,Jorge Munoz +41594,Krystian Martinek +1212131,Peter Marc Jacobson +545538,Jim Gérald +100852,Alicia Moro +557578,Alexis Zibolis +1711402,Nanami Hikada +1031261,Alyshia Ochse +1406568,Mike Davis +113999,Friedrich Mücke +176740,Anthony Giaimo +1795184,D. Page +51999,Lili Mirojnick +62093,Sean Blakemore +544446,Claude Richard +589766,Brely Evans +1319617,Toyin Ogidi +166495,Jeff Geddis +1105701,Juliet Oldfield +29342,Noel Marshall +1459830,Erick Chavarria +1502430,Phil Dunster +1113463,Fabio Costaprado +592122,Pavel Pavlenko +1891145,Antonio Fulfaro +1650400,Giuseppe Ragone +141092,Don Plante +25648,Yuya Yagira +1724564,Lindsey Shope +49996,Brian McDermott +119151,Reilly Dolman +101083,Jackeline Olivier +1223171,Willa Holland +1257753,Paloma Kwiatkowski +1207290,Gareth Ruck +5312,Hugh O'Conor +1276783,Anne Didier +1570328,Hamish Parkinson +47827,Luca Bizzarri +227460,Eddie Holden +550568,Atsushi Okuno +586528,Mike Cleven +71814,David Tennent +1402687,Nicole Randall +1551920,Layne Ireland +1291964,Violette Chauveau +129822,Lindsey Axelsson +1610549,Shitay Abreha +46737,Heinrich Witte +110780,Timo Eränkö +1308744,Patrick Allen Reynolds +1110282,Ava Bogle +1694292,Steve Karier +1794804,Michael Morano +1840033,T'ugaita +1829343,Joseph Tiboni +1545516,Jeremy Parker +230213,Miguel Ángel Solá +8553,Seth Adkins +1676060,Serge Alain Cambronne +1077574,David Patrick Flemming +176822,Luke Robertson +34962,Gyenshen +1235818,Frank Buckley +1533223,Rebecca Weil +105727,Jake Abel +1086508,Mzwandile Nqoba +1118994,Cyll Farney +1126293,Hirokazu Hiramatsu +1301268,Neda Sokolovska +1126675,Johanna af Schultén +128117,Ricky Memphis +1511974,Shane Mehigan +187536,Monica Steuer +1564564,Jerib Ould Jiddou +1753913,Sean Jones +1414164,Anthony Shuster +1394331,Neil Fingleton +1052322,Rahul Ravindran +1903780,Yemelyan Yaroslavsky +1676774,Autumn Stein +1148262,Glenn Payne +85422,Joshua Minnick +562651,Pola Raksa +221682,Ville Myllyrinne +228890,Jesse Reid +1891544,Sean Legg +1676064,Alec Bourgeois +1735545,Drew Michael Hershner +1566496,Matteo Corradini +80505,Sonja Kolačarić +5385,Jackie Hoffman +158077,Debbe Dunning +1202911,Lewis Hodgson +235213,Rosa Pianeta +57097,Bob Israel +1384316,Tristan Crigger +130616,Ester Carloni +1456705,Jesica Ahlberg +1198611,Lucio Giménez Cacho +103115,Oreste Lionello +1295918,Henry Gründler +1349104,Pavel Kikinčuk +1293962,Katia Follesa +1026077,Alberte Blichfeldt +228722,Joey Richter +1890109,Boris Gorbachev +1512178,Devin Posey +52018,Britt Robertson +135460,Václav Lohniský +1393898,Amedeo Girardi +117134,Peggy Batchelor +1090733,Min-ji Kim +139946,Lisa McAllister +1188324,David Haydn +110669,Toku Nishio +1836944,Butch Von Dreaux +227599,Catherine Faucher +1865496,Alan B. Jones +1672065,Bethany Leo +218022,Scott Hall +1137888,Lauren Pennington +551792,Irina Dalle +1640896,Vanessa Scalera +86685,Stanislav Chekan +1686809,Madison Monk +208664,Kay Cannon +1356417,Isabelle Siou +1805142,Darren Sheehan +1531586,Sarunas J. Jackson +111342,Calle Lindqvist +48151,Michael Pink +212665,Christopher Tai +1207249,Kyla Warren +1158758,Ramon Cespedes +14423,Stephen Stucker +1505306,Jackie Benoit +1149689,Dimitris Nikolaidis +212003,Ethan Dizon +1336921,Tonie Lunde +239781,Junie Astor +1366547,Monica Lawson +1192373,Mārtiņš Liepa +77735,Yvan Le Bolloc'h +79171,Johan Rheborg +23343,Andrzej Mrozek +931686,Iman Aoun +32785,Brooke Hayward +941781,Harold Huth +1040864,IronE Singleton +1547563,Fusako Maki +1619922,Chan Kim-Wan +226142,Нина Јанковић +1751759,Prabhas Sreenu +129766,Hélène Babu +81387,Eddie Hodges +95100,Marie Osmond +1188571,Jeremy Marinas +1529372,Clare Hammond +1678626,Tim Aas +1441811,Louis Simon Gotfredsen +1797951,Talat Dumanlı +96391,Charlene Fernetz +57915,Dieter Bohlen +236643,Fawzi B. Saichi +931253,Nikita Efremov +124746,Miguel Ángel Blanco +1742814,Jane Pejtersen +1424765,Carl Noel King +32063,Folker Bohnet +1267387,Emma Lee +540281,Wendy Williams +123813,Ian Anthony Dale +1179884,Rachel Arditi +19212,Russell Sams +1820213,Samantha Ryan Maisano +1599578,Robert May +1181353,Ryan Eggold +33311,Matthew Chamberlain +1341675,Nils Elffors +210831,Laura Campbell +141328,Manmeet Singh +1504923,Cameron Kasal +932914,Daniel Muñoz +176022,Andy Kindler +1174864,Lucky Mosley +590428,Zózimo Bulbul +184453,Fernando Soto +1388919,Andreas Matopoulos +1123837,Meredith Sweeney +88305,Miguel Ángel Hoppe +87840,Deannie Yip +1011103,William Peltz +97987,Charles Herzinger +572241,Philippe Vuilleumier +45882,Bernhard Helfrich +1190281,Chris Tordoff +46783,Philippe Nicaud +1355011,Paul Frère +1303604,Maija Nuutinen +121847,Danielle Lewis +1774432,Chloe Williams +1632441,Damon Pfaff +61906,Cecily Polson +1540271,Michelle Santiago +1692083,Betsy Muniz +1194228,Vinicio Sofia +1862815,Giorgina Trasselli +1469930,Hamzah Saman +1649059,Michael Tourek +146020,Brian F. Durkin +25078,Eriq Ebouaney +1529318,Simon Desue +1299013,Michael Pascher +1200856,Richard Hadfield +1170316,Marcia Manon +1208791,Julio César Castro +1696222,Duvale Murchison +59014,Mo McRae +555157,Masahiro Anzai +1266859,Barkhad Abdirahman +1383552,Marshall Choka +221414,Jochen Senf +78267,Kazuma Suzuki +1375251,Eric Swain +1721678,Tom Clegg +1415413,Cazi Greene +563087,Madeleine Fischer +1349054,Dominique Daguier +1053291,Anna Ross +155018,Colby French +1352761,Patricia Legrand +78713,Caterina Guzzanti +1525689,Ludi Lin +550740,Yegor Baranovsky +143307,Marilyn Norry +1566009,Hugo Soosaar +1371495,Terry Doyle +227877,Kyle Treslove +1188436,Pavel Lukiyanov +1644662,Matthew Alan Brady +228650,Timo Torikka +100680,Renzo Marignano +152548,Tyler Coppin +92579,Staffan Göthe +1210345,Ruben Lehtonen +1055702,Bob Lennard +202711,Bob Anderson +1662449,Leona Vaughan +1522640,Ruby Saavedra +1294425,Zahira Badi +1426721,Bahar Tokat +1239510,Kamil Orzechowski +101327,Elizabeth Turner +1841515,Chloe Piazza +1264229,Jodie Brunelle +216936,Denyse Tontz +1191992,Luz Palazón +85733,Tinnu Anand +100085,Paul Kasey +1505895,Romy Beckman +129635,Sandro Ghiani +1544814,Tim Soergel +1076791,Irit Gidron +1550500,John Pine +1707945,Peter Richards +1063768,Anemone Valcke +114289,Kate Drain Lawson +227544,Fabiula Nascimento +1788331,Mother Maybelle Carter +56308,Patricia Adriani +1754600,Romeo Visca +86671,Erast Garin +1415220,Charlotte De Ruytter +1358864,Maya Koumani +212154,Deborah Ann Woll +94601,Patrick Ferrell +125928,Kailash Koppikar +1670725,Caroline Duris +191260,Tanc Sade +522169,Brent Skagford +1418476,Li Qiang +15485,Victoria Trauttmansdorff +1592548,Rafał Zawierucha +196275,Alan Dobie +1322030,Gregg Lowe +941822,Allegra Denton +117846,Leymah Gbowee +1334321,Craig Henningsen +1484676,Kisao Hatamochi +1197942,Lee Min-woo +555588,Mizuho Yoshida +16133,Harry Landers +1295875,Bhuvan Arora +72686,Lisa Kock +106178,Dennis Cole +1064472,Amruta Subhash +106654,Peter Magnusson +1028846,Joe Doyle +76932,Yûji Miyake +1158355,Gina Calabrese +1191474,Bob Wells +102570,Bonnie Hellman +120774,James Eagles +1023942,June Powell +933266,Lucia Ojeda +1286985,Jasha Rudge +1015932,Roxanne Arvizu +1818383,Evan Avtal +1359449,Callum Dixon +1257215,Mizuki Yamamoto +1199631,Bistra Tuparova +235322,Stanislav Duzhnikov +85154,Tony Denison +1017294,Tom Hopper +87722,Noomi Rapace +1672073,Cheyenne Hurley +1234991,Keeley Forsyth +64546,Choukri Gabteni +235203,Lone Hertz +1563439,Val Maloku +1117910,Galina Venevitinova +100487,Debra Lamb +551461,Dave Levine +1675748,Wayne E. Brown +1341112,Deborah Lee Douglas +1457970,Olga Velbria +929312,Yui Murata +37583,Nino Manfredi +9572,Mary Alice +1272291,Matthew Daddario +1731537,Hwang Seok-jeong +1221047,Pooky Quesnel +1540569,Emil Gal +1108859,Steve Borden +1432729,Kieron Rhys Lillo +127021,Kenneth Kent +1158489,Lauri-Kare Laos +122295,Bijan Daneshmand +1129448,Edgar Quispe +96524,Sigríður Hagalín +82497,Debbie Gibson +1660176,Barletta Prime +1381148,Michael Ray Escamilla +553968,Mitsuko Ishii +72661,Alberto Dell'Acqua +1349735,Jadran Malkovich +84754,Gonzalo Menendez +53950,Fernando Sancho +128252,Gianluca Cammisa +929600,Zinaida Dyakonova +1148573,Max Jacobs +858704,Connor Fielding +89819,Zachary Gordon +111859,Claire Bender +1082093,Bakary Sangaré +1452376,Ilona Hattab +934258,Rogier Philipoom +1681295,Frank Clement +23112,Günter Junghans +33864,Alessandro Sperli +150170,María Clara Fernández de Loaysa +943812,Enrique Ávila +1432695,Larry Roupe +585470,Vanille Attié +8065,Torbin Xan Bullock +78707,Tosca D'Aquino +32128,Richard Greene +31545,John Richardson +1574677,Fred Cady +1342439,Marion van de Kamp +1240012,Artur Dziurman +543279,Tony Mack +199920,Tony Cyrus +1878805,Joe Jameson +1381725,Damon Sementilli +1389484,Jirí Hálek +1118342,Kristina Kopf +1879645,Saida Mansoor +1650218,Dalyn Cleckley +1055266,Željko Božić +185943,Antony Carrick +143549,Rebekah Kennedy +119891,Puri Jagannath +1841489,Kyle Monaghan +557448,Kenneth Wayne Bradley +1363832,Peg Entwistle +1093715,Duci De Kerekjarto +131336,Mark Antony Krupa +1681651,Cláudia Faria +65923,Dave Attell +1404646,Casey Messer +44584,Nate Schwantze +1811548,Jean Marie Vianney Nkurikiyinka +1396125,Wyatt Ralff +1564567,Aminala Tembely +132247,Emil Kadeby +130394,Hsu Feng +1266168,Nina De Padova +1739414,Melissa Marra +192539,David O'Brien +156003,Inday Ba +975482,César Sobrevals +1474723,Sherry Thurig +3891,Martin Brygmann +32370,Gisela Hahn +149777,Alice Dinnean +166,Caroline Peters +198855,Masam Holden +144791,Fiona Gordon +1862747,Rick La Monda +998225,Alison Sudol +52265,Utpal Dutt +195383,Sandy McDade +1129848,Toshihiro Yashiba +226184,Kaare Kroppan +1566500,Betanì Mapunzo +1036952,Sam Godfrey +1438308,Kevonte Mcdonald +1722993,Melissa Joseph +98572,Erika Nann +1013106,Olga Antonova +1116281,Ali Tataryn +1144912,Rena Kazakou +234911,Signe Anastassia Mannov +1484674,George Whyman +1560246,Kyanna Simone +939112,Zhengwu Cheng +106965,Adam Harrington +1253008,Yoshimasa Hosoya +1193559,Mahmood Pakniat +1289925,Melina Matthews +1045993,Oleg Primogenov +1537582,Zora Bozinová +584187,Israel Katorza +934092,Viju Khote +932821,So Ji-sub +117200,Daniël Boissevain +100560,Louisa Moritz +1445195,Pia Maria Dam +1512176,J.C. Williams +224733,Marcos Ruiz +1579120,Giuseppe Fragapane +27991,Stuart Gordon +22929,Erik S. Klein +1020788,Rosella Towne +1263596,Samantha Fuller +929046,Hernan Penner +1828715,Simon Edds +1627422,Edward Chui +1511094,Angela Maiorano +554025,Yang Eun-yong +99516,Gaia Germani +1338082,Diane Defoe +1676636,Peter Schueller +219752,Hiroki Takahashi +1504653,Beatrice King +82284,Timothy Davis +1165830,Tair Mamedov +1248824,Ines Rivero +1116237,Ronnie Clark +1050934,Gloria Grey +124512,Milia Ayache +47628,Julian Morris +86213,Rahul Khanna +1424437,Sofija Rajovic +1275945,Charlotte Lewis +106977,Jennifer Lee Wiggins +68050,Shai Avivi +1380105,Doug Shuffield +1636785,Jay J. Bidwell +94127,Peter Brown +1650192,Keith Tyree +228265,Sergey Yushkevich +1476854,Claus-Henrik Lupi Nedermark +4787,Joseph Mazzello +1283938,Michael Bugard +1863884,Gigi Monteiro +1326027,Jacques Morin +567615,Jeff 'Swampy' Marsh +1010189,Adan Canto +1332940,Kaylin Griffin +1085574,Andrea Pietra +1569908,Krista Mack +22664,Jürgen Heinrich +1656896,Aumnuay Inntarachai +88150,John Daniels +1635145,Elijah Everett +1540885,Reine Swart +1367886,Jeanne Byrel +1088066,Scott Jensen +1427616,Déborah Amsens +231022,Armando Moreno +1589615,Mike Broecker +90413,Gerard Bechard +938815,Francisco Pestana +933002,Amara Miller +1278124,Paul Bentall +947464,M.W. Reid +1329979,Makar Zaporozhskiy +1024722,Annalise Basso +180979,George Chiang +106105,Sharyn Moffett +99116,Ted V. Mikels +1207272,Christopher Nolen +36386,Françoise Prévost +65928,J.D. Williams +1412784,Harley Pasternak +1581231,Petar Tuđa +1627010,Patricia Avery +180683,Dan Lett +1028870,Gabriel Morales +120241,Irina Rozanova +1340058,Laura Baldi +1071126,Adelayo Adedayo +1491377,Frieda Gutmann +207989,Dustin Schuetter +1769248,Armond Azencot +1182320,Arielle Stock +1302140,Wanda Seux +54500,Will Kemp +70303,Zach Gilford +1043835,Jeff Leach +1093522,Robert Young +236082,Taylor Hawkins +30291,Cathy Downs +115537,Judy Cowart +168455,Marsha Regis +571183,Klaus Dieter Bange +939074,Anthony Pietsch +1055270,Darko Kokoruš +122517,Erin Cardillo +1113050,Christopher Drake +631879,Aleksandra Denisova +81352,Takako Tokiwa +1537079,Michalina Olszańska +1184059,Bambang Hermanto +1115688,Taizo Harada +1132612,Susan Goforth +282449,Iwar Wiklander +42642,John Benfield +150195,Simon Potter +183151,Greg Hicks +1760871,Chioma Anyanwu +1668235,Nabil Koni +545608,Sergey Chonishvili +1842177,Paul Floriano +1587566,Carly Adams +168834,Sterling Jones +1066130,Lars Thiesgaard +190678,Joseph Romanov +44439,Véronique Vendell +1297030,Hristo Balabanov +12742,Julio Peña +1183986,Marco Milano +20235,Firmine Richard +560032,Nils Ericson +1198777,Samuel Lange Zambrano +1256383,Toygun Ates +54856,Jarlath Conroy +1750932,Michael R. Carlson +119413,Eleanor Gecks +59754,Demet Akbag +1605661,Aubrey Poolo +1275650,Jesse Dayton +1383106,Frankie Van +1672908,Julian Looman +1845945,Paul Beradi +129604,Brendan Patricks +1805294,Paul von Habsburg-Lothringen +1653370,Amanda Cerny +60258,Mark DeCarlo +582221,Vyacheslav Ross +53568,Paul Thomas +20865,Paul Dahlke +220675,Roger Cicero +1381476,Wilson Schwarz +1093519,Jackelyn Gauci +129649,Massimo De Lorenzo +37909,Margarete Haagen +1043886,Sebastián Hiriart +1081494,Chen Yan-Yan +1136482,Dai Omiya +555712,Romina Carancini +1145098,Lucy Briant +28972,Mary Fuller +1335315,Georgina Campbell +211481,Drew Tingwell +89192,Anthony Cardoza +1408612,Claudio Cinti +1659602,Tadashi Takahashi +1315943,Wyatt Nash +1283058,Michael P. Herrmann +1467639,Yvonne Talton Kersey +1888500,Hans Sarpei +82519,Scott Bairstow +152769,Jed Mills +1278780,Edd Osmond +139657,Rosanna Lavelle +1420251,Paul Padagas +974965,Maude Allen +937314,Osvaldo Benavides +1313851,Fred Gamble +169780,Alexis Llewellyn +557433,John Patrick Reger +1403193,Dorotea Bárcena +1257218,Hans-Joachim Heist +105019,Margalo Gillmore +1005864,Judy Durning +1088728,Alyosha Pavlov +1623450,Skip Wilder +56448,Jeff Chase +1156307,Jonas Trukanas +1721397,Susan Calman +1075388,Linda Peretz +155977,Ray Laska +128653,Alf Malland +67656,Nathan Baesel +11936,Maria Eis +141111,Biagio Izzo +55790,Allan Moyle +2740,Lilo Pempeit +1363326,Jaclynne Greene +235366,Marya Marco +1328739,Bryan C. Knight +1034504,Anna Margaret Hollyman +553809,Tamae Ando +1774093,Luisa Maria Badaracco +1398122,Gui DaSilva-Greene +1641248,Robert Guajardo +928343,Richard Garriott +145546,June Laverick +1187585,Hope Riley +96670,Liam Hourican +283294,Devan +128474,Anna Maria Torniai +1784352,Sarah Shaefer +142545,Christian Serritiello +1783263,Nolan Bateman +931238,William S. Hart +137828,Marianne Ostrat +146541,Aude Amiot +967197,Allen Williamson +1275688,Ethel Clayton +1124068,Lydie Barbara +1446333,George Ealsom +130958,Sonakshi Sinha +1890097,Fedor Alexandrovich +155968,Darren Kennedy +489961,Jakub Gierszał +1092827,Cengiz Sezici +580673,Christer 'Bonzo' Jonsson +222733,Dagny Backer Johnsen +1895452,Catherine Rethi +1000768,Olga Grahame +1393258,Frank Dolan +574144,Anette Olzon +502188,Andrew Jenks +965910,Sandi Dragoi +96820,Roger Neury +175628,Marta DuBois +1885600,Anna Guerrieri +35722,Alberto López +929509,Julian Lo +1893382,Madrona Hicks +1561080,Hannah Chalmers +89289,Jesse Jackson +553201,Jerry Lamb +1177633,Rachael Nyhuus +129779,Jamie Madrox +112481,Dennis Chew +219634,Paul Hubbard +1759921,Basil Limoges +1147920,Richard Herdman +185402,Paul Bandey +1179809,Stanislav Majer +54714,Keith Loneker +45189,Roberto Risso +18547,Uta Levka +1223684,Lindsay Schoneweis +1081654,Raphaël Lenglet +64515,Pablo Espinosa +122193,Hiromi Tsuru +1413764,Hachi +130223,Suzanne Cloutier +1575324,Damien Nash +1798886,John Collins +126861,Aleksandr Ilin +101861,Gururaj Manepalli +81000,Sergey Garmash +110342,Sylvia Findley +1620981,Eric Berryman +30292,Grant Withers +1423091,Mario Vaquerizo +240835,Iya Ninidze +143693,Vladimir Dolinskiy +1207263,Tamica Washington-Miller +92081,Amelia Henderson +63812,Marc Hickox +1581556,Amanda Russel +121401,Maylia +54183,Stribor Kusturica +1336800,Lee Jae-won +1000007,Tyrell Davis +1116064,Andrzej Kozak +175248,Kelly Sullivan +86876,Pavel Abdalov +1774942,Walt Becklund +548190,Renato Cestiè +1718658,Rob Mello +1140977,Sabrina Jolie Perez +87950,Johnnie Kong +1648346,Robert Aramayo +146262,Ivo Tonchev +1700432,James Comey +224489,Pavel Derevyanko +1359944,Scott Alan Berk +1116048,Jade Hope +942742,Cacho Espíndola +1172456,Josh Truax +1255427,Ann Penfold +591947,Richard Condie +1347421,Gregorio Fernandez +545794,Nikolai Gubenko +1747320,Blanka Jarosova +1060555,Yash Tonk +551020,Oliver Jackson-Cohen +1857383,Sheela Vaz +1531615,Muhammad Sanders +142607,Josie Davis +138207,Gees Linnebank +1758879,Anne Joyce +1688207,Lanfranco Spinola +102181,Art Neill +1197884,Suzy Domac +1790496,Ravi Behl +1811550,Narcicia Nyirabucyeye +1615009,Wong Suet-Kwan +1050967,Mohammed Medjahri +1330039,Leigh Parker +209769,Chad Connell +10777,Maria Grazia Cucinotta +19242,Tony Gilroy +118982,Kinya Kitaoji +123959,Sverre Hansen +1603931,Lyudmila Bezuglaya +59750,Nikki DeLoach +1056288,Aleksandar Marinković +1526121,Elmir Jukić +1600895,Stefan Ivanov +226431,Nora Navas +1694300,Lydia Stevens +1046078,Sergey Mazaev +1508643,Nicolas Bruneaux +1264193,Donald Högberg +1725868,Frowin Wolter +1019914,Bruno Bertocci +1531317,Steve Geerts +1675542,Saburo Aunuma +1539096,Samuel O'Connor +158045,Phillip Troy Linger +1261438,Liisa Kuoppamäki +1478272,Alexandra Callas +1683851,Derwin Philips +1689884,Angelo Calligaris +210160,Ira Glass +934049,James Weber Brown +1174353,Michael A. Miller +52330,Alexandra Kamp +556504,Andrew Bagby +52931,Aaron Michael Drozin +41526,Patrick Timsit +1521445,Rakim Mayers +221787,Jim Al-Khalili +1371398,O'Shea Jackson Jr. +1348991,Luísa Cruz +78804,Jocelin Donahue +1796923,Charles Brook +58197,Shad Moss +222300,Elina Pohjanpää +1439736,Ella Frey +1663165,Teddy the Dog +962997,Adam Rose +1333564,Wade Williams +1209477,Erin Lindsay King +76390,Rebecka Hemse +1569812,Tamika Katon-Donegal +1053303,Fred Demara +132235,Christophe Bourseiller +1003921,Alessandro Cutolo +1380509,Tom Stokes +1185799,Cooper Roth +1720586,Tory O. Davis +1446006,Sonya Cassidy +123812,Lateef Crowder +1822970,Gerhard Gdowiok +1120289,Jan Swiderski +1345494,Lucy Maunder +1438303,Jim Johnson +1179648,Chrissie Page +560127,Liliya Gritsenko +73616,Jared Kusnitz +1064961,Kathlyn Williams +1461122,Olga Borovikova +1408400,Tom Harrison-Read +38245,Wilfried Seyferth +1394439,Jess Terrell +142294,Jason Butler Harner +1398138,Janick Arseneau +95381,Matt Moody +99924,Nancy Lee Noble +190752,Guy Prescott +117961,Bjørn Puggaard-Müller +85511,Hristo Mitzkov +1135162,Lau Fong-Sai +1718149,Pedro Lucero +1440453,Wang Qinxi +1544224,Rita Figueiredo +1690608,Artur Berezin +1190328,Kei Nakamura +1541160,Kris Kjornes +110794,Kaj Troberg +1893910,Yonaton Shiray +1110194,Marek Walczewski +1195963,Kurt Schiegl +231491,Laurent Buro +101865,Balaji Manohar +937809,Han Geng +1150432,Eitan Cunio +1558026,Antonio Cayonne +1006133,Garry Davey +76245,Adam Carolla +1432980,Steve Blass +1248901,Joseph McBride +86254,Joy Fernandes +97085,Stéphane De Groodt +1630332,David Kim +120244,Arden Myrin +1367878,Geo Laby +1734985,Rajwinder Deol +200870,Melanie Nelson +1424217,Julia Bruskin +124747,Pierre Coffin +1214133,Lamont Johnson +128413,Roberto Mincuzzi +1289854,Julie Suedo +1275728,George Cathrey +946356,Andrea Frankle +935081,Martin Burke +79007,Martha Gehman +1629646,Kent Chou +931651,Beth West +1096829,Tom Southern +110463,Lauren Stamile +133823,Gümec Alpay +185705,Gurdeep Singh +1472792,Alison Fernandez +82833,Barbara Payton +1370766,Michele Josue +1018087,Akiko Kudô +1044538,Pirom Ruangkitjakan +93224,April Billingsley +107015,Page Moseley +88437,Deepak Tijori +152244,Peter Butler +204351,James Vincent Romano +1784623,Yari De Leon +235107,Nikolay Chindyaykin +559958,Mikhail Filippov +1707828,Helmut Geier +984479,Erika Sainte +154784,Dominic Fumusa +1009366,Cory Corbett +127064,Chaz Moneypenny +208341,Patrizia Hernandez +1508826,Muriel Gould +1508112,Wale Ojo +150694,Claudine Barretto +99287,Irina Kupchenko +23631,Marilyn Ghigliotti +96025,Ken Bolden +1890514,Sandro Aliprandini +178916,Albert Szabo +85158,James Wardlaw +1650383,Roman Skorovskij +28031,Ramsey Faragallah +1176978,Yuka Ohnishi +1371397,R. Marcos Taylor +1628176,Jennifer Martin +1768819,Lena Kovski +208069,Jacob Blair +1555786,Avin Manshadi +1739046,Natalie Danks-Smith +1423882,David Abeles +22590,Barbara Brylska +1410658,Bette Rae +1790105,Nicholas McAnulty +22529,Peter Wyngarde +79004,Takako Honda +101963,Harry Locke +235855,Patrick L. Birkett +107857,Ági Szirtes +118331,Pavel Priluchnyy +1116678,Bea Garcia +1392202,Verónica Porche Ali +1754480,Nate Richman +30529,Amanda Blake +1083165,Don Thai Theerathada +506447,Nobuaki Kaneko +2542,Kazuki Kitamura +88977,Alberta Vaughn +71530,Romany Malco +543730,Toomy Nelson +75636,Jalil Jay Lynch +132104,Fouad Habash +1113974,Jafta Mamabolo +21236,Aldo Maccione +1658337,Ray De La Paz +1704843,Christy St. John +1375270,Jeff Hollis +115675,Stacie Bono +1184331,Christopher Goh +1517743,Brad Wietersen +88053,Marko Živić +1211012,Daniel Herrera +95857,Elizabeth Ruscio +228058,Paula Burlamaqui +1650168,James Matthew Poole +1423065,Anna Simon +129805,Roger Pancake +1818584,Kaila Kondo +1401531,Claudia Kim +1501949,Luke Haigh +1295711,Kim Jae-hong +1547783,Eyob Nielsen +931944,Ellar Coltrane +9600,Ted Cassidy +25348,Mathieu Delarive +104018,Lilyan Tashman +27668,Adil Abdelwahab +1035736,Pippo Delbono +85557,Gorka Otxoa +1497185,Jasmin Radibratovic +1438305,John C. Klein +1589712,Mary Caybakan +1076439,Graça Maria +1502449,Marlie Crisafulli +1205408,Kennedy Waite +84270,Tara Wilson +36912,Françoise Giret +122740,Sergiu Nicolaescu +1364928,Sanni Paatso +1316032,Dragana Varagić +140235,Robert Factor +585172,Antoine Réjasse +1016038,Clark Marshall +1451333,Kevin Moore +83637,Heo Jun-ho +107892,Przemyslaw Tejkowski +1017281,Sondre Sørheim +37250,Matthias Hues +1147931,Caprysha Anderson +71456,Tom Deininger +1384103,Armin Sorg +71364,Chiquinho Brandão +1796384,Antonio Daniel Hidalgo +148871,Andrés de Segurola +1472507,Dennie Jackson +572289,Regina General +229765,Mariano Ozores +239456,Akira Iwai +30982,Robert Christopher +1212139,Jennie Garth +1399746,Natasha Jonas +1508827,Paul Elias +24070,Christelle Gilles +80054,Josh Grace +80996,Vasily Stepanov +1428770,Gary Lind +936219,Olivier Brocheriou +1519439,Ewa Kaim +11977,Francisco Jambrina +1734186,Albert Lee +138514,Božidara Turzonovová +1574846,Brandon K. Hampton +1754596,Dario Giordani +122889,Dane DeHaan +1394463,Matthew Crocker +1522168,Amirah Vann +1486754,BJ Forbes +1222596,Justin Hartley +560274,João Tempera +192499,Michael Frost +167862,Omid Abtahi +60119,Paul Urcioli +1808858,María José Puerta +62594,Cheryl Tsai +110773,Matti Lötjönen +132220,Owen Campbell +79902,Hans Altwies +1095294,Salim Ghouse +1090753,Arthur Igual +16085,Michael Dunn +1031786,Aldo Gonzalez +86690,Aleksandr Demyanenko +1055694,Richard Gesswein +1388668,Jeffrey Sanker +1060742,Sarah Chapman +1544806,Ervin Ross +976651,Carlos Cano de la Fuente +128285,Oleg Dal +131823,Chris York +1196724,Georg Tryphon +1648801,Mary Wilson +1446112,Jeremy Musik +1283056,Kurt Carlson +1282418,D'Kia Anderson +102738,Dona Cole +15156,Zhang Yang +1388846,Hana Sofia Lopes +1438906,Keiko Kalaitzis +222203,Cris D'amato +94427,Stephanie Honoré +1754478,Sione Kelepi +61059,Roberto Sosa +229238,Julien Hubert +49028,Clelia Sarto +11595,Antonin Artaud +206823,Alex Wyndham +1542576,Yolanda Galardo +1819145,Kate Shalander +1179775,Mia Nielsen-Jexen +1589606,Bedir Semih +565890,Tanikella Bharani +1473995,Darren Wang +1408200,Paul Becker +143596,Niels Schneider +1314263,Simon Säppenen +990136,Judd Lormand +1583954,Bartosz Głąbała +1182831,Francesco Scali +145027,Gaby Ferrero +1448861,Keenan Camp +1369204,Camille Hollett-French +1041406,Deepak Parashar +1072705,Sterling Morrison +227241,Luca Capriotti +35434,Numan Acar +929848,Mark Goronok +1397634,Franz Hartwig +1755035,Claudia Mancinelli +17127,Jeong Seok-yong +1462721,Tom Hutch +17896,Guillaume de Tonquédec +1702122,Tommy E. Remengesau Jr. +148467,Akemi Kobayashi +106145,Tim Lovelace +544618,Sergei Stepanchenko +1547212,Fabrizio Amicucci +160321,Bridgette Andersen +92698,Mary Merrall +1160687,Tea Falco +1675546,Raina Gessman +40957,Hattie Jacques +1644526,Patrick Steltzer +1480862,Cody Walker +1784637,Julie Berlin +1497143,Inna Verbitskaya +1743363,Sofia Abbasi +1302054,Jorge Montoro +1457204,Semyon Treskunov +28151,Benoît Allemane +572303,Dafne Schiling +1304968,June Tobin +85589,Sachin Khedekar +74293,David Rees Snell +111467,April Stewart +130260,Adriana Ugarte +1216155,Marta Martin +1900168,Anis Cheurfa +1855572,Chrissie Iles +1303306,Žarko Savić +1828696,William Henderson +1067718,Pascal Yen-Pfister +1302090,Henie Bosman +1792019,Zoe Bleu +1194819,Elsa Maroussia +81697,Nelsan Ellis +1061516,Ricky Sekhon +1439652,Kim Lerche Nielsen +1185415,Lee Kissman +86695,Vladimir Etush +72753,Lindsey Collins +449644,Jana Krausová +1290481,Merlyn Nelson +96482,Sandra Guida +46342,Klaus Detlef Sierck +1709640,La Donna Tittle +1476131,Michael Ware +138768,Michael Laurino +1045302,Ulla Henningsen +1363394,Mikaela Hoover +1707917,Wesley Leseberg +1187038,Leem Lubany +1034698,Igor Khripunov +65920,J.B. Smoove +1204348,Eddie Clayton +147023,Ram Charan +1530423,Kimberly S. Fairbanks +974317,Kate Upton +110770,Aila Pervonsuu +56556,Michael Cassidy +1091591,Orazio Torrisi +1671176,Dorothy Tuttle +107865,Wiktor Zborowski +1347733,José Miguel Miranda +128301,Faina Ranevskaya +1384918,Ken Carter +1147921,Pete Meads +1301262,Mark Angelo +928929,Julian Tepper +145882,Julie Estelle +1762673,Ryo Shinoda +131255,Matt Beeson +142373,Brody Stevens +43643,Frank Lammers +1421423,Griffin Freeman +1034618,Jody Haucke +1634580,Robert Haimer +586759,Vinciane Millereau +933314,Rokhaya Niang +158261,Kaela Dobkin +53486,Carolyn Dando +443219,Taryn Southern +1794805,Deena Driskill +141050,Mark Davenport +1662556,Ida Rohatyn +1707962,Matt Jones +1393534,Mario Tufino +93407,Aleksei Kravchenko +160974,Ricky Kelman +1140572,L.C. Holt +1033622,Pascal Demolon +123408,Lee Na-young +16814,Oliver Kalkofe +179107,Pete Dunn +1747113,Naomi Frenette +1259762,Emjay Anthony +229607,Pauline Frederick +1687931,Kevin Locke +1093955,Santiago Urrialde +1696385,Iosu Galarraga +1503648,Ysa Villar +235162,Katharina Palm +1702793,Lindsey Elizabeth +1019545,Derek Hough +1359659,Clifford Leduc-Vaillancourt +1502867,Eyad Elbitar +1223160,Yin Chang +1544803,Karen E. Wright +1089487,Nina Azizi +83036,Park Bo-young +1037404,Linda Brent +1247770,Takanori Hoshino +583040,Mason Cook +1412927,Alexander Jillings +17901,Chantal Neuwirth +562728,Kseniya Sobchak +50683,Eva Habermann +1861522,Jho Jekins +1096186,Phuttipong Promasakha Na Sakolnakorn +61570,Russell Towery +1029739,Yuichi Mikami +1449377,Patrick Woodroffe +929401,Nattanun Jantarawetch +29071,Jeff Harding +928018,Johan Nordahl +1112458,Zoe Webb +198230,Jon Sharp +86844,Lyudmila Shagalova +89783,Ted Edwards +18446,Mirjam Wiesemann +1085185,Gian +276050,Bonnafet Tarbouriech +1046375,Matteo Spinola +98612,Drew Godderis +594507,Hans Holt +1146414,Kaiti Lambropoulou +1334255,Ben Whalen +1635196,Laurence Chavez +1115143,Georgia Morgan +232202,Birthe Gerken +861986,Tammi Arender +1301260,Michael Mendelson +571573,Atomu Shimojo +1001980,Jourdan Lee +76106,John Travers +1862708,Elena Presti +1813472,Vivien Lyra Blair +168770,Ingrid Veninger +994243,Karita Tuomola +1130965,Joan Merrill +1056226,Chelsea Vincent +1890112,Georgiy Kopchinski +989249,Nzinga Blake +550165,Dhanush +950398,Allen Fox +1653712,Leila Garza Stockwell +1232531,Steve Routman +1330013,Xhemil Tagani +975342,Monte Hawley +137847,Sergei Fetisov +28395,Karoline Eichhorn +1129447,Antonio Quevedo +82125,Sam Hunter +1781523,Joanna Bartholemew +1071556,Kaniha +1224937,Ivanka Trump +931685,Khaled Hourani +1274076,Cliff Dunston +582229,Olga Matushkina +44936,Ginger Lynn Allen +58635,Dominik García-Lorido +1250809,Finbar Lynch +1427453,Chet Dixon +1702125,Farwiza Farhan +1464464,Sagar Deshmukh +1392136,Kenneth Jones +1260036,Chris D'Elia +146245,Kim Hye-soo +1315175,Consuelo Harris +23604,Fernando Villena +235147,Yoshihiko Hosoda +1572122,Peter Brachschoss +78071,Vincent Dubois +1001626,Paul Bartel +1754534,Michael Amstutz +82372,M. dot Strange +1635750,Anabel Lopez +102843,Alan DeWitt +137699,Bert Raudsep +1003360,Shilpa Shirodkar +1209470,Sherina Ishnook +1096783,Paco Rueda +66067,Martin Held +10138,Brian Haley +115996,Svetlana Svetlichnaya +562265,Miss Fielding +1890679,Lisandro Belloto +98179,Robert C. Sabin +64547,Agnès Boury +31467,William Ragsdale +118388,Victoria Cartagena +338484,Christian Fiedler +1418896,Ronald van Elderen +1135441,Stanislaw Latallo +1202152,Marius V. Haas +1482685,Nea Dune +1127782,Charles Dudley +981282,Adrian Galley +64974,Maria Langhammer +64236,David Wells +6709,Jacek Wójcicki +1129639,Thodoros Moridis +564332,Kristen Martz +1719904,Jason Lustig +1179243,Rila Fukushima +225670,Mikhail Tarabukin +1559926,Jeffrey Lipman Snr +1204703,Hector Maldonado +1371707,Vaggelis Alexandris +1359963,Shane Mabrey +82455,Nerea Camacho +1361062,Jeff Gendelman +979116,Miriam Giovanelli +82306,Charlotte Kady +1216584,Jim Hayward +550471,Dominique DuVernay +1872249,Darrell Powell +90375,Christy Cabanne +1469678,Nilam Farooq +1387996,José Antonio Rico +161560,Kres Mersky +184933,Billy Cornelius +108666,Sile Bermingham +206409,Lidia Biondi +222129,James Wolk +42137,Lydie Denier +1107775,Kôji Imoto +1625558,Awkwafina +1630353,Michael London +1674643,Ewan Andrew Walker +1326032,Bertha Pierre +118609,Jennifer Hennessy +1207912,Anthony Downes +60857,Galen Yuen +63914,Tuesday Knight +544262,Juraj Višný +180486,Gina Rodriguez +556369,Oliver Litondo +1140127,Marina Rocco +1769813,Tunisha Sharma +15178,Jimmy Webb +185270,Bruno Raffaelli +153296,Joe Dominguez +554325,Junko Kanô +1837291,Mohammed Kasmi +1079461,John Michaels +1549530,Yongzhong Chen +935839,Mollie O'Mara +1825978,Aiden Linkov +121729,Mary Mackenzie +108283,Miguel Camacho +956518,Jack Woody +19260,Terrence Mann +1734771,Marcel Cerdan Jr. +1545689,Ariel Kavoussi +11932,Jane Tilden +1297520,Wang Qingxiang +1330423,Kim Dae-myung +97571,Heather Sears +1864753,Giacomo Ferrara +95390,Valin Zamarron +86168,Dorothy Hart +1362827,Aaron Landucci +115990,Diana Lynn +1398170,Lorena Liebman +239277,Ralf Dittrich +1307064,Carlo Latimer +1366036,Miroslav Cvrk +1598493,Aurélie Matéo +39053,Derek Bond +47079,John Baer +1378356,Jonas Van Geel +239999,Ray Chang +606215,Charles Kaufman +148112,Kristin Lehman +1297688,Viktors Cestnovs +232536,Puja Gupta +236631,Natalia Akerman +1420968,Shin Young-kyun +1283950,Ashley Sumner +98315,Linn Gloppestad +10028,George Relph +1527308,Elena Jurado +1394473,Mitch Christen +1486825,Ben Mittleman +137005,Boyd Stockman +1200413,Evguenia Ivanova +38711,Robin Riker +1722912,Kazuki Yamanaka +964160,Tom Maden +14722,Arabella Field +11248,Christian Steyer +931320,Pilar Cárdenas +91644,Grant Wild +1179850,Meredith Holzman +1133244,Vasilis Avlonitis +125680,György Bárdy +58608,Shinya Tsukamoto +65639,Diane Neal +1243142,Colton Dunn +197335,Andrea Lewis +1624617,Alex S. Jones +236188,Paweł Małaszyński +170996,Dolores Sutton +148577,Pedro Elviro +145088,Tania Dessources +1471141,Leon Cooper +107864,Aleksandr Domogarov +1534293,Dilys Davies +1028560,Yael Stone +1301258,Brian Faker +575854,Robert Faurisson +228702,Kirk Bovill +168942,Jim Gleason +183255,Big Pun +1569922,Mekhriban Zeki +992823,Honoré Bostel +75543,Karli White +939846,Ted Adams +1813532,Molly Way +1785933,Ruolan Zhang +1196408,Finn Bernhoft +1784682,Rachael Thompson +1183859,Martiño Rivas +1447883,Andy Malone +1092620,István Holl +1362168,Kenny Caperton +584868,Raja +1650242,Colin Coombs +1524033,Aida Rodríguez +145073,Franck Villard +121996,Reza Rahadian +1186519,Larry Gamell Jr. +1155980,John Mooney +71612,Viktoria Winge +1175191,Maria Ligia +131157,Harrison Chad +1454369,Landyn Stewart +564583,Alex Shaffer +52143,Blake Bahner +1178901,Tie Long Jin +47033,Heinz Erhardt +1078407,Jim Goodling +1377012,Hara Aga +1440860,Peter Partida Jr. +1206147,Zoli Dora +21965,Valentina Cervi +232286,Sari Havas +944624,Steve Pernie +568082,Zagros Manuchar +141787,Loyd Bateman +1646447,Carmela Nozza Guizzo +29543,Michelle Phillips +552312,Kenzô Kawarasaki +78694,Enzo Moscato +55471,Samuel Barnett +86076,Rehaan Engineer +126219,Laurie Bekker +573537,Stress +1489162,Pongoanai Naiyananont +186275,Arthur Nightingale +1313583,Levi Miller +1103727,Paul Eenhoorn +567588,Chris Ritter +573835,Alix Wilton Regan +1871105,Kristopher Davis +1036469,Eubie Blake +1796383,Abdulla Hamam +145328,Mehmet Ali ALABORA +1707821,Matthias Schuster +128415,Ernesto Fioretti +132115,Tamar Yerushalmi +81141,Frank Vercruyssen +1317374,Natalia Parodi +25445,Matt Devere +1139899,Sergio Gibello +1083168,Carey Torrice +1157917,Eugenia Yuen Lai-Kai +54935,Merlin Berth +1220520,Claire Goose +105304,Sari Lennick +1011207,Reid Williams +1210033,Éva Gábor +1090417,Elizabeth Paddon +1497111,Nirup Bhandari +556923,C.J. Cooke +994527,Bruna Cealti +1682013,Joseph Poliquin +944283,Elizabeth Lambert +1559756,Yoshitaka Nishiyama +79497,Bruce Thomas +1891499,Hack Hyland +1631582,Jennifer Schemke +1090375,Morgan Krantz +1821512,Parker Lovein +562217,Bront Palarae +1394427,Travis Jeffery +45314,Karen Ciral +1677214,Boris Sevelora +55635,Jaclyn Smith +1393536,Hailey McCann +1133848,Mohd Abbas Khaleeli +240141,Osvaldo Terranova +11601,Léon Larive +1383464,Stuart Robertson +1760886,Arthur Lee +1692082,Glenn Hoeffner +1651386,Miroslav Zaruba +2648,Les Tremayne +591926,Jürgen Müller +1149255,Benny Horowitz +1390553,Taylor Risk +590023,Felipe de Flores +1173836,Roberto Ciufoli +1764373,Linda Marie Howell +61859,Hyun Joo Shin +1398065,Carly Louth +1548303,Forrest Deal +1710661,Liam Hall +119793,Nicholas Tennant +136002,Ben Levine +1299249,Kim Su-hyeon +584965,Matjaž Tribušon +151261,Chene Lawson +6520,Soni Razdan +1559780,Yu An-Shun +110779,Anssi Tikanmäki +1561568,Daniel Barker +563633,Adal Ramones +1556837,Turakhan Sadykova +84250,Arnoldo Foà +148820,Elliott Dexter +227807,Angie Cheung +1278777,Dan Bilzerian +32829,Javier Escrivá +1287084,Jack Farthing +1277975,Peter Hudson +32410,Carlo Ljubek +128859,Hadewych Minis +1279102,David Clyde Carr +140016,Maria Fournery +135532,Danielle Ryan Chuchran +556726,Micki Bertling +1255902,Adam Shapiro +1350846,Tanja Czichy +58881,Philip Boyd +1898253,Krešimir Bebek +1821660,Maria Ho +1634325,Jenna Curtis +1014905,Mohan Kapoor +173668,Peter Sullivan +128047,Edgardo Castro +32303,Maurice Kaufmann +1548581,Kim Foster +82349,Julie Bishop +84429,Audrey Dana +991318,James Thomas Lee Knight +1182494,Maja Maranow +58034,Gavin Scott +1485774,Olivia Rainey +1275524,Michael Saglimbeni +1758519,Sharma Vibhoutee +88298,Song Young-chang +35106,Fabrizio Gifuni +62173,Agam Darshi +56299,Balázsovits Lajos +1099826,Beau South +992822,Christina Holme +54115,Gert Voss +1831995,Daniel James +1717916,Ross O'Hennessy +1385329,Jane Anne Thomas +1422109,Polly Bailey +236348,Maha Abou Ouf +1519549,Dana Solimando +232495,Nashawn Kearse +1469029,Eddie Abdo +1849110,Abdenour Benzemouri +72373,Jan Nowicki +1683793,Hayley Joplin +1734200,Abel Hofflin +23370,Francesco De Rosa +237055,Mary Elise Hayden +1200817,Satoko Date +1138749,Alessandro Giallocosta +1337607,Ziad Ghanem +1497966,Marc Zanetta +105256,Inga Didong Harrie +1599504,Bob Adriaens +1180864,Suyane Moreira +1084791,Yvette Lera +87954,Scott Haze +1221076,Sean Teale +1110812,Chris Proctor +1085658,Buzz Roddy +1318686,Jeanne Basone +72687,Martin Forsström +1482948,Eugene Sonfield +1157259,Tanya Winsor +1050729,Jarred Mickey +1399527,Miltos Yerolemou +1307739,JW Wiseman +13259,James Daly +1323226,Holly Hawkins +1707955,Bruce Gleeson +221553,Anna Walton +29837,Aleksei Maklakov +94814,Susan Dey +1555836,Sofia Ortega +1874728,Kristoffer Jul +1048653,Yuri Khrzhanovsky +224148,François Caron +24377,Jacques Brel +1625347,Tony Brandt +554326,Chitose Maki +1098450,David LeReaney +109847,Susan Stephen +1870828,Iya Khobua +1080812,Rita-Maria Nowotny +101603,Gota Gobert +1835164,Myeva Surjik +591155,Mala Aravindan +1330188,Nar Sene +208515,Teddy Bergman +1364000,Ruth Cherrington +169576,Johanna Black +25160,Jane Marken +159085,Karen Landry +1029079,Aimo Räsänen +1447224,Sara Vickers +131827,Laure de Clermont-Tonnerre +234398,Mark Hogancamp +1115628,James Eccles +1172760,Daniel Rindress-Kay +969432,Caroline Kinsolving +1620980,Annabelle Attanasio +1154127,Demick Lopes +1739858,Jeremy Matson +19704,Nick Bartlett +1498788,Sean Malto +1290466,Barry Keoghan +1734704,Shozo Miyashita +148440,Will Walling +1388525,Marc Anthony Williams +1585965,Hasina Haque +1399526,Maisie Richardson-Sellers +585023,Monique Darbaud +190856,Myles Pollard +1029128,Yvette Ghazaryan +1583291,Patrick Butler +1504916,Daisy Beattie +129878,Gabriele Paolino +1521619,Cecily Chun +1175192,Mauricio Loyola +970737,Freya Parks +1204956,Faye Marsay +1735538,Matthew Sterling Nye +83227,Ron White +240260,Bryan Carney +556047,Halit Akçatepe +1051216,Chuck Saale +232397,Birthe Wingren +150916,Nita Klein +1102624,Nobue Iketani +43554,Josef Altin +571185,Katja Götz +1581226,Ivana Legati +194923,Don Hayden +1695661,Gabbie Hanna +145997,Sanjeev Bhaskar +1394617,Aaron V. Williamson +1239728,Tara Breathnach +140335,Kim Yoo-jung +69508,Kelly Vitz +17889,Władysław Kowalski +88183,Omar Gooding +65624,Matt Hickey +106675,Berenica Cipcus +1651429,Sorcha Garavan +1624615,Markos Moulitsas +27851,Marcello D'Amico +1407405,Gerry Gibson +84034,Clarence Brown +119200,Doudou Masta +102915,Nina Koshetz +1326410,Guido Martufi +1782582,Krystle Alexander +1446341,Harold Ballard +110598,Adrian Grønnevik Smith +1166735,Pino Patti +1683933,Ayzee +1877028,Piero Fondi +132450,José Corbacho +86680,Yuriy Nikulin +1433019,Emma Elle Paterson +1457969,Georges Pitoeff +1335455,Joachim Meyerhoff +53111,Dolores Chaplin +1869470,Racquel Price +577478,Hannah Ware +1147391,Carrie Schiffler +1382870,Maykol Hernández +928135,Rosie Benton +1331195,Bennie E. Dobbins +180225,Beatriz Ramos +46861,Fernando Pardo +1332494,Anthony Padilla +99266,Olga Mashnaya +1368970,Justin Darmanin +195666,Sharon Duncan-Brewster +1082921,Paul Christie +1264320,Gregory Marshall +936098,Thomas Dannemann +1394471,Darren Wyer +56087,Sabrina Harman +49269,Christine Neubauer +1293088,Uhm Ki-Joon +555976,Yayo Guridi +17099,Junio Valverde +1397249,Cihan Ercan +1388665,Neil Samarripa +956320,Meadows White +127238,Chan San-Yat +97131,Fred Vogel +70117,Hilary Thompson +1248522,Thea Gregory +225296,Savita Prabhune +1435104,Sehsuvar Aktas +1618649,Michele Gualdi +111349,Henrik Danielsson +1660700,Ross Pino +129247,Orna Banai +34264,Marco Ferreri +78665,Matt Riedy +28627,Sophie Renoir +1905798,Agatha Hofmanová +237521,Yevgeni Vesnik +172069,Chadwick Boseman +1246472,Zarah Mahler +562264,Pearl Sindelar +116992,Ignacio López Tarso +89127,Franca Parisi +1446106,Tyron Ansuhenne +1170215,Rosemary Ames +34185,Willie Best +240759,Andoni Gracia +1619167,Birdman +1433102,Keiko Natsu +1031944,Lawrence Michael Levine +1477358,Frank Menskau +1538171,Piers Dennis +1190205,Olga Aroseva +1281582,Marcello Conte +108677,Katrina Mathers +1269279,Sarah Gaugler +569842,Mindaugas Papinigis +131631,Duccio Camerini +1087345,Bob Christo +1425274,Mun Suk +116265,Jack Doolan +1187306,Saul Gilbert +138027,David Anzuelo +1150010,Lotten Strömstedt +582116,Jennifer Waris +1321913,Guy Oren +1186090,Tatiana Rojo +83926,Kazuko Katô +24523,Michael Khmurov +1031782,Gerald Kelly +1167392,Joachim Kindscher +1599247,Sargon Yelda +132857,Eric Wareheim +76792,Freida Pinto +1813534,Spencer Rhys Hughes +2984,Badria Timimi +1302325,David Michael Paul +82658,Richard Hammond +1037151,Meghan Falcone +1039593,Ryan Hooks +1371018,Inna Muratova +1297697,Vadims Grossmans +37169,Jon Kenny +1209486,Helen Harmon +927769,Magne Håvard Brekke +60715,Kirsten Prout +931356,Kirk Calloway +1836941,Esperanza America +962478,Kongdej Jaturanrasamee +146380,Noë Sampy +1724362,Billie Fairchild +138884,Randall Deal +88592,Maxim Gaudette +1531618,Jay Washington +1270458,Molly McGlynn +1267285,Courtney B Turk +587512,Larisa Damaskina +99127,Shanti +1016049,Gian Carlo Fusco +128446,Renato Cesa De Marchi +1133846,Gautam Belur +544289,Václav Trégl +206155,Luke Bromley +85972,Kurush Deboo +591487,Zbigniew Lesien +14130,Olga Engl +81848,Miguel Rellán +228349,Walburga Gmür +32241,Angela Rawna +80184,Jeananne Goossen +1784282,Ladislav Dirda +563461,Stan Brakhage +1518855,Karen-Margrethe Nyborg +110763,Pentti Auer +117479,Michele Montau +1440327,Yiu Kin Kong +1793072,Moe Kelso +1629644,Cheung Lap-Fung +55960,Louis Turenne +1079084,Lola Tash +1794575,Tarun Keram +122758,Ei Kura Albert +1339648,Bita Farahi +38038,Peter Martin Urtel +1497980,Roosa Söderholm +1469171,Sasa Barbul +1371041,Callum Turner +143673,Yuliya Aug +578845,Sayat Issembayev +129441,Elena Bouryka +229313,Nick Nevern +41316,Igal Naor +1283557,Maurice Ittershagen +90515,Blerim Destani +118989,Takahiro Tamura +57801,Christian Sievers +156321,Brian McDermott +1313159,Logan +1719892,Audrey Marlyn +104306,John Rae +116572,Katelyn Wallace +103807,Victor Adamson +1034470,Arjun Kapoor +116264,Tom Hughes +491911,Moshe Kasher +16775,Janne Hyytiäinen +80179,Noah Bernett +1528514,Noelle Foley +1280040,Bumb Roberts +1848670,Heloisa Tolipan +41047,Jan Peszek +146820,Tibor Molnár +106934,Anjelah N. Johnson +592197,Donatella Turri +1719595,Molly Hager +1174944,Rachel Songer +1069590,Marcuz Jess Petersen +1680859,Alexandra Lovelace +1123786,Fred Menut +5409,Mario Passante +168974,Julanne Chidi Hill +1210037,Raashi Khanna +1853252,Nelli Maksimova +1199913,Cristina Hauser +1519448,Jerzy Goliński +1195788,Mads Ole Erhardsen +1205578,Rebecca Galarza +1636787,Christopher Butler +1295108,Cory Curtis +55154,Hardee T. Lineham +136898,Joey the Mule +1724562,Erin Allegretti +1752447,Cristina Odasso +70182,Anne Brochet +1118134,B. Cole +1071142,Eva Herzig +1372293,Helen Abell +1281197,Jassa Ahluwalia +50739,Enzo G. Castellari +78402,Masakazu Morita +174560,Peter Mark Vasquez +39006,Peter Chatel +1367946,Courtney Compton +543944,Boris Chirkov +1394442,Toby Fuller +1108137,Carlos Jorge Guerrero +131025,Warburton Gamble +1226535,Jessica Kirson +1269243,Carlos Santurio +553508,Richard Perez-Pena +73380,Eline Kuppens +1479336,Frid Kjelsdatter Klausen +43798,Peggy Mount +1672069,Viviana Cardenas +563081,Nikolic Sacha +54072,Zdzislaw Karczewski +1249957,Mike Quinn +1289331,Mari Carmen Sánchez +1648564,Christian Bables +494552,Kamlesh Sawant +1567893,Charlie Gudgeon +1271652,Hari Mina Bala +88795,Bobby Darling +110086,Ashok Kumar +117744,William A. Stewart +120389,Rita Vale +1074067,Hélène Chanel +1522147,Rick Pendzich +53588,Billy Hartman +1003819,Angelina Lyubomirova +116783,Rena Tanaka +48148,Christina Plate +1351952,Simona Caparrini +1114055,Christian Mulas +1187533,Macarena del Corro +1571463,Egy Fedly +1741340,Bae Min-Jung +1663380,Nantia Fontana +228234,Junko Minagawa +1211262,Adrian Mulraney +1145329,Leonor Gonzales +16531,George O'Hanlon +1263719,Darrin Dewitt Henson +1024958,Allan Laurel +1271856,Kamil Bera +25345,Lou Doillon +582603,Alpay Atalan +1361560,Beth Aubrey +1033170,Puneet Cheema +144098,Sandy Gore +1242792,Chris Lilley +1207914,Sandy MacFadyen +54696,Joe Nunez +103290,Juliet Reeves +1522645,Daniel Dama Penaranda +1209069,Noémie Rosset +96139,Teresa Celli +1354545,Mark Dunne +65749,Catherine McGoohan +102775,Coby Bell +1650212,Jim D. Johnston +1169644,Bianca Malinowski +1436392,Kavubu Muhammed +1425206,Joe Cipriano +173219,Rick Dees +98875,John Kyle Grady +1161711,Jon Lee Brody +11954,Michael Hanemann +121618,Allan Hyde +208679,Anja Savcic +1880345,Carlo Ragone +1090171,Lisa M. DeHaven +41190,Rona Hartner +1582459,Cullen G. Chambers +119306,Jerry Austin +1511962,David Eggers +1384097,Volker Niederfahrenhorst +1719607,Dillon Daniel +70445,Scott Yaphe +1711166,Nathan Davis Jr. +27883,Loes Luca +541562,Georg Skarstedt +1743150,Bamboo Chen +566379,Gina Christian +103425,Kate MacKenna +1882333,Ronnie DeVoe +897996,Girija Oak +1468401,Eddie Hogan +147632,Annedore Kleist +1243500,Gigi Ravelli +1335464,Julia Primus +1820121,David Forrester +1334386,Elena An +1008345,Aleksandra Danilova +1880151,Stephanie Langston +27664,Ahmed Boulane +125011,Saburo Date +65510,Mayumi Tanaka +230578,Soraia Chaves +1343615,Leonardo Messerklinger +1143886,Carmen Ruiz +1217865,Erica Luttrell +1768631,Anisa George +1519026,Teng Shen +95362,Blair Bomar +1033632,Victória Guerra +931945,Nick Krause +1895599,Chad Damiani +1235899,Richard Zobel +83708,Nora Kirkpatrick +126967,Venera Rakhimova +584278,Indhu +1203576,Franco Jamonte +1728944,Foad Abed-Eihadi +974849,Pepe Soriano +1796425,Ian Geldart +1668083,Maria Darkina +1494463,Leandro Muñoz +934299,Tella Kpomahou +110713,Jeetpal +1734256,Martha Cameron +145163,Jean-Luc Porraz +551504,Kentarô Sakai +1388967,Mir Murad Bedirxan +21417,Audrey Marie Anderson +1518916,Calum John +52283,Paul Dobson +1468065,Salomé Richard +145409,Kadir İnanır +200794,Anne Sward +1041040,Marina Magali +1467696,Pauline Haddon +216782,Fernando Chien +1685146,Ramiro Orci +35473,Ramsey Campbell +121207,Terry Frost +583708,José Antonio Valdelomar +1464766,Pinar Çağlar Gençtürk +568023,Laura Fabregat +138091,House Peters Jr. +1611257,Michel Bogaerts +79609,Stéphanie Lapointe +106641,Graham Kosakoski +1313137,John Newkirk +1071993,Giancarlo Badessi +131420,Wray Crawford +42193,William Paul Burns +300192,Michel Valette +84274,Robin L. Watkins +1537978,Mary McDonald-Lewis +65165,Dorit Sauer +1343375,Sandra Larsson +230152,Zoé Duthion +236598,Kara Wang +475357,Amber Clayton +1205806,Rex Weyler +1874739,Boggie Claus +1192752,Rudolf Schock +46455,Jacques Commandeur +87165,Jennifer Holland +48960,Mary Philips +1329703,Mathieu Quesnel +1047773,Lee Ernst +12829,Richard LeParmentier +223079,José Elías Moreno +176282,Simon Lack +1219312,Dot Jones +114761,Tim Rose +1862479,Francesco Gabriele +1117472,David Kemp +1507607,Andrea Day +88917,Mikko Kivinen +134439,Roger Miller +1470370,Allen Keng +11190,Renzo Montagnani +1364494,Thomas Owen +1724697,Normen Odenthal +107408,David Burke +1518854,Mikkel Hede +79259,Johan Hedenberg +1769119,Jonathan Rozen +590879,Roberto Farías +1090168,Ken Davis +1611438,Bettina Amato-Gauci +1741740,John Slade +1213935,Judy Farrell +99877,Yuu Mizushima +1476851,Bent Maltha +1764157,Lisa B. Miccio +1511958,Charles Cain +21912,Michael Tse Tin-Wah +33386,Danny Arroyo +1483385,Shriya Pilgaonkar +938560,Serene Hedin +93547,Artyom Semakin +1833231,Dylan Magenheim +1052214,Susan Boyd +1561242,Leon Badenhop +1428447,Maxime Mailloux +54738,Jack Huston +1588815,Jurate Sodyte +1511959,AJ Cedeno +95366,Derek Cox-Berg +1181302,Brett Dalton +226504,Tim Wong +1815693,Jacqui Ainsley +54694,Clement Blake +937387,Jonathan Murray +1152471,Chin Chun +1779680,Yulian Shchukin +1428880,Lucía Pollán +1766054,Stephen Halliday +1008750,Niko Nicotera +1528379,Daniel Méndez +1095971,Patsy O'Byrne +1631639,Meg Wittman +115700,Takumi Saito +236302,Dylan Sprayberry +225092,Gerd Hegnell +1879670,Mikee Loria +1317592,Jalmari Parikka +1276096,Helen Hanft +119812,Dalila Bela +1544810,Gail Cook +31944,Julian Somers +111543,Are Strand +1323810,Ali Ahn +1410481,Cliff Moylan +965056,Simon Pigeon +95540,Dov Navon +1818029,Carol Dupuy +1615202,Graham Roden +135168,Stephen Bekassy +226169,Linus Aaberg +1270686,Natalia de Molina +5599,Mustafa Enver Akin +1794931,Arrazolo +1185450,Gail Haworth +31779,Donald O'Brien +1291693,Jack Justice +1295552,Nevena Kokanova +954443,Vernon Rich +98522,Riley Keough +1583294,Steve Hodge +239965,Cordereau Dye +1242036,Minoru Inaba +1809786,Zee James +1822969,Josiane Pfeiffer +90045,Jonathan Lund +935943,Sebastian Breaks +1093937,Lars Skramstad Johnsen +86727,Sergei Yursky +128165,W.C. Robinson +1429731,First Playgoer +1622939,Ba Duo +564330,Lilith Eve +584562,Guy Mariano +86462,Kirk Jones +1141413,Craig Butta +125787,Shahin Sean Solimon +224456,Marcella Mariani +1121937,Samantha Hill +583448,Ewa Dalkowska +1581029,Miti Jittamaat +1902465,Chico Melo +126913,Sonya Thompson +1688797,Andrew Readman +1897705,Jake Huang +1592940,John Churchill +1609059,Michael Winder +1806602,Brian Clackley +934578,Paul van Soest +143534,Richard Bailey +1304487,Magnar Gustavsen +126125,Bill Plympton +1321064,Silvana Fallisi +1347934,Togrul Meteer +1016025,Peter Eggers +551477,Michael Bardach +552696,Viviane de Muynck +185822,David Hounslow +1683150,Taryn Kyaze +74439,Sian Breckin +1137900,Gabriela Kownacka +1187106,Amber Stevens +1316034,Andrija Mrkaić +1794894,Thomas Kemp +1567922,Olga Seryabkina +80491,Tommy Ramone +1644629,Justin Matthews +1283059,Paul Craig +144972,Bogusław Linda +124624,Massimiliano Gallo +141433,Steve Little +1224846,Tyler Hynes +86697,Ruslan Akhmetov +1119034,Jōji Ohara +1797362,Lyn Donelson +1469455,Vanilla Yamazaki +1709734,Ling Aum +99530,Nerio Bernardi +1187350,Doris Buchrucker +1691845,Leah Hennessey +1623851,Ivan Lagutin +467645,Boyd Holbrook +1630647,Zhan Yu-Hao +1298420,Jewel Smith +1615102,Kim Seong-hee +131447,F.J. McCormick +1890458,Fred Fergus +1476771,William Salicath +570230,Hanny Schedin +238308,Anna Buklovskaya +84172,David Berón +17920,Kathrine Narducci +1753244,Maryanne Cummings +1397928,Yvonne Horner +1072750,Fahadh Faasil +1380653,Megan Tracz +25157,Marcel Herrand +141076,Santhanam +1602045,Journey Smith +94769,Kevin M. Horton +1050032,Kimberly Pfeffer +262849,Alicia Hermida +1242516,Reggie White +142584,Jonathan Hansler +1014979,Yekaterina Shcheglova +1089492,Andrea Magro +36665,Simon Woods +199070,John Blythe +17191,Sarah Buxton +53561,Dani Behr +939083,John Brown +1207252,Jodie Landau +1065761,Chen Sicheng +50760,Julie London +71897,G. Alan Wilkins +86626,Aziz Ansari +1764136,Peter Karavoulias +192360,Deirdre Donnelly +1868382,Vanna Brosio +1375800,Tom Feary-Campbell +1380773,Ana Roca +101814,Christopher D. Ford +71281,Paul Kaye +937782,Nicolas Godin +278354,Leandra Leal +1665928,Zaza Kolelishvili +1481122,Takashi Narita +33360,Jean Rogers +559729,Sérgio Mallandro +80001,Andrew Stewart-Jones +52291,Tegan Moss +1174192,Edith Halleran +62384,Sybil Temchen +1683130,Tony Fraser +224187,Katelyn Tarver +1870829,Mzia Makhviladze +1387157,Marjan Brulc +1192369,Gints Andžāns +89165,Michael Emmet +2576,William Tubbs +933329,Patrizia Focardi +233682,Mareike Carrière +105870,Fausto Russo Alesi +129568,Isabella De Bernardi +1890493,Amber Doyle +191462,Michael Michaud +112140,Etsuko Kozakura +556788,Sôkô Wada +3605,Charles Williams +33179,Eddie Acuff +236857,Marina Ladynina +1200477,Lauren Novero +1650191,Andrene Ward-Hammond +1217851,Rick Miller +1371496,Michael Liebmann +1589678,Ana Sofia Da Silva +82775,Micky Dolenz +102399,Dawn Wells +1862907,Peggy Lord Chilton +1738448,Allen Theosky Rowe +522533,Maria Bock +587354,Gísli Örn Garðarsson +1426888,Huan Jhih-Cyuan +576126,Diana Malahay +1018041,Gilbert Esquivel +70633,Amanda Redman +1477351,Anders Sundby +213507,Sanae Takasugi +86868,Elena Knyazeva +145553,Devanny Pinn +85423,Andreas T. Ramani +37338,Dieter Schidor +1118718,Ari Hoptman +1231705,Jonathan Palmer +1018835,Yevgeniy Koshevoy +1357867,Anthony Bravo +1167054,Margot Couture +1270179,Sadie Alexandru +1013068,Dolores Camarillo +107577,Niklas Hjulström +97247,Leslie Weston +145247,Phoebe Tonkin +1807474,Evans Muthini +97983,Sôjin +235416,Sarah Snook +1895598,Peter Mark +1384988,Helena Notkonen +59285,Ezra Buzzington +1475114,Cacau Protásio +64552,Cédric Zimmerlin +1052107,Niall Horan +1648790,Cheamney Sorvan +1606879,Maddly Bamy +100754,Ian Cullen +127596,Kirk Fogg +931785,Hanna Alström +41355,Dimitri Logothetis +116263,Christian Cooke +83352,Mircea Monroe +1075113,Ernst Umhauer +940175,Betty Beall +1588823,Kamile Petruskeviciute +143348,Utako Mitsuya +73618,Anna Alicia Brock +93247,Katherine Stewart +1746937,Troy K. Weston +1891531,Laura Lee +68454,Erik Paaske +553700,Ana Mulvoy-Ten +1186521,Demetrius Stear +18871,William Bramley +1796396,Boris Sichon +1589710,Sabrina Jones +33470,Roland Alexandre +1295193,Arieh Worthalter +1849989,Ilana Cohn +1394238,Ümit Demirbas +86064,Mukesh Tiwari +133091,Xavier Lafitte +8823,Raoul Walsh +940985,Nora Nicholson +1449410,Kristen Rutherford +1238990,Lee Bo-young +17405,Martin Feifel +1109588,Nick Mundy +1507600,Dimitri Lekkos +1581560,Jeremy Wikander +584238,Sukanya +1192161,Corey Hampton +144125,Rex Williams +1146915,Sigmund Sæverud +1797386,Thomas Hull +1090872,Bob Burns +88817,J. D. Chakravarthi +1484694,Boni Yanagisawa +1318707,David Alpert +1699989,Arun Kurian +1426308,Pierre Grammont +49495,Wolfgang S. Zechmayer +151949,Rosie Cavaliero +543733,Zach Rand +130589,Arunoday Singh +1578612,Meghan Strange +106581,Huang Jue +47933,Adam James +1295459,Kim Min-young +1314062,Lisa Marie Dupree +117026,John Hiestand +78888,Mary Rachel Dudley +54706,Charley Rossman +21832,Jasmin Gerat +543727,Chris Krzykowshi +1367225,Brenden Whitney +1127393,Rosetta Pasquini +42738,Demetra Hampton +157496,Jim Bailey +1240784,Rob Ramsay +22134,Ritch Brinkley +223977,Terence Schreurs +86701,Pyotr Repnin +1498233,Caron Barnes +53209,Aaron Fors +1548525,Oscar Steer +136028,John Segal +1381828,Donna Sarrasin +1630313,Frank Rada +79611,Alice Morel-Michaud +1545503,Greg Violand +537701,Margaret Bannerman +936894,Markku Huhtamo +1537588,Ruzena Vlcková +1096528,Daisuke Hirakawa +1285549,Neeraj Kabi +106640,Kate Todd +1194965,Kevin Kolack +95988,Jonathan Nation +1795683,Britton Purvis +180425,Jessica Blank +111218,Marek Daniel +1792879,Andrew Crawford +40922,Steve Carlson +1036812,Jane Ball +630098,Ramesh Deo +557821,Herb Alpert +18764,Anna Palk +25655,Zoe Telford +90397,Clay St. Thomas +84215,Jackson Rathbone +1782605,Josh Gibson +1840497,Jon Quested +1635140,Ronald Joe Vasquez +1678716,Eli Zagoudakis +1806600,Jim Gunn Sr. +1247772,Yuya Miyashita +170635,Andy Buckley +67422,Peter Jordan +1324189,Jean Turlier +86872,Vasiliy Utkin +1024815,Bob Marley +1808630,Richard R. Corapi +1010222,Jill Donohue +933009,Jenn Dees +134686,Bradley James Allan +559970,Marius Jampolskis +1728958,Steve Bardrack +584733,Suresh Gopi +61515,David Austin +1662169,Atharva Karve +1882,Martin Armknecht +572407,Courtney Bell +79606,Marianne Fortier +1744818,Elbas Manuana +1426831,Dwight F. Lay +1281377,Tao Lin +1078344,Attila Kaszás +85156,Caitlin Wachs +1403148,Ricky Bell +564331,Fabian Gordon +937836,Ma Chin-Ku +1150385,Michael Parducci +120251,Shanna Forrestall +87676,Anna Drijver +552243,Nikki Glaser +1536670,Daniel Newman +591087,Ramu +1061519,Nicholas Tecosky +28896,Jack Wouterse +1211877,Dave Shelley +1536856,Elliott Mason +1654957,Rosalie Michaels +57472,Gianna Maria Canale +942202,Bob Richardson +568083,Niina Koponen +39323,Michael Ande +1410055,Burton Ritchie +1643045,Dennis Sjöberg +1181354,Ilfenesh Hadera +1130507,Cláudio Mamberti +1266247,Dennis Pace +1203440,Mona Pirzad +1569519,Lexie Contursi +56468,Mariano Venancio +46931,Blair Hickey +1897709,J.P. Mulcaster +1409030,Milad Eghbali +1745374,Elijah Berle +78802,Fred Goessens +1034681,Tye Sheridan +1384558,Jakob Bieber +1222992,Eiza González +1691945,Natalee Arteaga +1044945,Josh Evans +22179,Andreas Dorau +216448,Hiroki Yasumoto +1269617,John Woodbury +1260725,Giannis Vogiatzis +119514,Sergio Leonardi +583290,Irina Bezrukova +1394686,Malina Weissman +112993,Hugh Harman +148003,Frank Opperman +1295141,Mariko Takai +136650,Andrzej Konopka +1185445,Joey Campbell +138880,Jeff Toole +24524,Krzysztof Pieczyński +1438909,Flynn Lockwood +36323,Leonie Brill +1189227,Jennifer Joan Taylor +54676,Jannis Niewöhner +1070339,Skylan Brooks +108683,Scott Hanks +503842,Aadukalam Naren +87471,Bill Wallace +95947,Sam Corry +1226302,Jillian Bell +19679,Mary Gail Artz +1060330,Nikki Barnett +20580,Joe Manganiello +1352173,Rudolf Somogyvári +1467997,Conrad Choucroun +1149324,Caroline Bourg +1602318,Aitor Legardón +1547785,Alzbeta Jenická +124634,Lafe McKee +8851,Whitney Houston +1599988,Kaho Mizutani +142269,Nino Segurini +1409007,Wayne Thomas +1089522,Hayden Phillips +1771713,Allie Rivera +189719,Christine Willes +1862814,Claudio Bultrini +180682,Falconer Abraham +1271684,Kamil McFadden +1265470,Ines Brigman +137866,Ryan Keely +1465183,Elaine Partnow +583709,Jesús Arias +1481151,Matsue Ono +1172841,Keiran Schwerdt +1885832,Stephanie Rae Anderson +1123382,Hal Orlandini +1173683,Saska Liimola +1550587,Tomer Kapon +30408,Artem Shalimov +26679,Damien Thomas +93814,Vanessa Gould +1163658,Aleksey Maslov +1264961,Brian O'Doherty +18811,Laurence Badie +28889,Theo van Gogh +201,Michel Gondry +135075,Tonio Arango +1388925,Buppha Witt +133926,Alexander Conti +1377678,Rachel Wulff +1466419,David Siskind +1423663,Olivia Grace Applegate +1318900,Joey Perillo +229136,Nadia Barentin +36765,Katja Flint +1122546,Manuel Dubra +60901,Toby Hemingway +33082,Beppo Brem +145164,Gilles Detroit +11182,Veronica Clifford +1164964,Sarah Cohen-Hadria +587131,Joe Bonomo +1383169,Alan Resnick +1207292,Richard Whiteside +1207154,Ruby Williams +216149,Marvelous Marvin Hagler +1695992,T.J. Martinelli +1051037,Nenad Pećinar +1270300,Lillebil Nordrum +262720,Joel S. Keller +30963,Luis Barboo +994161,Michael Audley +148589,Silvana Pampanini +127014,Claudia Zanella +370383,Nicky Naude +1426167,Michael Vardian +1106760,Ricky Rajpal +147965,Jamil Jabril +1193687,Stephanie Sarreal Park +141496,Bart Baggett +18816,Jean Lanier +1323458,Aleksey Maslodudov +1071357,Jiří Maryško +1254588,Deborah Maclaren +37760,Kenny Doughty +73617,Gabrielle Lynn +99288,Yevgeniya Simonova +235869,Vladimir Steklov +1836945,Caleb West +1053261,Una Kavanagh +248053,Darlene Fields +1879744,Rosario Minardi +239989,Christian Payton +1545546,Marco Zingaro +1895592,David Rolas +1286813,Sol Vinken +117167,Billy Lush +1366484,Michael Jonsson +1517229,Mathieu Schaller +262301,Alberto Farnese +1487400,Marta Nelson +65773,Chris Trussell +122668,Rafal Królikowski +1777469,Don Antonio Mazzi +1905159,Chantal Hunt +1066218,Yozoh +142898,Mr. Greenstreet +1283872,Mella Carron +1469306,Daniela Ramírez +1564286,Krzysztof Chmielewski +76232,Madhuri Dixit +1658599,Babu Anoor +126445,Giulia Amato +1797411,Dick Middleton +227315,Liana Billi +87597,Mark Hengst +1204381,Felix Delgado +112138,Yuko Mizutani +40251, Therese Giehse +1073156,Michael Quast +564327,Jennifer Loomis +1862889,Brett Marston +1330449,Jo Jae-ryong +1417494,Kharaj Mukherjee +38037,Marius Goring +1165562,Kimberly Klaver +1426877,Paul Chan +19327,Anne Shirley +1753493,Michael Messner +568086,Heikki Ranta +79172,Henrik Schyffert +100425,Mónica Zanchi +54326,Émile Berling +95559,Dror Keren +328424,M.E. Clifton James +934915,Yes-R +1618041,Peter Lau Wai-Hung +567576,Sergey Veksler +1230738,Hopper Jack Penn +1531596,George Willborn +39256,Im Ji-eun +1097177,Christopher Knott +1848567,Luke Roessler +590274,George Carney +285038,Johnnie Guy +236985,Joy Jones +51251,Hugo Gottschlich +1212973,Harry Basch +49939,Davis Roberts +98503,Hugh Sanders +160351,Mark Withers +1859517,Rita Abela +47689,Philip Strange +150622,Sümer Tilmaç +101902,Cindy Eilbacher +110581,Natasha Little +13556,Betty Compson +14103,Mark Blum +937562,Otto Wong +1000837,Rae Latt +1361888,Fernando Abadie +1456290,Gita Reddy +1525015,Briana Henry +143118,Zizi Cosme +99269,Leonid Yarmolnik +1752149,Lucy Van Oldenbarneveld +1863673,Kris Sidberry +1256326,Penpak Sirikul +1051828,Shirley Turner +584567,Anne Collette +1623584,Erol Batıbeki +46932,Tom Billett +1387873,Victor Cabal +236751,Consuelo Ferrara +233874,Ida Meda +230587,Kimberleigh Stark +1047649,Ed Skrein +1511966,Cindy Ho +1783706,Charlotte Grant +1413102,Darius Stoica +1842175,Priscilla Kaczuk +98670,Vinnie Bilancio +75569,Julie Ordon +85874,Manoj Pahwa +1612130,Brian T. Finney +932877,Ирина Шевчук +1431541,Ellen Bergström +1784329,Phoebe Dohrn +1621707,Cindy Tian +61914,Zoe Ventoura +1278132,Mike Sarne +83910,Thora Hird +42533,Justin Carroll +1046862,Song Ha-yoon +1024856,Ole Meyer +1295917,Nadine Germann +130500,Wenders Li +544264,Valtr Taub +51749,Robert Dölle +1124537,Tsubasa Kobayashi +1798996,Kimberly Howard +4536,Hansa Czypionka +928011,Erica Löfgren +1113513,Michele Lourie +559663,Dajon Young +88145,Peter Schrøder +1696935,Yves Lavigne +1650409,Slim El Hedli +125527,Yang Hao +1769243,Stephen Landis +1904024,Emmanuel Barrouyer +1373280,Alexandre Nguyen +1765436,Jon Bonzor +1570611,Jordan Van Dyck +97244,Bruce Belfrage +90813,Alisen Down +1672382,Lauren K. Solomon +1783678,Milorad Djomlija +20304,Jeremy Crutchley +1178881,Rie Minemura +1519565,Jeffrey J. Bateman +1384357,Katy Breier +140519,Kristel Verbeke +1513658,Rouven Blessing +1903383,Yuta Kazama +38991,Walter Bockmayer +150842,Václav Jiráček +118985,Junko Ikeuchi +1375981,Jack Norman +101244,Lori Lively +106612,Michael Bryant +1168704,Amy Johnston +94046,Hector Echavarria +1056210,Shaheena Langoo +1796928,Helena Rupport +590248,Mitsuko Ichimura +101812,Duncan Skiles +1138751,Gianni Capaldi +1278517,Mark Roper +2831,Jerzy Trela +90718,Ildiko Ferenczi +119933,Gerard Kennedy +140903,Peter Iasillo Jr. +1724687,Theo Koll +1630510,Vladimír Skultéty +559576,Cornelius Schwalm +29978,Karl Dane +938494,Giuseppe Chinnici +103784,Britt Semand +1839929,Daniela Guaraná +1562090,Carola Niederhuber +211080,Tom Jansen +89681,Polly Ann Young +1003953,Amruta Khanvilkar +1794928,Alejandro Rodriguez +58787,Giannina Facio +1125697,Lyubov Teplova +55824,Murilo Benício +1208801,Luis Medina +1863890,Leco +11257,Dagmar Sachse +1538851,Kit Connor +1905544,William Aguillard +1549532,Linyan Liu +225813,Terje Ranes +1762434,Deborah Ann Young +80650,Martha Sleeper +1719593,Jared Goldstein +1848081,Paul Randall +1871291,Dolores Calò +50628,Giovanna Di Bernardo +1718171,Myrom Kingery +1555828,Lin Wen-Wei +1759923,Gabrielle Menard +115684,Sia Berkeley +95464,Jonathan Torrens +1408591,Marcello Caridade +131735,Myles Cranford +1294143,Georgiy Martynyuk +1053727,Guntram Brattia +1335342,Jae-seong Jo +512316,Jacob Latimore +85669,Dia Mirza +976536,Kristo Salminen +98459,Karen Kadler +1484028,Ikuo Kawamura +1196494,James Staszkiel +209125,Brett Gentile +585374,Singampuli +1694299,Alexia Moyano +1433909,Don Wilson +112666,Nathan O'Keefe +1200231,Anna Wallander +35622,A.J. Khan +102515,Alison Carroll +1414279,Poon An-Ying +129714,Kisha Sierra +1815695,Nicola Wren +374832,Mariano Peña +1608399,Esther Zynn +213327,František Šlégr +1879939,Henrik Braekhus +221840,Sara Canning +1508171,Elise Couture +1420884,Esther Brodelet +1446498,Jamshid Hashempur +1319616,Carrie-Ann Savill +237989,Bharath Srinivasan +1171055,Александр Гордон +10370,David Lochary +990278,Gina Bramhill +5009,Peter Benson +1852,Jan Josef Liefers +1523991,Mary Ann McCarty +147424,Jayne Ashbourne +1333561,Belhe Zaimoglu +1037356,Deepti Daryanani +1117288,Margo Norton +213441,Leung Wing-Chung +205114,Aaron Perilo +221600,Monica Raymund +46460,Peter Blok +1559638,Hayden Rolence +1742839,Phillip Gormley +957038,Nigel Godrich +1891543,Riley Hastings +233520,Rie Tomosaka +1299192,Craig Tate +1496064,Stephanie Conkle +1286527,Logan Riley Hassel +83969,Ary Abittan +1200415,Andrew Stehlin +1445675,Kate Forbes +1467911,Merrilee McCommas +1110405,Mackenzie Davis +181851,Amy Hathaway +1716340,Louise Ménard +71377,Bruno Lochet +1373902,Nocki +1293151,Camilla Gottlieb +128042,Nana Natsume +1831693,Maya Ri Sanchez +1326318,Nikita Brennicke +1467844,Speirs Ruskell +64550,Renée Le Calm +1302195,Dea Flowers +17718,Marie Zielcke +4156,Stephen Shellen +562730,Danila Kozlovsky +502397,Aylin Tezel +76165,Kentarô Shimazu +1031789,Edo Walker +1657936,Jerome Collamore +48683,Anna Böttcher +1070461,Debbie Laster +1237959,Rachelle Ann Go +1195669,Rosina Kambus +127406,Vasili Vasilyev +1255540,Allison Williams +67905,Dorothée Berryman +559503,Cornelio Villagrán +1025516,Leopold Hainisch +1569980,Yousef Erakat +93328,David Frost +1891536,Paul Crumby +1306115,Roberto Matamala +62009,Josh Wolfe +1278643,Brett Donahue +450954,Suman Shetty +1139648,Brad Morris +1489474,Aleksandre Omiadze +270653,Chantal Conlin +133699,Jiro Sato +1400265,Tony Merlo +1855530,Rose Marie Klespitz +69338,Liz Snoyink +933139,Rita Assemany +1040615,Sunil Munshi +134070,John McMahon +89313,Eugene Jackson +574093,Jonathan Bitonti +167566,Michael Potts +1172572,Ajay Jadeja +1173681,Auvo Naukkarinen +1140131,Giovanna Salimeni +73998,Martin Reinl +151482,Byron Morrow +91538,Melinda Y. Cohen +1399607,Faye Tilles +1869029,Zack Mines +150192,Minnie Devereaux +1582462,John Ryan McLaughlin +1588320,Masayoshi Umewaka +51940,Benjamin Wilkinson +1169501,Maria Uusikylä +225015,Vitali Bobrov +33818,Aldo Barberito +1195524,Fernando Iglesias 'Tacholas' +1619990,Hiroko Mine +141096,Ann Ault +63698,Mitsuki Koga +572037,Gretchen Lodge +543848,Wang Xue-Bing +2960,Amr Waked +1604104,Nancy Jo Perdue +1619024,Zsuzsa Ferdinándy +1860375,Donnet Dumas +1796433,Sebastien Teller +1418257,Cole Dorssers +143739,Kirill Shchennikov +1335527,Michelle Mylett +1530410,Noboru Kusakabe +116155,Ere Kokkonen +86069,Neha Dhupia +1114545,Jón Svavarsson +1178309,Roger Ortman +1746877,Clare O'Malley +109139,Sarp Apak +119985,Otis Greene +932497,Robert F. Kennedy +1630264,Robert Pavlovich +130333,Peggy Converse +113686,Jameel Khan +1184328,Pedro Granger +18051,Manfred Zapatka +1161018,Qi Xi +239580,Paul Grimstad +1020859,Sung Dong-il +45758,René van 't Hof +127040,Franco Franchi +32522,Gert Günther Hoffmann +131183,Alexandra Powers +2379,Alexandre Mnouchkine +236144,Mick Besson +125696,Antonio Gerardi +1267384,Scott Higgins +1504913,Warrick Brownlow-Pike +96200,Alan Peterson +56675,Anson Mount +74510,Joel Shock +85807,Krister Henriksson +1190066,Melissa LeEllen +1640627,Alexandru-Victor Nemteanu +1286544,Ariana Sloan +39428,Stanley J. Reyes +81668,Rachael MacFarlane +1128887,Keri Tombazian +1319778,Mario Theis +223080,Cesáreo Quezadas +72780,Maria Nazionale +148509,Frank Rowan +10670,Maryam d'Abo +68759,Terry Farrell +1243319,Takeshi Watabe +4463,Klaus Bondam +1424201,Nicholas Daniel Gonzalez +1068465,Henryk Bista +84827,Steven de Jong +16970,Ivana Baquero +1183804,Andrew Masset +1090165,Bob Garnet +1207244,Max Pellny +1393826,T.J. McGibbon +550554,Sebastian Hülk +1796596,Jahn Pedersen +106799,Angela Bennett +1102496,Kevin T. Bennett +1122360,Terence J. Rotolo +1156129,Toshiaki Nishizawa +15855,Wendy Robie +1527310,Eileen Sedgwick +129298,Brendan Penny +76556,Pål Sverre Hagen +170187,Doug MacHugh +1683952,Paul Belsito +1692503,Malcolm Johns +237411,Nellie Burroughes +1088190,Brandy Yuen +1398199,Olivier Blais +16244,Ilse Zielstorff +1046154,Adi Shankar +1545502,Pamela Evans Haynes +1695138,Kim Evans +1697358,Luciana Brites +1301337,Susanna Cornacchia +1835533,Belinda McGinley +544495,Ivan Vodochodský +1191709,Kim Hee-Soo +238687,Andrey Makarevich +1187069,Julie Summers +34367,Jack Rice +1697190,Nelson Rockford +1127383,Antonella De Luca +1336805,Choi Hye-jeong +1320678,Jun Shison +1412404,Mahesh Kaul +936481,Edoardo Siravo +44428,Andreas Hoppe +48961,Howard Wendell +86710,Nikolai Slichenko +1418524,Géza Schramek +1245979,Hili Yalon +1147940,"""Lil' Mikey"" Davis" +60047,Ram Bergman +1077700,Milton H. Greene +167978,Brenan T. Baird +140138,John Gayford +145168,Gary Martin +30791,Will Roberts +1764147,Charles Golff +153066,Leonard Sharp +78073,Muriel Dubois +1271298,Min Oo +1670734,Sybille Blouin +166945,Sean Babb +126487,Shelley Waggener +1844328,Darryl Spencer +589364,Marília Gabriela +141995,Suzan Ball +78037,Adam Vernier +1399674,Chris Sanders +275590,Fiorella Mari +564977,Don Granberry +224312,Cosetta Greco +68271,Federico Galante +552242,Budd Friedman +1128106,Kim Hyang-gi +16006,Lee Delano +103530,Felipe Solano +1355642,Adrian Hood +1485181,Ann Kymberlie +20671,Assaad Bouab +563084,Chély Yann +1163230,Posani Krishna Murali +1034604,Adolfo Jimenez Castro +400145,Yang Zhang +994248,Jeon Mi-seon +100522,Susan Africa +153680,Nico Minardos +1582300,Frenchie Davis +205209,Josh Fadem +1891565,Dixon White +975199,Beatriz Sheridan +1117089,Sharrie Milner +131339,Nicholas Simard +1039947,Rafael Calvo +229005,Aidan Marus +1706153,Andrea Lynn Green +1089980,Sue Kiss von Soly +1481215,Flory Carlos +1651430,Robert Isaac Harker +1220103,Rod Hallett +18415,Christoph Schlingensief +226198,Bjørg Vatle +1044767,Anna Ferruzzo +65298,Brian Henson +1761835,Marjukka Arasola +1463028,Birte Heribertson +1192370,Mārtiņš Počs +1121477,Helge Herala +1726740,Suleyman Boyraz +1121629,Minoru Takase +1753558,Dan Perrins +1489666,Lala Cochran +1433383,Fanny Gaillard +1133587,Clément Michel +1905541,Cecile Monteyne +168707,Amanda Baker +941342,Eugenia Galindo +110917,Simon Hutchins +1352762,Christophe Tourrette +1739694,Michael Liu +1159359,George Calliga +72971,John Shepherd +150083,Mathilde Brundage +169893,Amick Byram +9097,Gibson Gowland +47859,Lee Horsley +115008,Ceyda Düvenci +38968,Michael Sideris +994212,David Maunsell +1190055,Vladimir Vysotskiy +956692,Miguel de Lira +1070768,Sudarat Butrprom +1109596,Timothy Mabalot +113331,Leonid Gromov +179763,Lou Bedford +991100,Alice Beardsley +1782929,Steve Skroce +102071,Adrian Morris +132274,Erzsi Pártos +1676372,Adnan Koç +220743,Barbara Schöneberger +197514,Michael Sherman +230674,Jose Halufi +1182600,Anna O'Grady +1504467,Quinn O'Neill +90683,Georgina Reilly +1734734,Rudy DeBellis +1411499,M.A. Bogue +993241,Rodolfo de Anda +113567,Anna Khaja +1692090,Damien Salcedo +1600850,Rob Van Eemeren +1196677,Charles Rolfe +1466168,Giuseppe Ardizzone +591246,Łukasz Simlat +199931,Kelly Campbell +6763,Torleif Hauge +563095,Doris Petrie +120135,Rocco Papaleo +1191714,Ladislav Sedivý +1175907,Rafael Hinojosa +1264235,Melanie Gray +7760,Magne Kipperrud +1608701,Roberta Lerici +98563,Karen Russell +9279,Nancy Lenehan +1537020,Jadwiga Skupnik +114594,Proschat Madani +50786,Gianni Solaro +12450,Gary Cockrell +1569926,Kushvar Sharifova +134247,Milly Rosso +1637847,Diganta Hazarika +934159,Eric André +87192,Mike O'Malley +1565315,Eshref Durmishi +1100033,Gwendolyn Anslow +101328,Wallace Wilkinson +558291,Denise Lee +1891547,Gavin White +105843,Silverio Palacios +1295589,Renaud Lambert +66075,Sonny Tufts +1848674,Lucas Castro +551682,Lee Won-Jong +1385608,B. S. Johnson +1555922,Au Hin-Wai +1559487,Thomas Macken +1861965,Vincent Bersoulet +23306,Marco Prince +1054378,Andrea Gordon +1316598,Chris Brazier +1833806,Natalie Wilson +81427,Paul Ahmarani +96762,James Dyrenforth +79905,Betty Moyer +50837,Francis X. Bushman +1332738,Unnimary +1049917,Kim Taylor +1353601,Alec Harford +140357,Andrex +153926,Elaine Kagan +1037692,Takuya Kirimoto +1146926,Randy Jones +103259,Nikie Zambo +1424891,Mike Carey +120568,Éveline Gélinas +16430,Robert Knott +1033807,Brijesh Tiwari +1505122,Anna-Sara Kennedy +1719895,Cynthia Banks +1819917,Stefan Dermendjiev +99253,Michael W. Smith +1575317,Raegan Revord +222271,Bhaktyaar Irani +1466895,Kate Coogan +1199440,Helmut Berger +1121269,Stephan Meyer-Kohlhoff +64136,Misty Upham +1589612,Jena Seiler +68764,Rachel Hayward +90388,Steve Jordan +1578025,Marion Bouvarel +33104,David Ladd +565403,Tiziana Altieri +1397125,Peter Varga +104912,Jessica Morris +1141410,Tracee Chimo +1519441,Jerzy Skoczylas +1459893,Halina Szram-Kijowska +1753488,Tom Golden +585365,Isabelle Adriani +20588,Vincenzo Amato +1249639,John Breslin +1472757,Vera Novikova +1347729,Darío Díaz +1891500,Gary Foster +19579,Adan Jodorowsky +235424,Vyacheslav Razbegaev +41162,Moana Pozzi +1071136,Sonja Jeannine +1523855,Matthew C. Vaughan +1701474,James Atkinson +141094,Richard Hylland +92782,Wyatt Cenac +1295668,Thomas Francis Murphy +18439,Buddy Casino +63511,Philip Malzl +1797412,Alex Safta +74387,Peter Carlberg +557450,Hannah Nicolas +88928,Nelson Franklin +187122,John Wood +221110,Christiane Schaumburg-Müller +1661677,Abigail Klein +99559,Francisco Nieto +189230,Josh Lawson +1844347,Tony Kopa +141466,Chase Agulhas +1445193,Kalla Handberg +1348207,Diletta D'Andrea +21237,Enrico Montesano +1418997,Mark Sims +42672,Sigurður Skúlason +1680476,Jeanne Marie +1853725,Sergio Zecca +1630633,Willow Voges-Fernandes +141336,Pankaj Dheer +1537737,Stella McGirl +111343,Tova Magnusson +1157260,Harry Dyer +1657695,Kerry Dutka +140107,Marco Marzocca +440879,Jan Cornet +1585225,J.P. Grimard +117810,Luanna Anders +892734,Tiera Skovbye +175462,Leigh Francis +44838,Richard Carter +36942,Elisabeth Bergner +1531616,Epic Scon +21742,Fabian Hinrichs +222321,Pekka Autiovuori +1340665,Stephen Apostolina +1528489,Jodi Pittman +144260,Lucie Phan +43757,GiGi Erneta +112742,Emily Alyn Lind +549520,Elliott Tittensor +1001667,Verdi Solaiman +1233050,Dylan Bierk +1313114,Richard Travers +1686692,Angelo Josue Lozano Corzo +1093279,Selu Nieto +1423085,Luis Carlos Tortosa +104411,Gale Robbins +1796448,Alan Rushton +1537343,Vlastimila Vlková +1193609,Levin Liam +27633,Richard Ashcroft +1055119,Gun Fors +102171,Michael Aronin +1878708,Ethan Coach +58003,Joseph Bottoms +1707912,Rain Fuller +1745596,Tom Cahill +105442,Mohan Joshi +1449405,Line Wiblé +71553,Cassidy Gard +1106899,Tomás Cimadevilla +1428460,Max Bennett +128073,Tinì Cansino +52508,Tobias Mehler +1758536,Potchara Sawekaryuwat +161591,Gregory Chase +132108,Abu George Shibli +1007733,Anne Bellec +139570,Diederik Ebbinge +1161090,Zucker Emanuell +124617,Richard Evans +32866,Constantin von Jascheroff +948581,Bonita Brisker +235856,Sabera Wise +1659412,Наталья Воробьёва +1611984,Sennia Nanua +1445782,Cosmo Budde +81113,Jeremy Clarkson +187058,Fletcher Humphrys +280872,Dieudonné Kabongo +1871454,K. Lavretski +1504759,Mark Sherman +1718161,Jack Bushong +1716336,Éric S. Boisvert +37440,Angela Pleasence +1717272,Derek DuChesne +1050370,Simon Scuddamore +78937,Joe Mantell +2897,Kurt Gerron +1028352,Johnny Doran +1038501,Jean Michaud +1476774,Simone Nielsen +215460,Jonjo O'Neill +589755,Stephen Lester +1563887,Penny Bunton +1464793,Kenji Nakamura +58727,Jamie Renée Smith +105656,Christopher Irvine +1017085,Brian Bisson +1021738,Ahmed Alansar +9609,Aleksandr Antonov +1270840,Brendan McCoy +96095,Sully Erna +121609,Melik Malkasian +1176001,Megan Zheng Zhi-Yun +83532,Christopher Elliott +569552,Ashley Fox Linton +1020763,Brittney Lewis +225011,Alfredo Castro +548827,Reena Roy +1862606,Clara Rolim +106151,Jane Griffiths +125531,Ruyi Qi +125021,Elizabeth Alexander +1701604,Giovanni Alamia +65943,Chi Hung Ng +590899,Vangelis Ioannidis +124853,Eric Linden +198241,Joy Allen +1163716,Ronnie Hall +1619994,Jade Quon +1824347,Pierre Kennel +225408,Luis Machín +1515511,Nazeema Bartek +122853,Bob Koherr +1754353,Matthew Mease +1117093,Chase Stine +121489,Leslie Speights +132398,Bree Olson +1675902,Virginia McMullen +1612389,Alisa Priznyakova +101473,Esther Studer +1004821,Demir Karahan +544209,Irena Kačírková +128039,Miki Mizuno +90130,Aaron Ashmore +1394455,James Storer +1117439,Ray Prewitt +34773,Håkan Westergren +1502450,Leah Latham +37234,Rahul Dev +984873,George K. Arthur +107337,Mark Edwards +936232,Jessica Mark +156955,James C. Victor +84391,Leroy 'Nicky' Barnes +87766,Greg Lawson +1352331,Caleb Cox +400982,Laurien van den Broeck +554496,Goro Kataoka +1376397,Olimpia +1729889,Cheryl L. Sorice +119355,Augusto Zucchi +1119990,Kostas Tsakonas +1603929,A. Aytaliev +226170,Gisken Armand +1238179,Gurdeep Kohli +1418259,Dave Gackstetter +1749834,Donald M. Krause +148284,Shanika Warren-Markland +1094137,Alex Wall +1398195,Martine Bruneau +123399,André Wickström +591247,Krzysztof Zawadzki +1352653,Conrad Scheel +1333845,Eugenia Kuzmina +85484,Matthew Del Negro +1624096,Sau Chung-Dik +1129910,Philine Lembeck +1672451,Eugenia Rafee +130990,Makrand Deshpande +586550,Karen Holmans +96741,Robert 'Tex' Allen +69312,Carolina Pelleritti +1726735,Aleksandar Devic +530395,Philip Brodie +167253,Lynsey Bartilson +590615,Hans Marr +1632658,Filip Geljo +98408,Rachel Robinson +19646,Mylène Demongeot +213087,Warwick Young +1366972,Stephanie Janusauskas +928978,María Clara Merendino +256448,Ismael Pérez +1782574,Justin Boyd +1478132,Marie Rosulková +30579,John Stratton +67988,Bjørn Floberg +557592,Deena Trudy +26891,Willy Reichert +106800,Luisa Leschin +1673511,White and Stanley +1398154,Adrienne Chan +1535462,Russell Scott +1138050,Grzegorz Stelmaszewski +98872,Emmy Smith +1825406,Hannelore Lübeck +1029092,Niko Salasmaa +1891747,Maria Giovanna Elmi +570198,Qin Zhang +1333736,Diana Valentien +199942,Dave Duffy +1835284,Christian Miranda +98031,Patsy Ruth Miller +131207,Konstantin Yushkevich +1559688,Jose D. Xuconoxtli Jr. +1560249,Robert House +1311033,Boris Polunin +1330720,Victor Palacios +1028464,Sadha Triyudha +1089979,Roy Day +49021,Ronald Zehrfeld +1071284,Ranny Weeks +1235245,Jon Secada +1898497,Dorothea Gebhardt +1615805,Emily Roya O'Brien +1349734,Tom Whitecross +1780284,Aaron Lewis +455,Paul Haggis +1818055,June Burt +801,Michael Glawogger +148999,Sean Paul Braud +1172695,Mary Kate Wiles +1559483,George Dyson +1316380,Shielu Bharwani +85697,Kushaal Punjabi +1788332,Sara Carter +582234,Ela Sanko +1195317,Mourad Khen +1495083,Evan O'Toole +105565,Silje Salomonsen +473036,Waihoroi Shortland +161847,Gretchen Egolf +1229671,Libby Tanner +1517143,Ernesto Lama +44478,Marco Rossetti +583919,Said Bey +1863887,Davi de Almeida +11683,Zdeněk Svěrák +59978,Lawrence Wright +131772,Amin Joseph +204670,Len Cordova +1771573,David L. Craig +1511243,Brandon Spink +1560230,Deanna Reed-Foster +1624094,Jin Xin +86956,Dmitriy Pevtsov +1327656,Patricia Christian +105253,Sondre Krogtoft Larsen +1120025,Mat Vairo +54276,Lise Ségur +1052109,Harry Styles +1123089,François Frappier +1667885,Josie Alec +1325428,Kanal Kannan +1495138,Giovanni De Angelis +38000,Milutin 'Mima' Karadžić +1083444,Henri Janvier +140196,Romi Aboulafia +1520900,Philippe Bombled +1397786,Yoann-Karl Whissell +1804257,Pere Abelló +1346694,Roe Hartrampf +1510444,Diamond White +1766384,Makangali Abdullayev +98539,Frank Zappa +1506127,Manon Kneusé +150493,Renato Borghi +84276,Caleb Emerson +125684,Attila Árpa +1017371,Leander Suleiman +237845,Serge Grave +1786731,Pip Phillips +1041475,Takuya Yoshimura +1396357,Miguel Angel Arrojo +1758597,Kenichi Watanabe +1563441,Boris Damovski +47141,Antonio Pierfederici +453272,Nora Arnezeder +1544805,Kara C. Roberts +117657,Vance Daniels +1426893,Frank Ma +1299283,Lee Cheol-min +188559,Brent Musburger +1006144,Vic Browder +1381533,Fred DeSilva +49561,Marit Pia Jacobsen +1348291,Marie Sambourg +110792,Mikael Sievers +182851,Gary Friedkin +80207,Kurt Kuenne +134355,Ranko Sawa +1776748,Stephanie Kiong +150922,Julien Verdier +198708,Jocelyne Zucco +1707953,David Passmore +1001790,Fatih Ereli +213495,Chikage Awashima +582604,İsmail Filiz +968350,Carla Quevedo +1626465,Anastasiya Pronina +1410158,Yalcin Cakmak +1537340,Dagmar Redinová +28186,Agathe Natanson +1050248,Art Parkinson +1577013,Pablo Penedo +1862901,Shirlette Baker +138394,David Paltenghi +939077,Bill Scragg +1689738,Alice Gruia +1508875,Ángel de la Fuente +1669829,Baldur Einarsson +125077,Noboru Andô +1397084,Henry Ayau +217750,John L. Cason +84089,Éliane Gagnon +1106335,Maureen Tucker +1617174,Zack Kahn +1228378,Cristine Prosperi +25095,Stewart Scudamore +1000978,Samuel Koch +1890108,Fedor Dubrovka +1311149,Wung-hoe Gu +1788328,John R. Brinkley +1270331,Neil D'Souza +63210,Jacob Witkin +81380,Michelle Ruff +238399,Michael Friedman +102131,José Jaspe +156066,Bryan Rasmussen +142410,Lyle Tayo +1487588,Daved Wilkins +1294918,Andrea Pittorino +1862554,Dennis Atlas +1471922,Damon Carney +1114245,Rit Ghoos +235807,Luc Feit +6810,Senta Wengraf +104473,Al Burke +90456,Jamie Young +1010113,Davide Iacopini +1096496,Duane Miller +1210306,Murielle Telio +1359957,Phyllis Silver +87417,Alfred Lynch +1405922,Makoto Awane +156485,Leah Lail +157826,Philippe Spall +1564291,Paulina Galazka +1399148,Susannah Wise +80999,Fyodor Bondarchuk +1087007,Max E. Williams +557879,Francisco Barreiro +1183546,Dan Bakkedahl +1115988,Jon Cobb +130843,Rosemary Howard +1023405,Victoria Toro +96738,Orley Lindgren +1189550,Maria Pia Luzi +1281307,Zach Lasry +1374984,Kiana Cason +133818,Derya Alabora +1257190,Paulo Gracindo +1605809,Victor Druet +92730,Pollyanna McIntosh +101539,Patricia Coleman +1841494,Amanda K. Somma +1648781,Rotanak Oudom +119343,Rosalyn Boulter +143125,Jukka Puotila +123846,Debby Ryan +1091868,Dawn Ford +1087610,Benedetto Casillo +1184851,Ishwar Maharaj +1424100,Vincent Heneine +1418948,Timothy D. Baker +1589702,Alexandra Piasecki +1532120,Hilde Granados +1211977,Greg Mullavey +1064041,Alena Savostikova +1583643,Vince Morella +1337067,Genevieve Alexandra +1345428,Tomasz Ziętek +1430522,Tom Case +1646012,Anto Chaniago +214862,Johnny Mathis +1353907,Todd Harris +581086,Ralf Shikha +1384213,Hanna Lawrence +1746883,Robert Sale +1659771,Carol Wolveridge +282835,Mather Zickel +1496350,Janna VanHeertum +1204028,Zoe Canner +1669941,Emma Elle Roberts +40022,Müfit Aytekin +1088125,Soo Paek +1320503,Lee Jun-ho +35467,Keiko Agena +83274,Rachele Brooke Smith +1465325,Jona Xiao +962885,Kate Lock +222380,Dörte Tien +69181,Poul Bundgaard +1029285,Camille Berthomier +1087953,Ivo Niederle +26495,Jean Louisa Kelly +1118285,Gennadi Shumsky +1763862,Clive Kneller +1760891,Riccardo Richetta +1880339,Carlotta Galli +134255,Willie Fung +1784283,Emilia Dirdová +130991,Shraddha Kapoor +95396,Evan Butts +145052,Isabelle Marchall +1008487,Serena Michelotti +214551,Brett Hicks-Maitland +1175795,Isis Valverde +1281195,Paul Longley +951488,Kenneth Hunter +1569196,Yarol Poupaud +27836,Leny Breederveld +1440859,Sean Slattery +1241939,Wasabi Mizuta +219652,Bernard Atha +65887,Vusi Kunene +173794,Matt Huhn +1095690,Sushar Manaying +1590838,Steven Brandon +1351405,Khosrow Shojazadeh +1063493,Berik Aitzhanov +1169324,Victoria Roldán +1149018,Adam Arnold +1653004,Sit Lenh +76226,Lexi Ainsworth +1722991,Nathaniel McIntyre +27383,Renato Rossini +1764141,Hap Rinker +226029,Giorgio Gobbi +174398,Georgina Leonidas +62298,Mario Barth +1886319,Abigail Sams +1095238,Karim Al-Rifai +101490,Phillip Terry +1795183,Shari Blum +76109,Marie Jones +1112454,Christina Lehner +1239505,Dalene Irvine +137812,Galatea Ranzi +6957,Michael Stipe +1707938,Gavin Ingham +1293959,Salvatore Misticone +1071606,Pierre Deladonchamps +19653,Olivier De Funès +144691,Kalled Mustonen +1192441,Zdeněk Hodr +1529062,Tassadit Mandi +1171654,Vuyo Dabula +1614746,Sapar Odayev +210004,Jelly Howie +1767233,BreeAnna Marie +240500,Vladimir Soshalsky +28833,Mihai Mereuta +1446067,Richard Buick +61958,Tim Mertens +1522150,Nate Schwefel +1707824,Peter Urban +97454,Samson Ghaffary +1487573,Giulia Elettra Gorietti +1412428,Eduardo Toussaint +41205,Gilles Tschudi +109474,Damien Jouillerot +1871538,Morten Seier Larsen +26970,Matt Barr +222503,Irene Grandi +104064,Germán Cobos +1754431,Millarel Ormazabal +1512198,Debbie Swierk +98878,Joe Myles +557683,Rick de Leeuw +1153004,Stan Walker +1506650,Earl Dobbins +1200245,Akio Suzuki +1007683,Jack Reynor +51663,Sean Gunn +1560377,Ava Grace Cooper +176817,Tamara Torres +15124,Julia Gschnitzer +90317,Serra Yilmaz +5440,François Levantal +1747678,Tiger Joe Marsh +1287074,Gerard McCarthy +1739729,Nidhi Bisht +563083,Swysen Serge +1426914,Eunyul Hong +1029104,Jonas Granat +1379748,Cok Simbara +40162,Jacques Roux +1776121,Steven Ito +1335535,Dong Fu Lin +1125592,Tommaso Palladino +375374,Hortense Petra +1204943,Bianca Galeazzi +102304,Wolf Ruvinskis +1111994,Françoise Maillot +1865838,Darren Clarke +219654,Felicia Pearson +1438684,Timothy Wyant +932503,Nargis Fakhri +4461,Helle Dolleris +1599752,Philip Friedman +1299189,Cameron Zeigler +1841536,Irit Reinheimer +1245733,Justin Roiland +1177284,Francis Frappat +1312677,Niki Linardou +1872419,Phil Watt +93549,Tatyana Lyutaeva +1832741,Robyn Crawford +201841,Joey Capone +45252,Theo Marcuse +131657,Sarah Felberbaum +1301876,Areta Ćurković +1329836,Neal Dodd +171886,Frank Deal +230178,Tereza Srbova +114719,Karl Stegger +1112818,Amitai Marmorstein +1577206,Cynthia Straus +1205883,Charlotte Biggs +59764,Halit Ergenç +1036780,Chiquito de la Calzada +1120699,Aja Naomi King +1869092,Gino Doorson +983695,Mirabel O'Keefe +24423,Gabriella Boccardo +1180700,Lisa Marie King +1080862,Anne Winters +930023,"Doran ""Red"" Furgie" +1758895,Joel Horwitz +1863908,Renata Laurentino +1435459,Akshara Haasan +83992,Cay Forrester +107873,Wlodzimierz Brodecki +1707546,Cindy Greer +83816,John Henshaw +928298,Andrea Cirie +550317,Jillian Batherson +1419742,Makenzie Moss +1537743,Róisín Judge +1243881,Kenn +1124595,Eiji Ezaki +1771582,Christopher Donald Gallagher +1352419,Jerick Hoffer +1077358,Jennifer Stock +141561,Lars-Erik Berenett +146057,Miriam Stein +936235,James Gregory Paolleli +142504,Aleksandr Yatsenko +928457,Matt Olsen +1823591,Eugene Brave Rock +1148272,Amelia Pidgeon +1526177,Anita Marie Curran +31011,Andrea Occhipinti +1481004,Eva Senerchia +1057527,Tony D. +1061539,Miguel Ángel González +1057067,Suzanne Weber +230352,Mike Bongiorno +136963,Mark Wiebe +1661019,Ernest Hardin Jr. +168400,Ron Ostrow +1861749,Ben Frimstone +1796414,Aj Risi +13364,Julie Cox +106787,Özkan Uğur +1694166,Facundo Bo +109765,Richard Holden +1204694,Alexis Davila +28603,Christopher Schärf +1580816,Na Ha-Yeong +85015,Jean-Michel Portal +1390505,Kyle Soller +1560243,Brian 'Sene' Marc +1387577,John Wells +123453,Thorbjørn Harr +1795202,J. Christopher Senter +1800023,John Finegan +1110484,Anita Hendrie +1470619,Lee Freeman +1761834,Heikki Kirma +140019,Fabiana Smith +552961,Dritan Biba +931475,Mirjami Kuosmanen +107907,Bengt Eklund +566080,Jonas Bloquet +1407629,Dianne Wilhite +39661,Francis Magee +1264641,Evie Wray +240158,Lung Tien-Hsiang +1663854,István Bán +1849538,Matt McLeod +577641,Kiera Duffy +580833,Indrek Kalda +86875,Aleksandr Semchev +81922,Mike Holmes +239201,Astrit Kabashi +1032548,Carmen Montejo +544893,Appukutty +1148520,Liz Daniels +1895601,Kate Mulligan +1354322,Athipich Chutiwatkajornchai +1334132,Darren Jacobs +44535,Frank Bolger +75346,Maureen McCormick +1851870,Johnna Jeong +1900947,Lexie Benbow-Hart +1334856,May Law Koon-Lan +239728,Shishir Sharma +1570541,Morgan Ackermann +74362,Michael Dobson +1689912,Nina Schultz +1086317,Jolan Fodor +187919,Tobias Segal +98106,Rich Fulcher +39156,Edwige Feuillère +39033,Madge Ryan +82364,Imre Csuja +1446997,Beulah Parkington +114720,Poul Reichhardt +1117907,Andrey Gradov +1174338,Patrick d'Assumçao +44332,Christian Blümel +975810,Lawrence Grossmith +26284,Giacomo Gonnella +202845,Christine Woods +1661778,Cindy F. Daniel +97273,İlyas Salman +147895,Charles Venn +1622261,Francesca Fiume +1306413,Mason Aguirre +1219229,Rebecca Lacey +85413,Hayley Carr +32863,Günther Kaufmann +1780553,Mark Mooney +159300,David Kallaway +1868693,Timothy J. Cullen +140007,Seán T. Ó Meallaigh +130336,John Grossett +108661,Chester Bennington +1385899,José Luis Ayestarán +1163292,Picco von Groote +1113208,Joanna Żółkowska +1725801,Matija Mondi Matović +29021,Roxanne Hart +1278128,Luke Scott +87571,Jennifer Robertson +1532533,Chelsea Miller +228864,Gildo Bocci +566918,Manuelle Haeringer +1192319,Pixie Bigelow +55619,Lisa Arturo +1218736,Dave Coulier +1395189,Travis Lone Hill +1617697,Avi Nash +962249,Irene Escolar +1076560,Jarrod W. Amos +1112877,Michael Clark +34961,Jeff Evans +549524,Danny Vasquez +1545512,Linnea Bond +1175190,Hugo Kusnetzoff +1440452,Etienne Guiraud +38596,Paola Senatore +235724,Hitomi Miwa +1484156,Hazel Roberts +77742,Johnnie Saiko +1238763,Elizabeth Small +1192088,Giovanni Febraro +231719,Phi Nguyen +213001,Jenny Slate +55981,Gustaw Holoubek +1571491,Sandra Zidani +1333092,Beth Winslet +1142910,David Murgia +1643330,강계열 +1062338,Aurore Broutin +148035,Billy Armstrong +51938,Shawn Lawrence +30037,Michael Cochrane +1549869,Herman Lantz +550274,R.J. Cantu +1193561,Mohsen Behdaneh +208677,Lee Majdoub +1368795,Manny Jacinto +102778,Brock Roberts +1289340,Theo Williamson +78680,Monica Guerritore +233731,Pascale Montpetit +1427087,Monica Salmaso +1371769,Madeleine Wade +1467964,David Clark +82861,Edwin Max +1465495,Maxine Prescott +128209,Dave Hager +37437,Caroline Langrishe +1128398,Jonathan Patrick Moore +100632,Frank Converse +554591,Dan Herzberg +1683843,Lamont James +133716,Despina Tomazani +1874730,Peter Palmgren +1766383,Erzhan Ashim +179510,Manu Intiraymi +1593406,Rex Alba +1783261,Austin Zajur +1483405,Kawamata Kiichi +1569064,Adia Dinh +1445607,Eldar Kim +37872,Eleanor Coppola +1197385,José Luis Avendaño +1157299,Jill Keen +1288636,Andrea Černá +379541,Phil Ridarelli +82107,Ray Panthaki +1469272,Mae Otsuka +36549,Yolonda Ross +1043349,Lennart Björklund +1728848,Erin Halligan +1332915,Marie Murphy +1746888,Jim Lampley +272773,Kelsey Keel +1489231,Eduardo Dávalos de Luna +931478,Arvo Lehesmaa +1182597,Denise Gough +156874,Todd Truley +1345403,Larry Wang Parrish +146470,Deborah Benson +1173860,Philip Martin +1466628,Daryl Thibodaux +1606822,Patrick Foster +1694815,Ioanna Kolliopoulou +1451797,Mackenzie Meehan +3774,Joshua Sinclair +566793,Bikramjeet Kanwarpal +92058,Phil Austin +113650,Peter Tuinstra +551796,Karine Bayard +1080280,Reiko Hitomi +106458,Brittany Petros +1600084,Nolan Lyons +1246784,Mathew Baynton +1478683,Abhishek Joseph +1879672,Starwil Reed +1581943,Anne Girard +1518113,Ed Cooper Clarke +1873060,Kasper van Groesen +57853,Diana Frank +90046,Liz White +115731,Steffi Wickens +82513,Bogdan Stupka +1658533,Julio Torresoto +119233,Lili Haydn +1184850,George Tardios +239309,Alberto Tomba +1176150,João Gilberto +108247,Austin Highsmith +1019367,Jacqueline Staup +132755,Scott C. Brown +1169325,Roger Sotera +120949,Karunas +1496438,Karl Bird +1288172,Jill Dennett +1088030,J. Byron Foster +1122424,Thierry Lefevre +1507597,Crystal Tisiga +1197735,Nobuo Takagi +1907148,Megan Sullivan +1774043,Mary-Anne Graves +150191,Lew Cody +1009999,Doutzen Kroes +978906,Vanessa Matsui +1093952,Manolo Reyes 'Pozí' +150688,Vega Tamotia +1112959,Santi Ahumada +565222,Matthew Kevin Anderson +1455077,Vicky Brooker +1192789,Frédéric Lemay +1223527,Joseph Belmont +1375001,Marjan Luif +1333022,Vladimir Ferapontov +6841,William Hansen +1684550,Terry Maguire +1831157,Stefanie Antonia Wermeling +1392719,Robert Agganis +1172233,Martin Fuller +130743,Pablo Cunqueiro +237524,Sergei Prokhanov +231159,Václav Kopta +1805286,Lis Böttner +1650413,Milagros Schmoll +1629648,Rodney Wong +49863,Jean-François Gallotte +1390508,Jeff Hill +1164662,Yuri Kharchenko +1281220,Reece Buttery +556744,Ferdinando Murolo +1797389,Josh Hull +1672218,Mirela Nicolau +1308068,Christen Orr +1777483,Deepak Anand +1470351,Janet Porter +232312,Vihtori Välimäki +1386322,Troy Faruk +1116540,"Geronimo Frias, Jr." +1742651,Fru Roszil +185862,Fred Frame +1015060,Alan Tuskes +1356421,Nouma Bordj +1115151,Juanita Morgan Copeland +1358677,Yurike Prastica +1088204,Ernestine Mathis +1012711,Cyril Gomez-Mathieu +1545499,Kk Heim +1122361,Kathy Sue Holtorf +1771581,Derwin Frank +1330040,Victory Van Tuyl +1527437,Connor Dean +1767212,Harry Galifianakis +1291952,Hiroki Mano +1559777,Chonghua Ni +1224251,Erin Gerasimovich +545159,Richa Gangopadhyay +1205752,Morgan Wolk +224870,Paco León +1098335,Bill Nowlin +82104,Danai Gurira +1111906,Richard Smith +154684,Siobhan Flynn +224522,Joe Rainbow +992587,George Ernest +1797602,Richard Marrero +1049735,Yohance Myles +110788,Jukka Penttilä +1082354,Michael Kober +131209,Aleksandr Lenkov +544888,Charle +1796593,Kari Rasmussen +1753255,Moerangi Tihore +567012,Theeradej Wongpuapan +235688,Jaroslav Mareš +15087,Ali Kazim +575523,Giacomo Rondinella +1676187,Andrea Lauren Herz +44766,Titus Moede +1544739,Seylan Baxter +141305,Anders Randolf +1700482,John Harvey +1326028,Jorma Lindqvist +1591375,Yoon Jin-wook +130656,Kei Tanaka +1894992,Ray Sampson +79329,Fredrik Grøndahl +555715,Fulvio Falzarano +1894266,Ignazio Gibilisco +71299,Stuart Weiss +138894,Jamie Stewart +18072,Michael Herbig +204088,Preston Davis +1886758,Sebastian Cichonski +1724685,Erich Pries +235849,Luke Dilberto +68762,James D.R. Hickox +82057,Chie Nakamura +229709,Neal Rosen +1516685,Ulrich Meyer +1310224,Lou-Scha-Enya +1507242,Nazrul Rahman +590876,Francisca Gavilán +87944,Law Kar-Ying +1218223,Kat Foster +1696387,José Luis Aranburu +1422102,Hal Neiman +77304,Zhao Wei +1711509,Marius Artimon +1270918,Boris Zagorsky +129570,Stefano Pesce +108917,Cady Huffman +75020,Stephen Geoffreys +1117080,Noritake Saito +120243,Aleksey Gorbunov +109947,John J. Fox +16937,Rex Linn +1383725,Myriem Roussel +121781,Risto Jarva +30756,Ted Travelstead +110772,Harri Hyttinen +137756,Emiliano Campagnola +1467350,J.R. Ramirez +1253194,Tasie Lawrence +1302965,Scott Ford +11223,Vittorio Caprioli +1470817,Jeff Hohimer +34003,Neil MacColl +234739,Søren Vejby +105506,Dorothy Patrick +16419,Sonny Melendrez +192330,Jester Hairston +115346,Jim Durfee +145806,Carlos Antonio +1135591,Valerio Base +98008,Jacqueline Gadsden +1719901,Mildred Smedley +76820,Marina Foïs +1198741,Efrat Gosh +155752,Denyce Lawton +1476539,Niko Novak +1179890,Edgar Monnet +66638,Thomas Schüler +92076,Kira Tozer +1178612,H. Dudley Hawley +240834,Andrei Tolubeyev +1045301,Inge Sofie Skovbo +174906,Shelly Desai +39487,Nikolaus Paryla +1359951,Fred Swink +1760881,Sunny Yeo +1120526,Jirô Saitô +139622,Darryl Scheelar +35541,Doris Golpashin +59627,Julie-Marie Parmentier +107901,Michal Chorosinski +78801,Jennifer Hoffman +1164965,Simon Cohen +47335,Ouassini Embarek +115579,Liam Card +1334334,Mark Soloff +1840223,Matt Coldrick +1828322,Valentina Väli +39653,Janine Benyus +76537,Tom Kiesche +1810257,Santeri Helinheimo Mäntylä +101806,Alexi Wasser +1673561,Victor Sabini +928077,Frank Qutuq Irelan +6446,Christopher Allen Nelson +1606882,Patrice Wyers +1457272,Denzel Reed +1357167,Antonio Alveario +28131,Leo Peukert +1058085,Loai Nofi +1646460,Leslie Baker +1446104,Milan Böttner +967139,Christine Rose +143013,Lizan Mitchell +1211067,Jessica DiGiovanni +1426373,Matthew Bravais +145284,Tarık Pabuççuoğlu +151491,Barry Russo +1071192,Nicky Yardley +1172457,Rafael Siegel +119364,Gerry Wilmot +991960,Jack Erdie +49671,Zsolt Bogdán +1674640,Charlie Callaghan +1306418,Robert Pereno +1323982,Patrick Poivey +145145,Shannon Kane +228102,Raimund Huber +6638,Maureen Lipman +1384924,Milya Corbeil-Gauvreau +1524418,Marianne Wolfson +1687929,Adam Drinkall +1078993,Francesco Acquaroli +1088243,Mahin Shahabi +1549360,Ciara Charteris +1796388,Gustave Ouimet +1219769,Peter Cousens +535561,Pierre Alcover +1506484,Nate Dern +1427480,Jeni Ross +1328184,Ashley Shelton +1898235,Milorad Ukropina +127453,Conan Stevens +238098,Norman Winther +1027199,Alain Soral +47070,Ingvar Hirdwall +67141,Lucia Poli +1165738,Lorcan Bonner +1135969,Justin Batchelor +1454086,Steven Weisz +1514002,Kim DeJesus +212291,Tina Casciani +73213,Dick Kaysø +1881177,Christoph Heckel +76979,Felicia Farr +1088033,Sean Browne +1429047,Vinayakan +1523657,Max Rinehart +1344363,Topsy Chapman +1547887,Rochelle Okoye +1053294,Vincent Thomas +1692050,Henry Frost III +17774,Clare Kramer +1194991,Melissa Cordero +1329736,Dwane Day +176763,Dov Davidoff +219382,Mike Edmonds +1393185,Rebecca Bloom +1651431,Tiar Lounis +1154882,Gopi +1569711,Erica Grant +995178,Zach Baker +1538881,Dariusz Sikorski +96531,Alex Toumayan +1093379,Daniel McVicar +1774084,Jasmine Brooke White +1895707,Teemaree +93194,K. S. Ravikumar +1414818,Kristina Pakarina +90361,Aleksandr Zavyalov +1271560,Kolbjørn Brenda +189403,Paul Shelley +1396584,Mely Soriano +1621192,Tatsuo Hanabu +1775355,Ali Ahmad Sa'Id Esber +239988,Robert Johnson +1855398,Dave Leitch +90498,Devon Bostick +22017,Valentin Giasbeily +1156246,Matīss Livcāns +15556,Rebecca Hall +1074192,Fabian Joest +53924,Kelly Rutherford +1169892,Ola Schur Selektar +1418224,Korinne Goudreau +1181313,Maisie Williams +1314527,Zlatko Vitez +1733453,Ronnie McCann +938627,Rade Marković +1640938,Austin Swift +1023670,Beto Benitez +40252,Blandine Ebinger +136660,Jacek Rozenek +7744,Julia Schacht +1364889,Alexa Sommer +105443,Deepak Shirke +1863885,Bia Paganini +1155087,Andrea Dueso +223190,Benjie Paras +1153675,Saško Kocev +1149017,Adam Paroussos +1035905,Peter Gadiot +1026839,Anupama Kumar +96050,Natsuki Kasa +590943,Graciela Borges +1051261,Lidija Pletl +1449091,Andrew Elvis Miller +1423370,Rita Owin +1376105,Zhu Yawen +1094534,Roberto Murolo +72221,Rolf Berg +1795338,Tracy Walker +1485776,Dartanian Sloan +1888602,Konstantina Tatsi +1648475,Archie Ramos +88979,Yakima Canutt +1393537,Donald Carrier +1186328,Eric Nord +1154132,Siphiwe Mlangeni +1479322,Fredrik Hana +17463,Carole Franck +1673257,Christina Wun +19541,Mark Ryan +1046192,Ana St. Clair +1293806,Luis Aller +1415408,Dylan Gaspard +1268728,Amanda Lund +1078976,Vinko Kraljević +231628,Christoph Letkowski +1435789,Jimmy Urine +185928,Penny Irving +237189,James Frey +78050,Elyes Gabel +27382,Chris Avram +1411813,Alberto Mangiante +238403,Urszula Grabowska +1272971,Jack Foley +1795348,Kevin Shannon +1525449,Hamid Najah +1278592,Leah McPherson +1383452,I. William Quinn +1172839,Bryan Sellars +1195525,Martín Andrade +1885268,Emi Tabata +110941,George Mathews +235115,Murat Bisembin +1423661,James Brodhead +1158490,Valmar Kass +1505208,Gregory Brown +1331483,Dorian Boguţă +1272974,Myles Humphus +222101,Doug Walker +1892774,Pavel Bavolets +1851056,Giorgio Comaschi +1589554,Don Klass +1457277,Jacinte Blankenship +79493,Jillian Schmitz +1371141,Jacqueline Scislowski +1526635,Pat Carney +1652517,Daniel Maslany +134388,Kunitaro Sawamura +1090686,Drew Moerlein +1359383,Philip Pope +1125709,Marite Greiselis +102853,Paul Hopkins +1862906,Cornelio Hernandez +23446,Neil Gaiman +9953,John Hopkins +1382677,Aleksandra Popławska +1254750,Michael O'Hear +1435768,Shai Golan +1349741,Gunalp Kocak +563728,Nik Xhelilaj +1635152,Marvin E. West +1774069,Ricardo Valor +1203706,Raffaele Buranelli +1100144,Ismael Cruz Córdova +123648,Raymond Wong +1821515,Garrett Hammond +104511,Chanda +1216526,Lorraine Kelly +1394432,Hisa Goto +100618,Kevin Brophy +1436140,Dong Hu +94847,Bill Dana +30319,Tom Payne +1544444,Michael Dalmatoff +85159,Mick Roughlan +1092208,Jonas Mekas +1362551,Deborah L. Mazor +1509745,Ming Zhao +132243,Sebastian Hiort af Ornäs +149824,Kevin Christy +1320570,Craig Ingham +1313140,John D Carver +1545507,Douglas Scott Sorenson +85070,Lorraine Bruce +91280,Roy Hudd +26664,Ben Vereen +1493271,Markees Christmas +55765,Claus Clausen +34934,Bruce Timm +236851,Callan McAuliffe +104929,Roberta Vasquez +204238,Amy Cale Peterson +1318201,Jared Bush +1632933,Chip Carriere +1575916,Diana Zamojska +1599271,Lili Epply +52575,Kelly Lin +106639,Lubka Lenzi +31647,Garcelle Beauvais +580683,Dhanya Balakrishna +1563606,Simplet Tefane +1734196,Noddy Alfred +1375679,Tristan Robin +35566,Mark Hanson +1523985,Edward Landers +1030523,Ioana Barbu +1596404,Wilken F. Dincklage +47009,John Glyn-Jones +59821,Edmund Entin +1313138,Trinity Joy +1031067,Sonequa Martin-Green +102228,Asier Etxeandia +1691987,Jay Towers +1276781,Cyril Bedel +75351,Jay North +1004781,Deadlee +37671,Benno Hoffmann +1180481,Emmanuelle Dupuy +1434459,Jason Canning +101088,Matt Lasky +101765,John Steadman +113895,Adam Bramble +154299,Tom Williams +103937,Teala Loring +1180685,Cornelia Gröschel +57713,Thomas Struck +1366311,Romain Berger +240288,Maria Luisa Bellocchio +567627,Electra Avellan +1124584,Arulnithi +1198941,Charles Barber +240117,Mariangela D'Abbraccio +1047204,Janez Vrhovec +942967,Mario Zaragoza +1259944,Andrei Kovski +985438,Jonathan Barrett +1172848,Robert Deeble +56961,Robert Jaffe +1618652,Sheik Mahomet +240543,Aleksandr Pankratov-Chyornyy +938896,Alexander De Jordy +105671,Kim Johnston Ulrich +1657529,Salvatore L. Rossi +1071346,Victoria Staley +1782149,Kyle Coffman +1354406,Rod Fielder +65583,Frédéric Niedermayer +229690,Yvette Curtis +1195286,Marina Albuquerque +71610,Anders Danielsen Lie +1206333,Patrick Fitzsymons +89021,Geraldine O'Rawe +87248,Antonio del Real +1068911,Zhu Lin +49947,Gérard Watkins +1738240,Garrett Thierry +1600350,Guy Hoffmann +1798884,Daniel Ross +928017,Dellie Kamijo +1097787,Erica Larsson +639817,Inder Kumar +1260901,Edgardo Bruna +572441,Blanca Rosa Blanco +154648,Scott Beehner +1470545,Óscar Simón +1055174,Jody Lazarus +969772,Marlene Perez +132440,Kim Jin-kyu +130084,Andrew Migliore +103908,Rosemary La Planche +1633760,Ralph Quilling +54739,Isabella Orlowska +1286548,Maggie Tompkins +1267388,A Leslie Kies +1271683,Katarzyna Nowak +985073,Алексей Подольский +15373,Rif Hutton +553505,David Carr +558909,Jon Carlo +191814,Frank Leo +1706333,Zuhab Khan +1078953,Claude Confortès +77797,Jacob Theato +1347005,Aruhan Galieva +142589,Rob Dyrdek +141049,J. Stephen Brady +1583619,Yolanda Mendoza +1743496,Tong Kai +1190283,Owen Colgan +98318,Beatrice Järås +1173379,So Ming-Ming +121099,Bradley Metcalfe +1578275,Jason Williams +571932,Ítala Nandi +299276,Ralph Farquhar +1657583,Manuela Gatti +1841546,Morgan Mihal +47700,Lisa Stansfield +1614018,In Gyo-jin +1175764,Breanne Racano +1096974,Ryszard Filipski +86081,Navni Parihar +555716,Cinzia Mascoli +1172640,Pierre Peyrichout +1082703,Lou Carbonneau +1295192,Lucie Debay +97272,Kemal Sunal +1547213,Marta Iagatti +1114393,Johanne Haberlin +129802,Becky Smiser +104246,Guido Föhrweißer +1478684,Antil Jaaskalinen +1174585,Misak Toros +1399816,Kura Forrester +34189,Klaus Maeck +39115,Reilly Murphy +1316645,Alexa Yeames +257406,Gioele Dix +1181296,Jaylen Moore +991350,Alfred Mallia +618344,Rolly Serrano +126670,Niamh Shaw +1658140,Chan Sokunthea +98682,Athena Demos +932073,Benjamin Nathan-Serio +1349908,Megan Maczko +1811553,Etienne Rugazora +1241566,Rina Satou +1819783,Chloe-May Cuthill +1184330,Reuben-Henry Biggs +1718145,Matthew Curry +41565,Nate Torrence +1036198,Artie Young +80920,Tinna Gunnlaugsdóttir +1199630,Kina Mutafova +16798,Michou Friesz +1886449,Etna Campillo +1177753,Harriet Rogers +1232325,Dan O'Connor +25449,Ágnes Bánfalvy +1720845,Richard Sharrah +1095625,Jerzy Walczak +76968,Leo Gregory +1214693,Rob Jarvis +24373,Albert Filozov +59335,Ralf Schmitz +224411,Shunsuke Daitô +1044524,Nana Katase +1765704,Freddie Clemson +126693,Eiji Takemoto +1525339,Martin Versluys +1478276,Andi Morrow +121566,Sharon Lawrence +586222,Vsevolod Shilovsky +203096,Alona Tal +1650148,Jaden Michael +179940,Sharon Sharth +130222,André Charlot +934378,Sten Horn +237783,Salomé Bedine-Mkheidze +1525818,Mara Maionchi +1840374,Deano Bugatti +1001687,Aaron Munoz +1182322,Alec George +102439,John Terlesky +1151455,Serge Bagdassarian +1474045,Hwa Ling +118046,Josip Kuchan +141530,Noah Crawford +1,George Lucas +115365,Jean Inness +63209,Michelle Mais +205725,Rasmus Hardiker +1086400,João Rui Guerra da Mata +187902,Eunice Anderson +1458057,Kathy Rose O'Brien +144048,Edward Jobson +135256,Anna Hardwick +228330,Jon Cor +1178832,Lam Wai-Tiu +1497229,Pablo Perea +97299,Natar Ungalaaq +169244,Peter Vack +43192,Katya Berger +1647129,Derek Siow +1419647,Elizabeth Irene +72789,Ciro Petrone +588275,Bimba Bosé +1090773,Caroline Rankin +1370854,Michael Hadley +531736,Lee Je-hoon +1811526,Mengistu Zelalem +1845742,Derek Boyes +13484,Jim Sharman +1148656,Melt Sieberhagen +79541,Blutch +1306415,Jack Mitrani +1243831,Jennifer Goodhue +102475,Barbara Lessin +71984,Julia Richter +1497142,Nonna Grishayeva +1630326,Maxx Gomez Ferretti +1084606,Irma Álvarez +1036174,Aloe Blacc +1102103,Eugen Sandow +1717548,Fernão Lacerda +1135339,Andy Tangkaprasert +134883,Yu Ling-Lung +1445131,Flavio Carvalho +584461,V. S. Raghavan +1680188,Josué Gutierrez +1384005,Kristian Hart +237832,Pawel Królikowski +1253778,Alessandro Tiberi +49214,William Dieterle +1450749,Miúcha +11136,Stringer Davis +148020,Seppo Pääkkönen +1170035,Pedrín Fernández +1164341,Devyn Dalton +54939,Alfonsino Pasca +1213001,Charles Frank +69186,Kirsten Walther +1809572,Yves O'Hara +1117777,Basim Kahar +73557,Rudolf Hrušínský +1837282,Frank von Loh +1191708,Yun Seung-hun +112210,Luis Felipe Tovar +1471375,Gus Kerner +937384,Sania Johnson +1210414,Yu Hai +34583,Fernand Ledoux +1375338,Lauren Weedman +111122,Charlie Finn +1538583,Guilherme Scarabelot +25680,Laurence Kennedy +1378664,Clint Ward +1118717,Jon Kaminski Jr. +1436402,Xiao Xiao +1401545,Shane O'Brien +571184,Andreas Beck +1818013,Victoria Patenaude +1425935,Verity Pinter +996296,Christian George +121329,Robert Cherry +1646175,Patrik Grönqvist +1602401,Ivan Ganzha +1028803,Erdal Celik +1147576,Isabelle Giami +210305,Kelen Coleman +1704782,Daniela Barbosa +1489472,Gogi Kharabadze +57584,Paul Smith +235493,Andrzej Grabowski +1511981,Jillian Pedone +1564284,Katarzyna Sawczuk +586951,Jonathan Brugh +228875,Maria Lapiedra +1456292,Tamara Hickey +929045,Diego Cremonesi +1312123,Martin Askew +52806,Erika Sawajiri +14027,Paulette Goddard +111770,Michele Knotz +209630,Olivia Grant +1860633,Shelby Janes +150946,Virginia Welles +1393522,Lindsay Clift +1691930,Tiffany L. Addison +1124103,Travis Quentin Young +1004851,Job Bovelander +936885,Chris Stein +123922,Benoît Girard +94508,Khan Chittenden +967163,Claudia Otero +237027,Bill Fellows +1573178,Francesca I. Biasiolo +990589,Hiromasa Taguchi +956782,Natasha Rastogi +53372,Nandita Das +1028465,Jose Gamo +1444880,Sunny Suljic +1093510,Cameron Wofford +54182,Taylor Cole +41169,Valur Freyr Einarsson +1176796,Francesca Rinaldi +1424439,Janko Cekic +1427391,Mihai Comanoiu +1129185,Emile Hoch +1441809,William Sehested Høeg +1784324,Danielle Soibelman +1407731,Cariella Smith +135434,Gemma Reeves +135461,Andy San Dimas +1437333,Harald Windisch +1238882,Cass Elliot +1163181,Hui Siu-Ying +1678518,Harri Sippola +1199000,LaJessie Smith +98628,Kim Fields +1784680,Makenzi Swicegood +63579,Avi K. Garg +154491,Stacy Haiduk +55662,Noriko Hidaka +1735569,Kial Butler +108694,Jeremy Mitchell +990468,Wong Ching +52008,Thea Schnering +1136409,Maria Malicka +1086352,Rafael Gareisen +1251493,Jessy Hodges +146718,Julien Doré +140028,Tracy Hyde +1345495,Odessa Young +1153524,Daiva Ksivickiene +1504918,Lynn Robertson Bruce +1485178,Robb Edward Morris +1473990,Ami Metcalf +1292971,Park Hae-joon +1388661,Richard Klein +78463,Gary Graham +937383,Rukenya Demeritte +146439,James Ward Byrkit +1590839,Pixie le Knot +130109,Arya +589594,Peret +142345,Muriel Aked +3720,Rick Roberts +1179384,Enid Lowe +123557,John Dossett +64623,Nenna Abuwa +55893,Dorothy Green +995393,Raghavendra Kadkol +1677211,Eduardo Ramos +86860,Leonid Barats +1098508,Poul Clemmensen +111693,Adam Boyer +1584029,Aaron Helferich +1049496,Marko Vasović +1262587,Vicenç Miralles +1149827,Lucía Ramos +1593230,Levi Eshkol +1365231,Holgie Forrester +1438902,Paul Montague +1368291,Fay Chaldecott +1821497,Chase Cubia +1506477,Juliana Sass +1902102,Lara Miletic +1325340,Srushti Dange +1730431,Sam Hardy +1296081,Kylie Gulliver +1434258,Tatyana Pavlova +83994,Frank Gerstle +13693,Chick Ortega +228874,Yon González +1169339,Blake Cooper Griffin +58074,Madge Sinclair +80378,Preston Bailey +304848,Randy McDowell +227372,John Lapus +236241,Santo +1090687,Helen Rogers +94984,Chris Olivero +1309267,Mariya Fomina +1758531,Steven Isarapong Fuhrer +1816343,Aykut Hilmi +1601109,Enor Silvani +1898233,Milojka Andrić +1043662,Jordana Largy +1089889,Malcolm Boddington +579544,Madeleine Silvain +1249588,Geoff Breton +1684443,Jeff Robinson +1711441,Maki Sawa +107329,Jill Haworth +81921,Robyn Paris +1130081,Mitică Popescu +1760893,Monty Mclaren-Clark +1030512,Dayo Okeniyi +1230260,Kevin Summers +1039359,Kate Linder +80619,Steve Coulter +1651418,Lukas Johne +9627,Isabella Ragonese +1746935,Deborah Ingersoll +64437,Qu Ying +1130966,Blanche Stewart +1784145,Olias Lelouch +37784,Carlo Tamberlani +1288425,Moody Diaz +102848,Marcel Lévesque +1452727,Tony Edmunds +190961,Patrick Garrow +1508117,Christian Sloan +103106,Ernesto Colli +235815,Alan Marriott +1511756,Sant'e Andrews +938121,Brad Milne +130057,Eileen Moore +59616,Patricia Tulasne +1175672,Jerome Thier +1581917,Bernard Arnault +1152205,Dimitra Matsouka +1869099,Farrieda Smit +120901,Ok Ji-young +1834954,Betty Blackler +1415421,Gary Hood +1296430,JuJu Chan +19266,Larry Cohen +58141,Donovan Leitch +1879644,Peter Verby +579438,Thierry Thibaud +199264,Mary Beth Evans +106488,Marcus Aurelius +222309,Heidi Herala +1629008,Anil Nedumangad +1630351,David Thomas +188284,Adam Mayfield +1630271,Louis Allen +35448,Fritz Roth +141874,Beena Kak +1533667,Juan Blanco +26931,Elzbieta Jagielska +23181,Stefan Murr +1512191,Art Wasem +226626,Cindy Carol +1051408,Noell Coet +91563,Ozzie Devrish +1081522,Tatyana Ryabakon +227796,Mira Pawluk +39772,Robert Glenn +85458,Vinod Khanna +1178927,Amalie Kruse Jensen +127963,Shaun White +1266232,Dylan McSoley +33197,Ahmed Best +1478646,Ginger McNamara +1620574,Asaad Kellada +43902,Erik Palladino +148876,Forrest Stanley +1807167,Natalie Coughlin +30845,Narda Onyx +1708563,Vic Uematsu +1114562,Evgeniy Tkachuk +37605,Frédéric van den Driessche +1658199,Emily LaGroue +1390500,Nate Harward +1043944,Giacomo Agostini +1879673,Lisa Salazar +118941,Jennifer Butler +1138123,Vesa Pokkinen +89552,Colin Murdock +17547,Susanne Bormann +1412946,Mick Dillon +161827,Jock Gaynor +128228,Deborah Bernuzzi +116202,Barry Atsma +172056,Olivia Crocicchia +1178763,Lucius Hoyos +1848086,Emma Coppersmith +128243,Mario Petri +12006,Alfredo Rizzo +1761832,Petteri Asikainen +1648972,Inga Ibsdotter Lilleaas +1434839,Lois Kelso Hunt +230253,Marty Stuart +1813607,Michelle Alexander +121520,Michelle Bjørn-Andersen +1283057,Daniel Fulcoly +1205499,Dorothy Ward +569919,Marija Kohn +589792,Ana Bertha Lepe +1014944,June Jocelyn +1419911,Hayato Kakizawa +96697,Karl Howman +226030,Jussi Vatanen +66743,Matt Bomer +1759912,Manon Brunelle +1187307,Ruth Michelly +1633759,Emily Hittler +41687,Patrick Muldoon +1078405,Joan Alberto +1393179,Venus Schultheis +1230327,Cal Rein +1223456,Luke Dressler +1485336,Felisha Cooper +128192,Riley Bowman +1457671,Dandi Dewey +1807531,Heung-Heung Chin +1135593,Dorothea Mercouri +55962,Louis Mustillo +1515160,Manny Mendoza +1822712,Lucas Amesberger +1630007,John James +1263734,Aarne Aksila +1289605,Arash Marandi +63344,Brandon Ellison +927675,Loes Haverkort +1570190,Frances Chaney +1562089,Daniela Nitsch +1215211,Marc Baylis +1149656,Marc Velasco +1269623,Andrea Muzzi +961268,Sabu Cyril +1053376,Mieczyslaw Janowski +1568215,Clarence Branch Jr. +82748,Thomas Browne Henry +8071,Axel Geddes +1336799,Lee Tae-Im +1424311,Anjali Rao +1711363,Blanche Thebom +1213279,Ryan Corr +1702807,Diana Irvine +1690042,Claudine Chatel +1251994,Kyle Mac +583729,David Quertigniez +1784615,Lyss Remaly +1734197,Jackson Hengombe +1222431,Kim Kap-soo +1299062,Kelley Hinman +235609,Ekaterina Volkova +24067,Ina Holst +1733971,Muhammad Cunningham +592972,Leon Weaver +103866,Åke Lindman +71302,Giancarlo Bigazzi +112225,Eva Herzigová +89937,Reed Howes +134875,Gardner James +86869,Anna Azarova +1700416,Markku Suominen +1637729,Mukesh Bhatt +1470729,Soubin Shahir +1724688,Cherno Jobatey +51297,Jonah Bobo +1642133,Jenna Jade Rain +47743,June Whitfield +86088,Prem Chopra +1334566,Kang Shin-hyo +58902,Zahf Paroo +91557,Suman +56680,Luke Grimes +1412876,Gail Fitzpatrick +1396355,Isaac Cuende +92078,Dorla Bell +1353304,Ann Reilly +27674,Mustapha Salamat +1443492,Clara Rugaard-Larsen +1220122,Jessica Turner +1446119,Pablo Erpenbeck +1654736,Kamil Lemieszewski +1848675,Robson Maia +108921,Lucy McMichael +1286796,Stuart Rutherford +53862,Kaley Cuoco +69068,Gianfranco Barra +1590341,Yo Santhaveesuk +545787,Yosef Carmon +1084326,Raúl Rizzo +1356799,Franz Cantalupo +1368958,J3.0 +1048179,Ian Sinclair +1137890,Coralie +1605660,Tinah Mnumzana +119083,Jack Dimond +110436,Lee Paul +100410,Sonia Viviani +79551,François Creton +1636687,Rafał Gerlach +1676178,Dave Bresnahan +1687230,Nello Riviè +1127869,Abbey Rose Leed +232760,Jason Von Stein +1371104,Darren Lipari +1511969,Dean Kapica +1310864,Orlando Capote +46930,Frank Novak +1089462,Ingrid Sattes +1529463,Terri Taylor +1371195,Ivan Camacho +1561255,Hugo Manuel +1060556,Puneet Sira +64975,Henrik Norlén +87697,William Gargan +933403,Ben Barenholtz +1415403,Michael Bow +85982,Guido Lollobrigida +579284,Gerrie Raymond +1605315,James Keane +1747651,Mady Comfort +1228756,Tom McTigue +572088,Michael Felsher +84221,Charlie Bewley +1286743,Audrey Petenbrink +142967,Tommy Abuel +1178995,Jessica Lindsey +167208,Jack Forbes +1051347,Jan Delay +1038662,Ryan Hartwig +1555946,Gregor Babic +86722,Sergei Russkin +1010097,Cullen Johnson +8190,Michele Little +85230,Andi Vasluianu +1027089,Guillermo Calles +1467496,Johnny Selema +1407682,Liz Crawford +1027114,Fedya Smirnov +1587629,Shin Chang-Soo +1424213,Curtis Fowlkes +1418845,Peter Wollasch +77702,Margie McCrae +1294340,Elisapie Isaac +1352652,Ender Frings +551171,Cho Seong-ha +126672,William Svedberg +156157,Laura Peterson +1088727,Lev Shimelov +1771575,Tania Cuzmenco +132833,Katherine von Drachenberg +1519563,Kaitlin McCoy +102854,David DiSalvio +1346101,Matt McHugh +224665,Osamu Ôkawa +1015794,Henry Ramer +104387,Christopher Michael +1716518,Austin Waits +1508796,Nikos Kouros +46422,Ana Obregón +81916,Tommy Wiseau +29462,David Nerman +130645,Stephanie Che +15480,Sabine Timoteo +193946,Mark Kubr +38125,Giuliano Raffaelli +1368313,Yoshiko Sakurai +48999,Marie-Hélène Dasté +1300495,Karin Bergquist +6519,Randeep Hooda +1296188,Rayleen Kenny +1777418,Osamu Tanpopo +553282,Yasunori Matsumoto +1413762,Michelle Nightingale +93536,Igor Petrenko +229200,Ruth Hale +146098,Zhang Yi +931403,Félicien Tramel +1384651,Tomoya Warabino +545770,Evgeniy Papernyy +128167,Gertrude Bambrick +37885,Bryan Russell +1110509,Alfredo Rodríguez +1670762,Brian Barela +929108,Dale Thomas +238776,Tai Ling +107740,Endre Hellestveit +145428,Serhat Tutumluer +554132,Joan Dowling +1835525,Chris Pollard +1029124,Ruzanna Shar +44222,"Antonio Sabàto, Jr." +1271473,Mason Dye +1752153,Sabrina Reeves +1569762,Adam Reid +1171688,Noah Visconti +122545,Gregg Bello +1388653,Anthony O'Brien +46392,Lou Reed +45051,Harry Treadaway +1070736,Victoria Levine +1519927,Matthew Warry-Smith +1018030,Taylor Mason +1840491,Jane Johanson +946425,Alf Goddard +1753259,Haze Reweti +1371860,Jez Bonham +1544737,Kayla Fallon +1651406,Marinelly Vaslon +1445781,Precious Wiesner +1186839,Kyla Deaver +160541,Joe Maross +1437547,Joshua Henry +1400601,Connor M. Kizer +150577,Aidan Kelly +1190225,Leung Sap-Yat +1515484,Michał Żurawski +1747835,Orli Shuka +109117,Lyudmila Gurchenko +1196875,Richard Sandling +1465051,Aiden Flowers +59899,Andrey Merzlikin +1645163,Kengo Oguchi +559727,Marilu Bueno +1869037,Christiani Pitts +1648780,Siyan Hout +1095689,Supanart Jittaleela +1272965,Victoria Tate +1643338,Mohammed Abnou Noussair +1601878,Luca Terracciano +1291103,Angela Justice +57898,William Malone +1464567,Lee Murray +129621,Massimo Poggio +90457,Lorry Ayers +123968,Stefania Girolami Goodwin +207823,Richard Robitaille +47838,Miroslav Táborský +132528,Carolina Kaneda +26739,Sylvia Chang +1207289,Stuart Pollock +227909,Veronica Pivetti +1379974,Jack Murphy +1842218,Josh Tippey +237697,Raghuvaran +110033,Dimitri Vysotsky +239670,Yekaterina Fedulova +213837,David Hartman +1050844,Uros Jovčić +1797108,Mariam Tovey +224505,Kevin Goffette +1224494,Wellesley Wild +240487,Vladislav Strzhelchik +1430428,Takashi Kawahara +1740111,Gwendolyn Lindsey +7152,Sandra Hüller +35509,Harry Gittes +48176,Axel Gottschick +530073,Jose Montesinos +1301151,Mrunmayee Deshpande +1289332,Peter Vives +105099,Suzanne Ernrup +183812,Jason O'Mara +648087,Rajesh Sharma +556114,Güneş Sayın +218667,Kelsey Scott +1078406,Matt Conrad +1128183,Elda Tattoli +1162656,Bart Hollanders +1323486,Allison Busner +1384211,Matthew Brennan +1185280,Lodi G. Gyari +929635,Vyacheslav Vasilyev +162005,Vince Cannon +1406685,Tommy Townsend +82662,AnnaLynne McCord +932604,Nihal Yalcin +224672,Seo Jin-won +110761,Elina Kivihalme +71378,Olivier Loustau +1443630,Mochika Yamada +1218183,Lamman Rucker +1422336,Alexandre Desrousseaux +1077699,Joshua Greene +1548431,Murray Langston +27797,Kim Henkel +120153,Paolo Triestino +1780274,Tanemahuta Gray +1440200,Aki Chan +1343805,Jacqueline Forzane +6262,Egon von Jordan +1682515,Jordan Sudduth +994246,Heikki Paavilainen +79937,Mary Lawlor +1593000,Michael Tow +55650,Luca Barbareschi +1680429,Salvatore Jacono +21687,Park Hae-il +1286908,Stephanie Fantauzzi +1084400,Jolanta Fraszyńska +223081,José Luis Aguirre +1779953,Aaron Lamprey +236750,Pyotr Logachev +1124950,David Whalen +234665,Rafaela Aparicio +89703,James Seay +586359,Sophie van Winden +586251,Andor Ajtay +237611,Salim Ghouse +1089085,Kirk Cribb +1478589,Robert Hamilton +129743,Alessandra Casella +1025796,Mildred Brion +1239940,Robert Ratti +116160,Marita Nordberg +1074714,Manuel Osto +1074722,Lewis Macleod +1089049,Juan Carlos Vellido +1849121,Stéphanie Fumex +6816,Klaus Knuth +36191,Rick Groel +68325,Dirk Heinrichs +930020,Pamela Parrish +164903,Kate Williams +1507228,Tarek Yaacoub +550140,Douglas Håge +1837870,Joan Selesnow +78169,Sam Jaffe +1031793,Kelly Robins Hicks +1900892,Dante de Rose +1469282,F. Philip Sylvestre +146358,Mehdi Dehbi +93283,Shane McConkey +143210,Noel Gallagher +1560247,Brittani Cox +1185420,Victoria Ressurection +1315170,Nat Reed +1684813,Pieter van der Houwen +572169,Danny Ahn +65424,Rica Matsumoto +1090201,Nikolai Iliev +76553,Kyrre Haugen Sydness +545655,Frédéric Ladonne +1609752,Mary Glory +27860,Barry Newman +1440941,Lisbeth Gajhede +1488908,Hudson Meek +88094,Robert Hooks +1206600,Isaiah LaBorde +1643038,Viva Ostervall +556925,John L. Watkins +1312171,Timothy Block +236594,Amber Perkins +1866591,Gavin Black +82138,Robert Gow +1677481,Ava Dean +122675,Kelli Strickland +1088209,Michael Della Femina +1398052,Yoshiharu Hashimoto +1171755,Bishop Brigante +1179450,Raul Tome +552699,Safia Aggoune +126540,John-Paul Macleod +1096518,Terri Abney +572242,Caryl Minder +955354,Spo-De-Odee +1036283,Lucia Snieg +35211,Michel Boujenah +227231,Sean O'Reily +109119,Natalya Tenyakova +223167,Radhika Apte +111830,Boti Bliss +141678,Cristina Fernández de Kirchner +133209,Rosemary Dexter +1008141,Femi Oyeniran +1616886,Law Ho-Ming +1657541,Nixon Hodges +1153528,Saakanush Vanyan +1181220,James Ryan +1029126,Nick Wagner +570296,Joe Dempsie +1803401,Daniel Coll +1863896,Tales Penteado +120393,Joe Conlin +1762752,Bernard Boudru +1459894,Ewa Zdzieszynska +19119,Mélanie Laurent +134171,Jack Axelrod +107868,Ruslana Pysanka +63769,Ane Dahl Torp +1388314,Stephan James +1252369,Choi Daniel +53232,Lucian McAfee +130043,Pedro Paulo Rangel +584981,Aleksandra Balmazović +1704623,Lory Tom Thompson Sr. +121250,James C. Morton +29375,Steve Miller +929687,Nadezhda Zharikova +1457224,Doris McCarthy +255430,Martin Delaney +1047595,Helene Costello +1063890,Michiko Kuwano +14656,Matt Briggs +1593037,Abigail Boucher +213202,Daniel Henshall +1583952,Stanisław Madej +73394,Arthur Dupont +1745404,Zoe Niemkiewicz +1754282,Veronica Viruet Simpson +96614,Song Jia +83866,Robert Hunger-Bühler +24631,Barry Stokes +1853351,Brock Brenner +1431773,Lukas Loughran +1714230,Freddy Daruwala +20200,Wei-chang Wang +478546,Sathyan Sivakumar +238525,Tatyana Yakovenko +1398147,Erika Kurata-Prevost +15395,Maurice Ronet +5851,Arnel Taci +1348290,Patrick Fierry +583316,Russ Kingston +1281498,Mikako Komatsu +1127745,Alfredo Miller +62007,Ruby +1384638,Alexandra Sakelaropoulou +65437,Junko Iwao +20165,O'Neal Compton +146474,Maureen Olander +1614392,Ejji K. Umamahesh +209326,Sam Heughan +1200426,John Bassberger +1800033,Shaun Dunne +1844340,Kathy Giordinis +1717813,Nino Nava +158833,Sydney Penny +1592937,Catherine Treskow +1503761,Philip L. Mead +1110446,Ushan Çakır +932209,Lukas Reiber +1662628,Daniel Slotnik +1503855,Dakota Lupo +12796,Johnny Strong +1103790,Hélène Cordet +1129186,Margery Whittington +67093,Yûya Ishikawa +1854447,Luigi Basagaluppi +1734703,Kisaburo Sawamura +6534,Jesús Carroza +1264157,Katja Blomquist +1297503,Wulan Guritno +79817,Ólafía Hrönn Jónsdóttir +102121,Romano Puppo +1378612,Monica Lacy +1113060,Lee Seung-joon +24494,Alberto de Mendoza +1496441,Tomine Mikkeline Eide +10990,Emma Watson +1295347,Frédéric Lordon +1025618,Annette Whiteley +1263645,Judith Noyons +1213604,Kimberly Kevon Williams +78321,Ruben Garfias +1885603,Antoine Rebb +1367013,Owen Harn +109423,Vic Chao +222882,Dylan Vox +103588,Joal Corso +37982,Agata Buzek +1083309,Yôzô Takamura +1770249,Julia Dominczak +125947,Kana Matsumoto +935647,Pigmalion Dadakaridis +1241035,Kim Jong-kook +1151253,Anthony Therrien +1286675,Jay Gates +59310,Jennifer Calvert +12042,Seamus Davey-Fitzpatrick +568049,James Hébert +1339662,Asadollah Yekta +1199585,Carlos Ferreiro +1755080,Cesar Marquez +1435932,José Alberto Mujica +77437,Erich Löwel +138717,Luisber Santiago +52940,Andy Milonakis +225686,Polina Iosilevitch +26843,Jürgen Scheller +210940,Marston Bloom +1048982,Patrícia Bull +106446,Carrie Vanston +1647911,Leïla Saadali +1265273,Leigh Holland +113006,James C. Burns +1050000,Anne Vandène +1898729,Giuseppe Morrone +83015,Kang Ji-hwan +1066900,Betty Francisco +236600,Carolina Sabate +15088,Gyrd Løfquist +589579,Henri Charrière +65810,Matteo Ferronato +1750918,Petros Xekoukis +147046,Cengiz Küçükayvaz +1543183,Adèle Söderholm +1396611,Nick Turner +1782594,Jamie Lynn Perritt +1068313,Johan H:son Kjellgren +1014273,Marcello Di Falco +571444,Hakkı Kıvanç +973402,Jaideep Ahlawat +238028,Azhagam Perumal +239446,Hiroko Sakuramachi +1789824,Alexia De Coster +130449,Hans Teuscher +1233245,Sunny Hostin +1037718,Béla Fesztbaum +1438836,Adam T Perkins +95716,Ian Pirie +237380,Eleonora Bianchi +1196106,Gregory Lam Kwai-Ban +1236316,Adam Sessler +97037,James Ellison +223074,Kalevi Kahra +1184628,David Dukas +1379383,Angela Lin +95039,Sofia Vassilieva +1637841,Cédric Lenoir +148432,Aggie Herring +1325478,Mine Sun +561773,Destin Pfaff +1394350,Andy Ahrens +1680719,Tina Mba +77235,Bobby Deol +201366,Chris Torres +1784617,Jannel-Marie Diaz +1359568,'Spring' Mark Adley +49293,Irene von Meyendorff +81829,Michael Hayden +129128,Keith Humphrey +1331813,Iván Sosa +1169622,Xulio Lago +1217383,Kaye Elhardt +86045,Gary Beadle +1591306,Gladys Du Pell +1532844,Valeria Pani +98793,Maria Laura Rocca +86478,Peter Wyatt +1520065,Eric Satterberg +1759669,Enku Gubaie +74155,Janette Scott +135724,Björn Andersson +59615,Robert Toupin +1084802,Ellis Walding +1124101,Jessica Szabo +1092223,Janelle Johnson Dolenz +1902106,Gennadi Medved +1067720,Kelly Baugher +119119,Marjorie Bransfield +1758537,Haruehun Airry Noppawan +1264351,Kalle Eriksson +237830,Smadi Wolfman +1574232,Dean Marrazzo +1459404,Ian Edmondstone +1465376,Luigi Leoni +76697,Jessica Horn +110758,Asmo Hurula +1176616,Malte Claudio Lind +64813,Jon Ronson +1268632,Tsutomu Takahashi +102748,Andrew Wheeler +164748,Gerry Johnson +1755073,Jeannie Hargrave +1322603,Alan Powell +154748,Jason Brooks +82520,Darla Middlebrook +85492,Carole Donne +1337246,Michael J. Valentine +67546,Wolfgang Stumph +1488708,River Ross +1428071,Seth Isaac Johnson +1388523,Michael Dickson +1371878,Miles Doleac +37164,Hermine Karagheuz +124616,Hilmar Baumann +1213084,Karen Kilgariff +1302058,Esteban Rengifo +113373,Mike Birbiglia +1468203,Alexandra Robinson +212689,Jeff Hephner +78431,Ben Feldman +1784648,Joe High +89017,Gordon De Main +86016,Farha Naaz +1302537,Adam Bucci +1199187,Renji Panicker +1704617,Mark Baynard Baggs +18536,Siegfried Schürenberg +1554055,Patrick Cunningham +1385262,Gabriel Melgar +226344,Joel Michaely +109578,Graham Nash +931286,Steven Sprung +462483,Angeli Bayani +283391,Jorge Poza +589795,Miguel Arenas +1221862,Yuka Imai +1353917,Aaron Giberson +1180695,Jacob Reed +1643059,Alexander Altomirianos +1758596,Khaboonpak Sakityanyong +1754535,Gary Wayne Loper +1333935,Amanda Adrienne +1106067,Suzanne Bech +1291691,Kyle McKeever +92827,Gianluigi Chirizzi +1651390,Michael Haydon +1832096,Robert Jekabson +28951,Mehmet Yilmaz +1048670,Lauren-Marie Taylor +1706349,Hammad Siddiqui +66904,Alejandro Trejo +1552005,Samantha Brooks +67320,Kseniya Rappoport +1467940,Landon Collier +1308818,Piper Curda +1596415,Johannes Baasner +1591596,Brad Arnold +1038247,Itzhak Finzi +24688,Cécile Vassort +1117772,Rami Farah +1294906,Lee Hyung-seok +1621789,Betsy Túrnez +227881,michel field +1169390,Reenu Mathews +1560250,Darren Whitfield +1224723,Karl Theobald +1548543,Franzl Lang +174571,Pat Mastroianni +1088052,David Bunce +1164499,Kim Chang-hwan +1302827,Calvin Borel +1338405,Earl Sands +141748,Sharon Washington +1648160,Dane Farwell +1714290,Tamara Mintz +113919,Hynden Walch +916072,Chase Bennett +1665411,Ganapathi S Poduval +98520,Pernell Roberts +1504436,Ritika Singh +1093721,Tara Newley +1086565,Monica Shere +40617,Krystyna Mikołajewská +1384091,Gerhard Kittler +105040,Maureen Byrnes +16532,Larry Carroll +88472,Matteo Oleotto +1577501,Kenneth Maharaj +534031,Pascal Duquenne +1253916,Yoshie Taira +52628,Sofia Milos +1184006,James Smith +24069,Samantha Viana +204509,McCaleb Burnett +90042,Rene Mousseux +1549114,Sergine Dumais +1569796,Edward Buckles +123739,Lily Franky +35898,Pierre Fabre +1678612,Matthew Garlick +114767,Mary Brian +124677,Primo Reggiani +580587,Jean-Jacques Vanier +110757,Jorma Markkula +85963,Alice Tzeng +38568,Tom Clancy +86793,Anastasiya Zuyeva +239720,Lidiya Fedoseyeva-Shukshina +1423261,Leo Ibanez +1534295,Babette Washington +1290588,Stephen Stevo Jones +224136,Dora Madison +1338475,Anthony Oseyemi +1057913,Caroline Hildebrand +1190694,Borislav Brondukov +196163,Dennis McCarthy +591911,Franz Böheim +1643036,Ann Hellenius +1753329,Rowbie Orsatti +238656,Giulia Ruffinelli +69444,Enzo Garinei +1039425,Terry Bradshaw +976235,Don Blackman +568033,Sue Flak +939084,Corrine Brown +1529184,Bernardo P. Saracino +997792,Tyler Gannon +1158418,Trey Hansen +42081,George Butler +11938,Herbert Kroll +1622657,Mark Aaron Wagner +1525057,Roseanne Murray +1147818,Nico Di Renzo +1848650,Ellen Jabour +52637,Carina N. Wiese +1098732,Peter DaCunha +1043508,Alfredo Varela +1140233,Tone Tank +13652,Ronee Blakley +1387024,Kdin Jenzen +139674,Sigurður Sigurjónsson +274256,Tatjana Blacher +87282,Hudson Leick +583735,Misha Meskhi +130869,Stefano Chiodaroli +88804,Salil Acharya +1324779,Malka Kornstein +1404696,Kellie Matteson +111538,Marko Iversen Kanic +1276624,Nathan Lee +1673717,Zara Michales +1342035,Kingsley Frances-Gray +189996,Eddie Garcia +95577,Jake Canuso +1060637,Ted Pfeifer +557530,Sharon Hughes +549376,Marcin Sztabiński +147960,Jason Manuel Olazabal +1457273,Phyllis Montana LeBlanc +91253,Gila Golan +229434,Robbie Daymond +1126166,Celso Faria +1342478,Laura Miyata +240920,Bruno Di Luia +98876,Jarrod Robbins +1430323,Paola Dionisotti +30612,Timothy Brown +5441,Edouard Montoute +1880590,Jennipher Rodriguez +1327295,Mina Mirkhah +1156032,Jacques Gombault +21435,Howard Marks +1532259,Joss Wyre +1683124,Barney White +571550,Véronique Delbourg +1622606,Stephanie McIntyre +240082,Jeong In-gi +5762,Daniel Nocke +1704654,Jane Rumbaua +90043,Aynn Kirby +1670998,Olivia Ryan Stern +1669184,Lauterio Zamparelli +225107,Massimo Dapporto +569551,James Johnstone +174235,Colter Allison +87057,John Hawkinson +128814,Vitaly Emashov +17180,Sadie Goldstein +235024,Daniel Musgrove +49047,Jutta Wachowiak +1098644,Shirin Ebadi +1105808,Tori Matsuzaka +1137287,Masha Tokareva +1548315,Martin Ferguson +1650255,John Sumner +137999,Carrotte +1204483,David Newton +584431,Ganthimathi +207228,Tylor Chase +963313,Holt Boggs +1415406,Michael Deville +1172842,Aasta Brown +1042762,Guillermo Weickert +1801265,Juan Fernández +163928,Noelle Beck +1082356,Courtney Rawls +985080,Sergei Kuzmenko +105880,LisaRaye McCoy +11979,Efraín Arauz +1642154,Friederike Sabin +679142,Vadim Beroev +121718,Bill Camp +79764,Ismo Kallio +1345250,Ogata Issey +179372,Shirley Ballard +24528,Matthew R. Anderson +934088,Julio Diaz +1102500,Dale Soules +120071,William J. Kelly +579732,Marcel Mouloudji +103583,Yvonne Saa +1126875,Enrique Díaz +1645569,David Leach +928012,Lena Nylén +1187053,Harry Rowohlt +150437,Beste Bereket +122660,Miki Itou +1443765,Mark Winterbottom +1755078,Taylor Lissarrague +1089969,Rijk Smit +1689289,Justine Lupe +1608593,Elizaveta Arzamasova +125736,Sulli +15913,Claudio Pacifico +1168702,Bailey Anne Borders +138525,Lee Joo-sil +1071139,Michael Munteanu +1320564,Robert Price +1056523,John D'Leo +580665,Karin Kavli +1096793,Jang Gwang +111215,Jack E. Leonard +569892,Fernando Ceylão +1481836,İlayda Akdoğan +1242819,Nicol Paone +174738,Alexander Hanson +18965,George Nader +1035,Paul Schrader +1137846,Mary Mendum +1759682,Katie McCabe +127187,Stephen Carr +168931,Johanna Watts +1755077,Pat Jarrells +106252,Britt Helfer +1902446,Frederico Lessa +1035398,Jay Bauman +1853253,Aleksey Dobronravov +1601280,Campbell Gullan +214818,Nicholas Donaldson +1346501,Conor Byrne +20723,Jerzy Janeczek +161728,Walker Edmiston +44880,George Maharis +3618,Darío Grandinetti +238066,Nazzareno Bomba +1486383,Jonas de Vuyst +54070,Wacław Kowalski +1117774,Zeid Hamdan +1362830,Jen Arbitrario +229077,Eric Koston +45033,Peter Lupus +1454286,Jovan Pisani +928594,Kevin Covais +1209859,Sagar Parekh +1253070,Shun Takagi +237831,Inga Jankauskaitė +46547,Luisella Boni +1186516,Jinhi Evans +1637653,J. Alan Davidson +1511017,Aaron Gibson +197482,Mark Brown +46098,Cathleen Nesbitt +1302504,Lubella Gauna +230862,Kenji Motomiya +1625712,Asaph Livni +553246,Paweł Domagała +11532,Marguerite Renoir +1750860,Mike Toney +85510,Joshua Rubin +1140990,Ngai Tim-Choi +1346560,Suzanne Lang +1396335,Griffin Kane +1298425,The Big Apple Dancers +133817,Nizam Schiller +558928,Max Charles +1088251,Tara Walker +1457795,Zohra Benali +932879,Геннадий Кочкожаров +5212,Michael Wiesner +1903968,Larry Woo +935193,German Kachin +1153028,David Akinloye +1042521,Vera Rudi +1092477,Jack Rutherford +37175,Evelyne Bouix +1841527,Lorraine Sokolowski +1169634,Hozumi Gouda +593759,Clarence Brooks +1181316,Pete Morrison +133921,Lawrence Bayne +1643341,Adil Rouassi +929296,Fernando Eiras +1745068,Mary Payne +1331270,Emmi Shockley +1234643,Jessica Hahn +113605,Margot Abascal +459443,Muhammet Uzuner +551748,Ryôsuke Kagawa +187538,Harriett D. Foy +1870835,Tina Burbutashvili +45603,Joey Camen +1851687,Dale Blank +1362385,Alice Li +82733,Mukesh +1717906,Peter Jaymes +1650196,Tom Lancaster +1846435,Nurlan Altayev +44328,Maria Furtwängler +131343,Mei Ting +18021,Jane Lapotaire +1290458,Damian Mavis +1683857,Emily Jenkins +82970,Jun Etô +1017373,Nelitza Vallellanes +1844342,Rachel McGough +592147,Yoko Maki +76967,Caroline Proust +110789,Esa Pulliainen +1581916,Serge Klur +1044952,Kristopher Van Varenberg +980774,Janis Ward +1077796,Declan Swift +104791,Cathy Lee Crosby +1427090,Thomas Alderson +28447,Paul Faßnacht +1322587,Martin Kashirokov +1824295,Jemma Moore +1905796,Lukas Krampera +1293075,Maria del Carmen Antelo +1115095,Verna Raj +175974,Richard Murdoch +552683,Houchu Ohtsuka +79610,Sarah-Jeanne Labrosse +99258,Irina Skobtseva +1704613,Jeronimo Spinx +1253385,Eduardo García +223075,Maria Melin +1764690,Susie Miller +1178114,Rebecca Toolan +1058613,Brownyn Cornelius +1599264,Wilhem Iben +126898,Michael Chapin +1283561,Lars Feistkorn +135202,Hajime Inoue +1168913,Joe Farrell +261651,Sandra Montaigu +571547,Claudia Galli +144618,Leo Gavero +1382182,Matt James +1894949,Karim Hamzaoui +1745921,Amanda Blattner +231749,Tender Huang +1570863,Judith Sandler +1339967,Krishnakumar Ramakumar +1016065,Emma Powell +1782075,Sarah Malin +930838,Stanisław Milski +1550497,Robert Long +580662,Tulasi +97351,James Taylor +1452351,Vladimir Tevlovski +1009931,Kevin Durant +964459,Julianne Côté +1295541,Mason Trueblood +1295596,Jean Gadrey +140650,Magdalena Różczka +1592944,Alexandre Skeret +1163717,Isaiah Stone +84271,Gabriel Friedman +1330008,Mimika Luca +79613,Monique Spaziani +1366667,Michele Minns +161976,James Logan +946696,Ian Whyte +1223750,Marianne Leone Cooper +1807468,June Waweru +1224148,Elizabeth Ho +454589,Tolepbergen Baisakalov +35001,Jacques Debary +138399,Shatrughan Sinha +1066915,Sarah Branch +931946,Jordan Howard +1637840,Alexandre Trocky +24608,Flavio Bucci +1100017,J. Stuart Blackton +1475232,Samuel Robertson +1018804,Lucy Angelo +1263516,Cheryl Strayed +115682,Rebecca Night +131624,Vinicio Marchioni +30430,Indira Varma +1200780,Duke Jackson +20337,Akira Nagoya +77356,John Melendez +82758,Borce Nacev +1264617,Justin Strydom +72997,Chris Potter +208160,Christine Evangelista +128456,Adamo Dionisi +103451,Hugh O'Connell +592538,Wichai Prommajan +184165,Nicole Gian +1493272,Lina Keller +1196406,Cally Monrad +964851,Jim Conroy +50095,Jason Ritter +1461573,Dino Zoff +1086523,Byron J. Brochmann +555528,Andrea Bosca +1192050,Sai Tamhankar +1651050,Ron Reznik +1194967,Brent Werzner +1851074,Francisco Vera +1800034,Jason O'Reilly +1207309,Bill Hamilton +1789754,Lorraine Dorado +128195,Sarah Aldrich +1707550,Brady Rice +59217,Shanna Collins +153691,Frank Chase +1233266,Andy Wareham +1829338,Penelope Kindred +1833097,Ranjeet Singh +84485,Ellen Drew +975632,Lowell Brown +135200,Ikuji Nakamura +37183,Héléna Manson +1526124,Emily Coutts +934288,Jesse Draper +1759685,Kandiss Marie Lewis +1337985,Lidia Zabrieszach +1227384,Harry James +1900173,Natalya +979432,Jeanine Serralles +1599270,Marie Wohlmuth +1869054,Carmen Matheny +1773052,Elsie Escobar +998892,Earl Oxford +130375,Mark Daniels +1802432,Jalis Laleg +108863,Martti-Mikael Järvinen +129078,Carmelo Galati +236043,Charles Powell +1365186,Adriana Calcanhotto +1294276,Raoul Desmeules +569514,Nicole Cooke +1194701,Josh Ethier +95008,Tina Pine +1566497,Luigi Di Capua +227200,Rajat Bedi +1114061,Alex Hafner +1307065,Gino Soldi +28973,Augustus Phillips +1503859,Alexander Frekey +33729,Jitsuko Yoshimura +97912,Duane Jones +1046793,Mac +114981,Raymond Pozo +548169,Freya Wilson +1819918,John McCrea +98930,Kermit Echols +132598,Bonar Colleano +1481007,Eric Nyenhuis +77280,Shin Hyun-joon +68183,Sander Swart +573737,Arnold Oceng +1648784,Rith Volak +10884,Will Yun Lee +170741,Nancy Bell +587563,Mary Twala +1188048,Beth Keener +1006507,Lilly Holleman +1903062,Maria de Fátima Barbosa +1477296,Laurie Brown +945235,Kaitlin Riley +61542,Nate Dushku +1635135,Shellita Boxie +1281328,Evan Dumouchel +63107,Corri English +1891493,Hadi Alipour +45196,Ida Di Benedetto +129964,Dodi Conti +1198577,Abigail Shelton +228141,Dree Hemingway +1185414,Alexander Kirkwood +1448724,Adam Croce +963487,Nils Dommning +1886759,Aneta Kiszczak +212833,Nicky Whelan +32650,Hans Stadlbauer +1097461,Vicky Harris +2344,Günther Maria Halmer +556356,Vanessa Kirby +5119,Catrin Striebeck +203541,San Shella +82359,Ferenc Hujber +1268829,Nick Barbaro +1069630,Caitlin Gerard +103070,Michael St. Angel +206928,Maxwell Perry Cotton +935418,Sergey Vlasov +177333,Shelli Lether +938309,Natasha Randall +527393,Dylan O'Brien +938972,Angela Davis +1333945,Donnelle Russell +1218769,Max Kellerman +1734190,Hunter Stratton Boland +1490113,Amar'e Stoudemire +558819,Joachim Kemmer +186922,Tim Bell +1523992,Jenna Finley +16752,David Harewood +1359582,Eugenio Monclova +1795833,Jude Monk McGowan +144227,Elon Gold +1569923,Parviz Mammadrzayev +1138965,Franca Maresa +1750917,Deniz Baltsavia +1647318,Evan O'Brien +1683859,Gary Douglas +1206160,Charlotte Carter +1446342,Carole Taylor +1234153,Adam Irigoyen +120463,Ernie Stanton +103928,Hope Kramer +1005788,Rayniel Rufino +104913,Lily Rains +1160219,Devon Libran +83405,Orlando Seale +53676,Atul Kulkarni +1648779,Chanthoun Kien +1285977,Kimberly Alexander +565325,Vladimir Gribkov +1695670,Sandra Portillo +1208617,Bong Cabrera +1093920,Aidy Bryant +1623651,Andrew Dinner +1207368,Teale Bishopric +1101349,Steve Aoki +1800043,Ciara Duffin +1358943,David G. Robinson +1377778,Ayaan Khan +241,Arthur C. Clarke +26877,Jackie Sardou +1467992,Alina Linklater +183201,Barbara Flynn +1026536,H.B. Hallam +974791,Alessandra Ferri +1504904,Molly Jackson +1051263,Čarni Đerić +1055175,Rick Fields +104015,Miranda Campa +227604,Denis Gravereaux +88683,Marshall Reed +1436391,G. Puffs +1279654,Ana Lucia Antony +236854,Larisa Golubkina +1508818,George J. Vezina +1055267,Zoran Brkljač +17375,Thees Uhlmann +59794,Kate Trotter +116982,Marcia Knight +1769810,Jeremy Wayne Carley +587510,Konstantin Adayev +1535052,Paula Arundell +1445135,Dana Frigoli +1405272,Lello Musella +1415442,SanChavis Torns +1270999,Ralph Hepburn +1585210,Krista Jasper +1494495,Willie Saunders +2538,Chiaki Kuriyama +221143,Andrew Robertt +207295,Melanie Hill +223076,Jyrki Kovaleff +141644,Yelena Vodolasova +1440577,Chloe Levine +7743,Cecilie A. Mosli +560237,Pécsi Ildikó +1047159,Stole Arandjelovic +1820504,Michael Urriquia +929562,Elena Korolyova +1455201,David Hernández +1658615,Jeff Pope +1867385,Lee Bit-na +1139651,Yacine Belhousse +1764362,Andre Ezeugwu +1262579,Ida Carloni Talli +1517252,Alice Lee +138885,Leonard Flory +25311,John O'Hurley +84629,"Arthur Peterson, Jr." +23697,Werner Stocker +1171128,Tom Austen +1566572,Anita Ihler +204261,Taras Los +42432,Sandra Nedeleff +1240648,Michael Crane +106664,Geoffrey Binney +1519030,Zheng Yin +109981,Susan Mullen +148360,Ajith Kumar +235132,Dvir Benedek +235877,Olga Budina +1193274,Michael Oberholtzer +1161609,Selom Awadzi +125945,Saori Koide +116549,Deirdre Blades +1118147,Mitchell Bisschop +92711,Jo De Meyere +1270774,Anna Lefeuvrier +73128,Skylar Astin +134416,Alejandro Arroyo +1668238,Houshang Ranjbar +117977,Eiji Wentz +1130505,Cosme dos Santos +1559753,Reiko Hatsune +1207270,Micah Moch +1457581,Alfie Stewart +20669,Mathieu Simonet +1186076,Philippe Lacheau +290112,Anna Van Hooft +131237,Agnieszka Wagner +1223455,Max Reindhardsen +1783254,Takkou Ishimori +1860893,Gregory Schott +138890,Ian Stenlake +117144,Kamala Devi +1507336,Federico Falcón +1170656,Christine Marzano +1630347,Vanessa Louis +205287,Colin Walker +76103,Allan Hawco +1797385,Imogen Hull +1559775,Te-Ming Lu +1171285,Carlos Cabrera +146722,Christian Morin +105299,Jennifer Dale +205724,Tug Coker +106034,Arucha Tosawat +1879743,Forest Baker +98012,Anita Page +1067876,Brian Hall +183507,John Eric Bentley +51935,Patrick J. Adams +1308335,Louie Jannetta +1137453,Rebecca Elliott +107875,Marek Cichucki +93910,Jack Holt +1334137,Joshua Paul Miller +18848,Gerasimos Skiadaressis +114955,Sarah Selby +61546,Ian Robison +1344290,Richard John Walters +95192,Randy Hall +1212016,Alison Sweeney +55789,Tate Taylor +590516,Alicia Montoya +1105162,Bawriboon Chanreuang +85696,Parmeet Sethi +91350,Robin Holzhauer +231056,Christina Corigliano +116770,Nina Vale +1082355,James B. McDaniel +554604,Kiriko Shimizu +1228203,Susie Garrett +1114802,James Balog +159553,Carol Veazie +1597880,Tricia Trotter +1400903,Lupita Quezadas +1098036,John W. Iwanonkiw +32658,Mickael Trodoux +41558,Hedy Burress +1355675,Hana Seidlová +139030,Sam Rosen +108035,Andrew Hoeft +211492,Robbie Jones +1590739,Veronica Parks +1789822,Benoît Vivien +96180,Sheila Steafel +104033,Deron Miller +64151,Mike Mitchell +1236346,Boomer Phillips +1170973,Alejandro Albarracín +1235177,Gene Washington +1136149,Leslie Taylor +142894,Tom Crean +255923,Marc de Jonge +198713,Tracy Davis +59060,Jean-Michel Richaud +551184,Benjamin Cook +1385039,Bryan Stevenson +1360152,Tosin Cole +1237690,Colin Heath +1613246,Belen Rosenberg +102185,William Toddie +1272932,Anil Biltoo +1601110,Sebastiano Amaro +1095726,Flora Lillo +116409,Benjamin Kanes +107874,Joanna Brodzik +1281327,Brian Flaccus +1363622,Andrea Burns +1207359,Maxime Savaria +73525,Michelle Ryan +1237281,Nick Holmes +1189688,Gundars Āboliņš +1440862,Teresa Marco +1127385,Cesarina Faccio +1525327,Ivan Kolesnikov +1088215,Rodica Horobet +102302,Eric del Castillo +1124445,Alessandro Fersen +1744824,Aziza Kengumbe +1279375,Emily Peachey +42165,Martha Hackett +118247,Lizette Carrión +1492326,Brianna Hildebrand +240276,Grigori Manoukov +1072159,Hap Oslund +1094049,Reyes Poveda +83819,Lucy-Jo Hudson +14949,Del Henney +1378547,Leetopher Scott +1170639,Sofía Azambuya +553356,R. Kan Albay +84468,Laine MacNeil +159250,Bunny May +1239237,Kedar Brown +230632,Seema Biswas +25730,Brian Caspe +4639,Jasna Beri +1235786,David Acord +542336,Sasha Frost +1077996,Giancarlo Ruiz +1213845,Shigeru Nakahara +72705,Hilton McRae +1719894,Maria D'Alessio +97238,Alexander Field +110597,Åsleik Engmark +1035407,Jocelyn Ridgely +1029077,Lilli Aro +1264118,Betty Jean Hainey +1459811,Koos Dippenaar +1245856,Supriya Pilgaonkar +1064512,Lucas Dijker +129515,Petula Clark +1639610,Alicia Lobo +121038,Sara Berner +1358979,John Farnworth +1423072,Calma Segura +1188418,Brahim Khai +119468,Betty Pei Ti +1161084,Balázs Barna Hídvégi +1049548,Antonio Quercia +125701,Nicolas Vaporidis +1447889,Ryan Gibbs +939090,Baron Geisler +146097,Li Bao-Tian +1295819,Laura Premika +77149,Johnny Venocur +1119765,Nikolay Grabbe +1190217,Aleksei Smirnov +232348,Nancy Coleman +211621,Joanne Crawford +83544,Dmitriy Kharatyan +1323781,Kelle Cantwell +729890,Pavel Massalsky +203507,John Dawson +5852,Kai Michael Müller +1136891,Anne Azoulay +1718100,Adam Eget +1849535,Terry Kaye +129510,Takashi Inagaki +99566,Víctor Petit +1570329,Lloyd Scott +118600,Martin Schwab +117171,Ron Vischer +1061787,Chema Muñoz +1489947,Boxer Dheena +1390164,Natalie Perera +1685381,Gadi Cimand +1184797,Barbra Rae +50306,Lee Aaker +1202910,Hawksley Workman +1315174,Leon Gross +133074,Jack Paar +1450264,Sandy Sidhu +1647874,Abu Musab Al-Zarqawi +1242114,Maja Borg +1870831,Dato Papuashvili +1381692,Adam Ryan +1678717,Matt Reimer +96481,Ailín Salas +1196407,Henry Gleditsch +1537757,Nick Greene +1459066,Marilinda Rivera +1673240,Danny Reuland +101858,Dilip Salgaonkar +221192,Kathryn Newton +1464976,Rosemary Henderson +209200,Emily Baldoni +1142295,Inka Malovic +1323878,Tamara Duarte +95393,Benjamin Kessler +1125891,Mike Carroll +1695657,Jason Horton +1599245,George Lasha +1037299,Teairra Mari +1195192,Dutchell Smith +139450,Joy Shelton +1344357,Gregory Bright +1449819,Mayumi Shou +1204380,Armageddon +1206830,Ryan Vigilant +1550822,T.J. Alston +32890,Sébastien Huberdeau +1271647,Shravanthi Sainath +527696,Benjamin Helstad +1466042,Ana Paula Fragoso +1298392,Normand Carrière +83231,David Walton +1294273,Claude Binet +88853,Jarkko Niemi +1291803,Pavlin Kemilev +32861,Cay Helmich +1118345,Jeffrey Phillips +1892907,Mauro Firmani +118200,Gabriella Wright +1697187,Lou Sumrall +86693,Yevgeni Morgunov +583734,Giorgi Gurgulia +942808,Christie Brinkley +202032,Ralph Ineson +1608637,Romy Weltman +1077853,Anthony Michael +145683,Svetlana Metkina +103899,Joseph Simmons +1094449,Ercan Karacayli +936929,Ernest Butcher +1335467,Gilla Cremer +1043966,Gino Lavagetto +1686799,Eddie Prevot +1463931,Ekin Koç +212044,Natalie Knepp +1173805,Zhang Zi-Feng +1848656,Luisa Clasen +97820,Del Howison +78720,Chris Bell +139460,Filipp Kirkorov +996598,Djamchid Soheili +1656881,Pawittra Buranankorn +1537744,John McCarrick +1244933,Ivan Brutsche +80420,Geoffrey Streatfeild +272018,Joaquín Climent +1232539,Al Thompson +556072,Oscar H. Guerrero +51965,Kevin Sorbo +229573,Valerio Aprea +148724,Laus Høybye +183257,Johnny Gill +1240487,Kate McKinnon +5443,Vincent Lindon +1680200,Chanel Celaya +240471,Andrey Urgant +141225,Heather Marie Marsden +1690068,Brune Kalnykow +19047,Ciarán McMenamin +113931,Duane Murray +32068,Maurizio Bonuglia +205258,Harry Lloyd +1495203,Gualtiero Burzi +202621,Lasse Baunkilde +1197611,Piet Burnama +46069,Köksal Engür +53462,Ciccio Ingrassia +102060,Conchita Montes +59074,John Cater +154615,Sadie Stratton +90740,Janine Duvitski +1391737,Charlotte Wilson +1039311,Shinnosuke Abe +1142258,Benjamin Pike +932324,Robert Ormsby +7518,Austin Schwarz +1799841,Max Page +557943,Giacomo Piperno +145752,Todd Curtis +1636697,Ryszard Kluge +131604,Oliver Cywie +1005324,Doug Haley +1012240,Izabella Hegyi +1380189,Fern Collier +1353637,Karl Beattie +1429453,Sam Richardson +99210,Gabe Khouth +1631358,Chris Redd +21578,Pierre-Loup Rajot +1889555,Helen Sterling +212290,Seth Morris +1646440,Irina Kara +80242,Mark Hicks +74136,Justin Welborn +126959,Matthias Dietrich +70706,Vivian Hsu +107895,Janusz Zerbst +1169484,Jean-Louis Rolland +160340,Nancy Malone +1360308,Nadia Moussa +88791,Hans Teeuwen +566715,Ivan Volkov +928235,Taylor Kowalski +1179654,Pili Montilla +1406693,John Wirt +128072,Daniele Pace +227160,Ramon 'Bong' Revilla Jr. +1465614,MacLeod Andrews +1338472,Stéphanie Cléau +1570538,Louis Labovitch +953022,Conor McDermottroe +138375,Chris Alcaide +1102577,Carmen Leyva +83357,Raymond Thiry +563371,Thomas Jouannet +1584776,Jessica Jones +118703,Tatsuo Umemiya +1820495,Kristen Rae Myers +32077,Philippe Brizard +1272938,Garrett William Fountain +1476624,Jaime M. Callica +1449355,Merve Ates +1113135,Jo Mi-ryung +585933,François Simard +1207946,Carla Buso +142886,Ernest Shackleton +36839,Werner Peters +89209,Ivor Barnard +181339,Marcel Simoneau +1656522,Nai-Chu Ting +90461,Leni Parker +88851,Malla Malmivaara +1795834,Bodil Blain +200537,Michael Hershewe +1439244,Roberto Coronado +97459,Orlando McNary +1860892,Errol A. Eastwold +89518,Mack Sennett +12396,Átila Iório +581229,Giuseppe Oristanio +174133,Rebecca Koon +1277188,Jacob Tremblay +1480665,Helmi Sigg +111662,Liya Kebede +93741,James McCallion +1355203,Regina Wan +1024198,Kay Kyser +585404,Mukesh Rishi +1426897,Liu Hsieh-Min +1605810,Yves Bove +472547,Antonio Barroso +120435,Yūsuke Santamaria +148397,Grace Bradley +1187204,Andrée Rozenn +1340860,Ariella Reggio +95541,Jenya Dodina +2647,Robert Ellenstein +109809,Chen Kun +55064,Shiney Ahuja +1808635,Michael-Scott Druckenmiller +1405540,Alex Rose +1657935,Zora Rasmussen +1396602,Waj Ali +89142,Yuliya Mayarchuk +1280994,Jeremy Bieber +114306,Kazunori Sasaki +149684,Joe Ochman +128247,Nicola Nocella +1565060,Bryan Sloyer +1303098,Filip Radoš +1808448,Yuri Mykhaylychenko +120274,Massimo Ceccherini +114670,Lady Victoria Hervey +1049919,Deragh Campbell +1034492,Kari Sorvali +1518915,Troy Tinnirello +1256349,Jo Bo-Ah +49766,Kirsten Block +1381706,Michael Flores +1569771,Jenna Osterlund +128680,Melody Robertson +1707944,Peter Bromley +45206,Alex Cord +564897,Georgiy Teykh +1004823,Jack Mercer +160485,Eric Server +59436,Alexander Huber +1636700,Piotr Chojnowski +1459153,Edgar Roche +1741926,Tony D'Agostino +122635,Constance Smith +1398633,Matthew Dillon +1250569,Gunter Gabriel +20049,David Tennant +109561,Sherri Shepherd +1707098,Mason Knight +82287,Ted Jessup +483255,Denise Williamson +45405,Jay Duplass +1408147,Carl Li +135467,Matt Vogel +1672488,Daley Pearson +1187191,Pierre Baillot +1567662,Alina Adams +590127,Pyotr Zaychenko +1611358,Bob Corn-Revere +1136708,Dušan Bajčetić +1562105,Walles Hamonde +1140832,Luciano Foti +20674,Thomas Langmann +512079,Joséphine de la Baume +1483727,Brooke Allison +1211888,Charles Nelson Reilly +1345992,Jacqueline Boyer +77339,Reynaldo Rosales +1647143,George Ranito Jordan +8049,Roger Rose +1404650,Robin Lanning +1397762,Facundo Lombard +1404560,Susanne Schrader +1872192,Dario Salvatori +1641970,Telly Leung +1638422,Vyacheslav Melekhov +1724769,José Murillo +108538,Yang Ik-june +1361984,Carme Contreras +1095287,Madan Jain +167449,Chris Langham +1531069,Branko Djuric +90219,Luís Melo +1789823,Joris Strickx +89523,Eva Nelson +1282827,Walter Fleming +139300,Marisa Orth +151114,Robin Kurtz +47948,Konstantin Raykin +42915,Teala Dunn +550680,Buck Brannaman +91932,Cliff Fleming +1364787,Paavo Kerosuo +98807,Vera Yell +583331,Derya Ayverdi +567593,Vinnie Paul +98960,Dave Fife +1903975,Lindsay Christopher +1129157,Calvin Tran +1741335,William Campbell +229792,Lisa Dillon +1593367,Francesca Baer +1168910,Juzo Yoshida +1311150,Cheol-hyeong Im +1438847,Aron Dyer +550902,Nick Lee +484542,Ronald Remy +181975,Mark Curry +1210191,Anna Marie Cseh +1738959,Jolanta Mojsej +1708423,Frank Jones Jr. +124868,Ilmari Järvenpää +1448593,Vito Signorile +208113,Sarah Smith +236675,Doug Coombs +1089464,Marie-Therese Katt +29298,Eric McCormack +77877,Kaori Mizushima +54934,Albert Heinze +1670618,Natasha Cashman +236677,Andrew McLean +26358,George O. Petrie +37323,Karl-Josef Cramer +200505,Ann Morrison +83971,Nicolas Jouxtel +99414,Giselle Itié +1137952,Karolina Lubieńska +1630258,Tarnue Massaquoi +930678,Charles E. Evans +1848807,Natasha Rozhdestvensky +215281,Helena Gloag +1460212,Krystle McMullan +118387,Harry L. Seddon +1390016,Lynn Whitney +1366510,Fraser Aitcheson +586791,Oshiro Maeda +122727,Michael Weatherly +1014931,Freddie Fox +1613043,Samantha Marsden +564893,Yoko Nogiwa +42673,Þorsteinn Bachmann +1485594,Dean Kyrwood +76533,Rob Reinis +927754,Bidzina Gujabidze +158754,Chelsea Noble +238027,P. Bharathiraja +89387,Elarica Gallacher +1391805,Norm Compton +1655442,Jackson Beals +1842440,Lydia Kavina +556698,Ji Chun-Hua +997887,Ronda Rousey +23179,Andreas Giebel +543349,Leon Isaac Kennedy +128166,Adolph Lestina +60601,Viv Leacock +1622075,Selena Wolfe +212778,Melissa Tang +97198,Przemysław Bluszcz +980729,Claudio Martinez +43885,Pia Giancaro +1084788,Pedro Heredia +1656899,Phuttiphong Preedaned +1362313,Melanie Stone +30404,Elena Yakovleva +104879,Ramón Menéndez +1411153,Kelli Kirkland +1004790,Irina Shevchuk +932327,Gary Carlson +1266054,Evelina Turen +69523,Harald Krassnitzer +101875,Clifford Evans +100459,Sandra Margot +492081,Ryan Ochoa +146148,Sai Kumar +1133012,Nadia Hilker +1096595,Brett Baker +1317590,Hertta Leistén +1161082,Péter Balázs Kiss +1897711,Polina Soldatova +1423271,Jens Sætter-Lassen +1795084,Eliza Bateman +55205,Stephen Bishop +1523668,Nadya Poliakova +1436125,Mary Payne Moran +1766386,Yerbolat Ospankulov +1483038,Hadrian Howard +30979,Norbert Schiller +562266,Harry Knowles +1112238,Heo Jin +233590,Yoshitsugu Matsuoka +579798,Paul Alex +582923,Marvin Duerkholz +1227701,Leila Birch +1709266,Barrie Hesketh +1398069,Tony Bellissimo +1200697,Shin Date +1292258,Jack Kesy +226,Heidi Hayes +1723103,Alejandro Ciangherotti Jr. +91872,Kendo Kobayashi +1156399,Hanni Lux +1187257,Edda Díaz +1051786,Caz Lederman +587203,Lotte Flack +1312524,Leila Wong +270909,Yuriy Kuzmenkov +1201202,Rúnar Freyr Gíslason +144193,Cihan Culfa +584504,Saranya Ponvannan +1388684,Jeff Pray +1348364,Valeria Vereau +1368783,Alex Barima +230069,Arnaud Azoulay +586819,Egon Di Mateo +81040,Nattapong Arunnate +1736433,Jacob Godzak +161731,Jeff Davis +1212539,Susan Griffiths +196544,Raquel Cassidy +1636773,Todd Emmett +556732,Daniel Roesner +1378565,Sue Huff +72790,Giovanni Venosa +552184,Haruya Sakamoto +91349,Gerdy De Decker +543159,Wang Luodan +938991,Steve Barshop +1335773,Shin Cheol-jin +1010873,Massi Furlan +1443305,Peter Flyvholm +189856,Frank Sieman +146791,Clare Burt +224986,Théo Sarapo +133800,Helene Udy +1442051,Victor Zinck Jr. +1358092,David Barrera +1379272,Garry Merriott +929849,Mariya Lobachyova +1262857,Sofia Kokkali +10262,Andréa Ferréol +991865,Matt Beckham +234754,Gregg Thomsen +1066934,Keith Walton +1718665,Anthony Ramsey +1480663,Irene Semmling +118345,Jörundur Ragnarsson +1121246,Werner Graeff +1224954,Tyga +1384790,Valmike Rampersad +1327294,Andy Karl +1014982,Olga Bondareva +1569794,Victoria Bergeron +929467,Yuriy Sorokin +956987,Norma Martínez +89109,Hayley Kiyoko +1718321,Todd Parker +1519928,Victor Clifford +1274510,Alyvia Alyn Lind +238714,Robert Frank +4493,Catherine Bell +101393,Frank Dietz +70238,Chris Williams +1883499,Matt Bell +1531600,Natasha Forouzannia +30768,Graham James +85425,Ramon Novarro +1446113,Jiena Viduka +1732770,Teyfik Sen +1174012,Franca Badeschi +37822,Peter Dobson +1355266,Özcan Özdemir +684,Tom Schilling +82143,Lucinda Dryzek +550549,John MacMillan +227768,Dragan Bakema +235437,Ian Hill +1378741,Jena Skodje +95044,Valorie Hubbard +1080882,Damien Di Paola +28662,Yunjin Kim +1568435,Tigerlily Hutchinson +1517227,Yves Ory +1394423,Sean O'Donnell +1103656,Antonia Steinberg +1241385,Marcela Kloosterboer +1179230,Man Man +61892,Cathy Rankin +23668,Harry Baer +1033023,Will Bethencourt +1170844,Clara Pasieka +590146,Gil Vidal +130216,Scott McGinnis +89656,John Entwistle +589650,Sam Reid +1318683,Emily Dole +1162325,Gianna Gomez +1271010,Spider Matlock +1408166,Ann George +1110465,Enzo Marcelli +18538,Wolfgang Wahl +544978,K. Viswanath +103351,Luke Treadaway +128298,Aleksei Konsovsky +1696262,Theo Bongani Ndyalvane +979407,Musa Karagöz +59617,Juliette Gosselin +142524,Agnieszka Warchulska +76811,Xu Jinglei +55922,Didier Bezace +1875873,Giovanni Trevisanello +1426658,Jessica Lee Keller +1758885,Christian Albrizo +14068,Felice Orlandi +40193,Kathleen Maguire +659977,Pavel Volkov +5818,Antonio Casale +1097797,Staffan Ling +147643,Martina Ysker +10476,Corinne Cléry +1357168,Domenico Centamore +1220722,Thomas Anthony Jones +145693,Sigge Fürst +1291277,Rube Dalroy +1039421,Robert 'Big Buck' Maffei +237455,Sam Claflin +1707937,Joshua Jaeger +1578455,Gina Vultaggio +1424102,Lei Lung +145312,Agni Scott +11139,Michael Golden +103591,Kim Parker +103818,Raymond Laine +1520913,Pierre Lampe +1289109,Lida Salin +1674154,Bobby Scott Freeman +1677299,Aleister +1142720,Thomas Mann +132434,Bernard Hocke +1231108,Dan Ewing +126102,Jonathan Dwayne +936431,William Feng +1129935,Jenny Roussea +103525,Ismael Merlo +556727,Ulrich Cyran +1161651,Felipe Pinto +1175810,Dominic Lam Ka-Wah +1821500,Baxter Humby +1796387,Berdj Garabedian +36987,Trude Breitschopf +76415,Stephen Hogan +108087,Yutte Stensgaard +143115,Silvestre Alegrim +256947,Josita Hernán +1495087,Bobbi Strayed Lindstrom +1690581,Gemma Forbes +1272967,Nick Santoro +1630671,Kate Bowes Renna +1156244,Kristofers Konovalovs +96770,Luke Carroll +1683787,David J. Flores +1445122,Hilario Quinteros +1055178,Ray Jarris +87940,Lisa Ortiz +1367882,Guy Sloux +19636,Jean-Pierre Moulin +1031749,Emilio Mencheta +36699,Katherine Paterson +131254,Jake Bartol +1508831,Tod Randolph +563088,Anna Maria Pancani +572355,Ana Paula Zeiger +87090,Cheon Ho-jin +119991,Renato Pozzetto +1756358,Lori Graham +1302706,Raffaella Lebbroni +235566,Lory Del Santo +1862555,Andrew Horschak +138772,Tara Giordano +1797631,Marc Marron +83972,Léane Grimaud +82753,Lene Nystrøm +1566571,Ingvild Flikkerud +180728,Megan Paul +1351922,Arthur Prost +93543,Juozas Budraitis +72118,Anil Kapoor +123195,Lawrence Ah Mon +85418,Steve Holm +52837,Perry Henzell +967781,Luke Kleintank +938999,Roger Gunson +1495086,Richard Morris +77375,Jan Libíček +1158832,Chasty Ballesteros +1630268,John Scheller +63231,Niecy Nash +168540,Tyler McClendon +1115989,Bridget Garwood +97283,Sally Blane +109862,Marjorie Fielding +1363397,Jonathan Winkler +95386,Jonathan Rice +24519,Scott Valentine +1767215,Sebastian Cifuentes +990435,Roy Emerton +1868696,Melissa G. Lourie +131215,Zsolt Anger +1762433,Kerwin Robinson +1091540,Domenico Cianfriglia +1486493,Alexandra Brandl +1270459,Richard Sails +15888,Alan Stanford +18031,Ruth Gemmell +1181054,Louis Adlon +1290497,Mikhail Dagmarov +553506,Brian Stelter +1529085,Bianca Bellange +70441,Janet-Laine Green +964772,Allison Lane +132358,Louisa Horton +238695,Mikhail Zhigalov +1656884,Pawenooch Pangnakorn +1382079,Dimitris Xystras +109333,David Broughton-Davies +1154858,Frances Cooper +1286534,Michelle Cella +1148666,Bárbara de Lema +153395,Marian Collier +1750937,Jesse Klein +544667,Maxime Lefrancois +557270,Semyon Goldshtab +51138,Fritz Imhoff +112377,Rachel Emmers +1428800,Donie Ryan +1146495,Christa Berndl +128021,Al Jardine +235641,Jiří Lír +1272977,Christopher Cline +1664052,Fred Romano +1128881,Blake Freeman +1452499,Kôhei Miyauchi +1363043,Roos Wiltink +149542,Kate Rodger +39162,Steve Reeves +89511,Pekka Huotari +87266,Diana García +1656883,Phusanisa Kitikriengkrai +1593233,Levi Eshkol +1176793,Rick Metzger +150435,Manjari Phadnis +16250,Denis Moschitto +1362722,Corinne Barker +1048610,Luke Hawker +20963,Yang Jun +1153744,Gary Amos +1342849,Wong Kwong-Kuen +88154,Peter Gorissen +83596,Elahe Hiptoola +113231,Gunner Wright +1280993,Ryan Good +1325675,Mistaya Hemingway +1160010,Thierry Garrel +1445658,Jessica Angelos +1198376,Tadashi Katô +76886,Betsy Rue +5044,Fred Nurney +153032,Alastair Hunter +100901,José María Caffarel +1222342,Valerie Lilley +1016515,Michele Dalcin +1704766,Iris Dohrn +13713,Mikhail Kononov +63813,Rothaford Gray +1463025,Jessica Raita +16059,Pamelyn Ferdin +38391,Barbara Schnitzler +548764,Vera Van Dooren +1502998,Bradley Bowen +1434874,Jip van den Dool +1451306,Rafael Briceño +3900,Linus Roache +238658,Valentina Izumi +1706116,Justice Quiroz +1619021,Éva Spányik +1451543,Kofi Siriboe +929905,Kara Hayward +55875,Ashley Tesoro +1835498,Sian Milne +544626,Natalya Andreychenko +34066,Tawny Cypress +1420035,Little Unicorn +98873,Greg Brown +65642,John Light +1264586,Gert Raudsep +1471347,Romolo Guerreri +544555,Anna Polívková +85177,Creed Bratton +26287,Sue Flack +1653354,Andy Grotelueschen +43452,Oliver Nägele +1723564,Eliana Fanders +15486,Peter Kurth +1293723,Corey Livingstone +1316048,Stefan Godin +1337735,Yuliya Khlynina +1646008,Diaz Tangkilisan +311446,Olaf Nielsen +1063270,Cindy Silver +1017780,Neil Kubath +1042232,Ahn So-hee +1672077,Nikki Lipinski +82391,Richard Yearwood +1045645,Jean Andren +625707,Mariya Skvortsova +1017368,Elizabeth Marley +1848665,Hsu Chien +88677,Nikki Griffin +1848669,Gilson Martins +995153,Corey Eid +1158757,Georges Molnar +97305,Nína Dögg Filippusdóttir +1315501,Aymeline Valade +559058,Matthew Feeney +64644,François Germond +137971,Miranda Frigon +1130816,Runólfur Ingólfsson +1263259,Ian Bamberg +130842,Owen Beckman +47720,Ruth Wilson +1424222,Steve Yu +143116,Henrique Alves +1642132,Jennie Foster +1546077,Robert McRary +1231950,Katie Sheridan +1607044,Paul W. Downs +1783087,Gil Coelho +98157,Paul Logan +947599,Tony Mabesa +1527063,Christos Benetsis +1581107,Ash Lee +1071783,Ayako Kobayashi +1493394,Yuki Sakurai +142425,Cha In-pyo +1277853,Flora Fauna +99261,Anastasiya Vertinskaya +1080279,Keisuke Sonoi +25409,Elyas M’Barek +1294400,Ron Baumgartner +225653,Michel Such +1650317,Leah Love Montalvo +147922,Victoria Malektorovych +1538880,Zbigniew Suszyński +1189692,Līga Liepiņa +150918,Claude Sainval +1762397,Paavo Tuominen +88903,Satya Bhabha +1089887,Tara Jean O'Brien +1423829,Ian Brodsky +1514497,Wyndoline Landry +1274939,Miguel Silva +1457430,Tess Dumpit +1085219,Jon Achaval +1628961,Samantha Cutaran +1722984,Nick Kohn +1340685,Jadon Sand +992221,Dan Hunter +1624618,Nicholas Lemann +122461,Ramón Agirre +1197734,Kazuko Motohashi +1325981,Jon Greene +1060114,Jackie English +118976,Kim Dong-wook +1316670,Ryan Miningham +133020,Predrag 'Pređo' Vušović +1327853,J. Michael Trautmann +933579,Chris Andrew Ciulla +1264353,Fredrik Glimskär +1207881,Oaklee Pendergast +1179814,Borivoj Cermak +78147,Élodie Yung +1585218,Tyler Jon Olsen +1719903,Burton Sharp +210386,Morgan Murphy +98082,Dan Haggerty +1350210,Judith Moreland +191003,Ted Bartsch +135651,Michael B. Jordan +1323515,Kathryn Beck +111586,Richard Keene +553513,Silvana Venturelli +133810,Gina Dick +1561081,Michelle Finch +103820,Joedda McClain +82602,Nick Carter +1135262,Joanna Szczerbic +1755075,Samantha Hopkins +1580363,Waldemar Wohlin +1178196,Gitta Alpar +1023096,Luis Iglesia +1071512,Inga Birkenfeld +1779016,Federica Cifola +108299,William Hudson +231478,Kim Hae-gon +182778,Leslie Browne +33811,Remo Capitani +14555,Georg Krause +1707835,Rafael Weitzel +39771,Michael Haynes +1093466,Katrin Martin +122258,Chazz Menendez +563096,Brett Matthew Davidson +528339,Oh Gwang-rok +576270,Valeria Christodoulidou +1879671,Sean Talbott +73336,Summer Bishil +1098962,Dove Cameron +16777,Maria Järvenhelmi +1699706,Egidio Casolari +101960,Robert Long +1470808,Max Hambleton +1650159,Trevor Parham +127387,Yuri Lowenthal +975803,Hugh Trevor +59134,Núria Gago +102175,Marco Di Stefano +1442233,Terry Menefee Gau +1897706,Luka Hays +1149334,Sota Fukushi +1805295,Helen Kühn +342911,Anna Godenius +574831,Patrice Coquereau +1052117,Miodrag Radovanović +308843,Rick Dial +1083547,Horacio Marassi +1724701,Otto Fricke +142622,Pamela Springsteen +1635742,Anders Dahlberg +1371231,Mike R. Moreau +1232599,Matthew Maher +1895706,C. Frederick Secrease +480659,Magdalena Ciurzynska +118076,David Call +1272214,Tristan Barr +1878450,Falippo Valese +74329,Jeff Tweedy +935287,Christina Myhr +131618,James Dunn +151975,Christopher Russell +9376,Belinda McClory +116538,Taylor Stanley +106620,Altan Erkekli +1682233,Vincent Michael-Smith +43458,Brennan Elliott +1359124,Stefan Stern +101249,Lara Gilchrist +1282198,Jerry Sciarrio +14822,José Nieto +1223703,Jordan Black +93630,Geraldine Hall +1157672,Karl MacDonald +1569799,Colette Lemonier +1334721,Park Hye-rim +1717350,Giovanna Grigio +587415,Robert de Hoog +558290,Galina Petrova +101491,Weston Blakesley +1495850,Kurt Collins +13740,Ursula Werner +558914,Ronald Thomas +1301638,Lee Charles +1331812,Carlos Mele +1331807,Pedro Kochdilian +1764167,Yonni Rosenberg +1451705,Annie Savage +101913,Kikuko Inoue +27906,Carlyle Blackwell +1540604,Anastasia Bastien +1060629,Onata Aprile +1841537,Thomasin Thomo +1334005,Divya Jagdale +158784,Judith Jones +233401,Markus Majowski +584250,Vishnu Vishal +1846442,Oliver Gruner +232538,Akbar Khan +586673,Maxi Schafroth +1833904,Cameron Clifford +1031108,Smokey Huff +1218088,Scott Bryce +146785,Arata Furuta +123711,Gwynne Gilford +95002,Jamie Elman +103782,Bruce Powers +1263765,Justin Barrett +1388486,David Gordon +111348,Sandra Tordardottir +1377198,Harry Owens and His Royal Hawaiians +48571,Georg Rydeberg +35611,Alix de Konopka +104785,Kevin Daniels +1523008,Julius Ray Caringal +65803,Peter Flemming +1796604,Tomas Widerberg +230650,Miroslaw Meyer +1783155,Iben Østin Hjelle +1302461,Molly McQueen +1359953,Anne Lillian Mitchell +142205,Meagan Tandy +1537581,Milos Vognic +1849101,Batiste De Oliveira +1594743,Cade Sutton +1841008,Lily Heber +1172366,Charles Officer +1117923,Elena Antonova +1300728,Marina Mehlinger +1788327,Lorrie Bennett +110244,Crispian Belfrage +1193572,Nicholas Briggs +49624,Jensen Ackles +122760,Manaia Callaghan +1206875,Loren Taylor +57046,Mareike Lindenmeyer +1716676,George Polonsky +1477895,Nicky Buggs +937913,Morgan Spector +121333,Ivan Lebedeff +581147,Yuriko Hanabusa +1188239,Will Rogers +116345,Warren Buffett +112416,Jerzy Turek +1421628,Kendra Appleton +1657539,Andrea Ellsworth +584270,Jaiganesh +1521626,Peter Scheidel +86018,Manoj Joshi +1285313,Marsu Lacroix +1535049,Jean-Pierre Yerma +1184049,David Shackleton +1588821,Severina Spakovska +32827,Lou Castel +1536170,Jessica Clarke +1593951,Adam Murciano +1426660,William Loftis +1815727,Randeep Chana +1869057,Katherine Neslund +992165,Serena d'Amato +101538,Aaron Beall +1396424,Genevieve Howard +1295919,Oliver Grober +4846,Eugene Hutz +111981,Supakson Chaimongkol +1467111,Evgeniya Melnikova +1497851,Enrico Ianniello +147636,Cedric Eich +1567072,Kerry Hennessy +127588,Jonathan Kowalsky +1439204,Scott Takeda +135254,Leslie Seiler +1329901,Mark Pendergraft +1314856,Antonia Moretti +1388658,Quentin Elias +76339,Claudio Santamaria +937381,Paul Cowderoy +935074,Kerima +112944,Todd Soley +151499,Robert Carricart +934131,Chloe Rose +932888,Dionysis Papagiannopoulos +929402,Sura Sankum +1380796,Isil Yucesoy +101691,Pavel Volya +235682,Aleksandr Galibin +1015568,Tristan D. Lalla +237349,Andy Horne +1020087,Cordell Barker +1714096,Anne-Valérie Payet +1753271,Scott Tixier +16607,Alon Aboutboul +1418248,Sima Sepehri +96014,Sombatsara Teerasaroch +1246538,Deepraj Rana +932757,Nikos Fermas +60362,Jeff Johnson +94032,Barbara Lang +58613,Suzuki Matsuo +126550,Wendell Niles +7828,André Jung +9212,Jennifer Taylor +1456183,Nancy Gomez +86884,Anand Tiwari +1592858,Angelo Poulis +1047280,Živojin Pavlović +223194,Jhong Hilario +1214816,Amy Davidson +1599268,Michael Glantschnig +1377177,Bjarni Tryggvason +17475,Sabrina Ouazani +1463678,Sarah Molasky +1332912,Joanna Polley +1373137,Gabriel Bismuth-Bienaimé +1024978,Paul Salata +550302,Giovanni Floris +27208,Omero Antonutti +400340,Igor Zolotovitsky +1362526,Mara Davi +63907,Ilona Mayer +9222,Don Pedro Colley +130535,Zack Pearlman +1118279,Vasiliy Mishchenko +1135865,Kim Kwang-il +208143,Elise Gatien +85210,Jim J. Bullock +1074711,Paula Ribó +1693761,Ayo Lijadu +1949,Elvia Allman +1297776,Gina Preciado +1031249,Jeff Ward +1197457,Maude Truax +1881,Christof Wackernagel +1547897,Keith A. Wester +9110,Richard Erdman +1089020,Kazuo Miyahara +118511,Saïdou Abatcha +1015643,Brent Braunschweig +113611,Vincent Lambert +1623855,Klavdiya Korobova +1533666,Coté Soler +1549169,Mark Douglas +1276863,Seema Pahwa +1332799,Sathaar +97467,Andrew Rowe +1156406,Ann Marie Pisker +1093452,Kanji Kawahara +40971,Antoine Balpêtré +1273008,Yannick Diakité +1127378,Antonietta Fiorito +1392850,Mary Halkia +1055096,Kamil Malecki +1495202,Federico Fazioli +1449383,Tommy Organ +119366,Francesca Inaudi +1270462,Andrew Taylor +1272825,Lea Joutseno +103232,Florence Lake +1099737,Rhianna Vigrass +227123,Simone Tang +97878,Richard Lynch +1178410,Giulia Lazzarini +1622091,Gregory Black +231635,Arved Birnbaum +87882,Marthe Snorresdotter Rovik +1777437,Misaki Ishii +35877,Marguerite Cassan +940057,Gene Alsace +1518918,Alec Mansky +73949,Snuff Garrett +136976,Naomi Chance +517973,Jasen Wade +77321,David Chokachi +1304969,Jo Maxwell Muller +1672083,Cindy Zeng +1491361,Fernando Neves +1200390,Jan Dieter Schneider +1423810,Ed Renninger +51230,Michael Fox +105067,Diane Lee Hart +1562569,Gong Cheng-Qi +1281383,Meegan Warner +549331,Jamie Harding +1519259,Jaa Smith-Johnson +228156,Giuseppe Picciotto +1158851,Haruya Katô +45318,Sylvia Tedemar +1207971,Anna Adams +1798339,Terry Hayes +1661343,Kyra Dutt +1424764,Holly Wingler +590782,Türker Tekin +115926,Vera Vitali +1105682,Athipich Chutiwatkajornchai +131467,9 Million Sam +230249,Rosanne Cash +1033171,Alene D'Souza +1650325,Ellary Dahl +83983,Colleen Porch +76922,Evy Kasseth Røsten +1032529,Guido Molinaro +71584,Iain Mitchell +211937,Tiffany Espensen +1632535,Fabrice Mantegna +471358,Alessandro Corbelli +222247,Jennifer Kincer +129629,Raffaele Vannoli +165373,Michael Witney +1133684,Daniel Huttlestone +1312169,Owen Pugh +168062,Malcolm Cassell +1808632,Savvy Crawford +1800038,John Matthews +1573586,Jenny Ladner +58481,Jürgen Kittel +1845781,Eero Schroderus +86851,Vasiliy Merkurev +933547,Marckenson Charles +109662,Hideko Hara +1029090,Tomi Lepistö +44650,Toni Bertorelli +1106408,Samantha Jacober +1180450,Hitomi Katayama +13817,Michael Gerber +1749826,Michael D. Anglin +1398203,Mathieu Dumoulin +1496341,Jessica Belkin +1572533,Calogero Butta +54810,Reece Ritchie +85879,Sanjay Mishra +1651391,Jonathan Cass +56102,Peter de Jersey +1194765,Alexandra Roxo +15399,Elga Andersen +1056290,Carol Shand +1068094,Donn C. Harper +1426917,Diego Llano +1001778,Şafak Karali +239107,Amari Cheatom +1548314,Oliver Kennedy +105593,Michael Cornelison +195528,Nicholas Beveney +15191,Tonino Guerra +227461,Alice Ardell +149334,Kathleen Rose Perkins +1232484,Orlagh Cassidy +72482,Krista Kosonen +1541182,Elizabeth Gray +102864,Ginette Leclerc +1021607,Luis Posada +186900,Gary Conway +142653,Suzanne von Borsody +107885,Pawel Kleszcz +124429,Natalya Seleznyova +138748,Rokkô Toura +173150,Roma Downey +203581,Ben Caplan +1274600,Nina Hartmann +162930,Mike Damus +1272216,Rohana Hayes +73620,Ken Lyle +3162,Billy Gray +132927,Alberto Flores +127063,David Dale McCue +1482953,José René Ruiz +587464,Charline Paul +1097451,Tae-joo Na +1481137,Eisuke Nakanishi +1630310,Cody Meehan +563101,Terry Harford +1491122,Yoshizumi Ito +973135,Claire Geare +1507534,Fernando Yapur +141217,David Reale +1119001,Larisa Belogurova +563443,Chiang Cheng +1557369,Eric Eckstein +1300639,Rollo Skinner +1506426,Ángel T. Sala +1054257,Zachria Makeba +1209488,Helen Bragdon +70492,Peggy Dow +1662633,Earl Wilson +1282221,Catherine Toribio +1257126,Viktor Horinyak +1195237,Audrée Juteau +204112,Ronald France +1400939,Jacqueline Byers +1262589,Francisco Serrano +628267,Viktor Gogolev +1281758,Sugar Lyn Beard +124649,Will Reiser +1186862,Finis Barton +75597,Beppe Wolgers +1817453,Koki Wilson +1031785,Ashley Dyke +1211248,Harry Brown +1774096,Pedro Sabino +1412629,Mohamed Adamaly +1422104,Perc Teeple +1630323,Brian Finifter +1075144,Sam Hoare +1159344,Nicholas Bode +1756362,Orla Johannes +1750927,Madeline Wager +239453,Ryôei Itô +116606,Toby Regbo +92946,Tiffany Withers +117847,Asatu Bah Kenneth +236595,Rachel Quinn +1071144,Manuel Löffler +54682,Neva Patterson +100912,Javier De Campos +1650716,Arthur Couillard +1272215,Lucas Linehan +567332,Fergus Riordan +169050,Chris Kramer +1276655,Olga Fadeyeva +175891,Laurie Burton +1530411,Mieko Tsukushi +38704,Alexandra Krosney +1301970,Katarina Bistrović-Darvaš +833798,Tim Man +1720960,Eleni Lucas +1784653,Joshua Lassman +1503295,Gerald Grissette +11596,Jean d'Yd +82358,Tibor Szervét +1065168,Mon Confiado +931321,Carmen Villena +560174,Andrew Beattie +1658596,Sreekutty Ramesh +1501776,Szymon Nowak +1215636,Tony Kornheiser +1248277,Maxi Iglesias +1662168,Vibhavari Deshpande +1013000,Luis Escobar +9568,Jim Palmer +1695151,Linus Scheithauer +1129399,Michael Strelow +1144914,Tina Novelli +1223316,Jo Jung-suk +1312823,Giorgos Gavriilidis +930826,António Pedroso +65075,Andrea Zogg +1024412,Judith Novgrod +1869052,Alphonse A. Lambert Jr. +1743578,Perry Burke +1448514,Ged Murray +78302,Angela Schijf +56365,Charlie Hunnam +107517,Kinga Preis +142270,Barbara Fiorini +7158,Jens Harzer +67367,Rian Johnson +78852,Richard Long +557684,Don Duyns +138520,Otakar Brousek sr. +1202109,Hulya Tuglu +1574183,Petra Silander +1279598,Ryan Zheng Kai +225004,Joseph Malerba +11842,Tommy Duggan +957632,Joshua Drew +1471557,Sam Morgan +1442702,Frank Rubæk +78124,François Civil +1324775,Angela Jacobs +1248644,Michiel Romeyn +1898240,Khachatur Alamzian +1445528,Joey Oglesby +944416,Lise Castonguay +1073874,Go Joon-hee +1713525,Steve Rocco +111055,Milorad Mandić +1764696,Beatrice Shimshoni +15674,Hallie Kate Eisenberg +123637,Molly Blixt Egelind +1157935,Danuta Medrala +60418,Emanuel Parvu +1004789,Ekaterina Markova +1071483,Joshua Lee Ayers +1763388,Jari Hietanen +89402,Bas Rutten +241197,Giacomo Gabrielli +480658,Dominika Gwit +1539985,Terri Minton +50748,Leonardo Scavino +11785,James Canning +1510557,Mikaal Zulfikaar +143644,Karen Kondazian +131958,Athina Cenci +1605805,Seth Sobopko +1224618,Susan Duvall +162168,Eugene Robert Glazer +1367031,Délia Espinat-Dief +1178414,Lane Binkley +29142,Martin Kosleck +142407,Tatsumi Hijikata +68567,Jesper Salén +85720,Suriya +1480202,Frank Powers +1396363,Rebeca Montero +1464495,Doc Stone +109320,Ros Leeming +140423,Alessandra de Rossi +107766,Kentucker Audley +1054252,Moon Carroll +1205933,Esther Lapidus +1471678,Max Blum +55899,Rhys Wakefield +1257118,Mark Bogatyrev +1200414,Aaron Harrison +98818,Stacey Scowley +1277195,Noah Wiseman +556457,Amza Pellea +152680,Eddie Egan +1811852,Ben Pitti +77661,Erik Fones +96826,Chico Brenes +1620567,Abdel Ghani Nagdi +73130,Michael Esparza +1414437,Guillermo Morales Vitola +1220028,Ella Jones +1620695,Nikos Dallas +1520901,Ignacio Carranza +1301972,Alen Liverić +1765438,Lico Reyes +1398067,Nolan Padilla +118586,Emilio De Marchi +1668702,Andrea Forca +1465473,Rea Rangaka +30084,Anna Torv +971344,Denyce Graves +544718,Ricardo de Barreiro +78041,Kirk Cameron +29599,Rose Hobart +1398205,Mark Siller +1085553,Freddie Findlay +1290077,Emerson Fittipaldi +1496481,Sandra Lončarić +1047520,Nathan Barnatt +108826,Margaret Wang +84898,Shelley Malil +1643632,Doris Plenert +56194,Paolo Sorrentino +91548,Nayanthara +1157597,Rudy Wowor +144433,Lex Gigeroff +588388,Nini Bakke Kristiansen +1221478,Misha Crosby +127128,Nico Tortorella +177061,Andrew Sikking +1505307,Parker Contreras +1662553,George Ashiotis +232056,Dianne Curwick +1755070,Christopher Gulas +226140,Petar Strugar +1593044,Leah Urzendowski +30927,Rosanna Schiaffino +1103810,Wladyslaw Hancza +86863,Kamil Larin +1119385,Master Chhotu +1201345,Paolo Civati +1885607,Alessandro Spadorcia +1513951,Yuksel Molla +1510579,Loïc Houdré +591835,Ali Wong +1282883,Manny Ojeda +1183784,Kimiye Corwin +1231717,Marc Maron +1895450,Thamila Mezbah +572075,Kent Kimball +1295374,Claus-Peter Damitz +1722994,Caleb McDaniel +318970,Joel Beckett +137978,Mossie Smith +1438309,Myesha-Tiara +266937,Enzo Iacchetti +1630634,Til-Niklas Theinert +154440,Eric Scott Woods +1604102,Lorraine Kreuz +1355220,Thomas Rongen +31701,Patrizia Adiutori +1190346,Vladimir Balon +1352106,Hugo Hytönen +574355,Glenn Foster +1745818,Sherman Sanders +1518587,Perry Hayes +1086295,Gyula Maár +112406,Mary Moder +35879,Margo Lion +25062,Georges Claisse +73296,Ruth Marshall +1170737,Emil Skladanowsky +119589,Donald Glover +1509236,Charity Caldwell +1041465,Kento Kaku +65200,Steph Song +230491,Ceri Jackson +19300,Sammi Rotibi +1427681,Mimi Gianopulos +12998,Nellie Bellflower +1311462,Matt Barber +588881,Walter Vidarte +33051,John B. Lowe +1851880,Elli Maclure +14079,Sunil Dutt +1367121,Bryan Lugo +1187391,David Sullivan +1507140,Scot Ruggles +133512,Tetsuya Watari +228714,Ana Girardot +115780,Elizabeth Sellars +70561,Franco Agostini +1758886,Iain J. Bopp +1188753,Marilyn Fu +1763044,Reggie Brown +223852,Bing Pimentel +1184301,Sarah Braveman +30608,Ricky Mabe +48062,Frida Richard +1626325,Gabriele Gallinari +1352340,Nathan L. Henderson +1204688,Carolina Noboa +114600,Nick Lashaway +1078377,Kenan Pars +1693771,Guido Morbello +83531,Darryn Lucio +1421630,William Emmons +5649,Christoph Maria Herbst +99560,Ángel Menéndez +1210787,Zack Price +1788070,Vangelis Christodoulou +174954,Gene Mack +147472,Alan Doyle +128420,Alessandro Caroppo +222290,Michael L. Covington +132157,Ezra Miller +1278741,Riya Ray +1272477,Anne-Sophie Bozon +148008,Vivian Edwards +1370998,Zeeko Zaki +1880145,Miller Kimsey +74568,Chris Hemsworth +221633,Sébastien Lalanne +559558,Herbert Standing +1071141,Christina Loeb +1818032,Adam Knapp +78722,Woody Watson +536707,Ruy Furtado +125846,Joan Perry +559771,Matthew J. Cates +1256347,Kim Min-seok +7742,Kristoffer Joner +63768,Silje Storstein +83279,Conor Ryan +1687928,Tommy Baxendale +1109317,Nermina Lukač +55900,Luke Ford +1073782,Emilie de Preissac +1797947,Hasan Yıldız +1336030,Thomas VDB +1833802,Rajvinder Lali +1567896,Mike Mitchell +1818099,Gabrielle Casha +145705,Arnold Gray +1504921,Gunnar Smith +1053302,Joe Patridge +96841,Matthew Lewis +1678517,Veera Elo +87836,Chico Anysio +117794,Chris Morris +1718442,Tony Pallo +1048692,Amrita Acharia +568046,Gabrielle Chapin +19548,Susan Blu +1760882,Namju Go +107876,Rafal Cieszynski +1382332,Lu Han +589354,Kerstin Bäck +1787693,Vijilesh +962438,Laura Brent +582489,Santosh Juvekar +381674,Mariann Rudberg +1265480,Megan Heffernan +1511464,Anthony Rotsa +1233728,Itatí Cantoral +84904,Miles Platt +1159861,Eric Santos +1178300,Katherine Ann McGregor +1219316,Scarlett Pomers +1100725,Israel Rivera +1163118,Philomène Grandin +1180041,Mika Kirihara +141758,Gabriel Chame Buendía +936774,Edward Fleming +1097645,John Wraight +1334330,Clayton Stamper +927703,Amelia Clarkson +1212993,Arthur Mendoza +1506682,Brandon Bowens +1891506,Mark Taylor +1701863,Al Mejia +1674838,Rim'k +229273,Stefano Antonucci +1086555,DJ Kosta +1683139,Henry O'Brien +1523670,Asher Blinkoff +1502452,Yumi Mizui +165704,Brendon Boone +939589,Jarod Joseph +1711416,Cyborg Kaori +168679,Michael Harding +26681,Angela Morant +500341,Naidra Ayadi +1332939,Eric Hanson +1185619,Mariana Xavier +1078674,Park Ji-hwan +1764126,David M. Edelstien +57320,Mijail Verona +1480597,Kian Lawley +512749,Danny Flaherty +1469128,Brec Bassinger +57637,James Hetfield +1695369,Brian Michael +177214,Page Kennedy +1035543,Norberto Díaz +61521,Agata Bowman +123761,Aramis Trindade +554501,Akie Yoshizawa +212815,Laura Birn +616605,George Magrill +149438,Justin Jon Ross +1623403,Xu Feng-Nian +213256,Xuxa Meneghel +1611607,Ivan Yankovskiy +20379,Christopher Cousins +116255,Bert Wheeler +1338403,Scott Douglas +549316,Chriselle Almeida +1357411,Nicole Ferroni +1820116,Sandra Elise Williams +1872420,Giovanni Piccolo +175393,Nick Ewans +188274,Leo Lee +1265838,Peter Trenholm Smith +97444,Donald Agnelli +1065798,Christopher Gross +1664705,Alfonso Carti +7275,Patrick Chesnais +11073,Lara Harris +117135,Polly Rose McCarthy +23229,Carice van Houten +1332932,Seamus Morrison +932377,Gabriela Arancibia +1068995,Dru Viergever +1802433,Gina Haller +126440,Maria P. Petruolo +225662,Momoka Ohno +520832,Heather McDonald +1779018,Samantha Fantauzzi +89264,Spencer Williams +99569,José Antonio Calvo +1520917,Christine Leboutte +90455,Aryana Engineer +568266,Frank Habicht +63504,Randy Beard +234924,Jessie Cave +16382,Peter Woodthorpe +1085817,Kasey Marr +84466,Jessica McLeod +580225,Andrea Jeremiah +1567841,Cory McMillan +1202900,Tony Thompson +1167055,Makita Samba +1442714,Ann Hjort +1754031,Colin Kane +84444,Terry Scott +1123118,Marie Menken +1202898,Juliet Beck +627993,Nina Ter-Osipyan +43894,Hallee Hirsh +1161089,Réka Gavaldi +151229,Jonathan Schmock +7763,Ren Klyce +939726,Betty Walker +210653,Emelia Burns +1762637,Tom Getty +164380,C.S. Lee +1734254,Daniel Oser +4815,Emile Abossolo M'bo +1163123,Victor von Schirach +1387392,Shelby Fero +1254081,Tora Vasilescu +1795179,Katie Adkins +1210139,Łukasz Sikora +78890,Keith Jardine +1206829,Benjamin Weaver +135687,Boris Hybner +1704662,Jordan Eli Arellano +1070745,Chance A. Rearden +931464,Olimpia Melinte +38969,Tana Schanzara +115170,Emílio Orciollo Netto +1291102,Song Diefeng +1089516,Emily Haigh +142256,Taylor Trash +932046,Robin Greenspan +588032,Narsing Yadav +97840,Roman Gabriel +1498523,Sunita Narain +1891738,Giusy Valeri +1795831,Beatrice Morrissey +1360663,Patricia Elliott +109741,Kate Krieger +63754,Lars Brunborg +935714,Nicholas Ritz +112241,Christian Heiner Wolf +583885,Matthew Bellows +1835288,Joseph H Coxon +212069,Laila Goody +1672074,Jennifer Kline +1562097,Robert Luckay +232200,Felina Czycykowski +12747,Siegfried Lowitz +145540,Benny Ciaramello +110782,Kari Happonen +1219446,Panou +1491853,Sonni Paisley +1044197,Emilia Graves +53461,Armando Brancia +100435,Juliet Graham +544512,Valentina Telichkina +930996,Christian Baha +132843,Martina Codecasa +1090546,May Irwin +1890682,Sílvia Penna +1421393,Mitchell Hope +147296,Maria Kraakman +999924,Sorrells Pickard +1194368,Ash Lendzion +230212,Pompeyo Audivert +1582754,Gene Dann +1387597,Anita De Simone +56338,Andrew R. Jones +136348,Robin McLeavy +205659,Naoko Mori +158157,Dana Daurey +1137456,Kirk Hunter +1200638,Mame Ndoumbé Diop +94107,Kim Hee-yeon +1598775,Hailey Shand +96719,Lorna Gray +222555,Gerald Auger +1103657,Collin Brown +1168176,Garrett Jones +104378,Jim Hanks +1019917,Paolo Gozlino +81164,Danneel Ackles +176348,Fred D. Scott +102474,Paul McCloskey +21960,Israel Horovitz +1077997,Laura Caro +70424,Camilla Sparv +100412,Sara Franchetti +122148,Carroll Nye +1188992,Aaron Krebs +584306,Samal Yeslyamova +1605125,Kirsty Leigh Porter +544213,Giovanni Pallavicino +1201030,Jô Mitsumura +86555,Amrita Singh +1678284,Cameisha Cotton +1253077,Shinobu Matsumoto +119687,Simon Merrells +112329,Hayley DuMond +85071,Shaun Dooley +1506700,Gil Taylor +492791,Ali Fazal +32426,Maximilian von Pufendorf +44107,Christian Baltauss +1610448,Hewitt Bush +1878440,Simona Cera +105421,Jo Kuk +1196007,Crystal Arnette +1769120,Uri Shilo +26589,Walter Kohut +587456,Valentino Macchi +1849542,Micky Satiar +1437630,Luzer Twersky +940011,William Dexter +1142767,Pedro Vieira +1759678,Elizabeth Pollard +1394464,Connor Zegenhagen +143360,Boris Plotnikov +104336,Morgan Hart +92778,Jay Knowlton +73743,Christine Dory +563085,Michel de Warzee +4618,Steffi Kühnert +1185019,Isabel Withers +1486974,Jay Abdo +939115,Renjun Lian +1538303,Hediyeh Tehrani +232026,Sonja Henie +235492,Weronika Rosati +1685833,Ward Boult +564849,Seo Young-hwa +1452087,Mario Perez +992884,Inez Marcel +137909,Yvonne Fedderson +1539504,Erin Micklow +235980,Mikhail Politseymako +1334215,Ole Martin Aune Nilsen +1872364,Keith William Miller +121606,Robert Portal +238523,Katerina Shpitsa +117681,Stanley Price +34677,Annie Cordy +1670759,Johnny Palomarez Jr. +186698,Andrew Hill Newman +1469277,Ernest Baskett +1071131,Leon Ajikawo +86353,Maurice Jara +1053373,Igor Przegrodzki +1178304,Chelsea Rogers +1594358,Vito De Taranto +220710,Houko Kuwashima +82971,Shin Kishida +1618645,Roman Ibanez +1037341,André Lanthier +177129,Alexander Kuznetsov +45734,Christina Große +1784279,Adam Mihál +87437,Amy Paffrath +145796,Ishiah Benben +238692,Daniil Spivakovskiy +555698,Isabella Palmieri +1208146,Paulina Chapko +1898502,Jean-Baptiste Filleau +1835160,Alexander Doerksen +1088121,Lisa Friede +1089493,Aaron Keller +3627,Paz Vega +1595614,Ryan Hamilton +1665413,Vijayakumar +1704673,Jaedon Godley +1467976,Indica Shaw +43198,Georg Veitl +68751,Marla Gibbs +1722429,Tony Basil +1375499,Mojean Aria +237737,Nick Nemeth +224321,Mónica Dionne +228076,Tetsuhiro Ikeda +1048652,Lev Lyubetsky +1439317,Burnadette Murray +4195,Richard Clarke +937676,Carmen Perez +1711522,Katie Anne Mitchell +1292570,Kasem Hoxha +1449382,Jonathan Moffett +226193,Bjørn Skagestad +7706,Roxane Mesquida +85407,Victoria Chalaya +1662942,Jean-Jacques Fourgeaud +1157300,Sam Kempster +151651,Jacques Bergerac +942827,Stephanie Arellano +150780,Wendell Burton +1457240,Gana Bayarsaikhan +1226310,Leo Allen +1156336,Bora Akkaş +1293915,Laurent Lacoursière +1862905,Sam Hernandez +1619503,Rustam Shakhgireyev +1572106,Verona Blue +133755,Camillo Milli +1585779,Carolyn Carlson +1081523,Gennadiy Smirnov +135619,Sophie Berger +1278776,Rich Ting +145518,Zeki Demirkubuz +565426,Stuart Bennett +1331696,Krittayod Thimnate +40459,Warren Douglas +1117366,Adrian Turner +1516711,Hassan Tehrani +1015797,Kate Parr +1637374,Don Robert Cass +1824293,Harry Brewis +1247943,Emi Motoi +92612,Roark Critchlow +579795,Jacques Vitry +117750,Maya Ritter +65667,Sonja Martin +23943,Frédéric Diefenthal +1090689,Nicole Erb +46965,Ulrike Arnold +1535095,Dan Brown +40008,Ray McAnally +38524,Lothaire Bluteau +1834955,Fred Marshall +2643,Josephine Hutchinson +27604,Else Quecke +22652,Nina Hagen +1718099,Dallas T. Taylor +1406818,Helga Molander +1697254,Tetsuro Tsuno +518628,Riley Griffiths +933228,Bernard Malaka +1224170,Jillian Clare +1502631,Shihoko Hagino +1352654,Marie-Christine Faber +1659287,Dady Brieva +136027,Dominic Jephcott +1257305,Ana Carolina +1332975,Oscar Kennedy +79612,Michel Forget +1253602,Chloe Maxwell +1678196,Bret Morrison +227801,Bunker +151685,Dennis Cross +1219121,Jamie Denbo +168530,Claude Duhamel +1173622,Rakhi Kumari +1388670,Scott Parry +1047154,Davor Antolić +97679,Kenneth J. Warren +55183,Wilson Gonzalez Ochsenknecht +1186981,Junki Tozuka +1432758,Jared Ager-Foster +1216411,Lauren Phillips +1001785,Celal Acaralp +534894,Micheline Lanctôt +1476094,Mario Arturo Hernández +1614892,Carter Redwood +1820120,Sarah E. Chambers +1118148,Kid Capri +139456,Anastasiya Zadorozhnaya +1811260,Rob Rota +1802973,Michael Ennis +1732322,Andria Blackman +24061,Petra Hartung +1016304,Matty Blake +931991,Špela Rozin +1606270,Maurizio Gaudio +1521369,Milan Simácek +140012,Francisco Cocuzza +1837169,Kyle Bertrand +550901,Ken Fording +1729129,Gloria Vanderbilt +1327269,Tiffany Martinez +81917,Juliette Danielle +100107,Paula Trickey +1444243,Gayla Johnson +148861,Wally Albright +1274082,Ryûji Shinagawa +1432092,Brahm Taylor +1174355,Dennis Larden +1090740,Paul Harper +80040,Steve Stransman +477074,Owen Benjamin +151435,Rosa Arredondo +1717113,Hannah Westerfield +1764144,Max Beerbaum +1692086,Arnie Starkey +1758604,Supakorn Chewathaworn +63358,Angeline Ball +1164238,Stuart Allan +120713,Robert Weldon +1201987,Adrien Barazzone +1356198,Kau Chim-Man +1724694,Vanessa Ruprecht +1636689,Adam Serafin +138770,Cassidy Freeman +1622085,Kai Norris +980234,Mark Forest +1010799,Taylor Black +52007,Anna Dereszowska +1119005,Anatoliy Kuznetsov +110476,Sean O. Roberts +34831,Ermanno Casanova +1279414,Jessica Abo +1196297,Ritu Shivpuri +52315,Kristine Rose +7007,Claudia Ferri +107325,Paul Holmes +1225592,Jim Pirri +1734199,Callum Gallagher +112502,Kenny Edwards +1282627,Brox Sisters +94985,Gabriel Sunday +1262859,Maximos Mammouris +1511755,Ingrid Clay +1529762,Olivier Nembi +1546420,Fatimetou Mint Ahmeda +1138377,'Big' John McCarthy +1848647,Álvaro Mamute +1314261,Sven Lönn +197852,Mark Durbin +1886751,Bartosz Capowicz +102951,Jacqueline Cole +563260,Alina De Simone +1445756,Christine Corpuz +101859,Jyoti Joshi +1473194,Vince Lombardi +1467977,Bruce Salmon +1458840,Charlotte Driscoll +1695651,Cathy Chang +1891540,Taylor Hollenback +237181,Yutaka Mishima +1089481,Björn Geske +4392,Jean-Marie Lamour +1080008,Yasunori Irikawa +1898505,Javier Tucat Moreno +1690518,Rekha Luther +1822699,Leoni Tenius +125744,Gábor Agárdi +1757043,Kt Baldassaro +136179,Eleanore Tanin +1158068,Carrie Lazar +1110364,Rex Cherryman +133825,Gregory Dayton +113230,Peter Francis James +1389160,Todd Litzinger +1478377,Gabija Urnieziute +1120723,Rod Dana +148725,Lukas Forchhammer +1674732,Donna Marie Sludds +1776752,Sea Moi Lee +1561025,Brian Taylor +1876181,Jennifer Ann Watt +1782572,Sheri Vecchio +1206804,Karlheinz Stockhausen +39605,Reiko Sato +1679986,Zack Lee +77909,Didier Toupy +1448201,Moe Jeudy-Lamour +967617,Sinqua Walls +50948,Stephanie Beacham +1646457,Daniel Esteban +110714,Vishnu Sharma +1677386,María Cid +1677210,Lupita Mora +1402304,Deka Walmsley +70166,Steve Kalfa +1121652,Lincoln Stedman +1190287,Tom Kilgallon +1154760,Lily Laight +87370,Howard Negley +1577002,Charlotte Gabris +1436143,Guoyi Chen +1327077,Preetha Raaghav +102182,Jackie Neill +116995,Bruno Rey +1711690,Jermaine Holt +42118,Geoff MacCormack +1069732,June Gittelson +1120251,K.K. Raj +1716347,Samuel Brisson +590548,Maynard Holmes +946263,Caitlin Keats +87930,Justin Johnston +946729,Remington Franklin +1728992,Morgan Dameron +1297698,Alna Jaunzeme +193281,Mark Thomas Miller +1298377,Petra Prazak +1543867,Nicole Tubbs +136347,Jessica McNamee +1459149,Lauryn Morse +545087,Jaime Camil +289992,Edward DeRuiter +12020,Anthea Sylbert +932267,Olga Dihovichnaya +227726,Naďa Konvalinková +553069,Honami Suzuki +129876,Federico Costantini +1034491,Hannu Lauri +166594,David Newsom +200584,Makyla Smith +1630265,Lauren Shiveley +1763888,Pieter Tiddens +1378131,Lauri Lagle +1837299,Jacob Lovett +138010,Sharni Vinson +138680,Cheryl Butler +1211319,Shyamal Ghoshal +238392,Sylvie Milhaud +1327013,Zoe Graham +1085695,Katarzyna Gajdarska +1297978,Charles Elledge +1734968,Tom John Kelly +1314295,Prashant Prakash +555550,Yuri Shiratori +1204695,Kendrick Martinez +1372462,Eduardo Luis +1052661,Oksana Osipova +81308,Charles Powell +45927,Terry Klassen +105087,Jude Farese +1173752,Choe Mu-Ung +1490039,Plas Johnson +142887,Frank Worsley +27533,Cox Habbema +32887,Christopher Heyerdahl +587511,Aleksandra Blednaya +192487,Bridget Gethins +1508656,Philippe Vanasse-Paquet +106776,Sam Vincent +226112,Raw Leiba +1349725,Julie Newman +1481135,Kazuo Imai +1470298,Jean Louis Emile +1001803,Nicholas De Cegli +1193310,Cheney Chen +1196849,Sandra Bogan +1329775,Gabriel Wong Yat-San +1370983,Rachel Zeiger-Haag +1303537,Topo Leistelä +932915,Fernando Gómez-Rovira +1854344,Maurizio Gueli +1334305,Cecilia Leger +1099459,Bill Dreggors +30045,Heidi Vaughn +166452,Sandra Caldwell +1844330,Jane Borghesi +1625130,Bernard Tronczak +181041,Troy Skog +225418,Jon McLaren +1089518,Georgia Bourke +1865504,Lisa Catara +1177720,Eugène Stuber +1359153,Hrishikesh Joshi +1257818,Karen Kaia Livers +1464946,Itziar Castro +1322588,Lisa Ruth Andreozzi +1673559,Ernesto Piedra +48393,Victor Schefé +41309,Omar Metwally +1002946,Roberto Amaro +538321,Francois Giroday +158052,Conrad Bachmann +1707749,Joanne Dobbin +554513,Mariko Kouda +55349,Lorenza Sophia Zorer +1593373,Kyle Mosonyi +935531,Tom DeNucci +1390499,Christoph Malzl +228072,Toma Ikuta +84116,Earl Poitier +95367,Matt Hensarling +121541,Frederikke Thomassen +1720846,Julie-Anne Liechty +1037300,Samantha Cope +96027,Ashtin Petrella +1079949,Gabriel Cousens +5796,Ralf Wolter +980356,Jeff Hunter +1439354,Lise Stegger +1337618,Amanda George +1301977,Bernarda Oman +1891498,J. Michael Sterling +1133960,Nazmi Kırık +1467095,Anatoli Chemodurov +31300,Marty Allen +1185381,Gary Sloan +1233067,Rajeev Khandelwal +1798369,Phil Elstob +1176784,Vincent Barbour +222592,Adriano Domínguez +233303,Mark Ross Edrys +1192630,Cris Cole +1711168,JJ Batteast +43518,Lawrence Kasanoff +1176523,Viktor Koltsov +1318497,Myrtis Crinley +558447,Ivor Dean +1094120,Aidan Gouveia +46279,Boy George +143124,Maria da Luz +1071084,Mathilda Calnan +114833,James Harcourt +1573587,Roger Schueller +175203,Patrick Stevenson +83353,Michael Robert Brandon +130259,Biel Durán +1077781,Abigail Canton +1257342,Adriana Garambone +50594,Willi Rose +225246,Rosario Sparno +78216,Louise Bourgoin +107886,Szymon Kobylinski +101860,Aadarsh Balakrishna +1563609,Noel Teparii +1071196,Michael Yardley +215918,Debbie Watson +563109,Kate McDonald +1260041,Brent Morin +1398124,Jeffrey 'Machine' McCann +235233,Toshinori Omi +1499656,Karl-Heinz Dickmann +85628,Richard Pasco +1449408,Gregory Cupoli +1448104,Dennis E. Garber +1635154,Connie Lee +1334181,Juan 'Papo' Bancalari +1206020,Nikovich Sammut +1866592,Ben Trotter +142527,Jerry Colonna +1397929,Sally Caclough +91639,Gia Scala +101805,Alexander Isaiah Thomas +1531021,Michael Safran +1376313,Julian Ronnie +1351085,Jerry Holkins +1040126,Peeter Tammearu +568075,Gregory Arata +225013,Jaime Vadell +94871,Anita Hegh +1034508,Ole Dupont +92027,Kim Little +1411355,Giles King +1897698,Harry Han +54693,Emma Stone +79630,John Lydon +52270,A.J. Trauth +127722,Francesca Bellini +1037844,Laci J Mailey +1755484,Jack Heanly +114836,Olga Lindo +1432692,James P. Hayden +930457,Pilar Pilapil +1224872,Robin Mossley +1018319,Ray Spruell +1549534,Lixun Xie +146418,Bill Lumbert +10928,Philip Tonge +107882,Krzysztof Gosztyla +1052648,Leonard Waldner +1590332,Debrah Kelly +1377167,Daníel Gylfason +579796,Louis Baldy +1421876,Vasili Vanin +1891813,Giacomo Civiletti +1240288,George Stroumboulopoulos +84864,Tom Collins +1672700,Lee Long +587175,Christian Chaussex +142229,Viktor Andrienko +1507371,Susan Gray +1021830,Jim Gerald +1714644,Julie Gribble +1042213,Richard Baneham +1441401,Karen Jette Andersen +74095,Robert M. Price +1707874,Gregory Quinn +51902,Fernando Cayo +10980,Daniel Radcliffe +1029135,Pasquale Anselmo +51095,Dalia Beger +157041,Daniel Kountz +161733,Howard Dayton +1411758,Hawn Tran +227365,Pete Morgan +39350,Anémone +175771,Colin Roberts +1814102,René Sida +76069,Susan Prior +114429,Mort Marshall +610905,Robert Bockstael +1128306,Ynna Asistio +1619502,Andrei Bogdanov +1562424,Florent Peyre +1842211,Tyler Moliterno +1093951,Carmen de Mairena +1271003,Mel Keneally +8452,Andrei Tarkovsky +1368955,Johanna Genet +966902,Nikki Hahn +1508833,Stephen Strachan +1175906,David Valle González +1816955,Tara Magalski +1326712,Ruth Geller +586553,Jason Shipley +52124,Barbara Stock +574378,Amber Rose Revah +1621191,Andreia Santos +144674,Melissa Baldridge +84926,Eglantine Rembauville-Nicolle +1828513,Stephanie Roscoe +1364658,Dominique Grund +502534,Will Koberg +227233,Grant Krause +100851,Philip MacHale +571730,Mark Harris +217371,Adam Levine +1627909,Daniel Lévesque +202691,Emil Beheshti +21449,Hidde Maas +89820,April Pearson +117658,Cristi Hogas +1172459,Carson Holden +1494786,Mason Yam +3513,André Falcon +148413,Jeon Ah-min +145579,Ben Abelsma +77880,Josh Dallas +240164,Candy Wen Xue-Er +1207028,Kevin Nesgoda +136640,Beata Łuczak +86009,Sohail Khan +1220763,Brittany Underwood +109304,Yeung Ching-Ching +222372,Waltraud Bredfeldt +1301197,Josselin +94791,Jake McDorman +1364660,April Lawrence +213315,Lucas Bryant +1347011,Cong Shan +1125467,Matthias Hell +544685,Pierre Lottin +1500181,Janelle Cooper +228617,Rahul Rai +1291958,Tawanda Manyimo +1541155,Tara Lee +1372356,John Henry Faulk +24733,Derek Godfrey +25638,Mark Lester +1520863,Kim Ji-young +1371494,Andrew Downs +231488,Ryun Jang +96759,John Cairney +1709041,Joonas Suotamo +1244248,Tasneem Roc +1233325,Jeroen van Koningsbrugge +1262627,Eline Powell +40961,Amanda Barrie +1411817,Absa Diatou Toure +1012532,Pamela Gien +15109,Lisa Roberts Gillan +1507491,Aggy Kukawka +1847916,Vincent Alvarez +1089485,Jost Grix +1039600,Pepita Full James +1066620,Zuzanna Madejska +1015829,Barry Aird +1651934,Charles Centa +1122044,Рудольф Панков +85979,Tiffany Mulheron +143197,Martin Hentschel +119707,Jonathan Dubsky +1512200,Sarah Chandler +1861352,Michael Tantrum +223528,Igor Savochkin +1840900,Carlo Yu +565278,Maria Klenskaja +1776746,Peter Wee +1071197,Neza Saunders +1746960,Horace Knight +46468,Ricky Koole +97452,Daniele Gaither +1270111,Jonathan Howard +88797,Aditi Rao Hydari +553396,Kiyonobu Suzuki +1735542,Kim Dean +112475,Julie Lauren +147774,Seppo Laine +553947,Shinobu Sakagami +1532119,Renata Dumont +553488,Gus McNaughton +1313154,Jana Kihn +1199055,Janardhanan +97211,Dave Edmunds +1501740,Libby George +1362210,Curt Doussett +19116,Aure Atika +1413361,Maya Erskine +1428446,Jean-François Pronovost +53722,Joachim Lätsch +1438925,Wendy Burns +108923,Wayne Pyle +1080991,Marlene Morreis +1085694,Barry Abdullaje +980192,David P. Emrich +1161031,Xavier Mathieu +1364788,Katariina Lohiniva +1839933,Paulo César +1839930,Mayara Lepre +83814,Steve Evets +120646,Nino Frassica +1250452,Shane Zaza +31722,Murray Melvin +570282,Peng Zhang Li +142302,Erica Beer +293071,Elly Fairman +1464977,Mark Tankersley +1014932,Gabriella Wilde +1697803,César López +999346,Kylie Bunbury +63738,Brandon Beemer +568025,Marc Medina +52191,Michael Miller +1430587,Caleb Denecour +1426677,Liz Mikel +1790581,Sol de la Barreda +47126,Bum Krüger +1438635,Ann Fay +1709369,Ron Gardner +205474,Adelaide Clemens +1414724,Tamar Alkan +1895699,Toni Fox +50726,Greg Cannom +33054,Keith Gordon +83265,Marek Siudym +138095,Virginia Wood +1318211,André Valardy +1444938,Jennifer Finley +1676732,Sam Pleasant +563108,Donald Saunders +1716516,Erin Reese DeJarnette +135873,Thomas Durand +1163991,Fafy Siqueira +1707829,Porky Deichkind +1683845,Bola Olubowale +75913,Ha Jung-woo +1006775,Darin Southam +1024417,Sanford Mitchell +1356439,Michael Lui Mai-Go +1202132,Sabahat İzgü +209579,Eleanor Wyld +1561250,Lukas Ritter +962631,Damon Gibson +1088223,Ivar Wahlgren +1079143,Anna Parmas +1482520,Anastasis Tzertzemelis +1124383,Guido Broscheit +1730430,Gemma Lawrence +227255,Turid Balke +141042,Garett Stevens +550689,Hao Lei +16971,Maribel Verdú +1177120,Victoria Olloqui +1863525,John Briley +1210953,Fifi R. Lachoy +32364,Bruno Cremer +1347525,Park Seo-Joon +1149783,Susan Mansur +59696,Trieste Kelly Dunn +1002848,Frederic Franklyn +1107346,Alexander Peleg +120050,Patricia Ellis +1059942,Anusuk Jangajit +103296,Rich Tretheway +1677243,Tarina Milo +1796884,Randolph Connolly +170749,Mark Jonathan Davis +1604466,Helen Kennedy +228155,Mario Montefusco +1348164,Danny Henriquez +1154054,Corey Hawkins +1337803,Molly Hawkey +85923,David Rich +31136,Chris Brown +73926,Jördis Triebel +1853879,Mary Price +54492,James Gaylyn +85432,Maryke Hendrikse +1234188,Peta Sergeant +54499,Briana Evigan +1088656,Ryuko Mizukami +1553024,Alondra Hidalgo +843448,Thomas Fränzel +1894239,Christiane Dury +86871,Evgeniy Steblov +106159,Keiko Awaji +581684,Mike Lucock +1724700,Ursula Kwasny +1212864,Colleen O'Shaughnessey +1153742,Buddy Tyson +99272,Aleksandr Abdulov +94567,Zarina Wahab +482258,Donatas Simukauskas +968377,Fabrice Feltzinger +1303330,Nigel Allen +1738450,Jacqueline Hinton +1215388,Philip Anthony-Rodriguez +56089,Roman Krol +223068,Aleksi Rantanen +1189691,Diāna Zande +107871,Dmitri Mirgorodsky +1165642,Marijn De Valck +1878929,Majd Bitar +221034,Mats Blomgren +32359,Mario Kalli +1335339,Lee Jeong-il +1493882,Lynne Ashe +1490040,Carol Kaye +1769247,Marjorie Kochan +137543,Evald Aavik +53820,Michael C. Hall +1241977,Datari Turner +1304172,Michel Diercks +931304,Harold Manning +212934,Avan Jogia +83218,Ellen Hollman +559641,Neels Van Jaarsveld +82945,Charles Baker +1511044,David O'Neill +130741,Mateo Gómez +84292,John Oliver +1445118,Juan Cruz Polimeno +1298395,Jean Wauthier +567516,Antonio Gamero +1553819,David Beamish +948848,Jack Carlyle +185588,Frank Sinatra Jr. +1782602,Cammeron Ellis +1535061,Rachel Joseph +1368021,Evelyn Dumo +1004866,Ward de Ravet +24922,Asunción Balaguer +1167058,Arnaud Churin +30540,Billy Chapin +1043261,Dušan Janićijević +152699,James Noble +9378,Anthony Ray Parker +1174467,Bao Jianfeng +1304143,Gilberto Martin del Campo +1512173,Aidan Kahn +133327,Daniel Fathers +103458,Mike Road +113894,Mario Davignon +240954,Martin Loizillon +137035,Josef Hlinomaz +1063288,Gary Conway +1496072,Susan Waters +124264,Jessica Penttilä +559945,Anatoli Vasilyev +1476098,Mario Peguero +1133959,Meral Okay +104344,Caren L. Larkey +5211,Jeff Fischer +62644,50 Cent +956381,George Williams +146629,Mouss Diouf +1758593,Athapol Anunthavorasakul +209631,Joseph Kloska +140804,Nilofar +1707869,Adam Willson +1432981,Derek Burnell +1795548,Paul Young +1728968,Flora Miller +1623393,Tabatha Joy +116500,Hege Schøyen +1475809,Michael Meneer +96740,Marian Marsh +118490,Meredith Vieira +1497226,Miguel Ángel Valera +1651423,Ben Laumann +1104862,Jaanika Arum +1151469,Sello Sebotsane +1865850,Frances Jeater +1060565,Marina Abramović +571187,Uwe Rohbeck +583713,Bruno Marengo +1218004,Karron Graves +139358,Henry Hopper +87312,James Parks +19064,Martine Gautier +1437936,Irina Antonenko +1689329,Juani Feliz +1831283,Eva Dabrowski +97463,Nick Plantico +100893,Jonathan Pienaar +575501,Yngve Nordwall +1347294,Donald Watkins +147967,Paul Spence +1185446,Michael Ray Fox +76875,Millie Tresierra +139253,Jamiel Hasson +1200852,James Tarpey +131511,Dawn Lake +171373,Graham Sack +25908,Sarah Steele +1438585,Julie Stevens +1747686,Harry Thompson +600689,Elliott Mason +173658,Len Wein +145181,Luke Barnett +1238012,Tom Segura +1390021,Leticia Jimenez +1389550,Kasey Campbell +936402,Jenna Dover +1841512,Leslie Healey +1599251,Andy Cheung +1257028,Anna Khilkevich +557997,Maitê Proença +1310521,Pierson Fode +126441,Mariella Valentini +928938,Juliette Angelo +1096488,Boris Smolkin +1394425,C.J. Valleroy +1059564,Marly Bueno +1478686,Arunpandian +124867,Lauri Tilkanen +86087,Aashish Chaudhary +96673,Christen Mooney +36551,Daniela Sea +183926,Tara Lynne Barr +1485715,Gerald Fiedler +1299441,Hannah Landberg +527096,Johan Dehollander +1178306,Steven Durgarn +1859307,Denis Ganiò +1080542,Jenna Coleman +96510,Vadim Ledogorov +129745,Sergio Di Pinto +1650389,Matylda Krajewska +1452743,Deseree Rose +1486582,Hubert Burton +233761,Petra Kleinert +85240,Gracy Singh +1694303,Gastón Filgueira +1547695,Jon Luttrell +1031151,Vic Savage +1479335,Ketil Høegh +586764,Michael Archer +1278724,Elena Kampouris +145026,Marta Lubos +1498685,Akron Watson +1436158,Jaihui Yan +78034,Anniese Taylor Dendy +186586,Matilde Palou +1029106,Juhani Heikkinen +1215111,Hazel Ann Mendoza +1426355,Claire Tran +1724563,Rosalyn R. Ross +125632,Antti Luusuaniemi +226022,Jean-Baptiste Shelmerdine +72769,Gianni Di Gregorio +10581,Rich Sommer +1001782,Kubilay Tunçer +568339,Vitaliy Khaev +1347284,Lauren Gros +1210669,William Courtenay +142888,J. Stenhouse +74018,Tina Kellegher +221116,India Eisley +81775,Peter Gimbel +226183,Ilse Kramm +1585712,Diego Méndez +37841,Laly Soldevila +1337742,Rostislav Gulbis +930214,Rachel Hendrix +1758907,Franco Bulaon +1842592,Renee Vandale +58579,Rita Davies +1656877,Chanunpong Peungrargdee +1711364,Nicola Moscona +1131961,Kô Takasugi +1878829,Jimmy Pethrus +1050031,Caley Chase +20023,Youssef Chahine +144288,Maiara Walsh +1738906,Michael Judd +1622944,Zhu Rui-Xiang +583333,Liv Lisa Fries +1879916,Angela Favella +1408951,Tobias Ofenbauer +103192,Valerie Marron +1531925,Danielle Walters +36342,Herbert Weißbach +955809,Fred 'Snowflake' Toones +1021416,JM de Guzman +47166,Alfred Böhm +1494790,Joey Hartstone +1898241,Milja Šupljeglav +1071704,Tracey Sweet +994523,Emma Baron +544118,Laurent Nicolas +568015,Soxy Topacio +1888571,Emrah Elçiboga +1452465,Patrick Norbert +1563269,Megan Brautigam +1401548,Rebecca O'Mara +40639,Cosima Shaw +1522063,Alex Fondja +1266862,Mahat M. Ali +211412,Rupert Degas +1190275,Eloise Barnes +1377068,Stacy Melich +1289189,Oleg Mokshantsev +1055265,Michael Weitz +147042,Thomas Ngijol +100743,Nader Boussandel +52762,Pavel Lychnikoff +1096495,Juan J. Dominguez +240725,Blake Michael +531772,Lee Asquith-Coe +1200526,Nicolas Lévesque +1593407,Karin Boesler +1658353,Gary Zahakos +1050234,George Leech +1097176,Bill Nash +112285,Lawrence Turner +1283817,Armand 'Curly' Wright +87265,Tenoch Huerta +1570243,Andrea Verdun +1002945,Chiara Moretti +1420582,Unal Dorronsoro +579539,Camille Guérini +1717264,Ashley Valenzuela +1676190,James Spinelli +236327,Ken Hudson Campbell +1239066,Jennifer Harman +1495343,Cole Burden +232213,Jane Baker +114344,Fernand Rauzéna +5287,Terence Blanchard +43873,Pamela Collins +1589716,Kirsty McHugh +1188325,Amy De Bhrún +125946,Yoneko Matsukane +190908,Vincent Walsh +20980,Victoria Pratt +149349,Rolando Ravello +1184955,Ian Meadows +1380698,Irem Candar +89891,Charles Robert Jenkins +557887,Michael Joiner +1495096,Denise McSweeny +95273,Keith Hetherington +144077,Brad Hawkins +98578,Nels Van Patten +1848660,Paula Frascari +9125,Susan Penhaligon +60397,Jeryl Prescott +1312450,Melanie Zanetti +1559187,Eoin McAndrew +117397,Leon Thau +1494506,Breanne Hill +181758,Frankie Ray +124128,Sawa Suzuki +1834956,John Rhodes +10256,David Bennent +120265,James Brown +105704,Melinda Culea +191747,Tom Hodgkins +56612,Roy Conli +585781,Markus Taylor +1090533,Chi Minh Ho +1172560,Isabelle Alexis +1353642,Martin Obuga +1345544,Arianna Nastro +1141760,Chris Allen +4529,Sylvie Testud +81350,Toshiaki Karasawa +93345,Ryan Cutrona +1074618,Shane Steyn +111072,Milutin Butković +1883905,Riquel Gilliard +559682,Bernd Moss +1807055,Serena Kashmir +86668,Nina Ruslanova +1323224,Karyn von Ostholt-Haas +56441,Sheila Tousey +1192367,Andris Bulis +1173457,Wellington Grosvenor +1112451,John Chilleri +58114,Ali Hillis +1467898,Gertie Honeck +1039678,David Midthunder +1728991,Jim McGrath +1550426,Todd Charmont +7829,Uwe Rohde +1774115,Tim Moffett +1028802,Xevat Gectan +1129678,David Luther +1197512,Lucille Sharp +1161588,John Brodsky +1187060,Jasmine Burke +1378866,Jessica Sipos +1529490,Barnabás Réti +142629,Rannvijay Singh +1074512,Ashley Gerasimovich +1205901,Gustavo I. Ortiz +1205579,Glenn Miller +1179328,Emilio Vacca +221978,Iwan Rheon +55886,Stefan Sauk +148065,Syd Chaplin +1387080,Dean Kirkright +1097817,Chris Haley +41757,Aki Aleong +1521078,Sean Charmatz +963911,Nicolás Saavedra +1173408,Wyn Jones +1327446,Karen Stephen +200673,Kristen Gutoskie +1296075,Sunwoo Sun +629439,Johnny Walker +63857,Michael Cram +1464669,Queta Carrasco +132181,Asia Luna Mohmand +1109163,Richard Terry +898554,Lynne Compton +106383,Nikki Brooks +1098643,Emir Farshad Pebrahimi +1646448,Jadyn Malone +573780,Karin Swanström +928930,Caleb Reynolds +117813,Dave Alvin +1167484,Jenny Tschernichin-Larsson +68816,Adèle Haenel +972671,William Levy +1517251,Adam Hagenbuch +1226434,Mark Heenehan +224028,Choi-ning Lee +579296,Lee Rufford +1175822,Marie-Armelle Deguy +1071147,Mathias Kahler +1228907,Josh Quong Tart +1849107,Yaya Bathly +86841,Sergei Martinson +1077703,Donald Spoto +1719899,Manuella Mora +86840,Oleg Anofriev +1793174,Aris Costner +88471,Josefia Forlì +1454299,Justin Lebrun +1237422,Daryl Shuttleworth +135441,Mark Andrada +928474,Sergey Legostaev +1041987,Shruti Tewari +113935,Harvey Jason +79106,Alethea McGrath +133931,Lotte Verbeek +1796420,Scott Cook +99208,Johannah Newmarch +1443323,Maj Lervad Grasten +150940,Jukka Virtanen +119443,Chiang Nan +1325961,Suki Waterhouse +18626,Andy Warhol +1382183,Michela Carattini +1507530,Rubén Márquez +115676,Melanie Yeats +49672,Oszkár Nyári +1706338,Kulsoom Aftab Ahmed +971388,Nick Bateman +68916,Unshō Ishizuka +1477360,Edith Thallaug +1841508,Francesco Danza +1012260,Anna Fechter +1440495,Xu Huang-Li +1692667,Tina Fortenberry +32875,Michel Corriveau +1378246,Lori Harris +1407846,Abraham Fraser +13582,Tom S. Parker +1062459,Bridget Bourke +1614968,Joseph Ruffalo +1584231,Lauren Kisilevsky +1393382,David Werntz +20688,Barry M. Berg +108794,Michael Fessier +59441,David Bridie +70313,Alain Marcoen +1332501,Kent Burton +1254865,Jessika Borsiczky +962164,Jason Knox-Johnston +1401815,Marvin Hall +1553248,Gilbert Johnson +8814,Frank E. Woods +954881,Volker Schauz +7364,Sandra León Becker +1544,Bram Stoker +11374,Marc Dabe +1800144,Denise McCormick +31340,Jaime Prades +5908,Derek Rogers +14448,Robert M. Haas +1529528,Christine McMurrich +115754,Les Clark +43108,Will Johnstone +15490,Paul Laverty +20325,Shiro Sato +57557,Christian Volckman +1744048,Paul F. Barron +1547004,Susann Billberg-Rydholm +17632,Olivier Le Vacon +1581127,Noémie Le Tilly +1384701,Georges Wakhévitch +781686,Kjetil Bjerkestrand +1402105,Cinzia Zanetti +1701153,Jamie Rama +58289,Michael Tavera +1711584,Edith Poussou +5673,Marco Trentini +112834,Alan B. Bursteen +1113960,Daren Dochterman +23831,Darion Hing +103040,Daniel Keyes +19973,Wendy Wanderman +1206429,Jason Richard Miller +996401,Shawn Carroll +1414546,Bob Dohrmann +72700,Debra Frank +959072,Rene Haynes +33194,Robin Gurland +1400088,Daniel Pinder +43162,Caroline McManus +28741,Michael Rymer +1272667,Michael B. Gordon +43901,Shawn Williamson +1567952,Michael Altman +70334,Lo Wei +71309,Caroline Thivel +1391710,Klaus Kastberg +1432466,Joseph Garrison +14616,Danny Krausz +1744045,Stan Cockerell +1359576,Sally Yeadon +42100,Signe Leick Jensen +1320911,Linda Grimes +8525,Martin Laing +556841,Albert Ash +63120,William Boyd +1441277,R.D. 'Luther' Fairbairn +1318982,Paul Sanchez +1803765,Steve Homa +74405,Eva Norén +978127,Andy Koyama +48070,Stephen Semel +70206,Peter Grunwald +1183885,Kurt Oldman +1385883,Anthony Caron-Delion +6866,Todd Arnow +62738,Charles Belden +71646,Karl Vash +586781,Eurythmics +1744412,Mary C. Snyder +1411521,Craig Heath +1311133,Frank L. Fleming +1410335,John Kreidman +19480,Norman Katkov +62555,Steve Feke +1045466,Enes Zlatar +1590608,Elise Voitey +1397738,Adrienne Hamalian-Mangine +1748848,Michael Budge +1332292,Sarah Broshar +67462,Fred Ponzlov +1205756,Patrick Gilmore +1407235,Beth Dewey +961452,Odette Gadoury +7307,Joseph Hurley +1564160,Colin J. Campbell +1317305,Trefor Proud +43105,Andy Carroll +13982,Fred F. Finklehoffe +206549,Scott Reynolds +75799,Martin Hitchcock +204272,Jason Wells +1805189,Jennifer Kagel +59330,Ron Nyswaner +1433619,Uwe Kuipers +1035176,Sara Kay +57691,Tamra Davis +62724,Marco Rubeo +1367667,Perry Robertson +552320,Erling Thurmann-Andersen +8867,Marvin March +1352962,Tammy S. Lee +24802,Henry Wills +11646,Irvin Shapiro +1363010,Edward Poor Montgomery +1767782,Louis Elman +1469629,Romo Gorrara +63896,Eric Assous +1525893,Rebecca Cole +51701,Tom Finan +67914,Ira Shuman +11997,Robert Swink +1427500,James Collins +1646230,Harry Lu +11713,W. Steven Graham +21653,Agnès Falque +115057,Gerald Gibbs +223829,Cheuk-Hon Szeto +93258,Michael Lantieri +8681,Joseph A. Porro +1557611,Michael Farrow +1213543,Joe Napolitano +61049,Gerd Koechlin +1524768,Frankie Ritacco +39821,Yukie Kito +1640414,Lars Höglund +1115991,David Fuller +18503,Harald G. Petersson +1544429,Cyril Dupont +133117,Keiji Nakazawa +130754,Robert Crichton +1624029,Mónica Marulanda +55321,Patricia Mock +56269,Patty Wooton +2487,Bruce Davey +1289958,Dimitris Bogiantzis +1276602,Kellie Roy +1566438,Bahman Ardalan +1397725,Lisa K. Sessions +17846,In-Ah Lee +13301,Quincy Jones +1380639,Michael Burnett +60085,Dick Pope +2921,William Hurlbut +1118849,Francis Jourdain +1117322,Ray Zimmerman +1566838,Terry Whiteside +66156,Hiroshi Kashiwabara +37282,Robert Cousins +78160,Luca Guadagnino +45144,Tim Pannen +1352979,Adam Milo Smalley +1396414,Allen Hurd +1585489,Art Smith +1537387,Stanislav Petrek +1351,William Kong +109455,Austen Jewell +1551188,Anne Wermelinger +225231,Marilyn Levy +5181,John Michael Hayes +1464406,Michele Mazzano +20682,Armand Amar +5127,Ralph Schwingel +1459842,Patricia Edwards +37951,Antonia Nava +8862,László Kovács +106588,Mindret Lord +1377242,Christopher Terrill +936194,Christina Smith +330921,Nathaniel Curtis +1389073,John Stirratt +1433005,Hasso von Hugo +1399994,Jean-Pierre Lelong +991466,Patrick Sobelman +570124,Graham Daniel +1557585,Aysha Madina +1377127,Karen Spangenberg +1457694,Germicka Barclay +59779,David Peers +1564777,Petr Stuchlík +10188,Jack Maxsted +1672385,Jeanne Stack +65782,Eberhard Kayser +105418,Charles Heung +1314457,Robert A. Pandini +1607806,Burton Rencher +110499,Taiyo Matsumoto +1710247,Mike Dobie +944682,Gusmano Cesaretti +53850,Barry Stone +57673,Kevin Reher +1323090,Edouard F. Henriques +1013293,Tracy Layne +1476614,Ana Amigo +7067,Haskell Wexler +556859,David Hempstead +1451228,Hans Bacher +12061,Roger S.H. Schulman +40940,Gerald Thomas +26192,Alwin H. Kuchler +42274,Nick Hurran +1403192,Laurel Klick +1463765,Bryce Shields +82219,Luis Valdez +1462682,Seth Hippen +113225,Alan Poul +1398111,Hicham Regragui +1407196,Patricia Sprott +72585,Peter Brant +100883,Carolyn Lefcourt +1385933,Paul Vasquez +1436481,Melanie Bergeron +28898,Michael Radford +32351,Nathan Schroeder +1938,Henry Mancini +962464,Cabot McMullen +1362139,Andrzej Markowski +1744053,Carmen Cuebello +1399979,Anthony Pettine +1405374,Francesca Birri +1739556,Christian Bertrand +1588262,Nick Alexander +1550057,Bradley S. Creasser +5712,Laura Perlman +128763,Chris Ridenhour +1817646,Jennifer Levy +141570,Suttirat Anne Larlarb +1403412,Dan Cornwall +167243,Stephen Neigher +1552165,Lisette Thomas +1368861,Brian Shell +91878,Terry Burke +13002,Allan Knee +20229,Andy Malcolm +1586978,Michele Rappaport +1635274,Sébastien Lagniez +38227,Frank Partos +1638073,Dorothea Long +1433138,Dirk Eichler +95135,Robert Boris +69393,John Patrick +103344,Harold Young +15877,Brian Ackland-Snow +1748025,Ricou Browning Jr. +1546840,Zoran Veselic +55486,Hengameh Panahi +1188797,Michael Wolfson +1532735,Marie Larkin +1565159,Roy Prendergast +6980,Émile Gaudreault +1094388,Jesse Voccia +1418265,Erica Wells +1765817,Wes Burian +50240,Robert C. Jessup +65276,José Padilla +4140,Mark Isham +1428834,Mato +71174,Tsai Ming-liang +648,Philip Kaufman +12684,Eric Heumann +17848,Franz Lustig +1899,Denise Di Novi +11106,Lisa Tomczeszyn +14197,Clay Boss +1421657,Laurie Sparham +1568650,Mike Carrillo +112007,James Leicester +932743,Manuel Tamayo y Baus +1602863,Diane Pepper +1442566,Chuck Gaspar +35012,Michael O'Connor +65116,Larry Schapiro +996903,Aubrey Baring +1324003,Vincent Callaghan +59442,Peter Barton +1665789,Charles Richardson +1725888,Louis Piché +43607,Corey Mandell +57522,Robb White +1435656,J.A. Byerly +7145,Michael Lehmann +5716,Michael Berg +107630,William Phillips +1546841,Don Steinberg +91789,Sidney Salkow +229181,Eric Pomerance +64849,Todd McFarlane +181945,Jim Allen +13584,Kent Beyda +21035,Doug Davison +1836132,Hilary du Pré +29715,David Swift +1042875,Joseph B. Vasquez +1462671,Vincent Palermo +14010,William Steinkamp +68124,Nick Thiel +1582970,Charles Tasto +1493864,Jay Pelissier +54846,James Hawkinson +29217,Tony Gardner +379,Donald Harris +14588,Becky Johnston +1545997,Bayard Carey +1487326,Rowland Barber +60678,William Joyce +1507551,Augie Lohman +96427,Paul Vogel +10819,Kirk M. Petruccelli +1398176,Alix Hester +37301,Frank Walsh +25213,Kirsten Everberg +8415,Nigel Gostelow +8501,Nunnally Johnson +946610,Jefferson Richard +55161,Michael Keusch +58987,Mike Jefferies +1580993,Jean-Marie Maillols +1586289,Robert Martien +14039,Cynthia Kay Charette +1399973,Helena Packer +1529483,Martha Acker +14349,David F. Klassen +1441042,Cliff Gould +112608,Steve C. Aaron +135034,Barbara McKissack +1720842,Curt Frisk +1467298,Enrico Campana +1723530,Valeria Pivato +9440,Christopher Moriana +96041,Robert Strauss +88164,Luigi Cozzi +16435,Julio Médem +1361164,Millard K. Wilson +960248,Craig Northey +12292,Ruby R. Levitt +25058,Stuart Levy +116394,Michael Stewart +1332641,Annette Keet +1027033,Tony Smyles +1701152,James Goodman +10705,Bruce Feirstein +64047,Richard Holmes +33513,Clive Donner +1557596,William S. Lake +69286,Stefano Paradiso +103586,Simon Shore +113664,Josh Klausner +1866801,Dave Askey +554127,Gim Seng Hiu +83857,Alex Turner +58037,Ben Ramsey +1767034,Bill Knoll +1330634,Alexandre Lochakoff +1088876,Charles Gorman +25860,Rodney Charters +1619094,Sandy O'Neill +52856,Hunter Richards +239812,Chankit Chamnivikaipong +66082,Stephen J. Friedman +1532469,Paul Marquardt +1376801,Robert Ireland +1447941,Nichole Pleau +1864801,John B. Anderson +5680,Gianni Di Venanzo +1185443,Flora Rheta Schreiber +1123035,Irene Walzer +1326403,Keith Cooper +1625930,Zoe Abbott +1416974,Ásta Hafthórsdóttir +6911,John Godey +1786666,Louisa Bonnie +1378224,Barbara Mesney +25014,Abra Edelman +5957,Gene Serdena +1483233,David Weitzberg +1477241,Curtis Polk +1300341,Mamta Trivedi +11758,Ira Belgrade +1498603,Brian McEntee +21866,Chas. Butcher +1738125,John Stewart +1746079,Marla Tate +1251,Remi Adefarasin +982722,Nicole Cummins +114647,Bradley Allenstein +1465596,Vivien Mepham +1375843,Harris Thorpe +1492934,Suzie Sax +102561,Jorge Furtado +40766,Jörg Widmer +2553,Jonathan T. Taplin +2325,Monika Mikkelsen +1677184,Enrique Bello +1446986,Susan Schuler-Page +20412,Michael Anderson +29281,Ad Schaumer +1573064,Mark Brooke +25729,Nancy Bishop +18969,Doris Dörrie +74628,Gillian Slovo +1707112,Roger Jacobs +8461,Vyacheslav Ovchinnikov +1891685,Ellen Verbeek +23348,Joële Van Effenterre +35585,José Giovanni +39752,Malcolm Lockyer +20010,Pierre Spengler +19499,Kevin Munroe +1432606,Dusan Strugar +1619101,Derick Pritchard +1540645,Michelle Adams +33227,William Stevens +14139,Anthony B. Richmond +1532969,Boyd Oxlade +1624607,David Gaines +1276270,Giorgos Fragos +1433954,Martin Glover +577751,Douglas J. Cuomo +53229,Alexis Vonarb +92116,William B. O'Boyle +31969,Lionel Banks +1410316,Terry Wilson +1016839,Cédomir Kolar +4509,Casey Robinson +1004922,Drew Daywalt +1112037,Mikhail Bulgakov +223803,Beirne Lay Jr. +1458883,Dugg Kirkpatrick +71852,Paul Sabella +1798047,Grahame Peters +9869,Ken Adam +1055275,Axel Möbius +54963,Lars Ginzel +1544908,Steven Visscher +1568290,Barnabás Princz +109191,Hiroyuki Imaishi +13788,Thomas Burke +1726439,Paul Hazard +154499,Kimberley Kates +31519,Jeff Skoll +57049,Brian Oliver +1640415,Lars Palmqvist +62053,David Foster +589102,Paul de Munnik +61929,Francis Delia +69343,Ralph Burns +1115664,Sandra Hermida +101899,Walter Grauman +958273,Dianne Dreyer +9176,Simon Bosanquet +1496857,Pat Barto +55228,Earl Sampson +1392669,Fiona Scott +10569,Karen Rosenfelt +52161,Randall Poster +14392,Kathryn Bigelow +3358,Lyle R. Wheeler +19156,Kathy Driscoll +29229,Douglas Rae +39979,Karen Jaroneski +1452934,Rich Zim +1558255,Jennifer L. Ware +18638,L.B. Abbott +1206410,Lucas Salton +1535320,S. Karin Epstein +1574643,Chamberlain Fong +1335165,Sebastian Leutner +1293613,Sanggyeong Jo +1650190,Charlie Watson +75304,Leilani Hannah +11578,Paul Falkenberg +235255,Forrest Carter +69506,Jeff Cutter +53387,Heywood Gould +30165,Mark Sandrich +120312,Niven Busch +10602,Milton Krasner +1427584,Rick Grayson +11574,Christen Jul +12920,David S. Ward +1337679,Alina Apostu +134762,Max Apple +59249,Christine Roum +29287,Timothy Bond +1600549,Johnny F.M. Connell +1319628,Emma Zee +1565957,Francis De Gueltz +131443,Gus Meins +13615,Harry Elfont +1252429,Kim Arnott +1536029,Dominick Certo +19367,Mike Fromentin +1517399,Shea E. Butler +1193685,Dale Falconer +1447298,Darlie Brewster +130657,Yasuhiko Furusato +1522048,Heather S. Jenkins +148786,Jeanie Macpherson +1346864,Walter Martino +198148,Bruce Leddy +57727,Robert Clouse +56520,Greg Taylor +1465627,Adrian Lee +1122560,Mickey Giacomazzi +946451,Steve Tomlin +23298,Henri Morelle +57195,Rob Schrab +48311,Kees Van Oostrum +1709861,Joyce Rogers +1631835,Tony Garber +87257,Cary Fukunaga +29800,Dorothy Jeakins +1776008,Tom Caulfield +1342623,Tal Wallace +10949,Michael Uslan +1321694,Kerry Thompson +1661542,Jerome Borenstein +23965,Anne Spielberg +1127653,Scott Millaney +60148,Barry Wernick +1334497,Catherine Haugh +1624421,Norman Smith +1891,Stephen Mirrione +1403550,Steve Newman +1593017,Sergei Uralov +47275,Lajos Koltai +6029,Nadine Muse +1404235,Michael Singer +1354912,Luciana Vedovelli +2070,Chris Gill +499,Cari Finken +37284,Richie Dehne +6867,Chris Briggs +1408661,Bert Hallberg +7475,Ceán Chaffin +98014,Elizabeth Meehan +3633,Lawrence Weingarten +1604352,Robert Dawson +113854,Onni Vosdoganes +1052131,Ed Fitzgerald +1425850,Irina Melnikova +1338831,Evelyn Dutton +44847,David Anspaugh +75617,Jason Rodriguez +67056,Bob Hathcock +50722,Roland Rosenkranz +1448066,Matt Palmer +30034,Gilles Fortier +1415880,Patricia Larouzière +1858348,Talmage Watson +587969,Thomas Johnston +33367,Clifford Vaughan +970107,Yoel Herzberg +69599,"Frank Capra, Jr." +1015889,Hamza Ali +944544,Marc Fusco +5467,Leigh Harline +1098471,Valérie Schermann +1087759,Kenjirô Ohmori +1341791,Rawn Hutchinson +1436963,James Lebrecht +1213763,Doris Grau +949,Louis DiGiaimo +6779,Stirling Silliphant +29211,Jay Vinitsky +3862,Björn Isfält +22116,Jasmine Kosovic +983161,Christopher Dedrick +1886658,Graham Bartram +1551967,Reiner Brüggen +1525892,Deborah Jarvis +1418091,John Downes +30926,Geoffrey Drake +1455613,Brett Paton +1404749,Brad Reinke +8573,Thomas J. Wright +1203688,Paul Heard +1733727,Olivier Fortin +1713987,Neil Robertson +1808567,Vicki Graef +120607,Geoff Stier +1404212,Karen Baker Landers +1023088,Margarita Alexandre +85120,Lee Gren +1458328,Helen Jordan +1520931,Jacky Dufour +1586637,Cristian Tarnovetchi +92467,Syd Dutton +373,Doug Jackson +5388,Myron I. Kerstein +8509,Gwen Wakeling +14494,Valles +957292,David Schlesinger +1672760,Jerry Ariganello +74973,David Brownlow +1425395,Jason Ruder +119182,Carla Vicenzino +69986,Robert Halmi Jr. +103496,Ernest Miller +1392090,Remo Balcells +21074,Desmond Lowden +1478858,Kim Bromley +1395352,Craig Sost +1534084,Frank Didio +8938,Hazel Pethig +1341776,Tony Bonaventura +1609507,Maria Karpowicz +1303223,Kate Bunch +1550191,Michael Caracciolo +56790,Jennifer Ogden +1039595,John Bisson +1597204,Michael P. Cook +1713400,Natalie Franscioni-Karp +16572,Kay Cole +1550054,Fiona Jackson +12962,Jon Turteltaub +1415629,Bruce Jurgens +983446,Rosa Palomo +967755,Zoe Keating +47293,Terry Stacey +1840699,Michael Burak +1409235,Steven Swanson +103688,Bradbury Foote +1566256,Jim Zemansky +1841285,Steve Brennan +1614967,Steven Fargnoli +1483229,Matthias Menz +966797,Collette Sunderman +1369442,Vic Jones +40796,David Appleby +136475,Andy Howard +7088,Sam Simon +67463,Terry Chase Chenowith +1394974,John Clothier +1221,Dianne Crittenden +23852,Jeremy Saacks +937231,Bennett Schneir +13087,Mark Walker +58190,Thomas M. Hammel +1792645,Rudy Zuckerman +1730426,Katie Ross +1655226,Robert Rooks +68317,Lyse Lafontaine +1727321,Erik Bakker +1552545,Neil Gahm +1326884,Carrie Evans +1790463,Mark Miyake +1404836,Janet Cormack +1536509,Susan Ellis +144847,Didier Hoarau +229385,Peter Snell +1139425,David Ossman +60578,Zach Schiff-Abrams +44634,William Tyrer +75918,Hong Won-chan +1419799,Reza Moosavi +9342,Shauna Wolifson +1481831,Thomas Casterline +4034,Penny Rose +1392244,Chad Algarin +1367580,John Haase +1615576,Yong Zhong +6924,Dan Moore +7628,Grant Curtis +24680,Gerry Humphreys +575076,Bart Lipton +67467,David Rogers +2768,Stewart Stern +1870770,John J. Bradley +1574661,Marie-Pierre Tétreault +18356,Stephen Herek +1453483,Sean Burns +73173,Andreas Meyer +102417,Anne Kimmel +1433743,Vicki Hiatt +8884,James L. Berkey +1467550,Jacqueline Jacobson Scarfo +1447297,Adam Beck +70805,Jean Giono +1098,Mark Helfrich +97714,Henning Schellerup +40320,Gilles Aird +1334,Feng Li +122964,Henry Ephron +54251,Tom Pollock +97048,J. Roy Hunt +5785,Suzanne Baron +1504366,Tom Delmar +1724863,Mark Aldahl +82813,David Molina +114641,Bill Kerby +1315700,Donald Mowat +1586881,Claudia Bonfe +1321274,Grenville Horner +1329419,Aileen Alvarez-Diana +1391117,Bob Bremner +1318478,Stephen Noble +73772,Barry Levine +90037,James Lapine +44690,Lyman Dayton +1532409,Patrick Mullins +1309482,Mark 'Crash' McCreery +95331,John Dark +1733248,Patrick Coffey +1526464,Shutchai Tym Buacharern +1597196,Yuko Takeshita +3277,Andy Aaron +16212,Ray Baum +79252,Elaine O'Donnell +1454650,Darren Burgess +1162322,Frank R. Adams +1780230,James Bright +1568524,George Courtney Ward +154078,Josh Goldstein +121896,Marc W. Havener +45186,Paul Hahn +1342608,Esther Kling +1713401,Carol C. Hayden +1334514,Dan Munteanu +172733,Mark Solomon +1573601,Miguel Sánchez +193127,Eartha Robinson +1452643,Roxane Griffin +82485,Richard Temtchine +53228,Aton Soumache +1830642,Antonio Gómez +89745,Jean Yarbrough +85561,Michael Goguen +1567318,Robert J. Petrie +1550890,William Frederick Peters +1468036,Heather Harris +1160652,Padraig O’Neill +34369,Virginia Van Upp +11241,Anders Billing +1548599,Daniel Chilla +1409245,Mike Chiado +6491,John Bloom +1399631,Paul Hackner +1476550,Robert Howland +1585900,Claude Fortin +142617,Aleksei Popogrebsky +100762,John P. Fulton +21737,Marc Rothemund +16753,John B. Goodman +1402934,Stuart Howell +43089,Wilhelm Auer +2987,Stewart Copeland +1589098,Maximiliano Gorriti +2512,John W. Wheeler +995572,Phillip Fenty +8673,Daniele Massaccesi +1117851,Chin-Wen Huang +8870,Leonard Engelman +1414558,Andy Kaplan +1293479,Marc Désourdy +1549209,Thomas Pasatieri +19236,Michael Schorr +1532472,Fred A. Datig +37406,Patricia Woodbridge +1343811,Mario Cotone +1376892,Rebecca Jellie +1580204,José Ramón Delgado +1407661,Dulcie Spencer +11343,David Yates +85637,Béla Tarr +224983,Arthur Bernède +1521711,Salvador de la Fuente +1080822,Kôhei Sugiyama +1532356,William L. Flanagan +1517809,Nicholas Adams +1030591,Stephen Beatrice +34542,Mark Jacobson +1889078,Göte Björkdahl +1609518,Jacek Cichecki +1521452,Gary J. Perticone +1505,Edgar Allan Woolf +1639865,George DiLeonardi +9838,Hans Erdmann +1545743,Miruna Panaitescu +553842,Sung-woo Jo +992059,Yuka Ruell +51607,Max Nosseck +1629466,Suphot Raksa +21968,Ezra Swerdlow +58583,Rebecca Howard +6358,George Jenkins +51023,Marcus Dunstan +87394,Bernard C. Schoenfeld +190914,Elizabeth West +2308,Jürgen Knieper +1426858,Hetta Burger +1454752,Sue Pugh +1406584,Björn Rehbein +2401,Jean-Marc Deschamps +558,David Julyan +27548,Richard Hatem +1254,Art Linson +97011,Chance Thomas +1242310,Elliott Baker +6543,Eric-Emmanuel Schmitt +17233,Melissa Kent +58205,Robin U. Russin +1466196,Malissa Daniel +31708,Michael Birnbaum +1520952,Alfredo Mora +39,Sam Mendes +1320,Alan Lee +1056102,Carolina Urbieta +69365,Jeffrey M. Hoffman +66598,Kate Lanier +22040,Keith Walley +6990,Helen Robin +54902,Ernst Reijseger +44179,Bruce Hunt +1396827,Shannon Erbe +115941,Kiyoshi Inoue +122970,Lew Lipton +967366,Britt Woods +57545,Pierre Biecher +1825,Robert F. Shugrue +33455,Sue Chan +1395269,John Bruno +15603,Ramiro Civita +1081861,Patrick Tilley +956271,Jory Weitz +1414061,Ethan Dubrow +1685014,Laura Berning +1401395,Bryan Korenberg +1765792,Gerry Taylor +65531,Eric Goldberg +192841,Rebecca Charles +144060,George S. Kaufman +63906,Curt Sobel +558227,Jordan Samuel +1172278,Terry Blackwood +81537,Ed Bowes +1405423,Mounir Badia +1534222,Lisa Marie Rosenberg +54244,W. Mott Hupfel III +1573095,Blair Howley +1783005,David Paul Lord +1597176,Todd Young +1877379,Chuck Smith +29067,Linda DeVetta +1463874,Phil Langone +60261,Stan Winston +35544,Karsten Aurich +1553264,Michael T. Andreas +1602164,Pavel Stverák +73721,Louis Nucéra +69513,Joan Harrison +79209,Hawk Ostby +34522,Pam Brady +27907,Gaetano di Ventimiglia +23766,David Lindsay-Abaire +2432,Samson Raphaelson +61300,Yarrow Cheney +1384146,James Corcoran +1891677,Bob Savage +1864800,Eddie Kim +148079,Theodore Dreiser +105344,Maurizio Trani +1370831,Ted Kenney +390,Irene Lamb +13081,Peter Fudakowski +494,Terri Taylor +1117856,Lori Tilkin +38021,Denise Pizzini +100914,John Twist +207749,Gail Harvey +1803776,Todd Dickison +1575861,Mark Soparlo +15812,Roger Allers +1705305,Sanjay Bali +1364406,Gary Tuers +1411323,Susan Howard +1464516,Douglas T. Madison +1533664,Milton Gold +1575768,Laurie Giles +1603224,Scott Miller +1392901,Lauren Stephens +42952,Michael Burke +79392,Alexander Yellen +1406857,Piers Dunn +1052041,James Lasdun +26098,Katia Wyszkop +1478308,Bob Carroll Jr. +59565,Fritz Feick +1767047,Bob Baxter +1400081,Andrew Rowlands +1546842,Randy Dutra +962163,Simon Bowles +119105,Lene Børglum +1554310,Angelo Di Giacomo +6627,Chris Moore +37021,Mike Elliott +1620073,Rolf Keden +1486851,Alex Olivares +1126742,Lisette Kelder +19843,Mariano Marín +1451279,Doug Walker +1668731,John Stewart +1400519,David B. Moulder +77544,Karl Geurs +73517,Peter Hampden +1546844,Ryan Church +1424627,Hein de Vos +1380000,Helmut Prein +1723678,Giordo Ganem +1411160,Elaine Schreyeck +1854994,Patrick Lima +1673816,Brom +1348081,Arthur S. Black Jr. +13458,Joel Kramer +1352446,Rodrigo Balart +41081,Jefferson Sage +79141,Richard Peyton +27445,Jim Cruickshank +83086,Richard Kite +40248,James Donahue +1396493,Rose Lam +1202316,Andrey Kureychik +25604,Paul Sandberg +584,Philip K. Dick +1546458,Dennis Drummond +1767311,Shawn Kautz +32048,Enrico Medioli +1864755,Kerry Turnbull +1142481,Paul Warner +60404,Geoffrey Hall +34899,Harry Linden +1407676,Mary Haddow +11964,Sergio Kogan +30922,Sol Kaplan +1767305,David L. Bell +62684,Kai Schürmann +1419416,William Barclay +1418303,Harry Panagiotidis +30870,Dave Payne +1531324,G.R. Aldo +1085780,Todd Barron +165396,Barbara Nelson +1687797,Yelena Loginova +1427381,Annette Kudrak +1622157,Phil Bowles +1419264,Fiona Campbell Westgate +1762786,Eric Bardin +239179,Corky Ehlers +14845,Sally Dennison +1705313,Joseph D'Souza +75805,Doreen A. Dixon +1465597,Anthea Hodge +18225,Henri-Pierre Roché +57202,Peter Fincham +5637,Patrick Süskind +1798044,Penelope Robin +1553171,Renata Gilbert +1066819,Sally French +1077928,Nancy Mannigham +70778,Joseph M. Caracciolo +1452508,Michihiro Ito +10439,Marshall Brickman +1627483,Anthony Veader +31027,Russell Boyd +75798,Roger Hall +131011,Kazuo Hirotsu +1417531,Ivo Battelli +30192,Ira H. Morgan +11227,Jany Temime +81266,Phoebe De Gaye +6476,Cary Brokaw +1770037,Svetlana Luzanova +16338,Pierre Duboisberranger +982978,Chloe Emmerson +1211813,Paul Dini +57602,David Rodgers +88644,Charles Koff +1498452,Christopher Mollo +1392556,Marcelo Camorino +1585196,Matt Magnolia +1400100,James Nichols +1451611,Patrick J. Love +1571781,Michael Curtis +217617,Simon Gray +1558431,Abigail Edwards +111486,R. Wright Campbell +19051,Martha De Laurentiis +1364239,Mark Robert Taylor +1136,Jacques Witta +240376,Andrew Mogel +544776,Jan Georg Schütte +94068,Benoît Lestang +1001798,Mark Benjamin +32732,Mike Curb +69579,James Isaac +1401720,Erik Liles +113054,Warren Hendriks +1202511,Magdalen King-Hall +100558,Andrew Lane +7741,Simon Boswell +22300,Simon Murton +1002502,Hucky Hornberger +1390234,Timothy Huizing +72210,Mark Suozzo +70949,John J. Connor +1330570,Carolyn M. Fenton +65111,Mark Handel +122084,Carl Mahakian +1753064,Tom Doherty +27767,Lawrence D. Cohen +1529476,Audrey Scott +92356,Carmine Goglia +1010308,Marita Giovanni +21506,George Sidney +1454656,Pierce Davison +1456616,Kitarou Kousaka +1309883,Peter S. Carlstedt +1195356,Ben Parkinson +82152,Adam P. Scott +1771847,Tom Shaw Jr. +58204,Ed Horowitz +1395262,Ned Gorman +1800131,Jennifer Chang Binns +1496388,Bill McAdams Jr. +94108,Dennis Iliadis +1399139,Sidney H. Greenwood +1455286,Erin Fite +1394757,John Lewin +1713703,Robert Neuman +1129437,Mercedes de la Cadena +1392706,Arthur Windus +1117311,Yolanda T. Cochran +1397847,Kip Larsen +85495,Jack Bernhard +1556629,Gregory Amundson +582251,Andrey Sigle +31038,SirLaosson Dara +52994,Tim Williams +90690,Miroslaw Baszak +1725453,Donald Tetreault +1626427,Hilary Steinberg +70449,John Wyndham +127132,Miles Franklin +682687,Tyler Brodie +138167,Peter Duffell +1402033,Jean-Philippe Berubé +12770,Denis L. Stewart +6455,Theadora Van Runkle +12737,Artur Brauner +37004,Matthew Irving +78118,Vadim Perelman +66105,Peter Tanner +79135,Piers Tempest +1337123,Nick Navarro +1277673,Jaime Baksht +1790470,Karen Bosma +77973,Ingvild Eiring +70524,Mark Herbert +567566,Athur H. Nadel +1864762,James Colmer +1454884,Cedric Nicolas-Troyan +1333756,Tina Sims +5017,Jocelyn Pook +1661581,Enrico Ballarin +980475,Richard Dana Smith +1603859,John Evans +1378164,Richard A. Villalobos +1181767,Nicole Michaud +5867,Udo Kramer +90479,Matthew Brown +58689,Neil LaBute +1674651,Kara Morasco +21122,Ramiro Belgardt +1454940,Samantha Walker +1521675,Rodrigo Mariña +20431,Alain-Michel Blanc +1603668,Ugur Aygan +2241,William Steinkamp +1351569,David L. Butler +1400355,Arturo Curiel +20849,Étienne Chatiliez +1545307,Dick Ying +6116,Annie Stewart +75991,Stephen Luby +1845,Tom Zickler +29688,Seaton McLean +69173,Bo Christensen +1377213,Carlos Benassini +17254,Robin Sales +1537443,J. John Corbett +117774,Al Clark +4799,Katja De Bock +1573619,Sondra Dee Boyachek +7185,Michael Chinich +57956,David Elfick +938731,Aleksandar Popovski +70380,Denny Jaeger +1324227,Nuria Muni +1610877,Shoichi Tabata +1400347,Maryan Zurek +1568003,Hans Ender +1864229,Tom C. McCarthy +1391733,Tony Clarke +939477,Pilar Benito +1399502,Matthew Lammerich +8217,Conrad L. Hall +111435,James Gunn +25012,Mike Southon +30918,William D. Gordean +33020,Esdras Hartley +150540,Daisy Ashford +85100,Dan Golding +1566069,Pierre Vinet +55288,Christian Sitta +12495,Ted Haworth +17399,Thom Noble +1418264,Cheryl Williams +1573105,Christopher Murphy +1399142,Arthur Piantadosi +115544,William Margulies +7660,Jack H. Skirball +1893234,Lori A. Ellington +20136,Georges Périnal +68007,Barney McAll +13867,Larry Jost +195,Lennie Niehaus +4023,Suzanne Smith +1625931,Paul Berta +1662351,Noel Donnellon +1321589,Robert Q. Mathews +23973,Linda M. Bass +1398112,Piers Gielgud +1533788,Ali Farboud +93214,Steven Quale +1029,Per Streit +1427298,Camille Lipmann +1767315,Angela Peabody +1378745,Bill Iiams +1342624,Wayne Heitman +88913,Timo Kahilainen +423541,Jacques Constant +1452317,Francesca Bartoccini +88115,Barbara Gibbs +869,Gale Anne Hurd +41747,Frank Loesser +13900,Frank Wedekind +41592,Andrew Max Cahn +64821,Brian Taggert +1123129,Brian Gilmore +18311,Joe Roth +1753062,Alistair MacRae +1588524,Silvano Mancini +10754,Stephen Scott +1415957,Jim Dowdall +1532730,Jennifer Avery +1385926,Sam Wilson +13941,Byron 'Buzz' Brandt +1347761,Jessica Lichtner +59828,Shawn Papazian +1000467,Theo Sena +1355594,Stacy Kelley +67824,Jim McElroy +1332557,Lilian Wadilie +60457,Mark J. Mullins +78009,Colin Brady +1413906,Patricia Larman +2293,Frank Miller +5272,Anne Schnee +1414488,Kenneth Walker +1117862,Qiang Zhang +30725,Bud Molin +1456476,Nils C. Jensen +25240,Cheng Siu-Keung +1644971,Gunilla Henkler +1897892,Rochelle Gross +1423408,Steve Chaplin +65754,Beth Kushnick +57988,Patrick Cirillo +121281,Jack Natteford +29233,Veronica McAleer +1401897,Danny Rafic +18578,Edwin H. Bryant +1030521,Tudor Giurgiu +87364,Mark Friedman +423441,Hartmut Eichgrün +82642,Wil Zmak +20474,Jean-Louis Piel +1552171,Gerry O'Malley +1436194,David H. Neale +100305,Florence Crewe-Jones +1492911,Randy Gardell +565158,Wong Ying +568131,Kenith Trodd +1226653,Krishna Rao +36164,Eric Robertson +226824,Muneki Yamada +590750,Christoph Mülleneisen +1408301,Jason W. Jennings +1541519,Manuel González +143785,Al Dempster +1551746,Katsumi Uzawa +1537119,Kathleen Keller +935492,Steve Riley +1803769,Dick Dova +976387,Brandon Cole +1556948,Bill Kaye +85130,Pablo C. Pappano +10392,Nancy Tenenbaum +66852,Eric Altmeyer +1662328,John Mcgregor +53344,Fiona Trayler +9554,Bruce Paul Barbour +389190,N.B. Stone Jr. +69897,Kristin Asbjørnsen +1441281,Aaron Coakwell +3031,Thomas Del Ruth +1495606,Robert F. Blumofe +79491,Avi Korine +21340,Tom Butterworth +1530899,J.R. Crone +62807,Ben Ormand +948439,Laurie Borg +6900,Jane Kurson +5014,Frederic Raphael +85125,Mercedes Blackehart +56003,Bruce McNall +127518,John O'Hara +1551957,Daniel Kolarov +2162,Lynda Obst +1521700,Elvira Ochoa +73681,Toyoyuki Yokohama +1531872,Darrell Redleaf-Fielder +1312730,Cliff P. Broughton +16300,Tak Fujimoto +983129,Wibecke Rønseth +1586391,Jiri Ctvrtecka +162916,Randy Roberts +1547531,Kintarô Yamamoto +114404,Miguel Sapochnik +963557,Dima Malanitchev +1378751,Stan Tropp +131406,Charley Rogers +1555189,William Smith +1334506,Mikkel Groesland +37682,Thomas Zauner +15004,Charles Newirth +1196145,George Smith +1394101,Becky Roberts +1654585,Chris Brown +1225721,Gareth Milne +96678,Fabrice Ziolkowski +1284967,Anil Sharma +5187,J. McMillan Johnson +1412617,Hank Salerno +27542,Debra Greenfield +1263560,E. Nesbit +92493,Hiro Koda +1393341,Oliver Upton +1455462,Dan Haring +1459591,Kay Chapin +65707,Eveleen Bandy +1640600,Cristina Buckley +1415988,Jean-Pierre Lacroix +93600,Pete Beaudreau +55667,Tohru Hara +7832,Oliver Hirschbiegel +100423,Donatella Donati +70896,Cory Neal +1340333,Sue Conley +1322407,Mandi Line +5981,Markus Selin +1127891,Lionel Kopp +1409229,Butiseaca Florin +55439,Patricia Rozema +1447131,Raymond J. Légaré +1453319,Faye Brenner +1182098,George Hively +1422868,Andre Perreault +1779881,Mark Sonntag +51510,Yohann Costedoat +1206211,Roger Dicken +57383,Paul Brickman +1046556,Jorge Hinojosa +27240,Herb Jaffe +1691975,Antonio Corridori +28754,Françoise Etchegaray +67460,"John C. Flinn, III" +1394862,Fabian Sanjurjo +20642,Buting Yang +1525883,Martine Gagnon +2679,David Hackl +1566287,Miles Anderson +1189807,Tim Wooster +47498,Robert Moore +145968,Richard Boleslawski +46955,Drew Neumann +43087,Dr. Volker Baas +6997,Lucie Robitaille +119024,Masaru Takase +4103,Alexandre Trauner +1414988,Chris Gallaher +19128,Roger M. Rothstein +1122011,Kyle Lundberg +1646909,Séverine Cava +80570,Walter Lang +1442567,Michael Kelly +64045,Kirk Jones +1547068,Amodio Giordano +1012097,Jon Jost +936662,Irena Taskovski +118168,Tim Haslam +1227929,Richard Brams +1459843,François De Menil +1758622,Christie Cean George +29065,Debra-Lee Davidson +1421723,Tony Van Den Ecker +1392681,Sarah Light +1128452,Mark Meyers +182664,Robert C. Thompson +35740,Sharmishta Roy +1080975,Sven Fahlén +1868862,Robert Allen Jr. +1377604,Jaromír Janáček +69315,Luis Puenzo +240118,Jean-Louis Milesi +683434,Michael Brysch +1406836,Lee Ifans +21185,Henrik Danstrup +29670,Mayo +67596,Richard Brooks Burton +29,Steve Tisch +1599491,Haris Sarvan +8701,Laurie MacDonald +1556433,Kirstie Stephenson +37022,Marco Mehlitz +50582,Frederik Du Chau +16730,Darrell James Roodt +28867,Jeff Apple +107252,Ken Ghosh +1355313,Caroline Silk +1374605,John Leimanis +5231,Wolfgang Petersen +1351416,Igor Kovalik +1344279,Mark Indig +589961,Monty L. Simons +1421271,Martin Martinec +1175698,Shinichi Hoshi +46984,Detlev Fichtner +100807,Juan Piquer Simón +74655,Jeremy Saulnier +1418485,Bill O'Drobinak +20735,Christian Basso +1399057,Jim Brookshire +545305,Niramon Ross +16368,Steven Price +1409729,Anne Spiers +2869,Kathleen Rowell +47248,Willy Schatz +1585880,Markus Eckert +1406913,Fernandes Mendes +45133,Maria Speth +8500,John Ford +21404,Kurt Voss +1733752,Wesley Peppiatt +1044005,Reginald Denham +12084,J. David Stem +9955,Anthony Mendleson +54563,J. Todd Anderson +1343564,Thomas A. Fucci +67506,Steven Katz +30259,Stuart Gilmore +1560751,Ernest Gasser +1322483,Vanessa Vogel +1392736,Simon Leadley +1334172,Linda Kamp +17455,Angus Wall +52789,Guendalina Ponti +17166,Jenny Beavan +1419268,Michael Galbraith +510484,Marc Dugain +51029,Stacey Testro +20072,Craig Stecyk +23363,Amedeo Salfa +1043866,Sebastián Garza +1802517,Lusia Carovola +1341534,J. Ralph +1725322,Kuki López Rodero +53785,Gaye Hirsch +1716151,Jack Cunningham +1552605,Andy Barrios +7902,Ruth Lambert +1620072,Bernhard Frey +148809,Fred Hellmich +43101,David Dulac +1418161,Richard Hyland +1393390,Ray McIntyre Jr. +1462673,Bob MacDougall +1830644,Félix Fontal +59635,Jerry Zaks +71486,Michael Lucker +113982,Justis Greene +1213174,Jane Raab +1392668,Pru Smith +1662318,Brendan Lonergan +45738,Michael Simmonds +1376901,Marshall Winn +91243,Charlie Picerni +5811,Agenore Incrocci +1492543,James Patrick Dunne +1424696,David J. Thompson +989004,Pelayo Gutiérrez +1724247,Peta Black +1300921,Richard S. Kordos +4231,Julie Fong +1398970,David Emmerichs +30110,Carmen Dirigo +256928,Nick Davis +1398185,Deyan Donev +14095,Robert Pergament +126437,Riccardo Donna +1697682,Sherm Thompson +40835,Paul D. Austerberry +1377223,Mitchell S. Drain +1427885,Charles McMullen +1480964,Dilys Tan +1611794,David McKeown +143009,Ferdinand Bordewijk +24511,Pam Phillips +61126,Tim Mirkovich +68493,Marvin Worth +1596655,Barbara Peterson-Malesci +1464528,Alejandra Rosasco +86198,Darren Higman +1452256,Catherine Biggs +11582,Henri Armand +97859,John Schouweiler +33291,Shawn Dawson +46080,James Lassiter +31026,Larry Levin +5016,Jan Harlan +1062467,Jamie Sue Weiss +1855216,Sebastien Beaulieu +9646,Richard Pearson +6490,Donald E. Thorin +70835,Jonathan R. Betuel +1815887,Jacqueline Tager +63352,Josh Goldsmith +1104723,Grace Duffie Boylan +1118241,Colin Cotter +1445471,Jenn 'Jorge' Nelson +1661557,John Wassel +57447,Christopher Crowe +961264,Lindsley Parsons Jr. +118448,Frank Heath +1455329,Kennet From +1028471,Don Henderson +41635,Mario Alicata +1006929,Tom Boutross +552081,Jake LaMotta +18383,Michael S. Murphey +1821183,Brian Corpus +555823,Webster Colcord +1447595,Julio Leon +1394643,Ira Halberstadt +146352,Bob Brown +1451409,Steve Bartkowicz +1028848,Elsie Choi +1569464,Cliff Gardner +1557612,Jeffree Bloomer +1654575,Jacky Reynal +1424935,Paul Conway +1027737,Robin Budd +2901,Karl Vollmöller +2863,Nathan Larson +67390,Deborah Jelin Newmyer +8165,Dee Selby +32277,Geoff Murphy +1225,Carter Burwell +137064,Robert Moresco +559902,Del Acevedo +21697,Chris Lee +137192,Frederic C. Weiler +1483232,Michael Takarangi +1405394,Marco Sacerdoti +1586337,Vaclav Kares +1559470,Frank Baur +90525,Douglas Cheek +1044545,Korrakot Sittivash +66513,Jeffrey Harlacker +1417400,Deena Adair +16961,Michael Arndt +1573090,James F. Andrulonis +1602285,Károly Hadai +1319634,Paul Mitchnick +1598752,Jennifer Deigl +1566310,Paul Abatemarco +1413938,Ted Swanscott +1378163,Jonathan O'Connell +1303221,Cynthia Huffman +111193,Darrell Calker +1401274,Liz Byrne +27562,Jean Doumanian +1342813,Carlo Salsa +81535,Garry Sherman +1319153,Anneke Van Oort +1408795,Janine Modder +1424571,Jonathan Privett +26264,Kenneth Ross +195975,Philip Rapp +16831,Holly Wiersma +45962,Lex de Azevedo +85903,David Hertz +223238,Hal Couzens +1193379,Philippe Monnier +1378765,Van Redin +31039,Nonzee Nimibutr +1566251,Susan Van Apeldoorn +148244,Dan MacManus +938146,Wladyslaw Starewicz +13736,Christian Granderath +78367,Yuji Ono +1424447,Lennis Fike +9548,Barry Adamson +1159655,Edward Knoblock +1158487,Helena Tulve +1453892,David Grant +11294,Roy Forge Smith +1276271,Nicola Rosada +54767,Mika Kaurismäki +1808703,Hal Waite +33236,Alexander Ignon +1337171,Ruby Rosenberg +1433227,Marijhe Geheniau +52089,Nicolas Clermont +94292,Zeke Richardson +1130052,Renato Doria +1581151,Jean-François Daviaud +1557602,Kelly Reese +3170,Mona Skager +1800193,Moshe Bardach +1594803,Benjamin Chiram +1877165,Judee Flick +1378161,Craig Edgar +55612,Paul Sarossy +95407,Jeffery Scott Lando +552406,Molly McArthur +68602,Tom Rosenberg +1613269,Simon Haslett +1720745,Marek Klimaszewski +73622,Alex Sichel +11236,Li Garpenfeldt +1681699,Dedan Ouziel +1355595,Rhonda Krafchin +1417387,Bill Cornford +1532410,Robert McGee +1205932,Rudy Ricci +1500,Al Boasberg +57594,John Cornell +27095,Ilona Herzberg +1409728,Catherine Graham +84237,Lenore J. Coffee +9606,Eduard Tisse +1018988,Uli Simon +121090,Robert Hardy Andrews +41330,Paul Schwake +61930,Allan Zeman +65857,Pam Marsden +88120,Kerry Jackson +7385,John Maxwell +1397844,Gabriel Guy +1744046,Rick Glenn +1584245,Amanda Buchanan +88914,Heikki Vihinen +6204,Martin Brown +1673988,Lenore Weaver +121202,Rex Wimpy +78390,Hoyt Bowers +47892,Kathryn Morrison +1482063,Richard Durham +1896002,Geoff Herbert +42504,Yoram Barzilai +79134,Anthony Buckley +74985,Morris Flam +18664,Marjorie Fowler +960658,Valerie Espagne +1296335,Han Ji-hun +19155,Christopher Young +1247194,Sam Manners +1462665,Harald Kraut +1367556,Nail Aydin +1552540,Marie Randall +1802341,Harvey W. Mason +41080,Allison Jones +13179,Tony Lamberti +37159,Roderick Taylor +1730026,Jean-Marie Leroy +71487,Chris Parker +145063,Oscar Orlando Torres +1394768,Peter McCaffrey +76265,Marc Engels +32178,Ronald Davidson +5308,Robert Nelson Jacobs +29888,Flavio Mogherini +14650,Earl Luick +1034418,R.J. Minney +1403408,Jennifer Mizener +1790548,Vanessa Jenik +1537141,Hilde Odelga +8967,David Puttnam +1072714,Aurania Rouverol +1676654,Tomomi Nishio +70781,Steve Greener +460575,Michelle Johnson +3193,Scott Martin Gershin +29733,Nikolas Roudakoff +62350,Eric M. Breiman +9021,Stephen Woolley +59970,Joseph Hartwick +97547,Wayne Morris +9819,Jon Billington +1557590,Ellen Walder +94684,Jens Fischer +70868,Jay Tarses +28370,Egon Werdin +88096,Michael Miller +97646,Joan Micklin Silver +582564,Dar-lung Chang +54894,Nicolas Stiliadis +14916,Byron Houck +959701,Charles Webb +1265278,Elizabeth Hayes +1544410,Denis Carquin +63981,Robert Florio +1125695,Henry Herzbrun +552637,Lafcadio Hearn +13432,James R. Symons +1290903,Thom Shouse +1337419,James Bellamy +997342,Alina Pentac +1400334,Antonio Gómez +555064,Joe Ritter +32355,Zoltan Elek +1717527,Tim Soronen +61936,Jane Petrie +551519,Nicole Coady +161975,Frank Arrigo +1172558,Gale Sayers +75725,Robert Connolly +1142943,Rafal Listopad +793,Luis Buñuel +65796,Audrey Skalbania +68748,Michael O'Farrell +10232,Florian Appl +1404765,Albert Bettcher +1302523,Greg Vossberg +1125481,Adam Mcclelland +1462841,Thierry J. Couturier +160010,Larry Riley +16575,Diamond Farnsworth +74976,Mel Metcalfe +40167,Don Costa +1399565,Bogdan Stanciu +40402,Buzz Kulik +72554,Alice Arlen +12145,Jean Louis +1366728,Lewis Geib +1073230,Lara Fremder +1085296,Kate Caldwell +1378202,Ken Fritz +1724854,David Knudson +198990,W.G. Snuffy Walden +57573,Joe Penhall +19743,Arnold Perl +51781,Fred Tammes +19983,Sam Garbarski +61091,Jon Jashni +1605193,Alexey Rodionov +1757604,Eugenio Saluzzi +1420161,Brenda J. Chambers +32994,Earl Baldwin +1429635,Philip Sindall +51030,Peter Block +1400,Wojciech Kilar +79542,Charles Burns +1092614,Mona Theresia Forsén +1426760,Amber E. MacLeod +1545739,Andu Radu +107418,Ian Brock +1739542,Jimmy Garcia +1581138,Ben Bellman +1458587,Tammy Rae Beltrami +1352923,Tanya Howard +3049,Martin McGrath +1433112,Jacques Lederlin +1625923,Mo Fitzgerald +12327,Joseph M. Newman +1390539,Tricia Ronten +1432038,Phillip Hoffman +223265,Mary C. McCall Jr. +1053074,Marianne Agertoft +57600,Robert Steadman +1404305,Cyndi Reece-Thorne +1403199,William 'Fleet' Eakland +222479,Jimmy Lagnefors +1620101,Jean-Louis Ducarme +31033,Oxide Pang Chun +1455392,Rachael Prior +1841337,Michael Ventresco +1559615,Manny Demello +3082,Laurence Dorman +71339,Rick Bieber +1338834,Jules Strasser +115307,Samuel Bronston +1113241,Rod Scribner +68804,George Akers +1815475,Barbara Olson +1424600,Kobus Swart +71239,Russell Thacher +119665,Gregory Jacobs +11295,Fiona Weir +90232,Charles W. Bailey II +72268,Atli Örvarsson +1425852,Galina Zaigraeva +14696,Dodi Fayed +35737,Yash Johar +20498,Carlos Gallardo +1447555,Doug Tiano +92740,Gerald Thompson +1540855,Georgiana Creanga +9916,Paul Dehn +1182532,Warren Leight +1449507,Francesca Roberti +7662,Sally Benson +1125681,Muhammed Buqai +151502,Bruce Bilson +1424138,Robbie Goldstein +72141,David Wheatley +2075,David Loughery +32082,Andrzej Żuławski +15003,David Howard +1208332,Rick Fichter +1416983,Santtu Sierilä +56639,Kate Plantin +1406848,Pam Aaron +53758,Guymon Casady +9738,Marcel Escoffier +173626,Norm McCabe +1435047,Robert Vreeland +21656,Lisa Gunning +57631,Simon Beaufoy +1767032,Robert Souza +1404873,Julia Jones +1148558,Meredith M. Nicholson +1532071,Peter Wilcox +57901,Rudy Cohen +10155,Clem Portman +204304,Joel Hatch +1342655,Diane Marshall +1460798,Takuji Mogi +24315,Fred Karlin +1119187,Martin Carr +1462695,Danny Wawrzaszek +14257,Reg Allen +61506,Jeff Subik +6489,David Arnold +1038004,Alan Brown +1605693,Dounamba Coulibaly +1335122,Donald Flick +112193,José Alvarenga Jr. +1603661,Canan Çayir +1602169,Petr Prusa +1400358,Fernando Uriegas +69697,Jon Robin Baitz +84165,Michael Dinner +1433706,Mauro Tamagnini +1425854,Abi Schneider +1597177,David Ross Lawrence +1220741,Charles Kipps +60704,Barr B. Potter +1334501,Josh Rifkin +119117,Caroline Harris +1102580,Daniel Revers +61239,Michael Petroni +81540,Diane Katz +1399327,Barbara McDermott +1753070,Beverly Carr +8322,Manikandan +960707,Georgina Yarhi +55054,Sascha Franklin +1409746,Rod Newby +184399,Angel Flores Marini +545842,Seth Edelstein +1571746,Steve Allen +1733777,Olivier Chiavassa +38060,George Partleton +1396508,Todd Elyzen +6226,Zygi Kamasa +82689,Hidetaka Konno +233221,Leo Katcher +10393,Alan Baumgarten +63952,Greg Brooker +1523419,John Quaglia +1399861,Brad Sherman +1424133,Paul Huston +1552885,Boyd Lacosse +1010061,Osamu Kamijo +86981,Paul Oremland +8584,Anna Van Steen +14697,Michael Hirshenson +66243,John F.S. Laing +92017,Yu Cao +1204209,Fiona Chilcott +57335,Vance Gerry +937463,Sergio Cortona +1108294,Stanley Bergerman +1015545,Brent Barclay +1454658,Dick Jarman +3870,Tobias Amann +1646881,Björn Eggert +16899,Kathleen Crawford +1398758,Tom Conroy +44122,David C. Lawson +1584256,Brandon England +21085,Alex Proyas +1761933,Mark Kenaston +1562457,Rolf Johnson +1262017,Arturo Zarate +1415976,Nick Drew +39233,Michael André +14458,Robin Grantham +1544992,Nicholas Georgiadis +89113,John Robert Hoffman +1265586,Harry Fischbeck +1613321,Bradley Sick +76507,James McKenzie +1830793,Michael Lorenzen +68030,Kit-Wai Kai +70520,Shane Meadows +135383,Hideo Yamamoto +42030,Keith VanderLaan +110718,Harvey Genkins +1717522,Sean Ludlam +59879,David Trueba +51379,Eve Newman +32939,Uta Schmidt +1496412,Paul Urmson +1792,Jack B. Sowards +1437883,Scntava Chuminjong +36525,Frédérique Moidon +16208,Christine Lee +1325195,Andrea Spakowski +46000,Sandor Stern +20733,Cho Yong-kyou +1560268,Gretchen Goetz +1402013,Scott Allen Logan +1499987,Cindy Valentine Leone +18791,Diana Zock +1038559,Gregory Sandor +1344149,Raquel Fidalgo +137181,Edward Hansen +26436,Helmut Käutner +1398918,Andrea King +14926,Rob Bell +1551652,Jennifer Mccormack +35836,Marc Frédérix +17611,Andrea Kenyon +57585,Sam McCurdy +1631609,Rhys Summerhayes +1615792,Allen Blaisdell +142165,Suzana Peric +66950,Kiran Deohans +111173,Harry Redmond Jr. +1403355,Sarawut Chincharoen +1400835,Rebecca Fulton +1741631,Marlen Hill +60052,Horacio Marquínez +99325,Stuart Walker +5728,James C. Katz +9969,Robert Sidell +958278,Don Diers +1851960,Ed Rosenbaum +1313484,Courtney Sheinin +1554884,Samantha Morley +7186,John J. Lloyd +1730751,Mimi Maxmen +1815884,Timothy A. Hoggatt +1512251,Sandy Cooper +1864794,Kim Pearce +78806,J.T. Petty +37086,Sytze van der Laan +1790556,Robin Johnston +212576,John Morris +1602314,Timea Luzsi +550581,Masahiro Yokotani +112520,Garreth Stover +27786,Kôji Suzuki +61538,Doug Byggdin +69707,Olli Barbé +1407885,Paul Feddersen +30876,Dean E. Fronk +1901700,Aimi O +1585866,Christine Seehofer +122492,Sandy Whitelaw +1182882,Ed Kaplan +46811,Jerzy Kromolowski +59870,David Codron +1584233,Brianna Seale +1537637,Frantisek Novotny +142462,Ichirô Ikeda +95760,Erik Skjoldbjærg +121415,Walter Söderlund +971,Niven Howie +112340,Ron Krauss +65547,Felix Sutton +10394,Lee Haxall +109745,Lee Toland Krieger +12808,Ron Silverman +20780,Roi Cooper Megrue +69049,Eric Van Haren Noman +59438,Mark Joffe +1720172,Mark von der Heide +159769,John Hunter +87688,Charles Hoffman +1337472,Mark Hardy +88022,Mika Orasmaa +30209,Al Clark +226631,Richard Rosson +19666,Alex Lasker +120032,Paul Weatherwax +1551654,Steve Holt +1684305,Gene 'Hap' Cooper +932,John Logan +4664,Leonardo Benvenuti +4083,Floyd Crosby +564114,Douglas Sloan +1550226,Pascal Charpentier +1329417,John Blake +1549173,Pamela Santori +1403110,Louise Wakefield +1551,Philip Glass +1193692,Ken Brooke +1571778,Darrell Hanzalik +123288,Kjartan Sveinsson +1567325,Melissa Lee Anderson +12840,John Badham +192625,John Palmer +84387,Henry Adebonojo +27963,Freddie Fields +44957,Dardano Sacchetti +1483064,Jeffrey Weiss +34436,William Kiernan +52449,Eric Steelberg +1172632,E.C. Woodley +1330048,John Casey +56865,Fruit Chan +1790469,Graham Kurzner +68112,Satoshi Fukushima +1032103,Rakesh Roshan +3646,Wesley C. Miller +1206905,James W. Tyson +52163,John Dunn +1409270,Thomas Whiting +1662377,John Greaves +554948,Chao-Bin Su +54267,Kim H. Winther +1418489,Joe Everett +1447481,Andre Medina +1413453,Stephen P. Robinson +1630526,William Huffman +14341,Greg Papalia +1497475,Ricardo Iztueta +61627,Melinda Doring +1107759,Lukás Bech +6742,Craig Alpert +1780222,Jose Duarte +1115032,Dave Okey +1188976,Piero Bozza +17209,Avi Lerner +12238,David Lean +1412253,William H. Burton Jr. +1724249,Laura Sivis +24797,Vittorio Nino Novarese +972016,Deidre Bowen +78138,Jack Ketchum +1658531,Jonathan Bell +70707,John Halas +11274,Sebastian T. Krawinkel +1521658,Guillermo Maldonado +17285,Kurt Johnstad +1416920,Gareth Vanderhope +84181,Shannon Kemp +51521,Robert Greenwald +53455,Kelly Masterson +111485,Jack DeWitt +1351727,Igor Thomas-Gerard +1023350,Luchi De Jesus +141593,Louis Vittes +7051,James Clarke +53290,Donald M. Morgan +157395,Bernard Slade +60027,Mark Kaufman +751,Valorie Massalas +12579,Phil Bray +1839455,Lorne Grant +144382,Teddi Sherman +52454,Mateo Messina +46268,Magdalena Biedrzycka +2489,Edwin Justus Mayer +1241585,Akio Nojima +16551,Ilona Herman +42268,Debbie Denise +1410594,Nicolas d'Halluin +428915,Jeb Brody +8859,Bernie Brillstein +3993,Dennis Muren +1415640,Deborah Hall +69744,Dale De La Torre +76202,Gary Woodyard +1387774,Alexander Schwartz +1401812,Lilia Mishel Acevedo +1487060,Julien Baissat +57217,Nattawut Kittikhun +72543,Sam Firstenberg +232186,A.C. Lyles +39138,Jean Girault +21548,Richard Edlund +1739539,Ray Légaré +1574658,Daniel Auclair +19464,Anastas N. Michos +223588,Virgil Ross +35802,Yasushi Shimamura +1384149,Douglas O. Williams +44916,Stanley Tong +228582,Loret Meus +1653448,Sylvia Roemer +19573,John Gay +1235589,Barney Kessel +1585885,Lily Kiera +1337456,Walter Woloschuk +57456,Joseph D. Pistone +193588,Peter Bergman +225945,Javier Elorrieta +1215287,Gordon Mark +1712995,Leslie Rosenthal +70816,David E. Allen +1565945,Michael Guthrie +36147,Charles T. Kanganis +3956,Henry Winterstern +1399557,Ilie Mihai +1827972,Tom Kugler +1864235,Rand Holston +25606,Robert Ludlum +59522,Stuart Ford +53017,Blake Neely +1658760,Tom Sjöberg +1414554,Craig Frosty Silva +228439,Gaston Biraben +11808,Cooper Layne +1525547,Bruce Bright +67391,Richard Bowen +1077528,Mel Ballerino +1760099,Cesare Jacolucci +92388,Jay Peck +19607,Francis Lai +118441,Murray Lerner +19814,Bernat Elias +1671247,Luciano Cattania +1299360,Cynthia Anne Slagter +1700839,Joe Sanchez +1535131,Dondi Bastone +1409218,Gabriel Popescu +11967,Gustavo Pittaluga +146481,Michel Munz +3501,Daniel Hubbard +46284,Gary Williamson +17869,Greg Glienna +1758851,Petrina Ho +1447327,Carey Yost +935278,Nicole Abellera +1556632,Steve Slanec +5029,Robert Siodmak +65674,Janet Healy +55241,Henry Millar +3632,Richard Brooks +1409753,Jackie Bissley +1537178,Julio Sempere +1711196,Mason Hersey +115484,Andrew J. Fenady +928828,Brian May +23351,Art Anthony +53267,Craig Brewer +5128,Daniel Waters +1002581,Katherine Kennedy +1751470,Kim Libreri +4056,Bobby Byrne +261347,Alberto Sciamma +21233,Roberto Gerardi +5720,Christopher Meledandri +1607694,Harkness Smith +1780216,Norene Bini +1779,Kevin Shields +6114,Marc S. Fischer +9183,Paula Wagner +32293,Jean Bourgoin +17063,Pierre-Yves Gayraud +25162,Jacques Prévert +34614,Ariane Mnouchkine +5596,Helen Achtermann +1209538,Jane Summer-Eve +11696,Patrick Wachsberger +1523498,Waldemar Jabs +1522775,Patty Burgee +19988,Ghinzu +73945,J. Barry Herron +142387,John Adams +37456,Serge Silberman +17657,Pietro Mascagni +35373,Gérard Calvi +59564,Marie Cantin +1733993,A. Carter Goodloe +1560,Morten Kaufmann +1521684,Hugo Reyes +1556611,Cosmic Don +54515,Hi-Hat +1372880,Barney Cabral +56095,Gary Hamilton +61024,Ross Milloy +1049325,Bob McNabb +1457045,Blanche McDermaid +53812,Owens Hill +1634439,Brett Praed +1106652,Kazuo Miyauchi +51334,Sheila Burnford +1413936,Darren McQuade +25142,Troy Takaki +26181,Hubert Mérial +1324122,Jason Gallagher +1569315,Rena Sternfeld-Allon +24531,Albert Uderzo +1581500,Lisa Martin +7798,Sandy Isaac +1586330,Lada Koranda +84375,Roy Ackerman +22011,Thomas Becker +1355542,Matt Nettheim +38397,Arlette Langmann +1407236,Thomas H. Park +24840,Alexandre Dumas père +1401795,Anthony 'Max' Ivins +19662,Kelly Wagner +1896606,Alec King +95534,Sarah Waters +77211,Félix Enríquez Alcalá +1106076,Tadashi Yamauchi +1124464,Katsumi Nakazawa +66116,Mark Brown +1530177,Colin Gorry +1197567,Andrew Horn +1457185,Hans Stumpf +53615,Cyril Morin +986119,Dawn Wolfrom +138178,Frank P. Rosenberg +1397161,Avo Liva +1013630,Gino Roy +992802,J. Elder Wills +9557,Brian Emrich +24795,J. Frank O'Neill +1133283,Kaori Nakamura +64231,Michael Barton +1394750,Thomas Nittmann +1620075,Moidele Bickel +1646252,Zoila Gomez +9165,Michael Seresin +1684382,James Barrett +1209074,Jean-Noel Mustonen +4167,Harry W. Gerstad +1409714,Marco Venditto +8680,Jim Erickson +636,Joe Hisaishi +1767023,Nancy Frazen +1546843,Tim Harrington +74692,Tambi Larsen +1559393,Ben L. Reitman +17988,Wendy Hedin +11381,Joyce Herlihy +82516,Vladimir Bortko +92436,Keoni Waxman +1395016,Brian Markey +86990,Emiliano Torres +1774046,William Moore +3794,Bob Kane +105022,Ketti Frings +7554,Silvio Soldini +96731,John Lewis +978850,Joseph Greco +1736990,Stephen Bedell +1272983,Trishia Downie +51921,Andrew Hafitz +1396458,Keith Hlady +1511450,Glenn Gould +115100,Susan Butler +136509,Selig J. Seligman +1337462,Ryan Collison +7732,Allan Cameron +1428208,Roger Meilink +21271,Armen Minasian +53662,Nicolas Favre +959458,Piet Bolscher +60011,Keri Selig +1429540,Ed Fassl +1425871,Tiaan van Tonder +1398920,Melissa Lake +60222,Chris Farmer +4647,Bruno Wagner +1375778,Claudio Borroni +1446194,Glen W. Pearson +12349,Julia Heron +1534939,Donna Turner Culver +1534908,Jacqui Popelka +9965,Allen Daviau +90354,Michael Scherer +1346932,Lau Daai-Muk +1192391,Elizabeth Hedges +1178592,Robert Gundlach +39614,Blasco Giurato +164817,Stanley Beck +930386,Fred Schiller +16594,Andrew London +20009,Ilya Salkind +66113,Darryl Ponicsan +114337,George Fitzmaurice +1428979,Mark Hodkinson +55823,Ted Berkman +40268,Dan Laustsen +1399914,Laurent Kossayan +1377290,Frank Pitussi +1371391,R.L. O'Keefe +137461,James MacDonald +1070658,Yoav Halevy +91802,Enzo Silvestri +1063230,Kevin Bewersdorf +5392,Michael Wilkinson +79983,Dale Rosenbloom +43148,Don Mullan +1596288,Michael T. Galvin +5548,Kerrie Brown +1772273,Rebecca C. Crespi +26194,Michelle Day +1385923,Isabel Dawson +1406130,Yvonne Bastidos +1417881,Gilbert Salas +1552396,Helen Luttrell +1436500,Jim Peters +1446687,Susan Starr +22141,Ogden Gavanski +5487,Alessandro von Norman +1592141,Mac Julian +148182,Thelma Witmer +1576017,David John +85132,Michael Timpson +3097,Gordon Willis +1376619,Jim McGrath +1335156,Lee Wimer +11447,Albert Hughes +27918,Ian Hay +1534111,Roy H. Klaffki +51900,Josep Rosell +937649,Erling Jepsen +1577005,Lillian A. Jackson +511,Larry J. Franco +548429,Brian Basham +1640574,Karen Hughes +1126687,Stanislav Milota +967367,Cristina Campos +9217,Lalo Schifrin +1317662,Jim Makiej +1598764,Leslie Cowan +19422,Gabriel Katzka +1803797,Mark Moore +1458996,Desislava Lazarova +13927,Kurt Wimmer +1404364,Robert Getty +1409747,Chris Cochrane +1235815,Owen Walstrom +1399633,Greg Baxter +7436,Stephen Kazmierski +21961,George W. Perkins +1262549,Catrin Cooper +70523,Hugo Heppell +959274,Ken Seng +1040062,Stuart Anthony +1114555,Linda Otto +110562,James Still +198949,Iris Rainer +28171,Bobby von Hayes +6912,Ken Friedman +54777,Jennifer L. Smith +61339,Robyn Kershaw +1179785,Bernard Aubouy +19919,Heta Mantscheff +2145,Mark Burg +10066,Dorothy J. Pearl +9823,Peter Young +1421071,George Lollier +6056,Mike Reiss +1586385,Mirek Lux +6877,William Sandell +20875,Leo Tolstoy +5604,Mary Sweeney +1594805,Choresh Wald +293882,Pierre Leroux +69759,Apichatpong Weerasethakul +19244,Michael Winner +1417843,Tyler W. Gaisford +1667243,Mary Beth Ramsey +24508,Rodney McDonald +1408664,Hannah Scheel +29653,Nicki Balch +62746,Graham Purcell +1749139,Guido Reidy +1855067,Jason Wheeler +128107,Gianni Amelio +13668,Sara Risher +959193,A. Roland Fields +1414178,Scott Guitteau +1625927,Jeff Enneking +62723,Stefan Sonnenfeld +1038016,Nina Menkes +1440299,Brad North +125398,Leslie Arliss +4276,Georges Bermann +1401816,Judy Alley +91992,Stephen Geller +73076,Florian Schwarz +37498,Ricardo Muñoz Suay +1780715,Jennifer Freeman +513,Jonathan Gems +1841487,Antoine Compin +936470,Leri Leskinen +121479,Carlo Bernard +79249,Dave Gare +71927,Cristina Pastor +1817626,Tricia Sherwood +14857,George Froeschel +66117,Don D. Scott +57753,Jerry Tokofsky +138107,Dennis Palumbo +1361674,Robert Hillman +7147,Okowita +1803792,Cheryl A. Stone +1117591,Yannis Tsitsopoulos +68356,Kevin Hayward +1571783,Keri Moorhouse +1170213,Philip Klein +1347915,Marilù Parolini +95833,Robert Janiger +1462625,David Stephan +71548,Peter Sollett +1586381,Stanton Cruse +6995,Richard Comeau +1767052,Jerry Liew +135104,Jack Ruggiero +1596537,Bin An +3429,Jane Musky +70526,Ludovico Einaudi +34077,Reggie Lanning +42378,Rob Sitch +1767059,Marc Ireland +58313,Stephen Lovejoy +1707455,Stanley H. Polinsky +12741,Hermann Haller +1404213,Andrea Eliseyan +1401731,Diana Giorgiutti +17393,Pierre Milon +1492133,Ana Cuerda +603,Leslie McCarthy-Frankenheimer +1391712,Lenny Holmdahl +103052,Maurizio Garrone +1403440,Yann Delpuech +1603312,Eddie Avila +61865,Denis O'Brien +1406051,Jonathan Wenk +5143,Barry Morrow +1340084,Sam Ruman +507,Josh Friedman +1604012,Maria Criscuolo +1054,James Fritch +1821192,Dan Akers +8887,Jerry Grandey +1394761,Nadine Thouin +931951,Samuel Gray Anderson +20204,James Vanderbilt +2764,Malcolm C. Bert +964601,Leigh Leverett +59773,Hael Kobayashi +138676,Bonita Money +39191,Emmanuel Machuel +551668,Du-Che Tu +1393015,Joe Ksander +5556,Giuseppe Ruzzolini +17081,Manuel Cuotemoc Malle +68328,Moon-Tong Lau +11014,Ross Fanger +3428,Howard W. Koch +1537139,Sara Bolder +1854996,Roseann Milano +1395361,Steve F.B. Smith +16236,Susana Sánchez +1487474,Jean-Claude Cabouret +591883,Dick Halligan +78196,Ethan Erwin +114284,Marty Holland +89212,Brian Gilmore +12081,William Steig +67478,Janet Greek +1204208,Russell Currie +240177,Raymond Wong Pak-Ming +103507,Wiard Ihnen +1080811,Kiyoshi Shimazu +58471,James Dyer +57837,Nicolas Brown +1467601,Gail Singer +1633949,Tim Gonzales +1043954,Donald Rosenfeld +1335163,Jan Burda +1320210,David Hindle +35734,Aaron Seltzer +1493680,Ikuo Kogiso +1452319,Nick Kelsh +56683,Bryan Adams +20107,Simon Holland +1483854,Kazi Kopecka +1433977,Gerald T. Nutting +1334515,Liviu Marcu +1080810,Hisao Itoya +23964,Gary Ross +54442,E.M. Forster +1046353,Eddy Moretti +49923,Frank D. Gilroy +1685989,Henry W. Sanicola +11425,Graciela Mazón +1463693,Troy Anderson +45294,Lars Canty +1532757,Carla Farmer +1789636,Carl Fortina +6851,Anna Hill Johnstone +53902,Bryan Venegas +1361069,Robert Saba +20297,Thomas J. Nordberg +96694,Sergio Moure +1624058,Juan Olmo +1416438,Rebecca Robertson +1404215,Gregory Hainer +1665502,Louis La Rondelle +113032,Wayne McLaughlin +1438597,Iesza Jessica Jordan +1335586,Paul S. Fox +15842,Dov Hoenig +18458,Jon Danniells +52790,Eric Reid +14524,Rafael Suárez +1607639,Marina Roberti +63595,Joe Oppenheimer +552421,Phasiri Panya +71338,Holly Goldberg Sloan +1454661,Jason Lynch +1077688,Leo K. Kuter +1537022,Roman Załuski +108014,Tokuhei Wakao +1457930,James Baker +1403617,Charlotte Mickie +1653576,Arkadech Keawkotr +1268981,Matthew Gratzner +1482882,Simon Guilbault +144066,S.J. Perelman +2046,Bert Lovitt +109839,Lois Eby +1722224,Leah Katz +70128,Masato Hara +16465,Chris Blunden +1575288,Yûji Hayashida +35176,Jeffrey Ford +599,Marci Liroff +1190778,Ted Moser +388770,Jeffrey Stern +1536560,Clay Rawlins +796,John M. Dwyer +1229721,Joel Oliansky +3950,Len Wiseman +89541,Richard Bird +1397807,Ana Martinez +87510,Carlos Sorin +1347730,Sandy Hamilton +67491,Matt Clifford +961298,J.S. Westmoreland +1452631,Alan Boucek +1462681,Dan Heder +8084,Brian Green +81107,Toshiaki Toyoda +80172,Marty Callner +30634,Armando Trovaioli +1396507,Cam Wagner +15541,Melinda Launspach +1455304,Per Nyström +15847,Terry D. Frazee +115726,Mark Anthony Galluzzo +8864,Karen Rea +81542,Bill Liberman +21600,Lukas Heller +68645,Alma Macrorie +3118,Russell Gray +54726,Ted Haigh +1638069,Patrick Roark +1448070,Jason Stalman +50559,Natalia López +66672,Forrest Carter +1286724,Toshiki Kameyama +1015,Sisse Graum Jørgensen +68219,Russell Lee Fine +1207062,Paul Skemp +8308,John Graysmark +13435,Kathe Klopp +930791,Herbert Brenon +1817656,Jonathan Scott Miller +1317269,Cliff Cunningham +1457038,Robert Ramos +952485,Ted Lloyd +102338,Marc Siegler +6801,Michael Seirton +1428267,Ian Watermeier +67480,Suzanne Sternlight +60226,Corbin Bronson +1398872,Dan Schmit +83198,Allan Arkush +1425588,Caoimhe Doyle +46587,Jon Krakauer +235143,Melvin Clay +1551651,J.P. O'Donnell +8172,Bruno Coon +8686,Sacha Gervasi +1574667,Linda Strause +1786674,John Srednicki +1418816,Jason Waide +1537386,Oldrich Okác +65637,Bernard Schwartz +29824,Dorissa Berninger +1520950,Alejandro Vázquez +347,Tom Rooker +1393869,Alex Hudd +77968,Gudny Hummelvoll +1870767,John Janusek +53935,Dito Montiel +1413943,Nigel Hillier +1597190,Tony Swatton +53810,Robert Getchell +15528,Steven Kirshoff +29011,Tim Rasmussen +19378,Jean-Marc Fabre +1417675,Jack McConaghy +1433716,Byron Miller +144592,Eugene Solow +21611,Peter Rodgers Melnick +5910,Jasna Stefanovic +56154,Antony Hoffman +78011,Howard Jonas +1846052,Greg Kachel +589968,Bruce Hamme +1761061,Orlando Avila +1545168,Chris Fogel +1360050,Jacques Renard +1897877,Mary Kay Jensen +1412452,Kelly Cabral +52733,Judy Tossell +7733,Bruce Robert Hill +70712,J. Gurr +67048,Wong Wing-Hung +87536,Kim Yeong-cheol +1007435,Towako Kuwashima +55955,Randy Bricker +2663,Jack Warner +1441266,Marnie Ander +1405239,Mike Proudfoot +47066,Anders Nylander +79183,Kate Rose +1306896,Fédote Bourgasoff +1551531,Francesca Tolot +10903,Henning Molfenter +15588,Jennifer Kernke +1584249,Jamie Crooks +29352,Artie Butler +1544432,Thierry Valletoux +15671,Fred Coe +568641,Beau Baker +20784,Lloyd Segan +1681352,H. Leah Amir +1418398,Will Arnot +6483,Ernest Tidyman +957874,Jonathan Rothbart +1603308,Richard Katzenson +72225,Mark Twain +1399116,Robert Shoup +1720841,Stacey S. Clipp +71473,Richard Wagner +4526,Thomas Wöbke +1740448,Mike Schwake +101090,Hans Baer +56839,Andrei Boncea +127200,Ernst Fegté +59527,Danny Stepper +1555653,Mike Hedges +94919,Keith Bell +56350,Tom Luse +9321,Leslie Morales +66106,Catherine Ryan Hyde +3931,Katharina Held +66775,Liang Yusheng +111870,Marc Rosenbush +1497384,Lewis Brown +13436,Stephen Abrums +1870695,Derick Tortorella +9034,Michael McDonnell +1409819,Angel De Angelis +1400506,Lisa Tutunjian +19099,Frank King +1322140,Réal Proulx +23415,Karen L. Matthews +12384,Lin MacDonald +1401718,Katie Goodwin +958242,Craig Lathrop +1407014,Gerald DeTitta +52608,Vanessa Coifman +1144119,Tuomo Hutri +45119,David Collins +5398,Dino De Laurentiis +11963,Óscar Dancigers +6057,Renée April +1450350,Heiko Drengenberg +551821,Tomoyuki Tsuruoka +1039560,Miklós Lente +1476557,Theda DeRamus +563341,Nir Bergman +107926,Philippa Goslett +225033,Eliseo Alberto +1889079,Janne Åsäter +39009,Joseph Losey +131266,Hugh Brooke +1465968,Anthony Gasparro +45055,Andrew Hulme +10677,Dennis Bosher +590303,Christopher Bevins +85762,Jack Milner +60860,Shainee Gabel +1575989,Alan Chesters +21323,Lori Mazuer +962731,Anthony Ianni +1408293,Linda D. Flowers +102631,Victor Ostrovsky +1413952,David Seaton +1213436,Terry Nation +1727278,Bernadino Nardoni +928942,Steve Maslow +1801308,Matías Martínez +52258,Franco Fraticelli +1433625,Cathy Doubleday +1446988,Wendy Richardson +1842599,Shirley Kirchmann +1732,Mark Warner +1877133,Charles Montoya +1430276,Ian Jones +1551221,Jim Sheldon +1149267,Roger Olkowski +1153746,Elyne Mitchell +1423866,M. Todd Henry +1470182,Roy Bryson +1678645,Mark Jackels +79138,Keith Hayley +1113507,John Flagg +10181,Marjory Cornelius +119423,Don Spencer +10852,Conrad Smart +1399505,Perry Hoffman +1424635,Dan Best +958941,R.H. Bassett +545536,Chan Man-Keung +1170031,James Herbert +12019,Robert Nelson +1418817,Sophie Siomos +1336632,Jean Mottet +1440306,Gala Autumn +1459657,Geoff Stradling +150861,Peter Tomaszewicz +30923,Christopher Challis +1325907,Kelvin Humenny +86410,Sandy Roth +23397,Luc Barnier +1449508,Susan Alschuler +1453498,Shane Prigmore +1160543,Michael Mewshaw +553223,Hall Caine +1147907,Lizzie Dixon +1551977,Jean-Louis Lebras +47203,Murray Gold +75116,Nick Wall +168328,Jane Clark +339,Brian Grazer +1342241,Eugene McCarthy +6826,Peter Zeitlinger +1523408,Lisa Kent +32588,Paul Rudnick +60221,Steven L. Wagner +1780705,Don Weinger +941820,John Tintori +1562595,Tom O'Donnell Jr. +12952,Christopher Hampton +7050,Richard Conway +4648,Boris Michalski +47285,Broderick Johnson +541,Chris Lebenzon +1475766,Verena Coleman +137610,Rein Kotov +65381,T. Coraghessan Boyle +1739971,Chris Tedesco +9042,Sara Andrews +1040011,Roger Q. Denny +17230,Julie Costanzo +62240,Rob Merilees +586330,Tony Cronin +120899,Ki-min Oh +1422412,Ron Bolanowski +1120539,Alice Yeung +80961,Suzanne Lauer +1125191,Garth Pappas +125561,Richard Schweizer +1656415,Florence-Isabelle Megginson +1173438,David Garrett +24897,Jan Grandys +1500145,Tony Hall +1399999,Michael Levine +1586335,Helena Steidlova +119178,Béatrice Kruger +1473811,Joanna Kennedy +1760138,Sergio Jara +1106829,Evan Webber +49450,Sergio Corbucci +1608190,Hideo Matsuyama +13563,Norman Jewison +11204,Pierre Grunstein +89850,James Griffin +1136463,Hans Uhlig +131410,Art Lloyd +1169890,Gilbert Frankau +8042,Andrew L. Schmidt +1555193,Johanna Turner +1179040,Bill Constable +10185,Bert Bates +1378825,Dawn Brown +1610050,Radoslaw Rekita +71131,Miroslav Hájek +1404541,Craig Fikse +1193920,Ken Liotti +1403528,Joseph Grimaldi +1409751,Ingrid Kenning +1568647,Bob Munoz +29758,Arthur Johnston +144295,Flannery O'Connor +56632,James Seymour Brett +69943,Benjamin Legrand +1415012,Trevor Adams +1212336,Andy Heyward +128100,Walter Farley +32075,Jean-Jacques Caziot +30859,Don Day +69635,Stanislaw Zylewicz +10905,Charlie Woebcken +42380,Tom Gleisner +1019068,Louis Garfinkle +109843,Samuel Bischoff +57857,Brian Witten +29503,Maurice Rootes +52192,Alec Hirschfeld +1497,Irving Thalberg +40764,Axel Kahnt +21615,Charles William Breen +1586642,Maria Murgu +43145,Brendan McCarthy +26976,H.F. Saint +1308983,Louise Runge +7231,Neil Travis +70849,Jatin Pandit +1691209,John Trujillo +1441329,Michael A. Webber +1465629,Jill Eden +1401671,Diana Freeman +81035,Chukiat Sakveerakul +56981,Franco Battista +37780,Miodrag Nikolić +1404711,Perry Battista +57269,Dominic Muldowney +54898,Thomas Kist +1598755,Christopher Brown +1572605,Manuel Komroff +85122,Noah Blough +1734780,Barron Kidd +1733751,Cyril Contejean +1447148,Mark G. Soper +1615564,Kevin Gollaher +1463140,Martin Samuel +27922,Joe Strassner +1749140,Paula Gillespie +1212587,James Head +1127814,James A. Janowitz +1808984,Akira Inoue +1881573,Tracy Takahashi +1306326,Cerith Wyn Evans +1836317,Lisa Demaine +554582,Bayard Johnson +38545,Phillip Johnston +1335069,Kevin Hannigan +578790,Frank Bayer +1192644,Steve Mathis +115354,Jimmy Greenway +1563430,Raul A. Bruce +16748,George Duning +1830639,José G. Donado +18079,Mary-Jane Reyner +146867,Shogo Muto +117202,Erwin Godschalk +14771,R.A. Rondell +1207982,Pamela Cuming +26191,Stephen Hilton +1713392,Eric Powers +1050713,Sudhir Pragjee +1409283,Alex L. Worman +1120447,Grzegorz Loszewski +1536616,Jerzy Szeski +310,Ronald Sanders +1840846,William Haines +9586,Chester L. Bayhi +70669,Tokusho Kikumura +1014789,Judy Lee +445708,Keith Walker +83076,Bryan Hill +57572,Richard Sakai +23972,Leslie McDonald +42628,David Smilow +1809090,Ron Ash +1628998,Andrea E. Weaver +1356952,Clark N. Anthony +1188579,Marie-Charlotte Moreau +1441382,Jane Hassinger +1646349,Mike Revell +23491,Roxana Alexandru +22433,Steven J. Wolfe +1552178,Mike Miller +41709,William E. Snyder +1521696,Luis Schoeder +957990,Monty Westmore +1038271,Mac Chew +1406792,Deborah Wuliger +1452751,Stewart Hadley +30939,Tony Sforzini +51483,Julien Seri +57437,Hans Bauer +1485649,Frankie Campbell +48498,Mickey Liddell +1416054,Elle Elliott +72102,Bill Block +70335,Chen Ching-chueh +1572039,Mary H. O'Connor +1544378,Mariana Andreescu +1639049,Lamberto Marini +1551668,Suzanne Hodson +7017,Roger Michell +5547,Roger Ford +17046,Gary Winick +14194,David D. Johnson +19663,Austin Gorg +62813,Kirk M. Morri +91811,Norman B. Schwartz +137392,Nickolas Perry +3276,Roger Mussenden +6919,Donn Aron +1163706,Michael McDonough +22043,Russ T. Alsobrook +25454,Christopher Paolini +1418486,Peter Hutchison +1360102,Kira Smith +1334517,Tommy Lockett +1339123,Jack Dusick +1423019,Joanie Blum +1409403,Lucian Diaconu +54895,Michael Paszt +109699,Frederic Ullman Jr. +40600,Irving Lippman +1092636,Inga-Lisa Elfström +16577,Phil Chong +1310229,John W. Harkrider +44848,Angelo Pizzo +1460511,Miri Yoon +42035,Sean McCormack +55280,Michael Proehl +56859,Mark Bishop +1319158,Joulles Wright +9619,Skip Lievsay +1546259,Adolf Braun +1787836,C. Douglas Cameron +15586,Dixie Linder +7417,Scott Jacobson +41910,Claus Hempler +60132,Tara Jayne Rubin +64156,Trevor Morris +120882,Bennett Davlin +91133,Mark Graziano +29906,Gábor Pogány +1420151,Edward J. Borasch Jr +47817,Jean Goudier +85971,Nic Sadler +1307308,Koichi Iiboshi +1687348,María Abelardo +224443,Léo Lania +1174323,Steven E. Carr +2103,Mark Rosenthal +79169,Andres Lokko +1226,Rick Heinrichs +1475003,Chris Soldo +63429,Kwak Jae-yong +1399490,H. Nancy Pak +1463386,Walter Zieska +1120219,David Geeves +78188,Whit Stillman +1087443,Sven Walnum +2044,Peter Levy +109752,Robert Redlin +19689,Paul Schnee +1761065,Scott C. Keys +1571109,Zsuzsanna Borvendég +475,Tatiana Lund +1545949,Margaret Hilliard +23788,Matthew W. Mungle +8858,Ivan Reitman +1108686,Yoshie Hamada +1842589,Chiara Allegrucci +4100,Adolph Deutsch +1532249,Cynthia Barr +141303,Jeffrey M. Werner +103396,Philippe Arthuys +56416,Gina Resnick +1617586,Eva Muslera +1114201,Roberta Findlay +1333240,Ned McLoughlin +52989,John Penotti +1673596,Steve White +31059,Alastair McIntyre +144221,Brad Furman +114680,Heikki Metsämäki +9551,Laura Jean Shannon +58015,Ricardo Mestres +1033804,John M. Stephens +32055,Piero Tosi +1395059,Ben Scott +1447467,Karen Hamrock +1231084,Scott Baldyga +9352,Scott Andrew Ressler +18600,Kazuji Taira +20036,Jorge Müller Silva +76279,Flip Kowlier +1174175,Aleksandr Khanzhonkov +1393551,Ray De-Haan +67533,Caroline Eliacheff +1375216,Robert Ives +135238,Kazuya Hamana +9616,Mary E. Vogt +1047730,Jay McInerney +54962,Kuen-Il Song +1378453,Lisa Varetakis +136508,Reuben Bercovitch +2185,John Watson +1046566,Sandeep Sen +1397737,Geno Hart +1106425,John Pardue +12921,Jeff Arch +63646,Frank Thomas +1484517,Not Drowning Waving +108912,Carol Axler Turner +1377224,Helen Elswit +1462577,Cameron Baity +123765,Adriana Falcão +871,Louis R. Loeffler +1080824,Taro Takahashi +1870765,Charles Henri de Pierrefeu +4869,Craig McKay +1393275,Pat Garrett +1046115,Peter McNulty +1434205,Dennis J. Parrish +1708269,Martin Beaudry +1391759,Denis Hamel +1611816,Al Overton +120893,Ellis Kadison +1571780,Glenn Cotter +1724252,John Suhr +1317044,Leslie A. Sebert +1503,Willis Goldbeck +55480,Damian Jones +62755,Don Tait +84108,Otis Best +20028,Danis Tanović +1157342,Leif Erlsboe +73106,Dennis Edwards +1449180,Jerry DeBlau +14099,Tracy Tynan +4438,Manny Siverio +1603331,Brian Robinson +70052,Claire Rudnick Polstein +1739562,Grady Campbell +1492942,Nicole Hilliard-Forde +1606877,Roger Scipion +11229,David Evans +1779877,Vincenzo Nisco +76261,Diego Deceuninck +65751,Claudio Argento +70110,Alan Yuen +1827961,Scott Hoffman +16321,Arrigo Colombo +81327,David Nerlich +1532396,Robin Urdang +1529009,Alan Senior +1877112,Carol Autenrieth +38577,Eugene Musso +8931,Steve Abbott +109000,Lester White +1531578,Abby Nelson +136186,Michael Lewis +84940,Crane Wilbur +993536,Larry Madaras +1448037,Carles Burgès +792,Bruce Surtees +1437606,Ellen Hammill +92394,Richard Cory +1182969,Ursula Curtiss +1807707,Camille O. Cosby +1492135,Paca Almenara +74811,Dan Wallin +1522047,Walker Hicklin +1473182,Elizabeth Greenberg +927620,Ray Cory +12278,Julian Blaustein +1412227,Glenn Hoskinson +29153,Robert Herlth +8819,Billy Bitzer +141826,Daryl G. Nickens +16363,Nina Gold +1415188,Vladimir Popovic +1646348,Cate Engel +1341396,Jon Scott Strotheide +1645448,Lee Millham +31501,Arthur J. Ornitz +50216,Tree Adams +7068,Sheldon Kahn +1555216,Ross Bradshaw +30266,William Cagney +9333,Debbie Zoller +50715,David Michael Frank +35140,Catherine Mann +1475773,Scott Slimon +1724241,David Monzingo +29230,Kevin Hood +1531911,Claire Dodgson +14250,Peter George +47051,David Weissman +57634,Mary McLaglen +1436238,Rowena Ladbury +1557588,Mark Franco +1500960,Anna-Lena Wibom +1462621,Jesse Lickman +1546557,Patricia Gundlach +1408365,Brenda K. Wachel +40312,Raoul Peck +1393580,Marcos Gonzales +76230,Diane English +1566253,Ken Jones +1286327,Ian Hall +227360,Kimberly Greene +931,Douglas Wick +1405809,Raymond M. Samitz +292876,Bryan Lewis +1386903,Jeff B. Adams Jr. +1536620,Leonor Fini +960531,Randy Eriksen +2352,Jean-Jacques Annaud +45829,Trevor Short +1730033,Lal Harindranath +37503,Pedro del Rey +45459,Mike Cahill +1535948,Beulah Jones-Black +143897,Dean W. Miller +548474,Wong Jing +35020,Richard Piers Rayner +53471,Belle Avery +1204324,Joseph McBride +1815885,Doug Botnick +12734,Friedrich Dürrenmatt +5059,Leslie Dilley +1876049,Jørgen Jersild +1551666,Tom Calderaro +124829,Daragh Carville +6011,Michael Haneke +54283,Sylvestre Guarino +1613970,Stephen Lotwis +1526468,Kimberly Covate +1344243,David Graham +1004836,Steven M. Rales +1323760,Suzi Ostos +1437894,Kultida Punfuk +4320,Sam George +1533037,Jillian Giacomini +1856489,Nick Santeramo +32260,Angus Hudson +58249,Fred Myrow +1569566,Christopher Woodworth +1597200,George Koran +11620,Larry Fulton +1404218,Myron Nettinga +113736,Giordano Gederlini +47086,Norbert Jacques +17387,Robin Campillo +1490604,Kathie Weaver +15261,Svetolik Zajc +1327030,Lora Hirschberg +68227,Steven Feinberg +1369451,Frank McCoy +17668,William V. Skall +16322,Giorgio Papi +38804,Lydia Dean Pilcher +1377126,Flash Deros +1440885,Milton Lustig +1176,Lone Scherfig +1798,Gayne Rescher +25140,Sharon Seymour +70719,Borden Mace +35144,Mayin Lo +1605166,Margaret Carnegie +1378170,Donald O. Mitchell +10666,Barbara Broccoli +1400813,Dianna Stirpe +1620012,Brandon Craig +1304271,Rick Baer +1334725,Jessica Harris +1387711,Yoshiko Miyamoto +1405321,Margot Boccia +1355987,Judy Rothman Rofé +36807,Ross Clydesdale +1096345,Taylor Knight +1397275,Lili Marchenski +1424174,Matthew Hendershot +5592,Ulrich Kodjo Wendt +9026,Francesca Lo Schiavo +1406829,Drew Webster +1767007,Richard Boucher +1463245,Fred A. Reilly +1404366,Thomas Jones +38020,Michael Siegel +75903,Craig Harnath +1399519,Jacob Robinson +15890,James Foley +172993,Rose Troche +1438616,Phil Jones +14086,Sajid Khan +1394756,Daniel Sauvé +71926,Mariela Besuievski +1521770,Phillipa Sledge +133237,Ian Dalrymple +58095,Louisa May Alcott +18838,Barbara Alberti +15435,Randall Balsmeyer +9182,Marshall Herskovitz +1397817,Randy Severs +80728,W.R. Burnett +1550618,Aaron Pazanti +109888,Olivier Adam +1034749,Lis Kern +47974,Bob Spiers +48069,Michael Stearns +1384895,Chris Miller +5706,Robert Doudell +936701,Jack Scholl +1445370,Nelson Ferreira +2528,Donald B. Woodruff +84373,May Ying Welsh +1002601,Lisandro Alonso +1562259,Bill Talbott +1300336,Lindy McMichael +15282,Matt Battaglia +1192007,Linda Phillips-Palo +113089,Dennis Rogers +1398963,Susan Zwerman +4132,Joan Alison +67595,Alix Tidmarsh +939459,Priscilla Bertin +13233,Jason Kliot +43143,Arthur Lappin +12996,David Magee +1493678,Yûji Nagashima +131131,Ernest Neuville +1538138,Mary C. Lane +1401801,David Stinnett +1613658,Ryuichi Suzuki +11435,Howard Hawks +1444238,Danny Wagner +46366,Shusuke Kaneko +1383415,Jack Stubbs +96369,Carlos Saura +40345,Don Bluth +1526851,Fabian Garcia +1327912,Sandra Kybartas +237583,Juan Martínez Moreno +1581164,Reinhild Gräber +81743,Josée Deshaies +23808,Mathias Neumann +19000,Wayne Kramer +1399863,Joe Pancake +1767324,Chad J. Hellmuth +1467186,Anne Stuhler +1462342,Khadija Zeggaï +1615292,Diana Wakeman +1421270,Kate Laver +94236,Judy Carroll +544700,Ján Kadár +1573110,Thomas 'Doc' Boguski +1174322,Todd Henschell +14258,Arrigo Breschi +6878,Kevin Ishioka +3285,Seamus McGarvey +1358325,Sokei Tomioka +6481,Margaret Goldsmith +1113357,Sylvia Fay +62416,Leonard Ho +38652,Marc Rosenberg +15811,John Musker +1489957,Terry Miles +138765,Giuseppe Mangione +46934,Monique Teisseire +1864216,Richard Hoffenberg +75296,Angela McPherson +1355356,Margaret Clancey +932008,Léopold Marchand +107376,Paul Gertz +1889076,Lisbeth Jansson +62908,Clinton Shorter +1395901,Shirô Fukai +46602,Fred Weintraub +1143388,David Stoten +1697623,Steve Harding +1115029,Kenkichi Hara +548444,David A. Whittaker +1402096,Peter Robertson +1599614,Marie Healy +1402216,John Adams +1494831,G.W. Berntsen +1399569,Iulian Pana +20135,John Palmer +87170,Bob Richardson +20600,Daniel Taradash +94305,James Cruze +1455311,Lotta Westberg +1851727,Wendy Jerde +1294317,Jirí Lenoch +1196803,Bertrand Levergeois +1767011,Bryan Riley +1551745,Tomiji Shimizu +17001,Bertha Navarro +3121,Elena Maganini +664,Frank Marshall +44545,Hillard Elkins +53757,Eric Kopeloff +67065,Arlene Sellers +66551,Rebecca Hale +9774,Kathryn Peters +21919,Willy Kemplen +1899130,Louis Bitzer +6392,Beatrix Aruna Pasztor +1462619,Peter Lee +1559186,Gary Roberts +1397853,Laura Hodges +1337460,Bertrand Roets +51767,Gene Fowler Jr. +1219528,Carol Flint +93007,Ernest 'Tron' Anderson +1140591,Claude L. McDonnell +1673003,Matt Baker +1552865,Kent Melton +113290,Wiebke von Carolsfeld +1391597,Michael Adkins +46318,Edward Tang +32454,Jürgen Schnell +1460588,Hauk Olafsson +87374,George Bruce +1400082,Zade Rosenthal +1164963,Maamar Ech-Cheikh +65096,André Bac +64116,Stanley Roberts +39595,Richard Guay +1474243,Hans-Eric Hellberg +6411,Deborah Riley +1465595,Verity Roberts +1752658,Cara Fay +2766,David Weisbart +1734493,Michael Courtney +1077739,Doris DeHerdt +1345597,Tobias Poppe +62688,Julia Verdin +1406780,Brian Heller +62058,James Greer +1432028,Kokayi Ampah +31931,Malcolm Cooke +1407884,Christine H. Luethje +23914,Bud S. Smith +1115473,Penelope Gilliatt +22669,Julien Temple +107565,Will Weaver +93159,Lindsay Law +1462688,Christopher D. Lindsay +70567,Robert L. Lippert +1585197,Darrin Denlinger +1158708,Edgar Bold +1877377,Bob Allen +2424,Pierre-Jacques Bénichou +117990,Tim McGrath +1725884,Steve Blalock +1458759,Sabrina Rosen +66765,Fung Chi-Wai +1105489,David A. Davies +1661560,Olivier Lhoste +6891,Andreas Grosch +94235,Jonathan Barker +1526512,Seth Copans +29732,Jules Kruger +34007,Nik Powell +73176,Peter Windgassen +113044,Gloria D'Alessandro +3055,David Mackenzie +1140576,Michael Parks +1046572,Debajyoti Mishra +1398092,Gréggory Poncelet +39814,John Brady +548451,Jeff Wells +1546101,Tammy Fearing +119773,Donald L. Bolger +958515,Eugene Grossman +142625,Hermes Pan +56004,Andy Summers +558896,Julius LeFlore +132604,Andy McLaren +63127,Steve Clark-Hall +1393406,Danny Mortenson +57205,Adam F. +41300,Axel Schneppat +1405235,Kerry Dean Williams +13723,George Gaines +1648268,Fernando Beltrán +13194,Curtis Lindersmith +109994,Gregory Alpert +1179041,Ted Samuels +21933,Happy Walters +1586640,Louise Hone +1341141,Earl Ghaffari +1260,William A. Elliott +8619,Franz Waxman +1021404,J.P. Spohn +62015,Jerry Leichtling +1239412,Colin Callender +40815,Hugo Adams +590839,Lise Thouin +6934,George Milo +41626,René Hardy +1120713,Ramón F. Suárez +960477,Roger Kass +43157,Jennifer Hegarty +937775,Roger Cardinal +116103,Bill Couturié +1866818,Paul Lavigne +66219,Mark Levin +551927,Nancy Israel +1049324,Samuel Lehmer +1531026,Nathan Levinson +113658,Mary Keats +43796,Tristam Cones +15332,Mark P. Stoeckinger +63674,Kate Lacey +14511,Fred Fleck +101773,Joseph L. McEveety +60453,Eric Weiler +7687,Sam Comer +6880,Robert Gould +44126,Christophe Lautrette +18669,J. Lee Thompson +67975,Jon Feltheimer +1411841,Rif Dagher +32188,Bob Mark +1445977,Nancey Pankiw +1587380,Frank J. Ellison +2624,Richard Pagano +65711,Gary Fettis +1676656,Roger Joseph Manning Jr. +66167,William C. Carruth +29807,Garrett Fort +1233745,Johanna Pigott +113601,Jerzy Hoffman +107721,Aleksandr Voytinskiy +1530374,Zenzô Matsuyama +12686,Deborah Brown +1087075,Hal Klein +67653,Henry M. Lebo +73141,Shozo Ichiyama +1552331,Alicia Johnson +1095444,Jock May +1394762,Jerie McBride +1012174,Su Friedrich +1190664,Steve Dunn +41754,Hans Peters +33125,Shirô Moritani +22485,Linda Pearl +1485666,Gregory J. Barnett +117851,S.K. Lauren +1821634,Simon Downes +1307017,Bénédicte Bellocq +103677,Theodore Lydecker +1015789,Ken Gord +66731,Nick Morris +70111,Anthony Pun +60055,Karen Margiotta +1415500,Kim Marks +57570,Bridget Johnson +1346934,David Warren +1168914,Ryan Perez +1567300,Christopher Richards +53276,Galt Niederhoffer +1605721,Michel Meller +1183663,Jerri Sher +51869,Gersha Phillips +1620010,Bruce Pross +1635088,Edward King +61923,Matthew Kuipers +57630,Peter Cattaneo +22038,Carey Hayes +1413451,John Leveque +1840077,Dan Monroe +17425,John Hamilton +21940,Pierre Bechir +54972,Dan Gordon +1031664,Beatrice Sisul +26763,Oliver Wong +982224,Marianne Moloney +79047,Regev Levy +1090073,Giancarlo Zagni +112674,Rolf de Heer +1615536,Jason Oremland +1588462,Brian Elvin +1313818,Isabel Rose +9558,Joey Box +552384,Chow Gam-Wing +18754,Lewis M. Allen +1671051,Charles Burke +1324884,Frank Perry Rose +33009,Yoram Globus +144410,Won Tae-yeon +968264,Shane Harvey +1460442,Eddie Rosas +7492,Ron Fortunato +1429250,Curt Pair +1194423,Ransom Rideout +1558107,David Pruiksma +68772,Keith Giglio +1400847,Candace Neal +75117,Julian White +1392145,Joe E. Rand +1122007,Alice Clough +1072007,Barbara Ronci +127531,Song Hae-sung +75380,Robert Jackson +1412601,Dimitrina Stoyanova +1565944,Michael Cassidy +69510,Ann Marie Sanderlin +1597210,Debbie Rothstein +1613203,Brian A. Alexander +15894,Tom Myers +25751,Benjamin Robin +6095,Michael Gutmann +936191,Frank L. Thompson +17704,Tom Trambow +1461397,Daniel Hu +30265,Edmund Joseph +70044,S.N. Behrman +1325690,Joshana McMahon +1644480,Chris Allen +1733790,Julien Bourdeau +68692,Timothy J. Nicholas +27180,Paolo Lucidi +1309330,Keinosuke Kubo +1401995,Russell Ayer +1035047,Tania Polentarutti +2216,Gary Rydstrom +143019,Peter Luisi +1611761,Doris Zinkeisen +929975,James Yosuke Kobayashi +125895,Julien Perez +1272858,Alphonse Blumenthal +594,Jordan Cronenweth +1252225,James Flynn +1406920,Eddie Butler +27436,Costa-Gavras +58408,Jordan Kerner +1521777,John Canterella +66529,Chad Gomez Creasey +1447162,Christian Biron +1400325,Michael Kalden +7467,David Fincher +37594,Robert Schulenberg +35499,Ron Hobbs +1409543,Stéphane Brunclair +1537516,Amy Harmon +1413006,Jesús González +18747,Samuel D. Pollard +51689,Stan Wlodkowski +964768,Mary Viola +1872839,Louise Krakower +140354,Ulu Grosbard +953512,Abel Nahmias +59958,Jamie Blanks +1551259,Jeffrey L. Sandler +1616175,Parvu Mihai +1483227,Andy Lomas +1184835,David S. Horsley +1827365,Walter Sheets +1394117,Jennifer Lewicki +54472,Martin McDonagh +1649578,Pichai Chantinmatorn +17146,Tim Suhrstedt +556846,Ernie Contreras +2920,Ted J. Kent +1392909,Thomas J. Smith +102641,Jane Schaffer +101427,Thomas R. Burman +1403427,Candice D. Campos +80680,Chris Kennedy +48493,Stephen Zotnowski +1433708,Carolin Spill +1551968,Werner Ahrendt +117197,Steve Ecclesine +1188796,Todd Calvin +1405209,David Jones +91853,Frank Bianco +1621955,Will Cox +43098,Andre Sikojev +1117874,June Lee +46283,Berto +1389588,Tom Jones Jr. +6652,Gunnar Fischer +1553235,David Gabrielli +1815292,Campbell Askew +114886,Rupert Walters +1414984,Adruitha Lee +1149271,Max W. Anderson +1833860,Chip Fowler +1421729,Hitoshi Inoue +63614,Robert Shapiro +1446539,Christopher Horner +1470208,Léo Mac Dougall +15117,Peter von Haller +1065699,Sakari Haara +557904,Paul Novros +11429,Hamilton Luske +550478,Wolfgang Lauenstein +1099090,Angelo Iacono +1536439,Kathy Kelehan +1855779,Michael Battaglia +1571755,Susann Jones +98138,Chuck Cirino +60528,David Collier +41011,Jean d'Eaubonne +1406929,Grania O'Shannon +1406131,Maria Bentfield +1209075,Ville Rippa +1397848,Ken Rogerson +198143,Terry Sweeney +107420,Carolyn 'Cal' Loucks +28623,Martha Ruess +1456041,Oleg Kulchytskyi +1162118,Dorothy Byrne +1672761,Kathleen Bennett +61021,Sara Schiff +117214,Stephen Barker +1348279,Joseph A. McDonough +1364100,Justin Ball +1582353,Markus Brinkmann +10219,John Shirley +35835,Vernon Harris +38858,Jean-Marie Besset +1662777,Kate Bulpitt +272210,Angus Fraser +19003,Heidi Ewing +16982,Carles Gusi +10446,Frederic B. Blankfein +132607,Joe Bracciale +1115248,Paul M. Leonard +1533060,Andrew Buckland +15042,Arlene Sanford +66641,Franco Di Giacomo +126518,Peimin Zhang +14567,Clifford Odets +1398914,Jan Kodera +69042,Tim Metcalfe +1466762,Robert B. Smith +1823765,Alan Toomayan +46084,Christopher Lawrence +1877107,James Roberts +1297087,Andrew Leggett +1134949,Cecilia Stefanescu +147361,Michelle Spears +72021,San Bao +59637,Rodman Philbrick +1201714,Jean M. Auel +1440847,Christine Lo +1868273,Norman T. Leavitt +1525957,Catherine Gore +74063,Daniel Taplitz +45963,Bernie Abramson +53079,Jeremy Kipp Walker +25799,Luigi Luraschi +9377,Todd Griffith +34954,Nitin Sawhney +1401793,Cyndi Ochs +43850,Melvin Adams +1693275,Takafumi Watanabe +69927,Frankie Blue +4107,Milt Rice +1532726,Jennifer Moller +1870768,Cammy R. Langer +26026,Victor Young +6028,Michael Hudecek +5070,Philippe Miller +1827965,Jens Bacher +7484,John F. Bowe +1199755,Betty Ann Conard +81893,Joseph T. Garrity +57618,Wang Zhonglei +201393,Cliff Owen +59922,Glenn S. Gainor +7932,Rhett Reese +1399931,Aidan Stanford +1355442,Joe King +1192601,Irene Castle +1462603,Antoine Durr +1441250,Dave McMoyler +227945,Stefan C. Schaefer +20040,Nigel Willoughby +1020052,Joshua Blum +68912,Gary Brandner +54602,Gerald Packer +1338976,Andy Nelson +1176480,Liliana Toma +1004103,Zoltán Farkas +982586,André Turpin +1484528,Kaye Gibbons +21796,Sally Thornton +532227,Arturo Ripstein +20681,Muriel Merlin +66876,Charles Evans +21545,Takeshi Kawata +1633614,Elizabeth Kata +989512,Martín Hodara +60322,Allan Niblo +9362,John Willis III +1236954,Jill Gordon +1387710,Gay Partington Terry +9382,Susumu Tokunow +44116,Barry Marder +1434790,Barbara Shapiro +1560814,Renata Magnanti +1412455,Todd Grace +4697,Samuel Hadida +1403535,Jeff Kushner +57543,Pierre Watrin +14340,Battle Davis +1209209,David L. Feinberg +559101,Vincent Lawrence +85150,Jens Lien +12869,John B. Mansbridge +69209,Mike Bender +26356,Jean Nény +1941,Howard A. Smith +14651,Alfred Bruzlin +1319844,Lisa Lovaas +1546882,Michael Evje +1462072,Jean Kerr +1451402,Edwin Matsu +1532594,Fran Allgood +1345618,Alana Stelling +1749923,Jessica Bellfort +1401785,Brigitte Yorke +1199554,Joseph von Stern +18592,Tom Gries +1492928,Robin Peyton +1602859,Nico Bally +10006,John D. Dunning +938041,Darrin Holender +10474,Jacques Fonteray +9022,Redmond Morris +1605485,Isao Takahashi +97012,Barry Weiss +1062685,Robert de Nesle +592190,Angela Mancuso +1577958,Eve Ramboz +132585,Nick Bassett +139045,David Simkins +21903,Kwong Wing Chan +5382,Stacey Sher +120380,Peter Paul Raubertas +13802,Dudley Nichols +32632,Percy Adlon +84737,Adrian Shergold +1407364,Noon Orsatti +52088,Tom Meyer +21004,Denise Wingate +1841643,Gina D'Orazio +1314894,Rocco Matteo +1853277,Sara King +57615,Po Chu Chui +127823,Agustín Díaz Yanes +5839,Robert B. Sherman +46230,Nagisa Ōshima +1623581,Ralph Slosser +1521395,Korey Washington +41018,Chris Brigham +935490,Geoffrey Miclat +77723,Tony McNamara +472,Mark Holding +62635,Terence Winter +138170,Milt Kahl +1568283,Gábor Sarudi +8307,Peter Boyle +35512,Jane Ann Stewart +1455789,Michael Crowe +1413907,Orest Sushko +35972,Mitch Engel +1341854,David E. Campbell +3056,Jeremy Thomas +63433,Han-cheol Jeong +1300,John August +76590,Jinko Gotoh +98003,David Kesson +1905118,R.H. Davies +39879,Dominique Roulet +40440,Todd Stephens +1058268,Jeff Moss +1537720,Sabine Graham +3485,Edgar Wallace +114678,Markku Pölönen +88202,Wlodzimierz Niderhaus +77947,Michael Schroeder +1242498,S. Bryan Hickox +1596291,Stanley W. Pratt +558284,Hector Turnbull +103923,Bernard Carr +57431,Matt Moore +44813,James B. Campbell +1415650,Will Casey +1589,Michael Andrews +1181409,Julie Harkin +1599806,Pascal Mazière +1454544,Eric Forand +43925,Adam Sliwinski +1125188,Marc Sadeghi +67774,Frank B. Gilbreth Jr. +67898,King Baggot +1646880,Kandis Cook +64130,Baxter +72496,Yôji Yamada +1316191,Carlos Menéndez +5552,Stephen McFeely +43410,Anjan Biswas +78082,Harold Loeb +12948,Conrad E. Palmisano +1170415,Lawrence Blume +86290,Derek Jarman +67700,Todd Bryanton +1433748,Tess Malone +55419,Ruth Caleb +57107,Adam Resnick +82498,Gypsy Rose Lee +1554166,Chen Po-Wen +1095227,Roy Campanella +1359434,Tom Rasmussen +1555680,Tom Chichester-Clark +1602166,Jitka Zvirocká +58656,Doug Lefler +2318,Heidi Lüdi +148118,Gregory Bernstein +548408,Selina Jayne +72402,Jane Wagner +1373694,Christian Huband +98501,J. Peverell Marley +8883,Philip M. Jefferies +1307020,Francesca Zucchelli +1590606,Raymond Pied +6469,James Fogle +1602861,Tom Farrar +1526462,Wynona Price +41888,Christopher Sheldon +147652,Brook Aitken +1546261,Heinz Landsmann +1609515,Dorota Sewerynska +1174281,Prabhas Bhattacharya +1217013,Paul Lazarus +1587376,Neil Montgomerie +1600635,Ray Harvie +73049,John Loeffler +1217,Priscilla Nedd-Friendly +1001764,Mitzi Corrigan +14972,Buddy G. DeSylva +1147901,Cecilia Monti +1117947,Josh Campbell +794,Angelo P. Graham +10521,Gordon Jennings +1449500,Gary Bolger +1566433,Shahriar Assadi +1705506,Marguerite James +19452,Steven Cohen +1538365,Anthony G. Schmidt +1057144,Chris Anderson +1448069,Oliver Smyth +965600,Tudor Lucaciu +185443,Charlie Bean +1326717,Kim W. Chow +27001,Erik Lindsay +877,Richard Carruth +1429533,Norto Sepulveda +1584726,Sergey Ivanov +119373,Regina Davis +4649,Damir Richtaric +29218,Judi Cooper-Sealy +58403,Glen Morgan +1204332,Jeff Murrell +4854,David Minkowski +33435,Kerry Heysen +1404852,Will Hoddinott +6570,Urs Furrer +83079,Mike Medina +76206,Rick Bell +1394918,Gregory Pickrell +121201,William H. Lynch +1557162,Jörn Klamroth +1384172,Ted East +1551974,Del Harris +62348,Gavin Miller +64487,John Chong +21799,Jacques Loiseleux +1780707,Annmarie Koenig +1208537,Helen Komar +22301,Liam Lynch +56007,Edward Morey III +1061944,O.V. Falck-Ytter +1377134,John M. 'Jack' Wright +566,Anne Walker-McBay +85769,Alfred Landau +1745243,Nicholas Breslin +1309870,John Wesley Whitton +1562476,Glen Gauthier +1552863,David Goetz +1412578,Louise Mackintosh +1627977,Fred Apolito +76268,Olivier Thys +128103,Patricia Churchill +1386923,Alicia Accardo +33541,Mark Christopher +1538290,Dino Muccio +1558208,Bud Belyeu +36645,Jörg Rothe +4184,Ronald L. Schwary +20037,Mustafa Mustafic +76571,Jannecke Bervel +4701,James W. Skotchdopole +1261,Hal Gausman +587950,William Nolan +31175,John S. Bartley +546,Jeanne McCarthy +69600,Edgar Froese +32993,Robert Tasker +1433941,Klaus Hellwig +545764,Seiichi Yamamoto +12478,Lawrence Nesis +10417,David Levy +1425137,Manichoux +89748,Lindsley Parsons +13140,Jerzy Zielinski +1426762,Nancy Hancock +7513,Raphael Bretton +1471726,John Houlihan +75905,Wayne Hyett +1638372,Rebecca Holmes +62061,Ray Kluga +1640493,Michael K. Davis +1248221,Danny McBride +13838,Jean Rabasse +40750,Stephen Bream +1412745,Ian 'Thistle' Thorburn +1090265,Harry Clork +79176,David Hilton +1566056,Wayne Swingle +1423413,Linden Brownbill +130790,Pete Riski +961544,Don MacAulay +1265577,Benjamin Ball +130701,Thomas B. Costain +71087,Nicolas Chaudeurge +1080863,Dana Ranga +1841910,Ellis J. Barbacoff +1832340,Gabriella Toro +1399150,Sarah Beers +1392737,Sophie Fabbri-Jackson +1765281,Harriet Glickstein +1494597,Joseph Abrams +1602165,Jan Zakora +56908,Rick Alvarez +1453285,Candace Lewis +1491526,Robert Prévost +582563,Nan-hong Ho +1037498,Jérôme Lévy +1532364,Skip Shea +6192,Rita Ryack +35141,Susan Hoffman +1392237,C.J. Maguire +3777,Joseph E. Levine +10340,Maude Spector +1102455,Ben Bartlett +100117,Francis Giacobetti +9345,Michelle McGahey +1556438,Gary Coulter +1717160,Ellen Gannon +1700852,Terry L. Noss +28622,Katharina Wöppermann +83344,Farley Ziegler +1502720,Albino Cocco +57098,Andrew G. La Marca +346617,Jed Harris +970033,Keith Brachmann +101900,John McGreevey +1538218,Erich W. Schultz +118901,Simon Boyes +24187,Jeremy Roush +939460,Franck Ribière +1646185,Joel Hamilton +1231000,Brian Sintay +95843,John Armstrong +1847413,Michael A. DiManno +12264,Léon Barsacq +1607052,Didier Frateur +1404244,John Marzano +1417999,Maria Hubackova +1137903,Sam Taylor-Johnson +959111,Beth Wooke +1354400,Rick Finkelstein +1486159,Santiago Nuñez +1125693,John Nathaniel Raphael +1804884,John Kuchera +42908,Sunil Perkash +17086,Roland Winke +60154,Catherine Stroud +238810,Kengo Ishiguro +9612,Ed Solomon +19450,Bob Rafelson +1615257,Donald Towns +50706,Elisa Bell +8426,Jennifer Shull +758,Bero Beyer +545537,Tsang Kan-Cheung +13780,Harold Hecht +66629,Chris Zarpas +1879208,Debra C. Victoroff +7592,Sergey Selyanov +29244,Hans Rouc +43100,Ringo Waldenburger +59883,Evan Astrowsky +1724257,Paul Brannan +101984,Stanley Black +70672,Vic Schoen +1252447,Julie Taylor +70710,Matyas Seiber +29805,Peggy Webling +1391525,Mario Vaccaro +3562,Rachel Portman +21011,Frank De Vol +24842,Paul Lainé +11232,Ulf Brantås +1531297,Manuel Muñoz +65536,Dodie Smith +1455288,David Becton +122132,John LeBlanc +1449979,Vesna Estord +1552193,Dexter Eneriz +11079,Cindy Carr +11441,Lionel Newman +1128338,Amanda Moshay +1759299,Mitchell Kovaleski +1629468,Titi Warapaskul +29631,Grant Garett +30106,Hilyard M. Brown +1001368,Lauren Zuckerman +9062,Cedric Gibbons +1325049,Kate Morrison +5162,Mark Johnson +1010504,Katherine Hilliker +1521707,Joel López +1562248,Dennis McNeill +1701156,Sheila Pruden +936171,Robert Flaherty +1602308,Christian Eder +19684,Bille August +75589,George Casey +1270421,Kazuo Satsuya +1403083,Jeffrey Schlatter +1553237,Jeffrey DeBell +589662,Allan Scott +12280,Addison Hehr +1436525,Ava Gerlitz +67078,Toshiaki Nakazawa +1095994,Ron Judkins +87267,Francesco Rosi +1394749,Andy Fowler +506516,Sara Kadefors +91912,John Skotchdopole +1318157,Lisa Parasyn +104,Jean-Claude Larrieu +1302,Susie Figgis +1399143,Garrett Brown +1299201,Deborah K. Larsen +1458571,Kerry Warn +1355382,Giuseppe Bassan +24184,Christian Wintter +56721,Italo Zingarelli +1415885,Leonard Cossari +77308,Hunter Weeks +69519,Benjamin Fisz +1352983,Valeria Migliassi Collins +1569460,Sara Bernstein +1803798,Robert E. Knight +1236075,Jeffrey Bell +1603201,Zvonka Makuc +64535,Laurent Fleutot +92781,Matthew Reynolds +44117,Andy Robin +588140,Joe Ma Wai-Ho +83881,Christian Dietrich Grabbe +8890,Ken Speed +2625,Johnny Breedt +56914,Peter Fandetti +16822,Andreas Ulmke-Smeaton +51302,Joe Bucaro III +1812185,Ellen Green +51713,Nellis Du Biel +53025,David Z. Weinstein +1606885,Gösta Ström +11388,Bruno Cesari +12015,Sam O'Steen +11602,Anne-Françoise Pyszora +64118,William A. Lyon +78112,Christopher Dillon Quinn +231537,Bob Smeaton +202,Charlie Kaufman +60706,Jeff Gullo +6479,Sharon Bialy +1404306,Kim Santantonio +153760,Howard Rodman +1455291,Robert Batha +1394961,Daniel P. Rosen +53894,Gina Kwon +1530889,Vincent Youmans +1016176,Amy Hubbard +41911,Slowblow +1125599,Luc Rollinger +1448601,Angie Jones +1242638,Hannah Weinstein +1383096,Juliette Garrigues +1440736,Becky Herron +1893223,Rick Chrisman +1483729,Peter Sabiston +1331896,Domenico Forges Davanzati +1556285,Mark L. Mitchell +56282,Jonathan Craven +93418,Geri Windsor +22100,Hugh Johnson +1401694,Leanne Brooks +11624,H.G. Wells +33254,Jim Gillespie +469,Stephen Warbeck +7844,Michael Blake +1325871,Greg Venturi +1724239,Steve Riera +1891686,Christina Tonkin Noble +92759,Jamie Clarke +96,Gordon McLennan +1335162,Simon J. Willis +1611814,Brad Kanfer +1448078,Charlotte Worsaae +1325580,Ben Lane +26095,John Patrick Shanley +76706,Lorenzo O'Brien +59623,Mary Kane +43097,Nikolaus Weil +1378239,Phil Neilson +92232,Joel Newman +1389570,Marnie Moore +145854,Lucie Aubrac +62272,Kevin Bassinson +7773,Robert J. Miller +1065701,André Gide +91341,Stephen Jackson +1547039,Kenneth Marsten +62877,Mihnea Vieru +19002,James Whitaker +101775,Rod Piffath +1316599,Dennis Liddiard +15734,Consolata Boyle +3871,Matthias Schellenberg +208403,Jeffrey D. Stevens +928465,Jack Higgins +1400372,Mickey Gilbert +1018812,Morris Ruskin +1881574,Daniel J. Lombardo +1401789,Joyce Cox +1131836,Alex Mace +1491359,Sylvia Abreu +59769,Matthew Ferro +1387251,Joshua D. Comen +48443,Maysie Hoy +6881,Erica Edell Phillips +1841589,Joey Orosco +64252,Christoph Silber +1120992,Carlo Thiel +45791,Roy Andersson +934838,Gideon Amir +5062,Robert Hathaway +73154,Nicole Lubtchansky +43088,Silke Zakarneh +138764,Frank De Felitta +1401125,Jennifer Long +77725,Gary Phillips +1093,Lawrence Gordon +34643,Hans-Günther Bücking +1674652,D. Keith Cleary +109559,Takashi Koide +4615,Dale Beldin +8911,Mark Allan +1786444,Michael Jovanovski +1341847,Robert Ryan +18258,Diane Yates +65601,Ellen Keneshea +76938,Jiro Asada +7228,Joel B. Michaels +1672840,William Henry +1322393,Adolfo Ramírez +148000,Steve Yeager +588412,Takashi Kako +1274305,Florin Dima +1315056,Claus Clausen +66517,Andrew Jacobson +1324618,Rolland M. Brooks +1425849,Sergey Fukalov +12234,Nigel Sinclair +19055,Emmanuelle Castro +1526846,Brian McClean +18392,Robert Aldrich +957598,David Doernberg +69162,Earl Mac Rauch +1603462,Jack Whitehead +86662,David Sington +1394414,Josh Harrison +69786,Giovanni Guareschi +27903,David Freeman +186116,Ronald Alexander +17451,Cathy Schulman +142351,Pete Martin +15208,Keith Addis +70714,Roy Turk +1172442,Mary Saisselin +1345635,Anna Rane +1409271,Adam Johnston +1649574,Juthamaj Kaewchart +29538,John Victor-Smith +113043,Scott Curtis +1055498,Jane Rizzo +44087,Russ Goozee +1419613,Sheila McNaught +2083,Herman F. Zimmerman +1493011,Mohamed Azin +68212,Carroll Ballard +1377215,Doug Harlocker +26134,Roy Ward Baker +1396510,Patricia Barry +1498688,Tanis Villar +1567317,Christopher Warren +68357,Ken Sallows +58326,Caroline Wood +96679,Fabrice Ziolkowski +183617,Chris Thompson +993879,Helene Rousse +63306,James Watkins +16521,Harry W. Tetrick +57977,Keith Salmon +85758,Edward Sampson +1170553,Rudi van Dantzig +14192,Michèle Burke +130325,Lesley Selander +7479,Jeff Cronenweth +1368764,Jean Webster +977230,Heather Green +23422,Henry Braham +15131,Giuseppe Rotunno +223264,Edward Doherty +1410328,Céline Godeau +1432467,Richard Benda +1037310,Jakub Dvorský +17386,Laurent Cantet +1538943,Zinka Shankland +68895,Andreas Kopriva +115359,Gregory Beauchamp +70452,Ronald Kinnoch +12344,Clifford Stine +1402110,Elisabeth Flaum +58165,Rocky Morton +1401997,Bill O'Leary +19656,Sebastian Gutierrez +10676,Gladys Knight +1392702,Michael Thompson +82815,Terry Shakespeare +12246,John Cox +80821,Cody King +1803785,Jack Gallagher +1619112,Quincy Perkins +2940,John J. Mescall +1577006,Donald G. Hunt +1010005,Toonz Imai +69377,Donald S. Sanford +1326401,Annick Chartier +1392240,Charles C. Bennett +1994,Robert F. Colesberry +1446202,Richard Buckmaster +113381,Rodrigo S. Tomasso +1733768,Paul Hornsby +9168,Alan Parker +1398856,Jane O'Neal +32343,Richard G. Murphy +1406789,Peter Myles +1495279,Joey Romero +69572,Lester Shorr +82133,David Webb +1488570,Jon-Michael Preece +6345,Edward Lachman +1416989,Mike Tiverios +1308887,Stefano Cassini +1399155,David Foster Wallace +1172667,Jeffrey W. Sass +34082,Otto Siegel +1430231,Bob Shaw +1021196,Naoko Kakimoto +68555,Antony Genn +1091872,James V. King +45138,Luc Dardenne +99415,Ed Kelleher +1738165,Larry Campbell +1526844,Billy Patsos +121150,Paul Landres +1576011,Ray Bell-Chambers +1803758,Michael Wood +1420159,John 'Fest' Sandau +16843,Michelle Bochner +1842601,Jenny Lill +1455312,Maria Billberg +1325353,Terry Kempf +1407893,William Purcell +1724862,Kevin Caine +1418480,Alexander Laurant +1327791,Gemma Ryan +6078,Martin Steyer +8389,Bernard Grenet +1121518,Stuart Wood +69929,Ewa J. Lind +28773,Shigenori Takechi +1353528,Felice Diamond +1557591,Iain Eyre +1546879,Jim Richards +578516,Hélène de Luze +1441261,Michael Wrinch +1487180,Ewa Kowalska +1383921,Annette Fradera +62756,Lillie Hayward +1288893,Tyler A. Hawes +4411,Giuseppe Amato +1531870,Jonathan Hanousek +44017,Michio Takahashi +1741203,George Oldziey +1057678,G.J. Zinnerman +1050930,Hugo Weng +1312410,William Saracino +6225,Simon Franks +19769,David Ayer +45817,Lawrence Block +1400079,Patrick B. O'Brien +24665,Armando Nannuzzi +77747,Jon Purdy +1918,Richard Halsey +3503,Brent Burge +44070,Enki Bilal +144014,Gakuryû Ishii +1398846,John Dekker +1566278,Kevin Boyd +12143,Frederic Knudtson +1446199,Danny Kopelson +192165,Paul Harber +1594469,Fernando Scarfiotti +1463390,Kirk Francis +1095,Donald McAlpine +1469339,Elizabeth Ludwick-Bax +1552332,Keith Woods +103612,Giorgio Carlo Rossi +1208521,Cosmo Anzilotti +5545,K.C. Hodenfield +66569,Denise Hudson +62164,Trish Keating +1586639,Cristian Coroiu +1539483,Adele Cannon +1545169,Sonny Kompanek +29857,Tim Harvey +27926,Stephen Dade +1434161,Michele Ferrone +85914,Brian Hohlfeld +1445895,Gregory W. Smith +16534,Janice Hampton +174683,Mike Smith +36004,Rainer Michel +1398194,Peggy McAffee +1428852,Patrick Bietz +94973,Bernie Somers +216662,George Saunders +2182,Pen Densham +56905,Jim Farmer +1399563,Sorin Nainer +65854,R.C. Sherriff +13320,Robert Lennard +1389574,Lynne Hockney +1536378,Adrienne Manhan +1312285,James Keast +961164,Speed Hopkins +15901,Jonathan Sanger +1448041,Joanne Chalkley +5126,Stefan Schubert +78366,Haruya Yamazaki +149983,Alan Simpson +146873,Stanisław Bareja +1096416,Sandy Holt +1404851,Brenda Gilles +1562443,Mary Duann +1012,Anders Thomas Jensen +1585876,Kai-Uwe Koch +1667265,David A. Cook +1017017,Claire Breaux +25953,Kenout Peltier +1318148,David Jaquest +1403438,Darren King +1493890,Paul F. Bernard +1566292,Kathy Leigh Fleming +590075,Joseph Bennett +76203,Susie Maizels +138322,Victor Nunez +61056,Patrice Laure +1517815,Ginger Tougas +14557,Ludwig Reiber +2704,Maurice Jarre +56349,Victor Salva +1070123,Carmen de la Torre +109609,George Schneiderman +112656,Victoria Down +1377492,Tobias Fleig +1620057,Stephen Paley +34611,Howard Zieff +69878,Frank Yablans +1369450,Annabell +94470,Stephen Vincent +117412,Ramón de Diego +60285,Mary-Lou Storey +1238947,Irving Vendig +1840477,Sally Collins +20840,Doug Richardson +1815473,Pieter Lommerse +1738085,Vicki Dittemore +967606,Stéphane Cressend +1398900,Danielle Lomas +31871,Jaime Contreras +1324477,Thomas A. Walsh +4681,Paul Sawtell +1074103,Dwayne Avery +1281231,Jean-Michel Humeau +1586941,Janet Lonsdale +75004,Jack Hager +29929,Leo Corey Castellano +1868857,Ian Calip +1392615,Molly Allen +1153775,Colin Fletcher +1159608,Flor Maleva +17762,William Hornbeck +9622,Eric Brevig +1117953,Karen Murphy +11654,Scott M. Martin +1597871,Kyme Meade +1462701,Jesse Kaplan +134037,Gai Zi +1014778,Franck Thilliez +93000,Joan Ackermann +1318884,Ana Ioneci +8013,Andrew Gordon +1532357,Craig Gleason +930,Branko Lustig +1425810,Lyndell Quiyou +38490,Geneviève Louveau +1304334,Gemma Planchadell +1556478,James Allen +32036,Gideon Ponte +64167,Michael O'Connor +1292186,Roger Savage +9749,Henri Baum +19466,Maria Nay +70877,Dušan Kovačević +1414549,Scott Wolf +59878,Nick Feldman +5885,Yann Blanc +4350,Edith Head +1416155,James Bolt +1414556,Joe Diaz +1169741,Lina Shanklin +1447500,Audrey Stedman +1304272,Donald Luczak +1398184,Iva Petkova +62210,Stanley Roup +34857,Joel Stillerman +1376891,Joseph Hiura +13072,Scott Sandine +10895,Nico Hofmann +1567965,Todd C. Guzze +80455,Kwi-Deok Choe +1406839,Scott Rogers +1648109,Steve Dayan +552001,Yûharu Atsuta +1554802,Paul Huggins +37593,Jonathan West +20172,Susan Lyall +512,Laurie Parker +20694,William S. Scharf +82623,Andrew Black +98471,Mark Shostrom +14495,Larry Germain +9815,Winston Azzopardi +1196244,Kenzo Kuroda +1090581,Rafael Pacheco +54585,Clayton Hartley +1603622,Edi Hubschmid +1536092,Peter Montagna +921570,Julia Loktev +1554879,Jenny Morgan +24993,Junseok Bang +1877356,Thomas G. Marquez +134615,Gregory Mackenzie +8317,Sébastien Prangère +573606,Ademir Kenović +71640,Yoshihiro Nakamura +996135,Nicholas Shumaker +64727,Maureen O'Connell +1394984,Fernand Bos +1734420,Marcella De Marzi +1393448,Jaap Buitendijk +1441749,Kitty Kratschke +54511,Bob Hayward +936321,Philippe Montel +60917,Branimir Babic +19284,Barry Robison +17950,Chris Shriver +1530262,Gilly Martin +1182648,Jan Němeček +1652092,Andrew Patterson +59611,Pascal Laugier +5053,Gordon Carroll +10688,Harris Savides +1401800,Wayne Stables +1603665,Emre Hamamci +75907,Kitty Stuckey +554042,Thomas F. Denove +1391697,Steve M. Davison +75699,Lisa Cholodenko +85808,Scott Wheeler +1638222,Ruslan Muratov +1191097,Owen Davis +1352968,Margit Pfeiffer +40839,Brian Reitzell +1395158,John D. Kretschmer +935634,Nina Jacobson +50462,Catherine Marie Thomas +73046,Masakazu Kubo +28636,Andrew Laws +1257754,Ellen Goldsmith-Vein +495,Debra Zane +1447357,Rick Maki +7408,Charles B. Wessler +1451401,Richard T. Olson +33788,Turi Vasile +1667254,Ken Peterson +1612613,Pat Grover +5696,Bruce Beresford +13090,Pierre Vienings +134656,Suzie Templeton +20305,Christopher Roberts +1823388,Missy Berent Ricker +1357525,Ian Crawford +1441372,Helga Ungurait +224966,Dan Carlin Sr. +66535,Andrew White +12435,Shari Rhodes +146101,Yan Mo +1435057,Ronan Girre +1478848,Molly Click +6601,John Woolf +1394747,Miguel Rivera +1052,Rick Alexander +1124188,Sekar Ayu Asmara +1424603,Justice Nhlapo +1179,Gerd Tjur +1304433,Barbara Tfank +1536633,Jeena M. Phelps +1557577,Dave Rand +1793151,Mario Cimini +1659151,Bo Lindquist +37880,Thomas Stanford +12232,Guy East +1575752,Enrique Rodríguez +16545,David Morrell +67974,Antonio Siciliano +9024,Malcolm Middleton +77307,Hunter Weeks +30053,David Michael Latt +1193984,Stephanie Martin +1767041,Bruce Pederson +1530192,Charles Taylor +63692,Nozomu Enoki +1585875,Thorsten Thiesse +60569,John Panzarella +1184798,Fernando Celis +1558216,Frank P. Calzavara +56907,Dana Congdon +149963,Jesse Scolaro +1454536,Simon Coke +91219,Dick Dial +1410140,Nick Beeks-Sanders +1452257,Paul Katte +1095226,Steve Gethers +91805,Alfonso Avincola +136,Sam Mercer +1429544,William Hooper +1160654,Isobel Stephenson +1779874,Archie Bolina +1319443,Todd Caldwell +1411675,Mike Beresford-Jones +2894,Sam Winston +1531,Pembroke J. Herring +59815,Patrick Baca +62808,Alix Taylor +1453594,Chuck Duke +94918,Daniel Barber +96819,John Bright +601,David L. Snyder +1661575,Vic Bucossi +17173,Ron Yerxa +31093,Yvette Kaplan +11760,Aram Allan +6033,Lisy Christl +1239497,Bob Levy +103569,Peter Manoogian +15539,Shawn Slovo +36129,Neal H. Dobrofsky +16983,Santiago García de Leániz +29913,Enrico Job +64890,Frédérique Dumas-Zajdela +29708,Judith Weiner +1738132,Rich Mackay +1458540,Gavin Jones +72643,Darrin Navarro +53945,Sauro Scavolini +1666412,H Sridhar +69495,Elliot Geisinger +75302,Angelo Sahin +70592,Deborah Schindler +40819,Richard Pryke +24295,Paul Misraki +1392627,Steve Street +1543976,Kenji Nagaoka +1542581,Mototsugu Komaki +153245,James V. Kern +54619,Tim Baker +121340,Paul Mathison +1128228,Guido Cerasuolo +105885,Christian Charles +71252,David Gilmour +1739546,Alison Cannon +57112,Tamara Smith +1400408,Diyah Pera +1585483,Harold Boxall +1329466,Victoria Beattie +21024,Joe Wizan +13620,William Hanna +1553251,Allan Mason +106647,John Alden +36597,Klaus Eichhammer +1611789,Tom Lynnes +1563897,Stanley Newton +20538,Frank Reynolds +56268,Todd Alcott +1332515,Klemens Becker +1410208,Bert Reo Anderson +1513523,George F. Miller +1380390,Abe Perlstein +31037,Adirek Wattaleela +58096,Nicholas Beauman +35959,James Huth +1493014,Nezamoddin Kiaie +15367,Wedigo von Schultzendorff +1424602,Gavin Perrow +1545740,Adriana Grand +1599493,Halid Redžebašić +1061060,Jason Dean Hall +1558699,James F. Roorda +88973,Geoffrey Household +57619,Hai Cheng Zhao +1414537,Miia Kovero +1549172,Emily Wyss +1558417,Denzil Armour-Brown +1521691,Salvador Servín +85942,William F. Leicester +13088,Nhlanhla Bhengu +116584,Pablo Stoll +41631,Domenico Scala +1675422,André Retbi +1409817,Gloria Pasqua Casny +96919,Christopher Munch +1330856,Kim M. Holly +1571712,William F. Gambill +99371,Rocky Graziano +1401730,Prue Fletcher +230436,Barbara Harris +67699,Daryl K. Davis +1288504,Olavi Tuomi +1630528,Cynthia Haagens +1448060,Caroline Hamann +1556293,Tiffany Daniel +1412985,Andre Fenley +109692,David E. Talbert +72469,James Mitchell +1413195,Betty Brikowski +58268,Stefan Fjeldmark +284,Gary Levinsohn +1536089,Leslie Weir +1404285,Migs Rustia +65792,Tony Cataldo +34218,Jesse Alexander +1576031,Lawrence Ashmore +232187,Jimmie Haskell +1117858,Todd Weinger +1567994,Charles Wyrick +1403633,Brian McNulty +189487,Rosario Roveto Jr. +1533155,Pierre-Louis Calvet +1402073,K.C. Bailey +73683,Tomoki Hasegawa +66270,Jean-Claude Bourlat +1457926,Sandy Berumen +58154,Jack Baran +16389,Timothy Galfas +5628,Angelo Badalamenti +3278,Mark Adler +57214,Prachya Pinkaew +1549211,Harrison McEldowney +56071,Steve Hardie +19407,David Snell +1029308,Kôzaburô Yoshimura +124865,Nils Pagh Andersen +1292588,Donna Woolfolk Cross +1415042,Roger Tooley +1754330,Spartaco Pizzi +9546,James Chinlund +1632529,Mike Joyce +1549210,Mark Howard +1422979,Brian W. Jennings +413187,Paul Armont +11272,Marco Bittner Rosser +1581139,Lothar Albrecht +972173,Ricardo Franco +84350,Brian Ralston +60497,Chris Cleveland +6797,Manon Rasmussen +1537541,Lynda Thompson +1460200,Darren Schmidtz +1129542,Gerald Seth Sindell +71729,Steve Martino +77489,Gerald Ayres +56189,Mark Lipsky +54451,Brian G. Hutton +15206,Jim McBride +1220834,Michael Taylor +1567963,Marijan Zoric +14710,Herschel Weingrod +66673,Sonia Chernus +1244303,Zoe Akins +1208315,Michele Futerman +582928,Jon Henson +1611815,Paula Giokaris +16755,Grace Gregory +61108,Blythe Cappello +71244,Anthony Peckham +34439,Jerome Thoms +1394942,Glenn Foerster +60024,Liz Friedlander +55170,Sabine Frielinghaus +54734,Evan Goldberg +1738163,Chris Gordon +9889,Dominique Auvray +1407219,Philippe Houdart +1384517,Kurt Vonnegut Jr. +1046564,Subrata Sen +1745216,Ben Gunsberger +1302465,Ernesto Caballero +238024,G. Srinivasan +60815,Larissa Lounassalo +30549,C.V. Whitney +20665,Rachid Bouchareb +1580048,Sergei Mukhin +1537515,Nathan A. Smith +8563,Mauricio Andrade Ramos +1244914,Howard Meltzer +1465623,Rod Ortega +1708223,Mark W. McCoy +1529604,Linda Vipond +1141553,Will Hammer +1790466,Dori Amarilio +64992,Hou Hsiao-hsien +70604,Franz Rodenkirchen +8849,Susan Nininger +17608,Rowan Joffe +1892498,Florian Kainz +1467275,Lynne Twentyman +32723,Rasmus Kjær Flensborg +1550320,Yoshiro Kimura +1205654,Deedee Wehle +1477084,Irene Kent +30571,Jerome Hellman +1532617,Colin Dennis +22120,Chris Anthony Miller +1516079,Aaron Dem +94988,Richard Talmadge +1765793,Alan Alvarado +5493,Ann Roth +40277,Stuart Blumberg +58729,Albert Magnoli +432,Phedon Papamichael +127523,Oliver T. Marsh +44077,Bernard Savin Pascaud +24560,Marion Vernoux +1574650,David B. Menkes +991669,Margaret South +1461517,Lester Koenig +33445,Christina Schaffer +1181576,Ross Dunkerley +1197676,Pieter Hubbard +79927,Ted Childs +1357122,Peter W. Nelson +18663,Tom Scott +1446658,Richard Toyon +1405330,Shawnique Hill +1380384,Tim Archer +1114036,Peter Pastorelli +1375038,Lonnie Nelson +1168615,Heinz Wehsling +1603660,Murat Guney +114380,Paresh Mokashi +16736,Lon Bender +9470,Greg Polutonovich +73680,Junichi Tanaka +3430,Clayton Collins +1718278,Jason Bogard +65288,Edith Wharton +53521,Chris Curling +1018084,Warren T. Goz +3941,Andreas Wodraschke +3992,Gloria S. Borders +1565951,Vincent Joseph Flaherty +1744851,Nina Saxon +1624420,Eamonn Fitzgerald +1624028,Jorge Valencia +14237,Rosine Delamare +1408465,Drew Ogier +1418466,Dagan Potter +4297,Jules Furthman +12639,Hugo Santiago +993407,Ben Pivar +12568,Barbara Munch +57159,Jim Reeve +1538768,Thorsten Rienth +1190662,Lorelle Adamson +106723,Alan Landsburg +1571764,John Arszyla +52361,Cinco Paul +1420152,David Michael Ableman +1597180,Jesse Valdez +1573097,Bill Horton +1771253,Jim Campbell +56972,Tony Lombardo +1216753,Whitney Ransick +1408134,Julie M. Woods +52531,Rafael Ronconi +1418283,Jenny Hitchcock +29275,Sidney Cutner +103053,Nello Giorgetti +46077,Jorge Saralegui +52871,Len Blum +5022,Roy Walker +1522745,Patrick Caulfield +1540426,Mitsuru Kaneko +1518764,Shira Hockman +30258,Victor Milner +16447,Milo Addica +1851,Alexander Berner +68039,David Loucka +1407891,Karman Graham +26873,Jeanette Freeman +1755011,Claudia Lewis +1441289,Donna Williams +18923,Miles Millar +1023344,Don Gottlieb +928414,Rachel Tenner +1773144,Kendra Shay Clark +1191116,Silvia Vas +958944,Joseph Bato +1567964,Stan Purdy +1315647,Tammy Kusian +19288,Sean Perrone +34526,Fred Arbegast +1691203,Robert K. Johnson +30257,Leo Shuken +1711586,Françoise Charlap +3080,Colin Monie +56541,Deb Talan +98199,Jerry Schatzberg +1410526,Richard Trus +18320,Bronwen Hughes +64300,Curtis Petersen +1550778,Harry K. Garvin +1459855,Eva Marieges Moore +1372095,Kevin Ritter +60811,Risto Kuulasmaa +28715,Aaron Spelling +62763,Jarrad Paul +1866805,Michael Sevholt +1597209,Chad C. Barrow +21363,Carol Lewis +581056,Oleh Witer +1862114,David E. McKenna +71876,John Portnoy +7789,Cliff Robinson +66770,Cheng Yun +60156,Claire Kaufman +22047,Alex Heffes +17172,Albert Berger +44023,Amos Poe +1405246,Rob Harris +1392211,Roberto Cappannelli +1704458,Usha Ganguly +9319,Sabrina S. Sutherland +1408179,Kandace Loewen +1393449,Andy Shuttleworth +19986,Christophe Beaucarne +2359,Jake Eberts +4634,Jasmila Zbanic +1438600,Richard Schultz +1128341,Nikki Vanzo +1566070,Lars Looschen +122092,Lois Kramer Hartwick +83347,Gregor Hutchison +165828,Ian Maxtone-Graham +1400357,Rulan Tangen +1815474,Marvin Petilla +1578446,Sarah McGrail +1550067,Alexandra Leviloff +322,Steve Golin +14653,Ken Diaz +1671655,Keith Hunter +4768,Lynn Harris +1448047,Peter Dodd +53756,Tom Lassally +1204225,Brent Lambert +1470938,Freddie Glusman +1406901,Cara Czekanski +1483231,Philippe Rebours +84238,Robert Smith +2530,Bob Ringwood +12906,Rita Hsiao +554888,Charles Maynes +585767,Michael Anthony Jackson +6027,Christian Berger +53522,Christian Arnold-Beutel +15814,Mark A. Hester +19989,Ludo Troch +16340,Louise Stjernsward +1412177,George Flores +992965,Mary Cybulski +1552880,Andrea McCarthy Paul +1121930,Melissa Palmer +21939,Max Morel +1618182,Ève Guillou +1583004,Archie Hill +36582,Carol Oditz +81045,Julien Maury +1332141,Owe Svensson +12648,Bob Dolman +22156,Charmian Adams +1096,John Vallone +1008333,Henrik Ibsen +1584957,Alfred Berke +1508356,Irving Lande +1249293,Ricardo F. Delgado +1424633,Adam Scott +32383,Christopher Gore +10352,Pierre Charbonnier +1586399,Brian Thomas Nist +1451825,Sonja Vesterholt +9058,Blanche Sewell +52896,Stephen Jeffreys +57301,Vittorio Cecchi Gori +1722373,Loren Corl +1413225,Laurel Kelly +1376887,C. Scott Baker +1477155,Silenn Thomas +1303155,Robert McRae +120482,Jaroslav Papoušek +21701,Mauro Borrelli +1337470,Rob Davis +56723,Roberto Palaggi +1821338,Claire Kenny +67057,Charlie King +1558205,Todd Homme +74752,Nikolaj Arcel +1691205,Howard Velasco +1480853,Mirosława Garlicka +31437,Chris Wyatt +1619080,Marcelina Barraza +34402,Edward Bernds +1710246,Buddy Cone +958171,Joan Bridge +8135,Louis Rivera +1401791,Christopher Marino +36274,Max Mara +57858,James Coblentz +1414547,Carl Nunez +1336060,Daniel P. Collins +1337416,Louise Hussey +1381471,Michael Udesky +1207434,Paul A. Simmons Jr. +1408662,Joel King +1392099,Michael Meagher +1323759,Desi Wolff +1393021,Shie Rozow +1457809,Ryan Kushner +1407227,Phil Barrie +135844,Isobel Lennart +44667,Dietmar Kraus +62241,Jake Weiner +1821178,E. Larry Day +1723383,Birger Bohm +7927,Ricky Nierva +13089,Nadia Kruger +119532,Hugh Cummings +74274,Paul Kimatian +15438,Erik Stabenau +73077,Alexander Bickenback +75802,Colin Jamison +57970,Alex Jones +126,Fran Walsh +1389568,Paul Williams +77697,Sheena Napier +1398101,Andy Stevens +73950,Bahjawa +1685556,Brian Bettwy +5681,Piero Gherardi +1180493,Phacharaphan Sathitrachot +1841915,Christopher Lucchese +1581173,Derek Flood +13899,G.W. Pabst +1560266,Jennifer Wyatt-Beasley +50765,Chester Erskine +148850,Gertrude Purcell +1395373,Mary Bailey +119535,Arthur L. Todd +1397300,Cristina Weigmann +81720,Yūichirō Saitō +498,Joanna Johnston +1561102,Rupert Hine +67894,George Grenville +6340,Susannah Grant +13903,Andrej Andrejew +21646,Jennifer Polito +1940,Franz Planer +579077,Kenny Myers +1428583,Diane Dixon +1446676,Krzysztof J. Bratun +1334400,Will Blount +1543218,Keith Roberts +1547231,Edgardo Simone +72173,William B. James +1462705,Elaine C. Andrianos +127537,Yossi Wein +207141,Jack Montgomery +1566272,Richard Wardlow +1321695,Ronald I. Caplan +1538342,Alexander Westerman +1464511,John Forte +70330,Fukuzo Koizumi +51035,Alex Kavanagh +1458760,Nancy Wenz +12993,Tim Zinnemann +18839,Amedeo Pagani +1398104,Rudi Holzapfel +1830646,Mar de Frutos +9370,Philip Sloan +1259,Ennio Morricone +1391112,Richard Best Jr. +1605817,James Mackay +1767306,Cevin Key +1415328,Beatrice De Alba +1424927,Laurent Dumas +1752653,Megan Wolpert +10684,Jonathan King +11880,Claire Simpson +61539,Maya Mani +91881,Alison Clark +1282566,Tom Gibbons +1597558,Ingo Jucht +141488,Ninian Dunnett +10709,Phil Meheux +1868280,Joe Wood +14880,Dick Vorisek +66842,Christophe Offenstein +1043154,Gunther Gerszo +1406811,Marcia C. Suter +58084,Harry J. Ufland +1006705,Eva Sereny +127124,Nana Grinshtein +1574635,Michel Bernier +1401601,Karen Pidgurski +39300,Hans Werner Henze +1427384,Jane Goldsmith +1614002,Bill Phillips +1767062,Dawn Castiglia +54839,Eric Red +61935,Humphrey Jaeger +52268,David Schmoeller +12100,Jeffrey Price +1133156,Hiroshi Mizutani +64839,Pat Conroy +57246,Stefaan Schieder +1644086,Pia Myrdal +1774552,Chris Gorden +1204836,Val Kuklowsky +1398096,Alek Goosse +36276,Hugo Mezcua +59531,Robyn Paiba +236338,Antonio Meliveo +71337,Nadine Schiff +1341405,Michael Magill +1172271,Neil P. Varnick +4401,Olivier Delbosc +1447566,John Williamson +1078304,Barbara Jean Kearney +106493,Laszlo Barna +67675,Michael Hertzberg +2917,James Whale +1438630,Terry Mackay +53300,Karen Elise Baldwin +33064,Henry Koster +1237449,Greg Walker +1558426,Paul Hyman +1319850,Ann Walters +1532324,Elizabeth Cier +1113,Lucinda Syson +135362,Frank Wead +1377231,Matthew J. Siegel +19052,Vincent Malle +1598746,Steve Fitzpatrick +1544435,Lucie Truffaut +34484,Stephen A. Rotter +1342629,Susan Bierbaum +1400741,Yolanda Toussieng +1325897,Elizabeth Healy +1399632,Mark Larry +74406,Maria Strid +14860,Victor Saville +1860704,Leonhard Gmür +34372,Masato Ide +1412603,Sofi Hvarleva +52444,Diablo Cody +1255674,Tadaaki Yamazaki +1408667,Patrick Baxter +543371,Jessica Sanders +81890,Sally Allen +67043,Axel Linstädt +63124,Farid Lahouassa +145270,Joyce Cary +33678,Maryse Alberti +91603,Yaron Shani +1451645,Hank Tucker +1123910,Anthony Barnao +73570,Richard Jefferies +62930,Jessica Horáthová +20182,Robert Lantos +19290,Paul Cameron +31900,Michael Vejar +552638,Hisashi Sagara +28711,Marcia Basichis +72991,Miles Hood Swarthout +2988,Barry Malkin +1440479,Paul Purdy +1442503,Michael Ross +1459789,Alyssa Fong +1441348,Rachel Griffin +957559,Sholom Aleichem +60826,Janne Vianto +68857,Brock Yates +331220,Ingrid Dahlberg +1357089,Jonathan Weisgal +1661567,Lucia Connelli +23773,Stuart Rose +82562,Louis M. Heyward +77513,Alessandro Santucci +1451682,Michael Leung +1452254,John Biggins +75079,Nicolas Gaster +1391700,Drew Davidson +1379995,Dominik Trimborn +1725452,Suzanne Dolan +21983,Allison Lyon Segan +66211,Jason Filardi +1341340,Rick Josephsen +1271920,William H. Orr +47102,Brian Pearson +11405,David Permut +68896,Liccy Dahl +1409246,David Reale +17044,Jake Abraham +1458992,Milton Buras +1141552,Philip Lindsay +997341,Dave Rock +119769,Don Vargas +74579,Howard Korder +1412223,Jennifer Bell +19804,Manuel Huerga +1421755,Sarah Laxton +61228,Henry Rosenbaum +72420,Nobuo Koyama +3488,Alfred Herman +5431,Pierre Aïm +81909,Wai Lun Ng +57303,Masamune Shirow +12237,Charles Daboub Jr. +159763,Keith Wilson +66203,Moustapha Akkad +29967,William Axt +1533708,David J. Grant +1150489,Leslie Mason +1415607,Holiday Landa +48583,Anne Fontaine +141175,Sergei Kozlov +1723528,Flor Colombatti +1597,Michael Payne +1309246,Robert D. McBride +1398867,Jonathan Buchanan +1605707,Nathalie Goepfert +17811,Tschangis Chahrokh +3113,Guillermo Navarro +27905,Eliot Stannard +6038,Greg Strause +1855222,Paul Flanagan +573776,Manuel Perez +30169,Max Rosenberg +2439,Louis D. Lighton +1547578,Zenichi Tajiri +48137,Glenn Gers +15335,Brian Smrz +108847,Timo Koivusalo +1470178,Araya Nakkate +1123041,Đorđe Nikolić +16986,Lala Huete +1437043,Mare Raidma +1249092,Riky Ash +1550727,Timothy Shannon +64183,Martin G. Baker +161787,Dick Ziker +71127,Peter Zuccarini +1511063,Casey Stone +14251,Leon Minoff +62237,Adam 'Tex' Davis +1625128,Dominique Bonnaud +1753775,Christine Bonnem +29818,Kade Gruber +767,Jina Sumedi +1632786,Semyon Litvinov +1392083,Ann Scibelli +1580398,Janice Keuhnelian +1409821,Naomi Donne +721,Peter C. Frank +49442,Corinna Glaus +1392131,Christopher S. Aud +66755,Rusty Lemorande +1661561,Tom Ross +1524757,Emanuel Millar +1615304,Shannon Fallis Kane +27097,Matt Luber +1436298,Sean Patrick Crowell +1724860,Jeff Snyder +1462620,Kristen Lester +38939,Richard Baratta +109454,Robert Stafford +84414,Dave Eggers +3985,Richard A. Harris +931836,Wally Schneiderman +1096491,Jade Fox +1360,Dun Tan +8763,Dan Yale +31017,Felix Salten +6940,Karyn Rachtman +1573101,Andrew Brett +1390218,Joe Quinlivan +67845,Friedel Buckow +1558221,Michael J. Malone +69448,Michael Henry Brown +1683617,Agnes Karow +82724,Fernando González Molina +1391747,Michel Brochu +8684,Dan Bradley +1230848,Halsted Sullivan +1322043,Kristina Kjellin +1534226,Jack English +1392704,Mara Bryan +76804,Claudio Chea +1616351,Bhavani Iyer +67897,Jeff Kanew +1427699,John Franco +14234,Philippe Agostini +1368649,Tim Walton +1840043,James C. Bradford +64785,Mark L. Smith +1536613,Anatol Radzinowicz +553803,Ugo Pericoli +1123068,Keiji Kameyama +1727306,Maurice Brunson +1614010,Walter S. Herndon +1391748,Rejean Brochu +1822892,Josan F. Russo +32797,Arianne Phillips +1409745,Brian Cyr +55517,Aleksandr Misharin +15521,Ernest R. Dickerson +208579,David Anderson +1560856,Fred Lerner +1538745,Julie Starr Dresner +12262,Georges Van Parys +19311,Stephen Chbosky +24513,David Wurst +35011,Mags Horspool +1326400,Jean-Marie Francoeur +110532,George Bamber +998600,Ornette Coleman +1468506,Brandy Dyan Sharp +47978,Uri Fruchtmann +133420,Clare Peploe +936841,Greg Berry +148431,Ralph Spence +1416072,Jan Evans +1441362,Etienne Daigle +61498,Ryan Shore +1870764,Eran Zur +1397850,James J. Gilson +1320302,Jennifer Kawaja +1433203,Grahame Ménage +1532359,Francis Spieldenner +81655,Rob Desales +14973,Bertram C. Granger +37932,F. Gary Gray +1629470,Adisorn Klomsiri +1407839,Scott Nicholson +6608,Cliff Richardson +35766,Mary Jane Fort +1485648,Bruce Zahlava +8570,Vincent Maraval +1538466,Giulio Lombardozzi +95862,P.J. Wolfson +1524770,Laura Steinman +1798039,Mathilde Bouts +1586338,Lee Frazier +1014919,Jimmy Lindsey +1779722,Audie Aragon +65855,Ralph Zondag +9054,Mervyn LeRoy +1409734,Sven Taits +1405389,Ronald Hersey +1538935,Laylee Olfat +959992,Ann Hollowood +8703,Patricia Whitcher +61192,Joel Plotch +63921,Ken Wheat +1615780,Alessandro Jacomini +8846,Andrew Dunn +1044527,Mitsuo Harada +41328,Edward Milstein +60358,Satoru Iseki +605021,Alf Joint +1402167,Stephen Collins +556501,Monckton Hoffe +29963,George W. Hill +7702,François-Renaud Labarthe +64659,Sheri Elowsky +127577,Les Millbrook +9954,Ernest Hosler +3030,Andrew Scheinman +6800,David Tattersall +224386,Trevor Engelson +1529471,Edward Thorne +148010,Pekka Lehtosaari +7396,Peter Farrelly +61244,Robert Vince +95841,Lucyna Wojciechowski +545584,Thierry Derocles +1447436,Jennifer Yuan +1559100,Tapeshwar Prasad +1161624,Frédéric Doniguian +1815481,Bernard Derriman +1567327,Bruce A. Hutchison +34373,Ryûzô Kikushima +1657,Henri Decaë +6379,Eve Stewart +68858,Al Capp +1125548,Harry Lange +1380052,Debbie DeVilla +42907,Christopher Chase +39517,Warren Ellis +1534940,Shawn Hausman +1614009,Walt Green +9547,Judy Rhee +85104,Willie Wisely +1246457,Natalie Richards +31182,Debra Karen +1445885,David Goldberg +6625,Su Armstrong +962851,Rebecca Hofherr +75942,Steven Jones-Evans +20561,James Gray +17519,Alan Kleinberg +7558,Tiziana Soudani +15133,Goffredo Lombardo +1681364,Kenny Chaplin +13350,Edward Curtiss +1446192,Jayne Dancose +1316,Joe Bleakley +1132430,Kazue Hirataka +1468628,Randy Duncan +1128102,Michael Fiore +1603667,Buket Sezgin +106567,Howard C. Pen +1521706,Eleazar Sánchez +1813167,Ric Sluiter +1151553,David Salle +32134,Charles Vidor +1615551,Kimberly W. Keech +41751,Millard Kaufman +1469560,Eileen Peterson +1586980,Justin Plummer +47942,Sarita Allison +13289,Adrienne Fazan +75940,Cezary Skubiszewski +1310725,José Luis Díaz +68914,Jack Conrad +17814,Steve Shagan +1550059,Martin Hazenboom +118945,Mary Andrews +1327762,Judy Farr +20537,Graham Leader +1374921,Ross Lockridge Jr. +1605169,Liz Michie +54606,Kim Hardin +84958,Peter Prince +1447524,Paul Tobin +18084,Craig DiBona +1456407,Andre Schmidt +8627,John Cope +1743679,Judy Counihan +1034644,Martin Hobbs +84665,Ronan Bennett +1478953,Cate Hardman +12562,Anna MacKenzie +102798,Xavier S. Puslowski +89158,Gene Corman +1565505,Colm Hogan +60702,Michael Bütow +6776,Roger Lewis +1707128,John Kestner +8623,John Meehan +64669,Bernadette Meyers +72547,Marcus Manton +1197285,Glenne Campbell +550576,Eva Svankmajerová +1390382,Kirsty Whalley +50961,Ben Maddow +14141,Miriam Brickman +47088,Osmán Pérez Freire +1767307,Ralph Peterson +551921,Marc Levinthal +65856,Eric Leighton +16769,Timo Salminen +1318091,Valentina Mladenova +1534951,Timothy Alberts +57360,Michael D. Margulies +14459,John Poyner +230691,Agnès Mentre +75708,John R. Saunders +92703,Bob Kellett +37084,Annette Focks +1063965,Peter D. Lago +1073906,Richard Rhys Davies +53361,Michael Parker +58362,Michael Hilkene +1722,Craig Wood +76270,Bert Deruyck +1337461,Michael Barry +26175,Ben Nye +58257,Nicholas Dodd +1602162,Martin Spelda +1351413,Brooks Baldwin +54160,Gershon Ginsburg +54268,Vince Gerardis +55474,John Collee +1603311,Jeff Silberman +1482378,Ross Major +1429549,Dale E. Grahn +149,Robert Richardson +1706330,Helen Szabo +32347,John Altman +11471,Tom Sullivan +126544,Eugene O'Neill +39982,Annette Davey +1024473,Monta Bell +223230,Fyodor Dostoevsky +52248,Umberto Scarpelli +1889495,Gerry Cueller +60820,Johnny Suorlahti +147702,Douglas McCarthy +55246,Christine M. Loss +1272668,Lynn Varley +64841,Andrew S. Karsch +1565937,Douglas Beale +1450347,Mike Cachuela +71647,Conrad von Molo +18596,Taylor Hackford +1667274,Matthew P. Hanson +1166050,Matthias Kammermeier +1341853,Kenneth L. Westcott +1122225,David Slusser +1440487,Colin Laski +1841272,Taylor MacCrae +1263196,Willie Cortés +1864759,Dianne Bennett +4669,Claudio Mancini +54287,Jérôme Alméras +32769,Jack Ballard +64658,Ruth Epstein +1325661,Henry Dunn +1361753,Don Taylor +1745249,Scott Pasquill +1435689,Dave DeGaetano +1806,Annie Proulx +82033,Jon Hess +1447499,Bill Schwab +6482,John Singleton +1840847,Heather Boyd +58292,Aaron Schneider +19014,Scott Z. Burns +34951,Keith Partridge +1554309,Michael F. Burke +19113,Stéphane Fontaine +76254,Eurydice Gysel +70810,Vilis Lapenieks +7405,Frank Beddor +1652449,Timothy Feimster +1126359,Robert Goodstein +1917,Colleen Halsey +53477,Austin Chick +1632585,Tony Chance +1574659,Timothy P. Salmon +113073,Paul Massey +66705,Robert Gryphon +11373,Dina Lipton +14763,Katalin Elek +36123,Tony Pueo +983058,Yang Wei-Han +32174,John English +959279,Mollie Goldstein +1455296,Cindy Parker +51914,Tony Imi +1662360,Elaine Burt +24873,Agnès Nègre +1433008,John Paterson +16639,David B. Cohn +53848,Anne Beresford +1125189,Garrick Dion +1576028,Gary Colkett +65872,Carol Heikkinen +66190,Tony Bancroft +1145333,Franco Tamponi +89167,Hidemasa Nagata +82419,Bart De Pauw +1370914,Hari Ryatt +3898,David Bretherton +22680,Jan A.P. Kaczmarek +72956,Donna Sloan +44056,Fred Dekker +1341775,Robert Hackl +38521,Guy Dufaux +1390522,Hope M. Parrish +1408790,Danny McWilliams +32356,Alberto Moccia +9957,Jean Chiabaut +47776,Kristina Boden +14382,George H. Anderson +1425853,Jörn Poetzl +44113,Steve Hickner +1544253,H.C. Pearson +552004,Yoshisaburo Senoo +66047,Bernhard Wutka +1648018,Mychal Smith +1400738,Karen Golden +58071,E.K. Gaylord II +1414551,David Gourmaud +216339,Bill Lewis +549455,James Ojala +1746556,Gillian Albinski +1089828,Amanda Tabak +88023,Peter Flinckenberg +94703,Bryan Edward Hill +2235,Elmore Leonard +43086,John McKenna +18350,Hunt Lowry +1401331,Nimi Getter +53206,Saïd Ben Saïd +69717,Henry Cline +1025294,Íñigo Marco +38095,Jacques Bertrand +1025921,Eliot Rockett +199564,Mark Patrick Carducci +590407,Mack Bing +960585,Richard Hornung +1374201,Robert Anderson +1096786,William S. Darling +1324652,Melinda Sue Gordon +59248,Mick Davis +69945,Farid Russlan +1443182,Birger Laube +121342,Marvin Walowitz +100593,Joe May +1308375,Frank Kern +20038,Mohsen Nasr +961347,Anne Rosellini +1712247,Timothy E. Wade +1447150,Raymond Gieringer +11993,Dalton Trumbo +589970,Ian Kincaid +12972,Leslie Swan +231515,Cheol-hyeon Hwang +13494,Wally Veevers +126709,Jon Katz +1325583,Joseph Cigliano +1472427,Timothy Whidbee +1415642,Denise Okimoto +55421,Betsy Chasse +67701,Sonja Clifton-Remple +4359,Philip W. Anderson +83961,John R. Cherry III +37298,Carlo Poggioli +96677,Nora Twomey +18875,Matt Holloway +1462686,Eric Lees +50584,Joe Piscatella +1468511,Becky Claassen +1758,Eugen Schüfftan +1406915,Lisa Parker +42177,Steven Chivers +1803774,Monica Devereux +38418,Jack Amiel +40384,Aaron Zigman +1593014,Nikolai Solovyov +53020,Barbara Herman-Skelding +37271,Angus Finney +101546,Carlo Caiano +1209428,Costa John Theo +12058,Vicky Jenson +5490,David Rubin +1316728,Aline Gilmore +15331,Bryan Bowen +1423405,Katy Howkins +95661,José María Cunillés +60032,Mathew Hart +170940,Jacob Brackman +80605,Shay Griffin +14825,Jennings Lang +1416013,Christine Bodelot +1803768,Alan Broadbent +1405837,Georges Lourau +1554398,Michael Cedeno +1800195,Jillian C. Flynn +1442499,Nina Paskowitz +1528906,Dion M. Casey +71331,Creighton Vero +186758,Jon Sherman +1534433,Jorge Luis Toro +1319166,Julie Hewett +1782,Sarah Flack +19320,Tim Pierce +1620056,J. Allen Highfill +53649,Andrij Parekh +1425500,Jirí Málek +13581,Brian Levant +1624057,Thomas Lee +1447338,Padraig Collins +14056,Emile LaVigne +20641,Dong-ming Shi +83467,William A. Graham +64114,Edward Dmytryk +18867,Page Buckner +1743747,Giacomo G. Ghiazza +58033,Olivia Stewart +42267,Randy Thom +1276267,Phil Parker +16361,Baz Irvine +1427884,Jimmie Roosa +67451,Delbert Mann +54529,Gemma Fauria +25796,Christopher Fry +1152382,Arne Carlsson +44544,Venable Herndon +39819,Wayne Wang +11837,Stuart Freeborn +41144,Eda Warren +1810646,Erin Krueger Mekash +1462614,Richard Codor +122607,Carla Meyer +18614,Hajime Koizumi +53009,Lois Freeman-Fox +1877146,Andrea Sachs +36616,David Bergstein +1630522,Azusa Ohno +54530,Xavier Mas +1027282,Juan Botella +84127,Greg Mooradian +1550576,David Eubank +32339,Rebecca Morrison +656971,Joseph Dorman +62043,Michael Gottlieb +14842,James Nelson +946461,Ken Gross +1565942,James Diggs +1113128,Vlaicu Golcea +83089,Joe Milner +70251,Mel Friedman +60914,Carroll Kemp +60001,Frank Tetaz +2653,Herbert Coleman +64024,Ron Spang +66514,Adam Jay Epstein +1889074,Charles Falk +1404313,Zeke Morales +1330900,Peter James +69003,John Lounsbery +72140,Michael Short +65793,David Dadon +1421693,Donna Bis +21648,Julien Schultheis +1537179,Tracy Bennett +32992,Allen C. Miller +231419,Scott Austin +10783,Robert Wade +52358,Boaz Yakin +1584309,Larry Hadsell +1407210,Nicholas Bernstein +1128340,Matt Orefice +1823500,Judi Bunn +1407886,Jason Willis +968602,Tim Merkel +1413115,Tiffany Smith +40249,Guy Stodel +14750,Patricia McDermott +51758,Terry Stokes +60787,Wolfgang Schamburg +118280,Bob Kachler +6847,Gerald Hirschfeld +1335487,Gioia Raspé +1461155,Leigh H. Rens +1394777,Charles Torbett +1550218,Stephen B. Walker +36808,Caroline Hanania +51523,Kurt Hirschler +31131,Keith G. Lewis +1006147,John Grace +100578,Grant Whytock +936674,Nina Barry +209492,Ben Edwards +66723,Daniel Grodnik +1219858,Glenn Cannon +1562885,Henri Bendel +6348,Jeffrey Kurland +8506,Richard Day +36,Don Burgess +1345268,Joe Lisanti +1338375,Robbie Knott +1329369,Kim Child +1397315,Nancy Stearn +9148,Brian Donovan +1566286,Shawn Duchscherer +30938,Adrian Pryce-Jones +1744415,Fred Cooper +132583,Phil Marshall +1407228,Scott Sproule +1529591,Todd McMullen +45114,Michael Blodgett +1550573,Theodore Isaac Rubin +35664,William M. Elvin +1690,Haruyo Kanesaku +1640492,John Sprague +66906,Mark Geldman +177876,James L. Conway +23684,Bruce W. Smith +1573083,Mitchell Bloom +27920,Charles Frend +1069830,Rafael Cuervo +23424,Lucy Bevan +42060,Sidney Franklin +1555695,Maria Antolini +1552169,Brian S. Osmond +98925,Charles Willeford +63729,Jennie Muskett +10951,Benjamin Melniker +1330610,Ben Barraud +11708,Leslie Dixon +17870,Mary Ruth Clarke +108656,Angela Allen +1586389,Jan Boruvka +23412,C.L. Moore +40754,Roxy Konrad +84023,Jeffrey Reiner +1538339,Phyllis Freed Kaufman +1607051,Teja Schwede +1378229,Marvin E. Lewis +6955,Vincent Landay +1442512,Timothy Eaton +67434,Doug Seelig +16331,Owen Roizman +1355167,Changiz Sayad +63973,Matteo Garrone +58103,Alexandra Rose +68669,Anja Garbarek +1265,Letty Aronson +1630675,Bob Putynkowski +45843,Laurent Barès +1575869,Michael Mayo +5835,P.L. Travers +39056,John Pomeroy +57726,Tadashi Nishimoto +1364866,Scott Oshita +57678,Delia Ephron +1116915,Angi Dyste +1398895,Grant Weatherburn +54241,Erica Westheimer +54050,Mark Waters +1634,Anders Refn +1120106,Mamen Moya +936639,Jay A. Morley Jr. +1782767,Irving Temaner +1448043,Phil Dale +1534640,Joseph Coscia +1447518,Sean Button +11508,Dan Webster +72725,Mark Gunn +1629463,Sangrawee Jongsinkul +1340734,Elizabeth Boller +10065,Cheryal Kearney +40025,Özer Kiziltan +1355894,Anthony Di Ninno +551923,Barbara Benz +589954,Randy E. Moore +3240,James Ashmore Creelman +42633,Jim Page +1523841,Lora Rosenbaum +1185063,Wayne Springfield +1870673,Richard Puga +2490,Alexander Korda +82823,Paul Hupfield +38242,Frank McCarthy +1547037,Richard Asbury +1400004,Anna Wright +1381170,Lilla Pedersen +56928,Herman Stein +1398115,John Allenby +1581756,Merle Reeves +1416992,Aki Karppinen +1758840,Jason Faulkner +1776547,Erika Sellin +59562,Scarlett Lacey +1527434,Eliza Paley +13248,Senji Horiuchi +1596481,Donald A. Wollheim +1757599,Giovanni A. Giurgola +551482,Stephen Rennicks +40818,John Hayward +1074362,Maren Lüthje +17854,Alexis Scott +1431025,Vaughan Edwards +1046684,Daniel Moder +1536965,Harry Lu +1779888,George Humphry +1402122,Nathaniel Roberts +1438620,John Davidson +1401263,Ray De La Motte +40356,John Howell +997367,Sabra Temple +58076,Robert M. Sherman +79536,Richard Mansell +1455434,Mike Bingham +1897886,William Atwell +39140,Marc Fossard +1429492,Philip A. Hess +1398943,Greg Sanger +84376,Prudence Arndt +33830,Jacqueline Cambas +1717518,Michael Kenner +31835,Ousama Rawi +11860,Athol Fugard +1426769,Curt I. Miyashiro +962165,Nancy Thompson +66052,Clarence Hui +107602,Jeff Beck +34310,Leo Arnaud +113799,Frank Perry +38410,Michael Stone +1815509,Diane Aw Young +64666,Richard Schwadel +11710,Matthew Rushton +64632,Jacques Akchoti +1398866,Christopher W. Jones +61051,Andrew Reimer +1389597,Johnny Caruso +9987,Ian Bryce +1619498,Maurice Vernon +79855,Julian Court +1446172,Peter Anderson +1855223,Jennifer Halpern +9864,Monty Norman +11224,Alan Gilmore +10058,Mark Victor +1412250,John P. Mesa +136892,Roland Gillett +1324453,Heidi Higginbotham +21905,Danny Pang +14674,George Cukor +1023984,Mariusz Glabinski +1551662,Terry Edinger +59920,Toby Jaffe +1305050,Leon Lee +74534,Kevin Turen +1455303,Doreen Möllerström +1412081,Michal Bigger +57339,Norman Carlisle +1418124,Kevin Alexander +961533,Eugenio Zanetti +107419,Collin Niemi +1128126,Jose L. Rodriguez +45056,Ian Neil +15680,Barry Trivers +10153,Edward Stevenson +1547028,Gregory Veeser +44138,J. Miles Dale +14489,Howard Fast +1899111,David Matthews +112526,Allan Wertheim +60824,Jyrki Murtomäki +977988,Martin Walters +35771,Aditya Chopra +72135,James McBride +13505,Michiel Reichwein +1401560,Derick McLeod +1441353,Gary Young +61175,John Whitesell +1685017,Todd Bassman +10880,Alan Tomkins +32805,Michael Garfath +1034755,Lori Korngiebel +25458,Samir Hoon +20268,Oliver Bokelberg +905,Bruton Jones +1853469,Adam Marcus +51542,Sean Furst +1963,Danièle Thompson +130946,Charles F. Vetter +1095836,Aurélien Dupont +1040501,Sonia Anderson +1449372,Stacy Walker +77964,Mike Barker +1404548,Claudine Strasser +1367508,Steve Gehrke +1323809,Pete Woodhead +7535,Hilton Rosemarin +28500,David Gallart +1613286,Philip Alton +81220,Dante Lam +1725451,Simon Trottier +1402022,David C. Potter +1457898,Grant Lucibello +3771,Rolf Zehetbauer +1123064,Noboru Sugiyama +1399582,Lara Fox +14295,R.E. Dearing +18755,Tony Walton +1639146,Bill Doane +1799865,Morgan Marling +53639,Scott Bomar +1411085,Chris Sturmer +71401,Vincent Wang Tsung +78368,Hirokata Takahashi +959555,Todd Cherniawsky +1458530,Frank Graziadei +1374477,Conny Malmqvist +79687,Barbara Masel +66880,Thorbjørn Christoffersen +62038,James Carabatsos +1384195,E. Kim Brewster +1467549,Nancy Doyle +1407193,Peter Bundrick +1695796,Paul Koronkiewicz +1585490,William Ryan +1517909,Sylvain Cournoyer +47063,Malin Lind Lagerlöf +26146,Maeve Paterson +59987,Peter Griffiths +1424455,Alan Geldart +223990,Jaymes Hinkle +1072763,Al Plastino +47844,Frank Waldman +39202,Liz Griffiths +1414994,Robert Griffon Jr. +115553,John Collier +37952,Xavi Giménez +124549,Donald Henderson Clarke +5719,Lori Forte +1300339,David Kalahiki +35974,Gavin Polone +1575990,Michael Gunner +1517631,Rhonda Moscoe +157704,Peter Curran +8808,Joachim Fest +1616188,Mark Ritcheson +1338833,Gail Steele +5283,Karen Kehela Sherwood +19798,Randa Haines +1193,Karl Baumgartner +1677236,Greg Anderson +1403915,Robert Makolies +13084,Lance Gewer +51543,Jaye Barnes Luckett +1376893,Robert Andrew Johnson +1298887,Elizabeth Rabe +1205985,Stephan Franck +1321940,Morris Aroesti +1039270,Jeffrey Bushell +1447602,Linda Yeaney +27213,Ermanno Olmi +12841,Lawrence Lasker +1858339,Brian Rosso +1767790,Tonia Davall +1544192,María Inés Teyssié +1339060,Jeanette Haley +1258847,Renée Valente +86004,Joseph H. Lewis +53008,Mark Conte +28866,Mitch Glazer +1392094,Karen E. Goulekas +1302782,Ray Summers +17767,Geoff Zanelli +1307019,Franco Gambarana +1506367,Jennifer Santiago +1389598,Craig Pettigrew +91891,Mark L. Mangino +54443,Ruth Prawer Jhabvala +88391,Jeremy Podeswa +1677647,Max Berryhill +69702,Sang-yun Jeon +1447394,Alfred Cruz +133326,Regina Y. Hicks +91015,Scott Cochran +1556693,Jack I. Bernstein +76214,Stuart Menzies +1190769,Danielle Ghent +24882,Jacques Demy +53359,Joseph Infantolino +82445,John Wexley +130023,Stuart Burge +1401320,Graeme Hughes +1407813,Peter Zinda +1125145,Nathalie Guillaume +1529526,Ian Legg +1897876,Young Vance Cohen +136261,David Hamilton +11898,Dana Stevens +80834,Alfeo Dixon +1538822,G. Marq Roswell +1075151,Ian Cameron +1433506,Paul Stanhope Jr. +1645128,Doug Little +5140,Wes Craven +1559542,Mihai Danciu +1455302,Love Larson +1371676,Robert Reed Altman +118445,Clarence Steensen +1625126,Alain Alitbol +36180,Harry Duggins +7701,Pascale Chavance +40570,Hannes Staudinger +57604,Joel Gallen +1273395,Johnny Starke +553219,Yoshinaga Yoko'o +55252,Tim Miller +1433707,Tanja Drewitz +1184564,Steve Schmidt +602,Linda DeScenna +57135,Robert McLachlan +1398091,Damien Bera +22320,Pierre Excoffier +54841,Jake Wade Wall +1087458,Zvi Spielmann +12954,Norma Heyman +1534834,Paul Holzborn +932629,Pasupuleti Krishna Vamsi +1567301,Catherine Ashton +1081300,Akira Fushimi +80827,Shelley Roden +1413028,Lesa Warrener +65849,Robert Frazen +544755,Wilfred M. Cline +1392114,Kenneth E. Fix +1871216,Michelle Hodnett +1529489,Eleanor Behm +217624,David Storey +1037914,Dori Zuckerman +1897893,Diana Dru Botsford +1328816,Dwayne Nicol +1576,Peter Darling +65722,Danielle Lemmon Zapotoczny +9385,Kevin Kubota +21907,Emi Wada +43147,Ed Guiney +12882,Buzz Feitshans +1886655,Tony Cridlin +999886,Andrew Bennison +97710,Charles E. Sellier Jr. +41632,Giuseppe Rosati +1404217,Peter Staubli +1492957,Alex Archambault +1183662,Kelley A. McMahon +57050,Amy E. Duddleston +548450,Matt Linder +1550204,Morgan Elliott +14767,Clay Pinney +67561,Joann Carelli +1455021,Eric Pierre +72030,Rebecca Rodriguez +1347099,Scarlet Pimpernel +168782,Don McBrearty +1425978,Gary Summers +15726,Christine Langan +10668,Alec Mills +1399117,David C. Hughes +83399,H. C. Potter +1605889,Philip Waley +1170561,Vladimir Bogomolov +24823,Michèle Abbé-Vannier +70005,Geof Miller +99032,James Glickenhaus +1552997,Marguerite Pomerhn Derricks +117056,Fernando Juárez +1619098,Willie E. Dawkins +9493,Mark Peterson +1462380,Frances Connell +32635,Dietrich von Watzdorf +1176974,H.E. Scruggs +21819,Lewis Teague +1404871,Helene Oosthuizen +142164,Charles Meere +20792,Jacqueline Thiédot +16708,Roman Paul +69099,Dan Ireland +65113,Brandon Hill +61619,Vincent Sheehan +7045,Craig Armstrong +17329,Neil Burger +1554754,Cynthia L. Chapman +11687,Eric Abraham +103674,Kenneth Gamet +1361676,John Kurlander +1730023,Emmanuel Paulin +83343,Michael Lynn +16787,Tarak Ben Ammar +116849,E. Maurice Adler +29984,A. Arnold Gillespie +1537929,Reed Sherman +79414,Joe Conway +1827966,R.J. Toms +7414,Christopher Greenbury +15572,Tomas Voth +1539066,Hans Seck +77692,Jeremy Nathan +133583,Fred Wesley +28690,Gérard Moulévrier +1167719,H.C. Witwer +44741,Paul Hanson +68390,Marc Frydman +77727,Jane Smith +3390,Warren Adler +1706639,Jeff Bettis +6892,Stewart Hall +994881,Nathalie Moliavko-Visotzky +1542141,Donald C. Rogers +1607278,George Mills +1748866,Troy White +1322478,Robin Shushan +26875,Hideo Nakata +1674656,James D. Carter +72634,Joseph Lyle +1419798,Brie Ford +1128339,Felicia Nalivansky +57429,Jeffrey Reddick +49208,E.A. Dupont +978297,Pat Regan +108012,Hiroshi Inagaki +1400418,Anna Ridley +1411667,Gary Jordan +1439749,Laura Steiger +22321,Emile Ghigo +5165,Dashiell Hammett +1449499,Elio Altamura +1446663,Ronald L. Carr +21793,Neil Roach +1851736,Gregg M. Hartman +1778009,Catherine Calleson +1615281,Chris Wahl +107414,Philip Saville +1390353,Victor Ray Ennis +109910,James D. Scurlock +66747,Joe Harris +1588525,Nazzareno Belardinelli +47415,Michael Stringer +587861,Ludovic Halévy +61230,Richard Smith +1031811,Andrew DeCristofaro +1321000,Virginia Burton +76276,Jo Vermaercke +1326715,Zeljka Alosinac +16751,Frank Bracht +11454,George Bowers +1392125,J. Paul Huntsman +1400001,George Kontaxis +5664,Barry Mendel +1762793,Alain Masse +1417014,Jim Bryan +1408282,Andy Werderitsch +1550394,William Smallwood +1457890,Audrey Chon +1378716,Kimberly French +737,Jeffrey Boam +1431630,Jim McConkey +1411671,Matt Fisher +38400,Dominique Hennequin +3952,Kevin Grevioux +1394743,Hiroshi Yada +61,Robert Mark Kamen +1050634,James Lewis +1630805,Gordon Glennon +1455287,Gloria Ann 'Twinkle' Groover +52450,Dana E. Glauberman +1384395,John Bober +1767320,Ivan DeWolf +1589709,Brian Dettor +1337408,Alistair Hawkins +1328720,Ray Jeffers +1707125,Gary D. Thornton +40142,Robert Fernandez +1391605,Annie Welles +90641,Robb Moss +19503,Peter Laird +1602877,Scott Kidner +1156989,Josefin Åsberg +79180,Christopher Zimmer +3078,David Byrne +1544639,Angie Rubin +119623,Sheng Shi Chu +1807338,Jack A. Finlay +1547656,Joe Schiff +1297660,Jason England +1401672,Jiang Liu +1545744,Gelu Costache +34590,Alain Robbe-Grillet +1486822,Sarah Rubano +1086571,Christine Vasquez +1326197,Stanley Wilson +1588033,Russell Shearman +55660,Barbara Tranter +1035872,José María Ochoa +898,Mark Goldblatt +1264504,Sajid +20570,Catherine Davis +1560784,Garrell Clark +1815493,Patrick Muylkens +1517109,Adam Kolodziej +60814,Antti Leskinen +97847,Aaron Lipstadt +1418154,Pedro Jesús De la Fuente +1102573,M. Lo +1351145,Richard Heslop +1029071,Juha Siltala +99526,Bruno Vailati +77092,Joseph Badalucco Jr. +1526834,Pauline Chung +1418461,Jon S. Trebilcock +559904,Francisco Day +52182,Holbrook N. Todd +17558,Manos Hatzidakis +20719,Léonard Glowinski +1646189,Gini Kramer +27861,Aldo Scavarda +16187,Jeannot Szwarc +8571,Donald Ranvaud +1402070,Dan Edelstein +14385,Charlie Brewer +1395709,Mark Paterson +1387183,John C. Stuver +1125585,Rebecca Ross +46321,Barbie Tung +1522493,Donald Crowell Jr. +39018,Nello Rossati +1497453,Martin Perveler +254800,Ronan O'Leary +35142,Eric Sandys +30904,Samuel Z. Arkoff +89669,A. Edward Sutherland +1536379,Jennifer Day Young +977325,Jennifer Howarth +1209612,Julie Oppenheimer +13457,Thomas L. Fisher +66026,Mimi Lempicka +1300337,Lisa DelleChiaie +20643,Lorne Orleans +11099,Dante Spinotti +143286,Valentin Ezhov +1552866,Al Vasquez +1393302,Simon Gershon +1814886,Giuliano Laurenti +1392761,James Mulay +18740,Fred Guiol +6514,Robyn Aronstam +7559,Giovanni Venosta +10933,Michael Dryhurst +1432029,Carrie Gerlach +7788,Tony Reading +1567330,Neil Williamson +1547577,Junpei Oosumi +1777,Ross Katz +1178186,Kevin Messman +1600622,Paul Ainey +1402560,Saeed Adyani +42306,Tina Gerussi +230126,Albert Heschong +1538827,Gary Harris +59859,Sophie Becher +2916,Friedrich Hollaender +1410419,Ferne Pearlstein +56324,Daryn Okada +30509,Tom McAdoo +1797178,Craig Braginsky +1534932,Ron Frazier +227402,Julius Jaenzon +1584235,Rain Hart +139312,Frank J. Collins +1443053,Michael Muscarella +10876,Callum McDougall +1561104,David Roester +1170615,Michael Robins +1411670,Claire Mahoney +2122,William Hoy +139849,Edward Emanuel +83075,John R. Elliott +30253,Phil Boutelje +78012,François Girard +51919,Kees Kasander +1522494,Jack Hojohn +1476473,Louise Gaffney +1567973,Ken Tarallo +551922,Scott Wilk +8160,Dennie Thorpe +1414561,Betty Hugo +1480840,William R. Forman +32292,Claude Bolling +406354,Yvonne Yaconelli +1538942,Lisa Falk +1536971,James W. Apted +1574644,Irfan Celik +1445976,Ivan Lynch +1378756,Bob Newlan +937497,Bingen Mendizábal +5776,Jaki Brown +1566280,Nilo Otero +29923,Dean R. Koontz +1586040,Clive Reed +1309322,Fred J. Rode +1392894,Barry Kootchin +58220,Hugh Hudson +63353,Cathy Yuspa +69646,Ulf Malmros +6390,Curtiss Clayton +1402080,Missy Cohen +60871,Adele Plauche +1600621,Steena Petersen +1588238,Michael Arciaga +1410274,Simone Stubbs +1542917,Yvan Lucas +57152,Wolfgang Esenwein +67955,Fernando de Felipe +146827,Gyula Hernádi +1767053,James Zheng +1740451,Pamela Lynn Thomas +1377503,Sebastian Meuschel +9402,Brian Johnson +57950,Douglas Stewart +46470,Cornelius Ryan +1392618,Valeria Scoon +564019,Mette Heeno +70628,Seigo Hosogoe +23349,Mary Goldberg +1394783,Martin Kenzie +1319625,Marese Langan +1418455,Kathryn Powell +10440,Susan E. Morse +1601524,Teeekadet Vucharadhanin +44886,Joakim Hansson +1548533,Rob Ballantyne +1430072,Leon McCarthy +1767015,Vijay Myneni +108882,Cameron Hamza +7495,Georgianne Walken +85818,Brian Hecker +1392095,Ian Hunter +25165,Roy William Neill +1457635,Leonard F.W. Green +66074,Bryan Bertino +116723,Eddie Imazu +113041,David Betancourt +113028,David Hadaway +19619,Thierry Potok +1421720,Darrell Pritchett +58183,Michael I. Rachmil +54526,Paco Plaza +129644,Ezra Litwak +56501,Michael Spierig +1561882,David Husby +1447042,Prakash Kapadia +1457086,Andrés León Becker +1665501,William King +71042,Jay Levey +15307,Robert L. Levy +1713075,Stephen Nakamura +2034,Danny Boyle +14560,Martin Müller +1295145,Charles Shaw +1173748,Frederick J. Jackson +20638,Han Sanping +1382732,Michael Flynn +6041,Brian Tyler +46018,Tom Fährmann +1323761,Sukari McGill +1557586,James Lewis +70817,Vic Bateman +1559512,Martin J. Layton +1537577,Zoltán Toldy +1020061,Caroline Duncan +1069800,Thomas Ostrowski +150093,Ben Taylor +1420244,J.R. Salamanca +1485647,Frank Charles Lutkus III +1586629,Pompiliu Avram +1419251,John Subotich +58086,Ofer Bedarshi +1549001,Ashley Fardys +44029,Fabienne Rawley +1606888,Maurice Barnathan +1550240,Stuart Abramson +27181,Carlo Siliotto +68488,Bobby Rock +1546907,Patrick Hogan +17250,David Lascelles +89739,William H. Terhune +21150,Mike Maggi +7765,Walon Green +1772400,Gloria Coffey-Sharrieff +75306,Annelies Norland +66759,Charles H. Schneer +1603626,Loïs Koenigswerther +1099266,Serban Porupca +1333222,Steven Ritzi +1069673,Kar Fei Cheung +1224061,Alysse Bezahler +1342254,Jeffrey W. Petersen +88858,Aleksi Bardy +11920,Erich Kästner +17116,Rika Nakanishi +136513,John R. Smith +1455301,Maria Håård +85107,Danny Daniels +89924,William Clemens +1283379,Peter Albrechtsen +19818,Lluís Llach +72406,Adam Small +69105,Sy Bartlett +1020770,Rita Roland +57062,I. Marlene King +1410551,Robert Mackenzie +41902,Rune Schjøtt +20593,Guillaume Schiffman +1173720,Marryam Modell +51026,Daniel J. Heffner +58867,Gregory McDonald +92779,Pablo Proenza +956198,Garrett Warren +65677,Don Mancini +1538449,Jeff Winn +1436789,Pablo Bürmann +1071189,René Cloërec +139210,Manmohan Desai +17670,Emile Kuri +932222,Nick Doob +95601,Wilson Rawls +28902,Gregory Widen +21146,Robert F. Newmyer +14093,Jonathan D. Krane +75301,Gethin Creagh +550828,Joe Hicks +1384148,Shin Watarai +191745,Paul Ryan +1454540,Clay Zimmerman +550945,Hideo Nishizaki +101548,Fabio De Agostini +212371,Rob Flanagan +117206,Kay Georgiou +22816,Jim Van Wyck +60102,Michael Wandmacher +112662,Simon Abbott +1424180,Jonathan Taylor +1441327,Thomas L. Pankiewich +2774,Ernest Haller +1397822,Jon Johnson +99935,Alan J. Dachman +6050,Ueli Steiger +40145,Zak Othmer +1407201,Mike O'Shea Jr. +1116327,Eiichi Takahashi +1390216,Skip Steloff +1634294,Michael Jacobs +1150484,Marion Jackson +1597198,Sam M. Cobb +1540353,Mark Kochinski +1322017,Jann Engel +14311,Mary Malin +29727,Michel Michelet +37501,José F. Aguayo +54242,Jim Burke +1928,Martin Jurow +1175807,Glenn Chandler +1557599,Nathan Crum +1341848,Gail Rowell-Ryan +94237,Graeme Ferguson +25831,Carlos Barbosa +1395761,Sean Wheelan +1400407,Chris Helcermanas-Benge +27033,Edward L. Alperson +1156007,Luca Montanari +1551667,Vince Peets +1406083,Elizabeth Flaherty +58070,Bonnie Bruckheimer +1451684,Matthew Maners +563703,John Cork +60912,Diane Smith +1389548,Anna Worley +7759,Jack Van Domburg +1346141,Veronica Castillo +1396495,Anne Andersons +54967,Sam Weisman +232458,Jim Henry +1428521,AnnaCarin Lock +1607279,Peter Bolton +1189771,Harris Charalambous +1420386,Joseph McGirr +15846,Vera Mitchell +8462,Vadim Yusov +49926,Mike Frankovich Jr. +1529005,Paul Jefferson +78488,Cathy Malkasian +1070016,Dorian Vernacchio +933574,Donna Rosenstein +1340115,Rick Dunford +1416795,Jonathan Arkin +970,Celestia Fox +62759,Ned Bastille +1414538,Mishell Chandler +1448089,José Antonio García Villameriel +1527926,Matt Toll +954164,Georgina Pope +1412206,Phil Walker +1856488,James McLoughlin +1057677,Lewis Simeon +1397317,Emily Ferry +21589,Paul Peters +77491,Theodore R. Parvin +1179731,Kate Stark +68519,Andrey Zvyagintsev +1333220,Michael Saccio +1045125,Christina Varotsis +56738,Michelle Manning +165752,Fielder Cook +1891672,Harry Pappas +1753765,Krissy Korn +18213,Jean Gruault +1547770,Robert Fernandez +81139,Angela Mancuso +103676,Howard Lydecker +952018,Karen Koch +1868837,Dan Buckman +82506,Irene Litinsky +1125638,Michael Maher +62741,Erik Olsen +1463388,Lisa Chino +74039,Leslie Morgenstein +1387546,Frank Rehwaldt +132832,David Seidler +1462273,Katie Kempe-Smith +1625920,Susan Haldenby +32083,Christopher Frank +9430,Richard Adrian +51021,Patrick Melton +70298,Mario Camerini +1724248,Graeme Burfoot +33027,Max Brand +313511,Christopher Miller +1576027,Chris Gilbertson +134572,James Long +10038,Walter Carvalho +1401117,David Linck +76271,Bart Bleuze +1784166,Alan Hawkshaw +32352,Desideria Corridoni +29018,Dana Goldberg +1458337,John Gentilella +20105,Denys N. Coop +1521697,Rosario Tapia +1708860,Laurel Lyn Schulman +1424941,Mick Durlacher +1613969,Cheryl Quarantiello +1521693,José Luis Capilla +1609505,Boleslaw Kamykowski +1525894,Olivier Pron +1393014,Kristin Solid +1411342,Evan Hercules +1041666,Cristina Girones +15312,Bruce Geller +1596896,Richard Murphy +407,Gill Dennis +1173410,Joe Landauer +37280,Dany Cooper +1707,Stuart Beattie +151084,Perttu Leppä +76259,Geert Paredis +1402079,Matthew Reedy +52338,Werner Koenig +1434774,Robert P. Marcucci +68675,Hsiung Pan +198641,Ethan Tobman +1407674,Mark Stibbs +43621,Frank McGuinness +1013535,Györgyi Szakács +41890,Marisa Frantz +29228,Robert Bernstein +7099,Maciej Maria Putowski +30091,Kobi Jaeger +51448,Lauren Weissman +64729,Barry Zetlin +1215,Raja Gosnell +1429244,Beverli Eagan +4399,Timothy Burrill +1459201,Kathryn Waters +74051,Alain Veyssier +20413,N. Peter Rathvon +41634,Giuseppe De Santis +1399957,Martin Bernstein +1473359,W. Michael Lewis +1322139,Caroline Alder +1419040,Juliet Phillips +1178593,Audrey A. Blasdel +138617,Jonathan Null +1593330,Dudie Maschmeyer +1696937,John V. Cartwright +1406794,Dow Griffith +18835,Marcello Masciocchi +49421,Claudia Hahne-Herberg +1394265,Philipp Sellier +1574641,Donald Beaulieu +1396496,Carmen Ruiz Laza +1379160,Nathaniel Massey +14292,Sidney Gilliat +545529,Robert Franklyn +1447156,Jennifer Apel +1409395,Manuela Grosu +51730,James H. Nicholson +60665,Jo Edna Boldin +227703,Tanit Jitnukul +1099016,Tom Dunbar +1578387,Dietmar Raiff +14053,Harry Kleiner +56974,Andrew Kurtzman +72260,Russell D. Markowitz +1395438,Val Drake +1346271,Elba Luis Lugo +101225,Bert I. Gordon +1337459,Jason McFarling +1393866,Felicity Cottrell +1521139,Michael McCuistion +68440,Robin Guthrie +14045,Dorian Cheah +9358,Pierre Guffroy +1393568,Jim Bridges +10719,Kenteas Brine +1761066,Renzo Bartolotta +1044184,Colin M. Brewer +551521,Shana Landsburg +1460630,Marie-Eve Tetrault +63558,Jason L. Wood +1704231,Guy Efrat +1570751,Agnes Rodriguez +23546,Brandt Gordon +1453308,Cary Fisher +2087,Richard Fleischer +1405308,Juan Carlos Pérez +72024,Malcolm D. Lee +1588523,Maurizio Giustini +1341336,Fred Judkins +119148,Danny Beckermann +11017,Elliot Graham +1551219,Sally Boldt +19904,Emiliano Otegui +71006,Ralph Brunjes +64060,Craig Bassett +1462669,Heather Kelton +16337,Juliette Ménager +73390,Laurence Esnault +1430498,Lee Walters +1318448,Peter Emmink +39023,Richard Hartley +1203291,Ferenc Rófusz +75290,Andrew de Groot +1433983,Georgina Williams +1136769,Martin Langenbach +1552548,Michael B. Russell +2004,George Abbott +1373695,Sandra Solares +1534830,Robert Allan Guernsey +92610,Xavier Sol +1556969,Tina Phelan +7309,William Russell +1530726,Larry Zanoff +49187,Reinhard Besser +6026,Ralph Rieckermann +10752,Dominique Fortin +33526,Michael Stevens +1677516,Alison Harstedt +9153,Gemma Jackson +17057,Philipp Stahl +1339455,David Fernandez +1704239,Kendra Levenberg +9856,Ian Fleming +1836473,Tammy Glover +9531,Ed Morris +457430,Dave Morrison +33444,Ben van Os +1406765,Sean M. Harding +110643,Jill Wilfert +93651,Eduardo Sacheri +1385925,Christopher LaVasseur +1609222,Bartłomiej Gliniak +1395463,Mitch Dubin +1841640,Randall Thropp +47059,Gerardo Herrero +1412741,Paul 'Salty' Brincat +87908,Mark O'Halloran +1400415,Meagan Carsience +36696,Caroline Smith +30715,Terrence Malick +57142,Andrew Marton +10588,Walter Shenson +1400534,Claire Folger +46610,Robert Anderson +1530135,Hayden Jones +20108,Paul Rabiger +25167,Arthur Conan Doyle +91799,Vico Vaccaro +19460,Saul Bass +1644085,Annelise Hauberg +1384398,Christine Wilson +6740,Luke Geissbuhler +1407879,Joseph Tsai +1379983,Simon Price +1073307,Ian Slater +126676,John W. Considine Jr. +4952,Nancy Foy +91768,Kurt Anderson +1161231,Bobby Burns +1674669,Paul Vigay +2425,Hervé Schneid +59848,Jean-Baptiste Andrea +24177,Michael Rotenberg +1609513,Jerzy Tomczuk +1481527,Dieter Stempnierwsky +29971,Hugh Wynn +18308,Steve Barron +72500,Yoshitaka Asama +146828,Luca Karall +577610,John Fox Jr. +57536,William Blinn +1458339,Jack Kerns +117235,Stuart Morton +91126,Daniel J. Adkins +63435,Seung-yeong Choi +9,Graham Walters +35735,Nikhil Advani +82171,John M. Stahl +1521699,Rafael Leal +53811,Stephen J. Lineweaver +1881569,Chris Mortley +6596,James Agee +1424926,Justin Pitkethly +1073044,Tom Bjelic +1896001,Rick Crank +1400323,Jean Roch Bechameil +1013056,Jacqueline King +3183,Don Murphy +1461154,Chris Lentz +1609509,Zdzislaw Papierz +70806,Bernard Bouix +11421,John Esposito +1730427,Adam Wilks +1412228,Steve Nelson +1571770,Greg Faucett +233721,Tamás Banovich +1017020,Christian Schulz +1574632,Eric Lafrance +3227,Steve Pink +82838,Horace McCoy +44125,Chris Bancroft +1398081,Youssef Abagourram +1475844,Fidel Pizarro +225499,J. Mills Goodloe +1123061,Carly Hunter +1547899,Phil Stern +65351,Robert Barrere +53526,Amanda McArthur +70610,Matthew Weisman +18194,Paul Guay +134806,Karl Hajos +1483091,Stuart Staples +12119,Charles F. Wheeler +1442508,Joseph A. Ippolito +106601,Margaret Gruen +86035,Maria Maggenti +1441280,David Beetham +1552172,Vivian Zink +1855220,Jason Hunjan +96910,Elayne Barbara Ceder +1560752,Hope Bryce +79142,Charlie Savill +1337455,Phillip Tellez +5633,Barbara Haberecht +1043953,Larry Pizer +943824,Morton Swinsky +22135,Holger Gross +1584577,Melissa Hall +104876,James A. Contner +29885,Tudor Gates +57011,Greg Norberg +80425,Christopher Buchanan +1832337,Lynda Gordon +1772962,Naoko Tsukeda +522946,Peter Hartwig +37595,John Ballowe +1426004,Laurel Bresnahan +57658,Jens Körner +18494,Eric Gautier +933697,Henry S. Kesler +1174268,Subodh Das +1402016,Carolyn Elias +6626,Jean-Yves Escoffier +43130,Guy Hibbert +1671650,Leonel Pedraza +11651,Doug Mitchell +1396501,François Milly +1456094,Andrus Prikk +1681628,Silvia Grabowski +106158,Josh Wallace +1409750,Steve Shaw +1179134,Trysha Bakker +41084,Debra McGuire +19060,Jean-Claude Laureux +59530,Antonio Calvo-Dominguez +1120588,Oriol Maymó +2329,Viorel Ghiocel +1599632,Peter Mavromates +1311,Michael Lynne +1892491,Ron Cooney +1877361,Ben Parker +1317887,Franz-Josef Spieker +1576029,Wendy Ellerker +19351,Søren Skjær +27038,Julia Chasman +1546902,Louis Sabat +81184,Dorothy B. Hughes +61925,Nelson Leong +18606,Takeo Murata +1939,Philip H. Lathrop +1236458,Ronnie del Carmen +7418,Mary Zophres +554929,Dilip Mehta +1342663,David Olson +40546,Guillermo Rosas +16464,Francis Kenny +150150,Min Kyu-dong +61928,Lawrence Steven Meyers +11909,Lars-Owe Carlberg +1047251,Mototaka Kusakabe +16938,Renny Harlin +1068828,Penelope Mortimer +3922,Joyce Nettles +4066,Carl Foreman +1706982,Alecia LaRue +1004924,Patrick Kiely +1463185,Elizabeth McClurg +15520,Bill Lee +25184,Burt Sugarman +934818,Tsutomu Kawahigashi +57884,Norman Snider +1800148,Juan E. Torres +9150,Debra Hayward +122987,John Burgmeier +14692,Nick Castle +1678653,Liz Borges-Herzog +1390524,Jay Wilkinson +1454749,Jerrold Howard +35115,Luigi Musini +1394745,Marc Chow +16384,Ralph Bakshi +1288845,Richard D. Kent +30256,John Leipold +9167,William Hjortsberg +26357,Guy Villette +23865,Michael Bradsell +1602316,Balázs Bélafalvy +1304276,Steve Baine +17134,Hyun Kim +51345,Reed Smoot +21406,Shimon Arama +3184,Clayton Townsend +11000,Bill Todman Jr. +1412450,Jarrette Moats +1172414,Melissa Moseley +1317673,Elis Y. Lam +1189633,Alejandro Lubezki +1536000,Kevin J. Lang +1656603,Suzanne Durrenberger +997667,Ola Handberg +1469355,Marieke Bastiaans +551931,Don Camp +1559472,Jack M. Marino +7422,Patrick Williams +1734857,Misha Bukowski +1642832,Fiona Donovan +1761068,Jimmy Culligan +1445978,Marc Corriveau +121227,Frank Melford +17948,Reynaldo Villalobos +65407,Daniel H. Blatt +559913,Marshall Schlom +31194,Susanne Linnman +9270,Sarah Knowles +19852,Robin Swicord +3945,Charles D. Hall +1411541,Missy Papageorge +6888,Clark Peterson +114363,Julien Rey +1866806,Randy A. Jablonka +1632605,James Buxton +1790552,Gary W. Lang +1401642,Teresa Hinton +1564865,Jeff Bushelman +552427,Lisa Blum +1349046,Matthew Gough +102339,Ernest D. Farino +22598,Dore Schary +67688,Maurice Zimm +91937,Angela Heald +37499,Gustavo Quintana +1274552,Nikos Kypourgos +51468,Madala Kunene +68755,Adam Bernardi +29886,Antonio Rinaldi +55773,Nathaniel Méchaly +59973,Debra Martin Chase +45497,Paul Hipp +1536111,Dave Croft +1807197,Richard Raguse +56594,Kimberly Ray +11056,David Rayfiel +1171860,John Galt +1189045,Leslie Hodgson +1460475,Nate Lowe +7561,Carlotta Cristiani +122963,Phoebe Ephron +16780,Chris Kraus +11420,Gianni Nunnari +35788,Reza Shariffi +40378,George McCowan +34897,Nelson Lowry +12107,John H. Williams +40183,William H. Clothier +1603623,K.L. Puldi +1725253,Ian Seymour +1448620,Kirk Johns +107416,Sandy Pearl +1462679,Mark R.R. Farquhar +946,Janty Yates +7449,Shinobu Hashimoto +1407192,Roderick Alleyne +41532,James Richardson +7626,Avi Arad +15432,Robert Hein +1407878,Steve Mann +6334,Peter Possne +13469,Jon Bunker +2747,John Steinbeck +47283,Steven Rogers +1551960,Fabrice Maux +61594,Céline Garcia +956657,Christ Zois +54927,Mario Conti +1066807,Bernice Rubens +11268,Roberto Malerba +92214,Alain Brochu +10639,David Watkin +62798,Marc Joubert +142167,Mark Wolfson +1122495,Kim Dawson +1815533,Wendy Hogan +10200,Terry Ackland-Snow +1529011,Vanessa Woolgar +15149,Sarah Kernochan +1598761,Don Irvine +65364,Cathy Cash Spellman +1408362,Wayne Leach +117238,Steve Single +437,David J. Bomba +131792,Alan Jacobs +8955,Paul Lewis +20832,Sôjirô Motoki +138451,Shunsuke Kikuchi +1584236,Tov Belling +1449158,Derek Becker +9566,Robert Jauregui +1633182,Jeffrey L. Goldstein +1172911,Rabindranath Tagore +1536112,Julian Pinn +195123,Dick Poston +384204,Anthony Scott +84340,Eric Guggenheim +1546757,Jon Baker +1102140,Adam Somner +1774546,Henry Antonacchio +53218,Chen Kuo-Fu +231090,Alex Vetchinsky +1209613,Scott H. Ramsey +4614,Mac Ahlberg +1102578,Marc Lieberman +10011,Elizabeth Haffenden +1399991,Roger Dietz +68682,Boris Sagal +1377839,Dan McCall +1321372,Todd Kleitsch +1401667,Michael Bell +1112606,Linda Kandel +14962,Dorothy Spencer +58445,Nobuyuki Takahashi +1583005,William Cody +78747,Mani Ratnam +137230,Natalie Thompson +1560273,Guy D'Alema +1402017,Réjean Forget +16941,Fernando Bovaira +958533,Alfred Gilks +18173,George DeTitta Jr. +227027,Gladys Lehman +1416433,Samuel R. Harrison III +104871,Peter Gent +1636,Timmy Yip +94851,Gerald Wilson +49831,Ric Kidney +86038,Josh Crook +711,Robert Watts +73479,Alexander Buck +1123067,Shinichiro Ishikawa +9791,"Ring Lardner, Jr." +21937,Gaëlle Barenton +1537431,Greg Addison +31251,Herbert L. Strock +1542943,Artie Ripp +996,Eric Serra +928371,Margot Wilson +265751,Eddie Saeta +2748,Paul Osborn +1462624,David S. Smith +1264276,Dmitriy Lesnevskiy +1684368,Jim Kontos +1567975,Michael J. Birnkrant +1097894,Kurt Kempler +127522,Gottfried Reinhardt +68583,Omar N. Bradley +4196,Mark Haack +60134,William Ivey Long +73923,Caroline von Senden +1088249,Byrd McDonald +1453044,Richard Manginsay +5549,Isis Mussenden +91079,Tom Yeager +1454028,Paul Berry +90156,Robin Nishi +101412,Maureen Norton +11242,Niklas Antonell +142156,John Fundus +1749906,Roy 'Bucky' Moore +70821,Charles G. Clarke +1029068,Jaakko Heinimäki +65014,Antoinette Albert +17246,Phil Morrison +1460786,Stephanie Rossel +11524,Robert Israel +57020,Aril Wretblad +2948,Michael Nozik +37272,Andrew Mackie +1700673,Jeff Cassidy +1462400,David Ragghianti +9361,Michael LaViolette +1892499,Steven Chambers +1455313,Martin Strömberg +56976,Victor Hammer +66039,Damon Santostefano +10574,Mark Livolsi +1549261,Patricia Eiben +1561296,Michael Proscia Jr. +1413156,Jerrold F. Brooks +16499,Henrik Fett +64784,Brian Paschal +6874,Ben Waisbren +1433225,Marion Zilversmit +1324793,Persefone Karakosta +36694,Maggie Lunn +71883,Lucero +1520421,Norma Ramos +1302618,Lisa Layman +1611792,Marc Julien +1171004,Jonny Franklin +1537206,Brian A. Tunstall +39123,Venus Kanani +1335075,Shane Greedy +1586347,Adam Barnhart +1374648,Annabel Davis-Goff +1419418,David Kindlon +57719,Alison Bagnall +55162,Bennett Yellin +42294,Alan Jones +1530891,Philip Faulkner Jr. +1454698,Randy Cartwright +1614970,David Graham +1363346,Emil Gigov +8007,David Eisenmann +67756,Michael Austin +1562448,Jacqueline A. Shea +21585,Craig Perry +2336,Stefan Will +1441238,Thom MacIntyre +76016,Christopher Tandon +1555380,David Rosenthal +1044415,Hannah Hempstead +1871,Ueli Christen +1401741,Matthew M. North +61158,Stephen Arndt +1889471,Rini Lemanova +1412215,David Fulton +91146,John Neufeld +931316,Federico García Lorca +1141614,Ken Cooper +63892,Michael Burton +81117,Leonard Gardner +73175,Helga Poche +5787,Ferenc Molnár +8561,Bráulio Mantovani +1602867,Steven Fidler +58059,Chris Koch +1401374,Robert Earl Craft +41832,Jack Causey +1781,Lance Acord +76565,Petter J. Borgli +12757,Alisa Tager +67809,Fitch Cady +98015,Marie Halvey +38806,Suzanne Caplan Merwanji +1419155,Pascal Dedeye +1593500,John Sleep +1394742,Simon Chamberland +44546,Joseph Manduke +1497382,Jack Courtland +11791,Edward 'Tantar' LeViseur +69942,Tarik Hamdine +1545475,Quentin Harris +1864796,Jesse Moyes +1408193,A.J. Vesak +1470641,Alberte Garo +70937,Tony Aboyantz +1780233,Jerry Hall +929985,Ahrin Mishan +56697,Charley Beal +3083,Mario Puzo +1567132,Gilles de Turenne +8311,Farah Khan +1207591,Don Weeks +1790566,Louis F. DiFelice +1619096,Dani Morrow +63939,Philip Alan Waters +233448,Anthony Bodden +71336,Marcia Brandwynne +83949,John Strysik +69252,Theresa Marie +57257,John Tobias +74323,Tania McComas +24970,John Asher +1463809,Thomas Kuo +1368864,Chris Jenkins +1798033,Alex Desfonds +1437034,Kristel Leesmend +15559,Tobias A. Schliessler +1224756,Marc Brandel +91798,Lionello Meucci +1319629,Lee Grumett +73276,Ted C. Bemiller +1725889,Mark de Coste +1465667,Sarah Love +1536652,Giuseppe Serrandi +1616199,Alfred De Liagre Jr. +1051646,Stefano Falivene +5028,Curt Siodmak +1345670,Charlie Bravo +8755,Carlo Gervasi +65816,David Hillary +1117347,Simon Atherton +61628,Danny Ruhlmann +1723532,María Navarro +1358326,Masahisa Himi +1404230,Sidney Ray Baldwin +61177,Dan Hermansen +40383,Nathan Kahane +16514,Robert Chartoff +1398932,Rick Forsayeth +1452748,Hernany Perla +16750,Ray June +59652,Russ Chasney +1581175,James Doh +57729,George Watters +1427546,Yvonne Axeworthy +1455566,Sean Eckols +1405419,Nick Monton +1120503,Walter Blake +1099274,Lodge Cunningham +100134,Götz Spielmann +1538127,Michael Cipriano +57199,Mark Mylod +1428511,Prudence Emery +1023351,Harry J. May +1405373,Audrey L. Anzures +57914,Long Cheng +1364799,Michael L. Hall +1400546,Greg John Callas +131709,Bartosz Prokopowicz +1184485,Jon Hart +959668,Derek Frey +1328731,Rebecca Roper +30055,Sherri Strain +5491,Stuart Craig +1421269,Chris Holmes +76011,Zac Stanford +720,Jeff Jur +51875,Andrew V. McLaglen +1204212,Victor Metzetti +57620,Raymond Wong Ying-Wah +25795,Vittorio Bonicelli +16642,Ron Lambert +188517,David Hamilton +7746,John Andreas Andersen +932238,Nina Ruscio +29801,William Tuttle +36188,Larry Meistrich +1184296,Jacques Chardonne +56886,David Kirkpatrick +587376,Paula van der Oest +1451229,Luc Desmarchelier +1425975,Joe Curtin +1436309,Craig Tanner +955396,Bonnie Stauch +1321334,Molly Grundman +29810,Bernhard Kaun +1303295,Michael Rafferty +67236,David Varod +60937,Seth Reed +125544,Tim Fywell +1262251,Sai Kan Lam +91392,Chris Corso +75083,Daniel Phillips +1605714,Fanta Traore +55046,Etgar Keret +35318,Ken Annakin +25832,Tim Beach +1376276,Mike Flicker +9158,Sharon Maguire +48566,Alf Sjöberg +1469785,Barbora Adolfova +1341414,David M. Roberts +1271932,Stephen Rosenbaum +1624487,John Miles +56720,Solon So +1413041,Keith Mason +1418302,Kevin J. Jolly +161858,David Raynr +61087,Mennan Yapo +10149,Robert Sparks +57747,C.K. Horness +63721,Michael Mendelsohn +1637496,Fran Cruz +1619095,Adam Barth +27519,Babaloo Mandel +1370948,John Riordan +586582,R Kannan +227412,Kieron J. Walsh +76209,Di Biggs +1370949,Avram D. Gold +1864222,Richard Friedman +1399072,Deborah Maxwell Dion +2240,Darius Khondji +1413944,Birgit Elsaesser +64179,Leslie Urdang +54163,Stacy Maes +236540,Mikael Ekman +1406815,Tim Lanning +1557,Carl Laemmle Jr. +1704,Gore Verbinski +1585806,Thomas Frischhut +1367566,Libbie Barr +137478,Erez Mossek +1800154,Diana Schmidt +1601526,Nadia +1548001,Michael Cole +8429,Clark L. Paylow +1556960,Sarah Hanna +551523,Dana R. Woods +53357,Rob Green +1377220,Doug Hemphill +1120151,Arthur Stibolt +1462699,David Howard +52042,Richard Vane +41286,Ralph Kamp +38414,Bill Hiney +2763,James Basevi +23547,Clive Thomasson +1567924,Joel A. Ruiz +1727319,Julie Belthoise +213449,Jarmo Lampela +1327025,Stephane Ceretti +91105,Thomas Ford +1554886,Larry Rench +62162,Tracey Edmonds +4197,Clay A. Griffith +41891,Karl Formander +133793,George Mihalka +578077,Len Harris +7131,Larry Karaszewski +120033,Frank McWhorter +58415,Stanley Shapiro +557444,Matthew C. Jacobs +1613313,Henry Badgett +1192700,George Drakoulias +24534,Georges Simenon +1490603,Eileen Stringer +20967,Dick Hyman +51703,Steven Stabler +141174,Giya Kancheli +1392085,Daniel S. Irwin +1402081,Joe Sevey +21568,Keith P. Cunningham +385451,Michael J. Sheridan +89981,László Benedek +1398979,Abby Treloggen +236844,David Rimawi +6189,Daniel P. Hanley +29789,Jim Samson +88200,Pawel Mossakowski +1400348,Chad Rivetti +74950,Makoto Kamiya +34554,Graham Longhurst +80176,Jerry Frankel +91306,Romano Albani +1553244,Scott M. Robinson +1400104,Darren Fanton +1196802,Michael Erdmann +147288,Ray Brown +20859,Elisabeth Tavernier +1551655,Terrence B. Zinn +1540844,Luminita Lungu +81889,Julie Reichert +4337,Agi Orsi +78121,Laurence Ferreira Barbosa +91327,Giancarlo J. Sini +15409,Anita Dann +1461716,Willie Morris +1217086,Raymond Menmuir +278,Gustavo Santaolalla +2997,Scott Rudin +59984,Marco Pontecorvo +1593266,Oscar Gomez +72427,Alan Rudolph +38658,David Connell +1790958,Sandra Scott +86293,Robert M. Young +1405243,Brian Baverstock +23905,Lynn Kressel +11350,James Boyle +799,Harold Faltermeyer +16207,Michael Brown +91051,Colleen Callaghan +47205,Gary Davy +77623,Ed Anders +39965,Dana Istrate +1274120,Alberto Esteban +20778,Dany Everett +70606,Hermann Kopp +113337,Aleksey Balabanov +28157,Trevor Waite +1333088,Cheryl Kilbourne-Kimpton +12383,Chris August +1965,Vladimir Cosma +1550217,Lorraine Walker +1425856,Natasha Grachova +1078,Mathilde Bonnefoy +63920,Jim Wheat +1299126,Fredda Weiss +78545,Conor McMahon +983050,Howard Epstein +47788,Tariel Meliava +9388,Jeremy Alter +73306,Gregory Miller +1401354,Wendy Cox +1309884,Joe Dzuban +1429528,Michael Warga +581062,Jacques Ralf +4358,Charles Lederer +1321272,Matt Gray +1447587,Peter J. Deluca +1397808,Tom Ward +76205,Robert Leo +705395,Elinor Glyn +1770873,Doug Cowden +65456,James Clayton +9057,Harold Rosson +1409238,Peter Velciov +588951,Malou Schultzberg +19834,Aixalà +20786,Randy Moore +91173,Deborah Ricketts +50770,Bruce Toll +50855,Mark Rosenberg +1422853,Christopher Lloyd +60440,Brian Bird +1525209,Carrie Foster +1536572,Dominic Ackland-Snow +52379,Tim Jones +96387,Petr Zelenka +1203136,Stephen Miles +1454657,Jonathan Daw +38807,Aradhana Seth +1561298,Glenn Lloyd +47927,Christopher Franke +1367365,Kelly Vandever +1856497,Matthias Donnelly +1468801,James Thomas +1048458,Saul Metzstein +1407230,Ralph Watson +58110,Horst Rieck +1538718,Marco Cattoretti +1534622,Corey B. Yugler +52593,Van Cleave +1551041,William Sarokin +1559634,Richard Rolf +10364,David Robbins +88912,Matti Grönberg +7653,Glenn E. Anderson +1717520,Craig Baron +92207,François Barbeau +1410126,Eric Horstmann +79790,Rafael E. Sánchez +109911,James D. Scurlock +6869,Mike Fleiss +545535,Lola Huo Xin +1400489,Christopher Weiser +1406101,Tiffany S. Griffith +9420,Jules Cook +1156888,Tom Cross +32353,Maria Teresa Corridoni +8929,Charles Crichton +1452255,Aaron Crothers +44725,Curtis Harrington +957661,Regina Graves +69104,James R. Webb +74938,Kathryn Price +38883,Arnaud Desplechin +6098,Veit Heiduschka +58868,Troy Miller +46916,Mark Paladini +1586331,Kirk Chiswell +237921,Daniel W. Barringer +554823,Conrad Salinger +1776548,Christina Rollo +57680,Dale Pollock +1610058,Aneta Brzozowska +937648,Peter Schønau Fog +1762646,Robbie Bolick +1377132,David Luckenbach +34173,Ben Oakland +1688600,John Armstrong +20292,Jan Roelfs +1452327,Erik Curtis +1833617,Paul D. Boydston +1640573,Katherine Orrison +1128253,Marc Ashton +1405218,Nathan R. Fitzgerald +4059,David Lubin +114852,Rikki Lea Bestall +70250,Newt Arnold +9587,Walter M. Scott +33144,Robert MacDonald +1278108,Felipe Meléndez +1559633,Leigh Bishop +1401723,Matt Morris +1667234,Raine Hall +1540600,Ryûichi Shikita +46323,Raymond Chow +18334,Maria Paola Maino +67181,Charlie Lieberman +1046435,Richard Quinlan +1392105,Branko Racki +949179,Sara Colleton +1272472,L.P. Hartley +53469,Tina Nigro +100131,Garson Kanin +1389594,Michael Tackett +1705309,Alexandra Tucker +25468,Kikumaru Okuda +240119,Jean-Louis Milesi +7346,Albert Myers +186721,Ron Ames +1597220,Luke O'Byrne +1602327,Paolo Mantini +10201,Michael Clifford +10092,Robert J. Flaherty +20487,Neil Kopp +105568,Edmund Beloin +53182,Nancy Nye +7052,Adam Kirley +1416826,Amy Leigh Johnson +1598749,William Chad Strug +1377130,Michael Owens +1780231,Andrea Isaacs +1443840,Louise Cross +5551,Christopher Markus +33037,Ariane Krampe +41710,Walter E. Keller +63961,Brett Rosenberg +70607,John Boy Walton +415386,Takeo Ito +67594,Sophokles Tasioulis +41753,Edmund Grainger +109587,Neil Hunter +1341789,Mark Freund +34112,Sam Katzman +1409240,Tony Magaletta +1878421,Rob Cameron +68900,William Wharton +3257,Eddie Harman +64168,Allan Lee +1538941,Daniel McKay +68942,Ron Kalish +69676,Tom McMurtry +60891,tomandandy +53193,Elisa Briganti +1404739,Steve Koster +105567,Charles David +75628,Anita Gibson +24076,Judith Kaufmann +37239,Abbas Tyrewala +5585,Barbara Ling +84107,Shakim Compere +1034748,Tricia Wood +12085,David N. Weiss +1886659,Douglas D. Kelley +67448,Pierre La Mure +73395,Édouard Weil +41143,Robert L. Kimble +57746,Yong Duk Jhun +63962,Bill Murphy +1355596,Alexandra Mazur +68334,James Spring +1457912,Mark Lawton +66887,Maurice Gibb +1532073,Gioia Birkett-Foa +67265,Lucio Godoy +554848,Chen Changmin +577,Fred Frith +37428,Andrew Precht +1610044,Marek Kukawski +77974,Glenn H. Mæland +35147,Lucio Seixas +62873,Lesley Dyer +120410,Greg Mellott +1412444,Michael Davis +1423412,Janie Dahn +30294,Borden Chase +41671,Nimród Antal +1310226,Florenz Ziegfeld Jr. +557818,Jonathan Kesselman +128997,Anna Maria Montanari +1400353,Africa Zayas +7290,Miléna Poylo +142716,Kazuo Kasahara +83589,Becca Topol +72253,Alfred Lot +5360,Adam Kimmel +1394965,Rainer Gombos +1856483,Gabe Bartalos +39978,Jeff Stanzler +68281,Justin Kerrigan +58221,James Crawford +1416980,Kimmo Vänttinen +1644927,Hroar Hesselberg +1599489,Florian Käppler +1851734,Paul Dowler +1867769,Graham Berry +28162,Jill M. Ohanneson +57758,Torsten Künstler +2159,Marilyn Goldin +61822,Bruce Dunn +173,Andrew Eaton +172907,Michael Ryan +37636,Annie Périer +7102,Janina Krassowska +63977,Hans Christian Andersen +212135,John Brian King +1440848,Joshua I. Kolden +1460785,Ilene Pickus +1049695,Hugh Scaife +1353879,Milly Burns +1855230,Suzy Strawn Scott +1200282,Camille Benda +1573107,Joseph W. Baliski +1643610,Bob McKnight +53178,Mike Tollin +19535,John Rogers +1567833,Wally Heglin +22808,Laurence Malkin +2527,Cherie Baker +1403876,Olaf Wendt +1520396,Alejandro Varela +1708304,Chantal Bergeron +17084,Waldemar Pokromski +1564867,Richard Raderman +129552,Thornton Freeland +8588,Claudine Franco +23781,Jeremiah O'Driscoll +19932,Laurent Deroo +6889,Donald Kushner +16233,Volker Schäfer +19423,Sidney Beckerman +1427497,Louise Fisher +66715,Elliot Lawrence +1753455,William B. Griggs +1509357,David Price +1296,Bruce Berman +50539,Caroline Champetier +1026685,Einat Glaser-Zarhin +10578,John A. Machione +1326580,Antoine Baud +24527,Chris Ervin +1877171,Laurence Flynn +5325,Leslie Holleran +1310064,Frankie Karena +117168,Hank Braxtan +21149,Dan Lieberstein +23828,Christa Schamberger +1395367,Bill Almeida +1536927,Dianne Kennedy +1400812,Hugh Waddell +1799869,James Brettell +1401362,John 'D.J.' Des Jardin +6227,Paul Ritchie +71130,Michael Dilbeck +35455,Hugues Tissandier +1322480,Palmyra Delran +554041,David Pabian +153669,Bernard Girard +1074161,Lisi Harrison +54607,Bahman Ghobadi +1521667,Isthar Rosales +1352986,Jill S. Litwin +1123133,Jimmy Price +1432021,Kurt Williams +17175,Antonio Calvache +130938,Sergei Bodrov +1833859,Betty Chaplin +1298770,Chris Longo +64903,Chua Lam +41829,Eric Rogers +54356,Claude Villand +4223,Anette Guther +238824,Jeff Schechter +1342074,Mark S. Thomas +72125,Jefery Levy +89089,Charles R. Rogers +1077,Frank Griebe +7802,Carol Lavoie +62695,Benedicte Roumega +61336,Greg Ricketson +56566,Richard Russo +73255,Ki-chul Kim +1085451,Paul Staheli +1713393,Paul Lanum +1563481,Robert Edesa +18827,Skuli Fr. Malmquist +958772,Jane Shannon-Smith +59439,Don Watson +53334,Jim Sheridan +1574642,Mariana Acuña Acosta +1713406,Charles Tappan +13722,Alan Shayne +1578644,Adolph Lusinsky +16544,Ted Kotcheff +1536537,Aurelia Winborn +1832240,Edward Drohan +53068,Ryan Fleck +45862,Michael A. Stevenson +6964,John E. Gray +1381290,Arghakamal Mitra +1400733,Kurt E. Soderling +1453282,Kathy McCart +7350,Vicente Leñero +21308,Vincent Bryan +1339449,Stephanie Hornish +1096860,Christian Zimmermann +92301,Kathleen M. Courtney +4055,Michael Convertino +1116911,Mary Thorne +1534431,Andrew Bonime +18837,Maurizio De Angelis +1247414,Tomás Krejcí +46445,René Wiegmans +1557824,Glen Robinson +21405,David Klein +126520,Hua Yu +1400384,Andrew Lipschultz +18652,Howard A. Anderson III +1460768,Glenn Watson +22008,Victoria Paul +1023364,Rodney Montague +69292,Gen Kobayashi +1725687,Roberto Parra +671,Richard L. Anderson +1641251,Margarita Pardo +1163129,Harold Guskin +96924,Julian Barry +1795130,Craig E. Serling +1323762,Jennifer Stone +1458327,Susan Jonas +27576,Jo Willems +1124670,William Randolph Hearst +149403,Baku Yumemakura +13551,Denise Cronenberg +1616642,Jessica Wells +1401702,Shannan Burkley +960407,Vince Filippone +113889,Paolo Barzman +1329558,Ryan Welsch +1613277,Dave Heazlewood +1465102,Anna Sugano +1081886,John C. Walsh +1562804,Bruce Lacey +13809,Russell Metty +103611,Aldo Crudo +69017,Peter Peter +1870777,Tina M. Arter-Duquette +63656,John Massari +1460052,Alex Mathews +1418300,Murray Pope +1117861,Shoucheng Yang +1708863,Francis Perreard +1603325,Joe Clarke +38780,Paul Kelly +1714916,Rick Shuster +52053,Robert Ramsey +172154,Daniel Ahearn +1041662,Alison Palmer Bourke +92363,Noah Plunkett +72774,Alessandra Cardini +1886,Ted Griffin +1534681,Barry Cole +18214,Gitt Magrini +137483,Andrew Kaiser +54875,Philipp Sichler +1610245,Joni Avery +75294,Rosalina Da Silva +38419,Michael Begler +1551985,Jean-Paul Rovela +307,Peter Suschitzky +1412735,Bob Booker +1460201,Robin Badr +1538344,Sandrine Muller +87154,Arthur Alsberg +1418408,Pamela Waggoner +1433747,Mark Stehli +1317675,Linda Leifer +111481,Sophon Sakdaphisit +60822,Johnny Suorlahti +1577007,Priscilla Padilla +3356,George Barnes +79136,Robert Bevan +5397,Ennio Flaiano +92015,Lu Chuan +81251,Banjong Pisanthanakun +1164911,Hanita Halevy +72437,Greg Malcolm +56854,Don Harper +1492073,Freddy Sweet +1640322,Brinda +13234,Joana Vicente +57326,Augie Hess +21725,Keith Barish +179,Marcel Zyskind +1200724,Stef Tijdink +11222,Mark Radcliffe +1402545,Kim Collea +1567326,Ulo Greer +1544427,Julien Coquillet +8578,Daniel Rezende +1378722,Joseph Bonn +115598,Duilio Coletti +1554878,Bara Barova +976028,Colbert Clark +1583559,Ken Saville +1767313,Paul Ciancetta +1546584,Mark N Tompkins +1661577,Andres Garcia +86589,Michele Weisler +131748,David P. Harmon +57279,Mehdi Sayah +1416096,Whitney James +1762649,Carol Demarti +1402920,Sharon O'Brien +12866,Pam Polifroni +60013,Leslie J. Converse +1551528,Andrea Jackson +19408,Steve Fisher +1516293,Amy Roth +32180,Barney A. Sarecky +8795,Anne Seibel +1075423,Liam O'Flaherty +1580503,Miyuki Nanri +1319120,Charlotte Finlay +979785,Javier Ugarte +101446,David Siegel +1223861,Joan Van Horn +1221528,Louis F. Edelman +237520,Tenmon +67562,Charles Bukowski +1551104,Brian Lukas +12509,Antony Gibbs +15005,Don Zimmerman +1433746,Stephan Schröter +73091,Adam Nordén +1576013,Paul Brosnan +12685,Tony Lawson +1324883,Robert J. Quinn +1891671,Al Miller +1377218,Christopher Neely +1424619,Nicky Muir +2577,Raymond Borderie +1760100,Marcel Just +81718,Mamoru Hosoda +2443,Bruce Hendricks +45532,Anne-Marie Cotret +1466245,Steven Morrow +1521678,Zaida Monteforte +934817,Mikio Mori +175473,Marty Isenberg +12700,Paul Zaza +1332467,Fred Rexer +1076765,George Bartels +70574,Cyrus Voris +66853,Nicolas Altmeyer +2507,Matthew F. Leonetti +1350871,Nikos Meletopoulos +2000,Lewis Milestone +1409221,Jamie Gould +1861246,Tom Maslen +29415,Dominik Scherrer +2665,Julius J. Epstein +1800197,Harriette Kanew +1024561,Ring Lardner +1748477,Lauren Swearingen +40391,Richard A. Colla +14719,William Aldridge +110639,Patrick Gunn +1870668,Neal Wiser +1516479,Lisa London +3879,Dirk Oetelshoven +117229,Nick Adams +1644922,Selwyn Remington +16137,Kenji Kamiyama +46966,Alex Hajdu +1626425,Maureen Hannaford-Naisbitt +1169459,Julia Frey +7652,Travis Banton +1524178,Mark Damian +53468,Tom Swartwout +2163,Richard LaGravenese +1707110,Sue Rhoden +62682,Peter Wortmann +1299405,James Matheny +170949,Graham Brown +225065,René Bonnière +640975,Fernando Castets +69253,John M. Jacobsen +171170,John Quinn +1551956,Jacques Pélissier +1569847,Paula Bonhomme +21691,John Jackson +95747,Misty Rosas +60284,Marie-Sylvie Deveau +67459,Evan H. Chen +39996,Sidney Lumet +1530322,Matthew Harrison +82937,Victor Levin +2238,Eric Fellner +1299533,Neil Boyle +1708831,Melissa Mercer +71424,Frederick S. Pierce +68438,Scott Heim +2261,Martin Stellman +1291647,Max Strom +46712,Douglas Sirk +8881,John F. Burnett +91879,Richard Cadger +40984,Eva Ebner +1721989,Monica de Armond +1598733,Andrea Kristof +553235,Yun-su Kim +1407675,Pat Long +50302,James Edward Grant +1401687,Anna Behlmer +7949,Robin Cooper +91054,Sharon Ilson +1562192,Sam J. Jones +147630,Paul Wheeler +1392110,Arlynn Abseck +41017,Steven Pressfield +93415,Edgar Lansbury +126454,Alan Plater +1077518,Tsutomu Imamura +70381,Michel Rubini +1034517,Joel Kastelberg +92378,Juno J. Ellis +1405717,Howell Gibbens +1552168,Bill Williams +950463,Gil Friesen +1259516,John Dixon +1452320,Gary Wagner +1087523,Diana Allen Williams +1420385,Christopher De Marco +59525,Matt Barrelle +1332483,Kathryn Nixon +1772276,Bruce Lawhead +994870,Monic Parelle +1342611,Israel David +57639,Tonino Valerii +1437888,Nipa Wichusupaksirikul +1128100,Robin Schiltkamp +1534969,Allen Kupetsky +1702830,Tony Turner +1498415,Byron Roberts +16685,Harry Wiesenhaan +1215424,Norm Hiscock +68134,Gordon D. Brenner +33216,Mario Nascimbene +585715,Jean-Yves Pitoun +68413,Ladislas Farago +1567328,Renay McGowan +1449161,Neil Morfitt +50567,Melvin Frank +1335186,Antony Bluff +1590611,Christian Alzieu +1193690,Patti Unger +8432,Buddy Joe Hooker +1541716,Bruce E. Merlin +1667251,Belinda Bryant +1181954,Richard K. Wright +68770,Mark Rosman +948764,Frank Caffey +1092637,Michael Frank Nielsen +1171372,Zoe Heller +1774550,Robert Pease +59986,David Griffiths +30467,Takeo Kita +1209530,Eva Arretxe +1603861,Amy Schreiber +47087,Konrad Elfers +56504,Steven Boyle +24793,Loyal Griggs +1632341,Colin Matthews +1429243,Richard Lambert +72057,Hal Trussell +60913,D.P. Depp +146179,Julie Hickson +1217703,Nancy Ford +547970,Seong-won Hang +4951,Robert Dalva +1075,Johnny Klimek +65429,Kunihiko Yuyama +1767304,Craig Dyer +1392700,Ian McLoughlin +1799,Michael Minor +961149,Joanne Zaluski +14569,James Wong Howe +1425503,Václav Cermak +1403472,Colleen Jenkinson +18800,George Amy +43468,Guy Ferland +1734785,Libby Hodgson +11706,Anne Fine +92780,Pablo Proenza +3924,Jean-Paul Meurisse +69485,Donna L. Bascom +122583,Bryan Gordon +1591553,Julian Caldow +84380,Alessandra Meyer +18882,Robert Primes +1830645,Pablo Carrión Bautista +73174,Nikos Mamangakis +1406847,Ben Wilson +83905,Richard Murphy +1191310,Lina Nerli Taviani +1566295,Kevin Sorensen +1610046,Jeremiasz Prokopowicz +1402031,Robert Legato +56987,Paul Mones +70854,Jean Delannoy +32279,Carol Winstead Wood +1652217,Tracy Shaw +6063,Kristen Branan +1586386,Martin C. Heselov +1712320,Marina Kieser +31293,Derek Holding +1121531,Pascale Paddy +69561,Hercules Bellville +9581,Catherine Mansill +1870775,Angela Bertolino +967459,Guy Potgieter +1341330,Robin L. Neal +112617,Laura Adler +508,David Koepp +1586327,Nelia Morago +1598739,Nadia Ongaro +40547,Antonio Muño-Hierro +1141528,Huw Penallt Jones +16516,Caro Jones +22413,Peter Robertson +1599485,Sandra Merseburger +10857,Eric Fraser +1458416,Francesca Crowder +1418464,Sean Andrew Faden +1652229,Brian Anderson +40608,Jonathan Shore +1401273,Peter J. Silbermann +1765283,Norman Page +26871,Louise Carrigan +8216,Dan Jinks +1708850,Sérgio Suaste Guzmán +1406106,Chris Wells +1396533,Francisco Freixa +1416053,Lee Lukather +1477808,Gerry Johnston +72174,Rosilyn T. Scott +163245,Rich Eustis +1063740,Rex Lipton +1016306,Wu Di +1553245,Richard J. Cartwright +1463998,Hans von Mallinckrodt +6729,Robert Benton +9004,Tracey Gallacher +548413,Karl Wesson +1352966,Michael Hertlein +24973,José Luis Olaizola +1219553,Henry J. Bronchtein +91641,Franny Armstrong +1462381,Janis Watt +1464960,Jeffrey Edward Baksinski +41324,Michael Dennison +64876,Sean Barton +1318806,Manlio Rocchetti +62346,Nadya Mason +58730,Hubert C. de la Bouillerie +36806,Charles Ireland +7671,Jeb Stuart +1310263,Derek V. Browne +550038,Morris +558225,Beth Pasternak +79146,Sarah Beardsall +1840042,Karen Penhale +1624417,Jill Conway +12453,Wong Kar-wai +1392091,Richard Britton +1432470,Jeff Van Gonka +1621065,Gerrit Martijn +44119,Nick Fletcher +1160006,Michel Grimaud +180394,Jose Zelaya +35808,Ashok Mehta +1066804,Robin Dalton +62927,Guy J. Louthan +13061,David Rapaport +1733725,Michael Maker +1610049,Kamil Rutkowski +121341,Karl Romaine +10404,Diane Johnson +1360824,Eleanor Jones +128397,Louis Weitzenkorn +15560,Virginia Katz +1336532,Stefano Rolla +1662334,Aurelia Thomas +8163,Jana Vance +60006,Sean Moynihan +60504,Mark Fincannon +978515,Ralph Berger +229839,Paul A. Sharpe +109001,Aída Bortnik +993552,Mun-kai Ko +147703,Scott Gorden +1538826,Lois Dilivio +1602323,Sharon Zupancic +9966,Carol Littleton +33456,Molly Maginnis +1828302,Zanmarie Hanekom +1182638,Antonín Kubový +132596,Jill Cormack +120375,Nicholas Josef von Sternberg +1203,J. F. Lawton +24658,Suso Cecchi d'Amico +43153,Julie Busher +32672,Aldo Gasparri +1730024,Eric Wiser +100053,Mario Caiano +14281,Alan Crosland +118307,Herman E. Webber +86533,Edward Streeter +4061,Louise Frogley +1646878,Eric Veenstra +1457834,Vickie Mynes +32772,Leon Ericksen +7637,Rufus King +73496,Richard Pearce +4379,Salvador Parra +25137,Pippa Hall +50634,Sophie Maintigneux +63693,Tarô Iwashiro +57646,Henry Selick +970003,Roger Vernon +44633,Christopher Ball +51277,Berthold Viertel +937405,Michael Golding +56006,Péter Wolf +59590,David A. Makin +1305971,Olger Bernadt +1137341,William Wallace +1435194,Charles Martin Inouye +67347,Sam Shaw +1458330,Fred Abranz +91470,Peggy Farrell +6595,C. S. Forester +120465,Joseph Hoffman +1401290,Keith Elliott +3601,Michael Balcon +555978,Daniel Robichaud +9052,Noel Langley +1814504,Maria Estrada +22086,George Boemler +1442562,Thomas Riccabona +1348784,Teddy Gerberg +1335164,Jan Berner +34174,Henry Freulich +65410,Dalisa Cohen +1303225,Greg LaVoi +1111417,Henry Henigson +229796,Bert Rijkelijkhuizen +1695102,Auguste Villiers de l'Isle-Adam +957129,Ken Rempel +42120,Marc Grossman +1616186,Andrei Chirosca +232777,Lee Jae-jin +1558266,Roman Berger +1011991,Ron Forsythe +91796,Angiolina Menichelli +959814,Edie Panda +1391672,Peter Ochotta +15239,Terry Hughes +39968,Michael J. Lewis +132577,John Paxton +1536090,Frances L. Young +227093,Jonathan Dana +4406,Antoinette Boulat +1410574,Gus Duron +55427,David Bridges +1473271,Lloyd Osbourne +1600048,Carl Manoogian +8379,Ron Gress +1585447,Oscar Troitiño +10349,Léonce-Henri Burel +1462023,Milorad Vucelic +103945,Lee S. Marcus +1751460,Craig Fison +585004,Aileen Ritchie +1452634,Scott Janush +62049,Howard Ashman +1529473,Russell Saunders +1851728,Adam Markey +1730399,Sergio Bürmann +1447125,Natacha Antiglio +6111,Mike Figgis +1311621,Sheldon Wade +58245,Don Coscarelli +57338,Tom Acosta +59567,Tricia Schneider +1790471,Karen Eachus +31142,Randy Howze +1123036,Howard Jeffrey +1584169,Vicente D'Elia +17247,Po-Chih Leong +1767323,Anders Ericson +1767302,Francis Meade Warner +115058,Manuel del Campo +1025927,Toshiharu Tokiwa +3660,Paul D. Zimmerman +9803,Bernard Freericks +64444,Shannon Jeffries +49285,Joel McNeely +1551537,Vonda K. Morris +1792539,Karen Justl +1594802,Pini Klavir +77572,Alan John +1566318,John Mann +93468,Gareth Carrivick +11102,Chad S. Frey +99452,Les Baxter +1535440,Michael Kriston +1435578,Walt Hadfield +82418,Erik Van Looy +1046456,Beth Klein +1530326,Lance Shepherd +1155250,William Dudley +1124109,Akiko Sasaki +1826,Mary Ann Barton +1204798,Bonnie Prendergast +59583,Stephen Schiff +1730335,Katarzyna Grochola +1627985,Mustapha Ismaili Alaoui +5639,Jürgen Jürges +56901,Paul Murphy +17016,Neil Jordan +1545070,Halina Nawrocka +57022,Josef Fares +67583,Stavros Kazantzidis +15756,Brad Weston +57550,Duke Callaghan +960415,R.A. Dick +956222,Fred Waugh +71348,Frank Hohimer +56033,Enzo Barboni +1596,Jennifer Barak +61795,James Melton +1573103,Aaron Fiore +72023,Hou Yong +1603316,Anthony Aguilar +1263352,Forest Carpenter +10107,Chung Chung-hoon +93906,Robert Z. Leonard +101887,Everett Freeman +14556,Eva Kroll +1085001,Robert Warmflash +1073059,Ryan M. Price +1533066,Rita Troy +1520596,Elizabeth Colburn +1553887,Jamie Baker +114399,Jodie Copelan +4683,Bert Shefter +105746,Philip Spink +1252,Alisa Lepselter +1340117,James Seddon +961600,Steven Legler +1391600,Maxwell R. Johnson II +1398972,Pete Romano +1585441,Chema Alba +9734,Christian Bérard +51727,Robert Blees +5668,David Moritz +1473360,Laurin Rinder +1495686,Zoran Djordjevic +7069,Pat Jackson +1421266,Jennie Evans +1389591,Lori J. Nelson +11225,Gary Tomkins +92237,François Daignault +544648,Ester Krumbachová +1095835,Antoine Marteau +1538878,Miguel P. Gilaberte +1624030,Lauren Press +72418,Ryoichi Sato +66046,Lars Becker +55389,Jeannine Dominy +69739,Wink Mordaunt +1447152,Peter Oberdorfer +49358,Richard Moore +1325685,Mary Aloe +4008,Miroslav Ondříček +1339447,Tom Hartig +1424684,Loïc Gourbe +51588,Kevin Kiner +4054,David V. Lester +1234395,Cilla Ware +57065,Melissa Goddard +33391,John E. Keane +1597218,YouJin Choung +54049,Martha Griffin +994550,Kyle Cooper +7849,Lisa Dean +1145371,Maurice Urbain +1870705,Roger Daniell +7925,Geefwee Boedoe +94801,Sid Kuller +1673231,Doug Spilatro +1673566,Juliet Verni +1128147,Samy Layani +150975,Hong Sang-soo +52840,Desmond Dekker +58065,Nigel Westlake +1597212,Kristi Frankenheimer +1056180,Robin Katz +1032825,Katarina Bielikova +1337467,Wojciech Zielinski +1096408,Geno Taylor +1566250,Lynn Basas +1399313,Julia Neighly +2071,Mark Tildesley +1571751,Charles Coulter +9185,Tom Engelman +1785310,Pamela Cederquist +1599642,Bruce Callahan +72411,Michael L. Meltzer +103675,Peggy Gray +1406840,Jamie Harcourt +1028,Jesper Winge Leisner +1422054,Laini Thompson +14510,Jack Moss +1049992,Jeffrey Kirsch +1586922,Gavin Greenaway +1416995,Rampe Toivonen +1429242,Keith Mosca +105397,Yoshihiro Hanno +51450,Martin Schuermann +74660,Eric Hatch +123969,William F. Claxton +1472329,Alexandra Schwartz +1529521,Simon Mills +1539292,Rick Lisle +1380386,Anthony Lancett +21420,Clark Hunter +1377214,Gary Deaton +961199,Jacek Laskus +13085,Megan Gill +39139,Jacques Vilfrid +1379968,Jeff Cooney +53026,Les Gobruegge +1585030,Frank Mills +1560964,Craig Comstock +76481,Chris Lowenstein +6923,Troy Sizemore +16176,John H. Anderson +1403640,Vince McGahon +1552093,James T. Hill +14383,Thomas Bartke +10007,Ralph E. Winters +959007,William Glasgow +1602873,Bill Black +97183,Fredric M. Frank +1609385,D.G. Fisher +41336,Jille Azis +1034171,Emma Lustres +94218,Roy Del Ruth +1441248,Joey Jow +21588,Richard Crudo +1403415,David B. Nowell +1439907,Andrew Kitzanuk +1020407,Jeff Wishengrad +64635,Thomas Hardmeier +1046883,Ashley Irwin +1316787,Layton Morrison +13932,Patricia McCorkle +1429639,Alan Stewart +1159613,Ilse Hughan +1662311,Sally Turner +110833,Stephen Volk +1409241,Alessio Bramucci +1404354,Michael Madden +1670362,David Chipon +19344,Jean-Pierre Ruh +28708,Randy Shilts +16157,Tina Hirsch +75625,Chrisann Verges +1337303,Nik Ranieri +1318466,Sophie Carlhian +63128,Yann Malcor +23925,Vladimir Klimov +1870674,Jon Mentzer +121315,John E. Tribby +967026,Trent Opaloch +5426,Gilles Sacuto +32607,Jon Marcus +17784,John Irvin +935503,Al Hobbs +70630,Kunihiko Murai +55165,Todd Rundgren +75477,Pravesh Sahni +1640210,Martin Brody +6899,Steven Bernstein +79186,Cathleen O'Connell +1494596,Sheridan Jobbins +1277353,Scott Reid +111687,Arthur Joffé +1391678,Blake R. Cornett +91074,James Sorice +567595,Gulshat Omarova +51557,Marcia Ross +84389,Daphne Pinkerson +66120,Robert Teitel +142096,Francois Lepeuple +61572,Charlie Fletcher +71277,Daniel Aranyó +56381,James Toback +1012801,Wendy Ozols-Barnes +1404841,Zack Davis +1046570,Raviranjan Maitra +1404901,Greg Steele +1034270,Hikaru Hayashi +10354,Antoine Archimbaud +56250,Mark Plummer +32999,Anton Grot +1454655,Lindsay Cox +20907,Antoine Fuqua +1552186,James 'Obee' Oberman +12922,Gary Foster +1567890,Deborah Ann Piper +1673142,Karen Peterson +1866782,Kevin Tomecek +7049,Jon Olive +1624418,Garry Moore +1397263,Roberta Doheny +1409749,Tasim Persaud +69002,Steve Tesich +1439107,Don Bixby +933462,Charles A. Pratt +39302,Günther Naumann +1739552,Reuben Pasquini +1424938,Paul Alexander +88148,Gordon Parks Jr. +77511,Zakaria Alaoui +7737,Anna Anthony +70898,Will Barratt +557443,Ahmed Abounouom +1339976,Liz Goldwyn +13267,Michael Wilson +2485,Patsy Pollock +68615,Gregg Featherman +34438,Allen G. Siegler +55226,Katherine Wooten +1573088,Gerald Carpenter +71855,Pam Ziegenhagen +1285199,Sung-jin Jung +1766004,Stephanie J. Gordon +1545304,Åke Ottosson +1724913,Richard Schouten +1394061,Simon Elsley +1468504,Christopher Dougherty +71310,Dominique Brunner +1805192,John A. Patterson +7856,Bruce Alan Miller +1406388,Mark Choi +1590607,Anne Laval +1019841,Duke Yelton +1143633,Julia Dyer +12169,Durgadas Mitra +107564,Ali Selim +357,Hany Abu-Assad +92246,Marie-Elaine Bailly +1776973,Matt Sawelson +130186,Allen M. Davey +10634,Karen Blixen +72853,Jess Hall +19985,Philippe Blasband +987173,Paul Rapp +9752,Sacha Vierny +1418014,Susan Exton-Stranks +1533804,Barbara Lacy +1864176,Nelson Rising +1331979,Brigitte Friedländer-Rodriguez +1584247,Laura May Alcock +1401305,Ashley Revell +132643,Gerry Vasbenter +1521708,David Gómez +18656,Theodore Soderberg +9769,Stanley Clarke +68674,Hui Chang +1127497,William F. Matthews +1549420,Baird Steptoe +77076,Michael Corrente +57642,Harvey Rosenstock +1919,Stefan Czapsky +31074,Kinji Fukasaku +17612,Tamara Notcutt +1273863,Mona C. Vasiloiu +21962,John Frizzell +22088,Herman A. Blumenthal +69226,Trish Hofmann +701959,Edward B. Powell +7892,Glenn McQueen +1609616,Jerzy Klimkiewicz +77938,Toru Noguchi +13521,William S. Gilmore +1333223,Philip Stockton +1313679,Neil Stephens +128398,Byron Morgan +1555254,Sarah K. Hellström +3538,Jean-François Adam +20422,John le Carré +1378368,Pablo Ferro +92844,Jeff Broadstreet +1657996,Pim Tjujerman +1547348,Jennie Harris +87043,Kelli Herd +30295,Charles Schnee +964304,Nicholas Erasmus +25172,Edward R. Robinson +9056,Harold Arlen +1542617,Muriel King +1046678,Virginie Bruant +61155,David Faigenblum +64046,Alexandre Heylen +46088,Mark Canton +1309955,Kijja Lapho +1767618,Zureta Schulz +71948,Camara Kambon +1558253,Francesca Dodd +19318,Doug McKean +1781846,Gabrielle Jerou +1398505,Suzanne M. Smith +1407363,Paulina Kuszta +1552803,Daniel Jeannette +961106,Shani Ginsberg +44073,Pascal Gennesseaux +1389534,Richard Quinn +14433,Ward Preston +1405429,Driss Benchhiba +1607049,Ines Häufler +39670,Stephanie Collie +67799,Josephine Hart +1111050,Nicolai Remisoff +26595,Michael Verhoeven +66548,Paul Weiland +1402106,Curtis Laseter +1525934,John Marshall +1830790,Danielle Feinberg +30483,Colin D. Irwin +1397852,Stephany Baskin +1538940,Shelly Bowes-Cherry +1102571,Brian Devine +1438432,Peggy Mulloy +6410,Francine Maisler +1666902,Gareth Wilson +73248,Edwin Astley +34956,Sybil Robson +11996,Robert Wyler +83038,Dennis Aaberg +1411380,Kyle Gilman +235967,Keith Gow +1518601,Phil Rhodes +1651081,Martin L. Mercer +137195,Stevie Wermers +1600618,Gregory Butler +58424,Lynn Kouf +11371,Thomas E. Ackerman +1303154,Peter Melnychuk +5136,Andrew Bird +19224,Gregg Araki +14805,Emiliano Piedra +1470212,Luc Augereau +75127,Lance Anderson +1790464,Paul Monea +41892,Geyer Kosinski +136008,Michael Haight +1453289,Judith Weaver +1296341,Jeong Jin-hui +52693,John B. Carls +79179,Jane Villiers +22118,Messy +10079,Freddie Young +1870699,Nathaniel Bellamy Jr. +46714,Robert Wilder +1877147,Diane Bandolas +1410128,Günther Röhn +59876,Samuel Schulman +41893,Len Amato +9106,Gene Garvin +1634817,Mickey Sherrard +1602170,Jaroslav Cesal +1295780,Rocky Faulkner +356422,Roman Kroitor +1442500,Charlene Roberson +54259,Rimvydas Leipus +1459725,Christopher Walsh +20686,Christopher Canaan +40813,Gillian Dodders +1548132,Andy Richards +1425855,Fabian Schmidt +1521491,Lindsay Irish-Desarno +1157608,Mordechai Goldhecht +1346943,Nick Allder +33303,Simon Bright +552003,Tatsuo Hamada +27569,Norman Hollyn +1027800,Barbara Krieger +1864217,Ed Mirassou +577810,Dan Parada +8622,Hans Dreier +1665715,Steven Scott Smalley +578722,Samantha M. Capps +50461,Erin Stam +92206,Jean Kazemirchuk +792562,Arthur von Kirbach +27924,Albert Jullion +46076,Tom Dey +1217611,John Romano +59918,Rodney Rothman +7480,James Haygood +1424896,Caleb Guillotte +113762,Peter Milne +1547364,Valérie Tranier +1110377,Robert Emmet Smith +106653,Lena Rehnberg +1556970,Rory Bruen +1335884,Marc Kolbe +1577475,Robert Morrisey +1325234,Jean Ann Black +60130,Amy Herman +8406,John Calley +57895,Robert Harmon +54449,Richard Robbins +1148576,Dan Frye +104322,Jim McCullough Sr. +87628,Robert Nathan +940683,Sam Nelson +1724867,Norval D. Crutcher III +43411,Ismail Darbar +1460500,Kevin M. O'Neil +1551961,Matthieu Bastid +1341813,Dan DiPrima +554080,Li Zhang +892,John Schwartzman +52115,Scott Moore +1532736,Erin Wooldridge +1430324,Doug Miles +95143,Dan Klores +3177,Mark Berger +40823,Peter Burgis +52696,Sam Harper +102334,Bruce D. Clark +1342501,Eli Dunn +69869,Federico González Compeán +1197284,Carol Kritzer +1293412,M.J. Frankovich +59961,Brian Leslie Parker +58099,Van Dyke Parks +1467355,Nic Morris +1345669,Lara Blasingame +1551183,Darrell R. Smith +1106173,Julien Naudin +1867941,Nancy Butz +16830,Boaz Davidson +7239,Peter Brown +52805,Michael Nelson +54253,Heino Deckert +1402097,Mike Scott +14283,Louis Silvers +1540848,Corina Pana +1458995,Mark Binder +13928,Beau St. Clair +1613579,Frank Mattison +1076738,Darcy Prendergast +7227,Hal Lieberman +62841,Jack L. Murray +1575992,Robert Betts +1175699,William Hope Hodgson +1403529,Lyn Pinezich +1461148,Andrew Arnett +2637,Ernest Lehman +1602876,Michael Laws +1181307,Philip Kearney +40811,Tom Sayers +21645,John W. Corso +1605279,Willis Hanchett +1631524,Giuseppe Di Biase +18195,Stephen Mazur +96222,Laurie Collyer +20181,András Hámori +1424601,Leo Schoeman +9569,Rick Seaman +5357,Michael Ohoven +24006,Vincent Arnardi +1401727,Shereena-Lee van de Berkt +938780,Pablo Bossi +50983,Gabriel García Márquez +1377236,Maxine Arbarbara +1347577,Attilio Riccio +12018,Joel Schiller +32790,Ray Stark +23456,Shaune Harrison +125690,Mikio Naruse +1441358,Claude Precourt +1580444,Richard E. Brooks +1312090,Umakanth Thumrugoti +1116736,Donna Smith +124688,Ed Stone +13859,Stuart Rosenberg +36429,Joseph G. Aulisi +62277,Susan L. Bertram +59472,Jeff Rona +1430501,Daryl Bristow +1433740,Nina Hess +183760,Harry Thomason +1648131,John Polce +1401787,Iain Hutton +1335181,Terry Wells +1701149,Eric Deros +1403856,Joe Arnold +84554,Grant Gee +229678,DJ Shadow +10407,Tom Smith +1424185,Claire Raskind +66921,Heidi Santelli +20506,John Zinman +62144,Kathy Lucas +70443,Humphrey Searle +2378,Franco Cristaldi +76870,Fernando Javier León Rodríguez +1546085,Pauletta O. Lewis +1588035,Ira Anderson Jr. +1877415,Jan D. Tys +112690,Dan Lin +11457,Jindrich Kocí +1573625,Marco Streccioni +1420387,Alexis Grey +1219686,Tommy Thompson +1420160,Dan Kneece +31205,James Crowe +1590612,Isabelle Coursin +1198898,Robert C. Peters +1361978,Natalie Kalmus +1123130,Gary Smith +44958,Massimo Lentini +81328,Andrew Traucki +1735225,Michael Cunningham +15840,Pasquale Buba +103325,Kenny Yakkel +60217,Clint Goldman +1565211,George Leong +1553613,James M. Davis +5952,Ted Hope +1120536,Fernando Altschul +71550,David Levithan +552385,Chi-Wai Tam +47846,Ernest Day +80788,Mike Upton +1469354,Andrew Perry +1459913,Jessica Norman +1600673,Daniel Messère +1765288,Don Blackburn +965270,Adela Cortázar +7715,Frank J. Urioste +1486978,Gregory Kent Simmons +89227,Jack Dietz +1733728,Malcolm Huse +1567976,Tom Whelpey +68318,Richard Grégoire +231832,Jenny Gering +8715,Ralph Dawson +552346,Merrill Pye +17144,David T. Friendly +73195,David Ramirez +1573081,Andy Harris +1562993,Nancy Gilmore +36615,Simon Fields +1391679,Mike Szakmeister +1624497,Steve Wiseman +5508,Nelson Coates +589610,Stevan Riley +1550832,Ed Novick +25748,Marek Dobrowolski +1399030,Roy Charman +30412,Philip Cahn +43563,Tae-hun Lee +1551980,William Schurr +1396504,Les Ford +20385,Tatsuo Ozeki +60014,Peter Rogness +1432468,Sergio Uribe +1397736,Lise Richardson +3224,Stephen Frears +1561047,Giuseppe Banchelli +1273195,Ken Marshall +929655,Rolf Allan Håkansson +1146540,RaMona Fleetwood +10099,Park Chan-wook +14491,Robert Lawrence +223886,Thomas Guard +3335,Jim Thompson +957624,Andrew Sanders +957310,John Willett +111345,Martin Kjellberg +22967,Share Stallings +26767,Ringo Lam +1433316,Michael Butler +35502,Ben F. Reynolds +60587,David Bixler +1566836,Harrison Gibbs +4912,Julia Lallas +7233,Jeff Mann +1399079,Bryan Thomas +1304679,Levent İntepe +1125567,Doug Johnson +56883,Patrick Godeau +1331894,Deborah Chambers +986035,David Lane Seltzer +571434,Sav Akyüz +3029,Raynold Gideon +110545,Victor Abdalov +111302,Maurice Blettery +1827971,David Gurr +51666,Patrick Coppola +1535946,Samara Schaffer +1600049,Irvin Talbot +26849,Daniel Myrick +1218548,Kaz +1072644,Barry Shapiro +3723,Alycia Aumuller +1520393,Ernesto Muñoz +30386,Ron Moler +59809,R.J. Louis +423584,Lixin Fan +948272,Judd Bernard +8274,Robert Greenfield +16737,Jim Weidman +1834845,Marlene Farrell +18093,Scott Rathner +7912,Marcia Gwendolyn Jones +90225,Stephen Judson +1092,Jim Thomas +1464539,John F. Gross +1719751,Ian Harrowell +1532074,Anton Gold +929308,Shin Torisawa +41372,Gabriel Torres +228801,Anthony Fankhauser +13575,Richard DeWeese +1540921,Jola Piesakowska +53813,Sandy Cochrane +7128,Oliver S. Garretson +82335,Richard Glatzer +40437,Stephen J. Roth +6099,Valerio De Paolis +1356774,Nicole Stinn +1712322,Michael Florimbi +1534893,Monica Zierhut +1347760,Elizabeth Himelstein +1537110,Billy Gottlieb +59664,John Yull +5881,Leonardo Heiblum +1117967,Mikhail Papava +1089142,Christoph Fisser +1375369,Robert H. Greenberg +1433231,Iain Anderson +148823,Edwin Aardal +16862,Claude Lelouch +1141702,Mohammad Reza Delpak +72156,Ben Hopkins +6921,Gene Rudolf +60816,Risto Kuulasmaa +16159,Greg LaCava +43103,Paul Buckley +15016,Ric McElvin +1931,George Axelrod +7295,Brigitte Moidon +67238,Emil Topuzov +1104829,Robert Glass +24526,Milo +978107,Jeff Higinbotham +1809723,John Fiedler +12631,Lata Ryan +1415879,Mark Hibbard +29813,Jack P. Pierce +66053,Peter Kam +1609386,David Pier +1401732,Angus Reid +59040,Judy Dickerson +1593102,Alia Agha +1197674,Takashi Ôhashi +7661,Thornton Wilder +1555688,Liam McGill +52870,Tim Johnson +1550903,Richard Cobos +23401,Alex Rodríguez +129305,Josh A. Cagan +52134,Frank K. Isaac +1456365,Melissa Lackersteen +19659,Nathan Barr +1117882,Pop Surasakuwat +57328,Barry W. Blaustein +1144738,Jane Robinson +31181,René Verzier +1615775,Scott Beattie +16175,Glenn Daniels +1014,Karen Bentzon +6211,Craig Pearce +10837,James F. Truesdale +1268968,Artyom Melkumian +4504,Roger Birnbaum +15732,Alan MacDonald +84379,Mette Hoffman Meyer +1416153,Donald Sylvester +1223192,Roberta Marquez Seret +72825,Masahiro Kishimoto +1313785,Diane Boehme +1531561,Rikke Rosbaek +57265,Robert Devereux +10469,Claude Renoir +7183,Stephen M. Katz +76267,Senjan Jansen +963887,Sonny Tipton +1870771,Greg Salmon +1573116,Donnell Barnes +4131,Murray Burnett +144010,David Belasco +1553022,Diana Adams +1324124,Sonia Despotova +1713704,William Otsuka +1457398,Dal Clawson +79537,Nadja Romain +6605,Wilfred Shingleton +57703,David J. Schow +58922,Craig Rosenberg +1127855,Anna Feyder +1414822,Andrey Ponkratov +2623,Moonyeenn Lee +89749,George B. Seitz +1674567,Donald Freeman +1125247,Donald W. Starling +27904,Marie Belloc Lowndes +78615,Phil Roman +1387544,Kelly Moon +1607651,Daniele Abeille +10645,Mary Hillman +1486306,Ray Harp +1318465,Aimee McCue +1437886,Chart Mahapichayakul +1330567,Anthony Almaraz +1035941,Theresa Connelly +1376,Michael Horton +96445,Jayne Loader +71245,Jeffrey Downer +1537687,Werner Hahnlein +958691,Charisse Cardenas +1567305,Carmen Perrier +86186,Mark Hellinger +1102178,Carlota Pérez-Reverte +963708,Bill Ryan +3110,Allison Anders +1625825,Gerard Collery +1274149,Lucky Kargo +3586,Jean-Pierre Kohut-Svelko +1394958,Kelly L'Estrange +1022067,Philip Brandon +113756,Eoin McNamee +86591,Craig Jackson +178256,Frank Cleaver +77863,Toni Myers +1370816,Les Hammond +1521698,Alejandra Mejía +1556557,Kelvin Pike +959554,Joanna Syrokomla +240294,Vasco Pratolini +32054,Mario Scisci +1574231,Al Zegler +1192558,Christine K. Walker +6802,Karyn Wagner +4060,Kris Boxell +30591,Robert Eggenweiler +1403515,Stan Bochner +137550,Paul Kolsby +224401,Harlan Thompson +10965,Chris Columbus +9461,Michael Wilmot +32771,Cutry Zinner +1009150,Adolfo Franci +176687,Brian Sullivan +1419795,Diana J. Zeng +954409,Simon Relph +1562236,Nick Mestrundrea +1457666,Kris Cole +1319630,Carley Lane +37334,Paul Hellerman +1556,E.M. Asher +98482,Massimo De Rita +1187141,Masayuki Miyaji +95405,Ulf Ryberg +1399146,Carline Davis-Dyer +1877362,Nick Roberts +1039164,George A. Lara +1173718,Andrew Wellman +575524,Arne Åkermark +1834844,Paul Harvey +1338229,Shanaullah Umerji +1414540,Don Rutherford +1603301,Chris Santini +21592,Leesa Evans +1554885,Simon Ward +68026,Klaus Moderegger +1356794,Emi Mochizuki +1549652,Allan K. Rosen +5327,Andrew Mondshein +1304266,Vally Mestroni +1552088,Victor Iorillo +1621932,Min Windle +93905,Allan Dwan +1130432,Ted Smith +947,Hans Zimmer +1530363,Bill Kimberlin +54358,Patrick Grandperret +1876051,M.G. Rasmussen +1047,Tom Rolf +4281,Julie Navarro +42906,Barry Josephson +8556,Verna Fields +66850,Mikael R. Ryelund +4645,Barbara Albert +115101,Mary S. Lovell +52219,Clifton Parker +6045,Andrew Neskoromny +1619538,Wanda 'Beau' Peterson +1409267,Paul Huntley +1896603,Eric Regan +20977,Carl Ellsworth +988851,Martin Astles +7341,Leon Birnbaum +79546,Richard McGuire +7946,Jamie Frye +545760,Ho-jun Park +1562840,Mary Ruth Smith +96439,Nanette Burstein +1401638,Kylie Clarke +1421796,John 'Skip' Weaver +1109913,Dick Zondag +22746,Evelyn Carow +554124,Hoi-man Mak +34362,Fay Babcock +1310,Saul Zaentz +1794997,Wawan I. Wibowo +97212,Harold French +1322014,Jean Rosone +78992,Bill Eagles +52683,Marie-Jose Sanselme +1427915,Sanjay Burman +1662303,Seamus Corcoran +1547576,Mauro Passi +66714,Howard Gottfried +17677,Naaman Marshall +1184231,John Board +1416001,Penny Dyer +1340343,Lisa Burling +11606,Matthias Lempert +1857475,Robert Grayson +71251,Bob Ezrin +30589,David Sherman +1340722,Melanie Light +1407859,Kevin Byrne +1534527,Paul Boyington +65678,John Lafia +270361,Aleksey German +1550577,John A. Keim +1267055,Lise Wedlock +1423418,Laure Bregevin +1408359,David Knox +30011,Nat Perrin +1030,Pernille Bech Christensen +209628,Jay Ward +1426218,Jerry Silva +1400905,Ewa Sztompke +4282,Ann Chakraverty +1162239,Richard L. Bennett +56005,François Protat +5736,Samuel A. Taylor +54644,Joel Zwick +2327,Katia Stano +1447368,Randy Sanchez +35696,Eric L. Gold +65613,Jeffrey Kusama-Hinte +1684056,Gertrude Wheeler +1733238,Peter D. Marshall +63659,John Coniglio +9886,Kate Altman +8377,Cliff Martinez +1551224,Victor Svimonoff +89804,George Antheil +1585016,Jana Spotts +1619076,Anthony Gaudio +9435,Mary Erstad +1454753,Christopher Rand +1260745,Tony Fucile +1511730,Joseph P. Mercurio +588036,Dmitriy Aleynikov +1405365,Ramón Sánchez +67522,Siv Lundgren +1089479,Jean Cazes +1821179,Brady J. Condit +1765770,Charles 'Chuck' Lungren +1410154,Martin Pryca +9863,Harry Saltzman +7123,Frederick Knott +89467,Bob Giraldi +3839,Lila Herman +1402084,Charlotte Fleck +51816,Paul M. Heller +53458,Brian Linse +43562,Chun-yeong Lee +1414886,Andrea Gard +54971,Marc Rocco +122670,Tomasz Konecki +1464517,Richard Blankenship +1151862,Robert Russell Bennett +1423668,Donald McKayle +1461175,Tim Arasheben +1532327,Lora Laing +1555670,Aileen Seaton +1413561,Alexandru Sterian +1549176,Bret Rubin +105084,Cirio H. Santiago +56532,Isabelle Lorente +1337411,John Warhurst +165810,Mike Scully +1576009,Vanessa White +11575,Wolfgang Zeller +66979,Özhan Eren +6690,Jill Brooks +1537448,Josh Blakeslee +1017374,Lorin Maazel +32311,Giantito Burchiellaro +1703457,Jane Royle +7338,Darrell Silvera +64901,Gordon Chan +1451298,Brendan Houghton +1357061,Tim Walston +558232,Constantine Chachornia +71856,Robert St. Pierre +1424453,Mark McGann +2331,Albert Manera +1595161,Eugen Tamberg +1588522,Hamdi Mohamed +1613316,Muriel Gérard +1366590,Shawne Rowe +1123063,Takatoshi Kobayashi +1733142,Gary Burritt +33790,Mario Morra +1042632,Abrar Alvi +57622,Xian Luo Zong +56761,Aram Nigoghossian +66806,Whitley Strieber +230059,Matty Rich +15776,Edgar Rice Burroughs +563903,Francine Cathelain +47452,Lee Holdridge +137992,Terence Rattigan +1441370,Fred Stephens +92234,Jean Frenette +1432009,Jeffrey Beck +1337412,Jason Swanscott +1293526,Douglas F. O'Neons +1399997,Elliot Tyson +1802,Joseph R. Jennings +2655,George Tomasini +1536928,Patrick Melville +40614,Roxanne Methot +46611,James Clavell +35784,Kunal Kohli +1534507,Edward England +1550284,Mark Van Loon +1389625,Derek Raser +1556313,Wade Eastwood +13337,Rudolph G. Kopp +1321921,David Till +1043812,Diane Silver +1881571,Sallie Beechinor +1412203,Edward A. Gutentag +29311,Gordon Hales +142587,Greg Tiernan +12678,Hal Barwood +1602872,Dan Henley +15733,Tina Jones +1868860,Dan Moore +81502,Pete McCormack +1218284,Lewis Gould +20031,Samuel Bayer +1503679,Mark James +125504,Oliver Berkman +1416151,David M. Milstien +947929,Tamara Asseyev +1085000,Melissa Niedich +41625,Frank Owen +30267,Ray Heindorf +1552536,Kristen Spinning +130700,Vicki Polon +59023,Stewart Raffill +1855155,Peter J. Kelly +41630,Libero Solaroli +1706677,Foster K. Denker +1125476,Simone Lageoles +1464117,Simone Pereira Hind +1442506,Randy Bostic +1856485,Clutch Reiser +103182,J. Watson Webb Jr. +16656,Alan Bromberg +19815,María Gil +9446,Laura Laird +1420156,Arin Finger +1206960,Nicolas von Hoffman +14342,Richard C. Goddard +1362798,Kevin Fair +1457520,Denita Del Signore +64204,Jon Kranhouse +62559,Ken Lemberger +1418807,Matthew Ozerski +1086439,Grant Gilmore +1265276,Alyssa St. Vincent +88832,Kyle Rankin +70101,Haruka Handa +1571749,Erick Garibay +1412233,Mark Johnston +1545460,Jim Stuebe +1023346,Junius Griffin +12590,Steve Bannatyne +1406288,Ralph Madison +1625897,Terry McGauran +5506,Elliot Davis +1359572,Christopher Hughes +8713,Tony Gaudio +77699,Dave Warner +21549,Chad Lowe +1401669,Colette Birrell +10605,W.D. Flick +4998,Katsumi Yanagijima +1599623,David Ladish +1415601,Judy Crown +47374,David Susskind +1864793,Gary Sherline +1735710,Olivier Delpy +1821181,Ann Penny +1430394,Charles F. Greenlaw +1301143,Rita Waszilovics +58211,Clive Exton +1403392,Molly Mikula +1391756,Alex Touikan +72767,Maurizio Braucci +936016,Jessie Keyt +1394721,Adam Gascoyne +1752657,Reynald Trudel +1830812,Jacob Parsons +45770,Michael J. Werner +51854,Steve Welch +1340775,Mohamed Benhmamane +1376890,Jonathan Dyer +1549062,John Bullard +1406235,Grady Holder +1877160,Louis M. Mann +56515,Julio Caro +70105,T. Raumschmiere +1602163,Karoline T. Heflin +1596742,Mary Sunshine +554842,Kei Shu +19759,Brian A. Kates +20693,Juan Ruiz Anchía +1470202,Christophe Couzon +60683,Jean Midre +61932,André Rouleau +1465633,Lauren Parris Stills +1311967,Jacques Krauss +1333239,John Lucas +38491,Bernard Vézat +1684055,Goldie Goldmark +1540598,Kisaburo Okumura +1525888,Jan Archibald +1434615,Bradford L. Hohle +9904,Weston Drury Jr. +65044,Iva Davies +987991,Pui-wah Chan +1393351,Simon Rhodes +1408707,Dave Staples +1767308,Paul Shane Durazo +124831,Glenn Leyburn +1400335,Juan José Martínez +1454663,Craig Ross +1404357,Constantine Sekeris +580707,Håkan Karlsson +1466481,J.J. Franzen +1886660,Zdenek Flídr +52261,Frank Helmer +75800,Karen Brookes +1881561,Jacques Rey +14623,Michael Kranz +1454654,Daniel Agdag +1400359,Blaise Noto +1866067,Thomas G. Neusom +11507,John Muto +1451236,Bruce Zick +1680472,Patrick Phillips +1409709,Sylvain Bernier +1407354,Terry Rodman +34908,Claudine Merlin +1556535,Dominique Ricard +1568007,Kurt Fritz Quassowski +92830,Siu Man Sing +91941,Ernie Malik +15219,Marc Abraham +1461150,Steve Cady +1590601,Mario Belf +1422411,Al Nelson +19238,Tina Hillmann +1431338,Italo Tomassi +2324,Heidi Levitt +1137873,Andrzej Haliński +66960,Dennie Gordon +1339237,Shinichi Yamazaki +1581157,Mark Damon +43622,Brian Friel +19809,Stephen Margolis +1437861,Cliff Cudney +7712,Bob Murawski +591878,Fred Kelemen +1330885,Stephen Geaghan +38507,Francis Veber +771,Don Simpson +1545174,Christopher Robin Bell +189131,Laura Phillips +69371,Jean-Marc Vallée +1534114,Peter Brayham +768,Pierre Hodgson +1441286,James Reddy +1601603,Andy Clement +1864042,Ernest Bullingham +1398854,Dennis DeWaay +32200,Jeremy Stanbridge +18496,Carlos Conti +1443065,Joe Dorn +1394445,David Sanger +1354109,Raymond Hartwick +120552,Hy Averback +66215,Mayo Simon +63746,John Christian Rosenlund +65721,Joseph L. Galloway +1447503,Matsune Suzuki +1415888,Allison Curren +96657,Lee Chang-dong +1817652,Vicky Choy +3305,Jane Rosenthal +1320713,Rebecca Asher +4234,Jeff Buchanan +72019,Shi Bao +69140,Ramsey Thomas +58101,John Hill +8576,Antonio Pinto +235237,Makoto Naito +51541,Bryan Furst +4849,Anthony J. Ciccolini III +14521,William Roberts +585506,Illana Diamant +1378478,Jarek Sawko +1465970,Jo Fernihough +1219210,Mark Piznarski +117408,Luster Bayless +1405343,Chris Greenham +115279,Fredrik Gertten +1821191,Jack Ford +1538012,Mohamad Ahmadi +1626477,Howard Lipstone +1446691,Jennifer Spenelli +1120764,Moon-Su Choi +1102854,Suzanne Broderick +1615299,"James ""J.R."" Russell" +227217,Andrzej Krakowski +1395687,Veronica Lupu +1741915,John Carter +1071752,Agustín Jiménez +60194,Carol Silverman +65980,Cheung Tan +1316292,Douglas Noe +1196246,Berington Van Campen +1406898,Allan Zaleski +1765803,Roger Rohrbach +32133,Charles Brabin +1401810,Taisuke Tanimura +1550836,Gregg Edler +1334490,Laura McIntosh +3658,Robert Greenhut +1016141,Gertrude Bambrick +7182,Elmer Bernstein +27728,Leslie H. Martinson +574070,Wojciech Kuczok +56829,Julie Bergman Sender +142168,John Leonidas +5872,Joshua Marston +1521757,Steve Hamilton +1393365,Gary L. Camp +1024185,Hans Wallin +971393,Sheila Lane +23906,Bradford Johnson +4807,Martin Kukula +24972,Fernando de Garcillán +138862,Dai Miyazaki +1459509,Carolyn Guske +9445,David Mann +1401734,Glenn Suter +74044,Chris Burt +1433966,Janou Pottier +56888,Sherwood Schwartz +1451683,John MacFarlane +1780706,James Buckhouse +18834,Giuseppe Colizzi +1441380,Paul Anthony Morris +1441269,Peter Pantages +1102160,Masao Arata +1564997,Mark Scoon +1329112,Vincent Schicchi +3250,Edward Linden +39286,Armand Marco +1433233,Robin Huffer +1429257,Alan Benoit +83065,Bob Mills +22220,Bryan Hodge +19157,Leslie A. Pope +1059,Neil Canton +7889,Bob Pauley +67590,Mark Linfield +8559,Kátia Lund +1562213,Kim Colefax +39983,Susan Graef +932651,Franco Indovina +1368878,Damon Caro +89213,Ethan Gilmore +1759289,Leo Robin +1399556,Misu Predescu +57709,Toyomichi Kurita +234726,Raúl Lavista +1390,Jamie Selkirk +978148,Rebecca Alleway +42369,Joseph Williams +1531970,Laura Bauer +15806,Jonathan P. Shaw +2085,David Broekman +141978,Olli Saarela +993210,Bernard W. Burton +1802649,Javanshir Guliyev +1526467,Mik Kastner +68220,Kate Sanford +1762440,Ralph B. Serpe +1129440,Guillermo Iza +1427511,Élodie Ichter +1612610,Mark Goldenberg +30702,Alfred Cox +1193873,Jesh Murthy +18604,Tomoyuki Tanaka +78136,Daniel Farrands +92085,Carrie Wilksen +57624,Ivan Goff +150650,Joseph Ellison +1373728,Chuck Finch +1454947,Enid Arias +8181,Michael Fottrell +1571982,Rupert Davies +19897,Thomas Oláh +18744,William C. Mellor +3986,Mario Kassar +1621062,Carolina Leenders +39013,Henry James +1394313,Karin Anderson +13433,Pamela Basker +29941,Matthew Lessall +1648134,Dan Perri +959421,Karen Hazzard +3638,James Poe +1615280,Jim Hillin +1607280,Cyril Swern +1405208,Thomas R. Bryant +10421,Jerry Fleming +57856,Geoff Rodkey +1603302,Eric Andresen +7459,Masaichi Nagata +103567,William Martin +22012,David Worth +59781,Martin Wood +1586340,David Meeking +1334512,Izabela Niculae +957786,Jon Dowding +1405233,Pamela Kahn +83114,Sam Sako +1120519,Terry Knight +1441262,Frank Halpenny +57864,Andrew Z. Davis +46601,Thomas McGuane +12304,Nicholas Nayfack +58231,William E. McEuen +1477266,Scott Elias +18786,Brenda McNally +1336842,Daisy Gerber +1415584,Karen Tyrell +49905,Chris Viscardi +1425973,Dusty Reeves +1841940,Nancy Reid +14539,Charles Bailey +1229215,Steve Hayes +61653,Ina Mayhew +1549583,Kathleen Gerlach +1398174,Ana Kasabova +957776,John Hoesli +1470209,Olivia Bruynoghe +1557594,Casey Alicino +5439,Dominique Dalmasso +11714,Marit Allen +1586393,Martina Burgetová +1144651,Jeffery J. Tufano +20310,Takashi Shimizu +1584168,Mario Calabrese +11090,Edgar Wright +9379,Paul Wilkowsky +1418460,Sylvania Yau +1864311,Joseph W. Savino +1477837,John Ponchock +1144916,Pat Powers +1319156,Linda Wilson +61820,William J. MacDonald +1000614,Philip Chan Fei-Lit +58283,Albert Carreras +1674646,Nicole Marsella +1851729,Pedro V. Suchite +67202,Grant Armstrong +1207493,Ann T. Rossetti +553981,Feliks Parnell +67683,Michael Williams +24515,W. Peter Miller +75627,Leonard Drake +213471,Teinosuke Kinugasa +1621220,Paul Redshaw +6357,Michael Small +8531,Anna Roth +67776,Craig Titley +1762443,Bill Wainess +1446692,Joan Puma +1059893,Shirley Jaffe +11630,Bertolt Brecht +81521,Willard W. Goodman +63431,Hoon-tak Jung +6896,Brent Morris +17635,Ali Farrell +47062,Daniel Lind Lagerlöf +773968,Patrick Girault +65304,Franc Roddam +1447549,Miae Kim +1801,Robert Fletcher +19457,Mark Robson +1422996,Carol Cutshall +1399508,Chris Howard +37526,Fernando Trueba +1399467,Philippe Carr-Forster +1765818,Roni McKinley +1677175,Jean-Jacques Puchu +87130,Mark A.Z. Dippé +1671663,José Vinader +32765,Tony Richardson +52380,Darko Suvak +1418299,Bernadette Hayes +1551966,Nathalie Tissier +49911,Christopher Lennertz +87432,Stephan Blinn +57538,Scot Armstrong +1057657,Gary Giudice +1449006,Mike Baez +1525142,Cody Zwieg +1727309,Paolo Antonini +1414541,Bill Myer +1413962,Peter Roigk +1553616,Michelle Skoby +120927,Hugh Attwooll +8934,Alan Hume +1287459,Paul Staheli +1416975,Frida T.G. Hegna +119462,Sheridan Gibney +1416584,Bruno Van Zeebroeck +21652,Jean-Jacques Gernolle +14744,Rudyard Kipling +7095,Zofia Dwornik +29502,Piero Poletto +33933,David Baxa +1319621,Phonso Martin +25322,Luigi Kuveiller +1901597,Albert Viguier +14746,Boaty Boatwright +1421301,Steve Johnson +53181,Sharone Meir +71097,Denis Héroux +47116,Rossella Drudi +1483907,Lisa Clarkson +1877357,Paul Starr +12032,Glenn Williamson +9157,Jonathan Cavendish +1226929,Sean Reycraft +22218,Meg Reticker +1390525,Gary Mundheim +71760,Jeanne Rosenberg +1418022,Robert Thirlwell +1602141,Helena Uldrichová +9796,Johnny Mandel +82310,Władysław Pasikowski +1209076,Johanna Askola-Putaansuu +67179,Richard Fire +51794,Matt Venne +24455,Pierre Uytterhoeven +1447465,Jean Gillmore +39261,Sang-man Oh +1193336,Stephen P. Dunn +66625,Jack E. Freedman +1441251,Terry Sonderhoff +1167506,Earl Mohan +933201,Martine Dugowson +554128,Kim-Sing Ho +1626525,Mark Laing +1399917,Stefan Fraticelli +69955,Tony de Zarraga +1422948,Eric Karten +991160,David Steven Cohen +7305,John L. Russell +120314,George White +72065,James Norman Hall +3254,Ted Cheesman +1399029,Sarah Auerswald +1877143,Douglas A. Degrazzio +1053067,Max Monteillet +145600,George Toles +1397895,Pilar Flynn +1436493,Réjean Goderre +1407231,Douglas S. Holgate +1324904,Choi Yeong-taek +1416976,Saara Kankaanpää +1262,Mali Finn +1380383,Elise de Blois +84715,Kim Min-suk +62273,James Lawrence Spencer +1416993,Sirkka Rautiainen +1456359,Julie Adams +26984,Joe I. Tompkins +70541,Evelyn Kennedy +45288,Fred Mandl +25195,Ron Cobb +1400331,Christian Geisnæs +1314,Grant Major +10955,Cherylanne Martin +40028,Onder Cakar +1644925,Jon Arvesen +568674,Salim-Sulaiman +48052,Erno Rapee +1456474,Larry Singer +1886656,Lynn Rodgers +964477,David Hausen +1596321,Matthew C. Beville +1049,Charles Rosen +1891670,Nanette Lepore +22987,Heiner Carow +95600,Eleanor Lamb +31130,Joseph Litsch +559909,Kevin Pike +937406,Jonathan Debin +1638071,Rochelle Moser +1597213,Leslie Silvey +1281588,David B. Miller +361611,Kane W. Lynn +4082,Dimitri Tiomkin +1620005,Matt DiFranco +1041606,Frederick Lonsdale +1522820,Richard Owings +1431018,Mira Caveno +38573,Joe Wein +1652315,Brian Rosen +1470174,Lisa Shriver +1595171,Tiina Leesik +1462666,Josh LaBrot +1134988,Toshio Lee +1415332,Fionagh Cush +66722,Edward Bass +1855214,Mel Churcher +1123794,John R. Woodward +1438615,Savas Ceviz +54255,Joost de Vries +545393,Shinji Sômai +70789,Andrew Lockington +6846,Charles H. Maguire +145830,Josephine Lovett +18691,Elie Samaha +1733232,Ron Renzetti +1401790,Jenny Foster +1392895,Andrea Dopaso +1322087,John M. Elliott Jr. +1840072,Mark Manchester +1890,Philip Messina +1519292,Tamar Aviv +1851737,Howard Payne Miller +966953,Katja Wolf +1264551,Chester A. Lyons +1535788,George Berndt +4500,John Debney +1513646,Kurt Neumann +1893882,Joe Nayfack +29790,Bruce Finlayson +43640,Janusz Gosschalk +554583,J. Anderson Black +1450331,James Baxter +54047,Phil Hay +1413951,Camilla Shepherd +1602870,Timothy E. Henley +59566,Diane Hughes +1415635,Frank Dorowsky +1719095,Chris DiGiovanni +7651,John P. Austin +58833,Peter Lonsdale +1465352,Elly Kamal +139346,Riccardo Neri +1470203,Dévi Tirouvanziam +77269,John Crowley +1779873,Ritsuko Notani +1085919,James Ronald Whitney +15365,Kelly Van Horn +1462674,Susan Purkhiser +101711,Edward Ward +56373,Jean-Stéphane Sauvaire +70300,Mario Soldati +43093,Louise Goodsill +12120,Frank Lombardo +65882,Jens Schlosser +1730425,Karen Grover +46942,William Kerr +1114508,Theodor Halacu-Nicon +1616903,Edward L. Alperson Jr. +19969,Pat O'Connor +960844,A.W. Watkins +61624,Ann Robinson +8276,Tim Holland +1164962,Sinclair +87672,Stephen Belber +25161,Marcel Carné +25823,Peter Boita +1547156,Jeanette McGrath +1438589,Charmaine Clark +63752,Anne Pedersen +1472430,Jacob Weber +1433736,Gianmaria Majorana +1266049,Sylvie Imbert +56988,Robert Brinkmann +1563901,David Falzone +1389602,Jennifer Opresnick +1427444,Sergey Golovkin +1744410,Michael Glynn +1023051,Christoph Thoke +371,Bill Coe +60245,Scott Mednick +950513,Ivan Galin +2400,Ron Surma +8463,Lyudmila Feiginova +75797,Trevor Jolly +8369,Deb LeFaive +60866,Chad Marting +1484175,Jiri Macke +1557546,Nick Jeffries +56521,Jim Strain +1102071,Craig J. Flores +20858,Stéphane Makedonsky +1496657,Lisa Robyn Deutsch +82221,Brendan Malloy +1338245,Laerke Sigfred Pedersen +1453019,Sachin Bangera +1030290,Charles Engstrom +1364412,Piero Mura +14728,A. Paul Pollard +19992,Katja Reinert-Alexis +1295613,Julia Squire +409198,Gordon McDonell +32158,Leland Nolan +1027081,Leland Fuller +1418150,Satur Merino +1629472,Pimsuda Boonham +1550801,Billy Kerwick +1018950,Michael Harrpster +20004,Ronald Víctor García +10010,Hugh Hunt +1692260,Ashley Waldron +76208,Jenny Arnott +8756,Maurizio Millenotti +1178977,Ernest Vincze +53663,Christophe Boutin +184986,Gary Myers +1550205,Mark Burchard +997654,Jenny Gilbertsson +11605,Aphrodite Kondos +1391715,Damian Candusso +1753767,Rob Garlow +29380,Steven Ramirez +1583007,John Aalberg +1394072,Cameron McLean +1334613,Goro Hisamitsu +32098,Jacqueline Moreau +1840066,Chris Weiss +72641,Andreas Schardt +1839472,Moonsung Lee +47613,Martin Fuhrer +1052871,Lucian Iordache +7091,Władysław Stanisław Reymont +19112,Pascal Caucheteux +37161,Cynthia Mort +1298750,Phil Mossman +1702539,Robert Hicks +1619077,Chris Centrella +1393443,Robert Jackson +60220,Will Vinton +93107,Masaaki Yuasa +1378227,Daniel J. Leahy +1129907,Barry L. Caldwell +1598751,Gregory P. Fontana +1527917,Voni Hinkle +1004059,Jesse L. Lasky +1031697,Colleen Sharp +4142,Elisabeth Leustig +53277,Celine Rattray +933498,Michael Cutler +58085,Mary Jane Ufland +61492,Marius Kerdel +126946,Sandy Welch +223287,Gatarô Man +1445983,Scotty Allan +59663,Ariel Veneziano +1825211,Brian Mann +62355,Neil Jenkins +70103,Fumihiko Sori +1401391,John B. Keys +1619093,Brian Gee +16211,Dave Hubbard +1411538,Chris Hayes +1564351,P.J. Bloom +71236,Tracie Graham-Rice +38411,Steven J. Jordan +7555,Doriana Leondeff +1194082,Pierre Couture +1538812,Michiyo Yoshizaki +32309,Mario Cecchi Gori +1406916,Clare Langan +1763583,Christena Alcorn +39743,Henry Levin +1321374,Gail A. Fitzgibbons +1610053,Leszek Freund +10567,Aline Brosh McKenna +51688,Laurence Becsey +143577,Craig Hutchinson +52897,Russell Smith +434,Lisa Beach +1745153,Orlando +583726,Jean-Philippe Duval +1377,Jabez Olssen +1463300,Timothy Burgard +72417,Akiyuki Nosaka +3769,Michael Ballhaus +1550223,Douglas Retzler +1652448,Ryan Claridge +1440932,Oleg Cassini +1319467,Marie Nardella +65753,Richard Saperstein +1451417,Suzanne Bingham +1733757,Boris Dores +1600183,Eric Pluet +1881620,E. Jeanne Putnam +1739974,C. David Jones +1701151,Darren Denlinger +1484966,Anne Morgan +75430,Anna Senior +8305,David Nicksay +1399103,Lisa K. Fowle +1395690,Ira Spiegel +68388,Stephen Benedek +1046569,Shirsha Roy +1537692,Trevor Westerhoff +75904,Miriana Marusic +12418,Jack A. Marta +150011,David Mercer +13670,Jacques Haitkin +92117,Chris Ceraso +68758,Kevin Bernhardt +39798,Lucien N. Andriot +150208,Jeff Balis +582087,Joseph Fraley +134048,Daniel Knauf +1376145,David Winick +71416,Franco Solinas +48182,Frank A. Banuscher +66983,Tom Kalin +1158026,Andrée Davanture +1309577,Bertram Tuttle +1378228,Steve Pederson +115362,Gavin Wilding +1069709,Chuck Crafts +60031,Robert Ivison +50954,Alexandre Azaria +141299,Phillippe Hellmann +73723,Paco Wiser +69024,Miriam Nørgaard +1169966,Seizô Sengen +78964,Joel Pearlman +1243695,Edgar Rosenberg +79028,Dirk Wittenborn +133584,Fenton Hamilton +1632427,Marco Donati +1625901,Gary Kangrga +1310027,Harald Egede-Nissen +1008115,Sebastian Schroder +1339468,Trudy Ramirez +1347763,Chris Moseley +1703068,Donna M. Norridge +1411517,David Corral +1115298,Bruce Woodside +9958,Jean Ravel +51328,Matt Ember +1730456,Brian Mitchell +1090578,Fernando Morandi +23606,Patrick Marber +1602886,Vince Garcia +1400368,Bob Olari +1172608,Richard Yates +88873,Jane Murfin +1597191,Richard Cody +42178,Derek Trigg +33094,Gary Sherman +50723,Christopher Baffa +1063528,Gonzalo Gavira +18175,Dominik Moll +1401665,Jo-Ann Beikoff +128964,John Gillooley +14781,William Randall +100580,Emil Newman +1159912,Ruth Goetz +7229,Marco Beltrami +1538944,Lisa Campbell +1717525,Ray Abbott +17268,Ronny Yu +1805195,Augusto Schillaci +1469626,William A. Cimino +1397896,Kendra Haaland +74357,Dylan Morgan +1552873,Terry Claborn +13269,Arthur P. Jacobs +3220,Nicholas Gage +1378749,Patricia Klawonn +7797,Leslie Morgan +25143,David Kitay +1615296,Sue C. Nichols +7299,Robert Bloch +109876,Noel Black +110873,Igor Kovalyov +1098178,Arnaud de Moleron +1076505,Bima Stagg +1684157,Akihiro Yamauchi +70645,Brian Garfield +243,Geoffrey Unsworth +1564221,Dotan Bonen +130460,Mika Ohmori +1469634,Mikayla Abromowitz +61772,Faith Martin +1575862,Ruthie Brownfield +107683,William Holmes +91788,Ubaldo Ragona +18679,Mark Tarlov +1120474,Nobu Yamamoto +1535441,Michael Laudati +36739,Rita Serra-Roll +1521679,Gogo Amara +1532693,Andrea Napier +24723,Georges Klotz +1066115,Brian Sloan +1119658,Harold Parker +1406138,Louise Spencer +1026688,C.J. Strawn +1411676,Andy Richards +1342242,Rick Ash +1380385,Gary Daprato +71138,Maria Rosada +23926,M. Scott Smith +1788613,Andreas Thiel +91073,Scott Rosenstock +10549,Justin Scoppa Jr. +1670363,David Modell +30464,Takeshi Kimura +44019,Anne Sarraute +1405388,Alessandro Chiara +57704,Sherman L. Baldwin +1558432,Gavin Round +9041,Howard Cummings +121343,Sid Sidney +1395370,Michael Hyde +91366,Penny Perry +1546869,Lee McLaughlin +12561,Michael Toji +1635277,Sébastien Seveau +7648,Stanley Cortez +1576026,Alastair Grimshaw +1547720,Gérard Hardy +1099133,Tracy George +1229085,Mandie Fletcher +50950,Virginie Besson-Silla +1442564,Edward Aiona +11707,Randi Mayem Singer +1376897,John Villarino +1555174,Karen Corsica +1015854,Richard Greer +1242882,Robert Berman +1813383,Pam Tait +1761,Alexander Courage +158916,Michael Keller +68892,Paul Harather +30179,William Hamilton +90526,Shepard Abbott +113594,Jef Van de Water +1401196,Cos Aelenei +21370,Roger Donaldson +160,Eytan Fox +1803766,David Conaghan +10064,James H. Spencer +41589,Charlie Lyons +83486,Isabelle Delannoy +1759524,Gi-tae Kim +539946,Will Gregory +56073,Steven Hathaway +1587441,Joy Vigo +587903,Olivier Horlait +15316,Ian Wingrove +26978,Dana Olsen +955583,Rosalie Swedlin +7751,William Hill +72304,Sergei Rachmaninoff +1109565,Tom Howard +1864760,Tom Brkich +1542823,Wayne A. Finkelman +12017,Richard Sylbert +81744,Laurence Briaud +51216,Robert Kuhn +1406893,Suzy Mazzarese-Allison +947014,Alan Hruska +64196,Joel Goodman +16493,Michael Atwell +37433,Jack Engelhard +1547240,David Franco +1117871,Young-wuk Cho +67755,John Blumenthal +6738,Monica Levinson +1217416,Bob Camp +1313191,Maria Newman +12404,Dennis Lynton Clark +1546756,Jason Horwood +146599,Yaroslav Chevazhevskiy +62029,Robin Michel Bush +57641,Dino Risi +1420635,Rob Huckle +1472287,Hagen Behring +1877360,Derek Hurd +1855226,Bill LaBorde +74582,Orin Woinsky +1148007,Joe Torillo +19334,Walter Thompson +1319,Mark Robins +1580956,Matías Mesa +214294,James Eric +1562059,Jeffrey A. Williams +1093432,Yasuhiro Yoshioka +1432957,Ross Shuman +50455,Richard Angst +32606,Susan Ogu +56975,Eliot Wald +14269,Adriana Novelli +1699144,Colin Benoit +1720,Ronna Kress +3351,Lucien Ballard +116607,Stephen Poliakoff +26099,Pascaline Chavanne +72823,Kazuki Omori +24804,David S. Hall +980256,Makis Gazis +65118,Efrain Lomeli +588925,Karel Kachyňa +14900,Brian Eatwell +63432,Choi Su-yeong +20423,Simon Channing Williams +2488,"Alan Ladd, Jr." +1229586,Shannon Stewart +1414552,John Ramsay +233651,Cristinel Sirli +541714,John Boxer +1391566,Julia K. Levine +54601,W.K. Border +114676,Eric Monte +2689,Jeff Nathanson +11123,Geoffrey Faithfull +13901,Ladislaus Vajda +15870,George Orwell +1567959,Ket Lamb +8587,René Bittencourt +1421670,Robb Wilson +1281965,Julietta Boscolo +545765,Takeshi Hamada +103056,Umberto Turco +21039,Alar Kivilo +1516156,Kevin Nolting +58728,Andrei Konchalovsky +7753,Gilbert Taylor +1016,Jonas Frederiksen +78966,Clare Moore +172983,Leonard Katzman +73274,Ed Bogas +8877,Bronte Woodard +16892,Alfred Ybarra +1867962,William W. Gillohm +1427498,Rachael Speke +224388,Scott P. Murphy +3275,Jane Jenkins +1320213,George Manasse +948296,Steve Beswick +1178908,Jean-Andre Carriere +20854,Charles Gassot +961447,Toby Corbett +1405206,Lionel Strutt +67751,Kristine Johnson +57465,Patrick McCormick +2397,Robert Blackman +70053,Amanda Stern +1447144,Philippe Sylvain +13304,J. Michael Riva +1340919,Dug Rotstein +41148,Dan Jenkins +70263,Roy Chanslor +7562,Jorgelina Depetris Pochintesta +119027,Atsushi Moriyama +1603669,Simay Muratoglu +1417458,Mary Dodson +16653,Sugar Blymyer +1447576,David 'Joey' Mildenberger +58237,Kelley Smith-Wait +73566,Christian Conrad +71765,Dusty Symonds +1363868,Samuel Potin +1303224,Carmen Frost +19352,Jacob Groth +57111,Bill Scott +1540850,Victor Toader +165130,Raphael Blau +35838,Michel Colombier +13292,Warren Newcombe +4219,Andreas Schreitmüller +10685,Laurence Mark +76701,Allen Payne +552205,Catherine Kwan +1354916,Ravi Bansal +119064,Mark Siegel +62801,Adrienne Maloof +1201858,Heidi Kaczenski +69881,Paul Brett +62803,Gavin Maloof +1421741,Keith Young +1228735,Sander Schwartz +12114,Michael Cimino +1401786,Ken Fischer +60447,John Wierick +1217686,Scott Holmes +39107,Joe Delia +44123,Kevin Andrus +1019711,Kurt Iswarienko +60009,William Goodrum +73153,Jacques Rivette +1420778,Jabbar Raisani +25805,Maria De Matteis +5721,John Carnochan +77966,Lars Gudmestad +122521,Ryan Barton-Grimley +1451265,Chris Aguirre +43995,Dominique Gentil +1045480,Meiert Avis +39058,Julien Duvivier +31172,Zack Grobler +87565,Savage Steve Holland +14941,David Zelag Goodman +957815,Pierre-Louis Thévenet +1469852,Chul-ho Kim +928608,Brent W. Hall +1521689,Isabel Amezcua +30693,Mark Watters +72610,Tome Minami +1893227,Ben Hoopes +589938,Alex Tavoularis +62778,Mark Bennett +1407234,Nina Hallworth +13083,Mark Kilian +1446684,Carey Villegas +1439426,David Bartlett +1321,John Howe +96042,Phillip Badger +1571762,Wendy Bonn +74591,Monica Hampton +67203,Sam Stokes +57836,Mikael Borglund +1203105,Christos Michaels +67376,Greg DePaul +70064,Kalle Bergholm +11821,Catherine Schroer +1792652,Doug Francis +5488,Gabriel Yared +6427,Artur Reinhart +1320452,Henry Harris +1557581,Simon Neville +1477790,Lori Stilson +58644,Michael Seitzman +8747,Stephen McEveety +66690,Pierce Austin +1604711,Peter Wiemker +1446661,Tony Rivetti +64831,John A. Russo +1534588,Takeji Sano +9006,Rachael Fleming +64030,Kelly Makin +211600,Gabriel Roth +957760,Ray Hubley +64657,Ruth Epstein +19991,Anushia Nieradzik +1123960,Maya Serrulla +58469,Rex Pickett +36693,Richard Eyre +10613,Henry Richardson +968735,Frank Moiselle +15151,Cydney Bernard +103057,Giorgio Armani +1087388,Hank McCann +1410589,Lorelei Kuchera +53467,Eli Klein +1357185,Earl Mills +103867,André Link +1377233,Kazimierz Suwala +1585879,Diana Gollmer +1441364,Bruce Borland +1567926,Mark Sadler +6414,Maciej Dejczer +1462396,Ettore Guerrieri +47287,Molly Smith +1303217,Jonathan Thies +105470,Crille Forsberg +1413224,Fríða Aradóttir +88984,Nat Levine +1161611,Jean-Yves Asselin +1401283,David G. Fremlin +19310,Ruth Myers +69420,Joyce Arrastia +1586078,Peter Gordon +1155550,Sean O'Dea +74779,Art Rochester +1046692,Joseph Aguirre +80422,Geoff Deane +70008,Mel Damski +1531240,Christine Coutts +16569,Frank E. Jimenez +200014,Thomas Hart +16489,Clark Mathis +1099544,Oana Paunescu +1767780,Finn McGrath +8408,Salvatore Totino +71092,Aveek Mukhopadhyay +1304262,James Bosley +1815508,Eric Orner +282,Charles Roven +1357671,Tim Tuchrello +1468500,Rebekah Wiest +552639,Shigemasa Toda +1585882,Sven Ole Renneke +1546260,Charlotte Pfefferkorn +1339862,Randy Link +1610043,Ewa Brodzka +42099,Meta Louise Foldager +1575194,Tomás Diaz +1338287,Tony Lewis +142154,Arthur Bloom +1413149,Beth Bernstein +1424569,Fatih Ragbet +35152,Raymond Froment +1413095,Michael J. Benavente +1452917,Martin Meunier +1529435,Dolph Zimmer +1551911,Alex Wuttke +32996,Ray Rennahan +38081,Steve Samuels +118732,Jiang Tao +1312705,Charles Edgar Schoenbaum +1421261,Bridget Menzies +36967,Walter Lassally +1391708,Kym Sainsbury +1744058,Catherine Bott +295591,Gareth Rhys Jones +1417018,John La Salandra +1634641,Jean Teissere +30107,Oliver Emert +1605893,Geoff Alexander +2420,Guillaume Laurant +1394004,Ian Tapp +44217,Charles Perrault +47791,Fanny Saadi +83950,Karel Jaromír Erben +1856492,Richard Boyle +71082,Andrea Arnold +24767,Maurice Leblanc +1333892,Mila Khalevich +12228,Meg Liberman +21935,Marco Cavé +74823,Sioux Richards +12867,Syd Mead +1447375,Caroline Cruikshank +55948,Alan Smithee +40392,Jacques R. Marquette +1638955,Afif Heukeshoven +66726,Michel Litvak +1319198,Sarka Zvolenska +45279,Albert Zugsmith +11270,Peter Walpole +1817649,Monica Muehlhause-Horn +10771,Dave Grusin +1477203,Luca Marco Paracels +72733,Yip Tin-Shing +1433738,Reinhard Stöckl +48663,Nana Dzhordzhadze +1648126,Marie Nashold +1547580,Gyôuemon Kimura +1724,Roger Spottiswoode +1237181,John Forrest Niss +86058,David E. Vogel +1274065,Jean-Pierre Amiel +1474740,Bob Pritchett +1568649,Dana Kroeger +57430,Richard Brener +1800143,Karen Fletcher Trujillo +1573076,Tony Castagnola +1439500,Kip Ohman +1383563,Tamara Winston +1529475,Chuck Hansen +1479536,Kevin Peaty +1419803,Matthew Castellitto +68320,Mark Gill +19918,Martina Matuschewski +1662184,Smiti Kanodia +1230753,Geno Escarrega +87106,Jordan Brady +726140,Hope Loring +35786,Salim Merchant +1484178,Dustin Cawood +1410143,Jane Karen +1551825,Kathy Linder +1661559,Pierre Gralhon +2868,S.E. Hinton +1618901,José R. Varona +1482064,John Marshall +103736,J.B. Priestley +1201318,Tissi Brandhofer +2005,Arthur Edeson +1409220,Todd Beckett +7689,Wally Westmore +131010,Kogo Noda +1815504,Christopher Glenn Collins +1559479,Gene S. Cantamessa +1350255,Rodrigo Gutierrez +124550,Leo Mittler +98150,Robert Stillman +7688,Ray Moyer +1602865,Don Haggerty +120929,Margaret Furse +33256,Stokely Chaffin +140624,Tsutomu Tamura +336328,Ingemar Ejve +62541,Brandon Camp +70900,Janet Chun +1804032,Anastasia Karimulina +5884,Anne McCabe +1183510,John Chong Ching +1779878,Stefano Pastorino +1118641,Ali Reza Zarrin +70240,Paul A. Felix +1818165,Sara Barr +1833855,Dennis Dion +48415,Edgar Allan Poe +1616182,Ioana Bernacchi +1625628,Renato Cadueri +1154620,Minoru Esaka +101771,Christopher Hibler +1337463,Dave Paterson +18265,Mauro Fiore +1402977,Crina Cartos +1521690,Juana Bocanegra +563,Dody Dorn +1576030,Em. L. Muslin +7406,Michael Steinberg +1339460,Richard Whitfield +68414,Larry Forrester +1380003,Julie Brown +1538491,Aldo Trionfo +38,Arthur Schmidt +135388,Michael Swan +1063668,Lola Mayo +14413,Harry Roselotte +1586394,Jeff Gomillion +33650,Dolly Hall +1006872,Chang Tso-chi +1402108,Matthew W. Plummer +16549,Kimberley Richardson +1531860,David Allinson +1313060,Ralph M. DeLacy +1534828,Richard Craig Meinardus +590074,Elizabeth Karlsen +2591,Izidore Codron +8928,José López Rodero +11957,Larry Brezner +1503457,Niels Bjørn Larsen +1432026,Ray Boniker +1817630,Chuck Radtke +554040,Dave Allen +1140568,James Cady +1349452,Lars P. Winther +1602868,Gloria M. Fujita +85781,Jon Zack +1681342,Marcus Love-McGuirk +1545464,Marty Stein +1521662,Sandra Paredes +1472295,Danielle Shilling Lovett +7718,Philip Leonard +1019784,Raimon Masllorens +60714,Peter Lando +1120715,Max Berto +1018082,Matthew O'Toole +42027,Aldo Signoretti +1421695,Craig Henderson +1552218,Timothy P. Ryan +12924,Harry Ruby +119767,Sally O'Rear +52988,Alan Oxman +1416796,Kerrie Smith +57029,Amanda Lewis +937881,Bruce A. Gibeson +29811,Paul Ivano +103237,Reginald H. Wyer +1039544,Nnegest Likké +41674,John Swihart +1767309,Justin Blaustein +56786,Ross Emery +1409234,Glenn Morris +1424623,Justin Lavery +5834,Robert Stevenson +41285,Kirsten Sheridan +1596590,Dusan Milavec +96389,Miro Gábor +12348,Russell A. Gausman +12401,Gary Kurtz +1590609,Jérôme Petament +1609517,Jolanta Wlodarczyk +1473495,Lionel Rich +70115,Claudia Grazioso +35511,James Glennon +1418316,Raine Edwards +4101,Joseph LaShelle +1445879,Steve Dellerson +1405313,Tristan Versluis +90077,Milton Subotsky +1686379,Darrell Dubovsky +68901,David Manson +1748724,Susan Sanford +961664,Patrick Murguia +55456,Earl Bellamy +50101,Patrick Cady +53207,Gérard Gaultier +1633540,Greg Gears +80471,Kisha Imani Cameron +148824,Philip Barber +2421,Helmut Breuer +61096,Nick Hamson +2398,Dennis McCarthy +60969,Jeremy Harty +94115,Joe Pasternak +1246038,Michel Safra +1398103,Elliott Jobe +2404,Arne Meerkamp van Embden +1840475,Linda Ward +1417994,Jay W. Yowler +66729,Lizie Gower +10295,James V. Hart +1448082,David Lee +84372,Étienne Sauret +100988,Pat Dinga +1224272,John McLeod +548427,Karel Vanásek +47050,David Diamond +57406,Alec Berg +66878,William F. Nolan +1726510,Kara Lord +24217,Haris Zambarloukos +73033,Robert Crumb +108497,David Caffrey +1602307,Attila Kovács +33437,Susan Cartsonis +1458583,Bob Peishel +1897165,Jordan Walker-Pearlman +1624840,Allen Shawn +1748859,P. Todd Coe +1462398,Mirella Ginnoto +1552479,Jeanette Surga +2383,Peter Lauritson +91877,Brydon Baker III +77601,David Minty +544325,Masayuki Mori +1672753,Jane Kass +1858340,Raúl Cortés +72646,Tomás Gutiérrez Alea +95837,Richard Taylor +3106,John C. Hammell +1337458,Drew Kunin +72772,Marco Onorato +18611,Shinichi Sekizawa +12160,Satyajit Ray +1612627,Gail Davenport +1857476,Susan Inge Wood +1452618,Kristen Kogler +1338454,Jan Northrop +6335,Stefan Nilsson +1559586,Elliot Lurie +16820,Maike Haas +69145,Sylvie Bouchard +1401556,Brent Gloeckler +462,Greg Brenman +1123346,Samuel Hopkins Adams +20714,Jaime Romandia +1345620,Larry Stelling +3047,Jocelyn Moorhouse +1332126,Michael Gassert +1424937,Bob Keen +1152449,Alejandro Carrillo Penovi +106491,Mark Griffiths +1099204,Willi Behnisch +1454030,Angie Glocka +54273,Philippe Claudel +1461396,Lam Hoang +1425551,Clare Tinsley +11709,Marsha Garces Williams +1427557,Liam Daniel +1062061,E.M. Smedley-Aston +1456692,Akira Rizawa +958562,Gordon Gurnee +1549588,Jennifer Myers +1151,Martin Bregman +56759,David L. Bushell +22818,Glen MacPherson +1142860,Michael Conelly +1885596,Dan Neufeld +1478995,Stephin Merritt +1426222,William Bilowit +32506,Julien Hirsch +1893222,Lynn Clark +1733243,Sandra Lynne Hyhkö +1723390,Torben Bækmark Pedersen +25804,Enzo Eusepi +30249,Preston Sturges +563120,Freedom Jones +134431,Guy Bolton +1581075,Ken Marples +1398869,Douglas R. Johnson +1608997,Jack Watford +1209535,Lynne Ruthven +66530,Dara Resnik Creasey +1357071,James Waitkus +1009730,Nizou Yamamoto +1170025,David Lee Fein +139220,Asa Boyd Clark +934760,Susan Hill +1551550,Thomas A. Harris +132432,James Lee Burke +1532363,Sally Swisher +8936,Roger Murray-Leach +1567900,Scott La Rue +1459590,Dick Mingalone +12681,Eric Rattray +1418320,Brendan Smithers +81068,Marshall Lewy +1521518,Kathryn Bihr +1319622,Jill Trevellick +7066,Jack Nitzsche +78495,Ric Walkington +4557,Ulrike Putz +1462678,Luca Erbetta +154705,Chris Butler +16188,Howard Sackler +64833,Russell Streiner +13585,Nancy Nayor +114280,Rudy Schrager +69376,Paul Jutras +67589,Alastair Fothergill +131506,Evan Jones +16193,Robert Jiras +8448,Robert Fox +20791,Jean-François Robin +34851,Bruce Porter +1445334,Kazuo Baba +10723,Mike Newell +1305745,Alma Bacula +1637,Joachim Holbek +1569878,David B. Cunynghame +30173,Dorothy Holloway +24192,Dave Jordan +23427,Angela Levin +1462853,Alison Cohen Rosa +1415987,Simon Mein +11777,Tommy Lee Wallace +1567297,Ian Greig +1324229,Albert Roca +18857,James Sabat +2724,Stanzi Stokes +1421174,Bruce Lewin +1243078,Larry Rapaport +17003,Belén Atienza +1120224,Daniel May +1232480,Jack Aldworth +25455,Gil Netter +1451415,Brooke Westberg +15893,Teresa Eckton +71329,Jonas Åkerlund +11817,Nathan Hope +1424452,Mun Ying Kwun +1526852,Gavin A. Holmes +1767061,Lee Kwock +64667,Andrew Deskin +1573491,Laslo Nosek +1553252,Will Dearborn +5238,Günter Rohrbach +3965,Deborah Aquila +7557,Daniele Maggioni +1667248,Grant Viklund +7184,George Folsey Jr. +72285,Christine Hoffet +10346,Robert Bresson +1565943,Kevin Gugle +1368867,Allen Hall +1391583,Myles Aronowitz +65271,Olaf Ittenbach +1450723,Alberto Verso +17367,Stefan Soltau +17397,Callie Khouri +586335,He Bing +9199,Lilly Kilvert +1401105,Michael Gleason +1748503,Don Moore +8753,Shaila Rubin +1673527,Dwane McIsaac +937749,Mark Magidson +1870781,Randy Alderson +275201,Rick Butler +1404052,Andy Day +56352,Bennett Salvay +1392762,Kim Olsen +1355529,Carol Kiefer +1733759,Damien Lazzerini +142301,Helo Gutschwager +1068335,Mirsad Herović +1531914,Massimo Ruberto +81932,William A. Drake +1574664,Erica Headley +1447142,Mike Patrick +137390,Edward Abbey +18823,Dagur Kári +60002,Will Gibson +100579,Arthur Lange +1029500,Olivier Meidinger +1418310,Mark Rogers +17150,Melissa M. Levander +550575,Marie Zemanová +9536,Jiří Zobač +1404755,Julia Frittaion +6389,Eric Alan Edwards +1177363,Goblin +8386,Sarah Bradshaw +62800,Michael Leahy +1512798,Jamie Christopher +15245,Tom Gorai +69673,Roger Soffer +1438603,Jay Robinson +27041,Sandra Hernandez +1760,Jerry Goldsmith +72629,Geoff Burton +2589,Terry George +56064,Sabine Rollberg +1735713,Patricia Van +23454,Phil Harvey +84981,Brian Trenchard-Smith +1111684,Eric Cross +1222,Albert Brenner +5914,Mary Vernieu +45057,Chris Roope +156108,Peter Moore +1414292,Kathryn Mindala +47847,Alan Jones +53648,Eyde Belasco +989154,Veniero Colasanti +84643,Daniel Fuchs +57304,Kenji Kawai +28970,Mary Shelley +1031,Thomas Krag +1296119,Na Hong-jin +1418462,Chris Walmer +1567949,Lois DeArmond +1427542,Chic Anstiss +598,Mike Fenton +8843,Mick Jackson +1877380,Deborah Hebert +28441,Johannes W. Betz +77629,Kristin Grundström +1183915,Kristin M. Burke +63123,Alexandra Bouillon +64052,Steven A. Lane +57699,Peter Hannan +1182909,Anji Bemben +1197296,Werner Schmidt-Boelcke +1629469,Adith Duangjan +46784,John Toon +960759,Kristen Anacker +70940,Albert Maltz +50651,Takao Okawara +72061,Frank Lloyd +1442507,Frank Howard +65377,Bernie Goldmann +1249819,The Angel +1406841,Jorge Sacristan +1118402,Al Di Sarro +1209263,Bobby Bukowski +96446,Kevin Rafferty +18513,Michelle Matland +68081,Rona Doron +32530,Igor Oberberg +1403636,Richard Dwan Jr. +1558700,Stephen Andrzejewski +1673808,Mathieu Blouin +1411272,Lawrence Karman +67083,Toshiie Tomida +1670364,John Modell +1549073,Anthony 'Spike' Simms +1416168,Shannon Leigh Olds +1719855,Wang Chien-He +116085,Michael Bacon +34928,Toshihiko Masuda +1749141,Anna Dryhurst +29279,Walter M. Simonds +1552808,Mark Rodahl +1125824,Céline Kélépikis +1630532,Margaux L. Lancaster +553115,Yutaka Shigenobu +1371064,Gregg Barbanell +97450,Benjamin Frankel +1585182,Luis Moreno +982992,Ashleigh Jeffers +1546854,Peter Gelfman +1807336,Frank Delmar +1381413,Otto C. Pozzo +47724,Tom Shankland +1546668,Herman Rosse +1273394,Kiel Walker +69762,Jarin Pengpanitch +1089662,Claire Hedlund +1533676,M.M. Paggi +17797,Michael Taylor +6958,Eric Zumbrunnen +1390232,Torben Johnke +32051,Robert Gordon Edwards +1435690,Bennett Andrews +50724,Jeffrey Sudzin +1391067,Judy Courtney +1643713,David M. Bernstein +1104819,Maciej Ślesicki +23339,Gerd Nemetz +1326,Liz Mullane +108481,JP Siili +1393278,Megan Tanner +64946,Carlos Davis +1555684,Ron Veto +113194,James Bamford +142157,Doug Coleman +1551222,Richard Van Dyke +1549584,Clare C. Freeman +11580,César Silvagni +7238,April Ferry +39516,Nick Cave +58057,Guy Zerafa +15248,Ted Tannebaum +7655,William Holland +1578204,Brian Cuscino +10781,Michael Apted +1406842,Abbot Genser +6341,John Hardy +54900,Victoria Farrell +97617,Ryan Nicholson +1399643,Larry Garrison +1408849,Flax Glor +1415105,Patrick O'Sullivan +8880,Neil A. Machlis +1506425,Mario González +1353,Zhang Weiping +1455395,Vivian McAteer +17791,Ashley Rowe +105570,Felix Jackson +66733,Benny Medina +111388,Joel Bergvall +27146,Robert Lieberman +93911,Terence Davies +1430259,Olga Dimitrov +1017296,Billy Rich +4410,Roberto Rossellini +137118,David Kuklish +1758624,Mise Kageya +32086,Christiane Lack +1334511,Adam Grace +957442,Judy Shrewsbury +1552486,Duncan Marjoribanks +1399869,Doug Oddy +1400345,Jamie Venable +83642,Yasuo Furuhata +96447,Pierce Rafferty +3449,Frank P. Keller +1416978,Jari Ikonen +121275,Daniel Curet +79729,Charles B. Moss Jr. +3159,Doane Harrison +116558,Charles Einstein +1791,Harve Bennett +78108,Isaac Florentine +1620074,Roger von Moellendorff +61312,Aimee Schoof +1459114,Jane Morrison +1595153,Kalju Kivi +1404850,Michael Gibson +1293492,Matt Rose +1767025,Holly Forsyth +1747112,Mike Siebert +225014,Jukka-Pekka Valkeapää +612897,Henri Colpi +1409344,František Čížek +60239,Diana Choi +563706,Haruhiko Ohyabu +16194,Philip Leto +1418162,Elisa Sirvent +578049,Colette Crochot +1186326,Paul Deason +1462690,Sandra Ryan-Moran +1125598,Dino Di Dionisio +53288,Mario Tosi +1533682,Hugo Grenzbach +112521,Chris Cornwell +208214,Chris Provenzano +41375,Ben Jackson +217995,Peter Stratford +111442,Oscar Peterson +41040,Tony Gatlif +12526,Avram Butch Kaplan +74038,Kira Davis +43441,Alan Cody +16305,David Levien +16276,Jang Seong-back +69394,Cole Porter +108926,Adam Salky +1043952,George W.S. Trow +1447146,Thai Son Doan +1534522,Robert L. Blatman +7563,Paola Bizzarri +1717523,Jenn Bubka +1441365,Peter Wilke +92470,Fumi Mashimo +1183391,Ron Batzdorff +40926,Renzo Genta +1405807,C.J. Goldman +80384,Paul Andrew Williams +6316,Laurent Dailland +4063,Vern Hyde +73345,Jay Chattaway +1840483,Geraldine Stephenson +39981,Mauricio Rubinstein +5543,Douglas Gresham +1407827,Gloria Davies +83074,Mike Cunningham +1206058,Jacqueline Babbin +937281,Claude Nedjar +218491,Jim Coleman +70458,Sandy Gallin +52025,Laurence Rosenthal +119021,Nekojiru +1066805,Gerald Gouriet +20500,Richard Connell +97962,Martin B. Cohen +1534486,Jim Hill +21281,Kaja Fehr +1526466,Pearl A. Lucero +4298,Leigh Brackett +1522776,Christine Moore +41287,Louise Goodsill +54025,Karyn Kusama +1609384,Teri Fettis-D'Ovidio +14711,Timothy Harris +21351,Derek Brechin +68592,Robert Carrington +89086,Mohamed Ygerbuchen +1192559,Tere Duncan +68126,Christopher Tyng +21155,Jim Kouf +4352,Mel Berns +1536114,Dee Corcoran +1602888,Marla Carter Barrett +252878,Bud Friedgen +1738175,Kevin Flatow +1070104,Christine Tinlot +6208,Brigitte Broch +148404,Thomas J. Crizer +44932,Leonard Horn +6361,Nick Hamm +1419802,Matthew Mashburn +1895996,Linda Brachman +1670365,Peter Shapiro +1028415,Graciela Daniele +1128347,Bill Boes +25550,Laurence Bennett +1558203,Kathryn Madden +1377125,Lucy Coldsnow-Smith +16344,Daniel Laurie +1610116,Wojciech Majda +1614529,Alexander H. Gayner +131717,Howard B. Kreitsek +1889469,Ivan Vorlícek +1120540,Luis Zanger +60684,François Léonard +10397,Carol Ramsey +1072821,Steven Woloshen +37930,Young-wuk Cho +1595473,Brian Feola +1046555,Christopher Bates +1450353,Elizabeth Ito +1447476,Johan Klingler +1573115,Michael Kory +93561,Aleksi Mäkelä +585015,Alan M. Dershowitz +1466442,Morgan Beggs +28170,Jay Dee Rock +1663,Marie-Josèphe Yoyotte +1800136,JoAnn M. Laub +23352,Steve LaPorte +1449577,Christine Moore +3893,David S. Goyer +64877,Rod Daniel +1550619,Joanie Diener +229813,Robert Ortiz +1667242,Lillie S. Frierson +1334793,Chris Hanson +1448073,Chris Tootell +23555,Willi Segler +8706,Anne Kuljian +1375599,Rolf Harvey +16707,Gerhard Meixner +1279696,Laura Kasischke +1451302,Emily Mantell +14193,Keith Marbory +1553259,Gene Ward +21982,Stan Seidel +1588673,Jac Charlton +1611808,Pedro Gandol +1877352,Marc Gillson +1447390,Sunny Apinchapong +559319,Douglas H. Leonard +5056,Terry Rawlings +1697,Takeshi Seyama +565369,Ted Allan +135830,Au Kin-Yee +19268,Jacques Gallois +1735735,Craig Jurkiewicz +32796,Kevin Tent +966099,Zane Smith +1558702,Thomas Vicari +1392621,John Breinholt +1269306,Warren Hamilton Jr. +1462693,Marc Vulcano +8882,Joel Thurm +13614,Deborah Kaplan +1532072,Jason Mayoh +1389555,James C. Feng +1407822,Glenn Parker +1462074,Sarah Cherry +32442,Dolly Tree +1058048,Norbert A. Myles +11114,Chris Dickens +14446,Henry Blanke +11061,Richard Macdonald +1662332,Colin Anderson +1546643,Don Reynolds +10009,Edward C. Carfagno +130233,David Lewis +574068,Magdalena Piekorz +1546873,Linda Folk +554474,John Pieplow +932931,Eduard Volodarskiy +1547309,Mark Ulano +54897,Boyd Willat +11593,Rudolph Maté +1402112,Ken Teaney +1499769,Gail Bennett +60218,Doug Short +1796490,Lesley Mallgrave +40032,Ayten Sentürk +1408280,Maria C. Connors +56982,Tom Berry +10604,George W. Davis +4020,Christian Sebaldt +1350804,Eric Friend +81828,Manuel Puro +1564965,Andrew Holder +2033,Peter E. Berger +1206596,Alberto Gonzalez-Reyna +57095,Daniel Rogosin +548446,Greg Zimmerman +4340,Chris Norr +63291,Ron Schmidt +946417,Arlene Klasky +33442,Andy Paterson +1172621,Alvin C. York +1256,Oscar Fraley +1403524,Heather J. Morrison +117196,Dan J. Birnbaum +1413947,Lee Martin +1573089,Michael K. Reynolds +1414548,Guy Francoeur +554163,Toshio Taniguchi +21792,George Gallo +76688,Darren Smith +37371,Gianlorenzo Battaglia +1335179,Katie Gabriel +4284,Stéphane Rosenbaum +58052,Wai Ka-Fai +17313,Michael Green +1552871,Earl Coffman +69768,Chi Yuan Hsi +1382436,Lucas Platt +1389134,Douglas Murray +29254,Cecil Holland +1419814,Reid Russell +986294,Brendan Flynt +1438614,Christel Brunn +15226,Scott Hecker +1841488,Charis Horton +1830788,Lisa Forssel +1398177,Paul Menichini +150839,Inger Pehrsson +1183664,Lisa Marie Schiller +70749,Man-Ching Ng +120198,Pat Costello +3498,Bill Johnson +78371,Shigetsugu Yoshida +1346951,Carmen Cristea +1395362,Glenn Allen +39032,Lauren Lloyd +11697,Erik Feig +63601,Frederic Evard +180528,David Sheldon +11472,Irwin Winkler +11037,Lukas Moodysson +8943,George Gibbs +77726,Mark Vennis +5438,Richard Bridgland +1441846,Weaver Webb +74965,George Cleethorpe +36081,Shinji Komiya +89211,Daniel Diamond +1433234,Antony Hunt +34883,Jeremy Kramer +1625895,Beth Gilinsky +1377217,Manuel Martínez +1309510,Kunio Miyauchi +1593085,Brian Hathaway +29288,Harry Alan Towers +1538708,Sean Jensen +2945,Stephen Gaghan +957249,Lynette Meyer +1457213,Eun Young Park +1638383,Daniel Langlois +22143,Denis Maloney +1395454,Ineke Majoor +57601,Joe Medjuck +1968,Françoise Menidrey +1733785,Sarah Trowse +2709,Wendy Stites +1117855,Zhan Teng +83340,Glenn S. Alai +1567970,Gregory Diggins +11657,Saar Klein +1427508,Vince Madden +43094,Ken Katsumoto +85134,Adam Hackbarth +1661552,Chris Hammond +64117,Michael Blankfort +950637,William C. Gerrity +1341798,Colleen Gibbons +1534973,Francesco Ferrara +223574,Ruth Barrett +29629,Sidney Fields +1746552,Alan R. Disler +11444,Claude E. Carpenter +1381336,Armando Sgrignuoli +72562,Tom Musca +20489,Steve Joyner +56570,Wolfgang Murnberger +1653365,Marlene Kolstad +61413,Ron Anderson +1147603,Richard A. Wright +84642,Abem Finkel +34336,Laura Fattori +1423018,Maggie McFarland +1408361,Kevin Edland +1528368,Mark Larkin +223128,Jessica Bouz +70639,Benni Korzen +57464,Alan Greenspan +1411320,Paula Price +1775018,Tim Gibbons +1541694,Evyen Klean +60268,Julia Pistor +1441328,Cindy L. Russell +1761921,Hilary Hahn +1896000,Jon Stern +21587,David Lawrence +7211,Deborah Nadoolman +208693,James Wilson +927278,Elisabeth Mehu +46785,Johnetta Boone +227555,Keiichi Sugiyama +14005,Gil Parrondo +941809,George Haas +1550859,Paul Gerd Guderian +1625520,Armando Mannini +21036,Roy Lee +110049,Bo Hr. Hansen +1562889,Madame Lisette +1309312,Kim Young-Heon +1546830,Ángela Núñez +9890,Jean-Paul Mugel +1436181,Melissa Brockman +14829,Robert L. Hoyt +1073780,David Ebner +18579,Burt Kennedy +1726441,Mark L. Hendrix +16934,Michal Prikryl +1134763,Kathy Wood +1576236,Tenzin Lhalungpa +1803773,Pierre Remy +29550,Otto Kanturek +1407882,Gannon Murphy +9405,Desmond Cannon +64508,Sidney J. Furie +1392613,Jeffrey Porro +1344264,Robert Grieve +2118,Mickey S. Michaels +1723016,Luis García +1146814,Marcel Giroux +73678,Seiya Kawamata +1789076,Robert MacLeod +67479,Fred V. Murphy +1590602,Brahim El Amrani +55759,Giovanni Bertolucci +1457695,Claudia Moser +1247466,David Furnish +1441040,Luciano Sagoni +20601,Charles Nelson +1367346,Michael Satrazemis +1063962,Steven Avila +1607838,Aljoscha Zimmermann +1858342,Rosa Isela Atondo +1080781,Todd Fellman +77208,Ron French +12973,Stephen Marsh +1445906,David Wilson +1201953,Jakob Ballinger +117779,H. William Miller +1041667,Brett Graves +1531142,Steve Wakefield +1328139,Dawn Y. Line +1576024,Mike Clark-Hall +1537500,Randy Spendlove +1415951,Norma Webb +49504,Harald Maury +1482098,Michael Downing +1833616,Jeff McLuckie +70818,Harmon Kaslow +1661501,Wilson Shyer +1615258,Lorenzo E. Martinez +137842,Peeter Simm +67539,Clay Tarver +71191,Martin Davich +1305028,Marcel Fradetal +60784,Oliver Hengst +409,Cathy Konrad +66691,Richard De Alba +1813970,Dave Tidgwell +55409,Ivan Strasburg +1029562,Lee Shin-Ho +1590600,Patrick Barthelemy +61927,Christopher Milburn +168128,Edward Hope +8876,Randal Kleiser +70747,Baoping Ma +238809,Ryohei Akimoto +1455305,Nalle Hansen +117576,Bennett Cohen +568070,Anders Hörling +1400322,Rüdiger Jordan +134191,Jordan Katz +62439,David Belle +70129,Takao Saitô +1171528,Jonathan Freeman +25950,Jean-Paul Rappeneau +238741,Ed Montgomery +4710,Benjamín Fernández +139758,David E. Peckinpahs +76243,Dave Bullock +1092852,Toshio Ubukata +69020,Christopher Mankiewicz +1418315,Alistair Reilly +119788,Josh Greenfeld +58083,David W. Rintels +1402718,Lena Herzog +19267,David Goodis +1765727,Danny Ned Moore +1300832,Mark Wilby +119025,Kan Onoshima +1552864,Joyce Alexander +56743,Vittoriano Petrilli +1401989,John S. Moyer +107417,John Clyde Wagner +1111814,Argyle Nelson +75882,S.R. Bindler +554587,Homayun Payvar +1733781,Paul Kelly +1114918,Åsa Mossberg +35032,Michael Donovan +1276269,Albert Espel +77441,Darren Grant +1001706,Stephen Barton +1567911,Lori C. Miller +13621,Dennis E. Jones +129438,Jens Jonsson +1425584,David Wilson +4613,Nile Rodgers +1092895,Hideo Shigehara +8419,William M. Connor +1581137,Friedrich de Grude +14493,Bill Thomas +175502,Todd W. Langen +1114891,Bill Colleran +23884,Tani Cohen +59949,Michael Peyser +1724263,Tom Stanger +77300,Michael Schultz +58766,Simon Fellows +31051,George Kirgo +1399876,Ron Phillips +58266,Ben Myron +1527912,Beth Lipari +1600184,Lucilla Mussini +1435657,Michael Bauman +20660,Carlos Reygadas +14648,Arthur C. Miller +1607803,Alex Vlacos +71273,Pritam Chakraborty +1718,Brian Morris +5330,Lucy Richardson +1392461,Bill Kelly +942947,Tangerine Dream +1611822,Christopher Almerico +63553,Tracey Jeffrey +1711516,Lisa Nilsson +1153846,Kimberly Adams +1466988,Susan d'Arcy +1407225,Ronald O. Jaynes +25237,Julien Carbon +99546,Sergio Stivaletti +12804,Peter Yates +85133,Thaddeus Branch +28402,Dixie J. Capp +1608832,Takashi Marumo +1388862,Sean Mannion +1258,Stephen H. Burum +71307,Laetitia Colombani +35079,Colin Towns +1128,Agnieszka Holland +53685,Barbara Tulliver +1531492,Michael Tinger +1407685,Meghan L. Noble +582929,Robert Wischhusen-Hayes +1395129,Mark Stevens +115563,Daniel Woodrell +11623,Marguerite Beaugé +68463,Barbara Ford +43090,Peter Widmann +9271,Michele Laliberte +78832,James Dietrich +1897875,Patrick Yackett +1307307,Simon So +56995,Joe Gareri +1120537,Augusto Greco +1442502,Aaron M. Albucher +91801,Carlo Grandone +1523591,Mike Kirilenko +75795,Bryce Courtenay +1466702,Adelina Handuri +1321354,Simon Laurie +74035,Hongyu Yang +1567321,Wade Howie +1319624,Alex King +126707,George LaVoo +69883,Peter Watson +1378162,Stacey S. McIntosh +72258,Steve Boyum +47650,Alan Almond +1574649,Edison Jackson +993394,Steve Norris +1028338,Felix O. Adlon +7237,Jay Hart +1660885,Minoru Kanekatsu +1780681,Kendal Cronkhite +65865,Damien O'Donnell +43155,Eileen Buggy +50757,Marcus Adams +1031288,Tiffanie DeBartolo +1412008,Patrick Kelley +936169,Michael Snow +85453,Philip Yordan +1602644,Gleb Matveichuk +961609,Norman Newberry +1146968,Clara Tudose +213337,Ondřej Trojan +966560,Chris Trujillo +29905,Marguerite Duras +40379,Lionel E. Siegel +129666,Virginia L. Stone +22145,Keith Brian Burns +56899,Haim Saban +1145014,Alessandro Usai +937954,Peter Golub +1586339,Michal Svoboda +1578736,Francisco Ariza +13669,Charles Bernstein +10444,Romaine Greene +191069,Patricia Noland +1531334,Vittorio Trentino +43817,Richard Morris +1877138,Scot Deer +1600617,Gary Harmer +1017240,Jenny Eagan +91087,Stanley Kastner +41585,Maguy Aimé +939218,Bill Vigars +67823,Hal McElroy +231917,Max Wilén +2866,Lee Percy +58715,Susan E. Cunningham +1120429,Harri Räty +30855,Dimitri Villard +1392106,Takashi Seida +1551707,Darice Rollins +67232,Ewerhard Engels +29419,Vanessa Pereira +1403522,Harry Peck Bolles +65592,Karen Snow +1072476,Robert McNaughton +2635,Shaheen Baig +127331,Andrew Litvack +1546457,Andrew Silver +5697,Alfred Uhry +1813211,Craig Bryant +1533743,Milan Mitić +1253852,Kelly Crean +1389596,Katrina Mastrolia +7944,Laura Phillips +56514,Steve Bloom +1214632,Daniel Arkin +49069,Luciano Tovoli +1124528,Janette Kronegger +66085,Carol Doyle +9852,Gene Milford +49903,Tim Hill +1814205,Austin McCann +10537,Harry Stradling Sr. +70288,Robert C. O'Brien +1648110,Antoine Douaihy +1378766,Catharine Fletcher Incaprera +1219059,Claudia Katz +26024,William Perlberg +15175,William Friedkin +1399481,Wendy Lee Roberts +1401743,Mary Barltrop +42037,Rick Young +59362,Andrew Jimenez +1274289,Patti Carns Kalles +1746553,Judith H. Bickerton +28642,Wang Hui-Ling +1404722,Joseph B. Conmy IV +20248,Polly Tapson +66222,James Fargo +37929,Choi Seung-hyun +1389599,Alan Collis +1319750,Thomas Minton +1124107,Cary White +29609,Stuart Kearns +23118,Paul Lemp +1443039,Gabriel De Cunto +1707453,King Hernandez +1554752,Elvin Ross +1576005,Nick Ray +8508,Thomas Little +3788,Jorge Guerricaechevarría +2654,Robert Burks +85129,Andrew Hurwitz +2551,Marcia Lucas +1547235,Paul Postal +116608,Martin Pope +1597758,Christian Oster +596,Lawrence G. Paull +1560780,Rochelle Sharpe +1378169,Rick Kline +6156,Molly Malene Stensgaard +1224779,David Frazee +111427,Ivan Cotroneo +960811,Colby Carr +113097,Derek Vanderhorst +1552360,Rob Sanderson +1864233,Oda Groeschel +1727970,Don Lord +53196,Sergio Salvati +148560,Norman Corwin +61119,Andrew Pfeffer +1141550,Fenn Sherie +1764736,Valerie T. O'Brien +52122,Ed Naha +82347,Ernest K. Gann +1531878,Carrie Angland +1534821,Gabriel Hardman +55264,Jerrold Freedman +57475,Álvaro Rodríguez +1428901,Eamonn Butler +1451301,Roddy MacDonald +20953,Harry Manfredini +1447301,Trevor Tamboline +1394754,Kirsty Millar +937494,Stephanie Germain +16959,Jonathan Dayton +62742,Brian Edmonds +65021,Marty Kaplan +55599,Winship Cook +1554889,Manning Tillman +89685,Fletcher Markle +1281018,Dennis Patterson +20308,Espen Sandberg +1314150,Franco Corridoni +1396506,Shane Shemko +1400070,Daniel Pagan +3599,Charles Bennett +1515643,Martin Schlesinger +97774,Alfred E. Green +11847,Ronnie Taylor +148154,Shamus Culhane +1188800,Tim Kaltenecker +12115,Steven Bochco +68023,Johannes Heide +1178751,Koji Hashimoto +219954,Lauren Faust +1483224,Adrian Fernandes +1603624,Sebastian Argol +73748,Marco Bechis +33019,Bryan Foy +1646879,Nina Aufderheide +1717529,Alisa Kasmer +14022,J. Russell Spencer +158495,Richard Whitley +6382,Tom Read +1457403,Sergio Lavilla +1305,Bill Abbott +16329,Charles Okun +1424127,Douglas Greenfield +167898,Louise Rousseau +61677,Burny Mattinson +65982,Johnny Njo +1414544,Diane Woodhouse +76275,Dieter Van der Eecken +25254,Wai Kin Lam +76160,Mel Dellar +1150504,William Gordon +1186282,Isabel Peppard +75305,Peter McManus +62347,Emma Holand +1177175,Wojciech Mrówczynski +21673,Ericson Core +225703,Petra Hačkova +1583006,Robert Margolis +1056684,Jesús Bracho +1566258,Richard Colwell +1407226,Steve Sawhill +89030,Curtis A. Koller +81201,Charles Guard +14355,William Dozier +76936,Yojiro Takita +1407673,Dean Kennedy +1415882,Irene Sullivan +1813215,Juliet John +72106,Ken Halsband +1172557,Clements Ripley +1638206,Janik Faiziev +1017698,Edith Schlüssel +1879216,Frank La Rue +1600612,Tim Campbell +1319382,Marian Toy +752,Judy Taylor +1209073,Pekka Lethosaari +958997,Emanuel Gerard +1389589,Vic Petrotta Jr. +67753,Mark L. Lester +1375099,Peter Waggoner +18784,Karen Schulz Gropman +302339,Lance Rivera +1316504,Linda Dowds +1877158,Don Sheldon +1580047,E. Smirnov +3659,Fred Schuler +1104353,James Blakeley +1451296,Alex Hillkurtz +1409701,Charlotte Rouleau +64157,David N. Titcher +1554007,Mark Silverman +145845,Richard Llewellyn +35088,Barry Opper +1540596,Yozô Fuji +33436,Sergio Aguero +1211074,Amy Endries +1428473,Bruce Bigg +146295,Yim Ho +77729,Ellery Ryan +1279912,Carlos Rosario +1470183,Lynn Campbell +1534938,Brian Callahan +568,Kim Krizan +1278332,Thomas Sabinsky +61121,Lou Arkoff +76212,Don Keyte +1673810,David Zbriger +1598745,Terry Henderson +9817,Nigel Phelps +80247,Stephen Chiodo +1183567,Arnie Sirlin +65043,Samuel Goldwyn Jr. +1447557,Rachel Wyn Dunn +1767055,Andrew Coates +588901,Elisabeth Lutyens +16426,Russell J. Smith +66851,Martin Wichmann +231414,Grigoriy Chukhray +1543231,Christopher Barnett +1183454,Robin Squibb +1460514,Bingo Ferguson +1337473,Dana Howes +100747,Diana Elbaum +1144705,Irvin J. Martin +999565,Joe Walker +27908,Bertram Evans +983547,Chris Eska +1378248,Randy Peters +12374,David Coatsworth +1636755,Ted Hanlan +1616179,Adrian Gache +78023,Michael Herz +1089955,Ronald Meier +1808568,Fred Wasser +23490,Julia Dehoff +1534136,John Murphy +58726,Leslie Bohem +143184,Mark Rascovich +1233653,Darwyn Cooke +1116038,Daryl C. Lefever +10836,Elinor Rose Galbraith +2146,Gregg Hoffman +1394129,Tim Nielsen +65434,Robert Harris +136544,Grant Morris +55168,Boris Schönfelder +551675,Svatopluk Malý +37710,Peter Hyams +1513638,Nicholas Stevenson +1453316,Dawn J. Jackson +67429,Erich Wolfgang Korngold +17281,Mike Hodges +10725,Jon Gregory +7397,Ed Decter +5837,Don DaGradi +54052,Holly Black +138762,H.A.L. Craig +1390235,Matt Falls +7163,Nicholas Pileggi +1635089,Cornelius Browne +1552523,Marco Black +2705,William M. Anderson +22105,Jeremy Conway +24179,Lynwood Spinks +81527,Abe Seidman +13781,Edward Mann +1554537,Frank Armitage +1312810,Alastair Sirkett +1692,Yutaka Maseba +383759,Scott J. Schneid +21801,Lee Scott +64314,Diana Noris +9967,James D. Bissell +36783,Bertram Strauß +1555686,Randy Paik +963798,Gena Bleier +84692,Finn Taylor +9460,David A. Poole +1398572,Barbara Gosnold +280800,H.H. Cooper +18330,Rob Cowan +142155,Laura Civiello +81964,Stijn Coninx +17843,Harry Kurnitz +1445828,Susan Ransom +51068,Jaume Martí +1581136,John Bateman +68439,Harold Budd +584535,Neil Simon +1174325,Keith S. Payson +1276405,Kerry Skelton +11092,Simon Kinberg +11994,Ian McLellan Hunter +1325807,Javier Martínez +1421767,Karine Jonet +1070105,Bertrand Burgalat +1554089,William Randall +2332,Christian Petzold +69133,Joe Grant +41114,Wieslawa Chojkowska +20742,Jennifer Gibgot +1170987,Alex Skvorzov +1384742,Murielle Hamilton +91882,Tony Currie +58140,Bill Miller +1433182,Leah Rhodes +34931,Stan Berkowitz +66807,Rupert Hitzig +1048402,Bill Douglas +222573,Elliott Lester +12701,Carl Zittrer +1392925,Portia Tickell +89007,William Hyer +96972,Alain Berliner +75122,Lachy Hulme +29750,Steve Neill +74429,Josh Pate +1425857,Stefanie Stalf +1823512,Lukas Libal +1432022,Eric Durst +1216005,Scott Williams +31066,Maury Winetrobe +73992,Peter Donahue +1123062,Koji Kajita +29662,Terence Fisher +15607,Jaume Roures +383819,Andre Scholtz +31520,Todd Wagner +1833854,Sherman Waze +1521022,Patricia Grande +1868842,Sean G. Miller +10969,Karen Lindsay-Stewart +1496890,Ben Freedman +26064,Joel Goldsmith +668,Mary Selway +1603862,Randy Staheli +1448323,Mattias Lindahl +1409237,Pimentel A. Raphael +1021564,Okihiro Yoneda +84102,Don Hulette +1424593,Bente Winther-Larsen +1386315,Meg Beatty +1204030,Noël A. Zanitsch +15366,Marco Weber +13005,Matt Chesse +56411,Glenn Ficarra +10603,Barbara McLean +1541841,Clive Coote +1440844,Sean Dever +1390303,Mae Woods +1469622,France Lachapelle +7695,Jean-François Lepetit +1461151,Jeff Croke +55444,Marisa Yeres +936661,Filip Cermák +1534937,Frank Viviano +62829,Gail Laskowski +1528991,Jeremy Raub +1310225,Robert Hobart Davis +1072002,Morton Gottlieb +143561,Sam Taylor +42367,Lisa M. Hansen +26987,Albert Delgado +223392,Alfred Lewis Levitt +1394286,Michael Mulholland +1401631,Michelle Pazer +1568002,Jupp Büttgen +957889,Stefan Dechant +17603,Enrique López Lavigne +124830,Lisa Barros D'Sa +67877,George Litto +67769,Xiaonan Pei +897,Bonnie Timmermann +1745244,Angus Robertson +59805,H. Rider Haggard +98483,Ubaldo Terzano +213665,Tom Williams +1432642,Tony Bacigalupi +2773,William H. Ziegler +60859,Lek Chaiyan Chunsuttiwat +1446690,Marta Font +1316805,Jamila Aladdin +1399022,Deborah Newhall +18836,Guido De Angelis +17828,Michael Barnathan +1694,Hiroe Tsukamoto +1534241,Masanobu Deme +7094,Witold Sobocinski +20032,Luc Drion +19770,Callum Greene +34524,Frank C. Agnone II +42631,LaReine Johnston +134546,Ryuichi Takatsu +79143,Sue MacKay +1836470,Sarah Jackson Burt +1219835,Don Starr +1392898,Jim Ramsay +29707,Barry De Vorzon +9080,Charles Rosher +1442568,Marco Barla +1460421,Joseph R. Thygesen +1854995,Jordi Montblanch +1836133,Piers du Pré +5369,George C. Wolfe +63943,Rowdy Herrington +58278,Mark Hanlon +1413933,Colin Worrall +1727312,Claudio Frollano +1551521,Tim Boot +56210,Pablo Trapero +1400105,Liang Cai +10497,John Fenner +138097,Peter Hock +551920,Marya Delia Javier +1406896,Robert Topol +1124531,Andrew Jackness +1798038,Beni Turkson +579248,Björn Carlström +1667263,Carol Green +25633,Tom Priestley +28877,Theo Mackeben +1590639,Jérôme Clément +1294215,Henri La Barthe +139145,Jade Healy +1603323,Allan Yamauchi +1761070,Frank D. Menges +117242,Ruth Sullivan +1458343,M. Frann McCracken +65402,Michael Muhlfriedel +1336507,Ed Arter +1558416,Alan Grayley +65879,Kristian Levring +1453284,Jeff Howard +1391725,Chad Malbon +52529,Elena Soarez +1391714,Nick Breslin +1091870,Ray Gaulden +1371315,George Hippard +1076,Reinhold Heil +36591,Jacqueline Durran +1899132,Joe Aller +1540890,Rodney Berling +589942,Terry Baliel +1416157,Mike Hardison +1406900,Ghilaine Bouadana +231131,Michael Hogan +1443416,Ghaouti Bendedouche +228729,Lev Kuleshov +1322137,Clare Spragge +1400350,Javier Delgado +72067,Margaret Booth +1122005,Nicholas Davies +17234,James Lyons +1309314,Oh Seung-Hwan +1533052,Lona Vigi +2239,Anthony Minghella +116228,Richard Joffray +5331,Stephanie McMillan +1661562,Heidi Topper +41411,Robert B. Hauser +1411526,Kevin Blank +1418801,Darin Rose +1733729,Mustapha Haouas +33323,John Osborne +1476831,Karim Abouobayd +1593282,Wendy Delouche +1470186,Mary Bing +60082,Lou Holtz Jr. +1398873,Annie McEveety +1102479,Tim Truman +7394,Evan Hunter +83088,Kimberly Ellen Lowe +1565212,Julia G. Hickman +5911,Elizabeth Avellan +75576,Glenn M. Stewart +577618,Joshua Culp +1563899,James J. Mase +1562886,O'Kane Conwell +231119,Rick Filon +1415189,Andy Chmura +46337,Fred Lyssa +558286,Alvin Wyckoff +1418826,Elliott Marks +1578903,Randall Love +1405362,Oriol Tarragó +57825,Jürgen Büscher +65108,Don Winslow +1335040,Terry Ewasiuk +1194023,Ann Bruice +1605251,Nicla Palombi +1448052,Anthony Elworthy +53841,Brendan Galvin +1856484,Ray Sundlin +1584153,Federico Cueva +21409,Kristian Bernier +78917,Ritesh Sidhwani +1418301,Belinda Bennetts +1546904,Robert Ward +14055,Robert E. Relyea +1575727,Tim Ferrier +1408384,Charlie Noble +9959,Antoine Bonfanti +80370,Sean MacLeod Phillips +10202,Norman Baillie +57439,Allen Shapiro +929944,Avra Wing +1878364,John C. Chulay +1342643,Arthur Dunne +1013566,Franco Ceraolo +1424536,Bruce Bisenz +33062,Curtis Bernhardt +904,Jeffrey L. Kimball +73098,Karsten Kiilerich +30154,Gene Havlick +1856491,Gregory Lamberson +62743,Graham 'Grace' Walker +1550566,Frank Bennett +19380,Brigitte Brassart +1063181,Roger Fellous +5582,Stephen Goldblatt +10151,Samuel E. Beetley +1424599,Nick Vos +12330,Cesare Zavattini +1574637,Steve Hertler +1613336,Greg T. Moon +1305945,Tom Prince +1300834,Darryl Hammer +9008,Lesley Stewart +56078,Julia Sheehan +8273,Mark Worthington +1392250,David Marder +989768,Tanit Jitnukul +1889077,Raymond Johansson +1095314,Jean Scott Rogers +96676,Tomm Moore +81614,Gregory Hinde +1090854,Frank B. Good +1402045,Anna Krommydas +23650,Harry Benn +1521680,Luis Luna +30771,Henry G. Saperstein +1300338,Tera Hardwick +61172,Darena Snowe +1535810,David Leigh MacLeod +380639,Stan Rogow +1240887,Russel Crouse +1458527,Allen Weisinger +1673549,László Sebõ +85857,Gene Merritt +1462071,Dave Arrowsmith +18196,Pierre Braunberger +69925,Robbie Kondor +81696,Russ Krasnoff +1461369,Vince Caro +1142383,Maria E. Nelson +41831,Lionel Couch +67240,Carlos Silva Da Silva +1565936,James Coraloran +1098541,J.J. Cohn +124858,Jan Forsström +37426,Jim Harrison +13082,Paul Hepker +15810,Ron Clements +959953,Howard Breslin +1521686,Lupita Pekinpah +1724240,John Pickering +27732,Harry M. Leonard +1455309,Knut K. Pedersen +1412189,Deidra Dixon +173004,Clément Virgo +1582211,C.J. White +1400343,Ian Noe +492,Janusz Kamiński +11403,Michael Colleary +1102106,Tobias Åström +67426,William Keighley +1893226,Sandy Bloom +137357,Jody Savin +115360,Kirk Souder +8810,Melissa Müller +52194,Tony Randel +16596,Richard La Motte +91812,Rita Agostini +1117435,Jesse Kennedy +66549,Adam Sztykiel +149091,Joseph Anthony +1773148,Sara LaCava +8965,Roland Joffé +1424182,Phillip Howard +1440742,Eric McCandless +57625,Ben Roberts +362320,Charles Magnusson +8714,Sol Polito +12479,Victor Solnicki +35180,Sidney Kimmel +1706126,Louise Martinez +34453,Kevin Bray +1460602,Roger Huynh +44075,Goran Vejvoda +3241,Ruth Rose +59,Luc Besson +1535952,Alison E. McBryde +14336,Michael Klastorin +3334,Lionel White +1624056,Heather L. Anderson +1749143,Polly Moseley +1418329,Franz Spilhaus +65812,Michael N. Wong +139874,Hype Williams +10751,Michel Arcand +1550166,Mary H. Ellis +42032,Ian Fox +35166,Pat Tagliaferro +552621,Cletus Anderson +1520594,Kerry Sanders +64379,Decha Srimantra +1891691,Christopher Johnston +59367,Daniele Alabiso +1222810,Michael Kane +961420,Bernard Hides +7638,Silvia Richards +4844,Tom Karnowski +49826,John Baldecchi +62044,Edward Rugoff +11926,Ilse Dubois +1406899,Rico Omega Alston +1532476,Jack Bolger +993587,Kojun Saitô +66727,Gary Michael Walters +1610115,Anna Adamek +106019,Christopher Knopf +70037,James Warner Bellah +43676,Romain Schroeder +89085,Vincent Scotto +72113,Jonah Loop +1891667,Alan Delsman +46592,Domenic Silvestri +1085187,Walter D. Edmonds +1590640,Michel Reilhac +26013,Mag Bodard +29403,Andrew R. Tennenbaum +22204,Jean-François Auger +1535954,Brigette Lester +6833,Eugene Burdick +1476808,Gillian L. Hutshing +53278,Plummy Tucker +1364859,Hallie Smith-Simmons +61826,Warden Neil +1551650,Rob Bonney +96680,Kila +1442187,Georgia Lee +3377,Harry Tugend +110641,Jimmy Ienner +10576,Tom Warren +161,Amir Harel +1575987,Andrea Couch +10753,Jonathan Lee +21824,Stephen M. Chudej +1761064,Jill Frank +1652743,Mort Lindsey +54048,Matt Manfredi +59948,Jack Wiener +1462689,Jason McDade +1790547,Michael Dhonau +1095270,Thomas Schobel +1117438,Mark Fischer +60864,David Lancaster +9428,Marc Vanocur +1619499,Harold Owen +553,John Dexter +1202850,Mike Smithson +554322,Tatsuji Nakashizu +1635101,Philip Rogan +1187049,Paul Pieterse +1636371,Bennie Moore +1730027,Eric Ferret +16601,William Mesa +1851730,Alex Bogartz +1779889,Sara Rivers +51513,Célia Lafitedupont +40282,Philippe Martinez +79162,Winston Emano +989750,Deanna Brigidi +5362,Heike Brandstatter +1640417,Willie Peterson-Berger +8804,Stephan Zacharias +1457392,Edi Giguere +1075261,Chris Watts +7483,Lech Majewski +55597,Louis Nowra +1733786,Mona Benjamin +1585021,Jean-Louis Castelli +37494,Gustavo Alatriste +71234,John Rice +1382414,Casey T. Mitchell +27187,Grazia De Rossi +19755,Kevin Thompson +1319384,Lee Grimes +27239,Mort Engelberg +1015918,Dorothy Howell +62056,Jonathan Bernstein +1553166,Rick Leary +23782,Doug Chiang +1896006,Dwight Mikkelsen +133118,Bryce Zabel +30994,Saul Midwall +1399930,Marty Dejczak +73799,Stieg Larsson +1404339,Jeffrey Kushon +1548684,Dan Muscarella +1550617,Gerald A. King +1438629,William Wanstrom +9076,F.W. Murnau +79785,Jonathan McCoy +1408779,David A. Cohen +72995,Scott Hale +1619097,Rick Maddux +949296,Massimo Cortesi +61479,"Earl Hamner, Jr." +51032,Jason Constantine +65003,Mark Stein +2284,Wendy Carlos +1537498,Jason George +1399859,Robert Lucas +1397823,Alyson Dee Moore +60149,Nicholaus Goossen +69634,Jakub Goldberg +1552368,Jim Thomson +1489716,Walter Ulbrich +1705,Ted Elliott +8312,Tony DiTerlizzi +8939,Paul Engelen +34225,Robert Kalloch +24585,Elda Magnanti +1581158,Caroline Mazauric +35178,Scott Strauss +1445984,Robin Miller +1190952,Carlo Egidi +57263,Nick Glennie-Smith +84374,Brett Wiley +33001,Ray Romero +1553260,Jason Joseph +3032,Robert Leighton +1488989,André Michelin +1554085,Bruce Macaulay +1447164,Cara Leibovitz +11080,Jim Cash +1441323,Bonnie Kanner +77104,Charles Sturridge +11983,Alain Resnais +32508,Olivier Guerbois +1392699,Phil Winters +331,Craig Kitson +1453291,Charlie Clavadetscher +54252,E. Bennett Walsh +7690,C.O. Erickson +70863,Bernard Smith +1400540,Sheila Waldron +1122008,Stephen Kaye +1305614,Isabel Bau Madden +40199,Anthony Mann +1538468,Tullo Parmegiani +148178,Ralph Hulett +18379,Hal W. Polaire +33727,Kaneto Shindô +6624,Jonathan Gordon +1600629,Joe Hall +962892,Mick Mars +62875,Anja Stadelmann +10398,Lenny Vullo +1534942,Elizabeth Shelton +44477,Ottavio Fabbri +65994,Andrew Lau +1426047,Murray Miller +8722,C.A. Riggs +1678635,Dennis Gordon +19853,Arthur Golden +1391760,Lucie Fournier +32720,Ole Kragh-Jacobsen +27909,E. McKnight Kauffer +12912,Sharon Calahan +1759423,Adolphe Charlet +1470237,Jerry Davis +61978,Jim Ballantine +1571759,Ross Macdonald +91122,Dylan Goss +1149101,Tami Mor +4856,Matthew Stillman +101523,Rosemary Burrows +49067,Sylvie Pialat +33911,John Cacavas +47899,Mina Mittelman +1375530,Olivia Harris +227409,Jean-Marie Sénia +6530,Eva Leira +1376903,William Stein +23827,Avril Beukes +2026,Peter Landsdown Smith +1434165,Joseph D. Urbanczyk +80819,Brent Findley +59998,Greg McLean +1738126,Cindy Franke +57117,Randy Kornfield +15843,Margie Stone McShirley +1216886,Irving J. Moore +18223,Claudine Bouché +1400342,Anthony Huljev +15731,Lucia Zucchetti +1598758,Morgan Carpenter +16154,Michael Finnell +1540076,Lars C. Lundberg +1591496,Zachary Mortensen +9417,Javier Bennassar +1765785,Gary Ferraro +1801307,Mercedes Alfonsín +57596,Jane Scott +1455330,Johan Sjölin +1427549,John Cormican +3700,Dirk Jacob +280248,Michael Hastings +1415886,Kim W. Behrens +3560,Alain Sarde +1594374,Dmitry Jurkov +1585869,Tommy Schulz +1468026,Beth Kuhn +19692,Diana Cilliers +1613272,Juliane Walker +1902347,Chris Webb +587466,Virgil Nicolaescu +103050,Elwood Bredell +1027145,Andrew J. Smith +1224367,David Weddle +1556615,Jon Darrell Handy +72523,Evanthia Reboutsika +1406265,Dana Boisseau +1007690,Robert Valding +225628,Zene Baker +1551520,Demetricus Holloway +34630,Pierre Tchernia +1765795,Candace Brokaw +1867770,Iris Cahan +141967,Benito Zambrano +53805,Michele Mulroney +62703,Tink +21348,Eric Bernt +1842586,Greig Buckle +64782,Jean-Louis Valéro +966149,Nicole Carmen-Davis +66704,Frank Hannah +17884,Jeff Baena +46087,Jellybean Benítez +1670366,Douglas Yellin +1269246,Amanda I. Kirpaul +1072395,Ed Adlum +19094,George Wells +1417842,Gary Birmingham +1413087,Carla S. Nemec +128482,Jules Borkon +3100,Peter Zinner +58024,Sergei Prokofiev +1421263,Jennifer Wynne +48494,Dina Marie Chapman +15221,Tyler Bates +933594,Sara Parks +1401805,Giles Coburn +1457833,Marilyn Giardino +45343,David A. Prior +1444908,Cydney Cornell +56126,Shep Gordon +18609,Masaru Satô +1402042,Matthew Dickens +1580844,Herb DeWaal +21471,Monique Dartonne +1649579,Thanabadee Chaumkhuntod +4311,Ralph S. Hurst +54592,Danny Saphire +13503,Willy Stassen +1117395,Jonathan Gili +1316855,Nicole Abel +1653450,Earle Herdan +1812186,Sid Armour +30008,Leo McCarey +64668,Ian Nothnagel +53800,Ulrich Sinn +1551658,Brittney Banks +1423411,Cristina Turek +150181,John Erman +65795,Antonia Bardon +1005592,Norayr Kasper +1099045,Chris Innis +23425,Chris Lowe +58208,Don Brochu +43149,Donal Gilligan +999646,Richmond Riedel +1341857,Carin Rogers +2366,Dante Ferretti +47453,Ted Voigtlander +77696,Ollie Novadnieks +70196,Molière +1399521,Susan Marucci +8374,Iain Smith +128105,Beth Howard +1585884,Anna Von Gwinner +97724,Steve Johnson +1342669,Jayne-Ann Tenggren +1447157,Michel Mollicone +1625924,Michael Fennimore +58407,James McCausland +1087137,Zbyněk Hloch +1081062,Chen Hwai-En +142158,Len DeVirgilio +1585865,Michael Konstabel +1632422,Mario Paladini +2082,Andrew Laszlo +31709,Michele Berk +34858,Michael Z. Hanan +5572,Joel Schumacher +40387,Archie R. Dalzell +142166,Andy Waterman +1135,Zbigniew Preisner +14964,Frank Maher +58363,Odin Benitez +80811,Daniel B. Foster +1398120,Gary S. Gerlich +1442217,Jim McKee +5195,Hansjörg Weißbrich +12331,Alessandro Cicognini +6583,Julie Lichter +14255,Maurice Richlin +1058728,Paul Giovanni +1881619,Laurie Bernard +15493,Barry Ackroyd +1426050,Libby Jacobs +1244217,Michał Kwieciński +22456,Ricardo Aronovich +1459611,Brice Mallier +1392101,Petra Holtorf +1265390,J.F. Lawton +1613291,Claire McGrane +11491,Walter Plunkett +1447473,Jeff Johnson +62163,Tony Wohlgemuth +236291,Robert Cormier +1106142,Jae-yeon Yun +1206135,Lester D. Guthrie +1520925,Marilyn Watelet +1555162,Clive Winter +551534,Juiping Cao +1132111,Charles Novi +8920,Suzanne Wiesenfeld +1223327,Tom Yatsko +1403544,Ciarán Barry +29227,Graham Broadbent +96732,Joseph C. Brun +1542610,Kôzô Yamamoto +1295385,Takanobu Saitô +56613,Steven Olds +1602168,Jirí Klenka +1549202,Paul Howarth +1544013,Jack Sullivan +1548676,Bruce Richter +19846,Concha Solera +93512,Tomomi Mochizuki +34338,Michael Jackman +1551665,Carmen Flores De Tanis +19058,Catherine Leterrier +641437,Alex Smith +1522491,Tim Heintz +411719,Alison Goldfrapp +148356,Anssi Miettinen +62796,Antony Rufus-Isaacs +62215,Andrea Clark +1400333,Antonio Gómez Capetillo +12923,Jane Bartelme +1674667,Jordan Beswick +1815492,Natasha Liberman +1403789,Leo Zandvliet +58705,Alain Jakubowicz +313,Ellen Kuras +1419732,Rick Cranford +52934,Nicholas Stoller +1044544,Rochan Madicar +1567901,Steve Lonano +56735,David Moreau +1893230,Jose Luis Alvarado +71759,Jack London +19273,Michael LeSieur +929976,Hideki Goto +47291,Donald A. Starr +1521702,Alejandro Casas +86585,Christopher Glasgow +51333,Claudio Miranda +40511,Michael Grady +1603666,Yelkan Iskorkutan +40373,Tobias Peper +1419936,Jim Henderling +19172,Donald P. Borchers +48497,Christiane Kirsch +1178594,Hank Edds +17394,Denis Sperdouklis +67534,Louise L. Lambrichs +117867,George Simpson +1717783,Akihiko Okase +82484,Bob Fagan +110644,Michael D. Black +1536213,Ron Vargas +79250,Robyn Meisinger +971882,Hazel Webb-Crozier +9973,Al Bailey +1629541,Steve Hai +552199,Raymond Kwok +18322,Donna Roth +129710,James Salter +34652,Danny Simon +4575,Marc Evans +1553113,Judy Rosenthal +1701157,Sean Sansom +13367,John Harrison +30009,Bert Kalmar +8735,Oscar Rosander +1034518,Shanya Tsao +20230,Arvo Pärt +10230,Hannes Stöhr +40374,Michael Costigan +191906,Keith Ross Leckie +1546580,Bill Draper +222216,Laetitia Masson +1010740,John McCarthy Jr. +1570528,Cory Coken +1399568,Mariana Lina +70892,Scott Altomare +1027801,Virginia Jones +1767030,Bob Logan +57334,Ken Anderson +21419,Irek Hartowicz +17221,Susan Bode +1416991,Antti Ruusuvuori +25598,Paul Greengrass +66961,William Douglas-Home +83791,Michael D. Moore +29809,John Russell +10855,Chris Gorak +1231613,Martyn Auty +20065,Richard Greatrex +1399919,Daniel White +52046,Jonathan Tzachor +1632429,Cesare Biseo +1451416,Barry Tuttle +30523,Moss Hart +62545,Arlene Kehela +1319623,Christopher Wyatt +82286,Marc Levin +12511,Giorgio Desideri +44018,Jasmine Chasney +1219883,Douglas Green +32037,Jeanne Develle +54243,Fred Westheimer +4723,Brian Helgeland +102601,Hal Walker +1434270,Susan Mills +1125677,Barbara Pokras +5747,Nina Haun +60962,Mike Clattenburg +9162,Lorna McGowan +1535097,John Flemming +53643,Gigi Oeri +87014,Marcelo Piñeyro +81265,Steve Lawes +1150485,Jefferson Moffitt +56860,Ethan Reiff +201054,Peter Bellwood +127576,William L. Pereira +4699,Steve Perry +9897,Shirish Kunder +59658,Frederick Levy +1694608,Luke Martorelli +70640,Pernille Siesbye +944889,Warren Low +1335160,Kevin Woodhouse +4388,Emmanuèle Bernheim +88976,Carl Pierson +14657,Sandina Bailo-Lape +1536106,Richie Donnelly +15571,Henry Krieger +1675,Irene Blecua +44065,Howard Klausner +178564,Colin Bateman +35773,Ritesh Soni +1157607,Haim Hazaz +8068,Margaret Hou +16600,Rodger Pardee +58504,Jeffrey Hatcher +1092671,Dan Myhrman +123008,Harold McLernon +950567,Eduardo García Maroto +66272,Marie-Sophie Dubus +1552547,John W. Ervin +59366,Fabio Frizzi +1495655,Florian Lechner +34740,Edmund Goulding +1602317,Rudolf Takács +986011,Carl Rosendahl +1189737,Shannon Shea +20692,Jeff Beal +45519,John Lamb +1608791,Brinton Bryan +67611,James Koford +58318,Jay Kamen +53677,Ronnie Screwvala +1571774,Steve Drake +1769325,Charles Drake +5988,Jukka Helle +1051,Ruth Morley +1378701,Joel Whist +1433718,Dana Gustafson +51612,Todd Black +29633,Lee Loeb +1535541,Gary Alper +34920,Curt Geda +150769,Ted Bonnicksen +34734,Robert J. Walsh +97,Nanci Kincaid +1559286,Sheila Collins +1851722,Gloria Cooper +22119,M. David Mullen +18910,Dick Clement +1769946,Viviane Zingg +23770,Dimitri Capuani +1300912,Jittima Kongsri +154404,Michael White +142611,Walter Becker +71761,David Fallon +136080,Jay Rifkin +6048,Mark Gordon +1538435,Stuart Grusin +9776,Chantal Feghali +1532070,Cammeron Truesdale +1404840,Dean Humphreys +60410,Gina Stancu +16343,Mark Auguste +1085025,Adriana Berselli +414,Alan C. Blomquist +123163,Jeffrey Porter +454855,Srdjan Kurpjel +578730,Amy Wood +1406786,Ronald Schwarz +34513,John King +484466,Christopher Murphey +14091,Trish Caroselli +55518,Georgi Rerberg +1603674,Burak Balli +1438591,Naomi Bakstad +106012,Ross Bellah +59745,Jen Rudin +14378,Drew Boughton +1319417,Felipe Salazar +18591,Walter Seltzer +1427555,Rick Cresswell +1403561,Kenneth R. Burton +57978,Stuart Waks +59723,Ruth Charny +13776,John Frankenheimer +1673813,Rajesh Saathi +4436,Sarah Frank +33283,Peck Prior +1057676,Alfeo Bocchicchio +1538221,Catherine Wall +49871,Jérôme Coullet +91249,Stefan Wenta +1309313,Hwang Woo-Hyun +1547529,Ninjin Kurabu +7339,Mary Ann Nyberg +1401641,Kate Birch +62554,Jake Wade Wall +65360,Andrew Lloyd Webber +1590599,Romain Denis +244,Ray Lovejoy +9952,Jack Whittingham +1449183,Samantha Armstrong +1573468,Ken Dackermann +224387,Rich Mento +1206059,Philip Capice +1586392,Sheila Allen +77200,Eric Dawson +548703,Liria Bégéja +1117436,Kat Samick +1807523,Joe Drury +1739543,Tim Ackers +9179,Robert J. Franco +1438845,Francesca Calvelli +1880082,Ichirô Minami +1708,Jay Wolpert +1555630,Stephen Einhorn +1379959,Jennifer D. Lyne +6101,Michael Katz +1186790,David Solomons +78753,Luo Guanzhong +1577009,Michael Voelker +957799,Michele Michel +186478,Simon Raby +51067,Will Conroy +104250,Philippe D'Aram +56931,Marti Leimbach +1128184,Jennifer Killoran +1440070,James Neihouse +47284,Cecelia Ahern +25798,Ivo Perilli +1440900,Olivier Xavier +71161,Jette Lehmann +3146,Billy Wilder +10766,Paul Hirsch +60810,Mika Andersson +1651183,Richard W. Jones +1123136,Sol Art Chung +1553268,Derek Ledbetter +1376714,Leslie Herman +14876,Sidney Carroll +73151,Herman Hoffman +109129,Myke Michaels +1868299,Gerard Van Ommen Kloeke +31180,John Dunning +1516279,Julian Iragorri +1021206,Angela Demo +9970,Leslie Butcher +91115,Kyle Rudolph +1271792,Ismael Cardenas +21812,Wendy Kurtzman +1545298,Henrik Hanson +1706332,Darcie F. Olson +1733247,Hoa Tran +60591,Floriela Grapini +1551870,Tim Cooney +56828,Christopher Cain +25807,Bruno Todini +1129436,Daniel Rô +1551266,Mitch Sacharoff +14931,Richard Marden +1309605,Martina Kubesova +1840074,Dianne L. Haggarty +71168,Thomas Hargrove +1602319,Vanessa Baker +552,Elaine Dysinger +120467,Albert Hogsett +1590603,Mylene Graziano +1558428,Pedro Sabrosa +1767048,Adam Phillips +1337394,Hannah Moseley +103136,Sollace Mitchell +232815,Naoki Hashimoto +121798,Joko Anwar +52276,Steven Nielson +1733788,Nicolas Bonnell +1461379,Rasoul Azadani +1514675,James Becker +57267,Gina Rosenblum +78383,Bahareh Azimi +117226,Graeme Purdy +1655551,Webster McKnight +3904,Lee Smith +1571748,Joel Poage +1504785,Patrick Fohrmann +1521683,Juanjo Goldaracena +1286663,Callie Bristow +14614,Joseph Vilsmaier +70994,Vardis Fisher +80964,Robert Aschmann +1410187,Rupert Porter +1545473,Jennifer Alex Nickason +125261,Victoria Boydell +6594,Sam Spiegel +1483221,Shadi Almassizadeh +41141,James Dowell Vance +72538,Daniel Lanois +81963,Jonah Markowitz +1560904,Nathan Black +1558197,Henry Schaub +6374,Andrea Calderwood +1306763,Tobira Oda +1512745,Clay Liversidge +967699,Jeremy Milton +17424,Carole Scotta +78061,Menhaj Huda +23331,Jörgen Persson +1410749,Norbert Zich +87543,Senkichi Taniguchi +69224,Jean-Philippe Andraca +85375,Sameer Siddiqui +1808702,Tamás Rákosi +936664,Lotte Dandanell +1403403,Evan Schiff +1214558,Jack Turley +3487,Walter Daniels +1484536,Jay Binder +69551,Jean-Noël Ferragut +43095,Tom Ortenberg +1520859,Pedro Mejía +1551979,Yves Domenjoud +18758,Les Bowie +1719703,Barbara Gerety +1573098,Greta Alexander +1788187,Gerry Turner +113571,Jack Killifer +9442,Lucy Sustar +2791,Stanley Jones +1535949,David Le Vey +1401122,Caylah Eddleblute +127199,Albrecht Joseph +1468038,William C. Hendley +1803796,Anne Calanchini +1427548,Eva Strack +9543,Beau Flynn +12240,Pierre Boulle +18787,Peggy Schierholz +1192147,Matt Hoefler +1579180,Stewart Whelan +1889010,Cliff King +1566072,Trudy von Trotha +1392969,Jonathan Wales +57728,Gil Hubbs +11474,James Y. Kwei +9040,Newton Thomas Sigel +86652,Sidney Kingsley +1602889,Paul Taglianetti +115103,Ted Waitt +1802519,Ahmet Ahmet +1566830,Jared Chandler +3770,Juliane Lorenz +81539,Rhona Kane +14137,Anthony B. Unger +1395255,Greg Orloff +1318835,Robert Giordani +19285,Karen Patch +1441272,Monica Huppert +6653,Lennart Wallén +1396500,Candice Dickens +1341404,Patricio A. Libenson +932221,Roger Friedman +10123,Roger Barton +64061,Fred Schepisi +554,Aaron Ryder +1401728,Robin Saxen +7738,Hans Bitsch +60793,Ron von Blomberg +1575994,Buddy Blackwell +70112,Chi Wai Yau +5400,Leo Cattozzo +2722,Brad Fiedel +433332,Vanessa Ragone +545525,Robert R. Hoag +53187,Gianfranco Couyoumdjian +12101,Peter S. Seaman +1117320,Lope V. Juban Jr. +57203,William Green +1826994,Sergio Coletta +1532355,Eric Engler +1059101,Asen Šopov +5709,Bruno Rubeo +1407681,Rick Hromadka +12493,Raymond Chandler +107720,Dmitriy Kiselev +58732,Harv Zimmel +1402036,Ron Barr +1401590,James E. Price +1000559,Bobby Johnston +592983,Peggy Case +1302620,Hans Berggren +26989,Gintar Repecka +1531398,Gene Lauritzen +228928,Pat Barker +1395166,Jacquelyn Mitchard +982778,Rosina Bucci +1317615,Tom de Mol +1564250,James Ashwill +32770,Michael Masser +27910,Richard Bronskill +37925,Conrad W. Hall +1537501,Jeff Lingle +57260,Alison Savitch +1567956,Michael DeSantis +120162,Gustaf Norin +1319160,Ken Crouch +88648,Robert N. Bradbury +1453276,Butch West +577599,H.C. Potter +97017,Sidney Lanfield +1408598,Mark Mele +1868838,Michael Pedraza +1548665,Bob Skemp +61381,Sue Bea Montgomery +89157,Bernard L. Kowalski +32280,Gandhi Bob Arrollo +1016216,Fabricio Tadeu +43393,Robert Folk +4658,Danilo Bollettini +119661,Kam Joh-King +15527,Tony Martinez +1175,Morten Søborg +9463,Bart Barber +1854998,Gabriel Lavina +10087,Michael McManus +1723531,Natalia Rocca +9426,Dean Hovey +136903,Ned Farr +1455316,Jenny Fred +81976,Abraham Polonsky +57066,Andy Ruben +550477,Christoph Lauenstein +1043185,Ki-hyeong Park +928605,Monica Lago-Kaytis +963971,Nicola Dunn +1109914,Hudson Talbott +103031,Eric Nicholas +1830649,Javier Aramburu +1406860,Khalid Banoujaafar +75908,Steven Clode +1342626,John T. Reitz +59055,Caitlin McKenna-Wilkinson +1239904,Sheila Possner Emery +13336,W. Franke Harling +1790570,Carl Rudisill +592771,Tomáš Zelenka +582919,Darren Lemke +1531900,James Halpenny +13271,Joe Scully +1567996,Robert Pritchard +1555860,Nigel Bunyan +1009061,Alan MacLeod +54240,Tamara Jenkins +1446542,Sue Dolph +11790,Richard A. Roth +1662299,Terry Apsey +4434,Frederick Elmes +33177,Ted Larsen +1406809,Allen J. Polley +1058270,Diana Birkenfield +1673547,Nick Allen +1192628,John Stepan Zamecnik +572622,Tom Bellfort +221695,Michael Lang +8708,Richard C. Franklin +56354,Ed Marx +1531867,Jeanne Byrd +1267785,Nick Riera +15379,Graham Greene +19950,Jennifer Weiss +26708,Stuart Cooper +12072,Douglas Rogers +1778351,Cesar Quinones +72974,Glen Trotiner +3637,William H. Daniels +949558,Wes Dawn +48667,Irakli Kvirikadze +1344112,Bruce MacDonald +72066,Herbert Stothart +1151462,Karl Alexander +54901,André Singer +59354,Jeffrey A. Mueller +1394642,Jennifer von Mayrhauser +17253,Oliver Curtis +15845,John Caglione Jr. +1440494,Alessandro Bolognesi +79145,Jamie Trevill +1566289,Bob Eicholz +47292,Daniel J.B. Taylor +9051,L. Frank Baum +78113,Tommy Walker +2242,Ellen Lewis +1316790,Luke Rothschild +51692,Jo Francis +1536607,Malgorzata Jaworska +1475350,François Hernandez +1564848,Lillian O. MacNeill +26140,Shaun Davey +1437160,Lucy Ainsworth-Taylor +58041,Steven McKay +1392677,Paul Raymond +1521710,Eduardo de la Rosa +59767,Warren Coleman +1268479,Nicola Van Der Walt +91940,Shauna L. Kroen +88661,Daniel M. Angel +13224,Andy Potvin +1407889,Danielle Noe +1267676,A.E. Peters +78487,Kate Boutilier +8220,Naomi Shohan +57659,Oliver Niemeier +38655,Hal Gaba +1400374,Casey Hotchkiss +1670368,Olivier Wicki +60592,Matthew Booth +1356953,James Armitage +551667,Bangqing Han +1358074,Hazel Catmull +116850,Eugene Frenke +1600631,Vaughan Killin +145359,Gina Kim +1361701,Hobe Erwin +1781230,Julie Solomon +7837,Hans Funck +1334424,Randy L. Childs +21816,Jacqueline G. Arthur +1318662,Marc E. Meyer Jr. +111969,Kazufumi Fujii +1451461,Alex Pront +57778,Quincy Jones III +119573,Tim Huntley +3630,Antxón Gómez +1316852,Rafael May +2658,Van Allen James +1374607,David Darmstaeder +1653578,Benjawan Sroy-in +1290904,Lisa Mionie +229931,Asghar Farhadi +70294,Jeffrey C. Patch +932381,Lew Dietz +1390368,Graham Hall +23489,Bill Crutcher +1487281,Paolo Fabbri +1413931,Susan Ross +25068,Cedric Proust +113500,Philipp Stölzl +33542,Harald Reinl +1401432,Ian Scoones +26265,Lina Wertmüller +22238,Faras Rabadi +148601,Don Weis +1357524,Hector Crawford +3528,René Levert +10976,Greg Powell +1123066,Hiroyuki Inada +957115,Susie DeSanto +1870772,Bonnie Alden +21806,Richard Rush +1241382,Warren Carr +1550056,Colin Gray +118225,Theobold Holsopple +1376895,Mike Stassi +1433230,Nigel Mills +23464,Denis Lenoir +553897,Annette Wademant +92738,Tom Hardart +1391565,Mick Cukurs +117057,Ignacio Pérez Dolset +44878,Nathan H. Juran +79730,Orville Stoeber +1840075,Inge Klaudi +129926,John Junkerman +73045,Takashi Kawaguchi +76003,Susan Hegarty +1393387,Jeff Brink +10573,Florian Ballhaus +26971,Andrew Waller +1438901,Seth Engstrom +1420148,Debbie Cortez Haber +11533,Coco Chanel +46600,Bud Shrake +17032,Michel Fermaud +8888,June Edgerton +1707105,Casey Osborne +1529527,Barry Boxall +27717,Agnès Schwab +1395278,Jordan Klein Jr. +37003,Kevin D. Ross +16439,Víctor Molero +89293,Julia Fair +1167760,Shawney Cohen +1279565,Akekarat Homlaor +1124110,Shin'ichirô Sakaguchi +9775,Marietta Carter-Narcisse +1462670,Demian Gordon +959308,Nicolas Bolduc +1413452,Bill Meadows +1571715,Thomas V. Johnson +82128,Wesley Clark +70641,Per Nørgaard +1402107,Dark Hoffman +1745939,Catherine Pittman +1738161,Chad Hagaman +7630,Alvin Sargent +13086,Emilia Roux +1111128,Knud Kristensen +1517108,Bill House +1407195,Alan J. Lawson +144341,Hanse Warns +1492541,Phillip M. Goldfarb +4104,Edward G. Boyle +1526511,Leonard John Bruno +1466871,Betty Pedretti +24510,David DeLeon +62956,James Welland +1673535,Joan Kelley Bierman +20079,Esther Walz +1357219,Brad R. Loman +69406,Joseph Medawar +1449503,Nunzio Colucci +1598737,Jayson Clute +1427886,Zoe Phillips +1558794,Cam North +1397731,Elizabeth Ziegler +1393405,Robb Boyd +1448084,Dan Lund +77693,Joel Phiri +1595168,Ivo Felt +66814,Sandy Wernick +1391122,Don Cinderella +165460,Bob Wehling +43517,Gregory Cascante +108927,David Brind +1554883,Nicola Clegg +8505,Robert L. Simpson +1667244,Paul Duchemin +103910,Felix E. Feist +81722,Kiyoshi Yoshida +1172559,Al Silverman +1087252,Luis B. Carranco +57126,Shane Hurlbut +1398098,Aurelia Abate +14189,Debra Neil-Fisher +30605,Paul Lohmann +1433214,Christine Jahn +1411669,Filipa Principe +1229003,Gary McCarver +37278,Paul Charlier +12116,Michael Gruskoff +1234384,Bill Kenwright +1008052,Jonathan Karp +11744,Randy Bennett +1674660,Joseph Barry +1033844,Tom Ellery +1302182,Wayne Artman +43388,Jane Frazer +9624,Jeff Habberstad +102434,Robert Short +1395672,Phillip Schneider +4190,David C. Robinson +1001865,Andreas Ruft +1102579,Geoff Linville +1483950,Julie Carr +1406578,Sunday Englis +15492,William L. Stevenson +68774,Christopher Menaul +14337,Jennie Lew Tugend +1323210,Ernst Reimann +936212,David Eick +66050,Oliver Gieth +1306909,Tsutomu Sakurai +1550829,Ken McLaughlin +1191038,Pavel Parkhomenko +23864,Stephen McNutt +1471304,Paulette Dauber +1442565,Michael Speaker +1394073,Rob Marsh +59397,Keith Slote +1419804,Craig Holt +123014,Stanley Hough +2043,John Davis +1580988,Vanda Tuzzi +1395447,Steven Ticknor +1111075,Julie Peyr +35748,Michael Anthony Snowden +50577,Norman Panama +88515,Woody Keith +1673144,Carly Sertic +58164,Annabel Jankel +255283,Frank Cvitanovich +1399974,Andrew Casey +1590604,Laeticia Lagache +1761871,Steve McAuliff +1441378,John Tegethoff +61422,Dan Cooper +38016,Kim Jae-beom +92606,Patrick Giraudi +67452,Alan Pattillo +1638070,Carol Wenger +966100,Andrew Murdock +1418798,Troy Follington +38646,Douglas Gamley +111905,Jeff Harris +1118383,Garret Baldwin +1767029,Jenny Lerew +959962,Mari-An Ceo +1551747,Yoshiomi Hori +1548993,Janet Melody +1866788,Lois Zetter +1398100,Kilou Picard +1402228,Jeff Montray +1342618,Christina Volz +90280,Ryan Warren Smith +60502,Jason Hellmann +63065,Lawrence Mortorff +60135,Ellen Christiansen +1700803,Temple Clark +10765,Andrzej Bartkowiak +75293,Meg Gordon +59326,Michael Ross +1681469,John 'J.P.' Pratt +1855062,George Walker +52600,Bill Brzeski +68316,Aimée Danis +13718,Walter Coblenz +932186,Bruce Fowler +1096644,Borja Pena +11113,David M. Dunlap +80804,Carl Pedregal +1466997,Duncan Jarman +1390518,Luis G. Hoyos +1605762,Marc Vives +1417685,Gregory J. Barnett +1851726,Jennifer Flynn +1447831,Ellen Osborne +1085004,Mary Ellen Porto +1191105,Dean Zanuck +1104780,Ray Chan +85277,Kathy McWorter +1433218,Tony White +12437,Phil Abramson +1401292,Eric J. Robertson +19724,Hunter S. Thompson +1335166,Lupt Utama +1673558,Tim Atkins +1290435,Kimberly Smith +99379,Jack Cunningham +1399130,Gene Page +1534833,Stan Gilbert +229832,James Gay-Rees +60,Patrice Ledoux +1400332,Erick Monroy +1402035,Monica Haynes +1462704,Kirby Washington +1183991,Floyd Byars +21117,Mary Jane Skalski +4148,Gretchen Rau +1157795,Gill Horn +106591,Hyde +1419114,Jessica Drake +587949,Lotta Woods +1123819,Steven Gould +1460182,Masa Sawada +1443286,Sarah Clark +1324476,Eddie Dunlop +1832295,Marian Shambo +91319,John Vulich +1582914,Yorick Kalbache +1803788,Rob Doherty +72201,Chiling Lin +30521,Alan Campbell +94664,Gary Schmoeller +878,Jack Solomon +1438592,Trudy Parisien +7469,Jim Uhls +932173,Bridget D. Davis +1281715,Edward Locke +1699697,Renata Franceschi +19286,Aaron Kaplan +33282,Vernon Layton +1407693,Florin Niculae +1559024,Anil Choudhury +1002652,Dennis Berardi +31204,Carl Anderson +1545483,Pamela Chmiel +1398880,Craig Lietzke +54272,Joel Hynek +65242,Jack Perez +60320,Ben Morris +43608,J.D. Shapiro +8562,Andrea Barata Ribeiro +19474,Lamar Boren +74052,Peter Avanzino +6918,Ry Cooder +1869,Sönke Wortmann +32346,Gregory G. Woertz +1421754,Edward Flotard +583023,Frank LaLoggia +11988,Ghislain Cloquet +21067,Polly Platt +25515,Paul Knight +1116425,Jamie Thompson +1725960,Lois Hohenfels +1322129,Annmarie Corbett +1410581,Ciaran Kavanagh +1790541,Alyce Fahsholtz +1280435,Thomas L. Bellissimo +106,Alfonso Vilallonga +83085,Albert Gasser +1613270,Maher Abu Mugheisib +4277,Frédéric Junqua +20458,Dede Gardner +1392148,Robert Neilson +16306,Matt Absher +1572604,Catherine II +1767785,Peter Holt +113844,Howard Paar +948498,Marc Boyman +1536972,Chris Cuevas +1870675,Bud Schindler +1114902,Phaedon A. Papadopoulos +1545171,Robert Malkani +1376339,Ronald Silkosky +1376157,Timmy Cruz +59003,Jeff Geoffray +1318873,Katie Brennan +1528,George Fenton +81613,Brian A. Miller +56742,Bruno Corbucci +2486,Thomas E. Sanders +120518,Richard L. Van Enger +42864,Tilman Büttner +1406069,Michael Hedges +1167479,Axel Esbensen +1397368,Dorothée Nonn +116655,James Frisa +1707120,Sharon L. Vise +1565949,Kate Sawyer +1731,Freeman A. Davies +66963,Alison Greenspan +1052126,Frederick Gately +1086331,Peter Brunelli +74980,Burt Dalton +1341399,William A. Petrotta +1085564,Marc Vlessing +6651,Erik Nordgren +239826,Yasuo Uragami +1409273,Kevin Tod Haug +1438625,Deirdre Bennett +85118,Andrew J. Stratmann +1586624,Iasar Memedali +1094283,James F. Tarzia +1407208,Eric J. Paul +1207076,Jennifer Aspinall +92382,Ruth Hernandez +1338456,Jennifer Dunne +1378752,Cheree Welsh +24256,John de Borman +1434223,Wayne R. Campbell +1401145,Tim McGovern +11434,Wilfred Jackson +10179,John Glen +38336,John Peters +35789,Sanjay Shivalkar +21456,Walter H. Tyler +986274,Susan Bolles +1188238,Gordon Davie +1433744,Richie Nieto +148596,James Lee +1868293,Maricela Perdomo +4057,Adam Weiss +68308,Katherine Fugate +1392919,Richard A. Harrison +103806,Alan Greedy +21617,Rudy Dillon +1416919,Lynn Wheeler +1417517,Carlos Solis +13782,Fernando Carrere +10472,Charles Bishop +1574132,Federico Foti +2430,Grover Jones +9250,Jeffrey Stott +37270,Emile Sherman +118293,Clarence Eurist +1424318,Kenneth Schwarz +1462378,Alan J. Wands +29574,Clark Robinson +1405241,Adam Dale +55868,James Jones +1458066,Joseph P. Hurt +129708,Stacy Cochran +1780221,Martin W. Bell +1376807,Yann McCullough +62955,Lizzie Francke +1455279,Charlotte Fontijn +92391,Nicholas Renbeck +321,Anthony Bregman +65755,Mindy Roffman +139850,Kenny Kim +36428,Michael St. Hilaire +67433,Ross A. Maehl +25862,Chris G. Willingham +17672,Agnes Flanagan +1458338,Karen Haus +37,Alan Silvestri +1446685,Dane Clarke +1204323,Russ Dvonch +13227,Jay Cassidy +58081,Betty Mahmoody +1334171,Richard A. Mazzochi +1338673,Douglas E. Madison +666,Douglas Slocombe +78517,Hugh Whitemore +1412260,Robert Jason +1525544,Lori Guidroz +1708858,Terron Pratt +224611,Kelly Moss +1011497,Jack McGowan +21339,Jez Butterworth +22095,Saul David +1584255,Steven Anthony Khoury +1318467,Roger Danchik +21349,John Jarrell +1551345,Pam DeMetruis-Thomas +1341797,Steve D. Weinmuller +937490,Jamie Thomason +79666,Lisa Henson +929,David Franzoni +1309225,Jonathan Page +587951,C. Gardner Sullivan +1494537,Anneli Oscarsson +32299,John Heyman +1441351,Jim Bridge +19316,Jeffrey Seller +14914,Dan Yarhi +647,Dion Beebe +1619109,Christopher Bonnstetter +553268,Jarosław Sokół +19317,Tom Sherak +4898,Robin O'Hara +60219,Scott Balcerek +10704,Jeffrey Caine +1141788,Jeffrey A. Cook +8306,Douglas Milsome +70,Karl Freund +1017236,Tracy Kilpatrick +1566434,Mostafa Kherghehpoosh +1327403,Steve Roll +17148,Kalina Ivanov +1002623,Tony Adler +69940,Pascal Pinon +45730,Ramin Bahrani +1398882,Ivo Deranja +1310039,Francine Danis +1563007,Ramiro Sabell +1399504,Derek Stephenson +10199,Peter Robb-King +11082,Ehud Yonay +7255,Ian Mune +1552607,Mark Hurtado +1399899,Steven J. Winslow +1203910,Marcy Grace Froehlich +1179438,Donna Gardon +100985,Edward Dein +1760806,Reese St. Amant +1190236,Ellen Meyer +75865,Adam Doench +10632,M. James Arnett +1611810,Jean-François Abran +7933,Jonathan Roberts +1327443,Patrick Rolfe +77730,Elaine Kusmishko +58109,Kai Hermann +2328,Manuel Corrales +1619427,Pedro López +14775,Rita M. Fink +1180949,Robert Taylor +14714,Peggy Semtob +3878,Marek Goldowski +60982,William Golding +54843,Andrew Form +1158637,Margherita Autuori +13972,Sidney Hickox +57309,Joel Douglas +1418298,Damien Gray +535,Russ Fega +11423,Mayne Berke +69767,Frank E. Taylor +55178,Scott Chestnut +15947,Gilbert Ralston +150768,Dick Lundy +35693,Phil Beauman +1803772,Lawrence Hammer +112078,Robert Shallcross +8574,Walter Salles +142161,John Robotham +1451677,John Huey +1472168,Dwight Williams +1334166,Joan Shay +1855228,Alfonso Cottier +1024910,Lindsay Graham +12756,John D. Schofield +1081673,Greg Auer +46609,Ted Leighton +1608892,Whitney Kitchen +21257,Gitte Axen +1368949,Vladimir Macha +139250,Samantha Lang +1392675,Guido Helmstetter +1252935,Lynn Horsford +83784,Jan Švankmajer +39993,Alex Wurman +11944,Nessie Nesslauer +1567906,Ryan Beadle +17877,Alan Hicks +55418,Paul Trijbits +61629,Richard Keddie +1351457,Bill Morgan +1354731,Eakasit Thairaat +1378763,Lorraine Rozon +67465,Alex Marshall +1609614,Jadwiga Ignatczenko +1655840,Raymond Radiguet +1402034,Eames Gagnon +1427499,Stephanie Hovette +177648,Eduardo Ugarte +1323768,Pamela Wise +1754098,Julius Wechter +8502,Darryl F. Zanuck +1511729,Gilbert D. Marchant +1867936,James T. Singelis +935556,Philip Rogers +1893221,T'boo Dalton +2460,Randall Wallace +124279,Brandon Vietti +1184795,Joe Masefield +1420630,Kay Bilk +1554429,Greg Drolette +1433622,Andrew Blustain +24757,Sylvio Tabet +1065913,Paula Jalfon +77965,Morten Tyldum +22298,Steve Lumley +62397,Gordon Buford +1551320,Jack Keller +47294,Cindy Evans +1304273,Nancy Tracy +12090,Leslee Feldman +76251,Herman Brusselmans +1442505,Hip Amdahl +2337,Hans Fromm +1529518,Raymond F. Jones +1519809,Michael Spatola +1199563,Franz Reizenstein +1584248,James Kalisch +1710565,Scott Fieldsteel +1411800,Lori Hicks +1470177,Randy Bobbitt +77728,Louise Smith +1381730,Pliny Porter +1836311,Dennis Gray +1014924,Ed Borgerding +11822,Rose Marie McSherry +6848,Ralph Rosenblum +1066806,Nat Crosby +8376,Mark A. Mangini +71880,Adam Stone +1179376,Martin Charles +1444923,Lamarr Gray +1351274,Missy Parker +1399140,Les Fresholtz +22081,Vin Burnham +1707113,Gary Walker +14456,Robert Paynter +26481,Anand Tucker +1389600,Charles Thomas Baxter +52695,Ron J. Friedman +1407850,Rachel Neale +1021804,Tenny Wright +192727,Richard Chapman +1021827,Alexandre Kamenka +146777,Ellen Glasgow +1307636,Mano Csillag +1551982,Herbert Hees +1566435,Sheyk Mohammad +30138,Arthur Grant +68040,Keith Mitchell +1635458,David MacMillan +1324409,Marisa Aboitiz +1634470,Steven Gizicki +2448,Pat Sandston +5241,Jost Vacano +1529560,Hisashi Shimonaga +110066,Tony Banks +1172893,Janet Fries Eckholm +1346144,Patrice Theroux +17085,Silvia Tollmann +1079,Alexander Manasse +71417,Gene Levy +77272,Dirk Blackman +79112,David Redman +1465631,Trevor Stanley +47845,Ron Clark +1394986,Howard Samuelsohn +1441287,Rob Wagner +1099273,Beala Neel +69788,Nicolas Saada +166912,Anthony Gilbert +1561297,Micah Solomon +1907330,Elmer Lahti +1603330,Edward Cass +1551660,Jordana Lieberman +1333084,David Dowling +1322138,Gary Freeman +18953,Richard Suckle +86404,Oliver H.P. Garrett +15657,Vincent McEveety +1597175,dooner +1462236,Patricia D. Abbot +13980,Vincente Minnelli +63658,Randolf Turrow +96286,Dana Kaproff +18924,Alfred Gough +1453286,Martine Tomczyk +1392245,Murray Close +1206111,Sam Dightam +44071,Serge Lehman +11298,Amanda Knight +29402,Henry Morrison +51952,Barry Shils +228624,Kurt Frey +1673809,Laide Agunbiade +137190,Jack Senter +7092,Waclaw Dybowski +30652,Dick Randall +1461395,Randy Haycock +53474,Guy Pham +18134,Jill Greenberg Sands +13933,Dennis Bradford +80523,Ron Oliver +1121982,Julio Molina +60521,William Yeh +1586042,Jack Corrick +1446681,Fred Kraemer +69487,Randy Drummond +1463304,Robert Consing +1708224,Matt Russell +642,Laura Lau +1765285,Don Farnsworth +13335,Adolph Zukor +313827,Christer Abrahamsen +9053,Florence Ryerson +4982,Michael D. Haller +30394,Marlene D. Williams +957150,Gregory Middleton +1599050,Sigitas Zakrauskas +93323,Enid Bagnold +129559,Irving Cummings Jr. +75851,Jennifer Farrell +37273,Richard Payten +8222,Julie Weiss +1603318,Dominique Blaskovich +26479,S. S. Wilson +1310228,Robert McIntyre +32903,Alan Au +1178713,Yau-Daai On-Ping +1405422,Gary Duncan +66780,John Kander +16657,Ken Johnson +1318192,Leeba Zakharov +1657764,Margarita Martinez +31767,Jackson Rose +1311377,Ira Bates +122133,Mako Koiwai +1851723,Gill Montie +1401799,Eric Saindon +1574639,Amelie Duceppe +567556,Frédéric Dard +84349,Robin Bradford +8059,Jenni Tsoi +15132,Mario Serandrei +1552190,Danny Miller +1394746,Martin Laneuville +90231,Fletcher Knebel +1133284,Shigeru Nagata +47924,Carl Schenkel +10108,Kim Sang-beom +1555631,Joseph Viles +119660,Sung Ba-Fui +60025,Dianne Houston +1405247,Jeff Burkhart +1222194,Winnie Holzman +1891669,Pim Hermeling +1540355,Jon Brown +1451817,Pilar Moya +9858,Richard Maibaum +1815498,Jeffrey Moznett +79063,Peter Hald +46291,Didier Lozahic +30714,Rick Yorn +60819,Petri Riikonen +1406053,Joel Holland +32341,Wendi Friedman +76946,Neil Thompson +33711,K.C. Fox +1599483,Lejla Hodzic +1325682,Arthur Newman +57779,Christopher Koefoed +958799,Nuala Moiselle +1864792,Tapio Piitulainen +1728444,Don S. Walden +1462812,Mark Ward +1463642,Virginia Wilson +59004,Walter Josten +1092520,Hilding Rosenberg +55417,Rosie Straker +1611762,Doris Carico +65117,Omar Veytia +1423771,Sandy Schklair +1567329,Jim Livolsi +31036,Brian L. Marcar +141393,Antonio Santean +10853,Howard E. Smith +1129438,Martin Schlüter +966444,Constance Demontoy +1043809,Richard Wright +3249,Max Steiner +1535733,Chelsea Carpenter +29689,David Pupkewitz +1753770,Randy Lovelady +12307,George J. Folsey +1921,George Nolfi +1369441,Ivan Volkman +1731246,Eva Svenstedt Ward +73144,Daisaku Kume +23703,Irving Buchman +59774,Graham Burke +968733,Peter Rawlinson +6834,Harvey Wheeler +185995,Michael Walker +1462683,T. Daniel Hofstedt +1717528,William Ambrose +50460,Michael Mayer +1342622,David Touster +1416969,Antti Kulmala +1009764,Patrick Cox +1521506,Teresa M. Austin +1433047,Matthew Holben +106565,Stephen Weeks +1473726,Fred Norris +35633,Kôji Endô +59541,Jo Burn +1324036,Geralyn Flood +1405210,Erika A. McKee +567805,Guy Elmes +21138,Kate Guinzburg +1027806,Jim Danforth +96927,Antony Cordier +1486763,Martin Brisebois +956624,Meredith Zamsky +548431,Tomas Cervenka +1397305,Richard Sawyer +1597199,Chris Blackwood +21869,George Pal +1423959,Tom Leetch +1407239,Wolf Schneider +10156,Francis M. Sarver +64637,Robert Boner +94549,Ben Woolverton +1423415,Chesley Heymsfield +64842,James T. Roe III +1827962,Kevin Montanari +1521677,Polo Escobosa +267877,Stephen Roloff +1154102,Michèle Hamel +16637,Vince DiCola +7191,David Webb Peoples +7148,Cricket Rowland +62802,Andrew Jameson +38955,Karen Porter +1713405,Kyle Strawitz +1380391,Alain Caporicci +190122,John Auerbach +3258,Murray Spivack +1744,Robert Wise +1565156,Ann Ducommun +1559395,Gib Guilbeau +1446204,Michael Smith +12051,Gary Wissner +1372782,Steve Englehart +1581077,Manu Poupard +1828,Stuart Jensen +16834,Allen Coulter +96281,James Hicks +7461,Kazuo Miyagawa +932220,Roger Friedman +20414,Ralph Gilbert Bettison +42994,David Dobkin +84220,Bill Bannerman +6584,Terence Marsh +1391709,Tricia McInally +1370916,Lyn Matsuda Norton +993811,Cheng Kuo +1607981,Francis Cugat +1409226,Marius Vlad +9247,Danilo Donati +10644,Josie MacAvin +960721,Jean-Paul Alphen +1147297,Jack F. Murphy +13168,Victoria Rose Sampson +1807330,Bill Dietz +20720,Jim Lemley +1730017,Laurent Soulet +587160,Philippe Vidal +1092902,Geibei Ibushiya +12914,David Ian Salter +1209170,Barbara Anderson +1447511,J.C. Wegman +1404754,Jeannine Dupuy +21251,Robert Lee +1395360,Ann Miller +2522,Ludwig van Beethoven +1078483,David Peipers +1342644,June Samson +65689,Robert Saad +41537,Jamie Macdermott +1767312,Greg Bradner +1447151,Gunnar Hansen +1275667,Hsin Chien +1482380,Alma Kuttruff +200484,Paul Green +12112,Douglas Trumbull +14568,James Hill +1132201,David Armstrong +1530090,Rosemary C. Cremona +21886,Hans Weth +57077,Frank Capra III +23812,James Steuart +1546,John L. Balderston +1458202,Gail Hunter +1706329,J.J. Lichauco Pelman +1516265,Julia Caston +104614,Domonic Paris +95665,Lennie Hayton +60596,John Alvarez +95653,Steven Kampmann +1437273,William A. Farley +1015883,Jeff Grace +68768,Anthony Adler +1377262,Guido Zettier +127542,Bob Misiorowski +1453296,Howard Stein +143558,Ted Wilde +957928,Todd Boekelheide +1415638,Russell Griffith +1346330,Lloyd Lee Barnett +35294,Henry Gilroy +1155948,Philippe Morel +57174,Bob Cooper +1335542,Emma Hanson +3563,Allan Starski +9025,James E. Tocci +5288,A. R. Rahman +3850,Astrid Lindgren +236292,James Hagan +12668,Yiu-Fai Lai +11836,Carmen Dillon +1083425,Kevin Harkey +11908,Mago +1394739,Charlotte Raybourn +1192862,Paul Davis +17315,Cale Boyter +1025726,William Flannery +50585,Craig A. Williams +1406826,Hector C. Gika +19359,Marina de Van +83060,Bob Brunner +24660,Bernard J. Kingham +1552894,Plato +1521651,Mariestela Fernández +22077,Carla Fry +1462687,Jeff Lin +1341855,Ken Dufva +19817,James Muñoz +1601520,Sirithorn Teerakulchanyut +1387195,Adam Jenkins +2306,Richard Reitinger +1663168,V. Vorobyev +1447543,Hugo Dominguez +1508092,Renee Bodner +1632066,Peter McKernan +1586929,Michael Denering +1228302,Tassie Cameron +10419,Suzy Elmiger +1530136,Algis Babravicius +52029,Jack Elliott +1425842,Deven Chierighino +61113,Jerry Lambert +67268,Jimmy T. Murakami +1480633,Dru Anne Carlson +1429532,Kenneth C. Mantlo . +1405201,Edwina Voda +1393787,Ozzy Inguanzo +23426,Nicola Buck +27218,Sandy Climan +91903,Danny Eccleston +13902,Seymour Nebenzal +1394967,Matthew Collorafice +1424461,Catherine Taylor +32349,Charles Wood +14049,Bud Davis +20140,David Hildyard +1870698,Dick Johnson +15195,Frank Clarke +1559614,James Thornsberry +53637,Devorah Herbert +2184,Richard Barton Lewis +1472378,Barbara Heller +1674665,Chris Bauer +7501,Ronald Neame +1545540,Lee Orloff +1817617,Oscar Garcia +1300923,Mary 'Dugan' Buono +1548529,John J. Thomson +938281,Gerald Kersh +1613268,Jens Gaube +1712245,Kathy Thomas +1564277,Michelle Wright +1599618,Herb Ault +1400535,Colin Anderson +1380404,Philip Quinn +7106,Jerzy Rogowski +1341397,Frank Salvino +1561994,Lavinia Waters +32176,Franklin Adreon +129560,Ben Silvey +15878,Anna Rackard +1408285,Huston Beaumont +1538707,Sienna Finklea +1458557,Jonathan Hession +135161,Massimo Cantini Parrini +33103,Peter Frampton +1392587,Tom Still +1219790,Jeffrey D. Brown +1611763,Harry Mieneke +88664,William C. McGann +1349056,Johnathan Rush +1023289,Katherine Quittner +1615581,Jerry Loveland +65708,Harold G. Moore +1574697,Lew Leary +59877,Darren Costin +1432524,Gordon Bond +4868,Andrew Marcus +71732,Peter Masterson +1387259,Kanani Wolf +1177364,Roberto De Angelis +71579,David Allday +50516,Philippe Carcassonne +5026,Akira Kurosawa +52839,Chris Blackwell +559911,Thomas Laughridge +100015,Akbar Meshkini +983051,Frank Leyva +31901,John Sheppard +75250,G. Tony Scarano +9438,Ossama Khuluki +1325696,Sterling von Franck +1463770,Les T. Tomita +1553629,John B. Clarey III +1125521,Satoru Chûko +21469,Steve Brooksbank +1514674,Sarah Gartner +1395261,Kathy Chasen-Hay +1792655,Sally J. Harper +9991,Karen Blynder +1452260,Harry Dakanalis +66692,Kathrine Gordon +225936,Kálomista Gábor +1400477,Jaume Vilaseca +7857,Merideth Boswell +1313019,Joseph Bauer +7848,Jeffrey Beecroft +99593,Jenniphr Goodman +1481830,Ján Svoboda +1532697,Thomas Opitz +1555644,Jennifer R. Blair +68938,Antonio Encarnacion +61901,Scott Richter +239993,Kurt Volkan +76805,John Hansen +19096,Jeff Alexander +12142,Ernest Gold +19102,Fred J. Koenekamp +1359571,Mayo Thompson +29970,John Arnold +53395,David Tedeschi +1172272,Henry Sucher +28841,Michael Ellis +64097,Bill Baer +131249,Alexandre Franchi +1780218,Scott Malchus +15384,Oswald Hafenrichter +67022,John Whelpley +1465643,Litza Bixler +1195066,Toraichi Kono +968155,Reno Antoniades +17529,Jacno +1399189,Pierre Rovira +1552203,John Catron +1425858,Konstantin Kostin +2498,Melchior Lengyel +75730,Nick Meyers +1624416,Jane Bevans +127351,Herbert Baker +1746321,David Gale +78965,Dave Graney +1319688,Pierre Lary +1398089,Ian Whiteford +6373,François Ivernel +1314066,Ana Dávila +1127069,Slavko Vorkapich +1398893,David Bondelevitch +1453132,David Abbott +12252,Peter Williams +21224,Ryal Cosgrove +1185793,E.R. Braithwaite +41135,Jules V. Levy +1398099,Joyce Menger +1567921,Art Martin +9789,Robert Altman +1536542,Gemma La Mana +1019843,Hal Borne +1538813,Joseph Allen +1143299,Martín Carranza +1495632,Martin Donovan +80828,David Fletcher +1580046,Lyudmila Baskakova +960784,Caroline Gee +1582392,Leigh-Alexandra Jacob +334925,Nick Drake +1543996,Ramón Moya +90223,Greg MacGillivray +1120763,Yoon In Beom +41377,Martin Shafer +147013,Lawrence Sanders +1788055,Natasha Landau +1814658,Steve Rhea +417960,Chris Regan +1602857,Steve Rodriguez +1428906,Christopher Learmonth +1537538,Mark Cookson +1449899,Danny Bramson +1520928,Pierrot De Heusch +1549585,Jolie Gorchov +965592,Scout Masterson +6904,Rhona Meyers +30422,Jack Smight +1403188,Pembrooke Andrews +118713,Fabrice Joubert +1266,Nicky Kentish Barnes +21516,Alex Thomson +13986,Jack Dawn +1780708,Craig Ring +1605363,Joe Cuervo +1555333,John Emerson +34194,Paul Edwards +1801506,Rida Draïs +83779,Travis Walton +1339219,Fred Kamping +20218,Eric Bress +9755,Yves Saint-Laurent +1273354,Roly Jansen +63785,C. Kim Miles +6568,Joel Freeman +1613299,Narimon Atibaed +1441361,Matthew Lynch +1737121,Fireball Tim Lawrence +3389,Michael J. Leeson +111082,Adam Finch +81520,Phil Naso +1441275,Patrick Zahorodniuk +1115008,Corinne Golden Weber +13245,Joel Negron +97471,Art Cohn +22815,John Thompson +1357342,Rasvan Puiu +113864,Mohamed Khalaf Al-Mazrouei +1340773,Carolyn Tolley +1216930,Peter Crane +52681,Tania Landau +71169,William Prochnau +1667253,Matthew J. Dias +5734,Thomas Narcejac +71879,Pyramid +1473722,David Gonzales +1384388,James M. Churchman +1402038,Robin Citrin +8636,Cecil B. DeMille +87260,Pablo Cruz +1136759,Law Chi +1433861,Maguy Vernadet +68319,Robert Harling +51307,Æneas MacKenzie +71067,Dong Yu +9213,David Myers +66519,Alan Edward Bell +52353,Denis Rouden +56748,David C. Williams +1557777,Tom Codrick +1619091,Heather Anderson +66754,Larry DeWaay +1402153,Cathie Speakman +196769,Jonathan Wacks +1557583,Brian Eyre +1368862,Dirk Buchmann +90340,Willie Colón +1541708,Selena Evans-Miller +1224107,Carol Banker +1052422,Donald L. West +14745,Russell Lloyd +20213,Nicholas Kazan +1561481,James Patrick Whalen Jr. +8344,Leon Chooluck +1730018,Marie-Noëlle Zurstrassen +1543045,Andrea F. Cannistraci +590467,Barry Healey +939510,Anne Clements +105643,Jay Oliva +1855218,Emer Sands +17310,Jeph Loeb +212239,Alan J.W. Bell +1023637,Ricardo Castro Ríos +6453,Dede Allen +40475,Janine Jackowski +1547230,David Norland +1635102,Fiadhnait McCann +1304431,Susan R. Crutcher +74569,Joby Harold +60865,R. Paul Miller +136512,Andy Riley +11845,John Briley +22066,Eric Larson +6049,Thomas Wanker +84768,Paul Lovett +9821,Marco Niro +52845,Karey Kirkpatrick +146180,Bruce Broughton +1762446,Jack Martell +3016,Burtt Harris +34751,Ray Enright +11968,Gabriel Figueroa +69982,Jeff Bleckner +1336514,Claire Kirk +1540856,Ioana Angelescu +1701247,Michael G. Kehoe +22154,Barrie Vince +931952,Lee Isaac Chung +7647,Miklós Rózsa +1706096,Solomon Brewer +1394724,Chuck Zlotnick +70748,Daniel Yun +2107,Paul J. Smith +1199555,Bosco Cline +1815472,Carol Kieffer Police +1340346,Jill Purdy +20433,Marie Masmonteil +91931,Chris Silver Finigan +1552336,Don Thompson +1749142,Debbie Scragg +112272,Julie Garces +1405806,Kathryn Casault +1425900,Rob Hinderstein +8908,Arturo Pérez-Reverte +53900,Aran Mann +5326,Meryl Poster +1864787,Paul Norris +1296340,Lee Ja-yeong +1552998,Raymond Bulinski +1574656,Manon Lapointe +1193691,David R. Beecroft +1281017,Linda Kiffe +550,Jennifer Todd +1764642,Steven Feder +30149,Mikael Salomon +7758,Darek Hodor +1392984,Dean Forster +11799,Gary M. Zuckerbrod +1760805,Melissa Bartley +1790077,Michael Auszura +1462845,Martín Hernández +93689,James O'Hanlon +1118848,Louis Berger +11422,Cecilia Montiel +1744426,Nicki Johnson +1714546,Alan Parker +1233953,Frank Deasy +73275,Ray Shanklin +70149,Georgia Packard +13371,Harry B. Miller III +1416424,John Walker +65238,Mike Benson +1424639,Vinca Cox +1453321,Patti Hawn +1367560,Mark Clayton +1445987,Michael Rea +1227175,John Joseph Thomas +88916,Kimmo Taavila +88983,Louis Germonprez +937718,Jeremy Benning +82824,Stewart Williams +16732,Eduardo Serra +24219,Claus Wehlisch +1410196,Josh Sutcliffe +1405219,Meri Gavin +1384362,Lucie Tremblay +1392759,Daniel Adler +1762665,Bobby Tamkin +552419,Chatchai Pongprapaphan +22819,Vicki Graef +67698,David Michaels +55949,Peter Atkins +1753068,Tony Marrero +1876048,Jørgen Nielsen +129,J.R.R. Tolkien +29650,Eva Langbord +41142,Jack Farren +1877359,Sissy Boyd +9885,Gary Chason +65454,Georgina Lowe +12885,Carlos Puente +41705,Aubrey Wisberg +15512,Fergus Clegg +31123,Rob Hardy +606,Charles Knode +1856490,Ed Walloga +18826,Kim Magnusson +11413,Garrett Lewis +71349,Ronnie Caan +1437717,Patricia Gorman +1395022,Greg Hedgepath +8723,Andrzej Herman +551919,Michael Rosenblatt +1462668,Mark Landon +1337465,Damian Volpe +8115,Steve May +68572,Peter Mokrosinski +13921,Sanjeev Mulchandani +32637,Bernd Heinl +1245087,Ilona Lepkowska +19449,Tony Mark +1404308,Anthony Lattanzio +1834848,Cuong Dang +1432800,Robert Rohdie +56593,Robert M. Stevens +1610048,Dorota Wolnicka-Szczesniak +53901,John Wyatt +10575,Jess Gonchor +1897882,Laura Rush +83524,Shinobu Yaguchi +1547357,Kim Percival +1117959,Yi-kan Chan +104688,Tatsuo Satō +1194069,Paul Drouin +55073,Ravi K. Chandran +9187,Victor Du Bois +1573100,Mary Berkelbach +52159,James D. Stern +20236,Robert Thomas +1557600,Paul Swinburne +1399518,Jonathan Sanden +1068056,Easton Michael Smith +54670,Wim Mertens +1363066,Andrew Munro +57840,Nigel Hess +179891,Arduino Maiuri +23332,Janus Billeskov Jansen +1567034,Regina Robb +1007265,E.S. Seeley Jr. +82864,Bill Finnegan +1110466,Marco Morabito +8572,Juliette Renaud +12926,Robert M. Reitano +1840078,Brad Logel +65960,Wilson Chan +1141776,Clifford Pember +14447,Thomas Richards +58179,Robin Schiff +130185,Arthur Schwartz +4668,Franco Ferrini +1817622,Michelle Rene Elam +1662775,Peter Oillataguerre +229167,Jacob Rupp +1667247,David Keir +10678,Jodie Lynn Tillen +72419,Michio Mamiya +113036,Mike Rennison +40471,Mark Bridges +11415,Al Ruban +55878,Steve Danyluk +1402015,Kathryn Blondell +1560812,Vito Anzalone +1158488,Mervi Junkkonen +1857591,Joshua Smith +3699,Uwe Haussig +1337666,Jasmina Vasileva +1176345,Sally Stiner +71788,Tim Whelan +39014,Alberto Spagnoli +1422978,Devon Heffley Curry +62048,Kirk Wise +1870,Gernot Roll +50140,Kramer Morgenthau +1678652,John Dorst +170029,John Shepard +1532374,Reza Narimizadeh +92628,David Joseph +1454029,Stephen A. Buckley +19695,Andro Steinborn +81888,Jan Ventura +938123,Cathy Henderson +1546047,Manish Raval +59814,Robin Nassif +23410,Carol Skilken +1741165,Tom Proper +29378,Daniel Pyne +6431,Darren Aronofsky +4404,Yorick Le Saux +130140,Sam Green +1817618,Greg Gayne +1406921,Joseph A. Mayer +1816574,Stephen Caldwell +152183,Justin Hardy +1455426,Tom Bugenhagen +1470540,Librado Pastor +402272,Anna Foerster +1817061,Shirley Mellner +1446549,Judith Saunders +68029,Roel A. García +121078,Nathan Barragar +32589,Susan Ringo +75086,Alistair Hopkins +4437,Lydia Marks +29529,Larry Wilson +1586395,Roman Rigo +38793,Mose Richards +1451678,Julian Hynes +1739550,Michel Leduc +1448065,Drew Lightfoot +6495,Mira Nair +1413858,Jonathan Rutter +1461177,Suzanne Hanover +103912,Griffin Jay +6047,Jeffrey Nachmanoff +1611790,Vincent Brabant +85904,Elizabeth Janeway +44967,Carlo Reali +1545101,Richard J. Cook +66191,Barry Cook +958903,Ann Buchanan +7747,Ellen Michelsen +10858,Tedd Kuchera +108915,Stephen Traxler +10548,Wendy Greene Bricmont +1561749,Michyl-Shannon Quilty +1539139,W.E. Woodward +1093414,Masayuki Nakajima +118748,Bruce Law +58614,SABU +51613,Jason Blumenthal +1534680,Christopher Covert +57724,Joseph Koo +1408855,Laura Miles +12346,Alexander Golitzen +71268,Chris Bacon +84273,Daniel Bova +1573074,Mike Richer +54760,Phil Shirey +69143,Charles Tetoni +119659,Yung-Chi Liang +39141,Raymond Lefevre +1376898,Jeffrey Wisniewski +1716722,Henri Jaffa +117411,Marvin Schwartz +1705301,Aashin A Shah +1415144,Fred Brennan +1705312,Sanjay F. Gupta +72282,Laurent Guido +16984,Bernat Vilaplana +938105,Ken Blackwell +116583,Juan Pablo Rebella +1697636,William Norris +1558210,Jim Turner +703,Peter R. Adam +583990,Danielle Baker +131741,Burton Wohl +1567309,Shawn Maher +8761,Vincent Guisetti +40607,Peter Scheerer +13721,Robert L. Wolfe +1384359,Félix Larivière-Charron +87590,David Greenwalt +4400,Christine De Jekel +3502,Terry Ryan +1413963,Sven Pannicke +64395,Norbert Blecha +1432024,Charlie McIntyre +142865,Jean Vigo +91896,Dick Wood +979175,Brad Shield +60808,Kimmo Jaakonsaari +1158874,Chen Kun-Hou +1378479,Piotr Sikora +1399970,Glenfield Payne +1606370,Matt Blades +34222,Ruth Ammon +1504064,Ken Clark +1551539,Valente Torez +1582969,L.J.W. Stokvis +72854,Adrian Johnston +1531494,Jim Black +54742,Alan Latham +14906,Cliff Hollingsworth +1126,Krzysztof Kieślowski +13942,Del Armstrong +1152400,Rolf Dekens +24308,Brian Goldner +1069714,Toni G +85127,Bobby Garcia +21981,Harald Zwart +85692,Lillian Hellman +31604,Massimo Franciosa +962467,Rebecca Bentjen +11384,Bill Rowe +1387777,Andrew Midgley +1581329,Joyce James +1329402,Arne Abrahamsen +1516271,Pamela Post +12847,Wallis Nicita +1117459,Steven B. Cohen +53712,Dickon Hinchliffe +1630523,Scott Smith +89006,Billy Barber +8166,Juan Peralta +32400,Jeremy Ritzer +67783,Gary Rosen +1892487,Mark Hudson +1451413,Natalie Cass +1334044,Isabelle Welter +144068,Will B. Johnstone +1441349,Brian Epp +1448045,Brian Demoskoff +24205,Lori McCreary +92735,Melanie Coombs +944051,Elyse Friedman +86907,Susan E. Novick +70522,Will Clarke +1584259,Grayden Le Breton +578,Ridley Scott +1453277,Horst Grandt +67075,Sion Sono +1411259,Richard Snell +7754,John Jympson +113045,Dawn Lunsford +102274,Jorge Pérez +29241,Louis Nerz +583261,Austin De Besche +1305808,Richard Tom Sawyer +5273,Jaime Brito +961845,Matt Hearn +73145,Yasushi Sasakibara +37036,Aris Iliopulos +16282,Michiko Suzuki +1462708,Mir Z. Ali +128101,Steven Farley +32451,Martin Ruhe +61118,Mark Wheaton +958519,Genevieve Lemal +1404870,Claire Tovey +1538341,Candice Donnelly +1339206,Robert Wojewodski +959360,Bill Groom +10957,Wayne Wahrman +12842,Leonard Goldberg +68184,Wijo Koek +76509,William Platt +1452632,Brooks P. Guyer +113595,Sofie Fabri +1063738,Arthur Wright +15223,Steve Shewchuk +1483222,Simon Clutterbuck +1739973,Charles B. Walker +1344225,José Luy +1447423,Leonard Robledo +120428,David McDonald +1676165,Steve Switzer +1416987,Juha Pursiainen +59659,Bobby Schwartz +1461764,Franco Freda +66453,Magdalena Dipont +1546833,Jay Gallagher +77306,Hunter Weeks +162900,Stan Foster +550644,Patric Caird +35699,Louise Roper +1137251,Acrassicauda +1546551,Heather Kwiecinski +1724281,Tony Anderson +1158318,Sven Wichmann +37040,Maia Javan +1343610,Edward Donahue +672646,Michael D. Aglion +1397809,Don Miloyevich +1108652,Matthew Clark +1061323,George Lane +87172,Mark Millar +9453,Cassandra King +1341400,Victoria Ruskin +61421,David Womersley +113985,"Terry Morse, Jr." +3804,Peter Guber +1380001,Marcus Pohlus +151,Roger Deakins +1322327,Trevor Farrant +1441369,Gaetan Jalbert +1352959,Brad Wilder +65045,Christopher Gordon +1641281,Rodolfo Benítez +9972,Dale L. Martin +17634,Martin Richards +1478309,Madelyn Davis +56796,Nathalie Leborgne +1530870,Lisa Rodgers +82337,Wash Westmoreland +7512,William J. Creber +1646184,Jim Silverman +1545306,Hans-Eric Ahrn +3662,Cis Corman +60403,William B. Steakley +1557060,Mihai Burtan +26977,Robert Collector +1433998,Carol Pershing +1409256,Harry Cheney +64828,Tom Benedek +44993,Marshall Harvey +17816,David Rosenbloom +1551975,Wendy K. Hope +1524176,Jesse Epstein +60579,Chris Seagers +102346,Barry Schrader +1302619,Amy Schmiederer +75943,Emily Seresin +27887,Susan Orlean +52751,Kelle Kutsugeras +1357399,Hillary Carlip +563702,Göran Setterberg +1457820,Ernesto Martinez +15410,Henry Larrecq +1765797,Mark Suveg +1425859,Natalya Zamakhina +1630537,Penny Shawyer +1825213,Bi Benton +102345,Timaree McCormick +46442,Adam Simon +68687,Bill Forsyth +1402032,Francois Archambault +1840694,Ron Forward +999561,Andy Kennedy +994146,Richard Wesley +12989,Andrew Davis +65791,Lawrence Riggins +1377128,Matthew E. Butler +1189022,Colin Chin +945,Crispian Sallis +17584,Aris Stavrou +58046,Dennis Paoli +3687,Harry Cohen +1601521,Santipap Ingon-gnam +1868840,Justin B. Tolley +40283,Stephen W. Parsons +14535,Martin Elfand +132483,Octave Mirbeau +45861,Tom Jacobson +1599048,Mingaile Murmulaitiene +1549201,Gary Lewis +1585873,Dirk Plamböck +1534987,Tom Williams +62931,Sakina Msa +17595,Georges Bernanos +1522749,Jay Pires +1359680,Harry Barndollar +1416951,Peter Maxwell +18877,Don Heck +90162,Eiko Tanaka +1419906,Jeff Goodwin +1754099,Jack Sekely +75291,Iain Aitken +150627,Thorne Smith +1394131,Jon Taylor +1370800,Gina B. Cranham +1447554,Edwin Shortess +1425847,Margrit Neufink +1602883,Matt Story +45769,Wouter Barendrecht +1338839,Whitey Ellison +234483,Valérie Loiseleux +1095528,Oriane Gay +8565,Bel Berlinck +1049993,Ammiel G. Najar +133223,Leslie Charteris +1406402,Jean-Claude Lagniez +229613,John P. Marquand +554129,Mei Shing Wang +27486,Pete Kozachik +1211220,Greg Dykstra +5329,David Gropman +1895743,Dominique Gay +1274141,Erma E. Levin +1727298,Chris Beanes +1752705,Stuart Mitchell +60083,Marc Gurvitz +64032,Daniel Lang +1456614,Megumi Kagawa +56671,Mireille Soria +1406849,Jimmy Fusil +84390,Mary-Jane Robinson +937912,Keiko Deguchi +9439,Catherine Harper +43806,Daniel Bronzite +1674666,David A. Darrowski +1143710,Jack Marty +1338840,Marion Tumen +1401965,Bryan Grill +1378724,Jim Schultz +1544670,Patrick Crane +1427512,Neil Williams +939374,Stephen K. Randolph +485159,Christopher Soos +1461361,Lorelay Bove +1023192,Gilles Boillot +1339432,Erica Frauman +1179039,Joe Vegoda +1031535,Norton Buffalo +1345301,William R. Fox +14561,Erwin Lange +73027,Steve Polivka +1767058,Jesse Augustine +1674185,Fred Halliday +15224,Michael MacDonald +20836,Mason Daring +1706641,Joe Bacharka +56944,Alan Balsam +43085,Chad Hammes +52036,Jan Fantl +1551970,Christophe Vassort +1429529,Phil Haberman +57684,Aaron Copland +57526,Dan Cracchiolo +574268,Donald Goines +2214,Paul Haslinger +1300628,Joseph Ancore Jr. +1868309,Tai Wai Lai +1563894,Charlotte Ostergren +1779905,Andrew Meagher +1396476,Dean Giammarco +1403637,John Seymour +9541,Stefan Simchowitz +53995,Peter Brosens +46347,Liz Glotzer +1454543,Jessica Flaherty +61335,Peter Duncan +1407223,Bunny Parker +59524,Jonathan Harris +1002912,Wendy Smith +521806,John Johnson +60406,Richard Turner +1602153,Renata Jaukerová +1734662,Phill Norman +1338851,Marshall J. Wolins +1441278,Dave Conway +1424631,Skip Margetts +1896279,Harald Guhn +1364882,Nicole Mitchell +73140,Hisashi Nozawa +1326402,Suzanne Canuel +22080,David Lee +1033793,Linda Goldstein Knowlton +12347,Richard H. Riedel +1662298,Joanna Branch +997118,Wang Yu +13410,Roy Arbogast +1896607,David W. Strong +123,Barrie M. Osborne +14540,Douglas Higgins +29437,Steve Graziani +1279373,Audrey Niffenegger +1678651,Felicia Sanchez +1709192,Linda Moss +10790,Sam Wood +69141,Robert Draper +1588449,Robert Gary +1182551,Cynthia Sleiter +34950,Petr Cikhart +1409223,Emil Ardeleanu +1335195,Frazer Churchill +117396,S.L.A. Marshall +33651,Alexander Gruszynski +33447,Dien van Straalen +14094,Harry Stradling Jr. +149374,Leon Schlesinger +80690,Cat Villiers +1538814,Earl Dittebrandt +1406918,Brendan Rankin +62901,Stephen Hegyes +120176,Richard Blake +1385920,Bhargavi C. Mandava +1790551,Jesse Adam Smith +75578,Gaby Kester +5678,Brunello Rondi +3955,Skip Williamson +146484,Gérard Bitton +78107,Takashi Koizumi +1555312,Matthias Klemme +1691298,Kevin Lane +82482,Greg Pritikin +37761,Jérôme Tonnerre +7969,Lane Smith +1767778,Charlie England +76090,Miranda Colman +1101341,Vera Chapman +17610,Kristy Carlson +1378167,Sarah Jacobs +1526842,Thomas Dolan +24281,Vittorio Taviani +113899,Robin Chapman +1170629,Ewa Starowieyska +935742,Gitti Fuchs +6959,Justine Baddeley +1519865,Carole Theriault +6897,David Alvarado +1555253,Suzanne Lore +233491,Sophie Fillières +146846,Kelly Senecal +1487709,Jane Clive +1767781,Ed Raymond +1966,Jacques Bufnoir +181164,Eric Kaplan +1410139,Graeme Dunn +1611782,Raynald Langelier +1401674,Belinda Villani +131489,Jack Lewis +578713,Johann George +38917,Walter Patriarca +1393301,Ricky Butt +1864765,Mark Kennedy +1857480,Didier Kwak +11310,Larz Anderson +1402126,Harry Hendrickson +63648,Julius Svendsen +45989,Ted Nicolaou +1470187,Margot Bridger +1830811,Simon Varela +1538376,Rick Reynolds +1418470,Nicolas Anastassiou +40610,Michael Roesch +95334,Angelo Corrao +1392107,Logan Leabo +9060,William A. Horning +22057,Alan Caso +1676177,Linda Petty +57196,Douglas Pipes +11801,Sandy Reynolds-Wasco +103568,Daniel Lacambre +1394583,Anne Litt +1387265,Bryan Lawson +14764,Christopher Assells +1415965,Teri E. Dorman +117222,Nick Milner +5046,Ronald Shusett +57193,Gil Kenan +1401726,Randy Vellacott +1537721,Rafy +1338372,Dan O'Connell +133477,Jessica Barondes +60215,Lloyd Taylor +59951,Paula Gosling +13745,Ravi Shankar +80470,Daniel Delume +1521772,Michelle Gorchow +1441320,Alex Burdett +1495665,Todd Williams +1450986,Jeff Bailey +1002842,Jacqueline Feather +27921,Oscar Friedrich Werndorff +1868858,Jason Phillip Johnson +1400330,Gökhan Balseven +69706,Jean Dorst +10395,Jon Poll +15606,Llorenç Miquel +81891,Bert Glatstein +21934,Chino XL +1851719,Allan Bromberg +1207976,Federico García Cambero +993312,Senji Itô +940810,Joaquim Pinto +1476342,Michael E. Steele +1384107,Elvira D'Amico +1193686,Joyce Kozy King +9003,Kave Quinn +96902,A.W. Vidmer +1404845,Tamara Watts Kent +13586,Christopher Burian-Mohr +1172894,Gregory Noveck +1051755,Anne Fournier +1549174,Jimmy Keys +68389,Grace Loh +1441355,Lori Gillis +1463336,Jim Martin +206043,David C. Anderson +75906,Ben Morieson +1384196,Dennis Haines +933417,Gary Jones +79283,Juan Gordon +16837,Mark Steven Johnson +69153,Dusan Krivec +1816134,Jan Meade +6203,Catherine Martin +1543832,Todd Popp +1416986,Tuomo Hintikka +120416,John Brousek +93887,Gary Davis +54248,Christopher B. Landon +20027,Idrissa Ouedraogo +1550209,Elizabeth Aldrich +1448424,Angela O'Sullivan +10572,Theodore Shapiro +19249,Arnold Schulman +103163,Irving Glassberg +1447612,Tom Barrett +75937,Marian Macgowan +1397771,Tom Klein +1095833,Jean Mach +1676545,Sophie Chiabaut +10586,Richard Lester +1521652,Marc Bèdia +1706642,Bradley Barnes +57911,Boris Blank +64634,Calexico +57558,Mathieu Delaporte +1681250,Raymond Zibach +19697,David Wicht +82394,John Kaye +1643668,Roberto Ortiz +1196135,Jene Omens +1396494,Shadowy Men on a Shadowy Planet +1346939,Michael Feinberg +157703,Robert Lynn +78369,Masatoshi Tsurubuchi +1328165,Steven R. McGlothen +1402392,Ian Watson +1398982,Rachel Aberly +11814,Todd Garner +1707107,Michael Schmidt +122179,John Ledford +5334,Sallie Jaye +61122,William Sherak +80810,Jeremy Balko +1377222,Michael W. Mitchell +1443662,James Quinn +15849,Neil Krepela +75690,Joel Tuber +1674762,Jerzy Buchwald +1373619,Grant Mason +11529,Carl Koch +1390322,Deborah Shaw +1270420,Masaaki Hirao +1398123,Sergio Reyes +1027506,Sam Petty +57822,Andrew Panay +93011,Ron Rotholz +79686,Bridget Ikin +103446,Robert Usher +88514,Rick Fry +147010,Anthony Coldeway +27846,John Herzfeld +60501,Craig Fincannon +36618,Tracee Stanley +16821,Ewa Karlström +14875,Robert Rossen +1061537,Andrew Mollo +1120770,Alex Massis +150340,Benito Pérez Galdós +69366,Kirk Tougas +8339,George R. Nelson +930242,Robert J. Bronner +54322,Morgane Bernhard +4612,Robert Rehme +1730428,Angie Mudge +1387572,Andy D'Addario +32381,Aldo Tonti +100016,Hossein Amiri +341386,Erroll Garner +1573113,Michael Scott +1424130,B. Tennyson Sebastian III +16576,Simone Boisseree +1458331,Clifford Augustson +1393364,Peter Taylor +11873,Roger Kumble +1408670,Itsuko Kurono +1423358,Crystal Kramer +1861310,Deborah Ross +1418799,Samantha Lyttle +1557470,Francesco Bellomo +19517,Ernst W. Kalinke +1489816,Helen Watts +152347,Bobby Fine +1377419,Steven A. Saltzman +1437639,Richard J. Zinman +131048,Ray Buffum +585135,George Nichols Jr. +1532734,Alyssa Kim +117243,Brian Best +102784,Irene Morra +1256621,Jan Dorman +4657,Louis Craig +66907,Raju Patel +31906,David Geddes +124647,George W. Trendle +1428595,Jason King +30586,Robert Tinnell +1614958,Steven Burnett +59839,Harvey Weinstein +20775,Simone Reynolds +1419160,P. Gerald Knight +3806,Marion Dougherty +1400558,Robert L. Sephton +1413942,John Watters +49819,John Updike +14097,Rodger Maus +103482,Lindsay Shonteff +18885,Richard Hudolin +28401,Stuart M. Besser +1399054,Camar Sterling +96704,Ernest Kinoy +1403698,Antonio Tarolla +10396,Rusty Smith +5267,Ulrich Felsberg +8762,Scott G.G. Haller +1395281,Bob Gorelick +1206210,Alan Bryce +41898,Kate J. Sullivan +1042639,Dusty Dukatz +1522736,Kathleen Rosen +1215282,Lynne Stopkewich +1619018,James Arrigo +574069,Wojciech Kuczok +8878,Allan Carr +1573091,Avi Laniado +1458534,Marion Billings +1864803,Mark Chataway +7300,Joseph Stefano +1385880,John Fenner +1661550,Jeff Linnell +1701161,Elspeth Cassar +76369,Rolf Börjlind +25797,Jonathan Griffin +1380387,Clive Turner +1388879,Will Kaplan +5809,Basil Fenton-Smith +582562,Steve Liu +35674,Helmut Ringelmann +1125479,Thierry Klemeniuk +1532301,Janelle Cochrane +1667252,Brian Addie +66728,Jonathan Glazer +88118,Bruce Barber +1447376,Anthony DeRosa +66077,Jack Cummins +62473,Bénédicte Brunet +36133,Bryce Perrin +1308715,Yoshihiro Hagiwara +14765,Per Hallberg +34952,Mahyad Tousi +1402137,Liz Sroka +90069,Joseph Kane +11005,James Edward Ferrell Jr. +1148214,Louis Mann +27555,Peter Bray +72941,Marion Touitou +59430,Susan Kaufmann +1705505,Fred Ballmeyer +1556518,Linda S. Cormany +948114,Marc Baschet +87429,Michel Ocelot +1425863,Kerstin Böck +26193,Denis Schnegg +25185,Barbra Matis +1841269,Richard Y. Kim +57258,Kevin Droney +1820604,Giuseppe Donato +1733783,Said Andam +56130,James Pergola +7460,Fumio Hayasaka +1411523,Connie Brink +933463,Joseph M. Altadonna +12720,Robert Krasker +156,Sally Menke +1427559,Antoinette van Speyk +1210259,Lucia Mace +1492126,Fiona Finlay +1125522,Souad Lamriki +69801,Alan Metter +81742,Aaron Pope +3175,Richard Marks +134804,Vernon Keays +1344915,Fred Frank +1478538,Jon A. English +1000458,Maurice Seiderman +60110,Erika Munro +41554,Heather Persons +1556631,Nephi Sanchez +1532615,Dan Pemberton +1725883,Mark Burgeois +938835,Marina Zenovich +11452,Terry Hayes +1409222,Brad Dale +67348,George C. Villaseñor +100890,Abe Levitow +56747,Robert Little +54510,Duane Adler +1743676,Igor Pedicek +3782,Lila Lakshmanan +1521508,Bruce Ericksen +1861314,Sarah Warland +16973,Icíar Bollaín +1817620,Kathleen Russo +1607498,José Luis Arredondo +1407197,Maurice Schell +1577154,Richard L. Barr +1406903,Loan Phan +68554,Jannik Johansen +1402124,Tracy Yates +77202,Robert J. Ulrich +1105213,Peter Krüger +27721,Geneviève Winding +142169,Joyce M. Lark +716,Emile Ardolino +28169,Paul Flaherty +9639,Thomas Valentine +2260,Steven Zaillian +1442212,Patrick Janicke +133293,Paul Bolger +1262771,Damian Bradford +1552184,Mike Day +90055,Mort Briskin +1070426,John Thomas +1398898,Niklas Larsson +1602322,Gren-Erich Zwicker +53175,Mark Schwahn +1375602,Joyce Schure +6488,Mark Roybal +2149,David A. Armstrong +1009265,Jamie Alain +1634866,Emily Sundby +20898,Lisa Bankert +59656,Cedric Jeanson +76015,Amy McIntyre Britt +555085,Bruce McBroom +591276,Adam Forgash +1425328,Logan Breit +20131,Paul Glass +1015645,Deborah Jensen +18738,George Stevens +1392109,Kenn Smiley +1790543,Stephen C. Peterman +20572,Giorgos Arvanitis +121034,Alex Gottlieb +20823,Peter Lyons Collister +1753065,Dennis Kirkham +844,Wendell Mayes +1407229,Tommy Lohmann +31068,Helen Deutsch +10635,Judith Thurman +52035,Lewis Colick +1403706,Robert Stecko +1343388,Tom Keniston +1394953,Christine Carr +2110,Harper Goff +40838,Damian Anderson +36009,Ruth Bahmann +1724245,Jerry Weil +7769,Jerry Fielding +1196709,Julia Kim +1408338,Melinka Thompson-Godoy +1418453,Janis Clark +44744,Theo Baltz +1029260,Connie Sacchi +81915,Tetsuya Saruwatari +7098,Maria Osiecka-Kuminek +18495,Walter Rippell +1401562,Gary C. Bourgeois +32201,Dominique Fauquet-Lemaitre +125543,Michael Lindsay-Hogg +1446196,James H. Chow +1385921,Leonard Moreton +14944,John Coquillon +23774,Jo Grover +29787,Mark R. Harris +21377,Peter Medak +1318868,Blanca Olavego +65046,Richard Tognetti +14411,Devereaux Jennings +66882,Nik Cohn +1319383,Philip Toolin +6922,Christa Munro +950393,George Fowler +1394130,Frank A. Montaño +18775,Marc Boyle +583108,Edgar Bronfman Jr. +3963,Claude Letessier +1542409,Hyeon-je Oh +1371001,Mark Anthony Little +957804,Michael Krantz +3779,Georges de Beauregard +1424459,Robert Amses +36697,Gábor Csupó +1408283,Max Jones +17861,Moritz Laube +1401639,Jennifer Stanfield +1352284,Yuji Wada +1316574,Billy Finnegan +37719,René Le Hénaff +1324829,Michael Manson +1437607,Dennis Stephenson +1409857,Carmen Soriano +1561632,Christopher Hall +223994,Sarah Koppes +1004100,Tamás Somló +237158,Gin'ichi Kishimoto +1100808,Gordon K. McCallum +1537964,Lynn Barber +2446,Chad Oman +1609514,Nikodem Wolk-Laniewski +17212,Normand Corbeil +13672,Patrick McMahon +1551648,Chuck Courrieu +1602321,Etoile Stewart +108274,George E. Diskant +150844,J.C. Calciano +1394104,Diana Dill +1419089,Russ Kavanaugh +1895997,Joshua L. Ellsworth +72104,Scott Fischer +938781,Axel Kuschevatzky +69666,Mark Kasdan +951607,Loren Janes +73259,Edward Muhl +91147,Dana Sano +1319735,Wolfgang Hundhammer +101099,Ornella Micheli +40027,Sevil Demirci +1423020,Michael McGinn +37242,A. Sreekar Prasad +59706,Heitor Pereira +1399992,John A. Kelly +1148475,Nan Charbonneau +118281,James Whittaker +1688593,Michael C. Price +1814098,Paul Silver +1544409,Romain Scavazza +143921,Jeffrey Perkins +1401123,Bart Brown +1409008,Charles H. Schram +1552549,David Orr +1581076,Paddy Patterson +1327146,Wendy M. Craig +581141,Zenju Imaizumi +5864,Claus Boje +1774882,Chuck E. Stewart +1661544,Genka Emili +1391727,Rangi Sutton +81528,Stephen Fitzstephens +7943,Glenn Kim +21415,Robby Henson +1550861,Rudi George +233192,Jean-Pierre Marois +130822,Trent Cooper +94546,Felicia Fasano +75098,Peter Baldock +14877,Walter Tevis +1440739,Emilie Harvey +1589507,Guiliana DeCarli +1532402,John Klepko +124092,Lisa Krueger +1548635,Charles Belardinelli +1716982,Adriana Pacheco +583264,Thomas Brandau +1550222,Mark L. Levine +1546187,Craig Ligget +1417861,Jason Hayes +5270,Zé Branco +568128,Alan E. Salke +772490,Julian Johnson +1209958,Otto Metzetti +239355,Richard Eichberg +1104955,Caroline Stover +1351327,Michael Garner +1122010,Karyn Edwards +1406905,Michael Connell +1304265,Marki Costello +1012121,Aida Young +1401255,Alan Manzer +1201684,Daniel DelPurgatorio +34799,Harry L. Fraser +56414,Dean M. Leavitt +1335212,Brian Abbott +114409,Mike Drake +230134,Kelly Zombor +1392906,Gayle Busby +74766,Kathe Swanson +1364422,Derek Bird +490,Colin Wilson +1176925,Allan Jacobs +1478934,Pam Leonte +92359,Karl J. Martin +1117857,Jianqiu Wang +90070,Armand Schaefer +1099700,Chester E. Tripp III +1592205,Keith Connolly +1539293,Jason Troughton +1580044,Lyudmila Feyginova +21904,Marco Mak Chi-Sin +21771,Daniela Thomas +1550188,John Andrew Berton Jr. +1473810,Heyward Collins +51514,Christine Lucas Navarro +174678,Linda Hassani +1423211,Doug Slater +64315,Erik C. Andersen +1451280,Masaru Oshiro +870,Sam Leavitt +17613,Nicolas Lepage +21162,Marthe Pineau +1355963,Drew Ponder +4128,Perc Westmore +1817634,Tory Mell +1418814,Ricky Schamburg +1551343,Paul P. Soucek +32085,Léo L. Fuchs +4909,Chryss Hionis +21551,Jean-Pierre Guérin +1414559,Sin-Halina Sy +68358,Louis Febre +20657,Cristian Mungiu +35267,Boyd Kirkland +58082,William Hoffer +1544903,Michael Miller +1573109,Doug Moreno +1677820,Michelle Belforte +59657,Ross M. Dinerstein +4479,Morten Holm +557153,Claudio Racca +57427,Pamela Koffler +1653580,Laongkaew Saijai +10390,Amy Sayres +1896605,Mike Tucker +125815,Perry Botkin Jr. +1878362,Mike Ford +14640,Thomas Meehan +6406,Melody London +1781737,Gayle Vangrofsky +7790,Peter Russell +1530290,Hans Åkerhjelm +1398118,Robert J. Carlyle +592252,Anthony Pelissier +77086,Jonas Pate +1550234,Nick Neutra +15430,Scott W. Farley +11368,Monica Mcgowan Johnson +1532320,David Shanks +1400000,Mike Roberts +75240,Gary Alexander +14526,Daniel C. Striepeke +1506034,Max Wein +48503,Dirk Reichardt +72608,Mike Y. Inoue +60246,Steven Shareshian +60870,Sharon Lomofsky +1010751,Joe Barnett +39824,Taizo Son +928632,Lance Johnson +1173675,Paul Alexander +75287,John Birmingham +81526,Sanford Rackow +1125694,George du Maurier +83224,Jamie Thraves +1899319,Rokusaburô Saitô +959982,Ruy Filipe +33263,John Armstrong +7190,Tom Mankiewicz +67760,Oliver Sacks +1560760,John Heffernan +1581117,Françoise Fagnou +129533,Dorothy Jones +1327119,Hassan Yektapanah +1530890,Tillie Starriett +1056058,William Batliner +68127,Bonnie Koehler +39038,Steve Saklad +1529813,Holger Veh +14960,Bert Glennon +1564248,Michael Morgenthal +125001,Ichirô Saitô +12942,Fern Champion +47517,Roy Boulting +58148,Leslie Belzberg +101800,Joshua Malkin +1853470,Kipp Marcus +91123,Michael Kelem +988922,Peg Fenwick +54776,Paul Eads +15558,Tom Eyen +1734787,Patrick Murphy +1742751,Jeff Wan +95657,Sandro Mancori +15255,Gordan Mihić +127123,Oksana Bychkova +100021,Siamak Alagheband +74355,Trace Slobotkin +1419796,Lynn Haaga +254681,Travis Milloy +68083,Aaron Rosenberg +20214,Doug Kraner +40581,Paul Laffargue +223239,Peter F. Kurland +1429248,Thomas Dadras +1322112,Ann Brodie +150211,Marc Brandell +1330206,Cal Naylor +1322481,John Chichester +1584241,Jim Conrads +1195781,Allan Zavod +1411672,Rick Woollard +15229,John Stoneham Jr. +1546552,Debra Antic Davidian +1575790,Barbara Morosetti +7034,Tom Richmond +8628,Harry Lindgren +1458333,Ethlynn Dalton +1605167,Patrick Flynn +16339,Eric Viellerobe +1424046,Jane Brody +7236,Andrew Menzies +1610131,Lidia Rzeszewska +1553269,Raymond Consing +15014,Peter Jamison +1401794,Lucas Putnam +1249773,Lois Burwell +70663,Martin Rosen +1326461,Annie Crawford +960696,Dino Parks +73334,Delphine Tomson +12255,Peter Giuliano +1559632,Carolyn Marston +20488,Nathanaël Karmitz +1664278,James LaRue +1274271,Helmut Nentwig +2362,Jane Seitz +1334944,Amela Vilić +1060257,Lawrence O'Neil +1598747,Rudy Baccuchi +1552062,Peter J. Devlin +1779907,Mark A. Bollinger +1838870,Steve Adams +1877101,Randy Martens +148015,Marko Leino +1031586,Neda Armian +119768,Norman Salling +1341446,Al Magliochetti +10950,Erwin Stoff +57188,Bradley Cramp +92481,Alan Oliney +1429147,Ryôhei Fujii +87262,Claudio Contreras +54239,Ivan Oyco +1731243,Sigrid Strohmann +16042,Claude Binyon +1447427,Chung Sup Yoon +30533,Davis Grubb +141394,Richard Unekis +1404903,Becky Sullivan +1046600,Quincy Z. Gunderson +1574669,Paul Boutin +62515,Richard Hull +1655550,Walter Fountain +3219,Fred Fuchs +1391711,Jacinta Leong +1059586,Carlton Coleman +568611,Kjell Gustavsson +590704,Ernst Reicher +69174,Erik Balling +74099,Howard E. Baker +1745231,Don Ezard +1399515,Nick Rankin +1517110,Linda Muir +1463204,Tanya T. Wilson +1700856,Jack Wadsworth +1536032,Robert Mazaraki +1447383,Silvia Pompei +7752,Ron Goodwin +2656,Leonard Murphy +100037,Charles M. Kirk +1536949,Bob Kretschmer +1840482,Stephen Foote +1402037,Jennifer Dunnington +569912,Wim Post +63533,Camille H. Patton +1299465,Sacha Kamenka +15630,James Goldstone +1459110,Matthew Hart +1299143,Bill Wistrom +1748475,James Irvin Gates +47288,John H. Starke +6187,Aldric La'Auli Porter +58234,Gigi Levangie Grazer +2158,Robert Garland +38656,Jonathan Shteinman +124085,Bill Bozzone +1391068,Marilyn Wall-Asse +67807,Maxwell Anderson +1124455,Gerard Schurmann +56264,Peter Stein +1747927,Charlie Marroquin +576,Lee Daniel +19805,Lluís Arcarazo +1630536,Alan Bell +19641,Jean Halain +7748,Cornell Woolrich +14267,Arturo González +89166,Noriaki Yuasa +30103,Robert Arthur +1446682,David Taritero +15795,Harley Peyton +66455,Hanna Cwiklo +1076530,Paul Van der Linden +68032,Steve Zacharias +3393,David Newman +1625824,Petri +67535,Yvon Crenn +1093512,Edward O'Fearna +144063,Victor Heerman +9149,Peter McAleese +1532475,M.F. Murphy +68531,David McHugh +1015791,Karen Bromley +53188,Fabrizio De Angelis +1780209,Leah Sokolowsky +212671,Juan María Ruiz Córdoba +135847,Chang-bae Kang +578791,Eugene Blythe +37555,Rosa Ortiz +71330,Will De Los Santos +1621219,Richard A. Strieber +1407805,Toby Lindala +40468,Michael Penn +1454754,Laura Schultz +1391713,Paula Whiteway +1442,Jerry Garcia +1342600,Bob Hollow +1115253,Maril Davis +1541157,Annie Maurel +1550860,Otto Genath +76864,Luis Estrada +228583,Errol Nayci +20490,Nina Proctor +18091,Dave Lowry +22104,Pamela Power +1425589,Laurent Boudaud +1300911,Samart Tunsadee +57025,Ron Mita +1296339,Yu Yeong-jong +1553236,Stefano Marino +1287869,Kelly Golden +196436,Jane Hinton +98441,Elliot Paul +90527,Parnell Hall +1563886,George Linardos +1438602,Vince Zastre +92410,Anders Nilsson +1410127,Dominik Schleier +998190,Ralph Rainger +114408,Mary Parent +1520385,Israel Páez +76197,John Kearney +1392907,Leslie Huntley +65109,Kenneth Burke +81894,Dorothy Baca +40030,Gökçe Akçelik +1615582,Wei M. Zhao +50459,Becki Cross Trujillo +14412,Sherman Kell +1540807,Chang Hung-Yi +960431,Michael Novotny +69374,Pierre Even +1404286,Paul Stemmer +1431024,Matthew Wilson +5495,Michael Ondaatje +69769,Huo An Hsi +1400564,Josh R. Jaggars +1163372,Gwen Davenport +1555487,Stephanie M. Casey +70554,Alan Pasqua +7494,Sheila Jaffe +98751,Oscar Hammerstein II +1531562,James Ryder +16161,Kenneth Hall +29400,Jeff Kirschenbaum +20462,Wendy Brazington +69388,Kim Sun-min +42638,Stephen Halbert +1409219,Grigore Purcariu +65112,Stan Erdreich +18335,George Sluizer +7181,Robert K. Weiss +961093,Hal Olofsson +1138068,Douglas Peirce +89216,Robert D. Webb +1535130,James Aldridge +130141,Bill Siegel +91793,Franco Delli Colli +14356,Daniele Amfitheatrof +928006,Johan Phillips +51346,Don Jakoby +1575868,Sandes Ashe +1559099,Sakti Sen +1391761,Andrew Semple +66626,Patricia Herskovic +1414555,Matthew Kistenmacher +30391,Ben Nye Jr. +1380382,David Gaucher +8425,Richard Chew +76600,Tomas Backström +68829,Mustafa Kuscu +1462691,Denis Samoilov +92482,Lynn Salvatori +14461,Roy Alon +1010120,Lothar Schmidt +1855212,Christian Kennedy +60476,Amy Kaufman +1589502,Fiorella Lugli +16538,Jean Burt Reilly +14643,William A. Wellman +1009264,Christopher Nickel +1395358,Garf Brown +59440,Ben Gannon +1446996,Tom Barwick +70605,Manfred O. Jelinski +1536255,Damien Lanfranchi +1114503,Oana Giurgiu +1055084,Marcin Koszałka +38018,In-ho Oh +1320625,Andy Blake +1467348,Alberto Caruso +1476346,Lark Bernini +59837,Dan Schalk +1868859,Kathryn Barnhardt +1452435,William Munns +26988,Ken Pepiot +82413,Jack Conway +1438622,Jim Stacey +64096,Craig Harrison +72624,John Duigan +7716,Jackson De Govia +543201,Rick Roberts +736,Menno Meyjes +1581131,Enrico Accetto +1670823,Melvin G. Gordy +32984,Sarah Trevis +76256,Manu Van Hove +15314,Jirí Farkas +53965,Tom Willett +8164,Tony Eckert +15526,Larry M. Cherry +143327,Léo Paget +200992,David Chan +1181554,Alex Bailey +42995,Paul Hitchcock +1893236,Rolf Sigurd Brekke +1330243,Chloe Lietzke +1565941,Gary Clark +1644532,Chris Bond +1349969,Speed Ratliff +76253,Ruben Goots +1457644,Kim Eun-young +1464531,Jay Kriss +1239860,Curtis Mayfield +2031,Amanda Mackey +33468,Niccolò Lazzari +78376,Nozomu Takahashi +1329805,Melo Hinojosa +1044543,Nimit Jitranon +59954,Blake Snyder +1556556,John Aldred +909,Billy Weber +16651,Michael N. Knue +2360,Thomas Schühly +1733276,Elizabeth McGaffey +50871,Tom Luddy +6586,Barry Gifford +1370960,Paul B. Clay +1460643,Alison Parraco +1836192,King Orba +9645,Greg Gardiner +1426312,Tapio Salmi +1464970,Patricia Dobson +1407823,Terra Bliss-Alvarez +33028,Kubec Glasmon +23769,John Beard +1468019,Allan Miller +1087522,Susan Raney +42736,David Womark +51507,DJ Spank +1546115,Willie D. Burton +37078,Philip LaZebnik +1186279,Jacques Jouffret +14919,Burton J. LeBlanc +20539,Belinda Monte +228588,Elly Verduyckt +5707,Lili Fini Zanuck +4108,Don Stott +19813,Teresa Estrada +3649,Robert Priestley +197796,Betty Comden +1549170,Jill E. Anderson +3535,Georges Delerue +101105,Rick Bitzelberger +1655283,Andres Pollak +43385,Sarah Hauldren +1558214,Michael Clossin +57405,Jeff Schaffer +57091,Rob Kobrin +1029788,Kazuo Kishi +1327907,Jean-Pierre Paquet +1391751,Frédéric Amblard +54928,Rod E. Geiger +1426772,Jeff Olson +1586041,Ernest Adler +9850,Budd Schulberg +940630,Michael Robertson +1601620,Ren Messer +32633,Eleonore Adlon +211911,Andrzej Mularczyk +1552603,Jeff Glueck +79548,Michel Pirus +32179,Norman S. Hall +6883,Dick Bernstein +8643,Michael Herr +68459,Isidore Mankofsky +1701294,Randall Richards +1548129,James Hyman +21811,Jack Hofstra +1897881,Ken Bondy +1697184,James M. Walters Sr. +70850,Andrew Sipes +1384358,Vincent Gingras-Liberali +1174668,Francesca Joseph +1339071,Karola Storr +1630531,Mark Schatzman +53473,J.J. Hoffman +88024,Jussi Arhinmäki +27614,Régis Wargnier +1419805,Mary Shellogg +1581745,Ben Howarth +59929,Checco Varese +1802648,Albert Yavuryan +1283157,Andrés Franco +1473448,James Goldman +1344278,Pamela Alch +162545,Frank DeCurtis +1723847,Bernhard Karl +46297,Jay Russell +114597,Julie Anne Robinson +1418277,Reece Cliff +29471,Richard Franklin +1417338,John B. Schuyler +1409764,Catherine Hodgson +1417389,Suzie Frischette +1062066,Peter Mayhew +1338148,Daniel R. Jennings +63976,Marcus Miller +1404234,Ravi Dube +1041426,Patrick Kearney +1413946,Ken Lowe +6404,Otto Grokenberger +1513636,Derek Ball +9410,Derek Marcil +1611788,Claude Beaucage +6061,Emanuele Arnone +49361,Bill Bennett +123314,Shantanu Moitra +9198,Vincent Ward +1398874,Steven A. Lundgren +74694,Joan Smallwood +2161,Debra Hill +4313,Gordon Bau +931317,Alfredo Mañas +1412333,Keith N. Collis +60065,Michael I. Levy +1470070,Michèle Boëhm +41677,Wendy Weidman +1697255,Taguchi Yamaguchi +54212,William Fay +1123070,Ichiro Seki +1539388,Matthew Messinger +1115009,Norihisa Harada +1523409,Yvonne Puente +9750,Raymond Hakim +1626426,Kate Healy +81532,George Newman +27148,Rocky Lang +72996,Mike Frankovich +1589506,Amedeo Casati +4349,Albert S. D'Agostino +20701,Oleg Mutu +13583,Jim Jennewein +33459,Jean Lépine +137933,Nick Dear +1416988,Onni Tappola +1336191,Sam Page +1404842,Michael Kavanagh +1149269,E. Colleen Saro +19807,Albert Martinez Martin +17232,Air +70189,Marcia Nasatir +55982,Mark Shivas +94180,Charles Reisner +1150,Brian De Palma +65955,Pik-yin Tang +1767039,Kevin Watton +982919,Eileen Warwick +1402021,Gaétan Marsolais +19845,María Elena Sáinz de Rozas +1423404,Chris Barber +21870,David Duncan +1410276,Marisa Soneman +1192793,Michel Proulx +1430496,Taylor Tulip-Close +67458,Douglas Netter +6052,April Webster +50728,Andrew Licht +1781735,Peter Phillips +1337662,Earl R. Hurst Sr. +1739962,Mary Beth Smith +119662,Chang-Hao Pu +88646,Max Terr +1602864,Patricia Vecchio +1033129,Frank Sacks +1335042,Jaydene Maryk +1340123,Simon Frame +103511,José Luis Garci +2580,Madeleine Gug +1198658,Steve Cooper +1578662,Arthur Argote +414667,Betty Martin +1421268,Ben Lock +15078,Fred Baker +75885,Cory Van Dyke +1767063,Eric Hertsgaard +5058,Roger Christian +55007,Olle Nordemar +1117970,Mollie Kent +1800189,Julie Madison +964875,Simon Fawcett +124017,Robert Schneider +587803,Kimberly Adams-Galligan +1733793,Pierre Michel-Estival +1438588,Ide Foyle +21373,John Alan Simon +1460480,Adam Henry +1098470,Christophe Jankovic +1205469,Hamid Ghavami +554927,Daniel Shulman +28387,Aleksandar Denić +101373,Gabriel Pascal +1451405,Russell Evans +30268,Heinz Roemheld +24178,Malte Grunert +71901,Douglas Aarniokoski +91234,Eric Stacey +223992,Rebeccah Delchambre +1767014,Zack Judson +1559284,Toni Delaney +1441288,Nicola Irwin +1349187,Giuseppe Giglietti +1416990,Jouni Mutanen +1115632,Charles Rees +1335043,Andy Nieman +1404553,Moira Houlihan +41889,Stuart Matthewman +1868835,Owen Hooker +1532709,Michael Metzel +1780203,Rosa Palomo Glennon +24913,John Cabrera +1422982,Craig Clark +1393455,Eva Z. Cabrera +36043,Kevin O'Neill +4180,Kevin Wade +1459506,Roger Injarusorn +1613271,Gerold Bublak +1589725,Tim L. Pearson +56994,Bob Last +1513675,Arthur Berthelet +4032,Cheryl Carasik +61920,Brent Monahan +1478908,Heidi Seeholzer +1447310,Jeannine Berger +57295,Susan Ekins +1400385,Ned R. Shapiro +1765800,Steven Strong +3188,Victor Kempster +1446201,Joseph Thomas +865,Michael Bay +8092,Kim White +43144,Andrew Lowe +66456,Malgorzata Obloza +165843,Matt Selman +1464541,Mary A. Kelly +145843,Elizabeth Page +81044,Alexandre Bustillo +11308,Bunny Andrews +22085,Winton C. Hoch +1674658,Kathleen Kelly +122611,Susan Edelman +91069,Brick Mason +15433,Magdaline Volaitis +959549,Patrick Banister +91792,Harold E. Knox +10589,Denis O'Dell +62543,Alan B. Curtiss +18369,Craig Binkley +1448058,Jens Jonathan Gulliksen +1445986,Attila Dory +997339,Iuliana Tarnovetchi +1174852,Masaru Baba +9988,Glenn Salloum +1573079,Curtis Coyote +1193637,Susan Perlman +1452689,Patrick Mignano +1290451,Daisuke 'Dice' Tsutsumi +1418279,Mario Peraic +5629,Freddie Francis +957282,Suzanne Crowley +1392113,Céline Daignault +53708,Ira Sachs +3724,Judy Henderson +11815,Dan Kolsrud +554849,Guan Rui Xu +68691,Ori Marmur +1274798,Joona Louhivuori +2093,Steven-Charles Jaffe +1177337,David Breeze +1535449,Cynthia L. Hamilton +1232954,Lee David Zlotoff +63130,Jane Cecchi +83345,Gary Stockdale +1542408,Hahm Sung-Won +1866785,Lori West +1534508,Dieter Sturm +175229,David James +1558219,Joseph Paoletti +927790,Satoshi Takagi +965139,Nic. TenBroek +67619,Guy Green +57280,Somsak Techaratanaprasert +1197267,Burton Weinstein +1458105,Adam Avery +1706331,Luana Speelman +44807,James Signorelli +7435,David Mansfield +1309016,Walter Röhrig +957258,Dan Bishop +1547360,Cody Beke +1839461,Henry L. Bukey +1228124,Keith Rogers +14348,Lauri Gaffin +368106,Harald Molander +1242939,Nicholas J. Gray +19848,Wolfgang Burmann +1014917,Susan Luciani +1425338,Mariana Sánchez de Antuñano +122969,Edward Sedgwick +92114,Lesley Topping +1592,Eric Strand +1453185,Darren Michaels +1406852,Jay Immersi +20680,Jean Bréhat +14841,Bruce Gilbert +1461183,Michael T. Ryan +25756,Susan Glickman +1598750,Jacqui Hemingway +1355878,Sandy Gendler +88972,Kenneth Macgowan +43102,Dino Athanassiou +5164,Gail Mutrux +122671,Andrzej Saramonowicz +74758,Rasmus Heisterberg +1271077,Nelson Hall +10601,Joseph L. Mankiewicz +2286,John Alcott +1462855,Marcia Patten +1417676,Al Alleborn +6581,Richard Francis-Bruce +1462694,Kevin Wang +60157,Maya Lieberman +1339441,Tex Kadonaga +1401287,Lee de Lang +1478854,Thom Brennan +11091,Brett Ratner +7100,Danuta Kowner-Halatek +1680300,Khris Bennett +92302,Tom Reta +130895,Russell Thomas +63126,Chris Roland +1432469,Michael Scaglione +1397316,Frances W. Wells +5842,William H. Tuntke +929326,Richard Blair-Oliphant +1565150,Sara Dee +19835,Caitlin Acheson +1150425,Mogens Hagedorn +1459790,Adam Holmes +1582749,Aldo De Martino +35179,Adam Merims +3147,I. A. L. Diamond +1668730,Sally Llewellyn +11443,Hugh S. Fowler +1815500,Amy Wadrop +1115256,Michael Lim +1017426,Babette Mangolte +52311,Anthony Sherin +1377235,Russell McEntyre +91232,Margaret Donovan +19744,John Korty +19745,Thomas G. Smith +84960,Mike Molloy +80251,Edward Chiodo +139904,Martin Phipps +1292380,David M. Robertson +1708303,Sabin Paradis +10636,Errol Trzebinski +77972,Billy Johansson +60402,Steven Collins +1707452,Piroska Mihalka +1521661,Blanca Escobosa +33931,Milan Chadima +19291,Daniel T. Dorrance +20147,Michael Woulfe +1061981,David Leavitt +1093431,Takuji Yamaguchi +1188583,Ken Larson +1527,John Bailey +1395692,Wilfred Caban +66158,Katsuhiro Kato +68490,Arne Sultan +1402219,Ron Francis +31040,Akaradech Maneeploypech +21635,Jonathan Glickman +1544433,Natacha Louis +1551962,Bruno Dubet +1017377,Stephanie Holbrook +11906,Ulla Ryghe +1327909,Scott Wheeler +1672567,Jane Baer +1461153,Steve Harwood +1552014,Dyanne C. Deuel +1482062,Herbert Muhammad +1560886,Heikki Vuento +72412,Lee Muhl +567571,Sherwood Kiraly +1342628,Stuart Shiff +1813405,Hazel Washington +1406596,Marion Kolsby +1392129,John F. Reynolds +4188,Leslie Bloom +1573435,Václav Kocman +59443,Alex Nepomniaschy +1712104,Camille Geier +100538,David Douglas +1245922,Howard Ellis +1452321,Jane Covner +67865,Kim Secrist +1757600,Enrico Simi +25460,Gábor Piroch +150796,Pierre Peters-Arnolds +24257,Alan Strachan +119372,Paolo Curto +56502,Peter Spierig +79182,Laura MacNutt +6235,Mark Scruton +108147,Jeremy Knaster +62528,Oldrich Mach +908,Michael Tronick +35086,Sajid Nadiadwala +1436624,Angela Stauffer +1389593,Michele C. Vallillo +6545,Rémy Chevrin +1673560,John Lai +1329113,Lynda Foote +79113,John Tatoulis +4183,Celia D. Costas +11958,Peter Sova +1157061,Frank Mandel +86594,Linda Melazzo +1447317,Angelo Libutti +1392698,Gerard Long +1896005,Kim Roseborough +19912,Ute Wieland +1121742,Colleen Kelsall +1139092,Lisa Blok-Linson +93019,Adam Bhala Lough +131405,James W. Horne +1567923,David L. Parrish +90138,Taku Iwasaki +1398132,Jennifer Euston +1537801,Louise Sloane +40802,Jeremy Woodhead +75094,Tim Alban +230125,Jerrold Immel +1775961,Gordon Goodwin +1313090,Sharyn L. Ross +65817,Chris Fisher +1394753,George McCarthy +1115251,Tim Kinzy +1418487,Lorene Simpson +46620,Irving Ravetch +73684,Kazuto Sato +81887,Allen DeBevoise +1464410,Armand Baltazar +18828,Thor Sigurjonsson +58437,Blake T. Evans +55692,Arnold Laven +29280,Joseph Kish +1029320,Takeo Tomishima +117468,Bruce Nyznik +959,David A. Hughes +1410819,John Pommer +18321,Donna Zakowska +95219,Euripides +1432472,Mark Lane +95458,Gary Hardwick +568289,Jim Manzie +1560265,Kim Flores +22140,Kari Skogland +1447556,Claire Williams +1000493,Byron Vreeland +8279,Roy Barnes +1398881,Kim Rocco Shields +1612833,Fernand Moszkowicz +544594,Dorothy M. Johnson +1275495,Doug Maguire +73108,Sam Seig +1547239,Jacqueline Aronson +145797,Jack Haley Jr. +44763,Edward D. Wood Jr. +52533,Mariza Figueiredo +1556703,Alexandra Gonzales +7771,Al Greenway +35785,Siddharth Anand +93329,Stuart Lyons +1409308,Matt Jones +1423772,George McDowell Agnew +53908,Goran Bregovic +1471335,Isabelle Caillaud +1303185,Tilda Gáti +21309,Maverick Terrell +1407016,Allen Hartz +24792,James Lee Barrett +1536108,Dennis Yeandle +79656,John Schultz +95324,Michael C. Martin +1304381,Diann Wajon +1841291,Nick Evans +1454756,James Stimson +19006,Rachel Grady +1401746,Peter Hicks +33485,Ron Underwood +4781,Bernd Lichtenberg +1424458,Lee McKechnie +112877,Tom Devlin +1454659,Anthony Lawrence +5144,Ronald Bass +4102,Daniel Mandell +72766,Roberto Saviano +1817641,Mark Griffith +45835,Patty Long +37626,Patrice Leconte +129988,Aieisha Li +1420164,Mirin Soliz +34855,Ezio Frigerio +588114,Kenny Moore +1401604,Stacey Butterworth +70879,Branka Ceperac +3957,Terry McKay +1583003,Jack Jones +1532195,Katharine Kremp +1597882,Thom Conroy +183285,Max Wilk +1471048,Marc Breaux +36624,Elisabetta Beraldo +63434,Yu-Jin Gweon +1839468,Steve Becknell +1407705,Mark Zsifkovits +70691,Hai-shu Li +1896602,Todd B. Lawson +103444,Howard J. Green +1546556,Rick Hopper +1547035,Riccardo Bertoni +122348,Guy Jenkin +1337474,Wayne Ireland +11432,T. Hee +62658,Harvey Glazer +20148,Earl A. Wolcott +1285953,Marina Morris +1671233,Giorgio Baldi +46813,Michael Fitzgerald +965928,Frank Gutiérrez +53297,Thomas Dean Donnelly +14260,Alexander Fisher +1713522,Phil Segura +155266,Elliott Arnold +1575003,John Lee +14196,Agnès Godard +1234266,Janace Tashjian +28840,Gary Young +1633649,Jennifer Dolce +1087772,Vincent Monton +129718,Shana Feste +57220,John Gregory Dunne +1860717,Brenda Dabbs +11021,Elizabeth Wilcox +1407828,Leah Schweiger +37360,Henry Hathaway +1098738,David Hannay +1426773,Hal T. Hickel +1421724,Casey Cannon +1012329,Irene +1840845,Donna Lyn Greenbaum +1855058,Micha Klein +1402025,Giovanni Di Simone +1629423,Philip Rogers +1115092,Shel Silverstein +26196,Lesley Smith +34368,Marilyn Johnson +11779,Craig Stearns +3099,William Reynolds +1893224,Ed Bodily +1460721,Jay Redack +134382,Kyûchi Tsuji +12845,Arthur B. Rubinstein +1340003,Jonathan Miller +133421,Robert Mundi +958587,Michael Berg +1426781,Rob Vreugde +1405401,Mark Schmidt +1851720,Carrie Cashman +184499,Robert Kurtz +112657,Sandy Monesmith +4770,JoAnne Sellar +19253,Barry Moss +11243,Thomas Huhn +22115,Andrea Sperling +1738138,Anne Marie Bardwell +17165,Luciana Arrighi +980431,Ira Webb +1597208,Tim Durr +1409224,Dalila Dulgheriu +52016,Alix Friedberg +3058,Alexander Trocchi +1401735,Keir Beck +187067,David Allen +4667,Franco Arcalli +1007395,J.J. Makaro +7886,Jim Stewart +798,Tom Bronson +1568004,Charlotte Kersten +1304270,Denise Fischer +1447370,Tim Allen +19241,Jonathan Lemkin +1462453,Phil Symes +93923,Cedric Sundstrom +57457,Richard Woodley +89794,Maxwell Shane +1553263,Abbie Ludwig +69755,Brian Gascoigne +1674668,Lynn Andrews +1409721,Curtis Roush +1346938,Stanomir Dragos +196125,Dorothy Yost +40073,Craig H. Shepherd +1649577,Ramindhra +1570163,Jon Alexander +23870,Susanna Puisto +1401151,Rico Torres +27439,Míkis Theodorakis +1412704,Sarah Payan +64802,Henry Farrell +103412,Wallace Smith +935682,Willy Pogany +6589,Monty Montgomery +1429539,Ed Bannon +1462706,Michael Alkan +1598767,Nick Veziris +56989,Christopher Roth +1406922,Michael L. Fink +1027339,Farciot Edouart +1550775,Martin Allan Kloner +582417,Ray Nazarro +133329,Dan Millman +1374169,Michael J. Broomberg +1389133,Will Files +4986,Fulvio Morsella +1377140,Mable Lawson-McCrary +1521669,Armando Vargas +72074,John Scott Shepherd +62797,John Gulager +14864,Leonard Smith +78176,Dominic Brigstocke +60407,Ada Solomon +960077,Perri Gorrara +947741,Tony Allard +67608,Earl Kress +61088,Kimberly C. Anderson +1405375,Peter J. Hampton +1123040,Ronald H. Gilbert +69696,Daniel Algrant +1441245,Bill McMahon +56359,Lexi Alexander +661623,Edward J. Danziger +816,John Morrissey +1552542,George Bolton +118306,Abe Haberman +1841278,Steven Sherman +1053508,David Riker +25457,Adam Goodman +19282,Scott Stuber +1400559,David Bartholomew +1428556,Richard Bradshaw +40141,Paul Hsu +96126,Christina Weiss Lurie +8932,John Comfort +57396,Dennis Feldman +1243381,Michael C. Casper +1397693,Susan Lambie +214806,Bob Schneider +9836,Fritz Arno Wagner +583266,Jeff Levy +1015887,Badie Ali +1044885,Raymond Saint-Jean +1607047,Garance Van Rossum +3606,Bernard Knowles +1545300,Christian Christensen +1341138,Jeffrey J. Haboush +1412205,Frank Connor +1595460,John Bell +1521771,Dan Lupovitz +7379,Benn W. Levy +1402250,Martin Maryska +123777,Arthur Lawson +50662,Yoshinori Sekiguchi +64031,Adam Scheinman +8868,Theoni V. Aldredge +71762,Marykay Powell +1406895,Darrell K. Keister +9618,Sean Haworth +961211,Brian Froud +963336,Kris Thykier +1546851,Frank House +1663167,Stanislaw Sebel +10001,William Wyler +26172,Charles Le Maire +1115736,Bruce Stambler +1434638,Pauline Heys +1470206,Nurith Barkan +2596,Robert Fraisse +1469353,Gaby Hanrath +554079,Daying Ye +1613212,Mark 'Boylee' Boyle +82196,Elliot Ferwerda +1790546,David Noble +579405,Beau Borders +1222538,Andre Norton +1141636,Stephen Johnstone +1532253,Beatriz Kerti +1000102,Duffy Hecht +1553239,Victoria Carlson +1336666,David Niven Jr. +135033,Gavin Emerson +8885,Albert Wolsky +1404714,Jordu Schell +239,Jon Vitti +29226,Julian Jarrold +79163,David Magdael +123207,Valerie Abraham +40034,Mehmet Davran +117241,Samir Foco +1080823,Takeo Kawakita +91916,Deborah Latham +1158663,Vladimir Ballyuzek +21936,Franck Baldino +14917,Hazel Gordon +3868,Waldemar Bergendahl +143773,Herb Taylor +1116427,Charles S. Thompson +23543,Roman Osin +1424176,John Branagan +4418,Eraldo Da Roma +11812,Derek Dauchy +49730,Larry Brand +1899131,James G. Woodbury +1625826,Takeo Shirakawa +1391719,Derryn Pasquill +38650,Guy Di Rigo +1512155,Joseph Kite +16304,Brian Koppelman +23402,Hisako Suwa +1413954,Peter Eardley +5135,Rainer Klausmann +178338,Sig Herzig +1329529,LuAnn Claps +10391,Larry Stuckey +46876,Marik Vos-Lundh +58067,Margaret Sixel +1205375,Stuart Michael Thomas +1484329,Myles Connolly +70097,Court Crandall +43439,Scott Ziehl +1378199,Gordon Daniel +1608876,Stephen Sturm +19046,Daniel Loren May +13170,Paul Flinchbaugh +1455486,Jakub Dvorak +1575769,Scott Edelstein +1397855,Phil Schriber +75297,Karan Monkhouse +960282,Scott Plauche +1840468,Frank Conner +90694,Gillo Pontecorvo +1309331,Hajime Okumura +35787,Sunil Patel +3561,Pawel Edelman +138355,Ana Solares +115332,Meyer Levin +16615,Joe D. Mitchell +1655567,Stephen Elsbree +30139,Bernard Robinson +1222403,Patrick Barlow +1644923,Torill Ek +1187948,Phil Rawlins +66696,Daren Hicks +52962,Ivana Milos +1141700,Mehrdad Mirkiani +41704,Jack Pollexfen +1633998,Hettie Grey Baker +1868839,Stephanie Ito +1406930,Paul Shersby +1516278,Keith Abell +1018371,Duncan Sutherland +1408392,Ron Goodman +1546558,Bruce Nazarian +40545,Xavier Grobet +69228,Rolf Mittweg +11081,Jack Epps Jr. +20504,Carlo Rambaldi +69761,Charles de Meaux +7510,Harold F. Kress +1185178,Sophie Raymond +57173,Jeff Lowell +113075,Chuck Michael +1632,Robby Müller +1536578,Michael J. Travers +10807,James Kevin McGuinness +4017,Robert Kulzer +605,Michael Kaplan +1847909,Daiki Ohno +76249,Koen Mortier +1415883,Frank London +1276268,Jackie Pavlenko +22814,Richard Wenk +1217560,Brooke Kennedy +1594806,David Lis +12874,Lorry Richter +1447590,James P. Alles +122836,Kôzô Okazaki +25241,Chan Chi Wai +1374609,Jennifer Greenberg +142151,Nina Ramsey +19054,Renato Berta +79535,Ann Carli +1089646,Mario Montanari +8012,Alan Barillaro +1879199,Gordon Krause +1425869,Maxim Volodin +19409,Gene Ruggiero +1733277,Alexander Kahle +1392249,Jiri Husak +98835,Georgiy Daneliya +1322482,Maureen Osborne +1768399,Peter Christian Hansen +70864,Robert Hamer +61846,Kes Bonnet +1427553,Dominic Lester +57532,Andrew W. Marlowe +2100,Lawrence Konner +1089957,Bo Thörnwall +31256,A. Leslie Thomas +29907,Phil Karlson +60129,Susan Stroman +42384,Graeme Wood +70698,Mark Ciardi +1529565,Masanori Kakei +34933,Steve Gerber +60911,Paul McCudden +33176,René Hubert +59026,Peyton Reed +69571,Sidney Glazier +1020784,Tyler B. Robinson +8941,Jonathan Bates +1213180,Ute Leonhardt +1551053,Dwayne McClintock +1426783,Connie Kennedy +1532606,David Fencl +1851724,James C. Beeson +551520,Suki Medencevic +45838,George Parra +959524,Lance Rubin +1318447,Matthew Davies +4561,Christina Undritz +1445985,Kenneth Post +1624169,Gary Hill +51071,Tania Reichert-Facilides +1602860,Stephen J. Ullman +25320,Elio Scardamaglia +43840,Mary Roberts Rinehart +1418156,Ferran Mengod +1754420,Anthony D. Parrillo +8751,Steve Mirkovich +1567251,Matt Woo +1792644,Chris Telschow +63154,Virgil L. Harper +1123421,Margot Lulick +1176688,Franco Ferrara +19772,Paul Rassam +1172443,Merrick Morton +1538079,Ellen Wolff +83655,Julia Michels +1765276,Peter Kean +41472,Peter O'Fallon +1813303,Charles Paley +1586397,Dell Hake +67972,Giuseppe Moccia +1435576,Karyn Huston +1585877,Lena Lazzarotto +12403,Ron Eveslage +1178237,K U Mohanan +13887,Otto Hunte +1438595,Melanie Haines +44314,Doris J. Heinze +1365238,Thomas Penick +1402714,Angelina Borisowa +29598,William Shea +55519,Erik Waisberg +1483063,Marie Weiss +1452932,Joel Fletcher +99591,Duncan North +67468,Marie Vine +1551959,Aude Lemercier +57053,Mader +72379,Franziska Kummer +229503,Matt Greenfield +37618,Andrew Dominik +233293,John Ehle +7878,Darla K. Anderson +67649,Tom Patchett +44037,Sol Negrin +58706,Daniel Loewenthal +91834,Bill Anagnos +1462397,Metka Kosak +56911,Les Mayfield +1830810,D.J. Cleland-Hura +39110,Linda Spheeris +14695,Craig Baumgarten +21713,David Collard +90470,Cheol-hie Park +115849,Arthur Wimperis +57139,Robert Crawford Jr. +9409,John Ross +7103,Barbara Pec-Slesicka +1821198,Serge Riou +1424628,Dean Leslie +1806059,Khalil Daroudchi +10832,Gabriel Beristain +1309305,Masayuki Motomochi +1266989,Ken Woroner +967252,Eric Goethals +27743,Alex Poppas +1492959,Georges Liron +43679,Monique Durlacher +1581118,Joseph Briard +1449501,Gordon L. Day +103179,Davide Bassan +1342791,Helen Cooper +1272158,Ian Gibbins +140248,Steve Barnett +1567250,Thomas Edmon +57913,Zhao Xiaoding +76257,Glynn Speeckaert +1582866,Joshua Oppenheimer +27337,Peter Turner +1043374,George Doering +70889,Renate Seefeldt +47099,Anish Savjani +10150,Nicholas Musuraca +1567320,Rick Gillis +43899,Brad Van Arragon +1125825,Etienne Robial +1753069,Bryan Charboneau +143924,Paul M. Wagner +56887,Lloyd J. Schwartz +557759,Kimmo Rajala +1322423,Christi K. Work +62983,Guy Collins +1404837,Arlindo Vicente +1677174,Jorge Hernández Lobo +1995,Susan G. Pollock +94371,Ilya Ilf +4405,Monica Coleman +467,Natascha Wharton +22221,Jill Kliber +1483863,John Richardson +25548,Danny Lux +1271061,Doug Beswick +1000569,Tim Murrell +1431554,Remi Savva +1779880,Gener Ocampo +21158,Cormac Wibberley +49345,Mark Raggett +1424632,Tracey Brown +959257,Barbara Claman +1734651,Philip Murphy +1432032,Arturo Rojas +7310,Waldon O. Watson +81203,Doug Miro +18926,Casey Grant +1398102,John Scheele +73161,Frank Nissen +37187,Jean-Claude Petit +68381,Thom Eberhardt +54568,Laurent Vachaud +965416,Pete Goldfinger +91885,Alison Grace +3259,George Marquenie +552386,Ringo Cheung +1045806,Gemma Mascagni +954757,Fouad Said +10703,Michael France +1780237,Mike Ross-Trevor +1633121,Norm Lenzer +61398,Leo Benvenuti +1567960,Thomas Longo +1558697,Rick Thomas +10706,Anthony Waye +1896609,Dan Chichester +1404751,Tim Abbatoye +1461635,Tania Clarke +30578,Adam Holender +46621,Harriet Frank Jr. +1532478,Joe Lapis +1609516,Urszula Reklajtis +133555,Daniel Bird +224442,Béla Balázs +1415333,Elaine L. Offers +55313,James Kearns +15378,Carol Reed +552307,Shigeru Wakatsuki +26980,Bruce Bodner +1585874,Sven Asamoa +143893,Michelle Bühler +65110,Allen Lawrence +20846,Richard Byard +101531,Quentin Lawrence +3647,Helen Rose +26159,Frances Goodrich +1209349,Ebrahim Forouzesh +1317811,Juan J. Llauro +74963,William C. Foster +1377124,Gary A. Lee +195916,J. Benton Cheney +59880,Jack Hues +2095,Ralph Winter +1624608,Melanie Greene +31892,Ruggero Maccari +35739,Sanjay Sankla +1551494,Kevin Patrick Burns +1613276,Peter Guyan +1418153,Joan Sabaté +1325235,Cheryl Beasley Blackwell +65308,Mike Taylor +1453929,Andy Hass +1537580,Frantisek Cerný +1830814,Peter T. Schreiber +204150,Michael Avery +83906,Fulton Oursler +1407203,Debbe DuPerrieu +1176967,Yuji Kato +11053,Lars Jönsson +45622,Götz Dieter Wulf +56377,Bent Hamer +1572875,Paula Fleet +127203,George Bahr +89911,William T. Lackey +1177602,Marcello Girosi +3108,Alison Barrett +4232,Bob Yari +1191343,Lee James +57743,Glenn Berger +1399635,Ariel Velasco-Shaw +17636,Andrew M. Stearn +1556555,Clifton Brandon +8527,Deborah Lynn Scott +4762,Paul Thomas Anderson +17766,Jill Savitt +12118,Peter Schickele +1404902,Gordon Ecker +55611,Gustin Nash +64099,Sam Pillsbury +1183665,Marc Chabot +1853285,Lee A. Steadman +17886,Robert K. Lambert +1413196,Patricia Bercsi +937602,Mirjana Ostojić +120530,Milton Sperling +1462622,Christian Lignan +557528,Margie O'Malley +1551340,Clifford Booker +54603,Gordon Barnes +1623540,Jonathan Sacks +20774,Janette Day +8821,James Smith +62434,Frédéric Thoraval +12705,Gavin Mitchell +1581120,Olivier Servais +551924,Kathy W. Estocin +1807337,Tim Smyth +1672003,Ellen Havenith +11834,David Seltzer +41856,Dorota Roqueplo +1574638,Jane Kilkenny +30969,George Worthing Yates +1224,Ethan Coen +116370,Matthew Diamond +1677816,Gary L. Wohlleben +1304333,Óscar Maceda +1521104,Carol F. Doran +113155,Rod Park +21809,David Matalon +1109790,Chosei Funahara +33804,Riz Ortolani +1820600,Alberto Soffientini +4123,Hal B. Wallis +62643,Francine Jamison-Tanchuck +99919,Fumio Furuya +11577,Louis Née +1529006,Bryce Johnston +3958,James McQuaide +26990,Wayne Rose +1507577,Marvin Stuart +1892496,Mitch Friedman +1035076,Tom Hemmings +33036,Roland Suso Richter +16491,Diane Heery +1438430,Lou Ann Quast +1673524,Rick Allen +1067257,Somsak Srisawat +82127,Mark A. Patton +100014,Kaveh Moinfar +19272,Joe Russo +17990,Todd Kasow +1403396,Thierry Labbe +18387,David Finfer +1413096,Simon Allen +128405,Đorđe Milićević +1681341,Charles John Bukey +9772,Bruce Cannon +46319,Fibe Ma +61747,Bruce Morris +40288,Marie-Claude Gosselin +1019814,Jane Anderson +1710593,Tom Carling +1424782,Walter Newman +1887,Jack Golden Russell +1180954,Santiago Ojeda +52606,Dennis Lee +1616181,Colleen Nybo +1899121,Martin Aguerre +139767,Jonathan Richman +1449932,Jayne Buxton +1603320,Tony Hill +38546,Gerd Huber +1599487,Barbara Scherer +17749,Rogier Stoffers +72409,Dennis Harris +1727326,Kim Sullivan +1091871,Paul Nathan +17277,Lodge Kerrigan +44644,Robert Dornhelm +1521666,Luis Ruiz Tena +1595701,Kristian Miilen +568293,Hank Blumenthal +1559640,Donald Murphy +1401698,Andy Brown +112660,Christopher Mark Pinhey +46943,Kathleen Chopin +1019844,Vaughn Wilkins +956123,Sergio Véjar +124390,Michael Haussman +24717,Carl Davis +381120,Henry S. Rosenthal +1419800,Didier Levy +1637497,Quique Cañadas +1394571,Evan T. Chen +1881625,Tina Fallani +2761,Owen Marks +1555006,Matt Colleran +8970,Jim Clark +29572,Clara Beranger +1309,Mark Ordesky +1036998,Phil Peters +70901,Chai Kittikum Som +223391,Betsy Beaton +1673004,Alexander Key +65984,Richard Yuen +63132,Victor Botha +53895,Holly Becker +4809,Lothar Holler +1613300,Veerapol Atibaed Billy +1730424,Mari Lucaccini +45830,Danny Dimbort +1574636,Marc Andrus +62020,Jack Sholder +23333,Søren Gam +1551060,Brian Risner +1534634,Jerome Brownstein +1565149,Robert P. Cohen +1889490,Jitka Novotna +1304747,Trixi Rittenhouse +45496,William Allen Castleman +993814,Jie Cheng +1790567,Beth Bromley +24661,Dyson Lovell +1404533,David Sosalla +80526,Gray Hofmeyr +4006,Michael Hausman +1425823,Jerry G. Callaway +1187018,Lionel Selwyn +69734,John Merritt +31464,Melissa Skoff +75148,Frank Lipson +1547040,Lydia Bensimmon +1340359,Wingate Smith +62161,Brian Volk-Weiss +1526543,Melissa B. Miller-Costanzo +1042113,Philip J. Jones +74878,Tay Garnett +105976,Jake Kennedy +143786,Ollie Johnston +20039,Masakazu Oka +1662183,Amit Pawar +41897,Jonathan Sheldon +1369141,Nina Roberts +1870700,Daniel Windels +1404225,Lindsay Hallett +16590,Sheldon Lettich +1438593,Leeann Charette +1402024,Travis Call +1424451,Kris Nicolau +1330586,Morag Ross +1753763,Bill Young +34968,Douglas Curtis +20138,Roger K. Furse +78372,Hiroko Kondô +1544004,Julián Martín +1415626,Leslie McMinn +1011461,Jayson Crothers +6510,Jonathan Sehring +6202,Gabriella Martinelli +1192642,Lyn Freeman +1540853,Paul Dinescu +1102214,Sam Perry +1385306,Kathleen McGhee-Anderson +1521665,Beatriz de Anda +234677,Elmer Harris +31077,Toshio Nabeshima +18267,Larry Gelbart +1430398,Peter V. Herald +61357,Geoffrey Sax +49909,Richard Holland +41695,Richard S. Brummer +22470,Georges Garvarentz +21268,John Paino +94276,Nate Wood +1425513,Dina Eaton +11509,Jay Hurley +42119,Gale Tattersall +1136056,Michael S. Bolton +20169,Graham Place +15872,Martyn Burke +1075441,Sam Levy +141595,Haskell B. Boggs +1586,Adam Fields +57287,René Fallet +72264,Tim Orr +1414993,Heather Elwell +85763,Alexander Gerens +1899318,Matsutarô Utena +8942,Colin Wood +1417514,Michael Babcock +29646,Charles Jarrott +1550316,Vern Poore +1213,James Newton Howard +1013707,Grady Cooley +176402,David Ciminello +1397972,Leonie Prendergast +1055202,Steve Tymon +1629465,Utid Phromma +1620100,Geneviève Vaury +1518503,Diana Ladyshewsky +1724866,Blanche Aurore Duault +1899128,Charles Eagle Eye +589496,Pierantonio Mecacci +1746081,Nancy Booth +1334782,Josh Lusby +59424,Alan Elliott +1345408,Hélène Arnal +131186,Tetsuya Nakashima +1462616,James Fujii +1395276,Paul C. Babin +47373,Robert Alan Aurthur +30105,Frank Gross +961984,Aslan Nadery +1196351,Jeremy Rich +1398188,Paul Davis-Miller +55227,William B. Kaplan +44955,Lamberto Bava +932500,Adrian D. Worker +1338133,David McCallum +145565,Jessica Kaplan +1262529,Amy Coop +1434542,Ionel Popa +294,Mick Audsley +21644,Keith Forsey +998152,Lucio Trentini +1276272,Eleni Smaragdi +66552,John Bush +5625,Neal Edelstein +64423,Patrick Leung +1469352,Ben Isaacs +1361,Angie Lam +61578,Adam Bohling +261037,F. Hugh Herbert +1425848,Aleksey Filatov +60409,Cristian Corvin +52264,Rituparno Ghosh +1398087,Nicky Kaill +1544931,Douglas Pellegrino +1021403,Louis Horvath +1705131,Joe Rystrom +1674648,Michael G. Richer +44632,Ina Siefert +59971,Meg Cabot +14642,Nick McLean +1360101,Sarah Monat +1368865,Alan Robert Murray +1551151,Jason M. Moore +1724244,Brad Diebert +1410304,Raymond Chen +1815490,Scott Fassett +1546572,Moto Hata +1866780,Paul Arthur Hartman +1435164,David Mitchell +1438610,Jochen Engelke +54419,Ryan Kavanaugh +6448,Arthur Penn +1714703,Sara Mateos +3454,Arthur Ibbetson +11475,Maher Ahmad +1418491,Kim Berner +1678639,Gene Goins +35514,Wendy Chuck +109700,William O. Steiner +2333,Harun Farocki +1830648,Belén Arsuaga +117989,Shannon McA'Nulty +37039,Michael F. Barrow +1483951,Katie Rielly +67411,Stan Dragoti +30494,Jack Murray +12066,Sandra Rabins +1501515,Michael Spolan +9617,Katherine James +1435071,Michael Mills +69660,Charles Addams +24888,Olivier Dazat +1618316,Raúl Serrano +52748,Robert Frost +65001,Shawn Schepps +1893233,Rick Baily +1997,Charles Leavitt +1587738,Vincent Romaine +1767779,Malcolm Beale +1860710,Janet Davidson +85855,W. Howard Greene +84941,John Hawkins +1416982,Jyrki Rahkonen +44118,Cameron Stevning +20223,J.C. Spink +1557598,Hugo Ocana +1672759,Andy Napell +1611806,Daniel Ross +1603348,Barry J. Hershey +59857,Tracy Long +56535,Marcus Trumpp +1537245,Veljko Despotović +12087,David Lipman +3725,Florian Reichmann +20776,Christopher J. Bradshaw +8921,Philippe Turlure +1599484,Nidzara Mehic +413,José Salcedo +123997,Dustin Lance Black +57016,Tomas Eskilsson +1857469,Ward +1535429,Robert Norin +14513,James G. Stewart +17439,Mike Mills +1337464,Dominick Tavella +1601518,Manita Niyomprasit +33096,Paul Maslansky +1571782,James D. Tittle +11424,Felipe Fernández del Paso +91813,Franco Rispoli +1406137,Pam Fuller +1456054,Wick Finch +1360097,Robert Troy +961143,Lesley Vanderwalt +1057973,Paul Colichman +62997,Peter Cartwright +21795,Virginia L. Randolph +1684385,Susan Dukow +1394752,Mandy Tankenson +144850,Amaury de Nexon +52791,Harley Tannenbaum +1338894,Dolores Rubin +1381536,Charles Kephart +46293,Pascal Ralite +3954,Richard S. Wright +141824,George Jackson +93844,Eliza Pollack Zebert +88019,Kim Finn +2995,Stuart H. Pappé +66812,Craig Thomas +161824,Ronnie Rondell Jr. +25238,Laurent Courtiaud +1085561,Brendan Somers +15524,Ruth E. Carter +1303337,Rudolf Santschi +1120222,John Bryant Hedberg +52446,Mason Novick +1566952,Alexandru Belc +16492,Franco-Giacomo Carbone +1461646,Joe L. Cramer +1050929,J.W. Kompare +568693,Jymn Magon +1676840,Michael Zimbrich +1565131,Louise DeCordoba +59747,Steven Douglas Smith +1599795,Aydogan Yildiz +71018,Andre Morgan +1171245,Cameron Birnie +77971,Eli Nilsen +27154,David Hennings +64855,Todd Busch +66898,Rick Finney +32340,Kamel Krifa +993624,Jane Levick +118944,Cindy Marty +1391116,John Jay +1404835,Jae Pak +1429249,Michael Green +65688,Jim Drake +94762,Michael Kanin +1550073,Mark Pappas +194568,Barbara Peeters +15428,Ted Berner +1459642,Lisa Leonardi-Knight +1525196,Aissatou Parks +1030724,John Ashker +71556,Ray Angelic +71089,Jaideep Sahni +137349,Miklós Jancsó +1413042,Alex Gladstone +1708278,Guy Pigeon +1429524,Vinny Golia +1166085,Piotr Sobociński Jr. +7439,Mark White +59953,James A. Lebovitz +58186,Catherine Bailey +1661844,Howie Murphy +147594,David Irving +138639,Giancarlo De Leonardis +84345,D. Cory Turner +1753766,Michael Thomas +1421696,Rick Willoughby +170258,Richard Boden +9822,Adam O'Neill +1497451,Herbert Lebowitz +1464521,Richie Ford +25826,Mario Bava +1406923,Steven T Puri +50083,István Békeffy +102450,Scott Cherry +55613,Luis Sequeira +17908,Dorothea Holt +30632,Alain Jessua +1402109,Laura Kamper +1724276,Eric Cameron Hosmer +1401788,Steve Ingram +1731245,Anders Lexne +19312,Jonathan Larson +1561482,Steven Simons +87322,Aku Louhimies +33611,Jeff Rothberg +3354,Philip MacDonald +1535874,Charles Maxwell +1602592,Shigenosuke Okuyama +1538767,Guillermo Orbe +12050,Anne Kopelson +1407347,Joe McCusker +1551525,Kimberly Kimble +1324926,J.B. Owen +113137,Jeremy Hunt +1441356,Clay Shier +1830643,Vázquez Hermanos +1389586,Jean Chan +1409717,Stephanie Girard Hamelin +17916,Charlsie Bryant +149977,Ian Fordyce +7129,Rudolph Grey +231003,Robert Bischoff +29452,Murray Shostak +1678655,Carol Norton +65285,Jiping Zhao +9956,Chris Marker +1391702,Jake Callihoo +32259,Guy Farley +1467004,Alessandra Bergero +1431053,Chris Anderson +1485788,Nicole Paradis Grindle +60623,Barbara Kearney +4125,Carl Jules Weyl +1479277,Oscar Mazzola +19598,Youji Takeshige +1406614,David Parker +71774,Dan Mudford +54284,Jacqueline Bouchard +1413100,Janet Yale +132873,Jo Heims +1303220,Lori Danziger +29483,Adrian Hodges +71345,Dave Davies +1470538,Michael Davis +9974,Glenn Randall Jr. +1634776,Monica Swann +1432030,Michael Haro +1394565,Michael Reitz +1897884,Jay Beattie +3767,Peer Raben +1438571,Bruce Fortune +73048,Takemoto Mori +60401,Phillip B. Goldfine +1727313,Giovanni Gabriele +1439884,Moussa Haddad +52838,Jeff Scheftel +1864758,Noel McCartney +1421660,Zsuzsa Stenger +1424460,David Flaherty +1525578,Kaz Kobielski +1397382,Karen Keyes +1386913,Greg Maloney +1595282,Taivo Tenso +31870,Ana Guerrero +1424940,Etienne Braun +54827,Dave Meyers +1609383,Melissa Dietz +239415,Linda Francis +35630,Timothy Healy +8678,Oliver Scholl +10533,Oscar Saul +68090,Thomas Reilly +148810,Cliff Nordberg +1154771,Christopher Hudson +1554339,A. Anthony Cappello +1172912,R.D. Bansal +1613772,Leslie G. Hewitt +1387523,Thana Spillios +1471947,Chris Carreras +147332,Fabrizio Aguilar +1154,Giorgio Moroder +1418803,Frances Richardson +1674659,Josh Dorn +37504,Aurelio García Tijeras +1424454,Anne Dixon +1440852,Kenny Monger +63983,Roger Nygard +1300340,Rondi Scott +21514,Chris Boardman +1389587,E.W. Bradford +172891,Christopher Pearce +1398935,Petr Konrád +1417021,James Ellis +1905116,Veronique Fletcher +1465101,George Ellis Doty +1446652,Lona Jeffers +33577,Danny Nowak +30466,Ryohei Fujii +84648,Brent Huff +6037,Colin Strause +964672,Linwood Taylor +1899124,R. Ellis Wales +30174,Pandro S. Berman +56884,Rick Copp +1132471,Kazuyoshi Sawaji +58912,Matthew Hastings +21374,Allison Cowitt +1439726,Stephen Enticott +66808,Marshall M. Borden +31858,Sue Blainey +133005,Juan José Plans +128596,Solly Marx +82592,Vladimir Valutskiy +1118105,Mikolaj Jaroszewicz +1129805,Alan Roderick-Jones +1657438,Joseph Basile +1445989,Gillian Richardson +1511139,Amy Ephron +1436795,Ricardo Viñas +1392722,Reg Garside +1034754,James Hambidge +1570749,Marc H. Katz +70555,Ricky Strauss +1812184,Yvonne Hegney +12167,Dulal Dutta +1332186,Ivana Primorac +1037760,Paul Hyett +56678,Clare De Chenu +1603673,Kadir Yalvaç +1532212,Harriet Donington +18510,Rodrigo Lopresti +60503,Lisa Mae Fincannon +1635246,Garry A. Harris +67457,John Copeland +1214085,Lawrence Hertzog +33625,Daniel B. Clancy +27676,Robert Markowitz +59811,Bear McCreary +25362,John Van Tongeren +408745,Ethan Canin +1602149,Jirí Dufek +944,Arthur Max +16614,J. Dennis Washington +96253,Wells Root +133325,Karin Gist +139531,Uwe Kolbe +9423,Elmo Weber +1165681,Margaret Buell Wilder +1529481,Joe Stinton +970199,Kim Jennings +1619142,Gerald W. Alexander +1868291,Mark Ashton Hunt +15802,Gregg Fienberg +42379,Zlad! +27899,Vicki Baum +1360100,Hamilton Sterling +1412276,Horacio Rodríguez +79534,Agnès B. +118254,Frank Paul Sylos +39594,Mario Ventenilla +1661574,John Peter Melendez +1432464,Ed Drees +117232,Craig Irving +1393882,Nick Powell +61419,Matthew Jon Beck +67915,Vance Burberry +1361170,Richard Blanshard +1569117,Robert Wiener +21103,Tim Chau +548432,Patrick Cyccone Jr. +1566437,Jalal Saed Panah +1532326,Alyson Hancey +1390523,Sean Garnhart +4584,Robert Jones +1421726,Michael Shea +21747,William Arnold +1672758,James E. Webb +1123071,Yuuji Shimamoto +1094646,Cesar Inserny +1378839,Bob Penn +1102570,Summer Shelton +30856,Tom Fraser +87323,Katja Kallio +75441,Chris Murray +144015,Lex Neal +1112,Hugo Luczyc-Wyhowski +39054,William Alwyn +59810,Reece Pearson +937278,Groupe Dziga Vertov +1600111,Jeff Brinker +97164,David Sherwin +1521681,Marco Arredondo +1344749,Jack N. Young +3148,Charles Lang +1871326,Michael Kreple +37274,Michael Whyke +8285,Richard L. Johnson +41410,David Rose +1157581,Lawrence N. Taubman +1707102,Larry Markart +18176,Gilles Marchand +1397314,Richard Dean Rankin +8621,Arthur P. Schmidt +3191,Risa Bramon Garcia +68633,Giovanna Romagnoli +110261,Seamus Tierney +1373620,Steve Painter +1055500,Nat Moss +34510,William Monahan +11712,Joan Bradshaw +78137,Philip Nutman +11813,David Foster +1308569,John Fox +1344817,Marvin Weldon +1462925,Beth Miller +62872,Katja von Garnier +1644157,Vikram Dharma +224612,Dan Cadan +1296336,Lee Seong-hun +396538,Andrew Weiner +1605362,Ray Recht +1067439,Tom Held +1453569,Pierre Lorenzi +65163,Ed Mitchell +1871219,Ross Edgar +117732,Alex Gordon +26097,Jeanne Lapoirie +69674,Leonard Armato +1012678,Gerda Diddens +8428,Aggie Guerard Rodgers +23213,Harold Becker +11273,Sarah Horton +58375,Andy Fickman +12092,Steve Pilcher +1546880,Dave Samuel +63713,Martha Coolidge +74160,Toby Young +1721835,Mishka Cheyko +1350133,Tom Davies +79251,Mark Alan Duran +1182637,Jaroslav Vlk +1718548,Ricardo Broadus +3529,Antoine Duhamel +13322,Buster Ambler +585248,Eli Cohen +119492,Howie Horwitz +1275386,Russell G. Medcraft +470995,Sayombhu Mukdeeprom +12016,Bob Wyman +1123201,James Tyer +1395258,Joe Viskocil +57752,Heinrich Hadding +20716,Nohemi Gonzalez +224984,Francis Lacassin +1536508,Ellen Totleben +587200,John Howley +1347759,Lori A. Balton +1402040,Larry Kaplan +64538,Alain Wisniak +19606,Jean Negulesco +1827969,Thomas Bianco +1016700,Betsy Morris +124504,Nat Holt +1368866,Tom Ozanich +238298,Don Schneider +1798032,Karim Kakal +25800,Toshirô Mayuzumi +32601,James Harry +499852,Jon Neuburger +1441270,Bill Burns +14393,Jay Cocks +235141,Sam Greenlee +1558218,James Hogan +1459116,Diane Roberts +1540340,Frank Perl +24509,Chris Bremble +1098846,Norimichi Kasamatsu +1779875,Zhiqiang Ding +1117945,Marianna Rowinska +27556,Ira Deutchman +77731,Lisa Meagher +1425990,Mary Stuart-Welch +1445972,Joss Williams +59416,Matt Berenson +63459,Aaron Griffith +1377237,Judith M. Brown +14041,Bob Kensinger +1567969,Gloria Ciraolo +1462611,Rui Albene +1249962,Warrington Hudlin +33223,Hal Roach +1258215,Robert Cooper +65824,Thomas Betts +18789,Barbara A. Hall +168041,Barney Slater +1879209,Chandra Beard +1597380,Maurice Foley +958706,Tami Reiker +68424,Michael Powell +1447122,Jocelyne Bellemare +545053,Aaron Katz +19248,James Kirkwood Jr. +5779,David Wasco +22157,Diane Dancklefsen +13265,Franklin J. Schaffner +31985,Renato Cinquini +1825212,Betty Adamson +43161,Mary Alleguen +63125,Géraldine Polveroni +6328,Jack Gill +60781,Bob DeBrino +1815843,Donna Castricone +185777,Kelly Kimball +1594168,Con Dempsey Jr. +1877142,Rebecca Bennett +113702,Wolfgang Reinhardt +84103,Terry Chambers +76869,Jaime Sampietro +1730019,Chris Gandois +30724,Laird Koenig +1404214,Stephanie Flack +1120174,Linda Miller +1158156,Marcos Martínez +1493088,Celine Catalaa +1579408,Ian Kay +65431,Choji Yoshikawa +1780204,Terry Butler +98101,David Hamburger +1534437,Dawn Freer +1767043,Stephane Portal +13235,Alexander Payne +57632,Uberto Pasolini +1885292,Ottiero Ottieri +1397483,Cheryl A. Tkach +1440740,Christopher Schultz +1583799,Stuart Clarke +945172,Mark Cowen +1416579,David M. Ice +30680,Samuel M. Sherman +52112,Steve Carr +150737,Art Riley +1767031,Larry Scholl +1708298,Sylvie Théberge +1566288,Eddie Evans +76195,John Dixon +31094,Van Toffler +1448050,Annie Elvin +96252,John Alton +1462919,Nikki Clapp +80604,D. Scott Lumpkin +1346863,Alessandro Centofanti +1662182,Chaudhary Amalendu +1431104,Scott Irvine +996618,D. H. Lawrence +11233,Michal Leszczylowski +1670367,Tom Krueger +31206,Clay Campbell +91090,Brian D. Lucas +1691,Shunzo Kato +11302,Edward S. Feldman +1461337,Tanya Calderon +1396418,Anthony Mo Marais +59654,Tamara Delano +21342,Diana Phillips +1713399,Colin Eckart +1377234,Hilda Saffari +114964,Howard Pine +1454410,Daniel Lindsey +134331,Kurt Weill +1198731,William L. Kuehl +1437609,Sharon Lynch +27,Eric Roth +13290,Randall Duell +1402083,Shane Haden +1350235,Alessandro Troso +1427543,Gordon Hayman +1098867,Amanda Klein +1594914,Bill Barr +1376512,John Zemansky +1746082,Lucinda Walder +203521,James Barron +11446,E. Clayton Ward +60862,Linda Favila +1553255,John Root +73717,Robert Alazraki +138618,Gary Rizzo +9813,David Benioff +14522,Louis Morheim +130837,Stewart Hendler +32002,Paul Dannenberg +15434,Lou Carlucci +1889080,Hans Ekbladh +41676,Rebecca Mangieri +1437884,Fung-Yin Cheng +27042,Lucki Stipetić +29548,Curt Courant +1110343,Lauren Lazin +1555489,Dawn Ascher-Trevino +91048,Denise Shaw +1328410,Matt Diezel +25316,Ennio De Concini +1183453,Jonathan Herron +12963,Lynn Siefert +31646,Michael Browning +80826,Stuart Provine +108231,Timm Hannebohm +27040,Nicholas Lundy +1746085,Alfonso Tafoya +22608,Joachim von Mengershausen +1347646,Andrew Collins +29534,Thomas Russell Sullivan +69613,John K. Carr +1537185,Michael Mullane +122131,Fran Roy +1585443,Pascale Dillemann +1413843,Laura Schiavo +168214,Judy Murdock +1333902,Georgia Simon +1619107,Derek Jan Vermaas +223242,S. Todd Christensen +1769439,Maurizio Guarini +1559285,Barry Richardson +8168,Brian Magerkurth +6359,John Mortensen +1353148,Justin Kohn +1392239,Paul Curtis +119771,Bill Coker +1667273,Kevin Hyde +64660,David Leuschen +21560,John P. Bruce +15244,Ehren Kruger +28635,John Jacobs +136515,Rob Sprackling +1406812,Ulrich Posselt +35741,Alyson Fouse +43623,Bill Whelan +6615,John Mighton +1341815,Sydney Gilner +1278182,Chong-jun Yi +936014,Anthony Fabian +123270,Bengt Palmers +97755,Charles Burnett +81400,Per Schreiner +70997,Edward Anhalt +1441285,Francis Mallette +1035835,David Carretero +1667222,Michael Rubin +1147905,Gonzalo Matijas +63940,Rosanne Zingale +1010787,Ean Tang +63960,Clive Parsons +590466,Peter O'Brian +96169,Lise Lense-Møller +413453,Jon Savage +60250,Barry E. Jackson +42028,Vittorio Sodano +1121874,Cristen Carr Strubbe +1062890,Robert Maier +1441163,Craig Reardon +96745,Stephen Milburn Anderson +73597,Richard Brick +1544363,Pani Ahmadi-Moore +111843,Seamus Byrne +29788,Richard Sherman +1323112,Iñigo Navarro +25645,Hirokazu Koreeda +1446198,Ralph Wikke +59875,Irving H. Levin +1027513,Jack Priestley +15406,Bill Lancaster +79920,Norman T. Herman +1603663,Hakki Yazici +1733132,Mo Henry +55904,Tristram Miall +1826993,Eugenio Fiori +58470,Donald De Line +3778,Carlo Ponti +44121,David C. Lawson +1437641,Alan J. Mintz +1631429,'Chema' Hernandez +58066,Jay Friedkin +1474505,Godfrey A. Godar +1121428,Elaine Fallon +1673811,Mike Splatt +4285,Florence Fontaine +143430,Ham Tran +65305,Roy Baird +1594,Michelle Morris +6778,John Guillermin +112858,Masaki Adachi +1177814,Frédéric Garson +1586382,Pavel Voracek +1841639,Joyce Etheridge +5882,Jacobo Lieberman +1263769,Markus Czyzewski +66185,Matthias Deyle +1594913,Robert Hill +70886,Salvatore Argento +1799864,Darsi Monaco +1534483,Jack Blackman +16960,Valerie Faris +58439,Cliff Hayes +57560,Michael Beugg +76981,Delmer Daves +115891,Chris Hegedus +56058,Charles Edward Pogue +70897,Andy Garfield +66187,Jacques Steyn +89689,Kim Fupz Aakeson +1120514,Patrick Pasquier +1455432,Terence Nelson +4906,Sig De Miguel +49828,Christof Wahl +1461382,Doug Ball +1316856,Marco Morante +77750,Benedict Carver +1059168,Ricardo Sarmiento +35394,Joëlle Hache +1532321,Linden Snyder +46082,Geoff Hubbard +41846,Christian Henson +58438,Brian May +1868279,Donald G. Helderle +1552061,Craig A. Brink +1659775,L.V. Clark +931819,Glen Murakami +1451418,Carole Fontana +1317617,Alette Kraan +583262,Jeanne McDonnell +1780227,Gordie Merrick +49929,William Self +1519283,Sven Budelmann +105822,Anton Leader +29637,Bernard Herzbrun +34892,Pamela Pettler +36695,Tim Hatley +71100,Tony Thatcher +1408316,Lisa J. Levine +65681,Joe Renzetti +9797,Danford B. Greene +33302,Richard Bluck +1428470,Christine Blundell +20608,Hannes Hubach +1018463,Grant Myers +78521,Kathy Li +1163920,James Cawthorn +1410186,Amy Beresford +100018,Mastaneh Mohajer +1576032,Michael Denner +1558206,Matthew Haskins +72206,Robert Pulcini +2508,Ron Wilkinson +1629467,Thaweep Suvagondha +1001719,Phillip J. Bartell +1560899,Michael Camello +293939,W.P. Lipscomb +1842603,Peter Spiropoulous +1546437,Michael Andrews +76014,Anya Colloff +1209356,Mahnaz Ansarian +1598757,Pierce P. Shaad +1598736,Gordon Brown +62583,Raymond Stella +1552521,Brian Avery +81825,Don Jurwich +1409877,Stephanie Lowry +1120593,Bill Sheppard +1409748,Ardyth Cleveland +61522,David Baca +12970,Bruce Green +18389,Robert W. Cort +12454,Michael Galasso +1581141,Arnaud Esterez +199542,John Drimmer +232062,Joe Adams +1512157,Robert Spurlock +1273342,Steve McClintock +1421237,James Sarzotti +1414174,Scott Bobbitt +1018480,Carl Sprague +5717,Peter Ackerman +39649,Chuck Castleberry +113826,David Pomier +1822,Charles Correll +147407,David Chan +1394026,Alex Meddick +232313,Armand Lohikoski +1537497,Susan Shin +1305288,Nityananda Datta +1392081,Randy Kelley +1733789,Samuel Cohen +23550,Valli O'Reilly +1155073,John Ruane +1265230,Elvis Jones +1559098,Aminyanath Mukherji +105802,Doug Pray +1408183,Michael Toby +1082918,Allan Scott +16844,Dorothy McKim +1410578,Lisa Maher +1335873,George Hull +605481,Serge Bourguignon +14346,Channing Gibson +1544426,Xavier Cholet +40035,F. Scott Fitzgerald +3557,Charles Dickens +42054,Carlo Maria Cordio +88974,Frank Gruber +14727,Moss Mabry +1485504,Zoya Dzyublo +79064,Bo Jönsson +16829,Todd Robinson +1012985,Jorge Alvarez +85805,Howard Brown +110638,David Cragnotti +1082084,Pjer Žalica +53640,Amy Vincent +1364410,Julie Feiner +1341849,Marina Chavez +66718,Alan Mak +83070,Scott Marshall +121873,Debra Granik +1100798,Milton Gray +969465,Nigel Holland +9408,Frank Gaeta +75510,Craig Monahan +2148,Charlie Clouser +1160653,Sonya Lennon +1453175,Cliff Latimer +1613318,Anne Badalato +1441283,Bruce Frankel +2089,Earl Felton +24953,Ash R. Shah +928097,Max de Wardener +1525577,Kristen Paynter +19710,Adolfo Bartoli +1080049,James Vieira +1424925,Peter Hawkins +1599051,Danute Inchute +20646,Gabriele Muccino +1407668,Casper Lailey +16334,Fabio Cianchetti +1552890,Pei Dieleman +1551226,Lee Blasingame +1551694,Terry O'Bright +88923,Ronni Kern +50099,Shuki Levy +1553743,Peter Lindsay +18127,Sheila Paige +34527,Kiki Morris +103570,Roger George +10249,Volker Schlöndorff +8333,Eddie Romero +77967,Carina Brattvik +42951,Rita Branch +10235,Meike Kordes +1407901,Tyler C. Daum +1141373,Doug Seus +1749137,Philippe Pickford +6371,Pippa Cross +1468469,Jennifer Sims +92112,Herb Pilhofer +1083065,Hayedeh Safiyari +11878,Tessa Posnansky +1512784,Frédéric Vallet +34512,Ivo Hušnjak +1409244,Jackie Lee +13778,Guy Trosper +1545391,Michelle Cunniffe +1159503,John Moore +933415,Heinrich von Kleist +567200,Millen Brand +1378436,Robyn Coburn +45667,Eric Faucherre +1678654,Kristen D. Chidel +460,Tom Stern +132530,George Sessions Perry +1408706,Chris McGeary +20219,J. Mackye Gruber +81020,Benjamin Ross +91800,Luciano Volpato +1704939,Douglas Ryan +1461152,Brian Dowrick +1433705,Erik Olson +1394748,Stephen Gilbert +1311378,Manolo Mampaso +109358,Lorenzo F. Aristarain +1547579,Mitsuzô Ueda +84939,Richard Wormser +148059,Prosper Mérimée +72801,Milan Býcek +53394,Steve Bing +1554041,Bruce Fowler +1128252,Aimée Peyronnet +1418151,Alma Casal +1389572,Heather MacDonald +1117946,Diego Zanco +1025704,Jo Thompson +1549428,Kevin Harris +1424622,Stefanie Boose +88458,Robert Ellis Miller +70632,Akira Suzuki +15431,Neal Martz +1524175,Jody Asnes +1404834,Miles Teves +1723388,Annemarie Aaes +24667,Reginald Mills +46589,Mary Claire Hannan +1401704,Tony Cole +978114,Jean-Marie Blondel +1521694,Víctor Morán +1204004,Michael Perry +1820601,Pier Emilio Bassi +1258107,Polly Leys +1681698,Douglas W. Miller +60151,Tom Costain +45848,Christian Kaplan +17794,Paul Ghirardani +1398980,Dave Robling +30013,LeRoy Stone +1400329,Karen Maarbjerg +61337,Simon Martin +1078475,Henri M. Kessler +18224,Fred Capel +183220,Christopher Ryan +1708344,Rick Stribling +5242,Hannes Nikel +36997,Jean Wiener +1484239,Wah Chang +1400089,Sam Breckman +1574665,Jason Iversen +1619092,David Oliver +22607,Veith von Fürstenberg +59355,Artie Kane +78153,Jeffrey Grant Rice +1547483,Yûgorô Imai +1439611,François Girard +41082,Chris L. Spellman +158858,Rosemary Anne Sisson +1326769,Jay Du Boisson +1304,Gabriella Pescucci +1185253,Lester Wm. Berke +1642499,Anna Mass +3105,Richard Portman +1357,Christopher Doyle +1544412,Guadalupe Cassius +51852,Lewis Morton +39726,Steve Richards +1023290,Michael Spence +105780,Chris Munro +1147355,George C. Webb +1168870,Robert Gordon +1270175,Anthony S. Lenzo +14647,Cyril J. Mockridge +67526,Diane Baratier +1404359,Mathew Waters +10443,Fern Buchner +14597,Gaspar Noé +1523481,Rob Simons +4981,Edward Warschilka +1424167,Cameron Frankley +1404846,Jonathan F. Styrlund +1504460,Sammo Hung Stuntmen's Association +87171,Bryan Hitch +577468,Wayne Pashley +220518,Andrea Nix +1483721,Mary Ellen Winston +1400106,Sonny Plescia +32490,Alan D'Angerio +20505,Patrick Massett +956249,Steven P. Wegner +34859,David Ensley +7793,John Bloomfield +1780710,Rahul Chandrakant Thakkar +70323,Marie-Hélène Dozo +12761,Eddy Joseph +33029,Harry Ruskin +1468621,John Nollet +6151,Marianne Slot +1551727,Steve Cantamessa +1708231,Philippé Lavigne +17219,Dana Belcastro +936015,Helen Crawley +1725887,Louis Marion +197020,Deborah Dalton +1478860,Jeff Matakovich +16469,Hope Hanafin +1280899,Rabi Ranjan Maitra +906,Rick Simpson +23861,Michael Cowan +65515,Phil McIntyre +1307424,Saida van der Reijd +1401109,Chris Haarhoff +62708,Katrina McCarthy +13165,Ezra Dweck +1534518,Mark Rathaus +1072736,Maria Tancredi +33195,Ian Gracie +57954,Doris Pilkington +1552020,Adam Pinkstaff +71730,Bob Gordon +13050,Tim Monich +1723680,Tery Lopez +947016,Rachel Peters +597,Jane Feinberg +1534468,Kenny Schneider +21055,Eric L. Beason +233134,Yannis Smaragdis +1518006,Diane Mazur +1482890,Ryszard Melliwa +1552176,Richard Austin +1202,Steven Reuther +79181,Bias +995906,Darren Goldberg +43142,Mary Callery +1114932,Alfred W. Crown +1595271,Bill Orcutt +44481,Michael Nankin +1638257,Conor O'Sullivan +110564,Maurice Sendak +1472325,Phyllis Alia +1454757,Damon Bard +59930,Jason Ballantine +1391094,Crayton Smith +1602840,R.L.M. Davidson +30522,Robert Carson +38412,Tara Timpone +119237,Shuji Inoue +54318,Charles Gillibert +1550729,John Bartle +40779,Roland Patzelt +27156,Christiaan Wagener +29858,Desmond Crowe +278228,Yael Bergman +1531943,Maurice De Packh +1546829,Barrett Hong +10570,Joseph M. Caracciolo Jr. +67,Erich Pommer +11035,George Schaefer +9351,Zigmund Gron +1335045,Graham Sutton +3311,Priscilla John +1438621,Junichi Hosoi +1858346,Daniel A. Mondschain +41133,William W. Norton +1727295,Rich Andrade +10829,Patrick J. Palmer +232314,Reino Helismaa +56852,Tad Stones +51690,David Garrett +89849,Chris Graham +37023,T.K. Kirkpatrick +10418,Walt Lloyd +1529777,Grant Hicks +1748683,Rex Grignon +1057,David M. Horton +1378173,Ralph Nelson +71397,Liao Pen-Jung +30130,Hans J. Salter +1080311,Sandip Ray +1455289,Andy Krish +1427466,Andrew Conder +8674,Martin Hume +127627,Sherman Todd +4769,Daniel Lupi +119080,Newell P. Kimlin +4249,Donna Isaacson +958460,Rick Gentz +52113,William Wolff +1600630,Warren Clute +70308,Ken Hughes +7308,Rita Riggs +1526478,Chris Duffy +1328150,Russell Christian +131130,Simon Gantillon +8866,John DeCuir Jr. +1409225,Rob Bertola +113596,W.L. Luk Janssen +1544436,Séverine Barré +1379963,David Isyomin +120177,Arthur Roberts +1407662,Sandra Shuttleworth +1399071,Hans Bjerno +61128,Mary Hyde-Kerr +1849997,Mark Anderson +1148737,Nicolas Lemercier +1567958,Adam Jordan +11469,Tim Philo +7104,Krzysztof Wodzinski +26962,Jerzy Lipman +1535413,Fred Merusi +13321,John Box +19129,David M. Walsh +21830,Miljen Kreka Kljakovic +132626,Sarah McMurdo +4150,Bernie Pollack +39781,Sarah Maur Thorp +1470204,Paule Mangenot +1767017,Stephanie Taubert +19665,John Boorman +1444961,Luigi Andrei +1597179,Tim Scheu +1345718,Jason Blumenfeld +68037,Jon Connolly +57245,Kerry Kohansky +1772960,Longyu Li +40170,E. Preston Ames +62460,Jean Giraud +1540831,María Guerra +1605706,Jenny Frenck +49286,Lawrence Jordan +1608877,Ted Yonenaka +1531279,Unsun Song +1834089,Margaret French-Isaac +59683,Dinah Collin +1424457,Eddie McKechnie +20227,Felix Andrew +1821180,Dustin Brown +58720,Trudy Ship +73026,Doug Steeden +70980,Robert Pirosh +1606805,Bruno Brunacci +1897889,Lennon Bass Jr. +1753783,Pia Mehr +1418314,Jo Weeks +931858,Aaron Sims +1402047,Mary Frances Eglin +116077,Dave Jeser +1282736,William Maher +60411,Andy Horvitch +50538,Gilles Taurand +27220,Luca Tranchino +1377259,Stephan Konken +17847,Samson Mucke +1148736,Henry Shrady +7130,Scott Alexander +1399503,Maeve Slemon +1535099,Edward Karam +19544,Ron Friedman +1737233,Ann Culotta +1559396,Bobbie Sierks +1805174,Terry Ziegelman +1398171,Rozalina Atanasova +30313,David Katznelson +79161,Mark A. Kolars +1141534,John Richards +40776,Sarah Meyer +54527,Luis Berdejo +117154,Mai Iskander +55742,Tanja Koop +1125478,Francesco Di Silvio +66848,Bo Rasmussen +1548000,Karolyn Ali +1584234,Liala Allain +1333607,Hartsell Taylor +1322479,Cheri Lovedog +53354,Igor Jadue-Lillo +1176038,Dianne Finn-Chapman +1733730,Warren Lever +1441044,Cataldo Galiano +107911,Nick Burnell +50953,Michele Clapton +1438914,James Harris +16595,Pier Luigi Basile +80949,Aristomenis Tsirbas +1555195,Carrie Lisonbee +552000,Shizuo Yamanouchi +60045,Eric Bross +1632421,Giacomo Guerrini +10968,David Heyman +1406844,Jean-François Drigeard +38657,Jay Sanders +57109,David Wechter +10717,Peter Biziou +1376514,David Lewis Yewdall +1851733,Kenneth Carriveau +999,Todd M. Thaler +36656,Sarah Greenwood +1885,George Clayton Johnson +1228010,Tom Joyner +11819,Graeme Murray +71577,Matthew Gray +71878,Steven Gonzales +1562444,Nelson Stoll +146668,Ian Cook +44057,Steven Jacobs +61758,Peter Young +154,Walter Murch +1407898,John Ladd +1435688,Carol Schwartz +960963,Dena Roth +30081,Neill Gorton +59858,Ffion Elinor +92345,Bryan Belair +1435377,Allen Foster +2386,Brannon Braga +1535951,Neal J. Anderson +1400324,Pit Paffen +1566166,Mark Lewis +1704110,Laurence Duval Annaud +29877,Claudio Gizzi +1552188,Phil Hetos +11887,Brad Silberling +1574666,Andra Bard +1175850,Bruno Calvo +555890,Raymond Griffith +1118847,Jacques-Louis Nounez +46355,Neil Grieve +1455463,Aravind Jayaraman +14923,Laird McMurray +1899316,Mitsuzô Kubo +75307,Harry Yates +1671232,Bice Brichetto +1393396,Patti Perret +6146,Vibeke Windeløv +1472288,Mitch Horwits +72448,Adam Gorgoni +1400371,James M. Halty +16641,Howard Jensen +21186,Povl Kristian +4236,Lauri Faggioni +137193,Jacqueline Saint Anne +1739538,Genevieve Ferderber +67389,Roger King +72640,Gary Huckabay +1399993,Richard A. Ventre +1827958,Robert Donaldson +1206191,Scott Patton +2402,Claudie Ossard +930628,Lori Silverbush +1084800,Eden Barr +10816,Paul Rubell +7530,Rachel Pfeffer +1556700,Daniel Allan Carlin +1511803,Debbi Bossi +1567303,Victoria Rockwell +1424612,Hayden Collow +1574634,Stacy Weddington +37361,Anatole Litvak +1401291,John MacGillivray +582624,Alan Siegel +1447759,Malte Zurbonsen +1400336,Jose Luis Mendez Ramirez +1413106,Jason Heapy +1092613,Ragnar Grippe +1609156,Irene Gibbs +1440811,Gary L.G. Simpson +959258,Claude Wallace +1123080,Eric Strausser +14678,Joseph Ruttenberg +80466,Dorothy Macardle +1809,Dylan Tichenor +2836,Kimberly Peirce +72669,Georges Benayoun +68441,Steve Gainer +43789,Seth Holt +1121228,Kenn Collins +9059,Malcolm Brown +1364801,Kevin Banks +88122,Roger Cowland +6100,Margaret Ménégoz +88020,John Hakalax +11818,Michael Diner +1551523,Robert Ulrich +15220,Eric Newman +1560277,Gregor Wilson +7735,Ellen Mirojnick +1529457,Maritza Garcia-Roddy +1417,Toshio Suzuki +1415122,Cheryl Ladrillo +107454,Henry Cornelius +121052,William Dorfman +4346,Ted Tetzlaff +1472293,Ed Tapia +1581162,Tilly Creswell +89084,John Howard Lawson +1280394,Jay Wertz +1780224,Andrea Lakin +31524,Derek York +1803,Mary V. Buck +1117854,Masato Matsuura +40307,John Maybury +15730,Peter Morgan +83093,Jimmy N. Roberts +103668,Jules Schermer +30869,Mitch Marcus +78322,Akira Toriyama +14554,Humphrey Cobb +1567974,Kristine McPherson +1375604,Janice Ierulli +1468127,Natalie Wilson +1457835,Gigi Williams +7105,Leszek Wronko +72284,Séverine Barde +1561103,Gary Moreno +1453173,Bette Iverson +92329,Steve Artmont +61415,Sandra Tsing Loh +1409831,Gary Jay +2073,Gail Stevens +27485,Chip Proser +2419,Jean-Pierre Jeunet +1457305,Georgia Lockhart-Adams +1352422,Kim Foscato +1815291,Thad Weinlein +1394755,Edson Williams +943313,Paul Kirby +1392116,Masako Masuda +1575773,Bridgitte Krupke +1444922,Dawn Jones +80960,Deboragh Gabler +1317670,Liesl Deslauriers +1139424,Philip Austin +932181,Kerwin DeVonish +34895,Jeffrey Auerbach +55475,Patrick O'Brian +1603310,Richard G. Almo +66707,Brett Morrison +1190650,Louie Elias +1338830,Don J. Bassman +33038,Alicia Remirez +20801,John Fusco +27879,Vincent van Warmerdam +1402074,Hernan Otaño +75299,John Osmond +143915,Julia Evershade +57047,Hendrik Hey +1526479,Bob Myers +1334807,Muffin Green +13223,Jim Passon +8822,Rose Smith +1462685,Mike Laubach +1339436,Kevin Cross +43412,Bela Segal +97015,John Rawlins +1599490,Tom Weber +66771,Pan Zhizhong +1338883,John Inzerella +2723,Adam Greenberg +33672,Arturo Smith +79185,Adrien Morot +1315648,Kyle Sweet +1840415,Daniel Frisch +73464,Carolyn Marks Blackwood +551552,Akihiro Itô +20949,Stanley Neufeld +5821,Eugenio Alabiso +1552179,Tricia Miles +37302,Georges Franju +56339,Yoshiaki Kawajiri +607081,Harry Lee Danziger +1117860,Xiaoming Yan +1723384,Jesper Find +14410,Bert Haines +16498,John Hartigan +1188916,Erik Howsam +6184,Todd Hallowell +1391699,Doane Gregory +1356138,Aleshka Ferrero +1448998,Darrin Drew +62279,Betty Berberian +1733771,Simon Warnock +53457,Michael Cerenzie +1663907,Aldo Pace +1046565,Subrata Sen +17674,Carla Hool +1619105,Jen Hutchinson +1674655,Abby Callahan +19319,Jamie Muhoberac +17633,Rob Marshall +1222910,Sara B. Cooper +1574646,Joe Ardent +29014,Nick Osborne +14381,Robin Beauchesne +50942,Gregory Poirier +1394103,John Colley +85768,Sam Weiss +12065,Penney Finkelman Cox +58111,Bertram Vetter +40749,Jean Bourne +36842,Rudolf Jugert +144180,Zülfü Livaneli +1534829,Joel David Warren +72178,Ivon Simoné +59425,Mickie Paskal +1340738,Kate Jesse +116122,Jennifer Gallagher +111906,Bernie Kukoff +141487,Stuart Adamson +9882,Don Guest +1462703,Chris Wagganer +21273,Gérard Sterin +1423834,Joe Colwell +40753,Christian Schaefer +9263,Barry Kemp +1028847,Martin McGartland +1568005,Viktor Eisenbach +1603658,Ridvan Ülgen +14779,Dale Hennesy +90305,James L. Aicholtz +1547530,Michisaburô Yasuda +1758629,JoAnn Knox +1595484,Glenn Corbett +1745248,Ian Neilson +85767,David Kramarsky +1349303,Alfredo L. Del Cueto +9419,Benjamin L. Cook +2702,John Seale +1483225,Mitch Gates +1753075,Fred Ionson +43104,Robyn Klein +127445,Napalee +175646,C. Gaby Mitchell +1582968,Lionel Salter +1779890,Michael Rule +1172042,Zakir Hussain +11445,Travilla +1515867,Carol Lefko +59420,Caryn Mandabach +939486,Sidney Perell +1470939,Jeffrey D. Hoffman +1447149,Laurent M. Abecassis +1534556,Hossein Jafarian +1070088,Tony Volante +1330122,Ada Levin +1403490,Alex Gibson +40240,Mundell Lowe +56850,Toby Shelton +84348,Jason Blum +92376,Marko A. Costanzo +1424894,Camille Friend +96746,David Chameides +3960,Tony Pierce-Roberts +1378168,George Watters II +1529590,Derek Grover +230247,Lou Robin +43559,Jeff Abberley +59803,Brenda Chapman +937622,Charles-Axel Vollard +995462,Gregory Plotkin +4403,Philippe Rombi +1403423,Harry Muller +4772,Cassandra Kulukundis +69101,Stanislas Syrewicz +566668,Michael M. Silver +23437,Yuriy Poteenko +20524,Jean-Marie Dreujou +172,Michael Winterbottom +1581122,Philippe Piron +1610052,Filip Stylinski +47786,Géla Babluani +69906,David R. Hardberger +1263634,Leith Ridley +6044,Mindy Marin +8564,Elisa Tolomelli +11625,Lisa Zeno Churgin +1134158,Saša Lošić +14132,Nicolas Roeg +33281,William S. Beasley +2152,Alan Ball +30520,Dorothy Parker +24297,Jacques Saulnier +1801862,Krzysztof Szpetmański +1553,Maurice Pivar +1328407,Elaine Ramires +1533647,Robert G. Wayne +1422972,Laura Burrows +1458353,Jay Fukuto +9043,Louise Mingenbach +58209,Rick Bota +1389590,Jay Riddle +1246937,Ira Barmak +1408380,Ed Cross +234793,Yves Angelo +1655541,Irving Stimler +11300,Tim Alexander +32806,Paul Carlin +1005504,Richard Stratton +1772961,Shinya Kawai +1595991,Liina Trishkina +14335,Alexander B. Collett +82197,Ken Kamins +966022,Matt Villa +1849866,Brian Orce +1547520,Bill Orrico +1233342,Jim Serpico +1127909,Billy Badalato +1407222,Alex Panagakis +951099,Cynthia Hargrave +1325886,Martin Gendron +1613199,Iris Paschedag +57985,Barbara von Weitershausen +1403738,Gary Deneault +1039116,Phillip Blackford +240293,Carlo Bernari +1104278,Stephanie Wong +1344256,Robert L. Anderson +4308,Russell Harlan +32602,Jeremy Simmons +2950,Robert Elswit +1451299,Matt Jones +1328387,Richard Campling +550957,Jason Mok +1389611,Gretchen Engel +1425867,Vladimir Plyatskovsky +1409696,Robert Parle +165734,Joy Ellison +67632,Peter Markle +13030,Frank Ceglia +1885091,Raymond Tarabay +1380630,Bill Brodie +968175,Doug Huszti +12033,Jonathan Sela +83091,Dean A. Zupancic +957581,Patrick Dodd +1723342,Dmitriy Malich +1521650,Norman Christianson +232959,Baran bo Odar +1190448,Erin Smith +1857016,Diana Strauss +7189,Michael Thomas +1398187,Frits De Jong +5718,John C. Donkin +3264,Rudd Simmons +1330561,Robert Bavin +1603314,Virginia Landis Albertson +1391707,Bill Booth +983118,Larry McConkey +9079,Hugo Riesenfeld +4716,Virginia Cook-McGowan +27722,Érik Orsenna +6053,Paul Hotte +1610057,Beata Rolkowska +6504,Allyson C. Johnson +1403707,René Guillard +1840721,Barbara McCullam +1408799,Jack Whittaker +1549227,Kent Baker +1173613,Sui Lai Kang +69015,Mikkel Berg +1856496,Briton J. Petrucelly +1864798,Blake Archer +10642,Colin Grimes +50349,Rene Belmonte +1029783,Aleksandr Kuprin +1746084,Larry Abrams +1540852,Gociu Sorin +1550225,Christian Guillon +19920,Bruno Grass +133082,Lester A. Sansom +1815476,Aaron Stannard +130087,Joseph Santley +1389672,Chris Large +73078,James Berg +10519,Joseph A. Mitchell +1549188,Elaine Maser +113853,Jan McWilliams +2529,Ronald R. Reiss +35770,Yash Chopra +73424,Ken Hixon +14971,James M. Cain +111743,Katsumi Furukawa +108782,Stephen Storer +1588683,Rod Conder +68994,Ron Fricke +76193,Geoff Burrowes +552200,Yun-Ling Man +85960,Paula Fairfield +1418823,Jay M. Hirsch +15348,Daniel Mindel +688807,H.M. Coakley +457,Albert S. Ruddy +92334,Alicia M. Tripi +67687,Arthur A. Ross +9933,Pea Fröhlich +61486,Tom Nursey +20063,Donna Gigliotti +70855,Michel Kelber +94268,Rashane Limtrakul +1538241,Richard Dama +63984,Mike Macari +579430,Daniel Brisseau +1462698,Laura Neeff +11959,Tessa Davies +1231398,William Schifrin +71882,Todd Williams +1185198,Graham Meech-Burkestone +1031810,Kerry Ann Carmean +570268,Cliff Ruby +1541461,Matt Biffa +1464344,Daniel R. Chavez +176980,Bobby Garabedian +578788,William P. Wingate +190112,Peg Haller +48501,Stefan Hansen +85841,Edmund L. Hartmann +13189,Steve Bowen +95848,Robert Foulkes +60627,Terry Kelley +20567,Marc Butan +1481828,Mary J. Carlson +1049272,Adam Valdez +687,Gloria Katz +1836074,W.C. 'Chunky' Huse +16552,Fred J. Brown +101227,Flora M. Gordon +1304249,Bobo Sobotka +60131,Leah Zappy +51311,Anne Bauchens +79854,Tori Parry +1774560,Jeff 'Doc' Porter +1353257,Paula Boram +29405,Christopher Rouse +51808,Tôru Takemitsu +1389601,Deirdre Horgan +82151,Jeanne Duprau +1398105,Sébastien Drouin +1443655,David Berry +67021,Nancy Roberts +1416979,Markus Degerman +41154,Robert Weitman +1581135,Paul Biwer +1484706,Glenn Forbes +20271,Charlotte Sawatzki +112400,William Girdler +19271,Anthony Russo +1123072,Haruhide Ishiguro +1458067,Brian Gunter +29821,Monika Münnich +1544414,Armelle Mahé +1436522,Paul Shikata +1345973,Richard Cowan +1581144,Mascha Litterscheid +1458691,Toni Barton +62923,Ray Bradbury +1529007,Hugh McKenzie +76274,Dieter Vanderbeke +1043831,Amir Mokri +68771,Leigh Dunlap +1043428,Al Gramaglia +1870693,Babak Forutanpour +49681,Paul Mason +1215672,Fred Toye +1476175,Steven Meizler +1885598,C.V. Blackburn +29705,Jerry Belson +1540857,Andrea Kurpjel +1465066,Penny Crawford +1081187,Winfield R. Sheehan +1532595,Simon White +1537510,Glen Magers +1753060,Debbie Cooke +20556,Bertrand Tavernier +1358075,Nancy J. Hvasta Leonardi +1762648,Earl Perque +1392143,Bob Moore Jr. +70638,Just Betzer +1744424,Paul V. Perkins +7654,Leslie I. Carey +9456,Gary D'Amico +18205,Eric Schlumberger +62045,Art Levinson +1553247,Christian Klikovits +962907,Jonathon Cliff +1545591,Harold Noyes +106629,David MacDonald +148426,Agnes Christine Johnston +954445,Shirley Rich +1445868,Beverley House +1460672,Jake Rice +1549320,Marek Wronko +4652,Christine A. Maier +1670361,Catherine Owens +13184,Erik Dehkhoda +1432596,Derek Casari +69167,Juzo Itami +58048,Mark Amin +2949,Alexandre Desplat +1459723,John Ruggieri +1422994,Bill Weiner +1661578,Greg Johnson +2484,Steven Rosenblum +1420146,Tysuela Hill-Scott +1521813,Ginés Carrión +1571766,Bert Beatson +61140,Sara McCudden +116585,Gonzalo Delgado +1421265,Carrie Giunta +66708,Michael A. Pierce +1421722,Tim Storvick +1602326,Ildikó Makk +1399141,Michael Minkler +109703,Elisabeth Sanxay Holding +1603306,Matthew Kern Atzenhoffer +102344,Robert Skotak +38700,Jason La Padura +1616772,Jeff Andrus +67887,Jan Sardi +18257,Robbie Greenberg +9621,Peter Chesney +151454,Gerald Perry Finnerman +1855087,Mike Pope +1613281,Nick Heckstall-Smith +47077,Roland Anderson +1434221,Hugo Peña +58135,Christopher Holmes +1428271,Michael Davis +61497,Robert Tonino +6032,Christoph Kanter +587444,Horatiu Malaele +56021,Danny Cohen +40747,Harvey Harrison +1383561,Thomas Carnegie +1430210,Verne Caruso +15729,Cameron McCracken +33413,Robert De Grasse +70292,James L. Stewart +1313707,Tony Curtis +64864,Clyde Geronimi +47286,Andrew A. Kosove +1424629,Michael Mutombo +543891,Svatopluk Havelka +1889,David Holmes +1398460,Mark Allen +1713404,Michelle Lee Robinson +571175,Dalton S. Reymond +65558,Lee Rich +7496,Dan Leigh +1355,Zhenyan Zhang +63121,Michel Fessler +57581,Neil Marshall +11658,Gail Levin +1423204,Christine Hart +38229,Renié +982927,Adam Roffman +1792656,Bob Harper +1762445,Hector Freeman +1403418,Tommy Tancharoen +11234,Fredrik Abrahamsen +56125,Andre Blay +96842,Roeland Kerbosch +1444807,Jean-Marc Lentretien +17217,Mike Topoozian +1735712,Pascal Roy +1282701,Gilmar Fortis II +1436196,Dennis McCarthy +41409,Jacques Mapes +29310,Jerome Epstein +1401368,Amy Jo Hoppenfeld +66861,Andrew Colton +14559,Arthur Schramm +27467,Geli Albaladejo +1305615,Anna Czerwatiuk +57650,Jeremy Iacone +116513,P. G. Wodehouse +1408839,Patricie Soptenková +33238,Piotr Sobocinski +76708,Dawn Snyder +1537579,Ladislav Hanus +25470,Kazuo Koike +1438601,James Summers +999284,Carl Thiel +20435,Itai Tamir +37933,Peter Steinfeld +51950,Robert Bierman +68391,Phillip Goldfarb +1602167,Olga Cechová +1411293,Peter Sorel +98442,Robert H. Planck +9573,Peter Deming +4651,Niki Mossböck +38247,Liam O'Brien +1705306,Damian Eggins +589974,Lorey Sebastian +1406572,Jerry DeCarlo +39651,Jean-Pascal Beintus +111970,Yuzo Kaneko +1805171,Alex John Cuthbert +9154,Martin Walsh +34672,David Elliot +24960,Kristan Andrews +1817632,Summer Ramsey +62117,Nicole Brown +146600,Ignas Jonynas +1389624,Jay B. Richardson +86051,Joshua Logan +66766,Bong-Chui Hong +21797,Peg Cummings +1349489,W.W. Lindsay Jr. +1491246,Tom Walls +1459115,Phyllis Ferguson +563116,Shonagh Jabour +1676547,François Amado +60475,Preston L. Holmes +1041622,Brandon Christopher +5015,Brian W. Cook +35744,Greg Grabianski +1129275,Amit Berlowitz +110642,Kristy Scanlan +1727296,Jacques Grousset +568711,Tom Stern +46713,George Zuckerman +1538314,John Glaser +1546258,Gabriel Pellon +74319,Gary D. Roach +1191211,Mike Mickens +136232,Curtis Burch +78833,Charles J. Stumar +112631,E. Michael Hewett +83092,Gary Zink +1372884,David Crone +550585,Toshio Miike +35954,Oscar Lewenstein +1407233,Clare Hallworth +1357062,Scott R. Fisher +1316933,Andreas Kongsgaard +6993,Charles H. Joffe +115913,Koichi Kawakita +1665669,Clare Davis +59529,Joel Collins +8566,Marc Beauchamps +48500,Max Berghaus +1227173,Robin Harlan +30761,Moray Grant +1828172,Michael Krehl +46863,Charlie Mole +17211,Randall Emmett +82905,Tadao Tanaka +66118,Marshall Todd +11694,Doug Liman +1478283,Lynn Harris +1423395,Hasse Billing +33829,Terrence McNally +1406846,Guillaume Renberg +8337,Terry Liebling +1335881,Andy Foster +51954,Marcia Shulman +1426761,Sherry Linder-Gygli +566666,Michael Kleiman +37948,Brad Anderson +6055,Victor J. Zolfo +1411856,Thomas Milano +1441390,Krystal Kershaw +578324,Thomas A. Reilly +131791,Vlad Yudin +1413092,James Morioka +1220996,Ian Rakoff +50354,Philip Schulz-Deyle +1319040,Couper Samuelson +1630525,William Nation +28156,J. Peter Robinson +81264,Nick Hirschkorn +1367679,Kelly Cronin +1477838,Jean-Marc Vasseur +29205,Armand Leo +15491,Rebecca O'Brien +1558193,Phillip Ellman +114410,Jon Mone +52015,Mari-Jo Winkler +57894,Olof Källström +1962,Alain Poiré +1251307,Tim Goodchild +21727,Rose Kuo +2666,Philip G. Epstein +8746,Benedict Fitzgerald +10494,Bill Conti +1371115,Diana Valentine +1029069,Pekka Lehto +25822,Marcello Gatti +1441367,Chris McMullin +35146,Susan Block +108152,Gary Preece +1745229,Shirin Town +1568006,Kurt Paetz +3995,Jeff Dawn +71506,Rémi Bezançon +93002,Petri Kotwica +1446675,David Boyd +112835,Cary Glieberman +2045,Ferne Cassel +1020501,Dana Burnet +75104,Stephen Elson +1046571,Indranil Ghosh +568610,Lasse Ulander +1311466,Abel Facello +7586,Simone Grau +1744051,Michael Mills +9578,John Foreman +6233,Liora Reich +1641455,Mimmi Törnqvist-Zedell +37038,Larry Groupé +69139,Shem Bitterman +16573,Denise Horta +51509,Philippe Piffeteau +10850,Kevin Feige +74671,Robert Hiltzik +1534435,Sonja Roth +92203,Bruno Philip +69392,Charles Walters +40040,David Munrow +1511704,L. Andrew Stone +85276,Deborah Love +34555,Kelly Marshall +12721,Jack Harris +1410327,Ian C. Ballard +79624,Don Boyd +32604,Susan Shopmaker +1387370,Clinton Cavers +19240,Andrew Neiderman +136400,Everett Sutherland +45621,Ladislas Fodor +61251,Kristina Lyne +64537,Anne David +1545528,Rita Parikh +1598756,Donald Colafranceschi +75476,Tabrez Noorani +27541,Alan Greisman +59644,Joshua Wexler +70692,Gary Chase +1432039,Adam Avitabile +1095768,Islin Auster +21647,Gérard Krawczyk +1544396,Estelle Tolstoukine +1345593,Charles Deenen +995423,Sandra Cunningham +1342658,Frederick H. Stahly +65993,William Wu Wai-Lap +1562214,Richard Charles Greenbaum +20820,Sid Ganis +1673531,Ray Evans +21591,Amy Wells +1610869,Chris DeLaGuardia +1554751,David Claessen +56224,Bob Larson +30293,Arthur Rosson +1453612,Gabriele Zucchelli +1405236,Thomas Boland +1411614,Petr Ostrouchov +83063,Coree Lear +57872,Adam Leff +1360779,George Westmore +1827968,Ronald Arthur Jansen +1095834,Guillaume Letellier +75572,Steffen Aumueller +1392127,Patrick J. Foley +1827973,Ron Wengler +46972,Tim James +6895,Andreas Schmid +59983,Simon Cozens +1399061,Benjamin Beardwood +1382250,Dave Tinsley +67758,Michael Chabon +1407876,William Cawley +3115,Andrzej Sekula +42357,William Teitler +1346957,Andra Barbuica +1276868,Marie Leconte +108670,John Keitel +40493,Frederic Moriette +1462813,Meredith King +53356,Clive Dawson +1401363,Tim A. Davison +5580,Peter Macgregor-Scott +30723,Sidney Sheldon +81290,Paul Rosenblum +90224,Tim Cahill +548400,Daniel Landin +553421,Theo Pelletier +26458,Kevin Williamson +56326,Jill Sobel Messick +55116,Joe Chappelle +1644924,John Miles +1730031,Katrina Heaulme +57154,Lance Hool +64664,Kevin W. Kennedy +1598766,Lori Greenberg +79688,Vicki Sugars +9948,Anni Nöbauer +95823,Jane Nerlinger Evans +1565654,Barbara Becker +36589,Ian McEwan +16364,Michael Carlin +40438,Gary Chang +127283,Cyril Collard +7948,Yvonne Herbst +7126,Rudi Fehr +956983,Deborah Lucchesi +61022,Peter Allen +53645,Julie Monroe +21507,Jack Cummings +83455,Charles Marquis Warren +1425865,Svetlana Lukash +29207,Daniel Silverberg +124861,Kaisa Mäkinen +1314937,Charlie Woodburn +942560,Dalene Young +73463,Gabrielle Tana +929941,Stephen Ujlaki +1638072,Janna Phillips +20400,Tim Story +118346,Ragnar Bragason +118291,Morris Hoffman +31292,Stanley Pavey +114274,Philip Bartko +8375,John A. Amicarella +1556635,James Burgess +18069,Brian Gibson +1460439,Scott T. Petersen +10003,Karl Tunberg +114628,Pat E. Johnson +1546542,Sheri Bryant +1624490,Erik Lundborg +73419,Stefano Morcaldo +1452258,Nick Nicolaou +1550344,David Lee +1397365,Hugues Nonn +68047,Andrew Dickson +18741,Ivan Moffat +1605698,Marie-Catherine Miqueau +1864152,Harold McConnell Jr. +49904,Will McRobb +36564,Sonja Heiss +58446,Tom Bleecker +1534970,Chris Samp +1156927,Renan Pollès +1449943,Tim Gedemer +1385884,Sally Jones +46339,Walter Wischniewsky +29245,Stefan Wessely +15514,Michael Higgins +1326714,Jennifer Fishman +29924,John Shiban +1433721,Greg ten Bosch +1511311,James L. Fields +1398080,Lotta Wolgers +1767016,Daniel Fort +62157,Josh Stolberg +157290,John Whedon +27937,Alfred Junge +1733241,Joel Hay +1616177,Todd Stites +147701,Hans Holzer +1397857,Laura Gary +19680,Barbara Cohen +71877,Nick Thurlow +36275,Ermenegildo Zegna +963705,Lizz Wolf +1551969,Séverine De Wever +1115247,James Halpern +94816,Mark Monroe +128476,Satoshi Miki +970283,Simon Whiteley +38250,James B. Clark +1413808,Sue Field +18799,Robert Penn Warren +41079,Brent White +1584251,Grant Kennelly +1511706,Charles M. Wilborn +1243469,Peter Flannery +64209,Sophie Vermersch +1194020,Samuel Sim +983105,Gail Carr +35508,Michael Besman +81294,J.H. Wallis +1432473,Tim Larsen +548412,Ronnie Specter +65378,Paula Mazur +53069,Anna Boden +13166,Dino Dimuro +1532733,Jennifer Starzyk +1547830,Elizabeth McGreary +19917,Peter Przybylski +1128099,Arrien Schiltkamp +2444,Mike Stenson +1375941,Barbi Taylor +176794,Rosemary Rodriguez +5838,Richard M. Sherman +1482,John Cameron +1602833,Halina Ber +60084,Guy McElwaine +11776,Charles Bornstein +16345,Grégoire Delage +1424924,Lisa Crawley +69158,Norman R. Palmer +1516275,Steve Carlis +20461,Peter Christelis +7415,Rick Montgomery +1725893,Ben Rosenblatt +548439,James Moriana +1409231,Dennis Johnson +491282,Antoine Tudal +1080821,Tomotarô Nashiki +1214641,Millicent Shelton +119397,Hal C. Kern +9591,David Dockendorf +32603,Teodoro Maniaci +1877115,Daniel W. Blaha +60946,Jay Scully +142857,Çağan Irmak +6875,Peter Honess +17676,Roberto Bonelli +237652,Yann Andréa +134398,Saikaku Ihara +1338832,Richard Overton +53346,Kate Dowd +404709,Betty Glasow +22239,Travis Zariwny +18189,Mark Bomback +1812134,Nancy Parker +1904693,Youmi Kimura +68283,Emer McCourt +1402075,Jamie Silverstein +1460488,John Dillon +1337466,Tony Kenny +13931,Tom Priestley Jr. +4127,Orry-Kelly +84912,Roger Kellaway +1319136,Cindy J. Williams +1424456,Iain Stewart +1394751,Persis Reynolds +16335,Jacopo Quadri +1401714,Robert Duncan +590923,Umanosuke Iida +1674653,Patricia Navone +23654,Robert Holtzman +69980,Bruce Smeaton +1000157,Howard Burkons +1327842,Michael Trent +958493,John Rusk +57332,Larry Clemmons +9427,Frederick Howard +91814,Ermete Santini +51555,Hanania Baer +1459994,Tanja Deshida +72913,Morten Arnfred +1569884,Giorgio De Vincenzo +3991,Nicholas R. Allen +1538389,Ethan Lawrence +1442515,Gregory Schwartz +8971,Pat Golden +1326399,Louis Dandonneau +57965,Andrew Sugerman +1747999,Julia Gombert +93962,Elven Webb +1833021,David Paul Kirkpatrick +1548101,Herwig Maurer +1398182,Mark Ettel +1282415,Rosemary Welden +96255,J. Walter Ruben +23485,Marc Platt +1532352,Joseph Battista +2711,William Wisher Jr. +17083,Julio Fernández +1646233,Lea Anderson +1415617,Adam Kopald +232235,Thomas Michael Donnelly +21341,Steve Butterworth +1593283,Bill Stephney +20098,Stanley Rubin +1599492,Sevko Tinjak +1367434,Raúl Romanillos +1401814,Alejandro M. Hernandez +1011476,Susan Kaplan +62876,Andreea Tanasescu +102330,Meyer Gottlieb +557979,Zane Grey +1045,Bernard Herrmann +126653,Whitman Chambers +1442504,Robert Bonino +69804,Sam Froelich +587314,Guionne Leroy +69956,John Renbourn +1753061,Elizabeth Scherberger +1433709,Paul J. Hayes +18598,Ishirô Honda +27074,Lu Wei +57776,Kevin Moreton +67686,Harry Essex +1191639,Stuart Wall +1038558,Louisa Rose +32463,Rémi Burah +1557545,Alan Birkett +1393422,Monty Bannister +4416,Renzo Rossellini +1403078,Marie Boyle +957172,André Chamberland +1321897,Marie-Laure Valla +18541,Stefan Matyjaszkiewicz +11055,David Rabe +1402975,Marian Pascale +100026,Mohammad Reza Darvishi +995466,Barry Barnholtz +1574633,Tavin Marin Titus +16393,Clancy Sigal +433,Michael McCusker +569330,Anders Bohman +52927,Bill Marsilii +1173081,Leo Brouwer +55330,Stéphane Marsil +1338357,Betty Goldberg +1832368,Monica Melvin-Fratkin +1500872,Peter Batten +543568,Kim Jee-woon +1010129,Lee Zahler +1385935,Neil Driscoll Jr. +68612,David Roessell +16467,Kevin Constant +24992,Eun Soo Lee +72051,Domenico Procacci +8646,Keith Pain +1595993,Elen Lotman +1560906,Betty Chin +48492,Jann Preuss +184864,Manuel Reachi +58178,David Mirkin +1429256,Terry J. Erdmann +13626,Jan Pascale +1617026,Vair Macphee +25255,Yuyi Beringola +112864,Kiel Frieden +233172,Cesare Giulio Viola +1546441,Tom Wolfe +1001817,Richard H. Prince +23508,Daniel Toscan du Plantier +1003670,Burton Roueche +1462672,Darin Velarde +1226098,Jerry Wanek +88718,Mack V. Wright +1426090,Tora Dragomir +1673538,Chris Bradford +1413602,David R. Anderson +19952,Luc Montpellier +1402020,Viviane Vallée +41373,Simon Halfon +1485825,Jim Jacobs +1121190,Sabina Murray +1673553,Ronald Schlueter +145558,Jessica Elder +103510,Antonio Artero +565201,Stanley Fleischer +1635811,Christian Berrum +56077,Martin Levin +105386,Luke Short +972162,Ralph Kächele +1408459,Simon LeGassick +1427502,Jeff Richardson +1517810,Ellen Dinerman Little +121316,C. Bakaleinikoff +1453672,Peter Key +425396,Akira Ifukube +1275842,Jeremy Wall +35797,William Heslup +1739551,Aaron C. Fitzgerald +86299,Robert Caswell +13008,Trisha Edwards +14619,Hubert von Goisern +79980,John Coney +939462,Vérane Frédiani +11083,Robert R. Benton +1094682,Tech Akarapol +62351,Mortiis +38579,Bruce Douglas Johnson +1584253,Ben Faiman +1030265,Raphaële Urtin +1213685,Gerry Anderson +30022,Kevin Murphy +1524668,Sterfon Demings +1304268,Barry S. Silver +1455292,Billy Clevenger +1628315,Kim Hyun-chul +14879,Gene Callahan +1738174,Kerin Ferallo +1206749,Shen Chien +15573,Sharen Davis +22152,Alan Ayckbourn +20842,Arnold Rifkin +18651,Marion Rothman +1118741,Maciej Zieliński +60915,Eugene D. Shlugleit +112460,Gavrik Losey +18533,Errol Morris +9732,André Paulvé +75507,Glenn Ruehland +397654,Bob Williams +1118728,Bryan H. Carroll +22303,David Rennie +851,Anne Dudley +293,Roger Pratt +1380392,Johanne Caporicci +6191,Leslie E. Rollins +225967,Kantz +99033,Gabriel Bartalos +1414748,Laura Boddington +1901698,Hitomi Ishihara +66709,Gary Goch +543809,John Seabourne Sr. +1705311,Rishi Virmani +1130044,Giuseppe Bernardini +72142,Michael Economou +1553642,Timothy Michael Cairns +1183570,Stephen Minasian +19916,Oliver Biehler +1759234,Jean Baker +1505857,Christopher Amy +68998,Carlo Rola +12258,Beth A. Rubino +1451407,Phil Lee +1530900,Takahide Kawakami +62022,Stephen Diener +1274641,Buddy Adler +1552543,Gregg Singer +561,John Papsidera +543094,Ahmed Rachedi +1428855,Richard E. Yawn +109537,Ralph Hemecker +1355547,Royer +260646,Tom Shaw +958130,Périne Barre +1418393,David Heinz +1560267,Kathy Russell +1546537,Tony Villanueva +1545994,Shaun Cobley +17531,Dominique Colin +197773,Paul Grinder +40476,Maren Ade +136396,William Berke +1551971,Victor Abadia +1691954,Jeffrey A. Johnson +46625,Yasunari Kawabata +75715,Lawrence Woodward +80800,Takashi Oda +1755201,Eylla Jacobs +1464538,Ronald B. Moore +13803,Hagar Wilde +109464,Will Cook +22010,Jerie Kelter +1533577,Selina Macarthur +9891,Douglas Axtell +1526279,Dana Maksimovich +41152,Walter Scott Herndon +1607053,Carl de Keyzer +1401703,Angus Cameron +7749,Arthur La Bern +1424642,David Alex Wilson +1333900,Michelle Vittone +1206767,Paul D. Kelly +3486,Archie Marshek +1253,Jim Clay +60896,Manon Bougie +33315,Richard Loncraine +7019,Duncan Kenworthy +1546559,Ed Carr +1367665,Craig Dollinger +2946,Jennifer Fox +1602887,Steward Burris +1391723,Craig Walmsley +65725,Patrick Cassidy +1788,Nicholas Meyer +87195,Paul de Souza +1521673,Marco Aguilar +1827,Elza Bergeron +1153233,Mariana Gironella +12405,Douglas Freeman +62011,Andrew Rona +7386,Jack E. Cox +554640,Michael Moorcock +1434562,JC Bond +119147,Gabrielle Lord +1398876,Alison Carrelli +101515,Robinson Devor +142325,Simon Crane +1577012,Bethany Scott +66617,Yao-cho Chang +1334503,Mihai Alecsa +1106181,Thomas Neivelt +42230,Wayne Scott Joness +1458352,Marion Nobel +1841292,Erin O'Leary +30040,Richard H. Landau +69237,Joe Berlinger +6998,Nick Palmer +1206546,Robert Kinoshita +12614,Stephan Dupuis +139080,Stu Pollard +1009388,Max Rée +35019,Max Allan Collins +1415080,Carla White +37757,David Hirschfelder +1373433,Paul Graff +115725,Nick Cohen +1311507,Steve Cremin +62687,Bill Kravitz +1779872,Arturo A. Hernandez +61125,J.R. Young +1167084,William S. Gray +68215,Reginald Hudlin +1600104,Julie Helton +961528,Liz Keigley +1499673,F.A. Miller +69041,Stephen Levy +959742,Wendy O'Brien +1678642,Michael Day +1335559,Dominic Gibbs +16403,Françoise Bonnot +929821,Robert Stevens +10629,William Cruse +1391703,Ann Goobie +51714,Heike Parplies +1299,Roald Dahl +1595164,Märten Kross +1733019,Mark Berrow +11848,Billy Williams +474,Jina Jay +110546,Ken Hilton +1401594,Douglas Curran +1630684,J.L. Parker +62805,Colleen Maloof +82169,Geoffrey Haley +1586342,Kamil Jaffar +964587,Jordan Cahan +1398946,John A. Larsen +1737666,Kim Perrodin +48326,Herbert Lerche +4767,Michael De Luca +1733762,David House +1725251,Sean Corcoran +11036,Van Nest Polglase +999600,Cassandra Saulter +1026618,Kenneth Rive +83239,Jack Kirkland +56851,Victor Cook +1435051,Mel Howard +1148665,Stephen Metcalfe +1319627,Beth Timbrell +1298017,Philip Maldonado +108811,Harold Fletcher +1549707,Bunthin Thuaykaew +73137,Ralph Sall +1318464,Jim Johnson +1303001,Anthony Christov +1174596,Henry Berman +65981,Ng See-Yuen +20209,Donald Graham Burt +1714505,Bryan Day +937407,Nadine Luque +230529,Sadaji Yoshida +1163090,Doron Eran +1199800,Manya Starr +72709,Karel Reisz +37592,Ernest Troost +1360103,Addison Teague +1466328,Erik Kjersgaard +60711,Brent O'Connor +1562119,William Kruzykowski +1733240,Eric S. Potechin +1115010,Kay Ueda +1895998,Chris Holcombe +1371349,Alex Wolfe +1643449,Ann Edwards +1325684,Ali Abouomar +14777,Robert Daley +52843,Douglas Adams +165791,George Meyer +1602871,Thomas M. Krigbaum +4014,Paul W.S. Anderson +1483902,Rebecca Breckel +1177097,Tamás Csaszar +1886667,Patsy de Lord +14598,Thomas Bangalter +1407209,Ed Duranté +1581119,Klaus Bienen +1588463,Laurie Shane +29998,Frank Ware +1438598,Allan Burdett +1396311,Youngki Lee +1411001,Efren Lapid +1454542,Andrew Salazar +1552354,Trenee Clayton +23353,Rita Salazar +1455393,Peter V. Saldutti +1398868,Slade Hammer +1733796,Nourdine Zaoui +14778,Carl Pingitore +34893,Carlos Grangel +1401806,Mark Fellman +959440,Hila Yuval +1816300,Fernanda Tripoli +34227,Morris Stoloff +11505,John Hughes +5133,Bo Welch +1575876,Lillani E. Moran +1345600,Kevin Baillie +1850826,Chris Harrald +1858343,Jesus Chavez +115983,Alan Mehrez +548445,Jeffrey Wilhoit +1392760,Jeff Arnold +1753051,Tony Lucibello +12205,Angus Strathie +145991,Alice Duer Miller +1409712,John Trapman +81261,David Almond +11456,Martin Childs +1423203,Karola Dirnberger +12832,Robert Rodat +1320525,Zane Cronjé +1566262,Paul Lowe +14581,Arthur A. Brooks +81541,Gene Lasko +1877172,Curtis Foster +74936,Nichole Millard +1417407,Thomas Hayslip +86199,Laura Ziffren +56832,Yiu-Tsou Cheung +93025,Nancy Savoca +68591,Francisco Riba +1460481,Juan 'Jo' Luna +23541,Joseph Drake +1399501,John Bannister +1148682,Laurence Benoit +109702,Henry Garson +1870671,Patrick Sekino +1419733,Puelo Deir +1394059,Marco Fargnoli +1526845,Ralph Rea +1432023,Michael P. May +1466973,John S. Detlie +23338,Walter E. Richarz +1525552,Pepe Valencia +136149,Hugh Wheeler +1550206,Michael O'Conner +13973,Christian Nyby +59923,Marc Forby +1409744,Dean Heselden +123694,Rob Pritts +1392678,Jason Laskay +1279374,Sara Moe +1421262,Michael Ornelaz +104781,Nicolas Kladakis +57595,Brett Hogan +25319,Francesco Scardamaglia +1418481,Danny Gordon Taylor +41587,Armyan Bernstein +11458,Joyce Gallie +6606,Connie De Pinna +1375845,Edward M. Langley +1363,Ru Zhai +9584,Richard C. Meyer +123574,Gaston Glass +1526850,James Suskin +69045,Aristides McGarry +22968,Natalie Ward +1462676,Jamaal Bradley +1866786,Christopher Wishart +9064,Adrian +1544658,Monica Sorescu +18384,Joel Soisson +1632425,Giuseppina di Cola +352394,Stan Jolley +14172,Michael McCullers +1540922,Juan Carrión +12667,Kwan Pung-Leung +1335041,Charles Leitrants +1842591,Beetle Van Graan +1678675,Ryan Trenhaile +6119,Carrie Frazier +1540183,Jacqueline Fowler +2991,Robert Wiene +1207586,W.T. Partleton +1562721,Mark C. Grech +19949,Simone Urdl +1630535,Tony Jackson +47290,James Hollond +1559397,Larry Gilhooly +16640,James D. Young +68573,Walt Becker +14924,Mark O. Forker +549834,Lotte Reiniger +1584250,Bradley Galgon +92741,Brooke Howden +1401804,Stuart Thorp +40613,Henning Lohner +32084,Albina du Boisrouvray +1717521,Dannon Walters +8807,Lisa Geffcken-Reinhard +41376,Neil Farrell +1307,Bob Weinstein +11811,Randi Chernov +6157,Kristian Eidnes Andersen +4804,Manuela Stehr +1105829,Leo de Laforgue +1412032,John Ireland +19501,Galen Walker +51841,Mary Ellen Mark +558100,Marc Shmuger +1724868,Samuel Webb +41288,Miky Lee +1303222,Dan Butts +1849996,Jerry King +12241,Malcolm Arnold +7506,Irwin Allen +21677,Barnaby Thompson +21012,Robert C. Jones +330,Jay Rabinowitz +1611077,Malgorzata Braszka +552388,Bo-Ling Ng +1556647,Noelle P. Case +136738,John Iacovelli +93560,Paul Morrison +1378348,Ernest Lansing +66140,William Gray +88505,Kim Leona +4357,Harry Brown +1733231,Michael Huschka +420741,Robin Antin +60780,T.J. Mancini +6062,Bob Beher +43993,Christophe Barratier +1417848,Jonathan Hook +1597181,Gavin Aims +1426774,David Jacox +1607233,Aldo Calpini +67490,Tom Fox +1724870,William Hopper +51373,Larry Peerce +1406925,Cynthia E. Thornton +16497,Lisa Jaime +1605361,Ira N. Smith +1367494,Ai-Ling Lee +1707140,Dave Jackson +1210448,Christopher Theo +1317041,Blair Leonard +1539839,Georges Pierre +43387,Joshua Astrachan +90,Isabel Coixet +73257,Janet Green +8342,Jack H. Young +128108,Giuseppe Pontiggia +999947,Thomas Atkins +1371271,Fred Cohen +6794,François Gédigier +24996,James David Goldmark +56533,Claudio Fäh +65432,Charles Williams +423177,Sonny Burke +1099567,Charles David Forrest +66616,Cheung Yiu-Cho +16568,Gib Jaffe +25236,Johnnie To +10740,Sue Baker +23411,Henry Kuttner +101590,Ciro Ippolito +43810,Georges Pellegrin +14134,Chris Bryant +2519,Sanja Milkovic Hays +1420153,Mike Walker +1790555,David Curtis +65525,Howard McCain +118305,Elmer Ellsworth +21102,Michael Nolin +999774,David Kurtz +2036,Alex Garland +1425491,Joe Dunne +1035262,Phyllis Reynolds Naylor +1462612,Phil Allora +931527,Franco Reggiani +1400370,Debra Wolff +1345980,Farid Mostafavi +46968,Peter Yuval +1173612,Mok Tang Han +19987,Véronique Sacrez +1337457,Denis Bellingham +64195,Joseph Zito +1371269,Miljan Peter Ilich +7357,Claudia Becker +18844,John Madden +84377,Julie Fischer +1477799,John A. Brubaker +1377293,Karen Vassar Triest +1611791,Alan Jacques +1643490,Kimberly Wright +29242,Maurice Renard +119766,Thomas Azzari +16786,Thomas Harris +95963,Catherine Turney +49606,Amornbhong Methakunavudh +960153,Sophie Wachner +1392097,Jerry Spivack +1610047,Andrzej Glacel +6452,Burnett Guffey +1550732,Scott Brock +1475280,Anthony Mastromauro +1293129,Fred Hellenburgh +1108989,Roger Tweten +1298435,Leung Ka-Kit +710,An Dorthe Braker +56201,Peter Sehr +13426,Peter Segal +69193,Henning Kristiansen +120313,Sidney Wagner +162931,Al Jean +58185,Patrick McGrath +1304263,Mark Tschanz +50578,Everett Douglas +1447478,Eric Koenig +70054,Steve Dorff +67350,Eva Ruggiero +66768,Zhong-Jun Ma +47768,Edwin Torres +1625921,Philip Douglas +1409723,Alexandre Juaneda +6349,Alan J. Pakula +1334478,Gary Seybert +102352,Malek Akkad +1416807,Samuel Deshors +583002,Tom Blakeley +23453,Robert Cowper +1773152,Christina Bulbrook +77251,Halina Gebarowicz +1749138,Andrew Speller +1799870,Alice Borrelli +197458,Theodore J. Flicker +1324933,Eva Monley +1298,Brad Grey +35151,Pierre Courau +937528,Leonard Pollack +7786,Ros Hubbard +1602100,Bohumil Rath +1440856,Clare Ramsey +935903,René Eram +1415631,Conrad Dueck +102109,Brett Morgen +64339,Donald Elmblad +70296,Bridget Boland +26985,Lee Harman +92739,Dale Cornelius +1452812,Silke Buhr +1458040,Kenneth A. Reid +27724,Catherine Cohen +1551536,Rita Bellissimo +9347,Paul Hughen +1462065,Jenny Shircore +32382,Mario Garbuglia +1411683,William D. Derham +91807,Renato Pedrini +82938,Elinor Lipman +83067,Dione Taylor +74969,Richard Arrington +1896278,Elizabeth Sloan Freel +1080,Monika Jacobs +79132,Anna Reeves +72064,Charles Nordhoff +5484,Scott Greenstein +18185,Skip Woods +1391110,John Bramall +41388,Sheila Trezise +1121617,Stephen Jones +1637481,David Ambit +18077,Oral Norrie Ottey +109400,Clair Huffaker +15303,Frank Hübner +1125482,Fabio Nunziata +2199,Scott Frank +35007,Christine Ruppert +1436494,Micheline Trépanier +25239,Yau Nai-Hoi +1581757,Edward Ullman +8511,Roger Heman Sr. +1590605,Benoit Noiret +1803790,Todd Braden +1640317,AS Laxmi Narayanan +27547,John A. Keel +22544,Bryan England +33314,Michael Allin +1726,Steven E. de Souza +5806,Daniel L. Fapp +10492,Joe Eszterhas +26487,Norman René +1319445,Michael Fish Herring +95535,Sally Head +3427,Lisa Weinstein +172365,Kenny Loggins +12703,Stan Cole +12637,Christopher Nowak +125896,Alexander Volodin +21148,Stephen Alesch +31843,Ranald MacDougall +1401118,Francesca Jaynes +1536196,Jean Umansky +1168991,Joe Morganella +65401,Charlie Peters +23645,Paul Dixon +14654,Robert Latham Brown +1420157,Ryan Tudhope +117720,William Ludwig +105396,Zhong-lun Ren +75485,Noriko Watanabe +27205,Luigi Rocchetti +1419797,Jennifer Albrecht +1560905,Paul Stewart +185446,Paul Rudish +958787,Paula Rosenberg +25021,Lisa Love +1474372,Albert Sendrey +1422064,Michael Geisler +1427551,Pauline Griffith +3602,Ivor Montagu +1178236,Sulaiman Merchant +111181,George Acogny +111492,Alan Johnson +1472327,Dallas Hartman +3629,Sara Bilbatúa +65139,Alyssa Winter +5269,João Canijo +1081818,John Beal +5013,Arthur Schnitzler +1630386,Orlando Ordonez +1622121,Nancy Willen +31126,Scott Kevan +79284,Helena Danielsson +21168,Alain Levent +1551532,Alex Romano +12382,Simon Duggan +1678649,Matt Aspbury +41542,Andrew Cox +1447548,Louie C. Jhocson +11269,Dario Marianelli +21033,Kim Eun-jeong +1046568,Debajyoti Mishra +1044367,Geoff Thompson +1801755,Kien Shih +16177,Ron Bartlett +1451398,Bryan McBrien +1394760,Kimi Webber +2765,Nicholas Ray +62799,Alex Keledjian +1661555,Rick Marroquin +54771,Tuula Hilkamo +8320,Jeff Danna +17994,Dan Sable +25803,Bruno Avesani +1455541,Larry White +67896,Doug McHenry +1120223,Caupolican Ovalles +54257,Pepijn Aben +1472426,Clyde W. Smith +82309,Przemysław Nowakowski +8303,Don Carmody +70363,Ulla Isaksson +11375,Anne D. McCulley +1765,Harold Michelson +41524,Martine Giordano +1661571,Ron Stone +1133288,Takeshi Yasuda +134342,Matsutarô Kawaguchi +1410279,Cecelia van Straaten +45479,Robert Lefebvre +21267,Tom McArdle +1625913,Kevin Clark +1441284,John Lavoie +113837,Coleman Metts +92905,Rick Stevenson +1163710,Rebecca Brown +1208374,Sammy Cahn +1378222,Joe Ondrejko +60086,Blair Daily +1079984,Tomás Hradcky +1081799,Renato Serio +4222,Simone Bär +5061,John Mollo +2027,Leonard Rosenman +1320131,Thomas Middleton +89905,Don Hartman +5575,Akiva Goldsman +60888,Carol Kottenbrook +568129,Herbert F. Solow +57342,Vince McMahon +1433996,Barbara Olvera +143919,Gary Gegan +38082,Kerry Orent +112597,Jonny Halberg +1395900,Shintarô Shirai +3109,Paddy Reardon +1479807,Janna Stern +1347788,I.E. Chadwick +40989,Clemens Tütsch +1450357,Kelly McGraw +1384061,Gabriel Béchir +74283,Alicia Kirk +17284,Larry Fong +107639,Juliusz Machulski +11970,Edward Fitzgerald +1436224,Jack Gillies +19842,José Luis Cuerda +57337,George Bruns +1536362,Martha Marek Beresford +113860,Jamie Mathieson +73402,Brendan Hood +1790,Robert Sallin +1186675,Feng Jicai +51832,Robert Papazian +9197,Richard Solomon +1394775,José Luis del Barco +96318,Franc. Reyes +16517,William J. Cassidy +46267,Anna Wunderlich +931974,Charlene Olson +1646822,Zoë Edwards +25539,Shonda Rhimes +46325,Jingle Ma +69831,Chu Tien-Wen +7723,Jon Davison +1385149,Carlos Faruolo +1204668,Alain Lalanne +1455310,Knut Koivisto +13958,Jack Otterson +1568635,Susanne Falck +1132462,Ryôtarô Kuwata +149982,Ray Galton +4129,Francis J. Scheid +119538,M.K. Jerome +1494071,Choon-yeon Lee +1551964,Emma Lebail +43384,Hannah Leader +1117716,Enfys Dickinson +4189,Aude Bronson-Howard +1407895,Matt Doll +1281015,Paul Caimi +34525,Craig Abele +1532068,Cara Giallanza +1762442,Albert Shepard +1431079,Quincy Paglaro +88723,Paul H. Allen +1339737,V. Manikandan +1454660,John Lewis +940592,Christopher Cooper +1445870,Adam Cameron +4700,James G. Robinson +1389573,William M. Hamilton Jr +287527,Bob Foss +8410,Richard Roberts +1455625,Ken Nielsen +3709,Maria Köpf +1927,Blake Edwards +1363843,Alexandre Juneau +950,Pietro Scalia +1453278,Gary Kudroff +60456,Robert Seaman +1034624,Agustina Bessa-Luís +6470,Daniel Yost +21508,John McSweeney Jr. +1462235,Ed Wittstein +1394491,Mike Shannon +1535319,Harald Ortenburger +1327895,Gina Homan +1412195,Elliott Koretz +6190,Mike Hill +1833618,Bob Muse +63578,Tommy Wai +1328383,Tora Peterson +19931,Caroline Benjo +2514,Michael Piller +1447380,Craig R. Maras +1407832,Brian Campbell +16515,Scott Conrad +1780229,Larry Bradshaw +1120803,George Peters +10348,Agnès Delahaie +74619,Sean Anders +2633,John Goldsmith +1635,Tim Squyres +103355,Orville H. Hampton +1252432,Charles Lyall +1402095,Paul A. Edwards +57132,Daniel Goldberg +1401640,Francesco Nardi +1092903,Donald Sosin +55921,Jean-Louis Livi +376,Arnon Milchan +1368885,Collin Butrum +90661,Robert J. Rosenthal +2156,Louis Bromfield +938427,Allison R. Hebble +1277993,Manmohan Shetty +17799,Marina Grasic +10491,Paul Verhoeven +1125190,Jonathan Oakes +1861250,Orlagh Collins +1551965,Véronique Boitout +4659,Giovanni Corridori +58049,Levie Isaacks +1391572,Bill W. Benton +1477835,Alec Rabinowitz +15426,Laura Rosenthal +54531,Glòria Viguer +11166,William Ross +1633542,Carlos Santana +1571719,Anna Abbey +1461391,Brian Ferguson +34712,Vladimir Kartashov +1800145,Susan Wieder +1446530,Edward Ternes +22009,Michael Rizzo +1267327,Wayne LeClos +1817616,Jill Bream +1877365,Patrice Carbaugh +1438626,Gordon Alyward +3718,David Valdes +77571,Andrew Myer +83121,Renate Leuschner +114407,Garrett Lerner +1329476,Theresa Wachter +1408194,Sondra Durksen +93904,Irving Rapper +1342606,Angela Wharton +1129439,Barbara Acosta +33405,Gillies MacKinnon +1407238,Jan Rudolph +32001,Max Pretzfelder +29345,Stephen Goosson +1570813,Christian Boudman +1420158,Stefan Tarzan +17017,Pat McCabe +1391594,Randy Nolen +1678832,Gilbert Mandelik +1429531,Jennifer L. Mann +1406389,Bruce Tanis +1060393,Victor Syrmis +1516101,Jenny Lewis +19315,Kevin McCollum +6046,Roland Emmerich +61821,Robert S. Baker +551925,Katharina Hirsch-Smith +1536312,Chrisi Karvonides-Dushenko +58255,Alexandre de La Patellière +25755,Anja Dihrberg +1625918,Ian Nelmes +21807,Billy Ray +37285,Jodie Fried +166269,Ken Horn +1208908,George Kraychyk +1174324,Jo Duffy +62059,Amy B. Harris +52417,Piers Paul Read +31287,John Croydon +555,Nancy Haigh +1449495,Gilda De Guilmi +1537718,Janine Anderton +16539,Frank E. Warner +1402071,Bob Chefalas +1021802,Marie-Laure Lasson +44076,Véronique Parnet +39648,Leila Conners +1408721,Jon Baronn Farmer +1325578,John Stoddart +1708292,Andrew Law +81892,Bob Jenkis +83083,G.W. Brown +1494607,Adele Parmenter +14059,Sass Bedig +1346171,Edith Hamilton +1415464,Malcolm Fife +1601905,Denis Fraser +1506373,Robert-James Bova +1609415,Nathan Waks +1401298,Andris Matiss +1405378,R. Scott Doran +42370,Maximo Munzi +1586396,Patrick Houlihan +176246,Kevin Yagher +15429,Dayna Lee +32773,Gino Zamprioli +53638,Stephanie Allain +1624045,Milly Itzhak +1415,Ursula K. Le Guin +1401680,Gaetano Lagana +1225554,Susan Estelle Jansen +1029784,Tatsuko Sakane +2305,Peter Handke +3103,Charles Grenzbach +54732,Pamella D'Pella +1446203,Jay Ignaszewski +42414,Eitan Levi +1400809,Steven Schalk +960447,Frances Calder +1551515,Gray Marshall +1609170,Andy Rennie +1402077,Michael J. Maurer +1388877,Steve Dent +17675,Mayes C. Rubeo +1250633,Byron Paul +1401294,Bryan Forde +1392247,Bob Marshak +4855,Peter Saraf +1429548,Randy Pease +57542,Henri Gruel +1237485,John Sparey +2121,Mary Jo Slater +37275,Terrence Yason +56932,Kevin McCormick +7413,Mark Irwin +1191540,Justin Duval +21958,Mark Rydell +64748,David Handman +1092901,Nicole Ratcliffe +5624,Pierre Edelman +1559101,Amiya Sanyal +92393,Phil Cory +1408853,Aminta Townshend +1439109,Nava R. Sadan +71238,Stanley R. Greenberg +108812,Helen Penfold +1034422,Gia Badridze +1335078,Mike Chock +998027,Dado Jehan +132489,André-Paul Antoine +1408286,Richard Deangelo +1402900,Calum McFarlane +1458349,Art Vitello +1012037,Sarah Y. Mason +126761,Tristan Meunier +1022306,Alfred Pariser +1593015,Konstantin Eliseev +120227,Dariush Mehrjui +26208,Robert Katz +52448,Daniel Dubiecki +60967,Blain Morris +35150,Pierre Gillette +85076,John Hazlett +1746540,Larry A. Cornick +34970,Susan Montford +87700,H. Bruce Humberstone +1625127,Jean-Pierre Sarrazin +571296,Steven Baer +1563922,Brian Chavanne +60789,Roger Zamudio +556015,Kalle Boman +7387,Emile de Ruelle +1594907,Clete Cetrone +1615288,Robert E. Stanton +1550202,Ellen Sara Popiel +1408680,Brent Robinson +102927,Guerdon Trueblood +1418281,Gregg Thomas +548443,Branden Spencer +80215,Charles Stone III +1406813,Joel Ossenfort +1398084,Aziz Hamichi +100836,Basilio Cortijo +10517,Clyde Bruckman +1406090,Tommy Samona +123385,Eijirô Hisaita +20123,Bonnie Cashin +1014915,Kelly Valentine Hendry +31962,Gregg C. Tallas +1378828,Michael Semanick +21787,Franklin Milton +1566436,Sadegh Sourchi +1237111,Tom King +1566301,Malcolm Luker +1035188,Benjamin Gourley +1128511,Radu Lopotaru +38578,Bart Rosenblatt +9061,Jack Martin Smith +1406856,Sue Mahoney +105,Lisa Robison +1722105,Rufus Le Maire +67935,Shigeru Nishiyama +1739544,Gina August +34359,Saul Chaplin +81525,Merle Eckert +1414532,Scott Peterson +1815548,Tod Holcomb +1313233,Pauline White-Kassulke +71789,Lajos Biró +70525,Kate Ogborn +1537385,Karel Vejrík +74580,Jeffrey Graup +1033104,Scott David +122452,Tom O'Horgan +939590,John E. Bryant +938741,Paul Glickler +1308504,Vlastimir Gavrik +1403800,Paul Hanks +131132,John M. Foley +134343,Yoshikata Yoda +19305,Tom Ropelewski +17427,Claude La Haye +14827,Burton Miller +51380,Lea Stalmaster +1464458,Brock Gallagher +1599039,Vladimir Golovnitskiy +8221,David Lazan +1402082,Meredith Kaunitz +1392098,Rocco Passionino +2084,Bill Shepard +1723677,Gilda Navarro +1401375,Tobias Fouracre +967446,Michael Ireland +1606804,Nino Misiano +53687,Roberto Silvi +1546177,Paul Couch +1441247,Dave Tennant +1063201,Chris Newby +21068,Richard Gibbs +1328730,Kathleen Lorden +1654464,Peter Mattei +1208435,Rebecca DeHerrera +96627,André Téchiné +1426049,Hayden Yates +1573618,Sheilah Sullivan +91050,Cynthia Flynt +1145918,S. Reed Morian +30383,Michael Grillo +54528,Alberto Marini +3506,Carolynne Cunningham +1649176,Betty Forster +1440850,Nick Tebbet +1624415,Carn Burton +1050722,Charles Logue +26195,Konnie Daniel +1759860,"Richard Davis, Jr." +1405379,Chris Ashley +77512,Charles J.D. Schlissel +44064,Ken Kaufman +18599,Masao Tamai +58188,Steve R. Moore +1440743,Lori Jean Sacks +1609617,Piotr Dudzinski +1724280,Rodney Burke +76269,Seppe van Groeningen +1323163,Shankar-Ehsaan-Loy +1667264,Samuel Fischer +64050,Dan Wyman +20193,Mark Neveldine +145249,Tadao Ikeda +3101,Andrea Eastman +54349,Dennis Potter +993813,Xiaofeng Hu +30090,F.X. Feeney +18095,Phillip V. Caruso +30681,William Lava +144848,Franck Lebreton +550583,Kô Ôtani +1191203,Aaron Billet +110645,Heidi Klein +1460825,Suzanne C. Swindle +107837,Lynn Geller +65644,Kevin Kliesch +57702,James O'Barr +138619,Philip McGrade +76281,Guy Van Nueten +1394744,Keith Christensen +1391732,Jason Ewart +56740,Darren Miller +1605720,Daniel Ollivier +75806,Richard J. Gelfand +1899112,Walter L. Hall +14622,Heiner Niehues +1407897,Chris Owen Jones +1407023,Martin Schaer +54121,Bernhard Schlink +81524,Shelly Bartolini +110697,Héctor López +1768142,Eric J. Goldstein +588701,Des McAnuff +108626,Helen Simpson +1761067,Craig Scagnetti +1600185,Éliane Marcus +7146,Tom Duffield +88036,Paavo Westerberg +42029,Ted Rae +1398095,Alain Féat +43091,Robert Moreland +1625925,Glenn D. Bloom +23779,Jack Rapke +10471,Margot Capelier +1106203,Hideyuki Honma +1662344,Maxie McDonald +58152,Troy Kennedy Martin +32804,Simon Fisher-Turner +146656,Makoto Tsugawa +1465042,Bernard Cohn +78053,Edwin L. Marin +1550830,Donald Frazee +21655,Benoît Delhomme +1399063,Rob Hodgson +1392084,Larry Kemp +34898,Colin Batty +103129,Ovidio G. Assonitis +29855,Steph Lady +1619440,María de Jesús Lepe +1300922,Deborah K. Dee +33822,Guy de Maupassant +63728,Johnny E. Jensen +119179,Cindy Tolan +40589,Karen McCullah Lutz +1084897,Enrico Coletti +1239113,Shana Alexander +64887,Park Gok-ji +1776549,Jimmy Zelinger +1548532,Mario Cacioppo +1342627,Blair Scheller +1537867,Rachael Lin Gallaghan +39456,Mark Mullen +7750,Anthony Shaffer +1614896,Ben Scott +1218983,Don Shank +8538,Lewis Abernathy +12945,Jeff Carson +66157,Takayuki Hattori +1371270,Christopher Burke +1397882,Hal Lary +1407194,Peter DeCurtis +28097,Françoise Collin +1158100,Sandrine Weill +15495,Jonathan Morris +1531899,Bonita DeHaven +1460669,Robert Elhai +19893,Warren Lewis +70100,Shinji Aramaki +1423865,Michael Ferris +9887,Birgitta Bjerke +223148,Natraj +30946,Robert Caramico +1130132,Debbie Diaz +1550207,Thomas F. Timlin Jr. +1422215,R.L. Hough +1584237,Rob Hansford +40029,Soykut Turan +1315254,Gitanjali Rao +81538,Wayne Fitzgerald +6569,J.J. Johnson +1397851,John L. Lewis +84381,Susannah Shipman +1557103,Roy Davidson +795,James J. Murakami +18790,Katia Milani +1580366,André Bouladoux +25600,Patrick Crowley +1493887,Bruce Alan Greene +1467442,Estelle Lau +27969,Douglas Shearer +1177713,Donna Maloney +1325689,Andrew Reid +5634,Patricia Norris +10830,Toby Emmerich +37429,Dorree Cooper +1783,K.K. Barrett +1406396,Peter Donen +874,Boris Leven +1132470,Masuteru Mochizuki +8950,Terry Southern +1564868,Kirk Schuler +1372414,Jak Osmond +13588,Rosemary Brandenburg +14100,Roy L. Downey +1445903,Cecile Defosse +74680,Ted Dekker +1532197,Lorraine Crossman +1877353,T.D. Donnelly +1520926,Nicole Flipo +1608539,Mark White +29278,Duncan Cramer +11695,Lucas Foster +1553112,Robert La Varne +116326,Philip Dunne +1644921,Greg Dinner +43141,Pete Travis +82389,Norman Z. McLeod +1341339,Patrushkha Mierzwa +1551983,Jacques Smerlak +23545,Robin D. Cook +11879,Choderlos de Laclos +1012025,Ed Douglas +1532731,Mark Edwards +39964,Mihaela Poenaru +84460,Chaz Thorne +553866,Elsa Tang +1328406,Dan Bronson +35513,Teresa Visinare +14716,Kathy Durning +1415011,Patrick Mooney +960543,Maura Tighe +99083,Mark Thomas McGee +131411,Bert Jordan +1409738,John Fewell +1391731,Greg Gilbert +1424641,Merrin Ruck +1398189,Morag Cameron +1127861,John Hipwell +61417,Randy Fullmer +32097,Walter Wottitz +48079,Hans Selikovsky +1428132,John J. Slove Jr. +1342589,Peter Hancock +1117865,Pengle Xu +18250,Jon Avnet +30463,Paul Inglis +1423863,David E. Stone +240585,Jorge Amado +1147667,Hugo Gilbert +97047,Val Lewton +19971,Shay Cunliffe +1108529,Missy Alpern +42360,Scot Boland +35558,Yves Gasser +128327,Walt Whitman +55410,Christian Lonk +1760495,Gu Changning +1482837,Christopher Alba +1770692,Paul J. Newman +41188,Margo Baxley +90302,Fred Wolf +87397,Paul Turner +1134304,Judy Irving +1514677,Will Gethen-Jones +44986,Sergio Canevari +7311,Clarence Champagne +54269,Ralph Vicinanza +1841641,Simone Farber +63979,Peter Nashel +10953,Gilbert Adler +899,Glen Scantlebury +16652,William J. Durrell Jr. +67271,John Coates +10972,Martin Cantwell +52455,Kimya Dawson +24051,David Madden +150337,Dimitris Nollas +11237,Mette Möller +14377,Juel Bestrop +1338983,Florian Gellinger +10337,Charles Orme +1530325,Joseph Viano +1462811,Amanda Essick Burrell +1400093,Rickley W. Dumm +52055,Geoffrey Simpson +70299,Gian Gaspare Napolitano +1755585,Glenn Arrowsmith +1428839,Macall B. Polay +76713,Terra Abroms +1621286,Marla Garlin +1423861,Jeff Rosen +202192,James Cairncross +80454,Bon-han Ku +18479,Maurice Jaubert +1394973,Joseph Lederer +1410141,Gwillym Hewetson +89532,Lawrence W. Butler +72714,Greg Erb +45543,Paul Attanasio +129645,Marjorie Schwartz +1442097,Jeri Baker +66719,Felix Chong +1562136,Tom Andre +1602884,Paul Croghan +1287868,Ozzy Alvarez +57900,Limor Diamant +56413,John Burnham Schwartz +1534645,Mario Tursi +101767,Robert Butler +1403400,Jeff Campbell +1557604,Claudia Carey +1283199,Tama Janowitz +105450,E. Lloyd Sheldon +1447565,Nick Sung +1434547,Cornelia Stefan +967217,Langdon Page +1069799,Robert Kravitz +1820602,Ettore Lombardi +68315,Jean-Claude Lauzon +58453,Peter Faiman +1194062,Allen Smith +1195656,Joseph N. Ermolieff +67607,Art Stevens +35073,Bruno Coulais +226002,Robert F. Brunner +2593,Rupert Gregson-Williams +1428833,Candy Bennici +6492,Antonia Van Drimmelen +12476,Claude Héroux +1877173,Laura Krumholz +871110,Tetsuro Takeuchi +1765783,Edmond Scott Ratliff +135964,Pierre Dumarchais +3050,Jill Bilcock +1050643,Alexa Faigen +1465673,Simona Dinu +32919,Anthony Asquith +1611811,Ed Lewis +84657,Lewis John Carlino +84851,Hoyt Yeatman +1055287,Elmer Raguse +4033,Liz Dann +42062,Ruth Cummings +28503,Luis Miñarro +1586388,Milan Jáchym +1407453,Pierre Wallon +20569,Ford Wheeler +19167,Matthieu Chabrol +36008,Dorothee Zollner +1635810,Madeleine Fant +1427823,Graham Johnston +1724267,Vicki Popplewell +9552,Lori Keith Douglas +8467,Nelli Fomina +550544,Osamu Inoue +52405,Michael Hoffman +959264,Thomas Glover +1680620,Kurt Smith +71334,Eric Broms +58818,João Fernandes +19321,Mark Warren +61899,John Sacchi +65502,William C. Thompson +10148,Warren Duff +1729674,David Ellis +137180,Don Griffith +60809,Tuukka Tiensuu +103489,Toshiaki Tsushima +989147,Jack Dennis +36007,Michaela Quast +1462615,Ray daSilva +232184,Don Holliday +1401587,Jon Grinberg +17398,Mimi Polk Gitlin +51515,Charlotte Rembauville +1271308,Pedro D'Angelo +1734649,Danny Green +3028,Bruce A. Evans +61495,William M. Miller +44115,Spike Feresten +1599794,Azra Mehic +18457,Pam Dixon +29632,John Grant +72972,Andrew Cadelago +55600,Steve Danton +11372,Peter Teschner +52121,Héctor Olivera +1316840,Otomo Yoshihide +1230368,Laurie Lynd +35332,Susan Shipton +1739545,Angela Beresford +100687,Antonio Molina +66518,Marty Eli Schwartz +47789,Elias Ludovic +6925,Ernie Bishop +1376136,Shinobu Muraki +1122623,Findlay Quinn +4946,Peter Buchman +1466672,Jo Katsaras +1633,Peter Pau +26726,Karl Maka +8482,Robert Mulligan +24206,Piers Ashworth +57087,Emma E. Hickox +55118,Paul Heiman +1194816,Jane Baker +136118,Bill Layne +51987,Martin Whist +960600,Gregory Mah +1203137,Neville Smallwood +1035668,Jane Greenwood +1016528,Theodore Toney +1322465,Cori Burchell +1707149,Erminia Marani +235351,Richard Hough +76264,Mathieu Cox +1535133,Jeff Barnett +1337476,Pyotr Pavlenko +52349,Cyril Colbeau-Justin +94298,Bartlett Cormack +3686,Johanna Ray +557706,Nic Raine +1581133,Hunter S. Ellis +18576,Charles Lawton Jr. +1127815,Gregory A. Gale +1286520,Marcello Giannini +1098702,Maria Caso +1342620,Gary Gagliardo +7967,Peter DeSeve +12774,Deborah Moore +8809,Traudl Junge +1052132,Paul Koval +1458347,Ira Turek +1441345,Tanya Hudson +1395902,Robby Baumgartner +17210,George Furla +1662177,Anand Modak +1511695,Dick Lawrence +182168,Gary J. Wayton +1603305,Mustaque M. Ashrafi +42635,Erin Cochran +69028,Leland Hayward +16733,Peter Wenham +1399562,Ricardo Cruz +1639063,Robert Weiner +14712,Randy Edelman +41870,Jacques Hinstin +119772,Marlene Rubenstein +10641,Stephen B. Grimes +3453,David L. Wolper +1428974,Stephen Lim +1268548,Graeme Orwin +1713391,Kevin Geiger +3079,Giles Nuttgens +1392667,Mark Stephens +1072285,Godfrey Cheshire +139474,Glen Keane +7205,Giovanni Natalucci +60216,Jane Park +1392088,Greg Anderson +104507,Steve Gomer +15858,Tim Hunter +66919,Robert Dillon +41629,Marie-Madeleine Paris +1484143,Adrienne Atkinson +3222,Charles Mulvehill +29098,Jerry Wald +1586927,Kevin Du Toit +932118,Sydney J. Bartholomew Jr. +423,Phyllis Huffman +72063,Carey Wilson +1081129,Barbara Sonneborn +1558427,Michael Stanish +1761059,Adam Braid +1149268,Elan Papa +1413950,Danuta Skarszewska +1412242,Thom 'Coach' Ehle +1615290,Tom Woodington +17229,Jeffrey Eugenides +1440293,Terrie Velazquez Owen +1400373,Josh Bleibtreu +14350,Richard F. Mays +1635090,Jonathan Graham +46081,Thomas Kloss +1520164,Dennis T. Benatar +1784,Anne Ross +1096493,Jesper Osmund +29213,Joanna Moore +1037822,Morgan Dews +1428259,Ellen Dumouchel +1406897,Dave Weinman +1412702,Thomas O'Neil Younkman +1400537,Richard Ford +1352977,Valerie Zielonka +18831,Daniel Dencik +984997,Bruno Jobin +5841,Cotton Warburton +932363,Mariano Barroso +111300,Eddie Barclay +69814,Ellsworth Fredericks +960074,Keith Bilderbeck +1330609,Dina Goldman +1680301,Harrison Palmer +108510,Charles Bruce Millholland +7409,J.B. Rogers +4141,Robert Estrin +32608,Brad Simpson +224395,Ross Dowd +1400352,Jose Luis Montero +1413994,Henrietta Frazer +1327910,Lyse Pomerleau +1000,Dan Weil +132212,Tim Smith +1341754,Claire Hewitt +1440735,Nancy Stimac +1532473,William Ely +77492,Maureen Sweeney +40107,Stephanie A. Marquardt +21864,William D. Wittliff +70711,Sid Griffiths +37364,Harry Spalding +87392,Leo Rosten +1978,Iain Softley +1122686,Sergio Merolle +1737955,Maggie Phelan +1191532,Franco Vanorio +9635,Brian Aldiss +1833608,Eliza Rayfiel +3768,Xaver Schwarzenberger +1418403,Glenn E. Moran +1892495,Tom Osman +100835,Janice Burgess +100629,Bruce Kessler +33166,René Clair +1385928,Amy Ritchings +31654,Chris Smith +1780713,Stephen Sobisky +958449,Jason Osborn +143559,J.A. Howe +1602313,Stefan Würzl +1712004,Polly Earnshaw +9119,Gerard Soeteman +957,Matthew Vaughn +76198,Kent C. Lovell +929404,Kathleen Beeler +54983,André Abujamra +11301,Lucy Allen +1337417,Sean Mathiesen +1438594,Kyla Rose Tremblay +59724,Jonathan Shoemaker +116357,Scott Stewart +1054077,Greta Grigorian +1629319,Avner Bernheimer +9344,Hugh Bateup +1090618,John Rigelhof +1804395,Art Stone +17629,Peter Menzies Jr. +375,Bub Asman +1408850,Linda Gamble +1481011,Renee J. Vaca +1536231,Fred Carlton Ryle +1881567,Paul Kite +550574,Miloslav Spála +42086,John Isaacs +7560,Luca Bigazzi +66195,Eugenia Bostwick-Singer +7740,Marius Holst +38240,Peter Viertel +82307,Merzak Allouache +76240,Stephen Tolkin +65012,John Ketcham +56760,Elizabeth Cantillon +1761865,Suzan Cerceo +1413961,Stephan Fandrych +961165,Kim Davis-Wagner +29812,Clarence Kolster +1009842,Michael Scott +1619355,Gabriel Castro +1407205,Devin Sterling +23968,Phil Alden Robinson +4279,Jean-Louis Bompoint +1803795,Robert Finley Jr. +931835,Alan Withy +1427396,Andrea Young +23768,Ileen Maisel +1354926,Andy Bennett +1438607,Manuel Karakas +1017789,George Richmond +29887,Romana Fortini +119371,Giorgio Cascio +85964,Roderick Deogrades +41150,David Merrick +61647,Guy Oseary +1401644,Aaron Downing +9432,Eric Allard +69142,Jerry Brady +21873,F. Keogh Gleason +1406616,Chris Jargo +1401722,Matt McDonald +574396,Raimond Gaita +1422795,Sian Grigg +1453075,Taizô Saitô +1333903,Chris Burrows +75538,Michelle Allen +587974,Witold Chominski +14630,Mac Steinmeier +935542,Sven Kirsten +5733,Pierre Boileau +1410149,Paul LeBlanc +960923,Pennie DuPont +59851,Berenice Fugard +1567920,John S. Campbell +1437276,Josh Weiner +1566227,Donald F. Johnson +1043016,Eamon O'Farrill +1899133,Ruth St. Denis +102114,Germano Natali +1437610,Tom Brumberger +72917,Peter Klitgaard +9992,R. Anthony Brown +23461,Maxime Alexandre +112576,David Leonard +673,Bernd Eichinger +1484538,Susanna David +1539859,Johnny Lee Kwing-Kai +76418,Stuart Gillard +1338104,William Strom +18501,Dennis McIntyre +20513,Jeremy H. Smith +1441267,Andre Brouwer +56967,Andrew G. Vajna +1423702,Steven Parker +1562884,Charles Downs +1495190,Dickey Beer +1804885,Jindrich Hanzl +111346,Nils Wåhlin +46973,Andrew Parke +49907,Michele Imperato +1653447,Andrew Gaskill +23772,Rod McLean +1609506,Andrzej Gronau +1459440,László Görög +1551258,Ed Barton +1181711,Annette Hoffman +1460599,Andy Asperin +1463252,Michael Isaak +15813,Alan Menken +937693,John Sereda +1635809,Per Mørk +1472298,Joe Dishner +3353,Daphne Du Maurier +10591,Ray Simm +97389,Morgan Brown +549347,Terry Lennon +1410954,Pawel Wdowczak +76510,David Spencer +9255,Gloria Gresham +1172441,Gregory S. Hooper +34693,Stanley R. Jaffe +119770,Tom Ellingwood +29895,Alfio Contini +1378689,Lynn Chaulk +6207,Doug Hardwick +108820,Sam Benson +65858,Baker Bloodworth +54211,Thomas Tull +9799,Stuart A. Reiss +1879202,Raymond Karpicki +1461394,Jason Hand +19799,Mark Medoff +1851741,Eva Castro +1377457,Pierre Raph +5670,Mark Friedberg +1303218,Zach Danziger +25300,Andi Brittan +1420150,Steve A. Hagberg +1540889,Gabi Burlacu +51070,Todd Dagres +56906,Frank Prinzi +1559069,Shailen Dutta +1039480,David Herschel +1204244,Leigh Folsom Boyd +1409742,Dan Mannix +1411666,Simon Godfrey +1390538,Sherry Gallarneau +1431999,Justin Ditter +57882,Bari Wood +568312,Ray Haboush +49247,Bernhard Eichhorn +1780711,Sonny Pettijohn +1399479,Julie Kuehndorf +80601,Richard L. Breen +57153,Conrad Hool +585037,Chan Hon +1120573,Eric Wolfe +78751,Ashutosh Gowariker +1705303,Arun Lamba +68607,Robert Halmi Sr. +1790462,Petrie Alexandra +71633,Jeff Clark +9837,Günther Krampf +61120,Rhonda Baker +53973,Gauri Khan +1899126,Hal Sullivan +1395028,Bruce W. Talamon +19955,Debra Hanson +1552182,Michael Etheridge +232198,Geza Herczeg +1018091,Alton Walpole +59959,Silvio Horta +53784,Jacques Dugied +1378226,Michael Herbick +1476031,Tom Lucas +1727323,Mick Gormaley +15222,Arvinder Grewal +1614160,Dan Moore +66086,Mary Agnes Donoghue +67349,Harry Keller +1363081,Stuart Renfrew +130569,Kevin Lafferty +1418270,Tony Williams +1410572,Stephanie Allen +1823796,Alan Shultz +997,Thierry Arbogast +1625916,Glenn Hughes +1562802,Hal Sanders +1041664,Sarah Langley +1552027,Petur Hliddal +1426003,Kathryn Buck +1129,Slawomir Idziak +1493010,Abolfazl Alagheband +57113,Dan Gilroy +1458872,Carolina Häggström +25398,Thomas Burstyn +1546554,Pat Scanlon +1319734,Jindřich Goetz +54249,Jackie Marcus Schaffer +1333991,Ethel B. Borden +1886665,Ron Shane +1551976,Bernhard Vogl +1447362,Eric Oliver +11874,Neal H. Moritz +62028,Reuben Cannon +235503,Joonas Berghäll +22020,Barbara Kopple +1400338,Martin Schloemer +1416984,Konsta Mannerheimo +25171,Martin Obzina +36646,Alexander Ris +1531874,Robin Fredriksz +1673817,Karen Schell +53097,Antoine de Clermont-Tonnerre +1529990,Season Kent +10762,Veronika Jenet +552206,Yang Teng-Kuei +1585860,Aenne Plaumann +1603334,Buck Robinson +1640909,Julie Adrianson-Neary +1557497,John Cassella +5581,Elliot Goldenthal +21527,David Scarpa +1065246,William Louthe +1808,Geraldine Peroni +176063,Hal Sutherland +978481,Rona Jaffe +1560272,Nila Neukum +10495,John Grover +1318520,Astrid Sieben +1700837,James Sanchez +1767042,Weylen Tseng +81252,Parkpoom Wongpoom +1595990,Asta Ots +1661539,Sophie Drouin +2585,Eric Clapton +1005624,Robert De Mora +70848,Santosh Thundiiayil +1258212,Katy Jones +27265,Barrington Pheloung +37543,Paco Femenia +1426324,Tim Stevenson +91989,John Wood +73702,Buddy Epstein +1402121,Carlos M. Torres +1308291,Luca Borghese +993812,Sheng He-Yu +54040,John Lee Hancock +1118130,Patrick Kennedy +4780,Wolfgang Becker +1733726,Saida Elidrissi +7736,Pål Sletaune +95237,Luigi Scaccianoce +35746,Dave Polsky +2690,Peter Weir +1575995,Darren De'Ath +1827970,Robert Botha +1338147,Bruce Di Valerio +1406067,Robyn McFarlane +1446209,Steven Marble +79492,Michael Manasseri +31124,Tim Boland +23787,Deborah La Mia Denaver +13589,Rosanna Norton +1440822,John Pospisil +1629471,Udom Pinthong +1389976,Irene Chawko +1401784,Jennifer Teves +19252,Julie Hughes +45627,Nelson McCormick +83068,Paul Moen +1447431,Dennis Venizelos +41332,Marcus Viscidi +51883,Roy Budd +7020,Trevor Jones +1407690,Toni Cartu +1287814,Noreen Landry +56147,Paul Brizzi +58260,Martin Weisz +128483,Jean Redon +77121,Randall Miller +23430,Timur Bekmambetov +1723387,Roald Pay +1385930,Kirsten Kearse +91999,Ronald Stein +12846,William A. Fraker +1179781,Milenia Fiedler +1534174,Tom Dudley +1250547,Linwood G. Dunn +2993,Martin Ransohoff +21556,Tsuneyuki Morishima +8569,Hank Levine +1454512,Nikki Moss +124862,Sari Suominen +10231,Florian Hoffmeister +72177,James Roy +69331,Ethan Wiley +1561591,Richard Patrick +1447474,Jay Jackson +2422,Yann Tiersen +986159,Renee Johnston +71446,Judy Freudberg +671520,Screaming Mad George +1402018,Tina Harrelson +576249,David Lewis +1896604,James J. Isaacs +74567,David Witz +22428,Richard E. Westover +1781848,Farrah Fox-Collis +254335,Gordon Davidson +6898,BT +95828,Ashley Burnham +61845,Rana Joy Glickman +57708,Robert L. Rosen +1203310,José Pablo Feinmann +108929,Grace Lee +1036829,Michał Waszyński +1304264,Jens Sturup +1342250,William S. Maxwell III +57315,T.H. White +935835,Arthur H. Lewis +92343,Matt Rebenkoff +7335,Walter Newman +1583827,Matt Johnson +1441392,Christine Wostak +1558701,Dhana Gilbert +54889,David Schechter +1400399,Katherine Rose +203953,Eric Simonson +1536088,Mari Grimaud +1418309,Suzy Wood +35143,Joel Diamond +64338,Pamela B. Warner +1355532,Kerry Lyn McKissick +30410,Paul Malvern +17147,Pamela Martin +175973,David Yallop +108116,Jeff Werner +1119046,Guy Vasilovich +1096489,Margarete Jangård +1605716,Pascal Sautelet +233247,William S. Gilbert +35145,Adrienne Stern +1418313,Lyn Jones +6882,Michael K. Bauer +111301,Jo Boyer +62512,R. Lee Fleming Jr. +3350,Gerald Fried +1840479,Graham Bishop +72703,Peter Benison +1198825,Randi Wells +66706,Joe Madden +1459906,Jamie Stevenson +15327,Nathan Crowley +1880081,Seiichiro Hagakusawa +1405795,Tim Cavagin +1299130,Newton TerMeer +1643717,Anthony Carlino +66908,Sharad Patel +1404529,Craig Hayes +40150,Stanley Myers +4650,Orijana Kuncic +1562262,Keenan Wyatt +1734859,Karen Swallow +473,Brian Tufano +7730,Caroline Ross +3643,Ferris Webster +1146055,Mika Waltari +1566832,Allen D. Easton +20430,Radu Mihaileanu +1266719,Giovanni Masini +1137223,Gregor Arnold +67564,Éva Gárdos +15357,Nina Fallon +141475,Billy Corben +1341808,Kevin E. Carpenter +1413926,Jo Newberry +53072,Hunter Gray +15090,Alun Bollinger +40531,Jean Aurenche +60068,Deborah Lurie +63778,Kirk Shaw +64172,Nicholas Sparks +86378,Alfredo De Villa +1851738,Martin Milligan +55232,Steve Yaconelli +8717,Milo Anderson +1117850,Zilong Guo +11112,Nira Park +1610114,Piotr Zawadzki +1208544,Martin Taras +1345595,Scott Millan +1408196,Rick Rasmussen +1538440,James Keys +29401,Donna Langley +1334778,Steve Callas +67993,Pål Gengenbach +1424049,Nancy Fogarty +5492,Aurelio Crugnola +24287,Giuseppe Lanci +16650,Robert A. Ferretti +55414,Richard Alwyn +22087,Roland Gross +58703,Michael Linn +1408464,Francis Darwall +57068,Gina Mittelman +986350,Josan Russo +107482,Richard W. Haines +1526847,Angela E. Thomas +91246,Chris Haynes +1625919,Wayne Petrucelli +17699,Bruce A. Block +931882,Michael Wolk +1421731,Douglas Craik +69373,Jacques Blain +1425851,Ekaterina Omakhanova +91472,Neil Levy +1339819,Julie Anne Moore +11002,John Myhre +72898,Caroline Hewitt +73679,Atsushi Numata +115355,Michael Nadeau +1661564,Rosemary Zurlo +1455459,Todd Boyce +8683,Victor Abbene +150207,Jeffrey Hornaday +1566279,Randall Bahnsen +20541,Josh Outerbridge +1429247,Drew McKeen +21672,Donald E. Westlake +1423417,Michael Onder +39624,Peter Gabriel +41698,Josann McGibbon +1767008,Erik Ajduk +10353,Michel Choquet +61154,Collin Friesen +1128149,Frank Hildebrand +93513,Saeko Himuro +223371,Henry Myers +9055,Arthur Freed +1205337,Tim Bider +1762,Richard H. Kline +128436,John Colton +1540474,Carl Isherwood +1066976,Toby Carr Rafelson +21118,James Muro +56960,Hossein Amini +68290,Hidden Faces +44954,Francesco Barbieri +35760,Catherine Smith +9758,Simone Knapp +1018093,Noel M. Smith +39973,Caldecot Chubb +931236,Charles Swickard +73266,Yves Ulmann +13429,Robert LoCash +1102569,Jason Orans +56947,Peggy Rajski +1447333,Dan Harder +91071,Ron Petagna +82255,Peter Israelson +33039,Madeleine Remy +2706,Steven Haft +92386,Marissa Littlefield +9156,Andrew Davies +65000,George Zaloom +62121,Steven Essam +40532,Robert Dorfmann +113052,Randall Guth +5710,Elizabeth McBride +9651,Craig Berkey +1399287,Mark Dornfeld +33806,Michele Lupo +1407224,Amy Marsh +562,Richard LeGrand Jr. +75729,Tristan Milani +1855387,Irene Iovan Calangiu +1030160,Richard Raymond +1141555,Harry Rose +1610055,Jacek Hamela +1652742,Jonathan Kovler +1663326,Ernesto Carrasco +25750,Maria Schicker +52912,Christine To +1378217,David H. Allen +20629,George Miller +46446,Rikke Jelier +21526,Rod Lurie +1790468,Susan Morris-Bean +61023,Lewis Newman +5840,Edward Colman +1341864,Randy White +61019,Harry Hook +1552167,John G. Campbell +551518,Halle Eaton +76200,Bruce Rowland +1407672,John Ward +1574662,Rina Strause +31518,Chris Salvaterra +1418468,Andrew Waisler +957570,Juliet Polcsa +1566831,David Slonaker +36017,Franco Mannino +1535398,Robert Ulland +91250,Hal Fimberg +33146,Radu Corciova +1707454,Ron Ottesen +62804,George Maloof +1745232,Stuart Lowder +12342,Franklin Coen +10820,Barry Chusid +95922,Stephen Crane +1566268,Kristina Abbott +37944,Lee Mo-gae +35976,Edward J. Pei +15317,Alexandra Altrocchi +8707,Christine Wada +1774871,Ida Lee Henderson +50976,John Woodcock +2721,John Daly +988882,Eric Sundahl +29982,John V.A. Weaver +958401,Danny Hiele +31102,Gene Borghi +1335044,Diana Conway +1126353,Stephen Purvis +931326,Francisco Nieva +1413932,Barry Tracy +11312,Pat Banta +1630529,Franklin Jones Jr. +1462617,Willy Hartland +1448999,Beth S. Morris +1470188,Julian Whatley +1630533,Wendy Banks +1205631,Paul Frost +1063917,Hideshi Ohi +16333,Gilbert Adair +1274810,Timothy A. Carpenter +30829,Mario Van Riel +1425861,Mila Koudriashova +5553,Harry Gregson-Williams +4376,José Luis Alcaine +1447161,Pierre Brunet +52451,Kelli Konop +1020732,Marzieh Makhmalbaf +1552181,Chris Call +70244,Nancy Dowd +63198,Danny Draven +49344,Max Gottlieb +33010,David Gurfinkel +1407027,Barry Wetcher +1645456,Clive Copland +1412119,Amy Andrews +1554887,Mark Gillings +977828,B.P. Schulberg +19914,Outi Keskevaari +1615286,Dean Gordon +1074163,G.A. Aguilar +235054,Aleksandr Borodyanskiy +146919,Mori Masaki +36823,John Blezard +1462707,Michael Alkan +6827,Joe Bini +1638,Eugene Gearty +66533,Shawn McFall +91574,Emmanuelle Arsan +1566837,Mitzi Casida-Jones +957202,Nena Smarz +24721,Walther van den Ende +1545803,Mark Bakunas +20075,Philippe Sarde +64191,Lawrence Guterman +1120225,Roberto Forges Davanzati +1016336,Nelly Quettier +1661568,Michele Virglio +26729,Teddy Robin Kwan +52172,Sam Newfield +1893229,Josie Fife +55741,Klaus Scheurich +86266,Dan Studney +7757,Robert W. Laing +1811627,Ann L. Thornberg +1621401,Hub Braden +59682,Joanna Foley +1709648,Madeline Ann Graneto +1177336,Gilles Corbeil +49451,Mario Amendola +67609,Daniel P. Mannix +147057,Karl Lagerfeld +1424898,Brian Walker +1738166,Kurt Peterson +1420166,Cecil D. Evans +1458586,David Giesbrecht +25015,Elisa Goodman +1725,Larry Gross +11747,Wendy Bell +1877150,Suzanne Pastor +1388805,Fred De Gresac +1576012,Alison Mahoney +123132,Jac Schaeffer +1673230,Nicole Gregory +1355537,Mark Franken +43146,Tristan Whalley +586438,Edmond Rostand +16654,Michael S. Glick +24959,Maya Shimoguchi +55985,Tracey Wadmore-Smith +1708270,Sylvain Jouvet +1423852,J. Patrick Daily +69019,Rick Cleveland +1453227,Bill Kellard +1611809,Jordan Lindblad +113046,David Giammarco +1649580,Paengrit Saengcha +1399326,Jim Henrikson +1689963,Tim Ryan +108787,Genevieve Nicholas +1378175,Bruce Pearson +30580,Philip Smith +8277,Arne Schmidt +100332,Manuel Berenguer +8390,Barrie Melrose +553920,Brad Schiff +175505,Johnny Green +56667,Max Howard +7204,Ken Court +1385922,John Scaccia +4578,Steve Cosens +229247,Keith Griffiths +1558698,Vince Cordero +56765,Leslie Shatz +25749,Milan Babik +1659769,Abelardo Kuschnir +6792,Jose Villaverde +1449162,Michael Shocrylas +107730,Tran Anh Hung +62661,Erin Berry +1406128,James R. Tynes +9585,Michael McLean +1577371,Luke Green +4336,Jane Kachmer +1637476,Lloyd Isbell +40336,Masashi Ando +1565154,Tom Meadows +21681,Nobuhiro Suwa +106244,Randall M. Badat +1733794,Laetitia Beaujard +1585446,Laurent Dufreche +1552518,Jeff Plauster +551522,Peter Stolz +53195,Ugo Tucci +1318663,Bobbie Mannix +1599010,Bonnie Hlinomaz +124280,Judd Winick +1897696,Giulio Mastrantonio +33859,Lamberto Caimi +56032,Moshe Diamant +1708271,Christian Chabot +1577463,Andrea Blasich +938099,James Gallego +1546555,Barry Lehrman +1542608,Kôzô Tashiro +46238,Keiichi Uraoka +17667,David Buttolph +1539840,Jean Garcenot +1485215,Mary Rodgers +72702,Lisa Demberg +569160,Anna Fredriksson +1458334,James Davis +21206,Graham Yost +11359,Robert Tapert +1401643,Ashley Johnson +1745258,James K. Lee +1296337,Lee Se-ho +128,Philippa Boyens +13496,Marleen Gorris +235504,Mika Hotakainen +1432798,Lynn Pressman-Raymond +686,Willard Huyck +69372,François Boulay +1319747,Garet Reilly +1418312,Keryn Ribbands +99667,Alexander Hall +1474332,Charles Randolph +1207715,Jennifer Barrett Pellington +68034,Jeff Buhai +1798036,Willy Loedts +1371238,Hans Natge +1548851,Rossano Galante +932179,Brett Botula +11986,Samy Halfon +1401107,Ginger Theisen +42281,Scott Herbertson +1597217,Robby Bartholomew +1141551,Michael Barringer +14620,Tommy Vögel +107490,Jaco Van Dormael +959364,Kays Al-Atrakchi +1586333,Zdenek Vávra +1415636,Eric Lee +98456,Rick Natkin +1031815,A.W. Gryphon +39727,Ronald G. Smith +1168192,Schooly-D +52047,Ilan Rosenberg +186748,Peter Jobin +9943,Barbara Baum +30027,Kentaro Haneda +14436,Edwin Butterworth +107941,Yudai Yamaguchi +49913,Alexandra Welker +1447483,Rick Moore +1052537,Lynn Fainchtein +1043368,Drew Jiritano +1552882,Marcie Romano +1635808,Marius Müller +1558204,George Hartmann +1117864,Hongshi Lu +57621,Hang Yi +65957,Romeo Díaz +5956,Peter Andrus +1745222,Brad Greenwood +9441,Ellen Heuer +9204,George S. Clinton +16533,Stanford C. Allen +8752,John Wright +1007702,LeRoy Prinz +1141747,Lambert E. Day +43084,Rainer Söhnlein +41712,Peter Stone +1964,Edmond Séchan +759,Antoine Héberlé +1016047,Robert DeFranco +1337413,John Simpson +1318146,Michael Devine +20192,Brian Taylor +1408279,Douglas Morton +1442214,Alice V. Kaiserian +1371100,Guy T. Wiedmann +1401745,Edweana Wenkart +32487,Robert L. Stevenson +66886,Robin Gibb +1071172,Louis De Francesco +60790,Jonathan Tunick +1853281,Paris Morgan +1378172,Edward M. Steidele +31207,Helen Hunt +24635,Helge Weindler +100544,Reg Powell +1593016,Vladimir Bogdankevich +1214380,A L Katz +20026,Samira Makhmalbaf +27219,Charles Evans Jr. +52377,Scott Einbinder +1765286,Lee Howard +1421739,Christopher Tammaro +35876,Charlotte Armstrong +3415,Jerry Zucker +1459196,Sarah Mays +289148,Stewart Schill +73720,Damon Intrabartolo +1856487,Richard Mayone +52006,Jules van den Steenhoven +1086160,Lisa Freiberger +56076,Diane Weyermann +57027,Louis D'Esposito +1536878,Wayne Baker +43154,Eimer Ni Mhaoldomhnaigh +1130016,Riccardo Domenici +1038285,Alex Vendler +1567315,Dan Callis +1183874,Philip Mitchell +1341506,Eric Drilling +1657914,Jon Sibert +19114,Brigitte Taillandier +94753,Yoram Ben-Ami +1123134,Yong-gyu Kang +94166,Gordon Wiles +1855388,Joe Sperandeo +17880,Wesley Strick +60585,George Saunders +1552883,Mary Helen Leasman +1377133,Merie Weismiller Wallace +1173965,Vladimir Persov +1139943,Roberto Pariante +40054,Andrew L. Stone +20860,Laurent Chouchan +15798,Lesli Linka Glatter +4525,Jakob Claussen +1447119,Martine Giguère-Kazemirchuk +30507,A.B. Guthrie Jr. +1334942,Almir Kenović +1441324,Bill Dawson +1411706,Robert H. Lemer +563074,Michael Whittaker +1385151,Manuel Zambrana +55273,Robert Klane +119556,Letitia Ghenea +67427,Norman Reilly Raine +1120113,Richard P. Levine +4913,Daisy Curbeon +1077470,Andy Hill +14748,George Frost +1337475,Simphiwe Jodwana +403314,Jason Hamer +1727315,Niles McElroy +1002959,Walter Lundin +26986,Rick Sharp +122,Klaus Badelt +1536113,John McKenna +1118742,Tomasz Dobrowolski +3431,Bruce Joel Rubin +1337469,Nic Ratner +41828,Peter Rogers +1472169,Michael Kirchberger +75437,Phil Heywood +578787,Peter Burrell +1007551,Antonio Mercero +1566264,Emily Aaronson +1401695,Thomas Van Koeverden +1338291,Susanna Lenton +121614,Kenneth Glenaan +1333901,Andrew Gartner +1167476,John Bryan +1462070,Pat Campbell +13288,Roger Edens +1409418,Tuck Tucker +1404283,Colleen Bachman +19500,Thomas K. Gray +12940,Michael Jablow +60209,Philip Halprin +1402249,Thomas Duval +119177,Marco Valerio Pugini +957930,Earl Watson +133635,David L. Cunningham +1209228,Laura Kennedy +1311102,Julian Henriques +43398,Linda James +1445839,Jenn Emberly +53012,Lyle Workman +76273,Philippe de Smet +1424160,Cameron Steenhagen +1534438,Susan Giammusso +928406,Molly Bradford +114640,Nevil Shute +1123065,Tsutomu Yanagimura +1614193,Oscar Mitt +34936,Alan Burnett +12892,Joel Cohen +16570,Rhonda Young +58097,Michael Kalesniko +1420193,Arne Hastedt +37654,Rino Mondellini +1776983,Kenneth L. Johnson +1404271,Gloria Montemayor +1036353,Nanu Segal +1392100,Todd Isroelit +1525890,Barbara Taylor +1401593,Phil Pastuhov +1008073,Francisco Gózon +1096492,Marta Clarissa Hernandez +1327524,Cosmas A. Demetriou +5060,Ian Whittaker +3098,Nino Rota +1462696,John Wong +1400820,John T. Van Vliet +1551025,Tom Nelson +1535098,Randy Kerber +932223,Erez Laufer +111745,Frank Sebastiano +1474687,John S. Dorsey +1433917,Ken Lavet +1427522,Ben Gladstone +1401668,Ed Cotton +14527,Rafael Ruiz Esparza +29806,Francis Edward Faragoh +15841,William Goldenberg +198764,Hank Steinberg +363761,Liza Marshall +1391115,Paul Wilson +1857345,Thomas Michael Ryan +1336949,Raul V. Carrera +475380,Ben Browning +1695807,Jeffrey L. Jamison +1530756,Marcia Scott +1414965,John Schiefelbein +1537578,Ladislav Fuks +1535399,Fred L. McLane +17849,Nathan Amondson +1612793,Sara Jane Slotnick +1557613,Jan S. Owen +69661,Rob Kerchner +23825,Helena Spring +11656,Nancy Wilson +1389592,Alonzo Ruvalcaba +975660,Jamie Horton +1540887,Ovidiu Marginean +1334715,Adolf Böhm +11351,James Mather +10408,Douglas Twiddy +1674654,Gregory J. Cimino +1324121,Kris Hill +1521668,Gabriel Tapia +1604015,Gregory Jamrok +1328822,Milena Koubkova +1325187,Rolland Pike +1102133,Gordon Hollingshead +85764,Louis Haszillo +1765801,Elena Holden Tuens +1287168,Steven Finestone +589385,Antonio Musu +1413172,Sue Fox +553087,Yoshiko Samejima +1594974,Asa Hammond +1461357,Kyle Odermatt +1759722,Mark Whiting +1143709,Matthew Barr +15158,Peter Loehr +19836,Mara Collazo +837430,Erik Disch +567565,Rose Franken +1552533,Gary Jones +1303219,Brandon Danziger +19459,Nelson Gidding +1332909,Alexander Stuart +46090,Leslie Weisberg +1558696,Cortland Boyd +1379396,Miller Drake +60934,Patrick Esposito +37502,Francisco Canet +57892,Ken Thorne +161961,Paul Stader +1330242,Drew Caffrey +1993,Lloyd Levin +1566254,Micah Y. Bisagni +5328,Kerry Barden +9360,Suzanne Tenner +1328823,Justin Warburton-Brown +1929,Richard Shepherd +1395275,Richard Foreman Jr. +122520,Ryan Barton-Grimley +5641,Inez Regnier +133439,Edwin B. DuPar +17853,Nicole Lobart +80453,Hye-Weon Shim +1727284,Paola Sforzini +1402104,Kim M. Ferry +16593,O. Nicholas Brown +1754419,Mike Fantasia +1020068,Álex Phillips Jr. +30491,Frank S. Nugent +1075658,Souleymane Cissé +43851,Kenneth Anthony +9444,Marilyn Graf +87240,Jerzy Lukaszewicz +14627,Roland Künzel +130056,Anthony Kimmins +66767,Lee Joo-Ick +1565962,Felix Hollaender +3484,Willis H. O'Brien +1603303,Richard C. Miller +1211632,James Groetsch +1335209,Adam Gerstel +1064883,Harry Makin +551820,Futoshi Nishimura +1717517,Betty Krul +29893,Otto Heller +28236,Daniel Haller +13569,MacKinlay Kantor +1398190,Veselin Karadjov +1018349,Jane Tattersall +1483228,Sebastian Marino +31498,Paddy Chayefsky +55169,Michl Britsch +121339,H. Duane Weaver +73399,Dario Piana +4126,George James Hopkins +8299,Andrew Mason +1041470,Kôji Maeda +67775,Ernestine Gilbreth Carey +1368063,Vinton Vernon +12491,Patricia Highsmith +1335161,Alex Ellerington +53470,Sam Zaharis +1567961,Phil Scalisi +935840,Rick Roessler +1394740,Helene Lamarre +960161,Patricia Cuccia +59636,Scott McPherson +1400078,Fay McConkey +42039,Joseph Martens +96323,Marcel Sarmiento +1800146,Jacolyn Baker +129612,James Bruner +1242315,Sylvia Fine +15227,Sharon Smith Holley +102871,Stephen R. Greenwald +584335,Daniel Burman +1469625,Hoa Anh Tran +1193568,Aaron Latham +1143389,Ben Baird +8385,Jean Paul Gaultier +7717,John R. Jensen +1467187,Roswell Hamrick +1805190,Anthony Nisi +54261,Michel Schöpping +1287668,Guy Speranza +1367296,Brian Hillard +1379643,Michael Conway Baker +4447,Ann Ruark +1371285,Christian Rajaud +1424446,Brette Krinick +1842849,Murray Solomon +20154,Oliver Smith +1027014,Howard Fogetti +19844,Hans Burmann +1195142,Jeff Wallace +13959,Vera West +119476,Zelda Barron +11266,James McTeigue +1546827,Al Lewis +1531875,Jeannine Bourdaghs +37335,Scott Lambert +12415,Richard Matheson +61620,Robert Mullis +1767049,Barry Dean +1377129,Julian Levi +29665,Anthony Nelson Keys +1170382,Augusto Frassinetti +34528,Julie M. Anderson +20568,John Axelrad +1408461,Lindy Blythe +1078858,Harry Caplan +100686,Antonio Gimeno +62815,Julia Bartholomew +11385,Ivan Sharrock +6688,Anna B. Sheppard +133457,Allan Aaron Katz +1633538,Maria Gonzaga +1319744,Linda Matthews +73587,Arthur Silver +1407887,Christian Beckman +114841,Stephen Berra +20295,Moritz Borman +83287,Lynne Ramsay +99080,Harry Ralston +11001,Kevin Stitt +1833853,Robert Bradshaw +1709777,Leander Lacey +1567966,Sharon E. Alshams +1389541,Eddie Knight +1772049,Dominique Petrot +1337468,Nancy Allen +1673529,Jim Rankin +548441,Whit Norris +4146,Patrick Markey +25066,Stefano Maria Mioni +1667229,Jennifer Alisa Kornkosar +229263,Benoît Jacquot +968858,Thomas Townend +1341859,Beth Sterner +1739794,Linda Luong +60400,Joe Halpin +10473,Max Douy +1025729,Stephen Seymour +18855,Ralph S. Singleton +15382,Hugh Perceval +29206,Garrett Grant +2999,John Jay Moore +65428,Michael Haigney +1470173,Teresa Mastropierro +1760092,Patrizia Massaia +49063,Barry Shear +1552352,Phedon Papamichael +7728,Basil Poledouris +1762647,George Patsos +1128098,Joseph B. Mauceri +55696,Harvey Clermont +1176364,Jack Erickson +1039256,Tara Cowell-Plain +69317,Hugo Primero +1573082,Mitchell Andrew Lillian +61310,Isen Robbins +1368858,Stefan Manchev +1761902,Elizabeth Chambers +1402026,Kenton Jakub +1434549,Rebecca Yeldham +1740770,Sam Donovan +19862,Lucy Fisher +493,Michael Kahn +121608,James Westby +1552541,James Marbas +51327,Tom J. Astle +114629,Philippe Mora +20689,David Braun +53014,Jessica Bendinger +1125475,Mario Isabella +38805,Andrew Weisblum +64963,Thomas Allercrantz +71292,Daniela Skala +122441,Harry Sinclair +1397846,Craig Barron +1085562,Philip Alberstat +1462709,Matthew Adams +61771,Roy M. Brewer Jr. +91245,Arthur Morton +38938,Matthew Gross +90385,Richard Vetere +31141,Perry Howze +1877355,Elizabeth Bolden +1780219,Robert Pawloski +1187812,Norman G. Arnold +1767038,Abeth de la Cruz +1597556,Laszlo Bene +10643,Herbert Westbrook +1521759,Amy Tapper +62683,Hal Sadoff +1521660,Mauricio Lule +113515,Jeff Pope +1322016,Bob Morgan +32398,Michael Gore +1401259,Robert G. Henderson +46443,Charles Beaumont +212408,Johan Renck +105287,Scott Harris +1414182,Marilyn McCoppen +1159966,Andrew D. Cooke +1425862,Bettina Bartl +1469316,François Senécal +1412330,Amanda Zenil +1804,William Paul Dornisch +1132116,Robert J. Siegel +39853,Val Guest +68426,Albert Fennell +6117,Declan Quinn +1418802,Tess Natoli +1531421,Ernest Johnson +17426,Simon Arnal +1070419,Carl Stephenson +190579,Paul Quarrington +123150,Mike van Diem +112194,Alexandre Machado +79164,Anne Stulz +1498834,David Spiers +103020,Joseph H. August +1420145,Tara Smith +1325677,Jonathan Harvey +1394070,Dan Lemmon +1395365,Richard Friedlander +1540851,Sascia Ippoliti +80938,Maki Horiuchi +63131,John Hill +1347930,John Ganem +1706098,Peggy Shannon +1564869,Gary Shepherd +1464024,Jack B. Bernstein +1613273,Randy McGowan +1571714,Mateo Barnstone +1673552,Cody Laudan +30548,Alan Le May +545212,Sunij Asavinikul +1673548,Steve Linn +1877370,Dotti Thompson +1405427,Carol Flaisher +10833,Peter Amundson +30459,Gyula Pados +1549276,Adam Khalid +1593,Joseph Middleton +47815,Madeline Fontaine +396635,Burt Weissbourd +1762795,Joost Clerinx +1877139,Donald R. Casella +1567995,Charles Felstead +952327,Larry Leker +1405420,Gary Shephard +12436,Daniel A. Lomino +1615563,Ed Li +1557578,Steve Cummings +1581147,John Stanborough +1317820,Buddy Enright +403,Javier Aguirresarobe +1823498,Christel Kruse Boorman +1662313,Sheila Fahey +20896,Patricia Broderick +1328798,Danielle Launzel +1460608,Emilio Ghorayeb +18344,Paul Schiff +54332,Benoît Barouh +8098,Anthony A. Apodaca +1881565,Jim Smith +233449,Nas +130817,William Tyler Smith +91804,Bruno Zanoli +1337670,Vladimir Kaloyanov +1545299,Allan Feildel +5045,Dan O'Bannon +1428008,Victor Davidson +1336061,Craig Markey +63422,Philippe Le Sourd +56969,Lynn Pleshette +64949,Phil Nibbelink +1320303,Julia Sereny +13284,Stanley Donen +2792,Carl Mayer +74968,Leslie Ann Anderson +1899321,Haruo Isono +1428272,Laurence Méry-Clark +19313,Allan S. Gordon +1741454,Richmond Horine +119851,Joel Briskin +2117,Robert O. Cook +50194,Wolfgang Wehrum +73094,Michael Hegner +1649573,Chajchadawan Chumkham +63964,Miles Goodman +103925,Maurice Geraghty +99920,Allison Louise Downe +1652234,Rob McCallum +1836098,Julie B. Crane +1405196,Jonathan 'Chunky' Richmond +1550072,Sukey Fontelieu +20690,Sam Perlmutter +1080873,Victor Mignatti +1436190,Brian Bernstein +16729,Graham King +999687,Christine Anne Baur +1508441,Ronman Yiu Yan Ng +222572,Marion Orth +1143711,Patricia McKiernan +56157,Terry Turner +1870795,Beniamino Joppolo +57259,Lauri Apelian +31653,Sarah Price +58258,Pascal Tosi +58180,Stanley Mann +88117,Christine Woodruff +63047,Frank Deese +1407881,John Copeman +1287813,Daniel T. Cahn +4579,Mags Arnold +96003,Richard Einhorn +114427,Nisan Takahashi +1549171,Kathleen Gore-Misko +1427554,Robin O'Donoghue +1345608,Lance Gilbert +14090,Tony Adams +62139,Cindy Cowan +120999,Charlotte Brontë +1487840,Chûji Kinoshita +24514,Eric Wurst +1392112,Sophie Boyer +101709,Edward Ludwig +69953,Tania Rose +1447459,Roberto Casale +2889,Richard Beggs +1748509,Christopher K. Gee +957663,Thom Enriquez +1567319,James Thibodeau +1798309,Jill McGraw +88643,Albert Glasser +1738164,Marc Wall +1624042,Jay Silver +1299406,Dins W.W. Danielsen +32904,David Swayze +56452,Alan B. McElroy +1338674,Daniel Maltese +1114936,Nobby Cross +69936,Roland Kibbee +1313001,Nathaniel Shilkret +62556,Fred Walton +1459187,Claudia Breckenridge +9248,Nora Ephron +1632426,Roberto Alberghini +142554,Kalle Max Hofmann +1399019,Robina Nicholson +77545,A. A. Milne +19808,Carola Ash +1708861,Lawrence Carroll +99383,Helena Kriel +928588,Freddy Luis +1584258,David Hunter +69375,Richard Speer +1841588,Chris Winter +1537463,Tateum Kohut +1815448,Thomas Garris +62062,Hinju Kim +54448,Ismail Merchant +3046,Lynda House +80216,Howard Michael Gould +43624,Kenneth MacMillan +95759,David Douglas +1549177,Mark R. Rubin +1576007,Marc Wolff +1262171,Edward Vorkapich +28865,Roger Towne +63709,Craig R. Baxley +67592,Mark Linfield +47465,Neil Hartley +1194837,Piero Portalupi +113725,William Goetz +1712105,Debra Coleman +1418149,Nieves Martin +1002740,Alfonso Sánchez Tello +1602148,Meir Dohnal +355197,Jack Kitchin +1408358,Des Whelan +1421725,Scott Frankel +1536110,Eddie Jones +578055,I. A. R. Wylie +1800,Charles Graffeo +1299029,Lynn F. Reynolds +1439800,Remo Ugolinelli +1002634,Tony Basgallop +67697,Stephen Onda +62238,Jim Seibel +1409702,Mario Chabot +70369,Javier Álvarez +14724,Richard Condon +1539063,John Francis Murphy +1416039,Kerwin Coughlin +1508479,Falele Ygueravide +61090,Malcolm Petal +11448,Allen Hughes +1437891,Sermpong Nimjaroenpong +1466329,Saxo Grammaticus +1117872,J.J. Harris +135796,Jay Craven +6558,Gordon Parks +1511682,Robert Laden +1341856,Hilda Hodges +1465333,Lindsay Feldman +672,Oskar Roehler +13434,Bruce Crone +4899,Scott Macaulay +121077,Scotty Rackin +10546,Fred T. Gallo +10769,Calder Willingham +1328380,David Davenport +991684,Jeri Sopanen +110962,Steven Okazaki +193339,David Decio +5671,Milena Canonero +35946,Ivan Maussion +588094,William Sloane +52739,Bertrand Faivre +20299,Alex Marquez +47204,David Charap +6478,Mary Bauer +11643,Alex De Benedetti +1525576,Rikke Dengso +15330,Paul Pattison +1870783,Scott Genkinger +9615,Jim Miller +58075,Bill L. Norton +1602869,Shane T. Anderson +1420162,Janice Janacek +10350,Raymond Lamy +1371422,Henri Meilhac +79140,Cyril Megret +14339,Robert Brown +1619131,Jocelyn Herbert +1999,Ed Shearmur +1398193,Ross Alan Weinberg +223827,Christine Z. Wiser +74695,James H. Ware +36134,Kia Jam +20554,Beate Mainka-Jellinghaus +1614225,James Anderson +29663,Wolf Mankowitz +122512,Justin Cook +95501,Yasujirō Ozu +1395329,Leann Murphy +68172,Frank Zito +1402029,Louis Morin +1342621,Jeff Spellerberg +1545745,Laurentiu Dobjanski +66674,Franco Rossetti +1483234,Ben White +148849,Victor Schertzinger +66883,Bill Oakes +1560271,Josh Kramon +7952,Randy Berrett +1373,Dan Hennah +1426765,Kevin Clark +59528,Flavio Martínez Labiano +1413930,Mickey Woolfson +46952,David Stiven +57229,Philippe Gautier +111411,Ahn Sang-Hoon +544150,Miguel Necoechea +1566834,Dominick Cecere +32348,Mike Murphy +67684,Climax Golden Twins +59853,David Ball +43150,Clive Barrett +1409233,Kirsten Fazio +21070,Mark W. Mansbridge +582705,Jan Pester +7097,Tadeusz Kosarewicz +590542,Herman Raucher +95744,Paul Helmick +6668,Christian Wagner +1537733,Ray Nolan +28233,Wisit Sasanatieng +92737,Paul Hardart +18276,Craig Herring +1448071,Trey Thomas +80175,Jessica Elbaum +1412705,Tricia Henry Ashford +1347755,John Finklea +112588,Kirby Dick +5672,Stefano Maria Ortolani +20249,Mark Verheiden +65457,Duncan Reid +76266,Aline Gavroy +1552936,Jan Schütte +93005,Abdul Malik Abbott +1407691,Daniel Cojanu +53711,Jawal Nga +215486,Fiona Apple +1813644,Karin Silvestri +1406084,David Gulick +1707451,Ernst Michel +1418467,David Prescott +114646,Jesse Vaughan +1870782,Richard Smock +223066,Auli Mantila +1400349,Alan Kelvin Contreras +26176,Helen Turpin +29575,Charles O. Seessel +76199,Dennis Wright +1673989,Leon Becker +1433086,Gregg Heschong +1378174,Joseph F. Valentine +45745,Lisa Muskat +1557597,Crystal Connell +32049,Dieter Geissler +1458993,Michael Hancock +39615,Massimo Quaglia +1399513,Forbes MacDonald +985529,Harvey Frand +69974,Anchise Brizzi +1465014,Gary Morris +1673541,Ivan Neulander +1217663,John Shirley +1842600,Colleen Knox +1559288,Jerry F. Johnson +1647260,Sylvain Chauvelot +1600548,Julie Moreton +81285,Stuart Heisler +1158477,Jules Stewart +32813,Dominique Othenin-Girard +1397321,Susan Scanlan +74635,Robert Marasco +11404,Terence Chang +20734,Sihn Jeom-hui +9422,Cormac Funge +14715,Gordon A. Webb +1330574,Beth Koenigsberg +18689,Susan McNamara +19915,Katri Manninen +969806,Tommi Lepola +1302621,Kristen Ploucha +6051,David Brenner +1671607,Stewart Sorby +1441246,Judy Siver +27549,Gary W. Goldstein +9269,Jeannine Oppewall +8037,Daniel Mason +121754,Larry Ketron +12233,Paul Feldsher +1851725,Carlos A. Chavez +52309,Eric Eisner +1606803,Ben Southland +1551647,Kim Karon +224389,Diane Lederman +34115,Sidney Clifford +1549587,Craig A. Dellinger +1774562,Jeff Roe +1339685,Robert Dawn +49496,Jörg Schmidt-Reitwein +628,Isao Takahata +14913,Peter Grundy +1184486,Mathew Kaufman +21739,Martin Langer +1120127,Clancy Carlile +1412188,Judith A. Cory +1404843,Anthony Mark Viverito +1877159,Kevin Westmore +36425,McG +66885,Barry Gibb +1415038,Marc Grewe +1708230,Marc Hazanavicius +129809,Jaime Mendoza-Nava +51693,Lisa Jensen +233373,Jean-Luc Nancy +65852,Zoltan Korda +62725,Lisa Fields +73682,Seiji Yoshida +11436,Anita Loos +1498769,Ilona Ziok +38937,Ian La Frenais +1802524,Michelle Whitehurst +29756,Waldemar Young +119367,Robert Cary +1438865,Enrico Lucherini +47641,Gerald Petievich +57754,Stanley R. Zupnik +1362907,Gary Thieltges +56835,Benoît Jaubert +1392142,Marsha Bozeman +17048,Nancy Schreiber +1401992,Jimi Johnson +15807,Paul Trejo +36015,Gabriele D'Annunzio +148221,James P. Lay +1267110,Bud S. Isaacs +12402,Jan D'Alquen +1536376,David McCullough +7984,Mark Sanford +9993,Brad Goodman +1117287,Bruce Torbet +1347722,Judy Chin +1211915,Bernard McEveety +228581,Pascal Judelewicz +1586332,Ivo Gresak +11455,Dan Lebental +1708229,Catherine Bellazzi +1094429,Alison Riva +58175,Michael Prupas +1552,Milton Carruth +1069157,Yuet-Jan Hui +51951,Joseph Minion +1530082,Amanda Scheer-Demme +1437611,Maryann Guar +15910,Dennis Lowe +84333,Burt Shevelove +11442,Harry J. Wild +1739884,Ryan Ferro +1415513,Joel Goldes +10415,Scott Bushnell +143935,Txepe Lara +29889,Luciana Marinucci +1350295,Carol Cawthra Hopcraft +1709072,Marcello Papaleo +13000,Roberto Schaefer +106602,Edward Chodorov +1447547,Brendan Harris +1561829,Theda Cunningham +10817,Rachel Abroms +1767057,Robyn Drayton +89226,William Nigh +1394660,Scott Kuzio +1805170,Doug Letterman +1084378,Aleksandr Simonov +1398870,Scott Hinkley +1176556,Ezra Sacks +1125480,Lewis Saul +943318,Mark Lambert Bristol +28041,Suzanne McCabe +1473756,Josette Perrotta +65559,Dylan Sellers +933025,Carlos Álvarez +137191,Stephen Myles Berger +1538430,Ken Regan +1560762,David Dalessandro +3946,C. Roy Hunter +36415,Thomas Brussig +223182,Tito Sotto +1017996,Peter McCarthy +1574640,Patrice Jacques +510,Tim Burton +1447598,Allen Tam +507252,Martí Roca +1404744,Luisa Dalmagro +49829,Charles Ladmiral +480666,Katarzyna Roslaniec +9614,Donald Peterman +48569,Lasse Björne +1418286,Alison Fisher +238811,Junichi Fujisawa +1567971,George Karnoff +47926,Marion Rosenberg +1328799,Rochelle Best +1436184,Jon Bowen +1414553,Annabelle Troukens +84668,Elli Medeiros +1088307,Jere Cunningham +84388,Will Albright +50759,Robert Ardrey +1415026,Jillian Amburgey +81286,Jonathan Latimer +1403421,Dawn Gilliam +142297,Compton Bennett +17000,Elena Manrique +1556107,Frank Wortman +1551744,Setsutarô Moriya +1398110,John Higgins +1654209,Boris Karabanoff +1346862,Dino Cappa +1780223,Michael Hopkins +1889499,Karen Guthery +66875,Stefan Stoppok +92389,Wyatt Sprague +1724512,Hanus Polak Jr. +1586336,Larisa Sramkova +71509,Antoine Monod +1851742,Sandra Migueli +1395025,James Wright +1532305,Emmy Ellison +1597194,Chris Walden +83090,Todd Toon +1263143,Michael Sexton +62518,Wayne Jacques +1174,Peter Aalbæk Jensen +65546,Charles Gieg Jr. +1453550,Chris Appelhans +17491,Alexis Alexanian +64746,Dean Lorey +1740449,Jeff Okabayashi +82829,Michael Oblowitz +1354354,Nakorn Kositpaisain +1446683,Mary Beth Worzella +1674650,Billy Miller +237920,Phil Culotta +1149308,Georges Lechaptois +1551518,Brianna Hoskins +1462623,Sam Michlap +1597211,Deborah Reissman +1881622,David Sutton +1411258,Linda Arnold +1462792,Jeannette Maher-Manifold +1350294,Carol Cawthra +1540846,Doru Cretu +1521653,Martín Torres +14608,John Warnke +112855,D.J. Markuson +4477,Lene Seested +1412758,Fiona Searson +7779,Sean Daniel +1603662,Cihan Yilmaz +71523,Waldo de los Ríos +893,Tony Scott +1360888,Sam Freedle +1535947,Miriam Schapiro +1555681,Matthieu Clouard +1348280,William Hedgcock +67610,Buddy Baker +567527,Sarawut In-phrom +1332200,Liz Lash +1321353,Christopher Slaski +1016024,Ron Leach +476,John Wilson +68939,Jack Grossberg +56537,Nathan Easterling +4670,Nino Baragli +1398088,Andy Evans +560,Patti Podesta +1521752,Darryl Levine +1462237,Stanley R. Dufford +83460,Craig Gardner +72110,Ines Mongil-Echandi +62160,Barry Katz +1432886,Alexandre Marcus +122274,Peter Chiang +1605411,Mitch Goldstrom +82694,Paul White +31035,Pracha Maleenont +1027593,Gert Wibe +1870691,Dana I. Heckler +1718409,Manuel Ladrón de Guevara +142285,Elisabeth Robinson +29694,Kate Carin +32354,Hayat Ouled Dahhou +1419269,Tom Starnes +41777,Elio Bartolini +1429333,Sandy Sokolowski +1125823,Laurent Perez +1566276,Michael Endoso +1378236,Scott Farrar +17992,Tod A. Maitland +1521709,Jaime Sánchez +343201,Sy Gomberg +3634,Tennessee Williams +19322,Adrian Scott +1340110,Ashley Winter +590453,Leo Scherman +1586390,Pavel Caslavsky +1332423,James Hamilton +1855084,David Arch +5546,Jim May +120414,Nick Tramontane +5396,Tullio Pinelli +61678,David Michener +1331895,Abdelkrim Akallach +87169,Steven E. Gordon +58007,Frank V. Phillips +75378,Thomas Real +1123069,Hiroaki Kitano +1635812,Jan Lindvik +47872,Peter Jessop +72827,Chizuko Osada +1647261,François-Xavier Bazin +1591552,Larry Gooch +70038,Shirley Jackson +544139,Tasha Moth +1407191,Carmen S. Riviera +1850827,Steve Szilagyi +1556634,Kent Brown +252740,Leone Pompucci +1821123,Susan Chooljian +141061,Jack Jevne +43818,Leonard Goldstein +934929,Gianfranco Calligarich +120678,Damon Runyon +28714,Sarah Pillsbury +1198826,Simonetta Mariano +32795,Anna Hamilton Phelan +15522,Robi Reed +1408466,Michael L. Games +465,Tessa Ross +1099169,Lillian Shore +1446551,Mary Law Weir +1398908,Katerina van Gemundova +1341926,Natalie Pope +42842,Herman Melville +7235,Beat Frutiger +193851,Martha Moran +32376,Giorgio Salvioni +125423,Ettore Lombardo +1538531,Oscar Di Santo +1574647,Spiro Tsovras +1447432,Nadia Vurbenova +9820,Andy Nicholson +1395359,Steve Rosenzweig +1780211,Mike Clayton +1526477,Carlos DePalma +19847,Carola Angulo +5363,Coreen Mayrs +1376810,Sian Sutherland +1880128,Andrzej Serdiukow +1242904,Vincent J. Donehue +969043,Suzanne Spangler +8557,Fernando Meirelles +21705,Simon Moore +15024,Andy Armstrong +1120591,Ian D. Thomas +21159,Marianne Wibberley +1454662,Al Oldfield +134381,Masashige Narusawa +19467,Adam Boome +146663,Hitoshi Takaya +1779868,Matthew Jones +9151,Liza Chasin +3192,Billy Hopkins +1611823,Patrick Legault +1586079,Robert Chase +1011907,Matteo Mussoni +100147,Brianne Murphy +53114,Shane Vieau +1636491,Jorge Marín +1573099,James Sloane Sr. +1598759,Normand Viau +69895,Nana Greenwald +1604010,Paul Ohrt +43811,Eugène Lépicier +1300813,Jam Abelanet +1560124,Shawn Kennelly +1588447,Ross Hahn +1826996,Vivalda Vigorelli +1424626,Lars Cox +1325090,Lanier Laney +138651,David Kirk Traylor +1410337,Lubor Cencak +1817645,Bill Persaud +30825,Antonio Ramírez de Loaysa +12939,Ira Newborn +52187,Howard R. Cohen +1639067,John Godfrey +3792,Bernardo Menz +96324,Gadi Harel +1243767,John O'Connell +14538,Don Phillips +5361,Christopher Tellefsen +57204,Debra Piazzie +1586387,Ivo Cervenka +1418152,Jesús L. Pérez Villar +570136,Nada Pinter +1895449,Simon des Innocents +64058,Cassian Elwes +1484222,Marvin R. Morris +85770,Dean Thomas +122673,Wendy Jo Carlton +1335562,Jed Loughran +1223099,Christopher T. Welch +1397849,Deana Newcomb +17227,Melissa Economy +99426,Fred Rosenberg +58360,Ed Check +5541,Philip Steuer +41956,Tony Hatch +1549431,Deborah Simmrin +92118,Ken Richards +2243,Jon Hutman +558007,Patrick Keiller +1545951,Jonathon 'Earl' Stein +1594328,Marcelle Desvignes +1477563,Benjamin Greenacre +1574653,Richard Complaisance +119146,Arch Nicholson +1409294,Howard Halsall +77970,Knut Jensen +6655,Manne Lindholm +1125679,Jeroen van den Idsert +1411264,Bill MacSems +1544400,Abraham Goldblat +20924,Garth Craven +1399069,Sylvia Nablo +938101,Charles Kaitz +1546622,Mark Wike +96251,Louis Forbes +70982,Frank E. Hull +108498,Erwin S. Gelsey +210110,Chris Cunningham +13317,Robert Bolt +1300920,Ken Hale +13957,Charles Previn +87893,Donato Rotunno +30839,Harry Reif +14687,J.M. Barrie +587229,Laurent Wassmer +27916,W. Somerset Maugham +11650,Marcus D'Arcy +1855211,Abi Brotherton +82172,Jo Swerling +70894,Roman Kindrachuk +1774870,T. Sean Ferguson +1399066,James Dittiger +1407663,John Hayes +1661553,Domenico Cavaliere +1734856,David M. Chisholm +137885,Ernest Palmer +134630,Hideo Nagata +1432044,Robert Iannaccone +554844,Cunlin Tong +1748681,Marco Canevari +1712319,David Brian Miller +1521659,Jonás Hendrix +1426763,Jay Hall +15775,Kevin Lima +68392,Joe Klotz +8392,Pascal Chaumeil +83061,Karen Stirgwolt +29654,Dick Smith +20598,Jacques Monge +52968,Russell Mulcahy +45148,Patrick Hella +1857013,Kelly Miller +12991,Pat Proft +1686933,Tony Bacigaluppe +4338,Peter Pilafian +71332,Fernando Sulichin +7780,James Jacks +15308,Sharon Boyle +43891,Lloyd Ahern II +5132,Bob Badami +58232,Jacques Companéez +1066776,Liz Gallacher +96423,Aleksandr Seryj +52841,The Slickers +56508,George Koblasa +91794,Giorgio Giovannini +40442,Gina Degirolamo +1364792,Jo-Ann MacNeil +143563,John Grey +32768,Bob Merrill +22147,Johanne Hubert +1418317,Hermione Ninnim +1316296,Scott Eddo +1562121,Peter Tavis +23816,Carla Hetland +1339054,Florian Emmerich +223991,Sandi Tanaka +90371,Paul Jarrico +1102816,Simon Jayes +239176,Richard Lerner +92554,Harry Winer +66730,Xavier Marchand +1307803,Sue Baldwin +134049,Charles H. Knauf +39650,Brian Gerber +79282,Antonio Chavarrías +63931,Wendy Grean +1311509,Shawn Simons +1673526,Patrick Booker +903,Lawrence A. Hubbs +1708293,Michel Clement +1431631,Eric Liebowitz +1117434,Jeanne O'Brien-Ebiri +1015967,Saara Cantell +342032,Joseph Gershenson +69000,Ray Corbett +1619081,Javier Arrieta +61625,Liz Watts +1046590,Nanci Roberts +1546853,Karl J. Weschta +1379594,Jon Comerford +6201,Baz Luhrmann +1553017,Rick A. West +56737,Don Granger +102232,Sandy Howard +1116276,Ngai Choi Lam +1377241,Michael John Meehan +1526508,Robin Day +1424448,Peter Hoffman +1387712,Andrew Wolk +20897,Bruce Broughton +59621,Jordan Mechner +48506,Steven Bognar +1365512,Christopher Dalton +1524763,Karen Kawahara +36623,Marcia Calosio +1667948,Michael Dressel +1567968,Chris Buchinsky +1424630,Mannie Ferreira +1581143,Michel Burstein +1102197,Santa Pestonji +135123,Gerald Geraghty +21244,Glenn Farr +3387,Joseph B. Platt +63777,Lindsay MacAdam +50720,Terri Hughes +257,Victor Lyndon +43099,Deane Taylor +113145,Richard Martin +1017350,William B. Silberkleit +52803,Etan Cohen +1458871,Wendy Orr +1416977,Jyrki Mäki +1198496,Drew Struzan +5525,C. S. Lewis +18782,Michele Platt +1769722,Lee Dae-hoon +71029,Shinichirô Ikebe +1342630,Roger Good +91093,Charles W. Ritter +8300,Kevin Reynolds +1402169,John Farr +1536574,Ferenc Ormos +37736,Teo Escamilla +69870,Mónica Lozano +95836,Adam Sawelson +29500,Carlo Rustichelli +48459,Justus Pankau +32722,Morten Højbjerg +1769887,Tracy Shaw +2953,Lora Kennedy +1568719,Lee Poll +1437124,Sheila Haley +1733236,Troy Waters +78417,Nick Santora +1456489,E. Thomas Case +59526,Stevie Hargitay +64626,Jack Rosenthal +1433946,Claudine Taulère +1405722,Michael Genne +1416996,Pinka Hämäläinen +1533643,Dick Moder +37276,Iain Canning +1567909,John Coats +75286,Richard Lowenstein +43106,Nick Amour +1400346,Eduardo Flores Torres +114596,Jake Goldberger +50117,Peter Hermann +10851,Ramin Djawadi +1468618,Victor DeNicola +1321355,Alan Passes +1405232,Laura Harris Atkinson +1536380,Kapu Alquiza +8271,Mark Knopfler +963697,Julia Castle +70700,Gordon Gray +7890,Tia W. Kratter +1533096,Christine Gee +1370944,Richard Lawrence +64378,Curran Pang +119392,I.A.R. Wylie +106502,Gordon Avil +21558,Diane Dimeo +29577,Karl Malkames +139930,Don Mankiewicz +1629461,Yodphet Sudsawad +40342,Jungo Maruta +1774549,Terrence Laron Burke +53427,Eric Guirado +61934,Caine Davidson +81529,Morton Gorowitz +1433623,Daryl Jordan +64950,Charles Swenson +62063,Chuck Potter +1394306,Kenneth Karman +1749133,Royce Baxter +1447143,Jeremy Oddo +1353745,Tomáš Hoffman +1315,John Gilbert +1487475,Danka Semenovicz +18511,Tim Grimes +9002,Andy Pryor +92377,Lee Dichter +1532202,Karel Černý +20119,Graham Cottle +26190,Frank Cottrell Boyce +1566839,Ed Jones +30,Steve Starkey +71311,David Ignatius +77724,Tony McNamara +1567703,Holly Horner +1546874,Richard Fischoff +37279,Garry Phillips +1753774,Jeffrey Skinner +1392672,Marc Barold +591576,John Stodel +1007316,Rose-Marie Melka +41383,Aurelio De Laurentiis +100266,Nancy Paloian +1405377,Francesco Valento +1412703,Mandell Winter +1891687,Shannon Causey +98968,Sid Rogell +2874,Janet Hirshenson +1447601,Andrew Bock +35149,Jennifer Newman +1405238,Leigh Mackenzie +1421706,Tom E. Dahl +1350163,Bill Cooley +1328388,Johnny Campling +1864788,Warwick King +1534907,Carl S. Griffin +20827,Hideo Oguni +1145436,Marc Balzarelli +1476249,Milton Justice +14498,Bud Westmore +1413913,John Ozlins +8704,Isabelle Guay +1458994,Nick Shaffer +1400072,Tom Fleischman +1538213,Adam Lustig +64661,Mark Shafir +1415634,Don McCuaig +7270,Adrian Lyne +52842,Garth Jennings +6817,Agnès Varda +1406763,Gary Nolin +1827959,Andrew Power +34896,Jonathan Lucas +1122006,Peter La Terriere +1573077,Joseph Siwinski +1412186,LaLette Littlejohn +1477240,David Falk +961284,Guy Luongo +1457649,Sylvia Filcak +12068,Rupert Holmes +225939,György Sánta +1534638,Bobby Mackston +29928,Jillian Kreiner +94085,Bobby Gene Leonard +1529469,Jack L. Warner +571506,Masami Fukushima +1441271,Susan Boyd +1194681,Michael Skolnik +1855206,Lolly Batty +83087,John Kwiatkowski +1600628,Bruce Johnston +12677,Matthew Robbins +1339987,Darcy Wyness +1018939,Michael Ellenberg +67593,Leslie Megahey +41151,Charles Rosher Jr. +1169376,Laurent Guyot +719,John Morris +1551267,Kristine J. Schwarz +1398108,Ian Foster +1215596,Jason Chambers +16597,Giannetto De Rossi +1821193,Fatima Mojaddidy +190736,S. Lee Pogostin +1219799,Randy Roberts +62740,Richard Mirisch +1437305,Michael Applebaum +1446531,Bob Minkler +197099,Lin Oliver +10405,Barbara Daly +1407232,Stephen Mullen +1661548,Steve Dinkes +43096,Stefan Beiten +51535,David Ross +1533028,Gary Dahlquist +1615,Du Lu Wang +31621,Jeff Burr +98508,Ottavio Scotti +582,Sheri Galloway +1497452,Barney Ettengoff +1455028,Kate Kelly +41628,Tony Roman +61208,Ira S. Rosenstein +550754,Gustaf Molander +1049456,Ben Wilkins +1018728,Jorge Gaggero +1803779,John Burros +1403479,Duane Manwiller +12736,Lazar Wechsler +471,Maria Djurkovic +80824,Jay Nierenberg +82132,Jim Powers +1521754,Cornelia 'Nini' Rogan +76210,Anna Karpinsky +1546881,James Boniece +35287,Gerry Conway +103336,Michael Shelton +58192,Stephen F. Windon +1339342,Robert Edwards +1404205,Teresa Kelly +1580506,Sôichi Ueno +4950,Shelly Johnson +1341862,Mike Fenster +58988,Adrian Butchart +3252,Vernon L. Walker +1341796,Ron Poniewaz Jr. +1497449,Steve Hahn +100383,Mitch Toles +1521704,Salvador Orendain +61396,Mia Apatow +34856,Hillary Sherman +42121,Glenn Morgan +1087688,Shiho Sato +68025,Rolf Greim +91142,Bonnie Greenberg +35559,Yves Peyrot +7306,Robert Clatworthy +59716,Martin Katz +55164,Gerald T. Olson +190339,Ian Iqbal Rashid +1215611,Scott Nimerfro +13677,Anne H. Ahrens +11449,Alan Moore +1247139,Julian Krainin +588035,Wynyard Browne +12704,Reuben Freed +1460574,Robert Lawrence +5390,Laura Ballinger +23649,Lem Dobbs +119149,Philip Warner +1571002,Jourdan Henderson +1459006,Toivo Kärki +1415884,Jack Bowdan +545097,Mahmoud Kalari +97660,David Sharpe +1522041,Janie Bryant +39815,Shirley Russell +102844,Louis Feuillade +1123840,Harriet Sand +3964,Patrick Tatopoulos +1624685,Peggy Lee Kam-Man +8806,Nico Krebs +1653475,Christopher Charles Kempinski +2802,Andrzej Korzynski +190134,Anthony Santa Croce +1562215,Katie Willard Troebs +1611807,Irene Kassow +78967,Peter Carrodus +1406845,Brahim Amarak +17655,Farhad Safinia +12893,Alec Sokolow +1876050,Berit Nykjær +214170,Richard Dean +1282191,Michael Weaver +53867,William N. Panzer +7127,Edward Carrere +223202,Nick Angel +1870784,Mark Ryan +1399559,Miguel Nunes +1735467,Kieran Woo +19346,Niels Arden Oplev +84911,Kenny Ascher +9968,Jackie Carr +231258,John W. Rogers +32641,Byrnadette DiSanto +71626,Kristina Larsen +143732,Oleg Malovichko +1723527,Osvaldo Esperón +4508,Howard Koch +1558695,Chris Glomp +1313101,Henry Cronjager +1558212,Brian Lunt +28954,David Williamson +85112,Cynthia Rodrigez +559273,Leonidas Zourdoumis +75706,James R. Maceo +21813,James L. Schoppe +1534933,Judy Cammer +1342519,Hugh McDowell Jr. +64900,Jeff J.J. Authors +1417831,Sy Hollands +976617,Stéphane Martin +1392108,Cate Praggastis +1404706,Harlow MacFarlane +1594360,Earl B. Mounce +1332745,Bobby Herbeck +1412113,Demmie Todd +852,Gerald B. Greenberg +1095832,Nicolas Alberny +972,Humberto Cornejo +1605344,Kôji Shundô +69156,Lou Pitt +290661,Tom Cairns +40169,Luther Davis +14235,Roger Dwyre +59356,Scott Fuller +117869,Morton Stevens +30175,Ted Marshall +1476159,Dai Watanabe +65820,Ryan Beveridge +1378166,Cecelia Hall +12067,Jane Hartwell +59812,Mark Vargo +1531560,Renee Davenport +1391749,Nancy A. King +1815438,Matthew J. Barden +894,Trevor Rabin +7538,Bill Bernstein +100748,Sébastien Delloye +1532855,Mariana Hellmund +1342251,William Hartman +1092638,Mia Renck +1438515,Jan Čeněk +548,Wynn Thomas +61919,Ben Nott +1390217,Alistair Mitchell +1534243,Hiromitsu Mori +1614,Ang Lee +56998,Dwight H. Little +73256,David Miller +67431,Evzen Kolar +1424606,Chris Ward +48507,Julia Reichert +34854,Jose Ludlow +1558705,Bill Banyai +1559552,Bruce Birmelin +1373428,Derek Leininger +1421721,William H. Schirmer +233508,Edith R. Sommer +54899,Loren Weeks +132812,Jonathan Parker +1417498,Richard Corwin +1000406,Peter Wooley +20398,Terence Verity +8507,Mark-Lee Kirk +27715,Jean Labadie +3251,J.O. Taylor +1080036,Michael Blakemore +60515,Sue Jett +68673,Stanley Chow Fook-Leung +1115249,Siân McArthur +57561,Alessandro Camon +1358149,Colin De Rouin +1136794,Jiří Šlitr +1411281,David Mortimer +1525315,Don K. Ivey +1408460,James Saad +131196,Jordan Susman +36805,Audrey Wells +1553262,Jim Duggan +1050143,Andrew Deemer +85336,David Carreras +63421,Marc Streitenfeld +59855,Lacia Kornylo +65115,Keith Samples +1600624,Shane Mahan +6926,Airick Kredell +21879,Simon Wells +30137,James Bernard +26129,Michael Barnes +1598612,Robert Harris +1667231,Mark Molina +1339463,Alan Kaminsky +1414502,Kurt V. Hulett +946450,F. Paul Benz +67507,Dan Jones +37467,Richard Addinsell +1380702,Sari E. Keigley +1340007,Daryl B. Kell +1401792,Jim Milton +24939,George Seaton +239843,Vladislav Lašić +1625898,Michael Hartel +1391126,Robin Griffin +14520,John Sturges +57175,Karen Lunder +35973,Vlokkie Gordon +1463902,Craig Elliott +81534,Fred Hellerman +1404763,Mike Hopkins +1423414,Bridget Allen +1550844,Georges Demétrau +100406,Diego Alchimede +7770,Lou Lombardo +1128337,Peter Gave +1409284,Judi Townsend +1319137,Lori DeLapp +11438,Sol C. Siegel +66076,Fraser Clarke Heston +81717,Eddy Terstall +1252535,David Williams +533,Victor Herbert +31627,Viorel Sergovici +23981,Franck Schwarz +1893239,Cindy Fischer +21643,Ned Tanen +1183392,Andrew Fogelson +1842851,Mariette Pinchart +13547,J.G. Ballard +11603,Katja Dringenberg +1154805,George R. Rohrs +1437955,Kate Coggins +41538,Rupert Preston +1556310,Dawn Soler +1376909,Lula Washington +100972,Mann Rubin +71874,Tisha Gribble +41680,Jill Newell +1603329,Kathryn Loraine Hibbs +1625928,Gordon Eldridge +1405316,Avi Das +107065,Arthur Marks +1237711,James Tichenor +120131,Maurice Ostrer +74282,Kevin Hopps +1414104,Jason Wheeler +983949,Neil Sacker +19596,Atsushi Okui +1211218,Mike Belzer +1171347,Michael Taylor +1463785,Jeremy Stewart +125691,Yoko Mizuki +1627145,Allan Gray +81766,Aleksandr Burov +1629464,Songpol Sungsuan +443441,Rohn Schmidt +29208,Erik Holmberg +1330842,Mark Walters +107377,Derik Murray +1074311,Diane Crespo +6630,Jaro Dick +1774236,Martin Smith +1597216,John Rotondi +1407902,Julia Tasker +1535414,Scott Levitin +1408608,Mark Lanza +56417,Catherine George +4235,Jamie Kirkpatrick +1427495,Fran Needham +1495857,Greg P. Fitzgerald +1667271,Gwen Everman +15445,Alan Howarth +52093,Yves Langlois +42116,Lester Berman +1429542,David Hagberg +1123078,Charles Richards +1061523,Rakhshan Bani-Etemad +1472642,Kris Wiseman McIntyre +1273396,Matthew Wulf +67469,Kevin Rudge +71267,Kirk De Micco +16853,Jessie Nelson +1291315,Tom MacDougall +22219,Susie Farris +589494,Giorgio Gregorini +1534846,Clarence Lynn Price +57308,Jack Brodsky +1380037,Cosmo Sorice +17863,Linda Cohen +1752929,Robert Eber +1751448,Timothy Everest +81545,Milton Olshin +42063,Hanns Kräly +57635,Rhoades Rader +1220391,Joseph Anthony +1095839,William Gulick +1569563,Lonnie A. Mathes +14236,Auguste Capelier +770,Jerry Bruckheimer +49912,Julianne Jordan +1127740,James Mazzola +1492941,Patricia A. Fullerton +1552177,Bill Olofsson +11098,John Powell +1706097,Robert A. Petzoldt +52750,Robert Brakey +3585,Martine Barraqué +5259,George Justin +37013, Ivan Vorlíček +543207,Stephen Boyum +66119,Larry Kennar +1387216,David Lombard +1684676,Robert L. Thompson +1842596,Jaqueline Barnes +10183,Bert Davey +1303152,Pat Steward +160927,Scott Stambler +57865,Álex de la Iglesia +1673565,Mandy Butler +1322089,Cha Blevins +9421,Brian Dusting +147014,Robert Stitzel +21821,Carl Kress +1428469,Mary-Lou Green-Benvenuti +11905,Sven Nykvist +72834,Sophie Reine +1438628,Debra Margolis +1661573,Daniel K. Grosso +1413805,Stella D'Onofrio +10936,Philip Harrison +1582654,Gary Goldman +46008,Carroll Timothy O'Meara +1408463,Julie Pyken +1674657,Joakim Arnesson +23758,Morgan Ward +1219383,Robert Lederman +95945,Arthur T. Horman +1401689,Anne Breslin +1386298,Juhani Aho +74769,Bob Roe +109608,John Stone +53661,Pierre Haberer +54797,Robert N. Fried +1800147,Jeremy Francis +1603324,Hillary Murray +1433228,Paul de Bruijn +1161233,Mac Hyman +14959,Gerard Carbonara +133150,William Eastlake +1820603,Attilio Torricelli +1760097,Bettina Graebe +1554975,Joel Sill +31542,Emilio Varriano +30561,Jun Fukuda +1877369,Michael Boyce Harris +20857,Catherine Renault +41591,Stephen St. John +1453318,Gene R. Johnson +1614189,Liz Matthews +1858338,Richard F. Anderson +1406859,Tristan Barnard +65452,Mike Leigh +587841,Brad Southwick +67808,Mel Efros +45841,Joanna Colbert +29649,Bob Cobert +29501,Stelvio Cipriani +70496,Myles Connolly +142686,David Leslie Johnson +1349487,James F. Hanley +1550058,Jim Harrison +54597,Joe Nussbaum +1842594,Simon Rice +21941,Annie Thiellement +32767,John Byrum +1171228,Mary Lamar Mahler +958087,Miguel López-Castillo +1560286,Gustave Meunier +142632,Suresh Nair +1605695,Seipati N'Xumalo +1270512,Richard Milward +3683,Paco Delgado +1891668,Barbara Delsman +1114933,John Heyman +1358021,Jamison Scott Goei +10687,Dany Wolf +1730,Judith Holstra +1540854,Corey Hill +1471015,Nora Kasarda +210341,Tom Rothman +1203317,David C. Robinson +73628,Sylvia Sichel +1421749,Gail L. Smith +1701155,Tory Bellingham +1454258,Gino Brosio +1579678,Linda Mooney +1130038,Aaron Auch +70709,Joy Batchelor +73050,Ralph Schuckett +28685,Pierre Gamet +64765,Don MacDonald +1554171,Angelika Wang +1399877,Peter Rosenfeld +94134,Brian Katkin +64141,David Gordon Green +1313822,Steven Lutvak +1855215,Glenn Marsh +588071,Larry H. Johnson +1394323,Jamie Kemp +1268500,Arnold Jensen +40172,Frank Tarloff +1603309,William Nuzzo +61129,Cathy McComb +1673534,Fernando Favila +1797,John Newton +238940,Ilksen Basarir +80249,Charles Chiodo +72324,Stéphane Batut +1598762,Wileen Dragovan +1541272,Bruno Albi Marini +1662301,Andy Hunt +384,Joel Cox +1035475,K.P. Saxena +82356,Didier Rachou +4985,Eros Bacciucchi +1451245,Tyler Allison +937146,Mark Oliver Everett +10365,Richard Hoover +6676,Fabian Römer +933506,William G. Davis +558808,John Wilkinson +1707616,Dan Hubbert +21053,John Dahl +1427438,Christine Lalande +67770,Bill Justis +1641217,Mark Willsher +1413929,Nina Sagemoen +1041663,Paul Damian Hogan +1558192,William Patterson +20097,Frank Fenton +1411150,Vivienne Walker +1406241,Brian Best +1227,John S. Lyons +1851746,Kevin Berve +1348007,John Attard +19228,Jim Fall +71264,Joey Forsyte +120030,Joseph J. Lilley +1532767,Garth Inns +67716,Philippe Haïm +3569,Néstor Almendros +146845,Eric Goodman +1074237,Stan Berkowitz +106955,Robert Eisele +1395243,Vince Valitutti +124703,Jürgen Olczyk +218670,Mark Young +1338836,Robert B. Harris +31069,Dorothy Kingsley +10154,James H. Anderson +1244651,Louis Irving +1409741,Joel Guthro +7755,Sally Nicholl +113140,Daniel Leduc +43812,Monique Bonnot +3959,Robert Bernacchi +1355540,James Rogers +1458533,Christopher Brooks +1461156,Matt Williames +1407896,Terry O'Deen +1125594,Enrico Sasso +1565007,Pud Cusack +1174031,George T. Miller +29965,Joseph Farnham +1404326,Thomas A. Carlson +77612,Mary Blair +567201,Mary Jane Ward +1547744,Clément Perron +1477254,Pete Peterson +1462680,Kevin Freeman +1136397,Erica Li Man +29489,Janey Fothergill +1459473,Steve Markowski +17255,Andy Harris +3023,Timothy Brock +75391,Danielle Berman +63990,Kate Williams +1102277,Matt McCombs +1450713,Deborah Liebling +1557574,Sally Ross +233723,Zsuzsa Vicze +1484255,Winnifred Jong +954600,Luz María Rojas +1842597,Pyno Keets +232669,Marcel Camus +1370965,Cynthia Upstill +69890,John C.W. Saxton +9392,Cynthia Wise +959815,Bob Westmoreland +1406902,Jill Merritt +57436,Christopher Leitch +69938,Chris Delaporte +1371066,Christopher Kennedy +57662,Thomas Wittenbecher +17792,Alex Mackie +1090,John McTiernan +70432,Kwok-fai Yeung +142152,Bernadette Mazur +62811,Stephen Edwards +1402896,Marc Varisco +1546553,Erika S. Katz +1885597,Ellen Prince +1645291,Tom Volpe +82483,Mike Ruekberg +100013,Mojtaba Mirtahasebi +1377122,Pam Cartmel +1296276,Ronald Liles +1411678,Midge Ferguson +1552506,Gary Katsuya Ushino +554123,Chan Dung Chow +95864,C. Kenneth Deland +21557,Richard Trevor +1299484,Bob Whitehill +170497,Norman Lear +1159914,Mark Kenna +27236,Gregg Champion +23227,Steven Knight +1637869,Susan Zachary +19377,Erick Zonca +1323227,Birgit Gudjonsdottir +1183661,Steven Maler +80963,Norman Stephens +9556,David Barrett +1405798,Peter Wignall +1170228,Han Suyin +1521476,Joseph E. Gallagher +21470,Marc Fisichella +1571711,Craig Byrom +1286355,James D. Brown +57225,Lee R. Mayes +1538239,Catherine de Haan +84938,Bernard Gordon +1104915,Richard Maynard +1406858,Romain Courtine +1493013,Reza Alaqeband +1178,Jørgen Johansson +10630,Dean Beville +1701154,Jeremy Simser +1461644,Donald Kaufman +1596307,John Bocchicchio +71342,David Himmelstein +32900,Amanda Morgan Palmer +1533787,Louis DiCesare +1027212,Zinat S. Lloyd +61825,Jason Weil +33932,Filipp Grammatikos +62925,Romana Cisarova +32136,John Willard +1170455,Antonio Belart +37852,George Hickenlooper +65844,Nikos Kazantzakis +998842,Efram Potelle +1455417,Betty A. Griffin +1247742,Kyran Kelly +21061,Tom Epperson +12303,Cyril Hume +34005,Karen Wakefield +66777,Bob Fosse +554847,Xianzhi Zhang +1327028,Jonathan Fawkner +1588226,Les Wiggins +11579,Hermann Warm +1198484,Anita Shreve +12964,Michael Ritchie +1494667,Christopher Cronyn +1329477,Ismael Jardon +1446993,Paige Augustine +1632423,Enrico Biribicchi +1552357,Robert J. Scupp +578778,Robert Stadd +1364868,Mark Maitre +1326326,Marriott Kerr +136739,Carol Brolaski +1338152,Eric Lindemann +952412,Diane Minter Lewis +1395729,Tony Dawe +1441273,Debbie Vandelaar +1124024,Temístocles López +1327838,Joe Dunckley +1385924,Justin Samaha +19841,Mateo Gil +1630754,Kim Mi-kyung +7726,Alan Marshall +87259,Gerardo Barrera +40757,Peter Popken +37685,Ismat Zaidi +1607216,Harold Brighouse +1453513,Rob Bekuhrs +1454249,Frans Vischer +96040,Michael Hamilton-Wright +1742063,Ruth Hasty +1092558,Tadahiro Teramoto +52045,Shell Danielson +1855225,Daniel Pettipher +1894094,Paul Goldsmith +10967,Steve Kloves +14867,Gile Steele +6380,Verity Hawkes +4385,Sergio Leone +2864,Jim Denault +1511086,Kelly Oxford +1196692,Chad Hobson +19045,Paul Sylbert +1064441,James R. Barrows +1667261,Steve Boyd +284642,John Meadows +76207,Viv Wilson +1117840,Frederic W. Brost +1408287,Rachel Atkinson +70987,Gordon T. Dawson +1602329,Egonné Endrényi +1420147,Darylin Nagy +57665,Eric Karson +1546856,Byron Wilson +1338837,Ken Runyon +4064,Webster Whinery +116076,Greg Franklin +73494,Desmond Nakano +18873,Art Marcum +1197918,Marcia Hinds +10420,Stephen Altman +29997,Thomas Pratt +44028,Gary Tieche +78795,Virginia Kellogg +1368863,Randall D. Wilkins +1713402,Kevin Nelson +1407670,Adam Gillham +51898,Óscar Faura +1402978,Eusebiu Sirbu +1328819,Kate Lyne +1117802,Francisco Pérez Gandul +19711,Richard Band +29494,Nicolas Gessner +212501,Michael Ruscio +1667237,Robert H. Winn +876,Jonathan Hensleigh +1428210,Curtis A. Andrews Jr. +567970,Chet Raymo +40513,Michael Paseornek +54774,Sarah Platt +72583,Barbara Turner +44548,Michael Nebbia +1362406,Lorna Moon +1404219,Carol McAulay +73420,Celia Haining +1408672,Laura Graham +1437304,Michael Ambrose +1611817,Herman E. Townsley +1537732,Paul Lockwood +68671,Lung Hsiao +17520,Cédric Klapisch +46399,Peter Newman +1416918,Bec Taylor +1671052,Bill Messina +64996,Lun Yang +8075,Luis Alvarez y Alvarez +1592006,Richard Harlan +1576304,Brian Fair Berkey +33434,Carol Fuchs +20514,Michael Levy +58002,David Klass +9390,Karen R. Sachs +1418015,Issy Shabtay +5584,Dennis Virkler +30099,Charles Barton +1555664,Elizabeth Wilson +1400789,Paul Gustavsson +1392673,David Chazan +75251,Harry V. Lojewski +16156,John Hora +1298944,Piero Servo +14284,Hal Mohr +29635,George Robinson +21602,Ernest Steward +16425,Oliver Stapleton +148834,Booth Tarkington +1389626,Douglas Dresser +1378194,Tommy Estridge +69499,Jason Ward +1448061,Brian Leif Hansen +1625914,Deanna Longley +14961,Otho Lovering +64783,Stacy Cramer +69772,Hung Yiu Poon +1725891,Francis Back +1343967,Donald Brooks +1415966,Solange S. Schwalbe +574003,Denise Nolan Cascino +3571,Jacques Maumont +1340014,Lana Krotenko +1085341,Yakov Protazanov +1404844,Glenn Neufeld +11604,Uli Hanisch +8582,John R. Carter +1815502,Carine Buncsi +9934,Peter Märthesheimer +1564780,Vlasta Hynek +1586890,Helen Kozora +1398107,Gary Powell +1030406,Carine Sarfati +1624495,Douglas Larmour +236604,Dean Vanech +108914,Mitchell Leisen +74907,Fabián Bielinsky +23653,Christine Sheaks +9063,Edwin B. Willis +85128,Probyn Gregory +14912,Diane Kerbel +75303,Damian Church +1408278,Erma Kent +1423,Joanne Burke +1333980,Kevin Ladson +1159337,Gordon Ray Young +40959,Talbot Rothwell +937235,Dan Abrams +3564,Hervé de Luze +58177,Robert L. Sinise +1299737,Eckhard Blach +42909,Mona May +123868,Shinsaku Himeda +8733,Manish Malhotra +56643,Steve Rudnick +72768,Ugo Chiti +15728,Andy Harries +84736,Ivan Passer +35694,Jason Friedberg +19806,Francesc Escribano +1248193,Carolyn Kessler +225009,Pablo Larraín +1443843,Lucy Bassnett-McGuire +10385,Jim Herzfeld +1448512,Evan Albam +1717847,Dawn M. Stoliar +1412990,Gregory Lundsgaard +108146,Clyde E. Bryan +545376,Wendy Blackstone +91096,Andrew Schmetterling +1267325,Piers Davies +24761,Martine Rapin +549597,Fannie Hurst +10918,Howard Bristol +52102,Peter Gersina +993849,Patrizio Marone +22039,Chad Hayes +58870,Derek Evans +1821122,Ara Soudjian +1083220,Nitin Chandrakant Desai +19169,Monique Fardoulis +25735,Christian Duguay +959727,Austin Dempster +32319,Jean Boffety +146129,Maria Sødahl +1241644,Nick Vanoff +1730423,James Gold +1580045,Evgeniy Chernyaev +87213,Philip Ridley +81219,Brendan Foley +55006,Olle Hellbom +1453876,Louis Wipf +1403641,Mike Valentine +1651259,Florence Malraux +10014,Charles E. Parker +1521705,Miguel Ángel Pacheco +1433745,Daniel Mattig +1030098,Harold Lamb +226552,Blair Treu +1619998,Michael Alexonis +1377373,Christi Soper +23728,Ariel Zeitoun +66693,Richard Redlefsen +38689,John Flynn +75626,Dorian Harris +1323092,Mitchell Ray Kenney +588093,Milton Gunzburg +138407,Arthur Hornblow Jr. +1176935,Ann Preston Bridgers +23616,Wieslawa Starska +1573710,Laura Lee Connery +466,David M. Thompson +1624044,David Elwell +1296338,Hong Gyeong-pyo +1318521,Dagmar Wessel +1380470,Shirley W. Smith +127133,Eleanor Witcombe +1412460,Valance Eisleben +80684,Sara Giles +1765282,Bill Lister +1318,Rob Outterside +51687,Darlene Caamano +50580,Nellie Manley +1463188,David Settlow +193307,Jay Kleckner +25243,Tin Mei Ching +1022346,Salvador Roselli +112307,Linda Lee Sutton +96285,Henry Vars +413105,Justin Brickle +70045,Sonya Levien +1117950,Jessie Thiele +1788056,Jed Leiber +11235,Carl Johan De Geer +78997,Leon Ichaso +1401691,Delia McCarthy +73282,Paddy Breathnach +1562447,Alexandra Fitzpatrick +1398093,Anne Delacour +122754,Sam Gordon +1394924,Aaron Rochin +31143,Mike Lobell +1697681,Gary Lund +1408190,Todd Shifflett +81761,Andrey Kravchuk +1880496,Lisa Dedmond +8532,Lisa Dennis Kennedy +77695,Richard Field +774208,Brent Thomas +16206,John McPherson +30843,Ted Coodley +1458579,Walt Martin +81263,Daisy Allsop +1424636,Gary Lam +176484,Marc Munden +1495922,William T. Cartwright +1070097,Gene Corso +20034,Pierre-William Glenn +1677829,Hank Mayo +43868,Robert Rudelson +1092612,Lennart Norbäck +74300,Bill Kroyer +57902,Nicholas Pike +51296,John Kamps +1409243,Andrei Cretan +1762789,Charlie Newberry +1451676,Earl A. Hibbert +14859,Claudine West +1360108,Don Lee +983309,Mike Stallion +5381,Michael Shamberg +73034,Steve Krantz +108815,W. Percy Day +1713001,Tom Collins +1145914,Ernest H. Cockrell +1404753,Janet D. Munro +129941,Alan Shapiro +1390535,Stephen Vaughan +1365699,Austin Anderson +1708311,Victorine Tamafo +1315038,Udo Heiland +1413091,Ulrika Akander +19395,Robert Bassler +1571761,Kevin Lin +76325,Daniel Alfredson +10013,Gabriella Borzelli +1455295,Paul Hart +42065,Conrad A. Nervig +1408192,Kirk R. Gardner +9648,Alec Hammond +1566430,Babak Amini +1585999,Amalia Paoletti +19708,Albert Band +14098,Carl Biddiscombe +69138,Michael Jacobs +1433720,Jon Mete +61550,Jas Shelton +237759,Brett Hoffman +59521,Jaume Collet-Serra +223279,Eduardo de Gregorio +88116,James D'Arcy +1018346,Jean-Baptiste Tard +31516,Victor Hadida +45444,Ulrich Picard +1319132,Michael W. Hoffman +1399989,Anthony Dunne +146225,Silvio Narizzano +1559544,Chris W. Johnson +1398871,Michael Parlett +1010628,Wanda Tuchock +12064,Sharon Globerson +1094,John Thomas +1870702,Mercedes J. Sichon +62702,Tirsa Hackshaw +1407883,Derek E. Tindall +1399890,Rich Bennetti +4280,Juliette Welfling +67884,Bernardino Zapponi +226920,Yôichi Sai +1432587,John Naehrlich +40031,Erol Tastan +68683,John William Corrington +554126,Chuen Dak Geung +1351732,Aslaug Konradsdottir +1490943,Charles Guanci Jr. +116653,Lance Mungia +21379,Stuart Wurtzel +1364400,Tina Roesler Kerwin +1037821,Morgan Dews +1421264,Dave Reed +81729,Matthew Carlisle +1332497,Rebecca Duncan +19990,Ingrid Ralet +57640,Giovanni Arpino +1552870,Jonathan Allen +76978,Masaki Kobayashi +42381,Jane Kennedy +7847,Jim Wilson +1463182,Aaron Williams +1145915,George R. Farris +115640,Takahide Shibanushi +59806,James R. Silke +20540,Randi Hiller +70500,Tom Hooper +91797,Piero Mecacci +67450,Alistair MacLean +1494277,Katherine Dover +1555374,Susan Cahill +1425343,Vanessa Lapato +1431996,Dayne Johnson +37267,Geoffrey Richman +1587342,Tim Stadler +1452675,Wilson Webb +199526,Michael Price +129422,Irving Cummings +26266,Luciano Perugia +8750,Caleb Deschanel +548671,Brian Wilcox +54559,Christian Alvart +99726,Fred R. Feitshans Jr. +68593,Jane-Howard Carrington +1346142,Andy Mayson +13522,Steven Nevius +1574663,Sean Apple +51572,Aaron Norris +554845,Qiagui Huang +213447,Maxim Gorky +23462,Eric Guichard +55279,Leslie Newman +1450362,Scott F. Johnston +71872,Jeff Nichols +60597,Lorraine Carson +12698,Bob Clark +1408679,Michael Carella +1323721,Jill Scott +1705507,Howard Fortune +40778,Albrecht Silberberger +99031,Edgar Ievins +1207983,Lee Ross +1015890,Greg Newman +1401737,John Whitteron +1587763,Bernardo Loyola +17862,Alex Steyermark +211799,Peter B. Kowalski +28239,David Twohy +14826,James W. Payne +1538467,Nino Ottavi +1396509,Caroline Davidson +69527,Anne François +152660,Arlene Martel +1420165,Nina Kawasaki +11809,Rupert Wainwright +68761,Randy Miller +1391762,Camille Parent +1249179,Ern Westmore +1002917,Soren Staermose +1423406,Gemma Basger +14895,Barry Spikings +25361,Tony Westman +1406808,Gina Herold +150569,Thanassis Valtinos +59710,Bobbie Read +1173317,Arlon Ober +1717524,Ryan Isbell +1387542,Don Saari +113226,Kate Angelo +10004,Sam Zimbalist +1458340,Bob Kirk +69163,Pam Coats +1420189,Ronnie Paul +56909,Karen Janszen +59396,Matt Western +1486183,Menahen Peña +1761062,Ahmadu Garba +1060522,José Ortiz Ramos +24296,Bernard Evein +1441671,Danton Tanimura +1143,Edward Klosinski +2588,Sidney Levin +1409837,Spooky Stevens +1555633,Klaus Hasmann +1216735,Paul Abascal +2338,Bettina Böhler +203350,Anghel Decca +1440849,Rodney J. McFall +7511,Jack Baur +444552,Charles Wood +1521670,Martín Gaytán +7650,Max Parker +1792646,Kassandro Delessandro +1662359,George Marshall +1023323,Bradley Stonesifer +1562239,Charlie Davis +24971,Michel Gaztambide +113087,Erin Michael Rettig +93489,Horst Stadlinger +127575,Charles G. Booth +1833606,Marlon Staggs +1081853,Sam Vitale +1881572,Hubert Bougis +43673,Tom Reeve +1748870,Thomas A. Imperato +1578417,Maureen A. Arata +14294,Edward Black +936700,Edward R. Morse +17149,Alan E. Muraoka +30776,Robert Dozier +1587,Sean McKittrick +1399909,William Cheng +66271,Claude Agostini +1401358,Kimberly R. McCord-Wilson +34228,George Parrish +92733,Adam Elliot +1832365,Johnna Butler +84473,Nathalie Carter +1395368,Russell Engels +59372,Paul Cross +98439,Francis de Croisset +56536,Peter Wunstorf +9159,David Crozier +8108,John Warren +1399995,William Trent +100118,Bob Elia +1433737,Peter Kosel +20463,Mark Digby +59667,Steve Yedlin +1384399,Michèle St-Arnaud +19965,Paul Dunlap +1770594,Stephen Gilbert +27006,Jere Henshaw +1418459,George Tucci +1767035,Ashanti Miller +31732,Douglas Hartington +372,Tom Stoppard +1619082,Giovanni Bianchini +1584232,Irene Dobson +1461989,Russell Llewellyn +78370,Shichirô Kobayashi +37596,Katie Sparks +22302,Stuart Cornfeld +195854,Kim Kahana +1117859,Jianshai Xu +80170,Tadeusz Chmielewski +1324125,Elitsa Taseva +65736,Traci Kirshbaum +60069,Lynda Halligan +40447,Leonard J. South +1416008,Olivier Servanin +14478,Charles Van Enger +1316834,Ido Dolev +24530,René Goscinny +1595968,Roland Adamson +231227,DeVallon Scott +27716,François Catonné +144161,Guido van Gennep +1334020,Laura Paddock +80675,Evan Spiliotopoulos +1376899,Cheryl Nardi +29785,Christopher Bram +1466709,Dan Lita +136989,Leigh Chapman +61631,Luigi Pittorino +1074839,Rick Paul +943,John Mathieson +15216,Sanezumi Fujimoto +9751,Robert Hakim +1784165,John Georgiadis +9169,Elliott Kastner +120729,George Callahan +42304,BC Smith +71,Günther Rittau +1421255,A. Welch Lambeth +1688133,Filiberto Fiaschi +234567,Nardi Reeder Campion +9418,David Melhase +1556999,Daniel Barone +1504,Leon Gordon +1358323,Hassan Zahidi +1536247,Marcia Reed +1423753,Patrick Cabral +110587,John Daly +1767314,Brad Duenkel +12587,Jonathan Fuh +11239,Jessica Cederholm +1357124,John H. Bonn +60088,Joshu de Cartier +566958,Paula Mae Schwartz +560321,Yasuhiko Takiguchi +57565,John Schmidt +1765284,Bob Ippolito +30104,Frank Skinner +34639,Hans W. Geißendörfer +1725454,Doris Yoba +134430,Robert Lewis +8384,Anna Pinnock +57661,Dirk Niemeier +558101,John Bloomgarden +944511,Scott Pardo +997178,Michele Greco +60366,Nancy Cavallaro +56965,Sally Robinson +1033481,Cilla Rörby +70636,Gabriel Axel +77911,Deb Hagan +23810,David M. Richardson +1427496,Corinne Bossu +1385931,Lorraine Turi +60499,Bettina Gilois +123945,Charles M. Schulz +1800898,Frank Richwood +1597195,Season FauntLeRoy +138653,Brian Evans +1532474,Jane Roman +1286344,Adele Taylor +964509,Geraud Brisson +1408708,David McIlroy +27968,Alan Jay Lerner +24208,Nick Moorcroft +7681,Charles Gordon +8758,Rajeev Malhotra +1522046,Daniel Boxer +1540597,Koshi Kawahigashi +1563906,Cornelia Ryan +14536,Victor J. Kemper +1484,Ellen Chenoweth +1048948,Mitsuzô Miyata +38023,Michael Patrick King +78365,Monkey Punch +12166,Subrata Mitra +70216,Tatsuo Yoshida +1707126,Jay Palomino +232185,Gene R. Kearney +1447348,Phillip Phillipson +1448087,Jeff Topping +564872,Paul Aaron +1335219,Paul Timothy Carden +1378171,Kevin O'Connell +2291,Paul McGuigan +13572,Perry Ferguson +1147902,Federico Posternak +1203330,Vivien R. Bretherton +110695,Majid Majidi +128711,Ming Lam Wong +19595,Yasuyoshi Tokuma +80259,Brian Smedley-Aston +1405205,Marc Meyer +60496,James Gartner +34494,Ted Richmond +1774880,Jeff Sutherland +1462697,Sandra Bojin-Sedlik +1357069,Erich Stratmann +1621064,Minka Mooren +17850,Dominique Navarro +135188,Graham Masterton +1350318,Gabriele Silvestri +1307067,Robert L. Zilliox +43529,Jan Kiesser +1556515,Courtney Gross +108016,Kazuo Takimura +46306,Ken Pettus +72635,Peter Manning Robinson +1199556,Susan Magestro +6733,Dan Mazer +159081,Paul Ventura +1798040,Mike Fraser +16466,Peter S. Larkin +64335,Timothy Alverson +4502,Scott Hill +558338,Eleanor Perry +227218,Jeff Mazzola +17256,Ben Scott +1565169,Evelyn Purwins +1661556,Mario Tessarin +1406080,JoAnn Stafford-Chaney +68188,Amanda Kravat +1263195,Alex Cortés +1567957,Caleb Duffy +1547581,Kôji Niwa +70568,Merrill G. White +1438627,Joecy Shepherd +53840,Michael D. O'Shea +148024,A. Baldwin Sloane +90831,Jack Bennett +79728,Lee Kalcheim +1393282,Janelle Hope +1380482,Sharon Cingle +84714,Juan José Campanella +75683,Anna Borghesi +1414088,Matthew O'Toole +9001,Masahiro Hirakubo +14621,Ute Hofinger +22426,Marilyn Jacobs Tenser +994380,Johan Söderberg +56548,Robin Vidgeon +74783,Bob Shelley +98335,Christopher P. Garetano +1555702,Wade Wilson +1643461,Peter Keen +1532604,Charla Bowersox +79148,Sara Mathers +63946,Tim Moore +1193974,Ángel Illarramendi +1327726,Stewart Harding +1550203,John Strawbridge +1556961,Rosanne Flynn +126774,Per Fly +959124,Michael Fallavollita +1391692,Chris Del Conte +1532240,Georges Moes +67481,Philip Roth +85126,Micah Gallo +1432108,Stanley E. Johnson +82222,Emmett Malloy +4360,Nelson Riddle +118867,Jamie Barber +1391729,Ben Rothstein +1342657,Jon Title +1462445,Edwin Allen +1460569,Eric Swanek +7398,John J. Strauss +4727,Dianne Wager +28904,Hugh Wilson +1790564,Eric Jones +1598744,Thomas Vance Jr. +1192861,James Calleri +52456,Kara Lipson +1567323,Wayne Traudt +68341,Florian Drechsler +43151,Mary Maguire +62859,Catherine Ircha +1175021,Tony Grocki +2445,Eric McLeod +7627,Laura Ziskin +1532319,Joy Mellins +14512,Bailey Fesler +19070,Corinne Jorry +16658,Joe Digaetano +1637494,Álex Villagrasa +1429251,Gina G. Aller +1551958,Stefan Quentin +1405391,Stefan H. Fritz Hummel +1688587,John J. Rutchland III +105669,Michael Rohatyn +129997,Edna L. Lee +1433725,Erin May +33433,Scott Hicks +30971,John A. Bushelman +12277,Edmund H. North +167407,John Alan Schwartz +60791,George Zakk +8194,Hagen Bogdanski +66104,Jerry Offsay +29983,Henry Sharp +1708325,Nathalie Laporte +1176979,Shigeaki Saegusa +57244,Sasha Harari +1448072,Chris Tichborne +100516,Max Mayer +1402123,Kate Lewis +1418273,Fergus Leese +26981,Shirley Walker +42024,Gerardo Albarrán +89373,Martin Davidson +1271299,Lee Chatametikool +113076,Rob Nokes +1447355,Mick Cassidy +16548,Joan E. Chapman +1458332,Robert Brown +18639,Art Cruickshank +75884,Mark Gustawes +11581,Hans Bittman +1381212,Concha Rodríguez +1526510,Colleen Liddy +1367493,John T. Cucci +39161,Giovanni Fusco +982461,John Saviano +1374170,Charlotte Buys +752704,Mark D. Severini +35154,Urie McCleary +1509189,Kiyoshi Kakizawa +7232,Sarah Finn +1176512,Gilbert Clark +54256,Leontine Petit +96608,Nick Grinde +20717,Raúl Locatelli +554841,Anyi Wang +195366,Tony Bell +1215656,Keith Crofford +2678,Stephanie Gorin +53897,Chuy Chávez +1897168,Kosmond Russell +1034044,Thorsten Sabel +1407237,Walter McClain +93992,Szeto Kam-Yuen +1051959,Julie Carnahan +1803780,Calvin Chin +1569882,Maurice Askew +46447,Alfred Schaaf +1400092,Jeremy Braben +1739541,Annie Godin +56396,Per Berglund +15328,Kevin Kavanaugh +33390,Noel Pearson +1749131,Martyn Hebert +1594804,Sharon Bareket +2986,Doug Claybourne +1385927,Joel Custer +82725,Álex Pina +1012984,Frank Alexander +1334420,Phil Sims +1550834,Emmanuel Vouniozos +10958,Douglas A. Mowat +1032175,Seth Zvi Rosenfeld +25244,Shui Tin Chi +46895,Michael Derbas +54873,Tucker Tooley +1470214,Jeanne Oberson +718968,Stephen F. Kesten +81546,Barbara Rittenberg +21140,Eric A. Sears +16347,Patrick Cauderlier +10147,Daniel Mainwaring +72701,Steve L. Hayes +1597207,Sean P. Fickert +90821,Thomas Pope +1619100,Michael Sean Foley +1571716,Trevor Doyle Nelson +63898,Jérôme Beaujour +1169919,Lisa Hart +1834461,Melissa Elliott +18174,George DeTitta Sr. +25744,Pierre Gill +1494205,Eric Clement +1452644,Sacha Quarles +1407204,Nicholas Hasson +1643049,Bernd Hirskorn +21678,Olivier Assayas +77919,Tim McCanlies +1537874,Jean-Claude Le Bras +1284807,Marty Maher +564823,Sin-yun Lee +139318,Mortimer Offner +1402111,Marshall Garlington +1724246,Jay Torta +337066,Phil Esparza +144146,Ermahn Ospina +42358,Steven J. Boyd +1446200,January Nordman +1313928,Antoinette Messam +69841,Wen-Ying Huang +957970,Peter Nicolakakos +93953,George Englund +15780,Dan St. Pierre +1864786,Wayne Diskin +1286008,Tarquin Gotch +68802,Meir Teper +73875,Toa Fraser +33460,Pierre Mignot +123558,Jean-François Pouliot +1160341,Juan Carlos Castillo +1280434,Nancy S. Fallace +97579,Guy Maddin +1460505,Rich Draper +1640580,Ricky Sacco +62874,Annette Curtis Klause +68936,Mickey Rose +1407721,Victoria Wood +53966,Peter Heller +1318751,Jerry Bock +38335,Steve Bartek +14354,Stefan Zweig +1328134,Nancy McArdle +9555,Stephen Barden +1640416,Bo Persson +15663,Joseph Sargent +86292,Tommy Stinson +1262129,Luca Kouimelis +72438,Joel T. Smith +1457094,Yael Melamede +1532232,Linda Villalobos +13009,Alexandra Byrne +1484714,Suzanne Benoit +1398094,André Dias +1462700,Roger C. Johnson +1551981,Edouard Valton +20298,Gladys Joujou +100023,Abbas Sagharisaz +40254,Peter Barsocchini +10441,Mel Bourne +1441347,Lance Webb +1598760,Franco Tata +16589,Peter MacDonald +74356,Josh Siegal +56980,Miguel Tejada-Flores +51386,David E. Russo +1190889,Stratton Leopold +1340132,Blondel Aidoo +1339446,Frank E. Eulner +143917,John Dunn +1425515,Sharon Mansfield +1418511,Tamás Nyerges +27889,Stephan Elliott +66769,Nansun Shi +74659,Gregory La Cava +79544,Pierre Di Sciullo +1354804,Keith Kellogg +1152110,Michael Gonzales +553927,Emilio Kauderer +959316,Evan Rhodes +8577,César Charlone +1901699,Carrie O'Brien +959314,Braxton Pope +1451661,John Bermudes +1477836,Thomas W. McMahon +29640,Joan St. Oegger +1723336,Laurent Danielou +84552,Rory Kelly +8514,Robert Parrish +1408305,Suhail Kafity +76258,Kris De Meester +53358,Sarah Curtis +109980,Alan Moloney +1094289,Laura Toplass +58294,George Armitage +1413466,Michael Shand +59429,Diana Stoughton +72204,Lü Yue +544951,Alexandre Volkoff +57652,Louis A. Stroller +35325,Eric Till +65234,Michael Shaara +1335159,Suzie Davies +1392104,Raoul Bolognini +1483226,Jerry Kung +10536,Alex North +2861,Eva Kolodner +4037,Ron Shelton +1487530,Alice Tompkins +1537036,Stewart Bethune +1897883,Taylor A. Cummings +1656903,Chitti Urnorakankij +1408357,Henry Tirl +557873,Bob Rose +1190164,Lissy Holm +1847,Wolfgang Braun +1604462,Herbert Smith +108625,Clemence Dane +1558115,Valerie Martin +1410142,San Davey +1580505,Yûichi Nagata +1773181,Bob Roberts +72405,Stu Krieger +1516157,Bert Berry +51486,Philippe Lyon +1745224,Andrew Corsi +1529603,Cristin L. Cornett +966846,Nadya Gurevich +185831,Jason Hughes +1577008,Carl Wurtz +1378695,Erik Aadahl +1553253,Anthony S. Loguzzo +1400356,Sylvie Chesneau +1424598,Christo Strydom +1612835,Sergei Petschnikoff +1242138,Morgan +95834,Gary Krause +2634,Pierre-François Limbosch +23414,Ross Dempster +51421,Marcello Fondato +2385,Ronald D. Moore +108013,Eiji Yoshikawa +1614965,Malik Hassan Sayeed +29618,John Lee Mahin +1397885,Jay Herron +1404549,Lori Wyant +1741194,James Thatcher +29210,Jody Levin +60212,Matt Lopez +1433735,Jim Vickers +20908,Jeffrey Silver +200670,Justin Mitchell +1416086,Bobby Amor +6422,Michał Lorenc +55357,Joachim Sturmes +11218,Alfonso Cuarón +21640,Robb Wilson King +1437885,Thanasak Julakate +58166,Parker Bennett +9373,Tim Collins +1094430,Jane Tomblin +1018965,Lisa Lassek +1733782,Kurt P. Galvao +1456487,Werner Sherer +1448057,Jordi Grangel +1759281,John Wray +85771,Jack Hayes +3394,Lynzee Klingman +34783,Martin Bodin +1409825,Robin Le Chanu +20033,Ebrahim Ghafori +29693,David Wu +1625896,Bill Harman +1410199,Ceri Evans +240071,Louis Saïa +4283,Pierre Pell +83072,P. Scott Bailey +1855076,Luiz Provin +1534112,Buster Sorenson +146503,Robert Yost +1470632,Terry Castle +1556946,Paul Minter +1015921,Ethan Smith +1535309,Randy Gerston +1308254,Donald Krafft +149117,William Anthony McGuire +62159,Mike Karz +1418381,Mike Perry +1411276,Deborah J. Page +1371069,Julie Pitkanen +68295,Anita Brandt-Burgoyne +1724869,Guy Defazio +39299,Heinrich Böll +1401736,Warren Lazarides +543194,Gary Jones +1557595,Patrice Iva +1271804,Cyrus Block +1367676,Nick South +56075,Robert Chappell +8427,Doug von Koss +151007,Peter Ramsey +12758,Noëlle Boisson +1661540,Anna Maria Vigano +1540847,Anca Muresan +71192,Greg Coote +23487,Joel Ransom +1090879,Joseph Nussbaum +85408,Ronald M. Cohen +1635038,Ian Bird +1605711,Kossa Mody Keita +1625064,Gaston Cornelius +560223,René Jordan +23866,Jo-Ann Chorney +1551530,Vera Steimberg Moder +28780,Mark Andrus +16398,Sarah Green +1547038,Bruce Litecky +127779,Harry Jackson +1341860,Eden Clark Coblenz +1664823,Joan McLeod +140623,Mamoru Sasaki +1425911,Bryan Pennington +1460431,Paul Carrera +1380380,Stuart Zsombor-Murray +1387186,Justin M. Lubin +1391735,Jackie Sullivan +32175,William Witney +1661572,Gilles Piéri +1001864,Jörg Höhne +13594,Joseph Barbera +1392093,Conny Fauser +1734776,Gavin Coford +760,Sander Vos +1015922,Diane H. Newman +1472429,Rachelle Gibson +1438623,Paul Slatter +34357,Abby Berlin +143888,Marisa Silver +68685,Ron Grainer +1319389,Blanche Boileau +1340319,John Brasher +1892494,Kenneth Sayers +118289,William Raynor +35271,Randy Rogel +1673523,Brad Oleksy +948789,Anita Camarata +1325,John Hubbard +118218,E.R. Hickson +18900,Christina Ann Wilson +1529524,John Stothart +1367963,Robert Stephanoff +1553246,Michelle Weiss +69690,Andreas Doub +13177,Marc Fishman +4339,Paul Crowder +985403,Vincent Pereira +1339440,Mark Hitchler +1398083,Abdellah Baadil +1310273,Curt Alexander +70104,Paul Oakenfold +1399484,Angela Quiles +68993,Godfrey Reggio +29621,Mario Castelnuovo-Tedesco +786406,Joe DeSalvo +1568008,Gustav Bellers +84124,Tina Gordon Chism +1380036,Thomas Saccio +1547032,Jennifer Madeloff +132648,Jenny Rushton +1857478,Kevin Westley +1400339,Matthew T. Duncan +1406189,Nina Hartstone +79144,Peter Beston +4106,Allen K. Wood +59533,Lindsay Pugh +66218,Jennifer Flackett +71793,Jim Cox +30232,Felix Mills +1583717,Lucila Robirosa +1297659,Larry Benjamin +1394033,Bruce Woloshyn +1778264,Stephen Price +73277,Renn Reynolds +9867,Ted Moore +1025553,Max Gordon +1418294,Lisa Wang +1401307,Robert A. Levine +52054,Matthew Stone +1513648,Gianni Cozzo +3805,Jon Peters +1630530,Shimon Allon +6629,James McAteer +1072762,Otto Binder +1387114,Manuel Salvador +64159,David Andrew Goldstein +14774,Harry Julian Fink +937093,Rich Ragsdale +958228,Kelly McGehee +1071,Tom Tykwer +1644926,Paul Delieu +81204,Thomas Stenderup +1730032,Julie Jouaffre +1607207,Tere López +1567424,William Boggs +1070246,Edward Cannon +1392670,Paul Messer +16174,Charles S. Haas +67466,Kate Robbins +13338,Lee Garmes +5875,Becky Glupczynski +1537540,Carole Cowley +957264,Susan Germaine +20976,T.J. Scott +1558415,Martin Duncan +37500,Julio Alejandro +117001,Ellis W. Carter +41550,Andrew Bergman +63995,Will Aldis +1703067,Frank Goodwin +88021,Jan Wellmann +142,William Broyles Jr. +1057173,Ed Baran +48523,Martin Tillman +1551950,Tegan Jones +1624060,Dallas Hartnett +1018754,Robert Crippen +27007,Ken Tamplin +70539,Taylor Grant +1100809,Otto Snel +142007,Steve Trenbirth +25558,Don Chaffey +1405472,Jack-Alain Léger +1424574,Laura Gwynne +1338370,Albert Aquino +20571,Jules-Amédée Barbey d'Aurevilly +8523,Russell Carpenter +45670,Bruno Nicolai +1392916,Trig Singer +22107,Deborah Everton +1761077,Rhonda Sherman +1452489,Thomas Baker +1185190,Edward McQueen-Mason +1548698,Pete Anthony +74536,Christa Vausbinder +24176,Jack Binder +41076,Shauna Robertson +36003,Susan Schulte +1392727,Liz Mullinar +92479,Gary Hymes +7490,Randy Ostrow +39455,Kimberly Mullen +1470597,Edith Keon +20911,John Howlett +1397818,Patrick Thornton +1477794,Ken Hauser +1896004,Steve A. Stephenson +1549436,Sam Tedesco +103678,Paul Mantz +57955,Christine Olsen +13228,Lester Cohen +61617,Jacquelin Perske +1700850,Dan Hansen +1464375,Sai Ping Lok +1414539,Deborah Rutherford +1538240,Michelle McDonald +1129799,Alain Bainée +12113,Deric Washburn +1856494,Peter Clark +1603109,Karoly Balazs +39463,Sergio Sollima +1281881,Peggy A. Schnitzer +53216,Dwayne Carey-Hill +55952,Nancy Rae Stone +1593035,L. Porosov +13273,Takefumi Yoshikawa +61075,Kirk D'Amico +29667,Jack Asher +1042653,Deborah Raymond +1406850,Maxime Couteret +1661579,Jill Rosenthal +108987,William A. Seiter +122723,Michel Marriott +122294,Troy Brown +12203,Christine King +149130,Arthur Caesar +58102,Stanley O'Toole +547985,Kazuo Oga +61397,Jimmy Miller +72239,Walter Ulbrich +1560824,Phillip W. Palmer +155535,Douglas Crosby +1537140,Victoria Hawden +60010,Gabriel Grunfeld +21854,John Rosenberg +1301,Philippe Rousselot +54271,Dean Zimmerman +1334943,Sanda Popovac +11746,Elizabeth Moore +106850,Elana Lesser +67628,Joe Hale +83998,Juraj Herz +1555378,Edmond Chan +26184,Charles Merangel +1708859,Karine Binaux +1711809,Tsuru Nakai +7888,Harley Jessup +589977,Rob Sweeney +30208,Sidney Buchman +56327,Louise Rosner-Meyer +28925,Joachim Grüninger +4896,Laurent Pétin +19093,George Marshall +1867767,Mel Lawrence +13192,Diane Macke +1378725,Blue Angus +1128254,Anne Bruning +42149,Willi Bär +1441279,Frank Haddad +64682,Glenn A. Bruce +12507,Raffaella De Laurentiis +10815,Theo van de Sande +22599,Ben Lewis +1454750,Josephine Huang +23117,Stephen Keusch +81518,Harold Leventhal +1711807,Takejirô Nakajima +1743704,Jelena Silajdzic +575926,David Butler +1341865,Ana Maria Quintana +1840038,Frances H. Flaherty +20647,Steve Conrad +1419812,Matt Coby +1074401,Antón Laguna +1125487,Danilo Marciani +17669,Joseph A. Valentine +120900,Yongrock Choi +1161366,Michael Parkinson +3526,Agnès Guillemot +60867,Melanie Sloan +7262,Stuart Dryburgh +79159,Lao Zai +1470159,Marilyn MacDonald +1403537,Cosmas Paul Bolger Jr. +45058,Julian Day +1467281,Gene Hibbs +1407206,John M. Davis +73047,Yukako Matsusako +1559616,Grant Volkers +74565,Jack Kinney +1230367,Mina Shum +18577,Mischa Bakaleinikoff +1407848,Orla Carrol +61156,John Schimmel +1406861,Roman Avianus +1413169,Dennis S. Sands +238172,Christian Kolonovits +1553010,Lee Tucker +70379,Ivan Davis +18125,Marjorie McCown +52894,Laurence Dunmore +1143244,Justine Seymour +1581132,Alex Aach +1283529,Hans Grimm +929960,Daniel Ouellette +1440854,Andrew MacDonald Brown +545036,Salif Keita +52193,R.J. Kizer +72434,Ming Sung +106238,Jim Grib +3987,Conrad Buff IV +56719,Willie Chan +1426782,Jean Bereziuk +225702,Darko Mitrevski +22089,John Sturtevant +60744,Junichi Suzuki +56072,Andy Grieve +1573104,John Tarlini Sr. +1389137,Charley Bob Burnham +89816,Sidney Harmon +937826,Randy Russell +7649,Arthur Hilton +67360,Maya Forbes +111869,Marc Rosenbush +9049,Victor Fleming +1526465,Ann Foley +1411673,Kaush Bharti +1373729,Lisa Vick +1429643,Pat Rambaut +94545,Matthew Jensen +1116994,Jean-François Chaintron +62809,Ron Cosmo Vecchiarelli +1408458,Jim Andron +1422071,Leslie J. Kovacs +1419119,Cid Swank +64656,Chris Dorr +41412,Richard Bracken +1744057,Kim McCray +13570,Samuel Goldwyn +54735,Dara Weintraub +21639,Nancy Green-Keyes +92379,Chris Fielder +1558211,Heather Sharpe +1413509,Gene Warren Jr. +1534030,Eddie Marks +21241,Richard Neely +1590,Steven Poster +79253,Lahly Poore +1546442,John Pritchett +71881,Paul Skidmore +3990,Ed French +32050,Ugo Santalucia +1439016,Dale DeStefani +1377138,Domiciano Rodriquez +7493,Michael Berenbaum +1585014,Ralph Merzbach +1304332,Javier Azpeitia +12682,Marc Sillam +14617,Winfried Grabe +1803767,Larissa Supplitt +69573,Paul Jordan +1567991,Helen Grizuk +1392718,Jasin Boland +1338135,Lou Solakofski +930663,Tim Boggs +16745,Melville Shavelson +1767009,Jean Courteau +67927,Cédric Hervet +2123,Ronald Roose +32212,Pablo G. del Amo +42291,Jacquie Barnbrook +57958,John Winter +1348060,Fredric Hope +1555880,Edward Lassak +1665714,Ron Jacobs +1392908,Karen M. Murphy +1881627,James Ellis Deakins +1553631,Chamonix Bosch +1114467,Chris Cullari +936765,Jeff Atmajian +1565506,Gladys Atkinson +1581123,Jimmy Waters +1406390,Dan Hegeman +117220,Colin Jackman +1424942,Pascal Charlier +80450,Jang Yoon-hyeon +1452750,Cynthia Ludwig +1513635,Derek Cracknell +1841642,Barbara Riley +14749,Michael Lloyd +1613297,James J. Atkinson +1099130,Carmen Kotyk +1447594,Manny DeGuzman +59370,David Insley +56284,Harry Hitner +21794,Seth Flaum +1204438,Eduard Artemev +1124839,Derek Burbidge +42007,Vicki Christianson +1278166,Francisco Castellanos +1461378,Ruben A. Aquino +113305,Olivia Ahnemann +1120150,Fritz Stahlberg +21003,Stephen J. Eads +564868,Kôichi Iwashita +4413,Sergio Amidei +57327,David Sheffield +1686778,Gertrude Davies Lintz +1541277,Corinna Ughi +1889491,Honza Ondrovcak +95637,Walter Ferris +6468,Nick Wechsler +67357,Toby Yates +1409708,Andrew Millard +1130007,Francesco Bronzi +4507,Gary Barber +52004,Elaine Goldsmith-Thomas +9381,William Roy Eckert +72509,Ichirô Yamamoto +1319193,Donna Marcione Pollack +78963,Jennie Hughes +1592439,Joan Weidman +18595,Warren Low +2533,Dallas Puett +2326,Shelley Bolton +40355,Bill Lenny +1707448,Craig S. Jaeger +1520933,Jean-Paul Loublier +1410125,Alison Rainey +52259,Peter Safran +1411166,Peter Tothpal +1453963,Marco Carpagnano +62830,Melina Root +1484336,C.M. Woolf +1338878,Jules Buck +136450,William Stout +20687,Steve Barancik +60207,Steve 'Spaz' Williams +1581073,Adele Marolf +1377216,Gerald Lehtola +53299,Howard Baldwin +963792,Michael Hogan +1586345,Jarda Peterka +566919,Tom Kuhn +1431975,Sonny P. Filippini +1459943,Walter Donohue +71250,Stephen O'Rourke +120928,Gordon Stone +100203,Jim Keltner +1559635,Colin McFarlane +1407029,Jay Fortune +1585363,Tim Baar +130424,Rafal Zielinski +64830,Andrew Gunn +1408326,Kosta Saric +119082,John Barnwell +1611793,Jean-Philippe Collin +5542,Sim Evan-Jones +46812,Mary Olson-Kromolowski +1613301,Simon Firsht +1646055,Robert Mehnert +10764,Arnold Kopelson +589294,Greg Stuart +33612,Alicia Keywan +56539,Nicole Holofcener +1128354,Eric A. Williams +89036,Fred Katz +45940,Jack De Wolf +1544638,Mark Smith +1394971,Richard Merryman +5291,Donna Berwick +20071,Sebastian Jungwirth +61630,Alexandre de Franceschi +82800,Norman Taurog +56158,Lorne Michaels +1549445,John Bires +57744,Jonathan Aibel +1444909,Melissa A. Yonkey +77694,Ray Berman +32087,Massimo De Rossi +1099252,Jack A. Goodrich +1228007,Larry Riley +1440302,Furio M. Monetti +1266787,Edward R. Brown +1024842,Billy A. Campbell +73962,Kristine Peterson +1521663,Mariana Paredes +19245,Frederick Wilson +1514311,Christof Gebert +1611781,Martin Chalifoux +56725,Claudio M. Cutry +5167,Ida Random +1403475,Kevin Elam +1416972,Mari Vaalasranta +1532477,Gilbert Kurland +1415878,Sharon Pollack +16179,Dennis Michelson +81695,Steve Lopez +43863,Igo Kantor +1879203,Michael Shore +1497450,Chet Fabian +69362,Bart Simpson +85801,Anees Bazmee +1457164,Alberto Álvarez +1305251,Tusse Lande +91065,Robert DiGrigoli +1551663,Stephanie Keating +1322484,Gerald Barad +1563890,Tim Foster +137198,Jamie Sparer Roberts +551822,Takashi Sasaki +74978,Terry Porter +1070152,R. Mark Hughes +1544023,Allen Saalburg +1401595,David Tickell +1826995,Angela Viglino +1424319,Paula Barrett-Barbier +1790549,April H. Grantham +109044,Lawrence Bassoff +48807,Jere Huggins +1120619,Mitch Lindemann +56959,A.E.W. Mason +955886,Melville Tucker +1528387,Michele Baylis +4671,Zach Staenberg +14609,Kara Lindstrom +58380,Jean-Daniel Fernandez-Qundez +10125,Jennifer Williams +18073,Sarah Radclyffe +229862,Richard Markowitz +68684,Joyce Hooper Corrington +1040308,Raymond Boltz Jr. +1019840,Duke Yelton +1394791,Eduardo Santana +1655548,James Farabee +1027221,Emanuel Cohen +19597,Norobu Yoshida +1187187,Monica Ochoa +1338491,Johnny Borgese +80703,Minoru Inuzuka +1440806,Richard Guille +9644,Barry Fanaro +41551,Bill Gerber +1607164,Rick Dallago +23739,James L. Venable +66897,Christopher DeFaria +1734496,A.J. Lambert +1333988,Graham Coutts +16889,Marvin H. Albert +32724,Morten Rosenmeier +1447385,Jean-Francois Rey +1452259,David Glasser +1753063,Debra Gjendem +62828,Michael Shear +1540888,Mircea Modoi +1697683,Larry Gordon +1410982,Cynthia Beckert +62680,Robert Conte +5486,Steve E. Andrews +29080,James Bartle +1551273,Michelle Colbert +8863,David E. Blewitt +42385,Carrie Kennedy +1386920,Andrew Cooper +1029064,Karen Richards +544966,Glenys Rowe +208118,James Bogle +6654,P.A. Lundgren +1532691,Karen Higgins +4309,Folmar Blangsted +72959,Glendon Swarthout +1735709,Kenneth Cornils +1877103,William Girod +12146,Jean L. Speak +1523407,Erla Lank +13323,Bob Jones +1208333,Joseph Ressa +1312505,Leeann Radeka +82195,Terri Tatchell +1429246,Kelvin Lee +29422,Jemima Cotter +1551326,Edward Morrison +1560900,James Azizi Penny +1578505,Alvord Eiseman +31030,Thanit Watcharasakpaisan +38687,Virginia Field +70665,Richard Adams +20130,Martin C. Schute +6467,Karen Murphy +59944,David Bombyk +22558,Nils Gaup +1619108,Brice Criswell +100036,D.W. Griffith +41909,Manuel Alberto Claro +63923,Craig Safan +581423,Lloyd Kramer +13226,Steven M. Stern +1176048,Teresa Medina +17117,Yoshihito Akatsuka +1047832,Len Huntingford +1117881,Chookiat Sakveerakul +1417496,Bundy Chanock +91085,Robert W. Glass Jr. +1674661,John Morrone III +1378728,Jessica Clothier +958588,Alexandre Lippens +59960,Brad Luff +177880,Thomas C. Chapman +59523,Terry Loane +62928,Rick Nathanson +107753,Shamim Sarif +1341852,Dean Wilson +1638528,James Clyne +1602140,Kveta Legátová +1780215,Susan Rhoden +1555488,Paul Ledford +20008,Joe Shuster +122355,Gary Connery +31063,William P. McGivern +8378,Ira Gilford +44950,Richard Schickel +21478,Ashok Amritraj +1767012,Schavaria Reeves +1372838,Mark Gordon +1193631,Brian Rzepka +59665,Angelo Milli +1886670,Mathew C. Judd +59838,Scott Meehan +69568,David Holden +1348,Philip Lee +1566274,Edward O'Neal +1449149,Jennifer Bower O'Halloran +75804,Kevin De La Noy +13574,Irene Sharaff +2215,Denise Chamian +67273,Roger Waters +71849,Lynne Southerland +1899325,Gwenaël Mario Grisi +67846,Nancy Richardson +1389621,Keith Adams +62686,Jörg Westerkamp +1011,Susanne Bier +1683614,Claudia Schoelzel +42036,Kami Asgar +1650017,Joan White +58498,Dominic Sena +2720,Derek Gibson +1456042,Johan Harnesk +1615612,Felix Günther +1125104,Antonio Schiavo Lena +8524,Peter Lamont +14676,Donald Ogden Stewart +1078629,William C. Andrews +69417,Tom Rogers +14828,Robert Martin +957875,Jana Stern +51323,Richard Grandpierre +1129543,W. Terry Davis +1098054,Egle Mikalauskaite +1807334,Gene Feldman +7734,Steven Wolff +1000952,Selma Vilhunen +54285,Julien Zidi +6996,Patricia Kerrigan DiCerto +1132129,John Hughes +14293,Frank Launder +1851743,Korey Scott Pollard +63293,Jeff Knipp +1425980,Fortunato Frattasio +91099,Randy Vandegrift +8973,Steve Spence +1573094,Cory Poccia +1720281,Diana Goodwin +22326,Olof Johnson +27785,Hiroshi Takahashi +21512,Norman Wexler +29636,Russell F. Schoengarth +14861,Bronislau Kaper +81530,Charles Kolb +31202,Gert Andersen +1901701,Kôichi Hamamura +1373435,Lisle Engle +1711837,James Brown +1414289,John R. Manocchia +51702,Brad Krevoy +118938,John Clark +1543598,Richard Maybery +1457819,Brandee Dell'Aringa +1341781,Gregg Landaker +4185,Emmanuel Lubezki +12477,Pierre David +17845,Michael Meredith +1553265,Ronald G. Cogswell +8528,Grant Hill +1392684,Axel Bartz +1334462,Joseph Kearney +1667250,Andrew Degnan +1095529,Francis Kuipers +4181,Bo Goldman +5069,Robert Guédiguian +25830,Debi Manwiller +1459917,Jennifer Herbert +60213,Steve 'Spaz' Williams +1153824,Burton King +10714,Lindy Hemming +153,Thomas Newman +1437893,Jimmy Wong +1534172,Jack D. Moore +5594,Ingeborg Molitoris +1564215,Ingrid Semler +68064,Sébastien Erms +1619084,Orlando Chongo +1072006,Robert J. LaSanka +93533,Tristan Aurouet +143163,Sidney Meyers +233495,Stanley Shpetner +4085,Rudolph Sternad +23484,Susan Cooper +1817659,John Taylor +1335,Wang Bin +20007,Jerry Siegel +1851156,Mia Levinson +1790560,Shane Summers +1129433,Frank Brill +1654978,Kantee Anantagant +1753769,Holiday Freeman +58367,John Thomas +1866832,Clif Kosterman +1403317,Ray Caple +91124,Karen E. Etcoff +20307,Joachim Rønning +7440,Lisa Scoppa +1207501,Carol Lampman +89531,Arthur Lueker +1624499,Douglas Ingram +1668101,Susan Gelb +1734494,Herwig Gayer +52024,Glenn M. Benest +83081,Troy Alan Peters +1483,T Bone Burnett +740578,Gary J. Palermo +1552537,David E. Baron +1434575,Rene Mikan +1046544,Michael Bearden +1445981,Katherine Kean +1545741,Adriana Grand +14492,Eric Orbom +5371,Gary Gilbert +1401599,Christian McWilliams +46351,Michael Jaffe +33172,Arnold Pressburger +1418454,Sandy DeBlasio +1472328,Aimee Keen +40052,Gerry Fisher +148442,Anne Caldwell +1767040,Stephen Grant +81138,Michael Konyves +103049,Bess Meredyth +40460,Leith Stevens +68170,Tom Harting +103485,Fredrick Y. Smith +1546619,Karey Williams +1441363,Cristin Pescosolido +62484,Richard Hobbs +22061,Helen Jarvis +1584252,Suzanne Evans-Booth +1676182,Rudy Braun +1601525,Zentrady +34500,Dave Grayson +1347100,Geert Wilders +1472505,Marie-Ange Ripka +1241026,David Briggs +53197,Vincenzo Tomassi +1630806,Aimée Stuart +40599,Robert Day +161508,Gwen Bagni +1538763,Pau Costa +89535,Norman Krasna +114512,Lloyd Nelson +11100,Julia Wong +72259,Larry Levinson +1464530,Mark Davison +12966,Michael Goldberg +19314,Geoffrey Hansen +1530166,Kathy Nelson +1710270,Bonnie Lemon +1035038,Mark Doering-Powell +1684987,Thomas S. Ciciura +1323289,Tangi Crawford +558233,Ivan Chachornia +10316,Theo Angelopoulos +1881570,George Marshall +62239,Magnus Kim +1893883,Reggie Jones +29868,Raymond Hughes +1454755,Tom St. Amand +1529605,Tariq Jalil +11063,Casey Hallenbeck +572190,Luigi Chiarini +1298069,Valeri Martynov +78135,Gregory Wilson +52033,Nancy Graham Tanen +83856,Jennifer Higgie +1442510,Sandra Ford Karpman +4948,Jim Taylor +1555215,Christina Mullin +1404838,Frank Smathers +2504,Marty Hornstein +21517,Mary Colquhoun +24186,Steve Edwards +64744,Debbie Hayn-Cass +1539699,Igor Grinyakin +1146969,Gabi Cretan +19840,Alejandro Amenábar +29015,Robert Simonds +13015,Phillip Noyce +1524648,Heather Pollock +1415964,Deborah Wallach +1534577,Fumio Yanoguchi +1459630,Michael Humphries +1545393,David Appleby +10442,Robert Drumheller +54766,Raija Talvio +75801,Tom Rand +1210381,Steve Goldberg +21079,John Benson +1905120,Denise Whiting +9425,Bill Brown +114562,Ray Kellogg +244625,Sam Grana +957558,Linda Fields +1581166,Alain Goniva +53333,John Hillcoat +12868,Dean Mitzner +1027356,Joel Moss +1603664,Orçun Kozluca +1400536,Devon Miller +1116142,Shaktimaan Talwar +34894,Allison Abbate +1518756,P.J. Voeten +62719,Jay Anson +16638,JoAnn May-Pavey +15023,David S. Dranitzke +1021197,Nana Shiina +1624059,Flore Marina Sandoval +86982,Robert Gray +81374,Kevin Falls +67717,Michel Hazanavicius +3048,Peter Best +78081,Irving L. Leonard +102343,Allan A. Apone +1851744,Carlos Azucena +37362,Henry King +1573087,Danielle Cadorette +34224,Viola Lawrence +1569561,Melanie Banders +24958,Harriet Greenspan +94297,William Wister Haines +1403399,Stan Parks +2867,Michael Shaw +59164,Ali LeRoi +1454032,Owen Klatte +1421644,Judit Halász +1067469,K. S. Adiyaman +24775,François de Roubaix +69954,David Berlatsky +1462820,Margaux Mackay +135473,Franz Werfel +141176,Carolyn Cavallero +1461399,Lisa Keene +12105,Jon Zack +1455294,Hope Slepak +1592140,Murray Cutter +952511,Tita Lombardo +1765790,Dennis Marchant +27923,Pen Tennyson +567572,Doug Bost +68437,Adam Schlesinger +13864,Cary Odell +24310,Mitchell Amundsen +102560,Guel Arraes +497,Doug J. Meerdink +55045,Shira Geffen +1571775,Steve Salada +230000,Oleg Korytin +57266,Simon Perry +60012,Rob Hahn +1005950,Michael Davis +100020,M. R. Sharifiniya +1467258,Norma Koch +1410583,Mike Thomas +8411,Daniel Orlandi +62739,Herb Gains +126438,Claudio Baglioni +1120414,William Porter +1449378,Danielle Rueda-Watts +1647714,Alan Cohen +94790,Max D. Adams +930422,Isao Tomita +29700,David Winters +102862,Louis Chavance +5544,Perry Moore +1429241,Catherine A. McCabe +1573621,Kiley Fascia +56214,Nuri Bilge Ceylan +12235,Vilmos Zsigmond +20170,Linda Lowy +8653,Edward Tise +1391130,Mark O'Kane +1348789,Clare Scarpulla +1535767,Jean-Michel Tresallet +30177,David Abel +119096,John Lockert +1453613,Martin Asbury +1562222,Bill Fibben +550631,Iole Cecchini +991827,Ben LeClair +148119,Phillip Borsos +60029,Swizz Beatz +10809,Robert Engelman +46809,Jacob Craycroft +1840476,Joanna Casserly +1132,Krzysztof Piesiewicz +1556697,Marisol Jiménez +33174,Archie Stout +1553257,Michael Greggans +1355962,Tim Hands +1790557,Adryenn Ashley +9202,Steven A. Jones +16494,Jesse Rosenthal +1781736,Daniel Tresca +1073311,Jon McCallum +1287500,Pina Robinson +18512,Sarah E. McMillan +1464775,Kathryn Hereford +18253,Carol Sobieski +57201,Mairi Bett +1377228,George Billinger III +1441341,Mark Lane +954441,Jeff Rice +75288,Andrew McPhail +2890,Jeffrey Sharp +56889,Guy Moon +960,John Murphy +167903,Curtis Kenyon +957127,Florence Fellman +1187811,Brough Taylor +10637,Kurt Luedtke +132800,Jack McGowan +40319,Jacques Comets +3726,Florentina Welley +45079,André Brummer +16369,Philippe Hubin +75002,Budd Carr +1616176,Tim Sabatino +34885,Pippa Harris +61294,Jon Shapiro +1118257,John DeCuir +15436,Jon Farhat +7395,Bobby Farrelly +64886,Lee Dong-jun +1415881,Clare Martorana +1445842,Robert Zuckerman +68417,James E. Newcom +412399,Harvey Manger +40444,Ane Crabtree +10466,Christopher Wood +3656,Affonso Beato +63675,Liz Tigelaar +25852,Gustave Flaubert +71932,Anne-Laure Guégan +8889,Jerry Jost +120175,John Tucker Battle +19800,Richard Marquand +25061,Maria-Teresa Barbasso +1445979,Nick Kosonic +1582414,Jean-Pierre Avice +70588,Michael Gibbs +17450,Anne Carey +1400102,Adam Fanton +1462702,Marc Lulkin +228356,Emil Berna +1409773,Willy Allen +993550,Melody Bank +1813027,Alaric Jans +1762663,Pamela Alessandrelli +2287,Bill Butler +1088045,Nicolai Albrecht +54590,Steve Rash +21808,Matthew Chapman +42382,Michael Hirsh +27794,Jun'ichirô Hayashi +15182,Edward Garzero +1586400,Harimander Singh Khalsa +17248,Paul Hoffman +9517,John T. Churchill +8969,Chris Menges +1551661,Philip Esteves +800252,Jay Deuby +76280,Millionaire +1338838,Wayne Morris +1636754,John Edwards-Younger +1723679,Carlos Llergo +53713,Affonso Gonçalves +69928,Peter Schink +1102820,Moshe Levin +100039,Hendrik Sartov +1425994,Dion Hatch +1724282,Jack Geist +40846,Neil Chaplin +1514009,Paul Bucknor +9000,Christopher Figg +1542808,Stephenie McMillan +1455461,Justin Hammond +1626009,Claudio Maielli +1678634,Jeff Snow +3953,Gary Lucchesi +1765796,Steve Ginsberg +9545,Anne McCarthy +52530,Adriano Goldman +52943,Art Monterastelli +66266,Mike Mignola +35692,Buddy Johnson +1833034,Mort Zwicker +1531897,Martin Malivoire +53018,Mary Finlay +1102110,Jan Olof Ågren +1431084,Benito Aguilar +1323281,Hana Kucerova +64206,François-Eudes Chanfrault +1023549,Paolo Ricci +1445990,Howard Rothschild +981,José Antonio Bermúdez +4149,Kathy O'Rear +1294154,Eric Hughes +1267326,John R. McLean +77162,Rodrigo García +1407903,David Roberson +17732,Hanno Huth +100388,Naomi Foner Gyllenhaal +17231,Chris Hanley +55117,Matthew Bright +4345,Roy Webb +14599,Benoît Debie +120411,Elliot Tong +9918,Peter Murton +60701,Beate Balser +1581130,Barry Abbot +183036,Doug Ellin +1503267,Earl Wooden +1780228,Jason Barfield +1752651,Penny Charter +1458344,Lew Ott +957840,Trip Brock +1552358,Janet Gaynor +1744054,Bruce Benson +1457663,Patricia Murray +1547532,Shinichi Kishimoto +28632,Ben Cosgrove +139725,Gale Edwards +2120,Cliff Eidelman +1738084,John A. Stewart Jr. +24800,Charles E. Wallace +3253,Kenneth Peach +1337825,Dagfinn Kleppan +84415,Vendela Vida +63129,Nicolas Ronchi +17252,John Lunn +1357087,Katie Roumel +1190954,Ottavio Oppo +19954,Benno Tutter +1377131,Stephen S. Campanelli +960673,Peter Borck +1737829,Harrison D. Marsh +1120538,Craig Mitchell +89593,Leonardo Bercovici +1733237,Dave Tommasini +1177639,Stephanie Leger +554887,Stephen Hunter Flick +1117852,Wu Kebo +8617,Charles Brackett +14138,Pino Donaggio +13960,Bernard B. Brown +1689555,Ene Watts +52910,Chris Chow +724464,Barbara Letellier +1796491,Jay Alfred Smith +78485,Jeff McGrath +989084,William Kellner +1447593,Mick De Falco +5836,Bill Walsh +1586334,Erin Julie Tavin +1362141,Halina Paszkowska +62016,Arlene Sarner +56171,Christopher Eberts +557704,Peter-Christian Fueter +52208,Joe Massot +1357066,P. Scott Sakamoto +66796,Elfi Böttrich +1627721,Susan Alexander +1192600,Richard Sherman +62810,Larry Tanz +1413949,Richard Hart +1043452,Manuel de Anda +51737,David Diliberto +157,Thea von Harbou +68700,Bob Schooley +1667221,Elise Warner +1402027,Hal Levinsohn +552308,Yoshio Miyajima +1326398,Raymond Dupuis +1378068,Carl Fullerton +1417398,Janice Alexander +11655,Marty P. Ewing +1117863,Xiaoei Han +62271,Terence Michael +1364409,Douglas Womack +53428,Florence Vignon +1673522,Warren Dunlop +20228,Goro Koyama +1573614,David Sardi +32982,Jane Austen +89628,Thomas Bidegain +1574927,Jim Gillespie +3838,Cécile Decugis +21767,Tom Werner +1601800,Edgar Arellano +1404731,Joe Bauer +1394780,Peter Voysey +1550321,Takejiro Tsunoda +67834,Floyd Mutrux +1548644,Paul Clemente +1724279,Kenneth Au +1471965,Stefan Żeromski +1745942,Richard Oswald +62057,Mark Blackwell +76260,Catherine Marchand +74879,Robert Lord +60260,Brian J. Gilbert +774,"Daniel Petrie, Jr." +1621063,Myrna van Gilst +141301,Julie Berghoff +68569,Hans Gunnarsson +57725,Yao Chung Chang +1472296,Scott Humphrey +1667272,Lawrence Lewis +124269,Neil Hardwick +18593,David Raksin +1437881,Kritapas Suttinet +16672,Ate de Jong +1870692,Patricia L. Adams +1319731,Elisabeth Vastola +1656904,Kitti Kuremanee +75159,Karl Engeler +1423017,Ken Glassing +1879201,Stuart Emanuel +11711,Paula DuPré Pesmen +1342617,John Krenz Reinhart Jr. +1414183,Christian Alzmann +1544312,Marguerite Phillips +22055,Billy DaMota +1427883,Don McGinnis +1359574,Angus Cook +1418159,José Manuel Herrero +89045,Benjamin Glazer +57219,Joan Didion +1428125,Charlotte Parker +1526476,William Cueto +1411265,Vic Radulich +1413935,Tony Gibson +1215939,Greg Johnson +1557603,D.J. Hall +1633183,Tom Dawson +42712,Tony Giglio +231876,Brigitte Buc +1725268,Kirsten Hecktermann +1726440,Dana Gabrion +41830,Rod Nelson-Keys +1842850,Norman Kenneson +1500632,Sydney Z. Litwack +173686,Anthony Drazan +1384393,Amanda Goodpaster +1535447,Jack E. Pelissier Jr. +1532250,Susan Carol Schwary +7096,Halina Prugar-Ketling +63949,Charles R. Meeker +1615555,Aghi Koh +1316714,David Hubbard +11060,John Grisham +1652741,Norman Epstein +931888,Frédéric Bélier-Garcia +21279,Janet Roach +27444,James Orr +32350,Franco Fumagalli +52609,Breck Eisner +81913,Lam Nai-Choi +30543,René Mathelin +30550,Patrick Ford +1367562,Jack English +1724250,Ben Farris +71262,Joshua Donen +21636,Arthur M. Sarkissian +1530124,Peter Parnham +7714,Michael Kamen +26174,Mary Wills +204163,Danny Wallace +1454977,Bert Henrikson +34953,Sebastian Duthy +82620,Nora Roberts +13571,Hugo Friedhofer +1481688,Renata Stoia +1401355,Patti McNulty +35796,Craig Mazin +1031469,Eddie Perez +70102,Tsutomu Kamishiro +11649,Cameron Crowe +1567540,Iyono Masubuchi +34529,Walter Anderson +1013980,Birgit Hutter +1692679,Gretchen van Zeebroeck +1273378,James Robb +1854997,Linda Perkins +113502,Johannes Naber +87009,Del Shores +92332,Waldo Sanchez +51447,Yasushi Akimoto +1154120,Harry Lee +1600634,Matthew Steeves +1389668,Christopher Elke +1552351,Matt Glover +1214,Charles Minsky +9155,Helen Fielding +1406200,Stacy Mann +1532720,Nanrose Buchman +73333,Caroline Tambour +1402030,Scott Sohan +16731,Paula Weinstein +197,David Silverman +1415151,Aaron Weintraub +5626,Michael Polaire +29766,Michael Patrick Goodman +1423757,Scott Sanders +68016,Kevin Kaska +1559636,Todd Orr +1727301,Henno van Bergeijk +1707115,John Cano +31523,Gerry Turpin +64115,Herman Wouk +146811,Miles Swain +9855,Terence Young +1416994,Milla Vilmi +1002528,Everett Alton Brown +20683,Patrick Blossier +1378830,Jeanmarie King +4910,Michael Clancy +1792647,Katherine Fletcher +1046771,Caspar von Winterfeldt +1257935,Walter Scheuer +1391435,Gerald S. Paonessa +1856486,Ivy Rosovsky +1562587,Les Lazarowitz +1833857,Laurel Moore +1095093,Bridget Cook +1586343,Mike Wike +1462677,Stéphane Couture +1032783,William Redner +4945,Joe Johnston +9264,Sergio Mimica-Gezzan +39827,Lesley Barber +1599791,Zijad Mehic +1808701,Bela Kerek +1170552,Don Bloch +141297,Robert E. Morrison +1556432,John C. Hill +1532699,Sheree Morgan +1531871,D.J. Plumb +19896,Jessica Hausner +34428,Henry Batista +46588,Bill Pohlad +1551653,Jeff Schweikart +1498,Merritt B. Gerstad +1099,John F. Link +61921,Courtney Solomon +1445904,Bob Bring +35089,Philip Dean Foreman +1537384,Ladislav Winkelhöfer +1418404,Jarrod Tiffin +11700,Keith Neely +11653,Steven P. Saeta +1389585,Bill Taliaferro +1515651,Jennifer Hammond +8330,Tom Sternberg +16969,Ju-hun Yun +1487178,Waldemar Kazanecki +1780226,Anthony Chiofalo +65430,Takeshi Shudo +14957,Colin Welland +1881566,Paul Stephenson +41697,Sara Parriott +1619088,Larry Hoki +29341,Harry Cohn +97202,Kenji Mizoguchi +1048068,Charles E. Ford +67372,Collodi +58167,Terry Runte +112609,David E. Fluhr +60834,Jyrki Murtomäki +592336,Daniel Goldstein +58871,John Refoua +73143,Kazuyoshi Okuyama +1468808,Christiane Courcelles +1123135,Eun-il Kang +21669,Philippe Lioret +60713,Michael Hothorn +142513,Emma-Kate Croghan +14042,Deena Appel +1420154,Renée Tondelli +1400553,Steven M. Saylor +558274,Albert de Courville +56518,Tom Foden +62468,Jean-Michel Lacor +1096443,Donna Morong +134454,Vasile Albinet +1827950,Peter Gallagher +61806,Neil Thumpston +1391389,John Bramley +1595992,Kaisa-Kitri Niit +55177,Marcelo Zarvos +1411245,Nicolas Le Messurier +1400012,Patricia Johnson +43560,Julia Blackman +932936,Denis Holt +945609,Matthew Mallinson +97711,Michael Hickey +50952,Alice Normington +1120181,Gianna Pisanello +1441373,Tracy Young +1666715,Stephen H. Foreman +215516,Pete Anderson +12333,Virgilio Marchi +1597878,Robert Bain +1474242,Karsten Wedel +1470937,Jim Andrino +1449374,Tony Testa +1427523,Emma Davie +1542803,Jeremy Lubbock +113048,Tim Gomillion +148455,Ziad Doueiri +1337673,Jordan Markov +1718228,Warren Beaton +1209536,Judy Bunn +1400833,Dea Cantu +1552887,Don Henry +936505,Chris Howell +1708268,Patrick Rainville +148025,Edgar Smith +1038526,Roberto Cicutto +36120,David Ambrose +28620,Martin Gschlacht +115102,Kevin Hyman +51445,Eric Valette +80944,Emilio Foriscot +1565164,Brian W. Armstrong +20715,Alexis Zabe +109356,Adolfo Aristarain +1420155,Michael Janov +1674670,Michael Conte +15727,Tracey Seaward +62024,Bob Brady +1169108,Kyle Onstott +29894,Beatrice Dawson +1417408,Mika Saito +1334507,Allan Fung +52413,Jim Strouse +578793,Fred S. Winston +16981,Ángel Hernández Zoido +33255,Lois Duncan +1483583,Alexa Alden +84378,Nick Fraser +1194869,Harri Nykänen +29684,Karl Exner +1377456,Sam Selsky +119294,Abbas Kiarostami +203520,David Kew +1276817,John P. Goldsmith +1180972,Tiffany Rodenfels +69991,Pen-Ek Ratanaruang +1733795,Tom Carrick +66689,Dawn Swiderski +1420163,Vanessa Nirode +6346,Anne V. Coates +1309439,Lina Caterini +83135,Harry Waxman +41588,Zanne Devine +31318,Javier Torres Torija +17649,Alexander Witt +1645447,Nikolas Korda +1536258,Thom Rainey +4586,Pitof +1297,Richard D. Zanuck +1132469,Akinori Kuroda +1445982,Mitchell Rothzeid +572168,Darren Kloomok +8594,Francisco Bispo +108928,Michael Crenshaw +1069801,Mitchel Stanley +1392141,Michelle Kurpaska +1457632,Kevin Johnson +92909,Joel Sayre +2801,Andrzej Wajda +120753,Lynn Shores +1138117,Oskari Pastila +369420,Charles Mudede +64814,Peter Straughan +1391730,Steve Unwin +1816299,Eugenia Levin +3928,Georg Steinert +64875,Chris Walas +66450,Ryszard Chutkowski +29056,John Scott +15194,Carlo Di Palma +70862,Richard Thorpe +1544697,Robert R. Rutledge +1767013,Jeremy F. Butler +161984,Barry Shipman +17220,John Kasarda +1341858,Gregg Rudloff +32766,Toni Amber +71086,Robbie Ryan +37268,Luke Davies +33257,Catherine Adair +10999,Joel Simon +16626,Martin Johnson +1418282,Martin Bruveris +1550220,Rodney French +30168,Anthony Hinds +1461149,Steeve Boulianne +28,Wendy Finerman +85110,Brooke L. Goldman +1212408,Jay Firestone +1235078,Robby London +1531278,Rudy Pi +956462,David Wisnievitz +50025,Laurent Brunet +1855227,Richard Fettes +1458350,Ray Young +957361,Craig Haagensen +1102198,Robert S. Wilson +182257,Rich Fogel +1560753,Bryan Coates +35738,Anil Mehta +1832367,Jill Salomon +10970,Judianna Makovsky +1281016,Dennis Whitehead +17208,Danny Lerner +76211,Tom Jannike +983,Diego Garrido +1738137,Tom Boyd +1719804,Luis Abadié +1165682,Karel J. Benes +10054,Bruno Tarrière +1598735,George Venckus +133050,Colo Tavernier +957566,Janice Williams +1293675,Kim Sang-don +105153,Vicente Aranda +14351,Roque Baños +149128,Laird Doyle +1567997,Guido Fiorini +79100,Fiona McConaghy +13866,Howard Shoup +81165,Archie Mayo +79243,Deborah Snyder +1138069,Angee Beckett +1160271,Jean-Pierre Alessandrini +14523,Walter Mirisch +60869,Ronald Everett Capps +391,Norman Garwood +1346937,Serban Rotariu +45535,Ken Kelsch +1395682,John Clifford +87137,Mike Armstrong +12781,David Crockett +1536514,Dick Rudolph +51228,Edward M. Abroms +1753071,Jill Simpson +1457044,Patricia Green +134930,Stephen I. Erdberg +102585,James Shanahan +1790542,Zachary M.H. Boozer +2307,Henri Alekan +1424605,Justin Webster +5261,Boris Kaufman +1447381,Simon Otto +1391591,Bruce MacCallum +1551649,Christopher Raucamp +56109,Michael Bregman +1701160,Keith Large +1406855,Duncan Muggoch +1264018,Erich Müller +1364110,José Luis Cubillo Fernández +56645,Richard Baker +1271259,Noëlle Penraat +198312,Yoshiie Goda +1092557,Masakatsu Kaneko +33841,Leslie Stevens +1425864,Yakov Gordin +11124,Ernest Walter +42405,Gail Sicilia +311397,Tony Fish +13984,Albert Akst +67054,H.P. Lovecraft +1029442,Joseph H. Hazen +68310,Cami Winikoff +66992,Jonathan Elias +68693,Peter E. Strauss +1838313,Elaine Bowerbank +71398,Chan Sing-Cheong +124971,Éléonore Faucher +45120,Tim Fleming +1336716,Dottie Starling +13529,Gudrun Ruzicková-Steiner +1457487,Joanne T. Harwood +1399644,Gabriella Winkler +6737,Jay Roach +25743,Philip von Alvensleben +1461988,Art Loel +1545989,Steve Costello +960576,Peter Mullins +1322485,Alexis Magagni-Seely +1401739,Shaun Conway +13974,Fred M. MacLean +38233,Ernest Hemingway +52759,Fred Jackman Jr. +1365211,Sylvain Bressollette +16888,Ralph Nelson +5983,Katinka Faragó +1594357,Harry Davis +1454416,Jim Ovelmen +1334484,Summer Eubanks +20296,Yann Hervé +1577,Richard Kelly +1712318,Donald Bakeer +1344273,Cliff Kohlweck +44645,Brendan Donnison +97618,David DeCoteau +1340958,Mordecai Gorelik +932748,Roy T. Anderson +55299,Mark Herman +1424617,Gilbert Lake +72176,Laurl Crushman +26932,Alicja Wasilewska +1184310,Natalie Marcin +1353832,Esta Charkham +1542802,Angel Pine +1412126,Heather Storr +139338,Stuart Frye +59670,Jane Anderson +72565,Jonas Gwangwa +9107,Harold Lewis +26991,A.J. Thrasher +1558425,Pete Jones +1774872,David W. Alstadter +1395646,Edward Tang Ging-Sang +11573,Sheridan Le Fanu +932916,Ricky Lau +18500,Phil Joanou +1713397,Thomas Cardone +1637823,Stuart Brisdon +161309,Doug Chapin +11900,Alan Glazer +1415887,Sandy Hays +1086905,Bruno Turchetto +70262,Elliot Silverstein +1406986,Penny Eyles +1521695,Eric Dounce +11652,Lisa Stewart +1455299,Leigh Oblinger +102430,Joseph Conti +1526823,Tracy McKnight +147476,Deborah Dean Davis +25212,Ralf D. Bode +10056,Michael Grais +18903,Sandra Nettelbeck +52249,Sabatino Ciuffini +2035,Andrew Macdonald +1665790,Kenneth Davenport +76221,Ben Elton +61298,Julie Rogers +70629,Yasushi Tamaoki +1457836,Kimberly Meyer +62517,Robin Standefer +1312999,Horace Hough +1555675,Louise Constad +1391763,Claire Alary +14460,Martin Gutteridge +1667238,Alex Klabukov +9424,Barney Burman +4956,Bernardo Bertolucci +59479,Camilla Toniolo +18256,Corey Blechman +81721,Satoko Okudera +1509355,Teressia Carter +20382,Jeff Betancourt +87829,William Tummel +9201,Steven Brown +1868866,Colin Campbell +548019,Masuji Ibuse +15673,Monte Merrick +1532774,Jack Hayes +45546,Federico Jusid +62926,Steven Cantor +1176753,Simon Beaufils +1392682,Jennifer Carseldine +1341850,Pamela Klamer +17812,Gregory Hoblit +1841638,Lonnie Stewart +14844,David Rawlins +27527,Peter Torokvei +58660,Dick Bush +53968,Andrew Spaulding +19012,Davis Guggenheim +1388894,John Gamble +35510,Bill Badalato +1379,Krystyna Rutkowska +1401729,Felix Crawshaw +146006,Mark Hammond +1619087,Sassica Francis-Bruce +1551514,Lisa Vasconcellos +56135,Josef Illík +91852,Clifford Capone +968327,Jeff Draheim +1379964,Jim Compton +1673812,August Hall +1153580,Annalisa Nasalli-Rocca +84914,Leon Russell +36998,Odette Le Barbenchon +1422056,Melanie J. Baker +12971,Chemin Sylvia Bernard +8275,Katterli Frauenfelder +1049333,Del Spiva +108015,Hideji Hôjô +27438,Jorge Semprún +6480,Eve Cauley +1313946,Frank Worth +4964,Hal Ashby +1085452,Julie Staheli +25063,Alessandra Querzola +5555,Sergio Donati +55694,Herschel Burke Gilbert +1200492,Eugene Joseff +238464,Leonida Barboni +1780709,Jennifer Dahlman +1404233,Adam Roach +1355976,Bernard H. Hyman +20745,Pamela Withers +1125680,Yani +20206,Mike Medavoy +66962,Jenny Bicks +8620,John F. Seitz +1586329,Barbora Bucharova +66054,Raymond Lam +2147,Oren Koules +1088851,Alexander Melman +26488,Craig Lucas +1389127,John Berger +83064,Frances Mathias +115212,Lee Wilson +2384,Bernard Williams +43625,Mark Geraghty +49453,Josi W. Konski +1559102,Anil Pal +53641,Billy Fox +1569468,Allen Alsobrook +4722,Dennis Lehane +35148,Alex Alvarez +23824,Anant Singh +1123348,Suzanne McNeill Farwell +1233684,Johnny Lockwood +1624027,Maria Eugenia Salazar +1418311,Gillian Huxley +1576843,Byron Scott Thomas +1453166,Siao Lung +32502,Roger Bohbot +1439013,Cedar Valentine +29296,Paul Beeson +109514,Rick Riordan +3375,Walter Scharf +7536,Judy L. Ruskin +9753,Louisette Hautecoeur +932380,Harry Goodridge +1886666,Andy Cole +62017,Paul R. Gurian +106106,Jack MacKenzie +1416481,Marcus Alexander +1125477,Roberto De Nigris +1546875,Christopher Flick +1566835,Doug Tubach +80733,Kongkiat Khomsiri +1396498,Michael Bjornson +1178899,Craig Lyman +1719808,Giovanni Morosi +1513832,Caroline Zelder +23759,Dan Davis +20029,Nicolas Mauvernay +51446,Andrew Klavan +15437,Al Jones +1469631,Sameena Usmani +86532,Leonid Vasian +17235,Megan Less +1420574,Sylvaine Dufaux +13499,Hans de Weers +7388,C. Wilfred Arnold +1566432,Abbas Ghazali +117764,Lee E. Wells +1870704,Chris Darroca +1046700,Gregory P. Keen +100996,Bart Patton +1532690,Katie Rixon +947235,Catherine Gourdier +1378672,Joseph Alfieri +27749,George Liddle +20432,Denis Carot +1616180,Gabriel Nita +1326723,Hisami Yamamoto +1453938,Arun Ram-Mohan +961023,Cathleen Schine +1349488,Joseph McCarthy +553018,Lui Tsung-Tak +32718,Berry Gordy +136923,William R. Laidlaw +7200,Lauren Shuler Donner +14681,Sydney Guilaroff +1130133,Hideo Gunji +59666,Darby Parker +4016,Jeremy Bolt +1708308,Jane Lu +1226919,Cella Nichols Duffy +1753782,Olivier Sarda +1337454,Shaun Skelton +1091264,Lynn Starling +1745202,Kelley Abbey +53657,Pasquale Festa Campanile +1545308,Lars Bjälkeskog +1877378,Marcel DeJure +20358,Edward Pisoni +69672,Christian Ford +24852,Jean-Pierre Rassam +928004,Nicklas Karpaty +8760,Kevin Crehan +11174,Dennis Leonard +36402,Heike Merker +1124118,Edward L. Ilou +1410119,David Neil Enfinger +144423,Ernest Vajda +69306,Tom Nunan +5332,Renee Ehrlich Kalfus +1593980,Kelly M. Beatty +1584257,Graeme Callander +1868277,Richard Graves +1536510,Kelvin Jones +28163,Lesley Beale +1653577,Chaiwichit Somoboon +138657,Scott Coulter +91803,Armando Timpani +14353,Max Ophüls +7646,Walter Wanger +1402019,Colleen Quinton +33193,Trisha Biggar +1537638,Jiri Ulrich +1203390,Mike Trcic +1113444,Jean-Marie Gindraux +960148,Natalie Visart +1023152,Wolf-Dietrich Brücker +32725,Signe Sejlund +2794,Robert Baberske +1477267,Neal Nordlinger +18865,Louis Leterrier +1415618,Donald J. Malouf +51000,Byron Haskin +1553026,Cherie Tamai +107395,Nick Willing +1511310,Ignacio Villareal +84351,Matthew Uhry +20106,Peter Thornton +57194,Dan Harmon +1674917,Sanjay Karole +552204,Pei Hsiang Chuan +1581150,Eric Wobma +77213,Jane Espenson +59447,Didier Brunner +953724,Morgan O'Sullivan +1551516,Brian Bartolini +1876239,Tommy Persson +69944,Kenneth Oppel +1338146,Natalie Wood +40765,David Worley +1397792,Marlon West +1440745,Robert Karpman +1400556,Ed Callahan +17598,Enrique Chediak +1673556,Ronnie Baran +1027084,Jorge Stahl Jr. +974498,John Langley +1412274,Lily Flaschner +1599486,Zoran Prodanovic +1706,Terry Rossio +1305093,Gilbert Wakefield +143368,Hjalmar Söderberg +79137,Hilary Davis +1161134,Pinki Ragan +24279,Paolo Taviani +52607,Sukee Chew +1815488,Hye Y Coh +1604116,Stewart Lippe +78175,Yutaka Fujioka +87412,Eitan Arrusi +133259,Arthur Hiller +1406926,Willie Fonfe +1380002,Jay Maidment +2399,Junie Lowry-Johnson +1412707,Mara Hamilton +58080,Brian Gilbert +1779879,Alex Casin +1377139,Steve Beimler +1397814,Dewey Rash +1386369,BJ Porter +69957,Clive Carroll +1401296,Tony Guerin +52044,David Winning +36809,Sophie Carbonell +73784,Eric Saarinen +167789,David Nelson +5005,François Dupeyron +1481340,Jamie Grove +20611,Ulrika von Vegesack +1302176,Justin Bourret +937174,Ari Arad +27099,Ian Baker +67695,Paul Rabjohns +1355527,Doug Crawford +1520618,Noé Muñoz +1392911,Tom Leeser +1733754,Phattana Sansumran +1391571,Bob Beemer +1087687,Masayuki Akieda +80537,Dave Borthwick +58376,Ewan Leslie +20856,Philippe Welt +1615580,Ann Lee +4449,Karen L. Thorson +15160,Xin Huo +1723529,Juan Giribaldi +1853828,Christian J. Hollyer +7843,Benjamin Herrmann +1054076,Elena Arnao +49901,Silvano Ippoliti +54469,Michael Almereyda +18876,Larry Lieber +66772,Kwok-Man Keung +1529772,Goro Fujita +16655,Stu Bernstein +16849,Erica Steinberg +1095230,Eddie Foy III +124693,Emrah Ertem +1886654,Rawdon Hayne +1178629,Debojyoti Mishra +1534931,Roger Irvin +1403711,Anita Morgan +1182914,Terel Gibson +42111,Bryan Spicer +573548,Hermann Hesse +21616,Chris Butler +83588,Robert Allan Ackerman +15368,Frank Bollinger +1538374,Mads Hansen +76204,Leslie Binns +47054,Howard Rosenman +133868,Monty Berman +94787,Joe Camp +4505,Michael Bostick +13246,Takio Yoshida +548437,Kimaree Long +1851751,Mike Reedy +1096837,Allen Q. Thompson +579440,Bernard Gérard +1391385,Duncan Burns +51387,Russ Lyster +1465630,Susie Cullen +595,Vangelis +1387217,Wendy Means +21276,Stephen Endelman +1585448,Montse Ribé +552387,Kant Leung +1446688,Andy Day +68909,Kyung-Pyo Hong +1460472,Steve Cunningham +54599,Jeff Cardoni +1561620,Jack Livesey +559495,Milan Stojanovic +8583,Inês Salgado +115755,Mark Henn +16138,Katsuya Terada +1625521,Elena Mannini +101005,Alfred Taylor +108122,Nick Mason +1551698,Lisa Brown +1551972,Michel Sabourdy +1549066,John D. Milinac +1115250,Andrew Seklir +1400802,Ville Penttilä +1788396,Patrick Brennan +1614186,Alan Edmisten +226006,Diann Landau +1534831,John Ferguson +105569,Robert O'Brien +107778,Harry Chandlee +62585,John W. Hyde +948275,Steven Bernhardt +8387,Crys Forsyth-Smith +2447,Peter Kohn +29083,Drake Silliman +75803,Lisa Tomblin +1600620,Bernd Buessecker +1441685,Caroline George-Kohne +64129,Peter Locke +1747998,Frank Boone +122966,Jim Parker +997334,Domnica Circiumaru +1467080,Lisa Katcher +37928,Jeong Seo-gyeong +1463855,Paul K. Lerpae +1534134,Alan Walsh +1320958,Claudia Wick +29012,Vince Di Meglio +36205,Helen Scott +2597,Naomi Geraghty +1198798,Tim Watts +1552538,Tim Ryan +50311,Robert Fellows +1411807,Dick Tice +1530689,Maren Brown +229002,Jeff Renfroe +1833852,Phil Read +1378755,Melissa Sherwood Hofmann +3558,Ronald Harwood +37281,Nikki Barrett +3189,Brian Berdan +1454389,Chris 'Crispy' Brion +12320,Karl Vollbrecht +79543,Marie Caillou +1557584,Stewart Ash +12955,Hank Moonjean +15000,Richard P. Rubinstein +1536105,Stephanie Maslansky +61097,Thomas T. Taylor +33673,Jennifer M. Gentile +67912,Andrija Zafranović +3178,Nathan Boxer +54525,Jaume Balagueró +1762664,Robert Mickelson +1203292,Ferenc Rófusz +124702,Peter Fritscher +21614,Lawrence Miller +1438624,Braden Haggerty +5485,Paul Zaentz +1424615,Melanie Graham +26850,Eduardo Sánchez +166753,Guy Norris +1713705,Liza Breuninger +587976,Ali Jennings +1807706,Jared Lee Gosselin +20825,Stephen McCabe +563435,Tazu Ovaska +232158,Susan Jacobs +120450,A. Earl Hedrick +87407,Walter Doniger +1050,Herbert F. Mulligan +69407,Nabeel Zahid +2396,Sandy Veneziano +1214665,Cade Courtley +227198,Brian Kasch +1707585,Romano Pampaloni +130699,Amy Schor +39124,Tracey A. Doyle +69948,William Bowers +61951,Jeff Hand +1402125,Tom Helmers +233653,Atsushi Takahashi +75377,Ann Pala +1549181,Michael S. Pryor +1255941,Nick Abdo +1338380,David Siegel +1597189,Zachary Alex +1326551,Marq Morrison +1790565,Simon Carey +1327026,Nicolas Aithadi +67966,David Kendall +1330898,Claudio Campana +39760,Marguerite Roberts +20238,Tim Willocks +1842602,Gizelle Loots +1815507,TJ Libman +71560,Carla Curry +33045,J. Michael Straczynski +1300627,Tad Richards +67598,Martin Elsbury +69771,Chi-Kuang Tsai +36931,Giorgio Gaslini +1262012,Bryant Tausek +55354,Bettina Schmidt +149104,Maurine Dallas Watkins +59777,Mark Sexton +63714,Ronald Colby +1741936,J. Scott Howard +68298,Jenny Chinn +15148,Jon Amiel +57239,Jeff Lieberman +7731,Elaine J. Huzzar +1595472,René González +1405811,Colin Miller +957243,Rosario Provenza +1404208,Monica Sallustio +6040,Wyck Godfrey +1400099,Sasha Awn +21810,Dominic Frontiere +72752,Jim Morris +75902,Debra Herman +1071998,Lonnie R. Smith Jr. +45145,Igor Gabriel +1603307,Oscar Alvarado +1667233,Timothy Vierra +1571771,Roger Basquette +1549418,Stephen P. Durante +82469,Kazue Nagatsuka +113674,Victoria Alonso +11072,Lesley Walker +1433723,Kim Lavery +141814,Nicholas DiBella +1574652,Stéphane Byl +13744,Bibhutibhushan Bandyopadhyay +548849,David Stein +29276,Howard Jackson +1447407,Buck Lewis +5735,Alec Coppel +1417869,Benjamin Nowicki +33443,Kate Evans +19748,Michael Becker +1404717,Curt Schulkey +1441357,Joey Lessard +1597201,Maxine Leonard +1164294,Marilyn McMahon Adams +1667249,John Sagray +1443963,Paige Thomas +81531,Muky +1733791,Frédéric Attal +1408848,Steve Harvey +35495,Merrie Lawson +1521753,Roberta Bilé +175885,Richard C. Bennett +175688,Jo Martin +1431027,Wendy Dallas +18788,Ellie Winslow +1183452,Kerry Hayes +1635070,Lance Julian +993337,Alana H. Lambros +1460462,Jean Kalile +1779034,Charles Ford +1418813,Chris Anderson +67994,Julie Ansell +7021,Michael Coulter +1344840,Tom Trafalski +44072,Serge Lehman +1483817,Paolo William Tamburella +1401803,Guy Williams +103327,Jesse Lawler +166776,Donald Margulies +89426,Tony Sereno +41374,Marion Pilowsky +9020,David Geffen +127535,Roger O. Hirson +92720,Ben Barzman +1090150,Ivo Strangmüller +64869,Donald Halliday +1760098,Patrizia Corridoni +1087126,Damian Collier +62780,Alan Hook +42356,Chris van Allsburg +30919,Fred Kohlmar +1323113,Asta Urbonaite +54891,Theodor Holman +43635,Jani Thiltges +46125,Veslemøy Fosse Ree +76272,Jan Lemmens +1568527,Basil Newall +57094,Mary Ann Page +1807522,Alex Ruiz +1419431,Gus Russo +56234,Emmanuel Prévost +1169694,Michel Patient +1513647,Joe Chevalier +1122009,Amanda Kenyon +1600536,Doug Metzger +5322,David Brown +1377230,Don Reddy +12653,Kim Sinclair +912,Larry Ferguson +12786,Simon West +57432,Gary Capo +1440801,Ray Barrett +1738128,Carol Ashley +1317,Philip Ivey +36619,Padraic McKinley +1897890,Eric S. Foster +63292,Jeanette Scott +1072308,Neel Doff +7035,Kathryn Himoff +939128,Kim Tae-yong +81543,Florence Nerlinger +79925,Herbert Wise +101889,George Marion Jr. +135166,Louis Gruenberg +1006957,Céline Bozon +46296,Pierre Kubel +17951,Debra Schutt +121634,David Williamson +12350,Rosemary Odell +44694,Fred Baratta +37435,Etta Leff +3287,Thérèse DePrez +1461401,Benoît Le Pennec +150783,William Gibson +1540470,Jeff Smithwick +1115006,Richard Flanagan +1406907,Robert T. Striem +1401733,Kerri Schwarze +589402,Adrian Grunberg +15207,L.M. Kit Carson +1748716,Tom Freeman +1402076,Steve Ramsey +38792,Linda Woolverton +91091,David McRell +116105,Suella Kennedy +17855,Josef Lieck +1522492,Jon Mercedes III +1447128,Yuan-Frédéric D'Amour +33924,Nando Cicero +105017,Mel Dinelli +1770626,Luis Pérez Espinosa +1551664,Alan Zielonko +1404740,Jeff Upton +121346,Benjamin Zemach +59932,Lindsey Hayes Kroeger +62907,Julian Clarke +1406904,John Scott Cook +1733083,Wolfram Witt +1324128,William McPhail +25806,Alberto De Rossi +8526,Michael Ford +1497678,Chip Radaelli +61523,Artist W. Robinson +1659166,Bill Johnson +1625929,Bernie Lalonde +31291,Kenneth V. Jones +20789,Claude Sautet +52691,Anthony Stacchi +999948,Charles S. Gould +4402,Marc Missonnier +21931,Chris Nahon +54893,Bruce Weiss +964595,Annie Spitz +4506,James D. Brubaker +62345,Patrick Ewald +1467272,Amy Marshall +1344742,Harry V. Knapp +46326,Peter Cheung +235013,Serif Gören +1465050,Mary Boyle +7794,Joyce Maynard +1156988,Askild Edvardsen +1821187,Kenny Searle +1000532,Angelo Scibetta +83346,Emery Emery +1650748,Marc Lemieux +1185955,Peter Young +1433505,Pat Abbott +1549526,Don Christie +1427550,Joel Van Bavel +1566308,Greg Morse +1462103,Careen Hertzog +4755,David R. Ellis +82641,Paul Fox +1073805,Aaron Richmond +1438605,Gina Ponting +961075,Patricia Zipprodt +1411106,Fiona McCann +66100,Galt MacDermot +1803778,Shari Lynn Himes +1602150,Dusan Kukal +41184,Ron Koslow +1805177,Jess Bressler +1341851,Jeff Passanante +7903,Mary Hidalgo +14793,Herbert Cardwell +20777,Humphrey Bangham +1889492,Jan Ondrovcak +91892,Peter Thillaye +168424,Jane Milmore +26144,Lucinda Thomson +1335118,José Luis Moya +1058635,Charles Garrad +41702,Michel Levesque +1032823,Vladimír Barák +14808,Edmond Richard +63966,Yôichi Matsue +55975,Krzysztof Penderecki +1511691,Bob Grimaldi +10339,Oswald Morris +1416675,Craig Busch +40789,Dietmar Haupt +29940,Gillian Hawser +1767050,Vicente Jungstedt +1447124,Julie Casault +1319490,Kevin Haney +37561,Fernando Colomo +64711,David Guterson +989083,Oliver Messel +1589501,Valeria Mariani +1584254,Jeff Vaughn +59648,Neil Cuthbert +1021801,Ambre Fernandez +79158,Yang Du +1261782,Mati Põldre +42301,Damian Harris +72447,Andrew Golov +7407,Bradley Thomas +756648,Shana Stein +1194446,Lou Brock +8794,Tony Fanning +1513833,T.J. Lynch +1266649,Simon Walton +16209,Tony Lloyd +8922,Anthony Powell +1315226,Nicholas Grippo +1424596,Matt Appleton +1336516,Thomas A. Morris Jr. +1518586,James A. Rosenberger +1767036,Robert Sledge +62438,Vraciu Eduard Daniel +16348,Michel Anderson +15246,Marc Samuelson +95972,Hans Petter Moland +3780,Alberto Moravia +1317667,Eleanor Sabaduquia +1893225,Charles M. Smallwood +36175,Gebhard Henke +1391822,David Whitehead +1549175,Tim Alatorre +12598,Dayton Nietert +10911,Lawrence B. Marcus +1613940,Ian Ross +50661,Shogo Tomiyama +1813634,Mario Faroni +1870697,George Hrivnak +109841,Herbert H. Margolis +1426338,Lizzie Kelly +54329,Nicolas Faure +64054,Edward Simons +5666,Mark Mothersbaugh +14096,Nancy Klopper +1532198,Amanda Gore +4058,Armin Ganz +1416971,Tiina Anttila +79533,Charles-Marie Anthonioz +1572237,Ernst Kunstmann +58405,Roy Moore +1412739,Nick Walker +1426854,Andrew Morley +1461410,Dan Read +16836,Ari Handel +20757,Chuck Pfarrer +1440853,Donald Likovich +53898,Andrew Dickler +958649,Richard Hewitt +1150510,Carol Burandt von Kameke +58846,Thomas A. Bliss +1307802,Kristijana Maric +1446434,C.C. Stevens +1332574,Fred Carter +217763,Joe Canutt +1532723,Mark Walcott +1725892,Sean Samuels +58094,Gillian Armstrong +1357070,Denny Caira +2691,Tom Schulman +1469347,Imko Nieuwenhuijs +1840481,Chris Capstick +1407697,Sharon Watt +1318092,Paul J. Lombardi +1662342,Michelle Freeborn +1066114,Brian Sloan +1595512,Alvaro Passeri +1625594,Luciano Anzellotti +1712246,J. Michael Marlett +71400,Bruno Pésery +551,Suzanne Todd +116078,Matt Silverstein +1399996,Robert J. Litt +61626,Beth Garswood +68354,Mark Brandon Read +1191,Seung-jae Lee +1616576,David Dworski +5163,David McGiffert +7739,Hugo Hagemann Føsker +46449,Kathy Kühne +40810,Glenn Freemantle +51795,Tom Elkins +9883,Pascale Dauman +11238,Linda Boije af Gennäs +28713,Karen J. McCabe +1072968,Kurt Thum +1837372,Diana Wilson +1123073,Aya Hida +13989,Dorothy Ponedel +1346953,Doina Raducut +1384366,Maxime Ferland +1418483,Alfonso Maiorana +128355,Harvey F. Thew +228584,Volkert Struycken +1403109,Vicki Niehus +39761,Jerry Bresler +65306,Dave Humphries +65326,Michael Schweitzer +71194,Tim Wellburn +1468502,Amy R. Strong +127018,Gordon Wellesley +110646,Matt LaPoint +44956,Paolo Brigenti +1122387,Rebecca Meis DeMarco +1790558,David Frederick +1378240,Frank Masi +1624047,Cristobal Corral +1353529,Richard F. Esposito +73023,David Steiman +1441241,Andrew Emde +1324123,Rossitsa Bakeva +1348695,Joanna Cappuccilli Lovetti +1465049,Harriet Cruickshank +1472650,Peter Schwerin +68690,Frances Hodgson Burnett +54288,Yves Marmion +26511,Bruce Jay Friedman +1877363,Nick Roberts +1889473,Andy Schoneberg +455064,Jack Draper +39980,Raz Mesinai +3824,José María De Cossío +1685571,Kay Colvin +2814,Aleksander Scibor-Rylski +1603657,Sükrü Avsar +65035,Laura Jones +1607165,Andi Kasen Bergman +1584291,James Marchant +1188377,Vicki Sánchez +70291,Rich Irvine +1409743,Gary Viola +1403410,Charlie Bradbury +74152,Christine Jeffs +75796,Roy Button +1659768,Omar Jadur +81533,Marilyn Putnam +35021,David Self +1411413,Mathew Price +1597780,Urban Thielmann +1402713,David K. Nami +5632,Jack Fisk +8080,Renee Steen +958468,Barbara Ritchie +28686,Gérard Lamps +1576025,Peter Hunt +65394,David Phillips +91795,Brunello Serena Ulloa +236088,Norio Osada +1304456,Sharon Simonaire +1619099,David Lee +1534668,Thomas S. Drescher +7564,Silvia Nebiolo +56106,Charles Shyer +1803764,Richard Bryan Douglas +104831,Jeff King +144931,Chu Ishikawa +1709860,Charles E. James +50520,Charles Gross +10535,Charles K. Feldman +1407688,Alexey Gusev +5879,Orlando Tobón +1605700,Seipati Keita +1399186,Rich Fox +13839,Aline Bonetto +1384194,Richard Bennett +37850,Fax Bahr +71235,Joe Batteer +65823,Timothy Wayne Peternel +1202729,A.B. 'Banjo' Paterson +1723343,Zhanna Rodionova +1841936,Pete Asidilla +4999,Yoshinori Ota +44482,Robert Graf +1426219,Michele Tatosian +22045,Michelle Minch +1451548,Bryan Blair +3376,Hal Kanter +143906,Robert J. Visciglia Sr. +1265391,Barbara Tuss +1377225,Pablo Helman +9387,Julie Duvic +81461,Aaron Strongoni +33261,Vincent Korda +583265,David Arndt +957829,Nancy Brous +1446694,Kathy Orloff +53475,Joel Corenman +102113,Roberto Sterbini +227311,Nanni Loy +932957,Dane Cannon +1441321,Jason Crosby +1001708,Guy Barnes +1031867,Thomas Gark +1615556,James Aaron Finch +69888,Salah M. Hassanein +1536107,John Sosenko +54896,Mark Kamine +62775,Peter Schlessel +1406894,Sara Flamm +12455,Shigeru Umebayashi +1581142,Meinir Stoutt +22318,Pascal Ridao +72564,Donald Woods +61501,Cindi Rush +935719,Genevieve Tyrrell +12012,Dona Holloway +1120804,Herbert Warren +1545541,Brent Poe +1400375,David Norris +579210,Emmanuel Croset +1457729,Nancy Karlin +134545,Isao Kiriyama +1598740,Gerry Deschenes +5433,Scott Stevenson +25481,Hans Robert Eisenhauer +1780716,George Bruder +1231306,Ed Jones +1739564,Jack Stern +1841942,Greg Sacks +1522922,Ed Keyes +1357527,Terry Stapleton +1569558,Chris Winn +113642,David H. Steinberg +1455598,Mike Dharney +46086,Gerald Di Pego +78174,Tetsuo Katayama +1674662,Brian Carmichael +1565948,Jane Aull +131267,Eddie Dunstedter +14646,Lamar Trotti +1419093,Aimee Butterfield +60000,David Lightfoot +27750,Liz Keogh +1419222,Dean Rogers +71645,Shikao Suga +19350,Peter Schultz +1744852,Robert Ikeda +3961,Martin Hunter +59771,Ed Jones +137125,Chris David +1408354,Pete Cavaciuti +1441368,Glen A. Dickson +405004,Patrick Rousseau +1489958,Donald C. Klune +1317048,Nigel Egerton +1294805,Lee Hyeon-seung +30763,Pearl Tipaldi +1532325,Kacie Seamons +1484531,Kate Delmage +34887,Geoff Wallace +74159,Robert B. Weide +29019,Gae S. Buckley +1173229,Christian Bourne +1549753,Max Reese +23771,Andrea Faini +997132,Christian Niculescu +1096363,Elaine Yarish +81730,Kate Forte +1133500,Denton Douglas +1096377,Pavel Chukhray +551917,Thomas Coleman +143931,Clive Gordon +1455452,Ipung Rachmat Syaiful +31220,Jorge Busto +51627,Tom Rickman +1550574,William Boston +1120187,Ruth Strimling +1544205,Geno Havens +1157339,Enid Zentelis +67971,Franco Castellano +1586643,Lidia Ivanov +1408528,Philip Tallman +669,Norman Reynolds +223988,Giuseppe Bertolucci +30700,Jimmy Sangster +1449958,Pavel Vokoun +23969,John Lindley +1685813,Chris Jones +1128245,John DuCasse Schulze +12083,Joe Stillman +86372,Richard Alan Simmons +1613303,Mark Hackett +1288639,Eugène Labiche +1336473,Karl Baumgartner +1806058,Khalil Daroudchi +1594800,Avi Belleli +5886,Carrie Stewart +37846,Emeric Pressburger +27437,Vasilis Vasilikos +1398762,Tom Bowyer +1815002,Charlotte Scott +1344056,Charles Nields +424215,A.J. Cronin +81019,Richard Macaulay +93658,William Fairchild +40830,Markus Bensch +1551659,Jeffrey Cassidy +750,Maggie Cartier +978591,Henry Gellis +14431,Joseph F. Biroc +1397856,Jerry Evans +931247,Anthony Harris +1100324,Ruby Felker +1741629,William 'Bear' Paul +1442563,Joe Acord +1355208,Helen Taylor +40759,Axel Eichhorst +1841203,Paul Ulbrich +72964,Denise Pinckley +1219531,Llewellyn Wells +1531519,Kevin Field +1866781,Sigrid Spade +1330853,Jason Howard +1021591,David L. Loew +1610056,Tomasz Matraszek +100017,Hashem Gerami +47289,Lisa Zupan +108022,David Caesar +29475,Troy Clarke +12759,Humphrey Dixon +1823519,Goran Uljanic +19250,Cy Feuer +57084,Louis G. Friedman +81384,Eli Benneche +13488,Graeme Clifford +1724865,Joe Murphy +1542113,Federico Farfán +951475,Larry Adler +57407,David Mandel +69187,Henning Bahs +1378834,Jonathan Amberston +28386,Petar Popovic +4053,Charles Hirschhorn +83126,Lowell S. Hawley +1334485,Alan Rankin +1324181,Lindsey Hermer-Bell +999160,Buxton Orr +68393,Ron Rosen +130419,Edward Anderson +68841,Skip Schoolnik +150748,Jerry P. Jacobs +7719,Marilyn Vance +9990,Joseph C. Nemec III +1216466,Beth Smith +1331465,Andrew Hyatt +9103,Ernest Laszlo +141197,Michael Bafaro +76087,Janie Parker +1041085,Justin Peyton +1549759,André Gargour +1257,Eliot Ness +1711831,Jesse Hollander +1487206,Adam Kopczynski +150628,Eddie Moran +1457521,Thomas Welsh +61490,Andrew van den Houten +1373172,Klaus Fuxjäger +1346268,Juan M. García +1564233,Mike Stanwick +1462613,Richard Chen +1044807,Edgard Navarro +1448053,Anthony Farquhar-Smith +40605,Wolfgang Herold +1328542,Krister Linder +1418890,David Meng +30365,Michael Caton-Jones +1041621,Brandon Christopher +565192,Loren Bivens +99665,Lawrence Inglee +1552606,Jens Döldissen +1607808,Jennifer Fong +1661549,Lawrence Huang +1462399,Chiara Balducci +1407240,Hilton Clay Peres +27723,Louis Gardel +1414560,Robert Royston +20703,Toshihiro Isomi +1324052,Margot Ready +134675,Shôfû Muramatsu +1727308,William Cellini Jr. +1800152,Deb K. Oyer +20758,Phil Dagort +1549395,Michael Eaton +1544669,John Morris +1458336,Jack Foster +1725886,Maryse de Lottinville +1758623,Eric B. Dachs +44418,Gianfranco Plenizio +1707530,Danilo Moroni +1406854,Lauri Pitkus +18179,W.D. Richter +130225,Michael Wayne +5358,William Vince +55461,Sheldon Keller +66169,Gu Chang-Wei +1667232,Daniel Novotny +57288,Michel Lewin +1827964,Vincent Fletcher +1847414,Samuel H. Frankel +955413,Joseph Stein +1790544,Deborah Pollard Matthews +83901,Constantine Nicholas +1812181,Beth Ann Bowen +1718276,Alicia Gleeson +1340345,Craig Henighan +1663166,Y. Bukke +72724,Brian Gunn +19850,Catherine Hardwicke +16931,Richard Marizy +1637499,Gérard Estival +2996,Giuseppe Becce +1893238,Kevin Farrell +1046101,Scott Sidney +1601523,Arthit Mahasri +56213,Brillante Mendoza +67597,Andrew Shillabeer +17765,Fred Murphy +57579,Don Roos +1448074,Joris van Hulzen +1408702,Paul Spaven +1297804,Antoine Petitjean +2335,Michael Weber +13370,David R. Kappes +1547258,James Pilcher +1462810,Robert Sprathoff +59653,Matthew Waynee +1184213,Philip Frank Messina +37762,Xavier Demerliac +56870,Ki-hop Chan +7787,Giles Masters +72410,Jeffrey Klein +5430,Harald Kloser +1431164,Michael Riesman +6876,Michelle Lewitt +1378696,Ethan Van der Ryn +21184,Jens Dahl +1448042,Mike Cottee +56953,Gene Quintano +1535727,Roxie Hodenfield +33514,Iris Yamashita +1399558,Natalie Fleurant +192827,Robert Gordon +1402937,Chris Plevin +3104,Chris Newman +1399122,Gene Radzik +35139,Michael Bender +960783,Susan Maggi +1746076,Simon R. Lewis +1183417,Charles C. Coleman +1673814,Melany Bourgouin +11607,Arno Wilms +16519,Michael Westmore +1901,Caroline Thompson +94373,Doris Mudie +1734786,Tim Singh +62929,William J. Immerman +9861,Albert R. Broccoli +83724,Eric Zuckerman +1086398,Kang Yi-kwan +1402078,T. Ray Treece +1309332,Richard Gordon +1603328,Kathy Andreasen +32034,Christian Halsey Solomon +10523,Fred Gabourie +38083,James A. Holt +260267,Mateo Iribarren +1099076,Michael Krassner +965926,Denise Östholm +1412185,Jay Wejebe +275,Rodrigo Prieto +1544415,Chris Britton +1961,Claude Pinoteau +21586,Warren Zide +1532706,Jane Blank +42383,Edmund Choi +12848,Jerry Wunderlich +1019436,Gilbert Natot +1662357,Ricky Pattenden +1346,Bertrand Lenclos +34467,Wilbur Menefee +227330,Glen A. Larson +58789,Marc Klein +30148,Van Ling +21528,Eloise Crane Stammerjohn +1472333,Stephanie Denton +107762,Alexander Sokurov +58137,Chris Noonan +1395290,Sharron Reynolds +1204805,Calvin Maehl +1157603,William M. Conselman +1324648,Erdogan Engin +138239,Edward Pomerantz +1550208,Martha R. Timlin +1313945,Donald E. McCoy +1079817,Elaine Ryan +11203,Christian Fechner +1449599,Tôichirô Narushima +1559464,Prashant Gupta +66774,Chun Tin-Nam +116306,Richard Dale +436,Sarah Katzman +81262,Irena Brignull +1889081,Eva Moden +36185,Jean de Segonzac +1470640,Michael D. Messina +548438,Glenn T. Morgan +41912,Birgitte Skov +69325,Frank Heidbrink +1595488,Laurie Charchut +95262,Richard Sale +9357,Glenn Boswell +7783,Adrian Biddle +1368969,Pablo De Santis +89803,Edna Anhalt +1565148,Stephanie Schwartzman +1458585,Russell Cate +65481,Valentine Davies +61950,Tab Murphy +34523,Anne Garefino +71549,Rachel Cohn +1536551,Greg Hyman +73258,Martin Melcher +1503891,Dieter Rauter +68262,Rosario Prestopino +67702,Lina Todd +1202352,Steve Ansell +929267,Grace Metalious +4760,Deepa Mehta +1792643,Derrick Kardos +1128963,Myron Hyrak +5690,James Algar +94052,Yosuke Fujita +1582753,Lyle Cain +1841293,John Alagna +13674,Annette Benson +1600672,Florence Fouquier D'Herouel +1877104,Robert Chiu +1654210,Maurice Terrasse +1552350,Kelly Solomon +66764,Chzung Chi-Sing +1892486,Dave Margolin +11899,Dawn Steel +35839,Thelma Connell +1565158,Steve Richardson +66739,Jonathan Liebesman +1116937,John Roesch +8558,Joe Alves +120367,Al Fleming +10571,John Bernard +4052,Thom Mount +56791,Jonathan Brown +53332,Frank Passingham +1577011,Tia Nawls +61123,Jason Shuman +1386763,Chris Martino +9579,Paul Monash +1551274,Joe Feeney +133729,Wallace Sullivan +101226,Joe Steinberg +53967,Doug Mankoff +135954,Stine Gudmundsen-Holmgreen +56395,Reidar Jönsson +81731,Paul Sonski +1178615,Liz Radley +1649572,Wichian Ruangwijchayakul +1408284,Ken S. Polk +67272,Iain Harvey +31310,Jack Hill +91810,Alfonso D'Artega +1761063,Denise Anderson Poore +1059708,Steve Craine +21547,Crispan Bolt +1545495,Peter Schneider +28241,Tim Simonec +1417376,Ira Steiner +1231203,Nicola Shindler +105954,Frank Ormston +66262,Reverge Anselmo +1447573,Maria Gonzalez +119180,Saverio Sammali +1484470,Burak Topalakci +1728,Ric Waite +21559,George Jenson +76541,Ben Rock +1774551,Billy Baker +1411846,Lukasz Jogalla +1762447,Chris Kaeselau +1354907,Rémy Duchemin +1779892,Bernard Yohalin +120,Dariusz Wolski +1889497,Greg Danylyshyn +1445820,Teressa Hill +1562841,Guy Clayton Jr. +56059,Patrick Read Johnson +1178529,Jonathan Marc Sherman +133355,Edwin Sherin +1864771,Billy Harmer +1433232,Caroline Garrett +1392904,Constance A. Kazmer +2429,Aladar Laszlo +1186736,Leigh Clarke +3274,Lisa Fruchtman +6604,Ralph Kemplen +147366,Martha Callender +1404716,Aaron Glascock +1466035,Thrain Shadbolt +59914,Stefano Rulli +55373,Andy Breckman +62242,Christina Kuhnigk +1417515,Randle Akerson +1649576,Chai Khongsirawat +40138,James Palumbo +41895,Robert Benjamin +66048,Feridun Zaimoglu +130268,Tom Krueger +15557,Bill Condon +1415465,E. Larry Oatfield +1207500,William Burr +71046,Michael Lander +43813,Yolande Maurette +1701758,Clark Campbell +22029,David M. Haber +121338,Aram Katarian +29533,Robert Louis Stevenson +1839385,Melanie Massey +40109,Tim O'Shea +1625129,Gérard Loupias +84942,Ward Hawkins +1591,Sam Bauer +82505,Gordon Hessler +83413,Norman Tokar +1433742,Douglas Kunin +66121,"George Tillman, Jr." +109414,Harry Marker +20237,Beeban Kidron +932172,S.J. Cherot +86926,David DuBos +1095233,Ruby Ford +75292,Rebecca Cohen +1753449,Tony Mizgalski +85124,John Rodman Harris +442697,Peter James +60225,Bill Wolkoff +1775955,Pam Holdridge +205639,Jim McKay +60405,Barry Taylor +94238,Micky Erbe +1816567,Laurie Buehler +1574657,Danielle Boucher +64048,Glynis Murray +8879,Robert Stigwood +1753058,Rondi Johnson +60628,Andrea Morricone +548435,Nerses Gezalyan +58248,Paul Pepperman +1334494,Martina Ter-Akopowá +1407900,Joëlle Taar +1594855,Richard Towers +60782,Robert J. McCrea +1336188,Patricia Regan +1420557,George Bookasta +53360,Alexa L. Fogel +119554,Daniela Busoiu +1122012,Jo Homewood +1619085,Tom Gilhooley +1413507,Tim Grover +89200,Austin McKinney +1078097,Alan Belkin +959728,Kay Van Riper +27518,Lowell Ganz +29219,Dennis Davenport +1402006,Steve Durkee +64184,Jerry Juhl +54441,James Ivory +26128,Brian Clemens +1671249,Bruno Sassaroli +1416298,Ken Bielenberg +1423209,Deryck Blake +19086,Jean Rabier +1851732,David Shwartz +46971,Stephen Ashley Blake +50788,Roberto Nicolosi +65363,Clifford Green +122967,Craig McCracken +2532,Cathy Sandrich +73951,Richard P. Cirincione +117052,Jorge Blanco +578729,Larry Waggoner +1445426,Rob Coleman +1196735,Shana Larsen +7963,Carter Goodrich +1662380,Norman Baker +111390,Won-mi Byun +1560275,Frank Galline +71243,Avery Corman +554843,Sunday Sun +1453022,Joel Foster +1069712,Russell M. Jaeger +1574655,Vanessa R. Jordan +236605,Miranda de Pencier +1534703,Kathleen Kay +7855,Michael Corenblith +55661,Douglas Koch +45090,George Costello +1815794,Hugh Braselton +70813,Christian Gaubert +59963,Gina Matthews +1609512,Miroslawa Serafin +18785,Sharyn Cordice +1433073,Sabine Groh +1385535,Bennett Tramer +1542033,Sherman Clark +1201942,Christian Bischoff +1576021,Martin Preston +1448077,Portia Wilson +954668,Daryl Roth +101518,Kevin Tancharoen +1701150,Robbie Consing +1019842,Bernard Woolner +40033,Nimet Inkaya +1400197,Karen Perry +67926,Guy-Manuel de Homem-Christo +33279,Danny Cannon +19863,Patrick M. Sullivan Jr. +1733054,Robert C. Bruce +545526,Cliff Shirpser +34891,Mike Johnson +54077,Janina Niedzwiecka +59808,James Hirsch +33438,Pip Karmel +74696,Wim Lindner +69729,Thomas Malory +1401807,Scott Sprague +57849,Mandy Walker +61484,Susan Littenberg +1409737,Lucy Barnes +1525208,Melissa Purino +958043,Phillip Barker +1389129,Theresa Greene +237378,Augustus Goetz +87059,Galen T. Chu +956268,Michele Weiss +1435605,Winnie D. Brown +115373,Irving Asher +1342654,Carl Fischer +53836,Risto Karhula +10496,Debbie McWilliams +1470940,Tara B. Cook +29576,Shaw Lovett +1487555,Raweeporn 'Non' Srimonju +231234,Charles P. Boyle +71343,Michael Preger +106809,Mel Frohman +25453,Stefen Fangmeier +45584,Andrew Miano +16618,Freddie Hice +16988,Maurice Pialat +1340318,Paul Berolzheimer +1555691,Caroline Hewson +1521688,Carlos Munguía +19104,Dann Cahn +896,Michael White +1337453,Andrew Orlando +68899,Jack Behr +20294,Laeta Kalogridis +92235,Stéphane Lefebvre +1536594,Laya Armian +1418815,Mick O'Brien +1724912,Gerry Arbeid +30094,Enrico Tovaglieri +58207,Jeffrey Robinov +1538340,Stephen Ulrich +1048633,Jack Poplin +951895,Byron Kennedy +1705307,Sheila Lind +204761,Steve Franks +1377258,Thomas Knop +59982,Emmanuel Kadosh +18264,Steve Jablonsky +121092,Abe Meyer +6855,Paul Gallico +41887,Michael Polish +1628034,Peter Hutchinson +1619086,Sal Alvarez +67094,J.E. Beaucaire +7438,Eve Battaglia +95782,Carole Eastman +56156,Bonnie Turner +1723533,Daniel Hermo +70378,James Costigan +162085,Harriet B. Helberg +28845,Viorica Petrovici +22059,Emily Schweber +37333,Heidi Vogel +461,Deborah Hopper +1455293,Monty Rowan +1463696,Dana Baker +1098536,Tom Glazer +23811,Maureen Webb +75687,Christian Robinson +1896611,Kerry Kohler +57134,James Wong +8705,Brad Ricker +21555,Morris Morishima +1532323,Reuben Kay Clark +56263,Mary Lambert +1603659,Kivanç Ilgüner +1886653,Kate Garbett +108795,Ernest Pagano +55163,Aaron Meyerson +9915,Guy Hamilton +1604114,Sam Gowan +9447,Joshua E. Schneider +6232,Carrie Hilton +1391695,R. Christopher White +32397,David De Silva +590605,Benno Vigny +11411,Neil Spisak +1260700,Jari Halonen +40786,Axel Scholz +38022,Lauren E. Polizzi +31522,Mark McShane +56209,Jean-Pierre Dardenne +229837,Iain Pattison +1545177,John A.C. Despres +1837276,Martin Krauka +1341861,David Page +1424620,Steve Nichols +1416067,Marc Wostak +5810,Luciano Vincenzoni +1724864,Geoffrey R. Smith +70667,Angela Morley +1400344,Eric W. Shamlin +1128101,Albert Podell +57775,Tyger Williams +1752691,Ronald Gauvin +8422,David Shire +559912,Gene Stout +1557609,Sam Childs +149075,Howard Lindsay +94667,Anthony Riparetti +1537563,Marton Jankov-Tomica +61281,Gina Hendrix +69719,Bruno Barreto +1144658,P. Michael Johnston +1536373,Lawrence J. Cavanaugh +944482,Javier Rebollo +59418,Betsy Danbury +8803,Christine Rothe +15364,Ute Emmerich +161881,Mark St. Germain +1633952,Robert West +1661566,Blanche Wiesenfeld +1548485,Oliver Hug +1421758,Barbara Chomos +30461,John Scott +22299,John Damien Ryan +50522,Eric Albertson +3179,George Brand +1319135,Maria Baker +557,Colleen Atwood +3355,W. Donn Hayes +1528000,Shahram Shah Hosseini +1807710,Vanessa Morrison +1406571,Nathan J. Busch II +1671651,Jason Bayever +143945,Jeremy Scott Reinbolt +1609382,Pat Fitzsimmons +1452261,Simeon Bryan +1174632,Robert Peterson +61361,Ricky Eyres +1419924,Maarten Hofmeijer +26502,Howard Deutch +8483,Horton Foote +39405,Hossein Alizadeh +8382,Kevin Phipps +27818,Nic Ede +24456,Gérard Beytout +1216671,Josh Lieb +16684,Stefan Henrix +1392052,David Freeman +1575898,Hedy Mjorud +27226,Patrick Lussier +4746,Robert Lorenz +82726,Curro Velázquez +1457708,Toby Forlenza +1881568,Cindy Lagerstrom +11489,William Cameron Menzies +1404761,Sherman Labby +55415,David Belton +59834,JoAnn Perritano +17453,Joaquín Baca-Asay +29393,Alvaro Lanzoni +49284,Frank Mancuso Jr. +1600613,Monty Montgomerie +1704252,Michael Merrick +1106128,Alfonso de Vilallonga +54781,Allison Burnett +1470205,Paul de Fisser +1724265,Dick Beckett +1556436,Sarah Hinch +1842595,Oliver Bailey +51984,Mimi Leder +1400539,Amanda Brand +1594801,Vered Hochman +61573,Chris Baker +6546,Dominique Faysse +1603625,Elisabeth Waelchli +10187,Bill Kenney +119399,Omar Kiam +83412,Gary Daigler +1417399,Patricia DeHaney +1176513,Vivek Maddala +959464,Jette Termann +1177262,Damián Leibovich +1325655,Elinor Bardach +1538709,James Post +1540859,Pietro Paletti +86595,Linda Rizzuto +56660,Lorna Cook +1618,Kuo Jung Tsai +19816,Alastair Widgery +17763,Jack Okey +1529444,Wilfred O'Kelly +189922,Simon Braithwaite +75807,Rory Kilalea +8380,Michael Lamont +50818,Ernesto Gastaldi +1073310,Jeremy Sams +1559224,Matthew Rush Sullivan +1322,Ngila Dickson +1321333,Christopher Marsteller +6511,Caroline Kaplan +57957,Kathleen McLaughlin +1428582,Kelvin R. Trahan +1401600,Jess Platt +1477834,Ed Beyer +74062,Marcos Siega +1404891,Shawn McEnroe +589141,Iafa Britz +120695,Chris Douridas +13862,Carter De Haven Jr. +1521682,Trinidad Espinoza +968303,Javier Abad +52096,Arthur Hailey +1378750,Jonathan Short +81826,Ted Humphrey +1078460,Garth Belcon +72773,Marco Spoletini +14625,Heinz Ludwig +121314,John Sherwood +1447136,Jean-Pierre Lavoie +3248,David O. Selznick +138616,Kristine Belson +21378,Paul Webster +1889484,Ludek Hynek +996989,Philip Hinchcliffe +51451,Josef Lautenschlager +1458584,Nina McArthur +1713524,Jack L. Richards +1866787,Bob Le Mond +1562888,Otto Kahn +56353,Don E. FauntLeRoy +1322486,Donovan Mannato +1521703,Joaquin Solano +1548694,Sean Landeros +1545438,Jason Leib +5929,Jon P. Goulding +1021803,Catherine Chevron +4315,Robert B. Lee +1459655,Ken Kugler +53006,Dennis Shryack +800,Arthur Coburn +65685,Paul B. Radin +1877413,David Gertz +12202,Catherine Knapman +1120149,Louis F. Gottschalk +29009,Ken Kwapis +1208906,Mark Cowden +1889480,Pavel Vencl +1437895,Wang-Fai Wong +143784,Basil Davidovich +29648,Dan Curtis +1711218,Michele Giordano +1553013,Josh King +38090,Jacques D'Ovidio +1378836,Bryan Tilling +1446671,Amy Safhay +1563747,Mike Surrey +1545405,Malcolm R. Harding +1636375,Michael Neale +1481579,Blue Weaver +1433626,Jelani Isaacs +1095228,Gerald I. Isenberg +999693,Tracy Keehn-Dashnaw +1313359,Jordan Horowitz +39200,Marcus Rowland +1192605,Karl-Arne Bergman +1455604,Bill Haller +5489,Michelle Guish +1533005,Jessica Ripka +1406756,Kent Blocher +1401717,Chris Godfrey +1428509,David Broder +1560110,Michael Hatzer +1442511,Mark Moore +1601522,Santipap Ingon-gnam +120533,Barry Conners +1840112,Sui Fan Wong +1399560,Jérôme Décarie +12870,Al Roelofs +1881564,Janet Tebrooke +1723681,Alejandro Soberón Kuri +7891,Dominique Louis +197930,Scott J. Ateah +17169,Robert Kraft +1549425,Saalahudeen Lunsford Muhammed +1413941,Richard Bevan +1337760,Harry Mancke +1840478,Jean Speak +1758616,Julie L. Pearce +84371,Nancy Kennedy +1534716,Herman Whitaker +995378,Sergio Zottola +1392102,Jody Echegaray +109857,Thor Freudenthal +1059619,Jay Miracle +1371915,Tony Miller +1431633,Karen Kelsall +1552874,Carol Folgate +73460,Saul Dibb +1662269,Rich Harrison +1697586,Isabel Henderson +1531896,John 'Frenchie' Berger +957495,Michael Kamper +1315617,Todd McIntosh +1334481,Geoffrey S. Grimsman +1558254,Kim B. Christensen +1161107,Alan Burgess +34440,Louis Diage +62580,Joe Kraemer +8721,Sylwester Checinski +1408718,Stuart Robertson +29525,Andrew Lazar +17164,Roger Bondelli +587971,Jan Jakub Kolski +15210,Rachel Igel +1307603,Catalin Dordea +16336,Lucy Boulting +13019,Ira Levin +554930,Dilip Mehta +52314,Larry Doyle +1398863,Carlton Kaller +1016305,Wang Xiaoshuai +12897,Steve Jobs +42034,Greg P. Russell +1212071,Tannis Vallely +74759,Niels Sejer +1387618,John Stephenson +1551349,Steve Irwin +1549590,Ken Ferris +53782,Jean-Pierre Gorin +37269,Margaret Fink +8826,Clare West +130300,Aluizio Abranches +6347,Margery Simkin +70647,Lewis Carroll +36187,Bob Gosse +1551676,Arthur Langevin +195972,Charles Norton +136194,Dennis Hackin +1363838,Louisa Schabas +1597215,Nick Clay +11699,Bojan Bazelli +2875,Dean Tavoularis +1445980,Robin Leigh +1441354,Wayne Smith +1453229,Becky Mancuso-Winding +1359570,Yvonne Little +554125,Yiu Chung Cheng +66756,Ross Albert +7883,Ralph Eggleston +1404241,Sandra Butterworth +1421334,Scott Schneider +182924,Peter Elkoff +589933,David Gladwell +1299048,Erik Zumkley +1208436,Angel Radefeld +85131,Eduardo Penna +14838,James Bridges +23717,Barbara Jäger +296686,Gail Gilchriest +7297,Ann Dunsford +137100,Valentin Chernykh +35087,Rupert Harvey +1455331,Pia Ekedahl +70366,Arthur Gorson +7775,Stephen Sommers +1462692,Jesse Sugarman +43383,Jane Barclay +65687,John Henry Patterson +1400474,Marc Orts +8401,Mark Huffam +8586,Robert A. Mattey +11648,Kaye Davis +149277,Ken Follett +1531510,Brigitte Hennech +71043,Charles Holloway +1453274,Julia L. Walker +1068348,Wieslaw Zdort +39823,Yasushi Kotani +1448075,Huy Vu +1574648,Julie Garceau +46603,William Wiard +1562887,Lady Duff Gordon +1204440,Paloma Soledad +1640572,Michael Auerbach +1593281,Bryan Jones +7337,Joseph C. Wright +74581,Joe Pichirallo +25405,Joel Echallier +29652,Horst Dantz +1331648,Barbara Lorenz +1454751,Tim Myers +1552201,Allan Byer +1555652,Cerise Hallam Larkin +5000,Norihiro Isoda +64533,Bob Lenox +1649575,Sakchai Seebunnak +1458342,Bob Maxfield +1770509,D.A. Menchions +1416985,Kari Piirainen +1565113,Ilana Gordon +1426764,Darrin Massey +11369,Herb Nanas +48325,Heinz Dunkhase +1458335,Dotti Foell +960058,Ron Talsky +164972,Joel Kane +1905119,Kara Katsoulis +589306,Steve Cohen +5667,Robert D. Yeoman +1522900,Reinhard Sydow +1518585,Diane Schatten +56904,Hilary Gilford +52753,Gerald Drayson Adams +13983,George Stoll +998195,Joe Gall +98006,Percy Hilburn +1412699,David Esparza +1619090,Jay Cooper +1380378,Raymond Larose +1376888,Luke Caska +69414,John Linson +65037,Johnny Ferguson +18989,Jonathan McKinstry +8158,Michael Silvers +54584,Jesse Dylan +120449,William LeBaron +1458346,Nick Tafuri +29596,Samuel Hoffenstein +237691,Sujatha Rangarajan +66874,Gundula Leni Ohngemach +1447551,Rick Moser +1086325,Hal G. Evarts +1453281,Gary Ritchie +61524,Gabriella Villarreal +63720,Mark Morgan +55647,Gianfranco Clerici +1429253,Robin Anderson +14878,Harry Horner +1453288,Sean Turner +1026477,Assaf Amir +66202,Nigel Kneale +1598156,Emmett Emerson +95142,Nikoletta Skarlatos +1625926,Brett Lavinthal +17279,E. Elias Merhige +1821188,Richard Scarpone +41156,Edward Stewart +92240,Walter Klymkiw +1400476,Jaume Puig +1156990,Kristofer Nordin +73332,Denis Freyd +1332599,Kimberly Guenther Durkin +1626526,Laura Cuthill-Luft +1443842,Susan Horth +62598,Cary Granat +1094628,Oana Draghici +1571713,Shane Patrick +13268,Rod Serling +59790,Pierre Letarte +25549,John Brace +15912,Stephen Gyllenhaal +1447419,Donna Prince +10935,Ian Crafford +141298,Daniela Taplin Lundberg +10076,Lewis Gilbert +1338672,Mark Lapotsky +11632,Hanns Eisler +1665713,Randy D. Wiles +62685,Karen Vundla +54319,Claire Dornoy +1439903,Andrew Gellis +38699,Natalie Hart +141569,Ann Wingate +108135,Gene Witham +1529561,Chôshirô Ishii +406204,Ve Neill +1551342,Shannon Rayle Bourne +1574668,Yoshiya Yamada +72663,Edward L. Montoro +1447541,Dennis Bonnell +6210,William Shakespeare +86439,Norton Virgien +1727969,Candy Paterson +130276,Amy Roberts +1354554,Ray Binger +1497383,James T. Heckert +71263,Frederick Zollo +61094,Raymond Pumilia +61050,Manfred D. Heid +1733234,William Engel +20371,Robert Buckner +3989,Marlene Stewart +73912,Bob Jason +6650,Allan Ekelund +51512,Claude-France Husson +2116,Hiro Narita +84602,Artie Malesci +93959,Peter Taylor +1535322,David Neil Trifunovich +1039764,Yoshi Sugihara +1395446,Deb Adair +1405428,J. Chan Claggett +10590,David V. Picker +4646,Damir Ibrahimovich +10646,David Harris +1565947,Joe McCloskey +3866,Jan Persson +1390516,David James +152204,Helen Caldwell +188269,John Leekley +10157,Russell A. Cully +4248,Dennis Gassner +1610045,Marta Broczkowska +65420,Louis Morneau +87155,Don Nelson +35165,Paul Elliott +1414177,J.R. Grubbs +1587383,Spring Aspers +1409236,Payam Shohadai +1413127,Gordon Antell +26714,John R. Leonetti +17207,Les Weldon +1797217,Egor Davidoff +11772,Barry Bernardi +1430192,Nick Daubeny +39060,Henri Jeanson +4450,Mulatu Astatke +1534835,Larry Boudry +1085738,Ty Arnold +1607060,Anele Onyekwere +26872,Robert Cartwright +19309,Jan K. Bergstrom +83341,Peter Adam Golden +51853,Uta Briesewitz +1740414,Tony Wyman +46448,Leonie Polak +1449379,Zaldy +1564871,Terry Ladin +1585728,Nigel Christensen +38522,Isabelle Dedieu +552422,Ek Iemchuen +1460407,Scott Vanzo +37186,Josée Dayan +1525907,Karin Nosella +59955,Frank Tidy +59328,John Pogue +57316,Bill Peed +12291,W. Stewart Campbell +1399925,Sue Len Quon +1136753,Cameron Allan +43107,Phil Sawyer +1833610,Anna Rita Raineri +1555746,John Hollingsworth +1385919,Julian Hoxter +3117,Gary Frutkoff +1544431,Nicolas Rideau +42462,Joe Jackson +51449,Timothy M. Bourne +71150,Richard Clabaugh +1813969,Shawn Keller +1401264,Neal Norton +1701736,Art Bartels +62557,Paddy Cullen +961119,Bo Harwood +1399927,Angelo Colavecchia +1713398,Karen de Jong +1304275,Arnold Braun +1552187,Lance Jay Velazco +1458341,Michael Lloyd +19353,Peter Garde +11789,Fred C. Caruso +6031,Emmanuel de Chauvigny +962751,Gerard Bryan +1704938,Ron Fry +1667262,Steven J. Chambers +1840062,Henry Jesiak +1457214,Sun Jae Lee +34822,Pierre Bost +58389,Wilbert Hirsch +1472428,Jeanelle Marie +231373,Charles Gross +1550186,Benton Jew +81186,Andrew Solt +12533,José Antonio García +25365,Richard Hicks +2088,Jules Verne +42265,Peter M. Tobyansen +960832,Nenad Pečur +1409227,Zeljka Stanin +1786664,Rufus Gifford +1351549,Sandrine Gros d'Aillon +1342072,Cliff Wenger +53476,Jeff G. Waxman +1602878,Kristy Sager +1404702,Danna Rutherford +1202603,Andrey Dergachev +1176049,Charles Armstrong +56943,Woody Omens +61089,Gina Fortunato +1449268,James D. Cooper +1588452,Karl Brainard +1418024,Tim Donahue +78968,Kelly O'Shea +1793155,Marcello Mastrogirolamo +23580,Sharon Howard-Field +23863,Jason Piette +8058,Paul Mendoza +1754101,Bob McLing +8403,David Hare +1038995,Stefan Sundlöf +1466219,Dana Landsberg +63688,Isao Kawase +122449,Steve James +1299027,Connie Nichols +6318,Yann Dedet +1441325,Neil Seale +58855,Bernard Telsey +2860,John Hart +1855207,Luke Cairns +1304267,Vally Mestroni +75289,Helen Panckhurst +1266796,Antony Mondello +4834,Jim Stark +59816,Megan Malley Cannon +1636060,Sean Rush +3929,Antonin Svoboda +54569,Marie-Pierre Renaud +35666,Christina Steinberg +1396811,Simeon Asenov +1463357,Steve Salazar +143913,Kimberly Harris +1410346,Jan Kobylka +575498,Carl Anders Dymling +22144,Jim Munro +913,Warren Skaaren +1304274,Josh Rosen +4712,Thomas L. Roysden +1447155,Warren Langford +411527,Christian Gasc +108983,Dorothy Arzner +1425917,Reid Paul +630,Mark Henley +1302372,Massimo Anzellotti +1695009,Peter Masterson +1661551,Eric Gies +1203873,Lynn Reinstein +225697,Jeremy Larner +1341507,Amy Gardner +1881562,Eamonn O'Keeffe +1574631,Una Martin +16567,Larry Bock +1337471,Rodney Dominey +1224368,Bradley Thompson +405,Alberto Iglesias +1317898,Lyn Paolo +23677,Joe Pytka +1562216,Dean Williams +1786676,Chris Campbell +60243,Rob Schmidt +1319401,Bruce H. Newberg +63371,John McDonnell +56983,Rodney Gibbons +16957,Fenton Bailey +1595994,Seppo Vanhatalo +46775,Christian Dior +69677,Michael E. Polakow +120925,Robert Westerby +1540845,Craig Anthony Cook +1409755,Libuše Barlová +6607,Doris Langley Moore +9027,Sandy Powell +1462022,Alain Depardieu +1341508,Dan Vornicu +15315,Ellen Segal +90618,Po Bronson +53899,Meg Morman +55953,Jim Prior +93414,Joseph Beruh +62060,Marjorie Shik +140886,Joseph Mangine +1727293,Francesca Brunori +24912,René Barjavel +1341801,Mary Anne Seward +353604,Harvey Kass +19747,John Nutt +23416,Megan Davies +1400107,Marketa Tomanova +1807201,Alex Algarin +1334612,Kôichi Takagi +1588,Nancy Juvonen +115085,Marston Fay +1083680,Tim Board +1033106,Glenn Gregory Krah +1429523,W.M. Christopher Gorog +55098,Kristofor Brown +130247,Alexander Emmert +1077561,Lucian Piane +78918,Kassim Jagmagia +155899,Joe Napolitano +1598753,Jill Fleischman +67461,Skip Robinson +130705,Vicente Blasco Ibáñez +7203,Wolf Kroeger +1740487,Garson Yu +1643845,Tim Barraball +13673,Rick Shaine +1520694,Don A. Duckwall +1610059,Alicja Kozlowska +59856,Keith Maxwell +65135,Matt Alvarez +1389000,Ross Fraser +70190,Arlene Donovan +38588,Ubaldo Continiello +1665869,Elisabeth Jereski +1441260,Ron Precious +640,Chris Kentis +135,Bobby Cohen +1410568,Frank Fleming +65614,David Barron +1668103,Carol Clements +16574,Jay King +1857388,Laura Tateishi +1552356,Carolyn Finlayson +53626,Salvo D'Angelo +37591,Lance Smith +17115,Douglas Crise +1458216,Jay Mason +114406,Eric Garcia +60588,Vicki Sotheran +1210734,Bob Corff +960435,Marcelo Pont Vergés +1494610,Elva Martien +84258,Walter Fasano +553980,Karen Kelly +8062,Gabrielle Siegel +1352969,Wylie Stateman +95066,Sergei Parajanov +558230,Alastair Gray +1441282,Susie Cowley +58436,Phil Sears +1571776,Richard E. Chapla Jr. +1662300,Glenn Start +937666,Igor Tolstunov +1827960,Tony van Rensburg +1155167,Maggie Donnelly +960812,Maura Fay +1522774,Scott T. Pina +463,Jonathan Finn +40816,Ben Barker +1427493,Amanda Foreman +1377137,Bruce Lomet +132251,Maurice Ransford +1207166,Michael Mosher +21839,David Drury +68499,Cory Lerios +136130,Emil Stern +1239766,Nisha Ganatra +1853283,Karen Beard +963556,John Swartzwelder +10015,Edward Woehler +16328,Adam Brooks +1193688,Carmi Gallo +1390364,Allen Maris +143018,Fredi M. Murer +35751,Craig Wayans +3456,Helen Colvig +76593,Giles Keyte +1625917,Kent Hayward +56079,Julie Ahlberg +74863,Lauren Montgomery +1723851,Stefan Kessner +56150,Ellory Elkayem +37259,Neil Armfield +76971,David Higgs +1426766,Lynn-Anne West +59475,John Frick +12649,Nigel Wooll +80820,Douglas L. Hill +1106077,Akira Uehara +1540843,Daniel Parvulescu +146949,Jonathan Nossiter +1521701,Antonio Vargas +1866779,Michael Church +1317668,Nanet Harty +1708299,Bruno Gatier +138638,Ennio Michettoni +1115255,Gregg Tilson +64931,Joseph Heller +35937,Bill Carter +3657,Bina Daigeler +1896516,Toni Kallen +1389584,Dorn Merrill Kennison +1577062,Steve Ellis +1534107,Edward Sowders +1016541,Garth H. Drabinsky +1465491,Robin Mulcahy Fisichella +1415155,Linda Browne +1566972,I.J. Wilkinson +1040861,Alice Baker +15256,Maksa Catovic +73025,Matthew F. Leonetti Jr. +1046554,Andrew Markell +133557,Martin Kublák +1384394,Daniel Matthews +1552369,Sean Tompkins +1387541,Susan Kurtz +1060,Dean Cundey +16346,Valerio Bonelli +83342,Ken Krasher Lewis +1455600,Robert Fox +1774553,Fred O'Connor +1409754,Kirk Adamson +134136,Gordon Flemyng +3228,Scott Rosenberg +10467,William P. Cartlidge +1630534,Simon Ransley +133119,Jackie Zabel +1767018,Janice Mordue +10631,John Frazier +1606651,Kara Sutherlin +9337,Toni-Ann Walker +33000,Ruth Pursley +23966,Santo Loquasto +1524177,Melissa K. Frankel +66531,Clifford Werber +70631,Masaki Tamura +1567999,Luisa Alessandri +1647935,Theeraphan Janjaroen +68636,Ryan Folsey +82822,Phil Claydon +1680299,Stephanie Beman +1440737,Lauren Grey +101444,Scott McGehee +4081,Stanley Kramer +1551185,Scott Kordish +1401740,Zeb Simpson +69496,Ronald Saland +84990,Isao Yukisada +30874,Donald Paul Pemrick +23488,Geoffrey Rowland +1561105,James R. Scribner +6060,Neil Corbould +62047,Gary Trousdale +1285933,Michael Mooney +68353,Michele Bennett +10197,Fred Hole +1418148,Silvia Steinbrecht +58838,Marco Brambilla +1408780,Bob Comer +51809,Rod Amateau +1551517,Leonard Seagal +1223915,Jim Leonard +1534509,Barbara Scott +1619089,Bobby Mara +1440843,Sean C. Cunningham +117217,Ted Boonthanakit +1015792,Warren Keillor +1717519,Tammy Ashmore +102342,Mary Ann Fisher +5399,Otello Martelli +42804,Sanjay Leela Bhansali +1325683,Edward Bryant +1599631,Ian Elias +12654,Malcolm Stone +9102,Leonid Raab +957368,Maggie Martin +1041072,Margaret Goodspeed +1558713,Rob Fournier +1485646,Tim Lawrence +1460621,Julie D'Antoni +29087,Maree McDonald +8418,Suzie F. Wiesmann +25321,Piero Piccioni +1457662,Patricia Flynn +34479,Carl Barks +1406906,Frances Fiore +52788,Andre Lamal +124303,Keiichi Hasegawa +16994,Roland N. Thai +931385,Kanji Suganuma +43332,Carles Cases +1545742,Gabriela Bustiuc +21092,Fiona Hogan +96341,Mac Benoff +68333,Gavin Finney +11876,Jeff Freeman +5216,Gus Van Sant +1602156,Barbara Vögel +75136,Greg Sitch +16683,James Harrison +1564535,Angel DeSanti +1552544,James K. Jensen +1303,Alex McDowell +1087689,Yasuhiro Kasamatsu +1895999,Derek Pippert +5290,Kim Coleman +1657664,Gene Kearney +1028792,Ben Mink +1835773,Tom Schyvens +935043,Brandon Oldenburg +86250,Frank Henenlotter +21938,Hélène Chéruy +36605,Susan Matheson +1413945,Andy McBrearty +1412088,Andie Derrick +84758,Michael Lake +1864768,Benn Hyde +2108,Elmo Williams +44964,Alessandro Parenzo +985874,Joseph Kwong +96912,Joe Lombardi +32664,Adalberto Ceccarelli +1470642,Kearie Peak +35764,Valari Adams +70914,Péter Dobai +16323,Gerard Zalewski +1119464,Olivier Glaas +928952,Eric Milano +1467002,Paul Harris +2688,Mark Gingras +1589728,Michael Axinn +77969,Bjørn Jensen +6628,Missy Stewart +1542032,Hal Lierley +1447347,Bill Perkins +1511696,Sorin Serene Pricopie +568911,John Barry +1336164,Carol Hemming +1271793,Ron Trost +582252,Lidiya Kryukova +1544434,Edouard Dubois +15848,Paul H. Haines Jr. +1552180,Joe Gonzalez +7312,Angela Robinson +1886657,David Coley +2211,Gerald R. Molen +106648,Sandra Weintraub +1447969,Harold Adamson +66226,Buddy Van Horn +948223,Susan Benjamin +1015891,Peter Phok +226308,Laura Evans +20855,Pascal Andreacchio +42992,Hubert Engammare +8847,Donn Cambern +928603,Kathryn Dean +20844,Giovanni Fiore Coltellacci +1738162,Ryan T. Mennealy +70558,Mark Jones +1408834,Ronnie Phillips +1308320,Gordon Cornell Layne +23806,Jessica de Rooij +105897,Feliks Falk +1544698,Barbara Palmer Dixon +51981,Steve Mason +1647902,Dusanee Puinongpho +85761,Jerome Odlum +1415630,Bill Kent +1581363,Brian Blamey +1418308,Martin Turner +1552166,Patrick Lees +1617783,Antonio Bustos +14285,Harold McCord +1302495,Jorge Benavides +1542944,Rick Johnson +35242,Henry W. Gerrard +23285,Jeffrey J. Dashnaw +121337,Jules Schwartz +4187,Robert Guerra +1893237,John Ditomaso +11267,Jessica Alan +1393558,Ray Fisher +71423,Tracy Barone +1390536,Terry Delsing +1802698,Bill Rea +41627,René Renoux +11745,Philip Duffin +29458,Erik Gosselin +93652,Muriel Cabeza +966288,Tony Martin +1872840,Frank Beacham +1347758,Tyson Bidner +1199577,Cristina Laguna +57314,Wolfgang Reitherman +1438652,Matt Town +66532,Mark Garner +64337,Woo-Taek Kim +1585886,Simon Blum +1373693,Álvaro Curiel +210193,Jean-Charles Tacchella +6531,Yolanda Serrano +1456795,Michiyo Yasuda +1780214,Steve Battaglia +2285,Rachel Elkind +229962,Mike Thurmeier +16781,Alexandra Kordes +1437887,Surawan Sricharoen +7839,Claudia Bobsin +1452991,Daniel Fotheringham +1413937,Roger Dobson +67560,Todd E. Miller +59187,Elizabeth Chandler +69615,Lisa Dorney +1429252,Michel Aller +4867,Matthew Libatique +64883,Kang Je-gyu +1733134,Kendra Carter +54798,Bill DeRonde +1154806,David Raskin +1631521,Luigi Bonanno +12512,Jorge Sainz +16571,Sig Tingloff +18759,Charles Staffell +1538234,Andras Kanegson +70720,Philip Stapp +1210144,Trevor Crole-Rees +80900,Shoichi Maruyama +59871,Hubert Taczanowski +1378207,Wayne Stone +1108681,Kikuo Notomi +21242,David Korda +2309,Peter Przygodda +43330,Ventura Pons +133554,Martin Stejskal +42632,Michael Barrett +1821177,Dianne Darcy +1502574,Jun Diaz +11173,Nick Dudman +80452,Eun-Ah In +10387,Marc Hyman +1573080,Jaremy Aiello +1646498,Francis Péloquin +98559,Howard Wexler +45567,Stefan Carow +1546852,Steve Karnes +1451403,Robin Michelle Patrick +14747,Tony Inglis +1634301,Yves Desjardins +4448,Stacey E. Smith +20293,Christopher Kyle +954395,Luke Reichle +29651,Trevor Williams +12345,Virgil W. Vogel +1558430,Kelly Marazzi +20552,Popol Vuh +14570,"Alan Crosland, Jr." +1447120,Daniel Hamelin +1395033,Mara Majorowicz +1205975,Timothy Hittle +53007,Raymond Wagner +1602159,Martin Matiásek +14580,David Flaherty +36590,Paul Tothill +6994,Jack Rollins +1163750,Chris Schwarzer +37436,Alex Gartner +7756,Syd Cain +91053,Wayne Herndon +957027,Rebecca Gushin +21781,Michael Luciano +91358,James Eastwood +14282,Alfred A. Cohn +42061,Marian Ainslee +1569828,Eric Putz +1334779,Brad Einhorn +2381,Rick Berman +32899,Daryl Kass +19016,Michael Brook +14897,John Peverall +1203482,Megan Simpson Huberman +66798,Christopher Marlowe +51985,Guy Riedel +1384397,Milena Popovic +94534,Jason Clark +66534,Beverly Safier +1840044,Fialelei +67682,Dorothy Aufiero +47696,Michael Pickwoad +1827963,Jason Bretz +67044,Martin Schäfer +1338455,Steve Mccroskey +91144,Shawn Murphy +1586401,Jonathan Spencer Levy +8720,Lee Katz +1642433,Dieter Meyer +1734782,Jennifer Perini +1052402,Philippe Dussart +1613274,Paul Andreovski +1290905,K.C. Scheibel +73722,Eric Vallée +68678,Mark Lee +319923,Paul Bern +13270,Leon Shamroy +1086087,Eric Friedewald +1470185,Joanna Brett +126195,Douglas C. Stewart +1171850,Kathleen Coates +1387244,Ronald Eng +1558200,Kelly R. Borisy +1452989,Nicholas Tripodi +1411362,Marco Giacalone +138763,Wynford Vaughan-Thomas +1586043,Elden Ruberg +1602866,Darin Miller +981854,Janet Grillo +56398,Christer Furubrand +19872,Andrew McAlpine +66624,William P. Kennedy +1411075,Peter Owen +83996,Bradford May +1906885,John Hardy +1790545,Mark Vena +232183,Russell Braddon +11370,Elton John +1695754,Iraj Sarbaz +1855217,Giles Harding +1640579,Carlos Arditti +91868,Richard Waldrop +37299,Jiří Sternwald +100984,Ardel Wray +71344,Ted Vernon +1457696,Marsha Shearrill +1113194,Dave Kupczyk +4062,Jeff Hyde +1549203,Susan Kowarsh +1401809,Orlando Meunier +1615256,Michael Peraza Jr. +75478,Mark Turnbull +1401758,Marvin Salsberg +2288,James Liggat +75910,Annie Maver +1671961,Evangeline Harrison +40836,Marcus Loges +541478,Ken Ryan +1016455,Janusz Morgenstern +1521687,Federico Castillo +33692,Wyndham Gittens +42064,Richard Schayer +1137532,Margo Myers +960362,Adele Palmer +92928,Tito Carpi +1096990,Dan Greenburg +38415,Mario Iscovich +1408784,Chris Roff +76018,Bobby Roberts +37468,Thomas N. Morahan +1395024,Mike Prestwood Smith +22812,Marion Hänsel +6493,Ilene Starger +72062,Talbot Jennings +5507,Ronnie Yeskel +89632,William K. Howard +1834849,Brooke Neilson +142917,Albert Riéra +1531004,Walter F. Tilford +224070,Earl G. Preston +227569,Shelley Evans +66905,Ronald Yanover +1877170,Jenna Abrahamson-Minardi +87506,Antonio Larreta +32605,Andrea Stanley +1474738,Huguette Gagné +1377239,Wilma Garscadden-Gahret +1393571,Stephen Consentino +17829,Claude Paré +1010006,Takeichi Honda +1208355,Gregory A. Weimerskirch +34741,Frances Marion +1598742,Steve Dewey +18456,Johnston McCulley +29671,Roy Ashton +1410205,Beverly Winston +38084,Sarah Edwards +930989,Will Bates +25292,John J. Kelly +51452,Andreas Thiesmeyer +74992,Joyce Rudolph +1056671,Emil Oster +1780714,Nick Foster +1437892,Wichien Reungwichayakul +1394759,Pierre Blondin +1570748,David Alban +155264,Tom Seller +24995,Kim Sung-Bok +1450654,Abhijat Joshi +67066,Alex Winitsky +223989,Donald J. Lee Jr. +1567903,Paul Schneider +66916,Marcelo Figueras +60794,Emily Beck +135160,Andreea Popa +1378203,Dennis Bishop +1557593,Dominic Mainl +356,Jack Green +1683616,Anett Pohl +1188446,Jerry D. Good +29243,Hans Androschin +1225460,Leon Charles +1585153,Tracy Kaplan +1445988,Matthew Wolchock +71001,Michael Alexander Miller +1602874,Scott Cameron +7659,Adrian Rhodes +69170,Jennifer Jonas +335498,Peter Dunne +1395023,William R. Dean +5501,Gary Fleder +18254,Simon Wincer +56281,Joe Gayton +238673,Eric Schwab +29486,Rob Lane +62086,Mark Thomas +547984,Kinichi Ishikawa +1319442,Jeremy Danial Boreing +1462667,Tyler Ely +11904,Lars Johan Werle +1338669,Joe McKinney +1097,Jackie Burch +1580060,Sheila Timothy +10796,Robert J. Schiffer +1453320,Eric Klosterman +1377229,Martha Susana Ramos +63715,Susan Duff +1228,Tricia Cooke +1877166,Bill Hargrave +197875,William Turner +1339459,Tanya Noel Hill +3221,Marina Gefter +85496,Tony Piccirillo +20121,Leon Uris +25757,Sue Jones +75727,John Maynard +1414557,Jennifer Miller +1401738,James H. Fisher +1634532,Frank Giustra +1426220,Edward Bilous +1264811,Jennifer Nash +31261,Gary Conway +191436,Robert Ewing +1089954,Britta Svensson +960135,Sue Yelland +25459,Michael J. McAlister +1445469,Aaron F. Quarles +1404911,Helen Caldwell +25351,Michel Portal +25467,Toshiya Fujita +67330,Hartmut Teschemacher +1538343,Maria E. Kenny +12417,Billy Goldenberg +1296990,Barrie Guard +1330244,Mladen Milicevic +1530123,Paul Jenkins +139953,Michael Eaves +1646294,Yuichiro Yamashita +1115299,Bill Wilner +83073,Brian Bilson +68556,Per K. Kirkegaard +100907,Juan Mariné +99249,Sven Ebeling +4341,Ben Hecht +24294,Ben Younger +1300688,Anthony C. Montenaro +1193430,F. Anstey +8315,Carol Spier +1553261,Dino Corti +1465612,Robert Webb +37496,José Puyol +36273,Miguel López Pelegrín +19810,David Omedes +20061,Marc Norman +8381,Jim Morahan +54286,Jean-Louis Aubert +1537155,Alberto Bartolomei +945058,Tom Rice +1094395,Gary Baugh +1086332,Alfred Dalby +966,Tim Maurice-Jones +59924,Bruce Mellon +1417516,Jeff Sawyer +11011,Zak Penn +20838,Carolyn Cartwright +544515,Zdeněk Liška +1322413,Kim Hix +1534197,Katie Greathouse +1235847,Lauren Buckley +1174277,Chhedilal Sharma +1681563,Eddie Andres +138006,Frederick Wiseman +1424732,Tamara Harrod +16891,Neal Hefti +15906,William Horberg +1424624,Georgia Court +1117291,Carrie Fix +1407814,Trevor Ward +69057,Dan Allingham +1096490,Lars Bildt +11823,Monique Prudhomme +32991,Howard Warren Comstock +1531246,Serge Lavigueur +1552881,Kirsten Bulmer +68376,Barry Strugatz +1609615,Janusz Kalicinski +1526828,Collingwood Brown +1401939,Malik B. Ali +1174010,Vance Trussell +53896,Peter Carlton +21266,Stephen Trask +34534,Michael McDowell +72401,Rampo Edogawa +1389540,David Devlin +1788582,Andreane Neofitou +50721,Ron Milbauer +6378,Denis Crossan +1892484,Chuck Parker +1467196,Frank Winterstein +14726,Lionel Lindon +1530129,Jovita Groblyte +970287,David Burrows +68006,Ari Schlossberg +1360875,Jana Dopitová +22807,Dean Craig +1559103,Bhabaranjan Roy +1471022,Michael Clancy +1560817,Mario Faraoni +1018083,Stewart McMichael +53472,Jeffry Melnick +87241,Henryk Kuzniak +64355,Traithep Wongpaiboon +5359,Mychael Danna +32721,Otto Stenov +78516,James Roose-Evans +1767056,Renee Cataldi +1462626,Spyros Tsiounis +39203,Annie Hardinge +1338671,Cal DiValerio +5432,David Johnson +1445479,Branka Mrkic +238716,Alfred Leslie +989146,Amanda Friedland +1021592,Ray Heinz +1437608,Sarah Wood +62141,Joanna Johnson +1229619,Meredith Paige +37950,Carlos Fernández +108705,Henri Murger +1738123,Cris Rankin +1465067,Esther Mary Thompson +1187337,Gabriela Ríos +62806,Joe Maloof +46085,Luis Mandoki +5865,Kolja Brandt +1535950,Darryl M. Athons +1662320,Pat Williamson +1411278,Robert Brooks Mendel +36596,Enjott Schneider +958835,Durinda Wood +135797,Howard Frank Mosher +1294392,Kim Jeong-Won +91027,Kevin Rock +1627720,Michael T. Wilson +1334502,Andreea Tudose +1588450,John Orlando +85452,Jerome Weidman +20274,Patrick Smith Kelly +1364417,Christian P. Minkler +589763,Patrick Duval +125623,Väinö Linna +68309,Robin Schorr +1790550,Donald Binder +68377,Mark R. Burns +1830791,Michael Fong +10702,Martin Campbell +1602311,Josef Riehs +72647,Juan Carlos Tabío +65269,Orange Music +1712341,Vito L. Ilardi +552002,Yoshiyasu Hamamura +17136,Sonja Rom +32017,Didier Lavergne +1332239,Shea Masterson +10759,Michael Nyman +112875,Bruce Stubblefield +44120,Jane Poole +8287,Donna O'Neal +151853,Douglas Heyes +20821,Jack Giarraputo +1550399,Rob Young +56996,Christopher Godsick +1665500,Julius K. Johnson +9434,Mayumi Arakaki +1402023,Doris Simard +578792,Tom H. John +1398901,Milan Holec +15868,Uli Edel +1514679,Teri Thomson Randall +238446,Adam Brightman +932933,Yuri German +93975,Lewis Allen +12927,Jeffrey Townsend +70893,Sarah Elbert +120438,Charles Hisserich +2358,Alain Godard +62878,Ioana Albaiu +3584,Laurent Voulzy +49191,Alain Carsoux +969797,Tom Campbell +1400066,Rich Romig +126971,Marco Risi +9884,Chris Sievernich +1730050,Josephine Bleuer +5018,Larry Smith +1775949,Deanne Stratford +92113,J. Michael McClary +1558429,Caroline Bateman +17089,Luis de la Madrid +1533039,Terry Atchison +960175,Neil Angwin +40486,Reinhold Vorschneider +21546,Joe Gannon +39923,François Audouy +1426710,Samu Heikkilä +1392,Witold Stok +1046729,Jessica Kelly +1411073,Terry Jarvis +1156594,Ole Reim +1717530,Tommy Louie +1889488,Vlada Muller +5505,Cary Woods +1332199,Azad Jafarian +1399561,Simon Allmark +1870796,Hortion +1525898,Richard Hooper +138467,Paul Yawitz +1110611,Jay Delaney +1870670,David Harris +43317,Joaquín Oristrell +111689,Tom Rayfiel +56913,Stephen Carpenter +54051,David Berenbaum +59186,Ann Brashares +1435591,Yuri Bartoli +47748,Nicholas D. Knowland +53964,Jason Matzner +20968,Philip Rosenberg +6728,David Newman +1880499,Patricia Hart +1534941,Carlos Quiles +1261680,Rob J. Greenlea +33008,Menahem Golan +2042,Stephen Hopkins +1600623,Rachel Thompson +1492072,Ann Locktov +1527657,Jojo Villanueva +1535987,Deva Anderson +177677,Rodolfo Usigli +1353527,Paul Castro +43592,Conrad Pope +51783,James L. Carter +132566,Matt Codd +491,John Williams +1178650,Wray Featherstone +3996,Tom Johnson +52682,Luca Mosca +81827,Martin Nicholson +1865203,Alfredo Furiga +1441330,Greg Farmer +1460572,Timothy Cargioli +1050807,Noriyoshi Ikeya +8383,Maggie Gray +229993,Michel B. Bordeleau +1086334,Jack Virgil +2657,Robert F. Boyle +1552596,Peter Geoco +948963,Eric Chan +1877145,Peter John Petraglia +1420842,David Bloomer +75591,Marc Jakubowicz +1357611,Tracey Boulton +1303184,Jim Fitzpatrick +79684,Sarah Watt +1338371,Robert Fitzgerald +1615285,Cristy Maltese +1433717,Charlie Ajar Jr. +1581134,Christopher P. Kibbey +39647,Nadia Conners +1531563,Daphne Klebe +32135,Irene Kuhn +1532322,Libby Gilbert +9196,Ted Field +1115007,Paul Watters +1182553,Cheri Ingle +109853,Hunt Stromberg +1400003,Louis Falco +14649,Allen McNeil +958881,Robert Lence +1425971,Zoe Tahir +234853,Kelly Gleason +70329,Shûgorô Yamamoto +1443060,Robert Clark +1840134,Elaine Fleming +1619079,Edith I. Amezcua +2862,Christine Vachon +1016873,Al Locatelli +1377159,Guy Pearce +119323,Paul Sheriff +232804,Mark Lee Ping-Bing +3661,Thelma Schoonmaker +1855208,Keith Manning +1727304,Dorothy Precious +1399018,Jane Morton +11034,Richard Baer +1412112,Robert Vazquez +225975,Bosco Ng +16341,Christophe Giraud +1355535,Jocelyn Thomas +1412120,Allan Jenkins +1565956,Gérard Daoudal +1896003,David Morenz +1662324,Jeff Hay +24957,Florent Retz +1667275,Heather Davis Baker +1767310,Ivy Borg +52694,Steve Bencich +78158,Lester Cole +2423,Bruno Delbonnel +1427430,Everette Webber +1884,Steven Soderbergh +4655,Carlo Simi +1609735,Iona Price +66846,Trine Heidegaard +18186,Pierre-Ange Le Pogam +1447962,Alastair Meux +24330,Cedric Dawe +44130,Paul Lynch +1309742,Ernest Misko +32257,Marshall Leviten +3290,Peter Hedges +7101,Barbara Ptak +56885,Henning Bendtsen +11386,James Acheson +108295,Bert E. Friedlob +2952,Avy Kaufman +59563,Jeff Canavan +1325904,Tom McCullagh +33690,Robert F. Hill +1725885,Martin Gagné +1304269,Monika Dorfman-Lightstone +1398086,Tommy Jolliffe +21674,Sandy Struth +1180488,Panjai Sirisuwan +52056,Jeffrey Wolf +1441322,Ziad Seirafi +91095,Sean Rowe +1623548,Dan Lee +1447153,Elfego Vinicio Pena Castellanos +68128,Frederick Loewe +1599049,Genute Vidauskaite +64425,Albert Yeung +60133,Glen Kelly +16887,Carsten Richter +1412035,Jack Roe +35689,Keenen Ivory Wayans +1425970,Carol Hartwick +1324882,Mayling Cheng +1589503,Carlo Petriccioli +1552546,Mike McNally +23765,Cornelia Funke +1418411,Melissa Remenarich +29664,Michael Carreras +57268,Marvin J. Rosenblum +1401808,Jeremy Hollobon +1418473,Michael Cavanaugh +966798,Frank Pineda +1760090,Marina Malavasi +52846,Trevor D. Rhone +1437123,Cynthia Dumont +1168213,Josephine Humphreys +17915,Leo F. Forbstein +70130,Shôji Ueda +20452,Marie Homolkova +61926,Julien Remillard +75300,Peter Savieri +1433949,Charles Pierce +85426,Don Alvarado +29231,Eigil Bryld +1483230,Sergei Nevshupov +32884,Christine Larocque +12865,Jeff Gourson +131331,Max Makowski +1675227,Thomas John Kane +16958,Randy Barbato +1232529,Tom Gerard +66111,Devery Freeman +6415,Cezary Harasimowicz +1730029,Patrice Grisolet +70841,Irving Axelrad +1540864,Diana Ghinea +88121,Ian Plummer +20025,Shôhei Imamura +12843,Richard Hashimoto +1425486,Enrique Bilsland +3923,Job Gosschalk +559321,Janet Lucas Lawler +1765769,Brynn McQuade +55740,Henry Kaiser +1402054,Dawn Todd Curfman +8805,Bernd Lepel +69806,Lauren Moews +1268,Stephen Tenenbaum +1441326,Mike Draaijers +64947,Anthony Fingleton +1099480,Adrian Pavlovschi +225557,Jonathan Raymond +3116,Combustible Edison +53491,Alice Sebold +1427556,Liam Longman +77599,Kemal Hrustanović +1767051,Nathan Lee +1447495,Sharon Ross +6391,David Brisbin +1437640,Jeffrey I. Friedman +23436,Anatoly Maksimov +1463375,Dan Sweetman +1338850,Fred R. Simpson +557697,Frédéric Duru +1455433,Bernie Cutler +16999,Álvaro Augustín +6590,Sigurjón Sighvatsson +1407666,Joe Gallagher +76017,Hal Landers +19984,Martin Herron +1530,Howard Feuer +54260,Nico Leunen +59854,Gabriella Stollenwerck +114308,Melissa Wells +1542052,Fabrizio Gianni +1624419,Guy Bostock +20773,Tim Sullivan +1526509,Colleen Wheeler +36131,Carol Baum +1455297,Gina Cascino +1115028,Takeshi Yamamoto +38696,Don Schain +64536,Colette Beltran +61420,Ian Gooding +1129797,Ramunas Skikas +1130079,Otello Spila +1907337,Stevie Myers +51378,Walter Hannemann +927979,Martin Madsen +1416973,Lene Bruksås +1304326,Wynn Hammer +1773127,Marcienne Friesland +1332509,Annette Borgmann +33618,Thomas L. Callaway +92358,Gary Isbell +4713,Susan Becker +1752689,Bob Rodgers +115353,Philip Owens +1428912,Zoe Clare Brown +51691,Emilio Diez Barroso +1126348,Eric Hedayat +1566833,Ty Suehiro +24794,Argyle Nelson Jr. +14915,Gordon Sim +1554428,Jack Lothian +37926,Judy Hofflund +1792651,Robin Simpson +109586,Tom Hunsinger +1567302,Jennifer Ellis +937525,Yen Le Van +41968,Santiago Amigorena +1767060,Tanya Kean +113122,Thierry Delattre +1337169,Harley Miller +1611813,Hélène Muller +1483720,John Zane +9200,John McNaughton +18602,Eiji Tsuburaya +1392272,Lucia Coulter +1600633,Dave Bouskill +1584239,Lance Beriman +3286,David Chapman +1664,Georges Charlot +224394,Daniel Dare +130106,Melissa Painter +1319749,Anthony J. Scarano +234847,Lemore Syvan +29634,Howard Christie +1022760,H.W. Hanemann +1305281,Jack Chambers +46324,Nathan Wang +119634,Chow Shao-Lung +23888,Sean Kennedy +1552012,Lynda Reiss +60155,Jeffrey Mossa +1498167,Clay Staub +1032536,Robert Stromberg +1547140,Robin McMullan +31025,Nat Mauldin +1275452,Elise G. Viola +73667,David Golia +1384007,Beryl Bainbridge +113055,Mildred Iatrou +1780220,Jon Glafcke +20822,Teddy Castellucci +931324,Emilio de Diego +5166,Stu Linder +1758614,Bob Wagner +1967,Bertrand de la Fontaine +1339989,Randy Babajtis +1803777,George Dougherty +1165495,Natalya Bortko +70981,George Oppenheimer +1379957,Adrian C. Louis +123828,Alan Paton +1225462,Anthony Yerkovich +2483,John Toll +1534936,Peter Clemens +66454,Ewa Smal +79545,Lorenzo Mattotti +60056,Mary Margiotta +61739,Steve Hulett +30286,Samuel G. Engel +5031,John Taintor Foote +1092207,Eugène Ionesco +41010,Hans Wilhelm +55245,John R. Shannon +35581,Marianne Maddalena +1396840,Felipe Borrero +115054,James Hadley Chase +49455,Fratelli La Bionda +145171,David Kerney +1552355,Heather Holmes +145227,Andrés Levin +1143456,Alfredo Mayo +1571428,Russell Hoban +1864804,John Breslin +936106,Anne Meredith +62025,Arline Garson +1776719,Bill Thomas +1343898,Paul Hamblin +12863,Ron W. Miller +1213367,Barry O'Brien +1181308,Les Rendelstein +12257,Tim Galvin +963497,Natalie Lyon +1224447,Dan Etheridge +1209468,Don Sipes +69678,Michael G. Wilson +8575,Ed Cortês +928912,Tom Cudworth +1595467,George Alden +103673,Ernest J. Nims +30285,Sam Hellman +2621,A. Kitman Ho +11816,Shane Riches +66457,Halina Dobrowolska +1361021,Kiran Bhakta Joshi +1403196,Fred Hayes +1405376,Alex McCarroll +8923,Laura Stuart +63521,Chris Peppe +7534,Gretchen Rennell +556858,Darrell Ware +35059,Richard Horowitz +35927,Alain Corneau +953331,Chris Montan +1780217,Scott Mundy +1401605,Debra Wiebe +91055,Jan Foster +59969,James Chressanthis +1080401,Chic Ciccolini +1466802,Takatoshi Suzuki +1767010,Guylaine Boucher +1322142,Tom Brown +942456,Adam Haight +58206,Julius R. Nasso +80568,Jesse Hibbs +52990,Jamie Gordon +67464,Suzanne Lyons +1098542,William LeVanway +133435,Bruce B. Pierce +1540599,Masami Hanaoka +1537446,David Lee +1389310,Gary Liddiard +12825,Roger Cain +12787,Elli Griff +1708228,Claude Hazanavicius +43382,Sharon Harel +56898,Arne Olsen +46295,Marie-Castille Mention-Schaar +15804,Frank Byers +1023713,Kasia Walicka-Maimone +1807524,Donald B. Nunley +66879,Kresten Vestbjerg Andersen +15333,R. Bruce Steinheimer +52114,Jon Lucas +89533,Willard Van Enger +70540,Colin Bowman +68754,Loretha C. Jones +1437912,Deanne Rohde +62511,Michael Burns +1551213,David M. Ronne +5394,Alexi Murdoch +66748,John Hegeman +1541839,Paul J. Zydel +1168915,Allison Hord +283,Robert Cavallo +59979,Peter Schindler +563904,Karine Angeli +958566,Sturges Carne +1765820,Paula Lucchesi +1393300,Jack Stew +1340098,McClure Capps +298,Chris Bender +10616,Dietrich Lohmann +57026,Jim McClain +1617463,Sara Corrigan +57705,Anne Rapp +41675,Barbara Fiorentino +194881,James Foster +23486,Christophe Beck +3190,Hank Corwin +13779,Stuart Millar +15225,Darrell Hall +9184,Scott Kroopf +1547449,Harry Brand +1557610,Brion Condon +56736,Xavier Palud +1131145,Robert R. Snody +56060,David Rotman +1511192,Toni Rossati +86000,Martin Goldsmith +959948,William Sargent Jr. +57883,Jack Geasland +1441352,Peter Salmon +96903,A.W. Vidmer +1638089,Chu Sheng-Hsi +65843,Mihalis Kakogiannis +1877140,John Hager +1002602,Sonal Joshi +1617588,Yolanda Cáceres +1483223,Graeme Demmocks +226011,Fred Craig +961462,Teresa Gefaell +98217,Jack Leonard +52528,Paulo Morelli +907,Magali Guidasci +239105,Salka Viertel +1405220,Alisa Buckley +9818,Julian Ashby +1186069,António Gonçalo +1402039,Martha Pinson +12891,Joss Whedon +1413995,Robert A. Golden +1567313,François Perrier +32113,Sax Rohmer +52629,Joseph Ruben +1377240,Brenda Lopez +1585437,Sergio Francisco +1402988,Carmen Ilie +1615571,Ashley Lenz +56412,John Requa +77515,Deborah Kampmeier +1428122,Katherine Rees +911,Robert D. Wachs +1412224,Louis Lazzara +55408,David Wolstencroft +12131,Derek R. Hill +1392111,Javier Gunther +1896601,David Edwards +79046,Reshef Levy +1668102,Philip Aja +10919,Fred Lau +1645741,Paul Ronald +998,Sylvie Landra +1544546,Meghan Rafferty +13861,Frank Pierson +1807339,Keester Sweeney +67603,Barry Rosenbush +1464355,Bérénice Robinson +1069705,Russell C. Menzer +14780,Robert De Vestel +40148,Luc Roeg +1549179,Spencer Wilcox +117709,Ken Strickfaden +5271,Lisa Rinzler +18739,Edna Ferber +1558414,Michael Whetstone +570306,Steve M. Choe +64683,Paul Hertzog +1706548,Jeffery D. Woodrel +8940,Jonathan Benson +1242849,Diana Maddox +33317,David Leland +1870696,Fraser Maclean +934090,Armando Lao +1790568,Douglas Parker +33132,Yoshirô Muraki +1573598,Randa Squillacote +1399046,John Beatty +1455022,Pierre Leblond +64868,Oliver Wallace +1234217,D. Howard Grigsby +12994,Vassal Benford +22483,Sidney Wolinsky +1335127,Larry Blake +84352,Cecilia Miniucchi +95842,Joshua Winget +11757,Sonny Baskin +1204130,Guadalupe Ramírez +87173,Craig Kyle +1298412,Mike d'Abo +1707118,Jane Johnson +5021,Leslie Tomkins +1534236,Linda R. Chen +8219,Tariq Anwar +1004171,Joel Viertel +13225,Liza Richardson +79547,Jerry Kramski +1389595,Joseph T. Mastrolia +1050004,Mirza Pašić +1552353,Tim McKelvey +1559394,Thad Maxwell +39106,Robert H. Solo +37497,Pere Portabella +37988,Nicolas Hayer +1129798,Jet Christiaanse +1056758,Nancy Bernstein +1553254,Neil Garland +51516,Steven Hilliard Stern +126910,Derrick Borte +6494,Patrizia von Brandenstein +1527448,Barbara Hause +9989,Mark Mancina +1029002,Barry Cahn +16372,Rémi Canaple +1163664,Domingo Samudio +1790465,John Younesi +1322019,Nigel Churcher +1579709,Michael Sweeney +7411,Patrick Healy +1102209,Tom C. Peitzman +1193689,Earle Fiset +9964,Melissa Mathison +1428851,Lisa Arnone +1427284,Joan Buchanan +1749132,Amanda Grenville +312,Jon Brion +1328817,Annie Brandes +1418806,Basia Plachecki +436081,Sean Fine +12824,Don Hahn +29716,Jack Finney +555254,Yoshifumi Kondô +1591434,Carlos Arguello +1367666,Aynee Osborn +1187223,Dmitriy Vasilev +1453533,David J. Rowe +1555667,Yulia Gershenzon +1050155,Elie Cohn +33142,Gabriel Kosuth +1468507,Paul Curley +99364,Kathleen Laccinole +117350,Dale Resteghini +1429255,Jo Ann Smith +68941,Andrew M. Costikyan +1293203,Wu Lala +102605,R.J. Robertson +51064,Debbie Wiseman +7514,Paul Zastupnevich +31021,Edward Plumb +65191,Christopher Petzel +18986,Anthony Pratt +1423673,Alyette Samazeuilh +21113,D.A. Pennebaker +1573605,Chris Purser +1433711,Matthew Dettmann +1581140,Gary Sharp +131198,Brown Cooper +46233,Minoru Miki +30252,Albert Lewin +20024,Amos Gitai +30288,Joseph MacDonald +4835,Demetra J. MacBride +1445556,André Barde +64158,David Benullo +1674663,Frank Ferro +74693,Eric Allwright +1347735,Nick Miller +1196881,Jan Procházka +1403080,Florence Postal +1318476,Kent Sparling +38556,Andrew Hull +29884,Brian Degas +11476,Richard Bruno +1603326,Dominik Feller +1397810,Kenneth Garrett +818,David McKenna +61955,Igor Khait +1615284,Tom Shannon +1462814,Raymond Sleeman +1400801,Tor-Bjorn Olsson +1748479,Steven Gerrior +14679,Frank Sullivan +932187,Max Biscoe +1168680,Ole Bratt Birkeland +1009298,Goran Paskaljević +94239,Maribeth Solomon +8685,Andrew Niccol +9160,Michael Higham +12420,Robert S. Smith +2210,Bonnie Curtis +1661545,Francis Brady +1407812,Geoffrey G. Rubay +24190,Rolfe Kent +1855221,Roy Branch +18783,Lila Yacoub +1673563,Cory Hodson +1599488,Igor Camo +19100,Maurice King +4446,Jon Kilik +58337,David Odell +1630527,Russel Hessey +1559566,Tjarco van Wijck +123206,Edward Abraham +75653,Gary Diamond +1333153,Tommy Allen +8593,Renato Batata +1351632,Akira Kiyosuke +24052,Diane Nabatoff +1329414,Woods Mackintosh +7924,Nathan Stanton +64665,Ken Lawson +26713,Chuck Russell +1619111,David Russell +1362764,Antonio P. Pérez +1097495,Ricardo Freixa +239063,Umesh Shukla +38256,Werner Jörg Lüddecke +122674,Claudia Allen +130533,Guy Norman Bee +20826,Ellen Lutter +1553258,Robin Lynn Bonaccorsi +53996,Jessica Hope Woodworth +1346095,Amy Greenspun +66732,Sam Sneade +11358,Maryline Monthieux +1500323,Marco Müller +8155,John Hazelton +1551675,Richard Kroll +1425487,Richard Diver +61847,Ethan Maniquis +37590,Rafael Azcona +165655,Tim Burns +37283,Laurie Faen +7170,Barbara De Fina +1406272,Michelle Rolland +227201,Jalees Sherwani +59250,Mats Wahl +1053353,Dénes Szekeres +1617,James Schamus +1525930,David Taicher +74301,Diana Young +29343,Maurice Wright +1705308,Parimal Shah +23867,Héctor Romero +129311,Berne Giler +67976,Sean O'Keefe +27160,Jori Woodman +1755561,Jorge Kunze +1834842,Murray McKeown +151181,Stephen P. Lindsey +1001765,Paige Johnson +1043800,Ricardo Escallón +1284604,Marshall Neilan Jr. +1783637,Chris Carriveau +8159,Shannon Mills +1546905,Roy B. Yokelson +1899279,A. Bloch +57120,Mark Lombardo +25646,Yutaka Yamazaki +223825,Freida Lee Mock +4980,William A. Sawyer +41408,Ross Hunter +1469351,Willem Nagtglas +1244637,Catherine Wearing +1395460,Blair Clark +87326,Andrews Jenkins +58338,John Bruno +60986,Al Hine +1435755,George Cave +137176,Kathy Kiatta +15356,Daniel Sudick +14713,Ken Chase +1076157,Tim T. Cunningham +56380,Sergei Dvortsevoy +1480247,Frank Joslyn Baum +1631520,Paolo Borselli +88119,Robbie Burr +1222229,Scott Hornbacher +45846,Antoine Vareille +1475782,George Trirogoff +1350297,Xan Hopcraft +1602885,Bruce Babcock +112403,Gerardo de Leon +1319626,John David Gunkle +1725882,Julie Kane-Ritsch +735,Arthur F. Repola +25469,Kazuo Kamimura +45053,Matt Greenhalgh +1447450,Ivaylo Anguelov +138795,Laurent Heynemann +60479,Marie France +7972,Andrea Warren +1577010,Jennifer Parsond +1727305,Leonardo de Angelis +94275,Billy Mohler +1617596,Natalia Montes +1892500,Sheridan Ross Batson +76959,Anna Sewell +1015884,Derek Curl +1483948,Norma Jean Straw +1089956,Mats Axby +10520,Joseph M. Schenck +67428,Seton I. Miller +71333,Danny Vinik +1317128,Elisabeth Fry +1117353,Andrew Meyer +1563892,Catherine Pierson +1377123,James 'JD' Deal +30095,Franca Zucchelli +1041048,Bud Pope +1396505,Frank Faugno +370,Jack G. Taylor Jr. +62560,Gerald Sullivan +29639,Jack Kevan +15815,H. Lee Peterson +28283,Buddy Giovinazzo +63959,Garth Drabinsky +76277,Olivier Van Tendeloo +60786,Ernst-August Schnieder +1114931,Alexander H. Cohen +1619083,Steve Auvenshine +224384,John Stransky Jr. +43910,Wang Fu-Ling +1602331,Tim Craig +1413035,Alastair Rae +1858347,Michael Hemschoot +5379,Dan Halsted +69035,Robert Brodie Booth +958007,Abi Cohen +44966,Roberto Loyola +68355,Mick Harvey +1558196,Anthony Joseph Fatigato +1418157,Manel López +73685,Masahiro Ohnaga +1409485,Richard Shorr +95723,Richard Wallace +1424533,Douglas J. Schulman +99384,Ken Cameron +113379,Marcelo G. García +1011110,Dragos Vilcu +1462401,Nicoletta Billi +1851731,Larry McCauley +1662774,Steph Accetta +51844,Peter Silverman +70002,Patamanadda Yukol +57614,Bill Borden +933949,Geary McLeod +10792,Morrie Ryskind +1537471,Kris Krosskove +1667220,Scott Hooker +12881,Gary Goldman +1404546,Brian Richards +1403710,Renee Burke +1521685,Alfredo Torres +70713,William Traylor +1574660,David O. Daniel +1314149,Marilù Carteny +97253,Jacques Viot +65013,Rubin 'Hurricane' Carter +1406837,Matthew Plummer +1599797,Jolanda Buhin +1423747,Abigail Sheiner +36565,Nikolai von Graevenitz +1392676,Tony Lees +1407207,Dan Evans Farkas +34592,Francis Seyrig +5597,Nicola Faas +1398085,David Balfour +40549,Daniel Petrie +1413927,Kristyan Mallett +61924,Alessandro Fracassi +19681,Errol Kelly +70975,Michael Frayn +17698,Nancy Meyers +207879,Pierre Lenoir +21441,Laurens Geels +1470213,François Vagnon +18846,Kevin Loader +1408197,Geoff Teoli +1708291,Annika Krausz +1432465,Jerry Encoe +240779,Michael Schlingmann +12995,Marc Forster +41621,Tony Krantz +18878,Rob Cohen +14040,Dan Olexiewicz +1397854,Yvonne Wilburn +63853,Eric Cadesky +1364796,Alex Bullick +1034578,Nicolas Gaurin +1097359,Matthew Putland +1446689,Charlie Grubbs +21300,Henry P. Caulfield +1633954,Timothy Greenwood +113880,Richard Brennan +1708290,Céline Lampron +1313115,Anton Stevenson +100011,Behroz Shahamat +963843,Priscilla Elliott +1525902,Kelliann Ladd +1395677,Richard Hebrank +1867961,Malcolm Atterbury Jr. +11416,Jack Ackerman +67759,Basil Iwanyk +1114052,Kenny Yates +1675231,Holly Bower +1265275,Innbo Shim +1710838,Roberto Frota +853,Alan Heim +16189,Michael C. Butler +166268,Tony Marchant +1404854,Imogen Bell +29668,Eric Boyd-Perkins +77003,Gavin O'Connor +31177,Jean-Claude Lord +31710,David Hoberman +1465632,Dominic Hyman +1625346,Ned Kopp +5030,Edgar G. Ulmer +1461590,Robert Tafur +56716,Cara Silverman +18655,Dean Vernon +1581165,Michel Jonas +1550575,Bridgitte Ferry +30970,Carl E. Guthrie +5708,Peter James +223106,Hugh Walpole +63724,Troy Rowland +10683,Mike Rich +107274,Richard Rich +66142,Kenneth Wannberg +1559610,Mika Ritalahti +1411330,Stephanie Rass +1418158,Sebastián Hernandis +1141549,Ingram D'Abbes +42634,Aaron Osborne +484529,Mike Piccirillo +1521692,Lázaro Cervantes +1641088,Pablo Hoffmann +1364411,Randall L. Johnson +1081006,Masayoshi Sukita +118290,James W. Sullivan +95605,Larry Tucker +956953,Michael Lambert +6928,Jay Presson Allen +1342625,Matthew Iadarola +60087,Stefania Cella +1472297,Sean K. Lambert +41400,Herbert Smith +6571,Hugh A. Robertson +1407866,Patrick Redmond +24120,Herman Weigel +1402069,Joseph Proscia +1548587,Richard Curry +46299,Dick King-Smith +142916,Jean Guinée +27583,Edward A. Warschilka +1707264,Dorota Ostrowska-Orlinska +136477,Juanita F. Diana +39966,Constantin Fleancu +1629462,Surat Kadeeroj +141474,Mark Bentley +15017,Bill Corso +1885595,Robert Fern +3114,Phil Parmet +1208538,Jim Logan +57164,Terry Blythe +14457,Malcolm Campbell +566356,Allan H. Jones +63999,Jerry Leider +69018,Anne Østerud +1733778,Eugene Grobler +1775928,Christein M. Goldstein +79565,Su-chang Kong +17751,Scott Aversano +16205,Michael De Guzman +1597214,Dan Whiting +1544430,Sébastien Plessis +61827,Mark Sennet +1367653,Stephane Bidault +1073,Stefan Arndt +578057,Georgette Fillon +1148735,Robert Prince +1780712,Marcy Dicterow-Vaj +180868,Clay Borris +1330905,Stephen Wong +1573072,Hilary Frisch +1080888,David Maquiling +1521664,Maury Carvajal +1573111,Gerald Scaife +32717,Johan Söderqvist +1813971,Robert S. Garber +97986,Julien Josephson +1864789,Jordan Barrow +24846,Bernard Lutic +99644,Stephen Downing +91312,Vanessa Theme Ament +60214,Jim Burton +1560855,Carol Sevilla +1486320,Luis Lara +159545,Jim Murray +70109,Benny Chan +1268431,Tatsuo Asano +88915,Jari Mutikainen +94243,Don White +1557606,Raymond Benthall +1551742,Hisato Osawa +70721,Lothar Wolff +81519,Warren Clymer +39244,Nina Companéez +1322113,Kathleen Meade +1337671,Zach Michaelis +1767054,Dan Forster +58256,Roch Lener +78514,David Hugh Jones +1432463,Ron Matonak +1229805,Eric Stough +21823,Veronica Hadfield +1876052,Bodil Overbye +1598765,Nellie Adami +5679,Angelo Rizzoli +580,Sandra Adair +1483730,Janelle Webb +15247,Peter Samuelson +572382,H.L. Lawrence +1552174,Linda Brennan +1389575,Andrew L. Ullman +23785,Tegan Taylor +1805175,David Esneault +1102572,Brooke Devine +5188,Hal Pereira +52453,Margaret Yen +1339453,Thomas Robinson Harper +1430521,Rebecca Poulos +64194,Paweł Pawlikowski +1561044,Joseph E. Kenney +53478,Carol Cuddy +18374,Michael A. Jones +1511737,Geoffrey Patterson +10614,Jack Stephens +8915,Wolfgang Glattes +11506,Julio Macat +1092856,Oscar Potoker +1509365,Dan Paikin +1581116,Alain Boncour +122458,Howard Goldberg +1745226,Kento Watanabe +36427,Jenno Topping +85114,Cynthia Sharpe +1400002,Alvin Milliken +1830641,Francisco Ramos +1030267,Sylvie Brocheré +414697,Félix Monti +1389212,Julian Rodd +21707,Kristen Toscano Messina +1530327,Brad Dechter +12419,Frank Morriss +20507,Sonja Klaus +73079,Stan Zimmerman +1355970,Ben Schor +19019,Robert Riskin +79207,Mark Fergus +37025,Yasmine Abraham +1605718,Bernard Tiphine +1315253,Gitanjali Rao +1684030,Camilla Ahlgren +1147899,Christopher Ross +61500,Krista Gall +66489,Andrew Hollander +119208,Vyacheslav Butusov +83082,Joseph F. Brennan +1714506,Richard Spiegelman +53406,Masahiro Yoshikawa +1247468,Steve Hamilton Shaw +51677,Gordon Douglas +54164,Barry Peterson +21075,William Davies +1328137,Kendelle Elliott +1540477,Dennis Davidson +1551708,Michael Jonascu +1452488,Pat Sito +1761060,Will Thayer +1536087,Shane Liem-Jacobson +1565950,Suzanne Robertson +40151,Louise Rubacky +57871,Bradley Jenkel +1269670,Tarra D. Day +28385,Dušan Milić +1409824,Natasha Ladek +1705310,Ella Lehaf +57048,Casey La Scala +67071,Peter Berneis +27186,Giancarlo Del Brocco +1609930,John Bayley +10198,Emma Porteous +991786,Rajen Savjani +29394,Isabel Mulá +129119,Terry Winsor +75479,Janet Patterson +5820,Alberto Grimaldi +44965,Alfredo Leone +563699,Michael S. McLean +1355977,Louis Mesenkop +1207896,Yoshiyuki Momose +92736,Mark Gooder +1377413,Kris Fenske +1157,David Ray +1470180,Michael Düwel +32168,Christoph Hahnheiser +20515,Jib Polhemus +6094,Hans-Christian Schmid +1767303,Ismael Araujo Jr. +68773,Ilyssa Goodman +62514,Tommy O'Haver +1768426,Ray Felipe +1834850,Bianca Gavin +1414497,Guillaume DeLouche +10782,Neal Purvis +77252,Van Smith +10221,Julie Harris +1371220,Jan Rubens +1483949,Patrick Sansone +1600632,Greg Haddow +1046,Juliet Taylor +1360109,Kim Lee +1639175,Thomas D. Tannenbaum +1407849,Lynn Johnson +1462684,Sebastian Kapijimpanga +13247,Yohji Yamamoto +65847,Lisa Tornell +1661541,Daniel Leung +15022,Mat Beck +1571773,Stephen Beasley +428704,Andrew Reznik +1420608,Erica Beeney +26771,Michael Baxter-Lax +1010724,H.H. Caldwell +1443038,Zoe Hay +1346949,Ciprian Dumitrascu +1998,Gene Brewer +11410,Steven Kemper +1635087,Michael Griffin +64490,Chi-Leung Kwong +67604,Ted Berman +1273002,Andrea Mae Fenton +15127,Luchino Visconti +1387212,Richard Bloom +1448151,Angela Shelton +1142796,Angela Angel +1897891,Steev Beeson +1297581,Scott R. Beal +17080,Martin Moszkowicz +536904,Roger Hedden +1840451,Catherine Cook +1408723,Terry R. Owens +1549178,Justin Van Fleet +206531,Christopher Hobbs +15448,Cloudia Rebar +62516,Marc Jenny +25141,Paul Seydor +1892485,John Aldays +73261,Leon Barsha +38523,François Séguin +105432,Craig Mitchell +1548281,Jimmy Turrell +21932,Steve Chasman +558905,Craig Lahiff +33284,Daniel J. Lester +1554311,Terri Clemens +564056,Michael Herlihy +81886,Charles Parker +34553,Graham Hills +20573,Anaïs Romand +1447482,Jennifer Moeller +79690,Ray Argall +1313744,Vipul Binjola +11467,Gary Holt +46945,Victor Drai +1406805,Martial Corneville +1440744,Arthur Dix +1169218,Kai Rasch +2578,Georges Auric +1399292,William J. Law III +65963,Ardy Lam Kwok-Wah +31060,Sophie Devine +1532354,John W. DeBlau +224385,Will Fetters +66703,Martin Sherman +1425555,Mike Morrison +50355,Dan Maag +1008067,Guy Tannahill +119023,Utollo Teshikai +1544424,Damien Auriol +1637498,Marga Villalonga +1318445,Jeanne Van Phue +179474,Meade Roberts +1708306,Moise Piuze +2212,Walter F. Parkes +89171,Akira Kitazaki +14259,Jack Stevens +1723382,Peter Obeling Johannsen +1817642,Brandon Cunningham +1432008,Kenneth Hardy +1387569,Miklós Molnár +1864179,Morris Surdin +11004,Tamara Deverell +232212,Pip Baker +1406242,Richard Burton +563330,Niels Arild +1401690,Polly McKinnon +1370961,Michael P. Redbourn +212137,Michael Waxman +1465860,Ellen Somers +1374608,Todd Bello +19713,C. Courtney Joyner +14824,Charles MacArthur +1334516,Daniel Alexandru +85858,Walter Oberst +41963,Benedikt Roeskau +1895444,Franz Vacek +1661580,Harold 'Whitey' McEvoy +1377250,Elena Zhukova +1460783,Yoshitake Iwakami +31502,Leo Kerz +73146,Nobutake Kamiya +59780,Christian Gazal +1392617,Melody Fowler +32403,Geoffrey Kirkland +22067,Ian Phillips +58767,Martin Wheeler +1817644,Yaron Levy +1648024,Thomas M. Dangcil +1434061,Pete Carpenter +1655282,Gerardo Caceres +51511,Stéphanie Gaurier +58712,Steve Miner +95901,Bruno Dumont +84906,Steve De Jarnatt +1697664,Don Finn +1134,Marin Karmitz +1196249,Armondo Pinto +31874,Galdino R. Samperio +38017,Hwa-seong Jo +1610266,Wolfgang Amadeus +13675,Gregg Fonseca +1817664,Marlo Pabon +1677183,Manolo Laguna +957666,Celia Bobak +32733,Harvey Kahn +1529525,Jim Holloway +1827967,Ralf Buchman +20691,Maxime Rémillard +37160,Bruce A. Taylor +1558195,Carrie Goodman +1339462,Jeff Couch +1447121,Jean-Jacques Dion +8503,Alfred Newman +4501,Dean Semler +13811,Howard Greer +2500,Werner R. Heymann +1133010,Ric Menello +1877102,Sharon Barnebey +93599,Allen Bain +1318093,John Lafferty +1334508,Enrico Fiorentini +11412,Steve Arnold +1727307,Ron Pekkala +69016,Kenneth D. Plummer +1435037,Max Golden +1446659,Kini Kay +30309,Peter Greenaway +1325557,Martin Body +1466761,Harry B. Smith +2330,Patrick Ghislain +1480294,Nikki Valko +8157,Doc Kane +14352,Ha Nguyen +1008625,Sherry Shourds +1540849,Cornel Lazia +1866831,Scott Delaplace +1204439,Ayo Davis +1800196,John Rath +1616178,Ionut Stafie +1136846,Frantisek Prihoda +21963,Robert Pearson +1410031,Marcello Di Paolo +1567304,Jo-Ann Smith +52135,Alejandro Sessa +14932,John Jarvis +1418528,Bonnie Clevering +20649,Hughes Winborne +70895,Andrew Mysko +150111,Marc Davis +143787,Hal King +1176363,Paul Palmentola +1636929,Heidrun Reshöft +1749136,Sue Sudbury +238852,Ann Knapp +1447497,Merrick Rustia +1391720,Libby Villa +65534,Andreas Deja +28982,Carl Hoffmann +14490,Edward Lewis +1120765,Lee Sung-je +1552531,Dena Berman +1657763,Scott Dalton +1409242,Leonard Bacica +14227,Jules Dassin +1603333,Ben Holiday +13777,Thomas E. Gaddis +1438584,Jerome Fauci +965130,Donald Harrison Jr. +1605449,Itamar Ziegler +1602309,Attila Köves +5878,Rodrigo Guerrero +128356,Edward M. McDermott +63937,Albert Pyun +91094,Joan Rowe +103587,Patrick Wilde +1402028,Denise Ballantyne +68145,Lucio Bonelli +53783,Paul Beuscher +3837,Martial Solal +1325591,Shane Bunting +1176975,Ray Colcord +1401742,Ian Nobby Clark +1683713,Shigeo Ogiwara +1340126,Elizabeth Tremblay +1085007,Reilly Steele +6220,Gurinder Chadha +1538302,Valentin Belonogov +1407356,Danny Braet +1442116,Wylie Griffin +229716,Van Alexander +20782,Jeffrey T. Barabe +1404718,Kira Roessler +1485824,Warren Casey +1733749,Sam Barnes +91886,Wayne Griffin +4745,Judie Hoyt +57270,Robert Schwentke +51453,Shinya Egawa +1319834,Leonie Roberts +1405385,Sheena Duggal +1569114,Thomas D. Herman +1408462,Nancy Lara-Hansch +1172673,Phil Rivo +1424621,Eric Reynolds +1559546,Darlene Salinas +77305,He Ping +448477,Josh Shader +20718,Claude Berri +16747,Jack Rose +101605,Judd Hamilton +1019435,Pierre Gascar +63672,Gail Goldberg +72205,Shari Springer Berman +1201088,Arthur 'Weegee' Fellig +1533072,Ellen Falguiere +957314,Antonio Mateos +36165,Rene Ohashi +1567681,Ann Dunsford +48457,Raúl Dávalos +1574114,Giancarlo Di Fusco +226616,Sloan Wilson +1442498,John Goodson +95332,Maurice Carter +1631219,James Nasser +61416,Peter Del Vecho +1358324,John Lymington +1408311,David A. Arnold +1176690,Robert L. Madden +1090026,Marceline Loridan-Ivens +1427397,Kristina Vogel +986240,Colin Stimpson +1673568,David Kudell +1416440,Barbara Bass +62860,Tish Monaghan +1328818,Clyde Watts +224530,Eric Kissack +1016098,Alan Mruvka +1461363,Brian Kesinger +60385,Fontaine Beauchamp Hebb +974609,Kristin Hahn +1542919,Yoshisaburô Senoo +1570,Anthony Dod Mantle +1357049,Timothy M. Earls +56223,Ronald W. Browne +38393,Marcel Pagnol +1442509,Alan E. Lorimer +1723386,Peter Gabriel Mørch +959634,Nicoletta Massone +1449000,Colin Sittig +60872,Leonard R. Spears +135679,Petr Jarchovský +1607226,Gordon McLean +1733792,Lucie Bories +12362,Walter Reisch +58120,Sylvester Levay +1712321,Andrew D. Brothers +88039,Steven R. Monroe +1767044,Mac Monks +85638,László Krasznahorkai +1347998,J. Stanley Johnston +1531504,Mark Jan Wlodarkiewicz +1387764,Suchartanun 'Kai' Kuladee +19746,Peter Bernstein +1755745,Craig Cannold +1414562,Paul Belenardo +1551657,Mark Chong +1870774,Sean Buck +1458351,Ellie Zika +1568510,Mona Orr +17860,Peter Schwartzkopff +1398186,Goran Mecava +66847,Thomas Heinesen +21820,Broderick Miller +1427510,Jonathan Dixon +1053407,Cordell McQueen +16296,Ronald M. Bozman +122451,Mike Patton +33250,A.E. Freudeman +115393,Larry Golin +1493012,Madjid Entezami +5557,Andrea Crisanti +1262168,Elvis Strange +224393,William Morrow +1389139,David James +1571717,Andy deBruyn +1603322,Ron Hardman +1408182,Allan Galajda +1624413,Pamela Blundell +89860,Aldous Huxley +1462618,Naeim Khavari +132195,Pamela Gray +56941,Richard R. St. Johns +10757,Jane Campion +91046,Allan Mindel +1672755,Chris Coles +1434637,Stephanie Kaye +180163,Jason Horwitch +5175,Michael R. Miller +34080,Russell Kimball +552405,Eric Fenby +8327,Joseph Conrad +1013424,Hilary Linstead +1091311,Errol Taggart +1400354,Amy Pawlowski +1457895,Lyn Lucibello +1454031,Paul Jessel +1400337,Alan Scott +72005,Christian Vincent +22596,Hugo Butler +231202,Dylan Brown +1590080,Kenneth MacKenzie +1399990,Joseph Petruccio Sr. +14846,Arthur Jeph Parker +3357,Jack Cosgrove +11984,Jean Cayrol +20316,Takashige Ichise +1437882,Rachel Kong +590079,Lisa Boni +6377,Clint Mansell +1166389,George Isaac +1602144,Ladislav Ondrácek +126917,Raymond Day +1409730,Carole Kelly +78387,Michel Hugo +119322,Anatole de Grunwald +1624061,Renee Didio +1413090,Kirk Corwin +1400328,Jaroslaw Sawko +1781229,Valerie Lindquist +9320,Cori Glazer +1214396,Scott Winant +9161,Carmel Jackson +66849,Per Risager +1398178,Eric Hoeschen +101496,Howard Welsch +17993,T.J. O'Mara +552423,Rach-chanon Khayannagan +1857014,Debra Tanklow +1410345,Tommy Tomlinson +83077,Anne Hyvarinen +4953,Ed Verreaux +1437889,Michael Chui +1647465,Paul Prokop +110482,Jon Cleary +24803,George Stevens Jr. +15209,Martin Erlichman +1721,Stephen E. Rivkin +961534,Jim Dultz +1555682,Phil Hope +1334504,Dana Andreianu +69946,Bud Yorkin +1378165,Mark Wade +59772,Philip Hearnshaw +63571,Wilson Yip +1406611,Ken Nelson +1548531,Natalie Bronfman +1535448,Michael Moran +1723852,Max Stolzenberg +1552932,Bryan Corbett +35506,Marc Felperlaan +56506,William Dear +32439,Robert Kern +42205,Jag Mundhra +1516277,Donald C. Carter +1377502,Sam Emerson +73524,Norman Merry +1765794,Brian Payne +137613,John Brophy +276,Luis Carballar +41633,Georges Bizet +9028,Sandrine Ageorges +20247,Charles Steel +62814,Phil Maloof +1392717,Rocky McDonald +1557587,Nicholas Symons +1436502,J. Tracy Budd +17851,Lia Roldan +1056686,Teódulo Bustos +1401286,Ron Hewitt +120123,Hans May +1117853,Sirena Liu +1765784,Scott Lafferty +57544,Georges Dargaud +329,Carol Fenelon +11877,Jon Gary Steele +1319446,Michelle Sandvig +59977,David Martin +52911,Chi-long To +28752,Pierre Cottrell +1400101,Sebastian Henshaw +78515,Helene Hanff +76263,Peggy Verstraeten +62558,James Dooley +1392692,Judith Harvey +71931,Hugues Poulain +1399286,Michael J. Fox +1401149,Christopher Sinnott +56235,Stéphane Lecomte +48964,Robert L. Jacks +57660,Thomas Riedel +95329,Kevin Connor +1520930,Daniel Deshays +64747,Bill Dill +1047190,Irving Birnbaum +1402046,Pamela Lenau +26475,Brent Maddock +1514678,Keith McGee +16522,Jimmy Nickerson +17873,Karin Wiesel +1457647,Joe Ekers +142613,Donald Fagen +3310,Nick Moore +54892,Gijs van de Westelaken +3925,Eric Kress +1417972,Michael D. Wilhoit +1299225,Kathleen Norris +76201,Keith Wagstaff +20622,Teri Schwartz +28154,David Blocker +71324,Barbara Boyle +117854,Werner Janssen +2209,Jan de Bont +38697,Gordon Lonsdale +1262550,Trevor Coop +133553,Juraj Galvánek +1357598,Simon Baker +1397174,Rory Cutler +13064,Nina Henninger +35005,Jeremy Brock +1605712,Sékou Ouedraogo +13339,Harry D. Mills +6572,Judith Lamb +981950,Susan Jackson +17251,Orlando Gough +5812,Furio Scarpelli +1860533,Ray Rennehan +67492,Jules Brenner +1461389,Russ Edmonds +1556417,Dan Osborne +61652,Gary Ventimiglia +31183,David Fischer +21984,Larry Dias +1594375,Dmitry Nelidov +1293367,John Handler +1459895,Shawn Broes +1411270,Jeffrey Greeley +1407011,Donna Marie Fischetto +50325,Miguel Alexandre +1535737,Karen Ruth Getchell +68525,Mikhail Krichman +69491,Linda Ferri +1275835,Zev Guber +95818,Eric Blakeney +1160002,Elizabeth Reinhardt +1738171,Lee Clayton +19283,Peter B. Ellis +1203316,Janine Ramsey +25802,Mario Chiari +103471,José Algueró +10640,Fredric Steinkamp +61095,Lars Sylvest +47790,Laurent Usse +1784168,Ronnie Cogan +51643,Greg Littlewood +72762,Victor Loewy +3119,Lance Brown +45668,Georges Lendi +20035,Yoav Kosh +1455542,William R. Wright +1440240,Brad Kuehn +71044,Dennis M. O'Connor +1457700,Tracy Murphy +4186,Joe Hutshing +19930,Vincent Dietschy +91471,Paul Fried +1017999,Lynda Burbank +11468,Joseph LoDuca +1560730,Charles Woolstenhulme +1337452,Christopher Geggie +1639718,Michelle Martini +1708843,Rocío Ceja Amezcua +34229,George Bassman +95344,Sei Shonagon +2873,Anne Goursaud +1406825,Craig Mann +43610,Robin Russell +23506,Jacques Fieschi +1398180,Michael Wetherwax +92503,Felipe Savahge +7324,Pan Nalin +957453,Tote Trenas +409525,Jean-Pierre Duret +581055,Helen Bandis +2304,Anatole Dauman +448476,Gregory Lessans +27735,Andy Gould +18904,Jens Meurer +64166,Matthew O’Connor +974555,Felipe Cazals +80424,Philip Elton +1411668,Arran Mahoney +1131063,Peggy Nicholson +1441259,Terry Calhoun +41414,Guy C. Verhille +1414670,Christoph Dehmel-Osterloh +20417,Bill Lewthwaite +1604074,Shôtarô Hashimoto +1440738,Tim Zeug +1406914,Sue Love +1448063,Malcolm Lamont +33225,Norbert Brodine +1447378,Yannick Honore +1514676,Fred 'Rudy' DeLisio +1576010,Josephine Warne +1383405,Joe Campana +61127,Betia Hovedskov +121271,Sharon Winkler +1017060,Eve Pomerance +15150,Maggie Wilde +7988,Jeremy Lasky +82798,Rustam Ibragimbekov +109469,Anton Chekhov +1458329,Irene Sandberg +57638,John Venzon +58809,Martin Kitrosser +91809,Carmen Frosali +21815,Cynthia McCormac +1662341,Rosalyn Ellis +5912,Graeme Revell +6155,Kristoffer Nyholm +553019,Douglas Hung +31631,Perry Bullington +1700851,Glenn V. Vilppu +1517811,Fiachra Trench +91161,Joe Hartwick Jr. +8340,Fred C. Blau Jr. +133205,Nick Pustay +22609,Peter Genée +1424637,Nigel Scott +44074,Sigur Rós +1434207,Dave Newhouse +5338,Kyrsten Mate +1341398,Stephanie Higgins Frey +30777,Jerome Moross +100616,Tom DeSimone +59448,Viviane Vanfleteren +2871,Fred Roos +20700,Dana Bunescu +1534436,Ed Fountain +30703,Philip Leakey +1183566,Richard Keatinge +1815489,Julie Eberley +1108155,Bertita Harding +560055,Romain Gary +10493,Tom Pevsner +1426770,Brigitte Daloin +83084,Jeanette Browning +1196136,Vance Hartwell +1406927,Jennifer Collen-Smith +59655,Randy Delano +1595838,Kairit Nieländer +1267869,William Webb +80959,William Mastrosimone +1303216,Jon Land +1332202,Marjorie Durand +52081,Albert J. Dunk +7537,Steve Boeddeker +128810,Howard Emmett Rogers +1358394,Harry Carr +75703,Stephanie Gilliam +37162,Susan Downey +1368859,Anshuman Prasad +16391,Julie Taymor +19396,John Brahm +85766,Bartlett A. Carre +1540371,Catherine DiNapoli +141713,Aleksandr Dovzhenko +1171851,Margeret-Anne Smith +86197,Salvador Pérez Jr. +65107,Bob Krakower +1270110,Nick Laws +1346143,Peter Naish +1288257,Kate Hopkins +1821182,Ken C. Wu +145351,Akitaro Daichi +56151,Peter Winther +7230,Nicolas De Toth +37434,Howard Atherton +19032,John Hough +19811,Santi Borricón +958014,Sandra Cabriada +120184,Luigi De Laurentiis +936638,Alfred Sweeney +1341268,Christopher Raimo +1597202,Steven Leavitt +83062,Kelcey Fry +1395351,Nan Morales +1564778,Marcelo Teson +966400,Adam Alleca +1602294,Zsigmond Molcsány +1436183,Thad Beier +5583,Mark Stevens +68940,Manolo Villamil +11402,Mike Werb +1398090,Mohamed Rakaa +21008,William Rose +1374561,George Dudley +1252214,Patrick Gordon +57777,Darin Scott +1328145,Julie Smith +117,Howard Shore +1566640,Danny Lee +1087642,Martin Price +60408,Adrian Curelea +1410203,Jill McCullough +100012,Faroukh Fadace +1400473,Manuel Carrión +29571,John S. Robertson +1881618,Michael Redding +56517,Paul Laufer +111389,Simon Sandquist +55995,Whit Masterson +11409,Oliver Wood +3869,Ole Landsjöaasen +111904,Harry Colomby +53459,Paul Parmar +14571,Mary Grant +12369,Erich Kettelhut +67559,Sandy Kroopf +1761122,Kevin Fraser +14252,Laurie Johnson +9163,Gerry Hambling +1705304,Bimal Oberoi +1524659,Janice Miller +53678,David Reid +1429269,Reiko Kaneko +1423225,Chris Gilligan +1566249,John DiSante +915,David Giler +1065700,Kari Kyrönseppä +1533794,Richard R. Hoover +1398883,Jeanne DuPont +164730,Elizabeth Hill +1389806,Garth Bardsley +543174,Luis Esteban +7481,Laray Mayfield +1376800,Ben Smith +3255,Carroll Clark +22403,Ciarán Tanham +57668,Robert C. New +1540860,Dave Humphries +49917,Tracy Tormé +1775940,Nicklas Farrantello +93631,Lesser Samuels +1125607,Keizo Shukuzaki +1535125,William V. Ryder +41654,Lindsay Chag +1519411,Artur Więcek +69834,Liao Ching-sung +62342,Adam Mason +1316003,Jane Galli +1598748,Ron Annabelle +1319631,Jo Tew +1391721,Jenny T. Ward +51534,Lucky McKee +1352118,Yoshiko Kimura +57707,Jeff Most +9007,Robert McCann +931795,Tim Kirkman +107415,Chris Chrisafis +48496,Mike Dehghan +1416092,Kerry Mendenhall +31067,Frank Tuttle +1345624,Michael J. Burmeister +170706,Bob Bralver +43609,Elia Cmiral +957967,Simon Moseley +963861,Dana Gonzales +61130,Ken Watkins +60500,Andy Given +21971,Wing Lee +1575865,Ryan Steacy +12168,Bansi Chandragupta +1428480,Paul Sacco +1459905,Charlotte Raffi +8078,E.J. Holowicki +1834846,Matt Carver +1417415,Mychael Bates +147323,Bud Smith +1465634,Sarah Hayward +1202174,Joan Hills +1274071,Tom Satterfield +1531576,Sylvia Menno +17852,William Budge +125072,Jaime Salvador +1549353,Jérôme Lateur +41289,Lionel Wigram +88142,Vipul Amrutlal Shah +1611787,Rosalie Clermont-Bilodeau +34380,Asakazu Nakai +18866,Jack Kirby +43092,Doug Langdale +1342619,Dan Dorfer +65251,John Mortimer +1204207,Daniel Figuero +40375,James Whitaker +1398904,Hayley Calderwood +88037,Jari Rantala +1734495,Patrick Tidy +1630619,Corey Michael Lincoln +1841686,Robert A. Golden +87107,Mark Fauser +1424496,James Gibson +9181,Edward Zwick +1566431,Hamid Karim Batin Ghobadi +1084380,Tatyana Kuzmicheva +1677814,Craig Edelblut +160447,John D.F. Black +101547,Massimo Tavazzi +1537636,Rudolf Hájek +63122,Fred Fougea +1586398,Reinhard Stergar +1605170,Willi Kenrick +229801,Kate Biscoe +107535,Razvan Radulescu +1534434,Jennifer Lax +1316159,Marius De Vries +56611,Rob Edwards +117443,Dick Wolf +35582,Nicholas Mastandrea +1408663,Dave Friedman +1337418,Nathan McGuinness +119537,Hans F. Koenekamp +4907,Stephanie Carroll +1494113,Franco Marazzi +1713403,Jeffrey R. Ranjo +1734775,Henry Embry +34949,Lucy Walker +1404355,Gordon White +56074,Dan Mooney +961303,Seamus Flannery +1683615,Eric Ségol +53115,Cynthia Ann Summers +10770,Lawrence Turman +33249,Ernst Toch +11470,Edna Ruth Paul +1858344,Rick Hicks +1458348,John Vita +1195689,Frank Battiston +566962,Steve Schwartz +69486,Jill Wisoff +35380,Frauke Firl +60208,Mark Gibson +979,Miguel Rejas +228591,Andy Ng +1377221,Jeffrey A. Humphreys +208238,Isaac Gabaeff +69320,Harold Jacob Smith +62354,Erik Wilson +54321,Jorgen Doering +1447458,Rufino Camacho +66183,Edward A. Biery +935862,Kenneth Earl +1406187,James Gemmill +164890,Eric Chase +1539097,Maurice Yates +53851,Rowan Oliver +19707,Charles Band +1110992,Danny Baldwin +1400351,Mariana Mechoulam +1708300,Maxime Leduc +1871226,Harper Smith +70305,Grant Nieporte +150552,Barbara Gowdy +21034,Ji-na Yeo +72022,Yu Zhao +6920,Carmel Davies +139038,Timothy Prager +6961,Casey Storm +79490,Jonas Barnes +1400561,Bruce Nicholson +142350,Matt Cvetic +1051914,Kazuo Inoue +1338098,Peter Baran +7583,Gillian Berrie +8235,Norman Deming +1640578,Nena Bernard +1864221,Bruce Foster +229909,Thom Wells +1673528,Anne Fletcher +66628,Wayne S. Williams +1306222,E.J. Rath +107858,Ágnes Hranitzky +1301113,Neil Stemp +1131838,Stacey Fields +8484,Aaron Stell +142163,Kenneth Fundus +1358076,Ellis Burman Jr. +13971,William Faulkner +74817,Graham Henderson +35163,Laurice Elehwany +68489,Earl Barret +1573106,Steven J. Scott +94802,Ray Golden +1642697,Ian Blum +50081,Giulio Biccari +1823,John E. Chilberg II +417597,Yvonne Wood +1467010,Curly Batson +1301145,Martin Lopez +51469,Michael Brierley +223243,Richard Fojo +1897888,Nathan Hathaway +1336197,Tom Kramer +6188,Louisa Velis +1074631,Lorenzo Doumani +1625912,Graham Macpherson +76100,Ben Stassen +1738133,Lesley Addario Bentivegna +1146827,Robert M. Baldwin +1551973,Corinne Saglio +1711808,Masanori Kobayashi +25801,Guidarino Guidi +121047,Edward Killy +1407877,David P. Earle +1294437,Colin Waddy +4782,Michael Crichton +8848,William Ladd Skinner +1447569,Marco Cinello +1575771,Cliff Mueller +60070,Jeremiah Samuels +1446757,Enrique Greiner +1640478,Peter Olexiewicz +583315,Vojislav Mikulic +1724287,Suzanne Lowe +1428226,Jennifer Jobst +50139,Charles Weinstock +1605168,Bob Hilditch +13520,Aaron Sorkin +1611785,Mathieu Décary +960261,Ryszard Lenczewski +7416,Arlan Jay Vetter +31465,Mick Strawn +56270,Stan Webb +69004,Margery Sharp +65682,Roy E. Peterson +72559,Edward Teets +201165,Terry Sanders +89220,Fred Steiner +63798,Dave Bonneywell +5669,Douglas Aibel +1423416,Sarote Tabcum Jr. +12638,Gregory Bolton +1640410,Marilyn Clarke +76152,Jerry Hey +73267,Antoine Gannagé +21440,Dick Maas +62243,Brenda McCormick +10234,Anne Fabini +1392674,Frazer East +57305,Ken Iyadomi +20415,William Templeton +553931,Robert Lansing Parker +57616,David Hung +144845,Matthieu Delaporte +55441,David Boyd +15525,Matiki Anoff +1585805,Martin Hossbach +931237,Thomas H. Ince +66760,Timothy Gee +989050,Monica Howe +1864151,Dorothy Wilde +66797,Johann Wolfgang Goethe +1234464,Billiam Coronel +1325693,Paolo G. Venturi +1855229,Tony Meister +1452713,Joe Grimaldi +1456028,Torsten Witte +21584,Adam Herz +1594652,Steve Wright +7764,Richard Hymns +56511,Cheryl Edwards +1413442,Doug Currie +80538,Jean Duval +1148738,Sophie Goudard +4018,Steve Christian +62587,Jennifer L. Soulages +1265277,Emily Woodburne +937827,Barry Poltermann +37277,Libby Sharpe +1431015,Alberto Villaseñor +166177,Eric Holland +1665465,Heidi Pascoe +1461547,Lyle B. Reifsnider +1418328,Grant Hulley +1440866,Rhys Lloyd +30575,Maude Onslow +1405372,Anna Vilà +1606876,Jean-Claude Eloy +1838150,Trudy Seiter +1717515,Timothy Metzger +52445,Lianne Halfon +47277,Jill Footlick +1743677,Dunja Klemenc +1411914,Gilbert Sarthre +71149,Scott Abbott +1881563,Joe Celeste +1406917,Padraig O'Neill +1653575,Folmer Wiesinger +13596,David Kirschner +6223,Deepak Nayar +107066,Charles Stroud +120606,Gregory Goodman +52341,Nadia Rona +1591577,Bob Bridges +1640413,Anne von Sydow +10124,Eliza Solesbury +8153,Paul Cichocki +1209537,Shane Phillips +1585864,Sandra Scheucher +54222,Jean-Paul Salomé +21650,Swan Pham +1530300,Takashi Kono +1433733,Maureen O'Connor +21822,Betsy Cohen +29808,Robert Florey +16547,William Sackheim +15427,Bob Ziembicki +550327,Tushar Hiranandani +5333,Christine Beveridge +67754,Michael Berry +938945,Gregor Nicholas +52360,Ken Daurio +559910,Alex Weldon +1462627,Tigh Walker +1790559,Gregory Nutt +959262,Eric Ansell +122464,David Kern +9647,Steven Weisberg +73724,Jean-Pol Fargeau +1405728,Janet Sobel +1377136,Kurt Smith +11297,Eithne Fennel +1661558,Drew Dillard +1368884,Melissa Muik +75580,Shirley Lixenberg +1029786,Hisashi Kase +1585872,Conny Klein +81034,Chookiat Sakveerakul +1611812,Kim De Pietro +55146,Paul Bogart +1841202,Peter E. Nunnery +79852,Thomas Browne +7784,Bob Ducsay +17222,Martin Lasowitz +95959,Jared Mass +40896,Cecilio Paniagua +91893,David Blitstein +1589724,Rory Enke +1871215,Nino Zagaroli +17137,Sandy Saffeels +1381169,Rick Wilkins +1598734,Nicholas Gazda +1613315,Sally Bunasawa +1583351,Tadeo Villalba +133090,José Luis Guerin +4805,Marcos Kantis +965666,Dayna Pink +92108,L.A. Puopolo +1208450,Carla Colombo +1329759,Sue Moore +1824,Tom Pedigo +65357,Li-Kong Hsu +1855219,Niklas Aldergren +8912,Antonio Cardenal +958731,Bernard Newman +1058068,Jim Finn +1592134,Emile Charlap +1674649,James Breen +53680,Elaine Grainger +1861318,Tyler Delben +145605,Harry Beaumont +37427,Susan Shilliday +1570441,John Prettyman +589507,Ryszard Zatorski +567971,Chet Raymo +5876,Gigia Jaramillo +1548670,Bill 'Kauhane' Hoyt +1399889,Sheri Ozeki +1756246,Jean-Pierre Frogerais +225898,István Szabó +34340,Rick Schwartz +27679,Michael London +74975,David J. Hudson +74943,Daniel Monzón +9577,George Roy Hill +1371169,Alfonso Patiño Gómez +34015,Milton Rosen +1477839,Richard Steir +1002096,José Luis Rodríguez +958921,David Crank +1855718,David W. Orton +1167115,Chris Chan Lee +1084413,Michael Meier +52452,Peter Afterman +1416673,Rebecca Long +1466395,Clare Griffin +1758681,Chet Badalato +79184,Barbi Jollota +1061,Harry Keramidas +1129323,Cyndi Brenner +1014920,J.C. Cantu +1271644,Guy Hendrix Dyas +65891,Vassilis Photopoulos +259792,Gustavo Graef-Marino +1104964,Edward Montagne +966121,Cristina Casanas +1877161,Luigi Mugavero +559561,Wilfred Buckland +20954,Bernard Gribble +29573,Roy F. Overbaugh +1375086,Steve Borne +16210,Colin C. Mouat +1817627,Lisa Villaire +32492,Francesca Paris +1405382,Chris Hogan +21453,Allan Weiss +563760,Ana Rebuelta +76942,Everett De Roche +17761,Joseph Walker +975566,Jerome Kern +1070260,Juan Carlos Macías +39301,Ute Burgmann +19304,John Schlesinger +26025,Ellsworth Hoagland +29595,Rouben Mamoulian +6887,Brad Wyman +1443946,Coni Andress +59702,Aleen Keshishian +1599617,Jamie Felz +1376819,Louis L. Edemann +1585883,Robin Pohle +6186,Kathleen McGill +1425028,Yunus Emre Yurtseven +1341345,Jackie Saunders +3719,Adrian Gorton +1376902,Gwendolyn Yates Whittle +1483220,Brad Alexander +70538,John Cary +224682,Elizabeth Wurtzel +18378,Herbert Ross +1615297,Albert Tavares +1390233,Joseph D'Agosta +9888,Claire Denis +436621,Alexis Ferris +1327222,Philippe Lord +137477,Jonathan Mossek +6893,Sammy Lee +58288,Tom Sherohman +1092635,Björn Henricson +161701,Al Roberts +1202730,Cul Cullen +1312284,Zoe MacLeod +48789,Karina Ressler +1547350,Joseph Markham +24956,Gary B. Kibbe +52371,J.S. Cardone +55710,Adam McKay +21119,Michael J. Duthie +1752656,Douglas Ganton +1780207,Mark Dane +60935,Seth Yanklewitz +1497448,Robert Dierks +1164106,Gretchen Dyer +1425868,Oksana Rusalinova +1364794,Carlos Caneca +86203,Bart Freundlich +998690,D.D. Beauchamp +1180490,Saksiri Chantarangsri +30129,George Waggner +1817621,Kashka Banjoko +65506,Michael Spiller +1603327,Michael Albala +69161,Michael Boddicker +1397319,Walt Freitas +75939,Bryce Menzies +2760,Ted D. McCord +1331823,Pato Guzman +65615,Wych Kaosayananda +33439,Melissa Toth +1341403,Richard King +64534,Isabelle Mergault +119635,Chin Sam +77206,Bill Terezakis +21654,Tim Bricknell +178439,Hugh Benson +69803,Randy Pearlstein +12706,Mark S. Freeborn +66710,Harold Greenberg +44048,Julie Selzer +1014404,Enzo Provenzale +1399918,Mark Shnuriwsky +1392103,Casey Conroy +2947,Georgia Kacandes +1398947,Linda Lew +1748872,Jon Udell +161550,S.S. Schweitzer +1855205,Yasmin Al-Naib +70642,Finn Henriksen +1748698,Oren Jacob +1357059,David V. Butler +1581074,Petra Weber +1536975,Sandy Berman +83080,Wendy Riva +1608893,Travis Crenshaw +12910,Sarah McArthur +1544252,Henry Rackin +1379966,Chris Cooney +70062,Georg Riedel +1429245,Yves De Bono +36016,Pasqualino De Santis +1530130,Sukh Gill +10189,Donfeld +85349,Jan Lustig +1684180,Benjamin Davis +74153,Megan Holley +8313,Jeremy Zimmermann +416764,Baron Ventimiglia +12279,Leo Tover +21729,Lisa Fischer +1673550,Peter Huff +1403079,Jack Peabody +1564584,Charles Ewing Smith +79726,John D. Hancock +1480099,Carol DePasquale +1264503,Farhad +217024,Jon Stephens +1402926,Andrew Neil +1447147,Michel Héroux +1394282,Allan Magled +51868,Terilyn A. Shropshire +1382957,Adele Balkan +40346,Tony Geiss +1442518,Ray Quiroz +189696,Christopher Gordon +1538425,Julia Shirar +23971,W.P. Kinsella +1198049,Chris Heinrich +12987,David Zucker +1512019,Pamela Easley +56474,Shona Auerbach +96708,Joel Glickman +1552051,Gary R. Wordham +1424640,Terry Fletcher +1429530,Peter Halbert +1102213,Mary Orr +1389418,Jill Haras +168047,Arthur Browne Jr. +60190,Paul A. Levin +231264,Fred Sersen +115352,Peter Nelson +8023,Kyle Balda +113090,Alicia Stevenson +1147204,Eileen Kennedy +12433,Michael Phillips +16967,Dong-hyeon Baek +51686,Mark Boal +61092,Torsten Lippstock +66488,Todd King +1461408,Jean-Christophe Poulain +1552173,Rashied Aljuwani +1446678,Eddie Bydalek +8581,Bia Salgado +1560120,Heather Ignarro +1433229,Richard Welsh +83281,Lenny Abrahamson +1069073,Dian Perryman +1571752,Victoria Gonzales +1184250,Mark Levinson +1536374,Richard Zarro +51575,Leslie Greif +106454,Jamie Greco +1352668,Kay Nelson +3962,Wendy Partridge +10005,Robert Surtees +11802,Betsy Heimann +552337,Hajime Matsumoto +859,Valerie McCaffrey +12510,Anthony Masters +1341786,Bryan O. Watkins +66159,Yoshiyuki Okuhara +1106162,Françoise Nicolet +1517984,Gorô Kusakabe +139841,R. Chetwynd-Hayes +1536109,Con Dempsey +1099845,Tom Elliott +79549,Romain Slocombe +54844,Bradley Fuller +12702,Reginald H. Morris +1539404,Zoe E. Rotter +1584238,Monica Cogan +6935,Hilton A. Green +1549015,Ray Maxwell +117295,John Antrobus +72175,Gene Kauer +1334493,Sarah Robinson +90657,David Mallet +1840093,Andrea Kool +1581161,Rachel Quigley Smith +969801,Tero Molin +30670,John Wilcox +543946,Hall Bartlett +1330612,Chris Bingham +52026,Vilko Filac +23492,Vlad Vieru +985774,Micheline Garant +92373,Kam Chan +1339812,Bo Johnson +58440,Tony Paterson +1142381,Ellyn Long Marshall +1676548,Richard Vidal +1326089,Barbara Cole +83842,Jean-Michel Ribes +1697684,Carole Beers +3386,Robert E. Sherwood +1392893,Grant Swain +1376311,Lolita Ritmanis +1851721,Gloria Cooper +937784,Dale Barnhart +1433719,William Jacobs +10445,Martin Danzig +12707,Mary E. McLeod +29856,John Veitch +33273,James Hilton +115356,David Baldwin +1417413,Barry Wilkinson +45818,William Chang +1549198,Chris Cummings +21220,David Willis +1554594,Robert Fernandez +75518,Angela Heesom +83066,Carol A. O'Connell +1614969,Ken Robinson +8677,Karl Walter Lindenlaub +118167,Jon Diamond +1468130,Brad Zions +1539838,René Demoulin +1567298,Ian Davis +1442519,Joanna Guzzetta +4524,Niki Reiser +65710,Michael T. Boyd +1407198,Bret Johnson +19994,Shu Aiello +1447342,Matthew Schofield +1043649,Stuart Brereton +1639186,Irva Mae Ross +1117873,Beth Kono +1155128,Jean Léon +86047,James Portolese +53433,Anne-Dominique Toussaint +1615553,E.D. Baker +62690,Fran Vos +1877149,Linda Renaud +86357,Oscar Millard +1162323,J. Hartley Manners +52350,Jean-Baptiste Dupont +1403614,LeRoy Deane +1300663,Margaret Prentice +1586001,Michele Trimarchi +14020,Roland Totheroh +1649571,Patikarn Phejmunee +1422074,P.R. Tooke +26011,Gilbert de Goldschmidt +1441344,Pearl Louie +76262,Kurt Rigolle +19993,Leo Davis +54328,Olivier Walczak +27581,Sandy King +30182,Henry Montsash +607,Zhang Yimou +567973,Joan Bergin +2236,Tim Bevan +1448076,Mark Waring +1437193,Lauren Hadaway +1501948,Le Matos +1331445,Megan Nicoll +115091,R. Ellis Frazier +1178904,Dun Jing Teng +31590,Carlos Grandjean +1830195,Kian McClure +932535,Daniele Cesarano +1723492,Zahir Shah +1760131,Thomas Burke +1186594,Lou Angelo +148862,Lew Brown +1561937,Brett Bouttier +932203,Kate Novack +1460770,Adam William Wilson +1388873,Christoph Roth +1635176,Gabrielle Levesque +962679,Alistair Kay +67317,Luke Dawson +1501787,Carlo Salsa +1195575,Michael Auret +1402004,Aura Sperling Pierce +1128865,Jesse Wolf +1907212,Daniel Rath +1860433,Ivica Trpcic +1373405,Elaine Constantine +1759750,Susan Zaguirre +73757,Maria João Sigalho +1364790,Hanna Hemilä +103362,Jane Burr +109720,Irwin Gielgud +1395396,Leandro Matos +1202073,Gabriel Mkrttchian +121037,Bob Clampett +1602996,Alexander Utkin +112067,Grace Zaring Stone +180281,John Enbom +1039414,Richard C. Parish +1301328,Mat Wakeman +1328121,Milagros Núñez +939447,David A. Ford +1774219,Chelsea Whittet +144798,Simon Cellan Jones +128781,Courtney Terrett +930016,Dror Mohar +1643506,Chi-yao Wang +1438567,Laurence Forgue Lockhart +1281854,Stewart Prain +1408596,Dave Eddy +1578404,Tamara Marini +1763755,Karen L. Young +144044,Herbert Blaché +1185220,Burkhard Althoff +69809,Cynthia Scheider +1095401,Pamela Lynn Fielder +1643883,Carlo De Marchis +1670662,Pamela Thur +1552517,Frank Cuomo +1635741,Vidar Svendsen +1336135,Ideya Garanina +1609174,Claude Kongs +12890,Pete Docter +34307,Daniela Beauvais +1216399,Andy Goddard +1313042,Tom Shutes +1304598,Ryeoryeong Kim +1326478,Jason Mitchell +1594809,Ehud Gutterman +1336137,Sofiya Gubajdulina +164665,Liz Miller +1784277,Milan Hubácek +1411857,Nadia Venesse +1583648,Simon Max Hill +1595005,Chris Collins +1518579,Emily Heyman +1760150,Robert F. Peppler +1822782,Christopher Harberg +56626,Jamie Carmichael +1642564,Holger Jass +1765169,Rakesh Madhotra +1100029,Sergei Kozlov +1389138,Jody Blose +1410590,Françoise Quilichini +1509977,Gabriel Fleming +1821939,Robert Guerrero +550895,Michael Thibault +1665917,Mike van Dijk +98521,Floria Sigismondi +110719,Amit Bose +1587697,Slaven Reese +1083453,Masahiro Hosoda +1484835,Yasmine Akram +1524727,Monica Parker +1630281,Lisa M. Kuethe +1338142,Dalton Kutsch +1764358,Spencer J. Andrews +1725560,Csaba Benedek +1121056,Nicolas Coppermann +1403324,James Leszuk +1662195,Sudhakar Reddy Yakkanti +1418348,Lucy O'Reilly +1777174,František Belfín +1034656,Ulf Soderqvist +1106693,Andrew Droz Palermo +1635173,Nathan S. Clark +1639377,Joshua Bramer +661063,Nathalie Gastaldo +1331177,Katie Hickman +1769927,Nathalie Roubaud +155248,David Lang +125457,Tibor Hernádi +1330435,Georgi Sadovnikov +1537723,Miranda Marks +1614062,Fabian Jonathan +88309,Julián Hernández +1544518,Bob Akester +1367362,Rick Owens +130690,Magnus von Horn +1488731,Marli Aleiferi +1446462,Dann Fink +1665954,Ingrid Dorresteijn +6412,Meg Everist +557250,Joseph D'Igalo +1305960,David Kitchens +1841855,Antti Reikko +1302084,Erik H. Magnus +1403401,David Carriker +1678288,Jamison Sweet +1424682,Ivana Stefanovic +238872,William Robertson +1733200,Ryan Mehendale +80014,Neil Bregman +1327247,Arlene Castillo +1605656,Frieda Oberlin +131900,Shravan Rathod +31273,David Shaw +1041355,J.K. Ahuja +1453652,James Summers +1014925,Myles Nestel +1872437,Lex Martin +1324192,Courtney Hoffman +559205,Marianne Gray +939362,Yankie Grant +1493726,Kenny Sheard +152190,Carol Wiseman +20935,Raoul Katz +1461114,Grigorij Richters +1485471,Doug Wardle +123773,Fergus McDonell +147780,Ender Akay +150003,Graham Heid +1616022,Avelina Prat +1407340,Melizah Anguiano +1657574,Katie Piel +1409875,Carl S.G. Moore +1326114,Keith Hall +1314882,Carla Gibbons +141359,Roy Thomas +111879,Andrew Stirk +1571049,Michael Sherman +1460773,Natasha Peschlow +18357,Peter Hewitt +129558,Lowell Brentano +1388091,Clare Manchon +1345611,Tara Feldstein +63900,Arthur Cloquet +1531207,Hannes De Maeyer +1609175,Loic Collignon +1782644,Ross Stewart +554455,Mark Panik +1746448,Yoichiro Yoshikawa +237275,Aleksei Korenev +1406195,Thorsten Kosselek +1758552,Wasan Morakul +1210790,Jared Marshall +1581569,Lara Sanderson +1567106,Sheila Hume +1408379,Daniel Barrow +1168205,Billy Peterson +1338969,Niv Adiri +1320499,Juan Sola +128459,Pasquale Plastino +1316208,Evelyn Belmar +1721727,Kote Mikaberidze +1349911,Michael Mitnick +1638067,Yehuda Maayan +145210,Craig Pryce +70655,Gina Shay +1572145,Stella Meghie +1870217,Lynda Chapple +1607003,Ollie Rainbird +63006,Ram John Holder +1526965,Lorraine Porr +87894,Won Shin-Yeon +1328332,Nicholas Musurca +1485676,Michelle Green +1450499,Lauren De Normandie +1399090,Frank Iudica +1408393,Hopper Stone +1771001,Will Houghton-Connell +1423847,Kristine Familletti +1210543,Mattie Do +1559480,Graham Holtom +1408177,Reynaldo Bisono +1055182,James C. Wasson +1372083,Benji Cox +1431503,Claire Rutledge +1257939,Emily Cohen +1489293,Hakan Yonat +30224,Emily Brontë +1448300,Josh Taylor +1187847,Jay Moses +1056846,Anand Shankar +1475547,Karla Strum +1305961,Ben Zarai +1834969,Tristan Tarrant +102116,Sergio Borelli +1470969,Lon Lucini +1200297,Ilaria Urbinati +1196917,Willi Wiesner +1327729,Phillan Bishop +1100367,Birgit Kämper +1307316,Takashi Sato +175610,William Read Woodfield +1484206,Boris B. Schmidt +927798,Howard Alk +1588609,Alice Vial +1455532,Heath Pagram +1539301,Mohammed Amine Hlal +1583159,Sabrina Campos +1402882,Amy Jane Lockwood +1378403,Doug Riley +1813309,James Crouch +233464,William Brookfield +40230,Kevin Hooks +1311031,Svyatoslav Podgayevskiy +101616,Ryan Carrassi +1098740,Joseph Trapanese +1080055,José María de Orbe +1143785,Jaime Vaca +1662346,Elizabeth Willaman +85877,Dolly Ahluwalia +1817392,Saar Yogev +1512121,Matt Eddy +933543,Spencer Brennan +1529602,Evan Dubinsky +1817834,B. F. Remmington +1124099,Todd Portugal +558595,Vic Caesar +1336935,Lars Bartkær +32317,Jean Bolvary +234844,Jackie Kong +1213778,Michael J. Weithorn +108899,Nancey Silvers +1299044,Alan Connor +1631407,Michael B. Call +1760306,Sheetal Duggal +71716,Jan Glaser +88986,Oliver Drake +1722911,Shosaku Imai +1888973,Mondo Boys +34079,Earl Turner +1457659,Yoram Shayer +1586004,Giorgio Morra +1804201,Nicholas Deroo +1357589,Ed Johnston +1333166,Gennaro Formisano +588878,David Toutevoix +59343,Maren Elbrechtz +1455525,Victoria Livingstone +1122368,Fernanda Rossi +1364808,Kristian Moliere +40615,Jerzy Kawalerowicz +15346,Roberto Orci +1357190,Vion Papamihalis +1182173,Coralie Amedeo +94453,Sriram Das +1639074,Francisco Zegers +1103540,Sean O'Neil +1558714,Craig Myers +1649727,Watcharadon Chanachina +1208807,Juan Carlos Melian +577811,Gregory Gieras +1426828,John Sanacore +233668,Anja Philip +1704832,Gopichand Achanta +1500426,Martin Lord +1170905,Forrest Halsey +19640,Michel Magne +1409393,Richard Goulding +1688080,Hannah Spice +1847626,Damien Couvreur +1599513,Cécile Deleu +1287442,Elsa Chauvel +234290,Aleksandar Petković +1755265,Tamás Vass +1125628,Walter Civirani +138008,Emily Meyer +70495,Oscar Brodney +1394577,Bryan Ellison +1775351,Moritz Reich +1398909,Sarah Finlay +1208806,Miguel Ángel García +1545628,Kelly Lyon +137530,Katsuya Susaki +1562468,Jessica Hong +57105,Stephan Schuh +591536,Donald Ford +1362048,Jean Grault +87684,Gianni Romoli +1404194,Michael Chateauneuf +38193,Bernd Böhlich +83658,Ann Harris +1552516,Sarah de Sa Rego +98713,Tim Ritter +1158823,Mathilde Van de Moortel +585785,Drew T. Pierce +1269247,Raymond Wilson +1539310,Desislava Grozdeva +99501,Phillip Guzman +236477,Hugh Hennesy +34197,Adam Armus +1475627,Susan Paley Abramson +1075757,Cédric Melon +1692496,Fawn McDonald +1780168,Benjamin Leutgeb +1489810,Dru White +113657,James C. Pratt +1520109,Woodrow Truesmith +25622,Yoshikazu Yasuhiko +1826877,Andrei Eshpai +70798,Walter Fredersdorf +1830874,Daphne Hayes +1262606,H Devere Stacpoole +1449422,Svetlana Gviniashvili +1829867,Tessa Phillips +930439,Robert Martsch +226704,Natalya Uglitskikh +1313058,Ivy Thaide +1070460,Henri Sala +1363170,Doro Vlado Hreljanovic +1136036,Zacarías Urbiola +1272999,Joe Randall- Cutler +231509,Jin-ah Kim +1361546,Kiah Roache-Turner +502616,Jonathan Schwartz +1037774,Erik Mauck +1776962,Akihiko Okamoto +1403411,Lucas Bielan +112498,Dennis Stuart Murphy +1178906,Fu Chi +203310,Victor Dal Chele +1282004,Tomasz Gassowski +233998,Sven Bohse +1570596,Claire Callway +1896775,Stewart Grayburn +1351756,Michel Klein +1190278,Rob Arrowsmith +94210,Annie M.G. Schmidt +96412,Ray Connolly +126274,Akihiro Hirasawa +1844351,Monica Pearce +1479443,Bill Harmon +1459938,Andrés Leal Chele +1007753,James Gibbon +1594175,Ebony Maitland +1347880,Birgit Demidova +21022,James Patterson +237973,Kalpathi S Aghoram +1733636,Lori Fischburg +1725561,Csaba Benedek +30669,Don Banks +1056032,Mike O'Connor +1496661,Renée Rosenfeld +1318704,Alik Sakharov +1312057,Claire Burger +95859,Julian Zimet +1824273,Milla Wilcock +1304597,Sukyeon Lee +1771617,Ben Pollack +1444292,Marco Foglia +1572965,Chun Hin Yiu +40484,Natalie Lambsdorff +1028513,Suphi Tekniker +1730004,Will McGillivray +1264231,Adam Wimpenny +1150389,Albert Valentin +1665952,Joram van Hartingsveldt +1762265,Patrick Dal Cin +565299,Mikhail Libin +1224355,Jeff Howard +116431,David A.R. White +1155292,Andi Rianto +1707412,Zeca Seabra +1595114,Kahéna Attia +1855828,Neichols Alice +1551704,Cecil O'Connor +1589835,Nicole DeMasi +151126,J. P. Martin +56503,Andrew Strahorn +1635163,Miranda Jones +60471,Marc D. Evans +1472149,Christopher J. Morris +1425411,Nuria Mbomio +1657550,Walter Arrighetti +1327178,Camille Argus +1780182,Liza Grebenstein +21872,William Ferrari +1057049,Ayananka Bose +1542740,Ashley McEntee +1203509,Tullio De Piscopo +1814959,Kim Randall +1835299,Grace Roulston +1309860,Thomas B. Fore +149125,Dominic James +935867,Kalle Chydenius +1690332,Miloslav Procházka +97287,James Benson Nablo +584973,Pepi Sekulič +1518292,Ilya Motyleff +935860,Seth Pinkser +1111822,Sam Dickson +9123,Roland de Groot +119464,Bert Granet +1519400,Richard Ramee +227082,Victoria Dadi +1758922,Fiorenzo Magli +75134,Michael Gudinski +1329530,Danajean Cicerchi +1693200,Simon Phillips +1321937,Isaac Han +1307600,Addison Heath +1547203,Erik Pampel +87681,Tiziano Sclavi +1564108,Thomas Markwick +589168,Reinert Kiil +578724,Stacy Kelly +1400608,Becca Brooks Morrin +1479523,Brecht Debaene +1320690,Süleyman Karakaya +66204,Millie Moore +1049277,Đorđe Milosavljević +143144,Raul Ferrão +1428872,James Carroll +103694,Eva Ilona Brzeski +1192400,Mitsuru Otsuka +1797890,Sam Walsh +56470,Javier Fesser +1357047,Aric Cheng +1392170,Mikael Sandgren +1128336,Richard Irvine +1357684,Vincas Sruoginis +147712,David A. Newman +1771614,Paige Williams +1562550,Karll Panaka +1350261,Shelly Stoyanova +1646552,Julien Dubusset +1401857,Phillip Dawe +1511601,Maria Andrea Rangel +1324226,Dídac Bono +1041610,Michael Ebmeyer +66510,John Aboud +1416171,Erik De Boer +1317870,Toshiaki Ozawa +1568823,Jennifer Morden +1688251,Angelo Nicolini +1076360,Brett Hess +1409874,Slobodan Gojkovic +41349,Michael Preece +589230,Gabe Polsky +47399,Frank Tashlin +1535394,Lottie Abrahams +118297,Earl Snyder +1907226,Charlie Guanci III +1419724,Alexis Lamoureux +34312,Lou Breslow +1527432,Susie Lewis +64823,Desmond Davis +1401144,Omkar Iyer +1338145,Vicky Brazier +1679409,Adrian Gaye +1570532,Jamie Vanadia +115394,Álvaro de Armiñán +1293872,Dorrie Hamilton +125993,Percy Stow +1542373,Phillip Barrett +1649452,Suthee Muenwaja +1341956,Joe Stanley +147777,Erkan Oğur +1447091,Ryan Turpin +1151493,Joey Ostrander +1869709,Saul Rubin +1821421,Benjamin Deboute +1316192,Katie Saunders +85530,R. Balki +1482226,Mark Everson +226748,Yasuko Ôno +1336911,Martin Gant +1444919,Helen Martí Donoghue +1610936,Antonio Muñoz Ravelo +1582593,Craig Sutters +1725776,Curtis Foreman +1084414,Josh Koury +1506359,Kelly Richardson +227083,Kirill Kuzin +1313036,Torben Betts +1797476,Oliver Neck +1841592,Fangge Chen +1660930,Yôichi Mitsuoka +103931,Phil Rosen +1566125,Joe Matke +1312456,Sarah Steinberg Heller +1462090,Joe Lee +1619745,Ebonee Atkins +28445,Niki Stein +936236,Harrison Smith +58252,Roberto A. Quezada +1565837,Jan-Erik Lundberg +1115621,Mick Campbell +1475286,Jayne Baron Sherman +132498,Masatoshi Matsue +1209188,Marek Wieser +937535,Giuliano Papi +1470707,Derrek Jones +1600186,Roland Manuel +231199,Axelle Carolyn +1718981,Kris Redding +1171244,Henry Kline +227205,Wajid Ali +1334500,Salvatore Alonzo +1538323,Paul Murry +1431610,Pierre Bonhomme +1228866,Michael Spound +1465952,David Campbell-Bell +1530399,Hidehisa Suzuki +933013,Jonathan Ogilvie +1569341,Alan Wilson +1481489,Iván Cuevas +1152353,Emmanuelle Prévost +142267,Robert Barrett +125681,Krisztina Goda +1797510,Lowman Pauling +79626,John Metcalfe +1661402,Gabriel Vargas +1094539,Akihiro Noguchi +130524,Stephen Burke +1168581,Ryan Oxford +1538842,Miranda Flinn +939361,John McClain +1447945,Paul Marini +991016,Margaret Matheson +1646571,Gael Hollard +1903923,Jonathan Opgenhaffen +1687734,Konstantin Shevelyov +1851190,Jonathan Blumenthal +947243,Darryl Taja +1399105,Jarret Blinkhorn +1148513,Bernd Sahling +1338845,Michal Holubec +1601945,Jay Longino +1327840,"Thøger Birkeland," +1621861,Julia Laftsidis +1374167,Willie Botha +168383,Kayla Alpert +1079598,Jim Beggarly +1661273,Robin Hanley +959442,Guy Heeley +1077697,John Parsons Peditto +1290687,Patrick McClung +1455530,Jess Morris +1086408,Sean Garrity +1660967,Matthew Herrier +1634779,Stephen Lawrence +969704,Jonathan Amos +1302517,Kat Laskey +1479531,David Talloy Thomas +1008332,Kumar Sadhuram Taurani +60353,Jan Fehse +27845,Vitaliano Brancati +1529744,Katsutarô Hanaoka +1685996,Chris Murphy +1428127,Lynne K. Eagan +929899,Edoardo de Angelis +1504487,Domenico Salvaggio +1419633,Bumi Hidaka +19348,Lars Vestergaard +1617321,Stefan Gärtner +40399,Earle Hagen +1374792,Attila Bilik +1453654,Ramiro Ruiz +228282,Philippe Gagnon +1622822,Christian Tröger +18845,Louis de Bernières +1318446,Grayson Matthews +563694,Melanie De Klerk +1084987,Patrick Bancarel +1472431,Roberts Vinovskis +1619542,Ronald Buck +1279652,Casey Twenter +1642293,Gustav Roger +1293567,Ismet Prcic +155152,Jason Loftus +1190199,Jack Ng Wai-Lun +20713,Olivier Bernet +1757634,Tyler Heath +9245,Nicola Piovani +71063,Patrick Tam Kar-Ming +1405258,Florian Mohn +1392661,Susie Jones +1545978,Sze Jia Eng +1717846,Jim Fleming +1739847,Bryant Mock +1207757,Lyle Vincent +91376,Charlie Nguyễn +1675116,Richard Smith +956352,Dan Wigutow +1310722,Javier Braier +1547232,Erin Sahlstrom +1814973,Tara Andrus +1410598,Luc Froehlicher +1898925,Julie Lucas +1459859,Matteo Silvi +116923,Trivikram Srinivas +1028359,Eiichi Taji +64491,Zheng Zhiliang +1192754,Peter Landesman +968603,Geoff Ashenhurst +90416,Sam Reinis +1661102,Al Morgan +1573466,Paul Mills +36224,Michael Bonvillain +1554033,Harry Humphries +1211345,Cory VanDenBos +1799670,Woo-Kyung Jung +81143,Alexis Quentin +1018785,George Owen +559404,Christopher Hool +1179841,Daniel Wohl +1460607,Kevin Webb +1178268,Ziad Jamal +586317,Thierry Binisti +1108746,Ronald Gilbert +1195528,Antonio Ripoll +1288712,John Magary +1548032,Tania Pacheco +1338151,Aleksandr Gruzdev +111580,Tiffany Thayer +88467,Claudio Cupellini +929205,Roland Pertwee +1817456,Mo Talaba +1518453,Aaron Barnett +1140274,Doris Lessing +1502630,Ashley Ingram +1146385,Willie Ito +1495858,Peter Purcell +1815823,John Slade +1317674,David Huang +1085179,Andrew J. Cohen +1706712,Mike F. Hedayati +1876735,Sarah Dignan +127439,Sze-To Cheuk-Hon +1570601,William Chang +1618876,Nikki Dalmau +1401136,Tim Rakoczy +53795,Robert Hichens +35327,Ilana Frank +1851875,Shadow +1531100,Kerri Roggio +1377422,Milton C. Burrow +1326173,Joon-Ho Park +190762,Henry F. Greenberg +1079368,Rick Alverson +1457935,Michael Queen +1423836,Justin Gavejian +968817,Pierre Proner +1248264,Riku Sanjo +1460356,Patricia DiGiacomo +94049,Dennis Law +1780191,Christian Kemske +1408382,Kristopher Wright +1821892,Skylar Gorrell +1192405,Atsuki Sato +1515361,Philippe Lesage +89817,Takaaki Hirao +1650283,François Tiberghien +120388,Harry M. Popkin +60929,Lara Breay +92437,Paul A. Birkett +191939,Kevin O'Brien +107744,Thomas Moldestad +1645541,Miriam Sabo +22071,Oneita Parker +1363226,Jayson Thiessen +1853681,András Szurdi +938102,Anne Kurtzman +1459735,Mitja Rabar +1171039,Valentin Vaala +1725769,P.J. Tobyansen +1394071,Kirsty Griffin +1731651,Diana Rice +1120595,Sergio Rubini +1043365,Meral Efe +1632930,James S. Thomson +1174098,Diaz +1468624,Joe Rossi +1397073,Marco Sticchi +1602264,Rajat Arora +1630973,Derek Grime +1012907,Anja Fromm +23858,Harley Cokeliss +1217177,Kent Bateman +1824234,Michele Ottaggio +1803894,Bálint Sárosi +1456606,Masaaki Endo +79812,Agnes Johansen +1347927,Serge Colbert +69218,Lorenz Stassen +1442267,Genevieve Monteilh +1445373,Jag Gundu +1372203,Jacenda Burkett +1706704,Stephen Tappin +25895,Koldo Zuazua +1622328,Tomasz Sosnowski +224960,Ed Graves +1413908,Michel Monier +928285,Jeff Adachi +116986,Jerry Hopper +65814,Barry Brooker +1601461,Giorgos Nikolakopoulos +1002582,Andy Spade +1718139,Reshmaa Kadakia +37640,Vincent Montrobert +1568370,Jonathan Willis +179266,Alex Epstein +1265580,Angélique Nachon +1121522,Hubert Lampo +1512551,Jirí Brdecka +1403839,Parag Kulkarni +1657572,Sabrina Castro +1476361,Paul Dennis +995513,Max Zähle +94457,Terry Dougas +1647018,Charles Christopher +1517369,Lauri Elo +1424588,Torgny Amdam +1406190,Paul Apted +1265105,Zhora Kryzhovnikov +226168,Sigrid Undset +234103,Markus Imboden +237770,Miguel Faria Jr. +195858,Bill Svanoe +1576810,Nicolas Tran-Trong +1772143,Dmitri Korzhikhin +131617,Banksy +1288790,Mikhail Savin +224520,Francesca Marciano +563079,Marc Levie +17535,François Emmanuelli +56630,Nigel Thomas +20743,Gigi Pritzker +1531091,Daniel Cruden +1365902,Guri Giæver +90783,Michael Mahoney +1331893,Alejandro Fernández +1536617,Leszek Wajda +1714331,Pablo Atienza +1621106,Choi Ah-reum +158967,Sean Roche +1797886,Andrew Michael Fletcher +1777258,J. Čepel +931481,Matt L. Lockhart +571552,Kiyoshi Hasegawa +69845,Robert Budreau +138872,Pipsan Ayotte +57184,Benjamin von Stuckrad-Barre +1437145,Zoe White +965809,Andrew Drazek +53804,Marcus Sakey +72967,Leo Severino +1231953,Bernard Sahlins +1545912,Abderrahim Benkhayi +1291116,Pau Esteve Birba +1441227,Neeta Lulla +6527,Miguel Ángel Hernando Trillo +1816778,Toshihiro Maeda +56915,Teun Hilte +1393281,Tracy Moseley +1037369,James Williamson +1085926,Renato Savino +1574320,Serdar Yemisci +1499810,David Hunt +1793203,Damian Bao +1438456,Emanuele Perez +1780144,Jürgen Sitzer +1433892,Roger Sword +1576628,Frank McKelvey +1328703,Nissim Dayan +1322096,Thomas Gomez Durham +1707964,Ross Angelo +21783,Edward Scaife +96557,Ryosuke Hashiguchi +1327891,Sarah Black +64421,Kin Chung Chan +1058165,Andreas Roald +71954,Joel Hladecek +931384,Hiroshi Murai +1341519,Stephanie Johnson +5097,Peter Rommel +1700431,Grayson Sanders +1519294,Jörn Seifert +1141548,Alfonso Trinidad +1484195,Paul Taylor +1540773,G. B. Venkatesh +1775636,Daniel Martins +1565617,Vishwas Joshi +1056030,Anthony Lacavera +1825881,Tom Cohan +1466851,João Matos Silva +932947,Stefano Grosso +1688358,Miguel Ángel Lumaldo +1326475,Bryan Bieber +1864625,Harm Bredero +1441199,Gisella Perl +1616542,Oscar Capponi +1417864,Michael Ezell +1455517,Rajavel Olhiveeran +1584369,Shami Lang-Rinderspacher +99511,Duccio Tessari +1526973,Julie Anna Kehoe +1573016,Robert John Dubiel +1622455,Tatjana Lipanovic +45437,Andy Collins +1440312,Heidi Falconer +75868,Gabrielle Savage Dockterman +1303424,Georgy Malkov +140249,Robert Dyke +1881553,Maria Missios +553112,Teru Miyamoto +1426066,Pedro Equi +1398538,W.H. Lindop +138791,Zachary Catania +148359,Vishnuvardhan +1799714,Massimo Monachini +74826,Marvin Towns Jr. +129896,Rithy Panh +1315941,Brooke Blair +1559678,Pascale Deschênes +1427959,Sarah Maiorino +125281,Florin Şerban +1456316,Nathalie Garon +1098633,Thomas Saignes +112752,Kim Yong-gyun +1466258,Phil Witcomb +1403654,Krisztian Majdik +1805792,Daniel Bower +1456630,Masafumi Yokota +1180862,Sérgio Oliveira +1208802,Hernán Jabes +1516536,Deborah Goldstein +1425367,Shanthi Nadaraja +1494208,Peter Gulla +1847717,Juan Riva +1162040,Naoko Takeuchi +45666,Biber Gullatz +1872768,Steven Van Der Zalm +86482,Mark Tonderai +1271292,Mariana Contreras +1773775,Michaël Wallet +1642548,Dinesh Kumar +85231,Stere Gulea +1523452,Joe Warson +41540,Paul Burns +1583097,Attila Pfeffer +1687126,Ralph Sarabia +1019955,Shyam Ramsay +1460387,Evgeniy Shelyakin +1057785,Camilla-Valentine Isola +1539033,Charles Althouse +1102066,Diarmuid McKeown +1630978,Anthony Filipetto +1357009,Sidi Larbi Cherkaoui +21395,Roe Baker +280833,Dennis C. Lewiston +575443,Gülümser Gürtunca +1320860,Guerric Catala +1341741,Mark Curtis +84425,Eric Toledano +52597,Neil Meron +1354686,Naji Abu Nowar +1168793,Andy McDonough +1509662,Jeffrey Donnelly +1197740,Klaas de Jong +1049322,Paul J. Diller +26710,Mario Mariani +1573203,Bob Richman +101866,Prem Pillai +97542,Neil Willenson +1294674,Sylvain Bellemare +1542363,Georges Rodi +405825,Jonathan Southard +1622811,Eileen Byrne +584146,Markus Imhoof +1854470,Wayne Santoni +112370,Jon Joffin +1138365,Jerry Rapp +989144,Lawrence Eastwood +1401176,Margareta Stefan +1688327,Giancarlo Capuani +1297710,Tilo Busch +1298625,Cory Geryak +22324,Alistair MacLean-Clark +1714330,Diego Macho Gómez +1420863,Abigail Metcalfe +1491851,Paola Trulin +1327329,Vakkantham Vamsi +1575332,David Kruta +1415334,Paige Reeves +1504572,Liis Nimik +939274,James Grant Goldin +24086,Rolf Basedow +1707854,Claudia Jöst +1530395,Nobuo Miura +1408386,Stuart Farley +1366289,Musa Brooker +257213,Serge Meynard +1389667,Barry Gilmore +158596,Alex Ferguson +577617,Jonathon Millman +52576,José Padilha +1610610,Roshan N G +84748,Seiji Chiba +140458,Stephen Kandel +1099736,Jessica Kehrhahn +593082,Juuli Niemi +232190,U. Roberto Romano +79116,Monica O'Brien +25562,Rose Tobias Shaw +1480652,Melvin Quiñones +29060,Ethel Robins Richards +1423830,Jasmine Garnet +1630968,Kathleen Hanley +1325161,Nar Sene +1116331,Marty Pepper +1833734,Arshad Khan +1099843,Julia Hapney +1429331,Kerry Spurrell +238625,Natalia Angelova +1156997,Bjørn Ståle Bratberg +1332320,Tarô Gotô +1880910,Eric Putzer +113126,Lafleche Dumais +1113689,Harry Coswick +1063685,Ruben Ramos +1489249,Lynsay Richardson +1320301,Ari Lantos +120531,Earl Derr Biggers +1315942,Will Blair +1021155,Asim Nuraney +1752037,Antonio Pantano +1113512,Arthur Cavanaugh +1516882,Dimitri Merkoulov +1426197,Andrei Konst +217642,Roy Minton +1699957,Leone Frollo +225974,Rob Gibbs +1444768,Terence Koh +1739313,Bruno Nicko +1506928,Enrique Molinero +1399033,Shaun O'Dell +1024837,Eric Brenner +1621898,Julyan Giraux +132519,Daichi Ichihara +1405335,Jon Edwards +1106692,Mads Heldtberg +1581511,Michael Perlmutter +1565827,Kjeld Simonsen +1342697,Kenichi Suzuki +1620690,Dimitris Hatzivogiatzis +1822615,Les Franck +1665461,Emily Zimmer +226462,T.J. Sakasegawa +1662226,Nicholas de Pencier +40007,John Mackenzie +1645542,Elisabeth Schelte +1386329,Brett Hamann +1134301,Olivier Babinet +1489788,Ben Snyder +1770856,Taylor Stewart +1368486,Riel Roch Decter +1325729,Pablo Alén +1862936,Eileen Winterkorn +1350674,Iván Dariel Ortiz +393389,Banjiro Uemura +35561,Brad Keller +1873048,Mathias Berggren +1050912,Auraeus Solito +65937,Jussi Tegelman +1450983,James Sathre +1006459,Sidney Stone +94229,Glenn Gaylord +1453487,Adam Fisher +1309564,Kristian Brodie +173625,Bob Matz +1512747,Laura Hastings-Smith +558166,Tom Heuzenroeder +1635736,Martin Jørgensen Edelsteen +1642889,Ben Wilkinson +1106519,Mathias Boucard +1088218,Rune Moberg +113525,Richard Robbins +550483,Ray Eames +70042,Brad Blackbourn +96128,Leo Won +1352597,Micky Blythe +1179379,Brian Cox +1825844,Steve Wolke +93386,Tony Hiles +1801113,Andy Surry +1717428,Els Rientjes +1188735,Christoph Behl +1583398,Mark Nelson +1446042,Şebnem Burcuoğlu +1884344,Patricia Brolsma +1642553,Serina Tixeria +69085,Dalparan +1427461,Michael Newton +1184547,Wojciech Golczewski +478882,Sonia Peng +1723490,Shammi Saini +43803,Brian West +1167112,David S. Olivas +1779185,Kristian Skar Frøysaa +1117103,Jill Witte +187,Tensai Okamura +1003944,Dan Hageman +55018,Karim Aïnouz +1146103,Dan Shefelman +1676763,Calen Cooper +1407253,Camila Gaona +1455503,Ian Mclaughlin +96726,Benjamin H. Kline +1638157,Michelle Tang +1632797,Erwin Landau +1609040,Steve McBride +1489396,Svetlana Titova +1544341,Carrie Holt de Lama +1561043,Gerardo José Vega +1042835,Young-jong Lee +1401131,Ken Gaston-Kilgore +1337629,Leah Koransky +1824205,Sarra 'Na +29330,Harry Sukman +2767,Irving Shulman +1099074,Allen Shapiro +1362475,Patrice Lucien Cochet +1344831,Tara Blume +1855860,Rémi Ducharme +1497974,Cristina Villar +1375244,Frances Soeder +228358,E. Bardet +1425887,Nelle Nugent +1227885,Dearbhla Walsh +1117905,Aleksandr Polynnikov +556717,Filippo Gravino +111416,Richard L. Bare +1815551,Wallace Simonsen +85712,Rajendra Rao +1079085,Sue Harding +1337978,Stefano Sciascia +213443,Andrew Cheuk +1399469,Ted Chu +1405323,Bruno Vatin +1506441,Idoia Esteban +1777032,Maxine Bergen +136391,John Gregory +1565841,Anna-Lena Fries +1574043,Jason T. Clark +1759725,Alex Garcia +1676798,Jack Studeny Finlay +115732,Ian McCrudden +1298942,Antonio Benetti +1548436,Budd Granoff +1453007,Laura Anderson +1551914,Paul Round +1113209,Eugene Poddany +1601699,Vladimir Stankovic +94048,Sean Buckley +1411365,Carlos Ruiz Boceta +15083,Sebastian Blenkov +1574084,Karen Payne +1604538,George Mills +1621911,Thi Thanh Tu Nguyen +1081148,Ramon Sarmiento +1699011,Ganesh Raj +1542337,Cosmin Sarbulescu +1411067,Maralyn Sherman +1643183,Constantinos Papageorgiou +1818741,Benny Winkler +1729085,Nick Bellofatto +1580860,Thibaud Galbois +1533585,Amber Wakefield +1906520,Subrata Chakraborthy +1649451,Somboon Piriyapukdeekul +1374159,China Åhlander +1759768,Gary J. Dodd +1413891,Randy Boliver +1642599,Bear Siung +1394148,Howard Thompson +1857585,Alexa Aroesty +555501,Yevgeny Yufit +1337393,Gary Jopling +1874669,Vivian Kleiman +979698,Neal Callow +550227,Orhan Aksoy +1426727,Bill Ives +1083163,David Agosto +557603,Ricardo Trogi +133398,Quentin Dupieux +236590,Giovanni Canevari +1127304,Laurence Trimble +1785027,Premsanker S +1395434,David Meyer +1329072,Feliksas Abrukauskas +1530218,Hauke Richter +23296,Thierry Leproust +1483140,Rob Shears +153323,Allen H. Miner +1404738,Richard Wilson +126882,Declan O'Brien +99496,Raymond De Felitta +67578,Billy Dickson +1059261,Norman Lee +1001703,Kerry Williamson +1819168,Mollie O'Hare +1680201,V. Maslov +887794,Geoff Marslett +1170106,Anthony Chen +46282,Peter Stuart +1335496,Alex Mechanik +45900,Andreas Weidinger +1825454,Matt Sigmon +34170,Frank R. Strayer +1521110,Michelle Wade Byrd +1701889,Rodolfo Barreras +1430988,Heide Kacser +1790024,Bogdan Iofciulescu +31253,Aben Kandel +1397714,Rebecca Green +1229204,Sara Seidman +1371916,Mark Lowry +1445896,Michael McDermott +80709,Kazuo Mori +1127738,Richard Berg +1653481,Bhav Dhulia +238620,Dmitry Katkhanov +1869375,Wahid Ibn Reza +1379045,Lisa Rust +1574433,Dan A.R. Kelly +1820515,Rachel Lisa +1046160,Eli Bush +1552333,Mark Hagerman +1409401,Fericean Cosmin +1755492,Veera Kapur +1293636,Yeonghwan Choe +1841610,Walter J. Wiacek +1158265,Peter Høimark +583777,Amos Oz +1172464,Jeremy Berg +930990,Bill Chesley +71851,Chris Parker +1764796,Suhaili Shukoor +1441219,Janessa Hitsman +1319162,Jen Drake +147531,Steffen Haars +1828327,Anya Taraboulsy +1519553,Julia Flores +1741411,Sergi Bartrolí +62588,Nicholas Stamos +1419628,Jason Rodriguez +999559,Debbi Slater +67077,Kôji Hoshino +1554387,Jeremiah Sweeney +1358025,Nicoletta Mani +1163670,James B. Gordon +1562712,Martha Adams +1618805,Joe Rudge +1056060,Zach Clark +1717752,Giancarlo Canavesio +1465990,Malcolm Roberts +1474926,Masahiro Aida +222578,Fred Moore +1086310,Mitchell Lifton +1707414,Chris Endicott +1614894,Sung Rae Cho +1065513,Daryl Bennett +40985,Franz Höllering +568078,Oskari Sipola +55641,Marty Simon +1584373,Manuel Rubio Najera +1388089,David Simone +1097762,Reggie Morris +1729046,Rebecca Vujanovic +1638553,Riki Butland +1463395,Steve Orlando +1402530,Phil Hadaway +1326742,Paula Dunfield +1038313,Thomas Spence +1600994,Leo Jahn +1112002,Jeroen Berkvens +134565,Dafydd Archard +1426134,Alan Raymond +1419925,Beatrice Bellino +1789564,Chyna Richardson +588022,Hosimin +1202100,F.E. Sillanpää +1039415,Harold Vaughn Taylor +567322,Ferran Monje +1634426,Michael Kaleta +50740,Nico Ducci +1729086,Michael Dias +166754,Abe Forsythe +1716004,Nicole Bou-Samra +236845,Mary E. Brown +1525326,Sergey Dovlatov +1391691,Ken Dailey +55179,Maryam Decter +1459922,James Rustad +1733799,Claire Skowronek +182213,Marcus Young +1829862,Brad Silby +1411240,Peter Harris +32778,Edward Schreiber +1640823,Polly Fehily +34172,Chic Young +1187024,Nick Zinner +129562,Johnny Kevorkian +1512668,Benjamin Kracun +1814933,Sunny Levine +1520689,Diane Hammond +1401143,Sarah Fricker +1680437,Sarah Martin +77815,Joseph Cedar +1383057,Sasha Gordon +1435170,Chris Donlon +1512770,Christine Seznec +85652,Ranko Božić +117098,Margery Williams +1435172,Lanie Faith Marie Overton +1314895,Kelsey Hart +1133294,Craig Borten +1582471,Jessica Zavala +1683373,Justin A. Williams +1396801,Ajoy Mani +103509,Eloy de la Iglesia +1657570,Daniel Aspromonte +1862949,Ron Nix Jr. +5509,Wolfgang Kohlhaase +144602,Matthew O'Connor +104659,Lane Shefter Bishop +1411842,Richard Latham +228590,Nayan Padrai +1536211,Benoit Touchette +1074624,Conor Horgan +1037296,Dylan C. Brown +1381419,Radek Ladczuk +1365541,Matthew Lambourn +77705,Kenneth Mak +148508,George Landy +40184,Philip Leacock +1814581,Holly Isaacson +1774227,Amy Taylor +1030154,Justine Nagan +1335138,Mina Burić +1741059,Micheal Jones +1413568,Paolo Frascà +139991,Jan Aksel Angeltvedt +224550,Les Goldman +1392979,Monte Silver +1427781,Colin Yardley +1466259,Mike Archer +34768,Nils Svenwall +1485276,Kevin Derek +1143007,Liza Grant +1350244,Eric D. Christensen +94460,Shara Kay +1660728,Brooke Storry +1605450,Salim Shehade +1727613,Eric Blanckaert +1373708,Pollyanna Seath +1408372,Stephen G. Shifflette +100327,Marquis de Sade +128432,Luigi Bazzoni +1552003,David Shojai +1306186,Eva Slívová +138854,Lars Saabye Christensen +106770,Robert Guenette +1525143,Sarah Schachner +1417822,Reuben Lloyd-Pack +1640710,Lyubomira Mladenova +98784,Marco Vicario +1779184,Oskar Dahlsbakken +1743942,Mauro Masciocchi +108129,Lang Elliott +1110926,Louis Alvarez +1796911,Vanessa Carr +964702,Christian Tureaud +1785950,Kerrie Lloyd +1849140,Philippe Desfretier +1351805,Anji Carroll +144124,James Van Trees +1367652,Benjamin Ageorges +34880,Arjan Eekels +202174,Alan James +1555470,Derek McLane +1761890,Jukka Vikberg +1262343,Jonathan Rudak +70258,Mildred Cram +1178112,Bill Larkin +1539295,Gemma James +222360,Alex Ward +1171446,Michel La Veaux +229275,Leena Yadav +1421964,Eduardo Scarpetta +1319218,Makoto Furukawa +139064,Ann Howard Creel +1792021,Mika Braun +1825452,Frank Blake +1669846,Hulda Helgadóttir +1775625,Christopher Zitterbart +1002030,Kwon Chil-in +33535,Don Christensen +1732149,Ted Gesing +1453671,Brandon Terry +1676432,Suketu Mehta +1384683,Sergey Mokhnachev +1830585,Saburô Mutô +1338960,Juan Borrell +1193917,Hanneke Schutte +1185124,Toshiyasu Morita +558267,Pharrell Williams +1646568,Olivier Gravel +1451580,Lauren Wolf +75828,Hartley Gorenstein +1780478,Steve HyunSuk Suh +57838,Rainer Mockert +1501947,Jean-Nicolas Leupi +230049,Oliver Dommenget +1493202,Joe Bolster +84770,Cuca Canals +1033140,Bart Van Langendonck +1134196,Erwin van den Eshof +1489751,Saubhik Das +1791597,Yvonne Stenberg +1777250,Josef Zeman +1279145,Derek Parsons +1419916,Carmen Cárdenas +1406281,Luis Lopez DeVictoria +1421249,Israel Seoane +22500,Lee Buddah +1622323,Heather Fischer +1279865,Amy Albany +1645583,Wicky V. Olindo +1104957,Egil Ødegård +930953,Dean Fisher +1320985,Andre Coutu +1295587,Pierre Rimbert +1421618,Terence Brody +1142662,Michael Hardinger +1451525,Marli Kruger +1425826,Erik Lang +128029,Satsuo Yamamoto +1292777,Jay Todd +1059053,Phil James +1672754,Ted Schillinger +1329405,Alyssa King +197872,Joshua Fardon +1053570,Jeffrey D'Alessio +1847625,Eric Lagesse +1531787,Jamie Donoughue +1359002,Willem Frederik Hermans +1489165,Thananop Bhalbulaya +1297580,Jo Molitoris +1586589,Gábor Marinov +1559679,Jean-Luc Lagarce +1333664,Philippa Culpepper +1147706,Jimina Sabadú +1738106,Tyler Woeste +586103,Luiso Berdejo +233065,Kumaar +1147178,Rebecca Swanson +34131,George Robotham +1227826,Paul Annett +1411132,Rob Llewellyn +1869366,Olivia Evelyn +1866283,Ron Wallekers +1761889,Eero Toivinen +1542582,Toku Sakuma +82351,Henrik Ruben Genz +1447388,Daniele Zannone +1313165,Bugs Moran +1288710,Leah Meyerhoff +1367925,Chris Keyland +495529,Stellan Claësson +1590203,Alaine Huntington +1372204,Juliet Guimont +1535105,Patty Majorczak-Connolly +1046971,Ted Gidlow +1404199,Jennifer Bender +1423424,Alan Bailey +21467,Richard Marvin +1143462,Koldo Idígoras +1600873,Pink Box +1797110,Scott Lazar +1425481,Mike Dowson +41723,Robert Marciniak +1719400,Chris Contogouris +1123792,Nina Bjerch Andresen +1603646,Eray Kantarci +1384375,Max Leonard +1116279,Thomas M. Kastelz +1118711,Kenji Katori +203666,Zach Carter +1292309,Shunsuke Saito +1622451,Adam Coles +151569,Myles Wilder +134945,Gian Paolo Cugno +211391,Daniel Hart +1792358,Scott Bruzenak +1005735,James Martin +1142664,Rasmus Schwenger +1272639,Nishant Khanna +1415632,Daniel C. Gold +1462281,Steven Bramson +986687,Mark Harris +60838,Kami Naghdi +27451,Ghislain Barrois +1419622,Brenda Renfroe +1190103,Keely Crum +1384373,Tim Crosbie +1769663,Riitta Poikselkä +134164,Maximilián Remeň +1149583,BJ McDonnell +1300561,Landon J. Napoleon +1050973,Peter O'Donnell +1704834,Nilesh Sawant +78600,Jordan Roberts +1142742,Tom Bradby +1677763,Thomas Roßbach +15519,David Kyle +1349785,Joachim Hedén +113271,Gwyneth Hughes +1488793,Kotagiri Venkateswara Rao +1412598,Philip Spurvey +1331169,Christopher Herghelegiu +1374463,Caroline Reynaud +1674915,Preeti Mamgain +589184,Daniel Lewis +1147821,Tito Buffolini +1590932,Tíbor Reves +1548942,David Butterworth +19295,Matthew Justice +235142,Danny Cohen-Solal +1840493,Lisa Perone +1227585,Jon Colton Barry +1651537,Anders Muammar +50027,Annette Trumel +1349971,Sergio De Luca +158401,Tyler Thompson +74396,Tomas Alfredson +1575330,Dayna Ghiraldi +1489785,Izabella Tzenkova +1559674,Sylvain Brassard +1393777,Sean Frechette +1518773,Charl Boettger +1173857,Catharina Nyqvist Ehrnrooth +127922,Carry Slee +1428836,Brant S. Fagan +1195346,Mark Andrew Clark +1800051,Ruth Power +1390116,Andrea Fantoma +1824230,Linda Zirkus +1447493,Simon Rodgers +1588580,Grgur Strujić +1293834,Greg Garthe +1507145,Taylor Chen +1072277,Jean-François Lévesque +1142661,Mohammad-Ali Talebi +29757,Philip Wylie +932762,Jung Sung-il +1331828,Petar Marković +964889,Darren Grodsky +1209324,Brian C. Weed +1085031,Eric Scott Wilson +1635341,Peter Wentzel +1099649,Mary Alice Corton +1050715,Sanjeev Singh +1113449,Brandt Andersen +144536,Shinsuke Sato +127716,Robert Young +1428667,Michael McCracken +1108823,Camrin Agin +1739850,Dustin Coffey +550172,Vetrimaran +1616431,Bianca Martino +1547715,Brad Edwards +1585746,Matthew Wigg +237186,Takayuki Shida +127578,Lorena David +39120,Matthew Rhodes +57740,John David Allen +51482,Philippe Ravoet +1706514,Parker McCabe +1744162,Sanaa Bezzaz +1286585,Rene Yescas +1464772,Ersan Özer +1383817,Caroline Stevens +138291,Yvonne Boudreaux +1461372,Pernell L. Salinas +1384371,Mark Carr +210188,Gérard Jourd'hui +1552399,Eilidh McAllister +1376808,Sue Hills +1676028,Tanvi Gandhi +930982,Rodrigo Cabral +21540,Franco Campanino +1585899,Ric Spencer +1407374,Charles M. Barsamian +1763906,Justin Moretto +27378,Gianni Buffardi +971109,Bobby Ranghelov +1896771,Kathleen Graham +1088682,Perry Bhandal +1461473,Tyler Shields +1703200,Sarah K. Reimers +1405360,Laura Díez Mora +1512111,Anthony Baldino +220051,Arthur Lewis +1580864,Ashley Bliss Miller +137427,Denis Villeneuve +163663,Richard Thompson +1583636,Tina Dyer +1821934,Tyson Lozensky +1371159,Jerzy Mrozewski +1673993,Kensuke Zushi +138869,Herb Abramson +1580847,James Claire +1195386,Anthony Verney +1180568,Giulia Calenda +1272157,Daniel Findlay +59290,Grégory Levasseur +229998,Gabor Vadnay +35490,Nicole Arbusto +39201,Dick Lunn +6249,Franz Szivats +1565105,Jeffrey Dyal +1768941,Sid Yost +1097458,Filip Marczewski +46188,Gyula Trebitsch +1602602,Shimokawahara Tomoo +1643408,Imke Sommerkamp +143630,Roman Kachanov +1071589,Eitan Reuven +996220,Jessie Graff +1083259,Toby Riches +102785,Louis DeWitt +1551771,Ben Wilkinson +1066615,Ishay Mor +993201,Lisa Friedman Bloch +1456615,Tsutomu Kurita +1127476,Alexey Fedorov +166461,Stephen Williams +1073818,Tuuli Kuittinen +1311749,Ross McQueen +1111474,Bryan Mason +1763419,Shashi Suman +77869,David Giancola +928455,Wen Marcoux +1417680,Michael Fitzgerald +1797860,Ray Bogdanovich +106607,Irwin Shaw +1821905,Kevin Luster +137813,Kadri Kõusaar +965568,Flora Fernandez-Marengo +1407339,Nicole Venables +1425608,Jiri Konecny +1707856,Christina Bentlage +103149,Trygve Allister Diesen +590281,Andrea Gyertson Nasfell +229825,Sahin Ersöz +1745141,Blake Wilcox +46122,Philip Øgaard +1179273,Malgosia Turzanska +530882,Erik Weihenmayer +79002,Nacho G. Velilla +1297469,Bertrand Jenny +1570521,Petra Turonova +1523886,Jody Felz +1681851,Valentina Taviani +1436793,Nicolas de Poulpiquet +74089,Steve Burg +579542,Claude Valéry +201439,Christopher Miles +70502,Suzan Harrison +1738131,Jeffrey Steven Brink +1741413,Margalida Obrador +1394412,Cook Allender +132535,Frank Redman +1302342,Mark Stewart +87580,Melissa Gould +1621107,Kim Hyun-chol +1445783,Garen Barsegian +1452228,Jamal Al Adwan +231582,Udit Duseja +1425393,Erin McGookin +1575353,Lyndsey Orr +1595166,Tomi Nieminen +1453519,Teresa Drilling +1176395,Blanca Rodríguez +1521325,Ludmila Tikovská +21477,Michael Goetz +1869363,Monette Dubin +1615326,Sasha Vitelli +1619731,Eric Wegener +1652949,Ian Harris +1459914,Stefano Trivelli +1513812,Courtney Frey +1663163,Nat G. Deverich +78835,Joel Silverman +55690,Tim Firth +149929,Etienne Périer +1400490,Sha-Sha Shiau +89539,John O'Gorman +1461681,Eliot Laurence +32781,Bill Walstrom +1721914,Bruno Kassar +57103,Jaro Messerschmidt +1427802,Steven R. Stevens +1035444,Sarah Boyd +1632795,Dan Coplan +50543,Gabriel Moreno Burgos +1341629,Sanjay Rawal +137485,Hans Syz +1635233,Jesse Carver +1044956,Lloyd Pitts +224519,Tony Liu Chun-Ku +50239,Charles Fox +92604,Bastien Benkhelil +1064994,Sean McAllister +1185066,Fiona Dann +168812,Stephanie Savage +225294,Jerry Daigle +1046612,Bradford Young +1095527,Ken Lamkin +94222,David Pastor +1547214,Freya Krasnow +1458577,Clifton Chippewa +8626,Gerd Oswald +5877,Vincenzo Natali +551463,Mike Flanagan +1465674,Natalya Krimenskaya +1151828,Thomas Grézaud +1236611,Max Werner +1559476,Julian Sykes +6077,Bert Wrede +1399591,Paolo Finotto +593023,Ranjit Kapoor +79104,Xanthe Heubel +1754130,Alfredo Montenegro +36999,Ehud Bleiberg +96695,Albert Pascual +1231927,Colm McCarthy +188162,Russ Parr +1285234,Bob Thielke +95146,David Lemon +1035833,Vicente Villanueva +1621899,Marion Pin +1558712,Ken Shapkin +234478,Abel Ferry +936422,Mark Wolper +1523026,Daniel Holt +56845,Michele Pellegrini +1323142,Meet Bros Anjjan +1707983,Chris Armstrong +80801,Lance Totten +1007737,Andrzej Kostenko +1448262,Stephan Rabold +38055,George Provis +1193464,David Dangin +1413502,Raj Brinder Singh +1869449,Jason Sax +1746437,Victor Pillet +1408294,Shari Ratliff +1099648,Matt Keith +1046155,Spencer Silna +1106887,Beqa Jguburia +1294423,Sandra Gross +1506296,Alisha Silverstein +1404198,Andi Sowers +1801312,Fernando Sirianni +1792344,Sean McCormick +1444305,Thierry Tanguy +1045317,Heidi Murkoff +1663158,Alpharetta Hoffman +1305037,E. Sambas +1421691,John Kohlbrenner +578851,Akhan Satayev +137194,Kevin Deters +148736,Julian Wass +1457950,Todd Harris +22325,Maritha Norstedt +1698855,Gavin Head +21825,Nick Lyon +95917,Cate Hall +1479440,Maurice Singer +29942,Lenka Stefankovicova +1544370,Matthew Bramante +1149988,Kim Min-Sook +1305997,James Twyman +12733,Ladislao Vajda +1423461,Erin O. Kay +1359976,Evgeny Afineevsky +1278040,Corbin Mezner +114352,Maciek Szczerbowski +1313483,Howard Kaplan +565307,Aleksandra Snezhko-Blotskaya +1820245,Marcelo Estévez +152222,Paul Powell +1518782,Justin Ngy Tran +1089974,Jan Veldman +1239154,Chris Convy +44693,Leonard Neubauer +1394712,Sam Demke +15478,Marco Dreckkötter +545795,Hal Seeger +1728461,Natalia Anderson +1286997,Harshavardhan Kulkarni +1418416,Shane Boucher +1852954,Beth Osisek +1551344,Thomas J. Larsen +1414050,Nicole Eckenroad +96500,Lyubov Pushkina +1085294,Sara E. White +1783001,Jay Weber +1636679,Petro Aleksowski +1153037,Laetitia Bouix +1021626,Jo Dong-oh +1018980,Bryan Wizemann +552700,Kadir Balci +1646555,Vincent Forand +1519845,Sara Polonghini +54179,Lucien Balibar +1375751,Daniel Ray +1335157,Nenad Kokot +1426313,Jessica Derhammer +1630616,Rebecca Woodfork +700,Carl-Friedrich Koschnick +1138710,Andrzej Bonarski +1077696,Sara M. Chereskin +140598,Roberto Girault +550305,Maurizio Filardo +1372097,Valerie Harrington +1451785,Kengo Kimura +1869459,Etzel Ecleston +1447571,Travis Witkowski +1288803,Edward Lovelace +113124,Linda Drake +1896720,Sara Brown +1302748,John Quinn +110054,Fredrik Edfeldt +1904065,Kalene Osborne +551495,Kazuo Matsuda +1638160,Siggy Ferstl +120328,Richard Hazard +1647879,Charlie Gruet +937960,Caron Feldman +1193499,Dan Villegas +228251,Brigitte Bugayong +1625845,Jan Saska +34282,Eleanore Griffin +1287627,Ross Jacobson +58862,Clarence Greene +1745,Gene Roddenberry +959460,Axel Hubert +952974,Derek Mazur +1524270,Philip Munger +1160253,Kent Roudebush +1830526,Naomi Yospe +1882870,Patrick Murray +136543,Clint Johnston +1542313,Nino Bedeladze +1482762,Tim Crothers +1589517,Jon Aguirresarobe +1536976,Brian Scott Olds +23406,Ara Katz +1495874,Ivana Rajnvajn +1620085,René Coll +1332188,Jerry Popolis +1725573,Lauren Downey +1567978,Seth Williamson +1024197,M. Coates Webster +1489871,Fernando Florido +1464806,Kevin Manthei +1132599,Plínio Marcos +127552,Marlow De Mardt +148929,Claudio Falconi +1565836,Claes Rosendahl +1839939,Amina Bawa +1195279,João Pedro Bénard +1424154,Jeff Ozimek +1709337,Jason Soudah +1472416,Christian Garcia +128780,Lewis E. Lawes +96861,Stanley Kwan +1324037,Rene Sekula +1056719,Ashley Miller +1532244,Sandra Collier +1585228,Glenn Buhr +1021613,Jan Bosdriesz +1337239,Ace Giancola +1673803,Roger Mainwood +1556479,Ino Bonello +1521344,Sean Ryan +1496080,Jennifer Cascio +967703,Patricio Vega +1870617,Jordan J. Miller +29937,James Wilberger +1462037,Diego Panadisi +1629006,David H. Watkins +1668821,Ruben Feffer +1282922,György Durst +1749869,Pete Corral +1277471,Antonis Kotzias +1151512,Charlotte Betaillole +1524551,Ty Klocke +83393,Kay Thompson +1167321,Borislav Iliev +1302818,Abdel Hai Adib +1859549,Michael Karlin +1099072,Craig Baumgarten +1797422,Yiannis Manolopoulos +1220367,John Glenister +1399461,Diana Shaller +1136101,George Case +1658499,John Gaughan +1004950,Armand Denis +81090,Anthony +1347750,Nicole Greenbaum +82751,Fred F. Sears +1428915,Oliver Loncraine +568019,Park Jin-Pyo +1427838,Marcis Cole +63800,Jacqueline Kelly +939446,David Bramfitt +1242110,Kevin J. Walsh +128043,Andrea Molaioli +1205254,Ernesto Contreras +1330832,Jaime Burke +58054,Joey O'Bryan +1418338,Rebecca Lloyd +1646488,Martin Handfield +1503826,Mike Blomkamp +1262851,Simos Sarketzis +1817517,Ayako Yokoyama +1893594,Mirella Casini +1002647,Cédric Jimenez +130630,Henri Decoin +1074506,Jean Châteauvert +1707022,Jordi Morera +1362645,James Spinney +1350675,Iván Gonzalo Ortiz +35904,Florence Quentin +1061039,Javier van de Couter +51836,François de Lannurien +1805971,Tuukka Ylönen +1369117,Masato Yano +1759741,Carol Quiroz +134415,Dan Franck +1207754,Julie Buck +1420188,Malte Sarnes +1468128,Skye Dent +1433564,Mikhail Idov +1046026,Pierre Pinaud +1785016,Prosit Roy +1790901,Jonathan Marin Socas +143903,Don Pike +980261,Jim O'Rourke +108144,Robert L. Harman +1848857,André Lavenére +932609,Koji Yamamura +1565662,Finola O'Brien +1335545,Meike Maher +1421687,Marc Spicer +233343,Tonino Cervi +1758715,Paco Bardales +1023672,John Doolan +1745738,Josef von Stroheim +1372216,Robbie Friedmann +1845992,Erik Blakemore +1741050,Anne Fratto +960482,Jan Richter-Friis +1017354,Kai Künnemann +115641,Ryuji Miyajima +1738647,Claudio Del Gobbo +123958,Skafti Guðmundsson +550096,Fernanda Cardoso +98967,William Hellfire +1678845,Nasser Cheshmazar +1391386,Larry Mann +1690331,Karel Postrehovsky +1352421,Sean England +1780164,Philipp Enzmann +67166,Donatella Botti +1792025,Annie Grossmann +1402914,Darrin Keough +1331048,Ramesh Ningo +1539140,Earl Rettig +1283028,Yosuke Inagaki +1470847,Karl Degl +1286553,Nick Riedell +1106976,Amandine Taffin +1429478,Ryan Owen Eddleston +1526647,William Bridges +77656,Gary Hustwit +14753,David Siegel +1581412,Christoffer Demby +1268359,Kyôko Nakajima +1006788,Doug Lodato +1571481,Ashley Edwards +1814997,Zeni Zahar +1580463,Ciarán Keenan +1374823,Malte Forssell +419284,Tao Yang +1334489,Dominic Masters +584713,Wolfgang Widerhofer +1390009,Tusco Narcisi +959477,Lee Hunsaker +146801,Martin Guigui +1609021,Jake Martin +1579007,Derek McGinley +216809,Kent Sublette +1555431,Jouni Apajalahti +40239,Milan Kundera +996499,Oliver Kahl +98202,Andreas Schnaas +1780123,Alexia Apostolidou +1646523,Miguel Berube Ouellet +1038895,Nathalie Raoul +1372951,Raimundo Querido +65586,Ralph S. Dietrich +10077,Harold Jack Bloom +1090272,Sharon Rutter +1824238,Elisabetta Tomasso +43405,Magni Ágústsson +1717835,Ivano Varlese +1713833,John Swartz +1090090,Bo Mathorne +1144649,Angelo Cianci +1434598,Jeff Wozniak +1191975,Hrishikesh Hirway +1317730,Daniel Scheinert +1460358,Paula Truman +1772306,Chris Hatcher +1480595,Evan Susser +1457943,Jason Chu +112280,Yoshihiro Nishimura +1429359,Zachary Sieffert +91552,S. Shankar +1147890,Judy Seymour +1493979,Lauren Avinoam +2579,Armand Thirard +1590938,Yôichi Nishikawa +1598444,Simas Gricius +1362521,Jaime Hormazábal +1325120,Rudy Butler +26080,Paul Weber +1657567,Kreigh Carter +1226200,Jon Cooksey +1824978,Chandraji Tharanga Rajakaruna +75210,Steve Smith +1042449,Alexander Motlagh +1245212,Hans Kemna +1411854,Patrick O'Donoghue +23359,Marcello Coscia +1815806,Mark Boyko +288215,Vladimir Popov +1301191,Ivan Bein +989692,Matthew Hannam +201028,Lewis Chesler +1456620,Kazuyoshi Onoda +1411079,Charles Leatherland +1716273,Kevin Flynn +1766024,Marcello Ceccarelli +126258,Jimmy Heung +1423983,Rebecca Gregg +1742981,Dave Staton +1301202,Kim Tae-kyeong +198612,Ellie Kanner +1158776,Antonín Novotný +1586005,Mario Bramonti +1568420,Audrey Hernu +1211204,Johannes Vogel +1759738,Brian Reynolds +1121526,Firmin van Hoeck +1077300,Eadweard Muybridge +1590696,Lindsay George +983022,Patricia McMahon +1117482,David Delrieux +1779301,Vladimir Rodimov +1188361,Gunnar Karlsson +1031823,Wanda Farian +127483,József Gémes +1821870,Jason Altieri +1009003,Wilhelm Meyer-Förster +137423,Jennifer Derwingson +1692498,Barry Chapman +102503,John Monk Saunders +228472,Ron Frank +1209763,Massimiliano Pani +24788,Michel Baudour +1590386,Garrett Lam +1565116,Doug Walshe +1780176,David Wynands +1636677,Maksymilian Michasiów +148152,Ed Love +564082,Francesca Gregorini +1093460,Masao Koga +1896177,Rachel Lund Olson +1705424,Omar Sortijas +1360096,Sean Massey +1028011,René Cardona +46619,Jeb Rosebrook +142952,Steve Isles +1867073,Yuldash Agzamov +1582746,Olga Turrini Bernardoni +128070,Silvano Ambrogi +1726772,Ariela Rotenberg +1341532,David J. Cornfield +124796,Gary Jones +1203564,Robert de Nesle +68427,Brian Easdale +928447,Bruna Papanadrea +56653,Oliver Nommsen +106024,Anthony Balch +83863,Gerald Kargl +1658865,Paul Gelinas +969283,Dave Neustadter +1270225,Alexandre Espigares +1324481,Stephen M. Kelley +1286588,Ozum Bobaroglu +1053409,Temple Abady +1553952,Imogen Lee +1497636,Adam Mendry +1553690,Dimitris Kanellopoulos +1801310,Daniel Tarrab +101751,Aaron Butler +1416452,Dan Green +1415019,Shayne Allen Duhon +138221,Harold Wenstrom +1783003,Harry Aaron +936709,Pia Wickmann +1392975,Everett Blix +558864,H. Perry Horton +202003,Alex Garcia +1209163,A. Michael Colton +1098037,Katherine Fairfax Wright +1761924,Safka Pekkonen +1548959,Louis Paré +591994,Jun Lana +1854741,Siegfried H. Gelke +1646074,Trevor Tuminski +1746442,Matthieu Paugam +1828760,Jeremy Zuckerman +1193911,Steve Morden +1315202,Kazuhiko Seki +35269,Dick Sebast +30059,William Clevinger +1453978,Jeff Driver +1010997,Thomas Chong +1407247,John LaForet +1358730,Luba Medekova-Klein +1533591,Lawrence Davis +1323459,Konstantin Steshik +1367058,Montgomery Blencowe +1724718,Eric Chevallier +1566578,John-Erling H. Fredriksen +86152,Karen Oganesyan +1435907,Sue Fijalkowska +105357,Alexander Hacohen +1638554,Andrea Quaglio +1647034,Griff Partington +1045437,Milena Predić +118292,Stanley Orr +1106985,Garrett K. Schiff +1569348,Mathieu Baptista +1408391,Mark Silk +1434557,Jami Ross +1102491,Karen Casanovas +1063051,Leticia Jorge +1500499,Melanie Oates +545625,Thierry Zéno +74989,Mark Emery Moore +223639,Mari Sakurai +234752,Michael Rissi +1560954,Marty Wolf +1547710,Josh Ickes +1324970,Tito Arevalo +1716005,Adam Brailsford +1401474,Corin Hardy +1569290,Lois Haynie +1581504,Tory Falkenberg +73189,Masaaki Tezuka +1015903,James Edward Barker +1547677,Kristen Leitch +1204243,Greg D'Auria +1230196,Tom Johnson +1658497,Tim Poster +1202164,Lawrence S. Ang +1436534,Jason Hammond +1298873,Luis Felipe Fernandez-Salvador y Campodonico +103589,Arthur Crabtree +1474622,Pippa Bianco +1500902,Sica Schmitz +1762258,Chris Harmsworth +931854,Jonatan Dror +1797863,Kellie Barclay +1394489,Nathan Ross +1053572,Catalaine Knell +1748536,Shelby Schultz +1236098,Phil Savenick +1420190,Florian Kronenberger +1622335,Scott Salvatore Ippolito +1373961,Josh Flanagan +1681430,Tõnu Hiielaid +168277,Gerald Sanford +1247993,Jean-Michel Cousteau +1011204,Stephanie Langhoff +1427685,Micael Preysler +1566580,Silje Rekk +1185526,Max Cuff +1403420,Ed Lipscomb +238766,Didier Grousset +936871,Mady Saks +1185620,André Pellenz +1324390,Justin Barber +239443,Taiji Yabushita +25017,John Dondertman +1399477,Laura Wolford +1126288,Jun Kanzaki +1583203,Lance Barney +1821913,Nicolas Torres +1139404,Laura Archibald +1376401,Alfred Kubin +1642529,Gerard Brady +1745159,Robert O. Moore +1679096,Emilie Orsini +1780142,Sibylle Follmer +24859,Jacques Faber +1870822,Giorgi Leonidze +593165,Rajeev Pandya +1050512,Tadeo Villalba hijo +1465951,Rebecca Pearson +1665253,Chinny Onwugbenu +1423429,Sofie Silberman +1630512,Robert Watts +1084768,Shawn Justice +1152007,Carlos Puga +1336919,Mads Olsen +1396654,Maria Wong Si-Man +47674,Julius Hagen +59946,Robert T. Megginson +966564,Stephen Philipson +1732311,Katie Karas +1774064,Hipólita López +1048636,James Bish +233075,Ashok Lokare +1646478,Marie-Christine Dormier +1459910,Garrett Wilson +1046012,Géza Kaszás +1728494,Christine Berg +1720820,Matt Adams +1057496,Sophie Hyde +1031106,Hermen Ilmer +1785934,Adam Cole +1622445,Tory Metzger +65246,John Nau +1091336,Stacey Jade Smart +1581517,Giles Badger +1204189,Rory Cheyne +1483139,Fabrice Lett +80830,Mike Uguccioni +1181401,Kweku Mandela +1293694,Yumi An +568069,Bengt Andersson +967321,Yoni Brenner +1588326,Shizuo Hirase +1531391,Jonathan Hall +74880,Wilson Mizner +1284262,Elya Ottenberg +1484761,Doug McCullough +1408831,Jean-Pierre Laforce +1537724,Aisling Nairn +1379722,Anthony Di Pietro +1596751,Scott Ramsey +145608,Júlio Bressane +1404759,Terry E. Lewis +1761918,Seppo Alajoki +4453,Thomas Vinterberg +178539,Niner Parikh +572003,Louie Schmitt +99005,Bill Zebub +1444288,Maiko 'Mo' Gomyo +1533490,Martin Ware +136896,Arnold Bennett +550112,René Besson +17423,David Reckziegel +1630279,Mike Bisbe +1179832,Virginia Urreiztieta +1462008,Normand Lemay +55827,Jorge Dória +61994,Donna Cockrell +1539799,Juraj Ocenas +27380,Roberto D'Ettorre Piazzoli +1388881,Peter Devlin +1170372,James Calabrese +1877774,Chiu Wah Lee +1674035,Kid Koala +1000828,Chris Maris +1113618,Udit Narayan +1033634,Ricardo Della Rosa +1754080,Samantha Hawkins +1418629,Yoshio Tamura +1440401,Katalin Lippay +1610191,Rob Hutchins +1695681,Paul Biason +1378139,Brooke Thompson +1123745,Larry Clark +1389038,Michael A. Levine +1570787,Angel Pastrana +81779,James Lipscomb +1334773,Jenda Cipperley +100345,John Francis Dillon +228279,Kimio Yabuki +1192574,Nicolás Ibieta +45192,Werner Schroeter +1636783,Mary C. Rolfes +944714,Deborah Amelon +71291,Monika Buttinger +119234,Jean-François Laguionie +995557,Justin Johnson +116201,Vico Berti +125067,Gregory Doran +1338387,Edward Said +1318885,John Francis Welbanks +1571009,Andrea Craven +928724,Andre Montenegro +555669,Elliot Abbott +1754612,Darcy Wedd +1163077,John H. Secondari +1360366,Eric Piccoli +1373711,Ben Meechan +231709,Alain Boublil +554533,Knox White +60438,Michael Landon Jr. +1097602,Kevin M. Kallberg +1354697,Jamie Duckett +40684,David Leitch +1528011,Nathalie Paquette +1534892,Gianni Corsi +1296420,Natalya Meshchaninova +1636717,Jeff Hinton +1545052,Janina Grosicka +406615,Renato Falcão +1768379,Cindy Smith +1354698,Brett Boulware +1097209,Sandell Stangl +1860041,Oliver Roberts +572055,Eva Broms +460459,Kurt Rauer +1862923,Laura Cartwright +142960,Harvey Frost +1460859,Martin Wing +1280125,Gustav Hrdlička +1556418,Liam Byrne +73066,Eckart Zerzawy +1637883,Joe Fisher +1531101,Gabrielle Smith +236640,Kris Booth +1536210,Laurent Spillemaecker +1816875,Scott Kono +1533023,Tamar Shaham +1646079,Mukesh Pandey +1777262,Václav Soukup +1005953,Rob Tritton +1525823,Giovanni Fiore +127608,Allan Holzman +78971,Jeffrey D. Erb +1708056,Josh Tooth +560181,Niels Ostenfeld +938723,Ole Lund Kirkegaard +61297,Ken Tsumura +1833911,Nicolas Vallet +1766569,B. Prozorov +1003356,Alec Roberts +583477,Brooks Halladay +1492924,Madonna Baptiste +1459728,Kyle Dunlevy +1326460,Mark Swain +1304289,Mary Ann Tanedo +1635221,Christopher Tardieu +566916,Pascal Rémy +1643422,Sonja Fisher +136124,Donald Hyde +1559680,Sinan Saber +97355,Michael Laughlin +1691480,James Nimmers +1418417,Garren Dunbar +84568,Rob Williams +1725135,Rick Jarjoura +1263877,Jorge Dorado +1555745,John Boughtwood +1339213,Jeff Charbonneau +999558,David Mason +549350,Patrick Seymour +95550,Avi Nesher +1548106,Sandra Skora +584711,Markus Glaser +999690,Terry Jackson +1178365,The Wellspring +1653486,Shailja Kejriwal +1460350,Óttar Guðnason +1574448,Loïc Barnier +235105,Maksim Pezhemskiy +1438562,Frédéric Baillehaiche +929984,Julie Christeas +1879690,Jason-Christopher Mayer +86446,Jayson Rothwell +1042809,Petr Vcelicka +1409892,Jason Altshuler +190873,Jessica Hobbs +1174352,Sandie Bompar +1498475,Yui Liang +1560966,Bela Trutz +1677769,Christine Heinrich +51193,Franziska Meletzky +18492,José Rivera +1206731,Cindy Altmayer +1905230,John Murtaugh +81506,Peter Barnes +1374747,Éric du Potet +582910,Charlie Dicus +233507,Anne Parrish +1516455,Jodi Angstreich +1098783,Thomas S. Hammock +1535403,Linda Whittlesey +1427317,Nate Foster +1422735,Courtney Ryley Cooper +1460357,Nicole Artmont +14474,Gaston Leroux +109246,Dennis Maitland +1088222,Torsten Bjarre +101469,Walter Baumgartner +1031475,Shiraz Ahmed +1367917,Matt Dayton +1008510,Dafne Ciarrocchi +63560,Sid Kozak +1427457,Anita Howell Lowe +1586593,Klári Szinek +998557,Alexander Popov +1642601,Steven Taylor +568984,Daniel Nathan Rubin +110856,Sachin K. Krishn +583460,Joe Hollow +1378241,Maurice K. McGuire +1402534,Steve Acheson +1524559,Leslie Chung +592622,Sven Methling +1651357,Mohammad Aladpoush +1395242,"Mark ""Tubby"" Taylor" +81476,Ariel Vromen +1327847,Doré Cermak +155076,Ken Harris +1354696,Oklahoma Ward +1743944,Maurizio Santi +1416804,Jeannette Kim +1542297,Tamar Guliashvili +122085,Richard Walden +1094153,Lisa Myers +1671065,Kerri Smeltzer +1199632,Nikolai Volev +591014,Walter Greenwood +1389040,Nancy Leopardi +971040,Shane Bunce +1783007,Trent Farrington +1431509,Toby Lloyd +1551429,Sylvia LaVarre +36843,J. Joachim Bartsch +148497,Phil Churchward +66511,Michael Colton +1293000,Anney Perrine +1423828,Steve B. Harris +1063343,Philippe Caza +1041944,Diane Houslin +99922,Fred M. Sandy +229484,Iiro Küttner +1539254,Andrew Felton +63975,Juan Carlos Gómez +1496075,Chris Rickwood +1121985,Arnaud Lannic +1230781,James D. Buchanan +1089019,Yuji Takahashi +1770711,Minobe Yutaka +1555796,Kelly Mullen +1635181,Ashley Travis +1304293,Robert Giddens +1559681,Robert Courtemanche +47638,Tom Erisman +1815396,Daniel Chonqadze +4522,Caroline Link +1388418,Dorothy Barkley +1126289,Kazuhiro Konshi +1418405,Heidi Howell +1176358,Kristin Yager +1399455,Scott Dougan +1379059,Lizzie Pritchard +1659235,Glenn Murray +1646601,Karina Mariano +1028356,Tohru Komori +1145440,Jonathan Liebling +1204331,Kyra Friedman Curcio +1727710,Veronika Skorepova +1662196,Abhijeet Gholap +1367127,Mark A. Terry +178993,Dan E. Weisburd +1092911,Alfred Schnittke +1055199,Andrew Okpeaha MacLean +1108825,James R. Hallam +24258,Annie Symons +1840866,Justine Arteta +1897191,Travis Brady +1825000,Joe Tam +1125890,Cory Weincheque +1633090,Erin Spofford +1155147,Colin Carberry +1749870,Lisa Walder +1054731,Matthew Mullen +227911,Andrew Ruhemann +1338975,Helen McGovern +98755,Marius Lesoeur +131564,Yasuhiro Yoshiura +1865842,Gérard Rousseau +1830888,Brittany McLeod +71211,Milt Banta +4269,Park Ji-Woong +1543830,Hyesu Yang +1746443,Manjusha Balachandran +100054,Maurizio Lucidi +1319503,Ron Magid +1301112,Ernest Riera +1117183,Mukesh Udeshi +928001,Karsten Jacobsen +1152091,Aurélia Grossmann +1456939,János Gyulai-Gaál +1733485,Ben Rimmer +1395035,Liliana M. Molina +73020,Lucas Sussman +116724,Helene Parrish +1861809,Richard Hirsh +143660,Aleksei Sidorov +28242,Paul Rapovski +64407,Ivy Isenberg +1205937,Jason Fernandez +1394719,Tim Caplan +1608981,Will Schillinger +1865197,Spencer Bennett +1551729,Howard Nemerov +67482,Steve Hutensky +1106577,Carlos Vermut +83547,Aleksandr Kachan +955114,Hugo Shong +31052,Vic Mizzy +1626866,Satsuki Igarashi +128302,Georgi Yungvald-Khilkevich +1410756,Wojtek Palys +1787551,Ben Forman +1715583,Claire Matthews +1428909,Francesco Alberico +69670,Patrick J. Don Vito +1727427,Stewart Smith +1382448,Brendan Walsh +1363887,Anna Kulganek +1731917,Catharina Schurenberg +1482008,Jacobo García +1400502,Rémi Boubal +1334622,Yasumi Mizuguchi +1018092,James F. Oberlander +1355965,David Van Woert +104343,Don Barkemeyer +1387614,Tara Hunter +1143378,Edouard Deluc +31459,Michael Collins +1379044,Robert J. Dugdale +110169,John McKay +1279068,P.G. Wodehouse +1071418,Marek Brodzki +1261812,Paul Atkins +1208221,Sofía Subercaseaux +73744,Dominique Crèvecoeur +1443683,Zach Shields +1134670,Daniel Hoesl +1727799,Carl Swartz +1504427,Yasin Qureshi +1392947,Aaron Spaulding +1223575,Massimo Pellegrini +31500,Virgil Thomson +1491850,Raquel Gallego +1510197,Amanda McGowan +1034657,Rick Underhill +1394858,Les Fiddess +47333,John Wells +231004,Navdeep Singh +1316922,Annamária Szántó Komlóssy +1660980,Jeff Moriarty +1674422,Sharon Chazin Lieblein +1143185,Sachin Bajaj +949743,David Doerksen +1099125,Geoff Anderson +1638133,Cassandra Bakic +129161,Rajat Arora +262636,Andrew Shea +1470168,Jean-Pierre Labatut +1606979,Tuna Bora +1455504,Kristopher Medina +1133613,Jackie Bastide +1729084,Graves Bates +1831833,John Piscitello +1688241,Gnu Quartet +225889,Corentin Julius +1570535,Callum MacNeill +1084929,Jonathan Deckter +14768,Alessandra Carlino +1367940,Miriam Jurgensen +1606294,Luciano Spina +1035800,Pablo Ramos +1167728,Emmet Lavery +1551913,Mark Bakowski +225943,János Szabolcs +1486262,Rachel Dargavel +992868,Yuki Midorikawa +82597,Scott Devine +206993,Louis Choquette +1556630,E. Gedney Webb +23315,John Goldschmidt +1328774,Ryô Uematsu +38625,Zoltan Spirandelli +1676436,Gaurav Godkhindi +1637347,Chase Heard +1800685,T.W. Sewell +131128,Alan M. Surgal +1140593,Harold M. Shaw +1344795,John Klein +1153757,Kevin B. Lee +1597061,Kostadin Rusakov +60892,Anne Pritchard +107627,Marco Amenta +1554530,Charlie Wuppermann +1067820,Pyotr Ershov +1833828,Josh Jeppe +1142799,Serge Grenier +1186359,Manon Dillys +1606273,Francesca Montani +1390363,Annette Wullems +16785,Peter Webber +1640297,Arpit Bharde +1594682,Srdjan Gojkovic +1555339,Lukia Czernin +1120603,Julio Parra +76564,Jonas Allen +1445365,Jessica Fulmer +1403393,Anthony J. Henderson +1453943,Howard R. Campbell +1018904,Christopher Taylor +1284021,Darab Farooqui +1341719,Christopher Sposa +1519922,Marissa Schwartz +1618229,Yevgeni Ptichkin +133178,Bunty Walia +1631413,Jaroslav Polensky +1589185,Richard L. Hill +1608983,Dawn Victoria Dudley +4695,Don Edmonds +1485547,Gideon Tadmor +1404128,Danny Collins +30658,Riccardo Pallottini +1622153,Lee Hugunin +1380919,David Wald +96306,Simon Bent +1816446,Allison Veilleux +106834,Charles A. Nichols +1459746,Paul Hopkins +1582550,Sean Fowler +1811614,Finnian Varney +1335151,Bryan Godwin +1281371,Mike Witherill +120194,Arthur Hammond +68504,Tim Halkin +1774230,Alex Holcombe +1622443,Michael Baber +1483632,Daniel Ross +26360,Élisabeth Rappeneau +1475279,Julie Fareri +1416952,Lex Milloy +1718167,David Rodríguez +557984,Kirill Serebrennikov +26143,Irene O'Brien +1762206,Kevin Foy +1148308,Kazuhiro Ochi +1294767,이두만 +1063749,Serge Besset +116842,Fred Niblo Jr. +135745,Matthew Stratton +1507500,Christopher Sharman +1785939,Patty Carey +1393859,Michele K. Short +1654640,Lee Yeon-jung +1257003,Alexander Rodnyansky +1419937,Daniel Hays +1295479,Kang Hyeong-Cheol +1516317,Luichy Guzmán +1121986,Steven A. Frankel +1103566,Melisa Jusufi +1047474,Kurt Loyens +216695,Ryan Adams +1402536,Michael Zogleman +428938,Anna Lorenzo +1063221,Tetsuya Watanabe +1608760,Chris Sullivan +1031109,Bob Carras +1355652,Aurélien Gerbault +986719,Marc Bikindou +558384,Stirling Bancroft +26141,Derek Wallace +125085,Hideo Gosha +1877811,Ryan Bertolami +426268,Ilya Averbakh +37379,Nicholas Niciphor +967228,Jane Frisby +22181,Pia Fritsche +1770975,Michelle Chong +1569859,Justin H. McCloskey +1543255,Marin Tonchev +1570526,Jon Merrifield +1350232,Orlin Grozdanov +1338964,Michael Fissneider +1453121,Ivan Arsic +11118,George Pollock +139915,John Kneubuhl +1442137,Catherine Mullan +1339121,Haiko Herden +121139,James Andronica +1149942,Christopher Mangus +1523170,Jessica Anne Hobbs +1233237,Kathleen Marshall +1434868,Lucy Bristow +80847,Sekinah Brown +1426232,Chris Mirosevic +1466011,Angela Nahum +91339,Margot Hand +1495522,Roman Vishnevsky +1565834,Lars Klettner +58304,Eddie Axberg +1367804,Charlie Clerc +1049451,Cory Shiozaki +1711575,Stephanie Woodall +1415654,June Starr +1577961,Dina Allgaeuer +1176196,Per Hanefjord +1414820,Marianna Sardarova +1776888,Nell Tivnan +1117979,Eldar Shengelaya +1116351,Mikhail Aldashin +57176,Matt Friedman +1085055,Rachel Rice +1775718,Gary Hymns +1401148,Travis Smith +1103530,Josh Eckberg +1533517,Viktor Racsek +1525791,Kerstin Eriksdotter +1643378,Duncan Paveling +1746667,Zack Clark +1455533,Christel Pougeoise +237051,Sukumar +119419,Deon Taylor +1184983,Luciano Michelini +1196746,Ben Zazove +1571008,Jean McGianni Celestin +41962,Adolf Winkelmann +1466257,Matt Squire +1338972,Peter Hanson +109193,Yuka Hirama +997170,Zeus Morand +1671522,Gopi Prasannaa +1180432,Jira Maligool +3181,Richard Rutowski +1188502,Spencer Nezey +240594,Gerald Bezhanov +1542374,Joe Mount +1294790,권현주 +1448217,Paige Cameron +129699,An Umemura +1742990,Lisa Simpson +1340726,Colin J. Smith +972432,Jay Shuster +102076,Dorothy Donnelly +1418626,Takashi Kimura +994256,Mika Kemmo +1425984,Yale Kozinski +1828363,Velvet Tamarind +1652073,Dave Moroz +928132,Amy Rapp +935536, Dale Trevillion +1777203,Ferdinand Martinásek +141372,John Garwood +1896852,Ivan Chankov +16796,Helmut Grasser +1113458,Javier Rosa +54331,Camille Toubkis +1835568,Frank C. Montesanto +1866270,Evan Shipard +1637438,Blair Stevens +1021436,Nicolás Pereda +73243,Jean-Louis Porchet +967559,Michelle Lannon +1680206,Aleksei Parkhomenko +1185977,Raúl Barrantes +226089,Scott Moore +1051971,Nicholas Simon +1318818,Alessandro Quattro +1834274,Leanne Morrison +1301958,Jóna Finnsdóttir +51601,Sebastian Niemann +167555,Mark Davis +1313548,Nick Taussig +1178962,Steve Mazzaro +1437898,John Crossland +1683870,Cibele Santa Cruz +1322291,John Dingwall +1522377,Barney Cohen +1448759,Conrad Oleak +1516456,Maribeth Fox +1399618,Mike Walker +96000,Ann Burgund +1466254,Alexis Haggar +110195,Johny Lal +63099,Michael Fimognari +1611357,Zach Weissmueller +1827281,Todd Grimes +579730,Ernest Hajos +1056685,Alberto A. Ferrer +938617,Anthony Doublin +71383,Andreas Grimm +1430074,Sue Westwood +1579516,Sharon Eagle +544034,Antoine Blossier +1430408,Frances Hannon +1305305,Sidney M. Goldin +201202,Dan Lemieux +48567,August Strindberg +1706707,Sam Hodge +1088655,Akihiro Watanabe +70675,Ni Kuang +1646966,Lars Leegaard Marøy +1638548,Salim Alrazouk +105407,Park Young-hoon +1585358,Jen Wright +1032067,Mark Holt +1824250,Lauren Okadigbo +1393441,Bryan Arenas +1124030,Anne Hopkins +1028367,Martin Koch +1338237,Mick Flood +1533678,John Friedberg +1187590,Alison Hanken +1157943,Nina Sandström +1345269,Gogo Iossifov +558929,David Robert Mitchell +1150106,Frank van den Eeden +137832,Donal Fernandes +1803176,Jason Krigsfeld +1640829,Catherine Grieves +1507226,Mir-Jean Bou Chaaya +1418377,Leon Woud +932927,Graciela Maglie +89755,Seymour Kneitel +1782621,Mari Yui +1797483,Will Burgass +1081098,Takako Shigemori +1824260,Steve Minett +1322007,Joanna Dunn +1833310,Phil Macaluso +229873,Gerardo Olivares +1310697,Jon D. Domínguez +1583679,Ingela 'Pling' Forsman +1131199,T.J. Amato +1461192,Thomas Terhaar +37030,Alfons Biedermann +1676034,Prerna Saigal +1407019,Mark Edward Wright +568068,Jean-Frédéric Axelsson +1636680,Jakub Tytus +11773,Charles B. Bloch +1030399,Matthias Zimmermann +1149936,Vijay Dewan +1431012,Nicholas Podbrey +24425,Serge Korber +124137,Věra Chytilová +1513415,Per Daumiller +1849497,Rachel Mathews +1301201,Lee Jung-hwan +1559388,Hiroshi Takiguchi +1313040,Elli Gharbi +592943,Sol Lesser +1672125,Ana Kormanski +1317049,Aidan O'Bryan +1692505,Ann Fordyce +76335,Fredrik Boklund +1349,Shoufang Dou +1438908,Jouelle Baracho +11943,Peter Zenk +1100745,Lee Yan Lam +1368372,Jenni Hall +1741047,David Cassidy +1107945,Fernando Lockett +1180037,Taketoshi Watari +224339,Kinoko Nasu +1190242,Jean Austin +11427,William Roberts +1760144,Bryan Blevins +124860,Anu Keränen +40213,Feo Aladag +1625942,Roza Satunovskaya +17050,Shane Valentino +1630394,J.D. Sobol +1699958,Giampaolo Panico +1706352,Jerjees Seja +124391,Ryu Jang-ha +1646507,Christopher Ahrens +22626,Clarissa Ambach +1018540,Liam Iandoli +117682,Arthur Hoerl +87533,Jeong Tae-won +92200,Claudio Castravelli +1746452,Bronwyn Doughty +102833,Irvin Berwick +1642574,Leon Gruizinga +1548103,Lorena Zamora +1765637,Tomas Bukakis +560179,Torben Bech +1632443,Ryan Stratton +1357067,Corey Bronson +1554133,Tom Gubb +1326485,Jessica Anne Lee +1775304,Tyler Behl +108039,Mark Blutman +1354928,Adam McInnes +1286554,Lydia Genner +104893,Christine Conradt +1518164,Kayla Adams +1548958,Martin Waters +30506,Jack Schaefer +1603894,Giannis Rozeas +1852951,Gina Nemirofsky +231592,Karl Hui +1019358,Malou N. Santos +1412151,Aaron Diecker +1883787,Christian Hening +145475,Hakan Algul +1073037,Millie Tom +1254973,Michael McMahon +1566576,Kim Berg +1691388,Franck Richard +1001712,Peter D. Smith +117865,Jud Taylor +997743,John A. Gallagher +1206330,Kulno Luht +1439174,Fabiola Ramos +1531912,Steven Liu +1376953,Aakash Chaudhary +35171,Helga Borsche +1267017,Arnaud Carney +102382,Milan Konjević +1347938,Guy Sigsworth +1344189,Charles Hannawalt +1621858,Jason Turbin +586602,Stephan Carpiaux +1127742,James K. Parker +16235,Andrea Flesch +1272392,Vladislav Shut +1796929,J.U. Giesy +1743941,Luigi Salvatore +115937,Yusuke Watanabe +1467334,Jake York +1824204,Abel Gerschenfeld +1125858,Marika Piedboeuf +1453843,Kirk Sullivan +959352,Nelson Cragg +226533,Teena Booth +1300501,Chris White +1367137,Oscar Beguiristain +1460026,Jim Casella +1609846,Kyle Prowse +1333057,Aksel Studsgarth +1828721,Judy Hallin +133518,Masahiro Shinoda +51966,Ken Blakey +1453238,Jens Baylis +1568469,Thomas Elder-Groebe +1177711,Stefan Hauck +1821346,Akmal Hyderabadi +1301382,Glenn Warner +1357656,Ion Webster +782144,Kasper Leick +155267,Christopher Miller +1348503,Avinash Arun +1286563,Tayler Berez +1632006,CJ Cole +1527898,Christopher Milone +1355718,Gay Studebaker +1250542,Kyle Ambrose +1662643,Henry Carroll +1352651,Michel Treinen +1562572,Xia Chen-An +1510472,Kevin Ascolillo II +1869359,Ashley Bellm +29453,Milan Kymlička +226705,Vitaly Moskalenko +1866370,Concepcion Alicino-Saucedo +1884736,Dave Shaw +1393423,Claudia Morgado +28001,Zhao Fei +1190998,Ed Rutherford +1518582,Robert Auld-Wright +1562094,Josiah Roberts +40461,Harold Lipstein +1306686,Federico Roncoroni +1138364,Christopher Shelton +1681820,Yu Kumagai +1597020,Atanas Papadopulos +937875,Inman Young +1425403,Helga Rós Hannam +1521493,Louie Zakarian +1414165,Leah Cooper +1113742,George Barr McCutcheon +1616870,Melissa Randle +1325531,Bapi-Tutul +557675,Ben Bouwmeester +1447870,Leonard Yasahi +1037658,James H. White +1089018,Toshi Ichiyanagi +1375923,Jeremy M. Borg +1403875,Rick Wiesenhaan +1542687,Alana Da Fonseca +1376941,Siddharth Atha +1314879,Ryan Dodson +1643985,Alex Garcia +570242,Marina Spada +1690609,Vitali Sokolov-Aleksandrov +1519611,Damien Monier +1552934,Michelle Millay +1339957,Tom Efinger +1586323,Judit Csák +1773262,Matthew Mazzucca +590243,Božidar 'Bota' Nikolić +1567766,Megan Graham +1621856,Claire Jago +1018931,Ben Pearson +1460753,Lisa Strong +1428871,John Haratzis +12386,Nelson Pereira dos Santos +69558,Michael Klinger +1331941,E. Andrew Pecs +134236,Joan Henry +983938,Domi Parra +97472,Richard Goldstone +1086970,Mary Husband +1547655,Teresa Vest +1630067,Alessandro Saulini +1195431,Maxine Trump +1542311,Mikhailo Uhryn +1079149,Christopher Kezelos +1141796,Merje Veski +1172463,Matt Medisch +1405265,Michael Matney +1458103,Nathan McConnel +55282,Juliane Friedrich +1849495,Mong Tho Mach +1079136,Richard Bedser +1009383,Pernille Ørum-Nielsen +1339600,Kalie Acheson +1626988,Stephen Craig +18504,Horst Wendlandt +1399040,Gabrael Wilson +1554135,Gary Millner +961349,Lisa Grootenboer +228135,Evan Daugherty +1683357,Aashrita Kamath +19105,Richard Carr +1456632,Shin'ya Ôhira +1505912,Geetha J +40748,Barbara Berkery +1475037,Timo Langer +1644777,Szabolcs Princz +1117920,Mikhail Roshchin +73378,Dunja Campregher +1394950,Paul N.J. Ottosson +1081036,Rosanna Andreoni +1437223,Dieter Wedekind +1840336,Mitch Yager +1900647,Yuri Mikhailov +1106910,Mitch Dorf +42629,Neil T. Maffeo +1759814,Ben Greaves +1735820,Tess Joseph +146776,Jud Kinberg +71230,Jonathon Komack Martin +26734,Gene Grigg +1106926,Maniraaj +1646592,Maxime Lemieux +81823,Louis Morissette +1650016,Eric Besche +1105708,Alexander Yves Brunner +107797,Cole Webley +1561897,Yuriy Alikov +1777243,Arnošt Kupčík +98161,Harry Neumann +102162,Gastone Di Giovanni +1468978,Nic Emilliano +1412712,Luis F. Pazos +1594817,Hagai Galimidi +1236309,Kazuhide Tomonaga +1580700,Frank Schaefer +1580927,Raf Enkels +1122372,Maiko Yoda Callister +1821902,Jeffrey Lamm +1425929,Cecile Van Dijk +103111,Giuliano Carnimeo +1895004,Nicola Morrow +97868,Michael Sonye +1585731,Joe Harkins +1597066,Mladen Chavdarov +1355964,Danail Hadzhiyski +1903927,Guy Botham +593122,George Maranville +1182910,John JayBee Bivins +1086794,Marta Sánchez +1406733,Ian Stowe +1716781,Shigekazu Tokimori +27153,Frank Konigsberg +1817423,Jon Anderson +1074824,Juris Podnieks +1293127,Paul Miller +1337627,Rebecca Ritchie Brower +41111,Piotr Wereśniak +1509742,Donna Fuller +1707980,Jerry Lane +19792,Jacques Robert +1402532,Kyle Richards +39613,Paolo Buonvino +1319165,Velemira Petkova +1684924,Yelena Yeliseyeva +225976,Dan Scanlon +1454505,Aisling Toner +40894,Ricardo Ferrer +1059880,Ildikó Enyedi +1687763,Maksim Belovolov +1235034,Amy Engelberg +1894625,Claudia Moross +1066326,Spencer Averick +1057206,Jack W. Thomas +552975,François Hanss +1326479,Blake Perkinson +1797869,Jeff Schell +1859629,Al Green +1382496,Jillian Share +1155930,David Boone Wilson +1122356,Thomas Schönberg +67081,Junichi Itou +110511,Ding Sheng +572596,Erkan Altınok +1048342,Run Wrake +1519302,Nikolas Mühe +227912,Shaun Tan +56034,Marco Barboni +1522131,Matt Entin +1023724,Braden King +1726048,Anna Törjék +1396548,Alban Streeter +1272707,Alexandra Rojek +1391941,Григорий Хмара +1208455,Venanzio Biraschi +1841590,Grant Nellessen +1691476,John Michael Sudol +1907205,Fernando Barrios +1056273,Jason Filardi +1327595,Daniel Hainey +1662121,S. S. T. Subrahmaniam +1156408,Ronen Dorfan +1551907,Leslie Lerman +168798,Josh Schwartz +1525128,Josef Gatti +1468574,Rebekah Ross +1319851,Daniel Baur +15672,Nadia Tass +107796,Jason Faller +72903,Jonathan Vanger +1324840,Anthony Brandonisio +110924,Gary L. Baim +1742497,Yollótl Alvarado +84113,Charles Robert Carner +1027099,Fernando Méndez +1643928,Noah Wood +1575329,Carrie Alton +1732801,Karen Mattingly +100622,Wallace C. Bennett +1431553,Courtney Lether +1905109,Karen Kristalovich +1665453,Joseph Giancola +5449,Ted Sears +568279,Daniel Benmayor +1103573,Sean E. DeMott +1273705,Yoshiyuki Miyake +1572860,Anna Lombardi +1324015,Martina Javorova +1386589,Nick Green +1554317,Brandon Grimes +1088258,Karl von Moller +62903,Kirsten Newlands +200496,Morton S. Fine +40506,Ulrich Seidl +1192926,Günter Gräwert +147428,Wolfgang Groos +1656429,Ron Petruccione +31875,Ignacio Romero +1721325,Justin Brunett +1431152,Rebecca E. Daly +1200389,Gert Heidenreich +1482616,Laura Larrosa +1169529,Peter Fuhrman +1640822,Anna Reynolds +479923,Carmelo Travia +1122300,Carson D. Mell +1503404,Ugo Peruzzi +1419254,Melissa A. Corns +1711214,Vincent Lascoumes +148737,Nat Sanders +22146,Susan Parker +28388,Dejan Pejović +1128115,Lynn Givens +1470709,William Tanner Sampson +56291,András Mihály +1552016,Edith Dupré LeBlanc +1580836,Mark Cohen +1669188,John O'Connor +1813847,Zach Marshall +1674692,Kara Mulrooney +1401998,Tom Meade +1179444,Terry Banting +1507574,Tomer Shani +1125166,Michael Mädel +583472,Liz Bradley +1743940,Lanfranco Ceccarelli +1755408,Laura Lee Grubich +33860,Sergio Palmieri +223609,Joni Levin +1813304,Casey O'Donnell +1606286,Roberto Petrozzi +32320,André Piltant +1373058,Kristen Zolner +1086353,Matías Piñeiro +138790,Brandon Meadows +1728381,Darren Cameron +72914,Tom Hedegaard +1727617,Loïc Poës +211093,Elle van Rijn +1408374,Dillon Bennett +1568839,Elaine Phaneuf +151394,Dean Hargrove +945167,Jacobo Rispa +1194331,Alberto Rodríguez +1631402,Johanna Ragwitz +986776,Nick Damon +1525929,Michael Leonard +937895,David Wingo +99499,Phillip Guzman +1462315,Chuck Ryant +1463183,Jessica Wolff +28000,Seo Jeong-min +1098983,Rosalyn Drexler +228475,Jimmy Maslon +1374575,Dan Root +1090937,Alexei Aigi +1721320,Gary Winter +1678846,Asghar Shahverdi +1880930,Malcolm Mantara Rattanapitiya +1522130,Ed Kuehnel +1693196,Hiroyuki Okada +27151,Jeff Kleeman +1455997,Fredrik Myrtell +120532,Charlton Ogburn Jr. +1637809,Simon Cockren +1547487,Hernando Bansuelo +1420246,Matt Drummond +17556,Pierre Lhomme +124707,Michael Herbell +139079,Gerhardt Boldt +1024836,Claudia Bluemhuber +1641557,Tom Pallant +1189981,Ashley Hasenyager +1376635,Sandy Buchanan +122032,Joyce Pierpoline +1459866,Juan Aguirre +1299753,Pascal Verschooris +1456633,Atsuko Tanaka +1724210,Juanma Nogales +71175,Philippe Djian +1469288,Thitiya Thongbai +958112,Andrew Reed +105862,Lawrence Sara +1575349,Justin Hutchinson-Chatburn +1097804,Inger Martin +1298839,Ádám Fillenz +1174416,Mikey McCleary +95893,James Strong +56836,Raymond Depardon +1570585,Geneviève Poirier +1017365,Simon Draper +146515,Taweewat Wantha +128500,Lisa Ries +1059255,Natalia Nazarova +12180,Mamoru Oshii +1312809,Chantal Carter +1383997,Joseph Baker +1644282,Hank Fine +1653957,Ben Daka +1658273,Stefano Ceccarelli +1807780,Marvyn Dennis +1568853,Mark Holman Harris +1447912,Scott Daoust +1070157,Melanie Gordon +1762268,Nicola Bendrey +1797420,Emin Atilgan +1643573,Udhaya Kumar +1298593,Kam-Yuen Szeto +1063916,Jun Yasumoto +1335882,Kerstin Kensy +31628,Don Adams +1640387,Darren Callahan +1460581,Tony Keddy +227704,Shailesh R. Singh +117839,Gini Reticker +126824,Kevin VanHook +303056,Craig Johnson +1715744,Claire Faggioli +56640,Max Berman +1417875,Mark Gullesserian +1412697,Ivailo Nikolov +126764,Rohit Malhotra +1136033,Paola Catella +1423751,Nicole LeBlanc +1685144,Victor Villaseñor +133202,Takanori Tsujimoto +1150162,Nasser Zoubi +1864621,Ann Van Aken +63924,Steven Fierberg +1455498,Bryce Burke +1351803,Andrew Markou +462109,Marc Koninckx +1489186,John Cook +1535397,Mark Kratter +1430293,Phil Haine +1529935,Takeshi Hoshino +1290981,Andrew Hasse +223525,Lorenzo Gabriele +1583626,Robin Shockley +1473422,Nicholas St. Clair +1348009,Peter Stott +11691,Bedřich Smetana +1479279,Gwendolyn Margetson +1011962,Vladimir Presnyakov +1537107,Simone Carter +1387185,Nate Smalley +1538337,Ted Donlon +1403430,Christine Youngstrom +1097204,Aine Graham +1296883,Leonard Maas Jr. +1795204,Jonathan D. Gift +1797429,Dusan Petkovic +1418002,Brent Brooks +1826662,Lana S. Krause +1486800,Bertie Stephens +1646534,Xavier Bourque +1622036,Francis Lapeyre +1319500,Todd Stein +1554050,Bobby Diehl +1646512,Andrew Barry +64110,Tim Dennison +1645423,David Duarte +933230,Yevgeni Ginzburg +56718,Dana Fox +1179066,Wes Ball +1155552,Elizabeth J. Jones +1386918,Dane Allan Smith +1552205,Anne Couk +1404812,Nelson Khoury +1403191,Andrea D'Amico +1006749,Holly Cushing +1821906,Brady McElroy +1425969,Vincent Sullivan +1635182,Monika van Schellenbeck +1633089,Lewis Farinella +1728936,Zahi Khouri +1325203,Lorenzo Foschi +1388534,Mark Dolmont +1313974,Christian Spillemaecker +1195057,Joshua Skurla +144296,John Carlen +1622449,Tak Kawabe +125101,Roy Chow Hin-Yeung +1481504,Viridiana Zavaleta +559185,Emma Bellocq +1614736,Aleksandr Basaev +1814556,Ram Paul Silbey +1448591,Luca D'Alberto +1423433,Ian Vassallo Grant +1687775,JoAnn Grigioni +1422143,Isaac Rentz +1797501,David Wahlberg +133368,Matt Hullum +17550,Tatsuo Suzuki +1403930,Zoe Simijonovic +19379,Yannick Kergoat +50301,Louis L'Amour +1579388,Bob Webeck +1172515,Allison Meadows +1138635,Fodhla Cronin O'Reilly +1652266,Jean Graham +1818110,Daniel Tripoli +1533795,Matthew Parker +1459744,Cameron Folds +1569818,Todd Bieber +1386314,Marcus LaPorte +1572858,Justin Turner +1323385,Kadir Kesemen +1203693,Matt Hish +1597886,Steve Chang +1676181,Casey Wilson +1420,Robert Drew +1599819,Patrick McGinley +1418,Albert Maysles +928419,Carlos Zaragoza +1759807,Julia Gadiana +1103632,Alan Canant +1524560,Aleksandar Djordjevic +1345651,Mark Colicci +1029114,Carlo Cresto-Dina +1562606,Ray Cross +1009378,Patrick Voetberg +5196,Heike Lange +1364789,Xavier Picard +1789972,Marta Padilla +104428,Gary Eck +1304983,Justin Donaldson +1613383,Clinton T. Duffy +1849504,Dennis Alexander Nicholson +1477780,Martinus Van Lunen +1691478,Matthew L. Champagne +1653484,Pritesh Shanbhag +589613,Anthony Tambakis +1340963,Zyk +1639084,Sev Ohanian +1423462,Kaja Martin +1408403,Rob Farris +1618327,Gina Sansom +1035867,Tom Thurman +34796,Lambert Hillyer +1770976,Gary Hutchings +1308365,Edd Lukas +1045561,Tyler Glodt +1100329,Jeffrey H. Luther +126809,Lee Joon-ik +1366212,Gordian Maugg +1665256,Chima Adighije +1024243,Michael Richard Plowman +1319608,Matthew G. Zamias +1018081,Joshua Stricklin +997631,Magela Crosignani +1825656,Heather Roebuck +1400316,Ivo Peitchev +1661325,Richard Spriggs +1590409,Adam Pere +1860888,Richard Hewson +64430,Chi Ying Chan +1462036,Robert Mitas +931363,Brett A. Hart +1367808,Stéphane Linet +1636734,Mark DeSousa +1626015,Jackie Shenoo +1393416,Yevgen Skorobogatko +1746607,Kimberly Graczyk +1405198,David Sinfield +1519299,Andreas Landgraf +1166387,Yoshihisa Nakagawa +1403564,PJ López +1103619,Brad Besser +1560224,Bret Pursuit +234825,Antonio Trashorras +84416,Gene Stupnitsky +143904,Gary Pike +56020,Julie Baines +1470527,Jesse Evans +1302779,Bryan Schulz +1539804,Stefania Zarecka +1654597,Hoping Chen +166396,Wendy Kout +32783,Bill Herman +590055,Jeremy Grody +1837275,Nicole Stojkovich +1537103,Jan O'Connell +52389,Maurizio Pastrovich +1602584,Yuko Nakajima +1517638,Robyn Grace +1450831,Paul Lacovara +1200528,Claudia Sainte-Luce +1442941,Claudia Everett +92331,Gloria Ponce +226654,Cid Ricketts Sumner +1436198,Kate Eastridge +1190341,Michael Carlos +105866,Marco Bellocchio +1672675,Tapan Basu +1492919,Mogwai +1377117,Molle DeBartolo +1375905,Tim Zajaros +1291349,Jim Van Eerden +1573324,Clayton Davis +1568241,Fabio Fabor +933134,Tiana Alexandra +1635739,Svein-Ketil Bjøntegård +1574077,Marie Castrie +1538230,Roy Waldspurger +1340105,Debbie Estay +1120028,Riley Yip +113417,Tom Fernández +125363,Viña Delmar +1481356,Ben Jehoshua +1151804,David Chizallet +1333981,Kimberly Murphy +31930,Joseph Janni +71804,Amanda Ford +1566579,Iris Jenssen Nylændet +1884075,Iván Sequeira +1438463,Oriana Ciaccio +1308453,George Crowther +21116,Robert May +169939,Bruce Franklin Singer +34358,Burt Kelly +1042813,Steven Hodgson +1407738,Michael Stumpf +1131382,Roger Rosenberg +1484215,Tina Mills +1402984,Paola Trisoglio +132584,Donald Duncan +1771808,Aldie Harra +1437798,Roxy D'Alonzo +1056734,Carl Carden +1674071,Tuomo Kattilakoski +1797441,Monika Radwańska +1094564,Eniola Dawodu +1562621,Sheila Kohler +63957,Garry M.B. Smith +1857582,Gilberto Miñón +1636661,Shamim Seifzadeh +116285,George Craig +1764794,Terry Watson +1653218,Rodrigo Trujillo +1286583,Edward Salerno Jr. +30310,James Hawes +1063834,Emmanuel Bernard +1151865,Ben Sollee +1123360,Bob Roath +1455529,Loïc Miermont +30287,Winston Miller +240097,Pasquale Rachini +1445374,Sami Hajjar +41049,Ivan Dykhovichnyy +235016,John Berger +1188272,Shirley Craig +76554,Eirik Evjen +967199,Benji Kohn +557674,Ewoud Van de Werf +1694455,Liliana Meyrick +1654252,Burlee Vang +1329533,Kimberly Hope +1482835,Kenneth Yoder +1411138,Frank Macauley +44952,Bryan McKenzie +5065,David Frankel +1176829,Laura Cafiero +1436533,Becki Drake +1083120,Jackie Reem Salloum +1808039,Jesse D.E. Young +1847716,Alexis Chavez +91890,John Laing +1372441,M.A. Fortin +1457344,Mayur Puri +1338158,John Yarbrough +1727621,Alice Robert +129697,Yuri Kantake +1544185,Thomas Woodrow +73121,Gisaburō Sugii +1462852,Ara Khanikian +1056607,Marc Jovani +1534227,Chris Schwiebert +1551937,Lisa Parmet +1182527,Renzo Merusi +134134,Jenna Mattison +1372465,Jane Hawking +1797498,Bobo Skipper +1435661,Marty Osborne +1606297,Luciana Di Russo +1414918,Eldo Ray Estes +1105138,Najwa Najjar +555757,Bob Wickersham +1125464,Georges-Patrick Salvy-Guide +1565123,Matthew A. Petrosky +1465668,Tim Despic +1548696,Skip Kimball +1440407,Costa Vassos +1090935,Natalia Gostyushina +1645540,Achim Schunck +88738,Gianni Bozzacchi +1469921,Aravinnd Singh +999762,Rory Aitken +1839937,Pedro Bueno +1570079,Benji Cohen +1797454,Niamh Farrelly +1619733,Jade Olson +583970,Ramana Madhesh +585456,Koji Masutani +1269839,Rick Conrad +1326080,Vladimir Kutuzov +1583079,Roger Mocenigo +1849136,Theophane Bernard-Brunel +1713105,Iolanda Conti +64394,Leander Carell +1712239,Miriam Lien +1340791,Pete Parsons +1542284,Hillary Harper +1043813,Evan Dunsky +5387,Lawrence Sher +890786,Alex Bryant +32497,Bettina Reitz +146459,Steven Moffat +1394641,Rebecca Laks +1527656,Samuel J. Brown +1249408,Terrence Stone +965663,Mónica Monserrate +1579652,Vera Winkelhöferová +1125105,Elsa Fernández +1087568,Hakan Haksun +1693774,Susy Mattolini +1189761,Sofia Kharebashvili +1821885,Tim Forrest +1745146,Jerry Brutsche +25183,Jean-Loup Dabadie +1087621,Irv Goodnoff +2626,Tony Burrough +1183611,Robert Taleghany +138782,Blake Myers +1113391,Kahlil Hudson +1819122,Diana Bustamante Escobar +1549252,Lazar Predojev +1542494,Jim Asbell +1518778,Danielle Wiessner +1197996,Al Schwartz +1362893,Tauno Marttinen +90417,Jonathon Kitchen +66491,Ramsey Avery +1409491,Ra Vincent +1632793,Christine Babayans +587509,Oleg Pogodin +1357046,Victor James Martinez +1361754,Yvonne Bernard +138007,Amy Andelson +101425,Wes Bishop +1355974,Stefania Velichkova +1573335,Destin M. Hebert +1640646,Dave McCary +1538966,Rhonda Ann Burns +1746587,Rosa Lopez +1457612,Aaron Crozier +1592445,Katsuhisa Hattori +1577887,Juan Ramón Molina +1451518,Hayley Abbott +145263,Stewart St.John +1907216,Matt Perrin +1574398,Peter Nikolov +1155661,Jack Paglen +1551904,Ty Gibson +1360613,Erwan Le Floc'h +1616436,Kenneth H. Wiatrak +39751,Klaus König +1741054,Kyle Kibbe +1562472,Dennis Mykytyn +1477627,Abigail Greenwood +1194380,Beverley Wowchuk +1336926,Damien Williams +19451,Robert B. Parker +63577,Yiu Fai Lo +67498,René Richter +1481479,Sergio Gurrola +1289957,Lily Kentaka +1299012,Jens Löckmann +87177,Will Meugniot +43705,Luciano Puccini +58104,Peter Burgess +1857045,Alexander Ternstrand +1824513,Aaron Colman-Hayes +1735100,Sarit Chatterjee +117136,Roger Goldby +1175505,Phill Beard +64756,Blake Corbet +1546444,Christopher Norris +1827272,Kari Delaney +1415007,Russell Farmarco +1457939,Alexa Hale +635846,Tom Whitus +1422814,Howard Watkins +1866509,Tiago R. Santos +567766,Anacleto Fontini +1647429,Juangus Dinsmore +1045860,Ciera Wells +1210948,John McDermott +119463,Norma Barzman +106756,John Mills-Cockell +1508027,Terence Dunn +1709321,Leia Verner +46349,Alessandro Ferraù +1896201,Alexander J. Wysocki +91666,David Wickes +1126367,Cynthia Kistler +151278,James Wilcox +1168418,Georges Strouvé +1146971,Carmen Pepelea +1453140,Carly J. Mills +1390300,Pappu +1338128,Michael Abrams +1120642,Ron Haimov +1519907,Clayton Moore +1621477,Matt Deeley +1350319,Enrico Polito +1495797,Sofía Cuenca +1124934,Guneet Monga +99412,Walter E. Sear +1759321,Michael Louis +91278,Roos Ouwehand +1388613,Edgar Vidal +84803,Terence Pratt +1681622,Richard Mans +1320561,Michelle Sotheren +108893,Jordan Barker +85840,Alan Rafkin +1585356,Paul Shubat +568262,Florian Habicht +1069670,Richard Dine +1646872,Paola Cortés +1616854,Gianluca Basili +1143147,Banker White +138865,Hisayasu Satô +1638560,Amy Hetland +1377945,Gianfranco Lombardi +1402094,Sean Farrow +138778,Michael Hardwick +1701614,Heather Nunn +1537725,Nicky Knowles +88843,Darrin Reed +19947,Alice Munro +1586298,Kenneth Gustavsen +1640315,G Venkatram +114360,Peter Bas +1087597,Pablo Neruda +1412133,Thomas Løberg +6522,Rafael Cobos +188876,Jim Lincoln +1757637,Roberto Dominguez Alegria +1122562,Lisa Goldberg +1445343,Tyler H. Walk +1084640,Richard Bowers +1425465,Alex Twersky +1145013,Paolo Sansoni +1011964,Oleg Presnyakov +1896009,Antony Buonomo +1059049,Jeffery T. Brown +1151090,Clay Floren +1341967,Nikolai Rozhkov +1394053,Robert Jones +931211,Alice Rohrwacher +1792361,Katie Vernon +1462000,Dave Hardin +1525157,William B. Demeritt III +1797467,Charlie Lodge +1324794,Ariel Gold +1467027,José Ibáñez +128291,Ivan Ivanov-Vano +551487,Sylvain Guy +19833,Jacques Kirsner +62707,Katterina Keith +1827317,Matthew Blecha +1430937,Heath Jones +1427448,Chirantan Das +1430077,Nicola Kingham +1565104,Brad Katz +1544544,Damian Canelos +1820854,Randy Lapin +1590965,Frank Arpaia +53021,Louise Page +1862953,Jaime Oria +1167497,Rex Pyke +127515,Jack Hively +1674705,Vittorio Biseo +930988,Brian Pistone +1025715,Dennis Law +1573926,Karen McGregor +1707461,Henning Kamm +1731890,Frank van Wolleghem +1486916,Martin Lee +47053,Alan Riche +1403461,Chris Harvey +1829976,Brian Pohl +1849527,Paul Aucoin +1001932,Bruce Hornsby +1404093,Steven Bello +1367651,Héléna Réveillère +1394485,Martin Rinderknecht +1038659,Andrew Dosunmu +555975,Nicolás Goldbart +43678,Misch Bervard +113901,Michael Jelenic +50769,Sarah Aubrey +1680375,Henry Russell +361946,Michael MacMillan +1674002,Akiko Tsushima +566294,Patricio Guzmán +1384961,Steven Selling +1177276,Steven Bernstein +1396806,Aniela Sidorska +1382492,Bryan Atkinson +1081449,J.P. Sniadecki +139162,Maximilian Erlenwein +1210237,Hu Wei +1192526,Stephen Christensen +1869386,Joana Powell +1295292,Brian Duffield +1407727,Steve Martemucci +82271,J. Steven Soles +1024912,James A. Gelarden +129444,Vittorio Moroni +23365,Mario Michisanti +27954,Jean van de Velde +1630287,Janet Maney +1280415,Jeet Gannguli +62578,Mark A. Altman +1749860,Babak Ardalan +235138,Sharon Maymon +68574,Brad Copeland +130879,Jan Novák +1208805,Daniel García +560279,Robert Yocum +238891,Maxim Korostyshevsky +1312939,Yvonne S. Thornton +1143482,Juergen Hirsch +37414,Oliver Storz +44371,Karl-Heinz Käfer +1331183,Clayton Castellanos +994255,Pasi Kemmo +60836,Elton Brand +577421,Chui Bo-Chu +102774,Kevin Moore +1407725,Robin Simmerly +1800048,Mark Byrne +1666868,Kannan Ganpat +549495,Mike Carey +1574456,Nicolas Bouvet +1501951,Catherine Nadeau +1711772,Haku Yamauchi +130405,Gary Preisler +1106528,Elisa Eliash +1511681,Ole Mølgaard +1774943,Miguel Levin +1015649,Thomas Verhaeghe +92694,Elliot M. Bour +1636693,Danielle Webb +56405,Frédéric Beigbeder +1023606,Jim Sharon +1792348,Colleen E. Moody +129569,Fiamma Satta +1568814,Mark Ahee +46438,Jean-Baptiste Roger +1381171,Matthew McCauley +1228031,Brian Straub +1553283,Arthur Mayse +223830,Muffy Bolding +1399916,Jean-Alexandre Villemer +1431512,Paul Glubb +1276603,Carlo Martelli +1116126,Meredith Layne +29943,Jonathan A. Carlson +65316,Robbie Fox +1410599,Laurent Larrieu +73061,Thomas Reitmair +1632799,Mike Witting +1713958,Danielle Daly +1453143,Jane Forbes +1375853,Alain Hardy +1824999,Wang Sen +10118,Kenny Bates +1311275,Ron Stannett +1623735,Elda Loza +73065,Eckard Zerzawy +93102,Nobuo Ogawa +1431505,Sam Storey +1667528,Chris Meehan +1651006,Max Tersch +169448,Richie Keen +565313,Aleksei Simukov +1542310,Arina Knyazeva +209181,Christopher Berkeley +1090952,Milena Ferreira +1594173,Ramiro 'Ramir' Delgado Ruiz +933,William Nicholson +87789,Jeong Heung-sun +1647589,James Christopher +1189777,Natasha Lee +1461708,Frank Forte +1667823,Gia Grosso +1099847,Joel Potrykus +1775653,Maíra Bosi +40827,Peter Clarke +1328205,Chewie K. Darsow +1527176,Paolo Marchesini +1650269,Benjamin James Davis +99435,Jonathan Gray +115727,Kelly C. Palmer +225904,Adam Wolfe +235958,Viktor Shamirov +1429378,Navarutt Roongaroon +35358,Félix Murcia +1204523,John Cosentino +1297766,Olivier Delabarre +1556407,Geoff Maxwell +1717840,Blain Thrush +1293141,Lowell A. Meyer +99897,Daniel Cady +1413412,Willie Nel +87206,Erik Lamens +1660926,Sid Reichman +554868,Masaki Kajishima +1547450,Kevin J. Edelman +1302737,Luke Guidici +555266,Thomas Lindahl +1274041,Jessica Heibeck +1631400,Christopher Taylor +1531497,Daniel Howell +1292979,Jundong Lee +1666636,Kari Kekkonen +1441129,George Tirl +52626,Glenn Roland +1718166,Jesús Guerra +1354352,Ekkarat Assavajameekorn +1257407,Atsuhiro Iwakami +1582736,Berta Coderch +59349,Joja Wendt +1442277,Henri Nathansen +1609432,Aaron Cruze +1367026,Jean-Christophe Reymond +1444239,Robert Alonzo +1642004,R Damani +1412947,Wilfred Eades +1614966,Jason Hougaard +1441221,Baron Shaver +146698,Chung-Ryoul Lee +1594761,David Mandil +30574,Scott MacGregor +1292560,Malik Vitthal +1213659,Graeme Harper +1194884,Brett Pawlak +1382042,Joaquín Ceballos +1295593,Anne-Marie Marsaguet +1342870,Timothy Barton +1036211,Anna Terrazas +1483136,Graham Martin +87191,Billy Kent +1039384,Roger Swaybill +1325480,Justin Lovell +1438841,Marco Dentici +16998,Héctor Gil +39765,Larry Buchanan +125738,Daniel Espinosa +111100,Chico Accioly +1302025,José Alcalde +1689881,Mauricio Melchiorre +46912,Steve Latshaw +1518920,Alexander Akoka +58233,Jean Stelli +1096193,Nepali +1399221,Vratislav Marek +1661321,Tom Castronovo +1412041,Don Stern +932533,Stefano Sollima +1439406,Josephine de Montjoye +1032373,Briseide Siciliano +1708019,Scott Heming +120119,Cory Goodman +25745,Sylvain Lebel +1108174,Matteo Rovere +117483,Michael Brandman +1635183,Laura Wootton +1551819,Jason Salzman +1754086,Margaret Sclafani +1738097,Tara R. Hinecker +1263929,Lee Su-Jin +138108,Yoon Hong-seung +1733928,Nefeli Stamatogiannopoulou +146194,Sebastian Arocha-Morton +1650243,Sever Gansovsky +1574454,Nicolas Lacroix +1408390,Charles Libin +73913,Robyn Hitchcock +1324040,Hector Tinoco +60099,Gideon Raff +11306,Ron Berkeley +1527439,Karina Silva +1583166,Miren Begoña Cortazar +1873430,Eva Ayats +13175,Zane D. Bruce +1643802,Melissa Strizzi +1139626,Philip Linzey +1657563,Stefania Rosini +1331170,Bryan Mansour +1821414,Agnès Favard +1208471,Gábor Rajna +1410107,David McGill +412788,Gordon Yang +81675,Krishna D.K. +1699372,Alexandria Goldman +1084436,Michael Di Jiacomo +64954,Mikkel E.G. Nielsen +240096,Fred Chalfy +1556333,Bosco Martis +1646591,Patrick Lemay-Hardy +1162240,Eyüp Boz +1896197,Veronica Aberham +116199,Juan Sires +1649726,Jakkrapat Iamnoon +106587,Anne Wigton +1059152,Calin Catalin +1642588,Grant Lounsbury +1143442,Thomas Marchand +1675388,Warren Davis II +38759,Manuel De Sica +1026866,Neil Mandelberg +129528,Ioanna Karystiani +562691,P.J. Pettiette +1797462,Nick Leishman +97573,Lee Sholem +1419721,Karim El Fassi +145724,Natuk Baytan +1041614,Stevie Be-Zet +1120403,Michael Morpurgo +1800053,Evelyn McLoughlin +1039502,Thomas Mignone +1172080,Adam Philp +1492089,Mary Kirkland +1536649,Sébastien Lépine +1116884,Gord Hillier +89266,Alfred N. Sack +182700,Alexander Grasshoff +103438,Robert Neville +1085032,Steve Neal +1678071,Naomi Scott +1647413,Wanchalerm Chootragool +932585,Sathyan Anthikad +1636862,Jenny Egidio +1547517,Smokey Nelson +1258045,Greg Vines +1419636,Claudio Rietti +1367211,Burke Lewis +1057919,Shigeo Mano +1033805,Ronald J. Fagan +114357,Jean-Frederic Messier +1210969,Lincoln Lewis +1332152,Lorenzo Ceccotti +1054802,Miroslav Mitić +1539318,Naomi J. Hall +164709,Rob Hughes +1073980,Julian Mack +1402525,Shedrick Nellon +1416468,Mark Milsome +1643577,Hari Haran +1475631,Rachel Stringfellow +14946,Ken Bridgeman +898556,Joey Marcoux +39543,John Brockman +45126,Robert Flanagan +1439418,Jake Worden +25294,Sean Murray +22208,Paul Bertault +1184249,Betsy Blankenbaker +967792,John Guleserian +1411333,Constantin Brodt +1133575,Michael G. Cooney +549128,Vladimir Chebotaryov +1280411,Harlan Ware +1840678,Nancy Valle +1764619,Nancy Weems +1447982,Jan Baird +1182684,Guido Piovene +1582592,Hakon Sverrisson +1484221,Melissa Lawson +1785024,Shashwat Sachdev +1763413,Sharmin Segal +1351626,Oscar Shisgall +1579581,Shawn Seifert +848874,Matthew Boyd +1436958,Jeremy Svenson +78984,Corrine Larson +1635201,Joe Dryden +554862,Chitose Asakura +76408,Shoji Kawamori +37956,Heinz Willeg +21863,Sebastian Junger +1136707,Ljubica Nešić +1637926,Tiana Idoni-Matthews +1405257,Harald F. Kienzl +40888,Francisco Sempere +1040896,Aaron Kaufman +1191535,Christian Davis +1178907,Kamal Derkaoui +1731916,Leah Popple +1678888,Jon Lithgow +239818,Hiroshi Fukutomi +1571480,Udeh Nans +50984,Scott Steindorff +1723011,Sandra Kelly +1618813,Fanny Vachon +73914,Isabell Spengler +1459722,Diana Roche +1085752,Erika Abberton +1757612,Laura Dochtermann +1532215,Charles Bodycomb +1103562,Jay Allen Richardson +38073,Maurice Aubergé +98683,Ron Bonk +1149910,Wyatt Garfield +1785028,Sidhardh Ramesh +983091,Jaime Costas +1636522,Alex Fowles +11125,Harry White +10214,George Martin +1831960,Charlotte Child +1777265,Jan Čep +1125957,Suzanne DeLaurentiis +1542580,Isamu Ishii +463602,Mike Gioulakis +72461,Randy Manis +69121,Frederick Hazlitt Brennan +1593831,Loui J. LeRoy +1168191,Huseyin Karabey +1027140,Jonathan Guggenheim +1498350,Jamie M. Dagg +1783015,Aaron 'Cujo' Cooley +1550795,Dora Krolikowska +1372742,Hajime Komiya +1331168,Elizabeth Destro +55976,Mieczyslaw Jahoda +1395311,Tim Chilton +63743,Catho Bach Christensen +1453123,Ana Pakljanac +136013,Jean Ferry +1808712,David Carson +1485213,Dean Fuller +1428190,Don Parsons +37365,Daniele Stroppa +1267022,Graziano 'Rocky' Gooden +1324262,Sophie Neudorfer +1585734,Steve Moncur +1434957,Jerome Max +1310062,Charlie McClellan +1181888,Salamat Mukhammed-Ali +1357599,Simon Changer +931794,Émile Cohl +1600908,Giorgia Villa +99122,Joseph Cranston +1704986,Sean Sealey +1475258,Jamie Miller +150259,Osman Sınav +1056048,Evan Henke +1441730,R. Ravi Kumar +933448,Isamu Tsuchida +928459,Buzz Pierce +32671,Bruno Moreal +1391644,Lizzie Friedman +1009121,Eric Bassett +1351006,Viktor Schwarcz +27876,Otakar Votocek +1792038,Simone Schlimm +1608011,Lauren Robinson +1018699,Corey Grant +1392965,Aimee C. Carr +1394730,Dennis Light +1803897,József Szebeni +150176,F. Richard Jones +1568183,Chantal Lussier +1473421,Richard Smith +115927,Lisa Siwe +1395015,Jay Durrwachter +1309900,Joshua Lamboy +1580893,Wendy Gipp +1518591,Inderpal Singh +589490,Marc Cholodenko +1245328,Anne Harris +132940,Shûji Asano +1263792,June Kuitenbrouwer +1659598,Shinsaku Uno +1136713,Dušan Perković +34802,James S. Brown Jr. +984411,Jessica Rhoades +1468544,Michael Trosper +113303,Jason Kraut +1385134,Antonio De Feo +1400495,Sebastian Wlodarczyk +1448343,Charles Sloan +1746221,Russell Sanzgiri +28243,Hermann Joha +1642532,Beethoven Chen +1188895,Michael Stillwater +1359089,James Forbes +1031692,Phil Dorling +3435,Kan Shimosawa +31893,Stefano Strucchi +1085545,Yoshi Nishio +1537460,Fredrick Cuevas +1173427,Scott Swan +1056087,Scott Sandorf +984277,Jan Pace +1347380,Christopher K. Walker +1830190,Scott Napier +30796,Peter Thiemann +1193425,Javier de Silos +1597138,Jakob Fuhr +1547668,Stefano Mascitti +1519924,Mike MacMillan +1468064,Delphine Laloy +85663,C.K. Muraleedharan +1282923,Zsolt Haraszti +1769036,Denise Baer +1645543,Jürgen Maas +1792359,David J. Kruk +1444926,Rebecca Puck Stair +1606187,Patrice Mendez +1606332,Mika Keränen +239904,Lucio Battistrada +1149911,Julia Bloch +1614737,Murat Dzhusoyty +950644,Jordan Gertner +1170679,José Antonio de la Loma Jr. +1447506,Kendra Vander Vliet +1146725,François Reichenbach +59885,David Wittman +236588,Giancarlo De Cataldo +1328141,Dan Lautner +1559685,Sun Hao +1264428,John D'Amato +134947,Gian Paolo Cugno +1800059,Adelle Hickey +132609,Cory Mandel +1412584,Joe Susin +1430905,Pietro Zuercher +1430237,Scott E. Anderson +1643381,Susanne Salavati +1797862,Duncan Forbes +137470,Robert Hill +114351,Chris Lavis +1033803,Michael C. Green +1885588,Jack Kaplan +1153779,Scott Littleton +1693548,Cindy M. Ichikawa +1849503,Huan Nguyen +80610,Eric Bercovici +1401,Elżbieta Kurkowska +1227353,William P. D'Angelo +1884076,Michael Ludwig +40482,Hubertus Rath +27731,Roy Meadows +1868189,Dale Snyder +1162976,Donald Wilder +1789305,Bryan Yaconelli +1354491,Peppino De Luca +1335150,Bryan Baker +1099278,Gonzalo Amat +1343936,Lori Krein +1174358,Bob Booker +87667,Émile Zola +1283526,Robert Olsen +1859979,Suchitra Keshri +1630284,Carrie Wilks +228764,Dimitrije Vojnov +110527,Kevin Roache +1400094,John Ellis Evans +1491428,Jon Molerio +1383350,Matt Towell +1265106,Boris Akunin +52985,Kurt Inderbitzin +1619741,Richard Gray +1291145,Axel Eggebrecht +1335240,Viki Anderson +1018509,Spencer David Hutchings +1158266,Fuzzy +195016,Scott Thomas +1531092,Amy McLennan +1643380,James Rumsey +97612,Ivan Zuccon +1640691,Godfrey Marks +232064,Anne Niermeyer +1500724,Bo Mikkelsen +543780,Ben Hayflick +1354656,Zsolt Kézdi-Kovács +232019,Evan Oppenheimer +103581,Thomas McKelvey Cleaver +1053122,Andreas Burgess +938567,James McManus +1272154,James McFarland +1405319,Christine Fennell +1510435,Guy Pelletier +218238,Debbie Macomber +1170251,Bill Kauffman +1755107,Danny Jackson +12887,Mel Johnson Jr. +1364399,Bruce McCleery +1497971,Christoph M. Kaiser +1147472,Anvita Dutt +1455728,Devin Roth +1116773,Felix Breisach +525454,Jono Griffith +1759324,Brandon Hemmerling +545004,V. T. Vijayan +1223498,Rolly Belhassen +1577345,Alejo Schettini +142461,Shichirô Fukazawa +66779,Christopher Isherwood +1583299,Tom Chaney +1367662,James V. Kent +1209905,Antony L. Ruben +1636514,Mark Kresser +1814974,Jennifer Haire +1336511,Oana Babes +213610,Harry H. Novak +1724199,Christine Teulier +1460821,Andrea Dupras +1538857,Leif Pederen +113612,Emmanuel Montamat +1425409,Rachel Solow +220130,Simon Munnery +90593,Paul Green +1460818,Cynthia E. Fernandez +135848,In-dae Mun +1311175,Andrew Li +1494212,Philip Beckner +1032070,Chas Jarrett +1481299,Ross MacKenzie +142171,John R. Sloan +1301990,Marija Kosor +1777175,Jiří Němeček +1862928,Eduardo H. Esparza +1554136,Mike Runagall +1880927,Talagalage Rasika Thathasarani +586297,Romain Le Grand +1682677,Kennedy Xu +1479527,Daphnée Hong +133241,Alexander Paal +127838,Isao Matsumoto +519324,Dhayanidhi Alagiri +1494776,Chris Hutton +1108065,Cheon Seong-il +940729,Lloyd Nosler +1338249,Gary Dauberman +1188271,Christopher Roosevelt +1325840,Paul O'Kane +234678,Martin Manulis +135601,Troy Nixey +572053,Ingrid Dalunde +1686530,Marcel Vertès +1459734,Dixie Pizani +1660929,Takao Akita +1600456,Sertac Yuksel +1463352,Janna Roach +1530408,Gentarô Takuma +47390,Ben Arbeid +1341333,Roger Crandall +1015898,Clay Epstein +1399588,Michel Denis +928329,Meagan McLaughlin +1125172,Bernadette Meunier +1024823,Brian A Miller +1399448,Malchus Janocko +1459908,Chris Wyatt +1060532,John Noel Tucker +1868234,Steve Woroniecki +961445,Brock Jolliffe +1639083,Amey René +1622039,Claude Pezet +120325,Leo 'Ukie' Sherin +1281388,Bill Dubuque +1819156,Jeff Young +1463302,Alessandro Chimento +1287642,Richard Zelniker +235136,Erez Tadmor +544984,Govind Nihalani +1017235,Elísabet Ronaldsdóttir +1193462,Bertrand Avril +109083,Ertem Eğilmez +1417174,Jessica Richardson +7294,Anne Klotz +1031775,Tasha Gaines +1141809,Andrew Zamfotis +1428002,Maggie Widstrand +1844354,Arch Roberts +1328411,Laura Fox +1709736,Peter McWilliams +1590402,Ryan J. Frias +150289,Akira Inoue +1583403,Chris Cuffe +225942,Zoltán Kovács +1491839,Salvador Lleo De La Fe +1753564,Steve Brule +1354360,Thanee Janob +999763,Brian Kavanaugh-Jones +1393419,Brad Whitlock +54033,Hugh Stewart +1171334,Alessandro D'Avenia +1379563,Clive Endersby +254114,John Emerson +1382417,Roslyn Muir +1484209,Craig Hammack +75610,Jerome Butler +1301991,Igor Malečić +157400,Ezra Stone +53613,Dan Kattman +1581514,Joe Mancuso +543633,Pierre Colombier +1355879,Phillip Raves +1287614,Martin Pensa +1419603,Scott Jones +567063,Masumi Suetanii +1819078,Michael Downie +1609038,Clair Popkin +1125160,Amy Kolquist +1436539,John Cade +28220,Gert Brinkers +1586293,Gjyljeta Berisha +1099734,Joel Sadilek +1630375,Michelle Matteo +974634,Roberto Gavaldón +937514,Paul Negoescu +1417879,Brad Grimmett +51322,Stéphane Cabel +81805,Lisa Kelly +1309125,Yuriy Patrenin +1333581,Jennifer Louise Tillery +1301687,Jason Michael Berman +1635238,Michael Duarte +932676,Thomas Kienast +64693,Ku Chi Wai +81089,Ahmed Khan +1370962,Salomon I. Marx +1004949,William C. Ament +114301,Satoru Nakamura +1665254,Chuka Ejorh +30536,Robert Golden +1318673,Nicolas Steiner +225331,Surendra Reddy +967607,Stanislas Reydellet +1635597,Veronique Lawrence +1421236,Rita Parillo +238316,Yuri Tyukhtin +1665255,Idowu Adedapo +1412145,Nina Elise Johansen +73063,A.G. Striedl +1076801,Ozualdo Ribeiro Candeias +1830891,Erin Charles +1460853,Doris Kirch +1440296,Ralph Mock +102037,Harry Fine +100741,Shaun Hutson +1535779,Carla Rulien +1297617,Hajime Katoki +1413501,Andrew C. Robinson +104227,Maurice Lemaître +1507956,Marta Manzotti +1353149,Shinjiro Nishimura +44606,William Loose +1396739,Victoria Strouse +1206940,Ann Collenberg +53612,Carl F. Whitney +1825001,Maofei Zhou +1186706,Blair Mowat +1577965,Sandi Cameron +231866,Emilis Velyvis +11244,Claes Olsson +1386722,Anupam Roy +1161454,Hálfdán Pedersen +235270,Sandro Cecca +1519572,Michelle Bessey +34400,Scott Boyd +1797424,Emilio Schlappi +1642508,Conor Thunder +1574034,Oliver Carroll +35411,Diethard Prengel +1174713,Francisco Balangue +1559213,Анатолий Лесников +1371247,Tracy Oliver +120677,Lloyd Gold +1149935,Daniel J. Chalfen +1801547,Christian Masini +1506922,Stephanie Moore +85155,Janet Brownell +1903937,Yafes Sahin +15325,Tony Ciccone +1707849,Martin Hartmann +1490528,Barker White +1846919,Andy Steinman +94240,Noel Archambault +1194083,Alain Lachance +1277936,Sung-hye Heo +144559,Masashi Chikamori +1646403,Ramesh Chalsani +1824239,Carrick Welsh +1579995,Lena Hanno Clyne +1684362,Steven Saxton +1376489,John Estes +1001707,Martin Lord Ferguson +1705465,Taseer Shaikh +1718316,Donald Rivers +1442720,Kirill Zubkov +590392,Leonard Michaels +1622456,Corinne Bogdanowicz +1775642,Matthieu Rousseaux +1273226,Scott Winlaw +117962,Svend Rindom +1317037,Miles Roberts +1120202,Tamotsu Shiina +198375,Maury Dexter +1456629,Eiji Yamamori +1640638,Florian Titus Ardelean +967123,Nicola Marsh +1766573,Luciano Serra +1620545,Mohamed Hagad +1590940,Yohei Takamatsu +76081,Paul Goldman +1367025,Amaury Ovise +970590,Kirk Bodyfelt +76247,Charles Herman-Wurmfeld +1797461,Salvador Gomez-Lopez +1680408,Valerio Olivo +1808395,Hussain Amarshi +75877,Malinda Bennett +1378699,James Paradis +1416812,Margriet Procee +1511182,Tim Ridge +499017,Martha Holmes +95995,Genie Joseph +1828379,Chris Altorf +1783232,Toshio Hasegawa +1779186,Kristian Magnus Svor +1466580,Mark Bianculli +1686879,Vladimir Martynov +1573342,Pia Hoffmann +1140270,Michael Starrbury +1519286,Aziz Rafiq +1816449,David Farnsworth +957826,Mark Slone +566284,Evan Turner +1769386,Evan Davies +1758275,Richard Cybulski +48981,Janne Furch +1601457,Nikos Despotidis +1884735,Alan Ciantar +147022,Vijayendra Prasad +1148277,Steffen Schlachtenhaufen +1325584,Bridget Ostersehlte +12949,Priscilla Presley +1050991,Leandro Lucchetti +1400679,Thomas Beecher +57722,Sascha Wolff +1102875,Sandra Valde-Hansen +1305414,Jean Lefait +109196,Kazuki Nakashima +1448312,Bent Holm +1186280,Melanie Jones +131470,Paul Strand +1635295,Ernest Rydberg +1334764,Enos Desjardins +143891,Woody Crocker +1087737,Artemis Joukowsky +1353218,Laith Majali +1204410,Robert Mullan +1347723,Eric Lewis Beauzay +1381783,Sven Davison +12575,Patrick Loungway +230598,Emidio Greco +58327,Jonathan Shestack +1815945,Jacob Riehle +1797508,Pablo Romero-Fresco +1516457,Catherine Riley +1427379,Dana Arnold +1458548,David Bryan +1283762,Borja Crespo +23978,Véronique Lange +1857572,Gilda Garcia +1313033,Misty Talley +1039598,Matt Jerrams +545507,Anuj Sharma +1387539,Derek Del Puppo +58189,Justin Lin +1087326,Michele De Angelis +1276304,Glen Kasper +1620542,Abbas Helmy +85735,Einar Guðmundsson +933253,Zoltán Huszárik +1841563,Matt Fennell +1199698,Stephen Smoke +1821898,Ryan Creasy +1688356,Juan José Stagnaro +1123892,Joseph Delaney +928323,Russ Howard III +1319217,Manabu Endou +1741071,Karla Melendez +1780481,Ashley Levy +1857588,Zoé Van Cauwelaert +1146900,Andreas Steinhöfel +1340096,Paul Frost +1411066,Sarah Monzani +1653496,Rita Ghosh +555549,Ken Hagino +98553,Glendyn Ivin +94269,Jackson Douglas +1084965,Dan Marks +1195653,Arne Moen +1601710,Ljiljana Andjelkovic +1662635,Sally Rosenthal +1451910,Drew Rebelein +107464,Richard Hilliard +1675389,David Reuben Schwartz +23583,Hubert Pouille +1465601,Jason Carlin +1729056,Stacey Keppler +1872422,Jodie Hellingman +85309,Kihachi Okamoto +570154,Stefano Caprioli +1547155,Niall Brady +148077,Alexandre Dumas fils +1155533,Nicole West +1026369,Rene Perez +63574,Cheung Ka-Fai +129693,Johanna Spyri +1732669,Sarah Alcorn +1225107,Meredith Edwards +590471,Margaret Gibson Gilboord +1753577,Javier Carreño +231593,Sanjay Sami +1520695,Andi Crumbley +30805,Keith Clark +1399617,Paul E. Loeschke +1645938,Prapul Betapudi +1453125,Aleksandar Papajic +1432141,Jirí Krejcík +111772,Chris Jaymes +1448118,Benji Aflalo +1267834,Cécilia Blom +1448769,Bastian Hopfgarten +1611979,Jackie Mulhearn +70765,John Nicolella +1360836,Pedro Javier Muñiz +1322445,Elizabeth Weintraub +51531,Lara Mazur +1427144,Monja Wiik +1427405,Evgeniy Privin +1135102,Jarin Blaschke +1003237,Dorota Kobiela +1428870,Marion Lee +1099999,Denis Rodimin +204484,Ken Burns +568338,Keith Dunkerley +1704831,A. S. Prakash +106597,Konstantin Isayev +1047303,Jack Vaughn +1205986,Mary Ellen Bauder +1518923,Jon Chu +96507,Lyudmila Chekulayeva +1563386,V. Gilyarova +1302430,Joel P. West +1338141,Julia Clancey +1354939,Giuliano Anellucci +1156209,Andrew Cohn +1562782,Clayton Rawson +32096,Pierre Granier-Deferre +1026681,Danny Mordujovich +1182523,Aina Calleja +1031507,José Luis de Celis +1367798,Stéphane Robuchon +1174074,Ant Timpson +184927,Mark Jay +587440,Ryan Finnerty +1136946,Masahiro Fukuma +1797400,Mark Edwards +1817425,Robert Campbell +1764698,Avishai Avivi +1020742,Dana Nachman +1763664,Catriona Johnstone +1006915,Jonathan Lucas +1401569,Sophie Leclerc +553075,Brian Hamblin +1448867,Michael Maggio +1581561,Nikki Jones +968069,Jason Banker +120254,John-Henry Butterworth +1841586,Avram Dodson +128610,Johan Brisinger +1622327,Leiha Jackson +231498,Jin-ha Oh +1193463,Pierre Chomarat +1679410,Betty Blattner +1646515,Olivier Beaulieu +1087016,Hachirô Konno +1399639,László Bille +1334805,Monica MacDonald +1288503,Einar Englund +1548596,Stéphane Bergeron +1619474,Robert Whitehouse +1303421,Eugene Abizov +1412487,Lorenzo Donati +1117879,Ali Bell +1412915,Sébastien Jeannot +1425342,Michael Umble +1612377,Anna Kagarlitskaia +978545,Harold Buckley +1454287,Paul Aiello +1572867,Martin Hesselink +105091,John C. Broderick +1777656,Maude Turcot +32782,Ed Callaghan +169743,Jennifer Spence +1051722,Chris Goodes +1625937,R. Pesetskaya +1485210,Charles Aubuchon +1646565,Mathieu Girard +62290,Marc Gabizon +1800049,Barry Keil +1056733,Joe O'Brien +1540835,Rajnish Hedao +1632794,Emily Plummer +35099,Alessandro Pesci +1312411,Momčilo Mrdaković +1141814,Matthew Cervi +176485,Avie Luthra +1326458,Jordan Crockett +239995,Bruce McLeod +1372087,Katia Boutin +1752050,Jeff Cummings +1748597,Olga Rodal +1592444,Nobutaka Yoshino +933695,Helena Taberna +1623956,Lindsey Foret +1367829,Adrien Adriaco +1547671,Patrick Roig +1665462,Melanie Baker +53837,Paul Thomas +1602278,Wolfgang Pfeiffer +1407700,Paula Jane Hamilton +1844148,Pavel Kazakov +936916,Michał Szczerbic +66258,Jim Burnstein +533375,Álvaro Sáenz de Heredia +1187344,Boris Kunz +1583180,Christopher Ciborowski +1851886,Niko Dalman +235857,Marjorie Carleton +1042452,Ben Lovett +1197878,Jean Nohain +143285,Larisa Shepitko +1069215,Susie Conklin +41416,Eric Ambler +1533711,Sarah Webster +1816357,Matthew Webb +125384,Miklós Vámos +56919,Jürgen Hebstreit +1669333,Gary Kanew +1619181,Shinji Kobayashi +31873,José B. Carles +98253,Gregorio González +1357981,Georges Glass +1357955,Lisa Clark +1367945,Steve Smitherman +1362518,Matías Cruz +1308183,Greg Snider +40561,Guido Maria Kretschmer +587567,Anthony Pierce +1012238,Andrea Roberti +69648,Christer Nilson +1879678,Paul Dinh-McCrillis +1417872,James A. Costello +1797499,Juri Bryan +560264,Eduardo Mignogna +1759500,Yip Ka-Man +1544494,Bernard Walsh +1726038,Greg Russell +1093994,Raymond Legrand +1314471,Krystal Phillips +1726047,Szilvia Dobrovitz +1658450,Kibun Shinbayashi +1155190,Max Tera +1047249,Hirohito Watanabe +38694,Beth Rigazio +227367,Milap Zaveri +1327835,Ruben Sebban +554822,Robert Thomsen +19741,Alex Haley +126145,Sarah Gibson +29720,Abel Gance +1108834,Snežana Penev +1636678,Krzysztof Zbieranek +1091310,René Garriguenc +1029284,Jean-Paul Civeyrac +1326091,Laura Marolakos +1008623,Horace Jackson +58193,Kelly Matsumoto +1409869,Dragan Kaplarevic +1402252,Mark Rimmer +949054,Michael Christensen +1451769,Abel Irribaren +95527,Leo Townsend +1340185,Jordan Bell +1700494,Fang Pei-Lin +1546026,Kevin Jenkins +1417837,Brendan Handscombe +551730,Shôhei Andô +1651538,Petter Ericsson +1410116,Anthony Rivera Jr. +1316035,Borislav Pekić +977941,Matt Tolmach +1354329,Jirapat Thannoppachat +53859,Karel Zeman +1747168,Clodagh Deegan +21228,Sandro Continenza +1576757,Cheng Wei-Hao +1208880,Fabián García +1544359,Miguel Araujo +558937,Rokuro Mochizuki +1818792,Michel Boujut +1760134,Dave Chornow +212751,George Shamieh +1348587,Tatjana Strugar Dragojević +1322764,Vasily Serikov +1367215,Anna K. Findlay +1869458,Peter Borbely +1581040,David Michael Conley +1315186,Gekidan Inu Curry +136364,Tormod Ringnes +1047978,Sarah Beaman +1883786,Noko +37126,Jean-Paul Le Chanois +19948,Daniel Iron +91546,Piero Umiliani +1125589,Guglielmo Vincioni +1606289,Andrea Petrucci +1570083,Monique Friedlander +1345610,Chase Paris +1594069,Nicolaus Waetjen +114296,Marco Beckmann +432083,Tatsuo Nogami +1183431,Alexandra Lescaze +68370,Gianguido Spinelli +1797601,Charles Spurgeon +1335140,Tom Denier Jr. +1692107,Romeo Herrera +1408378,Simon Chase +1069668,Ryan Copt +1835567,Ann Montesanto +1725555,Erin Westerman +1043264,Hisashi Inoue +5970,Pier Paolo Pasolini +1085030,Alexis Forte +1375046,Lorena Muñoz +55333,Sebastian Wehlings +1456627,Hirômi Yamakawa +142424,Lee Yoo-jin +1821897,Michael Feduccia +1362660,Aida Zyablikova +1099118,Chester Gore +1547712,Ethan James +937722,Margot Benacerraf +124856,Zaida Bergroth +583466,Rustin Cerveny +1408204,Ian Waggott +56662,Felipe Marino +1042175,James Milner +1331532,Jason Mann +54745,Bárbara Pérez-Solero +1652287,Marjorie Owens +1372094,Tracey Phillips-Boone +1008444,Marie-Pierre Huster +1192322,Stanley Colbert +1179270,Peter Simonite +225094,Felipe Joffily +1872426,Kim Hauxwell +77458,David Von Ancken +28725,John Appel +1252900,Jonathan Koch +1312186,Milica Todorovic +1828355,Jeff Chapman +1460593,James Forrester +1612140,Agata Chodyra +1318915,James Lorimer +1196470,Dusty Mancinelli +1583183,Abiiba Howell +87878,Christian McIntire +1752049,Steven Addair +1348585,Jovana Cvetković +507842,Doron Paz +1381500,Jerry Rapp +13758,Peter Schmidt +117808,Marcus DeLeon +105729,Stewart Wade +38587,Camillo Teti +1691513,Sarah Zaunbrecher +1335411,Jean-Philippe Moreaux +1086434,Kenneth M. Dodson +1175910,Agustín Velázquez Chávez +1466674,Susannah Cahalan +1623935,Jen Marren +1571057,LeAnne Mims +15489,Don Behrns +1810161,Marie-Soleil Dénommé +1792032,Stephan Sommersberg +1530235,Alyn Waterman +1353259,Cosmo Campbell +1400436,Koah Kruse +1075095,Rob Paris +1139814,Mitsutoshi Tanaka +1183545,Todd Banhazl +1403728,Kira Bohn +113727,Steven W. Carabatsos +236378,Anna Chi +1634783,Ed Gleason +1773046,Sean Sheridan +1096191,Nutt Nutvech +1762453,Barry McCormick +152397,Richard Carpenter +1403760,Warren Orchard +1069957,Karen Krenis +1415902,Sydney Cowper +1586501,Carol Hay +75994,Penny Southgate +1594810,Li Alembik +81230,Charles Redland +128980,Andres Boulton +1814981,Tom Le Goff +1491840,Roy Durbin +1324461,David Crossman +1574446,Anne Cadiou +1704830,Shadab Rayeen +1903935,Adam Janeczek +1462275,Jaki West +1074968,Karim Boukercha +1070054,Jane Fleming +1183573,Alan Pudney +1401971,Jeff White +549551,Mitsuki Nakamura +65382,Sofa Surfers +1584745,Aleksandr Samulekin +53914,Jean Eustache +1658879,Erika Gourvitz +1394970,Greg Michael +48995,Christian-Jaque +1409879,Lili Makk +1120108,Biaffra +1189067,Michelle Ashford +135012,Ken Takeuchi +166556,David Kukoff +1660020,Tassaduq Hussain +1015886,Brent Kunkle +794782,Matthew Akers +35525,Richard T. Heffron +210389,David Del Rio +558442,Ashley Jephcott +31607,Giuseppe Aquari +142026,Matt Flannery +60727,Danielle Legovich +1746457,Anna Haigh +1701829,Michele Logan +131836,Apoorva Mehta +1585729,Jared Dwyer +1322956,Martin Edmond +1284290,Yun Il-joong +190398,Nick Newman +1046134,Molly Conners +1207384,Filippo Gentili +1434784,Alice Shure +90363,Douglas Jackson +543250,David Farr +1295114,Thomas S. Byrnes +1590917,Don Challis +1301273,Robert Donne +1423352,James Bolenbaugh +1537851,Jack Utsick +1535968,Gareth Cousins +670174,Soji Yoshikawa +1086289,Mildred Van Leeuwaarden +28684,Anna Gavalda +1196727,Ryan Lewis +1727207,Felipa Cabitac +97796,Don Daniel +1603186,Ryland Aldrich +937503,José Ramón Elizondo +1086442,Hiroshi Onishi +1139971,Ornella Zanelli +592854,Johannes Weiland +22467,Umberto Lenzi +1646554,Jean-Pierre Flayeux +1815937,Patrick Smith +67113,Greig Fraser +1588193,Benjamin P. Ablao Jr. +132507,Nobuhiko Sakoh +1490054,Joerg Steineck +1116934,Russell Eaton +1411797,Martin Sullivan +1183177,Josef Střecha +139448,Jonathan Roche +1461669,Jean-Pierre Mas +125796,Rauni Mollberg +1485211,Sandra Sanders +1519346,Jessica Shannon +22504,Martin Blankemeyer +1491144,Othello J. Ubalde +1194832,Jonas Struck +1650633,Vlad Horodinca +84804,Brett Turnbull +1660726,Fern Hodgson +9598,Ray Anthony +1037696,Yoshinobu Kamo +1145630,Jean-Carol Larrivé +1439368,Magdalena Zyzak +1611070,Jakub Chilczuk +1341150,Erika Hood +62795,Adam Del Deo +198201,Larry Stewart +30052,Leigh Scott +1829874,Philippa Wood +28261,Marcel Aymé +1387845,Jim-Yuen Yu +1357063,Darrin Prescott +1526057,Diana van de Vossenberg +1177898,David Rosler +1636692,Paul Rice +1831212,Johan Berthling +1393418,Timothy Hedgecock +932759,Brett Haley +1302410,Jerry Gilbert +1374466,Guillaume Le Gouez +99242,Lorene Machado +583766,Shawn Holmes +1478420,Anthony Bozanich +1785031,Raghavendra Thirun +1763581,Gordon D. Shirreffs +932883,Гавриил Троепольский +970836,Jeremy Gordon +1805960,Jarkko Virtanen +1297756,Mike Velarde +1573334,Andrew Avitabile +1456977,Mohammed Abou Nasser +1514574,Harry Brar +1582725,Juan Carlos Acevedo +222833,Peter Himmelstein +1807,Larry McMurtry +1813742,Bryan Langer +1410559,Katherine Heads +1470531,Dirk Schaefer +969705,Paul Machliss +1044732,Christian Weisenborn +1192401,Junichi Shima +1570609,Sophie Lebeau +1478657,Mary Rose +937888,Simon Scotland +29454,Barry Gravelle +562942,Karin Beck +1575229,Roxxi Dott +82515,Igor Kornelyuk +1441605,Emma Strachman +1162242,Ayhan Ergürsel +1639821,Dave Fleming +1413804,Andrea Alunni +46680,Florian Gallenberger +1340727,Russell MacLeod +12040,George L. Little +1358589,Will Rack +959764,Doug Chamberlain +1585359,Patrick Gauthier +1292997,Noah Rosenthal +1657387,Lída Novotná +1646496,Kyle D. Krajewski +1685943,Melissa Blakey +1367056,Hayley Arabia +1341766,Jennifer Getzinger +107783,Marc Hoeferlin +1293083,Ryeogyeong Jeon +71405,Pieter Van Hees +1537983,Harry Maret +1188276,James T. Bruce IV +1191477,Jo Chul-Hyun +110513,Margreth Olin +143143,René Bohet +939455,Joseph Nasser +935389,Boris Grigoryev +38695,Julia DeVillers +1227247,Walter C. Miller +64907,Kwong-hung Chan +1524302,Diana Coles +584950,G. V. Prakash Kumar +229997,Greg Mauer +84515,Katherine Brooks +1475696,Wendy van Veen +1349080,Isobel Griffiths +1111120,Salvador Paskowitz +103699,Gary Yates +1726776,Doug Fairall +1324923,Jo Mapp +1081464,Anirudh Ravichander +16674,Theo Bierkens +1372423,Daniel Smith +178877,Larry Kase +126519,Dai Ning +110228,Rajat A. Barjatya +76452,Jace Anderson +100847,Francesca DeLaurentiis +14007,Phyllis Dalton +1309224,Karmen Leech +1591268,Ken Sanders +1639015,Ivar Baungaard +1069845,Erika Toth +1088500,Paolo Levi +999832,Johnathan Brownlee +1460042,Diana Price +137057,Monique Gardenberg +1408395,Frans Wetterings III +1344834,Eric Lalicata +1161120,Jordan Monsanto +1202779,Irena Stepic +1185946,Fajar Yuskemal +1057674,John Rathmell +1106971,Diana Dreesen +1051295,Álvaro Longoria +1646546,Marie-Pier Couture-Alain +1824254,Rene Adefarasin +1640639,Flora Pop +1544662,Lupsa Armand +1774220,Ebrahim Jahromi +129037,Douglas Livingstone +1026682,Lance Kaplan +1538204,Wittney Horton +1122371,Amy Barnes +1539651,Juan Manuel Herrera +90638,Phil Weinstein +1868962,Mohamed AbouAhmed +1718314,Paul Mollan +1729079,Stephen Bruno +1533251,Sylvio Gonçalves +1429809,Doug Bryan +1594179,Kirtsy McKenzie +40690,Jan Böhme +1376480,Tomas Leyers +937959,Allyson Bosch +1880052,Charles Merzbacher +260050,David Menkes +1020767,Alan Yang +1342032,Vadim Trunin +1572612,Adam C. Londy +987025,Paula Goldberg +1642592,Eckhardt Milz +591426,Marcin Wrona +1817482,Mike Ladman +545640,Harpeet +1661327,Gary Harper +1518516,Genevieve Walker +1766552,Laura Mazza +1433021,Chris Carpenter +80936,Junichi Higashi +130854,Chris Ronis +1697081,Teresa Ekman +77867,Stephen Low +1423712,Julie Daly-Wallman +574655,Arthur Vincie +1515074,Kirsten Hansen +1738134,James M. Cox +1175903,Truman H. Talley +1718780,Jay Gelzer +53120,James DeMonaco +96983,Jerry Thorpe +1867473,Michael Tollin +991724,Eggert Ketilsson +1156260,Brad J. Silverman +1582568,Luciano Vignola +1611776,Howard Burd +1427094,Xavier Guerrero Yamamoto +1688260,Jonas Larsen +1735128,Shelly Pond +1364888,Charles Vassar +222363,Alex Lipschultz +586299,Dominique Boutonnat +979724,Ilona Smyth +1750922,Tommy Gormley +1468062,Rachel Lang +59446,Benoît Charest +1645435,Yvonne Coppard +1825450,Jackie Merlau +1463784,Yuhon Ng +1764747,Sabrina Mikolajewski +1308201,Noah Greenberg +1322596,Riccardo Amorese +1570525,John Andrew Cameron +1726046,Melinda Daru +68373,Oury Milshtein +1200565,John Butler +140166,Yabo Yablonsky +231595,Vaibhavi Merchant +1193051,Matt Noonan +35336,Sandra Smolski +1869438,Tressa Giardina +35407,Dimitri Buchowetzki +1409864,Bryan David Moss +1046602,Brian Stultz +1638558,Roma Wnuk +32419,Jan S. Kaiser +51529,Randolph Peters +1726774,Howard Karp +996681,Tyron Montgomery +108097,Larry Latham +1046691,Sara Quin +1830193,Steve Pugh +1588241,Ron Barron +1824255,Ben Adefarasin +1162321,Jacob Roebuck +146932,Selma Lagerlöf +1525145,Michelle Chung +15875,Mike Brewster +1427703,Chan King-Sam +1199264,Carol Ryrie Brink +1428877,Michael Fairbairn +1554239,Veronique Huyghebaert +1797398,David Coujard +23174,Nils Dünker +526180,Jessica Navran +225245,Antonietta De Lillo +1354031,Frank H. Booth +1598442,Gintare Balandaite +36114,Sebastiano Celeste +968862,Shawn Simon +1493523,Benjamin Forrest Davis +971793,Mark Rutledge +1518665,Mari Luz Gómez +48026,Robert Neppach +1573038,Elizabeth Robinson +1384209,David Lawrence +1412142,Tommy Kokvold +1621737,George Burgess +1488219,Jessica Albertson +1797506,Ryan Long +239858,Sunao Katabuchi +37447,Muriel Box +1467416,Ann Marie Clark +1709310,Zach Hyatt +1118003,Sergei Kuryokhin +1314431,Raymond Quint +1167745,Sophie Révil +1642463,Steve Evangelatos +1234931,David Latt +60282,Sean Cossey +1136921,Tyson VanSkiver +181904,Bruce Graham +1676193,Sean Cohen +1349482,Frederick Pusey +1335413,Gianfranco Protopapa +1121068,Dinos Dimopoulos +1496834,Colin Miller +59913,Sandro Petraglia +1319929,Daan Stuyven +1466927,Steven Clensos +1220930,J.M. Dematteis +1528375,Luis García Luque +1311467,Luis Osvaldo Repetto +1791410,Franco Fontana +1352117,Kashiko Kimura +231461,Hans Rutten +1636682,Jarosław Góralczyk +108446,Brett Whitcomb +1392611,Doug Cooper +1195747,Lou Lusty +1414919,Kirk Michael Fellows +1396074,Carl Carvahal +1143001,Arnau Valls Colomer +1570523,Luke Flegg +1186924,Robert J. Koster +1304139,Michael Chariker +22877,Wilhelm Neef +127022,John Galsworthy +101872,Philip McKeon +1354326,Kanuang Dumkeaw +1624468,Yoshiyuki Miyazaki +1301659,Gina Terc +60108,Kerith Creo +1634785,John McCollam +1600455,Dilek Yapkuöz Ayaztuna +80386,Zoya Akhtar +929256,Jodi Picoult +999568,Cliff Culley +54359,Henri Lanoë +1846738,Gabi Brown +1132401,Hugh Reticker +1183168,Aleksandra Stojanovic +1547709,Luca Raciti +135363,Ralph Wheelwright +1646593,Samuel Lepage-Bedard +1025685,Rick McKay +1491842,Alex Kim +1399471,William Klayer +1529747,Shinnosuke Andô +1297858,Jennifer Wessner +108888,Brenton Spencer +1154151,Thomas Dybdahl +1658143,Xavier de Lauzanne +120014,Michiaki Watanabe +1560026,Jeannette Brill +137742,Howard Wilson +104727,Maurice Elvey +1015907,Gilles Waterkeyn +1091281,Yongyoot Thongkongtoon +35775,Mandira Shukla +41896,Jay Stern +1412753,Jamie Whitfield +5931,François Dagenais +1369373,Mariana Love +113600,Susanna White +1080203,Masamune Kogima +1163116,Mathilde Dedye +1721399,Shaik Fareed +1456617,Hiroko Minowa +1354351,Kiatikorn Phadungchai +1447205,Bethesda Brown +1403478,Don King +1560960,Lee Caplin +1548109,Justina Mintz +1170535,Andrew McKee +1320497,Guy Holmes +1412756,Chris O'Connell +966545,Ben Smithard +1054391,Maksim Korostyshevsky +2186,Nathalie Cheron +70236,Alessandro Calosci +23619,Katalin Jakots +1632948,Georges Mardiguian +1673707,Luke Dylan Taylor +1428039,Biodun Oni +1496082,H.M. Gandy +549315,Jed Kurzel +104178,Radley Metzger +1554063,Saerom Kim +1334537,Ana López Puigcerver +34397,Nora Kay Foster +46871,Sylvia Ingemarsson +33717,Giorgio Capitani +1685940,Steve Murphy +589864,Robert Rhine +1766557,Marksen Gaukhman-Sverdlov +1560957,Marley Brown +116272,Douglas G. Davis +1687043,Josh Henson +87926,Michael John Warren +1399478,Mandy Arnold +150777,Mari Asato +64000,Wolfgang Ramml +1732088,Cheryl Pickenback +1748535,Ian P. Gilchrist +495528,Hjalmar Bergman +194777,Jennifer Stewart +1174849,Leopold von Sacher-Masoch +1348592,Ognjen Obradović +1434458,Leslie Barker +1350137,Richard John Baker +1417876,Tommy Aagaard +1119418,Hugo Gélin +51959,John Kafka +1459747,Kevin Labanowich +1544732,Marvin Summerfield +34017,Daniel Sánchez Arévalo +1162253,Victor Jenkins +36334,Natascha Curtius-Noss +1727720,Hans Christian Kock +1320558,Elizabeth Symes +1519327,Sam Zvibleman +84439,Julien Leclercq +1379052,Leon McFarlane +1547773,Marie Boller +1641642,Wes Gleason +991671,Brett Hedlund +1541737,Connor James Delaney +97373,Tetsuo Imazawa +1677475,Faiza Mujahid +1141538,Michael Felker +1056130,Peter Levin +605813,Patrick G. Donahue +213379,Srđan Dragojević +59347,Dirk Lisowsky +1555495,Dick Hansen +562326,Grigori Kozintsev +124715,Bobby Tahouri +23688,Charly Steinberger +128639,Armand Mastroianni +112682,Spiro Razatos +32418,Michael Mladenovic +1530232,Elliot Jenkins +5642,Albrecht Konrad +64401,Presser Gábor +107011,Gabrielle Beaumont +1868972,Jim Lacamel +1622807,Pablo Maestre Galli +1453524,Misha Klein +1039710,Eric Kaye +1287626,Eddie Vaisman +1448299,Thomas D. Moser +1444301,Patrick Duchesne +109913,Brandon Beckner +73273,Mikel Salas +117589,Wally West +1392256,Dave Newton +66521,Douglas Cumming +1849494,Spencer Hahn +1634782,Bud Nolan +1350281,Jan Vlasák +109531,Tommy Stovall +1325916,Gilly Poole +1419243,Yoseph Yudi Hermawan +1795353,Ron Resnick +108997,Bill S. Ballinger +1167544,Seichiro Uno +990036,Chelsea Staebell +1141078,Franck Dion +229180,Richard Gray +1568832,Matthew E. Taylor +1023711,Adam Stockhausen +1188738,Burkhard von Dallwitz +1497346,Hana Geißendörfer +1451786,Koji Honda +1773274,Dana Cobb +1484064,Parke Levy +1637849,Sunita Gowariker +1185043,Clyde Lynwood Sawyer +1439345,Basil Shadid +1815919,Daniel Perez +1849512,Michael Bailey +144476,Hiromasa Yonebayashi +582888,Chrystale Wilson +185492,Michael O'Hara +136531,John Alexander +159492,William Wood +13885,Franz Schulz +232037,Dominick R. Domingo +930991,Weston Fonger +1401137,Baljot Bhatti +995569,Paulette Victor-Lifton +1780167,Edda-Maj Kumas +552977,Sarry Long +75993,Cameron Harris +228482,Denise Young +1429472,Chuck Norfolk +1666530,Serge Lobo +1395366,John Bair +57908,Rex Weiner +1658440,Kazutaka Ozaki +61711,Jorge Goldenberg +119512,Paul Cowan +1039360,Hugh Parks +1098602,Vladlen Bakhnov +1896774,Shem Ellis +1827279,Jeff Lietz +1335147,Trevor Gates +1118582,Stephani Lewis +1642311,Lisa Mejia +1144687,Austin Strong +1573931,Kyle Cribar +1106274,Owen Easterling Hatfield +1864620,Elke Faro +1317353,Layne McGovern +1176140,Ryan Glorioso +564820,Zhang Jialu +1163021,Ute von Münchow-Pohl +1441127,Gabriel Black +36650,Dejan Urosevic +1702800,Jim Eastburn +1311027,Oleg Sirotkin +1519342,John Nadalin +1450097,Sandra Steinþórsdóttir +1886275,Sigurdur Pálsson +23883,Eric Small +1190770,David Fred Masselink +1316581,Eiko Ishiwata +1492996,Jevgenijs Margolins +1759796,Geraldine Morales +1164812,Yan Pototsky +1403084,Christopher Scheetz +172477,Mark Vance +1384715,Winnie Lau +1419130,Justin Nesbitt +103356,Irving Gertz +1336709,Jerel Levanway +32836,Jan Krüger +1459239,Luke Bradshaw +128296,Yevgeni Shvarts +1482842,Philippe Leprince +407465,Eric Renault +72679,Vince Tempera +605443,Shiro Toyoda +1420860,Arlo Markantonatos +931761,Sandhya Suri +1411135,James Eckersley +1064940,Violeta Parra +1208584,Tommy Faircloth +229893,Bill Mellow +1742327,Robert Taylor +1405261,Kacy Palmieri +1453129,Marija Pejin +952397,Miles Levy +935933,Ian Kessner +1738669,Joanna McCarthy +1862960,Bernie Kirsch +133601,Taeko Tomioka +1700888,Layton Burton +562945,Shane Sato +90522,Daniel Mann +1181130,Scott H. Campbell +1339652,Abbi Collins +1200486,Arty Nelson +1327144,Sue Whitaker +75879,Suzan Derkson +127678,Harmon Jones +1829627,Anne M. Edwards +132512,Kazuhiko Yusa +1605794,Bert Sternbach +1382121,Michael Pilz +114454,BJ Davis +29079,Dean Barnes +113902,Gail Simone +34232,Otto Meyer +114367,Heinz Herald +1378402,Sheldon S. Goldstein +1610194,James Mark Stewart +221348,Max Zihlmann +1172462,John Portanova +973712,Daniel Backman +1411130,Aaron Trinder +1066705,Vince Marcello +71145,Eric Allaman +1397872,David St. Onge +48555,Alan Ett +1314294,Shweta Venkat Mathew +1298877,Steve Estrada +1252207,Tony Hernandez +1581818,F. Sherwin Green +1011958,Elliott Glick +1269542,Alfredda Brilliant +1056278,Cedric Gradus Samson +1620541,Kamal Abul Ela +1367123,Critter Pierce +1673759,Vishnu Rao +1872438,Joanne Paterson +73917,Klaus Peintner +1031758,Patrick Johnson Sr. +1497319,Mac Quayle +1351463,Stephen Franciosa Jr. +1386320,Gianni Biasetti Jr. +1561350,Scott Andrew Armstrong +46678,Herbert Jarczyk +1512674,Jan Krupp +1367061,Patricia Eberle +149110,Harold Goldman +1642537,Arun Matheshwaran +552493,Nagateru Kato +53619,Petra Barchi +1459042,Kaarlo Nuorvala +1429321,Brad Zoern +1774797,Julie Naas +66711,Melvin Simon +61318,Lynn Falconer +235042,Valia Santella +1412580,Davin Snip +83979,Mike McCready +589249,Krzysztof Winiewicz +238618,Roman Borisevich +103365,Harry Komer +999563,Colin March +1294786,최광식 +1426627,Jonathon Narducci +1076349,Wojciech Staron +1423004,David Metzner +554361,Akira Senju +1031770,Nicole Schott +1623941,Steven Onoszko +67160,Steve Adcock +1006221,John C. Champion +1601198,Jonathan Corona +1720983,Robert Fewkes +1548097,Elizabeth Sisson +1616392,J.R. Hawbaker +1387721,Bodie Thoene +34382,Bernd T. Hoefflin +64692,Li Yuk Wai +567244,Junji Kurata +252729,Richard Hobert +1418929,Christopher Sykes +1711268,Sarah Kaminsky +1631643,Annalisa Daughety +1492298,Jos Wheeler +553566,Daniel H. Wilson +1529567,Masazumi Kawanishi +307141,Ebru Ceylan +55941,Ainsley Gardiner +1531498,Gloria Conrad +43638,Fons Merkies +1606198,Leonard Petersen +1857583,Hector Salomon +38919,Tatiana Vialle +1360847,Viera Dandová +1660187,Jan Hellriegel +1713681,Dušan Joksimović +1509631,John Kyriacou +557661,Gert de Graaff +1511510,Holly Atchison +1409307,Caroline O'Reilly +593017,Basu Chatterjee +1050842,Dejan Petrović +1068750,Andrei Platonov +1149058,Paco R. Baños +1082654,Saverio D'Eugenio +549133,Aleksandr Ksenofontov +1867541,Gwenaelle Larpent +563117,Patrick Doyle +43634,Robert Kievit +1120107,José Luis Arrizabalaga +1054353,N. Krishna +1094533,Gino Campase +66130,Charles Pattinson +1630270,Michael Maney +1610101,Tianxing Wang +1390362,Martin Hill +1197729,Leonid Shvartsman +1722922,Masaya Endo +1868472,James Vinblad +1335143,Marko Dimitrijevic +1132460,Michael Pitiot +1820252,Sergio Vera +109197,Yoh Yoshinari +1635161,Leslie D. Bennett +108849,Vexi Salmi +1609039,Robert Ansbro +1647878,Greg Kuehn +20202,Nadine Perront +1404195,Guy Broussard +122582,Jake Paltrow +1857684,Jozie Conte +1394931,Carie Wallis +69450,Steve Milne +1406079,Corey Welk +22175,Peter Timm +98867,Jon McBride +1488077,Park Yeong-jun +1392232,Daniel Brennan +1378682,Matteo Cocco +1524565,Christopher Gerding +62897,Carl Bessai +132586,Gavin McLean +101974,Bill Ewing +1586590,János Csáki +1321905,Gil Brealey +1755109,Amber Jo Weedon +1328759,Stephen Webster +47095,Tony Malanowski +1273046,David Watkins +1292272,Michael Spiccia +1387615,Ashley Nagel +1857680,Jessica Poyton +1293457,Rodolphe Lauga +1403926,Stephanie Kulbach +1456696,Brian N. Bentley +1838187,Adam Grant +25168,Bertram Millhauser +1016403,Hope Perello +87671,John Moffitt +1176171,J.B. Smith +1324041,Morgan Conrad +1630283,Andrew S. Welborn +81507,Fabio Carpi +1500348,Aruko +1583402,Prue MacLeod +60725,Jim Kammerud +1542372,Matthew Strange +1354344,Supitcha Sripan +98505,Benedict Bogeaus +114004,Noah Buschel +1403402,Brandon Schaafsma +1733800,T.J. Barrack +1382730,Michael Brown +1324972,Gervacio Santos +1475894,Karrie Cox +1783009,Ravindra Badgujar +1197076,Mj Mynarski +53073,Lynette Howell +135424,James Warwick +1755267,Hendrik van Kets +1548028,Wendy Nomiyama +1526014,Sebastian Mery +1793104,Olena Kuhtaryeva +1032647,Vasant Dev +103691,Eve Morgenstern +49626,Ralf Hertwig +126127,John W. Gossage +1838186,James Baker +1115973,Eric Hurt +63956,Eric J. Goldstein +1759328,Matt Massarella +1781649,Riccardo Bacigalupo +1178898,Pat Sweeney +1527481,Craig Schulz +1819033,Richard Overall +1027550,Joey McFarland +1711834,Aaron Hartline +104346,David F. Anthony +1425359,Chiara Tripodi +224961,James Cane +1884733,Óscar Romero +239964,Jim Naughton +1309945,Kumiko Ogawa +1085785,Russell Wolfe +928299,Tommaso Ortino +1272393,Lyudmila Kusakova +105278,Scott Anthony Gould +1403454,Angus Lamont +8998,Irvine Welsh +1556424,Jamie McPhee +1782623,Tatsuya Yamauchi +1437959,Stuart Conran +33149,Ioana Corciova +1027036,Theodore Pratt +1691498,David Bush +1276786,Véronique Bruque +59394,Heinz Thym +1203510,Maurizio Salvatori +1412717,Mihail Yanakiev +558105,Trevor Horn +36514,Paul Claudon +1722513,Ludwig Bruckmann +227554,Christopher Dodd +418836,Clyde De Vinna +1559022,Harry Cordwell +27677,David Beatty +1158098,Michael Montes +1637925,Alison Sanders +1208314,Andrea Desroches +1046313,Amleto Daissé +1764714,Wendy Murray +126765,Anubhav Sinha +62415,Eddie Ma +1436542,Eve Butterly +1172380,Danny Roew +174009,Patrick Levis +1402943,Sylvia Parker +1206448,Kyle Hunter +1118774,Vignesh Shivan +1123377,Seiichi Morishita +1512775,Odile Beraud +1095725,Saratswadee Wongsomphet +33842,Richard Caffey +1503510,Tsuina Miura +1073053,William L. Cooper Jr. +1742502,Juan Sosa Rosell +1565693,Béatrice Bauwens +1425112,Sturla Brandth Grøvlen +82951,Tomohiro Kaiyama +216436,Jennifer Wilson +1530219,Francesca Payne +1448322,Niklas Jacobson +583478,MacKenzie Crosby +1403419,Crystal Rainone +1003235,Martin Clapp +87091,Bill Guttentag +1425544,Kevin Adcock +1846921,Joseph Volpe +1027018,Jane Lipsitz +1434856,Albert Markus +1638564,Jenna Kerr +47900,Alan Friedman +1815718,Kevin Penney +1623948,Tom Wills +1046142,Benson Lee +231250,Harry Sherman +1562474,Reid Nicholson +1808030,Jonathan Copeland +1644775,Orsolya Vercz +146665,Aury Wallington +1443564,Rory King +1394327,Kristin Cheramie +1676308,Jim Martin +1770985,Katia Muscariello +1337980,Davide Piotto +224970,Terry Carr +1491838,Christian Calderon +11354,Ben Cooke +213380,Milorad Milinković +1635225,Alvin Zalamea +1115966,Michelle Coursey +1432645,Sean J. Donnelly +78981,Kathleen Tomasik +1017343,Andjelija Vlaisavljevic +1660928,Kôhei Ezaki +1363886,Dmitri Pokras +1728382,Thabo Motloung +1325218,Lisa Caryl +82627,Roy Knyrim +106520,Graham Futerfas +1267321,Marsha Kleinman +1706715,Chloe Grice +587536,Miloš Makovec +20073,Alexandra Leclère +234743,Agenore Incrocci +1574452,Raphael Hamburger +1646437,Stefano Paltrinieri +1772146,V. Kostrin +545210,Sophon Pulsawat +66210,Luis Colina +1579656,Adolf Hejzlar +1650288,Courtney Moore +1544340,Ari Golan +1473416,Emilie Goulet +1094414,Myriam Arougheti +1435645,Raffaele Apuzzo +1729041,Rob Andrews +1175186,José Higino +1462815,Brett Hedblom +1275907,Valentina Bari +1692452,Pete Donaldson +64396,Steffen Reuter +1412627,S. Sivakumar +85283,Susumu Takaku +1337409,Nigel Stone +97233,John Argyle +1281091,Fernando Vizcaíno Casas +999560,Michael Graham-Smith +1519926,Menalon Music +1807564,Rocio Cano +1367187,Fumitsugu Ikeda +1304544,Ramesh Vinayakam +1293653,Andrew Lilien +1285669,Michael Ralph +1116035,Casey Walker +1797518,Tiffany Willis +1294789,조윤진 +1756291,Tom Cowlishaw +1446547,Joseph Yanuzzi +1325648,Claudia Sarbu +1099281,Gerardo Perez Arreola +965877,Nicole Gerhards +1648280,Piotr Kobus +216925,Margaret Brown +1350677,"José ""Pepe"" Ojeda" +91772,Michael Huang +1438920,Mary Bills +1496087,Aidan Hayes +1609036,Serena Warner +1669856,Iris Torres +228291,Mei Liu +1636850,Sean Ludan +186858,Ivan Menchell +1103544,Daniel Zinn +1544272,Arturo Cardelús +176448,Jack Verbois +16734,Olivia Bloch-Lainé +1369361,Benedict Andrews +37261,Meghan O'Hara +1815822,Ron Newburn +64465,Matt Milich +1087694,Lee Hoffman +936763,Carla Garapedian +32840,Christiane Rothe +1056324,Kiyosumi Kuzakawa +1455245,Vanessa Piazza +1556651,George Bianchini +81087,Madhu Mantena +1866265,Helen O'Loan +1784768,Amanda Hanna-McLeer +576218,Roman Perez +1331171,David Newhouse +1652817,Jang Seong-ho +227127,Bernard Wolf +1162659,David R. Higgins +1167045,Laetitia Fèvre +1791596,Adrian Souyris Strumse +1838602,Breezie Brooks +1030499,Igor Voloshin +276449,William Driskill +1591382,Goo Mo +136398,J. Burgi Contner +100982,Wolfgang Suschitzky +1617009,Fernando Rosado +1819154,Bernardo Gomez Martinez +1538720,Nicole Wohl +1661423,Warren Paeff +1308181,Nancy Harrington +1128304,Joey Luna +1577906,Régis Marduel +1667096,Sudipto Mukhopadhyay +996686,Richard Mason +1830502,Gordon Kaywin +1153096,Paolo Giordano +563752,Ken Bruen +1495520,Artashes Andreasyan +72038,Madeleine Gavin +1865518,Adrian Van Velson +648685,Sheldon Candis +80721,Catti Edfeldt +1188046,Guntis Sics +18237,André Génovès +83174,Jorge Colón +1136714,Branko Perak +1577962,Tim Phillips +111417,Saul Elkins +1435646,Andrea Marotti +1759498,Maggie To Yuk-Ching +1168229,Prasad Sasthe +1176354,Damian Montano +1282448,Stephanie Hass +1642954,Daniel Hammond +1588197,Tony Kates +1444779,Mote Sinabel +1491437,Mali Elfman +1354359,Wathit Chanthamarit +1459875,Rachael Tate +1376620,Michael Jari Davidson +1514278,Talia Green +1878827,Joey Setter +928291,Peter A. Cross +1201670,Heikki Takkinen +1039358,Karl Richards +1189235,Andrew Warren +1432640,Michael Cioni +1754601,Jamie Houge +18436,Schringo van den Berg +1376803,Angela Barson +120191,Gerald Schnitzer +1881548,Simjon Spengler +1348006,Robin L. D'Arcy +1673693,Brian Vernick +1020670,Julius Ševčík +1497978,Brent A. Johnson +556857,J.P. McEvoy +1372078,Jason Joseph Sica +1586117,Kayla Cabral +1844501,Jon Mayfield +1804088,Barry Liu +1169452,Chioke Nassor +1417865,Anthony Gordon +1164734,Fredrik Emilson +1547193,Shane Strickman +1507483,Pier Maria Frassinetti +147711,Keith Merryman +1602827,Shirô Urayama +1317937,David Feeney +224654,Yoshiyuki Fukuda +1845779,David Mitchell +17362,Sebastian Zühr +1371672,Jay Aubrey +43404,Ingvar Þórðarson +222332,Tetsuro Amino +1382973,Xavier Lasa +1350260,Denitza Daverova +7336,Lewis Meltzer +1646560,Jean-Francois Gallant +1763657,Ian Glenister +1840084,Brianna Murphy +1036191,Perri Peltz +1289028,Zion Avrahamian +1459760,Adam Schnitzer +1273172,Vincent X. Flaherty +235432,Kimo Stamboel +1770983,Phoebe Sutherland +66189,Stanley Weiser +1542371,Alex Macaulay +50550,Manuel Hernández Sanjuán +1018703,Ira Antelis +1680135,Esteban Lucangioli +142498,Georgi Nikolayev +19509,Jessica Yu +1530085,Elaine Montalvo +1377423,Al Friede +1862946,Dan Cooper +1550774,Teréz Koncz +1551810,Liam Georgensen +1652658,Liam McCartney +1699382,Tara Murphy +96496,Kyr Bulychev +89839,Yuki Kajiura +1780149,Thomas Bertram +1439735,Corbin Mehl +1181927,Jacqueline Charriot-Lodwidge +1425360,Katherine Brown +1572019,Gerhard Wolf +1676472,Erica Rivinoja +1068144,Samuli Valkama +1529269,Mandy Mason +114355,Maciek Tomaszewski +1833912,Nadia Tzuo +423011,Robert Fritch +1006170,D.R. Hood +1871185,Mia Daaja +74403,Dino Jonsäter +64468,Martin Wiley +1395031,Crystal Gomes +1264872,Joe Hill +1785017,Aakanksha Dua +1136961,Sadayo Nakamura +1017367,John Beech +1713064,Craig Field +1073057,Norio Maeda +1354930,Jane Jackson +1263798,Luuk Poels +68543,Mike Eley +1468091,James Boxer +1372882,Derrick Mitchell +1367911,Steve Markham +1611352,Margaret Box +1554749,Mario Uy +1458715,Andrew Kortschak +1810565,Alexei Aigui +1453014,Jimmy Almeida +220702,Owen Harris +40814,Lee Herrick +1132268,Alan Poon +1394952,Cameron Waldbauer +140908,Joey Figueroa +66207,Rachel Cohen +1417016,Kevin Kutchaver +932944,Valerio Azzali +1681818,Ayako Matsuo +194654,John Meier +120548,Sam Wiesenthal +928157,Nanboku Tsuruya +1658461,Kelly Bush Novak +1619746,Kameron Gates +1862951,Joseph E. Thibo +1301336,Michele Josia +1579394,Erica Stewart +1639082,Alex Simone +1401317,James Fonnyadt +125258,David Luther +1095320,Ronald J. Webb +54740,André Djaoui +1367366,Alex Eaton +1045547,Nuno Rocha +499710,Marino Onorati +1292455,Laurie Weltz +1647032,Hannah R. Blackwell +1185752,Robert Gottschalk +1169221,Maj Soya +1318512,Darlene Caamano Loquet +234749,Carlos Bolado +1797227,Irene Armit +1087236,Michael Davis +79111,Mark O'Toole +137174,Richard Rutkowski +1512667,Christian Kratzert +1122718,A.E. Weed +1382322,Devor De Pascalis +15670,William Gibson +53852,Flaminio Zadra +47120,Brandon Thomas +151380,Peter Paige +1067259,Dumrong Songthum +931687,Marianne Dumoulin +1365665,Christopher Brady +1280380,Richard Colton +10253,Igor Luther +1179003,Hiroki Taniguchi +1304297,Joanne Wu +114001,Markus Goller +1113222,Antti Heikki Pesonen +1680434,Bob Marlette +930598,Sadık Şendil +1560952,Cornelia Wolf +86201,Damien Saccani +1775635,Simon Fernandes +1814559,Ryan Cox +59433,Max Reichel +1191653,Orlin Ruevski +1457947,Frederick B. Vega +1550358,Sasha Burrow +111216,Bohdan Sláma +1183750,Sarah Wall +1321444,Ed Palmer +1372211,Jeff Schwan +938690,Márcio Ramos +16735,Sharon Martin +557662,Gert de Graaff +1839934,Bruno Bloch +1548936,László Rajk +129722,Bobbie Page +1403508,James G. Brill +1347235,Katie Lemon +936151,Paul Magwood +18209,Claude Miller +1466443,Chris Dechert +1251963,James Hartnett +1756284,Ros Berkeley-Hill +543289,Cathy Randall +953119,Haim Mecklberg +1029804,Laura Schultz +1485234,Belinda Mravicic +592883,Jack Bravman +1351804,Sebastian Morrison +1400613,Melissa Warrenburg +92935,Don Kempf +1769038,Salvador Torrens +1636663,Alicia Drury +1084808,Santi Errando +24989,Kim Hyun-suk +1279071,Yuriy Butyrin +1407743,Annette Farnsworth +1190184,Michael J. Zampino +1368871,Charley Henley +1222233,Dwayne Shattuck +1538336,Pamela Smith +1397752,Morgan Bertacca +1484220,Vera Mirová +1410204,Liz West +15345,Alex Kurtzman +262707,Andrew Wreggitt +1609034,Thorstein Foss +32776,Burt Balaban +937603,Bojana Marijan +1121525,Pieter Verlinden +1600706,Akimitsu Terada +1573369,Kacper Skowron +71570,Justin Chadwick +1018895,Jan Schomburg +1665418,Praveen B. Menon +934835,Krzesimir Debski +1128268,Karl Meek +142630,Aatish Kapadia +30398,Gennadi Ostrovsky +21062,Amy Brooks +1818608,Max Siemers +1448772,Emi Maria Bohacek +548011,Jôyô Katayanagi +1758592,Suthee Muarnwacha +1418412,Tyler Ruocco +63789,Eric Parkinson +1428917,Stefan Stankowski +1577976,Kristin Agi +1534758,Karl Görge +238647,Jerry Kramer +1035377,Jorge Paixão da Costa +1715575,Emily Cook +121485,Michael Hawes +109508,Wing-Shing Ma +1581819,Polly Young +1086863,Roberto Amoroso +1565838,Björn Almstedt +1569335,Neil Mayo +1395138,Olivo Barbieri +1821918,Andreya Lynham +1559448,James Scott +1382242,Bruno Rosato +1533588,Victor Anderson +1833910,Zhang Wang +563696,Mark Shearer +1263804,Paul de Bont +110628,Bradley Schmidt +1444917,Blair Foord +128593,Ed Rothkowitz +1154144,Peder Kjellsby +1085814,Letia Miller +1167488,Polly Morgan +230438,Subhash Kapoor +1771618,Thomas Parris +577428,Emmanuelle Cuau +1269281,Irene Villamor +102609,Pat Green +1777268,B. Smejkal +1329898,Ron Turbeville +1211685,Mike Olenick +1630971,Daniel Abboud +54297,Steven Silver +1394645,Brian McOmber +564113,Matt Roshkow +1475734,Peta Hastings +1128267,Simon Carmody +958778,André Dziezuk +1270116,Marshall Crutcher +72587,Bernard Sasia +225680,Roman Karimov +1336707,James Wiley Fowler +1333978,Beverly Jo Pryor +1367657,Didier Lechien +59398,Manuel Demoulling +19473,Alex March +29064,Mike Lockey +1763718,Martine Beauchemin +54204,Adrian Politowski +78373,Reiko Yoshida +73166,Anders Berglund +1761855,Upi Sorvali +1448870,Grant Ison +143147,Henri Barreyre +1585744,Damian Martin +126768,Manuel Carballo +86908,Jeff Siegel +1658882,Matt Hartle +979226,Lisa Olah +1302681,John D. McNally +582914,Garrett Basch +1721334,Erica Robinson +31276,Caroline Sinclair +1392944,Aaron King +1865195,John Morstad +1397045,Lauren Spalding +1176795,Gary M. Goodman +127657,Daniel Torres +139920,Didier Van Cauwelaert +1276441,Mike Testin +73838,Steven Baigelman +1282917,Marcell Iványi +1108467,Vincent G. Cox +1039407,George Dugdale +1299467,Sharmeen Obaid-Chinoy +1810621,David Ondrícek +548013,Osamu Honda +1388997,Rene Appel +933572,Jolene Rice +137175,Caty Maxey +1573339,Niklas Voigt +1486525,Marina Lesic +1115682,Miro Harre +1099733,Ashok Rao +1792345,Barbara Lee Brice +36644,László Kántor +1641717,G Suren +1275889,Neil Bligh +1257095,Grant Pierce Myers +1175347,Matt Riley +1238926,Herbert Brodkin +1451999,Erin Connarn +1636512,Rick Gordon +1418431,Katie Halliday +572058,Roland Sterner +1583162,Guillermo Saposnik +92380,Lewis Goldstein +1630065,Gabriele Romagnoli +1519023,Fei Yan +158832,Jonathan Weiss +1528942,Meghan Currier +1289423,Asher Lenz +1529391,Stefan Isfort +1901054,Wes Walcott +1561502,Walter Corbett +1657553,Ashley Monti +1149940,Zachary Sprague +1253000,Takashi Nakamura +1758716,Ursula Vilca +1804026,Yulia Batalova +95846,Benita Brazier +1338279,Anthony Faust +1340950,Chris Ragonetti +64432,Michelle Tsui +1789018,Christopher Thomas +232063,Sharron Domingo +52542,Veit Helmer +1456414,Harriet Lawrence +557664,Annemiek van Gorp +1622816,Bruno Nicolas +1427467,Ai Lene Chor +938024,Roberto Schein +1209400,Tim Pope +1425609,Aleksey Zamyslov +1453105,Filip Dedic +1542308,Ketevan Eliashvili +1401309,Nadia Guglieri +1607589,Vera Malysheva +1411123,Mira Bajagic +1647430,Kieran McNulty +1400095,Ben Jacques +1707416,Ray Neapolitan +1510555,Tim Degraye +1412327,Jim McKinney +1657552,Giorgia Petrazzini +1376647,Lewis Morison +1070170,Sally Gordon +1316798,Tetsuhito Motoyasu +1084950,Michaela McKee +936796,Giannis Iakovidis +1551812,John Allen +82117,Allan Mauduit +170625,Helen Ainsworth +1147673,Haim Frank Ilfman +62467,Carlo De Boutiny +1570536,Jamey-Leigh Weber +236655,Ömer Vargı +587735,Peter Hein +1280968,Peter Vacz +119337,Dong-hun Choi +1565848,Inger Torstensdotter +1609845,Malwande Sigabi +85398,Raju Khan +61496,Abe Shainberg +1062702,Robert Alftan +1513899,Stuart Galbraith IV +1214818,Randi Barnes +1001659,Todd Brown +1559372,Brandi Boulet +1086409,Janet Tobias +20150,DuBose Heyward +1305978,Sten Sheripov +109063,Lynne Betner +992856,Jari Tervo +1354336,Chenchonnanee Soonthonsaratul +1731667,Ciara Whaley +1642505,Susanne Müller +1392986,Wayne King +55440,Joseph Vitarelli +1290010,Anna Duse +1048614,Jennifer Notas Shapiro +141267,Alex Brown +1130777,Meredith Johns +874306,Albert Elms +37000,Yitzhak Ginsberg +1186218,Michael Ballif +36108,Nicole Schmied +1125622,Fonny De Wulf +70503,Barney Reisz +1530403,Kiyoshi Komiya +1413284,Emilio Sanna +1456346,Amy Bruscoe +1761920,Ippe Kätkä +1279645,Matthew Budman +119470,Vincent Leung +671828,Tetsuo Shinohara +1093867,Alice Tisdale Hobart +1616064,Karen Cohen +556753,Roberto Leoni +107084,Colin Eggleston +1512677,Ian Davies +1464110,Kevin Salter +1208204,Isadore Klein +543781,Ben Hayflick +1297712,Dainis Silins +1425982,Joseph Bell +1319727,Jacky Levy +1345264,Geordy Sincavage +1380790,Jussi Rautaniemi +1770981,Indranil Bhattacharya +1546798,Panagiotis Pashidis +1066233,Stig Holte +1661030,Pamela Nicole Padilla +1840081,Jithu Aravamudhan +1437155,Lauren Briggs-Miller +573308,Peter Alvarado +1364427,Clint Bennett +420654,Edouard Atiyah +20255,Nicole Fischnaller +1536846,Sam McCourt +1610211,Anna Nobel-Nobielska +1542379,Sophie Cox +1059406,Jesse Haas +1760141,John Gust Anderson +236855,James W. Roberson +236997,Yang Li Xiang +1303198,Simeon Pironkov +1441666,David Craig +1460736,Allison Bader +106698,Julia Juaniz +970568,Drew Dalton +1827259,James Wallace +18672,John C. Horger +125169,Mór Jókai +1609024,Sajan Skaria +1603644,Mevlüt Koçak +1153225,João Braz +1875123,António Lopes +932613,Ben Rivers +1296489,Eliot Brasseaux +68449,Lori Hill +1548094,Mallory Sabian +1120778,Sarah Bartles-Smith +565529,Mark Kudlow +146433,Jacek Borcuch +1444930,Miguel Menéndez de Zubillaga +1584919,Andris Pakalns +69168,Leonard Farlinger +1758560,Phongthep Phusawang +1401150,Darren A. Bell +1027085,Carlos Toussaint +115624,David Flores +156658,Monica Parker +1384914,Pascale Marin +1566088,Sabrina Naumann +1260766,Aaron Bleyaert +445256,Eric Schmidt +23859,Peter Milligan +56787,Brahim Chioua +21871,Russell Garcia +1275657,Andre Relis +1117118,Doug Nolan +237715,Geethu Mohandas +57168,Giuseppe Pedersoli +102231,Robert D. Bailey +85700,Soham Shah +95962,Jo Pagano +66865,Tilo Seiffert +1602137,Jonathan Wang +1493848,Adrian Salpeter +1437719,Lori Grabowski +1286578,King J. Greenspon +1037327,André-Line Beauparlant +1395689,Tony V. Stevens +1319163,Anita Seiler +150429,Dana Golomb +1378153,Evan K. Euliss +565408,Adriano De Micheli +1087194,Jesús Marín +1429346,Alan Billingsley +115447,Andy Wolk +589003,Norberto Ramos del Val +1261712,Murat Amanov +1775302,Nathan Mowery +33461,William Abello +1423683,Angie Johnson +568335,Cathleen Alexander +1659970,Sarah Deline +1543705,Farshad Mohammadi +82261,Brent Carpenter +929403,Piti Jaturaphat +1567537,Marlene Lipman +69047,Susan Weber-Gold +1123783,Alix Raynaud +1277089,Justin Lader +587195,Grant Innes McLachlan +1333932,Elizabeth Coulon +1131832,Ermek Tursunov +100979,Douglas Hickox +1828364,Rebecca Fisher +1380789,Pessi Levanto +1409895,Zach Horton +1001704,Steve Bocsi +1445366,Martin Watson +1412585,Jean-François Sauvé +1869448,Lacey Hutchison +567806,Denis Freeman +1126626,Chuck Anderson +1058555,André Szankowski +1422815,Denny Tedesco +46054,Reha Erdem +1466705,Ken Galvin +552429,John Yeck +1099146,Hal Beckett +989480,Vineeth Sreenivasan +153110,Ernest Borneman +1393414,Andrew G. Cox +124864,Janne Laine +1139969,Giacomo Gramegna +153745,Theodore Apstein +1128442,Deniz Gamze Ergüven +139337,Bert C. Brown +1106691,Kim Sherman +1518593,B.J. Bjorkman +238822,Timothy A. Chey +1643411,Jan Rott +548014,Toyohiko Sakakibara +1124591,Billy White Acre +1638552,Kevin McGill +1799717,Ralph Strelow +30401,Sergei Mikhalchuk +1754604,Aaron Bailey +50924,Cobi Migliora +52160,John Goldwyn +1367820,Valerie Delahaye +94220,Àlex Pastor +115090,James Cotten +1171056,Марика Бейку +21272,Les Healey +229814,Hans van Helden +1190255,Deborah Zimmerman +1769384,Miik Dinko +1706565,Ben Wiggs +1780166,Emil Kaczur +589951,Jack T. Knight +1640815,Adam Ridge +1857575,Luis Yañez +1582600,Aymen Braek +10914,Edward Small +1565732,Aimee Athnos +6793,John Stoll +1559441,J.J. Le Roux +1087669,Lucy Allwood +1653028,Billa Jagan +1283653,Jamie Christopherson +1521326,Ferdinand Zelenka +969387,Bing Wu +1459758,Terence P. Reilly +1030519,David Howard +973293,Kazutaka Akimoto +136542,Peter Bowman +1561900,Yu. Srebnitskaya +927994,Oystein Larsen +1640557,Sivaramakrishna Koduri +933273,Francesca Cima +1430513,B.K. Taylor +1364686,Zdzislaw Szostak +550582,Miyuki Miyabe +1537777,Reginald Campbell +209281,Robyn Butler +1572871,Jo Hughes +1581908,Dina Nepomnyashchaya +107765,Gabriel Cowan +1841582,Rachel Bittman +1338240,Peter Blayney +1118140,Marco A. Rodriguez +42640,Andy Hurst +1780452,Taylor Dyer +1687757,Sergey Simagin +1672320,Anshai Lal +1327882,Joe Curiale +1084967,Marcus Pardo +1056732,Joe O'Brien +22161,Ben Davis +1494829,Beth Ambrose +1367828,Gregory Fromentin +1597953,Annie Weatherwax +593006,Ajit Banerjee +1397295,Steve Foster +1218912,Dennis Foon +1167896,Ned Benson +1642558,June Wright +1291115,Rafael de la Uz +1193826,Scott Sampila +1024909,Katherine Milne +1411329,Stefan Speth +1581502,Laura DiMarcantonio +1017246,Patrick Metzlé +1211583,Lorenzo Garzella +1456410,Paul McGeachan +1797468,Ben Dawson +223533,Antony Szeto +1002345,Dion York Foley +1711576,Angel Spendlove +1610491,Michael J. Fourticq Sr. +1461645,Hendrik Wynands +1022600,Susumu Saji +29938,Roger Bellon +1735567,Anne Van Aerschot +102187,Satoru Ogura +1463293,Spencer Taylor +1411540,Des Carey +186367,Yukio Suzuki +1277029,Lucy Maud Montgomery +1097218,Jake Humbert +1564489,María Eugenia Escrivá +1358975,Tomer Oz +1879692,Ron Braverman +995355,Guy Quigley +1560968,Detlef Bittner +1237903,Steven T. Seagle +1610503,Isabelle Mastorakis +1220428,Colin Swash +1682059,Aashish Porwal +1086969,Ray Millichope +1771611,Brett Dahl +1575334,Ricardo Jattan +1743945,Giacomo Tomaselli +80765,Kenjirô Nishi +1189066,Larry Andries +1211787,Elgin Ciampi +1797242,Vinnie Ashton +151085,Bo Webb +1825663,Robert M. Barr +1542365,Néry Catineau +1550525,Carlos José Alvarez +1434862,Zoe Kettel +1335414,Simone Pasqualini +1295010,Charles E. Israel +1888975,Drew Bender +73915,Chris Ferreira +1642589,Victor Marchetti +1757635,Aidan Dykes +1825456,Tyler Tometich +1084080,Mario Battistel +109478,Laurence Coriat +1106516,Patrick Jean +90054,Edward Finney +222334,Yunosuke Yoshinaga +1396992,Patrick Gilfillan +1530398,Umeka Shinozaki +1715567,Scott Fritts +1612906,Dan Cogan +1611037,Hannah Stoddard +1037915,Katey Ravencraft +1294609,연리목 +1262612,Neal Adams +35408,Ralf Huettner +583399,Ephraim Kishon +1581563,Rory Emmons +572365,Emily Chiu +108993,Miguel Mihura +1451535,Lindsey Eyre +1460634,Sagar Patil +232666,Arturo Paglia +624980,Raja Nawathe +1430993,Marilee Yorston +1364424,Kyle Woods +1327846,Andrew Bentler +1169877,Hannamaija Matila +1496659,Donald C. McKeon +1433174,Maura Morales Bergmann +566286,Richard Outten +1034503,Xander Duell +1547493,Ichiro Ishii +238853,Douglas Snow +558012,Henry Jordan +1205764,Franck Jouard +937239,Simon Oakes +1053460,Valeri Frid +1312989,Anita Barbosa +1103518,Kerry Bellessa +1763659,Erica Winkler +1060688,Humberto Gómez Landero +1184307,James Newman +79605,Louis de Ernsted +106549,Takahisa Zeze +233878,Elizabeth Matthews +1518510,Mark Bochsler +1320461,George Heath +1027017,Dan Cutforth +74295,Jeff Feuerzeig +1602129,Lauren Mann +971831,Anthony Lefresne +1824262,Daniele Postiglione +96631,Hur Jin-Ho +1158016,Emmett J. Flynn +1509725,Kurt Doubrowsky +27953,Notker Mahr +1463656,Dean Bailey +1764790,Razzi Chan +130642,Peter Gilbert +1046477,Angela Frances D'Anna +1551775,Lucy Hellier +969021,Matthew Margeson +1295546,Elizabeth Snoderly +1209855,Jeremiah Birnbaum +66037,Tom Provost +1393783,Napoleon Dumo +1559449,Andrew Kinsella +1457359,Simon Harding +1510224,Henry Francia +1579651,Jiri Hurych +47103,Dov Seltzer +1406863,Julia LoVetere +551705,Yang Shu +1740790,Marcus Sujata +1489248,Eric Andrew Kuhn +1289047,Justin Raleigh +1341079,Christopher O'Reilly +1125198,Yves Osmu +1688131,Rosalba Di Bartolo Tonti +1709180,Fatemeh Khoshkhou +15871,Alan Janes +66675,Luis Bacalov +196821,Tasha Goldthwait +18382,Chris Matheson +51675,Finola Dwyer +582621,Jeff Murphy +929051,Ada Frontini +1285806,Ian Hultquist +51922,Carmen Cuba +983971,Joshua Locy +1563384,Vladimir Zuykov +1287916,Preston Peterson +1519461,Craig George +63669,Tom Rowe +34878,Monique Mierop +1640040,Mikael Reidar +92317,Spike Brandt +1869105,Martin P. Blaine +1210157,Kornel Sipos +589264,Darezhan Omirbayev +77144,Brent Crockett +1155331,Hank Woon Jr +1869385,Melody Mead +1194272,Edna Herrera +1073676,Nikolai Ryabtsev +98252,Pedro Peirano +138786,Arnee Cusano +1565800,Lennart Carlsson +1636852,Jessica Erin Bennett +1817446,Katrina Salicrup +32013,Pascal Jardin +1092689,Bence Trunkó +1732082,Anthony J. Lullo +558640,Ted Nichols +1761126,Michael Abels +223551,S.J. Clarkson +1550637,Kathryn Fa +1601705,Boris Caksiran +1036343,Arisa Kaneko +1099354,Henrik Martin Dahlsbakken +93078,Kôhei Oguri +928670,Barbara Kymlicka +1808369,Ed Clark +1083436,Pierre Delmonde +1304543,Stacey Rosen +422701,Luigi Marchione +14441,Maurice Vaccarino +46203,Sherry Hormann +1327865,Nina Sorotokina +1482834,Sophie Worley +78338,Naoya Fujimaki +1113438,Santosh Mandal +119253,Charley Parlapanides +1106974,Jean-Christophe Dessaint +1559214,Светлана Тарик +1769251,Ellen Statham +1791609,Johnny Vaet Nordskog +1415463,Scott R. Lewis +1350498,Thomas Mehlhorn +1676194,Malou Magnusson +585344,S. Thaman +564040,Cy Young +222311,Cornett Wood +148098,Hiroshi Negishi +56212,Eric Khoo +1452694,Ben Balatbat +1469349,Charles Foley +1780146,Fabienne Pflüger +1621360,Nicole Selmo +1066327,Kathryn Bostic +125019,Ken Hannam +1208497,Dora Nazou +1537108,Joseph Grossberg +1336843,Robert Sidney +1816355,Claire Frayn +136405,Alex Susmann +1724406,Andy Dougan +1173111,James Lahti +1635250,Paul Krumper +1072116,Milena Pfleiderer +942871,Rosa Estévez +1640345,Amit Roy +1279866,Michael Saia +1342649,Felicity Wright +1357052,Jeff Julian +1404708,Chris Claridge +1622990,Luca Tóth +1687846,Yuri Veksler +85707,Kailash Kher +1406862,Jamie Harper +1553681,Panos Voutsaras +1618777,Justin DeGuire +1818062,David Nico +1404193,Don Abbatiello +1325335,Yael Shafrir +94047,Stan Wertlieb +71956,Pieter Kroonenburg +1330169,Katherine Pancol +1869104,Jean-Paul Costaz +1737643,Jin Yong Kim +1341530,James Billmaier +1091592,Klaus Dethloff +1094113,Ray Dumas +1121983,Amit Gicelter +1084770,David Wester +75559,John Dennison +64489,Lorraine Ho +935289,Drew Cookson +1066197,Itzik Kol +1401634,Katrina Marcinowski +1527930,Beauxregard Neylon +1169045,Aleksandr Lemberg +1494279,Kari Montgomery +88130,Jordan Moffet +1423393,Martin Pavey +118733,Ge Song +1544182,Meg Zeder +1654026,Jason McFadden +1623889,Rhonda Freeson +1609288,Scott Christopher Kelly +1427389,Rossitsa Valkanova +131786,James Bryan +21826,Ron Peer +1660717,Eric Zachanowich +1230129,David Wright +1494109,Michel Davaud +1677223,Florian Parrot +71270,Debbie Berman +1583628,Tabitha Groleau +1459254,David L. Bertman +1336931,Morten Swang +84796,Raymond Murray +1485162,Eric Billman +1555464,Marcus Roth +1042399,Michel Parry +1242196,Tony Converse +1741935,Corey Deckler +1582466,Sid De La Cruz +127027,James Moll +1643415,Ulrich Ritter +1081467,Lisanne Skyler +971868,Julio Perez IV +1346146,James Wang +1258013,Andrew Adelson +1586288,Lárus Ren Gudbjörnsson +1546768,Andrew Bernard +1289604,Ana Lily Amirpour +1615531,Morgan Navarro +222039,Indra Siera +1748604,Anna Harrington +1429343,Stefan Markov +17011,Jo Heim +1372213,Nyima Johnston +1717984,Matt Austin +70579,Serdar Akar +1665454,Jay Grossman +1085925,Giancarlo Romitelli +1433002,Pavel Mitov +48055,Paul Leni +1403413,Joe Chess +1660720,Lidia Martinez Prado +39869,Alexandra Lebedynski +1339231,Bert Gold +239473,Romolo Guerrieri +1531001,Elmer Decker +109300,Sandy Shaw +1688394,Ian Nobin +1619495,Ernst Luz +1851892,John J. Shim +1009377,Mathias Winum +1708061,Abhishek Banerjee +1368872,Richard E. Hollander +1472146,Sarah Perlman Bremner +1235698,Erle Stanley Gardner +1267835,Maïra Ramedhan Levi +1512664,Erno Kumpulainen +1064107,Tiwa Moeithaisong +1484200,Jill E. Hughes +1394727,Linda DeVilliers +1691506,Jennifer Lemons +98107,Graham Linehan +1451847,Todd Slater +1299149,Doug Davey +1547205,Eddie Pasquarello +1409374,Ryan Ferguson +1267580,Vicki L. Sawyer +1047245,Sachiko Ôguchi +1154233,Pascale Fenouillet +171837,John Sutherland +593061,Rasmus Thorsen +1535876,Julian Boone Fleming +1558806,Cameron Doyle +1156263,Sebastian Öberg +1654429,Jennifer Wang +572594,Selim Ünel +1646866,Hélène Bastide +1516886,Mariella Kallenberg +129074,Francesco Maselli +1176351,Sam Jones +1707857,Mirko Bogojevic +1411723,Sally Cook +1850543,Marc Biss +1666619,Nadja Pyykkö +71958,Saul Pincus +1075122,Yaron Zilberman +29058,Roger Bowles +1004388,Charlie Lam +21706,Laura Bickford +1583214,Christopher Reardon +1390344,Sarah Griggs +1775638,Israel Basso +1771008,Corrine Silver +1551789,Ando Johnson +1408782,Paul Furminger +90421,Daren Luc Sasges +1661421,Andy Leo +1486902,Robert Linnell +1151356,Sergey Chekalov +1405333,Richard A. Zimmer +933326,Giuseppe Pinori +105576,Gimena Blesa +1114577,C. V. Kumar +1418419,Angie Mills +105828,Rafael Jordan +1455602,Atsuo Fujiwara +55939,Adam Clark +1499157,Elena Dubova +236915,Tom Taggart +1462039,Jeremy E. Wilcox +1563383,Nina Mayorova +30414,A.J. Gilmore +61277,Denny Dugally +1284154,Camilo Froideval +112926,Antonio Nuić +1561809,Giannis Antypas +1021385,James E. Casey +1403861,Jesse Pomeroy +1522769,Mike Wood +1170252,Harold Frederic +77101,Edward Buzzell +573321,Walter Karig +24380,Édouard Molinaro +1067942,Trevor Smith +548022,Hisao Inagaki +1537710,Matthew Aberline +1031144,Chad Hartigan +1112515,Jeff Turley +1122421,Valérie Schiel +102252,Anaita Shroff +1403406,Craig W. Smith +1522886,Van Rieben +1407735,Charlotta Forssman +1452553,Jeong-hun You +1182107,Katsuo Naruse +1712227,Frederick Tristan +1511135,Joanne Kinchella +1237548,Andrew Singer +1853857,Kiva Knight +93437,Albert Simonin +1839554,Darlene Wyatt +968710,Christophe Riandee +75593,Branwyne +60185,William Wheeler +1309919,Peri Richards +1293581,Bradley Rubin +1519024,Damo Peng +36145,Marie Castro-Vasquez +1411235,Andy Clarke +1670735,Syja Deberdt +35333,Marsha Chesley +1401635,Bruce Resnik +1526824,Jennifer Johnson +1401147,Anik Seguin +174468,Tish Rabe +94564,Niranjan Iyengar +1179562,Mike Fuchs +1094461,Sabine Asanger +1770476,Jenny Calzacorto +98826,Fred De Gorter +1093744,Yôjirô Ishizaka +52919,Nikola Bock +1527918,Melissa Anchondo +99463,B. Reeves Eason +1773267,Josh Solson +1065286,Laurence Mensink +1781232,Khaled Zaazouh +1105644,Diego Stocco +240845,Keita Amemiya +573309,Lloyd Vaughan +1852953,Begad Omran +1580853,Matthew G. Carson +1391791,C.C. Hang +1402092,Jim Elliott +68885,Staffan Götestam +1346594,Judy Mooradian +79602,Luc Dionne +1652050,Aaron Haesler +1777274,Josef Ouzký +1062336,Justin Nappi +568058,Per Boström +1425664,Colin Campbell +46647,Peter Baumgartner +230015,K V Guhan +268107,Melissa Jo Peltier +550542,Teizô Matsumura +1564559,Jane Gull +1621762,Fabrice Vienne +150630,Nicholas McCarthy +1455508,Bill Young +1821922,Carrie Oliver +1547221,Kristin Berge +1273117,Michael Lesslie +1117843,Juan Pedro De Gaspar +1403840,Parag Kulkarni +1853901,Dick Phillips +14856,Phyllis Bottome +1499160,Chris Street +1167049,Catherine Mananes +1426230,Sandro Lorino +1010717,Frank Tours +1539805,Beatrix Dollingerova +1579382,Oren Yaacoby +1294090,Gyeongbo Yeo +108431,Jack Greenhalgh +33808,Antonietta Zita +1412586,Jean-Philippe St-Laurent +1450342,Ken Lebre +1204202,Juliana San José de la Fuente +1711429,Shinya Ayabe +557667,René de Graaff +1292305,Brian H. Kim +1462816,Ricky Budhrani +60732,Laura Beth Albright +1784275,Juraj Buzalka +1660711,Dylan Jury +1118701,Mannie Davis +507840,Yoav Paz +1334272,Enzo A. Martinelli +1395222,Francois Latremoille +1393434,Jude Erny +1814972,John Finn +1903912,Michael Langford +1125167,Manuel Arenas +1657566,Russ Adams +1099702,Roger Buckingham +1404869,Chris Georgas +1087739,Chrisna Van Zyl +1565844,Tony Pahlborn +1751993,Chiara Maria Massa +21201,Darren T. Holmes +1302901,Hugo Villasenor +1555636,Kogonada +79437,Ben Sombogaart +1150952,David M. Wulf +99255,Igor Talankin +1482846,Linda O'Reilly +1732090,Denise Baker +188097,Jennifer Johnson +1192505,Kate Taverna +1343937,Bart Mangrum +1293002,Divi Crockett +1112517,Kristina Reed +1896778,Richard Rambaut +586462,Brad Dunker +1458272,Richard Wechsler +1481508,Victoria Pugliese +1525886,Stephanie Ingram +1621454,Lei Zhang +1636698,Elizabeth Eggert +1760124,Mae Brunken +1425484,Laurent Hugueniot +1526216,Jorge Luis Medina +1053420,Josh Boone +1646484,Hélène Ross +1157083,Berman Swarttz +1286590,Richard W. King +1201956,Manuel Nevosad +1198517,Jeff Watson +1333579,Terry Berland +1547488,Ushitarô Shimada +1475737,Kristen Anderson +1621110,Han Ah-reum +65913,M. Blair Breard +966481,Ben Frost +1757621,Brittany A. Jones +1438029,Steven Galanis +81517,Gregg Wilson +29377,Vincent Prentice +1387191,Ralph B. Meyer +1642521,Lo Zin Zwan +90419,Todd Bell +1078874,André-ani +1017005,Scott Turpel +1541745,Alexandra Bachvarova Trifonova +1667091,Graham Stumpf +153712,Meyer Dolinsky +1407371,Frank Avanzo +1095899,Rafael Dragaud +116212,Francisco Canaro +19621,Sebastian Morsch +1709312,Jonny Umansky +1626428,Raúl Portillo +54773,Steven Pearl +1401135,Angelo Palazzo +1394307,Julie Pearce +1428035,Lanre Omofaye +1179840,Garth Neustadter +144945,Taisuke Kawamura +1551366,Joey Moran +1527505,Gino Fortebuono +1378142,J.D. Evans +1378697,Tim LeBlanc +1463024,Måns F.G. Thunberg +1527474,Michael A. Pruss +1654516,Perry Sandow +1029806,Brett Armstrong +1545988,Dominic Tuohy +1647411,Kongded Jaturuntradsame +1455524,Louis Jones +225318,M.M. Keeravaani +19829,Jacques Rouffio +1055094,Leszek Dawid +1166410,George Robertson +1557615,Donna Pearman +1567546,Yang Seong-ran +1665915,Erland Galjaard +1178999,Shinpei Inoue +1635348,Thomas Ward +1669177,Jyoti Chetia +1772963,Marc Cauvy +1756419,Andrew Chin +1117766,Frank Lehmann +95845,Susan J. Bonno-Buckner +1532407,Sherry Whitfield +550891,Kelly Carlin-McCall +1014024,Charles Chauvel +28390,Marko Glušac +1203521,Rob Lieber +1427966,Jonathan Montepare +197227,Joan Scott +137903,Brian Smith +1376178,Sergio Díaz Ochoa +1460512,Amanda ZIma +1040898,Alexander Rodnyansky +115999,Inna Evlannikova +895870,Chen Yu-Hsun +1632444,Lon Stratton +1212231,Sterling Anderson +127802,Yuk Ching To +1518576,Frederick William Scott +1539027,Web Overlander +1339057,Natascha Gotowtschikow +1468594,Gerry Grennell +1417410,Laura Pliskin +1423063,Fran Amaro +1621476,Haridas Stewart +1425357,Robert Marcel Lepage +1691431,Matt Thompson +1526042,Corey Allen Jackson +1646581,Mathieu Lalonde +928074,Chad Keith +175534,Scott Saunders +1670960,Chad Knorr +135345,Sompope Vejchapipat +1118112,Shyju Khalid +1402732,Kaus Kastberg +1500427,François Bégin +1635299,Edward Allen +1865186,Morgan Mcconnell +1530074,Elisa Forni +150660,Kallan Kagan +1327402,Michael Hurst +1050600,Luke Bryant +1783008,Haris Ali +1066308,Aaron T. Wells +1705463,Amrita Mahal +1222038,Hollingsworth Morse +936794,Christos Dimas +1678409,Noa Roshovsky +559707,Jack Shampan +1209856,MIchael Richter +57919,Michael Schaak +1398958,Martin November +100432,Maria Pia Fusco +1335420,Bruno Maillard +1513958,Sofie Rooseleer +1506812,Fred Madison +1714351,Romain Namura +1596860,Chien Shih-Keng +1317647,Nicky Barron +1691508,Jekisha Omiyewo +1642530,Mark Brocking +1081075,Tim Flattery +1486913,Michael Baskin +1367797,Dominique Moisan +104715,Kaoru Wada +935637,Elena Solomou +1081445,Brandon Cronenberg +960370,Terry Frewer +275825,Honey Irani +1008500,Renzo Lucidi +209211,James Taylor Phillips +1295920,Florian Lutz +1404298,Arni Gustafsson +1601640,Joseph E. Colmenero +65513,Gil Mellé +1310823,Erick Donaldson +11198,Albert Jurgenson +1712266,Maurice Gillett +1491512,Mikolaj Lebkowski +1530404,Kiyoshi Komiya +196435,John Lemont +1793535,Brian Chapek +139484,Alan J. Adler +1519836,Eldar Tuvey +7971,Jay Ward +1536447,Miles J.D. Vedder +1112486,Dean Hewison +102177,Gary Cohen +939123,Kat Coiro +1439378,Steven Ritchie +36130,Tippi Dobrofsky +1279580,Michael Ronald Ross +1185651,Jeff A. Ferrell +1643885,Manu Moreno +1068923,Al Capps +1523862,Daniel Cowan +1536584,Garret Elkins +1824510,Wen Hsuan Tseng +1403359,Kazuko Shingyoku +1570569,Tetsu Fujimura +130277,Michael D. Manshel +1381067,Pit Kuhlmann +1818106,Cathy Olshaski +1851915,Matthias Bouska +1595278,Siim-Kaarel Saluri +1281376,Logan Levy +1070826,Spencer Eastman +1436529,Doug Besterman +1579384,C. Drew Unser +231502,Hye-yeon Moon +222349,Paul Cotter +138798,John Vincent Mason +20923,Allyn Ferguson +1824272,Leigh Ann Smith +1680407,Carlos Martel +1116045,Doug Magee +1341763,Patrick J. Statham +239156,Alberte Barsacq +1801546,Laura Webb +1479445,Dennis Gentle +113708,Lawrence Kimble +1775639,Balbe Jose Figueiredo +146666,Steven Lawson +86445,Robert Mearns +1011787,Pedro Ultreras +1270322,Britt Napier +1360275,Jim Greenhorn +25824,Alberto Gallitti +1372077,Cherish M. Hale +1576249,Simon Jori +1342833,Paula Herold +1398426,Jocelyn Caron +120336,Lee Scott +24074,Lars Büchel +983278,Guillermo Nieto +133405,Shawn Rasmussen +106327,Stefano Bessoni +22153,Romain Winding +1635715,Lise Grepp +1125208,Andrew J. Curtis +166750,Anne Brooksbank +1386906,Jonas Kirk +1640707,Svetoslav Mitev +20634,Fabrizio Mosca +141710,Eugene Marner +66495,Jason Baldwin Stewart +1410273,Patrick O'Connor +1409880,Imre Légmán +1411064,Joe Hopker +1891551,Larry Lester +968316,Andy Gill +1477470,Marlene Aarons +41272,Don Mischer +1041546,Morten Jacobsen +1027592,Pierre Novion +1208457,Idelmo Simonelli +1759802,Yanick Wilisky +225568,Giorgio Simonelli +1779337,James Gordon +1494192,Steven Daniels +1719130,Malina Panovich +1108170,Chonlasit Upanigkit +1884345,José Lebrón +1401891,Jeremy Bradley +43782,Stéphane Roche +1615075,Tim Borquez +1062050,Fayte M. Browne +36640,Srđan Koljević +1806565,Manuel Beccaro +131400,Jay Van Hoy +77204,Shirley Inget +65292,Buzz Feitshans IV +1345578,Michael Rose +487957,Arvind Krishna +1108729,Shane O'Brien +1364623,Simon Christidis +1437033,Rein Pruul +1316316,Takanori Yoshimoto +168819,Craig Warner +1521296,Rahul Mody +1554750,Lutz Zeidler +1148261,Mark Hulme +933248,Chatur Lal +1295831,Lew Horwitz +1431077,Stephen Maier +542413,Scott Honea +1547198,Ivan Colovic +1390373,Gordon Harmer +1147933,Zak Piper +1775654,Clarice de Castro +1367054,Timothy C. Sullivan +71957,Gilles Paquin +989892,Matthew Budgeon +131765,Ken Carter +1829888,Michael Crusz +20459,Harry Escott +1578866,Gris Jordana +77662,Franklin Guerrero Jr. +1518583,Adam D. James +1251373,Nancy McCrumb +1313163,Clenet Verdi-Rose +1127860,Josée Bernard +1555469,Donna Suchan +1579426,Pinelopi Valti +1056270,Dumisani Dlamini +78419,Pascal Plisson +1495598,Tina Pehme +1296109,Choi Moon-su +1625938,Tamara Zubova +64484,Weixiong Zhong +1437715,Stalin Saravanan +1636670,Carla Brenholtz +1666862,Kalanidhi Maran +1532754,Laura Frecon +1319968,Eric Bergman +1281608,Lenka Padysakova +142885,Frank Hurley +1509178,Marco Vitale +1204746,Mark Arywitz +464233,Yukihiko Yamaguchi +798034,Albert Espinosa +78970,Joe Amodei +1013074,Kalyanji - Anandji +55774,Michel Abramowicz +1016735,Sue Rogers +184421,John Carlos +1273292,Mitsuo Degawa +1568838,Mario Fraser +137749,Dana Dubovsky +1797399,Arnaud Colinart +158768,Heidi Thomas +592417,Mischa Spoliansky +1375918,Christian Dwiggins +1573035,Carrie Richardson +1760151,David Rednaur +1693467,Scott McNamara +1117365,Jeffrey Gross +1271115,Patrick McGuinn +543175,Rollin Jarrett +56297,István Örkény +1204861,Ryan Bedell +112606,Micho Rutare +1628110,Soukthavone Panyaphone +1640338,Poornima Ramaswamy +1440403,Nevin Swain +239027,Thomas A. Edison +1474238,Arkadi Klyonov +1893540,Matilde Matos +1692491,Sandi Logan +1550819,Lori Berlanga +1183748,Devon Cody +1079613,Nicolas Roy +1086433,Vasan Bala +1308234,Maria Mladenova +1560944,Susan Eshkar +40467,Patrick Lambertz +1665421,Gokul Das +1073639,Mark Hufnail +173622,Tom Ray +1076007,Benjamin Gerstein +195781,Mark Harris +80672,Peggy Holmes +135294,David Brown +1104691,Philip Burthem +1426841,Graeme Cowie +947010,Christine Swanson +1497677,Harold Welb +60283,Tom Southwell +1640706,Yuliya Manolova +92937,David Daniel +1372079,Diane Andazola +1190487,Anna Amedei +1769037,Jesus Ulled Nadal +1539798,Darina Suranová +1048527,Izzy Sparber +1003236,Geoff Lindsey +544182,Sergio Pizzorno +1818501,Beatriz Bodegas +931252,Vladimir Toropchin +564789,Christian Frosch +1616082,Andrew Kinney +1120154,Sergio Martinelli +225057,Chan Pui Yin +1264145,Per-Arne Svensson +185050,John Paddy Carstairs +1579541,Kenny Kusiak +1642561,Tim Yeh +1441806,Shannon Gottlieb +1676802,Andrew Minogue +1666416,Anbariv +1570599,Jo Singh Brar +1026671,Mark von Sternberg +1085648,Mike Hechanova +137556,Kaire Hendrikson +958480,Helen Britten +30128,Eric Taylor +85716,Robert C. Ramirez +1414096,David Smith +1579534,Haruka Kawasumi +573777,Alessandro Jacchia +1354914,Richard Sale +1124596,David Tripet +1570530,John Wong +1725775,Michael Grobe +1399206,Vijay Yesudas +1189332,Keigo Sasaki +1052870,Bojana Nikitovic +1317391,Maria Lorenzana +1127482,Stijn Van der Veken +588646,Sven Pape +1428042,Mike Steve +151106,Eric Steele +1228024,Julee Cruise +1591764,Jamie Mills +1056089,Matthew Loze +1681854,Vitaly Abramov +1135240,Kim Seong-hoon +1457485,Denise Wynbrandt +41549,Andrew Fleming +1797193,Sarah Goodhue +1419105,Scott Garfield +1389858,Jamie Hardt +86239,Gary Whitta +295305,Peter Carter +1286568,Daniel Waldstein +1209172,Juan Feldman +1495877,Denise Slenski +1419623,Bryce Fortner +62582,Danny Wayne +1834281,Keitha M. Redmond +1111194,Ryuta Miyake +115133,Naomi Wallace +1396780,Sarah Taub +1401821,Tijen Osman +21852,Jim Orr +1608114,Nicholas Veneroso +34569,Tom Reed +1409394,Ronald Kirk Goulding +53189,Nico Fidenco +1813311,Franco Movsesian +1421662,Begoña Lopez +1896007,Kitty Greenwood +1787583,Tim Metzger +1512110,Ryan Lacen +970446,Masakazu Higuchi +1780171,Fabian Rösler +79096,Michael James Rowland +864930,Jimmy Balletto +967179,Nicolas Canniccioni +1601637,Michael Lattner +1492995,A. Klockis +1207483,A.V. Bramble +1100334,Julia Gregory +1340006,Amanda Zemke +237089,Stefano Milla +1684600,Lionel de Sousa +25507,Philip Voges +1496084,Robert Sasaki +1362520,Franco Valsecchi +104832,Jack Nasser +1600453,Bora Göksingöl +939456,Dallas Sonnier +1035442,John Peacock +1618797,Pierre Magny +231817,Daniel Prochaska +112711,Anthony Littlechild +1565939,Janne Birck +1367920,Emma Johnston Burton +113051,David Grimaldi +1537336,Josef Hart +1701782,J.J. Jackson +133882,Irving Austin +935703,Sidonie Dumas +57815,John Buchanan +32270,András Khin +1673349,Bruce Phillips +1066310,Paul Tarnopol +933551,Sakari Kirjavainen +1197571,giampaolo spagnesi +1275906,Jorge Gundín +1473665,Osamu Masuyama +63673,Brana Rosenfeld +225295,Jainendra Jain +1418978,Leo Kunnas +1057407,Roland D. Reed +1455705,Drayson Helberg +1511047,Roberto Plate +1068135,Kiyo Sumi Fukazawa +1828339,Ryan Hernandez +1387250,Tiffany Wu +1404825,Andy Sleet +222607,Pedro Lazaga +930932,John Ashbery +45194,Ivan Šlapeta +1389974,Fran Cooper +1181321,Simon Chinn +1638135,Lenka Likarova +1402531,Brian Fieser +139651,Nick Copus +1334459,Steve George +1518667,Beatriz Colomar +1676806,Ethan Bellows +1351636,Yonetarô Tanaka +1397173,Andrew Tay +1572018,Christa Wolf +1311156,Jo Won-Jang +1636768,Debbie Dahlstrom +932233,Rodolphe Burger +935279,J. Davis +15895,David Munier +1280964,Michael Y. Chow +1418980,Margarita Manda +1167472,Matt Sazama +1692495,Corey Jones +1073734,Plan 9 +1409489,Tom Eagles +1611042,Michael M. McGuire +1424701,Gia Jimenez +1039349,Hitoshi Ohne +1106273,Ivan Philippov +1583134,Lauren Robinson +1401154,Debra Bruce-Nazarian +5452,Dick Rickard +1519787,Ashu Boni +13734,Laila Stieler +1652813,Choi Sang-mok +1097202,Carl Soto +1568964,Angela Senior +572280,Dino Maiuri +25317,Franco Rossi +127731,Clive Hopkins +1023420,Robert Shearer +1742332,François Moret +958641,Mike Munn +1128370,Rod Spence +1399086,Hector H. Rivera +1907202,Vladimir Martínez +1157113,Shinichi Suzuki +929903,Benjamin Toh +222552,Taavi Kassila +1292110,Michael Prall +35329,Peter R. Simpson +140264,Andrew Wight +32545,Alan Lefebvre +1463764,Robert Settlemire +1709323,Amy J. Smith +1199912,Leonor Pinhão +1028828,Raimundo García +29549,Oskar Fischinger +6426,Marian Prokop +1578865,Jo Farrugia +1706512,Geoff Taylor +60106,Beth Mickle +5389,Judy Becker +23177,Tom Blieninger +1015894,Gigi Akoka +1435642,Martyn Zub +1027173,Lawrence Roeck +66805,David Eyre +1361776,Harry McAfee +1456685,Kunio Ando +1293791,Gicheol Lee +1827897,Michael Epstein +1062043,Ignacio Martínez de Pisón +1619655,Denis Lapiere +551639,Jerry Hathcock +1481655,Juice Leskinen +179496,Mark Farrell +1647144,John B. Woelz +150856,James Krieg +136249,Roger Holzberg +140475,Yoshibumi Yokoyama +1783552,Pavel Nyziak +1394321,Milena Fessmann +1797514,Jude Collins +21289,Bruce Chun +1039522,Peter Speakman +1201672,Tuomari Nurmio +1466330,César Augusto Acevedo +67497,Lars-Olaf Beier +1404817,Benjamin Semanoff +1704829,Saikishore +95609,Doran William Cannon +1756365,Samuel Cory Timpson +222310,John McManus +35413,Arpad Viragh +64716,Victor Simpkins +1187142,Kazuki Sakuraba +95456,Elio Petri +1342845,Cheung Yam-Yim +1367214,Rubie Huber +1495524,Erica Dewey +222866,Peter Liechti +1182555,Jackie Grima +1162236,Till Franzen +1245366,Andrew Fried +36240,Julia von Frihling +1780131,Melanie Hoppe +1198729,Suresh Krissna +1089512,Manos Krezias +1792356,Stefan Chakerian +1640820,Ian Rowley +1537532,Samantha Castellano +9100,Edwin Blum +1642546,Tom Elmes +1297714,Maris Maskalans +1447850,Erica Steele +1614063,Fiona Starogardzki +1739260,Caroline Fallon +1306644,David Ludwig +1684502,Johnny Gidcomb +1572904,Henry Albert Phillips +1384721,Rebecca Milton +1192396,Soichi Ueno +104716,Yukiko Itou +1551806,E-Flat +1260940,David Bernad +1387067,Richard Burke +23683,Tony Cervone +93230,Amir Valinia +1392553,Arden R. Ryshpan +584566,Latif Yahia +1583303,Tom Ludwig +76812,Raymond Yip Wai-Man +174359,Irve Tunick +1420642,Jose Zamora +1205159,Joan Manel Vilaseca +1578870,Phill Hardy +1179838,Jennifer Ruff +1325573,Judith Bouley +1088579,Haifaa Al-Mansour +186686,Alan Moskowitz +139818,Nicolas Vanier +1819973,Bharat Jha +938768,Evelyn Lambart +1445363,Ting Fang Liu +1399693,Richard Ingber +1460027,Adam Goldfine +1378195,Amy McGary +1428893,Daryl Sawchuk +1797470,Mike murray +116001,Aleksandr Talal +1354028,Thomas F. O'Neill +91297,Helen Parker +1095275,Sam Bisbee +1396796,Tim Limer +1671091,Tania Soeprapto +1202849,Cathy Gesualdo +1464041,Mark Montefiore +1375532,Larry Fox +1396122,Lu Sheng +1404808,Leigh Ann Yandle +969241,Cristian Conti +1423975,Dominique Benicheti +1529999,Gabe Hilfer +1603188,Susanne Scheel +130319,Harvey Bullock +1657544,Stefano Sardo +1209168,William D. Johnson +1380974,Steve Carpenter +1779282,Holly Gordon +1577698,Marjorie Raser Sortman +1099075,Wil Hendricks +1601459,Markos Antonopoulos +1896851,Stanimir Tamahakyarov +1084962,Jon Weinbach +74697,Alberto Cavalcanti +32415,Hendrik Hölzemann +1056086,Todd Richardson +935990,Aaron Guzikowski +1203508,Antonio Cucca +11692,Vladimír Smutný +1839938,Bruno Adnet +70237,Roberto Forza +1465618,Iain McFadyen +1459858,Kristin Rasch +1410580,Alexander Vegh +1310819,Loredana Buscemi +298151,Enrico Ribulsi +132485,André de Lorde +117423,William B. Hawks +1835199,Andrea Baker-Fraser +1740642,Vasily Solovyov +1492088,David Kosse +1128303,Mae Carzon +1438342,Mark Krenzien +1503229,Nick Rideout +1808038,Robert Falconer +15589,Kirsty Cameron +1195872,Germain Gauthier +1543257,Petar Dimitrov +75771,Peter Malatesta +1820248,Eduardo Peduto +1404288,Joseph V. Cicio +1747165,Sarah McLoughlin +85859,William Olsson +1642506,Jens Päkel +140600,Roberto Girault +62985,Ashley Sidaway +1447901,Alekxandra +1265617,Zach Martin +67828,Max Lemon +136486,Antony Langdon +1011682,Balter Gallart +1469184,Iain Banks +1691504,Michael Kern +1276819,Mark Norby +1376942,Mohan Gopinath +935115,Derek Osedach +1416398,Joshua L. Pearson +1172512,Debi Marshall +569889,Yasuaki Sakamoto +1621072,Chris Reynolds +577427,Sandro Veronesi +1756105,Aalaap Majgavkar +1463178,Daniel Erickson +1083156,Colin Cairnes +72552,John Faure +1609172,Helder Loureiro +1338217,Nicky Ackland-Snow +1169205,Mordechai Richler +543674,Sergey Loznitsa +1622812,Elodie Steffin +550599,Koichi Ohata +1358031,Chris Capel +75826,Brandon Birtell +1404272,James Abbott +1450947,Paul Davies +1436528,Sally Helppie +1063555,Saturno Cerra +1630069,Federica Nisi +1195731,Kazuki Katou +1330438,Eduard Akopov +1746429,Mark Glindeman +1540838,Sharon Packer +1034662,Richard Bluth +1680436,Kathryn Robson +1351568,Joe Solomon +1161989,Sandra Feldman +1157032,Marcos Rodriguez +96362,David Oliveras +1537855,Tony Gonzalez +113647,Richard LeMay +1435539,Carolyn Arbuckle +1117428,Sean Faughnan +1049375,Ben Timlett +1518596,Marie Kenney +1612472,Matt Elisofon +1155986,Samuel Brownfield +1417988,Jorge Razon +1327881,Ollie E. Brown +62863,Jorma Taccone +1451497,Olivier Père +1432552,John Leo D. Garcia +100296,Peter Sasdy +72896,José Antonio Rojo +1536642,Edith Bellehumeur +70732,Marc Schaberg +110192,Vashu Bhagnani +1168712,Byron Ongley +1473598,Donald R. Boyle +1589731,Catherine Tate +1642580,Lyndon Jiang +1031656,Nick Urata +91501,H.C. Artmann +1907208,Mark Della Rosa +223492,Viktor Sergeyev +85585,Abhishek Kapoor +70009,David Sherlock +49899,Luigi Carpentieri +1072616,Sergio Dubcovsky +1179019,Fabrice Aragno +1194561,Frédérique Olszak +1203522,Judith Viorst +1679252,Ferdinand von Schirach +1425401,Anna Vincent +570789,Jason Clark +1898926,Vicky Avery +1086922,Antonio Borghesi +1188594,Frank Westmore +1841601,Jim Lande +1069614,Morten Egholm +88809,Hrishikesh Mukherjee +106700,Cristina Rodríguez +961177,Rosario Suárez +1821633,Lulu Morgan +41159,Ferdinando Baldi +1872453,Walter Salemann +1306683,Ugo Carlevaro +984113,Rachel Morrison +18563,Georges Lautner +965293,Owen Power +59022,Helmut Krausser +1627682,Irina Pavlova +48309,Paul Breuls +1328146,Evelyne Noraz +73738,Dagmar Mielke +67501,Ben Mono +1428879,Scott McDonald +65243,Marc Bienstock +1574035,Michael Standish +1106900,Beatriz Delgado +1460021,Chris LaMont +1735414,The The +1530612,Sonya Di Rienzo +1209627,Rachel Gardner +1082578,André Cerf +1418380,Fabiano Petroni +1493455,Pat Rooney +1294766,An Young-jin +196264,Victor McLeod +1093931,Yves Dahan +68448,Morris +38644,Otfried Preußler +1643878,Francesca Escriva +1178998,Yasuko Anjô +1028361,Shozo Matsuda +1773060,Ben Jonson Handy +121676,Stephen Morehouse Avery +593081,Tuija Lehtinen +1084772,Jeff Seats +117493,Robert Dean Klein +31611,Pietro Tenoglio +1520108,Jeff Gerrard Digeralamo +47818,Jean-Paul Hurier +1159607,Mary McCall +224740,Imogen Sutton +1367367,W. Harry Fortuna +1251352,P.T. Walkley +1117350,Anthony Smedile +1164124,Bastian Zach +1553951,Andrea Purcigliotti +1709181,Mark Wellband +1223295,Evan Phelan +1299569,Kent Murray +1540833,Tracey Wells +1177640,Timber Timbre +1455271,Leonie Heys-Cerchio +69109,Alexander Vinokurov +1305908,Tom Marksbury +1006753,Tom Fulford +1584753,Lev Rogozin +1352981,Sam Zeines +69694,Philip Hering +1316413,Ichiro Kusuno +1463994,Digba Kurpjel +1644780,Erzsébet Forgács +1177154,Joanne Arseneau +1697787,Pranav Sahni +237681,Devi Sri Prasad +1299382,Mateo Garcia +1468951,Jack Ballance +1869382,Andrea Kistler +1482836,Harriet Lovell +1341533,Linda A. Cornfield +1350257,Asen Karanikolov +1175079,Fernando Sabino +1196401,Tomonori Sudou +1392958,Nicolas Gagnon +95576,Sue Heel +1343581,Bianca Bernardino +1813875,Catharine Falcon +1201974,Magnus Pflüger +1383351,James Whetherly +1618200,Robert Niosi +1656279,Sofia Gubaidulina +71357,Jacqueline Meppiel +6332,Gunnar Carlsson +32491,J. Roy Helland +567816,Orlando Lübbert +103605,Mei Feng +1158292,Jerome Jackson +1311032,Dmitriy Besin +1673675,Allan Mandelbaum +1394713,Michael T. Higgins +936279,John Banville +237149,Pieter Van de Waterbeemd +1192792,Stéphanie Héroux +1760153,Eric Reinhard +1412922,Jérémy Petetin +1487232,Lennart Verstegen +1386895,Ori Weisbrod +1096444,Zach Bangma +1638336,Paolo Kalalo +1394298,Lena Scanlan +31127,David Checel +1412329,Mike Tyson +1190783,Diane Weiss +1013891,Vir Chopra +70501,Nigel Williams +1635241,Terry Fitzpatrick +186728,John Blizek +1631406,Rene Bemmann +1296775,Chris Zonnas +1721401,Sanjay Inamdar +1710644,Sam Gross +1841567,Nathan Summerlin +135129,Toshiro Suzuki +31539,Joseph Dougherty +1408377,Rob Killick +1147304,Renaud Cohen +1573928,Beau Parsons +1475770,Peter Elliott +45489,Beverly Sebastian +1533693,Taner Gündöner +126270,Tsuguhiko Kadokawa +966515,Alex DiGerlando +1456312,Sylvie Lacoste +566273,Kyle Killen +1468644,Maggie Thomas +81694,Eric Miller +63869,Mate Matišić +1634080,Jeff Milburn +119509,Gwynne Dyer +143059,Patrick Hughes +226414,Gábor Harmat +1318389,Alan Oldfield +72891,Amando de Ossorio +1766571,Mario Carradori +1714333,Mirko Zlatar +19953,David Wharnsby +96345,P. C. Sreeram +1045855,Eduardo Schuldt +1448107,Jonathan Bruno +57828,Klaus Richter +1404918,Don Ferguson +1058611,Benjamin Leavitt +967827,Steve Allrich +1206803,Harold Jalving +1457941,Rick McMahon +1161453,Kristján Loðmfjörð +1238983,John Godber +75574,Damon Bryant +1494533,Cassidy Zachary +1086965,Bill Cleaver +72936,Géraldine Michelot +1816773,Hiroyuki Terao +223986,Merlijn Snitker +1369247,I.A.L. Diamond +137126,David C. Eichhorn +1627697,DiDuLa +84723,Park Eun-yeong +59342,Jürgen Draabe +1639573,Ryan Michael Wilson +188171,Sandy Frank +91604,Ali Taner Baltaci +1545921,Abdenabi Izlaguen +95996,Thomas Doran +1844321,Ron McKenzie +55691,Juliette Towhidi +21227,Sergio Martino +1276551,Adam Wierzbianski +108944,Daniel Forman +1441752,Niels Rinke +136125,Al C. Ward +1772145,Valentin Konovalov +1106885,Levan Kobakhidze +1708022,David Williams +928679,Oda Schaefer +1744241,Stephany Folsom +1077512,Cy Howard +1510429,Domenico Sica +587397,Timothy Andrew Edwards +1393372,Chuck Stringer +1147889,Roy Cornwall +70649,Sanford Lieberson +1410105,Michael Baltazar +1421243,Miguel Llansó +1170240,Michelle Jones +1396316,Simon Ellegaard +1151390,David Crespo +1451782,Tadashi Kudo +1351464,Oguz Goker +1314832,Andrew Cross +1367051,Virág Zomborácz +72237,John Enright +937380,Jonathan P. Morris +1236448,William Moulton Marston +1582595,Amina Ouchater +1077290,Jørgen Kastrup +1099499,Alec Puro +1418425,William Mood +1469568,Pascale Bouquière +99996,Scooter McCrae +28930,Horst Markgraf +1644757,Matthieu Taponier +1440303,Charles S. Hodes +1207587,Arthur Pielli +1031769,Michael Coulombe +1905080,Tim Harding +1081074,George Cottle +138209,Rodolfo Sonego +1568900,Melissa Lawrence +1430296,Tommy Woodard +1514419,Michelle Knudsen +928386,Lisa Immordino Vreeland +1665458,Chuck Harding +1746445,Manmath Matondkar +1646577,Lari Karam +75554,Merlin Cornish +1205892,James Lucas +1660724,Howard Swindell +15015,Amy Stofsky +1543586,Mike Dacko +1515547,Martin J. Barab +1120841,Naoyuki Suzuki +1713056,Jep Hill +24756,Jacques Bar +1570075,Kostas Varympopiotis +1399483,Daniel Carbo +46997,Alan Gibson +1050962,Yacine Laloui +1404815,Steve Picerni +121141,Jim Cypherd +1645941,Kunal Sharma +1551814,Michele Ziegler +1706351,Salman Iqbal +38061,Sydney Box +1087638,Sheldon Pinchuk +1296724,Nathaniel Levisay +1583298,Eric Pascarelli +91014,Terry Reiff +1445362,Jennifer Marie Thomas +1054798,Nemanja Petrović +109542,Christopher Yost +56230,Eric Bassoff +76010,Arie Posin +1428032,Pat Nebo +1373181,Ivan Lyons +1111202,Terry McMahon +1127912,Andrew Goldman +1338204,Paul-Edmond Decharme +1214860,Linda Mendoza +1271795,Patrick Neary +20465,Charlotte Walter +1096777,Dorothy Farnum +1647133,Kelly Zampogna +1642527,Eric Bouillette +1708032,Rick Idak +1402725,Carl Michael Bellman +1296179,Pepe Portillo +543839,François Kraus +1270118,Arden Rynew +78418,Jean-Paul Bathany +1256726,Brad Winderbaum +92893,Geir Hansteen Jorgensen +61255,Jason Pielak +1869455,Sal Falcone +1159349,Michael Moss +1570044,Sophie Slotover +1051668,Nathalie Durand +1183129,Gunnar Pálsson +1103574,Peter Denomme +1804240,Nicolas Trout +29882,Eliya Arman +1544338,Karen Elliott +1345425,Inger Ash Wolfe +1729095,Patrick Scalise +1548165,Marcus Ricaud +1448316,Ragnar Brynjúlfsson +125952,Andrei Kavun +38493,Fabienne Katany +1286564,Buzz Hughes +186476,Clark Carlton +74730,Felix Herngren +1106886,David Patarkalishvili +1582465,J. Mark Grosvenor +93514,Masashi Todayama +583480,Robert C. Yu +101867,Sanjib Datta +1597019,Emilian Stanev +1399300,John Berri +1134201,Edward Hall +1367811,Olivier Nguyen +145470,Alper Mestçi +579130,Jacques Plante +1551040,Jonathan Watkins +1764542,Mike Witherington +1458990,Robert Larriviere +1550516,Carthew Neal +1616467,Lucien Harriot +1138845,Stepan Martirosyan +1693555,Shotaro Yoshida +1288841,James Lejsek +53092,Moshe Edery +1611687,Holger Jungnickel +63223,Peter Principato +64628,Pierre-Alain Meier +1479475,Peggy Stein +1408396,Jay Kemp +62268,Richard Finney +900406,Adrian Correia +1840261,Tony Whitman +1287511,Cosimo Bizzarri +1430514,Peter M. Gurski +29081,Ron Hagen +1418509,Károly Rozsnyay +1152737,Elizabeth Hatcher-Travis +1224778,Monika Mitchell +1536586,Huy Vu +1321144,Elena Martín Hidalgo +1390375,Georgiana Sayer +1423754,Blake Bolger +1639068,Al Griswold +1409710,Candide Franklyn +1819155,Mickey O'Hare +1634957,Anne Oldham +465587,Gopi Mohan +1831213,Andreas Söderström +333662,Giovanni Di Clemente +1341360,Andy Palmer +262313,Adisorn Tresirikasem +1410820,Howard Hollander +1423425,Lino Chetcuti +1717770,Raquel Vivve +1095114,Boosaba Daoruang +46959,Frank McDonald +40616,Boleslaw Prus +186788,John Robins +1033926,Eric Altmayer +545782,Irina Volkova +46985,Simone Klier +1396401,Egbert Kruger +76367,Kjell Sundvall +1593261,Jonas Sacks +85056,Rameshwar S. Bhagat +1386331,Carl Thomas +120015,Josh Appelbaum +1607447,Chizuru Hirose +1142953,Jarret Tarnol +577620,Jim Borgardt +28791,Laurent Bénégui +165303,Joseph Wambaugh +1725084,Aleksandr Chekhovskiy +42057,Richard Levinson +1636714,Sasha Houdek-Korellis +939458,Florence Vercheval +166816,Fred Barron +1402731,Robert Bull +1006750,Melody Howse +1840865,Samantha Scher +1031767,Mary Shelogg +1553949,Anja Jabs +1379026,Tom Linden +1301271,Adam Prince +89384,Tino Schaedler +1450356,Tristin Cole +58163,Hitoshi Yamaguchi +1170862,Sara Mishara +1516459,Christopher Fulton +1405322,Roxanne Rizzo +1550280,Audray Adam +1091859,Ivy Vanhaecke +1634432,Chris LeDoux +1478496,Dmitri Atovmyan +1896951,Mathias Peralta +51835,Helène Vager +1668655,Rachita Singh +1482324,Yukio Okada +1067715,Daniel Bollag +1313754,Joshua James Richards +1172461,Jeremy Berg +1126793,James Vance Marshall +78982,Dean Backer +1386905,Jenni Knight +1888996,Leesa Simone +1286540,Mauro Mueller +1746444,Elisabeth Leeb +21969,Gayle Keller +1765165,Akshay Powale +1579514,Reut Hahn +1870516,Richard A. Bullock +15604,Nacho Ruiz Capillas +63427,Kenneth Burgomaster +1554329,Eudald Magri +1143441,Tom Harari +1817464,Dan Quigley +1352122,Kouichi Tsurunari +1294791,안상미 +118772,Abderrahmane Sissako +1034655,Mike Corbera +1196846,Stanley Lewis +31409,Edmon Roch +37297,Daniel Bobker +1410100,Jessica Stumpf +1797877,Cathy Kostova +1164613,Jaejung Kim +1493666,Matsuo Yamaguchi +1716003,Wouter van Herwerden +1206332,Janno Põldma +550480,Геннадий Сокольский +1031156,Bud Raab +1341475,Kevin Lipnos +227910,Roberto Andò +1425569,Richard Borowski +1334941,Ismet Begtošević +1570085,Doron Kaufman +928260,Diego Urgoity-Moinot +1506365,Empress Holley +70204,Nino Marino +1085602,Emmy Eves +108464,Isaac Julien +1579379,Mandy Pauline +1662645,Kiara Walker +1360095,Tim Zydel +1327245,Terésa Dowell-Vest +967276,Jacob Koskoff +935705,Michael Dudok de Wit +18395,Serge Roman +1388082,Alan Edelstein +63890,Branko Linta +1179440,Mark Steel +1756364,Allen Knudson +1433534,Josef Kainar +1130788,Zack Whedon +574147,Pierre Bonnette +63820,Christian Ditter +1391564,Gary A. Krakoff +1869443,Michael Hauer +1180859,Lírio Ferreira +1323777,Zoran Popovic +1641975,Joel Mendenhall +1031251,Jonathan W. Stokes +1885854,Daniel J. Porpora +1888978,Andrea Hayes +1519287,Idriss El Gholb +1661324,Ricardo Silva +425435,Suresh Urs +1895011,Emma Woodcock +65545,Tova Laiter +1307114,Jonathan Hua Lang Lim +587458,Jutta Brandstaedter +76454,Andrew Cohen +1189052,Barbara Kronig +930629,Jamie Travis +1442145,Matthew Silverman +1434067,Hubie Kerns Jr. +1058272,John G. Adolfi +1174684,Joyce Chan Ka-Yi +119988,Jean Davis +1860887,The Bee Gees +230157,Dominic Burns +1151278,Brad Leong +567120,Davy Rothbart +1620544,Hamdi Rafaat +1361406,Nida Manzoor +155416,Kevin Kirkpatrick +1372758,Stéphanie Anne Weber Biron +68144,Sebastián Escofet +1440448,Edouard Duprey +1640714,Kris Casavant +1642597,Virgilijus Sepetys +53948,Antonio Graciani +1523029,Chris Tergesen +1548096,Isabella Vosmikova +1601462,Giannis Patsis +60696,Barry Bowles +1525127,Amiel Zwier +1035074,Rachel Robey +1864633,Lennert Hunfeld +1197814,Frank Scheffer +30974,George Bau +1585740,Emily Hayward +1095116,Jina Osothsilp +1397876,Stan Blackwell +226464,Anton Bakarski +1504645,John Swab +1522133,Matt Chaney +1708004,Amy Gregory +1406731,Matt Allsop +1351615,Yoneichi Wakita +134464,Valeria Sarmiento +1261020,Hideaki Sorachi +9859,Johanna Harwood +1728380,Elliott Borkum +67853,Roderick Davis +90418,Yuval Ron +1532552,Raimo Paananen +30872,Roger Neill +1189765,Eric Fischer +1282314,Vincenzo Pardini +1602932,Pierre Charron +1775763,Zeitlinger Silvia +1630488,Sofie de Mylius +1512768,Yiniva Cardenas +1759313,Amy Haffner +1536639,Daniel Chrétien Jr. +131388,Bradley Rust Gray +232022,Jiří Barta +1869389,Paulo Welter +141964,Jacob Gentry +88026,Bryan Goeres +1410600,Thomas Brémond +1571478,Rosanna Dill +1565846,Karin Schmidt +562717,Rezo Gigineishvili +1106272,Mark C. Manuel +1638551,Simon Lee +930684,David France +1400609,Katie Shinsato +102797,Robert Marcarelli +1596327,Imre Paabo +11995,John Dighton +1117467,Marek Polgar +1186360,Hélène Le Gal +1884748,Jorge Leonardo +1561595,Filip Míšek +1463272,Jennifer Hodges +58053,Pang Ho-cheung +1447085,Michael Huang +1420172,Fabio Gargiulo +543922,Leopold Atlas +1879112,Wayne Smith +1354876,Parviz Davayi +1448443,Ryan Howe +817418,Stephen Niver +36319,Sébastien Japrisot +20845,Olivier Gajan +37848,Werner Schlichting +86246,Teruo Ishii +1430517,Sheldon J. Nueman +68113,Ryû Murakami +1408987,Michael Schultz +1461690,Stephen Treadway +58160,Osamu Tezuka +1034447,Shoojit Sircar +1574729,Ali Hubert +1871188,Ariane Turner +1017624,Dominic Savage +81256,Joel Hopkins +1806868,Jérémie Degruson +932715,Jay DiPietro +1797415,Pascha Hanaway +1507572,Tal Goldberg +1338231,Georgina Gunner +1403322,Aaron J. Martin +559681,Markus Sehr +1350852,Lee Karvonen +59374,Radek Bruna +1602400,Vladimir Maslov +1495528,Ruslan Timerbaev +1363151,Sandro Frezza +1128266,Stoeps Langensteiner +1294988,Serge Bard +101930,Alex Chandon +1797464,Charlie Jenkins +544638,Miles Kahn +1140154,R.F.I. Porto +1646495,Olivier Guillaume +1418063,Ted Hayash +38595,Michele Massimo Tarantini +1896777,Vince Nyuli +1048421,Justin Dix +19639,André Hunebelle +238619,Pavel Kostomarov +822754,Ján Chaloupek +49505,Roland Topor +225738,Yoshimitsu Morita +1340340,Christine Mitchell +1347451,Don Foster +1667636,Matt Hansen +236579,Curzio Malaparte +1367803,Christophe Chabenet +49244,Wolf Neumeister +1598795,Nicolas Massart +1561317,Saiwyn Qadras +1357588,Sarah Mae Burton +50280,Sepp Ketterer +1325559,Henry Jaderlund +1286538,Mette Thygesen +1551898,Alysia Wildman +1850520,Kalleigh Miller +1125173,André Michotte +1583181,Andrew Redd +1645658,Karan Singh Rathore +89965,Katsuyuki Sumisawa +1136329,Peggy Lee Gam-Man +1666201,Zoubir Belgsir +1538714,David Schulhof +84472,Philippe Lasry +119497,Brent Simons +1601704,Aleksandra Kljajic +1344908,Victor Huang +1455536,Amita Sahgal +1505086,Jemma Burns +1316884,Tu Duu-chih +1583082,Katarzyna Fukacz-Cebula +584093,Bruce Wilkinson +232025,Ian Lauzon +1685939,Jason van Houten +92350,Matt Callahan +998719,Arthur Hopkins +1529070,Judd H. Maslansky +1532333,John Hunt +581178,R. Madhi +1378152,Terri Garrett +105666,Tim Oliehoek +1437693,Alexander Kotsev +1140172,Kevin McCarthy +1305822,Víctor Hernández Stumpfhauser +126261,Hiroshi Watanabe +1395217,Pino Halili +1296445,Ben Collins +1692968,Jorge Uchoa +1076672,Ira Kaplan +1410320,Lorna Bennet +1715751,Paul Abadilla +1841884,Susan Manns +1470970,Melina Burns +1433426,Norman Breedlove +100921,David Attwood +1485144,Dámaso Hernández +1273227,Matthias Lechner +1618899,Rita Medina +1746451,Mark Campbell +1509630,Jamie Kataky +1608383,Marc Blavet +1330202,Ahmet Yasa +70505,Beverley Mills +1534693,Bonnie Osborne +1678408,Arad Sawat +1386332,Jenni Wieland +123099,José María Forqué +129945,Brian Miller +1326205,Oleg Churkin +61379,Preston Stutzman +84027,Edgar Dutka +120334,Helen McCaffrey +147532,Flip van der Kuil +1415129,Sophie Giraud +1642578,Andrew Hsieh +234397,Jeff Malmberg +1179843,Lauren Delaney George +1692108,Heather Koontz +1132457,Vichaya Vatanasapt +49698,Antje Zynga +1409870,Béla Unger +936978,Mattias Troelstrup +1158429,Merel Graeve +1191309,Clelio Benevento +1886205,Bosco Caesar +1642581,Andrew Kavanagh +19690,Jonathan Hely-Hutchinson +54022,Juan Bosch +52923,Heike Wiehle-Timm +1826925,Ryan Monro +1262327,Gary Khammar +1206345,Antun Vrdoljak +1179829,Bruce Thierry Cheung +1691509,Richard Papier +1268786,Markus Zusak +41007,Helmut Ungerland +103454,Robert J. Stone +1363964,Anne Goelz +1755174,fraser Watson +1262959,Alyson Richards +1294571,Matt Israel +1448551,Mina T. Son +1643578,Sachin Sudhakaran +1775652,Armando Praça +225717,Emil Flohri +1560956,Ron Weityman +128219,Ludovica Rampoldi +1148115,Ian Howes +1051964,Carlos Hidalgo +77861,Jean-Philippe Toussaint +935231,Lennert Hillege +126784,Izuru Narushima +1654528,Marcia Ball +144732,Konstantin Gropper +1348179,Frederick Cryer +179236,Patrick Archibald +1732802,Alcy Sivyer +1493526,Jen Roskind +229108,Anjum Rajabali +113084,John R. Ellis +1580858,Cole Darby +1469161,J.M. Ryan +1570295,Paolo Gargano +1276649,Quentin Levy +1566575,Kjetil Jensberg +1173859,Frida Jonason +1107213,Joel Heath +1426231,Stuart Pollok +1561899,Vladimir Belorusov +39898,Florian Foest +560182,Kristian Milsted +45117,John Carney +29628,Howard Dimsdale +1759739,Daniel F. Malone +1586013,Clarke Da Prato +6532,Javier López +1583300,Larry Magid +1722223,Adam Hunter +109941,Kristen Quintrall +1660714,Roger Feenstra +78978,Aaron Barnes +935718,Stu Gibbs +1400505,Jennifer Anderson +1471558,Michael A. Williams +1653397,Harold White +1520235,Ohad Benchetrit +1640830,Adrian Bell +1462231,Imre Czomba +1188593,Al Orenbach +225586,Michael Scott +1635804,Rikke Hovgaard Jørgensen +1451508,Masaki Sawanobori +1287830,Eric Nagy +1581767,Austin Alward +1389946,Alexey Rybnikov +93322,Theodore Reeves +1642569,Mandy Kealey +1519284,Salah Benchegra +1288071,Kristopher S. Kimlin +73170,Jerome K. Jerome +1724367,Orlando Duguay +1088940,Penny Panayotopoulou +1419644,James Speight +85709,Allan Amin +1436538,O.T. Hight +1840335,Michael A. Wilson +1387184,Simon Carr +1470705,Laura Cristina Ortiz +1636710,Kyle Wullschleger +11431,Ford Beebe +1642577,Silvia Hoefnagels +1513531,Brian O'Donnell +1454504,Naomi Cripps +1277409,Christophe Bataille +1381420,Simon Njoo +72501,Hiroshi Fukazawa +113285,Ben Washam +1539294,Anna Creasy +1414915,Chad Gracia +1609168,Stephen Mason +44146,Mark Tillman +1314293,Naren Chandavarkar +550104,Scott Hamilton Kennedy +1462579,Savelen Forrest +1012327,Daniel B. Cathcart +1186219,Josh Merrill +1322555,Susanna Codognato +1642554,Stunner Sam +1271079,Frank Henson +1568468,Pascal Rigaud +102972,Albert Cole +43674,Michael Burks +1688666,Ram Achanta +1814014,Josh Machado +1044894,Park Heung-sik +1404356,Martin Vackár +77816,François Flamand +1367138,Mike Kjolso +1286579,Les Halstead +1792334,Daniel Aylward +1446135,Jane Madden +1543191,Jason B. Stamey +935300,Deanna Simmons +1127582,Siko Dolidze +1558017,Susan O'Connor Cave +1096613,Amir Manor +1395021,Brent Rice +1419620,Paul Pribble +63873,Tomislav Pavlic +1652865,Catherine Siguret +1375450,Louis Jennings +1327217,Timmy Carlin +224003,Cecil F. Ford +1418901,Douglas Kirkland +1575351,Mollie Barr +231248,Saša Rašilov +525,Christopher Nolan +1326253,Masato Hijikata +1518590,Jim Di Gangi +1463123,Ben Whitver +1390357,Trent Claus +1039203,Craig Christainsen +65873,Stefan Kolditz +1412914,Thierry Guilmard +1535117,Cait Adkins +1495870,Miksa Andjelic +206596,James Gibb +1364430,Elisa Carlson +1635291,Diego F. Diaz +78217,Chad Law +1460750,Courtney Miller +1299194,Ruth de Jong +1201948,Nils Kirchhoff +1676538,David Davin +77782,Andre Lascaris +1374696,Chelsea Shanders +227371,Chris Martinez +1592791,Arthur Deleu +1662642,Elizabeth Rosenkranz +1743906,Humberto Gurza +1639571,Yvonne Chu +66216,James Mitchell +1758551,Krittapat Untaket +1623938,Maurice Dupleasis +992858,Tapio Piirainen +1306688,Massimiliano Leone +1643410,Frauke Nelißen +35507,Harry Ammerlaan +1337981,Valeria Di Pofi +1087519,Steve Rucker +1018948,Jesse Baget +1375373,Marina Azizyan +1852944,Dyu D'Cunha +115934,Yasushi Fukuda +1415093,Sebastian Perez-Burchard +1907203,Geoffrey Harper +132525,Masayuki Taniguchi +932318,Pablo Giorgelli +1399457,Eric de Jesus +1368852,Jenny Oman +1722726,Andrew Poston +1105073,Melodie Krieger +1188147,claudine nougaret +1367923,Jessica Isam +584292,Mona Nahm +1316515,Asaf Korman +135382,Yûgo Kanno +1343517,Harry Ross +355686,Matthew Kohnen +233074,Shahid Hasan +1103529,Joey Paul Jensen +1756306,Ben Cross +1725759,Adam N. White +1319730,Claudia Brewster +1857568,Andrea Gamboa +1316449,Kama K. Royz +1771809,Aisha Balinda +1301333,Manuela Cacciamani +52173,Fred Myton +1547490,Ken'ichirô Yasuda +956434,Steven H. Wilson +1900648,Mikhail Chikovany +1817124,Cécile Dubois +1614060,David Walter +1533424,David Zonana +1417885,Lorena Talpan +1653745,Aer Agrey +1212985,William Schmidt +178272,Suzanne Clauser +1346455,Heike Fink +1046100,Thomas Hal Phillips +1829869,Celia Yau +1375641,Andrea Farri +1569349,Ben Baudhuin +1103631,Joseph Stephens +1037397,Patrick Rotman +1188914,Robert Baird +1475412,Cille Neumann +1407845,Lee Anne Muldoon +1521081,Daniel Green Jr. +1780234,Ben Stranahan +118712,Kim Tae-kyung +129741,Alessandro Bencivenni +1526936,Aleta Wolfe +30838,Paul Sylos +1201107,Jon Brennan +1193638,Nicole Rivelli +543176,Grant S. Staley +126021,Scotty Welbourne +22178,Xaõ Seffcheque +69038,Carlo Vanzina +67929,Sergio Bonotti +1676035,Naveen Reddy +1079871,Betty Laidlaw +1342288,Fred Graf +40302,Marcia Romano +1795352,James Bay +1704678,Rebecca Skloot +1411127,Jerry Richards +1537269,Henri Maïkoff +1547760,Samantha Waite +1125463,Patrick Guide +1330530,Mike Weber +1317095,James D. Benson +1351723,Frédéric Le Louet +120546,Jerome Cady +1276818,Ramírez Gabriela +1412332,James Bladon +1717433,Els Rastelli +115257,Reid Dennison +548755,Cécile Corbel +1198465,Kurodo Mori +1458719,Frank Brenner +64075,Jay Roewe +1351554,Eddie Sauter +1853244,Alexander Weimer +1317094,Agostino Porchietto +1106902,Sandra Frantz +1397076,Brian James Fitzpatrick +1403323,Kathrine Sullivan +1680332,Sreejesh Nair +232381,Bruno Zincone +94825,Jared Underwood +240838,Allen Boretz +114379,Abhishek Chaubey +1518780,Erica Van Den Raad +1634471,Mark Graham +1880932,Thilak Pushpa Kumara +69125,Marc Silverstein +53529,Martin Trevis +125326,Bob Mori +1587605,Amy Kempf +1098984,Sherry Sonnet +1295594,Fred Pallem +1867517,Paul Curtin +112996,Alan Hackney +1405574,David Vyle Levy +83464,Mieke de Jong +1403662,Thomas Rogers +1357879,Bryar Freed +1510996,Jessica Danielle Smith +1635218,John Ross +1121989,Joaquín Padró +50933,Nicola Badalucco +1699379,Mackenzie Geehan +1090814,Claire Mathon +71574,John Paul Kelly +87082,Jim Mickle +1585742,Yvonne Savage +29608,Jake Myers +146005,Naomi L. Selfman +1503521,Bethany Michaels +1781641,David Maund +939147, Yeon Sang-Ho +1853241,Ilya Samsonov +236362,Alain Tanner +5199,Benedict Hoermann +1171318,Corrie Jones +12864,Bruce Logan +1373489,Vivek Agrawal +1707997,James Clarke +1888977,Stephen McGlade +1089880,Riyad Barmania +1797245,Stefan Knight +1646556,Vasuki Bhaskar +1057062,Fred G. Sullivan +1790941,Tommaso Mele +1635216,Christopher Padilla +140080,J. Donald Wilson +1012123,Faouzi Bensaïdi +1468137,Anne Bogart +135439,James C.E. Burke +960057,Frank Beetson Jr. +1424689,Loïc Andrieu +1543256,Deyan Kirilov +1551466,Nako Kakinoki +56277,Italo Petriccione +93550,Nikolay Lebedev +1494193,Zairi Malcolm +1755040,Bahman Naraghi +1448293,Charlotte Harrigan +34276,Paul Mertz +1548887,Guillaume Poulin +1312179,James Watson +544171,Kenneth Macpherson +1336704,Matt Rager +207419,David Winkler +1402102,Suzanne Noble +134172,David Carter +1335145,Radoslav Mihajlović +1631874,Gwennolé Le Borgne +1468094,Marian Koltai-Levine +1279793,Setsuo Noto +1394488,David Greenbaum +66740,Jonathan Chibnall +1640818,Alice Norris +56842,Gianni Zanasi +1848083,Jo Priest +1149912,Sara K. White +1423659,Moe Howard +1801172,Trevar Cushing +1000754,Charles Scalfani +1383612,Dan Kwan +1518802,Ellen Fine +1084881,Julie O'Hora +87531,Kim Hee-jae +958863,Paul Myler +1529731,Shozo Noguchi +1205940,Catherine Wallace +1692111,Zoltan Gyulai +1541738,Ognyan Alexsandrov +1709327,Jen Farris +932090,Karsten Gopinath +93064,Michael G. Bartlett +65766,Joe Johnson +1339122,Karl Feldbusch +1642573,Carlos Galatola +130212,Bettina Julius +1539403,Johan van de Vyfer +1431089,Sean Oxenbury +1572958,Iwao Teraoka +1029239,Jean-François Mercier +1311704,James McWilliam +1086269,Laila Pakalnina +1003239,Marianela Maldonado +1393581,Jack Lazzaro +133236,Wendy Toye +1107766,Suehiro Maruo +1580965,Johnna Thomas +1425488,Tim Keene +1835191,Norm Daschle +93127,David Westheimer +1853230,Natalia Domeretskaya +1537651,Karol Sidon +39779,Peter Collinson +929050,Manuel del Moral Rivière +191677,Alex Segal +1321933,Liz McCracken +1323205,Jens Harant +1644252,Peter Beeh +1495525,Annie Holstein +1287512,Carlo Zoratti +111877,Ron Barrett +1642570,Matthias Münster +928335,Marty Lester +578813,Sidney L. Caplan +1717793,Laurence Benaïm +1616470,Bree Moffett +96616,Tsai Mu Ho +1639016,Pernille Rübner-Petersen +928774,Roberto Castón +1519335,David G. Burns +1517105,Ron Proulx +1580827,Teresa Ngan +1701838,Geórgia Costa Araújo +1642545,Des Duggan +1081846,Raphaël Frydman +1083925,Amélie Ravalec +1436537,Santiago Recio +1521079,Lynn Tonnessen +5446,David Hand +17366,Günter Fenner +1553462,Harry Parker +962085,Ondrej Nekvasil +579291,Cécile Vacheret +1352113,Tatsuya Ono +61362,Lee Gordon +1095381,Dan Levine +1191694,Gil Quito +1207799,Fiz Oliver +225554,Michael Pavone +1495531,Megan Richardson +1404277,Gabrielle Mahon +133240,Donald B. Wilson +1484176,Petr Forejt +1550772,Umar Hussain +1016133,Jacob Krupnick +1481490,Malgorzata Staron +1481503,Aura Getino +392967,Akira Tsuburaya +1470167,Jonathan Olley +970467,Chad Leslie +63602,Neesh Ruben +222472,Joyce Carol Oates +232672,Douglas Schulze +45929,Camille Thomasson +1797487,Patten Smith +1851921,Evelyn Olson +1738644,Francesco Zaccaria +1568323,Moisey Vaynberg +578687,Skip Kite +1439092,Jeffrey Kalmus +1681648,Maria Manuel Riobom +40296,Reinhild Blaschke +135600,Mine Vargi +1580457,Katerina Michail +1552789,Michael Cliett +1249250,Michael Gilbert +1395032,Amanda Jenkins +1692541,Sean Cliver +1579739,Jay Lender +1451524,Bobby Cardoso +21857,Chris Davis +1450083,Eyrún Helga Guðmundsdóttir +95269,Sam Ross +1718580,Kathryn Himoff +1635292,Pamela Hovies +1122355,Richard Stilgoe +1162254,Marko Brdar +30897,Stefano Trani +229248,K. Asif +38550,Jamie Brown +1635319,Larry Gilbert +1403409,Artin Matousian +1691496,Kevin Sieve +1127472,Paul Barry +1385132,Monika Bacardi +1108871,Stephan Zlotescu +1410219,Stacy Rowe +1568250,Gareth Munden +1775643,Neto Valesi +1735099,Priyanka Agarwal +2582,Henri Rust +1192791,Nicole Hilaréguy +1545619,Claire Paoletti +1573323,Mark Bankins +1544896,Dominik Schuster +1070384,Geoff Hart +1434454,Tarun Ahuja +129808,"William Lewis Ryder, Jr." +1821403,Renato Chiocca +1845776,Chris Leach +70259,Martin Poll +1367813,Eduardo Pena +1118129,Janet Hubbard +1570587,Damian Isherwood +120448,Gerard Fairlie +1037756,Niamh Morrison +1777184,František Havlíček +103602,Mabel Cheung +9078,William Fox +1468577,Mark Russell +1013742,Daniel Cúparo +1559628,Les Guggenheim +128499,Brett Bach +1827212,Nonette J. Garcia +1110113,Nabh Kumar Raju +1457393,Clair Blondel +965090,Jim Heber +1337940,James Altwies +1824261,Spencer Murray +931482,Matt L. Lockhart +1608775,Tien Nguyen +1584304,Joseph E. Rickards +992854,Juha Karikoski +1581516,Karen McLachlan +1764821,Karnesh Sharma +1501786,Carlo Lavagna +1583304,Bill Shaffer +1361566,Ciaran Jordan +1323619,G. Richard Beddingfield +224266,Melinda Ramsay +1790947,Laurent Taillefer +1873047,Angelica Tibblin Chen +564948,Nick Weiss +1581084,Tung Lo +1348778,Gabriel Di Martino +1041255,Timo Hietala +1399910,Sam Hudecki +1119480,Manuel De Sousa +566678,Kristín Jóhannesdóttir +980252,Elias Ledakis +1579381,Jaclyn Laravie +112749,Zachary Matz +1157008,Patricia McNeil +1094168,Rohan Jones +1416944,Matthew Hobbs +1423843,Peter Ozarowski +1468928,Caroline Dehner +1082000,Brian Chandler +1632331,Richard B. Molina +1466745,Samy Keilani +1635803,Elin Plantin +931948,Cathleen Sutherland +17503,Peyman Yazdanian +567147,Joaquin Baldwin +1354341,Siriphon Cheersumsuk +1387543,Donna Christiano +1523025,Nolan Hughes +1336139,Nina Vinogradova +1733202,J.P. Castel +132515,Katsuichi Nagashima +1606281,Carlo Aquari +1416942,Simon Rose +15702,Don McDougall +544777,Renate Merck +1680653,Isabela Monteiro de Castro +89596,Joaquim Dos Santos +1060280,Supriya +115678,Peter Bowker +1178576,Isabelle Madelaine +47114,John F. Warren +1373558,Nick Komornicki +1425552,Alan Maxwell +1489060,Matthew Helderman +1506787,Mauri Bernstein +76881,Hiroshi Saitô +1757626,Joe Cassano +1288789,Bryan Reisberg +1276531,James Swarbrick +1736382,Luke Varley +138867,William Fruet +190247,Richard Leiterman +1489176,Adam Driscoll +958055,Jason Katz +1135310,Claudio Amaral Peixoto +1301634,Paul Arnold +80118,Michael Coldewey +1182908,Diana Acrey +1483848,Heidi Tebo +5984,Kerstin Bonnier +588338,Julian Moss +1650751,Sophie Beasse +1097805,Bibi Dawe +1905113,Kimberly Mikoluff +111967,Tomohisa Yano +1089534,Giorgio Magliulo +1183724,Marianna Kaat +28579,Leopold Grün +1203447,Al Perkins +37535,Siegfried Hartmann +230592,Jeffrey Bernerd +1591026,Jean L. Dupuis +1087736,Karen Weigert +1642469,Piotr Morawski +1407261,Sven Doornkaat +1463806,Tyra Youland +1853405,Adrian Foulkes +1059961,Martin Ambrosch +1733921,Ralph Messer +1576629,Pam Pierce +1567889,Sacha Puttnam +1564379,Chikako Suzuki +1892820,Joni Sternberg +138780,Judd Resnick +1646196,Jordan M. Wank +91277,Esmé Lammers +1795264,Leticia López Margalli +1189275,Chris Pinkston +1455701,Tyson James Dale +1324839,Rebecca Cammarata +1552788,Ahmed Shehata +1721331,Fraser Page +1783002,Karen M. Cantley +32983,Douglas McGrath +127440,Hideki Takeuchi +1027537,Jean-Jacques Grünenwald +43659,Kôzô Shibasaki +1500693,Rohan Dhurandhar +1729090,Jason Joubert +545368,Marjan Lammers +1338483,Kailand C. Reilly +1195347,Colby Mitchell +89674,Benjamin Christensen +1389543,Calandra Meredith +1731647,Giulia Caruso +37560,Miguel Ángel Bermejo +93136,Charles Binamé +1862926,Nigel Clinker +1376728,Seamus Walsh +1479520,Albert Barba Cunill +439442,Fien Troch +1651569,José Luis Saldaña +1059147,Vlad Paunescu +1457828,Josh Einsohn +1483093,Rosie Kaller +1570575,Susan Bayne +1459748,Peer Lemmers +1377740,Matthew Wilder +1416933,Andrew Pearce +1393092,Talia Kleinhendler +1841616,Christopher K. Edwards +1363083,Brian McNelis +1364798,Neishaw Ali +1475895,Marcus Cox +1209290,Scott Woldman +1625936,Fyodor Provorov +217181,Aaron Springer +40053,Frank Military +56280,René Malo +1382204,Earle Doud +1342656,Nancy Nugent +1341736,Ed Downham +1113720,Deepak Bhingardive +1458065,Patricia Androff +188534,E.L. James +196895,Stephen Schneck +1638706,Jimmy Santos +1782432,Militza Vélez +1392238,Jack Clements +1221630,Michael Riebl +938108,David Kennedy +559206,Ulf Rydberg +1583075,John Malmborg +1780096,Albert Lewis +1351024,Jordan Canning +1574096,Sona Pak +170622,Norman S. Powell +1368744,Murray Teigh Bloom +31216,Guillermo Calderón +1484199,Maura Hogan +1114888,Francisco González Compeán +1550389,Esther de Goey +1835190,Trevor Cunningham +25631,Julian Gloag +1262870,Gavin Cullen +1467461,Taylor Brown +1318502,Teresa Binder +1575346,Charlotte Pearson +1139970,Giacomo Gramegna +1372345,Sadyk Sher-Niyaz +138138,Priit Pärn +52138,Silvia Roberts +1529566,Tatsuo Kuroda +1053404,Marko Mäkilaakso +223007,Scott Bindley +1091585,Salvador Torres Garriga +47658,H. Fowler Mear +1457949,Bryan Felty +929052,Esteban Mentasti +1463718,Eric Dvorsky +1197951,Keiko Takemiya +1367504,Britany Viguerie +1770712,Wall 5 Project +1319219,Takamitsu Inoue +1905076,Rainier Buidin +37634,Louis Becker +1452992,Neil Kennedy +1192048,Nikhil Mahajan +1428044,Jason R Moffat +580704,Hans Renhäll +1743407,Rob Connolly +1388855,Matthew Robinson +114541,Anders Frithiof August +1385904,Autumn Durald +1763417,Ramendra Vasishth +1207545,Manuel Dacosse +1580887,Patrick Edward White +150758,Marvin Woodward +88796,Sangeeth Sivan +79335,Stein B. Kvae +74002,Maya Gräfin Rothkirch +909318,Andrew Erwin +55150,Phil Bedard +1542341,Gabriela Gociu +933454,Bous De Jong +1095321,Matt Mandarino +947682,Stuart Aikins +75968,Geoff Hitchins +185998,Stephen Lawrence +1895006,Louise Seymour +1640311,B Senthil Kumar +1587604,Roxanne Anderson +583471,Drew Shirley +1200899,Csaba András Kertész +1325211,Neil Lamont +1661902,Baba Azmi +1539434,Sascha Robey +1384364,Simone Leclerc +1635297,Wayne Short +577420,Charcoal Tan +225814,Mikkel Brænne Sandemose +1620447,Ronald D. Olson +33219,Carl Toms +235264,Lucio Mastronardi +1622809,Agostina De Francesco +59419,Scott Lew +20787,Terry Dresbach +1537846,J.B. Popplewell +90454,David Dhawan +1421219, Mak Tin-Shu +1151388,Pau Subirós +212687,Daniel Calparsoro +67795,Steven Shainberg +1489789,Aska Matsumiya +114478,Carolyn Pickman +1759274,Jessica Hall +1297916,Bob Busby +1313029,Maxim Asadchiy +1035761,Jody Colero +1446546,Deborah Gaydos +1579001,Daniel Zollinger +1542950,Patrick De Ranter +1327139,Alex Cameron +569952,Marina Andree +440763,Greg Richardson +1611981,Mark Elijah Rosenberg +1735413,Naomi Reed +120018,Massimo Venier +85552,Borja Cobeaga +1757620,Amelia Chen Miley +1308343,Damien McPhillips +1757633,Jean-Paul Bernard +1222180,Joe Kelly +1023539,Rafael Palacio Illingworth +1169499,Tianyi Pan +1347103,John Davis Hart +67454,Bo Ehrhardt +110331,Memduh Ün +931689,Benoît Chamaillard +1446132,James Palmer Schoppe +1642539,Michelle Davis +1619744,Sarah Prevo +563749,Joe Tiboni +1317283,Caroline Stewart +1662638,Drew Kilgore +1041223,Erik Matti +106755,Anthony Kramreither +1054338,Sindri Páll Kjartansson +998745,Carlos Marcovich +1117101,Andrew Cesana +215726,Liz Marshall +550924,Shûichi Kakesu +1404874,Johnny Ludlow +1306117,Joe Vasconcellos +1380142,Carlos Bustamante +1482922,Joel Alonso +1424109,Erik Crary +1404875,Jo Beckett +964327,Tommy Turtle +28427,Alexander Scherer +1023502,Dac Coscarelli +35374,Françoise Javet +1496035,Karen Smalley +109342,Jacques Feyder +25632,Jeremy Brooks +51757,Christopher Morgan +1187260,Martín De Salvo +304528,Chad Oakes +7899,Galyn Susman +1022794,Eric Wostenberg +1439132,Nora Robertson +1652095,Tomas Wittrup +1357685,Jonas Ohman +1292993,Trevor Sagan +1707985,Sleiman Tadros +1514418,Lawrence Grey +1133091,Jerzy Gruza +1583207,Victor Stevens +1594160,Niall Cullinane +23786,Nacoma Whobrey +1412628,Ramesh Karthikeyan +1646873,Luisa Gomez de Silva +1126054,Jakob Schuh +122590,Richard Laxton +17368,Ayzit Bostan +1676789,David Walker Jr. +175726,Jorge Montesi +1758706,Neelesh Misra +1403798,Paul Govey +563827,Bebo Valdés +63711,Amy Rardin +1447502,Matt Sullivan +1367134,Jason McKee +1821424,Stéphane Sainte-Foi +120100,Claudio Saraceni +1201922,Federico Masiero +1418434,Marcus Rait +1473506,Paweł Lucewicz +47686,Brock Williams +1194369,Ryan Sanson +1088071,William G. Troiano +1082055,Jeremy Sklar +212954,Lucy Catherine +1339450,Roger Guyett +1895762,Bruno Dupuis +1121267,Karin Brandauer +1553205,Esther Friedrich +1635204,Jeremy Fry +78039,Elena Song +305663,Todd Jeffery +1186433,Arbo Tammiksaar +1414914,Raphael Sorcio +1378432,Linda Kemp +1324261,John B. Josselyn +1447567,Carlos Zapater +1413693,Mattias Naan +1724366,Ryan Booth +1564157,Gary Trentham +1621471,William Evers-Swindell +1559457,Jeremy Bramer +1831336,Daisuke Sue +1335412,Sandra Conti +1317099,Leslie Schilling +1593476,Tara Arnett +261224,Brian Desmond Hurst +70919,Alphonse Boudard +1307112,Hai Huang +1785935,Katy Covell +1598516,Samantha Ellison +15581,Chris Plummer +22183,Gerhard Jakubowski +1708437,Scotty Herd +1801220,Clara +1444302,Luis Freitas +986472,Tobias Datum +1640636,Ada Radu +41401,Wieslawa Otocka +1032318,Mario Gianani +1851898,Patrick Mahoney +1636731,Terry Riyasat +1136919,Steve Hoover +25906,Tia Nolan +1605651,Erik Dornblut +39725,David Kajganich +1299818,Alexander Narizni +1759318,Ryan Senecal +75770,Gordon Westman +1107021,Sreenu Vaitla +118737,Alvin Lam +25821,Gianfranco De Bosio +1474151,Allison Hall +1299853,Dean Balser +1404927,Gary Hellerstein +1129382,Jyri Kähönen +1578007,Vanessa Porter +1060725,Theodore Taylor +1382921,Marc Furmie +1466109,Rick Jacobs +1345261,Boris Atanasov +21167,Charlotte Dubreuil +1217579,Simon Mirren +1090410,Joachim Ludwig +1683362,Alyssah Powell +1318094,Troy Wagner +1589015,Bill Daniels +71358,Alberto Borello +1460045,Carmen Howie +187051,Ian Smith +1446541,Susan Moray +1394319,Jeff Yaworski +928314,Noor Ahmed +1403005,James Barth +1555794,Shivani Rawat +1785026,Manas Choudhury +148571,Robert Emmett Tansey +1855285,Walter Brugmans +25290,Diane Fine +1759819,Christopher Stack +1479535,Florence Putzola +1376946,Vijay Mishra +1034420,Khuta Gogiladze +1004716,Mauricio Zacharias +1618762,David Mathew Weeks +1685871,Ben Kadish +1698807,Wanda Kowalska +1294785,P.G.K +1300274,Jason Zada +1574737,Heinrich Umlauff +1117782,Kunio Kishida +19342,Jacqueline Guyot +1393582,Mary Ann Valdes +1609322,Maria Arlamovsky +1340721,Steve Mercer +95636,Ethel Hill +35113,Agota Kristof +59363,Stephen Schaffer +1135880,Max K. Curtis +1450897,Ben King +1867210,Augusto Cabrita +1814975,Pastor Alvarado III +571473,Michael Greenspan +1599476,Gatis Smits +1391782,Armin Franzen +1692687,Matthijs van Heijningen Jr. +1439747,Andrew Hunt +1570584,Nadine Duclos +1373427,Sonja Nyman +1705748,Mauro Venturini +1646541,Matthieu Chatelier +1654346,Kenneth Mackay +130860,Animal Collective +75081,Nana Fischer +1594819,Ziv Katanov +31867,Gloria Schoemann +1540923,José Haro +1083258,Judith Stanley-Smith +1816361,Kate McCowage +937639,Manu Dibango +1597067,Kiril Mihaylov +1459870,Sarah Hunt +1754092,Tricia Torley +545502,Lee Alan McConnell +52230,Ingo Ludwig Frenzel +584902,Aleš Belak +1179842,Brenda Abbandandolo +1583084,Derik Wingo +1340088,John Richoux +1175181,Gilberto Perrone +1867531,Sigfried Seeliger +1748603,López Egea Lolo +1417918,Steven Toepell +1081073,Chris Corbould +1568952,David Ahern +1468554,Tricia Schultz +2833,Janusz Zaorski +118981,Catherine Robbe-Grillet +524128,David Caspe +1635178,Ann Stacy +1636669,Elizabeth Paschall +1521492,Ken Gorrell +1291114,Humberto Arenal +1536587,Susan Donym +559704,Harry Robertson +1047244,Jun'ya Yamazaki +1475899,Michelle Tesoro +1606820,Sean Ruddy +1395232,Jon Gearhart +1052763,Bill Malley +134949,Paolo Di Reda +1659965,Alphonse Ghossein +1726032,Caroline MacLeod +1640137,Todd Messegee +1071318,Peter Garey +1606166,Fabiola Beracasa +1069713,Melanie Rein +201757,R.L. Stine +247612,Robert Conway +1703716,Hezi Bezalel +1493738,Matthew Stuecken +1404921,Elissa Zimmerman +1650277,Houben Dries +1372208,Cate Montana +1293663,Kang Seong-hun +71355,Jan Johansson +1332309,Ronan Coleman +1811971,George Abbott Clark +1729089,Jared Patrick Gerbig +38692,Paul Hoen +1903910,Toby Tyler Jr. +1412625,Narada Thotagamuwa +1210567,Haim Mazar +73290,Robert Walpole +571269,Buronson +1514152,Marnie Wong +133433,Charles R. Marion +1646202,Jac McAnelly +120795,George Holmes +1334178,Miguel Fernandez +101142,Luigi Scattini +1045428,Marko Jocić +237185,Satoshi Hayashi +1828332,Wayne Wells +994113,Kelli Pryor +1642501,Andreas Musolff +1331621,Sean Spillane +1646828,Justin Van Der Merwe +1003240,Robin Todd +1838189,Pamela Sealy +1286320,Ben Chanan +1283798,Harry Hallenberger +103384,John L. Herman +103580,Thierry Notz +1506368,Autumn Butler +221466,Filippos Tsitos +1226281,Emily Spivey +1431504,Simon Ambridge +1573932,Brennan Mercer +1113180,Warren Batchelder +1371606,Thomas Goldser +1322107,Marcus Schaffer +236889,Rebecca Zlotowski +1338967,Esther Schreiner +63980,Andy Keir +1582463,Jose Alvarado +144888,Tim Capper +1555494,Dennis Scully +1618898,Zina Torres +1566581,Jim-Andre Taaje +1419645,Lauren Goldman +1088623,Michael Gordon +1731915,Kitty Green +1318095,Joseph DeLage +64278,Michael Feifer +1817522,Hiromi Miyawaki +1394654,Chris Bordeaux +65193,Thomas L. Carter +1530233,Chris Kay +1866312,Fahed Alhabib +1228520,Alexander Woo +1071403,Alice Guy +1486940,Stefan Maciag +1014034,H.N. Swanson +138144,Lothar Mendes +1581195,Kat Wood +1732080,Kho Wong +147916,Robert McDonnell +44036,Michael Miner +1549654,Jennifer Pyken +1069771,Ulf Olausson +26406,Philippe Lopes-Curval +1558019,Sue Mythen +1575335,Nini Than +113671,Dharmesh Darshan +1630963,Travis Staley +550475,Fyodor Khitruk +1859980,Chun Ho Ray Leung +1419642,Joel Minnich +1446126,Eberhard Wecker +1773037,Stefan Beckman +92055,Anthony D'Souza +126945,Brian Percival +1167349,Jerry Aronson +90607,Massy Tadjedin +1129874,Eduardo Nunes +1744993,Nefeli Rapti +1884077,William M. Weberg +1735502,Dennis Mason +1437663,Dana Paparuz +1069525,Mark Haggard +1564950,Judith Berg +1041643,Kuei Chih-Hung +1551811,Hugh McClelland +22498,Michael Schaefer +231496,In-gu Kang +1125574,Wang Xing-Dong +1023720,Johnny Remo +132210,Dama Claire +1407748,Mickey Lambert +1830878,Semret Fesseha +1043421,Mark Shapiro +1736214,Darryl Humber +1117115,Heidi Kernes +1644772,Edit Szücs +174547,Anand-Milind +583100,Josef Shaftel +222886,Jean Yeaworth +1015902,René Perraudin +1780187,Nadine Waeldchen +1188038,Julie Cypher +1598478,Galius Klicius +888974,Luís Urbano +1475576,Rhys Thomas +6987,Denise Robert +1169897,Dee Linford +1317573,Andy Henry +232385,Nelson Hume +1293792,Suhyeon An +1698982,Alfredo Fernández +1791603,Henning Høifødt +1880926,Narinder Singh +92559,Richard Brandes +64393,Patrick Knippel +1864622,Sophie Aberkane +1634558,Dane Hallett +1300755,Scott A. Jennings +1606261,Marisa Crimi +1512663,Tuomas Seppänen +32965,Tanja Ziegler +1394715,Scott Ruley +127499,Amy Krell +1060536,Paul B. Kossoff +1694708,Roberto Sonego +1161451,Árni Filippusson +1532609,Chip Byrd +1122357,Lawrence Huck +1426314,Kirsty Vogel +1285985,Chris Sun +1702826,Tim Smit +1161763,Jenny Raskin +1532261,Cathleen Dore +1185226,Van Cort +32071,Raymond Danon +1031924,Julius Brammer +73486,Nikolaj Egelund +1792029,Vincent Oktay +544828,Jenni Jenkins +1364139,Christian Marti +1548182,David Di Francesco +1117769,Raphaël Cohen +42271,Kenn McDonald +579046,Rémi Bergman +1337304,Maldwyn Phillips +236606,Kasper Tuxen +1305455,Claudia Da Ponte +237187,Yuji Ambe +1805809,Greg Tynan +1721517,Molly Mandel +1002554,Rob Fitz +163998,Carol Morley +1616458,Kyle Petitjean +221442,Peter Payer +1728391,Forrest Gray +1437424,Alexandra Lebret +15177,Don Ellis +568079,Essi Suomela +1770999,Thomas Goodwin +1333580,Nora Mendis +71778,Manuel Munz +1676031,Sameer Sawant +30057,Steven Parker +114327,George A. Gittens +225978,Valerie LaPointe +1474658,James Raymond +256221,Eric Louzil +946915,Peter Sadowski +74397,John Ajvide Lindqvist +1567386,Александр Боярский +588827,Tono Errando +6076,Dirk Grau +1574457,Nicolas Raffy +113066,Jon Lavender +1186596,Justin Edgar +101903,Shauna Cross +227366,Vibha Singh +1426224,Tai Duncan +1653497,Kaushal Moses +1205762,Camille Jumelle +1023523,Louis Joseph Vance +1156248,Katrina Liepa +184478,Robert Sandler +1653482,Himanshu Joshi +1117768,Sabine Sidawi-Hamdan +571455,Susumu Kudo +238582,Liliane de Kermadec +35403,Eva Franzen +1074667,Davis Coombe +1097207,Emanuel Rosario +1204708,Pamela Rook +32278,Matt Reeves +1448108,David E. Groom +1415900,Kirill Belousov +1309787,Travis Long +204400,Richard Stewart +1353018,Cormac Regan +1791602,Daniel Lindvik +1372762,Vivien Lesnik Weisman +1209364,Ken Swartz +70942,Peter Hollywood +1393367,Brad Kessell +1457657,Patricia Ruben +1084906,Nobuhiro Watsuki +1621109,Oh Myoung-jun +1317077,Miroslav Lakobrija +935717,Dylan Clark +1460038,Stephen Harrison +1468948,Jacqueline Canto +1401129,Mike McCutchen +89218,Edward Cronjager +514369,Robert Popper +1305670,Hu-kon Lee +1666900,Jon Foster +49517,Rudolf Wolf +1179823,Gabrielle Demeestere +63852,Warren P. Sonoda +2559,Henri-Georges Clouzot +1725779,Andrea Smith +57325,Hans de Beer +1034735,Devin Ward +95944,William Jacobs +1159418,Fyodor Shakhmagonov +118078,Hiroshi Masumura +442985,Stéphane LaFleur +999726,Wendy Hammond +54172,Eric Hubert +1201857,Roy Alan Amaral +1404853,Nadia Stacey +1591731,Sage Lewis +588380,Charles-Olivier Michaud +1448868,Jonald Reyes +20406,Larry Blanford +33290,Justin Caine Burnett +101536,Dayton Taylor +952379,Terry Levene +1697366,Agripina Lozada +1829852,Steve Ellingworth +1665451,Mary Beth French +1318880,Andrew Moreau +1343381,Filip Tegstedt +1453104,Nikola Jeremić +1757627,Michael Fitzgerald +1452721,Randall William Cook +1698856,David Dare Parker +1662339,Marie-Thérèse Verbruggen +1572874,Albert Ribas +1492086,Jeff Arkuss +1712629,Geoffroy Gosselin +1746431,Toby Copping +1347937,Paul Spencer +1417859,Hernan Camacho +157301,Will Mackenzie +222529,Susannah Lowber +558644,Doug Goodwin +1777178,Zdenka Barochová +110705,Ashwin Patel +1701610,Michelle Morgan +117082,Janine Gosselin +92307,Olga Vincent +1367361,Suzanne Milano +1372082,Tessa Brophy +113134,Veronique Guay +226117,Alexandre Coffre +62659,Lewin Webb +1785025,Sameer Uddin +1570576,Philip Graham Connell +30973,Jerry Welch +1139529,Jai Khanna +1719409,Laura Pinto +1636397,Ian Megibben +1305094,Alois Reiser +381828,Walter Rupp +1895007,Sarah Wilson +1568519,Stuart Wilson +1411128,Robert Karlsson +94096,George Sherman +1529,David Nichols +1643833,David Hayman +237044,Dasaradh +1725772,Tony Lupoi +1453305,Pascal Fontanille +939124,Justin L. Levine +1357884,Guy Myhill +591221,Helmut Dziuba +126501,Tim Cox +1419631,Justin Hurwitz +1202604,Nina Petrovna +66494,Ariyela Wald-Cohain +1607284,Savage +232246,P.J. Posner +1417301,Mel Eslyn +110193,Rahul Nanda +1227669,Todd London +1525154,Brandon Parvini +1759305,Thom Spence +95306,Shayne Radford +1327223,Marlène Rouleau +1721327,Meghan Grube +1340060,Chic Waterson +427964,Benjy Gaither +960924,Philip Giffin +1525567,Luca Bianchini +1351553,Harrison Starr +51656,James Quattrochi +1144880,Philipp Leinemann +1407359,Lubo Hristov +1830513,Erick Brennan +71056,Lou Ye +1735770,Danny Williams +40216,Dirk Vaihinger +955154,Francesca Silvestri +1651500,Ian Bedford +1479518,Kelly Baigent +1419234,James Ashton +1026354,M. M. Kaye +1204525,Larry Schlechter +1799716,Elio Maiello +1496396,Joe Murphy +1127957,Lincoln Kupchak +1860712,Giulio Battiferri +1111005,Robert Emmett Ginna +1777244,Jindřich Liška +57010,Michael Stöger +1190669,Gregory Lemkin +119254,Vlas Parlapanides +1406057,Lorraine Jamison +21690,Byungwoo Lee +1853242,Ulyana Saveleva +55449,Lee Philips +237968,Raju Sundaram +1135403,Olivia Silver +1308028,Roger J. Forker +1480788,Aleksandr Zatsepin +1402358,Andrew Cividino +1431149,Howard Davidson +15018,J.J. George +1399068,Ian Seabrook +1050576,Ling Lucas +125403,Marcell Jankovics +936897,Henrik Paersch +10101,Nobuaki Minegishi +54011,Frantisek Belfín +1783551,Gamal Diab +1563920,Troy Myers +1046586,Rafa Dengrá +1907218,William Appleby +111462,D. Ross Lederman +43222,Michael Grossman +1013903,Sutapa Sikdar +574200,Morten Solum +1383102,Rob York +68149,Francesco Patierno +1824268,Bex Reynolds +69040,Enrico Vanzina +1173413,Rebecca Luke +53972,Robert Schenkkan +1495415,Kentarou Tsubone +1448326,Eric Börjeson +1766572,Bruno Sbrighi +937191,Fernando Lopes +1780152,Maik Lehmann +1797504,Johnny Rafique +49850,Beate Scheel +1496449,Anton Chizhikov +1625945,Irina Stulova +1178551,Rob Gilmer +190257,Frank E. Johnson +1342601,Nicholas Brooks +1107777,Nobuyuki Sugaya +1179590,Scott Walker +1555158,Ann Kline +1722923,Hiroshi Yamashita +1171355,Aleksei Timm +1577343,Federico Ivanier +1842288,Dennis Miller +1635249,Patrick Kral +1143493,Andrew Knauer +1448774,Patrick Rupprecht +1144626,Terrell Suggs +1496425,Pinar Comezoglu +1329399,Dev Singh +1774221,Waikit Wan +69538,Pavel Lebeshev +30657,Alessandro Alessandroni +1099735,Kyle Kenneth Batter +1423909,Sally Black +1671735,Emil Nyitray +1485694,Lori Roussell +1105324,Chad Callner +108810,Cecil Beaton +1394638,Nikole Beckwith +936797,Yorgos Argiroiliopoulos +1526865,John Mason Kirby +1271890,Jono Oliver +75222,Alan Kaplan +1318881,Carol Case +536712,António Lopes Ribeiro +35889,Philippe Bourgueil +1585241,Michael Haertlein +509950,Todd Lewis +1482845,Kelly A. Cook +1707995,Jo Scott +1585772,Sarah Stamp +1446413,Ann Lynch +1452406,Burak Aksak +1631229,José Ángel Santos +1419101,Brian Drewes +1841581,David Schwab +1086513,Yasushi Akutagawa +1501743,Deb Shoval +1411121,Jenny Ray +1129513,Chris Clark +936834,Youngho Kim +1443847,Luke Bechthold +1553486,Alison Wright +1470535,Marc Cote +1276969,Tasca Shadix +138042,Minoru Matsui +1018788,Jasmine McGlade +1891554,John Clarke Bowman +82952,Masaru Kakutani +30508,Jack Sher +1536193,Séverin Engler +234279,Antoine de Saint-Exupéry +1459878,Marlene Chazot +100422,Ted Strauss +91766,Todd Britton +1713740,Jung-hoon Kim +929481,Tetsuya Oishi +1458869,Duke Tran +1024441,Jerome Sable +90266,Luis de Val +234646,Shimako Sato +1244275,Andrea Raffaghello +230355,Michael Mailer +891946,Jesse Studenberg +1201975,Anja Siemens +1345258,Mosko Masev +1650286,Gareth Spensley +1210464,Tricia Lee +1492755,Christian Kracht +1103559,Praveen Bareria +1098748,Juliet Jones +1423726,Martin Hampel +1267137,Abbey Leitch +3567,Michael Heath +1843,Thomas Jahn +221499,Robert Hültner +51932,Neill Fearnley +1438487,Vipin Mohan +1450096,Arnór Pálmi Arnarson +1797857,Christian Valdelièvre +1314152,Leah Butler +1453135,Robert Chen +1642502,Lynette Charters +1331940,Gregory Henn +1442569,Juan Miguel del Castillo +1107948,Matthias Steurer +1746436,Will Fife +939108,Hui Mao +1447983,Robert Kresser +57917,Toby Genkel +70952,Muriel Breton +18665,Alan Jaggs +32183,William Nobles +1188703,Billy Fine +10019,Haya Harareet +1738109,Akemi Hart +76046,David Ranes +1367671,G. Peter King +1728508,Evan Schrodek +1281267,Steve Ruff +64431,Jian Guo Zhao +1141546,Billy Mulligan +583495,Ayelet Menahemi +1445854,Monique Eissing +1399447,Ryan Heck +117579,Hans Weeren +1712631,Kathleen Parker +1027545,Riza Aziz +1043047,Rick Reinert +1340077,Jonathan Fletcher +74277,Susan McMartin +1128684,Zev Foreman +1221398,Jock Gaynor +1410544,Jennifer Drake +1867212,Manuel Ruas +1441208,Gábor Szabó +19343,Jean Gargonne +1324206,Carl Kayser +1615982,Charles Finelli +1403442,Mike McKone +62781,Kristin Bicksler +1088259,Pete Ford +1093244,Jón Atli Jónasson +25011,Ross Vannelli +25297,Craig Campobasso +1451826,Gu Man +1116251,Matt Tyrnauer +1117286,John Herbert McDowell +60335,Nick Dent +1174725,Gianni Polidori +132866,Ryan Kernaghan +1537536,Katrina Wolfe +1392978,Iwona Kanclerz +1103820,Andrzej Kondratiuk +97143,Hilmar Oddsson +115122,Dmitriy Dyachenko +1777257,Antonín Buráň +1095897,Colette King +1059910,Piotr Dumala +1020083,Norry Niven +4591,Jack Moran +1428875,Reg Roordink +1092851,Kazuo Kubo +1345272,Mitko Milushev +1070882,Titus Popovici +1817478,Brynn Grossman +1526869,Jonathan Day +1761129,John Rezner +1389453,Augustina Stanciu +1632376,Cédric Fayolle +1273673,Enrico Maria Artale +4719,Ahmir-Khalib Thompson +1035162,Stuart Bentley +1263222,Bo Ransdell +1056029,Matt Hehn +1038019,Valerie Weiss +5591,Daniel Blum +1874668,Corey Tong +1440672,Zoltán Bacsó +1797417,Matt Houghton +1518580,Dick Johnson +1568630,Celia Iturraga +1389614,Peter Michael Sullivan +111987,W. Wallace Kelley +1115093,Kanti Shah +148515,Jack Cluett +1154242,Jacob Secher Schulsinger +1603903,Maria Coveou +1689123,Dan Izen +58861,Russell Rouse +1442146,Richard Thwaites +1497110,Anup Bhandari +18565,Michel Audiard +112349,Edwin V. Westrate +5933,Mark Sanders +69096,Norman Nitzsche +1382178,Dimitri Mentis +1780484,Robert J. Babin +41115,Magdalena Biernawska-Teslawska +1217380,Burt Styler +68542,John Smithson +1203176,Dorian Fernández-Moris +1263556,Isabelle Mathy +1323106,Andrew W. Bofinger +1030407,Philippe Chiffre +1451399,Abraham Grossman +1598850,Frédéric Moreau +1652814,Shin Seung-Hoon +1851888,Nicole Marines +1616976,Mirosław Brożek +1453021,Alexander Fernandes +1638338,Tamara Jones +1589094,Agustin Barrutia +1431151,Elisa Christophe +1415619,Mark R. Byers +567326,Juan Carlos Lausín +1486847,Nancy Fuller +64494,Ying-Wah Cheung +1316804,Christine Kromer +1785952,Kaitlyn Smith +1606175,Will Whale +1631410,Jeronimo Goded +1225145,David Collins +46289,Dominique Levert +39713,Richard Ciupka +1663790,Alexis Rose +54733,Greg Mottola +56644,Brian Reilly +1746066,Duncan Clark +1857041,Max Walsh +146438,Bertrand Bonello +1388092,Olivier Manchon +1520595,Jeannette Moriarty +1464773,Efe Hizir +91397,Joe Eckardt +46269,Miroslawa Wojtczak +1448240,Dov Keren +1682199,Oleg Karavaychuk +113784,Carey Van Dyke +1459756,Jee Young Park +1366990,André Valio-Cavaglione +96358,Brent V. Friedman +1770587,Yang Seo-Hyun +1205876,Maja Meschede +32316,Paul Guimard +1037512,Annalee Whitmore +1643230,Milena Doskocová +1852926,Ann Cummings +1163076,George Bilson +42365,James Seale +228376,Yael Hersonski +1102511,K.L. Going +1284295,HyeonSeok Song +1330834,Johanna Jenkins +1403417,Zahida Bacchus +1759764,Kevin Erb +1554315,Richard Mears +1843164,Jesse Andrus +102332,John Mott +1454616,Jean-Louis Schlesser +1086966,Vera Cleaver +1866315,Vaughn Arnup +1496221,Eric Alini +1519866,Emma McGill +138801,Chris Secrest +1372714,Antonio Prata +1739507,Wendy Samuels +57806,Graham Tiernan +1055286,F.E. Hershey +1521494,Diane Collins +1174110,Chris Stinson +1435515,Atilio Rinaldi +1709188,Lizzie Newsham +1407211,Frédérique Ney +145509,Ozan Aciktan +1630282,T. Evan Maney +1344582,Rodolphe Molla +1906519,Satyajit Pande +1081534,Juan Vautista +1453490,Charles Greenfield +585670,Jean Veber +1630066,Rossano Marchi +1124947,Geoffrey Brandt +1746454,Anna Burstall +1031157,Dick Prestini +1457056,Chris Gouchoe +1037514,John Dragonetti +1140298,Ricky Rijneke +1144816,David Lanzenberg +40466,Vincent Pluss +90365,Graeme Campbell +1377836,Thomas J. Buettner +1371393,Aaron Matthew Lee +1273466,Ronald M. Lautore +1365886,Tara Tremaine +1045816,Nico Muhly +1183755,William Anderson +446674,Alex Jaffray +170730,David Basulto +1728737,Mette-Marie Kongsved +1615529,Gilles Paris +1246573,Josh Comers +1533583,Yan Miles +1395731,Alan Martin +55754,Nick Gillott +1718712,Brad Howard +1351466,Carlton Hickman +1703717,Tamir Kfir +1674068,Tikke Tuura +97056,Phil Penningroth +1531264,Mary Iannelli +1586942,Leslie Valentino +1553737,Matthew Clarke +1355884,Carlos Rodríguez +1636718,Erik Reimers +1501790,Emanuele De Raymondi +1135968,Adam Patrick Foster +144397,Nate Watt +147113,Jason Woliner +1424052,Nicole Barton +1128841,Jonathan Woodford-Robinson +1120178,Richard G. Taylor +1547676,David Kennedy +1351468,Frank Mosca +78489,Laurent Tuel +1325530,Parag Sanghavi +996050,Tonino Zera +1847981,Alberto Bof +64427,Peter Tsi +1396502,Carlos Attias +1430500,Dennis Noyes +1619645,Oriol Nogues +1315185,Rie Matsuhara +1223265,Gian Enrico Bianchi +1386373,Andrés Tambornino +1692967,Helgi Thor +1197950,Hideo Onchi +1700462,Jose Cabeza +133438,Samuel Grafton +928331,Brady Dial +1384985,Leonid Belokurov +1401765,Steve Dietl +1422422,Kersti Grunditz +145206,Cruz Angeles +195816,Norm Liebmann +1373735,Bola Agbaje +1549352,Marcus Olson +1206325,Tim Iverson +1042437,Mikhail Kaufman +1853900,Carlos B. King +27185,Simonetta Leoncini +1182913,Eliad Josephson +1714329,Peter Traynor +1620546,Haig Kevorkian +1403414,Josh Friz +1859550,Marc Milliard +1380788,Misha Jaari +1367496,Christal Wolgamott +138856,Daniel Voldheim +1509979,Shingo Natsume +1423985,Hunter Brown +1428822,Christopher Goodman +101498,Otto Ludwig +1738169,C. Alan Rawlins +91771,Eagle Cheng +240290,Naoki Watanabe +1867525,Andrae Covington +1527515,David Darg +1549990,Hugo de la Cerda +1580879,Rebekah Hernandez +63356,Kevan Barker +1122199,Stephen Haren +63750,Øyvind Staveland +1579526,Yoni Frager +1064927,Tomás Pérez Turrent +1392981,Henry Milliner +1813886,Ryan Schaad +1568836,Javier Marcheselli +1188433,Sergio Caballero +87178,Michael O. Sajbel +226361,Tove Jansson +149379,Treg Brown +1256620,Stuart W. Ross +189089,Brian Alan Lane +1310478,Shailendra Singh +130852,James Garbus +1894237,Tito Solesi +1017712,George Schnéevoigt +1039204,Sam Fischer +10218,Raymond Poulton +1775301,Dylan Frymyer +1367650,Laurence Morel +119310,Annette Haywood-Carter +106476,Michael J. Murray +1724201,Liv Charpentier +1877806,Paul Monroe +1479525,Moïse Essame +1308742,Luis López-Baquero +1423734,Thomas P. Vitale +126624,Davide Marengo +1224549,Robert King +234209,Michael Erler +1495532,Ken Smith +1630372,Allen David Douberly +1402538,Lisa Latter +583731,Konstantin Buslov +1271301,Peter Doctor +69950,George W. Brooks +1087893,Riina Sildos +1338243,Mário Domingos +566665,Ian Campbell +1012088,James Benning +150196,Rajko Grlić +101424,Lee Frost +932645,J. Grubb Alexander +1814010,Ian D. Navran +1082877,Sølve Kern +1403901,Tijn Heerkens +1163742,José Li-ho +1000909,Doug Campbell +1087675,Robert Fontaine +1361163,Jill Ciment +1835515,Kristine Scott +1043687,Joris van Wijk +1294610,Choi Eui-yeong +61897,Matt Carroll +81296,Rodger Grossman +21856,Susan Van Slee +46286,Joëlle van Effenterre +115486,Richard C. Glouner +927851,Sandra Kogut +1413912,Kevin Downer +143353,Marcel L'Herbier +1906848,Eva Koltay +91769,Kathleen Quaife-Hodge +1014489,Richard Bullock +1379043,Adam Cutts +1468581,Victor Paguia +1657810,Seok-jin Jang +6039,Shane Salerno +1425402,Mikkel Jersin +1708020,Joyce Northey +1533530,Elan Yaari +1817462,John Davis +1834275,Linda Pope +10378,Robert James Waller +1446577,Valentin Rotelli +935359,Eugène Green +7206,Nanà Cecchi +544524,Ota Hofman +1561340,Doug Lavender +1635210,Bethany Levy +1419369,Toydrum +1301955,Sveinbjörn I. Baldvinsson +1748596,Sylvia Steinbrecht +1408894,Chuck Fryberger +1208422,Benjamin China +134194,Pietro L. Serapiglia +1638712,Kyle T. MacDowell +1555723,Lorely Farley +1808371,Matthew Streatfield +954052,Dane Peterson +1677,Izo Hashimoto +1571486,Lora McKenny +44834,Phillip Avalon +1676378,Gil Valle +87712,Yoshihiro Ishimatsu +1621366,Ryan Voisine +1351635,Tamizô Shûda +132189,Vittorio Metz +1507144,Cristina Waltz +1059065,Alan G. Rainer +41147,Alfonso Brescia +1638919,Paul Lukaitis +1211382,Nikki Silver +39558,Gerhard Heinz +63904,Rockne S. O'Bannon +1048389,H. Haile Chace +1519552,Glenn Casale +1618784,Brian Patrick McGuire +1486817,Russell Geyser +1323257,Roberta Shaw +1693211,Megan Thomas Bradner +962199,Luisa Guala +1496079,Ellie Decker +186126,Peter Godfrey +1242843,Page Hurwitz +939449,Kevin Van Hagen +1056121,Ryan Coogler +131652,Peter Rodger +1193423,Manuel de Cominges +1828347,Sam Atkinson +1411796,Julie Schubert +1051293,David Logan +1776763,Michael Wee +1417870,Chris Rubin +1128655,Daniele Mazzocca +1168867,Henwar Rodakiewicz +1821893,Matthew James Kutcher +103816,Nancy Romero +1018719,Kevin J. Doucette +1776887,Shiloh Kidd +1004953,Willard Mack +1572864,Amy Wright +59728,Malcolm Jamieson +1489484,Sh. Chitidze +1637287,Olivier Proulx +1701616,Lauren Wade +1856788,James S. Harvey +143014,Mischa Kamp +1606406,Ronald Searle +1412134,Nicolay Poulsen +224808,T. J. Scott +1635180,Brian C.A. Thomas +1530406,Keitarô Nakamura +28488,Kevin Elyot +1409658,Lewis Grassic Gibbon +1475287,Amy Williams +549312,Sarah Shaw +64429,Pik Kwan Lee +1438464,Eleonora Baldwin +1402903,Grant Harris +40269,Peter Devaney Flanagan +1415873,Sydney John Kay +37709,Oliver Ziegenbalg +1064613,Jenny Carchman +32069,Francis Girod +1821423,Jonathan Germain +1207549,Elisa Hormazábal +961059,Mike O'Neill +64763,François Desagnat +1110909,Jessica Goldberg +936080,Puttipong Pormsaka Na-Sakonnakorn +1769915,Sarah Young +148153,Rex Cox +1593832,Monique Simon +1350237,Steven Iba +1425382,Mélanie Poudroux +1504438,Sathish Suriya +1871251,David Sammons +1289568,Matt Mosher +113897,George Doty IV +1056088,Charles Ransom +1452698,Elizabeth Calderhead +934166,Jo Nesbø +103536,Jennifer Pearson +1448329,Dave Jewerén Moore +111744,Peter J. Solmo +1179000,Tomo Hyakutake +1753562,Elliot Holland +1521379,Melissa Kirkendall +119104,Johnny Andersen +69543,Patrick Batteux +194131,Sam Irvin +1907232,Diala Al Raie +1598599,Daniel Raj Koobir +1720783,Bryan Litson +1024877,Kasper Winding +16415,Maury Laws +1302832,Sam Harper +107010,Viktors Ritelis +1773038,Paul Stura +134912,Wang Chung-Pin +1188586,Kurt Knight +1293486,Sergey Melkumov +1688432,Odile McDonald +38268,Laura Hillenbrand +1676105,Amber Kemper +1438903,Tighe Sheldon +1872766,Patrick Chu +1608251,Sara Michael +1395214,Eli Hyder +56482,Werner Loss +1457655,Lori McKelvey +1304458,Christopher Lagunes +1311778,Eric De Kuyper +1400487,Glen Aldous +1198712,Kevin Iwashina +1706515,Michael Petrucci +1125115,Bárbara Peiró +1828348,Camila Tamburini +1176730,Todd Levin +557411,Halder Gomes +1524284,Decky Nelwan +1622452,Geoff Johnson +1338157,Natalie O'Brien +1580896,Dean Wright +1364225,Vera Español +1024276,Riccardo Tozzi +1181236,Don Boone +1215970,Ziad Touma +1377414,Tim Hoogenakker +1163148,Mark Sawicki +42742,Rachel Palmieri +1434871,Connan McStay +1191534,Saad Al-Enezi +67582,Susanna Moore +145170,Dan Abnett +564559,Carlos Catalan +1662518,Shushan +1033808,Sameer Malkan +92933,Craig Ross Jr. +990033,Laurie Post +66022,Pascal Arnold +1165485,Agniya Barto +1203162,Valeri Rozhnov +1402947,Sara Roybal +1455534,Mark Powers +66109,Ben Verbong +1584366,Nate Joski +1550786,Jake Lunt +984466,Anouska Chydzik +68716,Yoshikazu Suo +453499,Penny Wall +1506015,Jonathan Garrison +1293599,Hyeonju Ham +1537567,Renée Glynne +979298,Marilyn Haft +114456,Phillip Gutteridge +57769,Peter S. Elliot +1281214,Alan Bowne +1447089,David Rohloff +145829,Harvey Fergusson +1655884,Tracy Mercer +76998,James Marsh +1411228,Helen Brown +935853,John Roecker +1553153,Andrea Coathupe +109445,Yavuz Turgul +1002361,Zohra Shahalimi +231581,Tiya Tejpal +73247,Leonard Wibberley +1638335,Chelsea Leach +66059,Tommy Krappweis +1047248,Naoto Fujimura +1341760,Christy McGeachy +933308,Damian Nenow +1867529,Shane Klum +1394714,Hollie Howton +66611,Joseph Lenzi +552193,Satoshi Suzuki +1003238,Geoff Lindsey +1600787,Anila Jaho +1554970,Frank Clary +936081,Wasin Pokpong +236211,Guillermo Amoedo +1431501,Hayley Atherton +59758,Ezel Akay +1647409,Pornsawan Sriboonwong +1776965,Etsuko Aikô +1692497,Fiona Crossley +56534,Rachel Shane +71066,Li-kuang Chiu +494979,Manoj Paramahamsa +1158937,Luv Ranjan +1439424,Maxwell Fasen +890566,Claude Friese-Greene +1641323,Nicole L. Watts +1144162,Ichiro Okouchi +1530720,Rob Skuse +1066409,Hadi Hajaig +1508883,Toni M. Mir +1548389,Adam Horley +1543589,Gerard DiNardi +1114957,Alex Cutler +1548027,John Zaozirny +1394299,Tom Partridge +1455518,Ben Forster +1544261,Robyn Marshall +1657564,Lisa Konecny +1027086,Kandice King +1277589,Alessio Viola +1378336,Frank Winch +1761131,Christopher Mollere +1408469,André Levasseur +1543116,Penny Barrett +1127209,David Hack +1409868,Aleksandar Tadic +1818590,Lisa Lancaster +1521393,Tony Aaron II +1443945,Colleen LaBaff +1848863,Glenn Young +1540206,Dick Tummel +1780188,Line Weichmann +1087031,Amiran Chichinadze +36657,Nick Gottschalk +1717841,Krystin Hunter +89956,Rasmus Heide +1363859,Marc Reichel +1437218,Klaus Nedergaard +1742970,Helen Yates +1026379,Aditya Assarat +1513865,Amanda Alexander +1211208,Trevor Juras +1650741,Nathalie Tremblay +65884,Nicholas Wayman-Harris +1452997,Eddie Prickett +1606275,Giancarlo Montesano +1733798,Sarah Ullman +1544361,Manex Efrem +1335182,Bjorn Ole Schroeder +1746618,Mark Griffith +41006,Joseph Spigler +1355118,Valeria Altobelli +1087518,Thomas Chase +91758,Mehdi Charef +958414,Rupert Lazarus +1294082,Hyeonseop Sim +1580830,Michael Mew +222469,Art Palmer +1417620,Bill Catching +1547727,Tracy O'Riordan +1063286,Kenneth G. Crane +1152399,Sven Sauvé +71079,Michael Ewing +1382280,Hidetoshi Ômori +792498,O. Henry +582269,Marina Lyubakova +32213,Alberto Boccianti +1725760,Tim Fabrizio +1726737,Stanislava Zaric +105113,Lars Lennart Forsberg +1765661,Andrew Balls +23217,Aubrey Powell +1514576,Darci Jackson +1423845,Gino Mifsud +567989,Giulio Scarnicci +1603902,Maria Coveou +1085928,Oreste Coltellacci +1568237,Brett Nienburg +1455543,Megan Nicholson +108227,Joe Silva +53949,Luis Puigvert +1300065,Roly Porter +1149938,Pierson Silver +184912,Michael Winder +110468,Terry Ingram +1311640,Kathy Kirtland Silverman +1402884,Mark Brindle +1508120,Valerie Bishop +1631,Peter Asmussen +50652,Wataru Mimura +1827053,Celeste Fairlie +61993,Theresa Eastman +1558977,Wart Wamsteker +1529869,Bartholomew Cariss +1744165,Hamed Hemdan +22329,Katja Watkins +1844150,Stefano Torrini +1115630,Nick Nascht +1641443,Alfred Janson +1585440,Claire Peberdy +232065,Cherelle George +1544543,Rita Squitiere +1744118,Carlos Falomir +1781231,Michael Hastings +57302,Kazunori Ito +81676,Raj Nidimoru +1693045,Mehdi Mirzaee +228357,Peter Frischknecht +1183884,Matthias Koenigswieser +1106991,Jim Cliffe +1305111,Danilo Rea +947051,Cristina Huete +102389,Thunder Levin +1286575,James McCarthy +80577,Tomek Baginski +931867,Ahmad Abdalla +1326035,Marven McGara +116273,Nancy Boucher +1725090,Noriyoshi Matsura +1754089,Brian Schuley +1835298,Kathy Ruggeri +1547660,Steve Hernandez +1201131,Eddie Mullins +1348597,Milos Kvapil +1841596,Emely Martinez +1821420,Florian Penot +1058837,Isabelle Ungaro +79899,Ridley Pearson +65580,Martial Salomon +1402091,Emma Pike +1602998,Dennis Alarkon Ramires +1466671,Paul Thomson +1862945,Bill L. Burwell +1676801,Karli Kopp +1531102,Lucy Bright +1483138,Chloe Harrison +1127490,Marsh Hendry +1288247,Shogo Yabuuchi +1811618,Matt Jones +1447403,Nathan Hughes +228521,Arnold Heslenfeld +1512672,Lara Manwaring +951657,Torsten Jerabek +572035,John W. Rutland +1026674,John Casey +1050789,Ben Briand +1760324,Vinit D'Souza +151935,Edmund Morris +37756,Alison Owen +1395216,Derek DuBroc +1409886,Patrick Jackson +1591307,Dorothy G. Shore +1546745,Jane Gooday +142268,Antonio Troiso +1147041,Marty Richards +1338155,Caron Weidner +1745132,Gale Brown +583763,Shemi Zarhin +41969,Daniel Saint-Hamont +140471,Taro Akashi +39643,France Roche +1316284,Neil Davidge +71494,Hichame Alaouie +1175185,Eduardo Sidney +1547489,Yoshie Taguchi +1163450,Emmanuelle Youchnovski +1106201,Dheeraj Akolkar +1515482,Nicolas Martin +1472143,Leonardo D'Antoni +1709126,Neil Solberg +1200256,Taku Izumi +1177373,Edward Sheldon +52244,Juan Diego Solanas +165339,David Richards +1173858,Patrik Andersson +1367161,Borja Sau Razquin +1658456,Alastair Burlingham +1707979,Rupert Lloyd +83331,Steven Barton +1115622,Brand Thumim +1559624,Armida Reynolds +117009,Betty Pagel +1025533,Erik Molberg Hansen +1462276,Sidney Powell +1403003,Natalie Driscoll +1658463,Kelly Morel +1891864,Sharon Armstrong +82444,Ed Spiegel +1292141,Tat Radcliffe +1310888,José Manuel Cravioto +1828331,Sarah Macleod +1866245,Belinda Nicoll +1430519,Dan Danilowicz +1521485,Jaceson Mann +1407679,Chad Owens +1113581,Kate Boka +48910,Maurus Ronner +1616021,Jackye Fauconnier +1475315,Jørgen Munk +26354,Pierre Drieu La Rochelle +30759,Jeremy Burnham +1185527,Quinn Donoghue +1490767,Hanna Shea +1621860,Billy Frankie +2707,Paul Junger Witt +1424587,Ellen Dæhli Ystehede +1600241,Ralph Sylos +1489518,Hiroshi Furuoka +1692502,Kurt Kassulke +69031,Denis Wigman +172329,Jeffrey M. Hayes +1370610,Philip John +323375,Chris Brouwer +1408406,Charles Harrington +1578886,Dana Salerno +1030271,E. Charles Straus +1015701,Liz Vastola +205402,Justin Meeks +1531096,Gavin Rose +1852942,Amy Andres Cunningham +119325,Sidney Cole +1835193,Carl Grana +100808,Ron Gantman +1300810,Denis Bedlow +1816023,Rob Ortiz +592851,Julia Donaldson +1547755,Sarah Sheehan +45562,Gerhart Hauptmann +1468915,Naaron Fijalkowski +938248,Adrian Rudomin +1089148,Eric Whiten +550813,Yasuo Hasegawa +1090667,Harry Sinclair Drago +232615,Beverly Miller +1037931,Péter Szatmári +1176355,Thom Obarski +554223,Bill Kinison +1774215,James Nicholl +1386317,Clayton J. Barber +1571518,Kingslea Bueltel +990070,Katie Byron +1543591,Joan Philo +142228,David Cherkasskiy +1427572,Michael Landgrebe +1426834,David Bolen +1280312,Cassandra De Jesus +1236602,Jerry Mitchell +932139,Wesley Campbell +1154130,Frederik Botha +1676796,Richard Hamilton +1013158,Bodil Steensen-Leth +1797477,Lizzie March +1782698,Osmo Osva +1373726,Kim Phelan +1405264,Jimmy Lui +1725745,Korii Young +1404816,Ray Brislin +1085370,Fred R. Krug +238950,Gordon Dines +1462629,Constance Willis +237350,Mario Camus +75830,Réjean Labrie +1156211,Rachel Dengiz +1385486,Lisa Genova +67652,Kenneth Kaufman +1342502,Ron Fletcher +1533038,Diane Durant +1042789,Antonio Modica +1685110,Pedro Urrutia +31343,Godofredo Pacheco +137492,Veiko Õunpuu +1618768,Mary Kimmell +1809179,Aino Pervik +1375172,Krzysztof Rak +1567415,Jennifer Combs +1509632,Annabel Bates +1282005,Adam Bajerski +1411222,Tim Lloyd +1522768,Rob Lynn +1057663,Stuart Samuels +1825884,Kandis Hargrave +1810503,Aleksey Tolstoy +1684922,Sergei Kosmanev +1903535,Kiran Ramsay +131521,Spencer Susser +929973,Richard Epcar +239262,Nolan Lebovitz +555277,Kenzaburô Iida +1801309,Laura Zisman +1748529,Brent Lord +956446,Mark Winemaker +1569322,Annie Johnson +1400604,Noah Collier +1073056,Jushichi Sano +1559478,Nick Anderson +1276700,Aaron L. Ginsburg +1298932,Lucio Chiavarelli +149100,Irven Spence +1805808,Scott Lovelock +440646,Fernando Velazquez +1769262,Maurice Chayut +1341724,Michel Faber +1647581,Art Nalls +1526866,John Mason Kirby +1521330,Sharon Davis +1520683,Matt Russell +138871,Richard D. Allen +1544254,Claus Toksvig Kjaer +1707411,Nicki Roberts +999567,Neil Culley +1490941,April LaBranche +128979,Jeffrey Schenck +1609043,Scott Sans +1394219,Thodoros Mihopoulos +1550796,Brad Larner +588979,Ion Arretxe +1695805,James McMillan +1319152,Kerry Weinrauch +1342382,Richard Selway +591019,Michael C. Chorlton +1316223,Loris Curci +1376943,Raeth Band +1632894,Glen Daniels +225148,Brett Simmons +235990,Ruslan Baltzer +97570,Robert Hartford-Davis +91228,Martin Fink +1377418,Ed Araquel +1547119,Keiko Nakahara +1289367,Björn Soldan +1401768,Tracey Rogers +1665460,Nicholas Searles +1381113,Olli Varja +68651,Robin Cook +17710,Andrea Mertens +1491846,Deneane Clementi +1773268,Marina Blanchette +1163138,Alfredo Soderguit +1395229,Kevin Hughes +1387775,Steve Walter +1644765,Dorka Kiss +1637331,Red Rose Connerty +70000,Hualampong Riddim +1547233,Jim Lefkowitz +230179,Anthony Jabre +1527065,Dimitris Athanitis +43710,San Fu Maltha +24075,Ralf Zimmermann +142618,Adam Curtis +114722,Kentarô Ôtani +1498714,Rod Hay +146598,Mick Partridge +56635,Steve Barker +1213213,Richard E. Rabjohn +558642,Richard Olso +233076,Jessamyn Horsman +1707981,Sebastian Thaler +1373703,Robert Hochstoeger +1792027,Annina Goldfuß +68707,Masayuki Suo +1574092,Tom Balogh +237146,Annejet van der Zijl +13383,Helmut Weiss +1125210,Jeff Cole +1732768,Mehmet Özdemir +1346593,Ken Dalton +1454509,Pietro Dalmasso +783230,Yaron Orbach +1663359,Juan Carlos Calbanca +1625940,Nikolay Markin +1868232,Daniela Kurrie +1081201,Betsy Fels +1059009,Alex Ebert +1107146,Jonathan Sadoff +1130808,Tullio Marini +1118959,Andy De Emmony +239542,Kô Nakahira +1619690,Mark Rogers +1401004,Joseph Pettinati +1755108,Sarah-Jane Perez +1174114,Claude Lenoir +65472,Frank Ketelaar +150857,Toby Chu +1300888,André Faria +560188,Yoshinaga Fujita +1323719,Harry Mathias +1122900,Calvito Leal +36603,Matthew Michael Carnahan +1364805,Kristina Ceyton +553254,Shotaro Ishinomori +1815940,Duncan Williams +1776969,Yasuyuki Tôyama +1824242,Clara Gomez del Moral +1406766,Barry Idoine +931830,Vivienne Knight +1777194,Vilém Janík +1662646,Aina Lee +1375919,Michael Guy Ellis +1086814,Yoshihiro Yamazaki +1636645,Buster Pile +108731,David Bryant +42469,Veronika Varjasi +92894,Peter Birro +1176852,Anne Kelly +1886762,Chris Faulkner +16929,Christopher Gunning +1530539,Edward M. Roskam +1550793,Paul Wheeldon +85204,Jeff Beesley +112310,Cameron Johann +76570,Geir Hartly Andreassen +230030,Hriday Lani +4147,Walter P. Martishius +102179,Ray Clark +979183,Kat Westergaard +1086350,Anne Barnhoorn +1117110,Matt Ware +1537403,Ryûhei Tsutsui +1217198,Carol Himes +1709187,Jolynn Nieto +1451390,Mark Kilbride +111508,Bruno Bianchi +1402192,Dan Keeler +1622333,Jennifer Boxley +1765665,Eric Jett +115235,Kumar Mangat +1570519,Dave Paul +13833,Elías Querejeta +1202353,Yvonne Valdez +1614057,Ben Rothwell +1621020,Gale Peterson +1638816,Katja Müller +1644778,Tamás Beke +1799845,Jessica Van Garsse +1580854,Teresa Berus +15115,Stefan Ruzowitzky +1157060,Otto A. Harbach +1185284,dirk simon +1780162,Clemens Bachmann +1818462,Jerónimo Carranza +1405253,Susanne Faes +1305416,Monique Kirsanoff +48804,DeWitt Bodeen +1341080,Charlotte Bavasso +1334535,Diego Betancor +1415946,Belinda Parish +1432112,Patrick Delany +1504426,Klemens Hallmann +1544179,Andy Spletzer +1485474,Terry Martin +1427462,Craig Butters +566999,Kees van Nieuwkerk +41404,Franciszek Trzaskowski +222352,Paul Cotter +1070319,Sara Blecher +1280381,Kim Tizard-Lee +1582747,Nik Korda +1545996,Martin Corbett +91767,Melissa Suber +549311,Anna McLeish +1099012,Ty Anania +1638134,Johanna Lange +1179854,Theresa Bennett +933958,Coleridge-Taylor Perkinson +1642507,Robert Somerville +1756471,Didac Palou +1014026,Zach Dean +1068940,Raimundo Higino +591017,Roy Douglas +1333661,Jason Sokoloff +38887,Peter Pedrero +1410096,Andrea Bowman +34385,Freda Hansen +1412972,Patricia McAlhany Glasser +1434593,Dave Zeevalk +1302250,Philip Stong +1357686,Mark Johnston +75876,Linda Leduc +1764800,Dame Sitorus +1665417,Mashar Hamsa +1034665,S. Leigh Savidge +93529,Yam Laranas +1401127,Angela Maldone +1134159,Karin Košak +142036,Margery Saunders +55810,Jérôme Lemonnier +1818202,Cody Johnson +1676030,Sonal Sawant +1534379,Natasha Allegro +1644255,Paul O'Hara +57008,Christoph Leis-Bendorff +939199,Stacy Sherman +101104,Eleanor Lindo +1294128,Lee Hyeong-deok +1020761,Robert North +997904,Bud Schaetzle +1271755,John Lord Booth III +1502506,Maike Althoff +1505814,Geoffrey Tozer +141760,Diego Kaplan +939107,Lihong K. +101839,Hussain Zaidi +1805158,Malgorzata Spychalska-Komar +1336718,David Nash +144384,Derwin Abrahams +1338221,Paul Cotterell +135089,Phil Grindrod +889096,Cameron Larson +1636729,Mehta Apul +1504461,Pascal Bergamin +1550355,Enrique Beingolea +1742983,Danny Hargreaves +1075100,Juan de Dios Larraín +1824681,Kelly Fluker +1037694,Nobuhiko Horie +90378,Boris Morros +1548883,Carla Bogalheiro +1601464,Aristeidis Valsamidis +1141076,Angela Wong +86715,Christian T. Petersen +1823882,Alexis Place +1581408,Tobias Hoffmén +1621371,Eric Hirsch +1757095,Néstor Burgos +1457453,Merijn Sep +1501789,Lizabeth Gelber +1545303,David Hellman +590960,Scott L. Montoya +1126930,Peter Dohanos +128623,Claire Sifton +1294097,Yongrak Choe +75880,Victor Landrie +1828333,Derrick Franklin +1457944,David W. Dale +1099642,Jodie Jones +1168794,Jason Reid +1031764,Darren Warkentin +1573040,Alex Portin +150605,Edmond T. Gréville +1653565,Marcel de Block +138225,Sam Neuman +1354325,Wuttinun Sujaritpong +1120641,Daphna Keenan +1319827,John Zachary +96199,Liz Garbus +1376277,Matt Friedman +110292,Deven Bhojani +125176,József Nepp +1475319,Maureen Conway +1084954,Keith Leonard +1012004,Takashi Masunaga +41021,Martine Marignac +57803,Lutz Rahn +113233,Carlos De Los Rios +1727610,Yann Megard +1726808,Sheila Kelly +928631,Chris Coggins +1578867,Steffan Hill +1299642,Julius Avery +1676435,Sanu George Varghese +1153488,Pedro Gómez Millán +580908,Balakumaran +1116502,Jeffrey McLeid +146445,Çağatay Tosun +1134793,Genji Nakamura +1373193,Duane A. Sikes +16688,Willem de Beukelaer +56204,Daniel LeConte +1401175,Adrienne Lynn +1469397,Tom Daley +1416955,Dan Fontaine +968703,Alejandro Miranda +1412911,Marthe Faucouit +228290,Wen Yuan Mou +1696728,Pedro Pardo +175160,Cullen Blaine +92083,Rob Hudnut +1395228,Jeff Conrad +21921,Edward Joseph +133331,Reginald Harkema +1687742,Miro Terrell +103679,Per Åhlin +1577998,Christine Fitzgerald +1354324,Kittiwat Saemarat +1296968,Luan Amelio +553232,Atsuo Hirai +1738144,Stephen Bettles +1097228,Alexander Ahndoril +221202,Peter Wellington +1362264,Rosemberg Cariry +1596491,Jan-Eric Nyström +1738136,Michael Craig Ferguson +1324792,Selina van den Brink +123199,Ann Hui +1294787,정성철 +1030544,Don Preston +37313,Peter Fleischmann +1518049,Jane Stiefel +1095322,Eddie O'Keefe +1632803,Jane Koo +1536643,Guillaume Girard +223115,William Slavens McNutt +447797,Matthew Chernov +961332,Suresh Pai +1312659,Don Davis +1605934,Luigi Gervasi +142511,Yevgeni Gabrilovich +1417871,Jamie Maheu +1765171,Hitesh Mulani +1468126,Kevin Gilbert +163306,Jack Harvey +948295,Mariela Besuievsky +1582470,Jennifer Alondra Munoz +1851922,Linda Brock Garrison +137207,Ben Markson +1343854,Billy Smedley +1401288,Nathan Robitaille +1727204,Arun Kapoor +62214,Sherwood Jones +1621362,Dina Karmi +63854,Nick Dyer +585370,Sundar C Babu +1125505,Dries Phlypo +1354331,Kanokkorn Booncharoensub +1465948,Natasha Cousins +1512596,Gunnar Nimpuno +1307785,Darius Holbert +1618894,Vilma Martínez +125816,Willard Motley +1583169,Celeste Arrizabalaga +1846922,Amanda Borboa +582811,Teresa Morgan +1603648,Recep Biçer +1018073,Reg Poerscout-Edgerton +1357072,Justin Ferk +1547414,Emer O'Callaghan +1814896,Lillian LaSalle +1207643,Marie-Claire Javoy +129698,Yuri Kantake +1402099,James Clarke +1548105,Martina Sykes +1485943,Candice Gregoris +1539790,Jeanina Vasilescu +931206,Enrique Cerezo +1543227,Brittany Montero +1304138,Dan Giustina +1536645,Simon Rhodes +1726026,Zsolt Milian +1818104,Tori James +1621091,Diane Coat +1447377,Paul Dutton +141709,Scott Alan Thomas +587664,Takashi Ito +1151326,Pavel Karnaukhov +1361567,Josh Pomeranz +1388897,Julian Morson +130059,Paul Wellman +1008599,Hugh Bennett +1888985,Joy Whilby +259027,Osvaldo Civirani +1041611,Minu Barati +115369,John H. Burrows +120424,Nirav Shah +543840,Denis Pineau-Valencienne +543385,Pedro Kos +563855,Juanma Bajo Ulloa +1541365,Jack Gardiner +1118000,Giorgos Lazaridis +1640712,Ryan Nowak +131503,Sam Akina +1725079,Tatyana Sokolskaya +1388899,Gary Spratling +1342698,Toshie Tabata +1398161,Blaine Ackerly +1393453,Catherine Wilson +1519296,Benjamin A. Rosenkind +1446046,Merve Kuzeyli +1637330,Christian Scheurer +1394060,Nick Connor +1884728,Jesse Hood +1418284,Takuyuki Matsuno +1289856,Manuel Costa e Silva +1619627,Claire Freeman +1601454,Apostolos Lekkas +13065,Sarah Kliban +1497975,Santiago A. Zapata +1566585,Bjørn Kleven +1656601,Philippe Brun +1768805,Manasi Aggarwal +1055233,Dan Janvey +1617450,Illa Ben Porat +1453120,Nikola Vulovic +1379040,Melissa Harper +1579538,Joey Wang +1347751,Merav Elbaz Belschner +1413292,Dylan Thomas +50026,Guy Lecorne +33369,Louis Sackin +55078,David Zelon +1727716,Niclas Bendixen +1425399,Laura Erikson +1497842,Leah Holzer +1337237,Peggy O'Neil +1506044,Ralph Hammeras +142951,Andrew Cull +1084775,Tyler Benjamin +1367212,Rhett Lewis +239663,James Harris +14270,Giorgio Serrallonga +135252,H.B. Gilmour +1367358,Cathy Beckerman +161074,Dave Palmer +1433682,Motoi Sakuraba +1626021,Donald Tang +1539290,Sunil Chhabra +139539,Jack Hannah +1638380,Sabrina Trudel +1413863,Dan Tana +1646965,Jarle Bjørknes +75157,Zev Eleftheriou +1328414,Dayna Polehanki +1448171,Mun Chee Yong +1284954,Thomas Beatty +1524786,Carlos Kotkin +43526,Sturla Gunnarsson +1828349,Dan Ross +1182906,Vlad Bina +1896773,Buzz Watson +1578864,Beth Gillman +1534231,Chris Kasick +1638565,Kondareddy Suresh +17004,Javier Navarrete +1215558,Mike Rowe +49555,Petter Næss +1635800,Johan Bjerke +1320755,Eric Reese +76730,Andy Briggs +141989,Michael Pattinson +143464,Jonathan Swift +1496011,Matt Brown +1211361,Kevin Bannerman +239837,Miodrag Andrić +1035749,Avi Federgreen +1409392,Brenton Goulding +13703,Maya Abar-Baranovskaya +225714,Hardie Gramatky +1394657,Elisabeth Holm +929054,Jaume Sole +1643505,Cheng-Ping Hsu +1244595,Murray Schisgal +72920,Colin Mounier +1375909,Tyler Patton +1116277,John G. Carbone +1558149,Juan Ramón Ruíz de Somavía +77134,Robert Celestino +141962,David Bruckner +1820853,Ron Chapman +1530611,Paul Lenart +1411237,Luke Nixon +1776617,Armor E. Goetten +1521327,Josef Dobrichovský +1127947,Robert Smith +1333909,Catherine Viot +1585726,Scott Dolan +1621475,Charmaine Parram +1740450,Fay Frankland +106345,Neri Parenti +96691,Rodrigo Sorogoyen +542339,Diane Shorthouse +1377173,Francesco Tatò +1031536,Steffan Fantini +127456,Eleanor Smith +1725380,Germán Quejido Perrucha +1869453,Sarah Dawn Hamlin +559560,Walter Stradling +1416940,Veronique Keys +1332315,Tommy Stang +66088,Ronald F. Maxwell +1484194,Hilmar Koch +76715,Tara L. Craig +1205632,David Morison +232527,Remo +1366258,Akiko Yodo +1866260,Nic Gribben +128864,Dane Lussier +1780177,Katharina Ziegler +239162,Aleksey Mizgiryov +87354,Rumi Jaffery +1606215,Fausto Espinoza +1579529,Adam Werth +1798643,James Clarke +1399883,Michelle Hutchins +1554233,Louise Allen +46431,Wolfram Tichy +228762,Stevan Filipović +1535451,Herman Hand +1394003,Brendan Nicholson +1689589,Rudolf G. Binding +31049,Gary McFarland +1437622,Charlotte Rogers +558444,Ken Hodges +1703767,Agis Panagiotou +411385,Darren Gilford +1548354,Claire Patronik +804680,Michael Stevens +1536245,Santosh Kotkar +76880,Keigo Higashino +145701,Guillem Morales +1399871,Charlene Eberle Douglas +1269422,Patrick Kong Yeung +1525146,Zak Faust +80387,Priyadarshan +29994,Rian James +1322149,Marion Levine +228432,Edward McHenry +582943,Kristin Lekki +1107426,Guilherme Vaz +1559212,Владимир Акимов +1174359,Mike Stoller +116683,Yun Kouga +1635235,Tommy Daguanno +1205891,Mat Kirkby +16852,Karen Leigh Hopkins +87183,Mark Young +1097803,Catti Åselius-Lidbeck +1360365,Eric Piccoli +1717992,Nanw Rowlands +1266280,Giacomo Gagliardo +1304541,Manohan Nanayakkara +30804,Normann Petkau +1410602,Philippe Reinaudo +1085647,David Majzlin +60924,Jeff Cox +78268,Ryuichi Hiroki +1405204,Bradley C. Katona +1827711,Caragea Vidrel +1759748,Austin Wittick +1427193,Aleksey German Jr +1574450,Sabrina Riccardi +1446543,Don Olivera +116801,Michael Addis +1641980,Steve Sich +1139080,Tuomas Parviainen +1378677,Nancy Anna Brown +1810676,Kirti Nakhwa +1641322,Josh Kessler +1537112,C. Clifford Jones +1458448,Andrew Banwell +1085777,Michael Scott +1891146,Piero Guerrera +197209,Lane Slate +1541739,Dimitar Nalbatanov +32753,Alan G. Kelly +1635214,Danny Maze +1443984,Petr Vecernik +98839,Aleksandr Rou +230175,Marcus Gautesen +53866,Peter S. Davis +1324069,Vladimir Amok +1588423,Michele Yu +1837988,Bart Madison +1006885,Lionel Hicks +74945,Phil Hughes +1450095,Bjarni Grímsson +1400680,Joe Clarke +1227160,Noah Oppenheim +1093929,Sun Ming +1167831,Jeppe N. Christensen +1299539,Mark Naisbitt +1090113,Maud Nycander +1392943,Joshua Davis +564950,Masaru Igami +1416959,Mike Baldock +1406872,Nia Hansen +1620756,Giorgos Mihelis +1613803,Carlos Aníbal Vázquez +1130197,Judit Czakó +1608746,António Vaz da Silva +96295,Christel Baras +65594,John Michael McDonagh +1408843,Kate Baird +120031,Stuart Thompson +1280038,Maria Cestone +1191588,Joel Posner +1406864,Anna DiNuovo Slaughter +37653,Jack Hofsiss +1367672,Bob E. Krattiger +1412687,Dave Snyder +1425208,Cale Finot +1056203,Ben Huff +1482125,Bruno Duarte +1341115,Gaute Storaas +1285601,Damien Dufresne +1785032,Shilpan Vyas Tinu +1580835,Sasha Proctor +1735504,Elma Bello +935136,Jean-Marie Straub +1562588,Linda Murphy +1341562,Saurabh Kabra +1094503,Peter Falk +1310757,Artak Gasparyan +1065429,Elizabeth Kruger +1372206,Thomas Traugott +88046,Pieter Kramer +1452116,Juro Sugimura +1635327,David A. Oster +1493973,Lisa Zagoria +1340724,Jackie Vance +42138,Victoria Mahoney +144611,Arnold Maury +53074,Rosanne Korenberg +1228078,Ray Henderson +1605316,M.B. Dudley +1606180,Naïma Bouanani +1709329,Sidney Jones +1583404,Natasha Cuffe +1739508,Wendy Samuels +1861811,Peter Lewnes +1841569,Asya Danilova +106827,Greg Weisman +1489515,Armand Barbault +1518005,Diana Abbatangelo +1435312,Terry K. Meade +1141396,Ben Peyser +1050711,Frans Nel +5651,Norbert Preuss +1797492,Sage Hood +1489910,Guido Notari +1829873,Amy Lyons +1512781,Dominique Fiore +1791607,Jørgen Sviland +1439383,Michael Palmerio +1431572,Terri Lamera +1489480,Dimitri Eristavi +62052,David Chasman +1652080,Hayley Matches +150432,Robert Festinger +1526974,Shannon Thompson +100369,John Eyres +179468,Frank Gabrielson +1801311,Andrés Goldstein +110241,N. Chandra +1855320,Liz Vacovec +1487009,Erik Sandoval +72710,John Fowles +792304,Tomislav Pinter +58263,Steven Gutheinz +238118,Vitali Melnikov +1386316,Derek Franzese +1414189,Marc Chu +1180402,Sacha Galperine +1729037,Richard Coy Aune +1447609,Seth Dubieniec +1167490,Anne Costa +1381932,Darren Cranford +1472775,José Skaf +240283,Leste Chen +1813221,Busi Sizani +1548086,Glenn Stevens +1066403,Anwar Rasheed +1621367,Scott Dropkin +100505,Richard W. Munchkin +1186088,Marguerite Abouet +1157590,Conor Allyn +104556,Don Peterson +1815626,Joshua D. Stevens +564272,Michael Barnett +1050896,Marco Dutra +1435401,Sabine Delouvrier +1384377,Tim Lovestedt +1409446,Linda Leeds +1597952,Jill Killington +1470275,Hiroshi Suzuki +1414092,Scott Keery +110224,Kamal Kumar Barjatya +1660978,Jeff Moriarty +1377018,Martin Berthiaume +1406239,Tony Perez +1304200,Nelly Ollivault +1301368,Tomas Berka +576198,Michiko Yamamoto +1829972,Leah Beevers +1377621,William McCauley +1575766,Mark Lane +1623933,Amy Kimelman +1481509,Macarena Pazos +1759497,Weldon Fung Wai-Yuen +1027175,Helgi Felixson +65690,Keith Goldberg +1646489,Meinert Hansen +1766500,Robert Kanigel +998577,Paul Mager +79170,Martin Luuk +1123192,David Hopwood +1211214,Chris Ferguson +1762821,Scott H. Reeder +1079116,Stéphane Collonge +1445377,Katrina Saville +1066751,Ben Libizer +1648803,Benjamin Prüfer +1650740,Rachel Terrien +135975,Melek Caglar +1162676,Sean Stiegemeier +132516,Yuji Tsuzuki +1445371,Colin McLellan +1450503,Gabriel Cullen +81727,Darnell Martin +1495521,Alim Zairov +1321170,Vincent DeFelice +1640824,Gerda Lauciute +1799713,Rita Marcotulli +1297468,Jean-Pierre Bailly +1458089,Aaron Gilman +1715546,Scott Wagstaff +1409871,Svetomir Pajić +1622337,Bob Shuford +1017791,Bill Grishaw +1765638,Chelsea Taylor +15881,Arthur Graley +1553973,Brian Lieberz +1610492,Kate Lumpkin +91759,Jordan Scott +1635226,Cua-Cua Apey +64818,Joschi Arpa +1636393,Richard Glasser +1593833,Courtney Marie Callais +80260,René Laloux +1312731,Melville De Lay +1079872,Robert Lively +1542304,Oleksii Moskalenko +2032,Jack T. Collis +126421,Aleksandr Petrov +1106879,Levan Bakhia +1507536,Alfredo Chavira +1376400,Russell Parker +1461629,Lukasz Bukowiecki +124866,Jarkko Hentula +75099,Ben Carr +148739,Hillary Spera +31853,Gianni Ferrio +1417178,Sam Crook +1276675,Nancy Florence Savard +1448762,Tomoko Okada +1288215,Daisuke Kashiwa +142025,Ario Sagantoro +1436792,Guillermo Navajo +1691507,Shikinely Mitchell +1452641,Timothy David O'Brien +1521384,Winona Yu +108842,Henri Magalon +1399305,Sébastien Moreau +1125551,Justin Lanchbury +1081865,Michael McCroskey +1544663,Marius Emil Stanescu +132964,Drake Doremus +230031,Sanjay Masoom +1082051,Paul Huston +301260,Zeynep Ozbatur Atakan +113507,Harold Clurman +1165230,George Akiyama +233070,Ajay Rai +1761856,Ensio Suominen +1354114,Javier López Blanco +970214,Valérie Beaugrand-Champagne +1020760,Marcel Roels +1621377,Jeanne Sison +1434896,Sarah Levy +1533529,Sarah Domeier +1322147,Dan Grace +112002,Greg Whiteley +1335347,Hyeon Dong-chun +30833,William Beaudine +1538772,Jens Andreas Friis +133476,Frederick M. Loomis +1432094,Cody Carpenter +1735103,Aditya Gupta +1606499,Mick Donnellan +1455500,Daniel Leavitt +1308008,Robert ToTeras +1585227,Lesley Oswald +1560967,Jere Newton +1484177,Michael Jesmer +35807,Amitabh Shukla +1773036,Holle Singer +1383143,Harry Yoon +1790935,Elisabete Santibañez +1364238,Chilly Nathan +23175,Joke Kromschröder +1193607,Rick Ostermann +1414952,J. Brent Peebles +1431432,Jason Juravic +567736,Marcel Rasquin +1544867,Wieslawa Dembinska +1180040,Sanne Arnt Torp +1168882,Anna Fitch +240966,Martin Chichov +14323,Richard Berger +1582306,Anna Kießer +1127865,Ann Fay +1829877,Loulou Bontemps +1188277,R. Bryan Wright +1352034,Andy Lanning +1393436,Taylor Weeks +1693212,Harrison Wilcox +1774237,Danny Stephens +103915,Herman Schlom +1643464,Ralph Jean-Pierre +1355346,To Hung-Mo +1537406,Ryûji Miyajima +938107,Christi Dembrowski +141043,Sam Register +932510,Florian Opitz +1650263,Jo Slater +109064,Ronald Kauffman +1453638,Eric A. Urban +1400606,Jared Paolini +96001,John Kent Harrison +1325560,Chris Groffman +1275989,Tony Hickman +1427417,Greg Travis +85705,Shabbir Ahmed +1049450,Richard Imamura +1305493,Naotake Kobayashi +1539048,Julius Sadoske +1685937,Cendra Martel +1497981,Pilvi Peltola +228856,Kevin Brownlow +1083276,Hiroshi Kusuda +1397486,Giancarlo Rutigliano +1227439,Shaun Pye +1550015,Rebecca O'Flanagan +1691482,Jake Czepiel +969258,Jonathan Dinerstein +115363,Leo Brady +1423835,Nick Lisica +1635175,Danelle Davenport +1062018,Tetsurô Sayama +1214731,Greg Klein +1507055,Andrew Sagar +1181681,Marc David Decker +1550762,Chris Tost +1342641,Eric Seelig +1390356,Julien Maisonneuve +1238439,Edmund Ward +1225820,James Tucker +1797559,Fred Werner +1410746,Roland Platz +1669683,Aleksandr Antipenko +1419102,Sean Devereaux +76845,Nigel Bluck +105984,Alvin Rakoff +32880,Lyne Chénier +1577905,Véronique Lorne +123219,Neeraj Pandey +1822322,Bill Farmer +1785033,Sunil Rodrigues +98519,David S. Sterling +932147,Sabine Hoffman +160077,Seth Greenland +254081,Quentin Masters +1273919,John Merrick +1797360,John G. Haas +1574441,Ian Rankin +1353008,César Velasco Broca +150420,Božena Němcová +1512734,Jake Braver +1721340,Ludek Vomacka +1697263,Kenny Davis +1012973,Kevin Scott +1560222,Nick Lattanzio +1455706,Drew Hodges +136971,James Fler +229166,Steve Buscaino +77812,Albert T. Dickerson III +1178073,Virpi Suutari +1542305,Illia Afanasiev +36994,Carl Otto Bartning +1638066,Stacey Lubliner +5997,Karin Sundvall +1040888,Nyrki Tapiovaara +131185,Patrick Phillips +1463424,Donald Myers +1086270,Kenneth Scicluna +1426835,Paul Cripps +1580968,Lance Aldredge +104657,David Forrest +996046,Roy Hyde +222470,Todd Strauss-Schulson +15575,Maurice Gee +1125588,Giacomo Testa +1219884,Chas. Floyd Johnson +103085,Chester W. Schaeffer +1879684,Asher Dunkelman +69987,Jérôme Salle +138899,Sally Grigsby +110297,Vidyasagar +1194075,Pierre L'Heureux +89781,William Woods +1491291,Kira Kelly +1427797,Paul Stanley +117459,Nick de Pencier +1381304,Jean-Paul Gaspari +1328725,Dan MacArthur +1011629,Lucy M. Boston +1418439,Evan Jacobs +105566,Arild Østin Ommundsen +1409535,Robert Kotyk +1808422,José Nunes +1877782,Crystal Pa +1054825,Sid Marcus +18553,Karl Löb +1430073,Sarah Whittle +1077404,Jon Ekstrand +1294768,Minyeong Choe +1627932,Iva Stromilova +1755186,Peter Kales +114589,Ali Samadi Ahadi +1546571,Chiz Hasegawa +1402657,Milos Ivosevic +94151,Thierry Poiraud +1271457,Dale McCready +1896772,John Archbell +1425383,Ross Melling +1573467,Kelly Asuncion +1544699,Sanchit Balhara +94456,Kevin Scott Frakes +564083,Tatiana von Furstenberg +90575,Daniel Schechter +1204711,Yuriy Klavdiev +236613,Dave Chambers +1821930,Deborah Wakshull +1332821,Appachan +1407255,David Barbee +1049547,Manuel Riveiro +1140686,Darren M. Demetre +102322,Peter Del Monte +1485876,Tim Ives +1362894,Erkki Imberg +1075781,Michael Pakleppa +1205660,Ken Simpson +1691503,Janice Jones +64069,Dagmar Hirtz +1003527,Ronnie Hadar +556085,Simone North +1821887,Erdwin J. Clausen Jr. +1448550,Sara Newens +1434565,Joel Sevilla +1609037,Kasey Truman +1603905,Maria Coveou +15773,Don Ingalls +183541,Neil Jones +1783687,Benjamin Brant Bickham +137188,Misha Segal +1365548,Mason Curtis +21023,Marc Moss +1622806,Tobias Frank +1191229,David Fine +557671,Floris Vos +1599961,Vladan Korac +1193160,Billy Allrich +932979,Fujiko F. Fujio +1412626,Vijay Rathinam +1632079,Peter Miller +1857685,Eleanor Mendes +59346,Jörn Holm +85670,Anurag Kashyap +1484705,Adriane Little +1013562,Sophie Lefebvre +1636841,John Yang +1713054,Shahar Levavi +137689,Kristian Taska +1547204,Erin D. O'Connor +1481552,Beth Day +87356,Abbas Alibhai Burmawalla +1120228,Cesare D'Amico +1634158,Eiji Watanabe +555772,Dominika Daubenbüchel +22471,Angelo Lotti +225979,Justin Wright +90543,Robb Cullen +1877770,Charlie Coker +56342,Shinichiro Watanabe +1165992,Bruce Little +572597,Thomas Robert +1392205,Helen Bennitt +1321107,Marc Vives +61249,Kelly Herron +1335155,Stefan Savkovic +110701,K. V. Anand +1339977,Kate Marshall +1689780,Miguel Ángel Álvarez +1315691,Rebecca Wachtel +1093159,Jesyca C. Durchin +122016,Carlo Lizzani +1570588,Matthew Lajoie +1546970,George E. Swink +63556,Eija Johnson +1646404,Akkineni Venkata Rathnam +933118,Damian Drago +1021812,Nina Davidovich +9033,Christopher McQuarrie +1571476,Vicki M. McWilliams +767896,Atsushi Yamatoya +1456621,Kiyotaka Oshiyama +181272,Antony Stone +1072870,Bobby K. Richardson +1601706,Branimir Milovanović +94244,Alan G. Markowitz +79174,Bengt Johansen +1180170,Yoko Ogawa +1037909,Kevin Kasha +18806,António da Cunha Telles +149016,Adela Rogers St. Johns +1000449,Kathy Strachan +183230,Mara Brock Akil +1578014,Das Patterson +58486,Andrea Stabenow +1586197,Fernando García +1547485,Hisao Ôno +136474,Ron Swanson +557665,René Huybrechtse +1642598,Alan Shannon +556860,Harold Spina +560194,Sôhei Tanikawa +588822,Radu Jude +1442719,Maksim Voronkov +1011957,John Cohen +1010114,Jennifer Sarja +39396,Hassan Hassandoost +1595410,Mort Garson +227520,Mauro Bolognini +1302516,Cari Avila +1633894,Yekaterina Ovsyannikova +1407740,Len Levine +1465565,Traceigh Scottel +1621093,Guillaume Couturier +1537404,Taichi Ueda +1376996,Subrata Barik +49667,Robert-Adrian Pejo +1042011,Vikas Bahl +1116936,Nancy MacLeod +103693,Justin Melland +1680441,Blayne Fender +1606169,Iain Cooke +1646517,Matt Belbin +1884014,Mohammad Sadegh Azin +1103645,Wade Barker +1281190,Nic Pizzolatto +1816225,Karolyn Austen +1358568,James Kniest +88988,Bernard McConville +1367962,Alice O'Neill +1459766,Bob Wilson +1340352,Jacques Levesque +1064874,Jacques Méthé +43583,Yvan Gauthier +1827318,Jim McKeown +1075099,Peter Danner +1680435,Kevin Houlihan +1797208,Troi Horton +986677,Steve Summersgill +1332522,F. Joseph Burns +1616025,Thomas Bojan +1451389,Demian Fox +1538721,Holly Unterberger +1780196,Christoph Siegert +1156073,Andy Kolker +71060,An Nai +17361,Lars Kraume +928133,Aaron Levine +1781615,Heather Kreamer +1427850,Dora Simko +1349967,Nick Scofield +1789973,Kye Mckee +1814976,David Hogan +1076723,Carlo Mendoza +1384694,Austin Nordell +229987,Cliff Hokanson +122597,Bert Haanstra +1172321,Rick Fenn +98616,Salvatore Richichi +1336705,Tim O'Keefe +935625,Antonis Aggelopoulos +238277,Michael Walsh +1547197,Zoltán Bus +31890,Luigi Zampa +16675,Kant Pan +555499,Bruce Bickford +1412622,B.S. Radha Krishnan +1585735,Sylvain Theroux +1761885,Kimmo Kotkavuori +102115,Giuseppe Ferranti +1006773,Sally Meyer +1752053,Jen Singleton +928075,Kate Dean +13372,Molly Lopata +1815524,Sara Getzkin +1072820,Tyler J. Kupferer +1284327,Maggie Houlehan +51524,Norma Bailey +40560,Peter Menne +1327782,Moritz Schmittat +1623222,Khosrow Naghibi +1828372,Joseph Facciuolo +193673,Snag Werris +1841607,Tracy Scott Nadler +1647012,April McQuarrie +1700872,Lois Leeson +1829896,William Sumpter +1402203,Lynne Bespflug +1558101,Morey Butler +1732085,Chris Hudecek +1652053,Lissette Rodriguez +580678,Roland Lundin +1074623,Conor Horgan +1307845,Valérie Perrin +1118144,Kenyatta Mootrie +1286577,Ionel Diaconescu +1676033,Ashley Lobo +1396802,Zack Mazerolle +1581519,Rosie Thomas +1154273,Sara St. Onge +1748697,Carla Simón +90753,Catherine Hill +1818111,Troy Hardy +1382971,Anjel Lertxundi +1435703,Glynna Grimala +1179288,Alexander Pallós +1437178,Amariah Olson +1673991,Isao Kawauchi +1727719,Esben Syberg +1675373,Millie Loredo +80924,Björn Stein +123200,Clifton Ko Chi-Sum +1123083,Robert Lewis Taylor +1625836,Goffredo Salvatori +1445700,Jennilyn Merten +1692216,Todd Gilbert +1872503,Stefan Steen +1584964,James Van Houten +1266051,Leo Riley +1597065,Dimitar Hadzhiiliev +1745116,Lorin Bennett Salob +1714242,Gourov Roshin +1062842,Martin Hollý +37451,Jean-Jacques Beineix +1608741,Sandro Bernardoni +1109997,Jude Tucker +150431,Andy Bellin +1379056,Tobin Hughes +11296,Alastair Bullock +1425930,Sue Pocklington +565227,Carlos Eduardo Rodrigues +1673682,Mary Solomon +1394726,Britani Alexander +589229,Alan Polsky +1519282,Wolf Bauer +132580,Richard D. Arredondo +18862,James Ellroy +1488432,Naoto Hashimoto +1561811,Vasilis Kasvikis +1201925,Natalie Schwager +1695848,Andrew Peterson +18927,Ralf Westhoff +1276442,Reed Johns +1391400,Sibylle Alridge +62782,Douglas Hansen +1716664,Jack Price +4616,Michael Seymour +156827,Amy Reece +1215583,Sarah Larson +1880050,Tom Scott +571462,Jan Maliř +1663950,Darren Chesney +1676804,Sachi Masuda +64493,Eric Lin +3607,Derek N. Twist +223608,Slavomir Rawicz +28369,Manfred Stelzer +591015,Ronald Gow +1845752,Erkin Aycen +6364,Caroline Ip +29066,Valecia Sarmento +927977,Serina Björnbom +156155,Tom Lowe +40080,Justin Leach +1834276,Kate Grant +1654407,Jonatan Relayze +1402516,Billy Bamman +1392246,Clive Jackson +75438,Phil Judd +59432,Carlos Brooks +1341585,Giogiò Franchini +72970,Sean Wolfington +1085081,Milton Lott +1491844,Jeff Seymann Gilbert +31499,Milton Perlman +84426,Olivier Nakache +1487542,Lisa Demetree +1687759,Andrey Murtazaliev +1821907,Gael Whettnall +105511,Glen MacWilliams +556110,Seyfi Teoman +1114890,Anna Culp +987417,Manuel Barbachano Ponce +1372633,Christian Giraud +1845746,Craig Webster +47634,John Strickland +1746433,Alexandre Cancado +1411341,Steven Desbrow +1554131,Roger Goula Sarda +939934,James Walker +91359,John C. Mather +1689077,John Calhoun +1459856,Robb Crafer +103177,Massimo Manasse +142023,Rangga Maya Barack-Evans +240499,Mikhail Grigoryev +29320,Alan Stensvold +110521,Eddie Brega +1499139,Ángeles Otal +1147570,David Chambille +1616432,Fabiana Arrastia +26884,Jacques Deval +1851699,Marty Meinerz +117691,James P. Hogan +1351631,Harue Haga +103065,Jack Gage +1118188,Владимир Брагин +74342,Melisa Wallack +1263800,Nick Roeten +1384984,James Aldridge +1598441,Dalia Survilaite +954783,David Salzberg +1345615,George Chavez +1108913,L.L. Foreman +1375378,David Ray +189621,Anna Sandor +1323353,Fabrice Spelta +1707996,Daniel Carlson +1558153,Harry Woolveridge +1840326,Magnolia Ku Lea +1395230,Vahe Papazyan +1840334,Gregory Verreault +138793,Ross Bell +1461139,Shelby Gillen +1462946,Katsuyuki Ôtaki +135128,Toko Kon +144818,Chris Hartwill +1058553,Camilo Castelo Branco +1875465,Pavel Hispler +1850525,Derek Rimelspach +1621907,Shanna Besson +1098632,Roshanak Khodabakhsh +25941,Dermott Downs +1594156,T.Q. Flemming Boyd +1141391,Aditya Bhattacharya +227238,Daniel Roby +489607,Zack Ryan +1413485,Phillip G. Thomas +1194818,Ray Allister +1574095,Christopher Raiche +1388469,Jason Cloth +1069298,Tomoharu Kusunoki +1707975,Katie Dobbin +1315936,Jeffrey A. Melvin +64687,Chau Pak Ling +1425844,Denis Johnson Jr +1397066,Italo Cameracanna +1538148,Alexandra Patsavas +1446125,Karl Blatz +1367186,Kaeko Hayafune +1104948,Atli Geir Grétarsson +1093932,Michele Robert-Lauliac +132517,Hirohide Shibata +1345613,Melanie Mascioli +22065,Ricki Maslar +1570403,Jean-Paul Battaggia +1643852,Robert Lowell +87441,Melissa Jones +1401164,Dustin Bricker +933587,Justin Begnaud +1583081,Maika Taylor +138799,Miloš Macourek +1538090,David Nichols +211138,Will Koopman +1033102,Anthony G. Nakonechnyj +1584088,Ramunas Rastauskas +1862959,Carol Sue Baker +1492510,Adam Taylor +1425645,Manon Lavoie +1265468,Flemming Olsen +589479,Bryan Poyser +1440877,Garry Elmendorf +1014591,Mark Broadbent +588689,Zdeněk Troška +95651,Brandon Thomas +144277,Fina Torres +1352124,Kayoko Kimura +1694573,Eric Zeisl +1797224,Matt McClurg +1300880,Mathieu Lamboley +1797493,Kevin Bricknall +1504437,Sudha Kongara Prasad +1120524,Toru Hishiyama +1727205,Jorge Hernandez +50118,Marc Wächter +119410,Wong Ching-Po +69815,Robert S. Eisen +1332209,Greg J. Grande +1170638,Nicole Davrieux +23862,Gary Howsam +1431516,Alyx Duncan +1437957,Sarah Page +1115620,Geoffrey Evans +83420,Robert G. Kane +1405369,Anna Izquierdo +1138934,Marie-Claude Poulin +1895325,Michael Streissguth +1211152,James Biddle +1382491,Zosia Mackenzie +1339949,Ivy Ermert +888594,Anthony Gudas +332714,Michael Deak +1120694,Jennifer Lee +128670,Lorenzo De Luca +1335153,Aleksandar Adzic +1063342,Philippe Caza +103772,Maurice Griffe +1731716,Tyler Carter +1395215,Jessica Mauricio +1459757,Pete Peggy +1630388,Giap Vu +1870221,Tracey Nomura +1438821,Bérénice André +71946,Don Kurt +22759,Willi Brückner +50270,Martin Rackin +63481,Brian Brough +1119073,Paddy Wivell +1086463,Sal Romeo +1103576,Erin Deck +1841619,Mogul +131205,Toshio Yasumi +1277588,Paolo Rota +1685111,Luis Arambilet +100848,Julio Bragado +1345263,Jason Dotts +12247,John W. Mitchell +1559450,Alex Murray +49894,Piero Regnoli +1454507,Kevin McCabe +1864635,Vincent Maloumian +1327883,Perci Young +1102221,Dudley Lovell +995570,Paul Emerson +41301,Mark Orton +1178716,Rauno Ronkainen +1681511,Olivier Bizet +1367053,Viviana Zarragoitia +1055737,A. Karunakaran +1040860,Kelly Curley +1721802,Serge Véber +1404923,Craig Pointes +62982,Ildikó Kemény +97555,Roel Reiné +127148,Alan Freedland +61971,Carolyn Bates +1560943,Andy Eshkar +1603892,Nikos Vavouris +1538232,Robert Nagle +1350356,Yannis Veslemes +14054,Philip D'Antoni +1851918,Tuezday Naper +1789314,LaShana Clayton +1650223,Oge Egbuono +89629,Antonin Dedet +1495603,Kausar Munir +1230476,Philip Dalkin +1067066,Kyle Jefferson +1454809,Rebecca Reynolds +1281397,Yoichi Fujita +1632791,Patsy Fitzgerald +1210244,George Manker Watters +1367505,Ted Caplan +1482618,Jorge Salvador +54012,Ivan Matous +1707848,Maike Heinlein +1303883,Magan Rutledge +1047628,Keith Croket +67547,Michael Ekbladh +1195633,Lasse Saarinen +1104702,Brian Eimer +1821945,John Lavis +1296570,Hans Radon +1138212,Christian Winters +1195906,Erkan Ozekan +1407007,Gaétan Landry +1302966,Michael J. McDonald +1317051,Mike Hill +1405913,Paula Vaccaro +98538,Tony Palmer +73001,Carlos González +1658866,Hana Sooyeon Kim +1731650,Emily Moran +1703768,Antonis Nikolaou +1414095,Alan Banis +1217620,Michael Fields +1085050,Emily Lou +1527588,Chris Connolly +1295092,Inna Tumanyan +1556416,Paul Dimmer +966818,Pasquale Catalano +1754606,Fausto Carosella +70127,Shinji Kimura +941427,Armando Gutiérrez +1004709,Will Zens +1496086,Richard Servello +1727711,Tomas Cerny +1544897,Sebastian B. Voss +1635219,Marvin Ross +1171341,Rajesh Murugesan +1411225,Tony Vaccher +592977,Maurice Leo +1393389,George Macri +1388081,Philip Dolin +1753725,Guillaume Fortin +239934,Eiichi Yamamoto +1308814,George Ayoub +1037297,Herschel Faber +225139,Marco Ponti +1383002,Janine van Assen +1841593,Mark Palkoski +28496,Paula Turnbull +1367915,Shane Hazen +135998,Christopher Wicking +1623929,Brian Stern +19712,Lauren A. Schaffer +206972,Grant Lee Phillips +137422,Marcos Efron +1851900,Iman Asgari +67242,Sonya Savova +1685944,Eric Fulford +113675,Jeremy Latcham +1312641,Donna Stamps +1792030,Kai Fink +1506293,Fahad H. Enany +1623940,Adrian Bassett +1636685,Mark Roberts +8373,Nicolas Boukhrief +1418432,Rudy Michael +965204,Brian Enman +56608,Mathias Lösel +1845744,Brian Hannan +1594167,Jack Crysell +9035,Kenneth Kokin +19142,Kenneth Johnson +215917,Sekhar Kammula +1024313,Jim Swaffield +1721333,Jaco Pretorius +1315178,Yoshinao Doi +1729039,Max Patrucco +1391916,Eduardo Carneros +1331827,Dimitrije Joković +1355538,Glenn Butler +1336909,Astrid Sætren +142984,Yohan Gromb +1301656,Jaime Pina +107456,Lionel Banes +1570604,Ryoichi Uchikoshi +1604151,T. Hopewell Ash +1480620,Lucia Aniello +1345267,Georgi Petrov Yakimov +1706643,Rudolf Kalmowicz +1766554,Gabriel Safarian +983049,Elsa Pharaon +1536183,André Duval +559406,Martin Thullin +1519300,Grube Venn +1607717,Asaph Polonsky +1752505,František Strangmüller +1550771,Dan Cortez +1657568,Michael P. Nagy +1355345,Jerry Ye +1537852,William M. DeBiasio +1795206,Jerry Grant +313123,D.J. Paul +1455512,Steve Budd +1568824,Liane Prevost +1292773,Rune Brink Hansen +1472774,Rachid Quiat +1017396,Rebecca Daly +238473,Marko Röhr +97661,Modesto Pérez Redondo +1571490,Isaac Hai Swee Tan +1087074,Mary Willingham +1392960,Louis Ferrara +1862948,Scott W. Johnson +1330429,Paul-Louis Boutié +1677840,Tianxia Bachang +1440311,Eva Jensen +1354343,Purita Nunontakarn +1862941,Ellis Edwards +936668,Tom Wheeler +1726033,Szilvia Szöllösi +1878855,David Taylor +1642602,Fred Tsan +1100326,Joe C. Maxwell +1797466,Alex Gibbon +1190569,Yoon Jin-Ho +1480623,Joshua Tunick +1106720,Carl Meyer +1374398,Ray Millholland +1149943,Sean Donnely +78530,Fausto Brizzi +1574052,Patrick Harris +1129885,Haider Zafar +1554229,Claire Mundell +261635,Vijja Kojew +4563,Susann Bieling +1444769,Rajan Mehta +579047,Marité Coutard +1820852,Robert Decker +1028521,Hidekazu Takahara +1691497,Archie Arevalo +1454379,Sergio De La Vega +1335099,Paul Carter Harrison +138775,Andy Mitton +1355543,Robyn Elliott +35078,Catherine Morisse +1552009,Sean Hunter Moe +1410841,Graham Place +1355971,Robert Foster Jr. +181856,Stan Salfas +1616066,Aoife Warren +697538,Jana Edelbaum +1326474,Erica Arvold +1188190,Judson Kinberg +1126369,Ryan Kravetz +1095119,Boom Suvagondha +11922,Herbert Trantow +1631696,David Sadler +1361165,Max Calo +1682248,Manuel Jorge Veloso +1296653,David Cox +1298897,Eric Rylander +1077441,Emma Monaghan +1031253,Stephanie Caleb +1511651,Federico Amérigo +1394336,Monique Reymond +1642596,Jean-Philippe Riquet +1820955,He Keke +26015,Juan Molina +1747579,Ruth Coady +1735895,Danny O'Connor +225716,Charles Philippi +1542737,Stefan Mangir +1483847,Sarka Zazvorkova +1431000,Sherie Giehtbrock +1473418,David Humphreys +1464504,Rolf Gerard +1646493,Ilyaa Ghafouri +1472417,Sebastien Proulx +1326483,Tim Beyerle +22782,Ilse Peters +1462723,Josiah Morgan +1280059,Rebecca Summerton +1464562,Sameera Saneesh +1538335,Susan Landau Finch +1206695,Kristian Sinkerud +1325914,Kirstie Edgar +1362703,Os Burgueses +73383,Frank Van Passel +1080202,Eiichi Kotani +1493527,Sharyn Steele +120469,Samuel Kaylin +1412587,Louis Gignac +995456,Steven Schneider +1367815,Aymeric Devoldère +1184967,Destiny Ekaragha +1635318,Bobby Gardner +1728934,Baher Agbariya +1390349,Tom Weaving +1493983,Jon Ehrlich +112096,Paul Ruven +1138813,Gordon Pilkington +1194301,Marc Hustvedt +1430305,Graham Taylor +1448298,Kevin Hill +232004,Claude Dal Farra +550291,Mario Craveri +139467,Gleb Orlov +1509633,Tania Sarra +1879547,Matt Casella +1087022,Nejc Gazvoda +1327896,Stephanie Scott +84793,Damion Dietz +1651010,Vimonmart Mahattanatawee +15876,Carmel O'Connor +142070,Liane-Cho Han Jin Kuang +1542247,Valentin Vulov +1814992,John Vendetti +69217,Eduard van der Enden +583433,Erich Hörtnagl +1519352,Karen Paterson-Bowden +1870570,Kiyokazu Ishizuka +1277467,Stefanos Euthymiou +142936,Mario Zampi +1217264,Jonathan Taylor +1102623,Yukiko Mishima +94451,Robert Ogden Barnum +1504428,Jari Tuovinen +1877776,Xiaolin Liu +1643423,Bernhard Speck +1740799,Jennifer Nelson +72739,Ted Neeley +194189,Joseph Miller +1008502,Silvano Giusti +1148265,Michael Williams +222612,Antonio Simont +1525159,Asim Matin +1026258,Elizabeth Redleaf +1703749,Shlomo Mograbi +1161959,George Bluestone +1116367,José Luis Martínez Mollá +1630381,Aaron Witlin +1306118,Eduardo Zvetelman +1565816,Per Svensson +84061,Daniel Barnz +1111473,Bonnie Elliott +41718,Frances Gray Patton +1009353,György Onódi +1179378,Richard Willing-Denton +1558578,Gergely Csepregi +1280714,Igor Ageev +1365989,Laurent Coq +1208353,John Green +49625,Rainer Kaufmann +1606373,Yandé Codou Sène +1294085,Bongseon Byeon +947446,John MacNeil +1018074,Debbie Moles +41859,Aleksandr Shkodo +1037124,Edward H. Hamm Jr. +1134202,Kenette Gfeller +103926,Robert F. McGowan +1829866,Courtney McClain +1413848,Karenjit Sahota +1635189,Steve Sosner +86450,Nathalie Langlade +1657557,Ambar Capoor +5674,Eugenio Ulissi +1295107,Sebastian Arriagada +7445,Yusuf Islam +110227,Sooraj R. Barjatya +1085916,Gabriela Pichler +1023480,Simon Elliott +1715746,Hosuk Chang +1490940,Susan Spaid +1757638,Glenn Humphries +1428665,Bette Jane Cohen +585784,Brett Pierce +92693,Madhur Bhandarkar +1624313,Fred Kihn +17700,Christian Zübert +1117880,Stephen Traynor +91854,Francisco X. Pérez +1305035,Alwi Dahlan +1148575,Eddie Heath +567439,Vivek Rathnavelu +1812014,Yoshihige Yoshida +1540882,William Byron Mowery +1640138,Lisa Nanni-Messegee +1088725,L. Varentsova +1303393,Jackie McNamara +1707982,Alexander Dirninger +1367481,David Keith Broome +19661,Robb Sullivan +1584357,Bryn Fraker +121005,Alan Rawsthorne +1312455,Karlina Lyons +989600,Keith Gruchala +1298934,Iolanda Angelucci +17428,Nicolas Becker +551939,Harumi Ibe +1648882,Marco Klein +937957,Tyler Davidson +1740776,Wayne Mansell +1829916,Alex Freeman +1200685,Yermek Shinarbayev +1780141,Ismael Feichtl +1445360,Stuart A. McIntyre +135335,Harry Kümel +1545985,Mattias Forsström +1184609,Paul Purcell +12481,Delphine White +1821010,Masami Iwasaki +1636713,David Betten +1540050,Vic Flick +1721264,Joey Plager +1305969,Mihkel Soe +1348080,Lee Sung-min +1410748,Elisabeth von Molo +1651503,Eric Esrailian +1542343,Martin Metz +1254748,Florian Beckerhoff +1372955,Marton Miklauzic +1384722,Marco Anton Restivo +1374745,Caroline du Potet +1034086,Phyllis Nagy +98897,Shaun Tan +1650687,Lee Turner +99876,Hideo Takayashiki +1754611,Mark Sachen +1197332,Jessica London-Shields +1355549,Adriana Bellone +121624,Akinori Endo +582824,Jeff Beard +36116,William Bast +91368,William B. Fosser +238637,Daniel S. Frisch +1397777,Louise Ford +56406,David Ungaro +1773273,Patrick Garstin +1557027,David Pinkus +1724825,Aleksandr Markelov +1434574,Ian Emberton +234817,Shawn Christensen +1031752,Cameron Casey +1350851,Michelle Parenteau +1409882,Ginger Basham +1431143,Helen Woolfenden +1432707,S.K. James +550214,Jean-Claude Brisville +1686549,George Knafka +1522890,Thomas Ordonneau +1124626,Hilarion Banks +1305034,D. Djajakusuma +11924,Anna Höllering +1098482,Matthew Joynes +1133331,Robert Van Norden +577785,Rolf Larsson +932834,Marc Fiore +99519,Piero Donati +1200317,Carmen Aiello +84998,Kwak Kyung-taek +48585,Peter Rotter +1412593,Olivier Goulet +1376872,Manning O'Connor +1597064,Roza Mileva +1274353,Hagood Hardy +1103649,Richard Toussaint +1531499,Carolyn Lancet +1894442,Benedict Zilliacus +138794,Ralph Avacedo +1593066,Lisa Turner +1497979,Patricia Arango +28878,Alfred Braun +935290,Amber Hamzeh +4348,Theron Warth +1130244,Peter Bo Rappmund +236589,Dino Giarrusso +1204245,Dylan Highsmith +558643,Bill Getty +1650732,David Décoste +9730,Jean Cocteau +112679,Julie Ryan +1404729,John Vegher +1548077,Tyler Bennink +568260,Karen Bailey +1651830,Nadine Haders +941782,Jorge Fernández +31062,Donald Hamilton +1556255,Anup Dev +20222,A.J. Dix +1438459,Matteo Ceccarelli +197909,Jaison Starkes +46436,Normand Roger +1622821,Claudine Moureaud +220275,Mike Phillips +1430511,Peter Klein +57007,Hans-Otto Mertens +1151544,S. Nandhagopal +1031598,Eric Lin +1373712,Dan Morgan +95754,Andy Picheta +1513773,Amelie Lagrange +1542742,Spencer Schwieterman +1780135,Jessica Krause +1033696,Karl Schiffman +1404673,Eric Juhérian +1483631,Lora Gianino +102180,Paul Kaye +276769,Don Levy +1034269,Hiroaki Fujii +1406397,Darin McCormick-Millett +1348593,Bogdan Marjanovic +1291689,Benjamin Chapin +73737,Rosemarie Wintgen +1640603,David Hamilton +1304660,Oksana Robski +1559620,Sylvie Bonniere +1295633,Hamid Herraf +1113441,Mohd Abrez +57024,Vasa +1448771,Markus Kuballa +1070175,Antonia López +1621859,Morgan McShea +1551840,Steve Griffen +88204,Adam Sikora +1125624,Joris Brouwers +277604,Paul Maslak +1785055,José Luís Carvalhosa +1553964,Sam Grey +1105685,Kompim Kemgumnird +23746,Wolfgang Treu +1117098,Andy W. Meyer +932908,Adam Foulkes +1398519,Jiří Tarantík +1833907,Alex Hedlund +61575,Michelle Scullion +1635288,Samuel R. Anderson +43936,Kyle Schickner +1193617,Inbal Weinberg +29376,Terrence P. Minogue +47065,Paul Bothén +76568,Jan Eirik Langoen +1335343,Chi-hon Kim +930987,Brian Iglesias +1401756,Emily Burka +1832456,Guillaume Renard +1176353,Jesse Johnson +30039,Sam Hall +67072,Tony Williamson +1881549,Jan-Hilmar Petersen +49627,Kathrin Richter +1385645,Kelleigh Miller +72319,Cédric Anger +1792347,Scotty Coats +1103629,Michael B. Clark +99416,Harriette Vidal +1622817,Michel Schillings +1862924,Craig Cheply +1484191,Paul Kavanagh +1286345,Akritchalerm Kalayanamitr +1174422,Juan Rulfo +1404821,Neil Castles Jr. +1773339,Monika Hlavatá +1384396,Eric Béliveau +1869085,Douglas Jang +1556396,Dionysis Efthymiopoulos +1608246,Heather Montagna +1380443,Jac Rubenstein +592852,Julia Donaldson +1840327,Yuri Lementy +60193,Mark Ricker +1641138,Nick Ainsworth +1322315,Abe Pogos +1777636,Isabelle Faivre-Duboz +1372422,Dan Larkin +1603244,Engin Özkaya +1636659,Kari Hatfield +937927,Chris Hajian +1521469,Stephen W. Pugh +1660727,James Knowles +1869086,Rick Kramer +1127473,Tracey Landon +1729570,Manon Ardisson +1055183,Jim L. Ball +1331684,Todor Stoyanov +1554770,Matty Crawford +1798947,Dan Braun +1871230,William Anthony Duncan +233071,Rajesh Shah +1284099,Gillian Robespierre +1627499,Alex von Tunzelmann +1424256,Ramnath Shetty +1737654,Judah Getz +1039408,Peter Mackenzie Litten +1417841,Ryan Rubin +1724364,Daniel Stuyck +1124938,Abhijeet Deshpande +45578,Luigi Ciccarese +141934,Jessica Edwards +1686911,Grzegorz Jarzyna +133179,Lalit Pandit +999811,Luigi De Laurentiis Jr. +1559959,Lenard Kester +1712626,Veronique Meunier +120333,Glenn Cook +1077076,Elmer Dyer +23927,Uwe Bünker +1456607,Taichi Furumata +1481998,Nikias Chryssos +1577963,Alastair Hearsum +928830,Deborah Chow +103924,Dorothy Davenport +572056,Nina Wedberg +1734986,Ali Morani +1608765,Keith B. Davis +186483,Giles Walker +1225827,Brent Tarnol +75920,Jeremy Passmore +1342299,Caroline Putnam +1366030,Drew Leary +1616057,Iain Struthers +15768,Tim Nordquist +1039936,Mark Growden +554373,Kim Ho-sung +1524301,Satoko Morikawa +1764102,Matti Caspi +1435623,Laura Windows +1494209,Richard Roles +22698,Heike Wolff +983909,Kelly Fremon Craig +227553,Geoff Green +93947,Bloke Modisane +1122725,Peter Reichard +1348588,Branko Cvijic +1172514,Fiona Crombie +1638342,Audrey Marc +94050,Naoko Ogigami +61503,Aimee Schlectman +1390386,Catherine Charlton +59391,Diane Kirman +1723505,Karishma Acharya +1359087,Sarita Fuller +1775300,Christopher Carey +1642594,Keith Oliver +1827274,Holly Sago +1348598,Marija Stanošević +8162,Gary Scott Thompson +110279,Steve Jankowski +1868250,Peggy Pere +1062805,John Maclean +957731,Jane Moran +1015793,Ruth Hope +74401,Hoyte van Hoytema +186402,Craig Wright +1816777,Norio Komori +1415420,Erich von Stroheim Jr. +1808043,Donald Mensah +1207429,Sandy Pereira +1403715,Alicia Slusarski +1609221,Łukasz Żal +67813,Baltasar Kormákur +94258,Robert Presnell Jr. +1579532,Michael Puro +1717979,Tetsuya Fujimura +1084983,Christopher Blauvelt +1526956,Carmen Díez +1583635,Damian Della Santina +118077,Kenji Miyazawa +1434443,Rob Peters +1348595,Vladimir Vladica Ilić +1742496,Esteban Aldrete +129770,Pao Hsueh-Li +1452342,Brittany Pask +1116910,Jill E. Blotevogel +1637475,Alexandre Mahout +1572157,Alexis Brodey +1340079,Mark Kendrick +1089656,Michael Picton +1546755,Dave Evans +1642512,Ryu Seu Chi +1415901,Keith Laplume +63101,Lisa Hamil +1188042,Andrew Keresztes +1767239,Kristen Hunsicker +1740351,Wenjun Yang +549138,Andrei Petrov +1055234,Josh Penn +1033138,Thomas den Drijver +1199146,Caroline Strubbe +68079,Rutie Blum +1551706,Arthur Farkas +1533569,Khali Wenaus +64690,Hok Sun Wong +1334483,Chuck Bludsworth +1157591,Rob Allyn +1261297,Bryce Mitchell +4528,Patricia Rommel +63185,Joe Dain +1321664,Caroline Foellmer +1558722,Leandro Marini +1299359,Edward Rogers +1333160,Sam Restivo +1601456,Dimitris Asimakopoulos +789544,Rosa Dias +50517,Mathieu Vadepied +202579,Iben Gylling +1862930,Joel S. Griffith +96290,Olivier Lorelle +1251097,Michele Cavin +1554336,Kimberly Lambert +1642541,Sree Sankar +1849137,Julien Ripert +1424153,Desma Murphy +1866374,Nicholas Copping +1050251,Alrick Brown +1402526,Emily Marie Palmer +1437430,Sebastien Fechner +1789303,Carmen Lopez +45139,Olivier Bronckart +1536640,Denis Lamothe +1407728,John Lindsay +1031695,Ben Kutchins +1211133,Ken Plume +129825,Richard Jobson +183921,Ben Murray +229222,Antonio Pietrangeli +63905,Richard Kobritz +1640388,Max Traiman +1384756,Lisa Hannan +1821561,Lambert Marks +59044,Tom Stuart +1100598,Priyanka Mundada +27830,Helena van der Meulen +1417983,Nadav Ehrlich +123909,Antonio Bido +1301836,Osamu Minorikawa +1747164,Colin Thornton +961757,Rodolphe-Maurice Arlaud +235080,Nanouk Leopold +13163,Doug Bernheim +1624238,Marie Fyhrie +1642013,Arthur Mulhern +1879685,Christopher Haggett +1406081,Sara M. Pennington +97278,Atıf Yılmaz +1609849,Justin Hawkins +166235,Andy Hay +1357060,Sandra Fox +1505032,Helen Crosby +1112604,Hitoshi Endo +1527442,Ko Iwagami +1792034,Mortimer Warlimont +1264928,Alexei Tylevich +1859986,Randy Starr +22230,Matt Berman +1304673,Jean Paul Seresin +75547,Lisa Duff +1457039,Joe Fionda +555946,Peter Rasmussen +1367359,Ben Weinman +1394876,Dennis Sedov +51473,Burny Bos +1852795,Reid A. Dunlop +1318839,Roy Stannard +177669,Larry Mollin +1693044,Saeed Soheili +1337982,Edoardo Vojvoda +1588833,Brandon Christensen +1421632,Shiyan Zheng +230670,Licia Quaglia +1588547,Bob Clark +1056202,Hilal Ahmed Langoo +1324185,Yoshihiko Manabe +1636715,Marc D. Rienzo +1148322,Makis Papadimitratos +1169680,Thomas Bradford +1482310,Visar Morina +1178880,Chihiro Ikeda +65596,Nelson Woss +6767,Larry Charles +1622331,Beth Haden Marshall +1759326,Josh Miyaji +1420179,Jan Brandt +1619063,Yu Sheng-San +1203347,Huh Jung +555094,Akiyuki Shinbo +1415109,John Johnson +1457938,Chris Crowell +418629,Maurice Moisiewitsch +930633,Friz Freleng +147012,Patricia MacLachlan +1484216,Jaroslav Hromádka +1817447,Zach Twardowski +1859985,Boyd Shermis +1407357,Glenn Richard Côté +1640914,Francesca Balestra Di Mottola +1624605,Daniel Pine +136972,Andrew Thomas Hunt +1821948,Jordan Whaley +1857576,Adriana Arriaga +1779635,Sarah Baxter +1907237,Mourad Ouarrirh +1348005,Charlie Iturriaga +1437221,Christine Wiegand +235820,Christopher Spencer +1519336,Sara Bøgh +1548869,Jérome Escobar +1618778,Blake Tyers +79898,Ridley Pearson +127101,Éva Zsurzs +1676799,Malika Franklin +1726037,Michael Zavala +216027,John L. Spencer +1503519,Jessica Kaminski +1096814,Masaaki Akahori +1371781,Simon Chui Yee-Ang +148516,Robert E. Hopkins +1652072,Nick Diomis +1776618,Frances McDowell +1564737,David Dolsen +995189,Thomas Lappin +1711835,Adam Rodriguez +1425661,David Geraghty +1797232,Hero Chev +1351627,Ryônosuke Akita +53190,Fausto Zuccoli +1694454,Michael Sterkin +1446048,Agce Ulas +1337321,Bradd Fillmann +116207,Alberto Tarantino +1294908,Jang Young-gyu +128522,Emmanuel Itier +1333663,Randy Wilkins +1168111,Koratala Siva +1070399,Jonas Middleton +1462035,Artur Pinheiro +33287,Michael D. Weiss +1538027,Hye Mee Na +1403325,Craig Polding +519846,Luigi Ceccarelli +1409391,Loren Comitor +1098027,Francesca Manieri +1180358,Pablo Moreno +116208,Gilberto Sierra +1528494,Sylvain Lavigne +28977,Bryan Burk +62181,Rory Gilmartin +1535458,Tom Wotton +225935,Réka Divinyi +1583175,Claudia Hollern +1644256,Anwei Chen +1186637,Mikhail Agranovich +113838,Mark A. Rozett +1037754,James Lapsley +1431507,Helen Strevens +103156,Mario Bianchi +98606,Robert O. Ragland +1634162,Yoshirou Yasunaga +578721,Nikki I Brown +1642169,Paulo Jorge Rodrigues Marques +1506959,María Astrauskas +1654420,Ryan Henderson Jr. +121106,John Francis Larkin +1545932,Allen Holbrook +1729044,Lauren Fong +1723493,Trilok Housen +1371390,Michael Ferrucci +59344,Bastian Griese +1761877,Bryan Parker +1367921,Tara Cooper +1619400,Jaroslav Pour +1177305,Maurizio Maggi +1748601,Sergi Subirà +1446745,George Reinblatt +1676935,Otso Linnalaakso +1261453,Petri Karra +110280,Kristen Tucker +30171,Dwight Taylor +1594164,Markus Puts +1402548,Ashley Walsh +1665250,Emil B. Garuba +239267,Cemal Şan +1182697,Madhu Neelakandan +52077,Adolf Schlyssleder +1347997,Gary Coppola +53438,Laure Gardette +1407732,Daniel Cohen +1390384,Amal Baggar +1339821,William Tannen +1650284,Dan Crussell +1726030,Tibor Pelikán +72812,Miguel Ioann Littin Menz +57311,Alex Phillips +103892,Stephen Vincent Benét +41847,Ed Wild +1407349,Victoria St. Pierre +584348,R M Veerappan +1313489,Graham Sharpe +1810163,Jean Gagnon +1402730,Suzy Whitefield +123719,Jason Derushie +28687,Laurent Ott +1547708,David Peters +1819162,Francisco Blanc +1574102,Michelle Cort +583076,Robertas Urbonas +38535,Gregor Eckstein +1107751,Juris Poškus +1692506,Christopher Dryhurst +1685942,Jeff MacFarlane +224076,Lee Broker +1367681,John Latenser V +1108822,Matthew Spradlin +1354030,William J. Reiter +1600454,Çagri Erdogan +1451787,Tomoyuki Igarashi +580221,Sakthi Saravanan +228134,Rupert Sanders +70676,Mona Fong +1780126,Hannah Chinnakam +1700106,Manuela Burló Moreno +1176221,Gustavo Hadba +37775,Raoul Lévy +1470051,Anastasia Lapsui +228788,Nicolas Naegelen +90202,Luke Carroll +1582552,Valerie Krulfeifer +1070871,Alexandre Coscas +1551804,Ana Gabriela Quinonez +1307568,Paul Cheng +570145,Karl Karpé +1687762,Raisa Molchanova +1017277,Laura Ozier +960350,James Laxton +562672,Joe Birbiglia +1438419,Carlos Cortés Navarrete +1489872,Miguel Gil +29016,David Thwaites +1412154,Sascha Alexander Haber +1721345,Chase Aston +1723494,Vijay Kumar Mishra +168309,Jeff Pinkner +1367231,Otto Jägersberg +140474,Kimio Tsukamoto +1341226,Anand Krishnamoorthi +79680,Luke Meyer +1823568,Chad Cannon +1707852,Gordon A. Timpen +1907210,Greg Teegarden +1562622,Elisa Alvares +29606,Matt Greenberg +1331166,Wendy Benge +1401146,Dhananjay Parab +133287,Jason Keller +1030394,Suparn Verma +1229792,Tim Talbott +1063676,Frank Mugavero +1574455,Philippe Aubry +1307613,Kim Myeong-joon +120208,Lew Porter +1387549,Marvin Willson +1381309,Francine Léger +66110,Paul Maar +1375910,Brendan Hawkins +1386623,Joseph C. Boyle +547303,John Frost +109082,James R. Gorrie +87625,Byron Werner +1089071,Jason Clark +1622318,Sarah S. Furler +1464971,Michele Camarda +1763656,Nic Pallace +1412721,Elizabeth Hitt +240087,Jacques Bidou +83415,Michael McGowan +1894632,Redd Knight +1748528,Laura High +1593262,Alan Vidali +1293195,Melis Ubukeyev +1188420,Emmanuelle Sardou +1780173,Tobias Speidel +6789,Marcel Grignon +1677897,Jeffrey R. Newman +1349528,Pertti Mutanen +1337941,Doran Cox +1719403,Dave Kramer +1624603,Daniel Stern +1427464,Stuart Welch +1424872,진모영 +1853966,Francheska Yarbusova +11201,Claude Zidi +71572,Faye Ward +1295549,Václav Šašek +1547853,Ichirô Satô +36148,Richard Pepin +1635172,Michelle Caruso +1565661,Ines Li +592488,Kazuyoshi Kumakiri +1643132,Jordi Sierra i Fabra +1133446,Siva +1489787,Megan Delaney +1126740,Rachel van Bommel +21853,Joyce Brand +1081863,Marvin Birdt +1414059,Luciano Secchi +932716,Jay DiPietro +1785945,Thomas Woods +1408550,Whitney R. Hunter +1580856,Sammy Shikaze +1865735,Louisa Harding +1006467,Edvard Grieg +138171,Robert Stokes +1792036,Uwe Zillner +1183756,Daniel Ingram +1188039,Georgie Huntington +95420,Juarez Pavelak +1092607,Benjamin Renner +1433087,Brad Hamilton +1287961,Helen Estabrook +928372,András Muhi +41837,Ralph Baum +176988,Victor Bumbalo +1600786,Jennie Paddon +1667047,Robert Luchaire +1412482,Jorge Barba +48885,Gerhard Schmidt +1037775,Vishal Mahadkar +1044835,Chandran Rutnam +1098928,Mahlon Todd Williams +87788,Choi Hae-cheol +1784747,Sophie Malleret +15494,Conrad Rothmann +999544,Bradley Adams +1331178,Hannah Kittell +1410592,Philippe Desmoulins +1051285,Darko Lungulov +1500310,Oscar Boyson +1619141,Sing Howe Yam +1525927,Eden Daniels +120329,Wesley Jeffries +1197577,Ken F. Levin +1560965,Jason Kay +1064049,Alli Haapasalo +1123874,Hideki Kakinuma +201394,Bill Turner +1378249,Maguy R. Cohen +1717991,Craig Poll +1619918,Stephen Emery +1478656,Eloise Ayala +625337,Tatyana Lukashevich +45498,Robert Freeman +1402894,Timothy Clark +1642461,Jan Baudouin de Courtenay +1294937,Kim Ho-sung +119168,Iain Cassie +233068,Siddharth Roy Kapur +1011684,Viviana Herrera +55640,Mary Pantelidis +1721319,Dan Balzer +1402921,Donald McInnes +140229,Mehdi Ben Attia +40469,Andreas Prescher +1849516,Kevin Packer +1580877,Nicholas Elwell +574090,Ian Mackenzie Jeffers +1097118,Alan Caudillo +1093734,Arto Koskinen +1581571,Darcy Walker +1403459,Robert How +1325555,Bryce Jacobs +1464519,Emma Norton +1805953,Janne Suhonen +74333,Jonny Greenwood +1526946,Michael Jaeger +1133877,Gary Weist +1376264,Eddie Grisco +1541542,Rafael Valdeavellano +1529915,Sae Takita +145612,Guy Moshe +24580,Lorenzo Minoli +1780185,Jessica Specker +1709326,Jason Underwood +1797460,Rebecca Silveira +1277276,Sergey Klado +76467,Scott Putman +141761,Juan Vera +1500347,Kazune Kawahara +1410202,Jamie Lengyel +1618542,Ivano Gobbo +1431500,Daniel Birt +1538719,Sidney J. Lambert +1619732,Ryan Gaines +556719,Guido Iuculano +67138,Maurizio Sabatini +1738093,Kyle White +1384386,Richard Stammers +134932,Christian T. Cooke +933405,Susan Leber +1337320,Chuck Simon +1284507,Fanny Heaslip Lea +1581501,Kelly Groh +1075780,Sias Odendal +1684300,Gaye Shannon-Burnett +1183165,Vladan Nedeljkov +1503547,Dominic Haxton +1208433,Koji Ohmura +1077370,Douglas W. Shannon +14858,Hans Rameau +582917,Jesus Martinez Asencio +1760584,Lo Shun-fu +1490652,Javier Martín Penagos +1122169,Jon Greenhalgh +1181128,P.J. Hanke +1173190,Tony Aloupis +1665456,Jay E. Joyce +1559626,Dick Raye +1320859,Natalia Pizzey +1759314,Lori Rozman +131689,Maxwell Setton +1890675,Federico Brioni +58911,Krista Bell +1542739,Christiam Stoehr +1861810,Craig Seeman +1406767,Burton 'Joe' Kuchera +1119976,Markos Zervas +1482840,Jeffrey Kember +1717751,Blake Ashman +1402518,Hector Toro +1284152,Micaela Cajahuaringa +1297708,Sandra Alksne +1554230,George Geddes +1740550,Brian Bair +155011,Everette Wallin +1045176,Gabriela Cowperthwaite +1568244,Pietro Greppi +92484,Dennis Scott +1405327,John Alcantara +1466537,Hannah d'Angerio +1849522,Andrew Tays +114324,Max Jungk +974330,Igor Stravinsky +1461416,Cymbre Walk +1072607,Joseph S. DeBeasi +1193192,Carolyn McLeod +1401133,Brad Engleking +1529323,Alexander Dydyna +1415573,Gary Oldroyd +1738653,Molly Pabian +1765167,Anshul Talwar +1336912,Åsmund Stemme +1200900,Andy Tait +1418227,Keith Arem +991674,Barry Strickland +1174564,Donald Morgan +1371854,John McCormick +1282315,Mario Tronco +1103537,Tom Obedlam +1219207,Jeff Russo +1270039,Françoise Joset +1642001,Ranjit Govind +1706711,TJ Falls +1440300,Alan E. Bell +1797987,Jamie Stewart +1341759,Nava +1416958,Anya Noakes +1646359,Diane Dussaud +1535407,Gary Baxley +1024904,Peter D. Graves +1161646,Camila Gutiérrez +1636779,Dan Misner +1372886,Jenny Quigley +142342,Vera Campbell +567249,André Farwagi +1542738,Alexandru Miron +943014,Vera Blasi +63781,Alexander Tabrizi +1321356,Karen Malecki +1274505,Scott Rothman +1580882,Magdalena Strzelczyk +143569,Joseph Anthony Roach +955071,Bill Sheinberg +148063,Dave Anderson +1084997,Nimrod Erez +1118682,Giannis Dalianidis +1350258,Vyarka Sirkova +1765179,Himanshu Nanda +1211636,James Cullen Bressack +1392976,Marc Nasse +1571046,Félix Larivière +16942,Gonzalo F. Berridi +1107180,Simone Lenzi +1088219,Lennart Lindgren +102627,Steve Carver +17045,Danielle Renfrew +225977,Ted Mathot +225556,Salim Akil +59395,Nick Rotundo +1638340,Christopher Clark +570369,Valerio Vigliar +1265055,Pedro Morelli +1569332,Drew Nielsen +1267016,Acim Vasic +1193424,Antonio Torres +1532748,Steven DeSantis +1548453,Idrees Khan +552432,Alex Murray +1592939,Giorgios Skabardonis +148676,Taewon Chung +103487,Walter Manley +1070680,Joseph Chou +135243,Yûichi Matsui +1261700,Paul Kavadias +1143005,Justin Wilson +65133,Marcus Raboy +1176843,Giuseppe Pulieri +1817457,Sierra Swan +1472873,Janette Nielsen +1303908,Jennifer Dionne +1881543,Peter Ackermann +96085,Sean Lennon +1055311,Antonín Moskalyk +958675,Grania Preston +1623221,Mehdi Karampoor +1099731,Jo Bamford +570963,Tracy Bousman +1357045,Susannah Carradine +1432720,Edwin Escalante +96052,Barney McGill +1280177,Rongyang Zhou +119534,Paul Girard Smith +984513,Saunder Jurriaans +30146,Rowland V. Lee +1539390,David Vendette +168147,Juan Carlos Cantu +1172653,Marius Johansen Hansen +1136050,Conisch +1841580,Elvira Gonzalez +1579395,Elizabeth Cook +1236340,Dylan Tuomy-Wilhoit +108678,Dean Francis +34384,Steven Wilhelm +1407806,Kerri Elliott +1345271,Milena Mihaylova +1064875,Geoffrey Patenaude +1155077,Samantha Gordowski +4676,Carlo Tafani +1457327,Jade Mansueto +134145,Julian Bond +1472641,Michael Ilitch Jr. +1770982,Magdalena Turnier +1401126,Alex Rouse +46994,Bella Spewack +569953,Niksa Barlovic +1383562,Andrew Ward +1338521,Evan Beloff +138756,Charlotte Brandström +1746623,Stuart Sperling +10050,Jean-Claude Brisson +143524,Leslie Stewart +1736526,Rachel Steele +1235862,Jim Guttridge +1691481,Charles Cooper +578852,Andrei Lifinskiy +576216,Brad Baruh +1578869,Sam Barnes +1348594,Doca Mladenovic +1052203,Gianluca Ansanelli +20927,Willy Egger +575042,Dub Cornett +1606194,Henrike Naumann +221365,Susanne Zanke +1179773,Janez Lapajne +1102370,L. Gustavo Cooper +928528,Lauren Fitzsimmons +1635337,Marcus Tamkin +71496,Anna Falguères +228041,Márcio Garcia +1605647,Jean-Jacques Chaboissier +1338238,Eddie Quinn +565165,Pyarelal Ramprasad Sharma +1402901,Ben Timony +1601859,Ivan Belyakov +6526,Julio de la Rosa +1797472,Zoe McCarthy +1721877,Jeff Kim +1682907,Julie Prendiville Roux +65026,Geoffrey Wright +1550759,Amaury Coljon +1780130,Barbara Deuble +68585,Sascha Schwingel +930819,Cameron Larson +1729057,Sophia Dilley +1070000,Riccardo Del Fra +1557691,Kristin Martini +1691485,Jack Nealy +25630,Jack Clayton +52148,Reid Shane +1364459,Tapio Suominen +1458721,Bill Perry +1614291,Edward B. Claypoole +76058,Danielle Probst +1642531,Arion Chang +1191536,Kohl Glass +1532262,John Brady +61849,Viktor Andreev +1905100,Frank Vanderhaeghen +122961,Randy Vampotic +970529,Denise Ream +120305,Harry Rapf +1383288,Alexa Zimmerman +1647031,Madeline Randolph +1205943,John F. Bassett +1653495,Usmaan Sheikh +1642579,Orma Hwang +1447088,Thomas Bremer +928250,Charles E. Whittaker +60450,Mark McKenzie +1551908,Steven Begg +11726,Jirina Lukesová +1154474,Kristijonas Vildziunas +1735126,Jane Houston +1609856,Nikos Kalaitzidis +1108581,Leila Djansi +1771613,Joseph Nicholas +235808,Tomasz Thomson +136555,Lincoln Lageson +1815813,Steven Porch +1100076,Mani J. Rabadi +128439,Giuseppe Piccioni +110427,Kriv Stenders +1834948,Carole Acason +1481353,Deirdre De Butler +1331137,Russell White +1090303,Erica Nicotra +1819974,Lukasz Trzcinski +1318817,Martynas Morkunas +1245933,Barry Bruce +1143000,Ana Álvarez Ossorio-Hengst +559250,Richard Hieronymus +1383082,Nahikari Ipiña +1017258,Brett Sullivan +68457,James Frawley +1479331,Gus Silber +1323596,Gastone Medin +1742504,Lupita P. Kababié +1173661,Lo Ming-Yau +1815826,Alexei Dmitiew +110347,William K.L. Dickson +47800,Ivor Slaney +64211,Franck Khalfoun +126489,Yonggyun Kim +1501038,Loïc Etienne +999597,Dahlia Heyman +1611990,Camille Gatin +1523172,Michael Shaieb +1140266,Christos Voudouris +1314063,Francesca Salafia +937526,Gregg Easterbrook +1384001,C.A. Cooper +1614855,Francesco Cinquemani +1374539,Genevieve Stevens +1767522,Clarice Gill +1551872,Carlos-Christian Nickel +1815828,Kate Katz +1400611,Sam Garner +1424317,Judy Ponder-Patton +111428,Carlo Mazzotta +1069379,Walter Woods +1294783,Kim Byung-gon +1036428,Mark Jonathan Harris +49194,Yann Jouannic +1440228,Eric Justen +1045390,Iqbal Durrani +53659,Ottavio Jemma +1272580,Gennadi Karyuk +66642,Cordula Kablitz-Post +1509636,Claudette Fruchier +1265320,Mitch Dickman +1570583,Malika Ben Slimane +1539172,Luke Kalteux +83730,Jonathan English +1162725,Carola Gauster +1325212,Lee Sandales +1015843,Dick Ung +1568251,Eleanor Infante +41329,Keith Redmon +1371036,Knate Gwaltney +1307161,Roger Arrignon +1327893,Judit Varga +550894,Joseph Montgomery +1451552,Lindsey Alvarez +1239471,Caprice Crane +1171837,Juanra Fernandez +1423422,Chris Bonello +1336607,V. Z. Durai +1543670,Nicholas Fitzgerald +1609173,Raoul Nadalet +63947,Mario Vulpiani +1553429,Daniel Hoeltschi +1616020,Nassim Gordji Tehrani +39767,Harley Hatcher +53339,Maria von Heland +1815571,Haisu Wang +1023726,Dani Valent +1091477,Patrick Gilbert +1666835,Kalyan +62586,Dorit Hurst +1450233,S.S. Field +1403391,K. Emily Levine +209975,Paul Stekler +1780240,Courtenay Bainbridge +1792331,Bill Snodgrass +1650282,Ellen Pickering +145022,Diego Lerman +26050,Guy Gross +1431150,Hannah Wood +1389526,Amanda Pettett +1880925,P.K. Chadrawathie +1262833,Chris Demarais +1888984,Federico Pelat +1562573,Angela Xiong Xiao-Tong +239444,Kazuo Dan +1841602,Jim Stephens +935301,Kim Martínez +129979,Angelo Pasquini +57040,Stefan Essl +1648806,Bisrat Negasi +1020074,Paul Buckmaster +1606182,Christophe Huchet +1870216,Humberto Corte +1066198,Mati Raz +1132529,Jan Svikruha +971819,Rob Howeth +1242547,Marc Bauman +1709186,Bobbie DeRock +1605653,Belinda Kruger +1871278,Larry Mah +1059013,Kenny Young +1500630,Gerald Schneider +1660983,Teddy Salas +62079,Janeen Damian +1444294,Adam O'Brien-Locke +1627250,Ness Saban +583465,Ryan David Leack +1694267,Bill Fleming +225971,Koldo Serra +1515865,Jamie Beardsley +1706706,Michael Lichtenstein +1765176,Abhay Datt Sharma +1123764,Santhosh Narayanan +1820915,Michael Wijnen +1790945,Petr Hepner +1346251,James Moran +1414949,Zachary Linville +1272710,Leon Joosen +1777639,Viriya Say +1014027,Lorenzo Mans +1294139,Yunjeong Hwang +1574451,Polina Rudchik +1046497,Justin Thompson +927990,Bim King +1336701,Natalya Chepik +1583405,Jon Adgemis +1585745,Stephen F. Newnam +1760579,Chan Wai-Ming +1367335,Luciano Simoncini +1744991,Giannis Ageladopoulos +1364223,José Luis Almada +1223078,Mark Moran +63111,Ben Livingston +234842,Gerald Cuesta +1338959,Massimo Gattabrusi +971275,Mitchell Sinoway +1859988,Trevor Wyatt +17808,Magda Habernickel +1764617,Frank Barber +142517,Tim Kirkby +1160236,Basilio González +1399451,Matthew Jeffrey Sama +1674918,Nalini Rathnam +1279972,Ross Nathan +991652,Rachel Crothers +1106857,Jim Kronzer +1449803,Alp Korfali +1454508,Niall McEvoy +1699524,Scott Whitman +1315203,Yukihiro Shibutani +929343,Robert Greene +1502428,Francesca Brooks +127699,L.D. Goffigan +1345616,Matt Shelton +1423357,Aaron Gilhuis +4930,Christian Becker +1330079,Bjarne Sletteland +129712,Christian Escario +1555722,Pauline Grant +1102870,Marcia Cabral Penchel +1338963,Pamela Grujic +1554973,Chris Tezber +551926,Jeff McQueen +1634845,Phong Giang +1749862,Sahand Torabi +1740767,Melissa Gethin Clarke +559188,Mariana Caltabiano +1174350,Yan Arlaud +1031922,Isabelle Pannetier +132521,Kikuji Nakano +1345743,Kevin Coughlin +228809,Jeffrey Dell +1845745,Anthony Esposito +1345249,Pouya Shahbazian +1636851,Shawna Barbeau +228399,Petri Jokiranta +41270,Chuck Bowman +56131,Douglas Schwartz +1008506,Giacomo Calò Carducci +56289,Hélène Louvart +1824203,Agnieszka Odorowicz +997630,Vanessa Hope +9798,Arthur Lonergan +1059557,Dimitris Papakonstadis +1423984,Karuna Karmarkar +130219,James B. Fagan +1766382,Sano Shinju +588124,Grigory Oster +1137829,Garon Tsuchiya +1745821,Albert Falco +1242988,Keith Chapman +103654,Nick DeMaggio +1209539,Moira Anne Meyer +1178886,Kuo Hsing Li +30834,Carl K. Hittleman +1409445,Julia Heyward +1367918,Lily Walker +1708062,Anmol Ahuja +1582616,Regina Törnwal +38957,James Willcock +1018336,Nathan Morlando +1149937,Chandra C. Silver +1719404,Jonathan Fong +90874,Ian Freedman +1056040,Yevgeni Pomeshchikov +1015439,Mark Tenser +137066,Tonino Ricci +1286565,Beau Johnson +1414890,Matt Harshbarger +980176,Sunil Sukthankar +1527483,Francisco Roncal +48590,Uwe Schott +1461999,Jennifer Stratton +1636848,Emily Butler McDonald +17013,Sven Burgemeister +1522132,Bill Muehl +50125,Rainer Erler +1761915,Seppo Kantonen +1367488,Michelle C. Harmon +1324835,Brendan Bragg +119467,Ngai Hoi-Fung +1405263,Alessandro Schiassi +1355009,Bronka Ricquier +78014,Leiji Matsumoto +64139,Joshua Michael Stern +1783006,Eric Milam +1337026,Dhilip Subbarayan +1063279,Shintarou Tsuji +1450979,Michael Linton +1803000,Joy Weidner +1390014,Blanche Brace +1354923,Garret Farrell +1006171,Dictynna Hood +1456619,Akiyo Okuda +1694696,Babakar Samb +1400768,Sophie Denize +1606288,Tullio Petricca +1304298,Melanie Deforrest +1393400,Sean Finnegan +1575341,Nolan Ball +65443,Harutoshi Ogata +1482615,Xavier Catafal +1460851,Wolf Wolff +1058067,Jim Finn +1540472,Nicolas Charron +1413691,Maie Rosmann +1450298,Andrew Coffman +1425642,Nicolas Billon +1460746,Steve Broussard +1152812,Mattias Montero +1683116,John Sherry +960383,Adam Balazs +25471,Nelson Yu Lik-wai +1567986,Dogu Abaris +1816951,Leon K. Zainey +1775637,Roger Altmann +113834,Bob Fisher +112174,Brian Pulido +553361,Bruce Ryan +1411217,Sam Lukins +1324035,Josh Schaeffer +914284,Adam Lipsius +469154,Vladan Radovic +81733,Eduardo Castro +1510491,Jean-Francois Lachapelle +1452326,Vinicius Brum +160532,Terry Leonard +1450144,Iris Baumüller +1432260,Tine Verbeurgt +1688395,Ian Nobin +22499,Stephanie Wagner +1085027,Alison Goser +1553463,Michelle Karavoussanos +1815938,Dominic Mayer +1117113,Rachel Yancey +1622339,Hope Ferguson +1621473,Kelly Maracin Krieg +1606212,Jan Schlösser +1445667,Andy Phelps +1318218,Jonny Pilcher +1207539,Sean Breaugh +1641979,Steve Sich +1642572,Gerard O'Rourke +1718007,Evrim Kanpolat +1327535,Sridhar Raghavan +420416,Jesper Bergom-Larsson +18371,George Groves +1569303,Lauryn Leclere +81209,Peter Gaulke +1231882,Lindsay Williams +1727614,Stéphane Chollet +226075,Jacques-Rémy Girerd +1705077,Madame Stippange +1157604,Dan Krauss +1621478,Mark Jackson +1780151,Thorsten Kuhne +1204707,Mellicent Dyane +8040,Victor Navone +1434360,Peter Kováčik +379584,John Rieck +1301956,May Edginton +1621368,Gregory Smith +1415579,John Clarke +1017275,Arnaud Duprey +1472578,Karen Dufilho-Rosen +1775764,Susana Chaparro Alvarado +1404915,Marcy Carriker +1577959,Zenon Goral +232631,Digna Sinke +97232,Walter Summers +1759312,Paul Howard +566359,Frank Beetson +58659,Tom Waldman +1797233,Christopher Kowal +24822,William Lubtchansky +1411685,Cate Bangs +934824,Jerzy R. Michaluk +119900,Robert Alberdingk Thijm +120126,Len Garde +1423005,Amber Harley +1392963,Jean-Pierre Boies +1387077,Mark Smythe +92101,John Kalangis +1391529,Roman Bazyuchenko +84235,Leonard Spigelgass +31891,Gianni Hecht Lucari +222356,Rick Siegel +1022759,Gavin Claxton +1038652,Angelo Guglielmo +75111,Iain Mackay +1547653,Brent Kidwell +97901,Christopher Ray +1710373,Dinah Kavik +1547678,Joanne Higginbottom +222152,Denis Constanduros +1820251,Mirta Martin +1394264,Toby Schwarz +567048,Marc Tévanian +1642542,Nivaldo Delmaschio +1830181,Chloe Waugh +1448347,Karen Kalberer +1813313,Ashlee Brookens +1303974,José Sámano +1177723,Tom Newman +1573935,Karen Kershaw +1751355,Anne Bronte +102630,Marc Toberoff +1033579,Jeff Prugh +32256,Franck Chorot +69046,David Hill +1853117,Carlo Giovagnorio +1096188,Chatchada Musikaratuay +986910,Michael Tadross Jr. +518972,Gren Wells +1571511,Elizabeth Lawson +63534,Aleksandra Marinkovich +116205,Dolores De Pérez +1728390,Kathie Russo +33902,Norman Hudis +913622,Andamion Murataj +75140,Marianne Jade +941438,Michael Storey +1579732,Hiroshi Hamasaki +1373431,P.J. Foley +41545,Tanya Lodge +23952,Benjamin A. Weissman +45648,Emma Tillinger Koskoff +64492,Ahn Sung Hyun +1423436,Rowena Radbury +1845753,Andrew Chapman +1465985,Rocio Sainz Herrero +1327160,Jeremy Hindle +149129,R. Gore Brown +1186089,Clement Oubrerie +58064,Mark Lamprell +1717836,John Coldrick +1184368,Eduard Khrutsky +210705,Katherine Butler +1406343,Jimmy Evans +1346946,Felix Lepadatu +578727,Lotus Seki +1117114,Andrew E. Erickson +1539807,Peter Hyks +937668,Paul Cadéac +1291496,Guðmundur Arnar Guðmundsson +1828893,Joanna Bennett +1117364,Jeff Denesyk +1118733,Boris Vasilev +1194274,Henri Graziani +1193842,Lawrence Richards +1719405,Scott Pierce +958965,Regis Survinski +1812638,Balázs Budai +1430298,Jonathan Brown +1821917,Rebecca Llorella +131399,Lars Knudsen +1218953,Christina Jennings +68173,Michael Amato +63425,Richard Salvatore +1622819,Thomas Binar +1117102,Lora Scrignoli +1646501,Justin Scott Wilson +1418443,Dave Muscat +1083908,Roger Richebé +1266339,Ben Lichty +1353230,Madoka Hosoya +1803175,Joseph Krigsfeld +87581,Dan Berendsen +13813,John L. Cass +974548,Juan Bustillo Oro +1805345,Nathan Larouche +1482849,Ekaterina Bogomolova +1377294,Michelle Eisenreich +1394653,Casey Brooks +147021,S.S. Rajamouli +132028,Kaarle Aho +592438,César Rodrigues +201568,Peter Baldwin +1501039,Stéphane Krausz +24168,Tom Sayer +141674,Mark Weisbrot +1555744,Sally Plum +1770992,Huw J. Evans +1535120,Benjamin Casias +545660,Visute Poolvoralaks +63932,Bert Kish +40470,Daniel Iribarren +83943,Matthew Grainger +1321924,Jason Cullen Bressack +1038003,Bill Morrison +1763416,Vijay Vinayak Joshi +9233,Elda Ferri +1824276,Fred Brown II +1329938,Heather R. Dumas +1869437,Kendall Anderson +1797517,Olivia Thornton +1033510,Tal Lazar +1509645,Ferroni +1549194,K.G. Ramsey +1400187,Paco Díaz +1493982,Lauren Hogarth +1402638,Jim Weedon +1637365,Michael Portis +1450084,Eva Lind Höskuldsdóttir +235083,Stienette Bosklopper +1494760,Robert Huberman +1180000,Carmen Bonzelius +58218,David DeReszke +1055277,Filip David +1818612,Jessica Held +1597062,Borislav Borisov +1034666,Tommy Coster +1578487,Nathaniel Drew +1516053,Ayten Morgenstern +1473169,Steve Owen +1402519,Jordan Lewis +1040894,Olivier Radot +81305,Eric Williford +1415899,Bethany McLeod +1724198,Charles Rempenault +129801,Joy N. Houck Jr. +946634,Piti Español +56808,Claudie Chung Chun +968946,Roland Gallois +84722,Lee Yoon-ki +228783,Patrick Quinet +102303,Emilio Gómez Muriel +85312,Seth Gross +1746038,Bruce MacInnes +92796,Brian Butler +1179001,Hirohide Shida +1488323,Akira Shiizuka +1343584,Stelana Kliris +1013135,Nipun Gupta +1422664,Alistair Legrand +1582989,Patrick Jennings +74008,Hans Steinbichler +1650728,Jo Caron +1516523,Lazara Peck +103178,Marco Grillo Spina +1691492,Michael Cannestro +63653,Alex Barder +1760135,William Munro +162392,Rob Grant +1430493,Rolf Fleischmann +1555743,Ashley Wilkinson +1195445,Linda Howard +1360798,Eduardo Lerchundi +1573336,Emily Coughlin +1635331,Lance Resch-Anger +17533,Pep Armengol +1078401,Austin Peer +1162316,Agnès Caffin +1317891,Matthew Sefick +148159,Frank Oreb +1797192,Libby Dempster +1405356,Matt Snedecor +1649182,Angela Martelli +1276439,J.D. Lifshitz +33441,Olivia Hetreed +994838,Arlette Zylberberg +1353909,Mike Cameron +1654639,Yun Jong-ho +1530723,Gregory Irwin +1393417,Cate Cameron +1780045,Alison Lewis +1458037,William K. Chulack +1046471,William Brinkley +563693,Irene Nelson +1380164,Lutz Eisholz +1496217,Elizabeth Keenan +121422,Kartal Tibet +1764637,Bob Madia +195981,Larry Holt +1375249,Trisha Barkman +135253,Randi Reisfeld +963297,Kevin Grady +130594,Erica Lee +1679517,Kiri Hart +1155520,Kerry Johnson +149298,Andrea Piazzesi +1254559,Gen Urobuchi +1148273,Marie Therese Guirgis +1192399,Kazuta Matsunaga +1470526,Dean G. Roberts +1755122,Robbie Derrick +1550237,John Soukup +1458315,Matías Lira +1791612,Alexander Kadim +1851920,David Oliveros +607547,Mollie Miller +1592885,Angel Chen +85708,Suleiman Merchant +1780479,Phoenix Woung-Bi Lee +135144,Natto Wada +228846,Oleg Danilov +928257,Pauline Gaillard +1154117,Lloyd C. Douglas +118416,Shih-Ching Tsou +932205,Marc O'Seng +1219685,Douglas Jackson +56290,György Illés +1401396,Karel Dirka +1394711,Scott Arneman +1545403,Kristin Voumard +1085295,Matthew Colonna +1416098,Jamie Kelman +1431099,Pamela Cameron +1058015,Józef Hen +17530,Bruno Levy +1597027,Aleko Draganov +1622321,Brandon Peterson +224825,Vibeke Idsøe +1132425,Shuji Miyajima +1593344,Sasha Moric +1389237,Gordon Conway +1347936,Cagdas Agirdas +132783,Roman Vlad +555660,Tom Lenz +1454511,Derek Hehir +67252,Alexander Alexandrov +1389135,Janice MacIsaac +94248,Shin Yoshida +1119671,Candice Beuckx +1402781,Sylvia Ashton-Warner +931473,Erik Blomberg +1319499,Paul Currie +120331,Glen Alden +1033619,Christopher D. Lozinski +893948,Dominika Posserén +1171266,M.G. MacPherson +89695,Josh Binney +1646810,Derek Bishe +1440896,Clyde Klotz +1332175,Anna Redmon +138787,Ryan Farber +1360094,Noelle King +1841583,Kate Pedatella +1468535,Nancy Nieves +40235,Jacques Deray +1427196,Henryk Worcell +142024,Daiwanne Ralie +133238,Brett Halliday +66005,William Fung Kwun-Man +562944,Tetsuo Ohya +1408825,Larry D. Horricks +981823,Shelley Gillen +1554769,Matty Crawford +127926,Ya-chuan Hsiao +53618,Sylvie Gadmer +1034315,David Lammers +1486063,Raoul Pene Du Bois +1563239,Adam Benzine +129106,Alessandro Genovesi +1658880,Deborah Zadzora +1294769,박경숙 +1621313,Marcelle Pluet +117218,Lisa Chugg +1462002,Morgan R. Kelly +1566577,Levi Gawron +1498421,Christine Sola +87347,Shobha Kapoor +1459768,Shaun Lowry +1611801,Dorin Razam-Grunfeld +1335883,Nina Knott +1484980,Ryan LeBlanc +991599,Ulrich Bergfelder +1183158,Raaj Chakravarty +1562473,Anthony J. Nicholson +1678839,Edmund Corwin +1694164,Françoise Andrejka +237971,Abburi Ravi +1772856,Michael Borthwick +1070338,Tyler MacIntyre +1673412,Claudio Tondi +36384,Franz Peter Wirth +1821879,Robert J. Moore Jr. +544383,Rebecca Eaton +1137435,Banlu Srisaeng +1790954,Leo-Patrick Houde +932539,Paolo Carnera +1017353,Martin Hagemann +1403860,Dan Kremer +1825453,Dustin Brantley +1207970,Yoshi Carroll +1101390,Ülo Pikkov +971840,Allison Shearmur +1681828,Michaela Donau +1412910,Nathalie Regior +1320552,Andree Fortier +1297787,Audrius Kemezys +229271,Luca Poldelmengo +1076176,Michael Blowitz +1530396,Yoshio Onoe +1721454,Anthony Smith +31178,David Preston +1321346,Tony Devenyi +57800,Rötger Feldmann +1321697,Odetta Stoddard +1488431,Masahiro Otani +1498627,Raúl Román +1632350,Sam Paul Toms +1108824,David Genecov +1535425,Terry Scott +1524268,Alex Helfrecht +1536240,Yoshio Hirooka +951484,Phil Hunt +1128285,Ming Beaver Kwei +148800,Sada Cowan +1784767,Fernanda Soares +1708063,Vikas Pal +118177,Bernard Werber +1583171,Terry Mann +1594177,Martin Fanning +576221,Dwayne Burgess +1409889,Jesse Ehredt +1284498,Zachary Donohue +1378827,Tony Foster +999552,Ken Starkey +1622808,Aixa Torres +23729,Fiorenzo Carpi +1545138,Clément Calvet +1354699,Oklahoma Ward +935499,Gino Falsetto +1412581,Phil Carvalho +1384367,Susan Dawes +1601197,D. Francis Murray +126260,Hajime Kanzaka +1086649,Denis Heroux +32741,Jeffery Passero +1384816,Jacky Lee Morgan +33785,Jean Douarinou +1058622,Robert Lower +1574051,Susannah Brough +1580062,Bembi Gusti +67750,Liliana Cavani +567323,Carlos Gari +1860654,Toby Lister +1486911,Ged Doherty +1514882,Marce y Chema +1273677,Alessandro Guida +133006,Santiago Bou Grasso +1452332,Jayne Laube +1406275,Martin Quiñones +1094150,Jackie Kelman Bisbee +1333913,Victoria Denk +1866242,Karen Kelly +1619916,Allen Church +24248,Nigel Cole +1367144,Ed Polgardy +1376955,Satyabhan Patel +1020073,Demitri Samaha +1208437,Janeen Schreyer +1682326,Laura Lienert +1392941,Zach Mueller +1320530,Chris Cano +1363530,Mario Fanfani +1076580,Péter Gothár +31128,Twinkie Byrd +1262869,Kit Fraser +1409297,Paul Carter +1412146,Audun Lyngholm Wittenberg +1862954,Pamela Reis +545209,Teerawat Rujintham +1633099,Mandine Rogne +1553972,Gilana Lobel +1399701,Lori Wyman +110461,William Carr Crofts +1573338,Dennis Kottke +1661419,Bob Gomez +139317,Charles Kaufman +1661417,William R. Dalgleish +142035,Marius-François Gaillard +1770622,Alice Pollock +1721028,Michelle McCormack +225120,Nicole Hirsch Whitaker +582915,José Luis Escolar +1392130,Andrew Somers +1099419,Hanan Townshend +1595082,Ivan Taieb +54591,Brad Riddell +1536908,Chan Tai-Li +1834280,Michael Soos +225407,Yann Gozlan +1853233,Akyl Ergishov +530734,Vince Laxton +1379049,Katie Roehrick +1621910,Tim Lebon +1574408,Josh Hegard +1515082,Caitlin Groves +95745,Jamie Nash +1482819,Slávek Horák +1401763,David C. Negrin +225525,Soumik Sen +1591516,Bas Icke +1288248,Shogo Yabuuchi +52953,Michael Hoenig +927985,Simon Gunnarsson +1263207,Gitta Woodfield +939474,Antonio Frutos +1423851,Jürg V. Walther +1691477,Sean O'Regan +12807,Ted Mann +83594,Nagesh Kukunoor +1727713,Mikkel Maltha +1394001,Katrina Mackay +1580892,Benedikt Laubenthal +212999,Robert Kirbyson +19638,Jeroen Beker +1539059,Gene Palmer +179923,Maurice Noble +1452471,Catherine Lara +1676195,Karen Sanquist +4485,Steve Koren +1733199,Wilson Smith +1836960,Charissa McLain +1877778,Lifeng Wang +1431133,Adam Morane-Griffiths +1569281,Jack Davies +1105157,Prapas Cholsaranon +42433,Sophie Dulac +301901,Robert Krakower +49798,Carsten Fiebeler +1317092,Gary Rohan +1646871,Arnaud Roth +1418407,Olivia Vestina Torres +1697264,Jessica Hernandez +589915,Eiichirō Hasumi +1176814,Terdsak Janpan +1907213,Scott Brindley +1625802,Derek Hallquist +108106,Fred Niblo +1872767,Nora van der Steeg +117992,Jóhann Jóhannsson +49186,Anne Weil +121602,Nancy Sackett +73498,Michael Manheim +1402905,Duncan Jones +1511483,Edwin Mejia +1530194,Renee Fontana +1232811,Alan Swayze +134604,Ben Ketai +1533150,Nick Meyer +87532,Yeong-chan Kim +549971,Maryam Keshavarz +551916,Armando Salas +1803428,Anthony Lewis +930333,Anne K. Black +54488,David Paterson +1149641,Ana Guevara +105504,A.P. Herbert +1379048,Ashok Kumar Kumar +48592,Stefan Traub +28726,Jan Eilander +1732093,David Valdez +952510,Antonino Lombardo +1642951,Tom Bissell +1108745,Christian Bruyère +19864,Rosa von Praunheim +31852,Mino Roli +303707,Elvio Porta +1885856,Kris Ostergaard +1773261,Tommy Dobrzynski +1805339,Stacy Scalisi +66593,Amy Hobby +1228384,Steve Dubin +1541746,Atanas Apostolov +549139,Eduard Rozovsky +1570537,Ashleigh Mills +1153023,Tearepa Kahi +90503,Osamu Suzuki +575142,Mehmet N. Karaca +1432512,Catherine Schneider +1670924,Ray Chung +1478412,Roger Fires +1618021,Joshua Jason +1412767,Yesim 'Shimmy' Osman +1263797,Herman Pieëte +1785018,Viral Desai +1172460,Jeremy Berg +68191,François Chauvaud +1128097,Gennady Shpalikov +1373476,George S. King +1698264,Jan Kikumoto +1687755,Svetlana Mikhaylova +1222761,David Solomon +1888989,Rafael Millán +69918,John Shepphird +130001,Ken Englund +1304318,Chetan Bhagat +1011975,Tamara Meem +151748,Hollingsworth Morse +1412537,Beryl Sachs +1519573,François Bergeron +1572856,Rocco Larizza +1142378,George Somnes +1468643,Cathy O'Connell +1572857,Jonathan Oliveira +582710,Jacqui Mallett +1829870,Sophie Bugeaud +1042444,Philippe Hersant +1451412,Leire Alonso +1419367,Pablo Clements +586116,Adam Massey +1097214,Tony Snegoff +42309,Tibor Takács +592944,Claude Ventura +68820,Jean-Baptiste de Laubier +928000,Ronald Holmberg +87690,Pierre-Paul Renders +1475735,Meredith Hussey +1445372,Bob Gundu +127917,Matt Dorff +1545374,Nikolai Kerezov +1549811,Olga Szymanska +1178513,Georgiy Grebner +1548099,Eric R. Brodeur +955069,Sid Sheinberg +12723,George Blackwell +53857,Nurhan Sekerci +1635965,Alexander McGaig +1437899,Eren Özkural +1758717,Erika Fetzer +1440297,Devin Joseph +1546532,Kurban Said +1642509,Heinz Busert +1387243,Colette D. Dahanne +1157033,David C. Traub +1100378,Rosa Karo +73613,Denis-Noël Mostert +1644622,Kim Sung-joo +1308101,Toru Okada +1525155,Eric D. Anderson +123543,Alan Metzger +1577697,Jaclyn Ann Suri +133185,Henri Cartier-Bresson +1293001,Lauren Killip +1558086,Matt Kutcher +1742971,Neus Bibiloni +74734,Fredrik Lindström +1333161,Sofia Jimenez +1502866,Nick Stanner +1056294,Dragana Tešić +1269672,Gretchen Bright +592628,Yuli Kim +1458711,Larkin Seiple +1681816,Mami Kagamoto +125267,Stephen Greenhorn +1385214,Mark David Keegan +111532,Pål Øie +567755,Sergio Nasca +1797478,Ben Ahmed +1404813,Lauren Mallard +229891,Alex Hall +1827467,Gerardo Tagle +1780235,Tom Spriggs +81872,Christopher Donaldson +1103622,Sam Kaufmann +54747,Martin Ritzenhoff +102365,Walter Bullock +1703116,Fliss Jaine +1521324,Frantisek Jaderník +97327,Bob Ellis +1461197,Laurence Berkani +129312,Les Crutchfield +1031548,Edward Schroeder +8951,William Hayward +1510551,Felipe Figueroa +1621066,Andrew Rothschild +29063,Paul Lowin +1544497,Liam O'Callaghan +62081,Michael Damian +1586294,Espen Zubi +1181520,Seaton Findlay +1550064,Edward T. Hanley +1703751,Michal Arbit +1425398,Lisa Inman +56305,Ferencné Szécsényi +1485214,Jay Thompson +6409,Robert Salerno +1031098,Hannah Cooper +69664,Eric S. Rollman +1189051,Martin Lisemore +1577909,Sandy Notarianni +27157,Eric Norlin +1524542,Nate Oldham +1623699,Laura Einmahl +1461571,Alessandro Pavoni +1300039,Fouad El-Zahry +1351476,Stephen Tubin +1103655,Brian Rigney Hubbard +1808368,John Craine +1055900,Isabelle Grellat +1770722,Claire Whiteley +36106,David Sláma +40118,Adrian Brown +1394047,Stacy Frankel +1478705,Ørjan Karlsen +1364797,J.R. Fountain +231829,Jason Felts +46915,Neil Elman +84802,Kevin Alexander Heard +1017376,Chris Squires +1819157,Mark Foster +1616265,Audrey Wilf +1456608,Shôgo Furuya +144862,Eoghan Harris +552336,Yukio Yuzawa +1865202,Lane Koch +30694,"Ross Bagdasarian, Jr." +1354027,Robert Carlisle +131446,Sepp Allgeier +1635236,Sway Davenport +583468,Gaby Chavez +94980,Anne Vince +1048552,Egor Baranov +65245,Andrew Feltenstein +572052,St. Clair McKelway +118406,Iaso Tsuge +1308342,Michelle Lynette Bush +82115,Allan Mauduit +1781640,Casey Slade +1797223,Harrison Stark +1394007,Andy Abele +1367495,Anthony Ortiz +1635303,Ericka Bonilla +66644,Detlev Schneider +935269,Trevor Herrick +1042805,Jonas Bauer +935281,Kevin Gant +1582467,Pablo Díez +192852,Francis Lee +1192894,Chimamanda Ngozi Adichie +1835172,Branislav Živković +1046491,Dylan Hale Lewis +1785940,Corri Hopkins +1411236,Dean Gould +161777,Leigh Vance +262211,Paul Todisco +353809,Gordon Kay +115174,Daniel Ribeiro +1308529,Glenn Kaplan +1460035,Ashlyn Melancon +1849489,Justine Whyte +1298939,Armando Bondani +1185945,Aria Prayogi +1002603,Pierre Tremblay +1362655,James Blann +1116418,William Judson +1192525,Heather Toone +1450766,Kevin Patrick Burke +1205437,Greg Ng +80825,Todd Niesen +417176,Art Seid +1547210,Damiano Marchese +995468,Maui Holcomb +1827464,Fiorella Moretti +1598022,Craig Atkinson +1708045,Frankie Hogan +32777,Leo Lieberman +1438457,Raffaella Transerici +1489812,Christine Lamlano +130850,Herb Hamsher +69798,Clark Spencer +1817079,Muriel Cravatte +1829628,Sonja A. Nelson +1540247,Vydmantas Plepys +1844154,Aygerim Bekmukhambetova +102400,Ted Fox +999786,Tobin Armbrust +1418441,Joe Turner +1214379,Brett Dowler +1591748,Jonathan Hafter +1662736,Tracy Ewell +1118343,Mark Lund +1170558,Igor Porublyov +1292465,Amy Belling +1665249,Ishaya Bako +1474655,Marc Pollon +1124513,Pier Vittorio Marchi +566314,Brian Caunter +1056219,Kimberley Hassett +1313872,Giorgos Triandafyllou +1155148,Glenn Patterson +1103630,Ryan Miller +1164125,Matthias Bauer +560193,Osamu Sakaguchi +1525826,Eleonora Ponzoni +1357064,Greg Baldi +1151191,Paul Gerstenberger +962280,Colombe Raby +1830503,Sarah Bowen +57968,Mark Miller +1704679,Paul Tazewell +132098,Ivor Herbert +151747,B.W. Sandefur +1284691,Yoshihiro Ueda +1182669,Sarah Adina Smith +3396,Steen Herdel +110055,Karin Arrhenius +1574449,Jacques Mazuel +1291504,Valter Lupo +36965,Joachim von Vietinghoff +4583,Niv Fichman +562206,Richie Mehta +1130319,Tony Morales +74881,Rocco Urbisci +1321932,Jessica Ophelia Lewis +1123119,Christian García +15159,Fendou Liu +1638156,Aktar Hussain Sheikh +1743905,Franco Antonelli +1652021,Arun Seenu +1635307,A.J. Bruno +1484989,Benj Gibicsar +1320559,Tony Luu +1188701,Gregory Sanders +1458717,Theodora Dunlap +12627,Frank Spotnitz +1817455,Caitlin Panis +1578022,Shane Thomas +1179794,Simon Gstöttmayr +1448309,Lara Bella Vella Baldacchino +1087738,Craig Sieben +1448314,Staffan Linder +1620688,Effie Skrobolas +1709212,Owen Dennis +200402,Tim Trella +1728685,Derek Carter +1650750,Julie Breton +1769269,Mony Mansano +1157602,Scott Greer +1814579,Devin Gray +1581570,Michael Strangeways +1759263,Jasmine Marie Alhambra +1321362,Marylin Fitoussi +30102,Frederic I. Rinaldo +1546743,Lillie Jeffrey +1570036,Jon Beacham +1456433,Lew Borzage +1130765,Nikos Gardelis +1545925,Camilla Kirk-Reynolds +99684,Corbin Timbrook +557364,Ernesto Herrera +1073191,Colleen Brennan +31970,George Sawley +101109,Michael A. Simpson +1055222,David Krentz +91623,Sean Grundy +1570082,Tzvika Yuta +1412912,Sylvie Ferry +1593985,Mike Stockton +1640827,JoJo Dutton +196124,Jack Townley +1430512,Steven C. Craig +1774240,Sangeet Prabhaker +1180805,Thomas Foldberg +1777659,Christian Lalonde +41679,Fonda Fisher +1413500,Tara Moross +1240642,Christopher Young +1574314,Frank Henschke +22472,Jolanda Benvenuti +110428,Andy Cox +1102510,John Elphick +1821911,Duck Lee +18435,Margarete Rose +1808982,Scott Anderson +967604,Dimitri Rassam +1878524,Carrie-Ann Banner +1287203,Olga Kharina +1029145,Rodrigo Bellott +149863,Alan Roberts +1338154,Aaron Morgan +1367087,Hillary Gurtler +1136955,Masahiro Yamada +1862950,David L. Starkey +1163106,Vincent Courtois +33861,Silvio Laurenzi +51621,Willy Faktorovitch +120565,Bernard Émond +1742498,Manuela García +1529916,Heizô Iwaya +103346,Leslie Goodwins +1462314,John O'Grady +1463679,Vanessa Motta +64754,Andrew Currie +140488,Kenny Tse +47832,Simona Rybáková +935242,The Mamas & The Papas +996068,Emjay Rechsteiner +1620944,Graziella Zita +1152385,Mart Otsa +1680196,Jeremy Robinson +12265,William Robert Sivel +1647408,J. Propapkbunlay +1402728,Joe Ng +980260,John Erik Kaada +97055,Billy Sneddon +1547361,Leslie Zak +30981,Jerry Warren +121284,Terry Kellum +1643418,Nadia Homri +1384369,Paul Butterworth +1757642,Natalie Rose +1642528,Paul Boyd +1440865,Shyla Butler +1184335,Jean-Marc Rudnicki +1143481,Robert Hasfogel +1315180,Kozue Kaneniwa +1130169,Ron Dyens +1529559,Masao Fujiyoshi +1456311,Félize Frappier +1562475,Matthew Musolino III +1090703,Andrew Orr +1830745,Clint Novak +63355,Seamus Deasy +1456373,Wesley Sewell +1295712,Bob Wade +1050348,Jon Endre Mørk +621628,David Van Taylor +1295743,Zorana Piggott +1601458,Mimis Kimouliatis +1364491,Maxime Govare +1403388,Kim Ayers +66795,Nacho Cerdà +1457892,Mark Wotton +37264,Christoph Vitt +1687761,Nataliya Batova +1355722,Jane Mendelsohn +1734276,Sarah Okun +1424053,Alex Foster +57367,Matthias Emcke +1272771,Jane Holzer +31157,Randy Carter +1337626,Dominic Cicere +1574322,Sacha Guillaume +143628,Alla Surikova +1606206,Marina Bendocchi Alves +1367139,Susan Gaedke McGill +1582591,Kris Major +1636719,Claire Bell +1568026,Mark Downie +1394639,Emily Batson +1561182,George Phillips +1431519,Mike Holloway +1466006,Morna Ferguson +1457043,Ytcracker +579043,Thomas Villum Jensen +964698,Matthew Metcalfe +1537854,Jessica Elliott +1440864,John Francis Conway +122194,Gen Fukunaga +1376321,Andy Ordonez +1420168,Daniele Grigolo +928657,Eric Ellenbogen +1463380,Trinh Vu +1179377,Keith Mansfield +1173423,Toru Fukushi +45125,Maureen Hughes +1161605,Richard Swingle +563824,Álvaro Fernández Armero +62142,Laura Greenlee +1108726,Bonnie Farley-Lucas +21671,Laure Cochener +1708006,Billy Minshull-Gardner +1263799,Bianca Steenhagen +1338971,Glen Gathard +133081,Bernard Glasser +1556420,Connie Farr +1128265,Gudegast Braeden +91269,Paul Wernick +1865204,Janice Morrison +1102488,Paul Ruddy +1469882,Shuhei Kamimura +1808033,Borislav Penchev +1641978,Steve Sich +1411140,Julie Harding +144596,Sheldon Larry +137972,Michael Dubelko +231494,Park Kwang-su +61553,Vanick Moradian +56722,Vincenzo Mannino +1099817,Carolyn Berger +1262514,Jurriaan van Nimwegen +1548089,Don Riozz McNichols +1039269,Dana Starfield +544711,Pál Fejős +1305036,Ali Akbar +1595295,Uno Lahtein +1530554,Cullen Tate +1319487,Paul Driver +1545953,Jens Piotrowski +30592,Martin Starger +1440421,Frédéric Cambier +1740800,Mireille Paulo +565310,Boris Stepantsev +1870571,Yuki Seike +1550437,Watson James +1523874,Jennifer Bannister +35996,Zee Graham +23922,Chris Solimine +586136,Greg Carter +576219,Dylan Brander +1634499,Stephanie M. Flores +1571056,Brice Bradley +104335,Frederick Moore +1421652,György Réder +145192,Spencer Berger +1395211,Lezlie Wheeler +1005766,Jawad Metni +927993,Einar Martinsen +1477081,Dimitri Shostakovich +1307805,Rowena Zande +1759316,Minnie Duerr +33507,Mona Bräuer +1138331,James A. Rota +1536630,Robb Earnest +1207542,Michael Fechner +1394723,Babak Mansouri +73240,Ricardo García Arrojo +572595,Onur Yıldız +1193632,Abby O'Sullivan +31050,Erwin Hillier +1349966,Annette Chaisson +1281407,Ian Fulcher +1471090,Rasool Mollagholi Poor +1559458,Tom Obed +120023,Marco Valsania +198034,Bill Finger +1567534,Daniel Robbins +1862956,John Watson +62576,Mark Gottwald +141708,Jed Elinoff +1026914,Philipp Roth +1127656,Nicola Lusuardi +1305511,Ed Hunsaker +1473420,Paul Robertson +1636782,Nate L. Martin +20648,Andrea Guerra +1412155,Ingrid Wiese +1299147,Chris Haire +1568637,Olli Pärnänen +96503,V. Litvinov +1476166,Christopher Branca +584967,Andrej Košak +239685,Vadim Mikhajlov +1388898,Sam Renton +1178814,Russell Leigh Sharman +1360110,Gregory L. McMurry +1167580,Derek Marlowe +1173300,John Radel +1881547,Benjamin Speiswinkel +1635162,Sean Flanigan +1724979,Will Allegra +103046,Jim Agnew +1729488,Eileen Tighe +1137548,David Paul Meyer +1001797,Julia Willoughby Nason +1417862,Rachel Geary +1210483,Isaac Cravit +1657551,Brandice Brown +29089,Julie Forster +1209781,Guy Danella +1181227,Sohichiro Harada +1844352,Tim Scott +1319274,Marina Potapova +125177,József Romhányi +1826475,Candace N. Brown +1122003,Jennifer Page +1269086,H. Bruce Woolfe +1454811,Danton Rissner +1446740,Ben Hoffman +1001720,Caity Birmingham +1800056,Sandra Corbally +223006,Skott Snider +1646585,Xavier Larocque +1567812,Lilo Lieb +328645,Martin Cohen +1459117,Richard Bergeron +1102121,Barbara Gerald +1298878,Alex Knickerbocker +65028,Daniel Scharf +1057526,Rickie Castaneda +1311209,Doris Deutschmann +1633098,Donald W. Roberson +1800050,Susan McDaid +1315852,Élisabeth Williams +1719407,Debra Rodman +1431833,Disley Jones +1003545,Karen King +77951,Michael H. Weber +1440304,Mike Karasick +73758,Paulo Rebelo +1746080,Marie Regan +11530,Jean Bachelet +558908,Aaron Gorvine +61276,Jon Rekdal +142520,Drew Dowdle +1465139,Amy Lu +94270,Louis J. Horvitz +1064163,Jean Oury +1564951,Sandra Berg +1361565,Jamie Hilton +1186917,Hwee Sim Ang +1754586,Miguel A. Ferrer +43913,Chiang Hsing-Lung +76111,Peter Woodward +1526011,Tomas Cordoba +1143477,Andaleeb Sultanpuri +1817521,Tomomi Kyoutani +45916,Owen Hurley +1445855,Eric Hooge +13761,Sabine Greuning +222319,Aulikki Oksanen +1200309,Michalis Konstantatos +232123,Lisa Ohlin +229109,Shagufta Rafique +440517,Steve Taylor +131454,F.L. Green +225893,Niall MacCormick +63901,Patrick Goraguer +571457,Tow Ubukata +1024813,Adi Lavy +1596555,Emmanuel de Boissieu +1154478,Jan Haft +1472651,Sheryl Benko +1657565,Andrea Vincenti +86833,Charles O'Neal +1618803,Marie-Eve Journeault +90510,Satoshi Kuwabara +1173084,Ravikant Nagaich +1072871,J.D. Koumendakis +72588,Michel Vandestien +1657547,Bettina Godi +1539305,Poppy Bourchier +71609,Joachim Trier +49281,Chris Sivertson +1879686,Mark Richards +1340792,Satish Vegesna +1635257,Ryan Perdew +1373429,Eric Raber +1324466,David Edgar +1775622,Herbert Gehr +1403389,Jules Holdren +35114,Lionello Cerri +1352360,Daniele Napolitano +1085009,Eric Stolze +1374172,James Frater +1814894,Rick Sarmiento +1290491,Jennifer Handorf +1815820,Peter White +140118,Julie Hartley +72747,Charles Bloye +1348017,Thomson Burtis +1427582,Jon Pehlke +891080,Özgür Eken +1821435,Lowell Chambers +56827,Junkie XL +69663,Lance H. Robbins +148842,H.M. Harwood +1458989,Mary Phillips +1354335,Sonthorn Nimsane +1536199,Sebastien Roussel +1560942,Erika Lockridge +965163,Reuben Liber +1134542,Shinzô Matsuhashi +149366,Warren Foster +1299059,Robert Lewis +592152,Lam Wah-Chuen +16987,Rocío Redondo +1668654,Nithin Simon +1151731,Petra Kray +1000619,Prashant Pandey +231521,Eric Styles +556824,James Mou +1635801,Teemu Liakka +21918,Run Run Shaw +1196672,Kelle Kutsugerus +1831716,Debbie Peiser +1555795,Michelle Graham +1062889,Bill Muir +1603873,Ceyda Torun +1172477,Kerstin Hoppenhaus +1392558,Marcela Bazzano +1273675,Francesco Cenni +132255,Gladys Hurlbut +1153039,Gabriella Reumer +1293666,Park A-ram +1581801,Leonard Bulkley +112163,Wen Bin Huang +30606,Dennis M. Hill +1318444,Maria Livingstone +1319965,Jang Chol Lee +566910,Kathy Mackel +1210789,Peter Horn +1529880,Gertrude Chandler Warner +150330,Alberto Fuguet +1542453,Akira Miwa +1412577,Shauna Llewellyn +1399866,Joel Thompson +97240,Rudolph Cartier +1603899,Maria Coveou +1307423,Menno Westendorp +1631351,Robert Erickson +45118,Martina Niland +1116257,Erik Põllumaa +1170242,Robin Vining +1601702,Dragan Sovilj +113302,James Bai +1761922,Juuso Nordlund +23617,Maja Gawinska +1579536,Jared Barel +1424108,Steven Piet +72897,Mike Downey +1378140,Jason Brasier +1636711,Timothée Arene +1324642,Bob Manahan +1035044,Carlo Leva +1765666,Charles Mallison +138466,Manuel Seff +1754610,T. Patman-Thomas +1463145,Emma Fryer +1500631,David Nichtern +1175183,Calazans Neto +108136,Robert Dijoux +1125600,Joanne Smith +1760580,Zane Yang +1490037,Yuri Fyodorov +1331179,Sarah Patch +1808366,Holly Rosenthal +1438449,Arianna Palmucci +1404920,Rexford L. Metz +1377415,Garrett Montgomery +263284,Richard Benner +1723491,Ronak Motla +1458556,Keith Durham +948992,Steven Chasman +222505,Wilho Ilmari +1116326,Noritaka Kawaguchi +1411724,Christine McLeod +872614,Sxv'leithan Essex +1612439,Kari Kankaanpää +1407733,Ted Markovic +1642166,Marcus Hoogveld +160101,Cydne Clark +1392959,Alysia Cotter +1797207,Bob Gilles +1606282,Tullio Dramis +1375056,Miles Harrington +47041,Günther Russ +1106190,Aleksandr Barshak +66941,J.A.C. Redford +1401130,Drew Guajardo +1399971,Conrad V. Brink Jr. +187074,Tony Briggs +224214,John Bradshaw +1606170,Raimon Bufí +1761199,Pekka Uotila +1454380,Sam Kramer +56546,Mark Armstrong +1189828,Benjamin Hayden +1828342,Bryan Brooks +1206696,Anders Flatland +1116924,Will Battersby +117370,Park Kwang-hyun +1018951,Garnett Weston +81874,Julie Gavras +1280572,Valeri Filippov +1199318,Javier Ruiz de Arcaute +137554,Tambet Tasuja +1057492,Kim Jho Gwang-soo +560227,Julian Maas +1647402,Katherine Walker +1607446,Senjin Imaizumi +1580878,Trevor Carless +113582,Jonie Taps +1391667,Steve Ralph +51709,Karri O'Reilly +1833926,Markus Hill +1342904,André Carreira +1206670,Thomas Bell +592853,Uwe Heidschötter +1410593,Bernard Seitz +87670,Keith Truesdell +93632,Michel Negroponte +946129,Kyle A. Clark +124635,Billy O'Brien +19101,Lee H. Katzin +1335346,Jeon Il-seong +175450,Alfred Gimeno +1220799,Melissa Salmons +1620966,Ajayan Chalissery +1287447,Dorothy Uhnak +71617,Alain Monne +1031497,Wasiq Khan +226856,Richard Fernicola +1000753,Greg Derochie +82664,John Travis +19650,Gil Delamare +1296488,Jayme Bohn +228786,Jean-Paul de Zaetijd +53614,Melissa Parmenter +1572865,Mark Cyre +1591025,Stanley Miller +538715,Evan Tylor +1021585,Dudley Murphy +1367938,Jacob Bynum +1412919,Mark Gerasimenko +991868,Ari Sandel +1036761,Artem Mostovoy +1729571,Jack Tarling +1202912,Don Rooke +144139,Jindřich Polák +1138330,Kenny Stoff +1670917,Mary Jo Barthmaier +1460819,Jennifer Popochock +1469621,Marie-Claude L'Heureux +1044613,Bill St. John +70738,Gary David Goldberg +239789,Ma Sang-Ryeol +1041553,Dave Fraunces +1180039,Kimitake Hiraoka +1568837,Alanna Levy +1362653,Gerry Floyd +1367550,Alex Baily +1335142,Bosko Delic +39474,Pasquale Squitieri +1126373,Harold H. MacArthur +928144,Rune Hjelm +1396409,Mike Brooks +1590913,Harvey Woods +1418508,Iván Pohárnok +1362799,Eleanor Harris +51897,Fernando Velázquez +70687,Éric Neveux +1719408,Noémie Devide +1636849,Melissa Lawson Cheung +1385487,Stacey Battat +1634159,Takeo Hisamatsu +1363862,Simon Descamps +1539289,Vladimir Petkov +1311556,Andrea Eckerbom +1642141,Darria Young +1280141,Woody Pak +1519301,Rab Letham +1393490,Traci Loader +56801,Oleg Assadulin +1627219,Jen Santucci +1766553,Vittorio Noia +1464042,Peter Mihaichuk +565330,Lev Atamanov +60103,Martina Radwan +1296807,Massimo D'Anolfi +227936,Benedek Fliegauf +1121630,Chris Nickin +1297709,Skaidra Deksne +1463824,Frank Macchia +1672756,Kaki Kirby +1468093,Laura Wagner +239293,Paolo Heusch +1445824,Tracey Moss +102696,Stanley Yung +1417890,Lois Yaroshefsky +1596257,Anssi Leino +1188751,Janet Brenner +1642533,Tamson Chen +1330349,Adina Sullivan +173207,Spike Silver +1780174,Fabio Spitzenberg +19801,Rick McCallum +1070555,Mark Poirier +543943,Yevgeni Karelov +1500929,Peter Riche +1452745,Ron Petersen +1103587,James Friend +1466256,Anthony Hugill +80923,Måns Mårlind +1323896,Britton Foster +1780137,Cornelia Ritz +1870219,Steve Sisko +1128543,Sandi Russell +1094458,Douglas Edward +1345602,Devin Fairbairn +1598443,Deividas Stankevicius +1474628,Peter Forslund +1161277,Martin Wheeler +46618,Mickey Borofsky +65315,Alessandro Baricco +49210,Hanns Lippmann +1679703,Katarina Zaninovic +1535465,Sophie Kavouridis +147359,Thomas Fries +1541646,David T. Ray +110629,Rana Abboot +1482947,Edward I. Fessler +1551998,Brian Pitt +1699535,Zoe Freed +1354795,Maria Baroni +1712418,Enzo Striano +1085159,Maarit Lalli +1580890,Alison O'Brien +1325489,Karen Lee +1634296,Charles-Olivier Tremblay +1740781,Fran Weston +1619736,Samahra Little +1859962,John Hockridge +1344842,Renetta G. Amador +1700419,Pirkko Juntto +1503511,Gamon Sakurai +1207486,Patrick Moraz +1436195,Branden Marks +1535494,Luca Ravenna +1337168,Feild M. Gray +1443479,A.J. Riebli III +1320977,Jana MacDonald +1458720,Tom Valerio +106750,Fred Gallo +1095564,Shandor Berkeshi +1350459,Gary Warshaw +88579,Howard Estabrook +1729038,Jaim O'Neil +1492215,Pierre Cardin +1440305,Marc Marino +51083,Claus von Boro +1546747,Vivienne Jones +928948,Nguyen Thi +1193919,Shirlyn Wong +116246,Lauren Mann +1646600,Hugo Léveillé +1094201,Tommy Wai +1642006,Dileep Subramanian +1413178,Kee-Suk 'Ken' Hahn +1401761,Adam Ragon +1400510,Damon Michael Gordon +1777185,Marie Koulová +1623836,Boris Dubrovsky-Eshke +1745148,Howard Curtis +1094563,Stephanie Q. Bowen +19085,Pierre Jansen +1414916,Tonia Ciccone +1432704,William Stockdale +1551803,Yelska Labrada +1149913,Erin Staub +1621092,Ole Christian Løken +1725780,Renè Warnes +1495867,Dusan Demic +1697080,Jussi Lehto +1544342,Kori Murray +1699498,Elan Jones +1609044,Michal Makarewicz +66997,Silje Hopland Eik +1737876,Wang Ke +35126,Emita Frigato +1764706,Rinat Aloni +1335312,Pat Shields +1726036,Chad Van Horn +149225,Gabriel Le Bomin +1075863,Michael Anderson +1085157,Minoru Furuya +54741,Geoff Jarrett +592058,Angelo Curi +1529873,Didier Ah-Koon +1853407,Julianna Ugrin +70777,Kevin Rodney Sullivan +148168,Jeff Farley +16410,Jules Bass +63168,Zak Kilberg +1430989,Liz Mendoza +1760325,Tarnnum Khan +230669,Alberto Pugliese +1408796,Chris Brock +1539774,Gaelene Lithgow +1825883,Daniel Hargrave +1527863,Tim Mikulecky +1627481,Ken Eluto +1594193,Zoe Marsden +1642274,Bradley Sellers +1618780,Juan Campos +1609844,Joseph Mosikwa +1815602,Vincent Bates +1411040,Ian Brodie +93767,Laurence Ducceschi +1886761,Ira Cohen +1191093,Allison Hughes Stroud +139540,Gregori Viens +1362754,Frédéric Blum +1407265,Justin Rojas +1698810,Paweł Laskowski +132514,Satoshi Seno +114832,Lito Carruthers +1053408,Peter Blackmore +142276,Ariel Schulman +8046,Dave Mullins +178878,Joel Ronkin +1338129,Narelle Barsby +1031766,Malcolm Ali-Payne +1697477,Ratko Djurovic +1399695,Carl Rogers +1365542,Paul Pirola +1615235,Kumi Craig +1336136,Mariya Solovyova +1454780,Robert Wyckoff +1055093,Jaroslaw Wierzbicki +1316314,Shoutarou Tanabe +53124,Michael Kuge +1168878,Maurice Hanline +1404914,Judith Sherman Wolin +9544,Ann Goulder +1531512,Joseph Farrant +221107,Max Botkin +57767,A.J. Quinnell +1816595,Jérémie Guez +1456432,Harry Oliver +1066011,Bruno Uher +1141077,Vincent Mariette +1586106,Joey Montenarello +1394767,Clay Enos +1740783,Luke Stone +1428843,Hillary Derby +72261,William Wages +8748,Enzo Sisti +1841598,William Stanbro +1006465,Kathleen Winsor +995566,Duane Graves +1678890,Jacinta Driver +29057,Jason Krasucki +1565925,Carmen Stuellenberg +1791610,Kjetil C. Astrup +586154,Mitja Okorn +20659,Marjane Satrapi +1707142,Witold Popkiewicz +52582,Lula Carvalho +1288126,Hanya Barakat +1495977,Rebecca Moline +1063779,Hervé Guichard +1808367,James Bridger +1808042,Jamie Sapp +1226516,Michael Petok +1328189,Steven Schardt +1583172,Melody Moss +1242935,Cynthia Amsden +1726734,Marina Vukasovic-Medenica +1325202,Fulvio Compagnucci +135678,Jan Hřebejk +1159968,Robert Lowry +589083,Mika Karttunen +1094152,Matthew J. Lloyd +1024291,Trevor Forrest +1821419,Jérôme Faurel +92306,Hervé Bazin +98869,Joe Castro +23400,Isabel Meier +1286584,Trevor Taylor +40166,Stanley Ellin +1155193,Sumardjono +1100812,Charles-Henri Montel +1397870,Anne Melville +82579,Kevin Tenney +1354353,Sanya Chaiyapet +1136035,Jimmy Villotti +1817835,Allen Sloane +947694,Mark Albela +1150816,Martijn Smits +1006691,Patrick Kirst +98940,Catherine Cyran +1092485,Liselotte Welskopf-Henrich +1017185,Cruz Delgado +1619178,Sachiko Shimizu +1738135,Lea E. Miller +133873,Aisling Walsh +1797246,Sarah Campbell +1835569,Mark Walas +1134157,Sven Pepeonik +90591,Oren Peli +1825888,Brian Philpot +1586591,Keith Tinman +1472554,Luigi Cecchini +1437933,Patrick Andre +939448,Andy Drummond +1493964,Christie Wittenborn +52589,John C. Higgins +1684923,Polina Shtain +136491,Carlos Vasallo +1067252,Lee Nelson +1262635,Mac Fisken +1302764,Jordi López +419327,Johnny Marr +1678083,Stine Mari Andreassen +1868976,Michele MacInnes +1796688,Robert Deege +999606,George Grandpré +74011,Antoni Lazarkiewicz +45936,Fabrizio Lucci +1348062,Nathan Brookes +1495878,Bruce Cook +1725763,Marc Casey +51431,Arturo Zavattini +1460739,Catherine Childers +973668,Nancy Buirski +1390350,Helen Xenopoulos +1532332,Cosima Spender +137002,Mikhail Shvejtser +1115631,Tony Bicât +1465384,Lynne Huitson +1877270,Mathias Raaflaub +1121524,Jos van Gorp +1551705,Chris Duesterdiek +1498639,James Vandewater +1036376,Jesse Lucas +225109,Mario Martone +1262867,Babak Anvari +1339601,Hector Flores III +1606167,Shahram Karimi +1647880,Morgan Gillio +1034496,Annie J. Howell +1451565,Mitchell Schomburgk +1155522,Michelle Poole +1637778,Melchior Zwyer +59001,Jimmy de Brabant +1412588,Frederic Breault +1478662,Bailey Conway +1852960,Rachel Steele +1326110,John Pollard +113197,Duane Dickinson +1555492,Clare Witt +1824281,Jacob McIntyre +1063997,Mirko Locatelli +23595,Jose Cancela +1088581,Jazmín López +237446,Michael Nachoff +1335415,Florent Maillot +1425824,Dan Delgado +1463804,John Voght +1459765,Phan Wiantrakoon +1460748,Kate Abraham +1402997,Lorea Hoye +1412496,Renee Ragucci +1440741,Hans Graffunder +1580862,Michael J. Wheeler +27572,Brian Nelson +1328142,Lee Stollman +92929,Vincenzo Flamini +1872769,Thibaut Niels +1583076,Heather D. Gaither +1395219,Steven Ejbick +1187862,Sian Jenkins +1242735,Ted Key +1573937,Joshua Kirchmer +1018348,Aidan Leroux +1714236,Kishor Athwal +1083256,Tristin Norwell +1815819,Casey Crespo +103073,William Mercer +1869451,Eddie Robison +1252423,Melody Fox +1466976,Corrado Azzollini +141032,Elke Blasi +1407262,Oliver Bukowsky +1571981,Jan Guilfoyle +1466261,Rachel McWatt +1644779,Mariann Molnár +1403808,Junior Campbell +1459750,Dave Logan +1575826,Maggie Ruder +1054091,Alberto Graça +1092906,Shôjirô Sugimoto +1622336,Pete Wages +993265,Robert Fisher Jr. +1191330,John Buffalo Mailer +1584351,Tucker Barrie +1637913,Rosa Schoemann +35498,Craig Zadan +253696,Len Talan +55483,Julia Stannard +1574307,Courtney Arthur +1641405,Gary Davis +1797438,Craig Ferrreira +1447562,Samuel Chou +92939,Terrence Mosley +1856165,Andrew H. Leung +592772,Karel Fairaisl +1386303,Caitlin Mae Burke +563673,Yoshitami Kuroiwa +133242,Doreen Carwithen +1072868,Steve Graham +1192510,Dustin DellaVecchia +1408383,Adam Rowland +1074298,Alain Le Henry +1413854,Aleksandra Keskinov +1473507,Jarosław Barzan +1442992,Choi Lee-Young +1568419,Glenn Montgomery +65480,Danny Elsen +1776279,Sarah Lawless +1078797,Michael Syson +1334579,Ron Roth +143031,Marvin Kren +7296,Valérie Saradjian +1777267,O. Líbal +1501950,Eric Poirier +1533488,Gabor Kiszelly +1815007,Bill Jenkins +1364800,Milčo Mančevski +1383185,Drew Swinburne +113180,Philippe Theroux +1335879,Earle Stuart Callender +1512680,Ville Vellend +1353231,Yuji Iwata +1418510,Gabor Toth +1168389,Mike Berkowitz +1534169,Hazel Rogers +1714235,Sharmaa Adi +1769824,Clark Grimes +229704,Kenneth J. Berton +1354357,Pattarapol Sintuprapa +41637,Oreste Biancoli +1408773,Kyle Bruggeman +1383811,Jessica Padilla +1556906,Gisela Evert +1903914,Reshma Ramsay +44231,Mic Cheminal +1198180,Guilherme Fiúza Zenha +1884073,Joaquín 'Kino' Sánchez +1521300,Tarun Jain +143082,Roland Zag +118472,William T. Hurtz +1326480,Jaysen Lewis +1607507,Bryn Mooser +1517102,S. Aishwarya +71165,Hummer Højmark +931133,Rahi Masoom Raza +1841608,Joy A. Tomchin +69134,Dick Huemer +1572870,Celine Zoleta +132520,Ichiho Maeda +1284482,Alexander Saal +1646436,Lucio Di Domenico +102557,Maurício Farias +1551815,David Campbell +7930,Jan Pinkava +238472,Ilkka Matila +103519,Fernando García Morcillo +1630966,Jonathan Fine +41845,Jason Newmark +1732668,Adam Lindemann +1049433,George Melly +1173302,Ian Bailie +1550763,Atsushi Kojima +1774238,Kate Chadderton +84799,Eric Moore +82862,Sydney Boehm +1452396,Ian D. Struthers +1642591,Eileen Middleton +1835565,Randy Auerbach +1634542,Rebecca Allen +1412606,Neven Mihailova +929145,Lorne Balfe +1102871,Murillo Penchel +1379958,Jessica Kelleher +115646,Tatsuya Osada +157272,Arthur Julian +67500,Gary Marlowe +212908,Stewart Harcourt +236823,Andrei Tutyshkin +101554,Massimo Antonello Geleng +1350252,Eric A. Kohler +1347528,The Yes Men +112990,Alex Mok +1599479,Jay Price +22328,Per Andréasson +1448865,Derek Mungor +1710372,Evan Warner +1641232,Stephen Nelson +1414869,Gautham Raju +1176747,Tow Ubukata +103235,James Stevens +564041,Ferdinand Horvath +1264570,Brittney Segal +1076332,Bernardo Sassetti +1181360,Jay Martin +1125217,Jillian Kugler +1429003,Zak Knight +90692,Steve Munro +1363963,Stephanie DeCourcey +1039361,Roger Engle +82566,Anders Morgenthaler +1824251,Antonio Oña Sánchez +1146497,Bernward Vesper +1470508,David Howarth +1849498,Rachel Mathews +1496420,Wendy Garfinkle +124084,Max Catto +85030,Anvita Dutt Guptan +1547491,Shohei Sekine +1662639,Patricia Shannahan +1408399,Roger Marbury +47877,Rod Browning +1346215,Lluís Quílez +1453126,Ivana Orlovic Kranjc +163641,David Paulsen +1477900,Mikael Bengtsson +1069869,Kimberly Amacker +1518781,Aaron Beck +1706692,Jean-François Dubé +1797497,Manuela Cripps +1708033,Joshua Little +1705468,Uschi Filipp +562707,Ian Corson +1076600,Mike Cockayne +1759766,David Thomson +136155,Marilee A. Benson +1661322,Justin N. Lang +85710,Sunil Nigvekar +1568860,Josie Fulford +18959,Kurt Nachmann +1424054,Adam C. Stone +1326078,Tatyana Dombrovskaya +1043234,Cameron Brodie +1765672,Fernando Pichardo +1533516,Nicholas Britell +1518527,John Price +1642179,Robin Müller +1798645,Stefano Negri +1392864,Josh Wick +6739,Erran Baron Cohen +81210,Stephan Apelgren +1205936,Samuel Pinczewski +1547661,Mike Will +1646487,Carole Arpin +1457917,Nico Woulard +1770332,Monika Rolfner +1642584,Daniel Lafrance +20525,Pierre Queffelean +1459752,Andrew Malesky +22070,Chanida Trueblood +1489483,V. Shvelidze +1395213,Mariangelica Cuervo +16036,Fred Freiberger +1741871,Antonio L. Padial +85699,Hiroo Johar +1190611,Louis Dargenzio +151092,Eric Eason +1056323,Minoru Kanaya +1658453,Eleanor Baker +147792,Peter Svatek +1432093,Bo Altherr +558645,John McCarthy +1564051,Uwe Greiner +63908,Peter F. Steinbach +1583216,Jess MacGillivray +28391,Thanassis Karathanos +1190604,Omar Barraza +1752052,Matt Donaldson +137612,Ronald Kolmann +1279017,Masahiko Sato +1468589,Wade Sullivan +1382734,Christian Kinnard +1145614,Tsui Siu-Ming +1484211,Tony Slater Ling +1686548,J. Edward Shugrue +8039,James Ford Murphy +1577302,Bret August Tanzer +5781,Fred Orain +1403470,Jody Rogers +150909,Dacia Maraini +1352423,Jonathan Greber +1397312,Peter I. Horton +1210932,Francesco Calabrese +1414992,Toby Sells +1594178,Kevin O'Brien +15020,Jim Reardon +85711,Dwarak Warrier +99859,Tim McCann +1711838,Emily Davis +1331039,Salim Akhtar +1132848,Thanachart Boonla +1401005,Vivian Quaid +1804241,Russell Greene +29524,Rand Ravich +1393444,Ryan Collins +128197,Charles Furthman +34767,Åke Dahlqvist +567559,Kurt Engfehr +1609853,Stephanie Traut +1711773,Sadao Uemura +1157937,André Bendocchi-Alves +549314,Shaun Grant +1729058,Natalya Petrosova +1453137,Christopher Hamilton +961610,Jeff Groth +1532124,Suzette Fauvel +1542366,Alex Nicholls-Lee +1046231,Jasna Dragovic +1400485,Christie Colliopoulos +1636863,Sean W. Adair +1423430,Rosanna Silvio +58816,Barney Cohen +1465936,Agnes Legere +29317,R.G. Springsteen +1628509,Moisés Zonana +1701267,Allen Fraser +1434403,Khaled Kaissar +1666864,Dinesh Shikari +1272077,Emilio Ruiz del Río +24492,Pierre Schoendoerffer +996539,David Lee Miller +87448,Erik Estenberg +157841,Julian Chojnacki +1809041,Beth David +1168417,Roland Vincent +1413775,S.J. Watson +1419842,John-Thomas Graves +1528376,Andrea Morán +91855,Marilyn Stonehouse +1097362,Rita Kaufman +1830875,Char Coats-Crump +1583652,Tomas Vengris +71620,Ola Fløttum +105446,Indra Kumar +41140,Joyce Selznick +1614061,Paul John Chandler +1861812,Dora Katsoulogiannakis +1089106,Carlos Pes +1122210,Amy Fritz +1733918,Emily Leo +1824244,Anson Jew +1299568,Scott Bolger +1302085,Chris Kool +1099201,Juan Carlos Onetti +1650634,Kristin Mendez +1585724,Gerard Maher +85551,Giovanni Veronesi +1322063,Anca Perja +1475577,Anthony Wolberg +1406193,Janosch Voss +1205938,Kirke Godfrey +1547201,Kenneth Kern +1210726,Ferdinando Maria Poggioli +1070314,Jenelle Giordano +1206668,Cher Foley +1144624,Emanuele Bossi +1657576,Lorenzo Muto +114827,Harry Reynolds +1117116,Jonathan Quinn +1727203,LaRae Wilson +1519838,Matthew Wilcock +115053,St. John Legh Clowes +1723504,Naahid Shah +119417,Gavin Wiesen +1264975,Darren Paul Fisher +1330560,Brie Harris +1053717,Mark Garbarino +1743063,Michelle Raimo +1529272,Heather Schell +239912,Jay Anania +45427,George Erschbamer +1830595,Saki Nagase +1621498,Jenn Touchie +101809,Graham Reznick +116802,Todd Kessler +1167113,Antonio Sánchez +1376940,Richard de Varda +129711,Walter A. Doty III +65518,Franziska Buch +13347,Armitage Trail +548402,Ivan Turgenev +9104,Franz Bachelin +1853237,Maria Lavnikovich +104347,Bryon Quisenberry +482079,R. D. Rajasekhar +1551772,Lynne Corbould +1390087,Alex van Galen +1642524,Edson Basarin +1221828,Dick Clair +1338484,Chris Terhune +1798337,Danielle Brandon +1558394,Jean-Claude Lother +1430116,Poul-Erik Heilbuth +548759,Fabienne Berthaud +134224,Valerio Bariletti +1638068,Samira Goetschel +1459227,Dora Somova +1443967,Vahe Giragol +1659232,Dale Armin Johnson +1411224,Nicholas Byrnes +1155523,Ted Masur +1592852,Milton Olsen +1027620,Jonathan Olive +1400085,Steve Constancio +1414048,Lauren Selig +56519,Robert Duffy +1701622,Richard Walters +1522428,Henry Troyat +131389,Richard C. Currier +1486912,Janine Pearce +1872428,Nigel Croydon +1311618,Polly McKay +1653485,Madan Paliwal +969757,Ron Halpern +557585,Nonato Estrela +1190764,Mick Flowers +1428043,Lola Maja-Okojevoh +31543,Daniele Patucchi +1605655,Sven Serfling +1614064,Barry O'Sullivan +1442119,Justin O'Neal Miller +127457,Doreen Montgomery +1497843,Daniele Tate Melia +33377,Ray Taylor +1634163,Akeboshi +1416459,Megan Baltimore +1283668,Sydney Freeland +1407729,Gus Coto +1275908,Inés Vera +1404814,John Sanders +1021627,Antonio Santillán +1292187,Stephan Roelants +574380,Danny Epper +1832740,Sam Mitchell +1784765,Naomi Wolff Lachter +100229,Antonio Olivas +63593,Ian Flooks +565164,Laxmikant Shantaram Kudalkar +1210496,Jeong Yun-ju +1696254,Adela del Pino +188897,Jon Hewitt +1223226,Justin Smith +1653563,Willem Pruijssers +1805958,Tuukka Kovasiipi +1207968,Andrew Robinson +69917,Wolfram de Marco +580824,Rainer Sarnet +1286561,Angela Lavalla +1649543,Roy Whybrow +1338234,Grainne Gavigan +600368,William Ward +1367503,Kizzie Autumn Martin +1574458,Juliette Marin +225517,Martin Miehe-Renard +204553,Ethan Spaulding +133243,Gerald Turney-Smith +582620,John Constantine +37705,Granz Henman +1470052,Markku Lehmuskallio +1294886,Jay Judah +1829978,Leah Jones +1548095,Tarik Hameedi +1155578,Maya Sigel +1138218,Zygmunt Konieczny +930028,Christopher Duskin +1815599,Al Watson +135728,Vonzell Scott +141607,Francis Rosenwald +1580964,Sara Cobbeldick +21849,Andrew Van Slee +128622,Paul Sifton +1409711,Marty McInally +1494775,John Niven +229682,Ivo Trajkov +1326012,Ashley Connor +1541743,Derek Zavada +1548134,Daniel Smith +75678,Ollie Olsen +1388854,John E Seymore +1625902,Elio Di Pietro +1797414,Tom Lancaster +1662620,Kenn Rabin +1772857,Greg Holmgren +1331173,John Bruno +1495518,Gevond Andreasyan +420499,Lele Marchitelli +254,H.L. Bird +1108706,Donghoon Choi +1367777,Tasos Zografos +112914,David DeFalco +33316,David Nutter +1815923,Arslan Elver +1086430,Michael Mayer +1462312,Alexander Wei +1689173,Luiza Prado +436271,Daniel Carey +585081,Pushpa Kandaswamy +1711833,Matt Nolte +1391942,Игорь Космачев +1797244,Cody Dysart +1305383,Tatyana Bessarab +1441757,Tine Rogoll +1064873,Elisabeth-Ann Gimber +1525126,Robert Mond +1326476,Pat Cassidy +1459749,Christian Liliedahl +1351027,Lindsay Mackay +1404561,Tobias Kuhn +1580065,Gascaro Ramondo +1184114,Anne Morrison Chapin +1754603,Steve Ponce +147821,Yiannis Iakovidis +1462918,Enzo Angileri +1305989,Maksim Belozor +1409894,Jonathan Sheffer +1012891,Renee Read +1619921,Sheldon Rabinowitz +1473423,Julien Lasbleiz +1647029,Amy Hanlin +1630588,Dylan Sanford +1872,Torsten Breuer +231252,Clarence Upson Young +93043,Fiona Walsh +1857686,Tara Woodbury +72196,Amir Naderi +1635223,Diego Ward +1368033,Kazunori Hashimoto +1453495,Dan MacKenzie +144256,Herb Gardner +152003,Niall Leonard +1747167,Juliet Martin +1066909,Nisse Hirn +1016148,Walter Gasparovic +1300476,Dave Jackson +961865,Pater Wong +2915,Hans Schneeberger +1428587,Ron Mason +568077,Harri Paananen +1074445,Peter W. Kunhardt +1533528,Mark David Katchur +1653534,Rory Soderman +1419731,Jay Duerr +978686,Zack Arnold +1015839,Sylvain Corbeil +1439111,Hayley Stuppel +1175114,Robert W. Savina +1582468,Ned Thorne +234319,Serge Halimi +144776,Michel Gast +1531832,Sean Gilhooly +1286555,Michael Goldfine +1687760,Nataliya Borisevich +1554132,Gary Forrester +1542422,Choi Seok-jae +29088,Cathy McKay +1616398,Traci Duran +231713,Cameron Mackintosh +1583086,Maciej Lisiecki +1056266,Zola Maseko +1400498,James Owens +1439428,Dana Kopetzky +591170,Kaithapram +1130131,Andrei Vasile +1641636,A Manohar Prasad +228071,Kentaro Moriya +37454,Jean Van Hamme +109599,Mark Edwin Robinson +1506295,Chad Ritterbach +1001547,Ryan Zacarias +37493,Luis García Berlanga +1264547,Seb Barker +1845786,Maureen Doherty +1084882,Justin Ware +938459,Joel Goodman +84884,Matthew E. Chausse +130791,John Lyde +1293609,Jeonghun Jeong +15289,John Barnett +1579390,Nicholas Cochran +1766566,Sergey Skripka +1661403,Hannes Poser +1412153,June A. Bondsaksen +995558,Aaron Marshall +1316671,Corey Ziemniak +995354,Jason Pinardo +1444932,José Luis Bernal +1377313,Mathieu Hippeau +1575356,Thom Berryman +133709,Tsuyoshi Yoshida +1125171,Stefano Massenzi +1585743,Lara Jade Birch +1352424,Brandon Proctor +1274591,Theres Bäuerlein +1319551,Fernando Matos Silva +1367936,Pete Stockton +1585737,Alice Baueris +1152813,Sebastian Amundsen +1014612,Teddy Leifer +1566123,Edward Hemming +109971,William Lewis +67544,Stefan Ziethen +1777245,František Krčmář +1091980,Tomasz Wasilewski +1396460,Maggie Craig +1647033,Sheri Reeves +1762267,Chantal Gravel +1621771,Joseph Kasparian +8850,Helen Pollak +1360369,Nilo Saez +1755266,Szonja Szekerák +107319,Frederick Bailey +962903,Celina Murga +1603904,Maria Coveou +1204488,J. Patrick Kelly III +69293,Kengo Kaji +1050201,Peter Tscherkassky +1808047,Dustin Lange +1550638,Andrew Simonin +1907242,Stephanie Bamberg +1056085,Todd Richardson +1310518,Colin Minihan +79975,Simon Pramsten +1350256,Anna Gelinova +1407252,David Mendez +1284153,Matías Tikas +1547675,Cyndi Vellmure +1088096,James Nunn +1431584,Brian Lataille +1264277,Alexandre Ilkhovski +1176816,Thammarat Sumetsupachok +143217,张立 | Zhang Li +550326,Ashok Thakeria +1175691,David Rühm +1869460,Nicolae Ilies +1543599,Charles Lang +1601709,Slobodan Milosevic +253152,Oscar Micheaux +945630,Yasushi Sasaki +1064165,Daniel Pennac +1394040,Susie Allnutt +1367336,Donald McGibney +1464437,Holly Morris +240980,Avni Özgürel +1306119,Luis Alarcón +1698806,Magdalena Rutkiewicz-Luterek +32000,Ernö Metzner +1447900,Aladar Liu +1271294,Tomas Perez Silva +1707994,Jo Scott +1389666,Kimberley Zaharko +1288802,James Hall +1196507,Jessica Lawson +75990,Marc Gracie +1761912,Seppo Myllyrinne +1574736,Max Fassbender +1112804,Christian Ramirez +1438570,Julien Poupard +1043961,Surinder Kapoor +1466253,Ken Turner +1401139,Ed Chapman +1338281,Joakim Sundström +1714332,Soledad Andrade +1777249,Zdeněk Ostrčil +1477027,Chechu Graf +1816952,Joseph Gannon +1346113,Julia Dray +1519554,Tom McCoy +1069245,Thiagarajan Kumararaja +1604769,Müge Ulusoy +1289015,Ben Procter +1658868,Chloe Aubry +139091,Shintarô Ishihara +1098634,Peter Jeschke +1404861,Nick Lowe +230408,Stefano Benni +1424794,Marc Gómez del Moral +1190661,Damian Wyvill +26329,Jan Kališ +1741306,Maria Rezende +70677,Chen Yung-yu +236069,Igor Skofic +19939,Keren Yedaya +1565825,Birgitta Jansson +1189543,Jānis Streičs +1212507,Ali Marie Matheson +1539303,Emiliano Topai +1416,Keiko Niwa +1108471,Wendy Knill +1764178,Justin Knowles +1644258,Joseph Hart Green +1554080,Joseph I. Kane +1764640,Yasser Hosni +1128312,Roy Lee +996554,Miroslav Adamec +1473413,Anna Cardillo +1895722,Jean Helpert +1536228,Leeds Baxter +1128301,Annette Gozon-Abrogar +1411145,David Colenutt +1877768,Frank Botman +1405331,Thomas M. Smalley +1325908,Carol Lavallee +1332311,Nick Clark +79900,Mark Carliner +1298866,Aldo Ciorba +57810,Richard Claus +1113455,Saro Varjabedian +1407747,Virginia McCollam +43924,Michael Neilson +1187819,Matthew Weiner +20232,Bodil Kjærhauge +1825455,Bernie Stern +93288,Sarah Gavron +96166,John Curran +1031768,Max Raymond +412408,Carlo Virzì +1770511,Wayne Szybunka +571459,Masanobu Nomura +1570217,Terry Glass +1446544,Branda S. Miller +1331049,Sushil Gaur +1367128,Julian Cabrera +120193,Dave Milton +83480,Kamal Ahmed +1195437,Steven Sander +1427704,Cho Wai-Kei +1777438,Len Blavatnik +1821921,Kaylee Karlik +1067794,Hayato Date +1335552,Tom Whitehead +1166386,Bill Johnson +1065008,E. Niwas +103234,Charles Martin +73630,Enrico Chroscicki +89296,John Gordillo +32177,Morgan Cox +195915,Cecile Kramer +999554,Ken Trew +1402533,Ziggy Schulte +1728941,Nael Kanj +1367029,Youna De Peretti +1273916,Uwe Spiller +1641226,Sascha Ring +1691489,Calvin Ursin Jr. +57807,Michael Thaler +45031,Raffaele Masciocchi +1780129,Katharina De Malotki +1435638,Pavy Olivarez +1542421,Choi In-gi +931983,Pedro Moreno +1354490,G.P. Taylor +1106977,Patrice Suau +1646558,Jessica Francoeur-Ducharme +142153,Michael Barry +1596518,Anna Vilppunen +1416934,Charlie Harvey +1338159,Anette Czagany +4630,Michael Hammon +1131561,David Aspinall +1608998,Rosie Grant +1378754,Pete Elia +1510438,Ben Vokes +40769,David Mackie +1628431,Josias Tapia +585458,Koji Masutani +1562506,Clinton Cerejo +34927,Tim Maltby +1448768,Manuel Vogt +1176815,Somboon Phopitakkul +1726768,David A. Dwyer +101788,Michael Stokes +1198663,David Walmsley +1500498,Maya Postepski +1401896,James Meikle +1002551,Robert G. Stone +1085283,Daphne Thomas +1017004,Kyle Pennekamp +1037913,Matt Hathcox +1408373,Oliver Tarney +1780158,Mathilda Barchmann +1400501,Avril Besson +1308452,Arch Archambault +132188,Mario Mattoli +1214510,Gareth Roberts +1857037,Edith Morgan +1525820,Anna Guri +1296090,Lee Choon-Hyung +19333,Dick Richards +54360,Marcel Jullian +1083229,Chiang Hsiu-Chiung +29448,Jean LaFleur +1086763,Jason Stewart +22323,Colin Nutley +1122359,Joe Di Maio +1622319,Jon Lawson +73631,Alfonso Sansone +1352426,Bonnie Wiryani +84074,Jay Karas +1127753,Michiel van Erp +19972,Deborah Stoff +1233109,Bob Munroe +1636817,Sascha Ronge +237588,Tex Avery +1775623,Adolfo Oliveira +1106617,Tom Shkolnik +1544505,Amin Athanassious +1168199,Su Turhan +1582125,Pauline Trent +1186918,Wahyuni A. Hadi +1322103,Brian Paul +233527,Josh Edwards +229828,Milena Zdravkovic +1827573,Suza Horvat +1177280,Anatoliy Petrov +1117097,Rick Barnes Sr. +1701496,Ben Bachar +1457041,Dicepticon +1682630,Vittorio Mottini +1808045,Mark Angly +1367800,Evelyne Tissandier +545763,Marlen Khutsiyev +1236222,Sara Murphy +1609027,Robert Moyer +132722,Curtis Crawford +86688,Levan Gabriadze +1332171,Sabyn Mayfield +570494,Harold Robbins +1059050,Kent State +1808363,Stella Fox +1795356,Holly MacConkey +1558976,Kasper Oerlemans +1758588,Chenchonnee Soonthornsaratul +146018,Cherie Bennett +1755278,Ruben Aguirre Barba +1638141,Jakob Seidel +371298,Joe Nimziki +1763425,Rajat K Tangri +1412306,Tineka Becker +1654427,Stella-Madeline Shalita +1746705,Anthony Weeden +1411563,Ryan McGinley +1539809,David Lynch +1735499,Nina Beveridge +1325867,Jonathon Hannon +1050737,Nobuyuki Tohya +1307728,Bill McClelland +1566177,John Orton +1459767,Kirsten Yamaguchi +25139,Norm Waitt +1506366,Les Morgan +36105,Matthias Weber +1583083,Maciej Stern Sterzynski +1585357,Andrea Brown +1621679,Christopher Lance +196823,David Gumpel +118343,Eugene Forde +14769,Colin Green +1634544,Dean Hood +453498,Shane Krause +1377401,Tony Urban +1068377,Paul Angunawela +1636657,Lindsey Weber +1665457,Cheryl Friberg +1558488,Julien Gomez +1097802,Hanno-Heinz Fuchs +1642540,C H Balu +82953,Koretsugu Kurahara +1397719,Stefan Nowicki +1686744,Dick Hamilton +1321936,Chase Jonathan Azimi +233063,Nisar Akhtar +1425882,Kim Robinson +1519326,Justin Paul Miller +1340129,P. S. Prakash +937129,Jean-Xavier de Lestrade +63744,Torun Lian +1392971,Matt von Brock +1154457,Andrew Durham +1618019,Marc Umé +1905416,Hubert Klehr +1204250,Nigel Devenport +1841618,Meaghan Wilbur +1699015,Anend C Chandran +1129412,Nise Davies +1688337,Gisa Radicchi Levi +1084773,Sean Skelding +36239,Peter Indergand +1242113,Sandra Stein +1570076,Shlomi Aviner +102752,Chuck Reeves +963421,Chan Marshall +78983,Steven V. Clark +16362,Tony Cranstoun +1437191,David Larson +564889,Hayato Ikeda +1138337,Bruce Cohn +233062,Mason Nage +1302895,Travis Stevens +139090,Yoshinobu Nishizaki +444458,Cynthia Curnan +5751,Patrick Orth +1066324,Paul Garnes +1833813,simon Allen +1338330,Liz Staub +117686,William L. Nolte +1322447,James Goodwin +1089527,David Zander +1817402,Kate Smith +1834277,Jonas Kuhnemann +1759787,Catherine Lecavalier +1376294,Antony Ellis +1791598,Nils Aré Viken +1096441,Gregory Bernard +1327448,Luan Placks +1700430,Laura Hartrick +1603891,Giorgos Karnavas +1830191,John Sturt +1047243,Nobuyuki Fukumoto +1155145,Sean Gallagher +1332272,Patrick Sheffield +1461039,Dennis Yares +1293611,Ilhyeok Bae +1866324,Patrick Hernandez +78438,Chris Prynoski +57169,Matthias Wendlandt +1044111,János Köporosy +1536651,Marie Sabbah +75996,Michael Chisholm +1049535,Matthew Patrick +575455,Emre Dündar +1757093,María Laura Berch +1472499,Maureen Duff +1571053,Tori Lancaster +1047250,Osamu Fujiishi +228728,Shigeo Tanaka +117773,S. Sylvan Simon +1395220,Alexis Eskandari +1379247,Jez Freedman +144810,Luiz Bolognesi +1302514,Roman Udalov +932317,Małgorzata Szumowska +120709,Lester Ziffren +91629,A. M. Rathnam +1271964,Ranjan Pramod +1320498,Guy Holmes +1099078,Brent Caballero +1886645,Patrick Russ +1474665,Richard Lowell +1860709,Sonia Quemell +97948,Walter Klenhard +557960,Alyona Zvantsova +8512,George Leverett +232832,Andrew Charas +1177048,Pierre Thériault +1207978,Djolof Mbengue +1100328,Kate Brinegar +1404727,Meredith Meyer-Nichols +1141259,Mario Pratesi +94394,Kevin Bocarde +40889,Otello Colangeli +122220,Christian Rein +1023712,Kris Moran +1331164,Kim Leadford +1448318,Camilla Fossen +1053169,Youree Henley +1116049,Gabrielle-Suzanne Barbot de Villeneuve +1408371,Charlo Dalli +1486827,Wendy Bown +1071853,Krysanne Katsoolis +1841564,Ashley Mercado +1407722,Jonah Levy +140244,Manny Rodriguez +1120041,Nicholas T. Proferes +1364224,Anne Barbier +554191,Russell V. Manzatt +1394690,Dewey Wrigley +143998,Malcolm St. Clair +552546,Junji Ito +1332210,Michael Germain +1104837,Adam Leon +938837,Alicia Sams +53616,Rajesh Roshan +25509,Jörg Wagner +1023141,Brent Stiefel +48913,Christian Eisele +178998,Jack Regas +1481474,Izrael Moreno +1113721,Sudhakar Bokade +1371204,Maartje Wevers +1448828,Rando Schmook +229715,Jean Michel Jarre +1443611,Gee Malik Linton +1418415,Lisa Soper +1018752,Eric J. Crown +53847,Özgür Yildirim +149098,Kenneth Muse +1521185,Craig Branham +1330205,Lisa Shamata +1484757,Gary Fluxgold +1353673,Sayed Kashua +71575,Kieran McGuigan +84577,Jessica Kardos +1351628,Kôjiro Kawasaki +1630389,Tony Ye +943403,Harry Baweja +1294606,Park Bum-shin +560293,Lionello De Felice +6247,Leo Bei +1421647,Ian Wilson +1143761,Christian Siebenherz +69007,Beryl Vertue +570325,Richard Bellis +1522728,Slavko Spionjak +1646477,Marianne Bobet +1312279,Martin Brinkler +562673,Cisco Henson +1469046,Bernadette Ibbetson +1428874,Clint Dodd +1609176,Catherine Canaes +1039639,Todd Baird +1308741,Shaun Redick +1449995,Patrick Hoeschen +275514,Krzysztof Lang +1859983,Hyun Bo Park +1428268,Jillian Longnecker +1364881,Patrick Osborne +852098,Olle Wirenhed +844182,Sanjay Shivalkar +27756,Robin Cowie +1331163,Sam Esmail +1008508,Gianni Zampagni +1288398,Shannon Campbell +1378767,Keith Bunin +1024907,Alexander O'Neal +1535123,John Moio +67218,Louis Cha +221701,Sheila Curran Bernard +1274525,Justin Marshall Elias +1215026,Marita Grabiak +1740777,Anna Benbow +1492923,Hallie Rubenhold +1565843,Annbritt Kaptein +1512324,Isti Madarász +1465523,Rotem Yaron +1332308,Charlie Sadoff +232060,Steven Keifer +50551,Paul Soulignac +593026,Vanraj Bhatia +1111074,Paul Billing +56187,Steve Porcaro +48453,Bill Matlock +1132121,Frank DeWar +73412,Ryan Carroll +75558,Michael Faranda +1535456,Edgar Anderson +1196195,Geminiano Pineda +1817865,Pauline Gygax +240923,Amedeo Giomini +1653251,Nicolás Osorio +48684,Martin Rauhaus +133235,David Eady +1400527,Katherine Tibbetts +1412595,Jamie Jones +1166276,Rui Poças +1707689,Alejandro Damiani +136345,Sean Byrne +1707469,Sajeev Kapoor +1727206,Kara Siebein +1542496,Paule Zadjermann +39899,Halina Daugird +1576477,Eric Romero +1527913,Karen Maxwell +221940,Carolina Jabor +145837,Paul Sloane +1303425,Ghevond Andreasyan +1093640,Nate Bolotin +229285,Alicia Scherson +1193570,Andrew +40713,Rob Inch +1708048,Suzie Whyte +1550758,Laurent Benhamo +1618807,Geoffroy Beauchemin +1664403,Chris O'Brien +1412624,Sunil Wijeratne +1036389,András Nagy +1401318,James Wallace +1704982,Brett Jones +46353,Daniel Licht +1712791,Sandra Alexandre +1395030,Alison Evans +132177,Kim Dae-seung +54171,Jérôme Seydoux +1080277,Kazui Nihonmatsu +1772937,M.A. Ripps +1123782,Craig Davidson +16227,Ruth Toma +1543529,Amy Saetang +1412136,Stig Tvenge +1779173,Javed Akthar +135334,Chris Parkinson +570127,Nenad Vukadinović +981313,Roger Gual +1347995,Ross Perkin +1400942,Mairzee Almas +1468070,Henry Russell Bergstein +1294110,Jaejin Lee +67356,Reed Morano +1395683,Shawn Greene +1308306,John B. Aronson +1606173,Thomas English +1417172,Nikki Brannan +584053,Hsiao Yeh +1805397,Kim Gyeong-mi +1856697,Douglas Rath +62667,Andrew Berry +1324921,Dermot Diskin +1347999,Maciek Malish +1392977,Mark A. James +1345260,Dobrinka Stamenkova +1043312,Kim Ki-young +1667105,Tony Joy +1468572,Alex Lemke +1428928,Dan Whitty +121409,Phil Dunham +986015,Paul China +1023809,Volker Bertelmann +1518775,Andrew Chan +1088724,Ernst Gaman +1616043,Fred Brown +1156299,Rita Rabassini +1351473,Mike Seiman +59434,Franz Hinterbrandner +1332623,Harriet Zucker +1768802,Vivek B Agrawal +73736,Ralf Krause +54206,Jeremy Burdek +1179839,Maki Takenouchi +1074053,Alwyn Kumst +25020,Rita Ciccozzi +1725770,Thomas Dane Wagener +1609854,Theo le Roux Preis +1499904,Jay Boivin +1853682,Philippe Haudiquet +1603647,Mehmet Subatan +223416,Leonid Desyatnikov +1818059,Brigitte Green +1779408,Diandra Douglas +1715748,Andrew Wheeler +1313055,Jennifré DuMont +1527436,Alexandra McGee +145795,Noah Miller +1553532,Cassandra Del Viscio +72954,Paula Devonshire +1773044,Julie Wilde +937703,Lennox Wiseley +1692504,Kiki Byrne +1455499,Regis Harrington +1267019,Couni Young +1162866,Bruce Emery +80878,Nikos Zapatinas +1574072,Brooke Dibble +1128264,Ra-Ana Gilani +1646135,R S Raja +1098625,Alex Tong +1117980,Rezo Cheishvili +1574104,Beren Sowter-Croll +32868,Erik Canuel +66250,James Larkin +1318341,Cordula Weisz +1286587,Alvaro Baquero Benedetti +147775,Uğur Yücel +1326113,Carrie Grace +1829835,Shawn White +1800063,Mark Lawless +1545979,Ankit Gokani +1608318,Arkady Ukupnik +1041615,Ralf Hildenbeutel +147040,Nicolas Cuche +1322108,Mark Webb +37127,Victor Hugo +1676937,Jori Sjöroos +114598,Jeff Van Wie +580271,Chan Kiu-Ying +19603,Takeshi Imamura +1023493,Eileen Mack Knight +1463489,Alexis Forni +1540244,Gary J. Brown +48170,Thomas Benesch +228834,Numa Perrier +563408,Andrew Witmer +1879683,Sarah Niznik +18087,Petr Hlinomaz +136900,Paris Pickard +1368692,Alexander Reumers +1848457,Alexandra Johnstone +591546,Elias Koskimies +1140581,Evan Leong +1847624,Julien Rouch +98744,Mark Vadik +125525,Wulan Tana +42625,Bruce Langhorne +1657545,Mauro Uzzeo +40147,Robert W. Christiansen +237299,Miyako Araki +1293128,Amy B. Ancona +1652364,Doesjka van Hoogdalem +1309895,Jessie Mizrahi +78972,Joe Nicolo +1449665,David Osit +1128094,Ibon Cormenzana +154591,Dale Fabrigar +120776,Herbert I. Leeds +1093493,Lou Simon +1460044,Joe Gruberman +22519,Lothar H. Krischer +1049658,Giorgio Prosperi +63176,August White +20151,N. Richard Nash +31336,Hugo Fregonese +1206152,Rey Reyes +1357339,Peter Mullen +9740,René Clément +1373056,Lisa Nishimura +1642008,Dipika Lal +966787,María Secco +1377461,Carsten Kurpanek +1193910,Chadwick Struck +1708054,Visnja Prtenjaca +1760133,Dan Statler +1171103,Francis Marion Crawford +93397,Anders Jacobsson +1031110,Helmen Ilmer +1712243,Åsmund Kjos Fjell +236592,Michael Goi +1539304,Victor Glushchenko +134237,Ray Martin +1536194,Benoit Leduc +998434,Page Ostrow +150779,Yûsuke Yamada +1423832,Sarah Jeanne Mgeni +1555024,Leonard A. Engel +89508,Jack Broder +1536192,Eric Parenteau +1669170,Diluxshan +1317093,Giovanni Lodigiani +58673,Hirohide Abe +1176286,Giulio Coltellacci +119194,Yannick Dahan +1363344,Alexander Krumov +52137,Leonardo Rodríguez Solís +1746428,Mal Booth +239198,Edouard Niermans +1077558,Dongha Lee +1866065,Bilbo Calvez +33724,Giorgio Ferroni +1434902,Antonio Di Trapani +562946,Garry Waller +1393454,Poland Perkins +1660985,Stuart T. Maschwitz +22640,David W. Foster +1108826,Lori Madrid +130750,Peter Askin +1805979,Joonatan Hietanen +1481505,Kaspar Kallas +14590,Enrico Sabbatini +1537115,Adrienne Doucette +84907,Kim Dong-won +1363794,Gonzalo Ladines +1039206,Paul Hartwig +1559280,Frank Wade +1184460,Motoi Takahashi +1305988,Aleksander Khramtsov +56229,Jean-François Hensgens +1817864,Armelle Glorennec +63354,Kieran Corrigan +1509637,Gloria Peñaranda +1401762,Michael Brown +1465888,Hemant Kumar Dixit +1120817,Edwin Thanhouser +1421191,Daniel López +1583552,Stu Turner +1473445,Laura Wiest +1410257,Veronica Rodarte +1659284,David Miller +8740,Aaby Wedin +1704837,Frederique Barrera +1333149,Michelle Kearns +1037907,Michael Greenfield +1431740,Michael Stancyk +1123791,Paul Røed +147053,Michael Frislev +64495,Dora Ng +1262363,Kevin Lane +81297,Mark Atkins +1460388,Andrey Galanov +914288,Paul Palo +1371042,Brittany Morrissey +1377521,Ian McDonald +1399672,Max Adams +1601638,Yong Ok Lee +1003951,Mangesh Dhakade +96360,Brigid Olen +62577,Stephen R. Brown +1761138,Joe Savva +1662725,Shaina Holmes +1642520,Walter Schmidt +1581045,Michael Carnick +1417662,Claire Behnke +1658870,William DiCenso +1747983,Mi Young +56195,Ole Christian Madsen +457566,John Beck +1569816,Scott Moran +1537529,Rodolfo Marquez +1757622,Mark D. Spain +1351731,Erik Aavatsmark +1392940,Walter New +1063951,Mireya Guanipa +1188274,Mark Holder +113307,Michael Finch +1677460,Ben Stillman +211173,Karim Traïdia +932873,Станислав Ростоцкий +74426,Matthew Perniciaro +1059732,Wen-ge Xiao +1401003,Bernard Hunt +998858,Salli Newman +148801,Olga Printzlau +38270,Robin Bissell +1594183,Valerie Butler +75870,Ron McLeod +1331697,Ghost Gypsy +1001625,Elise Ancion +1705467,Manik Dawar +1618896,Luis Antonio Landrau +1735095,Tushar Kalia +1571121,Balázs Novák +1417838,Lindsay Kouri +1099941,Leigh Broadbent +1577213,Eric Petey +1350254,Dian Hristov +1757495,Steve Mckoy +1429361,Kiril Valchanov +937415,Adam Recht +1635798,Oddfrid Ropstad +1413898,Chris Bridges +225005,Mohamed Al Daradji +120631,Claudio Bonivento +1451772,Paul Norling +1755130,Matteo Fadda +1419090,Elizabeth Cecchini +31048,Dennis Murphy +1881541,Annika Rahner +1658881,Phil Brennan +41678,Matteo De Cosmo +1813932,Katharina Hingst +138137,Garry Michael White +103527,Francisco Fraile +1067113,Xu Wei +1169000,Haim Pekelis +202179,Peter R. Newman +1369165,Marie Clark +70187,Rudolf Wischert +1301334,Danny Stevens Millefiorini +1193841,Mevlut Akkaya +1815935,Alvise Avati +1197128,Aislinn Hunter +1652074,Isaac Louis Garcia +1741049,Jean Tsien +1780172,Thomas Schönbrunn +1463275,Linda Traxler +1347623,Esteban Roel +1439425,Lisa Baro +1042807,Theuns De Wet +1551892,Hugh Brompton +193965,Andy Wood +1093240,Winston Sharples +1903929,Praveen Kilaru +1544655,Monica Tatu +1814531,Mark Server +1334905,Marco Antonio Cury +215423,Lisa Mulcahy +56512,Tarsem Singh +1821413,Lucie Bolze +117840,Abigail Disney +1286586,Lindsay Seyffert +1208810,Alain Gómez +1411725,Brody Ratsoy +1399671,Porter Emerson Browne +606084,Max Fleischer +1111685,Dennis Bots +1208827,Izzy Quevenard +1533533,Josue Clotaire Fleurimond +1267833,Christoph Strothjohann +1195184,Giorgio Scali +61681,Glen Hartford +1516841,Carter Logan +1643879,Pilar Tavera +1686898,Clayton Woodhull +8968,Mike Oldfield +55954,Rod Dean +1408389,Sara Deane +81984,Javed Akhtar +1642173,Claus Dzalakowski +1544368,Gresham Lochner +1721853,Walton Dornisch +1825882,Jeff Brockton +1326090,Elizabeth Zdansky +1402101,Helene Lenszner +1596388,Philipp Fedorov +1642556,Panny Wang +92199,Mark David Perry +995353,Bernie Gewissler +1763908,R.C. Walker +1775563,James Brown +551884,Danny Harris +1133287,Jennifer Fairweather +544637,Joël Champetier +60630,John Udell +1614893,Michael O'Shea +1115964,Josh Lieberman +132936,Jun'ichi Kikuchi +565140,Krishna Levy +1503518,Jim Kacmarcik +120133,Jack Swinburne +23594,Amy Marie Beauchamp +77950,Scott Neustadter +1821790,Doug Hadders +1616473,Caitlin Tartaro +53269,Johanna Stuttmann +81159,Christian Molina +1412986,David Beavis +1455496,Eddie Braun +143622,Aleksandr Atanesyan +82995,Milan Trenc +69937,Jack W. Holmes +1380898,Rowena Wilkinson +1029327,Sumio Ohmori +1646566,Jose Luis Gomez +1095303,Christos V. Konstantakopoulos +544085,Carlo Montuori +1208811,Luis Daniel González +1327246,Claire Blocker +1903918,Peter Pelisek +1638562,Austin Aplin +34204,Karen DeWolf +1760527,Sandra O'Brien +1434945,Andrew McGeorge +1650624,Ilan Katz +1865508,Deborah Lilly +1759735,Sue Chipperton +36922,Thomas Freudenthal +1361744,Zoltan Vidor +1176813,Chanajai Tonsaithong +1151866,Clémence Stoloff +140027,János Szász +960476,Ted Kroeber +1815247,Sabereh Kashi +1632800,Rosa Costanza +1465947,Adam Scrivener +8361,Plato Fountidakis +1330218,Matthew Davis Walker +87673,Beth McCarthy-Miller +1083254,Ben Evans +1434401,Alexander Bickenbach +1510762,Barbara Peter +1623713,Jacques Gelman +1680442,Chris Woody McElroy +1402983,Stefano Marinoni +1425373,Simon Harkom +102866,Rudy Rupak +1709794,Merc Arceneaux +1514991,Miguel Markin +227110,Matt Gundy +223853,Vikramaditya Motwane +1297488,Allan Ungar +36154,Jean Levine +27072,Lutz Reitemeier +928725,Beatriz Carvalho +1460858,Jeff Davies +1530003,Noboru Itô +1354695,Oklahoma Ward +1448111,Seth Clark +1846916,Kelly Reilly +108999,Philip A. Waxman +43777,Roy Huggins +1554936,Chris Barnes +143676,Georgi Natanson +236013,Akan Satayev +1412715,Abhinav Sah +109727,William H. Wright +1384360,Ann Smart +1283931,Michael Fleming +1297465,Eric Dupont +666935,Barry Avrich +1031254,Katerina Slantcheva +1416051,Gerry Long +1791600,Inger Elise Holm +1155287,Faozan Rizal +41403,Romuald Korczak +74400,John Nordling +1761919,Pirkko Kontkanen +220808,Anne Giafferi +1401156,Shara Storch +229020,Jerome Chodorov +1649193,Roger Goula +1636524,Josh Vamos +285104,Nabil Ayouch +1526935,John Bonafede +1859987,Terri Watanabe +1575354,Phoebe Street +1155119,Eddie Mikasa +1619917,P. Jennifer Dana +1479532,Jaime Visedo +235398,Gianni Arduini +1171342,Anand C. Chandran +1276793,Oorutaichi +142594,Les Blank +50269,John H. Kafka +1118876,Magne Lyngner +1409532,Keith Fraase +1375920,J. Christopher Campbell +1578015,Caitlin Spiller +1194302,Brian Norgard +68374,Jean Bauer +1096371,Jeff Hardwick +1640821,Alison Beard +99472,Roberto Natale +1473813,Tony Osso +103112,Stelvio Massi +1568158,Rachid Boudjedra +1475364,Richard Aubrey +115322,Patrick O'Dell +1496450,Ilya Chizhikov +119356,Antonello Grimaldi +1771714,Laura Greenman Heine +1167451,Dail Ambler +55484,Chris Coen +1372509,Mayera Abeita +1327138,Paul Booth +1658464,Haroon Saleem +1188501,Bert Marcus +81166,Charles Kenyon +1581515,Dan Sexton +1665916,Laurens Drillich +1462001,Andrew Jennings +1695692,Russell Brady +1153031,Adrian Cranage +1481515,Olivier Goldstaub +1305790,Rob Bullock +71346,Michael Bortman +990115,Natasha Noor +1828346,Laura Menheere +1126812,Larry Osborne +1324753,Renato Ventura +1833103,Nikola D. Nikolov +143146,Jaime Silva Filho +1447545,James Galatas +963669,Shannon McIntosh +110702,B. Lenin +870734,Frank Barrera +1603473,Cameron Hilts +1661906,Joshua Walsh +548374,Hiroyuki Hoshiyama +1209785,Dan Hartley +1551813,Eddie Murphy +147483,Melissa Carter +1144823,Terence Heuston +1397724,Kimberly Leitz +988933,Jack Bohrer +1558087,Eric Roberts +935644,Michalis Repas +1827364,Roy Bogy +16404,Bernardo Trujillo +550896,Anuradha Mehta +262925,Gleb Panfilov +1374458,Charles Autrand +1597025,Kiril Trayanov +120669,Karl Mueller +1082648,Kingsley Amis +128612,Hans Herbots +40473,Hannah Maag +1366431,Thomas Willmann +1842006,Anne Carson +1302082,David F. Sandberg +66572,Matthew Price +1294788,이용범 +1578598,Paul Bertino +1222374,Jamie Payne +1676434,Supriya Kelkar +1475896,Ola Maslik +67373,William Cottrell +84633,Brian Klein +1251101,Sean Szeles +153772,Herbert B. Leonard +1393363,Adi Visser +62954,Paul Englishby +1556732,Agatha A. Nitecka +1874694,Martin Pedersen +1771612,Jerry Lasky +965009,Cristobal Valderrama +1570581,Kate Yablunovsky +1119833,Claire Jennings +1476167,Alan Scott Neal +1051327,Alice Winocour +1598657,Marc Crehuet +1468540,Kristen Ficara +1319123,Shyama Gero +105985,Charles Gary Allison +593024,Renu Saluja +32569,Kenneth Harper +1499132,Federico Canudas +1428904,Liana Jackson +556084,Simone North +1088221,Gunnar Lundin +1185041,Leslie Delano +552566,Neal Marshall +112133,Paula Markovitch +12301,Irving Block +1643414,Julia Wilson Dickson +88647,Richard V. Heermance +1393452,Katrina Schiller +1158282,Sophie Chiarello +1311777,Don Allan +1034663,James Chankin +1003920,Bruna Parmesan +1592195,Tripp Rhame +140815,James Parrott +1215728,Amy Wolfram +132574,John McPartland +1332524,Ren Rohling +6745,Richard Henderson +27266,David Smith +592439,Ziraldo +1291070,Isidoro Broggi +150430,David Obermeyer +1903932,Matthew Pellar +1468916,Colleen Marchand +1324552,Martin Schlecht +1721878,Luke Owen +1780181,Verena Graf +1447617,Crystal Hadcroft +1713050,Zachary Popovsky +92471,Kelvin McIlwain +1601818,Frantisek Novák +37971,Albert Benitz +1102139,Jason D. McGatlin +52729,Sebastian Edschmid +1482617,Guillem Javier +63580,Walter Wong +1544511,Edvard van 't Wout +1287613,Rachel Winter +228943,Holger Haase +1258313,Antony Thomas +1662137,Dave Pultz +1754588,Anastazja Davis +1265309,Staffan Engström +1521080,Charlese Antoinette Jones +1063739,Rasool Ellore +104842,Chris Harris +1373892,Giorgos Georgopoulos +958488,Jacqueline West +1652034,Chad Fitz +65029,John Clifford White +558922,Mike Behrman +1326407,Jonny Pray +1475411,Tomas Lagermand Lundme +68451,Aaron Schröder +1126053,Max Lang +1167489,Kiran Pallegadda +230129,Al Magallon +1417858,David Dean Ebert +228177,William Kaufman +1725762,Eric Blackburn +11690,Ondřej Soukup +1652403,Ralph McCloud +1138333,Brandon Huus +1011113,Peter Fruchtman +87150,Bob Roth +53391,Victoria Pearman +1187909,Joe Quesada +1874685,Sara Namer +1682256,José Maria Vaz da Silva +1805968,Henri Tani +1635000,Michelle Verdi +1884741,Charlie Galea +1750082,Benedict Taylor +1875911,Isabel Favila +579821,Miguel Delibes +69178,Ole Steen Nielsen +1293600,Hongeun Kim +135118,Synnøve Hørsdal +1680438,Joseph Aliberti +1338973,Eilam Hoffman +1060230,Jesús Grovas +1135311,Ula Schliemann +1550765,Polly Ing +8357,Shane Cardwell +936744,Roop Kumar Rathod +1878501,Mat Campbell +1488206,Moira McMahon +1479513,Anna Bowers +938575,Timothy Mannion +166244,Blanche Hanalis +1335494,Jonathan Rosenblit +1853899,K. Alden +1028664,Eddy Géradon-Luyckx +1392897,James Philpott +1251309,Phil Dolling +1478019,Jan-Michael Losada +590449,Alexander Pushkin +1600781,Oriana Kamberi +1568548,Nigel Hyams +1446127,Youki Yamamoto +1585733,Pawel Olas +1555810,Nils Widboom +1118963,Stuart Cabb +1449757,Curru Garabal +17907,Lowell J. Farrell +1323126,Leon van der Merwe +56461,Kevin J. Messick +1813222,Trish Malone +92743,Jamin Winans +1401134,Clark Crawford +8048,Sanjay Patel +1641982,Steve Sich +1376727,Mark Caballero +1053847,Zoran Maksimović +1465613,Perry Blackshear +1293003,Waldo Warshaw +67948,Franco Verucci +1642586,Mike Lee +590954,Richard de Wesse +1339212,Gary Coates +1547492,Hirofumi Satô +118369,Ernesto Díaz Espinoza +572354,Antonio Paso +110522,Lincoln Ruchti +1797513,Jo Clark +1287353,Jerrad Gray +100746,Laurent Brandenbourger +1330558,Marina Abramyan +1804229,Kiril Georgiev +130459,Tôya Satô +1574318,Ersin Gok +1440405,Ann-Marie Blommaert +1701266,François Balcaen +86405,Allen Rivkin +1252351,Lisa Richardson +1494370,Dave Preston +1481480,Lorena Moriconi +1729096,Natalie Taylor Smith +1420173,Massimo Schiavon +1117112,Sheila Olson +1574097,Katrin Arndt +1340090,Amy C. Weinberg +1398934,Jaromir Sedina +1519840,Jo Dixon +1429336,Tsukasa IKegami +937544,Philip J. Cook +1184369,Francisco Franco +1380087,Chad Eshbaugh +1400569,Aleksey Kazakov +1160234,Antonio Areta +1857579,Cortés Lindsey Sara +1089147,Per Gunvall +1322509,Leslie Park +1040897,Iliana Nikolic +110225,Rajkumar Barjatya +46644,Erwin C. Dietrich +1357757,Guillermo Prieto +1320896,T. Fikret Uçak +1479528,Marco La Torre +1604537,Betty Baugh +1599798,Amitabh Bhattacharya +76462,Richard Schenkman +1474174,John Molli +1707977,Courtney Jane Johnston +1313919,Judith Verno +1398613,Tuomas Skopa +90420,Kristoffer Newsom +1817518,Hirofumi Sugawara +1001393,Jinx Godfrey +1732150,Thorsten Thielow +1622325,Dmytro Kolesnyk +1372425,Matt Hoffman +21437,Andre Schneider +1542267,Francisco Santos +980175,Sumitra Bhave +1891015,Benoît Brière +138984,Conan Castro Jr. +1440269,Michael Pescasio +1068143,Samuli Valkama +16136,Hiroyuki Kitakubo +1466661,David Harrower +1622341,André Freitas +1190971,James Brown +1594154,Sam Bescoff +1625944,Evgeniy Kashkevich +1442576,Eric Kranzler +1414821,Elina Ternyaeva +1551909,Zave Jackson +1457948,Jason Madigan +1360624,Kostas Sfikas +1829971,Omar Morsy +1884080,Agustín Serna G. Lavín +57104,Nik Reich +1445206,Paul Colline +1376948,Devendra Murdeshwar +1742973,Paul McNamara +992658,Jeonghwan Kim +88624,Mark Turosz +1619362,Chuck Voelter +109852,Herb Meadow +1711832,Tashana Landray +1075809,Charles Saunders +1244654,Gert Kaspar Müntefering +96909,Denis Sanders +1291347,Rudy Joffroy +1591750,Sue Tebbutt +1780163,Alex Endl +1849509,Jonathan Evan Grant +1410601,Laurent Héritier +121829,Barnet Kellman +11940,Uschi Reich +108430,Bill Wilson +1161464,Ben van Lieshout +1286562,Lauren Bencomo +34113,Dwight Caldwell +1314833,Dave Tedder +1644261,Noémie Jacques +1553092,Robert Bolesto +86319,Susan Chan +1327017,Vasiliy Kutsenko +1543278,Oriana Oppice +1279784,Jess Stroup +132364,Ricardo de Montreuil +1607917,Brent Crowell +1318816,Gina Gardini +1796882,M.C. Levee +1311155,Kim Gwang-Su +83884,Börje Hansson +1383283,Ulysses Guidotti +1746610,Gus Comegys +32940,Yves Boisset +34800,Rudolph C. Flothow +1570574,Ted Samuels +1286912,Paola Torres +1251070,Matt Price +1618811,Caroline Audebert +1074399,David Azcano +1481510,Nadia Androchuk +1106883,Levan Bakhia +1098545,Hanjirô Nakazawa +224684,Michael Granberry +1599007,Agne Rimkute +1403398,T.J. McCall +150047,Glenn Chaika +1087513,Lisa Willinger +238897,Alla Pugatcheva +38169,Jacques-Eric Strauss +1410182,Dorka Nieradzik +558637,Victor Nieuwenhuijs +1003906,Günter Ebert +1453536,Andy Schuhler +213384,Milan Živković +957146,Vera Miller +1582733,Iván Palomino +1037761,Robert Shepyer +1395390,Akio Kazumi +1378154,Richard Michael +1468092,Shrihari Sathe +228286,Duncan McLachlan +1527662,Mikaela Wohl +1792351,Grant MacAllister +1713205,Alicja Jasina +928007,Cecilia Torquato +41347,Massimo Zeri +1578168,René Marquéz +1164927,Masahiko Otsuka +1504644,Corey Asraf +1333944,Adina Bucur +589543,Raimo O. Niemi +1652816,Park Young-Soo +1451391,Johnny Murphy +1222320,Thomas Pugsley +1542307,Bidzina Chkhaidze +1583625,John Bohlinger +1159944,Dean Jones +51728,Gavin Lambert +1277528,Shaun Lynch +63059,Will Gilbey +95835,Eric A. Norris +114479,Tim Headington +956818,Stephen Dunn +1318185,Lauren Thomas +1838611,Stephen Ronald Francis +1094531,Gaspare Di Maio +1503508,Hiroyuki Seshita +1124968,Rohit Kulkarni +1636860,Victor Bruno +1451490,Marco Mazzei +64399,Iwona Sellers +132588,Richard Best +1479129,Barry J. Weitz +1859975,Steve Cypreos +189943,David Feiss +38781,Andrew Plain +941573,Arthur R. Dubs +23783,Heather Plott +1841577,Rachael Gillson +199441,Christine Berardo +1356140,Rodrigo Pulpeiro +1452050,Daniel Sternbaum +33218,Robert Jones +971116,Stina Lunde +563356,Katell Quillévéré +1815609,Steven Ondrejech +75562,Carola Richter +1533186,Blake Calhoun +1776154,Joel Burch +1184450,Sut Jhally +1885110,Filipe Raposo +1587448,Robert Hickman +50633,Eike Hosenfeld +1635212,Jared Losano +1739844,Jackson Rambo +1394411,D.J. Shea +1425972,Ryan Trygstad +51899,Elena Ruiz +1276565,Andrea Iervolino +182755,Walter Kempley +1400529,Tina Anderson +30101,Robert Lees +1173554,Henry Harris +1097224,Cody Peck +44571,David Chudnow +1419333,Jonathan Mahler +1101389,Kaspar Jancis +1324239,Tim Stanzel +1643332,Min-woo Jeong +132522,Tomoharu Ozaki +1257117,Mari Okada +1458987,Tony Ward +1573681,Paul Bijpost +1483807,Rémi Chayé +1402895,Grant Everett +81273,Yasuzô Masumura +1169304,Eli Dorsey +1644254,Emily Pead +1184461,Yasuhiro Yoshikawa +1372412,Kirby Jinnah +1132463,Kimihiko Nakamura +1419514,Kim Ji-su +1343946,Jon D. Wagner +1619439,Manuel Alcayde +876106,Sandro Aguilar +1423842,Stephen Lebed +1635224,Tyler Witte +1243962,Tatsuyuki Nagai +189201,Tony Cavanaugh +1719415,Ron Finn +1110363,Ray C. Smallwood +929047,Catalina Oliva +116372,Kåre Bergstrøm +1461483,Alex Berry +1577964,Yannick Giaume +109199,James Mitchell +1097195,Ashli Pingry +110523,John Panichello +75874,Cheryl Marion +93991,Soi Cheang +1302023,Amy Gavin +1199753,Motokichi Hasegawa +1454384,Daniel Grove +1601453,Mary Marmara +1578872,Chaz Lyon +59008,Robert Velo +1042643,Sze-To On +1810620,Ludvik Marecek +1315090,Randall Lynch +1870214,Tim McCann +1451266,Andy Bialk +54178,Franck Desmoulins +1452998,Matt Weaver +1298879,Jonathan Rego +1583222,Paul Goguen +1797190,Thomas Collier +59392,Charles Salmon +1416957,Kriss Landin +1783012,Steven Young +1867518,Stephanie June Johnson +556839,Zeki Ökten +1583176,Cheryl G. Smith +1062745,Louise Narboni +57052,Feng-Chyt Jiang +1302521,Tony Marguiles +1636696,Paul Aftanas +1785021,Paras Maan +1012032,Amber Horn +1220905,Ernie Altbacker +59832,Hal E. Chester +1228498,Stephen Kronish +1458712,Ruby Katilius +240016,Chang You-jeong +1439376,Edward Oleschak +99236,William Langlois +1227489,Anthony Read +1152398,Remco Kobus +99518,J.V. Rhemo +1540344,Mickey Kirsten +64919,Megan Martin +138902,Caaren Hulme +1066925,Enzo Rispoli +1721879,Jeff Brue +1797213,Maude Rivard +1294784,Yayoi Ogawa +1547767,Adrienne Biddle +1125682,Lana Veenker +1465736,Jake Gelyana +559969,Pyotr Tochilin +1460497,Noe Garcia +1510441,Jae-Hyeok Lee +14566,Alexander Mackendrick +1034358,Nancy Grant +1437269,Oriol Busquets +1491848,Chris Navarro +1304457,Edui Tijerina +79272,Ella Lemhagen +1084403,Rein Raamat +1411843,Christopher Raymond +1825781,James Parnell +22319,Yves Deschamps +1153036,Stefanie Kromrei +1063311,Jared Moshe +19031,Geza Decsy +6042,Daniel Pearl +1484530,Jillian Medoff +1304136,Joe Colleran +1524546,Anne Trytko +137548,Mart Taniel +1460741,Dawn Mattocks +55592,Peter Graham +1104932,Sverrir Kristjánsson +1621801,Karl Janisse +1402247,Selim Azzazi +1463277,Crystal Wells +1650335,Morgan Pollitt +231811,Lea Schmidbauer +67958,Hans Prescher +119152,John Solomon +118378,Gina Aguad +54197,Pierre Cottereau +1031196,Jari Kokko +1609399,Edward Beyer +103452,Henrique Goldman +590922,Hugh Drumm +1407350,Carl Mastio +1544898,Alexander Dannenberg +8209,Quirin Berg +18397,Andrea Schumacher +524146,Rex Beach +1378720,Silke Guglielmo +1032968,Angelino Fons +1075514,Jeff Preiss +1320300,Stephen Alix +1321938,Temma Hankin +1304290,Richard Weager +60733,Rich Burns +1186095,Pierre Godeau +223905,Anna Matison +1758591,Kanung Damkaew +291251,Michael Melski +1194137,Zach Parrish +60267,Aaron Parry +133791,Adrian Cruz +1318892,Emily Newby +34306,Bernhard Jasper +1622450,Yasushi Miyata +554162,Fujio Morita +1156302,Patrizia Chericoni +1391792,Harrison Kordestani +22327,Perry Schaffer +1848900,Firmino Holanda +1044114,Gary Hoffman +90693,Lea Carlson +1654408,Simon Franglen +1124448,Wajdi Mouawad +1322547,Leonor Guterres +1001976,Christopher Hatton +1810675,John Jacob Payyapalli +1402475,Traci E. Smithe +1474173,Josh Hetzler +253544,Edgar Selwyn +43724,Tatiana Casini Morigi +1263794,Gwen Pluim +1513960,Max van Essche +1765671,Matthew Rebula +76972,Suzie Harman +960380,Manuel Teil +1668295,Erica Hayes +572593,Nimet Atasoy +1670532,Hans van der Marck +1840864,Danny Gabai +19475,Richard LaSalle +1164928,Naoki Tsutsumi +1726763,Laura Zech +1504744,Sue Wyatt +1849147,Kélig Péron +41334,Tony Noble +1405260,Jenny Sandersson +1360093,Tim Croshaw +1654518,Nathan Stone +1623701,Diego Pajuelo +1491843,Ruth Reches +113667,Meghna Gulzar +1309872,Terri De Haan +1516532,Alexia Lee +5550,Ann Peacock +1732084,Kathryn Moss +1106975,Jean-François Beauchemin +1180756,Nikita Kurikhin +1608773,Rachel Ambelang +1583302,Richard Jake Jacobson +1660931,Saburô Iwai +94208,Vincent Bal +1286560,Jennifer Giron +98669,John Lechago +1409704,Lucie Paquet +1046764,Adam Peters +116143,Dibakar Banerjee +1637924,Mauricio Betancur +16437,Kiko de la Rica +969551,Alastair Siddons +1542454,Yûji Dôgen +1475254,Hosni Al Baqa +1394116,Slemer Karolina +1563654,Elisha Gruer +91773,Lea Yang +35655,Bella Halben +1199518,Fro Rojas +557676,Albert Kuipers +1113579,Malin Yhr +1760587,Patrick Mao Huang +1515635,Péter Behan +1155650,Trevor Drinkwater +1669066,Mou Tun-fei +1016135,Poull Brien +1152354,Jean-Marc Tran Tan Ba +1551774,Celebrity Booker +1515075,Lorna Johnson +1300498,Yoshio Ishizuka +1728356,Nicole Lobell +1036470,Julien Boivent +1462038,Greg Strasz +1309923,Rain Valdez +1458731,Anna Maria Sambucco +1584360,Joe Heinen +1553970,Jodi Mancuso +1006866,Joy Gorman +196995,Elliott Scott +1649333,Teresa Barska +1670918,Pam Landis +1485682,Matt Cavanaugh +1417884,Cassiopeia Smith +24668,Gianni Quaranta +73621,Tom Calloway +1345265,Zarko Karatanchev +20014,Sebastian Soukup +132591,Damian Ganczewski +1330951,Nikos Evdemon +1815652,Dana Wilentz +1773263,Larry Blanchette +70532,Simon Brooks +254996,Serge Sandberg +106021,Jim Torres +1428565,James Layton +1098039,Maurice Fabre +48310,Catherine Vandeleene +1376329,Kurt Barthel +1449256,Greg Chandler +222357,Matt Maddox +1543221,Michael Asiman +1093354,Leah Jaunzems +132614,Brendon Durey +557668,Jan Dop +1553452,Henry du Rand +983358,Julio Suárez +1553963,Justus McLarty +30333,Richard Fell +1452556,Jeong Jaehoon +184483,Allan Harmon +1204330,E. David Cosier +149118,Herbert O. Yardley +1830935,John S. Perry +94916,Phil Flores +1830182,Martin Kelly +1494288,Mari Wilson +139138,Jody Lee Lipes +1835192,Brentyn Krekoski +79115,Peter Zakharov +264013,Aleksandr Muratov +111430,John Cresswell +1608984,Elliott Eisman +1431100,William Bartlett +1635315,Matthew Eldridge +1828340,Devin Myler +1728935,Waleed Al-Ghafari +1528016,Bridget Rafferty +1907220,Benedikt Örn Árnason +1203578,David Kern +1574604,Elina Psikou +1819163,Jay Aroesty +204018,Gary Goldstein +1198354,Sean Gallimore +1425756,Ed Wethered +1614171,Leslie Devlin +29669,Don Mingaye +1389663,Judith van Herck +1877781,Chi-Ying Chan +1053571,Kipp Downing +232858,Sarik Andreasyan +120970,Deborah Stratman +1650267,John Condron +1168087,Jeremy Frindel +1306682,Baustelle +935521,Chad A. Verdi +73292,Emer Reynolds +1484704,Regan Noble +1318481,Ron Jones +1331116,Larry Spittle +1412602,Daniela Avramova +581908,Madhan Karky +1213335,Alison Taylor +4022,Robyn Ray +1521392,Joe Montenegro +63775,Frederico Lapenda +567558,Joe Cross +1016590,Jan Blomgren +945223,Merriwether Williams +1239918,Mark Hennessy +1777654,Shaun Nagorny +1155290,Ginatri S. Noer +1646497,Gilles Marsalet +93071,Keiko Mitsumatsu +1489869,José Manuel M. Herrero +1618783,Noel Hernandez +29495,Antonio Altoviti +1425979,Thierry Schwartz +1442009,Mark Atkin +544351,Randy Sutter +1088722,Eduard Uspenskiy +78991,Leon Ko +54761,Kari Perkins +126970,Umberto Contarello +1336573,K. Arvind +1276648,Marine Tuloup +1407028,Alan Markfield +931443,Panayu Kunvanlee +1853231,Luba Ivanova +1448260,Jörn Großhans +1797419,Mark Gee +1176019,Kevin Mann +210311,Tom Hines +1523493,Tomás Sysel +1600681,Giulio Natalucci +1398986,Jana Knitlová +1417919,Adam Stein +1239603,Arlene Phillips +592057,Fausto Rossi +1419095,Theodore Suchecki +1108486,Christopher Westlake +1609030,Vanessa Riegel +1514185,Kathy Howatt +1300499,Yumi Yamashita +1279841,Matt Blundell +3226,D.V. DeVincentis +1587976,Dustin Brooks +1680440,Patrick DePeters +1030589,Lawrence Mattis +572069,John F. Reed +235932,Alain Gomis +1085054,Heinz Eickmeyer +1609048,James DeMarco +1368849,Wyatt Smith +89793,William C. Thomas +235204,Alessandro Angelini +1611041,Martim Vian +1588546,Edgar Vetter +1140667,Jonathan Tydor +40986,Friedrich Dammann +1354347,Noppadol Plyramool +34305,Johannes Kobilke +1743932,Andreina Ambrosini +1622334,Adam Renshaw +1367022,Nicolas Desmaison +23951,Raffaele Mertes +564045,Lance Doty +127333,Ernest Pintoff +146717,Pascal Thomas +101891,Gus Trikonis +1338533,Radium Cheung +1534675,Andrea Manners +1753670,Kevin Daly +52370,Michael Turner +1429015,Mataharu Urata +1797437,Diana Nechilciuc +1286746,Jan Kubicki +1408822,Lee Knight +1171588,Benoit Guilbaud +486330,Pedro Luque +1601199,Felix Lau +1675349,Stephen Kemp +1208685,Ranjan Singh +1526957,April Hodick +1115066,Molly Bernstein +1551410,Colomba Falcucci +456252,Laura Muccino +46002,Barry Rosen +1061644,Michael D. Sellers +38492,Gérard de Battista +1743596,Huang Pei-Chih +1354361,Sayan Nisaidee +32159,Marc Wilkinson +1402726,Peter Covent +1099398,Christer Melén +1295480,Lee An-na +1361932,David Naranjo +455852,Adam Targum +55969,Zoltán Fábri +1570162,Tami Stoddard +1677477,Rashmi Sharma +19582,Giorgi Mdivani +1636853,Lené Amalfi +584193,Mariano Cohn +1187660,Mark Freed +1526483,Börje Lundh +186409,Mark Edward Edens +1183574,Geoff Sharpe +92336,Clinton Wayne +1571514,Brett Andrews +1581963,Franco Vitale +1623910,Mark Magidson +203725,George Pelecanos +1862940,Mary Albee +1395014,Peter C. Clarke +1047629,Tanya Cookingham +572366,Jasmin Graham +43854,George Kelly +184314,Mark Sussman +24079,Rolf Giesen +1636701,Stephen Phelps +133574,William E. Barrett +1470536,Ellen Lepinski +1388962,Adam Newport-Berra +555348,Nanase Ohkawa +1394418,Jeremy Bowker +71773,Alex Usborne +1640327,Julien Troussellier +1790956,Nadja Hromádko +148774,George Rowley +496347,Craig McCall +72981,Stephan Altman +1279839,Jacob Jaffke +1001661,Nick Spicer +1630382,Greg Smith +555905,Bernard Stora +43586,Michael January +1324460,Ralf Schreck +1098979,Michaelbrent Collings +1650729,Benoît Dame +1771619,Heather Neeld +53925,Jared Hess +106825,Alastair Swinnerton +1404704,Sara Romilly +1332263,Christian Sprenger +1190035,Antonia Dauphin +1376319,Frazer Pearce +1258147,Donall McCusker +1340961,Gabrielle Vincent +1285845,Jen Carr +1615532,Germano Zullo +7980,Derek Williams +1586002,Domenico Di Parigi +1813879,Jenine Lehfeldt +1217043,David Lane +1682631,Emilio Eletto +1563597,Pino Butti +1327141,Marc Homes +563572,Jean Pellerin +1659233,Julie B. May +930161,Hanz Wasserburger +1383184,Dave Hughes +1662636,Mike Frank +1455535,Nathan Ross +1518457,Louise Hall +12529,Carlos Cuarón +1414917,Joseph Farulla +1442117,Sean Ryan Jennings +1117767,Jona Wirbeleit +568076,Oskari Sipola +1389033,Alex Goyette +5692,Art Babbitt +1452335,Mike Pipgras +1468976,Beverley Gordon +58145,Jeff Kwatinetz +1434326,Olivia Motley +1601860,Grigori Giber +1746577,Stephanie Furr +1129890,Luke Oliver +1516458,R. Cory McCutcheon +1769381,Máté Herbai +1317463,Chris Baldwin +1108356,Andy Jackson +1847718,Victor Ibañez +983164,Enis Rotthoff +1347622,Juanfer Andrés +1089521,Nicolas Gonda +1158616,Peter Birch +1551777,Richard Davies +1616485,Annabelle Mullen +1018975,Glen Basner +1273915,Susa Kusche +1573013,Rendell Bryce +1574315,Emre Oskay +1098218,Ruston Head +1771807,Iqbal Marjono +1816348,Cheryl Potter +1852945,Norah El Khateeb +1707976,Hayley Gilbert +78655,Ed Marritz +139000,Yelena Lanskaya +1317162,Eri Yoshimura +1336940,Park Sang-Joon +1397801,Adriana Serrano +1077423,Marc Windon +1204939,Melih Kibar +1512724,C.J. Simpson +1182829,Riku Suokas +1138632,Timothy Reckart +138868,John Beaird +1370964,Jo Distante +1610493,Melinda Nishioka +150641,Gary Halvorson +1013545,Stephen Skratt +119536,Doug Gould +57366,Thomas Augsberger +1313993,Joan Ellacott +106577,Junichi Sato +1653076,Robert Richards +89383,Molly Hughes +1531742,Helvi Leiviskä +56221,Matthew M. Howe +593079,Nick Simon +1630377,Katelyn Galloway +1726045,Nóra Kapás +927982,Marianne Fredriksson +1551817,Joy Mangano +237107,Bernd Fiedler +142175,Cláudio Paiva +27039,Aisha Coley +1001958,Robin Nations +1170178,Juan Serra +1551807,Gina De Ferrer +1170731,Juryi Shvedov +34879,Femke Bennink +588336,Adam Klein +1700640,Rachèle “Rocky” Benloulou-Dubin +1110402,Monica Foster +1639576,Casey McClelland +1498423,Rosie Komadina +1010763,Marcos Pedroso +1548082,Suzanne Diaz +1326928,John Clein +1190631,Григорий Никулин +1768,Marvin Paige +1403576,Beverley Binda +1086387,Robert Wilson +126714,Arvin Chen +1685976,Evgeniy Kolyadintsev +1356866,Webb Wilcoxen +1103644,Alex Carroll +1427973,Staffan Lindqvist +115449,Martin Mooney +278087,Elvira Lindo +928271,Denise Nadredre +1066937,Herman Tomlin +1540834,Sumit Basu +1722536,Jay Wadley +1407847,Lorraine Glynn +1242109,Ben Nearn +1013107,Tikhon Kornev +1337038,Bhuvan Srinivasan +1793188,Claire Connelly +76446,Shaad Ali +1171897,José Pedro Goulart +233067,Manish Hariprasad +1382446,Oren Segal +1090381,Evan Goldman +44811,Eric Gardner +94342,Warwick Thornton +30547,Alain Goraguer +1550634,Celia Barnett +109194,Toyonori Yamada +536491,John Norris +1765177,Sudesh Adhana +1609019,Apurva Shah +1239854,Mark Chappell +30957,Daniel White +1722924,Mannen Yagihashi +120930,Jon Jones +1621363,Jayne Marie Kehoe +1530401,Keiichi Sakane +1569284,Lucia Tosti +1009351,Ferenc András +212823,Andrew McCarthy +552966,Jonathan Rosenthal +1758349,Ally Conover +1851882,Ghazi Ali +1502722,Bobby Tilton +1866816,Maurice Goldman +584464,Suhasini Maniratnam +1302019,Lara Karchmer +131280,Ronald V. Ashcroft +1053661,Craig Chapman +39108,Anthony Redman +1320974,Ren Heeralal +1502064,Mardana M. Mayginnes +33506,Michael Bertl +1568550,Dan Johnson +1048397,Linda Kunkle +1479446,Dennis Gentle +8243,Arthur Krams +138870,Fed Allen +1417882,Matthew T. Rodgers +1820247,Juan Oyharçabal +91775,Stephen Coleman +1122370,Casey Callister +1816447,Erika Viereck +8015,Shawn Krause +1763567,Belinda Cumming +1425610,Vladimir Nikolaev +1635220,Noah Schultz +142570,Guy Michelmore +101552,Jacques Leitienne +1635740,Karoline Fjugstad Wendelborg +1057655,Christopher Storer +1537337,Oldrich Korte +1317165,Naomi Nagata +1486964,Roger Stigliano +1673200,Victoria Geske +110265,T.J. Martin +92556,Richard A. Guttman +1338143,Joo Fürst +1380783,Teemu Kaskinen +1427435,Mark Sahagun +1493435,Julia Bourlier +1583204,Pierre Richard +1658452,Natalia Veloz Chapuseaux +1640787,Oskari Viskari +1789398,Bob Riggs +1426002,Robert Tenaglia +69603,Mauro Paoluzzi +1149038,Duane Journey +1314463,Randy Westgate +68089,Ted Sherdeman +1285994,Boleslaw Sulik +1764641,Bruce Chianese +1403643,Mary Tallman +1834279,Gordon Langevin +1833827,Steynie LeGrange +1179391,Fortunato Misiano +1470170,Vincenzo Buffolo +958314,Sven Wickman +1390115,Alessandro Pondi +1621863,Rachel Hier +230071,Amos Kollek +139137,Alicia Van Couvering +1550761,Jean-Denis Haas +221503,Jochen Bitzer +1758557,Tatchai Aekkuttiyakorn +1429300,Lonny Dubrofsky +1726805,Takeshi Atomura +236610,Fran Giblin +1460039,Rick MacDonald +1774239,Norina Mackey +1468587,Jansen Lambie +1630277,Danielle Hoyer +1590392,Michael Crow +1877807,Peter Borosh +1842937,Mitsuru Kashiwabara +1398226,Prashant Nair +1636660,Jessica Pazdernik +66721,Justin Haythe +591016,Barbara K. Emary +1611063,Beata Krekiewicz +1568462,Rob Zeigler +1099829,Mike Seymour +53943,Ignacio F. Iquino +986834,Giacomo Cimini +590791,George Rosenburg +1429200,Justin Trefgarne +93223,Brian Kirk +63263,Beau Bauman +1507575,Barak Vazan +1316814,Marko Backović +1087512,Richard Ziegler +1407343,Anthony Rossi III +64764,Thomas Sorriaux +136001,Loring Mandel +291406,Olaf Kreinsen +1395027,Gregory D. Liegey +1425660,Mark Noonan +210769,Philipp Kadelbach +236856,Ivan Pyryev +92216,Norman Bernard +1606293,Wanda Caprioli +1011188,Jenny Jue +1778313,Stephanie Yankwitt +167786,Ed Bianchi +68819,Bénédicte Couvreur +1321930,Casey Merritt +56927,Martin Berkeley +1546950,Matthew Achterberg +1611356,Ted Balaker +1764789,Aidan FioRito +38551,Richard Rionda Del Castro +1398142,Julien Madon +63536,Scott J. Wallace +230653,Yukari Tatsui +1797458,Lorna Gillieron +1563387,Tatyana Kazantseva +1087672,Marco Elia +1510440,Derek Walker +61525,Tricia Gray +1895008,Jonathon Lawrence +580209,Hans Åke Gabrielsson +1375182,Michael Praun +1622810,Sylvia Kasel +948288,Dorothy Berwin +1485161,Zach Hagen +1266990,Patrick Bramucci +1058623,Michael J.F. Scott +63897,François d'Épenoux +1653027,Gita Gurappa +120335,Tony Roberts +1445969,Giuseppe Motta +1099680,Mike Montesano +1463796,Kelly Herdus +1404745,Lee Sollenberger +583565,Guylène Péan +31047,Robin Estridge +1411322,Sian Richards +237072,Kobun Shizuno +1603893,Kostas Koutelidakis +132526,Chieko Murata +48225,Gertrud Hinz-Nischwitz +1570161,Brittanie Moreno +1747484,Kerstin Emhoff +1712795,Andrew Smetek +1174097,Matt Luem +1566574,Svein Andersen +1401855,Lisa Norcia +1399304,Mark Herman +1050254,Charles Plath +1706705,Adrianna Nielle Davies +1415106,Sarah Brady +1432700,Roberto Gomez +1816359,Tony Drew +1460022,Francisca Pulido +143145,Raúl Portela +1565840,Esther Eckstein +1648281,Agnieszka Drewno +1551809,Lydia Fry +1496660,Adam Santelli +102872,Carole Vaillancourt +58385,Dror Zahavi +453500,Mark Pugh +137493,Katrin Kissa +1324838,Jordana Mollick +1444780,Arden Wohl +1816874,Frank Baglino +1447082,Lorena Molfino +138792,Michael Farino +114965,Antoine Blondin +67395,Temple Mathews +1570879,Frances A. Kolar +1330582,Benjamin Edelberg +1156445,Andrea Tonacci +1818061,Michael Coscia +87146,Allie Dvorin +1167414,Sue McNair +1625799,Shirel Kozak +1088582,Roberto Minervini +1597988,Valentina Di Palma +157849,Murray Smith +573543,Robert Gribbroek +557134,Ousmane Sembene +1544660,Adrian Nica +983625,Bobby Shore +150785,Ping Han Chiang +1636655,Marianne Skiba +1188618,W.L. River +56336,Jim Davis +1646520,Sébastien Bergeron +1309070,Chris Munger +1484703,Lee Levinson +1499158,Daniela Giovannoni +1780480,Michelle Garbin +1392974,Daniel Stilling +1417860,Sandy Lindstedt +1574828,Nate Hoffman +1412594,Vanessa Vogel +985012,Vitold Bordzilovsky +1089943,Yoshikazu Iwanami +1018705,Richard J. Vialet +138800,Seth Donald +930467,Marya Ignacio +1066936,Helen Buckner +1627935,Mikhail Vrubel +1492766,Jeff Sagansky +1606262,Lucio Orlandini +166530,Jonathan Rannells +1017820,Malachi Smyth +1571500,Jeremy Hollis +1018712,William Tabanou +130560,Lau Ho-Leung +1584367,Eileen K. Kohlhepp +1455523,Trevor Hunter +1688386,Gabrielle Jones +105328,Franco Bruni +70476,Alan Sharp +82518,Paul Ziller +1845754,Mike Madill +1706700,Glyn Dillon +1106987,Thom Lu +1417939,Rosalie Chilelli +1819560,Yael Bitton +1571499,Margaux Peach +99432,Jay Woelfel +1470706,Matthew Rogers +1556735,Ivor Talbot +1768129,Kim Hyeong-Jun +1548081,Theia Michelle Patra +1108575,Natasha Cuba +1884719,Navdeep Singh +1606759,Carl Hiecke +1409878,Tamara Pesic +938618,Grímur Hákonarson +50923,Juan Pablo Gugliotta +1350849,Anne Mulhall +1446403,Greg Kidd +8018,David DeVan +937504,Walter Navas +1273154,Ossie McLean +1416798,Kyra Panchenko +1483142,Antoine Moulineau +1379592,Alexander Ruge +1102524,Vincent Savino +1667325,David Branson Smith +32122,Manuel Merino +549310,Justin Kurzel +1350853,Sarah Franklin +1571475,Billy W. Ray +225718,Carlos Manriquez +63199,District 78 +1077381,Christopher Eakins +1285667,Nathanael Coffman +1012117,Nataliya Novik +1755126,Catrin Evans +1703118,Katrina Sainz +1315165,Alejandro Montiel +1073747,Natalya Sokolova +1641398,Rolf Boman +1193465,Thea Matland +1519863,Robert Mattigetz +1199113,Daniela Castillero Ramos +574352,Lee Stone +1699691,Jay Oza +56408,Jean-Jacques Hertz +105737,Charles Wick +1907219,Shelley Madison +1326486,Amy Baker Quick +234940,Ori Marmur +1621496,Liz Krause +1333655,Gemma Sykes +979467,Deborah Gregory +1536644,Stéphane Reichart +1888976,Vanessa Lin +1425326,Bailey Domke +1404276,Geordie Sheffer +1535457,O.C. Le Boutillier +1391648,Hana Rausalova +1482820,Jan Šťastný +1646513,Michael Beaulac +1298970,Phil Moody +143804,Man-hee Lee +1306691,Marco Belardi +118873,C. B. Harding +1376325,Carl Thomson +124889,Harumi Takahoshi +1348589,Dušan Pešić +1542732,Joe Paganelli +1754609,Kaine Harling +1432641,Katie Fellion +1582744,Laura Sánchez +56238,Jason Netter +1596409,Eli Amir +1099632,Allison Bryan +1079355,Mary O'Hara +1748600,Gabi Garcia +1528726,Antti Pouta +1056972,Johan Van Essche +125940,Aya Kito +1267666,Tanwarin Sukkhapisit +1376639,George Stone +1657380,Lizzie Ibarra +1857042,Urban Forsberg +556877,Gill Holland +1599059,Catherine Jabes +1895012,Rebecca Booth +56035,Vittorio Galiano +84885,Mona Achache +1413484,Kimba Hills +1114792,Nick Antosca +1126877,Geralyn White Dreyfous +11197,Bertrand Javal +1085543,Yoshi Nishio +1782097,Gianfranco Fini +183,Kouji Morimoto +1202914,Michelle Willis +1460816,Julia Papworth +1192893,Biyi Bandele +1674626,Valéria Verba +1347093,Boris Aleksandrov +1849900,Sam Newman +1086349,Michiel ten Horn +1085524,Jeffrey Waldron +1561594,Kasimir Lehto +1377954,Lúcia Fares +54980,Frederico Pinto +1393862,Remi Tournois +1849518,Brad Sayeau +572059,Eva Broms +1492093,B Ajithkumar +1201671,Henrik Otto Donner +193745,Robert Duncan +1907214,Manickam Kathirvel +1301994,Ika Škomrlj +1547703,Michael Perrine +23399,Simon Jacquet +1886632,Ellen Lang +82611,Michael Boughen +1521490,Christina Raye +933505,Sky Li +566358,Elaina P. Schulman +141462,Randall McCormick +1739780,John Garrett +93022,Sol Tryon +83472,William Bingham +51785,Charlie Loventhal +1740788,Rory de Carteret +1047588,Andre Clavel +52223,Frank Kaminski +1444773,Dee Poon +240008,Yoshihiro Ishikawa +1133968,Matt Dunkley +1096500,Santiago Racaj +61551,Brian Strasmann +51807,Peter Kaufman +1849141,Stephan Kot +1334429,Barry Gibbs +73740,Valérie Minetto +957757,Eldon Rathburn +1358022,Thomas Tannenberger +1412770,Kelly E. Marlow +1483743,Kristina Vlachová +930983,David Barber +1020751,Robert Monderie +1533796,Julien Naveau +97422,John Wooldridge +161186,Richard DeLong Adams +1752039,Ciro Russo +1821883,Alejandra Tovar +1095284,Jayant +1389623,Daniel Grant North +1395026,Tyler Kehl +1525568,Lucia Moisio +4035,Tom Spiess +1168711,Thomas Mahoney +1762261,Chris Gruggen +232032,John Stecenko +1813406,Bud David +1308848,Barði Jóhannsson +1649454,Thanathatch Kittikunathip +1877719,Doug Novis +1077115,Kasra Farahani +1077406,Jeanette Klintberg +103603,Alex Law +1662345,Rachel Varnell +1192395,Motonobu Kiyoku +109600,Mark Edwin Robinson +1752408,Miloslava Šmídová +91774,Michele Brourman +1716102,Loukia Hatzelou +1873643,Al Di +1404275,Amy Maclean +961493,Ronald Plante +1335482,Rachel Weng +37240,Sandeep Chowta +1414101,Patrick Malone +127611,Jim Donovan +1539031,James M. Falkinburg +1121352,Claude Waringo +989375,Ashley Sabin +1389150,Shirô Kido +1209601,Ted Adams +42263,Alex Bicknell +61491,Steve Klausner +1319729,Caroline Steiner +587997,Vasanthabalan +1327363,Robert Boswell +916958,Liza Johnson +1196913,Johannes Krämer +318819,Alex Beaton +1053815,Pekka Streng +1140573,Matt Yamashita +1889163,Jen Stein +1878842,Ed Hart +1373469,Enrico Melozzi +1405693,Stelios Koupetoris +1216762,Steven Long Mitchell +1208698,Greg Orson +15951,Jerome Bixby +137703,Morio Asaka +1128263,Michelle Benoit +1061756,Philip Day +1319649,Tom Raycove +1538299,Henrique Pongetti +1421952,Karen Ballard +1582728,Alejandra Castro +1099659,Terry Huud +565675,Catherine Chan +1421272,Max Bauer +1159419,Yuri Lukin +1642583,Sophia Kolokouri +1294342,Paul Risacher +1578004,Daniel Bishop +1412132,Even Birkeland +935910,Javier Soto +1440790,Ludovica Ferrario +92012,Jennifer Baichwal +1573337,Andrew Valentine +113375,José Caldararo +1783016,Priya Maharaj +1265594,Can Evrenol +72232,Brendan Heffernan +1160474,Noam Fitoussi +1193967,Amy McIntyre +1384008,Andria Spring +1195182,Joseph M. Petrick +1733931,Will Brook-Jones +22180,Otto Kirchhoff +61583,Dayn Williams +1311703,Nick Crofts +225887,Michel Leclerc +1321931,Anninka Velie +1267136,M. Stuart Madden +1117906,Anatoli Kozak +1402103,Lucy Enfield +1551910,Jonathan Knight +1903931,Mohak Sharma +96696,George Bricker +1404091,Kody Keplinger +1384365,Alain Giguère +125440,Ferenc Török +1720162,Sharon Forward +1015895,Philippe Francq +1616023,Ariane Heslot +1680443,Brian Slagel +1462348,Choi Ho Man +228433,Rory McHenry +1050027,John Anthony Hackert +1366427,John J. Sakmar +1606799,Shôtarô Hamano +1443567,Alex Webster +1190874,Jan-Dries Groenendijk +1499903,Fred J. Fox +1528522,Vladimir Seryshev +1764803,Sean Tanner +1323121,Firoz Khan +118405,Sachiko Itô +150955,Jason Hewitt +1605648,Nazo Maloy +1302529,Pierluigi Malavasi +1059587,Kristy Horiuchi +1624805,Ainhoa Andraka +552535,Anri Johjo +1484214,Frank Helbig +1332307,David Menschel +1299106,Julio Saldarriaga +986505,Sam Englebardt +1464043,Shannon Vaillancourt +1026108,Carl-Henry Cagarp +461513,Rohit Agarwal +58262,T.S. Faull +1056409,Sam Pierce +589753,Dominic Murphy +1150877,Maksim Sveshnikov +168131,William Spier +98779,Franco Marotta +1300064,Theo Park +233130,Dustin O'Halloran +1417867,Laura Altmann +1095244,Cristóbal Criado +98499,Rafael J. Salvia +1408381,Andy Taylor +1168710,Brett W. Bachman +15883,Angus Bickerton +1636408,David Green +91619,Howard Pyle +1378687,Steven B. Melton +1681429,Veljo Otsason +90864,Charles Grosvenor +1578009,Ian Morgan +1800608,Heidi Erl +1543197,Michelle Diamantides +1404287,Dan Schrecker +1451452,Tomer Eliav +1302021,Emlyn Pugh +1444304,Delphine Measroch +66124,Paul Wheeler +1433918,Bert Goldberg +111457,Erik Polczwartek +1064825,Samy Inayeh +1311142,Rafael Borqué +1519285,Samuel Jaeger +1585354,Sasha Tolstoy +36784,Anne Jendritzko +1770588,Kim Jung-Gon +1537709,Skye Riggs +1393446,Jason Sanford +1642834,Gail Kane +57018,Louise Vesth +938637,Ricardo Ramón +1008987,Avi Fahima +1193429,Carlos Corresa +1481501,Flavia Vanina Escudero +556874,Kevin Chinoy +1321443,Jay Cipes +141030,Frank Sabatella +1263791,Joost Van Schie +1525613,Brad Fletcher +1458109,Victoria James +1335566,Hugh Macdonald +1642604,Robyne Tsuji +30717,Franz Kafka +1040095,Kelly Bowen +552391,Peter Poon +1354330,Jutamas Khawchat +81334,Alex Orr +934047,Michael Mueller +1156247,Ieva Kaulina +937230,Sergei Loban +1849514,Edwin Lau +583434,Karin Fossum +91770,Dam Chen +1170534,Jake Seal +1766560,Yevgeni Nekrasov +1838188,Jonathan Lieb +1377367,Henry Frogers +1183747,Chris Bartleman +1019980,Jack Atwood +108049,Valeriya Gay Germanika +1862922,Ron James Armijo +1714325,Miguel Asensio Llamas +1457329,Kevin Andrew Smith +1270484,Marco Simon Puccioni +36894,Ernst Lothar +1641865,Victoria Jaye +94459,Simon Horsman +1277470,Takis Yiannopoulos +1825664,Tyson Birmann +1709178,Zoë Luella Corbett +927987,Folke Strömbäck +1482833,David W. Krummel +1463249,David J. Hardy +1326481,Todd Free +22501,David Schultz +1109234,Rajashekharan Rajeev +1509634,Anne-Marie Minty +1724679,Ludwig Berndl +984103,Zachary Stuart-Pontier +1780183,Nelly Hohmann +1413692,Priit Aus +154022,Carol Rosenthal +44726,Waris Hussein +1700873,Bert L'Orle +1763421,Chiranjibi Bipin Nanda +1395212,César Benito +109972,Dave von Kleist +1849491,Robert Glover +1646527,Samuel Boisvert +199578,David Thacker +1012127,Paula Hernández +89388,Umberto Riccioni Carteni +1570517,Dean Gonzalez +1728355,Michael Otis Ropert +1607591,Ilya Demin +1391693,Erick Geisler +131846,Claudia Myers +1830752,Amanda Verhagen +1307612,Park Min-hui +1500206,Adam Trahan +1447891,Robbie Prete +1463721,Chris Flowers +11206,Monique Isnardon +1086268,Arvo Iho +103150,Malcolm Venville +581415,Leyla Yılmaz +1547699,Jasmine McAtee +67361,Marius Balchunas +1321939,Marie Hanson +1572873,Ronni Brown +1619363,Christine Irwin +4588,Edward McDonnell +555753,Charles Couch +94242,Steve Gorman +1025703,Gregor Cameron +1092727,Marian Rees +1857571,Telma Silva +1797558,Daniel Ansley +148864,Herbert Fields +1608766,Marisol Roncali +1413508,Bryan Hirota +1114394,Marjorie Rhéaume +1179422,Ross Duffer +53077,Alex Orlovsky +128496,Vincent Gillioz +14930,John Addison +1018981,Bryan Wizemann +1721873,Phil Holman +1459899,Struan Farquhar +1871247,Sarah McCulley +1438912,Dougg Williams +92005,Nikolaus Geyrhalter +36518,Rosalie Varda +1537505,Daniel Cabeza +559204,Asle Vatn +222770,Partho Ghosh +1506173,Yukiko Kakita +1495876,Chris Tonick +1497556,Niels Barletta +63806,Chris Irvine +1713057,Hubert Maston +1099812,Meredith Berg +1055778,James F. Collier +6533,Fernando García +1323077,Charlene Amateau +1532929,Arti Modi +1395451,Jenny Fulle +106503,John F. Schreyer +1106911,Yoshiko Arae +1317038,Krista Seller +1483725,Valeri Popov +1581568,Jeff Sanderson +1642518,Stefan Melchior +1468590,Sam Jaffe +1774002,Paola Villanueva Bidault +1441213,Catherine Van Bree +1387270,Joseph Stephans +1117900,Aleksandr Galich +1341802,Stephen James Taylor +30477,Peter Werner +1732086,Parrish Lewis +1879689,Keith Holland +193178,Brett Butler +1699499,Veronika Metzova +579790,Adolphe Borchard +1398636,John Keville +584056,Deng Fei Lin +1321108,Collin Redmond +999569,Mickey Edwards +1569337,Sebastien Racine +962392,Penelope Falk +236608,Nicole Daniels +1097200,Ariana Del Rio +124697,Markus Stemler +1780132,Aljona Kassner +1637395,Michael Fournier +1133329,Isabella Cocuzza +1585165,Jack Chouchanian +1866293,Peter Wyborn +1105486,Jay Reiss +1046370,Vicky Wildman +129627,Antonio Manetti +46435,David Verrall +1149003,Aggela Despotidou +1198855,S. Balakrishnan +93074,Hijiri Taguchi +116213,Juan de Dios Filiberto +1473530,Albert Vidalie +1398342,Tracey Bing +65458,Tim Fraser +57324,Thilo Rothkirch +1464111,Gerald Sternbach +1650265,Caroline Barton +1404393,Sebastian Zuleta +107669,Eldar Ryazanov +1477212,Jerry Syphers +1410109,Teddy Smith +1360099,Lee Gilmore +1313452,John Palmer +1032650,Vijay Tendulkar +1161622,Stéphane Ben Lahcen +1516046,Bertha Spieker +1661418,Jim Grce +11289,Mark Forstater +1201957,Christian Angermayer +1540331,Bunty Soorma +143696,Klim Shipenko +144196,Nicole van Kilsdonk +1829977,Steph Lynn Robinson +91028,Daniel J. Wiley +1678084,Jenny Hilmo Teig +32282,Mary L. Mastro +1597068,Dimitar Atanasov +1637776,Matt Peters +228524,Ton Peters +1604771,Giorgos Mikrogiannakis +207180,Jonathan Wright +1516294,Andrea Greer +548599,Dustin Rikert +1489786,Louise Ingalls Sturges +1676029,Soumyajit Nandy +1367213,Chloe Huber +1263646,Jacco van Ree +1744163,Sanaa Bezzaz +1179272,Mamie Mitchell +1588422,Cindy Chao +1496658,Shanna Knecht +1561880,Graham V. Hartstone +1678889,Kristin Seth +1644759,Éva Zabezsinszkij +1208061,Mia Maddox +583875,Andrew Coutts +1443001,Roberta Hodes +1674477,Sanjay Dhabade +234511,Carl Robertson +1515089,Joanne Fluke +1439128,Charlotte Hayward +1880921,Kapil Verma +544859,Jeanine Herrly +1281266,Edward Mokhtarian +1824229,Laura Morse +1477793,Dustin Fletcher +1130509,Robert Vaughn +1721336,Andrew Zink +1331174,Lauren Russell +1453142,Frank Openchowski +1412328,Bob Mahoney +1771880,Alain Robillard +1620547,M. Abou Youssef +70023,Francisco Marín +1579393,Alicia Zavarella +583605,James C. Moore +1481560,Liz Ludwitzke +85052,Shyam Kaushal +1185100,Whitney Brooke Wheeler +1014589,Rebecca Dakin +1305384,Aleksandr Kvak +1749847,Mehdi Saadi +1892819,Christian Kastner +1392983,Robin Gerrard +1800054,Adrienne Greenhalgh +1141408,Tim Usborne +1172465,Autumn Lisa Mason +1294607,안은미 +1343616,Enrico Audenino +1229153,Lindsey Graham +115673,Ryan Eslinger +1879682,Jake Torossian +227129,Art Fitzpatrick +1154215,Sam Kadi +112732,Morten Giese +1428576,Rona Lamont +1344796,Ben Kurstin +1031976,Bob Young +190103,Alain Desrochers +1432577,Becky Cotton +1430520,Donnie Allen +1824981,Yu Ding +619186,Francoise Dorner +1780169,Oliver Metz +131680,Chris Terrio +1590421,Max Ott Jr. +1161458,Davíð Óskar Ólafsson +1654005,Braden Aftergood +1755735,Jean-Charles Lusseau +1557239,Curtis Burch +112379,Christian Vuissa +38935,Geun-hyeon Jo +1862927,Pasco Di Carlo +1073097,Arnauld Mercadier +131397,So Yong Kim +1038611,József Romvári +1462278,Nolan Mcdonald +1717471,Shelby Farrell +1477208,Alvin Croft +1507476,David Gidali +1056200,Tariq Tapa +1408716,Curtis Crowe +936795,Kostis Papadopoulos +1408873,Sasha Reuther +19087,Jacques Gaillard +1731668,Ifunanya Maduka +131327,Salvatore Samperi +1196914,Conny Carstennsen +90107,Kurt Braun +1870208,Barry Hebein +236538,Mara Goyet +143865,Tom Comerford +1576124,Ezequiel Carrasco +589283,Paweł Mykietyn +131895,Raj Kanwar +1539810,Kenneth Young +1612473,Nick Reiner +1845751,Pazz Neglia +1621311,Micheline Rozan +1188597,Sal Grasso +1816411,Deborah Chung +1803895,Ferenc Ruttka +1113941,Tendeka Matatu +1331888,Stacey Kramer +1143008,Amela Baksic +1060635,Kate Glover +1426223,J.R. Reher +1365598,Cheryl Eatock +985182,Bitto Albertini +1323144,Amar Mohile +1425663,Laura Anne Mooney +37789,Francesco De Masi +1345407,Tewfik Farès +1631195,María Luisa Gutiérrez +50717,Dan Shaner +1404862,Patrick Owen +1427468,Charles Boyle +1457084,Oleg Teptsov +1355068,Philippe Bellaiche +582920,Nick Murphy +399947,Hossein Zandbaf +1521378,Christina Marie Gordon +1583078,Emma Anne Black +23173,Helmut Pirnat +1352991,Andrew Loo +1177619,John P. Varkey +114495,Albert Ruben +1609859,Chase Keehn +102511,Attila Dargay +1367133,Caius Man +1122423,Patrícia Vasconcelos +560233,Sándor Rideg +1306282,William Saulter +593004,Jaywant Pathare +1680459,Ron Stein +129439,Graziano Diana +1700420,Pekka Konttori +933416,Dick Cusack +56920,Nikos Platyrachos +3504,David Farmer +1785949,Duarte Elvas +8208,Max Wiedemann +1645845,Maria Kontogianni +80539,Serge Danot +1553460,Andrea Pugner +1578011,Lea Morement +1307810,Des Kenneally +965697,Alex Greenfield +1076175,Sandra Lee Blowitz +1370721,Christopher Swayne +1214975,Joe Simpson +1633154,Mukhtar Ahmed +1390340,Laura Davison +1745328,Lev Karasev +1428881,Chris Chamberlin +150690,Venkat Prabhu +1547749,Brian Kinney +95025,Arthur B. Woods +62855,Erin David +1797864,Dawn Lovegrove +1460867,Bill Mills +73099,John Stefan Olsen +31963,Arthur Ripley +136390,David Framer +963171,Ian Honeyman +1716984,Benoit Bargeton +1036570,Christel Birot +1423833,Janeen York +56191,Michael Butler +939450,Devin Burrows +1708031,Shaun Herbertson +1770590,Choi Hyun-Mok +1774234,Toby Plaskitt +124722,Adam Deyoe +1789302,Jeri La Shay +237653,Jean-Daniel Pollet +1425568,Kai Storck +928946,Eric Zaouali +1685938,Ewen Dickson +1627248,Shanan Becker +1506294,Cory Brosius +1026691,Dave Buchwald +1448308,Trine Cordes Berg +1735127,Angelica Landry +106013,Will Sheldon +28672,Kambuzia Partovi +1084963,Jesse Feldman +1041394,Anthony McCarten +1123194,Wyatt Jones +151096,David O'Malley +1363412,Richard Fletcher +5240,Klaus Doldinger +46285,Jackie Budin +1755724,Lola Grand +563114,Ida Nelson +500199,Tim Cohn +1056317,Menelik Shabazz +1382110,Jason Staczek +113450,Lee Osborne +132641,Ulric Raymond +1800064,James Doyle +984533,Adam Willis +1452627,Holger Hummel +1797447,Elena Riccabona +931970,Perrin Chiles +1530724,Andrew Dumas +1316672,Paul Buckey +1555200,Thomas Dodgson +1441746,Tom Hecker +1719402,Aeysha Walsh +1422966,James Zicree +75550,Joan Peters +29881,Martin Durkin +1429197,Bálint Hegedűs +70832,Grete Møldrup +1611038,Matthew Heller +233061,Mason Nage +1580199,Stephen Gross +224452,Gianfranco Rosi +6459,Charles Strouse +132315,Timothy Dowling +1187397,Steve Skrovan +231720,Jaap van Heusden +15631,Samuel A. Peeples +1539075,Phil Brigandi +1857755,Mary McCarthy +1127474,Michael Watson +1845782,Richard Ryder +544583,Charles Matton +1857048,Alex Conti-Lewis +1724196,Gabriel Botcherby +22813,Marc Durin-Valois +21601,Betty E. Box +1271968,Johnson +1661395,May Azzow +1580831,Erin da Roza +1128313,Paul Tennis +1384381,Jinnie Pak +1746438,Boyan Baynov +56661,Jonathan Levine +1577201,Kathy Welch +53855,Sebastian Thümler +559146,Lars Kolvig +1414901,Fin Edquist +1825657,Cari Ballinger +1453930,Seung Hoo Ihm +1360411,Lisa Melbye +1437703,Aziz Acar +1444775,Matt Pyke +1542314,Sophie Machavariani +147743,Marjo Federley +1262738,Stuart Connelly +125071,Miguel M. Delgado +95528,Pablo Berger +1815645,Wes Hagan +1665452,Barbara Giancola +1347092,Leonid Yukhvid +1621365,Linda Christie +1726775,Geri Mataya +1085649,Michelle Tolpa +1619743,Sabrina Cayne +1207937,Alessandro Fabrizi . +1360111,Nevin Seus +1707141,Józef Jaworski +151127,James W. Wrenn +1573333,D.J. Goller +1354029,Johanna Mathieson +70562,Luigi Magni +1662852,Todd Giroux +1642140,Karine Dashney +1453124,Aleksandar 'Sergio' Kalezić +1200444,Dani de la Orden +585617,Gilbert Bécaud +75548,Greg Duffy +1658455,Andrew Boucher +932635,Herbert Kline +1061517,Roxanne Benjamin +1606165,Luis Astorquia +1862952,Theresa Bentz +1462966,Rasmus Arrildt +1196916,Cay-Dietrich Voss +1455605,Ed Herft +1760146,Phil Carbonaro +1755110,Sophie Maloney +570753,Tatiana Brandrup +1207588,Stella Morris +568782,Joseph Dervin +1634557,Wayne John Haag +227224,Arthur Sarkissian +1533925,Don Johnson +1212814,Greg Antonacci +1376323,Nick Magnus +146950,James Michener +1034912,Talaat Captan +1076581,Justin Bursch +227092,Rick Porrello +1629012,Prema Menon +1068921,Ed Ragozzino +1797507,Louise Fryer +1136890,John Purcell +1368650,Bryon Callaghan +1752047,Fredrick Faith +62471,Michel Barthélémy +29883,Seb Curtis +1862935,Mark Wieringa +1685993,Stefano Pepin +120204,Marcel Le Picard +1749842,Masoumeh Bayat +1117869,Andrew Fingret +1465332,Gonzalo Cordoba +1373701,Jordana Finkel +1509635,Selina Locker +10323,Mikes Karapiperis +1404819,Jessica Williamson +48743,Ulrich Stiehm +1640346,Nitin Gupta +52179,Sigmund Neufeld +1544238,Isiah Donté Lee +1195870,George Appleby +10908,Peter Francis +1673997,Tohru Hina +1580861,Dave Kellom +1481516,Mathieu Davy +1321065,Brendan J. Hogan +1697789,Abhay Sofsky +14995,Alan Myerson +98746,Alejandro Ulloa +1184124,Greg Suddeth +1738141,Ryan Meadows +1615503,Michael Angelo +557806,Dan Rizzuto +1314857,Vanessa Lapa +1099013,Allison Estrin +1411814,Christian Schaanning +1775624,Luciano Patrick +80110,Matthew Jacobs +977722,Terence S. Potter +1118348,Mickey Keating +1312182,Amy Harrison +1591749,Samantha Rattner +1411234,Kent Boswell +1415508,Rachel A. Walker +1570580,Asuka Sugiyama +235355,Houston Branch +85598,Vikram Kumar +1062509,Nathalie Saugeon +554493,Tokio Tsuchiya +1555340,Jim Painten +253181,Seth Pinsker +1434544,Barry Goch +1396614,Scott Cummings +238490,Pippo Barzizza +148263,Don Towsley +1311649,Judit Quintana +1439130,Amy Byrne +1500901,Pamela Pearl +1808031,Tania Rahimikhoshavaz +1451561,Julian Pennisi +1127437,Tsunemasa Hatano +52215,Hiroshi Kato +42793,Byun Young-Joo +1775651,Barbara Pilling +107327,Robert D. Weinbach +73453,Adam Siegel +1513193,Richard Dewey +1800058,Patrick Hanlon +30065,Eva Lohse +1174345,Benoît Quainon +1569444,James Rhodes +1648381,Lizzy Graham +1013552,Tibor Lázár +1503516,Jimmy Sammarco +1599402,Said Davdiev +59588,Taavo Soodor +5335,Elizabeth Yianni-Georgiou +1127864,Ginette D'Amico +1642535,Sunanda Raghunathan +1171858,Angela Del Fabbro +967482,Nick Fenton +75557,Sarah Jameson +68822,Julien Lacheray +1190262,Mikhail Romm +59345,Klaus Hefele +584058,Tsan Chang +544559,Pierre De Clercq +1004471,John Gray +1153033,Constantin von Seld +1179549,Al Morrow +1084905,Keishi Ohtomo +1092654,Gunnar Källström +1437632,Holly Smart +105735,Elwood Ullman +578815,Kimberly Willis Holt +1504814,Akira Takata +1775626,Ruth Aragão +1402733,Jim Millett +16682,Leendert van Nimwegen +578719,Luci Leary +185438,Genndy Tartakovsky +1393579,Danielle Barkat +1637927,Valerie Contreras +1411126,Tom Parsons +1715743,Robb Denovan +543841,Coralie Cournil +1545915,Laura Bailey +1396419,Ria Van Heerden +1728940,Farouq A. Zuaiter +141178,Carlos Ramos Jr. +235112,Aleksandr Kott +1536209,Mathieu Raynault +6205,Tim Atack +63551,Orly Adelson +1021398,James Gordon White +1471673,Lonnie Ramati +1023501,Samuel Benedict +175786,John Sacret Young +239442,Akira Daikuhara +32857,Ali N. Askin +1313041,Benjamin Howell +1409876,Larry McGinley +1550776,Sophie Cullen +1885111,Martim Crawford +1677572,Sam Greenmun +1800073,Anna Maria O'Flannagan +84782,Francine McDougall +221664,Quinton Peeples +1635610,Jan S. Utstein +1385649,Colin Wilson +1334742,Minoru Shibuya +1127491,Bert Lawrence +1367931,Allison Turrell +1333930,Sarah Forrest +1437691,Pauline Seager +1060531,George de Beeson +128282,Edgar Dubrovsky +1743854,John Oldknow +993271,Soledad Gatti-Pascual +232640,Piero Tellini +1202676,Tim Ziesmer +1411218,Susy Kelly +1426713,Riitta-Maria Pirtilä +1116420,Victoria Vanderkloot +117692,Herman C. McNeile +1640922,Giuseppe Del Volgo +1706353,Kamran Khan +1829973,Jonathan Vaughn +237137,João Jardim +1456506,Petra Jorgensen +1107189,Mark Helprin +1391681,Vicky Chan +1582620,Jack R. Berne +1554961,Ashleigh Tucker +1838730,Jacobo Nazar +1218724,Liz Patrick +1021559,Eric Vuillard +158298,David Nobbs +1438461,Margherita Meddi +25882,Brad Turner +1533789,Enid Harris +1412139,Seth Ericson +1389671,Dale H. Jahraus +1813312,Jonathan Perkins +239308,Claudio Guidetti +1354350,Phongtep Patisena +937499,Jaime Reynoso +1709322,Kelli Lee +1547648,Amanda Hallberg +1763889,Anne Karina Westerik +1176868,Mamiya Fujimura +1797111,K.P. Kumaran +1412477,Clément Sentilhes +34882,Mark Sourian +1030630,Koji Ota +1375921,Justin Cardoza +1814475,Emma Black +1489870,Javier Artiñano +81782,Elie Chouraqui +1196911,Karl Machus +1031978,Yves Bélanger +88077,Alex Zamm +27291,Gareth Jones +1425397,Kristin Witcombe +1010831,David Friedman +1415577,Brad Hruboska +1431518,Diana Goulding +75375,Joel Harlow +998227,Thomas Zellen +1401760,Samson Kellman +1062015,Chizuru Takahashi +115084,Michael Kraike +23548,Christopher Hargadon +1031771,Pamela Azmi-Andrew +1869384,Viet Luu +1853906,Jon Lackey +553502,Mark Palermo +72894,Antón García Abril +1412582,Christopher Galea +94672,Sazzy Lee Calhoun +144194,Togan Gökbakar +1463400,Chris Welcker +127368,Fuad Ibragimbekov +1606500,Gareth Coulam Evans +928300,Janine Gold +591269,Janusz Majewski +1314343,David Campling +1585164,Ted Caloroso +82101,Robert Hall +1024274,Ken Kao +29059,Amanda Ackland-Snow +1052330,Cyril Gardner +1650545,James Brown +1142227,Guy Zilberstein +1339610,Holly Haupert +1484474,Deborah Jurvis +1362796,Travis Fort +97827,Jose Prendes +124505,Philip Martin +1440477,Louise Tremblay +94771,Roland West +31982,Ugo Liberatore +45545,Antonio Saura +1421220,Catherine Hun +1760322,Alok De +1408402,Tina Richardson +95999,Frank M. Farel +1340097,Jack Levy +1017276,Emily Poncet +960087,Sophie Newman +1420170,Sergio Spaccavento +1456792,Lee Byeong-heon +1776890,Brian Bedol +1423840,Todd Smith +1354497,Bethan King +1157601,Ryan Daly +929987,Doug Emmett +1080783,Paul Bradley +240661,Yukio Abe +1341472,Jeff Tomsic +583475,Mark Sniffen +577501,Jack Harbaugh +127460,Cedric Mallabey +1446750,Elena López Carreón +111475,Frank Hall +1176478,Márton Ágh +1133332,Toby Halbrooks +1800055,Keith Barry +1107586,Fred Renata +1559627,Paul Di Malentino +29388,Mario Siciliano +236047,David Eubanks +1533532,Laura Katz +65768,Kim Rennick +24910,Claude Veillot +1780476,Paul Gonsky +419797,Tirru +1556895,Janek Zabielski +931799,Andrey Yakovlev +1015909,Jonathan Sothcott +75952,Nick Farnell +65470,Jan Verheyen +1371129,Tina Zepeda +937342,Mark Hall +1337752,Anita Overland +1099357,Anders Granlund +1482923,Kevin P. O'Donnell +1621190,Davin Black +1666879,Arshad Syed +1121891,Cho Ui-Seok +1172616,Edith Fitzgerald +1468588,Megan Asbee +70682,Lawrence Roman +1643465,Pat Trautman +83653,Ryan Shiraki +1581193,Marco van Belle +1732081,Maija Garcia +1376324,John Shann +1759262,Michael Risoli +1066328,Stacy Beverly +1686545,Gifford Cochran +937601,Dragoljub Ivkov +1492886,Fredrik Zander +1130730,Paul Rouschop +1341734,Steve Browell +1325561,Judi Flowers +1324841,Dominic Ottersbach +733442,Jim Milio +70596,Marc Merson +1781336,Jason Fields +1573368,Elizabeth Magallanes +88968,Ronnie Apteker +1189276,Charday Fields +1526012,Bec Cubitt +1401988,Chris Napolitano +1286094,Solomon Northup +1548076,Rachel Barkow +1527915,Art Reasonover +35994,Barbara Palmer +15349,Maryann Brandon +138243,Pete Hamill +1400610,Virginia Clemm Poe +574149,Stobe Harju +69413,Andreu Rebés +1534026,Antonia Rubeo +984135,Howard Zemski +33885,Bob Bender +64483,Zhuang Chen +1297706,Gints Berzins +1536577,Randy Trager +1138001,Shannon Hale +1444287,Fay von Schroeder +1783013,Luis Antonio Rodrigues +69617,Tony Gayton +32571,Jack Slade +116567,Danielle James +1450093,Ragnar Axelson +1609857,Vasili Rinquest +1401114,Alex Funke +1112961,Bárbara Álvarez +1049252,François Mauriac +1596109,Sergey Dolgoshein +1407744,Kevin Vale +1677476,Abhik Mukhopadhyay +1148633,Kim H. Ngo +31317,Rosalío Solano +1375057,Alex Child +1559455,Henry Sanchez +1674000,Ayano Iwane +1604237,Ryan Carter +1437084,Michael Dwyer +85337,Te-Sheng Wei +1120798,Clifton Adams +1272892,Neil D'Cunha +1143463,Myriam Ibáñez +1414102,Alex Kalmakrian +1696493,Ted Geisel +1075511,Rory Stewart Kinnear +1003946,Diarmid Scrimshaw +1454850,Elizabeth Wood +86519,Kareem Mortimer +1440309,Cynthia Blaise +65935,Shirley Chan +1216977,David Moessinger +1455467,Valentin Toncu +1171542,Jean Dubreuil +141646,Natalya Ryazantseva +1193081,Moisés Cosío +1405329,Stephanie Farah +1151366,Jimmy ScreamerClauz +17092,José Vico +72249,David Tausik +1413153,Michael Diersing +117620,Taro Maki +1758550,Samatcha Thosaeng +131346,Shyam Goel +16893,Victor A. Gangelin +76173,Yoshinori Chiba +1113460,Andrew Lee +1147358,Bill Lava +228825,Jennifer Maisel +126965,Vladimir Golovanov +1635275,Tony Kochinas +1438539,Mitja Licen +1681357,Bobby Anderson +1682639,Sydney M. Fogel +183960,Nathan Lorch +549349,Dana Niu +1531843,Thorsten Schumacher +109726,Robert L. Richards +85515,Ina Damianova +1129477,Bill Mosher +1032652,Dilip Chitre +1317239,Óscar Cardozo Ocampo +1529499,Christof Ebhardt +1573370,Matthew Manselle +1112405,Masahiko Kawahara +1525925,Stephen Prouty +169082,David Rosenbaum +1780175,Christoph Steil +14819,Keith Baxter +1862517,Alfred Haber +1866815,John E. Horton +1128311,Irene Yeung +1128690,Christopher Woodrow +1551846,Larry Long +233079,Uppu Pavanrajesh +1785937,Ollie Gilbert +1519837,Aleah Morrison +1441736,Marc Achenbach +1884078,Abel Zoe Rodriguez +1775631,Dirk Homann +1452688,Dan Romero +1714353,Marko Cigljarev +1458713,Megan Brooks +1880923,Rashid Ahmad +1383999,James Summers +65622,Larry Spiegel +1123022,Frank Shaw +1872425,Jocelyn Evans +1220917,J. M. DeMatteis +1174066,Gus Holwerda +60728,Joelle Spencer-Gilchrist +1069108,Chris Aronoff +68590,Holly Fink +1506291,Ash Sarohia +1368691,Jorrit Kleijnen +1060785,Alex R. Johnson +1445369,David Ottier +1586809,Sunny Sikka +1298946,Giuseppe Bruno Bossio +1549109,David Leite +1708037,Ben Luck +60558,Leah Daniels Butler +1427887,Jim McGrath +1424573,Jenny King +1031006,Martín Cuinat +137892,Steven Hartov +1279526,Tania Bijlani +1316040,Željko Mijanović +1518578,Lindsey Ferguson +1414185,Jenni O'Byrne +1653483,Kushal Wagle +1553432,Rolf Wappenschmitt +1176350,Lisa Basson +993751,Brett Jutkiewicz +1206802,Herman Verschuur +105574,Adrián García Bogliano +1880928,S. Viswalingam +1852948,Christina Lowery +1579387,Tom Cherry +1120639,Stav J. Davis +1112958,Benjamín Doménech +1473419,Pericles Michielin +1396759,Jean Velter +1802702,Raisa Margacheva +1733797,Elisa Ludwig +37637,Jean Cosmos +1001799,Jenner Furst +1193469,Ryan Kirby +121516,Nils Malmros +1023495,Colin Patton +1542368,Bashart Malik +1445491,Suzanne Girardin +80981,Choi Seung-Hyun +1428041,Kulanen Ikyo +1202091,Grazia Deledda +1218544,John Infantino +1285483,Pierino Massenzi +1391649,Fernando Valdes +63048,Thomas H. Brodek +136362,Vidar Flataukan +1481491,Farés Ladjimi +1364419,Petrus Cariry +1389971,David M. Barber +1324034,Steven Capitano Calitri +113672,Alan Fine +71411,Peter Hartwig +1405268,Laura Jean Bransky +23447,Jane Goldman +572363,Sean Kohnen +225890,Alexandre Castagnetti +1461212,Zdenek Rozkopal +1733926,Alex Outhwaite +1464980,PJ Curtis +1309618,Matteo Levi +1553457,Zoltan Sostai +73409,Mike Mendez +1275130,Lorenz Dangel +1023127,Lee Kirk +94040,Randall Frakes +1432918,Daniel Nichols +1821890,Scott Dwyer +930689,Percy Crosby +1711426,Hiraoki Kanai +1436536,Edmund J. Lachmann +1608764,Patrick Murray +21850,Miles Hill +1386328,Sam Situmorang +142006,Perry Eriksen +986415,Compton Ross +10328,Thanassis Arvanitis +1067807,Masakatsu Takagi +1513532,Sasha King +63491,Steven A. Lee +1862934,Kevin Milburn +1411144,Rebecca Sheridan +1029789,Malek Hamzaoui +1630385,Jameson Jordan +1562469,K. Blaine Johnston +1766551,Michael Brandstetter +1399453,Joseph Michael Tenga +1643844,Bryson Cassidy +71032,Olaf Pooley +91833,Erik Cord +1895221,Véronique Marchat +1817424,Terri Anderson +1122557,Mohcine Nadifi +1174698,Pino Massara +1103662,A. Todd Smith +1885587,Alan Alch +1095645,Katarzyna Lewinska +212965,Jon Sen +232623,Christian Theede +535878,Bruce Anderson +1161650,Polin Garbizu +1301330,Jessica Ronane +1513959,Helena Vlogaert +1020703,Robert Palmer +222365,Zach Seivers +23584,Gabriele Wolff +58219,C.B. Taylor +1201133,Chad Smith +25746,Stephen R. Myers +1658518,Judy Cook +999882,Nirpal Bhogal +19043,John Cameron +1437692,Petya Simeonova +1800387,Scott William Alvarez +32546,Keith Kjornes +16324,Federico G. Larraya +1263911,Dannelle Satherley +133115, E.W. Swackhamer +1551800,Thalía Echeveste +1520165,Gan Bi +1286569,Kelly Ambrow +1178401,Ask Hasselbalch +240747,Paul Matthews +992867,Makoto Yoshimori +1187930,Paco Ferrari +1394484,Nikolaj Georgiew +1729059,Christopher Lytton +96184,Tina Chad Christian +1828253,Patrick Russo +1393689,Dinos Kittou +1567347,Michael Suarez +1593002,Patrick Bureau +117486,James K. Jones +1353914,Tom Brown +1102080,Aaron Boyd +552038,Yoshihisa Araki +557210,Bejoy Nambiar +1805956,Juho Harjula +1409488,D.J. Stipsen +1758553,Poramin Arayapreecha +132305,Nobuhiko Ôbayashi +1371063,Ingrid Ferrin +1903911,Aaron Reznick +54250,Kwame Parker +1227141,Dale Eunson +1640312,Jignesh Panchal +1183647,Eric V. Hachikian +1303052,Joe Hobbs +544644,Mac Carter +1634506,Sherry Kecskes +1547208,Rocco de Rosa +1179392,Augusto Tiezzi +148073,Bill Berg +557680,Danny van Spreuwel +1871971,Nadadja Kemper +1833106,Ben Marias +1763663,Hanna Canfor +1601708,Milorad Kalanj +1570595,Paul Belchamber +1540351,Richie Moore +1065395,Christopher Alender +1193560,Alireza Raisian +117097,Cindy Kelley +48911,Jochen Stäblein +47755,Barré Lyndon +1281269,Gregory Ramoundos +1503520,Shannon N. Rosenthal +1531094,Tasha Lang +1377837,Scotty Baker +1401757,Margeaux Fox +140910,Kevin Billington +65693,Chris Pollack +1459464,Tom Knott +71512,Marcus Hertneck +49183,Agnès de Sacy +1857204,Isabel Guerrero +568322,Dan Trachtenberg +158455,Jennifer Lee +1659469,Jean Putel +1439420,Erica Botkin +1872429,Justin Lloyd +1713059,Michael Maloney +131184,Phillip J. Roth +427242,Olivier Gorce +101108,Alberto De Martino +185678,Julie Goldman +67637,Velton Ray Bunch +1081836,Jonathan Metzger +1169036,Martin E. Johnson +1781644,Jason McCameron +1668608,Leon Clarance +1830880,Shaun Cunningham +1277587,Marco Pozzi +1408648,Jason Boose +200567,Louis Stevens +73190,Takahide Morichi +1522546,Chanya Button +1400560,Erik Nash +228402,Juri Seppä +1412918,Jean-Baptiste Jay +131859,Steven H. Bernard +1102683,Aaron Seelman +1120643,Daniel Keysary +77295,Jesse V. Johnson +1828330,Moe Rai +1452334,Scott Nifong +1316313,Yasuki Iwase +1393698,Yiannis Maragoudakis +80682,Gina Black +1139051,David Mathews +45135,Claudia Steffen +1382733,Giovani Lampassi +1454516,Robert Boake +1281387,Clay Kaytis +927992,Louise Drake +1495872,Aleksandar Letic +1626534,Philip Krupp +556152,Sharon Everitt Polito +1528724,Hanna Kuirinlahti +72266,Éric Besnard +1153906,Ian Blackman +1031105,Paul-Michel Mielche Jr. +1443547,David Schrader +586734,Evelyn Purcell +1469922,Keba Jeremiah +1293595,Carlos Blanco +1323898,Elyse Molina +1833816,Richard Addis +1547500,Takamasa Kobayashi +1347734,Stephen Morahan +138406,Jacques Théry +1226294,Paula Pell +238679,Brin Hill +1829890,Evelien Kortum +1519290,Maren Meyer +1862944,Scott Benjamin +112483,Mike Williams +1447392,Antonio Canobbio +1547495,Saburô Ômura +1327658,Enzo Muzii +1056316,Anton King +69177,Claus Loof +1194472,James Plannette +961658,Carl Bartels +1763411,Vishal Raman +1646492,Aaron Morrison +1403404,Geoff D.E. Scott +72512,Iwao Ishii +21322,Glenn Garland +1390387,Steve Hart +1129791,Seth Iliff +53679,Binod Pradhan +1884017,Sepehr Sobhanifar +1146048,Adam Milano +1547451,Griffin Richardson +104044,Everett Burrell +1179827,Shripriya Mahesh +1130047,Silvestre Revueltas +229834,Henry Godding Jr. +209879,Tze Chun +1454919,Christopher Barwell +71303,Steve Haberman +966927,Gavin Kelly +1621108,Cha Won-chun +1644257,Lee Maher +1048606,Linda Brenon +1691479,Blane Granstaff +1761917,Antti Murto +1849920,Mara Svire +1189031,Kenichiro Tsunoda +1302456,Giuseppe Rocca +1412141,Henriette Næss +55700,Robert Adler +1551801,Charlie Hounslow +110526,Lisa Wiegand +1458517,John L. Healy +1571805,Benjamin Cleary +67111,Tim White +86912,Vincent Scordia +1124065,Daniel Chabannes +55772,India Osborne +1707413,Scott Middleton +1691493,Gary Evert +579729,Pierre Rocher +1820650,Richard Allen Slinker Jr. +584715,Gerald Kerkletz +1379438,Yana Sheremetova +1652052,Danny Keefe +221465,Udo Witte +1444781,Matt Fleischmann +1364554,Madeleine Ruthven +937879,Robert L. Collins +77163,Ronnie Christensen +1061057,Bill O'Kane +1416953,David Shillingford +1708047,Natasha Mix +1497081,Sean Bagley +1156074,Peter Odabashian +37744,Francesco Izzarelli +959332,Denise O'Dell +1312940,Jo Coudert +225941,Buda Gulyás +1438447,Christina Onori +56856,Stephenie Meyer +1547711,Miranda Megill +380765,Christian Roman +1433657,Dhyana Forte +1069671,Sharada Baker +1507334,Moshe Mishali +1402090,Fiona Gavin +169730,Chad Hodge +1479366,Alma Mathijsen +1590181,India Desjardins +37866,George Stretton +138789,Greg Tobler +559193,Petter Skavlan +1574105,Alex Fenn +1475728,Tim Godsall +1009379,Jesper Aagaard Jensen +1586594,Réka Görgényi +1301331,Stuart Earl +51708,Eric Hendershot +1400488,Victor Morales +1563991,Virginie Arnaud +583603,Geoffrey Homes +1330510,Kurt Heinecke +88084,Luis Prieto +28403,Rainer Matsutani +34327,Richard Fantl +1180528,Tristan Corbière +206654,Fraser Corbett +1612808,Venessa De Anda +1083432,André Jaeger-Schmidt +59906,Donald Stewart +108768,Patrick Rizzotti +1156646,John Robert Lloyd +1399463,Bruce Lee Gross +1670653,Julia Holter +1813505,Michael Bate +1311628,Kevin Regan +1317090,Phil Gorn +1545929,Oliver Cubbage +1106877,Levan Bakhia +1845775,Charles A. Gould +1820244,Belisario Amador +233719,György Kovács +96809,Hiroshi Segawa +1088231,Alan Holly +116210,José Feijóo +942251,Rachel Perkins +1606278,Sergio Giussani +1417839,David Butler +73289,Conor McPherson +1761132,Greg Lomas +56375,Amat Escalante +1636994,Jonathan Bronfman +1652094,Temple Rohl-Burdekin +1237937,Gabriel Copeland +1414089,John West +199698,Adam Balsam +1760586,Paulina Chiu +1583397,Ed Kuepper +1731669,Randy Kiyan +1495526,Jan Chojnacki +1123499,Orestes Calpini +1149120,Kuli Sander +967225,Andrew Loveday +1662295,Vikram Chopra +1314243,Horst Jankowski +1069772,David Silverin +1780482,Scott Calcagno +953488,Mark Musselman +1281879,Brittany Bradford +1227500,Michael Perricone +1325679,Sarah Blenkinsop +989127,Jeff Wood +84438,Laura Angelica Simon +21454,Anthony Lawrence +967203,Lauren Bass +113411,Simon Staho +1746704,Sarah Bridge +1402503,Marc-Antoine Serou +1191178,Alain Wildberger +1535455,Sidney Street +64688,Wong Ting +1028543,Yilmaz Arslan +1358496,Christine Peters +1547701,Cameron McCasland +928073,Zhana Londoner +1402729,Alex Oh +231812,Kristina Magdalena Henn +447777,Magnus Martens +72957,Michael Marshall +1321751,Kate Townsend +1280176,Xiaodong Xie +967020,Scott Peck +1504488,Jeff Steinberg +1280965,Tracy 'Twinkie' Bird +1423428,Michael Monteiro +1425396,Craig Beckett +1869440,Jordan Jacques Aboutboul +79173,Leif Benjour +1215399,Taylor Sheridan +1763422,Vanita Omung Kumar +1315263,Florin Lazarescu +41149,Sante Maria Romitelli +1551897,Todd Whalen +1451789,Yumiko Masujima +1263796,Johan van Rooijen +1281524,Walton Hall Smith +1029414,Vincenzo Marra +1841562,David Ketterer +1049745,Alexandre Lehmann +1150813,Ramin Niami +1586349,Dante Trani +1644754,László Melis +1284737,Koichi Shimizu +1113239,Vijay Kumar Arora +1087452,Mari Paz Robles +35501,June Mathis +1214963,Lissa Evans +1330004,Dhimitër Anagnosti +122767,Masahiro Shimanuki +1635314,Kevin Donovan Jr. +238156,Mae Czarina Cruz +1262422,Carlton Miles +1579383,Keith C. Anderson +232061,Ricky Hayner +1459724,Jay Cail Stone +1423466,Samantha Kern +1376997,Kaushik Das +1113457,Garisa Violino +132239,Babak Najafi +1570078,Sefi Carmel +1066791,Tracey Berg +1434865,Conrad Tuffin +1392946,Jeremy Whitcomb +1558857,Eric Offin +1364793,David Best +1505978,Jonathan Morali +1051753,Geneviève Mersch +1208173,Akihiko Yamashita +1127831,John A. Smith +122213,Naoki Tate +1336914,Erik S. Watland +87877,Roar Uthaug +459872,Kim Jun-seok +19678,Ron Davis +57106,Alexander Dittner +23956,Paolo Biagetti +239895,Michele Lo Foco +1496218,Moon Blauner +1774214,Steven Sandles +586002,Andrew Haigh +1127110,Dimas Imam Subhono +1672436,Angelique Hanus +978927,Massimo Felisatti +1797515,Lizzie Webster +1484213,Jan Malír +1771037,Tommy Goetz +1187670,Mickael Abbate +69714,V.V. Karnik +1859963,Adolfo Castanon +1771810,Eugenea Agnes Widayanti +1728518,Erik Louis Robert +938164,Joe Catalanotto +1034190,Simon Chapman +1333496,Davey Morgan +1484532,Jessie Burns +1437713,Sanjot Sonalkar +40885,Antonio Fos +1030396,Karl Spoerri +92534,Beverly Holloway +1124962,Jeyamohan +1795856,Theodora Katsoulogiannakis +1175882,Yûji Okumura +1841573,Alberto Sala +1075786,Alexandre Moors +1177492,Gianni Manganelli +83732,Stephen McDool +1870821,Tevaz Inanishvili +83601,Ku Long +61689,Daniel Toll +1642170,Peter Bohl +1361933,Jorge Tuca +1771811,Ichsan Rachmaditta +1497760,Alan D. Courtney +1109358,Courtney Stockstad +89597,Warren Ellis +1577960,Sascha Dhillon +115835,Andrew Huebscher +1761886,Hannu Koski +1055276,Miško Plavi +137199,Billy George +1308057,Emma Hill +77818,Patrick Roy +1238483,François Avard +1805332,Kristin Roberts +1632373,Julien Poncet de la Grave +23994,Chiaki Konaka +236884,Athina Rachel Tsangari +1577904,Thomas Lemierre +229111,Tanuja Chandra +1150509,M.M. Musselman +1640325,Clover Wootton +1305820,Catalina Aguilar Mastretta +1083500,Richard Robinson +125455,Jenö Koltai +549357,Phil Monroe +1378151,Sidarth Kantamneni +1518589,Matthew Lacey +1091919,Francis Martin +1751754,Hoi Ling +1001668,Dan Cogan +1454534,Carla Shivener +63801,Brendan Steacy +1665419,Jerit Venugopal +1375924,Veronica Logsdon +1764543,Mike Witherington +46360,Gregory Melton +1201902,Rodrigo Rivero Balestia +103041,Robert D. Siegel +78860,Terry Cunningham +580844,Jeeva +557582,Augusto Casé +110348,William Heise +1304135,Joseph Mungra +1295481,Lee Sung-jae +1192794,Carmen Alie +1493871,Ashley Patterson +1853239,Mila Rozanova +1451489,Cliff Rogers +148224,Andy Engman +1727717,Martin Tocka +107333,Jim O'Connolly +1304226,Martin Ahlgren +64424,Le Qun Song +91295,Michael Matheson +1436541,Giorgio Bertuccelli +1606292,Clary Mirolo +1274933,Tom Petch +1494613,Christine Lynch +1636840,Tiago Mesquita +930054,Lodewijk Vos +1316018,Uljana Kim +1724793,Tyler Jensen +556493,Gherardo Gossi +1400682,Mike Kieler +1458991,Tom R. Wilson +1685974,Aleksey Karaulov +28968,J. Searle Dawley +1117099,Judee Sauget +1152356,Harry A. Pollard +94917,Mitchell Altieri +6337,Thomas Täng +16255,Kim Dong-joo +1280058,Benjamin Speed +1329481,Tyler Bishop Harron +1348076,Manuel De Landa +1070462,Surender Reddy +238623,Vladimir Golovnitski +1571060,Mazena Puksto +77294,James T. Walker +1276839,Alice Girard +1277408,Katerina Polemi +1218841,Marion Hargrove +1325872,Shelly Shaw +119339,William Walton +1185544,Raam Soraya +1201676,Katie Yu +1146049,Ben Winston +1145287,Ipek Zübert +43793,Michael Pertwee +17108,Jonathan Caouette +1514153,Alison McDonald +1767535,Roberto Oliveri +1392968,Dhyana Carlton-Tims +967387,Jeremy Kleiner +550958,Kwan Kit Mok +1601862,Petr Novitsky +558177,Jonathan Newman +1201673,Juha-Veli Äkräs +63190,David Kirchner +1513447,Kelly Kwon +1496428,Alec Jarnagin +1824275,Katrina Annan +1018986,Vincent Mathias +1414951,Eddy Collyns +545509,Kabir Lal +1411220,Emily Cameron +73384,Dimitri Karakatsanis +1251089,Mike Roth +548373,Hisayuki Toriumi +1403970,Yu Nakai +77949,John Paesano +1773272,James Temme +1161645,Sebastián Sepúlveda +1740802,Paschalla Sharpe +1188499,Nicola Carraro +229575,Maurizio Ponzi +139614,Marek Posival +1323119,Lyn Kelly +1023400,Marta Arribas +1100325,Edgar Struble +1485599,Richard East +1463568,Mike Marcuzzi +10899,Mathias Schwerbrock +138896,Nino Gaetano Martinetti +109555,Gualtiero Jacopetti +1200898,Jordan Jensen +130625,Paul Hayes +1414922,Patrick Cicero +1279372,Jigar Saraiya +129039,Ric Hardman +72549,Daniel Wetherbee +1668340,Nate Cash +1880922,Ramesh Yogendran +119561,John Sullivan +107736,John Henderson +1548088,Francis J. Roix +13045,Christa Collins +1016259,Tine Krull Petersen +1799719,Luca Raele +92607,Jackie Johnson +1147934,Joshua Abrams +1204940,Kriton Ilyadis +1056271,Rudolf Wilchmann +72999,Mark Sevi +1450836,Takahiro Kishida +1759302,Alexi Gomez +1183173,Margarida Leitão +1174816,Olaf Saumer +225481,Aldo De Benedetti +1306681,Andrea Cucchi +1636854,Maggie Werning +1681076,Bootstraps +123401,Michael Gordon +59931,Karen Walton +51085,Yaron Scharf +1416943,Felicity Leabeater +1246383,Evan Wright +1289490,Ryoo Seung-jin +75113,Luke Redgrave +213644,Kate Hawley +1121984,Wayne Marc Godfrey +1475321,Agathe Grau +1335154,Nenad Pavlovic +1280961,Rodrigo Leão +1620692,Aliki Panagi +1083277,Chiyoo Umeda +228355,Robert Blum +1200246,Lihu Roter +1481357,Keli Manson +1205893,Michelle Kirkman +5137,Harika Uygur +89538,Joan Johnstone +85051,Sandeep Srivastava +1547223,J. Elizabeth Ingram +129001,Olivier Mergault +1386400,Daniele Grieco +1394057,Jeffrey Silver +1139079,William C. de Mille +1087479,John Philp +141167,Jaegeun Kim +1317650,Jenny O'Connell +17363,Henning Ferber +1418010,Toni Atterbury +1379051,Ben Shepherd +1456496,Dave Kelsey +1142893,Andrea Dal Monte +96620,Tony Collingwood +227546,José de Carvalho +551938,James Herbert +1764804,Matthew Pearce +1718141,Navin Shetty +1290385,Clifford A. Ruberg +3943,Silke Koch +1538500,Giovanni Checchi +45987,Paul De Meo +124321,Nicholas Tabarrok +67543,Marion Dany +971593,Mark Teschner +1186631,Pete Shilaimon +1833179,Roy Henry +1517548,Jeff Caperton +69492,Angelo Barbagallo +1405254,Philipp Kemptner +1728359,Zach Cowie +1754605,Kim Barnard +56631,Charlotte Walls +589495,Leonardo Sciascia +1460862,Sabrina Temblett +1355890,Harry Linden +1578006,Ellen Crawshaw +1841572,Maria Montessori +1060979,Sarah Millman +141258,Oscar Williams +1674268,Yang Jin-mo +579261,Michael Hurll +1085547,Jonathan Hercock +32235,Shane F. Kelly +1821940,Bryan Schnitzer +856440,Michael Mohan +1564469,Julián Mateos +1127734,Harry Lawton +1881552,Arno Sieberger +1646874,Corina Danckwerts +1305369,Johanna Hamilton +1161229,Raymond Tournon +1169243,Noé Debré +1481506,Claudia Lubian +114339,Henry Kane +1141712,Barbara Barnard +1662609,Jóhann Sigurjónsson +1440462,James A. Taylor +1148535,Daniela Goggi +311268,Richard Kurti +1821944,Nicole Flowers +567554,Michael Compton +96801,Hiroshi Teshigahara +1338522,Darryll D.B. Walsh +1431090,Rod M. Janusch +237529,Janet Heaney +1080589,Teddy Schwarzman +938084,Marc Dujardin +1649728,Suwajana Noochniyom Janajina +1381033,Shogo Ueno +148148,Johnny Cannon +1404805,Conor McCullagh +1153618,Andrejs Ēķis +1835566,Jack Wallner +213442,Chuen Tak Keung +77610,Paul Allen +195919,Dwight Cummins +1481513,Andrea Rocca +122689,María Eugenia Sueiro +2001,Erich Maria Remarque +55809,Jérôme Peyrebrune +20606,Jan Berger +1621483,Joe Harris +937260,Yann Zenou +1815549,Marisa D'Andrea +1436530,Chris Seay +558907,C.S. Drury +58191,Chris Morgan +1825843,Greg Landerer +1736876,Chelsea Mirus +1246438,Carol Evan McKeand +121357,David Guion +1578898,Laurence Love Greed +1459044,Esko Töyri +1741055,Jonathan Jackson +236755,Camillo Bazzoni +1484507,Ricci Swart +1728939,Ahmad F. Zuaiter +1453005,Simon Bull +103689,Andy Abrahams Wilson +1599401,Maksim Anikin +131602,Gene Markey +1335416,Sylvain Lasseur +1367648,Jean-Stephane Garbe +73281,Fabrizio Bettelli +115936,Naoki Urasawa +1760326,Parvez Singh +543837,Laurent Brett +1548162,Heather Hershman +75228,Ivan Kral +1576866,Rosana Tomás +1466124,Guimarães Rosa +1332523,Allison Schenker +1201900,Juan García Atienza +1597094,Olaf Dux +1728383,Christopher J. Wilmot +1379427,Yulian Svilenov +1387271,Schuyler Weiss +1062874,Jack Crutcher +63357,Stephen McKeon +56826,Adam Gross +1468921,Marjorie Hamel +115529,Henry Ney +33248,Albert Hay Malotte +137660,Jaak Kilmi +79749,Jesse Fryckman +1759541,Cornelia McNamara +545569,Pete Rugolo +1571513,Daniel Casillas +1288847,Chloe Knapp +1712630,Florent Limouzin +1684925,Yelena Svavilna +587672,Min Yong-geun +1582729,María Fernanda Muñoz +1534232,Mike Demski +1637441,Mohamed Abo El Fadl +1741762,Steve Bannerman +1418396,Keith Miller +56840,Michèle Ray-Gavras +1673901,Thomas Alfandari +1313446,Vincent Saizis +1905097,Marius Speller +36924,Anja Müller +1148096,Simon Lambros +1440579,Celine Diano +1287204,Aleksandr Karpilovskiy +1404273,R. Zane Rutledge +930213,Cecil Stokes +1574407,Jamie Floyd +1287812,Julie Kaye Fanton +1343659,Harry Scott +1362644,Pete Middleton +931346,Paul Gandersman +931688,Kamran Rastegar +546805,Louis Page +1518592,Albert Taffet +73626,Warren Kiefer +1775305,Derek Scearce +1721226,Allison McGillicuddy +38698,Louis F. Cioffi +1769095,Joe Sökmen +1122812,David Mortin +1315970,Alejandro Mendoza +1276349,Doug Barber +142521,Jan Hryniak +1136810,Bohumil Pokorný +1064952,Simon Aboud +1170863,Alexandre Laferrière +1884015,Haady Meghadam Doost +1642523,Robert Armstrong +1425999,Ciara Brennan +1302049,Omar Aramayo +105472,Anette Mandoki +1170058,P. S. Vinod +1865911,Ivan Dunleavy +968379,Marc Robert +1340086,Jonathan Sheinberg +1139974,Gilberto Provenghi +1768428,Martin McCourt +1034473,Lauren Edwards +1635205,Mitchell Gun +73911,Katrina Fernandez +1703199,Marc Sondheimer +1468573,Michael Huber +1415086,Sean Gray +1636668,Kevin Van Der Meiren +1676790,Mielle Ezra +212677,Miguel Albaladejo +77616,Jack Cutting +1113582,Kitt Lavoie +1650730,Pierre Picq +237310,Yuji Sadai +1721880,Harvey Riley +1642563,Jack Yen +104027,Joseph M. Smith +1622820,Peggy Bernaerts +9081,Karl Struss +1397796,Rock Shaink Jr. +1642565,Karin Brandt +107057,Mitchell Froom +1182830,Heikki Syrjä +936853,Kevin Speckmaier +1811613,Zoe Midford +1395019,Julie Ray +1756472,Ana Pfaff +146143,Brad Martin +1340125,Richard Todman +1058994,Jaime Jiménez Pons +1439108,Tom Fendley +1642142,Sheilagh McGrory +71203,Andrés Wood +24666,Claude Durand +1402558,Tristan Warren +562196,Nicholas Siapkaris +1558090,Karina Benesh +1677461,Daniel Steinman +1642555,Florian Wagner +1389416,Denis L. Chartrand +100903,Theophan Ouchakoff +1530911,Ernest Zatorsky +1632442,Jordan Champine +1727611,Boris Piot +1136795,Karel Lier +1329160,Jacek Fuksiewicz +567478,Neil Smith +228359,Urs von Planta +45678,Gert Wilden +91614,Alex Merkin +142983,Jeremy Doner +49051,Sarah Nemitz +1410216,David Isern +43792,Sidney Hayers +1466796,Nikki Shapiro +55244,Saul Kahan +1463801,Giselle Spence +555153,Akio Wakana +1896171,Nancy Wei +1482541,Jason Tobias +55499,Scott Derrickson +46144,Giorgio Tonti +1015258,Alain Benguigui +1631403,Katja Dotzauer +1551691,Michael Huey +1535895,Premysl Prazský +556491,Luciano Bianciardi +1338386,Andrew Huculiak +225151,Songyos Sugmakanan +1545919,Amanda Leggatt +1536334,Bob Jackson +1531415,Karen Kingsbury +567208,Kiran Reddy +1323512,Cornel Wilczek +1327834,Adam Marsden +94744,Zhang Yibai +11923,Franz Weihmayr +57918,Rolf Dieckmann +1427826,Csaba Lòdi +1542743,Margo Stefan +1547654,Miko Nishida +1616266,Zygi Wilf +1092521,Olle Länsberg +1024246,Sébastien Pilote +550306,Gianfilippo Corticelli +1646811,Marianne C. Wunch +1829288,Tom Sachs +928334,Catie Cacci +993133,Peter Lhotka +933029,Caroline Héroux +1632596,Ben Wilson +111212,Michael O. Gallant +1681633,Patricia Almeida +1425380,Ian Richter +568270,Harry Wagstaff Gribble +930004,Caroline Aragon +189981,Jon Ezrine +1351637,Hidesaburô Fujioka +1821946,Jeff Gartenbaum +87883,Mats Stenberg +1105683,Charoonporn Parapakpralai +30745,Brian O'Hara +1601703,Dragica Lausevic +1571059,Casey Langfelder +1735355,Kentaro Hagiwara +1146825,Gérard Ruey +1189783,Nicole Robert +1705835,Adriana Apruzzo +1731648,Ki Jin Kim +422939,Milt Franklyn +1845788,Jane Douglas +1282286,Nicci Topping +22707,Hans-Joachim Wallstein +102873,Patrice Vermette +1448324,Paul Preca Trapani +190840,Jon Boothe +81150,Sara Bernstein +968035,Mark Rosinski +1642194,Paola Nazzaro +75997,Jodie Crawford-Fish +1383522,Jeffrey Karantza +1792037,Heidi Lauser +101233,Michael Winnick +1024850,Yuri Ozerov +1708044,Alexa Rae Roberts +1552004,R.J. Cipriani +1508026,Elhum Shakerifar +9950,Jim Willis +118196,Claude Gros +963428,Mark Geary +1493522,Lindsay McKay +1821143,Rebecca Steel Roven +1069018,Roman Cheung +206780,Matthew Carnahan +1388848,Jim Barr +40812,Andrew Wilkinson +67954,Adriano Bolzoni +1017238,Cynthia La Jeunesse +81912,Simon Nye +103238,Peter Rolfe Johnson +1178417,Claudio Cordaro +190135,Scott Vickrey +1205016,Emiliano Rocha Minter +143056,Matthew A. Brown +117060,Ray Patterson +1640633,Ovidiu Dunel-Stancu +1764177,Thomas Eager +1437901,Pank Sethi +1424698,Alejandra Ford +1758957,Richard Blackburn +1568843,Luis Montemayor +50988,Scott LaStaiti +1336936,Gitte Lechuga +937425,Vera Marzot +1458589,Adam Simon +1334461,Kevin Anthony +1453668,Jongju Lee +1641864,Jeremy Warmsley +55079,Lukas Ettlin +74971,Jem Cohen +1416954,Toby Jacobs +1311623,William Fayman +1594170,Dave Cook +1748531,Max Segal +1168717,Bill Ceresia +259069,Monica Teuber +33576,Maurice Smith +999551,Anthony Ainsworth +1523231,Divya Gambhir +1144702,John Stumar +1350575,Adam Pitra +130988,Inés París +1537106,Lynda Kyle Walker +69219,Boris von Sychowski +1286910,Robert Fonollosa +1550125,Kirk Lynds +1207938,Candido Simeone +1791613,Runar Holmstroem +1851894,Chris Adkins +1408530,Emma Thomas +1286558,Bonnie Bacevich +1879687,James Goodwin +1718394,Chris Witt +1573331,Jeffrey G. Wicker +584191,Gastón Duprat +1500692,Paul Catalanotto +22182,Peri de Bragança +1321928,Anna Rasmussen +1462277,Darlene Winter +33959,Joseph F. Poland +548007,Eiji Kawamura +49064,Boris Ingster +1191589,Jonathan Lewin +1397198,George Pereyra +1178578,Françoise Arnaud +999152,Elisabetta Montaldo +1746440,Britton Plewes +35268,Frank Paur +1692499,Bob Habros +1866272,Eddy Taylor +1824243,Kevin J. J. Hill +112014,Matthew Sand +140414,B.P. Fineman +1113506,Kathy Carr +1160206,Carl Waters +1748526,Mike Huling +1440400,Todd Keller +90868,Jay Bixsen +1185064,Mac Gudgeon +1453117,Danilo Dudic +23841,David Lister +1202157,Dwight Gaston +1559475,Don Hall +1345865,Jean-Baptiste Morin +1266463,Marit Jensen +1435644,Elia P. Popov +1448328,Thor Erik Løkken +1552623,Stacy Caballero +1830746,Greg Coletti +558371,Beverley Huynh +1530397,Terutaka Horiguchi +1840329,Carles Salvany +1740772,Philip O'Connor +164554,Jennifer Kent +1459763,Rini Sugianto +1519868,Donald Sparks +103692,Kris Newby +72682,Torkel Knutsson +1453932,Mike Safianoff +1326174,Min Jin-su +1058621,Ian Elkin +940663,Chester M. Franklin +1496268,Dean Cavanagh +74888,Jean-Claude Van Rijckeghem +1801219,Alice +1301719,Berto Pelosso +1527916,Lisa Javelin +569201,Gonzalo Arijón +34371,Marion Parsonnet +56657,Zacarías M. de la Riva +1217744,Gerald Gardner +1831340,Hiroyuki Saitô +1636681,Tomasz Tupalski +1579834,Maureen Portoghese +1192185,Stewart Lindh +1185040,Pyotr Todorovskiy +1603185,Jonathan Melin +51837,Noun Serra +1421267,Françoise Garnault +1411873,Alexander Pugh +1797234,Anton Agerbo +113925,Matt Dearborn +556112,Seyfi Teoman +1017352,Robert Fitzgerald +1877779,Hongliang Wu +1460749,Lee Grubin +1415474,Victor Lizarraga +1824278,Fabio Ferrante +87755,Dagen Merrill +1105396,Peter Poulsen +1859048,Paul Millspaugh +1494535,Liz Pecos +141707,Margaret M. Dean +1511650,Armando Meyer +1758559,Pornchai Jeamphattanatrakool +1643228,Jan Tomaskovic +956,Guy Ritchie +1391445,Ewa Ewart +1325841,Tony O'Loughlan +76337,Magnus Börjeson +1824617,Arthur M. Loew Jr. +100734,Johannes Roberts +1448307,Merete Torkildsen +1275670,Devin C. Lussier +927989,Camilla Eriksson +123367,Tuukka Temonen +1849528,Joe Alonzi +1884740,Ramón Alonso +1006755,Francesca Newby +12039,Paki Smith +1439807,Christopher R. Smith +1636736,Massimo Toppi +1167206,Nathan Nugent +1680439,Bradley Curneal +1296809,Martina Parenti +1707978,Kate McLeod +1431582,Ron Otis +1803566,Eduard Vanunts +1548084,Larry Lundy +1072791,Leif Holt +1327219,Nora Martini +43528,Hilmar Örn Hilmarsson +844266,Jon Erwin +1609032,Constance Garcia +1687758,Alla Verlotsky +1286572,Aidan Reynolds +1211781,Alexis Wajsbrot +1560986,Brook Holston +1841620,Andrew J.D. Hauser +188833,David A. Goodman +236612,Carrie A. Tyson +1409642,Tzvetan Markov +1746251,Ebony Hardin +1269129,Adam Catino +85049,Aseem Mishra +96502,E. Leontev +1601642,Jordan Gzesh +1879679,Blaine Spence +1578871,Jake Marcuson +1056043,Jenny Hinkey +1105548,Alberto Liberati +1830340,Mick MacKay +67355,Heather Rae +587209,Martijn Schimmer +36146,Joseph Merhi +1190085,Matt Winn +1657558,Michelle Diaz +1277473,Sotiris Paterakis +1452993,David Ward +1357586,Matt Marks +75705,Beau J. Genot +1637439,Krista Lomax +1047304,Olivia Wingate +1190601,Raelyn Tepper +1118746,Aleksei Dudaryov +547582,Graham Bunn +1304672,Kıvanç Baruönü +1339210,Norma Richard +1486938,Gerardine O'Flynn +1396859,Shauna Phelan +1427249,Jori Hulkkonen +1764616,Englebert Humperdinck +1543259,Desislava Manasieva +1697989,Adrien Asztalos +1013105,Kirill Kozlov +1408404,Samuel Sharpe +69087,Kim Ji Yong +214631,Lester Pine +4312,Marjorie Best +1578003,James McGuire +114109,Matt Vancil +1622815,Yoshua Berkowitz +149350,Mauro Bonanni +1352955,Werner Scharfenberger +225665,Vardan Hakobyan +1640318,Rahul Saxena +1058166,Michael Francis Gibson +1630215,Korin Huggins +74528,William Cheng +1375922,Heather Laird +71534,Barney Pilling +583467,Adriana Lambarri +1430071,Arturas Zukauskas +44683,David Jackson +1106586,Stephen Dwoskin +1816354,Danielle Blake +590833,Nicolas Fonseca +1338236,Michael Moynihan +134364,Tom Sniegoski +109452,Jack Donohue +1708026,Glen Cook +1062421,C.W. Cressler +615156,Georges Feydeau +1309616,Gloria Malatesta +1746453,Maria Salcher +72191,Pupi Avati +1466255,Dan Marbrook +1452241,Mariah Kraft +1446590,Morten Thorhauge +1625841,Victor Tourjansky +1285741,Ambre Wrigley +931703,André Bharti +63749,Odd Ween +979007,David Laramy +1397754,Giuseppe Viggiano +555158,Hidenori Taga +1170990,Justin Ludwig +1107170,Robert Cross +1122643,Adam Kolbrenner +128636,Liam O'Donnell +1285170,Vijaya Mehta +1747485,Jared Carnevale +1780150,Stephanie Haas +1567235,Enrique Pinilla +50925,Leandro Aste +1077374,Rebecca Rubinstein +931361,Alex Fenton +85048,Kabir Khan +1220517,Tristram Shapeero +1622041,Michèle Boig +1793205,Nick Butler +219706,Jean-Christophe Hembert +1355545,Veronica Gleeson +91455,Yorgos Javellas +47979,Mark L. Rosen +932540,Veronica Fragola +1593425,Pierre Daudelin +1572613,Jill Alexander +1570554,Stephanie D'Alessi +17119,Kim Sung-su +1194699,Joe Begos +1390354,Adam O'Brien +1381060,Alessandro Ciucci +100793,Reginald Le Borg +1627249,Bill Bromiley +1703750,Evyatar Dotan +1206138,Walter Koestler +1835571,Robert E. Warner +1134706,Daniil Granin +75523,Anna Gray +1834270,Gail Bowen +544812,Pia Marais +239790,Minkyeong Shin +566794,Ravi Walia +1643171,Rajat Mukherjee +1066809,Jack Turner +1888974,Joshua Rosenfield +60923,Will Speck +1548102,Arielle Wadas +34877,Bho Roosterman +1635328,Carl S. Pyrdum Jr. +49668,Vivi Dragan Vasile +1529003,Georgiy Nikolaev +1457306,Flora Moody +17532,Francine Sandberg +1637436,Marvin Peart +1406544,Anatoly Lapshov +234351,Philippe Modave +1175139,Louis Castle +1835496,David McLennan +1028809,Eric Tavitian +1877723,Clara Brennan +1611203,Anna Bohdziewicz +1884072,John Preca Trapani +31981,Remigio Del Grosso +1878847,Charlotte Larsen +10524,Walter J. Israel +1764801,Jesse Brunt +1568861,Bunty Phillips +80586,Roberto Faenza +1526969,Charles S. Rowe +1357621,Stewart Halpern-Fingerhut +1108466,Sasha Robertson +1650279,Simon Magee +1877773,Elizabeth Leader +1064585,Chad George +129232,Muli Segev +1459935,Cristina Sopeña +259862,Tony Cookson +1500502,Edward J. Martin +1414158,Jerry Lambert +1880919,Sundaresan Jegadeesan +1226304,Sheldon Schrager +586137,Martial Fougeron +113374,Alberto Trigo +1301635,Andrew Barnabas +75133,Martin Fabinyi +1287467,Farah Abushwesha +86978,Kei'ichi Sato +1766565,Claudio Messina +1074509,Qi Shen +1084960,Marius A. Markevicius +101528,Don Sharp +1634762,Melissa Stanton +103074,Frederick Brisson +1475169,Graham Wichman +17311,Bryan Fuller +100291,Jean Hewitt +109541,Chris Denk +1085290,Rich Bologna +1552878,Beth Tate +147855,Simon Alberry +1375267,Nick Grillo +1682261,Jenny Sutcliffe +1734623,John Eaves +1828350,Janae Vandvyvere +586773,Warwick Gilbert +1367130,Andrew Liu +1708049,Mitchell Goldberg +137317,Simon Hardy +1327027,Vincent Cirelli +1055601,Matt Heller +1108177,Willem Bosch +940641,Taylor Wong +1146749,Robert Amirkhanyan +1395256,Joseph T. Sabella +69043,Maurizio Amati +236337,Javier Recio Garcia +1372046,Arnaldo Marrosu +1394954,Samuel Craven +1311274,Tiffany Mak +1131168,Peter Allen +1635484,Jaime Leigh McIntosh +1197468,Don A. Judd +1466251,Greyham Feehily +1077402,Maria Karlsson +936980,Elizabeth Van Dam +1658500,Tom Breitling +1429868,Maciej Bochniak +1577957,James Kozier +1178584,John Swetnam +1555547,D'Arcy Niland +980218,Lee Seok-hoon +1837989,Dalia Dokter +19773,Véronique Melery +1448321,Lars Erik Hansen +1049444,Richard Imamura +45990,Joseph Conlan +1744990,Arsenis Polimenopoulos +87535,Hyun-jung Shim +89630,Richard Rousseau +1420773,Myron J. Gold +107331,John Llewellyn Moxey +1185065,Jack Hutchings +1582399,Timothy Scott Ralston +1184123,Mark Goldstein +235631,Tim Vaughan +1601352,Ioulia Stavridou +1307349,David James Kelly +1484511,John Brawley +1605433,Ann Darrouzet +172805,Paul Norman +1210161,David Schweitzer +1472891,Brooke Satrazemis +1317160,Jim Woodring +1372093,Mark Schwentner +1041473,Hiroyuki Negishi +1672437,Jesse Spears +1780147,Jeronimo Wald +1430076,Josh Weston +1780197,Nina Kötter +1851924,Daniel Vinson +1155146,Jason Eitelbach +148855,Edward Eliscu +1420598,Tim Kelly +1430114,John C. Goetz +144164,Marco Vermaas +927416,Catherine Paillé +1511487,Ken Lerer +1261968,John Kåre Raake +224221,Maneesh Sharma +1423731,Jürgen Doering +1107429,Greg Walter +1078114,Todd Traina +1496662,Carol Ewing +1049426,Noia +1636665,Diane Coote +109429,Zhongjun Wang +1324560,Orhan Kapki +102038,Michael Style +1189980,Vincent Albo +1855272,Moura Budberg +210582,Bob Gebert +1821412,Sébastien Blanchard +1037367,John Gianvito +110196,Apurva Asrani +454038,Mariela Rípodas +1455522,David Good +102935,Guy Endore +1646385,Pia Maturana +1201896,Raymond Mansfield +235227,Luigi Squarzina +1377420,Lennard H. Chan +1556505,Kenneth Cassar +1764097,Rıfat Ilgaz +1108649,Rick Austin +1798338,Jaqueline Riding +1680197,Leonid Kraynenkov +1148723,H.L. Rostaine +1456610,Shunsuke Hirota +21845,Sarah Bird +1324072,Edy Lan +1630278,Jackie Bisbe +591257,Witold Adamek +1409545,Joshua Adeniji +1436717,Marc Vaíllo +1183757,Meghan McCarthy +1178905,Hung Chu +132492,Vereen Bell +110519,Yoshishige Yoshida +1580863,Colleen Kay +1306874,Ryszard Potocki +1708012,Ben Bomitali +224884,Imanol Uribe +1402739,Tony Murtagh +1405262,Allison Arachea +1857228,Alex Vasquez +1533095,Robert Fama +1627914,La Peikang +1357749,Juha Lehtola +1354327,Watsana Benchachat +25046,Marty Bowen +1742501,Daniel Anguiano +1642517,Kent Lin +61796,Peter Holland +1042056,Ryan Wong +260981,Paul Leder +1281398,Jimmy LaValle +1817414,Sally DeSipio +97241,André Thomas +1514651,Jill Winston +1315688,Yuuji Kaneko +1444934,Tania Álvarez +1301380,Jeff Martel +1647025,Darryl Williams +933735,Roberto Santucci +1130043,Luis Álvarez +1293082,Byungwoo Kim +1375350,Maria Hummer +1638139,Taylor McNutt +1653683,Nicholas A. Mudd +1289459,Pedro Subercaseaux +587757,Hitesh Jhabak +1452552,Dong-Yoon Lee +1108963,Germaine Franco +1543718,Karl Frankenfield +1475413,Jonas Berlin +68372,Ariane Guez +1298068,Paul Sadourian +1387540,Neil McLeod +1428202,Gregg Smrz +1335456,Hong Qin +1031763,Christopher Gosch +24851,Mario Giorsi +238400,Ivan Calbérac +1558020,Jim Corcoran +1367490,Wright McFarland +1188752,Kurt Deutsch +998816,Sophie Leblond +1002482,Sofian El Fani +1168474,Albert Sánchez Piñol +1141787,Jim Halfpenny +928333,John Constant +1271472,Virginia C. Andrews +1151941,Judy Jonker +147112,Marco Martins +1817356,Olivier Vanaschen +1372427,Jacob Schwarz +1820445,Julie Edgeley +1829975,Janek Lender +108190,Aron Siegel +938919,Stuart Simpson +99586,Kim Waltrip +1562373,Winter Ramos +1588545,Ronnie Pilgrim +1166334,Aleksei Samoryadov +1731666,Nicolaas Bertelsen +1590963,Philip Glorioso +107183,Chuck Walker +10788,Steven Lawrence +1825449,Amanda Malia +1232650,Chris Roland +1577977,Jürgen Lutze +563649,Catherine Spear +810040,Steve Austin +1091590,Giuseppe Fava +1708040,Jonathan Rossiter +1174459,Chun Tin-Nam +1486489,Duncan Falconer +1116093,Rose Garnett +556172,J.C. Chandor +1646598,Martine Losier +1367819,Marie-Cecile Dahan +1828344,Brian Sidel +1431320,Dario Cecchi +41402,Jerzy Skrzepinski +1258614,Paul Frift +1857019,Jelena Blazic +569737,Michael Taylor +1399975,Lacey Terrell +1797194,Amy Barclay +1103646,Gary Cogill +1477785,Roger Arpajou +1195080,True T. Thompson +1444286,Carol Beadle +1440909,Paul Janssen +931212,Victor Hammond +1282613,Umberto Scipione +1378276,Sam Coslow +1269675,Mary Hedges Lampert +1064439,Kathrin Eder +1495179,James Miller +24870,Carolin Petit +1338132,Stephen Marian +1551367,Blake Collins +1336715,Lauren Ritchie +224591,Thomas Robsahm +1548033,Candle Anderson +14766,John S. Baker +1201510,Antonio Zavala Kugler +22242,Nancy Au +68813,Céline Sciamma +1299876,Pablo Guisa Koestinger +1428911,Ailbhe Lemass +1326488,Jason Trinidad +584598,Hutch Parker +52986,Gay Walch +1621096,Régis Diebold +1407358,Phillip Feiner +232159,David Hocs +1308522,Jamie MacWilliam +970155,Chay Carter +1405645,Laura Terruso +1283039,Marcus Luttrell +24481,René Féret +48140,Wolfgang Hantke +1348662,Martin Šec +1765163,Lohita Phooken +1869361,Satyaki Paul Choudhury +56589,Martine Cassinelli +1003945,Kevin Hageman +222366,David Sohanpal +1551874,Chris Petts +295892,Harold Buchman +95036,Barbara Stepansky +1408394,Harry Wiggins +226101,Jos Stelling +1327184,Yana Stoyanova +1872427,Sam Jamieson +1194081,Danny Bergeron +117821,Wendy Ettinger +1757647,Daniel M. Nussbaum +1453127,Janez Kranjc +1465351,John Higgins +120093,Moe Jelline +1746574,Allen Rudolf +1735409,Leonard Crooks +1414094,Markus Moll +1717318,Jeanette Benzie +223157,Yuvan Shankar Raja +33624,Tripp Vinson +1665420,Habeebullah +1172888,Robert Hargreaves +1162830,Luke Hull +108783,Max Enscoe +1124592,Michael Chambliss +1513394,Christopher Larsen +932088,Scott Speer +1560947,Clay McGuire +1482066,Julian Melzack +227561,Nina Colman +1320560,Garry McDonald +1357871,Kevin Jackson +1448765,Sabine Gerlach +85003,Sachiko Tanaka +1478654,Tuan Quoc Le +1434863,Sarah McBryde +1770591,Park Jang-Hyuk +229966,Mike Knapp +25500,Howard Gertler +1379832,Trevor De Silva +1414167,Ben Moulden +57003,Bernd Eilert +1759296,Nick Infield +34580,Henri Verneuil +1405655,Malcolm J. Christopher +1087318,Carlos Bodelón +1673677,Robert Mirels +567205,Jake Monaco +1400509,Diane Hounsell +1575340,Aaron Brown +230690,Stefanie Azpiazu +938032,João Nunes +1622029,Yulia Klass +230882,James D. Solomon +992113,Deidre LaCasse +1188275,Damiano Tucci +1210668,Armando Suscipi +127777,Samuel Ornitz +929112,Ephraim Smith +939611,Rodney Johnson +1120805,Gastone Carsetti +57343,Kevin Misher +1463376,Darrell Tachibana +44084,Julian Grant +1336913,Tomas Naug +189989,Bruce Lansbury +1642833,Sean Genders +74198,Anna Lee +1555209,Murray Adler +1862933,Matt Marich +1426438,Jerzy Gościk +1853234,Anna Chistova +100645,Michael Fischa +1666527,Suzie Gilbert +1286582,Derek Rittenhouse +1125523,Claudio Morabito +1228033,Austin Jack Lynch +1636827,Anderson Lau +1466250,John Lindlar +1176920,Ainsworth Morgan +1164454,Sarah Anderson +1511447,Franco Pante +1415330,Donita Miller +1642547,T Santhanam +1381236,Kiku Vidal +1712841,Nikki Parrott +222244,Bruce Bushman +1415999,Joseph Formosa Randon +1004835,Jeremy Dawson +238215,Erhan Kozan +88108,Christo Dimassis +1574321,Selin Sozen +145193,Spencer Berger +1475897,Alex Bovaird +1466974,Sebastiano Rizzo +17162,Ed Elbert +1621904,Kareem La Vaullée +1427840,Gábor Hevesi +1350796,Karen J. Lloyd +1499935,Ramón Rodríguez +240735,Antonio Negret +1418130,Cheston Hervey +1575348,Susie Coulthard +1437664,Catalin Cristutiu +1335149,Muhamed M'Barek +1502934,Jay Dallen +46281,Jeanne Le Guillou +1268561,Simon Willcox +929049,Paco Limón +1417170,Hannah Purdy Foggin +1485183,Andrew Bieber +37681,Gerhard Schirlo +1458440,Amber Kirsch +937980,Bo Hakala +562671,Rick Lamb +1606271,Roberto Aristarco +1446591,Dror Kasinsky +1186361,Marie Pavlenko +1623954,Larry Meyer +1113456,Lyndon McCray +71287,Kim Roberts +1738145,Donna L. May +1428168,Noémie Saglio +1049452,Alan Sutton +233073,Ravi Yadav +571988,Jim Connock +229135,Alanté Kavaïté +1021730,Frank Zuniga +1356808,Gabriele Gregorini +1643804,Brian Ross +40472,Mareike Lueg +118674,Lu Zhang +1611978,Arturo Rodriguez +1300939,Steve Jamison +95858,Jay Lacopo +1481334,Kyle Tekiela +1477211,Steve Gorn +1297471,Emmanuel Hachette +1725774,Alex Wang +1708008,Brendan Monk +1428876,Robertto Karas +1400844,Alessandro Borgese +1643834,Erin Simkin +16711,Christoph Merg +1416939,Charlotte-Rose Kay +11526,Lucien Tainguy +1050026,Corey Danna +122277,Sasha Harris +1017243,Julien Jabre +1489813,James Mathers +1331172,Peter Pietrangeli +1594162,Volker Ehlers +1404674,Mathias Rubin +36845,Wolf C. Hartwig +1905082,Jan Hübel +1646435,Maurizio di Clemente +1397716,Carrie Ray +1053852,Ognjen Popić +1172490,Parveez Sheikh +1816409,Craig Clements +123292,Finni Johannsson +1191478,Oh Seung-Hyun +1213831,Matthew Graham +1405266,Erik Boccio +558639,Alex Lovy +27147,Joyce Eliason +194276,Paul Osborne +928258,Karen Hottois +1880909,Brent Pickett +1650632,Emmanuel Germond +1553775,Jennifer Stroud +166149,Galen Thompson +1179020,Irmgard Pagan +1293637,Seonggwan Kim +128782,Brown Holmes +1507244,Barry Jay +1337628,Louis Venezia +1343809,Alfio Caponetto +576220,Patrick William Muller +1455497,Jill Brown +67285,Grzegorz Kedzierski +201210,Nate Walcott +239152,Carlo Crivelli +1681158,Anja Snellman +1120522,Ichirô Takase +1761137,Kristen Graham +929977,Ken Duer +1486025,Ben Sachs +1382251,Peter Nalli +223236,Jim Lewis +1448310,Olivier Marcouiller +1489517,Hiroshi Furuoka +1761914,Tapio Aaltonen +1351716,Klas Jansson +1445830,Jonathan Carlos +1354356,Watnadech Samanchat +1451997,Nicholas McGrath +1411839,William Groebe +227455,Lisa Langseth +532757,Mark Roper +969075,Helen Pritchard +1608776,David Robinson +1719411,Brian Swanson +75455,Ruth De la Lande +1484198,Ian Cope +1048,Melvin Shapiro +1672757,Elaine Epstein +1116419,Bil Godsey +239763,Osamu Yamazaki +90542,Mark Cullen +109744,Ryan Polito +56240,Mauro Pinheiro Jr. +23851,Tracy Perkins +1405777,Marcelo Brasil +1037999,Jeremy Gillespie +1815944,Jason C. Lewis +1341116,Orhan Oğuz +1717741,Michael Gilbert +1341762,Maral Kalinian +1198740,Shaanan Street +1729094,Anthony Raymond +63716,John Quaintance +1085325,Ramchandra Mahadik +70125,Shinji Komori +1302511,Dena Harman +566309,Tatiana De Rosnay +1760488,Lucia Foster Found +91394,Ric Burns +1676191,Ira Proctor +1542378,Emma J. Slater +1149944,Savanna Cummin +1815620,J. J. Madaris +1824235,Roxanne Pinheiro +1162217,Rob Hardy +72719,José Luis Dibildos +1592194,Yasunojô Kawasaki +33467,Marco Scarpelli +1381703,Ajay Kumar P.B. +1447494,Parzival Rothlein +1577973,Mike Kolafa +1551912,Michael Barosky +1635738,Michelle Anderson +566360,Lee Lazarow +1322011,Jennifer Kamrath +1331182,Monique Thomas +937581,Hervé Gallet +1521323,Eliska Doubková +960384,Leonard Finger +1757625,Cory Fleming +73855,Francesco Piccolo +1380935,Hedvika Hansalová +1333977,Lori Agostino +1448547,Stephanie Trepanier +1507499,Marc Folan +1120511,Mario Sbrenna +234948,Chris Freihofer +1820846,Laurence Klavan +57515,Jeffrey Allard +1640709,Elena Rapondzhieva +1624239,Matt Felker +1347740,Shayna Brown +1124083,Kerry Fulton +1588224,Enzo Zocchi +1305153,George Paterson +1367916,George T. Morrow +41041,Christopher Smith +1236255,Cindy Kerber +1519351,Marie-Eve Tremblay +1041472,Ryo Takada +1324067,Rodrigo Sandoval +1448106,Adam Chanzit +130143,Howard Hall +30302,B. Traven +1606176,Morag Smith +1816046,Christoph Domanski +1622317,Jeevin Johal +1210065,Hugh Stanislaus Stange +1847978,Federico Vitetta +1906518,Raman Maroo +91950,Tony Huston +1472449,Massoumeh Emami +1594191,Pamela Goldammer +1852946,Anna Jung +1568245,Tommaso Colognese +1428830,Michele Munoz +1322446,Andrés Garretón +1418285,Tsuyoshi Suzuki +1611976,Jenn Albaugh +1287378,Mildred Wirt Benson +1193908,Lisa Barrett McGuire +1345255,Eric Bromberg +1687796,Yuriy Arabov +1660723,Joshua Min +1594070,Dan Sedlacek +938147,Irene Starewicz +1520849,Fumio Hashimoto +152000,Terry Marcel +1117901,Alexander Grin +1755575,Katharina Keil +209373,Bryn Higgins +1493203,Anthony N. Gurvis +145984,Mark Jerome +1630904,Danny Singh +80947,Giorgio Bertolini +1378719,Carolyn Bentley +1545956,Eva Zelder +1117108,Ellie Bastian +983595,Charlie Campbell +1667046,Gilles Mathot +5598,Kai Lüde +1418424,Sarah Potter +89724,Nicola Roberts +68294,Gail Parent +1492146,Anne Carroll +36251,Erich Holder +1172571,Yusuf Khan +40712,Eunice Huthart +1001546,Brooke Bernard +1800388,Tom Butterfield +1550760,Marc Calvelo +1537856,Kim Woolery +17312,Paul Shapiro +231357,Manoj Tyagi +1878859,Julia Hall +1458316,Álvaro Díaz +1760327,Vijesh Rajan +1697785,Trevor Davidoski +1457942,Ashlen Aquila +1459911,Mark S. Wright +1862611,Arthur Neves +60316,Caroline Levy +1520236,Justin Small +1547758,Brian Bishop +550956,Yee Chung-Man +1325219,Trista Jordan +1191056,Rody Vera +549494,Thierry Schiel +1301111,Paul Blacknell +171042,Steve Cohen +1619156,Fabian Gasmia +131611,Ralph Murphy +1547220,Tom Bancroft +62665,Tim McGregor +122591,Carl Hunter +30400,Aleksei Aigi +1293460,Dagmar Weaver-Madsen +1568961,Gavin Morgan +132523,Mariko Matsunari +19658,Greg Shapiro +1138213,Paul Travers +1729036,Antoinette Scherer +1621312,Claude Farny +107743,Gunnar Staalesen +1042634,Ho Meng-Hua +90505,Minoru Nishida +1438028,Gus Furla +1642021,Kilian Drury +1448320,Hege Anita Berg +37993,Monique Annaud +1721400,Aqeel Qureshi +1337328,Garth Stevenson +1726764,James Eidel +1018976,Lucas Vidal +221445,Horst Freund +1720975,Ho Ka-Fai +1180577,Sylvain Dhomme +1493200,Gil Spencer Jr. +132455,Mijke de Jong +1302793,Mitchell Lestner +1523169,Ouellette Deby +1324695,Luigi Mariani +1721906,Helena Nowicka +114715,Colleen Murphy +962936,Matt Ruskin +545101,Parviz Abnar +147207,Corey Michael Eubanks +1638333,Anna MacDonald +1877720,Jordon Toms +1356834,Jack Arbuthnott +1302522,Daniel S. McCoy +19865,Konrad Wolf +1381308,Claude Luyet +1707415,John P. Cazin +1357058,Andrew M. Siegel +1849146,Joachim Imbard +70185,Ursula Mai +1494147,Kirill Baru +1263443,Brandon Jones +1708053,Tim Morton +1676766,Kala Mandrake +1445832,Danny Brown +590786,Fred C. Perry +1054830,Hilly Martinek +128625,Leo Zochling +56847,Rita Rognoni +1109734,Diederick Koopal +1156298,Nicolai Lilin +12572,John W. Micheletos +224715,Edith Carlmar +1821942,Rosemary Finney +86118,Dennis Hallman +1437716,Asim Ahmad +22078,Mark W. Koch +1793189,Sarah Potts +1409784,Elizabeth Anne Hanley +225715,Albert Hurter +1293568,Michael Lavelle +556737,Giuseppe Trepiccione +1760121,Eddy Chamichian +1386893,Mike Le +34875,Jan van der Zanden +552707,Geoffrey Enthoven +72886,Andre Fahning +1317390,Brian Hamm +185056,Ian Stuart Black +555578,Shozo Honda +1108983,Dominique Willaert +1605639,Ian Osrin +1174597,Gary Shaffer +1156314,Maciej Maciejewski +1511511,Jesper Zartov +1340728,Glenn Marks +132782,Robert Harari +55916,Gabriele Salvatores +1740765,Joshua Douglas-Bagley +1204518,Dave Ellis +1172635,Frédéric Bruneel +1638547,Whitney Donald +1539820,Motonobu Kiyohisa +1611980,Corinne Kassor +591537,Derek Ford +1126741,Sander van Meurs +159506,Dorothy Cooper +1444796,Maarten Swart +1037272,Emiko Omori +1841578,Hanan Mahbouba +1103521,Joshua Oram +1387156,John Pellatt +1810243,Jean Lefaux +150127,Pang Eun-jin +591273,Krzysztof Zanussi +1483635,Geoff George +1336910,Maxine Blystad-Collins +1127087,Arthur Greville Collins +1537339,Frantisek Sandr +1363205,Luke Dunkley +34344,Walter Holscher +1362582,Lynn Del Kail +1183432,Deborah Eve Lewis +1779298,Aleksandr Zeldovich +1466699,Maya Kvetny +1507021,Jorge Hernández +1785951,Rakesh Singh +110257,J.E. Moore +101022,Neal Acree +1293598,Jiyong Hong +1308100,Tom Nagae +1084771,Adrienne Flagg +1410098,James Passanante +185,Katsuhiro Ōtomo +588882,Claude Cloutier +1455540,Johnny Turco +91888,Kenneth Heeley-Ray +1759540,Michael Shea +1410560,Jolayne Crabbe +1732091,Dora F. Kwak +1293614,Nari Son +1056105,Julián Goyoaga +1777259,M. Smrzová +126315,Tony Ayres +1030966,Jeanette Brill +1000736,Séverine Cornamusaz +1367135,Trenton McRae +1426702,R. Kent Evans +146836,John Suits +1540174,Richard Fox +1093998,Tim Sandlin +1491504,Rael Jones +1601700,Roberto Magnifico +1667712,Perry Ogden +346689,Lynn Harrison +72622,Matt Cooper +1752035,Irene Parlagreco +1558902,Boris Yermolayev +1407741,Kristopher Weaver +1426716,Leila Lyytikäinen +558636,Maartje Seyferth +78845,Arthur Lubin +1306680,Giuditta Tarantelli +1561898,Vladimir Bystryakov +1161580,Linda Elena Tovar +1423421,Andrew Logan +986277,Corinne Clark +1050252,Alrick Brown +1691490,Ashley Fabre +98776,Roberto Gianviti +199199,David Wilson +1630217,David C. Thomas +216949,Anita Doohan +1336419,Lauren Oliver +17473,Christophe Bourreau +115311,William Ewart +1687729,Galina Shadur +1261340,Jessie Gabe +1545054,Marta Stankiewicz +585035,Óscar Aibar +1400804,Cindy Thomson +71495,Sophie Vercruysse +96849,R. Dale Butts +1486901,Trayton Adair +1780154,Normann Büttner +131516,Derek Hoffmann +1703126,Terry Archer +1167225,Leonid Vereshchagin +1172909,Mary Matthews +1402658,Ivana Panic +1400497,Michal Fojcik +30795,Dirk Uhlig +1746446,Luke Wilding +1510552,Rodrigo Rojas Echaiz +5393,Chad Fischer +1635716,Dagfin Akselsen +1589495,Giusy Bovino +1452231,Andrea C. Brotherton +155945,Jack Heller +200043,Kurt Sutter +64694,Tong Yuet Fung +53078,Jamie Patricof +1728384,Blythe Robertson +1484509,Anthony Maras +1440757,Matt Ardine +330960,Susan Cuscuna +1601707,Dragoljub Eric +1039201,Sam Fischer +1367658,Élodie Van Beuren +1682640,Joseph DeMartini +38168,Willy Kurant +1815625,Mark LeDoux +1426744,Mike Woroniuk +239674,Aleksandr Mindadze +1406422,Stepan Altrichter +1775582,Victor M. Giarrusso +114455,David A. Frank +1616435,Cynthia Salazar +461363,Daniel Gold +1107181,Simone Lenzi +144483,Ken Blancato +1136396,Jojo Hui Yuet-Chun +1533677,Darren Blumenthal +1486210,Damián García +933557,Casey Spira +1817484,Pinhua Chen +1507477,J. Greg Abbott +1573340,Niels Maier +1746248,Lauren Wild +1650731,Simon Beaupré +127096,Jeffery Beach +150098,Rupert Goold +554869,Ryôe Tsukimura +1458578,Katy Wood +28727,Frank van den Engel +1116114,Bhavesh Mandalia +1226286,Jack Mills +1284181,Sam Taylor +1411043,Arwa Salmanova +1815644,Brian LeCoz +1407413,Don Van Atta +1399067,Niall Fraser +1797482,Dan Baker +1550636,Karen Asano-Myers +1146104,William H. Frake III +1288764,Matheson Muir +1616018,Sebastián Álvarez +1690611,Igor Kantyukov +1394725,Michelle l Boucher +1195778,Tony Berg +1772182,Jacob Berggren +78345,Katsuya Kondô +1324068,Adelle Achar +1755111,Tessa Salt +1533568,Jerome Leroy +66228,Karim Hussain +1659286,Sanzhar Sultan +1339059,Andreas Grasshoff +63784,Candice Elzinga +1552475,Taylor Matheson +1116222,Florian Legters +1286581,Erica Parise +1518766,Katie Sharrock +1070382,Greg A. Sager +1815726,Ben Smithers +1133995,Ha Faan +1371519,Jessica Clarke +1176209,Grigori Gorin +130574,Neal Barbera +1411880,Jeppe Rønde +1646500,Gregory Vincent +1570572,Ken Nakamura +1191856,Adolf Nacházel +548333,Jennifer Hoppe +1536960,Jarret Kerr +1403883,Jaap Vrenegoor +946759,Sofia Sondervan +5561,Antonio Margheriti +1298876,Brandon Lott +1505159,Jeff Cullen +1340092,Sidney S. Van Keuren +129308,R.S. Allen +132513,Hiroyasu Yaguchi +1325612,Laxmikant-Pyarelal +1673199,Jonako Donley +166993,Jodi Binstock +1463808,Jason Esquivel +1309258,Takaharu Ozaki +1537531,Jason Tamasco +1731565,Gloria Alexander +12805,Stanford Sherman +1442642,Katherine Nolfi +1727620,Myriam Roger +30587,Richard Goudreau +1290162,Helmer Walton Bergman +1297713,Pamela Stahl +1707984,Dario Swade +1315991,Christopher D'Elia +88556,Glenn McQuaid +98837,Leonid Nechayev +1857587,Alejandro Peke Correa +111893,John Coven +1621466,Edward Evers-Swindell +1313833,Jasbinder Singh Mann +563578,Fernando Barreda Luna +1492756,Michaela Melian +1486816,Adam Zuckerman +1523022,Edward McLoughlin +1510554,Marichi Palacios +122938,Mike McFarland +1453526,Rachel Larsen +1128260,Carl Macauley +94328,Melville Baker +1322091,Jean-Charles Le Roux +1417176,Richard Chesebrough +1526607,F.U. Ramsay +1372221,Joseph E. Aiken +1170574,Fujio Akatsuka +956672,Eric d'Arbeloff +129602,Julian Kemp +1340101,Edward Levinson +111418,Frank Magee +583463,Jason Poh +100846,José Antonio Escrivá +1033083,Henrik Van Loon +1797494,Frank Hayes +1260422,Takis Vougiouklakis +1502723,Walter Abbey +1304294,Megan Brown +1304300,Shelley Rucker +1396430,Matt Sobel +1188970,Henry Cora +1477316,Michael Ryan Hahn +1335148,Nemanja Djordjev +121140,Christopher J. Corabi +121216,Hawley Pratt +1135637,Tyler Hughen +1638556,David McClung +80992,Keith Cossrow +1426158,Allison Schulnik +1573319,Jacquelyn Frisco +1629784,Quenell Jones +1628084,Dan Adlerstein +1424646,Patrik Thelander +1337656,Meagan Lewis +1529358,Alice Felton +1799844,Corey Reeser +1328455,Hannah Alpert +1179891,Steeven Petitteville +56917,James Herbert +1460740,Emilie Cockels +1362059,David McKenzie +665800,Takashi Ujita +37915,David Greene +1389933,Niharika Khan +74200,Thomas Chung +1302257,Lawrence Riley +94755,Jukka Nykänen +150953,Michael Vickerman +1185211,Can +1661397,Michael Welch +1732766,Ridvan Tual +12048,Phyllis Carlyle +1697786,Marco Krapels +1519843,Emily Durtnall +1758556,Budsaparit Chareemuy +1368886,Kalin Nikolov +1372067,Tomm Jacobsen +1053606,Cheryl Bascom +1317312,Chris Jobson +1146748,Robert Sahakyants +1725767,Daniel Baker +1013009,Gustav Deutsch +13930,Bruce Moriarty +84641,Lewis Seiler +1830742,Kayla Mackey +98190,Timo Rose +1377412,Valentine Pavuls +1161459,Tobias Munthe +1363129,Eric Durringer +1176359,Charlotte Kruse +1367827,James Pastorius +1570597,Jacquelyn Racine +1399549,Jac Mulder +1243871,Mike Reilly +1635535,Karl Chisholm +121674,Łukasz Palkowski +1635187,James Peterson +1705460,Marijke deSouza +28976,Jack Bender +1489811,Alice Campbell +1562617,Malcolm Reeve +1363348,Gergana Deleva +76422,Ric Roman Waugh +129250,Asaf Shalmon +1337667,Yossif Mladenov +1815005,Rachel Greene +1367124,Ignacia Johnston +939444,Sierra Pettengill +1490939,Katherine Distefano +1556316,Patrick Cusack +49900,Ermanno Donati +1415077,Sara Mineo +1758549,Sirinapa Boonserd +989610,Andrew Grush +1561258,Madeline Samit +1841823,Kate Lehto +1079954,David Bailey +1479444,Jill Dempster +569859,Martin Stoltz +133828,David Diamond +1087623,Tom McSweeney +1457325,Michael Cozens +115760,John Larkin +1607445,Hideyuki Shiino +1331136,Lou DiGiaimo Jr. +223791,Pietro Francisci +142005,Hallvard Bræin +1199584,Carlos de Oliveira +1907215,Etienne Poulin St-Laurent +1568841,Sandra Germain +932284,Lennart Landheim +1840331,Hiroya Sonoda +428344,Hannah Shakespeare +558075,Randall Faye +1155118,Mark Penney +1859977,Whitney Hagan +1424707,Chris Mulsoff +133365,Geoff Ramsey +928582,Conan Skyrme +1419165,Derek Burgess +1494534,Shaun Garcia +568258,Michael Samonek +1535111,Ron Koeberer +1302513,K.M. Kaze +1705456,Santosh Singh +1151788,Andrea Zaccariello +52459,Anja Jacobs +63575,Tiffany Chen +1623951,Ove Langevei +22177,Michael Arnal +64001,Michael Sauter +1429370,Alexander Valev +1404454,Ethel P. Chaffin +28996,Lupu Pick +24164,Andreas Olshausen +1630948,Emmanuel Delis +1446397,Christian Bielz +27449,Emilio Martínez Lázaro +1189794,Lisa Diane Washington +88623,Jim Stenstrum +1326965,P. Karthikeyan +1828359,Raymond Tyrrell +1313766,Felipe Braga +21390,David Glasser +972483,Zeng Jian +1466097,Hiram Garcia +1815341,Stuart F. Wilson +1560423,Peter Stubbs +1281607,Lee Mountjoy +1869387,Alex Reinach +1323533,Matt Charman +1719401,Wicks Walker +224402,Robert Odell +1305095,Federica Bosco +1411074,Ray Marston +1103648,Derrick Evers +1353232,Masahiro Tamura +1125240,Barney Elliott +1417521,Aleksandr Belyayev +1780143,Jutta Schornstein +1674151,Magnus Ramsdalen +70616,Gerald Potterton +1397717,David Kaplan +1127910,PoPing AuYeung +1186167,Marion Nelson +1602608,Shin Nagata +1682323,Andy Selsor +63727,Aleta Chappelle +1640326,Preetisheel Singh +234569,Raffaello Matarazzo +1056396,Teodor Vulfovich +285385,Gaby Dellal +1500346,Hayato Kawai +1504429,Markus R. Vogelbacher +1448319,Anne Sandberg +1548880,Ray Milazzo +1641406,Francine Watson +1825662,Reith Wesley Gibson +1818205,Steven Hoeg +1419099,Cameron Matheson +1596324,Robert Kurvitz +62922,James Liston +1190100,Lindsey Weissmueller +1409026,Alex O'Flinn +1554375,Bernd Angerer +1571488,Katie L. Murphy +1384400,Lisa Fozzati +1379433,Victor Trichkov +1017245,Leo Hinstin +1451449,Sharon Brook +5466,Frank Churchill +143522,Daniel James +1828328,Heather Young +1412921,Marc Guidetti +1771038,Susan Levinson-Bixby +1706502,Giri Tharan +127039,Sol Baer Fielding +999564,Michael Narduzzo +75003,David Dodson +1126734,Attila Szalay +1314075,Jaesik Hong +51748,Danilo Desideri +1708011,Celeste Veldze +103690,Renny McCauley +143080,Vassili Silovic +68530,Scott M. Rosenfelt +1217196,Alan Uger +1726802,Kazuyoshi Takeuchi +1011834,Sarah Pasquali +1377834,Charles-Henri Avelange +1792346,Kato Banks +1680642,Francis Connolly Jr. +1308596,Margit Nordqvist +76888,Ilayaraja +237364,Genki Kawamura +1075506,Rama Burshtein +15089,Jim Booth +1422262,Patrick Ryan +1625803,Joe Posner +1409891,Carling McManus +1402520,Gerard Brigante +1518779,Ines Richter +1698981,Ana Criado +1811593,Nadine Frève +1394722,Justin Andrews +1639168,Lee Vandermolen +112201,Sophie Fiennes +1093407,Enzo di Gianni +1221442,Colin Davies +57583,Christian Colson +129433,Eric Rochant +100407,Luis Méndez +1205323,Chasia Kwame +1468519,Anna Gerb +1173285,Julie Richard +1797500,Andrej Blom +928498,Franckie Diago +55728,Václav Vorlíček +171949,Jenny Deller +1770979,Mike Hill +41980,Ettore Sanzò +946395,AJ Schnack +107670,Emil Braginskiy +1161626,Ronan Maillard +1785023,Raju Ahmed +1637885,Juan Muñoz Ravelo +1379986,Alessandro Cioffi +1356428,Christopher Gay +16140,Yoshihiro Ike +112833,David Blair +1409288,Wade Chamberlain +1775132,Claudia Kolland +1829844,Gary Nolan +72441,Johnny Lee Schell +1084817,Shajith Koyeri +1494785,Emma Jensen +983884,David Tabbert +1758587,Saithip Montrikul Na Audhaya +56435,Stephen T. Kay +1103515,Steven Squillante +592353,Eric Tomosunas +1414453,Prashant Sharma +1579391,Makenzie Kellerman +1606213,Chris Tromboukis +1410591,Chloé Van Lierde +565407,Pio Angeletti +1554690,Christopher Butler +39885,Jacques Poitrenaud +1544665,Polly Duval +1361335,Mona Steffensen +936316,Jacques Bonin +1185062,Gregory Prange +1814962,Louise Lonegrove +1781642,Clayton Young +937582,Alix Deschamps +1139094,Chris Lehane +1631516,Cliff Lanning +955581,Ted Swanson +1768803,Mannan Shaah +28922,Hubert Bartholomae +1392614,James Shannon +1184646,Fabienne Wen +1815616,Chad Pruett +1099914,Ben Demaree +1419112,William Paley +1683632,Merril Greene +175795,Michael Toshiyuki Uno +1443029,George Foulgham +110226,Ajit Kumar Barjatya +1096775,Zsolt Bács +1332232,dB Bracamontes +1044183,Céline La Frenière +1125575,Chen Bao-Guang +1580855,Patrick Thomas O'Rourke +1439015,Jenn Moye +1742978,Orsolya Sallai +1555208,Moira Marquis +1121179,André Calmettes +237607,Udhayanidhi Stalin +1428916,Mark Moriarty +31229,Mel Lewis +1335146,Ray Beckett +979152,David Gambino +1037095,Michael Pellerin +1726767,Erwan van Buuren +1402501,Jake Avignone +1641624,Perumal Selvam +1580867,Eli Joshua Adé +1630720,Markus Andreas +1185206,Richard Tassé +90583,Don Argott +1283604,Maxim Shinkorenko +1168754,Joe Beshenkovsky +7713,Beau Marks +1693424,Mirela Rupic +1128155,Amanda Broomhall +1822723,Wes Perry +144071,László Vadnay +1208001,Michael Knapp +67036,Nicolas Sarkissian +1486450,Christopher Roldan +572388,Jean Manse +1382729,Lionel Shapiro +1103638,Will Bakke +34921,Dan Riba +1379999,Reiner Bajo +56341,Mahiro Maeda +1440295,Nicole Balzarini +1831332,Jun'ichi Sakomoto +1708010,Natalie Rowan +1179359,Pedro Buarque de Hollanda +166190,Hugh Smith +1465950,Mark Keady +202495,David Chandler +1574078,Alberto Herrera +1409511,Cary Cook +1770994,Max Wright +444892,Eskil Vogt +1040466,Ahmed Imamović +1841594,Constance Conrad +1799720,Joana Mureb +1622340,Beth Pilgreen +1482257,Mónica Reina +999599,Katherine Difulvio +1154613,Takaaki Ishiyama +1554234,Adrian Burns +1413113,Radu Bazavan +1168766,Jakub Kijowski +40911,Jerzy Andrzejewski +1261117,Adam Smith +1568549,Kate Walling +1019226,Merata Mita +1740784,Zakaria Boumediane +1423986,Robin Sweet +37304,Guido Bertoni +1281413,Jeffrey Grimshaw +584619,Mu. Ka. Tamizharasu +1460751,Lesley King +1635296,Darrell Scott +1414950,Brenda Rousseau +229620,Adrian Belew +1486960,Claire Simon +1479522,Florent de La Taille +225160,Paolo Genovese +1479521,Nicolas Benoit +1222480,Fabian Nicieza +1401262,Dick Hancock +1640556,E Krishnasamy +1579386,Brian Douglas +52991,Sam Hoffman +1642007,Anirudh Singh +1317897,Niko Vilaivongs +1312056,Marie Amachoukeli +1425336,Jeff Ranasinghe +1593264,Ezequiel Casares +7001,Martin Williams +932912,David Cuerpo +129874,Melania Gaia Mazzucco +136975,Patrick Jenkins +1009380,Thomas Arent +1460838,Gabriel Hammond +1868699,Andrew Sutherland +1452551,Ji-Hyun Cha +1512675,Matt Johnson +1449627,Josette De Lima +1212142,Jon Glover +223973,Rudi Van den Bossche +1124948,David Sparkes +38057,Harry Haynes +941867,Steve Traxler +585261,Mukul Anand +1208281,Anne Pivcevic +930341,Edith Dell +586920,Ben Karlin +1308692,Anatoli Sofronov +1606172,Ben Oliver +1155551,Kindra Marra +586156,Marcin Baczynski +65626,John M. Taylor +1583224,Gerold Schmidt +557678,Jan Willem van den Brink +22414,Mark 'Reg' Wrench +1341661,Ganesh Kumar +1821894,Stephen Meagher +1411124,Pedro Moura +1449178,Bill Westenhofer +1360367,Mario J. Ramos +1059894,Kirsi Liimatainen +537978,Pierre Falardeau +183044,Stephen Levinson +1812272,Cherilyn Hawrysh +1367939,Jordan Bradley +1202165,Jema Pamintuan +1272213,Lee Galea +1409705,Elijah Dylan Costa +1429332,Jenny Arbour +1460615,Jonas Ward +1811596,Amelie Poitras +1618761,Stephen Rubac +1524920,Chad L. Scheifele +1759737,Doug Uttecht +1120000,Thodoros Maragos +126755,Irina Lubtchansky +1353682,Naphat Chaithiangthum +1463176,Christian Eisenbeiss +1490952,D. Scott Guthrie +236498,Grigori Konstantinopolsky +1539796,Jan Vseticek +50680,Timo Berndt +1513957,Lukas Bossuyt +1364791,Annina Enckell +963927,Kim McCraw +1269935,Lau Shut-Yue +34967,Rick Benattar +6813,Fritz Jüptner-Jonstorff +265297,Floyd Mayweather Jr. +238742,Ernst R. von Theumer +1093441,Jean Françaix +1366426,Kerry Lenhart +73124,Akio Sakai +1428837,John Mahaffie +1823335,Knud Bjørne-Larsen +17707,Annegret Stössel +38228,Elick Moll +1800810,Bruce Buehner +574148,Mathieu Bélanger +1422665,Luke Harvis +1642267,Andy Morrison +1658887,Dmitri Makarov +1632802,Jocelyn Carpenter +1194106,Sam Hobbs +1817355,Bernard De Dessus les Moustier +140073,Fred Maguire +1035746,Thomas Anargyros +11921,Maria von der Osten-Sacken +1544190,Jake Aron +1457040,Joshua Kun +126599,Vincent Patar +23316,Gérard Vandenberg +1673684,Trevor White +73348,Fainche MacCarthy +19601,Makiko Futaki +55874,Michele Colucci-Zieger +1746447,William Bell +1192774,Larry Brown +1033123,Craig Macneill +1004602,Yevgeni Bauer +1868465,Paul Novokshonoff +1652104,David S. Powell +89932,Benjamin Stoloff +1479529,Pierre Leduc +1417181,Emily Attwood +82859,Craig Singer +1336706,Matthew Morgan +1410111,Joseph Paolucci Jr. +937928,Nick Higgins +1440406,Warren Mazutinec +140470,Mitsuo Yanagimachi +1431510,Jim Petrak +1379211,Stanley Cohen +32814,Holger Karsten Schmidt +555152,Katsu Hoshi +81271,Stephen Peters +64229,Marina Starec +1868974,Murray Campbell +969004,Jacques-Henri Bronckart +1044765,Stefano Chiantini +1334701,Aimee Pierson +1049549,Diego Macho +564573,Maria Kiisk +1117104,Danille Brown +1274309,Randy Singer +26168,William Mace +1193620,Erin Benach +137495,Shūji Terayama +28543,Linus de Paoli +43890,Brent Shields +986564,Sanjay Jadhav +1202002,Jeff Keith +1818210,Mary Beanish +1880929,Anthony Lordon +1799718,Maurício Tagliari +1551816,West Dylan Thordson +120127,Gennaro Nunziante +928337,Patrick Riester +587970,Matthew A. Cherry +1747170,Addo Gallagher +1410302,David Van Dyke +1722537,Lisa Wolofsky +1635184,Lisa Yeiser +1594166,Martin Maguire +1460817,Molly Craytor +54368,Urbain Loiseau +1621903,Philippe Bordelais +966170,Jake Rademacher +1052183,Florentine Bruck +1391798,Vicky Mulholland +1354340,Panchai Sirisuwan +84818,Jacques Besnard +1208451,Gaspare Palumbo +1091545,Roland Price +41025,Sarah Teper +1109377,Mark Willis +565662,Carl-Olov Skeppstedt +16370,Jean-Christophe Magnaud +1830192,Jaspreet Bal +1407720,Yolanda Sheridan +1731670,Ian Bricke +1746456,Dan Owen +962197,Mariana Rodríguez +1571521,David Zimmerman +1393439,Michael S. Martin +1083434,Joseph-Louis Mundwiller +1418355,Frida Norrman +1760582,Ku Hsiao-yun +1640350,Richard Daldry +1126234,Michael Elliott +1637899,Pablo Ríos +1408385,Stefan Gerstheimer +797316,Dhruva Chatterjee +1544276,Guido Michelotti +1291685,Taedong Park +153895,Christian McLaughlin +1388869,Richard Ollosson +148506,Zion Myers +80762,Naoyuki Tomomatsu +1647425,Darren Thornton +1285855,Annell Brodeur +1002356,Stu Goldberg +59915,Franco Piersanti +1393326,Jim Mitchell +550519,Nikolai Rasheyev +1417873,Michael Sana +228708,Manuel Sicilia +213330,Juha Wuolijoki +1034679,Lisa Maria Falcone +12184,Shigeru Watanabe +114392,Barbara Johns +1206449,Ariel Shaffir +103360,Arch Oboler +138183,Keith R. Clarke +1417082,Gina Cascone +1460034,Dana Vargas +1338480,Vicki Vandegrift +1546434,Jane O'Kane +65836,Giuseppe Colombo +1093252,Leopold Jessner +1704068,HipHop Tamizha Jeeva +1088275,Lee Gunther +1150470,Sara Butler +223010,Steven Dieveney +1828377,Tim Leyes +1030397,Thomas Sterchi +553887,Yuusuke Kishi +1570440,Louis Baum +1475729,Katharine Knight +1061518,Bradley Miska +99386,Gennadi Kazansky +572367,Richard Miranda +199534,Carole Lucia Satrina +14291,Ethel Lina White +1512725,Kat Percy +1470309,Don Gough +1303423,Vladimir Polyakov +559991,Sol Papadopoulos +1798948,David Koh +590591,Friedrich Fehér +1560221,Leslie Bercovitz +1324816,Rose Wicksteed +1797509,Jim Bowes +1450992,Avner Engel +1340083,Wendy Shepherd +1501053,Dennis Madalone +94003,Yim Pil-sung +1662619,Kristin Bye +1464982,Graeme Stewart +1194471,Peter Iovino +1453539,Gregory Smith +1754129,Sean Mulligan +13348,Howard Hughes +1458714,Michael Powsner +1491543,Ryan Schwartz +1616061,Tyler Newhouse +108681,Paul Dickson +73645,Christian Frei +1851893,Ryan Stratis +1429322,Iain Baird +1410163,Ali Utku +1464983,Garret Daly +1734272,Curtis Norton +1555793,Nimitt Mankad +1271735,Harry E. Otto +1536893,Bernie Childs +1497579,Knut Haraldsen +1031500,Neharika Singh +1756104,Pankaj Kumar +1485470,Ted Holliday +1388533,Samantha McDonald +1642571,Ulfo Münster +1006471,Cezary Grzesiuk +1002552,Fred Karger +1082434,Michel Franco +113609,Pascal Bourdiaux +1351724,Gadou Naudin +1164082,Caroline Karlen +1418345,Stacey Herbert +76054,Luke Freeborn +1330559,Thom Cammer +236449,Piero Chiara +1481502,Concepción Taboada +137688,Elmo Nüganen +1252901,Steven Michaels +1367941,April Swartz +30058,Steven C. Miller +1542420,Ahn Byoung-ju +1554971,Teddy Au +95675,Joseph Kuo +1814988,Jeffrey Kim +1816406,David Ferdig +1355491,Saemi Kim +1582735,Juan Manuel Barreto +39668,Steve Carter +83534,Karl DiPelino +132241,Rebecka Lafrenz +1537461,Reagan Mendoza +84801,Elyse Rogers +1734385,Josh Burnell +72684,Håkan Bjerking +1773343,Jérôme Prébois +1340116,Martin Jensen +74741,Peder Fuglerud +105294,George Mendeluk +937956,Pamela Lee Incardona +1150868,Louize Nissen +1859976,James Greig +184582,Brendan O'Brien +1341812,William Washington +1042699,Rob Simonsen +1436974,Max Adams +1412716,Adam Klein +4585,Henry Normal +138630,Christine Boyar +1483579,Martin Wiseman +1225777,Leigh Jason +1190421,Leonid Gayday +1639572,David Leb +1083202,Luigi Petrini +1367217,Tara Starling +1354700,Matthew Stephen Crabtree +1525152,Matt Primm +1279016,Jules Michelet +1364433,Babette Stith +1318269,Xavier Maurel +1625934,Karen Khachaturyan +1457936,Robin Hollander +930012,Alma Har'el +1644752,Gábor Sipos +1360116,Jason Farrar +122223,Shuo Wang +53393,Zane Weiner +1755272,Maarten de Graaf +96948,James Bolton +1536208,Vincent Poitras +1340749,Mitch Bryars Jr. +1797453,Samantha Dabrowska +1174417,Rochak Kohli +64689,Xinyan Zhang +68775,Ron Hutchinson +6760,Finn Gjerdrum +30698,George Baxt +1078553,Bosco Brasil +1558939,Pascal Nowak +137562,Scott Bradley +938074,Ellen English +1728522,Kevin Lax +1896770,Gail 'Freddie' Godden +1440307,Erich A. Muller +1571421,Bruno Vaussenat +1108987,Tom Dupont +50926,Victoría Pedemonte +1430294,Zachary Ramelan +504509,R. Rathnavelu +29085,Michael Rumpf +31865,Felipe Subervielle +1329933,Jimmy Shaw +1610139,Aurelia Rut +1372914,S.C. Chapman +37975,Philippe Guégan +137127,Kevin Fisher +548205,Pamela Tanner Boll +1747598,Birgit Grosskopf +1797505,James Willis +1175369,M. G. Radhakrishnan +73832,Jessy Terrero +49415,Paul May +1141804,Igor Sunara +1423838,Jason Abell +554360,Soji Yoshikawa +1740798,Jenna Hacking +1815655,Charlie Dombek +1530754,Isabelle Malenfant +83016,Terra Shin +1194383,New Trolls +989687,Jordan Galland +223747,Marya Cohn +1536197,Emmanuelle Villard +1423273,Jakob M. Erwa +103072,Annabel Ross +1653682,Molly Doyle +216067,Patrick Robinson +1412720,Aneta Velizar Kounova +43677,Joost van Starrenburg +1642551,Dan Filippin +24254,Torsten Leschly +1104855,Yolande Zauberman +1242852,Nigel McKeand +1662640,Reid Antin +1726812,Kirk Demorest +1569342,Andrew Johnson +1518575,Jessica Valentine +1179893,Elodie Demey +58826,Stephen L. Posey +1336917,Eirik Ingebricson +104345,Robert D. Larkey +1489481,Niko Zandukeli +1271730,Deepak Kumar Padhy +31967,Rowland Leigh +1406253,Christian Prejza +46430,Jim Czarnecki +57215,Sukanya Vongsthapat +95700,Rune Denstad Langlo +71489,François Pirot +1423896,Maurice Perrimond +105461,Fred Allen +51705,Bernard Salzmann +966721,Dominic Capon +1031128,David Marqués +198555,Jessie McCormack +1621355,Justine Suzanne Jones +1865040,Marina Carvalho +1179833,Omar Zúñiga Hidalgo +1384762,Debby VanPoucke +950999,Anne-Marie Gélinas +1428040,Tunde Babalola +1642590,Ryan McElhinney +91860,Kip Bartlett +1437963,Jenna McGranaghan +1508494,Gabriel Karraze +1486933,Urszula Sliwinska +1108433,Gordon Bijelonic +932315,Cristián Jiménez +1568990,Joeri Verspecht +946119,Fabrice Roger-Lacan +76847,Neville Stevenson +1709127,Joyce Au +1379038,Elliot Scott +970777,Matt Spicer +21683,Oliver Schmitz +1545914,Ben Allard +927998,Roland Engström +1747603,Bia Caldas +1618763,Caroline Miller +221162,Todd Casey +1602834,Masaharu Kokaji +1411129,George Pinnock +1011028,Dan Buckley +1247816,Nobuyoshi Habara +1754078,Amber Unkle +1468911,Zoe Sakellaropoulo +1411271,Michael J. Walker +1403574,Karen S. Uphoff +66639,Michael Hofmann +1783004,Nicholas Gowin +1770592,Sanjay Gupta +1060676,Ilona Six +566316,John Bosher +1437197,Kevin Massey +559747,Justin Bergonzoni +1139644,Cat Bernier +1453618,Ludovic Berardo +1283132,Jan Kean +1122590,Brian Smith +1621900,Jimmy Bourcier +1830184,John Casey +808688,Raj Vasant +17600,Allon Reich +109837,Gerard Johnson +98449,Paul Blaisdell +966439,Richard Hanet +1409438,Pete Kameron +1291269,Joe Popkin +1361786,Frank Lawrence +29725,Arthur Honegger +1409873,Bo Webb +1338156,Sharina Radia +237884,Andrucha Waddington +1102872,Jack Sojka +1057637,Marcello Romeo +225244,Hiner Saleem +1332514,Pip Lingard +1122354,Laurence Connor +1184308,Richard H. Coll +1829856,Guy Bennett +1588850,Patrice Bengle +1271975,Jean-Luc Ormières +77783,Christopher Kroll +1903913,Goran Backman +1227289,Jenna McMahon +1087212,Benji Bakshi +1797220,Damien Stumpf +1757611,Preethi Venkateswaran +1361389,Dan Berk +1396416,Niel Wray +1652036,Emely Martin +1419659,Doug Andham +82079,Manmohan Singh +112092,Peter Hearn +1797237,Kim Menaster +1478050,Sam Masters +1193854,Anthony C. Metchie +1420856,Mito Skellern +1574044,Nicola Mount +130050,Colin Theys +225599,Chad Beck +1329731,Alin Bijan +1095526,Noel Resnick +1412772,Lindsey Suggs +1837875,H. Frank Dominguez +1407260,Nathan Robertson +1636856,Jakob Lofberg +237682,Vernon Zimmerman +101520,John Gilling +76336,Wiktor Ericsson +1570081,Alon Harari +236926,Jerrold L. Ludwig +1175673,Forbes Parkhill +111509,Jean Chalopin +1728385,Peter C. Selig +1869457,Racquel Jenkins +43403,Júlíus Kemp +147529,Sean O'Casey +1349559,David Sanderson +97180,Steve Loter +1772976,Steve Mair +290572,Jeremy Lipp +1597134,Sunny Bawra +1037908,Richard Iott +122633,Burt Gillett +1062641,Naoyuki Yoshinaga +1601350,Takis Giannopoulos +37031,Ralf Wengenmayr +229568,Lisa Azuelos +1302020,Mike Rothman +1636864,Derek Serra +38552,Gary Koftinoff +1361169,James Packer +1600782,Emir Tourkeshi +96374,Russell Lewis +1815245,Mohammad Hattati +1500428,Christian Légaré +1029298,Chris Trebilcock +23168,Karin Michalke +1285606,Ali Helnwein +99896,Robert Berk +1223499,Luís Vaz de Camões +1841600,Abraham Brown +947095,Paul Frank +56207,Philippe Garrel +1799669,Tracy Grant +1089127,Siby K Thomas +1030403,Isabelle Querrioux +1752038,Andrea Pagnacco +1128300,Katia Montenegro-Pla +1388864,Brad Semenoff +102772,C. Roma +1815012,Vivian Hengsteler +1622453,Stuart Cripps +98777,Franco Cuccu +1391647,Matthew Janszen +1178511,Muriel Resnik +1202096,Luigi Pirandello +125282,Cătălin Mitulescu +197825,Lisa Robinson +8195,Stéphane Moucha +585679,Lillian Pyles +1890674,Aletéia Selonk +1202504,Alessio Cremonini +1020854,Mario Piluso +1097220,Dean Smollar +929925,Tania Cardenas +103148,Peter Shepherd +928002,Michael Wils Jensen +1448482,Michael Rose +1403204,Nick Bentgen +1594174,Joseph Scott +230590,Harvey Gates +1148940,Robert Ward +1024216,Boris Rodriguez +98360,Andrew Bellware +1506442,Ana María Holgueras +96071,Bretaigne Windust +168772,John Pattison +1755268,Stefaan van Leuvenheage +1142999,Juan González Guerrero +1201593,Daniel Lambo +1032013,Izaías Almada +1309389,Rebecca Hywel-Jones +1468593,Sean Ilnseher +31894,Ettore Scola +1073742,Natalya Smirnova +1849508,Alex van der Meulen +1005960,Ari Willey +1634780,Richard Merrell +100506,Charla Driver +135949,Regner Grasten +1734727,Gary Lisz +1814987,John McAbe +1733198,Justin R. Chan +1377326,Janet MacLean +1084541,Robert Ballo +1705828,Giulio Tiberti +1168764,Lara Campbell +1331181,Benjamin Rotast +1620685,Agnes Sklavos +808402,Anne Etheridge +1466454,Jason McDonald +948841,Rob Carliner +571464,Jan Ježek +34326,Philip Tannura +1437697,Kiril Dimov +1770980,Ganesh Poojari +1412973,Kaylene Carlson +587535,Jiří Trnka +1357044,Richard K. Buoen +1857584,Alejandro Alvarez +1274016,Kane Campbell +1170038,Nel King +1156484,Baldvin Zophoníasson +1338134,John Sievert +1855880,Virginie Lavallée +1509663,Marco Torres +73469,Klaus Stapenhorst +1907211,Sushant Acharekar +56642,Alison Mitchell +1018706,Phaedra Harris +1525147,Robert 'Cass' McEntee +1570088,Mili Rendler +111172,Ivan Tors +1559474,Rachel J. Wright +1657702,Nicole Reed LeFevre +1779349,Christian Snell +1646360,Juliette Hubert +1459753,Chris McGaw +1025712,John Collins +1559495,Jesse Wayne +116197,Leopoldo Torre Nilsson +1594336,Jennifer Barrow +1840332,Shay Stone +1427296,Frank J. Desiderio +1398242,Lina Nordqvist +1646201,Olga Struntsova +1393456,Michael Buster +76045,Tyler Measom +1685028,Hajime Tsuburaya +204308,Cameron Covell +1506062,Kuba Czekaj +935245,Clay Pecorin +235760,George C. Bertholon +931291,Gholam-Hossein Saedi +1783758,Klaus Borkmann +1646653,Marcelo Chaves +50082,Ronelle Loots +1522887,Krish Mani +1559873,Melissa Kostenbauder +1450646,Julia Chu +75556,Emma Fletcher +1746432,Alexandre Ronco +63717,Brent Emery +1415620,Scott Anderson +1481485,Alexis Stravopulos +1602604,Yoshiki Nomura +1277640,Ruy García +1561987,Sachin Krishnan +1095253,John Lesher +1642510,Stuart Campbell +119153,Jennifer Robinson +1394064,Matt Cornelius +1354338,Suvimon Techasupinun +99471,Romano Migliorini +1068119,John Ptak +549580,Joe Coleman +1638158,Iñaqui Contretas +1127893,Josh Robertson +1676015,Dhaval Jayantilal Gada +1821872,Kristina Massie +1092564,Paul Green +1518669,Beatriz Martínez Gómez +187847,Abigail Savage +1409855,Jonathan Yunger +1740272,David Pulido +1815696,Georgia Warner +1815730,Daniel Hillary +1547215,Jeff Ferrero +1692106,Arlan H. Boll +133281,Mark Onspaugh +1081127,Pyotr Lutsik +958258,Mathieu Menut +1448738,Phyllis Housen +544748,Caryn Waechter +1181167,Akiko Nogi +1377835,Phillip Bladh +1453667,Erik Foreman +1623946,Chris Pak +43652,Takashi Yamazaki +580664,Helge Lindberg +993693,Paul Zucker +1583221,William E. Garrett +1317351,Leon Tong +1194392,Lorenzo Bianchini +1076192,Marcelo Rubens Paiva +1630291,Nate Moster +1537530,Daniel Posada +1449168,Brad Greiner +1536583,Joe Passarelli +1179892,Alexia Crisp-Jones +1456358,Rhona Rubio +1421248,Atomizador +1319728,Monica Black +1094169,Enrique Aular +64691,Wong Kwai Ping +1554134,Surisa Surisa +1799715,Christian Lombardi +1431134,Colin Sumsion +1626019,Adam Fogelson +998570,Eric Guillon +45762,Erno Das +53096,Tova Asher +1433565,Andrew Ryvkin +238120,Colin Jones +15879,Ken Jennings +1399112,Paul Mathews +1444289,Emilie Boucek +1410757,Margot Meynier +1320562,Chrissy Flannery +1388084,Cathy Greenwold +69541,Jean-Marie Pallardy +37900,Kurt Ulrich +1018800,Chris Scharffenberg +1733830,Jason Hampton +1115958,Frank Hall Green +1443031,James Merifield +1050028,Eric Nowak +119874,Josef Anderson +1795355,Hibbs Winkler +8453,Stanisław Lem +1412178,Nick Flook +581195,S. S. Chakravarthy +71093,Paul Joseph +1293580,Mark Noseworthy +1043447,Leslie Rowson +1549743,Mariano Vera +1665455,Scott J. Jones +1463399,Marc Uddo +1797889,Adam Clayton Williams +1648804,Jessica Louise +84840,Eiichiro Oda +1301114,Anna-Louise Day +1792337,Allison Perley-Harter +1338149,Elisha Drons +1012236,Ágnes Kocsis +56841,Beppe Caschetto +1184953,Rhys Graham +1280700,Sarah Landman +120870,Paul Miller +1579398,Fiú László +1759774,Don Chong +1390366,Kerry Brown +1046901,Liz McGregor +98004,Daniel J. Gray +1034668,Chad Dalberg +1725136,Katry Sertic +1105693,Jesse Lawrence +1367654,Jean Louis Dousson +584624,I. V. Sasi +1681777,Joseph Maar +1398228,Marleen Slot +95970,John Killoran +1384251,Martin Varno +1501816,Angela Torti +1425464,Ty Walker +1295960,Wing-hang Wong +1545302,Urban Ermling +117312,Howard March +1535450,Edward Goodman +1718169,Alicia Tellería +1072691,Denzil A. Cutler +240167,Sun Chung +80942,Eduardo Manzanos Brochero +932971,Eduardo Coutinho +1458273,William Apperson +6528,Alex Catalán +1634555,Belinda Cusmano +1711604,Ryan West +1555693,Eric Craig +1117303,Alan Splet +111312,Wassim Béji +1473981,Ronit Ravich-Boss +983871,Audrey Loggia +1415898,Christopher Giroux +1034125,Cristiano Travaglioli +1475317,Anneke Botha +16356,Steve Bendelack +1168811,Ricard Reguant +133938,Giorgio Bianchi +563630,Shirley Vercruysse +5631,Lynn Blumenthal +226619,George Beck +1375066,Stuart Ortiz +1586320,Tamás Zákonyi S. +104028,Bart Mixon +1367937,Angelo Louis Suasnovar Jr. +32495,Sergio Grieco +1561110,Yoshifumi Honda +1500883,Nikos Kalimerakis +67168,Heidrun Schleef +1811611,Dom Downing +1231676,Alan Collins +90812,Scott Mann +1384368,Daniel Brimer +1585355,Mike Borrett +1776864,Masunobu Motokawa +1033136,Klaartje Quirijns +1161623,Vivien Aslanian +1595301,Harmo Kallaste +1623733,Armando Espinosa +1039689,James Bird +1546027,Ashley Lamont +1328143,Alan Lee +1523174,Todd Debreceni +1697261,Antwan Razor Daniels +1149041,David Tillman +129373,Terry Klassen +1046110,Peter Kubelka +1168883,Don Bernier +1570598,Leanne Hein +1640011,Vikki Vicars +1898923,Atom Smith +230591,Sidney Sutherland +132547,Peter Cameron +928320,Josh Oliver +1160235,Vicente G. Sangrador +48679,Kai Wessel +1421646,Gadi Levy +1124949,Todor Kobakov +1557029,Lynn Younglove +1621358,Robb Buono +1183513,Ryan McGarry +178247,George Blair +70247,Claudio Cirillo +1868,Louis Lumière +1862490,Lara Arikan +1363962,Gregg Alexander +1448221,Christina Hodson +1367021,Vincent Poymiro +237205,Craig M. Saavedra +1294576,Seth Fox +40992,Peter Sandloff +1821935,Trang Dang +31603,Armando Crispino +1409707,Simon Hughes +1673685,Sofia Midon +1602073,Josef Pavlík +1502664,Clara Roquet +1851917,Jim Cannard +1480628,Darlene Brumfield +949506,Gary Dartnall +587754,Krishna Kumar +1316587,Orly Sitowitz +134212,Francesco Milizia +1026085,Elgin James +1499121,Martin Heisler +1080345,Alice D.G. Miller +1814970,Chris La Vasseur +60731,Fred Warter +1456719,Ashley Nicole Hudson +1568236,Tim Kaminski +1565737,Brittany Loar +1545283,Eros Codinas +82678,Harry Lachman +240017,Lee Kyung-Ui +344781,Jack Gross Jr. +262279,Richard Kletter +1535116,Virginia Saenz McCarthy +1447323,Scott Underwood +1133404,Yuriy Nagibin +239897,Marco Carosi +1834946,Cecil R. Foster Kemp +1425386,Amelia Ford +1191106,Nigel Evans +1293801,Kwon Yoo-jin +65780,Scott Bernstein +1557607,Agnieszka Smoczynska +1673345,N Radha +1180541,Rita Sala +1595710,Külliki Pert +1590927,Atsushi Chiba +1169588,Rekha Bhardwaj +557584,Marcelo Moraes +1586801,Parikshit Lalwani +1412808,Chris Graham +576008,Steve Arnold +1446136,Victor A. Sandoval +1634070,Trish Navarro +75833,Doug Morrow +578853,Andrei Lifinsky +1300430,Rosário Moreira +1828360,Jack Klein +1815816,Sanford Slepak +1139978,David Huey +90168,Scott Firestone +1583296,David Thiry +1849135,Grace Perrin +959879,W.B. Rao +1392622,Lisa Goldberg +1286589,Mandy Grant-Grierson +40987,Werner Krien +123871,Yoshinobu Nishioka +928420,S. Peace Nistades +1834278,Brock Joliffe +1652818,Shim Hyun-jung +115374,Basil Emmott +1453844,Christopher M. Boyd +1215901,Matt Lipsey +1879688,Martyn Haggett +1615804,Ben Bone +1149777,Jake Collier +1428234,Tracy Manzo +63454,Peter Rafelson +1595275,Jaagup Roomet +1682325,Tony Copolillo +1269262,Basil Smith +1152735,Marc Fantini +1754095,Ashley K. Thomas +230717,Alexander Oleynikov +1554768,Dan Hall +19103,Paul Francis Webster +1531093,Rachelle O'Donnell +1656020,Ille Sievers +1287044,Osmo Harkimo +1317385,Elie Smolkin +123798,Sheree Folkson +1409537,John Gurdebeke +72108,Laura Goldsmith +1539832,Yoshiki Miwa +1434899,Christina Kortum +72372,Charlotte Sieling +1409852,Jeffrey Greenstein +168126,David Dortort +1276440,Raphael Margules +583068,Andrey Iskanov +1325194,Bertrand Seitz +1315188,Ken Naitou +1618900,Jedrek Oquendo +1409487,Pamela Harvey-White +1797463,Richard Potter +1427687,Megan Platts +1463553,Nikki Jieun Lee +1860638,Susan Hurtado +545330,April Mullen +47917,Leonid Kalashnikov +1060223,Sacha Polak +1431533,Jancy E. Nicolas +1064162,Félix Guattari +1560987,Kate Springmeyer +1199825,Mike Gillespie +1519288,Jan Kempkens-Odemski +122965,Dianne Jackson +1302900,Jeremy Jonathan White +959494,Dan Stoloff +1214563,Henry Slesar +144297,George Engel +1769385,Chad Early +1351683,Brett Popplewell +1582946,Piotr Knop +1587602,Richard Raymond Harry Herbeck +1417252,Sam Lisenco +136399,Marie Montague +1094171,Maya Oloe +29611,Paul Corbould +133458,Dorothy Baker +583272,Marie Sellier +1382731,Jake Aust +222367,Shaun Carmody +1364237,Ohad Talmor +1644883,Michael Followes +237036,Pancho Kohner +1387768,Somm Suthinee Chantakarn +77804,Tommy Reid +1666099,Amol Parulekar +1399551,Leigh Ferreira +1049445,Lester Chung +17350,Kevin Macdonald +1640816,Alice Purser +126303,Eric Steven Stahl +1113264,Shane Richardson +1412913,Frédérique Foglia +79737,Yoshiyuki Tomino +1411533,David Vickery +1798472,Andrew M. Robinson +1176802,Kuniyuki Morohashi +1108577,Diane Healey +1510942,Jack Gilardi +1679704,Slavica Snur +1543889,Johan Horjus +1716276,Lin Sorensen +1127654,Mariano Arditi +87086,Yang Yun-ho +1374511,Dorothy B. Cormack +1816405,Matthew Prisk +1282152,Aleksandr Gladkov +1179894,Thierry Muscat +1570506,Steven Flynn +1594673,Miodrag Milošević +1037308,Rory Kennedy +1634222,Jeff Richard +1574081,Adam Lawrence +1302899,Brody Gusar +1217656,Butch Lukic +1524562,Chris Buongiorno +1400605,Dan Stack +149095,Ed Barge +1792362,Heather Toll +52150,Geza Sinkovics +1875463,Henry Hauck +1575350,Hannah Glossop +1851913,Kelli Lee +1113454,Arthur Retiz +1415591,Richard Dooling +45996,Ryûhei Kitamura +1121523,Jan Blokker +20208,Brad Fischer +1293990,Hank Friedmann +1198829,Kirsty McGregor +1284640,Marcus Griffin +1583631,Suzanne Wilson +1760125,Sergio López +1255810,Lauren Thompson +30478,J.B. White +1437299,Lola Gans +1297472,Yves Chaput +69403,Cécile Telerman +1517863,Katie Green +1864627,Dennis Kleyn +51843,Neil Koenigsberg +1780159,Tim Emeis +1334092,Amy Acosta +1288502,Paavo Rintala +929598,Mowg +1178432,Enrico Bomba +1195308,Edward N. Luttwak +1367027,Sidney Dubois +226463,Nathan Furst +1884136,Ronan Tronchot +109544,Andy de Emmony +1663951,Ali Murray +1090812,Stephen Elliott +1460648,Wayne Jaworskyj +1104914,Yûta Tsukinaga +1354333,Sunsanee Vemonsas +1720357,Mark O'Donnell +1287615,Javiera Varas +1519864,Trent Luckinbill +1456631,Hideaki Yoshio +1392972,Karen Medders +1324818,Adam A. Makin +1619483,Suzanne Baron +1464981,Gerry Burke +382811,Nancy Sanders +1053565,Christopher Curnan +1706708,Alice Kahn +183055,Rob Weiss +1310818,Chiara Polizzi +1352878,Nicole Jones-Dion +118513,Karim Dridi +1368830,Toni Hoover +1202999,Resul Pookutty +1828341,Cam Smith +1341117,Nuray Oğuz +33954,Spencer Gordon Bennet +1013108,Aleksey Nuzhnyy +239885,Franco Ragusa +1456623,Shinji Otsuka +1835315,Nicci Kasper +1576201,Alessandra Murada +1424270,Damien Maric +150526,Sanjay Chhel +1497167,Chin Ting-Chang +564601,Kimberly A. Ray +1090787,Oren Uziel +1835570,Cheri Montesanto +1870207,Lindsay Elliott +1762254,Stefano Beninati +1595076,Louise Arhex +1780194,Jannell Lewis +1410554,Dave Morley +1759758,Peter Graf +1707851,Markus 'Maggi' Selchow +1805978,Håkon Lammetun +564600,Renato Izzo +1630383,Richard E. Garcia +583461,Kevin Kale +1001662,Aram Tertzakian +1271989,Giacomo Martelli +978753,Swinda Reichelt +1774235,Michael Nelson +1754607,Melanie Camp +1084866,Gwen Bialic +1537116,Stacey Lock +1339058,Sonja Greif +99362,Craig Shapiro +72681,Mårten Knutsson +1618779,Jae Kim +1332519,Irwan D. Mussry +1165232,Susumu Ueda +118415,Sean Baker +1396794,Gabriel J. Serrano +1816440,Vahe Douglas +144136,Susanna Alakoski +1820651,Edward Joubert +1646138,Videsh +57874,Andrew Gross +30932,Desmond Dickinson +238621,Ivan Lebedev +1423839,Hidefumi Aoki +72616,Andy Blumenthal +1444771,Charlotte Kemp Muhl +1718137,Akshay Gada +967484,David Buelow +1028485,Ramón Obón +1732670,Kimberly Weeks +60616,Harry Basil +116133,Hubert Cornfield +1740766,Agis Pyrlis +1452340,Kim C. Simms +1642511,Gino Chang +286,Lloyd Phillips +178426,Gabe Sachs +547729,Jack Huber +1709125,Jeremy Antonio Oliver +1136051,Jun Nakai +1749861,Azadeh Ghavam +13807,Cliff Reid +1394340,Jon Vogl +1031776,Tyler Travis +69445,Bruno Zambrini +1317156,Barry Keating +1067267,Suzanne Cheriton +1337668,Chad J. Hughes +970445,Chinami Namba +111699,Lance Daly +1354342,Nongluck Keawudon +1129511,Ryoutarou Makihara +543495,Paul Schneider +1508548,Michael Cody +557251,Eddie Donnelly +1568528,Katie Money +1779299,Andrey Nazarov +592054,Jack Lyons +1585725,David Elmes +1479533,Nicolas Valade +1525821,Franco Serafini +1364771,Clare Lewins +1543279,Shyam K. Naidu +1797444,Lisa Mustafa +126156,John W. Frost +1103642,Michael B. Allen +1195942,Lindsey Goddard +1708705,Viola Rock +1703684,Leon Edri +958346,Giacomo Puccini +1474666,Mark Griffiths +93984,Paul Taylor +234556,Leonardo Benvenuti +1448313,Baard H. Ingebretsen +221028,Carl Joos +135833,Raymond Chan +1323509,Zak Hilditch +77994,Ty Evans +424548,Donald Milne +1548029,Casey Van Maanen +1620964,Saiju Sreedharan +1245339,Keith Laumer +1302551,Joni Lefkowitz +1076542,Jerry Mosely +106851,Cliff Ruby +1425466,Erica Palgon +145304,Udayan Prasad +31252,Herman Cohen +1483135,Elizabeth Leslie +1116651,John Jencks +1033665,Marc Chouarain +1616469,Emie Otis +1403407,Sarah Wormsbecher +1118631,Keith Thompson +135727,Joe 'Jody' Williams +1125644,Niko Post +550481,Jérémy Clapin +1735563,Anne-Catherine Kunz +1421642,Jan Sewell +1729091,Michael Krause +930015,Joe Lindquist +112362,Eric Vale +567750,Philippe Grandrieux +1630967,Sheena Clowater +1550764,Ian Comley +1501819,Carolina Norero +1654424,Michael Kelly +1776330,Mark Salter +88943,Mark A. Reyes +1572863,Andre Zweers +78976,Mary Pat Bentel +1643881,Steve Nitzberg +1824283,Gianluca Barra +23579,Herman P. Koerts +1320176,Jeff Fisher +1068048,Arnaud des Pallières +1058157,Michael John Fedun +1647201,Ronan MacRory +21718,Gary Kosko +1066750,James M. Johnston +66918,Alexander Jacobs +1707972,Marnie Hill +1250543,Delon Bakker +1183167,Vasco Pedroso +120099,Bruno Altissimi +1597833,Philip Hazelton +1718777,Brook Shafer +1270261,Wang Jing +1599143,William Paul Clark +1438565,Nicolas Migot +1396793,Lara Dale +1632792,Jessica Anderson +1543196,Jacqueline Fernandez +1828337,Dennis Nicholson +1168210,Luis Ortiz Guillen +1266465,Steffen Damsgård +227466,Sebastian Grobler +1493529,Molly Katagiri +107301,Nico Mastorakis +126795,Bhandit Thongdee +20869,Kurt Hoffmann +119320,Henry C. James +1766559,Tatyana Saulkina +1558719,Justina Kriss +1824979,Cao Yangui +1554386,Carl Stern +1336928,Dorte Pedersen +1616453,Noah Dille +1377806,Davide Manca +1160340,Rudolfo Wedeles +1357600,Julia Chiavetta +1015899,Adrian Love +1652414,Stephanie Slack +16877,Maiki Marín +1627746,Curt Brandon +1343708,Jeff Tymoschuk +1525468,Amin Jafari +1244274,Frank Siracusa +1348584,Jelena Šopić +933503,Edward Fu +1141803,Chin Man-Kei +548731,Jason James +1419632,Drew Guido +1179441,Steve Wilkie +1096529,Hideaki Oba +93685,Alford Van Ronkel +1318387,O'Brian Tomalin +1754084,Jacob Beil +1379027,Tommy Boulding +1301329,Megan Stuart Wallace +1164730,James Ingrassia +127402,Pavel Blyakhin +1348810,Kathleen Collins +1276438,Alicia Peterson +1777270,Jan Mimra +1886644,Sebastian Serrell-Watts +146169,Jean-Marie Larrieu +581664,Lee Gigo +101488,Mark Burman +55149,John Paizs +1585183,Shane D. Kelly +1523863,Mathew Revert +1411223,Sean O'Reilly +31203,Anthony DiMarco +1416844,Jirí Hanzl +999556,Lisa Westcott +57123,Earl W. Wallace +53849,Alberto Fanni +1181950,Cecilia Ahern +1515096,Deja Marie Iannone +234384,Eberhard Schoener +1195625,Sinikka Nopola +1460788,Elspeth Grafton +1263790,Suraya Willemsen +15002,Dean Parisot +1735097,Savithri R. Prithvi +986587,Mathieu Denis +1590089,André Valade +1382180,Nicholas Andrew Halls +1599477,Martins Rozentals +1099032,Laura D. Smith +1439429,Leo Vazzali +69915,Hilde De Laere +69396,Nell Scovell +1524504,Will Honley +1086413,Stefan Kluka +1676800,Benjamin P. Kaminsky +1378141,Juliet Plumptre +1849496,Mong Tho Mach +1437297,Denis Netto +1313871,Kostas Gikas +49288,Harry R. Sokal +1130017,Eun-nim Ko +1462950,Kouichi Shimomura +230426,Leanne Pooley +1630318,Vitaly Koshman +570788,John Jacobs +1097807,Nikolai Gogol +1393438,David Rotondo +1541732,Rokhsareh Ghaem Maghami +1777117,Gustave Doré +1568547,Sinéad O'Sullivan +1884065,Edward F. Rhine +1340737,Marti D. Humphrey +1539309,Maria Stoyanova +30397,Valery Todorovsky +1571510,Delana Veirs +90076,Will Price +1159030,Luke Rivett +1330512,Angela Scellars +56633,Gavin Struthers +1735076,Rebecca DeNoewer +56379,Chung Mong-Hong +83173,Yuthlert Sippapak +1729093,Eugene Pope +1125685,Rick Osako +1423062,Gabriel Arias-Salgado +1034124,Teho Teardo +1208000,Greg Couch +1156075,Ryan White +1545239,Woody Richman +1206853,Vanessa Loh +142850,Gareth Smith +1845750,Jenny Murray +1869456,Michael Thomas Zambrano +1662644,Sophie Nobler +231492,Ki-yeong Kwon +1594816,Tuli Chen +1383010,Stephen L'Heureux +1780121,Jean-Christoph Ritter +1691499,Cheryl Calhoun +1873049,Alexandre Bancel +933088,Wang Bing +1630074,Fernanda Perez +1072677,Scott Treleaven +1665716,Yukito Kishiro +1039205,Jeff Traxler +1155519,Benjamin Hayes +1385093,Matt Davies +1761882,Eija Kuokkanen +1543174,Liska Ostojic +556153,Michelle Caputo +129951,Brad Isaacs +1278601,Stevee Davies +1444295,Derek Wentworth +1204937,Michel Polnareff +1862929,Tony Gibson +1155666,Regency Boies +1792028,Nina Sarah Jensen +40991,Manon Hahn +1321935,Alexander X. Hutchinson +110926,Eric Cayla +64038,Brent A. Schoenfeld +1551798,Joseph Koniak +1401138,Jelmer Boskma +1531941,Francis E. Stahl +1577083,Attila Csoboth +936831,Henri Persin +1407370,Scott Zuchowski +1543344,Cheryl Cowan +1831962,Layla Mall +1102814,David Abbitt +1311591,Ryūichi Yagi +1548080,Drew Sacks +1188321,Justin Partridge +1828375,Dude Laing +1329161,Tadeusz Dolega-Mostowicz +28218,Adri Schrover +1736643,Vicente Parada +1371418,Nima Nabili Rad +28117,Sebastian Vigg +1485237,John Sim +1232400,Dave Hughes +1263631,Anastassia Arnold +68717,Naoki Kayano +106697,José Luis López-Linares +1707967,Jessica Pearce +1553856,James Ridgway +1065744,Lamar Card +1312454,Laina Barakat +230001,Philippe Bossé +1367810,Guy Monbillard +1633817,Doug Steinberg +1602585,Yoshikazu Ôtsuki +1538810,Melissa Vargas +989751,Kay Lee +1760461,Gleb Fetisov +1094937,Christophe Pinel +144264,Gene Rodgers +1075466,Mike Nolin +1053188,Alexandra E. Ryan +1423826,David Hollingsworth +1049372,Bill Jones +1295448,Christopher J. Scott +1309209,James MacKinnon +1310253,Christopher Lee +1236554,Donald Paonessa +230174,David Guggenheim +1620686,Konstantinos Kontovrakis +30996,John Alese +1033103,Carmelo Casalenuovo +1528153,Bassel Ghandour +1484987,Dana Embree +1484205,Juri Stanossek +237191,Lai-yin Leung +1412916,Ryan Wiederkehr +1571509,Reyna Robinson +1409872,Kata Vermes +1440308,Cory Hamilton +1118384,David O'Connor +1357334,Trevor Mirosh +1406056,François Fauteux +1340324,Wendy Grossberg +1293655,Claire White +1454514,Stephen Coren +5184,Lyn Murray +1320557,Gregor Drugowitsch +1630371,Joshua Woltermann +1820513,Brock Komon +1681495,Bertrand Schutz +1762260,Pierce Derks +1018700,Corey Grant +1493209,Ruy Diaz +568059,Klas Dykhoff +100856,José Gutiérrez Maesso +126995,E.A. Rolfe +132792,Takashi Asai +57408,Jerusha Hess +592998,Sachin Bhowmick +1374340,Brandon Roberts +1377416,Darren 'Sunny' Warkentin +6854,Mark Protosevich +1586587,Zsolt Fehér +1865187,Michelle McLean +1316851,Daniel Ardilley +928706,David Ungureit +1762815,Joy Galbraith +1150497,Johnny Barrington +1568918,Pablo Lach +1821933,Wade Culbreath +1340962,Zaza +127778,William Girard +1821878,Jonathan Lheureux +1173145,Sheree Le Mon +38589,Federico Zanni +121971,Riri Riza +1053029,Masayuki Miyashita +1395180,Stephanie Wilcox +1590969,Florence Eliakim +1563392,Mariya Motruk +1532100,Jill Thompson +1484223,Vladislav Jary +1777724,Matt Fogel +1611306,Sasha Leonard Paracels +1401937,Adam Bricker +1279651,Jeff Robison +214417,Sean Dash +1002342,Dureyshevar +1271456,Almitra Corey +105860,Kevin Carraway +1069627,Ross W. Clarkson +1650636,Brandon Scott Jensen +1078982,Ronnie Fridthjof +1358564,Trampas Thompson +1454939,Mel Dykes +1030585,Tove Christensen +30967,Charles A. Moses +553928,Frieda Valenzuela +1034330,David Nordstrom +54361,Serge Vallin +92960,Jin Yimeng +1468313,Brendan McCarthy +240565,Naum Ardashnikov +1338788,Arthur Stolnitz +1504167,Peter Sawade +102428,Julie Corman +1777669,Keith Kerr +1407730,David Wahnon +1402740,Adam Connelly +228253,Thomas E. Surprenant +1311002,Jeremy Baumann +1708565,Nita Sol Cruz +1415029,Jerry Constantine +1500425,René Dupéré +1429342,Mariana Videnova +1647132,Emma Heard +562154,Akim Isker +233072,Sandeep Shirodkar +1738140,Charlie Campagna +212903,Jack Pulman +1117848,Clifford Mohr +1815895,Birgitte Bratseth +1388850,Peter Dorme +1187301,André Jacquemin +1057579,Tatsuya Nagamine +95489,Lyndall Hobbs +932923,Roger L. Simon +14843,James Crabe +1116283,John Rickard +224419,Stefan Jarl +129148,David Vonallmen +1632895,Bob Richards +1339183,Vincent M. Cresciman +935137,Danièle Huillet +8089,Jason Bickerstaff +1356763,Georgina Allison Conder +1479370,María Angulo Velasco +1465949,Jahanzeb Hayat +1375988,Scott B. Hansen +187329,Peter Jackson +1345259,Lyubo Samardjiev +220833,Samuel Tourneux +985032,Peter Mettler +1088200,Thomas Rendon +969845,Adele Romanski +103118,Pietro Innocenzi +137486,Fred Quimby +1066935,George Buckner +557922,Alexis Nolent +1536206,Angelos Rompolis +51084,Shlomi Elkabetz +76370,Lars Blomgren +1694432,Dina Juntila +1384217,George Baptist +1621485,Gemma Roberts +1081034,Luciano Ferri +927986,Lena Selander +1775640,Rodrigo Mourão +1330177,Frédéric Aliotti +32310,Sergio Montanari +1777269,Zdeněk Rozkopal +143671,Aleksey Fedorchenko +1112514,James Parrish +1397973,Juliette Bonass +1578611,Deirdre Brenner +1696505,Angel Esparza +1636724,Piero Risani +1671689,Samuel Scott +1841617,Lisa Rees Henderson +1418512,Zoltán Pataki +1188380,Daniel S. Levine +929377, Lee Doig +1410743,Chris Rebay +76882,Cy Endfield +1808048,Leah Guenard +224497,Gordon Quinn +1017015,Tuesday Stone +1670957,Dina Engel +52730,Philippe Avril +1544667,Nancy Keslar +1606272,Luigi Urbani +1708030,Thomas Fraser-Zank +20074,Philippe Godeau +118296,Kay Rose +1493125,Martine Moriconi +1529261,Matthew Tabern +1158249,Carlos Lopes +1716791,Toshikazu Nishigaya +1542138,Sherman Johnson +1660979,Mary Salquist +588861,Josefina Molina +83175,Manuel Huici +1425260,Yousheng Tang +1541447,Maria Mladenoza +1622037,Xavier Vauthrin +154547,Chris Nelson +1330882,Jorge Magaz +1579539,Jonathan Alvarado +1367806,Paulo Gonçalves +1298935,Angelo Vicari +1152061,Noah Gordon +1618897,Yesenia Vélez +1096440,Jérôme Devoise +228086,Marek Koterski +1474787,Marianne Dikker +1018991,Nicolas Steil +1352956,Veronica Roth +87767,Richard Martin +32467,Stephan Mallmann +21169,Armand Psenny +1673676,Adam Mirels +1081884,Keith Behrman +1817427,Cassandra Siegel +125091,Zhang Yuan +927997,Björn Dokken +1187198,Jonathan Taïeb +1817523,Yasutaka Ikeda +1562574,Li An-Xiu +1056753,Tom Sachs +1616619,Shruti Kapoor +432833,Oren Kaplan +1568901,Natasha Lees +30696,Janice Karman +1676431,Aquib Khan +1086286,Dick Rijneke +1527865,Marco Naylor +91322,Claudia Hoover +1286509,Romano Cardarelli +1282312,Asiel Norton +87742,Marc Webb +1176352,Kennedi Martin +201799,Evan Morgan +86660,Jean Anouilh +1643670,João Ramiro Mello +1425392,Carolyn Wells +937701,Hal Schwartz +1177335,Caitlin Cronenberg +1347205,Gorčin Stojanović +1208256,Gustavo Triviño +7367,María Estela Fernández +229604,Clio Barnard +78059,Yung Chang +1408407,Owliya A. Dima +1375897,Jesse Shapira +1570500,Jeff Jackman +72683,Jörgen Brennicke +1707969,Veronica Sive +1397970,Gerard Barrett +1302050,Juan Cuadros +108850,Timo Heinänen +559186,Amina El Halhouli +1435264,Renée Renard +110231,Harish Joshi +51866,Rick Famuyiwa +1466260,Liz Briggs +33128,Juichi Tanaka +148854,Elmer Rice +1705346,Andrew McCartney +1053822,Simon Hansen +1521756,Ted Fithian +140375,Kristian Fraga +1563417,Chris Cook +91575,Hiro Tokimori +1191326,Nicki Gardiner +1537412,Tetsuko Kai +1543198,Cameron Beasley +135567,Blair Barnette +1001672,David Thion +1217131,George Tibbles +1209814,Pedro Amorim +1859982,Stephanie Meyerink +1362648,Jo-Jo Ellison +1354348,Naksit Wechkanjana +1028305,Carlos Moreno +61988,Donna Cockrell +964093,Patrick Aiello +552430,Alan Adelman +1609188,Thom Kellar +238315,DJ Groove +1709268,Nadeem Saifi +1455850,Saul Herckis +1644001,Snezana Anastasijevic +1269676,Karen McDonald +557237,Bob Kuwahara +1481511,Norma Jiménez +1158263,Sten Holmberg +1534386,Elizabeth Hoel-Chang +999821,Derrick Tseng +56278,Massimo Fiocchi +63010,Zsuzsa Mihalek +568662,Dave Schram +56036,Franco Micalizzi +557151,Gumersindo Mollo +1364226,Fernando Brun +138802,Craig Kyllonen +1855404,Jan Jericho +1025765,Raam Shetty +1272712,Ricky Roxburgh +1377955,Tarcísio Vidigal +77469,Daniel M. Berger +62640,Paul Rosenberg +1796883,Ed Ralph +1468112,Neal Scanlan +588851,René Fauchois +1763647,Maeve Guesdon +1099679,Ted Zizik +1126355,Hiroyuki Kobayashi +1599046,Victor Copytsko +933318,Norton Juster +1506371,Denise Bailie +37622,Steve Niles +1537104,Genelle Baumgardner +1636536,Max Braverman +58588,Timothy J. Sexton +1021810,Salvador Litvak +1518046,Chris Denne +1551703,Jennifer Metcalf +1884070,David Domínguez +1417920,Steve Moore +1092926,Isamu Aoki +1379185,Maël Piriou +1437961,Grant Bridgeman +15705,Joseph Pevney +1367799,Thierry Zemmour +1579389,Rich E. Cordobes +1095219,Alberto Ladrón de Guevara +1519906,Bertrand Calmeau +1030400,Gernot Thöndel +1133642,Sei Kawaguchi +1160311,Mark Landry +154804,Kelly Cole +1097229,Alexandra Coelho Ahndoril +30418,Spencer Reeve +1545987,Rhys Salcombe +1625316,Jacob Ribicoff +18333,Roberto Perpignani +1006723,Jeff McIlwain +1431511,Nicolas Williams +43487,Irmin Schmidt +40340,Masafumi Mima +71437,Elan Mastai +72510,Isao Tomita +3733,Thierry Delettre +233069,Alan McAlex +1354976,Tom Jemmott +1397196,Bob Kellough +222353,Paul Cotter +1533099,Elizabeth Feldbauer +14865,Elmo Veron +1455526,Jonathan Lyons +227706,Krsna +1399020,Ted T.E. Tunney +1462280,C. Steve Goldstein +141383,William Bleich +1831039,Alice Ferney +1199278,Chris Faulisi +135380,Chihiro Kameyama +1103628,David Bausch +1542741,Scott Brewster +566672,Masahiro Takada +1539808,Tomas Juricek +934171,Martin Sundland +1102126,Eric Sanford +1035116,Brian O'Carroll +1008478,Albert Kantoff +1296826,Mohammad Ghorbankarimi +1584424,María José Cuevas +1742979,Gary Alan Hawker +1516449,Noga Alon Stein +1590929,Laure Lourié +24389,Denys de La Patellière +1113583,Josh Rhodes +1819166,Horacio Rodriguez de Zamacona +1623698,Ben von Dobeneck +1064021,Patrick Griffin +1526972,Qodi Armstrong +1660729,Tony Baldridge +1647587,Robert Roach +1195654,Hal Burdick +143863,Conor Barry +1143559,Sathish Krishnan +1168119,Oren Shai +1463450,Jason Billington +11971,William W. Claridge +564940,Jon Spaihts +1737886,Dinand van der Wal +224493,Johan Lundborg +557363,Andrea Quiroz Hérnandez +1086910,Marcello Giombini +583469,Chris Mills III +1390372,David Morgan +1136480,Michael Mfume +1539620,Bryan Trieb +1338421,Sean Christopher +1003008,Mikael Wallen +239437,Rudi Dolezal +142522,Michał J. Zabołocki +1463387,Benjamin A. Burtt +1531862,Jessica Lythgoe-Green +1551893,Jillian Brooks +88802,Mukesh Bhatt +1781335,Carlos Castillon +229519,Thom Fitzgerald +1869023,David Fletcher +1381306,Dominique Jugie +1324059,Miriam Mercado +1056755,Robert B. Radnitz +1122548,Jonas Jonasson +107830,Richard Dooley +1201973,Philipp Kirsamer +1152093,Éric Barboza +1354925,Andy Shelley +1439848,Juanlo Prada Garrudo +1454941,László Nemes +1087249,Samantha Kuester +70565,Kurt Neumann +1463162,Marie Lanna +43750,Chris Johnston +1780116,Yoko Higuchi-Zitzmann +1429362,CJ Stewart +1284545,Adisorn Trisirikasem +937958,Erica Jean +270330,Viktor Titov +30026,Akiyoshi Sakai +1816776,Hirotsugu Ogisu +46981,Martin Walz +26267,Ennio Guarnieri +1641983,Steve Sich +1577910,Géraldine Lemaire +1072790,David Dunn Jr. +1456611,Takeshi Honda +1550935,Alejandra Cárdenas +1633097,Betty J. Lane +1367932,Christopher Dufau +1442944,Gary Kout +552976,Arthur-Emmanuel Pierre +116181,Kim Tae-gyun +1151834,Joe Robert Cole +1734423,Marty Hechinger +1717230,Budd Friend +99405,Giancarlo Tallarico +198883,Mike Fash +1558997,Liz Coakley +1214473,Michael R. Perry +1682250,Alexandre Gonçalves +1584352,Alyssa Choate-Rusche +169912,Michael Berlin +1447400,James Finn +1001705,Remington Chase +70071,Gottfried August Bürger +1036281,Vera Fogwill +1573031,Ryan Andersen +1125623,Michel van Laer +1880916,Dave Derry +73747,Tina Baz +1209904,George. C. Williams +1283141,Pedro Melo +1103538,Jonah Quickmire Pettigrew +1468595,Nina Baron +1415895,Melissa Shouldice +1311726,Patrick de Valette +1512728,Carl Baldasso +554494,Ichirô Nitta +1437665,Viorica Capdefier +1010024,Sean Porter +1463404,Roy K. Cancino +1188840,Erika Gadus +1063506,Jan Kwiecinski +587347,Cécil Saint-Laurent +71280,Michael Dowse +1780155,Frank Heidbrink +1539445,Ivan Kostić +1481507,Mariana Taltavull +1464835,Mike S. Ryan +64703,Hu Jian Qiang +1407737,Grayson Austin +939109,Francisco Villa-Lobos +190793,Jack Shea +1759751,Claire Koonce +1688242,Pietro Morana +117652,Stewart Hopewell +1202606,Ferreira de Castro +1541744,Robert Dias +1061061,Adam Horton +554611,Ryota Yamaguchi +1319852,Oliver Simon +91307,Thomas Meshelski +1304137,Kellie Chambers +1412596,Alan Moy +1780483,Danny Brazen +928336,Parke Gregg +550269,Daniele Silvestri +1328147,Darcie Buterbaugh +1065252,Connie Balduzzi +1306120,Constanza Racz +1380617,Silvana Pinto +1640773,Dan Sorce +236376,Paul Wilmshurst +1853697,Gabor Ferenczy +132497,Masahiro Harada +1044792,Víctor García León +1523028,Cristina Sansone +223708,Camillo Mastrocinque +1597026,Ivan Halachev +575454,Ayfer Özgürel +67826,Johann Sebastian Bach +118471,Cherie Nowlan +1399550,Ziggy Darwish +557211,Abhijit Deshpande +1618693,Gregory Caron +1307113,Yao Meng +1590441,Jasmina Banovic +1193870,Jonathan Bruce +4007,Bertil Ohlsson +24309,Mark Vahradian +1004714,Felipe Bragança +550893,Steve Gurevitch +1568840,Jean-Francois Lafleur +1718142,Sandeep Kamal +1402902,Paul Johnstone +1011135,Nadav Lapid +1548465,Elizabeth Cortez +138784,T.J. Moore +24949,Michael Davis +1043856,Iván Wyszogrod +1123355,André Fonsny +125968,Zoé Galeron +156045,Dave Alan Johnson +1733502,Rushion McDonald +1425384,Weining Lin +1189772,Jake Staley +1185967,Aaron Rux +1869444,Sarah Shatz +1392603,Clayton Weber +1034274,Ryota Kosawa +1824258,Mauro Faina +82448,Louis-Paul Desanges +1601701,Goran Volarević +935493,John McAlary +236535,Paul Vecchiali +1192404,Katsuro Onoue +101124,Ivan Reiner +1367497,Sue Rowe +69875,Alberto de Toro +1244034,Jonathan Chinn +1793207,Ian Line +1202439,Benjamin Gonzales Tolentino +126391,Newton Thornburg +1824274,Lucy Donowho +1317669,Michele Brady +1494606,Einar Bourman +1475701,Marcel Moerel +1451448,Noam Amit +1392625,Kate Phillips +1635229,Matthew Berning +40983,Géza von Radványi +237074,Tetsuo Hara +1076800,Derek Kolstad +162231,Paul Boorstin +1398155,Brant McIlroy +1186229,Shira Piven +1733826,Jem Elsner +1108104,Rafael Calatayud +1437956,Dominic Stabb +71952,Simon Lewis +1426330,Ivan Moran +1334940,Namik Kabil +1729053,Anna Abrams +56714,Daisy von Scherler Mayer +1845758,Doug Hubert +1594335,Rich Tabach +1713068,Rocco Stallone +1755279,Marco C. de Bruin +92957,Jerome Dillon +1699960,Elide Martini +1512292,Linda Strathdee +5917,Ernie Barbarash +1083452,Tadayoshi Yamamuro +1726031,Justin Thomas Billings +1587508,Mikhail Meerovich +1314750,Joe Sublett +1562605,Alison Byrne +1320551,Ma Kalaadevi Ananda +1294391,Park Hong-yeol +219052,Nick McKinney +1001762,Francois Lepouple +1814900,Denis Waldock +1210858,John McKay +1391802,James Ilecic +1782997,Tony Feole +1156225,Kote Miqaberidze +1192244,Svet Rouskov +1405248,Roman Braunhofer +1331176,Arturo Sosa +1443565,Karen Toronjo +1722386,Kostas Theodosiou +1665912,J.P. Luijsterburg +1145972,Merissa Lombardo +128592,Carlos Laszlo +1636859,Barton MacLeod +966594,Mara LePere-Schloop +557880,Jorge Michel Grau +1857573,Dave Hibbert +1815578,Charlie Kindinger +73233,E.L. Doctorow +1466248,John Ellis +41650,Lawrence Silverstein +1341756,Brendan Broderick +32406,Yoyo Röhm +1660987,Blake Hooks +1459033,Curt Kanemoto +1574091,Chris Wilson +1706702,Stamos Triantafyllos +1718711,Cora Montalban +1367821,François Dumoulin +148678,Brett Donowho +1759747,Madeleine Maciag +1753857,Brian O'Keefe +84982,Rob Spera +1532264,Susan Wrubel +1052836,Hatem Khraiche +49043,Henrik Meyer +1532725,Judy Yonemoto +1542309,Rustam Gimadiyev +79274,Michael Druker +106023,Ron Harris +1301657,Edna Lerebours +1752046,Alicia Ast +1697268,Ezekiel Jiles +1397588,David Shawl +1594190,Amie Aspden +1121480,Thomas Verrette +1642143,Shaun Hunter +1738094,Brittani Smith +1643413,Heike Kerschgens +1817472,Berenice Odriozola +1635316,Cam Everson +1360114,Donna Belsky +1116280,Kevin Riepl +1759499,Shirley Yip Yuen-Ting +1352123,Naoki Gokida +1646579,Heston Labbe +1817470,Carrie Strahle +1140975,Ascanio Malgarini +1816356,Sarah Hood +1471559,Denny Kuhr +142391,Atticus Ross +231287,Red Grant +1431075,Stephen Buckingham +1504424,Iikka Hesse +1642544,Chris Derochie +1710007,Ciro Zecca +1547107,Juanito Clemente +1492034,Camila Arocha +1827276,Emma Madeline Ross +1357068,Laurel Frushour +1359340,Martine Saada +1035575,Polan Banks +1579385,Santiago Yniguez +1436535,Jeremy Opperman +1410019,Sherryn Smith +1833814,Tom Read +548644,Anita Rosenberg +1347527,Laura Nix +38309,Gast Waltzing +72251,Jule Selbo +1304542,Chandana Jayasinghe +1883789,Marc Bizet +1463800,Nora Phillips Pedersen +113049,Galen Goodpaster +1864619,René Steurs +1557038,Nate Underkuffler +1401771,Doug Dovichi +1625935,Viktor Pishchalnikov +1075464,Daniel Vance +7256,Lee Tamahori +1063238,Kyoko Inukai +1475160,Vicky Boone +1317250,Armand Deutsch +1527934,Craig Hayes +1298874,Chin Injeti +562941,Harutoshi Fukui +1713063,Jason Cooper +1560951,Dona Seymour-Smith +1583212,Kim Keating +1328753,Jacqueline Miller +1542352,Evelyne Toledano +1120523,Yumiko Yoshihara +1432047,Robert E. Phillips +1128796,Peter Lambert +238591,Brian Welsh +1560127,David Alvarez +1761857,Tuula Mannersuo-Kassila +102740,Brook Durham +1429301,David Robert Jones +1797858,Jaime Bernardo Ramos +88642,Harold Shumate +67001,Sjur Aarthun +1320090,Aditya Sood +1758122,Lee Woo Suk +225153,Vanridee Pongsittisak +1034654,Mike Corbera +167896,Polly James +1025264,Yves Cape +1888979,Tyler Johnson-Williams +1367818,Richard Bluff +1538830,Craig Irvin +134418,Baroness Emmuska Orczy +1324070,Marco Hernández +1352116,Takayuki Negishi +1459244,Kathleen Soltysiak +32209,Giovanni Simonelli +550944,Kiyoshi Awazu +92591,Peter Sullivan +1748533,Nelson Carayannis +1398016,Amistad Harrington +1313927,Ken Fuhr +132118,Kazutoshi Wadakura +1412711,Nikolay Pachov +144257,Marc Esposito +1652076,Liam Hearne +1098635,Andreas Menn +222738,Vonnie Von Helmolt +1478650,Viet Nguyen +237165,Hisakatsu Kuroki +106025,Derek Thornton +1293601,Jisu Byeon +109860,Michael P. Mason +1377904,Alex Josselyn +1841883,Oskar Franzen +17856,Edward McGurn +1183433,Sarah Devorkin +33960,Bud Thackery +1264306,Victorien Sardou +1818740,Walter Broadfoot +1102229,Jason Detheridge +1196069,Salomón Askenazi +1149291,Vladimir Nagorny +122186,Daisuke Nishio +1176981,Yuriy Berdnikov +1601975,Benoit Soler +555506,Brett Ingram +1417979,Viktor Muller +1453591,Daniel Abalo +1258193,Nick Mirsky +110529,John Orphan +1045865,Mannus Franken +1590966,David Adam Newman +66969,Wojciech Smarzowski +1554331,Lee Song-Won +1726809,Yukari Kiso +1058155,Ethel Doherty +1698983,Antonio Luengo +71384,Cornelie Strecker +1680237,Richard Greenberg +145205,Cruz Angeles +1031621,Coll Anderson +1609047,Jeremy Selenfriend +114358,Olivier Calvert +1337108,Marcel Rodriguez +555902,Wilson Collison +1281227,Manuela Viegas +15909,Sam Conway +1636720,Jamie Branquinho +1773271,Dylan Williams +230652,Ryuta Tazaki +1187589,Erika Ökvist +130933,Milton Krims +928259,Gaëlle Usandivaras +86165,Jeff Begun +1586221,Tom Yellin +1071419,Andrzej Sapkowski +85053,Julius Packiam +1818060,Alex Hackford +1018739,Christopher Brady +1404536,Edward Irastorza +1339602,Charles Latham +60604,Aaron Au +1281684,Ryan Lough +1553491,Ben Bond +981205,Nitin Manmohan +593171,Walter Macken +1635807,Áslaug Dröfn Sigurdardóttir +1329411,Bence Erdelyi +968605,Arthur Tarnowski +1083433,Marcel Lucien +42167,Ruth Stadler +1161987,Colin Carter +1877767,Laura Black +1800057,Pat Nangle +1563382,Boris Kotov +1688144,Amy Zvi +1039202,Marc Conklin +1650272,Michael Clayton +1649370,Vaibhav Gupta +999549,Howard Billingham +1215397,Jonathan Fernandez +99525,Sam Schneider +105815,Daisuke Hayashi +991706,Charles Layton +1387248,Josh Saeta +1172478,Peter Scherer +1204339,Jeff Kauffmann +15882,Chris Clarke +68450,David Grover +1139988,K.Y. Lim +83736,Chen Chi-Hwa +1484709,Mark Kowalsky +591420,Andrzej Jakimowski +1500900,Saleena Lockett +73508,Philippe Muyl +1446268,Yasumasa Osada +1606171,Lotfi El Gorda +1643877,Gonzalo Gonzalo +1320908,Brenda Shenher +1763654,Jeff Pantaleo +1322109,James Durham +1548461,James Andrykowski +1718579,Simon Hatt +1566371,James Hale +1869372,David Gullman +1749863,Homayoun Shajarian +1426063,Anna luiza Almeida +1805342,Adam Horwood +110462,Woodsworth Donisthorpe +1775350,Roberto Matus A. +557711,Julián Apezteguia +958512,Michael McDonough +1277050,David Grovic +1435597,Kevin Rose-Williams +1565824,Tibor Belay +1491121,Katie Silberman +1136328,Charlie Wong Wing-Fung +31868,Manuel Fontanals +44979,Vincent Fotre +929568,David Redmon +1640307,Suraj Sadanah +1444767,Zachary Croitoroo +1448294,Jenny Lin +1451556,Laura Creecy +1121053,Jean-Yves Robin +968532,Ron Patane +78428,Justin Marks +1425341,Ferdinand Duplantier Jr. +1080201,Naoshi Miyazaki +1391669,Yvette Taylor +840978,Michael Gilvary +1563395,Marina Voskanyants +1808365,Scott Rogers +1569329,Michael Aerni +1661771,Julian Scherle +1771006,Kate Pickthall +1192534,Zoltan Paul +1497973,Sharon Lopez +1460841,Kristin Rapinchuk +65767,Linda Hawkins +93021,Jason Lust +1637951,Ben Sozanski +1257133,Igor Tudvasev +1034587,Alan Ravenscroft +1862937,Carey Lindley +1883418,Jeff Robinson +111407,Raymond L. Schrock +143142,José Cottinelli Telmo +1376951,Saurabh Kumar +1044220,Missy Lisenby +1542024,Brad Flick +1267021,Brady Hammes +1735501,Ingrid Hamilton +1261548,Peter Lindholm +1197888,Louis Nalpas +1671688,Lukasz Pawel Buda +1381310,Claude Rocher +233077,Helen Kotsonis +1089017,Tadashi Ôno +1755721,Alexandre Arpentinier +1174349,Christelle Berthevas +1599543,Tim Kehl +1630289,William Maney +1711424,Susumu Akizuki +1390114,Paolo Logli +1454503,Sian Wilson +1403008,Brad Whitcanack +1545980,Arushi Govil +1735500,Bob Wiseman +1449800,Ogulcan Eren Akay +1710006,Andrea Agnello +1354319,Tal Granit +560232,Sándor Mihályfy +1379994,Olcun Tan +1380793,Veira Airaksinen +1543254,Peter Krumov +1402738,Peter Climpson +1722487,Jason Markey +20397,Wilkie Cooper +646785,Kim Nguyen +936318,Claude Veillet +1766570,Nadia Confalonieri +338734,Patricia Finnegan +1681499,Lung To +1418373,Mac Smith +928325,Tina Pacheco +1461998,Osiris Pérez +1635202,Kevin Dyer +1586295,Hans Petter Sydsæter +234893,Andri Steinn +1060615,Jason Massot +1609029,James Reach +34999,Claude Goretta +1641083,Freddie Hall +1519339,Tisha Myles +1869447,Brent Poleski +186549,Allan Leicht +585953,Carsten Myllerup +134405,Francesco Massaro +227597,Bruno Hébert +582911,Kristen Packard +1484204,Guo-Feng Tang +1817552,Stephen Siegel +1367914,Barry Twomey +1453928,Nick Fredin +202730,George Campbell +1797502,Abigail Scollay +1242111,Jeremy Woodward +1286567,Sarah M. Gonzalez +1537105,Juliet Loveland +225150,Manu Rishi +70030,Giorgio Di Battista +120022,Marco Poccioni +56788,Daniel Wührmann +1139972,James Paris +1470161,Morton Haack +1361568,Tim Nagle +1650753,Amélie Labrèche +1821873,Michael Musteric +1397403,George Van Marter +119115,Dominic Smithers +225886,Paul Baboudjian +1516045,Giselher Venzke +1574033,Charlie Phillips +1833112,Tom Ralphs +1773269,Hassan Schahbaz +1618808,Patrick Beaulac +1497015,Shouji Hata +27814,Mary Norton +91021,Danik Thomas +1103647,Frankey Dey +1399552,Richard Lackey +1796603,Knut Gløersen +1734270,Odorico Mendes +1454535,John Bucklin +1143013,Guillermo de la Cal +1616445,Mohsen Shah-Ebrahimi +1280963,Nina Yang Bongiovi +328697,Ralph Cohn +1038590,Joaquim Leitão +1456374,John Nelson +1622446,Kristina Kostic +6458,Earl Scruggs +54737,James Scott Linville +1456613,Fumie Imai +1785029,Asif Ali Khan +1319928,Kaat Camerlynck +89287,Nathan Parker +1000817,Sari Gilman +144665,Eiko Morikawa +121588,Eric Lavaine +1681829,Josef Reitinger-Laska +1604264,Kate Grube +1577907,Pascal Mayer +1656021,Arno Ortmair +1631322,Eugene C. Stone +1852943,Michelle Currinder +1414920,Laura Christiann Smith +1162828,Eben Bolter +89159,John M. Nickolaus Jr. +107201,William Haugse +1208804,Rodolfo Coba +14136,Frederick Muller +1761884,Jouko Seppälä +35594,Abigail Murray +1099157,Eduardo Servello +1448543,Luca Legnani +47831,Pavel Rejholec +1126097,Pavlos Filippou +276459,Salomé Breziner +557280,Boris Volchek +1288361,E.A. Rocha +1466975,Camilla Cuparo +1591521,Ingmar Menning +1299980,Christine Bieselin Clark +1738711,Carmine Infantino +133437,Edith Grafton +1455513,Andrea Castagnoli +124919,Pantelis Voulgaris +1302466,Gonzalo Elvira +1486390,Justin Timpane +1706693,Mary Lukasiewicz +1560945,Don McGuire +1433845,Vadim Avloshenko +166278,Andy Berman +1411216,Ryan Boucher +1811617,Joanna Andrews +1557107,Maïna Militza +1403395,Paul Stanwyck +233326,Alastair Beaton +1319157,Hannah Gates +1640253,Shobi Paulraj +1866064,Eberhard Kloke +1396317,Kyungho Jo +1332256,Amy Wadford +1113223,Mikko Kuparinen +1317161,Taruto Fuyama +474866,Mark Baldo +190735,Joseph Schrank +1553426,Marco Del Bianco +1195751,Evgeniy Nikishov +1657865,Rimbo Salomaa +1574811,Tsuneo Kosumi +10932,Jack Schwartzman +1563107,Nacho La Casa +1624604,Adam Schlesinger +1399107,Brandon J. Meadows +151157,Christjan Wegner +1410755,Mariusz Lukomski +1136034,Ignazio Orlando +1185207,Rénald Paré +123313,Abhijit Joshi +1043268,Borislav Nježić +1704381,Daisy Baldry +1209872,Carmen Navis +1880920,Surendra Kumar +85514,Irit Raz +1277073,Riccardo Irrera +1209903,Atlee +588869,Claude Barras +1335556,Michael Fentum +131037,Masanobu Takayanagi +1493667,Kei Hamano +129679,Paul Borofsky +29061,Tiny Nicholls +1565953,Markus Schaffrath +1844156,Damira Telbayeva +1189481,Georgi Polonsky +1601639,Kevin Dee Watson +1144623,Marco Alessi +4632,Susanne Hopf +1174107,Nicolas Kelley +150184,James Young +55476,Nicholas Hytner +211962,Geoff Johns +117721,Robert Sisk +134788,Christos Georgiou +1767238,Riyoko Tanaka +1594611,Jessica R. Lawson +555670,Michael Petok +8296,Christophe Gans +1034502,Ian Stynes +6363,Ben Court +1642562,Tosy Yeh +1273712,Marcus Markou +1339511,Michael Ohrenbach +1340725,Rada Danilovic +1567888,Barry Perelman +198799,Mark Riccardi +1583633,Joel Kaye +1514585,Andrew Tan +94841,Peter Yeldham +1398553,Laurie Turner +1496091,Randy Stewart +1424586,Jørgen Stangebye Larsen +1409258,Valesca Cnossen +1236860,Boyd Hale +1542298,David Laurie +1354323,Sopana Chaowwiwatkul +90281,Alex Garcia +1716100,Eleni Bertes +1757613,Keith Sellers +1161456,Huldar Freyr Arnarson +586672,Klaus Wolfertstetter +191937,Michael Green +116204,Teresa Millan +1491841,Ignacio Feldman +1574069,Marilyn Marcotte +11208,Robert Isnardon +1169343,Josh Bodnar +59892,Byron Shah +46266,Max Richter +1726766,Chris Muchow +96357,Norton Herrick +115418,Patrick Tantalo +1334762,Anton Antonov +1401076,George Alexander +91324,Tom Villano +1763412,Vishesh Deepak Sareen +1170861,Maxime Giroux +141645,Irina Povolotskaya +1446662,Kevin Schini +1195362,David Scott +1333914,Cambria Hankin +82234,Bruce Gowers +1454522,Louise Coulston +1438493,Becky Southwell +1590442,Trifunovic Dragan +101561,Franco Di Girolamo +1292074,Clint Nitkiewicz Hernandez +1594163,Cathal Watters +1448773,Alexander Hassenkamp +1537574,Biljana Mirkovic +277012,Ricardo Lee +1308180,Amy Harrington +1054790,Ratiborka Ćeramilac +1455506,Brandon Sebek +1108200,Ted Koland +29084,Vicki Huff +1621800,Shae Salmon +1580461,Hannah Walter +1824237,Massimiliano Sisti +144809,Rui Pires +1116046,Yves Elegeert +54581,Gustavo Giani +934994,Tengiz Abuladze +1499014,Alan Fellows +1649532,James Spencer +1675340,Elisha Christian +1548085,Kl Kenzie +990928,Peter Pruce +24218,Jeremy Gibbs +1775303,Paul Riechman +1650738,Pascal Ruest +6796,Peter Grant +229972,Ramesh Babu S +97235,Bryan Langley +1513800,Jonathan Alberts +1150712,Tommy Oliver +1831341,Hitoshi Iwata +1704981,Danny Burke +1676032,Rose Maria Tharakan +1664630,Sorrasak Jaroensrisan +1088681,Perry Bhandal +1775762,Bernhard Maurer +46292,Fanny Aubrespin +1424738,Martin Testa +1384817,Shaun S. Sanghani +1028244,Ian Olds +1630392,Gina A. Dumania +1652049,Ken Decker +1762208,Jade Poole +132495,Mai Tominaga +1591415,Ashley Bratkin +1183015,Cyrille Aufort +554289,Jingming Guo +74322,Kimberly Jones +168751,Michael Seater +1317462,Dan Baker +1718440,Kôtarô Isaka +67396,Leslie Hough +1575339,Josef Orlandi +1157600,Seth Baron +1194087,Marc A. Rousseau +930778,Nicolas Provost +1618410,Fernando Estrada +63146,Jesper Kyd +1432599,Matthew W. Kielkopf +1586734,Edward Bishop +60624,Vince P. Maggio +1337238,Mark Sasahara +1726024,Batizi Timea +1459243,Kalyn Karnan +1271234,Olav Storm Iversen +1311040,Arsen Diklić +1666069,Roz Music +1377410,Michael J. Luisi +1641657,Kate Evans +1219158,Scott Smith +1147194,Rajib Biswas +1371205,Marleen Holthuis +1447599,George Villaflor +1903925,Mark Hunter +1566124,Laurie Bookhardt +1406867,David Hayball +120332,Ann Locker +1321445,Harry Geller +28561,Tom Akinleminu +29062,Jerry Daly +60478,Warren Alan Young +876526,Matthias Triebel +157017,Scott Forbes +145130,Azazel Jacobs +1454647,Hugh Lofting +1340089,Sandra Algood +1407355,Sam Bollinger +1080782,Hans-Jørgen Osnes +1761130,Jaclyn Banner +99524,Filippo Sanjust +34193,Linda Burton +1108981,Peter Monsaert +1816353,Ben Ruffell +1017274,Audrey Diwan +1581566,Jacob Leander +1179828,Pamela Romanowsky +1098980,Robert Fowler +1621862,Alexandra Serna +1361172,Sean Maxwell +1161455,Margrét Einarsdóttir +1726773,Jason Trosky +1416938,Francesca Callow +1320185,G.F. Newman +1033141,Diderik Evers +995511,Andrew Bowler +1183493,Glenio Bonder +1593767,Richard Hill Wilkinson +1381307,Henri Heidsieck +1623714,Santiago Reachi +1708013,James Browning +1862931,Reginald Hendrix +87905,Karen van Holst Pellekaan +932023,Lewis Friedman +1574435,Zeina Soufan +1903934,Zachary Vesely +1212184,Paul Abbott +108938,Asha Bhosle +1401936,Jonathan Snipes +1816360,Andrew Kattie +57187,Heiko Müller +1407695,Alina Dan +1201085,Jeffrey Brown +1635197,Marcelle Coletti +65327,Daniel Chuba +935102,Marco Berger +1286556,Gil Kruger +1646480,Sandro Di Gioacchino +1811608,Hutch Demouilpied +1176569,Lawrence J. Cohen +1558021,Martina Byrne +113273,Jeremy Lovering +1641321,Jessica Daniels +565581,Adam Lewis +1107724,Patricio Valladares +1399456,Marc Connor +112685,Ian Jobson +1434875,Bert Wagendorp +1602118,Rudolf Hammer +203285,Max Landis +1194927,Kallia Papadaki +1057356,Simon Dennis +1816351,Arabella Winter +1575343,Kristen Alimena +1821912,Jessica Zanetti +31240,Josef Sanktjohanser +1460040,N. Scott Trimble +1005952,James Carleton +1907224,Seva Solntsev +1620755,Giorgos Zachariou +1544659,Iulia Petrescu +176871,Tad Mosel +551788,Laurence Struz +1286566,Julie McCoy +1458271,Dan Vining +1209871,Ross Riege +1544255,Katja Schumann +1421633,Gabriel Dowrick +1287616,Joe Newcomb +1665913,Jean Pierre Claes +1718713,Di Bennett +62637,Heather Parry +225149,Sudhir Mishra +103318,Lewis Jackson +6248,Gerdago +1607163,Beth Raymer +72238,Sean O'Neill +1372424,Carlos Sanches +1584621,Daniel Keefe +1317164,Kanako Kawaguchi +1394728,Kristin Ludwin +29389,Carlo Savina +1208226,Danny Bensi +1608761,Jeffrey D. McDonald +1390367,Perry Evans +1538206,Dale Glenn Waseta +32214,Eduardo Torre de la Fuente +106677,Steven J. Santos +29487,David Odd +1770974,Darrell Warner +1056413,Steve Winsett +1635262,Peter Thoren +1529462,Jim Lujan +59291,Alexandre Aja +120189,Enrico Oldoini +1830995,Vladimir Studennikov +1348000,Jeffrey A. Pitts +21851,Ian Putz +1765178,Raunak Phadnis +90267,Josep M. Civit +987344,Carlos Velo +131799,René Sascha Johannsen +57435,Richard Rothstein +1372716,Otavio Leonidio +1141395,Scott Rutherford +1314864,Kati Kaartinen +1567882,Joan MacFarlane +1470704,Veronica Lopez +1406197,Jaime Leonard +1616454,Steve Hubert +957690,Jeff Ginn +1643466,Geena Renk +1196279,Kermit Christman +1578991,Sebastián Sonzogni +1337327,Robyn Davidson +40353,James Leasor +1360098,Luis Galdames +52149,David M. Rubin +1328382,Bayard Stryker +1562470,Moshe A. Cohen +1712794,Afton Grant +1501720,Ariana Preece +1771812,Nanda Purwadi Sunardi +1606277,Giovan Battista Siciliano +216366,Josh C. Waller +1763646,Chris Dileo +957391,Antonia Barnard +1187345,Boris Kunz +1506445,Gorka Cornejo +45671,Luciano Trasatti +1155559,Alisher Khamidkhodjaev +1711573,Sam Pryse-Phillips +1405256,Christoph Dunkel +1309897,Joshua Spivack +1126368,Booey Kober +1819165,Lorin Semone Leifer +1389425,Maureen Murphy +1179822,Sarah-Violet Bliss +1709179,Antonio F. Cordova +40223,Joe Carnahan +1414091,Rebecca Lafford +1547458,Ken Ishii +1853967,Aleksandr Zhukovskiy +66563,Fred Wolf +1309574,Owen Wister +1049443,Cory Shiozaki +1570527,Ryan Alan Wood +1554206,Cristobal Tapia de Veer +1642515,Achim Herbig +550617,Dango Takeda +1573329,Kevin J. Burroughs +1683374,Priyanka Sirpal +1207156,Michael Mileham +128046,Alejo Moguillansky +1530407,Makoto Mihashi +1493532,Tone Hoeft +1372464,Andy Mulligan +1660966,Michael Glassman +1828369,Kristin Waterson +1109543,Maude T. Howell +64966,Thomas Lagerman +1370959,Erik Haraldsted +115178,Kristoffer Tabori +1615419,Susie Hill +75869,Nancy L. Babine +968717,Ivan McCullough +1340093,Matthew Gatlin +552323,Pål Morten Hverven +1349965,Aaron Bautista +40243,Gil Junger +1399965,Neil Prince +234839,Christoph Schuch +1398942,Richard Fernandez +1602138,Jim Kaufman +116274,Larissa Mair +1699375,Adam Crosby +1608247,George Troester +1536650,Jim Dobson +75553,Toby Oliver +1550773,Julie Liu +1532481,Kimo Tavilla +9748,Joseph Kessel +1150533,Lene Willumsen +1443032,Kimberley Spiteri +939445,Kristen Vaurio +113724,Ben Perry +548185,Natalia Ginzburg +1385152,Manuel Fernández Pinedo +1445376,Rawl Banton +1704984,Helen Kaneva +1097217,John Paul Bennett +20207,Arnold Messer +1650944,Valerie Biggin +1425432,Nic Mathieu +1746703,Nicholas Freemantle +1206323,Gil Iverson +3455,David Saxon +1620540,Alevise Orfanelli +215840,John Nelson +3436,Keiichi Suzuki +145024,María Meira +1036084,Omid Nooshin +1862920,Alisa Matlovsky +1434402,Manuel Bickenbach +1144937,Paulo Caldas +1525130,Paris Culbertson +1552473,Kieran Humphries +567850,Stevan Bulajić +1545981,Syuhada Hassan +1135341,Nitat Kumdee +19925,Gisela Haller +111895,Christian Cardona +1737737,John Garrett +1042696,Richard Kosinski +1138344,Ivan Silvestrini +1411509,Jane Wuu +36405,Matz Müller +71764,James Gurney +1460873,Moni El Batrik +1573325,Erica Severson +15602,Fernando León de Aranoa +1838190,Laura Martin-Robinson +1406188,Russell Oxley +1587696,Benjamin Massoubre +1517637,Rob Hepburn +1377116,Joe Gawler +1821891,Molly Federline +1573167,Sandy Nervig +1118136,Terrance Franklin +103132,Fabio Pittorru +1516801,Erin Citti +1827463,Daniel Graham +1379989,Matt Dessero +1707753,Matthew Holmes +1621892,Keith Waggoner +1885759,Araceli Fuente +1416949,Blair Jollands +1547662,John To +1533500,Tim Weber +1146997,Edward Redlinski +148180,George Kreisl +1796158,Samuel Barber +1293713,Seungcheol Hong +1052217,Jorge Torregrossa +70701,Ken Mok +1594811,Shuki Paz +1543203,Rachel Block +1275131,Markus Förderer +1539047,Lois Murray +1841579,Chelsa Molloy Salesman +1030310,Aleksey Andrianov +1413833,Abigail Steele +64686,Lau Fung Lam +1611207,Zenon Zyburtowicz +579731,Pierre Blondy +1523232,Nidhi Gambhir +1501788,Chiara Barzini +233667,Luci Ward +90228,Mark Obenhaus +63572,Ivy Kong +1449059,Andrew Palmer +273123,Robert Campbell +1022551,Adri Siriwatt +1192406,Manami Tsujino +1820956,Alex Jia +1124649,Lucas Joaquin +1512732,Mark Neysmith +1553772,Aymeric Dupas +57158,Igor Meglic +424106,Jean-Paul De Vidas +58484,Michael Sombetzki +1643331,Kyung-soo Han +1780165,Björn Mayer +552998,D.B. Farmer +1772635,Andrew Getty +92202,Ned Bouhalassa +1722220,Melissa Hayward +1600905,Jo Kyu-Jang +135405,Maria Nation +1493436,Delphine Schmit +1638550,Uzair Merchant +1087735,Eric Driscoll +1179322,Howard Swift +1138401,Barthelemy Fougea +546876,Alex Stockman +1304659,Arman Gevorgyan +1880933,Anne MacKenzie +83865,Zbigniew Rybczynski +207687,Charles Evered +1888983,Shawn Anderson +1429335,Billy Buttery +998555,Victor Kossakovsky +1495871,Milos Kodemo +1335852,Robert Blasi +1713076,Pearce Roemer +1414290,Michael Dillon +1569336,Jesse Kobayashi +1140238,Hannah Fidell +1304601,Taehyeon Jang +1233554,Liz Tuccillo +136156,Lori Chavez +1179824,Alexis Gambis +109236,Milton Delugg +941733,Juan Bautista Stagnaro +1393303,Jeremy Price +118606,Janus Metz Pedersen +57816,Kwesi Dickson +123869,Mitsuo Kondô +1841692,Rodrigo Graciosa +914286,Marina Stabile +1542345,Bastien Sirodot +1636867,Brandon Goetz +1413000,Richard Schoen +1337733,Roman Uglevatyy +622942,Guido Malatesta +1581800,Arthur Bradburn +54751,Torsten C. Fischer +954433,Alejandro Reza +95255,Davis Doi +587621,Александр Зельдович +1884718,Mariel Sanchez +116211,Marcelo Pais +1521100,Steven J. Berger +1185915,Thomas Winkler +133884,Kevin Peek +34493,Tarek Ben Abdallah +1553492,Stephen O'Rawe +228525,Dorith Vinken +1569346,Richard Muller +1603358,Antonio Rossi +1451992,P.K. Hooker +1372426,Garlan Wilde +120205,Fred Preble +1579378,Brenden Meers +1309478,Isaac Ezban +932248,Fede Alvarez +1017340,Aurora Bergere +1640328,Rohit Korgaonkar +1774216,Clementine Dupont +1652772,Moe Curtin +1775627,Camila Soares +73171,Werner Müller +1772144,Roman Ledenev +1136920,Phinehas Hodges +1390376,Bruno de Santa +1012850,Ceon Forte +1050075,Denes Sekeres +1462349,Peppino Piccolo +1800386,Jeremy Jackson +109583,Paul Tanter +19349,Søren B. Ebbe +1598098,Timothy Marrinan +1299058,Matty Beckerman +1738380,Blair Miller +216391,Elise Allen +1347738,Douglas Poland +19399,Leonard Praskins +449908,Rodney Bennett +1815922,Sebastian Schmall +30797,Monomango +43954,David Grossman +1412908,Florence Batteault +1621467,Antony Jones +1292103,Lucan Toh +228989,Ravi Chopra +1429334,David Owen +1032011,Afonso Poyart +1632801,Michael Tyabji +230421,Léa Fehner +500061,Matt Osterman +1338239,Nick Roberts +1526013,Ignacio Lacosta +55189,Bruce McDonald +1419718,Corald Giroux +236104,Eijirô Wakabayashi +1323295,Graham Churchyard +1685632,Julie Hill-Parker +1453114,Nikola Radivojevic +1328412,Charles Varga +1031201,Jared Goldman +231830,Patrick Peach +37742,Gianfranco Parolini +1521093,Marcos Santos Diaz +1548849,Zachary Berger +1171618,Nuno Bernardo +228543,Eizaburo Shiba +1445358,Lee Kim +1825845,Kathleen B. Cooper +983770,Daniel Holechek +1844355,Serena Gattuso +75871,Tim Kane +1764541,Shilo Lavallee +1450645,Chu Ka-Yat +81355,Yukihiko Tsutsumi +1336932,Aksel Holand +1155432,Yesi Ramirez +235259,José María Sánchez +548012,Eiko Nishide +1505528,Sean O'Kelly +43435,Florian Hanig +1425372,Christopher Hand +1150431,Tom Shoval +106482,Shawn Alex Thompson +1632329,Laura Holeman +116203,Aníbal Di Salvo +138704,Dominique Monfery +1428878,Taera Shroff +1626017,Julie Hutchinson +581079,Andrey Malyukov +55761,Veit Harlan +236861,James Rabbitts +1635338,Bobby Thompson +1102865,Beth Hubbard +123537,Steven Kastrissios +1463917,Shawn Palmer +1270224,Laurent Witz +588066,Min Joon-ki +1615080,Cristian Dragos +1531099,Parisa Taghizadeh +63747,Anna Croneman +65629,Bibo Bergeron +1770987,Victoria Keeling +189331,Laurie Webb +99601,Mike Tristano +1304291,Melissa Reese +70723,Topper Lilien +141604,Leon Abrams +1644008,Raymond Boy +1819548,Jose Nacif +1319346,Fred T. Kuehnert +1018710,Ca-Trece Mas'Sey +129301,Walter Lupo +1805380,Hong Ju-hui +1810671,Donari Braxton +938636,Joan Espinach +589816,William T. Naud +65705,Dr. Seuss +1575827,Joanna Cook +267765,Michael Gibson +1820516,Jodi Byrne +1430075,Jan Hope-Kavanagh +1445361,Chris Crane +969992,Kenton Allen +77128,Lorraine Lévy +1409534,Evan Johnson +1610494,Jaan Childs +1747173,Michelle Fingleton +1548079,Jacqueline Shulman +1448315,Arne Kaupang +1553832,Michael Wiggs +1127245,Jeremy Woolsey +1263805,Benjamin Hendriks +1102112,Lone Korslund +1547763,Julie Sessing +1367561,Michael Tsimperopoulos +1661400,Simeon Duncombe +1547646,Garrett Kelleher +1163130,Sandra Jennings +1405704,Kelly Muldoon +1630903,Steve Bobertz +1725748,D.J. Barton +1797442,Chris Heasman +1575657,Yuridia Torres +164509,Ricardo Maldonado +1005954,Elaine Kooser +1351630,Kô Saitô +1765168,Ollwyn Dsouza +1423846,Meredith Montano +1764802,Gabriel Lewis +7213,Jonathan Mostow +82334,Leslie Norman +1724719,Samy Bardet +87748,Lesley Storm +1630969,Cudah Andarawewa +1134654,Shahriar Bahrani +550175,Michel Brault +1512772,Sebastien Marquilly +1401163,Chad Dougherty +115674,Ryan Eslinger +1117747,Mitchell Bell +1769270,Stacy Lara Sanders +1169498,Markus Ullakko +79815,Bergsteinn Björgúlfsson +1601476,Max Karli +1362709,Rafael Galdó +1224748,John McNamara +1531373,Richard Clair +1621857,David Buchwald +1108828,Fred MacDowell +1715745,Michael Stocker +1707778,Marek Iwaszkiewicz +1394338,George Haddad +1022433,Jane Hooks +1038014,Jean-Pierre Blanc +1725544,Kevin Hall +126126,George More O'Ferrall +1257087,James Dashner +1622326,Ritchie Lyon +1142410,Lukasz Targosz +1287324,Rajesh Pandey +1398748,Aleksandra Staszko +591941,Mary Loos +1880905,Shiuli Thukral +1179825,Brooke Goldfinch +74320,Kathy Mooney +1372045,Sebastian Pardo +238624,Svetlana Mikhailova +53016,Michelle Chydzik Sowa +1755113,Raúl Menéndez +53617,Michal Englert +81385,Myrl Stoltz +938085,Éric Hannezo +1507573,Gal Zelezniak +1378570,Scott Dobbie +1679701,Maja Vukić +1805396,Choe Ji-hyeon +1427378,Luca Mercuri +1616379,Garret Roosa +1518729,Álex Sierra +1086906,Robby Poitevin +1685945,Nick Offord +1532605,Marie A. Kohl +977926,Guy V. Thayer Jr. +567324,Marivi de Villanueva +1649355,Riva Cahn Thompson +1423206,Dawn Rivard +1595708,Evgeny Kovalev +1542380,Nick McCahearty +59940,Thom Best +1682906,Christine Coyle Johnson +1128542,Tom Anton +1321345,Gordon Rempel +1646494,Steven Ghouti +132452,Im Sang-soo +935702,Jean Cottin +1702414,Scott Dale +1455228,LazRael Lison +1173144,Sheree Le Mon +1008505,Alessandro Altieri +41572,Evgueni Galperine +1723506,Keith Devlin +5380,Richard Klubeck +1047497,Christian Bisceglia +76085,Anousha Zarkesh +1761901,Ariel Sella +545229,David Weaver +1622338,Eric Deren +1074959,Soros Sukhum +1431513,Julian Dimsey +1187346,Alexander Costea +765144,Alyssa Weisberg +1065276,Wouter van Luijn +1028357,Takeo Nishiguchi +1256815,James LaRosa +1691488,Bily Salazar +1699371,Brittney Wall +1184327,Artur Ribeiro +1063401,Sei Ikeno +81237,Chris Thomson +1379970,Megan Marquis +1548030,Ana M. Amortegui +1585732,Paul Lee +1580066,Arifin Cu'unk +1116278,Aaron L. Gilbert +1209783,Rock Mafia +1464943,Trent Othick +1853406,Éva Herskovits +1166988,Klas Östergren +1776968,Kensuke Shiga +1374469,Toby Spigel +1464564,Richard Pefferle +1905737,Megan Shank +1561810,Nikos Papadimitriou +21604,Yvonne Caffin +1440496,Stan Jones +75835,Ronaldo Nacionales +1723501,Snigdha Basu +567561,François Armanet +1550236,Kevin Zimmerman +1263793,Janneke Markus +1384819,Alan McIntyre Smith +1875735,Raymond Horvilleur +117903,Sean Skelding +1857578,Luis Jorge Medina +1409865,Martina Subic-Dodocic +1845762,Dave Moffat +1089973,Vonne van der Meer +1227350,Dee Caruso +98319,Johanna Hald +1371239,Ian Darling +1730976,Samuel H. Hinckley +1327244,Lane Baker +1226331,Erin Doyle +1681433,Indrek Arula +972052,Susie Mancini +1394093,Marianne Huet +83749,Laurie Craig +108220,Lorenzo Fertitta +81809,Declan Lowney +1525153,Jeff Lichtfuss +1455618,Juan Miguel Vadell +1047108,Sarah Contant +1419107,Dave Cambria +1192755,Shashant Shah +1444969,Paolo Buzzetti +1208220,Cristián Petit-Laurent +1346591,Steve Greene +1284733,Chananun Chotrungroj +1635332,Rachael M. Roth +1205753,Caryl Ledner +1622814,Helder Loureiro Alves Da Silva +957628,Claire Anderson +1541302,Kazuo Funahashi +1328122,Carmen Marie Colón Mejía +1780190,Johannes Adler +1816772,Tomonari Suzuki +1011000,Gudrun Giddings +1324995,Cecille Baun +1841571,Danny April +1077774,Elwin Looije +1410597,Matthieu Royer +1270363,Stuart Douglass +1523173,Jason Linkow +1367934,Taylor Washington +134935,Ian Eyre +67204,Anna Lynch-Robinson +27864,Piero Filippone +34389,David Mohn +1453139,Luellyn Harper +121115,Milan Roder +1713955,Laura Ng +1745158,Larry D. Howard +1564551,Kazu Ôtsuka +1728933,Juna Suleiman +143141,João Ortigao Ramos +1638557,Summer Dietz +1895223,Alexia de Oliveira Gomes +1526084,Erol Zubčević +147779,Gürsel Korat Sağlamöz +1580873,Luis Vojtechovsky +1185778,Dane Eade +41673,Patrick Sisam +1414948,Breena Bradford +1330182,Mbissane Ngom +1003190,Jonás Cuarón +1144604,Destin Cretton +1706710,Claudia Li +1228986,David Giles +1412923,Nour Rakotobe +1419730,P.J. Burch +1726810,Carolyn Scully +80752,Shinji Higuchi +1417179,Sam Franklyn +1406783,Mulchand Dedhia +1537408,Tetsuji Tatsuta +1409399,Tara Paul +34496,Ray Sebastian +5913,Beth Sepko +1550633,Jessica Sherman +1367491,Michael Sabo +1422965,Karen Crane +1431085,Michael A. Tushaus +1642684,Andrew Janczak +1718138,Kushal Gada +1660183,Tuteri Dal Rangihaeata +1636865,Samantha Ward +228551,Tadashi Sakai +442286,Patrick Johnson +1272364,Tommaso Avati +1533496,Zsofia Laczko +1792336,Kathy Louie +996994,Alex Holmes +223210,Diego Fabbri +115372,Ralph Smart +1457658,Buki Shiff +122434,Andrew Deane +15880,Nigel Heath +240264,Fred Bongusto +51896,Mar Targarona +1338977,Dirk Schäfer +1099990,C.J. Roy +1243745,Mike Young +1658877,Brianna Domont +85404,Girish Dhamija +1269325,Kathleen Orillion +1734719,Kenjiro Yoshida +49823,Eleazar Lipsky +25138,Scott Niemeyer +1417830,Maxx Wai In Leong +1642603,Harold Tsen +1660708,Jenny Morgan +1569333,Keith O'Hara +1439430,Alden Anderson +1578877,Jamie Archer +1372653,Budd Lewis +64163,Kimble Rendall +213405,Lawrence Appelbaum +1204862,Christian Szczesniak +1177501,Denis Mercier +1376404,Ladislav Fialka +303064,Megan Griffiths +1254749,Katja Emcke +5745,Silke Fischer +1018472,Lauren Munsch +1590968,Adele Spelling Frank +1213382,"Charles Pratt, Jr." +1291348,Daniel de Liege +1545933,Tiffany Anders +107643,Camilla Läckberg +116930,Alex Wright +1429653,Mohamed Amin Benamraoui +1776889,Alissa Shipp +66824,Matt Johnson +1408405,Mark Sansone +587968,Emilio Portes +71955,Yas Takata +1428927,Carmen Tabanyi +1544343,Marty Murray +52515,Laura Karpman +64488,Stephen Lam +558157,Ralph T. Desiderio +1380613,Raphaël O'Byrne +1433655,Oliver Cary +16411,"Arthur Rankin, Jr." +1395183,Chloé Zhao +89712,Jarrett Lee Conaway +29936,Mark Kruger +266367,R.B. Carney +1276604,Iris Tilley +1632082,Olga Kruchinina +1830580,Aleksandra Bolshakova +1402708,Donna Spahn +582924,Eduard Grau +1560231,Kyle Sanborn +1108835,Dixie Chassay +930701,Marius Markevicius +1388900,Aimee Spinks +1172198,David Chan Cordeiro +1202845,Annie Simeone +1505492,Epsilon Indi +1289366,Heikki Aho +1367647,Anne Moralis +988711,Jhamu Sughand +1103717,Lindsey Moran +958722,Eiko Ishioka +1451783,Takashi Kobayashi +229802,Mia de Jong +1031774,Sandra Granovsky +1159388,François Ede +1197416,Dean Matthew Ronalds +1363840,Joan Patricia Parris +1671255,Sylvie Roy +1089538,Veronica Raimo +1302041,Goran Tribuson +222298,Matti Kassila +148158,Al Eugster +1476650,Simon Cluett +40990,Walter Kutz +1038001,Steven Kostanski +90869,Flamarion Ferreira +20783,Bing Howenstein +1346489,Paul Harb +1526867,Claude Duvernoy +1495868,Zamal M'Barek +1453122,Ivan Pribićević +1619730,Daniel K. Smith +1493685,Kôshichi Yoshida +98136,Andy Sidaris +1352420,Kumalasari Tanara +1696503,Dick Thomson +1258116,Anna Cottle +1829979,Fiona Foster +51669,Douglas Kennedy +1620689,Triada Papadaki +1335048,Simon Giles +1372209,Everett Byrom III +1453571,Steven Stone +72757,Steve McQueen +1124534,Geoffrey Wexler +544824,Mario Fioretti +1382177,Tim Lea +1735505,Samuel Webster +1838731,Mónica Vértiz +1327252,Teri Gill +36658,Katie Spencer +1447372,Ken Boyer +1327186,Susan O'Hara +1318268,Jacques Ferrandez +1539288,Zamfir Zamfirov +1431506,Todd Smythe +1623943,Bob Bloodwell +1031760,Ashley Trumbower +65392,Bryan Goluboff +1394041,Tony Jackson +103009,Thomas Schnauz +1031252,Luis Ascanio +130575,Glenn Leopold +1565849,Marie Torstensdotter +1064198,James Gruen +1541541,Carola Fuentes +42434,Michel Zana +1263993,Lars Hagström +1780125,Charlotte Chang +1223380,Stelios Likouresis +1468585,Stanley Fernandez Jr. +226997,Mike Levine +104668,Robbie Bryan +1521447,Ramon Engle +1358032,Henry Wadsworth Longfellow +1185282,Dirk Simon +1017241,Alain Pancrazi +1484224,Kristin Lee Calabrese +1118732,Nina Fomina +1450844,Mokona Apapa +60897,Gary Randall +1208354,Michelle Imperato +121860,Jaikishan Dayabhai Pankal +240813,Marvin Borowsky +1885281,Sergio Pérez Berbel +84746,Seiji Chiba +1824279,Leonardo Cellai +1322594,Riccardo Paoletti +132209,Ed Cathell III +1098051,Christopher Manley +1403530,Kenichi Tajiri +128624,George Webber +30409,Edward T. Lowe Jr. +221925,Evan Clarry +1448306,Jeanette Redmond +1367498,Scott Puckett +70799,Alfred Hürmer +1612798,Eirik Smidesang Slåen +1434053,Steve Pratt +1345660,Aitor Mantxola +1473801,Ryan Priest +1742982,Warwick Drucker +1376944,Rajat and Manan +999562,Gordon Lester +1746697,Lucas Webb +1286580,Donald McKinnon +1663537,Darling Swamy +1630378,Jack Jenkins +1578229,Jami Villers +1441216,Marc Waltman +1707032,Lidia Pacewicz +92177,Dean O'Flaherty +1608768,Tamsin Costello +1115094,Bashir Babar +1351475,David Zapletal +1093739,Tahvo Hirvonen +1701615,Ferraby Lionheart +1232814,Michael Rubiner +143148,César de Sá +1308906,Paul Shrimpton +1580067,Fabrizio Pistone +112947,Erich Hoeber +1795666,Joyce North +1621356,Allesandra R.T. Said +1425330,Steve McLeod +1192407,Takashi Sugimoto +1845774,Ian Chan +183903,Sean Foley +1085298,J.D. Schwalm +1593867,William Kozlenko +1584969,Enrique L. Morfín +31866,Antonio Díaz Conde +20516,Dean Georgaris +963164,Ben Grant +1451515,Steve Finnigan +71285,Balazs Bolygo +100742,Nabil Ben Yadir +1323770,Brittany Blaise +1748761,Cris Thomas-Palomino +1493145,John G. Pozhke +2900,Carl Zuckmayer +563400,Carina Sanginitto +1840330,David W.R. Shepstone +1844155,Aynura Mussa +45774,Vincent Tavier +133880,Rob Whitehouse +1539311,Rebecca Dunn +1082564,Richard H. Berger +1167829,Tanja Grunwald +1418397,Erik Winquist +1345303,James B. Morley +1464967,Carol A. Compton +1525811,Fil Eisler +1824233,Marco Milani +95459,David Miner +1081533,Julieta Canicoba +1136706,Petar Bergamo +1558855,Mark McBryde +317517,Haig Balian +1275132,Leonie Leuenberger +1904064,Chantelle Kadyschuk +67115,Ken Turner +1073813,Eija-Liisa Ahtila +1746699,Craig Barwick +239247,Mahlon Merrick +1697267,Cam'Ron Giles +66825,David Blackburn +50750,Gianfranco Amicucci +1565839,Saskia Ackema +1352425,Doug Winningham +1389547,Sandra Frieze +1543230,Ron Licari +1477488,Natalie Perrotta +965326,Nathan Lanier +1095807,Nena Jaye +108218,Frank Fertitta III +1558543,Karma Hijjawi +134463,Jorge Arriagada +1413125,Marina Marit +1719452,Bakytbek Turdubaev +1372090,Vincent Cosson +964677,Reyad Farraj +1630071,Luca Ricci +187478,Amanda Levy +49785,Andreas Kleinert +1538938,Hideo Itô +1638131,Ann Chow +1725575,Lindsay Greitzer +1551467,Dankuro Shinma +1378717,Stuart Haggerty +85058,Ali Merchant +1606192,Sylvia Grave +1560225,Stephen Spaeth +1048884,Stéphane Robert +1304491,Hanne Larsen +21712,Carl Franklin +1723161,Holland Diaz +1412502,Josefin Johansson +1367136,Nike Imoru +1583218,Paul Begin +1292478,Monica Rene'e Anderson +1647161,David Steinmetz +15359,Wade Allen +1851923,Butch Ries +65734,Luke Greenfield +121558,Claus Bjerre +1681853,Catalina Restrepo +1049455,Lester Chung +567462,Mike Burns +1168861,Kathy Gatto +229236,Jean-Loup Hubert +128616,Bert Hamelinck +1311675,Petra von Oelffen +1371561,Léo Hinstin +1791604,Henrik Efskin +562698,Karen Mann +1640380,John Bardswich +1288836,Beth Harrington +1084462,Taylor Chen Travers +1413036,Andy Long +1448342,Jack Rattner +1537405,Naoki Satô +582414,Salvatore Gallo +1550071,Charley Gilleran +1657236,Manolo Rojas +1712989,Helder Faria +1092619,István Császár +1650745,Aymeric Colas +1324834,Danielle Laubach +1415507,John H. Smith +1317365,Elisabeth Kapnist +1266165,Athos Setti +1010744,Kristina Hetherington +1340099,Xander Lott +1729492,Conrad Kahn +1071381,Frank L. Anderson +1512785,Maggie Perlado +1814562,Brian Jeremiah Smith +1611803,Jayme Roy +1506369,Hee Soo Kwon +1570080,Snow R. Shai +1647415,Charlize Toratani +1583213,Kelsey Smith +1734414,Josh Kupanoff +1723933,Federico Ruiz +1636712,Jasmine Singh +984014,Marion Monnier +1439431,Kenny Becker +1615568,Mina Petrara +1153617,Aigars Grauba +1225273,Ray Galton +17213,Kate Healey +1459755,Adrian Millington +130856,Robert Kroupa +83030,Lee Han +1397452,Anna de Paoli +1416898,Marc Glassman +1415009,Joel Dougherty +55295,Carsten Eder +1194578,Marc Aubry +149891,Kelly Williams +1299105,Byron Lester +1433466,Sean Roney +53238,Kathleen Slattery-Moschkau +1799082,Vladimir Besedin +131600,Thames Williamson +60666,Tim Eckel +1555617,Dee Hibbert-Jones +1391803,Ted Bauman +59113,Nicholas St. John +1154037,Cüneyt Kaya +1123193,Tony Grazia +16886,Stephan Schesch +1202524,Elio Micheli +1570602,Steve Zink +1378569,Doug Forbes +128217,Giuseppe Capotondi +937872,Erik Rommesmo +1131187,Motoji Kojima +1453119,Branko Brkovic +1196912,Ludwig Hornsteiner +553297,Takashi Yanase +176489,Vanessa Taylor +34386,Gunnar Voigt +957031,Gary Yershon +1459745,Oz Gani +66889,Angelo Colagrossi +226342,Michael Baumgarten +16680,Yan Tax +977206,Mindy Goldberg +1816880,Ben Strivens +1808498,Éva Vass +1733492,Matthew Cannings +31323,Carlos Suárez +1328331,Jonas Bell Pasht +1073744,Igor Litoninskiy +1407251,Oliver Olsen +39719,Jean Herman +113610,Thomas Gilou +123707,John Geddes +15774,Chris Buck +1331892,Simon Webb +1595083,Raphaël Haroche +129760,Gaëlle Macé +1706714,Hannah Ovenden +143570,Félicien Marceau +1404734,Mark Chow +1506444,Aitor Basterretxea +1339686,Lily La Cava +1583209,Elaine Sanford +1452729,Reuben Canoy +107254,Marta Flores +1060877,Haldane Douglas +1609169,Natasha Francotte +1603645,Unurtan Burcu +1188273,Christine Holder +225103,Francesca Comencini +1511015,Humberto Rosa +1355571,Graziella Marsetti +955133,Harry Shuster +1759729,Sasha DeMello +45792,Gustav Danielsson +1494189,Joey Carey +1396373,Tomás Mas +1333055,Mikiya Takimoto +1052143,Giovanni Cristiani +1619739,Erick Schiele +1465940,Craig Price +1640635,Alexandru Radu +20267,Jan Ole Gerster +1210423,Tom Lembcke +300472,Lawrence Silverstein +1495817,Ba Jin +103382,Daniel B. Ullman +1431108,Gabriela Herrera +1289701,Evelyn Gabai +1167034,Andreas Lenz von Ungern-Sternberg +930008,Neil Benezra +1143384,Amy Nauiokas +56666,Keith Calder +1066228,Marius Matzow Gulbrandsen +1538304,Thalma de Oliveira +1567634,Sophie Hunger +1533600,Marta Loza Alonso +1188745,Hans Albin +77107,Alan Pao +19691,Tom Hannam +73196,Brynmor Llewelyn Jones +1327334,Sean Lahiff +1635239,Danny Eckler +582039,Clay McLeod Chapman +1184796,Leslie Waller +1721875,Sandi Gunnett +1227268,Dan Kavanaugh +1419619,Jonathan Bartz +1290147,Peter Pappas +75873,Peter V. White +1691495,Walter Ruiz +1823391,Keegan Sacko +1728379,Josh Levinsky +344185,Charles Grayson +1638823,Anderl Rutz +96390,Kathryn Wallack +1715405,Miguel Gurza +1020771,Russel Wiles +1857586,Daniela Sanchez Battenberg +574198,Anja Dahl +1638136,Petar Jovovic +1317046,Sam Jones +1328760,Matthew Wauhkonen +1484983,Matthew Brady Harris +165961,Julie Sherman Wolfe +1447791,Hannaleena Hauru +1390796,Lyubov Butyrina +937016,BenDavid Grabinski +1551896,Shawn Smolensky +1635802,Mark Roberts +238622,Gennady Popov +1618145,Paki Meduri +1169223,Mogens Kløvedal +60472,Trevor Macy +1539286,Leigh Brzeski +1816410,Kristen Michaud +1203227,Yû Aku +1742506,Lia Perez +1177547,Raimondo Castelli +1542497,Larry Haas +1746747,Alex Schaad +129249,David Lifshitz +1652866,Florent Gonçalves +1133674,Jack E. Smith +1584324,Amy Faust +968934,Marc Canham +1838600,Jamie Hall +935843,Adoor Gopalakrishnan +1135153,Étienne-Jules Marey +1829974,Stuart Penn +1224626,Christoph Röhl +1682249,Teresa Olga +1412575,Peggy Kyriakidou +1443051,Jessica Pope +1484504,Nick Cole +562940,Cellin Gluck +21394,Gerry Lively +1866259,Mark Diggins +66492,Michael Roiff +1871238,Alex Soto +119471,Wong Kei-Yee +1735102,Rishi Oberoi +1479442,Howard G. Barnes +120944,Harris Jayaraj +1440042,Zoltán Lovasi +60516,Wai Sum Shia +1691591,Ken Biehl +559968,Leslie Small +50632,Moritz Denis +583257,François Bertrand +1383026,James Kronzer +1196854,Stephen Fusci +563357,Mariette Désert +1594813,Sivan Lavy +554859,Masaharu Ayano +1324391,Jake Pushinsky +1692488,Patti Allen +1012152,Pedro Luis Ramírez +1178144,Brian Brightly +101892,Ed Carlin +1053663,Deborah Giarratana +1006474,K. Rajagopal +57589,Donald Taylor +1394508,Agnes Ravez +1851698,Martin Meinerz +1069863,Bernhard Maisch +1176982,Александр Пушкин +1539306,Odile Schalit +1011002,Justin Steele +1637437,Dylan Scott +130992,Raya Martin +238626,Olga Granina +1605658,Thembi Mkhaliphi +1396984,Jean-Paul Chreky +1632946,Madeleine Charlot +1831338,Tadashi Ohsumi +73647,Eleni Karaindrou +1456355,Pete Moroz +6242,Karl Ehrlich +1173281,B.J. Nelson +1587695,Fabrice de Costil +1530138,Ben Cox +1453675,Walter Bithell +551565,Sai-Wan Lau +1341758,Sean Barclay +1031756,Flent Coleman +1444299,Prem Marimuthu +1542312,Maia Imedashvili +1241227,Anne-Cath. Vestly +1816877,Anton Sensky +1304201,Valérie Ranchoux +1420669,Mihkel Ulman +130855,Jojo Li +55080,Debra Weinfeld +126179,Paul Van Carter +1380638,Michael Thomas Slifkin +1707847,Dorle Bahlburg +1380048,Adam Dorn +1088094,Ronnie Thompson +1700418,Pentti Lintonen +1643884,Kari Christensen +1777489,Mike Brady +31730,David Nokes +227226,Patrick Cassidy +1489446,Roger Danès +1568917,Salvador Félix +63589,Debbie Isitt +101190,Antony I. Ginnane +1570593,François Warot +1510940,Anthony Badalucco +110524,Michael Verrechia +1495051,Sandra Montgomery +1443954,Chris Morley +1518921,Philippe Akoka +1841565,Charles Miller +230008,Siddique +971528,Leah Katznelson +11249,Bernd Euscher +98510,Junichi Mori +76171,Noboru Iguchi +1581562,Alix Kolar +589183,Kenneth M. Badish +1016134,Martha Stephens +1090142,Simon Tindall +1652051,Spencer Whitney +1160008,Jackie Raynal +1314579,Adam Lichtenstein +1008509,Pedro Martín +1791606,Daniell Ashby +1445666,Jake Hawkins +1780120,Michael Geldreich +1654251,Abel Vang +1397879,Ania Harasimiak +1436388,Nabwana I.G.G. +1632868,Jack Martin +289472,Antoine Lacomblez +1738113,Frédéric North +1010915,Jermaine Stegall +1484480,Art Washington +1621472,Ayse Kaya +224783,Arne Skouen +1398913,Noel Cowell +29488,David Yardley +1428034,Yinka Edward +71039,Susanne Schett +1060311,Geoffrey Barkas +1872255,Richard Dearborn +1266717,Massimo Giustini +1294091,SeungGyu Kim +1486179,Jason Taylor +237622,Alvaro Mancori +78977,Katie Mustard +1722384,Kevin A. Canamar +1877775,Min Li +1402904,James Ezra +229482,Kyle Patrick Alvarez +1564520,Douglas Slocum +1355541,Jason Ellson +1106968,Jan Deca +1455710,Sihanouk Mariona +1437900,Rainer Antesberger +143414,Dick Irving Hyland +1640306,Marcin Andruchow +147915,John Lowry Lamb +1298940,Vittorio Massi +591400,Sam Cullman +78675,Massimo Gaudioso +1718051,Itta Kobayashi +56248,Verónica Cura +1191559,Heather Neale +1463127,Mark Woolley +15658,Adrian Spies +1312510,Petra Korner +103047,Sean Keller +73746,Stephan Massis +104043,Achille Manzotti +1479542,Pierre-Henri Laporterie +74117,Etienne Comar +54744,Bob Mahoney +1496032,Lucho Llosa +63289,Steve Gaub +1142353,Brandon Lohstreter +1464985,Tom Fleming +1592793,Lisa-Nina Rives +1550777,Nick Hsieh +1286911,Luc Van Bergen +78866,John H. Lee +1864631,Jasnai Jansen +1565126,Selena Carrillo +1548104,Molly Tissavary +1443848,Ken Cain +1460652,Jacob Jared Jones +1419434,Lim Hee-jae +1635211,Marcus Lewis +1174095,Mandy Hoffman +43938,David Oye +1439118,Florence Weyne Robert +1418263,A. Jaye Williams +587082,Monte M. Katterjohn +1018930,Donald Miller +1129262,Era Lapid +115810,Yagmur Kaplan +1493312,Csaba Tóth +85385,Bunty Nagi +150185,J.G. Hawks +1154128,Anthony Busbridge +935847,Arthur Strawn +1564354,Mark LeBlanc +1417888,Kandice Billingsley +999547,Russell King +1729545,Tobias Lauterberg +100991,Ray Mercer +1243953,Kenichi Kawamura +1122547,Hans Ingemansson +92057,Bappi Lahiri +1637442,Hugh Wielenga +457819,Edward Selzer +1399638,Rob King +170927,Nancy Fichman +1545051,Lechoslaw Trzesowski +1489485,V. Erkhani +1892943,Shobha Sant +90769,David Rose +1766562,Pavel Terekhov +107466,James Aviles Martin +1796068,James Shearman +1781545,Christopher Vasquez +1473843,Laia Ateca +1055806,Nicolas Altmayer +32575,Henry McCarty +108765,Brett Forbes +458811,Oriol Capel +1335144,Aleksandra Mihajlovic +555279,Norihito Sumitomo +1400493,Michael Leather +1780179,Agnés Claude +1466446,Nash Dunnigan +96363,David Oliveras +1406072,Steve McQuillan +60557,Mario Grigorov +1345424,Scott Abramovitch +1821889,Brittany Dewees +1830506,Laura Whitehead +1674845,Jing-Kong Tsui +1430510,Tex Ragsdale +34176,Jerome Pycha Jr. +1583627,Amy McCroy +1399875,Kevin D. Hewitt +56231,Vincent Tabaillon +1125621,Rudy Raemdonck +1378143,Mike Strain Jr. +999570,Tony Harding +239917,Ugo Pirro +40913,Jerzy Wójcik +1822566,Pri Jansen +1398245,Yngvill Kolset Haga +1368995,Kees van der Hulst +1293994,Jon Watts +1347753,Monika Darby +1269249,Sergey Petreykov +1871270,Erinn Knight +1814204,Chris Carpenter +1421498,Tomasz Wieczorek +1527479,Herman Freedman +1419923,Catherine Bayley +1127862,Robert E. Newton +1640386,Caleb Thusat +1640309,Anna Zajaczkowska +1281855,Neil Monteith +150479,Apoorva Lakhia +1654751,Tom Hoeber +67164,Francesco Bruni +1262557,Eleonore Meier +1469619,Wyatt Belton +1641280,Américo Fernández +1707968,Silvio Salom +1161697,Brock Cole +1437718,Lubomir Evtimov +228643,Morgan Neville +125404,Sándor Petőfi +1338481,Jason Gaya +1547667,Nashia Wachsman +84277,Lars Molin +1437074,Charlie Covell +567964,Jason Nutt +1296110,엄호정 +1760156,Theresa Rowlee +1868203,Katrissa 'Kat' Peterson +1280039,Sarah E. Johnson +583459,Rich Cleary +1586321,János Vecsernyés +1432909,Bobbi Banks +1736954,Tamarin Kotze +1764174,Carol Mushlitz +1460856,Mary Sparacio +937386,Mihály Morell +1486526,Karin S. de Boer +210248,Mirjam Oomkes +1597069,Mihail Ferdinandov +1392942,Grant Fitch +1394055,Christophe Lannic +1646469,Ted Chiang +87063,Francis Didelot +1523825,Gina Mingacci +1815916,Jon Rørmark +1017813,Andrea Chignoli +1459764,Luis Carlos Uribe +143894,Eric Heffron +1896173,Vanessa Gonzalez +183575,Robert Mittenthal +97704,Gil Bettman +1765674,Alex Parnell +1427446,Manish Mundra +105642,Rick Morales +1393442,Henry Auerbach +199998,Jim Milio +1170526,Ismael Issa +1041540,Nick Flynn +1172513,Andrew McGarry +1033143,Mark Henry +1773863,Antonio Mendoza +103339,Ray Russell +1619486,Micah Sparks +196269,Eddie Yansick +1350222,Claus Lynge +1635289,Brian Bailey +1423003,Neima Shahdadi +70988,Sergio Ortega +1117117,Jocelyn Smith +1757619,Francesca Bradley +146142,John Hlavin +1197441,Nicolas Duchemin Harvard +1417180,James Davies +1703594,Osnat Handelsman-Keren +1752044,Tom Rowland +1590420,Helmut Jedele +1635206,Crystal Hooks +67324,Fabio Zamarion +1184084,Guo Yu-Dan +935706,Joan Littlewood +1446701,Antonio Escobar +1595706,Jaak Jürisson +1526953,Peter Iannuccilli +20306,John Fante +1578899,Edd Gamlin +1529885,Michael K. Eitelman +1223227,Ross Otterman +238015,Crazy Mohan +1493533,Mike Ozier +1077371,Teo Guardino +550897,Nathaniel Walters +150293,Daisuke Itô +1394673,Mike Mazzotta +1657949,Paul Max Rubenstein +105120,Simona Izzo +1174068,Luke Holwerda +1192996,Shigemori Shigeta +1060142,Masahiko Maesawa +1519298,Driss Marzak +1426711,Sattva-Hanna Toiviainen +237252,K Raghavendra Rao +1348292,Pierre-Antoine Hiroz +1797214,Benoit Vervier +116780,Yûichi Satô +1325209,Fabrizio D'Arpino +1404917,Marty Cusack +67681,Earl St. John +1631613,Alain Bisson Doyal +1621468,Jonas Babics +1527919,Olli Sillankorva +1542744,Ilaria Zamprioli +1588194,Tanisha Dungee +36860,Jean-Baptiste Poirot +17831,Grant Van Der Slagt +11761,Michele Poulik +1869084,Houman Eshraghi +60837,Harry Knapp +1585209,Brooke Buffington +1429320,Rebecca Zhao +1527431,Jonathan Houlding +1450091,Pétur Karlsson +37630,Shekhar Kapur +1153577,Roger Vailland +1597459,Giorgio Hermann +33789,Carlo Carlini +40077,Clay Van Sickle +1336439,Christopher M. Foster +1648883,Ate De Vries +1310334,Aeolan Kelly +1332295,Sarah M. Pott +1273860,Brandon Tonner-Connolly +70055,Jack Gold +1393433,Carl Counts +141682,Christopher Bertolini +36186,Monica Bretherton +15304,W. Peter Iliff +543842,David Guy Levy +137606,Madis Kõiv +37001,Larry Rattner +16401,Roberto Sneider +1841570,Megan Ghiroli +29324,Francis D. Lyon +1512665,Heikki Kossi +1150493,Will Levington Comfort +73745,Christophe Chevalier +1671690,Conrad Wedde +1763414,Sandeep Singh +4417,Ubaldo Arata +146964,Kenneth Anger +1905092,Nicolas Phillips +559726,Tizuka Yamasaki +1460860,Jarmen Janeza Benjamin +1355309,Alison McLaughlin +180398,Cal Robertson +101486,Matt Cunningham +1592877,Adem Ilhan +92211,Michael Wachniuc +1414943,Nina Kuhn +1774358,Michael A. Galasso +1781645,Tracy McCreary +1524098,Ben Mills +1176356,Thomas Floode +1817460,Vicky Kerkhove +1626260,Daria Sommers +1650093,Betty Sherriff +1903928,Edward Churchward +1408771,Dan Valenza +1409863,Jovana Jovanovic +1689778,Irma Misantoni +1179895,Karine Lecoq +1567886,Beau Williams +1029108,Maria Grazia Perria +1343380,Filip Tegstedt +96689,Peris Romano +972161,Eduardo Levy +1571498,Ken Barthelmey +579243,Arnaud Potier +1671942,S Rama Lingam +1727979,Fred Dombrowka +45851,Lore Tesch +1287335,Sumeet Kotian +1342013,Aaron Becker +1835198,Daniel Ford Beavis +1455948,Jenny Borgars +555187,Akira Naitô +1439074,Sudip Sharma +231826,Dante Harper +1642172,Ursula Don +1380004,Caroline Veyssière +38028,Václav Vích +1423197,Michael Graziano +1117468,Martyn Pedler +1373714,Jess Lewington +66989,Earl A. Glick +1685941,Aram Kouyoumdjian +1458395,Deborah Marcus +552392,Sam Kai-Sen Huang +36484,Kerstin Österlin +1179591,Scott Walker +1471142,Matthew Hausle +1188587,Troy Hansen +1780184,Ina Mirimanian +1583639,Robert Jensen +117025,Maury Gertsman +1078399,Benham Jones +51679,John Ridley +1849506,Alexander Turner +33620,Charlotte Malmlöf +1313064,Alexis McKenzie Main +1398551,Bill Salter +1167732,Filip Maciejewicz +66725,Matt Landon +1391677,John T. Melick +59833,Scott Budnick +1630374,Sarah McDowall +1466676,Devon Downs +1391088,Lola Knoblach +1674001,Mitsumasa Sawada +1580859,Sara Bourque +121000,Moira Buffini +1026842,Namrata Rao +1559451,Daniel Hewett +1116385,Juan Lovece +129691,Peter Appleton +1109912,Carin Hooper +1473168,Tim Drewett +1103640,Michael B. Allen +60947,Sandy S. Solowitz +16854,Paul Brooks +1638159,Patricia Espinosa +132559,Eric Freiser +123586,Mark Young +1348596,Marko Mrdalj +230410,Mauro Pagani +1306679,Giuditta Tarantelli +964168,Kevin Hardison +1586324,Peter Gantner +12227,Willard Carroll +1117870,Arnau Quiles +1385131,Riccardo Di Torrebruna +136505,Ben Caron +1250064,Craig Goodwill +16371,Scott Chambers +232898,Frédéric Jardin +1460016,Don Mann +12633,Mark Snow +1413119,Michael-Ryan Fletchall +108846,J.D. Zeik +1002360,Stein Myhrstad +1138332,Greg Hayes +119329,Phil C. Samuel +1271728,Deepan Chakravarthy +1414019,HipHop Tamizha Adhi +1184376,Myles Kane +1431514,Peter Skarratt +1181575,Keith Bernstein +1610604,Arun Varma +1408770,Rodrigo Salvatierra +982702,Anthony Fiorino +1392209,Stuart Luck +34881,Tonnie Dinjens +1046010,Peter Glatzer +1089143,Stefany Pohlmann +49670,Zsolt Csutak +1459754,Lee McNair +65416,Ulrich Caspar +150033,Akira Oda +1264232,J.S. Hill +1395231,Joseph Turrentine +983872,Mike Marix +1094530,Libero Bovio +223573,Nigel Slater +1609046,Josh Berger +1332525,Charlotte Orlove +1387246,Willard Overstreet +17807,Barbara Grupp +1608772,Brendan Fitzgerald +125037,Tonie Marshall +1340055,Sidney Turner +135464,Saburo Okada +1007281,Thotta Tharani +1419717,Shelly Clippard +1695153,Paloma Lommel +225709,Frenchy de Trémaudan +1153034,Isabel von Forster +1161227,Jean Paillaud +1542729,Christian Scarlatescu +1561360,Brian Chumney +934905,Pablo Solarz +148874,Robert G. Vignola +1311129,Mark Lazarus +1380896,Ian Wilkinson +1547670,Adam Walls +1746576,Jennifer Sharp +1885863,Matthew Addiss +35560,Arié Dzierlatka +1326477,Deanna Connor Gould +1300822,Benoît Biral +1362656,Damien Creagh +1434864,Paul Carter +1570524,Ray Cook +1155518,Jacob Vaughan +1433355,Cahit Berkay +1722226,Sam Hayward +1326482,Jay Thomas +1466915,Everett Baker +591013,John Baxter +1888980,Richard Anderson +1103639,Will Bakke +1412138,Erlend Hogstad +1773039,Mike Potter +4677,Romano Mancini +1330181,Mansour Sora Wade +1784757,Jim Isler +40762,Katja Fischer +1522124,Josh Bear +1463023,Magnus Hedberg +1325839,Brigitte Jean Allen +90262,Hirofumi Nakata +1173989,Melissa Stack +87851,Ineke Houtman +1422862,Steve Mortimore +1511526,Lisa Rerrie +1553459,Kyle Dutton +1185314,Jerry Spicer +1238385,John Wahba +1208808,Ana Badell +1331983,Dana Schondelmeyer +1746434,Maxime Cazaly +1555792,Kevin Kelly Brown +930021,David Gerson +1135687,Stig Claesson +1459769,Frank Alfano +1329254,中村誠 +1053187,Vieve Haag +1519073,Don Geraghty +1274506,Rajiv Joseph +1821791,Adam Rotstein +1427780,Brian Edward Watson +1586118,Mike Barber +153536,Albert E. Lewin +109192,Atsushi Nishigori +1170046,Jeff Phillips +1126290,Akio Matsuda +1714334,Sokio +1453134,Skip Crank +1403925,Robert Patzelt +1734726,Stefan Zapasnik +1608763,Davon Slininger +1853834,Janelle Canastra +57043,Bernd Krause +1583080,Sang Kim +1903916,Tricia Kim +1570520,Ismini Xekalaki +101237,Luciano Ricci +1402640,Julian Unthank +132642,Jan Thijs +1619738,Paul Fanning +979489,Samantha Housman +1511252,Scott Hunter +1853229,Aleksandr Mikeladze +985009,Mikhail Kamenetskiy +1824256,Jack Bentley +1073683,Mátyás Erdély +381393,Andre Rouleau +1085552,Christine Ewing +1072756,Frédéric Videau +1072793,Marielle Seastrom +1333931,Kent H. Johnson +30750,Jay Hillman +131688,W.W. Jacobs +1368715,Joanna McClelland Glass +105331,Rino Di Silvestro +1549810,Pawel Maslona +1059052,Amy McKenzie +1838445,Wongue Mbengue +1586000,Cesare Paciotti +1640321,Subrata Chakraborty +272150,Gregory Goodell +1590923,Bobbie Smith +146970,Javed Siddiqui +1866356,Tony Velasco +1717837,Crystal Silden +63969,Catriona Hughes +228867,Darragh Byrne +1068922,Ed Hawkins +1574136,Erik Paoletti +1040873,Karin G. Dietrich +1124600,Jun Miyake +55940,Emanuel Michael +94982,Bill Fritz +1001671,Philippe Martin +550766,Erland von Koch +91578,Noburu Uoya +1438450,Stefano Nagni +1654638,Jang Seong-jin +1360433,Julianne Gabert +1119430,Philippe Kress +1775644,Robert Wedemeyer +1447241,Sean Devaney +1545053,Tadeusz Lubczynski +1439277,Theresa Park +1504441,Prawin Pudi +1748371,Kin-wai Wong +1548087,Jeffrey Marozas +1131255,Bestor Cram +1647412,Puchis Asavamahasakda +1161460,Theo Youngstein +31766,Robert A. McGowan +1367924,Lyman Hardy +1290783,Tristan Orpen Lynch +1825652,Colton Comans +1199840,Shane Daly +1590422,Ursula Sensburg +1295321,Kristian Manchester +84800,Patrick Murray +1590893,Carlo Tosi +1522480,Zebediah De Soto +76884,John Prebble +1584700,Eleonora Praksina +1637435,Primo Brown +1422984,Steve Kitchen +129921,Kief Davidson +1001837,Todd Haberman +15959,Richard Compton +1290923,Michael Cole Dinelli +1325970,William Savage +1704380,Rebecca Adams +1415894,Devin Lund +99239,Jo Graham +1779350,Anthony Jastrow +1570607,Ronald J. Rolfe +1591861,Jorge Costa +118299,Paul W. Fairman +1280314,Suzanne Pillsbury +229695,David Keating +1347739,Edison Cájas +1582469,Alan Levine +1590924,Junichiro Taniguchi +1611218,Carlos Lidón +1621361,Arielle Antoine +1849145,Sylvain Sarradin +84614,Lawrence Schiller +1757629,Jimi Ryan +14268,Massimo Dallamano +1637305,Olaf Mierau +1569340,Dan Charbit +106022,Jim Torres +1472871,Tim Williams +1052872,Adrian Popescu +1590092,Serge Archambault +1665422,G. Sethunath +37865,Mutz Greenbaum +1665616,Matt Curtis +1609848,Sheena Peters +36964,Heinz Angermeyer +959084,Chris Connolly +1265219,Jody Allen +1430503,Asha Sharma +1542735,Emilia Silian +1591438,Sei Itou +1018096,Barbara Enriquez +1776166,Renee Ramos +1321920,Tracy Rosen +1616471,Jessica Needham +164951,Caryl Brahms +1423432,Yves Bertrand +62216,John Welbanks +1731563,Sabine Manela +260006,Kjell Grede +1811610,Tess Loe +979592,Miguel Schverdfinger +1473410,Matias Boucard +55451,Hal Dresner +1672750,Gilles Mingasson +1566117,Synithia Cochran +932534,Carlo Bonini +62581,Chuck Speed +1547657,Alicia Hadaway +1402142,Shant Jordan +1821923,Tessa Rubin +1540127,Simon Damiani +1368927,Haruyasu Kurosawa +1271924,Peter Daulton +613697,Dev Benegal +1418445,Ryan Zedic +1428033,James Abinibi +1428845,Jen Monnar +1828351,Mike Ward +1037689,Mari Yamazaki +1817415,Patty Brebner +171,Tobias Hochstein +100664,Charles F. Haas +1743030,Rupert Hollier +1321562,Brent Almond +1437179,Obin Olson +22798,Werner Bergmann +1234359,Tony Dean Smith +1635335,Nicholas Storm +40804,Klaus Mielich +584712,Michael Kitzberger +1551346,Matthew Robinson +49809,Eddie Hamilton +1141540,David Clarke Lawson Jr. +550790,Brad McPherson +1540352,Allan Cabal +1879691,Lui Attanasi +127920,Maria Peters +1642585,Simon Lai +1437162,Jonathan Collard +1179442,Patrick Antosh +16325,Roberto Cinquini +1492777,D. Matt Geller +1504425,Mohammed Hans Dastmaltchi +1397790,Tim Riley +1631412,Silvia Di Sopra +136404,John Newman +1131112,Noah Haidle +931669,Robert Silliphant +1032164,Emil Loteanu +1722261,Jason Patterson +1079392,Boris Troshev +1039357,Claude Léger +568692,Tim Fehlbaum +49301,Mischa Hofmann +1115037,Eiichi Hasegawa +1026841,Mohana Krishna +572353,Joaquín Dicenta +1442575,Benjamin Forkner +1186522,Richard Lima +1158264,Sigurd Hallman +929628,Eric Drath +15351,Scott Chambliss +20085,Bruno Chiche +1080780,Peter Barber +929316,Lidia Zonn +1113566,Michael J. Mailis +1301969,Vjekoslav Vrdoljak +1345257,Krasi Pashkulev +1625629,Mauro Gavazzi +1054381,Aleksandar Dimitrijevic +233078,Caroline Pandeli +269201,Piero Pierotti +1462004,Maia Neubig +1405361,Marc Bech +174065,Joel S. Rice +1499289,Irina Kozhemyakina +1875467,Norbert Bittmann +1582557,Mandi Collier +104999,Glenn Standring +1407351,Michael Arena +952425,Barbara Lieberman +1049770,Martin Bernfeld +1606195,Melanie Raab +1038996,Sara Törnkvist +1033738,Gerd Schelfhout +233313,Adam Neutzsky-Wulff +1440402,Cindy Barlow +93335,Fredrik Wikström +1566120,Aminé Ramer +960737,Ewa Skoczkowska +1454506,Colin Holmes +1325730,Breixo Corral +130695,Eckart Fingberg +1417878,Michael Fuchs +1382321,Fabrizio Testini +1583177,Heather Leigh Jackson +1095196,León Sánchez +1155289,Manoj Punjabi +1281681,Bjørn Olaf Johannessen +932044,Josée Bénabent-Loiseau +199939,Gabe Torres +1511789,La Vonne Girard +1309681,Anatoli Aleksandrov +55180,Linda Madden +1549812,Marcin Macuk +123009,Gen Takahashi +1090596,Peter Thomas +1635806,Fredric Vogel +20122,Vera Caspary +11912,Per-Olof Pettersson +1417173,Nicola Pope +1561986,Milind Dabke +1797475,Ivana MacKinnon +1642525,Adrienne Bell +1815555,Brian Tarlecki +1210176,Dave Pelletier +1172636,Francis Barrois +145207,Maria Topete +1163960,David Wagenaar +107063,Claudio Guzmán +1378764,Stephen Crowley +1088198,Jeffrey Delman +1578493,Scott W. Warren +1374222,André Versein +78069,Eric Le Roch +1338477,Sheona Mitchley +1678085,Aina Vogel +1055232,Michael Gottwald +593062,Tomas Hostrup-Larsen +1419639,David Surowiecki +560271,Luís Galvão Teles +1729080,John Clausell +1042221,Ferenc Pap +1385150,Arcadio Sequeira +114361,Jason P. Walker +1547762,Dan Levinson +13955,Jack J. Gross +1660182,Reikura Kahi +222276,John Battsek +1853238,Natalya Mokritskaya +1075503,Frédéric J. Lozet +470,Lee Hall +233480,Xavier Durringer +1179249,Brion Hambel +1569344,Ben Rowsell +96807,Kôbô Abe +29745,Frank Ray Perilli +66263,Miranda Bailey +1320556,Michael Craft +582412,Claudio Saraceni +1552365,Leonard MacDonald +1401875,Garth Eliassen +166436,Danny Lima +1441753,Cosima Lohse +225521,Nicky Phelan +1305720,Agustín Ituarte +1494668,Jack Eric Williams +1167749,Katharine Brush +1042166,Jerónimo Mihura +1611204,Magdalena Hubka +1734267,Curt Wiser +1381941,Vitor Baumgratz +635017,Milan Luthria +74003,Alexander Lindner +1742507,Javier Umpierrez +1764584,Nida Tüfekçi +928661,Navjit Singh Gill +1337680,Bryan Carrigan +968402,Jim Tauber +125074,Shin Yeon-shick +51939,Robert Carli +1444303,Thom Kyle +1441751,Mareike Mohmand +1410595,Julien Bourdeau +38377,Jean Yatove +41653,Stuart Asbjornsen +75878,Joann Fowler +1797861,Dean Lines +1550767,Andrew Booth +1819164,Anna Villareal +1649512,Raphael Letertre +1586599,Ana Draghici +1394316,Amelie von Kienlin +1825650,Chris Musick +1724202,Océane Lavergne +1566063,Inger-Sophie Frerichs +1119030,Kirill Rapoport +1123197,Stewart Burnside +1207940,Umberto Galeassi +15361,Josef Rusnak +57446,Mark Romanek +657077,Jason Buchtel +1363531,Gaëlle Mancé +101666,Paul King +565406,Mario Tobino +80727,Frank Tuttle +1460030,George O'Barts +1844152,Nurjan Samenov +90616,Patrícia Andrade +1130959,Sebastian Schubert +1599119,Justin Krook +15874,Richard Harvey +1348590,Joshua Phillip Brooks +1385130,Francesco Frangipane +38196,Thomas Plenert +1394634,Megan Spatz +1353210,Amir Amirani +33858,Franco Enna +1524234,Teena Omar +1412137,Eigil Langmark Svaar +1638343,Michelle Grady +1679702,Simun Matišić +1782624,Steven Gurley +1453138,Jeff Webster +1742984,Francesco Rossi +1519574,Patti Columbo +85894,Mahesh Bhatt +1528395,Luca Anzellotti +1286591,Irina Popov +576117,Paul Duddridge +75881,Randall Cole +1714063,Giordano Scolari +61992,Chris Conlee +1401767,Alexandra Eagle +115779,Ralph Sheldon +1518512,Rosanna Lagace +1574038,Kevin Pratten +1841599,L.A. Teodosio +1556425,Alexej Mungersdorff +1652037,Gary Blair Smith +1785022,Saurabh Malhotra +1031357,Natasha Ward +97532,Hisonni Johnson +1816408,Tracy Wu +1904098,Lorcan Bradshaw +1821928,Clark Deal +927996,Paul Blomgren +1338244,Paul Cullen +1494213,Jeff Halsey +1165329,Chris A. Peterson +41519,Marcel Beaulieu +7951,Jason Deamer +1509364,Elizabeth Kenton +1429340,Maria Stankovich +1554737,Bryce Tibbey +582899,Enrico Lando +3452,Stan Margulies +1580851,Jan Philip Cramer +66089,Moctesuma Esparza +33685,Tatiana S. Riegel +1866290,Jack Whiddon +1212239,Scott Holroyd +79738,Shigemi Ikeda +77573,Jane Norris +30837,Lothrop B. Worth +32985,Michael Howells +1011153,Ned Lander +1642552,A Sabari Girison +127401,Edmond Keosayan +1419091,Liz Bernstrom +1475642,Bruce Rubenstein +957353,Jeffrey Wetzel +46003,Tom Stevens +1019956,Tulsi Ramsay +52094,Jerry Jameson +99875,Masami Hata +1484508,Jane Liscombe +1352125,Yurika Tsuchiya +1112051,Delondra Williams +86782,Robin Bhatt +1062920,Tadeusz Konwicki +1156674,Philipp Wolf +1440408,Lesley Diana +1031160,Giorgos Tsaoulis +1533674,Arthur Jacobson +1822760,Tanya Badendyck +1612893,Jorge Márquez +1298943,Roberto Carnevali +1082316,George Harmon Coxe +1207579,Kylie du Fresne +1821900,McKay Johnson +1455702,Dan Driscoll +1632652,Borga Dorter +1464984,James Daly +1601641,Jesse Bactat +1519602,C.J. Strebor +1813931,Danni Lizaitis +592459,Tess Slesinger +1447903,Virgile Carle +1337420,Robert Houston +1202107,Cahit Engin +1527914,Gypsy Taylor +1421648,Sam Lane +1285602,Ken Fitzke +551674,Carl W. Stalling +1567545,Ju Yo-seob +1396398,Michael Alan Brierley +230138,Bette Chadwick +1588866,Eric Bayman +1612382,Victoria Evseeva +1717838,Beth Rosenblatt +1494138,Thomas Wirthensohn +1809715,Donny Bailey +1104235,Scott Freeman +1545984,Maricel Pagulayan +163539,Michael Dimich +1093088,Alain Dahan +1405371,Glòria Blanes +1512733,Nigel Mendoza +556752,Franco Bucceri +1317282,Kaprice Kea +83985,Scott Wiper +1035730,Agustina Chiarino +1817393,Naomi Levari +1570087,Yasmin Bar On +1172887,Cory Gustke +1517864,Carlye Rubin +1396313,Tom Sanders +1563756,Michael Lerman +225892,Patrick Schulmann +1610560,Piotr Kmiecik +1017273,Céline Savoldelli +1455510,James W. Brown +1464957,Jennifer Traub +1405326,Jon Delgado +1171839,David Valldeperez +1900198,Tatiana Likhacheva +1584354,Adina Cohen +1821875,Marian Gay +484158,Giannis Angelakas +1050653,Jason Colbeck +1650271,Robert Brazier +587967,Simon Davidson +1396402,Jayne Forbes +1461164,Annie Brandt +1574319,Kristin Diehle +1079263,Joao Paes +265415,Duncan Rouleau +1122770,Randy Hermann +557350,Nora Orlandi +1610237,Rosie Stapel +1138750,Bastian Günther +43709,Frans van Gestel +20019,Lee Daniels +1144828,Joseph Farrugia +1416936,Tim Keates +1451564,Jesper Klittmark +27342,Bill Blunden +1542299,Barbara Komosińska +227967,Elin Pröjts +68503,Rola Bauer +1042389,Nicolas Monette +75040,Alexandra Milchan +1635301,Kelsey Beattie +1032086,Lee Jin +1177546,Mauro Berardi +94169,John Berry +127100,Magda Szabó +69567,David Shaber +33812,Lamberto Palmieri +76879,Ann Cherkis +1635209,Kara Kimmer +1527482,Cornelius Uliano +1699520,Scott Riesett +1555843,Ray Ramsey +1411142,Paul J. Wright +1229789,Gian Ganziano +53947,Florian Trenker +1348581,Laurens Van Charante +1615471,Shouhei Hayashi +1034265,Yoshihiro Nagata +1869365,Jamie Erickson +1405250,Urban Überegger +1541709,Carol Rasheed +1573245,László Angyal +1606801,Kenji Katô +1831713,Gia Walsh +1748537,Jeff Janusheske +30024,Joel Hodgson +31255,Jerry Young +1665822,Ana Avelar +1836142,Peter Salem +1660925,Alfred Wertheimer +1451527,Maciek Krakówka +96494,Richard Viktorov +34873,Wilant Boekelman +1105491,Ben West +1090910,Mikio Mori +1399449,Mark Pollard +998586,Jean Hemez +1197467,Borbala Mezei +1192398,Akihiko Inamura +1091461,Euclydes Marinho +120643,Lim Soon-rye +1396777,Leigh Lisbão Underwood +1528707,Toni Buenavida +1481512,Javier Delichotti +1180546,Luca Del Puppo +1540619,Joshua Reis +1159347,Adam Bernstein +1778395,Britta Norell +195163,Jim Beach +1104949,Kjartan Kjartansson +29731,Roger Hubert +84797,Richard Wolff +1688391,Keiran McGee +1318882,John Duffy +1350233,Anna Hadzhieva +1880907,Lalith Darmawardane +1310820,Christophe Giovannoni +1365206,Rudolph J. Bergquist +1577966,David Michael Beaupre +95849,Kevin Halloran +4617,Andreas Dresen +1815918,Babak Bina +1436531,Eric Whitney +1551350,Paris Kasidokostas Latsis +1208092,Benedict Paxton-Crick +1409867,Kálmán Antal +1350506,Pablo Aragüés +1835186,Jill Demaer +39787,Stanislav Govorukhin +1111221,Scott Thurman +87550,Vishal Bhardwaj +562307,Jeff Siergey +229574,David Gill +1283754,Faith Conro +1642536,James M. Clow +1699013,Sachin Warrier +1444883,Garin Hovannisian +1156668,Giorgia Farina +1539312,Anthos Simon +232014,Reg Owen +1638563,Graeme Marshall +588337,Jason McKinley +1431153,Fall Out Boy +239637,Jérôme Bonnell +1701827,Dean King +1459761,Ryan Sluman +226940,Lucy Mukerjee-Brown +1011452,Marcy Levitas Hamilton +70563,Marcello Verucci +1473024,Thomas F. Woods +1003014,Andrew Gernhard +1755106,Will Kane +1455528,Brian Mendenhall +1452223,Phaedra Dahdaleh +982973,Patricia Rodríguez +1609843,Clare Harlow +1598183,John Lyde +102950,Alvin L. Fast +119204,Laurent Demianoff +1571058,Frank Rinella +1569277,Monk Higgins +1708039,Jessa Rose +1143014,Javier Alvariño +109340,Stéphane Kazandjian +1550794,David Penfold +929487,Flavio Botelho +148458,Joelle Touma +85746,Kimber Rickabaugh +1319825,Nick Scarano +56597,Richard Perello +56634,Alastair Reid +1206326,Greg Watson +1857574,Santiago Núñez +1733927,Fadi Shehadeh +1206310,Amy Snow +64859,Dean Jennings +1128520,Anthony Wilcox +1761135,Kellen Bloomer +75549,Sue Taylor +1262434,Jonathan Scott Higgins +73104,Harro von Have +84496,Josh Cooley +1624806,Gabriela Calvache +1820914,Nicolas Stretta +666656,Elmar Fischer +1559203,Ярополк Лапшин +72908,Edgar Reitz +1197370,Domenico Malan +1257503,Benn Fleishman +137611,Kaie-Ene Rääk +1120874,Eric Weber +553409,Hajime Yatate +74531,Kyle Mann +30823,Manuel Rojas +1302048,Armando Robles Godoy +1409724,Réal Hamel +1039943,Nick Millard +1441755,Cosima Lohse +136313,Edwin Angless +1795354,Valerie DuBone +16485,William Chartoff +1367557,Stephen Griffiths +232859,Nicholay Kovbas +43675,Todd Moyer +1642503,Dag Hornig +1496322,Cem Ozuduru +141483,Jamie Dixon +47100,Jeffrey Barmash +1539030,Virgil Smith +1360259,Roy Sharman +1719999,Al Hamm +1301927,Jack Wagner +138785,Sam Roberts +1639577,Gary Ramirez +1042806,Moritz Polter +1214898,Oliver Crawford +1637000,Tor Ole Rognaldsen +1336198,Theresa Anna Luther +1594192,Joel Hall +1583163,Gustavo Harry Farias +1708042,Timothy Whiting +1554972,Chris Healer +1336929,Øyvind Grev Møgster +1182940,Richard L'Estrange +34050,Allan Loeb +1652048,Brett Bird +1729092,Theo Orfanos +102782,Jack Rabin +1102118,Jeff Kurtti +933226,Stéphane Robelin +935271,Andreas von Scheele +1076541,Donald Langdon +1548120,Sean Heissinger +150755,George Nicholas +1230331,Daina Reid +1638559,Phuong Chau +236996,Pierpaolo Pirone +1325582,Goro Deyanov +1302528,Tiffany Tavares +1491977,Elizabeth Warn +1837879,Hunter Johnson +1724204,Barbara Albucher +129607,Anthony Jaswinski +1814009,Joshua Cane +1529914,Matsunosuke Matsushita +1630280,Joseph P. Kuethe +1567891,Alex Brown +1294087,Chae Kyung-Hwa +1451986,Margaret Chardiet +1543261,Ludmil Ivanov +1049883,Philip Moeller +1182554,Marcelle Genovese +1072685,Ricardo Barcelo +1131139,George C. Shrader +1211779,Damien Macé +1282150,Antoine Antin +1077307,David Cohen +1551773,Amal El-Farfachi +1456618,Tomoko Miura +1276559,John Powers Middleton +1363071,Hannah Edwards +134432,John-Michael Tebelak +1620968,Ronex Xavier +1380895,Becki Ponting +1548092,Matt Olson +1641976,Tina Magnuson +69659,Robert J. Avrech +937699,Lennox Wiseley +1414921,Tim Linden +225899,Jörg Ihle +1391383,Bill Holmquist +1357980,Marian Spitzer +161368,Del Reisman +1276943,Youichi Takahashi +575744,Martin Šulík +1167046,Florent Marchet +1449066,Anna Mercedes Morris +1599478,Tom Drew +1001595,Rowan Athale +227688,Bernard Cornwell +1630070,Rodolfo Migliari +1529879,Zach Strauss +1088720,Aleksandr Kushner +1818044,Richard Limbaugh +362701,Ivan Maloča +999548,Peter Chapman +938497,Luigi Angelo +1448380,Arturo Muyshondt +1601636,Michael Levinson +231716,Claude-Michel Schönberg +1087018,J. Paul Popkin +1005882,Kim Dent-Wilder +37860,Franz Antel +1505031,George Morley +1553325,Janet Lee +1555496,Jon DeStefano +1076152,Friedrich Wolf +1540471,Maggie Rodford +973608,Lina Wong +1840320,Lorena García Romero +150751,George Ferris +1510430,Chris 'Flimsy' Howes +1816350,Jeremy Peek +1774371,Natacha Le Véo +1166090,Paul Wolansky +46914,Don Dunn +1031934,Benito Perojo +549480,Jennifer Venditti +145255,Joanna Romersa +1350646,Robert Colón +587855,Jeremy Marre +1531511,Valeria di Gabriele +62768,William Brent Bell +1246119,Ryan Cunningham +1630379,Matthew Ryan Evans +92831,Herman Yau +393958,Peter Van Gestel +1431609,Elisa Sauve +23438,Sergey Trofimov +1819167,Kristoffer Roggemann +1411147,Louisa Bradshaw +337108,Carlo Degli Esposti +1590388,Kwok-Leung Yee +113098,Tom Blacklock +1530004,Koichi Sugii +1821643,Hidemi Tanaka +1236679,Jonathan M. Goldstein +1031259,Gary Spinelli +1242160,Pat Tourk Lee +1355544,Colin McDougall +1544868,Michal Zarnecki +562600,Aleksandr Askoldov +67973,Detto Mariano +930137,Tony Bellotto +1589519,Adam Robinson +1427250,Jimi Tenor +1808044,May Guimarães +27014,Jan Troell +1311001,Scott Gawlik +1095369,Josh Salzberg +1339055,Nicolay Gutscher +1385213,Brian Falk +125266,Brendan Maher +66245,Robert Wertheimer +213863,Neal Dodson +69229,Mark Yoshikawa +226611,Iwao Yamaki +1759308,Pat O'Mara +1401142,Jon Cowley +1821884,Steven Willer +23375,Helmut Gassner +1099730,Wallace Balboa +1661776,Claire Ince +73411,Roland Carroll +1446045,Efe Mehmet Özbay +3631,Sonia Grande +1545922,Trevor Metz +1235182,Buddy Ruskin +57072,David Gil +1491845,Pi Ware +29055,Joe Wiesenfeld +1616397,Zara Park +585212,S.P. Venkatesh +1780140,Grit Aufzug +1760137,Sergio Jara Jr. +573796,Midori Gotō +1580857,Dipankar Sarkar +1657571,Justin Oberman +1840308,Joey Chou +1031154,Frederick Kopp +18554,Jutta Hering +1463691,Eric Stratemeier +1615422,Todd Remis +1705678,Philothea Liau +1600458,Mehmet Kiliçel +230668,Luciano Ercoli +1114,Jon Harris +1398930,Vít Komrzý +1827275,Cecilia Veradi +1530400,Yasumasa Nishizawa +125637,Brian Baugh +12319,Emil Hasler +1537533,Cesar Bernal +1470942,Marc Resteghini +1640708,Emil Radkov +1128302,Nora Javellana +223752,Per Melita +966837,Damien Keyeux +1323492,Katsuhiko Taguchi +1799672,Jun Zheng +1142750,Gilles Podesta +109704,Robert E. Kent +1345266,Tarn Fox +1037962,Leonel Vieira +1451784,Megumu Sugiyama +1205939,Angela Little +1640361,Colin Nicolson +22677,Max Färberböck +1763648,Raquel L. Jaffe +1378,Jacek Petrycki +119496,Alan J. Schoolcraft +1313022,Oles Sanin +1287605,Teryl Brouillette +145228,Jalmari Helander +1541138,Andrei Bowden-Schwartz +1797881,Giulia Patanè +1295039,Nigel Levy +1571501,Jana Jungk +1845773,Chris Butcher +1048343,Run Wrake +1341298,Takis Morakis +1143006,Illya Radysh +62257,Kate Rhodes James +228610,Metin Erksan +1351465,Ken Greenblatt +1100327,Leslie Tolan +1619182,Ichirô Katô +223613,Matthew McDuffie +30692,John Loy +212674,Gracia Querejeta +1782429,Isabel Finkler +140518,Vincent Garenq +1441745,Nina Hirschberg +1189796,Philip Lee +1085275,Hélcio Alemão Nagamine +1519426,Sean Goojha +32140,Jaime Jesús Balcázar +1833815,Lorraine Sibanda +1665953,Manolito Glas +1392966,Louis Warfield +1192634,Thomas Buresch +1422818,Andrew Glen +1409442,Jerald Rubinstein +1658457,Duncan McWilliam +1814984,Bryant Musgrove +1460655,Joo-Hwan Park +1153841,Michael Archacki +133626,Glenn Hobart +928723,Toni Venturi +1637443,Gila Bois +1399323,Mustapha Mimis +1481475,Pablo Boneu +1740786,Davey Ahern +133062,Serge Catoire +70215,Shotaro Suga +1298746,Andrew Corkin +1376945,Pranay M. Rijia +1445364,Kristin Wayne +85357,Christian Charles +223078,Adolfo Torres Portillo +1527870,Sarah Willgrube +1011340,Vincent Lannoo +82790,John Monks Jr. +1143010,José António Loureiro +1602280,Geir Óttar Geirsson +138233,Elizabeth von Arnim +226609,Heleen van Royen +30968,Aubrey Schenck +114303,Andrew Tamon Niwa +998534,Tomu Uchida +63477,Ryan Little +108998,Thomas Walsh +1433975,Rick Minnich +95270,Bob Roberts +1023419,Joseph J. Lawson +1396315,Sungwoo Kang +61851,Lorenzo Senatore +1585736,Martin Pelletier +1124650,Carman Maxwell +1149292,Slava Se +102689,Craig J. Nevius +1732366,Rahul Jain +559314,Sam Grossman +555548,Yuuji Nunokawa +60050,Dana Lustig +1419643,Steven Adams +1526643,Jon Drever +24011,Jia Zhangke +1726736,Uros Kovacevic +78340,Ryoichi Fukuyama +118288,Sherman A. Rose +1460697,Szymon Lenkowski +29504,Basil Dearden +1330014,Anton-Zako Çajupi +1551906,James Mann +148009,Reijo Mäki +1402001,Emily Egge +1591444,Kiyotaka Waki +1584923,Emilija Eglite +1201132,Janet Hicks +1388535,Matthew James Barrett +550304,Chiara Laudani +1193618,Michael Ahern +1611039,Zack Stoff +141706,Chuck Sheetz +1497976,Brian Arnott +1429337,Kenzaburou Hasegawa +1423844,Greg Morris +587603,Keisuke Kinoshita +51833,Claude Faraldo +1533019,Elbert Irving IV +1076024,Alexis Fridman +928205,Uttam Singh +1201741,Geraint Bell +1705348,Rowan Stanland +112778,Serj Tankian +1586322,Zsolt Bándi +1818596,Richard Flower +1469920,R. Ajay Gnanamuthu +232801,Joan Huang +33312,Erik Jendresen +927984,Malin Kraft +107168,Stephen Kijak +1076027,Sharon Lockhart +1736461,Christian Figueiredo +1459719,Thomas Carroll +1611072,Zack Vymazal +1087280,Brett Rapkin +1115305,Phil Volken +1023832,Shin Morita +152016,Tony Grounds +1568874,John Francis Moore +37899,Robert A. Stemmle +1372214,Janice Knox +1083854,Tetsuya Takahashi +1174815,Rosa Ros +1460861,Heather McLellan +75101,Adele Fletcher +564052,Rolf Lindström +1666184,Helga Ingunn Stefánsdóttir +1584966,Bertha Chiu +999760,Eran Creevy +40343,Masao Takiyama +32321,Jacques Cottin +113195,Guy Bews +1797479,Naomi Ashcroft +1703132,Mathew Cowie +1496825,Kris Woznesensky +1825167,Chip Signore +1288830,Crystal Dalman +915068,Jessica Ask +930189,Lorin Flemming +1188503,Jeff Cowan +1323125,Christophe Dalberg +113873,Onur Ünlü +1081568,Buddhadeb Dasgupta +1454385,Patrick Grove +1670489,Olga Mill +1791787,Tyler Gendron +1583632,Dave 'Boomer' Dougherty +1636861,Rhett Nielson +1118382,Donal O'Farrell +239256,Selçuk Aydemir +566357,Leonard A. Mazzola +140601,Gaston Pavlovich +1273949,Lindsay Devlin +1418433,Stephen Traub +1197112,Luc Boudrias +92013,Edward Burtynsky +989460,Daniel Grant +1111280,Jennifer Deyell +1331175,Daniel Sharnoff +1462007,Nicklas Puetz +138633,Larry Lapointe +17295,Ning Hao +592416,Maurice Cowan +1496077,J.J. McGee +1755127,Hannah Ortner +137559,Ants Andreas +1380791,Tiina Kaukanen +1353255,Jake Roberts +578839,Timur Zhaksylykov +70171,Francis Leroi +567587,Chris Ritter +1439088,David Wallace Allen +1685029,Toshiaki Ichikawa +1067716,Daniel Bollag +1866353,Jamella Hassan +1463983,Nicos Triandafyllidis +1606290,Gloria Granati +1319194,Alla Petelina +1421273,Paul Wrightson +1723497,Debajit Changmai +1164437,Si Bell +1308471,Vuksan Lukovac +1171914,Lee Man-hui +1287349,Marcus Schöfer +1112603,Yasushi Utagawa +1676785,Craig Nobbs +1095734,Michael Crawford +1387252,Chris O'Hara +77006,Claire Lemaréchal +1418513,Tibor Krautwurst +1311276,Robert Revell +544134,Sylvia Soska +30762,Chris Barnes +1749272,Peng Shaoying +1840321,Andrea Matamoros +1750919,Kostas Haralambous +1125215,Irv Wyner +151359,Wayne Lemon +1512738,Eric Boncher +1023356,Mike McCloskey +1521472,Donna Casey +992878,Richard Walton Tully +6884,Patty Jenkins +1222790,David Misch +149103,Octavus Roy Cohen +1460742,Leslie Ann Paterra +1284286,Lee Hyeon-jong +1444770,Chris Milk +1626259,Meg McLagan +1646510,Félix Arsenault +15350,Mary Jo Markey +126128,Pelham Groom +70797,Heinz von Jaworsky +591018,James Wilson +73730,Philippe Guilbert +98258,Sergio Armstrong +1223781,Ilene S. Landress +1817433,Jay Smith +117559,Edward Mann +1153038,Wolfgang Metschan +938649,Amanda Gusack +1347206,Slobodan Selenić +222361,Nina Schloemerkemper +67259,Ching Siu-Tung +1857577,Luis Jorge Medina +1177381,Linda Yellen +1691500,Trish Callais +1269245,Geoff Griffith +1462115,Ernst Billgren +1412623,James Rutnam +1493201,Kevin Kurgis +145142,Ciaran Foy +1521718,Lee Jin-sook +1422145,Gerry De Leon +1587950,Takashi Watanabe +1442988,Chun Sung-Il +1298749,Darren Morris +54420,David Sardy +131413,Mike Gunther +1479367,Peter Flamman +1578992,Brandy Rhea +1903915,Kavita Ramsay +935267,J.C. Khoury +24574,Catherine Kelber +1264792,Julia Fontana +931956,Bryan Senti +52325,Allan A. Goldstein +1607462,Alexander Häusser +1539776,Sue Michael +1265981,Nagraj Manjule +1134100,Malin Lindholm +1721874,Bill Taylor +1460043,Fred Gibson +1641977,Alexis Wiscomb +1544399,Bobby Jordan +58468,Jörg Evers +939542,Guy Mossman +187214,Brian Bell +997656,Bengt Fröderberg +1039845,Jacob Pechenik +1316669,Jonah Klein +1726811,Steve Arenas +7040,Kario Salem +1210335,Kullervo Kukkasjärvi +1448116,Chris McGuire +1480986,Baik +1448295,George P. Gakoumis Jr. +1288894,Austin F. Schmidt +1759809,Ralph Malani +1185975,Pablo Hernando +1438458,Nicola Sganga +67674,Rudy De Luca +1314588,Mike Fay +552955,Leopoldo Gout +41752,Tom T. Chamales +1069792,Isao Kaneko +1771616,Bass Hampton +1125211,Harvey Rochman +1294088,Insu Jo +32550,Herbert Taschner +29939,Jennifer Jean Cacavas +417754,David Pelletier +1486953,Zygmunt Samosiuk +1555692,Marc Comes +230159,Daniel Luke Fitch +1050989,Ernest Maas +1688145,Willie Mercer +35841,Luc Béraud +1548090,Bruce A. Strong +1607590,Alexander Segen +1447083,Heather Reinhardt +74146,Robert Muratore +1182477,John Murray +1412501,Amanda Adolfsson +1334927,Pier Maria Pasinetti +1888981,Cory Reed +563076,Giovanni Addessi +1484968,Chris Craine +1167226,Svetlana Migounova +235417,Karen Shakhnazarov +173667,Julian Farino +1602594,Kisaku Itô +51980,Karen Lauder +1075764,Warren Ostergard +1632604,Paul Tomlinson +1167060,Ricky Kelehar +1455514,Aaron Clement +1451446,Jeremy Portnoi +1063377,Bryan Buckley +1510876,Matthew Thomas Hall +1881550,Ville Hyvönen +1404818,John Domoney +1389616,Corey Pritchett +1579537,Jonathan Podwil +1704840,Larae Mychel +235430,Timo Tjahjanto +88741,Douglas Venturelli +1729489,Graeme Lorimer +151175,Pascal Hérold +1727202,Brynna Yentz +1486492,Eric 'Giz' Gewirtz +99836,John Peyser +935280,Josh Polon +222096,Dan Clifton +559409,Isabel Muñoz +1207801,Sofi Marshall +550892,Robert McCall +1451445,Daniel Salomon +1790950,Lenora Acidera +1688143,Paolo Innocenzi +79323,Harald Rosenløw-Eeg +1819158,Meg Ramsay +94467,Steve Shapiro +1658883,Daniel Lawson Johnston +1630376,Chris Galloway +1598700,Melanie Fronicke +1437964,Rebecca Hall +1872439,Corey Mansfield +1302530,Dominique Müller +1163115,Anna Grenås +1680592,Hans Charles +1292995,Ali Jazayeri +1393450,Mike McLaughlin +1183575,Ellen Steloff +1228835,Sean Graham +1536585,John Joyce +22486,Robin L. Miller +1168714,Wilkie C. Mahoney +1402098,Dave McKay +1767186,Ilse Lahn +1177691,Philip Boëffard +338048,Felix Feist +138041,Minoru Matsui +148572,Frances Kavanaugh +1386327,Carmichael Simon +1773043,Erin Wile +1367364,Ian Shedd +1171315,Shane Koyczan +108304,Thomas Borch Nielsen +674,Oliver Berben +1599475,Alise Gelze +1462282,Greg Holstein +1633633,Alfred Raboch +1080278,Kingen Amada +1559629,Viola Poznor +1603896,Maria Coveou +1410275,Francesca Van Der Feyst +96337,Scott Jeralds +1372715,Chico Mattoso +1336933,Carl Svensson +1122200,Buffy Hall +1270257,Gilles Balbastre +1615074,Colin Ossiander +1165765,Edouard de Vésinne +1630072,Marco Coppolecchia +1411251,Graeme Hunter +53230,Fernando Franco +544890,Rajam Balachandar +1102512,Jennifer Maas +1797231,Jordan Pettersen +1191715,Pavel Strnad +1555780,Nancy Bennett +1853375,Sergei Ivanov +1208426,Hiroyuki Sawano +1215136,Jonathan M. Shiff +1412169,Jerry Taylor +1590395,Mike Pearce +1691510,Rachel Rickoll +1372124,Peta Lawson +1021565,Hiroaki Kitayama +1518047,Mark Shields +1187855,Zach O'Brien +1501792,Zazie Gnecchi Ruscone +1129957,Grace Perkins +1615187,Olimpia Stoicea +1396413,Dean Okrand +967921,Charles Pugliese +1582615,R. Tornwall +1553549,Fabrice Carazzo +1104817,Annette Ernst +129978,Franco Bernini +1459718,Sue Houston Safianoff +1189156,Gianbattista Mussetto +68905,Jang Joon-hwan +31764,Edward L. Cahn +1777653,Pierre-Luc L'Espérance +1642831,Matti Leshem +1615081,David John West +1412449,Sean Gowrie +1394171,Giannis Pamoukis +1558723,Matteo Saradini +969171,Linus Sandgren +81342,Katie Rowlett +224832,Ari Kristinsson +1095634,Andrew Horton +1263915,Sylvia Tate +1420167,Danilo Carlani +46859,Adrian Sturges +1442215,Yasushi Nirasawa +1535396,Beth Holden-Garland +1520665,Martial Matthieu +1402898,Mitch Deans +1052811,Arturo Ruiz Castillo +1415014,David Burton +6043,Dan Zimmerman +1824280,Duncan Broadfoot +1816221,Carolina Sapina +478645,Erin Essenmacher +1185449,Frank Deford +928449,Cori Shepherd Stern +1501815,Maria Teresa Padula +122766,Kazuya Hisada +51385,Erica Huggins +1738153,Marcei A. Brown +557672,Françoise Braun +1568231,Antti Pesonen +1003175,Ryan Denmark +1282607,Juseok Park +557663,René Goossens +1162243,Suzan Hande Güneri +1797229,Karthik Nidamarthi +1501745,Gal Deren +1580845,Daryl Makortoff +590340,Gianfranco Manfredi +1866330,Jane Reynolds +132834,Lance Lane +1572868,Peter Dydo +1594812,Yuval Aharoni +1903926,Kelly Noordermeer +1707850,Eckart Lippens +1086776,Evan Scott +35563,Jackson W. Saunders +524700,David Brooks +1616468,Alex Carpenter +1535855,Fred Kaz +1874698,Kirsten Langgaard +1543603,Olga Collings +1313680,Ben Aston +1585739,Kala Harrison +1378504,Ray Sturgess +1326093,Sherry Starkell +234798,Lionel Houser +996410,Jennifer Klide +112274,Masayoshi Banno +1821908,Dan Wyssmann +61844,Roee Sharon +1207157,Tino Zacchia +1762252,Van Echeverri +1463816,Brett Schlaman +1186191,Elliott Hostetter +550303,Gianfranco Giagni +1574119,Giovanni Lipari +574152,Petri Alanko +1202360,Bill Williams +1106029,Elie Wajeman +1336930,Pål Petersen-Bergvik +1283173,Juan Pablo García +1621797,James M. McClure +1282728,Chris Newcombe +1771003,Alfredo Lupo +1537410,Shun Imaizumi +1729060,Lee Jae Woo +1759309,Greg Rehyer +1093053,Kuratarô Takamura +1156409,Yonatan Israel +16997,Patricia Cuevas +70796,Hermann Grote +1536766,Tim Kelleher +1214705,Howard Chaykin +1316418,Donnie Lai Cheun-Yu +1362637,Celia Henebury +62825,Caroline Biggerstaff +1085904,Ramaa Mosley +101191,Cesare Canevari +1570582,Isabelle Dupire +1174082,Zhang Zhao +1323083,Boryana Stefanova +1537853,Tara Sanovich +980834,Gerry Swallow +1588222,Elisa Gut +1458205,Rob Saduski +1063830,Chris Brandt +93188,Lol Crawley +1760479,Marina Bespalov +1171734,Roger Racine +84569,Rob Williams +1327777,Krystyna Loboda +1290784,Aoife O'Sullivan +555666,Judy Pastore +1118009,Daniil Khrabrovitsky +6986,Daniel Louis +1668411,Michael J. Randall +1643333,Jin-sik Hyun +1392955,Pierre-Jules Audet +1327142,Joe Howard +1161228,Raymond Gabutti +927436,Danielius Kokanauskis +1757624,Aaron Wiener +1404922,Judi Dolan +1207739,Chuck Mitsui +1325515,Mike Heathcote +1830189,Claire Robinson +105346,Antonio Avati +1394058,Joel Silver +27158,Paul Joyal +1646562,Emmanuel Gatera +1777213,Jiří Kutil +934844,Rob Liefeld +1623839,Igor Vakar +80993,Bennett Viseltear +1092101,Mario Sévigny +73192,Shinichi Fushima +1327018,Dmitriy Yan +234363,Kôichi Chigira +111406,Justin Wilkes +1464978,Garret Daly +1721090,Valérie d'Auteuil +1712792,Friday Savathphoune +1279803,Julie Kirkwood +130266,Douglas Horn +231039,April Blair +1401588,Leona Naidoo +1699376,Tom Turnbull +121495,Thomas P. Johnson +964501,Jane Hall +109709,Robert Kane +1063900,Josh Oreck +1470107,Ali Brown +1775633,Kurt Waizmann +1419137,Brady Romberg +1030393,Suparn Verma +32835,Oliver Stoltz +115920,Sara Eriksson +1342503,Ivan Lane +1532548,Juno John Lee +1706509,Emilie Bogrand +14241,Jacques Lebreton +1522134,Joseph Winchester +989049,Turaj Mansuri +55793,Jeff Chamberlain +1403736,Aleksandar Yochkolovski +1650260,Eimhear McMahon +1457737,Hervé Jakubowicz +1278959,Sharon Y. Cobb +1759329,Matt van Brock +1497327,Benjamin Rataud +1432996,Anna Andreeva +1542377,Ok Kil-sung +38702,Tom McKinley +229711,Robert Deubel +1518511,Tristen Bakker +19966,Jo Eisinger +1308218,Zach Rubin +1210747,Aleksandr Veledinskiy +62857,Susan Taylor Brouse +1331930,Robyn Rosenberg +930784,Leigh Pickford +1530614,Duff Smith +1181814,Sigurður Sverrir Pálsson +1518728,Álvaro Aragüés +229270,Luca Poldelmengo +1640833,Dan Lawson +84798,Claire Brown Kohler +1186277,Sebastien Lemercier +1497972,Douglas Brown +1482841,Stephen Aplin +1656022,Stefan Zürcher +1188116,Bernardo Segall +115677,Coky Giedroyc +1547206,Jenny Siff +1726803,Carolyn Gair +1442862,Josef Steiff +1382036,John Lind +1417877,David Altenau +1635294,Stephen Roland +1551902,Samantha Dark +1125466,Larbi Yacoubi +1562551,Timur Khvan +1868188,Chad Simpson +278819,Max Pécas +1532597,Terry Anderson +1616455,Jason Dinges +1543905,Kevin Bitters +589583,Ryan Levin +72803,Oliver Keidel +1451781,Toshiyuki Omori +1463758,Ryan Pacheco +1400507,Piotr Witkowski +1533101,Andy Ross +34001,Amanda Posey +1263801,Ron Sleeswijk +108217,Jerry Rees +1605264,Richard Monroe +1547672,Thomas Hebert +969958,Kara Baker +1065353,Joseph Garner +930293,Omung Kumar +1757601,Jordan Ferrer +19368,Marielle Robaut +44789,Danny Bilson +1463661,Whitney Coleman +98151,Guy Roe +25601,Lowell Peterson +1613989,Drew Eberson +174641,Mort Lachman +1646573,Bryan Hsu +10032,Arthur Cohn +99436,Chang Cheh +1869381,Rakesh Kali +1635190,Keith Suzuki +26186,Vincent Rossell +1805948,Antti Apunen +1137312,Yun Jong-chan +110925,Karen Bloch Morse +1123375,Junichiro Nishikawa +1172337,James W. Griffiths +1276764,Michele Astori +1756137,Payal Saluja +1061215,William P. Whitley +42229,Pat Siciliano +1817473,Rachel Mossey +1144625,Monica Mingo +119411,Morten Dragsted +1397788,Jean-Philippe Bernier +1209798,Anil Sunkara +110262,Richard Conkling +1660384,George Barrie +1043358,Daniel Pellerin +222108,David Wellington +1008491,Jacques Roitfeld +1384372,Ryan Chavez +46294,Christopher Granier-Deferre +10186,John W. Holmes +1401770,Ian Vertovec +552532,Shuji Abe +1193426,Alexis Martínez +1748530,Chris Turner +1405328,Kristine Bellerud +1756133,Vishal Sinha +1362657,James Ewers +1545983,Becky Pownall +1257720,Molly Gandour +568259,Nathan Reimann +1581564,Margaret Longley +1760844,Dean Wang +32518,Heinz Oskar Wuttig +85925,Hilary Brougher +1181402,Lance Samuels +1554054,Chris Maybach +97860,Kenneth J. Hall +1575337,Tanya E. Taylor +1069648,Derek Hui +29605,Mikael Håfström +14933,John Furniss +1473414,Jocelyn Cofer +585169,Didier Tronchet +1324019,Les Boothe +1519839,Christopher Moon +1489478,G. Gvenetadze +1386790,Kike Suárez Alba +185037,Tom Olive +62207,Ari Newman +1553490,Neil McCormick +1368683,Anthony Paul Kelly +1206239,Sam Mintz +1359841,David Graham Phillips +1298356,Trace Henderson +1669114,Sankaran +1586325,Melinda Domán +1293086,Daechan Song +110259,Dawson Warner +1429330,Bill Vance +117841,Kirsten Johnson +1453131,Reza Safinia +1199900,Krasimir Kostov +24672,Ennio Cascioli +1410161,Cengiz Onural +1291340,Ely Mennin +146512,Thanakorn Pongsuwan +989349,Amanda Neale +1551838,Aja Kai Rowley +1828345,Myron Meek +1710371,Jocelyne Chaput +933247,Lionel Rogosin +64426,Albert Lee +1619737,James N. Clark +1853243,Bénédicte Thomas +1445368,Tyler Whitham +1201126,Filipp Lelush +545680,Philip Jose Farmer +1395513,Marius Haugan +1579035,Brian Dungan +1670663,Noah Kraft +1560813,Marisa Fraticelli +1165231,Yoshi Ikezawa +1364352,Meghna Manchanda Sen +82173,Ben Ames Williams +1603187,Adam Ezra +1542300,Lela Davitashvili +1578228,Emily Schubert +1769616,Galina Kim +1544542,Amanda Carroll +1329557,Tom Lisowski +5448,Wilhelm Grimm +1047005,Sandrine Deegen +1676805,Tori Yeager +41008,Heinz Götze +1317050,Greg Hartman +1154553,Jonathan Schwartz +1015893,Virginie Le Pionnier +1726885,Daniela Medeiros +556912,Lê Thanh Sơn +90367,Sam Liu +1401187,Maria Travis +85698,Manoj Mittra +543989,Lee Savage +1760128,Phillip Pico +1462121,Arthur J. Kooken +1470169,Jean-Charles Raffini +1869441,Angela Asay +225142,Philippe de Chauveron +57009,Thomas Kukuck +1427297,Harry D. Glass +1701497,Itzik Kricheli +1676786,Mark J. Parker +1841627,Bianca Grimshaw +1667098,Saravanan Madheswaran +1373238,Elois Jenssen +162232,Sharon Boorstin +1371880,Brandon Michael Hale +1758972,Meinir Jones-Lewis +31579,Heather McIntosh +1329896,Ron Bartron +1506016,David L. Schiff +1682058,Siddharth Dubey +32107,Frank Davis +591410,Norm Hunter +551789,Susan Robertson +1298937,Sergio Basili +1417924,Lon Molnar +280812,Stina Bergman +1512120,Billy Eddy +237311,Hiroki Ohwada +1403457,Danny Perkins +1333652,Calum Ross +1622034,Agnès Poullin +82460,Robert G. Lee +1319553,Marianne Krawczyk +1536540,Mary L. Pyanowski +970291,Christopher Popp +162589,Peter Buckman +1821418,Sebastion Piquet +47389,Bert Rule +1163114,Patrik Gyllström +1407724,Jen Wall +1090010,Guido Zurli +1755175,Gideon Kahan +34016,Marlin Skiles +1335049,Alan Church +545493,Pawan Kripalani +1621090,Stine Marie Buhl +1271403,Petrus Sjövik +48771,Karim Sebastian Elias +1402244,Pascal Armant +148562,Lawrence Hazard +1608378,Brigitte Sousselier +999550,Susan Needleman +1486823,Catherine Gaum +39475,Eugenio Bentivoglio +194553,Patrick Cameron +38586,Gino Capone +1610562,Malgorzata Sandecka +1367059,Fred Song +1106798,Guido Giambartolomei +1302508,Greg Sterling +322424,Grant Bradley +1382352,Amaya Zubiria +89751,Albert S. Rogell +1711830,Bill Watral +86817,Jeffrey Pratt Gordon +1401152,P.K. Munson +57920,Thomas Walker +1452554,Tae-Sung Kim +1196721,Georges Demeny +1646073,Jon'Nathon Stebbe +1454381,Sina Sayyah +129324,Anders Anderson +118308,James Paisley +1368895,Arjan Wilschut +1570077,Michael Birinbaum +1161657,Michael Beach Nichols +73639,Cristina Comencini +1124533,David J. Bloomfield +1128550,Timothy Hines +1236314,Hiroyuki Aoyama +1642513,Marieluise Gram +45831,Elisa Salinas +1859967,Darren Dochterman +1489447,Alfred Pérez Fargas +1382061,Vladimir Moiseenko +928290,Gary Russell Coder +1257970,Kris Slava +1627510,Bobby Morroco +123097,Cully Hamner +1419641,Antonia Dhue +1374508,Yolanda Molinari +137200,Andrew Edward Harkness +569301,Bobby Boermans +1264184,Osbert Sitwell +1551818,Nicole Garcea +1297470,Philippe Baisadouli +1070156,David Klotz +505007,Bev Doyle +1873427,Savvas Salpistís +1314749,Michael Cardone +143679,Vera Storozheva +1249974,Koji Masunari +1434919,Matthew Skelding +57932,Fritz Busse +1392262,Jeffrey Butterworth +235205,Alessandro Angelini +1734425,Micaela Cain +1512678,Ville Hyvönen +1700879,Sukumar Jatania +1475291,Nicole Lederman +138634,Chester Kaczenski +560039,Mysskin +1765170,Vikas Mehta +1088719,Aleksandr Tatarskiy +1727618,Julien Pernes +53341,Moritz Freise +1451015,Robert Allen Elliott +1199828,Alies Sluiter +1071531,Yumiko Bollag +1839935,Pedro Cadore +1313049,Peter J. Eaton +1610196,Geoff Raffan +33056,Ian Toynton +1023710,Earl Duvall +28217,André van der Hout +1494190,Morgan White +66800,Morgan J. Freeman +1442573,Peng Sanyuan +934172,Are Heidenstrøm +20609,Tobias Haas +1580025,Jeff Seibenick +1549525,Don Schoenfeld +1384390,Trevor Habberstad +1862932,Joel Jaspan +116014,Aleksandr Shevtsov +1525129,Sarah Portelli +98094,Brett Piper +1534028,Nicole Henry +1175168,Pierre Pelegri +568060,Karin Fahlén +152669,Ronald Austin +1795853,Mathew Severns +204037,Chris Chibnall +1759883,Daniel Phillips +1448291,Andy Jenkins +1867185,Karen Rinaldi +1211340,Justin L. Anderson +1686743,Mac Mulcahy +1756285,Mari van der Merwe +1206324,Karen Dauloc +570498,John Adams +1041612,Minu Barati +1416820,Jason Velez +1658466,Kristina Sorensen +1037977,Timothy Armstrong +1623401,Tadashi Nakamura +1314465,Thomas Nellen +1206425,Hunter G. Williams +927983,Marc-Daniel Dichant +439915,Michelle Danner +1643268,Zoltán Frank +1568764,Turker Isci +65211,Scott Glasgow +104721,Kazuhiko Ikeguchi +1405252,Thomas Gamper +230027,Sujit Sen +16673,Henny Vrienten +582535,Victor Formosa +1663789,Michael Harris +1177194,Paolo Vasile +111052,Meghan C. Rogers +1447906,Matt R. Sherman +209918,Martin Smith +1840333,Roberto Tifi +582808,Claudette Barius +1084989,Boots Agbayani Pastor +978423,Bob Signorelli +1393578,Joannie Burstein +44797,Tim Van Patten +84724,Azuko Taira +142034,Jackson Budd +13564,Richard Jessup +1283814,JT Mollner +1402100,Ian Johnson +40149,Rick Rosenberg +1367816,Lionel Dousset +1489479,Abessalom Maisuradze +1409449,Roberta Neiman +115848,Gina Kaus +1612748,Ulf Grenzer +1895003,Simonetta Di Fresco +1321585,Terry Joseph +1658863,Joe Celli +1578001,Ciara Gillan +1636516,Andrew Nethery +1574036,Jessie Frost +1019024,Patrice Rhomm +1336142,Grigoriy Khmara +1578008,Kle Savidge +127029,Brad White +939452,Terry Miles +1612326,Enjou Tou +7509,Harold E. Stine +85553,Diego San José +234400,Nicolo Donato +1897427,Tsuyoshi Kobayashi +1318090,Peter Belcher +5391,Heather Loeffler +1384672,Benjamin August +1037910,Edward Noeltner +1818835,Bram Staats +1452775,Antoin Cox +1328773,Tetsuya Kudô +964513,David Rosiak +1338970,Danny Freemantle +1845747,Diana Irwin +1419638,Paul Melluzzo +1443965,Kari King +1085600,Leslie Woo +1499015,Nada Healy +934912,Sjoerd Kuyper +1408666,Cliona Furey +1121527,Paul Degueldre +1512767,Luis David Sansans +53946,Enrique Escobar +1640828,Becky Bentham +1489752,Mohammed Attarwala +236091,Fumio Kônami +133869,Reginald Beck +1769249,Jackie Dadon +1453006,Jarrod Anderson +387926,Joy Spink +196198,Warren Wilson +33245,Malcolm Stuart Boylan +1453944,Tyler DeLisle +1412597,Grant Wilkins +125717,Laura Sabatino +1784685,Lee Morse +1626500,Dave Hutton +1317097,Douglas E. Davis +131532,J.J. Perry +21232,Giancarlo Ferrando +1225665,Kim Todd +557253,Fred Spencer +137618,Giorgio Serafini +1157628,Rida Johnson Young +1335152,Tom Quinn +961101,Philip Elway +1378067,Robert A. Kanto +1590928,Takuya Itô +1474976,Daniel Crown +1448327,Mark Cassar +1792360,Robyn Rebbe +1199961,Matthew Chan +1044080,Larry Gershman +98842,Brad Sykes +53090,Eran Riklis +142670,Lee Sang-Il +1456612,Madoya Hoshino +1080813,Fritz Genschow +1555620,Nomi Talisman +1081838,Jonas Raber +1717990,Greg Cockerill +1472788,Jamie Hallett +1341473,Jordan Levy +1025671,Earle Snell +1051654,Macha Makeïeff +1527435,Michael Lee Bishop +1533601,Andrés Gachon +1252099,Stephen Davis +1640324,Anna Noa Ablamowicz +933573,Adam Beason +1402234,Lucía Bretones-Méndez +1407734,Luke DiTommaso +38868,Alain Tasma +40016,Angelina Maccarone +1331180,Megan Titus +1175725,Ian Sutherland +96693,Yolanda García Serrano +168466,Mike Savage +114620,Neil Johnson +1174924,Adam Rogers +937938,Dawn Krantz +57759,Anika Decker +1398164,Janice Melnyck +1341568,Arthur Cohen +1074076,Marcello Ciorciolini +120452,Russell Mathews +583516,Jonas Dornbach +113896,Joe Sichta +226706,Yelena Raiskaya +1425329,Jason Chen +1530220,Kirstin Chalmers +1501742,Karolina Waclawiak +1653675,Adrian Marler +128762,Mark Quod +1049320,Jonas Spaccarotelli +1058965,Adam Stephenson +1028360,Viktor Merezhko +1117109,Jeff Villars +1409565,Dan Billups +1877780,Zhenhua Yang +1635796,Ingrid Lykkeslet Strømskag +56916,Job ter Burg +1442161,Mihaela Orzea +1905099,Kris Theuwis +1764799,Zora Dakir +43714,Monica Petit +115868,C. Graham Baker +1790957,Alizée Plourde +1181531,Lewis Clay +291803,George Foster +5665,Dan Beers +1025672,Clarence Marks +1643842,Ryan Birnberg +220965,Adam Bloom +1594602,Kurt and Bart +129284,William J. Cowen +1412924,Todd Spears +1373406,Elaine Constantine +56690,Mike Moyer +1760573,Darrin Mann +567995,Paolo Silvestri +85948,Douglas Morrow +111876,Judi Barrett +20272,Barbara Kreuzer +1318388,Allan F. Bodoh +1567535,Mark Rapaport +1064941,Bayard Veiller +1322602,Richard Ramsey +231550,Quentin Lee +235774,Roman Prygunov +232831,Chun Hung Mak +1814903,Jo Harcourt +1425391,Carolyn Johns +143079,Christian E. Christiansen +554535,Toshiyuki Watanabe +55127,Burt Kleiner +1713277,Ryan Bradley +1535778,Jimi White +1176273,Alejandro Hernández +1427535,José María Alarcón +81085,A.R. Murugadoss +1569541,Michael Goode +1402522,Earl Woods +1703766,Kostas Maragos +1277211,Bruno Valeri +1522767,Konstantin Nikolov +160097,Len Uhley +1538884,Magdalena Łazarkiewicz +1539777,Tanja Lacko +109413,Robert Emmett Dolan +1535692,Sarah Cook +99921,J.G. Patterson Jr. +1367910,Jim Kozlowski +1275655,Brittany Bowen +1816771,Erika Kawashima +1324445,William D. DeCinces +1282778,Jamie Goehring +55191,Colin Brunton +27043,Teo Delgado +1100379,Rosa Karo +1828335,Jeffery Magat +1694695,Max Saldinger +1141547,John Sylva +22764,Hans-Dieter Hosalla +1635193,Ben Aycrigg +1621369,Chris Haney +1792349,Don Salt +1036792,Joe Coomer +1361751,Kem Bennett +189241,Peter Hawkins +1122215,Sara Maher +1344595,Jean-Marie Huard +1610248,Tony Gort +126030,Herb Wallerstein +1622040,Claude Levasseur +1404919,Anthony Maccario +239551,Nobuo Nakagawa +1179663,Mikel Lejarza +1375954,Percival M. Intalan +961501,Avraham Karpick +588447,Howard Higgin +1065698,Norman McLaren +1206977,Alec Schulmann +1486198,Kate Ringsell +1473035,Philippe Théaudière +1415157,Joel Green +1689174,Pedro Tomé +1086866,Benedetto Ghiglia +89702,W. Lee Wilder +108784,Annie DeYoung +1764791,Reid Embrey +140473,Makoto Sugiura +598929,Bill Mason +131250,Matt Zettell +1448545,Ornella Morsilli +1406582,Joanne Jacobsen +85400,Rajat Poddar +1555159,Lori Hornung +1420336,Asen Bozilov +928130,Charles Birns +1606211,Manuel Yori +1420187,Jean-Michel Boublil +933249,Ernest Artaria +70506,Melanie Oliver +1518924,Ryder McNair +1053243,Cesar Diaz Melendez +1317454,Stacy Widelitz +1096946,Gregory Vanger +223318,Richard Van Oosterhout +124863,Marjut Samulin +1517368,Tapio Ilomäki +1588196,Colleen Hawthorne +1687754,Olga Khlebnikova +1400486,Tim Pedegana +1034482,Frank V. Ross +1539775,Lance Peters +1606800,Mitsuo Saitô +1478554,Chip Diggins +1542347,Ivan Vatsov +1825651,Holly Chatham Beets +1471435,Luke Daniels +1387247,Tim Carras +125149,Martin Sácha +59473,Joan Sobel +1849150,Laurent Schepman +24204,Julie Lynn +228894,Barbara Marshall +1756289,Regardt Maritz +227204,Sajid Ali +16487,Charles Winkler +1383998,Tom Large +1450265,Torsten Wenzel +1780734,Rusty Meek +1216403,Dan McCulloch +1831331,Shinji Chikamori +1117498,PES +133865,Carl Nystrom +578728,Aimee Stuit +148559,Herbert Wilcox +1276274,Michaela Kezele +148097,Kunihiko Ikuhara +560101,Grigori Roshal +1313035,James Rouse +1726050,Devon Meadows +1394029,Sheila Wickens +1076174,Sean MacGregor +1884068,Louise McCarthy +1670736,Ludo Silemetzoglou +1367926,Karlo Montano +950952,Vincent J. Guastini +122741,Michael Wright +590735,Adolf Rosen +1277072,Mauro Graiani +1475732,André Pienaar +1758795,Nicola Yoon +104405,Don Martin +1400504,Jim McCullagh +74864,Duane Capizzi +1418379,Alessandro Saponi +1636727,Stefano Felicioni +938674,Teppo Airaksinen +1414887,Mark Hava +1077372,Alexis Nihon III +1098038,Malika Zouhali-Worrall +27161,Charles Porlier +1546431,Chris Hennah +1757630,Walter 'Bud' Scott +32959,Ulrich Limmer +45981,Giuseppe Patroni Griffi +1820255,Victoria Papurello +1552000,Robert Earl +1851878,Jonathan Nellis +1119139,Arnau Bataller +1460179,Lionel Heath +1571979,Alan Hall +1321167,Laurent Eyquem +36126,Marie-Christine Lafosse +1614357,Thomas Kruithof +132601,Wade Hannett +1640831,Grant Montgomery +1062401,Ken'ichi Takeshita +998512,Arndt Stüwe +1325041,Scott Powell +1309934,Jan Ruzicka +130857,Ryan Samul +1768804,Anil Dubey +11688,Jan Svěrák +1411874,Brian S.M. Wroth +1046459,Chris Danton +1034667,Richard Bluth +29078,Rod Hardy +1410596,Joël Rangon +239672,Felix Van Groeningen +16995,Pilar Revuelta +1411146,Janine Azern +1558720,Lisa J. Wilder +1293604,Kim Jun-seong +1126411,Dinos Katsouridis +1372202,John Williams +1445670,Robert Hammond +1387593,Nikolai Solovtsov +1311157,Kim Jang-Ryeol +1439930,Ben Oliver +554870,Torao Arai +1099261,David S. Greathouse +1195358,Phil Eagles +1453626,Kevin MacLean +592534,Chalerm Wongpim +85822,Anthony C. Ferrante +1481514,Claire Darras +1453514,Kim Blanchette +1280605,Jan Drda +1662641,Sarah Gittins +1357191,Kostas Kapnisis +91659,Harry Bromley Davenport +1289039,Edward Todd +31373,Michael Raso +797,Jeff Haley +65918,Dave Becky +1483146,David Rouxel +1539291,Evgeni Yordanov +1678086,Vilje Kathrine Hagen +80809,Dionne Wynn +1123424,Ravi D. Mehta +63799,Jeremy Boxen +1841561,Kether Abeles +65581,David Faivre +1404563,Aleksey Tsitsilin +1687157,Billy Bonifield +1773276,Brian Smith +1582109,Hanz Kawson +150063,Kanae Minato +1470525,Beth Lipson +1281412,Raffi Adlan +47364,Greg Coolidge +81477,Morgan Land +142497,Nikolai Dostal +1817481,Nick Chomowicz +1610731,Lol Hammond +1570514,Charlie Herranz +1454513,Jane Ellis +93018,Petra Hoebel +1099948,Christoph Bauschinger +1120532,Aeschylus Poulos +39454,David Linde +1834634,Sachin Yardi +1065720,Nicholas James +1303183,Tom Caton +97673,Julian Wintle +1123885,Andrew Barrer +563695,Andrew Herwitz +1263788,Martina Fehmer +1792022,Mike Heubel +47197,Sam Ask +1817119,John Cheng +81930,Alfred L. Werker +1154459,Stephanie Hayman +959387,Sherry Thomas +3157,Robert Thoeren +124125,Akiko Ashizawa +1518045,Jeremy Campbell +1419815,Robb Foglia +1401769,Caroline 'Kat' Tchamanian +55386,Antoine Roch +87121,Vic Sarin +1314893,James Bredin +1057946,Tom Hildreth +1724203,Catherine Duplan +1171863,Marc Stanimirovic +135449,Dušan Hanák +1061255,Dorothy Ann Puzo +1292109,Myna Joseph +1066210,Akimi Yoshida +1425334,Ollie Rankin +69097,Masha Qrella +1544866,Krzysztof Wierzbicki +1494525,Megan Daum +1535118,David Mong +1006757,Peter Hirschberg +1290484,Józef Ignacy Kraszewski +1442980,Park A-Hyoung +1597965,Jennifer Meislohn +1323787,Helen Tzoutis +288233,Massimo Martelli +1425987,Rebecca Ramsey +1497977,Patrick McErlean +212406,Erica Dunton +1738146,Wynema Chavez +1462945,Kiminobu Satô +1367928,Akash Singh +1817520,Masanori Miyake +145117,Jean-Pierre Améris +1583182,Bonnie McFerrin +1455537,Scott Slater +1111244,Iskra Babich +1193913,Maryann Yee +1797230,Kyla Lebon +1419729,Serge Harvey +1632798,John Peeler +1869072,Alla Kornilov +52165,Rick Findlater +1898928,Lynda Williams +1402537,Stacey England +74025,Peggy Chiao +1665459,Nathaniel Rabideau +1347732,Kathryn C. McGinnis +1539279,Joe Drake +1542495,Epp Kotkas +583470,Amy Mills +1324024,Gabriele Simon +74729,Betsy Sullenger +1463729,Ted Gregg +586219,Georgiy Shengeliya +1840328,Ali Pournassari +965761,Niamh Coulter +1650015,Irene Gilbert +42460,Adam Greenman +1179381,Thelma Graves +1665494,Jirasak Chakkrawarn +1409295,Michael Maroussas +1489164,Piyalak Mahathanasap +1750042,Tore Breda Thoresen +1518668,Lidia Lorente +1631455,Aleksi Aubry-Carlson +1113578,Matt Cowart +1485232,Natalie Wall +1305671,Yu-kyeong Park +1372222,Booth McCracken +9735,Lucien Carré +1636735,Jason MacNeill +1037906,Eric Gozlan +1869368,Erin Fernie +1147923,Jeremy Slater +1600906,Min So-Yeon +1661272,Philipa Booyens +1384087,Rainer Kirberg +1864630,Tom Selbeck +1134653,Shahriar Bahrani +1539947,Louis Phillips +57835,Andrew Bovell +1584375,Megan Treviño +1183036,Yoshio Ueno +66137,Ronna B. Wallace +1402881,Lucy Attwood +1403488,Erik Rogers +1412485,Alexis Vieil +92491,Danny Downey +1542303,Mamuka Revia +1795854,Dwight Elliott Stone +1017242,Marion de Blaÿ +1579005,Stuart Gordon Tribble +934936,Aage Stentoft +1168589,Jean-André Yerles +1430300,Raven Cousens +1263802,Esther Edenburg +1797481,Guy Murray-Brown +930009,Christina Voros +1607637,Vincenzo Mastrantonio +1573328,Shelley Dall +1176817,Rojjarek Luerojwong +1152092,James Belfer +118413,Kyle Ward +1755192,Alexandra Kourline +1828352,Julia Cronin +1466670,Ben Onono +81437,Philippe Falardeau +1332962,Nicole Taylor +5435,Virginie Montel +1542367,Helena Tepli +1327833,Sasha Shapiro +84794,Stephanie Kirchen +1184377,Franco Piavoli +39387,Sean Bailey +1201130,Eddie Mullins +1741755,Ian Bender +72960,Alejandro Monteverde +152315,Rich Correll +1179002,Yasushi Takenaka +16928,Alain Goldman +1678082,Espen Osmundsen +1600783,Odeta Cunaj +1399694,Brad Arensman +166073,Nicholas Corea +1337240,Andrew Wilson +554861,Yasuyoshi Toyonaga +1775641,Walerio Rosa +1142405,Ntshaveni Wa Luruli +1184519,Marc-Andreas Bochert +1606200,Stephan Blosche +1658864,Sherrie Dai +1604536,Hidetaka Sasaki +391186,Damir Teresak +119321,Katherine Strueby +51766,Allen S. Epstein +1461498,Chanel Raisin +196349,John Connolly +579462,Gabriel Medina +1755128,Jessica Cheetham +1558018,Jane Barton +1565107,Dan Gamache +1379601,Robert Hoffman +1408140,Edward Lopatin +83986,Robert Kaufman +1056999,Tony Wosk +61848,James Dodson +1429327,Andrew Gainor +967253,Lorenzo Hagerman +136495,Damien Chazelle +1511480,Matthew Adams +1393371,Vinny Mazzarella +1058981,Carmen Cabana +1043890,Jamie Pachino +40406,Femke Wolting +1797885,Josh Brooks +1350236,Angela Hemingway +69241,Jon Kamen +130402,Semih Kaplanoğlu +1475161,Lauren Kress +1694677,Lina Bo Bardi +1335553,Jamie Wilkinson +1517690,Jin Hibino +1395363,Renuka Ballal +557179,Ed Gass-Donnelly +1016856,Seo Mutarevic +1771806,Jonathan Satyabudi +1528013,Selena Arizanovic +1392973,Kenji Luster +1180649,James Dean +1530274,Bendik Hofseth +1342835,Catherine Didelot +1433976,Matt Sweetwood +1726035,Giulia Stermieri +1869450,Douglas Purver +1751720,Márcio Meirelles +1521377,Rudolf Frenner +1797485,Amy Pemberton-Warbrick +1098868,Anat Avivi +1620301,Scarlett O'Connell +1797421,Andrew Bainbridge +1457827,Joseph McCasland +1312281,Alexandra Caulfield +1825550,Russell Hawkes +112995,John Boulting +1403422,Brooke Ensign +570175,Adriano Baracco +1605760,Agustín Jiménez +1456978,Tarzan Nasser +1308455,Alan Blakley +1257795,Brad Bredeweg +1835295,Thom Shafer +1357979,Rearden Conner +1816126,Bruce Gordon +1492994,Abrams Klezkins +1760132,Maximillian D. Day +1543690,Elena Ioana +1761887,Minna Santakari +39886,Francis Cosne +1339313,Trey Stokes +222102,Shayne Armstrong +22496,Benjamin Quabeck +51961,Ken Solomon +1579655,Václav Benes +129336,Luca Verdone +1521082,Krysten Childs +905370,Orçun Köksal +1009352,Miklós Munkácsi +1412140,Stian Jorde +1504752,Claire Dubien +927988,Louise Drake af Hagelsrum +99440,Mino Guerrini +1419131,Stephen J. Murray +1563385,A. Zorina +1186192,Giuseppe M. Gaudino +1340729,Daisy Marcuzzi +1173296,Mike Wiluan +1328182,Kunitaro Ohi +1284155,Lena Esquenazi +1670531,Rade Milicevic +589382,Paul Koestner +1619912,Tom Wilson +111392,Magnus Paulsson +50629,Fulvio Lucisano +936584,Laurent Bouzereau +22777,Margot Beichler +128531,Nancy Miller +1299745,Adam Davidson +979418,Steve Bevilacqua +1685975,Alexander Karaulov +180576,Rich Thorne +1498981,Frederick Hodges +1377421,Robert Hinds +53853,Paolo Colombo +1412503,Gila Bergqvist Ulfung +1696090,Lora Kvint +28055,Hans-Otto Borgmann +1579650,Jirina Bisingerová +1335886,Meike Schlegel +1174819,Martin Saumer +1706504,Skye Stewart-Short +587728,Antony Perumbavoor +1532613,Philip Shanahan +125068,Juan Luis Iborra +1412734,Jennifer Cornwell +1466046,Philip Shelby +1530394,Saisei Murô +165767,Pat Fielder +80698,Rob LaDuca +107446,Phil Lord +1551918,Jack Dolman +239412,Aram Avakian +1553615,Robert Ruiz +936425,Brian T. Jaynes +1359995,Matt Wiele +1334587,Omar Soffici +1116914,Julie Ann Lau +1579519,Noam Toledano +1374810,Timothy A. Burton +1635714,Ragnar Sørensen +1384000,Dino Kazamia +2708,Tony Thomas +1081837,Jonathan Metzger +1713067,Lyne Lapiana +112596,Sheri Singer +62639,Stuart Parr +1437720,Rebecca Qin Jiang +240284,Dorian Li +1150161,Karim Kheir +1448345,Joel Marshall +225766,Angelo Longoni +49557,Ingvar Ambjørnsen +35330,Ian Thomas +573547,Ugo D'Orsi +1117989,Bakhyt Kilibayev +556,Emma Thomas +239896,Maria Soldatini +1416937,Karr Kruinowz +966335,Vinny Smith +141882,Krishan Kumar +1537402,Hitoshi Endô +1797191,Tom Kelly +1171838,Pascual Vazquez +1774218,Valter Sagrillo +1281998,Gabriella Németh +31121,William Packer +1272155,Tania Chambers +1455521,Shaun Freeman +1537713,Geralyn Wraith +59435,Martin Hanslmayr +1400010,Trish Gallaher Glenn +1367809,Ben Mauro +74626,Dan Reed +1193234,Daniel Hahn +71148,Dirk Westervelt +1289046,Jennifer Ricchiazzi +38554,Marjorie Lecker +1377411,Jonathan Lancaster +1646549,Robert De La Cruz +230349,Daniele Ciprì +238409,Raymond To +1367805,Anne-Sophie Delaunay +1081071,Kôsuke Gomi +1814960,Josh Newport +1814582,Daniel O'Brien +1519291,Katja Schulze +209947,Mark Davis +1489933,Caitlin Laingen +1692328,Rajiv Jain +1298436,Edmond Liu Man-Sang +971920,Radu Ion +1122437,Tom Balkwill +575766,Ed Natividad +957746,André Picard +1266571,Alice Searby +1189082,Jim Bigham +1519323,Francesca Fezzi +1167721,Marilyn Durham +1606214,Jorge Castronuovo +1595709,Heiki Luts +1308255,Holly Powell +1099370,Sheldon Patinkin +138173,Stan Quackenbush +1621479,Darren Jones +587487,Maxine Julius +1841559,Electra Stratigaki +1609171,Ricardo Vaz Palma +1195112,Christine Nielsen +1646548,Dominic Dauphin +1257144,T.S. Nowlin +78219,Evan Law +1600457,Yves Delforge +1418418,Kayla Manasseri +106826,Bob Thompson +1519696,Talton Wingate +1440048,Károly Szalai +228754,Alessandro Piva +1149550,Ben Karlin +1572876,Cam McLauchlin +1650726,Louis Cyr +1459229,Mariana Popova +1452999,John Turello +1129789,Lorenzo Baraldi +236862,James Rabbitts +1288761,Andy Landen +585177,Roman Vávra +1017244,Michael Tordjman +16414,Masaki Îzuka +212678,Robin Sheppard +232866,Andrew Cullen +71294,Alfred Deutsch +1015623,Ivan Ranghelov +1412722,Joe Ken +1366808,Devyn Waitt +552263,Cecil Gentry +1758585,Tossaphon Riantong +1428038,Haruna +15873,Greg Smith +1523171,Cole Huling +1491120,Luis Balaguer +100902,Axel Graatkjær +89575,Marcos Carnevale +1694223,Mariko Tsukatsune +1337410,Lee Walpole +1096849,Alberto Colombo +1793965,Ryan Villarreal +1785030,Meenal Agarwal +136407,Karl Michael Demer +1083435,Robert Mallet-Stevens +1054382,Edward Wright +935501,Yann Martel +1437714,Stefan Tchakarov +1424443,Lada Vukotic Stamatov +27955,Mischa Alexander +132714,Ned Vizzini +126490,Seolrok Ya +1362815,David Yarovesky +1658465,Allan J. Stitt +64225,Teresa Zales +1335539,Andrew Bennett +1394436,Tony Margulies +1583158,Micaela Saiegh +1616457,Patrick Quinn +588229,Ranjith +83417,Lun Ah +14963,Alexander Toluboff +1765160,Chandradeep Singh Rathore +590896,Nikos Koundouros +1907241,Abderrahim Issouqine +1489482,Givi Urigashvili +74315,Nick Schenk +983720,Keith Kjarval +1642953,Brian Johnston +117240,Andrew Caller +97903,Silvia St. Croix +1066227,Christian Fredrik Martin +75975,Chris Odgers +166291,Tony To +1440786,Susumu Sakane +1011185,Arnie Roth +1430518,Ted Lindsey +1821915,Andrew Synowiec +1866378,Scott Menzies +91072,Carla Raij +937501,Claudia Vazquez +1603897,Maria Coveou +1301992,Ivan Ivan +1625333,Damon Bishop +55326,Yvonne von Wallenberg +1754088,Paul Agostinelli +1660709,Margaux Susi +87530,Jang Hyeon-su +1360246,Bruno Via +1746043,Pranay Agarwal +1764702,Christine Oren +18635,Ted Post +1581499,David Krystal +11907,Bibi Lindström +1579657,Olga Hrcková +1657806,Shirley Kurata +1425996,Tom Mahoney +1158913,Laurie Hicks +1094392,Lisa Essary +1705634,Dave Grennan +167029,Kevin Lund +1555023,Edward Rossi +1211913,Art Wallace +145676,Jean-Loup Felicioli +1042212,Thomas C. Grane +236742,Giorgia Cecere +1382179,Nathaniel C.T. Jackson +1266288,Mia Pinchoff +1770621,Ossie Clark +1739845,Stacy Scarborough Martin +1069297,Yamamoto Naoki +1867530,Alex Terzieff +965309,Yibran Assaud +5337,Dan Korintus +1398612,Kirsikka Saari +119406,Elliott Lester +592493,David Lowery +90573,Tsubaki Nekoi +112391,Veljko Bulajić +1143549,Chantal Filson +1840305,Theresa Bentz +37836,Luis Cuadrado +1415342,Marc A. Hammer +12183,Mitsuhisa Ishikawa +143468,Giacomo Campiotti +1346222,Louis Tisné +1662621,Andrew Roberts +932556,Erik Hemmendorff +1545777,Bermans +1325093,Daniel Lopatin +1816407,Santiago Martin Medina +227091,Jeremy Walters +1387329,Dale Hildebrand +963377,Heidi Bivens +1340723,Jon Revell +1044108,Steven Shaw +1132920,Ginger Martini +1583611,Lance Williams +1523140,Felipe Perez-Burchard +32531,Ira Oberberg +945213,Eric Tannenbaum +1603875,Mo Stoebe +927991,Julia Klusendick +1114476,Jan Vrints +1547647,Morgan Whirledge +1849149,Nicolas Sanchez +1002349,Lee Strosnider +1133963,Muharrem Gülmez +1609860,Nico Louw +1453725,Naoyuki Masaki +1676218,Lolita Ray +1409538,Galen Johnson +1366243,David Morley +32856,Christian Cloos +1755689,Jack Taggart +1013076,N. Satyen +1676376,Bekir Acar +562261,Charles L. Gaskill +1495651,Evgeniy Krylatov +62770,Matthew Peterman +45944,Hans Ullrich Krause +1483144,Geoffrey Niquet +1309683,Tatyana Likhachyova +1479524,Iván del Rio +129782,Arturo Sandoval +1748532,Chris Anthony +1714348,Thomas Couzinier +1462915,J. Randy Taraborrelli +1795852,Dominic Bartolone +1707974,Deirdre Dobbin +40592,Jeffrey Chernov +84437,Gabriela Tagliavini +232632,Marcello Marchesi +1385604,Vasilis Vafeas +1544416,Alex Coverley +1361209,Stan Rogers +1216184,Tom Martin +1441130,Ronald LaVine +222238,Joshua Meador +1318685,Nico Crama +1646386,Charlotte Vaysse +791276,Stephen Hays +1339456,Mara Herdmann +1451563,Joshua Beattie +236529,Matthew Silva +1764797,Benjamin Setiabudi +1127739,Tony Mitchell +1129380,Tatsuo Hori +142510,Yuli Raizman +1766556,Fabio Costantino +1155165,Nick Emerson +1623955,Kelsey Tome +57870,Jason Bloom +233269,Stanley Rauh +1302397,Oleg M. Savytski +1841575,Artem Kulakov +929056,Paula Parisi +116194,Roberto Irigoyen +1435414,Michael Thelin +1785019,Jehan Handa +1460041,Jennifer McCuen +1397011,Michael Disco +1560223,Daniel Mizrahi +1738096,Ren Boggio +77146,Jayne Russell +138174,Don Lusk +1327678,Михаил Липскеров +56651,Scott Campbell +233136,Otto Brower +1145018,Tomas Michaelsson +208171,David Kane +25747,Henk van Eeghen +1555314,Tavis Larkham +29170,Hans Landsberger +1177894,Joy Cowley +130858,Danny Perez +40354,Steven Pallos +1188381,Ron Davis +147750,Pekko Pesonen +1335210,Marc Benacerraf +1640296,Advaith Ramkumar +1519345,Jennifer Marie Thomas +1195387,Reginald Long +1652815,Jung Ae Kwak +236865,Stefano Sardo +943469,Stefan Wodoslawsky +1183408,Vittorio Pezzolla +832208,Trond Bjerknes +1243076,Kirk Ellis +1422819,Emily Rogers Swanson +1191609,Rajat Rawail +1210334,Jussi Kylätasku +1544664,Casey Crafford +1740773,Sarah Dutton +1404191,Michael J. Urann +937946,Peter Field +1175739,Gian Paolo Chiti +139449,Jonah Jones +1608317,Igor Smirnov +65441,Sadayuki Murai +1548067,Nicole Rocklin +1319522,Don Carroll +1372081,Bobby Berg +141171,David N. White +1115712,Sun Yu +1456625,Michiyo Suzuki +34267,Albert Duffy +1654830,Mutita Na Songkla +1630391,Chris Goldberg +937171,Michael Benaroya +33508,Bettina Helmi +30924,Alan Osbiston +1071389,Mathieu Bouchard-Malo +1069735,Kyung Ho Lee +1660924,De Nosworthy +1837277,Urs Hirschbiegel +234274,Zach Condon +1006148,David Michael Barrett +189655,Jim Kaufman +239783,David Golden +995407,Eduardo Rodríguez +150110,Hal Ambro +44132,Mario Philip Azzopardi +87958,Sven Hassel +1647202,Bryan Madole +1492033,Anthony Medina +1810168,Jordana Sapiurka +1564090,Gerhard van der Heever +552534,Yasuaki Shimizu +6524,Gervasio Iglesias +1367817,Aiden Ramos +1345262,Michael Baird +146357,Jean-Jacques Zilbermann +1365970,Don Money +655062,Bradley King +92938,Brian Ash +1719706,Aaron Horvath +1428229,Jordan Corngold +1851896,Warren Jones +1185042,Kay Gelfman +58485,Matthias Lehmann +1768215,Michael Su +1484249,Colm Tóibín +139595,Xavier Robles +1880906,Renee Chan +1460590,Dan Youngs +1528010,Martin Paul-Hus +39822,Rich Cowan +1316001,Patrick Fischer +1807830,Susan Mick +1293579,Stephen Ringer +1568842,Alexandre Lafortune +583084,Daiva Petrulyte +1159346,Catherine Lutes +1481517,Martin Tinguely +1601196,Jace Downs +1225028,Daniel Kellison +1210241,Matt Garton +1362706,Filipe Gonçalves +1443566,Keith Prokop +1332204,Frank Hall +1026105,Ulf Axén +72751,Maurizio Calvesi +1452558,Young-Jin Mok +1143763,Kjell Nordström +1196706,Sarah Schultz +91583,Sozo Morisaki +223101,Ray Harris +83263,Piotr Szulkin +1570084,Dekel Reuven +1560220,Jacob Bercovitz +224872,Byron Chudnow +1825885,Niko Nedyalkov +101110,Giovanni Grimaldi +936626,Thomas A. Cohen +1324038,Christopher Eckerdt +575491,Arthur Stringer +1611043,Zach Sinick +1396337,Christopher A. Smith +1865184,Olivier Blanc +1076794,Aage Aaberge +630230,Patrick Garland +1401200,Trey Shaneyfelt +1411238,Mark Jefferies +1555491,Riva Yares +124793,Frank DeMartini +100421,Malcolm D. Alper +1483582,Amanda Enders +1336138,Nadezhda Treshchyova +1635305,Bricine Brown +7391,Harry Miller +1543995,Josefa Rubio +1825002,Jianhua Yin +6506,Arjun Bhasin +1583178,Janet Jensen +1621895,Kit Lubold +148507,Jules White +1105694,Geoff Carino +1646491,André Nicholas Malouf +1470710,Jack Firman +1018918,Pedro Borges +1401140,Abhishek Chauhan +1799083,Artyom Gabrelyanov +32640,Bernt Amadeus Capra +138779,Joseph Varca +928243,Majrooh Sultanpuri +104398,William Ungerman +1424110,W.T. O'Brien +165899,Simon Cowell +1577896,Nicolas Mollard +1447087,Elias Issa +1639023,Robert Schaffel +1686546,John Krimsky +1095781,James L. Shute +286679,Adam Ripp +1547006,Catrin Wideryd +1393784,Tabitha Dumo +1033719,Vincent Grashaw +1758251,Natalia Brozynska +1393457,M. Gerard Sellers +1642567,Eimear Joyce +1099650,Aaron L. Williams +1484985,Jonathan Terpstra +137032,Jiří Brdečka +1252487,Ki Hyun Ryu +84187,David Melito +582314,Pavel Ruminov +1878521,Jim Philpott +98447,Mark Hanna +1491852,Rachael Hawkins +1760136,Eric Shemkovitz +1186246,Glenn German +1759303,Rachel Ferrera +25620,Jameson Brewer +1046637,Kami Garcia +115869,Adele Comandini +67074,Ludwig Spitaler +573778,Stefano Sudriè +1340772,Maralyn Causley +126162,Richard Hankin +1024870,Peter Roos +1585959,Michael Sullivan +1775634,Waldier Xavier +1173411,Franklin Peterson +1619473,Lisa Lambert +937652,Anne-Sophie Bion +70197,Jean Bizet +1619180,Hideyoshi Mori +145840,Herbert Gorman +76482,Denis O'Sullivan +1755726,Thomas Lemaille +228542,Keiichi Abe +1413112,Lucian Alexandrescu +1615557,Ryan Grassby +1299507,Kim Tae-seong +45552,Jorge Macaya +1685970,Patrick DeVine +1150428,Thomas Bremer +1425482,Kevin Spruce +1066863,Rubén Galindo +1162692,Friedrich Schiller +1655893,Pat Magnarella +1425378,Gary Tippett +1281414,Paul Proch +1325657,Gisela Bernice +1396779,Bob Joyce +15884,Graham Hopkins +1337721,William Fleming +1034421,M. Simksayev +1438462,Alice Filippi +1021685,E. Mason Hopper +1760581,Howie Chou +1188707,William Levine +1470524,Kymber Blake +1615524,Jang Seong-Soo +1412723,Michael Landon +1590393,Chris Allegro +1872436,Simon Hawkins +1389136,Paul Apelgren +1378568,John Spooner +1308605,Sparka Lee Hall +60693,Andrew Pozza +44570,Peter A. DeCenzie +1842004,Ben Richards +1834272,Mary Hagerman +1797503,Vic Parker +1187853,Michael Laimo +6496,Sabrina Dhawan +1564375,Aiyana Trotter +1600775,André Zacher +1424647,Anna Mirow +1707970,Ronnie Minder +234819,Mark Foggetti +1676788,Frank Nicolella +1090944,Vincent Monnikendam +1578905,James Wichall +1409762,Lee Crichlow +1384818,John Vincent McCauley +1386326,Immanuel Salas +1173740,Helen Nielsen +1714350,Fréderic Kooshmanian +1106878,Beqa Jguburia +1575333,Jody McVeigh-Schultz +1142289,Emir Baigazin +1585730,Peter Grace +1359838,Earl Haley +1456097,Horret Kuus +1420665,Russell Levine +1719803,Gonzalo Curiel +1196910,Friedrich Karl von Puttkamer +145190,Monty Miranda +1380464,Sirius Buisson +145225,Ben Odell +1461181,Anastasia Magoutas +1421221,Ning Song +239445,Dohei Muramatsu +1177058,David Ives +1050095,Matt Radecki +578723,Sherri Hamilton +227913,Lucio Pellegrini +1709328,Mike Selemon +1322029,Sam Claypole +1155640,David Ho +1844356,Kevin Plummer +1106970,Johan Van den Driessche +1426735,Paul Healy +1039530,Radio Silence +1641659,Michael Roy +1066563,Homer Croy +1136780,K. E. Gnanavelraja +1126375,Mario Ricci +913688,Mike Woolf +1540038,Vishnu Mathur +1777253,Bohuslav Pikhart +68698,Steven H. Berman +89889,Daniel Gordon +1459850,Óscar Sempere +1580846,Jeff Sayle +1141686,Craig Kief +75832,Brenda Magalas +572364,Michael Schwartz +1067317,Nicolas Benamou +1365397,Rebecca Hall +1514147,Jason Clarke +1166214,Pierre Levent +1630387,Erick Vizcaino +1597060,Ivan Staykov +1490653,Lourdes Briones +1327405,Christian Cordella +1840867,Kimberly Carlson +1400496,Justin Herman +1688233,Amedeo Minghi +1769389,Anna Laclergue +1453141,Summer Petersen +1706428,Aaron Newton +1563238,Adam Benzine +1395029,Colin Hudson +1658449,Mutsunori Nishimura +1076190,Gustaf Unger +1711574,Bern Euler +80683,Pam Collis +1642575,Gino Guo +1174838,Pascale Montandon-Jodorowsky +1100368,Alexander Wadouh +1754083,Anna Lomakina +1582464,Craigar Grosvenor +1037247,János Kende +1337694,Bruno Cascio +7956,Nathaniel McLaughlin +1852940,Nishima Chudasama +1358982,Ryan M. Kennedy +1677701,Alice Dawson +1275731,Hanna Hansen +1156210,Rachael Counce +939451,Robert Toth +1098826,Megan Hutchison +91628,K. Selvaraghavan +1287352,Eric Morrell +1104950,Ingvar Lundberg +1709311,Alex J. Reid +1170730,Tatiana Stepanova +1442151,Björn Mayer +232012,Derek Bickerton +1454571,Monika Choynowski +75561,Glen Dillon +1561954,Andrei Komissarov +1797416,Florence Izen-Taylor +1554328,Christelle Maisonneuve +1574436,Velma Barkwell +1650259,Philippe Logie +1530086,Karen Meisels +1602261,Anthony D'Souza +1733201,Veronique Vaillancourt +1156680,Colin Webb +1770713,Hiroaki Edamitsu +1493528,Kiersten Ronning +1569276,Alex Brown +9582,John C. Howard +1777665,Marieke Séguin +1462274,Brigitte Huff +1303294,Lars Swanberg +1660649,Meena Rao +102202,Channon Scot +935643,Thanasis Papathanasiou +1646178,Juan Reina +91296,Caroline Chignell +1525985,Kimberly Felix +1061511,Jake Newsome +447616,Carl Deal +1310822,Johnny Jewel +1054704,Anne-Cécile Berthomeau +1403708,Abderrahim Bissar +1294993,James Robert Johnston +592920,Dorota Kedzierzawska +1768801,Kushal Kantilal Gada +1573015,Ashley Marie Parker +146117,Ewa Piaskowska +212618,Bob Goodman +89542,Len Shilton +973134,Rick Nicita +1556856,Theokritos +1819553,Peter Ayriss +928659,Tiffany Ward +1301658,Chadwick Struck +1336562,S. N. Raja +126409,Hugh Marsh +1741051,Gary Griffen +1161729,Jeremy Teicher +240555,Naum Birman +1318417,Yannis Petropoulakis +1903909,Dan Smith +1286559,Ashley Margo +1686498,David Temprano +35955,Maurice Clavel +222258,Georges Darien +37197,Riccardo Freda +1445359,Tico Poulakakis +1821876,Aimee Huber +1208823,Colin Stetson +1545383,Matthias Reisser +95321,Chris Sparling +1824282,Georgette Turner +1410556,Michael Adcock +13386,Werner Bochmann +1360028,Jonathan Kahn +1113451,Michael Blencowe +1670921,Brandon Ripley +5456,Webb Smith +45421,Todd Rohal +1367611,Mordaunt Shairp +1114580,Leo John Paul +1426749,Pablo José Fuertes +1445838,Leff Lefferts +1295303,József Bajusz +106098,Jerry Sackheim +1164081,Drew Daniels +1208826,Micaela Carolan +1069669,Shaw Hawkins Burrows +1575331,Evan Greenhill +1286592,Joshua Talley +1321066,Jamie Hunsdale +1449421,Margarita Mikheeva +36149,John Gonzalez +41793,Serge Lalou +1362167,Josh Hasty +1559473,Stephen Wilkinson +1537401,Naoki Hyakuta +1188278,Greg De Iulio +1008501,Rosalba Gristina +1373698,Stephen Swain +1309862,George Loucas +1538520,Alfredo De Laurentiis +1759306,Larry Edwards +1208803,María Carolina Agúero +1401182,Cameron O. Galloway +59936,Dan Lyon +1340081,Lindsey Archer +1499009,Jeffrey O'Kelly +1128308,Chris Bylsma +1703748,Ido Dror +1646075,Scott Baker +1363861,Kevin Berger +1351010,Jan Novotný +1332237,Sandra S. Orsolyak +4853,Jonathan Safran Foer +122466,Tony Hooper +133120,Sidney Shelley +1472784,Brendon O'Dell +1180535,Pete Ohs +237274,Khesya Lokshina +1618228,Yevgeni Zagdansky +1726804,Kevin Pawlak +152260,Paul Walker +227228,Michael D. Jones +70788,Charlotte Huggins +56410,François Roy +1683441,Mary J. Dixon +1383971,Carlos Muñoz Portal +1322105,Clarissa O'Connor +1438460,Davide Avenia +15287,Niki Caro +1073159,vicky bahri +1634559,Mark Hatton +91585,Kevin Willmott +1133064,Pascal Lahmani +952087,Barry Krost +1085297,Kyle Billingsley +120326,Edmond Seward +1354701,John Stirling +46091,Benjamin Sacks +63052,Julian Gilbey +64428,Bill Lui +1363758,Peter Sciberras +79390,Paul Bales +230599,Andrea Barbata +1158052,Debra Denson +1196146,James Cresson +129083,Paul Gangelin +1368962,James BKS Edjouma +1453003,Shane Hall +1354346,Atsawin Jitjana +71596,André Erkau +25349,Honoré de Balzac +1885500,Pete King +1722225,Dan Johnston +1024844,Charlotte Watts +1777264,R. Wörfel +1821417,Sylvain Deboissy +245248,Jack Lee +20355,Stephen Susco +582413,Gianni D'Amico +1560948,Sharon Matthams +1396219,Inari Niemi +1411111,Matthew Tucker +1161138,Isabelle Dickes +584585,S. P. Balasubramaniam +1606181,Agathe Sallabery +1427777,Claudia Cantoral +1335158,Slavko Novakovic +971722,Eric Perron +93406,Elem Klimov +68541,Robin Gutch +935270,Jonathan Berke +7894,Jean-Claude Kalache +590053,Noam Dromi +1501196,Claudio Cofrancesco +1784760,Emmeline Wilks-Dupoise +221064,Patryk Vega +1204180,Frances Parker +1334463,Debbie DeLisi +59009,Michael Wolter +1324033,Daniel Hunt +1084613,Pascale Béraud +1419621,Jeanette Drake +1721316,Jirí Trier +1869376,Manon Ih +1307614,Jeongdal Seo +1008507,Rosario Anello +1888581,Jennifer Norridge +1323122,Brian Horiuchi +1635713,Gunnar Sønstevold +1796920,William Zollinger +1756363,Mateo Londono +1185285,Jeff Pointer +1453115,Vladimir Uspenski +1907230,Rabiaa N'Gadi +1046489,Richard Bates Jr. +115033,Eric Heisserer +1650336,Tyler Savage +25736,John Pielmeier +1764176,Guy Churchouse +1704833,Rohit Karkera +586083,Leigh Mitchell +1518454,Justin Craig +1106098,Agnès Feuvre +144300,Achmed Abdullah +1279101,Ray Elton +1301985,Igor Kuljerić +1621226,Peter Chrimes +1168792,Darren Lund +32117,Anne Box +1414602,Fely Crisostomo +1338656,Franco Velchi +1831333,Tomoko Kurata +1331542,Michel Dierickx +1415935,Charlotte Ball +1342855,Lo Siu-Cheung +1855305,Michael Struk +1394860,Simon Hewitt +1134232,Kazuyuki Shibuya +1635735,Éva Csiszár +1568858,Max Harris +1023668,Chantal Thomas +1733203,Jonathan R. Chan +1211349,Travis Amery +1012317,Marlon Rivera +126873,Lynda La Plante +1205763,Franck Philippon +1764639,Carolina Vensius +1076744,Maite Rivera Carbonell +1320141,Ferdia Murphy +774666,Marco Londoner +61768,James M. Vernon +1673996,Jeffrey Wood +1345256,James Bromberg +1423841,Kelly Granite +1481282,Andrea Carter +1194706,Philip Yung +1519835,Daniel-Konrad Cooper +1284453,Mikhail Druyan +58138,Thierry Hoss +1322568,Robert Hall +1018757,Darren Morze +1332196,Frank R. McKelvy +1399475,Christopher Prampin +1367826,Brice Liesveld +1707195,Sigurjón Jóhannsson +1437620,Peta Dunstall +1669187,John McPhillips +1024175,Brian Lynch +33226,Ray Snyder +1403498,David Thornsberry +1547188,Linda Huse +1558851,Chip Carey +231705,Matt Eskandari +138469,Marvin Coil +1815814,Hannah Greene +927999,Tobias Henriksson +163105,Mark Horowitz +24003,Yota Tsuruoka +1406866,Samantha Fielding +180749,Natalie Farrey +1676151,Dan Redford +109711,João Botelho +1058615,Carter Swan +1373180,Nan Lyons +1636703,Tara Pavoni +229989,Susan Forrest +1340351,Kinson Tsang +139280,Jay Chapman +234615,Beth Frey +933274,Nicola Giuliano +1176454,Daniel Noah +1457945,David Kenney +986972,Larry Reed +17949,Robert Q. Lovett +1133993,George Gale +1253060,Akatsuki Yamatoya +1306740,Frank Marsales +15892,Dan Fogelman +64559,Marcus Stotz +47830,Jakub Čech +1290164,George Lowerre +1407870,Kathleen Weir +1746449,Dan Oliver +1382922,Gene Page +1493530,Matthew R. Brady +1609847,Stacey Dunn +1738121,Loren Marie Story +1357870,Chris Craib +999557,Chris Ballantyne +1438452,Fabrizio Bacherini +1618181,Eliot Milbourn +1868700,Grosvenor Miles Hafela +1037321,Alois Fišárek +1583305,Jeff Ginyard +148763,Oskar Santos +1598865,John R. Coonan +1575352,Rich Robinson +583462,Laura L. Little +549131,Aleksei Kapler +1459864,Quinn Robinson +1642582,Felix Kofron +1536195,Simon Meilleur +36432,Klaus Dudenhöfer +1510941,Jesse Newhouse +1263795,Huib Raeven +1208688,Dhara Jain +29417,Rod Edge +1084968,Tomas Riuka +1485212,Marshall Barer +1764793,Apple Jing Ting Ngiam +68589,Nikolaus Kraemer +1340730,Amy Clarke +1102867,Michael Hubbard +565491,Seth Grahame-Smith +1194629,Bob Trevino +23849,Fred Du Preez +1138712,Darci Picoult +229974,Kola Bhaskar +1821926,Cristal Jones +1279216,Shana Betz +150971,David Burton Morris +1372552,Mauno Mäkelä +1330201,David Oas +1354345,Pichet Wongjansom +1784269,Jaroslav Kučera +1313750,Toyo Suzuki +297,Jay Meagher +127198,Clark Ramsey +32779,Stu Phillips +1367935,Tim Yoder +565353,Denis Lagrange +1394782,Kevin Day +1316518,Amit Yasur +1518777,Sven Vosloo +1284257,Jüri Arrak +1775562,Tim Woodhouse +23614,Elemér Ragályi +1115945,Mohamed Hefzy +935636,Kostis Papadopoulos +1397309,Joe Melody +1485473,Jacques M. Bradette +1824277,Kieran Waller +1486969,Colette Freedman +1735129,Sue Booth +1580852,Luke Botteron +1403504,John Polyson +18573,Harry Joe Brown +172427,Gary Harvey +113898,Ed Scharlach +1594818,Maria Trifu +1378001,Philip Lonergan +239792,Kwang-su Kim +1726806,Ryoko Seino +1531514,Alison Griffiths +8064,Robert Grahamjones +550476,Yuriy Norshteyn +1339593,Anna Lloyd-Jones +1685030,Masayoshi Sueyasu +1298933,Furio Rocchi +1746702,Lauren Evans +1555157,Emma C. Rotondi +1824246,Thomas Kennedy +1410603,Rachel Corlet-Soulier +1357043,Clint Wallace +141194,Marc Daniels +83471,Alan Barnette +131505,George Willoughby +1577205,Amy Silver +1584350,Peggy Arel +1621480,Max Hughes +1642559,David Wu +1456609,Hideki Hamazu +1562471,Houston King +41065,Franco Villa +178093,Michael Kennedy +1263789,Esther Claus +1127471,Kristian James Andresen +140848,Romano Scavolini +81118,Emmanuel Carrère +1849899,Roger Bagley +40497,Gian-Piero Ringel +134606,Ben Templesmith +1726801,Julie Morgavi +1746439,Spencer Fitch +1193840,Harry A. Burns +1426225,Hadeel Reda +1550846,Jérome Miel +1316207,Andrea Cavaletto +1542306,Levan Dabrundashvili +577422,Yang Zi +1726769,Raymond M. Tasillo +1486939,Angela Littlejohn +1894627,Elena Krupp +1272849,Kristin Hanggi +1579518,Yuval Bar-on +1662265,Radhakrishna Eskala +63462,Christopher Duddy +1074511,Alexandre Mailhot +1351474,Michael Zacharski +1623944,Scott Buckler +1367670,Judson Bell +109695,Jeffrey W. Byrd +1862957,Nick Ariondo +1606760,Jack Haynes +163198,Holly Dale +1431530,Maan Dimaculangan +1423438,Ron Robinson +1190277,Gerry Greaney +1142998,Pony Bravo +1738103,Jared Slater +1252958,Yukihiro Miyamoto +1354922,Steve Fanagan +1333915,Jillian Bunting +1400681,Kyle Schwarz +1404147,Dirk Nel +1029282,Shoji Ebara +1597024,Ani Laskova +1103523,Chi Hang Ho +1156239,Jones +1637390,Adrian Corsei +73197,Tony Amatullo +1775632,Jens Müller +1038970,François Quiqueré +133588,Kerry Douglas Dye +1480629,Luca Vannella +1492116,Adam Lawson +1179836,Shruti Ganguly +138636,Nicholas Wentworth +1606296,Giancarlo Morelli +1279066,Ana Poliak +1815824,Paul Hymns +1894620,David Ortkiese +1527471,Tristan Goligher +1583085,Jakub Czerwinski +55806,Denis Dercourt +1394716,Emilie O'Connor +1330113,Stephen Murphy +1636858,Nick Oberlander +1105186,Paul Michael Thomas +1740775,Graham Martyr +803,Wolfgang Thaler +1822321,Esther Hilsberg +1555490,Gail McMullen +1397687,Jeff MacIntyre +1681431,Rain Rannu +261083,Victor Hanbury +1451455,Hermann Pölking +102773,Ari Graham +70155,Johannes Grieser +1740795,Anna Morena +1607270,John Bremer +156029,William Shockley +40333,Satoshi Kon +1378401,Pierre Grisé +1195181,Cody Calahan +1461996,Chris Patrick O'Connell +1459720,Herve Desroches +1550770,Jenny Jiyeon Bae +65962,Bill Wong +958139,Frédérique Belvaux +1451579,Jacqui Lewis +1780186,Shanti Spohn +555280,Yoshifumi Fukazawa +1354334,Jesada Boonma +76424,Jimmy Tsai +1289780,Valeri Mnatsakanov +935588,Jennifer Maytorena Taylor +1773059,Christopher Applegate +1661326,Caitlin Well +49875,Troy Cook +132360,Wanuri Kahiu +117488,Ji-un Kwon +1063185,Pierre Laroche +1833829,Synnove Godeseth +1536595,Carven +1759304,Martin Vallejo +1778195,Rachel Connors +1308815,Inga Ojala +548152,Claudio Rocha +1616472,Joe Badiali +50624,Peter M. Thouet +928346,Trayce Gigi Field +1348063,Bobby Lee Darby +1699526,James Carter +1404274,Jackie Zbuska +5340,David Carbonara +1332313,Eli Cohn +1318874,Alessandro Bertolazzi +31247,Christian Dressler +56598,Stefan Barth +1338153,Joe Michalski +1206407,Tommaso De Santis +1760123,Peter Kanter +1375605,Garrett Kerr +1757623,Melissa Binder +1293793,Seongmin Kim +117605,Don Devlin +1809042,Esteban Bravo +1086968,Ronnie Hazlehurst +1017209,Carles Torrens +969242,Andrés Calderón +1405325,Pacini Kevin +1429017,Morihisa Yamamoto +114368,Richard Weil +1606819,Joe Preuth +1350077,Hiroshi Kubota +1317096,MaKenzi Moore +109943,Justin Jones +1654341,Tilly Day +1186813,Bandla Ganesh +97019,Ernest Pascal +92004,Joreta C. Cherry +439236,Zackary Adler +1573777,Will Staeger +1393440,Michael A. Johnson +1473415,Brian Franklin +1305784,Kim Dong-Young +1666526,Steve Pines +1435531,John Moros +1620539,Gabriel Talhami +1630288,Jason Maney +1642566,Eric Helms +1419723,Mathieu Berube +1425387,Scott Shapiro +1113439,Shruti Mahajan +1584092,Rolandas Joneliukstis +1572521,Ignacia Soto-Aguilar +1116500,William F. Connelly +79287,Óscar Araujo +1288717,Jason Sussberg +588828,Javier Mariscal +178267,Ralph E. Black +1573410,Michael Hardman +1777226,Miroslav Sinkule +1487579,Boudewijn Büch +1781643,Jamie Whickman +77703,Edmond Wong +1427148,Carl Christian Raabe +90504,Takefumi Haketa +1693468,Kevin McNamara +1828343,TJ Richardson +1029332,Andrew Hewitt +117842,Blake Leyh +11426,Ben Sharpsteen +1587600,Boris Shergin +142272,Henry Joost +1001700,Ashley Bradnam +1286571,Alexander Burstein +1363345,Cameron Hallenbeck +1778363,Daniel Lawson +1128262,Sam Cable +1398527,Charles Knott +234942,Choi Dong-hoon +1570522,Vera Turonova +233985,Ulrike Grote +572233,Franco Letti +1552642,Courtney Marsh +1297324,Craig Paulsen +8193,Florian Henckel von Donnersmarck +1340323,Doug Reed +1718140,Darshan Jalan +1439739,Boris T. Duepré +1448871,Chris Maggio +1411122,Sonya Yu +1304292,Marcelle Gravel +13230,Frida Torresblanco +59421,Paul Young +1867549,Robert Van Eps +75154,Brian Pearce +1708002,Eden Elliott +82116,Allan Mauduit +1802999,Edward T. Parmalee +1440404,David Curley +1629994,Kong Chuen +1401153,Scott Cremeens +71081,Mitsuyoshi Takasu +1646402,Venkat Akkineni +1080204,Masayoshi Tabe +127146,Alan R. Cohen +109891,Klaus Härö +57763,Lars Jessen +1542277,Bob Persichetti +1152090,Philippe Gompel +1566583,Andreas Røslett +1574071,Julien Bolbach +61986,Ryan Schifrin +1864624,Antoine Petiet +1402724,Amy Sanderson +1398227,Zivile Gallego +101234,Bob Crowe +1432702,Suzette Gomez +70511,Peter Bryan +135465,Tadashi Fujiwara +23300,René-Marc Bini +1635217,Delmar Reyna +193599,Rodney Stone +1087734,Peter Byck +1050076,Nikola Vucetic +97239,Christopher Massie +117661,Jonathan McHugh +1728938,Abbas F. Eddy Zuaiter +942904,Mark Burnett +1815262,Jodi Matterson +1676438,Shweta Sharma +1419218,James Feltham +1292126,Kate McLean +234564,Bret Harte +1415010,Pam Hammarlund +1603874,Ceyda Torun +1615077,Cati Dinu +1665415,Vivek Thomas Varghese +89631,Nicolas Peufaillit +102095,José Antonio de la Loma +937940,Tommy G. Warren +1352126,Yûji Ikeda +1406672,Steven Levy +64815,Robert Iscove +1615345,Ben Rodriguez Jr. +1324071,Christian Pérez Jauregui +1609177,Michele Perry +1052172,Galliano Juso +1338399,Merle S. Gould +1275732,James Schafer +550684,Cindy Meehl +1536977,Leslie Webb +1373888,Sotiris Tsafoulias +1478651,Tada Chae +1436438,Marek Zawierucha +1550912,George Romanis +1684363,Sean Brennan +1548462,Eliot Connors +1379420,Jacqueline Quella +1462259,Takeshi Fukunaga +1438451,Bruno Ventura +1635797,Maja Storbekken +1077531,V. Harikrishna +1618782,Syretta L. Bell +1362711,Paul DeFreitas +89963,Masashi Kishimoto +1323082,Djanina Baykoucheva +117230,Paul Conway +1042810,Paul Gilpin +59390,Paco Alvarez +1872423,Lee Norris +236058,Ali F. Mostafa +125971,Maria Procházková +1722170,Cory Ching +1539990,Ric Schnupp +1905088,René Haan +1468575,Jason Forster +1404197,Nick DiRosa +33893,Stephen McPherson +129543,Joyce E. Bernal +1782625,Jonathan Oliver Sessler +1611071,Alan Scully +579541,Raymond Asso +1031765,Ellie Del Campo +1453596,Daniel Gill +94312,John Inwood +20587,Emanuele Crialese +1044163,Paul Brill +1635007,Steve Lionetti +1483841,Pavel Bezdek +33956,Royal K. Cole +1018751,André Nemec +234602,Dmitry Meskhiev +29188,Aleksei Tolstoy +60513,Pauline Chan +1470842,Kathleen Behun +968332,Second Chan +83595,Bhushan Kumar +1614531,Danica Pantic +228552,Junichi Ôsumi +1183912,Mira Fornay +1272711,Tony Nottage +1085822,Maurice Blackburn +557254,Anatoly Eyramdzhan +1439731,Kristijan Danilovski +1210331,Beth Charkham +31998,Marc Sorkin +1718315,Nicole Antoine +1797871,Richard J. Reynolds +222355,Stephen Coates +115613,Adam Ahlbrandt +583874,Boris Mojsovski +1455505,Dana Reed +225320,Federico Bondi +1060644,Maciej Melecki +1134541,Hitoshi Iwamoto +1337354,Heiko Sikka +160342,Merritt Yohnka +1130813,Anton Zlatopolsky +1862942,Andree Gibbs +132561,Bruce David Eisen +1621901,Lucie Colombié +1094821,Matthew Ogens +1571952,Scot Blackwell Stafford +134108,Yuri Arabov +568336,Stephen Hens +1394680,Brian Gates +1536898,John Bowring +1410561,Matthew T. Griffin +181450,Allan Jacobsen +1676026,Deepika Gandhi +1414941,Melissa O'Brien +635,Shigeharu Shiba +65661,Ariel Roshko +1896008,Jane Marcantonio +233718,Ferenc Grunwalsky +1122332,Lucas Fuica +1224586,Ed Burns +1322323,Robert J. Kral +150193,Sandy Collora +21670,Sascha Wernik +1781647,Ryo Murakawa +1112586,Ersoy Güler +1540075,Bengt Ottekil +1460611,Rohit Kolhe +1721326,Ngan Chung +1192612,Tony Williams +16806,Eberhard Junkersdorf +34425,Arthur Marx +1019507,Peter Mervis +1772093,Ricardo Herrera +1754119,Bic Tran +56480,Jo Hahn +1074446,Pier Francesco Pingitore +33374,George H. Plympton +1581513,Nora McPhail +1815246,Ali Mohammad Ghasemi +555754,Dana Coty +1558718,Worth Bjorn Walters +1463250,Danny I. Tolentino +1343978,Hiromi Sasaki +1362029,Aesop +1608767,Rebecca Dealy +1094172,Maya Oloe +130313,Walerian Borowczyk +1158037,Dorothy Gilman +579313,Eiji Uchida +1705323,Jasleen Kaur Royal +1342856,Liao Yi-Yuan +1447893,Dillon Baldassero +1812013,Rumiko Kora +1821547,Bob Thompson +1267018,Khaled Salem +138783,John Russell +239559,Chris Beach +933576,Dana Campbell +1404867,Kathy Charles +1496222,Bruce Bendell +44733,Steve Nieve +1479441,Kenneth Cook +148535,Monthon Arayangkoon +124334,Stanley M. Brooks +1845778,James Leith +1176379,Janicza Bravo +1797241,Axel Bonami +564973,Leslie P. Davies +1584965,Georgette Somohano +1578874,Emily Connell +1327831,Anton Lessine +927981,Linda Aronson +32517,Will Berthold +128294,Nadezhda Kosheverova +1760122,Victor Zavala Kugler +1744296,Bruce Schooley +135663,Dionysis Fotopoulos +1569330,Sven Harens +1764110,Natasha Vincent +126973,Aurelio Grimaldi +1622324,Mike Kam +1647131,Paul Toddington +979474,Keith Madden +1558715,Ryan Kuba +1376954,Snell Creado +94541,Susan Kirr +1819971,Keith Gomes +1547729,Albert Payson Terhune +1312509,Iya Labunka +1824236,Andy Reeve +1293597,No Deok +45187,Samuel Newman +14934,Ken Barker +1851890,Jon Walker Schmidt +1616456,Sam Naiman +1125216,Douglas Saylor Jr. +1323508,Pasolang Yunus +1460865,Annie Klein +1782619,Levon Asharumov +1725574,Vitaly Grigoriants +222325,Ville-Veikko Salminen +1327220,Adam Brandy +1188279,Scott Galinsky +1065251,Miguel Abal +1815825,Tina Fabulic +220691,Laura Poitras +1404196,J.D. Moore +1615079,Titi Gavrila +1107765,Hiroshi Harada +1547481,Masae Hosoi +1229796,Erica Rivinoja +87537,Yoon Je-kyoon +102473,Anthony Spadaccini +158325,John Weidner +1512676,Thomas Gottschalk +1193622,Atsushi Nishijima +1215937,Andrew Steele +1117105,Blake Skaggs +1363884,Daniil Pokras +1112602,Kotaro Isaka +1126291,Susumi Miura +1681775,Raul Almanzan +1184245,Midian Crosby +72197,Ferzan Ozpetek +1825887,Mallory Thompson +1821416,Pauline Gilbert +424552,Shelley Kay +1579740,Micah Wright +17748,Craig Wedren +147709,Habib Faisal +1496093,Phil Davies Brown +532053,Vaughan Sivell +55873,Hans Rodionoff +1569150,Steven Thibault +969405,Eileen Dennehy +1868186,Allen Coulter +1830744,Ken Shane +1761858,Leena Kouhia +28947,Christopher L. Stone +1179419,Matt Duffer +1635188,Ken Rudell +1724172,Max Knauer +1849138,Yoann Berger +1849129,Laurent Bacri +1734426,Benjamin Gieschen +563888,H. Tjut Djalil +1092934,Suketarô Inokai +1666095,Everett Chase +1689882,Juan Jurado +1063375,Oleg Negin +1849490,Jordan Gross +1566366,Mathieu Beaudin +1485172,Yona Prost +1640705,Georgi Garnevski +40832,Mike Richardson +1394718,Alfonso Calvo +1453020,Guy Bar'ely +1707973,Sasha Hough +1423439,Fawaz Zoubi +4428,Raffaele Del Monte +82949,Koreyoshi Kurahara +1108748,Jeff Toyne +1315089,Allen Lynch +1412135,Olav Haddeland +228315,Stanley Rabjohn +1796919,John M. Bauman +12037,Martin Kurel +928293,Timothy Naylor +583607,Rajiv Rai +1758558,Sittichai Ussawadilokchai +182892,Mike Rohl +1155056,Laura Siváková +72133,Vicente Amorim +1000924,Roberto Silva +1058632,Wladimir Kaminer +6241,Ernst Marischka +456963,Gökhan Tiryaki +1642593,Gary O'Neill +1263262,Steven Vas +1412984,Pascal Garneau +179515,Rock Reuben +995348,Jennifer D. Johnson +1378431,Geoffrey Holmes +7356,José María Morales +85435,Gino Nichele +1364353,Shanoo Sharma +1439475,Sandrine Brauer +1547196,Sara Matarazzo +930018,Alex Hulsey +98753,Keith Palmer +57832,Daniel Lee +1383444,Charles W. Geiger +1869380,Dana Jurcic +1371389,Ray James +1298880,Jordan Sy +1367913,Sandhya Shardanand +1317089,Gero Giglio +1461997,Florian Perret +1312180,Jonathan Ward +1777439,Jennifer Semler +1534511,Kim Bong-joo +1582590,Steven Jos Phan +57323,Piet De Rycker +1885851,Hill Vinot +568034,Junichi Taniguchi +1393421,Bob Dennett +103474,Emmett Alston +129231,Adam Sanderson +549130,Akiba Golburt +1460658,Erica Jean Yeager +1733922,Danny Duke +143663,Vladimir Khotinenko +1408774,Alva George +1380196,Andrew Walton +1401155,Monika Petrillo +1402524,Nancy Clark +1809365,Madelaine Jereczek +70704,Ivy Ho +1118135,E. Rico Nance +999607,Frank Kelling +54350,Martin Cruz Smith +33392,Pia Di Ciaula +1336608,P. C. Sriram +1347736,Rachel Nemec +1409694,Daniel Carpentier +1572869,Nick Colangelo +1378223,Isaia Robins +14644,Walter Van Tilburg Clark +1621155,Gabriel Liste +1143762,Astrid Strøm Astrup +1757645,Karen Romero +1075756,Denis Brusseaux +1609871,Raine Rafter +73193,Shinichi Natori +1458192,Sean Blackie +100909,Faruk Alatan +1288697,Carlos Marques-Marcet +1780180,Kerstin Feldmann +1640641,Octav Chelaru +1321929,Spencer Plamondon +1423727,Antoun Sehnaoui +98398,Carlos Ferro +26376,Franz Rath +1844145,Magamet Bachaev +1733216,Debora Lilavois +1601466,Aris Hatzopoulos +1404160,Connie Kingrey +1609366,Michael Levine +1884747,Lluna Juvé +1351240,Daniel S. Kaminsky +575724,André van Duren +1695213,Candace Corey +1174526,Hasraf Dulull +1414093,Luke O'Connell +1239636,Wayne Downer +1621111,Jo Sang-gyeong +1355434,Giovanni Raffaldi +58021,Tinto Brass +289518,Jacques Sigurd +1340080,Jeremie Bowles +62854,Akiva Schaffer +1560949,John Matthams +1391689,Tony Lazarowich +76985,Eric Matthies +928831,Patrick Kirwan +396903,Peter West +1763415,Chetan Deolekar +1460295,Jenny Golden +4895,Tonino Benacquista +1130042,Vanio Amici +61843,Pinar Toprak +1131840,Phyllis Laing +179488,John T. Kelley +1386762,Soledad López +1555842,Carl Akeley +1745160,Hal Shiffman +62365,Katie Ford +1338482,Chris Diebold +1780127,Natalie Clayton +1621484,Simon Jones +108249,Peter Orton +117049,Bob Sweeney +1060535,Walt Kelly +1090302,Julie Snyder +35497,Lewis J. Rachmil +1581567,William Maria Rain +1660722,Jared Krichevsky +1548091,Caroline Fraissinet +1501791,Fabrizio D'Arpino +1302086,Jeff Crocker +1570586,Valérie Bélègou +102112,Hervé Piccini +1084756,Nazgol Goshtasbpour +63049,Jay Gruska +40508,James Cox +1549438,Debbi Nikkel +202357,Rollo Gamble +1038367,Zach Passero +1397322,Patrick Baker +136911,Alfred Sole +1746430,Theo Thomas +438553,Igor Nola +41113,Wanda Zeman +139748,John Serge +1763652,Ayat Malek Kiankhooy +1571516,Sharla Cipicchio +1372084,David Scott Gagnon +1174063,Archie Borders +1483836,Roopesh Gujar +73690,Franco Amurri +1200487,Olivia Miles +1563391,Violetta Kolesnikova +1022795,David Nahmod +1223968,Frederick King Keller +1688240,Filo Q +555752,Don Williams +1439176,Santiago Sánchez +543844,Angeline Massoni +1301987,Siniša Leopold +143463,Dave Fleischer +1467912,Colin Frizzell +1103543,Jonathan Jaeger +1627173,John Dennis +229810,Gianna Sparacino +4475,Valdís Óskarsdóttir +1387328,David N. Gottlieb +110059,Teruyoshi Uchimura +1365382,Cristiana Mainardi +1084753,Jerry M. Jacob +1327572,Melissa Lyon +1571050,Patrick M. Wood +111232,Daisuke Iga +1746441,Leonardo Bianchi +232013,Norman Priggen +8749,Gingger Shankar +1029109,Francesco Pamphili +1555741,Suzanne Field +1644260,Vincent Liebig +1097989,Damian O'Donnell +1660719,Lluis Casals Marsol +132742,Robert McKimson +1009382,Frederik Valentin Bjerre-Poulsen +931898,Aleksandr Baranov +236558,Michele Galdieri +1583226,Lindsay Thorne +1613774,Fernando Carrión +161589,Peter Wise +1045273,Jamie Pickup +1558716,Joseph Payo +69124,Abby Kohn +1840324,Rishi Kaul +1356566,Gino Peguri +1755722,Mathieu Blanchys +1324073,Marius Henry +1819561,Rodrigo Trejo Villanueva +1135340,Ong-Art Singlumpong +33800,Juan Gelpí +1420311,Shandra Page +1106694,Amy Baer +43425,Jim Flynn +138176,Kenneth Grahame +1266722,Tien-yu Fu +1472148,Mitchell Travers +742142,Tjebbo Penning +142430,Semyon Lungin +128137,Magnus Beite +1084969,Howard Newstate +1197369,Marisa Andalò +1596111,Igor Vdovin +37450,Jacques Lemare +994455,Robert Beaumont +1501812,Sara Petracca +1319033,Bodhaditya Banerjee +1184645,Ellie Wen +1238114,Millard Lampell +1293602,Park Jung-Min +1645424,Kelsi Ephraim +1592196,Ben Jacoby +128635,Joshua Cordes +1404094,Dominic Lewis +1354972,Lidia Puglia +77488,Saul Blinkoff +1721337,Josh Simmonds +1350850,Keri Dillard Ambrosino +1681647,Olivier Bombarda +1284180,Bjorn-Erik Aschim +1393401,Allison Bauserman +1323117,Neil Cervin +1330200,Michael Lanahan +1365071,Marie Savare +1657555,Brigitta Barkó +1673998,Yasuyuki Ishikawa +1369118,Eriko Komatsu +1814963,Marcy McKenzie +1550780,Jonathan Borland +549340,Ray Harman +1458959,Antonio Sarno +54131,Andrés Santana +1655894,Dylan Melody +1652047,Breanna Watkins +18024,John Hay +1332517,Alexandra Maringer +1594189,Eloise Anson +1553453,Ricarda Merten-Eicher +1387267,Kiran Kaur Saini +1518774,Vanessa Younger +1046027,Pierre Pinaud +1058836,Julie Dupré +58573,Nicole Kassell +1368882,Tricia Yoo +1081497,Shin Tae-Ra +1367480,Noah Bradley +1170536,Tabitha Quitman +119437,Chuan Chen +1102067,Gareth Smith +101238,Michael Reeves +1409719,Erik Kaufmann +1727615,Mathieu Le Bothlan +24636,Katsuhito Akiyama +565269,Jessica Wu +1323081,Pam Bouvier +1721338,Eva Peschkes +144782,Arnaud Larrieu +1322448,Marie Blom +1581565,Alex Perrault +1410206,Charlotte Wright +34876,Rebecca van Unen +1568116,Sheara Abrahams +1193427,Íñigo Guerrero +1052262,Brad Rosenberger +59423,Ramsey Nickell +34191,Barry Markowitz +1448353,Al Hardiman +1089059,Ricardo Remias +1423001,Mike Repeta +1262421,Dorothy Mackaye +1873043,Stuart Bohart +1437712,Kunal Rasal +1183405,Namche Okon +105712,Brian Hayles +1583210,Diana Redmond +83918,Irving Lerner +1638688,Giorgos Ziakas +1754608,Kimberly Garrett +1719412,Candace Rice +1553691,Persefoni Miliou +1279579,Anthony Overman +533023,Paul G. Allen +1873050,Mathé Pontanier +1719414,Annabel Mehran +1357551,Liz Flahive +1447904,Anthony Piazza +1635284,Carri Gibbs +1201063,Explosions in the Sky +1903933,Elzbieta Trosinska +980124,Eduard Cortés +98680,Jeff Leroy +431491,Doug Hall +1451788,Yoshiaki Noguchi +1547702,Jonathan Ow +943189,Gordon Grinberg +54417,Dana Brunetti +1689779,Marco Sgorbati +1132845,Kanisorn Phuangjin +1021396,Anthony M. Lanza +1621807,Lucas Roveda +1199826,Christopher Lemole +549353,Sylvain Estibal +1031754,Marvin Watkins +1640647,Kevin Costello +1590437,Draško Pejanović +77493,Richard Sears +1456624,Sachiko Sugino +1355352,James Dugan +98293,Jamieson Stern +1547496,Seiichi Numagami +40483,Nicole von Graevenitz +1657549,Scott Schaffer +549129,Александр Беляев +130311,Paul Middleditch +1304618,Derek Sullivan +1043023,Jack Yellen +931640,Ash Pamani +1113298,David Barker +1579517,Neal Gibbs +1509591,Farnaz Khaki-Sadigh +1266307,Emily Ng Little +1453960,Lexie Busby +1381934,Jill Carter +84442,Dave Freeman +74532,Kerry Rock +1497088,Mark Carroll +429201,Bernarda Pagés +1579380,Jeannie Hammelman +1309323,Kiowa K. Winans +1438448,Nata More +1123492,Jay Morton +1020013,Derek Connolly +57069,Grégoire Hetzel +1315179,Osamu Hosokawa +1616024,Colin Lévêque +71600,Seth Gordon +550959,Yin-leung Ma +1207969,Dominik Rausch +38669,Darren Lew +1598862,Iwao Akune +1726807,Youhei Teitei +38693,Patrick J. Clifton +231296,Nick Mead +1378149,Andrew Donoho +1148835,Prasad Murella +1531098,Jo Bollinger +1372096,Ralph Volpe +1691486,Mel Perdikis +1086441,Kaori Nakayama +1619485,Kimberly Asa +1439527,Jonathan Morgan +1659949,Amelia Granger +80822,Richard Kitting +50630,Leo Pescarolo +1586588,Gergõ Gazsy +126597,Stéphane Aubier +1580124,Anke Blondé +1448869,Jason Aud +1459736,Travis Tohill +1151864,Jillian Schlesinger +1106192,James Crow +1396803,Petar Minov +30760,Malcolm Williamson +1343949,Eyas Salman +1452956,Thom Williams +66936,Julia von Heinz +239307,Alessandro Grossi +1041613,Skady Lis +1169492,Franck Mathieu +1379053,Martin Taylor +568267,Klaus Menzel +965915,Hybrid +1214349,Douglas Sloan +1651530,Thomas Sweterlitsch +1206424,Hunter G. Williams +1338150,Charles German +1387256,Tiffany Busche +1451566,Ioannis Tzakiridis +1172607,Jacques Rémy +61442,Seth Casriel +1194539,Fabio Vitale +1877777,Esmond Ren +1597059,Valentin Vulkov +1569289,Phil Harnded +931400,Tonino Zangardi +1395395,Saulo Aride +11919,Thomas Engel +1805349,Christine Galvan +1528723,Aarne Tapola +1691512,Scott Weilbaeher +1367510,Lauri Mills +71105,Claude Desailly +1455539,Miles Southan +1193498,Ferdinand Lapuz +1621095,Mathieu Z'Graggen +81222,Candy Leung +1583174,Jennifer Schossow +1705425,Angel Diesta +1644997,Eva Ivarsson +1548536,Samantha Shear +1792300,Simon Rowles +1780193,Sören Lang +1332205,Haukur Karlsson +1325121,Roger J. Weinberg +1161602,Keefus Ciancia +992842,Robert Taicher +1298875,Danny Tannenbaum +1619742,Lil-Cliffton Daniels +1202963,Aleksandr Volodin +583926,Frieder Schlaich +9935,Michael Fengler +1802995,Michael Marcus +1762269,Zane Knisely +1653765,Lyndon Ruddy +1066767,William Rexer +1460024,Brian Ronalds +1570608,Marcelo Padovani +33247,Dale Van Every +1464044,Bruno Rocca +1592938,Ada Gourbali +1426339,Rachael Webb-Crozier +1301957,Hjálmar Helgi Ragnarsson +1560219,Linda Rogers-Ambury +1438455,Francesco Mongiovi +1699959,Mauro Bovi +134865,Rafael Sabatini +1217213,Aaron Blitzstein +1866325,Georgina Lovering +1546194,Brian Ufberg +1738147,Donna Casey-Aira +29294,Lawrence Shragge +1117904,Viktor Makarov +1143773,Lars Apneseth +1094762,Antonio Riestra +1362712,Yara Jerónimo +1428869,Tracy Phillpot +1115038,Hideo Mohara +1473417,Ellen Hoffmann +1650274,John Skehill +237285,Leonid Kvinikhidze +1179821,Edna Luise Biesold +1544336,Maya Amsellem +96342,David A. Goodman +951553,Albert Ivanov +1281424,Jonathan Duffy +575456,Bora Gökşingöl +1425585,Muriel Bell +1069078,Russell Barnes +1733871,Bart Brevé +1363004,Halina Sienska +1797511,Ralph Bass +1642100,Carlos León +108758,Daniel Short +569313,Eeshwar Nivas +1073190,Gerald Vaughan-Hughes +120232,Yuri Korotkov +1657559,Cameron FitzMaurice +1428868,Karen Hannaford +566957,Alex Kotlowitz +1545282,Petter Fladeby +882944,Stephen Hamel +1841568,Robert Ko +1335569,Peter Oso Snell +544479,Josef Mach +1519337,Geordie Sabbagh +70302,David James Duncan +32739,Elizabeth Hayden +1763424,Parag Mehta +1341930,Hitoshi Iwaaki +1405249,Fiona Brady +1451274,Pablo Calvillo +1685936,Valerie Halman +1748599,Laura Gasa +1699373,Amanda Foote +1539442,Radmila Jaksic +143026,Yoshio Shirasaka +413089,Khasan Kydyraliyev +1512666,Pietu Korhonen +1411729,Suze Dunbar +1658876,Nikhil Deshmukh +1312175,Daniel M. San +67796,Erin Cressida Wilson +1396342,Dean Buscher +1451387,Kate McColgan +1641863,Daniel O'Connor +84064,F. Valentino Morales +1765662,Carlos Aldana +1134084,Tim Sidell +1463422,Michael Meinardus +1780477,L. Loren Newkirk +551587,Kyôko Heya +1313634,Nedo Azzini +1465953,Rachel Kennedy +13800,Cooky Ziesche +1426715,Matti Halonen +105121,Francisco Sánchez +85893,Ekta Kapoor +1478655,John Nguyen +1423980,Robert Nassau +1117107,Tim Munger +1046587,Adrián Cardona +1475733,Geoff Hounsell +574197,Ellen Ystehede +72477,Sergio Citti +69159,Robert H. Crandall +79281,Álvaro Alonso +1265087,Ron Collier +77288,Nico Soultanakis +1039264,Paul Bercovitch +1484514,Koreen Heaver +92435,Katie L. Fetting +1595479,Jason Patnode +1439810,Rajeevan +1542301,Misha Psuturi +1077373,Greg Nihon +296085,James Kirkwood +1710374,Johnny Kudluarok +1003253,David M. Brewer +1581409,Pija Lindenbaum +1616063,Andrea Cracknell +1292992,Mynette Louie +1475136,William Sullivan +1539850,Elizabeth Lodge +583704,Anthony Neilson +1153596,Joyce Geller +1479368,Kim Oomen +1415030,Christopher Dooly +1057076,Till Kleinert +1414936,Henry Langstraat +1547714,Lori Puryear +1740003,Elisa Bonora +1526518,Prashant Vichare +1484197,Tara Conley +1633349,David Kowalski +1168713,Charles Rodgers +1100078,Sam Sleiman +1414147,Andres Velasquez +1532260,James Gosling +1400840,Claudio Lullo +835262,Mads Matthiesen +1600784,Teuta Resuli +1487265,Anna Lavelle +1325204,Davide Luchetti +95462,Donald Cammell +1820518,Amy Cluxton +1407263,Kelli Marino +1473167,Tom Cairns +1559392,Daisuke Kadoya +1558721,James Brill +1372210,Justin Paul Warren +1024431,Millard Webb +1447563,Joe Giampapa +1818605,Carrie Puchkoff +1574855,Mike Kruper +1575338,Seiichi Daimo +21120,Miklos Wright +1496323,Ercin Sadikoglu +1691501,Michael Chochol +1294130,Nahyeong Kim +1412583,Peter Waffle +1155166,Georgia Simpson +552208,Sue Brooks +1622447,Drena Drenic +1352119,Satoshi Terauchi +36110,Claus-Rudolf Amler +1722496,Craig Sheppard +1155291,Ifan Adriansyah Ismail +1403416,Shonta T. McCray +1426846,Priyanka Balasubramanian +1324190,Amy McGrath +1641974,Philip W. Hack +1031973,Hiroshi Kawamata +1597021,Ana Manolova-Pipeva +1401197,Marius Ivascu +107629,Greg Pak +78343,Seiji Okuda +929053,Horacio Mentasti +1676192,Riccardo Goncalves +69775,Jonathan Scott +1466249,Rebecca Mason +1728937,Suhail A. Sikhtian +1636721,Megan Rumph +1339467,Kathy McHugh +1707965,Russell Cunningham +1339963,Zorinah Juan +1279521,Andrea Seigel +1034510,Ozzie Areu +1194953,John Byrne +1130876,Vlado Škafar +32920,Stanley Rodwell +39515,Jules Daly +119590,D.C. Pierson +1877722,Maria Belperio +78055,Jerry Rothwell +109124,Jennifer Devoldère +1317819,Satsuki Mitchell +135392,Frederick Kohner +1328144,Liba Daniels +1453517,Sarah de Gaudemar +74441,Jay Taylor +1018664,Steven Garcia +1874696,Rikke Simonsen +1456628,Hirômi Yamakawa +54110,Frank Kruse +1797465,Damien Ansell +1011158,Florent-Emilio Siri +1748534,Joey Gasiorek +1618804,Marie-Sophie Rodrigue +1402909,Emma Bortignon +1427869,Raoul Ploquin +139357,Jason Lew +58839,Peter M. Lenkov +1637928,Catherine Devaney +1570511,Jaime Feliu-Torres +1418624,Leon Prochnik +1903907,Fulvio Segianni +1092597,Don Swaynos +75963,Elisa Argenzio +1649690,Renganaath Ravee +141289,John 5 +1040543,Rory B. Quintos +1708564,Mars Rasca +1579535,Richard Lieberman +85844,Everett Greenbaum +56846,Giulio Pietromarchi +1371037,Colin Bates +112388,Matthew Campagna +1217046,Alan Perry +1518455,Shayne Fox +928345,David Trachtenberg +73021,Sue Baden-Powell +1479474,Erik Wünsch +1262634,Giona Ostinelli +5246,Reginald Rose +1354915,Muhannad Halawani +1555210,Todd Sheidenberger +1560950,Vondra Bancraft +1609167,Roy Boulter +1379047,Sonam Gray +234727,Charles L. Kimball +1302515,Darren Williams +1615696,Andreas Moosmüller +958088,Jorgen Klubien +125456,Eberhard Naumann +978121,Doreen Jones +29028,Adolphe d'Ennery +1691484,Chris Moten +1434676,Terron R. Parsons +1043435,Vulo Radev +224751,Khalid Mohammed +1748983,Umeit +1448304,Tims Johnson +1319740,Alison Butler +1362710,Nuno Mesquita +1790952,Chris 'Willie' Williams +1851887,Kent De Mond +545155,Harish Shankar +1302527,Kimberley Roper +5635,Walter Spencer +7288,Stéphane Brizé +1554130,Tarquin Glass +1374538,Tom Browne +1319356,Jack Lindauer +1231184,Jeff Judah +6731,Anthony Hines +1048394,Chase Rees +119639,Chen Kuo-Hsiung +27224,Gérard Simon +1324018,Christopher R. DeMuri +1598099,Richard Dewey +1269197,Chuck Pappas +1740779,Joshua Bourke +1596110,Marat Adelshin +1493524,Juan de Dios Garduño +223173,Umberto Marino +107658,Lev L. Spiro +1511742,Joshua Zucker-Pluda +1600238,Davor Omerza +148161,Milt Schaffer +1597023,Violeta Yovcheva +1531696,David Gilbery +1594641,Dan Bartolucci +1512783,Ronald Grauer +182908,Larry Sugar +1761891,Igor Honkanen +71301,Michael G. Wojciechowski +1367484,Russ Doyle +559175,Toniko Melo +111414,Charles Burmeister +1406291,Nathan Tape +1074308,Joe Lemmon +58124,Arthur Kempel +1443052,Vanessa De Sousa +1460857,Eva Gord +55151,Larry Lalonde +1215771,Nicholas Thomas +1604093,Tetsutarô Mutô +1444777,Lola Schnabel +1112003,Acácio de Almeida +222368,Kelly Armstrong +563736,Andrea von Foerster +228523,Vera Jennes +1412156,Daniel Keith +1596107,Konstantin Syngaevsky +109978,Ian Fitzgibbon +1740047,Caroline Blanchard +1458716,Isabel Siskin +108953,Brandon Auman +1537476,Stepka Li +127218,Takashi Hirano +155598,Leslie Libman +1831108,Jan Van Uchelen +1053823,Andrew Karr +20722,Olivier Bériot +1512383,Terry Lewis +1473842,Mireia Juárez +1360107,Ashley Beck +1564024,Ramona Klinikowski +1062347,Frederikke Aspöck +1195579,Philip Miller +1534355,Nora Kletter +1082638,Rikiya Mifune +1430467,Luca Saccuman +1447938,Kevin C. Lang +1423831,Jennifer Fulmer +1300938,Mike Brett +1275661,Cara Stewart +106652,Staffan Lindberg +570211,Janet Healey +548754,Rie Matsubara +1304600,Seunghyeop Lee +1457042,Christopher Lord +38585,Marino Girolami +1450364,Troylan B. Caro +1644259,Oliver Eikhoff +1402950,Gordon T. Wittmann +1265467,Norman D. Wells +1162662,Michael Haskins +69309,Lucía Puenzo +1445827,Quintessence Patterson +1376798,Lorenzo Mieli +1494824,Russell Edwards +1334458,David Cheesman +1612327,Keikaku Itou +222362,J.M. Davey +1460355,Gail Briant +1180063,Arthur Phillips +1412589,Jean-Pierre Riverin +138901,Peter Woodward +1311564,Antoinette Jadaone +1020078,John Ball +1618810,Alexandra Vaillancourt +134507,François Cognard +46434,Marcy Page +1634161,Tetsujirô Yamagami +1037970,Giovanna Marini +66698,Alena Rimbach +1125620,Geert Bert +1736882,Loeng Wong-Savun +434892,Mirko Galic +1605771,Fabrizio Campanelli +1714742,Isaac Díaz Araiza +1830924,William M. Bell +88740,Jerry Harvey +124735,Dwight V. Babcock +1865120,Jonathan Pencharz +1188915,Quito +1396503,Juan Luis Izaguirre +1190243,Buck Edwards +1174045,Simon Emanuel +1085522,Alice Wood +1755269,Gijs van der Lely +218637,Robert Crombie +530868,Steven Smith +1644271,José Manuel Weil +1321169,Melissa Wulfemeyer-Valenzuela +1603649,Namik Eken +68776,Ilene Kahn Power +1577967,Michael Wale +1361053,Nathalie Dennes +1897192,Salim Bensrhir +1757094,Natalia Vacs +1151386,Neus Ballús +1495242,Bill Teck +1468586,Christopher T. Saunders +1548406,Kim Honeyman +1559944,George Gordon Nogle +5593,Frank Barbian +1609041,Shannon Adelia Ryan +1367126,Steve Moon +999845,Florián Rey +1719410,Mike McGowan +1375925,Platinumfungi +1453931,Jonathan Macintosh +478644,Geralyn Pezanoski +1611208,Aleksander Bierzanek +1171287,Alfonso Santistevan +71065,Robert Ellis-Geiger +199993,Yves Lavandier +1182907,Aaron Haye +1340059,Sydney Pearson +1403807,Mike O'Donnell +40988,Gerhard Krüger +1565952,Jörg Möhring +947762,MICHAEL KAMSKY +1871117,Dale Bell +83069,Jamie Marshall +1868701,Jason Fearon +228403,Miska Seppä +1571494,Craig Young +1501535,Bernie Wrightson +1123354,Kadija Leclere +1907217,Jan Stoltz +176153,Ezekiel Norton +1424338,Felix Wiedemann +235883,Jens Urban +1148528,Jānis Nords +1387078,Scott Kimber +1609031,Victoria R. Manley +1705747,Enzo Favata +61549,Tripp Reed +583508,Wahid Chowhan +1475578,Adam Epstein +1877721,Phil Whitfield +1307661,Szilvia Ruzsev +1551762,Yoshirô Kawazu +93475,Michael Tuchner +132242,Mimmi Spång +1282120,S.J. Simon +587097,Rogelio A. González +1696502,Philip Roman +1440867,P. James Keitel +1821896,Nathan Fung +1190198,Cho Ging-Man +1531095,Amber Richards +1308812,Harvey Richelson +1478534,Stephen Shimek +590953,Lon Anthony +40465,Natali Barrey +1207137,Sylvie Trudelle +1573573,Jacek Turewicz +15026,James Armstrong +1315626,Cristiano Abud +1402535,Andy Sparaco +73105,Søren Hyldgaard +556150,Yves Simon +1582569,Roland Vajs +79242,Wesley Coller +1462005,Navin Pinto +50356,Alexander Vitt +1495523,Spencer Davison +983911,Louise Kiely +94562,James Colquhoun +1434952,Fabiola Ordoyo +1474970,George Camarda +1384516,Alex Rudzinski +40405,Bruno Felix +111849,Tessa Schram +1020053,Michael Corso +1432997,Viktor Trichkov +1447438,Constance Allen +1605636,Allan Stratton +49886,Freddy Waff +1780486,Fulvio Valsangiacomo +928005,Alexander Palm +1720806,Adam Heinis +1391606,Marvel Wakefield +145675,Alain Gagnol +1687676,Jonathan Axelrod +51784,Corky O'Hara +1174371,Diego Romero +1324814,Emma Gaffney +1542285,Michelle Paulsen +1340355,Willard Colee +221362,Erwin Keusch +34171,Richard Flournoy +78975,F.X. Vitolo +1037911,Murray Rosenthal +1121785,Michael LaHaie +1548078,Harry Zimmerman +1619735,Ranielle Gray +50542,Eugenio Martín +1420320,Melissa Kennelly +1148632,Lisa Son +1459721,Melissa Jimenez Ramirez +56664,Joe Neurauter +1177126,Beatrice Herminie +1797457,Saffron Cook +1120003,Alekos Sakellarios +1819153,Emilio Azcarraga Jean +1220978,George Markstein +1512852,Jason D. Keller +1579392,Peter Cordova +1411844,Eric Leach +1618543,Enrico Manera +1117786,Erik Benson +465135,Thierry Jonquet +41616,Segundo de Chomón +1183839,James A. Starr +1372080,Julia Barraclough +1429628,Anita Burger +1195752,Sergey Rokotov +1441756,Tine Rogoll +571194,Cécile Sellam +119198,Michael Laguens +109680,Mark Jean +132097,Leslie Gilliat +552394,Jack Wong Wai-Leung +95998,Brendan Faulkner +1009838,George Rizkallah +1619179,Itsuro Hirata +1865914,Kate Hazell +1802515,Chris Debenedetto +1780189,Laura Richter +1795855,Ben Benesh +67499,Alexander R. Stigler +1199160,Olivier Perez +135616,Iris Letans +19970,Kurt Voelker +227440,Henry Jackman +1805401,Sim Jeong-woon +1074635,Михаил Калатозишвили +1504640,Dawn DeKeyser +1093241,Irv Spector +1821929,Marie-Jeanne Orona +1611036,Tobias Norberg +1866983,Carlos Lopes +7880,Kori Rae +80660,Philip Martin +1415893,Steph Copeland +1195076,Gabriella Cirillo +1553480,Ceri Hughes +1402546,Budd Bird +93289,Abi Morgan +893462,Jerrold Tarog +1175958,Alessandro Palazzi +1586003,Hermes Gallippi +1317311,Heather Wallace +1713049,Lynne Duggins Weir +112739,Brian Cordray +138557,Kaare Andrews +1393857,D. Chris Smith +58194,Fred Raskin +1293645,Harrison Witt +1825671,Petr Richter +237402,Emilio Miraglia +1182809,Hamid Nematollah +1770991,John Moffatt +1527920,Joshua Zeigler +217470,Joe Rivera +1452470,André Debaecque +978336,Brendan Ferguson +1524231,Anthony Chiarantano +1169759,Eric Sherman +994254,Mika Kemmo +51710,Ramón Balcázar +15305,Rick King +1458445,Botond Aszalós +55077,Chris Hauty +67928,Lucio De Caro +1576220,Letia Clouston +236340,Claudio Hernandez +182174,Lal +1580843,Adam Bunz +1305415,Marc Lanjean +1596539,Salla Yli-Luopa +1447326,Jane Wu +592323,Richard C. Kahn +1068100,Artur Aristakisyan +1108168,Nawapol Thamrongrattanarit +584057,Xiaoliang Weng +1267020,Eduardo Enrique Mayén +16835,Paul Bernbaum +1161625,Cécile Coutelier +1295284,Martin Persson +961037,Richard Learoyd +589410,Jake Helgren +1816358,Dion Boothby +88489,Anatoli Grebnev +1530912,Buddy Longworth +1573037,Suzanna Boykin +1741060,Giovanni Di Simone +86134,Sam Rolfe +1458984,Katri Billard +1537675,Russell Scott +1821881,Jesse Michael Owen +225719,Mique Nelson +1721862,Kristen Drewski +1262524,Joost van de Wetering +1336896,Chuck Maldonado +1532755,Deborah Myles Davis +1394720,James Winnifrith +1610559,Pawel Flis +121072,Robert L. Joseph +1389972,David Rogue +1265625,Morgan Francis +1417215,Peter Kuplowsky +1367933,Barrett Farmer +45491,Ferd Sebastian +223247,Julian Slater +224788,Rasmus Breistein +1689677,Ben Heald +1538208,Colin Zaug +132560,Pierce Milestone +1821901,Michael Koepke +1825451,Melinda Ziyadat +1163117,Fredrik Heinig +1569288,Fred Muncey +1726765,Dante Ludovici +1321688,Sentarô Shirai +75107,Nicola Dove +1780160,Alexander Scherffig +31974,Walter Mayo +1345270,Toni Lalov +588028,MS Raju +1001759,Jeff Chumas +22106,Fredda Slavin +1447210,Robert Hughes +132240,Babak Najafi +1124066,João Figueiras +1154851,Yasuji Mori +1149939,Orlando Wood +11553,Albert Pinkovitch +1647028,Mike Teeples +1581196,Rob Speranza +118581,Federico Zampaglione +51314,Sidney Michaels +75679,Jaems Grant +1417171,James Walker +1179830,Tine Thomasen +1869360,Lesly Cazares +554178,Tai An-Ping Chiu +583175,Jeong Yong-ki +1810606,Cory R. Starr +1643803,Massimiliano Ricci +1173617,Pedro de Repide +1641984,Steve Sich +39259,Byeong-il Kim +232431,Sydney Banks +36515,Georges Dancigers +136123,David T. Chantler +1430078,David A.T. Bowman +1080413,Suzette Doctolero +1280313,Patricia Bowers +1025090,Jim Wilkey +1324042,Maura Anderson +1817924,Jianhong Qi +1383003,Lois Lowry +1871462,Vasiliy Grossman +60430,Jeremy Reed +97652,José Ramón Larraz +1622038,André Siekierski +1402723,Batou Chandler +148085,Saverio Costanzo +1519334,Michael Dobbin +239071,Gregory Colbert +1778310,Son Lux +1062013,Tetsuro Sayama +1425390,Louis Puli +1473814,Samuel W. Sullivan +1141808,Rosanne Korenberg +1406873,Josh Gold +1040545,Raymond Lee +1287617,Tony Notargiacomo +1424224,Gregory James Jenkins +1200787,Michael Macasero +1446636,Natalia Leite +1662163,Lajan Joseph +148267,Joan Barnett +1138214,Joe Landes +1815724,Alastair Don +1109795,Magic Johnson +1769930,Sivaprayag +1891556,George Bisk +1774730,Gunnar Heidar +1903908,Harlon Haveland +1390352,James Newell +1614607,Lee White +1866299,Mark van Kool +1180810,Riley Morton +1507146,Ryan Cooper +1659213,Al Munteanu +1266093,Boris Lehman +1824287,Isabel Baquero +929733,Lusa Silvestre +1771406,Jang Hang-jun +1460254,Stephen Ohl +1198735,Raoul Albert +68352,Carter Smith +155527,Simon Greenall +1186770,Frauke Finsterwalder +543875,Anton Sivers +1635203,Reece Fleetwood +1894631,Andrew O'Sullivan +1501818,Eva Palmisani +1544559,Prawaal Raman +1200606,Ali Ugur +1409486,Chelsea Winstanley +1376961,Jonathan Halperin +1763649,Paulette Sladinski +1121956,Sebastian Fitzek +1611205,Joanna Dzwonnik +1446554,Jon Shroyer +929486,Marcelo Starobinas +71094,Michael F. Anderson +1692902,Ibrahim Maalouf +1792033,Katja Jerabek +1581509,Wayne Trickett +1377010,Eugene Tevlin +1015790,Norman Glick +1337585,Gopal Reddy S. +1726771,Greg Borkman +1155557,Naoyuki Sakai +552594,Shigeo Sugimura +1425332,Gayle Munro +1404192,May Satsuki Asai +24582,Gerald Rafshoon +1408356,David Richert +1646536,Meggie Cabral +1322010,Dave Quinlan +1097219,Luke Rocheleau +1345583,Brent Astrope +1408363,Emma McCleave +975143,Joseph White +26151,Louise de Vilmorin +104130,Paco Lucio +1088577,Jenni Olson +1084769,Michael Lindberg +1479534,Laurent Rossi +1200534,Sarah Spillane +572234,Jeanne Waltz +1676803,Christopher J. Rosario +162467,John Thompson +1019303,Duke Johnson +1707853,Steffen Gerdes +20599,John Van Druten +113615,Sonja Shillito +1040895,Sergei Bespalov +1141883,R.D. Braunstein +1448292,Andrew Eckblad +1434859,Dan Taylor +1766558,Sabina Pariante +1535446,Bernard Green +1322843,Allen Guilford +1280037,Kate Barker-Froyland +970129,Norm Li +1859993,Charles W. Kaeo +1174421,Aarif Sheikh +1325868,Chrissy Feld +136280,William Reeve +118315,Joseph H. Nadel +6338,Imor Hermann +1522988,John Fox +1363678,Pam Bosworth +1583077,Marsha Horiuchi Barton +1752048,Josh Spooner +1654425,Larry Nielsen +1312977,Vincent Laforet +34342,L. William O'Connell +1699378,Jean Bot +42041,Gastone Carsetti +1075465,Daniel Vance +1404863,Tom Barrow +1519329,Ryan Reed +1071180,Howard Irving Young +1495869,Ganesh Vitekar +1642557,Jonathan Webber +1208829,Minori Kuraoka Moors +1565650,Cécile Bouquet +81856,Nicholas Jarecki +1326651,Elena Albanese +1270003,Briana Hartman +1797473,Sheena Patel +100402,Mino Loy +1060540,Mitsuo Hashimoto +1650275,Neal Skillen +1864629,Stefan Rycken +1030401,John Kerr +1315182,Shinichiro Eto +1648279,Marcel Sławiński +1657569,Darren Chase +1204029,Ron Senkowski +1392208,Greg Hobden +1840309,Ernie Rinard +1130039,Gianmaria Messeri +1575342,Katie Galliher +1441128,Lance Ong +506934,Martin Prinz +129894,Gareth Edwards +1372085,Scott Getzinger +73944,Nate Monaster +1459226,Hristo Idakiev +82587,Steve Harvey +1454140,Tapio Liukkonen +1177107,Emmanuelle Duplay +1418442,Andreas Borrel +1652035,Chris Garbasauskas +1186278,Nathan Whitehead +1486801,Shane Robert +1698808,Agata Drozdowska +1001699,Terry McCann +1682632,Mario Amari +1703137,Patrick Patzschke +1185621,Fil Braz +1507498,Andreas Prodromou +120327,Maurice Duke +1118557,Ben Richardson +1235035,Wendy Engelberg +89151,Sudeep Chatterjee +1766561,Massimo Pisa +6243,Anton Profes +1307851,Kenneth B. Clarke +85475,Steven Goldmann +1595813,Liisi Roht +1665919,David Lipschits +1790929,Claire Watson +1905102,Martijn van Kalleveen +1877783,Ivan Lam +1100134,Geronimo Mercado +1726770,Andrea Atwater +95318,Endre Bohem +1489230,Chiva Rodriguez +1532527,Gabrielle Miles +11962,Luis Alcoriza +1459751,Dave Mah +555097,Yoshimitsu Ohashi +1580828,Marc Aubin +1382445,Jason Ludman +1425376,Nicholas Dare +44591,John F. Link Sr. +1019426,Robert Sterne +1329480,Peter Bodnarus +1815013,Stefanie Dworkin +1030363,Rick Rowley +49669,Réka Lemhényi +35167,Linda Allen +1202357,Anthony Tran +1468340,Victoria Burkhart +1439846,Isaac Vila +1403397,Randall S. Coe +227239,Cristiano Bortone +571463,Marek Hart +1366257,Miku Ooshima +1384916,Harel Goldstein +1849148,Virgile Reboul +1040520,John Chuldenko +74796,Daniel R. Jordan +1905668,Alex Finlayson +927995,Marcus B. Brodersen +1420573,Frédéric Chamberland +145211,Ramona Barckert +1405251,Peter Trenkwalder +1004951,Clyde E. Elliott +1363847,Matthieu Dallaporta +1263803,Nikki Mahieu +1598732,Simon Dixon +1340741,Justin W. Walker +967523,Riva Marker +1191308,Josh Hakian +1766527,Horacio Calvillo +1849134,Elodie Martin +564111,Miles Hankins +1460852,Josanne B. Lovick +1715747,David Lipton +97942,Jonathan Teplitzky +1434453,Satya Srinivas +45871,Martina Hug +1578873,Kallis Shamaris +1289040,Helene Turner +1496223,Michael Paesano +1636667,Luke McDonald +1420326,Daniel C. McFadden +1034189,Nicole O'Donohue +122513,Katsuyoshi Nakatsuru +1308530,Amparo Baeza +1499905,Laurie Drew +1150130,Leanne Saunders +1058761,Aaron Wickenden +1814961,Ani Williams +88040,Jason Bourque +239791,ChangGil Shin +1749905,Jules Carideo +1095722,Giovanna Soria +42368,Paul Hertzberg +562939,Lourens Blok +43654,Chikahiro Ando +1138277,Tim Blake +3823,Katrina Bayonas +87149,Bill Motz +1821920,Matt Landsman +221436,Michael Wogh +1001263,Laurent Lavolé +1391758,Eddie Gamarra +1452557,Junhoi Kim +1022761,Olive Cooper +33393,Lorna Marie Mugan +130069,David Reed +21230,Luciano Martino +929055,Antoni Solé +1454510,Stan Fiferman +116531,Travis Betz +1037695,Katsuhiko Manabe +6868,Kevin Burns +1447016,Christine Miller +43698,Jörg Himstedt +1183644,Mark Schwartzbard +93633,Nick Pappas +146922,Ilya Maksimov +1087017,Roger Pulvers +1389529,Robert Elkins +108079,Avery Crounse +116929,Chris Angel +1127089,Luigi De Santis +114480,Michael Wearing +1286576,Helena Bowen +1205467,MJ Dixon +1340102,Roger Nall +39514,Ron Hansen +56877,Per Holst +1400503,Donald Russell +1272156,Jack Drewe +1340752,Stephanie Arble +1266483,Jim Benson +1170386,Matthew Read +1462979,Sebastian Bear-McClard +1493100,Victor Moyers +1581512,Linda Callow +1772142,Ilya Suslov +1203909,Nathan West +1398145,Dylan Pettengill +1180758,Mario Janelle +65322,Peter Riethof +118171,Rumle Hammerich +1650734,Simon Mercier +1851916,Lisa Reisman +1423427,Lubomir Misak +529556,Heloísa Passos +1824228,Chloe Meddings +1051397,Jim Spencer +1431044,Keith Power +1519841,Robbie Morrison +1030311,Nikolai Kulikov +1730726,Dawn Landes +1108728,Richard J. Lucas +1569287,Tony Matteo +1537411,Kiyoko Shibuya +1784766,Cory Pratt +1402996,Tom Collier +1462499,Hanae Mori +1713051,Étienne Geoffrion +1319943,Miranda Howard-Williams +1631414,Michael Halley +1579540,Paden James +1871280,Daniel A. Parker +1516200,Caroline Wright +27002,Wojciech Has +1585741,Colin Ware +1423730,Gabriella Ausonio +21603,Alfred Roome +49213,Karl Hasselmann +1556841,Gulnara Abikeyeva +77147,John Erick Dowdle +1623937,Chris Kellett +535622,Janis Ian +1348540,Bernard Browne +1102047,Scott Hyman +1113479,Douglas C. Merrifield +1761888,Matti Leminen +1731914,Michael Latham +1570579,Roxane Leroux +1631404,Serena Fiumi +558367,Andy Hodgson +22582,Helga Krause +1433656,Meghan Kasperlik +117405,John A. Kuri +1505125,Patricia Valeix +130758,Andrew Monument +1035385,John Hubley +582810,Diane Phelps +1368608,Germán Tejeira +1440447,Renaud Chélélékian +1355536,Yulia Akerholt +81699,George Flynn +64768,Luc Bossi +1285355,Mungu Jeong +1303846,Roni Spitzer +1375268,War +1037667,Leonid Trauberg +464232,Jun'ichi Yamamoto +1551899,Sam Girdler +1688194,Alberto Moriani +1466252,Matthew Dawson +583479,Aaron Moorhead +88106,Elana Krausz +1448117,Vanessa Ramos +1417868,Carly Hugo +1195199,"John Romita, Sr." +1465995,Christian Mallia +1445825,Tracey L. Miller-Smith +25506,Edzard Onneken +519898,Ali Khamrayev +142013,Gareth Evans +1432615,Lara Ramirez +1574483,Sophie Brown +1170637,Maximiliano Angelieri +1486660,Paul Andresen +1207953,Shoujirou Nishimi +1458133,Steve Brooke Smith +145221,Joe Menendez +932316,Milagros Mumenthaler +240774,Hiroaki Ando +1689237,Armen V. Kevorkian +1394668,Fletcher Chancey +1407254,Tony Solis +38517,Roger Frappier +1643270,György Dragomán +1904057,Jack Jacquine +56921,Hana Müllner +19837,Sijie Dai +1573321,Ryan Patrick Dean +115756,Shirley Pierce +1825473,300ml +1431515,Linda Musson +1503680,Liza Bracey +1013089,Krish (Radhakrishna Jagarlamudi) +79970,Yngve Sæther +108821,Hubert Clifford +1718785,Dan Cohen +1087475,Suzanne L. Berger +1547669,Caitlin Murphy Miles +1529727,Matasaburo Okuno +550669,Andrew Rossi +1608351,Romke Faber +1419278,Janne Røhmen +1334588,Daniele Trani +119324,Adrian Brunel +1327643,Kerem Sanga +1797474,Kevin Daly +1291345,W. William Winokur +1010870,Diana Barrett +1691487,Jon Pleager +1591875,Christopher Bedford +1419637,Brandon Sumner +1570594,Dave David +128399,Nic Young +1825672,Bart de Haan +19657,Carsten H.W. Lorenz +1480225,Benjamin Ree +1519432,Alex Levy +1578518,Yasmina Khadra +1427398,Jacek Drosio +1606291,Franco Schioppa +1537109,Claudia Yarmy +1392206,George Chignell +1668656,A Babu +1612370,Josean Rivera +1372207,Leslie Bloome +560234,György Schwajda +933117,Kenneth Armstrong +90574,Ishai Setton +1812912,Mateo Guzmán +1482216,Lionel Shriver +1621492,John Dale +1155548,Michael Einziger +1763890,Justus Verkerk +1766006,Julie Rea +1317091,Luca Grivet Brancot +54491,Barbara Darragh +1772858,Leslie Dumbleton +118298,Dave Koehler +559500,Alejandro Fernández Almendras +1440272,Brett Carroll +1542370,Stefan Peters +56992,Mark Gläser +1789304,Angela Marinis +1896721,Joel Hurley +42467,Tamás Hutlassa +962431,Damien Drew +1231957,Kyle Fields +1523331,Audrey Lorea +1401141,Arvind Chaurasiya +1409883,Kristie Lutz +30826,Lucio Bompani +928487,Mirko Reinhard +74010,Herbert Rimbach +27919,Jesse Lasky Jr. +1667923,Lee Novak +1852938,Bonnie Benjamin-Phariss +39206,Charles Spaak +130832,Billy Jett +1849139,Nathalie Delorme +223534,Dennis Chan +1483137,Christina Graham +1547472,Kazuo Ôta +1406192,Jules Heath +237666,Jacques Rozier +33026,Harold S. Bucquet +151772,Kenneth Higgins +1173170,Kelsey Wood +1555338,Joann Desare +1531416,Harvey Crossland +60712,Bill Roe +186511,Paul Tassie +708,Martin Todsharow +70935,Pierre Montazel +64486,Jiaqiang Wu +929979,Chris Latham +1646476,Milan Popelka +1123790,Anni Faurbye Fernandez +238433,Andrzej Munk +1464074,Beckie Harvey +1512761,Sarah Bergeest Still +937611,Carl M. Lundh +1338241,Sean McGrath +130708,Marty Weiss +1338756,Fred B. Phillips +1179333,Fernando Szew +1646384,Jamie Redwood +1606284,Massimiliano Sano +253066,Edward H. Griffith +1598613,J. Oskura Nájera +1630073,Francesca Buffarello +1308456,Len Hawkes +224512,Dan Mintz +1700654,Fabrizio Carafa +1437799,Emma De Swaef +19963,Robert Goldstein +1387454,Olivier Alary +1611800,Rod Birleson +1262724,Amy Hardie +1212412,Larry Shaw +1085270,Adam Beckman +1223306,Gabriel Ripstein +1824980,Ligang Feng +1460489,Jessie Erikson +572054,Niklas Ejve +575792,Edoardo Falcone +1545913,Rachid Aadassi +144195,Christoffer Boe +1176983,Александр Шевцов +1095038,Peter Himmelman +1277529,Katie Weiss +153292,Tom Palmer +1363077,Eve Swannell +463060,Tim Jackson +1829878,Tim Perkins +20483,John Pearson-Denning +1033144,Jos ten Klooster +153933,Vikram Chatwal +1260147,Joseph Robinson +98541,Michael Hoffman Jr. +1361609,Kevin Faber +64205,Alexandre Arcady +1824249,Theo Morton +1539307,Tsvetanka Anachkova +563671,Noboru Tsuburaya +1572172,Logan Kibens +1571980,Mike Kelt +1618227,Efrem Pruzhanskiy +1304296,Anna Piskoulian +1392945,John Pinella +1533100,Myra N. Foy +1091314,Ralph Block +1036754,Reginald Barker +1091343,Sarah Neufeld +1418516,Szabó Sándor +1578651,Raymond Kirk +123066,Karthi +1589029,Thomas Pujol +1827211,Barbara Greenwood +1790345,Katherine Soares +109172,Deepak Balraj Vij +138898,Lesley Crawford +1759298,Johnny Mederios +45647,Marjie Abrahams +68132,Malcolm Marmorstein +1658869,Saba Mazloum +1080951,Lasse Westfelt +120478,Akiv Ali +30942,William A. Levey +1729087,Brian Fry +928272,Rich Delia +1192854,Nima Fakhrara +1414103,Ian Hutchinson +21255,Alan M. Trow +1199959,Michael J. Walsh +1284531,Vadim Korostylyov +1468946,Robyn Boardman +1376952,Pratik Munj +1272590,Olivia Mears +1282339,Roberto Cossa +38072,Yves Allégret +1412504,Anna Knochenhauer +1079109,Amanda Brody +1535122,Shane Dixon +1761904,Leena Palmu +1447896,Anita Guastella +1706501,Elana Barry +1797239,Veronique Messier Lauzon +117733,Henry Schrage +231751,Aubrey Lam Oi-Wah +45832,Vance Owen +269450,Ben Brazier +1448761,Sandra Fleischer +1704307,Denis Surov +43973,Richard Shores +266920,Peter Chernin +111943,Jeff Filgo +1399473,George Peters +1590939,Takashi Ohmori +1403426,Yolanda Mercadel +5427,Alain Rocca +1042650,Trish Soodik +962756,Tatiana Hernández +1311627,Brian Kavanagh +1413536,Sheila Callaghan +1442973,Jered Sorkin +66594,Andrew Fierberg +1619919,William Gallo II +150531,Brian Flanagan +931027,Gabriele M. Walther +1179772,Darko Herič +1201665,Emmanuelle Jacob +111942,Jackie Filgo +32318,Roland Girard +1204186,Patrick Tarr +99437,Franco Prosperi +1641658,Kenneth Neil Moore +1174460,Don Yu Dong +1181410,Kevin Riddle +1417820,Nick Dacey +1630286,Charles Knippen +1450098,Sigurbjörn Búi Baldvinsson +108447,Bradford Thomason +1838599,Andrew Malcolm +1838497,Christophe Bichot +1408174,Gage Hubbard +1300159,Jennifer Haffenden +1509629,Gabriel Foster Prior +150511,Telmo Churro +1513371,Silveira Sampaio +1465044,Travis Collins +1594987,James B. Crawford +1447687,Roberto Recchioni +1849868,Jean-Frédéric Messier +1412976,John Bankson +1652046,Roger Roscoe +48303,Mike Eschmann +1408722,Dan Garde +1412149,Jørn Ryen +1496226,Elizabeth Stillwell +49972,Keith Thompson +4170,Mitchell Cannold +1310930,Bob Buck +1314170,Rhonda Fisekci +27450,David Serrano +1386912,Mohen Leo +63772,Rolfe Kanefsky +1367435,Luis Tinoco +1509396,Tom Prate +1497016,Kouji Yamamoto +1654513,Emma Dockery +1367891,Giacomo Dell'Orso +118675,Guillaume de Seille +1490059,Farhad Tohidi +1277931,Anthony Wong Wing-Fai +1608742,Marcel Sommerer +1081835,Pontus Klänge +1367057,Ryan S. Black +131664,Wayne Blair +1403405,Matt Siner +1146400,Yûko Aoki +1462949,Shigeyuki Yamamori +1216761,Craig W. Van Sickle +1833111,Violeta Piperevska +53854,Matthias Bolliger +1459421,Peter A.T. McQuillan +931404,Joan Valent +1306059,Yuri Pakhomov +2998,Willy Hameister +56376,Annemarie Jacir +1703133,Alexander Schumann +1755115,Nikki Ruck +1709468,Gerard McMurray +93382,Johan Kling +85809,Shane Van Dyke +1282825,Charles W. Chesnutt +1090613,Greg Carson +23544,Sabrina Plisco +1693551,Takao Imaizumi +116190,Leonardo Favio +557677,Alex Booy +1436122,James Moran +1635298,Thomas Van Schaick +113530,Damjan Kozole +1903142,Valentin Rodriguez +957551,Keith Sayer +1705680,Meredith Lee +1732767,Hüsamettin Üren +45038,Solomon Weingarten +22317,Simon Michaël +1409292,Tahira Herold +8817,Joseph Carl Breil +968992,Devin Maurer +63972,Jules O'Loughlin +51589,Fernando Argüelles +114464,Javier Ruiz Caldera +1327596,Lucinda Sill +998473,Strathford Hamilton +1802810,Matthew McLellan +1122452,Lachlan Milne +1676784,Liza Binkley +1626421,Pat Hay +1372086,Ann Marie Ryan +1031599,Serge Zeitoun +1608146,Eva-Jane Gaffney +144566,Bert Lewis +1443944,Thurston Edwards +1080286,Candace Lee +1616510,Emilio Guede hijo +554171,Ottavio Alessi +1679705,Ratimir Rakuljic +554994,Danielle Anezin +1075004,Nenad Cicin-Sain +1584370,Sergio Lara Jimenez +1618692,Ashraf Hamdi +1136353,Hung Hak +1774241,Becca Smith +386918,Avdotya Smirnova +1459852,Sian Miller +1511588,Michael Sledd +928332,Karen Yates +75555,Clayton Jauncey +1384387,Holger Voss +588883,Marcel Jean +986354,Nuno Malo +1391940,И. Кострина +72052,Marcello Montarsi +49560,Inge-Lise Langfeldt +1388532,Nick Szostakiwskyj +1456701,Kayla Franklin +1404683,Yana Gorskaya +1182834,Tim Prebble +96499,Aleksandr Rybin +1400071,Erin Oakley +1177544,Francis Whately +1404940,Daniel Reed +73150,Paul Wendkos +1551770,Paul Duff +113666,Billy Rosenberg +1638132,Xinqi He +1592935,Manousos Manousakis +550819,Yasunori Ide +90820,S.F. Brownrigg +1141683,Theodore Melfi +64232,Ermanno Di Febo-Orsini +1841576,Dan Bricker +538297,Robert Racki +1709128,Karla Muenze +36166,Ron Wisman +1378676,Kris Bergthorson +236543,Yuriy Kara +1194885,Dave Cory +138156,Lucien Moraweck +1448763,Malena Modéer +237066,Didier Le Pêcheur +1093440,Myriam Borsoutsky +1500501,Fraser Ash +81223,Cheung Hong-Tat +1103572,Jon Campfens +1179437,Cynthia Graves +1302549,Susanna Fogel +56134,Karel Svoboda +1665918,Frank Wisse +1414097,Demetri Jagger +1412014,Kevin Kaim +1179941,Olga Pelletier +1189768,Aymie Majerski +1100066,Randy Valdes +1082878,H.C. Hansen +217632,Maurice Hatton +1451411,Santos Mercero +1447542,Erik Classen +1120179,Herbert E. Mendelson +4908,Jennifer Dehghan +56993,Barbara Gies +18830,Rasmus Videbæk +1432556,Moises Lee +1447894,Mike Reisacher +138781,Robert Eggers +133210,Stuart Urban +53856,Ann-Kristin Demuth +56453,John Bonito +1448303,Steve Meyer +94063,Waldemar Krzystek +125939,Riki Okamura +1013938,Gulshan Rai +1608995,Nathan Blanco Fouraux +84697,E.L. Katz +1539308,Dimitar Ferdinandov +1206331,Lepo Sumera +144273,Federica Vincenti +1033142,Martijn van Broekhuizen +102383,Milan Todorović +1191230,Alison Snowden +1228383,Stephen Stohn +1105684,Warunyu Udomkanjananon +176856,Howard Baker +1754085,John Henri Coene +61295,Bonne Radford +1565845,Gullmaj Persson +48769,Elisabeth Schwärzer +24704,André Ruellan +1673678,Rick Rickertsen +1337651,David Danesi +1583630,Kyle Rikert +969859,Kim Bowen +1423423,Shamison Busuttil +1701617,Morgan Jenkins +932974,Pedro Furtado +227081,Paul Sinor +1293654,Benjamin Moses Smith +1840315,Will Digby +1693479,Emmanuel Béhier Migeon +233111,Walter DeLeon +1497530,Simon Ward +34388,Ralf Denker +1039503,Thomas Mignone +1873614,Pierre Baudry +1374787,Hedvig Kiraly +1641320,Gabriel Nussbaum +224610,Michael Madsen +120024,Paolo Guerra +1453933,Danny Southard +1606310,Benjamin Schubert +1435455,David Rush Morrison +1760559,Austin Harris +72240,Sian Evans +53858,Darko Krezic +1311747,Michele Davis-Gray +1667097,C.H. Balu +1534228,Eric D. Andersen +1715750,Don Shank +1061063,Roberto Bodegas +126996,Joseph Gluck +1388811,Mikhail Bogdanov +130572,Chan Chor-Keung +1579531,Rasa Acharya Partin +1640923,Donatella Palermo +1530234,Samantha Green +1397713,Mirren Gordon-Crozier +1387616,Samantha Sigler +1040919,Eddy Matalon +85706,Anand Raj Anand +1117100,William Harvey Wallace II +1590935,Yuichiro Sato +1661396,Gina Nalli +1049448,John Gengl +45460,Ken Dixon +1102404,Lucy Clements +99884,Lawrence Huntington +1433398,Corey Brown +1401128,Nikki Taylor +55905,Denson Baker +1095113,Paiboon Damrongchaitham +144298,Cliff Ruby +1609035,Ryan Castle +84876,Ho-Sung Pak +1144627,Limara Zjeksembajeva +1412170,Donald J. Sullivan +939583,Victor Gromov +1804530,Anuj Gurwara +1440662,Ken Cosentino +1548031,Nick Haanschoten +1117466,Young-jae Lee +94126,Lara Shapiro +128218,Alessandro Fabbri +150478,Apoorva Lakhia +1338374,Gregory H. Watkins +1396758,Andrey De Coligny +1168791,Dave Ohlson +1276771,Tobias Wiemann +1414940,Scott Maguire +789008,Rajan Kinagi +1651813,Wojciech Żogała +1480594,Van Robichaux +565382,Aloy Adlawan +1149914,Rachel Dainer-Best +1341365,Meghan Anderson +1548093,Laura Darner +1616451,Tracy Cutts +1817426,John Legere +1676433,Vikram Chandra +79286,Miguel Angel Rocca +1376628,Mani Martínez +1512771,Alexandre Fleurant +221860,Edward Thomas +972395,Chuck Hustmyre +1708055,Meena Shamaly +1245126,Cash Warren +1142729,Tom O'Loughlin +1816362,Alasdair Mott +1217199,June Galas +60584,Donald Munro +1264093,Stephen Lancellotti +1776619,Boris Kaplan +119430,Luigi Comencini +1013136,Amit Parmar +1616391,Lauren Mikus +163290,Arthur Kober +566315,John Bosher +1588199,John Wallo +1453934,Michael Bomagat +1465737,James McClain +1482843,Stephen Murphy +948321,Daniel Bigel +1405224,Alan Shearer +1102859,Re'Shaun Frear +1117184,Mazhar Kamran +1204006,Yvonne Cervantes +930642,Luke Passmore +938339,Paul McCulloch +1613555,Sandeep Francis +1394640,Katherine Rusch +553860,Ezio Altieri +1609045,Lucy Laliberte +65595,Timothy White +1665251,Chichi Nwoko +61468,Ingrid Broszat +1381803,Cody Ryder +1140285,Julio Chavezmontes +1302518,Frederico Jimenez +8103,Mark Nielsen +88800,Mohit Suri +90513,Yoshitaka Amano +228434,Tom Logan +1735080,Russ Faust +12186,Hisao Shirai +1352901,Pierre Deschamps +1817181,Magnus Flato +1871233,Timothy Cargiolo +1265622,James Lamont +1378148,Chris Bott +1200239,Tsutomu Minakami +1400841,Antonio Tirinelli +959688,Pax Wassermann +1500582,Alana Clohessy +144762,Frédéric Mermoud +1331362,Celina Norris +1392174,Anita Lee +103850,Jimmyo Burril +1033105,Kurt Meisenbach +137220,Angie Fielder +1459762,Anand Somasundaran +85675,Rajkumar Hirani +1479526,David Fourrage +590824,Greg Babor +1601455,Nestoras Pavelas +227954,Yoav Shamir +40200,Russell S. Hughes +1619915,Will Greenfield +98256,Edgar San Juan +1176570,Fred Freeman +1500286,Carl Sealove +586157,Karolina Szablewska +76410,Sukehiro Tomita +1614409,Mikhail Mestetskiy +1780198,Norbert Maass +68655,Harry Reeves +1646578,Peter Konig +1425394,Billy Browne +1428158,Xavier Seron +1693210,Taro Morishima +103979,Francisco Prósper +1480600,Marc Novak +1151225,Karen Fabritius Gram +1292999,Daniel R. Kersting +3559,Robert Benmussa +1399616,Norman Noplock +1417913,María Fernanda Sabogal +1584376,Jeff Trzepkowski +1683032,Camila Medina +1732089,Rukey Styles +1519113,Francis Glenday +936213,Ralph Somerville +219783,David Gregory +1570529,Stosh Tuszynski +116196,Jorge Zuhair Jury +1815526,Danny Pelfrey +1867528,Dan Clerg +236005,Sergei Bobrov +53093,Leon Edery +1393445,Tim LeDoux +1300066,Rosa Dias +1185185,Hiroaki Saito +1688243,Elisabetta Bertellini +1797212,Adrian Hebron +1681821,Katsuhiko Isami +570212,Audrey Geisel +993748,Zachary Treitz +115467,Jean Genet +1561592,Julius Ševčík +589094,Claudia Castello +56370,Ruben Östlund +1824998,Ruihai Lan +1301379,Jack Harry +1328148,Donna M. Belajac +1328381,Shohei Kotaki +137973,Nigel Balchin +1155652,Tom Hoffie +1642500,Christiane Rittner +1507955,Luca Benedetti +998584,Jonathan del Val +1500923,Aviv Giladi +1895005,David Powell +1389777,Debbie Andrews +1341737,Jussi Honka +1286519,Mark Raso +985636,Paul Barkin +62276,Michele Lipkin +1845756,Jack McCullough +252668,Kevin Conner +1561051,Alissa M. Kantrow +74142,Roger Gould +126537,Martin Duffy +38516,Denys Arcand +1514614,Janice Macrae +1142395,Iris Ng +1172229,Yann Gonzalez +1462006,Eric Provan +729995,Alfredo Matas +1437962,Chris Fitzgerald +135858,Ben Coello +40805,Alison Carter +1298426,David Franko +1091282,Benjamaporn Srabua +1880908,Anuradha Ranjith +127673,Mauro Lima +1400492,Courtney Schmidt +74566,Yves Simoneau +1001977,Christopher Hatton +1149941,"Michael ""Gonzo"" Gandsey" +935243,Jon Corn +1509222,Lina Sarti +1724197,Maëlys Deschard +1039521,Michael M.B. Galvin +1529736,Mikio Naka +1763750,Ryan Schaetzle +1412592,Julie Cardinal +1555342,Michael C. Gutierrez +1617029,Iakovos Kabanellis +1530092,Jodi Baldwin +1074571,Ángel Amigo +1465451,Kara Holden +1822312,Bernd Schaarmann +1080761,Pavel Borovan +1398137,Bérénice Eveno +1316190,Caitlin Reilly +1583638,Jeremy M. Gilleece +1257733,Michael A. Levine +42398,Kay Skerra +1300814,Philippe van Leer +1074327,Gonzalo Salazar-Simpson +1378679,Clemente Fernandez-Gil +557936,Kazuto Nakazawa +1204580,Leonid Nosyrev +1053563,Benjamin Thomas Cowley +1470528,Kara Stanford +1764798,Isabelle Patrice +1828329,Ryan Port +1138216,Grzegorz Królikiewicz +1105594,Momirka Bailovic +122083,Bert Schoenfeld +51086,Joel Alexis +1157114,Yoshihiro Kanno +114298,Wilhelm Pfau +1480533,Adam Mansbach +1820615,Elvio Favilla +46307,Roy Rowland +40645,Antje Rau +1068114,Brian Oakes +1085551,Michael Johns +1824248,Tom Hallahan +1116328,Elene Pepper +1418428,Philip Stall +75097,Nick Baldock +1470181,Z. Wayne Griffin +237952,David Muñoz +933311,Jarosław Wójcik +1371386,Chris Bowman +1044079,Anita Gershman +79439,Marieke van der Pol +1098028,Roberto Cimatti +1018987,Kako Kelber +255801,Christopher Babers +1774217,James Morrissey +1642560,Bunis Yang +1101420,Harri Ylönen +1642139,Chris Agoston +1560976,Bill Edwards +1189053,Chick Anthony +1419640,Terrel Grant +1265785,Ciaran Creagh +133426,Gary Lundgren +150486,Ritesh Shah +1533526,Gyula Krasnyánszky +1459743,Erik Baker +1307116,Yi Tang +1573320,Sean Beavan +1103831,Cameron McCulloch +1640819,Ussal Kalyoncu Smithers +1155120,Geoff Flint +1417674,John Beckman +1815575,Dries Bijlsma +1578000,Gillian Mackie +583474,Richard Ragon +1674791,Jeremy Adams +1338254,Richard Hocks +1646569,Nick Guth +138777,Eric Hungerford +1409306,Ian Thomson +19405,George Haight +1635192,Christopher Finley +1477505,Jason Russell +62185,Philip Hedgecock +37012,Brad E. Wilhite +960323,Sophie de Rakoff +1367023,Julien Roux +202053,Matthew Flynn +236909,Nicolas Karakatsanis +1184545,Rudolph Besier +1642144,Alexandra Rotundo +1095733,Jack Saper +567192,Sandra Brown +1824286,Marco Calabrese +47935,Richard Curson Smith +1550692,Olivier Seyfrid +1050790,Ben Briand +1192394,Ryo Wada +1392126,Ginger Geary +1129208,Steven Warner +9583,Charlie Revai +1086440,Toru Miyazawa +128357,Joseph Jackson +1403777,Dick Naastepad +1708028,Lisa Cushing +1526960,Bruce Sumerfield +1895763,Isabelle Blanc +1368957,Michael Paris +1465468,Lucas Gonzaga +68432,Jamie Linden +1453106,Ivan Denic +17582,Nikos Nikolaidis +468,Stephen Daldry +549313,Shaun Grant +1190973,Lex Lutzus +1118142,Stephen Parrot +69452,Mark Foligno +136834,Joyce Buñuel +1391683,Catch Henson +1454515,Helen Sloan +1319221,Miho Ueda +1173406,Mary Hayley Bell +1461995,Stephen Null +1495873,Mirjana Milovanovic +1281880,Katelynn Wheelock +355,David Baldacci +43520,Ben Watkins +1621770,Louise Bertrand +117693,Stuart Palmer +1273769,Ben Goldberg +1830633,Kyle Gardiner +1831859,Megan Poss +1646572,Nadine Homier +1877805,Janae Murray +96709,Benny Carter +110834,John Murlowski +1665542,Janek Plathe +1667750,John Carrafa +57805,Mark Wills +1496219,Greg Little +1669093,Cal Saville +182690,Matthew Thompson +71485,Joachim Lafosse +21855,Jerold Franks +1404190,Karri Farris +1450234,Sarah Cornwell +1401180,Dan Toma +1714346,Douchka Papierski +1411522,Luke Dunn Gielmuda +130051,Craig Moss +46993,Sam Spewack +1142319,Steven Feinartz +1456383,Dashiell Rae +59445,Donna DeSeta +562223,Amol Rathod +48908,Martin Ganz +929972,Yasuo Ôtsuka +1400008,Heather Noble +71035,Amin Bhatia +1586730,Chris Rouchard +1433963,Dodo Šimončič +1023422,Tony Osborne +1174067,Gus Holwerda +1556263,Shubham Singh Rathore +21086,Jeff Vintar +69095,Dirk Beinhold +73909,Sonya Chang +1572433,Sergey Shumakov +1764795,May Leong +1517632,Jenifur Jarvis +1636855,Kea Könneker +1630964,Michelle Lyte +1492922,David Eldridge +1713066,Shenyan Liu +1423434,Patrick Thomas McManus +1297508,Kirill Belevich +1519867,Lorette Leblanc +1333577,Aaron Embry +62584,Ivo Cristante +71204,Eliseo Altunaga +1179375,Joe Orton +106381,Norman J. Warren +1658441,Hiroyuki Hayase +552561,Sôichi Umezawa +1038036,Thomas J. Tobin +1308593,Tomas Dyfverman +1304697,Zoltán David +1349251,Ivan I. Tverdovsky +34207,Chic Young +145224,James M. McNamara +1039117,Thomas William Hallbauer +589185,Andrew Morgan Smith +1208687,Kazvin Dangor +1470708,Yahel Dooley +1881544,Dominik Reindl +132578,Ron McGee +1648278,Katarzyna Sobańska +1873488,Victoria Zalin +31218,Gustavo César Carrión +1636676,Peter Amies +554992,Shigeyoshi Mine +1287629,Megan Fenton +1761136,Haley Hinkle +92486,Keith Woulard +1640920,Carla Cattani +1733119,Dan Wilcox +1472418,Stephane Stoll +1463527,Tim Johnson +139989,Christopher Grøndahl +148697,Kelly Berry +1634781,Andy Ciannella +1560961,Michelle Fightmaster +1815550,Romolo Martino +1085083,Joel Blanco +1827779,Shannon Hartman +1057377,Ruben Impens +24445,Thomas Hess +32146,Santiago Ontañón +1780153,Thomas Wimmer +80807,Wanda Patterson +1337633,Malina Ionescu +1027627,Michael Darrow +1554496,William Cooper Smith +1862947,Paul Gyorgy +1425381,Steven Sallybanks +1204184,Richard Wincenty +1538782,Alexander Dynan +104051,Michael Campus +582922,Daniel Pemberton +1443782,Zvonimir Šimunec +138796,Brett Dollar +1680198,Gennady Myasnikov +1465890,Ron Woss +1857049,Matt Payne +1641656,Rachel Jacob +36064,Andrea V. Rossotto +1068848,Han Yan +1336517,Raymond Perry +1477153,Serge Cukier +110528,Jordan Wilby +1140158,Prashant Pillai +666855,Andrew Yates +1117188,Erik Zappon +238636,Christopher R. Watson +1776879,Mitsugu Shiratori +40055,Walter Strenge +1014943,Monique Champagne +1578875,Alice Sutton +132579,Richard J. Anobile +1054380,Ryan Lee Driscoll +1273676,Luca Giordano +101569,Alberto Cavallone +5595,Guido Amin Fahim +1313057,Brad Segal +1404539,Pavel Cajzl +1903936,Javier Meroño +1046127,Jason Stone +76088,Wendy De Waal +84417,Lee Eisenberg +134026,Huang Jianxin +1367649,Paul Heymans +236457,Alessandro Bencivenni +1189108,Mairi Chisholm +107222,Cesare Frugoni +1332478,Marie Garel Weiss +1545127,Angela Hackner +112948,Jon Hoeber +969645,Eda Kowan +1594606,Shayna Markowitz +1792333,Patrick Jordan +60726,Catherine A. Jones +512444,Chad Archibald +1561901,Radna Sakhaltuev +231438,Tomas Sandquist +965155,Tom Heller +1115707,Daihachi Yoshida +1577344,Sergio López Suárez +1460755,Paul Edwards +127459,Margaret Kennedy +1602603,Tokujirô Harashima +1324095,Marion Weise +1407696,Marisa Clayton +1865916,Emma Crompton +1106978,Simon Leclerc +77125,Javier Gullón +1808035,Shawn Wang +85387,Vikram Bhatt +1553489,Simon Maxwell +1421954,Bo B. Randulff +112269,Dave McLaughlin +1315696,Jean-François Chauvel +1565847,Christina Svensson +1130715,Mark Coffey +1533595,Isabel Halliburton +1262418,Colin Wilkes +138776,Jesse Holland +144632,Zdravko Šotra +1178534,Giorgio Scerbanenco +969712,Nina Weinman +161456,Carol Saraceno +1755725,Tristan Lamarca +132461,Lee Yuen-Man +1718516,Sarah Rogers +1557690,Negeen Yazdi +1565842,Michaela Halvegård +1666109,Abdollah Eskandari +108952,Mike Disa +1523861,Harley Hoshi +1166608,Benoit Beaulieu +1773045,Hasan Schahbaz +1769922,Elise Fievet +65213,Kyle Dean Jackson +1771813,Uwais Team +1782998,Larry Olson +1635321,Adam Lee +1154833,Danielle Schleif +1382743,Sergey Mikhalchuk +558542,Kirpatrick Thomas +455575,Bridget Durnford +1657573,Anina Pinter +1018340,Allison Black +1571508,Janessa Bouldin +1100139,Angie Olmedo +1636523,Ray Quintana +1651568,Paula Maestro +1024275,Giovanni Stabilini +1067239,Martin Bolduc +566353,Stanley Mark +1442985,Young-ho Lim +1665416,Shubhra Gupta +1830194,Gary Doig +1582745,Ana del Rio +1651997,Jenn Wexler +1452550,Billy Acumen +147865,Claudio Ragazzi +1323215,Sunil Manchanda +1116047,Stefan Truyman +1618643,George V. Hobart +1830592,Shinji Soshizaki +1608762,Jonathan Mosca +1535971,Avis Stanley +1380479,Jeremy Peirson +1762483,Steak House +1396576,Rod Smith +1647027,Charles Nankivel +1302510,Richard C. Deason +230177,Geoffrey Gunn +135754,Cláudio Torres +1163603,Vladimir Pankov +40344,Satoshi Hashimoto +1817875,Courtney Balaker +178486,Jeffrey Bloom +1406199,Elspeth Brodie +1570402,Oriane Cattiaux +34874,Bernadette Bout +1783000,Star Victoria +219239,Matt Weinhold +1537102,Sybil Mosely +1406868,Tracy L. Moody +557666,René Scholten +1440301,Darin Moran +1485598,Janelle Landers +72980,Eden Miller +36033,Susan Justin +1330175,Charlotte De Champfleury +237498,Marek Piestrak +1831214,Anja Cederved Schmidt +1286557,Ken Treusch +1208222,Mark Grattan +1133962,Sırrı Süreyya Önder +1640640,Alin Zabrauteanu +1420230,Kendall Delcambre +63745,Odin Staveland +229487,Rudolf van den Berg +1277277,Veronika Voznyak +1820256,Adrián Vaselino +1199633,Nikolai Statkov +1191537,Seth Wulf +1565829,Ib Steinaa +1080387,Iosif Olshansky +933575,Tina Tottis +1691494,Steve Peltzman +1341784,Vince Nicastro +1725768,Andrew Cheng +1407259,Paul Karami +967129,Brian Burgoyne +1390389,Louise Wade +1377417,Darcy Davis +1618812,Melissa Fafard +1389778,José Rivera +1647414,Patchanu Noree +1805398,Kim Seong-gyu +1226553,Javier Winnik +992696,Igor Dobrolyubov +1192579,Eric Daman +88134,Adam Silver +87772,Rajkumar Santoshi +1005320,Karen Grossman +1775972,Deantoni Parks +119999,Pavel Juráček +1484473,Kimberly Kirkpatrick +1195630,Tiina Nopola +37613,Jaime Chávarri +1650817,Colin Gregory +152074,Michael Baker +1544661,Ivan Giany Roberto +1337319,Sebastian Aloi +1354337,Suvimon Techasupinun +71275,Aarti Bajaj +61485,Lisa Thompson +1293085,Kim Byung-Seo +1069788,Andrew Putschoegl +1430516,Jeffrey M. Jones +1423463,Eric Blyler +1817866,Kate Merkt +42058,William Link +1070872,Joe Kelbley +1525602,Bart Fisher +582678,Ali Matilla +1204188,Pascal Trottier +1418322,Harry Barnes +1453874,Duraid Munajim +71951,Sue Birtwistle +1169264,Michael Klein +1355209,Maurice Revnes +590928,Paul McEvoy +1170551,Irvin D. Yalom +1619750,Cameron Marble +147211,Theodor Pištěk +1630393,Michael C. Parisi +1664508,Akihiko Kaku +616781,Brandon Hooper +1176818,Sopon Phulsawasd +588339,Jason Newfield +968911,Ehab Assal +1877444,Jean Winters +107181,Glen Pitre +1399587,Gareth Llewellyn +1261648,Leonie Luttik +1197579,Pierpaolo Tiano +109427,Jake Pollock +1119490,Mio Ezaki +1053264,Manuel Iborra +113598,Jun'ichirô Tanizaki +1583165,Francisco Pedemonte +1408172,Ianna Miolan Cruz +1062350,Arisawa Takanori +112132,Fernando Eimbcke +1608033,Lata Mangeshkar +39153,Pierre Kalfon +1479772,Martin Wolf +51933,Stephanie T. Baxendale +1758583,Jirassaya Wongsutin +1093442,William Barache +1757636,Brian Maratea +1474667,Charles Kulsziski +56361,Josh Shelov +1049374,Jeff Simpson +1556855,Longus +230013,Dil Raju +6529,J. Manuel G. Moyano +1180434,Mark Punt +1797496,Richard Watt +66803,Vanja Cernjul +55813,Jacques Maillot +1190017,Kunio Miyoshi +1487537,Jean Vermorel +1444952,Raffaella Giovannetti +1093746,Gérard Jarlot +1518048,Kirk Weddell +1763545,Nicole Stafford +211980,Allison Schroeder +69559,Tony Tenser +1587453,Brooke Wilkerson +1551894,Geraint Hixson +1340091,Anthony Gore +1024835,Judy Cairo +1456835,Anthony Rizzo +107828,Jonathan Oppenheim +1400734,Beau Desmond +128148,Ed Hunt +1398539,Cecil Cooney +123708,Jesse T. Cook +935203,Chad St. John +1265892,Xiaoling Zhu +1455615,Philip Rudolph +143672,Denis Osokin +12181,Hidekazu Terakawa +1665450,Larry Brahms +1603900,Maria Coveou +1409296,Danny Sheehan +1764545,Rick Wiley +1394048,Lauren Ito +138632,R.J. Hohman +1706511,Tiffany Barry +1439740,Sean Stranks +1159715,Campbell X +1336328,Jason Krawczyk +1096485,Angelo Carbone +1014362,Ève Machuel +1020060,Robert Covelman +151173,Reijiro Koroku +112751,Nanda Rao +1401766,Joshua Stern +930501,James Gow +1292426,David Congalton +1811595,Frédérique Schmidt +1416947,Gareth John +985151,Mariana Rondón +1031921,Dorian Rigal-Ansous +1030481,Srđan Vuletić +95865,Green Day +240199,Nicolas Born +1399858,Matthew Hirsch +50922,Pablo Fendrik +80948,William Lau +1267557,Heath Corson +1681130,Kai De Mello-Folsom +1092631,Géza Bereményi +1113453,Terracino +1591439,Yuzuru Satou +1323769,Phillip Boutte Jr. +1033663,Marc de Chauveron +1868149,Raj Uppal +836378,T. Griffin +1755533,Darrin Commerton +1578002,Nicolas Marion +50568,A.I. Bezzerides +435006,Jackie Lind +1362702,Zé Pedro Penha Lopes +78173,Hiroyuki Morita +1080779,John Kim +1568953,Julie Tierney +1670654,Joshua Sason +1594185,Denise Watson +1004777,Juan Frausto +1308426,Ivan Stadnyuk +174108,David Blanchard +1386323,Justin Hall +1692113,Vanessa Morehouse +1296142,Kwok Lam Sin +1173687,Jordi Casares +51838,Jean-Marc Ripert +1336974,Joseph D. Carella +1429688,George Lane +1263464,Gregor Habsburg +564209,Ged Dickersin +72902,John Fremes +1428918,Olly Tellett +1506443,Paloma Lozano +1325185,Simon McCutcheon +1011177,Charles Bryant +1817474,Crystal Walen +124281,Olli Soinio +1650631,Nikola Chapelle +62574,Morris Berger +1123195,Skip MacDonald +1506017,Fang Zhao +1651407,Doreen Soan +1074600,Nader Rizq +1528012,Dave Moran +1046638,Margaret Stohl +1448317,Måns Björklund +1369397,Elena Bucaccio +742382,David Perlmutter +1192773,Gary Hawkins +1428907,Hayley Easton Street +212684,James Dormer +1318460,Sylvie de Segonzac +1719413,Kurt Thoresen +30402,Alla Strelnikova +563882,Craig Clyde +1642516,Tsau Yon Liang +149294,Matthieu Deniau +1538226,David Keitsch +1746435,Francis Leong +1326391,Lewis H. Creber +1066814,Harry Thomas +50623,Bruno Di Geronimo +1455209,Robert S. Birchard +1616167,David Korins +1814978,Kevin Haverty +1449424,Lyubov Butyrina +1539800,Jana Sukenikova +1193872,Mangesh Awate +1301158,Markus Dietrich +1363598,Casper Leaver +1132482,Anton Krajcovic +57796,Udo Beissel +153293,Stanley Niss +1407863,Fionn Comerford +1141690,Bill Cain +1547771,Maria Gonzales +1246494,Jonathan Miller +1468592,Kate Wilson +58143,Darryl Quarles +1018865,Aleksandr Tsekalo +1043648,Matthijs Kieboom +87393,Jay Dratler +1271449,Becky Sloan +96501,Konstantin Zagorsky +18037,Mathias Dinter +1357800,Larry Savadove +17309,Greg Beeman +1229523,Ray Singer +1579377,Angela Boehm +585882,Jeff Sackman +1606333,Christian Gamst Miller-Harris +80681,James Atherton +1203436,Jacqueline Abrahams +928072,Cara Marcous +1322395,Chris Benson +1548075,Jennifer Stoefen +1031772,Rachel Watson +1446545,Karen G. Wilson +1120205,Minoru Ôno +1446548,M.J. Elliott +190397,Ian Hislop +1104802,Joy Saez +1348134,Áron Mátyássy +1328183,Jennifer Lilly +1392609,Chris Burdon +1095402,Buddy Patrick +933410,Jesse Joyce +1895010,Leonardo Semplici +1533685,Susan Stone +1127859,Ann Lyons +1185283,Kristen Riordan +94909,Nicolas Duval-Adassovsky +1633457,Claire Orr +1389931,Eugenia Giesbrecht +1551619,Richard Haines +1642550,Shane Farrell +1456434,George P. Costello +569848,Jonas Banys +1840322,Alan Camilo +1565954,Dinah Rauenbusch +1410307,Kerry Gregg +1840492,Pierre Ouellet +1561731,Wendy Williams +124124,Atsuyuki Shimoda +1401289,Donald Lyles +1345974,Fabian Wagner +1015885,Adam Folk +1419368,James Griffith +1499806,Gideon de Villiers +120541,Art Arthur +63909,Anna Wimschneider +113616,Sonja Shillito +1319119,Ania Kamieniecki-O'Hare +1697077,Mahsa Malka +1085815,Michael Matteo +1844146,Dauren Mussa +557855,Shaked Berenson +1428902,Conor Byrne +1421242,Miguel Llansó +1283961,John Allen Phillips +1239342,Christopher Chung +45934,Lorenzo Favella +1477210,Bonnie Priore +145550,Masanori Kusakabe +1638337,Braden Batsford +1392210,David Brill +1424589,Solfrid Kjetså +1018708,Rhonda Marie Wagner +583088,Clive Rees +1404872,Lorna Mann +1652071,Ken MacAlpine +82941,Ian Shorr +1418382,Daniel Macarin +1059621,Andrea Dorfman +1583160,Nicolás Mayer +1530088,Kier Lehman +1445367,Patrick Christensen +1393415,Jean Daniel Zacharias +1056616,Len Herberman +1184125,Pete von Sholly +1183166,Branko Neskov +1450086,Kristín Kristjánsdóttir +17299,Jie Du +1008504,Luciano Giustini +1591027,Alan Boast +930785,Richard Enders +989833,Mike Mogis +143565,Clarence Budington Kelland +341815,Pierre Geller +1175345,Chris Foss +1665463,Toby Fitch +1501813,Camila Moreno +1601644,Robert A. Haynes +1453108,Tijana Draguljević +139757,Gregory K. Pincus +1065643,Torgny Anderberg +101164,Alison Semenza +1107003,Bertil Malmberg +888740,Michelle Marchand II +1390360,Dick Edwards +583081,Dalia Vizgirdaite +928915,David Gelb +1451703,Mark Dinicola +70301,Matthew Leutwyler +1712869,Miguel Martins +1630285,S. Christian Wilks +226019,Rachid Dhibou +948648,Lisa Bruce +94728,Laurentine Ten Bosch +1305371,Gabriel Rhodes +161800,Jerry Thomas +1175182,Moacir Santos +1181519,Louis Brandt +101885,George Archainbaud +1467662,Charlie Levi +544355,Frederik Wiedmann +1362704,Elsa Ferreira +47325,Martin Persson +960072,Fred Conde +227407,Mathis Nitschke +1033664,Guy Laurent +63710,Jessica O'Toole +116206,Jorge Bruno +930713,Marialy Rivas +1178439,Martin Le Gall +1841615,Anthony Cirurgiao +1315120,Celia Susan Cotelo +118295,Max Frankel +1779187,Johannes Ringen +1635313,Monique Davis +1071413,Brady Hall +1177860,Katja Raganelli +1255562,Gyan Prakash +34732,David H. DePatie +38956,Maarten Piersma +1525831,Giordano Preda +1076356,Christopher Probst +144557,Emiko Hiramatsu +1305749,Jo Su-min +1269391,Elias Lönnrot +1399458,Max Grafe +1201225,Bryan Greenberg +1461479,Ashley Ann Harris +1502071,Mardana M. Mayginnes +1458141,Don Tomich +1455005,Igor Šunter +1407021,Maceo Bishop +1661274,Kari Redmond +1618809,Maxime Gagnon +1878505,Dean Hawley +1429344,Greg White +1653493,Sameer Phaterpekar +96338,Douglas Wood +1759816,Jose Parra +1370963,James Carter +1462279,Oliver Wheeler +34692,Craig Bolotin +1606183,Patrick Le Dissez +1089977,Romeo Ciatti +1662730,Frank Barbosa +73062,Yazid Benfeghoul +1578369,Katja Schlömer +1405324,Georges Tornero +1449283,Antonin Martin-Hilbert +1023401,Ana Pérez +583476,Dave Foster +238954,Marc Allégret +108738,Dan Garcia +1046580,James Retter +1779300,Yuriy Kharikov +1189770,Terry Rindal +1518456,Alexandra Sawka +1049972,Hardave Grewal +70646,Nick Morton +30749,Sean O'Hara +1815606,Tyler Free +225024,Aleksandr Proshkin +1639820,Wendy Rhoads +1319305,Matthew Miller +237855,Richard Tanne +1334179,Hector Dario Gutierrez +71621,Jakob Ihre +1853908,Aldo Tommasini +213341,Milton Katselas +137893,Ripley Highsmith +1077555,Hyun-seok Kim +1585713,Fletcher Ventura +1790955,Jakub Cerny +979284,Aashiq Abu +1556315,Shane Gross +217011,David Meadows +1295700,Kai Nordberg +928003,Johan Jonsson +168480,Kimani Ray Smith +563115,Susan Longmire +1141807,Mark Glickman +1351469,Rob Rasko +236333,Edward Simpson +1278964,Gilles Perrault +96305,Philippa Lowthorpe +103117,Gigliola Battaglini +1460036,David Anaya +1593263,Greg Faysash +1327516,Severino Gazzelloni +1737894,Atlin Mitchell +1106695,Matt Leonetti +142343,Leonard Trumm +1552063,Susan Boyajian +213026,Ann Kindberg +1393451,Dena Matranga +110876,Rachel Goldenberg +1197471,Lauri Puntila +1504439,Sivakumar Vijayan +1821895,Ryan Chamberlain +1052135,Gene Fowler +939228,Hugh Fleetwood +1512679,Joanna Laurie +1455608,Julius Kwan +1825661,Brian Hilburn +1738098,Kimberlee Iblings +1158259,Sergey Minaev +1526015,Juan Ignacio Peña +1335498,Jessie Levandov +1004735,Henry Dupuy-Mazuel +548673,Hugh Mills +342158,Fabrice Gianfermi +120330,Esther Krebs +231340,Paolo Vacirca +559299,Abe Sylvia +99450,Salvatore Billitteri +5262,Carl Lerner +1294764,Hwang In-Ho +1379593,Keith Thomson +1313056,Aashish Gandhi +111412,Richard Harrah +1829892,Will Samuelson +1406671,Oscar Tello +1286570,Aaron Bartscht +1368875,Julie Orosz +1175512,Yuki Nomura +1416956,Katie Hillyer +88468,Fabio Bonifacci +946767,Rosemary Blight +228146,Scott Floyd Lochmus +111121,David Denney +1057497,Matthew Cormack +1064959,Brian Meece +210158,Sarah Harding +62143,Michael A. Helfant +67073,Hubert Lukowski +1589489,James Markham Hall Jr. +1640278,Abhinav Sunder Nayak +1437624,Jens Rosenlund Petersen +1238136,Sheila Nevins +1444364,Dionysia Roi +1193191,Patrick Newall +1719072,Marshal Younger +1770451,Laxman Ram +1635200,Philip Dido +1393437,Walter Schneider +106733,Erik Fleming +1649521,Céline Zapater +1550768,Yanick Dusseault +1734987,Karim Morani +1642587,Simone Lemcke +221132,Will Hayes +1400878,Cary Ayers +1563393,Igor Podgorskiy +1312174,Leslie Kavanagh +61247,Brahm Wenger +225723,Aleksandr Ptushko +1282040,Benjamin Read +26162,Anne Frank +7150,Bernd Schlegel +1427399,Lambros Ziotas +1680066,Fabiano Krieger +1711836,Shaun Chacko +75872,Don Packer +1519883,Megan Oppenheimer +1906192,Martin Harrison +146019,Jeff Gottesfeld +552536,Emiko Tsuyuki +1207383,Dino Gentili +982307,Petr Oukropec +1894739,Jasmine Hamed +232764,Arnaud Viard +1294072,Jo Gyu Young +936976,Jessica Caldwell +567553,Sherry Compton +71800,Kendall McCarthy +939465,Christophe Louis +1425232,Lyubov Mulmenko +1032069,Mark Mostyn +1426229,Shelley Trotter +568910,Desmond Cory +1681161,Glenn Patscha +65244,Ross Helford +1191185,Tanya Lipke +1722727,Camilo Posada +1116092,Jerry Fruchtman +1139973,Laura Caccianti +1379961,Max Greene +1153586,Ron Highfield +1423728,Sylvie Barthet +3451,Mel Stuart +1294569,Steve Murello +1797456,Julia Drummond-Haig +968496,Kerry Foster +1341081,Christine Ponzevera +1599387,Olivia Scott-Webb +1319367,Reinhard Schreiner +19425,Peter Matz +1708024,Paul Norton +1465735,Jorden Fox +1327792,Marco Scotti +840072,Sveinung Golimo +1797488,Sarah Beinart +1450000,Tracy Scott +1655892,Nazeli Kodjoian +1622454,Mike Scanlon +585272,Adam Rapp +583394,Dorota Kędzierzawska +1310031,Emma Donoghue +1331165,Daniel McCarney +1014879,Chistopher Hines +1007638,Lütfi Akad +87668,Alfred Hayes +21476,Kevin Goetz +1571112,Balázs Révész +1814557,Taylor Westerfield +46287,Gemma Waugh +1760147,Owen Hammer +1428036,Segun +40187,David Lowell Rich +552490,Shin Matsuo +91417,Pär Lagerkvist +99095,Ken Del Vecchio +13036,Linda Emmons Cunningham +1201666,Arto Melleri +1174925,José Luis Matesanz +1644450,Jason Kisvarday +1417883,Deirdra Elizabeth Govan +97234,Guy Jones +1500798,Larry Wellington +1051320,Anthony Doncque +1811619,Bean Ellis +1742884,Dan Torres +42371,Mark S. Manos +1569347,Davina Lamont +38748,Jacob Grimm +31014,Giada Calabria +1080778,Max Borenstein +1392938,Bridget Farrington +565333,Francis Wallace +6790,Max Benedict +59700,Robbie Brenner +131396,Ben Howe +1781279,Jeong Seong-hun +79114,Yuri Worontschak +1680444,Eric Thirteen +1338222,Barnaby Smyth +943170,Kipp Tribble +69179,Bent Fabricius-Bjerre +79604,Michel Cusson +1376950,Nayan Bora +1271170,Nicole Ringhut +1805973,Lauri Liehu +106751,Charles Philip Moore +1457037,Meredith Raithel Perry +1418423,Nina Bains +1570610,Géraldine Courchesne +205298,Eric Weston +1130033,Arnaud Bertrand +583473,Aristotle Kumpis +1434870,Stella Atkinson +1649534,Lizzy Jane Klein +1027025,Megan Ellison +1762253,Mikey Schmidt +1538205,Natalie Ghariani +1477795,Brenda Salivia +1852949,Vinnie Malhotra +1601460,Errikos Intzoglou +1057910,Thomas Matthiesen +1327894,Cynthia A. Neibaur +1444764,Michele Civetta +1233060,David Gates +545806,Stephen Cheung +1312262,Jon Croker +1605299,Katsuji Arai +1530239,Robin Coudert +1118236,Nabi Ganiyev +1437896,Nicola Springall +1477786,Sam Urdank +1619734,Eryn Goodman +567213,Kishore Te. +1088721,Ovsey Driz +81573,Fraser Brown +92227,Doug Campbell +1647410,Auchara Kijkanjanas +1127214,Dominique Telson +1615076,Adrian Popa +26205,James Bobin +1181479,Anton Sanko +1501763,Timothy Hobart +1464779,Josu Inchaustegui +170566,Guy Teague +84931,Michael Cuesta +969913,Bill Wandel +1316661,Brendan Garst +1556404,Belle Francisco +61204,Jonathan Segal +1636652,Steve Cohagan +1086388,Evgeny Ruman +99243,Leland Douglas +1106748,Viju Shah +153183,Leon Griffiths +1536641,Pierre Malo +1447090,Joshua Minyard +1606285,Enzo Falessi +1192397,Noriyuki Kondo +1563670,Joseph Loera +1400511,Ivan Kerum +5451,Otto Englander +962580,Kraig Wenman +1537454,Chris Gray +66229,Edouard Mauriat +1721315,Nina Moravcova +41405,Albin Wejman +1570086,Moran Fridner +77962,Ben Dobyns +167403,Larry Elikann +589089,Jack Garfein +1746698,Deborah Saban +1367479,Simonette Berry +89927,William H. Pine +35834,Christian Gaudin +1849548,Jacqueline Martinez +1163928,Cy Roth +52151,Jonas Thaler +1453948,Jhon Alvarado +1580884,Sergio DiGirolamo +86535,Gus Krieger +7319,Nicholas Smith +1123075,Eloy Mella +260933,Joe Cacaci +1583168,Leandro de Loredo +113120,Joanie Croteau +1774356,Youri Tchao-Débats +23947,Suzette Couture +1759325,Shaugnessy Hare +1407938,Lutz Hübner +1539982,Michael Bonini +1845978,Nicholas Duke Biddle +1134669,Eliza Hittman +83656,Michael Viglietta +1191196,Kyle Wright +938232,Masha Solovyova +1409305,Todd Kleparski +44137,Alison Lea Bingeman +1175137,Bryan S. Sexton +1623934,Simon Miles +107659,Todd J. Greenwald +1205367,Fabrizio Taglioni +1561593,Ondřej Ládek +1838151,Justin Fouche +1143451,Uxua Castelló +110460,Pavan Grover +935798,Matthew George +1471443,Grace Yun +1530405,Yûkichi Nagakawa +70184,Dirk R. Düwel +1577901,Judith Chalier +1451219,Steven Mnuchin +1014937,Buck Sanders +1603240,Ismail Karadas +1724208,Ana Rubio +1762263,Che Spencer +556937,James Fung +1539087,Brendan Campbell +1520690,Sarah Levenstein +805594,Meredith Tucker +54205,Nadia Khamlichi +1815920,David O'Donnell +46416,Mario Ambrosino +119469,Fan Kam-Teng +126805,James Yuen +237333,J.M. Logan +1265079,Catherine Green +28974,Damon Lindelof +573818,Dan Fitzsimons +106632,L. du Garde Peach +1118109,Hemanti Sarkar +1456315,Eric Barbeau +979287,Bijibal +1849851,Julien Giami +1492549,Sander Verdonk +1129834,Hernan Herrera +1113437,Sagar Pandya +113512,Arthur Somers Roche +1161457,Gunnar Óskarsson +1085304,Robert L. Goodman +1388432,Christo Bakalov +1643416,Barbara Kichi +1394729,Tracey Merkle +1494210,Mark Goellnicht +1522267,José Alba +111360,Teresa Fabik +1792026,Martin Offik +1122367,Michael Patrei +113081,Chris M. Jacobson +1532933,Aaron Behl +1574447,Patricia Ruelle +1276377,Andre Fabrizio +1529730,Seizô Kubota +1114016,Frank Cucci +1324752,Orazio Barrese +969743,Dean Wolcott +1294930,Kim Tae-yoon +1383654,Harrison Atkins +1747171,Karl Roche +1333058,Roy Anderson +1125540,Ajit Singh +1119259,Ricardo Alms +1654526,Mandina Oh +1724200,Nathalie Vierny +1634298,Marie-Claude Lafontaine +1453107,Jelena Đorđević +142532,Dev Ross +1181371,Taylor Mahony +60729,Ferrell Barron +1411239,Laurie Hughes +1571524,Brian Malone +1130513,John Douglas Smith +1587093,Emil Stępień +97205,Kon Ichikawa +544821,Meira Steinmatz +592681,Carmen Martín +634712,Pau Freixas +1601239,Thomas Lüdemann +33288,Nancy Kirhoffer +572057,Jörgen Hasselblad +28399,Michael Cooney +1648805,Maja Lena Pastor +132509,Masuo Takahashi +1335422,Annie Dautane +146026,D. Stevens +1392939,Riley Hinrichs +1873044,Jennifer Hallmark +1577696,Ike Suri +1591381,Tamás Zányi +1090936,Sergey Kravets +1394972,Norbert Kaluza +1718317,Matthew Ladew +545639,Sachin-Jigar +101468,Ruedi Küttel +1413487,Nina Kraft +1619681,Christopher Chaber +1865194,Veronika Manzano +39745,Cynthia Tingey +112529,John Irwin +1158428,Dan Stafford Clark +1042814,David Vána +1748592,Álex de Molina +1384392,Julie Amyot +1641981,Steve Sich +1660186,Dick Reade +1642002,Rakesh Jhunjhunwala +1732800,Don Kozma +565580,Dean O'Toole +115179,Richard Beattie +1622448,Emma Gunnery +1256932,Mark Lwoff +448563,Laurent Boutonnat +1532479,Jukka Asikainen +54874,Joram Lürsen +543838,Julien Leloup +1840323,Mike Feil +1151387,Neus Ballús +1818616,Ginny Pennekamp +1412642,Suzanne DeSimone +1586592,Oliver Farkas +1113619,Kumar Sanu +1554504,Patrick Anthony Lising +1127934,Suavi Sualp +929048,Javier Albarrán +1452233,Denise Tunnell +1654343,Christian Pralle +1375896,David Gross +1780109,Ariel R. Kaplan +59348,Gereon Sommerhauser +6244,Bruno Mondi +223335,Evan M. Wiener +1616450,Amanda Needham +1447084,Brittany Montgomery +1630275,Stacey Catanzaro +1648209,Ron Shaw +1104952,James Di Pasquale +1597022,Nedelco Nanev +1276360,Noaz Deshe +1323897,Dan Ast +1478653,Aya Tanimura +990955,Bruce Wayne Gillies +1335345,Han Sang-ki +23451,Ilan Eshkeri +1658443,Keisuke Sasakawa +556736,Gergely Pohárnok +75587,Jacques Terblanche +1624606,David Hand +1496095,Sam Drog +287668,Andy Meyers +1526934,Brendan Mason +1097956,Zak Zeman +1821422,Rudyard Cretenet +1428539,Aghi Narottama +1001361,Vincent Palmo Jr. +1206151,Shawn Sourgose +1669272,J.D. Streett +1429323,Robert Doyle +1568863,Marshall Goldberg +1169254,Iris Ichishita +408353,Tia Lessin +86783,Rohit Shetty +1636674,Daniel Hanych +27759,Neal Fredericks +1810246,Jean-Roger Sahunet +38590,Alberto Moriani +1665860,Grady Allen Bishop +1496835,Frank Doyle +1314613,Roland Schlimme +192263,Robert Horn +1780485,Borja Ribes Blanquer +1694501,Matt Treadwell +1048220,Walter Veltroni +1417411,Anna Bregman +938691,Akinori Nagaoka +1849519,Jonathan Staav +1775630,Danilo Carvalho +1729081,Allison Furgal +1642273,Tina Sutakanat +551787,Catherine Quesemand +1459925,Daniel Pastore +1769264,McPherson O. Downs +1439066,Dawn Brooks Macleod +1482848,Kat Thomas +568337,Ashley Adams +1016262,Leonardo Martín +1473505,Witold Płóciennik +1536244,Honey Trehan +1196915,Harry Dettmann +236808,Olga Subbotina +1197877,Antoinette Nordmann +1649743,Sirapob Tungkasaeranee +1811615,Joe McCall +1706165,Umberto Picistrelli +63308,Andrew Upton +43703,Manolo Bolognini +1580702,Kerry Newcomb +72536,Erich Zander +227227,John Bissell +1182248,August Jakobsson +1295378,Ted Lesser +1407256,Jeff King +1672192,Benjamin Wynn +936280,Gabriella Prekop +5289,Barry Alexander Brown +1536658,Nicolas Economou +1138237,Frank Lehmann +1859984,Nick Pill +1647592,Weldon Hill +1462300,Kara Eide +1528429,Max Keene +52339,Claude Foisy +1450089,Asa Bjarnadottir +1082054,Matthew Chadwick +866266,Babbar Subhash +1545923,Jacqui Rathore +1519844,Anthony Noble +1512726,Raul Abrego +1086267,Andy Bausch +1531503,Scott Benza +126964,Aleksandr Lyutkevich +1199016,Aleksey Uchitel +1590964,George Esseff +1306687,Valentina Di Giuseppe +138788,Willy McKay +1091309,Joseph Justman +928444,Isaac Marion +1125465,Catherine Vernoux +936319,Steve Asselin +215541,Jessie Nelson +374004,Austin Parker +1417080,Annette Cascone +1261221,Josh Miller +1396825,Matt Blackshear +1590916,Gerry Turner +1417889,Richard M. Bartholomay +48745,Jana Marsik +1157940,Fatima Varhos +1431141,Andy Tomlinson +1214879,John D. F. Black +91263,Ben Starr +1742477,Adam Chestnutt +135731,Emma Potter +1354949,Adrian Teijido +589536,Brice Cauvin +59426,Jennifer Rudnicke +1833830,Clare McShane +1092690,Péter Huszár +9234,Vincenzo Cerami +1527925,Matthew Temple +1538338,Michael Turoff +1596108,Evgeny Danilenko +1553768,Sodi Marciszewer +1500500,Kevin Krikst +580790,Vetri +1407739,Anne Marie Fox +132527,Alesia Weston +1740785,Francisco Paim +1497336,Tony Cerbone +1400494,Bartlomiej Bogacki +82598,William Hooke +1544744,Margus Paju +1650262,Lyubov Georgieva +1631405,Mariella Pérez +1438454,Giampaolo Fragale +137617,Lii Kärner +933761,Jon Shenk +1643880,Gustavo Casado +42457,Gregor Schnitzler +1336927,Claude Wittwen +238476,Luca Sabatelli +1608888,Simon Morgan +1362789,Michael Fitzmaurice +1103654,Richard L. Bready +113080,Joshua Throne +1660180,Alexander Behse +1754602,Virginia Kay +8003,Ellen Moon Lee +1523168,Joseph Wartnerchaney +1523024,Alicia Castro Chicol +1618801,Priscilla Collin +49311,Michael Rasmussen +1425371,Max Haymes +1053991,John Lavin +566109,Jan Komasa +6791,Irene Howard +1322595,Carlo Longo +1845789,Andy Grote +1436532,Janet Tallent-Dickson +1193428,Marcos Gonzálvez +1289460,Cristóbal Sotomayor +1818642,Rafaella Rabinovich +151068,Marc Shap +1181281,Saschka Unseld +1602835,Chikara Uemura +74100,Arish Fyzee +1194445,Clyde Brion Davis +1327213,Michelle Côté +1084249,Roman Kachanov +1211073,Resa McConaghy +1840325,Hyesook Kim +1670908,Luke Sparke +1304299,David Jon Hoffmann +1579741,Micah Wright +357113,Hilton Lacerda +20424,Odile Dicks-Mireaux +184494,Donald Martin +1075520,Adrian Picardi +1388090,Winston Simone +7658,Danny Hambrook +1551796,Amin Rharda +1608316,Gregory Podzemelniy +966278,Hugues Tabar-Nouval +104019,John Patterson +1661254,Pamela Chopra +1314863,Mika Lehtinen +229378,Robbie Pickering +1035830,Sean Dillon +1726933,Teresa Strebler +63514,Rory Rosegarten +1641660,Caroline Labrie +869944,Gwenn Joyaux +120464,Helen Logan +1824245,Irene Orru +151705,Ed Haas +1384374,Alice Cumbaa +1039528,Justin Martinez +1090565,Frederick S. Armitage +1828371,Olivia Kolakowski +110974,China Kong +1881551,Daniel Reger +1463744,Justin Kursinsky +1907209,Joel Prager +1588849,Pierre-Philippe Côté +1681489,Isabelle Mathieu +1401670,Armando Orive Alba +1429326,Kim Yu +39766,James R. Davidson +1067555,Stephanie Barnes +1136052,Shingo Suzuki +1456626,Ken'ichi Yamada +1636525,Martin Ferland +1575983,Henrik Jansson-Schweizer +1561359,Inder Bawra +196858,Kenny Leon +220264,Fernando Ayala +1676797,Mark Philip Patrick +565381,Jose Mari Abacan +1266166,Franco Langella +230573,Jake Kaufman +1570534,Ryan Wesley Graham +1722259,Dan Abdo +1567385,Федор Дмитриев +1098931,Rebekka Sorensen +1568235,Tom Farnsworth +65837,Anna Rosa Napoli +1361555,Tristan Roache-Turner +931382,Marius Panduru +40474,Dirk G. Engelhardt +557360,Hernán Moyano +1278809,Jürgen Schlagenhof +1567979,Matthew W. Herschel +132316,Daniel Shere +586285,Rúnar Rúnarsson +1429259,Teruaki Abe +1301381,Jim O'Grady +1636730,Bhavik Mehta +1647026,Dylan Metzger +1621364,Behnaz Shokouhi +23299,Michèle Hubinon +61250,Phil Schmidt +1385136,Andrea Busiri Vici +1873046,Niklas Ohlsson +1845791,Lesley Myers +1533518,Anna Granucci +538295,Elizabeth Brown +1059051,Gabriela Zamora +2798,Walter Ruttmann +1645422,Robert McDowell +1866622,Andrew Cottle +1571984,Gemma McKeon +74399,Carl Molinder +1351467,John Morena +71950,Diarmuid Lawrence +115845,Harold Medford +1032045,Eduardo Vaisman +63891,Mark H. Baker +1570048,Laura Daniel +1706703,Tom Wilkinson +1697788,Brett Banks +1681846,Amy Greene +33782,André Hossein +1833991,Hal Biller +1136065,Valerie Delis +1650625,Jason Hofherr +1512662,Timo Anttila +132957,Raoul Servais +103364,Charles Salerno Jr. +1869439,Katelyn Mueller +1338242,Tim Morris +550580,Kota Yamada +1328123,Dominique Borrel +1455531,Christopher Mullins +33505,Christoph Friedel +557710,Alejandro Cacetta +158081,Paul Lazarus +1125619,Ludo Cox +1540245,Vladimir Muller +96550,Runme Shaw +1340078,Nat Higginbottom +1519807,Vanessa Gonzalez +34752,Lucien Hubbard +1468063,Fiona Braillon +1387269,Mako Kamitsuna +222447,Kent Harvey +31258,Phillip Scheer +1588195,Beth Sikma +32416,Renate Schmaderer +1354498,Juliana Roberts +1495596,Austin Andrews +1496105,Gabriela Revilla Lugo +1037697,Satoru Oyama +1188612,Adolf Lantz +1403565,Carlos Zayas +1106880,Beqa Oniani +570348,Antonello Emidi +1093443,Emile Natan +1512769,Thibaut Josserand +557681,Bert Hogenes +1755140,Andrew Hadzopoulos +589383,John Skidmore +51759,Allison Gordon-Kohler +1722221,Jim Frater +1367927,Martin Pedersen +1332521,Marco Cappetta +1113580,Gary Bradley +68694,John Claflin +46354,Dean Lent +1032648,D.A. Panvalkar +1495856,Mario Gabrieli +98565,William Webb +1830887,Devyne Johnson +1564049,Tatjana Luckdorf +1537407,Keiko Ogata +1059461,Michael Micco +569209,Louis Aimé Augustin Le Prince +1340082,Michelle Webb +549317,Adam Arkapaw +1176406,Enrico Masi +1199304,Roland de Middel +1367360,Kent Belle +105479,Alexander Laszlo +1780145,Angie Luise Jordan +1287465,Robert Norris +565311,Boris Larin +822886,Anders Engelbrecht +1348973,Gérard Torikian +133007,Patricio Gabriel Plaza +1817836,Norman Bishop +572232,Claudio Quarantotto +21093,Jörg Jeshel +1354355,Kaikangwol Rungsakorn +1006109,Gustavo Ron +217185,Sarah Kane +1342854,Sit Hau +33766,Karl May +1907221,D. Todd Shepherd +1187199,Jonathan Taïeb +1691483,Ian Henderson +1414935,Tom Ryan +151083,Matti Ijäs +1408772,Thom Randmaa +573541,Philip DeGuard +1045908,Judy Kellem +1400876,Jordan Bass +1012406,Douglas Soesbe +1367656,Ludwig Töpke +122496,Chandan Arora +1303683,Cafe Noir +228709,Raul Garcia +82491,Lew Landers +1056204,Ed Branstetter +1367655,Cecile Tournesac +138720,Luca Lucini +1389043,Sherry Gunderman +104025,David M. Rosenthal +556151,Kara Welker +1429353,Steve Papagiannis +1499778,Lisa Wilson +64377,Thomas Pang +1775853,Saskia Verreycken +1054796,Slaviša Ivanović +1409854,James van der Woerd +1333982,Dana Kay Hart +1554560,Allan Harris +1324039,Jenny Shields +87776,Andrew C. Erin +1153467,Isabella Sandri +1039317,Jennifer Cooper +132524,Osamu Sakai +1339548,S. Sashikanth +1625630,Beth Kendrick +1539302,Miroslav Stoilov +1475703,Coen Gravendaal +1332181,Fabrizio Bondi +229829,Kevin Belen +61493,Troy McCombs +1636656,Tami Lane +1821869,Rob Burgess +238752,Sophon Sakdaphisit +1817525,Teruko Utsumi +959114,Nicolas Stern +222262,Don Patterson +1086217,Gilbert Kikoïne +131933,Patrick Hoelck +1536646,Benjamin Caillaud +1797512,Nicholas Chalmers +1821910,Rio Noel Zumwalt +1449420,Kabul Rasulov +1363304,Swanand Kirkire +6592,Duwayne Dunham +1039146,Marc Gadoury +1737690,Jorge Valdés-Iga +1519344,Anahita Dehbonehie +1338144,James Hynes +1264282,Stina Gardell +61863,Alison Freer +1512729,Dennis Moyes +1236381,Philip Levens +1539389,Josh Sugarman +1415583,Tanya Mazur +1512995,Debra T. Smith +1801214,Izumi Takizawa +1453112,Nikola Stojanovic +1526589,Barbie Block +1510251,Gary Brown +1326092,Julie Lynn Ebin +1770988,Asha Joseph +133434,Ben Schwalb +1320500,Jaime Valdueza +1309617,Chiara Ridolfi +932913,Patricio Riquelme +1381305,Pierre Alrand +1107451,Lisa Forst +1332518,Susanne Weichesmiller +154631,Noel Nosseck +1124067,Corentin Senechal +1763560,Matt Chamberlain +224204,Ascanio Celestini +1088035,Cheng Er +1551802,Lucy Friend +69065,Raimondo Crociani +1286573,Nick Ronzio +1402488,Conner Vandeer +549321,Jean Teulé +1011288,Freyda Rothstein +1400612,Salome Ogenfuss +1542727,Earl Sitar +1560218,Shana Wilson +59911,Daniele Luchetti +1605657,Lisa Riemer +1485238,Soon Kie Lee +1792031,Matthias Wrage +1122835,Tina Norup Helmark +1517636,Martha Sparrow +1128434,Thimios Bakatakis +1144650,Gian Luigi Polidoro +1552084,Day Permuy +1775629,Frank Wiemann +1605942,Sven Hansen +136406,Chris Trainor +97142,Jung Ji-woo +1797469,Leah Kardos +1373780,Gene Bryant +29457,Nicole Pelletier +1216147,Anthony Hemingway +1613913,Kemel Jamís +1821931,Ron Uribe +582611,Yoshimi Itazu +473485,Terje Strømstad +1001529,Mike Callaghan +1635195,Kelly Bellini +45141,Thomas Gauder +135440,Brent Boyd +1417874,Daniel N. Salas +2661,Bill Shaw +212475,Vernon Chatman +1688383,Jill Soper +1602994,Maria Ushakova +1315738,David Constantine +958083,Michelle Botticelli +1742974,Kashca Garwood-Walker +1338899,Maxwell O. Henry +1654520,Trevor Hope +501226,Quyen Tran +39708,Christine Laurent +239485,Stanislav Rostotsky +1403709,Toni Salabasev +1334812,Gabrielle Spanswick +1332306,Gabriel London +83189,Paolo Virzì +139896,Rajiv Menon +1459937,Laurence Johnson +1054383,Olly R.C. Lenseraid +61819,Andreas Laurenz Maier +1601465,Vassilis Leontiadis +136164,Kenneth Bi +1431146,Jim Allen +105644,Dwayne McDuffie +1841604,Jan Miller Corran +1407486,Kenya Barris +1579654,Jiri Rumler +1457482,Shannon Murphy +1546028,Andrew Palmer +1745327,Lev Murzenko +15354,Stephen M. Davis +45946,Christopher Rowe +138140,George Schaefer +1862919,Bruce Humphrey +1458718,Walter Kortschak +1469054,Joseph Schweers +1354328,Thanawutthi Busamsai +1113606,Sanjay Verma +1410874,Karin Myrenberg +89906,Edwin H. Knopf +929093,Liz Duchez +1547775,Adam Van Wagoner +1307748,Vijay C. Kumar +968182,Fredrik Malmberg +49198,Susanne Hertel +1319134,Suzi Turnbull +544130,Jen Soska +1405681,Kenneth Bøgh Andersen +33765,Martin Böttcher +227225,Melissa Bruning +1114570,Uday Krishna +1500629,Mort Litwack +1426709,Esa Illi +1027825,Niall Moroney +51478,Michiel de Rooij +1403439,Gregory King +121358,Michael Handelman +1394314,Daniel Ehrenberg +1059590,Matt Kennedy +237184,Masayuki Tanishima +937975,Pierre Buffin +1043479,J. Bret Garwood +1294089,Jiyeong Jeon +16386,Peter S. Beagle +1137990,Chris Galletta +1729034,Lauren Slatten +1088499,Giulio Sbarigia +1437423,Lucrecia Botin +1600788,Andon Koja +935296,Yaron Levy +1689590,Hans Radtke +1093748,David Victori +1434867,George Zwier +1836959,Lucas Cotterman +1136045,Arimasa Okada +567536,Ariel Winograd +1341474,Desmond Dolly +1644776,Benjamin Freidenberg +1463359,John Sanchez +1448325,Peter Degerfeldt +1643409,Lori Waters +133878,Dale Wasserman +137563,Sulev Keedus +40104,Trish Seeney +1635286,Kyle Hinshaw +1334477,Johnny Hartmann +1411125,Katya Guy +1783019,Gaby Macias +1468571,Vance Miller +225713,Frank Tipper +1337422,Paula Casarin +1096545,Xavier Russell +1165031,Giorgos Zois +1461178,John Grillo +1448311,Espen Rønning +40048,Burt Topper +113526,Douglas Urbanski +1016114,Richard Schechner +1440664,Isaac Hamon +1328180,Paul Harrill +1031975,Kenichi Tsuchiya +1701618,Nathan Borck +93393,Stewart Sugg +1002568,Ray Boseley +1644253,Ron Coe +1752051,Eugene Armencha +1050728,Jordan Leondopoulos +1336358,Martin Myers +58280,Agi Ariunsaichan Dawaachu +55391,Jamie Moss +1354499,David Kellick +140472,Katsutoshi Iwanaga +1392948,Lori Franklin-Garcia +454177,Matt Riddlehoover +1455515,Aaron Clement +1232064,Casper Kelly +1114377,Stéphanie Morissette +553391,Takeo Watanabe +1050712,Emil Kolbe +141075,Deva +1604744,Shaheen Seth +73916,David Bach +1232990,Gerald Durrell +1712241,Christofer Haglund +50799,Peter Keglevic +1584365,Javan Ivey +1833826,Daphne Jefferis +1817485,Anke Weckmann +1210377,Toby Amies +1048404,Keiju Ishikawa +1409287,Serge Perron +33779,Johnny Douglas +47639,Ewin Ryckaert +1075909,Trevor Wrenn +60724,Jana Mitsoula +1068881,Shaun Charney +1618802,Nicole Cyr +1866513,Mia Lourenço +143322,Frank Garritano +1179443,Mary Arthurs +1090383,Bryan Basham +1367944,Joe Kozlowski +544636,Joël Champetier +138004,Paul Jackson +1798644,Josh Hyams +1046613,Alison Marek +1175138,James Bairian +1571051,Alana Morshead +46290,Jérôme Wiciak +1777266,M. Jakubíček +1061561,Mark Cousins +85340,Eric Lartigau +1663602,Coco Kleppinger +1079913,Stéphane Le Parc +581057,Nicola Alvau +1742993,Daniel Giordano +1327832,Will Rowbotham +89121,Gino De Santis +1155579,Nancy Ceo +1797425,Will Hanke +1553966,Aiken Weiss +1772623,Alexandra La Roche +1604345,Joanna Wilczewska +1859994,Christie Kwan +1538203,Francesca Esposito +1727619,Stephane Thibert +1140272,Logan Miller +930998,George Rush +83922,Joseph Ariola +223693,Luca Miniero +1609061,Ben Charles Edwards +1060554,Art Landy +221508,Uwe Janson +94905,Philip Salick +1853355,Eric Fox +1483584,Karen Mansfield +126966,Nikolai Nosov +140595,Alexander Šurkala +1378842,Alice McDermott +34387,Timo Blunck +1412294,David Lobatto +120514,Milton Raison +1820253,Lucas Martínez +1053664,Gary Safady +47947,Mikhail Suslov +1570578,Gary Princz +1668820,Julia Camara +1185067,Josephine Ford +1551791,Greg Corke +1298941,Roberto Belli +1616452,Philip A. Anderson +1292994,Scott Halle +1470158,Loulia Sheppard +1427387,Elie Meirovitz +1530613,Ian LeFeuvre +1532263,Kate Sharp +1391337,James Paul +1657561,Timothy Reynolds +1546237,Mac Dalgleish +163225,Paris Qualles +1597995,Joaquín Gutiérrez Heras +1056031,Alistair Leyland +1884739,Eli Gavete +66937,John Quester +571196,Stanford Tischler +123970,Gábor Herendi +1399862,Daniel Saxlid +57006,Peter Knorr +1486726,Jôjirô Okami +930644,Jean-Baptiste Léonetti +58483,Stefan Prehn +1345596,Ralph Osborn +76566,Peter Bose +1271448,Joseph Pelling +1683033,Plínio Profeta +1727052,João Fonseca +937702,Bill Shraga +1207178,Haylar Garcia +1094532,Nicola Manzari +1204338,Rob Meltzer +1513861,Debra Johnson +1448873,Mallory Fitzgerald +1375601,Brendan Smith +1432706,Hank Zinman +142042,Robert Abel +1542364,Dugal Macdiarmid +239075,Dylan Kidd +1094790,Mohamed Abu Youssef +6245,Alfred Srp +10319,Giorgis Samiotis +1069454,Wolf Koenig +1412909,Marie Gombeaud-Antoine +1408176,Patricia Franco Estévez +138900,Margaret Stevenson +99245,Isshin Inudô +1452555,Changju Kim +554396,Kwang-chun Park +570718,Pairach Khumwan +238574,Scott Milam +1713005,Peter Handford +549307,Marco De Angelis +1569331,Brinsley Compton +1619484,Leslie Thomas +1564995,Mark Swenson +1142345,William Rees +1582618,Carolyn Cury +184477,David Cole +144329,Moritz Schultheiß +1590914,Ginger Gemmel +90635,Samantha Vincent +1825886,Jiri Stanek +1716101,Apostolos Vettas +931336,Aaron Yanes +1309440,Celeste Battistelli +1284288,GyuBok Lee +1317643,Osvaldo Desideri +984136,Monty Featherstone +1156050,David Schifter +1479369,Francisco Sánchez Ortiz +86500,Nicolás López +1317572,Julien Berlan +114830,Nat A. Bronstein +236619,Arnaud Denis +112019,Eric Forsberg +1815600,Amir R. Khan +1407745,Kat Spiess +1518664,Miquel Coll +462672,Donald Davenport +141647,Sergey Aksakov +148103,Shin Sang-ok +1580865,J.R. Campbell +40825,Benjamin Wallfisch +1746701,Dan Maslen +1649199,Katia González Estévez +69812,Richard Collins +1323629,Augusto Grassi +79386,Laurie Stone +1205890,Mat Kirkby +1560972,Quantrell D. Colbert +211151,Marnie Blok +1761133,Lindsay McClung +1537409,Kenichi Fujimoto +1431135,Catherine Willis +1429884,Susan Zinowsky +1243081,Karen Mayeda Vranek +1590424,Elke Müller +1784764,Iryna Zhygaliuk +6351,David P. Lewis +1790904,Laura Miller +1494787,Jesse Chabot +236339,Sergio De La Puente +1197578,Susan Norkin +1646867,Lissi Muschol +19347,Steen Bille +129587,Alberto Silvestri +1390010,Agostino Vinaldi +1780170,Moritz Müller +1172516,Alice Babidge +125249,Victoria Goodall +1399920,François-Xavier Aubague +1418374,Shaun Friedberg +1272637,Chris Stover +1519601,M.A. Deuce +1167602,Bak-Ming Wong +117416,Carl Sigman +1793487,William Clark Coit III +1856178,Colt Logan +1126232,Matt Whiteley +1451882,Alex Kornreich +1328775,Yuki Ikeda +372442,Michael S. Ojeda +1748540,Benaiah Anderson +1785015,Eshaan Phadnis +1483143,David Antonin Mucci +1745878,Gary L. Horton +1818739,Maury Hoffman +1568596,Akram Khan +133116,Toshio Hirata +1087425,Regina O'Brien +1394150,Thomas Schwalm +1316485,Pirmin Marti +1066440,Ketan Mehta +1483637,Jax Martin +1017278,Agnès Giudicelli +1635199,Paul Darnell +1896776,John Medland +557359,Ramiro García Bogliano +57377,Randall Jahnson +1325215,Suzanne M.B. Chambliss +1585160,Michael Mikita Jr. +1522376,Carlos Clavijo Cobos +936917,Mikołaj Trzaska +1444300,Frank Biasi +1178997,Kôji Kanaya +1573537,Paweł Grabarczyk +1862938,Michelle Lyman +1031260,Gregory M. Walker +1645539,Stefan Mohr +1731561,Daniel Katz +1479537,Catherine Catie Lee +1127741,Aileen Buller +79000,Manuel Martín Cuenca +95111,Dziga Vertov +146279,Juan Pablo Galli +1191567,Natasha Duprey +1037807,Christiane Cegavske +1711436,Tomonobu Kikuchi +55888,Eric Maddison +1869708,Elaine Attias +1569334,Chloe Feodoroff +1135712,Syam Pushkaran +59502,Shane Dax Taylor +1401563,Wayne Lemmer +928595,James Weaver +1194666,Michela Bianchini +1894441,Stefan Forss +95702,Ola Kvernberg +1103524,Carmen Man +1031762,Bruna Nogueira +76060,Alisa Fredericks +1756283,Stephen Kelliher +1578868,Andy Lowe +101574,Sergio D'Offizi +570365,Gian Alfonso Pacinotti +7931,Robert L. Baird +146991,Supratik Sen +1348206,Enrico La Stella +69048,Julie Anne Weitz +1382203,Steve Michaels +1711027,Caroline Barclay +228553,Hirô Matsuda +1281265,Edmund Mokhtarian +557235,Anatoli Granik +1308813,William H. Carter +1035029,Scott Thaler +1465624,Khanh Trance +1414166,Jon Opstad +1510439,Ki S. Hwang +85725,Kabeer Kaushik +1536671,Joanna Bruzdowicz +20203,Lise Fayolle +1581506,Ben Sharp +976674,Diego Poleri +995385,Gautam Rajadhyaksha +1554238,Louis Lewarne +1132126,Paul Owens +6222,Paul Mayeda Berges +1395430,Jenne Lee +1453233,Chris Howard +936064,Jasmin Duraković +1764546,Larry Tardif +120128,Pietro Valsecchi +1707020,Yôzô Uchida +1465734,Deon van Rooyen +575128,Gunn Tove Grønsberg +1472773,Sami Gaidi +1368301,Eddie Adamson +446672,Stéphane Mazalaigue +105639,Romeo Muller +169046,Ash Christian +73579,Benjamin Heisenberg +116100,Richard Williams +1334180,Ricardo Folch +1113696,Ian Roumain +1053820,Sean Findley +24471,Charles Nemes +1519919,Joseph Murray +1564970,Christopher Isenegger +124337,David Ostry +1674920,Amar Shetty +1247786,Kazuki Takahashi +1815552,Lúcia P. Almeida +1408175,Alfredo Melendez +1482222,Katelynd Johnston +1764715,Dalia Hovers +63748,Stian Johnsen +1332316,Jonathon Corbiere +82714,Alan Clarke +18438,Rolf Hapke +228260,Gianfranco Piccioli +967198,Bingo Gubelmann +1613773,Suzanne Krim +1396314,Junghun Kim +1136857,Rajeev Ravi +18617,Colby Parker Jr. +1763420,Shivamm Suman +553252,Jacek Lusiński +5636,Helmut Dietl +102178,James Golff +1475322,Terrell Stapp +1526016,Clara Viola +1607360,Hamada Atallah +1633351,Brian Gottlieb +1173636,Claudio Piersanti +1768381,Yale Kussin +1635483,Renee McCarthy +1316189,Monte Hallis +102737,Tom Filer +1305602,Patricio M. Farrell +57183,Jens-Frederik Otto +1339056,Markus Ernst +1408398,Austin Cross +550268,Giuseppe Piccioni +77005,Diane Kurys +1575228,Justin Coit +1142412,Ben Wolf +583517,David Dietl +239033,Paul Grimault +1020077,Shirak Kojayan +1031107,Anne Strasburg +1352203,Tihamér Vujicsics +19758,Frank G. DeMarco +1396218,Ben Berman +1121112,Matt Yeager +1042439,Yvann Thibaudeau +1460745,Jody Gaber +1612381,Vera Vilenskaya +1388865,David Chrastka +1247285,Julie Payne +1084139,Robert Komatsu +60730,Ron Price +1590405,Simone Kraus Townsend +1084847,Ed Grenga +1701826,V. Paul Hreljanovic +218437,Leonard Gershe +230081,Arash T. Riahi +37241,Anu Malik +1430080,Dmitry Gribanov +231586,Ken Metzker +1370904,Chris Hopkins +66129,George Faber +40364,Ingo Haeb +1426206,Sheila White +1267135,John Cerullo +1057668,Justo Paulino +1428663,William G. Dunn +1130360,Anatoliy Mukasey +1797888,Olivia Brittain +1358976,Nick Powell +75875,Dina Holmes +1871153,Grace Delahanty +1761926,Leo Anttila +572089,Stuart J. Levy +1885498,Joe E. Stabile +1587601,Evgeniy Botyarov +1581503,Michael Fylyshtan +1046543,Shelby Stone +36417,Pepe Danquart +37002,John Coda +1594345,Nagayoshi Akasaka +1481637,Mitchell Smith +28961,Thomas Nickel +582732,Marianne Williams +95153,Clyde Ware +1263606,Petter Lindblad +1017821,Sven Hughes +1630276,Danielle Hoyer +1396810,Richard Ivan Mann +1654527,Monique Wajon +110190,Ram Sampath +27574,David Higgins +1395233,Andra Hayes +1214566,Norman Felton +200715,Edward Boyd +1046507,Demofilo Fidani +1673840,Wen-Chia Chang +1262011,Conor McCaughan +1769624,Laura Donari +1323511,Liz Kearney +1004051,Marité Ugás +1533694,Oben Aras +1725741,Mila Hermanovski +1008503,Fausto De Lisio +1009005,Sigmund Romberg +1057777,Hayden Pearce +1429324,Mark Van Alstyne +1367731,Sonja Prosenc +25289,Harris Done +1152999,Louise Lovegrove +1373057,Rob Guillermo +1431557,Cynthia Nibler +1513207,Kenn Hamilton +552254,Dave Rath +1664507,Makoto Sigma +1031007,Pedro Irusta +1514420,Jim Rowe +559395,Fez Ortega +1670533,Licky Zydower +66284,Edward J. McDonald +1351470,Jeff Reitzen +1523497,Georges Annenkov +1519842,Takis +136153,Peter Atencio +1429341,Valentin Valov +55332,Peer Klehmet +1308454,Giancarlo Marchetti +1483301,Vanessa Wolf +1603898,Maria Coveou +1448255,Anja-Corinne Welter +932909,Alan Smith +1387181,Melani Petrushkin +1069553,Aniruddha Roy Chowdhury +1115633,Peter West +1367482,William Burck +237280,Marian Batavier +1152114,J.T. McIntosh +1161281,Carole Gérard +1731564,Norman Martien +1175180,Jarbas Barbosa +1541503,Bobby Michaels +1760149,John Ortman +1315387,Aaron Brooks +1461582,Arne Parduba +222354,Maureen A. Ryan +1857683,Nathalie Cyr +1439104,Onofrio Nino Pansini +1542734,Pacuraru Delia +1495875,Regan Copeland +1708141,Fülöp József +65455,Gail Egan +144426,Leslie Bush-Fekete +1233165,Glenn Ennis +1299144,Travis Baker +123581,Jay Richard Kennedy +1296174,Michel Lengliney +1679760,Lóránd Banner-Szûcs +1422832,Alison Banks +1411317,Christopher Robin Faulkner +981342,Victoria Galardi +1872421,Toni Forsyth +112531,Jason Yanuzzi +102976,Peter Perry Jr. +1367433,Roger Orcau +931615,Enzo Masetti +1691511,Katie Scheneck +378260,Derek Rappaport +103686,Andy Abrahams Wilson +1049454,Lester Chung +37812,Nella Nannuzzi +1792697,Jason Christopher +32638,Norbert Herzner +1158764,Ian Lagarde +1545995,Carlos De Carvalho +229252,Nishikant Kamat +115318,Ladislav Smoljak +1186697,Riina Hyytiä +1795359,Sonya Burres +1715749,Dana Frankoff +1825660,Lonnie Kahoe +1418413,Gregg Brilliant +1145507,Jack Hays +75077,Rosa Romero +1164588,A.J. Edwards +1392652,Zsoka Hoka +1344422,Russell Frost +1437721,Tzanko Matchukliski +1579044,Margaret Lewis +1178366,Jason Garner +116086,Geof Bartz +61372,Tony Leech +1329814,Dawn R. Ferry +108536,Lee Hae-Jun +82652,Norman Warwick +1204485,William L. Asman +1751716,Anthony Dixon +1393833,Crystal Moselle +1085650,Harry Azano +1263628,Carlos Montero +1705078,Arthur Corbaults +1034192,Sophie Nash +1437960,Robert Bourke +1830186,Aina Sabaté-Giralt +1662338,Erin Fragetta +1538207,David Greene +1187609,W.D. Hogan +1291358,Yoshitaka Honda +71786,Rex Ingram +1156006,Ivan Casalgrandi +1462947,Rui Araizumi +115828,Evan Pesses +1818598,Alfred DeGrand +1106969,Ann Lauwerys +1661740,Bobby Pushkarna +1110102,Michael Tiddes +1349380,Antony Partos +1092488,Jaroslav Tuzar +1622818,Klaus Frers +1388233,Mike Lavoie +92561,Nick Broomfield +12651,Tim Hutchinson +106078,Robert Miller +1034658,Sally Lear +1274488,Boris Filchikov +1630373,Damien Mazza +145853,Anna Perrot Rose +1872614,Rodrigo Ortiz-Parraga +1705466,Samidha Wangnoo +587538,Vítězslav Nezval +1540251,Richard Straker +1464628,Mario Robles +1714481,Kana Matsui +145714,Osman F. Seden +1203818,Sean McElwee +1095589,Miguel de Cervantes y Saavedra +1830884,Michael D. Leone +14807,Angelo Francesco Lavagnino +175707,Barbara Fixx +1447452,Kaukab Basheer +17911,Eddie Fitzgerald +6521,Alberto Rodríguez +58144,Don Rhymer +1278765,Usury Khan +928660,Brett Nystul +1623945,Jim Mundell +1140231,Shaka King +1455621,Tobias von Burkersroda +1550238,Kathleen Fournier +116002,John Chua +1407360,Jack Lilburn +1584372,Maximilain Lopez +1157585,Jerome Storm +1349622,Ravn Lanesskog +1427145,Roy Fenstad +213072,Doug Magnuson +588935,Sasa Gedeon +1849131,Jean-Marc Lacarrère +1031200,Nicolas Chartier +1532792,Benoit De Clerck +71718,Gerald I. Wolff +1485791,Royce Wesley +1234099,Adam Goldworm +1533714,William Scharpf +72520,Kostas Lambropoulos +69547,Fabio Conversi +73191,Michiru Oshima +1450263,Jean Hegland +1828374,Jeremy Laing +1550766,Brandon Fayette +1585242,Jonathan Yi +142503,Aleksandr Rodionov +1208341,Josh Boles +61246,Anna McRoberts +27849,Enzo Serafin +1127102,Adriano Tagliavia +1638334,Danielle Stott-Roy +1679408,Ronald S. Kass +1438822,Nadia Turincev +1302524,N. Connor Eberhart +1291963,David Harper +1297765,François-Xavier Chanioux +56302,László György +61989,Theresa Eastman +1658454,Iain Abrahams +1394787,Juan Carlos Caro +20326,Gary Ashiya +1462313,T.K. Knowles +939531,Gill Champion +1406412,Kostas Kefalas +1154458,Christopher Neil +1583634,Jarrod Wilson +1647030,Brianna Ruben +1114037,Sharon Farber +1430515,Gary Cooney +1512743,Tim Norman +1555460,David Lang +1729726,Cesare Noia +1423431,Dmitry Lavrov +1411219,Aline Joyce +1511129,Edward Gamarra +1851919,Bradley Hayes +1044221,Roberto Revilla +108764,Mikhail Kalatozov +126130,Daniel Birt +1400019,Dan Engle +1753238,Erin Mast +1458581,Tony Rivetti Jr. +1328758,Matthew Llewellyn +79285,Arancha R. De Buen +1290785,Oliver Dungey +1299867,Lex Ortega +930010,Kristen Adams +138855,Åse Vikene +1545926,Kirsty Mcqueen +1331052,Pierre Isoard +1013132,Manish Gupta +1571054,Joshua James Johnson +1590387,Raymond Wai-Man Leung +229735,Roman Davydov +1877772,Qun Gao +1815397,Vaja Gigashvili +230094,Eben McGarr +1396400,Birrie le Roux +1770984,Lila Sara Tahri +1574550,Ali Abbasi +72589,Catherine Keller +1650721,Clémentine Le Roy +1512760,Jennifer Manton +1636857,Wim Vanswijgenhoven +1726034,Kat Gore +87534,Seon-mi Kim +1401759,Mike Fitzgerald +1434782,Hannu Peltomaa +1193300,Ludwig Fulda +1378684,Harrison Yurkiw +1444956,Forbes Noonan +71622,Olivier Bugge Coutté +1229515,Daniel Rappaport +1410579,Jason Piccioni +1120227,Rolf M. Degener +1780092,Meghan-Michelle German +1039265,Shaun Brennan +587568,Eddy Graham +224687,Daniel Lindsay +1328181,Ashley Maynor +1308227,Brian Jones +6525,José Antonio Félez +1518670,Raúl Acín +1020818,Matthew Smiley +70270,Maurice Jacquin +73010,Leah Striker +1085028,Pedja Radenkovic +1530755,Marc Hirschfeld +1172029,Renaud Chassaing +1620543,Sayed Mohamad +1466663,Heather Leat +73064,Holger Fleig +1114557,Joe DeMaio +1322106,Maribel Rees +1570376,Javier Mateos +111577,Harriet Parsons +75575,Genevieve Hofmeyr +110071,Dione Orrom +59338,Sven Unterwaldt Jr. +1876194,Wendy Griffin +1015725,Paul Hervey Fox +1594184,Luiz Gustavo +1815939,Jan Reichmann +1385153,Adolfo Cabiedes +1405267,Deborah Zercher +1641935,M. Chandrakumar +225054,Sean McLain +1653024,Kharmel Cochrane +1460624,Celia Jepson +225721,Georgiy Kropachyov +73844,Eli Selden +1325558,John Walls +1377053,Ernie Jackson +1528026,Adenike Wright +17012,Christoph Müller +1547494,Genzô Furumiya +1630980,Oren Edenson +994163,Lee Friedlander +1417938,Racheal Forbes +1418444,Matti Huhta +80673,Robert Reece +1510431,Stefano De Nardis +1200686,Anatoli Kim +1367814,Guillaume Bouchateau +88141,Rahul Dev Burman +552615,Titus Ho +128947,Jeremy Kagan +230714,Sergey Ginzburg +1127724,Zoe Chen +1828334,Bill Franks +1453128,Nebojsa Slavujevic +1173667,Hugh Kelley +1700118,Adam Kimmerlin +1313050,Christopher James Harvill +1086254,Earl Rath +58499,H.B. Halicki +1453136,Nicola Benizzi +1496225,Roxanne Fie Anderson +1545982,Liz Mann +1636662,Blumes Tracy +1585998,Salvatore Cotroneo +36466,Jessica Schellack +1080454,Rodney Becker +1243079,David A. Rosemont +124335,Scott W. Anderson +550535,James Canon +1868473,Jedrzej Kowalski +73582,Ali Olcay Gözkaya +1341767,Gita Jamshidi +1525829,Bettina Pontiggia +1676309,Jeff Jacks +19397,Lloyd Ahern +1555300,Ronald G. Muhammad +1425400,Ben Lowe +57454,Jonathan Jakubowicz +1174351,Anina Diener +65625,Shari Goodhartz +1460478,Jeff Williams +1520597,Lauri Cuppetilli +1121616,Nick Nunziata +1417863,Jed Dornoff +1295499,Sangmuk Choe +1402906,Antoinette O'Neill +1210160,Tamás Lajos +575797,Federica Lucisano +1416454,Bernard O'Reilly +1204187,Pascal Trottier +229269,Marco Martani +1722908,Peter Hahne +1140441,Dawn Porter +1302967,G.W. Pope III +1444884,Alec Mouhibian +1058221,Peter Gorski +1668653,Kiran +1027022,Kevin McKeever +24446,David Keller +1857017,Marija Harz +992767,Linn-Jeanethe Kyed +1429626,Miranda Davidson +10907,Stéphane Foenkinos +1452920,Kelly Mazurowski +106964,Pat Williams +1869024,David Parker +1367131,Matthew Whitehurst +1045750,Thomas Scott Stanton +59002,Michael Dounaev +1460815,Nick Worsfold +140374,Kristian Fraga +1706384,Eduard Kolmanovsky +1282039,Luke Massey +1551159,Steve Borgese +41024,Alexandre Nazarian +1599480,Normunds Klavins +73910,Sabine de Mardt +1357610,Richard Wilcox +91059,Daniel M. Stillman +990139,Hannah Beachler +567344,"Bryan ""the brain"" Mantia" +1337979,Stefano Tell +1097857,Yoram Gross +1156991,Amanda Phillips Atkins +41009,Horst Springel +1583301,Marc Shulman +225708,Rodolfo Zamora +1828380,Jessica Hayes +1842157,Liz Oliver +1537708,Nick Wales +1708029,Earle Dresner +1439845,Juanjo Javierre +1638555,Chris Gibbins +1400508,Emma Cooper +1344838,Rachel Weir +1078260,Yo Yo Honey Singh +1815723,Angus Munro +102329,María Ripoll +161573,Don Mitchell +963170,Happy Massee +1287630,Ashley Fenton +1083154,Cameron Cairnes +941580,Constantine Giannaris +23176,Uwe Wriedt +1061056,Thad Spencer +4631,Jörg Hauschild +1658448,Daisuke Nagata +1409890,Jen Susman +7625,Steve Ditko +497664,Steven Ritchie +1373119,Bogart Rogers +110706,Ramanan Krishna +1603901,Maria Coveou +65248,Marco Chimenz +1841566,Ellie Boren +928644,Wouter Jansen +1431111,Milenco Galipienzo +1506364,Jim Alan Cook +144326,Benjamin Hessler +1012629,Yasushi Shiina +1048391,Stephen Bowen +1029044,In-soo Radstake +1417175,Hayley Jane Ward +1670620,Robbie Praw +1195345,Ron Balicki +1545023,Lisa Shanley +1325570,Anil Mohile +1518666,Pau Bacardit +1462817,Rizal Risjad +1120640,Amir Fishman +117071,Kitaji Ishikawa +1722920,Michiyoshi Takashima +1400484,Simon Leclère +75143,Nik Dorning +928949,Khadija Zeggai +49888,Jimmy Lifton +233066,Vikas Bahi +1321934,Joshua Lou Friedman +33715,Peter Bezencenet +130851,Brian Betancourt +76929,Steinar Kaarstein +67945,Elik Alvarez +71386,Olivier Laurent +1579042,Dana Kalder +1481518,Antonio Fraga +559147,Tina Winholt +64281,Dennis Smith +1046225,Rodo Sayagues +220303,Grant Morrison +126763,Vivek Agnihotri +131539,Graham Frake +1372215,Andrea Lazard +1763410,Nitin Rana +1643882,Casimiro Dengra +1324074,Luis Flores +1401772,Ned LaGrotta +33183,David Bowers +1635290,Jeannie Cummings +7835,Mario Giordano +129147,David VonAllmen +1299107,Rebecca Micciche +56141,Irvin S. Yeaworth Jr. +15329,Lizzy Gardiner +1638142,Gunnar von Voss +1520692,Carol Sadler +1313755,Sara Shaw +16794,Andreas Prochaska +93189,Aimee Shieh +1275387,Patrick Daly +68821,Crystel Fournier +1808364,Jacqueline Blundell +1127649,Simon Last +231501,Seon-deok Park +1571354,Renato Fiè +939557,Cody Westheimer +1387385,Clare Nia Richards +1402907,Paige Walker +1202530,Melany Mitchell +1450401,Joan Mao +1449419,Maksim Dunaevskiy +1520598,Vicki Stefanopoulos +240922,Erico Menczer +1467953,Mo Vorwerck +1457911,Michael Innanen +119784,Gilbert Cates +1558717,Kristen Leigh Branan +79941,Kikumi Yamagishi +554492,Hideo Tanaka +1780156,Hannes Ullmann +43159,Niamh O'Loan +1087547,Nicki McCallum +34682,Jeremiah S. Chechik +1396479,David Hinojosa +1568551,Marc Pilcher +1367912,Ron Payne +1553461,Vicki Thomson +1493313,Péter Gál +69712,Jatin Pandit +116209,Juan Carlos Bertola +1544180,Sandy Wilson +1023347,Joshua Altman +156332,John Castellanos +1555493,Sylvia Vidaurri +88061,Ray Gower +1201564,Pedro Ribeiro +573552,A.C. Gamer +1430295,Vedran Marjanović Wekster +1807832,Tushar Paranjape +1853924,Bret Davidson +1676445,Gardner Gould +1650623,Eliana Álvarez Martínez +118314,Rudi Feld +97634,José Antonio Pérez Giner +9120,Rob Houwer +24286,Giuliano Taviani +1394652,Chris Teague +1301335,Yozo Tokuda +1797452,Amaya Valentina Gonzalez Perez +1546455,Sonya Lunsford +1296107,Kim Young-tak +1409453,Julie Parker Benello +1098026,Marco Lodoli +1488429,Koichi Ishiguro +18064,Michael Karen +1630068,Paolo Cafiero +1894780,Karuan +569515,Sune Waldimir +1817863,Marc Bonny +1574316,Anja Uhland +1044263,Ei Ogawa +1206490,Richard Fall +1407372,Adam Ohl +1315181,Hiroo Maruyama +131079,Yao Wang +141752,Bryan Edgar Wallace +108499,Manuel Gómez Pereira +1760561,Steven Blizzard +1537184,Christian McLaughlin +1232621,Pamela Ribon +72478,Alfredo Bini +1506360,Courtney Cocherell +1428551,Caroline Bowker +1849505,Derek Oxley +1433684,Makoto Asanuma +1125212,John Meighen +1489784,Enat Sidi +1396755,Kathryn J. Schubert +1646405,Shankar Suri +10178,Michael Reed +237474,Miguel Lluch +1183421,Eyal Rimmon +1168715,Kenny Gage +1379212,Richard Tannenbaum +1608315,Alexander Kotelevsky +1014694,Michael Lira +969084,Jim Butterworth +1346942,Gwilym Perry +1616988,Carlo Lucarelli +1728460,Libby Cuenin +1201976,Dana Bieler +89616,Luther Reed +12655,Barbara Lane +1350870,Jean-Claude Nachon +1866376,Peter Kent +1089634,Wang Yi +1367430,Antoine Simkine +57102,Manfred Brey +939440,Marilyn Ness +1457937,David Edwards +1357065,Samuel Painter +1425662,Neill Treacy +1395034,Donald A. Kraus +1308182,Tom Shrider +1572866,Joseph Micomonaco +144490,Frankie Tam +1483141,Stuart Bullen +1351472,Abraham Seiman +91151,James Fanning +1080784,Julie Payne +156832,Linda Burden-Williams +1711434,Satoshi Akabane +144422,Edet Belzberg +1170786,Takahiro Yoshimatsu +1580895,John P. Nugent +1165763,Céline Guignard +1412920,Marion Gaillard +1593465,Võ Tấn Bình +1707966,Michael Favelle +129975,Ben Queen +1722969,Vladimir Korovin +1530251,Caroline Ohmert +1646537,Cynthia Rodriguez del Castillo +1636538,Keith Munson +231750,Oi Wah Lam +58357,Dana Robin +1074508,Caroline Bacle +57232,Thierry Machado +1422144,Greg Lisi +937613,Christopher Moll +1635333,Roman Santa Croce +90415,Brent Buntyn +1281191,Francesco Calogero +64610,Ken Sinclair +975212,Alberto Vázquez Figueroa +1412917,Daniel Perez Ferreira +1208813,David Gruer +1000854,Nathan Halpern +68453,Gianfranco Transunto +1152089,Christophe Bruncher +152510,Ian Barry +1618636,Leah Aldarondo +1454975,Clara Royer +138873,Michael Tyler +1419635,Brian Quill +1533564,Claudia Pascual +1357872,Tim Waddell +1310363,Akira Nagai +1649192,Julian Quantrill +1828310,Sara Bold +1403394,Blake Le Vasseur +1062346,Kentaro Koike +1796327,Todd Watson +1277645,Fuad Abed Dalton +1318814,Virginia Johnson +1317872,Jesse Thomas Cook +1640807,Vishnu Govind +196263,Jerome S. Gottler +136397,Willard Wiener +968298,Mercedes Gamero +1814964,Dean Menta +63954,Gilles LaPlante +5194,Daniel Gottschalk +32528,Wolf Brauner +54567,Éric Névé +75855,Cliff Charles +1244653,Marc van Buuren +1606179,Isabelle Pragier +1167220,Bethsabée Dreyfus +1321698,Suzanne Aplin +1820913,Pascal Chevé +1529878,Justin Merz +1185208,Hugues de Haeck +1484196,Sebastian Butenberg +550948,Çetin Inanç +1620757,Achilleas Charitos +1570605,Bernard Gariépy Strobl +1113289,Watt Key +1006734,Jaimie D'Cruz +999812,Bradley Parker +1489713,Juan José García Caffi +107533,Cristi Puiu +1143476,Rafael Palmero +1170280,Gene Abel +1045137,Susan Bluestein +1688357,Cristián Kaulen +588736,Matt Wolf +1180038,Hirohiko Satô +1705477,Habib Louati +1461214,Emil Bartek +929057,Raul Perez +1409444,Joel Harris +1191324,Eric Lomax +554860,Tsuneyoshi Saito +1473412,Liz Bernard +1536187,Erik Daniel +1103539,Jonah Quickmire Pettigrew +993880,Kikuo Ohta +1468855,Joey Kuhn +120165,Lee Zavitz +4354,Paul Eagler +1033139,Morgan Bushe +967417,Brandon Cox +1490951,Bob Bates +1281268,Maureen Petkau +1468547,Blythe R.D. Quinlan +1090951,Taron Lexton +1484208,Dennis Jones +1810186,Kathy Ann Thomas +1053939,Nigel John Stanford +77362,Sheldon Wilson +582807,Christopher Peterson +50716,Cari Coughlin +1384363,Blanche Moreau +1460854,Andreas Grünberg +1642514,Ernst Hammes +1271794,John Askew +122906,Isadore Goldsmith +999764,Ben Pugh +1423006,Sara Jamieson +1004120,Matthew Tabak +1093160,Jennifer Twiner McCarron +1571126,Fernando Alé +1457427,Jon Goracy +1301993,Dušan Jeričević +1665252,Chinny Onwugbenu +1609033,Colin Bohrer +1078710,Berj Bannayan +1522313,Zeus Zamani +21156,Oren Aviv +86358,Robert Presnell Sr. +46037,Felix Hock +1269371,Therese Naustdal +1831339,Tomohiko Saitô +1503691,Jörg Ellmer +1153035,Roland Schwarthoff +96810,Fusako Shuzui +51414,Wilhelm Hauff +1404824,Kara B. Still +206476,Mikkel Nørgaard +1322466,Stacy Horn +1480520,Kim Kwang-tae +1433848,Ted Saizis +1653680,Daniel Frank +548598,Randy Daudlin +1393435,Jim Wallis +133239,Roderick Wilkinson +1332520,Riccardo Eberspacher +1582692,Aisha Saeed +1727200,Stephanie Durkac +566968,Laura Hyman +1400317,Simon Varsano +1731198,Goldie Behl +1616019,Jesús Díaz +543846,Frédéric Fortuny +1691502,Brittney Diez +229536,Danijel Hočevar +583767,Hari Sathappan +103066,Walter Reilly +223965,Giulio Manfredonia +1550769,Patricia Martinez Arastey +1297711,Anrijs Krenbergs +970186,David Mimran +1453852,Vigen Vartanov +1568951,Mags Linnane +548020,Toshirô Ishidô +1583173,Kathleen Rottweiller +228261,Jürgen Staal +1390092,Maurice Serein +1815643,Marcella Elisa Caudill +1415610,John Paul 'J.P.' Jones +60111,Mike Romano +57005,Robert Gernhardt +1519289,Julia Lechner +1463687,Eric R Salas +1570589,Chaitali Nazirkar +72194,Haile Gerima +1411042,Pål Ulvik Rokseth +1714064,Maria Teresa Carli +1375173,Bartosz Chajdecki +1024814,Maya Stark +1447322,Lenord Robinson +1175869,Sachiko Yamaji +1627138,Kenneth Garside +1712793,Chelsea Boothe +1735072,Jeffrey Soros +1324118,David Atherton +1622813,Christian Cottet +1559367,Johnny Askwith +1814998,Linda Mencheng +1388895,Dave Hamilton-Green +1617688,Koo Yuk-Fun +1838053,Ronn Burner +1722222,Jean Vandermeiren +1294341,Roger Harvey +1444290,Paul Capuano +148321,Ryan Larkin +1001014,Otello Sisi +1012028,Danielle Aufiero +93061,James Handel +1460752,George Constas +1585747,Kaz Rassoulzadegan +557252,Charlie Byrne +1398646,Edison Denisov +1733919,Oliver Roskill +1646576,Bruno-Pierre Jobin +1511016,Thairon Mendes +1728517,Kelly Rae Kenan Green +933231,Rauf Mamedov +1692901,Daniele Di Biasio +1123196,Elba Sanchez-Short +1738122,Louis Delavenne +1076757,Arkadiy Tigay +128702,Mitsuyo Kakuta +95510,Sujoy Ghosh +1093243,Reynir Lyngdal +934032,M. Blash +1092489,Hans Mahlich +1554365,Catherine Chase +1818795,Chantal de Vismes +41222,Arthur Allan Seidelman +1326737,Alfred E. Spencer +1539789,Stano Mozny +25169,William Austin +593164,Khan Zaman Khan +1756296,Andy Burrow +1495527,Alexey Andreev +1416945,Andrea Porteous +1397278,Chester Biolowas +225722,Konstantin Ershov +1407032,Deborah Muscarello +1706354,Husain Qaizar +1680195,Tikhon Khrennikov +1571512,Teri Ann Uccan +1089579,Sommai Lertulan +1588198,Jay Cusack +40820,Robert Farr +1446540,Chuck Seaton +131601,Joseph Shearing +41302,Ole Nicolaisen +1357880,Serena B. Miller +1124113,Alex Ezard +103486,Charles Sinclair +584304,Jacques Charon +1713069,Charles Carter +317313,John Baines +1189782,Gunārs Piesis +89133,Ichirô Miyagawa +1317464,Simon Rogers +1829853,Paul Worley +1609371,Hank Langlois +1473411,Benjamin Darras +1733141,Christine Orth +584495,Chandra Haasan +1336499,Mathew Harawitz +119326,Douglas Myers +1244885,Helmut Krätzig +572245,Cyril Ximenes +64485,Brian Chung +17599,Bernard Bellew +9082,Harold D. Schuster +1642534,Mei Chu +1468977,Dwjuan Fox +1415897,Jeff Derushie +123017,Ahn Byeong-ki +230978,Sai Paranjape +1795212,Aladdin Pojhan +1247747,Jerry Hamza +1491596,Chris McCoy +1199827,Greg De Marigny +1204938,Engin Orbey +1905065,Rebecca Flores +1368193,Joanne Cheong +1006751,Belle Borgeaud +1099213,Dave Montrose +1170812,Federico Contreras +165770,Harold Gast +1152811,Oscar Fogelström +1530409,Isamu Shiina +1309483,Diego Ros +1661331,Victoria Wagner +1547658,David Lebensfeld +61850,Irina Kotcheva +1439099,Ian Forsyth +1421794,Mikey Jechort +5976,Erik Norberg +1419092,Denis Leining +221490,Christoph Stark +1547698,Dustin Tittle +1824247,Luke Gray +1095339,John Jay Martyn +91848,Richard Christian Matheson +1048929,James Jandrisch +1461548,Cherie Banks +1790518,Kim Winther +994387,Glenn Takakjian +115906,Yoon Jae-goo +1455610,Tony Mecca +1648277,Beata Walentowska +1079379,Treva Wurmfeld +1719069,Caleb Vetter +1097598,Oliver G. Hess +1636733,Edward Hanrahan +1408387,Martin Chamney +1096189,Ruengwit Ramsoot +1661026,Alina Shraybman +1362519,Matías Cruz +933250,Emil Knebel +588123,Ivan Ufimtsev +1195235,Brigitte Henry +211671,Paul Robertson +72922,Heidi Genée +233360,Nick Stagliano +1721876,Daniel Feighery +78491,Laurent Turner +1404916,Rosalie Wallace +1056201,Josée Lajoie +1043346,Raam Laxman +1044803,Wojciech Marczewski +1360145,Snow Zou +1850517,Travis Mann +1097077,Mikhail Volpin +63516,Jeff Sussman +173190,Ron Daniels +1828336,Art Pisanski +1473447,James David Hattin +1859547,Blitz//Berlin +78195,Martin Musatov +170115,Michael Switzer +1206105,Huberta Von Liel +1176357,Barbara J. McCarthy +1085603,Stephanie Kae Panek +1426211,James Chai +1048491,Miguel Hermoso +1359001,Adriaan Ditvoorst +1396168,Peter Warnier +929111,Michael Shumway +140396,Miguel Ángel Vivas +1395315,Robert Webber +1711771,Hiroshi Ohkawa +1156076,Austin Hargrave +1571517,Daniel Bombell +1583553,Paul Booth +132946,Takumi Tanji +150339,Emilio Carballido +1115114,John K. Adams +1462003,Dave K. Komorowski +1813315,Mark David Spencer +1379046,Richard Kondal +1294608,이상현 +1098477,Callan Brunker +1407345,Charles Rapp +1579533,Frank Baran +1642576,Stefan Herrmann +1536974,Jen Ralston +1298948,Almuth Brandes Pizzo +1419728,Michael Svitak +1797495,Andy Powell +68963,Richard Fiocca +1179436,Andrea Raffaghello +1293989,Matthew Freund +148609,Samuel Beckett +98780,Laura Toscano +1283131,Mário Castanheira +1864634,Iwan van Wijk +1797240,Andrew Shea +1552778,Chris Fisher +1575336,Moira Shaughnessy +1571055,Stephen Taylor-Wehr +61048,Ricardo Del Río +1485184,Mike Palma +890990,Sébastien Buchmann +1780178,Gabriele Bahmer +113040,Gordon Anderson +33781,Gilles Grangier +57569,Lee Sheward +1170313,John Hunter Booth +56712,Oscar Wilde +1134531,John Williams +1179251,Paul Jensen +67924,Steno +929727,Marcelo Galvão +1472144,Kimberly Parker +87355,Mastan Alibhai Burmawalla +121861,Khwaja Ahmad Abbas +1601643,Cailan Calandro +1334496,Ty Teiger +1167473,Burk Sharpless +1775628,Rafaella Costa +69220,Sabine Mahr-Haigis +41848,John Frankish +30060,Kurt Altschwager +1508118,Ross Bernard +1747219,Christina Horgan +1002497,Tom Brown +1118300,Maurizio Totti +1368880,Yavor Zahariev +1550883,Wilhelm von Kaufmann +1076067,Christian Piers Betley +1273533,Alexandra Long +557673,Lou Huijs +236539,Jordan Vogt-Roberts +111231,Ryo Sugimoto +208119,Peter Templeman +1431571,Daniel Nielsen +550482,Charles Eames +1355539,Helen Kok +34110,Oren Moverman +57055,Mitchell Lichtenstein +228937,Philip H. Reisman Jr. +1580833,D. Martin Myatt +1446134,Madelaine Frezza +132876,Brad Peyton +168223,Gerald Shepard +1522888,Carin Berger +1635242,Lauren Gentry +968632,Olivier Courson +1367807,Virginie Irdel +1439421,Joe 'Lazer' Carter +1845777,Ryan Lee +1486381,Martijn Heijne +1099257,Jason Weiss +1545301,Sven Lindahl Ranelf +1427834,Mark Heslop +1797480,Yasuyuki Otsuki +1426062,Pip Williams +1539763,Patrick Murphy +1321390,Hicham Hajji +88559,Brian Spears +1023503,Aaron A. Goffman +1286354,Dennis Pike +1703125,Lisa Chavez +1001957,Robin Nations +32417,Sandra Schulte +36117,Norman Rosemont +1401889,Anna Kadykova +146940,Kona Venkat +1483980,Rob Alexander +1732092,Jessica Williams +51892,Erwin Gitt +92236,Mathieu Charest +109195,Toru Nakano +75139,Jane Usher +1454993,Nenad Marković +1049453,James Achor +1113868,Hreinn Beck +1657548,Ricky Lloyd George +1316586,Stacey Pianko +1317163,Masaki Naito +1428045,Oge Ugwu +1616065,Jo McLaren +1704828,Roopa Vait +1877784,Junjie Zhao +1278722,Trish Sie +1428914,Jessica Brooks +63989,Julie Yorn +1616460,Wayne Eaton +18567,Alain Belmondo +1852957,Shannon Barrett Prynoski +543330,Vicente Escrivá +1451541,Janelle Scuderi +1283569,Sergio Bambaren +1061941,Hafsteinn Gunnar Sigurðsson +1699377,John Elliot +73391,Frédéric Berthe +1017989,Humphrey Pearson +1766581,Xia Yongkang +1836962,Danny Park +1512025,Joey Evora +1563390,Leonid Kayukov +94045,Bill Corcoran +1354332,Rudeewan Veerothai +1797516,Luca Brett +17623,Guillaume Nicloux +100908,Sebastian Moi +1777177,Věra Kutilová +1349473,Fae M. Smith +1820879,Kaarel Kurismaa +1499159,Forest Sala +239263,Duane Hopkins +1306689,Daniela Menotti +111456,Michael L. Sale +928131,Noah Harlan +1759323,Philip Bak +1458988,Rose Librizzi +1448119,Tony Hinchcliffe +930212,Jon Erwin +1213170,Allan Heinberg +1003244,John Barba +1830504,Sheryl Ptak +1533252,Bruno Garotti +59938,Noah Segal +112493,Lars Sundh +1499808,Kim Leoleis +102668,Arnold Fanck +1831216,Helga Bumsch +1792024,Henriette Dellemann +1272619,Behnam Behzadi +30685,Ray Markham +1302593,Frantisek Fabián +65217,Annie Bloom +126566,Giles Foster +1708046,Elizabeth Leslie +1562408,Andrés Moret Urdampilleta +1084797,Dana O'Keefe +1350808,Sarah Schultz +1569338,Marten Coombe +1459120,Amanda C. Griffin +1353672,Camilla Costanzo +1783010,Glyn Jenkins +91584,Tony Rayns +1137589,Ken Pringle +1584353,Jerrold Chong +1661028,Vanessa Rodríguez Murphy +1546459,Erik Bernstein +1611982,Steven Brower +8466,Mikhail Romadin +1748527,Nick Kargel +1894736,Dean DeMatteis +1473910,Matthew Chavez +1686959,Josh Bell +81853,Shigeyasu Yamauchi +137123,Bob Costanza +1403506,Brian Reali +1765455,Malin Leuchovius +1460600,Henry Fong +1746249,Merran Elliot +1475736,Sophie Durham +1475410,Søren Green +1429345,Rose Leiker +1636666,Michael W. Silver +1413505,Babak Eftekhari +108486,Stephen Reynolds +1539320,Plamen Slavov +1854460,Tara K. Clark +1752036,Augusto Diamanti +1053668,Asche & Spencer +1044492,Stephen Perkins +958239,Tory Tunnell +148863,Dorothy Fields +772,Danilo Bach +1524269,Jörg Tittel +1024179,Eugenie Jansen +1086964,David L. Corley +1080762,Ivan Hlas +1493981,Nicolas Emiliani +124704,Christian Richter +1900645,Anatoly Petritsky +100289,David L. Hewitt +1457010,Blain Watters +1547666,Robert Zalkind +155742,Steve Granat +1427404,Andrei Surotdinov +1599839,Svjetlana Gutic +931778,Clarence Fok +66493,Sunday Boling +550898,Lori Jesneck +3225,Nick Hornby +1174357,Stan Cornyn +76813,Ram Gopal Varma +1478652,Helen Kim +1411133,Stephen Brayne +1850524,Susan R. Prosser +233080,Hubert Boorder +587439,Jourdan McClure +1416950,Keith Tunney +1353233,Yoshihiro Kitayama +1301845,Zrinko Ogresta +1649160,Galilé Marion-Gauvin +160124,Paul Brown +1291071,Renato Libassi +1331138,Jason Mueller +1379168,Bob Presner +1641769,Filippa Wallström +1676437,Prasanna Karkhanis +1642595,Jörn Radel +1460603,Dhumal Sagar +51246,Alfred Stöger +131228,Irving Starr +1646865,Marguerite Rousseau +1336431,Crystal Woodford +1537054,Bryce Olson +1632790,Kyle Clark +1459742,Akemi Abe +85055,Aashish Singh +1306690,Pietro Freddi +270400,Susan Coyne +229965,Christopher Ward +1347153,Isidor Simkov +1763423,Rita Shetty +1068598,András Szekér +1452995,Stewart Alves +1333660,Kerry Mondragon +1106751,Tommy Harper +232498,Kate Brooke +1278671,Joe Russo +57160,Steve Robbins +1568831,Rachel Bris +1399459,Christopher Kay +1591730,Sharon Greene +1274512,Clare Sera +1616769,Conrad Woolfe +1724680,Jens Teutsch-Majowski +1434541,Gina Calin +1281685,Patrick Hibler +1460587,Tommy Frazier +79756,Henri Blomberg +54743,Tim Lewiston +1687756,Alla Oleneva +870728,Anton Sattler +1399892,Lisa McNeil +1246866,Adam Shulman +1600785,Erion Spada +1414090,Tina Earnshaw +1659165,Sean Thompson +60621,Jeff Franklin +1358026,Ben O'Farrell +935866,Kent MacKenzie +1460820,Patrice Ryan +95894,Russell T. Davies +1790946,Andrii Zavolokin +67169,Arnaldo Catinari +88560,Pete Gerner +12895,Ed Catmull +1415517,Donna Jenkyns +1001767,Çağrı Erdoğan +3972,Wentworth Miller +1611577,Cheyenne Peng +1402093,Neal Champion +587783,Glen Salzman +1412152,Morten Rasmussen +185455,Bert Ring +1097192,Michael Meilander +1454382,Sheri Davani +1586586,Attila Dóczi +1419726,Maarten Kroonenburg +1099943,Brenda Carlson +1574046,Malwina Suwinska +54926,Sean Bobbitt +928567,Jim Meenaghan +81796,Héctor Cabello Reyes +72678,Franco Bixio +25060,Jana Carboni +1640301,Rajsekar Karpoorasundarapandian +117578,Frederick Bain +1417312,Theresa Guleserian +1111686,Jacques Vriens +51893,Stipe Gurdulic +186,Yoko Kanno +1739852,Ashley Mills +57161,David Burr +1149698,Carlos Fuentes +90823,Robert B. Alcott +1155532,Jay Keitel +972151,Lisa Mitton +1603895,Manolis Vitsaxakis +1428009,Mia Askerlund +1346592,Eric Alter +52993,Bruna Papandrea +1022293,Kathy McCoy +407795,Karen Lovell +1605314,Barry Crump +1106882,Nick Apriashvili +1239407,Drew Pearce +1628089,Nick Smith +239357,Ichirô Ôtsu +1586803,Kunal Mehta +1541995,Sueyuki Kajiyama +1031761,Brian Curley +570486,Jin Aketagawa +53530,Sean Guest +1368850,Alexei Karagyaur +1466434,Robert Byrne +1152678,Vinca Wiedemann +1256987,Naoko Hasegawa +1734421,Andrea C. Pabon +1533541,Alexander B. Hill +1283953,Dave Sywenski +1121585,Howard E. Johnson +1507957,Piernicola Di Muro +130080,Frank H. Woodward +223428,Jaroslav Uhlíř +570176,Maurizio Lodi-Fè +1865918,Simon Baber +1473017,Jean Baronnet +1400491,Dan-ah Kim +1646603,Belly Mingmuong +572352,João Mendes +1542493,Guy Cavagnac +1454502,Nicola Moroney +226347,Julia Solomonoff +32874,Christian Larouche +1173952,Kuldip Sood +610747,Prakash Mehra +1627136,Ioana Ellna +1506377,Daniel Barrett +1008091,Michael Robinson +1548100,Miguel Barbosa +1461133,Elizabeth Humphrey +579281,Eric Pearson +1637923,Nicolás Rueda Jr. +1582128,Pedro Delgado +1603906,Maria Coveou +1403863,Beau Chaput +131721,Joe Morhaim +1437958,Elle Baird +1410018,Edith Bieber +1552363,Barrett J. Leigh +1514148,Tara Colledge +1765162,Ayush Saini +41713,Marc Maurette +1448872,Ryan Glover +557899,Patricia Foulkrod +1767430,Ralph Hall +1066333,Rui Costa Reis +1379089,Frederica Sagor +1216549,Gwen Davenport +115666,Phil Hawkins +1574434,Demetri Portelli +930641,Daniel Tattingham +1864623,Sofie Silbermann +1597063,Rositza Kamburova +1018467,Brice Dal Farra +1480653,Kurt Aeschbacher +1810672,Eugene Yi +1577908,Sarah Boutin +53610,Holly Mosher +1369376,Ryan Briley +42413,Shai Goldman +1815618,Rick Cramblett +1285880,Carter Mays +1584104,Bettina Strauss +928318,Linda Appel Lipsius +1081105,Leslie Swabacker +1305741,Courtney Daniel +1768800,Akshay Jayantilal Gada +1568957,Mairtin Mac Donnacha +1759795,Jamie Lewis +57281,Sita Vosbein +1402661,Jasmin Csisvic +1294086,Juno Lee +1830591,Ryusei Hasegawa +1502721,George Murphy III +935304,Don Ryan +60922,Josh Gordon +56363,Donald Zuckerman +1352404,Aristophanes +1096204,Bobby Martin +18710,Marcus H. Rosenmüller +1487711,Remo Tozzi +35306,Diane Duane +1307397,Masahiko Iimura +1084757,Scott Kramer +29086,Daryl Porter +1620168,Isidro Muñoz +1511482,Patrick Solomon +1412718,Hristo Genkov +1817404,Daniel Dronsfield +1096192,Ekasith Meeprasertsakul +587089,Umesh Vinayak Kulkarni +1476143,Matteo Bini +1316517,Estee Yacov-Mecklberg +1745610,Ernie Freeman +1595266,Jaanus Vahtra +1526963,Rachel Gold +215996,Michael Burns +1095403,Yôko Narahashi +1198921,Jeremy Mackie +22031,Jack Bear +939454,Dureyshavar +1623932,Riley Mellon +1468596,Nicole Kalish +28155,Anthony Marinelli +1654416,Cory C. Myler +1418427,Tim Winchester +1585095,Willem Thijssen +1460037,Emily Rowan +565850,Antonio de Lara +1519819,Amy Arter +1662637,Marshall Stief +65961,David Chung +1261682,Rob Givens +1169876,Laura Immonen +1526544,Stacey Panepinto +101361,Shuhei Morita +1326451,Thomas Brown +1519295,Harvey Friedman +1032520,Erik Løchen +773124,Matthew Crawford +58324,Jean-François Richet +1506014,Gary Cheng +1735354,Sui Ishida +1338136,Randy Wilson +1771036,Vicki Rosenberg +30800,Nils Hofmann +138631,Brian Wade +1662781,Gianna Montelaro +22096,William B. Murphy +1495530,Patrick Longman +1465937,Kira Kemble +1125546,John Albanis +111213,Frankie Pine +1691491,David Boudreaux +224717,Otto Carlmar +1429325,Bill Boyd +1576722,Adrian Dexter +56957,Tom Szollosi +1371631,Harry Harrison Kroll +60618,Ray Cooney +112044,Max Brooks +1286574,Nathan Ruyle +1411137,Jonathan Spencer +1443211,Aimee Scribner +1833825,Steven St Arnaud +1127438,Masashi Furukawa +1331167,Charles Sauveur Bonan +1730964,Allan Mowbray +229115,Filippo Macelloni +999876,Peter Pitt +1445964,Steve Burgess +1867722,Steve Mayer +1327898,Jacqueline Newell +1743939,Agnese Panarotto +109845,Walter J. Harvey +1529745,Kenichi Nishii +1109232,Santosh Verma +1762820,Scott Osowski +179612,Edmund Ward +1372205,Rochelle Harvey +558641,Marty Paich +1884721,Bruce Souza +137534,Klaus Schulze +980292,Jacques Lacerte +1276601,Lia Buman +1181166,Hiro Arikawa +1646980,Kazuya Minekura +567775,Aleksandr Vampilov +416868,Julian More +238307,Mikhail Mukasei +965436,Kyle Newmaster +933007,Gary King +992866,Takahiro Omori +1158430,Belinda Norcliffe +1824257,Andrea di Benedetto +1368907,Mina Laamo +1693556,Akio Tamura +1169891,Itay Segal +1532923,Jake Roberts +1407862,Brian Beaumont +228334,Alejandro Chomski +1646789,Ciara Rose Griffin +1152756,Winston Richard +1458945,Eric Dumont +1151805,Catherine Rigault +1585229,Tripper Stollery +1738651,Roy Malhi +1318297,Kevin Haskin +62270,Moshe Peterburg +107622,Steven Van Zandt +1031923,Philippe Pozzo di Borgo +1464979,Martina McGlynn +1570458,Rune Andersen +1830185,Kate Leys +1548098,Elizabeth A. Morris +1679097,Guillaume Lauras +1649855,Wlada Dabrowska +1699940,Lucía Martín +1023828,Kathy Saavedra +52952,John Kemeny +41186,Ralph Woolsey +236421,Denis Côté +558231,Jeff McEvoy +1432705,H. Kingsley Thurber +102294,Naoki Tate +1603706,Rodin Alper Bingol +1458198,Caroline Keenan +1367509,Bonnie Marquette +1618781,Marcus Zalewski +1026247,Stacy Perskie +23419,Philip Pullman +1373434,Magdalena Wolf +1743946,Cesarina Casini +83664,Kazuo Ishiguro +1123380,Toshio Masuda +1863919,Donna Meirelles +1672340,Emily Dundas +1153758,Ben Boye +929851,Hiroshi Hamazaki +1118138,Earl Husbands +1086386,Jason Lapeyre +1531775,Ace Underhill +1456622,Atsuko Otani +1621717,Justin Salerian +5428,Adeline Lecallier +1547659,Grant Miller +1609873,Mieke Vlaming +114866,Carmi Raymundo +1106881,Lloyd S. Wagner +1308144,Trevor Sands +71418,Demian Lichtenstein +109533,Marc S. Sterling +225711,Charles Hutchinson +1309888,Jeremy S. Brock +1399096,Erin Feeley +1360865,Hella Wuolijoki +1394637,Nana Ioseliani +1825160,Bayland Rippenkroeger +995467,Zelma Kiwi +92595,Gregory Tripi +571133,Leah Carnahan +1628113,Anousone Sirisackda +1425905,Ellen Freund +1384361,Norma Hill-Patton +930435,Graham Ralph +1542369,Pawel Polak +60536,Clay Cullen +1284454,Юрий Левитин +1429480,Chris Kraft +7441,Danny Glicker +1484219,Petra Svarinska +1511652,Jesús González Gancy +1706507,Cristina Acocella +48165,Stephan Wagner +1386894,Michel Merkt +1782424,Patricia Amor +131884,Cindy Kleine +1305783,Shin Hye-Eun +1038035,Robert Enders +3940,Daniela Knapp +33300,Jonathan King +1476760,Patrick Scola +1111709,Tom Putnam +1741052,Tony Hardmon +1611040,Aaron Brock +1349479,J. Storer Clouston +954932,Jordan Schur +1788179,Paul Byrne +1707971,Peter Szilveszter +103253,Meghan Jones +1537534,Jonas Ortega +931940,Manuel Compinsky +82226,Charlie McDowell +1324922,Louise Stanton +1312792,Petros Kapouralis +100980,Anthony Greville-Bell +1161117,Stathis Athanasiou +1601463,Giannis Protopappas +32594,David Henry Hwang +1154129,Roelf Van Jaarsveld +1615268,Stig Esbern +125508,William Luff +1635805,Christian Lindholm +1399476,Stephen Pardee +1496076,Lane Morlotte +1180768,Renzo Tarabusi +1409490,Tina Cleary +1202099,Roland af Hällström +1286745,Stuart A. Goldman +1536581,Julie Cummings +1609042,Anna Kooris +1650744,Yi Zhang +1871154,Rosalie Carew +1050961,Salem Brahimi +1344843,Nancy Breaux +1869442,Cortney Hillman +229307,Ounie Lecomte +75584,Tom Brewster +1583135,Chris Trent +1566006,Aaron Lubin +1339053,Jonathan Weber +1441217,Judith Csernai +1407714,Peter Armstrong +1602605,Ken'ichi Nishii +1544003,Luis Castro +1777488,Moya Iceton +113583,Ross DiMaggio +1815011,Stewart Nelson +1657560,Judd Hillman +1116084,Mustapha Barat +1582741,Laia Casanovas +1284289,ChungRyeol Lee +1583167,Facundo Nahuel Gómez +1407677,Andrea Dardea Tesdall +1605649,Aime Motomola +1583161,Darío Trivino +1769383,Aaron Garabedian +1525141,Matthew Kaplan +1570563,Paul Shanahan +1492771,Michael Porter +133083,Jon Manchip White +1399319,Jaimie Trueblood +1400500,Mikolaj Valencia +52344,Julien Rappeneau +145834,John Luther Long +1117111,Darcy Lueking +929998,Skrillex +1454383,Ben Conrad +1337646,Régis Boussin +1162324,Kristin Wolven +1084774,Sean Skelding +94241,Barbara Kerr +1017332,Umin Boya +583442,Walkiria Barbosa +1427447,Tapas Relia +1285390,John Bryant +12496,Dolph Thomas +131856,Ashish R. Mohan +593019,Kundan Shah +966617,Dominic Ianno +1074793,Peter M. Green +1591876,Shelley Morhaim +235922,Sergey Solovyov +1459851,Carolyn Cousins +1679608,Tobias Wagner +1604770,Gunes Coban +1639570,Eve McCarney +66174,Wayne Allan Rice +214121,Ross Wilson +144045,Winchell Smith +1636832,Jason Milversted +1392970,Tim Jacobsen +1452407,Burak Aksak +1491281,Marjorie Darunday +1391668,Jamie Hiney +1530402,Fumiyoshi Saijô +18434,Ariane Traub +1640319,Amit Ray +21493,Gan Yamazaki +1563657,Michelle Levy +1058959,Amaya Merino +1539050,Gene Anderson Jr. +1230219,Stuart Miller +1460033,Brooke Wheeler +1642381,Jen Moss +1694230,Scott Dolph +557669,Vincent de Pater +29473,Darryl Sheen +1417964,Jay Lafayette +1754126,Steven McRae +1881542,Jochen Gosch +1635737,Peter Milanov +231263,Douglass Biggs +1816349,Justin Tillett +1412459,Melissa Reed +933736,Paulo Cursino +1115718,Rob McLellan +1763942,Lila Rawlings +1732077,Genona Blue +78001,Juraj Jakubisko +1649729,Steve Calalang +1821932,Aurora Ann Quinones +1640817,Scarlett Mackmin +96812,Ramona Stewart +121585,Raúl Ruiz +1367922,Tara Cooper +1576123,Luis Abbadie +1519343,Mark Van de Ven +33368,Saul A. Goodkind +1618549,Javier E. Pérez +1498422,Howard Glazer +1025135,Yuli Dunsky +1373700,Will Coubrough +147001,Enzo D'Alò +35500,Mary Swanson +1695214,Jared Hoffman +96185,Guido Coen +1618806,Geoffroy St-Hilaire +40256,D.J. Caruso +60707,Stu Zicherman +84013,Pinchas Perry +1151389,Diego Dussuel +717,Eleanor Bergstein +1815006,Sean Leahy +1571052,Hallie Kutak +1574041,Sebastian Barraclough +1601942,Nicholas Martin +1128117,Jennifer Monroe +1128310,Richard Robertson +1650266,Dominic Byles +94280,Sunil Lulla +50091,Michael Obel +1699522,Lon Hoyt +1829366,David Muir +1407726,Brian A. Waits +51695,Melinda M. Snodgrass +1539406,Thomas Jamois +1072789,L.G. Bayão +1087673,Carla Ercolini +1630290,Neal Morris +99280,Mark Zakharov +1560958,Sally Post +1136962,Fusao Hayashi +1425374,Marko Anttonen +1582361,Jasmina Lilic +1141734,Michael P. Shawver +558763,Dejan Zečević +1565738,Bettina Seifert +1086497,Jo Sung-hee +1766039,Robert Roderick +1869088,Ginny Walsh +1615472,Kyôko Ôbayashi +1653095,Greg Denny +1758450,Witcha Suyara +1413094,Yale Hannon +1303391,Maya Hardinge +1541499,Stefan Razlojki +1316704,Matthew Flood Ferguson +1566498,Vito Frangione +1543193,Danny Molaschi +558790,Paul Hengge +1830750,Nicolle Hanbury +1044748,Enchô San'yûtei +1106628,Michael Luisi +3401,Tomas Villum Jensen +1418395,Joe Letteri +1825673,Luka Antonic +1152810,Pernilla Olsson +63868,Dalibor Matanić +113940,John Eldridge +10724,Richard Rodney Bennett +1338388,Carmen Agius +553061,Shun Nakahara +1830747,Christopher C. Fisher +583464,Joe Wicker +1289031,Victor B. Appel +1191336,Sebastian del Amo +83403,Malik Bader +1337625,Emily McAllister +229380,Brian Crano +1402206,Hugo DeLaCerda +1095724,Michele Cozzoli +1759815,Noel Albornoz +1595634,Drew Bienemann +124819,Tim Curnen +78979,James Renfroe +132597,Troy Hannett +146514,Kiat Sansanandana +1575347,James Price +231437,Roman Nepomnyashchiy +138895,John Vincent Curtis +55895,Si Rose +1797693,Sydney Gilliat +1414168,Aisha Walters +808746,Todd Fjelsted +1903939,Cariddi McKinnon Nardulli +592729,Dhamoo Punjabi +83176,Joaquín Bissner +62700,Lati Grobman +1175177,Miguel Torres +1377017,Michael Markus +1662690,Panni Lutter +1879681,Mark Koval +223854,Amit Trivedi +1594180,Luke Dood +1606177,Sarah Downes +1417887,Justin Carville +1705455,Peter Pav +1642005,Maajid Khan +1755193,Iván Márk +1317053,Francisco Adolfo Valdez +983870,Sherry Halperin +142341,Ronald Millar +1415896,Alexandria Townshend +1438917,Chinneri Ramesh +142982,Laurent Zeitoun +183659,Marina Sargenti +965960,Aimee Barth +1184326,David Rebordão +1403390,Karen Jarnecke +1452049,Jim Firios +1466075,Alex Kalymnios +1204710,Alex Disenhof +1081305,Masayoshi Ônuki +1573010,Kimberly Blaurock +1136825,Leo Karen +1396513,Michael Greer +1746455,Ivana Daniele +1156004,William J. Locke +52960,Nina Maag +1280364,Sean Hanish +112593,Gary Binkow +65478,Dirk Impens +1159663,Jon Burton +61502,Michael Bevins +1031240,Laïla Marrakchi +1213874,Larry Markes +1673672,Hope Dickson Leach +1825655,Robby Baskett +1088208,Dominga Sotomayor Castillo +1821916,Karlee Fomalont +40745,Rainer Werner +110922,Donald Wrye +1159420,Михаил Шолохов +17554,Dusan Makavejev +1320858,Anne-Sophie Brasme +77698,David Denneen +151543,David Alexander +1350243,Wes C. Caefer +1379034,Nick Akass +1439047,Róbert Hrutka +1315635,Svoboda Bachvarova +421643,Julia Bacha +1155084,Miguel Larraya +564949,Sonny Mallhi +1742989,Dave Ashton +1664466,Lauren Emily Jacobs +589159,Matt Piedmont +1187179,Terry Davies +1148631,Tim Stuart +1642600,Don Tang +1022263,Tony Egry +1673480,Gabriel Williams +142483,Keiji Hasebe +1031773,Sam Schroeder +233511,Herman King +1583280,Paul V. Seetachitt +1538717,Dan Adams +1574080,Erika Khanna +1144124,Leila Fournier +1394567,Kevin Wyrauch +1580832,Amy Schilbe +62758,Todd Lieberman +332350,Giuliani G. De Negri +1829915,John Eastman +1852928,Islam Abdelsamie +1477209,Gary Streiner +1293467,Natasha Gerasimova +1446133,Michael Wilson +1636866,Robert Rapport +238377,Jean Grémillon +1419103,Don Libby +1696504,Carl Bell +1117765,Marc Hansell diff --git a/demo/install/resources/movies_csv/Production Companies.csv b/demo/install/resources/movies_csv/Production Companies.csv new file mode 100644 index 0000000000..5bcbb714c4 --- /dev/null +++ b/demo/install/resources/movies_csv/Production Companies.csv @@ -0,0 +1,9878 @@ +id,Name +14634,Sailor Bear +1873,Sophie Dulac Productions +2413,Ironworks Productions +19423,Cinema Verity +35799,Arcady Bay Entertainment +2980,Forge +8631,Premiere Bobine +34204,Phoenician Entertainment +4867,Full Moon Entertainment +46221,Zookeeper Productions +841,Pathé Entertainment +35315,Pegasus Taihe Entertainment +3901,Phoenician Films +1267,Ecosse Films +1072,Mysterious Arts +12542,Toki wo Kakeru Shôjo Seisaku Iinkai 2006 +66350,Wellfleet Phantasy Productions +55686,DH Films +10975,Colorado Film Production +34171,Rain Dogs Cine +62009,Viennale +43908,E-motions Films +6831,Big Indie Pictures +12877,Shree Venkatesh Films +3675,Regner Grasten Film +1718,Odyssey +2595,The Associates & Aldrich Company +18646,Arion Productions +36057,AOG Films +506,Newmarket Capital Group +39647,Movie Partners +41047,Prophecy Pictures Ltd. +3688,Kennedy Miller +94375,Everyday Pictures +137,Great American Films Limited Partnership +868,Cinema Service +37676,Camberwell / Fly Films +1204,Ascendant Pictures +78697,Rum Jam Films +79619,Vision Comunicaciones +8490,Fama Film AG +23876,Stoller Global Solutions +29386,Zeeuwse Maatschappij N.V. +24442,Flying Pictures Productions +14159,Seven Arts Pictures +29097,Stage 6 Films +3041,Gainax +1243,Arena Films +87656,Les Meutes Films +3118,Madras Talkies +27126,VEGA Film AG +2772,The Lab Of Madness +4542,Agamemnon Films +91210,Igris +56012,A2 Entertainment Group +12154,Fox Star Studios +10197,WGBH Boston +5490,CBS Films +8623,Ascot Productions +8145,Artists Public Domain +44614,Cinétel +63364,Inicia Films +16906,Arizona Films +18025,Interfilm L.A. +16839,Anchor Bay Entertainment +822,Happinet Pictures +485,Vinyl Films +20458,Elkins Productions International Corporation +15298,Malpaso Company +64574,"Feature Film Project, The" +9352,Deer Path Productions +91542,Aver Media +4535,Vista Organization +92394,Well Go USA Entertainment +54088,Nordsjøfilm +11258,Central Films +3558,Ariola Productions. Inc. +30998,Latitude Productions +18298,Videal GmbH +29716,TOEI Company +12527,Pendragon Pictures +12251,Stephen Bowen Productions +798,Samuel Goldwyn Company +17068,MG Entertainment +17223,Direct Cinéma +26742,Collective Pictures +12383,Abe Shuji +58423,Hulu +73956,Runteldat Entertainment +94783,Tiu-Tiu Film Productions +1312,The Mount Company +21597,High Treason Productions +87499,Midas Touch Media +15117,New Visions Pictures +15829,Pacific Standard +4521,Cinema Art +5072,Twins Japan +74743,Sofiya +52598,Golden Horn Films +58091,Cannonball Productions +23164,Entertainment Film Distributors +2598,Hasbro +44311,Steven Paul Production +7184,3B Productions +88981,Seaside Entertainment +55405,Saw Productions Inc. +73394,Geneon Universal Entertainment Japan +17196,Carlton Films +563,Movieworld Productions +10443,Synchronicity Films +6028,Kenwood Productions +15139,Tele+ +77381,Wunderkammer Entertainment +78890,LifeLike Pictures +89719,Culver Studios +52354,Cine Vesta Associates +5547,Woestijnvis +5346,Applause Pictures +7347,Corps à corps +18665,Project 8 Films +12940,Drum Pty. Ltd +2512,Harbour Pictures +155,Nimbus Film ApS +36991,Clarius Entertainment +348,Bedford Falls Productions +5984,34th Street Films +15507,Detalle Films +63095,Studio Rock +8083,Film Rites +49589,Scena Film +7529,Wanda Films +47154,Kroyer Films +15297,Gordon Films +7062,Dynamo +9290,Capital Films +89472,The Salt Company +30401,Prewar Cinema Productions +78463,Bartleby +5367,Gaylord Films +74807,"Toho Pictures, Inc." +8151,Fuqua Films +7777,Slot Machine +33569,The Pardon Group +21518,Simon Fields Productions +10253,Samuel Bronston Productions +38396,Attainment Media Group +8724,Australian Film Finance Corporation (AFFC) +13630,Darryl F. Zanuck Productions +2526,Kickstart Productions +10621,Office de Radiodiffusion Télévision Française (ORTF) +1153,Act III Communications +64054,Fool's Film +23932,UGC PH +2513,Cinema Epoch +85229,Óscar Producciones Cinematográficas S.A. +3432,National Lampoon Productions +3285,Christopher Filmcapital +7500,Sneaky Pete Productions +78966,Soficinéma 9 +3911,Primal Pictures +26422,Elephant Eye Films +82606,NBB Unit One Film Partners +15354,Grand Peaks Entertainment +88463,Levens +78941,Arte / Cofinova 9 +21570,Runaway Features +93202,Inbracine Filmes +52066,Epicentral Studios +65604,Garra Producciones [ve] +76985,Moiré Films +36259,DefyNite Films +10568,Pennebaker Productions +21645,WonderWorks +74689,Canal+ Polska (koprodukcja) +1672,Sancrosiap +23222,Fennada-Filmi Oy +76207,Cappricielli +18026,IMV Vertieb Media +3225,Every Guy Productions +79730,Dasym Enetertainment +8273,Eagle Rock Entertainment +11658,Brainstorm Media +94148,Fritz Productions +40294,Fourth Floor Productions +403,Bioskop-Film GmbH +13338,Studio Kinema +2910,Alta Vista Films +12141,Pt. Merantau Films +22625,Fonds Sud Cinéma +10624,Takarazaka Productions +2247,Clasart Film +64997,Octobertrain Films +12398,Chic Films +17644,Jörn Donner Productions +44828,Azucar Entertainment +3875,Bipolar Films +90020,ITM Productions +15892,Fonds National de Soutien à la Production Audiovisuelle du Luxembourg +3541,Koninck Studios +10318,Polyc International BV +6566,CNCAIMC +4802,Bel-Air Productions +12352,Wallimage +81522,Alarahastatud Filmikompanii +22213,TSG Entertainment +236,October Films +2370,Merchant Ivory Productions +52284,Chydzik Media Group +22532,Tree Tree Tree Productions +644,Alcor Films +5417,Juniper Films +8610,Sarlui / Diamant Production +15634,Vitagraph Company of America +59891,Land Associates +19776,Prospect Park +26324,Next Entertainment World +1532,Sho Films +49161,Golden Swan +6802,Dundee Entertainment +794,Agi Orsi Productions +247,Granada Film Productions +3247,Taking a Line for a Walk Productions +22513,Gorai / Samuelson Productions +42810,Soraya Intercine Film PT +26424,Satyajit Ray Productions +77733,Joswend +27128,The Bubble Factory +62875,Unipictures +1558,Touchstone Television +62263,Figet +8281,Film Fyn +248,Impact Pictures +65547,Lascaux Media +560,Film Colony +62730,Grovas-Oro Films +3952,Hemdale Film +77852,Ramcity Productions +3112,Rodeo Drive +73336,Blue & Grey Film Ventures +12394,Cofimage 22 +26156,Ad'Hoc Productions +80103,Jirafa Films +94202,Pointblank Pictures +11847,Mitsubishi +6527,Elsboy Entertainment +8376,A&E Home Entertainment +42843,World Amusement Company +95497,Studio Images 8 +50835,DMS Films +39696,Adventure Films +8290,Busboy Productions +20777,British Screen Productions +65962,TAT Filmproduktion +5708,The 7th Floor +11923,Inver Invest +73192,Pelican Point Media +3095,Whitewater Films +6992,Avalon +128,Time Warner +68140,Dreamz +19691,Exclusive Productions Inc. +24195,Resolute Films and Entertainment +71910,Revelstoke Productions +8040,Casey Productions +15278,British Broadcasting Corporation (BBC) +116,Cameo Film- und Fernsehproduktion +70472,Toho Eizo Co. +3233,Intersport Television +85746,The European Co-Production Fund Limited +73467,Andolfi +20169,Qu4tre par Quatre +775,Korty Films +16354,Wolper Pictures +20634,"Bedford Falls Company, The" +10609,SBS Films +16877,BFI Film Fund +7295,Relativity Media +26950,Fried Alligator Films +3427,Ambience Entertainment +57095,Straw Stories +11937,Banque Populaire Images 7 +5129,Shemaroo +2875,Ikiru Films +71398,Ventura Hi-Way Productions +21655,Movie Package Company (MPC) +3289,Clap Filmes +11843,Goldcrest Pictures +53446,Vill Lee Film +23097,Super Ecran +16867,Ymagis +8708,Kodak +2928,Style Jam +22836,SVS Films +1685,Hofflund/Polone +5975,Yleisradio (YLE) +12827,Gary Hoffman Productions +85538,Kana Productions +81135,World Film Magic +6398,Clan Film +1950,New World Pictures +8425,Marvin Schwartz Productions +5552,Media Asia Films +62132,Paul Edmaond Decharme +581,UGC +7516,Colt Produzioni Cinematografiche +18190,Fennica-filmi +75040,1000 Volt +5117,Bad Monkey Productions +1988,Epic Productions +1679,Lux Film +13579,George Stevens Productions +2585,ICE3 +73707,Silver Bullet Films +5801,The Film Department +8640,Samurai Productions +13319,Axel Films +43957,Satori Films +9968,Black Flag +36148,Daydream Productions +5115,Channel Z Films +24363,Papazian-Hirsch Entertainment International +85170,Altitude Film Sales +224,Wega Film +2259,Adelphia Compagnia Cinematografica +23411,Elstree Studio Productions +58565,AMV Production +6246,Medusa Film +13399,Douglas Fairbanks Pictures +82607,Longview Entertainment +24144,Kaissar Film +4968,MotionWorks +5681,Lippert Films +69281,e-m-s GmbH +29052,The New South Wales Film and Television Office +73316,Vengeance is Mine Productions +24276,Silver Moonlight Productions +8444,Phantom Productions +1066,Distant Horizons +13894,Castlight Pictures +164,Rhombus Media +6687,Viz Media +6872,mk4 productions +10522,Lira Films +32300,Lava Bear Films +39823,Popular Filmproduktion +89989,Del Rey Films +95009,Monthyon Films +4684,Roland West Productions +5828,Strada Film +10843,Future Films +4788,Hollywood International Pictures +12200,Province of British Columbia Production Services Tax Credit +66755,OH Films +22587,CAB Productions +11087,Victoria Deluxe +1962,ATO Pictures +10309,Masada Productions +14941,Constellation Entertainment +77766,Chapuzas Audiovisuales +11510,Detour Filmproduction +25491,Edith Film Oy +73631,Globe Pictures Corp. +26704,Remember Dreaming Productions +7616,Moonbeam Entertainment +11445,Hank Levine Film +12485,Overbrook Entertainment +20339,Chapter 2 +21817,ANA Media +5860,Anchor Bay Films +2395,HanWay Films +15048,Riviera Films +21213,Funny or Die +16,United King Films +20187,Flying Bark Productions +22259,Les Films Dargaud +93901,Pierson +20305,Industrial Entertainment +8591,Rotterdam Media Fund +14551,Capelight Pictures +80070,Let's Be Evil +19677,Hochschule für Fernsehen und Film München (HFF) +20064,NEW +18440,Made In Film-Land +54178,The Helpful Eye +1460,Loew's +6277,Skydance Productions +2147,Echo Lake Productions +1664,Zebra Films +27127,M & R Films +8555,Nordisk Film- & TV-Fond +87331,Magic Lantern +204,Wüste Filmproduktion +9301,Kokuei Company +7673,Hérodiade +19858,Shanghai Film Group Corporation +50511,Wall to Wall +8943,Graal +52210,Haunted Hospital Productions Inc. +4284,Century Films +69626,Tales From The Crypt Holdings +86352,Québec Production Services Tax Credit +534,Filmsonor +6748,Goalpost Pictures +39735,Impact Film & TV +3387,InterCom +93535,Imágenes +10806,NBV Productions +6017,True Crime Channel +37,Gramercy Pictures +15352,Full Moon Features +7554,Les films singuliers +30098,Les Films Paul Grimault +79974,Sagitarius Productions +56781,Fog 'n' Desire Films +43,Fox Searchlight Pictures +8728,Black Dynamite Films +14787,Arrowstorm Entertainment +79324,No Remake Pictures +45518,Calimari Productions +3992,Hecht Co. +13238,Unified Pictures +4098,Carnaby International +20543,Universe Entertainment +22953,Down Home Entertainment +68108,Sogécinéma +826,Capitol Films +8658,Rialto Films +65834,August Heart Entertainment +62016,Illiz +4377,Associated General Films +7704,Pupkin Production +5982,Bioskop Film +24014,Nutcracker Holdings +7534,R&D TV +4245,Time-Life Television Productions +323,"Diana Productions, Inc." +6306,Asylum +3671,Michael Jaffe Films +5704,Little Wave Productions +19003,Nomadic Independence Pictures +3417,CTV International +4286,Juno Pix +1075,Europa Corp +11,WingNut Films +43436,Solid Weld Production +11431,DCG Plus +2243,Hammer & Tongs +1341,Regent Entertainment +45826,Marshak / Zachary +22632,Verisimilitude +24930,Alvernia Studios +73552,Jour2Fête +14188,Conacite Uno +32554,Bloom +611,Bryna Productions +14639,OG Project +35846,No Trace Camping +6267,Cylinder Production +93973,Black Rock +7382,Echo Films +10196,Produções António Lopes Ribeiro +14531,Pop Films +2883,Aniplex +140,Pandora Film +7810,Aparte Producciones +75258,Orex Films +3735,Akkord Film Produktion GmbH +12653,Pikachu Project +24972,Vocal Yokels +16434,Sathya Movies +63813,Rosemont Productions International +3451,Art Pictures Studio +635,Les Films Alain Sarde +2013,Divina-Film +13863,United Talent Productions Ltd. +73568,K&S Films +14625,Office Crescendo +10308,Dino De Laurentiis Company +21839,Blue Star Productions +1478,Sat.1 +78945,K Films Amerique +11933,Tax Shelter ING Invest de Tax Shelter Productions +5322,Aloe Entertainment +757,Embassy Film Associates +4248,JVC Entertainment Networks +56277,Cyan Films +3445,Kudos Productions Ltd. +80529,Mo Film +53348,Jeepers Creepers II +15086,Silver Screen International +2064,Lietuvos Kinostudija +746,MTV Films +80885,G2 +2184,Tollin/Robbins Productions +3337,Empyreal Entertainment +12249,Gudegast Braeden Productions +47685,Stuart Miller Productions +4384,Tempesta Films +80835,Route One Entertainment +44829,Bespoke Productions +13320,Les Films du Trésor +6844,Thelma Films +23732,Cineroma SRL +2543,Volume One Entertainment +38024,Entertainment Factory +59629,CNGM Pictures +55251,Southern Light Films +45229,Extinct Production +3039,Reunion Pictures +16750,Paisley Park Films +31317,Meridian Films +4345,Taurus 7 Film Corporation +7003,Comme des Cinémas +2231,Trilogy Entertainment Group +8997,SBS Productions +53597,Sky Italia +10207,Casbah Film +21666,Windjammer Productions Inc. +19609,Rita Filmes +72130,Les Films Fauves +9152,Devon Film +93466,Weying Galaxy Entertainment +27895,Veneration Music +2767,Mace Neufeld Productions +34145,Middle Child Productions +42978,Goldmine Productions +60535,Rhodes Pictures +1361,Compton Films +73856,And Maps and Plans +5870,Studio Canal +37954,Attercorp Productions +12732,Towers of London +5706,Mythic International Entertainment +13718,Planet Film Productions +17659,Larein Management Productions Inc. +26693,CoPilot Pictures +68391,John Cromwell Productions +777,Future Film Group +25410,Almighty Dog Productions +60963,Ira Steiner Productions +23651,Grand Slam Productions +62331,Lifeboat Productions +56472,world cinema fund +82819,Skydance Media +26669,Cine-2000 Film Production +7898,Hanna-Barbera +19135,Duna Televízió +10890,Koan Films +3472,JollyRoger +50185,HI-FI Motion Pictures +90129,Killion Street +80401,Century Hero Film Investment +2362,Bo Films +7964,Studios Idéfix +8,Fine Line Features +22051,South Street Films +69888,The Jozak Company +59952,"Morra, Brezner, Steinberg and Tenenbaum Entertainment (MBST)" +74065,Dugong Films +1754,Tekli British Productions +4762,BBC Wales +19222,Optimum Productions +7906,Omega Film AB +93503,PXP Productions +15270,Asahi Shimbun Newspaper +13567,Volonteri Film +3070,Cinema Center Films +4171,Playtone +28810,Libido Cine +80066,Lighthouse Films Pvt. Ltd. +78747,Shadowland +10530,Alternate Ending Studios +48591,Joseph Bernhard Productions Inc. +14290,The Institution +8532,1984 Private Defense Contractors +15870,Festival Film Productions +67778,Tri Vision Pictures +4840,RMR Productions LLC +15383,Tatira +36551,Scary Pictures Productions +77501,Mirovision Inc. +28638,Cusicanqui Films +48430,Monoo +74992,Kaplan Film +34127,Joseph Shaftel Productions +7384,Hypnotic +23481,Suncent CinemaWorks +4200,Dongoong Arts Center +2048,TV-60 Filmproduktion +28504,Filmtre +4963,Patchett Kaufman Entertainment +74487,Takeuchi Entertainment +791,IPSO Facto Films +75860,Hochschule für Gestaltung Karlsruhe +47729,STX Entertainment +73193,Contend +2317,Cofinova 3 +11961,Safady Entertainment +12354,Fairway International Pictures +3993,Red Hen Productions +21948,B.A. Produktion +461,Les Films Christian Fechner +22164,Produzioni Artistiche Internazionali +21838,Distant Corners Entertainment Group Inc. +39856,Desilu Productions +4148,Keystone Film Company +2650,Ealing Studios +38599,Cane Toad Productions +3782,Tax Credit Finance +37816,Freeman Film +11832,Blue Cinema +37578,Minerva Productions +56811,Magus Productions +79193,Les films de l’autre +11956,Apparatus Productions +14245,Messidor Films +31145,Skipping Stone Entertainment +16927,Klein & Shamroy +87500,June Street Productions +5928,Česká televize +59407,Frágil Zinema +6304,Robert Wise Productions +19033,Grupo de Estudos e Realizações (GER) +77133,OPM Dream Mill Cinemas +8622,Charter Film Productions +23,Imagine Entertainment +431,Donners' Company +38159,Burning Sky Films +94304,Mullis Capital Independent +8816,Northern Lights Entertainment +37124,TAFF Pictures +10288,Don Simpson/Jerry Bruckheimer Films +22050,Shadow Lane +4279,IDT Entertainment +311,Procirep +48266,Children's Film Foundation (CFF) +72281,Assemblage Entertainment +52149,Illuminary Pictures +82105,Belma Cinematografica +69111,Steady Aim +40989,NBC Ajans +6234,Квартал-95 +94356,Phantom Planet Films +13999,Avon Productions (II) +74732,Greener Grass +2572,Cobra Film +82852,Kandoo Films +3516,Mighty Cheese Productions +3681,Gorky Film Studio +86083,Virgin Benelux +6082,Filmirage +255,Paradis Films +3576,EFTI +45984,Smoking Gun Pictures +4164,Square USA +20838,Rendez-vous Pictures +26261,Film Commission Torino-Piemonte +1246,River Road Entertainment +14557,Foundation for Filmakers +89546,Stratton Film Production Ltd +7293,DreamWorks Pictures +12767,PAC +20375,Hammerhead Productions +2440,Mij Film Co. +19592,Blenkov & Schønnemann Pictures +51596,Griffin & Phoenix Productions +8079,Mozark Productions +2232,Cherry Alley Productions +38407,Dada-Filmi Oy +682,Peninsula Films +89523,KPVI +3336,Ice Cold Productions +32289,C.G. Cinema +40527,Asatsu-DK +1080,Beta Film +51192,Black Light District +13498,Margate House Films +11590,Fine Cut +11911,Partizan Films +19658,Jackie & JJ Production +53826,Prostar Entertainment +6348,Be-Wild +46281,Biberche +83223,ARY Films +33603,ShivHans Pictures +23433,Noé Productions +70422,Cafe Oscuro Films +45663,Arches Films +9058,Alcina +5842,Sandollar Productions +2744,Nikolaus Geyrhalter Filmproduktion +39050,WW & S Productions Inc. +7339,Hyperion Pictures +1331,Seduction Cinema +53015,Crown Media Productions +562,Appian Way +93741,Regenerate Films +21599,Shona Productions +1632,Lionsgate +10944,Noruz Films (I) +41675,Sinegraf +28336,Bande a Part Films +12118,Millstreet Films +37177,Frank & Bob Films II +77518,Sleepy Whippet +88982,Charlermthai Studio +70,American Zoetrope +18888,Les Films du Passage +14067,Through The Heart +57493,Fisheye Pictures +51198,Picture Tree International +1138,Filmways Pictures +6620,Pacific Business Group +18027,Azimuth +84207,Screen Novelties +16127,Film Guarantors +11926,Soficinéma 7 +75969,Intimate Brands Inc. +276,Guber/Peters Company +29700,Aunt Max Entertainment +12347,NFF +61746,Zone Films +8582,Canadian Film or Video Production Tax Credit (CPTC) +52288,First Wedding Productions +23910,Saint Aire Production +67576,Pool Films +7537,Darknight Pictures +21773,"Film Community, The" +44821,Orsans Productions +82756,"HomeGreen Films Co., Ltd" +21086,General Media Entertainment +39242,Gentle Machine Productions LLC +676,Monarchy Enterprises B.V. +15179,Viva Cinematografica S.r.l. +57986,The Picture Property Company +10329,Anglo-Amalgamated Film Distributors +52428,Hacienda Film Co. +80403,Citic Culture and Sports Enterprises +2929,Filmquest Pictures +3057,Katzka-Loeb +72965,Ed Adlum and Mike Findlay Productions +84478,Rungstedlundfonden +12199,Madhouse Entertainment +28670,Sofinergie 4 +5906,Shochiku +1112,Bela Productions +11065,The Film Works +3159,Migma Film AB +84722,Von Vietinghoff Filmproduktion (VVF) +11735,Robert E. Kent Productions +49022,Soread-2M +16136,Productora Mex. Desconcida +60615,Visionbox Pictures +41116,Produzione Films Vittorio De Sica +21195,Koi Productions +2866,The Free History Project +12421,Northern +27206,FCCE +3979,Mukta Searchlight Films +2520,Arclight Films +3,Pixar Animation Studios +8421,Post Factory Films +64403,Flying Turtles +55576,Erre Cinematograsica S.r.l. +938,First Floor Features +37658,Philip A. Waxman Productions Inc. +22393,Babe Film +21815,Sweet William Productions +5904,Sochiku +3766,iDeal Partners Film Fund +32301,Causeway Films +74926,HBO Polska (koprodukcja) +11668,Grove Media Finance +14406,Ambush Entertainment +85947,Temptation +11081,A Company Filmproduktionsgesellschaft +13190,Lemon Sky Productions +45627,Antenne-2 (A2) +1082,Lux Vide +959,IndieProd Company Productions +12025,Vlaamse Radio en Televisie (VRT) +7831,DesperaDo +21926,Grove Hill Productions +15868,Medusa Distribuzione +10154,Cartier Productions +399,Show East +19196,Blackmaria +12,New Line Cinema +42033,The Sam Company +36288,R.P.A. International +23386,Scatena & Rosner Films +73706,Freewill Films +4743,Mascot Pictures +3361,Digital Frontier +9313,Esparza / Katz Productions +33199,Bahr Productions Inc. +20793,B. A. Filmproduktion +8420,Veterans +2236,Maguire Entertainment +85742,Multivision +2532,Batjac Productions +86,Catfish Productions +1314,Hammer Film Productions +8797,Storyline Entertainment +61080,Youngstreet +9971,Castafiore Films +8073,Nick Wechsler Productions +2921,Visualizer Film Productions +5726,Universal Pictures International (UPI) +3186,CINEFACTO +3867,N Chandra Global Infotainment Ltd +40157,WANGO Films +4206,Baa-Ram-Ewe +6682,Ltd. +4933,Pine-Thomas Productions +4673,King Record Co. +5351,Acne Film +21555,Biograph Company +1208,Rising Star +7595,Moving Pictures Film and Television +68248,Medusa Pictures +93638,2 Smooth Film Productions +46567,Zespol Filmowy +18950,The Genre Co. +75882,SellOutPictures +8157,East Japan Marketing & Communications Inc. +7192,Stephen Low Productions +66430,Cool Cat Productions +9244,Phoenix Cinematografica +62408,Subzero Film Entertainment +4030,Jeff Most Productions +574,Lightstorm Entertainment +42053,Salty Pictures +24939,WV Films II +73118,Wrigley Pictures +70154,Pentagramma Filmproduktion GmbH & Co. Rainer Erler +12063,Delta +3252,Balkan Film +981,Televisión Española +73330,Charlie Banks +33882,Compagnie des Films +24908,Zjednoczenie Artystów i Rzemieslników +8831,Mad Max Films +82249,MB Grip +19913,Rorvic Productions +7344,Sayaka Producciones Audiovisuales +38550,Guangxi Film Studio +84847,Ballast Films +28766,Production Marcel Dassault +35709,Hercules Films +22706,Vision Entertainment Group +21755,The Annenberg Public Policy Center of the University of Pennsylvania +249,Société Nouvelle de Cinématographie +12608,Hybrid Productions Inc. +39958,Great Movie Ventures +3825,Avrio Filmworks +2019,Osiris Films +23680,Agnès b. Productions +12345,Imagine Film +13954,Rollins-Joffe Productions +14771,Robertson and Associates +2075,MMG Film & TV Production +73322,Conspicuous Pictures +10853,Cheap and Dirty Productions Inc. +694,StudioCanal +4856,Elite Film +68231,Consórcio Paulista de Co-Produção +86084,Virgin Schallplatten +53511,National Air and Space Museum +67780,GGR +4340,Claussen Wöbke Putz Filmproduktion +13665,Raymond Stross Productions +59425,Ernst Marischka & Co +6216,Lumen Films +30931,Gray-Film +3005,Finney/Thompson Entertainment +7930,Olga Film GmbH +69434,B24 +13148,Silver Lining Film Group +2971,Reel Security +85808,Mondo Furioso Filmproduction +5579,Metro-Goldwyn-Mayer British Studios +14418,Ugur Film +4258,Fortis Films +30724,Hecht-Lancaster Productions +16310,amber entertainment +2343,Red Chillies Entertainment +13210,ntc +20678,Odeon +554,Silver Screen Partners III +29076,Solipsist Film +12696,Regent Capital +453,Walter Reade Organization Inc. +91638,Bloodline Films +83545,Cinestación +24885,Avalon Pictures +572,New Amsterdam Entertainment +77826,Mutual Productions of the West +8770,"Allied Stars, Ltd." +2250,SCOPE Invest +29749,Jesse L. Lasky Feature Play Company +21898,VIP Media Group +17966,Royce Smeal Film Productions +2552,Studio Filmowe Perspektywa +16258,Madrose Productions +7193,Company Films +16469,Filminoir +11008,Inforg-M&M Film Kft. +17097,Four Leaf Productions +11726,The Yomiuri Shimbun +21622,Braven Films +23486,Sienna Films +19944,"Carousel Picture Company, The" +863,Mantarraya Producciones +11496,Jalem Productions +54733,Orange Polska +7060,Breakout Films +94976,Human Film +11404,Stanley Donen Films +51860,AI-Film +78505,Fonds Culturel de Suissimage +2669,Filmlance International AB +73067,Vulcan Productions +11066,Agence BJP +68264,Oriah Entertainment +34997,Templar Films +65517,La Chouve +4631,Antarctic Pictures +36389,Orbis Film +1647,PM Entertainment Group +25635,High Five Films +41653,INDI Film GmbH +6254,"Jim Henson Company, The" +2260,Les Films Marceau +261,Samuel Goldwyn +4434,Green Moon Productions +95561,Cloud Nine Pictures +41474,Rodeo +3533,Allan Zeman Productions +49160,American Continental Corp. +5124,New Artists Alliance +1393,Tokyo Broadcasting System (TBS) +1595,Island World +5045,TBN Films +3421,Kamikaze +70128,Antibody Films +52017,Nowhere Films Louisiana Productions +87318,Arco Libre +11446,Lereby Productions +13411,Hakuhodo Inc. +13674,Working Dog +71785,Daniel Film +2779,Blue Star Pictures +974,Five Mile River Films +149,FOZ +31739,Bouncing Betty Productions +4198,Ixtlan +32771,Mojo Pictures +269,Filmboard Berlin-Brandenburg (FBB) +3097,HDNet Films +23096,Fries Film Group +53195,Nix Films +2481,Platinum Dunes +19577,What to Expect Productions +2829,Angel Devil Productions +57029,Siegal Enterainment +930,Lone Star Corporation +866,Pathé Renn Productions +20639,BBC Northern Ireland +14757,Nordisk Film Production +13168,Film Kairòs +483,Praesens-Film AG +4199,Monument Pictures +1048,CCC Filmkunst GmbH +9195,Touchstone Pictures +33279,Ad Vitam Production +3496,Aaron Russo Productions +4247,Filmförderungsanstalt (FFA) +3157,Central Films Limited +23231,Connell Creations +85383,Millas Film +35430,Paul Malvern Productions +2873,Echo Bridge Entertainment +95386,Yin Zhang Films +31059,Pony Canyon +1016,Man's Films +8146,Splendid Film +29223,Ministero per i Beni e le Attività Culturali (MiBAC) +12965,Investimage 3 +55821,2D Entertainment +16952,Blue Post +25687,Boneyard Film Company Inc. +2694,VIP Media +24012,Indomitable Entertainment +5958,Defilm +20319,Social Construct +28274,Communicado Productions +28221,Beograd Film +484,De Laurentiis Entertainment Group (DEG) +1448,Pro-ject Filmproduktion +64893,Pixomondo +92138,Amblin Partners +65428,Pterodactyl Productions +2870,Identity Films +22165,Cathala Productions +86914,Skandia-Filmi Oy +20312,Three Point Capital +29098,Breaking Ball Films +11934,Tax Shelter Productions +20108,Hooks and Taylor Entertainment +23596,Paul Schiff Productions +65658,Danger Filmworks +2514,Alliance Films +5778,Channel 4 Television +36229,Wim Wenders Stiftung +7692,World 2000 Entertainment +185,Pandora Cinema +8620,A.S. Films +21139,Archstone Pictures +76068,Digital Image Associates +21925,REI Capital +11790,Les Films Modernes (I) +7938,Universal Cable Productions +2393,Peace Arch Entertainment Group +54386,Migdal Filmes +3434,David L. Wolper Productions +22105,LightTower Entertainment +13,Universal Studios +7980,Hold Up Films +76491,SuperMega +36421,Films Zodíaco +1556,20th Century Fox Television +3318,Xingu Films +25608,Quick Draw Productions +16323,20th Century Fox Television +61789,SuperNormal Pictures +1964,Oko-Film +87850,MFF (Sound of Thunder) +3614,Columbia Pictures Television +24933,LB Productions +30187,Meteor Film GmbH +5776,Capital Productions +1313,Clarion Films +1894,Josephson Entertainment +73528,Dual Power Productions +8572,E1 Entertainment U.S. +40955,Revere Entertainment +5253,NBC Productions +64402,Prakash Mehra Productions +82235,Skywalker Sound +6154,Allfilm +59558,Low Sky Productions +4781,Ciné-Alliance +89197,HLP +58547,Blancbiehn Productions +984,Institute of Culture +13184,Annapurna Pictures +35449,Classic Films +12288,Nintendo +75476,M.B. Dudley Amusement Co. +5174,Boom Pictures Inc. +16449,OneZero Productions +5040,Morningside Productions +14550,Productions Sigma +45302,Irrintzi Zinema +4952,Canadian Film Development Corporation (CFDC) +7801,Herold and Family +55591,Titanic s.r.o. +13465,Sovexportfilm +72590,"U.S. Department of Defense, Information and Education Division" +7542,Yahoo Japan +8847,Olmos Productions +6362,Flyboys Films +307,IFC Films +2735,Mid Atlantic Films +12956,Films Borderie +1484,Yorktown Productions +14035,Cité Films +3631,Filmax +17552,Karat Film +725,Film 1 +80,The Zanuck Company +83338,Muse Entertainment +49153,Remark Films +38677,Herzbergmedia +19228,Maurice Cowan Productions +12745,British Screen Productions +40560,Filmed Imagination +6716,Zanuck Independent +51152,Michael Thevis Enterprises Production +2858,Aron Govil Productions +10481,Jolly Film +87807,mr. kirby productions +21914,Kramer & Sigman Films +12081,AIC +4759,D.W. Griffith Productions +23703,Arc Entertainment +24017,Andy Joke +14294,Thirukumaran Entertainment +2253,Lawrence Bender Productions +23733,French Tax Credit +80136,Girls Club Film Project +90658,Fetisoff Illusion +8632,Screen Tasmania +1653,Film House Bas Celik +17837,RCR Media Group +38212,FJ Filmi +48510,Zyzak Film Company +3019,Wingman Productions +78702,Dangerous Method Film AG +3254,Credo Entertainment Group +16945,Red Crown Productions +60250,WhiteFlame Productions +81478,Trete Tvorcheskoe Obedinenie +61411,Storyteller Pictures +6841,KMBO +70277,Henny Porten Filmproduktion +168,Jadran Film +1587,P.P. Film Polski +48427,E-motion Film +43437,Savage Beast Film +29924,Fresh Film +44642,Win's Movie Production Limited +59725,On Entertainment +8078,El Terrat +585,UFA Filmproduktion GmbH +3460,Blue Eyes Fiction +1830,Ross Hunter Productions Inc. +84845,Two Tall Boots +4293,Cambridge Productions +2365,Capital Arts Entertainment +50910,Eye Steel Film +45085,Synthetic Productions +6928,Mr. Yellowbeard Productions Limited & Company +6560,Le Monde Entertainment +19139,GTV +9129,Media Development Authority (MDA) +7459,Les Films Mareau +21940,Upright Citizens Brigade +7683,GTH +18055,M&C Films +50089,Create Entertainment +29490,Chaos Squared +29489,Sideshow Pictures +21872,Treasure Entertainment +85681,Distant Horizon +27014,Scottish Arts Council Lottery Fund +58837,Lorette Production +23857,Dreamher Productions +59490,SJ Pictures +7611,Bridge Entertainment Group +1793,Velvet Film +758,TV2 Danmark +24257,Amalgamated Film Enterprises +12035,Uni Étoile 5 +18054,Continental Motion Pictures +4016,Panorama +10104,New Regency Pictures +14197,British National Films +5967,France Télévision Images +807,The Harold Greenberg Fund +7660,Canonigo Films +69882,Arcturus Entertainment +44601,DBG / deux beaux garçons +33271,AkamPuram +61115,Unanimous Entertainment +82774,AZ Film Studios +12073,Dillywood +36123,Vision Productions Ltd +1171,Epsilon Motion Pictures +11846,Hakuhodo DY Media Partners +40594,Great Earth Film Company +8373,"Kinokompaniya ""Kvadrat""" +17980,HBO Documentary Films +90406,Inxpo Onnico Oy +79731,JC Group International +20555,Taurus Film +24643,Avatar Media +71095,Farallon Films +60064,Atenea Films +11992,Surreel +36959,Starz! Encore Entertainment +48075,Sabbatical Pictures +5699,Jack Broder Productions Inc. +27716,Yomiko Advertising +19671,Keep Your Head Productions +12609,Banque Populaire Images 10 +5,Columbia Pictures +85,Konrad Pictures +18956,Samaritan Entertainment +5175,Instituto Cubano del Arte e Industrias Cinematográficos (ICAIC) +1895,Atlantic Streamline +63939,Howard Braunstein Films +8341,Imus Productions +6548,Paramount Home Entertainment +2161,CBS Productions +34594,Surefire Entertainment Capital +3788,Gigantic Pictures +20024,Polygon Pictures +12350,Société des Auteurs et Compositeurs Dramatiques (SACD) +12110,Hemdale Group +3266,Otto Preminger Films +39708,Mirabelle Pictures +89283,Black Ink Films +11348,Motion Picture BETA Produktionsgesellschaft +2731,Intandem Films +16441,Pacific Bay Entertainment Canada +35459,TVA International +570,Bandai Visual Company (JAPAN) +8869,The Last Picture Company +17994,Independent Film GmbH +800,Wheel Productions +73800,Producciones Barbachano Ponce +36392,Lucky Dog Productions Inc. +94979,Iraq al-Rafidain +16418,"Instituto do Cinema, Audiovisual e Multimédia (ICAM)" +48038,Attaboy Films +11290,Robert et Raymond Hakim +53350,DCP Wrong Turn Productions +11473,A.J.O.Z. Films +73376,Stag Pictures +3087,MSNBC Films +8111,Apaches Entertainment +357,Vía Digital +88152,Cre Film +24145,Wild Bunch Germany +18722,Hibiscus Films +3804,Shakespeare Film Company +14233,Amex Productions +7033,Dreamlab +52258,Ananã Produções +65429,Pecado Films +7911,Just Vision Films +15185,A.C. Lyles Productions +14651,Флагман-Трейд +4754,Dark Maze Studios +7266,Roast Beef Productions +1778,Dentsu Inc. +6407,Blake Edwards +86139,Rattapallax +49273,Rex-Film GmbH +73443,Studio Kajino Company +542,Guardian Trust Company +12005,Yucaipa Films +85434,SparkeFilms History Design +17636,Studio 24 +18978,Walt Disney Television Animation +2219,Vision +83479,Ticket Productions +73998,Golden Port Productions Ltd. +2188,Artisan Entertainment +80551,Bozie +58590,Hollywood Studios +76329,American Releasing Corporation (ARC) (II) +19404,Pinewood Studios +64694,Atlantic Picture Company +73461,Common People Productions +14925,Howard Productions +24514,Derby Street Films +38676,Stella Maris Film +23398,Picturesque Films +11586,MAFILM Hunnia Stúdió +24159,Cinerenta Feature Films +7764,Telecine +15913,Associated British Picture Corporation (ABPC) +33821,Filmpool Stockholm Mälardalen +19551,Marvel Enterprises +271,Mainstream S.A. +1379,Documento Film +15419,Big Idea Entertainment +5650,Central Park Media +8518,LBI Entertainment +76953,Racing Snake Films +45425,Beijing Silver Moon Productions +20671,Radius-TWC +55573,Invisible Children +28707,McLaughlin Films +19788,Regal Films +13043,Rise Films +24513,Pimienta +83645,Huahua Media +63507,Bauman Entertainment +94967,Yeşilçam Film +60847,"Albfilm, Tirana" +58744,Schesch Filmkreation +1931,Filmové Studio Barrandov +3193,Jean Vigo Italia +44962,The Movie Group +824,Kopelson Entertainment +5294,Mpower Pictures +7561,Nexus Factory +44622,Orphan Eyes +3760,King Brothers Productions +20788,Gulfstream Pictures +27350,Maybe Movies +28004,NICE FLX Pictures +1461,Pressman-Williams +56782,Svoboda&Williams +20162,Lyla Films +38960,Cobblestone Pictures +53504,Nihon Ad Systems +76056,Mediterranean Film Production Co. Ltd. +11702,Euroatlantica +1038,Bazelevs Production +2226,Media 8 Entertainment +9175,Filmko Pictures +66587,L.A. Ca +21,Metro-Goldwyn-Mayer +19481,Babelsberg Film +25728,La Costa Productions +93125,QKO +18666,Cold Fusion Media Group +36181,Kay-Bee Pictures +57096,Granny Was an Outlaw Productions +57430,Pulse Films +11779,Page 114 +4950,Antares Produzione Cinematografica +5907,AGS Entertainment +77762,Beth Grossbard Productions +65594,Ghost Orchid Films +3476,Walt Disney Animation Australia +18039,Scimitar Films +4616,Freestyle Releasing +50812,Foresta Films +17561,Foresight Features +32508,Entcorp Communications +17653,22h22 +18177,CountessFilms +3307,Ex Nihilo +23283,Rodin Entertainment +23320,Crombie Film +87514,"Experimental Film Studio, Moscow" +13242,Unanimous Pictures +22396,Société Nouvelle des Établissements Gaumont (SNEG) +6347,Asahi Hoso +5452,Hartbreak Films +942,Fin Août Productions +22627,Film- und Medienstiftung NRW +20485,Choices +6454,Caméra One +11459,Kanoon +3435,Calder Road Film +75378,Non Stop Film Service (koprodukcja) +67989,Material +22897,ProdigyMovies +46513,Northern Ontario Heritage Fund +1506,Filmation Associates +11248,Programme MEDIA de la Communauté Européenne +2342,Cino del Duca +6855,Granada International +23460,Solid Entertainment +93146,Fernlyn +35180,Stubborn Heart Films +79083,Penance Films +22573,20th Century Fox Film Corporation +36735,Tea Shop & Film Company +59030,Kotva Films +41247,Left Films +23337,Torchlight Productions +10598,Costa do Castelo Filmes +16256,DViant Films +5319,Victoria Filmproduktion +5181,Artista-Filmi +15165,Centar Film +13241,Demarest Films +21334,Beijing Poly-bona Film Distribution Company +95586,American Film Properties +35793,Inter-American Productions +15357,Prime Focus +4,Paramount Pictures +145,Gaumont Columbia Tristar Films +5535,Delacheroy Films +79560,NatWest Ventures +1169,RF2K Productions +85465,Oddfellows Entertainment +11063,WestPark Productions +86465,Headmon Entertainment & Productions +20500,A-1 Kino Video +83440,Relevant +6214,John Woo Film Production +80588,Fritz Lang-Film +163,Revolution Films +36881,Phoenix Entertainment Group (PEG) +38591,Friuli Venezia Giulia Film Commission +25092,Tiki Terrors +16067,Suevia Films - Cesáreo González +3589,Kouf/Bigelow Productions +68258,Tule River Films +3984,Entre Chien et Loup +6165,American World Pictures +22208,Harold Greenberg Fund +26686,Finnegan/ Pinchuk Productions +84772,Lupus Films +19659,China Vision Media Group +678,Turner Network Television +76809,JP Entertainment +12029,Curmudgeon Films +6939,Bodega Films +659,London Film Productions +39838,Toledo Pictures +8765,Wildlife Films Peru +18405,Kinotar +11884,J.C.Staff +23712,Lamplight Films +48688,Maloof Motion Pictures +5466,Irwin Entertainment +11220,BUCK Productions +35396,Status Media & Entertainment +740,MTM Cineteve +27804,B.P.A. Productions +65785,Oiffy +13000,BR +18736,Mad Dog Productions +7694,Delante Films +15963,Jeridoo Productions +3830,Acme Date +8940,CL Productions +33540,Canada Limited +7680,Tornasol Films +2483,Laurel Entertainment +50340,Taryn Prov +33152,Theo Angelopoulos Films +7783,Celtic Films Entertainment +6691,10th Hole Productions +55586,Hargla Company +7521,National Geographic +3334,Adam Fields Productions +52926,British Sky Broadcasting (BSkyB) +72091,Beijing Going Zoom Media +46654,Filmstudio +65546,Sinister Siblings Films +16861,Flying Monkeys Entertainment +27992,Wim Wenders Productions +8888,The Samuel Goldwyn Company +536,The Coppola Company +23489,Huckabee's +24366,Scripps Howard Entertainment +11814,Sky Perfect Well Think +2198,Pupkin Film +22146,Black Bear Pictures +58264,All Knight Productions +21873,Western Edge Pictures +61604,Forager Film Company +1723,Transcontinental Films +10128,Think Studio +16422,Fado Filmes +40260,RatPac Documentary Films +10954,Globo filmes +21125,Detention Films +93633,Mike Tollin Productions +3280,Igor Film +26629,Transfax Film Productions +57495,Spotted Cow Productions +12351,VRT / Canvas +37310,Flirt Pictures +18947,Atlantic Releasing Corporation +14513,Cinema Organization +6416,Svensk Filmindustri +27124,Pierre Grise Productions +11533,Valhalla Motion Pictures +51768,Asphalt Productions +31123,Euskal Irrati Telebisa (EITB) +7808,Fidès +13152,Nice Guy Productions +12024,Télédistributeurs Wallons +7423,Chanh Phuong Phim +34774,W9 +3154,Bronson Club +2566,Mille et Une Productions +2480,Alliance Communications Corporation +10330,Universal International Pictures (UI) +10968,Team Cherokee Productions +12986,Fennada-Film +68466,Drishyam Films +13313,Go Films +4601,Lazonafilms +7272,Micro scope +9233,Woolner Brothers Pictures Inc. +54517,Beacon Classics +6160,Filmplan +4734,MHA +3033,Asmik Ace Entertainment +61007,April Showers +8764,Redwave Films +71894,Bank Street Films +70746,Threshold Corporation +20928,Majestic Films International +1645,Scott Free Productions +65906,End Cue +22956,Deer Path Films +1207,Reeleyes Film +11631,Inosan +3857,Fireworks Pictures +256,"Tesela, P.C." +67166,Grupo Cine Arte +80051,Gunpowder Co. +76444,Evo Films A.I.E. +40967,King City +81818,suburaya +5844,Bandai Visual +34455,Votiv Films +161,Claussen + Wöbke Filmproduktion GmbH +12807,Overture Films +7610,Eén +11922,Taxshelter. be +89143,International Cinema +87550,MOOVIE the art of entertainment GmbH +74760,Zentropa International Poland (koprodukcja) +10344,UGC YM +14036,Division Films +1403,Franchise Pictures +16280,Jean Doumanian Productions +41789,New Film Production S.r.l. +49944,Shareman Media +23533,Mirisch G-E Productions +6126,Gruppo Bema +7340,C-2 Pictures +52295,RSS Production +89772,Hamilton-Mehta Productions +78203,United Media +7110,Les Films Ariane +987,USA Films +18047,Vox Video +17071,Lewis Motion Picture Enterprisee +52024,Video Audio Project (VAP) +3535,Associated London Films +45,Road Movies Filmproduktion GmbH +12778,Rizzoli Film +43352,Last Pictures +7258,Alliance +59427,Juli Entertainment Media +7975,Inflammable Films +28762,Mokép +3412,Line by Line Productions +8599,San Mateo Productions +85975,parallax projekt (innocence) ltd. +23233,Woodcreek Faction Productions +843,Werner Herzog Filmproduktion +22007,Lionweed +11388,ORF Film/Fernseh-Abkommen +94978,Pyramedia +53473,Canal+ Droits Audiovisuels +14016,Ministero per i Beni e le Attività Culturali (MiBAC) +19248,3 in the Box +37004,Emedia Films +16844,Zero One Film +94,ARTE France Cinéma +65858,Sitting Cat Productions +6765,Sterling Entertainment +11086,Lunamine +85744,Fondazione MonteCinemaVerità Locarno +19464,Lancaster Gate +16537,Lotus Filmes +3849,Dakota Pictures +46244,Gosfilmofond +13199,Pan Nalin Pictures +6128,A-Team +48581,Hungarian National Film Fund +73955,MBC Beteiligungs Filmproduktion +16978,Lightmotive +3842,I Hate Vday Productions +13470,Inimitable Pictures +54034,Flux Films +51235,Taggart Productions +33197,Iluminura Filmes +7380,Initial Entertainment Group (IEG) +10176,Banner Films Ltd. +1183,Impala +19237,Von Zerneck Sertner Films +17840,Ruthless Pictures +72432,Great Maratha Entertainment Company India +2986,Kasbah-Film Tanger +10640,Shochiku Ofuna +6113,A Ronald Neame Production +52739,Two Flints +14987,Two 4 The Money Media +1428,Balcázar Producciones Cinematográficas +5257,"Film Department, The" +49389,Broad Green Pictures +326,Laura Ziskin Productions +92794,Documentary Channel +4083,Tinseltown Toons +12828,Mike Medavoy Productions +93815,Hummel & Nimbus AS +33961,Le Tax Shelter du Gouvernement Fédéral de Belgique +4753,Filmauro +88965,Chitralekha Film Co-operative +71890,Space Rock Studios +78851,United Entertainment +18180,Willing Suspension Films +15406,Qartuli Pilmi +64620,Extra Large Productions +7395,Les films du Worso +16887,Cinekap +12467,Nomadic Pictures +12372,Universum Film (UFA) +4570,4Kids Entertainment +1691,Ilshin Capital Investments +3628,Kangoo Films +18178,Gearshift Films +75458,SFP Cinema +2848,Hoyts Film Partnership +1507,International Production Company +78178,Rooftop Films +79557,Traveller's Tales +44455,Viktorija Film +8423,Compagnia Cinematografica Mondiale (CCM) +8395,Yellow Films +37337,FBO +46694,Catherine Bailey Ltd. +15065,Movie Ventures +2789,Cable Stuff Productions +16827,Night Life Inc. +707,Matador Pictures +3319,Senator Entertainment Co +3267,Atlantic Entertainment Group +6715,K5 International +53010,D'Artagnan Productions Limited +2282,Roissy Films +21374,Dummy Productions LLC +12243,Lux Compagnie Cinématographique de France +7816,Gray Film +72417,Mustang Films +5822,Toei +35040,Jackie Chan Group +5011,Becker & Häberle Filmproduktion GmbH +475,JD Productions +47006,Production Genro +49972,Barunson +1014,Target Media Entertainment +31892,Loew's Incorporated +12413,NWR Film Productions +13749,Filmservice Distributors Corporation +78546,Svenska Ord +95579,Flood Productions +58253,Società Generale Cinematografica +11585,Harold Hecht Productions +4741,Nu Image Entertainment GmbH +29060,Process Media +3287,Screen Gems +72730,Guy in the Sky Pictures +8057,Langley Park Production +25427,Tiger Team +89774,Advanced Music +2842,CTR +19214,Stargaze Productions +30270,Coram Deo Studios +3620,Film Par Film +92615,bad axe productions +9350,Indian Paintbrush +7394,Oxybot +11958,ITS Capital +18321,Poultry Productions LLC +19402,Indomina Productions +3528,Thunder Road Pictures +80510,Monkey Dance Productions +14169,Kinderfilm GmbH +13344,Media World +7726,Sahamongkolfilm International +19584,Planet Filmplays +6758,Graviton Entertainment +20873,Columbia TriStar Home Video +11503,Joseph E. Levine Productions +10000,Compagnia Cinematografica Champion +12274,Dore Schary Productions +44072,14 Reels Entertainment +10878,Cine Films Inc. +12744,De Grunwald Productions +4621,Gébéka Films +22924,5 Star Productions +4191,Navarone Productions +24338,Brookdale Productions +7776,Pioneer L.D.C +75533,głębokiOFF +6555,Polish Film Institute +198,GFP Medienfonds +14590,New South Wales Film Corp. +30257,Hollywood Partners +2537,Kennedy Miller Productions +16269,RealReel +38111,Proteus Films +46410,CBS Theatrical Films +9118,Samuel Goldwyn Films +8142,Lane Street Pictures +11835,Y NOT Studios +55260,Colosé Producciones +12514,Slovenská filmová tvorba Koliba (SFT) +12240,Galatea Film +582,Hachette Première +17355,Phanta Vision Film International B.V. +24048,Prototype +5710,Comique Film Company +90077,Supernova LLC +5018,Lockheed Aircraft Corporation +420,Marvel Studios +10986,Magidson Films +3236,Bavaria Film and Television Fund +21216,Art & Industry +1498,Ascot +27993,Picture Perfect Corporation +95200,Zeugma Produções +11960,MGP Productions +45754,Alexander Groupe +84006,Kinostudiya imeni M. Gorkogo +15012,Film Cellar +26003,Huckpoten Entertainment +12217,Foundation Features +1392,National Broadcasting Company +33992,Capitol Cinema +4382,Asylum Entertainment +8125,New Atlantis +3007,Bam-Ram-Ewe +77550,Moana Films +55525,ADPProductions +6138,Southeast Asia Film Location Services Sdn. Bhd. +25350,Besiktas Kültür Merkezi (BKM) +665,Hochschule für Fernsehen und Film (HFF) +34527,Moonspun Films +2812,Lion Rock Productions +45980,SJ Heat Productions +9137,Moonlighting Films +39704,Yeniceri Produksiyon A.S. +7083,KAFA Films +4399,Barunson Film Division +12113,Canadian Broadcasting Corporation (CBC) +87558,Les Films du Saphir +90611,24 Horses +51193,Say Ahh Productions +6505,Coproduction Office +85470,Two Roads Productions +23343,Passenger Film Studio +22310,Atlantic Swiss Productions +11579,The Mirisch Production Company +37171,Yankee Entertainment Group +13854,Baby Cow Films +48496,Studio Uljana Kim +10168,Toronto Film Studios +18056,Royal Films +6161,Victor Solnicki Productions +2380,Palomar Pictures +2630,Majestic Films International +5669,Crawford Productions +4634,Oceana Media Finance +75035,Classic Film Industries +15957,Roy Del Ruth Productions +13796,Hong Kong Alpha Motion Pictures Co. +892,Qwerty Films +16270,Kulturtuben +5721,Phoenix Films +23940,Cub Eight Productions +19905,"Perfect Game, The" +82322,Opera Film (II) +349,Cruise-Wagner Productions +20658,TinRes Entertainment +8275,Spier Films +43640,Zéno Films +8366,Road Movies Filmproduktion +73686,Antibes Inc. +18811,Brink Films +68746,Charles Chauvel Productions +7535,Lux Digital Pictures +19477,Dune Films +90792,Mare Nostrum Productions +22058,Krisjair +4523,Deadline +17023,American Pictures +38798,I.R.M.I. Films Corporation +49619,Estrella Productions +90512,Don Bluth Productions +10892,Everest Entertainment +11420,Showbox Entertainment +41658,Residaco +18477,Les Films de la Boétie +67504,Savage Productions +45119,Hollywoodmade +8294,Dreamer Joint Venture Filmproduction +19636,Thirteen Productions +21775,Union Entertainment Group (II) +73555,Fakir +528,Bandai Visual Company +5555,Global Medien KG +20691,Essential Filmproduktion GmbH +654,South Pacific Pictures +67498,Mahzen's Film +18161,Condor Films +46844,Tall Man Films +18437,Finnegan Associates +7305,GNK Productions +19463,Magnum Films +89612,Fuglene AS +17748,Forward Films +8453,Télévision Suisse-Romande (TSR) +8088,Origin Pictures +9300,TV Asahi +1728,Sandrews +7216,Double Dutch Films +1844,Ring Productions +77170,Hey Pal Productions +68319,Lunde Film +14091,Arcola Pictures +7608,Eyeworks Film +58546,Ripken Productions +8411,Metro-Goldwyn-Mayer (MGM) +31922,Double Negative +11468,Charles B. Pierce Film Productions +745,Les Films de la Pléiade +12100,Palatine Étoile 9 +4255,Kings Road Entertainment +59666,Robert Stillman Productions +17731,Freestyle Picture Company +80550,Sleeper Films +4096,icon +1630,Dream Entertainment +49803,Precision Films +65681,Three Rivers Production +71223,Cinematografica +16261,Tricarico Chavez +21084,Image Organization +64898,Veracity Productions +7262,Random Films +7075,Metanoia Films +4611,Grow Pictures +35562,Gamechanger Films +78226,Elite Film Production +324,Flach Films +6421,Disney +85121,Lindemann Entertainment Group +3670,KLM Royal Dutch Airlines +2806,South Australian Film Corporation +20771,Kino Swiat +94201,New Zealand Motor Corporation +68261,Meems +30147,Eurisma +14809,Ekran +4852,Mystique Films Inc. +31818,Junction Films +4505,Reverse Angle Production +11912,Mikado Film +6213,Golden Princess Film Production Limited +56396,Snider Than Thou Productions Inc. +16977,Allied Films +5096,Buena Onda +87858,"Colorado Office of Film, Television & Media" +5285,Greater China Media Entertainment +4927,Eagle-Lion Films +81200,XIT Financial Group +53496,Les Films Upside Down +80069,Posterity Pictures +27621,Select Media Holdings- Moving Pictures +2493,Tandem Communications +12008,Misha Films +12234,Chambara Pictures +89545,SquareOne Entertainment +18575,Parallel Pictures +675,Forward Pass +12474,J&M Entertainment +3593,Brandenberg +4630,Amicus Productions +32793,CST Telecommunications +2270,China Film Group Corporation +1200,Film Trustees Ltd. +6692,Benaroya Pictures +77405,Marble Road Productions +80783,Know Rules Media +53152,Creative Wealth Media Finance +37208,Vision Films +2254,Egoli Tossell Film AG +1880,Zentropa Productions +4524,TV 1000 +94402,dutch tilt film +219,The Mirisch Corporation +78037,Love Finds You Productions +11736,El Deseo S.A. +10118,Abra Producciones +5622,TVN +1826,Play Art +4105,Amblimation +48612,Pocketbook Productions +76482,Les Films 7 +45486,ESMA +72797,Osmond Productions +38670,Greater Union Organisation (GUO) +11551,Movie Central Network +23751,LA Publicity +32054,Sovinfilm +22588,인벤트 디 +75480,Media Transactions +4951,Independent International Pictures (I-I) +12625,Canal+ Espana +11931,Prime Time +77636,GFM films +3383,777 Films Corporation +4065,Wild Street Pictures +81364,Curious Film +18582,Bert I. Gordon Productions +23709,Koala Cinematografica +17286,Anthea +42231,Summer Release +2499,The Kushner-Locke Company +33022,Go Faster Stripe +16710,Lord Grade +5104,José Frade Producciones Cinematográficas S.A. +53416,Fitzwilliam Productions +55142,Wigwam Films +82019,GPeeS +79077,Jerry Leider Company +53823,Spaghetti Film +78039,RFB Enterprises +35471,Raw TV +25845,Exposure +14970,Kick Ass Pictures +2879,Exodus Film Group +17161,Odyssey Media +22065,Bo-Town Films +3754,Bert E. Friedlob Productions +5644,Magic Light Pictures +41425,Precept Productions +7817,Defender Production +12353,i2i Media Programme +33130,Sallah Company +20369,Slate Films +13671,ABC Motion Pictures +55497,Sobras International Pictures +5084,Altavista Films +82779,Cinepantera +94198,Pork Pie Productions +6255,Jim Henson Pictures +26890,Douri Films +30987,QMedia +5494,Zero Sum Productions +19902,Prelude Pictures +41426,Objective 49 +48690,PayperMoon Italia +4847,Vista Street Entertainment +51864,H Films +2780,Cube Vision +6371,Unstoppable Entertainment +8601,Tim Burton Productions +23665,Forecast Features +68946,Double D Productions +23683,Aurora Productions LLC +48613,Waterfront Pictures +23207,Invicta Capital +15526,MGM-Pathé Communications Co. +14270,Cheviot Productions +321,Memfis Film +547,Open City Films +66454,Twenty Eighteen Seventy-Six +52065,Fuego Films +9980,Fondo para la Producción Cinematográfica de Calidad (FOPROCINE) +67128,Aho & Soldan +12991,Finos Films +16331,Nat Holt Productions +14773,Lorac Productions +1473,Depth of Field +93974,Valmora Acqua Minerale +46939,Nashe Kino +62942,Argosy Productions Limited +16748,HarBel Productions +50246,Mirrorball Films +6666,Herrick Entertainment +46160,Mustard & Co +22037,7th Sense Films +86706,이디오플랜 +9372,Metronome Productions +17449,Grosvenor Park Productions +18615,Love Lane Pictures +44097,MIG Film GmbH +6302,Room 101 +17084,Catherine Dussart Productions (CDP) +4090,Hanson Allen Films +19785,Khoury A Marriot Production +14988,Icelandic Filmcompany +21897,Foresight Unlimited +7753,Hang Phim Truyen +25433,DEJ Productions +1012,Parabolic Pictures +3094,Shintoho Company +13969,Globo Filmes +964,Keith Barish Productions +1954,Loma Nasha Films +9329,The Vitaphone Corporation +95799,Oy Rabbit Films Ltd. +11679,Nordic Film och TV Fund +47702,Cinergy Pictures +2596,Jerry Weintraub Productions +5891,Cecchi Gori Group +72917,"Doha Film Institute, The" +4269,Nuova Dania Cinematografica +80906,Boundscript Motion Pictures +2908,Mars Distribution +77171,AGI Entertainment +3490,Media Talent Group +1139,Heron Film Productions +7437,IM Global +72933,Bron Creative +77948,Musidora Films +32245,ASIG Productions +27460,Petri Entertainment +5915,Sahamongkol Film +89,Augustus Film +22805,7 Films Cinéma +75357,BondIt +19851,Pitbull Pictures +91896,Gnu Films +17956,Transcinema +16020,Chiragdeep International +13566,Virtus Film +22823,Attic Light Films +17032,Barry Mendel Productions +21751,StarGate Entertainment +51905,TOHO +71884,Snowman Enterprise +4241,West Film +11030,Envision Entertainment Corporation +21206,New Wave Entertainment Television +735,Waverly Films +3557,Seraphim Films +50814,La Ignorancia de la Sangre +41042,CityMation +38617,Quantum Entertainment +74572,Elzévir & Cie +368,Splendid Pictures +3790,Toei Tokyo +42040,Airone Productions +56056,MAFILM 1. Játékfilmstúdió +11441,Propeler +876,Sara Films +6755,Nippon Television Network Corporation (NTV) +75712,Ruby in Paradise +48788,Practical Pictures +5703,Wayfare Entertainment +2090,Motion Picture Corporation of America +13812,Major Productions +68304,Crush Entertainment +39420,Bill and Ben Productions +94199,New Zealand United +14620,Gosteleradio +15378,Starlight Film +336,Wiedemann & Berg Filmproduktion +73204,AZ Celtic Films +48177,Therapy Content +41539,Rastar Films +7710,BBC One +17779,Simon Productions +5356,Pierce-Williams Entertainment +69232,Light Night +228,Filmpool Nord +17139,David L. Loew-Albert Lewin +93203,Daga Filmes +77268,P.C.L. Film Studio +88601,CAOH Enterprises +6359,Cipher Films +15568,"Zespol Filmowy ""Pryzmat""" +927,Palace Pictures +2441,Fandango +6282,Shadow Theatre Films +74657,Manfred Durniok Filmproduktion +6365,Jack Giarraputo Productions +22209,Odeon Films +69288,Studio Folimage +22512,Arlington Road Productions Corporation +48176,Roswell Films +10893,Big Screen Productions +21121,Greycat Films/Neo Modern Entertainment +15719,Terra Film +52669,eOne Television +117,Kunsthochschule für Medien Köln (KHM) +4595,Negativ +4428,Blockbuster Movie Entertainers +3548,Big Picture Media Corporation +5391,DisneyToon Studios +89720,Mooseport Productions +36245,Bedford Pictures Inc. +15073,Enlightenment Productions +584,Norma Productions +9210,Film Four International +2378,Offspring Entertainment +60399,Central Film Office of the Iranian Ministry of Culture +45852,Comedy Partners +5687,Beijing EE-Media Co. +3221,Sveriges Television (SVT) +22622,Consejo Nacional para la Cultura y las Artes (CONACULTA) +1548,Franz Seitz Filmproduktion +79559,Stunts Unlimited +59822,PSH Collective +82957,Hertlandy Productions +73954,Quality Growth International Ltd. +2325,Orsay Films +19528,ApolloProScreen Filmproduktion +18999,Montauk Productions +15407,Arlington International Pictures +5056,Head Gear Films +91066,Jobro Productions +15042,Gun for Hire Films +10012,Nadie es Perfecto +10351,IAC Film +76915,CPH Film Fund +23468,Fallen Films +42877,"Yellow, Black & White" +20259,Buckman +1755,Allied Filmmakers +8402,DePatie-Freleng Enterprises (DFE) +4799,Eurociné +8934,Studio Hamburg WorldWide Pictures +23587,Screenland Pictures +86834,Rocking Films +88030,Harbin +54734,Lightcraft +724,Beijing New Picture Film Co. Ltd. +20528,Talking Monkey +6356,Brightlight Pictures Inc. +70733,Tom de Mol Productions +63716,Álvaro Agustín +14148,Saber Productions +51748,FilmBros +1444,Cannon Group +24093,Lab4 Productions +23036,C.E.O. Films +5426,Benedict Bogeaus Production +30994,Union Générale Cinématographique (UGC) +45528,McNaught Syndicate +15268,BKM Film +8321,Tres Mentes +15645,Reel One Entertainment +8850,Extension 765 +25114,Studio Dim +53673,Cort/Madden Productions +4581,Dovzhenko Film Studios +15798,Zingraff Motion Pictures +3080,Midfield Films +2605,Gran Via Productions +50478,Windowseat Films +1266,Octagon Films +235,Nordisk Film +18583,Alexandros Film +27499,AGGK Films +4894,Associated British-Pathé +16014,F.O.D. Productions +126,Lakeshore Entertainment +20363,Equity Pictures Medienfonds GmbH & Co. KG IV +6360,Stealth Films Limited +4903,Nero Films +56403,Beachside Films +21673,Discovery Films +8430,Cliffjack Motion Pictures +239,VPRO Television +7480,Comedy Central Films +21014,Gloucester Place Films +5567,ALT Entertainment +3353,Element Pictures +842,GreeneStreet/SKE Films +41258,Région Aquitaine +55968,Submarine +54602,Spring Pictures +13751,Los Altos Productions +513,Cosmo-Films +7084,Travieso Productions +1887,Lorimar Motion Pictures +57294,Mandarin Cinéma +18987,Unthank Films +67993,Dorchester +4582,Xi'an Film Studio +19718,Battlefield Productions +23308,Victor & Grais Productions +68260,Tapped Pictures +86556,Olhar Imaginário +3458,Clover Productions +925,Nu Image Films +388,Horizon Pictures +2690,Screen Yorkshire +16772,Little Bear +75483,S.M. Films +76462,Investors In Industry PLC +42485,Oceanus Pictures +19904,Kenio Films +1603,Les Films du Siècle +3511,Her Best Move LLC +30271,Birchwood Pictures +2374,Thats Hollywood +736,Little Shark Entertainment GmbH +4403,Stuber Productions +10962,Freefall Films +1668,Riff Raff Film Productions +28787,WideAwake +43344,Triple 7 Films +5992,Inspired Minority Pictures +2361,Ad Hominem Enterprises +26769,Battletruck Films Ltd. +20170,Canadian Television Fund +77476,Size Matters +22875,Denjin Zaborger Film Partners +62230,Pinewood Pictures +59,A Band Apart +13362,Preferred Content +82227,Three Angels Productions +4945,Open Eye Pictures +10102,Cattleya +34249,Kingdom of Light Entertainment +9075,Hughes Capital Entertainment +35043,Destro Films +5299,Choice Films Inc. +8470,Philistine Films +18942,Ingenious Broadcasting +23243,Sikelia Productions +7928,NBC Studios +57747,Agidi +4082,Threshold Animation Studios +15353,Sh-K-Boom Records +525,Ixtlan Productions +26137,Dog Eat Dog Films +38792,Ancla Century Films +2794,Productores Asociados SA +12750,Angry Film +24728,North CKY +7762,Casé Filmes +6181,Svensk Filmindustri (SF) +9066,Climax Films +12032,Apulia Film Commission +9205,Midas Filmes +5763,RBG Films +49675,Agincourt Productions Limited +46722,Golden Effects Pictures +22602,Brains Base +53785,Brooks Ltd. +3012,Pathé Distribution +86621,Wild Spark +3397,Tommy +54760,Kaval Film +21933,Dude Productions +37034,Flach Film Production +14924,Nour Films +2130,Mr. Mudd Production +1078,Shanghai Film Studios +10936,Hydraulx +91359,Bell & Howell +22690,Channel 1+1 +3958,Front Street Pictures +2102,Frankovich Productions +70420,Nevermore Films +11592,Silk Road +5526,David Susskind Productions +18810,Viada Producciones +44224,Egoli Tossell Film +19901,HighRoad Entertainment +3792,BOB Film Sweden AB +3362,Geneon Entertainment +45585,R. R. Movie Makers +15059,Simcom Limited +7046,Paris Film +1978,Global Pictures +51065,Fisher King Production +3707,The Film Factory +4077,Crystal Sky Worldwide +6518,MMM Film Zimmermann & Co. +32287,Good Note Productions +19753,Rank Film +4351,Trans Pacific Films +21015,Moviepool GmbH +6919,Shochiku-Fuji Company +12617,Belarusfilm +60658,Zippcast Films +20783,Fiction Films +75862,The Mingei Theatre Company +5229,Bryan Foy Productions +415,Laurence Mark Productions +28176,Bomar OOD +46196,The Victor Film Company +17069,Larco Productions +1612,Ciné Vog Films +19982,Grand Pictures +2192,VIP Medienfonds 2 & 3 Filmgeschäftsführungs GmbH +4977,Larry Darmour Productions +10160,Illuminata Pictures +49988,Green Lake Films +508,Regency Enterprises +39601,Bill Bennett Productions +5496,Cinezeta +22061,Vitamin A Films +25348,Studio Three +37123,Mars Dagitim +3693,Alpine Medien Productions +12476,Yorkshire Television +10230,Blue Wolf +95674,binary light +15418,Daystar Productions +67777,Mass Hysteria Entertainment +20139,Independent Moving Productions Inc. (IMPinc.) +6092,Licht/Mueller Film Corporation +34234,Touchdown Productions +20580,Amazon Studios +2640,Odeon Film +51996,All For A Films +51549,Athena Film A/S +16860,Hernany Perla Films +7337,Mushroom Pictures +1942,Pad-Ram Enterprises +39644,Cinelou Films +5630,Non-Stop Productions +86041,Inkjet Productions +3142,IdtV Film & Video Productions +81132,Grand March Productions +21590,Pressman Productions +8299,Krasnoff Foster Productions +68596,Cineyugg Entertainment Pvt. Ltd. +70973,Simon West Productions +9334,GötaFilm AB +864,No Dream Cinema +11616,Barry & Enright Productions +4349,Amrion +3829,WarpX +22841,Lightstream Pictures +6834,Out of Africa Entertainment +23959,Frame by Frame +13040,Kasdan Pictures +5793,Kastle Films +36029,MCG +23715,Deadly Dilletantes +25188,Rattlesnake Productions +69766,Element Twenty Two +28602,Tree +19116,IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG +7120,Rezo Films +29822,Visuals-Productions +1869,AMLF +3455,Rifilm +1375,Jupiter Generale Cinematografica +41252,Gran Via +14143,Grass Root Film Company +43463,Sob Noisse Movies +3281,GK Films +7177,Item 7 +50914,Tri-State Pictures +39168,Picture Circle +11343,Fried Films +68952,Mirashin Korea +90733,Neon +7907,Dingsheng Cultural Industry Investment +64899,Make A Move +48116,Antena 3 Films / Cangrejo Films +2030,Participant Productions +7606,Universal Pictures (UK) +22297,Jonesfilm +11216,Cine TV Film Production +20197,Rev Kids +44739,"Thank You, Brain! Productions" +55583,Cumulus Projekt +45724,Taodue Film +5166,Filmiteollisuus Fine +58675,Perry Street Pictures +14527,Gemini Industries +6452,Dentsu +76342,Piki Films +4649,Sedic +47394,Justin Roiland's Solo Vanity Card Productions +8893,Film Costellazione Produzione +25729,Walking West Entertainment +75017,LBI Productions +35140,Aldrich Company +93961,Milestone Film & Video +63691,Normal Productions +38418,Mely Productions +68461,Ora Film +16961,Video Nasties +27404,Supinfocom Arles +23617,Mediopolis Film- und Fernsehproduktion +158,Spyglass Entertainment +58225,Studio Filmowe Zebra +23937,Film I Skane +3326,Diagonal Pictures +24278,Barking Fish Entertainment +31740,School of Life Productions Inc. +21594,Pathé Frères +69832,Paragon Films +2308,Type A Films +264,Studio Babelsberg +90076,"Writers Studio, The" +3641,Silver Nitrate Pictures +36913,Max Film +1077,Gonzo +17643,Met Film Production +3223,MeniThings LLC +16889,Burning Blue +20416,Regione Lazio +29315,Cine del Caribe S.A. +89163,Kids' WB +81500,Oy Future Film Ab +53903,Sud-Est Productions +13432,Luminous Film & Video Works +7818,Frame Werk Produktion GmbH & Co. KG +73861,Kredyt Bank PBI S.A. +22107,Sierra/Affinity +8899,PeaceOut Productions +7493,FilmNation Entertainment +79236,Work Point Entertainment +9993,DC Entertainment +510,Lunaris Film +4308,CMYLMZ Fikirsanat +25261,Noir Blanc Films +44610,Sig Shore Productions +11865,Twentieth Century-Fox Productions +706,Sputnik Oy +4527,Concorde Pictures +12391,Jouror Productions +11989,Interfest +52064,La Piedra Films +76952,Yona Films +5016,Nepenthe Productions +1296,Crossbow Productions +46201,Norsk Filmfond +3506,Pioneer Productions +1533,Indigo Film +8177,Rothkirch Cartoon Film +1203,The Ontario Film Development Corporation +10560,Arturo González Producciones Cinematográficas +62514,Metropolitan Entertainment +52698,Revel Entertainment +11415,Beijing Forbidden City Film Co. +81693,KaufmannWöbke GbR +23716,Harbor Picture Company +5420,Color Force +12574,Sundance Channel +20288,IP-Verity +12384,Chubu-nippon Broadcasting Company (CBC) +12077,Viacom Productions +1283,Paris-Europa Productions +829,Vertigo Entertainment +827,VIP 3 Medienfonds +6037,Secol Superbo e Sciocco Produzioni +81254,Rashmi Sharma Telefilms Limited +77973,Lord Miller +12657,Production I.G. +1811,FilmColony +2186,Filmline International Inc. +80975,Produziones DC 7 +73843,Coproducción Francia-España; Inti Entertainment +3617,Shinkai Makoto +59811,Netflix +43909,Groparu.ro +11018,Penta Pictures +64910,Filmarpa +2882,Neal H. Moritz Productions +19177,Red Granite Pictures +101,Roxy Film +16857,Millimeter Films +73759,Sterling Rock Productions +39016,Alan Sacks Productions +18144,Vertebra Films +22806,Cima Produzioni +53824,Co-Productiefonds Binnenlandse Omroep +41640,Archer Gray +69456,Utu Productions +2313,Andrea Sperling Productions +7585,Delphi II Productions +19997,Kievnauchfilm +10999,Twentieth Century Fox Home Entertainment +11191,Libra Film +61335,Mutual Films International +3923,Strand Releasing +31473,Mob Scene Creative Productions +58324,Hoytyboy Pictures +6587,Astron-6 Video International +4697,Sunset Productions +23484,Kominsk +28957,Anolis Entertainment +33783,Big Deal Pictures +25817,In Extremis Images +13768,Penelope Productions Inc. +23513,Ombra Films +8539,Leverage Entertainment +2604,Mark Johnson Productions +20344,First Light Production +34679,Perfo Production +6137,Ruddy Morgan Productions +49723,Strange Days Production +3204,Big Idea Productions +10663,Flashback Entertainment +2187,Variety Film Production +12292,Temple Hill Entertainment +3166,Walt Disney Productions +25072,Mount Olympus Productions +60621,Busted Shark Productions +3649,Central +4700,Linson Entertainment +59458,Ravina Filmes +12215,South Creek Pictures +1051,HSI Productions +23564,Jeff Franklin Productions +17387,Jeonwonsa Film +144,Fono Roma +7270,Opus Pictures +6351,Xanadu +24157,SLS Video Productions +19950,Slipstream +469,Hemdale Film Corporation +788,Bel Air Entertainment +4339,Rough Trade Distribution GmbH +1192,Green/Epstein Productions +4923,Brightstar Films +19638,Altitude Film Entertainment +1885,Silver Pictures +22467,Mu Films +74691,Polski Instytut Sztuki Filmowej (współfinansowanie) +37381,Blind Wink Productions +23921,Circle of Confusion +70995,Imagi Production +24060,Khanzhonkov +13563,TVINDIE Film Production +82855,Pasacana Films +43810,Buton Film +6576,Hammer Films +3217,Purple Pictures +23968,Verenigde Nederlandsche Filmcompagnie (VNF) +44113,Beta Cinema +11667,Northern Ireland Screen +71087,Films de l'Archer +19916,Lotus Production +13149,Magic Hour Entertainment +25473,Nu Image / Millennium Films +34338,Number 9 Films +11794,Lunanime +79733,Talent International Film Cultural Company +18,Gracie Films +64464,Kinoproduction +39134,Kino Lorber +8830,Touchwood Pacific Partners 1 +93380,Eleventh Street Production +46298,Kinetic Arts +37336,Down Productions +15417,Telewizja Polska - Agencja Filmowa +7747,Storefront Pictures +90663,Brian Grazer/Scott Rudin Productions +34200,keyfilm +10991,Jon Shestack Productions +45015,Juliette Films +14097,Clemente Lococo +509,Rhombus Ringfilm +90093,Winslow Partners Ltd. +78944,Soficinéma 10 +10157,Beacon Pictures +66728,Rajshri Productions +84883,Elokuvayhtiö Oy Aamu +148,Gimages +6145,Kuukulgur Film +8469,Louverture Films +95315,Uneurop Film +69191,Magellan Films +9074,Mainstay Productions +50093,Stunt Bros +12862,Film Suez +9177,Eisei Gekijo +19900,Sky Atlantic +5912,American Media Group +24076,Paquin Entertainment Group +48490,Chadwick Pictures Corporation +2124,Melvin Simon Productions +5458,Sony BMG Music Entertainment +54606,Ontario Film and Television Tax Credit (OFTTC) +11628,Tequila Gang +2373,Patriot Pictures +5770,IMS 3 LLP +19643,"Sommers Company, The" +5632,Milky Way Image Company +9023,Pro 7 +22023,Unapix Entertainment Productions +81225,Breakthrough Entertainment +84330,Bluverde F.V.T. Produktionsgesellschaft +8521,Enrique Cerezo Producciones Cinematográficas S.A. +40768,Navert Film +52607,DNA Pictures International +13304,Gouvernement Canadien +32910,SMB Investments +46051,Clifford Werber Productions +37762,Banque Populaire Images 5 +17168,Subterranean Films +86622,Don't Hang Up Films +42183,Carnelian Productions +15784,Shelter Films +25513,Sofinergie 1 +72758,Shooting Star +73687,Acme Films Ltd. +1820,Corona Cinematografica +11284,Ajym Films +2575,21 Laps Entertainment +66913,Daiei Tokyo Daini +17806,LB Film & Video +2943,GO Productions +7888,ScreenWest +5735,Prism Entertainment +56696,Parkside Pictures +95296,Three Wolves Productions +2293,Silverwood Films +12876,Gordon Bijelonic / Datari Turner Films +2578,TCB Films +81359,Rota Productions +14085,Hardy Pictures +20459,Freeward Films +15844,Thomson Productions +1553,Selznick International Pictures +4101,Dionysos Films Oy +30393,Suburbans LLC +3938,Blueline Films +3587,I Could Never Ltd. +2486,Iéna Productions +10338,Perfect World Pictures +58331,Franklin/Waterman Productions +10210,Morgan Creek Productions +40245,Quality Filmed Entertainment +14714,China Film Group Corporation (CFGC) +13495,Flashpoint (I) +16685,United Artists Pictures +17719,MJZ +17958,Endeavour Productions +70654,Esperanto Kino +4350,Atlantis Films +2525,Avalanche Productions +24561,Quick Six Entertainment +25654,The Imaginarium +1848,Les Films d'Ici +49321,United Filmmakers Group +77683,Junior-Filmi +23632,Snowfall Films +14127,Victor Hanbury Productions +11833,Dream Venture Capital +1129,Cinetel +19037,Umedia +10143,Productora Ocio +42171,Blue Spirit Animation +17915,Trans World Entertainment (TWE) +31077,MTV Italia +18906,Tele-Film +22791,Andale Pictures +20486,Go2 Digital Media +76910,Conseil Général de Lorraine +70773,Greenroom Entertainment +1236,Mandalay Entertainment +5008,Zurbano Films +94358,Night Skies Productions LLC +11389,Österreichisches Filminstitut +1317,Charles K. Feldman Group +20206,Shelty +1060,Oliane Productions +47745,Sydney Lumet Productions +1195,Omega Project +23938,Burke/Samples/Foster Productions +17727,La Panda +51322,Capi-Holland +55665,Big Island Productions +37844,Davis Entertainment Filmworks +10926,Pacifica Film +74023,United Enterprise (H.K.) Corp. +73737,Kouwa International +51611,Audax Films +85313,Ghosts Media +1401,Sonocam +52136,Aurora Entertainment +1666,Rhône-Alpes Cinéma +3259,Almerica Films +14312,Polytel +38181,American Films +11627,Necropia +1069,GFT Entertainment +10313,Astral Bellevue Pathé +551,Mandalay Pictures +14391,Elliott Kastner Productions +8467,Clarity Productions +95040,Ajanta Pictures +21026,Bill Civitella/Todd Zeile Production +3272,Aramid Entertainment Fund +7855,B.R.C. Produzione S.r.l. +64945,CinéTé Filmproductie BV +13507,Pie Films Inc. +215,Double Feature Films +7620,Bend It Films +16636,Shapiro-Glickenhaus Entertainment +56787,The South Australian Film Corporation +22351,The Canton Company +87696,Le Soleil Films +12875,Vacationeer Productions +7481,Lunch Box Entertainment +14495,Sierra Pictures (II) +34471,Callender Company +13786,Aquarius Films +61101,d.i.e. Film GmbH +23300,K/O Camera Toys +23188,Creature Features Productions LLC +62925,Kmunications +89253,Full On Film Productions +11180,Liaison Cinématographique +14982,Tandem Productions +10778,Joseph Hamilton International Productions +26687,Bateman Company Productions +35508,2-Team Productions +10441,The Bureau +13480,Haishang Films +67977,Crazy Cow Productions +167,Deblokada +56500,Group Hug Productions +3572,Indion Entertainment Group +22210,Ontario Film Development Corporation +2570,Bona Fide Productions +33276,Maxima Film +20974,Cinematográfica ABSA +59033,Samosa Stories Private Limited +10907,Les Productions Georges de Beauregard +7435,Phantom Films +2214,Flower Films +4104,Porkkana Ryhmä +24108,Eve Productions +770,Kingsgate Films +87494,Thoke Moebius Film Company +5173,Warner Bros. Home Video +68106,Fondation Gaz de France +21582,Vertikal +45461,Meta Film +60919,Marlboro Road Gang Productions +14799,Filmes International +46317,Barracuda Films +13077,Animate-Film +3173,Chiodo Brothers Productions +12219,Cinereach +27100,Zeynofilm +15116,Norman Stephens Productions +10246,Cross Creek Pictures +80468,Xeitgeist Entertainment Group +4252,Studio Babelsberg StudioBabelsberg Motion Pictures +1472,Delux Productions +15166,Renkli +7346,La Fabrique 2 +75713,Full Crew/Say Yea +37811,Paradigm Hyde Films +4009,Unified Film Organization (UFO) +88934,Monkeypaw Productions +38209,Toron Screen Corporation +605,Rampart Productions +31596,Anglo International Films +11935,Fonds Images de la Diversité +83441,Fuzzy Bunny Productions +10906,Les Films Impéria +26610,Dixie Theatrical Corporation +44783,Smart Entertainment +3401,Fox West Pictures +25582,High Delft Pictures +21683,Barry Katz Entertainment +13287,Kowalski Films +7961,Gaumont International +6930,Elle Driver +81248,Simplemente +20987,Balboa Entertainment +21901,Ledge Productions +10566,Clipsal Films +1342,Société des Etablissements L. Gaumont +6762,Decla-Bioscop AG +74910,Spotlight Pictures +14529,Eagle Films +51045,Digitalkraft +1760,Dorje Film +1083,Ceská Televize +40975,Vroom Productions +60014,One Small Instrument Pictures +44,Cruise/Wagner Productions +30290,Adolfo Aristarain +8858,NetFlix +75932,Raindog Films +12157,Sideways Productions Inc. +3283,ACH +9053,Ouille Productions +21181,Smoking Gun Productions +56,Amblin Entertainment +5705,CinemaNX +51663,13 All Stars LLC +74856,Lithuanian Film Center +14656,Dadaş Film +4532,Superior Pictures +29692,Tritone Productions +701,Meespierson Film CV +24902,Macari/Edelstein +11671,Studio 4°C +48476,Cinequanon Pictures International Inc. +4688,Concorde-New Horizons +18549,Aristarain P.C. +89082,Imperfect Films +33,Universal Pictures +1408,Universal Productions France S.A. +10201,Interscope Communications +67496,Avşar Film +72689,Beverly Ridge Pictures +4299,Newtown Productions +13777,Mark Forstater Productions Ltd. +79563,Go Insane Films +3321,Million Channel Ltd. +5845,Royal Shakespeare Company +42696,Basra Entertainment +88295,Sacha Pictures +21147,Ovídeo TV S.A. +56289,Headliner Productions +732,Mate Producciones S.A. +9015,Worldview Entertainment +23506,King World Entertainment +22028,NiKo Film +3072,Princess Production Corporation +7225,DHX Media +27559,Bianca Film +3002,Tristes Tropiques +81302,Jerry Buss Production +21384,KinoAtis +12797,Jinriki Hikoki Sha +69485,Odin +10076,"Thekraken Films, A.I.E." +10165,New Century Entertainment Corporation +94477,Mayfair Films +1841,Percept Picture Company +29842,3-H Films +52854,Masnomis +12204,Tiger Moth Productions +74472,Ball & Chain Productions +69952,VB Pictures +22221,"Toei Company, Ltd." +7775,Independent Edge FIlms +80578,Dan Lupovitz Productions +1836,Contrafilm +69225,ExtraOrdinary Casting +95097,MAT IV +78412,New Classics +10202,Columbia TriStar Home Entertainment +16421,Rosa Filmes +18921,Pam Williams Productions +9998,Umbrella-Rosenblum Film Production +55642,The Andre Company +23812,Swift Productions +152,Icon Productions +37503,T Squared Film +34202,Woman Wanted Productions Ltd. +36158,Grodfilm +10427,Open Road Films +13813,Millennium Films +55528,Oak Productions +41530,ION Films +80135,Yofi Films +3304,WY Productions +49934,Kazak Productions +93224,Milestone FIlms +3078,HBO Pictures +8915,Pandemonium +8238,Regal Entertainment +3036,Walt Disney Studios Motion Pictures +6875,leomark studios +6595,Fries/Schultz Film Group +36606,Maple & Palm Productions +86050,BUBBLE Studios +37498,Neverland Films +4919,Eros Films +80990,141 Entertainment +10478,Polsky Films +44308,RTM Film Inc +4063,Trimark Pictures +2649,New Real Films +6838,Stellar Mega Films +7294,Reliance Entertainment +6510,Defender Films +12046,Fu Works +7263,FilmDistrict +24996,Storm Entertainment +18464,Budapest Filmstúdió +18620,Artists Production Group (APG) +24959,Canal+France +13113,A-1 Pictures +77803,Robert L. Lippert Productions +1441,Associated British Picture Corporation +15993,Pig Newton +995,Cinerenta Medienbeteiligungs KG +46667,American Twist +95096,Stone City Films +4826,Sunset Films International +592,Claudie Ossard Productions +65683,Kinowelt Median +53414,Spanknyce Films +79897,Progress Communications +5409,Bing Crosby Productions +6618,A.M.S. Productions +88016,Hurwitz Creative +16959,Elevenmedia +19855,Internationale Filmproduktion Blackbird Dritte +71806,Enumerated Pictures +2331,Filmové Studio Gottwaldov +698,Scottish Screen +14029,Independent Producers +11345,Stillking Films +15984,Gower Street Pictures +71702,Making Movies +68546,NJJ Capital +36109,thefyzz +2501,MAFILM Stúdió 1 +12612,Camp Films +4117,Pagoda Film +2624,Lago Films +12508,Studio Hraných Filmov Bratislava +5749,Pierpoline Films +10565,Good Machine +5131,Cinema Soleil +3213,Disney Channel +652,Miko Productions +36555,Famous Players +53494,Mille et une Films +90232,SarcoFilms +186,Pyramide Productions +8760,AAR Films +54238,European Film Company +60515,Maple Leaf Finance Primeredian Entertainment +21860,AKN Productions +6552,Storm Studio +69224,Juniper Post +4268,Les Films du Griffon +6068,HBO +26995,Animal Kingdom +18776,Filmesdamente +10651,Productions Emile Natan +7996,Films A.B.C. +2696,Mogador Film +26590,Backup Media +4189,Scala Films +63443,The Fyzz Facility +87427,Straight Shot Films +18485,Rohfilm +32714,Albertine Productions +20360,Internationale Filmproduktion Blackbird Erste +89221,The Wing-Scope Film Production Ltd. +21293,Quantum Films +87848,Film 111 +53497,Kinologic Films +16850,ApolloMedia Distribution +34998,Avnet/Kerner Productions +2933,Tenth Planet Productions +2830,Rival Pictures +10921,Sumitomo Corporation +72481,Wonder Room Productions +3478,FlipZide Pictures +18176,Ansor International +76038,Costa Films Barter +19932,Filmcoopi Zürich +26700,Random Bench Productions +81129,Youngheart Productions +11351,Hart-Sharp Entertainment +55585,Goran Production Company +6127,Metro-Goldwyn-Mayer Pictures +8799,Alicéléo +38609,Holly Hill Productions +15894,Soficinéma 8 +34804,Locomotive Productions +74429,Ralph Minden Film +20358,RHI Entertainment +6176,Southern Cross Feature Film Company +26819,Sebor +1318,Allied Film Makers +18444,Huh huh -Filmi Oy +68096,LHR Productions Inc. +13957,Near Dark Joint Venture +76756,Movie Plus productions +26106,Refresh Production +14273,Jean Renoir Productions +40093,Callisto Entertainment +11358,Little Bird +24630,Citizen Jones +61019,Survivor Pictures +1360,Glass Eye Pix +93187,Espaço/Z +22562,Raven West Films Ltd. +95161,Cima Media International +58325,Nigel Productions +8303,StudioUrania +18985,Theta Films +1554,Transatlantic Pictures +64201,Golden Eagle Features +44548,St. Petersburg Documentary Film Studio +8000,Broken Road Productions +73441,Centre National de la Cinématographie (CNC) / France 3 Cinéma +19483,Calle Cruzada +23894,Spooky Tooth Productions +23677,Fondation GAN pour le Cinéma +62513,Easy Open Productions +79785,Lock & Valentine +52160,Saturn Harvest Films +10453,Atlántida Films +68453,Black Sheep Film Productions +24018,Paloma Juanes +3676,ASA Film Produktion ApS +76447,Cinéfeel Prod +22486,Sikhya Entertainment +79548,STANDOFF Pictures +21927,Strange Matter Films +21229,Field Recordings +15921,Josef Shaftel Productions Inc. +23072,Schweizerische Radio- und Fernsehgesellschaft (SRG) +12493,2 Player Productions +19130,Houston Museum of Natural Science +7984,"Zespól Filmowy ""Tor""" +52867,Lastor Media +42218,Indifferent Entertainment +355,R.P. Productions +1483,Redeemable Features +18399,Štúdio hraných filmov Bratislava +64662,Ulterior Productions +6260,Aries International +12236,Blinding Edge Pictures +8605,Cine Excel Entertainment +53303,Werc Werk Works +4809,Dister Group +76994,Cinémage 9 +11461,Bad Robot +4898,Columbia Broadcasting System (CBS) +22695,Smokehouse Pictures +14186,Geordie Sabbagh Productions +1638,Francoriz Production +1976,Film Science +74432,Cruze & Company +21317,Pillar Squared +10967,Home Theater Films +91716,Public Square Films +18371,Omnia Film München +5049,pixstar +6873,vision one pictures +48941,Paradine Co-Productions +12021,CoBo Fonds +1398,Les Films Corona +37888,Elite Filmproduktion +32542,Starburns Industries +11811,Dentsu Tec +89895,Limbo Productions +35915,Noma Productions +87852,Scenario Lane Productions +4097,Heavy Duty Entertainment +882,Toho Company +48701,My Way Pictures +2788,Avex Entertainment +52855,Mad As Birds +47396,Mantle Clinic II +31157,Canal (II) +11842,Company Pictures +85283,Los Angeles Media Fund (LAMF) +19035,Dueto Filmes +4921,Bakshi Productions +1678,Fox Family Channel +875,Films A2 +54224,Nopal Army +8791,Sherwood Productions +79561,Fujisankei +1524,DD Productions +57611,Monoxide Works +491,Summit Entertainment +14299,Tondero Films +3130,Tempo Productions Ltd +89447,"Legend of Ben Hall Movie, The" +11713,MNG Films +36024,British Columbia Film Commission +71863,Département de la Charente-Maritime +89204,LATS Productions +7218,platinum studios +52458,Comenius-Film GmbH +552,Dark Horse Entertainment +67680,Pasta del Capitano +49625,The Reuben H. Fleet Space Theater & Science Center +75513,Burkina Faso Ministry of Life and Culture +57712,D'Angelo-Bullock-Allen Productions +88543,Creative Associates Limited (CAL) +52222,Ronalds Brothers Films +83960,ChevalDeuxTrois +2659,Starz Media +24372,Illuminations Films +12488,Oberón Cinematográfica +5344,MD Pictures +5031,Videovision Entertainment +38284,Bifrost Pictures +31470,RGB Media +12239,SpA Cinematografica +17873,Les Productions de la Guéville +27140,Industry Works Entertainment +23200,Shelter Productions +4989,Regina Associates +52010,Paramount Famous Productions +1714,Les Films Concordia +22376,Plunge Pictures LLC +25570,BBC Drama Productions +1775,Radio Bremen +33660,Camp Hill +16937,Bavaria Pictures +25606,Goskino +22358,Les Films Gibé +21279,Wise Vision +6679,Marvista Entertainment +346,VideoFilmes +13907,Les Films Alyne +48755,Chaplin Film Productions Ltd. +14154,Essex Productions +4005,Skirball Productions +22198,Stars Pictures +2212,Planman Motion Pictures +6573,Mimran Schur Pictures +6684,Boris Films +14571,Balboa Productions +10462,WT2 Productions +55319,Rede Globo de Televisão +81732,Angry Adam Productions +91935,Hot Donut Productions +12501,Green Room Films +21437,Imperial Entertainment +497,Revolution Studios +35212,Chezville +35794,Jerome Balsam Films +12784,Orient Express +17171,Manifesto Films +95918,ApolloProMovie & Co. 1. Filmproduktion +10950,Screen Queensland +54850,Bulletproof Cupid +78185,Noordinary Films +17173,Proton Cinema +3486,DreamWorks Home Entertainment +64814,Marta Cabrera +20244,Kudos Film and Television +312,Soficinéma +29201,Les Films de L'Autre +3750,Balaji Motion Pictures +7009,Pan Européenne Productions +50882,"Stefan Wodoslawsky, Donald Osborne" +18108,G.P.F.I. +63459,Kavac Film +49,El Deseo +749,Christal Films +19233,120 Films +4288,Madhouse +7288,Battle Mountain Films +78455,Canon Productions +11563,Little Brother Inc. +3188,Lemon Tea Productions +73170,Palermo Estudio +423,Phantom Four +16210,Julius Hagen Productions +78999,The IdeaFirst Company +2458,Tartan Films +16814,Süddeutscher Rundfunk (SDR) +76067,Kontsept Film Company +5125,Le Pacte +93177,Watchmen Productions +10348,Republic Pictures (II) +46240,Miscellaneous Entertainment +40797,Prettybird +38245,Experience Media Studios +2506,Dreamachine +17516,Nordisk Film +37567,Mosaic Films +19694,Metromedia Productions +38249,ZVE +80297,The Movie House Sales Company +23291,Vendôme Production +7510,National Filmi Oy +1832,Allarts +3973,"JCE Entertainment Ltd," +6899,Henceforth +7636,Nimar Studios +62512,Nut Bucket Films +38056,Amitabh Bachchan Corporation Limited +8659,Vrijzinnig Protestantse Radio Omroep (VPRO) +78780,Iconoclast +43155,Buckeye Pictures +2165,Balcor Film Investors +76473,Distribution Workshop +35868,Proletariat Productions Corporation +54030,Academy Films +7963,Les Productions René Goscinny +17163,Production Media Group +2509,Artimm +72433,Fincraft Media & Entertainment +1648,Gladden Entertainment +6720,Krátký film Praha +649,Sony +21805,Bandidos Films +54583,Tempo Film +55802,MM2 Entertainment +816,FilmEngine +68540,GHK Kassel +18215,Abtcon Pictures +81925,Choila Producciones Cinematográficas +21083,Soficinéma 2 +12856,1.85 Films +33384,Common Ground Pictures +5745,Park Cinema Production +11279,Films In Motion +21454,Riofilme +14679,Anouchka Films +9030,Next Station Productions +80272,Scorpio Films +76305,Open Doors Films +80268,B | Movie Studios +83029,Tivoli Film Produkcio +76463,Robert Fleming Leasing Limited +6941,Gloria Films +44127,Ystad Österlen Filmfond +1541,Terra Film Produktion +3079,Fantefilm +479,Discina +45783,Wiretap Films +9076,Seed Productions +18674,Lung Cheung Company Limited +4361,RKO Pictures +12012,Eyescreen S.r.l. +63809,Roxbury +10495,Thunder Pictures +44142,International Cinemedia Center +27718,Dub +36614,Senator Film +14821,Entre chiens et loups +34088,Applause Entertainment Ltd. +17793,Hostel LLC +4087,Titanus Produzione +54409,Survivor Productions +66349,High Treason Pictures +13923,Sobini Films +12000,Tapioca Films +8630,F G Film Productions +79481,Paramhans Creations +2865,Insight Film Studios +46234,Independent Television Service (ITVS) +53728,BMW Films +22060,D & B Films Co. Ltd. +5214,Rainbow Productions +52075,Reliance +32483,Haroll Productions +7483,Hearst Entertainment Productions +1347,Aubrey Schenck Productions +2089,Samuels Media +24734,Filmwerx77 +57342,Cypress Point Productions +7990,Cloud Nine Movies +8204,Lumanity Production +70788,Guanaco +10895,Cometstone Pictures +18903,Lighthouse Home Entertainment +11752,Number 9 Films +22747,C.O. Films +22610,Hollywood Studios International +1277,Schlemmer Film +22784,WTFilms +34982,Mythology Entertainment (II) +679,Timnick Films +11712,Kindle Entertainment +20719,Manifest Film Company +81962,Youth House Productions +19010,Emu Creek Pictures +922,SenArt Films +9259,Ramsay Productions +25706,Sandia Media +1512,John Wells Productions +42137,Victory Pictures Production +5357,Zero Gravity Management +76733,M.F.P. +7576,Eon Productions +1316,Monterey Productions +36613,Knightscove Entertainment +9083,Staragara +12264,Pledge Productions +624,Persky-Bright Productions +11227,HDNM Entertainment +7584,Screen Australia +73567,Coproducción España-Argentina-Francia +2479,Myung Film Company +5730,Turner Network Television (TNT) +8512,Rectangle Productions. +65466,Troy Entertainment +4884,Pannónia +15848,Grenadier Films +1929,Sonet Film +51980,Princes Films +3067,Memorial Enterprises +16465,Severed Productions +1607,Gold/Miller Productions +76908,Région Alsace +5410,Maxim Productions +9181,Art Theatre Guild +10761,Danjaq +619,Terra-Filmkunst GmbH +43649,Lilies Films +11774,Bankable +217,Ponti-De Laurentiis Cinematografica +23761,Synthetic Cinema International +10901,Ministère de la Culture +40422,Premiere Entertainment Productions +4234,Original Pictures +14,Miramax Films +41602,BB Film Productions +38208,Koukus Troika +52426,Aloupis Productions +1280,Pacific Western +19534,Mirage +87859,BAF Berlin Animation Film +74917,Ministry of Culture Lithuania +1303,Cadre Films +15163,Algemene Vereniging Radio Omroep (AVRO) +81963,Fader Films +10255,Voltage Pictures +81186,ASPD Films +14794,Südwestfunk (SWF) +12065,Morituri +2711,Bandonéon +40349,Glazier +75190,ALEF Film & Media Group +5113,120dB Films +28382,Kennedy Miller Mitchell +15255,TVC London +9232,Tecisa +93504,Bus Films +93906,Bindweed Soundvision +753,Nouvelles Éditions de Films (NEF) +41077,A24 +10289,DMG Entertainment +6819,Paradox Entertainment +12854,Caledonia Pictures +68945,Revcom Télévision +32598,Tango Films +29506,Matchbox Pictures +31183,BBC Two +17432,KMH Film +89970,Almond Tree Films +16379,Northshore Investments Ltd. +20421,Grand Allure Entertainment +958,Japan America Picture Company +12062,Rigas Kinostudija +74571,Yes-DBD Satellite Services +79898,Historias Cinematográficas +1328,Eichberg-Film +5821,BAC Films +15672,Heritage Enterprises Inc. +5076,TMC +76233,Perathon Film-und Fernsehproduktions GmbH +514,Silver Screen Partners +53804,Waadi Animations +5306,Melnitsa Animation Studio +6617,23 Giugno +13389,PERFINI +5349,Productions Cyme +59827,Patrick Aiello Productions +11236,Zentropa International Poland +10807,Troublemaker Studios +79566,Pin High Productions +41796,JBF +32184,Belle Pictures +70871,Cineplanet +13370,Eden Productions Inc. +762,Mutual Film Company +79545,Conduit +3669,Andrew Adelson Company +4123,Media Principia +78943,Sisifo Films AIE +3723,Rasta Films +15261,Capricci Films +10265,Peter Rogers Productions +75567,Amaru Films +21347,Peter Shaw Productions +11370,Michael De Luca Productions +1271,Pariah Entertainment Group +10159,nWave Pictures +85946,sexual desire +58241,Sofica Valor +2757,Holedigger Films +17165,Docksur Producciones +6889,Pop Gun Pictures +7271,United Pictures +23701,Starstream Entertainment +16468,BR Films +230,Boje Buck Produktion +25673,Cinema Vehicle Services +487,Czech Television +15530,Les Films Hatari +16276,Media Filmes +53151,TriStar Productions +272,Spelling Entertainment +13020,Multimedia Est +2695,Archipel 35 +7770,ApolloProMovie +50650,Ozymandias Productions +8196,Chili Film +975,Gerber Pictures +21018,ZEILT productions +41999,South Australian Feature Film Company +1423,Escape Artists +80255,Divali Films +7506,Graphic Films +51851,Berrick Filmproduktion +37814,Hipgnosis Ltd. +76273,Cultural Ministry +14772,Warner Bros. Home Entertainment Group +8138,Vega Film +29119,Devon/Persky-Bright +12026,Gold Circle Films +2322,The Javelina Film Company +24934,Parlay Films +95580,Bossa Nova Productions +12695,Sixteen Films +64758,Pocket Change Films +1990,Weltecho +8256,"Scottish Arts Council, The" +68257,World Premiere Entertainment +84420,Amy International Artists +3525,Skreba Films +70591,St. George's Pictures +14149,American International Productions +42139,Pacific West Entertainment Group +3231,Apple Creek Productions +1503,Telemondial +43793,Trillion Entertainment +17446,Javelin Pictures +16856,Part II Productions +6451,Bandai +8483,Plattform Produktion +559,TriStar Pictures +12221,Modern Girl Productions +60939,Kataskop Film +23462,HJB Filmproduktion +3407,Shanghai Film Group +65682,Progres Film Distribution +2962,New Legend Media +34472,Tangram Film +1747,Schiwago Film +11130,Royal Oaks Entertainment Inc. +1426,Towers of London Productions +20728,72nd Street Productions +72725,QC Entertainment +21016,Pro Vobis - Gesellschaft für Film und Fernsehen +7164,TMS +8714,Northern Lights Films +21625,H5B5 Media AG +23868,Tiberius Film +77344,Charlotte Street Films +2092,Mike Zoss Productions +93972,Credit Agricole Vita +1631,Raw Nerve +25757,Quality Pictures +84497,Santo Domingo Films +22761,Produire à Paris +5802,Evil Twins +5856,Sci-Fi Channel +20615,AEC +4641,Shochiku Company +12170,Velocity Productions +5974,Making Movies Oy +34035,33andOut Productions +9369,Obel Film +8124,Enrique Cerezo P.C. +76777,Hannibal Classics +52766,Seven Hills Pictures +26663,Zoetrope Studios +28917,Double M Films +2429,Conspiração Filmes +7571,LionsGate +12006,Goldmann Pictures +26249,Bay Bridge Productions Inc. +13318,Récifilms +3040,Versus Production +21612,Black Snake +8342,Black Orange +10345,Active Entertainment +76043,Revolution Sun Studios +5329,Pandora Pictures +58572,Meteor 17 +14069,Hope Enterprises +4042,Astral Films +75277,AST Studios +6906,LMN Productions +9325,Informant Media +68599,Parker Film Company +75524,Transfiguration Productions +10958,Brad Grey Pictures +26671,Biride Productions +18925,Compagnie Internationale de Productions Cinématographiques (CIPRA) +37763,Sofica Soficinéma +25577,Safehouse Pictures +30997,Lascaux Films +1255,Compagnie Eric Rohmer +87839,Reversal Films Inc. +5260,Puja Entertainment (India) +48792,Parallel Zide +7822,All India Film Corporation +24015,HCC Media Group +6368,Enigma Pictures +634,ABC Pictures +21001,Paloma Films +7217,See-Saw Films +4808,In-Cine Compania Industrial Cinematografica +62411,aWounded Knee +8333,Jetlag Productions +58045,BSDS Productions +289,Ingenious Film Partners +17195,Carlton UK Productions +89487,Mandoo Pictures +20741,Buena Vista Distribution Company +26606,Région des Pays-de-la-Loire +10523,Mondial Televisione Film +43253,Whitehall Films +19000,Göta Film +10051,GMT Productions +13042,Kartemquin Films +2885,Starz Animation +1231,Art Fest +25626,Moonrise +4411,MMC Independent +93933,SoulPsychoKiller +8047,NDR +50109,Blink Industries +89314,ML Film Entertainment International +69969,Sedic Deux +41649,Melbarken +8866,Cinétudes Films +23903,Westwind +77337,Göteborg Film Festival +58591,Fox Hill Productions +21219,Panamort Television +653,Komuna +77235,Doxa Producciones +22366,Natexis Banques Populaires Images 2 +1422,Killer Films +19957,Script Associés +8821,Management Company Entertainment Group (MCEG) +11308,Savoy Pictures +21549,Notorious Films +85309,Dan McCulloch Productions +21460,May 13 Films +62407,Bavaria Film Partners +21946,Lyuksor +24067,Hart Sharp Video +1424,Ada Films +5874,Gloria Productions Inc. +6346,Artist Film +4183,Diamond Docs +2542,Nick Wechsler/Miracle Pictures +66255,"Astral Films, Australian Film Commission, The" +10239,Tall Trees Productions +6863,Affinity Entertainment +17377,ATM Grupa S.A. +90402,Brencam Entertainment +44602,Canal+ France +13588,Estudios Cruz Delgado +12074,Five Star Institute +6317,Ascot Film +3475,Walt Disney Television Animation +7330,Blind Spot Pictures Oy +55060,Troop 41 Productions +25894,Studio 100 +3054,Golden Way Films Ltd. +2918,Shueisha +25634,Mitsubishi Motors Corporation +43807,Mad Samurai Productions +67781,Zupnik Cinema Group II +11918,Animationsfabrik +21208,Boomer Lives! Productions +3257,International Pictures +14730,Serene 9 +175,Caravan Pictures +35210,Ostlicht Filmproduktion +75377,Figaro Film Production Ltd. +11398,Selenia Cinematografica +4518,Topsail Entertainment +76490,Sea Breeze Productions Inc. +74197,Kettledrum Productions +2335,Film 4 +3495,Steamroller Productions +19230,Varma Corporation +89521,Can I Watch +47843,Autumn Productions +63713,Tesela P.C. / Impala +22006,Cinema Holdings +5521,CP Medien AG +20944,Wabi Pictures +76082,IMG Films +5888,Walt Disney +3101,Three Way Productions +18585,Hellenic Culture Organization +16700,Pravoslavnaya Encyclopaedia +46609,The Great American Dream Machine Movie Company +11591,Hanhwa Venture Capital +43907,IT Media Films +3936,Williamsburg Media Cult +6265,Skopia Film +2318,Région Provence Côte d'Azur +2038,Solimane Productions +32194,Highway Productions +21445,The Icelandic Filmcompany +23555,Indigo Pictures +2997,Dragon Pictures +5695,Carmel Productions +67082,RTL2 +11015,Heller Highwater Productions +34478,Run Rabbit Run Media +90751,Everything Is Everything +6667,Mandalay Vision +90753,Harlin/Selin Productions Oy +5731,LBS Communications +40956,Jagtoria Films +4227,Bulbul Films +2454,Goldsmith-Thomas Productions +3219,Amuse Soft Entertainment +36242,Kingsize Entertainment +51764,The Pitt Group +10324,William Castle Productions +19639,Film House Germany +3263,Odd Lot Entertainment +37260,Burnside Distribution Company +10479,Sundial Pictures +16073,ChannelFlip +1147,Madeleine Films +76345,Four Sons Pictures +26891,Random House Films +51277,ITC Entertainment Group +87674,Hark Film +13653,Discofilm +11341,Stage 6 Films +4203,Elton Productions +39004,Subotica Entertainment +7502,Союзмульфильм +20353,Granada Entertainment +6743,Novofilm +32718,Departamento de Cultura del Gobierno Vasco +10119,Digital Dreams Films +65553,UFO Pictures [ph] +40669,Les Films du Rivage +57340,Ardent Productions +39443,Jolie Pas +20986,Finnegan/Pinchuk Productions +2053,Grosvenor Park Media Ltd. +93381,Jon Kilik +6212,Maipo +11505,The Königsberg Company +73,Fida cinematografica +46547,Dread Central Media +19366,ABC Studios +54814,Breakout Pictures +51626,Over 9000 Pictures +42878,Patriot Productions +465,Twickenham Film Studios +7505,Marvel Entertainment +4918,Periclean Productions +27095,Rainforest Productions +23911,Artist International +5328,Ivan Tors Productions +1516,Kindai Eiga Kyokai +315,Filmstiftung Nordrhein-Westfalen +52352,Great Point Media +2309,Mo Productions +70421,Atlantic & Pacific Pictures +31047,Tigerfish +20613,SC Films International +21732,Edward L. Alperson Productions +8363,Euston Films +3850,Geneni Film Distributors +83397,Reel Chefs Catering +72498,UFA International Film & TV Production GmbH +919,Beacon Communications +86119,Cine II CV +8364,Hill-O'Connor Television +48873,Le Vision Pictures +14313,The Who Films +72421,Narodowy Instytut Audiowizualny (koprodukcja) +68399,Filmi Domirev +89165,Shoakuken +9335,Canal+ España +2294,Traction Media +443,Big Talk Productions +11904,Digital Graphics +21917,Efish Entertainment +72918,Vistamar Filmproduktion +2652,Pyramide Films +51301,Overseas Film Company +14185,Canadian Film Centre (CFC) +24487,"Pennebaker Hegedus Films, Inc." +89464,ANG Film +38355,Eyeworks Egmond +4654,Thunder Road Productions +33511,Yorkshire Television (YTV) +1323,Florin Productions +72688,Chicago Overcoat Productions +74857,Netherlands Fund for Film +15614,Tabo Tabo Films +22793,Event Film Distribution +29493,Daniel L. Paulson Productions +3084,Vallelonga Productions +4676,ABS-CBN Film Productions +15159,Snoot Entertainment +11796,Centre du Cinéma et de l'Audiovisuel de la Fédération Wallonie-Bruxelles +38018,Veit Helmer Filmproduktion +3271,Inscription Films +37504,Rhea Films +697,Alta Films S.A. +3602,Rialto Film Preben-Philipsen +15064,Leisure Investment Company +47502,warner bross Turkey +16776,Good Apple Productions +36604,Studio Entertainment +2843,Spinster +79340,Framestation +8463,4321 Productions +11793,Lumière +69193,Noerlum Studios +11791,People Tree Films +3960,ArieScope Pictures +8907,Banque Postale Image 4 +11237,ZDF/Arte +5556,Universal Animation Studios +607,Lyncanthrope Films +11664,Altitude Entertainment +1301,Joseph M. Singer Entertainment +5289,Wild Things Productions +11734,Gin-iro no Kami no Agito Production Committee +59645,ICL +68373,Underdogg Entertainment +76149,Veit Heiduschka +3494,Cookout Productions +94225,Performing Arts +7715,Pandora +31217,Hellhound Productions +52608,Snakeman Productions +8135,Anchor Bay +76778,Paulilu Productions +11476,Jean-Louis Nounez +6533,Whizbang Films Inc. +1168,Novo Arturo Films +4484,Armenfilm +10156,Affirm Films +11240,Polski Instytut Sztuki Filmowej +7621,Indian Film Company +3991,"Asylum, The" +80717,Universal Majestic Inc. +28926,Valiant +4311,Sri Surya Movies +20840,Brainjaus Producciones +15176,Robert M. Weitman Productions +94977,Human Film NL +12364,Deutsche Film (DEFA) +20448,U-Drive Productions +32732,Anwar Rasheed Entertainment +2061,Twisted Pictures +25619,Gala Film Distribution +55947,NLT +18949,Ember Productions +18059,World Arts Media +15830,Iced Tea Productions +17820,Mega-Vision Pictures (MVP) +41642,KNM Home Entertainment GmbH +7396,Pathe +41636,Bridle Path Films +9266,American International Pictures (AIP) +30966,Stimuleringsfonds Nederlandse Culturele Omroepproducties +5545,Mobra Films +9245,Romano Film +6760,Williams Street +2242,Everyman Pictures +54225,Tortilla Flats Productions +220,Pathé Consortium Cinéma +31052,Deutsche Film- und Fernsehakademie Berlin (DFFB) +13603,Shomedia +34846,Tee Rob Pictures +13778,Bluegrass Films +871,British Screen +8237,GMA Films +17094,Princess Pictures +11054,First Look International +23890,Hal Lieberman Company +76054,DEMENTE CONTENIDOS +48026,Whitley Partners +81496,Good Folk Films +53458,Lakeshore International +36227,Varient +27,DreamWorks SKG +37870,Gold Lion Films +2105,Thura Film +27133,Sanai Pictures +3600,Bandora +8880,Winkler Films +3088,Delphi III Productions +12939,Armada Pictures +13549,Golan-Globus Productions +3045,Sony Pictures Releasing +1858,Project Campo J.V. +94575,Red Circle Productions +404,Allegro-Film +13845,Kadokawa +18989,Auburn Entertainment +80500,Endorfilm +31060,Hallmark Entertainment +11921,Le Tax Shelter du Gouvernement Fédéral de Belgique +19126,VGTRK +1829,"Zespól Filmowy ""Kadr""" +1174,Delphi V Productions +32911,Phanta Film +3167,World Film Services +86975,Maíz Producciones +29314,Acaba Produzioni +11985,Sir Lew Grade +47804,Emiliano Piedra P.C. +4081,LEGO +42096,Кинокомпания «Lunapark» +20848,Rough House Pictures +23375,Coattails Entertainment +7118,Moby Dick Films +18392,Monolith Films +35443,R-Caro Productions +48215,Source Films +11093,Lucky Monkey Pictures +52139,RGB Productions +27467,Team Downey +24365,Michele Brustin Productions +19,Film Roman +2995,Atmosphere Entertainment MM +16628,Julian Blaustein Productions Ltd. +95294,BDE Entertainment +31137,Circe Films +16657,Agência Nacional do Cinema (ANCINE) +30534,DAVED Productions +39734,Ketchup Entertainment +14315,Section Eight Productions +37343,UKFS +19158,Ascot-Cineraid +40202,New Daughter Productions +57186,Blue Drop Films +42050,The East Side Film Company +3652,Sahara One Entertainment +7157,Koktebel Film Company +2364,The Montecito Picture Company +33822,Spiltan Underhållning +14645,Entertainment Farm (EF) +81235,AV Films +5332,Utopia Pictures +11349,Bourne Again +46429,Amazing Film Productions +77601,Ústřední půjčovna filmů Praha +3346,Rainmark Films +5861,Showtime Films +37789,Avalon Films +23482,Taki Corporation +12808,Big Beach Films +21217,Amalgamated Bear +11999,Universidad del Cine +74000,Preta Portê Filmes +14430,Fulcrum Media Finance +6203,Lexyn Productions +799,Carlyle Productions +14802,Njutafilms +88138,Bright Eye Pictures +20663,Radio Télévision Suisse (RTS) +10828,MDP Worldwide +8016,Época Films S.A. +2753,MacGillivray Freeman Films +62709,Concourse Media +85169,Poison Chef +3809,Gibraltar Productions +451,Medienboard Berlin-Brandenburg GmbH +95597,New Faction Pictures +13921,Launchpad Productions +74144,Filmiran +1610,CED Productions +25884,Raven Banner Entertainment +79026,XM2 Productions +42101,Blank Pages Productions +45881,Soho Square Films +86331,Grasswood Media +4507,Alpha Films +21546,Fábula +21234,Crest Animation Productions +12023,Nederlandse Programma Stichting (NPS) +19148,A Lucky Old Sun Production +21774,Benaroya Pictures +23993,Point Blank Productions +25755,Donau Filmproduktion +79351,Friend of a Friend Films +5701,De Laurentiis Intermarco S.p.A. +76866,North American Film Enterprises +13309,Jack Rollins & Charles H. Joffe Productions +43459,August Films +53459,Madhouse Productions +4561,Cohiba Pictures +52537,Athena Cinematografica +25701,Onset Films +74574,Mini Traité Franco Allemand [fr] +663,12 Gauge Productions +2965,Boram Entertainment Inc. +13161,Tea Shop & Film Company +8530,Televisió de Catalunya (TV3) +72315,Bijker Film & TV +898,Lorimar Productions +41356,Artikulacija +81997,Ren-TV +3638,The Jacobson Company +82925,Nvizage +2674,Telecinco Cinema +9209,MK2 Productions +29651,Cléa Productions +2452,UK Film Council +3389,TV2 +83038,adme +77,Milestone Productions +3539,Odyssey Entertainment +46297,Farraj Factory +3196,Tezuka Production Company Ltd. +12111,Vides Cinematografica +79556,Warner Premiere Digital +20196,Australian Asset Securities Limited +18507,Metro Film +54762,Lanterna Editrice +42044,Ministère de la Culture Française de Belgique +500,Goldcrest Films International +60622,Tempo Productions Limited +63178,Anugraha Cine Arts +4319,40 Acres & A Mule Filmworks +9271,Hassen Brahiti / Studio Canal +12541,Q-Tec +14728,Canary Films +8262,Quiet Films Inc. +3985,Maruti International +533,Janus Films +17087,A.M.A. Film +45086,Tilted Windmill Productions +19936,Second Mate Productions +23189,Greeks Productions +95940,Dream Cinema +48685,Closer Productions +5331,Good Dog Productions LLC +9155,Tokyo Movie Shinsha (TMS) +12348,Nationale Loterij van België +17024,Videocine S.A. de C.V. +31828,Avi Arad Productions +36956,Bullet Pictures +23856,Medien 5 Filmproduktion +4022,Wonderland Sound and Vision +86128,Blind Man Productions +47077,Coleidon-Film +13836,Cofinova 8 +64282,Topiary Productions +15822,Trancas International Films +22925,Dark Highway Films +12370,Filmax International +15847,MTM Enterprises +928,Catalyst Films International +76935,Château-Rouge Production +69462,Centrul National al Cinematografiei (CNC) +608,Dor Film Produktionsgesellschaft GmbH +9995,Cruel & Unusual Films +9,Gaumont +16197,Heartland Motion Pictures +19804,Angel Film +771,Mandate Pictures +35002,Lucky 7 Productions LLC +21541,Northstar International +62704,Filmstandort Austria (FISA) +41051,Into the Wild +58534,Alvy Développement +21581,Studio Rikka +23084,Vertigo +23720,E.P. Production +21580,Directions +10760,VIP 1 Medienfonds +7374,Back Lot Pictures +2435,Langley Productions +2636,Tag Entertainment +76992,Saban Films +1539,Fuller Films +13597,Malibu Productions +59650,Organically Grown Productions +3463,Imagi Animation Studios +10163,Working Title Films +10370,Spectacle Entertainment Group +7872,Rapi Films +93383,Québec Crédit d'Impôt Cinéma et Télévison +25951,Film002 +73386,Best Served Cold Productions +21882,Manis Film +25876,Headshot Films +4765,Trinacra Films +15886,Red Letter Media +42203,New Films International +93119,Gilla Company +2880,Charm City Productions +69110,Tank Caterpillar +13708,Acteurs Auteurs Associés (AAA) +49261,Comedy Dynamics +5755,Constantin Film Produktion +12067,Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 1 KG +15866,Beijing Gallop Horse Film & TV Production +28438,Riche-Ludwig Productions +20202,Amber Film Works +77440,Film i Västerbotten +30280,Broadcasting Authority of Ireland +41917,Euro Video +22123,TF1 +19747,Brandywine Productions +3618,Film Workshop +46412,Universal Marion Corporation (UMC) +17997,Turkey Films +21656,Verso Entertainment +20544,Knightsbridge Films +90979,Heaven Pictures (Beijing) The Movies Co. +19138,At Productions +5360,CR Enterprises +14558,Televentures +1784,Partizan +70230,Harpo Productions +1092,Mockingbird Pictures +37790,Beyond Films Limited +16522,Kinofabrika +62402,Independent Film +76298,2425 PRODUCTION +24558,Mango Farms +86518,Travesia Productions +94147,Aurica Finance Company +46222,Hey Eddie +9331,Rob Houwer Productions +24184,Pillage and Plunder Pictures +11745,Office national du film du Canada (ONF) +15486,Wide Angle Pictures +19742,Official Films +881,Daiei Studios +17778,Mid-America Pictures +53408,TEAM Communications Group +10747,Hollywood Pictures Corporation +23238,VIP 4 Medienfonds +8845,Ladbroke +37955,Bigview Media +23319,Globus-film +51614,Film Forge Productions +75806,Euclid 431 Pictures +14007,4th Row Films +49325,Parkes+MacDonald Image Nation +52844,Motion Picture ETA Produktionsgesellschaft +5293,StellaNova Film +80713,Daro Film Distribution +5515,Louisiana Media Productions +17555,Film i Skåne +17178,Filmgalerie 451 +2673,La Fabrique de Films +62412,Red Bike Films +78186,AMJ Productions +93095,Israel Cable Programming (ICP) +86833,Dana Lustig Productions +95698,BV Entertainment Inc. +2813,Forensic Films +11097,BBE +73340,Rodger Pictures +93180,Cenoura Filmes +21869,Möbius Entertainment +13837,K.G Productions +10647,Unité Trois +75167,Kultkino +73741,La Caméra Deluxe +2828,Intrinsic Value Films +89489,Eracme Entertainment +11581,Misher Films +1224,Intrepid Pictures +3869,Great British Films +4388,Security Pictures +35831,Shaboo Arts +6752,Home Box Office +2272,Wide River Investments +71489,First Line Entertainment +40044,January Films +19491,Jerico +10071,Bausan Films +12010,Mediapro +22199,Trees Pictures +4660,Plymptoons +73952,Bullwinkle Studios +22218,Art of War Films +15511,Fundación Villa del Cine +86434,Kava Productions +9068,Kadokawa Shoten Publishing Co. +25980,Film Finance +79613,Compass/Zenith International +79276,Kukunoor Movies +4839,Angel Entertainment +3844,My Bench Productions +5542,Toei Animation +2230,MGM Television +53962,Catacombs Productions +1003,Filmkameratene A/S +2783,Motlys +25221,Batabat +35563,Max Cap Productions +3470,Stone Group Pictures +35267,Green Dragon Movies +86561,Stereo D +12651,Askania Media Filmproduktion GmbH +30692,Sony Pictures Imageworks (SPI) +18793,G.S. Entertainment +109,Rome Paris Films +22109,59 Films +2763,Tonic Films +39509,Free Range Films +83622,Jock Film +77154,KNM +21641,Coral Producciones Cinematográficas +11877,Middle Child Films Inc. +31080,Polygram Filmed Entertainment +11142,Cinema Group Ventures +20341,On My Own +22763,Télégraphe +46421,Revolver Amsterdam +7738,Sketch Films +10826,Akson Studio +7754,Lazennec Films +4322,Compound B +1487,Filmation Productions +38771,Jeff Skoll Productions +22611,Spikings Entertainment +6162,Taska Film +57751,Patalex Productions +27826,Jämtfilm +7261,Back Allie Productions +18870,Academy Productions +11152,Radical Media +5055,Halifax Film Company +15846,Dimitri Villard Productions +41359,M7 Filmproduktion +67776,Silver Plane Films +20310,Sasquatch Films +63457,3210 Films +19929,EMC Produktion +3560,KSS +6673,Scholar Films Company +16278,Fusion Films +28398,Chroma III Productions +50842,Serengeti Partners Ltd. +4306,Instinctive Film +29647,Johnson & Johnson Spotlight Presentations +38925,CBS Fox Video +53267,Kenneth Madsen Filmproduktion A/S +25684,ED Productions Sprl +54539,Rush River Entertainment +49277,Lifetime Productions +26684,Artaxerxes Productions +26492,Jet Tone Films +1307,Triangle Film Corporation +91393,Oats Studio +15979,Les Productions La Fête Inc. +14965,Many Rivers Film +41730,Elías Querejeta P.C. +78986,Fondation Groupama Gan pour le Cinéma +40249,Reboot USA +11919,Belgacom TV +17027,National Film Board of Canada (NFB) +3265,Deviant Films +6964,ShowTime +14049,Producers Associates +11166,Red 56 +4696,Same Player +810,Persistent Entertainment +86096,Bruce Cohen Productions +63484,Awesomeness Films +10930,Bagdasarian Productions +6704,Illumination Entertainment +7843,4 1/2 +14747,Zealous Creative +42327,Universal Stage Productions +3405,Mediacorp Raintree Pictures +32242,Grisbi Productions +75232,Mifune Productions Co. Ltd. +10170,Cinemarque Entertainment +7173,Five Stars Production Company +28003,FLX Comedy AB +9987,Lipsync Productions +86881,Acrolight Pictures +200,Corazón International +22456,Five Roses +38778,Academy +60536,Nadiadwala Grandson Entertainment +1618,Komplizen Film +88045,Fred Films +25023,Sofinergie 2 +17887,Midnight Sun Pictures +3156,Greengrass Productions +3622,Ibrus +11892,Copro Films +2159,Hal Roach Studios +57505,Love Project Films +46089,Talking Wolf Productions +12042,Artistic Light +42344,Mico +10238,Les films de la butte +3120,Final Cut Productions +20395,Carthago Films S.a.r.l. +18524,Intellectual Properties Worldwide +88370,Race Point Films +7765,Teleimage +25827,Antenne-2 France +2859,Cine Boutique Entertainment +20537,Jimmy Lee +62711,Talent United +36600,The Oxford Film Company +18024,Karat Film International +54927,Mission Pictures International +21699,WonderStar Productions +11317,Phoenix Pictures +91636,White Orchid Films +2009,Maipo Film- og TV Produksjon +75564,Morocco Film Assistance +8046,Telefe +28323,British Film Institute Production Board +8441,Jack H. Harris Enterprises +631,Parkway Pictures (I) +7587,NGN Productions +12344,Flanders Audiovisual Fund (VAF) +42272,RTL +603,Prima Films +11991,De Nigris Productions +80078,FourBoys Entertainment +63208,Final Girl Productions +166,Peter Rommel Productions +23770,Signature Entertainment +21631,Cofimage 13 +33380,Tuffi Films +24827,Red Mullet Productions +3192,British Aviation Pictures +33729,Dodici Dicembre +21572,Berkshire Axis Media +8717,Chrysalis Films +3150,Virgin Films +4142,Produzioni La Regina +790,Samsa Film +165,Steen Herdel Filmproduktion +4576,Avton Films +7675,Luis Moro Productions +40020,Anzervos +14837,Lynx Films Ltd. +5231,Cineplex-Odeon Films +34350,Cine 3 S.r.l. +90641,Walter Mirisch Company +10069,"Afrodita Audiovisual, A.I.E." +12883,Nomura Babcock & Brown +4147,George Axelrod Productions +8100,Mafilm +52782,Skladanowsky Film +58052,Doorman +47380,Rosebud Productions +23948,Cartoon Saloon +4186,Quickfire Films +13150,Naked Edge Films +52539,Young Lake +44989,Phantom Film +60062,Budapest Film Produkciós +9206,Zero Fiction Film +26146,Chaotic Productions +80469,American Entertainment Investors +23772,Curtis Productions +23441,Les Productions du Ch'timi +40539,Scorched Films +21108,Fernando Trueba Producciones Cinematográficas +41606,Backrow Studios +17652,Région Midi-Pyrénnées +46399,Home Movies Ltd. +66465,Lone Star Productions +88602,Boom Boom Productions +21684,LOLflix +4056,Hallmark Entertainment +16257,Filament Productions LLC +83092,Bach Productions +37780,Amanecer Films +67117,Jaye Bird Productions +22789,Embargo Films +16615,Point Grey Pictures +37985,LERM-Film +17090,FJ Productions +35561,Vintage Pictures +10718,Frank Lloyd Productions +73091,YouTube Red +2861,Amagram +11732,Airborne Productions +11029,QED International +3245,First National Pictures +7079,Oktober oy +44816,Guy A. Danella Productions +6144,Homeless Bob Production +7125,Red Giant Movies +3419,Централ Партнершип +14093,Herman Cohen Productions +4583,Lazennec et Associés +169,Noirfilm +11449,Hedge Fund Film Partners +23750,Presque Isle Films +5122,Parallel Films +6686,Snap Sound +54880,Baldacci Entertainment +49986,Go Go Film Productions +88686,Chartoff Winkler Productions +2101,C.B. Films S.A. +48188,Transfilm +11356,Horizon Pictures (II) +3795,61* Productions Inc. +92754,Black Lantern Films +77187,La Maison de Prod +2396,Finnish Film Foundation +16921,Kismet Entertainment Group +76101,SLG Productions +8933,Sweetpea Entertainment +16352,Mara Films +25121,MVL Incredible Productions +76410,Phoenix +7445,Cinematograph AB +4404,Camp / Thompson Pictures +74636,Film Väst +94789,100 doo +11848,KDDI Corporation +10845,Lenfilm +12466,Wunderbar Films +4922,Aspen Productions +22347,Marco Polo Production +14237,Barrister Productions Inc. +16649,Look at the Moon Productions +11447,Mercury Productions +20193,Walt Disney Company +31242,Joaquin Associates +13219,"Mirisch Corporation, The" +11359,France 2 (FR2) +17540,Kanal 5 +498,Debra Hill Productions +11647,Autonomous Films +3322,August Entertainment +87605,Avi Arad & Associates +13715,Mondial +2320,UTV Motion Pictures +16027,Portman Productions +33957,Cofinova Développement 6 +11799,Département des Alpes-Maritimes +20295,Sociedad General de Televisión (Sogetel) +9126,Nordia Films +73685,Emmett Furla Oasis Films (EFO Films) +19632,3311 Productions +502,International Film Investors +4237,Magnum Motion Pictures Inc.. +37860,Applecreek Productions +51862,Film Export A.G. +84368,Przedsiebiorstwo Realizacji Filmów (PRF) +15446,Produções Cunha Telles +84599,Aist Corporation +75515,French Ministry of Foriegn Affairs +6275,BiBi Film +3468,Hal Wallis Productions +60,United Artists +23872,Force Majeure Productions +69287,Coproducción Francia-Bélgica +83838,Wanda Pictures +77460,D'Artagnan Entertainment +28443,Sofracima - Audifilm +53169,Goldrush Entertainment +3770,Crook Brothers Productions +5820,Generator Entertainment +4526,Ensueño Films +10882,Francinex +17957,Bannon Glen +10785,Sud-Pacifique Films +10885,Equity Pictures Medienfonds GmbH & Co. KG III +87026,Beyond The Mothership +10161,Gilbert Films +53047,De Wolfe Music +2348,Nickelodeon Movies +19261,Penguin Books +3644,Zenith Entertainment +17364,Infinite Frameworks Pte. Ltd. +92853,Adriana International Corporation +6529,Fox Television Studios +55989,Room 608 +22529,New Town Films Pty. Ltd. +1689,TSJ Entertainment +93009,Wolfgang Reinhardt Productions +37353,Aura Film +20990,EKZ Productions +1492,Atlantis Film +3017,Present Pictures +2777,Black & White Productions +77850,Soficinéma 11 +9336,SamFilm Produktion +50084,JoBro Productions & Film Finance +25756,Blazer Films +859,Saga Film +57028,MJ Films +26953,SimonSays Entertainment +14364,Footprint Investments +46,WDR +43790,Nitrate Films +15587,P.S. Productions +4498,Arco Film +8310,American Filmworks +11427,Instituto de Crédito Oficial (ICO) +46499,Atalanta +80445,SOAT +21745,Kirlian Pictures +2922,Levity Productions +3009,MacGowan Films +72906,"Caviar Content, Pupkin Film" +55289,Through Films +9024,World International Network (WIN) +3656,GAGA +21120,Neo Modern +6999,Kodansha +10137,La Ferme! Productions +84888,Gakken Co. Ltd. +19385,R&C Produzioni +34530,Perfect Storm Entertainment +41510,Pictures from the Fringe +8668,New Century Productions +606,American Werewolf Inc. +40968,Exile Films +1980,Woodfall Film Productions +70521,Somnium Films +2426,Les Films du Poisson +53906,Moviemakers Productions (MMP) +33808,SGF Entertainment +63810,Roxbury +2832,Cineville +2852,CCCP +68543,Cinefrance +53902,Samy Boy Entertainment +82064,Altimeter Films +21248,Goldkind Filmproduktion +7117,Les Films velvet +81247,Estudios Splendor Omnia +26727,Universal Television +328,TLA Releasing +71465,Syrena Entertainment Group +13646,Jerry Gershwin-Elliott Kastner +37230,Lianhua Film Company +1076,Apipoulaï +79822,Flexibon Films +4194,Karz Entertainment +4100,Stick Figure Productions +122,Coop 99 +3898,Sandbar Pictures +23688,VMI Worldwide +28410,TIFA +9228,Dan Curtis Productions +36549,Gold-Gems Ltd. +54651,PJB Picture Company +76914,West Danish Film Fund +4052,Sunfilm Entertainment +11020,Finalement +4029,Entertainment Media Investment Corporation +6567,The Tyler Perry Company +14409,R. D. Banshal & Co. +80222,Elysium Bandini Studios +44210,Cactus Flower Producciones +3467,Three T Productions +27392,UFA Cinema +17722,PHI Film +80352,MPC Filmes +13311,SODEC +1633,Next Entertainment +22309,Piccadilly Pictures +79651,Lillród Film +906,Revelations Entertainment +23616,Ciné+ +22527,Inter Planetary +3653,Eros International +6823,Lifetime Network +1131,Rizzoli Films +75142,Entropy +2916,K2 Communications +16946,Weinstock Productions +6744,Magyar Televízió Müvelödési Föszerkesztöség (MTV) (I) +48191,Informant Europe SPRL +7457,Soficinéma 6 +9353,Northwood Productions +10130,Ciskul +8352,Coficup +76795,Columbia Pictures Film Production Asia Limited +16934,View Askew Productions +19456,Envision Media Arts +12093,Finos Film +2409,Red Lion +77748,Philip D'Antoni Productions Inc. +254,Pandora Filmproduktion +18919,Follow Through Productions +8704,Bull Market Entertainment +10451,Castoro +11149,Rebellion Pictures +3570,Seda Spettacoli +2728,Millbrook Pictures +13657,Gemini Filmproduktion +54851,New World Entertainment Films +11672,Nimbus Film Productions +23002,Sindika Dokolo +65430,Travis Producciones +18988,Story Bridge Films +21137,Roas Produzioni +57623,Rumbalara Films +56477,IZ Films +10250,UCLA School of Film and Television +25346,Central Motion Pictures Corporation +63846,Third Films +78362,Scentext +81886,Gorad +1615,Fortissimo Films +12087,Angry Films +35389,Zeitsprung Pictures +14636,Evolution Independent +6038,Ambra Produzioni +30344,Ministères de la Culture de l'industrie et des P.T.T. +39045,Aktualnyy Film +15495,Revolt Films +2817,Globe Films +1974,Duplass Brothers Productions +15105,M.E.G.A. Films +22155,Karagiannis-Karatzopoulos +80999,Vegetarian Films +3661,PVR Cinemas +8698,HI Film Productions +2683,Rai Cinema +30391,Balcázar Producciones Cinematográficas +4128,Dog Lamp Films +2474,Cafe Productions +82573,Killa Films +3909,Fogbound Inc. +2671,Gaïa Films +3571,Prodigy Pictures +10526,Champion +4956,International Cinevision Productions +27268,North Light Film Studios +11875,H2O Motion Pictures +18297,Styx Films +69765,Red Headed Revolution Pictures +12355,Vulcan Productions Inc. +76499,Trans Europe Film +10827,TVP S.A. +22498,Black Sand Pictures +68937,Foley Walkers Studio +76460,St. Michael Finance Limited +2315,Paramount Classics +129,Section Eight +21569,Content Media Corp. +74216,Pusan Film Commission +23105,Lone Star Film Group +17962,Slovo +6724,Upload Films +5374,Marv Films +1049,Kasander Film Company +6125,Walt Disney Animation Studios +3298,Harpo Films +44163,Rajkumar Hirani Films +10303,Rapsodie Production +68117,Giving Films +10916,Kurtti-Pellerin +16387,Skylight Cinema Foto Art +42138,Park-Schilling Productions Inc. +14635,Primary Productions +80652,"Sunday Horse II, The" +21792,Sunset Pictures +393,MACT Productions +1222,Carlyle Blackwell Productions +22477,Zootrope Films +20538,Triplex Films +11147,Canvas Pictures +17051,MSM Studios +8250,Bona International Film Group +15627,Big City Pictures +7466,Radio Télévision Belge Francophone (RTBF) +94200,New Zealand Railways +10473,National Film Board of Canada +53005,Wheelhouse Entertainment +13153,Sennet Entertainment +53407,Electric +1701,Dania Film +55461,TT Filmműhely +86121,ABC Film A/S +1427,Commonwealth United Entertainment +38972,Daiwa Building +11636,Braindogs Entertainment +2076,Gloria-Film GmbH +22973,Dolphin-Films +12392,Région Rhône-Alpes +38536,El Monte Productions +23858,"Lambrick Foundation, The" +55494,Sony PCL +11576,Ontario Media Development Corporation (OMDC) +32555,Netter Productions +66178,Universal Pictures Germany GmbH +21525,Institut del Cinema Català (ICC) +24428,Revolver Picture Company +27267,Forefront Features +18786,Ad Hoc Productions +11246,Région Ile-de-France +17927,Turbulence Films +596,KC Medien AG +18148,Sobras Producciones +48708,Lise Lense-Møller Film +34233,Toy Gun Films +35000,Brooklyn Films +27193,Fralita Films +5024,Mainframe Entertainment +11148,LMG Pictures +8502,Diamondback 99 +75508,Prodève +4118,Television Production Company (TPC) +53787,TYPE-MOON +57614,Unlimited +90399,Jay Smith Productions +12142,XYZ Films +13816,Hyde Park Entertainment +93624,FFC Production +19142,DAR Motion Pictures +19933,Oil Flick Films No.2 +82234,Spy Post Digital +9384,Les Films ABC +8437,Art Films +3853,Stampede Entertainment +4028,Crowvision Inc. +14298,Shut Up and Sing LLC +90124,Gannon Films +14047,Roger Corman Productions +3341,Fuji Television Network +80108,Devisha Films +6220,Mattel +69192,Mélusine Productions +1549,Opera Film Produzione +18188,Magnolia Mae Films +90896,The Body +6197,London Weekend Television (LWT) +72697,Melody Maker Productions & MMP Audio +20976,Such Good Productions +28103,Column Film +20993,Antidote Films +21733,Double Edge Films +803,Alliance Atlantis Communications +47351,M3 +345,O2 Filmes +26033,City Productions +14591,Arenafilm +5373,KSM Film +8691,Vortex Words Pictures +16874,Laugh-O-Gram Films +29812,Telescene Film Group Productions +21966,Core Contents Media +9345,Lynn-Romero Productions +11442,Silverbell Films +4612,Scheherazade +45824,Hayashibara Group +3127,Screen Media Ventures +86166,North of Two +39257,MyS Producción +61770,Salon Pictures +5284,Omega Micott Inc. +83348,Black Owl Productions +3134,A Private View +4589,Tradewind Pictures +56442,Admiral Pictures (II) +66326,Dharma Productions Dillywood +29566,Atresmedia Cine +4782,GFT Action Films Inc. +5461,De Angelis Group +24951,The Armenian National Cinematheque +33578,Galaxy Vision +42232,Green Griffin +7866,Productores Exhibidores Films Sociedad Anónima (PEFSA) +22969,Springwood Productions +29365,Ambrosino / Delmenico +23232,Window Pictures +11776,Film Fund Luxembourg +4827,Panda Societa per L'Industria Cinematografica +67646,Viens Films +34456,Rooks Nest Entertainment +7333,Bayerischer Rundfunk (BR) +88161,Cinerama Releasing Corporation +11578,Super Écran +11333,Geria Productions +23156,Bruce Cohn Productions +36785,Cinema-Vu +14150,Orion Pictures Corporation +6780,Televisión Española TVE +78439,Soltar N.V. +1406,Mega Film +49092,Redrum Films +19548,Haven Entertainment +29646,Magna Global Entertainment +55540,Objektív Film +52360,Films Vérité Productions +31782,Thomas H. Ince Corporation +27897,Filmstiftung Nordrhein-Westfalen +15231,Muse Productions +23022,Close Call Films +7420,Stone Village Pictures +84421,National Mutual Australasia Ltd +4207,Sahamongkolfilm Co. +71784,Insight Production Company +82854,Capitan Arana +1704,Bavaria Film +45732,Savage Production Ltd. +6550,Breakthru Films +8671,Kinoshita Komuten +35659,Brooklyn Underground Films +2811,Neo Art & Logic +8106,IJswater Films +23417,Perathon Film-und Fernsehproduktions +95504,Prince Film +2400,Unidis +62562,Great Western Productions +90403,Turner Entertainment Co. +6252,Shaftesbury Films +43528,Accelerator Films +68738,Black Hangar Studios +441,Columbia Pictures Corporation +3248,Santana Pictures Corporation +5660,Point of View Movie Productions +37046,Georges Méliès +20853,Offhollywood Digital +44093,Frontline Films +37909,True Fiction Pictures +19249,Class of 85 +75620,JTP Productions +75517,Mali Government +40668,Studio Adam&Eve +5948,ABC Family +46391,RAI - Radiotelevisione Italiana +7671,Amblin Television +1573,Le Film d'Art +68428,Horizonte Films +9165,Jim McCullough Productions +2844,Prospero Pictures +14950,B.P. Schulberg Productions +10791,MBP (Germany) +5295,Gato Negro Films +4265,Exterminating Angel Productions +68053,Nisarga +10100,Thin Man Films +16843,Thelma Film AG +64111,John Sexton Productions +19892,Strada Films +1687,Korea Capital Investment +39961,Oakland Productions +75278,Lowland Pictures +39771,Starz Entertainment +40456,Kirghizfilm +10509,Tiger Film +69934,"Malpaso Company, The" +5353,Fastnet Films +9198,Compass Entertainment +4053,Enlight Pictures +53012,Blue Sea Productions +65144,Stony Island Films +94937,National Film Art +3234,Studio Pierrot +45431,Hidden Empire Film +11705,Los Hooligans Productions +53243,WeatherVane Productions +25307,Ella Communications +828,Ultra Films +5077,Amalgamated Productions +17393,Good Universe +4270,Cinémation +7341,AXN +18288,Stephen Alexander Productions +6730,Individual Pictures +1757,Mad Chance +5723,Pitchblack Pictures Inc. +18609,BoulderLight Pictures +43529,Great Southern Land Entertainment +38506,Private Island Trax +8412,Group W +58263,Jackie Chan Films Limited +14112,Intertamar +10535,All Girl Productions +7247,Bavaria Filmverleih- und Produktions GmbH +70464,Camisa Listrada +18065,20th Century Fox Russia +2473,Bayrischer Rundfunk +4348,R%C3%A9zo Productions +11448,Exclusive Media Group +3564,Rick Lashbrook Films +19722,Vanguard Productions (I) +8536,Leverage Management +94847,East Film Company +52586,Maxima Film Compagnia Cinematografica +13558,"Zespol Filmowy ""Plan""" +2531,Media Rights Capital +25575,Iron Bull Films +14377,J. Arthur Rank Organisation +6532,Rollin' Deep Productions +19615,Camera +37553,Margaret Fink Productions +4988,Frank Yablans Presentations +10260,Melenny Productions +980,The Glasgow Film Fund +3544,Fuji TV +88966,Mystery Productions +11990,Associated Film +60282,Suomi-Filmi +3293,Atitude Produções e Empreendimentos +57987,Pheasantry Films +3416,Sombrero Films +85741,Slovenian Film Fund +3462,Walter Shenson Films +8510,Lucky Hat Entertainment +62138,C-Hundred Film Corporation +10399,Cinetel Films +174,Warner Bros. Pictures +35020,Mindshare Media +73502,Myrrdin +1596,Shooting Gallery +1641,Rodeo Productions +13382,Dayle +22842,Waypoint Entertainment +4941,A Erre Cinematografica +6956,Lucky UKFS +2438,MedienKontor Movie GmbH +780,Red Wagon Productions +13252,Marvel Animation +63030,Templar Film Studios +73264,Coleytown Productions +2786,Warner Home Video +89156,Sardinian Film Commission +16064,William Conrad Productions +6541,D.A. Films +19067,Nexus Productions +50810,MPI Pictures +18920,Salamander Pictures +3559,Citadel Entertainment +27123,Cinémage 8 +2262,Silver Nitrate Films +13788,Hopscotch Films +57624,Olsen Levy +23202,Wigram Productions +88,Hawk Films +14687,Remus +12475,Original Voices Inc. +64614,Fennada-Filmi +8772,Algonquin +11938,Banque Populaire Images 8 +38675,KinoweltTV +16366,La Sept Cinéma +16238,Norberfilms +72489,Blue Ribbon Digital Media +12315,James Productions +20662,TV5 Monde +22231,Israel Film Fund +69124,G. Mahesh Babu Entertainment Pvt. Ltd +44467,Big Sister Production +46205,La Banque Postale Image 7 +69051,Coproducción Argentina-España +51816,British International Pictures (BIP) +14058,Diamond Pictures Corp. +20744,Corner Store Entertainment +4622,VN Productions +5114,Beautiful Motion Pictures LLC +43979,Shin Films +75512,Atriascop Paris +25794,LTB Films Limited +76035,Film It +11239,Liberator Productions +95351,D.D.L. +748,Mosaic Media Group +10652,Shochiku Kinema (Kamata) +17009,Universal 1440 Entertainment +17947,T.V. Mikels Film Corporation +57662,Ignite Media +7827,EuropaCorp. +4004,Milcoz Films +79948,Jawbone Pictures +3950,Palisades Pictures +16610,Distant Dreams Filmproduktion +1155,Incorporated Television Company +45970,France 2 Cinéma +10171,PVM Entertainment +1912,International Media Films +3626,Halas and Batchelor Cartoon Films +2752,DENTSU Music And Entertainment +708,Beijing Film Studio +87552,Leider/Shapiro Productions +27991,Aquí y Allí Films +90633,Shan Dong Satellite TV Media +7922,THE REALLY USEFUL THEATRE COMPANY PRODUCTION +19146,Dharma Productions +4704,Four Crown Productions +23906,Petrobrás +4197,Enchantment Films Inc. +84329,Telemaz (TM) +37732,Wytwórnia Filmów Dokumentalnych i Fabularnych (WFDiF) +62611,Les Petites Lumieres +12096,Mandarin Films +10822,Jhamu Sughand Productions +1465,Metheus Film +15318,Executive Productions +2876,Sandstorm Films +3025,Brandman Productions +396,SLM Production Group +11200,Buena Vista Home Entertainment +87564,Pollywog Pictures +21545,Wood Producciones S.A. +30231,Rézo Productions +6584,Gemini Films +87827,Helios Productions (II) +17298,Centre National du Cinéma et de L'image Animée (CNC) +50813,Hernández y Fernández Producciones Cinematográficas +2608,Happy Madison Productions +38995,Beijing Starlit Movie and TV Culture +295,New Zealand On Air +2387,sabotage film GmbH +6847,Beech Hill Films +15040,Novotny & Novotny Filmproduktion GmbH +55512,Theobald Film Productions +13351,Melusine Productions +15106,Riding the Bullet Production +49933,Montefiore Films +18908,Central Cinema Company Film (CCC) +5003,Jaffe/Braunstein Films +13675,Village Roadshow Entertainment +37583,Gristmill +39829,S Films +18952,Spectacular Trading International +6147,Tallinnfilm +26688,Lewis B. Chesler Productions +10070,Alea Docs & Films +33681,Black Label Media +31718,Oy Vey My Son Is Gay Productions +6639,Televisión Española (TVE) +46315,Wizart Animation +16428,Dudley Pictures Corporation +16670,Société Nouvelle de Cinématographie (SNC) +32770,Bossa Nova Films +1600,Craven-Maddalena Films +66328,Opperman Viner Chrystyn Entertainment +32769,Americas Film Conservancy +5227,Cinema Gypsy Productions +80099,NASA Entertainment +73209,RTL Television Germany +15462,Troika Pictures +71447,Güney Film +62329,GWS Media +34087,Applause Bhansali Productions +72613,Reliance Pictures +42043,Grokenberger Film Produktion +21918,Sheerface Productions +7159,Star-Film +11830,Bedford Productions Ltd. +3268,Home Box Office (HBO) +41,Orion Pictures +23970,Twickenham Studios +3843,ICB Entertainment Finance +15662,Studio Chizu +3667,Sandrew Metronome Norge +11362,Mark Gordon Productions +10559,Koch Media +104,Canal Plus +10531,Silver Screen Partners II +743,Europa Corp. +66327,Hachiko +12838,Film Polski +5212,The Lost Tribe +31296,Spy Global Media +7356,Viacom 18 Motion Pictures +55517,The Incident at North Hampton Productions +14576,Ascot Elite Home Entertainment +82773,Thriller Films +24032,Silver Wings Films +5798,Shaw Brothers +6869,Yer Dead Productions +4836,Metaxa Corporation +22055,Salt Film +6357,Far Cry Productions +11953,Traveling Film Productions +44603,Kisi Production +1508,Wildgaze Films +1899,Radio Teléfis Éireann +65403,IMF Internationale Medien und Film GmbH & Co. Produktions KG +11244,France 3 (FR 3) +48530,Kinokater +77718,The Cinemart +47593,Tonylyn Productions Inc. +35761,A+E Studios +4330,Horipro +41045,Dark Factory Entertainment +7131,France Television +6538,Antena 3 Films +3728,Mangusta Productions +77004,Kiryûkan +1702,Medusa Produzione +3697,Bernhard-Brandt Productions +3446,Little Wing Films +16326,Ranown Pictures Corp. +55524,Latent Image +5486,Darius Films +78177,Spectrum Effects +9055,Les Films Raoul Ploquin +20667,District 9 +20778,First Film Company +5952,Marksman Productions Ltd. +6878,Canal Sur Televisión +15123,Breakheart Films +22031,Televisión Abierta +8492,Radiotelevisão Portuguesa (RTP) +62,The Selznik Studio +54512,Tiara Blu Films +64052,Киностудия «Мосфильм» +8812,Channel Productions +30668,Brotherhood Company +7714,The New Zealand Film Commission +58323,C.O.R.E. Feature Animation +89818,Wildgaze +2078,Sokal-Film GmbH +26254,Biscuit Films +3381,Wayne-Fellows Productions +45778,Plan B Entertainment +6431,Northern Lights +6563,Barbarian Films +21078,Interopa Film +12250,Scott Hamilton Public Relations +12469,Higashinippon Broadcasting Co. +10808,Overnight Films +12022,IDTV Film +44283,"Bo Ho Films Co., Ltd." +4297,Redwood Palms Pictures +40540,Fidelio +11669,Horizon Media Fund +3363,Mainichi Broadcasting System (MBS) +4732,Red Envelope Entertainment +76461,Artistry Limited +3315,Origen Producciones Cinematograficas S.A. +75983,Cofinova 11 +82005,Studio Uno +91920,Rovio Animation +53495,Upside Down Films +9263,Soho Moon Pictures +1270,National Lottery +2906,Anarchist's Convention Films +8912,Oakhurst Productions +55590,SHOTS +75518,Midas +27110,Beyond Productions +564,Industrial Development Corporation of South Africa +6644,Lions Gate +53568,3 Legged Dog Films +11959,Merlina Entertainment +5241,Film Fund FUZZ +16675,IFI Producción S.A. +10720,City Films +90980,China Film (Shanghai) International Media Co. +81825,One Alliance SRL +8300,Harmonius Claptrap +35353,Thanhouser Film Corporation +17405,Dreamland Studios +29062,Final Cut for Real +10116,Axman Productions +28955,Roser Film +63627,Canal Street Communications +11766,Fox Video Korea +2781,Salem Films Limited +20158,Select Pictures Corporation +11594,Passion Pictures +459,Les Films Pomereu +21916,Dark Morgue Pictures +62877,Lost Boy Pictures +3386,ISL Film +3768,Off Hollywood Pictures +3465,ADV Films +17544,Drakfilm Produktion +28236,Three Springs Productions +5633,One Hundred Years of Film Company +19650,Spooky Buddies Productions +13850,Sverdlovskaya Kinostudiya +4958,Beautiful Kate Productions +17877,Libra Films +38016,FU2 Productions +7828,Max Films Productions +6717,David Gundlach Productions +56812,Rotecon B.V. +13565,Cooperativa Jean Vigò +9996,Syncopy +23068,Joe Abrams Productions +32584,Rhein Main +50574,New York Motion Picture +8004,Cinema Three +73401,October County Films +38395,ARM Entertainment +2428,Wolper Organization +54391,Casadelic Pictures +4116,M M Productions +2197,BNN TV +86686,Flat Dog Corporation +2994,Hollywood Gang Productions +70994,Zadan / Meron Productions +66289,Oriental Light and Magic (OLM) +78686,Argus Film +308,The Weinstein Company +11278,Inferno Distribution +73894,Palatine Étoile 11 +11486,Picturehouse Entertainment +74335,Earthome Productions +10694,MetraFilms +23431,Hold It Now Films +15258,DreamWorks Television +8298,Leon Schlesinger Studios +2115,Uranos Cinematografica +13596,Delta Film GmbH +18970,Avalon Productions +5106,Copperheart Entertainment +4586,Aspiration Films +7792,Noodles Production +23446,Sofica Sofinergie 5 +65956,Modoc Spring +77854,Eenie Ienie Over Productions +55217,Lieurac Productions +92312,Jack Wiener Production +7495,Sixth Sense Productions +2213,Rainmaker Entertainment +3902,CBS Entertainment Productions +5637,City Glory Pictures Ltd. +21379,Duo Art Productions +94395,Kshitij Production Combines +73383,Victorino Noval Productions +11994,Ultra Film +24049,Sierra / Affinity +7320,Telefilm Canada +37441,Filmfair Communications +32791,Oceanic Filmproduktion GmbH +64862,Rainbow Releasing +37764,Sony BMG Feature Films +33149,Havas Images +12342,Cineworx +13358,Pin Hole Productions LLC +39932,John Proffitt Films +10521,Paneuropean Production Pictures +19925,Bridget Johnson Films +34886,Gidden Media +61,"RKO Radio Pictures, Inc." +68539,Hochschule für Bildende Künste Hamburg +4389,Theodora Productions +1180,La Générale d'Images +20033,Chris Lee Productions +30241,AtomFilms +37382,Classic Media +5414,T&C Film AG +54835,Satori!films +44715,Panthéon Productions +3034,TV Tokyo +12298,Sri Thenandal Films +3035,4 Kids Entertainment +67081,Laura Film +42119,Vast Entertainment +67232,Films André Paulvé +641,Titanus +538,EMI Films Ltd. +12363,Taihe Film Investment Co. Ltd. +5779,Comptoir Français du Film Production (CFFP) +88606,Vertical Entertainment +1865,Zanuck/Brown Productions +24161,Cinegreen +3615,BIG Pictures +49297,blue ic +49724,Unbroken Pictures +29843,BBC Home Video +18588,Motion Picture Public Foundation of Hungary +7499,Gigi Productions +14879,Bungei +18010,Clasa Films Mundiales +82310,Idea +32545,Twenty Twenty Vision Filmproduktion GmbH +55570,Campfire +79729,Cider Mill Pictures +18346,Burn Later Productions +5005,Bedlam Productions +178,Ghoulardi Film Company +12752,Bait Productions +28513,Cinema Design +14938,Zik Zak Kvikmyndir +25159,British Screen Finance Ltd +2942,Mark Hellinger Productions +14535,Elstree Distributors +69194,Studio 352 +8185,Submarine Entertainment Distributors +64942,NB Thrilling Films +25999,Beactive Entertainment +402,Luna Filmproduktion +37659,HBO Polska +8043,Helpern / Meltzer +16777,New Element Productions +20076,HandMade Films +719,Film Foundry Partners +1259,Shooting Star Filmcompany BV +21978,Gorky Film Studios +29193,Lionhead Studios +89488,Huayi Tencent Entertainment Company +37723,Storm Vision Entertainment +31058,Wit Studio +22884,The Film Farm +2785,Warner Bros. Animation +4715,Factory 2000 +6300,Septembre Productions +134,Rogue Pictures +19002,The Made Bed Productions +79808,Cast N' Crew +119,Danmarks Radio (DR) +95309,Columbus +890,Cheyenne Enterprises +5321,Proud Mary Entertainment +29266,Pensa & Rocca Producciones +20281,Kanin Productions +16124,Columbia British Productions +76911,Région Poitou-Charentes +11513,International Movie Service S.r.l. +73524,Bedard/Lalonde Amusements +3517,"Institution, The" +53042,Woss Group Film Productions +81137,Friendly Films Productions +61814,Latitude Films +20539,Upside Up Media Group +20521,Neue Deutsche Filmgesellschaft (NDF) +22891,Brillstein Entertainment Partners +616,Eskwad +14238,Cinemation Industries +2372,Unison Films +3320,Emperor Multimedia Group (EMG) +80444,Terra Films +718,Arts Council of England +14177,Chuck Barris Productions +18013,Rogue State +60684,Kenbiroli Films +47821,Samuel Z. Arkoff +60843,Transfilm International +60323,Unigram +8265,Schmidtz Katze Filmkollektiv +33398,First Floor Productions +6438,Muse Entertainment Enterprises +5640,Middle Road Pictures +1088,Alcon Entertainment +16486,Parallel Film Productions +2721,Jinks/Cohen Company +28763,EBC Films +3619,Win's Movie Productions Ltd. +103,TVE +12943,APJAC Productions +597,Irish Dreamtime +8219,Terra Filmkunst +67853,Ctrl Z Films +55649,Studio Filmowe Zodiak +21470,Topkick Productions +43808,RLJ Entertainment +78752,North Hollywood Films +1972,X-Filme Creative Pool +94624,Serie 23 Productions +444,Dune Entertainment +50820,Medienwerkstatt Wien +4406,Banana Split Polska +12424,TV Man Union +25299,Era International Ltd +91620,"Przedsiebiorstwo Realizacji Filmów ""Zespoly Filmowe""" +40521,Watanabe Entertainment +53716,Sanitsky Company +63349,Bitter Films +20811,Now Films +23323,Most/Rice Films +6542,Pricel +33928,France 4 +35445,Carol Baum Productions +92161,Crestwood Pictures +4843,Serena +1212,Empire Pictures +2937,Fruit Salad Films +42613,Little Dragon Productions +19259,Ravenhouse Entertainment +2,Walt Disney Pictures +77845,Monarchy Enterprises S.a.r.l. +52597,RTL Television +35559,Institut Català de les Empreses Culturals (ICEC) +18587,Max Productions +68120,Aetios Production +10740,Producers Representative Organization +4820,Alta Vista Productions +830,Senator International +20490,New People Film Company +11543,CCRE +5369,GMM Tai Hub (GTH) +72936,Westart Invest +40751,Cowry +8175,Monipoly Productions +7237,Tele München Fernseh Produktionsgesellschaft (TMG) +76909,Eurométropole de Strasbourg +20267,Red Production Company +38959,Avrora Media +3597,Dodi Fayed - Jack Wiener +5237,The Saul Zaentz Company +1877,Café Film +10243,Hall Bartlett Productions +14786,AARU Productions +7733,Laurinfilm +24463,Siam Movies +21576,Morphius Film +23577,Karé Productions +23920,LightWorkers Media +42604,Australian Broadcasting Corporation (ABC) +35124,Lyca Productions +5120,Mosfilm +27753,Ambi Pictures +18361,SWFX +51615,Hawkeye Pictures Inc. +5252,Invisible Hand Productions +31787,Creativity Capital +3447,IMAX +983,Parallax Pictures +66161,Cine de Garage +90123,Empress Road Productions +10697,Laurel Productions +23119,Rai 2 +32178,Aurora +18880,Showtime Networks +54834,Strategic Film Partners +20042,Mann/Caan Productions +20943,Generate +14074,C.A.P.A.C. +11426,Institut Català de les Indústries Culturals +49328,RH Cinema +48106,World Wide Pictures (WWP) +13892,RKO Pathé Pictures +5388,Sony Pictures Home Entertainment +21085,"Ministry of Film, The" +12158,Transmission Pictures +11939,Cofimage 18 +16645,Santa Fe Institute for Regional Education +1799,Breton Film Productions +45514,Painstaking Pictures +49755,Apollo Films +12360,Vestron Pictures +85804,Cantinflas Films +58839,De Negris Productions +377,Bandeira Entertainment +1363,Haft Entertainment +47495,Clique Pictures +7793,Donald Kushner Entertainment +22397,Wager-Film +65251,BBC Entertainment +11717,The Twelve Chairs Company +3592,Warner Bros. Family Entertainment +37535,Cobra Films +5454,Index Films +4573,Castel Film Studio +86655,Media Rights Capital (MRC) +58659,Left Field Ventures +53905,MMP Erste Filmproduktions +789,Pallas Film +5533,Jerry Lewis Productions +9090,ERA +26001,FOUR Productions +39281,EchoLight Studios +16947,KODA Entertainment +5238,Central Independent Television +41676,Standard Arts +72698,Son of a gun Productions +52767,Cinealpha KG +59957,MMCB Film Produktion 2004 +17067,CineTel Pictures +2060,Continental Film +32853,Gkids +2125,Phoenix Film +8009,Belgacom +43092,pinball london +58273,Productions 2000 +20668,New Zealand Post Digital and Visual Effects Grant +32510,CinePostproduction +23497,Pulsar Productions +11397,Sofica Soficinéma 4 +3043,Elbow Grease Pictures +4563,Oz Company +42039,Arts+Labor +20240,MNP Entreprise +5044,Infinity Omnimedia +19683,Charles Fries Productions +86523,Culmination Productions +12139,Material Pictures +4223,U.S. Army Signal Corps +4313,AVRO Television +78696,Dull Boy Pictures +87857,Abu Dhabi Film Commission +11428,Mesfilms +30148,Bona Film Group +3741,C & C Brown Production +54377,Makhmalbaf Productions +8801,Marshall Production +2341,Belladonna Productions +6586,TPS Star +2029,Estudios Picasso +67881,Ken Johnson Productions +9037,Yari Film Group Releasing +26344,Horse Head Pictures +979,Woods Entertainment +22758,Caroline Films +2684,2Pilots Filmproduction +29577,Münchner Lichtspielkunst +5286,Laughlin Park Pictures +10101,cattleya +316,Wildwood Enterprises +22858,Niama Film +8924,RabbitBandini Productions +58255,Napoleon Film +27319,Jagged Films +47283,Fellers Film +79104,Mañana +8189,California Pictures +50226,William Keighley Productions +14567,Secretaría de Educación Pública +3171,SLB Films +1872,Bleiberg Entertainment +10949,Memento Films International +5247,Possible Films +13450,ANTORCHA FILMS +24476,MG Films +60537,Walden Productions +9110,The Noel Gay Motion Picture Company +10915,Turner Classic Movies (TCM) +22683,Contre Prod +5078,Danziger Productions Ltd. +13689,Mansfield Productions +4745,Produzioni Atlas Consorziate (P.A.C.) +95295,Crossroads Entertainment (II) +3461,Senka DOOEL Film Production +16453,Periscope Productions +46570,Como Films +8468,JBA Production +417,Australian Film Commission +5264,American Entertainment Partners L.P. +12385,RKB Mainichi Broadcasting Corporation +18230,Filmgate Films +23058,Artists / Media Cooperation +7383,"Kennedy/Marshall Company, The" +55005,The Birthday Film Company +7698,National General Pictures +63607,StarLight Films +2333,Lamb Bear Entertainment +20241,Crystal Sky Pictures +12800,Ego Film Arts +11347,Ludlum Entertainment +14115,Landers-Roberts Productions +8350,TF1 Droits Audiovisuels +22029,Canal Horizons +10499,Compagnia Europea Cinematografica +77429,RheinFilm TV - und Medienproduktionsgesellschaft mbH +13642,SModcast Pictures +614,Vanguard Films +11740,Society Entertainment +21221,Evolution Film & Tape +18758,Edison Manufacturing Company +23031,Amberdale Productions +48617,Taylor-Wigutow Productions +14526,Asia Digital Entertainment +10992,Modern Family Productions +9213,Astro C.C. +25345,Central Motion Pictures +2234,Baldwin Entertainment Group +12520,Laokoon Filmgroup +17365,Zhao Wei Films +50915,Motorino Amaranto +5462,Aries Cinematográfica Argentina +60949,Hero Communications +55256,QVF Inc. +14109,TAT Communications Company +4606,Zweites Deutsches Fernsehen (ZDF) +23516,Rich Vein Productions +2081,Beyond Films +27501,Imperial Fish Company +85815,Bee-Hive Productions +7965,The Ladd Company +4810,My Own Worst Enemy +18142,Dragonfly Entertainment +2070,Rastar Pictures +12865,Getaway Films +7674,PasoFino Entertainment +12226,American Film Institute (AFI) +14380,Gina Production +27472,Gerico Sound +4112,American Cinema Productions +36870,Symbolic Entertainment +806,Téléfilm Canada +76208,All in Films +82713,Habit of Life +2810,Longway Films +76446,Palatine Étoile 12 +10280,Arc Productions +53874,Sigma Films +72494,Showtime Entertainment Television +1486,Arnold Pressburger Films +20991,Lainie Productions +28273,Village Roadshow Pictures Worldwide +11098,The Harvey Entertainment Company +10282,Silver Screen Partners IV +6920,J.S. Productions +10256,Disruption Entertainment +57188,IME Motion Pictures +537,Universal TV +182,JVC Entertainment +7431,Sony Pictures Entertainment (SPE) +47005,Gunro +54036,Tiny Dancer Films +71238,Mercury Pictures +78656,Sato Atsushi +49945,City on a Hill Productions +3920,Leone Film +15062,Turbine Films Inc. +553,Barclays Mercantile Industrial Finance +26469,InDigEnt (Independent Digital Entertainment) +40148,Walt Disney Animation Japan +23276,Trumbull/Gruskoff Productions +36326,VIP 2 Medienfonds +711,Fox 2000 Pictures +22261,ADCB Films +85885,Lionsgate Premiere +75516,Les Films Cissé +2978,Crusader Entertainment +27719,Kahoku Shimposha +1905,Integral Film +66031,Golem Distribución +268,FilmFernsehFonds Bayern +1635,herbX film GmbH +5171,Carlton Television +3689,East Wing Holdings +17385,Lars International Pictures +82,Renn Productions +656,Metropolitan Filmexport +16960,Headstrong +16337,Cannon Pictures +8130,Jad Films +2248,A-Mark Entertainment +22881,Mayhem Pictures +49734,American-International Television (AIP-TV) +3448,ITV +9168,Bad Hat Harry Productions +73688,Excalibur Motion Pictures +82757,Edko Films Ltd. +22340,Dalian Wanda Group +20277,Protagonist Pictures +15874,W. Lee Wilder Productions +90897,Act III +16971,Pacific Motion Pictures +14680,Parc Film +11275,Cinerama Productions Corp. +4504,P.O.R. Sicilia +12178,Red Hour Films +52161,Khartoum +7586,Walt Disney Home Video +8289,Zentropa International Köln +18402,MRB Productions +22127,uFund +26947,Syndicate Films International +1761,Elsani Film +17457,Whizbang Films +6153,F-Seitse +5311,Intermedia Network +6659,Action Concept cinema & company +4170,Playtone Productions +83037,shanghai gigantic pictures +212,Infinity Features Entertainment +3010,Rapacious Productions +13187,JDI productions +3077,Melville Productions +25128,"Double ""A"" Pictures" +12731,Sargon Film +19324,Timpson Films +2290,Hunting Lane Films +24517,ITB Productions +3651,R.S. Entertainment +28598,Zodiak +50983,KillerWolf Films +89627,Glitter Productions +2462,Cactus Films +11542,Funky Buddha Productions +884,TPS Cinéma +73727,Boys Next Door Productions Inc. +6547,Country Music Television (CMT) +29366,Channel 83 Films +3757,Loisirs du Monde +87870,Producciones La Iguana S.L. +68155,The Talking Pictures Company LLC +3284,Regent Productions +35839,Moviestore Entertainment +30817,Tramp LTD +79,Village Roadshow Pictures +65327,Autumn Pictures +6861,Lolafilms +20550,Forum Films +3385,Hungarian Motion Picture Fund +6736,Imagenation Abu Dhabi FZ +11589,Bidangil Pictures +49181,Studio Maj +2953,New Wave Entertainment +17946,CG Productions +81,Plan B Entertainment +5673,Breakup Productions +63631,Gettin' Rad Productions +1115,M6 Films +4792,Film Afrika Worldwide +11837,Frontier Pictures +8488,Ameran Films +21321,MP Productions +3029,China Star Entertainment +15933,Союзмультфильм +29241,2/35 +20999,Produzione Film Giuseppe Amato +25795,Wellington Films +13987,Winchester Pictures Corporation +3423,Film Direction +19024,Stella Studio +7008,Centerstage Productions +97,Castle Rock Entertainment +21856,Holly Wiersma Productions +28486,Yugoslavia Film +1822,Parva Cinematografica +49055,WSB +47082,Oro Films +24905,Union +7038,Quad Productions +34757,Vectia +44438,Viking Film +16401,Aashirvad Cinemas +35461,Pathé! +10262,Blind Wink +11005,AR Films +12167,Chunichi Eigasha +40605,Radio Telefís Éireann (RTÉ) +49336,Papa Joe Films +11723,Miyagi Television Broadcasting +982,Road Movies Dritte Produktionen +76782,Sea to Sky Entertainment +28788,Genre Films +50989,R.O.C. +3102,Renaissance Films +2974,Pope Productions +12630,Studio Green +6938,Iris productions +14577,Sony Pictures Worldwide Acquisitions (SPWA) +41671,New Kingdom Pictures +59955,Burro Productions +64335,Cinema Brasil Digital +6350,Toshiba Entertainment +86290,C.N.M. Entertainment Ltd. +13839,Metafilms +18499,Schweizer Fernsehen (SF) +83663,MySpace +20846,Président Films +136,City Light Films +1322,C.V. Whitney Pictures +15362,Velvet Films +58658,Autochenille Production +2181,Babylonian Productions +84105,Vanguardia Films +39024,Mm...Buttered Panini Productions +10627,Prodekta AB +92231,Cofimage 27 +5711,Joseph M. Schenck Production +28320,Rocket Pictures +63968,Home Team Productions +13096,Neue Constantin Film +52437,TROS +318,CTB Film Company +2809,Silverscreen Films +1442,Cosmopolitan Productions +28431,TCF Vancouver Productions +28177,Payton Productions +31142,Unclaimed Freight Productions +11049,Caliber Media Company +4740,Gary Sanchez Productions +44161,Suresh Productions +72341,Black Gate Pictures +13282,21st Century Film Corporation +313,TS Productions +42328,Old Vic Productions +3519,Big Arty Productions +14324,Le Cercle +11281,Universal Network Television +812,Deuce Three Productions +9059,MAFILM IV. Játékfilmstúdió +44537,Sabre Films +34578,Aquifilm +14683,Ciné Tamaris +1438,Quadra Entertainment +18370,Slovenský film Bratislava +36633,영화사 수박 +2985,Jaz Films +13913,Joseph M. Schenck Productions +51354,Mushi +14861,Before the Door Pictures +10941,"Zespol Filmowy ""Iluzjon""" +16546,Lifelike Picture +5251,Holowach Films +8406,Big Kid Pictures +64655,Narsimha Enterprises +10497,Jaguar Films +3579,Ashutosh Gowariker Productions Pvt. Ltd. +79280,Andrzej Łudziński Productions (koprodukcja) +1041,Sacis +38356,Signboard Films Production Inc. +81144,Twin Continental +82096,ИКАИК +1819,Cinema 77 +89299,Historias Cinematograficas Cinemania +7035,Lions Gate Entertainments +87826,Sawhorse Productions +7923,CAMERON MACKINTOSH +3207,Pictures in Paradise +1589,Pro7 +20614,Luther Davis Productions +66029,Lorette Distribution +2853,Czar +9220,Trébol Films C.C. +5752,Sony Pictures Entertainment +9138,Sveriges Radio (SR) +48039,For Whom Productions +48328,Black Robe +45437,BiraBiro Films +46328,Lightyear Entertainment +2981,QI Quality International GmbH Co. KG +4904,Alan Landsburg Productions +3546,Hollywood Media Bridge +93605,D3C Productions Ltd. +2008,BHE Films +8436,Ponto Filmes +12190,Buster Keaton Productions +8789,Fuzzy Door Productions +30,Eddie Murphy Productions +20789,Red Rover International +6564,Columbia Tristar +85573,Agosto la Película +89131,Orr & Cruickshank +57005,Argentarts +4522,Dalle Manus & Regi +45725,Metro-Goldwyn-Mayer +16265,Mischief Films +410,Sovkino +18121,Clownfish Productions +66894,"Kraken Films, The" +59426,Erma-Filmproduktionsgesellschaft +6194,Warner Bros. +12782,Rapid Film +6737,Béla Jarzyk Production +12220,Lissus Media +14650,Роскинопрокат +76566,Regina Filmes +16414,The Cannon Group +85985,Centrale Sanitaire Internationale +15276,Channel 4 Television Corporation +21593,Montauk Films +73852,Kordes & Kordes Film GmbH +9182,Sozosha +20606,Galassia Film +9078,Constantin Film. +602,DEFA +670,Walt Disney Television +50834,Britpack Film Company +26251,"Group Entertainment, The" +61781,White Line Fever Syndicate +7215,Incentive Filmed Entertainment +6384,Universal Home Entertainment +20311,Syncopated Films +19771,Piano +15296,Galaworldfilm Productions +85945,britannic +5109,The Essanay Film Manufacturing Company +62876,Ciné Lyre +36028,Bagman (2009) +4006,Two Cities Films +80879,Clean Slate Films +44632,Gravitas Ventures +9223,Paramount Television +50104,This is It Collective +95346,Glasgow Film Office +41571,Pendulum Productions +8267,TV4 Sweden AB +38,Zespół Filmowy TOR +10695,Come On Sweet Film +1813,Charley Associates +4110,Cannon Films +19972,Walter Seltzer Productions +778,Las Producciones del Escorpion +69317,Flick Productions +62452,Filmmakers +5401,Wasted Pictures +15980,Incorporated Television Company (ITC) +2609,De Line Pictures +12253,Carlino Productions +60227,Two Oceans Production (TOP) +18740,Zadig Productions +66791,Reluctant Production +35746,La Société des Films Sirius +13621,The Group Films +20809,Normal Life Productions +16322,Itaca Films +31226,Forest Brothers +89628,Maroon Entertainment +13864,Cinema National +6051,Tokyo Broadcasting System +20919,France Télévision Distribution +862,The Kennedy/Marshall Company +37246,Films de la Demoiselle +94936,Kinugasa Productions +11773,Artémis Productions +26305,Solax Film Company +37264,"Sundance Institute, The" +14319,Sycamore Pictures +56889,Tandem Enterprises Inc. +73335,Lunacy Unlimited Productions +1371,The Global Asylum +50879,Studio Gallop +47776,Arctic-Filmi +10226,Smartest Man Productions +15903,FONCA +8583,Minds Eye Entertainment +41564,Stonehenge Productions +64894,Cine Mobil +87847,Coco +8302,Fleischer Studios +7454,France Télévision +11699,Sacem +11930,Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 2 KG +14262,Templeheart Films +53048,Inside Track 2 +4332,Vanadas Productions +57301,Mine Film +17489,Copercines +21274,Triluna Film AG +6916,Arte France Cinéma +89446,Two Tone Pictures +72272,Périphéria +37580,MVP Films +429,DC Comics +81166,Bellpond Films +1659,Unión Industrial Cinematográfica +8873,Handsomecharlie Films +5871,Pioneer Entertainment +27269,Moviebox +1898,Bórd Scannán na hÉireann +78259,Ashutosh Gowariker Productions Pvt. Ltd. (AGPPL) +838,Paramount Vantage +18514,Natasha Filmes +7661,Produzione Straordinaria +7787,Snowfort Pictures +11901,Divina-Film GmbH & Co. KG (München) +24980,Workpoint Entertainment +59149,Megafilm +8500,Romana Film +44916,Société Lumière +45228,The Company of Artists +13316,Association coopérative des productions audio-visuelles (ACPAV) +12393,Cinémage 5 +2550,Teitler Film +17312,Pilot Moscow Animation Studio +95,Hazazah Film +23752,Tait Productions +24477,Rabinovich Film Fund Cinema Project +1407,Paramount-Orion Filmproduktion +55008,Paradox +29165,Rialto Film +7870,Aspa Producciones Cinematográficas +77022,Spitfire Studios +52846,Metropolis Films +292,23/5 Filmproduktion +40522,SBI Holdings +540,Jet Tone Production +77949,Film International +79479,Dore Films +5517,100 Bares +505,Cruel Productions +14828,Andrew L. Stone Productions +44805,KH Capital +13349,Zoetrope Studios +51411,Cineart Production +19090,MuchMusic +65129,Dark Harbor Stories +13947,Benmar Productions +50490,NeeNee Productions +81735,"Fun Group, The" +52046,verture Films +22865,Morbido Films +12420,Casa de Filme 1 +57147,Avery Productions (II) +15102,Filmtech +4114,Lone Star Production +13993,Meadway-Claude Productions Company +25515,Compagnie Generale d'Images +8451,Filmograph S.A. +15855,Goldenlight Films +7949,Chris Sievernich Filmproduktion +56518,Butterfly Valley N.Y. +23249,G.E.S.I. Cinematografica +30376,The Pacific Trust +66079,Kino Oko +10389,Raincreek Productions +5240,Matila Röhr Productions (MRP) +4436,Disneynature +21747,Northern Film and Media +79562,Eggplant Pictures +66903,Yellow Film & TV +11675,Duckling A/S +11554,Korea Pictures +78243,Three Crown Productions Inc. +67360,Special Broadcasting Service (SBS) +3781,Vidhu Vinod Chopra Productions +5922,Nicetop Independent +37938,Simka Entertainment +35933,Silverman Entertainment +43906,"Vega, Baby!" +27451,Bluegrass Films +4195,Big Ticket Productions +7682,T. Films +71333,Mount Helix +5780,Producciones Cinematográficas Orfeo +206,Star Partners II Ltd. +1475,UGC Images +20037,Augenschein Filmproduktion +17012,Timeless Films +20306,Primary PIctures +83315,Bayt Al Shawareb +49096,Yong Film +26648,La.Lune Entertainment +7203,Parts and Weather +688,Rankin/Bass Productions +10314,Canart Films +2699,Caviar Films +87977,lobos grande +16259,Poisson Rouge Pictures +46979,Micheaux Film +16930,Fog City Pictures +1650,PECF +18516,Seven Arts Films +31062,Ritz-Carlton Pictures +21025,Ten Deeds +10258,Pimlico Films +4379,Film Brigade +50110,Jaguar Entertainment +13662,Temple Film +3565,Fern Gully Tales +360,Geffen Pictures +93857,Austrailian Broadcasting Corporation (ABC) +93528,Casual Friday Productions +22306,Constance Media +2612,Les Productions du Trésor +454,Faces International Films +6242,Barrandov Studios +10884,The Department of Trade and Industry of South Africa +16217,Williamson Kinematograph Company +57341,Contenders Only +84007,Ralph Smart Productions +87464,Lesson 1 Entertainment +6408,International Traders +3324,British Broadcasting Corporation (BBC) +10539,Produzione Cinematografica Mediterranee +2203,Onyx Films +59305,Evershine Release +65585,Marcel/Robertson Productions Limited +80261,Leone Film (Roma) +21915,Televisión Federal (Telefe) +19616,L&P Productions +53215,Get Lifted Film Company +23011,TDMP +11407,Baltimore Pictures +11332,La Sept-Arte +17823,Alive Films +4357,The Guber-Peters Company +56365,Thomas Carter Company +55584,Drunken Angel Entertainment +2538,Studio Hamburg Letterbox Filmproduktion +9149,Shogakukan +4545,RSA Films +23574,Resolution Independent +20356,Millar Gough Ink +105,Ciby 2000 +8834,Tin Blue +29851,Union Cinématographique Lyonnaise (UCIL) +77130,Contento Films +5333,Zeta Entertainment +71895,Supermarché +78597,Hope Productions +47802,Untitled 13 +79046,Golden Network Asia +6152,Deputy Corporation +62281,Diroriro +76916,Association Beaumarchais +13433,Seasonal Film Corporation +20183,Productions 10th Ave +26670,Sunrise Entertainment (II) +17953,Comedian Intl Enterprise Productions (C.I.E.) +58750,BSB +43382,Mavi Film +1464,Summer Knowledge LLC +26173,Barnsnape Films +1875,Produzioni De Sica +7805,Intermondia Films +30336,Novella Film +61018,Wonderful Films +6658,Action Concept cinema +3330,Chloe Productions +17395,OB Productions +30647,Melson Productions +72063,Zapruder Films +51870,Sierra Alta Productions +25148,Deutsche Film AG +7135,Sun Pictures +3802,Dead Old Man Productions +643,Société Nouvelle Pathé Cinéma +6778,Televisió de Catalunya TV3 +44396,TideRock Films +8485,Ultra Film - Sicila Cinematografica +11876,2262730 Ontario +13071,Wind River Productions +44382,Decla-Film-Gesellschaft Holz & Co. +520,Pacific Data Images (PDI) +8372,SPAD Films +55265,Chapter One Films +16704,Joda Productions +8089,Animal Logic +12297,Hand Made Films +89840,Alpine Pty Limited +1063,Brightlight Pictures +63714,Nick Stagliano +21996,Loterie Suisse Romande +865,Motel Films +21505,Action Films +87920,Sylabik Films +43244,Stemal Entertainment +13337,Gémini Films +12719,Filmar Compagnia Cinematografica +11962,Crossroads +17620,Svenska Biografteatern AB +225,BIM Distribuzione +3498,Malofilm +218,Rafran Cinematografica +1676,Rampart Films +11624,Visualeyes Productions +3055,Paragon Films Ltd. +15160,Haxan Films +3865,York Pictures Corporation +3473,William Goetz Productions +14528,Imaging +13677,Don Hartman Productions +11936,Nestor & Co +53413,80 Days Productions +77645,The Lego Group +7020,Roadshow Productions +21179,Kinoslovo +80761,Manitou Productions Ltd. +6531,Parts and Labor +76912,Département de la Charente +2734,Paragon Films Ltd +211,Film Finance Group +2681,Pratfilm +6681,The Klock Worx Co. +4062,Once Upon a Time Films +54259,Les Films du Jeudi +51696,CG Cinéma +68129,Dream Company +12801,Sperl Productions +7976,CinemArt +317,Istituto Luce +53268,Woodline Films Ltd. +18737,NFH Productions +20235,New Horizons Picture +19690,Caneo Films +4520,Israeli Film Fund +4899,Allegro Films +1258,Michael Todd Company +18367,Centre National de la Cinématographie (CNC) +20091,RAI Radiotelevisione Italiana +13769,Lynda Obst Productions +10680,Inex Film +23370,Constant c Productions +9967,Zeta Audiovisual +7795,Indelible Productions +93149,Karta Film +7910,Yunnan Film Group +40230,Forastero +40495,Cart Before The Horse Productions +15799,Boku Films +63967,Fairplay Pictures +48743,Georgian Bay Productions +16042,Gordon Bijelonic / Datari Turner Films +3800,Sunlight Productions +24133,Night and Day Pictures +2773,Broken Lizard Industries +6261,Aries Films International +86274,Ring Cine +25929,TNT Originals +5652,Six Entertainment +15578,Thai Occidental Productions +78161,K2 Films +39720,ONE TWO Films +4027,Trimurti Films Pvt. Ltd. +11553,Beijing Happy Pictures Cultural Communications Co. +18240,Henceforth Pictures +1,Lucasfilm +21138,DeA Planeta Home Entertainment +11391,Tribeca Productions +17096,VAE Productions +886,Kinokompaniya CTB +81130,FAI Films +69967,Takao +3333,Enterprise Productions +2139,Kulture Machine +10610,Cofinova 7 +521,DreamWorks Animation +22844,Amalgam Features +17490,Cooperativa Cinematográfica +1756,Broadway Video +49982,IM Global Octane +52148,Artifact 2613 +72280,Telegael +208,Bac Films +42182,Filmel +54531,New Sky Communications Inc. +55424,Irish Film Industry +4703,Shadow Entertainment +2644,Benedek Films +8276,Philippe Dussart +41962,A Hot Dog +71352,Toeplitz Productions +20178,La Societe Generale du Cinema du Quebec +5067,Steve Krantz Productions +69195,Vértigo Films +38175,ZBROS +11845,Wintergreen Productions +82010,Little Punk +1242,Reteitalia +23913,Artist International Management +54957,Eskoria Films +40984,Magouric Productions +11952,Bigel / Mailer Films +42221,Munich Film Partners & Company (MFP) BTC Productions +6303,Rakontur +1661,Les Films Molière +3279,Vox3 Films +12407,Panache Productions +7766,Chaocorp +28205,"Samuel Goldwyn Company, The" +33365,Mattel Playground Productions +63075,4th Wall Entertainment +42097,Инвада фильм +52162,Magma Cine +7811,Cité-Films +72883,WanDa Productions +1991,Motion Investment Group +8775,Century Park Pictures +59391,Lemodeln Model & Talent Agency +25919,Ovation Entertainment +51249,SFDRS +11522,National Geographic Entertainment +4151,Parallax East +4591,Flashback Television +49983,Mattel Entertainment +8769,Art Linson Productions +90635,J.Q. Pictures +1528,Element e Filmproduktion +5220,Pasidg Productions Inc. +42479,Marshall Raboy Productions +6455,Edward R. Pressman Film +5945,Beijing New Picture Film Co. +90595,Video Flims +23636,Mostow/Lieberman Productions +64949,DV3 Productions +20479,Manson International +24178,Three-Seven Entertainment +31741,Gynormous Pictures +3877,Morbid Mind Productions +82027,Umbria Film +27259,Hill's Production Services +10214,Embassy International Pictures +33531,George Fitzmaurice Productions +20644,Business Location Sudtirol Alto Adige +52324,The Matthau Company +714,3L Filmverleih +13719,Coronado Productions +23035,Star Entertainment +2017,Film Roman Productions +48471,Summertime Entertainment +4080,Zed Filmworks +26373,United British Artists (UBA) +2890,Fox Atomic +5358,Canal+ +83979,Office Saku +75626,Selznick Releasing Organization +3742,900 Films +5387,Atlantic Pictures +64716,Five More Minutes Productions +955,Nikkatsu +37845,Principato-Young Entertainment +22792,Fida Cinematografica +837,Oï Oï Oï Productions +10339,WWE Studios +16110,Südwestrundfunk (SWR) +53006,Motion Picture Production GmbH & Co. Erste KG +11929,Dear Film Produzione +25828,Walker Worm Film +14359,Scott Pictures +5200,"Motion Picture Group, The" +50094,Kaidan Seisaku Iinkai +26423,BrownHouse Productions +2755,Dante Entertainment +7302,Filmax Entertainment +15673,World Amusement Partnership #106 +5851,Dargaud Films +15670,Palmeraie et Désert +8209,Blue Dahlia Productions +71150,Living Condition LLC +50838,Incurably Curious +15071,Variance Films +56253,Reflection Film +36685,Bottom Line Entertainment +15121,Tymar Film Productions +50488,Sons of Manual +7897,Collina Film +67994,Sarke Studio +18078,Fantastic Films +23423,Baumgarten Management and Productions (BMP) +11195,Faulkner-McLean Entertainment +1566,Spanky Pictures +14624,Carlmar Film +1377,Ízaro Films +4045,Cinegram +1476,Cormoran Films +56674,Manga Films +62409,VisionPlus Fund I +11661,Rysher Entertainment +50649,Decoding Annie Parker +44598,108 Sound Studio +81017,Cine Camera +6355,Silverstar Ltd. +59150,Klasky-Csupo +75880,Exciting Films +3195,Beco Films +779,Lucky Red +89425,Zeke Productions +73307,BBC Wales +90508,Santa Fé Films +25926,Media World Studios +4343,Showtime Networks +4007,Phenomena +12785,Roskomkino +52209,CFQ Films +7299,Corsan +8923,WMG Film +73766,Walter Manley Enterprises +11462,Alphaville Films +53,Les Films du Carrosse +11194,Alabama Moon Entertainment +1861,Polish Brothers Construction +48785,Matinee Pictures +7178,Corrino Media Corporation +83349,VOSC +14734,Oren Peli / Brian Witten Pictures +81443,Grimthorpe Film +55587,Inkas Production +16260,SHRINK Media Inc. +74895,Romikin S.A. +622,Toho Film (Eiga) Co. Ltd. +49609,Papagjika Salloway Productions +88460,Supersensory +80492,Vijayam Cine Combines +2984,Gearhead Pictures +21703,Top Line Production +22049,"Fay, Richwite" +60215,La Sarraz Pictures +13363,Aldan Company +24557,Tailor Made +2756,Vertigo Productions +12855,Mitar Group +49967,Unique New York Productions +6962,CNC +68290,Tenafly Film Company +16355,National Theatre of Great Britain Production +7678,Astrid Lindgrens Värld +2665,Amour Fou Filmproduktion +13246,Gendai Eigasha +8689,An Olive Branch Productions +18794,Video Sound +33593,Agat Films & Cie +2568,Lunar Films +79082,FOXTEL +22219,Lenz Films +19999,School Pictures +3052,Troma Entertainment +14179,Creepshow Films Inc. +14317,Republic Pictures (I) +1274,Clinica Estetico +3238,Film Funding Ltd. of Canada +359,Figment Films +29099,Stage 6 Films +51788,Purple Milk Production +21644,Hessen Invest +44815,Faction M +12521,Shinchosha Company +58553,Michaels-Goldwyn +5015,Perlsea Company +33832,Aperture Entertainment +39825,Cine Styria +45004,Charlie Guidance +10217,Walt Disney Feature Animation +726,Haut et Court +34745,Toei Tokyo +18933,Kumie +21598,Fear Factory +42045,Sakhkinmretsvi +38215,Cannon Productions +6708,Cloud Eight Films +65846,Antarctica Productions +599,Solar Productions +42694,Shri Sai Raam Creations +2975,NBC Universal Global Networks +4692,Instinct Entertainment +57094,Salty Features +72414,Deez Nutz Entertainment +1107,Seven Pictures +960,L.A. Films +18625,Pan Eurasia Films +6116,Argos Films +20307,Thunder Smoke Media +66030,Haut et Court Distribution +5551,Long Shong Pictures +19340,Albion Film Corp. (I) +22826,Hasbro Studios +22898,Mysterious Light +4733,1992 Number Four Limited Partnership +4639,Arzu Film +87721,Skellig Rock +10869,Filmverlag der Autoren +3749,Vishesh Films +17517,One More Pictures +3481,Sai Enterprise +37432,Bow and Arrow Entertainment +54879,Life Out Loud Films (LOL) +42263,Marianna Films +23912,Antidote Films (I) +3996,Mandalay Television +11666,Skogland Films +22353,Divisadero Pictures +7887,Endymion Films +17811,Mad Dimension +21819,WonderPhil Productions +40966,Dirt Road Productions +1896,Pierce-Williams +3703,Adlabs Films Ltd. +23731,Birnbaum/Barber +63928,Aitysh Film +2015,Darlow Smithson Productions +4913,Independent Artists +76445,Indéfilms 3 +45867,Star Film Company +26637,Jay-X Entertainment +4184,Fish Films +14580,Treehouse Pictures +61428,Infra-Red Pictures +36174,O.T.A. Productions +12145,Shaft Productions Ltd. +14465,Daiei Kyoto +6098,Oil Factory +40092,Watershed Entertainment +1039,Channel One Russia +3274,All the Way Round +47178,Magic Films +33352,Trio Film +64231,Office Shirous +54944,Noori Pictures +78496,Tigerlily Films +10611,Ciné+ +1521,Artemis Film +26421,Living Out Loud Films +19599,Inspiration Pictures +566,National Film & Video Foundation of South Africa +19631,Truth Entertainment +3391,Österreichischer Rundfunk (ORF) +53105,Paris Filmes +36108,Ruckus Films +11537,Laika Entertainment +30634,H&V Entertainment +7934,Dusk +8896,Manhattan Pictures International +33862,Cetus Prodution +10039,Anonymous Content +18284,Sam Wiesenthal Productions +23449,American Empirical Pictures +8232,Angelus Productions +1789,M&M Productions +10178,Tobis Portuguesa +2623,Blue Rider Pictures +2227,True Grit Productions +41115,British Film Company +11856,Mohana Movies +29491,Harrington Talents +3332,Wiseau-Films +24946,west wind entertainment +3170,SLB Films Pvt. Ltd. +7646,Loma Nasha +24356,Tomboy Films +30256,Stark Productions +2327,MJW Productions +2504,Jim Henson Productions +69334,Gennaker +5371,Nickelodeon Network +26032,Cineblue Internationale Filmproduktionsgesellschaft +12188,Christopher Films +75631,Narodowe Centrum Kultury (koprodukcja) +1639,Les Films Jacques Leitienne +1787,Central Cinema Company Film +54659,Athos Films +68940,Pictus Ltd. +1926,Les Films Du Fleuve +37040,Quest Entertainment +22289,Moonstone Entertainment +28184,British Instructional Films (BIF) +8675,Walking The Dog +8792,Pan Arts +34341,The Film House +594,Capella International +10705,Lion International +4508,Nederlands Fonds voor de Film +82843,Sam Taylor Productions +6339,Solar Films inc. +8212,Folimage +41648,Freerunning +6266,Mythberg Films +8807,Dylan Sellers Productions +10420,Yalta-Film +1903,Columbus 81 Productions +25514,Basic Cinematografica +2251,Sony Pictures Animation +86296,Intrinsica Films +20326,Neue Schönhauser Filmproduktion +68355,See Film +74601,Odra-Film (Koprodukcja) +8222,Nordisk Tonefilm +65903,Midnight Road Entertainment +60891,Dark Arts Film +3459,Serenade Films +19150,Telewizja Polska (TVP) +2680,Kurosawa Production Co. +17451,Bloch/Woodfield Productions +84800,Pauline's Angel +20942,Sixth Way Productions +3246,Feel Films +91360,Second City +17619,Atlas Film +17411,Polar Entertainment +49626,Les Productions de la Géode +1446,Paramount Network Television +7446,Svenska Filminstitutet (SFI) +24021,Jax Media +28811,Aquafilms +8178,Comet Film +50090,Evince Productions +7400,Olympus Pictures +68919,Amazon Studios +49964,Provenance Pictures +89083,Mystic Artists Films Productions +13306,Gouvernement du Québec +23749,Decipher Entertainment +78657,Towani Corp. +1527,Les Productions Jacques Roitfeld +58262,Birnbaum / Barber Productions +4176,Nord-Ouest Productions +13928,Steps International +12031,Pôle Image de Liège +24960,Ciné +45515,Marlowe Pictures +5577,Independent Sovereign Films +7249,Frontier Studios +1429,Italian International Film +75519,UTA +79025,Zacharias-Buhai Productions +80060,Ironwood Entertainment +14534,Stromboli Films +22972,Passworld +2091,Hochschule für Fernsehen und Film München +7301,Elixir Films +19213,Filmstudio 12A +22657,Sédif Productions (as S.E.D.I.F.) +6507,Mezhrabpom-Rus +12978,Kettledrum Films +14638,Forest Whitaker's Significant Productions +6822,Jaffe / Braunstein Enterprise +51401,Blonde Audiovisual Productions +11055,Broken Sky Films +12886,New Crime Productions +3388,The Movie Network (TMN) +23108,Caramel Film +63558,Chaumiane +142,Silver Films +3444,A Bad Way Ltd +31267,Troy Films +4222,Screen Guild Productions +988,Kojo Pictures +7947,"Moving Pictures, DPI" +46052,SW7D Productions +9255,Toei Company +118,Det Danske Filminstitut +4174,Threshold Entertainment +13852,Odessa Film Studios +24955,Paramount Animation +17369,National Geographic Channel +13730,Edgar Rice Burroughs Inc. +21742,Haunted Movies +72049,Wladyslaw Starewicz Production +36058,Karma Pictures +17434,Skinny Nervous Guy +18586,Le Spot +21623,Rip Cord Productions +64510,Fritz Genschow Films +48638,Face Productions +6470,Walt Disney Production +92233,Cinéforom +2278,EOS Entertainment +3202,Walt Disney Studios Home Entertainment +14966,Channel 4 +36390,3 Arts Entertainment +626,Independent Productions +46792,Capglobe +91543,North West Vision +32327,VIP Cinéma 1 +93932,Fantosfreak +449,Virtual Studios +51765,Carolina Torn Asunder Inc. +23684,Kodiak Films +8501,Bayou Pictures +12007,Rat Entertainment +4106,Libra Pictures +6120,Richard St. Johns Productions +78874,Tadmor +3574,Denver and Delilah Productions +808,The Movie Network +10852,Wald/Krasna Productions +21754,Ostar Productions +4834,Rofima Cinematografica +3846,Epoch Films +13945,Rastar Productions +1268,Focus Films +49971,Grimm Pictures +4978,Gaumont British Picture Corporation +11061,Motion Picture Corporation of America (MPCA) +34342,SIS +11858,A&E Television Networks +48467,Amour Fou Luxembourg +13534,First Look Pictures +83316,Varient Busted Buggy Entertainmen +21864,Cine Mosaic +3679,Rose & Ruby Productions +8117,Max Films +27571,Pirie Productions +3552,Gerald Kargl +65760,Glaski Productions +3282,Larry Levinson Productions +7693,Count of Monte Cristo Ltd. +69659,Harmonica Films +34951,Stardust Pictures +7155,Brand Mason +14446,Infinite Frameworks Studios +31133,Dogwood Pictures +13260,Directors Company +3921,The Film +18093,Tiger Productions +16897,Ciné-Sud Promotion +49248,media in sy +95035,Sleepwalkers Anonymous +77947,Pari Films +86092,Catalyst Global Media +6804,"Zespól Filmowy ""X""" +72733,Marmalade Films +20813,Nu World Services +1531,Smart Egg Pictures +2508,Cinegai S.p.A. +59996,Filmituotanto Spede Pasanen +5258,Filmgraphics Entertainment +310,Centre National de la Cinématographie +54803,7Heaven Productions +51831,Longwood Pictures +26158,Région Franche-Comté +6159,Helsinki Filmi Oy +3240,Artfire Films +1522,Neal Street Productions +14390,Jerry Gershwin Productions +177,Columbia TriStar +229,Solar Films +64663,Studio Solutions +73927,"Hubert Bals Fund of the Rotterdam Festival, The" +25702,Cliffbrook Films +24727,La Noria Cine +3598,Guest House Films +29229,Pégase Films +11509,Warner Independent Pictures (WIP) +26255,Bophana Production +83604,Rather Good Films +24156,American Film Productions +10307,Virgil Films +80514,Friday Filmworks +73926,Televiziunea Romana (TVR1) +7419,Scion Films +3124,One More Thought Entertainment +40788,Wiedemann & Berg Television +13323,Little Bird Productions +33934,Petersham Pictures +7469,History Films +7748,Gatlin Films +5085,Televisió de Catalunya +3215,Carsey-Werner Company +2992,Acrobat Productions +455,Permut Presentations +24025,Silver Bullet Pictures +80522,Jock Gaynor Productions +35929,Thunderhead Productions +34777,Memory +38272,The American Film Company +34786,Empyrean Pictures +6429,Castle Hill Productions +79027,XF2 Canada Productions +13811,Grand Army Entertainment +4178,Famous Studios +45194,Rodriguez International Pictures +52095,Dream Man Productions Inc +46225,Untitled Entertainment +90752,Spede-Tuotanto Oy +4560,Tunnel Post +4253,Don Carmody Productions +89439,Friendly Productions +22971,DDG +53531,Marro Films +55914,Konami +3810,Joel Productions +58092,Raslan Company of America +7100,Patagonik Film Group +516,Seven Arts Productions +41861,GyaO +79732,Talent International Media +15,Lama Films +94935,Shin Kankaku-ha Eiga Renmei Productions +72441,TIK Films +1786,Dark Castle Entertainment +4866,Global Productions +47352,U10 +44486,Timwe +28286,Low Spark Films +1719,Canana Films +695,Lee Daniels Entertainment +11777,Cofinova 4 +83478,Gradski Kina +12088,Moffitt-Lee Productions +21223,Solana Films +13350,Big Farm +79290,"Vladar Company, The" +13412,Imagica +73569,ThreeColumnsEntertainment +5740,Metromedia Producers Corporation +41094,Skylight Cinema +14718,Radar Pictures +22957,RainCity Productions +5488,Fox Film Corporation +2154,Punch Productions +17102,Peter Walker (Heritage) Ltd. +7357,Jerkschool Productions +70993,Ehman Productions +28367,RTV Slovenija +17106,Burg/Koules Productions +4717,Xenon Pictures +14836,Museum +59275,AireCine +74105,Motel Pictures +20857,Rubber Films +11413,China Movie Channel +10989,Muskat Filmed Properties +77329,Wonderfly Films +58870,Jeonwonsa Film Co. +47561,Dolger Films +22933,OffSpring Productions +20291,Zoom Hunt International Productions Company Ltd. +32208,Imp.Ex.Ci. +3235,Brookwell-McNamara Entertainment +7613,The Hatchery +28440,Lacuna Filmes +2467,Sponge Ent. +1501,Flora Film +21461,Cinema Two +18612,Zebra Producciones +14870,United Performers' Studio +18852,Heretic Films +50492,May Day Movies +15100,Quest +20451,Redbus Pictures +4940,Cinematográfica Pelimex +11402,Conseil Régional de Franche-Comté +4944,GK-Film +83151,ADHM Films +17010,Squirrel Films +860,Celluloid Dreams +45503,Xofa Productions +34351,Elisabeth Films +51566,KGB Media +41800,Goya Producciones Cinematográficas S.A. +5263,Amercent Films +12786,Ital-Victoria Films +16442,Pacific Bay Entertainment +14234,Frank Melford-Jack Dietz Productions +26646,Edgewood Entertainment +21110,Merchant Films +10971,Filmhuset Produksjoner +11987,Real Dakota +846,2929 Productions +30816,O' Groove +16647,CineSon Entertainment +50998,AD406 +14937,Icelandic Film +32201,CrossDay Productions Ltd. +57187,Virtue Entertainment +22937,Press Pop +71891,Diablo Movie +4718,Naya Films S.A. +90734,Bunkhouse Films +74705,Madisonian Films +2792,Aura Films +12266,Norlan Productions +20803,Arca-Filmproduktion GmbH +5830,Cheetah Vision +48329,Capital Markets Film Finance +75379,Arek Trawiński & Co (koprodukcja) +2401,Drew Associates +78472,Kablamo! +7089,France2 Cinéma +79415,MCA Theatricals +47327,Surf's Up +3314,Crescendo Productions +64776,Rajvi Pictures +972,Current Entertainment +8390,Wilco Co. +7662,Epic Pictures Group +13731,Criterion Films +17386,Sargeant +6619,Best International +64890,Slingshot Productions +43706,Golden Film +3772,Heron Communications +11466,Akil Production Company +63808,Roxbury +4365,Cut Glass Productions LLC +10676,Cinesur +18923,Moholy-Nagy University of Art and Design +14024,Irwin Allen Productions +3364,Micott Basara K.K. +17157,FunHouse Features +14037,Dreambridge Films +51850,Tohokushinsha +7460,Vendome Pictures +6,RKO Radio Pictures +10417,Star Cinema Productions +70462,Finlands Svenska Television (FST) +1179,Ciné Cinq +1370,Castel Film Romania +1436,Ugly Duckling Films +70879,Ten10 Films +54599,Goldstein Films +21019,WATT frame +8087,Creative Scotland +3635,20th Century Fox Home Entertainment +302,Ibermedia +29500,The Curiosity Company +12650,Dogfish Pictures +2328,Bavaria Atelier +14564,Black Chalk Productions +17824,Larry Franco Productions +12671,Chiller Films +836,Elzévir Films +31149,Provobis Film +6426,Dan Wigutow Productions +48861,Air Bud Entertainment +191,Senator Film Produktion +12665,Blu Cinematografica +10346,Bullet Films +34710,Annuit Coeptis Entertainment II +56010,Boy in the Box +62735,Gobierno de Cantabria +6530,Lifetime Television +35498,Diana Kerew Productions +36059,Spectrum Media Entertainment +7448,Tobis Filmkunst +3327,Proline Film +3356,State Street Pictures +14697,Paris Film Productions +21789,Tarnol Group Pictures +1302,Davis Entertainment +22518,Edison Company +21114,Evescreen +56492,Stewart and Wall Entertainment +2416,Tétra Média +9079,Palladium Film +26927,i5 Films +267,Beverly Detroit +37380,Silver Bullet Productions (II) +376,Industry Entertainment +8284,Baumgarten +41816,De Familie +147,Fidélité Productions +1251,ARD +4985,20th Century Pictures +70083,MyS Producciones +40424,Goatworks Films +33861,Mostly Ghostly +38507,Stun Creative +68949,Mega Entertainment +31302,Van Hoy/Knudsen Productions +6685,Film Movement +38097,Pickford Film +5698,Oops Doughnuts Productions +1235,Neue Visionen +1692,Centurion Investment +2700,Rectangle Productions +24242,YBW-Group +4750,Three Michaels Film Productions +15099,Essaness Pictures +10312,Wescom Productions +3527,Green Hat Films +44806,BizAsset +66334,Woodshed Entertainment +12120,Cinematográfica Calderón S.A. +19649,Key Pix Productions +4267,Delphi Films +23871,parma films +22514,Samuelson Productions +12146,Palomar Pictures International +10864,CTV Television Network +840,Lawrence Gordon Productions +18203,Lion's Gate Films +1825,Spéva Films +5051,Faso Film +5021,Chanford +43934,"In-Gear Film Production Co., Ltd." +290,Ingenious Media +6108,Media Plus +85516,El Bar Producciones +18262,Indie Melbourne Productions +4141,Associated Producers (API) +2221,Erfttal Film +8992,Scanbox +79546,Circle 18 +76194,ITC Films +92805,TPS Company +16643,Deutsche Universal-Film +59488,Cinema Seven Productions +3294,Flame Ventures +5475,Copa Productions +49968,Will Packer Productions +2471,National Geographic Society +6018,Sahamongkol Film International +23773,The Fyzz Facility Limited +4201,VeryMuchSo Productions +91698,Filmi Domireew +2902,SND +1295,Charles Band Productions +3092,Les Films Manuel Munz +3897,"Keli Herd Film Company, Inc" +27072,Media Education Foundation +14589,Code Entertainment +5352,Ankatt Produktion +54833,Moskito Film +27318,Mulholland Pictures BV +13941,Tom Graeff Productions +13930,Embrafilme +2863,Gen Productions +1845,Canterbury Productions +4946,Lippert Pictures +85668,KnightMarcher +31394,Sunnymede Film Productions +42643,Negocios Cinematográficos S.A. +85122,Foxboro Entertainment +13341,Tohokashinsha Film Company Ltd. +10368,Leonard Hill Films +5054,Barna-Alper Productions +11662,Handmade International +23364,Todd McFarlane Entertainment +12663,Ente Nazionale Industrie Cinematografiche (ENIC) +6937,Dharamsala +73898,Cinergi +25954,Metrol Technology +36248,Levy-Gardner-Laven +8457,Go2sho +28179,Boulston Productions Limited +50079,Kreo Films FZ +11092,Ram Bergman Productions +2907,Stick Films +3255,GMM Pictures Co. +2949,Renegade Worldwide +1071,Spice Factory +37673,Alianza Cinematográfica Española +90636,Nextainment Pictures (Wuxi) +738,Myriad Pictures +23724,Instituto Português de Cinema (IPC) +33333,Paramount Famous Lasky Corporation +36786,iDiC Entertainment +10442,Glendale Picture Company +59294,Salman Khan Films +8666,Beofilm +74257,Finition Productions +25087,Arnon Milchan Productions +72408,Kaos Entertainment +12205,EDKO Film +16813,Alta Definición Argentina +77939,BlackBird +7956,Castelao Producciones +74683,Rüssel Video & Audio +22062,Yellow Brick Films +75692,Fountain Films +49936,Don't Look Now +5623,Haddock Films S.R.L. +24563,FallBack Plan Productions +7,DreamWorks +3449,WGBH +22355,KL Production +2421,Foreign Film Productions +15063,City Enterprise +22253,Sunflower Productions +26233,Sofica Sogécinéma 2 +18229,Swargachitra +1247,Eddie Saeta +46299,Tycor International Film Company +2267,First Choice Films +35905,Lazer Entertainment +41624,RatPac-Dune Entertainment +35153,Giant Flick Films +1497,Marianne Productions +7201,Norddeutscher Rundfunk (NDR) +19320,Road Movies Filmproduktion +64815,Horizonte 6 Quince +19903,Lone Runner Entertainment +23936,Exclusive Film Distribution +288,BBC Films +22036,185 Trax +74575,Riva Films +66160,Scott Free Films +61202,Kick the Machine +82830,Push It Productions +12034,Cinémage 2 +6574,Lions Gate Family Entertainment +3978,Robert Stigwood Organization (RSO) +23437,K5 Film +43351,Smiley Ball Films +6033,Paramount +12500,Flatland Pictures +424,Babelsberg Film GmbH +94965,PPV Athens +21592,Madman Entertainment +61661,CleftClips +2288,Michael Cerenzie Productions +23478,Captain Movies +95392,Åke Lindman Film-Productions +9077,Martien Holdings A.V.V. +37812,Westerly Films +12691,DMK Mediafonds International +13537,Geißendörfer Film- und Fernsehproduktion (GFF) +39022,O'Hara-Horowitz Productions +52003,Elite-Tonfilm-Produktion GmbH +7248,Union Générale Cinématographique (UGC) +12248,New Zealand Large Budget Screen Production Grant +75054,"Siglo, Ltd." +598,Team Todd +55259,Centuria Films S.L. +62410,Waterstone Entertainment +2392,Berwick Street Productions +13716,Mid Century Film Productions Ltd. +26432,108 Media +7260,TOEI +21840,Morningstar Films +41032,"Shaken, Not Stirred Productions" +75482,Tanaïs Productions +7971,Sveriges Television +23098,Triumph Films +23190,Kitchen Sink Productions +20915,Hrvatska Radiotelevizija (HRT) +2541,d.i.e.film +3146,Starway International Inc. +1187,Michael London Productions +72919,Uhlandfilm +7088,arena Films +7485,Fox International Productions +40890,China Film Co. +28049,BBC Cymru Wales +48860,Sataifilm +25885,Green Dog Films +13970,Matizar +50076,Side Street Post +3038,Katsu Production Co. Ltd. +3393,Huayi Brothers +40578,Georges Reinhart Productions +28361,BSM Studio +1665,New Horizon Corporation +82551,Best Boy Productions +76057,Arista Films +45809,Tortured Productions +1640,O.N.C.I.C. +65191,Chhibber Mann Productions +24352,Kiki Goshay Productions +17145,Tonik Productions +12423,Sputnik Productions +23008,87Eleven +69640,Global United Media +11511,Regent +50411,Yasahi-Mation Productions +6996,Apostle +59403,Miracle Mile Productions Inc. +23457,MPI Media Group +7864,Amiguetes Entertainment +33995,An Erich von Stroheim Production +3256,Lightning Entertainment +62744,Luz Mágica Produções +36920,Maestranza Films +12743,Prime Entertainment +67990,Sloane Square Films +85745,"Direction du Développement et de la Coopération (DDC), Département Fédéral des Affaires Etrangères" +6690,Sandrew Metronome Distribution +25927,FTG Media +67260,The Electric Shadow Company +418,New South Wales Film & Television Office +3624,True Story Production +26002,Glass City Films +11199,Scope Pictures +73765,Million Dollar Productions +54849,Societa Cooperativa Alfa Cinematografica +76679,Aquarius Audiovisual +22338,Jubilee Productions +10771,Alexander-Stern Productions +17955,El Pico S.A. +48742,Initiation Associates +5855,A Bigger Boat +44532,WNET/Thriteen +51609,Les Films du Tambour +21990,Office Fédéral de la Culture +23909,Silver Nitrate +15997,Mabel Normand Feature Film Company +17593,Filmhuset AS +55588,Lychnari Productions +19151,Bokomotiv Freddy Olsson Filmproduktion +2073,Kadokawa Pictures +26105,Radio-televizija Federacije Bosne i Hercegovine (RTVFBiH) +25134,Lion Share Productions +13240,Bron Studios +8580,Coração da Selva +72,Valoria Films +7575,Palladium +1087,Aurora Productions +68265,Hackybox Pictures +84498,Organización Santo Domingo +21678,Marquis Productions +13460,Chump Films +64,Les Productions Artistes Associés +277,Roven Productions +28793,Région Midi-Pyrénées +41684,Hennepin Studios +6425,The Hallmark Channel +13807,Family Room Entertainment +54191,De Angeles Films +11460,The Institute for the Intellectual Development of Children & Young Adults +921,Next Wednesday Productions +951,Burskin Film +14628,Bethsabée Mucho +22106,Widget Films +60644,Mountainbridge Films +12112,Figaro +74006,Uncorked Productions +10444,Imamura Productions +11795,France Télévisions +15157,Bloody Disgusting +12270,Daniel Bobker Productions +58,Sony Pictures Classics +81199,Hood to Hood Productions +23487,Studio Hamburg International Production (SHIP) +75225,Office Two-One Inc. +85680,Rioma Films +11770,Liberty Films (II) +34999,Bauer Martinez Studios +13748,Vanwick Productions +2689,2 Entertain +1742,Les Films 13 +86852,Cave Painting Pictures +15393,Wolfhound Pictures +16691,Shellac Films +183,Le Studio Canal+ +20491,Paradise Group +26288,Pegaso Cinematografica +3338,Ringleader Studios +11707,Vic Films Productions +21228,Dakota North Entertainment +1763,Europa Film +71981,Stefi Films +12575,Endor Productions +11371,Palomar Pictures (II) +89819,New Element Media +40769,Sanford/Pillsbury Productions +22636,Addicted Productions +35304,Blue Tulip Productions +2067,RBB +75135,"Laong Dao Co., Ltd." +56801,MD4 +657,Toho-Towa +42385,Efer Productions +3153,Sunrise +4054,Mandarin Films Distribution Co. +73860,Okocimskie Zaklady Piwowarskie S.A. +17559,Scanbox Entertainment +68353,CKRush Entertainment +3734,dick clark productions +5635,China Film Group +6546,Was Productions Ltd. +13346,Fandor +10947,ARD Degeto Film +12540,Memory Tech +13682,Fulvia Film +371,Cecchi Gori Group Tiger Cinematografica +3526,Concord Productions Inc. +22710,Les Films de Montfort +9292,Hessischer Rundfunk (HR) +36168,Trentino Film Commission +15103,Lance Entertainment +10631,River One Films +47,Constantin Film +48114,Vanguard Studio +21404,ZDF +3049,Happy Endings A/S +27805,Fleet Street Films +6349,Chi to Hone Seisaku Iinkai +31144,Flying Pig Productions +73899,Flashback Productions +84423,Failure to Launch Productions +2268,Isle of Man Film +69484,Alibaba Pictures Group +23700,Abbolita Productions +22954,Cabin Pictures +25412,Belle Epoque Films +32157,Right of Way Films +4598,Chesler/Perlmutter Productions +12340,Ma.Ja.De Filmproduktion +297,Aardman Animations +7740,UW4 Productions +7289,"Weinstein Company, The" +4640,Akita Publishing +4506,Kasander & Wigman Productions +1930,IRS Media +7048,Fridthjof Film +783,kahuuna films +2330,Ceskoslovenský Filmexport +8857,Independent Film Channel (IFC) +12193,Left Tackle Pictures +1538,Comedy Central +34782,Treasure Company +19961,Start Motion Pictures +2956,The Geffen Company +8147,Entertainment One +39060,Sandfairy +6135,David Hannay Productions +23159,Shifting Gears Entertainment +5140,APT Films +44449,Kinema Sarajevo +2116,VIP Medienfonds 4 +10917,Jerry Wald Productions +12346,Mitteldeutsche Medienförderung (MDM) +21209,3 Arts Productions +28812,Filmanova +6689,Shaft +93175,Middlefish Films +9342,Central Partnership +49255,Televizija Sarajevo +20290,United China Vision +12562,Phantasma +8855,Boy of the Year +2909,Accomplice Films +58445,IamOTHER Entertainment +68273,Jessie Films +7252,Dangerous Films +8472,Thelma Film +2329,Krátký Film Praha +7463,Tassili Films +15694,Bob Banner Associates +2049,Kaminski.Stiehm.Film GmbH +7550,Protean Image Group +26932,Mrs. White's Productions +88715,Pyramania +5225,Johnson Production Group +69353,Cinepro Pictures +81136,Friendly Films (II) +11798,Région Provence-Alpes-Côte d'Azur +67678,Ifitalia +19014,Triangle Production +36748,Zillion Films +5766,ARTE +1249,Les Films du Lendemain +89313,Gruskoff/Levy Company +19375,Moxie Pictures +41735,Buffalo 8 Productions +7931,FilmTeknik +5869,Les Productions Lazennec +2302,Svenska Filminstitutet +3047,Dead Gentlemen Productions +2166,ABC Circle Films +54245,Silesia Film +19331,Kiddinx Filmproduktion +21024,Green Diamond Entertainment +68884,Blumhouse Television +9016,Between The Eyes +639,DR TV +29729,Famous Players-Lasky Corporation +33769,Freedom Media +2668,MC4 Productions +5848,Columbia Pictures Industries +23839,Creative Entertainment Group +41465,Mei Ah Films Production Co. Ltd. +56628,The Convex Group +17392,Showgate +48772,Hard Eight Pictures +12319,Giant Films +13695,Warner Bros. Japan +16733,Wilding Picture Productions +57752,Nord-Ouest Films +16835,Bates Entertainmant +23694,Space Ace Media +26676,O' Salvation +6237,Porchlight Films +1062,Boll Kino Beteiligungs GmbH & Co. KG +2394,Artina Films +94734,Blackfern +77552,Curiosa Films +20478,Moving Picture Company (MPC) +22466,Mad Films-Mi +651,Breathless Associates +8464,Do Productions +16527,La Sept +769,Destination Films +53518,"Zespol Filmowy ""Silesia""" +1992,La Petite Reine +52436,Revólver Films +80778,Mostly Ghostly 3 Productions +3008,Wah Film Productions Ltd. +3554,Athanor +15505,NHK +480,Tobis +127,"Screen Gems, Inc." +79168,Cine Duck +205,Mirage Entertainment +17700,National Film and Television School (NFTS) +73195,Island World Productions +306,Twentieth Century Fox Film Corporation +3963,Guacamole Films +90680,Shanghai Hoongman Technology Co. +4909,Alcina Pictures +10583,Independent +74731,Once Upon A Story +1445,Golan-Globus +24075,Pierre David +28708,Lime Orchard Productions +12387,Tohokushinsha Film +4908,First Generation Films +13920,Exclusive Films +3471,AV Pictures +30535,Papi Chulo +146,Handmade Films Ltd. +4665,Addis Wechsler Pictures +796,Pan Européenne Production +19245,Lago Film +11143,Madragoa Filmes +19374,Fickle Fish Films +54881,Copper Beech Productions +68948,Third Elm Street Venture +12245,Robert Lawrence Productions +21459,Salamander Film Productions +435,Di Bonaventura Pictures +12400,Soficinéma 5 +2391,Devonshire Productions +3411,woestijnvis +29672,Dwango +67679,Sting Occhiali +28476,Studio Images 7 +68386,Panamint Film +4402,Euterpe +1975,Sneak Preview Entertainment +7219,Long Distance Films +10218,Jack's Camp +7300,Staccato Films +49430,Charmed Apocalypse Pictures +20881,Films Distribution +36346,Alliance Atlantis Motion Picture Production +36887,Roven-Cavallo Entertainment +684,Kim Ki-Duk Film +2927,Fidélité Films +3197,Celebrity Productions +40523,Broadmedia Studios +23399,King Records +1417,TIT Filmproduktion +24931,Henson Associates (HA) +720,Goldwyn Films +4264,Northcroft Films +23867,Unisol 3 Distribution +76991,Highland Film Group (HFG) +6397,Filmes Cinematografica +5615,Six Point Harness +55589,Public Institution Kinemos Grupe +21149,Front Films +2776,MovieRoom Productions +6264,Syzygy Productions +16725,Yeni Stüdyo +68562,Sofac +18668,Voodoo Production Services +17723,Quintessence Films +29265,Charivari Films +4107,NEST Family Entertainment +85628,All Entertainment +3276,Elkins Entertainment +59572,Green Rose Pictures +23009,Parachute Pictures +19323,TurtleBack Productions +5219,Sunswept Entertainment +11619,Belgische Radio en Televisie (BRT) +17692,Nafta +6342,Bueprint Pictures +71843,Kimura Productions +86900,TIK Film +911,Roadside Attractions +6458,Instituto Nacional de Cine y Artes Audiovisuales (INCAA) +14055,Sunshine Pictures +2847,Burrowes Film Group +46111,IBC Movie +17088,Simcha Productions +5617,Aberration Films +3018,Brink Productions +54600,Coldstream Films +22500,Highland Film Group +84846,Deep in the Heart Pictures +78371,El Capitan Pictures +856,Wild Bunch +1079,Xstream Pictures +21237,The Collective Studios +2691,Infinitum Nihil +30688,New Normal Films +20659,Cinedigm +24016,Russian Roulette Ltd. +69329,PWSTiF +12984,Norsk Film +4497,Janus Film und Fernsehen +51597,The Orphanage +41001,Schattenkante +7324,Underground Films\ +88849,Season of Darkness LLC +68432,Coproducción Italia-Francia +6177,Sunn Classic Pictures +84640,Duck Attack Films +1690,Samsung Venture Capital +4821,Filmgroup Productions +24277,PalmStar Entertainment +1477,Franco London Films +40976,Banner House Productions +13956,F/M +1308,Wark Producing Corp. +40268,Hartbeat Productions +61506,Iliade and Films +4784,Terra-Filmkunst +32,Buena Vista +66162,Entropy Studio +1240,Film Bangkok +7912,Sedic International +486,Portobello Pictures +21246,Wildside +28453,Wallpaper Productions +36433,MJW Films +885,Téléma Productions +10645,Paradise Films +3870,Premiere Picture +23038,Laguna Entertainment +3510,Summertime Films +9364,Sacher Film +8537,Closest to the Hole Productions +5403,Nordisk Film & TV Fond +48564,Smithsonian Institution +2775,American Eagle +10617,Bosna Film +27896,Retro-juice Productions +8018,Ten Films +14056,Artistes Alliance Ltd. +6881,Parafrance +20103,Strela +10086,Arsénico Producciones +3241,Electric Entertainment +10285,LD Entertainment +1245,Télévision Suisse-Romande +4211,Magic Hour Films ApS +67976,Green Day +3299,ApolloMovie Beteiligungs +26607,Sedna Films +75430,Studio filmowe Oko (koprodukcja) +17091,BB Films +6876,red cam studios +53155,Tiny Giant Entertainment +71837,Second Act Productions +2846,MGN Filmes +80613,Artigo Indie +8962,Eyeworks Film & TV Drama +17763,Sunchild Productions +25488,Clockwork Pictures +80298,Fadd Enterprises +11694,Ministère de la Culture de la Republique Française +1949,Doty-Dayton Production +51360,Precinct 13 Entertainment +16593,Hemdale +1971,Action International Pictures +3595,Magnet Releasing +25381,ActorieDeFilm +86712,Rolling Film Entertainment +74959,Film Studio Tanka +20068,Hideaway Pictures +5186,The Australian Film Commission +13561,Ministero del Turismo e dello Spettacolo +10113,Malvarrosa Media +33155,Classic +5474,Danish Filminstitute +4594,SilverLight Entertainment +47547,A Film Monkey Production +7894,Arena Productions +9185,Producciones Benito Perojo +12390,WDR / Arte +75625,Sogexportfilm +66330,National Geographic Films +13045,Fork Films +4608,New World Television +17379,Coup d'Etat Films +81550,Waken Productions +32553,Black House Capital +130,Jerry Bruckheimer Films +3756,CoMix Wave +86918,Flick Flingr +9344,Iselin-Tenney Productions +20182,CarpeDiem Film & TV +66479,Showtime Documentary Films +47562,C Joy Productions +51863,Studio 100 Animation +27383,Prasa i Film +728,Kalkaska Productions +16272,R. Sanders D. +48663,Detailfilm +38298,Hallelujah-Film GmbH +56629,Red Rose Productions LLC +10031,Morena Films +56779,Sokol Kollár +33266,Peripheria +29313,Pearl Street Films +12622,Darko Entertainment +20796,Crown Productions +33879,Arvo Film +20571,Outlander Productions +14269,Hill-Hecht-Lancaster Productions +2561,Cargo Films +8156,Chugoku Broadcasting (RCC) +79620,Catalina Cinema +23060,Company Television Productions +25438,Lauron Pictures +20066,Bunk 11 Pictures +22059,Laredo +335,Tig Productions +93571,Pegasos Film +35558,Eddie Saeta S.A. +89544,Atomic Arts +13649,Chockstone Pictures +1020,Millenium Films +1093,Shoreline Entertainment +2366,Virtual Films +38598,Freshwater Pictures +84047,Office Augusta Co. Ltd. +986,Degeto Film +45084,Flavorlab +36412,American Mutoscope & Biograph +854,Sofica Europacorp +79275,Manish Realities +89311,"Ruddy Morgan Organization, The" +2100,Andrew Stevens Entertainment +6370,Quinta Communications +12265,Bristol Films +20648,Banca Nazionale del Lavoro +81134,Atchity Entertainment International (AEI) +20980,France 2 (FR2) +10717,Shamley Productions +72921,Turkish Culture Ministry +5795,Kennedy-Buckman Pictures +11353,B.H. Finance C.V. +2632,Cinephil +16568,Mulmur Feed Co. Production +58714,H.W. Buffalo & Co +66386,Joma Films +78498,21 Unofilm +77195,Elena Films +4858,Cinematografica Emmeci +35514,Sharmhill Productions +41758,Four Luck Banana +4800,Gatlin Pictures +8694,Silvio Berlusconi Communications +365,Nelson Entertainment +71825,Lasihelmi Filmi +14026,Escazal Films +20916,Kinorama +81895,Petit Films +30277,Janus Filmproduktion GmbH +13499,Panoramic Productions +2760,Miracle Pictures +35849,Armory Films +12014,TWS Productions II +3627,Warner Bro. Japan +4811,Warner Premiere +1582,Titan Productions +19029,Cinecorp +82346,Sony Pictures Entertainment Japan +51151,The Business (New York) +4562,Cell +7322,Off The Grid Productions +285,Live Entertainment +21820,Claang Entertainment +34911,Rooster Teeth Productions +12389,Les Films Pelléas +31715,Gramercy Pictures (I) +30531,BN Films +77717,No Weather Productions +63784,Miles Films +51363,Наше Кино +25129,Lumière Pictures +16443,Nickelodeon Productions +11620,Orange Cinéma Séries +6790,Discovery Channel +2651,Fragile Films +80393,Pen India Limited +53462,Matt Tolmach Productions +44730,Embassy Pictures +20769,Banfilm +73744,Nowhere Sp. z o. o. +32599,My Cactus +16048,Fewdio Entertainment +2273,Eden Rock Media +27610,Camfam Studios +11408,Ministerio de Cultura +28005,Nice Drama +12726,Alcinter +47264,Watership Productions +7473,Cannes Film Festival +13580,Sydney Box Productions +53583,Martin Chase Productions +12987,Filmmaker R&K +8246,Friland Produksjon +1400,Labrador Films +4024,Pacific Film and Television Commission +6597,Miracin Korea Film Company +10167,Gospel of John Ltd. +9262,Cannon and Morley Productions +2083,Maximage GmbH +7342,Atípica Films +67261,Wüste Film +5609,3b productions +11011,Fonds Eurimages du Conseil de l'Europe +18667,Parallel Media +13739,Film Venturers +45587,Sri Venkateswara Cine Chitra +45460,Tamtam Film +11043,A&M Films +21899,Michael Mailer Films +14235,Cinévidéo +6970,Bill Plymton Studios +27050,Boss Media +1333,Benedict Pictures Corp. +1999,Phoenix Film Investements +26889,Fresco Films +8409,United Productions of America (UPA) +94312,Elara Pictures +5645,Talkback Thames +43792,London Boulevard +14729,Populist Pictures +6562,Planet Productions +21111,Cartel Films +53431,IFC International +55146,GoldApple Entertainment +42345,Mount Film Group +8487,Sanrio Company +58254,Chamartín Producciones y Distribuciones +6318,Brut Productions +81551,Vamonos Films +8913,Paramount British Pictures +76984,ICEC +6693,Four of a Kind Productions +21746,Northstar Ventures +6623,Caramel Films +73925,McCann-Erickson +29564,Telefónica Studios +57612,Epicmedia +14239,Alced Productions +14070,Cinema Artists +470,Recorded Pictures Company +4354,"Geffen Company, The" +11844,Kaplan/Perrone Entertainment +79368,Ciné + +73666,Covert Media +2303,Villealfa Filmproduction Oy +5674,SF Film +15158,8383 Productions +18663,Zeppotron +1432,Republic Pictures +8011,Producciones A.S.H. Films S.A. +50479,Hello Please +4617,Beijing Ciwen Digital Oriental Film & TV Production Co. +11267,Focus Features International (FFI) +11395,ImageMovers +5397,Group TAC +63634,KZ Productions +15196,Animation Picture Company +2054,Ruby Films +18898,Ladoga +40759,Filmline International +13884,Produzione Dario Sabatello +79268,HiFilm +7954,Filmwerks +12410,Lleju Productions +2442,Counihan Villiers Productions +6221,Evolution Films +1496,Clesi Cinematografica +30833,Visual Arts Entertainment +3601,Mr. Nice +52135,Denholm Trading Inc. +3823,TF1 Films Production +2292,Original Media +38204,Rysher / Citadel Entertainment +58224,ITI Film Studio +11761,Mark Canton Productions +76,Zentropa Entertainments +83636,Film Corsari +3603,Vision International +591,France 3 Cinéma +742,Reverse Angle International +18479,Corduroy Films +9383,Blue Sky Studios +33299,Handle Productions +32299,Blue-Tongue Films +258,Scott Rudin Productions +22411,Lambor Films +84167,Adaptive Studios +15122,Patti Enterprises +2310,Screen West Midlands +15191,Laser Films +18557,Philippine Animation Studio Inc. +78242,New Crowned Hope +34495,Sampek Productions +63306,Artikulo Uno Productions +43900,Tropicfilm +2592,Albatros Produktion +73068,RYOT Films +80515,Hoody Boy Productions +4667,Bitters End +3839,White Feather Films +257,La Zanfoñia Producciones +4588,Egmond Film & Television +58240,J.P. Productions +26103,Sixth Wave Productioins +20612,Giant Ape Media +2233,Bristol Bay Productions +1216,Dino de Laurentiis Cinematografica +29133,Bremedia Produktion +12263,Clyde Is Hungry Films +6390,Giovanni Addessi Produzione Cinematografica +31301,Field Guide Films +59663,Compadre Entertainment +844,Sofica Valor 6 +7503,Protozoa Pictures +64779,Film Kraft +95596,Snow Day Productions +4887,Fox Filmes do Brasil +13709,Albert Zugsmith Productions +30420,Anonymous Content +4157,Arcturus Motion Pictures +30200,The Corman Company +28700,La Cecilia +14031,Ladd Enterprises +27264,Liquid Noise Films +8930,Euro International Film (EIA) +6062,Státní fond ČR pro podporu a rozvoj české kinematografie +81029,Radović Company +73862,Filmways Productions +74810,"Tokyo Eiga Co., Ltd." +81418,Nagoya Broadcasting Network (NBN) +75584,"Shintoho Pictures Co., Ltd." +77713,Dog Day Films +41112,VEB DEFA-Studio für Spielfilme +3719,Ljubavny Film +364,The Rank Organisation +19926,Skate Away Productions +44626,C.I.D.C. Altamira Fil Altamira Films +57851,Farmhouse Film +67259,Altus Media (Five) +89613,Monami Agency +52351,Rabbit Bandini Films +8569,Dayday Films +86057,Wrecking Ball Pictures +41251,Reveal Entertainment +11423,Estudio Mariscal +3630,Merlin Productions +43671,Canadian Television (CTV) +291,Perdido Prod. +4627,Sony Picture Imageworks +6950,Pegasus Motion Pictures +78552,Aljosha Production Company +52518,Agenda +48401,Ten Furlongs +10951,Screen NSW +6083,Royal Film Traders +67069,Weimaraner Republic Pictures +60037,Verdict Productions Inc. +49935,2L Productions +3522,T-Series +3803,Middle Fork Productions +55129,Peace Arche Entertainment Group +6484,Lyara Films +14078,The Documentary Group +11006,Aldamisa Entertainment +17209,Vice Films +14789,D.N. Dream Partners +23227,Magnet Productions +89473,Perfect World Pictures (Beijing) +19623,Cue the Dog Productions +26000,New Treatment +75924,Dziki Film +19507,Outlaw Productions (I) +25629,Kushner/Wyman Productions +2917,Formosa Films +35711,HFD Productions +62170,Castelao Pictures +7579,Redwire Pictures +10209,Rai Tre Radiotelevisione Italiana +4298,Remstar Productions +8486,Sanrio Communications +74791,The Horrorworks +3291,Provident Films +2970,More Entertainment +22883,Partnership Pictures +75224,"Cabin Co., Ltd." +5137,WVG Medien GmbH +5381,Backup Films +17928,A. C. I. Films +10698,John Ford Productions +27584,"Rainbow Film Company, The" +47270,Théâtre Robert-Houdin +21660,Ankama +1657,Greenwich Film Productions +1113,Les Films 21 +17466,Warner Bros. Entertainment GmbH +17488,Due Emme Cinematografica +43274,Hurricane Films +90400,Mrs. Brisby Ltd. +36746,Vans +76359,Water +26074,Eltham Strathmore Pictures +5625,Contracuadro +20716,VTC +3500,Move Movie +37648,Henry S. Kesler Productions +10343,Pandora Filmverleih +11957,GG Filmz +14912,Unbound Feet Productions +67116,Clownery Productions +2487,Rockwell Eyes +4531,Films Dara +11517,Buffalo Gal Pictures +11765,Ithaca Pictures +47441,Just Singer Entertainment +67037,Suricate +30226,European Co-production Fund +6233,Леополис +8068,Mindfire Entertainment +15669,D.R. Comunicazioni di massa +27334,Laïla Films +24511,The Way We Roll Productions +820,Tapson Steel Films Productions +58247,Alchemy Filmworks +75999,Telecine Productions +39339,4L +71490,Eclectic Pictures +7350,DEM Film +13192,Fideline Films +1024,Amiguetes Entertainment S.L. +57347,Blue Productions +89773,Sonar Advanced Music +1838,Firm Films +14404,J.E.M. Productions +2171,Les Productions FDL +62708,PCB Entertainment +62137,Bluemark Productions +80561,Marcio Garcia Producoes +64216,Brad Krevoy Television +21254,Strand Productions +17513,Film i Väst +11840,Film Victoria +19930,Cinéart +85743,Canal + Belgique +795,Vans Off the Wall +15361,Luna Pictures +23330,Bloody Mary Productions +14282,Pupcake Productions +79623,2 Die 4 Films +23046,Internationale Scarena Filmproduktionsgesellschaft 2 +10105,Apatow Productions +1608,Wayans Bros. Entertainment +41973,Capital Film +69112,Theatre Of Material +22329,Fire Island Films +1957,Warner Bros. Television +42620,Walt Disney Studios Motion Pictures AB +11024,Coyote Productions +2376,Blueprint Pictures +3360,Appleseed Film Partners +8458,Return to Sleepaway corp. +11493,National Film Finance Corporation (NFFC) +10096,Walter Wanger Productions +5164,Sigmund Neufeld Productions +22150,imX Communications +23928,San Francisco Independent Cinema +15257,CBS Television Studios +171,Malpaso Productions +45810,Five Star Pictures +60294,Alta Vista +19625,Lifetime Movie Network +27570,Neptune Salad Entertainment +4763,Fox Films Ltd. +82598,Shenghua Entertainment +70098,Klas Film +43531,RMB Productions +5023,Alliance Vivafilm +87476,barbican films +36124,Handprint Pictures and Essel +923,Legendary Pictures +2521,Golden Harvest Company +5261,Shogakukan Production +5569,Empire Motion Pictures +93591,Mirco & Slavco - First Partizan Production +25686,Canada Council Media Arts +30194,Nazimova Productions +93118,Elite Group Entertainment +3906,American Playhouse +21640,Produzioni De Laurentiis International Manufacturing Company +4131,Ignite Entertainment +11272,Peregrine +9000,Pathé-Natan +91437,Ring Film +74925,Platige Image (koprodukcja) +28518,M.K.D. Films Combine +76045,Korchula Productions +38791,"Pérez Pareja, M. Flor" +90981,Blackfin (Beijing) Culture & Media Co. +1804,North by Northwest Entertainment +24459,Fabula +2948,Showtime Australia +11440,Ozumi Films +56239,Modern Love +12252,Chartoff-Winkler Productions +11205,Pulsar productions +14088,Roped In Productions +1693,Nina Saxon Film Design +763,Intermedia Films +89181,Calipo Picture Company +85466,Motion Picture Capital +6377,Media Asia Films Ltd. +3801,VIP 2 Medienfonds +53972,White Horse Pictures +8504,Block / Hanson +51194,Logan Pictures +86711,Flash Forward Entertainment +23199,Maraci/Edelstein Films +12422,Walker Films Limited +7281,British Film Institute (BFI) +11480,Montoro Productions Ltd. +839,Lou Yi Inc. +13591,Rundfunk Berlin-Brandenburg (RBB) +62945,Balapolis +907,Overbrook Films +250,Canal+Polska +18626,Kinology +7653,Zininsa Film Production +8123,Origen P.C. +69190,Super Productions +32485,Pokeepsie Films +76902,Academy Photoplays +8895,MAFILM Objektív Filmstúdió +11894,SPI International +74695,Ming Productions +5574,Modernciné +25136,The October People +21212,Italian Tax Credit +4376,First Artists +41427,Suzanne DeLaurentiis Productions +78973,Films Internacionales (FISA) +33991,Entertainment Pyramid Inc. +21783,Crystal Lake Entertainment +6901,Prescience +47557,"Lawrence Turman Films, Inc." +73658,Irving Asher Productions +1490,Kintop Pictures +16553,Benagoss Productions +8015,Procusa +20289,Asia Union Film & Entertainment Ltd. +18984,Blind Guy Films +6189,Turner Pictures (I) +7933,Compagnie Cinématographique de France +2269,China Film Co-Production Corporation +30600,Agile fims +25147,MTL Maxfilm +35141,J Filmproductions +1574,Les Films Modernes +48669,Pannónia Filmstúdió +49981,Initial A Entertainment +4401,4dvd +26855,Bunbury Films +4564,Icon Entertainment International +37492,54 Days Productions +23082,Weber Investissements +8976,Media Max Productions +21199,Brillstein Entertainment Partners +21540,Mary Pickford Company +6759,Adult Swim +327,Columbia TriStar Nordisk Film Distributors A/S +4983,Sidus Pictures +374,Lost Highway Productions +23067,Blue Screen Productions +383,Goskino Productions +28045,Gansis +75514,French Ministry of Cooperation and Development +16804,France 3 Cinema +5026,ABC TV +62765,Fries Film Company +50491,Capacity Pictures +3924,Bert Marcus Productions +34842,Seventh Picture Productions LLC +5841,Castleberg Productions +11905,Digit Anima +5648,Murakami-Wolf Productions +50821,Realworks +20542,Sun Entertainment Culture +21987,SRG SSR idée suisse +12183,Morgan & Chan Films +51454,Factory +56780,TVORBA films +73519,Snowcloud Films +57021,Siempre Viva Productions +11062,International West Pictures (IWP) +1598,Nippon Herald Films +1005,Sweetwater +15567,Boyana Film +6739,RHI +25838,Occupant Entertainment +2787,Reel FX Creative Studios +14532,Filmadora Nacional +19778,Winter's Bone Productions +42876,Two For Flinching Pictures +66512,Amérique Film +17452,Penguin Productions +23719,Prey LLC +44225,Construction Film +11639,Peter Carsten Produktion +11895,Artificial Eye +251,Avenue Pictures Productions +76942,Dream Guy Productions +11567,Province of British Columbia Film Incentive BC +10056,Cunningham & Maybach Films +10569,Gene Autry Productions +34993,Happinet Corporation +7663,BEC-TERO Entertainment +80711,3ality Digital Entertainment +12655,Shogakukan-Shueisha Productions +77369,Embassy Productions S.p.A. +3786,Baweja Movies +84008,GB Instructional Films +11849,Lawson +75475,Sterling Camera and Film Company +21411,Diana Film +52944,Lotus Pictures +39613,Pelemele Film +84254,La Fondation Gan pour le Cinéma +72731,Film Polska Production +11583,Syalis DA +59463,Ferris & Brockman +11262,Imagine Films Entertainment +2291,Journeyman Pictures +89522,Islet +81143,Aspect Ratio Film +13880,Vsesoyuznyj Gosudarstvennyj Institut Kinematografii (VGIK) +729,Why Not Productions +6583,Reliance Big Pictures +139,LJ Film +7310,Bord Scannan na hEireann / Irish Film Board +25818,Ministère de la Culture et de la Communication +62270,Camera Noire +25458,Blue Angels Films +88919,Nippon Film Development and Finance +92031,Daniel Scharf Productions +65146,Zhi Media +1766,Dieter Geissler Filmproduktion +60263,Raindog Films +17557,Scanbox Entertainment +5746,Yellow Bird Films +2993,Bright-Persky Associates +1735,Documento Films +2170,Filmanthrope +243,CB Films +11231,Fox Animation Studios +74682,"Kinokompaniya ""Tsar""" +6858,Universal Studios Home Entertainment +25924,Pygmalion Production +3545,Big Screen Entertainment Group +19145,Prakash Jha Productions +40866,MUSE/Wyman +660,British Lion Film Corporation +4158,Polartec +655,Strike Entertainment +973,Immortal Entertainment +84723,Ekstaza +11114,Braun Entertainment Group +11663,Future Films Production Services +63226,"Alberta Film Development Program of the Alberta Foundation for the Arts, The" +89137,Second Street Films +10653,Filmarno +59398,Puerto Vallarta Squeeze Productions +11405,Blue Fiction +26600,Atopic films +32665,Nightwatch Films +10405,Emmett/Furla Films +22220,Clarke-King Enterprises +278,Propaganda Films +35298,The Jessica Company +13965,Total HelpArt T.H.A. +1943,Films Pacifica Inc. +9349,Film4 +21017,SK Film- und Fernsehproduktionsges.m.b.H. +4986,Intercapital +31832,Envision Entertainment +24212,Media Cooperation One +3965,Taewon Entertainment +12075,Silver Reel +15308,Wild Bunch Distribution +21471,Burning Bright Productions +11056,Barnet Bain Films +11788,Compagnie Industrielle et Commerciale Cinématographique (CICC) +14246,Pyramide Distribution +50630,La Classe Américaine +53975,Desert Flower Filmproduktion +4870,consolidated documentaries +452,Maurice McEndree Productions +13400,Artcraft Pictures Corporation +27717,Ahiru to Kamo no Koin rokkâ Seisaku Iinkai +1583,RAI +2936,Limelight Productions +5485,Zodiac Pictures International +89388,Freestone Pictures +51102,Videomante +72448,Peace Arch Films +15706,Phoenix (II) +284,DNA Films +64430,Greenmachine Film +84161,Vetter Brothers Filmworks +22592,Fort Films +1779,Tokuma Shoten +23378,At Group +65769,Phantasmes Video +813,DiNovi Pictures +7948,Terra Firma Films +12371,Filmax Group +44315,Raindance Raw Talent +89203,Cinema Revival +12307,Creatures +49969,Silver State Production Services +8968,ABC Video Enterprises +73745,Argomedia Sp. z o.o. +4051,Warner Brothers/Seven Arts +18642,Rovio Entertainment +2498,Whenua Films +8833,Anvil Films +18595,ESPN films +8719,Isle of Man Film Commission +16644,IRE Productions +42002,Velvet Spoon Productions +2289,Abandon Pictures +16262,Nice Dissolve +7958,Fuji Eight Company Ltd. +71510,JD Prod +6519,Agat Films & Cie +70587,Gimages 3 +76913,Académie Franco-Russe du Cinéma +7392,Twentieth Century Fox +908,Mystery Clock Cinema +2127,Uco-Film GmbH +39407,B-Reel Feature Films +3538,Gunn Films +62015,Wanted Worldwide +4804,Almena Films +40757,Rain film +7788,Gunny Entertainment +787,3 Arts Entertainment +1453,Thalia Productions +53696,The Where's Poppa Company +7834,Treklövern HB +3733,Palo Alto Productions +7007,Flamenco Films S.A. +73694,Last Cab Productions +1724,Regina Films +32243,PeaPie Films +19212,A.L. Production +6427,Pure Flix Entertainment +6301,CinéCinéma +82853,Tangent Animation +93117,Zhang Yimou Studio +1542,Como Film +5006,Exposed Film Productions AS +10933,Paragon Film Group +81734,Laid in America +61239,Chuan Films +34081,Flynn Picture Company +19906,Internacional Cinematográfica +11552,SAJ +4805,Film Ventures International (FVI) +11984,Intes Corporation +7049,Enigma Productions +1221,Gainsborough Pictures +95162,Uni-Bet Productions +84216,Fu-Film +5126,Beyond Infinity +16053,Das Kleine Fernsehspiel (ZDF) +19959,A Plus Image +17172,Roar Productions +17,Warner Bros. Entertainment +16353,Mount Street Film +37765,Verdi Productions +2577,Studio 37 +55545,Have another Cherry +6705,Filmfour +56697,Tadross Media Group +13198,Monsoon Films Private Limited +90401,Berton Films +14731,Studio Fierberg +4137,Sack Amusement Enterprises +2432,Quanta Centro de Produções Cinematográficas +2363,Cold Spring Pictures +15808,Cinemalaya Foundation +23967,Derio +33027,House of Spirits Film +2982,Signature Pictures +3632,Romulus Films +90596,Vaco Moloco +87638,True Lovers +1722,Copa del Oro +3237,Sahamongkol Film International Co. Ltd. +354,Orly Films +60759,Interfilm +86962,Bad Theology +3137,Jaleo Films +1382,PolyGram Filmed Entertainment +10626,Papphammar Produktion +50848,Rovio Mobile +8590,Holland Harbour Productions +30345,P.T.T. +33831,Oasis Films +9303,Shintoho Film Distribution Committee +84844,How Town Film Productions +14648,Bachrach/Gottlieb Productions +67385,Downstream Productions +39703,National Picture Show Entertainment +3502,Alquimia Cinema +12918,Greenpoint Films +8056,Eclectic pictures +60000,Pakhshiran +2451,CrossDay Productions +6745,Грузия-фильм +46197,Luxembourg Film Fund +23595,RTL Entertainment +3165,Funny Business Productions +39820,Goff-Kellam Productions +22275,S.N.E. Gaumont +8803,Production Partners +28381,Dr D Studios +705,Spring Creek Productions +16061,Baltimore Spring Creek Productions +28400,Glem Production +1785,Likely Story +4287,Nippon Animation +18359,Ringling College of Art and Design +79478,Saptrishi Cinevision +805,Serendipity Point Films +51965,Wonder Entertainment +1917,EM Media +5653,Ilion Animation Studios +888,Overseas FilmGroup +12043,Fonds Film in Vlaanderen +26144,Rampage Entertainment +7093,Hokkaido Broadcasting Co. +5437,Mischief Maker Studios +64128,Itami Productions +5039,Romson Productions +28703,Anit Ticaret +81694,Filmförderung Baden-Württemberg (MFG) +3295,Raw Feed +6446,Total Entertainment +457,Constellation Films +10943,ITVS +63078,Téléfiction Distribution +87477,Screenplay Infinite Films +3551,Tricky Pictures +11037,EFVE +2793,Naya Films SA +11352,Prominent Features +17611,Sean S. Cunningham Films +74328,Diversa Audiovisual +11955,Sogepaq +5826,PBS +11610,Absurda +1823,Arwin Productions +12033,Regione Puglia +6175,Ram Films Inc. +52723,Inside Track Productions +70197,Turnchapel Films +18283,C.G. Silver Film +70571,Hybrid LLC +54818,RedGuitar +12579,Republic Entertainment +6554,TV UNAM +5827,Nova +5612,Brooksfilms +6130,Dualstar Productions +1989,barefoot films +7405,Dimension Films +632,British Lion Films +13255,New Century Producers +138,Schramm Film Koerner & Weber +7154,One Race Films +7076,Chernin Entertainment +8784,Valley 9000 +14646,Pickford Corporation +24846,Menuet Producties +1420,ContentFilm +2877,Living Films +14175,Davis Films +8101,Omega Entertainment +6973,Les Armateurs +373,Asymmetrical Productions +52738,Jeff Rice Films +2185,National Cinematografica +62457,Actium Pictures +76880,Stefi S.A. +19354,Mediastream Vierte Film GmbH & Co. Vermarktungs KG +3232,NFL Films +49924,Silver Peak Productions +1585,Norman Rosemont Productions +6363,BenderSpink +4359,Paradigm Pictures +71334,Minos Films +67475,Manny Films +15045,Suffolk Productions +1740,Les Films Copernic +69827,Pyre Productions +16517,Chase Productions +883,Les Productions du Champ Poirier +6657,Action concept &fims +65621,YTV +744,Diaphana Films +35,Lions Gate Films +21332,Eye Entertainment +9265,Applied Action +4395,Monogram Pictures +34981,Iron Horse Entertainment (II) +11238,Deutsche Filmförderfonds (DFFF) +14063,Granada Television +4714,HSX Films +14066,Site B +52704,The Jerry Gross Organization +3176,Campfire LLC +21646,Richwater Films +75566,Studio El Orch +80884,Studio 71 +29871,Qiu Fusheng +43854,Nero-Film AG +13283,Israfilm Ltd. +46695,Artists Independent Network +2137,Le Bureau +4380,Suntaur Entertainment Company +1471,Archer Street Productions +31143,Gare Farrand Entertainment +21381,micro_scope +15465,Amasia Entertainment +73179,Ramon Film Productions +5123,Miso Film +625,Devon +21507,Cosmokino +45899,Doki-Doki Productions +63430,Puppy Entertainment +50954,Territorial Film Developments (TFD) +23647,La Sept Cinéma +1177,Rastar Films +74153,Lai Wah Film Company +10169,Visual Bible International +2911,IMCINE +11978,Kung Works +20191,Mitsubishi Shoji +14087,Ursus Films +8082,The LiveBait Entertainment Other Companies +18239,Atlas Independent +7986,M&B FILM3 BV +72663,Flynn Entertainment +18120,Loco Dawn Films +77155,MonkeyBoy +78,Hotshot Films +80198,Thanasis Vengos Tainies Geliou +7153,Epo-Film Produktionsgesellschaft +55643,Saga Productions Inc. +14030,The Beckworth Corporation +84598,Life Work Corporation +6520,Factor RH Producciones +5330,Bruin Grip Services +29725,HOT +241,Herzog +58068,M.O.D. Productions Inc. +6453,Studio Trite +22811,JLG Films +38291,LOT Productions +23722,V.O. Filmes +12551,Screen Gems Television +15316,Agora Films +93542,bob industries +52581,West Eleven Films +79260,Farabi Cinema Foundation +7142,Eros Entertainment +4408,Wo Ping Films +54035,High Line Productions +10477,AB Publikfilm +7143,Ayngaran International +246,Film Council +436,1492 Pictures +67984,TaliaFilm II Productions +26977,Sarabande Productions +87390,Gross Entertainment +3129,Anthony Buckley Films +14368,S Pictures +8856,Intermedia +46875,Nitrogen Studios Canada +90405,Mancantoo Oy +87695,Openvizor +10769,Greek Television ET-1 +32473,Graniet Film BV +40094,John Brister Productions +8109,Zentropa +44406,Rai 1 +8213,United Artists Corporation +95587,Dymphana +10939,Triad Productions +6016,403 Productions +30636,Bos Bros. Film & TV Productions +35001,Defender Film Fund II +4748,Oscilloscope Laboratories +8277,Flach Film +67285,New Sparta Films +47416,Sovereign Films +70359,Les Films Jean Renoir +7799,TF1 International +2117,D.R.M. Productions +23495,titania produzioni +24205,Film Concorde +21923,Projection Pictures +22158,James Cruze Productions +24475,La Sofica Sofinergie 5 +11634,Manitoba Film & Sound Development Corporation +15843,Alby Pictures +78113,The Other Side Films +7937,Sonet Film AB +72662,Big Eye +33326,Artista Filmi Oy +22339,Company Films +53179,Climax Pictures +58205,Third Street Pictures +23838,Salto de Fe Films +52412,Coop99 Filmproduktion +52859,Production One +10932,The Criterion Collection +67992,Cornelius Productions +28567,Neoplanta Film +84609,JWT +35216,Monte dei Paschi di Siena +14003,Willoughby Film Productions +19781,Cinema One Originals +7036,CJ Entertainment +33666,William F. Storke & Robert E. Fuisz +35063,Cape Of Good Films +89807,Wong Jing's Workshop Ltd. +79009,The Kraken Films +78248,Inzert44 +6544,Ben Katz Productions +10673,Labor Film +56011,2 Bridges Productions +25657,Beijing Hairun Pictures Company +565,UK Film & TV Production Company +81541,Région Bourgogne +22746,Movie Prose +7967,Media Factory +31527,Sat 1 +37440,Producciones Águila +7819,Lotte Entertainment +3132,Vlaams Audiovisueel fonds +985,Filmstiftung NRW +82423,Cowtown Cinema Ventures +7869,Ágata Films S.A. +44643,Red Bucket Films +18201,Talent Associates +7699,Palomar +685,Cineclick Asia +5527,Jonathan Productions +94914,Water in Tree Pictures +8877,Curtis Hanson Productions +87428,Jaro/Noelle Production +15299,Globe Enterprises +446,Thinkfilm +41310,Won World +41660,Rachael Horovitz Productions +8549,Cinema Prime Film +28182,Dream Author +4835,Beatrice Film +28877,International Pictures One +20460,Life Investors International +60676,East of L.A. Productions +2412,Column Productions +858,Tessalit Productions +28334,MUVI Films +72537,Aurora Filmes +33715,fx3x +7543,Arcadia Motion Pictures +7255,Hellenic Radio & Television (ERT) +47848,Thunder Bay Pictures +11800,Casa Kafka Pictures Movie Tax Shelter Empowered by Dexia +792,Radio Télévision Belge Francophone +36765,Adventure Pictures +23972,M7200 Productions +5538,Sandy Howard Productions +54749,Compagnia Edizioni Internazionali Artistiche Distribuzione (CEIAD) +21451,American Entertainment Partners II L.P. +75466,Mad Dog +71885,Les Films de Batna +64031,Trailer Park Productions +240,Bazmark Films +5372,Oriental Light and Magic +77343,Al Jazeera Documentary Channel +2094,Majestic Filmproduktion +66337,Upstate Murder Co. +12194,Zucker/Netter Productions +8861,Instituto Mexicano de Cinematografía (IMCINE) +81185,Carter Seagrove Project +11382,The Archers +80327,The Entertainment Network +51942,Krannel Pictures +62055,EMA Films +71237,Downtown Pictures +10793,France Cinéma Productions +43838,New World Pictures Ltd. +5419,Edgewood Productions +16923,Zephyr Films +7908,JSBC Eudemonia Blue Ocean TV & Movie Group +9027,Hallmark Hall of Fame Productions +11682,TV2 Norge +22843,TheThird Mind Pictures +17911,Wide World of Entertainment +36195,Republic Pictures International +18884,HPS Productions +11073,Sony Pictures Television +4503,Neue Road Movies +25434,Harris Company +18768,Willow Tree +2710,Prisma Film- und Fernsehproduktion +6288,Meteor Film Productions +54574,Life & Pictures +934,Cutting Edge Entertainment +965,TAFT Entertainment Pictures +38485,Larry Savadove Productions +89603,Teen Life Productions +2460,B.D.S. Productions +25918,Eulogy Productions LLC +75039,Production 2006 +385,Stanley Kubrick Productions +59111,Recluse Films +5340,Left Bank Pictures +14374,David V. Picker Productions +2381,Musée d'Orsay +10494,Alimar Productions +22305,Milk & Media +6596,UniKorea Pictures +64854,Greencard Pictures +20931,Alpha Productions +10619,Azoff Entertainment +77519,Lao Art Media +42004,Thema Production +83361,Medallion Films +90757,Stephen Weeks Company +71464,Zodiak Jerzy Hoffman Film Production Sp. z o.o. +15856,Bischoff-Diamond Corporation +7909,We Pictures +162,Bayerischer Rundfunk +477,Hughes Entertainment +16975,Lichtblick Film- und Fernsehproduktion (I) +16677,Gekko Film Corp. +9217,Pioneer Pictures +50080,Mister Lister Films +52699,Camera 40 Productions +11273,Circle Films +36605,Entersport Holdings +14217,Odyssee Pictures +58399,Pantelion Films +30601,Archer's Mark +39718,Agav Hafakot +1010,Marimark Productions +5846,Thames Television +12341,CFWB +437,Heyday films +1711,Ognon Pictures +21041,Annuit Coeptis Entertainment Inc. +19980,British Lion Film Corporation +14627,Dragonsteel Films +737,Sidney Kimmel Entertainment +7541,Sovereign Pictures +13678,Vishal Bhardwaj Pictures +1009,Crown International Pictures +22932,DOMA Entertainment +16768,Miller Consolidated Pictures (MCP) +4474,Enterprise Films +10188,Aleph Media +2371,Celluloid Dreams Productions +49069,SF Film Production ApS +10919,TMS Entertainment +550,Little Bird Films +75459,Cabloom! +12583,Minds Meet +67892,Cuel Lavalette Productions +59086,I'm Filming Productions +21629,Aimimage Productions +73934,Cleopatra +5896,Cine Bazar +52337,SkyLand Entertainment +3436,Universal Studios Home Entertainment Family Productions +2675,La Parti Productions +16430,Kavithalayaa Productions +12667,Yoram Gross Films +1644,Largo Entertainment +16791,Newman/Tooley Films +2087,Blackfriars Bridge Films +16424,AVM Productions +26043,Daiichi Eiga +22975,Kejo Productions +2476,Carlton America +6292,Universal +12557,Hélicotronc +59620,Truque Produtora de Cinema +3922,A. Film +15709,Keystone Pictures +66650,D'Antoni/Weitz Productions +19743,Roland Reed Productions +49925,Dark Hero Studios +19451,Mario Zampi Productions +91637,Fearon Entertainment +69037,Murnau-Flaherty Productions +4079,Angel Productions +22705,Midsummer Films +23309,Ion Pictures +3712,BBC Scotland +1591,Rhino Films +77760,IG Films +79323,New Golden Age Films +10795,CEI Incom +1218,The Film Consortium +1843,Grand Army Entertainment +91183,CTM Films +1332,R&R Productions +2913,Warner Bros. France +201,Arte +46634,"Cosmopolitan Film Productions Co., Ltd." +22788,Vega Film GmbH +786,Bizibi +14439,Arad Productions +22308,Echo Lake Entertainment +20569,Michael Phillips Productions +63596,Nutmeg Movies +74248,WestWind Pictures +47078,S.N.D. +33960,Le Tax Shelter du Gouvernement Fédéral de Belgique +76206,Holiday Film Productions Ltd. +58204,3rd Street Pictures +54280,Infinity Media +8776,Redford-Ritchie Productions +20192,Nippon Television Network (NTV) +98,Detour Film Production +20856,Realitism Films +28064,Blue Light +4794,Studio Eight Productions +54446,North American Star System +71543,ITV Productions +21205,Sub Pop Records +30943,Praesens-Film +5702,Euro-France Films +1812,Aaron Spelling Productions +26250,Infinitum Productions +39026,Wunderkind Pictures +6379,Golden Harvest Company Ltd. +65015,Edyson Entertainment +14274,Loew-Hakim +74214,Telekomunikacja Polska (koprodukcja) +3863,Landroval Studios +11801,Trigger Street Productions +172,NPV Entertainment +595,Eric's Boy +20004,"Zanuck Company, The" +18684,Zhanr +38944,Clavius Base +14914,HBO Documentary +11506,Maljack Productions +25578,Reno Productions +8479,Copacabana Filmes +11444,Lumiere +1987,Hanns Eckelkamp Filmproduktion +3585,David Eick Productions +52845,Foqus Arte Digital +12053,Cofinova 5 +21591,Beth Harrington Productions +82811,Vanish Films +8852,Virgin Produced +8171,Institut National de l'Audiovisuel (INA) +53904,ATR Films +14820,Haut et Court +5057,Seville Productions +5132,Von Vietinghoff Filmproduktion +81614,Chop Flix +3737,Maverick Productions +41669,MGA Entertainment +21159,Pacemaker +5996,BBC +84422,Double Down Entertainment +8491,Instituto Português da Arte Cinematográfica e Audiovisual (IPACA) +3135,Furst Films +3125,Mondayitis Productions +63187,Junglee Pictures +20153,Film 44 +33433,Furthur Films +14698,Jeremy Thomas Productions +4997,Dimension Pictures +8164,Kel Air Productions +33214,i/o post +27913,Epic Match Media +80772,Maximum Force Joint Venture +26387,LOVEFiLM International +15104,Foundation Entertainment +11720,Fukuoka Broadcasting System (FBS) +5983,Stefi 2 +80612,Small Red Star Productions +1874,Industrie Cinematografiche Italiane +15089,Talk Films +14180,Laurel Entertainment Inc. +16557,John Argyle Productions +90634,Mango Entertainment +50074,2B Films +58987,Time Inc. Studios +13721,Winkast Film Productions +92957,Netflix Studios +39240,A Farewell to Kings Entertainment Company +21163,Profit +69579,Phantom Four Films +22066,Emerald Peak Entertainment +16701,Instituto do Cinema e do Audiovisual (ICA) +23991,Seven Cities Media +13464,Satra +36911,Spark Films +67995,Imedi Films +58840,Bellatrix +40529,Yoshidamasaki +94975,CRM-114 +1765,Turner Pictures +4017,Hakalax Productions +55527,Courtside Seats Productions +4278,Tempean Films +62136,Civilian Pictures +12030,Ateliers de Baere +38115,Shoot First Entertainment +59293,Kabir Khan Films +7890,Sirk Productions +25065,VUFKU +3747,Studio 18 +72996,"ZAO Studia ""F.A.F""" +78093,Paradox Film 3 +54031,March Entertainment +5614,Envision Films +10654,Ran Entertainment +46226,Praxis Films +7592,Playarte +179,The Magnolia Project +46108,Ubu Productions +67257,Hallow Films +691,Cappa Productions +13742,General Film Corporation +37357,David M. Goldstein Productions +13403,Straight Up Films +48696,3D Sea Inc. +81620,TENCENT PICTURES +2082,Calypso Filmproduktion +20729,Candleridge Entertainment +3212,Teshigahara Productions +294,New Zealand Film Commission +2740,Jigsaw Productions +73525,Space: The Imagination Station +82128,Filmkraft Productions Pvt. Ltd +1311,The Asylum +19660,Starlet HK International Media +71249,Cinema and Theatre Seating Limited +24884,AE Electra Productions +41052,Edenstreet Productions +3492,Island Pictures +53432,United Yugoslavia Producers +52180,Solstice Productions +3616,B.O.M. Film Productions Co. +91380,Picture Securities +1821,Opera Film +66966,Film Production Consultants +21153,"Bureau, The" +67258,Hyperion Media Group +774,Valkyrie Films +16953,Norstar Entertainment +65803,Lichtblick Media GmbH +2112,Wilshire Court Productions +10425,Kim and Jim Productions +71357,Hell's Kitchen International +19089,Playground Entertainment +77594,Vserossiyskaya Gosudarstvennaya Televizionnaya i Radioveshchatelnaya Kompaniya (VGTRK) +12386,Robot Communications +2324,Empire Films +5316,Fanfare Films +17052,Trebitsch Entertainment +8269,Breidablick Film AB +3604,Grindstone Entertainment Group +2287,Unity Productions +75879,Dv8 +20772,The Cheerleaders Company +37249,La Fabrique +20664,Anton Capital Entertainment (ACE) +75419,Inkas Film & T.V. Productions +8811,The Cat in the Hat Productions +1399,Fair Film +18552,Estudios Flomenbaun Abogados +14739,Spitfire Pictures +2277,Antiteater-X-Film +2244,Millennium Pictures +6651,Penta Films +15242,Kandor Productions +721,Zenith Productions +22384,Rolling M. Productions +77459,LLT Productions +82610,Nilsson House Music Inc. +4990,Ital-Noleggio Cinematografico +12041,Lafalot +11749,Twentieth Century Fox Animation +7353,Gateway Films +5094,Merton Park Studios +49691,Alert Film +46088,Jerry Catering Service +67005,Radio Televizija Srbije (RTS) +610,Kuchenreuther Filmproduktion GmbH +17422,Dogstar Films +79947,Pātea Film Collective +17228,T-Joy +2798,Columbia Pictures Film Production Asia +24013,Vnesheconombank +1334,United Productions of America +7307,Medienboard Berlin-Brandenburg +10492,WNET Channel 13 New York +266,Agencja Produkcji Filmowej +56833,Hamster Film +61337,Dollface +18170,Sagittarius Productions +10463,Levy-Gardner-Laven +55969,OneBigAgency +63690,Circa 1888 +84135,Van Brand +2245,Entertainment Films +10229,New Holland Pictures +78685,Cruel and Unusual Films +24650,Slaughter FX +36958,Sparkle Roll Media +15577,Latitude Media +62133,Producciones Benito Perojo S.A. +34966,Akün Film +80815,iQIYI Motion Pictures +48022,Institution Post +11706,William Self Productions +1141,Engine Films +42084,Yarno Cinematografica +7750,Tagträumerfilm +2746,Mission Pictures +10047,CCFBR Produções +24211,Stan Winston Studio +86433,Legendary East +39077,Honora Productions +54131,Weston Pictures +19813,Flower Films (II) +25432,Bull's Eye Entertainment +60106,Pisces Rising Productions +78091,Kinberg Genre +2535,Bananeira Filmes +85889,C.H.U.D. Productions +10011,Alta Producción +44160,Varahi Chalana Chitram +5940,Avala Film +91672,Angels Productions +1758,Tatfilm Produktionsges. mbH +61211,Spede-Team +19802,Ren Film +11932,Centre du Cinéma et de l'Audiovisuel de la Communauté Française de Belgique +4243,Gullane Filmes +73820,Frontera Films S.A. +8755,Millennium Entertainment +79480,Miraj Entertainment +88113,M.B. Film +14602,Amuse +13437,Champs-Élysées Productions +37356,Doublesteen Productions +7782,Picture Palace +60108,Seven Star Pictures +59592,Tango Pictures +30023,Court Five +95106,Sanaye Dasti +52917,Mixed Bag Media +5591,Downtown Filmes +55637,John Boorman Productions +887,Neo Productions +8894,Société Générale de Cinématographie (S.G.C.) +3110,Paco Cinematografica +23895,Storm King Productions +22901,Afraid of the Dark +23754,Filmmuse Productions +64666,Jar Pictures +1172,Hyde Park Films +6553,Archangel +11860,Barnholtz Entertainment +90281,FR Productions +11571,Samson Films +17469,Tu Vas Voir Productions +20602,Finesse Films +931,HAL Films +7456,Cofinova 6 +22837,Christian Frei Films +11245,Agence Nationale pour la Cohésion Sociale et l'Egalité des Chances (ACSE) +11638,D.C. 7 Produzione +2034,Corsan Productions +10146,Focus Features +5677,Flavor Unit Entertainment +2418,Cherokee Productions +5217,Universe Films Distribution +19091,Government of Ontario: Ontario Film and Television Tax Credit Program +9340,Enjoy Movies +4167,Alexander Korda Films +21375,Quadrant Entertainment +1416,Albina Productions S.a.r.l. +1380,Australian Film Finance Corporation +433,Weed Road Pictures +5165,BFI +1047,Younger Than You +75984,La Banque Postale Image 8 +79197,MovieBrats Pictures +5534,IMAS Filmproduktion +10454,Terzafilm Produzione Indipendente +3645,Barwood Films +41659,Round Films +86346,Kazahfilm Studios +14568,Sweetwall +88064,Cinevid Productions +14701,Mayflower Pictures Corporation +85676,Cinematografica RI.RE +4948,Profilmes +16498,WAY CREATIVE FILMS +507,Atlas Entertainment +41311,Spelling Goldberg +851,MEDIA Programme of the European Union +870,Tapestry Films +1001,Solaris Film +23992,On the Road +76708,Soapbox Films +67592,Chris Kasick Company +68941,Filmcontract Ltd. +11045,"Nasser Group, North" +22319,Centre Européen Cinématographique Rhône-Alpes +72665,Bandai Namco Entertainment +13866,The Caddo Company +10284,Edko Films +67823,Star Partners +52921,Slotint +9387,Cineriz +11481,Vision Pictures +17468,Vision IV +23771,Bettis Productions Limited +42202,Cofimage 17 +83275,Tónabíó +43265,Harun Farocki Filmproduktion +21556,Les Productions Unité Centrale +25012,Black Creek Billie +7832,CiBy 2000 +17218,Gramercy Pictures (II) +7090,France3 Cinéma +9111,Sirena Film +35920,Niki Marvin Productions +85739,Foundation Montecinema Verità +5887,ufotable +34245,Avanton Productions +1892,Bhansali Films +41905,Blackmagic Design Films +14862,Washington Square Films +7406,JTP Films +65642,The Family Channel +31599,Film & Entertainment VIP Medienfonds 2 GmbH & Co. KG +2246,Material Entertainment +73253,Phoenix Rising Motion Pictures +26879,Euro Film +22200,Visage Productions +54647,Natixis Coficiné +131,Bender-Spink Inc. +10342,Studio Ghibli +11708,Madison 23 +3106,Bo Ho Film Company Ltd. +13200,Sunrise Filmvertriebs AG +2055,Skyline Films +21777,TC Productions +64771,Tamm Productions +80147,Green Fuse Films +3061,Alfama Films +41344,Moviecraft Entertainment +4231,Yeni Sinemacilar +23019,Evolution Entertainment +27204,Key Entertainment +3164,BBC Worldwide +73951,Classic Media Productions +1671,Explorer Film '58 +12202,WV Films III +26468,IFC Productions +1239,Aichi Arts Center +74,MOOVIE - the art of entertainment GmbH +23735,Mann Made Films +24493,Alligator Film +4220,Management 360 +56584,Eurimages Council of Europe +1968,Viking Films +20790,ToonBox Entertainment +11261,M6 +10532,World Productions +26174,Avalon P.C. +8848,MHF Zweite Academy Film +28190,13 Productions +94244,Cinequity Corporation +85627,Visible Pictures +60601,Cloud 9 Film Partners +11424,Fernando Trueba Producciones Cinematográficas S.A. +86750,Crouching Tiger Motion Pictures +819,Mars Films +19761,Floren Shieh Productions +88920,"Pierson, Heldring & Pierson N.V." +51321,Les Films Aleriaz +1176,Lorimar Film Entertainment +83744,Camp Grey +53245,Pygmalion Productions +36228,Candlewood Entertainment +932,Mirage Enterprises +51852,Blood & Chocolate Productions Ltd +768,Ghost House Pictures +5116,Liebermania +10393,Vertigo Films +2152,GreeneStreet Films +216,Jersey Films +8081,Last Ride +5923,Nicetop Independent Ltd +81142,Bachelor Party Productions +91005,Lyrick Studios +34780,Chi-Fou-Mi Productions +915,Hollywood Pictures +27912,Indie Entertainment +72920,Bam Film +10257,Jewel Productions +10316,British Columbia Film +36191,Fine Arts Film Company +16419,Metropolitan Films +44464,Stern Pictures +20049,DuArt +34073,Domenica Films +44211,Fast Producciones +6353,Screen Media Films +19751,Indochina Productions +73471,Crown-Hausman +15326,Gruzia-Film +65085,Prithvi Pictures +64695,Sunny Day Media +84887,Kurahara Productions +7119,Hybrid +69758,Lightstream Entertainment +52012,Coproducción Canadá-USA +9221,Toei Video Company +3852,MCA/Universal Pictures +3980,Wonderworld Studios +73673,Participant PanAmerica +8844,Artista Management +73252,One Square Mile Management Company +80402,Huakun Entertainment +73037,Studio Filmowe Tor +2224,Plum Pictures +12432,Eesti Joonisfilm +65217,Zee Music Company +5576,Giant Screen Films +11369,Sighvatsson Films +11595,Clodio Cinematografica +53427,"Dinamo Story," +19105,Eidos Interactive +49586,Jagjaguwar +18122,Maine Studios +4558,Safir Films +56236,The See +12799,Silver Screen Pictures +16125,Duo Films +18775,Belford Productions +210,Süddeutscher Rundfunk +68062,Pentamerica +713,Nu Image Entertainment +83581,Broken Compass Films +5444,Mod Producciones +4650,Marubeni +8041,Homegreen Films +333,Original Film +8355,APT Entertainment +58085,DMC Films +29972,Compagnie des Phares et Balises +10650,Cinéas +14877,Dor Film-West Produktionsgesellschaft +21327,TNVO +86861,GNUFilms Oy +8099,Hungaro +91787,Handbook Productions +36287,Sarah Productions +23537,Sellers-Edwards productions +9974,Instituto de la Cinematografía y de las Artes Audiovisuales (ICAA) +10970,Blueeyes Productions +24562,Blue Dot Productions +42621,SF Film Finland Oy +3488,Portman Film +76360,Purple Films +28452,24 Mai Productions +77196,EG Productions +57032,Bruce Lansbury Productions +42001,American Artists +78482,Ruby Film and Television +13032,Mount Everest Enterprises Ltd +1073,Gordon Company +12054,Région Languedoc-Roussillon +6896,EuropaCorp +1499,Cineraid +24143,Jumping Horse Film +2926,Alexandre Films +46195,Luxembourg Film Fund +51861,Dovemead Films +25020,Victoires Productions +61106,Pure Dopamine +87851,Matrix Film Finance +21750,Alterian +39250,House & Moorhouse Films +67805,Vilm Production +16561,Comet Film Produktion GmbH +8793,Lawrence Turman +30818,Collective Digital Studios +7254,Greek Film Center +320,Trollhättan Film AB +12180,Warp Films +4262,Tezuka Productions +8846,Peerford Ltd. +10273,Filmfonds Wien +13459,Abbott Vision +5777,Thrill Films +5235,Hunt Stromberg Productions +20287,English Films +76492,MHF Erste Academy Film GmbH & Co. Produktions KG +90130,Hoplite Entertainment +4928,Allied Artists Pictures +14585,Leucadia Film Corporation +21446,Film and Music Entertainment (F&ME) +2966,Paradox Spillefilm A/S +7430,Fearmakers Studios +19246,Faliro House Productions +1634,Truenorth Productions +5370,DiC Enterprises +45012,Steeplechase Films +59649,TrustFall Films +84651,Draco Films +11561,Recorded Picture Company (RPC) +62478,Al-Ahramm Studios +44717,PMS Filmworks +11924,Casa Kafka Pictures +19760,Roberts Pictures Inc. +84419,Legendary Entertainment +42079,Panorama Film A/S +16076,Newgrange Pictures +41698,Andy Warhol Films +30900,Mirage Studios +1319,Beaver Films +34,Sony Pictures +11494,Curzon Film Distributors +7429,HBO Films +93566,E&R +6171,Tsentr Natsionalnogo Filma +10227,Mandeville Films +20151,The American Film Theatre +21000,Rizzoli Editore +13099,Squirm Company +6750,Pan-Européenne +13339,Platforma Filma +3876,Entropy Entertainment +42712,Fida Film +20951,wonder films +8730,Renown Pictures Corporation +12009,Elías Querejeta Producciones Cinematográficas S.L. +11626,Tango Film +86863,FS Film +494,AVCO Embassy Pictures +6735,Participant Media +69125,Mythri Movie Makers +64858,Beijing Mahua Funage Company +3121,Stan Winston Productions +72026,EGO Production +45955,David Paradine Productions +3172,Blumhouse Productions +27125,Cofinova 10 +55652,Drama Svecia +19931,TV3 Television Network Ireland +5176,Fortress Features +8400,Science Channel +49847,MCP Sound & Media GmbH +13334,Lionheart Entertainment +51763,Living Pictures +29587,ASA +84215,Hok Foo Yau Haan Gung Shut +7981,Pathé +7372,Paper Street Films +31400,International Films +92199,SofiTVCiné 3 +24662,Pie Films +87587,International Cinema Company (ICC) +23488,Kanzeon +51560,Waterhorse Productions +784,Himenóptero +13472,Crime Scene Pictures +23843,Lawrence P. Bachmann Productions +39517,Sentinel Pictures +20411,Sinemart +7273,Phi Group +181,Channel Four Films +77946,Gray City +14536,Springbok Productions +92603,Marquise +12966,Perdido Productions +87849,Jericho Productions Ltd. +946,CJ Capital Investment +9237,Super International Pictures +53009,Miramax +58583,Mumbo Jumbo Productions +6927,Cinepro +78321,Playcraft Film Unit +45424,Heart & Soul Production +850,Eurimages +64757,Shoes Full of Feet +78619,Stormchaser Films +95163,Behnegar +79635,Superfly Ltd. +1627,Maran Film +88865,Traian Boeru +6677,Syfy +4764,Cinema 84 +1706,Seven Pictures Film +22071,Mollywood +15132,Dudez Productions +65285,Palisades Partners +9081,Phase 4 Films +24051,Bird Studios +6417,Film i Väst +42243,"Zespol Filmowy ""Kamera""" +60061,KMH One +512,Cocinor +83124,Helen Gardner Picture Players +25628,Blitz Films +66722,Sid and Marty Krofft Enterprises +3390,Vienna Film Financing Fund +47687,Population 1280 Films +2764,Chessman Park Productions +71158,Joseph L. Schenck Enterprises +62265,Glass Man Films +75140,U-Production +8676,uFilm +7025,Westdeutscher Rundfunk (WDR) +10046,Wanda Visión S.A. +44098,Annapurna Studios +24259,Points North Film +11307,The Donners' Company +7040,Ninjin Club +5009,Cornice Entertainment +7161,LivePlanet +56499,Itsy Bitsy Film +31229,Cinéfrance 1888 +8692,Hannibal Pictures +6361,TMC Films +14253,Valve +81829,Maya Pictures +75848,Svocine +3349,Scanner-Rhodes Productions +16882,Granit Films +22921,Resonance Film & Video +27497,Star Thrower Entertainment +72870,Grupo Novo de Cinema e TV +93382,Government of Canada - Canadian Film or Video Production Tax Credit Program +26770,Aeroplano +6942,Les Mille et Une Marches +817,Katalyst Films +65649,SSS Entertainment +86628,Sushi Typhoon +734,Producers Circle +7627,Eurowide Film Production +33245,Keshet Broadcasting +28479,Cuckoo Clock Entertainment +34034,LStar Capital +11983,Formosa Productions +40401,Bigel Entertainment +1269,Momentum Films +10015,TeleMadrid +1002,Eureka Pictures +8886,Herald Ace +50510,BBC Storyville +2475,Zephir Film +54732,Aurum Film +53334,Archimede +7147,films A2 +1281,Argosy Pictures +23066,Logline Studios +29652,Lucky Coffee Productions +87978,a la carte entertainment +26157,Pinou Film +14631,See Saw Films +2658,Some Film +79085,Mother + Father +22039,Scarecrow Productions +84,Tree Line Films +83039,blue budgie filims +21200,Kid Love Productions +21892,Ascension Productions +7482,Freyda Rothstein Productions +49152,PalmStar Media +17219,S.F.P.C. +3184,Koo & Cee Film +48738,Campbell Grobman Films +30131,Southpaw Entertainment +37668,Screen Plays +1205,Endgame Entertainment +22135,Prana Animation Studios +22785,Valladares Films +46241,Traverse Media +874,Cinéa +741,Emotion Pictures +47706,Allison Shearmur Productions +503,National Film Development Corporation of India +94302,Pork Chop Productions +11797,VOO +25947,Carr Miller Entertainment +5754,Rat Pack Filmproduktion +3854,Universal Family and Home Entertainment +8988,Duea Film +2274,Element Films +95919,Plura Service Company +25713,Ghost VFX +26147,Mobius International +11106,Marvel Knights +37449,Winston +14552,Al!ve AG +1201,Naked Lunch Productions +53901,SF Norge Filmparken +412,Wendy Finerman Productions +25516,Theo Angelopoulos O.E. +7609,Phanta Vision +79289,Generation Iron Fitness Network +4878,Virgin Vision +2345,Lemming Film +22958,SC Entertainment International +13305,Fonds de télévision et de câblodistribution pour la production d'émissions canadiennes +54997,WR Universal Group +1013,Stable Way Entertainment +6111,Arte France +78246,Guru Dutt Films Pvt. Ltd. +2216,Helkon Media AG +13479,Edward Small Productions +23893,Film Office +5897,Toho +1219,Baby Cow Productions +4336,Ajay Devgn Films +30082,Zodiac Pictures +6259,New Horizon Picture Corp +13747,Cyclone +831,Saturn Films +26951,Loveless +450,Anarchos Productions +94719,Just Friends Productions +8595,ZDF Productions +8471,Tarantula +1225,One Race Productions +15282,Steel Mill Pictures +47605,Steen Herdel Filmproduktion ApS +54502,Mel's Cite du Cinema +84476,Russian Federation of Cinematography +13914,Feature Productions +10073,ICIC +8589,Robert Greenwald Productions +34236,Mad Scientist Productions +1089,Witt/Thomas Productions +54537,Fábrica de Cine +7899,Cartoon Network Studios +53505,Serene Films +68047,Woodridge Productions +761,Cinehaus +95293,Bob DeBrino Entertainment +6422,Sullivan Bluth Studios +13700,Mark VII Ltd. +63610,Viracocha Films +81030,Media Film +56820,American National Films +46346,Next Film +2492,Playhouse International Pictures +5747,ZDF Enterprises +8516,Bennett-Robbins Productions +124,Südwestrundfunk +15653,All-American +79621,Arauco Films +16301,Invincible Pictures Corp. +23483,Heart of Europe Prague K Productions +2901,ADR Productions +29650,Eloseppo +7276,Screen East +47241,Wildcard Films +2729,Omnilab Media +23290,Prodyuserskaya Firma Igorya Tolstunova +81930,John Krimsky and Gifford Cochran Inc. +87466,Pang Bros. +23787,Eclipse Catering +43711,Dean Film +67229,Producciones Brooks +53464,Asis Productions +32400,Guerilla Films +262,Independent Film Distributors +29177,Beyond C. +84953,Club des Investissments +17390,Pandora Films +92232,Diligence Films +18621,Pierce/Williams Entertainment +10067,Alloy Entertainment +13981,Tal Productions +11920,Région Wallone +998,Royal Film +22046,Victorian Film +69352,West Bay One +25539,Les Films d'Antoine +21579,Code +17252,Les Films du Paradoxe +9124,Praktika Pictures +43498,Resnick Interactive Development +689,Ventanarosa Productions +7308,Reprisal Films +55170,1201 +22528,Doll Australia +8152,Doha Film Institute +2266,Bold Films +33538,Painted Lady Productions +15671,France 2 Cinéma +3060,Soudaine Compagnie +14758,DCM Productions +6345,Lighthouse Pictures +94357,Karza Productions Inc +8080,Category One Entertainment Group +4316,Avalon Television Ltd +35142,CMN Investment +10211,Alfran Productions +32951,Venice Productions +69627,Universal City Studios +1560,Roth-Arnold Productions +1479,teamWorx Produktion für Kino und Fernsehen GmbH +14756,Roenbergfilm +11430,Dasepo Club +27023,Kestrel Films +2748,Clubdeal +1042,Cinecittà +1353,Hanna-Barbera Productions +1474,Desperate Pictures +14665,Sequoia Productions +2286,Linsefilm +59374,Dead Wait Productons +24845,Topkapi Films +23404,IndustryWorks Distribution +18064,Rekun Cinema +5402,Easy Film +5266,Robert Goldstein Productions +6402,Mars Media Beteiligungs +88216,Rosa Film +14723,Carolco Pictures +2969,Namesake Entertainment +11276,United States Pictures +1244,Alia Films +280,Cinémaginaire Inc. +16581,United Channel Movies +14542,Diabolo Films +20693,KGP Kranzelbinder Gabriele Production +1656,Pangaea +12343,Farbfilm-Verleih +6874,grindstone +10940,Mardi Gras Productions Inc. +17741,Cinecompany +10519,Cinemaster S.r.l. +51762,Bregman-IAC Productions +12977,Black Camel Pictures +79811,Oy Bufo Ab +26004,Little Big Film Company +66209,eleven-55 Films +78370,La Canica Films +50082,Cuba Pictures +25933,Circle Pictures +5092,Chum City +50908,Trigger +4185,Oceanic Preservation Society +78565,Ghost Pictures +20518,Warnr Bros. +16015,K-Network +35605,Mano a Mano Films +24950,ZDF Television +12548,Ufland +53997,Mars Production Pty. Ltd. +11293,IMVAL Producciones +9040,Proletkult +19079,Sky +46296,Prisma Film +4842,Francinor +5781,Production I.G +7720,NAZZ Productions +5218,Imprint Entertainment +6060,AS Productions +22934,Workshop Films 2 +4135,Animus Films +79281,Bemar (koprodukcja) +38146,Bigscope Films +11565,The Safran Company +10222,Reserve Room +3169,Zide-Perry Productions +62337,Camp Kellner Media +5724,Zagreb Film +13367,CDI +74901,Taxi Films +10287,Barbara Lieberman Productions +32430,Commotion Pictures +1530,Citel Films +8874,N1 European Film Produktions GmbH & Co. KG +16842,Ormenis Film +25484,R.S. Film +10696,Malabar +67991,HSI Tomorrow Film +2414,Kiss the Cactus +18058,Champion Production Company +42210,2 minutes +6297,Robirdie Pictures +43255,Self-Reliant Film +5383,Torus +2502,Ceskoslovenský Státní Film +189,ARP Sélection +80071,Indiepelago Films +38970,Allegro Films Distribution +65192,Posa Films +73679,Swordspoint Productions +4483,Groupe Dziga Vertov +8872,Filmula +14113,Trenchard Productions +1817,X Filme International +3668,ABC Productions +5570,Allied Vision +14654,EMJAG Productions +773,Film Afrika +74136,Kaotic Productions +16206,Pax Films +25140,The Exchange +2546,Peirce Pictures +39515,Vlaams Audiovisueel Fonds +51320,Les Films du Yaka +27465,Niccol Films +15710,Best Medicine Productions +53011,Q&Q Medien GmbH +11605,Authentic Films +23118,Leader Cinematografica +1394,Black Forest Films +4679,Shavick Entertainment +2726,Emperor Motion Pictures +18922,Windy Hill Pictures +7705,ITC Movie +10354,FM Entertainment International N.V. +12306,GAME FREAKS +588,Mitteldeutscher Rundfunk (MDR) +347,Centropolis Entertainment +686,Tiger Aspect Productions +384,MacDonald/Parkes Productions +703,Razor Film Produktion GmbH +26467,Q-Dog Music Television +55254,WBMC +20313,Venture Forth +8291,C.R.G. International +2448,Yari Film Group +23815,8th In Line +22787,Caligari Film- und Fernsehproduktions +4213,Sol Lesser Productions +49775,Thalia AG +7508,Produzioni Europee Associati (PEA) +16055,Generalitat de Catalunya - Institut Català de les Indústries Culturals (ICIC) +63708,Scoop Films +7983,Tonefilm +11165,Deep Blue Pictures +14407,Crimson Bolt +83,France 2 Cinéma +11376,NHK Enterprises +12020,Superfinger Entertainment +42393,Lauren Films +5070,Shôchiku Eiga +26952,Maybach Film Productions +13381,Loring Theatre Corporation +17967,Salt-Pan +22970,Genetics Productions +2088,NALA Films +83224,SOC Films +4347,Ramona Productions +3608,After Dark Films +4992,EGM Film International +1178,Pathé Pictures International +3437,TE Encore Films +16450,Filmes do Tejo +11208,Fobic Films +1388,Centro Nacional Autónomo de Cinematografía +7582,HW Two +13204,Fake Empire +34281,Santa Clara Productions +16979,Radnitz/Mattel Productions +7625,Automatik Entertainment +8182,Studio DEEN +55639,Cake Productions Inc. +756,filmkombinat Nordost GmbH & Co. KG +12365,Brownstone Productions +79401,Windsor Productions +9962,BD Cine +60749,Media Darling +14637,Lagniappe Films +37457,The Open University +33817,Yellow Bird +5939,Dowling Productions +2157,26 Films +7345,Vaca Films +63197,A Atalanta +69985,This and That Productions +50098,LWH Entertainment +20063,롯데엔터테인먼트 +71109,Fairview Productions +72129,Calach Films +793,Galatée Films +2375,Sputnik +75575,David Paradine Television +356,TF1 Films Productions +1261,Scala Productions +6516,Tokyo FM Broadcasting Co. +430,Lonely Film Productions GmbH & Co. KG. +52207,Digital Interference Productions +3331,TPW Films +2527,Marc Platt Productions +342,Davis-Films +2300,Key Creatives +10059,This Is That Productions +12218,Sundance Selects +4917,Periscope Entertainment +309,Angoa-Agicoa +2761,Fine & Mellow Productions +52387,Next Turn Productions +23315,Warp Films Australia +2567,Abbout Productions +63105,Animal Planet +81133,Amy Robinson Productions +20656,Babieka +8360,The Stevens Company +18272,Robert Alexander Productions +52184,Volcano Films +3244,Media Pro Pictures +7306,"Match Factory, The" +3672,Gotham Group +4592,Dark Sky Films +20008,CMW Films +15606,Jaguar Productions +1688,Moho Films +52,Film Polski Film Agency +44164,Vinod Chopra Films +7749,Kunsthochschule Kassel +445,Major Studio Partners +14019,Magic Elevator +5267,Irish Film Board +93580,Wonder works studios entertainment group +53592,Dolphin Entertainment +24306,Rinkel Film +20067,TAJJ Media +448,Key Films +36107,Camden Productions Inc. +3623,Kazakhfilm Studios +2051,Kinowelt Filmproduktion +4602,Echo Bridge Home Entertainment +21113,DMVB Films +61201,Anna Sanders Films +69756,Lightstream Entertainment +1190,Alamode Film +47822,Esse Ci Cinematografica +90630,Kraun +4746,DACFILM Rome +31833,Valentina Films +5771,Boardwalk Productions +30242,Nemuru Otoko Seisaku Iinkai +67988,WV Films LLC +83978,Digital Network Appliance +10283,Impact Productions LLC +32930,FAMU +36146,Meir Teper +67756,Illuminations +15312,ChickFlick Productions +42786,Hypotenuse Films +89881,Achaman Films AIE +6551,Se-ma-for Studios +21700,Luch +12611,Academy Pictures Corporation +8690,Rollercoaster Entertainment +18160,Fryman Enterprises +42,Universal Pictures Corporation +25262,Carolina Film Works +75621,13th Dimensional Video +34519,SpectreVision +84954,Sofica Sofinergie +9346,Premiere Productions +8739,Das Films +52165,Alquimia Films +21928,TNT +26957,Rosecalypse +11584,De Fina-Cappa +13992,Hemisphere Pictures +4719,Sotsu Agency +11665,SBK Pictures +10815,Lolita films +4597,Goodtimes Enterprises +18939,Hat Trick Productions +38567,BMG Independents +4780,Hesperia Films S.A. +10272,Starhaus Filmproduktion +89164,Pikachu Project 2001 +3480,Illusion Entertainment Group +75332,OPAP +22955,Black Sky Entertainment +1529,Artco Films +14917,Dena Enterprises +3365,TYO Productions +11670,Producers Sales Organization (PSO) +24510,MICA Entertainment +14788,Capcom Company +2265,Shangri-La Entertainment +14881,Toyo Kogyo Kabushiki Kaisha +4610,Alumbra Films +12260,Bob Yari Productions +2065,Scout Productions +18208,8:38 Productions +68154,Hutch Films LLC +23531,Columbia Films +63893,Téléma +11637,YMC Films +1241,Five Star Production +33916,A Contracorriente Films +2352,Frisbeefilms +23397,Donner/Shuler-Donner Productions +10988,Kantana Animation Studios +13466,Park Pictures +80112,Sohail Khan Production +93645,D.I.G. Films +65453,Mixed Breed Films +8263,EMI Films +13444,Outlaw Sinema +86710,Three Dots Entertainment Company +8039,Lo Wei Motion Picture Company +3907,Pull Down Your Pants Pictures +25925,Media World Television +12549,Cinematografica Associati (CI.AS.) +15095,Demitri Samaha Productions +3520,Tube Pictures +17208,Kwai River +2271,Hero China International +3578,UGC Distribution +11562,Fuzzy Bunny Films (I) +85596,CLOTH CAT ANIMATIONS +6170,Vitamin K Film +52594,SofiTVCiné +30232,Compagnie Eric Rohmer (CER) +15597,Glenville +12950,Projektions-AG Union (PAGU) +15408,Cronocinematografica S.p.a. +14599,Soyuzmultfilm +19777,Millbrook Farm Productions +33810,WWE Network +57778,Starcrossed Films +4934,Fidelity Pictures Corporation +15433,Orange Studios +3366,Babe Films +91,Lama Productions +1369,Full Moon Pictures +42670,Relevant Film +19211,KinoMost +35327,Codeblack Entertainment +1286,World Wide Productions +2490,LGM Productions +963,Destiny +33118,Epicentre Films +7034,Rita Productions +40112,Pendle Mountain Productions +13369,Super Crispy Entertainment +3743,BraxtanFILM +41945,Indy Entertainment +4205,Groundswell Productions +3491,Showbox +7940,Cinemiso +3487,Universal Home Video +11107,Brio Films +5281,Cofimage 12 +65655,Insomnia Entertainment +26212,Dong-a Exports Co. Ltd. +12997,Limbo Film AG +5686,Sil-Metropole Organisation +961,Roger Birnbaum Productions +5971,Krystal Motion Picture Productions +46907,Metropolitan International Pictures +28798,Adrénaline +1620,Nuyorican Productions +22997,Légende Films +63051,Lucky Man Films +10847,Chromosom Filmproduktion +7013,Hunnia Filmstúdió +39719,Green Productions +39822,CLV-Filmproduktions +7977,Rizoma Films +14838,Madera Productions +69889,Decade +16368,Hawn / Sylbert Movie Company +17465,Pantaleon Entertainment GmbH +48782,Head First Productions +6517,El Campo Cine +67709,Cinema City Films +2106,Saban Entertainment +16510,Filmways Television +23384,Check Entertainment +51901,Utópica Cine +10969,Sepia Films +89486,Dream Factory Group +6313,Weintraub Entertainment Group +6480,Telewizja Polska +13413,Hubert Bals Fund +14358,1821 Pictures +18713,Prana Studios +60832,Corona-General +17164,Verdeoro +94763,Transmundo Films +36988,Big Book Media +10221,Walden Media +40065,GFT Paquin Entertainment +11425,ICF Institut Català de Finances +83644,Sneaky Shark +38956,Tandem Pictures +1030,Magnolia Pictures +44884,Glacier Films +46381,Essential Entertainment +893,Stanley Kramer Productions +567,Office Kitano +12273,Sanford Productions (III) +84456,Marui-Kobunsha Corporation +3343,Warner Entertainment Japan +11925,"Dexia, Making Of" +8853,Rogue +45190,Tornasol Films S.A. +69968,NBCUniversal Entertainment +21972,Media Programme of the European Community +63458,Badalucco Productions +21528,Studio Mad +2920,Irish Screen +1569,Yash Raj Films +35442,Radio Televisión Española (RTVE) +25060,Filmena +7979,Darclight Films +8634,Meridian Productions +71088,Caroni Films C.A. +2951,Les Films du Kiosque +82552,Elevation Pictures +15156,The Collective +6332,Dune Entertainment III +467,Renaissance Pictures +223,Les Films du Losange +93020,Time Movies +85740,The Centre du Cinema et de l'Audiovisuel de la Communauté Française de Belgique +61922,Bankside Films +64479,Creative England +43256,Nest Features +45898,Sixth Street Films +1305,L.I.F.T. Production +47330,Dot Dot Dot Productions +11282,USA Cable Entertainment +157,SVT Drama +22348,Patriot Pictures +623,MC Productions +62139,M & A +13943,Sherrill C. Corwin Productions +11394,Films en Stock +9020,O Som e a Fúria +3006,Krasnaya Strela +21398,Delirio Films +12349,Rotterdam Film Festival +45436,Lanzadera Films +72890,Telewizja Polska (koprodukcja) +15195,UK Film Studio +17537,Anagram Produktion +25953,The Salt Company International +68222,Odessa Motion Picture Corp. +49976,Shanxi Film Studio +16617,Drama Deluxe +8878,MFF Feature Film Productions +54378,Fabrica +56890,National General Production Inc. +6918,Bandaï Media Department +3144,Prima Linéa Productions +3313,Sunbow Productions +14028,Gabriel Pascal Productions +13684,Kerry +3929,Robert Simonds Productions +55145,Embark Productions +53656,Old Bull Pictures +82270,ATC Entretenimento +93,Lumer Films +12069,Girl & Chocolate Skateboards +2979,ETIC Films +1504,Cinergi Pictures Entertainment +192,"Shochiku Co., Ltd." +60583,Ravenous Films +81321,Negod-Gwad Productions +10898,Légende Entreprises +9091,Nian Dai International +3777,Madcap Entertainment +7565,Nabu Films +13235,Media House Capital +13755,Gross-Krasne Productions +35265,Julian Wintle/Leslie Parkyn Productions +5153,Estudios Churubusco Azteca +8335,The Image Organization +8900,Carousel Picture Company +53634,InterTitle Films +2934,Excel Entertainment +17408,A Major Films +1315,Charles Chaplin Productions +48689,Cinecittà Luce +37714,Regency Television +59559,Master Caution Pictures +19752,Select Productions (III) +10254,Millennium Films +11651,Rodar y Rodar Cine y Televisión +15731,Hans Domnick Filmproduktion +40969,Dufferin Gate Productions +6420,Phoenix Film Investments +28348,Quasar Pictures +93399,Bokari +3513,Big Screen Entertainment +3065,American Broadcasting Company (ABC) +25263,Throttle Films +5999,Grand National Pictures +4557,Miggles Corporation +3477,Star Overseas +3328,GP Pictures +94478,Iberoamerica Films +60045,Concepts Unlimited +70801,Iwerks Entertainment +6296,Nederlander Television & Film Productions +4929,CITA Films +51715,Animate Projects Limited +6805,Epix +5030,Offside +20782,WestEnd Films +3214,Daiei Motion Picture Company diff --git a/demo/install/resources/movies_csv/Production Countries.csv b/demo/install/resources/movies_csv/Production Countries.csv new file mode 100644 index 0000000000..4108b45cbc --- /dev/null +++ b/demo/install/resources/movies_csv/Production Countries.csv @@ -0,0 +1,123 @@ +id,Name,ISO 3166-1 +1,Iran,IR +2,El Salvador,SV +3,Puerto Rico,PR +4,Israel,IL +5,Liberia,LR +6,Serbia,RS +7,Senegal,SN +8,Poland,PL +9,Canada,CA +10,Venezuela,VE +11,Bahamas,BS +12,Ethiopia,ET +13,Zimbabwe,ZW +14,Iceland,IS +15,Slovakia,SK +16,Latvia,LV +17,Indonesia,ID +18,Albania,AL +19,Nigeria,NG +20,Luxembourg,LU +21,Greece,GR +22,Aruba,AW +23,Morocco,MA +24,Montenegro,ME +25,Angola,AO +26,Russia,RU +27,Cambodia,KH +28,Soviet Union,SU +29,Sri Lanka,LK +30,Namibia,NA +31,India,IN +32,Egypt,EG +33,Italy,IT +34,Palestinian Territory,PS +35,United Arab Emirates,AE +36,Netherlands,NL +37,Hungary,HU +38,Bolivia,BO +39,Slovenia,SI +40,Panama,PA +41,French Polynesia,PF +42,Belarus,BY +43,Macao,MO +44,Belgium,BE +45,Mali,ML +46,Pakistan,PK +47,Cyprus,CY +48,Czech Republic,CZ +49,Thailand,TH +50,Sweden,SE +51,Ecuador,EC +52,Kazakhstan,KZ +53,Kyrgyz Republic,KG +54,Singapore,SG +55,Ukraine,UA +56,Netherlands Antilles,AN +57,Norway,NO +58,Afghanistan,AF +59,Georgia,GE +60,Spain,ES +61,Monaco,MC +62,Iraq,IQ +63,Colombia,CO +64,United Kingdom,GB +65,Qatar,QA +66,Bosnia and Herzegovina,BA +67,Hong Kong,HK +68,Turkey,TR +69,Argentina,AR +70,Nicaragua,NI +71,Finland,FI +72,Rwanda,RW +73,Taiwan,TW +74,Kenya,KE +75,Philippines,PH +76,New Zealand,NZ +77,Mauritania,MR +78,Romania,RO +79,Tunisia,TN +80,Uruguay,UY +81,Brazil,BR +82,Austria,AT +83,Vietnam,VN +84,Algeria,DZ +85,Macedonia,MK +86,Uganda,UG +87,Lebanon,LB +88,Malta,MT +89,Trinidad and Tobago,TT +90,Azerbaijan,AZ +91,China,CN +92,Germany,DE +93,Denmark,DK +94,Ireland,IE +95,United States of America,US +96,Lao People's Democratic Republic,LA +97,Peru,PE +98,Croatia,HR +99,Guatemala,GT +100,Jordan,JO +101,Armenia,AM +102,Mexico,MX +103,Dominican Republic,DO +104,Japan,JP +105,Portugal,PT +106,South Korea,KR +107,Switzerland,CH +108,Paraguay,PY +109,Chile,CL +110,Malaysia,MY +111,Syrian Arab Republic,SY +112,Barbados,BB +113,Australia,AU +114,Lithuania,LT +115,Liechtenstein,LI +116,Cuba,CU +117,Jamaica,JM +118,Bulgaria,BG +119,Estonia,EE +120,South Africa,ZA +121,France,FR +122,Burkina Faso,BF diff --git a/demo/install/resources/movies_csv/Spoken Languages.csv b/demo/install/resources/movies_csv/Spoken Languages.csv new file mode 100644 index 0000000000..d9a8df7f7b --- /dev/null +++ b/demo/install/resources/movies_csv/Spoken Languages.csv @@ -0,0 +1,108 @@ +id,Name,ISO 639-1 +1,,oc +2,ελληνικά,el +3,,cr +4,Tiếng Việt,vi +5,Bahasa indonesia,id +6,Somali,so +7,اردو,ur +8,Dansk,da +9,Latviešu,lv +10,Cymraeg,cy +11,Malti,mt +12,پښتو,ps +13,Magyar,hu +14,Український,uk +15,No Language,xx +16,Nederlands,nl +17,বাংলা,bn +18,suomi,fi +19,,qu +20,,km +21,Gaeilge,ga +22,Lietuviškai,lt +23,қазақ,kk +24,Bahasa melayu,ms +25,,mn +26,Kinyarwanda,rw +27,Íslenska,is +28,,ml +29,Italiano,it +30,,gd +31,한국어/조선말,ko +32,普通话,zh +33,Français,fr +34,,yi +35,Deutsch,de +36,,am +37,,ty +38,,sa +39,,fy +40,български език,bg +41,Español,es +42,ქართული,ka +43,Slovenščina,sl +44,svenska,sv +45,Bosanski,bs +46,فارسی,fa +47,తెలుగు,te +48,Eesti,et +49,,ce +50,,my +51,ਪੰਜਾਬੀ,pa +52,Hausa,ha +53,,hy +54,Català,ca +55,,st +56,Hrvatski,hr +57,Slovenčina,sk +58,,xh +59,,tt +60,Fulfulde,ff +61,isiZulu,zu +62,Wolof,wo +63,Galego,gl +64,हिन्दी,hi +65,English,en +66,עִבְרִית,he +67,Český,cs +68,ozbek,uz +69,euskera,eu +70,??????,ky +71,தமிழ்,ta +72,广州话 / 廣州話,cn +73,,lo +74,,nv +75,Bokmål,nb +76,ภาษาไทย,th +77,shqip,sq +78,Kiswahili,sw +79,Polski,pl +80,Latin,la +81,,kw +82,Pусский,ru +83,,ln +84,العربية,ar +85,Afrikaans,af +86,,ny +87,,ig +88,,mi +89,Azərbaycan,az +90,Türkçe,tr +91,,mr +92,Română,ro +93,Norsk,no +94,,bo +95,,si +96,,lb +97,,sc +98,?????,kn +99,,sh +100,Português,pt +101,日本語,ja +102,,mk +103,Srpski,sr +104,,ku +105,Bamanankan,bm +106,,se +107,,tl diff --git a/demo/install/resources/movies_csv/Sub-Collections.csv b/demo/install/resources/movies_csv/Sub-Collections.csv new file mode 100644 index 0000000000..f05f03bfa3 --- /dev/null +++ b/demo/install/resources/movies_csv/Sub-Collections.csv @@ -0,0 +1,813 @@ +id,Name +9818,Mortal Kombat Collection +2980,Ghostbusters Collection +139450,Memories Collection +167716,The Bill Douglas Trilogy +97459,The Jungle Book Collection +351231,Hardbodies Collection +113589,The Hire +86224,The Saint Collection +8945,Mad Max Collection +400700,Neighbors Collection +221622,12 Rounds Collection +228887,Daddy Day Camp Collection +149191,Lady Snowblood Collection +87536,Warlock Collection +305360,Lucky Luke (Terence Hill) Collection +386382,Frozen Collection +133923,Zombi Collection +257960,The Raid Collection +455278,My Mom is a Character Collection +10893,Critters Collection +422193,The Blob Collection +417491,Bon Cop Bad Cop Collection +23453,Tengen Toppa Gurren Lagann Collection +123255,Prom Night Collection +58588,Infernal Affairs Collection +295274,The Crossing Collection +64751,Crank Collection +24726,Johan Falk Collection +33381,The Whistler collection +107471,Yamakasi - Collection +131780,Whispering Corridors Collection +205029,The Reef Collection +473983,Hababam Sınıfı Collection +287016,Wong Kar-Wai's Informal Collection +151149,My Sisters Kids Collection +106784,Love in the City Collection +342577,Till Luck Do Us Part Collection +137697,Finding Nemo Collection +85890,The Librarian Collection +84785,La trilogie de la mort – Nacho Cerda +185627,Umizaru Collection +440769,Minions: 3 Mini-Movie Collection +424830,The Benji Collection +246091,Krrish Collection +321148,Zenon Collection +169851,The ChubbChubbs Collection +107467,Самый лучший фильм - Коллекция +260586,Le Cœur des Hommes +96665,Dumb and Dumber Collection +263193,Charlotte's Web Collection +239595,Nativity Collection +259398,Teenage Apocalypse Trilogy +25542,An American Girl Collection +2366,The Jaws Collection +86024,Legally Blonde Collection +9649,Mexico Trilogy +286904,Ultimate Avengers Collection +114431,The Incredible Hulk (TV Movie) Collection +76291,Simon Brenner Collection +467577,Evil Bong Collection +44979,Big Momma's House Collection +8918,The Hills Have Eyes (Reboot) Collection +427084,The Secret Life of Pets Collection +308153,The Cheerleaders - Collection +102782,House Collection +37261,The Carry On Collection +237445,Inspector Gadget Collection +148320,Vääpeli Körmy - Collection +378453,Henry Fool Collection +70068,Ip Man Collection +87228,Swamp Thing Collection +104830,Piranha 3D Collection +48194,Ator Collection +9088,The Little Polar Bear Collection +375886,Willard +94039,Asterix and Obelix (Animation) Collection +93568,Cross of Iron Collection +107949,Puppet Master Collection +430186,Bring It On Collection +95051,The Up Series +363918,Aurélie Laflamme Collection +258506,Short Peace +430201,Demons Collection +222639,Detective Dee Collection +387219,The Hustler Collection +389544,Les Tuche +145553,Slayers - Movie Collection +286951,Singham Collection +123218,Troll Collection +117952,The Dentist Collection +272416,Lauras Stern +12087,Herbie Collection +437451,Cinderella Story Collection +324371,The Riffs Trilogy +256729,War Trilogy +143757,Stir of Echoes Collection +1960,Evil Dead Collection +334996,Son of Batman Collection +264335,The Eye Collection +8647,The Skulls Collection +177062,Blondie Collection +104769,Lilla Jönsonligan Collection +125574,The Amazing Spider-Man Collection +8819,Casper Collection +108170,The Blind Dead Collection +354164,Lamù Collection +1582,Teenage Mutant Ninja Turtles (Original) Collection +98036,Re-Animator Collection +10455,Child's Play Collection +119050,Grumpy Old Men Collection +167985,Richie Rich Collection +444665,I due carabinieri Collecion +106000,Beastmaster Collection +199141,Tenchi Muyô Collection +97771,Major League Collection +215326,The Bad New Bears Collection +221966,The Odd Couple Collection +64750,Blair Witch Collection +148315,Pekko aikamiespoika Collection +182923,Tetsuo Collection +142022,Hera Pheri Collection +393126,Letters to Santa Collection +251970,The Protector Collection +257571,C.H.U.D. Collection +429409,Force Collection +208602,That's Entertainment Collection +9068,The Prophecy Collection +159600,House Party Collection +656,Saw Collection +479971,Sağ Salim Serisi +135441,Road to Collection +91945,American Ninja Collection +86029,Charlie's Angels Collection +374663,Mrs. Miracle Collection +85943,Night at the Museum Collection +417481,Father and Guns Collection +192175,Fight Back to School Collection +114915,Xtro Collection +17368,The Sisterhood of the Traveling Pants Collection +123740,Vampire Karnstein (Hammer series) +86311,The Avengers Collection +160401,Ninjas vs. Collection +239011,Detective Collection +394204,The Snowman Collection +229932,Rio Collection +150967,Benvenuti al... Collection +96676,Never Back Down Collection +33059,Wild Things Collection +173628,Nekromantik Collection +330075,Little Witch Academia Collection +357173,Sinister Collection +293196,Big Man Collection +98430,Feast Collection +220872,Men in the City Collection +221544,The Mummy (Universal Series) +187736,Leningrad Cowboys Collection +112537,Sällskapsresorna +88574,Scanners Collection +354066,The Nancy Drew Collection (Bonita Granville) +257053,Carrie Collection +144146,Lemmy Caution Collection +408196,Teen Beach Collection +344830,Fifty Shades Collection +389867,Shark.Attack +138706,The Stepfather Collection +295852,Extralarge Collection +41649,The Party Collection +131,Three Colors Collection +405393,The Black Stallion Collection +201576,The Cabin Fever Collection +297371,Reeker Collection +286936,Cyborg 009 Collection +185103,Hotel Transylvania Collection +331475,Shiloh Collection +353325,Joe Dirt Collection +245326,The Fjällbacka Murders +240156,Sami Swoi Collection +308645,The Foreigner Collection +256953,The Comics Collection +198987,Winnie-the-Pooh (Russian) +122017,Screamers Collection +55419,Cinderella Collection +8783,Fievel Collection +100965,Atlantis Collection +173344,Qatsi Collection +347469,Antboy Collection +203910,Pusher Collection +149704,Alone in the Dark Collection +458017,Tom and Jerry Collection +2248,Torrente Collection +383632,A Man Called Horse Collection +232844,Nim's Island Collection +476961,Goon Collection +87252,Halloweentown Collection +339577,Grindhouse Collection +135498,King Kong (1976 series) +303969,"Martin Scorsese’s World Cinema Project, Vol. 1" +386495,Fubar Collection +309259,Naked Collection +96871,Father of the Bride Collection +350402,Barney Collection +123249,"Ilsa, She Wolf of the SS Collection" +1006,Austin Powers Collection +283733,The Three Brothers Collection +102452,Samurai Collection +399,Predator Collection +278467,Trilogía de la violencia de Michael Haneke +264339,The Hamiltons Collection +8864,Final Destination Collection +188138,Il Maresciallo Giraldi Collection +158391,The Apu Collection +87359,Mission: Impossible Collection +23456,One Piece Collection +195071,Adventures of Mowgli +92012,Happy Feet Collection +77816,Kung Fu Panda Collection +48190,Revenge of the Nerds Collection +457305,Man of Marble/Iron Collection +462565,The Secret Garden Collection +386410,Dragon Ball Collection +261590,Living Dead Collection +98077,Der Bockerer Collection +479319,George Carlin Comedy Collection +180854,Problem Child Collection +163902,RED Collection +276838,When a Stranger Calls Collection +170452,Timecop Collection +224478,The Brady Bunch Collection +24717,Johan Falk GSI Collection +379475,Batman Beyond Collection +93287,Seventh Company Collection +445118,Mark Collection +142182,Bananas!* Collection +206072,Running Out Of Time Collection +41437,Paranormal Activity Collection +259401,The Invisible Man (Universal Series) +338313,Argo Collection +419784,Masti Collection +47391,Sleepaway Camp Collection +10194,Toy Story Collection +2806,American Pie Collection +425880,The Cheetah Girls Collection +3169,Dr. Dolittle Collection +338327,Beach Party Collection +330555,Ernest Collection +125570,300 Collection +263101,Sailor Moon Collection +114783,Cheaper by the Dozen Collection +97237,Faces of Death Collection +87250,Bambi Collection +476054,The Hitcher (1986) Collection +86860,Scooby-Doo Collection +110021,The Magnificent Seven Collection +19160,FernGully Collection +342009,Die Nibelungen Filmreihe +8936,Bridget Jones Collection +388180,Ocho apellidos - Colección +192541,The Twins Effect Collection +126580,One Missed Call Collection +352020,ДухLess (Коллекция) +177467,Cloudy with a Chance of Meatballs Collection +115570,Star Trek: The Next Generation Collection +11716,Addams Family Collection +110177,Goal! Collection +212123,Tiny Times Collection +135495,King Kong (1933 series) +168186,Witchboard Collection +283579,Divergent Collection +239430,Think Like a Man Collection +1709,Planet of the Apes Original Collection +295130,The Maze Runner Collection +138965,The Mummy (Hammer Series) +9436,The Crow Collection +421605,Heidi (Praesens-Film) Filmreihe +299748,Walking Tall Collection +91361,Halloween Collection +101471,Return of the Living Dead Collection +448150,Deadpool Collection +395433,Lone Wolf film series +126209,Halloween (Rob Zombie Series) Collection +475520,The Yes Men Collection +279715,Beck Collection +159613,Election Collection +138968,The Gingerdead Man Collection +215452,Kokowääh Filmreihe +148324,Uuno Turhapuro +142680,Alex Cross Collection +135179,Sin City Collection +165131,Dreileben +348843,Vampires Collection +9332,Crocodile Dundee Collection +298820,American Pie (Spin-off) Collection +148065,Doraemon Collection +398758,Action Pack Bandit Films Collection +106011,Shadow Boxing Collection +255702,The Rutles Collection +135468,G.I. Joe (Live-Action) Collection +218293,Brother Collection +147220,Valami Amerika gyűjtemény +174218,The Howling Collection +374511,Godzilla (Heisei) Collection +376650,Ride Along Collection +123256,Pumpkinhead Collection +141252,Cardcaptor Sakura Collection +264437,My Bloody Valentine Collection +57129,Rugrats Collection +115225,Children of the Corn Collection +161766,Gamera Films +264,Back to the Future Collection +122947,Omega Code Series +87214,The Sandlot Collection +474012,Kocan Kadar Konuş Serisi +360344,Tarzan (Gordon Scott series) +188197,Cetto La Qualunque - Collezione +442352,Brice Collection +74083,Flodder Collection +266672,Ted Collection +209739,MacGyver (TV Movies) Collection +148603,Ducobu Collection +141292,The Secret Of NIMH Collection +227140,Black Emanuelle Collection +165778,We Are From The Future Collection +48802,I Love a Mystery movie series +14740,Madagascar Collection +645,James Bond Collection +343297,My Little Pony: Equestria Girls Collection +219363,Prostokvashino Collection +99727,Stuart Little Collection +138163,Trylogia Sienkiewicza +269098,Police Story Collection +110041,Naked Fear Collection +112636,The Blues Brothers Collection +89272,The Man From Snowy River Collection +256377,The Muppet Collection +306031,Pitch Perfect Collection +293981,Flowers in the Attic Collection +451539,The Bridge +420,The Chronicles of Narnia Collection +141290,The Lord of the Rings Animated Collection +266731,Cat Stevens y Hutch Bessy Trilogy +107478,Lovey-Dovey Collection +298187,Lezioni di Cioccolato Collection +91698,Chili Palmer Collection +107465,Six Degrees of Celebration Collection +100992,The Flicka Collection +166373,The Marine Collection +9500,Werner Collection +386162,LEGO DC Comics Super Heroes Collection +175858,Hidden Collection +207621,V/H/S Collection +220441,Art of the Devil Collection +91799,Tremors Collection +148614,Kim Possible Collection +115575,Star Trek: Alternate Reality Collection +101646,Vares Collection +164395,The Messengers Collection +425189,Dragon Ball Z OVA Collection +374930,Snow Queen Collection +124879,State Property Collection +123717,She Collection +441461,Regalo di Natale - Collezione +415931,The Bowery Boys +44722,Munna Bhai Collection +12077,St. Trinian's Collection +98853,Cyborg Collection +378268,Havoc Collection +297252,Not Quite Human Collection +96677,Red Cliff Collection +178106,Darko Collection +309300,The Trip Collection +47814,The Thin Man Collection +9888,Home Alone Collection +476056,Fritz the Cat Collection +353754,Trilogía Sollima +257071,All Stars Collectie +248534,Batman: The Dark Knight Returns Collection +145901,Lupin the Third Collection +24761,The Millennium Collection +13800,Futurama Collection +10964,Flatfoot Collection +8354,Ice Age Collection +87118,Cars Collection +313576,Hot Tub Time Machine Collection +195441,Dennis the Menace Collection +378025,Die Fritz Lang Indien-Edition +448758,Burnout Collection +19163,The Land Before Time Collection +466004,A Few Best Men Collection +222634,Tooth Fairy Collection +129748,The Gruffalo Collection +124901,Hatchet Collection +166018,M.D. Geist Collection +123203,Hellboy (Animated) Collection +146532,The Storm Riders Collection +179042,Anja & Viktor Collection +369380,If I Were You Collection +321065,The Sabata Collection +376970,Cocaine Cowboys +123932,Quarantine Collection +474022,Şevkat Yerimdar Serisi +118221,Weekend at Bernie's Collection +52985,Wrong Turn Collection +268098,Wolf Creek Collection +9309,Winnetou Collection +294519,The Shaggy Dog Collection +416305,Killjoy +319644,Black Scorpion Collection +297299,Bullit & Riper Collection +264481,Mega Shark Collection +288280,Saturday Night Fever Collection +384920,"No Retreat, No Surrender Collection" +295,Pirates of the Caribbean Collection +449462,Super Troopers Collection +155421,Mr. Vampire Collection +122938,Ring of Fire Collection +31562,The Bourne Collection +256548,Father of Four Collection +479888,The Thing Collection +427627,Outlaw Gangster VIP: The Complete Collection +137696,"Monsters, Inc. Collection" +2467,Tomb Raider Collection +238419,Anders Matthesen +86112,Vacancy Collection +404609,John Wick Collection +284111,Barbarian Queen Collection +96682,Zeitgeist Collection +135489,Wishmaster Collection +1972,Ju-on Collection +211075,Panda! Go Panda! Collección +134633,Snow Collection +101676,My Wife is a Gangster Collection +458095,Super Giant Collection +374509,Godzilla (Showa) Collection +96666,Eden of the East Collection +478947,Psy Collection +11118,The Olsen Gang Collection +394316,Johnny Tsunami Collection +52789,Cruel Intentions Collection +86092,Step Up Collection +114993,Unstable Fables Collection +380170,Flying Guillotine Collection +122661,Mardock Scramble Collection +476063,Guinea Pig Collection +330524,Six Swedes Collection +10713,Universal Soldier Collection +105764,The Tall Blond Man Collection +286948,Nemesis Collection +119674,Psycho Collection +255478,Cowgirls n' Angels Collection +143755,Henry: Portrait of a Serial Killer Collection +351721,The Sheriff and the Satellite Kid Collection +203029,Witchcraft Collection +12203,Drunken Master Collection +168949,The Encounter Collection +395556,The August Underground Collection +413661,Charlie Chan (Sidney Toler) Collection +59567,Shanghai Noon Collection +135508,Allan Quatermain (1950 series) +304,Ocean's Collection +364342,Gourmet Detective Collection +368982,MVP +370374,Sharktopus Collection +123800,Before... Collection +9485,The Fast and the Furious Collection +23616,Naruto Collection +217704,The Vampire Chronicles +306063,Saints and Soldiers Collection +4246,Scary Movie Collection +98513,Behind Enemy Lines Collection +495,Shaft Collection +211860,Mountain Family Robinson Collection +140910,All Dogs Go to Heaven Collection +380160,Die Kirche bleibt im Dorf Collection +87236,Mulan Collection +192174,Crows Collection +338416,Kirikou +131989,Recep İvedik Serisi +338282,Single White Female Collection +337957,ABCD Collection +87253,High School Musical Collection +86083,Grease Collection +19285,Leprechaun Collection (Original Series) +116669,The Scorpion King Collection +147669,Das Sams Collection +295862,The BRD Collection +119,The Lord of the Rings Collection +101688,Cannonball Run Collection +474015,Mandıra Filozofu Serisi +441682,Klovn +421566,Totò Collection +141448,Fuga de cerebros - Collection +3601,I Know What You Did Last Summer Collection +216395,Parent Trap Collection +297501,Dixie Zombi - Colección +135416,Prometheus Collection +444275,Eccezzziunale... veramente Collections +385717,Thermae Romae Collection +210006,Machete Collection +43064,Speed Collection +12075,Elling Collection +415054,Облако-рай (Коллекция) +87251,The Good Witch Collection +247028,Rurouni Kenshin Live-Action Collection +164072,Baby Burlesks +461755,Napapiirin sankarit +261382,Clint Eastwood's Iwo Jima Collection +98180,Jungle Jim Collection +288491,Dolphin Tale Collection +48188,Poison Ivy Collection +92222,Breakin' Collection +63170,Jönsson Gang +221537,Creature From The Black Lagoon (Universal Series) +155093,Tom Thorne Collection +8537,Superman Collection +2704,The Bible Collection +179919,Percy Jackson Collection +438087,Topper Collection +171439,F/X Collection +264434,Demonic Toys Collection +228335,Rakht Charitra +33071,Cheech & Chong Collection +248339,House on Haunted Hill Collection +133352,Resident Evil: Biohazard +334414,Ostwind Filmreihe +284433,Guardians of the Galaxy Collection +461937,"Sarah, Plain and Tall Collection" +304378,Independence Day Collection +282971,Aashiqui Collection +263106,Twitches Collection +159603,Kidulthood Collection +158365,Why We Fight +106368,Quando le donne avevano la coda +167613,Alvin and the Chipmunks Collection +435347,男はつらいよ シリーズ +224026,Monster High Collection +87255,Hoodwinked! Collection +386549,"Fat, Sick & Nearly Dead" +97919,The Love Comes Softly Collection +364344,"Murder, She Baked Collection" +188458,Trilogy of Terror Collection +275873,Dr. Who Collection +473730,Ringo Collection +397842,The Amityville Horror Collection +86578,Hostel Collection +421904,Batman (DC Universe Animated) Collection +205977,The Kingdom +148517,"Pagnol, Childhood's Memories" +14563,The Ring Collection +211753,Caprona Collection +25410,The Art of War Collection +300431,Lucky Stars Collection +126221,George of the Jungle Collection +96671,The Human Centipede Collection +385719,The Underdog Knight Collection +91660,30 Days of Night Collection +47400,Nick Carter Collection +10721,Mimic Collection +265865,Space Dogs +171732,Mothra Collection +91697,Battlestar Galactica (Reboot) Collection +261526,Slap Shot Collection +456733,The 1997 Trilogy +268014,The Big Bottom Box +453993,The Wolverine Collection +259308,I soliti idioti Collection +245321,K3 Collectie +259027,The Wolf Man (Universal Series) +456,Sissi Collection +256297,It's Alive Collection +256296,"Silent Night, Deadly Night Collection" +466388,Düğün Dernek Collection +232403,Otto Collection +91657,Disney Buddies Collection +404111,100 Girls Collection +198921,Алиса в стране чудес (Коллекция) +33938,Airport Collection +51509,Meet the Parents Collection +133297,Ants in the Pants Collection +254636,Maniac Cop Collection +360112,He Who Dares Collection +45154,Darkman Collection +4563,The Vengeance Collection +404770,Superman (DC Universe Animated) Collection +469613,Los Leguineche - Colección +333398,Cabin By The Lake Collection +186102,Eddie and the Cruisers Collection +97768,Lake Placid Collection +166378,Joy Ride Collection +86113,Open Water Collection +296872,See No Evil Collection +468552,Wonder Woman Collection +386818,Django - Original films +349889,Robot Jox Collection +19262,Trapped in the Closet +264338,Rosemary's Baby Collection +389978,"Hard Revenge, Milly Collection" +410261,A Goofy Movie Collection +157504,Walking Tall Original Collection +182371,Armitage III Collection +10517,Le Gendarme de St. Tropez Collection +343733,Lotta +251383,The Gamers Collection +376527,Richard the Lionheart Collection +209131,Man of Steel Collection +71458,3 Ninjas Collection +5039,Rambo Collection +463068,Täällä Pohjantähden alla (Timo Koivusalo) +373538,Enter the Ninja Collection +118474,Truth in 24 Collection +46512,Missing in Action Collection +59235,Jesse Stone Collection +8650,Transformers Collection +356688,Batman Unlimited Collection +216435,All for ... +157626,The Comedians Of Comedy Collection +98448,Thou Shalt Laugh Collection +105625,House of 1000 Corpses Collection +286162,Power Rangers Collection +10924,From Dusk Till Dawn Collection +69788,Sharpe Collection +59007,Bionicle Collection +55422,Peter Pan Collection +374512,Godzilla (Millennium) Collection +180498,Krummerne (Samling) +466318,Bachelor Party Collection +290973,"Crouching Tiger, Hidden Dragon Collection" +36694,Bloodsport Collection +107469,Save The Last Dance Collection +424842,Maigret (Rowan Atkinson) Collection +146534,Without a Paddle Collection +38451,Charlie Chan (Warner Oland) Collection +385386,Parasyte Collection +158038,Die Nibelungen Collection +158814,Karlson Collection +212166,Puella Magi Madoka Magica: The Movie +409138,Yossi Collection +87096,Avatar Collection +74508,[REC] Collection +103291,Subspecies Collection +441439,Alienation Trilogy +441443,Ukraine Trilogy +122778,Wodehouse P.G. Collection +418219,Carmina - Colección +10441,Babylon 5 Collection +133676,Knerten Collection +107688,3 Men Collection +2150,Shrek Collection +333154,Sunes samtliga Resor +286006,Rest Stop Collection +32153,Fallen Collection +324149,Koker Trilogy +184977,Shaolin Temple Collection +102940,Break Blade Collection +140126,Vabank (Collection) +94899,Jeepers Creepers Collection +262011,Sleuth Collection +59586,The Blue Lagoon collection +294834,Vixens Collection +242587,Rudolph the Red-Nosed Reindeer Collection +376863,This is England Collection +94050,Lucky Luke (Animation) Collection +87800,Appleseed Collection +123720,Frankenstein (Hammer Series) +8580,The Karate Kid Collection +212279,Piranha Collection +52760,Urban Legend +748,X-Men Collection +93788,Prep & Landing Collection +122922,In the Name of the King Collection +100970,The Fox and the Hound Collection +94589,Ong Bak Collection +148055,Camp Rock Collection +151,Star Trek: The Original Series Collection +441061,L'allenatore nel pallone - Collezione +99606,Mean Girls Collection +215456,Keinohrhasen Filmreihe +87256,Beverly Hills Chihuahua Collection +189159,Project A Collection +86119,The Hangover Collection +218406,Frankenstein (Universal Series) +9338,Police Academy Collection +10,Star Wars Collection +257378,Fast Getaway Collection +373918,Garfield (Animation) Collection +126125,The Expendables Collection +9435,Babe Collection +230,The Godfather Collection +435108,Whistling Collection +131992,Eyyvah Eyvah Collection +240690,Billy Jack Collection +436483,Bad Kids Collection +164394,If These Walls Could Talk Collection +143302,Mobile Suit Gundam Collection +85817,Arthur and the Invisibles Collection +153010,Beauty and the Beast Collection +70764,Largo Winch Collection +142015,Housefull Collection +124950,American Graffiti Collection +201545,Chinese Boxer Collection +59009,08/15 Collection +100693,101 Dalmatians (Animated) Collection +326849,Mostly Ghostly Collection +379920,Deadly Prey Collection +476066,Begotten Collection +178117,The Emperor's New Groove Collection +376567,I pompieri - Collezione +86486,Spy Kids Collection +248126,Splash Collection +122776,Kvartet I Collection +391739,Cirque du Soleil Collection +34055,Pokémon Collection +86334,The Prince & Me Collection +102777,White Noise Collection +52835,French Fried Vacation +122123,Three Heroes Collection +9328,Free Willy Collection +176097,Barbershop Collection +121067,Bloodfist Collection +937,The Pink Panther (Original) Collection +131296,Thor Collection +87014,Cats & Dogs Collection +259085,Ironclad Collection +393328,Library Wars Collection +20970,Sarkar Collection +360342,Tarzan (Lex Barker series) +11582,Don Camillo Collection +107725,Creepshow Collection +243598,The Best Man Collection +429232,Vai Que Dá Certo +140758,Decoys Collection +2326,Underworld Collection +477208,DC Super Hero Girls Collection +363092,Mythica Collection +114374,Fist of the North Star: The Legends of the True Savior +267922,The Hills Have Eyes (Original) Collection +188577,Tognazzi & Vianello Collection +205459,Fearless Hyena Collection +321063,The Sinbad Collection +112860,Kati Collection +98580,Candyman Collection +1575,Rocky Collection +105322,Kickboxer Collection +72119,"Honey, I Shrunk the Kids Collection" +379897,Hayride Collection +153948,Best of the Best Collection +87232,The Apple Dumpling Gang Collection +473977,Çalgı Çengi Collection +86346,Sabrina the Teenage Witch Collection +39438,Emmanuelle Collection +131292,Iron Man Collection +86553,Cold Prey Collection +468039,The Sally Lochhart Mysteries Collection +312735,Annie Collection +169452,DragonHeart Collection +161373,Tai Chi Collection +171586,PTU Collection +141084,Happily N'Ever After Collection +215606,Seven Dwarfs Collection +185682,The Adventures of Antoine Doinel +117693,Balto Collection +228446,Insidious Collection +366826,Navarone Collection +289288,Per Fly trilogien (Samling) +72547,Journey Collection +327598,"To Sir, with Love Collection" +89264,Romancing the Stone Collection +33085,The Little Mermaid Collection +183680,OSS 117 The Original Saga +10453,Poltergeist Collection +205145,Gor Collection +115142,Tales from the Crypt Collection +32135,The Toxic Avenger Collection +402457,The Durango Kid +14095,Barefoot Gen Collection +425164,Dragon Ball Z (Movie) Collection +456778,Max (Collection) +182813,Clerks Collection +372479,Les Boys +401270,Lee Rock Collection +280562,The Guyver Collection +17149,20th Century Boys Collection +290933,Superman / Batman (Animated) Collection +413935,Wizards of Waverly Place Collection +401562,Teenage Mutant Ninja Turtles (Remake) Collection +317299,Puss 'n Boots Collection +251937,A Haunted House Collection +97156,Varg Veum Collection +400500,Чебурашка и крокодил Гена +120447,Naval Cadets Collection +109609,The Fly Collection +377545,Samurai Trilogy +415699,Devasuram Collection +86110,Diary of a Wimpy Kid Collection +394258,The Amazing Colossal Man Duology +191023,The Yakuza Papers Collection +409026,Nobody Collection +328247,Magic Mike Collection +159340,Bang Rajan Collection +8050,Highlander Collection +402380,Pitbull - Kolekcja +23240,The Garden of Sinners +101385,Trailer Park Boys Collection +446782,The Disappearance Of Eleanor Rigby +413663,Charlie Chan (Roland Winters) Collection +435805,The Man from U.N.C.L.E. Collection +405256,Dolemite Collection +120417,The Elusive Revengers Collection +258372,Ivan Tsarevich & the Grey Wolf Collection +256322,The Purge Collection +411859,Barbie Fairytopia Collection +11875,Pippi Longstocking +129407,John Pinette Collection diff --git a/demo/management/commands/setup_demo_template_db.py b/demo/management/commands/setup_demo_template_db.py index 78bb043644..c9b1ce20b7 100644 --- a/demo/management/commands/setup_demo_template_db.py +++ b/demo/management/commands/setup_demo_template_db.py @@ -20,7 +20,7 @@ def _setup_demo_template_db(): print("Initializing demo template database...") template_db_name = settings.MATHESAR_DEMO_TEMPLATE - django_model = Database.current_objects.get(name=settings.DATABASES["default"]["NAME"]) + django_model = Database.create_from_settings_key("default") root_engine = create_mathesar_engine(django_model) with root_engine.connect() as conn: conn.execution_options(isolation_level="AUTOCOMMIT") diff --git a/demo/settings.py b/demo/settings.py index 94117c4084..2288b5d7f8 100644 --- a/demo/settings.py +++ b/demo/settings.py @@ -1,5 +1,4 @@ -from config.settings.production import * # noqa -from config.settings import * # noqa +from config.settings.common_settings import * # noqa from decouple import config as decouple_config INSTALLED_APPS += [ # noqa @@ -10,6 +9,7 @@ "demo.middleware.LiveDemoModeMiddleware", ] +MATHESAR_MODE = 'PRODUCTION' MATHESAR_LIVE_DEMO = True MATHESAR_LIVE_DEMO_USERNAME = decouple_config('MATHESAR_LIVE_DEMO_USERNAME', default=None) MATHESAR_LIVE_DEMO_PASSWORD = decouple_config('MATHESAR_LIVE_DEMO_PASSWORD', default=None) diff --git a/docs/docs/administration/upgrade/0.1.5.md b/docs/docs/administration/upgrade/0.1.5.md new file mode 100644 index 0000000000..855de0bf3c --- /dev/null +++ b/docs/docs/administration/upgrade/0.1.5.md @@ -0,0 +1,18 @@ +# Upgrade Mathesar to 0.1.5 + +### For installations using Docker Compose + +If you have a Docker compose installation (including one from the guided script), run the command below: + +``` +docker compose -f /etc/mathesar/docker-compose.yml up \ + --force-recreate --build service +``` + +!!! warning "Your installation directory may be different" + You may need to change `/etc/mathesar/` in the command above if you chose to install Mathesar to a different directory. + + +### For installations done from scratch + +If you installed from scratch, the upgrade instructions are the same as [for 0.1.4](../../administration/upgrade/0.1.4/#scratch), but you can skip Step 5 – you do not need to change the environment variables. diff --git a/docs/docs/configuration/connect-to-existing-db.md b/docs/docs/configuration/connect-to-existing-db.md deleted file mode 100644 index 4bd27f7631..0000000000 --- a/docs/docs/configuration/connect-to-existing-db.md +++ /dev/null @@ -1,90 +0,0 @@ -# Connect to an external database server - -1. On the existing database server, [create a new database](https://www.postgresql.org/docs/current/sql-createdatabase.html) for Mathesar to store its metadata. - - ```bash - psql -c 'create database mathesar_django;' - ``` - -1. Configure the [Internal database environment variables](./env-variables.md#db) to point to the database you just created. - - -## Connect to a database server running on the host {: #localhost-db } - -!!! info "" - This content is related to Mathesar running in Docker related environments. - -If you're running Mathesar in a Docker related environment, and your database server runs on the host machine, you will not be able to connect to it using `localhost:`, since `localhost` would refer to the Docker environment and not to the host. - -You can try using `host.docker.internal` instead of `localhost`. Below are detailed instructions to expose the database on your host to the Docker instance. - -### Prerequisites - -1. Locate `postgresql.conf` & `pg_hba.conf` file on the host machine. This can be located using `psql` shell by executing the following respectively. - - ``` - SHOW config_file; - ``` - - and - - ``` - SHOW hba_file; - ``` -1. Create the necessary network bridges using docker-compose - - ``` - docker compose -f docker-compose.yml up service -d --no-start - ``` - -1. Find the appropriate IP addresses of the `docker0` interface and the `mathesar_default` interface. This can be found by exectuting the following in the host's terminal. - {% raw %} - ``` - docker network inspect -f "docker0 IP: {{range .IPAM.Config}}{{.Gateway}}{{end}}" bridge && docker network inspect -f "mathesar_default IP: {{range .IPAM.Config}}{{.Subnet}}{{end}}" mathesar_default - ``` - {% endraw %} - -1. Stop Mathesar if it's already running. - - -### Steps - -1. Edit the `postgresql.conf` file and add the IP of `docker0` interface in the `listen_addresses` setting. Uncomment this line if it's conmmented out. - - ``` - listen_addresses = 'localhost, ' - ``` - -1. Modify the `pg_hba.conf` file and grant access to the `mathesar_default` interface. Add the following line at the bottom of the file: - - ``` - host all all md5 - ``` - -1. Restart postgres: - - === "Linux" - ``` - systemctl restart postgresql - ``` - === "MacOS" - ``` - sudo brew services restart postgresql - ``` - -1. Set the value of [`MATHESAR_DATABASES` environment variable](./env-variables.md#mathesar_databases) to the following: - - ``` - MATHESAR_DATABASES=(|postgresql://:@host.docker.internal:/) - ``` - -1. If your Mathesar installation is Docker Compose based, add an extra host for the prod container in the `docker-compose.yml` file: - - ``` - extra_hosts: - - "host.docker.internal:" - ``` - -1. Start Mathesar. - -You should have a successful connection to the host database now! diff --git a/docs/docs/configuration/env-variables.md b/docs/docs/configuration/env-variables.md index 98208a2506..789c287a0f 100644 --- a/docs/docs/configuration/env-variables.md +++ b/docs/docs/configuration/env-variables.md @@ -50,6 +50,9 @@ This page contains all available environment variables supported by Mathesar. Se ## Caddy reverse proxy configuration {: #caddy} +!!!note + These variables are only needed if you're using the Caddy configuration in our [default Docker Compose](../../installation/docker-compose/#steps) file. + ### `DOMAIN_NAME` - **Description**: The public URL that will be used to access Mathesar ([see Caddy docs](https://caddyserver.com/docs/caddyfile/concepts#addresses)). diff --git a/docs/docs/index.md b/docs/docs/index.md index debb152435..9b77bf0621 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -12,7 +12,7 @@ See our [live demo site](https://demo.mathesar.org/) to try Mathesar without ins ### Try locally -This is a quick way to play with Mathesar locally before installing, but will not be appropriate for saving data that you care about. +This is a quick way to play with Mathesar locally, but is not appropriate for saving data that you care about or setting up a long-term installation. 1. With [Docker](https://docs.docker.com/get-docker/) installed, run: @@ -51,8 +51,8 @@ You can self-host Mathesar by following one of the guides below: Mathesar should be pretty intuitive to use. More documentation is coming soon, but for now, we've written some documentation for some things that could be tricky. -- [Syncing Database Changes](./user-guide/syncing-db.md) -- [Users & Access Levels](./user-guide/users.md) +- [Syncing database changes](./user-guide/syncing-db.md) if the database's structure is changed outside of Mathesar. +- How to set up [users with different access levels](./user-guide/users.md) ## Contribute to Mathesar diff --git a/docs/docs/installation/docker-compose/index.md b/docs/docs/installation/docker-compose/index.md index efe5eeea54..bb9cab73fd 100644 --- a/docs/docs/installation/docker-compose/index.md +++ b/docs/docs/installation/docker-compose/index.md @@ -104,3 +104,16 @@ Add your domain(s) or sub-domain(s) to the [`DOMAIN_NAME`](../../configuration/e ``` Restart the docker containers for the configuration to take effect. + +### Using an external PostgreSQL server for Mathesar's internal database + +If you'd like to use an external PostgreSQL server for Mathesar's internal database, you'll need to do the following: + + +1. On the existing database server, [create a new database](https://www.postgresql.org/docs/current/sql-createdatabase.html) for Mathesar to store its metadata. + + ```bash + psql -c 'create database mathesar_django;' + ``` + +1. Configure the [internal database environment variables](../../configuration/env-variables.md#db) to point to the database you just created. Ensure that you change the default values for the user, password, and host. diff --git a/docs/docs/releases/0.1.4.md b/docs/docs/releases/0.1.4.md index cbdd0c926f..d2f2854eb9 100644 --- a/docs/docs/releases/0.1.4.md +++ b/docs/docs/releases/0.1.4.md @@ -4,6 +4,8 @@ Mathesar 0.1.4 focuses on improving the installation and setup experience. +_This page provides a comprehensive list of all changes in the release._ + ## Upgrading to 0.1.4 See our guide on [upgrading Mathesar to 0.1.4](../administration/upgrade/0.1.4.md). diff --git a/docs/docs/releases/0.1.5.md b/docs/docs/releases/0.1.5.md new file mode 100644 index 0000000000..751a4d4e30 --- /dev/null +++ b/docs/docs/releases/0.1.5.md @@ -0,0 +1,37 @@ +# Mathesar 0.1.5 + +## Summary + +Mathesar 0.1.5 is a small, bug fix release. + +_This page provides a comprehensive list of all changes in the release._ + +## Upgrading to Mathesar 0.1.5 + +See our guide on [upgrading Mathesar to 0.1.5](../administration/upgrade/0.1.5.md). + +## Improvements + +- Improve performance of loading sample data when adding a new connection _[#3448](https://github.com/mathesar-foundation/mathesar/pull/3448 "Efficient data loader")_ +- Constrain the width of the connections page _[#3439](https://github.com/mathesar-foundation/mathesar/pull/3439 "Constrain the width of the connections page")_ + +## Bug fixes + +- Fix "Page not found" error when viewing a shared exploration _[#3456](https://github.com/mathesar-foundation/mathesar/pull/3456 "Fix regression where `connections` list is empty in `common_data`")_ +- Fix bugs preventing Mathesar from running in demo mode _[#3459](https://github.com/mathesar-foundation/mathesar/pull/3459 "Fix Demo mode issues")_ +- Fix timeout when setting up a new database with sample data in installations with higher network latency _[#3448](https://github.com/mathesar-foundation/mathesar/pull/3448 "Efficient data loader")_ +- Restore display of column type icons within shared tables _[#3456](https://github.com/mathesar-foundation/mathesar/pull/3456 "Fix regression where `connections` list is empty in `common_data`")_ +- Temporarily hide link to missing docs page _[#3451](https://github.com/mathesar-foundation/mathesar/pull/3451 "Temporarily hide link to missing docs page")_ +- Fix active cell displaying above row header cell _[#3382](https://github.com/mathesar-foundation/mathesar/pull/3382 "Fix active cell displaying above row header cell")_ + +## Documentation + +- Improve docs on using an external PostgreSQL server for Mathesar's internal database _[#3457](https://github.com/mathesar-foundation/mathesar/pull/3457 "Updates to documentation")_ +- Add embedded video walkthrough within installation steps _[#3437](https://github.com/mathesar-foundation/mathesar/pull/3437 "Merge pull request #3436 from mathesar-foundation/video_walkthrough")_ _[#3443](https://github.com/mathesar-foundation/mathesar/pull/3443 "Merge pull request #3442 from mathesar-foundation/update_video_link")_ +- 0.1.5 release notes _[#3449](https://github.com/mathesar-foundation/mathesar/pull/3449 "0.1.5 release notes")_ + +## Maintenance + +- Improve our release notes helper script _[#3435](https://github.com/mathesar-foundation/mathesar/pull/3435 "Merge pull request #3434 from mathesar-foundation/release_notes")_ +- Post-release cleanup _[#3432](https://github.com/mathesar-foundation/mathesar/pull/3432 "Merge pull request #3429 from mathesar-foundation/0.1.4")_ + diff --git a/docs/docs/releases/README.md b/docs/docs/releases/README.md index 29a8e8c26e..e1ad78a11b 100644 --- a/docs/docs/releases/README.md +++ b/docs/docs/releases/README.md @@ -14,25 +14,7 @@ This is developer documentation to help with release notes. It is not published - If you haven't yet created a release notes file for this release, it will create one for you. - The script will find PRs which have been merged but not yet included in the release notes file. -1. Open `missing_prs.csv` to see the PRs you need to add. Incorporate them into the release notes as you see fit. Save the release notes and commit them. +1. Open the release notes file and find a new section at the end titled **(TO CATEGORIZE)**. Incorporate PRs listed within this section into the release notes as you see fit. Rewrite the title text that appears directly in the markdown. Leave the titles as-written within the quotes (these will appear within hover text). Save the release notes and commit them. -1. Re-run the script as needed. When more PRs are merged, they will appear in `missing_prs.csv`. - -## How to format the release notes content - -1. Group changes into sections in the following order - - ```md - ## Security fixes - ## Breaking changes - ## New features - ## Groundwork - ## Documentation - ## Bug fixes - ## Maintenance - ``` - - You can omit sections if there are no applicable changes. - -1. Within the "New features" section, further categorize changes by specific features using level 3 headings. +1. Re-run the script as needed. diff --git a/docs/docs/releases/TEMPLATE.md b/docs/docs/releases/TEMPLATE.md new file mode 100644 index 0000000000..5b1ab24200 --- /dev/null +++ b/docs/docs/releases/TEMPLATE.md @@ -0,0 +1,35 @@ +# Mathesar __VERSION__ + +## Summary + +TODO + +_This page provides a comprehensive list of all changes in the release._ + +## Upgrading to __VERSION__ + +TODO + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/docs/releases/find_missing_prs.sh b/docs/docs/releases/find_missing_prs.sh index 851942f8fd..0bf2bec6ff 100755 --- a/docs/docs/releases/find_missing_prs.sh +++ b/docs/docs/releases/find_missing_prs.sh @@ -39,19 +39,21 @@ fi RELEASE=$1 NOTES_FILE=$RELEASE.md +TEMPLATE_FILE=TEMPLATE.md # If the notes file doesn't yet exist, create one if [ ! -f $NOTES_FILE ]; then - echo "# Mathesar $RELEASE" > $NOTES_FILE + cp $TEMPLATE_FILE $NOTES_FILE + sed -i "s/__VERSION__/$RELEASE/g" $NOTES_FILE fi PREV_NOTES_FILE=$(ls -1 | sort | grep -B 1 $NOTES_FILE | head -n 1) PREV_RELEASE=$(echo $PREV_NOTES_FILE | sed s/.md$//) -COMMITS_FILE=cache/commits.txt -ALL_PRS_FILE=cache/all_prs.json -INCLUDED_PRS_FILE=cache/included_prs.txt -MISSING_PRS_FILE=missing_prs.csv +CACHE_DIR=cache +COMMITS_FILE="$CACHE_DIR/commits.txt" +ALL_PRS_FILE="$CACHE_DIR/all_prs.json" +INCLUDED_PRS_FILE="$CACHE_DIR/included_prs.txt" # Use the latest release notes file NOTES_FILE=$(ls -1 | grep -e '^[0-9]\.[0-9]\.[0-9]' | sort | tail -n 1) @@ -72,6 +74,8 @@ RELEASE_BRANCH=$( fi ) +mkdir -p "$CACHE_DIR" + # Find and cache the hashes for all the PR-merge commits included in the release # branch but not included in the master branch. git log --format=%H --first-parent $PREV_RELEASE..$RELEASE_BRANCH > $COMMITS_FILE @@ -79,14 +83,11 @@ git log --format=%H --first-parent $PREV_RELEASE..$RELEASE_BRANCH > $COMMITS_FIL # Find and cache details about all the PRs merged within the past year. This # gets more PRs than we need, but we'll filter it shortly. gh pr list \ - --base $RELEASE_BRANCH \ --limit 1000 \ --json additions,author,deletions,mergeCommit,title,url \ --search "is:closed merged:>$(date -d '1 year ago' '+%Y-%m-%d')" \ --jq 'map({ additions: .additions, - author: .author.login, - deletions: .deletions, mergeCommit: .mergeCommit.oid, title: .title, url: .url @@ -99,14 +100,11 @@ grep -Po 'https://github\.com/mathesar-foundation/mathesar/pull/\d*' \ # Generate a CSV containing details for PRs that match commits in the release # but not in the release notes. -echo " +PR_LIST=$(echo " SELECT - pr.title, - pr.url, - pr.author, - pr.additions, - pr.deletions, - '[#' || regexp_extract(pr.url, '(\d+)$', 1) || '](' || pr.url || ')' AS link + '- ' || pr.title || + ' _[#' || regexp_extract(pr.url, '(\d+)$', 1) || ']' || + '(' || pr.url || ' \"' || replace(pr.title, '\"', '') || '\")_' AS link FROM read_json('$ALL_PRS_FILE', auto_detect=true) AS pr JOIN read_csv('$COMMITS_FILE', columns={'hash': 'text'}) AS commit ON commit.hash = pr.mergeCommit @@ -114,9 +112,15 @@ echo " ON included.url = pr.url WHERE included.url IS NULL ORDER BY pr.additions DESC;" | \ - duckdb -csv > $MISSING_PRS_FILE - -COUNT=$(tail -n +2 $MISSING_PRS_FILE | wc -l) + duckdb -ascii -noheader -newline $'\n') -echo "$COUNT missing PRs written to $MISSING_PRS_FILE" +if [ -z "$PR_LIST" ]; then + echo "No missing PRs" + exit 0 +fi +echo $'\n\n## (TO CATEGORIZE)\n' >> $NOTES_FILE +echo "$PR_LIST" >> $NOTES_FILE +echo $'\n' >> $NOTES_FILE +COUNT=$(wc -l <<< "$PR_LIST") +echo "$COUNT PRs added to $NOTES_FILE. Please categorize them." diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 1212ea5fa6..d424cc1069 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -11,9 +11,9 @@ nav: - Install from scratch: installation/build-from-source/index.md - Configuration: - Environment variables: configuration/env-variables.md - - Connect to an existing database server: configuration/connect-to-existing-db.md - Administration: - Upgrade: + - To 0.1.5: administration/upgrade/0.1.5.md - To 0.1.4: administration/upgrade/0.1.4.md - To older versions: administration/upgrade/older.md - Uninstall Mathesar: administration/uninstall.md @@ -24,6 +24,7 @@ nav: - Users & access levels: user-guide/users.md - Glossary: user-guide/glossary.md - Releases: + - '0.1.5': releases/0.1.5.md - '0.1.4': releases/0.1.4.md - '0.1.3': releases/0.1.3.md - '0.1.2': releases/0.1.2.md diff --git a/mathesar/__init__.py b/mathesar/__init__.py index 05ea0d9d02..c105751bbb 100644 --- a/mathesar/__init__.py +++ b/mathesar/__init__.py @@ -1,3 +1,3 @@ default_app_config = 'mathesar.apps.MathesarConfig' -__version__ = "0.1.4" +__version__ = "0.1.5" diff --git a/mathesar/install.py b/mathesar/install.py index 3efaa9bd00..466c0c982b 100644 --- a/mathesar/install.py +++ b/mathesar/install.py @@ -37,6 +37,14 @@ def main(skip_static_collection=False): install_on_db_with_key(database_key, skip_confirm) except IntegrityError: continue + if getattr(settings, 'MATHESAR_LIVE_DEMO', False) is True: + management.call_command( + 'createsuperuser', + '--no-input', + '--username', 'demo', + '--email', 'admin@example.com', + ) + management.call_command('setup_demo_template_db') def install_on_db_with_key(database_key, skip_confirm): diff --git a/mathesar/views.py b/mathesar/views.py index a7ab2f5e46..fe9c87110d 100644 --- a/mathesar/views.py +++ b/mathesar/views.py @@ -241,7 +241,7 @@ def get_common_data_for_shared_entity(request, schema=None): return { **get_base_data_all_routes(request, database, schema), 'schemas': serialized_schemas, - 'databases': serialized_databases, + 'connections': serialized_databases, 'routing_context': 'anonymous', } diff --git a/mathesar_ui/src/components/sheet/Sheet.svelte b/mathesar_ui/src/components/sheet/Sheet.svelte index 7e0e465bb8..f14d947adb 100644 --- a/mathesar_ui/src/components/sheet/Sheet.svelte +++ b/mathesar_ui/src/components/sheet/Sheet.svelte @@ -137,12 +137,12 @@ flex-direction: column; isolation: isolate; --z-index__sheet__column-resizer: 2; - --z-index__sheet__top-left-cell: 3; - --z-index__sheet_group-header: 3; - --z-index__sheet_new-record-message: 3; - --z-index__sheet__active-cell: 4; - --z-index__sheet__horizontal-scrollbar: 4; - --z-index__sheet__vertical-scrollbar: 5; + --z-index__sheet__active-cell: 3; + --z-index__sheet__row-header-cell: 4; + --z-index__sheet__group-header: 5; + --z-index__sheet__new-record-message: 6; + --z-index__sheet__horizontal-scrollbar: 7; + --z-index__sheet__vertical-scrollbar: 8; --virtual-list-horizontal-scrollbar-z-index: var( --z-index__sheet__horizontal-scrollbar @@ -181,7 +181,7 @@ :global([data-sheet-element='cell'][data-cell-static='true']) { position: sticky; - z-index: var(--z-index__sheet__top-left-cell); + z-index: var(--z-index__sheet__row-header-cell); } :global([data-sheet-element='cell'][data-cell-control='true']) { diff --git a/mathesar_ui/src/pages/connections/ConnectionsPage.svelte b/mathesar_ui/src/pages/connections/ConnectionsPage.svelte index b74378f7e3..7f04574d60 100644 --- a/mathesar_ui/src/pages/connections/ConnectionsPage.svelte +++ b/mathesar_ui/src/pages/connections/ConnectionsPage.svelte @@ -48,7 +48,13 @@ {makeSimplePageTitle($_('connections'))} - +
{$_('database_connections')} diff --git a/mathesar_ui/src/systems/connections/DeleteConnectionModal.svelte b/mathesar_ui/src/systems/connections/DeleteConnectionModal.svelte index 146474b2d8..1fbe0c6caa 100644 --- a/mathesar_ui/src/systems/connections/DeleteConnectionModal.svelte +++ b/mathesar_ui/src/systems/connections/DeleteConnectionModal.svelte @@ -80,14 +80,18 @@

-

+ + {/if} .group-header { padding: 0.5rem 1.5rem; - z-index: var(--z-index__sheet_group-header); + z-index: var(--z-index__sheet__group-header); .groups-data { align-items: start; diff --git a/mathesar_ui/src/systems/table-view/row/NewRecordMessage.svelte b/mathesar_ui/src/systems/table-view/row/NewRecordMessage.svelte index c959ae7568..88782f52dd 100644 --- a/mathesar_ui/src/systems/table-view/row/NewRecordMessage.svelte +++ b/mathesar_ui/src/systems/table-view/row/NewRecordMessage.svelte @@ -23,7 +23,7 @@